[
  {
    "path": ".eslintrc.json",
    "content": "{\n    \"env\": {\n        \"browser\": true,\n        \"commonjs\": true,\n        \"es2021\": true\n    },\n    \"extends\": \"standard-with-typescript\",\n    \"parserOptions\": {\n        \"ecmaVersion\": \"latest\"\n    },\n    \"rules\": {\n    }\n}\n"
  },
  {
    "path": ".gitconfig",
    "content": "[user]\n\temail = hwl.ter.doest@gmail.com\n\tname = Hugo W.L. ter Doest\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/bug_report.md",
    "content": "---\nname: Bug report\nabout: Create a report to help us improve\ntitle: ''\nlabels: Bug\nassignees: Hugo-ter-Doest\n\n---\n\n**Describe the bug**\nA clear and concise description of what the bug is.\n\n**To Reproduce**\nSteps to reproduce the behavior, or clear and concise code excerpts that trigger the unexpected behaviour.\n\n**Expected behavior**\nA clear and concise description of what you expected to happen.\n\n**Screenshots**\nIf applicable, add screenshots to help explain your problem.\n\n**Desktop (please complete the following information):**\n - OS: [e.g. iOS]\n - Browser [e.g. chrome, safari]\n - Version [e.g. 22]\n\n**Additional context**\nAdd any other context about the problem here, especially if you are running natural in the browser as part a framework.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/feature_request.md",
    "content": "---\nname: Feature request\nabout: Suggest an idea for this project\ntitle: ''\nlabels: Feature Request\nassignees: Hugo-ter-Doest\n\n---\n\n**Is your feature request related to a problem? Please describe.**\nA clear and concise description of what the problem is. Ex. I'm always frustrated when [...]\n\n**Describe the solution you'd like**\nA clear and concise description of what you want to happen.\n\n**Describe alternatives you've considered**\nA clear and concise description of any alternative solutions or features you've considered.\n\n**Additional context**\nAdd any other context or screenshots about the feature request here.\n"
  },
  {
    "path": ".github/ISSUE_TEMPLATE/pull_request_template.md",
    "content": "Fixes #\n\n## Proposed Changes\n\n  -\n  -\n  -\n\n## Checklist before merging\n- [ ] Added Jasmine tests\n- [ ] Updates TypeScipt `index.d.ts` files\n"
  },
  {
    "path": ".github/workflows/codeql-analysis.yml",
    "content": "# For most projects, this workflow file will not need changing; you simply need\n# to commit it to your repository.\n#\n# You may wish to alter this file to override the set of languages analyzed,\n# or to provide custom queries or build logic.\n#\n# ******** NOTE ********\n# We have attempted to detect the languages in your repository. Please check\n# the `language` matrix defined below to confirm you have the correct set of\n# supported CodeQL languages.\n#\nname: \"CodeQL\"\n\non:\n  push:\n    branches: [ master ]\n  pull_request:\n    # The branches below must be a subset of the branches above\n    branches: [ master ]\n  schedule:\n    - cron: '38 9 * * 4'\n\njobs:\n  analyze:\n    name: Analyze\n    runs-on: ubuntu-latest\n    permissions:\n      actions: read\n      contents: read\n      security-events: write\n\n    strategy:\n      fail-fast: false\n      matrix:\n        language: [ 'javascript' ]\n        # CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python', 'ruby' ]\n        # Learn more about CodeQL language support at https://git.io/codeql-language-support\n\n    steps:\n    - name: Checkout repository\n      uses: actions/checkout@v2\n\n    # Initializes the CodeQL tools for scanning.\n    - name: Initialize CodeQL\n      uses: github/codeql-action/init@v1\n      with:\n        languages: ${{ matrix.language }}\n        # If you wish to specify custom queries, you can do so here or in a config file.\n        # By default, queries listed here will override any specified in a config file.\n        # Prefix the list here with \"+\" to use these queries and those in the config file.\n        # queries: ./path/to/local/query, your-org/your-repo/queries@main\n\n    # Autobuild attempts to build any compiled languages  (C/C++, C#, or Java).\n    # If this step fails, then you should remove it and run the build manually (see below)\n    - name: Autobuild\n      uses: github/codeql-action/autobuild@v1\n\n    # ℹ️ Command-line programs to run using the OS shell.\n    # 📚 https://git.io/JvXDl\n\n    # ✏️ If the Autobuild fails above, remove it and uncomment the following three lines\n    #    and modify them (or add more) to build your code if your project\n    #    uses a compiled language\n\n    #- run: |\n    #   make bootstrap\n    #   make release\n\n    - name: Perform CodeQL Analysis\n      uses: github/codeql-action/analyze@v1\n"
  },
  {
    "path": ".github/workflows/linter.yml",
    "content": "---\n###########################\n###########################\n## Linter GitHub Actions ##\n###########################\n###########################\nname: Lint Code Base\n\n#\n# Documentation:\n# https://help.github.com/en/articles/workflow-syntax-for-github-actions\n#\n\n#############################\n# Start the job on all push #\n#############################\non:\n  push:\n    branches-ignore: [master]\n    # Remove the line above to run when pushing to master\n  pull_request:\n    branches: [master]\n\n###############\n# Set the Job #\n###############\njobs:\n  build:\n    # Name the Job\n    name: Lint Code Base\n    # Set the agent to run on\n    runs-on: ubuntu-latest\n\n    ##################\n    # Load all steps #\n    ##################\n    steps:\n      ##########################\n      # Checkout the code base #\n      ##########################\n      - name: Checkout Code\n        uses: actions/checkout@v2\n        with:\n          # Full git history is needed to get a proper list of changed files within `super-linter`\n          fetch-depth: 0\n\n      ################################\n      # Run Linter against code base #\n      ################################\n      - name: Lint Code Base\n        uses: github/super-linter/slim@v4\n        env:\n          VALIDATE_ALL_CODEBASE: false\n          DEFAULT_BRANCH: master\n          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}\n          LINTER_RULES_PATH: /\n"
  },
  {
    "path": ".github/workflows/node.js.yml",
    "content": "# This workflow will do a clean install of node dependencies, \n# build the source code and run tests across different versions of node\n# For more information see: \n# https://help.github.com/actions/language-and-framework-guides/\n# using-nodejs-with-github-actions\n---\nname: Node.js CI\n\non:\n  push:\n    branches: [master]\n  pull_request:\n    branches: [master]\n\njobs:\n  build:\n\n    runs-on: ubuntu-latest\n\n    services:\n      redis:\n        image: redis:latest\n        ports:\n          - 6379:6379\n      postgres:\n        image: postgres:latest\n        env:\n          POSTGRES_USER: user\n          POSTGRES_PASSWORD: password\n          POSTGRES_DB: naturaldb\n          POSTGRES_HOST: localhost\n          POSTGRES_PORT: 5432\n          POSTGRES_TABLE: naturaltable\n        ports:\n          - 5432:5432  \n      memcached:\n        image: memcached:latest\n        ports:\n          - 11211:11211\n      mongodb:\n        image: mongo:latest\n        ports:\n          - 27017:27017\n\n    strategy:\n      matrix:\n        node-version: [20.x, 22.x, 24.x]\n        # See supported Node.js release schedule at \n        #https://nodejs.org/en/about/releases/\n\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v2\n\n      - name: Use Node.js ${{ matrix.node-version }}\n        uses: actions/setup-node@v4\n        with:\n          node-version: ${{ matrix.node-version }}\n\n      - name: Clean install\n        run: npm ci\n\n      - name: Lint\n        run: npm run lint\n\n      - name: Build\n        run: npm run build\n\n      - name: ESM smoke test\n        run: npm run smoke:esm\n    \n      - name: Run Istanbul coverage\n        run: npm run coverage\n\n      # Save coverage report in Coveralls\n      - name: Coveralls\n        uses: coverallsapp/github-action@master\n        with:\n          github-token: ${{ secrets.GITHUB_TOKEN }}\n"
  },
  {
    "path": ".github/workflows/npm-publish.yml",
    "content": "# This workflow will run tests using node and then publish a package to NPMjs when a release is created\n# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages\n---\nname: Node.js Package\n\non:\n  release:\n    types: [created]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 20\n      - run: npm ci\n      - name: Build\n        run: npm run build\n      - run: npm test\n\n  publish-npm:\n    needs: build\n    runs-on: ubuntu-latest\n    steps:\n      - uses: actions/checkout@v4\n      - uses: actions/setup-node@v4\n        with:\n          node-version: 20\n          registry-url: https://registry.npmjs.org/\n      - run: npm ci\n      - run: git config user.name \"$GITHUB_ACTOR\"\n      - run: npm publish\n        env:\n          NODE_AUTH_TOKEN: ${{secrets.NPM_SECRET}}\n"
  },
  {
    "path": ".gitignore",
    "content": "*~\n\\#*\n*.kpf\n*classifier.json\nnode_modules\nio_spec/test_data/wordnet/download/*\nio_spec/test_data/sample.json\n*.noun\n*.verb\n*.adj\n*.adv\n.npm\nnpm-debug.log\n.vscode\n.nyc_output/*\ndist\n"
  },
  {
    "path": ".npmignore",
    "content": "benchmarks\nspec\nexamples\nio_spec\ndocs\n"
  },
  {
    "path": ".nycrc",
    "content": "{\n  \"include\": [\n    \"io_spec/**/*_spec.js\",\n    \"dist/**/*_spec.js\",\n    \"lib/natural/**/*.js\",\n    \"lib/natural/**/*.ts\"\n  ],\n  \"reporter\": \"lcov\"\n}"
  },
  {
    "path": "CODE_OF_CONDUCT.md",
    "content": "# Contributor Covenant Code of Conduct\n\n## Our Pledge\n\nWe as members, contributors, and leaders pledge to make participation in our\ncommunity a harassment-free experience for everyone, regardless of age, body\nsize, visible or invisible disability, ethnicity, sex characteristics, gender\nidentity and expression, level of experience, education, socio-economic status,\nnationality, personal appearance, race, religion, or sexual identity\nand orientation.\n\nWe pledge to act and interact in ways that contribute to an open, welcoming,\ndiverse, inclusive, and healthy community.\n\n## Our Standards\n\nExamples of behavior that contributes to a positive environment for our\ncommunity include:\n\n* Demonstrating empathy and kindness toward other people\n* Being respectful of differing opinions, viewpoints, and experiences\n* Giving and gracefully accepting constructive feedback\n* Accepting responsibility and apologizing to those affected by our mistakes,\n  and learning from the experience\n* Focusing on what is best not just for us as individuals, but for the\n  overall community\n\nExamples of unacceptable behavior include:\n\n* The use of sexualized language or imagery, and sexual attention or\n  advances of any kind\n* Trolling, insulting or derogatory comments, and personal or political attacks\n* Public or private harassment\n* Publishing others' private information, such as a physical or email\n  address, without their explicit permission\n* Other conduct which could reasonably be considered inappropriate in a\n  professional setting\n\n## Enforcement Responsibilities\n\nCommunity leaders are responsible for clarifying and enforcing our standards of\nacceptable behavior and will take appropriate and fair corrective action in\nresponse to any behavior that they deem inappropriate, threatening, offensive,\nor harmful.\n\nCommunity leaders have the right and responsibility to remove, edit, or reject\ncomments, commits, code, wiki edits, issues, and other contributions that are\nnot aligned to this Code of Conduct, and will communicate reasons for moderation\ndecisions when appropriate.\n\n## Scope\n\nThis Code of Conduct applies within all community spaces, and also applies when\nan individual is officially representing the community in public spaces.\nExamples of representing our community include using an official e-mail address,\nposting via an official social media account, or acting as an appointed\nrepresentative at an online or offline event.\n\n## Enforcement\n\nInstances of abusive, harassing, or otherwise unacceptable behavior may be\nreported to the community leader responsible for enforcement: at the moment of writing \nHugo ter Doest.\nAll complaints will be reviewed and investigated promptly and fairly.\n\nAll community leaders are obligated to respect the privacy and security of the\nreporter of any incident.\n\n## Enforcement Guidelines\n\nCommunity leaders will follow these Community Impact Guidelines in determining\nthe consequences for any action they deem in violation of this Code of Conduct:\n\n### 1. Correction\n\n**Community Impact**: Use of inappropriate language or other behavior deemed\nunprofessional or unwelcome in the community.\n\n**Consequence**: A private, written warning from community leaders, providing\nclarity around the nature of the violation and an explanation of why the\nbehavior was inappropriate. A public apology may be requested.\n\n### 2. Warning\n\n**Community Impact**: A violation through a single incident or series\nof actions.\n\n**Consequence**: A warning with consequences for continued behavior. No\ninteraction with the people involved, including unsolicited interaction with\nthose enforcing the Code of Conduct, for a specified period of time. This\nincludes avoiding interactions in community spaces as well as external channels\nlike social media. Violating these terms may lead to a temporary or\npermanent ban.\n\n### 3. Temporary Ban\n\n**Community Impact**: A serious violation of community standards, including\nsustained inappropriate behavior.\n\n**Consequence**: A temporary ban from any sort of interaction or public\ncommunication with the community for a specified period of time. No public or\nprivate interaction with the people involved, including unsolicited interaction\nwith those enforcing the Code of Conduct, is allowed during this period.\nViolating these terms may lead to a permanent ban.\n\n### 4. Permanent Ban\n\n**Community Impact**: Demonstrating a pattern of violation of community\nstandards, including sustained inappropriate behavior,  harassment of an\nindividual, or aggression toward or disparagement of classes of individuals.\n\n**Consequence**: A permanent ban from any sort of public interaction within\nthe community.\n\n## Attribution\n\nThis Code of Conduct is adapted from the [Contributor Covenant][homepage],\nversion 2.0, available at\nhttps://www.contributor-covenant.org/version/2/0/code_of_conduct.html.\n\nCommunity Impact Guidelines were inspired by [Mozilla's code of conduct\nenforcement ladder](https://github.com/mozilla/diversity).\n\n[homepage]: https://www.contributor-covenant.org\n\nFor answers to common questions about this code of conduct, see the FAQ at\nhttps://www.contributor-covenant.org/faq. Translations are available at\nhttps://www.contributor-covenant.org/translations.\n"
  },
  {
    "path": "CONTRIBUTING.md",
    "content": "# Contributing\n\nWhen contributing to this repository, please explain your changes or additions in an issue or in the pull request. \n\nWhen developing, please:\n\n* Comply with Standard JS. This is tested when you commit to natural.\n* Prevent code duplication. Use jscpd to test this. This is tested when you commit to natural.\n* Write unit tests for jasmine. Make sure your unit tests pass.\n* For compatibility with browsers, do not use the file system fs. If you need to read files, use JSON and require.\n* Write documentation and commit this to the gh-pages branch.\n* The current configuration of the unit tests requires the following environment variable to be set:\n```\n    export NODE_PATH=.\n```\n\n# CD/CD pipeline\nThe repository uses Github Actions for testing and publishing.\n\nCurrently, there three workflows:\n\n* 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.\n* Nodejs package: The natural package is automatically published to NPM when a release is created (tagged).\n* Lint Code Base: the repository is linted using the Github super linter which includes jslint and jscpd.\n* CodeQL for detecting security vulnerabilities.\nGithub workflows can be found in the folder ./.github/workflows.\n\n# Versioning\nWe apply semantic versioning. Given natural’s version number MAJOR.MINOR.PATCH, increment the:\n\n* MAJOR version when you make incompatible API changes,\n* MINOR version when you add functionality in a backwards compatible manner, and\n* PATCH version when you make backwards compatible bug fixes.\n"
  },
  {
    "path": "LICENSE.txt",
    "content": "The MIT License (MIT)\n\nCopyright (c) 2011, 2012 Chris Umbel, Rob Ellis, Russell Mull\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# natural\n\n[![NPM version](https://img.shields.io/npm/v/natural.svg)](https://www.npmjs.com/package/natural)\n[![Node.js CI](https://github.com/NaturalNode/natural/workflows/Node.js%20CI/badge.svg)](https://github.com/marketplace/actions/setup-node-js-environment)\n[![JavaScript Style Guide](https://img.shields.io/badge/code_style-standard-brightgreen.svg)](https://standardjs.com)\n[![GitHub Super-Linter](https://github.com/NaturalNode/natural/workflows/Lint%20Code%20Base/badge.svg)](https://github.com/marketplace/actions/super-linter)\n[![Coverage Status](https://coveralls.io/repos/github/NaturalNode/natural/badge.svg?branch=master)](https://coveralls.io/github/NaturalNode/natural?branch=master)\n[![CII Best Practices](https://bestpractices.coreinfrastructure.org/projects/4651/badge)](https://bestpractices.coreinfrastructure.org/projects/4651)\n[![TypeScript support](https://img.shields.io/badge/TypeScript-007ACC?style=for-the-badge&logo=typescript&logoColor=white)](https://www.typescriptlang.org/)\n\n\"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/).\n\n\n## Open source licenses\n\n### Natural: MIT License\n\nCopyright (c) 2011, 2012 Chris Umbel, Rob Ellis, Russell Mull, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n\n### WordNet License\n\nThis license is available as the file LICENSE in any downloaded version of WordNet.\nWordNet 3.0 license: (Download)\n\nWordNet Release 3.0 This software and database is being provided to you, the\nLICENSEE, by Princeton University under the following license. By obtaining,\nusing and/or copying this software and database, you agree that you have read,\nunderstood, and will comply with these terms and conditions.: Permission to use,\ncopy, modify and distribute this software and database and its documentation for\nany purpose and without fee or royalty is hereby granted, provided that you\nagree to comply with the following copyright notice and statements, including\nthe disclaimer, and that the same appear on ALL copies of the software, database\nand documentation, including modifications that you make for internal use or for\ndistribution. WordNet 3.0 Copyright 2006 by Princeton University. All rights\nreserved. THIS SOFTWARE AND DATABASE IS PROVIDED \"AS IS\" AND PRINCETON\nUNIVERSITY MAKES NO REPRESENTATIONS OR WARRANTIES, EXPRESS OR IMPLIED. BY WAY OF\nEXAMPLE, BUT NOT LIMITATION, PRINCETON UNIVERSITY MAKES NO REPRESENTATIONS OR\nWARRANTIES OF MERCHANT- ABILITY OR FITNESS FOR ANY PARTICULAR PURPOSE OR THAT\nTHE USE OF THE LICENSED SOFTWARE, DATABASE OR DOCUMENTATION WILL NOT INFRINGE\nANY THIRD PARTY PATENTS, COPYRIGHTS, TRADEMARKS OR OTHER RIGHTS. The name of\nPrinceton University or Princeton may not be used in advertising or publicity\npertaining to distribution of the software and/or database. Title to copyright\nin this software, database and any associated documentation shall at all times\nremain with Princeton University and LICENSEE agrees to preserve same.\n\n### Porter stemmer German: BSD License\n\nThe 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.\n"
  },
  {
    "path": "SECURITY.md",
    "content": "# Security Policy\n\n##\n\nWe run dependabot and Github's CodeQL analysis to detect security problems.\n\n## Supported Versions\n\nUse this section to tell people about which versions of your project are\ncurrently being supported with security updates.\n\n| Version | Supported          |\n| ------- | ------------------ |\n| 5.1.10   | :white_check_mark: |\n| 5.0.x   | :x:                |\n| 4.0.x   | :x: |\n| < 4.0   | :x:                |\n\n## Reporting a Vulnerability\n\nIf 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.\n\nWe will analyse the issue, and repair it a.s.a.p (best effort).\n"
  },
  {
    "path": "benchmarks/index.js",
    "content": "\n/**\n * Module dependencies.\n */\n\nconst uubench = require('uubench')\n\n/* global suite:writable */\nsuite = new uubench.Suite({\n  start: function () {\n    console.log()\n  },\n\n  result: function (name, stats) {\n    const persec = 1000 / stats.elapsed\n    const ops = stats.iterations * persec\n    console.log('%s : %s ops/s', name, ops | 0)\n  },\n\n  done: function () {\n    console.log()\n  }\n})\n\nrequire('./metaphone')\nrequire('./soundex')\nrequire('./stemmer_id')\n\nsuite.run()\n"
  },
  {
    "path": "benchmarks/metaphone.js",
    "content": "\nconst fs = require('fs')\nconst natural = require('../')\nconst metaphone = natural.Metaphone.process\n\n/* global suite */\n\n// single word\n\nsuite.bench('metaphone() word', function (next) {\n  metaphone('stephen')\n  next()\n})\n\n// small body of text\n\nconst words = fs.readFileSync('lib/natural/index.js', 'utf8').split(/\\W+/)\nsuite.bench('metaphone() small', function (next) {\n  for (let i = 0, len = words.length; i < len; ++i) {\n    metaphone(words[i])\n  }\n  next()\n})\n\n// medium body of text\n\nconst words2 = fs.readFileSync('README.md', 'utf8').split(/\\W+/)\nsuite.bench('metaphone() medium', function (next) {\n  for (let i = 0, len = words2.length; i < len; ++i) {\n    metaphone(words2[i])\n  }\n  next()\n})\n"
  },
  {
    "path": "benchmarks/sample-id.txt",
    "content": "Hari ini hari Sabtu. Ani tidak perlu pergi kuliah. Dia ingin pergi ke supermarket untuk berbelanja. Ani tinggal di rumah kos di dekat kampus.\n\nPagi 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.\n\nKadang-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.\n\nAni 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.\n\nAni 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.\n\nAni 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.\n\nKalau 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.\n"
  },
  {
    "path": "benchmarks/soundex.js",
    "content": "const fs = require('fs')\nconst natural = require('../')\nconst soundex = natural.SoundEx.process\n\n/* global suite */\n\n// single word\n\nsuite.bench('soundex() word', function (next) {\n  soundex('stephen')\n  next()\n})\n\n// small body of text\n\nconst words = fs.readFileSync('lib/natural/index.js', 'utf8').split(/\\W+/)\nsuite.bench('soundex() small', function (next) {\n  for (let i = 0, len = words.length; i < len; ++i) {\n    soundex(words[i])\n  }\n  next()\n})\n\n// medium body of text\n\nconst words2 = fs.readFileSync('README.md', 'utf8').split(/\\W+/)\nsuite.bench('soundex() medium', function (next) {\n  for (let i = 0, len = words2.length; i < len; ++i) {\n    soundex(words2[i])\n  }\n  next()\n})\n"
  },
  {
    "path": "benchmarks/stemmer_id.js",
    "content": "const fs = require('fs')\nconst natural = require('../')\nconst stemmerId = natural.StemmerId\n\n/* global suite */\n\nconst words = fs.readFileSync('benchmarks/sample-id.txt', 'utf8').split(/\\W+/)\nsuite.bench('stemmerId() sample text', function (next) {\n  for (let i = 0, len = words.length; i < len; ++i) {\n    stemmerId.stem(words[i])\n  }\n  next()\n})\n"
  },
  {
    "path": "examples/classification/MaxEntAppliedToPOSTagging_spec.js",
    "content": "/*\nTest of Classifier based on POS tagging\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// const fs = require('fs')\n\n// const base_folder_test_data = 'spec/test_data/'\nconst brownCorpus = require('./test_data/browntag_nolines_excerpt_maxent.json')\n// const classifierFile = base_folder_test_data + 'classifier.json'\n\nconst natural = require('../lib/natural')\nconst Classifier = natural.MaxEntClassifier\nconst FeatureSet = natural.FeatureSet\nconst Context = natural.Context\n\n// Load some classes specific to part of speech tagging\nconst Corpus = natural.MECorpus\n// const POS_Element = natural.POSElement\nconst Sentence = natural.MESentence\n// Lexicon-based tagger is used for comparison\nconst Tagger = natural.BrillPOSTagger\n\nconst JSON_FLAG = 2\nconst nrIterations = 2\nconst minImprovement = 0.01\nconst trainCorpusSize = 50 // percentage\n\nconst DEBUG = false\n\n// Structure of the event space\n// - Classes are possible tags\n// - A context consists of a window of words and a window of tags\n\nfunction applyClassifierToTestCorpus (testCorpus, tagger, classifier) {\n  let totalWords = 0\n  let correctyTaggedLexicon = 0\n  let correctlyTaggedMaxEnt = 0\n\n  testCorpus.sentences.forEach(function (sentence) {\n    // Put the words of the sentence in an array\n    const s = sentence.taggedWords.map(function (token) {\n      return token.token\n    })\n\n    // Use the lexicon to tag the sentence\n    const taggedSentence = tagger.tagWithLexicon(s)\n    // Count the right tags\n    sentence.taggedWords.forEach(function (token, i) {\n      totalWords++\n      if (token.tag === taggedSentence.taggedWords[i].tag) {\n        correctyTaggedLexicon++\n      }\n    })\n\n    const sentenceLength = sentence.length\n    // Classify tags using maxent\n    taggedSentence.taggedWords.forEach(function (taggedWord, index) {\n      // Create context for classication\n      const context = new Context({\n        wordWindow: {},\n        tagWindow: {}\n      })\n      // And fill it:\n\n      // Current wordWindow\n      context.data.wordWindow['0'] = taggedWord.token\n      // Previous bigram\n      if (index > 1) {\n        context.data.tagWindow['-2'] = taggedSentence.taggedWords[index - 2].tag\n      }\n      // Left bigram\n      if (index > 0) {\n        context.data.tagWindow['-1'] = taggedSentence.taggedWords[index - 1].tag\n      }\n      // Right bigram\n      if (index < sentenceLength - 1) {\n        context.data.tagWindow['1'] = taggedSentence.taggedWords[index + 1].tag\n      }\n      // Next bigram\n      if (index < sentenceLength - 2) {\n        context.data.tagWindow['2'] = taggedSentence.taggedWords[index + 2].tag\n      }\n      // Left bigram words\n      if (index > 0) {\n        context.data.wordWindow['-1'] = taggedSentence.taggedWords[index - 1].token\n      }\n      // Right bigram words\n      if (index < sentenceLength - 1) {\n        context.data.wordWindow['1'] = taggedSentence.taggedWords[index + 1].token\n      }\n\n      // Classify using maximum entropy model\n      let tag = classifier.classify(context)\n\n      if (tag === '') {\n        tag = tagger.lexicon.tagWordWithDefaults(context.data.wordWindow['0'])\n      }\n\n      // Collect stats\n      if (tag === sentence.taggedWords[index].tag) {\n        // Correctly tagged\n        correctlyTaggedMaxEnt++\n      }\n      DEBUG && console.log('(word, classification, right tag): ' + '(' + taggedWord.token +\n        ', ' + tag + ', ' + sentence.taggedWords[index].tag + ')')\n    })\n  })\n\n  DEBUG && console.log('Number of words tagged: ' + totalWords)\n  DEBUG && console.log('Percentage correctly tagged lexicon: ' + correctyTaggedLexicon / totalWords * 100 + '%')\n  DEBUG && console.log('Percentage correctly tagged maxent:  ' + correctlyTaggedMaxEnt / totalWords * 100 + '%')\n}\n\ndescribe('Maximum Entropy Classifier applied to POS tagging', function () {\n  // Prepare the train and test corpus\n  DEBUG && console.log('Corpus after require: ' + JSON.stringify(brownCorpus, null, 2))\n  const corpus = new Corpus(brownCorpus, JSON_FLAG, Sentence)\n  DEBUG && console.log('Size of corpus: ' + corpus.sentences.length)\n  DEBUG && console.log('Corpus: ' + JSON.stringify(corpus, null, 2))\n  const trainAndTestCorpus = corpus.splitInTrainAndTest(trainCorpusSize)\n  const trainCorpus = trainAndTestCorpus[0]\n  DEBUG && console.log('Size of training corpus: ' + trainCorpus.sentences.length)\n  DEBUG && console.log('Training corpus: ' + JSON.stringify(trainCorpus, null, 2))\n  const testCorpus = trainAndTestCorpus[1]\n  DEBUG && console.log('Size of testing corpus: ' + testCorpus.sentences.length)\n  let sample = null\n  let classifier = null\n  let featureSet = null\n  let lexicon = null\n  let tagger = null\n\n  // Generate sample from trainCorpus\n  it('generates a sample from a corpus', function () {\n    sample = trainCorpus.generateSample()\n    expect(sample.size()).toBeGreaterThan(0)\n    DEBUG && console.log('Size of the sample: ' + sample.size())\n  })\n\n  it('generates a set of features from the sample', function () {\n    featureSet = new FeatureSet()\n    DEBUG && console.log(sample)\n    sample.generateFeatures(featureSet)\n    expect(featureSet.size()).toBeGreaterThan(0)\n    DEBUG && console.log('Number of features: ' + featureSet.size())\n    DEBUG && console.log(featureSet.prettyPrint())\n  })\n\n  it('analyses the sample', function () {\n    trainCorpus.analyse()\n    lexicon = trainCorpus.buildLexicon()\n    expect(lexicon.size()).toBeGreaterThan(0)\n  })\n\n  it('trains the maximum entropy classifier', function () {\n    classifier = new Classifier(featureSet, sample)\n    DEBUG && console.log('Classifier created')\n    classifier.train(nrIterations, minImprovement)\n    DEBUG && console.log('Checksum: ' + classifier.p.checkSum())\n  })\n\n  it('compares maximum entropy based POS tagger to lexicon-based tagger', function () {\n    // Test the classifier against the test corpus\n    // lexicon.setDefaultCategories('NN', 'NP');\n    tagger = new Tagger(lexicon)\n    applyClassifierToTestCorpus(testCorpus, tagger, classifier)\n  })\n})\n"
  },
  {
    "path": "examples/classification/basic.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst classifier = new natural.BayesClassifier()\n\nclassifier.addDocument('my unit-tests failed.', 'software')\nclassifier.addDocument('tried the program, but it was buggy.', 'software')\nclassifier.addDocument('the drive has a 2TB capacity.', 'hardware')\nclassifier.addDocument('i need a new power supply.', 'hardware')\n\nclassifier.train()\n\nconsole.log(classifier.classify('did the tests pass?'))\nconsole.log(classifier.classify('did you buy a new drive?'))\n"
  },
  {
    "path": "examples/classification/recall.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\n\nnatural.BayesClassifier.load('classifier.json', null, function (err, classifier) {\n  if (err) {\n    console.log(err)\n    return\n  }\n  console.log(classifier.classify('did the tests pass?'))\n})\n"
  },
  {
    "path": "examples/classification/store.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst classifier = new natural.BayesClassifier()\n\nclassifier.addDocument('my unit-tests failed.', 'software')\nclassifier.addDocument('tried the program, but it was buggy.', 'software')\nclassifier.addDocument('the drive has a 2TB capacity.', 'hardware')\nclassifier.addDocument('i need a new power supply.', 'hardware')\n\nclassifier.train()\n\nclassifier.save('classifier.json', function (err, classifier) {\n  if (err) {\n    console.log(err)\n  }\n  // the classifier is saved to the classifier.json file!\n})\n"
  },
  {
    "path": "examples/classification/try_events.js",
    "content": "const natural = require('../../lib/natural')\nconst PorterStemmerEs = require('../../lib/natural/stemmers/porter_stemmer_es')\nconst classifier = new natural.LogisticRegressionClassifier(PorterStemmerEs)\n\nclassifier.addDocument('ranchero golpe', 'Huevos')\nclassifier.addDocument('bbq', 'Huevos')\nclassifier.addDocument('salchichas ranchero', 'Tortas')\n\nclassifier.on('trainedWithDocument', (v) => console.log(v))\nclassifier.on('doneTraining', (v) => console.log(v))\nclassifier.train()\n\nclassifier.save('classifier.json', (err) => console.log(err))\n"
  },
  {
    "path": "examples/inflection/count.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst inflector = natural.CountInflector\n\nconsole.log(inflector.nth(1))\nconsole.log(inflector.nth(2))\nconsole.log(inflector.nth(3))\nconsole.log(inflector.nth(4))\nconsole.log(inflector.nth(10))\nconsole.log(inflector.nth(11))\nconsole.log(inflector.nth(101))\nconsole.log(inflector.nth(102))\nconsole.log(inflector.nth(103))\nconsole.log(inflector.nth(104))\n"
  },
  {
    "path": "examples/inflection/noun.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst nounInflector = new natural.NounInflector()\n\nlet plural = nounInflector.pluralize('radius')\nconsole.log(plural)\n\nplural = nounInflector.pluralize('beer')\nconsole.log(plural)\n\nlet singular = nounInflector.singularize('radii')\nconsole.log(singular)\n\nsingular = nounInflector.singularize('beers')\nconsole.log(singular)\n"
  },
  {
    "path": "examples/phonetics/compare.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst phonetic = natural.Metaphone\n\nconst wordA = 'phonetics'\nconst stdin = process.openStdin()\nstdin.setEncoding('ascii')\n\nprocess.stdout.write('try to enter a word that sounds like \"' + wordA + '\": ')\n\nstdin.on('data', function (wordB) {\n  if (phonetic.compare(wordA, wordB)) { process.stdout.write('they sound alike!\\n') } else { process.stdout.write('sorry, they don\\'t sound alike.\\n') }\n\n  process.exit()\n})\n"
  },
  {
    "path": "examples/phonetics/tokenize_and_phoneticize.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst phonetic = natural.DoubleMetaphone\n\nconst sentence = 'phonetic modules contain algorithms'\nconst stdin = process.openStdin()\nstdin.setEncoding('ascii')\n// phonetic.attach()\nprocess.stdout.write('enter a word that sounds like one of these, \"' + sentence + '\": ')\n\nconst words = phonetic.tokenizeAndPhoneticize(sentence, phonetic)\nconsole.log(words)\n\nfunction findMatch (input) {\n  const inputSounds = phonetic.process(input)\n  console.log(inputSounds)\n\n  for (let i = 0; i < words.length; i++) {\n    const wordSounds = words[i]\n\n    if (wordSounds[0] === inputSounds[0] &&\n        wordSounds[1] === inputSounds[1]) {\n      process.stdout.write('match found!\\n')\n      return\n    }\n  }\n\n  process.stdout.write('no match found.\\n')\n}\n\nstdin.on('data', function (input) {\n  findMatch(input)\n  process.exit()\n})\n"
  },
  {
    "path": "examples/stemming/stem_corpus.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst stemmer = natural.PorterStemmer\n\nconsole.log(stemmer.tokenizeAndStem('i stemmed words.'))\nconsole.log(stemmer.tokenizeAndStem('i stemmed words.', true))\n"
  },
  {
    "path": "examples/stemming/stem_word.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst stemmer = natural.LancasterStemmer\n\nconsole.log(stemmer.stem('stemming'))\n"
  },
  {
    "path": "examples/tfidf/array_example.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst TfIdf = natural.TfIdf\nconst tfidf = new TfIdf()\n\ntfidf.addDocument(['document', 'about', 'node'])\ntfidf.addDocument(['document', 'about', 'ruby'])\ntfidf.addDocument(['document', 'about', 'ruby', 'node'])\ntfidf.addDocument(['document', 'about', 'node', 'node'])\n\ntfidf.tfidfs(['node', 'ruby'], function (i, measure) {\n  console.log('document #' + i + ' is ' + measure)\n})\n"
  },
  {
    "path": "examples/tfidf/multiple_terms.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst TfIdf = natural.TfIdf\nconst tfidf = new TfIdf()\n\ntfidf.addDocument('this document is about node.')\ntfidf.addDocument('this document is about ruby.')\ntfidf.addDocument('this document is about ruby and node.')\n\ntfidf.tfidfs('node ruby', function (i, measure) {\n  console.log('document #' + i + ' is ' + measure)\n})\n"
  },
  {
    "path": "examples/tfidf/tfidf_example.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('natural')\nconst TfIdf = natural.TfIdf\nconst tfidf = new TfIdf()\n\ntfidf.addDocument('this document is about node.')\ntfidf.addDocument('this document is about ruby.')\ntfidf.addDocument('this document is about ruby and node.')\ntfidf.addDocument('this document is about node. it has node examples')\n\nconsole.log('node --------------------------------')\ntfidf.tfidfs('node', function (i, measure) {\n  console.log('document #' + i + ' is ' + measure)\n})\n\nconsole.log('ruby --------------------------------')\ntfidf.tfidfs('ruby', function (i, measure) {\n  console.log('document #' + i + ' is ' + measure)\n})\n\nconsole.log('-------------------------------------')\nconsole.log(tfidf.tfidf('ruby', 0))\nconsole.log(tfidf.tfidf('ruby', 1))\n"
  },
  {
    "path": "examples/tokenizer/testSentenceTokenizer.js",
    "content": "const Tokenizer = require('../../lib/natural').SentenceTokenizer\n\nconst abbreviations = require('../../lib/natural').abbreviations\nconst sentenceDemarkers = ['.', '!', '?']\nconst tokenizer = new Tokenizer(abbreviations, sentenceDemarkers)\n\nconst testData = `Breaking News: Renewable Energy on the Rise\n\nIn 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.\n\nIn 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.\"\n\nMeanwhile, 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.\n\nChina, 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.\n\nDespite 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.\n\nExperts 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.\"\n\nStay tuned for more updates on this developing story.`\n\nconst result = tokenizer.tokenize(testData)\nconsole.log(result)\n"
  },
  {
    "path": "index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nmodule.exports = require('./lib/natural/')\n"
  },
  {
    "path": "io_spec/MaxEntClassifier_spec.js",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/* eslint-disable no-unused-expressions */\n\nconst fs = require('fs')\nconst _ = require('underscore')\n\nconst Sample = require('../lib/natural/classifiers/maxent/Sample')\nconst Element = require('../lib/natural/classifiers/maxent/SimpleExample/SE_Element')\nconst Context = require('../lib/natural/classifiers/maxent/Context')\nconst FeatureSet = require('../lib/natural/classifiers/maxent/FeatureSet')\nconst Classifier = require('../lib/natural/classifiers/maxent/Classifier')\n\nconst classifierFile = 'io_spec/test_data/classifier.json'\nconst nrIterations = 50\nconst minImprovement = 0.01\nconst DEBUG = false\n\ndescribe('Maximum entropy classifier file IO', function () {\n  // Prepare sample\n  const sample = new Sample()\n  sample.addElement(new Element('x', new Context('0')))\n  sample.addElement(new Element('y', new Context('0')))\n  sample.addElement(new Element('x', new Context('1')))\n  sample.addElement(new Element('y', new Context('1')))\n\n  // Prepare feature set\n  const featureSet = new FeatureSet()\n  sample.generateFeatures(featureSet)\n\n  // Prepare classifier\n  const classifier = new Classifier(featureSet, sample)\n  DEBUG && console.log('Classifier created')\n  classifier.train(nrIterations, minImprovement)\n  DEBUG && console.log('Checksum: ' + classifier.p.checkSum())\n\n  it('saves the classifier to a file', function (done) {\n    classifier.save(classifierFile, function (err, classifier) {\n      if (err) {\n        console.log(err)\n        expect(false).toBe(true)\n      } else {\n        DEBUG && console.log('Classifier saved to ' + classifierFile)\n        expect(fs.existsSync(classifierFile)).toBe(true)\n      }\n      done()\n    })\n  })\n\n  it('loads the classifier from a file', function (done) {\n    classifier.load(classifierFile, Element, function (err, c) {\n      if (err) {\n        console.log(err)\n        expect(false).toBe(true)\n      } else {\n        DEBUG && console.log('Classifier loaded from ' + classifierFile)\n\n        // Train the classifier\n        c.train(nrIterations, minImprovement)\n\n        // Compare loaded classifier to original classifier\n        expect(_.isEqual(classifier.sample, c.sample)).toEqual(true)\n        classifier.features.features.forEach((f, index) => {\n          Object.keys(f).forEach(key => {\n            if (typeof f[key] !== 'function') {\n              expect(c.features.features[index][key]).toEqual(f[key])\n            }\n          })\n        })\n      }\n      done()\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/Sample_spec.js",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst fs = require('fs')\n\nconst Sample = require('../lib/natural/classifiers/maxent/Sample')\nconst Element = require('../lib/natural/classifiers/maxent/Element')\nconst Context = require('../lib/natural/classifiers/maxent/Context')\n\nconst DEBUG = false\nconst sampleFile = './io_spec/test_data/sample.json'\n\ndescribe('Sample class', function () {\n  // Create sample\n  let sample = new Sample()\n  sample.addElement(new Element('x', new Context('0')))\n  sample.addElement(new Element('y', new Context('0')))\n  sample.addElement(new Element('x', new Context('1')))\n  sample.addElement(new Element('y', new Context('1')))\n\n  it('saves a sample to a file', function (done) {\n    sample.save(sampleFile, function (err, sample) {\n      if (err) {\n        console.log(err)\n        expect(false).toBe(true)\n      } else {\n        DEBUG && console.log('Sample saved to ' + sampleFile)\n        expect(fs.existsSync(sampleFile)).toBe(true)\n      }\n      done()\n    })\n  })\n\n  let newSample = null\n  it('loads a sample from a file', function (done) {\n    sample.load(sampleFile, Element, function (err, s) {\n      if (err) {\n        console.log(err)\n        expect(false).toBe(true)\n      } else {\n        DEBUG && console.log('Sample loaded from ' + sampleFile)\n        expect(s.size()).toEqual(sample.size())\n        newSample = s\n      }\n      done()\n    })\n    if (newSample) {\n      expect(newSample.size()).toEqual(sample.size())\n      sample = newSample\n    }\n  })\n})\n"
  },
  {
    "path": "io_spec/StorageBackend_spec.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst storage = require('../lib/natural/util/storage/StorageBackend.js')\n\nconst STORAGESERVERS = true\n\ndescribe('StorageBackend', () => {\n  let storageBackend = null\n\n  beforeEach(() => {\n    storageBackend = new storage.StorageBackend()\n  })\n\n  if (STORAGESERVERS) { // Test storage servers\n    const object = {\n      attr1: 'val1',\n      attr2: 'val2'\n    }\n\n    // A for loop to test all five storage methods\n    Object.keys(storage.STORAGE_TYPES).forEach(storageType => {\n      it('should store data in and retrieve data from ' + storageType, async () => {\n        await storageBackend.setStorageType(storageType)\n        const key = await storageBackend.store(object)\n        expect(key).not.toEqual(null)\n        const result = await storageBackend.retrieve(key)\n        expect(result).toEqual(object)\n      })\n    })\n\n    it('should throw an error for an invalid storage type', async () => {\n      try {\n        await storageBackend.setStorageType('invalidType')\n      } catch (error) {\n        expect(error.message).toEqual('Invalid storage type')\n      }\n    })\n\n    it('should throw an error for changing the storage type', async () => {\n      storageBackend.setStorageType('FILE')\n      try {\n        await storageBackend.setStorageType('FILE')\n      } catch (error) {\n        expect(error.message).toEqual('Storage type already set')\n      }\n    })\n  }\n})\n"
  },
  {
    "path": "io_spec/bayes_classifier_spec.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('../lib/natural')\nconst sinon = require('sinon')\nconst baseClassifier = require('../lib/natural/classifiers/classifier')\nconst storage = require('../lib/natural/util/storage/StorageBackend')\n\nfunction setupClassifier () {\n  const classifier = new natural.BayesClassifier()\n  classifier.addDocument(['fix', 'box'], 'computing')\n  classifier.addDocument(['write', 'code'], 'computing')\n  classifier.addDocument(['script', 'code'], 'computing')\n  classifier.addDocument(['write', 'book'], 'literature')\n  classifier.addDocument(['read', 'book'], 'literature')\n  classifier.addDocument(['study', 'book'], 'literature')\n  return classifier\n}\n\ndescribe('Bayes classifier file I/O', function () {\n  it('should save and load a working classifier', function (done) {\n    const classifier = setupClassifier()\n    classifier.train()\n\n    classifier.save('bayes_classifier.json', function (err) {\n      if (err) {\n        throw err\n      }\n      natural.BayesClassifier.load('bayes_classifier.json', null, function (err, newClassifier) {\n        if (err) {\n          throw err\n        }\n        newClassifier.addDocument('kick a ball', 'sports')\n        newClassifier.addDocument('hit some balls', 'sports')\n        newClassifier.addDocument('kick and punch', 'sports')\n        newClassifier.train()\n        expect(newClassifier.classify('a bug in the code')).toBe('computing')\n        expect(newClassifier.classify('read all the books')).toBe('literature')\n        expect(newClassifier.classify('kick butt')).toBe('sports')\n        done()\n      })\n    })\n  })\n\n  it('should only execute the callback once when failing to load a classifier', function (done) {\n    natural.BayesClassifier.load('nonexistant_bayes_classifier.json', null, function (err, newClassifier) {\n      expect(err.code).toBe('ENOENT')\n      expect(newClassifier).toBe(undefined)\n      done()\n    })\n  })\n\n  describe('Bayes classifier load', function () {\n    let sandbox = null\n\n    beforeEach(function () {\n      sandbox = sinon.createSandbox()\n    })\n\n    afterEach(function () {\n      sandbox.restore()\n    })\n    it('should pass an error to the callback function', function () {\n      sandbox.stub(baseClassifier, 'load').callsFake(function (filename, stemmer, cb) {\n        cb(new Error('An error occurred'))\n      })\n      natural.BayesClassifier.load('/spec/test_data/tfidf_document1.txt', null, function (err, newClassifier) {\n        expect(err).toBeTruthy()\n        expect(newClassifier).not.toBeTruthy()\n      })\n    })\n  })\n\n  describe('Storing and retrieving Bayesian classifiers using the storage backend', function () {\n    const classifier = setupClassifier()\n    classifier.train()\n\n    Object.keys(storage.STORAGE_TYPES).forEach(storageType => {\n      it('should be able to save and load a classifier to ' + storageType, async function () {\n        const store = await new storage.StorageBackend(storageType)\n        const key = await classifier.saveTo(store)\n        expect(key).toBeDefined()\n        const classifierLoaded = await natural.BayesClassifier.loadFrom(key, undefined, store)\n        expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier))\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/classifier_spec.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst natural = require('../lib/natural')\nconst Classifier = require('../lib/natural/classifiers/classifier.js')\nconst storage = require('../lib/natural/util/storage/StorageBackend.js')\nconst fs = require('fs')\n\ndescribe('classifier file IO', function () {\n  describe('save', function () {\n    const tmpFilename = './test_data/deleteMe'\n    const nonExistentFilename = '/nonExistentDir/deleteMe'\n    let classifier\n\n    beforeEach(function () {\n      classifier = new natural.BayesClassifier()\n      classifier.addDocument('I went to see the doctor of', 'philosophy')\n    })\n\n    afterEach(function () {\n      if (fs.existsSync(tmpFilename)) {\n        fs.unlinkSync(tmpFilename)\n        fs.unlinkSync(nonExistentFilename)\n      }\n    })\n\n    it('does nothing if called without a callback', function () {\n      classifier.save(tmpFilename)\n      expect(fs.existsSync(tmpFilename)).toBe(false)\n    })\n\n    it('fails if writing to a file fails', function () {\n      classifier.save(nonExistentFilename, function (err) {\n        expect(err.code).toEqual('ENOENT')\n        expect(fs.existsSync(tmpFilename)).toBe(false)\n      })\n    })\n  })\n\n  describe('load', function () {\n    it('does nothing if called without a callback', function () {\n      let result\n      try {\n        result = Classifier.load('./test_data/tfidf/tfidf_document1.txt')\n      } catch (err) {\n        console.log(err)\n      }\n      expect(result).toEqual(undefined)\n    })\n\n    it('does nothing if called with a nonexistent filename', function () {\n      Classifier.load('./nonexistentFilename', function (err, newClassifier) {\n        expect(err.code).toEqual('ENOENT')\n        expect(newClassifier).toEqual(null)\n      })\n    })\n  })\n\n  describe('Storing and retrieving Logistic Regression classifiers using the storage backend', function () {\n    const classifier = new Classifier()\n    Object.keys(storage.STORAGE_TYPES).forEach(storageType => {\n      it('should be able to save and load a classifier to ' + storageType, async function () {\n        const store = await new storage.StorageBackend(storageType)\n        const key = await classifier.saveTo(store)\n        expect(key).toBeDefined()\n        const classifierLoaded = await Classifier.loadFrom(key, store)\n        expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier))\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/logistic_regression_classifier_spec.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst LogisticRegressionClassifier = require('../lib/natural').LogisticRegressionClassifier\nconst storage = require('../lib/natural/util/storage/StorageBackend')\n\nfunction setupClassifier () {\n  const classifier = new LogisticRegressionClassifier()\n  classifier.addDocument('i fixed the box', 'computing')\n  classifier.addDocument('i write code', 'computing')\n  classifier.addDocument('nasty script code', 'computing')\n  classifier.addDocument('write a book', 'literature')\n  classifier.addDocument('read a book', 'literature')\n  classifier.addDocument('study the books', 'literature')\n  classifier.train()\n  return classifier\n}\n\ndescribe('Saving and loading logistic regression classifiers to/from file', function () {\n  it('should save and load a working classifier', function () {\n    const classifier = setupClassifier()\n\n    classifier.save('lr_classifier.json', function (err) {\n      if (err) {\n        throw err\n      }\n      LogisticRegressionClassifier.load('lr_classifier.json', null, function (err, newClassifier) {\n        if (err) {\n          throw err\n        }\n        newClassifier.addDocument('hit some balls', 'sports')\n        newClassifier.addDocument('kick a ball', 'sports')\n        newClassifier.addDocument('kick and punch things', 'sports')\n        newClassifier.train()\n\n        expect(newClassifier.classify('a bug in the code')).toBe('computing')\n        expect(newClassifier.classify('read all the books')).toBe('literature')\n        expect(newClassifier.classify('kick butt')).toBe('sports')\n\n        expect(Object.getPrototypeOf(newClassifier)).toEqual(Object.getPrototypeOf(classifier))\n      })\n    })\n  })\n\n  it('should only execute the callback once when failing to load a classifier', function () {\n    LogisticRegressionClassifier.load('nonexistant_lr_classifier.json', null, function (err, newClassifier) {\n      if (err) {\n        expect(err.code).toBe('ENOENT')\n        expect(newClassifier).toBe(undefined)\n      }\n    })\n  })\n\n  describe('Storing and retrieving Logistic Regression classifiers using the storage backend', function () {\n    const classifier = setupClassifier()\n    Object.keys(storage.STORAGE_TYPES).forEach(storageType => {\n      it('should be able to save and load a classifier to ' + storageType, async function () {\n        const store = await new storage.StorageBackend(storageType)\n        const key = await classifier.saveTo(store)\n        expect(key).toBeDefined()\n        const classifierLoaded = await LogisticRegressionClassifier.loadFrom(key, undefined, store)\n        expect(Object.getPrototypeOf(classifierLoaded)).toEqual(Object.getPrototypeOf(classifier))\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/test_data/tfidf/one",
    "content": "disk document one"
  },
  {
    "path": "io_spec/test_data/tfidf/tfidf_document1.txt",
    "content": "this document is about node."
  },
  {
    "path": "io_spec/test_data/tfidf/tfidf_document2.txt",
    "content": "this document is about ruby."
  },
  {
    "path": "io_spec/test_data/tfidf/tfidf_document3.txt",
    "content": "this document is about ruby and node."
  },
  {
    "path": "io_spec/test_data/tfidf/tfidf_document4.txt",
    "content": "this document is about node. it has node examples"
  },
  {
    "path": "io_spec/test_data/tfidf/two",
    "content": "disk document two"
  },
  {
    "path": "io_spec/tfidf_spec.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst TfIdf = require('../lib/natural/tfidf/tfidf')\nlet tfidf\n\ndescribe('tfidf io', function () {\n  it('should be able to be serialized', function () {\n    tfidf = new TfIdf()\n    tfidf.addDocument('document one', 'un')\n    tfidf.addDocument('document Two', 'deux')\n    const s = JSON.stringify(tfidf)\n    expect(s).toBe('{\"documents\":[{\"__key\":\"un\",\"document\":1,\"one\":1},{\"__key\":\"deux\",\"document\":1,\"two\":1}],\"_idfCache\":{}}')\n  })\n\n  it('should deserialize', function () {\n    const s = '{\"documents\":[{\"__key\":\"un\",\"document\":1,\"one\":1},{\"__key\":\"deux\",\"document\":1,\"two\":1}]}'\n    const tfidf = new TfIdf(JSON.parse(s))\n    expect(tfidf.tfidf('one', 0)).toBe(1)\n    expect(tfidf.tfidf('two', 0)).toBe(0)\n  })\n\n  it('should process files', function () {\n    const tfidf = new TfIdf()\n    tfidf.addFileSync('io_spec/test_data/tfidf/one')\n    tfidf.addFileSync('io_spec/test_data/tfidf/two')\n    expect(tfidf.tfidf('Document', 0)).toBe(0.5945348918918356)\n    expect(tfidf.tfidf('one', 0)).toBe(1)\n    expect(tfidf.tfidf('two', 0)).toBe(0)\n  })\n\n  // Test tf-idf computation on files loaded using readFileSync\n  it('should load documents from files', function () {\n    tfidf = new TfIdf()\n\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', null, { node: 0, ruby: 1 })\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document2.txt', null, { node: 1, ruby: 3 })\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document3.txt', null, { node: 0, ruby: 3 })\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt', null, { node: 2, ruby: 1 })\n\n    const correctCalculations = [\n      1 * (1 + Math.log(4.0 / 4.0)),\n      0,\n      2 * (1 + Math.log(4.0 / 4.0)),\n      1 * (1 + Math.log(4.0 / 3.0))\n    ]\n\n    tfidf.tfidfs('node', function (i, measure, k) {\n      expect(measure).toBe(correctCalculations[k.node])\n    })\n\n    tfidf.tfidfs('ruby', function (i, measure, k) {\n      expect(measure).toBe(correctCalculations[k.ruby])\n    })\n\n    // addFileSync with restoreCache flag set to true.\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt', null, { node: 2, ruby: 1 }, true)\n  })\n\n  // Test idf caching when adding documents from addFileSync\n  it('should update a terms tf-idf score after adding documents from addFileSync', function () {\n    tfidf = new TfIdf()\n\n    // Add 2 documents\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', null, 0)\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document2.txt', null, 1)\n\n    // check the tf-idf for 'node'\n    expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0)))\n\n    // Add 2 more documents\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document3.txt')\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document4.txt')\n\n    // Ensure that the tf-idf in the same document has changed to reflect the new idf.\n    expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(4.0 / 4.0)))\n  })\n\n  it('should use the specified encoding for addFileSync', function () {\n    tfidf = new TfIdf()\n\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', 'base64')\n    tfidf.addFileSync('io_spec/test_data/tfidf/tfidf_document1.txt', 'utf8')\n\n    expect(tfidf.tfidf('dghpcybkb2n1bwvudcbpcybhym91dcbub2rllg', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0)))\n  })\n\n  // Test encoding check for addFileSync\n  it('should require a valid encoding for addFileSync', function () {\n    tfidf = new TfIdf()\n\n    expect(function () { tfidf.addFileSync('spec/test_data/tfidf_document1.txt', 'foobar') }).toThrow(new Error('Invalid encoding: foobar'))\n  })\n})\n"
  },
  {
    "path": "io_spec/tmp/.this_folder_exists.txt",
    "content": ""
  },
  {
    "path": "io_spec/tmp/055ff9e6-bf89-42d0-b44a-4dcc523bf6fc.json",
    "content": "{\"_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}"
  },
  {
    "path": "io_spec/tmp/7cfb947f-0115-4ef6-b21b-d9554d51caf2.json",
    "content": "{\"attr1\":\"val1\",\"attr2\":\"val2\"}"
  },
  {
    "path": "io_spec/tmp/bf35794b-83e7-4628-8ec2-a0cf451a6fb2.json",
    "content": "{\"_events\":{},\"_eventsCount\":0,\"docs\":[],\"features\":{},\"stemmer\":{},\"lastAdded\":0,\"Threads\":null}"
  },
  {
    "path": "io_spec/tmp/c2ee3580-26b9-4972-b7f9-e59a933ed021.json",
    "content": "{\"_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}"
  },
  {
    "path": "io_spec/wordnet_index_spec.js",
    "content": "/*\nCopyright (c) 2014, John Markos O'Neill\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst IndexFile = require('../lib/natural/wordnet/index_file')\n\ndescribe('indexFile', function () {\n  describe('getFileSize', function () {\n    it('should look up a word if the file exists', function () {\n      const indexFile = new IndexFile('./test_data/', 'document1.txt')\n      indexFile.lookupFromFile('node', function (indexRecord) {\n      })\n    })\n\n    it('should fail to lookup a word if the file does not exist', function () {\n      const indexFile = new IndexFile('spec/test_data/', 'nonexistent.txt')\n      indexFile.lookupFromFile('node', function (err) {\n        err.code.should.equal('ENOENT')\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/wordnet_spec.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst WordNet = require('../lib/natural/wordnet/wordnet')\n\ndescribe('wordnet', function () {\n  it('should lookup synonyms', function (done) {\n    const wordnet = new WordNet()\n\n    wordnet.lookupSynonyms('entity', function (records) {\n      expect(records.length).toBe(3)\n      done()\n    })\n  })\n\n  function expectResults (records) {\n    expect(records.length).toBe(3)\n    expect(records[0].synsetOffset).toBe(4431553)\n    expect(records[1].synsetOffset).toBe(2137)\n    expect(records[2].synsetOffset).toBe(1930)\n  }\n\n  it('should lookup synonyms give a synset offset and a pos', function (done) {\n    const wordnet = new WordNet()\n\n    wordnet.getSynonyms(1740, 'n', function (records) {\n      expectResults(records)\n      done()\n    })\n  })\n\n  it('should lookup synonyms via a provided synset object', function (done) {\n    const wordnet = new WordNet()\n\n    wordnet.lookup('entity', function (results) {\n      wordnet.getSynonyms(results[0], function (records) {\n        expectResults(records)\n        done()\n      })\n    })\n  })\n\n  it('should add records but once', function (done) {\n    const wordnet = new WordNet()\n\n    wordnet.lookup('node', function (records) {\n      expect(records.length).toBe(8)\n      expect(records[0].lemma).toBe('node')\n\n      done()\n    })\n  })\n})\n"
  },
  {
    "path": "io_spec/wordnet_test.ts",
    "content": "import { WordNet } from '../lib/natural/wordnet'\n\nlet wordnet = new WordNet()\nwordnet.lookup('node', function (results) {\n  results.forEach(function (result) {\n    console.log('------------------------------------')\n    console.log(result.synsetOffset)\n    console.log(result.pos)\n    console.log(result.lemma)\n    console.log(result.synonyms)\n    console.log(result.pos)\n    console.log(result.gloss)\n  })\n  wordnet = new WordNet()\n  wordnet.get(4424418, 'n', function (result) {\n    console.log('------------------------------------')\n    console.log('Looking up an entry by id 4424418')\n    console.log(result.lemma)\n    console.log(result.pos)\n    console.log(result.gloss)\n    console.log(result.synonyms)\n  })\n})\n"
  },
  {
    "path": "lib/natural/analyzers/SenType.ts",
    "content": "/*\nCopyright (c) 2024,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport const enum SenType {\n  Unknown = 'UNKNOWN',\n  Command = 'COMMAND',\n  Interrogative = 'INTERROGATIVE',\n  Exclamatory = 'EXCLAMATORY',\n  Declarative = 'DECLARATIVE'\n}\n"
  },
  {
    "path": "lib/natural/analyzers/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport type { SenType } from './SenType'\n\ndeclare interface TaggedWord {\n  token: string\n  pos: string\n  pp?: boolean\n  spos?: string\n  added?: boolean\n  [key: string]: any\n}\n\ndeclare type PunctuationMapping = Array<Record<string, string>> | ''\ndeclare type PunctuationFunction = () => PunctuationMapping\n\ndeclare interface TaggedSentence {\n  tags: TaggedWord[]\n  punct: PunctuationFunction\n}\n\ndeclare type CallbackFunction = (obj: SentenceAnalyzer) => void\n\nexport class SentenceAnalyzer {\n  posObj: TaggedSentence\n  senType: SenType | null\n\n  constructor (pos: TaggedSentence, cbf: CallbackFunction)\n  part (cbf: CallbackFunction): void\n  prepositionPhrases (): void\n  subjectToString (): string\n  predicateToString (): string\n  implicitYou (): boolean\n  toString (): string\n  type (cbf: CallbackFunction): string\n}\n"
  },
  {
    "path": "lib/natural/analyzers/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.SentenceAnalyzer = require('./sentence_analyzer')\n"
  },
  {
    "path": "lib/natural/analyzers/sentence_analyzer.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst _ = require('underscore')\n\n/*\n Sentences Analyzer Class\n From http://www.writingcentre.uottawa.ca/hypergrammar/sntpurps.html\n\n Take a POS input and analyse it for\n  - Type of Sentense\n     - Interrogative\n       - Tag Questions\n       -\n     - Declarative\n     - Exclamatory\n     - Imperative\n\n  - Parts of a Sentense\n     - Subject\n     - Predicate\n\n  - Show Preposition Phrases\n*/\n\nclass SentenceAnalyzer {\n  constructor (pos, callbackFunction) {\n    this.posObj = pos\n    this.senType = null\n    callbackFunction(this)\n  }\n\n  part (callbackFunction) {\n    const subject = []\n    const predicat = []\n    let verbFound = false\n\n    this.prepositionPhrases()\n\n    for (let i = 0; i < this.posObj.tags.length; i++) {\n      if (this.posObj.tags[i].pos === 'VB') {\n        if (i === 0) {\n          verbFound = true\n        } else {\n          // We need to Test for any EX before the VB\n          if (this.posObj.tags[i - 1].pos !== 'EX') {\n            verbFound = true\n          } else {\n            predicat.push(this.posObj.tags[i].token)\n          }\n        }\n      }\n\n      // Add Pronoun Phrase (pp) Or Subject Phrase (sp)\n      if (!verbFound) {\n        if (this.posObj.tags[i].pp !== true) { this.posObj.tags[i].spos = 'SP' }\n\n        subject.push(this.posObj.tags[i].token)\n      } else {\n        if (this.posObj.tags[i].pp !== true) { this.posObj.tags[i].spos = 'PP' }\n\n        predicat.push(this.posObj.tags[i].token)\n      }\n    }\n\n    if (subject.length === 0) {\n      this.posObj.tags.push({ token: 'You', spos: 'SP', pos: 'PRP', added: true })\n    }\n\n    callbackFunction(this)\n  }\n\n  // Takes POS and removes IN to NN or NNS\n  // Adds a PP for each prepositionPhrases\n  prepositionPhrases () {\n    let remove = false\n\n    for (let i = 0; i < this.posObj.tags.length; i++) {\n      if (this.posObj.tags[i].pos.match('IN')) {\n        remove = true\n      }\n\n      if (remove) {\n        this.posObj.tags[i].pp = true\n      }\n\n      if (this.posObj.tags[i].pos.match('NN')) {\n        remove = false\n      }\n    }\n  }\n\n  subjectToString () {\n    return this.posObj.tags.map(function (t) {\n      if (t.spos === 'SP' || t.spos === 'S') {\n        return t.token\n      } else return null\n    }).join(' ')\n  }\n\n  predicateToString () {\n    return this.posObj.tags.map(function (t) {\n      if (t.spos === 'PP' || t.spos === 'P') {\n        return t.token\n      } else return null\n    }).join(' ')\n  }\n\n  implicitYou () {\n    for (let i = 0; i < this.posObj.tags.length; i++) {\n      if (this.posObj.tags[i].added) {\n        return true\n      }\n    }\n\n    return false\n  }\n\n  toString () {\n    return this.posObj.tags.map(function (t) { return t.token }).join(' ')\n  }\n\n  // This is quick and incomplete.\n  type (cbf) {\n    const callbackFunction = cbf || false\n\n    // Check for implicit you before popping a tag.\n    const implicitYou = this.implicitYou()\n\n    // FIXME - punct seems useless\n    let lastElement = this.posObj.punct()\n    // console.log(lastElement)\n    lastElement = (lastElement.length !== 0) ? lastElement.pop() : this.posObj.tags.pop()\n    // console.log(lastElement)\n\n    if (lastElement.pos !== '.') {\n      if (implicitYou) {\n        this.senType = 'COMMAND'\n      } else if (_.contains(['WDT', 'WP', 'WP$', 'WRB'], this.posObj.tags[0].pos)) {\n        // Sentences that start with: who, what where when why and how, then they are questions\n        this.senType = 'INTERROGATIVE'\n      } else if (_.contains(['PRP'], lastElement.pos)) {\n        // Sentences that end in a Personal pronoun are most likely questions\n        // eg. We should run away, should we [?]\n        // eg. You want to see that again, do you [?]\n        this.senType = 'INTERROGATIVE'\n      } else {\n        this.senType = 'UNKNOWN'\n      }\n    } else {\n      switch (lastElement.token) {\n        case '?':\n          this.senType = 'INTERROGATIVE'\n          break\n        case '!':\n          this.senType = (implicitYou) ? 'COMMAND' : 'EXCLAMATORY'\n          break\n        case '.':\n          this.senType = (implicitYou) ? 'COMMAND' : 'DECLARATIVE'\n          break\n      }\n    }\n\n    if (callbackFunction && _.isFunction(callbackFunction)) {\n      callbackFunction(this)\n    } else {\n      return this.senType\n    }\n  }\n}\n\nmodule.exports = SentenceAnalyzer\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/Dutch/README.txt",
    "content": "Transformation rules and lexicon are from\nhttps://mlnl.net/jg/software/bnl/\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/Dutch/brill_CONTEXTRULES.jg",
    "content": "Pron(betr,neut,zelfst) Pron(aanw,neut,attr) PREVTAG Prep(voor)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv)\nPron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXT1OR2TAG N(soort,ev,neut)\nPrep(voor) Adv(deel_v) NEXT1OR2TAG STAART\nPrep(voor) Adv(deel_v) NEXTTAG Prep(voor_inf)\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG Art(onbep,zijd_of_onzijd,neut)\nPron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)\nPrep(voor) Adv(deel_v) NEXTTAG Prep(voor)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Adv(gew,geen_func,stell,onverv)\nConj(onder,met_fin) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG N(soort,mv,neut)\nAdv(gew,er) Adv(pron,er) WDAND2TAGAFT er Prep(voor)\nPrep(voor) Adv(deel_v) NEXTTAG Punc(komma)\nConj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,geen_func,stell,onverv)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\nPron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr) NEXTTAG N(soort,ev,neut)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2TAG Art(bep,zijd_of_mv,neut)\nV(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTTAG V(trans,inf)\nPron(vrag,neut,attr) Pron(betr,neut,zelfst) PREV1OR2TAG Prep(voor)\nV(hulp,ott,3,ev) V(hulp,ott,1,ev) NEXT1OR2OR3TAG Pron(per,1,ev,nom)\nPron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREVTAG Conj(neven)\nPron(onbep,gen,attr) Adv(gew,geen_func,stell,onverv) CURWD anders\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG N(soort,mv,neut)\nAdv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adv(gew,geen_func,vergr,onverv)\nAdv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) NEXT1OR2OR3TAG Conj(onder,met_fin)\nAdv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_v)\nAdv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)\nPrep(voor) Adv(deel_adv) NEXTTAG Punc(punt)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2OR3TAG Adv(gew,aanw)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(punt)\nPrep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,onverv)\nPron(onbep,neut,zelfst) Art(bep,onzijd,neut) PREV1OR2OR3TAG Prep(voor)\nV(hulp,ott,3,ev) V(hulp,ott,1,ev) PREV1OR2OR3TAG Pron(per,1,ev,nom)\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD werkelijk\nAdv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(adv,vergr,onverv)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(komma)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Conj(neven)\nN(soort,ev,neut) Adj(attr,stell,onverv) SURROUNDTAG Art(onbep,zijd_of_onzijd,neut) N(soort,ev,neut)\nV(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)\nV(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\nAdj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Prep(voor)\nN(soort,ev,neut) V(trans,ott,1,ev) PREVTAG Pron(per,1,ev,nom)\nPron(per,1,ev,dat_of_acc) Pron(ref,1,ev) PREV1OR2TAG Pron(per,1,ev,nom)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG V(hulp_of_kopp,ott,3,ev)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,aanw)\nAdv(gew,aanw) Conj(onder,met_fin) NEXTTAG Pron(per,3,ev,nom)\nConj(neven) Adv(gew,geen_func,stell,onverv) WDNEXTTAG maar Art(onbep,zijd_of_onzijd,neut)\nPrep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXT1OR2TAG Adj(adv,stell,onverv)\nV(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) CURWD dacht\nV(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\nN(soort,mv,neut) V(trans,inf) PREVTAG V(hulp,ovt,1_of_2_of_3,ev)\nNum(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG Punc(haak_sluit)\nV(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2WD en\nPron(onbep,neut,zelfst) Pron(per,2,ev,nom) NEXT1OR2TAG Adj(adv,stell,onverv)\nV(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT2TAG N(soort,mv,neut)\nV(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv)\nPron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG Adj(attr,stell,verv_neut)\nAdv(gew,er) Adv(pron,er) PREV1OR2WD ik\nAdv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adj(attr,vergr,onverv)\nPron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG N(soort,ev,neut)\nAdv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Art(bep,zijd_of_mv,neut)\nV(intrans,inf) V(hulp,inf) NEXTTAG N(soort,mv,neut)\nPron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREVTAG Prep(voor)\nV(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD voortdurend\nPron(onbep,neut,zelfst) Pron(onbep,neut,attr) WDNEXTTAG ander N(soort,ev,neut)\nN(eigen,ev,neut) N(soort,ev,neut) NEXTWD aan\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Adj(attr,stell,onverv)\nAdj(attr,stell,onverv) N(soort,ev,neut) PREV1OR2TAG Art(bep,onzijd,neut)\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD hard\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD ruim\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(aanw,neut,attr)\nN(soort,mv,neut) V(intrans,inf) PREVTAG V(hulp,inf)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2OR3TAG Punc(punt)\nV(hulp,ott,3,ev) V(trans,ott,3,ev) RBIGRAM heeft een\nPrep(voor) N(eigen,ev,neut) WDNEXTTAG Van N(eigen,ev,neut)\nV(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG V(hulp,ovt,1_of_2_of_3,ev)\nConj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)\nV(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) NEXT1OR2OR3TAG Conj(onder,met_fin)\nPron(vrag,neut,attr) Pron(betr,neut,zelfst) PREVTAG Pron(onbep,neut,zelfst)\nAdv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2OR3TAG Conj(neven)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) PREV1OR2TAG Prep(voor_inf)\nPron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) PREV1OR2OR3TAG Punc(komma)\nPron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG Adj(attr,stell,verv_neut)\nPron(vrag,neut,attr) Pron(onbep,neut,attr) PREVTAG Adv(gew,geen_func,stell,onverv)\nPron(onbep,neut,attr) Pron(onbep,neut,zelfst) NEXTWD van\nV(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) PREV1OR2OR3TAG N(soort,ev,neut)\nPron(aanw,neut,zelfst) Pron(betr,neut,zelfst) PREVTAG N(soort,ev,neut)\nV(hulp,imp) V(hulp,ott,3,ev) CURWD laat\nAdj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv) CURWD opeens\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) NEXTTAG V(hulp_of_kopp,ott,3,ev)\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD haastig\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) SURROUNDTAG Adv(gew,geen_func,stell,onverv) Punc(punt)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\nN(soort,ev,neut) Adj(adv,stell,onverv) PREVTAG Adv(gew,aanw)\nN(soort,mv,neut) V(trans,inf) PREVWD moeten\nNum(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT2TAG Pron(per,1,ev,nom)\nN(soort,ev,neut) N(eigen,ev,neut) CURWD februari\nV(hulp,ott,3,ev) V(trans,ott,3,ev) NEXTTAG Punc(komma)\nV(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Adv(gew,geen_func,stell,onverv)\nV(hulp,ott,3,ev) V(trans,ott,3,ev) WDNEXTTAG heeft Prep(voor)\nPron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG Punc(aanhaal_dubb)\nV(trans,ott,3,ev) V(trans,ott,2,ev) PREV1OR2OR3TAG Pron(per,2,ev,nom)\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)\nPrep(voor) Adv(deel_v) NEXTTAG Conj(onder,met_fin)\nN(soort,mv,neut) V(trans,verl_dw,onverv) CURWD verloren\nAdj(attr,stell,onverv) N(soort,ev,neut) WDAND2TAGBFR Prep(voor) dood\nPron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)\nPrep(voor) N(eigen,ev,neut) SURROUNDTAG N(eigen,ev,neut) N(eigen,ev,neut)\nAdv(gew,aanw) Adv(pron,aanw) NEXT1OR2TAG Pron(per,1,ev,nom)\nPron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Adv(gew,geen_func,stell,onverv)\nN(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) PREVTAG Pron(per,3,ev,nom)\nV(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG Prep(voor)\nAdv(gew,er) Adv(pron,er) PREV2TAG Conj(onder,met_fin)\nPrep(voor) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)\nPron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXT1OR2TAG Art(onbep,zijd_of_onzijd,neut)\nNum(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXTTAG N(soort,ev,neut)\nAdv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(attr,stell,onverv)\nV(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG Pron(bez,3,mv,neut,attr)\nConj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2WD ik\nConj(neven) Conj(onder,met_fin) PREV1OR2WD net\nPron(vrag,neut,attr) Pron(betr,neut,zelfst) NEXTTAG N(eigen,ev,neut)\nNum(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXT1OR2OR3TAG Num(hoofd,bep,zelfst,onverv)\nArt(bep,onzijd,neut) Pron(per,3,ev,nom) NEXTTAG Art(onbep,zijd_of_onzijd,neut)\nV(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) CURWD begon\nAdv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREV1OR2WD op\nN(soort,ev,neut) Num(hoofd,bep,attr,onverv) CURWD 7\nAdv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2TAG Prep(voor)\nV(trans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG STAART\nV(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) NEXT1OR2OR3TAG Conj(neven)\nV(intrans,inf) V(hulp,inf) NEXTTAG V(trans,inf)\nAdv(gew,geen_func,stell,onverv) Conj(onder,met_fin) PREVTAG Punc(komma)\nAdv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) CURWD tevreden\nV(trans,ott,1_of_2_of_3,mv) V(intrans,inf) CURWD beginnen\nV(trans,ott,1,ev) V(trans,ott,2,ev) NEXTTAG Pron(per,2,ev,nom)\nV(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD schande\nV(intrans,ott,3,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor_inf)\nN(soort,ev,neut) Adj(attr,vergr,onverv) PREVWD steeds\nN(soort,ev,neut) V(intrans,ott,3,ev) WDNEXTTAG sterft Prep(voor)\nN(eigen,ev,neut) Adj(attr,stell,verv_neut) SURROUNDTAG STAART N(soort,mv,neut)\nV(trans,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)\nV(intrans,inf) V(hulp,inf) NEXTTAG V(intrans,inf)\nV(hulp,inf) V(trans,inf) NEXTTAG Punc(punt)\nV(refl,ott,3,ev) V(trans,ott,3,ev) CURWD voelt\nPron(bez,3,ev,neut,attr) V(intrans,ott,1_of_2_of_3,mv) PREVTAG Adv(gew,er)\nV(hulp,ott,2,ev) V(hulp,ott,3,ev) CURWD hoeft\nPron(onbep,neut,zelfst) Pron(ref,2,ev) PREV1OR2WD je\nV(intrans,teg_dw,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG verschillende N(soort,mv,neut)\nAdv(gew,vrag) Adj(attr,stell,onverv) PREV1OR2OR3TAG V(hulp_of_kopp,ott,3,ev)\nAdj(attr,vergr,verv_neut) Adj(attr,stell,verv_neut) CURWD nare\nV(trans,ott,1,ev) Int CURWD hoor\nV(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv) CURWD verdwenen\nAdv(pron,vrag) Adv(pron,betr) CURWD waardoor\nN(eigen,ev,neut) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)\nN(eigen,ev,neut) N(soort,ev,neut) NEXT1OR2WD worden\nN(eigen,ev,neut) N(soort,ev,neut) NEXTBIGRAM Conj(neven) N(soort,ev,neut)\nN(eigen,ev,neut) N(soort,ev,neut) SURROUNDTAG STAART Prep(voor)\nN(eigen,ev,neut) N(soort,ev,neut) CURWD Koningin\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG V(hulp_of_kopp,ott,1_of_2_of_3,mv)\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) PREVTAG STAART\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) WDPREVTAG N(soort,mv,neut) nodig\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Prep(voor_inf)\nAdj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD eenzaam\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD regelmatig\nAdj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD geestelijk\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Pron(per,2,ev,nom)\nV(trans,inf) V(intrans,inf) NEXT1OR2TAG N(eigen,ev,neut)\nV(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) NEXT1OR2TAG V(intrans,inf)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG Punc(komma)\nV(trans,inf) V(intrans,inf) PREV1OR2OR3TAG Adj(adv,vergr,onverv)\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(onbep,neut,zelfst)\nV(trans,inf) V(intrans,inf) CURWD wennen\nArt(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Conj(onder,met_inf)\nN(soort,ev,neut) V(trans,verl_dw,onverv) PREV1OR2TAG V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\nN(soort,ev,neut) Adj(adv,stell,onverv) NEXTTAG V(trans,verl_dw,verv_neut)\nPrep(voor) Adv(deel_adv) NEXTTAG V(trans,inf)\nN(soort,ev,neut) Adj(adv,stell,onverv) NEXTBIGRAM Adj(attr,stell,onverv) N(soort,ev,neut)\nN(soort,mv,neut) V(trans,inf) PREV1OR2TAG Pron(per,3,ev,dat_of_acc)\nPrep(voor) Adv(deel_adv) NEXTBIGRAM V(intrans,ott,3,ev) Punc(punt)\nV(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG Conj(neven)\nN(soort,mv,neut) V(trans,inf) PREV1OR2OR3TAG V(hulp,ott,2,ev)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(intrans,ott,3,ev)\nV(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG Pron(per,1,mv,nom)\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2TAG V(trans,ott,3,ev)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Prep(voor)\nConj(onder,met_inf) Prep(voor) NEXTTAG N(soort,mv,neut)\nV(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG V(trans,verl_dw,onverv)\nV(hulp,ott,3,ev) V(trans,ott,3,ev) WDPREVTAG Pron(per,3,ev,nom) heeft\nConj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2WD doen\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG V(trans,verl_dw,onverv)\nV(hulp_of_kopp,ott,1_of_2_of_3,mv) V(hulp_of_kopp,inf) PREV1OR2TAG V(hulp,ott,3,ev)\nN(soort,ev,neut) Adj(attr,stell,verv_neut) PREVBIGRAM Adj(attr,stell,verv_neut) Punc(komma)\nN(soort,mv,neut) V(trans,verl_dw,onverv) CURWD ingenomen\nConj(onder,met_inf) Prep(voor) NEXTTAG N(soort,ev,neut)\nV(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) PREVTAG N(eigen,ev,neut)\nPron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTWD het\nPron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\nAdv(gew,aanw) Adv(pron,aanw) PREVTAG Punc(punt_komma)\nAdv(deel_v) Adv(deel_adv) RBIGRAM bij ,\nV(intrans,inf) V(trans,inf) CURWD schrijven\nPron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG N(eigen,ev,neut)\nPrep(voor) Adv(deel_v) NEXTTAG V(hulp,inf)\nN(soort,mv,neut) V(trans,verl_dw,onverv) CURWD betrokken\nV(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2WD en\nPron(aanw,neut,zelfst) Conj(onder,met_fin) WDAND2TAGAFT Dat N(soort,ev,neut)\nAdv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(gew,er)\nAdv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_adv)\nN(soort,ev,neut) N(soort,mv,neut) WDNEXTTAG dll Num(hoofd,bep,attr,onverv)\nN(eigen,ev,neut) N(eigen,mv,neut) NEXTWD Staten\nAdj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Punc(punt)\nV(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Adj(attr,stell,verv_neut)\nV(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) SURROUNDTAG N(soort,ev,neut) Punc(komma)\nPron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Prep(voor)\nPrep(voor) N(eigen,ev,neut) NEXTTAG Art(bep,zijd_of_mv,gen)\nArt(bep,zijd_of_mv,neut) N(eigen,ev,neut) WDNEXTTAG De N(eigen,ev,neut)\nAdj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) PREVWD Het\nN(eigen,ev,neut) V(trans,imp) SURROUNDTAG STAART Adv(gew,aanw)\nN(eigen,ev,neut) N(eigen,mv,neut) PREVTAG N(eigen,mv,neut)\nAdv(gew,aanw) Conj(onder,met_fin) LBIGRAM , toen\nV(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) RBIGRAM hebben ,\nV(trans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\nV(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,1,mv,nom)\nPron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG V(trans,verl_dw,onverv)\nPron(aanw,neut,attr) Pron(betr,neut,zelfst) WDPREVTAG N(soort,mv,neut) die\nV(hulp,ott,3,ev) V(hulp,ott,2,ev) PREVTAG Pron(per,2,ev,nom)\nPron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) NEXTTAG Punc(punt)\nN(eigen,ev,neut) Prep(voor) SURROUNDTAG STAART Art(bep,zijd_of_mv,neut)\nConj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,aanw)\nPron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREV1OR2TAG Conj(onder,met_fin)\nPron(aanw,neut,zelfst) Pron(aanw,neut,attr) NEXTBIGRAM Adj(attr,stell,verv_neut) N(soort,ev,neut)\nPrep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,verv_neut)\nNum(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) PREV1OR2OR3TAG Num(hoofd,bep,attr,onverv)\nN(soort,ev,neut) V(intrans,inf) PREVTAG Prep(voor_inf)\nPrep(voor_inf) Prep(voor) NEXTTAG N(soort,ev,neut)\nAdj(adv,stell,onverv) N(soort,ev,neut) WDAND2AFT geheel .\nV(trans,ott,3,ev) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)\nV(trans,inf) V(trans,inf,subst) PREV1OR2TAG Art(bep,onzijd,neut)\nV(hulp,ott,3,ev) V(hulp,ott,2,ev) NEXTWD u\nAdv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\nAdv(deel_v) Prep(voor) WDNEXTTAG tot Prep(voor)\nV(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) CURWD hadden\nAdv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) NEXTWD die\nV(trans,inf) V(refl,inf) PREV1OR2OR3TAG Pron(ref,3,ev_of_mv)\nV(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDNEXTTAG moeten V(trans,inf)\nV(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTBIGRAM V(trans,inf) Punc(komma)\nPron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Prep(voor)\nN(eigen,ev,neut) Int SURROUNDTAG Punc(aanhaal_dubb) Punc(komma)\nN(eigen,ev,neut) Art(bep,zijd_of_mv,neut) LBIGRAM STAART De\nConj(onder,met_fin) Conj(neven) PREV1OR2WD zowel\nAdv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) NEXTTAG Conj(neven)\nAdj(attr,stell,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG Elke N(soort,ev,neut)\nAdj(adv,vergr,onverv) Adj(attr,vergr,onverv) PREV1OR2TAG Adv(gew,geen_func,stell,onverv)\nV(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\nV(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD bende\nV(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDPREVTAG N(soort,ev,neut) kunnen\nPron(vrag,neut,attr) Pron(onbep,neut,attr) NEXTTAG N(soort,mv,neut)\nPron(betr,neut,zelfst) Pron(vrag,neut,attr) NEXT1OR2OR3TAG Adv(gew,aanw)\nAdv(gew,vrag) Adv(pron,vrag) PREVTAG Pron(onbep,neut,zelfst)\nAdv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) NEXT1OR2TAG N(soort,mv,neut)\nV(trans,ott,1,ev) V(trans,ott,3,ev) PREVTAG Pron(onbep,neut,zelfst)\nV(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) NEXTTAG Adv(gew,er)\nPron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREV1OR2TAG Pron(per,1,ev,nom)\nNum(hoofd,bep,attr,onverv) Num(rang,bep,attr,onverv) PREVTAG Art(bep,onzijd,neut)\nN(soort,ev,neut) Int CURWD oh\nV(intrans,ott,1,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor)\nPron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Adv(gew,geen_func,stell,onverv)\nAdj(zelfst,stell,verv_mv) N(soort,mv,neut) CURWD armen\nV(trans,ott,1,ev) V(intrans,ovt,1_of_2_of_3,ev) NEXT1OR2WD in\nV(intrans,inf) N(soort,mv,neut) WDNEXTTAG verschillen Prep(voor)\nPrep(voor) V(trans,imp) NEXTTAG Pron(aanw,neut,attr)\nN(eigen,ev,neut) Art(bep,zijd_of_mv,neut) WDNEXTTAG DE N(eigen,ev,neut)\nAdv(gew,aanw) Conj(onder,met_fin) WDAND2TAGBFR Art(bep,zijd_of_mv,neut) toen\nV(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)\nV(trans,ovt,1_of_2_of_3,ev) Conj(onder,met_fin) CURWD zodra\nV(intrans,verl_dw,verv_neut) V(intrans,ovt,1_of_2_of_3,ev) CURWD gebeurde\nV(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD dringend\nV(hulp,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)\nV(intrans,ott,3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\nV(hulp,inf) Num(hoofd,bep,attr,onverv) CURWD veertien\nPrep(voor) N(soort,mv,neut) NEXTWD zijn\nNum(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv) NEXTTAG N(soort,mv,neut)\nArt(bep,zijd_of_mv,gen) N(eigen,ev,neut) PREVTAG N(eigen,ev,neut)\nN(eigen,ev,neut) N(soort,ev,neut) PREVTAG Adj(attr,overtr,verv_neut)\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/Dutch/brill_CONTEXTRULES.json",
    "content": "{\n  \"rules\": [\n    \"Pron(betr,neut,zelfst) Pron(aanw,neut,attr) PREVTAG Prep(voor)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,geen_func,stell,onverv)\",\n    \"Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXT1OR2TAG N(soort,ev,neut)\",\n    \"Prep(voor) Adv(deel_v) NEXT1OR2TAG STAART\",\n    \"Prep(voor) Adv(deel_v) NEXTTAG Prep(voor_inf)\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG Art(onbep,zijd_of_onzijd,neut)\",\n    \"Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)\",\n    \"Prep(voor) Adv(deel_v) NEXTTAG Prep(voor)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Adv(gew,geen_func,stell,onverv)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,attr) NEXTTAG N(soort,ev,neut)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG N(soort,mv,neut)\",\n    \"Adv(gew,er) Adv(pron,er) WDAND2TAGAFT er Prep(voor)\",\n    \"Prep(voor) Adv(deel_v) NEXTTAG Punc(komma)\",\n    \"Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,geen_func,stell,onverv)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\",\n    \"Pron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr) NEXTTAG N(soort,ev,neut)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2TAG Art(bep,zijd_of_mv,neut)\",\n    \"V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTTAG V(trans,inf)\",\n    \"Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREV1OR2TAG Prep(voor)\",\n    \"V(hulp,ott,3,ev) V(hulp,ott,1,ev) NEXT1OR2OR3TAG Pron(per,1,ev,nom)\",\n    \"Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREVTAG Conj(neven)\",\n    \"Pron(onbep,gen,attr) Adv(gew,geen_func,stell,onverv) CURWD anders\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG N(soort,mv,neut)\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adv(gew,geen_func,vergr,onverv)\",\n    \"Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) NEXT1OR2OR3TAG Conj(onder,met_fin)\",\n    \"Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_v)\",\n    \"Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)\",\n    \"Prep(voor) Adv(deel_adv) NEXTTAG Punc(punt)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT1OR2OR3TAG Adv(gew,aanw)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(punt)\",\n    \"Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,onverv)\",\n    \"Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) PREV1OR2OR3TAG Prep(voor)\",\n    \"V(hulp,ott,3,ev) V(hulp,ott,1,ev) PREV1OR2OR3TAG Pron(per,1,ev,nom)\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD werkelijk\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(adv,vergr,onverv)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) NEXTTAG Punc(komma)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Conj(neven)\",\n    \"N(soort,ev,neut) Adj(attr,stell,onverv) SURROUNDTAG Art(onbep,zijd_of_onzijd,neut) N(soort,ev,neut)\",\n    \"V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)\",\n    \"V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\",\n    \"Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Prep(voor)\",\n    \"N(soort,ev,neut) V(trans,ott,1,ev) PREVTAG Pron(per,1,ev,nom)\",\n    \"Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev) PREV1OR2TAG Pron(per,1,ev,nom)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG V(hulp_of_kopp,ott,3,ev)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Adv(gew,aanw)\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) NEXTTAG Pron(per,3,ev,nom)\",\n    \"Conj(neven) Adv(gew,geen_func,stell,onverv) WDNEXTTAG maar Art(onbep,zijd_of_onzijd,neut)\",\n    \"Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXT1OR2TAG Adj(adv,stell,onverv)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) CURWD dacht\",\n    \"V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\",\n    \"N(soort,mv,neut) V(trans,inf) PREVTAG V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG Punc(haak_sluit)\",\n    \"V(trans,inf) V(trans,ott,1_of_2_of_3,mv) PREV1OR2WD en\",\n    \"Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) NEXT1OR2TAG Adj(adv,stell,onverv)\",\n    \"V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXT2TAG N(soort,mv,neut)\",\n    \"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)\",\n    \"Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG Adj(attr,stell,verv_neut)\",\n    \"Adv(gew,er) Adv(pron,er) PREV1OR2WD ik\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2OR3TAG Adj(attr,vergr,onverv)\",\n    \"Pron(onbep,neut,zelfst) Art(bep,onzijd,neut) NEXTTAG N(soort,ev,neut)\",\n    \"Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Art(bep,zijd_of_mv,neut)\",\n    \"V(intrans,inf) V(hulp,inf) NEXTTAG N(soort,mv,neut)\",\n    \"Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREVTAG Prep(voor)\",\n    \"V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD voortdurend\",\n    \"Pron(onbep,neut,zelfst) Pron(onbep,neut,attr) WDNEXTTAG ander N(soort,ev,neut)\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) NEXTWD aan\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Adj(attr,stell,onverv)\",\n    \"Adj(attr,stell,onverv) N(soort,ev,neut) PREV1OR2TAG Art(bep,onzijd,neut)\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD hard\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD ruim\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(aanw,neut,attr)\",\n    \"N(soort,mv,neut) V(intrans,inf) PREVTAG V(hulp,inf)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2OR3TAG Punc(punt)\",\n    \"V(hulp,ott,3,ev) V(trans,ott,3,ev) RBIGRAM heeft een\",\n    \"Prep(voor) N(eigen,ev,neut) WDNEXTTAG Van N(eigen,ev,neut)\",\n    \"V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) NEXT1OR2OR3TAG Conj(onder,met_fin)\",\n    \"Pron(vrag,neut,attr) Pron(betr,neut,zelfst) PREVTAG Pron(onbep,neut,zelfst)\",\n    \"Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2OR3TAG Conj(neven)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,inf) PREV1OR2TAG Prep(voor_inf)\",\n    \"Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) PREV1OR2OR3TAG Punc(komma)\",\n    \"Pron(betr,neut,zelfst) Pron(aanw,neut,attr) NEXTTAG Adj(attr,stell,verv_neut)\",\n    \"Pron(vrag,neut,attr) Pron(onbep,neut,attr) PREVTAG Adv(gew,geen_func,stell,onverv)\",\n    \"Pron(onbep,neut,attr) Pron(onbep,neut,zelfst) NEXTWD van\",\n    \"V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv) PREV1OR2OR3TAG N(soort,ev,neut)\",\n    \"Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) PREVTAG N(soort,ev,neut)\",\n    \"V(hulp,imp) V(hulp,ott,3,ev) CURWD laat\",\n    \"Adj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv) CURWD opeens\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) NEXTTAG V(hulp_of_kopp,ott,3,ev)\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD haastig\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) SURROUNDTAG Adv(gew,geen_func,stell,onverv) Punc(punt)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\",\n    \"N(soort,ev,neut) Adj(adv,stell,onverv) PREVTAG Adv(gew,aanw)\",\n    \"N(soort,mv,neut) V(trans,inf) PREVWD moeten\",\n    \"Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) NEXTTAG V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT2TAG Pron(per,1,ev,nom)\",\n    \"N(soort,ev,neut) N(eigen,ev,neut) CURWD februari\",\n    \"V(hulp,ott,3,ev) V(trans,ott,3,ev) NEXTTAG Punc(komma)\",\n    \"V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Adv(gew,geen_func,stell,onverv)\",\n    \"V(hulp,ott,3,ev) V(trans,ott,3,ev) WDNEXTTAG heeft Prep(voor)\",\n    \"Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG Punc(aanhaal_dubb)\",\n    \"V(trans,ott,3,ev) V(trans,ott,2,ev) PREV1OR2OR3TAG Pron(per,2,ev,nom)\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREV1OR2OR3TAG Pron(per,2,ev,nom)\",\n    \"Prep(voor) Adv(deel_v) NEXTTAG Conj(onder,met_fin)\",\n    \"N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD verloren\",\n    \"Adj(attr,stell,onverv) N(soort,ev,neut) WDAND2TAGBFR Prep(voor) dood\",\n    \"Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG Prep(voor)\",\n    \"Prep(voor) N(eigen,ev,neut) SURROUNDTAG N(eigen,ev,neut) N(eigen,ev,neut)\",\n    \"Adv(gew,aanw) Adv(pron,aanw) NEXT1OR2TAG Pron(per,1,ev,nom)\",\n    \"Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev) PREVTAG Pron(per,3,ev,nom)\",\n    \"V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) PREV1OR2TAG Prep(voor)\",\n    \"Adv(gew,er) Adv(pron,er) PREV2TAG Conj(onder,met_fin)\",\n    \"Prep(voor) Adv(deel_adv) PREV1OR2OR3TAG Adv(pron,er)\",\n    \"Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXT1OR2TAG Art(onbep,zijd_of_onzijd,neut)\",\n    \"Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXTTAG N(soort,ev,neut)\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) PREV1OR2TAG Adj(attr,stell,onverv)\",\n    \"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)\",\n    \"Conj(neven) Adv(gew,geen_func,stell,onverv) PREV1OR2WD ik\",\n    \"Conj(neven) Conj(onder,met_fin) PREV1OR2WD net\",\n    \"Pron(vrag,neut,attr) Pron(betr,neut,zelfst) NEXTTAG N(eigen,ev,neut)\",\n    \"Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) NEXT1OR2OR3TAG Num(hoofd,bep,zelfst,onverv)\",\n    \"Art(bep,onzijd,neut) Pron(per,3,ev,nom) NEXTTAG Art(onbep,zijd_of_onzijd,neut)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) CURWD begon\",\n    \"Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREV1OR2WD op\",\n    \"N(soort,ev,neut) Num(hoofd,bep,attr,onverv) CURWD 7\",\n    \"Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) PREV1OR2TAG Prep(voor)\",\n    \"V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG STAART\",\n    \"V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) NEXT1OR2OR3TAG Conj(neven)\",\n    \"V(intrans,inf) V(hulp,inf) NEXTTAG V(trans,inf)\",\n    \"Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin) PREVTAG Punc(komma)\",\n    \"Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) CURWD tevreden\",\n    \"V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) CURWD beginnen\",\n    \"V(trans,ott,1,ev) V(trans,ott,2,ev) NEXTTAG Pron(per,2,ev,nom)\",\n    \"V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD schande\",\n    \"V(intrans,ott,3,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor_inf)\",\n    \"N(soort,ev,neut) Adj(attr,vergr,onverv) PREVWD steeds\",\n    \"N(soort,ev,neut) V(intrans,ott,3,ev) WDNEXTTAG sterft Prep(voor)\",\n    \"N(eigen,ev,neut) Adj(attr,stell,verv_neut) SURROUNDTAG STAART N(soort,mv,neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)\",\n    \"V(intrans,inf) V(hulp,inf) NEXTTAG V(intrans,inf)\",\n    \"V(hulp,inf) V(trans,inf) NEXTTAG Punc(punt)\",\n    \"V(refl,ott,3,ev) V(trans,ott,3,ev) CURWD voelt\",\n    \"Pron(bez,3,ev,neut,attr) V(intrans,ott,1_of_2_of_3,mv) PREVTAG Adv(gew,er)\",\n    \"V(hulp,ott,2,ev) V(hulp,ott,3,ev) CURWD hoeft\",\n    \"Pron(onbep,neut,zelfst) Pron(ref,2,ev) PREV1OR2WD je\",\n    \"V(intrans,teg_dw,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG verschillende N(soort,mv,neut)\",\n    \"Adv(gew,vrag) Adj(attr,stell,onverv) PREV1OR2OR3TAG V(hulp_of_kopp,ott,3,ev)\",\n    \"Adj(attr,vergr,verv_neut) Adj(attr,stell,verv_neut) CURWD nare\",\n    \"V(trans,ott,1,ev) Int CURWD hoor\",\n    \"V(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv) CURWD verdwenen\",\n    \"Adv(pron,vrag) Adv(pron,betr) CURWD waardoor\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) NEXT1OR2WD worden\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) NEXTBIGRAM Conj(neven) N(soort,ev,neut)\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) SURROUNDTAG STAART Prep(voor)\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) CURWD Koningin\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) PREV1OR2TAG V(hulp_of_kopp,ott,1_of_2_of_3,mv)\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) PREVTAG STAART\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) WDPREVTAG N(soort,mv,neut) nodig\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) NEXTTAG Prep(voor_inf)\",\n    \"Adj(adv,stell,onverv) Adj(attr,stell,onverv) CURWD eenzaam\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD regelmatig\",\n    \"Adj(attr,stell,onverv) Adj(adv,stell,onverv) CURWD geestelijk\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) PREVTAG Pron(per,2,ev,nom)\",\n    \"V(trans,inf) V(intrans,inf) NEXT1OR2TAG N(eigen,ev,neut)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev) NEXT1OR2TAG V(intrans,inf)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXTTAG Punc(komma)\",\n    \"V(trans,inf) V(intrans,inf) PREV1OR2OR3TAG Adj(adv,vergr,onverv)\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Pron(onbep,neut,zelfst)\",\n    \"V(trans,inf) V(intrans,inf) CURWD wennen\",\n    \"Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) NEXT1OR2TAG Conj(onder,met_inf)\",\n    \"N(soort,ev,neut) V(trans,verl_dw,onverv) PREV1OR2TAG V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\",\n    \"N(soort,ev,neut) Adj(adv,stell,onverv) NEXTTAG V(trans,verl_dw,verv_neut)\",\n    \"Prep(voor) Adv(deel_adv) NEXTTAG V(trans,inf)\",\n    \"N(soort,ev,neut) Adj(adv,stell,onverv) NEXTBIGRAM Adj(attr,stell,onverv) N(soort,ev,neut)\",\n    \"N(soort,mv,neut) V(trans,inf) PREV1OR2TAG Pron(per,3,ev,dat_of_acc)\",\n    \"Prep(voor) Adv(deel_adv) NEXTBIGRAM V(intrans,ott,3,ev) Punc(punt)\",\n    \"V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2TAG Conj(neven)\",\n    \"N(soort,mv,neut) V(trans,inf) PREV1OR2OR3TAG V(hulp,ott,2,ev)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXTTAG V(intrans,ott,3,ev)\",\n    \"V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Punc(komma)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG Pron(per,1,mv,nom)\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2TAG V(trans,ott,3,ev)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG Prep(voor)\",\n    \"Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,mv,neut)\",\n    \"V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREVTAG V(trans,verl_dw,onverv)\",\n    \"V(hulp,ott,3,ev) V(trans,ott,3,ev) WDPREVTAG Pron(per,3,ev,nom) heeft\",\n    \"Conj(onder,met_fin) Pron(aanw,neut,zelfst) NEXT1OR2WD doen\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTTAG V(trans,verl_dw,onverv)\",\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(hulp_of_kopp,inf) PREV1OR2TAG V(hulp,ott,3,ev)\",\n    \"N(soort,ev,neut) Adj(attr,stell,verv_neut) PREVBIGRAM Adj(attr,stell,verv_neut) Punc(komma)\",\n    \"N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD ingenomen\",\n    \"Conj(onder,met_inf) Prep(voor) NEXTTAG N(soort,ev,neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev) PREVTAG N(eigen,ev,neut)\",\n    \"Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv) NEXTWD het\",\n    \"Pron(aanw,neut,attr) Pron(aanw,neut,zelfst) NEXTTAG V(hulp_of_kopp,ott,3,ev)\",\n    \"Adv(gew,aanw) Adv(pron,aanw) PREVTAG Punc(punt_komma)\",\n    \"Adv(deel_v) Adv(deel_adv) RBIGRAM bij ,\",\n    \"V(intrans,inf) V(trans,inf) CURWD schrijven\",\n    \"Pron(onbep,neut,zelfst) Pron(per,2,ev,nom) PREV1OR2OR3TAG N(eigen,ev,neut)\",\n    \"Prep(voor) Adv(deel_v) NEXTTAG V(hulp,inf)\",\n    \"N(soort,mv,neut) V(trans,verl_dw,onverv) CURWD betrokken\",\n    \"V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2WD en\",\n    \"Pron(aanw,neut,zelfst) Conj(onder,met_fin) WDAND2TAGAFT Dat N(soort,ev,neut)\",\n    \"Adv(deel_v) Adv(deel_adv) PREV1OR2OR3TAG Adv(gew,er)\",\n    \"Adv(gew,er) Adv(pron,er) NEXT1OR2OR3TAG Adv(deel_adv)\",\n    \"N(soort,ev,neut) N(soort,mv,neut) WDNEXTTAG dll Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut) N(eigen,mv,neut) NEXTWD Staten\",\n    \"Adj(attr,stell,verv_neut) N(soort,ev,neut) NEXTTAG Punc(punt)\",\n    \"V(hulp_of_kopp,inf) V(hulp_of_kopp,ott,1_of_2_of_3,mv) PREV1OR2OR3TAG Adj(attr,stell,verv_neut)\",\n    \"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)\",\n    \"Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG Prep(voor)\",\n    \"Prep(voor) N(eigen,ev,neut) NEXTTAG Art(bep,zijd_of_mv,gen)\",\n    \"Art(bep,zijd_of_mv,neut) N(eigen,ev,neut) WDNEXTTAG De N(eigen,ev,neut)\",\n    \"Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut) PREVWD Het\",\n    \"N(eigen,ev,neut) V(trans,imp) SURROUNDTAG STAART Adv(gew,aanw)\",\n    \"N(eigen,ev,neut) N(eigen,mv,neut) PREVTAG N(eigen,mv,neut)\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) LBIGRAM , toen\",\n    \"V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) RBIGRAM hebben ,\",\n    \"V(trans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv) PREV1OR2TAG STAART\",\n    \"V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) NEXTTAG Pron(per,1,mv,nom)\",\n    \"Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) NEXTTAG V(trans,verl_dw,onverv)\",\n    \"Pron(aanw,neut,attr) Pron(betr,neut,zelfst) WDPREVTAG N(soort,mv,neut) die\",\n    \"V(hulp,ott,3,ev) V(hulp,ott,2,ev) PREVTAG Pron(per,2,ev,nom)\",\n    \"Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) NEXTTAG Punc(punt)\",\n    \"N(eigen,ev,neut) Prep(voor) SURROUNDTAG STAART Art(bep,zijd_of_mv,neut)\",\n    \"Conj(neven) Adv(gew,geen_func,stell,onverv) PREVTAG Adv(gew,aanw)\",\n    \"Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) PREV1OR2TAG Conj(onder,met_fin)\",\n    \"Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) NEXTBIGRAM Adj(attr,stell,verv_neut) N(soort,ev,neut)\",\n    \"Prep(voor_inf) Adv(gew,geen_func,stell,onverv) NEXTTAG Adj(attr,stell,verv_neut)\",\n    \"Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv) PREV1OR2OR3TAG Num(hoofd,bep,attr,onverv)\",\n    \"N(soort,ev,neut) V(intrans,inf) PREVTAG Prep(voor_inf)\",\n    \"Prep(voor_inf) Prep(voor) NEXTTAG N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv) N(soort,ev,neut) WDAND2AFT geheel .\",\n    \"V(trans,ott,3,ev) N(soort,ev,neut) PREVTAG Art(onbep,zijd_of_onzijd,neut)\",\n    \"V(trans,inf) V(trans,inf,subst) PREV1OR2TAG Art(bep,onzijd,neut)\",\n    \"V(hulp,ott,3,ev) V(hulp,ott,2,ev) NEXTWD u\",\n    \"Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\",\n    \"Adv(deel_v) Prep(voor) WDNEXTTAG tot Prep(voor)\",\n    \"V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv) CURWD hadden\",\n    \"Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) NEXTWD die\",\n    \"V(trans,inf) V(refl,inf) PREV1OR2OR3TAG Pron(ref,3,ev_of_mv)\",\n    \"V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDNEXTTAG moeten V(trans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf) NEXTBIGRAM V(trans,inf) Punc(komma)\",\n    \"Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Prep(voor)\",\n    \"N(eigen,ev,neut) Int SURROUNDTAG Punc(aanhaal_dubb) Punc(komma)\",\n    \"N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) LBIGRAM STAART De\",\n    \"Conj(onder,met_fin) Conj(neven) PREV1OR2WD zowel\",\n    \"Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv) NEXTTAG Conj(neven)\",\n    \"Adj(attr,stell,verv_neut) Pron(onbep,neut,attr) WDNEXTTAG Elke N(soort,ev,neut)\",\n    \"Adj(adv,vergr,onverv) Adj(attr,vergr,onverv) PREV1OR2TAG Adv(gew,geen_func,stell,onverv)\",\n    \"V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\",\n    \"V(intrans,teg_dw,verv_neut) N(soort,ev,neut) CURWD bende\",\n    \"V(hulp,inf) V(hulp,ott,1_of_2_of_3,mv) WDPREVTAG N(soort,ev,neut) kunnen\",\n    \"Pron(vrag,neut,attr) Pron(onbep,neut,attr) NEXTTAG N(soort,mv,neut)\",\n    \"Pron(betr,neut,zelfst) Pron(vrag,neut,attr) NEXT1OR2OR3TAG Adv(gew,aanw)\",\n    \"Adv(gew,vrag) Adv(pron,vrag) PREVTAG Pron(onbep,neut,zelfst)\",\n    \"Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) NEXT1OR2TAG N(soort,mv,neut)\",\n    \"V(trans,ott,1,ev) V(trans,ott,3,ev) PREVTAG Pron(onbep,neut,zelfst)\",\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv) NEXTTAG Adv(gew,er)\",\n    \"Pron(onbep,neut,zelfst) Pron(per,2,ev,dat_of_acc) PREV1OR2TAG Pron(per,1,ev,nom)\",\n    \"Num(hoofd,bep,attr,onverv) Num(rang,bep,attr,onverv) PREVTAG Art(bep,onzijd,neut)\",\n    \"N(soort,ev,neut) Int CURWD oh\",\n    \"V(intrans,ott,1,ev) N(soort,ev,neut) NEXT1OR2OR3TAG Prep(voor)\",\n    \"Pron(aanw,neut,zelfst) Pron(betr,neut,zelfst) SURROUNDTAG Punc(komma) Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(zelfst,stell,verv_mv) N(soort,mv,neut) CURWD armen\",\n    \"V(trans,ott,1,ev) V(intrans,ovt,1_of_2_of_3,ev) NEXT1OR2WD in\",\n    \"V(intrans,inf) N(soort,mv,neut) WDNEXTTAG verschillen Prep(voor)\",\n    \"Prep(voor) V(trans,imp) NEXTTAG Pron(aanw,neut,attr)\",\n    \"N(eigen,ev,neut) Art(bep,zijd_of_mv,neut) WDNEXTTAG DE N(eigen,ev,neut)\",\n    \"Adv(gew,aanw) Conj(onder,met_fin) WDAND2TAGBFR Art(bep,zijd_of_mv,neut) toen\",\n    \"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)\",\n    \"V(trans,ovt,1_of_2_of_3,ev) Conj(onder,met_fin) CURWD zodra\",\n    \"V(intrans,verl_dw,verv_neut) V(intrans,ovt,1_of_2_of_3,ev) CURWD gebeurde\",\n    \"V(intrans,teg_dw,onverv) Adv(gew,geen_func,stell,onverv) CURWD dringend\",\n    \"V(hulp,ovt,1_of_2_of_3,ev) Adj(attr,stell,verv_neut) PREV1OR2TAG Prep(voor)\",\n    \"V(intrans,ott,3,ev) N(soort,ev,neut) PREVTAG Adj(attr,stell,verv_neut)\",\n    \"V(hulp,inf) Num(hoofd,bep,attr,onverv) CURWD veertien\",\n    \"Prep(voor) N(soort,mv,neut) NEXTWD zijn\",\n    \"Num(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv) NEXTTAG N(soort,mv,neut)\",\n    \"Art(bep,zijd_of_mv,gen) N(eigen,ev,neut) PREVTAG N(eigen,ev,neut)\",\n    \"N(eigen,ev,neut) N(soort,ev,neut) PREVTAG Adj(attr,overtr,verv_neut)\"\n  ]\n}\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/Dutch/brill_LEXICON.jg",
    "content": "nijptangen N(soort,mv,neut) \nafhankelijk Adj(attr,stell,onverv) \nOver Prep(voor) \npartisanenster N(soort,ev,neut) \novertuigd V(trans,verl_dw,onverv) \nbruine Adj(attr,stell,verv_neut) \nimitatie N(soort,ev,neut) \nkreeg V(trans,ovt,1_of_2_of_3,ev) \nongenoegen N(soort,ev,neut) \nHeel Adv(gew,geen_func,stell,onverv) \nprecies Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nrede N(soort,ev,neut) \nZijn Pron(bez,3,ev,neut,attr) V(hulp_of_kopp,ott,1_of_2_of_3,mv)\ntoegetakeld V(trans,verl_dw,onverv) \nbestaande V(intrans,teg_dw,verv_neut) \nrepertoire N(soort,ev,neut) \nHeer N(soort,ev,neut) \nopslag N(soort,ev,neut) \novertuigt V(trans,ott,3,ev) \nradio N(soort,ev,neut) \nkreet N(soort,ev,neut) \nBegint V(hulp,ott,2,ev) \nplaatse N(soort,ev,dat) \n! Punc(uitroep) N(soort,mv,neut)\nLutherse Adj(attr,stell,verv_neut) \nbuigzaamheid N(soort,ev,neut) \n\" Punc(aanhaal_dubb) \n% N(soort,ev,neut) \nTegelse Adj(attr,stell,verv_neut) \n& N(eigen,ev,neut) \nbinden V(trans,inf) \ncel N(soort,ev,neut) \n( Punc(haak_open) \nvakantiebesteding N(soort,ev,neut) \n) Punc(haak_sluit) \ngieren V(intrans,ott,1_of_2_of_3,mv) \nspecialist N(soort,ev,neut) \nWoody N(eigen,ev,neut) \n, Punc(komma) N(eigen,ev,neut)\ngestreefd V(intrans,verl_dw,onverv) \n- Punc(ligg_streep) \n. Punc(punt) \nDSRV's N(soort,mv,neut) \n/ Punc(schuin_streep) \nreed V(intrans,ovt,1_of_2_of_3,ev) \n1 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) N(soort,ev,neut) Num(hoofd,bep,zelfst,onverv)\nuitgescholden V(trans,verl_dw,onverv) \n2 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n3 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n4 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n5 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nSibyl N(eigen,ev,neut) \n6 Num(hoofd,bep,attr,onverv) \nbestemming N(soort,ev,neut) \nboekje N(soort,ev,neut) N(eigen,ev,neut)\n7 Num(hoofd,bep,attr,onverv) \n8 Num(hoofd,bep,attr,onverv) \ntevoren Adv(gew,geen_func,stell,onverv) \n9 Num(hoofd,bep,attr,onverv) \ntoegelaten V(trans,verl_dw,onverv) \n: Punc(dubb_punt) \n; Punc(punt_komma) \nkoper- N(soort,ev,neut) \nrapporten N(soort,mv,neut) \naandoenlijkheid N(soort,ev,neut) \n? Punc(vraag) \nrees V(intrans,ovt,1_of_2_of_3,ev) \nrijbevoegdheid N(soort,ev,neut) \naanslag N(soort,ev,neut) \n@ Misc(symbool) \nhoeverre Adv(gew,betr) \nPorsche N(eigen,ev,neut) \nB Num(hoofd,bep,attr,onverv) \nFRANSE Adj(attr,stell,verv_neut) \nC Num(hoofd,bep,attr,onverv) \nknotwilgen N(soort,mv,neut) \nG N(eigen,ev,neut) \naanvoer N(soort,ev,neut) \nI Misc(vreemd) \nGewoon Adj(adv,stell,onverv) \ngestegen V(intrans,verl_dw,onverv) \novergeleverd V(trans,verl_dw,onverv) \ngram N(soort,ev,neut) \naangeven V(trans,inf) \nL N(soort,ev,neut) \nopbelde V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nverplichte V(trans,verl_dw,verv_neut) \nO Int \ngrap N(soort,ev,neut) \nQ N(soort,ev,neut) \nWeitz N(eigen,ev,neut) \ngras N(soort,ev,neut) \nR N(soort,ev,neut) \nverschijning N(soort,ev,neut) \nS N(eigen,ev,neut) N(soort,ev,neut)\nreactie N(soort,ev,neut) \nU Pron(per,2,ev,nom) \ngeexperimenteerd V(trans,verl_dw,onverv) \ncomfortabel Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nspijsverteren V(intrans,inf) \ngenoten V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,mv)\nXIII-stijl N(soort,ev,neut) \nkoffertje N(soort,ev,neut) \nproberen V(hulp,inf) V(trans,inf) V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv)\nreebout N(soort,ev,neut) \ndichtslibben V(intrans,inf,subst) \nlossen V(trans,inf) \na Prep(voor) Misc(vreemd)\nd Num(hoofd,bep,zelfst,onverv) \nParamaribo N(eigen,ev,neut) \nlosser Adj(attr,vergr,onverv) \nGibb N(eigen,ev,neut) \ndeugdelijke Adj(attr,stell,verv_neut) \ng N(soort,ev,neut) \ni N(eigen,ev,neut) \nGAP N(eigen,ev,neut) \nbergland N(soort,ev,neut) \ndoorkreeg V(trans,ovt,1_of_2_of_3,ev) \nn N(soort,ev,neut) \nEltman N(eigen,ev,neut) \nkeken V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nFrankrijk N(eigen,ev,neut) \nu Pron(per,2,ev,nom) \nx Punc(maal) \nbouwen V(trans,inf) \nBeschadigd V(trans,verl_dw,onverv) \nfietsers N(soort,mv,neut) \nvoorbaat N(soort,ev,neut) \nsales-manager N(soort,ev,neut) \nprefereer V(trans,ott,1,ev) \nkruispunten N(soort,mv,neut) \naccu's N(soort,mv,neut) \nfamilieleven N(soort,ev,neut) \npolitie N(soort,ev,neut) \ngemengde V(trans,verl_dw,verv_neut) \nwoonruimte N(soort,ev,neut) \nwaterpokken N(soort,mv,neut) \ngegeven V(trans,verl_dw,onverv) N(soort,ev,neut)\nmaanlandschap N(soort,ev,neut) \nopenbare Adj(attr,stell,verv_neut) \nMaitena N(eigen,ev,neut) \nbloederziekte N(soort,ev,neut) \nministerssteek N(soort,ev,neut) \ninvloed N(soort,ev,neut) \njullie Pron(per,2,mv,dat_of_acc) Pron(per,2,mv,nom)\nBogarde N(eigen,ev,neut) \nploegdiscipline N(soort,ev,neut) \nverwarming N(soort,ev,neut) \ninstemming N(soort,ev,neut) \nPoema-schoenen N(soort,mv,neut) \nbaby's N(soort,mv,neut) \nvastbeslotenheid N(soort,ev,neut) \nspan V(trans,imp) \nliefdes N(soort,mv,neut) \nuitgewerkt V(trans,verl_dw,onverv) \nconferentie N(soort,ev,neut) \nconcrete Adj(attr,stell,verv_neut) \nnaderende V(intrans,teg_dw,verv_neut) \nruitje N(soort,ev,neut) \nverjaardag N(soort,ev,neut) \nreis N(soort,ev,neut) \nober N(soort,ev,neut) \ngeboycot V(trans,verl_dw,onverv) \nEerst Adj(adv,vergr,onverv) Adv(gew,geen_func,stell,onverv)\nrakker N(soort,ev,neut) \nKuyper N(eigen,ev,neut) \nonherkenbaar Adj(attr,stell,onverv) \nluisteraar N(soort,ev,neut) \nbewerkstelligen V(trans,inf) \nwolf N(soort,ev,neut) \nsamenhang N(soort,ev,neut) \ntaxilichten N(soort,mv,neut) \nbetreden V(trans,verl_dw,onverv) V(trans,ott,1_of_2_of_3,mv)\nwolk N(soort,ev,neut) \ngezicht N(soort,ev,neut) \ndeden 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)\nuitsterven V(intrans,inf,subst) \nontkomen V(intrans,inf) \nKrekelberg N(eigen,ev,neut) \nroyaal Adj(attr,stell,onverv) \nGiet V(trans,imp) \ntrachtend V(hulp_of_kopp,teg_dw,onverv) \ntekende V(trans,ovt,1_of_2_of_3,ev) \nOnoordeelkundig Adj(adv,stell,onverv) \nMond N(soort,ev,neut) \nBewoont V(trans,ott,3,ev) \nmededeling N(soort,ev,neut) \nbenoemde V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev)\nbouwstijlen N(soort,mv,neut) \nverbaasd V(trans,verl_dw,onverv) \nstaarden V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nmevrouw N(soort,ev,neut) \nleesbaar Adj(attr,stell,onverv) \nzoute Adj(attr,stell,verv_neut) \nverweven V(trans,verl_dw,onverv) \nAlthans Adv(gew,geen_func,stell,onverv) \nTwiggy N(eigen,ev,neut) \nbeatband N(soort,ev,neut) \nkosteloze Adj(attr,stell,verv_neut) \nstelling N(soort,ev,neut) \nkersen N(soort,mv,neut) \nonderwijzer N(soort,ev,neut) \nDaarin Adv(pron,aanw) \ntenen N(soort,mv,neut) \ndankbaar Adj(attr,stell,onverv) \ntekenen V(intrans,inf) \nLibelle-bruidspaar N(soort,ev,neut) \nniet-materiele Adj(attr,stell,verv_neut) \nmantel N(soort,ev,neut) \nsfeer N(soort,ev,neut) \nMooi Adj(attr,stell,onverv) \nwond V(refl,ovt,1_of_2_of_3,ev) \ndoch Conj(neven) \nBergers N(eigen,ev,neut) \nStreet N(eigen,ev,neut) \noverlas V(trans,ovt,1_of_2_of_3,ev) \nontberingssituaties N(soort,mv,neut) \nslingert V(refl,ott,3,ev) \ngietharsversiering N(soort,ev,neut) \ndergelijke Pron(aanw,dat,attr) \ngenoodzaakt V(trans,verl_dw,onverv) \nervaring N(soort,ev,neut) \nPieterse N(eigen,ev,neut) \nkoolbladeren N(soort,mv,neut) \nwaarschijnlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\njuli N(eigen,ev,neut) \nnaliet V(trans,ovt,1_of_2_of_3,ev) \ngeeft V(trans,ott,3,ev) \ndode Adj(attr,stell,verv_neut) \nstichten V(trans,inf) \nmedewerker N(soort,ev,neut) \ndergelijks Pron(aanw,gen,attr) \nziekenfondspakket N(soort,ev,neut) \nspek N(soort,ev,neut) \nromantiek N(soort,ev,neut) \nspel N(soort,ev,neut) \nkreng N(soort,ev,neut) \nchirurgie N(soort,ev,neut) \nvermoedt V(trans,ott,3,ev) \nHenk N(eigen,ev,neut) \nminstens Adv(gew,geen_func,stell,onverv) \nwoon V(intrans,ott,1,ev) \nlogische Adj(attr,stell,verv_neut) \ngebied N(soort,ev,neut) \nongerief N(soort,ev,neut) \nuittorenend Adj(attr,stell,onverv) \nmaagdelijke Adj(attr,stell,verv_neut) \novertocht N(soort,ev,neut) \nmakkelijker Adj(adv,vergr,onverv) \nuitdrukking N(soort,ev,neut) \nsnoepen V(intrans,inf) \ngrif Adj(adv,stell,onverv) \nklaargezet V(trans,verl_dw,onverv) \nruimschoots Adj(adv,stell,onverv) \nOpnieuw Adv(gew,geen_func,stell,onverv) \nbeweegt V(intrans,ott,3,ev) \ntactische Adj(attr,stell,verv_neut) \nVPRO-programma N(soort,ev,neut) \ndoek N(soort,ev,neut) \ndoel N(soort,ev,neut) \nvoort Adv(deel_v) Adv(gew,geen_func,stell,onverv)\ndoen 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)\nboezem N(soort,ev,neut) \ntorenflats N(soort,mv,neut) \nbevrediging N(soort,ev,neut) \n5,95 Num(hoofd,bep,attr,onverv) \nkralenversiering N(soort,ev,neut) \ndoes Misc(vreemd) \ndoet 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)\nnaargeestig Adj(adv,stell,onverv) \nzesjarige Adj(attr,stell,verv_neut) \nbeslagen V(trans,verl_dw,onverv) \nmisdaadfilm N(soort,ev,neut) \nomstreeks Adv(gew,geen_func,stell,onverv) Prep(voor)\ncoc N(eigen,ev,neut) \nras N(soort,ev,neut) \nfondue N(soort,ev,neut) \npopgroep N(soort,ev,neut) \njuni N(eigen,ev,neut) \ndriekwartsmaat N(soort,ev,neut) \nverkoopster N(soort,ev,neut) \nbesteden V(trans,inf) \nsamenloop N(soort,ev,neut) \nbijeen Adv(gew,geen_func,stell,onverv) \nWoont V(intrans,ott,3,ev) \ntweeenvijftigjarige Adj(attr,stell,verv_neut) \nTenzij Conj(onder,met_fin) \ntrachtten V(hulp,ovt,1_of_2_of_3,mv) \nafdeling N(soort,ev,neut) \nvervolmaken V(trans,inf) \nClaude N(eigen,ev,neut) \nbreiden V(trans,inf) \nverwekken V(trans,inf,subst) V(trans,inf)\nherinner V(trans,ott,1,ev) \ntvshow N(soort,ev,neut) \nBalenciaga N(eigen,ev,neut) \nhieraan Adv(pron,aanw) \nmaakte V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev)\nintrinsieke Adj(attr,stell,verv_neut) \nsaus N(soort,ev,neut) \nmeerderheid N(soort,ev,neut) \nkunstkenners N(soort,mv,neut) \nword V(hulp_of_kopp,ott,1,ev) \nvergeetachtige Adj(attr,stell,verv_neut) \nDaarna Adv(pron,aanw) \nbinnenkomen V(intrans,ott,1_of_2_of_3,mv) \neenling N(soort,ev,neut) \nGrieks Adj(zelfst,stell,onverv) \nellendig Adj(attr,stell,onverv) \nmoest-ie V(hulp_of_kopp,ovt,1_of_2_of_3,ev) \nnerveus Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nkrottenwijken N(soort,mv,neut) \ndieper Adj(adv,vergr,onverv) \nopgebeld V(trans,verl_dw,onverv) \nbillen N(soort,mv,neut) \nricht V(refl,ott,3,ev) \nmerken V(trans,inf) N(soort,mv,neut) V(trans,ott,1_of_2_of_3,mv)\nbevalling N(soort,ev,neut) \noverstroomd V(trans,verl_dw,onverv) \nafvalstoffen N(soort,mv,neut) \nTrap N(soort,ev,neut) \nafweging N(soort,ev,neut) \nvoedseloverschotten N(soort,mv,neut) \nbeschrijving N(soort,ev,neut) \nkwaad Adj(attr,stell,onverv) N(soort,ev,neut)\nHerr N(eigen,ev,neut) \nBarry N(eigen,ev,neut) \nNAAM N(soort,ev,neut) \nkwaal N(soort,ev,neut) \nDaarom Adv(gew,aanw) \ndiepvriesvak N(soort,ev,neut) \nMiddeleeuwen N(eigen,mv,neut) \novertuigen V(trans,inf) \nDaarop Adv(pron,aanw) \nMaar Conj(neven) Adv(gew,geen_func,stell,onverv)\nbokkenrijders N(soort,mv,neut) \nHeeft V(hulp,ott,3,ev) \nvermoeid V(trans,verl_dw,onverv) \nreisleider N(soort,ev,neut) \ndiensten N(soort,mv,neut) \nverrijkt V(trans,verl_dw,onverv) \nDefares N(eigen,ev,neut) \nontoelaatbaar Adj(attr,stell,onverv) \nheparine N(soort,ev,neut) \nontzegging N(soort,ev,neut) \nharteloos Adj(adv,stell,onverv) \nderden Num(rang,bep,zelfst,onverv) \nwaaruit Adv(pron,vrag) \ndramaturgie N(soort,ev,neut) \nglimmende V(intrans,teg_dw,verv_neut) \nwaag V(trans,imp) \nmedicijnen N(soort,mv,neut) \nanderhalve Num(hoofd,bep,attr,onverv) \nmeegemaakt V(trans,verl_dw,onverv) \nnamen N(soort,mv,neut) \nfeestje N(soort,ev,neut) \nzibeline N(soort,ev,neut) \nHoeksewaard N(eigen,ev,neut) \nopvallend V(intrans,teg_dw,onverv) \nbehulp N(soort,ev,neut) \nwaar Adv(gew,vrag) Adv(gew,betr) Adj(attr,stell,onverv) Adv(pron,vrag) Adv(pron,betr)\nlichaam N(soort,ev,neut) \ngezinssamenwerking N(soort,ev,neut) \ngekraakt V(trans,verl_dw,onverv) \njurk N(soort,ev,neut) \nGing V(intrans,ovt,1_of_2_of_3,ev) \naangebroken V(intrans,verl_dw,onverv) \nZieleman N(eigen,ev,neut) \nmaagpijn N(soort,ev,neut) \ngraven V(intrans,inf) V(trans,inf)\nuitstekend Adj(attr,stell,onverv) \nNegen Num(hoofd,bep,attr,onverv) \nbejaardenwoningen N(soort,mv,neut) \nijskoude Adj(attr,stell,verv_neut) \nraffinement N(soort,ev,neut) \nbezighoudt V(refl,ott,3,ev) \nslenterde V(intrans,ovt,1_of_2_of_3,ev) \nafgekondigd V(trans,verl_dw,onverv) \nMurton N(eigen,ev,neut) \nlachen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nrest N(soort,ev,neut) \nhoeveel Num(hoofd,onbep,attr,stell,onverv) \nwelvaartsblik N(soort,ev,neut) \nspreidt V(trans,ott,3,ev) \ngrof Adj(attr,stell,onverv) \ngriezelbeelden N(soort,mv,neut) \neenvoudige Adj(attr,stell,verv_neut) \nsandwiches N(soort,mv,neut) \nenkeling N(soort,ev,neut) \nverspeend V(trans,verl_dw,onverv) \ngros N(soort,ev,neut) \nbakkerij N(soort,ev,neut) \nseksboetieks N(soort,mv,neut) \nAlgerije N(eigen,ev,neut) \n17-jarige Adj(attr,stell,verv_neut) \nbevindt V(refl,ott,3,ev) \nvoorbeelden N(soort,mv,neut) \nhopen V(intrans,ott,1_of_2_of_3,mv) N(soort,mv,neut)\ngeschilpunt N(soort,ev,neut) \neindigt V(intrans,ott,3,ev) \nMady N(eigen,ev,neut) \nhotviool N(soort,ev,neut) \nrecensies N(soort,mv,neut) \nstadsvolkje N(soort,ev,neut) \nintensief Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nDanny N(eigen,ev,neut) \nfilmmagnaat N(soort,ev,neut) \nblijde Adj(attr,stell,verv_neut) \ncum Adj(adv,stell,onverv) \ndooier N(soort,ev,neut) \nleerden V(hulp,ovt,1_of_2_of_3,mv) \nroyale Adj(attr,stell,verv_neut) \ngetal N(soort,ev,neut) \ndesodorisanten N(soort,mv,neut) \nUssel N(eigen,ev,neut) \ntoerist N(soort,ev,neut) \nverkiezingen N(soort,mv,neut) \nmartelingen N(soort,mv,neut) \ngenadeklap N(soort,ev,neut) \nopperbest Adj(attr,overtr,onverv) \ngezegd V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nRijnterrassen N(soort,mv,neut) \nbevrijding N(soort,ev,neut) \n100.000 Num(hoofd,bep,attr,onverv) \nBloemen N(soort,mv,neut) \nmuzikale Adj(attr,stell,verv_neut) \nstelde V(trans,ovt,1_of_2_of_3,ev) \nwaard Adj(attr,stell,onverv) \ncynisch Adj(adv,stell,onverv) \nkunstenaars N(soort,mv,neut) \nwandeling N(soort,ev,neut) \neierslang N(soort,ev,neut) \ndaartussen Adv(pron,aanw) \ngillend V(intrans,teg_dw,onverv) \nkabbelende V(intrans,teg_dw,verv_neut) \nrij N(soort,ev,neut) \nsprongen V(intrans,ovt,1_of_2_of_3,mv) \nfeestelijke Adj(attr,stell,verv_neut) \nafloop N(soort,ev,neut) \nrit N(soort,ev,neut) \nredactie N(soort,ev,neut) \nkabelbaan N(soort,ev,neut) \nkomende V(intrans,teg_dw,verv_neut) \nminderheidsgroep N(soort,ev,neut) \nWapping N(eigen,ev,neut) \nspeelruimte N(soort,ev,neut) \ntrouwen V(intrans,inf) \nbewondering N(soort,ev,neut) \nwapen N(soort,ev,neut) \nrokken N(soort,mv,neut) \nTOEGANG N(soort,ev,neut) \nschaken V(intrans,inf,subst) V(intrans,inf)\nberustend V(intrans,teg_dw,onverv) \nSchrijf V(trans,imp) \nBrockhouse N(eigen,ev,neut) \nWayne N(eigen,ev,neut) \ngeprofileerde V(trans,verl_dw,verv_neut) \nvertrouw V(trans,ott,1,ev) \nPezzei N(eigen,ev,neut) \ngeflankeerd V(trans,verl_dw,onverv) \novereenkomst N(soort,ev,neut) \nbespreking N(soort,ev,neut) \nflarden N(soort,mv,neut) \nstelen V(trans,inf) \nverlossen V(trans,inf) \nspot N(soort,ev,neut) \nceintuur N(soort,ev,neut) \nblijft V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev)\ntorens N(soort,mv,neut) \ngravin N(soort,ev,neut) \nverzorging N(soort,ev,neut) \nreden V(intrans,ovt,1_of_2_of_3,mv) \nnegers N(soort,mv,neut) \nhartpatient N(soort,ev,neut) \ntouwen N(soort,mv,neut) \ndood N(soort,ev,neut) Adj(attr,stell,onverv) N(eigen,ev,neut)\nDompel V(trans,imp) \nTROS-uitzending N(soort,ev,neut) \nOverheersend V(intrans,teg_dw,onverv) \nziener N(soort,ev,neut) \nverklaren V(trans,inf) \ndoor Prep(voor) Conj(onder,met_inf) Prep(achter) Prep(comb) Adv(deel_adv) Misc(vreemd) Adv(gew,geen_func,stell,onverv) Adv(deel_v)\nkwalijk Adj(attr,stell,onverv) \nschilders N(soort,mv,neut) \nuiteindelijk Adj(adv,stell,onverv) \nwoningen N(soort,mv,neut) \nBundes-sportheim N(soort,ev,neut) \nkleertjes N(soort,mv,neut) \nToornsjtraat Misc(vreemd) \nkalme Adj(attr,stell,verv_neut) \nklooster N(soort,ev,neut) \ntophitlijsten N(soort,mv,neut) \nalle Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nBoeken N(soort,mv,neut) \nkuiten N(soort,mv,neut) \nontvingen V(trans,ovt,1_of_2_of_3,mv) \nsamenwerking N(soort,ev,neut) \ndepressie N(soort,ev,neut) \nredenen N(soort,mv,neut) \nstreven V(intrans,inf) V(intrans,inf,subst)\nmonter Adj(attr,stell,onverv) \nopgeschoten V(trans,verl_dw,onverv) \nveiligheid N(soort,ev,neut) \nZeker Adj(adv,stell,onverv) \nClient N(soort,ev,neut) \nMain N(eigen,ev,neut) \nsubtiel Adj(attr,stell,onverv) \nvariant N(soort,ev,neut) Adj(attr,stell,onverv)\nhoneymooners N(soort,mv,neut) \ngeest N(soort,ev,neut) \nNoordzee N(eigen,ev,neut) \nwerkbesparende Adj(attr,stell,verv_neut) \nargeloze Adj(attr,stell,verv_neut) \nSommigen Pron(onbep,neut,zelfst) \noefeningen N(soort,mv,neut) \nintuitie N(soort,ev,neut) \nherboren Adj(attr,stell,onverv) \nepater Misc(vreemd) \nbezitsdrang N(soort,ev,neut) \naandiende V(refl,ovt,1_of_2_of_3,ev) \nvooraanstaande Adj(attr,stell,verv_neut) \nSgt. N(eigen,ev,neut) \ndemonstratiemiddag N(soort,ev,neut) \nwerkwijze N(soort,ev,neut) \nHelvoirts N(eigen,ev,gen) \nhoogte N(soort,ev,neut) \nschenkers N(soort,mv,neut) \nKalverstraat N(eigen,ev,neut) \nNonnetje N(eigen,ev,neut) \ngezamenlijke Adj(attr,stell,verv_neut) \nbehaard Adj(attr,stell,onverv) \ngelaten V(trans,verl_dw,onverv) \nGroningen N(eigen,ev,neut) \nVoordeel N(soort,ev,neut) \nvismethode N(soort,ev,neut) \nbusiness N(soort,ev,neut) \ndorp N(soort,ev,neut) \nlichaamsgewicht N(soort,ev,neut) \nmededinging N(soort,ev,neut) \nvriendjes N(soort,mv,neut) \nLeen N(eigen,ev,neut) \nspitsuur N(soort,ev,neut) \nkattevoer N(soort,ev,neut) \nvredig Adj(attr,stell,onverv) \nRotterdamse Adj(attr,stell,verv_neut) \nsloten N(soort,mv,neut) \nmakkelijkst Adj(adv,vergr,onverv) \nJarenlang Adj(adv,stell,onverv) \nlitteratuur N(soort,ev,neut) \nuitdrukkingen N(soort,mv,neut) \nonafhankelijkheid N(soort,ev,neut) \nuitlopen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\npostbode N(soort,ev,neut) \naanstekelijk Adj(adv,stell,onverv) \nDarley N(eigen,ev,neut) \nonderlinge Adj(attr,stell,verv_neut) \nPluizen N(soort,mv,neut) \nUil N(eigen,ev,neut) \ngewonden V(trans,verl_dw,verv_mv) \nDaarbij Adv(pron,aanw) \njeugd N(soort,ev,neut) \nblijkt V(intrans,ott,3,ev) V(hulp_of_kopp,ott,3,ev)\nbijten V(intrans,inf) \nrok N(soort,ev,neut) \navonds N(soort,ev,gen) \nrol N(soort,ev,neut) \nveel Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv)\nUit Prep(voor) \ntechnische Adj(attr,stell,verv_neut) \nrot Adj(attr,stell,onverv) \nZethof N(eigen,ev,neut) \naanzoek N(soort,ev,neut) \nkabinet-De N(eigen,ev,neut) \nkerkezakje N(soort,ev,neut) \nBuona N(eigen,ev,neut) \nhumbug N(soort,ev,neut) \nwasbord N(soort,ev,neut) \nalledaagse Adj(attr,stell,verv_neut) \nexport-managers N(soort,mv,neut) \nboosdoeners N(soort,mv,neut) \nO.a. Adv(gew,geen_func,stell,onverv) \ncritici N(soort,mv,neut) \nvaker Adv(gew,geen_func,vergr,onverv) \nBuitenspelende Adj(attr,stell,verv_neut) \nspul N(soort,ev,neut) \nkrap Adj(adv,stell,onverv) \ndaad N(soort,ev,neut) \nregisseur N(soort,ev,neut) \nhoofdbureau N(soort,ev,neut) \nverhuurder N(soort,ev,neut) \nminderwaardigheidscomplex N(soort,ev,neut) \naanraking N(soort,ev,neut) \nzover Adv(gew,aanw) \nimmense Adj(attr,stell,verv_neut) \nbewapening N(soort,ev,neut) \ndaar Adv(gew,aanw) Adv(pron,aanw)\ntweeendertighonderd Num(hoofd,bep,zelfst,onverv) \nleraar N(soort,ev,neut) \ndaas Adj(attr,stell,onverv) \nproeft V(trans,ott,3,ev) \nkwaliteit N(soort,ev,neut) \ngevorderd V(intrans,verl_dw,onverv) \nvernieuwing N(soort,ev,neut) \naandrang N(soort,ev,neut) \ninitiatieven N(soort,mv,neut) \ndringend Adv(gew,geen_func,stell,onverv) \nlengten N(soort,mv,neut) \nwassen V(trans,inf) \nklassegewijze Adj(attr,stell,verv_neut) \nduurste Adj(attr,overtr,verv_neut) \nBestelt V(trans,ott,2,ev) \nrijksambtenaar N(soort,ev,neut) \nboerderij N(soort,ev,neut) \nkleren N(soort,mv,neut) \nevenwicht N(soort,ev,neut) \nturven V(intrans,inf) \nkinderprogramma N(soort,ev,neut) \nLuistert V(intrans,ott,2,ev) \nvissersdorpen N(soort,mv,neut) \nlaagconjunctuur N(soort,ev,neut) \nlezeressen N(soort,mv,neut) \nblijmoedige Adj(attr,stell,verv_neut) \nmarasquin N(soort,ev,neut) \ngekoeld V(trans,verl_dw,onverv) \nopvalt V(intrans,ott,3,ev) \nwordende V(hulp_of_kopp,teg_dw,verv_neut) \nopeet V(trans,ott,3,ev) \nTeleVizier N(eigen,ev,neut) \nMiddeleeuwse Adj(attr,stell,verv_neut) \ndiepte N(soort,ev,neut) \ncollier N(soort,ev,neut) \nwand N(soort,ev,neut) \nStein N(eigen,ev,neut) \nraison N(soort,ev,neut) \nbierbrouwerij-kapitaal N(soort,ev,neut) \nwang N(soort,ev,neut) \nOstenreich Misc(vreemd) \nmerkte V(trans,ovt,1_of_2_of_3,ev) \nberaamde V(trans,ovt,1_of_2_of_3,ev) \ntienduizenden Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nwant Conj(neven) \nlevenloos Adj(attr,stell,onverv) \nfilmwereld N(soort,ev,neut) \nDelfosse N(eigen,ev,neut) \nJackson N(eigen,ev,neut) \ntesamen Adv(gew,geen_func,stell,onverv) \ngedrang N(soort,ev,neut) \nbleken V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \nakkoord N(soort,ev,neut) \ntehuis N(soort,ev,neut) \nhomofielen N(soort,mv,neut) \nallergie N(soort,ev,neut) \npartijen N(soort,mv,neut) \nbonte Adj(attr,stell,verv_neut) \neksperimenteren V(intrans,inf) \nSchiedam N(eigen,ev,neut) \nWassenaar N(eigen,ev,neut) \nopvang N(soort,ev,neut) \nbezighouden V(refl,inf) V(refl,ott,1_of_2_of_3,mv)\nreisverhalen N(soort,mv,neut) \nfauteuil N(soort,ev,neut) \nMinnaert N(eigen,ev,neut) \ntillen V(trans,inf) \nGrieg N(eigen,ev,neut) \nEuropese Adj(attr,stell,verv_neut) \njawoord N(soort,ev,neut) \nNicholson N(eigen,ev,neut) \ngrootouders N(soort,mv,neut) \nschaamtegevoelens N(soort,mv,neut) \npublicitair Adj(adv,stell,onverv) \nkleiblokken N(soort,mv,neut) \nheldere Adj(attr,stell,verv_neut) \nverbouwd V(trans,verl_dw,onverv) \nuitbleef V(intrans,ovt,1_of_2_of_3,ev) \nvriendschap N(soort,ev,neut) \nonderling Adj(attr,stell,onverv) \nkreten N(soort,mv,neut) \ndag- N(soort,ev,neut) N(soort,mv,neut)\naantallen N(soort,mv,neut) \nWillibrords N(eigen,ev,gen) \nterzijde Adv(gew,geen_func,stell,onverv) \nvakje N(soort,ev,neut) \nlacht V(intrans,ott,3,ev) \nsophisticated Adj(attr,stell,onverv) \ndag N(soort,ev,neut) \nattenties N(soort,mv,neut) \ndak N(soort,ev,neut) \nOscar N(eigen,ev,neut) \ndan Adv(gew,aanw) Conj(onder,met_fin) Conj(neven)\nHoreca-attractie N(soort,ev,neut) \naanvang N(soort,ev,neut) \naardappelschepen N(soort,mv,neut) \ntrainingspak N(soort,ev,neut) \nbeschouwden V(trans,ovt,1_of_2_of_3,mv) \ndas N(soort,ev,neut) \ndat Conj(onder,met_fin) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) Adv(gew,vrag) Pron(aanw,neut,attr) Conj(neven)\nrookvlees N(soort,ev,neut) \nverloofd V(trans,verl_dw,onverv) \nadvertenties N(soort,mv,neut) \nrug N(soort,ev,neut) \nlachte V(intrans,ovt,1_of_2_of_3,ev) \nstrategen N(soort,mv,neut) \nHugenoten N(soort,mv,neut) \nonderhouden V(trans,inf) V(trans,verl_dw,onverv)\nJaarbeurshallen N(eigen,mv,neut) \nbeide Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nkwark N(soort,ev,neut) \nuithoeken N(soort,mv,neut) \nrum N(soort,ev,neut) \ngerust Adj(adv,stell,onverv) \nmoreel Adj(adv,stell,onverv) \nMars N(eigen,ev,neut) \nvoerde V(trans,ovt,1_of_2_of_3,ev) \nTruida N(eigen,ev,neut) \nMary N(eigen,ev,neut) \nverkenning N(soort,ev,neut) \nverder Adj(adv,vergr,onverv) \ngetekend V(trans,verl_dw,onverv) \nzuurstof N(soort,ev,neut) \ntoonden V(trans,ovt,1_of_2_of_3,mv) \ngebroeders N(soort,mv,neut) \nincasseren V(trans,inf) \nGoethe N(eigen,ev,neut) \ndromend V(intrans,teg_dw,onverv) \ntoepassen V(trans,inf) \nSuper Adj(attr,stell,onverv) \nverplichtingen N(soort,mv,neut) \nveld N(soort,ev,neut) \nvele Num(hoofd,onbep,attr,stell,verv_neut) \nvermijden V(trans,inf) \ntv-assistente N(soort,ev,neut) \nware Adj(attr,stell,verv_neut) V(intrans,conj)\ngymnasium N(soort,ev,neut) \ndonkere Adj(attr,stell,verv_neut) \naangekondigd V(trans,verl_dw,onverv) \nAigues-Mortes N(eigen,ev,neut) \nbekommert V(refl,ott,3,ev) \nDenemarken N(eigen,ev,neut) \nvleugels N(soort,mv,neut) \nwarm Adj(attr,stell,onverv) \nLagerhuis N(eigen,ev,neut) \nkwast N(soort,ev,neut) \nkleinere Adj(attr,vergr,verv_neut) \nvoeren V(trans,inf) \nverstek N(soort,ev,neut) \nprediken V(intrans,inf) \nkeerzijde N(soort,ev,neut) \nconcentratie N(soort,ev,neut) \ngetroffen V(trans,verl_dw,onverv) \nwestkant N(soort,ev,neut) \npriester N(soort,ev,neut) \nsterven V(intrans,inf) \nseizoen N(soort,ev,neut) \nschuldgevoel N(soort,ev,neut) \nreiken V(trans,inf) \nofschoon Conj(onder,met_fin) \ndarmen N(soort,mv,neut) \nnieuwjaarsnacht N(soort,ev,neut) \nNATO N(eigen,ev,neut) \nsoldaat N(soort,ev,neut) \npublic N(soort,mv,neut) \nverschrikkelijk Adj(adv,stell,onverv) \ntussenkomst N(soort,ev,neut) \nverhouding N(soort,ev,neut) \nwaardevrije Adj(attr,stell,verv_neut) \nhoed N(soort,ev,neut) \nchampagneglas N(soort,ev,neut) \nhoef V(hulp,ott,2,ev) V(hulp,ott,1,ev)\nbuitenbeks Adv(gew,geen_func,stell,onverv) \nslechter Adj(attr,vergr,onverv) \naanrukken V(trans,inf) \ninleiding N(soort,ev,neut) \nmethode N(soort,ev,neut) \nrituele Adj(attr,stell,verv_neut) \nhoek N(soort,ev,neut) \nmogelijke Adj(attr,stell,verv_neut) \nknalbommen N(soort,mv,neut) \n800,- Num(hoofd,bep,attr,onverv) \noosthoek N(soort,ev,neut) \nvoorzag V(trans,ovt,1_of_2_of_3,ev) \nhoes N(soort,ev,neut) \nminuten N(soort,mv,neut) \nconstateerde V(trans,ovt,1_of_2_of_3,ev) \nbekwaamheid N(soort,ev,neut) \nSpaanse Adj(attr,stell,verv_neut) \nschoen N(soort,ev,neut) \nplaatsen N(soort,mv,neut) V(trans,inf)\nbeige Adj(zelfst,stell,onverv) Adj(attr,stell,onverv)\nopzetten V(trans,inf,subst) V(trans,inf)\nMaup N(eigen,ev,neut) \nmoekes N(soort,mv,neut) \nbestond V(intrans,ovt,1_of_2_of_3,ev) \nuitspraken N(soort,mv,neut) \nvent N(soort,ev,neut) \nmascotte-bezitter N(soort,ev,neut) \nweerzin N(soort,ev,neut) \nteckeldorp N(soort,ev,neut) \nPetersen N(eigen,ev,neut) \nElfrink N(eigen,ev,neut) \ndek N(soort,ev,neut) \ndel N(eigen,ev,neut) \nden N(eigen,ev,neut) Art(bep,zijd,dat) N(eigen,mv,neut)\nafkeer N(soort,ev,neut) \nkerels N(soort,mv,neut) \neenvoud N(soort,ev,neut) \nschuurtjes N(soort,mv,neut) \nprogramma N(soort,ev,neut) \nder Art(bep,zijd_of_mv,gen) N(eigen,ev,neut)\ndes Adv(gew,aanw) N(eigen,ev,neut) Art(bep,zijd_of_onzijd,gen)\nKijk V(intrans,imp) Int\nvoorlopers N(soort,mv,neut) \nheerlijkheden N(soort,mv,neut) \ngeloof V(trans,ott,1,ev) V(intrans,ott,1,ev) N(soort,ev,neut)\nklemmen N(soort,mv,neut) \nGarfunkel N(eigen,ev,neut) \nEdwin N(eigen,ev,neut) \nregeling N(soort,ev,neut) \nraadsel N(soort,ev,neut) \ntegenspel N(soort,ev,neut) \nVivarais N(eigen,ev,neut) \nhekel N(soort,ev,neut) \nkonflikt N(soort,ev,neut) \nvloeiend V(intrans,teg_dw,onverv) \nonderscheid N(soort,ev,neut) \nverzeild V(intrans,verl_dw,onverv) \nGallisch Adj(attr,stell,onverv) \nstamppot N(soort,ev,neut) \nregelmatige Adj(attr,stell,verv_neut) \nsprookjesogen N(soort,mv,neut) \nKika N(eigen,ev,neut) \nhoge Adj(attr,stell,verv_neut) \npuntschoenen N(soort,mv,neut) \nlipsticks N(soort,mv,neut) \nbescherming N(soort,ev,neut) \nbegroeid V(trans,verl_dw,onverv) \nkleinzieligheid N(soort,ev,neut) \neenentwintig Num(hoofd,bep,attr,onverv) \npersoonlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nb.v. Adv(gew,geen_func,stell,onverv) \nwaterrijke Adj(attr,stell,verv_neut) \nslaakte V(trans,ovt,1_of_2_of_3,ev) \nafvloeit V(intrans,ott,3,ev) \nmeest-gevraagd Adj(attr,overtr,onverv) \nver- N(soort,mv,neut) \ntribune N(soort,ev,neut) \nArme Adj(attr,stell,verv_neut) \nApostel N(soort,ev,neut) \ndiscussie N(soort,ev,neut) \ntijdperk N(soort,ev,neut) \nverzuchtte V(trans,ovt,1_of_2_of_3,ev) \nhoofdzakelijk Adj(adv,stell,onverv) \nverandering N(soort,ev,neut) \nafkomstige Adj(attr,stell,verv_neut) \nbedrijven N(soort,mv,neut) V(trans,inf)\nuitkijktoren N(soort,ev,neut) \nwaargenomen V(trans,verl_dw,onverv) \nkelen N(soort,mv,neut) \ngodsdienstig Adj(attr,stell,onverv) \ngetto N(soort,ev,neut) \nspreekkamer N(soort,ev,neut) \nopgewektheid N(soort,ev,neut) \nwandelingen N(soort,mv,neut) \ninspireert V(trans,ott,3,ev) \nGroningse Adj(attr,stell,verv_neut) \nafzonderlijk Adj(adv,stell,onverv) \nassistente N(soort,ev,neut) \nSportief Adj(attr,stell,onverv) \npafferige Adj(attr,stell,verv_neut) \ndamslapers N(soort,mv,neut) \nkinderbijslag N(soort,ev,neut) \nanticoagulantiatabletten N(soort,mv,neut) \noproepen V(trans,inf) \nAfgejakkerd V(trans,verl_dw,onverv) \nVVD N(eigen,ev,neut) \nenergieverslinders N(soort,mv,neut) \ninspecteren V(trans,inf) \nverdelen V(trans,ott,1_of_2_of_3,mv) \ndame N(soort,ev,neut) \nomgeven V(trans,verl_dw,onverv) \nschrijvers N(soort,mv,neut) \nineenkrimpen V(intrans,inf) \nAnneke N(eigen,ev,neut) \nbijgeloof N(soort,ev,neut) \nzelfbevrediging N(soort,ev,neut) \nwerelds N(soort,ev,gen) \nBerlin N(eigen,ev,neut) \ngeknipt V(trans,verl_dw,onverv) \nvaccinatie N(soort,ev,neut) \nonthaal N(soort,ev,neut) \nnemen V(trans,inf) V(trans,inf,subst) V(trans,ott,1_of_2_of_3,mv)\ngewicht N(soort,ev,neut) \nconstateren V(trans,inf) \nvrijmaking N(soort,ev,neut) \ndamp N(soort,ev,neut) \nUddel N(eigen,ev,neut) \nspastische Adj(attr,stell,verv_neut) \nzachtaardig Adj(attr,stell,onverv) \nvers Adj(attr,stell,onverv) \ndie Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) Misc(vreemd)\nminder Num(hoofd,onbep,attr,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv)\ndik Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ndattie Conj(onder,met_fin) \njongetje N(soort,ev,neut) \ntoespraken N(soort,mv,neut) \nbereikt V(trans,verl_dw,onverv) V(trans,ott,3,ev)\nKing N(eigen,ev,neut) \nerelijst N(soort,ev,neut) \nVincent N(eigen,ev,neut) \nwanhopig Adj(attr,stell,onverv) \ngetuigenissen N(soort,mv,neut) \nwenkbrauwen N(soort,mv,neut) \nplaatsje N(soort,ev,neut) \ndis N(soort,ev,neut) \ndit Pron(aanw,neut,attr) Pron(aanw,neut,zelfst)\nafscheiding N(soort,ev,neut) \nJacqueline N(eigen,ev,neut) \nwoonkamer N(soort,ev,neut) \nhoogleraar N(soort,ev,neut) \nNigel N(eigen,ev,neut) \nregeringskliek N(soort,ev,neut) \nOosterbeek N(eigen,ev,neut) \ndank N(soort,ev,neut) \nvisitelijst N(soort,ev,neut) \nlevenloze Adj(attr,stell,verv_neut) \nslotte N(soort,ev,dat) \nbevochtiging N(soort,ev,neut) \nbinnenstad N(soort,ev,neut) \nvuurtorens N(soort,mv,neut) \nMorbihan N(eigen,ev,neut) \npaardemiddel N(soort,ev,neut) \nvest N(soort,ev,neut) \nkindsaf Adv(gew,geen_func,stell,onverv) \nhoezeer Adv(gew,betr) \nverantwoorde V(trans,verl_dw,verv_neut) N(eigen,ev,neut)\noptilt V(trans,ott,2,ev) \nzedelijkheidswetgeving N(soort,ev,neut) \nMaybella N(eigen,ev,neut) \nwaarvan Adv(pron,vrag) \nmiddelen N(soort,mv,neut) \nschreef V(trans,ovt,1_of_2_of_3,ev) \naloude Adj(attr,stell,verv_neut) \nuitstekende Adj(attr,stell,verv_neut) V(intrans,teg_dw,verv_neut)\nkabinet N(soort,ev,neut) \nverrassing N(soort,ev,neut) \nbegrijpelijke Adj(attr,stell,verv_neut) \nnergens Adv(gew,onbep) \nopera N(soort,ev,neut) \nSurinamer N(soort,ev,neut) \nHEL N(soort,ev,neut) \nvereeuwigen V(trans,inf) \nlangzamerhand Adv(gew,geen_func,stell,onverv) \nLeve V(intrans,conj) \nalweer Adv(gew,geen_func,stell,onverv) \nGriffe N(eigen,ev,neut) \nmigratie-balans N(soort,ev,neut) \nmouwen N(soort,mv,neut) \nvernielingen N(soort,mv,neut) \nlandschap N(soort,ev,neut) \ntoekomstig Adj(attr,stell,onverv) \nbestaan V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) N(soort,ev,neut) V(intrans,verl_dw,onverv)\nholt V(intrans,ott,3,ev) \ndoornemen V(trans,inf) \nCulturele Adj(attr,stell,verv_neut) \nrondkijkende V(intrans,teg_dw,verv_neut) \nslaagt V(intrans,ott,3,ev) \nbestaat V(intrans,ott,3,ev) \nveranderen V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\nbidt V(trans,ott,3,ev) \nEcht Adj(adv,stell,onverv) \nbovenplank N(soort,ev,neut) \nvermijdbaarheid N(soort,ev,neut) \nOostDuitsland N(eigen,ev,neut) \nWorkshop N(eigen,ev,neut) \noogjes N(soort,mv,neut) \nonverbeterlijk Adj(adv,stell,onverv) \ntaaie Adj(attr,stell,verv_neut) \nEngelse Adj(attr,stell,verv_neut) \nrealiseren V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nfungeren V(intrans,inf) \nextra's N(soort,mv,neut) \ndll N(soort,mv,neut) \nduizeligheid N(soort,ev,neut) \novergeslagen V(trans,verl_dw,onverv) \nelementen N(soort,mv,neut) \nspitse Adj(attr,stell,verv_neut) \nzedelijkheid N(soort,ev,neut) \nmiljoenenpubliek N(soort,ev,neut) \ngeleend V(trans,verl_dw,onverv) \ndisplaced Adj(attr,stell,onverv) \nmisdadigers N(soort,mv,neut) \nschijnt V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev)\nrafelig Adj(attr,stell,onverv) \nglanzend V(intrans,teg_dw,onverv) \nTrafalgar N(eigen,ev,neut) \nHieruit Adv(pron,aanw) \nrechtvaardige Adj(attr,stell,verv_neut) \nZuidvietnamese Adj(attr,stell,verv_neut) \nbier N(soort,ev,neut) \nverantwoordelijk Adj(attr,stell,onverv) \nvolksvergadering N(soort,ev,neut) \ngeweldig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nAgadir N(eigen,ev,neut) \nkondigt V(trans,ott,3,ev) \nsoort N(soort,ev,neut) \nverweet V(trans,ovt,1_of_2_of_3,ev) \nWest-Europa N(eigen,ev,neut) \nshowbusinessmakers N(soort,mv,neut) \neffectieve Adj(attr,stell,verv_neut) \napparaat N(soort,ev,neut) \nhond N(soort,ev,neut) \nconfrontatie N(soort,ev,neut) \nMaastricht N(eigen,ev,neut) \nMartine N(eigen,ev,neut) \n'k Pron(per,1,ev,nom) \n'm Pron(per,3,ev,dat_of_acc) \ngarage N(soort,ev,neut) \n'n Art(onbep,zijd_of_onzijd,neut) \nschone Adj(attr,stell,verv_neut) \nmaatschappij-kritisch Adj(adv,stell,onverv) \nresp. Adj(adv,stell,onverv) \n's Art(bep,zijd_of_onzijd,gen) \netalages N(soort,mv,neut) \n'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)\nMarseille N(eigen,ev,neut) \nschonk V(trans,ovt,1_of_2_of_3,ev) \ntrekpleisters N(soort,mv,neut) \nbeleven V(trans,inf) \nwasserij N(soort,ev,neut) \nnodig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nkwartier N(soort,ev,neut) \nbloeien V(intrans,inf) \nMarco N(eigen,ev,neut) \nhoog Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nindustrielen N(soort,mv,neut) \nbetere Adj(attr,vergr,verv_neut) \nelke Pron(onbep,neut,attr) \nbekwaamste Adj(attr,overtr,verv_neut) \nbesteedt V(trans,ott,3,ev) \nzacht Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nschoof V(trans,ovt,1_of_2_of_3,ev) \nhoon N(soort,ev,neut) \nhoop N(soort,ev,neut) V(intrans,ott,1,ev) V(trans,ott,1,ev)\nhoor Int V(trans,ott,2,ev) V(trans,ott,1,ev) V(intrans,ott,1,ev)\nsoepel Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ngeduldig Adj(adv,stell,onverv) \npilaren N(soort,mv,neut) \nduurde V(trans,ovt,1_of_2_of_3,ev) \nschool N(soort,ev,neut) \nschoon Adj(attr,stell,onverv) \nsprong V(intrans,ovt,1_of_2_of_3,ev) \nschoot N(soort,ev,neut) \ntendens N(soort,ev,neut) \ndoe V(trans,ott,2,ev) V(intrans,ott,1,ev) V(trans,imp) V(trans,ott,1,ev)\nHildegard N(eigen,ev,neut) \nwetgeving N(soort,ev,neut) \nI'm Misc(vreemd) \nschooltijd N(soort,ev,neut) \nsax N(soort,ev,neut) \nBukena N(eigen,ev,neut) \ndol Adj(attr,stell,onverv) \nDuys N(eigen,ev,neut) \nschenken V(trans,inf) \ndom Adj(attr,stell,onverv) \nvrede N(soort,ev,neut) \nheerlijks Adj(zelfst,stell,verv_gen) \nsterilisatie N(soort,ev,neut) \nluchthaven N(soort,ev,neut) \nonbeperkt Adj(adv,stell,onverv) \nconcentratievermogen N(soort,ev,neut) \nfotograaf N(soort,ev,neut) \nkleinen Adj(zelfst,stell,verv_mv) \nmakkelijk Adj(adv,stell,onverv) \nkleiner Adj(attr,vergr,onverv) \nChristoph N(eigen,ev,neut) \noorverdovende Adj(attr,stell,verv_neut) \nspreekvoorbeeld N(soort,ev,neut) \nhalen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nVoetgangers N(eigen,ev,neut) \ncent N(soort,ev,neut) \nborgsom N(soort,ev,neut) \nbevoogding N(soort,ev,neut) \nrugpatroon N(soort,ev,neut) \n,, Punc(hellip) \ndr. N(eigen,ev,neut) \nrationalisatie N(soort,ev,neut) \nspiegel N(soort,ev,neut) \nuitdrukkelijk Adj(adv,stell,onverv) \neethuisjes N(soort,mv,neut) \neigene Adj(zelfst,stell,verv_neut) \ngeleerd V(trans,verl_dw,onverv) \nscheidenden V(intrans,teg_dw,verv_mv) \nijzige Adj(attr,stell,verv_neut) \nvrees N(soort,ev,neut) V(trans,ott,1,ev) V(intrans,ott,1,ev)\nwoningwetwoningen N(soort,mv,neut) \nmeegenieten V(intrans,inf) \nknechtje N(soort,ev,neut) \ngebreide V(trans,verl_dw,verv_neut) \nteksten N(soort,mv,neut) \ninzat V(intrans,ovt,1_of_2_of_3,ev) \nuittrekken V(trans,inf) \nwereldkampioene N(soort,ev,neut) \ngezongen V(trans,verl_dw,onverv) \n3500 Num(hoofd,bep,attr,onverv) \nreizen V(intrans,inf,subst) N(soort,mv,neut)\nkleden V(trans,inf) \ngevuld V(trans,verl_dw,onverv) \nglycogeen N(soort,ev,neut) \nommuurd V(trans,verl_dw,onverv) \nkamer N(soort,ev,neut) \nbestelling N(soort,ev,neut) \nbijl N(soort,ev,neut) \nPeel N(eigen,ev,neut) \nDrugstore N(soort,ev,neut) \nstuderen V(intrans,inf) \ndeelt V(trans,ott,3,ev) \nPasen N(eigen,ev,neut) \nechtgenoot N(soort,ev,neut) \nSalzburg N(eigen,ev,neut) \npassen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf)\nmishandelingen N(soort,mv,neut) \nGeorge N(eigen,ev,neut) \nvampiers N(soort,mv,neut) \nwaarderen V(trans,inf) \nluisterde V(intrans,ovt,1_of_2_of_3,ev) \ngevluchte V(intrans,verl_dw,verv_neut) \nverhaaltje N(soort,ev,neut) \nmesterij N(soort,ev,neut) \nAVRO N(eigen,ev,neut) \nvroegrijpe Adj(attr,stell,verv_neut) \nPoswick N(eigen,ev,neut) \nrimboe N(soort,ev,neut) \nleegte N(soort,ev,neut) \nZwitserse Adj(attr,stell,verv_neut) \n.. Punc(hellip) \ngevraagd V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nkinderlijk Adj(attr,stell,onverv) \nBrabant N(eigen,ev,neut) \nvervoerde V(trans,ovt,1_of_2_of_3,ev) \nschrijft V(trans,ott,3,ev) V(trans,ott,2,ev)\nzijplanken N(soort,mv,neut) \ngebruikelijk Adj(attr,stell,onverv) \nzeef N(soort,ev,neut) \nWaardenburg N(eigen,ev,neut) \ngeworden V(hulp_of_kopp,verl_dw,onverv) \n10.000 Num(hoofd,bep,attr,onverv) \nverloofde N(soort,ev,neut) \nbinten N(soort,mv,neut) \nafscheidingsprodukt N(soort,ev,neut) \nvanmorgen Adv(gew,geen_func,stell,onverv) \nopdrogen V(intrans,ott,1_of_2_of_3,mv) \nmeervoudige Adj(attr,stell,verv_neut) \nchauffeur N(soort,ev,neut) \nseq N(eigen,ev,neut) \nzeep N(soort,ev,neut) \naanschouwelijk Adj(attr,stell,onverv) \nzeer Adv(gew,geen_func,stell,onverv) \nmeegebrachte V(trans,verl_dw,verv_neut) \nHeemsteedse Adj(attr,stell,verv_neut) \nniet-kunstonderwijsinstelling N(soort,ev,neut) \naandoenlijks Adj(attr,stell,verv_gen) \nsex N(soort,ev,neut) \ninzond V(trans,ovt,1_of_2_of_3,ev) \nnovember N(eigen,ev,neut) \nreclameboodschappen N(soort,mv,neut) \npuntige Adj(attr,stell,verv_neut) \nluisteren V(intrans,inf) \npopgroepen N(soort,mv,neut) \njournalist N(soort,ev,neut) \nwantoestanden N(soort,mv,neut) \nunderstand Misc(vreemd) \nleerstoel N(soort,ev,neut) \nvervoeren V(trans,inf) \narmen N(soort,mv,neut) Adj(zelfst,stell,verv_mv)\nMaria N(eigen,ev,neut) \nSaharadomeinen N(soort,mv,neut) \nhaar Pron(bez,3,ev,neut,attr) Pron(per,3,ev,dat_of_acc) N(soort,ev,neut)\narchipel N(soort,ev,neut) \nschaal N(soort,ev,neut) \nmassa's N(soort,mv,neut) \nhaat V(trans,ott,1,ev) V(trans,ott,3,ev)\nschuwen V(trans,ott,1_of_2_of_3,mv) \nAvonds N(soort,ev,gen) \nhenzelf Pron(per,3,mv,dat_of_acc) \nHugo N(eigen,ev,neut) \nhoud V(trans,imp) V(intrans,ott,1,ev) V(refl,ott,2,ev)\ngemiddelde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nuitlaat V(refl,ott,3,ev) \ndrinkend V(intrans,teg_dw,onverv) \ndermate Adv(gew,aanw) \nzorgvuldig Adj(adv,stell,onverv) \nvrouwelijkheid N(soort,ev,neut) \nmaquettes N(soort,mv,neut) \nberijdbare Adj(attr,stell,verv_neut) \nfolkloristische Adj(attr,stell,verv_neut) \ngekenmerkt V(trans,verl_dw,onverv) \nhout N(soort,ev,neut) \nVan Prep(voor) N(eigen,mv,neut) N(eigen,ev,neut)\nslaapt V(intrans,ott,3,ev) \nGod N(eigen,ev,neut) \nHOE Adv(gew,betr) \ngouden Adj(attr,stell,onverv) \ninzet N(soort,ev,neut) \nwasautomaat N(soort,ev,neut) \nkleurige Adj(attr,stell,verv_neut) \nVeertig Num(hoofd,bep,attr,onverv) \ndrukbezette Adj(attr,stell,verv_neut) \ninstelling N(soort,ev,neut) \nzegt V(trans,ott,3,ev) V(trans,ott,2,ev)\nvoorjaar N(soort,ev,neut) \nopgaan V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\nwaggelbenen N(soort,mv,neut) \nhuiseigenaar N(soort,ev,neut) \ndun Adj(adv,stell,onverv) \nopleiding N(soort,ev,neut) \nreportage N(soort,ev,neut) \nopgaat V(intrans,ott,3,ev) \nwielrennen V(intrans,inf) \ndus Adv(gew,aanw) \nlachten V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nverwend V(trans,verl_dw,onverv) \nvanillesuiker N(soort,ev,neut) \n10 Num(hoofd,bep,attr,onverv) \nbegreep V(trans,ovt,1_of_2_of_3,ev) \n11 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nbink N(soort,ev,neut) \npleziertje N(soort,ev,neut) \n12 Num(hoofd,bep,attr,onverv) \n13 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut)\nonooglijke Adj(zelfst,stell,verv_neut) \n14 Num(hoofd,bep,attr,onverv) \n15 Num(hoofd,bep,attr,onverv) \nklasse N(soort,ev,neut) \nbeesten N(soort,mv,neut) \n17 Num(hoofd,bep,attr,onverv) \n18 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut)\nsamengesteld V(trans,verl_dw,onverv) \n19 Num(hoofd,bep,attr,onverv) \nHuib N(eigen,ev,neut) \nwoning N(soort,ev,neut) \nspeurt V(intrans,ott,3,ev) \nkruid N(soort,ev,neut) \nMortelmans N(eigen,ev,neut) \norde N(soort,ev,neut) \nechtgenote N(soort,ev,neut) \nconcentreert V(refl,ott,3,ev) \nHuis N(eigen,ev,neut) \nsenator N(soort,ev,neut) \nkoren N(soort,mv,neut) \nMarquet N(eigen,ev,neut) \nveiligheidssluitingen N(soort,mv,neut) \nouderen Adj(zelfst,vergr,verv_neut) \nonderwereld N(soort,ev,neut) \nEEG-landen N(soort,mv,neut) \nlevendig Adj(attr,stell,onverv) \nminderwaardig Adj(attr,stell,onverv) \n20 Num(hoofd,bep,attr,onverv) N(soort,mv,neut)\n21 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n22 Num(hoofd,bep,attr,onverv) \n23 Num(hoofd,bep,attr,onverv) \nNigeria-Nok N(eigen,ev,neut) \nvoeden V(trans,inf) \ngroei N(soort,ev,neut) \n24 Num(hoofd,bep,attr,onverv) \n25 Num(hoofd,bep,attr,onverv) \nonbevredigde Adj(attr,stell,verv_neut) \nherkenbaar Adj(attr,stell,onverv) \nVernons N(eigen,ev,gen) \n26 Num(hoofd,bep,attr,onverv) \nshowbis N(soort,ev,neut) \n27 Num(hoofd,bep,attr,onverv) \naangaat V(trans,ott,3,ev) \nMarbert N(eigen,ev,neut) \ngroen Adj(zelfst,stell,onverv) Adj(attr,stell,onverv)\n29 Num(hoofd,bep,zelfst,onverv) \ngroep N(soort,ev,neut) \nparapsychologie N(soort,ev,neut) \nschade N(soort,ev,neut) \nzomaar Adv(gew,geen_func,stell,onverv) \nbuurt N(soort,ev,neut) \ngroet N(soort,ev,neut) \nreeds Adv(gew,geen_func,stell,onverv) \nrecept N(soort,ev,neut) \nChrist N(eigen,ev,neut) \nspiegelglas N(soort,ev,neut) \nslapen V(intrans,inf) \neigenhandig Adj(adv,stell,onverv) \nruim Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nuitgevoerd V(trans,verl_dw,onverv) \nhuiden N(soort,mv,neut) \nschalen N(soort,mv,neut) \noren N(soort,mv,neut) \n30 Num(hoofd,bep,attr,onverv) \n31 Num(hoofd,bep,attr,onverv) \nijlboden N(soort,mv,neut) \nkortstondige Adj(attr,stell,verv_neut) \nniettemin Adv(gew,geen_func,stell,onverv) \n36 Num(hoofd,bep,attr,onverv) \n39 Num(hoofd,bep,zelfst,onverv) \nafdelingslijst N(soort,ev,neut) \nhierbij Adv(pron,aanw) \nheftig Adj(adv,stell,onverv) \nColumbusstraat N(eigen,ev,neut) \nSultan N(soort,ev,neut) \ngelang N(soort,ev,neut) \n2e Num(rang,bep,attr,onverv) \nkatholiek N(soort,ev,neut) \nScandinavische Adj(attr,stell,verv_neut) \npatronaatszaaltje N(soort,ev,neut) \nradioprogramma N(soort,ev,neut) \nvolkskunst N(soort,ev,neut) \nbestand Adj(attr,stell,onverv) \nbuitenwereld N(soort,ev,neut) \naftandse Adj(attr,stell,verv_neut) \ninterne Adj(attr,stell,verv_neut) \n40 Num(hoofd,bep,attr,onverv) \n41 Num(hoofd,bep,zelfst,onverv) \n42 Num(hoofd,bep,attr,onverv) \nverhoging N(soort,ev,neut) \nspeelkamer N(soort,ev,neut) \n45 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\n46 Num(hoofd,bep,attr,onverv) \naangevraagde V(trans,verl_dw,verv_neut) \npolitieke Adj(attr,stell,verv_neut) \nski V(intrans,ott,1,ev) N(soort,ev,neut)\nVer Adj(adv,stell,onverv) \nRabenhauptstraat N(eigen,ev,neut) \naanleg N(soort,ev,neut) \n3a N(eigen,ev,neut) \nDietrich N(eigen,ev,neut) \nopvattingen N(soort,mv,neut) \nDines N(eigen,ev,gen) \nopening N(soort,ev,neut) \ntussen Prep(voor) \nHulp N(soort,ev,neut) \nvoedselbronnen N(soort,mv,neut) \nuitgezonden V(trans,verl_dw,onverv) \nPatsajew N(eigen,ev,neut) \nkrult V(intrans,ott,3,ev) \nzandbak N(soort,ev,neut) \nsla V(trans,imp) \n50 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n51 Num(hoofd,bep,zelfst,onverv) \nrukt V(intrans,ott,3,ev) \nbeiden Num(hoofd,bep,zelfst,verv_mv) \n53 Num(hoofd,bep,attr,onverv) \ngecoiffeerd V(trans,verl_dw,onverv) \nzelf Pron(aanw,neut,attr,w_zelf) \nRichard N(eigen,ev,neut) \n56 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\ncirculerend V(intrans,teg_dw,onverv) \n57 Num(hoofd,bep,zelfst,onverv) \n59 Num(hoofd,bep,zelfst,onverv) \nvergezellen V(trans,inf) \nsnelheidsmaniakken N(soort,mv,neut) \nverbeteren V(intrans,inf) \nMascouvin N(eigen,ev,neut) \nTsji N(eigen,ev,neut) \nErik N(eigen,ev,neut) N(eigen,ev,gen)\ngroenachtige Adj(attr,stell,verv_neut) \nnagellak N(soort,ev,neut) \nkitsch N(soort,ev,neut) \nmeubilair N(soort,ev,neut) \nniemand Pron(onbep,neut,zelfst) \nhersenen N(soort,mv,neut) \n60 Num(hoofd,bep,attr,onverv) \nMartel N(eigen,ev,neut) \nbetrokken V(trans,verl_dw,onverv) \nVerder Adj(adv,vergr,onverv) \nlikeur N(soort,ev,neut) \nbeperkten V(refl,ovt,1_of_2_of_3,mv) \nuithoudingsvermogen N(soort,ev,neut) \nGraham N(eigen,ev,neut) \nDoordat Conj(onder,met_fin) \nbetaalden V(trans,ovt,1_of_2_of_3,mv) \nReynolds N(eigen,ev,neut) \n65 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\nfunctie N(soort,ev,neut) \n67 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nwerkelijke Adj(attr,stell,verv_neut) \nstijlopvatting N(soort,ev,neut) \nZelfs Adv(gew,geen_func,stell,onverv) \nBangma N(eigen,ev,neut) \ntientallen N(soort,mv,neut) \ngevoeligheid N(soort,ev,neut) \nSchubert N(eigen,ev,neut) \nadvocaat N(soort,ev,neut) \nverknoeid V(trans,verl_dw,onverv) \ngoedgekeurd V(trans,verl_dw,onverv) \nChinese Adj(attr,stell,verv_neut) \nvelletje N(soort,ev,neut) \nloef N(soort,ev,neut) \nloei N(soort,ev,neut) \nteruggegaan V(intrans,verl_dw,onverv) \nadvocaten N(soort,mv,neut) \n70 Num(hoofd,bep,attr,onverv) \nNauwelijks Adv(gew,geen_func,stell,onverv) \n72 Num(hoofd,bep,attr,onverv) \nkonflikten N(soort,mv,neut) \n74 Num(hoofd,bep,attr,onverv) \nspiegels N(soort,mv,neut) \ngeroepen V(trans,verl_dw,onverv) \nvandoor Adv(gew,geen_func,stell,onverv) \nsynoniem Adj(attr,stell,onverv) \nbits Adj(attr,stell,onverv) \nbijeenzoeken V(trans,inf) \nlaatsgenoemde Adj(attr,stell,verv_neut) \nblaffen V(trans,ott,1_of_2_of_3,mv) \nnoblesse N(soort,ev,neut) \neindeloos Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nhuidje N(soort,ev,neut) \ndiefstallen N(soort,mv,neut) \ngroeiend V(intrans,teg_dw,onverv) \nschrijnende V(intrans,teg_dw,verv_neut) \neenzaam Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ndoorbreken V(trans,inf) \nverbrandt V(trans,ott,3,ev) \nverorberen V(trans,inf) \nstilte N(soort,ev,neut) \nWIE Pron(betr,neut,zelfst) \n80 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n81 Num(hoofd,bep,attr,onverv) \nseksualiteit N(soort,ev,neut) \nbulderstem N(soort,ev,neut) \n82 Num(hoofd,bep,attr,onverv) \nWerkgroep N(eigen,ev,neut) \nWIJ Pron(per,1,mv,nom) \ngebleven V(hulp_of_kopp,verl_dw,onverv) \ntranen N(soort,mv,neut) \nAllebei Num(hoofd,bep,zelfst,onverv) \nsom N(soort,ev,neut) \ncosmeticahuizen N(soort,mv,neut) \nkleuter-diertje N(soort,ev,neut) \nMartha N(eigen,ev,neut) \nrechterkant N(soort,ev,neut) \nboekjes N(soort,mv,neut) \nlollige Adj(attr,stell,verv_neut) \nExacte Adj(attr,stell,verv_neut) \nstijlcitaten N(soort,mv,neut) \nschalks Adj(adv,stell,onverv) \narmoe N(soort,ev,neut) \ngeef V(trans,ott,1,ev) V(trans,imp)\n93 Num(hoofd,bep,attr,onverv) \nzowel Conj(neven) \n95 Num(hoofd,bep,attr,onverv) \nbewusteloosheid N(soort,ev,neut) \nverwensing N(soort,ev,neut) \ngemeenschap N(soort,ev,neut) \ngeuit V(trans,verl_dw,onverv) \ntermen N(soort,mv,neut) \nHollandse Adj(attr,stell,verv_neut) \neigener Pron(aanw,gen,attr,w_eigen) \norchideeen N(soort,mv,neut) \ngeel Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\n99 Num(hoofd,bep,attr,onverv) \nhiernamaals N(soort,ev,neut) \ngeen Pron(onbep,neut,attr) \ngekend V(trans,verl_dw,onverv) \nonderzoek N(soort,ev,neut) \ntheologen N(soort,mv,neut) \ndaarvoor Adv(pron,aanw) \nreeks N(soort,ev,neut) \nchampagne N(soort,ev,neut) \nMarsh N(eigen,ev,neut) \ngeschoffeld V(trans,verl_dw,onverv) \n32,95 Num(hoofd,bep,attr,onverv) \ndaarmee Adv(pron,aanw) \nSproei V(intrans,imp) \nopstond V(intrans,ovt,1_of_2_of_3,ev) \nherinnerde V(trans,ovt,1_of_2_of_3,ev) \nventje N(soort,ev,neut) \nverste Adj(attr,overtr,verv_neut) \ngeniaal Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nmens-mens N(soort,ev,neut) \nprofiteren V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\npraktische Adj(attr,stell,verv_neut) \nBomanssaus N(soort,ev,neut) \noorlog N(soort,ev,neut) \nMartin N(eigen,ev,neut) \nboord N(soort,ev,neut) \nhalf Adj(attr,stell,onverv) Num(hoofd,bep,attr,onverv) Adj(adv,stell,onverv)\nonberoerd Adj(attr,stell,onverv) \nMarbella N(eigen,ev,neut) \ngezeten V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nsieraden N(soort,mv,neut) \nleeuwen N(soort,mv,neut) \nspraken V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nslootwater N(soort,ev,neut) \nPeru N(eigen,ev,neut) \njachtgeweren N(soort,mv,neut) \ntoekwam V(intrans,ovt,1_of_2_of_3,ev) \nviooltjes N(soort,mv,neut) \nverbeterd V(intrans,verl_dw,onverv) \ngromt V(intrans,ott,3,ev) \ngekaapt V(trans,verl_dw,onverv) \nwerkelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ndroevig Adj(adv,stell,onverv) \ndusdanig Pron(aanw,neut,zelfst) \nhals N(soort,ev,neut) \ndokken V(intrans,inf) \ngeplaatst V(trans,verl_dw,onverv) \nsprake N(soort,ev,neut) N(soort,ev,dat)\nHeuff N(eigen,ev,neut) \nfluisterde V(trans,ovt,1_of_2_of_3,ev) \nWestduitse Adj(attr,stell,verv_neut) \ngrond N(soort,ev,neut) \nherinneren V(trans,inf) \nrisico N(soort,ev,neut) \nhandwerkje N(soort,ev,neut) \nMarty N(eigen,ev,neut) \ngeleerde Adj(zelfst,stell,verv_neut) \nomvang N(soort,ev,neut) \nVolkomen Adj(adv,stell,onverv) \nvoortdurende V(intrans,teg_dw,verv_neut) \nAscott N(eigen,ev,neut) \nverwondingen N(soort,mv,neut) \ndirecteur N(soort,ev,neut) \nvreemd Adj(attr,stell,onverv) \nfeitelijk Adj(adv,stell,onverv) \nartsen N(soort,mv,neut) \nrespectievelijk Adj(adv,stell,onverv) \nbevinden V(refl,ott,1_of_2_of_3,mv) \nrondhangende V(intrans,teg_dw,verv_neut) \nfixer-leden N(soort,mv,neut) \nsnelt V(intrans,ott,3,ev) \ntoneelspelen V(intrans,inf) \nKlasen N(eigen,ev,neut) \ndienstplichtigen Adj(zelfst,stell,verv_mv) \nspiegelzusters N(soort,mv,neut) \nhand N(soort,ev,neut) \nhalve Adj(attr,stell,verv_neut) \nklassenmaatschappij N(soort,ev,neut) \nvezel N(soort,ev,neut) \nzogenaamde Adj(attr,stell,verv_neut) \nvandaag Adv(gew,geen_func,stell,onverv) \nopperstrateeg N(soort,ev,neut) \ngroot Adj(attr,stell,onverv) \nskiinstructeurs N(soort,mv,neut) \nveroordelen V(trans,inf) \nsmekend V(intrans,teg_dw,onverv) \nvandaan Adv(deel_adv) \nverleenden V(trans,ovt,1_of_2_of_3,mv) \nnestelt V(refl,ott,3,ev) \nprofit N(eigen,ev,neut) \ngelucht V(trans,verl_dw,onverv) \nvandaar Adv(gew,aanw) \nlachende V(intrans,teg_dw,verv_neut) \nonrechte N(soort,ev,dat) \nvormen N(soort,mv,neut) V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nColdwater N(eigen,ev,neut) \nsta V(intrans,ott,1,ev) V(hulp,ott,2,ev)\nMinder Num(hoofd,onbep,attr,vergr,onverv) \ncursus N(soort,ev,neut) \nrust N(soort,ev,neut) \ngarnituur N(soort,ev,neut) \npolyesterhars N(soort,ev,neut) \neiland N(soort,ev,neut) \ntheologie N(soort,ev,neut) \nlokt V(trans,ott,3,ev) \nAnnemiek N(eigen,ev,neut) \ngebruik N(soort,ev,neut) V(trans,imp)\ndieet N(soort,ev,neut) \ngeil N(soort,ev,neut) \nmerkwaardig Adj(attr,stell,onverv) \ngeboren Adj(attr,stell,onverv) \nschoolmeestersbestaan N(soort,ev,neut) \nverlopen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nakker N(soort,ev,neut) \nopgang N(soort,ev,neut) \nregenbui N(soort,ev,neut) \nvakken N(soort,mv,neut) \nwind-gordels N(soort,mv,neut) \nimage N(soort,ev,neut) \nelektrische Adj(attr,stell,verv_neut) \nbaanbrekend Adj(attr,stell,onverv) \nleren V(trans,inf) Adj(attr,stell,onverv) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf)\nkrijgen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nRedding Misc(vreemd) \novergegaan V(trans,verl_dw,onverv) \ndrinkperiode N(soort,ev,neut) \nletterlijke Adj(attr,stell,verv_neut) \nbarbaren N(soort,mv,neut) \npootjes N(soort,mv,neut) \nsneller Adj(adv,vergr,onverv) Adj(attr,vergr,onverv)\nprettige Adj(attr,stell,verv_neut) \nVos N(eigen,ev,gen) \ngedachte N(soort,ev,neut) \ngeliefden Adj(zelfst,stell,verv_mv) \nbeschadigingen N(soort,mv,neut) \nzenuwen N(soort,mv,neut) \ntinten N(soort,mv,neut) \ngerimpelde Adj(attr,stell,verv_neut) \npoppen N(soort,mv,neut) \nklonk V(intrans,ovt,1_of_2_of_3,ev) \nNaika N(eigen,ev,neut) \nberoemde Adj(attr,stell,verv_neut) \nparafernalia N(soort,mv,neut) \ngaven V(trans,ovt,1_of_2_of_3,mv) N(soort,mv,neut) V(refl,ovt,1_of_2_of_3,mv)\nexpert N(soort,ev,neut) \ngerimpelds V(trans,verl_dw,verv_gen) \nvolwaardige Adj(attr,stell,verv_neut) \ninzake Prep(voor) \nm.a.v.o. N(soort,ev,neut) \nbewijs N(soort,ev,neut) V(trans,ott,1,ev)\nnaaide V(trans,ovt,1_of_2_of_3,ev) \nTanger N(eigen,ev,neut) \nKevin N(eigen,ev,neut) \nfier Adj(adv,stell,onverv) \nauteur N(soort,ev,neut) \nkeukenmeester N(soort,ev,neut) \ndertig Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\nbestudering N(soort,ev,neut) \nafstaan V(trans,inf) \nEdith N(eigen,ev,neut) \nzenden V(intrans,inf,subst) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nkloof V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut)\ngymnastiekoefeningen N(soort,mv,neut) \nlong N(soort,ev,neut) \nzestien Num(hoofd,bep,attr,onverv) \nverdere Adj(attr,vergr,verv_neut) \noorspronkelijke Adj(attr,stell,verv_neut) \ngeld N(soort,ev,neut) \nhard Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nontmoetingen N(soort,mv,neut) \nhare Pron(bez,3,ev,neut,attr) \nopgeklopte V(trans,verl_dw,verv_neut) \nGabin N(eigen,ev,neut) \ningaan V(intrans,inf) \ngespietst V(trans,verl_dw,onverv) \nopstaan V(intrans,inf) \neikehouten Adj(attr,stell,onverv) \nnaaien V(trans,ott,1_of_2_of_3,mv) \ngangbare Adj(zelfst,stell,verv_neut) \nharp N(soort,ev,neut) \nonderhoudskosten N(soort,mv,neut) \nkorte Adj(attr,stell,verv_neut) \nhart N(soort,ev,neut) \nruwe Adj(attr,stell,verv_neut) \nkaarsen N(soort,mv,neut) \nMerci Int \ntabak N(soort,ev,neut) \nlood N(soort,ev,neut) \nNigeria N(eigen,ev,neut) \ntoegepast V(trans,verl_dw,onverv) \nweerloosheid N(soort,ev,neut) \nvoetganger N(soort,ev,neut) \nbrommer N(soort,ev,neut) \nA. N(eigen,ev,neut) \nversjacherd V(trans,verl_dw,onverv) \nVerstond V(trans,ovt,1_of_2_of_3,ev) \ngrote Adj(attr,stell,verv_neut) \nloop N(soort,ev,neut) V(intrans,ott,1,ev) V(hulp,ott,1,ev)\nhervinden V(trans,ott,1_of_2_of_3,mv) \nklopt V(intrans,ott,3,ev) \nbrengt V(trans,ott,3,ev) \ntoenemen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf,subst)\nvreten V(trans,inf) V(intrans,inf)\nverkeerd Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nhuisgenoten N(soort,mv,neut) \nmallotige Adj(attr,stell,verv_neut) \nthuiskomt V(intrans,ott,3,ev) \ngraad N(soort,ev,neut) \nverlustigen V(refl,inf) \ngraaf N(soort,ev,neut) \nStube N(soort,ev,neut) \ngraag Adj(adv,stell,onverv) \ngemonteerd V(trans,verl_dw,onverv) \nenerzijds Adv(gew,geen_func,stell,onverv) \neenjarige Adj(attr,stell,verv_neut) \nverkeert V(intrans,ott,3,ev) \ninhaalde V(trans,ovt,1_of_2_of_3,ev) \nkarabijn N(soort,ev,neut) \nzwaait V(intrans,ott,3,ev) \neen Art(onbep,zijd_of_onzijd,neut) Num(hoofd,bep,attr,onverv) N(eigen,ev,neut) Num(hoofd,bep,zelfst,onverv)\nmeteen Adv(gew,geen_func,stell,onverv) \ngieten V(intrans,inf) \nachtjarig Adj(attr,stell,onverv) \neer N(soort,ev,neut) \nB. N(eigen,ev,neut) N(soort,ev,neut)\nPISUISSE N(eigen,ev,neut) \nAR N(eigen,ev,neut) \ndoeltreffend Adj(adv,stell,onverv) \nzangers N(soort,mv,neut) \nroodharige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\neindeloze Adj(attr,stell,verv_neut) \nbarbarij N(soort,ev,neut) \nhate Misc(vreemd) \nkapster N(soort,ev,neut) \ngeurt V(intrans,ott,3,ev) \nstemmen N(soort,mv,neut) V(intrans,inf)\ntehuizen N(soort,mv,neut) \nopponent N(soort,ev,neut) \nerover Adv(pron,onbep) \ntoetertjes N(soort,mv,neut) \nAngeles N(eigen,ev,neut) \nkonkelkritiek N(soort,ev,neut) \nglimt V(intrans,ott,3,ev) \nGelei-achtige Adj(attr,stell,verv_neut) \nAf Adv(gew,geen_func,stell,onverv) \nteruggestuurd V(trans,verl_dw,onverv) \nFysiek Adj(attr,stell,onverv) \nstation N(soort,ev,neut) \nNoortjes N(eigen,ev,gen) \nAl Pron(onbep,neut,attr) Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv)\nfluutertjes N(soort,mv,neut) \nhuilt V(intrans,ott,2,ev) \nstandjes N(soort,mv,neut) \nHUBERT N(eigen,ev,neut) \nprobeert V(hulp,ott,3,ev) \nteams N(soort,mv,neut) \nhartstreek N(soort,ev,neut) \nLaotiaanse Adj(attr,stell,verv_neut) \neindigen V(intrans,inf) \nmede-weten N(soort,ev,neut) \ntegenstellingen N(soort,mv,neut) \nHertogin N(eigen,ev,neut) \nkoperplaat N(soort,ev,neut) \nantwoord N(soort,ev,neut) \nzuiden N(soort,ev,neut) \nnulpunt N(soort,ev,neut) \nHad V(hulp,ovt,1_of_2_of_3,ev) \nleerlingen N(soort,mv,neut) \neenzame Adj(attr,stell,verv_neut) \nHai Int \nBoyce N(eigen,ev,neut) \nstructuren N(soort,mv,neut) \nhelft N(soort,ev,neut) \ndubbelspel N(soort,ev,neut) \nleidende V(intrans,teg_dw,verv_neut) \nblazende V(intrans,teg_dw,verv_neut) \nBratwursten N(soort,mv,neut) \nventte V(intrans,ovt,1_of_2_of_3,ev) \nfunctionerende V(intrans,teg_dw,verv_neut) \nRingo N(eigen,ev,neut) \ncodenaam N(soort,ev,neut) \ntwaalftal N(soort,ev,neut) \nkordate Adj(attr,stell,verv_neut) \ngeinteresseerd V(trans,verl_dw,onverv) \ntoilet N(soort,ev,neut) \nondergoed N(soort,ev,neut) \nbeneden Adv(gew,geen_func,stell,onverv) Prep(voor)\ntheepot N(soort,ev,neut) \nfijn Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nboodschappentas N(soort,ev,neut) \nschuift V(trans,ott,3,ev) \nNederlander N(soort,ev,neut) \nselecteren V(trans,inf) \nmisverstanden N(soort,mv,neut) \nlamsvlees N(soort,ev,neut) \nlevensjaar N(soort,ev,neut) \nondervonden V(trans,verl_dw,onverv) \n19-jarige Adj(attr,stell,verv_neut) \nserviesgoed N(soort,ev,neut) \nvriendelijkheid N(soort,ev,neut) \nbakens N(soort,mv,neut) \nverzekeringsmaatschappij N(soort,ev,neut) \nlippen N(soort,mv,neut) \nHaltes N(soort,mv,neut) \nDE Art(bep,zijd_of_mv,neut) \nvoorjaarskuur N(soort,ev,neut) \nIBM N(eigen,ev,neut) \nproducent N(soort,ev,neut) \ntoelaatbaar Adj(attr,stell,onverv) \nmensenheugenis N(soort,ev,neut) \nCo N(eigen,ev,neut) \ngrandioos Adj(attr,stell,onverv) \nvolgen V(trans,inf) \nhuisje N(soort,ev,neut) \ningrepen N(soort,mv,neut) \ngevangenis N(soort,ev,neut) \nfiks Adj(attr,stell,onverv) \nbuurman N(soort,ev,neut) \nKameroen N(eigen,ev,neut) \nwoon-ellende N(soort,ev,neut) \nklaar Adj(attr,stell,onverv) \nopgave N(soort,ev,neut) \nverschaft V(trans,ott,3,ev) \nbestanddelen N(soort,mv,neut) \nTobias N(eigen,ev,neut) \nbustes N(soort,mv,neut) \nprinses N(soort,ev,neut) \ndraaide V(trans,ovt,1_of_2_of_3,ev) \nregels N(soort,mv,neut) \ngeneesmiddelen N(soort,mv,neut) \nregelt V(trans,ott,3,ev) \nDe Art(bep,zijd_of_mv,neut) N(eigen,ev,neut)\nzoowel Conj(neven) \nhonderd Num(hoofd,bep,attr,onverv) \nincognito Adv(gew,geen_func,stell,onverv) \nweggenomen V(trans,verl_dw,onverv) \nEN Conj(neven) \neis N(soort,ev,neut) \nDr N(eigen,ev,gen) \nBout N(eigen,ev,neut) \nbeat-bandjes N(soort,mv,neut) \nbehuizing N(soort,ev,neut) \nj.l. Adj(attr,stell,onverv) \npiccolo's N(soort,mv,neut) \nfilm N(soort,ev,neut) \ndiens Pron(aanw,gen,attr) \ndient V(hulp,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,3,ev) V(trans,ott,3,ev)\nlaag Adj(attr,stell,onverv) N(soort,ev,neut)\nTsaad N(eigen,ev,neut) \ntrekken V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv)\nvalse Adj(attr,stell,verv_neut) \nnormaal Adj(attr,stell,onverv) \ndiepvrieskreeftestaarten N(soort,mv,neut) \nEd N(eigen,ev,neut) \nbedoelde V(trans,verl_dw,verv_neut) \nkameleonachtige Adj(attr,stell,verv_neut) \nnvsh N(eigen,ev,neut) \nlaat 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)\nvereniging N(soort,ev,neut) \nsupporters N(soort,mv,neut) \ndraaien V(trans,inf) V(intrans,inf)\ntuinen N(soort,mv,neut) \ntransseksualisme N(soort,ev,neut) \ngevoeld V(trans,verl_dw,onverv) V(refl,verl_dw,onverv)\nacademische Adj(attr,stell,verv_neut) \nEn Conj(neven) \nzelflezen N(soort,ev,neut) \nG. N(eigen,ev,neut) \nEr Adv(gew,er) Adv(pron,er)\nkantonrechter N(soort,ev,neut) \nVervolgens Adv(gew,geen_func,stell,onverv) \noktober N(eigen,ev,neut) \nuitte V(refl,ovt,1_of_2_of_3,ev) \nBack N(eigen,ev,neut) \nChippendale N(eigen,ev,neut) \ntennis N(soort,ev,neut) \nHeb V(trans,ott,2,ev) V(hulp,ott,2,ev)\nhippies N(soort,mv,neut) \nverschijningsvormen N(soort,mv,neut) \nHee Int \nPiccadilly N(eigen,ev,neut) \nsynthetische Adj(attr,stell,verv_neut) \nbevroren V(intrans,verl_dw,onverv) \nverliefden Adj(zelfst,stell,verv_mv) \nkoelkasten N(soort,mv,neut) \nnagaan V(intrans,inf) V(trans,inf)\ndiepe Adj(attr,stell,verv_neut) \nvertonen V(trans,inf,subst) \nSchaaf V(trans,imp) \nbedoelen V(trans,ott,1_of_2_of_3,mv) \nHet Pron(onbep,neut,zelfst) N(eigen,ev,neut) Art(bep,onzijd,neut) Pron(per,3,ev,nom)\nH. N(eigen,ev,neut) \noperaties N(soort,mv,neut) \nonevenwichtig Adj(attr,stell,onverv) \nkunstenaar N(soort,ev,neut) \nontzenuwen V(trans,inf) \npoort N(soort,ev,neut) \nYoko N(eigen,ev,neut) \ngepakt V(trans,verl_dw,onverv) \nlinksen Adj(zelfst,stell,verv_mv) \noverwaait V(intrans,ott,3,ev) \ngedrag N(soort,ev,neut) \nAdjudant N(soort,ev,neut) \nPython N(eigen,ev,neut) \nbiezen N(soort,mv,neut) \nvooraanstaand Adj(attr,stell,onverv) \nDoolaard N(eigen,ev,neut) \nmeegenomen V(trans,verl_dw,onverv) \nrampschip N(soort,ev,neut) \nproblematiek N(soort,ev,neut) \naangegrepen V(trans,verl_dw,onverv) \ndaartussenin Adv(pron,aanw) \npsychologische Adj(attr,stell,verv_neut) \nGa V(hulp,imp) V(intrans,imp) V(intrans,ott,2,ev)\nzuigopening N(soort,ev,neut) \nbewegen V(trans,inf,subst) V(intrans,inf,subst)\nelf Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\nSuriname N(eigen,ev,neut) \nGeneraal N(soort,ev,neut) \nproducers N(soort,mv,neut) \nelk Pron(onbep,neut,attr) \nenscrenering N(soort,ev,neut) \nbeschikking N(soort,ev,neut) \nwetenschap N(soort,ev,neut) \ntennisbanen N(soort,mv,neut) \nmidden- N(soort,ev,neut) \ninzonderheid Adv(gew,geen_func,stell,onverv) \ntoonaangevende Adj(attr,stell,verv_neut) \narmoedige Adj(attr,stell,verv_neut) \nGo N(eigen,ev,neut) \nH.B. N(eigen,ev,neut) \ngevernist V(trans,verl_dw,onverv) \nspiraaltje N(soort,ev,neut) \nKuitert N(eigen,ev,neut) \nafgestroopt V(trans,verl_dw,onverv) \ngeholpen V(trans,verl_dw,onverv) \nverleidelijke Adj(attr,stell,verv_neut) \nrockerbenden N(soort,mv,neut) \nhelle Adj(attr,stell,verv_neut) \nonvermijdelijke Adj(attr,stell,verv_neut) \nWesterbouwing N(eigen,ev,neut) \ngeur N(soort,ev,neut) \nBelgen N(soort,mv,neut) \nwacht V(trans,ott,1,ev) \nZeeland N(eigen,ev,neut) \nBelger N(eigen,ev,neut) \nkoetsen N(soort,mv,neut) \nSurinaamse Adj(attr,stell,verv_neut) \ndessinateur N(soort,ev,neut) \nhuishoudelijke Adj(attr,stell,verv_neut) \nnuchter Adj(adv,stell,onverv) \nsteenboknaturen N(soort,mv,neut) \nroklengte N(soort,ev,neut) \nvisvangst N(soort,ev,neut) \nvuil N(soort,ev,neut) Adj(attr,stell,onverv)\nHo N(eigen,ev,neut) \nclandestiene Adj(attr,stell,verv_neut) \nongelukken N(soort,mv,neut) \nschelen V(trans,inf) \nchaotisch Adj(adv,stell,onverv) \nIV N(eigen,ev,neut) \nvliegtuig N(soort,ev,neut) \nschuilt V(intrans,ott,3,ev) \nzwaard N(soort,ev,neut) \nkinders N(soort,mv,neut) \nene Pron(onbep,neut,attr) Num(hoofd,bep,attr,onverv)\neng Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nChing-wang N(eigen,ev,neut) \ngehanteerd V(trans,verl_dw,onverv) \nlicht N(soort,ev,neut) Adj(adv,stell,onverv)\nMao-Chinees N(soort,ev,neut) \nIk Pron(per,1,ev,nom) \nvermogen N(soort,ev,neut) \nZomaar Adv(gew,geen_func,stell,onverv) \nIn Prep(voor) N(eigen,ev,neut)\ngazons N(soort,mv,neut) \nhulpstukjes N(soort,mv,neut) \nVARA N(eigen,ev,neut) \ngedetineerde V(trans,verl_dw,verv_neut) \nIs V(hulp_of_kopp,ott,3,ev) \nSlapen V(intrans,ott,1_of_2_of_3,mv) \nafgeblazen V(trans,verl_dw,onverv) \ngeinspireerd V(trans,verl_dw,onverv) \nvolledige Adj(attr,stell,verv_neut) \nVermeng V(trans,imp) \nbeurszaal N(soort,ev,neut) \nKNMV N(eigen,ev,neut) \nEugenie N(eigen,ev,neut) \nJaren N(soort,mv,neut) \ntal N(soort,ev,neut) \nverborgen V(trans,verl_dw,onverv) \ndenkwijzen N(soort,mv,neut) \nverloedering N(soort,ev,neut) \nJa Int \npastoor N(soort,ev,neut) \npruikenmateriaal N(soort,ev,neut) \ntas N(soort,ev,neut) \nHij Pron(per,3,ev,nom) \nzaadje N(soort,ev,neut) \nbelonen V(intrans,inf) \nJe Pron(per,2,ev,nom) Pron(onbep,neut,zelfst) Pron(bez,2,ev,neut,attr)\nnuchtere Adj(attr,stell,verv_neut) \nbegripsvermogen N(soort,ev,neut) \nrelaas N(soort,ev,neut) \nJohns N(eigen,ev,neut) \nbevriezen V(trans,inf) \ntelefoonlijst N(soort,ev,neut) \nJo N(eigen,ev,neut) \nlandbevolking N(soort,ev,neut) \nhooibergen N(soort,mv,neut) \nDominee N(soort,ev,neut) \nkapstok N(soort,ev,neut) \ntbc N(soort,ev,neut) \nmodieus Adj(adv,stell,onverv) \ngymnastiekonderdeel N(soort,ev,neut) \nlage Adj(attr,stell,verv_neut) \naantrekkelijkheid N(soort,ev,neut) \nluchtvaartmaatschappijen N(soort,mv,neut) \nmachtigen Adj(zelfst,stell,verv_mv) \nGezagvoerder N(soort,ev,neut) \nafstand N(soort,ev,neut) \nregendruppels N(soort,mv,neut) \nvetstroken N(soort,mv,neut) \nTalloze Pron(onbep,neut,attr) \ngetuigden V(intrans,ovt,1_of_2_of_3,mv) \ntbr N(soort,ev,neut) \nmeubelstuk N(soort,ev,neut) \nApple N(eigen,ev,neut) \nBussum N(eigen,ev,neut) \nonaantastbaar Adj(attr,stell,onverv) \njezuietenkoppen N(soort,mv,neut) \nVliet N(eigen,ev,neut) \ngevoerd V(trans,verl_dw,onverv) \ninactiviteit N(soort,ev,neut) \nbrandkasten N(soort,mv,neut) \nNatuurlijk Adj(adv,stell,onverv) \nM. N(eigen,ev,neut) \nbleekheid N(soort,ev,neut) \nreinigingsmiddel N(soort,ev,neut) \napparaten N(soort,mv,neut) \nvult V(trans,ott,3,ev) \ningang N(soort,ev,neut) \nopstand N(soort,ev,neut) \nTussen Prep(voor) \nBelgie N(eigen,ev,neut) \nGergweis N(eigen,ev,neut) \nbejaarde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nmuurtje N(soort,ev,neut) \ndieren N(soort,mv,neut) \nenergie N(soort,ev,neut) \nVitus N(eigen,ev,neut) \naanvaarding N(soort,ev,neut) \nbroers N(soort,mv,neut) \nLa N(eigen,ev,neut) \nBeiden Num(hoofd,bep,zelfst,verv_mv) \ngeprobeerd V(hulp,verl_dw,onverv) \npruimen V(trans,inf) \nvernietigende V(intrans,teg_dw,verv_neut) \nLe N(eigen,ev,neut) \nideaal N(soort,ev,neut) \ndouzaine N(soort,ev,neut) \nkunsthandelaren N(soort,mv,neut) \nhelpt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nopdracht N(soort,ev,neut) \nduren V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nidealen N(soort,mv,neut) \ngeniet V(trans,ott,3,ev) \nongelukkig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ngemeente N(soort,ev,neut) \nswingt V(intrans,ott,3,ev) \nzingende V(intrans,teg_dw,verv_neut) \nLuns N(eigen,ev,neut) \nlangzaam Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nongetwijfeld Adv(gew,geen_func,stell,onverv) \ndragen V(trans,inf) \npoes N(soort,ev,neut) \npuntjes N(soort,mv,neut) \nbakje N(soort,ev,neut) \nstudenten N(soort,mv,neut) \npasten V(intrans,ovt,1_of_2_of_3,mv) \ngeantwoord V(trans,verl_dw,onverv) \nkleurvlakken N(soort,mv,neut) \neilandjes N(soort,mv,neut) \nborduurschortje N(soort,ev,neut) \neconomische Adj(attr,stell,verv_neut) \nbevruchting N(soort,ev,neut) \nBartholomeusnacht N(eigen,ev,neut) \nDuitse Adj(attr,stell,verv_neut) \nLloyd N(eigen,ev,neut) \nbepleiten V(trans,inf) \nMa N(eigen,ev,neut) \nuitgegaan V(trans,verl_dw,onverv) \nclienten N(soort,mv,neut) \ncountry Misc(vreemd) \ntaboe N(soort,ev,neut) \nere N(soort,ev,neut) \nvelde N(soort,ev,dat) \nerg Adj(adv,stell,onverv) Adj(attr,stell,onverv) N(soort,ev,neut)\nlekkere Adj(attr,stell,verv_neut) \nbestuursleden N(soort,mv,neut) \nwipte V(intrans,ovt,1_of_2_of_3,ev) \naanboden V(trans,ovt,1_of_2_of_3,mv) \nwerpen V(refl,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv)\nblootleggen V(trans,inf) \nloopbaan N(soort,ev,neut) \nopgedrongen V(trans,verl_dw,onverv) \nkosak N(soort,ev,neut) \nJongeren Adj(zelfst,vergr,verv_neut) \nveiligheidsredenen N(soort,mv,neut) \nYork N(eigen,ev,neut) \nvoorzitter N(soort,ev,neut) \ndurft V(trans,ott,3,ev) \nnoemt V(trans,ott,3,ev) \nlekkers N(soort,ev,neut) \nMarsiaanse Adj(attr,stell,verv_neut) \nverbrandingen N(soort,mv,neut) \noplossingen N(soort,mv,neut) \nverrukkelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\npersonal Misc(vreemd) \nten Prep(voor) \nrechtgebogen V(trans,verl_dw,onverv) \nmetten N(soort,mv,neut) \nnabloeiertje N(soort,ev,neut) \nter Prep(voor) \nNa Prep(voor) \nopgevouwen V(trans,verl_dw,onverv) \ncollega's N(soort,mv,neut) \nopstapt V(intrans,ott,3,ev) \nTegenover Prep(voor) \nheuvel N(soort,ev,neut) \nverantwoordelijkheidsbesef N(soort,ev,neut) \nopgebouwd V(trans,verl_dw,onverv) \nvuile Adj(attr,stell,verv_neut) \nonttrekken V(refl,inf) \nsober Adj(attr,stell,onverv) \nkneusjesservice N(soort,ev,neut) \norganisme N(soort,ev,neut) \nvelen Num(hoofd,onbep,zelfst,stell,verv_mv) \nonderricht N(soort,ev,neut) \nsnelde V(intrans,ovt,1_of_2_of_3,ev) \nP. N(eigen,ev,neut) \nsecretaris-generaal N(soort,ev,neut) \nonderrichten V(trans,inf) \nberuchte Adj(attr,stell,verv_neut) \nnederlaag N(soort,ev,neut) \nNu Adv(gew,aanw) \nslakkenfestijn N(soort,ev,neut) \nafgesloten V(trans,verl_dw,onverv) \nkunstgebit N(soort,ev,neut) \nkeek V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nomgaan V(intrans,inf) \nkeel N(soort,ev,neut) \nbezitters N(soort,mv,neut) \nvreemde Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nsmullen V(intrans,inf) \nhuize N(soort,ev,neut) \nspringen V(intrans,inf) \nomgaat V(intrans,ott,3,ev) \nTheems N(eigen,ev,neut) \nkeer N(soort,ev,neut) \nhaarcreme N(soort,ev,neut) \nkees N(eigen,ev,neut) \nIngeborg N(eigen,ev,neut) \nbouwden V(trans,ovt,1_of_2_of_3,mv) \nOf Conj(neven) Conj(onder,met_fin)\nOh N(eigen,ev,neut) Int\nschelle Adj(attr,stell,verv_neut) \namandelen N(soort,mv,neut) \ngeboden V(trans,verl_dw,onverv) \nkregen V(trans,ovt,1_of_2_of_3,mv) \nOm Conj(onder,met_inf) Prep(voor)\nliggen V(intrans,ott,1_of_2_of_3,mv) V(hulp,inf) V(intrans,inf)\nOp Prep(voor) \nvrucht N(soort,ev,neut) \ndagen N(soort,mv,neut) \nontbreken V(intrans,inf,subst) V(intrans,inf) Adj(attr,stell,onverv) V(intrans,ott,1_of_2_of_3,mv)\noverbevolking N(soort,ev,neut) \nOs N(eigen,ev,neut) \nbevruchte V(trans,verl_dw,verv_neut) \nVrouwen N(soort,mv,neut) \noverbleven V(intrans,ovt,1_of_2_of_3,mv) \nkoninklijk Adj(attr,stell,onverv) \nWal N(eigen,ev,neut) \nrijdend V(trans,teg_dw,onverv) \nwijnkelder N(soort,ev,neut) \ntheoloog N(soort,ev,neut) \ntoeruikende V(intrans,teg_dw,verv_neut) \nnormale Adj(attr,stell,verv_neut) \nbeetje N(soort,ev,neut) \nhoren V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nWas V(hulp_of_kopp,ovt,1_of_2_of_3,ev) \nHoe Adv(gew,betr) \nspreken V(intrans,ott,1_of_2_of_3,mv) V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\nleden N(soort,mv,neut) \nWat Pron(vrag,neut,attr) Pron(vrag,neut,zelfst) Pron(betr,neut,zelfst)\nsjieke Adj(attr,stell,verv_neut) \ndroeg V(intrans,ovt,1_of_2_of_3,ev) \nopsporingswerk N(soort,ev,neut) \narrogante Adj(attr,stell,verv_neut) \nconversatiezalen N(soort,mv,neut) \nHot N(eigen,ev,neut) \nArpege N(eigen,ev,neut) \nRinus N(eigen,ev,neut) \nwaarschijnlijkheid N(soort,ev,neut) \nNederlandse Adj(attr,stell,verv_neut) \noverreden V(trans,verl_dw,onverv) \ngeval N(soort,ev,neut) \nlinksom Adv(gew,geen_func,stell,onverv) \nstukje N(soort,ev,neut) \nafblijven V(intrans,inf) \nthe Misc(vreemd) N(eigen,ev,neut)\nmarges N(soort,mv,neut) \nklank N(soort,ev,neut) \nzusjes N(soort,mv,neut) \nzorgelijke Adj(attr,stell,verv_neut) \nprinselijke Adj(attr,stell,verv_neut) \nbesturen N(soort,mv,neut) \nverminkende V(intrans,teg_dw,verv_neut) \ntegelijk Adv(gew,geen_func,stell,onverv) \nkortgeschoren V(trans,verl_dw,onverv) \nDalkonschildje N(soort,ev,neut) \nbeelden V(trans,inf) \nprovincie N(soort,ev,neut) \npatronen N(soort,mv,neut) \nFreud N(eigen,ev,neut) \nverheugen V(refl,inf) \nvergaderingen N(soort,mv,neut) \nland N(soort,ev,neut) \ncoupe N(soort,ev,neut) \nTeken V(trans,imp) \nlang Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nSint N(eigen,ev,gen) \nvriend N(soort,ev,neut) \npersonen N(soort,mv,neut) \ndroge Adj(attr,stell,verv_neut) \nspecialisten N(soort,mv,neut) \nKNVB N(eigen,ev,neut) \nslijter N(soort,ev,neut) \nVraag N(soort,ev,neut) \neigenlijk Adj(adv,stell,onverv) \nleeftijdsgrens N(soort,ev,neut) \nwaren V(hulp_of_kopp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nNewsweek N(eigen,ev,neut) \nmiddeleeuwen N(eigen,mv,neut) \nschamel Adj(attr,stell,onverv) \nfeitjes N(soort,mv,neut) \nondergaan V(trans,verl_dw,onverv) \nCoast Misc(vreemd) \nschamen V(refl,inf) \nbestuderen V(trans,inf) \nstenen N(soort,mv,neut) Adj(attr,stell,onverv)\nEitje N(eigen,ev,neut) \nCremer-achtig Adj(attr,stell,onverv) \ne.v.a. Pron(onbep,neut,zelfst) \nvertrouwde Adj(attr,stell,verv_neut) V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut)\nkapitein N(soort,ev,neut) \nnoten N(soort,mv,neut) \nvocht N(soort,ev,neut) \ngebonden V(trans,verl_dw,onverv) \ngeprezen V(trans,verl_dw,onverv) \nvervolgde V(trans,ovt,1_of_2_of_3,ev) \nOfficieel Adj(adv,stell,onverv) \nLange Adj(attr,stell,verv_neut) \nalvorens Conj(onder,met_inf) \nonafhankelijke Adj(attr,stell,verv_neut) \nrockers N(soort,mv,neut) \nvuiligheid N(soort,ev,neut) \ntegenstelling N(soort,ev,neut) \nVrouw N(soort,ev,neut) \nvoorman N(soort,ev,neut) \nglimlachend V(intrans,teg_dw,onverv) \nLangs Prep(voor) \nbeschrijft V(trans,ott,3,ev) \nkinderen N(soort,mv,neut) \nfragiel Adj(attr,stell,onverv) \nopschik N(soort,ev,neut) \nkringen N(soort,mv,neut) \nonverdroten Adj(adv,stell,onverv) \nGunnersbury N(eigen,ev,neut) \nWel Adv(gew,geen_func,stell,onverv) Int\nopenbaart V(refl,ott,3,ev) \npols N(soort,ev,neut) \nverfrissend V(intrans,teg_dw,onverv) \ndriehoek N(soort,ev,neut) \nVormen V(trans,ott,1_of_2_of_3,mv) \nWet N(eigen,ev,neut) \nertoe Adv(pron,onbep) \nvertrouwen V(intrans,inf) V(trans,inf) N(soort,ev,neut)\ngehaald V(trans,verl_dw,onverv) \nmineur Adv(gew,geen_func,stell,onverv) \nTe Prep(voor_inf) \nrijders N(soort,mv,neut) \nlippenstift N(soort,ev,neut) \nSukarno N(eigen,ev,neut) \nfinancieringsprobleem N(soort,ev,neut) \nmagere Adj(attr,stell,verv_neut) \nzakjes N(soort,mv,neut) \nhoofdpijn N(soort,ev,neut) \nvrijmoedig Adj(adv,stell,onverv) \nalmaar Adv(gew,geen_func,stell,onverv) \nvuur N(soort,ev,neut) \ngeven V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\narcheologische Adj(attr,stell,verv_neut) \ngeschakeerd V(trans,verl_dw,onverv) \ngestuurd V(trans,verl_dw,onverv) \nellende N(soort,ev,neut) \nreacties N(soort,mv,neut) \nweerszijden N(soort,mv,neut) \nBart N(eigen,ev,neut) \nAziatische Adj(attr,stell,verv_neut) \nGoudse Adj(attr,stell,verv_neut) \nknappe Adj(attr,stell,verv_neut) \ngeleund V(intrans,verl_dw,onverv) \nCanadezen N(soort,mv,neut) \nwinkeltje N(soort,ev,neut) \npond N(soort,ev,neut) \nRuyterkade N(eigen,ev,neut) \nVN N(eigen,ev,neut) \nW. N(eigen,ev,neut) \nWeatherby N(eigen,ev,neut) \nvakantie N(soort,ev,neut) \nparfumerie N(soort,ev,neut) \nKleuren N(soort,mv,neut) \nUw Pron(bez,2,ev,neut,attr) \nbegroeten V(trans,ott,1_of_2_of_3,mv) \nPisai N(eigen,ev,neut) \nvuist N(soort,ev,neut) \npornograaf N(soort,ev,neut) \nzwangere Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nSpeenhoff N(eigen,ev,neut) \nontevreden Adj(attr,stell,onverv) \nbeeldje N(soort,ev,neut) \nUiteraard Adv(gew,geen_func,stell,onverv) \nacteren V(intrans,inf) \nWE Pron(per,1,mv,nom) \nopgaf V(trans,ovt,1_of_2_of_3,ev) \nHun Pron(bez,3,mv,neut,attr) \nroastbeef N(soort,ev,neut) \nvergelijken V(trans,inf) \nthermosfles N(soort,ev,neut) \ndiertjes N(soort,mv,neut) \nhuwelijksleven N(soort,ev,neut) \nsnelle Adj(attr,stell,verv_neut) \nnesten N(soort,mv,neut) \nkroniek N(soort,ev,neut) \nproefschrift N(soort,ev,neut) \nmenopauze N(soort,ev,neut) \nOjik N(eigen,ev,neut) \nzicht N(soort,ev,neut) \nverwisseld V(trans,verl_dw,onverv) \nbolhamer N(soort,ev,neut) \nmeisjesachtige Adj(attr,stell,verv_neut) \nliftbel N(soort,ev,neut) \ngluiperigheid N(soort,ev,neut) \nDergelijke Pron(aanw,dat,attr) \npoot N(soort,ev,neut) \nheel-jonge Adj(attr,stell,verv_neut) \nideale Adj(attr,stell,verv_neut) \nofficials N(soort,mv,neut) \nmengden V(refl,ovt,1_of_2_of_3,mv) \nvrouwenarts N(soort,ev,neut) \nWe Pron(per,1,mv,nom) \nlast N(soort,ev,neut) \ncontent Adj(attr,stell,onverv) \ngaandeweg Adv(gew,geen_func,stell,onverv) \nvriest V(trans,ott,3,ev) \nwinterse Adj(attr,stell,verv_neut) \nfoto's N(soort,mv,neut) \nBijvoorbeeld Adv(gew,geen_func,stell,onverv) \nchagrijnig Adj(attr,stell,onverv) \nRizzio N(eigen,ev,neut) \nWie Pron(betr,neut,zelfst) Pron(vrag,neut,attr)\ninkonsekwent Adj(attr,stell,onverv) \ntoe Prep(comb) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv)\nWij Pron(per,1,mv,nom) \ntof Adj(attr,stell,onverv) \ntwintigste Num(rang,bep,attr,onverv) \nopgevroren V(intrans,verl_dw,onverv) \nsuggesties N(soort,mv,neut) \nWil V(hulp,ott,3,ev) N(eigen,ev,neut) V(intrans,ott,3,ev) V(hulp,ott,2,ev)\nWim N(eigen,ev,neut) \nbegaafdheden N(soort,mv,neut) \nAfwezig Adj(adv,stell,onverv) \nvanzelf Adv(gew,geen_func,stell,onverv) \nton N(soort,ev,neut) \ntop N(soort,ev,neut) \ngitaren N(soort,mv,neut) \ndochter N(soort,ev,neut) \nonaangenaam Adj(attr,stell,onverv) \nkent V(trans,ott,3,ev) V(trans,ott,2,ev)\nexclusieve Adj(attr,stell,verv_neut) \ntot Prep(voor) Conj(onder,met_fin) Adv(deel_v)\nVolvo N(soort,ev,neut) \nBrengt V(trans,ott,3,ev) \nFord N(eigen,ev,neut) \nbevrijdende V(intrans,teg_dw,verv_neut) \nKeizer N(eigen,ev,neut) \ngeweten V(trans,verl_dw,onverv) \nlangzame Adj(attr,stell,verv_neut) \nuitgebleekt V(intrans,verl_dw,onverv) \ndon't Misc(vreemd) \nvitaliteit N(soort,ev,neut) \nCallas N(eigen,ev,neut) \nvrolijk Adj(adv,stell,onverv) \nWelke Pron(vrag,neut,zelfst) \ngeweest V(hulp_of_kopp,verl_dw,onverv) V(intrans,verl_dw,onverv)\nherademing N(soort,ev,neut) \nlounge N(soort,ev,neut) \ngewaarborgd V(trans,verl_dw,onverv) \njonge Adj(attr,stell,verv_neut) N(eigen,ev,neut)\ndoorliep V(trans,ovt,1_of_2_of_3,ev) \nkrankzinnig Adj(attr,stell,onverv) \ndrong V(intrans,ovt,1_of_2_of_3,ev) \nSydney N(eigen,ev,neut) \nJiffy-7 N(eigen,ev,neut) \nhoogtepunt N(soort,ev,neut) \nbeklemtonen V(trans,ott,1_of_2_of_3,mv) \nopenhartig Adj(adv,stell,onverv) \nMeisjes N(soort,mv,neut) \nvertrek N(soort,ev,neut) \nbazig Adj(attr,stell,onverv) \nhoeden N(soort,mv,neut) \nvolstrekt Adj(adv,stell,onverv) \nmeesterwerk N(soort,ev,neut) \nfree-lance Adj(attr,stell,onverv) \ninwonende V(intrans,teg_dw,verv_neut) \nClos N(eigen,ev,neut) \ndaarnet Adv(gew,aanw) \nstrooie Adj(attr,stell,verv_neut) \nafgedaan V(intrans,verl_dw,onverv) \nport N(soort,ev,neut) \ngeventileerd V(trans,verl_dw,onverv) \ncarnavalskapel N(soort,ev,neut) \nL'hirondelle N(eigen,ev,neut) \nnummerbordje N(soort,ev,neut) \nmotorfederatie N(soort,ev,neut) \nwarme Adj(attr,stell,verv_neut) \ndroog Adj(attr,stell,onverv) \nZe Pron(per,3,ev_of_mv,nom) \nposten N(soort,mv,neut) V(intrans,inf)\ngewoonlijk Adj(adv,stell,onverv) \nleefgemeenschappen N(soort,mv,neut) \nGedurende Prep(voor) \naanstelling N(soort,ev,neut) \ngeruchten N(soort,mv,neut) \nafgelopen V(intrans,verl_dw,onverv) \npose N(soort,ev,neut) \ndroom N(soort,ev,neut) V(intrans,ott,1,ev)\nbarbecuehoek N(soort,ev,neut) \nFoto N(soort,ev,neut) \nvriendenkring N(soort,ev,neut) \nveertien Num(hoofd,bep,attr,onverv) \nZo Adv(gew,aanw) Conj(onder,met_fin)\nprocent N(soort,ev,neut) \ndoodslag N(soort,ev,neut) \nonblusbare Adj(attr,stell,verv_neut) \nsekse N(soort,ev,neut) \ntransvestisme N(soort,ev,neut) \nYale N(eigen,ev,neut) \nomdat Conj(onder,met_fin) \nhuwelijkse Adj(attr,stell,verv_neut) \nspannende Adj(attr,stell,verv_neut) \nkamers N(soort,mv,neut) \npost N(soort,ev,neut) \nbepaald Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) V(trans,verl_dw,onverv)\nglaasjes N(soort,mv,neut) \nvrouwenzaken N(soort,mv,neut) \nautomobilist N(soort,ev,neut) \nvierde Num(rang,bep,attr,onverv) \nkaraat N(soort,ev,neut) \nvormden V(trans,ovt,1_of_2_of_3,mv) \nIEDEREEN Pron(onbep,neut,zelfst) \nbrede Adj(attr,stell,verv_neut) \nrauwe Adj(attr,stell,verv_neut) \nregulator N(soort,ev,neut) \nroltrap N(soort,ev,neut) \nbepaalt V(trans,ott,3,ev) \nAmsterdam N(eigen,ev,neut) \nvolslanke Adj(attr,stell,verv_neut) \nmeubel N(soort,ev,neut) \nleerling-verpleegster N(soort,ev,neut) \nomgang N(soort,ev,neut) \nplukte V(trans,ovt,1_of_2_of_3,ev) \nonmogelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nkerk N(soort,ev,neut) \nkern N(soort,ev,neut) \nbergmassief N(soort,ev,neut) \nbreed Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nGrimaldi N(eigen,ev,neut) \nikonen N(soort,mv,neut) \nkennelijk Adj(adv,stell,onverv) \neenieder Pron(onbep,neut,zelfst) \nstrookt V(intrans,ott,3,ev) \noceaan N(soort,ev,neut) \npaar N(soort,ev,neut) \nrazendsnel Adj(attr,stell,onverv) \ndoorgebracht V(trans,verl_dw,onverv) \nInderdaad Adv(gew,geen_func,stell,onverv) \nWelnu Int \nanti Prep(voor) \nOorspronkelijk Adj(adv,stell,onverv) \nzwembassin N(soort,ev,neut) \nMarceline N(eigen,ev,neut) \nbewuste Adj(attr,stell,verv_neut) \naftakeling N(soort,ev,neut) \nmooie Adj(attr,stell,verv_neut) \ncopulerend V(intrans,teg_dw,onverv) \nfactor N(soort,ev,neut) \nveelal Adv(gew,geen_func,stell,onverv) \npour Misc(vreemd) \nveroorzaken V(trans,inf) \nvoorraad N(soort,ev,neut) \nvergist V(refl,imp) V(refl,verl_dw,onverv) V(refl,ott,3,ev)\npogingen N(soort,mv,neut) \nkleinbedrijf N(soort,ev,neut) \nmoois Adj(zelfst,stell,verv_gen) \nboenen V(trans,inf) \nUitvoerig Adj(adv,stell,onverv) \nmogelijkheden N(soort,mv,neut) \nwerkers N(soort,mv,neut) \nvragen V(trans,inf) V(intrans,inf) N(soort,mv,neut)\ningenieur N(soort,ev,neut) \nrekent V(trans,ott,3,ev) \nvoren Adv(gew,geen_func,stell,onverv) \nverdragen V(trans,inf) N(soort,mv,neut)\nbeloften N(soort,mv,neut) \nuitkomen V(trans,inf) \nAangezien Conj(onder,met_fin) \nbegrepen V(trans,verl_dw,onverv) \nwerkten V(intrans,ovt,1_of_2_of_3,mv) \nmeeste Num(hoofd,onbep,attr,overtr,verv_neut) \nfrancs N(soort,mv,neut) \nbijna Adv(gew,geen_func,stell,onverv) \nkoffers N(soort,mv,neut) \nnarcist N(soort,ev,neut) \nschadelijk Adj(attr,stell,onverv) \nsnelst Adj(adv,vergr,onverv) \nvergulde V(trans,verl_dw,verv_neut) \nidioot Adj(attr,stell,onverv) \nmorgen Adv(gew,geen_func,stell,onverv) N(soort,ev,neut)\nNCRV N(eigen,ev,neut) \nbesprak V(trans,ovt,1_of_2_of_3,ev) \nstroomt V(intrans,ott,3,ev) \nhoedje N(soort,ev,neut) \nwestern Misc(vreemd) \naansprakelijk Adj(attr,stell,onverv) \ndouche N(soort,ev,neut) \nritme N(soort,ev,neut) \nalleen Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv)\nhechtdraden N(soort,mv,neut) \nbeurtelings Adj(adv,stell,onverv) \npikante Adj(attr,stell,verv_neut) \ngegrillde V(trans,verl_dw,verv_neut) \noerwoud N(soort,ev,neut) \nomslaan V(intrans,inf) \ngeestdriftig Adj(adv,stell,onverv) \nbeschikt V(intrans,ott,3,ev) \nonwelzijn N(soort,ev,neut) \nnieuwe Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nlopende V(intrans,teg_dw,verv_neut) \nstuderend V(intrans,teg_dw,onverv) \nkeus N(soort,ev,neut) \nafschuw N(soort,ev,neut) \nClub N(soort,ev,neut) \nnieuws N(soort,ev,neut) Adj(attr,stell,verv_gen)\nondergang N(soort,ev,neut) \nvliegtuigen N(soort,mv,neut) \nvoeten N(soort,mv,neut) \nbeker N(soort,ev,neut) \nherhaalde V(trans,ovt,1_of_2_of_3,ev) \nhotels N(soort,mv,neut) \nLimmel N(eigen,ev,neut) \nkleinvee N(soort,ev,neut) \nNewyorkse Adj(attr,stell,verv_neut) \nWien Misc(vreemd) \nomarming N(soort,ev,neut) \nzoveel-duizend Num(hoofd,bep,zelfst,onverv) \nBuffalo N(eigen,ev,neut) \ngelegen V(intrans,verl_dw,onverv) \nBoyfriend N(eigen,ev,neut) \nverkregen V(trans,verl_dw,onverv) \nvertoonden V(trans,ovt,1_of_2_of_3,mv) \nmiddeleeuwse Adj(attr,stell,verv_neut) \nbedreigen V(trans,ott,1_of_2_of_3,mv) \nkoste N(soort,ev,dat) \nkaarten N(soort,mv,neut) \nbenaderd V(trans,verl_dw,onverv) \nbrein N(soort,ev,neut) \nbeklom V(trans,ovt,1_of_2_of_3,ev) \nalgemeen N(soort,ev,neut) \nprostitutie N(soort,ev,neut) \ngoedkopere Adj(attr,vergr,verv_neut) \nLehzen N(eigen,ev,neut) \nComedie N(eigen,ev,neut) \nbungalowachtige Adj(attr,stell,verv_neut) \nfacetten N(soort,mv,neut) \nbeleving N(soort,ev,neut) \nkwestie N(soort,ev,neut) \nwerkloos Adj(attr,stell,onverv) \nvloed N(soort,ev,neut) \nportemonnaie N(soort,ev,neut) \nvorig Adj(attr,stell,onverv) \nvliegtocht N(soort,ev,neut) \naf Adv(deel_v) Prep(comb) Adv(deel_adv) Adv(gew,geen_func,stell,onverv)\ndametjes N(soort,mv,neut) \nbijrolletje N(soort,ev,neut) \nal Adv(gew,geen_func,stell,onverv) Pron(onbep,neut,attr) Conj(onder,met_fin)\nbreedste Adj(attr,overtr,verv_neut) \nuurtje N(soort,ev,neut) \nvloer N(soort,ev,neut) \ntoch Adv(gew,geen_func,stell,onverv) \ntevergeefs Adj(attr,stell,onverv) \nverlegd V(trans,verl_dw,onverv) \nas N(soort,ev,neut) \nat V(trans,ovt,1_of_2_of_3,ev) \nhonderden Num(hoofd,bep,attr,onverv) \naardiger Adj(attr,vergr,onverv) \ngetallen N(soort,mv,neut) \ngriekse Adj(attr,stell,verv_neut) \nallermoeilijkste Adj(attr,overtr,verv_neut) \nKomkommerkasteeltje N(eigen,ev,neut) \nsoloplaten N(soort,mv,neut) \nNooit Adv(gew,onbep) \npassend V(intrans,teg_dw,onverv) \nverknald V(trans,verl_dw,onverv) \nbossen N(soort,mv,neut) \nbedrijfsleven N(soort,ev,neut) \nvroegen V(trans,ovt,1_of_2_of_3,mv) \nhemel N(soort,ev,neut) \nborstelen V(intrans,inf) \nbaseren V(trans,inf) \nHermien N(eigen,ev,neut) \nvroeger Adj(adv,vergr,onverv) Adj(attr,vergr,onverv)\nbevestigend V(intrans,teg_dw,onverv) \nopgevangen V(trans,verl_dw,onverv) \nvermindering N(soort,ev,neut) \nkende V(trans,ovt,1_of_2_of_3,ev) \nextract N(soort,ev,neut) \nZeventig Num(hoofd,bep,attr,onverv) \nzomerbloemen N(soort,mv,neut) \nzulk Pron(aanw,neut,attr) \nvijfhonderd Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\naanstond V(intrans,ovt,1_of_2_of_3,ev) \nGiuliano N(eigen,ev,neut) \ncomplexen N(soort,mv,neut) \ngestold V(intrans,verl_dw,onverv) \nZodra Conj(onder,met_fin) \nmooiste Adj(attr,overtr,verv_neut) \nVVD'er N(soort,ev,neut) \nParijs N(eigen,ev,neut) \nfunktie N(soort,ev,neut) \nvisites N(soort,mv,neut) \nprominentenprocessie N(soort,ev,neut) \nTwintig Num(hoofd,bep,attr,onverv) \ntouringcar N(soort,ev,neut) \nmejuffrouw N(soort,ev,neut) \nverafschuwden V(trans,ovt,1_of_2_of_3,mv) \nwaterstraal N(soort,ev,neut) \nfebruari N(eigen,ev,neut) \nrechtsbijstand N(soort,ev,neut) \ntelevisie-uitzending N(soort,ev,neut) \nbankschroeven N(soort,mv,neut) \ncm N(soort,ev,neut) \nGeschikt Adj(attr,stell,onverv) \nongehoorzaamheid N(soort,ev,neut) \ndat-ie Conj(onder,met_fin) \nzelfvertrouwen N(soort,ev,neut) \nduisternis N(soort,ev,neut) \narmbanden N(soort,mv,neut) \nontzaglijk Adj(adv,stell,onverv) \nvoetbalwedstrijd N(soort,ev,neut) \ntoen Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv) Adv(gew,aanw)\nonaangename Adj(attr,stell,verv_neut) \ngehad V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nbrandweerman N(soort,ev,neut) \nwissel N(soort,ev,neut) \nhuurbescherming N(soort,ev,neut) \nredeneren V(trans,ott,1_of_2_of_3,mv) \nkarate-demonstratie N(soort,ev,neut) \nintriges N(soort,mv,neut) \nKesteren N(eigen,ev,neut) \nplanning N(soort,ev,neut) \nfluisterend V(intrans,teg_dw,onverv) \nzeventien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nillegale Adj(attr,stell,verv_neut) \nfilmen V(trans,inf) \ninspecteert V(trans,ott,3,ev) \nde Art(bep,zijd_of_mv,neut) V(intrans,inf) N(eigen,ev,neut) N(soort,ev,neut)\nbijv. Adv(gew,geen_func,stell,onverv) \ndi N(eigen,ev,neut) \nrococo N(soort,ev,neut) \nBruessing N(eigen,ev,neut) \nopgeruimd V(trans,verl_dw,onverv) \nkleurenprogramma's N(soort,mv,neut) \nplatina N(soort,ev,neut) \nspanningen N(soort,mv,neut) \nafweet V(intrans,ott,3,ev) \nNazare N(eigen,ev,neut) \nschortje N(soort,ev,neut) \ndu N(eigen,ev,neut) Misc(vreemd)\nconstateert V(trans,ott,3,ev) \nKogelenbergh N(eigen,ev,neut) \nnarrig Adj(attr,stell,onverv) \nWijn N(eigen,ev,neut) N(soort,ev,neut)\nwonderen N(soort,mv,neut) \nener Art(onbep,zijd,gen) \nhoofdrol N(soort,ev,neut) \nhyperradio N(soort,ev,neut) \njubileum N(soort,ev,neut) \nmargarinefabriek N(soort,ev,neut) \nschillen V(trans,inf) \nNerich N(eigen,ev,neut) \nprettig Adj(attr,stell,onverv) \nwortelkluit N(soort,ev,neut) \ngedoofd V(trans,verl_dw,onverv) \nuitwerken V(trans,ott,1_of_2_of_3,mv) V(trans,inf,subst)\naanvaard V(trans,verl_dw,onverv) \nei N(soort,ev,neut) \nduizenden Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\ninteelt N(soort,ev,neut) \nen Conj(neven) N(eigen,ev,neut) Num(hoofd,bep,attr,onverv) Misc(vreemd)\nJohn N(eigen,ev,neut) \nvormt V(trans,ott,3,ev) V(refl,ott,3,ev)\ngrenslandbewoner N(soort,ev,neut) \nvluchtig Adj(attr,stell,onverv) \nsafaribus N(soort,ev,neut) \ndoorgronden V(trans,inf) \ner Adv(gew,er) Adv(pron,er)\nes Adv(gew,geen_func,stell,onverv) \nmoord N(soort,ev,neut) \nmeenden V(trans,ovt,1_of_2_of_3,mv) \nfabrikanten N(soort,mv,neut) \nploegend V(intrans,teg_dw,onverv) \nliederen N(soort,mv,neut) \naugustus N(eigen,ev,neut) \n50.000 Num(hoofd,bep,attr,onverv) \nopkijken V(intrans,inf) \nargumentatie N(soort,ev,neut) \nverschrompelt V(intrans,ott,3,ev) \nhechtenis N(soort,ev,neut) \npakt V(trans,ott,3,ev) \nchignon N(soort,ev,neut) \nSebastian N(eigen,ev,neut) \nspoorverbinding N(soort,ev,neut) \nGarbo N(eigen,ev,neut) \ngezeurd V(intrans,verl_dw,onverv) \nherbergen V(trans,ott,1_of_2_of_3,mv) \nItaliaan N(soort,ev,neut) \nonsterfelijkheid N(soort,ev,neut) \nGeorges N(eigen,ev,neut) \nblikschaar N(soort,ev,neut) \nabonnees N(soort,mv,neut) \nstewardess N(soort,ev,neut) \ntypisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\naanwezigheid N(soort,ev,neut) \nga V(intrans,ott,1,ev) V(hulp,ott,1,ev) V(hulp,imp) V(intrans,imp) V(hulp,ott,2,ev)\nzonsondergang N(soort,ev,neut) \nBaule N(eigen,ev,neut) \ndikwijls Adv(gew,geen_func,stell,onverv) \npartnerruil N(soort,ev,neut) \nrechthoekige Adj(attr,stell,verv_neut) \nlaten V(hulp,inf) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv)\nhandelt V(intrans,ott,3,ev) \nnaakt Adj(attr,stell,onverv) N(soort,ev,neut)\nlater Adj(adv,vergr,onverv) \nshock N(soort,ev,neut) \nDibs N(eigen,ev,neut) \nrealiseert V(trans,ott,3,ev) \nbalde V(trans,ovt,1_of_2_of_3,ev) \nkervel N(soort,ev,neut) \ndichtbevolkte Adj(attr,stell,verv_neut) \nhoofden N(soort,mv,neut) \nrestaurant N(soort,ev,neut) \nRoute N(soort,ev,neut) \nreuma N(soort,ev,neut) \nlichte Adj(attr,stell,verv_neut) \nhe Int \nKersten N(eigen,ev,neut) \ntrappen N(soort,mv,neut) V(intrans,inf)\nregentijd N(soort,ev,neut) \noverwogen V(trans,inf) \nvierkant Adj(attr,stell,onverv) \nbeeindigen V(trans,inf) \nflo N(soort,ev,neut) \nroute-kaart N(soort,ev,neut) \nenig Pron(onbep,neut,attr) Adj(attr,stell,onverv)\nmake-up-artikelen N(soort,mv,neut) \nbeantwoord V(trans,verl_dw,onverv) \nSlick N(eigen,ev,neut) \nv.w.o. N(soort,ev,neut) \nstofzuigen V(intrans,inf,subst) \nzonnebad N(soort,ev,neut) \npand N(soort,ev,neut) \nduivel N(soort,ev,neut) \nAshenbach N(eigen,ev,neut) \nslacht N(soort,ev,neut) \nkommetje N(soort,ev,neut) \nkunstmatig Adj(adv,stell,onverv) \nTerminus N(eigen,ev,neut) \nWilde N(eigen,ev,neut) V(hulp,ovt,1_of_2_of_3,ev)\nprestatiemoraal N(soort,ev,neut) \nkleurentelevisie N(soort,ev,neut) \nschuurpapier N(soort,ev,neut) \nopentrekken V(trans,inf,subst) \nie Pron(per,3,ev,nom) \ningreep N(soort,ev,neut) \ndeksel N(soort,ev,neut) \nii N(eigen,ev,neut) \nik Pron(per,1,ev,nom) \nim Misc(vreemd) \nin Prep(voor) Adv(deel_v) Prep(comb) Adv(deel_adv) N(eigen,ev,neut) Adv(gew,geen_func,stell,onverv)\nroodbruine Adj(attr,stell,verv_neut) \nberoep N(soort,ev,neut) \nredelijk Adj(attr,stell,onverv) \nis V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\nit Misc(vreemd) \ntrouwdag N(soort,ev,neut) \nPaulus N(eigen,ev,neut) \niv Num(hoofd,bep,zelfst,onverv) \nhandeling N(soort,ev,neut) \nbaanvak N(soort,ev,neut) \nTeatro N(eigen,ev,neut) \ngeplant V(trans,verl_dw,onverv) \nja Int \nKiupel N(eigen,ev,neut) \nnegenentachtig Num(hoofd,bep,attr,onverv) \nMarkovic N(eigen,ev,neut) \nje 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)\nreceptie-ervaringen N(soort,mv,neut) \nZuid-Limburg N(eigen,ev,neut) \nversterk V(trans,ott,2,ev) \nNoord N(eigen,ev,neut) \nMrs. N(eigen,ev,neut) \ntrotse Adj(attr,stell,verv_neut) \ntolk N(soort,ev,neut) \nVrijwording N(soort,ev,neut) \nmeisje N(soort,ev,neut) \npapa N(soort,ev,neut) \nluider Adj(adv,vergr,onverv) \nlevensechter Adj(attr,vergr,onverv) \nblokkeren V(trans,inf) \nOpheusden N(eigen,ev,neut) \nstevige Adj(attr,stell,verv_neut) \novertuiging N(soort,ev,neut) \nverkondigt V(trans,ott,3,ev) \nRijndelta N(soort,ev,neut) \nopgepepte V(trans,verl_dw,verv_neut) \nsextant N(eigen,ev,neut) \nHermine N(eigen,ev,neut) \nonderbroken V(trans,verl_dw,onverv) \nmuseum N(soort,ev,neut) \nverlept V(intrans,verl_dw,onverv) \nstadswijk N(soort,ev,neut) \nnoemende V(refl,teg_dw,verv_neut) \nWeyden N(eigen,ev,neut) \nJong N(eigen,ev,neut) \nleerschool N(soort,ev,neut) \nblanke Adj(attr,stell,verv_neut) \nethisch Adj(adv,stell,onverv) \nkilogram N(soort,ev,neut) \ngestaan V(intrans,verl_dw,onverv) \nkm N(soort,ev,neut) \n1000 Num(hoofd,bep,attr,onverv) \nargumenten N(soort,mv,neut) \nfor N(eigen,ev,neut) \nBrigitte N(eigen,ev,neut) \nongetrouwd Adj(attr,stell,onverv) \nm2 N(soort,ev,neut) \nzuur N(soort,ev,neut) Adj(attr,stell,onverv)\nStieler N(eigen,ev,neut) \nspelend V(intrans,teg_dw,onverv) \nDoortje N(eigen,ev,neut) \nannuleren V(trans,inf) \nbeloofd V(trans,verl_dw,onverv) \naanduiding N(soort,ev,neut) \nElysee-Montmartre N(eigen,ev,neut) \nniet Adv(gew,geen_func,stell,onverv) \nvilla N(soort,ev,neut) \ninteressante Adj(attr,stell,verv_neut) \nle Misc(vreemd) \nstallen N(soort,mv,neut) \nonverdeeld Adj(attr,stell,onverv) \nlijken V(intrans,inf) \nbeheerde V(trans,verl_dw,verv_neut) \ndesniettemin Adv(gew,geen_func,stell,onverv) \ntong N(soort,ev,neut) \nFocke N(eigen,ev,neut) \nkarper N(soort,ev,neut) \nL.P. N(soort,ev,neut) \nhoofdje N(soort,ev,neut) \nMichels N(eigen,ev,neut) \ndrang N(soort,ev,neut) \norganisatieschema N(soort,ev,neut) \nzeventiende Num(rang,bep,attr,onverv) \nRoger N(eigen,ev,neut) \ndrank N(soort,ev,neut) \noostelijke Adj(attr,stell,verv_neut) \nbezet V(trans,verl_dw,onverv) \nonafzienbare Adj(attr,stell,verv_neut) \nfatsoen N(soort,ev,neut) \nDover N(eigen,ev,neut) \npark N(soort,ev,neut) \nvaklui N(soort,mv,neut) \nma N(soort,ev,neut) \nwijzigingen N(soort,mv,neut) \nme Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev)\npart N(soort,ev,neut) \npolitieradio's N(soort,mv,neut) \nmm N(soort,ev,neut) \nberichten N(soort,mv,neut) \npertinent Adj(adv,stell,onverv) \ngenodigden V(trans,verl_dw,verv_mv) \nkoene Adj(attr,stell,verv_neut) \ntoon N(soort,ev,neut) \nstonden V(intrans,ovt,1_of_2_of_3,mv) \ntrouwden V(intrans,ovt,1_of_2_of_3,mv) \nraampje N(soort,ev,neut) \nklanten N(soort,mv,neut) \nbladzijde N(soort,ev,neut) \naansmeert V(trans,ott,3,ev) \nna Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv)\nhangt V(intrans,ott,3,ev) \nGeuzelambiek N(soort,ev,neut) \ndrie Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nlandjonker N(soort,ev,neut) \npast V(intrans,ott,3,ev) \nmaatschappijkritiek N(soort,ev,neut) \ndegene Pron(aanw,neut,zelfst) \nmerkwaardigste Adj(zelfst,overtr,verv_neut) \ndochters N(soort,mv,neut) \npatient N(soort,ev,neut) \nBrinkers N(eigen,ev,neut) \n40ste Num(rang,bep,attr,onverv) \nnu Adv(gew,aanw) Adv(gew,geen_func,stell,onverv) Conj(onder,met_fin)\nzwetende V(intrans,teg_dw,verv_neut) \nmixer N(soort,ev,neut) \ncarriere N(soort,ev,neut) \nmakeup N(soort,ev,neut) \nturfmolm N(soort,ev,neut) \nonvoorbereid Adj(attr,stell,onverv) \nbezoeken V(trans,inf) V(trans,inf,subst)\ningewikkeldheid N(soort,ev,neut) \nof Conj(neven) Conj(onder,met_fin) N(eigen,ev,neut) Misc(vreemd)\npats Int \noh Int \nshooter N(eigen,ev,neut) \nuitingen N(soort,mv,neut) \naardappels N(soort,mv,neut) \nom Conj(onder,met_inf) Prep(voor) Adv(deel_adv) Prep(comb) Adv(deel_v)\nbijbehorend V(intrans,teg_dw,onverv) \nopgelopen V(trans,verl_dw,onverv) \nop Prep(voor) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) N(eigen,ev,neut) Prep(achter) Adv(deel_v)\nvolmaakte Adj(attr,stell,verv_neut) \ntwijfels N(soort,mv,neut) \nnaast Prep(voor) Adv(deel_adv)\ngedoopt V(trans,verl_dw,onverv) \neruit Adv(pron,onbep) \nwerkt V(intrans,ott,3,ev) \ngunt V(trans,ott,2,ev) \nieder Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nVerdaasdonk N(eigen,ev,neut) \nburgemeestersketen N(soort,ev,neut) \novergaat V(intrans,ott,3,ev) \ndansend V(intrans,teg_dw,onverv) \nvoorstadje N(soort,ev,neut) \nMarechal Misc(vreemd) \nstuurkolom N(soort,ev,neut) \nIna N(eigen,ev,neut) \nstinkt V(intrans,ott,3,ev) \nGegeneerd V(trans,verl_dw,onverv) \nHoogheid N(soort,ev,neut) \nsexblad N(soort,ev,neut) \nbewindsman N(soort,ev,neut) \nOkay Int \nPopmuziek N(eigen,ev,neut) \nTellenbach N(eigen,ev,neut) \nonverklaarbare Adj(attr,stell,verv_neut) \nvertoond V(trans,verl_dw,onverv) \ngeslachtsverkeer N(soort,ev,neut) \nvleesgeworden Adj(attr,stell,onverv) \nZwitserland N(eigen,ev,neut) \nspelers N(soort,mv,neut) \nverwijdt V(trans,ott,3,ev) \norgasme N(soort,ev,neut) \narrangementen N(soort,mv,neut) \nverveelde V(refl,ovt,1_of_2_of_3,ev) \npaus N(soort,ev,neut) \nernstig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nbijkomstigheden N(soort,mv,neut) \nInn N(eigen,ev,neut) \nvuurrood Adj(attr,stell,onverv) \nKerkwijk N(eigen,ev,neut) \nwerkgevers N(soort,mv,neut) \ngejuich N(soort,ev,neut) \nRafaels N(eigen,ev,gen) \nbezig Adj(attr,stell,onverv) \nvertoont V(trans,ott,3,ev) \ncensuur N(soort,ev,neut) \ngereisd V(intrans,verl_dw,onverv) \nvlaag N(soort,ev,neut) \nwortelen N(soort,mv,neut) \nuitgeput V(trans,verl_dw,onverv) \nMeiden N(eigen,ev,neut) \nbezit N(soort,ev,neut) V(trans,ott,1,ev) V(trans,ott,3,ev)\nmisdrijven N(soort,mv,neut) \nvoegden V(refl,ovt,1_of_2_of_3,mv) \ndoelbewust Adj(adv,stell,onverv) \nBuurser Adj(attr,stell,onverv) \nkarakter N(soort,ev,neut) \nprominenten N(soort,mv,neut) \nAfrika N(eigen,ev,neut) \nhamvraag N(soort,ev,neut) \nbeklemde V(trans,verl_dw,verv_neut) \nvernietigingstuig N(soort,ev,neut) \ntoegeven V(intrans,ott,1_of_2_of_3,mv) \nschaamde V(refl,ovt,1_of_2_of_3,ev) \nfun N(eigen,ev,neut) \ndreven V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\ndatzelfde Pron(aanw,neut,attr) \nWilly N(eigen,ev,neut) \npubliekelijk Adv(gew,geen_func,stell,onverv) \ncrimineel Adj(attr,stell,onverv) \ninfectie N(soort,ev,neut) \nhuwelijksboetiek N(soort,ev,neut) \nweet-jenog N(soort,ev,neut) \nniks Pron(onbep,neut,zelfst) \nkoers N(soort,ev,neut) \ngraniet N(soort,ev,neut) \nezels N(soort,mv,neut) \nKAAS N(soort,ev,neut) \nleeft V(intrans,ott,3,ev) V(refl,ott,3,ev)\nschande N(soort,ev,neut) \nfinancieel Adj(adv,stell,onverv) \ntoepassingen N(soort,mv,neut) \nontwikkelingshulp N(soort,ev,neut) \ninvoering N(soort,ev,neut) \nvezels N(soort,mv,neut) \nimpuls N(soort,ev,neut) \nvleeskleurige Adj(attr,stell,verv_neut) \nwinterhard Adj(attr,stell,onverv) \nimposante Adj(attr,stell,verv_neut) \ndeinzen V(intrans,ott,1_of_2_of_3,mv) \nadvertentie N(soort,ev,neut) \nuitgebuit V(trans,verl_dw,onverv) \nkweekkarper N(soort,ev,neut) \nL'Oreal N(eigen,ev,neut) \ndromen V(intrans,inf) N(soort,mv,neut)\nJouw Pron(bez,2,ev,neut,attr) \nmassale Adj(attr,stell,verv_neut) \nschuimig Adj(attr,stell,onverv) \ntypeert V(trans,ott,3,ev) \nSchiphol N(eigen,ev,neut) \nski-ongelukken N(soort,mv,neut) \nPaquet-lijn N(soort,ev,neut) \nverlegenheid N(soort,ev,neut) \nInteressant Adj(attr,stell,onverv) \nverhinderden V(trans,ovt,1_of_2_of_3,mv) \nCharlotte N(eigen,ev,neut) \nverouderde V(intrans,verl_dw,verv_neut) \nkoest Adj(attr,stell,onverv) \ntaak N(soort,ev,neut) \netherische Adj(attr,stell,verv_neut) \ntaal N(soort,ev,neut) \nuit Prep(voor) Prep(achter) Prep(comb) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv)\ntoezicht N(soort,ev,neut) \nOkee Int \nbijzonderheden N(soort,mv,neut) \nDine N(eigen,ev,neut) \nbetaling N(soort,ev,neut) \nlekker-losjes Adv(gew,geen_func,stell,onverv) \ngetwist V(intrans,verl_dw,onverv) \nu. N(soort,ev,neut) \nJaca N(eigen,ev,neut) \nrechtdoor Adv(gew,geen_func,stell,onverv) \nRekels N(eigen,mv,neut) \ngrappen N(soort,mv,neut) \nTrotter N(eigen,ev,neut) \nuitstek N(soort,ev,neut) \nuitstel N(soort,ev,neut) \nrimpels N(soort,mv,neut) \nJack N(eigen,ev,neut) \nVergelijking N(soort,ev,neut) \naantijgingen N(soort,mv,neut) \nbelemmering N(soort,ev,neut) \nregel N(soort,ev,neut) \nbekendheid N(soort,ev,neut) \nhuurhuis N(soort,ev,neut) \nregen N(soort,ev,neut) \nKortekaas N(eigen,ev,neut) \ntouw N(soort,ev,neut) \nSmets N(eigen,ev,neut) \nfoodstamps N(soort,mv,neut) \nietwat Pron(onbep,neut,zelfst) Pron(onbep,neut,attr)\nzelfstandig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ngeboeid V(trans,verl_dw,onverv) \nmooiere Adj(attr,vergr,verv_neut) \nopsommen V(trans,inf) \nte Prep(voor_inf) Prep(voor) Adv(gew,geen_func,stell,onverv)\ndiamant N(soort,ev,neut) \narbeidsuren N(soort,mv,neut) \nHilversum N(eigen,ev,neut) \nverouderen V(intrans,inf) \nopgesmukte V(trans,verl_dw,verv_neut) \nColignystraat N(eigen,ev,neut) \nhuppelt V(intrans,ott,3,ev) \nberoepsarbeid N(soort,ev,neut) \nsteeltje N(soort,ev,neut) \nverontrust V(trans,verl_dw,onverv) \nto Misc(vreemd) \ndansten V(intrans,ovt,1_of_2_of_3,mv) \ntv N(soort,ev,neut) \nVorwarts N(eigen,ev,neut) \nDios N(eigen,ev,neut) \nzaten V(intrans,ovt,1_of_2_of_3,mv) \nscene N(soort,ev,neut) \nuiting N(soort,ev,neut) \nlangharige Adj(attr,stell,verv_neut) \nmaken 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)\nzangvereniging N(soort,ev,neut) \nvanaf Adv(deel_adv) Prep(voor)\noorhangers N(soort,mv,neut) \nui N(soort,ev,neut) \nmiddengolf N(soort,ev,neut) \nzakken N(soort,mv,neut) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nbezigheden N(soort,mv,neut) \nkoksvirtuositeit N(soort,ev,neut) \nconsultatiebureau N(soort,ev,neut) \nPaume N(eigen,ev,neut) \nlitteken N(soort,ev,neut) \nstrijd N(soort,ev,neut) \ntekenaar N(soort,ev,neut) \nprodukten N(soort,mv,neut) \nuw Pron(bez,2,ev,neut,attr) \nwitgoud N(soort,ev,neut) \nsuite N(soort,ev,neut) \nstrijk V(trans,imp) \nkoperen Adj(attr,stell,onverv) \nforceren V(trans,inf) \npeinture Misc(vreemd) \n... Punc(hellip) \nsokjes N(soort,mv,neut) \nvoorzitster N(soort,ev,neut) \ngroots Adj(attr,stell,onverv) \ntrainer N(soort,ev,neut) \nonuitputtelijk Adj(attr,stell,onverv) \nMorgen Adv(gew,geen_func,stell,onverv) \ningegoten V(trans,verl_dw,onverv) \nkostten V(trans,ovt,1_of_2_of_3,mv) \nelders Adv(gew,onbep) \ndrs. N(eigen,ev,neut) \ngeboekt V(trans,verl_dw,onverv) \npalet N(soort,ev,neut) \nZorgelijk Adj(adv,stell,onverv) \naaneenvlocht V(trans,ovt,1_of_2_of_3,ev) \nAlleen Adv(gew,geen_func,stell,onverv) \nTholen N(eigen,ev,neut) \ngastvrouw-van-formaat N(soort,ev,neut) \nremmen N(soort,mv,neut) \nkindertjes N(soort,mv,neut) \nmenukaart N(soort,ev,neut) \nvalide Adj(attr,stell,onverv) \nZillertal N(eigen,ev,neut) \nwe Pron(per,1,mv,nom) \nNieuwe Adj(attr,stell,verv_neut) N(eigen,ev,neut)\nkeuken N(soort,ev,neut) \npaarden N(soort,mv,neut) \nverschijnselen N(soort,mv,neut) \nex-kamerlid N(soort,ev,neut) \nDirk N(eigen,ev,neut) \nopgedaan V(trans,verl_dw,onverv) \ngezagsverhoudingen N(soort,mv,neut) \nVoeten N(eigen,ev,neut) \nenz. Adv(gew,geen_func,stell,onverv) \nItalie N(eigen,ev,neut) \nhoutskool N(soort,ev,neut) \nonderbuik N(soort,ev,neut) \nettelijke Pron(onbep,neut,attr) \ngoeien Adj(attr,stell,verv_neut) \nworteltjes N(soort,mv,neut) \nscheiding N(soort,ev,neut) \nkoortsachtige Adj(attr,stell,verv_neut) \nsamen Adv(gew,geen_func,stell,onverv) \nregio N(soort,ev,neut) \ntypiste N(soort,ev,neut) \nestablishment N(soort,ev,neut) \nmisschien Adv(gew,geen_func,stell,onverv) \ngestudeerd V(intrans,verl_dw,onverv) \ngeinspireerde V(trans,verl_dw,verv_neut) \nintimiteit N(soort,ev,neut) \nguitaar N(soort,ev,neut) \nsiervogels N(soort,mv,neut) \nbenedendek N(soort,ev,neut) \ngeschat V(trans,verl_dw,onverv) \npissen V(intrans,inf) \nChaplin-imitatie N(soort,ev,neut) \nmoordenaar N(soort,ev,neut) \nroomskatholiek Adj(attr,stell,onverv) \nIjtunnel N(eigen,ev,neut) \natoomduikboten N(soort,mv,neut) \naankleden V(refl,inf) \nbeschikbare Adj(attr,stell,verv_neut) \npakhuis N(soort,ev,neut) \noverladen V(trans,verl_dw,onverv) \npanters N(soort,mv,neut) \ngekleed V(trans,verl_dw,onverv) \nopwekken V(trans,ott,1_of_2_of_3,mv) \nefficient Adj(adv,stell,onverv) \ntreurig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\npin-upgirls N(soort,mv,neut) \nandermaal Adv(gew,geen_func,stell,onverv) \nverkouden Adj(attr,stell,onverv) \nherleidt V(trans,ott,3,ev) \nverlichte V(trans,verl_dw,verv_neut) \nverschrikkelijke Adj(attr,stell,verv_neut) \nZ'n Pron(bez,3,ev,neut,attr) \nonderdrukken V(trans,inf) \nhuiselijke Adj(attr,stell,verv_neut) \ngeldboete N(soort,ev,neut) \nlichamelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nPvdA N(eigen,ev,neut) \nfinanciele Adj(attr,stell,verv_neut) \nabortus N(soort,ev,neut) \nPlatanov N(eigen,ev,neut) \ndoperwtjes N(soort,mv,neut) \nverschrikkelijks Adj(attr,stell,verv_gen) \ngeschiedenis N(soort,ev,neut) \nbuien N(soort,mv,neut) \nbehangen V(trans,inf,subst) \nlanceren V(trans,inf,subst) \nomgespoelde V(trans,verl_dw,verv_neut) \nvervelends V(intrans,teg_dw,verv_gen) \nproduktie N(soort,ev,neut) \nNoel N(eigen,ev,neut) \nlichtgolven N(soort,mv,neut) \ncommissaris N(soort,ev,neut) \nopruiend V(intrans,teg_dw,onverv) \nstollen V(intrans,inf) \nhumeur N(soort,ev,neut) \ntonijn N(soort,ev,neut) \nBingen N(eigen,ev,neut) \nalsmede Conj(neven) \ncrisisjaren N(soort,mv,neut) \nTuna N(eigen,ev,neut) \ngeloofden V(trans,ovt,1_of_2_of_3,mv) \nslaaptabletten N(soort,mv,neut) \nbibberstem N(soort,ev,neut) \nstappers N(soort,mv,neut) \nborduurde V(intrans,ovt,1_of_2_of_3,ev) \nmomenteel Adj(adv,stell,onverv) \nze Pron(per,3,ev_of_mv,nom) Pron(per,3,ev_of_mv,dat_of_acc)\nstadscentrum N(soort,ev,neut) \ndrug N(soort,ev,neut) \nmaanwagentje N(soort,ev,neut) \nAioli N(soort,ev,neut) \nwanneer Conj(onder,met_fin) Adv(gew,betr)\ndruk Adj(attr,stell,onverv) Adj(adv,stell,onverv) N(soort,ev,neut)\nsjaaltje N(soort,ev,neut) \npenibel Adj(attr,stell,onverv) \nzo Adv(gew,aanw) \nuitgesproken V(trans,verl_dw,onverv) Adj(attr,stell,onverv)\ncorrecte Adj(attr,stell,verv_neut) \ngefokte V(trans,verl_dw,verv_neut) \nsupervis N(soort,ev,neut) \ndenkend V(intrans,teg_dw,onverv) \noverhandigde V(trans,ovt,1_of_2_of_3,ev) \nFetter N(eigen,ev,neut) \ntroonopvolger N(soort,ev,neut) \nhierheden N(soort,ev,neut) \ngeweld N(soort,ev,neut) \nbeantwoordde V(trans,ovt,1_of_2_of_3,ev) \nvoetafdrukken N(soort,mv,neut) \nSusan N(eigen,ev,neut) \nVariaties N(soort,mv,neut) \nVelocipede N(soort,ev,neut) \ndirecte Adj(attr,stell,verv_neut) \npubliek N(soort,ev,neut) \nruggespraak N(soort,ev,neut) \ngesteldheid N(soort,ev,neut) \nveilig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nonderscheiden V(trans,inf) \nmanier N(soort,ev,neut) \nachterstand N(soort,ev,neut) \ntijdschriftjes N(soort,mv,neut) \ntotaal Adj(adv,stell,onverv) N(soort,ev,neut)\nSiciliens N(eigen,ev,neut) \nbeheerst V(trans,ott,3,ev) \nshows N(soort,mv,neut) \npaardje N(soort,ev,neut) \noverhandigen V(trans,ott,1_of_2_of_3,mv) \nliepen V(intrans,ovt,1_of_2_of_3,mv) \novergang N(soort,ev,neut) \nlangzamer Adj(attr,vergr,onverv) \nbeantwoorden V(trans,inf) V(trans,inf,subst)\ntrompetje N(soort,ev,neut) \n2-persoonskamer N(soort,ev,neut) \nfascineerde V(trans,ovt,1_of_2_of_3,ev) \nAmersfoort N(eigen,ev,neut) \noprijst V(intrans,ott,3,ev) \nKathie N(eigen,ev,neut) \nWanda N(eigen,ev,neut) \nkamertje N(soort,ev,neut) \ndoceren V(intrans,inf) \nintieme Adj(attr,stell,verv_neut) \nArmoede N(soort,ev,neut) \ngewend Adj(attr,stell,onverv) V(trans,verl_dw,onverv)\nbeugels N(soort,mv,neut) \ndaarnaast Adv(pron,aanw) \nKeith N(eigen,ev,neut) \ndomme Adj(attr,stell,verv_neut) \nprikkelen V(trans,inf) \nstaart V(intrans,ott,3,ev) \nverzorgingstehuis N(soort,ev,neut) \nNixon N(eigen,ev,neut) \nadoptie N(soort,ev,neut) \nvertraagd V(trans,verl_dw,onverv) \nmartelkamertjes N(soort,mv,neut) \nonderhuids Adj(adv,stell,onverv) \ntoevloed N(soort,ev,neut) \nondergrond N(soort,ev,neut) \nschrap Adj(attr,stell,onverv) \nrock-repertoire N(soort,ev,neut) \nafstammeling N(soort,ev,neut) \nverloren V(trans,verl_dw,onverv) \nProtestantse N(eigen,ev,neut) \ndramaturg N(soort,ev,neut) \ngaf V(trans,ovt,1_of_2_of_3,ev) \nverlamming N(soort,ev,neut) \nleert V(trans,ott,3,ev) V(intrans,ott,3,ev) V(hulp,ott,3,ev)\nUniversiteit N(soort,ev,neut) \nkapitalisme N(soort,ev,neut) \nwaarde N(soort,ev,neut) \nvierhonderd Num(hoofd,bep,attr,onverv) \ngal N(soort,ev,neut) \nMarijke N(eigen,ev,neut) \nprincipes N(soort,mv,neut) \nberoepsmisdadigers N(soort,mv,neut) \neffekens Adv(gew,geen_func,stell,onverv) \ngas N(soort,ev,neut) \ngat N(soort,ev,neut) \nDacht V(trans,ovt,1_of_2_of_3,ev) \nondervoeding N(soort,ev,neut) \nJane N(eigen,ev,neut) \npeuter N(soort,ev,neut) \nVughtse Adj(attr,stell,verv_neut) \ntijdsbestek N(soort,ev,neut) \nroman N(soort,ev,neut) \nbelde V(trans,ovt,1_of_2_of_3,ev) \nfinanciering N(soort,ev,neut) \nerger Adj(adv,vergr,onverv) \nweinigen Num(hoofd,onbep,zelfst,stell,verv_mv) \nuur N(soort,ev,neut) \ngrof-erotische Adj(attr,stell,verv_neut) \nbestuurster N(soort,ev,neut) \nSociale N(soort,mv,neut) N(eigen,mv,neut)\nverwijst V(trans,ott,3,ev) \nleest V(trans,ott,3,ev) V(intrans,ott,3,ev) N(soort,ev,neut) V(trans,ott,2,ev)\nkaraktertrek N(soort,ev,neut) \noverkomt V(intrans,ott,3,ev) \ncijfers N(soort,mv,neut) \nkabelexploitanten N(soort,mv,neut) \nbeverig Adj(attr,stell,onverv) \ngebruikelijke Adj(attr,stell,verv_neut) \nkritisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nhandelen V(intrans,inf,subst) \nmenhirliefhebbers N(soort,mv,neut) \naangedurfd V(trans,verl_dw,onverv) \nMachine N(eigen,ev,neut) \nbeleg N(soort,ev,neut) \ntang N(soort,ev,neut) \nijverig Adj(adv,stell,onverv) \nslecht Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nboeiend V(intrans,teg_dw,onverv) \nontluisteren V(trans,inf) \nbeslag N(soort,ev,neut) \nplaats N(soort,ev,neut) V(trans,imp)\noplossen V(trans,inf,subst) \nverkrijgen V(trans,inf) \nSuperstar N(soort,ev,neut) N(eigen,ev,neut)\ngeillustreerde V(trans,verl_dw,verv_neut) \ncontouren N(soort,mv,neut) \nversnellen V(trans,inf) \ngeklemd V(trans,verl_dw,onverv) \nnuances N(soort,mv,neut) \ndachten V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nZo'n Pron(aanw,neut,attr) \nsloeg V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nolympische Adj(attr,stell,verv_neut) \nglimmend V(intrans,teg_dw,onverv) \nLesbisch Adj(attr,stell,onverv) \nverdachtmakingen N(soort,mv,neut) \nafgevaardigden V(trans,verl_dw,verv_mv) \npil-hetze N(soort,ev,neut) \nbontjas N(soort,ev,neut) \nsein N(soort,ev,neut) \nstropop N(soort,ev,neut) \nopbouwen V(trans,inf) V(trans,inf,subst)\neffectief Adj(attr,stell,onverv) \nProf. N(eigen,ev,neut) \nChablis N(eigen,ev,neut) \nvleugel N(soort,ev,neut) \nrijbewijs N(soort,ev,neut) \nlipstick N(soort,ev,neut) \nkuil N(soort,ev,neut) \ndoorgelicht V(trans,verl_dw,onverv) \ninschikkelijk Adj(attr,stell,onverv) \nrijmpje N(soort,ev,neut) \nBeaujolais N(eigen,ev,neut) \nBlijf V(hulp_of_kopp,imp) \nv.d. N(eigen,ev,neut) \nstoffen N(soort,mv,neut) \nlevende V(intrans,teg_dw,verv_neut) \ngemiddeld Adj(adv,stell,onverv) \nHier Adv(gew,aanw) Adv(gew,geen_func,stell,onverv)\nafgeslepen V(trans,verl_dw,onverv) \nPolak N(eigen,ev,neut) \nlevends V(intrans,teg_dw,verv_gen) \nnauwlettend Adj(adv,stell,onverv) \ngek Adj(attr,stell,onverv) N(soort,ev,neut)\ncaptain N(soort,ev,neut) \nOorlogsmake-up N(soort,ev,neut) \nstapje N(soort,ev,neut) \n16de-eeuwse Adj(attr,stell,verv_neut) \nCasady N(eigen,ev,neut) \nEigen Pron(aanw,neut,attr,w_eigen) \nbeschouwen V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\ngewest N(soort,ev,neut) \ngroepjes N(soort,mv,neut) \nhuishoudelijk Adj(attr,stell,onverv) \nGenderen N(eigen,ev,neut) \nlegervoedsel N(soort,ev,neut) \napensoort N(soort,ev,neut) \ngeproduceerd V(trans,verl_dw,onverv) \nmachtige Adj(attr,stell,verv_neut) \nminuut N(soort,ev,neut) \nWanja N(eigen,ev,neut) \nverzuurde V(intrans,ovt,1_of_2_of_3,ev) \nriep V(trans,ovt,1_of_2_of_3,ev) \ndramatische Adj(attr,stell,verv_neut) Adj(adv,stell,verv_neut)\nredden V(trans,inf) \nvromen Adj(zelfst,stell,verv_mv) \nuitviel V(intrans,ovt,1_of_2_of_3,ev) \nMeisje N(soort,ev,neut) \nverdriet N(soort,ev,neut) \nverloofden V(refl,ovt,1_of_2_of_3,mv) \nverkiezingsprogramma's N(soort,mv,neut) \nhoede N(soort,ev,neut) \nseks N(soort,ev,neut) \nonbenullig Adj(attr,stell,onverv) \nconsequenties N(soort,mv,neut) \nnogal Adv(gew,geen_func,stell,onverv) \nGoderie N(eigen,ev,neut) \nferme Adj(attr,stell,verv_neut) \nverheugt V(trans,ott,3,ev) \nopvoering N(soort,ev,neut) \nMuseum N(eigen,ev,neut) \noplossing N(soort,ev,neut) \nwaarin Adv(pron,vrag) \npotentiemoeilijkheden N(soort,mv,neut) \nvoelsprieten N(soort,mv,neut) \nnoordelijke Adj(attr,stell,verv_neut) \nfietskogeltjes N(soort,mv,neut) \nlichtbruine Adj(attr,stell,verv_neut) \nafgestemd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nbewustzijn N(soort,ev,neut) \ntuinanjers N(soort,mv,neut) \nJac N(eigen,ev,neut) \nongewenste Adj(attr,stell,verv_neut) \nweggepest V(trans,verl_dw,onverv) \npatroon N(soort,ev,neut) \novergave N(soort,ev,neut) \nhaalbare Adj(attr,stell,verv_neut) \nJan N(eigen,ev,neut) Adj(attr,stell,onverv) N(soort,ev,neut)\ninnen V(trans,inf) \npaprika N(soort,ev,neut) \nopgedane V(trans,verl_dw,verv_neut) \nJapanners N(soort,mv,neut) \ntremens N(soort,ev,neut) \nvereiste V(trans,verl_dw,verv_neut) \nkantoorbaan N(soort,ev,neut) \nlevensgrote Adj(attr,stell,verv_neut) \nwerkende V(intrans,teg_dw,verv_neut) \nBeurs Adj(attr,stell,onverv) N(soort,ev,neut)\nmistige Adj(attr,stell,verv_neut) \nfundamentele Adj(attr,stell,verv_neut) \ncatalogi N(soort,mv,neut) \nwisten V(trans,ovt,1_of_2_of_3,mv) \nkoolhydraten N(soort,mv,neut) \nvreselijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nallerminst Num(hoofd,onbep,zelfst,overtr,onverv) \nDelons N(eigen,ev,gen) \nlichtgevend Adj(attr,stell,onverv) \ntheorieen N(soort,mv,neut) \nvereisten V(trans,ovt,1_of_2_of_3,mv) \nnachthemel N(soort,ev,neut) \nopneemt V(trans,ott,3,ev) \nbeursgebouw N(soort,ev,neut) \ntablet N(soort,ev,neut) \nNiarchos N(eigen,ev,neut) \nCalifornie N(eigen,ev,neut) \nblad N(soort,ev,neut) \ngedekt V(trans,verl_dw,onverv) \njaloers Adj(attr,stell,onverv) \nhoeft V(hulp,ott,3,ev) V(hulp,ott,2,ev) V(intrans,ott,3,ev) V(trans,ott,3,ev)\nEight N(eigen,ev,neut) \nbokserssyndicaat N(soort,ev,neut) \nHaiti N(eigen,ev,neut) \nschrik V(intrans,ott,1,ev) \nFranse Adj(attr,stell,verv_neut) \nschril Adj(adv,stell,onverv) \ngruwelijke Adj(attr,stell,verv_neut) \nLuxemburg N(eigen,ev,neut) \ndekens N(soort,mv,neut) \ntasten V(intrans,inf) \nkosmonauten N(soort,mv,neut) \nechtparen N(soort,mv,neut) \nvleugje N(soort,ev,neut) \nMeeuw N(eigen,ev,neut) \nborstel N(soort,ev,neut) \nveertigste Num(rang,bep,zelfst,onverv) \nNord N(eigen,ev,neut) \nbijkomstige Adj(attr,stell,verv_neut) \nstad N(soort,ev,neut) \nnabij Adj(attr,stell,onverv) Prep(voor)\nBolhuis N(eigen,ev,neut) \nvoorgoed Adv(gew,geen_func,stell,onverv) \ndierenbos N(soort,ev,neut) \nknipoogjes N(soort,mv,neut) \nstak V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nstal N(soort,ev,neut) \nSchaamblos N(eigen,ev,neut) \nstam N(soort,ev,neut) \nmeesterwerken N(soort,mv,neut) \nkrijg V(trans,ott,1,ev) V(trans,ott,2,ev)\nrealiseerde V(trans,ovt,1_of_2_of_3,ev) \ndientengevolge Adv(gew,aanw) \ntotale Adj(attr,stell,verv_neut) \ningesteld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nstap N(soort,ev,neut) V(intrans,ott,1,ev)\nkennissen N(soort,mv,neut) \nkunt V(hulp,ott,2,ev) V(trans,ott,2,ev) V(hulp,ott,3,ev)\ngroente N(soort,ev,neut) \nBrown N(eigen,ev,neut) \npagina N(soort,ev,neut) \nzwakbegaafde Adj(attr,stell,verv_neut) \ngestrekt V(trans,verl_dw,onverv) \ntv-beelden N(soort,mv,neut) \nmedisch Adj(attr,stell,onverv) N(eigen,ev,neut) Adj(adv,stell,onverv)\ningenomen V(trans,verl_dw,onverv) \nByrds N(eigen,mv,neut) \nmagnetisch Adj(attr,stell,onverv) \nkweekproeven N(soort,mv,neut) \nanticonceptiva N(soort,mv,neut) \nwettelijke Adj(attr,stell,verv_neut) \nCooper N(eigen,ev,neut) \nparken N(soort,mv,neut) \nlaude Adj(adv,stell,onverv) \nbetrekking N(soort,ev,neut) \nzaadjes N(soort,mv,neut) \nachterover Adv(gew,geen_func,stell,onverv) \nwijnproduktie N(soort,ev,neut) \nKlop V(trans,imp) \ningestemd V(intrans,verl_dw,onverv) \ninbegrepen V(trans,verl_dw,onverv) \ndirigent N(soort,ev,neut) \nrijk Adj(attr,stell,onverv) N(soort,ev,neut)\novereind Adv(gew,geen_func,stell,onverv) \nvoorbijgangers N(soort,mv,neut) \nrijp Adj(attr,stell,onverv) \ngeschikte Adj(attr,stell,verv_neut) \nwaarna Adv(pron,vrag) Adv(pron,betr)\nkapitalistenvreter N(soort,ev,neut) \nvoedings-maatregelen N(soort,mv,neut) \nbehaaglijk Adj(attr,stell,onverv) \nvernederd V(trans,verl_dw,onverv) \nsoepelheid N(soort,ev,neut) \nMeestal Adv(gew,geen_func,stell,onverv) \naandoen V(trans,inf) V(intrans,inf)\n030-25708 Num(hoofd,bep,attr,onverv) \nReimut N(eigen,ev,neut) \nervan Adv(pron,onbep) \nJeu N(eigen,ev,neut) \nHoensbroek N(eigen,ev,neut) \nbedraagt V(trans,ott,3,ev) \nAhead N(eigen,ev,neut) \nbetekent V(trans,ott,3,ev) V(trans,ott,2,ev)\nreprodukties N(soort,mv,neut) \nversnelling N(soort,ev,neut) \nmunitie N(soort,ev,neut) \ngekoesterde V(trans,verl_dw,verv_neut) \nvernedert V(refl,ott,2,ev) \nbeslis V(trans,ott,1,ev) \neerstvolgende Adj(attr,stell,verv_neut) \nTenslotte Adv(gew,geen_func,stell,onverv) \nvertrekken V(intrans,inf) \ndoodskopbrilletje N(soort,ev,neut) \nferry N(soort,ev,neut) \nonverwacht Adj(adv,stell,onverv) \nthuis Adv(gew,geen_func,stell,onverv) \ncitroenen N(soort,mv,neut) \nbronzen Adj(attr,stell,onverv) \ncruise N(soort,ev,neut) \nstreken N(soort,mv,neut) \ntoneelstuk N(soort,ev,neut) \nNaar Prep(voor) \nbevond V(refl,ovt,1_of_2_of_3,ev) \nliefs Adj(attr,stell,verv_gen) \nrozenkranstangetje N(soort,ev,neut) \nverdraaien V(trans,inf) \nmismaakt V(trans,verl_dw,onverv) \nOverlegorgaan N(soort,ev,neut) \nwaarom Adv(gew,betr) N(soort,ev,neut)\ndegelijk Adj(adv,stell,onverv) \nwaarop Adv(pron,vrag) \nvertegenwoordigers N(soort,mv,neut) \nchauffeurs N(soort,mv,neut) \nverwekte V(trans,ovt,1_of_2_of_3,ev) \nschelmenstreek N(soort,ev,neut) \nkerstballen N(soort,mv,neut) \nDierenpark N(eigen,ev,neut) \nrubriek N(soort,ev,neut) \nonbereikbaar Adj(attr,stell,onverv) \nprietpraat N(soort,ev,neut) \nBerengaria N(eigen,ev,neut) \nsjalotten N(soort,mv,neut) \nhoogteverschil N(soort,ev,neut) \nwaargebeurd Adj(attr,stell,onverv) \ndaaraan Adv(pron,aanw) \nGasthof N(soort,ev,neut) N(eigen,ev,neut)\ntaxi N(soort,ev,neut) \nJohnny N(eigen,ev,neut) \nzegt-ie V(trans,ott,3,ev) \navonturen N(soort,mv,neut) \nschilderijen N(soort,mv,neut) \nveelvoud N(soort,ev,neut) \nopdiepen V(trans,inf) \nhiervoor Adv(pron,aanw) \nwendde V(refl,ovt,1_of_2_of_3,ev) \nflesjes N(soort,mv,neut) \nstel V(trans,ott,1,ev) \ntermijn N(soort,ev,neut) \nstem N(soort,ev,neut) \nHerengracht N(eigen,ev,neut) \nmijne Pron(bez,1,ev,neut,attr) \nverdraagbaarheid N(soort,ev,neut) \nerbarmelijk Adj(attr,stell,onverv) \nartistiek Adj(attr,stell,onverv) \n10,25 Num(hoofd,bep,attr,onverv) \nalleenstaanden Adj(zelfst,stell,verv_mv) \nbovenstaande Adj(attr,stell,verv_neut) \naantekenen V(trans,inf) \nIets Pron(onbep,neut,zelfst) \nsloop V(intrans,ovt,1_of_2_of_3,ev) \nbalanceerde V(intrans,ovt,1_of_2_of_3,ev) \nafwijkingen N(soort,mv,neut) \ningerichte V(trans,verl_dw,verv_neut) \nveeteelt N(soort,ev,neut) \nbinnenlanden N(soort,mv,neut) \nsloot V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut)\nzoethout N(soort,ev,neut) \nbeminnen V(intrans,inf,subst) \nCalcutta N(eigen,ev,neut) \nwerkenden V(intrans,teg_dw,verv_mv) \nbewonderen V(trans,inf) \ncentrum N(soort,ev,neut) \nemaille N(soort,ev,neut) \nschimmige Adj(attr,stell,verv_neut) \nschichtig Adj(adv,stell,onverv) \nflirten V(intrans,inf) \nkust N(soort,ev,neut) \nwenden V(refl,ott,1_of_2_of_3,mv) V(refl,inf)\nUrdu N(eigen,ev,neut) \nwaarover Adv(pron,vrag) \nschrok V(intrans,ovt,1_of_2_of_3,ev) \naanraken V(trans,inf) \nmaatregelen N(soort,mv,neut) \nvak N(soort,ev,neut) \nserieuze Adj(attr,stell,verv_neut) \nkindersprookjes N(soort,mv,neut) \nvan Prep(voor) Adv(deel_adv) N(soort,ev,neut) N(eigen,ev,gen) Conj(onder,met_inf) N(eigen,ev,neut)\nvrolijke Adj(attr,stell,verv_neut) \naannaaien V(trans,inf) \nJij Pron(per,2,ev,nom) \nvat N(soort,ev,neut) \nImprovisatie N(eigen,ev,neut) \nsets N(soort,mv,neut) \nJim N(eigen,ev,neut) \ngeschut N(soort,ev,neut) \ngok N(soort,ev,neut) \naanhangers N(soort,mv,neut) \nverbitterd V(trans,verl_dw,onverv) \nrecenties N(soort,mv,neut) \nbegeleider N(soort,ev,neut) \ngelden V(intrans,inf) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nstapte V(intrans,ovt,1_of_2_of_3,ev) \nkijkende V(intrans,teg_dw,verv_neut) \nouden Adj(zelfst,stell,verv_mv) \nZwanenburg N(eigen,ev,neut) \nverschuilt V(refl,ott,3,ev) \nbedingen V(trans,inf) \nouder Adj(attr,vergr,onverv) \nwegvallen V(intrans,inf,subst) \nhalsringen N(soort,mv,neut) \nverzorgd V(trans,verl_dw,onverv) \ntekstdichter N(soort,ev,neut) \nhuisbel N(soort,ev,neut) \nstrafgevangenis N(soort,ev,neut) \nprefereert V(trans,ott,3,ev) \nMiddellandse N(eigen,ev,neut) \nLodewijk N(soort,ev,neut) \nwijnsnobs N(soort,mv,neut) \nlangspeelplaten N(soort,mv,neut) \nscheidde V(trans,ovt,1_of_2_of_3,ev) \nBruinvis N(eigen,ev,neut) \nbardeerspek N(soort,ev,neut) \nblij Adj(attr,stell,onverv) \nblik N(soort,ev,neut) \nRobs N(eigen,ev,gen) \nTruus N(eigen,ev,neut) \nooievaar N(soort,ev,neut) \nvertoning N(soort,ev,neut) \nverdieping N(soort,ev,neut) \nluchtige Adj(attr,stell,verv_neut) \nkaart N(soort,ev,neut) \ndorpen N(soort,mv,neut) \ngepeupel N(soort,ev,neut) \nIsrael N(eigen,ev,neut) \nlucht N(soort,ev,neut) \nabdis N(soort,ev,neut) \n40-45 Num(hoofd,bep,attr,onverv) \n.... Punc(hellip) \nvakschool N(soort,ev,neut) \npolitici N(soort,mv,neut) \nRock Misc(vreemd) \nleeszaal N(soort,ev,neut) \nstil Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ngebruikt V(trans,verl_dw,onverv) V(trans,ott,3,ev)\nvlucht N(soort,ev,neut) \ngespeeld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nbruid N(soort,ev,neut) \nongemerkt Adj(adv,stell,onverv) \nafloopt V(trans,ott,3,ev) \naard N(soort,ev,neut) \ngrammofoonplaten N(soort,mv,neut) \ncuracao N(soort,ev,neut) \nbruin Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\nBegin N(soort,ev,neut) \nmuziek N(soort,ev,neut) \nvoorgaande V(intrans,teg_dw,verv_neut) \nIjmuiden N(eigen,ev,neut) \nhierom Adv(pron,aanw) \nhuiskamerraam N(soort,ev,neut) \nenorme Adj(attr,stell,verv_neut) \noordeel N(soort,ev,neut) \nterechtkomt V(intrans,ott,3,ev) \nKLM N(eigen,ev,neut) \nmaaltijd N(soort,ev,neut) \nRode N(eigen,ev,neut) \nKennedy N(eigen,ev,neut) \nsprakeloos Adj(attr,stell,onverv) \nonschuld N(soort,ev,neut) \nWaarschijnlijk Adj(adv,stell,onverv) \nveertigjarige Adj(attr,stell,verv_neut) \nklinkende V(intrans,teg_dw,verv_neut) \ntrouwe Adj(attr,stell,verv_neut) \nNieuwenhuizens N(eigen,mv,neut) \noverleden V(intrans,verl_dw,onverv) \nSommige Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nTijdens Prep(voor) \nafleveren V(intrans,inf) V(trans,inf)\napen N(soort,mv,neut) \nverrotte V(intrans,verl_dw,verv_neut) \nconditie N(soort,ev,neut) \navond N(soort,ev,neut) \nvee N(soort,ev,neut) \nSassari N(eigen,ev,neut) \nraamkozijnen N(soort,mv,neut) \nwaarheid N(soort,ev,neut) \nHuizing N(eigen,ev,neut) \nkleurengamma's N(soort,mv,neut) \nver Adj(adv,stell,onverv) Adj(attr,stell,onverv)\naugurken N(soort,mv,neut) \nvet Adj(attr,stell,onverv) \nslaaf N(soort,ev,neut) \nvergelijkbaar Adj(attr,stell,onverv) \nslaan V(trans,inf) \nsexy Adj(attr,stell,onverv) \nVRIJ Adj(attr,stell,onverv) \nslaap N(soort,ev,neut) \nspoelen V(intrans,inf) \nslaat V(intrans,ott,3,ev) \nbezittende V(intrans,teg_dw,verv_neut) \nliterair Adj(attr,stell,onverv) \npolitiek N(soort,ev,neut) Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nTielse Adj(attr,stell,verv_neut) \nRoer V(trans,imp) V(intrans,imp)\nschenkt V(trans,ott,3,ev) \nslotzusters N(soort,mv,neut) \nweggevallen V(intrans,verl_dw,onverv) \ncarre Adj(attr,stell,onverv) \nja-woord N(soort,ev,neut) \npatio-woning N(soort,ev,neut) \nvijfentwintig Num(hoofd,bep,attr,onverv) \nPresident N(soort,ev,neut) \ninzichten N(soort,mv,neut) \nvolledig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nhandschoenenkastje N(soort,ev,neut) \ngezien V(trans,verl_dw,onverv) Prep(voor) V(intrans,verl_dw,onverv)\naversie N(soort,ev,neut) \nbedoeling N(soort,ev,neut) \nlichtelijk Adj(adv,stell,onverv) \nbijdrage N(soort,ev,neut) \ngrootpa N(soort,ev,neut) \ngrondploeg N(soort,ev,neut) \nvervolgd V(trans,verl_dw,onverv) \nverfrissen V(trans,inf) \nBalmain N(eigen,ev,neut) \nkasteel N(soort,ev,neut) \nMokers N(eigen,ev,gen) \nwaadde V(intrans,ovt,1_of_2_of_3,ev) \nleiding N(soort,ev,neut) \nmeebrengt V(trans,ott,3,ev) \nkilometer N(soort,ev,neut) \nafspraak N(soort,ev,neut) \nhotel N(soort,ev,neut) \nJoe N(eigen,ev,neut) \nvervolgt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nJesus N(eigen,ev,neut) \nbesproken V(trans,verl_dw,onverv) \ngeschoren V(refl,verl_dw,onverv) V(trans,verl_dw,onverv)\nvervuiling N(soort,ev,neut) \nsabbat N(soort,ev,neut) \nmerkwaardige Adj(attr,stell,verv_neut) \nkoude Adj(attr,stell,verv_neut) \nkostbaar Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nonbeschaamd Adj(adv,stell,onverv) \nsnelheid N(soort,ev,neut) \ngezagvoerder N(soort,ev,neut) \nHaitianen N(soort,mv,neut) \nsfinx N(soort,ev,neut) \ngun V(trans,ott,1,ev) \nvoegde V(trans,ovt,1_of_2_of_3,ev) \nJos N(eigen,ev,neut) \nzachter Adj(attr,vergr,onverv) \neerder Adj(adv,vergr,onverv) \nKoperplaat N(soort,ev,neut) \ngeruststellende V(intrans,teg_dw,verv_neut) \nT.H. N(soort,ev,neut) \nuitschelden V(trans,inf) \nfluit N(soort,ev,neut) V(intrans,ott,2,ev)\nbloed N(soort,ev,neut) \nunieke Adj(attr,stell,verv_neut) \ndorpje N(soort,ev,neut) \nbloei N(soort,ev,neut) \nMeer Num(hoofd,onbep,zelfst,vergr,onverv) \nbloem N(soort,ev,neut) \nstralen V(intrans,inf) \ngegevens N(soort,mv,neut) \ncommando N(soort,ev,neut) \nrassendiscriminatie N(soort,ev,neut) \nblussen V(trans,inf) \nopgewonden V(trans,verl_dw,onverv) \nsprookjes N(soort,mv,neut) \nopdrachtgever N(soort,ev,neut) \noude Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\npeuterde V(trans,ovt,1_of_2_of_3,ev) \nserene Adj(attr,stell,verv_neut) \nBram N(eigen,ev,neut) \nstrijken V(trans,inf) \npieptonen N(soort,mv,neut) \npaleis N(soort,ev,neut) \ngitaar-spelen V(intrans,inf) \nvia Prep(voor) \nuitbreiding N(soort,ev,neut) \nplatbodems N(soort,mv,neut) \nvoegen V(trans,ott,1_of_2_of_3,mv) \nFlinkie N(eigen,ev,neut) \nviezigheid N(soort,ev,neut) \nThomas N(eigen,ev,gen) N(eigen,ev,neut)\nComite N(soort,ev,neut) \nvin N(eigen,ev,neut) \nbulten N(soort,mv,neut) \nweek N(soort,ev,neut) \nversies N(soort,mv,neut) \nvis N(soort,ev,neut) \nVeilig N(eigen,ev,neut) \nsterker Adj(attr,vergr,onverv) \nBarbara N(eigen,ev,neut) \nweer Adv(gew,geen_func,stell,onverv) N(soort,ev,neut)\nwees V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut)\nknoflookbol N(soort,ev,neut) \nweet 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)\nspoort N(soort,ev,neut) \nstof N(soort,ev,neut) \npoging N(soort,ev,neut) \nonduidelijk Adj(attr,stell,onverv) \ngebouwen N(soort,mv,neut) \nbroeiende V(intrans,teg_dw,verv_neut) \nBraber N(eigen,ev,neut) \njongen N(soort,ev,neut) Adj(zelfst,stell,verv_mv)\nwater N(soort,ev,neut) \nstom Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ngrootse Adj(attr,stell,verv_neut) \nZDF N(eigen,ev,neut) \nverteld V(trans,verl_dw,onverv) \njonger Adj(attr,vergr,onverv) \nstop V(intrans,imp) \nMokum N(eigen,ev,neut) \ninstant-ster N(soort,ev,neut) \nfluks Adj(adv,stell,onverv) \nkrankzinnige Adj(attr,stell,verv_neut) \npoogden V(hulp,ovt,1_of_2_of_3,mv) \naangrijpende V(intrans,teg_dw,verv_neut) \nHeils N(eigen,ev,neut) \nverbeelden V(trans,inf) \nfluweel N(soort,ev,neut) \nvertelt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nOldenburg N(eigen,ev,neut) \nWenen N(eigen,ev,neut) \nOlympisch Adj(attr,stell,onverv) \nafgeschrikt V(trans,verl_dw,onverv) \njammeren V(trans,ott,1_of_2_of_3,mv) \ngrootte N(soort,ev,neut) \nZulke Pron(aanw,dat,attr) \ngerepareerd V(trans,verl_dw,onverv) \nliter N(soort,ev,neut) \nkrullend V(intrans,teg_dw,onverv) \nbuspassagier N(soort,ev,neut) \nsimpel Adj(attr,stell,onverv) \nvochtig Adj(attr,stell,onverv) \nmalen N(soort,mv,neut) \nverslijten V(trans,inf) \nslapeloosheid N(soort,ev,neut) \nEgberts N(eigen,ev,neut) \nonvruchtbaarheid N(soort,ev,neut) \nuitgebreide V(trans,verl_dw,verv_neut) \nVereniging N(eigen,ev,neut) \njarenlang Adj(adv,stell,onverv) \noverzicht N(soort,ev,neut) \ninwoners N(soort,mv,neut) \nDackelmutti N(eigen,ev,neut) \nopgetrokken V(trans,verl_dw,onverv) \ngeheel Adj(adv,stell,onverv) N(soort,ev,neut)\nambtenaar N(soort,ev,neut) \nranden N(soort,mv,neut) \nMadrid N(eigen,ev,neut) \nnijdig Adj(adv,stell,onverv) \nformaat N(soort,ev,neut) \nJenny's N(eigen,ev,gen) \noppositie N(soort,ev,neut) \nhopelijk Adj(adv,stell,onverv) \nminister N(soort,ev,neut) \nVietnam N(eigen,ev,neut) \nhoofdschuddend V(intrans,teg_dw,onverv) \nvlo N(soort,ev,neut) \nuitzendt V(trans,ott,3,ev) \npoesjenellen N(soort,mv,neut) \nroadmanagers N(soort,mv,neut) \nBretagnes N(eigen,ev,gen) \nverwarring N(soort,ev,neut) \nbezoek N(soort,ev,neut) \nRoll Misc(vreemd) \n1959-1970 Num(hoofd,bep,zelfst,onverv) \ngekonstateerd V(trans,verl_dw,onverv) \nsterkste Adj(adv,vergr,verv_neut) \nwillekeurig Adj(attr,stell,onverv) \nskilassen N(soort,mv,neut) \noksels N(soort,mv,neut) \nmaagklachten N(soort,mv,neut) \nopgesteld V(trans,verl_dw,onverv) \nfraaie Adj(attr,stell,verv_neut) \nontving V(trans,ovt,1_of_2_of_3,ev) \nroereieren N(soort,mv,neut) \nbestuursniveau N(soort,ev,neut) \nVougeot N(eigen,ev,neut) \nopgenomen V(trans,verl_dw,onverv) \nskilopen N(soort,ev,neut) \nregisseursechtpaar N(soort,ev,neut) \ntrouwens Adv(gew,geen_func,stell,onverv) \npetjes N(soort,mv,neut) \npyama's N(soort,mv,neut) \nrechts Adv(gew,geen_func,stell,onverv) \nallemaal Pron(onbep,neut,zelfst) \nBijzonder Adj(adv,stell,onverv) \nJus N(soort,ev,neut) \nharkerig Adj(adv,stell,onverv) \nelegant Adj(attr,stell,onverv) \nkapot Adj(attr,stell,onverv) \narmste Adj(attr,overtr,verv_neut) \nluiers N(soort,mv,neut) \nterug Adv(gew,geen_func,stell,onverv) \nlieve Adj(attr,stell,verv_neut) \nuitpluizen V(trans,inf) \nbinnenlandse Adj(attr,stell,verv_neut) \nsafari N(soort,ev,neut) \nfietsjes N(soort,mv,neut) \nWelkom Adj(attr,stell,onverv) \nwegging V(intrans,ovt,1_of_2_of_3,ev) \nIndiaan N(eigen,ev,neut) \nbanken N(soort,mv,neut) \nvoelt V(trans,ott,3,ev) V(refl,ott,2,ev) V(refl,ott,3,ev)\nsacramentele Adj(attr,stell,verv_neut) \nwonderwel Adv(gew,geen_func,stell,onverv) \nkopjes N(soort,mv,neut) \nWilhelm N(eigen,ev,neut) \ngebaard V(trans,verl_dw,onverv) \nverveloze Adj(attr,stell,verv_neut) \ntalrijke Pron(onbep,neut,attr) \nwensen V(trans,ott,1_of_2_of_3,mv) \nschotel N(soort,ev,neut) \nKVP N(eigen,ev,neut) \ndoorgaan V(intrans,inf) \nzwak Adj(adv,stell,onverv) \nbuitenlander N(soort,ev,neut) \nrestaurants N(soort,mv,neut) \ngescheiden V(trans,verl_dw,onverv) \nvol Adj(attr,stell,onverv) \nhandgranaat N(soort,ev,neut) \nviel V(intrans,ovt,1_of_2_of_3,ev) \ntactiek N(soort,ev,neut) \nklusje N(soort,ev,neut) \nvon N(eigen,ev,neut) \nsigaretten N(soort,mv,neut) \nredenering N(soort,ev,neut) \nvier Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nFaubourg N(eigen,ev,neut) \nbigamie N(soort,ev,neut) \nhoefde V(hulp,ovt,1_of_2_of_3,ev) \nontdekt V(trans,ott,3,ev) V(trans,verl_dw,onverv)\nRood Adj(zelfst,stell,onverv) \nfirma N(soort,ev,neut) \ngeheim N(soort,ev,neut) \nuitziet V(intrans,ott,3,ev) \nmeeslepen V(trans,inf) \nhaarspoeling N(soort,ev,neut) \nPaasschen N(eigen,ev,neut) \nSluiter N(eigen,ev,neut) \nzwarte Adj(attr,stell,verv_neut) \nMinh-route N(eigen,ev,neut) \nstuk N(soort,ev,neut) Adj(attr,stell,onverv)\ntweeendertig Num(hoofd,bep,zelfst,onverv) \ngerangeerd V(trans,verl_dw,onverv) \nbordeel N(soort,ev,neut) \nbewijsmateriaal N(soort,ev,neut) \nzette V(trans,ovt,1_of_2_of_3,ev) \nterrein N(soort,ev,neut) \ngeschranst V(intrans,verl_dw,onverv) \nrelatievormen N(soort,mv,neut) \nprovinciaal Adj(attr,stell,onverv) \nparlementariers N(soort,mv,neut) \nteleurgesteld V(trans,verl_dw,onverv) \nkritieke Adj(attr,stell,verv_neut) \nvogeltje N(soort,ev,neut) \nbevalt V(intrans,ott,3,ev) \nzieke Adj(attr,stell,verv_neut) \nwapens N(soort,mv,neut) \nrandje N(soort,ev,neut) \nhuishoudrekening N(soort,ev,neut) \nmodder N(soort,ev,neut) \nletters N(soort,mv,neut) \nbestreden V(trans,verl_dw,onverv) \nfeiten N(soort,mv,neut) \nmarine N(soort,ev,neut) \nBrit N(soort,ev,neut) \nMeng V(trans,imp) \nverband N(soort,ev,neut) \ntoppers N(soort,mv,neut) \nverlangd V(trans,verl_dw,onverv) \nrotjes N(soort,mv,neut) \nBijbelgenootschap N(eigen,ev,neut) \nlynchmentaliteit N(soort,ev,neut) \nblond Adj(attr,stell,onverv) \nz.g. Adj(attr,stell,verv_neut) \nwroeten V(intrans,inf) \nvermoeidheid N(soort,ev,neut) \ngevorkte Adj(attr,stell,verv_neut) \ngezonde Adj(attr,stell,verv_neut) \nlagen V(intrans,ovt,1_of_2_of_3,mv) \nverbanningsoord N(soort,ev,neut) \nhulde N(soort,ev,neut) \ncoureurs N(soort,mv,neut) \ngestalte N(soort,ev,neut) \nlager Adj(attr,vergr,onverv) \nverlangt V(trans,ott,3,ev) \nkunsthistorici N(soort,mv,neut) \ncitroenbrandewijn N(soort,ev,neut) \nLouis N(eigen,ev,neut) Adj(attr,stell,verv_neut)\ngeinteresseerden V(trans,verl_dw,verv_mv) \npasseert V(intrans,ott,3,ev) \nnuchterheid N(soort,ev,neut) \nflat N(soort,ev,neut) \nfrustreren V(trans,inf) \ngehele Adj(attr,stell,verv_neut) \nstraatzanger N(soort,ev,neut) \nurgente Adj(attr,stell,verv_neut) \nKenners N(soort,mv,neut) \nslang N(soort,ev,neut) \nborst N(soort,ev,neut) \nwens N(soort,ev,neut) \nglijden V(intrans,inf) \nslank Adj(attr,stell,onverv) \nvoldoening N(soort,ev,neut) \nteevee N(soort,ev,neut) \nafgrondelijke Adj(attr,stell,verv_neut) \nmusical N(soort,ev,neut) \nbloot Adj(attr,stell,onverv) N(soort,ev,neut)\nKuller N(eigen,ev,neut) \nDobrowolski N(eigen,ev,neut) \nfietsen V(intrans,inf) \nopvoeren V(trans,inf) \nafhankelijker Adj(attr,vergr,onverv) \nscheidsrechters N(soort,mv,neut) \njerseys N(soort,mv,neut) \nBeatrix N(eigen,ev,neut) \ncorruptie N(soort,ev,neut) \nfauteuiltjes N(soort,mv,neut) \nslinger N(soort,ev,neut) \nMIJN Pron(bez,1,ev,neut,attr) \nmachten N(soort,mv,neut) \nHuwelijken N(soort,mv,neut) \nDorfmeister N(eigen,ev,neut) \nbureaucratie N(soort,ev,neut) \nbedevaartsoord N(soort,ev,neut) \nbezetten V(trans,ott,1_of_2_of_3,mv) \nCummins N(eigen,ev,neut) \nWild-Westtaferelen N(soort,mv,neut) \nsecretaresse N(soort,ev,neut) \nschrijven 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)\ngravida N(soort,ev,neut) \nbreedstralers N(soort,mv,neut) \npetekind N(soort,ev,neut) \nschrijver N(soort,ev,neut) \nwijzen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf) N(soort,mv,neut)\ndeed V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev)\nvijf Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nDerde N(eigen,ev,neut) \npubliciteit N(soort,ev,neut) \ngeaccentueerd V(trans,verl_dw,onverv) \nwijzer Adj(attr,vergr,onverv) \nopbrengen V(trans,inf,subst) \nheerlijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nhindernissen N(soort,mv,neut) \nprutsertje N(soort,ev,neut) \ndeel N(soort,ev,neut) \nbijvoorbeeld Adv(gew,geen_func,stell,onverv) \nvoert V(trans,ott,3,ev) \nTemps N(eigen,ev,neut) \nmeegebracht V(trans,verl_dw,onverv) \nTotale Adj(attr,stell,verv_neut) \nhad V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nuitzijn V(intrans,ott,1_of_2_of_3,mv) \nFloris N(eigen,ev,neut) \nverbeten V(trans,verl_dw,onverv) \nhak V(trans,imp) \nAndrea N(eigen,ev,neut) \nhal N(soort,ev,neut) \nAgua N(eigen,ev,neut) \ngeleidelijk Adj(adv,stell,onverv) \nham N(soort,ev,neut) \ntederheid N(soort,ev,neut) \nEgypte N(eigen,ev,neut) \nthuiskom V(intrans,ott,1,ev) \nhalsslagader N(soort,ev,neut) \nonteigend V(trans,verl_dw,onverv) \nMansfield N(eigen,ev,neut) \nkindertehuis N(soort,ev,neut) \nkerkgebouwen N(soort,mv,neut) \nfunctioneren V(intrans,inf,subst) \neierdooier N(soort,ev,neut) \nAndrew N(eigen,ev,neut) \nweegt V(trans,ott,3,ev) \nbracht V(trans,ovt,1_of_2_of_3,ev) \ndurende V(trans,teg_dw,verv_neut) \nbaarmoeder N(soort,ev,neut) \nmodieuze Adj(attr,stell,verv_neut) \nbedoeninkje N(soort,ev,neut) \nbewoond V(trans,verl_dw,onverv) \nwerd V(hulp_of_kopp,ovt,1_of_2_of_3,ev) \ngeprikt V(trans,verl_dw,onverv) \nmuurvast Adj(attr,stell,onverv) \nhuisvrouw N(soort,ev,neut) \nfles N(soort,ev,neut) \ngietvormpjes N(soort,mv,neut) \nwerk N(soort,ev,neut) \ngruwel N(soort,ev,neut) \ngruwen V(intrans,inf) \nvilt N(soort,ev,neut) \nManmoedig Adj(adv,stell,onverv) \nCorry N(eigen,ev,neut) \noever N(soort,ev,neut) \nmeedeelde V(trans,ovt,1_of_2_of_3,ev) \nwortels N(soort,mv,neut) \nexpansie N(soort,ev,neut) \nopenluchttafrelen N(soort,mv,neut) \ngeprofiteerd V(intrans,verl_dw,onverv) \nalthans Adv(gew,geen_func,stell,onverv) \npaarse Adj(attr,stell,verv_neut) \nChinezen N(soort,mv,neut) \nvertegenwoordiger N(soort,ev,neut) \nLino N(eigen,ev,neut) \nbruiden N(soort,mv,neut) \nlichten N(soort,mv,neut) \nblote Adj(attr,stell,verv_neut) \ncouturier N(soort,ev,neut) \nWaarom Adv(gew,betr) Adv(gew,vrag)\nnationale Adj(attr,stell,verv_neut) \nvoelbaar Adj(attr,stell,onverv) \nspoor N(soort,ev,neut) \nspoot V(intrans,ovt,1_of_2_of_3,ev) \nverwelkt V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nberoemdheid N(soort,ev,neut) \nverheven V(trans,verl_dw,onverv) \noppervlakte N(soort,ev,neut) \nfietsje N(soort,ev,neut) \ngebeeldhouwde V(trans,verl_dw,verv_neut) \nluisterende V(intrans,teg_dw,verv_neut) \nopzichten N(soort,mv,neut) \nvoordelen N(soort,mv,neut) \nVensters N(soort,mv,neut) \nrobijnen Adj(attr,stell,onverv) \nwisselvalligheden N(soort,mv,neut) \nbodem N(soort,ev,neut) \nronde Adj(attr,stell,verv_neut) \nsublieme Adj(attr,stell,verv_neut) \nvind V(trans,ott,1,ev) V(trans,ott,2,ev)\nwerden V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \nheb 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)\nplezierige Adj(attr,stell,verv_neut) \ngeharkt V(trans,verl_dw,onverv) \nbeknopt V(trans,verl_dw,onverv) \nverpleegster N(soort,ev,neut) \nversierd V(trans,verl_dw,onverv) \ncremes N(soort,mv,neut) \nhem Pron(per,3,ev,dat_of_acc) \nhen Pron(per,3,mv,dat_of_acc) \ngevestigd V(refl,verl_dw,onverv) V(trans,verl_dw,onverv)\nher Adv(gew,aanw) \nverliefdheden N(soort,mv,neut) \nmuilezel N(soort,ev,neut) \nhet Art(bep,onzijd,neut) Pron(onbep,neut,zelfst) Pron(per,3,ev,dat_of_acc) Pron(per,3,ev,nom) N(soort,ev,neut)\nversiert V(trans,ott,2,ev) \nhomofiel Adj(attr,stell,onverv) \nopvoeders N(soort,mv,neut) \nkwalificatie N(soort,ev,neut) \nransel V(trans,imp) \nzaterdagmorgen N(soort,ev,neut) \nWierden N(eigen,ev,neut) \nSchrok V(intrans,ovt,1_of_2_of_3,ev) \nTenminste Adv(gew,geen_func,stell,onverv) \nkenmerkend V(intrans,teg_dw,onverv) \nopnieuw Adv(gew,geen_func,stell,onverv) \nheilig Adj(adv,stell,onverv) \nopgelost V(trans,verl_dw,onverv) \nfeestvieren V(intrans,inf) \nbelasting N(soort,ev,neut) \nBlijkbaar Adv(gew,geen_func,stell,onverv) \nverscheidene Pron(onbep,neut,attr) \nvertaler N(soort,ev,neut) \naflopen V(intrans,inf,subst) \nverdwijnende V(intrans,teg_dw,verv_neut) \nweigert V(hulp,ott,3,ev) \ninterpretaties N(soort,mv,neut) \nplezier N(soort,ev,neut) \nstrikje N(soort,ev,neut) \nniet-geente Adj(attr,stell,verv_neut) \nagressief Adj(attr,stell,onverv) \nNagellak N(soort,ev,neut) \ngrijze Adj(attr,stell,verv_neut) \nduinrand N(soort,ev,neut) \nsport N(soort,ev,neut) \nnegatief Adj(attr,stell,onverv) \nRobert N(eigen,ev,neut) \nKan V(hulp,ott,3,ev) \nleuke Adj(attr,stell,verv_neut) \ndiscussieert V(intrans,ott,3,ev) \nbamboes N(soort,mv,neut) \ninneemt V(trans,ott,3,ev) \nuitgemaakt V(trans,verl_dw,onverv) \nkeper N(soort,ev,neut) \ndele N(soort,ev,dat) \ntheater N(soort,ev,neut) \npizza N(soort,ev,neut) \nstandpunt N(soort,ev,neut) \namerikaanse Adj(attr,stell,verv_neut) \ndoorgeslagen V(intrans,verl_dw,onverv) \nbegrijpen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nonverhulder Adj(attr,vergr,onverv) \nstarten V(intrans,ott,1_of_2_of_3,mv) \ninwijding N(soort,ev,neut) \ngroenteboer N(soort,ev,neut) \ndoorgang N(soort,ev,neut) \nouwe Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut)\nanalyse N(soort,ev,neut) \ninzittenden Adj(zelfst,stell,verv_mv) \nwilden V(hulp,ovt,1_of_2_of_3,mv) \nbehandelen V(trans,inf) \ngetrouw Adj(attr,stell,onverv) \nomdoen V(trans,inf) \nArmstrong-achtige Adj(attr,stell,verv_neut) \nnacht N(soort,ev,neut) \nbijvalskreet N(soort,ev,neut) \nvindt V(trans,ott,3,ev) V(trans,ott,2,ev) V(refl,ott,3,ev)\nzijner Pron(bez,3,ev,gen,attr) \nIngram N(eigen,ev,neut) \nVlucht N(soort,ev,neut) \ngepasseerd V(trans,verl_dw,onverv) \noorlogslittekens N(soort,mv,neut) \nbuitenlandse Adj(attr,stell,verv_neut) \nFlorence N(eigen,ev,neut) \ndrieduizend Num(hoofd,bep,attr,onverv) \nredderen V(trans,inf) \nzwangerschapsonderbreking N(eigen,ev,neut) \nhij Pron(per,3,ev,nom) \nvasthouden V(trans,inf,subst) V(trans,inf)\ngeindoctrineerd V(trans,verl_dw,onverv) \nVoeg V(trans,imp) \nMuziek N(soort,ev,neut) \nkostuum N(soort,ev,neut) \nOranjeklanten N(soort,mv,neut) \ngeacht V(trans,verl_dw,onverv) \nbeweging N(soort,ev,neut) \nhaalt V(trans,ott,2,ev) V(refl,ott,3,ev)\ngesprek N(soort,ev,neut) \nbewerken V(trans,inf,subst) \nbeschermde V(trans,ovt,1_of_2_of_3,ev) \ndenk V(intrans,ott,1,ev) V(trans,ott,1,ev) V(intrans,imp) V(intrans,ott,2,ev) V(trans,ott,2,ev)\ntuintjes N(soort,mv,neut) \nkookboek N(soort,ev,neut) \ndreigt V(hulp,ott,3,ev) V(intrans,ott,3,ev)\nogen N(soort,mv,neut) \nVirginia N(eigen,ev,neut) \nverstandig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nwinkel N(soort,ev,neut) \nAllah's N(eigen,ev,gen) \nnotehouten Adj(attr,stell,onverv) \njongste Adj(zelfst,overtr,verv_neut) \nbesparen V(trans,inf) \nhamers N(soort,mv,neut) \nkrioelende V(intrans,teg_dw,verv_neut) \nraadgevingen N(soort,mv,neut) \nsierde V(trans,ovt,1_of_2_of_3,ev) \nschitterden V(intrans,ovt,1_of_2_of_3,mv) \nuitgedoofde V(intrans,verl_dw,verv_neut) \nmayonaise N(soort,ev,neut) \ntrombose N(soort,ev,neut) \nDaarvoor Adv(pron,aanw) \nontmoet V(trans,ott,3,ev) \nsterkere Adj(attr,vergr,verv_neut) \nbeschermen V(trans,inf) \nbloedverlies N(soort,ev,neut) \nKen N(eigen,ev,neut) \nbeschermer N(soort,ev,neut) \nzagen V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nmilitante Adj(attr,stell,verv_neut) \ndeinen V(intrans,inf) \nsituatie N(soort,ev,neut) \nh.a.v.o. N(soort,ev,neut) \nGezien Prep(voor) \nwerknemer N(soort,ev,neut) \nHoorn N(eigen,ev,neut) \nreclame N(soort,ev,neut) \nHengeveld N(eigen,ev,neut) \nkwartet N(soort,ev,neut) \ngipsafgietsel N(soort,ev,neut) \nschrift N(soort,ev,neut) \nuurwerk N(soort,ev,neut) \nwijkagent N(soort,ev,neut) \narmere Adj(attr,vergr,verv_neut) \nnieuws-rubriek N(soort,ev,neut) \ndept Misc(vreemd) \ncapabel Adj(attr,stell,onverv) \nvoorliefde N(soort,ev,neut) \nroutine-operaties N(soort,mv,neut) \ngevaren N(soort,mv,neut) \nkantongerecht N(soort,ev,neut) \ntoeristenbelasting N(soort,ev,neut) \nparfumnaam N(soort,ev,neut) \nIndiase Adj(attr,stell,verv_neut) \nbevorderend V(intrans,teg_dw,onverv) \nbondgenoten N(soort,mv,neut) \nradio-actieve Adj(attr,stell,verv_neut) \nsamenleving N(soort,ev,neut) \ndeurhoogte N(soort,ev,neut) \nflop N(soort,ev,neut) \nserverende V(trans,teg_dw,verv_neut) \nlaatst Adj(adv,vergr,onverv) \nbanen N(eigen,ev,neut) N(soort,mv,neut)\ngewassen V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\ntiende Num(rang,bep,attr,onverv) \nclubs N(soort,mv,neut) \nZappa N(eigen,ev,neut) \nballade N(soort,ev,neut) \nordentelijke Adj(attr,stell,verv_neut) \nweten 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)\nenkele Pron(onbep,neut,attr) \noutsiders N(soort,mv,neut) \nenige Adj(attr,stell,verv_neut) Pron(onbep,neut,attr) Adj(zelfst,stell,verv_neut) Pron(onbep,neut,zelfst)\nkinderliteratuur N(soort,ev,neut) \nPiaf N(eigen,ev,neut) \nlieflijkheid N(soort,ev,neut) \nwaardeloze Adj(attr,stell,verv_neut) \nzwangerschap N(soort,ev,neut) \nzinloosheid N(soort,ev,neut) \nzusters N(soort,mv,neut) \npijlsnelle Adj(attr,stell,verv_neut) \nKettingroker N(soort,ev,neut) \nprofessionals N(soort,mv,neut) \nladies Misc(vreemd) \nbedrogen V(trans,verl_dw,onverv) \nbloemen N(soort,mv,neut) \nKijkt V(trans,ott,3,ev) \nOnmogelijk Adj(attr,stell,onverv) \nuitsteken V(intrans,inf) \nHuisvrouw-Thuisvrouw N(eigen,ev,neut) \ndierenarts N(soort,ev,neut) \nshorts N(soort,mv,neut) \nkaarslicht N(soort,ev,neut) \nwal N(soort,ev,neut) \nbezorgde V(trans,ovt,1_of_2_of_3,ev) \nbrandkastkraken N(soort,mv,neut) \nhoorden V(trans,ovt,1_of_2_of_3,mv) \nlichaamsbeweging N(soort,ev,neut) \nwar N(soort,ev,neut) \nbrandkastkraker N(soort,ev,neut) \nnaaimachine N(soort,ev,neut) \nhoe Adv(gew,betr) \nmodesnufje N(soort,ev,neut) \nwas 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)\nhof N(soort,ev,neut) \nwat Pron(vrag,neut,attr) Pron(onbep,neut,zelfst) Pron(betr,neut,zelfst) Pron(onbep,neut,attr)\nhaard N(soort,ev,neut) \ngebleken V(intrans,verl_dw,onverv) V(hulp_of_kopp,verl_dw,onverv)\noverschakelen V(intrans,inf) \nhartslag N(soort,ev,neut) \nM'n Pron(bez,1,ev,neut,attr) \nvoetbalgebeuren N(soort,ev,neut) \ngrondbarriere N(soort,ev,neut) \nRembrandtplein N(eigen,ev,neut) \nKip N(soort,ev,neut) \nevangelisten N(soort,mv,neut) \nbesteed V(trans,verl_dw,onverv) \nSaljoet N(eigen,ev,neut) \n1200 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nscheidende V(intrans,teg_dw,verv_neut) \nabortussen N(soort,mv,neut) \nschrijf V(trans,ott,1,ev) \nevenzeer Adv(gew,geen_func,stell,onverv) \nhou V(intrans,imp) V(intrans,ott,1,ev)\nstimulerende V(intrans,teg_dw,verv_neut) \nperron N(soort,ev,neut) \nzinloos Adj(attr,stell,onverv) \nAcapulco N(eigen,ev,neut) \nRadio N(eigen,ev,neut) N(soort,ev,neut)\noverbrengen V(trans,inf) \nrondom Prep(voor) \nschrijn N(soort,ev,neut) \ndoorsnee N(soort,ev,neut) \nkabinet-Cals N(eigen,ev,neut) \nhongersnood N(soort,ev,neut) \nonheil N(soort,ev,neut) \nadministratrice N(soort,ev,neut) \nstimulerends V(intrans,teg_dw,verv_gen) \nFred N(eigen,ev,neut) \nuitblijven V(intrans,inf) \nbezorgen V(trans,inf) \nmaharadja's N(soort,mv,neut) \nkwartje N(soort,ev,neut) \nAlcohol N(soort,ev,neut) \nkroost N(soort,ev,neut) \nbovendrijven V(intrans,inf) \neentje Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\neerste Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv)\nhaast N(soort,ev,neut) V(refl,ott,3,ev)\nwetenschappelijke Adj(attr,stell,verv_neut) \nzich Pron(ref,3,ev_of_mv) \nontvreemd V(trans,verl_dw,onverv) \nstoel N(soort,ev,neut) \nschrikt V(intrans,ott,3,ev) \nWilleke N(eigen,ev,neut) \nfonteinen N(soort,mv,neut) \ngelegd V(trans,verl_dw,onverv) \nkledingstukken N(soort,mv,neut) \nribbelvormige Adj(attr,stell,verv_neut) \ndeur N(soort,ev,neut) \nmagische Adj(attr,stell,verv_neut) \nonberedeneerde Adj(attr,stell,verv_neut) \ndeux N(eigen,ev,neut) \nverwijderen V(trans,ott,1_of_2_of_3,mv) \nvernauwen V(trans,ott,1_of_2_of_3,mv) \nblank Adj(attr,stell,onverv) \naanneemt V(trans,ott,3,ev) \nessayiste N(soort,ev,neut) \nrollen N(soort,mv,neut) V(intrans,inf)\nhartkamers N(soort,mv,neut) \nuitgedrukt V(trans,verl_dw,onverv) \nplots Adv(gew,geen_func,stell,onverv) Adj(adv,stell,onverv)\nmaatschappij N(soort,ev,neut) \ngehaktbal N(soort,ev,neut) \nteruggaaf N(soort,ev,neut) \nsilhouetten N(soort,mv,neut) \ncirca Adv(gew,geen_func,stell,onverv) \nallesbehalve Adv(gew,geen_func,stell,onverv) \nbewoners N(soort,mv,neut) \nbesmettelijke Adj(attr,stell,verv_neut) \nroemruchte Adj(attr,stell,verv_neut) \nPiet N(eigen,ev,neut) \ncijfer N(soort,ev,neut) \nplaat N(soort,ev,neut) \nnegentiende Num(rang,bep,attr,onverv) \nmaandenlang Adj(adv,stell,onverv) \nschaamt V(refl,ott,3,ev) \nkotjes N(soort,mv,neut) \nsocio-economische Adj(attr,stell,verv_neut) \nwijnhuizen N(soort,mv,neut) \nbeschuldiging N(soort,ev,neut) \nLeuvense Adj(attr,stell,verv_neut) \nkristal N(soort,ev,neut) \nklussen N(soort,mv,neut) \nonhandigheid N(soort,ev,neut) \nlichtte V(trans,ovt,1_of_2_of_3,ev) \nFransen Adj(zelfst,stell,verv_mv) \ninwonen V(intrans,inf) \nex-president N(soort,ev,neut) \ngebouwd V(trans,verl_dw,onverv) \ntoevoegt V(trans,ott,3,ev) \ngeroutineerde Adj(attr,stell,verv_neut) \nwee Int \nmaangodin N(soort,ev,neut) \nweg Adv(gew,geen_func,stell,onverv) N(soort,ev,neut)\nziek Adj(attr,stell,onverv) \nimmers Adv(gew,geen_func,stell,onverv) \nwel Adv(gew,geen_func,stell,onverv) \nziel N(soort,ev,neut) \nkoeien N(soort,mv,neut) \nzien 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)\nzeilen V(intrans,inf) \nzoiets Pron(aanw,neut,zelfst) \nschoonvader N(soort,ev,neut) \nopvoeden V(intrans,inf) V(trans,inf)\nverlenen V(trans,inf) \nDelftse Adj(attr,stell,verv_neut) \nwet N(soort,ev,neut) \nziet V(trans,ott,3,ev) V(trans,ott,2,ev) V(intrans,ott,3,ev) V(trans,imp)\nmogelijkerwijs Adv(gew,geen_func,stell,onverv) \nTanya N(eigen,ev,neut) \nweiland N(soort,ev,neut) \nvakantie(tje) N(soort,ev,neut) \nwijnkoperijen N(soort,mv,neut) \nmocht V(hulp,ovt,1_of_2_of_3,ev) \nMama's N(eigen,mv,neut) \nSuffend V(intrans,teg_dw,onverv) \nafwachten V(trans,inf) \nenveloppe N(soort,ev,neut) \nVoor Prep(voor) Conj(onder,met_fin)\nlegde V(trans,ovt,1_of_2_of_3,ev) \nKantner N(eigen,ev,neut) \nbegaan V(intrans,verl_dw,onverv) \nHaarlem-station N(soort,ev,neut) \nverdwijning N(soort,ev,neut) \ngelooft V(trans,ott,3,ev) V(intrans,ott,3,ev)\nprulletjes N(soort,mv,neut) \nvereenzamen V(intrans,inf) \nhoudt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nhofhouding N(soort,ev,neut) \nwerkkamer N(soort,ev,neut) \nScheherazade N(eigen,ev,neut) \nbesluit N(soort,ev,neut) V(trans,ott,3,ev)\nactieve Adj(attr,stell,verv_neut) \ngebogen V(trans,verl_dw,onverv) \nTevergeefs Adj(attr,stell,onverv) \nmode N(soort,ev,neut) \nexemplaren N(soort,mv,neut) \nAanvankelijk Adj(adv,stell,onverv) \nbelangen N(soort,mv,neut) \nspectaculair Adj(attr,stell,onverv) \nhapje N(soort,ev,neut) \nlijdzaamheid N(soort,ev,neut) \nverlengd V(trans,verl_dw,onverv) \ngekoppeld V(trans,verl_dw,onverv) \ndaarbij Adv(pron,aanw) \nhalverwege Adv(gew,geen_func,stell,onverv) \nonverteerbare Adj(attr,stell,verv_neut) \nbegroting N(soort,ev,neut) \nTwee Num(hoofd,bep,attr,onverv) \nleger N(soort,ev,neut) \nzalige Adj(attr,stell,verv_neut) \naanpak N(soort,ev,neut) \nverpakkingen N(soort,mv,neut) \nhebt V(trans,ott,2,ev) V(hulp,ott,2,ev)\nkeukens N(soort,mv,neut) \nKom V(intrans,imp) \nonlesbare Adj(attr,stell,verv_neut) \nrepresentatieve Adj(attr,stell,verv_neut) \nhun Pron(bez,3,mv,neut,attr) Pron(per,3,ev,nom) Pron(per,3,mv,dat_of_acc)\nvrije Adj(attr,stell,verv_neut) \nstorten V(intrans,ott,1_of_2_of_3,mv) \nmoed N(soort,ev,neut) \ndichtgeplakt V(trans,verl_dw,onverv) \nprik N(soort,ev,neut) \nachter Prep(voor) Adv(deel_adv) Adv(gew,geen_func,stell,onverv) Adv(deel_v)\nhut N(soort,ev,neut) \nplanten N(soort,mv,neut) \nkameraden N(soort,mv,neut) \ntegennatuurlijke Adj(attr,stell,verv_neut) \ndeze Pron(aanw,neut,attr) Pron(aanw,neut,zelfst)\nzaterdags N(eigen,ev,gen) \nTaylor N(eigen,ev,neut) \ndrakestaarten N(soort,mv,neut) \nsmoort V(trans,ott,3,ev) \nMegan N(eigen,ev,neut) \nbeperking N(soort,ev,neut) \nserveersters N(soort,mv,neut) \nSerfaus N(eigen,ev,neut) \nmoet 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)\npaviljoens N(soort,mv,neut) \nideologie N(soort,ev,neut) \nwater- N(soort,ev,neut) \nbewaken V(trans,inf) \ndageraad N(soort,ev,neut) \nijsblokjes N(soort,mv,neut) \nonefficiente Adj(attr,stell,verv_neut) \ngelijkstelling N(soort,ev,neut) \ndriftig Adj(adv,stell,onverv) \nEven Adv(gew,geen_func,stell,onverv) \nmaterie N(soort,ev,neut) \npension N(soort,ev,neut) \nvoorbijsnellende V(intrans,teg_dw,verv_neut) \namateurband N(soort,ev,neut) \nzesenveertig Num(hoofd,bep,attr,onverv) \ngeduld N(soort,ev,neut) \nleerkrachten N(soort,mv,neut) \ngrootmoeders N(soort,mv,neut) N(soort,ev,gen)\nspant V(trans,ott,3,ev) \naanvulling N(soort,ev,neut) \nwie Pron(betr,neut,zelfst) Pron(vrag,neut,attr)\nkatholieken N(soort,mv,neut) \nplunje N(soort,ev,neut) \nbruggetje N(soort,ev,neut) \nstartte V(intrans,ovt,1_of_2_of_3,ev) \nwij Pron(per,1,mv,nom) \nAthene N(eigen,ev,neut) \nbestelt V(trans,ott,3,ev) \nwil 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)\nstrompelde V(intrans,ovt,1_of_2_of_3,ev) \npoolshoogte N(soort,ev,neut) \nbeginne N(soort,ev,dat) \nstralende V(intrans,teg_dw,verv_neut) \nschaars Adj(adv,stell,onverv) \ngenoegen N(soort,ev,neut) \nwit Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\nspookbeeld N(soort,ev,neut) \nDS'70 N(eigen,ev,neut) \nChamberlain N(eigen,ev,neut) \nbevatte V(trans,ovt,1_of_2_of_3,ev) \nbescheiden Adj(attr,stell,onverv) \nbestemd V(trans,verl_dw,onverv) \nbidden V(intrans,inf) \nengelen N(soort,mv,neut) \nverbazing N(soort,ev,neut) \nmoge V(hulp,conj) \nzitten 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)\nschapen N(soort,mv,neut) \nwoensdagmiddag N(soort,ev,neut) \nAbrikozen N(soort,mv,neut) \noven N(soort,ev,neut) \nuitprakkizeren V(trans,inf) \nover Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv)\nhouden 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)\nschofferen V(trans,inf) \nrythm N(soort,mv,neut) \nverkering N(soort,ev,neut) \nauto- N(soort,ev,neut) \nerotiek N(soort,ev,neut) \nheel Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv)\nzijn 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)\nNelis N(eigen,ev,neut) \nzakelijke Adj(attr,stell,verv_neut) \nscheef Adj(attr,stell,onverv) \nheen Prep(comb) Adv(deel_adv) Adv(gew,geen_func,stell,onverv)\nGeeft V(trans,ott,3,ev) \nHEEFT V(trans,ott,3,ev) \njongens N(soort,mv,neut) \nheer N(soort,ev,neut) \nbezwaar N(soort,ev,neut) \nbasgitaar N(soort,ev,neut) \nheet V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev) Adj(attr,stell,onverv)\nscheen V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nveertiende Num(rang,bep,attr,onverv) \naandelen N(soort,mv,neut) \nbewaarheid V(trans,verl_dw,onverv) \nZee N(eigen,ev,neut) \nAlfons N(eigen,ev,neut) \ntheedoeken N(soort,mv,neut) \ntubes N(soort,mv,neut) \nafgebeeld V(trans,verl_dw,onverv) \nvoorgesteld V(trans,verl_dw,onverv) \nblauw Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\netage N(soort,ev,neut) \nAlignement N(eigen,ev,neut) \ngrenadier N(soort,ev,neut) \ndroogt V(trans,ott,2,ev) \nonderzoeken V(intrans,inf) \nVaak Adv(gew,geen_func,stell,onverv) \nZet V(trans,imp) \ngevecht N(soort,ev,neut) \npassieve Adj(attr,stell,verv_neut) \nstomp N(soort,ev,neut) \nfolklore N(soort,ev,neut) \nonderzoeker N(soort,ev,neut) \nactiegroepen N(soort,mv,neut) \nbuitenbeentje N(soort,ev,neut) \nvergemakkelijken V(trans,ott,1_of_2_of_3,mv) \nbeveelt V(trans,ott,3,ev) \nbereikbaar Adj(attr,stell,onverv) \nEenmaal Adv(gew,geen_func,stell,onverv) \ndezelfde Pron(aanw,neut,attr) Pron(aanw,neut,zelfst)\nopgekomen V(intrans,verl_dw,onverv) \nLyceum N(eigen,ev,neut) \npremieinkomen N(soort,ev,neut) \nzijdelings Adj(adv,stell,onverv) \nstond 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)\nvleselijke Adj(attr,stell,verv_neut) \nbehoeften N(soort,mv,neut) \nhoeveelheid N(soort,ev,neut) \nstuurmaten N(soort,mv,neut) \nStewardess N(soort,ev,neut) \nHarold N(eigen,ev,neut) \ngasvlam N(soort,ev,neut) \nschoenen N(soort,mv,neut) \ntoneelproducenten N(soort,mv,neut) \nkonden V(hulp,ovt,1_of_2_of_3,mv) \nzilt Adj(attr,stell,onverv) \nstuurhoes N(soort,ev,neut) \nWrijf V(trans,imp) \npostkantoren N(soort,mv,neut) \nkansen N(soort,mv,neut) \neinde N(soort,ev,neut) \nVictoria N(eigen,ev,neut) \nkoningin N(soort,ev,neut) \nVught N(eigen,ev,neut) \nbijterig Adj(attr,stell,onverv) \nstillen V(trans,inf) \nbegrijp V(trans,ott,1,ev) \nkwekerij N(soort,ev,neut) \ngrazige Adj(attr,stell,verv_neut) \nfotomodel N(soort,ev,neut) \nValk-methode N(soort,ev,neut) \nvermochten V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \ngrappige Adj(zelfst,stell,verv_neut) \nochtends N(soort,ev,gen) \nonvoldoende Adj(attr,stell,verv_neut) \ncocabladeren N(soort,mv,neut) \nonderwerpt V(trans,ott,3,ev) \nstoom N(soort,ev,neut) \nsamenstellen V(trans,inf,subst) \nlikkebaardend V(intrans,teg_dw,onverv) \nsmakelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nstoot V(trans,ott,3,ev) \nfrequentie N(soort,ev,neut) \nversierde V(trans,verl_dw,verv_neut) \nKun V(hulp,ott,2,ev) \nverpleegsters N(soort,mv,neut) \nplaatsnamen N(soort,mv,neut) \nbovenhand N(soort,ev,neut) \nwijnrood Adj(attr,stell,onverv) \nStofzuigen V(intrans,inf) \nwerkzaamheden N(soort,mv,neut) \njongere Adj(attr,vergr,verv_neut) Adj(zelfst,vergr,verv_neut)\nbaseerde V(trans,ovt,1_of_2_of_3,ev) \nverschillende Pron(onbep,neut,attr) V(intrans,teg_dw,verv_neut)\nwachtkamers N(soort,mv,neut) \nuittrok V(trans,ovt,1_of_2_of_3,ev) \nkoemest N(soort,ev,neut) \nadresseren V(trans,inf) \nhandvol N(soort,ev,neut) \nverwaarlozing N(soort,ev,neut) \nvanwege Prep(voor) \ngroepen N(soort,mv,neut) \nanderhalfjarigen Adj(zelfst,stell,verv_mv) \nvocals N(soort,mv,neut) \nzeurt V(intrans,ott,3,ev) \nfotografen N(soort,mv,neut) \ntypen N(soort,mv,neut) \nvertelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\ntypes N(soort,mv,neut) \nkliniekachtige Adj(attr,stell,verv_neut) \ngekartelde V(trans,verl_dw,verv_neut) \nDeventenaren N(soort,mv,neut) \nweggebroken V(trans,verl_dw,onverv) \nversieren V(intrans,inf) \nZie V(trans,imp) \nweerstanden N(soort,mv,neut) \nonbetwistbare Adj(attr,stell,verv_neut) \nZij Pron(per,3,ev_of_mv,nom) \nerotische Adj(attr,stell,verv_neut) \ncentrale Adj(attr,stell,verv_neut) \nallerlei Pron(onbep,neut,attr) \nstraathoek N(soort,ev,neut) \nflauwekul N(soort,ev,neut) \nwol N(soort,ev,neut) \nmolestatie N(soort,ev,neut) \nwon V(trans,ovt,1_of_2_of_3,ev) \nvaart N(soort,ev,neut) \nZit V(trans,imp) \nverdraagzaamheid N(soort,ev,neut) \ngeparfumeerd V(trans,verl_dw,onverv) \nwou V(hulp_of_kopp,ovt,1_of_2_of_3,ev) \nvrijdags N(eigen,ev,gen) \nzelfdiscipline N(soort,ev,neut) \nmacadam N(soort,ev,neut) \ngedachten N(soort,mv,neut) \nbaarde V(trans,ovt,1_of_2_of_3,ev) \nwerelddelen N(soort,mv,neut) \nkwam 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)\nClaus N(eigen,ev,neut) \neventueel Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ntorsend V(intrans,teg_dw,onverv) \ndoorratelen V(intrans,ott,1_of_2_of_3,mv) \nWurmbrand N(eigen,ev,neut) \nvoorloper N(soort,ev,neut) \nwerkstuk N(soort,ev,neut) \nsnijd V(trans,imp) \nkenmerk N(soort,ev,neut) \nuitzet V(intrans,ott,3,ev) \nstorm N(soort,ev,neut) \narchitect N(soort,ev,neut) \nrondhangen V(intrans,inf) \npistool N(soort,ev,neut) \nstort V(refl,ott,1,ev) \nbeperken V(refl,inf) V(trans,inf)\nWijnkeldertje N(eigen,ev,neut) \nmensen-die-er-nog-nietaan-toe-zijn N(soort,mv,neut) \ntabletten N(soort,mv,neut) \nmond N(soort,ev,neut) \nHollands Adj(zelfst,stell,onverv) Adj(attr,stell,verv_gen) Adj(attr,stell,onverv)\nduurt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nSonneveld N(eigen,ev,neut) \nbejaarden Adj(zelfst,stell,verv_mv) \nvierhoog Adv(gew,geen_func,stell,onverv) \nschilderen V(trans,inf,subst) V(intrans,ott,1_of_2_of_3,mv)\nheld N(soort,ev,neut) \nAragon N(eigen,ev,neut) \nhele Adj(attr,stell,verv_neut) Adv(gew,geen_func,stell,verv_neut)\nplank N(soort,ev,neut) \neeuwen N(soort,mv,neut) \nHeilig Adj(attr,stell,onverv) \nbedoeld V(trans,verl_dw,onverv) \nhoereren V(intrans,inf) \ntuintafel N(soort,ev,neut) \nhuichelarij N(soort,ev,neut) \ngedetineerd V(trans,verl_dw,onverv) \nvochtig-glanzend Adj(attr,stell,onverv) \nplant N(soort,ev,neut) \nreilt V(intrans,ott,3,ev) \ngebouwtje N(soort,ev,neut) \n8-wielige Adj(attr,stell,verv_neut) \nopgewekte Adj(attr,stell,verv_neut) \ninhoud N(soort,ev,neut) \nKaukonen N(eigen,ev,neut) \nteergroene Adj(attr,stell,verv_neut) \nLoesje N(eigen,ev,neut) \noverblijft V(intrans,ott,3,ev) \nALLE Pron(onbep,neut,attr) \nbedoelt V(trans,ott,3,ev) \npestbui N(soort,ev,neut) \nRhuys N(eigen,ev,neut) \nLangzaam Adj(adv,stell,onverv) \nGrijze Adj(attr,stell,verv_neut) \nhelpen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\nzaterdagavond N(soort,ev,neut) \nmooi Adj(attr,stell,onverv) \nwerkstukje N(soort,ev,neut) \nkassie-kijken V(intrans,inf) \nzinnen N(soort,mv,neut) \nachtereenvolgende Adj(attr,stell,verv_neut) \nonoprecht Adj(attr,stell,onverv) \nlaatst-verschenen Adj(attr,stell,onverv) \nFIOM-organisaties N(soort,mv,neut) \nwilson N(eigen,ev,neut) \nwedstrijd N(soort,ev,neut) \ndoorstroming N(soort,ev,neut) \ngevestigde V(trans,verl_dw,verv_neut) \neeuwenlang Adj(adv,stell,onverv) \nwiens Pron(betr,neut,zelfst) \ngesmade V(trans,verl_dw,verv_neut) \ngymnastische Adj(attr,stell,verv_neut) \nmaximaal Adj(adv,stell,onverv) \nfeest N(soort,ev,neut) \nHaagse N(eigen,ev,neut) Adj(attr,stell,verv_neut)\nthermastollen N(soort,mv,neut) \nbruidsjurk N(soort,ev,neut) \nHarriet N(eigen,ev,neut) \nstaal N(soort,ev,neut) \nstaan 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)\nvakbeweging N(soort,ev,neut) \nAmsterdamse Adj(attr,stell,verv_neut) \nkwaliteiten N(soort,mv,neut) \ninterview N(soort,ev,neut) \nstaat V(intrans,ott,3,ev) V(hulp,ott,3,ev) V(intrans,ott,2,ev) N(soort,ev,neut)\nvoorstelling N(soort,ev,neut) \nzigeunerorkest N(soort,ev,neut) \nlevend V(intrans,teg_dw,onverv) \ngroepje N(soort,ev,neut) \nLeopold N(eigen,ev,neut) \nkruiden N(soort,mv,neut) \ngeldtransporten N(soort,mv,neut) \nfantasiepanty N(soort,ev,neut) \nscheurde V(trans,ovt,1_of_2_of_3,ev) \nverwikkelingen N(soort,mv,neut) \npremiewoning N(soort,ev,neut) \nvoorlopig Adj(adv,stell,onverv) \nscheepsratten N(soort,mv,neut) \ngemaakt V(trans,verl_dw,onverv) V(refl,verl_dw,onverv)\ngeduwd V(trans,verl_dw,onverv) \nverdunde V(trans,verl_dw,verv_neut) \nconfectiewereld N(soort,ev,neut) \nstaren V(intrans,inf) V(refl,ott,1_of_2_of_3,mv)\nopzichte N(soort,ev,dat) \ngenieten V(intrans,inf) V(trans,inf)\ngedistilleerd N(soort,ev,neut) \ngoreng N(eigen,ev,neut) \nAlcoholisme N(soort,ev,neut) \nacceptabel Adj(attr,stell,onverv) \nBakersfeld N(eigen,ev,neut) \nPius N(eigen,ev,neut) \nQuinze N(eigen,ev,neut) \nVessem N(eigen,ev,neut) \nmonoloog N(soort,ev,neut) \nAardappels N(soort,mv,neut) \npaviljoen N(soort,ev,neut) \nAirplane N(eigen,ev,neut) \nafhoudend V(intrans,teg_dw,onverv) \nomkeerbaarheid N(soort,ev,neut) \nDaarvan Adv(pron,aanw) \ninbreken V(intrans,inf) \nministerie N(soort,ev,neut) \nleven N(soort,ev,neut) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf)\nschilderij N(soort,ev,neut) \nhuizenrijen N(soort,mv,neut) \nhaartint N(soort,ev,neut) \nnadat Conj(onder,met_fin) \neeuwig Adj(adv,stell,onverv) \nviolet Adj(zelfst,stell,onverv) \nbende N(soort,ev,neut) \nwoonwagen N(soort,ev,neut) \nbeperkt V(trans,verl_dw,onverv) V(refl,ott,3,ev)\naanvullingen N(soort,mv,neut) \nhardhandige Adj(attr,stell,verv_neut) \nZou V(hulp,ovt,1_of_2_of_3,ev) \neeuwige Adj(attr,stell,verv_neut) \nLazenby N(eigen,ev,neut) \ngiethars N(soort,ev,neut) \ndaardoor Adv(pron,aanw) \nplatform N(soort,ev,neut) \nsprookjesfiguur N(soort,ev,neut) \ndoorstaan V(trans,ott,1_of_2_of_3,mv) \nfilmprodukt N(soort,ev,neut) \njeugdsex N(soort,ev,neut) \nsanatorium N(soort,ev,neut) \nuitgelazerd V(trans,verl_dw,onverv) \nwedstrijden N(soort,mv,neut) \nomelet N(soort,ev,neut) \nnabije Adj(attr,stell,verv_neut) \nimpulsen N(soort,mv,neut) \nhartfuncties N(soort,mv,neut) \nvruchtbaarheid N(soort,ev,neut) \nwierp V(trans,ovt,1_of_2_of_3,ev) \nman-vrouw N(soort,ev,neut) \nherfstbloemen N(soort,mv,neut) \nhonderddertig Num(hoofd,bep,attr,onverv) \nwormen N(soort,mv,neut) \nbenen N(soort,mv,neut) \nclownsachtigs Adj(attr,stell,verv_gen) \nstortte V(trans,ovt,1_of_2_of_3,ev) \nachtte V(trans,ovt,1_of_2_of_3,ev) \nondergrondse Adj(attr,stell,verv_neut) \nValt V(intrans,ott,3,ev) \nontwerpen V(trans,inf,subst) \neventuele Adj(attr,stell,verv_neut) \neenzelfde Pron(aanw,neut,attr) \nontwerper N(soort,ev,neut) \ntrad V(intrans,ovt,1_of_2_of_3,ev) \nbelazerd V(trans,verl_dw,onverv) \nnovene N(soort,ev,neut) \ndagelijks Adj(adv,stell,onverv) N(eigen,ev,neut) Adj(attr,stell,onverv)\ntros-chrysantjes N(soort,mv,neut) \nminachtend V(intrans,teg_dw,onverv) \nvermenigvuldigen V(refl,ott,1_of_2_of_3,mv) \ntrap N(soort,ev,neut) \ninjectienaald N(soort,ev,neut) \nuitwerking N(soort,ev,neut) \nverzameld V(trans,verl_dw,onverv) \nmaag N(soort,ev,neut) \nwakker Adj(attr,stell,onverv) \nJamesy's N(eigen,ev,gen) \nvurehout N(soort,ev,neut) \nCruyff N(eigen,ev,neut) \ngevergd V(trans,verl_dw,onverv) \nmaak V(trans,ott,1,ev) V(trans,imp)\nmaal N(soort,ev,neut) \nmaan N(soort,ev,neut) \nselectie N(soort,ev,neut) \nGivenchy N(eigen,ev,neut) \nscherp Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nmaar Conj(neven) Adv(gew,geen_func,stell,onverv)\nverzamelt V(trans,ott,3,ev) \nmaat N(soort,ev,neut) \nCosta N(eigen,ev,neut) \nkijkers N(soort,mv,neut) \nwarmte N(soort,ev,neut) \nartikelen N(soort,mv,neut) \nOmsk N(eigen,ev,neut) \nbovenlaag N(soort,ev,neut) \npraten V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf)\ngeknutseld V(intrans,verl_dw,onverv) \nverzaligd Adj(adv,stell,onverv) \nopgemerkt V(trans,verl_dw,onverv) \nhieruit Adv(pron,aanw) \nEnkele Pron(onbep,neut,attr) \nJorgen N(eigen,ev,neut) \nvertroetelde V(trans,verl_dw,verv_neut) \nroods Adj(attr,stell,verv_gen) \nalgemener Adj(attr,vergr,onverv) \nSandels N(eigen,ev,neut) N(soort,ev,neut)\nKonings N(eigen,ev,neut) \nverfrommeld V(trans,verl_dw,onverv) \nstunteligheid N(soort,ev,neut) \nmannelijke Adj(attr,stell,verv_neut) \nschuldig Adj(attr,stell,onverv) \nmiles N(eigen,ev,neut) \nKinderen N(soort,mv,neut) \niem Misc(vreemd) \nkabouter N(soort,ev,neut) \nbruikbaar Adj(attr,stell,onverv) \nvolwassenen Adj(zelfst,stell,verv_mv) \nmetier N(soort,ev,neut) \nies Misc(vreemd) \nHelaas Int \nTreleaven N(eigen,ev,neut) \nlanding N(soort,ev,neut) \nzelfgemaakte Adj(attr,stell,verv_neut) \norigineel Adj(adv,stell,onverv) \nging 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)\nuitvoerige Adj(attr,stell,verv_neut) \nliteratuurlijstkeuze N(soort,ev,neut) \nCreveld N(eigen,ev,neut) \nvoorzichtig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nTanzaniaans Adj(attr,stell,onverv) \nvertroetelen V(trans,inf) \nmuilezels N(soort,mv,neut) \nzuidelijke Adj(attr,stell,verv_neut) \nkoorknapengezicht N(soort,ev,neut) \nprotestantse Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nkelder N(soort,ev,neut) \nuniversiteit N(soort,ev,neut) \nobers N(soort,mv,neut) \nNoodzakelijk Adj(attr,stell,onverv) \ngeruild V(trans,verl_dw,onverv) \nmissen V(trans,inf) \nuitzenddata N(soort,mv,neut) \nzouden V(hulp,ovt,1_of_2_of_3,mv) \nbeinvloedt V(trans,ott,3,ev) \nselectiecommissie N(soort,ev,neut) \noverspel N(soort,ev,neut) \npopulaire Adj(attr,stell,verv_neut) \nsinds Prep(voor) Conj(onder,met_fin)\nheus Adj(adv,stell,onverv) \nLam N(eigen,ev,neut) \nbezorging N(soort,ev,neut) \nMAN N(soort,ev,neut) \nShapiro N(eigen,ev,neut) \nacteurs N(soort,mv,neut) \ninnerlijk Adj(attr,stell,onverv) N(soort,ev,neut) Adj(adv,stell,onverv)\nLau N(eigen,ev,neut) \npijlen N(soort,mv,neut) \ntegenwoordig Adj(adv,stell,onverv) \nhoger Adj(attr,vergr,onverv) \ntrek N(soort,ev,neut) \npijler N(soort,ev,neut) \nrotkop N(soort,ev,neut) \nervaringen N(soort,mv,neut) \nkniebuigingen N(soort,mv,neut) \nTiel N(eigen,ev,neut) \ngeruime Adj(attr,stell,verv_neut) \nTien Num(hoofd,bep,zelfst,onverv) N(soort,ev,neut)\nopwachten V(trans,inf) \nopgepakt V(trans,verl_dw,onverv) \nverscheen V(intrans,ovt,1_of_2_of_3,ev) \njassen N(soort,mv,neut) \nbeletten V(trans,inf) \nconstateerbare Adj(attr,stell,verv_neut) \nvoorbeeldige Adj(attr,stell,verv_neut) \nlindebomen N(soort,mv,neut) \nEerste Num(rang,bep,attr,onverv) \nlachjes N(soort,mv,neut) \nseksen V(intrans,inf) \nbuitenland N(soort,ev,neut) \nverdacht V(trans,verl_dw,onverv) Adj(attr,stell,onverv)\nacht Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) V(trans,ott,1,ev)\ntafel N(soort,ev,neut) \nomhoog Adv(gew,geen_func,stell,onverv) \nzojuist Adv(gew,geen_func,stell,onverv) \nmoesten V(hulp,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nbedienen V(refl,inf) V(trans,inf)\ngrootste Adj(attr,overtr,verv_neut) Adj(zelfst,stell,verv_neut)\ncameraman N(soort,ev,neut) \npanty N(soort,ev,neut) \nschatting N(soort,ev,neut) \nwerkkamers N(soort,mv,neut) \ndieptepunt N(soort,ev,neut) \nrakkerd N(soort,ev,neut) \ndevies N(soort,ev,neut) \nwoedende Adj(attr,stell,verv_neut) \nminiem Adj(attr,stell,onverv) \nrepareren V(trans,inf) \nblijven 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)\nAmstelhotel N(eigen,ev,neut) \nnarigheid N(soort,ev,neut) \ngreep V(trans,ovt,1_of_2_of_3,ev) \nhumor N(soort,ev,neut) \nandere Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nverzoend V(intrans,verl_dw,onverv) \nonstuimige Adj(attr,stell,verv_neut) \nstraatje N(soort,ev,neut) \nrooie Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut)\nregime N(soort,ev,neut) \ntelefoon N(soort,ev,neut) \nGods N(eigen,ev,gen) \nNapoleontische Adj(attr,stell,verv_neut) \ngehuil N(soort,ev,neut) \nwagen N(soort,ev,neut) V(intrans,inf) N(soort,mv,neut) V(trans,inf)\nanders Adv(gew,geen_func,stell,onverv) Pron(onbep,gen,attr)\nraakte 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)\nlosgemaakt V(trans,verl_dw,onverv) \nomstandigheden N(soort,mv,neut) \nTucker N(eigen,ev,neut) \nhartekreet N(soort,ev,neut) \ngespeculeerd V(intrans,verl_dw,onverv) \nGoed Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nImmers Adv(gew,geen_func,stell,onverv) \nZoiets Pron(aanw,neut,zelfst) \ndijbeen N(soort,ev,neut) \nLassagne N(eigen,ev,neut) \nzilver Adj(attr,stell,onverv) N(soort,ev,neut)\ngedrukt V(trans,verl_dw,onverv) \novertrokken V(trans,verl_dw,onverv) \nijs N(soort,ev,neut) \nherinnering N(soort,ev,neut) \nstoelen N(soort,mv,neut) \nBech N(eigen,ev,neut) \nseparatistische Adj(attr,stell,verv_neut) \nvrouwelijke Adj(attr,stell,verv_neut) \nBeck N(eigen,ev,neut) \ngillen V(intrans,inf) \nhoeven V(hulp,ott,1_of_2_of_3,mv) \nLeg V(trans,imp) \npartner N(soort,ev,neut) \ngedeeltelijk Adj(adv,stell,onverv) \ngepolijste V(trans,verl_dw,verv_neut) \nhoever Adv(gew,betr) \nobservatiekliniek N(soort,ev,neut) \noplage N(soort,ev,neut) \ngeschoeid V(trans,verl_dw,onverv) \nbenadrukt V(trans,verl_dw,onverv) \nverblijf N(soort,ev,neut) \nbioscoop N(soort,ev,neut) \nLes N(eigen,ev,neut) \nwereld N(soort,ev,neut) \nLet V(intrans,imp) \nvetzuren N(soort,mv,neut) \nTexas-idee N(soort,ev,neut) \nMET Prep(voor) \npaters N(soort,mv,neut) \noktobernummer N(soort,ev,neut) \nstamt V(intrans,ott,3,ev) \nwoonwagens N(soort,mv,neut) \nmoorddadig Adj(attr,stell,onverv) \naantrekken V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nkantjes N(soort,mv,neut) \ngeschenke N(soort,ev,dat) \nverorberd V(trans,verl_dw,onverv) \namusement N(soort,ev,neut) \nstand N(soort,ev,neut) \nberoemd Adj(attr,stell,onverv) \nRenkel N(eigen,ev,neut) \nomvat V(trans,ott,3,ev) \nschat V(trans,ott,1,ev) V(trans,ott,3,ev)\nAngerstein N(eigen,ev,neut) \nZorg V(trans,imp) \nuitgekozen V(trans,verl_dw,onverv) \nEindelijk Adv(gew,geen_func,stell,onverv) \noriginele Adj(attr,stell,verv_neut) \nzenuwstelsel N(soort,ev,neut) \nVlaming N(soort,ev,neut) \nTijd N(soort,ev,neut) \nluchtpiraterij N(soort,ev,neut) \nkrijgt V(trans,ott,3,ev) V(trans,ott,2,ev)\nrijden V(intrans,inf) \nuitvoering N(soort,ev,neut) \nonuitgesproken Adj(attr,stell,onverv) \nzusje N(soort,ev,neut) \npassagiers N(soort,mv,neut) \nhoekige Adj(attr,stell,verv_neut) \nAchter Prep(voor) N(soort,ev,neut)\nenergieker Adj(attr,vergr,onverv) \nveertig Num(hoofd,bep,attr,onverv) \nbepaalde Pron(onbep,neut,attr) V(trans,verl_dw,verv_neut)\nkoffer N(soort,ev,neut) \nspringt V(intrans,ott,3,ev) \nmateloos Adj(adv,stell,onverv) \nmiddeleeuws Adj(attr,stell,onverv) \ngeboorte N(soort,ev,neut) \nverrekijkers N(soort,mv,neut) \nserveren V(trans,inf) \nschepen N(soort,mv,neut) \nweigerachtige Adj(attr,stell,verv_neut) \noorsprong N(soort,ev,neut) \ntweemaal Adv(gew,geen_func,stell,onverv) \nbezichtigen V(trans,inf) \ndansen V(intrans,inf) \nleed V(trans,ovt,1_of_2_of_3,ev) \nernaar Adv(pron,onbep) \nPortugese Adj(attr,stell,verv_neut) \nleef V(intrans,ott,2,ev) V(intrans,ott,1,ev)\nleeg Adj(attr,stell,onverv) \nverfilmd V(trans,verl_dw,onverv) \nverstreken V(intrans,ovt,1_of_2_of_3,mv) \nverkeersweg N(soort,ev,neut) \nleek V(hulp_of_kopp,ovt,1_of_2_of_3,ev) N(soort,ev,neut) V(intrans,ovt,1_of_2_of_3,ev)\nBoekarest N(eigen,ev,neut) \nMeyden N(eigen,ev,neut) \nDENKT V(trans,ott,3,ev) \nleer N(soort,ev,neut) \nlees V(trans,ott,1,ev) \npersoonlijke Adj(attr,stell,verv_neut) \ntoneelspeelkunst N(soort,ev,neut) \ngeluidstechnicus N(soort,ev,neut) \nfactoren N(soort,mv,neut) \nduel N(soort,ev,neut) \nkeelgat N(soort,ev,neut) \nslachtoffers N(soort,mv,neut) \nstapt V(intrans,ott,3,ev) \nhypocrisie N(soort,ev,neut) \nkunst N(soort,ev,neut) \nzeven Num(hoofd,bep,attr,onverv) N(soort,ev,neut)\ndoorstane V(trans,verl_dw,verv_neut) \nluisteraars N(soort,mv,neut) \nLuther N(eigen,ev,neut) \nsplinternieuwe Adj(attr,stell,verv_neut) \nuitvoerbaar Adj(attr,stell,onverv) \nopstelt V(refl,ott,2,ev) \nverhelpen V(trans,inf) \ntraden V(intrans,ovt,1_of_2_of_3,mv) \nzindelijk Adj(attr,stell,onverv) \nverlinkt V(trans,verl_dw,onverv) \nverschenen V(intrans,ovt,1_of_2_of_3,mv) V(intrans,verl_dw,onverv)\nLip Misc(vreemd) \nmidirokken N(soort,mv,neut) \nliggende V(intrans,teg_dw,verv_neut) \ninterpretatie N(soort,ev,neut) \ntoelegde V(intrans,ovt,1_of_2_of_3,ev) \n1300 Num(hoofd,bep,attr,onverv) \nculturen N(soort,mv,neut) \nbehoeftigheid N(soort,ev,neut) \nopspaarde V(trans,ovt,1_of_2_of_3,ev) \nglijdt V(intrans,ott,3,ev) \nMarilyn N(eigen,ev,neut) \nZweden N(soort,mv,neut) N(eigen,ev,neut)\nvertegenwoordigt V(trans,ott,3,ev) \nbehendigheid N(soort,ev,neut) \nlege Adj(attr,stell,verv_neut) \nmama N(soort,ev,neut) \nzaterdag N(eigen,ev,neut) \nongelukkige Adj(attr,stell,verv_neut) \no.a. Adv(gew,geen_func,stell,onverv) \nsappige Adj(attr,stell,verv_neut) \nhoogbegaafden Adj(zelfst,stell,verv_mv) \nmalicieus Adj(adv,stell,onverv) \nessays N(soort,mv,neut) \nLyme N(eigen,ev,neut) \ntegenover Prep(voor) Adv(deel_v)\njammer Adj(attr,stell,onverv) \nbaldadigheden N(soort,mv,neut) \nvooruitlopen V(intrans,inf) \nlegt V(trans,ott,3,ev) \nmodel N(soort,ev,neut) \ndiegenen Pron(aanw,neut,zelfst) \nzomer N(soort,ev,neut) \nlijnen N(soort,mv,neut) \ngistcellen N(soort,mv,neut) \nBezittingen N(soort,mv,neut) \nontspanning N(soort,ev,neut) \nEileen N(eigen,ev,neut) \nir. N(eigen,ev,neut) \nander Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\n9-jarig Adj(attr,stell,onverv) \ndoodgeschoten V(trans,verl_dw,onverv) \nherdenking N(soort,ev,neut) \nkransslagaderen N(soort,mv,neut) \nTine N(eigen,ev,neut) \nterrasje N(soort,ev,neut) \nuitnodigde V(trans,ovt,1_of_2_of_3,ev) \nbandrecorder N(soort,ev,neut) \nlijntje N(soort,ev,neut) \nschreeuwend V(intrans,teg_dw,onverv) \nkoffie N(soort,ev,neut) \ntoevallig Adj(adv,stell,onverv) \nparanoide Adj(attr,stell,onverv) \nglazen N(soort,mv,neut) Adj(attr,stell,onverv)\nvervaardiger N(soort,ev,neut) \nklein Adj(attr,stell,onverv) \nzuivere Adj(attr,stell,verv_neut) \nwuifde V(trans,ovt,1_of_2_of_3,ev) \nonrustig Adj(attr,stell,onverv) \nbesprekingen N(soort,mv,neut) \nsmaakvolle Adj(attr,stell,verv_neut) \ngroenten N(soort,mv,neut) \ntoepassing N(soort,ev,neut) \ntrof V(trans,ovt,1_of_2_of_3,ev) \nfantasierijk Adj(attr,stell,onverv) \nechte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\ntrok V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nBoeddhistische Adj(attr,stell,verv_neut) \nongezouten Adj(attr,stell,onverv) \nmetamorfose N(soort,ev,neut) \nStigwood N(eigen,ev,neut) \ngekke Adj(zelfst,stell,verv_neut) \nparadijs N(soort,ev,neut) \nonderhoud N(soort,ev,neut) \nAchttien Num(hoofd,bep,attr,onverv) \nboter N(soort,ev,neut) Adj(attr,stell,onverv)\nbezocht V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,ev)\nverkoopt V(trans,ott,3,ev) \nwitte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nduizend Num(hoofd,bep,attr,onverv) \ngrens N(soort,ev,neut) \nOlympische N(eigen,mv,neut) \nkopieus Adj(adv,stell,onverv) \nvoorbij Adv(deel_v) Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ntalent N(soort,ev,neut) \ndoordat Conj(onder,met_fin) \nduit N(soort,ev,neut) \nbijgestaan V(trans,verl_dw,onverv) \nevenwel Adv(gew,geen_func,stell,onverv) \nwolkjes N(soort,mv,neut) \npublicaties N(soort,mv,neut) \nbenut V(trans,verl_dw,onverv) \nschitterend Adj(attr,stell,onverv) \nhuwelijksreisdoel N(soort,ev,neut) \nanalyseren V(trans,inf) \nflinke Adj(attr,stell,verv_neut) \nbelangstelling N(soort,ev,neut) \nist Misc(vreemd) \neieren N(soort,mv,neut) \nBelg N(soort,ev,neut) \nBoheemse Adj(attr,stell,verv_neut) \nmatras N(soort,ev,neut) \nbeoogt V(hulp,ott,3,ev) \nBell N(eigen,ev,neut) \nwederzijdse Adj(attr,stell,verv_neut) \nopperde V(trans,ovt,1_of_2_of_3,ev) \npargyline N(soort,ev,neut) \nverachtte V(trans,ovt,1_of_2_of_3,ev) \nzekere Pron(onbep,neut,attr) Adj(attr,stell,verv_neut)\nivoorkleurige Adj(attr,stell,verv_neut) \nRooymans N(eigen,ev,neut) \nmanifesteert V(refl,ott,3,ev) \nschil V(trans,imp) \nstotteren V(intrans,inf) \nterugtocht N(soort,ev,neut) \nmedestanders N(soort,mv,neut) \nschip N(soort,ev,neut) \nhypothese N(soort,ev,neut) \nkakelkont N(soort,ev,neut) \nRutgers N(eigen,ev,neut) \npolitieagenten N(soort,mv,neut) \nCasa N(eigen,ev,neut) \ntegenin Adv(deel_v) \nwoeste Adj(attr,stell,verv_neut) \nmusisie N(soort,mv,neut) \nminnaressen N(soort,mv,neut) \nvogel N(soort,ev,neut) \nverdrukking N(soort,ev,neut) \nmedemens N(soort,ev,neut) \ncollegebanken N(soort,mv,neut) \njuist Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nofficieel Adj(adv,stell,onverv) \nallebei Num(hoofd,bep,zelfst,onverv) \ndrongen V(intrans,ovt,1_of_2_of_3,mv) \nspraakgebruik N(soort,ev,neut) \nFabelon N(eigen,ev,neut) \ngeschoten V(intrans,verl_dw,onverv) \nmedische Adj(attr,stell,verv_neut) \nlevensgenieter N(soort,ev,neut) \ninlaat V(refl,ott,2,ev) \nideeen N(soort,mv,neut) \ndoodvallen V(intrans,inf) \nuitbundiger Adj(adv,vergr,onverv) \ntotaalbedrag N(soort,ev,neut) \nachtergronden N(soort,mv,neut) \ngezag N(soort,ev,neut) \nLos N(eigen,ev,neut) \naanbod N(soort,ev,neut) \ngeheugen N(soort,ev,neut) \nWashington N(eigen,ev,neut) \npremisse N(soort,ev,neut) \nLou N(eigen,ev,neut) \naangetaste V(trans,verl_dw,verv_neut) \nbellen V(trans,ott,1_of_2_of_3,mv) \nanti-stof N(soort,ev,neut) \ngangen N(soort,mv,neut) \ngeserveerde V(trans,verl_dw,verv_neut) \nondervoede V(trans,verl_dw,verv_neut) \nVtekens N(soort,mv,neut) \nloonbelasting N(soort,ev,neut) \nbourgeois Misc(vreemd) \nfascineren V(intrans,inf) \ndwaling N(soort,ev,neut) \nbijster Adv(gew,geen_func,stell,onverv) \ngehesen V(trans,verl_dw,onverv) \nFritz N(eigen,ev,neut) \nbreder Adj(attr,vergr,onverv) \ninterpolvestigingen N(soort,mv,neut) \ndateert V(intrans,ott,3,ev) \nreageren V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nkarakterfouten N(soort,mv,neut) \npulletje N(soort,ev,neut) \nluister V(intrans,ott,1,ev) \nverbijsterd V(trans,verl_dw,onverv) \naangeboden V(trans,verl_dw,onverv) \nmodezaakjes N(soort,mv,neut) \ninformeerde V(trans,ovt,1_of_2_of_3,ev) \nonaardse Adj(attr,stell,verv_neut) \nbriljanten N(soort,mv,neut) \ngeneraties N(soort,mv,neut) \nnagels N(soort,mv,neut) \nWetenschappelijk Adj(attr,stell,onverv) \nmarconist N(soort,ev,neut) \nhartelust N(soort,ev,neut) \ngekeerd V(trans,verl_dw,onverv) V(refl,verl_dw,onverv)\nopgeheven V(trans,verl_dw,onverv) \nspectaculaire Adj(attr,stell,verv_neut) \nveroudering N(soort,ev,neut) \nvelerlei Pron(onbep,neut,attr) \ncollecties N(soort,mv,neut) \naanspreken V(trans,inf) \nmate N(soort,ev,neut) \nhemelse Adj(attr,stell,verv_neut) \nz'n Pron(bez,3,ev,neut,attr) \nmiddag N(soort,ev,neut) \ngroentenafval N(soort,ev,neut) \ninzinking N(soort,ev,neut) \nfiets N(soort,ev,neut) \nErlkonig N(eigen,ev,neut) \nvrouwtje N(soort,ev,neut) \nWilson N(eigen,ev,neut) \nliedje N(soort,ev,neut) \ntirannie N(soort,ev,neut) \nvoorgekomen V(intrans,verl_dw,onverv) \ngehuwd V(intrans,verl_dw,onverv) \nnummer N(soort,ev,neut) \ndubbelzinnige Adj(attr,stell,verv_neut) \npriveleven N(soort,ev,neut) \nmateloze Adj(attr,stell,verv_neut) \nMarkelo N(eigen,ev,neut) \nuiteraard Adv(gew,geen_func,stell,onverv) \ntekort N(soort,ev,neut) Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nfantastisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nvoorschijn N(soort,ev,neut) \nBouwman N(eigen,ev,neut) \npakken V(trans,inf) \nrechterzijde N(soort,ev,neut) \nbunders N(soort,mv,neut) \nafdoend V(intrans,teg_dw,onverv) \naanmerking N(soort,ev,neut) \ngeregeld V(trans,verl_dw,onverv) Adj(adv,stell,onverv)\nschrikwekkende Adj(attr,stell,verv_neut) \njaarproduktie N(soort,ev,neut) \ngevolgen N(soort,mv,neut) \nBantammerstraat N(eigen,ev,neut) \ndaarbuiten Adv(pron,aanw) \npsycholoog N(soort,ev,neut) \narm- N(soort,mv,neut) \nkalmer Adj(adv,vergr,onverv) \nEuropa N(eigen,ev,neut) \nstadje N(soort,ev,neut) \npagina's N(soort,mv,neut) \nversterken V(intrans,inf) \nbedrijf N(soort,ev,neut) \nluchtzak N(soort,ev,neut) \nkijk V(trans,imp) V(intrans,ott,1,ev)\nsterft V(intrans,ott,3,ev) \ntopgroepen N(soort,mv,neut) \nhalfelf Num(hoofd,bep,zelfst,onverv) \nhengelaars N(soort,mv,neut) \nvoorgevoel N(soort,ev,neut) \nDikwijls Adv(gew,geen_func,stell,onverv) \nborstbeelden N(soort,mv,neut) \nvoortkomt V(intrans,ott,3,ev) \nbewonderenswaardig Adj(attr,stell,onverv) \ndupe N(soort,ev,neut) \noververmoeide Adj(attr,stell,verv_neut) \npotten N(soort,mv,neut) \nbindt V(refl,ott,3,ev) \nCarven N(eigen,ev,neut) \ngegronde Adj(attr,stell,verv_neut) \nlengte N(soort,ev,neut) \nBerg V(trans,imp) \nbewezen V(trans,verl_dw,onverv) \ngezet V(trans,verl_dw,onverv) \npenny N(soort,ev,neut) \ngadegeslagen V(trans,verl_dw,onverv) \nwraak N(soort,ev,neut) \nBert N(eigen,ev,neut) \nTerecht Adv(gew,geen_func,stell,onverv) \nveranderd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nexecutie N(soort,ev,neut) \nbiografieen N(soort,mv,neut) \nHAAR Pron(per,3,ev,dat_of_acc) \nGaat V(intrans,ott,3,ev) V(trans,imp)\nschop N(soort,ev,neut) \nkleine Adj(attr,stell,verv_neut) N(eigen,ev,neut)\nhemzelf Pron(per,3,ev,dat_of_acc) \noeiii Int \nweeshuizen N(soort,mv,neut) \nschot N(soort,ev,neut) \narme Adj(attr,stell,verv_neut) \nkanten N(soort,mv,neut) \n1.5 Num(hoofd,bep,attr,onverv) \nCharles N(eigen,ev,gen) \nbaseball N(soort,ev,neut) \nCharley N(eigen,ev,neut) \nkleins Adj(attr,stell,verv_gen) \ncafes N(soort,mv,neut) \namateurs N(soort,mv,neut) \nkleding N(soort,ev,neut) \nminimale Adj(attr,stell,verv_neut) \ncomplimentje N(soort,ev,neut) \nophield V(intrans,ovt,1_of_2_of_3,ev) \nneutrale Adj(attr,stell,verv_neut) \nberoepsfotografen N(soort,mv,neut) \narriveren V(intrans,ott,1_of_2_of_3,mv) \nbevinding N(soort,ev,neut) \nBaldwin N(eigen,ev,neut) \nkilo N(soort,ev,neut) \naangehaald V(trans,verl_dw,onverv) \nmaxi N(soort,ev,neut) \nafdelingen N(soort,mv,neut) \naantonen V(trans,ott,1_of_2_of_3,mv) \nproducer N(soort,ev,neut) \narbeid N(soort,ev,neut) \nmiddel N(soort,ev,neut) \nongelijk N(soort,ev,neut) \nScheveningen N(eigen,ev,neut) \nLynda N(eigen,ev,neut) \nmidden Adv(gew,geen_func,stell,onverv) N(soort,ev,neut)\nverfijning N(soort,ev,neut) \nlezers N(soort,mv,neut) \nZams N(eigen,ev,neut) \ndure Adj(attr,stell,verv_neut) \nweigerde V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\ndurf V(intrans,ott,1,ev) V(hulp,ott,1,ev) N(soort,ev,neut)\npastores N(soort,mv,neut) \nzoeven Adv(gew,geen_func,stell,onverv) \nkruidenboter N(soort,ev,neut) \ngeestelijke Adj(attr,stell,verv_neut) \nlandbouwmachines N(soort,mv,neut) \ndurp N(soort,ev,neut) \nschuldvraag N(soort,ev,neut) \nweggeworpen V(trans,verl_dw,onverv) \nuitbetalen V(trans,inf) \nZuid-Afrika N(eigen,ev,neut) \naardige Adj(attr,stell,verv_neut) \nMiguel N(eigen,ev,neut) \nallen Pron(onbep,neut,zelfst) \nklets N(soort,ev,neut) \ngedurende Prep(voor) \nuitzendbureau N(soort,ev,neut) \naller Pron(onbep,gen,zelfst) \nvijfendertig Num(hoofd,bep,attr,onverv) \nspelen V(intrans,inf) V(intrans,inf,subst) V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nalles Pron(onbep,neut,zelfst) \n100 Num(hoofd,bep,attr,onverv) N(eigen,ev,neut)\nvoorlezen V(intrans,inf) \nvallen V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf)\n104 Num(hoofd,bep,attr,onverv) \nSpuistraat N(eigen,ev,neut) \nKamer N(eigen,ev,neut) \ndanszaal N(soort,ev,neut) \ndanste V(intrans,ovt,1_of_2_of_3,ev) \n107 Num(hoofd,bep,zelfst,onverv) \nvingers N(soort,mv,neut) \nscheldbrieven N(soort,mv,neut) \nweigeren V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\ngelakte V(trans,verl_dw,verv_neut) \ntafreel N(soort,ev,neut) \nkind N(soort,ev,neut) \ndenken 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)\nhoeveelheden N(soort,mv,neut) \nBourgondische Adj(attr,stell,verv_neut) \nbendeleden N(soort,mv,neut) \nkleur N(soort,ev,neut) \nLivingston N(eigen,ev,neut) \nbenutte V(trans,ovt,1_of_2_of_3,ev) \nSexualiteit N(eigen,ev,neut) \nKoran N(eigen,ev,neut) \nKroonraad N(soort,ev,neut) \nbemoeien V(refl,inf) \nsterke Adj(attr,stell,verv_neut) \nbadplaats N(soort,ev,neut) \nterugkrijgen V(trans,inf) \ngebaar N(soort,ev,neut) \ngezin N(soort,ev,neut) \ntweeenveertigjarige Adj(attr,stell,verv_neut) \nverpauperde V(intrans,verl_dw,verv_neut) \nhiervan Adv(pron,aanw) \nwerking N(soort,ev,neut) \nonder Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv)\nvondsten N(soort,mv,neut) \nkonklusie N(soort,ev,neut) \nvonden V(trans,ovt,1_of_2_of_3,mv) \nleuk Adj(attr,stell,onverv) \npassief Adj(attr,stell,onverv) \nuitgedoste V(trans,verl_dw,verv_neut) \nverwijderd V(trans,verl_dw,onverv) \ninderdaad Adv(gew,geen_func,stell,onverv) \n120 Num(hoofd,bep,attr,onverv) \n121 Num(hoofd,bep,attr,onverv) \ngebouw N(soort,ev,neut) \noogluikend Adj(adv,stell,onverv) \ntomaten N(soort,mv,neut) \nwachtkamer N(soort,ev,neut) \ntoevoer N(soort,ev,neut) \nbezorgt V(trans,ott,3,ev) \nduur N(soort,ev,neut) Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nfolder N(soort,ev,neut) \nexcursies N(soort,mv,neut) \nliters N(soort,mv,neut) \ngebaseerd V(trans,verl_dw,onverv) \ntwaalf Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\necho N(soort,ev,neut) \nhuwelijkscadeaus N(soort,mv,neut) \nhuiverde V(intrans,ovt,1_of_2_of_3,ev) \npropaganda N(soort,ev,neut) \nMasters N(eigen,ev,neut) \ngekookte V(trans,verl_dw,verv_neut) \naangezien Conj(onder,met_fin) \necht Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nBelvedere N(eigen,ev,neut) \nkerken N(soort,mv,neut) \nomspringen V(intrans,inf) \nU.S.A. N(eigen,ev,neut) \nresidentie N(soort,ev,neut) \nomloop N(soort,ev,neut) \noverdag Adv(gew,geen_func,stell,onverv) \nmagazine N(soort,ev,neut) \nbuisje N(soort,ev,neut) \nduidelijke Adj(attr,stell,verv_neut) \n12e Num(rang,bep,attr,onverv) \ngeweigerd V(trans,verl_dw,onverv) \ndrijft V(trans,ott,3,ev) \ndiscussies N(soort,mv,neut) \ndoorlopend V(intrans,teg_dw,onverv) \nonverschilligheid N(soort,ev,neut) \ntotdat Conj(onder,met_fin) \n20-jarige Adj(attr,stell,verv_neut) \nJokers N(eigen,mv,neut) \nduiken V(intrans,inf) \n22ste Num(rang,bep,zelfst,onverv) \n147 Num(hoofd,bep,zelfst,onverv) \ndoorgehaald V(trans,verl_dw,onverv) \nevolueren V(intrans,inf) \ncontactadvertenties N(soort,mv,neut) \ngeluid N(soort,ev,neut) \nHAHA Int \ngelijke Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nafwijkt V(intrans,ott,3,ev) \nkeurige Adj(attr,stell,verv_neut) \nboerde V(intrans,ovt,1_of_2_of_3,ev) \nKorea N(eigen,ev,neut) \nwegen N(soort,mv,neut) \nuiterst Adj(adv,stell,onverv) \nkwis-meester N(soort,ev,neut) \ningetogenheid N(soort,ev,neut) \nuitgesteld V(trans,verl_dw,onverv) \nbrief N(soort,ev,neut) \npanty's N(soort,mv,neut) \n150 Num(hoofd,bep,attr,onverv) \nbedrading N(soort,ev,neut) \ndemode Adj(attr,stell,onverv) \nKruis N(eigen,ev,neut) \nonbenulliger Adj(attr,vergr,onverv) \nski's N(soort,mv,neut) \nstoeltjes N(soort,mv,neut) \ngedragen V(trans,verl_dw,onverv) V(refl,inf)\nvoetbalgevecht N(soort,ev,neut) \nverbreiders N(soort,mv,neut) \nmelding N(soort,ev,neut) \ngeschrokken V(intrans,verl_dw,onverv) \nenzovoort Adv(gew,geen_func,stell,onverv) \nRauschenberg N(eigen,ev,neut) \ngepaster V(trans,verl_dw,verv_vergr) \nafgezaagde Adj(attr,stell,verv_neut) \nwaarmee Adv(pron,vrag) \narts N(soort,ev,neut) \nIjszee N(eigen,ev,neut) \npharmacie N(soort,ev,neut) \nAndere Pron(onbep,neut,attr) \nverwoestende V(intrans,teg_dw,verv_neut) \nraken V(intrans,inf) V(trans,inf)\nTwente N(eigen,ev,neut) \ngehandhaafd V(trans,verl_dw,onverv) \nboeren N(soort,mv,neut) \nDiekmann N(eigen,ev,neut) \nVenables N(eigen,ev,neut) \nbeessies N(soort,mv,neut) \nkist N(soort,ev,neut) \nBomans N(eigen,ev,neut) \nsmartlappen N(soort,mv,neut) \noverweldigende V(intrans,teg_dw,verv_neut) \nAnders Adv(gew,geen_func,stell,onverv) \nnegeert V(trans,ott,3,ev) \ngelukkiger Adj(attr,vergr,onverv) \nZuid-Italie N(eigen,ev,neut) \nheilige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\ngezellig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nmeubels N(soort,mv,neut) \nschminkkamer N(soort,ev,neut) \nknoopsgat N(soort,ev,neut) \ngeintjes N(soort,mv,neut) \njas N(soort,ev,neut) \ngezellin N(soort,ev,neut) \nprentbriefkaartdorpje N(soort,ev,neut) \nsimpele Adj(attr,stell,verv_neut) \nsensatie N(soort,ev,neut) \nvrouwfiguurtje N(soort,ev,neut) \nstadsvervoer N(soort,ev,neut) \nverdienste N(soort,ev,neut) \nklassieke Adj(attr,stell,verv_neut) \nNieuwmarkt N(eigen,ev,neut) \njarige Adj(zelfst,stell,verv_neut) \nZilver N(soort,ev,neut) \ntitel N(soort,ev,neut) \nstugger Adj(attr,vergr,onverv) \nschoongemaakt V(trans,verl_dw,onverv) \ndankbaarheid N(soort,ev,neut) \nMaurice N(eigen,ev,neut) \ngelukt V(intrans,verl_dw,onverv) \ngeteld V(trans,verl_dw,onverv) \nEmile N(eigen,ev,neut) \nikzelf Pron(per,1,ev,nom) \nimmuun Adj(attr,stell,onverv) \nindividu N(soort,ev,neut) \narbeidsongeschiktheidsverzekeringen N(soort,mv,neut) \nnertsjas N(soort,ev,neut) \nverschijnen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nbrokken N(soort,mv,neut) \nzullen V(hulp,ott,1_of_2_of_3,mv) \nopende V(trans,ovt,1_of_2_of_3,ev) \ntulband N(soort,ev,neut) \nWereld N(eigen,ev,neut) \nweerbaar Adj(attr,stell,onverv) \nwijnkoper N(soort,ev,neut) \nplaatsvinden V(intrans,inf) \ngekregen V(trans,verl_dw,onverv) \ntoilette N(soort,ev,neut) \nWiardi N(eigen,ev,neut) \nbliksem N(soort,ev,neut) \n180 Num(hoofd,bep,attr,onverv) \nnotaris N(soort,ev,neut) \nbeledigt V(trans,ott,2,ev) \nL'OFFICIEL N(eigen,ev,neut) \nHetzelfde Pron(aanw,neut,zelfst) \nLiesbeth N(eigen,ev,neut) \nvriendelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nplankjes N(soort,mv,neut) \njongeling N(soort,ev,neut) \nverzekerd V(trans,verl_dw,onverv) \nsleutel N(soort,ev,neut) \nhoofdrolspeler N(soort,ev,neut) \nfolie N(soort,ev,neut) \nopengemaakt V(trans,verl_dw,onverv) \nTjak N(eigen,ev,neut) \nomlaag Adv(gew,geen_func,stell,onverv) \nvochtige Adj(attr,stell,verv_neut) \nzilverdraad N(soort,ev,neut) \ngeroosterd V(trans,verl_dw,onverv) \nverliep V(intrans,ovt,1_of_2_of_3,ev) \nstudentenkleed N(soort,ev,neut) \nGehuld V(trans,verl_dw,onverv) \nminimum N(soort,ev,neut) \nkringetje N(soort,ev,neut) \nverlies N(soort,ev,neut) \nverliet V(trans,ovt,1_of_2_of_3,ev) \nopkomend V(intrans,teg_dw,onverv) \nkader N(soort,ev,neut) \nbokswedstrijd N(soort,ev,neut) \nopenen V(trans,inf) \nMenierh N(soort,ev,neut) \nRijden V(intrans,inf) \nhouten Adj(attr,stell,onverv) \ncockpit N(soort,ev,neut) \nspeakers N(soort,mv,neut) \ndrijfijs N(soort,ev,neut) \nonfrisse Adj(attr,stell,verv_neut) \nvoorstelt V(trans,ott,3,ev) \neraf Adv(pron,onbep) \nMake-Up Misc(vreemd) \nzevende Num(rang,bep,attr,onverv) \npokken N(soort,mv,neut) \nvermeld V(trans,verl_dw,onverv) \nafgestudeerd V(intrans,verl_dw,onverv) \nmisverstand N(soort,ev,neut) \noordelen V(trans,inf) \nkiwi N(soort,ev,neut) \nzweten V(intrans,inf) \nGreenadier N(soort,ev,neut) \nlittle Misc(vreemd) \nadem N(soort,ev,neut) \nbijzondere Adj(zelfst,stell,verv_neut) Adj(attr,stell,verv_neut)\nlegers N(soort,mv,neut) \ndurfde V(hulp,ovt,1_of_2_of_3,ev) \nbekijken V(trans,inf) \ntreden V(intrans,inf) \ngekozen V(trans,verl_dw,onverv) \noeroude Adj(attr,stell,verv_neut) \nvoedsel N(soort,ev,neut) \nkeukenvloer N(soort,ev,neut) \ngigantische Adj(attr,stell,verv_neut) \nscherper Adj(attr,vergr,onverv) \ntricot N(soort,ev,neut) \naflopend V(intrans,teg_dw,onverv) \nburgerlijke Adj(attr,stell,verv_neut) \nuitgenodigd V(trans,verl_dw,onverv) \nwrang Adj(attr,stell,onverv) \nweetikveel N(soort,ev,neut) \nopgetast V(trans,verl_dw,onverv) \nneerschreef V(trans,ovt,1_of_2_of_3,ev) \nstaande V(intrans,teg_dw,verv_neut) \natelier N(soort,ev,neut) \nklappen N(soort,mv,neut) \nnachtzoen N(soort,ev,neut) \nGans N(eigen,ev,neut) \nnoemde V(trans,ovt,1_of_2_of_3,ev) \nweelde N(soort,ev,neut) \nbevestiging N(soort,ev,neut) \ndubbeltje N(soort,ev,neut) \ngewoond V(intrans,verl_dw,onverv) \nBehalve Conj(onder,met_fin) \nlinnen N(soort,ev,neut) \nplasje N(soort,ev,neut) \nGallery N(eigen,ev,neut) \nMeltzer N(eigen,ev,neut) \nbrommertje N(soort,ev,neut) \nCalifornische Adj(attr,stell,verv_neut) \nkeuring N(soort,ev,neut) \nhorloge N(soort,ev,neut) \npremiere N(soort,ev,neut) \nverkopen V(trans,inf) \nsortiment N(soort,ev,neut) \nverkoper N(soort,ev,neut) \nafkniptangetje N(soort,ev,neut) \nfiguur N(soort,ev,neut) \nbegonnen 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)\nneerliggen V(intrans,inf) \nMam N(soort,ev,neut) \nMan Int N(eigen,ev,neut) N(soort,ev,neut)\nMao N(eigen,ev,neut) \nwaarachter Adv(pron,vrag) \nverkeersopstopping N(soort,ev,neut) \nnoemen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nkerel N(soort,ev,neut) \nduizend-en-een Num(hoofd,bep,attr,onverv) \nverfilming N(soort,ev,neut) \nkeren V(intrans,inf) N(soort,mv,neut)\nZowel Conj(neven) \nNational N(eigen,ev,neut) \nMax N(eigen,ev,neut) \nMay N(eigen,ev,neut) \ndreef V(intrans,ovt,1_of_2_of_3,ev) \ndominee N(soort,ev,neut) \nverliezers N(soort,mv,neut) \naanbiedingen N(soort,mv,neut) \nafwijst V(trans,ott,3,ev) \neconomie N(soort,ev,neut) \nbleekblauwe Adj(attr,stell,verv_neut) \ntoestand N(soort,ev,neut) \nprestige N(soort,ev,neut) \nChris N(eigen,ev,neut) \nCochran N(eigen,ev,neut) \npeil N(soort,ev,neut) \nzakenman N(soort,ev,neut) \ntalloze Pron(onbep,neut,attr) \nbegrafenis N(soort,ev,neut) \nPuskas N(eigen,ev,neut) \nLiebregts N(eigen,ev,neut) \nlinkerkant N(soort,ev,neut) \nKoffie N(soort,ev,neut) \nhuid N(soort,ev,neut) \ntaboes N(soort,mv,neut) \naangrijpt V(trans,ott,3,ev) \nteleurstelling N(soort,ev,neut) \n101-103 Num(hoofd,bep,attr,onverv) \namandelvormige Adj(attr,stell,verv_neut) \nhuis N(soort,ev,neut) \ntoonaangevend Adj(attr,stell,onverv) \nmiddengolfzenders N(soort,mv,neut) \nschuil Adj(attr,stell,onverv) \nclandestien Adj(adv,stell,onverv) \nvoller Adj(attr,vergr,onverv) \nschuim N(soort,ev,neut) \nKomt V(intrans,ott,3,ev) \nblaadjes N(soort,mv,neut) \nlokvogels N(soort,mv,neut) \nhoutje N(soort,ev,neut) \nPalestijnse Adj(attr,stell,verv_neut) \ntraumatoloog N(soort,ev,neut) \nschuit N(soort,ev,neut) \nmoeders N(soort,mv,neut) \ngepleit V(intrans,verl_dw,onverv) \nbetreft V(trans,ott,3,ev) \ninkomstenbelasting N(soort,ev,neut) \nhandschoenen N(soort,mv,neut) \njij Pron(per,2,ev,nom) \ntroep N(soort,ev,neut) \ndefinitie N(soort,ev,neut) \nhondenhokken N(soort,mv,neut) \nzesduizend Num(hoofd,bep,attr,onverv) \nnon-actief Adj(attr,stell,onverv) \nverschuivingen N(soort,mv,neut) \nvrijwillig Adj(adv,stell,onverv) \nverwachting N(soort,ev,neut) \nGare N(eigen,ev,neut) \nachterzijde N(soort,ev,neut) \nslager N(soort,ev,neut) \nzelfbewust Adj(attr,stell,onverv) \nFabio N(eigen,ev,neut) \ngegoten V(trans,verl_dw,onverv) \nverkondigde V(trans,verl_dw,verv_neut) \nverzoening N(soort,ev,neut) \nlichamelijke Adj(attr,stell,verv_neut) \nvraaggesprek N(soort,ev,neut) \nvroedvrouwen N(soort,mv,neut) \nBurgers N(eigen,ev,neut) \nfijngesneden V(trans,verl_dw,onverv) \nvijfhoekige Adj(attr,stell,verv_neut) \nsteden N(soort,mv,neut) \ndaaronder Adv(pron,aanw) \ngeschaamd V(refl,verl_dw,onverv) \nshow N(soort,ev,neut) \nadviezen N(soort,mv,neut) \ntwee-relatie N(soort,ev,neut) \npercent N(soort,ev,neut) \nsigaretterook N(soort,ev,neut) \nsmalle Adj(attr,stell,verv_neut) \nzwakheid N(soort,ev,neut) \nvertrouwelijk Adj(adv,stell,onverv) \nongewenst Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nbenevens Conj(onder,met_inf) \ndeken N(soort,ev,neut) \nKoop V(trans,imp) \nmooiedoortrapte-jongen-filmimage N(soort,ev,neut) \nuitgebreider Adj(attr,vergr,onverv) \nPraktisch Adj(adv,stell,onverv) \nreclame-bureau N(soort,ev,neut) \nverontwaardiging N(soort,ev,neut) \nGroot Adj(attr,stell,onverv) N(eigen,ev,neut)\nsterrennacht N(soort,ev,neut) \nhuisartsen N(soort,mv,neut) \ntoneelgezelschap N(soort,ev,neut) \nonpeilbare Adj(attr,stell,verv_neut) \nhoewel Conj(onder,met_fin) \nzwembaden N(soort,mv,neut) \nBretagne N(eigen,ev,neut) \nfraai Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nMel N(eigen,ev,neut) \nAlkmaar N(eigen,ev,neut) \ngeldt V(intrans,ott,3,ev) \nMen Pron(onbep,neut,zelfst) \nGainsborough N(eigen,ev,neut) \nblootgesteld V(trans,verl_dw,onverv) \nOnze Pron(bez,1,mv,neut,attr) \ngenegen Adj(attr,stell,onverv) \ndodelijke Adj(attr,stell,verv_neut) \nAnnie N(eigen,ev,neut) \nervoer V(trans,ovt,1_of_2_of_3,ev) \nMet Prep(voor) \nbode N(soort,ev,neut) \nBeekbergen N(eigen,ev,neut) \nschuld N(soort,ev,neut) \ntoebrengen V(trans,inf,subst) \nzestienhonderd Num(hoofd,bep,zelfst,onverv) \nNairobiDar-es-Salam N(eigen,ev,neut) \nSteve's N(eigen,ev,gen) \nhulp N(soort,ev,neut) \ngeromantiseerd V(trans,verl_dw,onverv) \naanwijzen V(trans,inf) \n300.000 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\ndreigende V(intrans,teg_dw,verv_neut) \nenkel Pron(onbep,neut,attr) Adj(adv,stell,onverv) N(soort,ev,neut)\nflatwoningen N(soort,mv,neut) \nfamilieportretten N(soort,mv,neut) \nschulp N(soort,ev,neut) \nbedoelingen N(soort,mv,neut) \ndreigends V(intrans,teg_dw,verv_gen) \nbaard N(soort,ev,neut) \ngelet V(intrans,verl_dw,onverv) \ntreffen V(intrans,inf,subst) V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nIngers N(eigen,ev,gen) \nhumoristische Adj(attr,stell,verv_neut) \nboek N(soort,ev,neut) \nerin Adv(pron,onbep) \nechter Adv(gew,geen_func,stell,onverv) \nboel N(soort,ev,neut) \nvoorspel N(soort,ev,neut) \nvrouwen N(soort,mv,neut) N(eigen,ev,neut) N(soort,ev,neut)\nadviseerde V(trans,ovt,1_of_2_of_3,ev) \napparatuur N(soort,ev,neut) \nCrime Misc(vreemd) \nkruidenboek N(soort,ev,neut) \nflink Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nverbaasde V(trans,ovt,1_of_2_of_3,ev) \nrijdt V(intrans,ott,3,ev) V(intrans,ott,2,ev)\nShakespeare N(eigen,ev,neut) \nelementaire Adj(attr,stell,verv_neut) \narchitectuur N(soort,ev,neut) \nwaardering N(soort,ev,neut) \npostuur N(soort,ev,neut) \nFinland N(eigen,ev,neut) \nweven V(intrans,ott,1_of_2_of_3,mv) \nZaterdagavond N(soort,ev,neut) \ngaststerren N(soort,mv,neut) \ntikfout N(soort,ev,neut) \nversterkt V(trans,verl_dw,onverv) V(trans,ott,3,ev)\ntienduizend Num(hoofd,bep,attr,onverv) \ndegelijkheid N(soort,ev,neut) \nwinterzonnetje N(soort,ev,neut) \nmekaar Pron(rec,neut) \nvoordoen V(refl,inf) \nspontaniteit N(soort,ev,neut) \nstrenge Adj(attr,stell,verv_neut) \nhelpende V(intrans,teg_dw,verv_neut) \nbinnenwerks Adj(adv,stell,onverv) \nvoordoet V(refl,ott,3,ev) \nrijen N(soort,mv,neut) \nkrantejongens N(soort,mv,neut) \nvoetbal N(soort,ev,neut) \navontuur N(soort,ev,neut) \nuitslapen V(intrans,inf) \nvrijen V(intrans,inf,subst) \nstrelende V(intrans,teg_dw,verv_neut) \noverhaast Adj(adv,stell,onverv) V(trans,ott,3,ev)\nStoomcursus N(soort,ev,neut) \nmondstuk N(soort,ev,neut) \nwisselen V(intrans,inf) \ncontractueel Adj(adv,stell,onverv) \ninktvis N(soort,ev,neut) \nVenetie N(eigen,ev,neut) \ngaladiner N(soort,ev,neut) \nharde Adj(attr,stell,verv_neut) \nteckelmoeder N(soort,ev,neut) \njoden N(soort,mv,neut) \nveldje N(soort,ev,neut) \nknieen N(soort,mv,neut) \nomhulsel N(soort,ev,neut) \nmenen V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nhuifkar N(soort,ev,neut) \nAjax N(eigen,ev,neut) \nbehoorlijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nMij Pron(per,1,ev,dat_of_acc) \nuitkijkpost N(soort,ev,neut) \nBonheur Misc(vreemd) \nMin Num(hoofd,onbep,zelfst,stell,onverv) \nverbinding N(soort,ev,neut) \nTekort Adj(attr,stell,onverv) \nMis Adj(attr,stell,onverv) \nGrote Adj(attr,stell,verv_neut) \nprotesten N(soort,mv,neut) \nbrandstof N(soort,ev,neut) \njou Pron(per,2,ev,dat_of_acc) \nverkruimelde V(trans,verl_dw,verv_neut) \nstadhuis N(soort,ev,neut) \nverdrijft V(trans,ott,3,ev) \njazzelementen N(soort,mv,neut) \nGeanimeerd V(trans,verl_dw,onverv) \ntechniek N(soort,ev,neut) \nvisbouillon N(soort,ev,neut) \nJagger N(eigen,ev,neut) \naantrekkelijk Adj(attr,stell,onverv) \ncomponist N(soort,ev,neut) \nzakkige Adj(attr,stell,verv_neut) \nwetende V(trans,teg_dw,verv_neut) \nSwahili N(eigen,ev,neut) \nopzij Adv(gew,geen_func,stell,onverv) \nduwde V(trans,ovt,1_of_2_of_3,ev) \nharen N(soort,mv,neut) \nvoorbereiden V(refl,inf) V(trans,inf)\nuitrekenen V(trans,inf) \ngeschapen V(trans,verl_dw,onverv) \nbergruimte N(soort,ev,neut) \nNVSH N(eigen,ev,neut) \nmateriaal N(soort,ev,neut) \ngerekend V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nbesneeuwde V(trans,verl_dw,verv_neut) \njurken N(soort,mv,neut) \nglasvezel N(soort,ev,neut) \ndocumentaire N(soort,ev,neut) \nvermaarde Adj(attr,stell,verv_neut) \npopmuziek N(soort,ev,neut) \nantiquair N(soort,ev,neut) \nsystematisch Adj(adv,stell,onverv) \nhinnikend V(intrans,teg_dw,onverv) \nkrabbelde V(intrans,ovt,1_of_2_of_3,ev) \nkasboeken N(soort,mv,neut) \nemotionele Adj(attr,stell,verv_neut) \nlyriek N(soort,ev,neut) \nzeggen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\npers N(soort,ev,neut) \nreservaat N(soort,ev,neut) \nduwen V(trans,inf) \ntegenkomen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nbloemenkrans N(soort,ev,neut) \ntoeren N(soort,mv,neut) \nWaldorf-Astoria N(eigen,ev,neut) \nnieuwslezer N(soort,ev,neut) \ngelezen V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nWelnee Int \nachttiende Num(rang,bep,attr,onverv) \nGrace N(eigen,ev,neut) \nPalaverboek N(soort,ev,neut) \ngevoelsleven N(soort,ev,neut) \nklachten N(soort,mv,neut) \nzwerven V(intrans,inf,subst) V(intrans,inf)\nfjorden N(soort,mv,neut) \nWiegerma N(eigen,ev,neut) \npest N(soort,ev,neut) \nDelden N(eigen,ev,neut) \nCreatieoord N(eigen,ev,neut) \nluchtvervuiling N(soort,ev,neut) \nverrader N(soort,ev,neut) \nMidden Adv(gew,geen_func,stell,onverv) \nverslag N(soort,ev,neut) \nerom Adv(pron,onbep) \ngezelschap N(soort,ev,neut) \nerop Adv(pron,onbep) Adv(pron,aanw)\nkleuren N(soort,mv,neut) \nAuschwitz N(eigen,ev,neut) \nmaandag N(eigen,ev,neut) \nCornelis N(eigen,ev,neut) \ngedeelte N(soort,ev,neut) \nvervoer N(soort,ev,neut) \nprijs N(soort,ev,neut) \ngeweldenaar N(soort,ev,neut) \ngeregeerd V(trans,verl_dw,onverv) \nArbeit Misc(vreemd) \ndichter Adv(gew,geen_func,vergr,onverv) \naardewerk N(soort,ev,neut) \nalcoholist N(soort,ev,neut) \ncommunicatiemiddelen N(soort,mv,neut) \nHanneke N(eigen,ev,neut) \nkloppen V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\nkrotten N(soort,mv,neut) \nveelbesproken Adj(attr,stell,onverv) \nwaarschuwend V(intrans,teg_dw,onverv) \npijnlijk Adj(adv,stell,onverv) \nSpelen N(eigen,mv,neut) N(soort,mv,neut)\nDaume N(eigen,ev,neut) \nrijke Adj(attr,stell,verv_neut) \nontvangt V(trans,ott,3,ev) \nschriftelijk Adj(adv,stell,onverv) \nschrikbewind N(soort,ev,neut) \ntegenstrijdigheid N(soort,ev,neut) \nvechten V(intrans,inf) \nwijnen N(soort,mv,neut) \nkleurenproduktie N(soort,ev,neut) \ncompleet Adj(attr,stell,onverv) \nleidt V(intrans,ott,3,ev) V(trans,ott,3,ev)\nijzerzaagjes N(soort,mv,neut) \nachtten V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nopereren V(intrans,ott,1_of_2_of_3,mv) \nOndanks Prep(voor) \nwoordenloze Adj(attr,stell,verv_neut) \nbetalen V(trans,inf) V(intrans,inf)\nopmerkelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nhuur N(soort,ev,neut) \nzakenmensen N(soort,mv,neut) \nJustitie N(soort,ev,neut) \ncaries N(soort,ev,neut) \nmijnheer N(soort,ev,neut) \nschuur N(soort,ev,neut) \nafwezig Adj(attr,stell,onverv) \nniveau N(soort,ev,neut) \nintegratie N(soort,ev,neut) \nverplicht V(trans,verl_dw,onverv) \ndwaas Adj(attr,stell,onverv) \nMol N(eigen,ev,neut) \nprima Adj(attr,stell,onverv) \nVolgens Prep(voor) \nervoor Adv(pron,onbep) \nbond N(soort,ev,neut) \nNOS N(eigen,ev,neut) \nBolton N(eigen,ev,neut) \niedereen Pron(onbep,neut,zelfst) \nclimax N(soort,ev,neut) \nondernam V(trans,ovt,1_of_2_of_3,ev) \nvertellen V(trans,inf) V(intrans,inf)\nronduit Adv(gew,geen_func,stell,onverv) \ndashboard N(soort,ev,neut) \nbons N(soort,ev,neut) \nJean N(eigen,ev,neut) \nbewijsbaar Adj(attr,stell,onverv) \nSpontini N(eigen,ev,neut) \nAvenue N(eigen,ev,neut) \nwelzijn N(soort,ev,neut) \nzeulen V(trans,inf) \nnoteren V(trans,inf) \nBrandpunt N(soort,ev,neut) \nMr. N(eigen,ev,neut) \nAcademie N(eigen,ev,neut) \nwieden V(trans,inf) \nbood V(trans,ovt,1_of_2_of_3,ev) \nPatrick N(eigen,ev,neut) \nLaser N(soort,ev,neut) \nmeisjes N(soort,mv,neut) N(eigen,ev,neut)\ngroeitijd N(soort,ev,neut) \nechtgenoten N(soort,mv,neut) \noosterse Adj(attr,stell,verv_neut) \nboog N(soort,ev,neut) V(trans,ovt,1_of_2_of_3,ev)\ngymnastiekuitvoering N(soort,ev,neut) \nkleurig Adj(attr,stell,onverv) \nVentura N(eigen,ev,neut) \nboom N(soort,ev,neut) \ntechnicus N(soort,ev,neut) \nboos Adj(attr,stell,onverv) \nprins N(soort,ev,neut) \nboot N(soort,ev,neut) \nbundelen V(trans,ott,1_of_2_of_3,mv) \nVITUS N(eigen,ev,neut) \nframe N(soort,ev,neut) \nMonty N(eigen,ev,neut) \nhuisarts N(soort,ev,neut) \nmaanden N(soort,mv,neut) \ntv-produkties N(soort,mv,neut) \nteam N(soort,ev,neut) \ngaande V(intrans,teg_dw,verv_neut) \nbekendste Adj(attr,overtr,verv_neut) \nspray N(soort,ev,neut) \nTricia N(eigen,ev,neut) \nvermisten V(trans,verl_dw,verv_mv) \nTotdat Conj(onder,met_fin) \nscharen N(soort,mv,neut) \nvetarme Adj(attr,stell,verv_neut) \nSmith N(eigen,ev,neut) \nstiekum Adj(adv,stell,onverv) \ndertigste Num(rang,bep,attr,onverv) \nintelligentie N(soort,ev,neut) \ngebeurde V(intrans,ovt,1_of_2_of_3,ev) V(intrans,verl_dw,verv_neut)\nkinderloos Adj(attr,stell,onverv) \ndreun N(soort,ev,neut) V(intrans,ott,1,ev)\nWacht V(intrans,imp) \ncitroen N(soort,ev,neut) \nDemerest N(eigen,ev,neut) \nspannend Adj(attr,stell,onverv) \nbemoedigen V(trans,inf) \nzichtbaar Adj(attr,stell,onverv) \nreversibiliteit N(soort,ev,neut) \ngebedsmolens N(soort,mv,neut) \nonuitgeslapen Adj(attr,stell,onverv) \nhandel N(soort,ev,neut) \n2,1 Num(hoofd,bep,attr,onverv) \nvernietigingskamp N(soort,ev,neut) \nhanden N(soort,mv,neut) \npakkende V(intrans,teg_dw,verv_neut) \ntrots Adj(attr,stell,onverv) N(soort,ev,neut)\ningeschreven V(trans,verl_dw,onverv) \nsherry'tje N(soort,ev,neut) \nMichel N(eigen,ev,neut) \ntraag Adj(adv,stell,onverv) \ninteresseren V(trans,inf) \ntwijfel N(soort,ev,neut) \ndriemaal Adv(gew,geen_func,stell,onverv) \nvlag N(soort,ev,neut) \nkruipt V(intrans,ott,3,ev) \ngedoceerd V(trans,verl_dw,onverv) \nonderzoerzoekers N(soort,mv,neut) \naanvallers N(soort,mv,neut) \naanwijzingen N(soort,mv,neut) \nvlak Adv(gew,geen_func,stell,onverv) \nverlengingszaken N(soort,mv,neut) \npositie N(soort,ev,neut) \nsatijn N(soort,ev,neut) \nvlees N(soort,ev,neut) \nzakelijkheid N(soort,ev,neut) \ngebeuren V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) N(soort,ev,neut)\nmomenten N(soort,mv,neut) \nvoorbereidingen N(soort,mv,neut) \n2-3 Num(hoofd,bep,attr,onverv) \nbord N(soort,ev,neut) \ntrouw N(soort,ev,neut) Adj(attr,stell,onverv)\nhechte Adj(attr,stell,verv_neut) \nNixon-bewind N(soort,ev,neut) \ngestekt V(trans,verl_dw,onverv) \npaard N(soort,ev,neut) \nsoldaten N(soort,mv,neut) \nschouders N(soort,mv,neut) \ndierentuin N(soort,ev,neut) \npatroondelen N(soort,mv,neut) \ninternationaal Adj(adv,stell,onverv) \nPrijsvorming N(soort,ev,neut) \naanvankelijk Adj(adv,stell,onverv) \ndierenasiel N(soort,ev,neut) \ngesteld V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv) Adj(attr,stell,onverv)\ngenomen V(trans,verl_dw,onverv) \nkwaadaardig Adj(adv,stell,onverv) \nkarton N(soort,ev,neut) \nveroorzaakt V(trans,verl_dw,onverv) V(trans,ott,3,ev)\nLau's N(eigen,ev,gen) \nmonsieur N(soort,ev,neut) \nEnfin Int \nangstdroom N(soort,ev,neut) \nvoorbedachten Adj(attr,stell,verv_neut) \nvitamine N(soort,ev,neut) \nwaardige Adj(attr,stell,verv_neut) \nmoederschap N(soort,ev,neut) \nopgewekt V(trans,verl_dw,onverv) \nrivieren N(soort,mv,neut) \nbeleefde Adj(attr,stell,verv_neut) \nuitzenden V(trans,inf) \nbuiten Adv(gew,geen_func,stell,onverv) Prep(voor) N(soort,ev,neut)\npopulair Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nmensen N(soort,mv,neut) \nZullen V(hulp,ott,1_of_2_of_3,mv) \nteen N(soort,ev,neut) \nMann's N(eigen,ev,gen) \nministers N(soort,mv,neut) \nNoorse Adj(attr,stell,verv_neut) \nprikkeldraad N(soort,ev,neut) \nmanman N(soort,ev,neut) \njaponnen N(soort,mv,neut) \ntrompettist N(soort,ev,neut) \nAlmelo N(eigen,ev,neut) \nvolstaan V(intrans,ott,1_of_2_of_3,mv) \nafgezaagd Adj(attr,stell,onverv) \nmisdaad N(soort,ev,neut) \nkindje N(soort,ev,neut) \ngeluk N(soort,ev,neut) \ngeintje N(soort,ev,neut) \nmodepers N(soort,ev,neut) \nbaai N(soort,ev,neut) N(eigen,ev,neut)\nhandig Adj(attr,stell,onverv) \nfatalisme N(soort,ev,neut) \nbreekt V(intrans,ott,3,ev) \neerlijkheid N(soort,ev,neut) \nbaan N(soort,ev,neut) \nmisdaan V(trans,verl_dw,onverv) \n200 Num(hoofd,bep,attr,onverv) \nafgeleverd V(trans,verl_dw,onverv) \nbaas N(soort,ev,neut) \nvariaties N(soort,mv,neut) \nkrijgsman N(soort,ev,neut) \nberoepsvoetbal N(soort,ev,neut) \ngeslacht N(soort,ev,neut) \nimmunisatie N(soort,ev,neut) \ntamboers N(soort,mv,neut) \nomkijken V(intrans,inf) \nvlek N(soort,ev,neut) \nurenlange Adj(attr,stell,verv_neut) \noudoom N(soort,ev,neut) \nbladen N(soort,mv,neut) \nbouw N(soort,ev,neut) V(trans,imp)\novergangsjaren N(soort,mv,neut) \ngloriedag N(soort,ev,neut) \nDurft V(trans,ott,2,ev) \nvaren V(intrans,inf) \nwaterpomp N(soort,ev,neut) \nastrologie N(soort,ev,neut) \nnevenuitkomst N(soort,ev,neut) \nkoesteren V(trans,ott,1_of_2_of_3,mv) \nbaby N(soort,ev,neut) \nonbekend Adj(attr,stell,onverv) \nreklamekampagne N(soort,ev,neut) \nalwetend Adj(adv,stell,onverv) \nhulstboom N(soort,ev,neut) \ngamma N(soort,ev,neut) \nsignalement N(soort,ev,neut) \nskitechniek N(soort,ev,neut) \nminuscuul Adj(adv,stell,onverv) \nregelmaat N(soort,ev,neut) \ngoddelijke Adj(attr,stell,verv_neut) \nhandwerk N(soort,ev,neut) \nleuker Adj(attr,vergr,onverv) \nverrukkelijks Adj(attr,stell,verv_gen) \nback Misc(vreemd) \nVuile Adj(attr,stell,verv_neut) \naanknopingspunten N(soort,mv,neut) \nstroeve Adj(attr,stell,verv_neut) \n220 Num(hoofd,bep,attr,onverv) \nbetekenen V(trans,inf) V(intrans,inf)\nschaakspel N(soort,ev,neut) \naangesloten V(trans,verl_dw,onverv) \nweliswaar Adv(gew,geen_func,stell,onverv) \nontruiming N(soort,ev,neut) \nVROUW N(soort,ev,neut) \n226 Num(hoofd,bep,attr,onverv) \naangekleed V(refl,verl_dw,onverv) \nmoest V(hulp,ovt,1_of_2_of_3,ev) \nOoievaar N(eigen,ev,neut) \nMargriet N(soort,ev,neut) \nkrimpen V(intrans,inf) \nactiviteit N(soort,ev,neut) \ngloed N(soort,ev,neut) \nnertsstola N(soort,ev,neut) \nharte N(soort,ev,dat) \nopinie N(soort,ev,neut) \nonjuiste Adj(attr,stell,verv_neut) \nlandelijke Adj(attr,stell,verv_neut) \nsick Adj(adv,stell,onverv) \npublikatie N(soort,ev,neut) \ngewild V(intrans,verl_dw,onverv) \nrijtje N(soort,ev,neut) \nbebouwde V(trans,verl_dw,verv_neut) \nuitgezochte V(trans,verl_dw,verv_neut) \ngunstig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ncognacje N(soort,ev,neut) \noverloop N(soort,ev,neut) \nluid Adj(adv,stell,onverv) \nontdekten V(trans,ovt,1_of_2_of_3,mv) \nluie Adj(attr,stell,verv_neut) \nDagen N(soort,mv,neut) \nbesefte V(trans,ovt,1_of_2_of_3,ev) \neeuwenoude Adj(attr,stell,verv_neut) \ntegen Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v) Adv(deel_adv)\nvertoefd V(intrans,verl_dw,onverv) \nklasgenoten N(soort,mv,neut) \nFiguur N(soort,ev,neut) \noplet V(trans,ott,3,ev) \nvliegreis N(soort,ev,neut) \ntwintig Num(hoofd,bep,attr,onverv) \nbakken V(intrans,inf) V(trans,inf)\nHeijermans N(eigen,ev,neut) \nreclamemensen N(soort,mv,neut) \nbakker N(soort,ev,neut) \nlieten V(hulp,ovt,1_of_2_of_3,mv) \nleefregels N(soort,mv,neut) \naangestapt V(intrans,verl_dw,onverv) \nnoteerde V(trans,ovt,1_of_2_of_3,ev) \n(oud)studenten N(soort,mv,neut) \nreddingsduikboten N(soort,mv,neut) \natmosfeer N(soort,ev,neut) \n6000 Num(hoofd,bep,attr,onverv) \nsatire N(soort,ev,neut) \nvitaminehoudende Adj(attr,stell,verv_neut) \nbevrijdingsfeest N(soort,ev,neut) \nherleefde V(intrans,verl_dw,verv_neut) \nzorgden V(intrans,ovt,1_of_2_of_3,mv) \nonhoudbare Adj(attr,stell,verv_neut) \nfortuin N(soort,ev,neut) \nkeerde V(intrans,ovt,1_of_2_of_3,ev) \nboys N(soort,mv,neut) \nongemakken N(soort,mv,neut) \nonderplank N(soort,ev,neut) \nbrengen V(trans,inf) V(trans,inf,subst)\nketsen V(intrans,ott,1_of_2_of_3,mv) \nafwijzen V(trans,inf) \n250 Num(hoofd,bep,attr,onverv) \ndagelijkse Adj(attr,stell,verv_neut) \n253 Num(hoofd,bep,attr,onverv) \nPolitiek Adj(adv,stell,onverv) \nweekbladen N(soort,mv,neut) \ngeinterpreteerd V(trans,verl_dw,onverv) \nprofessor N(soort,ev,neut) \nboze Adj(attr,stell,verv_neut) \nfoeilelijke Adj(attr,stell,verv_neut) \nstaten N(soort,mv,neut) \nRienk N(eigen,ev,neut) \nnatte Adj(attr,stell,verv_neut) \nlukt V(intrans,ott,3,ev) \nTransparante Adj(attr,stell,verv_neut) \noverbevolkingsverhalen N(soort,mv,neut) \nKampioen-compromissensluiter N(soort,ev,neut) \nwerkloosheid N(soort,ev,neut) \nvaderland N(soort,ev,neut) \nknoflook N(soort,ev,neut) \nhoogste Adj(attr,overtr,verv_neut) \nmarmotten N(soort,mv,neut) \nafschuwelijke Adj(attr,stell,verv_neut) \nplatbektangetje N(soort,ev,neut) \nzwager N(soort,ev,neut) \ntelt V(intrans,ott,3,ev) V(trans,ott,3,ev)\nkan 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)\nDescriptions Misc(vreemd) \nbetekenis N(soort,ev,neut) \nPretty N(eigen,ev,neut) \nwekenlange Adj(attr,stell,verv_neut) \nkat N(soort,ev,neut) \nhevige Adj(attr,stell,verv_neut) \nboerden V(intrans,ovt,1_of_2_of_3,mv) \ndaalde V(intrans,ovt,1_of_2_of_3,ev) \nverricht V(trans,verl_dw,onverv) \nerfelijk Adj(adv,stell,onverv) \nplaten N(soort,mv,neut) \ngroeit V(intrans,ott,3,ev) \nNavarra N(eigen,ev,neut) \nontzettend Adj(adv,stell,onverv) V(intrans,teg_dw,onverv)\nvertraging N(soort,ev,neut) \nRijksasiel N(soort,ev,neut) \nstrandstoelen N(soort,mv,neut) \nkalmerend V(intrans,teg_dw,onverv) \nbetekenden V(trans,ovt,1_of_2_of_3,mv) \nnijver Adj(adv,stell,onverv) \nJonas N(eigen,ev,neut) \nHoewel Conj(onder,met_fin) Adv(gew,geen_func,stell,onverv)\nmevrouwen N(soort,mv,neut) \nzoontje N(soort,ev,neut) \nsucces N(soort,ev,neut) \nBunt N(eigen,ev,neut) \nvoorkomen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nwisselend V(intrans,teg_dw,onverv) \ndenkbeeldige Adj(attr,stell,verv_neut) \nHalverwege Adv(gew,geen_func,stell,onverv) \nclan N(eigen,ev,neut) \ngelukkig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\novereen Adv(gew,geen_func,stell,onverv) \nmodebeeld N(soort,ev,neut) \nongezond Adj(attr,stell,onverv) \ntoewijding N(soort,ev,neut) \nduidt V(intrans,ott,3,ev) \nongelovig Adj(adv,stell,onverv) \nschimmen N(soort,mv,neut) \nprodukt N(soort,ev,neut) \n280 Num(hoofd,bep,attr,onverv) \ntent N(soort,ev,neut) \nuitgewezen V(trans,verl_dw,onverv) \nbereid Adj(attr,stell,onverv) \nneemt V(trans,ott,3,ev) \ninternationale Adj(attr,stell,verv_neut) \nspande V(trans,ovt,1_of_2_of_3,ev) \ngedreven V(trans,verl_dw,onverv) \nverdedigen V(trans,inf,subst) \nverschuldigde V(trans,verl_dw,verv_neut) \ngeraffineerde Adj(attr,stell,verv_neut) \nexperiment N(soort,ev,neut) \nverdediger N(soort,ev,neut) \nbetaalde V(trans,ovt,1_of_2_of_3,ev) \nBlaricum N(eigen,ev,neut) \nvroegtijdige Adj(attr,stell,verv_neut) \nstatig Adj(adv,stell,onverv) \ntreedt V(trans,ott,3,ev) \naccepteren V(trans,inf) \nhonden N(soort,mv,neut) \nwerkelijkheid N(soort,ev,neut) \nvlerk N(soort,ev,neut) \nleverde V(trans,ovt,1_of_2_of_3,ev) \nverlossende V(intrans,teg_dw,verv_neut) \nkostwinner N(soort,ev,neut) \nwegens Prep(voor) \ngetoond V(trans,verl_dw,onverv) \nrevolutionaire Adj(attr,stell,verv_neut) \nmiddelmaat N(soort,ev,neut) \npuddingvorm N(soort,ev,neut) \nvroedvrouw N(soort,ev,neut) \nvoelden V(refl,ovt,1_of_2_of_3,mv) \nontwijken V(trans,inf) \nmeegedeeld V(trans,verl_dw,onverv) \nafzonderlijke Adj(attr,stell,verv_neut) \nhalfdonker Adj(attr,stell,onverv) \ngefrustreerd V(trans,verl_dw,onverv) \noverzichtstentoonstelling N(soort,ev,neut) \ndwars Adj(adv,stell,onverv) \nkei N(soort,ev,neut) \nDa's V(hulp_of_kopp,ott,3,ev) \nnoodoplossing N(soort,ev,neut) \nprijken V(intrans,ott,1_of_2_of_3,mv) \nken V(trans,ott,1,ev) \nassistenten N(soort,mv,neut) \noorzaken N(soort,mv,neut) \naktetas N(soort,ev,neut) \nwellicht Adv(gew,geen_func,stell,onverv) \nriool-extase N(soort,ev,neut) \nerachter Adv(pron,onbep) \nvoorspellen V(trans,inf) \nstofbergen N(soort,mv,neut) \nbeeindigd V(trans,verl_dw,onverv) \nrommelen V(intrans,inf) \nUtopia N(eigen,ev,neut) \nenthousiasme N(soort,ev,neut) \nleveren V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nvoetgangers N(soort,mv,neut) \nRavens N(eigen,ev,neut) \nheren N(soort,mv,neut) \nbalk N(soort,ev,neut) \nvlot Adj(adv,stell,onverv) \nhartstochtelijk Adj(adv,stell,onverv) \nVeronica N(eigen,ev,neut) \nvermogensmisdrijven N(soort,mv,neut) \nBurg N(eigen,ev,neut) \nneiging N(soort,ev,neut) \nmooier Adj(attr,vergr,onverv) \nruimte N(soort,ev,neut) \nstappen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nkrotopruiming N(soort,ev,neut) \ngroene Adj(attr,stell,verv_neut) \ndikke Adj(attr,stell,verv_neut) \nBurm N(eigen,ev,neut) \ncommunes N(soort,mv,neut) \nA-D Num(hoofd,bep,attr,onverv) \nsigaret N(soort,ev,neut) \nkortom Int Adv(gew,geen_func,stell,onverv)\ntenten N(soort,mv,neut) \nindividualisme N(soort,ev,neut) \ntere Adj(attr,stell,verv_neut) \njongelui N(soort,mv,neut) \nidentieke Adj(attr,stell,verv_neut) \nalleenstaande Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nribbelige Adj(attr,stell,verv_neut) \nstudentendecaan N(soort,ev,neut) \nmotor N(soort,ev,neut) \nterm N(soort,ev,neut) \nwerkhypothese N(soort,ev,neut) \nCanarische N(eigen,mv,neut) \nparfumeer V(trans,imp) \nplatencontract N(soort,ev,neut) \nSteinbachs N(eigen,mv,neut) \nKusche N(eigen,ev,neut) \npijnen N(soort,mv,neut) \nzichtbare Adj(attr,stell,verv_neut) \nplekken N(soort,mv,neut) \nmiljoen Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\ninvaliditeitsverzekeringen N(soort,mv,neut) \nkwijtraakte V(trans,ovt,1_of_2_of_3,ev) \nacryl N(soort,ev,neut) \nTrouwens Adv(gew,geen_func,stell,onverv) \nband N(soort,ev,neut) \nbang Adj(attr,stell,onverv) \nAllemaal Pron(onbep,neut,zelfst) \nJonge Adj(attr,stell,verv_neut) \ngemak N(soort,ev,neut) \ngrasanjer N(soort,ev,neut) \nthuiskomen V(intrans,inf) \nbank N(soort,ev,neut) \ntoevoeging N(soort,ev,neut) \nziekteverzekering N(soort,ev,neut) \nbonnen N(soort,mv,neut) \nomlijst V(trans,verl_dw,onverv) \nPoesjkin N(eigen,ev,neut) \nindruk N(soort,ev,neut) \nbedoel V(trans,ott,1,ev) V(trans,ott,2,ev)\nbegrip N(soort,ev,neut) \ngeenszins Adv(gew,geen_func,stell,onverv) \nzeilt V(intrans,ott,3,ev) \nopgepropt V(trans,verl_dw,onverv) \nbloemetjes N(soort,mv,neut) \naangesmeerd V(trans,verl_dw,onverv) \naardappeltjes N(soort,mv,neut) \ntenslotte Adv(gew,geen_func,stell,onverv) \nlessen N(soort,mv,neut) \nverzoek N(soort,ev,neut) \nademhaling N(soort,ev,neut) \nvoetballen V(intrans,inf) \nethische Adj(attr,stell,verv_neut) \nlust N(soort,ev,neut) \nBordeauxregions N(soort,mv,neut) \nenergieke Adj(attr,stell,verv_neut) \nZuid-Vietnam N(eigen,ev,neut) \nonderneming N(soort,ev,neut) \nbrommers N(soort,mv,neut) \nvecht V(intrans,ott,3,ev) \nrekenen V(intrans,inf) \nuiterste Adj(zelfst,stell,verv_neut) \nnegatieve Adj(attr,stell,verv_neut) \nzandtrottoirs N(soort,mv,neut) \ncollectie N(soort,ev,neut) \nstommelde V(trans,ovt,1_of_2_of_3,ev) \nUgly N(eigen,ev,neut) \nsteeds Adv(gew,geen_func,stell,onverv) \nkil Adj(attr,stell,onverv) Adj(adv,stell,onverv)\n1_2 Num(hoofd,bep,attr,onverv) \nonstilbaar Adj(attr,stell,onverv) \nhondje N(soort,ev,neut) \nkin N(soort,ev,neut) \nm'n Pron(bez,1,ev,neut,attr) \nvruchtjes N(soort,mv,neut) \nkip N(soort,ev,neut) \nuzelf Pron(per,2,ev,nom) \nofficier N(soort,ev,neut) \nOmdat Conj(onder,met_fin) \novermorgen Adv(gew,geen_func,stell,onverv) \nOotmarsum N(eigen,ev,neut) \nGedroogde V(intrans,verl_dw,verv_neut) \nburgerlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ningedragen V(trans,verl_dw,onverv) \nzachtjes Adv(gew,geen_func,stell,onverv) \nbeloning N(soort,ev,neut) \nSkarabee N(eigen,ev,neut) \nopvatting N(soort,ev,neut) \nanderzijds Adv(gew,geen_func,stell,onverv) \nnazaten N(soort,mv,neut) \nexperimenten N(soort,mv,neut) \nAkersloot N(eigen,ev,neut) \nschaden V(intrans,inf) \nJoseph N(eigen,ev,neut) \nhoutsvuur N(soort,ev,neut) \npreuts Adj(attr,stell,verv_gen) \nVerhage N(eigen,ev,neut) \nDolle N(eigen,ev,neut) \ndispensatie N(soort,ev,neut) \nvergeten V(trans,verl_dw,onverv) V(trans,ott,1_of_2_of_3,mv) V(trans,inf) V(intrans,inf)\nwinnen V(trans,inf) V(intrans,inf)\ndorpsschool N(soort,ev,neut) \nstammen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv)\nvierduizend Num(hoofd,bep,attr,onverv) \ntuiten N(soort,mv,neut) \nMunchen N(eigen,ev,neut) \nbeoordelen V(trans,inf) \ndelen N(soort,mv,neut) V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\naanbeveling N(soort,ev,neut) \njazztrompettist N(soort,ev,neut) \nBoeyoeng N(eigen,ev,neut) \nuiteenlopende V(intrans,teg_dw,verv_neut) \nverzamelde V(trans,verl_dw,verv_neut) \nuitgelachen V(trans,verl_dw,onverv) \nIeren N(soort,mv,neut) \nverblijven N(soort,mv,neut) \nvoordat Conj(onder,met_fin) \nNee Int \nnachten N(soort,mv,neut) \ngeadopteerd V(trans,verl_dw,onverv) \nfarmaceutische Adj(attr,stell,verv_neut) \npersoonlijkheid N(soort,ev,neut) \nsentimentele Adj(attr,stell,verv_neut) \nApollo-15 N(eigen,ev,neut) \ngroter Adj(attr,vergr,onverv) \ngeschonken V(trans,verl_dw,onverv) \nMooie Adj(attr,stell,verv_neut) \nracerij N(soort,ev,neut) \nNet Adv(gew,geen_func,stell,onverv) \nNew N(eigen,ev,neut) \nindrukken N(soort,mv,neut) \nverdrietige Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\n15,6 Num(hoofd,bep,attr,onverv) \nvlug Adj(adv,stell,onverv) \nmaandblad N(soort,ev,neut) \ncadeau N(soort,ev,neut) \ndaartegen Adv(pron,aanw) \nmotto N(soort,ev,neut) \nglorie N(soort,ev,neut) \nleerling N(soort,ev,neut) \noplichtten V(trans,ovt,1_of_2_of_3,mv) \ntoevertrouwen V(trans,inf) \ndruipt V(intrans,ott,3,ev) \nnoodzakelijk Adj(attr,stell,onverv) \ndeelnemen V(intrans,inf) \nautoriteit N(soort,ev,neut) \nvervalt V(intrans,ott,3,ev) \ndeelnemer N(soort,ev,neut) \ntevreden Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nHorse N(eigen,ev,neut) \nBijna Adv(gew,geen_func,stell,onverv) \nwakkere Adj(attr,stell,verv_neut) \ninkomen N(soort,ev,neut) \ndwaze Adj(attr,stell,verv_neut) \nbelangrijkste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,verv_neut)\nstraf N(soort,ev,neut) \nlevensvatbaar Adj(attr,stell,onverv) \nenthousiaste Adj(attr,stell,verv_neut) \nchampignons N(soort,mv,neut) \nstrak Adj(adv,stell,onverv) \nAischylos N(eigen,ev,neut) \nminimumcijfers N(soort,mv,neut) \nsmaad N(soort,ev,neut) \nambitie N(soort,ev,neut) \nluidruchtig Adj(adv,stell,onverv) \nKralingen N(eigen,ev,neut) \nluxe Adj(attr,stell,onverv) \ngoden N(soort,mv,neut) \nsmaak N(soort,ev,neut) \nacrobatische Adj(attr,stell,verv_neut) \npleegt V(trans,ott,3,ev) \ngedrongen V(intrans,verl_dw,onverv) \nHille N(eigen,ev,neut) \nmeneer N(soort,ev,neut) \nverwording N(soort,ev,neut) \nDrenthe N(eigen,ev,neut) \nspastici N(soort,mv,neut) \nfrieten N(soort,mv,neut) \nouderwets Adj(attr,stell,onverv) \nsudderde V(intrans,ovt,1_of_2_of_3,ev) \nheuvels N(soort,mv,neut) \nloopt V(intrans,ott,3,ev) V(trans,ott,2,ev) V(trans,ott,3,ev)\ntoegaat V(intrans,ott,3,ev) \nfotosafari's N(soort,mv,neut) \nbeloerd V(trans,verl_dw,onverv) \nFuck Misc(vreemd) \nautopedjes N(soort,mv,neut) \ngedateerd V(trans,verl_dw,onverv) \nNotre N(eigen,ev,neut) \nharder Adj(attr,vergr,onverv) Adj(adv,vergr,onverv)\nDraai V(trans,ott,2,ev) \nbeschaving N(soort,ev,neut) \nactiestrategie N(soort,ev,neut) \nuitgaven N(soort,mv,neut) \nAmstelveen N(eigen,ev,neut) \nonderschat V(trans,verl_dw,onverv) \nzag V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev)\nwonen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,inf)\nKopenhagen N(eigen,ev,neut) \nSoft N(eigen,ev,neut) \nPhilip N(eigen,ev,neut) \nzak N(soort,ev,neut) \nzal V(hulp,ott,3,ev) V(hulp,ott,1,ev)\nFleet N(eigen,ev,neut) \nstudent N(soort,ev,neut) \nzat V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev)\npluchen Adj(attr,stell,onverv) \nkok N(soort,ev,neut) \ntakken N(soort,mv,neut) \ndikte N(soort,ev,neut) \nkom V(intrans,ott,1,ev) N(soort,ev,neut) V(hulp_of_kopp,ott,2,ev) V(intrans,imp)\nkon 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)\nkop N(soort,ev,neut) \nbeurzen N(soort,mv,neut) \nkou N(soort,ev,neut) \nDavid N(eigen,ev,neut) \nstraalt V(trans,ott,3,ev) \nPrager N(eigen,ev,neut) \nOverveens Adj(attr,stell,onverv) \nJames-Bond-film N(soort,ev,neut) \nafgeraden V(trans,verl_dw,onverv) \nverlieten V(trans,ovt,1_of_2_of_3,mv) \nHans-Georg N(eigen,ev,neut) \nwoonark N(soort,ev,neut) \nnadruk N(soort,ev,neut) \nVorig Adj(attr,stell,onverv) \nfors Adj(adv,stell,onverv) \nNeem V(trans,imp) \nvader N(soort,ev,neut) \nkrepeerden V(intrans,ovt,1_of_2_of_3,mv) \nteentjes N(soort,mv,neut) \nbegripsverklaring N(soort,ev,neut) \nwereldje N(soort,ev,neut) \nsteekt V(intrans,ott,3,ev) V(trans,ott,3,ev)\nsociaal Adj(adv,stell,onverv) \ninherente Adj(attr,stell,verv_neut) \nattracties N(soort,mv,neut) \nverkeerde Adj(attr,stell,verv_neut) \ndubbelgevouwen V(trans,verl_dw,onverv) \nrelatie N(soort,ev,neut) \ninpassen V(trans,inf) \nlibretto N(soort,ev,neut) \nbeslist Adj(adv,stell,onverv) Adv(gew,geen_func,stell,onverv)\nzondag N(eigen,ev,neut) \nhoofdrollen N(soort,mv,neut) \nalledag N(soort,ev,neut) \ncentimeter N(soort,ev,neut) \ngenoeg Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nduivelbezweringsmaskers N(soort,mv,neut) \npresident N(soort,ev,neut) \nvanille-ijs N(soort,ev,neut) \nBehrendt N(eigen,ev,neut) \nachteruit Adv(gew,geen_func,stell,onverv) \nReiche N(eigen,ev,neut) \nsteelt V(trans,ott,3,ev) \nevenredigheid N(soort,ev,neut) \nliefde N(soort,ev,neut) \nlapjes N(soort,mv,neut) \nBernard N(eigen,ev,neut) \nhaaknaald N(soort,ev,neut) \nhuisbaas N(soort,ev,neut) \nopluchting N(soort,ev,neut) \nmaakt V(trans,ott,3,ev) V(trans,imp) V(trans,ott,2,ev)\nkater N(soort,ev,neut) \nHallstein N(eigen,ev,neut) \nbikkelharde Adj(attr,stell,verv_neut) \nfoto N(soort,ev,neut) \nambivalentie N(soort,ev,neut) \nalvast Adv(gew,geen_func,stell,onverv) \nidee N(soort,ev,neut) \ngelooide V(trans,verl_dw,verv_neut) \ntechnisch Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nantwoordde V(trans,ovt,1_of_2_of_3,ev) \nboven Prep(voor) Adv(gew,geen_func,stell,onverv) Adv(deel_v)\nflatneurose N(soort,ev,neut) \ndringen V(intrans,inf) \nV.V.V. N(soort,ev,neut) \nidem Adv(gew,geen_func,stell,onverv) \nhelder Adj(attr,stell,onverv) \ncurieus Adj(attr,stell,onverv) \nbikini N(soort,ev,neut) \nmogelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\naangetrokken V(trans,verl_dw,onverv) \nmalaise N(soort,ev,neut) \nhierdoor Adv(pron,aanw) \nBuiten Adv(gew,geen_func,stell,onverv) \nMensen N(soort,mv,neut) \ntoesprak V(trans,ovt,1_of_2_of_3,ev) \nvernederingen N(soort,mv,neut) \naten V(intrans,ovt,1_of_2_of_3,mv) \nheeft-ie V(hulp_of_kopp,ott,3,ev) \ntrekdieren N(soort,mv,neut) \nzee N(soort,ev,neut) \nAken N(eigen,ev,neut) \nzeg V(trans,ott,1,ev) V(trans,imp) V(trans,ott,2,ev)\nbrochures N(soort,mv,neut) \nzei V(trans,ovt,1_of_2_of_3,ev) \ndinkie-toy N(soort,ev,neut) \ndoekjes N(soort,mv,neut) \nprijzen N(soort,mv,neut) V(trans,inf)\nfout N(soort,ev,neut) Adj(attr,stell,onverv)\neierroof N(soort,ev,neut) \nVreedzame Adj(attr,stell,verv_neut) \nwerklozen Adj(zelfst,stell,verv_mv) \nzes Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nschoolproblemen N(soort,mv,neut) \nzet V(trans,ott,3,ev) V(refl,ott,3,ev) V(refl,imp) V(trans,imp)\nminst Num(hoofd,onbep,zelfst,overtr,onverv) \n22-jarige Adj(attr,stell,verv_neut) \nsnikkend V(intrans,teg_dw,onverv) \nomgekeerd V(trans,verl_dw,onverv) \nbesloten V(trans,ovt,1_of_2_of_3,mv) V(trans,verl_dw,onverv)\nMick N(eigen,ev,neut) \nNOSstudio N(soort,ev,neut) \npsychische Adj(attr,stell,verv_neut) \nglimlachte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\njongeman N(soort,ev,neut) \ndurven V(hulp,inf) \naltijd Adv(gew,aanw) \nmaand N(soort,ev,neut) \nopbloeiende V(intrans,teg_dw,verv_neut) \nverduidelijkt V(trans,verl_dw,onverv) \nbrievenbus N(soort,ev,neut) \nFIKTE V(intrans,ovt,1_of_2_of_3,ev) \noorlogsspelletjes N(soort,mv,neut) \ninspraak N(soort,ev,neut) \ndoormaakt V(trans,ott,3,ev) \nzwemmen V(intrans,inf) \nbetekenissen N(soort,mv,neut) \nerboven Adv(pron,onbep) \nzwaaide V(intrans,ovt,1_of_2_of_3,ev) \nzoveelste Num(rang,onbep,attr,onverv) \ndames N(soort,mv,neut) \nbeschikten V(intrans,ovt,1_of_2_of_3,mv) \nkleinbehuisd Adj(attr,stell,onverv) \nopgesmukt V(trans,verl_dw,onverv) \nkinderbescherming N(soort,ev,neut) \nrennen V(intrans,inf) \nNog Adv(gew,geen_func,stell,onverv) \ntragedie N(soort,ev,neut) \nzonder Prep(voor) Adv(gew,geen_func,stell,onverv) Conj(onder,met_inf)\nkul N(soort,ev,neut) \ngekrast V(trans,verl_dw,onverv) \nkun V(hulp,ott,2,ev) V(intrans,ott,2,ev) V(trans,ott,2,ev)\nikoon N(soort,ev,neut) \ntweetal N(soort,ev,neut) \nshock-effecten N(soort,mv,neut) \nNou Adv(gew,aanw) Int\nEdvard N(eigen,ev,neut) \nBerlijn N(eigen,ev,neut) \nverzorg V(trans,imp) \nsteevast Adj(adv,stell,onverv) Adv(gew,geen_func,stell,onverv)\npuin N(soort,ev,neut) \nschoolmeester N(soort,ev,neut) \nreageert V(trans,ott,3,ev) \nMIDEM N(eigen,ev,neut) \nSoms Adv(gew,aanw) \nMiep N(eigen,ev,neut) \nteruggesnoeid V(trans,verl_dw,onverv) \nwalgelijke Adj(attr,stell,verv_neut) \nMies N(eigen,ev,neut) \nNIET Adv(gew,geen_func,stell,onverv) \nchirurg N(soort,ev,neut) \nLaten V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf)\nprimitieve Adj(attr,stell,verv_neut) \npitten N(soort,mv,neut) \ningrijpend V(intrans,teg_dw,onverv) \nbedacht V(trans,verl_dw,onverv) V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nLater Adj(adv,vergr,onverv) \nwaarnaar Adv(pron,vrag) \nfinancieringsmaatschappijen N(soort,mv,neut) \nSong N(eigen,ev,neut) \nabsolute Adj(attr,stell,verv_neut) \nontroering N(soort,ev,neut) \naankomen V(intrans,inf) \nzie V(trans,ott,1,ev) V(intrans,ott,1,ev) V(trans,ott,2,ev)\nkanalen N(soort,mv,neut) \nProbeer V(hulp,imp) \naanleiding N(soort,ev,neut) \nverdrongen V(trans,verl_dw,onverv) \nTerwijl Conj(onder,met_fin) \nDuitsland N(eigen,ev,neut) \nrecepties N(soort,mv,neut) \nzij Pron(per,3,ev_of_mv,nom) V(hulp_of_kopp,conj)\nvoorzetten V(trans,inf) \nCarolina N(eigen,ev,neut) \nblindelings Adj(adv,stell,onverv) \nzin N(soort,ev,neut) \nkeihard Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nreaktiemogelijkheden N(soort,mv,neut) \nvoorbeeld N(soort,ev,neut) \nwarenhuizen N(soort,mv,neut) \nafgunst N(soort,ev,neut) \nzit 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)\npop-art N(soort,ev,neut) \ningenieurs N(soort,mv,neut) \ncotelet N(soort,ev,neut) \nwisselwerking N(soort,ev,neut) \nnalatigheid N(soort,ev,neut) \nGustav N(eigen,ev,neut) \nvoordelige Adj(attr,stell,verv_neut) \nvederachtige Adj(attr,stell,verv_neut) \nrevolver N(soort,ev,neut) \nHarris N(eigen,ev,neut) \nludieke Adj(attr,stell,verv_neut) \ndrugs N(soort,mv,neut) \nresultaat N(soort,ev,neut) \nwaaronder Adv(pron,vrag) \nnette Adj(attr,stell,verv_neut) \naanrijden V(intrans,inf) \nEnterprises N(eigen,ev,neut) \nEdmund N(eigen,ev,neut) \nbehoorlijke Adj(attr,stell,verv_neut) \nabsoluut Adj(adv,stell,onverv) \ngeheimzinnige Adj(attr,stell,verv_neut) \nmislukking N(soort,ev,neut) \ngeetst V(trans,verl_dw,onverv) \nRekelsvrouwen N(soort,mv,neut) \nhobby-set-dozen N(soort,mv,neut) \nintussen Adv(gew,geen_func,stell,onverv) \ncasual Adj(attr,stell,onverv) \nfederale Adj(attr,stell,verv_neut) \nscherpe Adj(attr,stell,verv_neut) \nbijzonder Adj(adv,stell,onverv) N(soort,ev,neut)\nAhead-Haarlem N(eigen,ev,neut) \ngenezing N(soort,ev,neut) \nmoeder N(soort,ev,neut) \nnariep V(trans,ovt,1_of_2_of_3,ev) \nZesde N(eigen,ev,neut) \nopgeluisterd V(trans,verl_dw,onverv) \ngevierd V(trans,verl_dw,onverv) \nmaart N(eigen,ev,neut) \ndestijds Adv(gew,aanw) \nGesloten V(trans,verl_dw,onverv) \ngeorienteerd V(trans,verl_dw,onverv) \ngekomen V(intrans,verl_dw,onverv) \nboycotten V(trans,inf) \nruime Adj(attr,stell,verv_neut) \nbouwstop N(soort,ev,neut) \nleggen V(trans,inf) V(refl,inf)\noverschrijden V(trans,inf) \nStaten N(eigen,mv,neut) \nspraakvermogen N(soort,ev,neut) \narmoede N(eigen,ev,neut) N(soort,ev,neut)\novergevlogen V(intrans,verl_dw,onverv) \nouderworden V(intrans,inf,subst) \ngeconcentreerd V(trans,verl_dw,onverv) \nbezitlozen Adj(zelfst,stell,verv_mv) \nheden N(soort,ev,neut) N(eigen,ev,neut)\nvrijdagochtend N(soort,ev,neut) \ndoorschijnend Adj(attr,stell,onverv) \nchains N(soort,mv,neut) \nruine N(soort,ev,neut) \ngesubsidieerd V(trans,verl_dw,onverv) \nuitoefenen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nvoorbehoedmiddelen N(soort,mv,neut) \nkinderkopje N(soort,ev,neut) \nglas N(soort,ev,neut) \nbroekpak N(soort,ev,neut) \nbriesje N(soort,ev,neut) \ngrotere Adj(attr,vergr,verv_neut) \nuiterlijke Adj(zelfst,stell,verv_neut) \ntjalken N(soort,mv,neut) \nCastle N(eigen,ev,neut) \ngekleurd V(trans,verl_dw,onverv) \nvernemen V(trans,ott,1_of_2_of_3,mv) \nogenschijnlijk Adj(adv,stell,onverv) \nmeesters N(soort,mv,neut) \nbeloofde V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut)\npunt N(soort,ev,neut) \nonrechtvaardig Adj(adv,stell,onverv) \nMijn Pron(bez,1,ev,neut,attr) \nrechterarm N(soort,ev,neut) \nevenzo Adv(gew,geen_func,stell,onverv) \nvinden V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nVisserijstr. N(eigen,ev,neut) \nafbrak V(intrans,ovt,1_of_2_of_3,ev) \nvolhouden V(trans,inf) \npolysonore Adj(attr,stell,verv_neut) \nwandelde V(trans,ovt,1_of_2_of_3,ev) \nnatuurkunde N(soort,ev,neut) \naccepteerde V(trans,ovt,1_of_2_of_3,ev) \nkwijt Adj(attr,stell,onverv) \nenzovoorts Adv(gew,geen_func,stell,onverv) \nsociale Adj(attr,stell,verv_neut) \nsjaaltjes N(soort,mv,neut) \nentree N(soort,ev,neut) \nvoila Misc(vreemd) \nafscheid N(soort,ev,neut) \nregistratie N(soort,ev,neut) \nongehuwde Adj(attr,stell,verv_neut) \nPierre N(eigen,ev,neut) \ngespuwd V(trans,verl_dw,onverv) \nrechten N(soort,mv,neut) \nMike N(eigen,ev,neut) \ndrukt V(trans,ott,3,ev) \n26jarige Adj(attr,stell,verv_neut) \njaarlijks Adj(adv,stell,onverv) \nrechter N(soort,ev,neut) Adj(attr,vergr,onverv)\nwijd Adj(adv,stell,onverv) \neerlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ntrokken V(trans,ovt,1_of_2_of_3,mv) \nmoeilijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nwijn N(soort,ev,neut) \nsigarenkistjes N(soort,mv,neut) \nNonnetjes N(eigen,ev,gen) \n300 Num(hoofd,bep,attr,onverv) \nbereiken V(trans,inf) \nUiterlijk Adj(adv,stell,onverv) \nwandelen V(intrans,inf) \nlouter Adj(adv,stell,onverv) \nOVS N(eigen,ev,neut) \nwasmachine N(soort,ev,neut) \nRussische Adj(attr,stell,verv_neut) \nambachtsman N(soort,ev,neut) \ncruisen V(intrans,ott,1_of_2_of_3,mv) \nbijtgrage Adj(attr,stell,verv_neut) \nlevensgezel N(soort,ev,neut) \ncruises N(soort,mv,neut) \nscherts V(intrans,ott,1,ev) \nwoningnood N(soort,ev,neut) \nFerree N(eigen,ev,neut) \nlaboratoriumwerk N(soort,ev,neut) \nskicentrum N(soort,ev,neut) \nzon N(soort,ev,neut) \nEvenaar N(soort,ev,neut) \nHangt V(intrans,ott,3,ev) \noverspannen Adj(attr,stell,onverv) \nparaplu N(soort,ev,neut) \nongevallenverzekeringen N(soort,mv,neut) \nuitermate Adv(gew,geen_func,stell,onverv) Adj(attr,stell,verv_neut)\nzou V(hulp,ovt,1_of_2_of_3,ev) \nskien V(intrans,inf) \nBeuningen N(eigen,ev,neut) \nambulance N(soort,ev,neut) \nkruizemunt N(soort,ev,neut) \nkleurenharmonieen N(soort,mv,neut) \nveronderstelling N(soort,ev,neut) \nwelgemikte Adj(attr,stell,verv_neut) \nEngeland N(eigen,ev,neut) \nverkocht V(trans,verl_dw,onverv) V(trans,ovt,1_of_2_of_3,ev)\nDriehonderd Num(hoofd,bep,attr,onverv) \ngedaald V(intrans,verl_dw,onverv) \nEscoffier N(eigen,ev,neut) \nbekritiseerde V(trans,ovt,1_of_2_of_3,ev) \nopenluchtmuseum N(soort,ev,neut) \nachterblijft V(intrans,ott,3,ev) \nD'66 N(eigen,ev,neut) \ngereputeerde Adj(attr,stell,verv_neut) \n320 Num(hoofd,bep,attr,onverv) \nwilt V(hulp,ott,2,ev) V(trans,ott,2,ev) V(intrans,ott,2,ev)\nNaast Prep(voor) \n325 Num(hoofd,bep,attr,onverv) \nbeefden V(intrans,ovt,1_of_2_of_3,mv) \nMina N(eigen,ev,neut) \noverwegen V(trans,inf) \ntoegebeten V(trans,verl_dw,onverv) \nShappy N(eigen,ev,neut) \nofficieren N(soort,mv,neut) \nUitgekiend V(trans,verl_dw,onverv) \naandeel N(soort,ev,neut) \nsmart N(soort,ev,neut) \nonkosten N(soort,mv,neut) \nRussel N(eigen,ev,neut) \nverfstof N(soort,ev,neut) \nBobath N(eigen,ev,neut) \nhop-d'r-op Adv(gew,geen_func,stell,onverv) \nmanschappen N(soort,mv,neut) \nRussen N(soort,mv,neut) \nvijandigheid N(soort,ev,neut) \nwaarmede Adv(pron,vrag) \naanwezig Adj(attr,stell,onverv) \nsamen-zijn V(intrans,inf,subst) \ndiamanten N(soort,mv,neut) \nverharder N(soort,ev,neut) \nKortom Adv(gew,geen_func,stell,onverv) Int\nmidimode N(soort,ev,neut) \nteruggebracht V(trans,verl_dw,onverv) \nCucumber N(eigen,ev,neut) \n-onderzoek N(soort,ev,neut) \nfans N(soort,mv,neut) \nolielampje N(soort,ev,neut) \ndaarboven Adv(pron,aanw) \ngabardine N(soort,ev,neut) \nmannen N(soort,mv,neut) \nBondserie N(soort,ev,neut) \ngeringe Adj(attr,stell,verv_neut) \nhelemaal Adv(gew,geen_func,stell,onverv) \nnamelijk Adv(gew,geen_func,stell,onverv) \nuitwissen V(trans,inf) \nwind N(soort,ev,neut) \nSpartaan N(soort,ev,neut) \nCentraal Adj(attr,stell,onverv) \ninspirerende V(intrans,teg_dw,verv_neut) \nopstellen V(refl,ott,1_of_2_of_3,mv) \nBovendien Adv(gew,geen_func,stell,onverv) \nondergebracht V(trans,verl_dw,onverv) \ndeugdelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nvoorhand N(soort,ev,neut) \nEerlijkheidshalve Adv(gew,geen_func,stell,onverv) \ngingen 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)\nverre Adj(attr,stell,verv_neut) \nfotoserie N(soort,ev,neut) \ndaargelaten Prep(achter) \ntoeneemt V(intrans,ott,3,ev) \ngereageerd V(intrans,verl_dw,onverv) \nafliep V(trans,ovt,1_of_2_of_3,ev) \ngezamenlijk Adj(adv,stell,onverv) \nOZZ N(soort,ev,neut) \nuitgeprobeerd V(trans,verl_dw,onverv) \nWilgen N(eigen,ev,neut) \nbenadrukken V(trans,inf) \nbedaren V(intrans,inf) \nliefst Adj(adv,vergr,onverv) \nBedoel V(intrans,ott,2,ev) \ngezegden N(soort,mv,neut) \nSnowdon N(eigen,ev,neut) \nstervende V(intrans,teg_dw,verv_neut) \nonderbreken V(trans,inf) \nongeorganiseerde Adj(attr,stell,verv_neut) \nverse Adj(attr,stell,verv_neut) \nopeengeperste V(trans,verl_dw,verv_neut) \nkwaadheid N(soort,ev,neut) \nverhalen N(soort,mv,neut) V(trans,inf)\nvluggertje N(soort,ev,neut) \nniets Pron(onbep,neut,zelfst) \npuur Adj(adv,stell,onverv) \nmrs. N(eigen,ev,neut) \ngezorgd V(trans,verl_dw,onverv) \nramen N(soort,mv,neut) \noperatie N(soort,ev,neut) \ndiep Adj(adv,stell,onverv) \ngetrouwd V(intrans,verl_dw,onverv) \nverhinderd V(trans,verl_dw,onverv) \nlag V(intrans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev)\nverte N(soort,ev,neut) \ntutoyerend V(intrans,teg_dw,onverv) \nveroorzakende V(trans,teg_dw,verv_neut) \nweggegaan V(intrans,verl_dw,onverv) \ngedokterd V(intrans,verl_dw,onverv) \nafgeslagen V(trans,verl_dw,onverv) \nvanuit Prep(voor) \nSpanje N(eigen,ev,neut) \nzelden Adv(gew,geen_func,stell,onverv) \nlap N(soort,ev,neut) \nopvoeding N(soort,ev,neut) \nondeugende Adj(attr,stell,verv_neut) \nlas V(trans,ovt,1_of_2_of_3,ev) \neindspurt N(soort,ev,neut) \nrondbuig- N(soort,ev,neut) \njong Adj(attr,stell,onverv) \npikken V(trans,ott,1_of_2_of_3,mv) \nbeoogde V(trans,verl_dw,verv_neut) \nnieuw Adj(attr,stell,onverv) \nverdeeld V(trans,verl_dw,onverv) \nnervositeit N(soort,ev,neut) \npiano N(soort,ev,neut) \nvolzinnen N(soort,mv,neut) \nzus N(soort,ev,neut) \ngeconfronteerd V(trans,verl_dw,onverv) \neindigden V(intrans,ovt,1_of_2_of_3,mv) \n17.000 Num(hoofd,bep,attr,onverv) \nrecorder N(soort,ev,neut) \naanpakken V(trans,inf) \nverdeelt V(trans,ott,3,ev) \nvergaat V(intrans,ott,3,ev) \nschijnheiligheid N(soort,ev,neut) \npittige Adj(attr,stell,verv_neut) \nsinaasappelsap N(soort,ev,neut) \nkermis N(soort,ev,neut) \naceton N(soort,ev,neut) \njood N(soort,ev,neut) \nbuikwand N(soort,ev,neut) \ndaarbinnen Adv(pron,aanw) \nautoritaire Adj(attr,stell,verv_neut) \nlopen 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)\nBescherming N(eigen,ev,neut) \nstijgende V(intrans,teg_dw,verv_neut) \nwandkleed N(soort,ev,neut) \nconflict N(soort,ev,neut) \nVanaf Prep(voor) \noveral Adv(gew,onbep) \nMiss N(soort,ev,neut) \nAzie N(eigen,ev,neut) \ntenminste Adv(gew,geen_func,stell,onverv) \nformele Adj(attr,stell,verv_neut) \nmindere Num(hoofd,onbep,attr,vergr,verv_neut) \nweelderige Adj(attr,stell,verv_neut) \ngeuren N(soort,mv,neut) \ncombineren V(trans,inf) \ngulden N(soort,ev,neut) \nonechte Adj(attr,stell,verv_neut) \nmeestal Adv(gew,geen_func,stell,onverv) \nportret N(soort,ev,neut) \nblijkbaar Adv(gew,geen_func,stell,onverv) \n384 Num(hoofd,bep,zelfst,onverv) \nlelijke Adj(attr,stell,verv_neut) \nslimheid N(soort,ev,neut) \nwegliet V(trans,ovt,1_of_2_of_3,ev) \nroadmanager N(soort,ev,neut) \ntalrijk Adj(attr,stell,onverv) \nmelkmannen N(soort,mv,neut) \nVerandering N(soort,ev,neut) \neend N(soort,ev,neut) \neene Pron(onbep,neut,attr) \naankomst N(soort,ev,neut) \nBreton N(eigen,ev,neut) \noverwinning N(soort,ev,neut) \nhuizen N(soort,mv,neut) \nspelletjes N(soort,mv,neut) \ngemerkt V(trans,verl_dw,onverv) \nhuizes N(soort,ev,gen) \nondertitel N(soort,ev,neut) \nbeginnen 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)\neens Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv)\nmiddelmatige Adj(attr,stell,verv_neut) \nwist V(trans,ovt,1_of_2_of_3,ev) V(hulp,ovt,1_of_2_of_3,ev)\nVerkeer N(eigen,ev,neut) \nstructuur N(soort,ev,neut) \ngesmoorde V(trans,verl_dw,verv_neut) \ntube N(soort,ev,neut) \nerotisch Adj(attr,stell,onverv) \ninteressanter Adj(attr,vergr,onverv) \netc. Adv(gew,geen_func,stell,onverv) \nuitgever N(soort,ev,neut) \nTower N(eigen,ev,neut) \nSnoeshaan N(eigen,ev,neut) \ndeskundigen Adj(zelfst,stell,verv_mv) \nwerkploeg N(soort,ev,neut) \nALS Conj(onder,met_fin) \npratend V(intrans,teg_dw,onverv) \nwisselvallige Adj(attr,stell,verv_neut) \nkleurenfilms N(soort,mv,neut) \ndrentelden V(intrans,ovt,1_of_2_of_3,mv) \nMeneer N(soort,ev,neut) \nvervaardigd V(trans,verl_dw,onverv) \nverzekeringstarief N(soort,ev,neut) \naflatende V(intrans,teg_dw,verv_neut) \ngekrepeerd V(trans,verl_dw,onverv) \nwederzijds Adj(adv,stell,onverv) \ngenieting N(soort,ev,neut) \ndagverblijf N(soort,ev,neut) \naardig Adj(attr,stell,onverv) \nles N(soort,ev,neut) \nlet V(intrans,ott,3,ev) \nterroriseerden V(trans,ovt,1_of_2_of_3,mv) \nonderrigt N(soort,ev,neut) \nYves N(eigen,ev,neut) \nplassen N(soort,mv,neut) \nvergeleken V(trans,verl_dw,onverv) \nspasticiteit N(soort,ev,neut) \ndijk N(soort,ev,neut) \nbankreferenties N(soort,mv,neut) \nSquare N(eigen,ev,neut) \nNorway N(eigen,ev,neut) \nafgrijselijke Adj(attr,stell,verv_neut) \ndoorgedraaid V(trans,verl_dw,onverv) \nteveel Num(hoofd,onbep,zelfst,stell,onverv) \npopnummers N(soort,mv,neut) \naanvallen N(soort,mv,neut) \nokay Int \n1-persoonskamer N(soort,ev,neut) \nverkrijgbaar Adj(attr,stell,onverv) \nleeuwenkop N(soort,ev,neut) \nsleur N(soort,ev,neut) \nuitzicht N(soort,ev,neut) \nparticuliere Adj(attr,stell,verv_neut) \nopgewassen Adj(attr,stell,onverv) \nonjuist Adj(attr,stell,onverv) \ngiechelden V(intrans,ovt,1_of_2_of_3,mv) \ndorst N(soort,ev,neut) \nmogelijkheid N(soort,ev,neut) \nonverdraaglijke Adj(attr,stell,verv_neut) \nplantgat N(soort,ev,neut) \nANP N(eigen,ev,neut) \ngekwetst V(trans,verl_dw,onverv) \nvermoedens N(soort,mv,neut) \nmiljard Num(hoofd,bep,attr,onverv) \npresidentsverkiezingen N(soort,mv,neut) \nmeneren N(soort,mv,neut) \nGray N(eigen,ev,neut) \ndubbel-lp N(soort,ev,neut) \ngeurig Adj(attr,stell,onverv) \nresulteren V(intrans,ott,1_of_2_of_3,mv) \nEvenals Conj(onder,met_fin) \nziekten N(soort,mv,neut) \nsam-sam Adv(gew,geen_func,stell,onverv) \nCaecilia N(eigen,ev,neut) \npuberteit N(soort,ev,neut) \nwachten V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nkeert V(refl,ott,3,ev) \nWilliam N(eigen,ev,neut) \nsneden N(soort,mv,neut) \ndoorloop N(soort,ev,neut) \ndaartoe Adv(pron,aanw) \npotlood N(soort,ev,neut) \nprompt Adj(adv,stell,onverv) \nvergunning N(soort,ev,neut) \nvernietigd V(trans,verl_dw,onverv) \nKoningin N(soort,ev,neut) \nmeesten Num(hoofd,onbep,zelfst,overtr,verv_mv) \nBelgische Adj(attr,stell,verv_neut) \npunch Misc(vreemd) \nnachts N(soort,ev,gen) \ndiepzeezwemmen V(intrans,inf) \nmeester N(soort,ev,neut) \nglaasje-op N(soort,ev,neut) \nStadion N(soort,ev,neut) \ndonkerblauwe Adj(attr,stell,verv_neut) \nroodgeschilderde Adj(attr,stell,verv_neut) \nverzwegen V(trans,verl_dw,onverv) \nvermoeden V(trans,inf) \nprovocatus N(soort,ev,neut) \nonderaan Prep(voor) \nbekertje N(soort,ev,neut) \nZondag N(eigen,ev,neut) \nkennen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nbleef V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nrechtse Adj(attr,stell,verv_neut) \njaar N(soort,ev,neut) \nvoorspoedig Adj(adv,stell,onverv) \ndichtgetrokken V(trans,verl_dw,onverv) \nbleek V(hulp_of_kopp,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nMeestentijds Adv(gew,geen_func,stell,onverv) \ndecormaquette N(soort,ev,neut) \npapier N(soort,ev,neut) \neten N(soort,ev,neut) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf)\nGodsnaam N(soort,ev,neut) \nbaby-doll N(soort,ev,neut) \nkoken V(intrans,inf) \nBuitenveldert-Amsterdam N(eigen,ev,neut) \nRimini N(eigen,ev,neut) \nkoket Adj(adv,stell,onverv) \nlid N(soort,ev,neut) \nOch Int \njouw Pron(bez,2,ev,neut,attr) \nlig V(intrans,ott,1,ev) \nPsychiatrische Adj(attr,stell,verv_neut) \nKartoffelsalat N(soort,ev,neut) \nmotivering N(soort,ev,neut) \ngeraakt V(hulp_of_kopp,verl_dw,onverv) V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nPCS Num(hoofd,bep,zelfst,onverv) \ngemeen Adj(attr,stell,onverv) \ntriest Adj(attr,stell,onverv) \n2200 Num(hoofd,bep,attr,onverv) \npendelen V(intrans,inf) \ngrammofoon N(soort,ev,neut) \nzenuwslopende Adj(attr,stell,verv_neut) \nelkaars Pron(rec,gen) \nkluivend V(intrans,teg_dw,onverv) \nding N(soort,ev,neut) \nlering N(soort,ev,neut) \nzoals Conj(onder,met_fin) \nRein N(eigen,ev,neut) \nbereikte V(trans,ovt,1_of_2_of_3,ev) \nvoorste Adj(attr,stell,verv_neut) \nkruidenboeken N(soort,mv,neut) \nvijftig Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nOber N(soort,ev,neut) \nrustig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nlijdt V(trans,ott,3,ev) \nEuropa's N(eigen,ev,gen) \ngeestdrift N(soort,ev,neut) \netablissement N(soort,ev,neut) \ncollagestijl N(soort,ev,neut) \nsommige Pron(onbep,neut,attr) \ntijdens Prep(voor) \nhuisvrouwen N(soort,mv,neut) \nOpgeschrikt V(trans,verl_dw,onverv) \nmeubelen N(soort,mv,neut) \ntoebehoord V(intrans,verl_dw,onverv) \nmerels N(soort,mv,neut) \ngeknecht V(trans,verl_dw,onverv) \nhesje N(soort,ev,neut) \nkoelkast N(soort,ev,neut) \nARP N(eigen,ev,neut) \naardbevingen N(soort,mv,neut) \ngeringste Adj(attr,overtr,verv_neut) \ngeraamd V(trans,verl_dw,onverv) \ngrapje N(soort,ev,neut) \nvijanden N(soort,mv,neut) \nvaste Adj(attr,stell,verv_neut) \nuitbuiting N(soort,ev,neut) \neengezinswoningen N(soort,mv,neut) \nzaken N(soort,mv,neut) \ngekronkelde V(intrans,verl_dw,verv_neut) \nmeespelen V(intrans,inf) \neeuw N(soort,ev,neut) \nboordevol Adj(attr,stell,onverv) \naanwijzing N(soort,ev,neut) \narbeidsveld N(soort,ev,neut) \nlazen V(intrans,ovt,1_of_2_of_3,mv) \nAltijd Adv(gew,aanw) \nParool N(eigen,ev,neut) \ntuin N(soort,ev,neut) \ndeelden V(trans,ovt,1_of_2_of_3,mv) \nHendrika N(eigen,ev,neut) \nzoldertje N(soort,ev,neut) \nzodanig Pron(aanw,neut,zelfst) \nOnassis N(eigen,ev,neut) \ndoden Adj(zelfst,stell,verv_mv) V(trans,inf)\nTeruggekeerd V(intrans,verl_dw,onverv) \nIndiers N(soort,mv,neut) \nappeltaart N(soort,ev,neut) \ngoede Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nkluchtige Adj(attr,stell,verv_neut) \nPallandt N(eigen,ev,neut) \nturn-ons N(soort,mv,neut) \ndossier N(soort,ev,neut) \nzelfbewuster Adj(attr,vergr,onverv) \nkennis N(soort,ev,neut) \npopperig Adj(attr,stell,onverv) \ngezinstype N(soort,ev,neut) \nzichzelf Pron(ref,3,ev_of_mv) \nleeggehaald V(trans,verl_dw,onverv) \ngoeds Adj(attr,stell,verv_gen) \nZonder Prep(voor) Conj(onder,met_inf)\nbeamen V(trans,inf) \nbeschouw V(trans,ott,1,ev) \naanvraag N(soort,ev,neut) \nrilde V(intrans,ovt,1_of_2_of_3,ev) \nmentaliteit N(soort,ev,neut) \nvlakte N(soort,ev,neut) \nafwas N(soort,ev,neut) \ntelkens Adv(gew,geen_func,stell,onverv) \nstierf V(intrans,ovt,1_of_2_of_3,ev) \nsprekende V(intrans,teg_dw,verv_neut) \nheftige Adj(attr,stell,verv_neut) \nSark N(eigen,ev,neut) \ndoodeenzaam Adj(attr,stell,onverv) \ntonen 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)\nspeel V(trans,ott,1,ev) \nvoorouders N(soort,mv,neut) \nhonend V(intrans,teg_dw,onverv) \nregistreert V(trans,ott,3,ev) \nchanson-programma N(soort,ev,neut) \nprenten N(soort,mv,neut) \ndesnoods Adv(gew,geen_func,stell,onverv) \nbevatten V(trans,ott,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nontucht N(soort,ev,neut) \ngeintegreerd V(trans,verl_dw,onverv) \nmanifesteerde V(refl,ovt,1_of_2_of_3,ev) \nzeurderige Adj(attr,stell,verv_neut) \nnoch Conj(neven) \nhaverklap N(soort,ev,neut) \nbezaaid V(trans,verl_dw,onverv) \nonverharde Adj(attr,stell,verv_neut) \nvoelend V(intrans,teg_dw,onverv) \nprofessionele Adj(attr,stell,verv_neut) \ndichtbij Adv(gew,geen_func,stell,onverv) \nambtsperiode N(soort,ev,neut) \ngebrek N(soort,ev,neut) \nfondueschotels N(soort,mv,neut) \nReclamemensen N(soort,mv,neut) \nElspeet N(eigen,ev,neut) \ngestorven V(intrans,verl_dw,onverv) \ngelegenheid N(soort,ev,neut) \nbleke Adj(attr,stell,verv_neut) \nbuitengewoon Adj(adv,stell,onverv) \nkogels N(soort,mv,neut) \nopzien N(soort,ev,neut) \nregenjas N(soort,ev,neut) \nongegrond Adj(attr,stell,onverv) \nZwijger N(eigen,ev,neut) \neigenschappen N(soort,mv,neut) \nnode Adv(gew,geen_func,stell,onverv) \nverdienstelijk Adj(adv,stell,onverv) \nwanhopige Adj(attr,stell,verv_neut) \nDoen V(trans,ott,1_of_2_of_3,mv) \ntulp N(soort,ev,neut) \nDoet V(trans,ott,3,ev) \noliehaven N(soort,ev,neut) \naantrekkelijke Adj(attr,stell,verv_neut) \nsphagnum-turf N(soort,ev,neut) \nzakie N(soort,ev,neut) \nLeeuw N(soort,ev,neut) \nlof N(soort,ev,neut) \nOil N(eigen,ev,neut) \nlol N(soort,ev,neut) \nconcluderen V(trans,inf) \ndaaromheen Adv(pron,aanw) \ncitaat N(soort,ev,neut) \ntevens Adv(gew,geen_func,stell,onverv) \nlanden N(soort,mv,neut) N(eigen,ev,neut)\nlos Adj(attr,stell,onverv) \nlot N(soort,ev,neut) \nnoodlot N(soort,ev,neut) \naanzien N(soort,ev,neut) V(intrans,inf,subst) V(trans,inf)\nslachtpartij N(soort,ev,neut) \nplaatsjes N(soort,mv,neut) \nMoeder N(soort,ev,neut) N(eigen,ev,neut)\nJonkheer N(soort,ev,neut) \nSlavische Adj(attr,stell,verv_neut) \nhijzelf Pron(per,3,ev,nom) \nNederlands Adj(attr,stell,onverv) N(eigen,ev,neut) N(eigen,ev,gen)\nDaardoor Adv(pron,aanw) \nklap N(soort,ev,neut) \nAWW N(soort,ev,neut) \nkoorts N(soort,ev,neut) \nStichting N(eigen,ev,neut) \nhaten V(intrans,inf) \nzakje N(soort,ev,neut) \nrapport N(soort,ev,neut) \nKirsch N(soort,ev,neut) \nbungalowhotel N(soort,ev,neut) \nmilieus N(soort,mv,neut) \nkunststoffen Adj(attr,stell,onverv) \nhuwelijksreis N(soort,ev,neut) \nrechtsaf Adv(gew,geen_func,stell,onverv) \nmogen 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)\nDoge N(soort,ev,neut) \nweekend- N(soort,ev,neut) \nwonderkinderen N(soort,mv,neut) \nmedewerkers N(soort,mv,neut) \nslagerstouw N(soort,ev,neut) \nwaaraan Adv(pron,vrag) Adv(pron,betr)\nillusie N(soort,ev,neut) \nHuishoudschool N(soort,ev,neut) \nvangen V(trans,inf) \nStevens N(eigen,ev,neut) \nvaderlandse Adj(attr,stell,verv_neut) \nonthullend V(intrans,teg_dw,onverv) \ncontrole N(soort,ev,neut) \nwekelijks Adj(adv,stell,onverv) \nsturen V(trans,inf) N(soort,mv,neut)\nmaanoppervlak N(soort,ev,neut) \nGezinsvorming N(eigen,ev,neut) \nLijdensweek N(soort,ev,neut) \nzinsnede N(soort,ev,neut) \nDarnley N(eigen,ev,neut) \nmaatschappelijk Adj(attr,stell,onverv) \nambtenaren N(soort,mv,neut) \ngoeie Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nregering N(soort,ev,neut) \nUitgaande V(intrans,teg_dw,verv_neut) \noerkracht N(soort,ev,neut) \nluieren V(intrans,inf) \nlijkt V(hulp_of_kopp,ott,3,ev) V(intrans,ott,3,ev)\nHaarlem N(eigen,ev,neut) \nschilderwerk N(soort,ev,neut) \nontdooid V(trans,verl_dw,onverv) \nbieden V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nklonken V(intrans,ovt,1_of_2_of_3,mv) \nbuurtje N(soort,ev,neut) \ngebracht V(trans,verl_dw,onverv) \nCarel N(eigen,ev,neut) \nmissing-link N(soort,ev,neut) \nlusteloos Adj(adv,stell,onverv) \nRecreatie N(eigen,ev,neut) \ngemene Adj(attr,stell,verv_neut) \ni.u.d.'s N(soort,mv,neut) \nimpressionistische Adj(attr,stell,verv_neut) \nevenement N(soort,ev,neut) \nmexicaanse Adj(attr,stell,verv_neut) \nIerland N(eigen,ev,neut) \nGaaikema N(eigen,ev,neut) \nrebelse Adj(attr,stell,verv_neut) \ncoordinatie N(soort,ev,neut) \ntragisch Adj(attr,stell,onverv) \nInmiddels Adv(gew,geen_func,stell,onverv) \ntoeristische Adj(attr,stell,verv_neut) \nzoetvijltje N(soort,ev,neut) \nplezierigste Adj(attr,overtr,verv_neut) \neerst Adj(adv,vergr,onverv) Adv(gew,geen_func,stell,onverv)\nkleuter N(soort,ev,neut) \noefenen V(intrans,inf) V(trans,inf)\nkatholieke Adj(attr,stell,verv_neut) \nWaag V(trans,imp) \nOme N(soort,ev,neut) \nzelfportret N(soort,ev,neut) \nregeringspartijen N(soort,mv,neut) \nWaar Adv(gew,vrag) Adv(pron,betr)\nweerstond V(trans,ovt,1_of_2_of_3,ev) \npleiten V(intrans,ott,1_of_2_of_3,mv) \nkomkommers N(soort,mv,neut) \ngasten N(soort,mv,neut) \njachtsafari's N(soort,mv,neut) \nSander N(eigen,ev,neut) \nwaarschuwde V(trans,ovt,1_of_2_of_3,ev) \nschuilnaam N(soort,ev,neut) \nParade N(eigen,ev,neut) \nElizabeth N(eigen,ev,neut) \nnatuurmuseum N(soort,ev,neut) \nteruggehouden V(trans,verl_dw,onverv) \nbosneger N(soort,ev,neut) \nziekenhuisbevallingen N(soort,mv,neut) \nverkoop N(soort,ev,neut) \nuitbundige Adj(attr,stell,verv_neut) \nschooldeur N(soort,ev,neut) \nklem Adj(attr,stell,onverv) \nschoonheidswater N(soort,ev,neut) \ndoormidden Adv(gew,geen_func,stell,onverv) \nopereert V(intrans,ott,3,ev) \nsoelaas N(soort,ev,neut) \nexcellenties N(soort,mv,neut) \nhuwelijk N(soort,ev,neut) \nLindner N(eigen,ev,neut) \nkerstmis N(eigen,ev,neut) \nopgericht V(trans,verl_dw,onverv) \nmorgens N(soort,ev,gen) \ngelijk N(soort,ev,neut) Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nniet-Hindostaans Adj(attr,stell,onverv) \naandriften N(soort,mv,neut) \nabrikozen N(soort,mv,neut) \nOns Pron(bez,1,mv,neut,attr) N(eigen,ev,neut)\noefening N(soort,ev,neut) \nontstaan V(intrans,verl_dw,onverv) \ngezellige Adj(attr,stell,verv_neut) \nPolice Misc(vreemd) \nslagzin N(soort,ev,neut) \nnieuwsmedia N(soort,mv,neut) \nruikende V(intrans,teg_dw,verv_neut) \nontstaat V(intrans,ott,3,ev) \nwaarschuwen V(trans,inf) \nalgauw Adv(gew,geen_func,stell,onverv) \nOverspel N(soort,ev,neut) \nmisprijzend V(intrans,teg_dw,onverv) \nleken V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \nmeetellen V(trans,ott,1_of_2_of_3,mv) \nDahome N(eigen,ev,neut) \nOog N(soort,ev,neut) \ninachtneming N(soort,ev,neut) \nvolgorde N(soort,ev,neut) \nOok Adv(gew,geen_func,stell,onverv) \naantal N(soort,ev,neut) \nOom N(soort,ev,neut) N(eigen,ev,neut)\nlui Adj(attr,stell,onverv) \ndagen- Adj(attr,stell,verv_neut) \nsluiten V(refl,inf) V(trans,inf)\nvoelde V(refl,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nploegafspraken N(soort,mv,neut) \ngordijnring N(soort,ev,neut) \nminutieus Adj(attr,stell,onverv) \nserie N(soort,ev,neut) \nSoefi-zijn N(soort,ev,neut) \nfluitjes N(soort,mv,neut) \nwachtte V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nthuis-opgevoede Adj(attr,stell,verv_neut) \nOverdoen V(intrans,inf) \ngeheven V(trans,verl_dw,onverv) \nPhilippe N(eigen,ev,neut) \npleet N(soort,ev,neut) \nprakken V(trans,inf) \nfilmsterren N(soort,mv,neut) \neethuizen N(soort,mv,neut) \ninitiatief N(soort,ev,neut) \nzaadje-eitje N(soort,ev,neut) \nkozen V(trans,ovt,1_of_2_of_3,mv) \nBruce N(eigen,ev,neut) \nsijsjes N(soort,mv,neut) \nkoersstijging N(soort,ev,neut) \ngeraak V(hulp_of_kopp,ott,1,ev) \nvoelen V(intrans,inf) V(trans,ott,1_of_2_of_3,mv) V(refl,inf)\nverruiming N(soort,ev,neut) \nzo'n Pron(aanw,neut,attr) \neiwitten N(soort,mv,neut) \nbarok N(soort,ev,neut) \nvaagheid N(soort,ev,neut) \nbaron N(soort,ev,neut) \nperspektief N(soort,ev,neut) \nzijde N(soort,ev,neut) \nbewaring N(soort,ev,neut) \nPrevin N(eigen,ev,neut) \nonderhandelingen N(soort,mv,neut) \nRevu N(eigen,ev,neut) \nrelations N(soort,mv,neut) \nLimburgse Adj(attr,stell,verv_neut) \nhuisdier N(soort,ev,neut) \nhuilen V(intrans,inf) \nleerzaam Adj(attr,stell,onverv) \nfijngehakte V(trans,verl_dw,verv_neut) \njuffrouw N(soort,ev,neut) \nklik N(soort,ev,neut) \nwoont V(intrans,ott,3,ev) \nSorry Int \nauto's N(soort,mv,neut) \nkeukenprinses N(soort,ev,neut) \nhier Adv(gew,aanw) Adv(pron,aanw)\ncompliment N(soort,ev,neut) \nemancipatie N(soort,ev,neut) \nschiep V(trans,ovt,1_of_2_of_3,ev) \ndanig Adj(adv,stell,onverv) \nallerprilste Adj(attr,overtr,verv_neut) \nMaastrichtse Adj(attr,stell,verv_neut) \nbloedend V(intrans,teg_dw,onverv) \ninstructies N(soort,mv,neut) \nactie N(soort,ev,neut) \nzeegedierte N(soort,ev,neut) \nDoor Prep(voor) N(eigen,ev,neut)\ngenre N(soort,ev,neut) \nknoop N(soort,ev,neut) \nzonzoeker N(soort,ev,neut) \ncreaties N(soort,mv,neut) \nprimair Adj(adv,stell,onverv) \nraadplegen V(trans,inf) \nhandkarren N(soort,mv,neut) \nopzettelijk Adj(adv,stell,onverv) \nAlbert N(eigen,ev,neut) \nconclusie N(soort,ev,neut) \ngedreigd V(trans,verl_dw,onverv) \nChabaudanjer N(soort,ev,neut) \nlijst N(soort,ev,neut) \nwegwerken V(trans,inf) \nnatuurbad N(soort,ev,neut) \nwoongemeenschappen N(soort,mv,neut) \nwaartegen Adv(pron,vrag) \nAlle Pron(onbep,neut,attr) \npraatje N(soort,ev,neut) \nmerendeel N(soort,ev,neut) \ngemeubileerd V(trans,verl_dw,onverv) \nnood N(soort,ev,neut) \nbijwonen V(trans,inf,subst) \nsmaakpapillen N(soort,mv,neut) \ngewenste V(trans,verl_dw,verv_neut) \nVanuit Prep(voor) \ngrachten N(soort,mv,neut) \nthuiskwam V(intrans,ovt,1_of_2_of_3,ev) \nsnauwde V(intrans,ovt,1_of_2_of_3,ev) \nonderschatten V(trans,ott,1_of_2_of_3,mv) \nharpoenier N(soort,ev,neut) \nhaalde V(trans,ovt,1_of_2_of_3,ev) \nhigh N(eigen,ev,neut) \nplein N(soort,ev,neut) \nmedia-mannen N(soort,mv,neut) \nprobeerde V(hulp,ovt,1_of_2_of_3,ev) \nwateren N(soort,mv,neut) \nzakte V(intrans,ovt,1_of_2_of_3,ev) \npleit N(soort,ev,neut) V(intrans,ott,3,ev)\nChuvalo N(eigen,ev,neut) \nvliegen V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\n19,75 Num(hoofd,bep,attr,onverv) \nklaarmaakte V(refl,ovt,1_of_2_of_3,ev) \nnadele N(soort,ev,dat) \nModerne Adj(attr,stell,verv_neut) \nveroordeeld V(trans,verl_dw,onverv) \naankwam V(intrans,ovt,1_of_2_of_3,ev) \nLiefhebber N(soort,ev,neut) \nzuidkust N(soort,ev,neut) \nslakken N(soort,mv,neut) \ntenger Adj(attr,stell,onverv) \ngemanipuleer N(soort,ev,neut) \nparen V(intrans,inf) \nvoorhoofdknobbel N(soort,ev,neut) \nBrussel N(eigen,ev,neut) \nkronkelt V(intrans,ott,3,ev) \nAan Prep(voor) \nheeft V(hulp,ott,3,ev) V(trans,ott,3,ev) V(intrans,ott,3,ev) V(trans,ott,2,ev)\ndankt V(trans,ott,3,ev) \nkunstgeschiedenis N(soort,ev,neut) \nOnlangs Adv(gew,geen_func,stell,onverv) \nkusten N(soort,mv,neut) \nspierpoedelnaakt Adj(attr,stell,onverv) \nKermis N(eigen,ev,neut) \nbelangrijke Adj(attr,stell,verv_neut) \nDurham N(eigen,ev,neut) \nKoeweit N(eigen,ev,neut) \ntoeschouwers N(soort,mv,neut) \nsuiker N(soort,ev,neut) \nverdient V(trans,ott,3,ev) V(trans,ott,2,ev)\nOveral Adv(gew,onbep) \nwoord N(soort,ev,neut) \ncontract N(soort,ev,neut) \nkleinzerig Adj(attr,stell,onverv) \nDorp N(soort,ev,neut) \ngebiedt V(trans,ott,3,ev) \nbeheersen V(trans,ott,1_of_2_of_3,mv) \nlijve N(soort,ev,dat) \nboontjes N(soort,mv,neut) \nschokbrekers N(soort,mv,neut) \nprachtig Adj(attr,stell,onverv) \nterreinen N(soort,mv,neut) \nharten N(soort,ev,neut) \ngroepseffect N(soort,ev,neut) \nDory N(eigen,ev,neut) \ngroeten V(intrans,inf) \ntournee N(soort,ev,neut) \nzijden Adj(attr,stell,onverv) \ngefascineerd V(trans,verl_dw,onverv) \nbetrekken V(trans,inf) \ncontacten N(soort,mv,neut) \n400 Num(hoofd,bep,attr,onverv) \nhielden V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\nnadenk V(intrans,ott,1,ev) \ngeringere Adj(attr,vergr,verv_neut) \nlangdurig Adj(adv,stell,onverv) \nkoninklijke Adj(attr,stell,verv_neut) \nafgebroken V(trans,verl_dw,onverv) \nnegen Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nAch Int \nblijken V(hulp_of_kopp,ott,1_of_2_of_3,mv) V(intrans,inf)\nneger N(soort,ev,neut) \nschilder N(soort,ev,neut) \n-stronken N(soort,mv,neut) \nGevormde V(trans,verl_dw,verv_neut) \nhijgend V(intrans,teg_dw,onverv) \nonvoldaanheid N(soort,ev,neut) \neffe Adv(gew,geen_func,stell,onverv) \npopmusici N(soort,mv,neut) \nstudeerde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nafschrikken V(trans,inf) \nAct Misc(vreemd) \nimporteert V(trans,ott,3,ev) \nbruikbaars Adj(attr,stell,verv_gen) \nVeel Num(hoofd,onbep,attr,stell,onverv) \nlokaas N(soort,ev,neut) \nschijn N(soort,ev,neut) V(hulp_of_kopp,ott,2,ev)\nziekenhuisgemeenschap N(soort,ev,neut) \ngezichten N(soort,mv,neut) \nAda N(eigen,ev,neut) \nverdiept V(refl,verl_dw,onverv) \nvaten N(soort,mv,neut) \nkweken V(trans,inf,subst) V(trans,inf)\nzwoer V(intrans,ovt,1_of_2_of_3,ev) \ndeelnemers N(soort,mv,neut) \nbankstel N(soort,ev,neut) \nlijdensweg N(soort,ev,neut) \ndepartement N(soort,ev,neut) \nkiezen V(trans,inf) V(intrans,inf)\nhoofdgebouw N(soort,ev,neut) \nverjaarscadeau N(soort,ev,neut) \nwegstromen V(intrans,inf) \ndosis N(soort,ev,neut) \nSTOP N(soort,ev,neut) \nafgewogen V(trans,verl_dw,onverv) \nwesterse Adj(attr,stell,verv_neut) \nslaatje N(soort,ev,neut) \nsketches N(soort,mv,neut) \nHenri N(eigen,ev,neut) \nbordjes N(soort,mv,neut) \nnauwgezet Adj(adv,stell,onverv) \ndrankverkopers N(soort,mv,neut) \nachtentwintigste Num(rang,bep,zelfst,onverv) \nklok N(soort,ev,neut) \nvoorstellen V(trans,inf) \nklom V(intrans,ovt,1_of_2_of_3,ev) \ngevoed V(trans,verl_dw,onverv) \ninzien V(intrans,inf) \nDaan N(eigen,ev,neut) \nwaarvoor Adv(pron,vrag) \ngevoel N(soort,ev,neut) \nDaar Adv(pron,aanw) Adv(gew,aanw)\nHenry N(eigen,ev,neut) \nbitter Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nongelofelijk Adj(adv,stell,onverv) \nstoornissen N(soort,mv,neut) \nfrisse Adj(attr,stell,verv_neut) \nhoeken N(soort,mv,neut) \nverhuisd V(intrans,verl_dw,onverv) \nangst N(soort,ev,neut) \nJasperina N(eigen,ev,neut) \nverwacht V(trans,ott,1,ev) V(trans,ott,3,ev)\nStefan N(eigen,ev,neut) \njury-leden N(soort,mv,neut) \nserre N(soort,ev,neut) \nBritse Adj(attr,stell,verv_neut) \nvangst N(soort,ev,neut) \nverschijnsel N(soort,ev,neut) \nverbouwing N(soort,ev,neut) \nseptember N(eigen,ev,neut) \navonden N(soort,mv,neut) \nstroom N(soort,ev,neut) \nnaad N(soort,ev,neut) \nGalbulten N(soort,mv,neut) \nMobil N(eigen,ev,neut) \nalsnog Adv(gew,geen_func,stell,onverv) \nanonieme Adj(attr,stell,verv_neut) \nnaam N(soort,ev,neut) \nCecil N(eigen,ev,neut) \nkernen N(soort,mv,neut) \nhartspier N(soort,ev,neut) \nZachtheid N(soort,ev,neut) \nmiddle-class N(soort,ev,neut) \nnaar Prep(voor) Adv(deel_adv)\nonderdeel N(soort,ev,neut) \npublieke Adj(attr,stell,verv_neut) \nbeloop N(soort,ev,neut) \nHotel N(soort,ev,neut) \nclimacterium N(soort,ev,neut) \nranch N(soort,ev,neut) \ndirect Adj(adv,stell,onverv) \noptrad V(intrans,ovt,1_of_2_of_3,ev) \nnootjes N(soort,mv,neut) \ngelijktijdig Adj(adv,stell,onverv) \nspiegelstroken N(soort,mv,neut) \nvoorechtelijke Adj(attr,stell,verv_neut) \nnous Misc(vreemd) \nvereist V(trans,verl_dw,onverv) \nprobleempjes N(soort,mv,neut) \nnadere Adj(attr,vergr,verv_neut) \nliever Adj(adv,vergr,onverv) \nWant Conj(neven) \n444 Num(hoofd,bep,attr,onverv) \nlorren N(soort,mv,neut) \nwegpikt V(trans,ott,3,ev) \nverrassende V(intrans,teg_dw,verv_neut) \nbaden V(intrans,ovt,1_of_2_of_3,mv) V(intrans,inf)\nnadert V(trans,ott,3,ev) \naangrijpend V(intrans,teg_dw,onverv) \nteneinde Conj(onder,met_inf) \nbelastingbetalers N(soort,mv,neut) \nonverhoedse Adj(attr,stell,verv_neut) \nPoolse Adj(attr,stell,verv_neut) \nfeite N(soort,ev,dat) \nhing V(intrans,ovt,1_of_2_of_3,ev) \nbehoort V(intrans,ott,3,ev) \nbergen N(soort,mv,neut) \n37-jarige Adj(attr,stell,verv_neut) \nlingerie N(soort,ev,neut) \nnoodzakelijkheden N(soort,mv,neut) \nagressie N(soort,ev,neut) \nzijne Pron(bez,3,ev,neut,attr) \nonwrikbaar Adj(adv,stell,onverv) \nLester N(eigen,ev,neut) \nvervangen V(trans,verl_dw,onverv) \nschildje N(soort,ev,neut) \naanstekelijke Adj(attr,stell,verv_neut) \nwandelden V(intrans,ovt,1_of_2_of_3,mv) \npraatstof N(soort,ev,neut) \niets Pron(onbep,neut,zelfst) Pron(onbep,neut,attr)\ndirectie N(soort,ev,neut) \njapon N(soort,ev,neut) \nversturen V(trans,inf) \nvooral Adv(gew,geen_func,stell,onverv) \noplevert V(trans,ott,3,ev) \nlyrisch Adj(attr,stell,onverv) \nbadkamer N(soort,ev,neut) \njazz Misc(vreemd) \nBrusselse Adj(attr,stell,verv_neut) \nauto N(soort,ev,neut) \nonderwerp N(soort,ev,neut) \nkuren V(intrans,inf) \nJ.B. N(eigen,ev,neut) \nDSRV N(soort,ev,neut) \nbinnenkort Adv(gew,geen_func,stell,onverv) \nbezuinigen V(intrans,inf) \nongenoemd Adj(attr,stell,onverv) \nvooruitgang N(soort,ev,neut) \nzatterik N(soort,ev,neut) \nopging V(intrans,ovt,1_of_2_of_3,ev) \nbewandelen V(trans,ott,1_of_2_of_3,mv) \ngetracht V(hulp,verl_dw,onverv) \nmag 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)\nveilige Adj(attr,stell,verv_neut) \nafgronden N(soort,mv,neut) \nginds Adv(gew,aanw) \netentjes N(soort,mv,neut) \ngracieuze Adj(attr,stell,verv_neut) \nweinig Num(hoofd,onbep,zelfst,stell,onverv) Num(hoofd,onbep,attr,stell,onverv)\nman N(soort,ev,neut) N(eigen,ev,neut) Misc(vreemd) N(soort,mv,neut)\nmap N(soort,ev,neut) \nzeker Adj(adv,stell,onverv) Adj(attr,stell,onverv) Pron(onbep,neut,attr)\nzeldzamer Adj(attr,vergr,onverv) \nlezen V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\nhuizenbouw N(soort,ev,neut) \nermee Adv(pron,onbep) \nboodschappen N(soort,mv,neut) \nlezer N(soort,ev,neut) \ndaaruit Adv(pron,aanw) \nHermans N(eigen,ev,neut) \nvloedlijn N(soort,ev,neut) \nprocessen N(soort,mv,neut) \nuren N(soort,mv,neut) \nmisleidende V(intrans,teg_dw,verv_neut) \nkuchte V(intrans,ovt,1_of_2_of_3,ev) \nl.p. N(soort,ev,neut) \nbevolking N(soort,ev,neut) \nvoortgezet V(trans,verl_dw,onverv) \nAbrahamse N(eigen,ev,neut) \noperette N(soort,ev,neut) \ndeurknop N(soort,ev,neut) \nhoekje N(soort,ev,neut) \nherinneringen N(soort,mv,neut) \nvoorkeur N(soort,ev,neut) \nAlstublieft Int \nTerra Misc(vreemd) \ndialogen N(soort,mv,neut) \npraatte V(intrans,ovt,1_of_2_of_3,ev) \ntuinpaden N(soort,mv,neut) \nbekijkt V(trans,ott,2,ev) V(trans,ott,3,ev)\nTerre N(eigen,ev,neut) \nbibliotheek N(soort,ev,neut) \nbromde V(trans,ovt,1_of_2_of_3,ev) \navondje N(soort,ev,gen) \nvijfde Num(rang,bep,attr,onverv) \nmanieren N(soort,mv,neut) \nVeld N(eigen,ev,neut) \nkostuums N(soort,mv,neut) \nindicaties N(soort,mv,neut) \nditzelfde Pron(aanw,neut,attr) \nWarm V(trans,imp) \nradiostations N(soort,mv,neut) \nsteeg V(intrans,ovt,1_of_2_of_3,ev) \nrechtstreeks Adj(adv,stell,onverv) \nwielrijdster N(soort,ev,neut) \nsteek N(soort,ev,neut) V(trans,imp)\nsteen N(soort,ev,neut) \nfokken V(intrans,inf) \nkwetsbare Adj(attr,stell,verv_neut) \nbeschikte V(intrans,ovt,1_of_2_of_3,ev) \nallerscherpst Adj(attr,overtr,onverv) \nstraat N(soort,ev,neut) \nuitzending N(soort,ev,neut) \nsimplificaties N(soort,mv,neut) \nogenblik N(soort,ev,neut) \nDANKTE V(trans,ovt,1_of_2_of_3,ev) \nopmerkelijkste Adj(attr,overtr,verv_neut) \nminachting N(soort,ev,neut) \nrock N(soort,ev,neut) \nneergelegd V(trans,verl_dw,onverv) \ntrottoirs N(soort,mv,neut) \nvergelijk V(trans,ott,1,ev) \nuitmaken V(trans,inf) \nvervelen V(refl,inf) \n2.000 Num(hoofd,bep,attr,onverv) \ngesmoord V(trans,verl_dw,onverv) \nBlois N(eigen,ev,neut) \ngevolg N(soort,ev,neut) \ndreigde V(trans,ovt,1_of_2_of_3,ev) \nChemische Adj(attr,stell,verv_neut) \nvriendinnetjes N(soort,mv,neut) \nVenlo N(eigen,ev,neut) \nbouwtrant N(soort,ev,neut) \nolijke Adj(attr,stell,verv_neut) \nvlamgevat V(intrans,verl_dw,onverv) \nheilzaam Adj(attr,stell,onverv) \nCompromis N(soort,ev,neut) \nriskante Adj(attr,stell,verv_neut) \nrode Adj(attr,stell,verv_neut) \nkatoen N(soort,ev,neut) \ncultuur N(soort,ev,neut) \nmoeten V(hulp,ott,1_of_2_of_3,mv) V(hulp,inf)\nbenijdden V(trans,ovt,1_of_2_of_3,mv) \nHoes N(eigen,ev,neut) \nAls Conj(onder,met_fin) \nonderzochte V(trans,verl_dw,verv_neut) \nuberhaupt Adv(gew,geen_func,stell,onverv) \nzelfmoord N(soort,ev,neut) \nverklaring N(soort,ev,neut) \ngeachte V(trans,verl_dw,verv_neut) \naarzelde V(intrans,ovt,1_of_2_of_3,ev) \nnahoudt V(trans,ott,3,ev) \nRoodaangelopen Adj(attr,stell,onverv) \nmee Adv(deel_v) Adv(deel_adv) Adv(gew,geen_func,stell,onverv)\nvrouw-maagd N(soort,ev,neut) \nmei N(eigen,ev,neut) \npaasfolklore N(soort,ev,neut) \nbinnen Adv(gew,geen_func,stell,onverv) Adv(deel_v) Prep(voor)\nTerugzetten V(intrans,inf) \ngroenige Adj(attr,stell,verv_neut) \nmen Pron(onbep,neut,zelfst) \nverleden N(soort,ev,neut) Adj(attr,stell,onverv)\nmes N(soort,ev,neut) \nprocessie N(soort,ev,neut) \nmet Prep(voor) \nTerug Adv(gew,geen_func,stell,onverv) \nblokje N(soort,ev,neut) \nMevrouw N(soort,ev,neut) \nallerkleinsten Adj(zelfst,overtr,verv_neut) \ndaglicht N(soort,ev,neut) \nmedailles N(soort,mv,neut) \nwoonde V(intrans,ovt,1_of_2_of_3,ev) \nbroedtijd N(soort,ev,neut) \nroes N(soort,ev,neut) \nroet N(soort,ev,neut) \ngaapte V(intrans,ovt,1_of_2_of_3,ev) \nhits N(soort,mv,neut) \nbespreken V(trans,inf,subst) \nlauwwarm Adj(attr,stell,onverv) \nIjsland N(eigen,ev,neut) \nbekeken V(trans,verl_dw,onverv) \nmeegaande V(intrans,teg_dw,verv_neut) \naarzelen V(intrans,inf) \ngehouden V(trans,verl_dw,onverv) \nkwalen N(soort,mv,neut) \nallesverwoestend Adj(attr,stell,onverv) \nAnd Misc(vreemd) \nHoge Adj(attr,stell,verv_neut) \nRemover Misc(vreemd) \njarigen Adj(zelfst,stell,verv_mv) \nagent N(soort,ev,neut) \nbijfokken V(intrans,inf) \nmaximum N(soort,ev,neut) \nlokale Adj(attr,stell,verv_neut) \nangstig Adj(adv,stell,onverv) \ndrukke Adj(attr,stell,verv_neut) \nevolutionaire Adj(attr,stell,verv_neut) \nnabootsen V(intrans,inf) \nvakantiereizen N(soort,mv,neut) \nvastberaden Adj(adv,stell,onverv) \nCitaat N(soort,ev,neut) \nTevens Adv(gew,geen_func,stell,onverv) \nboerendansers N(soort,mv,neut) \nmede Adv(gew,geen_func,stell,onverv) \ndoorsneekijker N(soort,ev,neut) \nflutargumenten N(soort,mv,neut) \nstudie N(soort,ev,neut) \nheimwee N(soort,ev,neut) \ntitels N(soort,mv,neut) \nconservatieve Adj(attr,stell,verv_neut) \nscheelt V(trans,ott,3,ev) \nverantwoordelijkheid N(soort,ev,neut) \nheleboel N(soort,ev,neut) \nsensuele Adj(attr,stell,verv_neut) \nuitzondering N(soort,ev,neut) \nstudio N(soort,ev,neut) \nverkapt Adj(adv,stell,onverv) \nMunchhausen N(eigen,ev,neut) \nsteil Adj(adv,stell,onverv) \nDwayne N(eigen,ev,neut) \nopgeborgen V(trans,verl_dw,onverv) \nPas Adv(gew,geen_func,stell,onverv) N(eigen,ev,neut)\nKoorts N(soort,ev,neut) \nParadiso N(eigen,ev,neut) \nteint N(soort,ev,neut) \ntumult N(soort,ev,neut) \nnabijheid N(soort,ev,neut) \ndoorgemaakt V(trans,verl_dw,onverv) \nidentificeren V(trans,inf) \nProducer N(soort,ev,neut) \nDali N(eigen,ev,neut) \npromoveren V(intrans,inf) \nsluit V(trans,ott,3,ev) \nEnkelaar N(eigen,ev,neut) \nmeel N(soort,ev,neut) \nRoemenie N(eigen,ev,neut) \nwoestijn N(soort,ev,neut) \nrattenvlo N(soort,ev,neut) \nreddingsvloot N(soort,ev,neut) \nBettelstudent N(eigen,ev,neut) \nhandicap N(soort,ev,neut) \nmeen V(trans,ott,1,ev) V(trans,ott,2,ev)\nafijn Int \nbekleedt V(trans,ott,3,ev) \nmeer Adv(gew,geen_func,vergr,onverv) Num(hoofd,onbep,attr,vergr,onverv) Num(hoofd,onbep,zelfst,vergr,onverv) N(soort,ev,neut)\nBorra N(eigen,ev,neut) \nalcohol N(soort,ev,neut) \ntoefje N(soort,ev,neut) \njaarmarkt N(soort,ev,neut) \ngunstige Adj(attr,stell,verv_neut) \nwalvissen N(soort,mv,neut) \nbrak V(intrans,ovt,1_of_2_of_3,ev) \nJuliana N(eigen,ev,neut) \nsprekers N(soort,mv,neut) \nPisuisse N(eigen,ev,neut) \nDame N(eigen,ev,neut) \nbillijken V(trans,inf) \nlevenslang Adj(adv,stell,onverv) \nnevel N(soort,ev,neut) \nvoetgangersvereniging N(soort,ev,neut) \nDorpsstraat N(eigen,ev,neut) \nverbeelding N(soort,ev,neut) \nenkelbreuk N(soort,ev,neut) \nopluisterde V(trans,ovt,1_of_2_of_3,ev) \nalbums N(soort,mv,neut) \ngetuige Prep(voor) N(soort,ev,neut)\nmij Pron(per,1,ev,dat_of_acc) Pron(ref,1,ev)\neindelijk Adv(gew,geen_func,stell,onverv) \npaaien V(trans,inf) \nplastic N(soort,ev,neut) \nmin Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv)\nstudentenorganisaties N(soort,mv,neut) \nmis N(soort,ev,neut) \nvijftiende Num(rang,bep,zelfst,onverv) \nDana N(eigen,ev,neut) \nsouvenirs N(soort,mv,neut) \nrustieke Adj(attr,stell,verv_neut) \nlegertuig N(soort,ev,neut) \nopdonder N(soort,ev,neut) \nDank N(soort,ev,neut) V(trans,ott,1,ev)\nbloemmotieven N(soort,mv,neut) \nname N(soort,ev,dat) \nvergeven V(intrans,inf) V(trans,inf)\nopberg-bankje N(soort,ev,neut) \nrijlessen N(soort,mv,neut) \nluchten V(trans,inf) \nMargaret N(eigen,ev,neut) \nboudiers N(eigen,mv,neut) \ncontinent N(soort,ev,neut) \nverdrijven V(trans,inf) \nHieraan Adv(pron,aanw) \naandelenkoersen N(soort,mv,neut) \nstelt V(trans,ott,2,ev) V(refl,ott,3,ev) V(trans,ott,3,ev)\nNuss N(eigen,ev,neut) \nontwikkelingsplan N(soort,ev,neut) \nondernemersinitiatief N(soort,ev,neut) \ngifhistorie N(soort,ev,neut) \nverrekenen V(trans,inf) \ninstinct N(soort,ev,neut) \ntimmeren V(intrans,ott,1_of_2_of_3,mv) \nZuidAmerika N(eigen,ev,neut) \nvatte V(trans,ovt,1_of_2_of_3,ev) \nverbazen V(trans,inf) \nplegen V(hulp,ott,1_of_2_of_3,mv) V(trans,inf,subst)\nmej. N(eigen,ev,neut) \nBilly N(eigen,ev,neut) \nlollig Adj(attr,stell,onverv) \nwezenlijke Adj(attr,stell,verv_neut) \nwitzijden Adj(attr,stell,onverv) \npoeslief Adj(attr,stell,onverv) \nrommel N(soort,ev,neut) \ngepikt V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nGelijk Conj(onder,met_fin) \nkookboeken N(soort,mv,neut) \nwegvalt V(intrans,ott,3,ev) \nlinkerhand N(soort,ev,neut) \nHollywood N(eigen,ev,neut) \nPhiliptheatre N(eigen,ev,neut) \npaspoort N(soort,ev,neut) \nmeid N(soort,ev,neut) \nzwaar Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nSankt N(eigen,ev,neut) \nbegeeft V(refl,ott,3,ev) \nwaarboven Adv(pron,vrag) \nstellingen N(soort,mv,neut) \nbefaamde Adj(attr,stell,verv_neut) \nterugkeer N(soort,ev,neut) \nwesten N(soort,ev,neut) \nneerknielden V(intrans,ovt,1_of_2_of_3,mv) \nHome N(eigen,ev,neut) \ngeslikt V(trans,verl_dw,onverv) \nbriefje N(soort,ev,neut) \nmiddelbare Adj(attr,stell,verv_neut) \nartiesteningang N(soort,ev,neut) \nbidprentjesformaat N(soort,ev,neut) \nWeense Adj(attr,stell,verv_neut) \nverkeersovertreders N(soort,mv,neut) \nsprieten N(soort,mv,neut) \ngevaar N(soort,ev,neut) \ndecembermaand N(soort,ev,neut) \nonderdelen N(soort,mv,neut) \ninteressant Adj(attr,stell,onverv) \nongeduldiger Adj(attr,vergr,onverv) \ngedroomd V(trans,verl_dw,onverv) \nMcDonald N(eigen,ev,neut) \nvolslagen Adj(adv,stell,onverv) \nrolt V(intrans,ott,3,ev) \nbinnen- Adj(attr,stell,verv_neut) \ninscriptie N(soort,ev,neut) \nvisie N(soort,ev,neut) \nbeschrijvingskunst N(soort,ev,neut) \nvolksmaal N(soort,ev,neut) \npaplepel N(soort,ev,neut) \nluidt V(intrans,ott,3,ev) V(trans,ott,3,ev) V(hulp,ott,3,ev)\nprofane Adj(attr,stell,verv_neut) \nnippen V(intrans,ott,1_of_2_of_3,mv) \nstraks Adv(gew,geen_func,stell,onverv) \nmengen V(intrans,inf) V(trans,inf,subst)\nwalvisvaarder N(soort,ev,neut) \nongeluk N(soort,ev,neut) \nethiek N(soort,ev,neut) \nlied N(soort,ev,neut) \nzoeken V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(intrans,inf) V(trans,inf,subst)\nboycot N(soort,ev,neut) \nluchtig Adj(adv,stell,onverv) \nliep V(intrans,ovt,1_of_2_of_3,ev) \nveldheer N(soort,ev,neut) \nliet 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)\nerflatingen N(soort,mv,neut) \ngezinnen N(soort,mv,neut) \nspijzen N(soort,mv,neut) \naantrok V(trans,ovt,1_of_2_of_3,ev) \npubliceerde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\ngrijs Adj(zelfst,stell,onverv) Adj(attr,stell,onverv)\npleegde V(trans,ovt,1_of_2_of_3,ev) \nEconomische N(eigen,mv,neut) \nHoog Adj(adv,stell,onverv) \nElke Pron(onbep,neut,attr) \ngevogelte N(soort,ev,neut) \nrond Prep(voor) Adj(attr,stell,onverv) Adv(deel_v)\nmacht Misc(vreemd) N(soort,ev,neut)\ndenk- N(soort,ev,neut) \nvoorop Adv(gew,geen_func,stell,onverv) \nPanorama N(eigen,ev,neut) \nspontaan Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nbestelwagen N(soort,ev,neut) \nkapper N(soort,ev,neut) \nlife N(eigen,ev,neut) \nHoor V(intrans,imp) \nluchtvaart N(soort,ev,neut) \nkroop V(intrans,ovt,1_of_2_of_3,ev) \nPia N(eigen,ev,neut) \nwegbereiders N(soort,mv,neut) \nfantasieen N(soort,mv,neut) \nnare Adj(attr,stell,verv_neut) \nKomedianten N(eigen,ev,neut) \nverschilt V(intrans,ott,3,ev) \nmosterd N(soort,ev,neut) \nmelk N(soort,ev,neut) \nRitman N(eigen,ev,neut) \nschipbreukelingen N(soort,mv,neut) \nmoe Adj(attr,stell,onverv) N(soort,ev,neut)\nbeloven V(trans,inf) \nzeeschepen N(soort,mv,neut) \nGezellig Adj(attr,stell,onverv) \nlift N(soort,ev,neut) \nochtend N(soort,ev,neut) \nreisroute N(soort,ev,neut) \n1700 Num(hoofd,bep,zelfst,onverv) \nrood Adj(zelfst,stell,onverv) Adj(attr,stell,onverv)\nsigaar N(soort,ev,neut) \nongeduldig Adj(adv,stell,onverv) \ndrukte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\ngeschenk N(soort,ev,neut) \nbericht N(soort,ev,neut) \nwisseljaren N(soort,mv,neut) \nmasker N(soort,ev,neut) \nElly N(eigen,ev,neut) \nstrand N(soort,ev,neut) \nnasi N(eigen,ev,neut) \nabortuskliniek N(soort,ev,neut) \nheilzame Adj(attr,stell,verv_neut) \nhengelaar N(soort,ev,neut) \ngrill N(soort,ev,neut) \nbouwprogramma N(soort,ev,neut) \nbloedvaten N(soort,mv,neut) \nligt V(intrans,ott,3,ev) V(hulp,ott,3,ev)\nkarwei N(soort,ev,neut) \ngeestelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nsterk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nmr. N(eigen,ev,neut) \nverbergen V(trans,inf) \nhypofysaire Adj(attr,stell,verv_neut) \nbekwaam Adj(attr,stell,onverv) \nGedeelde V(trans,verl_dw,verv_neut) \nopperste Adj(attr,stell,verv_neut) \nglazige Adj(attr,stell,verv_neut) \ndenkt V(trans,ott,3,ev) V(trans,ott,2,ev) V(intrans,ott,3,ev)\ncombinatie N(soort,ev,neut) \nbelang N(soort,ev,neut) \nherstellen V(trans,inf) \n0,95 Num(hoofd,bep,attr,onverv) \nresultaten N(soort,mv,neut) \nplaatsvindt V(intrans,ott,3,ev) \nmoeilijkheden N(soort,mv,neut) \n(maatschappij-)visie N(soort,ev,neut) \nbasis N(soort,ev,neut) \nBlack N(eigen,mv,neut) \nmens N(soort,ev,neut) \narrogantie N(soort,ev,neut) \neenmaal Adv(gew,geen_func,stell,onverv) \nWeelf N(eigen,ev,neut) \nprrachtig Adj(attr,stell,onverv) \nsurfing N(soort,ev,neut) \nOverigens Adv(gew,geen_func,stell,onverv) \ngeredigeerd V(trans,verl_dw,onverv) \nnimmer Adv(gew,onbep) \nvergezelde V(trans,ovt,1_of_2_of_3,ev) \nontslag N(soort,ev,neut) \nSport N(soort,ev,neut) \nomheen Adv(deel_adv) \ngekropen V(intrans,verl_dw,onverv) \nijdelheid N(soort,ev,neut) \nvogels N(soort,mv,neut) \nsyteem N(soort,ev,neut) \nresoluut Adj(adv,stell,onverv) \ncentjes N(soort,mv,neut) \nMaltz N(eigen,ev,neut) \nalfabetische Adj(attr,stell,verv_neut) \nglimlach N(soort,ev,neut) \nrekening N(soort,ev,neut) \nonherroepelijk Adj(adv,stell,onverv) \nintree N(soort,ev,neut) \nactiviteiten N(soort,mv,neut) \ngeboortedorp N(soort,ev,neut) \nantwoordt V(trans,ott,3,ev) \nKlimrozen N(soort,mv,neut) \nnauw Adj(adv,stell,onverv) Adj(attr,stell,onverv)\npuntbaardje N(soort,ev,neut) \nMerton N(eigen,ev,neut) \nschotels N(soort,mv,neut) \nrichten V(trans,inf) \nSuiker N(soort,ev,neut) \nfaciliteiten N(soort,mv,neut) \ngiro-overschrijvingen N(soort,mv,neut) \nlijf N(soort,ev,neut) \nrelief N(soort,ev,neut) \nkudde N(soort,ev,neut) \nQueens N(eigen,ev,neut) \nmijnen N(soort,mv,neut) \nRijssen N(eigen,ev,neut) \nlijn N(soort,ev,neut) \nveert V(intrans,ott,3,ev) \nvoorwaarden N(soort,mv,neut) \nwanden N(soort,mv,neut) \nZeer Adv(gew,geen_func,stell,onverv) \nCapricieux N(eigen,ev,neut) \ntoeschouwer N(soort,ev,neut) \nbelangrijk Adj(attr,stell,onverv) \ngeleverd V(trans,verl_dw,onverv) \noogschaduw N(soort,ev,neut) \nsteun N(soort,ev,neut) \nVindt V(trans,ott,2,ev) \nPietje N(eigen,ev,neut) \nEmilia N(eigen,ev,neut) \norgel N(soort,ev,neut) \nepidemie N(soort,ev,neut) \nMarlene N(eigen,ev,neut) \ngoedheid N(soort,ev,neut) \nBill N(eigen,ev,neut) \noppervlak N(soort,ev,neut) \nHaag N(eigen,ev,neut) \nkraag N(soort,ev,neut) \nvechtlustige Adj(attr,stell,verv_neut) \nHaal V(trans,imp) \nTongeren N(eigen,ev,neut) \nkraai N(soort,ev,neut) \naffiches N(soort,mv,neut) \nSpaak N(eigen,ev,neut) \nSchmidt N(eigen,ev,neut) \nLonden N(eigen,ev,neut) \nHaar Pron(bez,3,ev,neut,attr) N(soort,ev,neut)\ngerechten N(soort,mv,neut) \npannetje N(soort,ev,neut) \nSanta N(eigen,ev,neut) \ndoorgaans Adv(gew,geen_func,stell,onverv) \nHoud V(trans,imp) \nhangar N(soort,ev,neut) \ndeftige Adj(attr,stell,verv_neut) \nbrandbaar Adj(attr,stell,onverv) \nSanti N(eigen,ev,neut) \ngetrokken V(trans,verl_dw,onverv) \nlila Adj(zelfst,stell,onverv) \naangelopen V(intrans,verl_dw,onverv) \neigenaar N(soort,ev,neut) \nPCPA N(soort,ev,neut) \nvrijheid N(soort,ev,neut) \nGlimlachend V(intrans,teg_dw,onverv) \nbroertje N(soort,ev,neut) \nomtrent Prep(voor) \ndronken V(intrans,ovt,1_of_2_of_3,mv) \nSowjets N(soort,mv,neut) \nraad N(soort,ev,neut) \nmassieve Adj(attr,stell,verv_neut) \nmerk V(trans,ott,1,ev) N(soort,ev,neut)\nklimt V(intrans,ott,3,ev) \nsymboliek N(soort,ev,neut) \nplatteland N(soort,ev,neut) \nZegt V(trans,ott,3,ev) V(trans,ott,2,ev)\nKorver N(eigen,ev,neut) \nraam N(soort,ev,neut) \nMontreal N(eigen,ev,neut) \nGevoed V(trans,verl_dw,onverv) \nKoeprin N(eigen,ev,neut) \ngrammofoonopname N(soort,ev,neut) \nverschaffen V(trans,inf) V(trans,inf,subst)\nbekroning N(soort,ev,neut) \nhonderdduizenden Num(hoofd,bep,attr,onverv) \nsamenstelde V(trans,ovt,1_of_2_of_3,ev) \nLjubljana N(eigen,ev,neut) \nvoetvolk N(soort,ev,neut) \ndemocratisering N(soort,ev,neut) \nUffizi N(eigen,ev,neut) \nverspreiden V(trans,ott,1_of_2_of_3,mv) \nkolonisten N(soort,mv,neut) \nwijdt V(trans,ott,3,ev) \nMilton N(eigen,ev,neut) \nblues N(soort,mv,neut) \nhield V(trans,ovt,1_of_2_of_3,ev) V(refl,ovt,1_of_2_of_3,ev)\nlaboratoria N(soort,mv,neut) \nvoortaan Adv(gew,geen_func,stell,onverv) \nwiegen N(soort,mv,neut) \ndagblad N(soort,ev,neut) \nartistieke Adj(attr,stell,verv_neut) \ngisteravond Adv(gew,geen_func,stell,onverv) \nbekend Adj(attr,stell,onverv) \nhielp V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nspeeltuin N(soort,ev,neut) \nrende V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nberoerder Adj(attr,vergr,onverv) \nvaarten N(soort,mv,neut) \ncommuniceren V(intrans,inf) \n400.000 Num(hoofd,bep,attr,onverv) \nambities N(soort,mv,neut) \nlink Adj(attr,stell,onverv) \nexotische Adj(attr,stell,verv_neut) \n15-jarig Adj(attr,stell,onverv) \nlint N(soort,ev,neut) \nexamen N(soort,ev,neut) \njeugdige Adj(attr,stell,verv_neut) \nstencil N(soort,ev,neut) \n1781 Num(hoofd,bep,zelfst,onverv) \nmezelf Pron(ref,1,ev) \nsneeuw N(soort,ev,neut) \nRuim Adj(adv,stell,onverv) \nVerenigde N(eigen,mv,neut) \nziekenhuis N(soort,ev,neut) \npotpourri N(soort,ev,neut) \nwinkels N(soort,mv,neut) \nLiever Adj(adv,vergr,onverv) \nwinkelt V(intrans,ott,3,ev) \ndriekwart Num(hoofd,bep,zelfst,onverv) \ngrootmoederprincipe N(soort,ev,neut) \naandacht N(soort,ev,neut) \nfronsen V(trans,inf) \njuiste Adj(attr,stell,verv_neut) \nrade N(soort,ev,dat) \nAandachtig Adj(adv,stell,onverv) \nmiddeltje N(soort,ev,neut) \nfestivaltent N(soort,ev,neut) \nbonnensysteem N(soort,ev,neut) \nwaarbij Adv(pron,betr) Adv(pron,vrag)\nhangen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\nuitsterving N(soort,ev,neut) \nEnige Pron(onbep,neut,attr) \nnamiddag N(soort,ev,neut) \nteruggevallen V(intrans,verl_dw,onverv) \nansichtkaarten N(soort,mv,neut) \nvissenmoordenaar N(soort,ev,neut) \nvurige Adj(attr,stell,verv_neut) \nWeesp N(eigen,ev,neut) \nperiode N(soort,ev,neut) \nVooral Adv(gew,geen_func,stell,onverv) \nmoeilijkheid N(soort,ev,neut) \nschokkende V(intrans,teg_dw,verv_neut) \narrangeur N(soort,ev,neut) \nSpaans Adj(zelfst,stell,onverv) \nsamentrekken V(intrans,ott,1_of_2_of_3,mv) \nvirtuoos Adj(attr,stell,onverv) \nreaktievorm N(soort,ev,neut) \nmeloen N(soort,ev,neut) \nduidelijkste Adj(attr,overtr,verv_neut) \nhaarfijn Adj(adv,stell,onverv) \nSpring N(eigen,ev,neut) \nmoeilijke Adj(attr,stell,verv_neut) \nWeinig Num(hoofd,onbep,attr,stell,onverv) \ntikken V(intrans,inf) \ngraagte N(soort,ev,neut) \nbuitenlanders N(soort,mv,neut) \nZelf Pron(aanw,neut,attr,w_zelf) \nbochten N(soort,mv,neut) \nploppertjes N(soort,mv,neut) \ngedacht V(trans,verl_dw,onverv) \nbeslissing N(soort,ev,neut) \npunten-telling N(soort,ev,neut) \noranje Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\nvermoedelijke Adj(attr,stell,verv_neut) \npotente Adj(attr,stell,verv_neut) \nMarianne N(eigen,ev,neut) \nspecifiek Adj(adv,stell,onverv) \nsynthetisch Adj(attr,stell,onverv) \nCrawford N(eigen,ev,neut) \ndaarvan Adv(pron,aanw) \nFriedl N(eigen,ev,neut) \nliefdeskandidaten N(soort,mv,neut) \nverscherpt V(intrans,verl_dw,onverv) \ngesleept V(trans,verl_dw,onverv) \nroze Adj(zelfst,stell,onverv) \nmarge N(soort,ev,neut) \ndwalen V(intrans,ott,1_of_2_of_3,mv) \nheerst V(intrans,ott,3,ev) \ntafeltje N(soort,ev,neut) \nledematen N(soort,mv,neut) \nthee N(soort,ev,neut) \npoint Misc(vreemd) \nvetkwabjes N(soort,mv,neut) \nrage N(soort,ev,neut) \ningebracht V(trans,verl_dw,onverv) \nModeredactrices N(soort,mv,neut) \nVijfde N(eigen,ev,neut) \nvermoord V(trans,ott,1,ev) \nvaderlijke Adj(attr,stell,verv_neut) \ngoedkoper Adj(attr,vergr,onverv) \nbelastingen N(soort,mv,neut) \nmaitre N(soort,ev,neut) \nvroege Adj(attr,stell,verv_neut) \nWesteuropese Adj(attr,stell,verv_neut) \nblauwe Adj(attr,stell,verv_neut) \nmiddelpunt N(soort,ev,neut) \nstevig Adj(adv,stell,onverv) \neisen N(soort,mv,neut) \naspecten N(soort,mv,neut) \nrapporteren V(trans,inf) \nontslagen V(trans,verl_dw,onverv) \nClub-Hotel N(soort,ev,neut) \nprotserig Adj(attr,stell,onverv) \nconstante Adj(attr,stell,verv_neut) \nkoppen N(soort,mv,neut) \nminiatuurtoneel N(soort,ev,neut) \nmachines N(soort,mv,neut) \nHongaarse Adj(attr,stell,verv_neut) \nHair N(eigen,ev,neut) \nuitzonderlijke Adj(attr,stell,verv_neut) \nkeuze N(soort,ev,neut) \ngrondslag N(soort,ev,neut) \nkrachtiger Adj(attr,vergr,onverv) \ntrieste Adj(attr,stell,verv_neut) \nPepper N(eigen,ev,neut) \nflesje N(soort,ev,neut) \nGevolg N(soort,ev,neut) \nzware Adj(attr,stell,verv_neut) \nbrug N(soort,ev,neut) \nnaargeestige Adj(attr,stell,verv_neut) \nbrui N(soort,ev,neut) \nmassacommunicatie N(soort,ev,neut) \nkrulspelden N(soort,mv,neut) \nmoedersterfte N(soort,ev,neut) \ngewonnen V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nkrullen N(soort,mv,neut) \nfiguurzaag N(soort,ev,neut) \nslag N(soort,ev,neut) \nSimon N(eigen,ev,neut) \nwrede Adj(attr,stell,verv_neut) \nspecialistische Adj(attr,stell,verv_neut) \ngracht N(soort,ev,neut) \nvoel V(trans,ott,1,ev) V(refl,ott,1,ev)\nrancuneus Adj(attr,stell,onverv) \npositieve Adj(attr,stell,verv_neut) \nzwart Adj(attr,stell,onverv) Adj(zelfst,stell,onverv)\nblondine N(soort,ev,neut) \nslak N(soort,ev,neut) \nRuffo N(eigen,ev,neut) \ngezond Adj(attr,stell,onverv) \nrecepten N(soort,mv,neut) \nvoer N(soort,ev,neut) \nverlaten V(trans,verl_dw,onverv) V(trans,inf)\nbadhuish Misc(vreemd) \nslap Adj(attr,stell,onverv) \nvoet N(soort,ev,neut) \nsukses N(soort,ev,neut) \nHartog N(eigen,ev,neut) \nSharon N(eigen,ev,neut) \nuitgezonderd Conj(onder,met_fin) \nlijsten N(soort,mv,neut) \nopdraafde V(intrans,ovt,1_of_2_of_3,ev) \nbehandeld V(trans,verl_dw,onverv) \ngoedverzorgde Adj(attr,stell,verv_neut) \nzwenkte V(intrans,ovt,1_of_2_of_3,ev) \nJackie N(eigen,ev,neut) \ngedonder N(soort,ev,neut) \nsmaakt V(intrans,ott,3,ev) \ngastheer N(soort,ev,neut) \nimponeerde V(trans,ovt,1_of_2_of_3,ev) \nvertrokken V(intrans,ovt,1_of_2_of_3,mv) \ncommentator N(soort,ev,neut) \nzuigt V(trans,ott,3,ev) \nBinnen N(eigen,ev,neut) \nGeef V(trans,imp) V(refl,ott,2,ev) N(eigen,ev,neut)\nbehandelt V(trans,ott,3,ev) \nwreed Adj(attr,stell,onverv) \nvakmensen N(soort,mv,neut) \nonderdrukt V(trans,verl_dw,onverv) \nnoorden N(soort,ev,neut) \nbabbeltje N(soort,ev,neut) \nGeen Pron(onbep,neut,attr) \nZIJN Pron(bez,3,ev,neut,attr) \nnadenken V(intrans,inf) \nGees N(eigen,mv,neut) \nbijeenkomsten N(soort,mv,neut) \nfiasco N(soort,ev,neut) \nLondon N(eigen,ev,neut) \n520 Num(hoofd,bep,attr,onverv) \nMcCarthy N(eigen,ev,neut) \nBea N(eigen,ev,neut) \nBee N(eigen,mv,neut) \nlichaamstaal N(soort,ev,neut) \nverzoeken V(trans,inf) \nbundel N(soort,ev,neut) \nBourget N(eigen,ev,neut) \nmobilisatie N(soort,ev,neut) \nAcifit N(eigen,ev,neut) \nBel V(trans,imp) \nBen N(eigen,ev,neut) V(hulp_of_kopp,ott,1,ev)\ntyfus N(soort,ev,neut) \nGerard N(eigen,ev,neut) \nbevestigd V(trans,verl_dw,onverv) \nhopeloos Adj(adv,stell,onverv) \nformuleren V(trans,inf) \nvlakbij Adv(gew,geen_func,stell,onverv) \nHalf Adj(adv,stell,onverv) \ndassen N(soort,mv,neut) \nHoudt V(intrans,ott,3,ev) \ndemografische Adj(attr,stell,verv_neut) \nuitkering N(soort,ev,neut) \ngekookt V(intrans,verl_dw,onverv) \nlengtevariaties N(soort,mv,neut) \nbreigarens N(soort,mv,neut) \nbieten N(soort,mv,neut) \ntweeenzestig Num(hoofd,bep,attr,onverv) \nkerstavond N(soort,ev,neut) \nmarkt N(soort,ev,neut) \nspuit N(soort,ev,neut) \nsherry N(soort,ev,neut) \noverhouden V(trans,inf) \nZelfexpressie N(eigen,ev,neut) \narbeidsvoorwaarden N(soort,mv,neut) \ntweeduizend Num(hoofd,bep,attr,onverv) \ndokter N(soort,ev,neut) \nbevestigt V(trans,ott,3,ev) \ndodelijk Adj(adv,stell,onverv) \nmoederlijke Adj(attr,stell,verv_neut) \nLevering N(soort,ev,neut) \nconcert N(soort,ev,neut) \nschoolkind N(soort,ev,neut) \nvakbladen N(soort,mv,neut) \nClassics Misc(vreemd) \nspaarzaam Adj(attr,stell,onverv) Adj(adv,stell,onverv)\ngebeurd V(intrans,verl_dw,onverv) \nwuivend V(intrans,teg_dw,onverv) \nbezochten V(trans,ovt,1_of_2_of_3,mv) \nrukte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nsportvis N(soort,ev,neut) \nLeger N(eigen,ev,neut) \nCasso N(eigen,ev,neut) \nbeinvloeden V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nVrije N(eigen,ev,neut) \nhuren V(trans,inf) \ngebeurt V(intrans,ott,3,ev) \nhoofdstuk N(soort,ev,neut) \nBestond V(intrans,ovt,1_of_2_of_3,ev) \nontwikkelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,verl_dw,verv_neut)\ntijdlang N(soort,ev,neut) \ntweeling N(soort,ev,neut) \naureool N(soort,ev,neut) \nvooruit Adv(gew,geen_func,stell,onverv) \n30,- Num(hoofd,bep,attr,onverv) \nReich N(eigen,ev,neut) \nverdwijnt V(intrans,ott,3,ev) \nsaunabaden N(soort,mv,neut) \nwonder N(soort,ev,neut) \ntelefooncel N(soort,ev,neut) \nbedrijvige Adj(attr,stell,verv_neut) \nanzichtschone Adj(attr,stell,verv_neut) \nHand N(soort,ev,neut) \nweken N(soort,mv,neut) V(trans,inf) V(intrans,ovt,1_of_2_of_3,mv)\nlaakte V(intrans,ovt,1_of_2_of_3,ev) \nzelfde Pron(aanw,neut,attr) \nrigoreuze Adj(attr,stell,verv_neut) \ningelicht V(trans,verl_dw,onverv) \ncompensatie N(soort,ev,neut) \nonderlaken N(soort,ev,neut) \nhetzelfde Pron(aanw,neut,attr) Pron(aanw,neut,zelfst)\nmejuffrouwen N(soort,mv,neut) \nHans N(eigen,ev,neut) \nMierlo N(eigen,ev,neut) \ngoed-Amerikaanse Adj(attr,stell,verv_neut) \nfreule N(soort,ev,neut) \nkrant N(soort,ev,neut) \nreligieuze Adj(attr,stell,verv_neut) \nroemt V(trans,ott,3,ev) \nGelderse Adj(attr,stell,verv_neut) \nconflictsituatie N(soort,ev,neut) \nkippe-ei N(soort,ev,neut) \nspijlen N(soort,mv,neut) \nvrijwel Adv(gew,geen_func,stell,onverv) \ndiner N(soort,ev,neut) \nlangwerpige Adj(attr,stell,verv_neut) \nlijstje N(soort,ev,neut) \nCHU N(eigen,ev,neut) \nrand N(soort,ev,neut) \nzoveel Num(hoofd,onbep,attr,stell,onverv) Num(hoofd,onbep,zelfst,stell,onverv)\ndaarover Adv(pron,aanw) \nvette Adj(attr,stell,verv_neut) \nafdaalde V(intrans,ovt,1_of_2_of_3,ev) \nnazomer N(soort,ev,neut) \nnam V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\ngeorganiseerd V(trans,verl_dw,onverv) \nruzie N(soort,ev,neut) \nkoperplaatbewerking N(soort,ev,neut) \nnat Adj(attr,stell,onverv) \nBij Prep(voor) \nopenlijker Adj(adv,vergr,onverv) \nsierprutsjes N(soort,mv,neut) \nglorieuze Adj(attr,stell,verv_neut) \noptreden V(intrans,inf) V(intrans,inf,subst) N(soort,ev,neut)\nKennedyverleden N(soort,ev,neut) \nbuitenissige Adj(attr,stell,verv_neut) \nbenadering N(soort,ev,neut) \nknollen N(soort,mv,neut) \nvoorhoofd N(soort,ev,neut) \nTsjechoslowakije N(eigen,ev,neut) \nkelders N(soort,mv,neut) \n55e Num(rang,bep,attr,onverv) \nJazeker Int \naanbevolen V(trans,verl_dw,onverv) \nkoning N(soort,ev,neut) \nheimelijke Adj(attr,stell,verv_neut) \nbeseffen V(trans,ott,1_of_2_of_3,mv) \nlords N(soort,mv,neut) \nuitdrukken V(trans,inf,subst) \narbitrage N(soort,ev,neut) \nornament N(soort,ev,neut) \nontzeggen V(trans,inf) \nkokende V(intrans,teg_dw,verv_neut) \nRuud N(eigen,ev,neut) \nIedereen Pron(onbep,neut,zelfst) \nweleens Adv(gew,geen_func,stell,onverv) \nzelfs Adv(gew,geen_func,stell,onverv) \ngepikeerd V(trans,verl_dw,onverv) \nhuishouden N(soort,ev,neut) \nfrei Misc(vreemd) \n4,50 Num(hoofd,bep,attr,onverv) \nlijden V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nvolk N(soort,ev,neut) \nFestival N(eigen,ev,neut) \nHindoe N(soort,ev,neut) \noverrompelt V(trans,ott,3,ev) \nwoonden V(intrans,ovt,1_of_2_of_3,mv) \ndeftiger Adj(attr,vergr,onverv) \nbeschimmelde V(intrans,verl_dw,verv_neut) \nVermoedelijk Adj(adv,stell,onverv) \nmystiek N(soort,ev,neut) \npunten N(soort,mv,neut) \neilanden N(soort,mv,neut) \nroept V(trans,ott,3,ev) V(intrans,ott,3,ev)\nStone N(eigen,ev,neut) \ndrinke V(trans,conj) \n3000 Num(hoofd,bep,zelfst,onverv) \nGeld N(soort,ev,neut) \ningewikkelde Adj(attr,stell,verv_neut) \nWesten N(soort,ev,neut) \ndeskundig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nonderzoekers N(soort,mv,neut) \nHuisarts N(eigen,ev,neut) \nHare N(eigen,ev,neut) \nDijkstra N(eigen,ev,neut) \nslim Adj(adv,stell,onverv) \nMoray N(eigen,ev,neut) \nRutSpeer N(eigen,ev,neut) \ndrinkt V(trans,ott,3,ev) V(intrans,ott,3,ev)\nvacuum N(soort,ev,neut) \nwijst V(intrans,ott,3,ev) V(trans,ott,3,ev)\nMontaldo N(eigen,ev,neut) \nverwerkt V(trans,verl_dw,onverv) \nBeiroet N(eigen,ev,neut) \nbrandbare Adj(attr,stell,verv_neut) \npiet N(soort,ev,neut) \nvolgden V(trans,ovt,1_of_2_of_3,mv) \nbedrag N(soort,ev,neut) \nuitlokken V(trans,inf) \nadviseur N(soort,ev,neut) \nKaarsdragers N(soort,mv,neut) \nloslaten V(trans,inf) \nbouwkundig Adj(attr,stell,onverv) \nlonend V(intrans,teg_dw,onverv) \nbeeldcassettes N(soort,mv,neut) \nAanleiding N(soort,ev,neut) \nhulpbehoevende Adj(attr,stell,verv_neut) \ntalismannen N(soort,mv,neut) \nbranden V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nvond V(trans,ovt,1_of_2_of_3,ev) \nonverschillig Adj(adv,stell,onverv) \naktie N(soort,ev,neut) \ngenageld V(trans,verl_dw,onverv) \nrottijd N(soort,ev,neut) \nhedendaagse Adj(attr,stell,verv_neut) \nStraks Adv(gew,geen_func,stell,onverv) \nrare Adj(attr,stell,verv_neut) \ndoende V(intrans,teg_dw,verv_neut) \nnee Int \npiraterij N(soort,ev,neut) \nnaief Adj(attr,stell,onverv) \nsaxofoon N(soort,ev,neut) \nreuzevent N(soort,ev,neut) \nnek N(soort,ev,neut) \ngordijn N(soort,ev,neut) \ntoneelschool N(soort,ev,neut) \nflatje N(soort,ev,neut) \nbeledigen V(trans,inf) \nriddergoed N(soort,ev,neut) \nnet Adv(gew,geen_func,stell,onverv) N(soort,ev,neut)\nLolita-achtig Adj(attr,stell,onverv) \nNkima N(eigen,ev,neut) \nGene N(eigen,ev,neut) \nbeluisteren V(trans,inf) \nanti-conceptie N(soort,ev,neut) \njongleren V(intrans,inf) \nLeeuwarden N(eigen,ev,neut) \ntransplantaties N(soort,mv,neut) \nzocht V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\npercentsgewijs Adj(adv,stell,onverv) \nstaarde V(intrans,ovt,1_of_2_of_3,ev) \nvoor 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)\nvoos Adj(attr,stell,onverv) \nmeerdere Num(hoofd,onbep,attr,vergr,verv_neut) \ndoelstelling N(soort,ev,neut) \nvolgende V(intrans,teg_dw,verv_neut) \nBestaat V(intrans,ott,3,ev) \nextra Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nkwamen V(intrans,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\ndraagt V(trans,ott,3,ev) \ntekent V(trans,ott,3,ev) \nartiesten N(soort,mv,neut) \nmeekrijgen V(trans,ott,1_of_2_of_3,mv) \nonderdrukking N(soort,ev,neut) \ntopplaats N(soort,ev,neut) \nkunstbenen N(soort,mv,neut) \nuitgestreken V(trans,verl_dw,onverv) \nkrampachtig Adj(adv,stell,onverv) \novergedragen V(trans,verl_dw,onverv) \nfris Adj(adv,stell,onverv) \ngevoelens N(soort,mv,neut) \nonoverbiddelijke Adj(attr,stell,verv_neut) \n4,95 Num(hoofd,bep,attr,onverv) \naspect N(soort,ev,neut) \nrechtbank N(soort,ev,neut) \nonmiddellijk Adj(adv,stell,onverv) \nkinderverhalen N(soort,mv,neut) \nMonsieur N(soort,ev,neut) \nBob N(eigen,ev,neut) \nschildpad N(soort,ev,neut) \nontmoedigt V(trans,ott,3,ev) \ntwee Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nLord N(eigen,ev,neut) \npraktisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nvogelbescherming N(soort,ev,neut) \nBoo N(eigen,ev,neut) \nfresco's N(soort,mv,neut) \nzovele Num(hoofd,onbep,attr,stell,verv_neut) \naanstaande Adj(attr,stell,verv_neut) \nspreiding N(soort,ev,neut) \nBos N(eigen,ev,neut) \nFijn Adj(attr,stell,onverv) \nChrist'l N(eigen,ev,neut) \nplanken N(soort,mv,neut) \npasta N(soort,ev,neut) \npuntje N(soort,ev,neut) \nplotseling Adj(adv,stell,onverv) \nnetjes Adv(gew,geen_func,stell,onverv) \nFriese Adj(attr,stell,verv_neut) \nonnodige Adj(attr,stell,verv_neut) \nstraffen V(intrans,inf) V(intrans,inf,subst)\ngemakkelijker Adj(adv,vergr,onverv) \ndraait V(intrans,ott,3,ev) V(trans,ott,3,ev)\nbetrouwbaarheid N(soort,ev,neut) \nFrieso N(eigen,ev,neut) \nrauw Adj(attr,stell,onverv) \nmasseuse N(soort,ev,neut) \ndoorzocht V(trans,ovt,1_of_2_of_3,ev) \neven Adv(gew,geen_func,stell,onverv) \nwijnkopers N(soort,mv,neut) \nbetreurde V(trans,ovt,1_of_2_of_3,ev) \ngedecoreerd V(trans,verl_dw,onverv) \nkomen V(intrans,inf) V(hulp_of_kopp,inf) V(intrans,ott,1_of_2_of_3,mv)\nvork N(soort,ev,neut) \nvorm N(soort,ev,neut) \nStaphorst N(eigen,ev,neut) \nverwachten V(trans,inf) \nsymfonieorkest N(soort,ev,neut) \neigenaars N(soort,mv,neut) \ndrift N(soort,ev,neut) \npijn N(soort,ev,neut) \npijp N(soort,ev,neut) \nSontag N(eigen,ev,neut) \ndaagt V(intrans,ott,3,ev) \ndollars N(soort,mv,neut) \neiste V(trans,ovt,1_of_2_of_3,ev) \nevenmin Adv(gew,geen_func,stell,onverv) \nvierenzeventigste Num(rang,bep,zelfst,onverv) \ntoestellen N(soort,mv,neut) \njoviaal Adj(adv,stell,onverv) \nMajesteit N(eigen,ev,neut) \ndramatisch Adj(attr,stell,onverv) \nschippers N(soort,mv,neut) \nserieus Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nslok N(soort,ev,neut) \nopnamen N(soort,mv,neut) \nsporthal N(soort,ev,neut) \nslaagde V(intrans,ovt,1_of_2_of_3,ev) \nLaan N(eigen,ev,neut) \nrawi N(soort,ev,neut) \nGert N(eigen,ev,neut) \nslot N(soort,ev,neut) \nlagere-schooltijd N(soort,ev,neut) \nzondagavond N(soort,ev,neut) \nkreeften N(soort,mv,neut) \nhitst V(trans,ott,3,ev) \nbezienswaardigheid N(soort,ev,neut) \nflatgebouwen N(soort,mv,neut) \nLaat V(hulp,imp) V(trans,imp) V(hulp,ott,1,ev) V(hulp,ott,3,ev) Adj(adv,stell,onverv)\nkapitaalkrachtige Adj(attr,stell,verv_neut) \nSchinveld N(eigen,ev,neut) \nStaat V(intrans,ott,3,ev) \nnl. Adv(gew,geen_func,stell,onverv) \nspaarzame Adj(attr,stell,verv_neut) \nsjiekste Adj(attr,overtr,verv_neut) \ndingen N(soort,mv,neut) \nverkrachting N(soort,ev,neut) \nmodinettes N(soort,mv,neut) \nwijze N(soort,ev,neut) Adj(attr,stell,verv_neut)\ngeaccepteerd V(trans,verl_dw,onverv) \nhandelingen N(soort,mv,neut) \nactief Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nhitte N(soort,ev,neut) \nTheresia N(eigen,ev,neut) \ndubbelzinnigheid N(soort,ev,neut) \ngevallen N(soort,mv,neut) V(intrans,verl_dw,onverv)\ntijdvak N(soort,ev,neut) \nkinderverlamming N(soort,ev,neut) \nbeslotenheid N(soort,ev,neut) \nhoorde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nvaag Adj(attr,stell,onverv) \nuitsluitend Adv(gew,geen_func,stell,onverv) \nVoorts Adv(gew,geen_func,stell,onverv) \npils N(soort,ev,neut) \nvaak Adv(gew,geen_func,stell,onverv) \ngeimporteerde V(trans,verl_dw,verv_neut) \nverwensingen N(soort,mv,neut) \nEddie N(eigen,ev,neut) \nbetoog N(soort,ev,neut) \nhobbelpaard N(soort,ev,neut) \ncommissie N(soort,ev,neut) \nedith N(eigen,ev,neut) \nvijftien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nsamenwerkend V(intrans,teg_dw,onverv) \nwoedend V(intrans,teg_dw,onverv) \nhomoseksueel N(soort,ev,neut) \nFins Adj(attr,stell,onverv) \ntwaalf-en-een-half Num(hoofd,bep,attr,onverv) \nslachtoffer N(soort,ev,neut) \nvulgaire Adj(attr,stell,verv_neut) \ncommentaar N(soort,ev,neut) \ngepraat V(intrans,verl_dw,onverv) \npesah N(eigen,ev,neut) \nLeven N(soort,ev,neut) \nopgediend V(trans,verl_dw,onverv) \nplaatselijke Adj(attr,stell,verv_neut) \ntenthuisjes N(soort,mv,neut) \nluchtbuidel N(soort,ev,neut) \nQuadrille N(eigen,ev,neut) \nparadis Misc(vreemd) \nbromfietser N(soort,ev,neut) \nHouse N(eigen,ev,neut) \nResidence Misc(vreemd) \ncompartimentjes N(soort,mv,neut) \noverzien V(trans,inf) \ngevonden V(trans,verl_dw,onverv) \nverhuizing N(soort,ev,neut) \nrepublikeinen N(soort,mv,neut) \naangesproken V(trans,verl_dw,onverv) \nvoorstel N(soort,ev,neut) \ntoneelstukken N(soort,mv,neut) \npoeier N(soort,ev,neut) \ngezakt V(intrans,verl_dw,onverv) \ntweede Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv)\nWolkow N(eigen,ev,neut) \nsjoemelen V(trans,inf) \nstoplichten N(soort,mv,neut) \nkindermishandeling N(soort,ev,neut) \nontbreekt V(intrans,ott,3,ev) \nafwijkende V(intrans,teg_dw,verv_neut) \nmannetjes N(soort,mv,neut) \nasperges N(soort,mv,neut) \nLanglauf N(soort,ev,neut) \ntoeval N(soort,ev,neut) \nspannen V(intrans,ott,1_of_2_of_3,mv) \naanvallige Adj(attr,stell,verv_neut) \nwezen V(hulp_of_kopp,inf) N(soort,ev,neut)\nno. N(soort,ev,neut) \nvergissen V(refl,inf) \nbewogen Adj(attr,stell,onverv) \nopzeggen V(intrans,inf) \naarzelend V(intrans,teg_dw,onverv) \nmoment N(soort,ev,neut) \nontdekte V(trans,ovt,1_of_2_of_3,ev) \nsupermarkets N(soort,mv,neut) \nCatac N(eigen,ev,neut) \nspreekt V(intrans,ott,3,ev) V(trans,ott,3,ev)\ngegaan V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nLoenochod N(eigen,ev,neut) \nWiegel N(eigen,ev,neut) \nbetaald V(trans,verl_dw,onverv) \naanmerkelijk Adj(adv,stell,onverv) \nBut Misc(vreemd) \nAtletico N(eigen,ev,neut) \nschipbreuk N(soort,ev,neut) \ngenoteerd V(trans,verl_dw,onverv) \nDrente N(eigen,ev,neut) \ngeneesheer-directeur N(soort,ev,neut) \nkoppeling N(soort,ev,neut) \nbelastbare Adj(attr,stell,verv_neut) \nberggebieden N(soort,mv,neut) \nonwil N(soort,ev,neut) \nverleend V(trans,verl_dw,onverv) \ntweeen Num(hoofd,bep,zelfst,onverv) \nfamilieleden N(soort,mv,neut) \nDeskundigheid N(soort,ev,neut) \ngenezingsbehoefte N(soort,ev,neut) \nsnaveltje N(soort,ev,neut) \nMagisch Adj(attr,stell,onverv) \nPiraeus N(eigen,ev,neut) \npomponvormige Adj(attr,stell,verv_neut) \ndeuren N(soort,mv,neut) \nverleent V(trans,ott,3,ev) \nstruktuur N(soort,ev,neut) \nbehalen V(trans,inf) \nklinken V(intrans,inf) \nmankement N(soort,ev,neut) \nbroertjes N(soort,mv,neut) \nscholen N(soort,mv,neut) \nwanbegrip N(soort,ev,neut) \nSssst Int \nzoal Adv(gew,aanw) \nelkaar Pron(rec,neut) \nnotariele Adj(attr,stell,verv_neut) \nmeren V(intrans,inf) \nverpanjerd V(trans,verl_dw,onverv) \nprovincies N(soort,mv,neut) \nadres N(soort,ev,neut) \noceaanoppervlak N(soort,ev,neut) \nnog Adv(gew,geen_func,stell,onverv) \nbovenal Adv(gew,geen_func,stell,onverv) \nonzegbaars Adj(attr,stell,verv_gen) \nbiologisch Adj(attr,stell,onverv) \nvooruitstrevende Adj(attr,stell,verv_neut) \nwijn-publicisten N(soort,mv,neut) \nkastje N(soort,ev,neut) \nbehulpzaamheid N(soort,ev,neut) \ndoppen V(trans,inf) \nRoode N(eigen,ev,neut) \nkuste V(trans,ovt,1_of_2_of_3,ev) \nsexshops N(soort,mv,neut) \nnot Misc(vreemd) \nnou Adv(gew,aanw) Int\ncoach N(soort,ev,neut) \nmassief Adj(attr,stell,onverv) \nPoema's N(eigen,mv,neut) \ngarderobe N(soort,ev,neut) \nparochiehuis N(soort,ev,neut) \nouderwetse Adj(attr,stell,verv_neut) \nvooruitzichten N(soort,mv,neut) \nknap Adj(attr,stell,onverv) \nhaven N(soort,ev,neut) \nernst N(soort,ev,neut) \nhaver N(soort,ev,neut) \nverwonden V(trans,inf) \ngeheime Adj(attr,stell,verv_neut) \nweggegooid V(trans,verl_dw,onverv) \nwerkruimte N(soort,ev,neut) \nopgetogen Adj(attr,stell,onverv) \nvurig Adj(adv,stell,onverv) \nblootstellen V(intrans,inf) \novertollige Adj(attr,stell,verv_neut) \nverpesten V(trans,inf) \nnr. N(soort,ev,neut) \nvroeg V(trans,ovt,1_of_2_of_3,ev) Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nwoordenstroom N(soort,ev,neut) \nGelukkig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nborrelende V(intrans,teg_dw,verv_neut) \nSchimmen N(soort,mv,neut) \nsubsidie N(soort,ev,neut) \nuitgekeken V(intrans,verl_dw,onverv) \nvage Adj(attr,stell,verv_neut) \nduimpje N(soort,ev,neut) \nonwettig Adj(attr,stell,onverv) \ndetails N(soort,mv,neut) \npiassen N(soort,mv,neut) \ngezaaid V(trans,verl_dw,onverv) \ninwendig Adj(adv,stell,onverv) \nijver N(soort,ev,neut) \nmoraal N(soort,ev,neut) \nbewerkelijk Adj(attr,stell,onverv) \nspinazie N(soort,ev,neut) \n1823 Num(hoofd,bep,zelfst,onverv) \n1824 Num(hoofd,bep,zelfst,onverv) \nvijver N(soort,ev,neut) \nElaine N(eigen,ev,neut) \n'30 Num(hoofd,bep,attr,onverv) \nbuffet N(soort,ev,neut) \ntoekomstige Adj(attr,stell,verv_neut) \napart Adj(attr,stell,onverv) \nrustige Adj(attr,stell,verv_neut) \npatiente N(soort,ev,neut) \nErvaringsfeiten N(soort,mv,neut) \nJudith N(eigen,ev,neut) \nbeste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,onverv) Adj(adv,vergr,verv_neut) Adj(zelfst,overtr,verv_neut)\nveiligheidspin N(soort,ev,neut) \nSinds Conj(onder,met_fin) \nappel N(soort,ev,neut) \nterecht Adv(gew,geen_func,stell,onverv) \nzelve Pron(aanw,neut,attr,w_zelf) \nAmerika N(eigen,ev,neut) \nevoluties N(soort,mv,neut) \ngeslachtsleven N(soort,ev,neut) \nHierbij Adv(pron,aanw) \nzorgt V(intrans,ott,3,ev) \nverstoring N(soort,ev,neut) \nlichtstad N(soort,ev,neut) \nlawaai N(soort,ev,neut) \noorzaak N(soort,ev,neut) \nPansy N(eigen,ev,neut) \nonbewust Adj(adv,stell,onverv) \n1837 Num(hoofd,bep,zelfst,onverv) \nNivernais N(eigen,ev,neut) \nBarrett N(eigen,ev,neut) \nzoek Adv(gew,geen_func,stell,onverv) V(trans,ott,1,ev)\nbudgetten N(soort,mv,neut) \naanbood V(trans,ovt,1_of_2_of_3,ev) \nzoet Adj(attr,stell,onverv) \nmoraal-code N(soort,ev,neut) \nfenomeen N(soort,ev,neut) \ncholera N(soort,ev,neut) \ngenre-aquarellen N(soort,mv,neut) \nAstruc N(eigen,ev,neut) \nklopten V(intrans,ovt,1_of_2_of_3,mv) \nkleurloos Adj(attr,stell,onverv) \nAstrud N(eigen,ev,neut) \ncollega N(soort,ev,neut) \nvanavond Adv(gew,geen_func,stell,onverv) \nwaarschuwing N(soort,ev,neut) \nhennep N(soort,ev,neut) \nMinnaars N(eigen,ev,neut) \nZuidpool N(eigen,ev,neut) \ntijde N(soort,ev,dat) \nKees N(eigen,ev,neut) \nadministratie N(soort,ev,neut) \nGracht N(eigen,ev,neut) \nsuccesvol Adj(attr,stell,onverv) \nRooie Adj(attr,stell,verv_neut) \nwelvaart N(soort,ev,neut) \nprotesteren V(intrans,inf) \nGezond N(eigen,ev,neut) \npaprika's N(soort,mv,neut) \nEster N(eigen,ev,neut) \nsneuvelt V(intrans,ott,3,ev) \naangetrouwd Adj(attr,stell,onverv) \nlogisch Adj(attr,stell,onverv) \noverwonnen V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nWerksituatie N(soort,ev,neut) \nhaastig Adj(adv,stell,onverv) \nNiemand Pron(onbep,neut,zelfst) \ngetreden V(trans,verl_dw,onverv) \nNederlanders N(soort,mv,neut) \nJezus N(eigen,ev,neut) \nbreidt V(refl,ott,3,ev) \nstuit V(intrans,ott,3,ev) \naanval N(soort,ev,neut) \nmerkt V(trans,ott,3,ev) V(trans,ott,2,ev)\noverheid N(soort,ev,neut) \nsamenwoning N(soort,ev,neut) \nstemmenwinst N(soort,ev,neut) \ncharmantste Adj(attr,overtr,verv_neut) \nbrieven N(soort,mv,neut) \nuitgestrekte V(trans,verl_dw,verv_neut) \nverantwoord V(trans,verl_dw,onverv) \ncriminaliteit N(soort,ev,neut) \nnut N(soort,ev,neut) \nhuisvesten V(trans,inf) \nverfijnde V(trans,verl_dw,verv_neut) \nbegroet V(trans,verl_dw,onverv) \nJean-Gabriel N(eigen,ev,neut) \ngenoemde V(trans,verl_dw,verv_neut) \nkantoor N(soort,ev,neut) \nverdringingsstelsel N(soort,ev,neut) \npamfletten N(soort,mv,neut) \npollepel N(soort,ev,neut) \nCarlos N(eigen,ev,neut) \nafgedwongen V(trans,verl_dw,onverv) \nkoffer-wegen V(intrans,inf,subst) \nhectares N(soort,mv,neut) \naangename Adj(attr,stell,verv_neut) \nWallen N(eigen,mv,neut) \nnihil Pron(onbep,neut,zelfst) \nKennedy's N(eigen,mv,neut) \nvals Adj(attr,stell,onverv) \nuitgaan V(intrans,inf) \nvalt V(intrans,ott,3,ev) \nworden 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)\n1875 Num(hoofd,bep,zelfst,onverv) \nonbevangen Adj(adv,stell,onverv) \nvertekend V(trans,verl_dw,onverv) \naankopen N(soort,mv,neut) \nontsnapping N(soort,ev,neut) \nuitgaat V(intrans,ott,3,ev) \nkrijgsraad N(soort,ev,neut) \nontspannen V(trans,verl_dw,onverv) V(refl,inf)\nDokter N(soort,ev,neut) \nvraagt V(trans,ott,2,ev) V(trans,ott,3,ev)\nMcCartney N(eigen,ev,neut) \nonderdanen N(soort,mv,neut) \nondertussen Adv(gew,geen_func,stell,onverv) \nLane N(eigen,ev,neut) \nvolgt V(intrans,ott,3,ev) V(trans,ott,3,ev)\nBenno N(eigen,ev,neut) \ngetraumatiseerd V(trans,verl_dw,onverv) \nshirts N(soort,mv,neut) \nsterren N(soort,mv,neut) \nverdraagt V(trans,ott,3,ev) \nkomst N(soort,ev,neut) \nexcommuniceerde V(trans,ovt,1_of_2_of_3,ev) \nstuks N(soort,mv,neut) \nkunstschatten N(soort,mv,neut) \nsteunlokalen N(soort,mv,neut) \nreiger N(soort,ev,neut) \nOfficier N(soort,ev,neut) \nbadpaviljoentje N(soort,ev,neut) \nuitnodiging N(soort,ev,neut) \nValkenswaard N(eigen,ev,neut) \nconstateer V(trans,ott,1,ev) \nschaven N(soort,mv,neut) \njaren N(soort,mv,neut) \ninschakeling N(soort,ev,neut) \nspeervissen V(intrans,inf,subst) \nnieuwjaar N(eigen,ev,neut) \nmodegevoelig Adj(attr,stell,onverv) \nbezitsrecht N(soort,ev,neut) \nbinnenvaren V(intrans,inf) \nverwachtte V(trans,ovt,1_of_2_of_3,ev) \nknie N(soort,ev,neut) \nongeveer Adv(gew,geen_func,stell,onverv) \ndeelnemende V(intrans,teg_dw,verv_neut) \nhandgreep N(soort,ev,neut) \nlogeerpartij N(soort,ev,neut) \nDuvalier N(eigen,ev,neut) \nstompen N(soort,mv,neut) \nserieuzer Adj(attr,vergr,onverv) \nwensdroom N(soort,ev,neut) \ngoedvinden V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\nbederven V(trans,ott,1_of_2_of_3,mv) \nrichtingen N(soort,mv,neut) \nkosten N(soort,mv,neut) \nkwaaltje N(soort,ev,neut) \ntelevisie-juke-box N(soort,ev,neut) \nknip V(trans,imp) \nzozeer Adv(gew,aanw) \nuitgeschakeld V(trans,verl_dw,onverv) \nKamperdijk N(eigen,ev,neut) \nbinnenplaatsje N(soort,ev,neut) \npepertje N(soort,ev,neut) \nformatie N(soort,ev,neut) \nhulpverlening N(soort,ev,neut) \nuitstromend V(intrans,teg_dw,onverv) \nDaniel N(eigen,ev,neut) \nrecord N(soort,ev,neut) \ngekoesterd V(trans,verl_dw,onverv) \nuiteenlopen V(intrans,inf) \n1896 Num(hoofd,bep,zelfst,onverv) \nvlieg N(soort,ev,neut) \nDaarmee Adv(pron,aanw) \nPoll N(eigen,ev,neut) \ntoepassingsmogelijkheden N(soort,mv,neut) \nuitbundigheid N(soort,ev,neut) \nenorm Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nmeikaas N(soort,ev,neut) \nhoogtijdagen N(soort,mv,neut) \nstukken N(soort,mv,neut) \nschudde V(trans,ovt,1_of_2_of_3,ev) \nLionel N(eigen,ev,neut) \nsnugger Adj(attr,stell,onverv) \ngenezen V(intrans,inf) \ndoorgedrongen V(intrans,verl_dw,onverv) \nloskomt V(intrans,ott,3,ev) \nsnoep N(soort,ev,neut) \noverhemd N(soort,ev,neut) \ngeslagen V(intrans,verl_dw,onverv) \nnukkig Adj(adv,stell,onverv) \njukbeenderen N(soort,mv,neut) \ngraden N(soort,mv,neut) \naanbouw N(soort,ev,neut) \ngrootmoeder N(soort,ev,neut) \nmarkante Adj(attr,stell,verv_neut) \nterugkerende V(intrans,teg_dw,verv_neut) \nbenaderde V(trans,ovt,1_of_2_of_3,ev) \nwoorden N(soort,mv,neut) \nverkenners N(soort,mv,neut) \ncenten N(soort,mv,neut) \nbalken N(soort,mv,neut) \nconsumptie N(soort,ev,neut) \nhotelportier N(soort,ev,neut) \nclowns N(soort,mv,neut) \nkunstvezels N(soort,mv,neut) \nAlberts N(eigen,ev,neut) \nliften N(soort,mv,neut) \netalagepoppen N(soort,mv,neut) \nKoning N(eigen,ev,neut) \noverwon V(intrans,ovt,1_of_2_of_3,ev) \nKopechne N(eigen,ev,neut) \nerdoor Adv(pron,onbep) \nraakt V(hulp_of_kopp,ott,3,ev) V(hulp_of_kopp,ott,2,ev) V(intrans,ott,3,ev)\npater N(soort,ev,neut) \nbewerkelijke Adj(attr,stell,verv_neut) \nprogramma's N(soort,mv,neut) \nalwaar Adv(gew,vrag) \nCelsius N(eigen,ev,neut) \nPalaver N(soort,ev,neut) \nvergissing N(soort,ev,neut) \ncafe N(soort,ev,neut) \nSchep V(trans,imp) \nweersomstandigheden N(soort,mv,neut) \nmateriele Adj(attr,stell,verv_neut) \nvinger N(soort,ev,neut) \nModel N(eigen,ev,neut) \nnasmeulend V(intrans,teg_dw,onverv) \nWickler's N(eigen,ev,gen) \nklaarblijkelijk Adj(adv,stell,onverv) \ngeloofsleven N(soort,ev,neut) \nNixons N(eigen,mv,neut) \ntien Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv) N(soort,ev,neut)\nLibero N(eigen,ev,neut) \nbouten N(soort,mv,neut) \nbenaderen V(trans,ott,1_of_2_of_3,mv) \ngeschilderd V(trans,verl_dw,onverv) \nVandaag Adv(gew,geen_func,stell,onverv) \nstramien N(soort,ev,neut) \nStarr N(eigen,ev,neut) \ngebak N(soort,ev,neut) \nAnne N(eigen,ev,neut) \nvolle Adj(attr,stell,verv_neut) \nverzekerde V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,verv_neut)\nkastanjes N(soort,mv,neut) \nchansons N(soort,mv,neut) \nbetreffende V(trans,teg_dw,verv_neut) \nconclusies N(soort,mv,neut) \noptel- N(soort,mv,neut) \nvervoermiddel N(soort,ev,neut) \nVandaar Adv(gew,aanw) \nonwelgevallig Adj(attr,stell,onverv) \nzond V(trans,ovt,1_of_2_of_3,ev) \nrinse Adj(attr,stell,verv_neut) \nAnno Prep(voor) \nzong V(trans,ovt,1_of_2_of_3,ev) \ngehuurd V(trans,verl_dw,onverv) \nkieskeurig Adj(attr,stell,onverv) \nJantien N(eigen,ev,neut) \nbedden N(soort,mv,neut) \nzetten V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\ndrukken V(trans,inf) V(intrans,inf)\n8,75 Num(hoofd,bep,attr,onverv) \nfalen V(intrans,inf,subst) \npersoneel N(soort,ev,neut) \nbijgaand V(intrans,teg_dw,onverv) \npremieheffing N(soort,ev,neut) \nBourbons N(eigen,mv,neut) \naangenomen V(trans,verl_dw,onverv) \nboyos N(soort,mv,neut) \neenennegentig Num(hoofd,bep,zelfst,onverv) \nnaadje N(soort,ev,neut) \nbijgekomen V(intrans,verl_dw,onverv) \neigenaresse N(soort,ev,neut) \nKarel N(eigen,ev,neut) \ngeput V(trans,verl_dw,onverv) \n600 Num(hoofd,bep,attr,onverv) \nknieholten N(soort,mv,neut) \nLast N(eigen,ev,neut) \nkeukenflesjes N(soort,mv,neut) \nsoepeler Adj(attr,vergr,onverv) \naanbieden V(trans,ott,1_of_2_of_3,mv) \nuitpraten V(trans,inf) \nkunstmanen N(soort,mv,neut) \ngewrichten N(soort,mv,neut) \nbevliegingen N(soort,mv,neut) \nopgegeven V(trans,verl_dw,onverv) \nradiogolven N(soort,mv,neut) \nverenigingswateren N(soort,mv,neut) \nhulpmiddel N(soort,ev,neut) \na.s. Adj(attr,stell,verv_neut) \nsmak N(soort,ev,neut) \nmidgetgolf N(soort,ev,neut) \nzoom N(soort,ev,neut) \nzoon N(soort,ev,neut) \nWitte N(eigen,ev,neut) \ninnerlijke Adj(attr,stell,verv_neut) \ntegelijkertijd Adv(gew,geen_func,stell,onverv) \nvliegtuiglawaai N(soort,ev,neut) \nKent N(eigen,ev,neut) \nbeeld N(soort,ev,neut) \nverliefd Adj(attr,stell,onverv) \nkamperen V(intrans,inf) \nbovenop Prep(voor) \ngezondheid N(soort,ev,neut) \nminislangenlerenmantelpak N(soort,ev,neut) \ngerecht N(soort,ev,neut) \nvast Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ngoed Adj(adv,stell,onverv) Adj(attr,stell,onverv) N(soort,ev,neut)\nbloeddruk N(soort,ev,neut) \nzaadcel N(soort,ev,neut) \nillustere Adj(attr,stell,verv_neut) \nweekend N(soort,ev,neut) \ntreft V(trans,ott,3,ev) \nknol N(soort,ev,neut) \nzwangerschapsstuipen N(soort,mv,neut) \ngewenst V(trans,verl_dw,onverv) \nknop N(soort,ev,neut) \nkleurloze Adj(attr,stell,verv_neut) \nlands N(soort,ev,gen) \nverslond V(trans,ovt,1_of_2_of_3,ev) \nHollandsche N(eigen,ev,neut) \nknow Misc(vreemd) \nHerman N(eigen,ev,neut) \ncarnavalstijd N(soort,ev,neut) \nbestreken V(trans,verl_dw,onverv) \nBijlmer N(eigen,ev,neut) \nafgekoeld V(intrans,verl_dw,onverv) \nQuestura N(soort,ev,neut) \nvrijheidsstrijder N(soort,ev,neut) \nspaanplaat N(soort,ev,neut) \ngidsen N(soort,mv,neut) \nMoskou N(eigen,ev,neut) \nvolop Adv(gew,geen_func,stell,onverv) \nSchik V(trans,imp) \nkinderziektes N(soort,mv,neut) \nVerdere Adj(attr,vergr,verv_neut) \nSchil V(trans,imp) \nbredere Adj(attr,vergr,verv_neut) \nmunt N(soort,ev,neut) \nnichtje N(soort,ev,neut) \nslaapkamer N(soort,ev,neut) \nongepelde Adj(attr,stell,verv_neut) \nstellen V(trans,inf) V(trans,inf,subst) V(trans,ott,1_of_2_of_3,mv)\ntegenwoordige Adj(attr,stell,verv_neut) \nheimelijk Adj(adv,stell,onverv) \nruisende V(intrans,teg_dw,verv_neut) \ningewikkeld Adj(attr,stell,onverv) \nteken V(trans,ott,2,ev) \nhogere Adj(attr,vergr,verv_neut) \nrelatiepatroon N(soort,ev,neut) \nbehalve Conj(onder,met_fin) \ndirekte Adj(attr,stell,verv_neut) \nroepen V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nJuist Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nschuldgevoelens N(soort,mv,neut) \nontwikkelt V(refl,ott,3,ev) \nklinieken N(soort,mv,neut) \nzorg N(soort,ev,neut) V(trans,imp)\ntijd N(soort,ev,neut) \nzodat Conj(onder,met_fin) \nrechtvaardiging N(soort,ev,neut) \nvraag N(soort,ev,neut) V(intrans,imp) V(trans,imp) V(trans,ott,1,ev)\nboterhammen N(soort,mv,neut) \ngogo Misc(vreemd) \nboottocht N(soort,ev,neut) \nverschuiving N(soort,ev,neut) \nvijvers N(soort,mv,neut) \nonderwijssituatie N(soort,ev,neut) \nafnemen V(trans,inf) V(intrans,inf)\nsommigen Pron(onbep,neut,zelfst) \nbeen N(soort,ev,neut) \nmannenzaken N(soort,mv,neut) \neitje N(soort,ev,neut) \naldoor Adv(gew,geen_func,stell,onverv) \nstolling N(soort,ev,neut) \nbleven V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \ncabaretier N(soort,ev,neut) \nweggeweest V(intrans,verl_dw,onverv) \ntrein N(soort,ev,neut) \nmeerlen N(eigen,ev,neut) \nlange Adj(attr,stell,verv_neut) \nverwezenlijkt V(trans,verl_dw,onverv) \nstapels N(soort,mv,neut) \nvoordeed V(refl,ovt,1_of_2_of_3,ev) \ngarantie N(soort,ev,neut) \nvrouw N(soort,ev,neut) \npolitieman N(soort,ev,neut) \narbeidersvrouwen N(soort,mv,neut) \ntruffel N(soort,ev,neut) \nopnemen V(trans,inf) V(trans,inf,subst)\nlangs Prep(voor) Adv(deel_v)\nPaal N(soort,ev,neut) \nstuur N(soort,ev,neut) \ngaarne Adv(gew,geen_func,stell,onverv) \nvoordeel N(soort,ev,neut) \nvertraagde V(trans,verl_dw,verv_neut) \npilgebruikende Adj(attr,stell,verv_neut) \nuiteenzetten V(trans,inf) \ntikt V(intrans,ott,3,ev) \nvlinder N(soort,ev,neut) \nbetasten V(trans,inf) \nflessenexpressie N(soort,ev,neut) \noudste Adj(attr,overtr,verv_neut) \ncomputerprogrammeurs N(soort,mv,neut) \ngoederen N(soort,mv,neut) \ngeaarde V(intrans,verl_dw,verv_neut) \nvoeding N(soort,ev,neut) \nnostalgie N(soort,ev,neut) \noptreedt V(intrans,ott,3,ev) \nveranderingen N(soort,mv,neut) \nongeboren Adj(attr,stell,onverv) \nattitude-wijziging N(soort,ev,neut) \nstembiljet N(soort,ev,neut) \nzaad N(soort,ev,neut) \nvoorhoofdsfronsen N(soort,mv,neut) \ngunstigste Adj(attr,overtr,verv_neut) \naanrader N(soort,ev,neut) \nzaak N(soort,ev,neut) \nzaal N(soort,ev,neut) \nontgaan V(trans,verl_dw,onverv) \nneergang N(soort,ev,neut) \nJames N(soort,ev,neut) \ngereserveerds Adj(attr,stell,verv_gen) \nafgewerkt V(trans,verl_dw,onverv) \nbeperktere V(trans,verl_dw,verv_neut) \nGreta N(eigen,ev,neut) \ntegenstander N(soort,ev,neut) \nontmaagt V(trans,ott,3,ev) \ntrekt V(trans,ott,3,ev) V(intrans,ott,3,ev)\ntorentje N(soort,ev,neut) \nteleurgestelde V(trans,verl_dw,verv_neut) \nhandenarbeid N(soort,ev,neut) \ntolereren V(trans,inf) \nstellig Adj(adv,stell,onverv) \naanbrengen V(trans,ott,1_of_2_of_3,mv) \naigretteveertjes N(soort,mv,neut) \nDixon N(eigen,ev,neut) \nontzetting N(soort,ev,neut) \nredigeren V(trans,inf) \nburgers N(soort,mv,neut) \nzout N(soort,ev,neut) \nsproeien V(intrans,inf) \nGruyters N(eigen,ev,neut) \nvoorwerp N(soort,ev,neut) \neindexamen N(soort,ev,neut) \nmenhirs N(soort,mv,neut) \nschaaltje N(soort,ev,neut) \ngrafkrans N(soort,ev,neut) \ngrammofoonplaat N(soort,ev,neut) \nfuncties N(soort,mv,neut) \ngekost V(trans,verl_dw,onverv) \nleerde V(hulp,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nhartinfarct N(soort,ev,neut) \nzwembad N(soort,ev,neut) \nexport N(soort,ev,neut) \nheesters N(soort,mv,neut) \nNicky N(eigen,ev,neut) \npestbacillen N(soort,mv,neut) \nletsel N(soort,ev,neut) \ntwaalfde Num(rang,bep,zelfst,onverv) \nhitparade N(soort,ev,neut) \nbarnsteenkleurig Adj(attr,stell,onverv) \novervallen V(trans,verl_dw,onverv) N(soort,mv,neut)\nmust N(soort,ev,neut) \nonbemande Adj(attr,stell,verv_neut) \nNoordelijke N(eigen,ev,neut) \ngehoord V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nbalkon N(soort,ev,neut) \nzeemijnbouw N(soort,ev,neut) \nhebben 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)\nlevensperiode N(soort,ev,neut) \nklimaat N(soort,ev,neut) \nbeter Adj(adv,vergr,onverv) Adj(attr,vergr,onverv)\nsteriele Adj(attr,stell,verv_neut) \ntint N(soort,ev,neut) \nPads Misc(vreemd) \nRomney N(eigen,ev,neut) \ncommunicatie N(soort,ev,neut) \nVernon N(eigen,ev,neut) \nPrinses N(soort,ev,neut) N(eigen,ev,neut)\ntwijfelen V(intrans,inf) \ngolf N(soort,ev,neut) N(eigen,ev,neut)\nwelig Adj(adv,stell,onverv) \nprikkelgeleiding N(soort,ev,neut) \nvoorstelde V(trans,ovt,1_of_2_of_3,ev) \nslikken V(trans,inf) \nherinnerd V(trans,verl_dw,onverv) \nbeest N(soort,ev,neut) \nlawaai-patientjes N(soort,mv,neut) \nelektronische Adj(attr,stell,verv_neut) \nluistert V(intrans,ott,3,ev) \nklemmetje N(soort,ev,neut) \nschimpend V(intrans,teg_dw,onverv) \nechtpaar N(soort,ev,neut) \nliteratuuropgaven N(soort,mv,neut) \nherinnert V(trans,ott,3,ev) \nbegeleiders N(soort,mv,neut) \nsituaties N(soort,mv,neut) \naangebracht V(trans,verl_dw,onverv) \nverbijsterde V(trans,verl_dw,verv_neut) \nrustiger Adj(adv,vergr,onverv) \nmake-ups N(soort,mv,neut) \ntrend N(soort,ev,neut) \nbroodschrijvers N(soort,mv,neut) \nTweede N(eigen,ev,neut) \noverige Adj(attr,stell,verv_neut) \ntoekomen V(intrans,inf) V(trans,inf)\nwerken V(intrans,inf) N(soort,mv,neut) V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nvensterbanken N(soort,mv,neut) \nopenbaar-vervoer-safari N(soort,ev,neut) \nslavernij N(soort,ev,neut) \npatienten N(soort,mv,neut) \nmuur N(soort,ev,neut) \nLourdes N(eigen,ev,neut) \nBethesda N(eigen,ev,neut) \nThiel N(eigen,ev,neut) \nmeende V(trans,ovt,1_of_2_of_3,ev) \nverveel V(refl,ott,1,ev) \ngeschuwd V(trans,verl_dw,onverv) \nvriendschappen N(soort,mv,neut) \nbetrekkingen N(soort,mv,neut) \nreddingsduikboot N(soort,ev,neut) \neitjes N(soort,mv,neut) \npoespas N(soort,ev,neut) \nuiteinde N(soort,ev,neut) \nwelvaartsvaste Adj(attr,stell,verv_neut) \nvaststellen V(trans,inf,subst) \nzeiden V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nbroodsnijmachine N(soort,ev,neut) \ngreppel N(soort,ev,neut) \nmassa N(soort,ev,neut) \nkostte V(trans,ovt,1_of_2_of_3,ev) \nwelke Pron(vrag,neut,zelfst) Pron(betr,gen,zelfst)\nToch Adv(gew,geen_func,stell,onverv) \nkoortsachtig Adj(adv,stell,onverv) \nnoodzaak N(soort,ev,neut) \nmilieuvervuiling N(soort,ev,neut) \nweerspiegeling N(soort,ev,neut) \nvegen V(trans,inf) \nopwindends V(intrans,teg_dw,verv_gen) \nRusland N(eigen,ev,neut) \ncare Misc(vreemd) \nAlles Pron(onbep,neut,zelfst) \nstudies N(soort,mv,neut) \ngedicht N(soort,ev,neut) \nprikkels N(soort,mv,neut) \nprikkelt V(intrans,ott,3,ev) \nbezwaren N(soort,mv,neut) \nazalea N(soort,ev,neut) \nbelt V(intrans,ott,3,ev) \nslagroom N(soort,ev,neut) \nvestiging N(soort,ev,neut) \nmeewerkten V(intrans,ovt,1_of_2_of_3,mv) \nvogeltjes N(soort,mv,neut) \ngedroogde V(intrans,verl_dw,verv_neut) \nfirmanaam N(soort,ev,neut) \nbijnaam N(soort,ev,neut) \nteckels N(soort,mv,neut) \nZulk Pron(aanw,neut,attr) \nIntegendeel Int \nwijder Adj(attr,vergr,onverv) \ngooi N(soort,ev,neut) \naangetoond V(trans,verl_dw,onverv) \nknopen N(soort,mv,neut) \nAndre N(eigen,ev,neut) \nvernuft N(soort,ev,neut) \ngenitalien N(soort,mv,neut) \nzwakke Adj(attr,stell,verv_neut) \nbewoonster N(soort,ev,neut) \nophalen V(trans,ott,1_of_2_of_3,mv) \nroerstokjes N(soort,mv,neut) \nschijnen V(hulp_of_kopp,ott,1_of_2_of_3,mv) \n...... Punc(hellip) \noverleed V(intrans,ovt,1_of_2_of_3,ev) \nGezin N(eigen,ev,neut) \ncasu N(soort,ev,neut) \nMeesters N(soort,mv,neut) \nidentificeert V(trans,ott,3,ev) \nrouge N(soort,ev,neut) \nvissers N(soort,mv,neut) \nOnder Prep(voor) \nsiert V(trans,ott,3,ev) \nmaakten V(trans,ovt,1_of_2_of_3,mv) V(refl,ovt,1_of_2_of_3,mv)\nweergave N(soort,ev,neut) \nboerenkinderen N(soort,mv,neut) \nrisico's N(soort,mv,neut) \nToen Conj(onder,met_fin) Adv(gew,aanw)\nuniform N(soort,ev,neut) \naardrijkskunde N(soort,ev,neut) \nstemmetje N(soort,ev,neut) \ndoodziek Adj(attr,stell,onverv) \nmazelen N(soort,mv,neut) \nFrazier N(eigen,ev,neut) \nexcuus N(soort,ev,neut) \nsigarebandjes N(soort,mv,neut) \nzand- N(soort,mv,neut) \ntalen N(soort,mv,neut) \nbent V(hulp_of_kopp,ott,2,ev) V(intrans,ott,2,ev)\nzuigelingensterfte N(soort,ev,neut) \ncommercie N(soort,ev,neut) \nVanmorgen Adv(gew,geen_func,stell,onverv) \nChauffeur N(soort,ev,neut) \nMoeilijk Adj(attr,stell,onverv) \nFrankie N(eigen,ev,neut) \ngemeubileerde V(trans,verl_dw,verv_neut) \nskiers N(soort,mv,neut) \ngrijpen V(trans,inf) V(intrans,inf)\ninnamen V(trans,ovt,1_of_2_of_3,mv) \ngecombineerd V(trans,verl_dw,onverv) \nzwart-witbeelden N(soort,mv,neut) \nschandpaal N(soort,ev,neut) \ntongetjes N(soort,mv,neut) \nvannacht Adv(gew,geen_func,stell,onverv) \nzwijgend V(intrans,teg_dw,onverv) \naftrekposten N(soort,mv,neut) \noverblijfselen N(soort,mv,neut) \nKruckenhauser N(eigen,ev,neut) \nBedrog N(soort,ev,neut) \nverliest V(trans,ott,3,ev) \njuryrapport N(soort,ev,neut) \nbroederschap N(soort,ev,neut) \nalimentatie N(soort,ev,neut) \ncommunistische Adj(attr,stell,verv_neut) \noverbeweiding N(soort,ev,neut) \nThijs N(eigen,ev,neut) \npolijstpasta N(soort,ev,neut) \nprijkt V(intrans,ott,3,ev) \nWetenschappelijke Adj(attr,stell,verv_neut) \nmeevoerend V(trans,teg_dw,onverv) \nfilmtijdschriften N(soort,mv,neut) \nzuinig Adj(attr,stell,onverv) \nproblemen N(soort,mv,neut) \nPaola N(eigen,ev,neut) \nCaesar N(eigen,ev,neut) \nzieken Adj(zelfst,stell,verv_mv) \nzorgen N(soort,mv,neut) V(trans,inf) V(intrans,inf)\nzake N(soort,ev,dat) \nverlorene V(trans,verl_dw,verv_neut) \nontdekkingsreiziger N(soort,ev,neut) \nmaaltijden N(soort,mv,neut) \nnatuurlijke Adj(attr,stell,verv_neut) \ntegemoet Adv(gew,geen_func,stell,onverv) \nPhilips N(eigen,ev,neut) \ngedenkteken N(soort,ev,neut) \nverzetten V(refl,inf) \nbiedt V(trans,ott,3,ev) \nGroenland N(eigen,ev,neut) \nhalfgestopte Adj(attr,stell,verv_neut) \nrandjes N(soort,mv,neut) \nbotsing N(soort,ev,neut) \nberg N(soort,ev,neut) \nseksueel Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nopknappen V(trans,inf) \nManny N(eigen,ev,neut) \nsocialist N(soort,ev,neut) \nwerknemers N(soort,mv,neut) \ngaan 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)\nvervelt V(intrans,ott,3,ev) \nondanks Prep(voor) \nbeschadigd V(trans,verl_dw,onverv) \nverbrassende V(trans,teg_dw,verv_neut) \nCountry N(eigen,ev,neut) \nHelemaal Adv(gew,geen_func,stell,onverv) \ngaat 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)\nvreugdedans N(soort,ev,neut) \ngoud Adj(attr,stell,onverv) N(soort,ev,neut)\ntekst N(soort,ev,neut) \nstaatsprijs N(soort,ev,neut) \nkanker N(soort,ev,neut) \nvistochtje N(soort,ev,neut) \nsamenlevingsstructuur N(soort,ev,neut) \nvolgend V(intrans,teg_dw,onverv) \nweleer Adv(gew,geen_func,stell,onverv) \nontruimd V(trans,verl_dw,onverv) \nTrastevere N(eigen,ev,neut) \nsierlijke Adj(attr,stell,verv_neut) \nontketend V(trans,verl_dw,onverv) \nmenselijke Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nNiettemin Adv(gew,geen_func,stell,onverv) \n'70-'71 Num(hoofd,bep,zelfst,onverv) \nSGP N(eigen,ev,neut) \nbest Adj(adv,vergr,onverv) N(soort,ev,neut) Adj(attr,overtr,onverv)\nPant N(eigen,ev,neut) \nvolgens Prep(voor) \nTibetaanse Adj(attr,stell,verv_neut) \nHeiden N(eigen,ev,neut) \nvolkstuincomplexen N(soort,mv,neut) \nregelen V(trans,inf) \ngedronken V(trans,verl_dw,onverv) \nNice N(eigen,ev,neut) \nklinkt V(intrans,ott,3,ev) \neigenlijke Adj(attr,stell,verv_neut) \ninspanningen N(soort,mv,neut) \nJorma N(eigen,ev,neut) \nsportief Adj(attr,stell,onverv) \nwordt V(hulp_of_kopp,ott,3,ev) V(hulp_of_kopp,ott,2,ev)\naanzienlijk Adj(adv,stell,onverv) \nWorden V(hulp_of_kopp,ott,1_of_2_of_3,mv) \nNico N(eigen,ev,neut) \nveilinghuizen N(soort,mv,neut) \nVraagt V(trans,ott,2,ev) \nzang N(soort,ev,neut) \ndusver Adv(gew,aanw) \nbanden N(soort,mv,neut) \nop- N(soort,ev,neut) \ngeluisterd V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\njournalisten N(soort,mv,neut) \nons Pron(bez,1,mv,neut,attr) Pron(per,1,mv,dat_of_acc) Pron(ref,1,mv) N(eigen,ev,neut)\nround Adj(attr,stell,onverv) \nnooit Adv(gew,onbep) \nDream N(eigen,ev,neut) \ngebakken V(trans,verl_dw,onverv) \nantirevolutionaire Adj(attr,stell,verv_neut) \ndierbaar Adj(attr,stell,onverv) \nOperatie N(eigen,ev,neut) \nPapa N(eigen,ev,neut) \ngeschiedt V(intrans,ott,3,ev) \nGetrouwd V(intrans,verl_dw,onverv) \nSojoez-11 N(eigen,ev,neut) \nuitverkoren V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nploeteren V(intrans,ott,1_of_2_of_3,mv) \noog N(soort,ev,neut) \nzodra Conj(onder,met_fin) \nKosten N(soort,mv,neut) \nook Adv(gew,geen_func,stell,onverv) \nvoorgelicht V(trans,verl_dw,onverv) \nwoensdag N(eigen,ev,neut) \noom N(soort,ev,neut) \nKoster N(eigen,ev,neut) \nnatuurreservaat N(soort,ev,neut) \nJachtige Adj(attr,stell,verv_neut) \noor N(soort,ev,neut) \nDennendal N(eigen,ev,neut) \nlanger Adj(adv,vergr,onverv) Adj(attr,vergr,onverv)\nademhalingswegen N(soort,mv,neut) \nEdward N(eigen,ev,neut) \nhertrouwd V(trans,verl_dw,onverv) \ndiepzeehaai N(soort,ev,neut) \nvaklien N(soort,mv,neut) \nonderwerpen N(soort,mv,neut) \ntelevisieseizoenen N(soort,mv,neut) \nlichamen N(soort,mv,neut) \nKortgeleden Adv(gew,geen_func,stell,onverv) \ndappersten Adj(zelfst,overtr,verv_neut) \nklaagt V(trans,ott,3,ev) \nnieuwsgierigen Adj(zelfst,stell,verv_mv) \nNiet Adv(gew,geen_func,stell,onverv) \nlevensvisie N(soort,ev,neut) \nGodfried N(soort,ev,neut) \n1910 Num(hoofd,bep,zelfst,onverv) \nDoctoraal Adj(attr,stell,onverv) \nweerkaatsen V(trans,ott,1_of_2_of_3,mv) \n1913 Num(hoofd,bep,zelfst,onverv) \nspieren N(soort,mv,neut) \nverouderingsproces N(soort,ev,neut) \nStones N(eigen,mv,neut) \nSlangen N(soort,mv,neut) \nrecht-aan Adj(attr,stell,onverv) \nbureau N(soort,ev,neut) \ngegroeid V(trans,verl_dw,onverv) \nMersham N(eigen,ev,neut) \nontlasting N(soort,ev,neut) \nPermanent Adj(attr,stell,onverv) \nPark N(eigen,ev,neut) \nbewees V(trans,ovt,1_of_2_of_3,ev) \neraan Adv(pron,onbep) \nnieuwbouwwijk N(soort,ev,neut) \n02550-15579 Num(hoofd,bep,zelfst,onverv) \ntoonde V(trans,ovt,1_of_2_of_3,ev) \nGarneer V(trans,imp) \nhaalden V(trans,ovt,1_of_2_of_3,mv) \ndochtertje N(soort,ev,neut) \nmoderator N(soort,ev,neut) \nhandenarbeidzaken N(soort,mv,neut) \nbloedplasma N(soort,ev,neut) \nAnson N(eigen,ev,neut) \n1929 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nwapenhandel N(soort,ev,neut) \nkarakteristiek Adj(attr,stell,onverv) \nsnakt V(intrans,ott,3,ev) \nThird N(eigen,ev,neut) \nToon N(eigen,ev,neut) \nAmerika's N(eigen,ev,gen) \nmonopolies N(soort,mv,neut) \nSalonwoorden N(soort,mv,neut) \nArnhem N(eigen,ev,neut) \neindje N(soort,ev,neut) \ndrinken V(trans,inf) \nknipperbollen N(soort,mv,neut) \nverzekering N(soort,ev,neut) \noudere Adj(attr,vergr,verv_neut) \ntochten N(soort,mv,neut) \nbegeleidende V(intrans,teg_dw,verv_neut) \nDrouin N(eigen,ev,neut) \nbevelen V(trans,inf) \nvoorzien V(trans,inf) V(trans,verl_dw,onverv)\ntoeristen N(soort,mv,neut) \nvoortdurend Adv(gew,geen_func,stell,onverv) \nsysteem N(soort,ev,neut) \nDrie Num(hoofd,bep,attr,onverv) \nnagenoeg Adv(gew,geen_func,stell,onverv) \nflauwe Adj(attr,stell,verv_neut) \nvoorziet V(intrans,ott,3,ev) \n1930 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\nuniversiteitsgebouw N(soort,ev,neut) \nouders N(soort,mv,neut) \ncharmes N(soort,mv,neut) \nKutschinsky N(eigen,ev,neut) \ngezogen V(trans,verl_dw,onverv) \ngemakkelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ngrintpad N(soort,ev,neut) \nArlbergpas N(eigen,ev,neut) \nCheverny N(eigen,ev,neut) \ntoekomst N(soort,ev,neut) \nseksuele Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nhuidige Adj(attr,stell,verv_neut) \ngeloven V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(intrans,inf)\ndevoot Adj(adv,stell,onverv) \nschuiven V(trans,inf) \nzwanger Adj(attr,stell,onverv) \nspreekuur N(soort,ev,neut) \nhuwelijksfeesten N(soort,mv,neut) \nvoorbijgaan V(intrans,inf,subst) \nverdeling N(soort,ev,neut) \nKennedytraditie N(soort,ev,neut) \nglaasje N(soort,ev,neut) \ngeschiedde V(intrans,ovt,1_of_2_of_3,ev) \nwerkte V(intrans,ovt,1_of_2_of_3,ev) \n1940 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\n1942 Num(hoofd,bep,zelfst,onverv) \n1943 Num(hoofd,bep,zelfst,onverv) \ngebroken V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\n1944 Num(hoofd,bep,zelfst,onverv) \ngericht V(trans,verl_dw,onverv) \n1945 Num(hoofd,bep,attr,onverv) \nbehoren V(hulp,ott,1_of_2_of_3,mv) V(intrans,ott,1_of_2_of_3,mv)\n1949 Num(hoofd,bep,zelfst,onverv) \nkinderarts N(soort,ev,neut) \nontberingen N(soort,mv,neut) \nspeelde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nautobiografie N(soort,ev,neut) \nkoek N(soort,ev,neut) \nbedroeg V(trans,ovt,1_of_2_of_3,ev) \nkoel Adj(attr,stell,onverv) Adj(adv,stell,onverv)\naandringen V(intrans,inf,subst) \nkracht N(soort,ev,neut) \nversperden V(trans,ovt,1_of_2_of_3,mv) \ntegenvallers N(soort,mv,neut) \nPaul N(eigen,ev,neut) Misc(vreemd)\ndessins N(soort,mv,neut) \nsportieve Adj(attr,stell,verv_neut) \nNyerere N(eigen,ev,neut) \niedere Pron(onbep,neut,attr) \nvennoot N(soort,ev,neut) \nvorderingen N(soort,mv,neut) \nverrichten V(trans,ott,1_of_2_of_3,mv) V(trans,inf)\nonredelijke Adj(attr,stell,verv_neut) \nroute N(soort,ev,neut) \n1955 Num(hoofd,bep,zelfst,onverv) \nerotisch-technische Adj(attr,stell,verv_neut) \n1957 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\n1958 Num(hoofd,bep,attr,onverv) \n1959 Num(hoofd,bep,zelfst,onverv) \nchauvinisme N(soort,ev,neut) \nieders Pron(onbep,gen,zelfst) \nhistorie N(soort,ev,neut) \ngarde N(soort,ev,neut) \nBovenaan Adv(gew,geen_func,stell,onverv) \naan Prep(voor) Prep(comb) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv)\nvereende Adj(attr,stell,verv_neut) \nV.S. N(eigen,mv,neut) \nRob N(eigen,ev,neut) \nlenen V(trans,inf) \noud Adj(attr,stell,onverv) \nNijs N(eigen,ev,neut) \nNapels N(eigen,ev,neut) \nomgeving N(soort,ev,neut) \nontworpen V(trans,verl_dw,onverv) \nVillage N(eigen,ev,neut) \nProvence N(eigen,ev,neut) \nherschrijft V(trans,ott,3,ev) \npiste N(soort,ev,neut) \nStraight N(eigen,ev,neut) \nbegeleidt V(trans,ott,3,ev) \nverwerken V(trans,inf) \nscheidsrechter N(soort,ev,neut) \ndiplomatieke Adj(attr,stell,verv_neut) \n1960 Num(hoofd,bep,zelfst,onverv) \n1961 Num(hoofd,bep,zelfst,onverv) \ndoorzien V(trans,inf) \n1962 Num(hoofd,bep,zelfst,onverv) \nMenac N(eigen,ev,neut) \n1963 Num(hoofd,bep,zelfst,onverv) \ncreme N(soort,ev,neut) \n1964 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\n1965 Num(hoofd,bep,zelfst,onverv) \n1967 Num(hoofd,bep,zelfst,onverv) \nwilde 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)\n1968 Num(hoofd,bep,zelfst,onverv) \nvorige Adj(attr,stell,verv_neut) \n1969 Num(hoofd,bep,zelfst,onverv) \nzuster N(soort,ev,neut) \nverreweg Adv(gew,geen_func,stell,onverv) \nfikse Adj(attr,stell,verv_neut) \nreclamebureau N(soort,ev,neut) \ngedegradeerd V(trans,verl_dw,onverv) \nverboden N(soort,mv,neut) V(trans,verl_dw,onverv)\ngaren N(soort,ev,neut) \nstraten N(soort,mv,neut) \nbegrijpt V(trans,ott,3,ev) V(trans,ott,2,ev)\nbewaren V(trans,inf) \nCannes N(eigen,ev,neut) \noverdrijve V(intrans,conj) \nvasthoudt V(intrans,ott,3,ev) \nklaarlichte Adj(attr,stell,verv_neut) \ninstigatie N(soort,ev,neut) \nPrice N(eigen,ev,neut) \nbeginjaren N(soort,mv,neut) \nmening N(soort,ev,neut) \n1970 Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\n1971 Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\ninhouden V(trans,inf) \n1975 Num(hoofd,bep,zelfst,onverv) \nringetjes N(soort,mv,neut) \nbutler N(soort,ev,neut) \nach Int \nmoederziel N(soort,ev,neut) \ntelegram N(soort,ev,neut) \nconversatiezaal N(soort,ev,neut) \nbeviel V(intrans,ovt,1_of_2_of_3,ev) \ntochtje N(soort,ev,neut) \nREACTIES N(soort,mv,neut) \nmensapen N(soort,mv,neut) \nherstel N(soort,ev,neut) \nverdachts Adj(attr,stell,verv_gen) \nkankeren V(intrans,inf) \nact N(soort,ev,neut) \nmotief N(soort,ev,neut) \ndichters N(soort,mv,neut) \nliteratuur N(soort,ev,neut) \ngepoetst V(trans,verl_dw,onverv) \ndiefstal N(soort,ev,neut) \nprobeerden V(hulp,ovt,1_of_2_of_3,mv) \nvaatziekten N(soort,mv,neut) \nvrachtwagens N(soort,mv,neut) \nsliep V(intrans,ovt,1_of_2_of_3,ev) \nalternatief N(soort,ev,neut) \nverwonderen V(refl,inf) \nverontwaardigd V(trans,verl_dw,onverv) \nverbeeldingskracht N(soort,ev,neut) \nverschillen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv)\nfontein N(soort,ev,neut) \naapje N(soort,ev,neut) \nSlingelandt N(eigen,ev,neut) \nstemverheffing N(soort,ev,neut) \nzwerftochten N(soort,mv,neut) \ndelirium N(soort,ev,neut) \nproeven N(soort,mv,neut) V(trans,inf)\nPeterke N(eigen,ev,neut) \ndraaiboekauteurs N(soort,mv,neut) \nzevenhonderd Num(hoofd,bep,attr,onverv) \nwaardig Adj(adv,stell,onverv) \nChatillon-en-Bazois N(eigen,ev,neut) \nrechtvaardigen V(trans,inf) \naccijnzen N(soort,mv,neut) \nzekerheid N(soort,ev,neut) \nonderhield V(trans,ovt,1_of_2_of_3,ev) \ncrepe N(soort,ev,neut) \ntafels N(soort,mv,neut) \nenthousiast Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nfelle Adj(attr,stell,verv_neut) \nfelicitatiekaart N(soort,ev,neut) \nHieronder Adv(pron,aanw) \nmaten N(soort,mv,neut) \nSabine N(eigen,ev,neut) \ngang N(soort,ev,neut) \nuiterlijk N(soort,ev,neut) Adj(attr,stell,onverv)\nkoortsig Adj(attr,stell,onverv) \nbewijzen V(trans,inf) N(soort,mv,neut) V(trans,ott,1_of_2_of_3,mv)\nverspilling N(soort,ev,neut) \ninheemse Adj(attr,stell,verv_neut) \npijpers N(soort,mv,neut) \ndoordringen V(trans,inf) \nonderuitgezakt V(intrans,verl_dw,onverv) \nziekte N(soort,ev,neut) \naangehouden V(trans,verl_dw,onverv) \npioniers N(soort,mv,neut) \nschaaldieren N(soort,mv,neut) \nmachtszwakke Adj(attr,stell,verv_neut) \ndiverse Pron(onbep,neut,attr) \naangepaste V(trans,verl_dw,verv_neut) \nkoks N(soort,mv,neut) \nballen N(soort,mv,neut) \nAlassio N(eigen,ev,neut) \nintrigeerde V(trans,ovt,1_of_2_of_3,ev) \nhonderdste Num(rang,bep,attr,onverv) \njicht N(soort,ev,neut) \nBepaald Adv(gew,geen_func,stell,onverv) \nCalabria N(eigen,ev,neut) \nballet N(soort,ev,neut) \npeperdure Adj(attr,stell,verv_neut) \ngereden V(trans,verl_dw,onverv) \nAnnelies N(eigen,ev,neut) \nfeit N(soort,ev,neut) \nbetrekkelijk Adj(adv,stell,onverv) \nverzorgde V(trans,ovt,1_of_2_of_3,ev) \nZuidlimburgers N(soort,mv,neut) \nDag Int \ngeweldige Adj(attr,stell,verv_neut) \nItaliaanse Adj(attr,stell,verv_neut) \nonderbouw N(soort,ev,neut) \ntrillingen N(soort,mv,neut) \nDan Adv(gew,aanw) \naangekomen V(intrans,verl_dw,onverv) \nuitgedeeld V(trans,verl_dw,onverv) \nvanzelfsprekend Adj(adv,stell,onverv) \n7101 Num(hoofd,bep,zelfst,onverv) \n7102 Num(hoofd,bep,zelfst,onverv) \nheetst Adj(zelfst,overtr,onverv) \nDas N(eigen,ev,neut) \nDat Pron(aanw,neut,zelfst) Pron(aanw,neut,attr) Conj(onder,met_fin)\nonbruikbare Adj(attr,stell,verv_neut) \nkinesica N(soort,ev,neut) \nruimtestation N(soort,ev,neut) \njanuari N(eigen,ev,neut) \nRue N(eigen,ev,neut) \nkeien N(soort,mv,neut) \nDay N(eigen,ev,neut) \nZonen N(soort,mv,neut) \nvuurwerk N(soort,ev,neut) \nwerkmethoden N(soort,mv,neut) \nenigszins Adv(gew,geen_func,stell,onverv) \ngrofheden N(soort,mv,neut) \nheette V(hulp_of_kopp,ovt,1_of_2_of_3,ev) \nChristelijk N(eigen,ev,neut) \nschreven V(trans,ovt,1_of_2_of_3,mv) \nvolgezogen V(trans,verl_dw,onverv) \ngapt V(trans,ott,3,ev) \nbeeldcassette N(soort,ev,neut) \nHebben V(hulp,ott,1_of_2_of_3,mv) V(trans,ott,1_of_2_of_3,mv)\nverzorgen V(trans,inf) \nmagots N(eigen,ev,neut) \nterugbrengen V(trans,inf) \ngegeten V(trans,verl_dw,onverv) \nzolang Conj(onder,met_fin) \nkomt 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)\nfamilieroman N(soort,ev,neut) \n700 Num(hoofd,bep,attr,onverv) \nschakelde V(intrans,ovt,1_of_2_of_3,ev) \nafbeeldingen N(soort,mv,neut) \nplukken V(trans,inf) \nmake-up N(soort,ev,neut) \nnadelen N(soort,mv,neut) \ngoedhartig Adj(attr,stell,onverv) \ngepleegd V(trans,verl_dw,onverv) \nConsumptiesex N(soort,ev,neut) \nInternational N(eigen,ev,neut) \nbovendien Adv(gew,geen_func,stell,onverv) \nmatig Adj(adv,stell,onverv) \nVenusstraat N(eigen,ev,neut) \neffectenbeurs N(soort,ev,neut) \nperfectie N(soort,ev,neut) \nlukte V(intrans,ovt,1_of_2_of_3,ev) \nworst N(soort,ev,neut) \nZonnekust N(soort,ev,neut) \nvoorsprong N(soort,ev,neut) \ngooien V(trans,inf) \ntweeentwintig Num(hoofd,bep,attr,onverv) Num(hoofd,bep,zelfst,onverv)\nverhaal N(soort,ev,neut) \nburen N(soort,mv,neut) \nliedjesteksten N(soort,mv,neut) \nRijksbureau N(soort,ev,neut) \nbezweren V(intrans,ott,1_of_2_of_3,mv) \nisotonische Adj(attr,stell,verv_neut) \nschakelen V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\novergelaten V(trans,verl_dw,onverv) \n719 N(eigen,ev,neut) \npeperduur Adj(attr,stell,onverv) \nkooi N(soort,ev,neut) \nzondagsavonds N(soort,ev,gen) \nkook N(soort,ev,neut) \neffect N(soort,ev,neut) \nafspraken N(soort,mv,neut) \nhurkWC's N(soort,mv,neut) \nkoop N(soort,ev,neut) V(trans,imp)\nhuishoudgeld N(soort,ev,neut) \nkoos V(intrans,ovt,1_of_2_of_3,ev) \ntelde V(trans,ovt,1_of_2_of_3,ev) \nhoogconjunctuur N(soort,ev,neut) \nboodschap N(soort,ev,neut) \ngilden N(soort,mv,neut) \nopvarenden Adj(zelfst,stell,verv_mv) \nspottend V(intrans,teg_dw,onverv) \nformuleert V(trans,ott,3,ev) \nOngeduldig Adj(adv,stell,onverv) \nBoymansVan N(eigen,ev,neut) \nFauriel N(eigen,ev,neut) \nverkeersopvoeding N(soort,ev,neut) \nDen N(eigen,ev,neut) \ntanden N(soort,mv,neut) \nonze Pron(bez,1,mv,neut,attr) \nveroordeelde V(trans,ovt,1_of_2_of_3,ev) \npaniekje N(soort,ev,neut) \nDer N(eigen,ev,neut) \nkostelijke Adj(attr,stell,verv_neut) \nGuernsey N(eigen,ev,neut) \noppervlakte-temperatuur N(soort,ev,neut) \nonveranderd Adj(attr,stell,onverv) \nnagedacht V(intrans,verl_dw,onverv) \nnajaarstrek N(soort,ev,neut) \nglipte V(intrans,ovt,1_of_2_of_3,ev) \nveerkracht N(soort,ev,neut) \ntoelaat V(trans,ott,3,ev) \nborrel N(soort,ev,neut) \nrampen N(soort,mv,neut) \ntrachten V(hulp,ott,1_of_2_of_3,mv) \nbijtijds Adv(gew,geen_func,stell,onverv) \nbondig Adj(adv,stell,onverv) \npistolen N(soort,mv,neut) \nBouchet N(eigen,ev,neut) \nIncognita Misc(vreemd) \nvoedingsstoffen N(soort,mv,neut) \nvermeldt V(trans,ott,3,ev) \nall Adj(attr,stell,onverv) \nStanden N(soort,mv,neut) \nbraken V(intrans,inf) \nbastaard N(soort,ev,neut) \nChina N(eigen,ev,neut) \nals Conj(onder,met_fin) Conj(neven)\noverjas N(soort,ev,neut) \nChing N(eigen,ev,neut) \nverlangen N(soort,ev,neut) \nUtrecht N(eigen,ev,neut) \nPrima N(eigen,ev,neut) \nongemotiveerd Adj(attr,stell,onverv) \nklaagzangen N(soort,mv,neut) \nwerklustige Adj(attr,stell,verv_neut) \nregelmatig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nJulius N(eigen,ev,neut) \nafkomstig Adj(attr,stell,onverv) \nleeftijdsverloochening N(soort,ev,neut) \nnadelig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ninnemen V(trans,inf) V(trans,inf,subst)\n747 Num(hoofd,bep,zelfst,onverv) \nappartement N(soort,ev,neut) \naalmoezenier N(soort,ev,neut) \ngauw Adv(gew,geen_func,stell,onverv) \nblonde Adj(attr,stell,verv_neut) \nopeens Adv(gew,geen_func,stell,onverv) \ndisfunktioneel Adj(attr,stell,onverv) \nRobbe N(eigen,ev,neut) \nverbintenis N(soort,ev,neut) \ndecors N(soort,mv,neut) \nonbeheerst Adj(adv,stell,onverv) \nProvo-beweging N(soort,ev,neut) \nversterkende V(intrans,teg_dw,verv_neut) \nsnel Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nkrachten N(soort,mv,neut) \nVictor N(eigen,ev,neut) \ngeliefde Adj(zelfst,stell,verv_neut) \nbehandeling N(soort,ev,neut) \nbuurvrouw N(soort,ev,neut) \ngave N(soort,ev,neut) \njaloezie N(soort,ev,neut) \nkort Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nbehoorden V(intrans,ovt,1_of_2_of_3,mv) \nGriekse Adj(attr,stell,verv_neut) \nsummum N(soort,ev,neut) \nbroek N(soort,ev,neut) \nonvermijdelijk Adj(attr,stell,onverv) \npantry N(soort,ev,neut) \nbroer N(soort,ev,neut) \nteweer Adv(gew,geen_func,stell,onverv) \nand Misc(vreemd) N(soort,mv,neut) N(eigen,ev,neut) N(eigen,mv,neut)\nVroeger Adj(adv,vergr,onverv) \ntherapeute N(soort,ev,neut) \nonbewuste Adj(attr,stell,verv_neut) \nknalde V(intrans,ovt,1_of_2_of_3,ev) \nPrins N(soort,ev,neut) N(eigen,ev,neut)\neveneens Adv(gew,geen_func,stell,onverv) \nonafhankelijk Adj(attr,stell,onverv) \nverzolen V(trans,inf) \nweerkeert V(intrans,ott,3,ev) \ninformatie N(soort,ev,neut) \ntelefoonverbinding N(soort,ev,neut) \ndirigisme N(soort,ev,neut) \nKerstmis N(eigen,ev,neut) \nachteraf Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv)\npad N(soort,ev,neut) \nbedreigd V(trans,verl_dw,onverv) \nBelangrijk Adj(attr,stell,onverv) \nvertoonde V(refl,ovt,1_of_2_of_3,ev) \nbedekt V(trans,verl_dw,onverv) \nkost V(trans,ott,3,ev) N(soort,ev,neut)\ntoenemende V(intrans,teg_dw,verv_neut) \npak N(soort,ev,neut) V(trans,imp) V(intrans,imp)\nmoederonderzeeer N(soort,ev,neut) \npal Adv(gew,geen_func,stell,onverv) \nbehoeftigen Adj(zelfst,stell,verv_mv) \nwatertje N(soort,ev,neut) \nDie Pron(aanw,neut,attr) N(eigen,ev,neut) Pron(betr,neut,zelfst) Pron(aanw,neut,zelfst)\nverpleegtehuizen N(soort,mv,neut) \npap N(soort,ev,neut) \npas Adv(gew,geen_func,stell,onverv) N(soort,ev,neut) V(intrans,imp)\nontvangen V(trans,verl_dw,onverv) \nDik Adj(adv,stell,onverv) \nrodehond N(soort,ev,neut) \ningeslagen V(trans,verl_dw,onverv) \nrationeel Adj(attr,stell,onverv) \nlipgloss N(soort,ev,neut) \nwerkzaam Adj(attr,stell,onverv) \npay Misc(vreemd) \nvoorschriften N(soort,mv,neut) \nerdoorheen Adv(pron,onbep) \nverrukt V(trans,verl_dw,onverv) \nDit Pron(aanw,neut,zelfst) Pron(aanw,neut,attr)\nbrandblaren N(soort,mv,neut) \nzachtmoedige Adj(attr,stell,verv_neut) \njezelf Pron(ref,2,ev) \nFrans Adj(attr,stell,onverv) N(eigen,ev,neut)\nkaap N(soort,ev,neut) \nPhiladelphia N(eigen,ev,neut) \nHindeloper Adj(attr,stell,onverv) \nellebogen N(soort,mv,neut) \nFranz N(eigen,ev,neut) \nkaas N(soort,ev,neut) \nontbieden V(trans,inf) \nbekroond V(trans,verl_dw,onverv) \nkoud Adj(attr,stell,onverv) \nverveling N(soort,ev,neut) \ntheorie N(soort,ev,neut) \nlente N(soort,ev,neut) \nGerrit N(eigen,ev,neut) \nbeschaamd V(trans,verl_dw,onverv) \ngeslaagde V(intrans,verl_dw,verv_neut) \nkritiek N(soort,ev,neut) \nletter N(soort,ev,neut) \ntocht N(soort,ev,neut) \neidooiers N(soort,mv,neut) \n18de Num(rang,bep,attr,onverv) \nmeega V(intrans,ott,1,ev) \nverwerkte V(trans,ovt,1_of_2_of_3,ev) \nkous N(soort,ev,neut) \ntikte V(trans,ovt,1_of_2_of_3,ev) \namerikaans Adj(attr,stell,verv_gen) \nTrouw N(eigen,ev,neut) \nspringvorm N(soort,ev,neut) \nconcurreren V(intrans,inf) \ndienen V(hulp,ott,1_of_2_of_3,mv) \ncontact N(soort,ev,neut) \nbelichaming N(soort,ev,neut) \nbehoefte N(soort,ev,neut) \neind N(soort,ev,neut) \nsnij V(trans,imp) \nlichtheid N(soort,ev,neut) \ncomplicaties N(soort,mv,neut) \nHoogenboom N(eigen,ev,neut) \nProvinciale Adj(attr,stell,verv_neut) \nvermocht V(hulp,ovt,1_of_2_of_3,ev) \nopeten V(trans,ott,1_of_2_of_3,mv) \nbeledigden V(trans,ovt,1_of_2_of_3,mv) \nblijmoedigheid N(soort,ev,neut) \nAmerikaanse Adj(attr,stell,verv_neut) \nvolkomen Adj(adv,stell,onverv) Adj(attr,stell,onverv) Adv(gew,geen_func,stell,onverv)\nburgerpersoneel N(soort,ev,neut) \nKuif N(eigen,ev,neut) \nmiljonairs N(soort,mv,neut) \ninlichtingen N(soort,mv,neut) \novertredingen N(soort,mv,neut) \nNew-York N(eigen,ev,neut) \nnormen N(soort,mv,neut) \nGoren N(eigen,ev,neut) \nleefden V(intrans,ovt,1_of_2_of_3,mv) \nuitgezet V(trans,verl_dw,onverv) \narm N(soort,ev,neut) Adj(attr,stell,onverv)\nhulpelozer Adj(attr,vergr,onverv) \n27.000 Num(hoofd,bep,attr,onverv) \nduidelijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nrechtlijnig Adj(attr,stell,onverv) \nbekende Adj(attr,stell,verv_neut) V(trans,ovt,1_of_2_of_3,ev)\norgasmen N(soort,mv,neut) \nTrade Misc(vreemd) \nzindelijkheidstraining N(soort,ev,neut) \nbadmintonwedstrijd N(soort,ev,neut) \nuitzonderingen N(soort,mv,neut) \nwintersport N(soort,ev,neut) \npen N(soort,ev,neut) \nVaticaan N(eigen,ev,neut) \npep N(soort,ev,neut) \ntuin-schoonheid N(soort,ev,neut) \nvermijdbare Adj(attr,stell,verv_neut) \nstuurde V(trans,ovt,1_of_2_of_3,ev) \nverlegen Adj(attr,stell,onverv) \nper Prep(voor) \ndogela's N(soort,mv,neut) \npet N(soort,ev,neut) \ngeschreven V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nklassenstrijd N(eigen,ev,neut) \nmijdende V(trans,teg_dw,verv_neut) \nontsnappen V(intrans,inf) \nschouder N(soort,ev,neut) \nVeenestraat N(eigen,ev,neut) \nbitterballen N(soort,mv,neut) \nstommigheid N(soort,ev,neut) \nRijst V(intrans,ott,3,ev) \nRien N(eigen,ev,neut) \ngespannen Adj(attr,stell,onverv) V(trans,verl_dw,onverv) Adj(adv,stell,onverv)\npiloten N(soort,mv,neut) \nElsje N(eigen,ev,neut) \nSpanjaarden N(soort,mv,neut) \naanhangig Adj(attr,stell,onverv) \nHayworth N(eigen,ev,neut) \nRiet N(eigen,ev,neut) \nverloskundige Adj(attr,stell,verv_neut) \nmenstruatie N(soort,ev,neut) \nbezittingen N(soort,mv,neut) \nBroadway N(eigen,ev,neut) \noverkomen V(intrans,inf) V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\ninstituut N(soort,ev,neut) \nvoortkronkelende V(intrans,teg_dw,verv_neut) \nbrandstichtingen N(soort,mv,neut) \nalgeheel Adj(attr,stell,onverv) \nlijfwacht N(soort,ev,neut) \nSchokkende V(intrans,teg_dw,verv_neut) \ngedeprimeerd V(trans,verl_dw,onverv) \nChen N(eigen,ev,neut) \nvonkende V(intrans,teg_dw,verv_neut) \nBoer-van N(eigen,ev,neut) \nMinnema N(eigen,ev,neut) \nHarry N(eigen,ev,neut) \nWAREN V(hulp_of_kopp,ovt,1_of_2_of_3,mv) \nromans N(soort,mv,neut) \nernstige Adj(attr,stell,verv_neut) \nSan N(eigen,ev,neut) \nmilieu N(soort,ev,neut) \nCarnac N(eigen,ev,neut) \ngestoken V(trans,verl_dw,onverv) \norganische Adj(attr,stell,verv_neut) \nchristelijke Adj(attr,stell,verv_neut) \nliedjes N(soort,mv,neut) \ncomputer N(soort,ev,neut) \nergens Adv(gew,onbep) Adv(pron,onbep)\nbesproeien V(trans,ott,1_of_2_of_3,mv) \nmilieuverontreiniging N(soort,ev,neut) \naus N(eigen,ev,neut) \nkwispelen V(intrans,inf) \nBrussels Adj(attr,stell,onverv) \nprestatie N(soort,ev,neut) \nduurdere Adj(attr,vergr,verv_neut) \nhomofilie N(soort,ev,neut) \nonderzocht V(trans,ovt,1_of_2_of_3,ev) V(trans,verl_dw,onverv)\ndoorging V(intrans,ovt,1_of_2_of_3,ev) \nrichting N(soort,ev,neut) \nSaloon N(eigen,ev,neut) \nBrugge N(eigen,ev,neut) \nAdultery N(eigen,ev,neut) \nziekenkamer N(soort,ev,neut) \nBureau N(soort,ev,neut) \nvoorkomende V(intrans,teg_dw,verv_neut) \nwillen V(hulp,ott,1_of_2_of_3,mv) V(trans,inf) V(trans,ott,1_of_2_of_3,mv) V(hulp,inf)\nschoenpoetswinkeltje N(soort,ev,neut) \nverduisteren V(trans,inf) \nzodoende Adv(gew,aanw) \nHaaksbergen N(eigen,ev,neut) \n32-jarige Adj(attr,stell,verv_neut) \nDr. N(eigen,ev,neut) \nvermoedelijk Adj(adv,stell,onverv) \nfamilie N(soort,ev,neut) \nDuitssprekende Adj(attr,stell,verv_neut) \nzoekt V(trans,ott,3,ev) V(hulp,ott,3,ev)\naftrekken V(trans,inf) \npitjes N(soort,mv,neut) \nherhaling N(soort,ev,neut) \ngemotiveerde V(trans,verl_dw,verv_neut) \nverderfelijke Adj(attr,stell,verv_neut) \nbloembodem N(soort,ev,neut) \nlagere Adj(attr,vergr,verv_neut) \nTegen Prep(voor) \nSextant N(eigen,ev,neut) \nomstandigheid N(soort,ev,neut) \neist V(trans,ott,3,ev) \npil N(soort,ev,neut) \nvooruitgegaan V(trans,verl_dw,onverv) \nafdraaien V(trans,inf) \nColer N(eigen,ev,neut) \nhadden V(hulp,ovt,1_of_2_of_3,mv) V(trans,ovt,1_of_2_of_3,mv)\npleidooi N(soort,ev,neut) \nvakantie-contact N(soort,ev,neut) \ngeopend V(trans,verl_dw,onverv) \nPalmen N(soort,mv,neut) \nKunt V(hulp,ott,2,ev) \ncourant Adj(attr,stell,onverv) \nOuders N(soort,mv,neut) \ndunkt V(hulp_of_kopp,ott,3,ev) \nlandhuis N(soort,ev,neut) \ngratie N(soort,ev,neut) \nduidelijk-Zweedse Adj(attr,stell,verv_neut) \nontstolen V(trans,verl_dw,onverv) \nbrood N(soort,ev,neut) N(eigen,ev,neut)\ndacht V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nverstond V(trans,ovt,1_of_2_of_3,ev) \nverklaard V(trans,verl_dw,onverv) \ngezinsmaaltijd N(soort,ev,neut) \nJEAN-LOUIS N(eigen,ev,neut) \nnageoogde V(trans,verl_dw,verv_neut) \nWesterse Adj(attr,stell,verv_neut) \nZuidLimburg N(eigen,ev,neut) \nbegeleid V(trans,verl_dw,onverv) \nmeent V(trans,ott,3,ev) \nadoptiebeleid N(soort,ev,neut) \nverdoofd V(trans,verl_dw,onverv) \nverklaart V(trans,ott,3,ev) \nbroeken N(soort,mv,neut) \nL'Air N(eigen,ev,neut) \nbrutaliteit N(soort,ev,neut) \nzielen N(soort,mv,neut) \nRijk N(eigen,ev,neut) \nRijn N(eigen,ev,neut) \nBeckman N(eigen,ev,neut) \naanvaarden V(trans,inf) V(trans,inf,subst)\nmiljonair N(soort,ev,neut) \nonderkomen N(soort,ev,neut) \nkrantenproject N(soort,ev,neut) \nSparta N(eigen,ev,neut) \npitje N(soort,ev,neut) \nverbonden V(trans,verl_dw,onverv) \naangeraakt V(trans,verl_dw,onverv) \ntraditioneel Adj(attr,stell,onverv) \nergere Adj(attr,vergr,verv_neut) \ngebondenheid N(soort,ev,neut) \nhiernaast Adv(pron,aanw) \nSex N(soort,ev,neut) \ngrimmige Adj(attr,stell,verv_neut) \nIedere Pron(onbep,neut,attr) \nuitwegen N(soort,mv,neut) \nklokslag Adv(gew,geen_func,stell,onverv) \npapieren Adj(attr,stell,onverv) N(soort,mv,neut)\nafschuwelijker Adj(attr,vergr,onverv) \nindien Conj(onder,met_fin) \nmedewerking N(soort,ev,neut) \nwrijven V(trans,inf) \nbeweren V(trans,inf) \nplakjes N(soort,mv,neut) \nmotoren N(soort,mv,neut) \nNatuuuurlijk Adj(adv,stell,onverv) \nhertogin N(soort,ev,neut) \nbeleefdheid N(soort,ev,neut) \nvervloekt V(trans,verl_dw,onverv) \ndunne Adj(attr,stell,verv_neut) \nzestiende Num(rang,bep,attr,onverv) Num(rang,bep,zelfst,onverv)\nErkel N(eigen,ev,neut) \nGisteren Adv(gew,geen_func,stell,onverv) \nSera N(eigen,ev,neut) \nzorgvuldiger Adj(attr,vergr,onverv) \ncijferen V(trans,inf) \nrijken Adj(zelfst,stell,verv_mv) \nprof. N(eigen,ev,neut) \nonberispelijk Adj(attr,stell,onverv) \nEigenlijk Adj(adv,stell,onverv) \nstichting N(soort,ev,neut) \nopvangen V(trans,inf) \nrijker Adj(attr,vergr,onverv) \nspasme N(soort,ev,neut) \nbezien V(trans,verl_dw,onverv) \ndergelijk Pron(aanw,neut,attr) \npages N(soort,mv,neut) \ntrachtte V(hulp,ovt,1_of_2_of_3,ev) \nkale Adj(attr,stell,verv_neut) \nVorige Adj(attr,stell,verv_neut) \nleiden V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nverstuurd V(trans,verl_dw,onverv) \nRevolutie N(soort,ev,neut) \nflessen N(soort,mv,neut) \nblijf V(hulp_of_kopp,ott,1,ev) V(intrans,ott,1,ev)\nleider N(soort,ev,neut) \nkalm Adj(attr,stell,onverv) \nhortend V(intrans,teg_dw,onverv) \ngeschriften N(soort,mv,neut) \nblijk N(soort,ev,neut) \nstroken N(soort,mv,neut) \nmilligram N(soort,ev,neut) \nalgehele Adj(attr,stell,verv_neut) \nproef N(soort,ev,neut) \nKluns N(eigen,ev,neut) \nMeighen N(eigen,ev,neut) \nspier N(soort,ev,neut) \nStel V(trans,imp) \nmerkten V(trans,ovt,1_of_2_of_3,mv) \nmamuthones N(soort,mv,neut) \ndonker Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nDus Adv(gew,aanw) \nCampagnolo N(eigen,ev,neut) \nvloeimest N(soort,ev,neut) \nverloop N(soort,ev,neut) \nverloor V(trans,ovt,1_of_2_of_3,ev) \nButler N(soort,ev,neut) \nuitgaande V(intrans,teg_dw,verv_neut) \neigen Pron(aanw,neut,attr,w_eigen) Pron(onbep,neut,attr) Adj(attr,stell,onverv)\npnd N(soort,mv,neut) \nooit Adv(gew,onbep) \npauze N(soort,ev,neut) \nfolkloristisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nRecht-toe Adj(attr,stell,onverv) \nkranten N(soort,mv,neut) \ngroeien V(intrans,inf) \nkamp N(soort,ev,neut) \nNeemt V(trans,ott,3,ev) \ngekocht V(trans,verl_dw,onverv) \nhuurder N(soort,ev,neut) \nheersers N(soort,mv,neut) \nkapsel N(soort,ev,neut) \nautootje N(soort,ev,neut) \nergeren V(refl,inf) \ngesigneerde V(trans,verl_dw,verv_neut) \nnaartoe Adv(deel_adv) \nborduurnaald N(soort,ev,neut) \nnonnen N(soort,mv,neut) \nwijn-en-spijs-journalisten N(soort,mv,neut) \noorspronkelijk Adj(adv,stell,onverv) \nlinie N(soort,ev,neut) \nprobeer V(trans,imp) \nsouvereine N(soort,ev,neut) \nambtelijke Adj(attr,stell,verv_neut) \nterwijl Conj(onder,met_fin) \nvaders N(soort,mv,neut) \nnummers N(soort,mv,neut) \nSeth N(eigen,ev,neut) \nBeatles N(eigen,mv,neut) \nmeten V(trans,ott,1_of_2_of_3,mv) \ngesproken V(intrans,verl_dw,onverv) V(trans,verl_dw,onverv)\nbezitten V(trans,ott,1_of_2_of_3,mv) \nkookt V(intrans,ott,3,ev) V(intrans,ott,2,ev)\nleeftijd N(soort,ev,neut) \ngehandicapte V(trans,verl_dw,verv_neut) \nlekker Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nmeter N(soort,ev,neut) \nkang N(soort,ev,neut) \nEskimo N(soort,ev,neut) \nineens Adv(gew,geen_func,stell,onverv) \nvuiltje N(soort,ev,neut) \nvriendinnen N(soort,mv,neut) \nsimplistische Adj(attr,stell,verv_neut) \nSir N(soort,ev,neut) \nSit N(eigen,ev,neut) \ngeparkeerd V(trans,verl_dw,onverv) \npop N(soort,ev,neut) \nziekenauto N(soort,ev,neut) \nAlghero N(eigen,ev,neut) \nkans N(soort,ev,neut) \nkant N(soort,ev,neut) \npot N(soort,ev,neut) \ninmiddels Adv(gew,geen_func,stell,onverv) \nmarktaandelen N(soort,mv,neut) \nmeest Adv(gew,geen_func,overtr,onverv) Num(hoofd,onbep,attr,overtr,onverv) Num(hoofd,onbep,zelfst,overtr,onverv)\ninenten V(intrans,inf) \nproces N(soort,ev,neut) \nverwerping N(soort,ev,neut) \nafgeven V(intrans,inf) \nbraak Adj(attr,stell,onverv) \nlaboratorium N(soort,ev,neut) \nontvangst N(soort,ev,neut) \nmisselijkheid N(soort,ev,neut) \narsenaal N(soort,ev,neut) \nt.a.v. Prep(voor) \nverhoudingen N(soort,mv,neut) \nDwars Adj(adv,stell,onverv) \nrivier N(soort,ev,neut) \nhoogstens Adv(gew,geen_func,stell,onverv) \ngelijkvormige Adj(attr,stell,verv_neut) \nfilms N(soort,mv,neut) \nultrafijne Adj(attr,stell,verv_neut) \nmeespeelden V(intrans,ovt,1_of_2_of_3,mv) \nbeurs N(soort,ev,neut) \ndoorleef V(trans,ott,1,ev) \nargument N(soort,ev,neut) \ndonderdag N(eigen,ev,neut) \nliefdadigheid N(soort,ev,neut) \nkonservatieve Adj(attr,stell,verv_neut) \nAmersfoortse Adj(attr,stell,verv_neut) \nbuik N(soort,ev,neut) \nBlik N(soort,ev,neut) \nstellingname N(soort,ev,neut) \nzitting N(soort,ev,neut) \nlaboranten N(soort,mv,neut) \nbuis N(soort,ev,neut) \nHeren N(soort,mv,neut) \nbuit N(soort,ev,neut) \nTurkije N(eigen,ev,neut) \nverstaan V(trans,inf) \nfantasie N(soort,ev,neut) \npassende V(intrans,teg_dw,verv_neut) \nenclave N(soort,ev,neut) \nverstaat V(trans,ott,3,ev) \nlinks Adv(gew,geen_func,stell,onverv) \nblind Adj(attr,stell,onverv) \nbuikig Adj(attr,stell,onverv) \nadjudant N(soort,ev,neut) \naankwamen V(intrans,ovt,1_of_2_of_3,mv) \nschoongewaaid V(intrans,verl_dw,onverv) \nzoete Adj(attr,stell,verv_neut) \nafstoting N(soort,ev,neut) \nTrapp N(eigen,ev,neut) \ndienst N(soort,ev,neut) N(eigen,ev,neut)\nAnton N(eigen,ev,neut) \nfeilloze Adj(attr,stell,verv_neut) \nborden N(soort,mv,neut) \nontdekken V(trans,inf) \nhierheen Adv(pron,aanw) \nbordes N(soort,ev,neut) \nChr. N(eigen,ev,neut) \ntelefoontje N(soort,ev,neut) \nzingen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\ntraditionele Adj(attr,stell,verv_neut) \nbuikje N(soort,ev,neut) \nambitieus Adj(attr,stell,onverv) \nbewerkt V(trans,verl_dw,onverv) V(trans,ott,2,ev)\nfouten N(soort,mv,neut) \nlaatste Adj(attr,overtr,verv_neut) Adj(zelfst,overtr,verv_neut)\nblijvend V(intrans,teg_dw,onverv) \ntype N(soort,ev,neut) \npassage N(soort,ev,neut) \nhandfuncties N(soort,mv,neut) \navondeten N(soort,ev,neut) \ndoorbraak N(soort,ev,neut) \nbrandend V(intrans,teg_dw,onverv) \nspijt V(intrans,ott,3,ev) N(soort,ev,neut)\nopzicht N(soort,ev,neut) \nimpotentie N(soort,ev,neut) \nkampen V(intrans,inf) \ngeworpen V(trans,verl_dw,onverv) \nsociaaleconomisch Adj(adv,stell,onverv) \nineenstorten V(intrans,inf,subst) \ngetinte Adj(attr,stell,verv_neut) \nrellen N(soort,mv,neut) \nsadistisch Adj(attr,stell,onverv) \ngisting N(soort,ev,neut) \nontwikkeling N(soort,ev,neut) \nrondloopt V(intrans,ott,3,ev) \nseizoenen N(soort,mv,neut) \nonbetamelijk Adj(attr,stell,onverv) \ningevoerd V(trans,verl_dw,onverv) \nnadien Adv(gew,aanw) \nZolang Conj(onder,met_fin) \nstemming N(soort,ev,neut) \nsymbolen N(soort,mv,neut) \nhaute-couture N(soort,ev,neut) \nverzameling N(soort,ev,neut) \nglimlachende V(intrans,teg_dw,verv_neut) \nkalend V(intrans,teg_dw,onverv) \narresteerde V(trans,ovt,1_of_2_of_3,ev) \ninformeert V(trans,ott,3,ev) \nhardgekookte Adj(attr,stell,verv_neut) \nmiste V(trans,ovt,1_of_2_of_3,ev) \nligging N(soort,ev,neut) \nlieveling N(soort,ev,neut) \nobligaties N(soort,mv,neut) \nLouise N(eigen,ev,neut) \npluizenraper N(soort,ev,neut) \ncapituleer V(intrans,ott,1,ev) \nComplimenteus Adj(attr,stell,onverv) \nverdienen V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nsterveling N(soort,ev,neut) \nstaken V(trans,ovt,1_of_2_of_3,mv) \nwijten V(trans,inf) \nChristus N(eigen,ev,neut) \nPresentatrice N(soort,ev,neut) \nPere-Lachaise N(eigen,ev,neut) \nverwierf V(trans,ovt,1_of_2_of_3,ev) \nTNO N(eigen,ev,neut) \ntalenten N(soort,mv,neut) \noverschreden V(trans,verl_dw,onverv) \nbeleefd V(intrans,verl_dw,onverv) \nLapland N(eigen,ev,neut) \nbad V(trans,ovt,1_of_2_of_3,ev) N(soort,ev,neut)\nleraren N(soort,mv,neut) \nkast N(soort,ev,neut) \naangetroffen V(trans,verl_dw,onverv) \nvlekkies N(soort,mv,neut) \nballingschap N(soort,ev,neut) \nRita N(eigen,ev,neut) \nstrafbehoefte N(soort,ev,neut) \nBoeing N(soort,ev,neut) \nbak V(trans,imp) \nArmonada N(eigen,ev,neut) \nkapsones N(soort,mv,neut) \nbal N(soort,ev,neut) \nonvrij Adj(attr,stell,onverv) \nnalopen V(trans,inf) \nalsjeblieft Int Adv(gew,geen_func,stell,onverv)\nbeleeft V(trans,ott,3,ev) \nGedroogd V(intrans,verl_dw,onverv) \nvoortreffelijk Adj(adv,stell,onverv) \nbar N(soort,ev,neut) Adj(adv,stell,onverv)\nraadzaal N(soort,ev,neut) \nAfgelopen V(intrans,verl_dw,onverv) \nnachtmerrie N(soort,ev,neut) \nverkrachtingen N(soort,mv,neut) \nSol N(eigen,ev,neut) \nSon N(eigen,ev,neut) \ngladde Adj(attr,stell,verv_neut) \nbelangrijker Adj(attr,vergr,onverv) \nwringen V(trans,inf) \nwaggelt V(intrans,ott,3,ev) \nmuziekinstituut N(soort,ev,neut) \nterugkwam V(intrans,ovt,1_of_2_of_3,ev) \ngronden N(soort,mv,neut) \nonwaarschijnlijk Adj(attr,stell,onverv) \nIndonesie N(eigen,ev,neut) \nhouding N(soort,ev,neut) \nverstoort V(trans,ott,3,ev) \npolio N(soort,ev,neut) \nCentral N(eigen,ev,neut) \nstokken N(soort,mv,neut) \npolis N(soort,ev,neut) \nbreken V(intrans,inf) V(trans,inf)\niiii Num(hoofd,bep,zelfst,onverv) \nNederland N(eigen,ev,neut) \napril N(eigen,ev,neut) \nzeuren V(intrans,inf) \nachterhalen V(trans,inf) \nwegspoelen V(trans,inf) \nschaapsherder N(soort,ev,neut) \ninstructie N(soort,ev,neut) \nOude N(eigen,ev,neut) \nspirit N(soort,ev,neut) \nbordje N(soort,ev,neut) \nAmerikanen N(soort,mv,neut) \nDelft N(eigen,ev,neut) \ngereedschap N(soort,ev,neut) \ndichtgehouden V(trans,verl_dw,onverv) \nkauw V(intrans,ott,1,ev) \nBijlmermeer N(eigen,ev,neut) \nhaute-finance N(soort,ev,neut) \nblikken N(soort,mv,neut) \nKennelijk Adj(adv,stell,onverv) \nolifant N(soort,ev,neut) \nontmoeten V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nVerbondsvergadering N(soort,ev,neut) \ngesneden V(trans,verl_dw,onverv) \nthans Adv(gew,geen_func,stell,onverv) Adv(gew,aanw)\nallerhande Pron(onbep,neut,attr) \nPlotseling Adj(adv,stell,onverv) \nschieten V(intrans,inf) \nfoutje N(soort,ev,neut) \nzinde V(intrans,ovt,1_of_2_of_3,ev) \ntoegediend V(trans,verl_dw,onverv) \nharing N(soort,ev,neut) \noppositieleider N(soort,ev,neut) \nbehelpen V(refl,inf) \nvroegere Adj(attr,vergr,verv_neut) \nminderwaardigheidsgevoelens N(soort,mv,neut) \nWeet V(trans,ott,2,ev) V(intrans,ott,1,ev)\nmeubelplaat N(soort,ev,neut) \niemand Pron(onbep,neut,zelfst) \nindividueel Adj(attr,stell,onverv) \nPARIJS N(eigen,ev,neut) \ngemist V(trans,verl_dw,onverv) \ndriedimensionaal Adj(adv,stell,onverv) \nverkochten V(trans,ovt,1_of_2_of_3,mv) \nopeningetje N(soort,ev,neut) \nsecundaire Adj(attr,stell,verv_neut) \njongeren Adj(zelfst,vergr,verv_neut) Adj(zelfst,stell,verv_mv)\ncontroleren V(trans,inf) \novergebracht V(trans,verl_dw,onverv) \nheide N(soort,ev,neut) \nVerantwoorde N(eigen,ev,neut) \nminderjarigen Adj(zelfst,stell,verv_mv) \nSt. N(eigen,ev,neut) \nreumatische Adj(attr,stell,verv_neut) \nfotograferende V(intrans,teg_dw,verv_neut) \ngehaakte V(trans,verl_dw,verv_neut) \nbed N(soort,ev,neut) \nda's V(hulp_of_kopp,ott,3,ev) \nfilmscript N(soort,ev,neut) \nvissen N(soort,mv,neut) V(intrans,inf)\nbek N(soort,ev,neut) \nzuchtte V(intrans,ovt,1_of_2_of_3,ev) V(trans,ovt,1_of_2_of_3,ev)\nbel Misc(vreemd) \nWanneer Conj(onder,met_fin) Adv(gew,betr)\nben V(hulp_of_kopp,ott,1,ev) V(hulp_of_kopp,ott,2,ev) V(intrans,ott,1,ev)\nLoopt V(intrans,ott,3,ev) \npijnloos Adj(adv,stell,onverv) \nvrouw-vrouw N(soort,ev,neut) \ngunstiger Adj(attr,vergr,onverv) \nbepalen V(trans,inf) \nerbij Adv(pron,onbep) \nklaagde V(trans,ovt,1_of_2_of_3,ev) V(intrans,ovt,1_of_2_of_3,ev)\nverbondenheid N(soort,ev,neut) \ngrondig Adj(adv,stell,onverv) \nAlexander N(eigen,ev,neut) \nhersencellen N(soort,mv,neut) \nCorner N(eigen,ev,neut) \nkistje N(soort,ev,neut) \nonderwijs N(soort,ev,neut) \nveertienjarig Adj(attr,stell,onverv) \nArend N(eigen,ev,neut) \nSta V(intrans,ott,2,ev) \npassant Misc(vreemd) \ndoodgewone Adj(attr,stell,verv_neut) \ntamelijk Adv(gew,geen_func,stell,onverv) \nflorissant Adj(attr,stell,onverv) \nobjecten N(soort,mv,neut) \nChauvin N(eigen,ev,neut) \nverwrongen V(trans,verl_dw,onverv) \nopgevoed V(trans,verl_dw,onverv) \nconsideratie N(soort,ev,neut) \nreumatisch Adj(attr,stell,onverv) \nblauwbloedigen Adj(zelfst,stell,verv_mv) \nadvies N(soort,ev,neut) \natoomduikboot N(soort,ev,neut) \nveranda N(soort,ev,neut) \nbegin N(soort,ev,neut) V(trans,ott,1,ev) V(intrans,ott,1,ev)\nDreimaderlhaus N(eigen,ev,neut) \ndagboek N(soort,ev,neut) \nVader N(soort,ev,neut) \nbrillen N(soort,mv,neut) \nbiljardairs N(soort,mv,neut) \nNOS-schakelcentrum N(soort,ev,neut) \ndonzen Adj(attr,stell,onverv) \nhertrouwde V(intrans,ovt,1_of_2_of_3,ev) \ngeopenbaard V(intrans,verl_dw,onverv) \nAcifit-ploegleider N(soort,ev,neut) \nerfelijke Adj(attr,stell,verv_neut) \nLetter N(soort,ev,neut) \nvastbindt V(trans,ott,2,ev) \nrijkdom N(soort,ev,neut) \novertreft V(trans,ott,3,ev) \nDamas N(eigen,ev,neut) \npredikant N(soort,ev,neut) \nindenken V(trans,inf) \nloodje N(soort,ev,neut) \neensterre-restaurants N(soort,mv,neut) \nkenden V(trans,ovt,1_of_2_of_3,mv) \nchronische Adj(attr,stell,verv_neut) \nFBO N(eigen,ev,neut) \nouderlijk Adj(attr,stell,onverv) \nvastgezet V(trans,verl_dw,onverv) \nbroedgelegenheid N(soort,ev,neut) \ngalbulten N(soort,mv,neut) \nbankier N(soort,ev,neut) \nverscheurd V(trans,verl_dw,onverv) \nmetro N(soort,ev,neut) \nfantastische Adj(attr,stell,verv_neut) \ningehaald V(trans,verl_dw,onverv) \nontstegen V(intrans,verl_dw,onverv) \nHonderden Num(hoofd,bep,attr,onverv) \n800 Num(hoofd,bep,attr,onverv) \nterechtgekomen V(intrans,verl_dw,onverv) \nCraig N(eigen,ev,neut) \nTREFFEN V(trans,ott,1_of_2_of_3,mv) \nademnood N(soort,ev,neut) \nbrand N(soort,ev,neut) \nspits N(soort,ev,neut) \nGrootBrittannie N(eigen,ev,neut) \nriepen V(trans,ovt,1_of_2_of_3,mv) \nvoortvloeiden V(intrans,ovt,1_of_2_of_3,mv) \nlakens N(soort,mv,neut) \nbij Prep(voor) Adv(deel_v) Adv(gew,geen_func,stell,onverv) Adv(deel_adv)\nreisgezelschap N(soort,ev,neut) \nstromende V(intrans,teg_dw,verv_neut) \nportretten N(soort,mv,neut) \nBoven Prep(voor) Adv(gew,geen_func,stell,onverv)\nd'r Pron(bez,3,ev,neut,attr) \nafgeweest V(trans,verl_dw,onverv) \nverkeersongelukken N(soort,mv,neut) \nvijzelen V(trans,inf) \nPicpus N(eigen,ev,neut) \nkunnen 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)\nidylles N(soort,mv,neut) \nRhoda N(eigen,ev,neut) \nsuede N(soort,ev,neut) \nverkeer N(soort,ev,neut) \npraat V(intrans,ott,1,ev) V(intrans,ott,2,ev) V(intrans,ott,3,ev)\nEde N(eigen,ev,neut) \ngebruiken V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nStadionweg N(eigen,ev,neut) \nanderen Pron(onbep,neut,zelfst) \nDingsda N(eigen,ev,neut) \nHuyskens N(eigen,ev,neut) \nwinkelen V(intrans,inf) \nverstand N(soort,ev,neut) \ntachtig Num(hoofd,bep,attr,onverv) \nToetela N(eigen,ev,neut) \nknikte V(intrans,ovt,1_of_2_of_3,ev) \neconomisch Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nDuits Adj(zelfst,stell,onverv) Adj(attr,stell,onverv)\nCijfers N(soort,mv,neut) \ndoordrinkt V(intrans,ott,3,ev) \nverleiden V(trans,inf,subst) \nhoegenaamd Adv(gew,geen_func,stell,onverv) \nWelk Pron(vrag,neut,zelfst) \nPerzen N(eigen,ev,neut) \nWell Misc(vreemd) \ntroffen V(trans,ovt,1_of_2_of_3,mv) \nslaat-ie V(intrans,ott,3,ev) \ndecember N(eigen,ev,neut) \nlandbouw N(soort,ev,neut) \nsolidariteit N(soort,ev,neut) \nkritische Adj(attr,stell,verv_neut) \npikant Adj(attr,stell,onverv) \nindividuele Adj(attr,stell,verv_neut) \nmelodieen N(soort,mv,neut) \naanwezige Adj(attr,stell,verv_neut) \nsmerig Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nallang Adv(gew,geen_func,stell,onverv) \nrotsen N(soort,mv,neut) \nDuits-Nederlandse Adj(attr,stell,verv_neut) \nChambord N(eigen,ev,neut) \naldus Adv(gew,aanw) \nhurken N(soort,mv,neut) \nEen Art(onbep,zijd_of_onzijd,neut) Num(hoofd,bep,zelfst,onverv) Num(hoofd,bep,attr,onverv)\ndialoog N(soort,ev,neut) \nmedelijden N(soort,ev,neut) \nmishandeling N(soort,ev,neut) \nvergoeden V(trans,inf) \nmenigte N(soort,ev,neut) \nonthouding N(soort,ev,neut) \nprincipe N(soort,ev,neut) \ngehoorzaamden V(trans,ovt,1_of_2_of_3,mv) \nverbod N(soort,ev,neut) \nziekelijke Adj(attr,stell,verv_neut) \nbeschouwd V(trans,verl_dw,onverv) \nontsteld Adj(adv,stell,onverv) \nDelon N(eigen,ev,neut) \nartikel N(soort,ev,neut) \nsterrenbeeld N(soort,ev,neut) \nalleenrecht N(soort,ev,neut) \nsportnieuws N(soort,ev,neut) \nhandleiding N(soort,ev,neut) \nNieuwenhuizen N(eigen,ev,neut) \nprobleem N(soort,ev,neut) \nbeschouwt V(trans,ott,3,ev) \nFlas N(eigen,ev,neut) \norganisaties N(soort,mv,neut) \nreisbureaus N(soort,mv,neut) \ngevangen V(trans,verl_dw,onverv) \nnauwelijks Adv(gew,geen_func,stell,onverv) \nErgens Adv(pron,onbep) \nbevat V(trans,ott,3,ev) \nsubliem Adj(attr,stell,onverv) \nIndian N(eigen,ev,neut) \nTommy N(eigen,ev,neut) \nbuitenromp N(soort,ev,neut) \nvreugde N(soort,ev,neut) \nvoorwerpen N(soort,mv,neut) \nbegon 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)\ngezinsleven N(soort,ev,neut) \nopgehouden V(trans,verl_dw,onverv) \nWillem N(eigen,ev,neut) \nvrij Adj(adv,stell,onverv) Adj(attr,stell,onverv)\ngedragingen N(soort,mv,neut) \nbegint V(intrans,ott,3,ev) V(hulp,ott,3,ev)\nsoep N(soort,ev,neut) \ngewone Adj(attr,stell,verv_neut) \nplan N(soort,ev,neut) \nkijken V(intrans,inf) V(trans,inf) V(trans,ott,1_of_2_of_3,mv)\nontzettende Adj(attr,stell,verv_neut) \ngebieden N(soort,mv,neut) \nzulke Pron(aanw,dat,attr) \nbeschreven V(trans,verl_dw,onverv) \nprolongatie N(soort,ev,neut) \nplat N(soort,ev,neut) Adj(attr,stell,onverv)\ngeladen V(trans,verl_dw,onverv) \nPatroni N(eigen,ev,neut) \nwoedt V(intrans,ott,3,ev) \nverdwenen V(intrans,verl_dw,onverv) V(intrans,ovt,1_of_2_of_3,mv)\nslaperigheid N(soort,ev,neut) \ntoaalbeeld N(soort,ev,neut) \nsnackbar N(soort,ev,neut) \nPeinzend V(intrans,teg_dw,onverv) \nopgedroogd V(intrans,verl_dw,onverv) \npopulariteit N(soort,ev,neut) \nJenny N(eigen,ev,neut) \nhieromtrent Adv(pron,aanw) \nschitteren V(intrans,inf) \nVijf Num(hoofd,bep,attr,onverv) \ntaxichauffeur N(soort,ev,neut) \nBlaise N(eigen,ev,neut) \nwaargemaakt V(trans,verl_dw,onverv) \nkneep V(trans,ovt,1_of_2_of_3,ev) \nstick N(soort,ev,neut) \nherkende V(trans,ovt,1_of_2_of_3,ev) \nbegonne V(intrans,verl_dw,onverv) \ngewoon Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nafknippen V(trans,inf) \noproep N(soort,ev,neut) \nzelfstandigheid N(soort,ev,neut) \ncompromis N(soort,ev,neut) \noproer N(soort,ev,neut) \nJacobus N(eigen,ev,neut) \nnodige Adj(attr,stell,verv_neut) \nbod N(soort,ev,neut) \nbof N(soort,ev,neut) \neigendom N(soort,ev,neut) \nvoorlichting N(soort,ev,neut) \nrestanten N(soort,mv,neut) \nFIM N(eigen,ev,neut) \nbom N(soort,ev,neut) \nbos N(soort,ev,neut) \nvermoeidheidverschijnselen N(soort,mv,neut) \ncommerciele Adj(attr,stell,verv_neut) \nHommes N(eigen,ev,neut) \nwaardoor Adv(pron,betr) Adv(pron,vrag)\nmelkhandelaar N(soort,ev,neut) \nneem V(trans,imp) V(trans,ott,2,ev) V(trans,ott,1,ev)\ncomplex N(soort,ev,neut) \ngevarieerd V(trans,verl_dw,onverv) \ngeconstateerd V(trans,verl_dw,onverv) \nneer Adv(deel_v) \ngrondbelasting N(soort,ev,neut) \ntoegedaan V(trans,verl_dw,onverv) \nVoorzichtig Adj(adv,stell,onverv) \ntijdverdrijf N(soort,ev,neut) \nUniversity N(eigen,ev,neut) \nreisdoel N(soort,ev,neut) \nbehoeven V(hulp,inf) \nopdoemen V(intrans,inf) \nRuime Adj(attr,stell,verv_neut) \nBurton N(eigen,ev,neut) \nklokkeluider N(soort,ev,neut) \nvoorbereidselen N(soort,mv,neut) \nafgelegen Adj(attr,stell,onverv) \ncolleges N(soort,mv,neut) \nbevel N(soort,ev,neut) \nVoortaan Adv(gew,geen_func,stell,onverv) \nWerp V(trans,imp) \nharmonie N(soort,ev,neut) \nnabuureiland N(soort,ev,neut) \nhalfslachtigheid N(soort,ev,neut) \nIndien Conj(onder,met_fin) \nspeciale Adj(attr,stell,verv_neut) \nAfgaande V(intrans,teg_dw,verv_neut) \nindustrie N(soort,ev,neut) \nWillie N(eigen,ev,neut) \nopgevoerd V(trans,verl_dw,onverv) \nArabieren N(soort,mv,neut) \nvarkensvlees N(soort,ev,neut) \nNieuwjaarsdag N(eigen,ev,neut) \nschepper N(soort,ev,neut) \nverwijten N(soort,mv,neut) V(trans,inf)\nspiraalvormige Adj(attr,stell,verv_neut) \nzaaks N(soort,ev,gen) \nmaandelijkse Adj(attr,stell,verv_neut) \nplek N(soort,ev,neut) \ndraden N(soort,mv,neut) \nWest Misc(vreemd) \nGlans N(soort,ev,neut) \nbomen N(soort,mv,neut) \nElk Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nverschil N(soort,ev,neut) \nachtergrond N(soort,ev,neut) \naarzelt V(intrans,ott,3,ev) \nbehoede V(trans,conj) \nalsof Conj(onder,met_fin) \nprofeet N(soort,ev,neut) \nhuursom N(soort,ev,neut) \nrevolutiontair N(soort,ev,neut) \npersagent N(soort,ev,neut) \nschoonheid N(soort,ev,neut) \nonvervangbaar Adj(attr,stell,onverv) \nsnufje N(soort,ev,neut) \ngemutst Adj(attr,stell,onverv) \nkampementen N(soort,mv,neut) \nkleuradvies N(soort,ev,neut) \nopname N(soort,ev,neut) \nwrange Adj(attr,stell,verv_neut) \nknorde V(trans,ovt,1_of_2_of_3,ev) \nflats N(soort,mv,neut) \nverbreken V(trans,inf) \nVerbond N(soort,ev,neut) \nboekenkast N(soort,ev,neut) \nPsychologen N(soort,mv,neut) \nSoestdijk N(eigen,ev,neut) \nRoche N(eigen,ev,neut) \nnature N(soort,ev,dat) \nBardot N(eigen,ev,neut) \nmoeite N(soort,ev,neut) \naanzetten V(intrans,inf) \nlampjes N(soort,mv,neut) \ntechnologie N(soort,ev,neut) \nwijzerplaat N(soort,ev,neut) \ngunstigst Adj(attr,overtr,onverv) \nOosten N(eigen,ev,neut) \nzwijgen V(intrans,inf) \nsnelheidsovertredingen N(soort,mv,neut) \nwetten N(soort,mv,neut) \nBorneo-SumatraHandelmaatschappij N(eigen,ev,neut) \nIneens Adv(gew,geen_func,stell,onverv) \nflauw Adj(attr,stell,onverv) \ntoegezwaaid V(trans,verl_dw,onverv) \ndaarin Adv(pron,aanw) \nkastekort N(soort,ev,neut) \nopwinding N(soort,ev,neut) \nbeschikken V(intrans,ott,1_of_2_of_3,mv) V(trans,inf)\ndecor N(soort,ev,neut) \nbehoeft V(hulp,ott,3,ev) V(trans,ott,3,ev)\nstreek V(intrans,ovt,1_of_2_of_3,ev) N(soort,ev,neut)\nregeringsschijven N(soort,mv,neut) \nHonderdvijftig Num(hoofd,bep,attr,onverv) \ntweeenvijftig Num(hoofd,bep,attr,onverv) \nkralenkransen N(soort,mv,neut) \ngedwongen V(trans,verl_dw,onverv) \nstreep N(soort,ev,neut) \neerbied N(soort,ev,neut) \nvertederd V(trans,verl_dw,onverv) \nvlaktes N(soort,mv,neut) \ngestolen V(trans,verl_dw,onverv) \nopeenstapeling N(soort,ev,neut) \nVietnamese Adj(attr,stell,verv_neut) \nfantaseerden V(intrans,ovt,1_of_2_of_3,mv) \npeterselie N(soort,ev,neut) \nbus N(soort,ev,neut) \nplannen N(soort,mv,neut) \nvertelden V(trans,ovt,1_of_2_of_3,mv) V(intrans,ovt,1_of_2_of_3,mv)\nhoofd N(soort,ev,neut) \norganisatie N(soort,ev,neut) \nfornuis N(soort,ev,neut) \nIndia N(eigen,ev,neut) \nmuren N(soort,mv,neut) \nsoms Adv(gew,aanw) Adv(gew,geen_func,stell,onverv)\nstijf Adj(adv,stell,onverv) \nvermande V(refl,ovt,1_of_2_of_3,ev) \ngeroken V(trans,verl_dw,onverv) \nrelatief Adj(attr,stell,onverv) \nVVV's N(soort,mv,neut) \nJamesy N(eigen,ev,neut) \ngedoe N(soort,ev,neut) \nfrappante Adj(attr,stell,verv_neut) \nIndie N(eigen,ev,neut) \nafhangt V(intrans,ott,3,ev) \nstijl N(soort,ev,neut) \nvoldoende Pron(onbep,neut,attr) Pron(onbep,neut,zelfst)\nactrice N(soort,ev,neut) \ndemocratie N(soort,ev,neut) \nkopen V(trans,inf) V(intrans,inf) V(intrans,ott,1_of_2_of_3,mv)\nanderhalf Num(hoofd,bep,attr,onverv) \nkeuzevakken N(soort,mv,neut) \ntelevisie N(soort,ev,neut) \nintelligent Adj(attr,stell,onverv) \nchaos N(soort,ev,neut) \nakelige Adj(attr,stell,verv_neut) \nconcentreren V(refl,inf) \nscala N(soort,ev,neut) \ngewoonten N(soort,mv,neut) \nnatuur N(soort,ev,neut) \ngirls Misc(vreemd) \nMarrat N(eigen,ev,neut) \nderde Num(rang,bep,attr,onverv) \nintellectuele Adj(attr,stell,verv_neut) \neenvoudig Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nwagens N(soort,mv,neut) \ntempo N(soort,ev,neut) \ngebeurtenis N(soort,ev,neut) \nOmgerekend V(trans,verl_dw,onverv) \nAmerikaan N(soort,ev,neut) \navondwandelingen N(soort,mv,neut) \nterugtrok V(refl,ovt,1_of_2_of_3,ev) \ntussentijd N(soort,ev,neut) \nafstandelijk Adj(attr,stell,onverv) \nhistorische Adj(attr,stell,verv_neut) \ncoitus N(soort,ev,neut) \n1,80 Num(hoofd,bep,attr,onverv) \nslechte Adj(attr,stell,verv_neut) Adj(zelfst,stell,verv_neut)\nnaamplaatje N(soort,ev,neut) \nverrijzen V(intrans,ott,1_of_2_of_3,mv) \nopen Adj(attr,stell,onverv) \nVerre N(eigen,ev,neut) Adj(attr,stell,verv_neut)\nParijse Adj(attr,stell,verv_neut) \nreclamespot N(soort,ev,neut) \nsteken V(trans,inf) \nijverige Adj(attr,stell,verv_neut) \nwinter N(soort,ev,neut) \nwettig Adj(attr,stell,onverv) \nslechts Adv(gew,geen_func,stell,onverv) \nBloedschande N(soort,ev,neut) \ngordijnen N(soort,mv,neut) \ngast-arbeiders N(soort,mv,neut) \nGwen N(eigen,ev,neut) \ntenzij Conj(onder,met_fin) \nlichtzinnigheid N(soort,ev,neut) \nPersonality N(eigen,ev,neut) \ngaranderen V(trans,inf) \n1,90 Num(hoofd,bep,attr,onverv) \nprille Adj(attr,stell,verv_neut) \nsymbool N(soort,ev,neut) \ntoneel N(soort,ev,neut) \nverontschuldigingen N(soort,mv,neut) \nonderduikers N(soort,mv,neut) \nvreemdeling N(soort,ev,neut) \nTweeentwintig Num(hoofd,bep,attr,onverv) \ngebruikte V(trans,verl_dw,verv_neut) \nTen Prep(voor) \ngoudlame N(soort,ev,neut) \nterloops Adj(adv,stell,onverv) \nbetrof V(trans,ovt,1_of_2_of_3,ev) \nKersentuin N(eigen,ev,neut) \nNiets Pron(onbep,neut,zelfst) \nopenbaar Adj(attr,stell,onverv) \ndaarna Adv(pron,aanw) \navonduren N(soort,mv,neut) \ngediend V(trans,verl_dw,onverv) \nrenteniers N(soort,mv,neut) \nbeleid N(soort,ev,neut) \nmelden V(trans,ott,1_of_2_of_3,mv) \nbewust Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nwerktuigelijk Adj(adv,stell,onverv) \ngroen-groen N(eigen,ev,neut) \nvitale Adj(attr,stell,verv_neut) \nplakken N(soort,mv,neut) \nvoorvaderen N(soort,mv,neut) \nhandiger Adj(attr,vergr,onverv) \ndierenliefde N(soort,ev,neut) \nCuracao N(eigen,ev,neut) \npianoles N(soort,ev,neut) \nonzichtbare Adj(attr,stell,verv_neut) \nOostenrijk N(eigen,ev,neut) \nhaardvuur N(soort,ev,neut) \nanticonceptie N(eigen,ev,neut) \nweemoedig Adj(adv,stell,onverv) \nNieuw N(eigen,ev,neut) \nkopie N(soort,ev,neut) \nparfum N(soort,ev,neut) \nberoemdheden N(soort,mv,neut) \njachtgeweer N(soort,ev,neut) \nopmerkelijke Adj(attr,stell,verv_neut) \nspirituele Adj(attr,stell,verv_neut) \nbesloot V(trans,ovt,1_of_2_of_3,ev) \nvordering N(soort,ev,neut) \ndaarom Adv(gew,aanw) \nKlaassenspel N(soort,ev,neut) \nCrazy N(eigen,ev,neut) \ntennisbaan N(soort,ev,neut) \nbespeuren V(trans,inf) \ndaarop Adv(pron,aanw) \ngeschikt Adj(attr,stell,onverv) V(trans,verl_dw,onverv)\nverknocht Adj(attr,stell,onverv) \nrespect N(soort,ev,neut) \ngoedwillende Adj(attr,stell,verv_neut) \nMonroe N(eigen,ev,neut) \nmijn Pron(bez,1,ev,neut,attr) \nJoegoslavie N(eigen,ev,neut) \nturkoois Adj(zelfst,stell,onverv) \ngetransformeerde V(trans,verl_dw,verv_neut) \nzachte Adj(attr,stell,verv_neut) \nuitgebreid V(trans,verl_dw,onverv) \nrecht N(soort,ev,neut) Adj(adv,stell,onverv)\nkopje N(soort,ev,neut) \nbezeten Adj(adv,stell,onverv) V(trans,verl_dw,onverv)\ncentimeters N(soort,mv,neut) \nactrices N(soort,mv,neut) \nhetgeen Pron(betr,neut,zelfst) \nschreien V(trans,ott,1_of_2_of_3,mv) \ngespecialiseerd V(refl,verl_dw,onverv) \nThe N(eigen,ev,neut) N(eigen,mv,neut)\nwenst V(trans,ott,3,ev) V(trans,ott,2,ev)\nsoorten N(soort,mv,neut) \nonzin N(soort,ev,neut) \nwetenschappelijk Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nEva N(eigen,ev,neut) \nroemrucht Adj(attr,stell,onverv) \nnoemden V(trans,ovt,1_of_2_of_3,mv) \nv.Rh. N(eigen,ev,neut) \nmonteren V(trans,inf) \nschoonmaak N(soort,ev,neut) \npedofiel N(soort,ev,neut) \noverigens Adv(gew,geen_func,stell,onverv) \nbelevenissen N(soort,mv,neut) \ndaarentegen Adv(gew,geen_func,stell,onverv) \nstipt Adj(adv,stell,onverv) \ntorsen V(trans,inf) \nwennen V(intrans,inf) \ncopulatie N(soort,ev,neut) \nzilvergrijs Adj(attr,stell,onverv) \nGrootpa N(soort,ev,neut) \nIemand Pron(onbep,neut,zelfst) \nmild Adj(attr,stell,onverv) \nDaarover Adv(pron,aanw) \nbeenspieren N(soort,mv,neut) \ngesteund V(trans,verl_dw,onverv) \nafmaken V(trans,inf) \nmagie N(soort,ev,neut) \nmaatschappijen N(soort,mv,neut) \nmin. N(soort,mv,neut) \nvervolgens Adv(gew,geen_func,stell,onverv) \nYersey N(eigen,ev,neut) \nProdukten N(soort,mv,neut) \nklimrozen N(soort,mv,neut) \nslanke Adj(attr,stell,verv_neut) \ntemidden Adv(gew,geen_func,stell,onverv) \nplaatje N(soort,ev,neut) \nbeslissen V(intrans,inf) V(trans,inf)\nCaraibische Adj(attr,stell,verv_neut) \nTja Int \nverliezen V(trans,inf) V(intrans,inf) V(trans,ott,1_of_2_of_3,mv)\nGreene N(eigen,ev,neut) \nzweer V(trans,ott,1,ev) \nJohnson N(eigen,ev,neut) \nzweet N(soort,ev,neut) \nKatherine N(eigen,ev,neut) \nuitgestorven V(intrans,verl_dw,onverv) \nstreng Adj(attr,stell,onverv) Adj(adv,stell,onverv)\nballetgeschiedenis N(soort,ev,neut) \ndertien- Adj(attr,stell,onverv) \nRatsma N(eigen,ev,neut) \nleeuwendeel N(soort,ev,neut) \nzigeunervrouw N(soort,ev,neut) \nnest N(soort,ev,neut) \nmusicals N(soort,mv,neut) \ndunner Adj(attr,vergr,onverv) \nverbrijzeld V(trans,verl_dw,onverv) \nvleespasteitje N(soort,ev,neut) \nlevensduur N(soort,ev,neut) \nemoties N(soort,mv,neut) \nstijve Adj(attr,stell,verv_neut) \nkerstboom N(soort,ev,neut) \ndreiging N(soort,ev,neut) \nweiden N(soort,mv,neut) \nadverteerders N(soort,mv,neut) \nminirokken N(soort,mv,neut) \nbloemetje N(soort,ev,neut) \naangifte N(soort,ev,neut) \nbenaderbaar Adj(attr,stell,onverv) \nschoonzicht N(soort,ev,neut) \npresidente N(soort,ev,neut) \njaartje N(soort,ev,neut) \nhaast-je-rep-jehuwelijk N(soort,ev,neut) \nDeur N(soort,ev,neut) \nboeiende V(intrans,teg_dw,verv_neut) \nvoorstellingen N(soort,mv,neut) \nratten N(soort,mv,neut) \nEilanden N(eigen,mv,neut) \nherenkleding N(soort,ev,neut) \ngrenzen N(soort,mv,neut) V(intrans,ott,1_of_2_of_3,mv)\neigenheimer N(soort,ev,neut) \ninrichting N(soort,ev,neut) \nduidde V(trans,ovt,1_of_2_of_3,ev) \nSterker Adj(attr,vergr,onverv) \nMisschien Adv(gew,geen_func,stell,onverv) \nLimburg N(eigen,ev,neut) \nJules N(eigen,ev,neut) \nveelsoortige Adj(attr,stell,verv_neut) \ngedaan V(trans,verl_dw,onverv) V(intrans,verl_dw,onverv)\nramadan N(soort,ev,neut) \naarde N(soort,ev,neut) \naanknopen V(trans,inf) \ninzicht N(soort,ev,neut) \nblindedarm N(soort,ev,neut) \nBelgisch Adj(attr,stell,onverv) \nsonde N(soort,ev,neut) \nzusterhuis N(soort,ev,neut) \nbeslaan V(trans,ott,1_of_2_of_3,mv) \ntijden N(soort,mv,neut) \nvoortkomen V(intrans,ott,1_of_2_of_3,mv) \nmoderne Adj(attr,stell,verv_neut) \ntegenstanders N(soort,mv,neut) \nargwanender Adj(attr,vergr,onverv) \nneus N(soort,ev,neut) \nuitgangspunt N(soort,ev,neut) \nbelevings- N(soort,mv,neut) \nCarola N(eigen,ev,neut) \nRotterdam N(eigen,ev,neut) \ngeringer Adj(attr,vergr,onverv) \nHoofd-van-de-Dienst N(soort,ev,neut) \nkamelen N(soort,mv,neut) \nduiden V(trans,inf) V(intrans,ott,1_of_2_of_3,mv)\nprachtige Adj(attr,stell,verv_neut) \nstalde V(trans,ovt,1_of_2_of_3,ev) \nonlangs Adv(gew,geen_func,stell,onverv) \nwaardelozer Adj(attr,vergr,onverv) \nautoriteiten N(soort,mv,neut) \nondergeschikte Adj(attr,stell,verv_neut) \nuitgevallen V(intrans,verl_dw,onverv) \nwerksters N(soort,mv,neut) \nZiet V(trans,ott,2,ev) \npeinzen V(intrans,ott,1_of_2_of_3,mv) \nvrienden N(soort,mv,neut) \nvoornamelijk Adv(gew,geen_func,stell,onverv) \nverpakt V(trans,verl_dw,onverv) \ngeconsumeerd V(trans,verl_dw,onverv) \nsmartlapen N(soort,mv,neut) \ntinteling N(soort,ev,neut) \nakte N(soort,ev,neut) \nbevallen V(intrans,inf) \nbeschrijven V(trans,inf) \nVogelaars N(eigen,ev,neut) \ngespaard V(trans,verl_dw,onverv) \nGuerrero N(eigen,ev,neut) \nkruisbes N(soort,ev,neut) \nbedenken V(trans,inf) V(trans,inf,subst) V(refl,inf)\nHoogendijk N(eigen,ev,neut) \nplus Conj(onder,met_fin) \nnaieve Adj(attr,stell,verv_neut) \ngenoemd V(trans,verl_dw,onverv) \nhoorn N(soort,ev,neut) \nFantastisch Adj(attr,stell,onverv) \nIjssel N(eigen,ev,neut) \nboeken N(soort,mv,neut) V(trans,inf)\nKunnen V(intrans,ott,1_of_2_of_3,mv) V(hulp,ott,1_of_2_of_3,mv)\nhardnekkig Adj(adv,stell,onverv) \nd'Indy N(eigen,ev,neut) \nhoort V(intrans,ott,3,ev) V(trans,ott,2,ev)\ncognac N(soort,ev,neut) \nZoals Conj(onder,met_fin) \nverdiepingen N(soort,mv,neut) \nonverwoestbare Adj(attr,stell,verv_neut) \nburger N(soort,ev,neut) \nmeewerken V(intrans,inf) \nclient N(soort,ev,neut) \nlepel N(soort,ev,neut) \nqua Prep(voor) \nnatuurlijk Adj(adv,stell,onverv) Adj(attr,stell,onverv)\nRomeins Adj(zelfst,stell,onverv) \nanjers N(soort,mv,neut) \naanhoren V(trans,inf) \nTom N(eigen,ev,neut) \ntegenvallen V(intrans,inf) \nTop N(soort,ev,neut) \nHebt V(hulp,ott,2,ev) V(trans,ott,2,ev)\nO'Hara N(eigen,ev,neut) \nsongs N(soort,mv,neut) \nTot Prep(voor) \nbevonden V(refl,verl_dw,onverv) \nscholieren N(eigen,ev,neut) N(soort,mv,neut)\ntoegesnelde V(intrans,verl_dw,verv_neut) \nDoetichem N(eigen,ev,neut) \nhinderlijke Adj(attr,stell,verv_neut) \npoliticus N(soort,ev,neut) \nLaurent N(eigen,ev,neut) \noogmake-up N(soort,ev,neut) \nDeze Pron(aanw,neut,attr) Pron(aanw,neut,zelfst)\nspeelt V(trans,ott,3,ev) V(intrans,ott,3,ev) V(intrans,ott,2,ev)\nduurden V(intrans,ovt,1_of_2_of_3,mv) \nleefde V(intrans,ovt,1_of_2_of_3,ev) \nVaste Adj(attr,stell,verv_neut) \nduurder Adj(attr,vergr,onverv) \ngaten N(soort,mv,neut) \nMoet V(intrans,ott,3,ev) V(hulp,ott,2,ev)\nvoorkomend V(intrans,teg_dw,onverv) \nZaken N(eigen,mv,neut) N(soort,mv,neut)\ngodsdienst N(soort,ev,neut) \nopofferen V(trans,inf) \nzwerfkat N(soort,ev,neut) \nbekvechten V(intrans,inf) \nvoorspellende V(trans,teg_dw,verv_neut) \ngetiteld Adj(attr,stell,onverv) \namper Adv(gew,geen_func,stell,onverv) \nmist N(soort,ev,neut) V(intrans,ott,3,ev)\nred. N(soort,ev,neut) \nDuitsers N(soort,mv,neut) \naansluiting N(soort,ev,neut) \nuitdelen V(trans,inf) \nweemoed N(soort,ev,neut) \nkopse Adj(attr,stell,verv_neut) \nadrenaline-injectie N(soort,ev,neut) \ngerucht N(soort,ev,neut) \nDaarnaast Adv(pron,aanw) \nportier N(soort,ev,neut) \nBorsen N(eigen,ev,neut) \nJacobs N(eigen,ev,neut) \nporties N(soort,mv,neut) \ntijdje N(soort,ev,neut) \nhandschrift N(soort,ev,neut) \nbijspijkeren V(trans,inf) \nvreemdsoortig Adj(attr,stell,onverv) \ngemakzucht N(soort,ev,neut) \nMEISJE N(soort,ev,neut) \ntante N(soort,ev,neut) \nkopend V(trans,teg_dw,onverv) \nmascotte N(soort,ev,neut) \ncoupures N(soort,mv,neut) \nkijkt V(intrans,ott,3,ev) V(intrans,ott,2,ev)\nstimuleren V(trans,inf,subst) \ndicht Adv(gew,geen_func,stell,onverv) Adj(attr,stell,onverv)\nmits Conj(onder,met_fin) \nbeticht V(refl,verl_dw,onverv) \nsmerigheid N(soort,ev,neut) \ngeleden Adv(gew,geen_func,stell,onverv) \nPapa's N(eigen,mv,neut) \nhanteren V(trans,inf) \nvriendin N(soort,ev,neut) \nlandschappen N(soort,mv,neut) \netcetera Adv(gew,geen_func,stell,onverv) \ninfecties N(soort,mv,neut) \n6-jarigen Adj(zelfst,stell,verv_mv) \ngedroeg V(refl,ovt,1_of_2_of_3,ev) \n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/Dutch/brill_Lexicon.json",
    "content": "{\n  \"1\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"2\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"3\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"4\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"5\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"6\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"7\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"8\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"9\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"10\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"11\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"12\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"13\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"14\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"15\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"17\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"18\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"19\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"20\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"21\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"22\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"23\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"24\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"25\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"26\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"27\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"29\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"30\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"31\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"36\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"39\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"40\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"41\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"42\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"45\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"46\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"50\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"51\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"53\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"56\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"57\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"59\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"60\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"65\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"67\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"70\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"72\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"74\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"80\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"81\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"82\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"93\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"95\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"99\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"100\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"104\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"107\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"120\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"121\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"147\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"150\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"180\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"200\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"220\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"226\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"250\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"253\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"280\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"300\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"320\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"325\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"384\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"400\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"444\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"520\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"600\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"700\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"719\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"747\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"800\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1200\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1300\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1700\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1781\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1823\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1824\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1837\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1875\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1896\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1910\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1913\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1929\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1930\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1940\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1942\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1943\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1944\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1945\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1949\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1955\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1957\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1958\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1959\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1960\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1961\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1962\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1963\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1964\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1965\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1967\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1968\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1969\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1970\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"1971\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"1975\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"2200\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"3000\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"3500\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"6000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"7101\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"7102\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"nijptangen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afhankelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Over\": [\n    \"Prep(voor)\"\n  ],\n  \"partisanenster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overtuigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bruine\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"imitatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kreeg\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ongenoegen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Heel\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"precies\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zijn\": [\n    \"Pron(bez,3,ev,neut,attr)\",\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"toegetakeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bestaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"repertoire\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Heer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overtuigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"radio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kreet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Begint\": [\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"plaatse\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"!\": [\n    \"Punc(uitroep)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"Lutherse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"buigzaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"\\\"\": [\n    \"Punc(aanhaal_dubb)\"\n  ],\n  \"%\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tegelse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"&\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"binden\": [\n    \"V(trans,inf)\"\n  ],\n  \"cel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"(\": [\n    \"Punc(haak_open)\"\n  ],\n  \"vakantiebesteding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \")\": [\n    \"Punc(haak_sluit)\"\n  ],\n  \"gieren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"specialist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Woody\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \",\": [\n    \"Punc(komma)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gestreefd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"-\": [\n    \"Punc(ligg_streep)\"\n  ],\n  \".\": [\n    \"Punc(punt)\"\n  ],\n  \"DSRV's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"/\": [\n    \"Punc(schuin_streep)\"\n  ],\n  \"reed\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"uitgescholden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Sibyl\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bestemming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boekje\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tevoren\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"toegelaten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \":\": [\n    \"Punc(dubb_punt)\"\n  ],\n  \";\": [\n    \"Punc(punt_komma)\"\n  ],\n  \"koper-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rapporten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aandoenlijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"?\": [\n    \"Punc(vraag)\"\n  ],\n  \"rees\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"rijbevoegdheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"@\": [\n    \"Misc(symbool)\"\n  ],\n  \"hoeverre\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"Porsche\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"B\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"FRANSE\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"C\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"knotwilgen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"G\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanvoer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"I\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Gewoon\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gestegen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"overgeleverd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gram\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangeven\": [\n    \"V(trans,inf)\"\n  ],\n  \"L\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opbelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verplichte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"O\": [\n    \"Int\"\n  ],\n  \"grap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Q\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Weitz\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gras\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"R\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschijning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"S\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"reactie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"U\": [\n    \"Pron(per,2,ev,nom)\"\n  ],\n  \"geexperimenteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"comfortabel\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"spijsverteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"genoten\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"XIII-stijl\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koffertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"proberen\": [\n    \"V(hulp,inf)\",\n    \"V(trans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"reebout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dichtslibben\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"lossen\": [\n    \"V(trans,inf)\"\n  ],\n  \"a\": [\n    \"Prep(voor)\",\n    \"Misc(vreemd)\"\n  ],\n  \"d\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Paramaribo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"losser\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Gibb\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"deugdelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"g\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"i\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"GAP\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bergland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorkreeg\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"n\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Eltman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"keken\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Frankrijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"u\": [\n    \"Pron(per,2,ev,nom)\"\n  ],\n  \"x\": [\n    \"Punc(maal)\"\n  ],\n  \"bouwen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Beschadigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"fietsers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorbaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sales-manager\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prefereer\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"kruispunten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"accu's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"familieleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"politie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gemengde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"woonruimte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waterpokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gegeven\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"maanlandschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"openbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Maitena\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bloederziekte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ministerssteek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"invloed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jullie\": [\n    \"Pron(per,2,mv,dat_of_acc)\",\n    \"Pron(per,2,mv,nom)\"\n  ],\n  \"Bogarde\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ploegdiscipline\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwarming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"instemming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Poema-schoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"baby's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vastbeslotenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"span\": [\n    \"V(trans,imp)\"\n  ],\n  \"liefdes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgewerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"conferentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concrete\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"naderende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"ruitje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verjaardag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ober\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geboycot\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Eerst\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"rakker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kuyper\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onherkenbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"luisteraar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewerkstelligen\": [\n    \"V(trans,inf)\"\n  ],\n  \"wolf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"samenhang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"taxilichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"betreden\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"wolk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"uitsterven\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"ontkomen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Krekelberg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"royaal\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Giet\": [\n    \"V(trans,imp)\"\n  ],\n  \"trachtend\": [\n    \"V(hulp_of_kopp,teg_dw,onverv)\"\n  ],\n  \"tekende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Onoordeelkundig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Mond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bewoont\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"mededeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"benoemde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bouwstijlen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbaasd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"staarden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"mevrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leesbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zoute\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verweven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Althans\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Twiggy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beatband\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kosteloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kersen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderwijzer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarin\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"tenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dankbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"tekenen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Libelle-bruidspaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"niet-materiele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"mantel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sfeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mooi\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wond\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"doch\": [\n    \"Conj(neven)\"\n  ],\n  \"Bergers\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Street\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overlas\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ontberingssituaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"slingert\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"gietharsversiering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dergelijke\": [\n    \"Pron(aanw,dat,attr)\"\n  ],\n  \"genoodzaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ervaring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Pieterse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"koolbladeren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"waarschijnlijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"juli\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"naliet\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"geeft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"dode\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stichten\": [\n    \"V(trans,inf)\"\n  ],\n  \"medewerker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dergelijks\": [\n    \"Pron(aanw,gen,attr)\"\n  ],\n  \"ziekenfondspakket\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"romantiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kreng\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"chirurgie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermoedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Henk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"minstens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"woon\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"logische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gebied\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongerief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uittorenend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"maagdelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"overtocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"makkelijker\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"uitdrukking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snoepen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"grif\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"klaargezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ruimschoots\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Opnieuw\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"beweegt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"tactische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"VPRO-programma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voort\": [\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"doen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"boezem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"torenflats\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bevrediging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"5,95\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"kralenversiering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"does\": [\n    \"Misc(vreemd)\"\n  ],\n  \"doet\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"naargeestig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"zesjarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"misdaadfilm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omstreeks\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Prep(voor)\"\n  ],\n  \"coc\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ras\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fondue\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"popgroep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"juni\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"driekwartsmaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkoopster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"besteden\": [\n    \"V(trans,inf)\"\n  ],\n  \"samenloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijeen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Woont\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"tweeenvijftigjarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Tenzij\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"trachtten\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"afdeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervolmaken\": [\n    \"V(trans,inf)\"\n  ],\n  \"Claude\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"breiden\": [\n    \"V(trans,inf)\"\n  ],\n  \"verwekken\": [\n    \"V(trans,inf,subst)\",\n    \"V(trans,inf)\"\n  ],\n  \"herinner\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"tvshow\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Balenciaga\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hieraan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"maakte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"intrinsieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"saus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meerderheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kunstkenners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"word\": [\n    \"V(hulp_of_kopp,ott,1,ev)\"\n  ],\n  \"vergeetachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Daarna\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"binnenkomen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"eenling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Grieks\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"ellendig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"moest-ie\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"nerveus\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"krottenwijken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dieper\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"opgebeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"billen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"richt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"merken\": [\n    \"V(trans,inf)\",\n    \"N(soort,mv,neut)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bevalling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overstroomd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afvalstoffen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Trap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afweging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voedseloverschotten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beschrijving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kwaad\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Herr\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Barry\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"NAAM\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kwaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarom\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"diepvriesvak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Middeleeuwen\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"overtuigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Daarop\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Maar\": [\n    \"Conj(neven)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bokkenrijders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Heeft\": [\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"vermoeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"reisleider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diensten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verrijkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Defares\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontoelaatbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"heparine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontzegging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"harteloos\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"derden\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"waaruit\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"dramaturgie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glimmende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"waag\": [\n    \"V(trans,imp)\"\n  ],\n  \"medicijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"anderhalve\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"meegemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"namen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"feestje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zibeline\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hoeksewaard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opvallend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"behulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waar\": [\n    \"Adv(gew,vrag)\",\n    \"Adv(gew,betr)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adv(pron,vrag)\",\n    \"Adv(pron,betr)\"\n  ],\n  \"lichaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezinssamenwerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekraakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"jurk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ging\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"aangebroken\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Zieleman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"maagpijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"graven\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"uitstekend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Negen\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"bejaardenwoningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ijskoude\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"raffinement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezighoudt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"slenterde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"afgekondigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Murton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lachen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"rest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoeveel\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\"\n  ],\n  \"welvaartsblik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spreidt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"grof\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"griezelbeelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eenvoudige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sandwiches\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"enkeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verspeend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gros\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bakkerij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"seksboetieks\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Algerije\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"17-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bevindt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"voorbeelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hopen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"geschilpunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eindigt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Mady\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hotviool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"recensies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stadsvolkje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"intensief\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Danny\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"filmmagnaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blijde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"cum\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dooier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leerden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"royale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"getal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"desodorisanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ussel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toerist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkiezingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"martelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"genadeklap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opperbest\": [\n    \"Adj(attr,overtr,onverv)\"\n  ],\n  \"gezegd\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Rijnterrassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bevrijding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"100.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Bloemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"muzikale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"waard\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"cynisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kunstenaars\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wandeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eierslang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daartussen\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"gillend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"kabbelende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"rij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sprongen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"feestelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"redactie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kabelbaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"komende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"minderheidsgroep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wapping\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"speelruimte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trouwen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bewondering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wapen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"TOEGANG\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schaken\": [\n    \"V(intrans,inf,subst)\",\n    \"V(intrans,inf)\"\n  ],\n  \"berustend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Schrijf\": [\n    \"V(trans,imp)\"\n  ],\n  \"Brockhouse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wayne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geprofileerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"vertrouw\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"Pezzei\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geflankeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"overeenkomst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bespreking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flarden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"verlossen\": [\n    \"V(trans,inf)\"\n  ],\n  \"spot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ceintuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blijft\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"torens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gravin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzorging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"negers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hartpatient\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"touwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dood\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dompel\": [\n    \"V(trans,imp)\"\n  ],\n  \"TROS-uitzending\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Overheersend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"ziener\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verklaren\": [\n    \"V(trans,inf)\"\n  ],\n  \"door\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_inf)\",\n    \"Prep(achter)\",\n    \"Prep(comb)\",\n    \"Adv(deel_adv)\",\n    \"Misc(vreemd)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\"\n  ],\n  \"kwalijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schilders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uiteindelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"woningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bundes-sportheim\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Toornsjtraat\": [\n    \"Misc(vreemd)\"\n  ],\n  \"kalme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"klooster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tophitlijsten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"alle\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Boeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kuiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontvingen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"samenwerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"depressie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"redenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"streven\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,inf,subst)\"\n  ],\n  \"monter\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opgeschoten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"veiligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zeker\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Client\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Main\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"subtiel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"variant\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"honeymooners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Noordzee\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"werkbesparende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"argeloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Sommigen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"oefeningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"intuitie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herboren\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"epater\": [\n    \"Misc(vreemd)\"\n  ],\n  \"bezitsdrang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aandiende\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vooraanstaande\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Sgt.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"demonstratiemiddag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkwijze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Helvoirts\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"hoogte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schenkers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kalverstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Nonnetje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezamenlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"behaard\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gelaten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Groningen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Voordeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vismethode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"business\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dorp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichaamsgewicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mededinging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vriendjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Leen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spitsuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kattevoer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vredig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Rotterdamse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sloten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"makkelijkst\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Jarenlang\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"litteratuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitdrukkingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onafhankelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitlopen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"postbode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanstekelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Darley\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderlinge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Pluizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Uil\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gewonden\": [\n    \"V(trans,verl_dw,verv_mv)\"\n  ],\n  \"Daarbij\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"jeugd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blijkt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"bijten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"rok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"avonds\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"rol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veel\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\",\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\"\n  ],\n  \"Uit\": [\n    \"Prep(voor)\"\n  ],\n  \"technische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rot\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Zethof\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanzoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kabinet-De\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kerkezakje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Buona\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"humbug\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wasbord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alledaagse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"export-managers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"boosdoeners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"O.a.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"critici\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vaker\": [\n    \"Adv(gew,geen_func,vergr,onverv)\"\n  ],\n  \"Buitenspelende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spul\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krap\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"daad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regisseur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoofdbureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verhuurder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minderwaardigheidscomplex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanraking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zover\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"immense\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bewapening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daar\": [\n    \"Adv(gew,aanw)\",\n    \"Adv(pron,aanw)\"\n  ],\n  \"tweeendertighonderd\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"leraar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daas\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"proeft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kwaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevorderd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"vernieuwing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aandrang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"initiatieven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dringend\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"lengten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wassen\": [\n    \"V(trans,inf)\"\n  ],\n  \"klassegewijze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"duurste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"Bestelt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"rijksambtenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boerderij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"evenwicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"turven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"kinderprogramma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Luistert\": [\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"vissersdorpen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"laagconjunctuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lezeressen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"blijmoedige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"marasquin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekoeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"opvalt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"wordende\": [\n    \"V(hulp_of_kopp,teg_dw,verv_neut)\"\n  ],\n  \"opeet\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"TeleVizier\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Middeleeuwse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"diepte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"collier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stein\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"raison\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bierbrouwerij-kapitaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ostenreich\": [\n    \"Misc(vreemd)\"\n  ],\n  \"merkte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"beraamde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tienduizenden\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"want\": [\n    \"Conj(neven)\"\n  ],\n  \"levenloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"filmwereld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Delfosse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jackson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tesamen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gedrang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bleken\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"akkoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tehuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"homofielen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"allergie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"partijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bonte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"eksperimenteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Schiedam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wassenaar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opvang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezighouden\": [\n    \"V(refl,inf)\",\n    \"V(refl,ott,1_of_2_of_3,mv)\"\n  ],\n  \"reisverhalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"fauteuil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Minnaert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tillen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Grieg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Europese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jawoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nicholson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"grootouders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schaamtegevoelens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"publicitair\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kleiblokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"heldere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verbouwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"uitbleef\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vriendschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderling\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kreten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dag-\": [\n    \"N(soort,ev,neut)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"aantallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Willibrords\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"terzijde\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vakje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lacht\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"sophisticated\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"dag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"attenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oscar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dan\": [\n    \"Adv(gew,aanw)\",\n    \"Conj(onder,met_fin)\",\n    \"Conj(neven)\"\n  ],\n  \"Horeca-attractie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanvang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aardappelschepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"trainingspak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beschouwden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"das\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dat\": [\n    \"Conj(onder,met_fin)\",\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(aanw,neut,zelfst)\",\n    \"Adv(gew,vrag)\",\n    \"Pron(aanw,neut,attr)\",\n    \"Conj(neven)\"\n  ],\n  \"rookvlees\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verloofd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"advertenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rug\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lachte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"strategen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hugenoten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderhouden\": [\n    \"V(trans,inf)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Jaarbeurshallen\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"beide\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"kwark\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uithoeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerust\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"moreel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Mars\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Truida\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Mary\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verkenning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verder\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"getekend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zuurstof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toonden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"gebroeders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"incasseren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Goethe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dromend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"toepassen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Super\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verplichtingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vele\": [\n    \"Num(hoofd,onbep,attr,stell,verv_neut)\"\n  ],\n  \"vermijden\": [\n    \"V(trans,inf)\"\n  ],\n  \"tv-assistente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ware\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"V(intrans,conj)\"\n  ],\n  \"gymnasium\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"donkere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aangekondigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Aigues-Mortes\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bekommert\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"Denemarken\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vleugels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"warm\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Lagerhuis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kwast\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleinere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"voeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"verstek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prediken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"keerzijde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concentratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"getroffen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"westkant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"priester\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sterven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"seizoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuldgevoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reiken\": [\n    \"V(trans,inf)\"\n  ],\n  \"ofschoon\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"darmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nieuwjaarsnacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"NATO\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"soldaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"public\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verschrikkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"tussenkomst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verhouding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waardevrije\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"champagneglas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoef\": [\n    \"V(hulp,ott,2,ev)\",\n    \"V(hulp,ott,1,ev)\"\n  ],\n  \"buitenbeks\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"slechter\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"aanrukken\": [\n    \"V(trans,inf)\"\n  ],\n  \"inleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"methode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rituele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mogelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"knalbommen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"800,-\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"oosthoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorzag\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hoes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minuten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"constateerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bekwaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Spaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plaatsen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"beige\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opzetten\": [\n    \"V(trans,inf,subst)\",\n    \"V(trans,inf)\"\n  ],\n  \"Maup\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"moekes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bestond\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"uitspraken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mascotte-bezitter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weerzin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teckeldorp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Petersen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Elfrink\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"del\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"den\": [\n    \"N(eigen,ev,neut)\",\n    \"Art(bep,zijd,dat)\",\n    \"N(eigen,mv,neut)\"\n  ],\n  \"afkeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kerels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eenvoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuurtjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"programma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"der\": [\n    \"Art(bep,zijd_of_mv,gen)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"des\": [\n    \"Adv(gew,aanw)\",\n    \"N(eigen,ev,neut)\",\n    \"Art(bep,zijd_of_onzijd,gen)\"\n  ],\n  \"Kijk\": [\n    \"V(intrans,imp)\",\n    \"Int\"\n  ],\n  \"voorlopers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"heerlijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geloof\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"klemmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Garfunkel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Edwin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"regeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"raadsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tegenspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vivarais\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hekel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"konflikt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vloeiend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"onderscheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzeild\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Gallisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"stamppot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regelmatige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sprookjesogen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"puntschoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lipsticks\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bescherming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"begroeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kleinzieligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eenentwintig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"persoonlijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"b.v.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"waterrijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"slaakte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"afvloeit\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"meest-gevraagd\": [\n    \"Adj(attr,overtr,onverv)\"\n  ],\n  \"ver-\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tribune\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Arme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Apostel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"discussie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tijdperk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzuchtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hoofdzakelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"verandering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afkomstige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bedrijven\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"uitkijktoren\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waargenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"godsdienstig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"getto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spreekkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgewektheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wandelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inspireert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Groningse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afzonderlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"assistente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sportief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pafferige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"damslapers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kinderbijslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"anticoagulantiatabletten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oproepen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Afgejakkerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"VVD\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"energieverslinders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inspecteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"verdelen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"dame\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omgeven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"schrijvers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ineenkrimpen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Anneke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bijgeloof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfbevrediging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werelds\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"Berlin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geknipt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vaccinatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onthaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nemen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gewicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"constateren\": [\n    \"V(trans,inf)\"\n  ],\n  \"vrijmaking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"damp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Uddel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spastische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zachtaardig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vers\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"die\": [\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(aanw,neut,zelfst)\",\n    \"Pron(aanw,neut,attr)\",\n    \"Misc(vreemd)\"\n  ],\n  \"minder\": [\n    \"Num(hoofd,onbep,attr,vergr,onverv)\",\n    \"Num(hoofd,onbep,zelfst,vergr,onverv)\"\n  ],\n  \"dik\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dattie\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"jongetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toespraken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bereikt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"King\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"erelijst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vincent\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wanhopig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"getuigenissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wenkbrauwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plaatsje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dit\": [\n    \"Pron(aanw,neut,attr)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"afscheiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jacqueline\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woonkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoogleraar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nigel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"regeringskliek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oosterbeek\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"visitelijst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levenloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"slotte\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"bevochtiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binnenstad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vuurtorens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Morbihan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"paardemiddel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kindsaf\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"hoezeer\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"verantwoorde\": [\n    \"V(trans,verl_dw,verv_neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"optilt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"zedelijkheidswetgeving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Maybella\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarvan\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"middelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schreef\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"aloude\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitstekende\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"kabinet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verrassing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"begrijpelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nergens\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"opera\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Surinamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"HEL\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vereeuwigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"langzamerhand\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Leve\": [\n    \"V(intrans,conj)\"\n  ],\n  \"alweer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Griffe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"migratie-balans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vernielingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"landschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toekomstig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bestaan\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"N(soort,ev,neut)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"holt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"doornemen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Culturele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rondkijkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"slaagt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bestaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"veranderen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bidt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Echt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"bovenplank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermijdbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"OostDuitsland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Workshop\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oogjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onverbeterlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"taaie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Engelse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"realiseren\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"fungeren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"extra's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dll\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"duizeligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overgeslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"elementen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spitse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zedelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"miljoenenpubliek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geleend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"displaced\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"misdadigers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schijnt\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"rafelig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"glanzend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Trafalgar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hieruit\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"rechtvaardige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Zuidvietnamese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verantwoordelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"volksvergadering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geweldig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Agadir\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kondigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"soort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verweet\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"West-Europa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"showbusinessmakers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"effectieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"apparaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"confrontatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Maastricht\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Martine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"'k\": [\n    \"Pron(per,1,ev,nom)\"\n  ],\n  \"'m\": [\n    \"Pron(per,3,ev,dat_of_acc)\"\n  ],\n  \"garage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"'n\": [\n    \"Art(onbep,zijd_of_onzijd,neut)\"\n  ],\n  \"schone\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"maatschappij-kritisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"resp.\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"'s\": [\n    \"Art(bep,zijd_of_onzijd,gen)\"\n  ],\n  \"etalages\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"'t\": [\n    \"Art(bep,onzijd,neut)\",\n    \"Pron(per,3,ev,nom)\",\n    \"N(eigen,ev,neut)\",\n    \"Pron(per,3,ev,dat_of_acc)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Marseille\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schonk\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"trekpleisters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beleven\": [\n    \"V(trans,inf)\"\n  ],\n  \"wasserij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nodig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kwartier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bloeien\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Marco\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoog\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"industrielen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"betere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"elke\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"bekwaamste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"besteedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"zacht\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schoof\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoop\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"hoor\": [\n    \"Int\",\n    \"V(trans,ott,2,ev)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"soepel\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"geduldig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"pilaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"duurde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"school\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schoon\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"sprong\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"schoot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tendens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doe\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,imp)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"Hildegard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wetgeving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"I'm\": [\n    \"Misc(vreemd)\"\n  ],\n  \"schooltijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sax\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bukena\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dol\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Duys\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schenken\": [\n    \"V(trans,inf)\"\n  ],\n  \"dom\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vrede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heerlijks\": [\n    \"Adj(zelfst,stell,verv_gen)\"\n  ],\n  \"sterilisatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchthaven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbeperkt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"concentratievermogen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fotograaf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleinen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"makkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kleiner\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Christoph\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oorverdovende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spreekvoorbeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"halen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Voetgangers\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"cent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"borgsom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevoogding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rugpatroon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \",,\": [\n    \"Punc(hellip)\"\n  ],\n  \"dr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rationalisatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spiegel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitdrukkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"eethuisjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eigene\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"geleerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"scheidenden\": [\n    \"V(intrans,teg_dw,verv_mv)\"\n  ],\n  \"ijzige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vrees\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"woningwetwoningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"meegenieten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"knechtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebreide\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"teksten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inzat\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"uittrekken\": [\n    \"V(trans,inf)\"\n  ],\n  \"wereldkampioene\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"reizen\": [\n    \"V(intrans,inf,subst)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleden\": [\n    \"V(trans,inf)\"\n  ],\n  \"gevuld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"glycogeen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ommuurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bestelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijl\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Peel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Drugstore\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"studeren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"deelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Pasen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"echtgenoot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Salzburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"passen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"mishandelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"George\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vampiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"waarderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"luisterde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gevluchte\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"verhaaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mesterij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"AVRO\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vroegrijpe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Poswick\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rimboe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leegte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zwitserse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"..\": [\n    \"Punc(hellip)\"\n  ],\n  \"gevraagd\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"kinderlijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Brabant\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vervoerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"schrijft\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"zijplanken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gebruikelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zeef\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Waardenburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geworden\": [\n    \"V(hulp_of_kopp,verl_dw,onverv)\"\n  ],\n  \"10.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"verloofde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afscheidingsprodukt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vanmorgen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"opdrogen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"meervoudige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"chauffeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"seq\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zeep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanschouwelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zeer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"meegebrachte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Heemsteedse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"niet-kunstonderwijsinstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aandoenlijks\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"sex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inzond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"november\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"reclameboodschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"puntige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"luisteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"popgroepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"journalist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wantoestanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"understand\": [\n    \"Misc(vreemd)\"\n  ],\n  \"leerstoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervoeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"armen\": [\n    \"N(soort,mv,neut)\",\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"Maria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Saharadomeinen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"haar\": [\n    \"Pron(bez,3,ev,neut,attr)\",\n    \"Pron(per,3,ev,dat_of_acc)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"archipel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"massa's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"haat\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"schuwen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Avonds\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"henzelf\": [\n    \"Pron(per,3,mv,dat_of_acc)\"\n  ],\n  \"Hugo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"houd\": [\n    \"V(trans,imp)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(refl,ott,2,ev)\"\n  ],\n  \"gemiddelde\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"uitlaat\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"drinkend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"dermate\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"zorgvuldig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vrouwelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maquettes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"berijdbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"folkloristische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gekenmerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Van\": [\n    \"Prep(voor)\",\n    \"N(eigen,mv,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"slaapt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"God\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"HOE\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"gouden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"inzet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wasautomaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleurige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Veertig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"drukbezette\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"instelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zegt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"voorjaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgaan\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"waggelbenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huiseigenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dun\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"opleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reportage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"wielrennen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"dus\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"lachten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verwend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vanillesuiker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"begreep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bink\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pleziertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onooglijke\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"klasse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beesten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"samengesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Huib\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"speurt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"kruid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mortelmans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"orde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"echtgenote\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concentreert\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"Huis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"senator\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Marquet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"veiligheidssluitingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ouderen\": [\n    \"Adj(zelfst,vergr,verv_neut)\"\n  ],\n  \"onderwereld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"EEG-landen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"levendig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"minderwaardig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Nigeria-Nok\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voeden\": [\n    \"V(trans,inf)\"\n  ],\n  \"groei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbevredigde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"herkenbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Vernons\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"showbis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangaat\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Marbert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"groen\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"groep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"parapsychologie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schade\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zomaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"buurt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reeds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"recept\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Christ\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spiegelglas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slapen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"eigenhandig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ruim\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"uitgevoerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"huiden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ijlboden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kortstondige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"niettemin\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"afdelingslijst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hierbij\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"heftig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Columbusstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Sultan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"2e\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"katholiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Scandinavische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"patronaatszaaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"radioprogramma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volkskunst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bestand\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"buitenwereld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aftandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"interne\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verhoging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"speelkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangevraagde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"politieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ski\": [\n    \"V(intrans,ott,1,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ver\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Rabenhauptstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanleg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"3a\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dietrich\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opvattingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dines\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"opening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tussen\": [\n    \"Prep(voor)\"\n  ],\n  \"Hulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voedselbronnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgezonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Patsajew\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"krult\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"zandbak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sla\": [\n    \"V(trans,imp)\"\n  ],\n  \"rukt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"beiden\": [\n    \"Num(hoofd,bep,zelfst,verv_mv)\"\n  ],\n  \"gecoiffeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zelf\": [\n    \"Pron(aanw,neut,attr,w_zelf)\"\n  ],\n  \"Richard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"circulerend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"vergezellen\": [\n    \"V(trans,inf)\"\n  ],\n  \"snelheidsmaniakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbeteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Mascouvin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Tsji\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Erik\": [\n    \"N(eigen,ev,neut)\",\n    \"N(eigen,ev,gen)\"\n  ],\n  \"groenachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nagellak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kitsch\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meubilair\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"niemand\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"hersenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Martel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"betrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Verder\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"likeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beperkten\": [\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"uithoudingsvermogen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Graham\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Doordat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"betaalden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Reynolds\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"functie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stijlopvatting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zelfs\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Bangma\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tientallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gevoeligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Schubert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"advocaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verknoeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"goedgekeurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Chinese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"velletje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"loef\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"loei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teruggegaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"advocaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Nauwelijks\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"konflikten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spiegels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geroepen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vandoor\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"synoniem\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bits\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bijeenzoeken\": [\n    \"V(trans,inf)\"\n  ],\n  \"laatsgenoemde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"blaffen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"noblesse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eindeloos\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"huidje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diefstallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"groeiend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"schrijnende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"eenzaam\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"doorbreken\": [\n    \"V(trans,inf)\"\n  ],\n  \"verbrandt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"verorberen\": [\n    \"V(trans,inf)\"\n  ],\n  \"stilte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"WIE\": [\n    \"Pron(betr,neut,zelfst)\"\n  ],\n  \"seksualiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bulderstem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Werkgroep\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"WIJ\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"gebleven\": [\n    \"V(hulp_of_kopp,verl_dw,onverv)\"\n  ],\n  \"tranen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Allebei\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"som\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cosmeticahuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleuter-diertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Martha\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rechterkant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boekjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lollige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Exacte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stijlcitaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schalks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"armoe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geef\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,imp)\"\n  ],\n  \"zowel\": [\n    \"Conj(neven)\"\n  ],\n  \"bewusteloosheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwensing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gemeenschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geuit\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"termen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hollandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"eigener\": [\n    \"Pron(aanw,gen,attr,w_eigen)\"\n  ],\n  \"orchideeen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geel\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"hiernamaals\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geen\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"gekend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"onderzoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"theologen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"daarvoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"reeks\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"champagne\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marsh\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geschoffeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"32,95\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"daarmee\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Sproei\": [\n    \"V(intrans,imp)\"\n  ],\n  \"opstond\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"herinnerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ventje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"geniaal\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mens-mens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"profiteren\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"praktische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Bomanssaus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oorlog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Martin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"boord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"half\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"onberoerd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Marbella\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezeten\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"sieraden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"leeuwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spraken\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"slootwater\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Peru\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"jachtgeweren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toekwam\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"viooltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbeterd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gromt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gekaapt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"werkelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"droevig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dusdanig\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"hals\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dokken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"geplaatst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sprake\": [\n    \"N(soort,ev,neut)\",\n    \"N(soort,ev,dat)\"\n  ],\n  \"Heuff\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fluisterde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Westduitse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"grond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herinneren\": [\n    \"V(trans,inf)\"\n  ],\n  \"risico\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handwerkje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marty\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geleerde\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"omvang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Volkomen\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voortdurende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Ascott\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwondingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"directeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vreemd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"feitelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"artsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"respectievelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"bevinden\": [\n    \"V(refl,ott,1_of_2_of_3,mv)\"\n  ],\n  \"rondhangende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"fixer-leden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"snelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"toneelspelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Klasen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dienstplichtigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"spiegelzusters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"halve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"klassenmaatschappij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vezel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zogenaamde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vandaag\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"opperstrateeg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groot\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"skiinstructeurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veroordelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"smekend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"vandaan\": [\n    \"Adv(deel_adv)\"\n  ],\n  \"verleenden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"nestelt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"profit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gelucht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vandaar\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"lachende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"onrechte\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"vormen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Coldwater\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sta\": [\n    \"V(intrans,ott,1,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"Minder\": [\n    \"Num(hoofd,onbep,attr,vergr,onverv)\"\n  ],\n  \"cursus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"garnituur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"polyesterhars\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eiland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"theologie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lokt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Annemiek\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gebruik\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"dieet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"merkwaardig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geboren\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schoolmeestersbestaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlopen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"akker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regenbui\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wind-gordels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"image\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"elektrische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"baanbrekend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"leren\": [\n    \"V(trans,inf)\",\n    \"Adj(attr,stell,onverv)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\"\n  ],\n  \"krijgen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Redding\": [\n    \"Misc(vreemd)\"\n  ],\n  \"overgegaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"drinkperiode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"letterlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"barbaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pootjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sneller\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"prettige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Vos\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"gedachte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geliefden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"beschadigingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zenuwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tinten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gerimpelde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"poppen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"klonk\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Naika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beroemde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"parafernalia\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gaven\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"N(soort,mv,neut)\",\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"expert\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerimpelds\": [\n    \"V(trans,verl_dw,verv_gen)\"\n  ],\n  \"volwaardige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"inzake\": [\n    \"Prep(voor)\"\n  ],\n  \"m.a.v.o.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewijs\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"naaide\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Tanger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kevin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fier\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"auteur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keukenmeester\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dertig\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"bestudering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afstaan\": [\n    \"V(trans,inf)\"\n  ],\n  \"Edith\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zenden\": [\n    \"V(intrans,inf,subst)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"kloof\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"gymnastiekoefeningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"long\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zestien\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"verdere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"oorspronkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hard\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ontmoetingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hare\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"opgeklopte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Gabin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ingaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"gespietst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"opstaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"eikehouten\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"naaien\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gangbare\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"harp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderhoudskosten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"korte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ruwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kaarsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Merci\": [\n    \"Int\"\n  ],\n  \"tabak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nigeria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toegepast\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"weerloosheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voetganger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brommer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"A.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"versjacherd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Verstond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"grote\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"loop\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(hulp,ott,1,ev)\"\n  ],\n  \"hervinden\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"klopt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"brengt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"toenemen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf,subst)\"\n  ],\n  \"vreten\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"verkeerd\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"huisgenoten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mallotige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"thuiskomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"graad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlustigen\": [\n    \"V(refl,inf)\"\n  ],\n  \"graaf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stube\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"graag\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gemonteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"enerzijds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"eenjarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verkeert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"inhaalde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"karabijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwaait\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"een\": [\n    \"Art(onbep,zijd_of_onzijd,neut)\",\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"meteen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gieten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"achtjarig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"eer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"B.\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"PISUISSE\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"AR\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doeltreffend\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"zangers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"roodharige\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"eindeloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"barbarij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hate\": [\n    \"Misc(vreemd)\"\n  ],\n  \"kapster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geurt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"stemmen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\"\n  ],\n  \"tehuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opponent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erover\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"toetertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Angeles\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"konkelkritiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glimt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Gelei-achtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Af\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"teruggestuurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Fysiek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"station\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Noortjes\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Al\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"fluutertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huilt\": [\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"standjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"HUBERT\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"probeert\": [\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"teams\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hartstreek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Laotiaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"eindigen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"mede-weten\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tegenstellingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hertogin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"koperplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"antwoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zuiden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nulpunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Had\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"leerlingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eenzame\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Hai\": [\n    \"Int\"\n  ],\n  \"Boyce\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"structuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"helft\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dubbelspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leidende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"blazende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Bratwursten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ventte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"functionerende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Ringo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"codenaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"twaalftal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kordate\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geinteresseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"toilet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondergoed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beneden\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Prep(voor)\"\n  ],\n  \"theepot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fijn\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"boodschappentas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuift\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Nederlander\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"selecteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"misverstanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lamsvlees\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levensjaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondervonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"19-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"serviesgoed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vriendelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bakens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verzekeringsmaatschappij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lippen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Haltes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"DE\": [\n    \"Art(bep,zijd_of_mv,neut)\"\n  ],\n  \"voorjaarskuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"IBM\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"producent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toelaatbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mensenheugenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Co\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"grandioos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"volgen\": [\n    \"V(trans,inf)\"\n  ],\n  \"huisje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingrepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gevangenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fiks\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"buurman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kameroen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woon-ellende\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opgave\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschaft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"bestanddelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tobias\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bustes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prinses\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"draaide\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"regels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geneesmiddelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"regelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"De\": [\n    \"Art(bep,zijd_of_mv,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zoowel\": [\n    \"Conj(neven)\"\n  ],\n  \"honderd\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"incognito\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"weggenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"EN\": [\n    \"Conj(neven)\"\n  ],\n  \"eis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dr\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Bout\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beat-bandjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"behuizing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"j.l.\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"piccolo's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"film\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diens\": [\n    \"Pron(aanw,gen,attr)\"\n  ],\n  \"dient\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"laag\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tsaad\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"trekken\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"valse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"normaal\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"diepvrieskreeftestaarten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ed\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bedoelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kameleonachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nvsh\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"laat\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,imp)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(trans,imp)\",\n    \"V(hulp,imp)\"\n  ],\n  \"vereniging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"supporters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"draaien\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"tuinen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"transseksualisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevoeld\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"academische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"En\": [\n    \"Conj(neven)\"\n  ],\n  \"zelflezen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"G.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Er\": [\n    \"Adv(gew,er)\",\n    \"Adv(pron,er)\"\n  ],\n  \"kantonrechter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vervolgens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"oktober\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitte\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Back\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Chippendale\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tennis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Heb\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"hippies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verschijningsvormen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hee\": [\n    \"Int\"\n  ],\n  \"Piccadilly\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"synthetische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bevroren\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"verliefden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"koelkasten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nagaan\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"diepe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vertonen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"Schaaf\": [\n    \"V(trans,imp)\"\n  ],\n  \"bedoelen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Het\": [\n    \"Pron(onbep,neut,zelfst)\",\n    \"N(eigen,ev,neut)\",\n    \"Art(bep,onzijd,neut)\",\n    \"Pron(per,3,ev,nom)\"\n  ],\n  \"H.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"operaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onevenwichtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kunstenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontzenuwen\": [\n    \"V(trans,inf)\"\n  ],\n  \"poort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Yoko\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gepakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"linksen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"overwaait\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gedrag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Adjudant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Python\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"biezen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vooraanstaand\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Doolaard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"meegenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rampschip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"problematiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangegrepen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"daartussenin\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"psychologische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Ga\": [\n    \"V(hulp,imp)\",\n    \"V(intrans,imp)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"zuigopening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewegen\": [\n    \"V(trans,inf,subst)\",\n    \"V(intrans,inf,subst)\"\n  ],\n  \"elf\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Suriname\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Generaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"producers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"elk\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"enscrenering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beschikking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wetenschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tennisbanen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"midden-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inzonderheid\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"toonaangevende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"armoedige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Go\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"H.B.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gevernist\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"spiraaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kuitert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afgestroopt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geholpen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verleidelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rockerbenden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"helle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onvermijdelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Westerbouwing\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Belgen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wacht\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"Zeeland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Belger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"koetsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Surinaamse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dessinateur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huishoudelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nuchter\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"steenboknaturen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"roklengte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"visvangst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vuil\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ho\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"clandestiene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ongelukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"chaotisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"IV\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vliegtuig\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuilt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"zwaard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kinders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ene\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"eng\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Ching-wang\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gehanteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"licht\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Mao-Chinees\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ik\": [\n    \"Pron(per,1,ev,nom)\"\n  ],\n  \"vermogen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zomaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"In\": [\n    \"Prep(voor)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gazons\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hulpstukjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"VARA\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gedetineerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Is\": [\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"Slapen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"afgeblazen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geinspireerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"volledige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Vermeng\": [\n    \"V(trans,imp)\"\n  ],\n  \"beurszaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"KNMV\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Eugenie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verborgen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"denkwijzen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verloedering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ja\": [\n    \"Int\"\n  ],\n  \"pastoor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pruikenmateriaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hij\": [\n    \"Pron(per,3,ev,nom)\"\n  ],\n  \"zaadje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belonen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Je\": [\n    \"Pron(per,2,ev,nom)\",\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"nuchtere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"begripsvermogen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"relaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Johns\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevriezen\": [\n    \"V(trans,inf)\"\n  ],\n  \"telefoonlijst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"landbevolking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hooibergen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dominee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kapstok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tbc\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"modieus\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gymnastiekonderdeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lage\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aantrekkelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchtvaartmaatschappijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"machtigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"Gezagvoerder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regendruppels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vetstroken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Talloze\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"getuigden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"tbr\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meubelstuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Apple\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bussum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onaantastbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"jezuietenkoppen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Vliet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gevoerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"inactiviteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brandkasten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Natuurlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"M.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bleekheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reinigingsmiddel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"apparaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vult\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"ingang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tussen\": [\n    \"Prep(voor)\"\n  ],\n  \"Belgie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gergweis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bejaarde\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"muurtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"energie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vitus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanvaarding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"La\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Beiden\": [\n    \"Num(hoofd,bep,zelfst,verv_mv)\"\n  ],\n  \"geprobeerd\": [\n    \"V(hulp,verl_dw,onverv)\"\n  ],\n  \"pruimen\": [\n    \"V(trans,inf)\"\n  ],\n  \"vernietigende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Le\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ideaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"douzaine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kunsthandelaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"helpt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"opdracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duren\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"idealen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geniet\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"ongelukkig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gemeente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"swingt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"zingende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Luns\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"langzaam\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ongetwijfeld\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dragen\": [\n    \"V(trans,inf)\"\n  ],\n  \"poes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"puntjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bakje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"studenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pasten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"geantwoord\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kleurvlakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eilandjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"borduurschortje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"economische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bevruchting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bartholomeusnacht\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Duitse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Lloyd\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bepleiten\": [\n    \"V(trans,inf)\"\n  ],\n  \"Ma\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitgegaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"clienten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"country\": [\n    \"Misc(vreemd)\"\n  ],\n  \"taboe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ere\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"velde\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"erg\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"lekkere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bestuursleden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wipte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"aanboden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"werpen\": [\n    \"V(refl,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"blootleggen\": [\n    \"V(trans,inf)\"\n  ],\n  \"loopbaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgedrongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kosak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jongeren\": [\n    \"Adj(zelfst,vergr,verv_neut)\"\n  ],\n  \"veiligheidsredenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"York\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorzitter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"durft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"noemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"lekkers\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marsiaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verbrandingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oplossingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verrukkelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"personal\": [\n    \"Misc(vreemd)\"\n  ],\n  \"ten\": [\n    \"Prep(voor)\"\n  ],\n  \"rechtgebogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"metten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nabloeiertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ter\": [\n    \"Prep(voor)\"\n  ],\n  \"Na\": [\n    \"Prep(voor)\"\n  ],\n  \"opgevouwen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"collega's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opstapt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Tegenover\": [\n    \"Prep(voor)\"\n  ],\n  \"heuvel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verantwoordelijkheidsbesef\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgebouwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vuile\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onttrekken\": [\n    \"V(refl,inf)\"\n  ],\n  \"sober\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kneusjesservice\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"organisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"velen\": [\n    \"Num(hoofd,onbep,zelfst,stell,verv_mv)\"\n  ],\n  \"onderricht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"P.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"secretaris-generaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderrichten\": [\n    \"V(trans,inf)\"\n  ],\n  \"beruchte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nederlaag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nu\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"slakkenfestijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afgesloten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kunstgebit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keek\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"omgaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"keel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezitters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vreemde\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"smullen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"huize\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"springen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"omgaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Theems\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"keer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haarcreme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kees\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Ingeborg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bouwden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Of\": [\n    \"Conj(neven)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"Oh\": [\n    \"N(eigen,ev,neut)\",\n    \"Int\"\n  ],\n  \"schelle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"amandelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geboden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kregen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Om\": [\n    \"Conj(onder,met_inf)\",\n    \"Prep(voor)\"\n  ],\n  \"liggen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"Op\": [\n    \"Prep(voor)\"\n  ],\n  \"vrucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dagen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontbreken\": [\n    \"V(intrans,inf,subst)\",\n    \"V(intrans,inf)\",\n    \"Adj(attr,stell,onverv)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"overbevolking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Os\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevruchte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Vrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overbleven\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"koninklijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Wal\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rijdend\": [\n    \"V(trans,teg_dw,onverv)\"\n  ],\n  \"wijnkelder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"theoloog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toeruikende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"normale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"horen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Was\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Hoe\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"spreken\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"leden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Wat\": [\n    \"Pron(vrag,neut,attr)\",\n    \"Pron(vrag,neut,zelfst)\",\n    \"Pron(betr,neut,zelfst)\"\n  ],\n  \"sjieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"droeg\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"opsporingswerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arrogante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"conversatiezalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hot\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Arpege\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Rinus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarschijnlijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nederlandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"overreden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geval\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"linksom\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stukje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afblijven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"the\": [\n    \"Misc(vreemd)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"marges\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"klank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zusjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zorgelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"prinselijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"besturen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verminkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"tegelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kortgeschoren\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Dalkonschildje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beelden\": [\n    \"V(trans,inf)\"\n  ],\n  \"provincie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"patronen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Freud\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verheugen\": [\n    \"V(refl,inf)\"\n  ],\n  \"vergaderingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"land\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"coupe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Teken\": [\n    \"V(trans,imp)\"\n  ],\n  \"lang\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Sint\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"vriend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"personen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"droge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"specialisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"KNVB\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"slijter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vraag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eigenlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"leeftijdsgrens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waren\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Newsweek\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"middeleeuwen\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"schamel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"feitjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ondergaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Coast\": [\n    \"Misc(vreemd)\"\n  ],\n  \"schamen\": [\n    \"V(refl,inf)\"\n  ],\n  \"bestuderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"stenen\": [\n    \"N(soort,mv,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Eitje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Cremer-achtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"e.v.a.\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"vertrouwde\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kapitein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"noten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geprezen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vervolgde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Officieel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Lange\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"alvorens\": [\n    \"Conj(onder,met_inf)\"\n  ],\n  \"onafhankelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rockers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vuiligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tegenstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glimlachend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Langs\": [\n    \"Prep(voor)\"\n  ],\n  \"beschrijft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kinderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"fragiel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opschik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onverdroten\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Gunnersbury\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wel\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Int\"\n  ],\n  \"openbaart\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"pols\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verfrissend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"driehoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vormen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Wet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ertoe\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"vertrouwen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"gehaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"mineur\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Te\": [\n    \"Prep(voor_inf)\"\n  ],\n  \"rijders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lippenstift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sukarno\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"financieringsprobleem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"magere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zakjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoofdpijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrijmoedig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"almaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geven\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"archeologische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geschakeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gestuurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ellende\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reacties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"weerszijden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bart\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Aziatische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Goudse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"knappe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geleund\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Canadezen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"winkeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ruyterkade\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"VN\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"W.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Weatherby\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vakantie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"parfumerie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kleuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Uw\": [\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"begroeten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Pisai\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vuist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pornograaf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwangere\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"Speenhoff\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontevreden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"beeldje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Uiteraard\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"acteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"WE\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"opgaf\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Hun\": [\n    \"Pron(bez,3,mv,neut,attr)\"\n  ],\n  \"roastbeef\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergelijken\": [\n    \"V(trans,inf)\"\n  ],\n  \"thermosfles\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huwelijksleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snelle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nesten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kroniek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"proefschrift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"menopauze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ojik\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwisseld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bolhamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meisjesachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"liftbel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gluiperigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dergelijke\": [\n    \"Pron(aanw,dat,attr)\"\n  ],\n  \"poot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heel-jonge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ideale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"officials\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mengden\": [\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"vrouwenarts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"We\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"last\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"content\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gaandeweg\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vriest\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"winterse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"foto's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bijvoorbeeld\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"chagrijnig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Rizzio\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wie\": [\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(vrag,neut,attr)\"\n  ],\n  \"inkonsekwent\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"toe\": [\n    \"Prep(comb)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"Wij\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"tof\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"twintigste\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"opgevroren\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"suggesties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Wil\": [\n    \"V(hulp,ott,3,ev)\",\n    \"N(eigen,ev,neut)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"Wim\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"begaafdheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Afwezig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vanzelf\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ton\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"top\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gitaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dochter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onaangenaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kent\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"exclusieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tot\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_fin)\",\n    \"Adv(deel_v)\"\n  ],\n  \"Volvo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Brengt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Ford\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevrijdende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Keizer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geweten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"langzame\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitgebleekt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"don't\": [\n    \"Misc(vreemd)\"\n  ],\n  \"vitaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Callas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vrolijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Welke\": [\n    \"Pron(vrag,neut,zelfst)\"\n  ],\n  \"geweest\": [\n    \"V(hulp_of_kopp,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"herademing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lounge\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewaarborgd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"jonge\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doorliep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"krankzinnig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"drong\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Sydney\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jiffy-7\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoogtepunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beklemtonen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"openhartig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Meisjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vertrek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bazig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hoeden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"volstrekt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"meesterwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"free-lance\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"inwonende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Clos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"daarnet\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"strooie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afgedaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"port\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geventileerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"carnavalskapel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"L'hirondelle\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nummerbordje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"motorfederatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"warme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"droog\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ze\": [\n    \"Pron(per,3,ev_of_mv,nom)\"\n  ],\n  \"posten\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\"\n  ],\n  \"gewoonlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"leefgemeenschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Gedurende\": [\n    \"Prep(voor)\"\n  ],\n  \"aanstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geruchten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afgelopen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"pose\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"droom\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"barbecuehoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Foto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vriendenkring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veertien\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Zo\": [\n    \"Adv(gew,aanw)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"procent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doodslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onblusbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sekse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"transvestisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Yale\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"omdat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"huwelijkse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spannende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kamers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"post\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bepaald\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Pron(onbep,neut,attr)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"glaasjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vrouwenzaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"automobilist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vierde\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"karaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vormden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"IEDEREEN\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"brede\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rauwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"regulator\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"roltrap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bepaalt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Amsterdam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volslanke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"meubel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leerling-verpleegster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omgang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plukte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onmogelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kern\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bergmassief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"breed\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Grimaldi\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ikonen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kennelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"eenieder\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"strookt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"oceaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"paar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"razendsnel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"doorgebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Inderdaad\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Welnu\": [\n    \"Int\"\n  ],\n  \"anti\": [\n    \"Prep(voor)\"\n  ],\n  \"Oorspronkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"zwembassin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marceline\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bewuste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aftakeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mooie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"copulerend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"factor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veelal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"pour\": [\n    \"Misc(vreemd)\"\n  ],\n  \"veroorzaken\": [\n    \"V(trans,inf)\"\n  ],\n  \"voorraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergist\": [\n    \"V(refl,imp)\",\n    \"V(refl,verl_dw,onverv)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"pogingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleinbedrijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moois\": [\n    \"Adj(zelfst,stell,verv_gen)\"\n  ],\n  \"boenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Uitvoerig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"mogelijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"werkers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vragen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"ingenieur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rekent\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"voren\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verdragen\": [\n    \"V(trans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"beloften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitkomen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Aangezien\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"begrepen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"werkten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"meeste\": [\n    \"Num(hoofd,onbep,attr,overtr,verv_neut)\"\n  ],\n  \"francs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bijna\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"koffers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"narcist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schadelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"snelst\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"vergulde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"idioot\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"morgen\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"NCRV\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"besprak\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"stroomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"hoedje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"western\": [\n    \"Misc(vreemd)\"\n  ],\n  \"aansprakelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"douche\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ritme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alleen\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hechtdraden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beurtelings\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"pikante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gegrillde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"oerwoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omslaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"geestdriftig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"beschikt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"onwelzijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nieuwe\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"lopende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"studerend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"keus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afschuw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Club\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nieuws\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"ondergang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vliegtuigen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voeten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herhaalde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hotels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Limmel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kleinvee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Newyorkse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Wien\": [\n    \"Misc(vreemd)\"\n  ],\n  \"omarming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoveel-duizend\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Buffalo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gelegen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Boyfriend\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verkregen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vertoonden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"middeleeuwse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bedreigen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"koste\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"kaarten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"benaderd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"brein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beklom\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"algemeen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prostitutie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goedkopere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"Lehzen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Comedie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bungalowachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"facetten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beleving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kwestie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vloed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"portemonnaie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vorig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vliegtocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"af\": [\n    \"Adv(deel_v)\",\n    \"Prep(comb)\",\n    \"Adv(deel_adv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dametjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bijrolletje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"al\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Pron(onbep,neut,attr)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"breedste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"uurtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vloer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toch\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"tevergeefs\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verlegd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"as\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"at\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"honderden\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"aardiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"getallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"griekse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"allermoeilijkste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"Komkommerkasteeltje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"soloplaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Nooit\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"passend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"verknald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bossen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bedrijfsleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vroegen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"hemel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"borstelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"baseren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Hermien\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vroeger\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"bevestigend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"opgevangen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vermindering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"extract\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zeventig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"zomerbloemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zulk\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"vijfhonderd\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"aanstond\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Giuliano\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"complexen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gestold\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Zodra\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"mooiste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"VVD'er\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Parijs\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"funktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"visites\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prominentenprocessie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Twintig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"touringcar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mejuffrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verafschuwden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"waterstraal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"februari\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rechtsbijstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"televisie-uitzending\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bankschroeven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"cm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Geschikt\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ongehoorzaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dat-ie\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"zelfvertrouwen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duisternis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"armbanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontzaglijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voetbalwedstrijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toen\": [\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(gew,aanw)\"\n  ],\n  \"onaangename\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gehad\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"brandweerman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wissel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huurbescherming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"redeneren\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"karate-demonstratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"intriges\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kesteren\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"planning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fluisterend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"zeventien\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"illegale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"filmen\": [\n    \"V(trans,inf)\"\n  ],\n  \"inspecteert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"de\": [\n    \"Art(bep,zijd_of_mv,neut)\",\n    \"V(intrans,inf)\",\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijv.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"di\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rococo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bruessing\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgeruimd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kleurenprogramma's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"platina\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spanningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afweet\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Nazare\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schortje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"du\": [\n    \"N(eigen,ev,neut)\",\n    \"Misc(vreemd)\"\n  ],\n  \"constateert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Kogelenbergh\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"narrig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Wijn\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"wonderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ener\": [\n    \"Art(onbep,zijd,gen)\"\n  ],\n  \"hoofdrol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hyperradio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jubileum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"margarinefabriek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schillen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Nerich\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"prettig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wortelkluit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedoofd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"uitwerken\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"aanvaard\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duizenden\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"inteelt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"en\": [\n    \"Conj(neven)\",\n    \"N(eigen,ev,neut)\",\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Misc(vreemd)\"\n  ],\n  \"John\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vormt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"grenslandbewoner\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vluchtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"safaribus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorgronden\": [\n    \"V(trans,inf)\"\n  ],\n  \"er\": [\n    \"Adv(gew,er)\",\n    \"Adv(pron,er)\"\n  ],\n  \"es\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"moord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meenden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"fabrikanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ploegend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"liederen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"augustus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"50.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"opkijken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"argumentatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschrompelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"hechtenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pakt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"chignon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sebastian\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spoorverbinding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Garbo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezeurd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"herbergen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Italiaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onsterfelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Georges\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"blikschaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"abonnees\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stewardess\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"typisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"aanwezigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ga\": [\n    \"V(intrans,ott,1,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(hulp,imp)\",\n    \"V(intrans,imp)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"zonsondergang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Baule\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dikwijls\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"partnerruil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rechthoekige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"laten\": [\n    \"V(hulp,inf)\",\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"handelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"naakt\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"later\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"shock\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dibs\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"realiseert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"balde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kervel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dichtbevolkte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoofden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"restaurant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Route\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reuma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"he\": [\n    \"Int\"\n  ],\n  \"Kersten\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"trappen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\"\n  ],\n  \"regentijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overwogen\": [\n    \"V(trans,inf)\"\n  ],\n  \"vierkant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"beeindigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"flo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"route-kaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"enig\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"make-up-artikelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beantwoord\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Slick\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"v.w.o.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stofzuigen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"zonnebad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duivel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ashenbach\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"slacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kommetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kunstmatig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Terminus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wilde\": [\n    \"N(eigen,ev,neut)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"prestatiemoraal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleurentelevisie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuurpapier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opentrekken\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"ie\": [\n    \"Pron(per,3,ev,nom)\"\n  ],\n  \"ingreep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deksel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ii\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ik\": [\n    \"Pron(per,1,ev,nom)\"\n  ],\n  \"im\": [\n    \"Misc(vreemd)\"\n  ],\n  \"in\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\",\n    \"Prep(comb)\",\n    \"Adv(deel_adv)\",\n    \"N(eigen,ev,neut)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"roodbruine\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beroep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"redelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"is\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"it\": [\n    \"Misc(vreemd)\"\n  ],\n  \"trouwdag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Paulus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"iv\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"handeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"baanvak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Teatro\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geplant\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ja\": [\n    \"Int\"\n  ],\n  \"Kiupel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"negenentachtig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Markovic\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"je\": [\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(per,2,ev,dat_of_acc)\",\n    \"Pron(per,2,ev,nom)\",\n    \"Pron(ref,2,ev)\",\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"receptie-ervaringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zuid-Limburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"versterk\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"Noord\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Mrs.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"trotse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tolk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vrijwording\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meisje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"papa\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luider\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"levensechter\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"blokkeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Opheusden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stevige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"overtuiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkondigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Rijndelta\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgepepte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"sextant\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hermine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderbroken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"museum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlept\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"stadswijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"noemende\": [\n    \"V(refl,teg_dw,verv_neut)\"\n  ],\n  \"Weyden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jong\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"leerschool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blanke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ethisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kilogram\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gestaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"km\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"argumenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"for\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Brigitte\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ongetrouwd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"m2\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zuur\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Stieler\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spelend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Doortje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"annuleren\": [\n    \"V(trans,inf)\"\n  ],\n  \"beloofd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aanduiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Elysee-Montmartre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"niet\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"villa\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"interessante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"le\": [\n    \"Misc(vreemd)\"\n  ],\n  \"stallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onverdeeld\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lijken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"beheerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"desniettemin\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"tong\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Focke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"karper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"L.P.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoofdje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Michels\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"organisatieschema\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeventiende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"Roger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oostelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"onafzienbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fatsoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dover\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"park\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vaklui\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijzigingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"me\": [\n    \"Pron(per,1,ev,dat_of_acc)\",\n    \"Pron(ref,1,ev)\"\n  ],\n  \"part\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"politieradio's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"berichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pertinent\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"genodigden\": [\n    \"V(trans,verl_dw,verv_mv)\"\n  ],\n  \"koene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"toon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stonden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"trouwden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"raampje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bladzijde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aansmeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"na\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"hangt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Geuzelambiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"drie\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"landjonker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"past\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"maatschappijkritiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"degene\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"merkwaardigste\": [\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"dochters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"patient\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Brinkers\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"40ste\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"nu\": [\n    \"Adv(gew,aanw)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"zwetende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"mixer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"carriere\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"makeup\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"turfmolm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onvoorbereid\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bezoeken\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"ingewikkeldheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"of\": [\n    \"Conj(neven)\",\n    \"Conj(onder,met_fin)\",\n    \"N(eigen,ev,neut)\",\n    \"Misc(vreemd)\"\n  ],\n  \"pats\": [\n    \"Int\"\n  ],\n  \"oh\": [\n    \"Int\"\n  ],\n  \"shooter\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aardappels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"om\": [\n    \"Conj(onder,met_inf)\",\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\",\n    \"Prep(comb)\",\n    \"Adv(deel_v)\"\n  ],\n  \"bijbehorend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"opgelopen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"op\": [\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"Prep(achter)\",\n    \"Adv(deel_v)\"\n  ],\n  \"volmaakte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"twijfels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"naast\": [\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"gedoopt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"eruit\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"werkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gunt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"ieder\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Verdaasdonk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"burgemeestersketen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overgaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"dansend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"voorstadje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marechal\": [\n    \"Misc(vreemd)\"\n  ],\n  \"stuurkolom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ina\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stinkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Gegeneerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Hoogheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sexblad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewindsman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Okay\": [\n    \"Int\"\n  ],\n  \"Popmuziek\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Tellenbach\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onverklaarbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vertoond\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geslachtsverkeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vleesgeworden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Zwitserland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spelers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verwijdt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"orgasme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arrangementen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verveelde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"paus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ernstig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bijkomstigheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Inn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vuurrood\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Kerkwijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"werkgevers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gejuich\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rafaels\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"bezig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vertoont\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"censuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gereisd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"vlaag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wortelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgeput\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Meiden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bezit\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"misdrijven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voegden\": [\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"doelbewust\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Buurser\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"karakter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prominenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Afrika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hamvraag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beklemde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"vernietigingstuig\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toegeven\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"schaamde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"fun\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dreven\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"datzelfde\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"Willy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"publiekelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"crimineel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"infectie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huwelijksboetiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weet-jenog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"niks\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"koers\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"graniet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ezels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"KAAS\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leeft\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"schande\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"financieel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"toepassingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontwikkelingshulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"invoering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vezels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"impuls\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vleeskleurige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"winterhard\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"imposante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deinzen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"advertentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgebuit\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kweekkarper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"L'Oreal\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dromen\": [\n    \"V(intrans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jouw\": [\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"massale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schuimig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"typeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Schiphol\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ski-ongelukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Paquet-lijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlegenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Interessant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verhinderden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Charlotte\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verouderde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"koest\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"taak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"etherische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"taal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uit\": [\n    \"Prep(voor)\",\n    \"Prep(achter)\",\n    \"Prep(comb)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"toezicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Okee\": [\n    \"Int\"\n  ],\n  \"bijzonderheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"betaling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lekker-losjes\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"getwist\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"u.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jaca\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rechtdoor\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Rekels\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"grappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Trotter\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitstek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitstel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rimpels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jack\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Vergelijking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aantijgingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"belemmering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bekendheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huurhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kortekaas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"touw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Smets\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"foodstamps\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ietwat\": [\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"zelfstandig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geboeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"mooiere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"opsommen\": [\n    \"V(trans,inf)\"\n  ],\n  \"te\": [\n    \"Prep(voor_inf)\",\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"diamant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arbeidsuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hilversum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verouderen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"opgesmukte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Colignystraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"huppelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"beroepsarbeid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"steeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verontrust\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"to\": [\n    \"Misc(vreemd)\"\n  ],\n  \"dansten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"tv\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vorwarts\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dios\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zaten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"scene\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uiting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"langharige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"maken\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(refl,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(refl,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"zangvereniging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vanaf\": [\n    \"Adv(deel_adv)\",\n    \"Prep(voor)\"\n  ],\n  \"oorhangers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ui\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"middengolf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakken\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bezigheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"koksvirtuositeit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"consultatiebureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Paume\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"litteken\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tekenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"produkten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uw\": [\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"witgoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"suite\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strijk\": [\n    \"V(trans,imp)\"\n  ],\n  \"koperen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"forceren\": [\n    \"V(trans,inf)\"\n  ],\n  \"peinture\": [\n    \"Misc(vreemd)\"\n  ],\n  \"...\": [\n    \"Punc(hellip)\"\n  ],\n  \"sokjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorzitster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groots\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"trainer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onuitputtelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Morgen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ingegoten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kostten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"elders\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"drs.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geboekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"palet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zorgelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"aaneenvlocht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Alleen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Tholen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gastvrouw-van-formaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"remmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kindertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"menukaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"valide\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Zillertal\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"we\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"Nieuwe\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"keuken\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"paarden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verschijnselen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ex-kamerlid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dirk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgedaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gezagsverhoudingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Voeten\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"enz.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Italie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"houtskool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderbuik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ettelijke\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"goeien\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"worteltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"scheiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koortsachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"samen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"regio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"typiste\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"establishment\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"misschien\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gestudeerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"geinspireerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"intimiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"guitaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"siervogels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"benedendek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschat\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"pissen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Chaplin-imitatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moordenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"roomskatholiek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ijtunnel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"atoomduikboten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aankleden\": [\n    \"V(refl,inf)\"\n  ],\n  \"beschikbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"pakhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overladen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"panters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gekleed\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"opwekken\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"efficient\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"treurig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pin-upgirls\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"andermaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verkouden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"herleidt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"verlichte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verschrikkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Z'n\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"onderdrukken\": [\n    \"V(trans,inf)\"\n  ],\n  \"huiselijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geldboete\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichamelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"PvdA\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"financiele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"abortus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Platanov\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doperwtjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verschrikkelijks\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"geschiedenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buien\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"behangen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"lanceren\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"omgespoelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"vervelends\": [\n    \"V(intrans,teg_dw,verv_gen)\"\n  ],\n  \"produktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Noel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lichtgolven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"commissaris\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opruiend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"stollen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"humeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tonijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bingen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"alsmede\": [\n    \"Conj(neven)\"\n  ],\n  \"crisisjaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tuna\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geloofden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"slaaptabletten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bibberstem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stappers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"borduurde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"momenteel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ze\": [\n    \"Pron(per,3,ev_of_mv,nom)\",\n    \"Pron(per,3,ev_of_mv,dat_of_acc)\"\n  ],\n  \"stadscentrum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"drug\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maanwagentje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Aioli\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wanneer\": [\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,betr)\"\n  ],\n  \"druk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"sjaaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"penibel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zo\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"uitgesproken\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"correcte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gefokte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"supervis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"denkend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"overhandigde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Fetter\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"troonopvolger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hierheden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geweld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beantwoordde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"voetafdrukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Susan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Variaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Velocipede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"directe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"publiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ruggespraak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gesteldheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veilig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"onderscheiden\": [\n    \"V(trans,inf)\"\n  ],\n  \"manier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"achterstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tijdschriftjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"totaal\": [\n    \"Adj(adv,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Siciliens\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beheerst\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"shows\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"paardje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overhandigen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"liepen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"overgang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"langzamer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"beantwoorden\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"trompetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"2-persoonskamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fascineerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Amersfoort\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oprijst\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Kathie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wanda\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kamertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doceren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"intieme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Armoede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewend\": [\n    \"Adj(attr,stell,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beugels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"daarnaast\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Keith\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"domme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"prikkelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"staart\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"verzorgingstehuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nixon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"adoptie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertraagd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"martelkamertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderhuids\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"toevloed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondergrond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schrap\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rock-repertoire\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afstammeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verloren\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Protestantse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dramaturg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gaf\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verlamming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leert\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"Universiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kapitalisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waarde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vierhonderd\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"gal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marijke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"principes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beroepsmisdadigers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"effekens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dacht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ondervoeding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jane\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"peuter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vughtse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tijdsbestek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"roman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"financiering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erger\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"weinigen\": [\n    \"Num(hoofd,onbep,zelfst,stell,verv_mv)\"\n  ],\n  \"uur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grof-erotische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bestuurster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sociale\": [\n    \"N(soort,mv,neut)\",\n    \"N(eigen,mv,neut)\"\n  ],\n  \"verwijst\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"leest\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"karaktertrek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overkomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"cijfers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kabelexploitanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beverig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gebruikelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kritisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"handelen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"menhirliefhebbers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangedurfd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Machine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beleg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ijverig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"slecht\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"boeiend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"ontluisteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"beslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plaats\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"oplossen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"verkrijgen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Superstar\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geillustreerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"contouren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"versnellen\": [\n    \"V(trans,inf)\"\n  ],\n  \"geklemd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nuances\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dachten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Zo'n\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"sloeg\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"olympische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"glimmend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Lesbisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verdachtmakingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afgevaardigden\": [\n    \"V(trans,verl_dw,verv_mv)\"\n  ],\n  \"pil-hetze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bontjas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stropop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opbouwen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"effectief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Prof.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Chablis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vleugel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rijbewijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lipstick\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kuil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorgelicht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"inschikkelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rijmpje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Beaujolais\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Blijf\": [\n    \"V(hulp_of_kopp,imp)\"\n  ],\n  \"v.d.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stoffen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"levende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"gemiddeld\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Hier\": [\n    \"Adv(gew,aanw)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"afgeslepen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Polak\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"levends\": [\n    \"V(intrans,teg_dw,verv_gen)\"\n  ],\n  \"nauwlettend\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gek\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"captain\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oorlogsmake-up\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stapje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"16de-eeuwse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Casady\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Eigen\": [\n    \"Pron(aanw,neut,attr,w_eigen)\"\n  ],\n  \"beschouwen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"gewest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groepjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huishoudelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Genderen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"legervoedsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"apensoort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geproduceerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"machtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"minuut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wanja\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verzuurde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"riep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"dramatische\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(adv,stell,verv_neut)\"\n  ],\n  \"redden\": [\n    \"V(trans,inf)\"\n  ],\n  \"vromen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"uitviel\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Meisje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdriet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verloofden\": [\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verkiezingsprogramma's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"seks\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbenullig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"consequenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nogal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Goderie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ferme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verheugt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"opvoering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Museum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oplossing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waarin\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"potentiemoeilijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voelsprieten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"noordelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fietskogeltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lichtbruine\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afgestemd\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bewustzijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tuinanjers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jac\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ongewenste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weggepest\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"patroon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overgave\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haalbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Jan\": [\n    \"N(eigen,ev,neut)\",\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"innen\": [\n    \"V(trans,inf)\"\n  ],\n  \"paprika\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgedane\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Japanners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tremens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vereiste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kantoorbaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levensgrote\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"werkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Beurs\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"mistige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fundamentele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"catalogi\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wisten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"koolhydraten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vreselijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"allerminst\": [\n    \"Num(hoofd,onbep,zelfst,overtr,onverv)\"\n  ],\n  \"Delons\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"lichtgevend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"theorieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vereisten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"nachthemel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opneemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"beursgebouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tablet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Niarchos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Californie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"blad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"jaloers\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hoeft\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Eight\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bokserssyndicaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Haiti\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schrik\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Franse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schril\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gruwelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Luxemburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dekens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tasten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"kosmonauten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"echtparen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vleugje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Meeuw\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"borstel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veertigste\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"Nord\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bijkomstige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nabij\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Prep(voor)\"\n  ],\n  \"Bolhuis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorgoed\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dierenbos\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knipoogjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stak\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"stal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Schaamblos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meesterwerken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"krijg\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"realiseerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"dientengevolge\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"totale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ingesteld\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"stap\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"kennissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kunt\": [\n    \"V(hulp,ott,2,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"groente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Brown\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pagina\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwakbegaafde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gestrekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"tv-beelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"medisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ingenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Byrds\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"magnetisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kweekproeven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"anticonceptiva\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wettelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Cooper\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"parken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"laude\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"betrekking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaadjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"achterover\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wijnproduktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Klop\": [\n    \"V(trans,imp)\"\n  ],\n  \"ingestemd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"inbegrepen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"dirigent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"overeind\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"voorbijgangers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rijp\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geschikte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"waarna\": [\n    \"Adv(pron,vrag)\",\n    \"Adv(pron,betr)\"\n  ],\n  \"kapitalistenvreter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voedings-maatregelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"behaaglijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vernederd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"soepelheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Meestal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"aandoen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"030-25708\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Reimut\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ervan\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"Jeu\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hoensbroek\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bedraagt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Ahead\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"betekent\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"reprodukties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"versnelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"munitie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekoesterde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"vernedert\": [\n    \"V(refl,ott,2,ev)\"\n  ],\n  \"beslis\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"eerstvolgende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Tenslotte\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vertrekken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"doodskopbrilletje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ferry\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onverwacht\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"thuis\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"citroenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bronzen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"cruise\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"streken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toneelstuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Naar\": [\n    \"Prep(voor)\"\n  ],\n  \"bevond\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"liefs\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"rozenkranstangetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdraaien\": [\n    \"V(trans,inf)\"\n  ],\n  \"mismaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Overlegorgaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waarom\": [\n    \"Adv(gew,betr)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"degelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"waarop\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"vertegenwoordigers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"chauffeurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verwekte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"schelmenstreek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kerstballen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dierenpark\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rubriek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbereikbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"prietpraat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Berengaria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sjalotten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoogteverschil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waargebeurd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"daaraan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Gasthof\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"taxi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Johnny\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zegt-ie\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"avonturen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schilderijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veelvoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opdiepen\": [\n    \"V(trans,inf)\"\n  ],\n  \"hiervoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"wendde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"flesjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stel\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"termijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Herengracht\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mijne\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"verdraagbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erbarmelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"artistiek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"10,25\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"alleenstaanden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"bovenstaande\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aantekenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Iets\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"sloop\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"balanceerde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"afwijkingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ingerichte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"veeteelt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binnenlanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sloot\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoethout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beminnen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"Calcutta\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"werkenden\": [\n    \"V(intrans,teg_dw,verv_mv)\"\n  ],\n  \"bewonderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"centrum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"emaille\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schimmige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schichtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"flirten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"kust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wenden\": [\n    \"V(refl,ott,1_of_2_of_3,mv)\",\n    \"V(refl,inf)\"\n  ],\n  \"Urdu\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarover\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"schrok\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"aanraken\": [\n    \"V(trans,inf)\"\n  ],\n  \"maatregelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"serieuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kindersprookjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"van\": [\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\",\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,gen)\",\n    \"Conj(onder,met_inf)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vrolijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aannaaien\": [\n    \"V(trans,inf)\"\n  ],\n  \"Jij\": [\n    \"Pron(per,2,ev,nom)\"\n  ],\n  \"vat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Improvisatie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sets\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jim\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geschut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanhangers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbitterd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"recenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begeleider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelden\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"stapte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kijkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"ouden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"Zwanenburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verschuilt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"bedingen\": [\n    \"V(trans,inf)\"\n  ],\n  \"ouder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"wegvallen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"halsringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verzorgd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"tekstdichter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huisbel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strafgevangenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prefereert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Middellandse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Lodewijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijnsnobs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"langspeelplaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"scheidde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Bruinvis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bardeerspek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blij\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"blik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Robs\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Truus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ooievaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertoning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdieping\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dorpen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gepeupel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Israel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"abdis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"40-45\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"....\": [\n    \"Punc(hellip)\"\n  ],\n  \"vakschool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"politici\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rock\": [\n    \"Misc(vreemd)\"\n  ],\n  \"leeszaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stil\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gebruikt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"vlucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gespeeld\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"bruid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongemerkt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"afloopt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"aard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grammofoonplaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"curacao\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bruin\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"Begin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"muziek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorgaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Ijmuiden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hierom\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"huiskamerraam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"enorme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"oordeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"terechtkomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"KLM\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"maaltijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rode\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kennedy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sprakeloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"onschuld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Waarschijnlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"veertigjarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"klinkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"trouwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Nieuwenhuizens\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"overleden\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Sommige\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Tijdens\": [\n    \"Prep(voor)\"\n  ],\n  \"afleveren\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"apen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verrotte\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"conditie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"avond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sassari\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"raamkozijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"waarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Huizing\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kleurengamma's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ver\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"augurken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vet\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"slaaf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergelijkbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"slaan\": [\n    \"V(trans,inf)\"\n  ],\n  \"sexy\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"VRIJ\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"slaap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spoelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"slaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bezittende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"literair\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"politiek\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Tielse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Roer\": [\n    \"V(trans,imp)\",\n    \"V(intrans,imp)\"\n  ],\n  \"schenkt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"slotzusters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"weggevallen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"carre\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ja-woord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"patio-woning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vijfentwintig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"President\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inzichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"volledig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"handschoenenkastje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezien\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"Prep(voor)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"aversie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedoeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichtelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"bijdrage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grootpa\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grondploeg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervolgd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verfrissen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Balmain\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kasteel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mokers\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"waadde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"leiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meebrengt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kilometer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afspraak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hotel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Joe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vervolgt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Jesus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"besproken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geschoren\": [\n    \"V(refl,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vervuiling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sabbat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"merkwaardige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"koude\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kostbaar\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"onbeschaamd\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"snelheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezagvoerder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Haitianen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sfinx\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gun\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"voegde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Jos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zachter\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"eerder\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Koperplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geruststellende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"T.H.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitschelden\": [\n    \"V(trans,inf)\"\n  ],\n  \"fluit\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"bloed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"unieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dorpje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bloei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Meer\": [\n    \"Num(hoofd,onbep,zelfst,vergr,onverv)\"\n  ],\n  \"bloem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stralen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"gegevens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"commando\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rassendiscriminatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blussen\": [\n    \"V(trans,inf)\"\n  ],\n  \"opgewonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sprookjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opdrachtgever\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oude\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"peuterde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"serene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Bram\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"strijken\": [\n    \"V(trans,inf)\"\n  ],\n  \"pieptonen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"paleis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gitaar-spelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"via\": [\n    \"Prep(voor)\"\n  ],\n  \"uitbreiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"platbodems\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voegen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Flinkie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"viezigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Thomas\": [\n    \"N(eigen,ev,gen)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Comite\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bulten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"week\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Veilig\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sterker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Barbara\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weer\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"wees\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"knoflookbol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weet\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"spoort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"poging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onduidelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gebouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"broeiende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Braber\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"jongen\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"water\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stom\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"grootse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ZDF\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"jonger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"stop\": [\n    \"V(intrans,imp)\"\n  ],\n  \"Mokum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"instant-ster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fluks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"krankzinnige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"poogden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"aangrijpende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Heils\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verbeelden\": [\n    \"V(trans,inf)\"\n  ],\n  \"fluweel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertelt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Oldenburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wenen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Olympisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"afgeschrikt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"jammeren\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"grootte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zulke\": [\n    \"Pron(aanw,dat,attr)\"\n  ],\n  \"gerepareerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"liter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krullend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"buspassagier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"simpel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vochtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"malen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verslijten\": [\n    \"V(trans,inf)\"\n  ],\n  \"slapeloosheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Egberts\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onvruchtbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgebreide\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Vereniging\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"jarenlang\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"overzicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inwoners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dackelmutti\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgetrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geheel\": [\n    \"Adj(adv,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"ambtenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"randen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Madrid\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nijdig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"formaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jenny's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"oppositie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hopelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"minister\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vietnam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoofdschuddend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"vlo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitzendt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"poesjenellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"roadmanagers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bretagnes\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"verwarring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Roll\": [\n    \"Misc(vreemd)\"\n  ],\n  \"1959-1970\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"gekonstateerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sterkste\": [\n    \"Adj(adv,vergr,verv_neut)\"\n  ],\n  \"willekeurig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"skilassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oksels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"maagklachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opgesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"fraaie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ontving\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"roereieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bestuursniveau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vougeot\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"skilopen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regisseursechtpaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trouwens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"petjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pyama's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rechts\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"allemaal\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Bijzonder\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Jus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"harkerig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"elegant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kapot\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"armste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"luiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"terug\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"lieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitpluizen\": [\n    \"V(trans,inf)\"\n  ],\n  \"binnenlandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"safari\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fietsjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Welkom\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wegging\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Indiaan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"banken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voelt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(refl,ott,2,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"sacramentele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wonderwel\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kopjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Wilhelm\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gebaard\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verveloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"talrijke\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"wensen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"schotel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"KVP\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doorgaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"zwak\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"buitenlander\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"restaurants\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gescheiden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vol\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"handgranaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"viel\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tactiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klusje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"von\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sigaretten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"redenering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vier\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Faubourg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bigamie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoefde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ontdekt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Rood\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"firma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geheim\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitziet\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"meeslepen\": [\n    \"V(trans,inf)\"\n  ],\n  \"haarspoeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Paasschen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Sluiter\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zwarte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Minh-route\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stuk\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"tweeendertig\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"gerangeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bordeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewijsmateriaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zette\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"terrein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschranst\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"relatievormen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"provinciaal\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"parlementariers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"teleurgesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kritieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vogeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevalt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"zieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wapens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"randje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huishoudrekening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"modder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"letters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bestreden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"feiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"marine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Brit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Meng\": [\n    \"V(trans,imp)\"\n  ],\n  \"verband\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toppers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verlangd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rotjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bijbelgenootschap\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lynchmentaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blond\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"z.g.\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wroeten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vermoeidheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevorkte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gezonde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lagen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verbanningsoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hulde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"coureurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gestalte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lager\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"verlangt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kunsthistorici\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"citroenbrandewijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Louis\": [\n    \"N(eigen,ev,neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geinteresseerden\": [\n    \"V(trans,verl_dw,verv_mv)\"\n  ],\n  \"passeert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"nuchterheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"frustreren\": [\n    \"V(trans,inf)\"\n  ],\n  \"gehele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"straatzanger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"urgente\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Kenners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"slang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"borst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glijden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"slank\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"voldoening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teevee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afgrondelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"musical\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bloot\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kuller\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dobrowolski\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fietsen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"opvoeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"afhankelijker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"scheidsrechters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jerseys\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Beatrix\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"corruptie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fauteuiltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"slinger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"MIJN\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"machten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Huwelijken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dorfmeister\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bureaucratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedevaartsoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezetten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Cummins\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wild-Westtaferelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"secretaresse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schrijven\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,inf,subst)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gravida\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"breedstralers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"petekind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schrijver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijzen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"deed\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vijf\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Derde\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"publiciteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geaccentueerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wijzer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"opbrengen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"heerlijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hindernissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prutsertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijvoorbeeld\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"voert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Temps\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"meegebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Totale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"had\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"uitzijn\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Floris\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verbeten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hak\": [\n    \"V(trans,imp)\"\n  ],\n  \"Andrea\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Agua\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geleidelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ham\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tederheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Egypte\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"thuiskom\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"halsslagader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onteigend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Mansfield\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kindertehuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kerkgebouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"functioneren\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"eierdooier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Andrew\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weegt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"bracht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"durende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"baarmoeder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"modieuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bedoeninkje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewoond\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"werd\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"geprikt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"muurvast\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"huisvrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fles\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gietvormpjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"werk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gruwel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gruwen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vilt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Manmoedig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Corry\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oever\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meedeelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"wortels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"expansie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"openluchttafrelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geprofiteerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"althans\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"paarse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Chinezen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vertegenwoordiger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lino\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bruiden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"blote\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"couturier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Waarom\": [\n    \"Adv(gew,betr)\",\n    \"Adv(gew,vrag)\"\n  ],\n  \"nationale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voelbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"spoor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spoot\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verwelkt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"beroemdheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verheven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"oppervlakte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fietsje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebeeldhouwde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"luisterende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"opzichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voordelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Vensters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"robijnen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wisselvalligheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bodem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ronde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sublieme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vind\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"werden\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"heb\": [\n    \"V(hulp,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"plezierige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geharkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beknopt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verpleegster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versierd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"cremes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hem\": [\n    \"Pron(per,3,ev,dat_of_acc)\"\n  ],\n  \"hen\": [\n    \"Pron(per,3,mv,dat_of_acc)\"\n  ],\n  \"gevestigd\": [\n    \"V(refl,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"her\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"verliefdheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"muilezel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"het\": [\n    \"Art(bep,onzijd,neut)\",\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(per,3,ev,dat_of_acc)\",\n    \"Pron(per,3,ev,nom)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"versiert\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"homofiel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opvoeders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kwalificatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ransel\": [\n    \"V(trans,imp)\"\n  ],\n  \"zaterdagmorgen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wierden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Schrok\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Tenminste\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kenmerkend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"opnieuw\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"heilig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"opgelost\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"feestvieren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"belasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Blijkbaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verscheidene\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"vertaler\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aflopen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"verdwijnende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"weigert\": [\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"interpretaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plezier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strikje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"niet-geente\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"agressief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Nagellak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grijze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"duinrand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sport\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"negatief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Robert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kan\": [\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"leuke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"discussieert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bamboes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inneemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"uitgemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"keper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dele\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"theater\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pizza\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"standpunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"amerikaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"doorgeslagen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"begrijpen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"onverhulder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"starten\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"inwijding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groenteboer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorgang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ouwe\": [\n    \"Adj(zelfst,stell,verv_neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"analyse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inzittenden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"wilden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"behandelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"getrouw\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"omdoen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Armstrong-achtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijvalskreet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vindt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"zijner\": [\n    \"Pron(bez,3,ev,gen,attr)\"\n  ],\n  \"Ingram\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Vlucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gepasseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"oorlogslittekens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"buitenlandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Florence\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drieduizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"redderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"zwangerschapsonderbreking\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hij\": [\n    \"Pron(per,3,ev,nom)\"\n  ],\n  \"vasthouden\": [\n    \"V(trans,inf,subst)\",\n    \"V(trans,inf)\"\n  ],\n  \"geindoctrineerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Voeg\": [\n    \"V(trans,imp)\"\n  ],\n  \"Muziek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kostuum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oranjeklanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geacht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beweging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haalt\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"gesprek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewerken\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"beschermde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"denk\": [\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,imp)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"tuintjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kookboek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dreigt\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"ogen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Virginia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verstandig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"winkel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Allah's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"notehouten\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"jongste\": [\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"besparen\": [\n    \"V(trans,inf)\"\n  ],\n  \"hamers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"krioelende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"raadgevingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sierde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"schitterden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"uitgedoofde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"mayonaise\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trombose\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarvoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"ontmoet\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"sterkere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"beschermen\": [\n    \"V(trans,inf)\"\n  ],\n  \"bloedverlies\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ken\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beschermer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zagen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"militante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deinen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"situatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"h.a.v.o.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gezien\": [\n    \"Prep(voor)\"\n  ],\n  \"werknemer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hoorn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"reclame\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hengeveld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kwartet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gipsafgietsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schrift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uurwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijkagent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"armere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"nieuws-rubriek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dept\": [\n    \"Misc(vreemd)\"\n  ],\n  \"capabel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"voorliefde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"routine-operaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gevaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kantongerecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toeristenbelasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"parfumnaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Indiase\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bevorderend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"bondgenoten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"radio-actieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"samenleving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deurhoogte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"serverende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"laatst\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"banen\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"gewassen\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"tiende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"clubs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zappa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ballade\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ordentelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weten\": [\n    \"V(trans,inf)\",\n    \"V(hulp,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"enkele\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"outsiders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"enige\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Pron(onbep,neut,attr)\",\n    \"Adj(zelfst,stell,verv_neut)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"kinderliteratuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Piaf\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lieflijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waardeloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zwangerschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zinloosheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zusters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pijlsnelle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Kettingroker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"professionals\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ladies\": [\n    \"Misc(vreemd)\"\n  ],\n  \"bedrogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bloemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kijkt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Onmogelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"uitsteken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Huisvrouw-Thuisvrouw\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dierenarts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"shorts\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kaarslicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezorgde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"brandkastkraken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoorden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"lichaamsbeweging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"war\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brandkastkraker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"naaimachine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoe\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"modesnufje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"was\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wat\": [\n    \"Pron(vrag,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"haard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebleken\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(hulp_of_kopp,verl_dw,onverv)\"\n  ],\n  \"overschakelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"hartslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"M'n\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"voetbalgebeuren\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grondbarriere\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rembrandtplein\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"evangelisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"besteed\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Saljoet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"scheidende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"abortussen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schrijf\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"evenzeer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"hou\": [\n    \"V(intrans,imp)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"stimulerende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"perron\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zinloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Acapulco\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Radio\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"overbrengen\": [\n    \"V(trans,inf)\"\n  ],\n  \"rondom\": [\n    \"Prep(voor)\"\n  ],\n  \"schrijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorsnee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kabinet-Cals\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hongersnood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onheil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"administratrice\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stimulerends\": [\n    \"V(intrans,teg_dw,verv_gen)\"\n  ],\n  \"Fred\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitblijven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bezorgen\": [\n    \"V(trans,inf)\"\n  ],\n  \"maharadja's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kwartje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Alcohol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kroost\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bovendrijven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"eentje\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"eerste\": [\n    \"Num(rang,bep,attr,onverv)\",\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"haast\": [\n    \"N(soort,ev,neut)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"wetenschappelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zich\": [\n    \"Pron(ref,3,ev_of_mv)\"\n  ],\n  \"ontvreemd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"stoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schrikt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Willeke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fonteinen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gelegd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kledingstukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ribbelvormige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"magische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onberedeneerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deux\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwijderen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"vernauwen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"blank\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"aanneemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"essayiste\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rollen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\"\n  ],\n  \"hartkamers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgedrukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"plots\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"maatschappij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gehaktbal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teruggaaf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"silhouetten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"circa\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"allesbehalve\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bewoners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"besmettelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"roemruchte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Piet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"cijfer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"negentiende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"maandenlang\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schaamt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"kotjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"socio-economische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wijnhuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beschuldiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Leuvense\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kristal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klussen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onhandigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Fransen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"inwonen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"ex-president\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebouwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"toevoegt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"geroutineerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wee\": [\n    \"Int\"\n  ],\n  \"maangodin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weg\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"immers\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wel\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ziel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koeien\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zien\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf,subst)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"zeilen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"zoiets\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"schoonvader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opvoeden\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"verlenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Delftse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziet\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,imp)\"\n  ],\n  \"mogelijkerwijs\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Tanya\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weiland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vakantie(tje)\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijnkoperijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mocht\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Mama's\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Suffend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"afwachten\": [\n    \"V(trans,inf)\"\n  ],\n  \"enveloppe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Voor\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"legde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Kantner\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"begaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Haarlem-station\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdwijning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelooft\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"prulletjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vereenzamen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"houdt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"hofhouding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Scheherazade\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"besluit\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"actieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gebogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Tevergeefs\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"exemplaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Aanvankelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"belangen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spectaculair\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hapje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lijdzaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlengd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gekoppeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"daarbij\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"halverwege\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"onverteerbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"begroting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Twee\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"leger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zalige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aanpak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verpakkingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hebt\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"keukens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kom\": [\n    \"V(intrans,imp)\"\n  ],\n  \"onlesbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"representatieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hun\": [\n    \"Pron(bez,3,mv,neut,attr)\",\n    \"Pron(per,3,ev,nom)\",\n    \"Pron(per,3,mv,dat_of_acc)\"\n  ],\n  \"vrije\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"storten\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"moed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dichtgeplakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"prik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"achter\": [\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\"\n  ],\n  \"hut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"planten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kameraden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tegennatuurlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deze\": [\n    \"Pron(aanw,neut,attr)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"zaterdags\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Taylor\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drakestaarten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"smoort\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Megan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beperking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"serveersters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Serfaus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"moet\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"paviljoens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ideologie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"water-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewaken\": [\n    \"V(trans,inf)\"\n  ],\n  \"dageraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ijsblokjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onefficiente\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gelijkstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"driftig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Even\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"materie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pension\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorbijsnellende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"amateurband\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zesenveertig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"geduld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leerkrachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"grootmoeders\": [\n    \"N(soort,mv,neut)\",\n    \"N(soort,ev,gen)\"\n  ],\n  \"spant\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"aanvulling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wie\": [\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(vrag,neut,attr)\"\n  ],\n  \"katholieken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plunje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bruggetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"startte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"wij\": [\n    \"Pron(per,1,mv,nom)\"\n  ],\n  \"Athene\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bestelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"wil\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"strompelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"poolshoogte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beginne\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"stralende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"schaars\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"genoegen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wit\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"spookbeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"DS'70\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Chamberlain\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevatte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bescheiden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bestemd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bidden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"engelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbazing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moge\": [\n    \"V(hulp,conj)\"\n  ],\n  \"zitten\": [\n    \"V(intrans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"schapen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"woensdagmiddag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Abrikozen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitprakkizeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"over\": [\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"houden\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(refl,ott,1_of_2_of_3,mv)\",\n    \"V(refl,inf)\"\n  ],\n  \"schofferen\": [\n    \"V(trans,inf)\"\n  ],\n  \"rythm\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verkering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"auto-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erotiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heel\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zijn\": [\n    \"Pron(bez,3,ev,neut,attr)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp_of_kopp,inf)\",\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Nelis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zakelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"scheef\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"heen\": [\n    \"Prep(comb)\",\n    \"Adv(deel_adv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Geeft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"HEEFT\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"jongens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"heer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezwaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"basgitaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heet\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"scheen\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"veertiende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"aandelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bewaarheid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Zee\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Alfons\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"theedoeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tubes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afgebeeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"voorgesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"blauw\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"etage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Alignement\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"grenadier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"droogt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"onderzoeken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Vaak\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Zet\": [\n    \"V(trans,imp)\"\n  ],\n  \"gevecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"passieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stomp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"folklore\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderzoeker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"actiegroepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"buitenbeentje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergemakkelijken\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"beveelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"bereikbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Eenmaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dezelfde\": [\n    \"Pron(aanw,neut,attr)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"opgekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Lyceum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"premieinkomen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zijdelings\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"stond\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vleselijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"behoeften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoeveelheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stuurmaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Stewardess\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Harold\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gasvlam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toneelproducenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"konden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"zilt\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"stuurhoes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wrijf\": [\n    \"V(trans,imp)\"\n  ],\n  \"postkantoren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kansen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"einde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Victoria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"koningin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vught\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bijterig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"stillen\": [\n    \"V(trans,inf)\"\n  ],\n  \"begrijp\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"kwekerij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grazige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fotomodel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Valk-methode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermochten\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"grappige\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"ochtends\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"onvoldoende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"cocabladeren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderwerpt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"stoom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"samenstellen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"likkebaardend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"smakelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"stoot\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"frequentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versierde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Kun\": [\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"verpleegsters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plaatsnamen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bovenhand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijnrood\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Stofzuigen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"werkzaamheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jongere\": [\n    \"Adj(attr,vergr,verv_neut)\",\n    \"Adj(zelfst,vergr,verv_neut)\"\n  ],\n  \"baseerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verschillende\": [\n    \"Pron(onbep,neut,attr)\",\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"wachtkamers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uittrok\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"koemest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"adresseren\": [\n    \"V(trans,inf)\"\n  ],\n  \"handvol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwaarlozing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vanwege\": [\n    \"Prep(voor)\"\n  ],\n  \"groepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"anderhalfjarigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"vocals\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zeurt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"fotografen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"typen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vertelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"types\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kliniekachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gekartelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Deventenaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"weggebroken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"versieren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Zie\": [\n    \"V(trans,imp)\"\n  ],\n  \"weerstanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onbetwistbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Zij\": [\n    \"Pron(per,3,ev_of_mv,nom)\"\n  ],\n  \"erotische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"centrale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"allerlei\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"straathoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flauwekul\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"molestatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"won\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zit\": [\n    \"V(trans,imp)\"\n  ],\n  \"verdraagzaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geparfumeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wou\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vrijdags\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"zelfdiscipline\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"macadam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"baarde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"werelddelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kwam\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Claus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"eventueel\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"torsend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"doorratelen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Wurmbrand\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorloper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkstuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snijd\": [\n    \"V(trans,imp)\"\n  ],\n  \"kenmerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitzet\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"storm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"architect\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rondhangen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"pistool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stort\": [\n    \"V(refl,ott,1,ev)\"\n  ],\n  \"beperken\": [\n    \"V(refl,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"Wijnkeldertje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mensen-die-er-nog-nietaan-toe-zijn\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tabletten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hollands\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,verv_gen)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"duurt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Sonneveld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bejaarden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"vierhoog\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"schilderen\": [\n    \"V(trans,inf,subst)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"held\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Aragon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hele\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adv(gew,geen_func,stell,verv_neut)\"\n  ],\n  \"plank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eeuwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Heilig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bedoeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hoereren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"tuintafel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huichelarij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedetineerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vochtig-glanzend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"plant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reilt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gebouwtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"8-wielige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"opgewekte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"inhoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kaukonen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"teergroene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Loesje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overblijft\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"ALLE\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"bedoelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"pestbui\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rhuys\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Langzaam\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Grijze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"helpen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"zaterdagavond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mooi\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"werkstukje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kassie-kijken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"zinnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"achtereenvolgende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onoprecht\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"laatst-verschenen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"FIOM-organisaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wilson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wedstrijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorstroming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevestigde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"eeuwenlang\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"wiens\": [\n    \"Pron(betr,neut,zelfst)\"\n  ],\n  \"gesmade\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"gymnastische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"maximaal\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"feest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Haagse\": [\n    \"N(eigen,ev,neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"thermastollen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bruidsjurk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Harriet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"staal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"staan\": [\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(hulp,inf)\"\n  ],\n  \"vakbeweging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Amsterdamse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kwaliteiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"interview\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"staat\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zigeunerorkest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"groepje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Leopold\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kruiden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geldtransporten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"fantasiepanty\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"scheurde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verwikkelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"premiewoning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorlopig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"scheepsratten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gemaakt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"geduwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verdunde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"confectiewereld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"staren\": [\n    \"V(intrans,inf)\",\n    \"V(refl,ott,1_of_2_of_3,mv)\"\n  ],\n  \"opzichte\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"genieten\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"gedistilleerd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goreng\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Alcoholisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"acceptabel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Bakersfeld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Pius\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Quinze\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Vessem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"monoloog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Aardappels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"paviljoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Airplane\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afhoudend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"omkeerbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarvan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"inbreken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"ministerie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leven\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"schilderij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huizenrijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"haartint\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nadat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"eeuwig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"violet\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"bende\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"woonwagen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beperkt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"aanvullingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hardhandige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Zou\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"eeuwige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Lazenby\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"giethars\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daardoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"platform\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sprookjesfiguur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorstaan\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"filmprodukt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jeugdsex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sanatorium\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgelazerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wedstrijden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"omelet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nabije\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"impulsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hartfuncties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vruchtbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wierp\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"man-vrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herfstbloemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"honderddertig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"wormen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"benen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"clownsachtigs\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"stortte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"achtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ondergrondse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Valt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"ontwerpen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"eventuele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"eenzelfde\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"ontwerper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trad\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"belazerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"novene\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dagelijks\": [\n    \"Adj(adv,stell,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"tros-chrysantjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"minachtend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"vermenigvuldigen\": [\n    \"V(refl,ott,1_of_2_of_3,mv)\"\n  ],\n  \"trap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"injectienaald\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitwerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzameld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"maag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wakker\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Jamesy's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"vurehout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Cruyff\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gevergd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"maak\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,imp)\"\n  ],\n  \"maal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"selectie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Givenchy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"scherp\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"maar\": [\n    \"Conj(neven)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verzamelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"maat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Costa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kijkers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"warmte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"artikelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Omsk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bovenlaag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"praten\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"geknutseld\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"verzaligd\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"opgemerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hieruit\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Enkele\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"Jorgen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vertroetelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"roods\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"algemener\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Sandels\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Konings\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verfrommeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"stunteligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mannelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schuldig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"miles\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kinderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"iem\": [\n    \"Misc(vreemd)\"\n  ],\n  \"kabouter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bruikbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"volwassenen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"metier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ies\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Helaas\": [\n    \"Int\"\n  ],\n  \"Treleaven\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"landing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfgemaakte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"origineel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ging\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"uitvoerige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"literatuurlijstkeuze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Creveld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorzichtig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Tanzaniaans\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vertroetelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"muilezels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zuidelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"koorknapengezicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"protestantse\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"kelder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"universiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"obers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Noodzakelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geruild\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"missen\": [\n    \"V(trans,inf)\"\n  ],\n  \"uitzenddata\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zouden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"beinvloedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"selectiecommissie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"populaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sinds\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"heus\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Lam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bezorging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"MAN\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Shapiro\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"acteurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"innerlijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Lau\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pijlen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tegenwoordig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hoger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"trek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pijler\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rotkop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ervaringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kniebuigingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tiel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geruime\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Tien\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"opwachten\": [\n    \"V(trans,inf)\"\n  ],\n  \"opgepakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verscheen\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"jassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beletten\": [\n    \"V(trans,inf)\"\n  ],\n  \"constateerbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voorbeeldige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lindebomen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Eerste\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"lachjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"seksen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"buitenland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdacht\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"acht\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"tafel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omhoog\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zojuist\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"moesten\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"bedienen\": [\n    \"V(refl,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"grootste\": [\n    \"Adj(attr,overtr,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"cameraman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"panty\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schatting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkkamers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dieptepunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rakkerd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"devies\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"woedende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"miniem\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"repareren\": [\n    \"V(trans,inf)\"\n  ],\n  \"blijven\": [\n    \"V(hulp_of_kopp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Amstelhotel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"narigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"greep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"humor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"andere\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"verzoend\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"onstuimige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"straatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rooie\": [\n    \"Adj(zelfst,stell,verv_neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"regime\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telefoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gods\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Napoleontische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gehuil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wagen\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,inf)\",\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"anders\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Pron(onbep,gen,attr)\"\n  ],\n  \"raakte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"losgemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"omstandigheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tucker\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hartekreet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gespeculeerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Goed\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Immers\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Zoiets\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"dijbeen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lassagne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zilver\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedrukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"overtrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herinnering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stoelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bech\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"separatistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vrouwelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Beck\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gillen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"hoeven\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Leg\": [\n    \"V(trans,imp)\"\n  ],\n  \"partner\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedeeltelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gepolijste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"hoever\": [\n    \"Adv(gew,betr)\"\n  ],\n  \"observatiekliniek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oplage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschoeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"benadrukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verblijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bioscoop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Les\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wereld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Let\": [\n    \"V(intrans,imp)\"\n  ],\n  \"vetzuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Texas-idee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"MET\": [\n    \"Prep(voor)\"\n  ],\n  \"paters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oktobernummer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stamt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"woonwagens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"moorddadig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"aantrekken\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"kantjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geschenke\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"verorberd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"amusement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beroemd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Renkel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"omvat\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"schat\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Angerstein\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Zorg\": [\n    \"V(trans,imp)\"\n  ],\n  \"uitgekozen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Eindelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"originele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zenuwstelsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vlaming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchtpiraterij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krijgt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"rijden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"uitvoering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onuitgesproken\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zusje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"passagiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hoekige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Achter\": [\n    \"Prep(voor)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"energieker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"veertig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"bepaalde\": [\n    \"Pron(onbep,neut,attr)\",\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"koffer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"springt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"mateloos\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"middeleeuws\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geboorte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verrekijkers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"serveren\": [\n    \"V(trans,inf)\"\n  ],\n  \"schepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"weigerachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"oorsprong\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tweemaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bezichtigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"dansen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"leed\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ernaar\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"Portugese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"leef\": [\n    \"V(intrans,ott,2,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"leeg\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verfilmd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verstreken\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verkeersweg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leek\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Boekarest\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Meyden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"DENKT\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"leer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lees\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"persoonlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"toneelspeelkunst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geluidstechnicus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"factoren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"duel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keelgat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slachtoffers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stapt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"hypocrisie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kunst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeven\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorstane\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"luisteraars\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Luther\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"splinternieuwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitvoerbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opstelt\": [\n    \"V(refl,ott,2,ev)\"\n  ],\n  \"verhelpen\": [\n    \"V(trans,inf)\"\n  ],\n  \"traden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"zindelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verlinkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verschenen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Lip\": [\n    \"Misc(vreemd)\"\n  ],\n  \"midirokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"liggende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"interpretatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toelegde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"culturen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"behoeftigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opspaarde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"glijdt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Marilyn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Zweden\": [\n    \"N(soort,mv,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vertegenwoordigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"behendigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lege\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"mama\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaterdag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ongelukkige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"o.a.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"sappige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoogbegaafden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"malicieus\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"essays\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Lyme\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tegenover\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\"\n  ],\n  \"jammer\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"baldadigheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vooruitlopen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"legt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"model\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diegenen\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"zomer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gistcellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bezittingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontspanning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Eileen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ir.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ander\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"9-jarig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"doodgeschoten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"herdenking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kransslagaderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"terrasje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitnodigde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bandrecorder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lijntje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schreeuwend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"koffie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toevallig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"paranoide\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"glazen\": [\n    \"N(soort,mv,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vervaardiger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klein\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zuivere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wuifde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onrustig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"besprekingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"smaakvolle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"groenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toepassing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trof\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"fantasierijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"echte\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"trok\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Boeddhistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ongezouten\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"metamorfose\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stigwood\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gekke\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"paradijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderhoud\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Achttien\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"boter\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bezocht\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verkoopt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"witte\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"duizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"grens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Olympische\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"kopieus\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voorbij\": [\n    \"Adv(deel_v)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"talent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doordat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"duit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijgestaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"evenwel\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wolkjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"publicaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"benut\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"schitterend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"huwelijksreisdoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"analyseren\": [\n    \"V(trans,inf)\"\n  ],\n  \"flinke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"belangstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ist\": [\n    \"Misc(vreemd)\"\n  ],\n  \"eieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Belg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Boheemse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"matras\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beoogt\": [\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"Bell\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wederzijdse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"opperde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"pargyline\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verachtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"zekere\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ivoorkleurige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Rooymans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"manifesteert\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"schil\": [\n    \"V(trans,imp)\"\n  ],\n  \"stotteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"terugtocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"medestanders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hypothese\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kakelkont\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rutgers\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"politieagenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Casa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tegenin\": [\n    \"Adv(deel_v)\"\n  ],\n  \"woeste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"musisie\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"minnaressen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vogel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdrukking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"medemens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"collegebanken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"juist\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"officieel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"allebei\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"drongen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"spraakgebruik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Fabelon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geschoten\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"medische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"levensgenieter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inlaat\": [\n    \"V(refl,ott,2,ev)\"\n  ],\n  \"ideeen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"doodvallen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"uitbundiger\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"totaalbedrag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"achtergronden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gezag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Los\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanbod\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geheugen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Washington\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"premisse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lou\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aangetaste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"bellen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"anti-stof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gangen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geserveerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"ondervoede\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Vtekens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"loonbelasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bourgeois\": [\n    \"Misc(vreemd)\"\n  ],\n  \"fascineren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"dwaling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijster\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gehesen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Fritz\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"breder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"interpolvestigingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dateert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"reageren\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"karakterfouten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pulletje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luister\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"verbijsterd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aangeboden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"modezaakjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"informeerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onaardse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"briljanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"generaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nagels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Wetenschappelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"marconist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hartelust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekeerd\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"opgeheven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"spectaculaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"veroudering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"velerlei\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"collecties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanspreken\": [\n    \"V(trans,inf)\"\n  ],\n  \"mate\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hemelse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"z'n\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"middag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groentenafval\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inzinking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fiets\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Erlkonig\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vrouwtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wilson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"liedje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tirannie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorgekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gehuwd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"nummer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dubbelzinnige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"priveleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mateloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Markelo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uiteraard\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"tekort\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"fantastisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voorschijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bouwman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pakken\": [\n    \"V(trans,inf)\"\n  ],\n  \"rechterzijde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bunders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afdoend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"aanmerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geregeld\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schrikwekkende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jaarproduktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevolgen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bantammerstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"daarbuiten\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"psycholoog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arm-\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kalmer\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Europa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stadje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pagina's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"versterken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bedrijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchtzak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kijk\": [\n    \"V(trans,imp)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"sterft\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"topgroepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"halfelf\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"hengelaars\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorgevoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dikwijls\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"borstbeelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voortkomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bewonderenswaardig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"dupe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oververmoeide\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"potten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bindt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"Carven\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gegronde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lengte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Berg\": [\n    \"V(trans,imp)\"\n  ],\n  \"bewezen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"penny\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gadegeslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wraak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Terecht\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"veranderd\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"executie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"biografieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"HAAR\": [\n    \"Pron(per,3,ev,dat_of_acc)\"\n  ],\n  \"Gaat\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,imp)\"\n  ],\n  \"schop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleine\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hemzelf\": [\n    \"Pron(per,3,ev,dat_of_acc)\"\n  ],\n  \"oeiii\": [\n    \"Int\"\n  ],\n  \"weeshuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"1.5\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Charles\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"baseball\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Charley\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kleins\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"cafes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"amateurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minimale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"complimentje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ophield\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"neutrale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beroepsfotografen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"arriveren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bevinding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Baldwin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kilo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangehaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"maxi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afdelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aantonen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"producer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arbeid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"middel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongelijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Scheveningen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Lynda\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"midden\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"verfijning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lezers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zams\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dure\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weigerde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"durf\": [\n    \"V(intrans,ott,1,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"pastores\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zoeven\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kruidenboter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geestelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"landbouwmachines\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"durp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuldvraag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weggeworpen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"uitbetalen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Zuid-Afrika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aardige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Miguel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"allen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"klets\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedurende\": [\n    \"Prep(voor)\"\n  ],\n  \"uitzendbureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aller\": [\n    \"Pron(onbep,gen,zelfst)\"\n  ],\n  \"vijfendertig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"spelen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,inf,subst)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"alles\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"voorlezen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vallen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"Spuistraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kamer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"danszaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"danste\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vingers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"scheldbrieven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"weigeren\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gelakte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"tafreel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"denken\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,inf,subst)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"hoeveelheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bourgondische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bendeleden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Livingston\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"benutte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Sexualiteit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Koran\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Kroonraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bemoeien\": [\n    \"V(refl,inf)\"\n  ],\n  \"sterke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"badplaats\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"terugkrijgen\": [\n    \"V(trans,inf)\"\n  ],\n  \"gebaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tweeenveertigjarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verpauperde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"hiervan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"werking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onder\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"vondsten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"konklusie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vonden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"leuk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"passief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"uitgedoste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verwijderd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"inderdaad\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gebouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oogluikend\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"tomaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wachtkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toevoer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezorgt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"duur\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"folder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"excursies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"liters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gebaseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"twaalf\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"echo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huwelijkscadeaus\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huiverde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"propaganda\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Masters\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gekookte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"aangezien\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"echt\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Belvedere\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kerken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"omspringen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"U.S.A.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"residentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overdag\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"magazine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buisje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duidelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"12e\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"geweigerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"drijft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"discussies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"doorlopend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"onverschilligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"totdat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"20-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Jokers\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"duiken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"22ste\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"doorgehaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"evolueren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"contactadvertenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geluid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"HAHA\": [\n    \"Int\"\n  ],\n  \"gelijke\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"afwijkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"keurige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"boerde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Korea\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wegen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uiterst\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kwis-meester\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingetogenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"brief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"panty's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bedrading\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"demode\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Kruis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onbenulliger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"ski's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stoeltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedragen\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,inf)\"\n  ],\n  \"voetbalgevecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verbreiders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"melding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschrokken\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"enzovoort\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Rauschenberg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gepaster\": [\n    \"V(trans,verl_dw,verv_vergr)\"\n  ],\n  \"afgezaagde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"waarmee\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"arts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ijszee\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pharmacie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Andere\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"verwoestende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"raken\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"Twente\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gehandhaafd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"boeren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Diekmann\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Venables\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beessies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bomans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"smartlappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overweldigende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Anders\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"negeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"gelukkiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Zuid-Italie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"heilige\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"gezellig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"meubels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schminkkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knoopsgat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geintjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezellin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prentbriefkaartdorpje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"simpele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sensatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrouwfiguurtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stadsvervoer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdienste\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klassieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Nieuwmarkt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"jarige\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"Zilver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"titel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stugger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"schoongemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"dankbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Maurice\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gelukt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"geteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Emile\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ikzelf\": [\n    \"Pron(per,1,ev,nom)\"\n  ],\n  \"immuun\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"individu\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arbeidsongeschiktheidsverzekeringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nertsjas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschijnen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"brokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zullen\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"opende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tulband\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wereld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weerbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wijnkoper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plaatsvinden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"gekregen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"toilette\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Wiardi\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bliksem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"notaris\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beledigt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"L'OFFICIEL\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hetzelfde\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"Liesbeth\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vriendelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"plankjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jongeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzekerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sleutel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoofdrolspeler\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"folie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opengemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Tjak\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"omlaag\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vochtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zilverdraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geroosterd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verliep\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"studentenkleed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gehuld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"minimum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kringetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlies\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verliet\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"opkomend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"kader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bokswedstrijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"openen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Menierh\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rijden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"houten\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"cockpit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"speakers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"drijfijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onfrisse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voorstelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"eraf\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"Make-Up\": [\n    \"Misc(vreemd)\"\n  ],\n  \"zevende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"pokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vermeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afgestudeerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"misverstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oordelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"kiwi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zweten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Greenadier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"little\": [\n    \"Misc(vreemd)\"\n  ],\n  \"adem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijzondere\": [\n    \"Adj(zelfst,stell,verv_neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"legers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"durfde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bekijken\": [\n    \"V(trans,inf)\"\n  ],\n  \"treden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"gekozen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"oeroude\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voedsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keukenvloer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gigantische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"scherper\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"tricot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aflopend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"burgerlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitgenodigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wrang\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"weetikveel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgetast\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"neerschreef\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"staande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"atelier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nachtzoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"noemde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"weelde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevestiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dubbeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewoond\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Behalve\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"linnen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plasje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gallery\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Meltzer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"brommertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Californische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"keuring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"horloge\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"premiere\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkopen\": [\n    \"V(trans,inf)\"\n  ],\n  \"sortiment\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkoper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afkniptangetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"figuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"begonnen\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\",\n    \"V(hulp,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"neerliggen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Mam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Man\": [\n    \"Int\",\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mao\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarachter\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"verkeersopstopping\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"noemen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"kerel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duizend-en-een\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"verfilming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keren\": [\n    \"V(intrans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zowel\": [\n    \"Conj(neven)\"\n  ],\n  \"National\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Max\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"May\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dreef\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"dominee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verliezers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanbiedingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afwijst\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"economie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bleekblauwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"toestand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prestige\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Chris\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Cochran\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"peil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakenman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"talloze\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"begrafenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Puskas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Liebregts\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"linkerkant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Koffie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"taboes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangrijpt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"teleurstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"101-103\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"amandelvormige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"huis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toonaangevend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"middengolfzenders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schuil\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"clandestien\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voller\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"schuim\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Komt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"blaadjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lokvogels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"houtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Palestijnse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"traumatoloog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moeders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gepleit\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"betreft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"inkomstenbelasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handschoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jij\": [\n    \"Pron(per,2,ev,nom)\"\n  ],\n  \"troep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"definitie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hondenhokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zesduizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"non-actief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verschuivingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vrijwillig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"verwachting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gare\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"achterzijde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slager\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfbewust\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Fabio\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gegoten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verkondigde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verzoening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichamelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vraaggesprek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vroedvrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Burgers\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fijngesneden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vijfhoekige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"steden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"daaronder\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"geschaamd\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"show\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"adviezen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"twee-relatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"percent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sigaretterook\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"smalle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zwakheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertrouwelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ongewenst\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"benevens\": [\n    \"Conj(onder,met_inf)\"\n  ],\n  \"deken\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Koop\": [\n    \"V(trans,imp)\"\n  ],\n  \"mooiedoortrapte-jongen-filmimage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgebreider\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Praktisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"reclame-bureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verontwaardiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Groot\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sterrennacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huisartsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toneelgezelschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onpeilbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoewel\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"zwembaden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bretagne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fraai\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Mel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Alkmaar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geldt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Men\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Gainsborough\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"blootgesteld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Onze\": [\n    \"Pron(bez,1,mv,neut,attr)\"\n  ],\n  \"genegen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"dodelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Annie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ervoer\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Met\": [\n    \"Prep(voor)\"\n  ],\n  \"bode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Beekbergen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schuld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toebrengen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"zestienhonderd\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"NairobiDar-es-Salam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Steve's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"hulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geromantiseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aanwijzen\": [\n    \"V(trans,inf)\"\n  ],\n  \"300.000\": [\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"dreigende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"enkel\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Adj(adv,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"flatwoningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"familieportretten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedoelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dreigends\": [\n    \"V(intrans,teg_dw,verv_gen)\"\n  ],\n  \"baard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelet\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"treffen\": [\n    \"V(intrans,inf,subst)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Ingers\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"humoristische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"boek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erin\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"echter\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"boel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrouwen\": [\n    \"N(soort,mv,neut)\",\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"adviseerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"apparatuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Crime\": [\n    \"Misc(vreemd)\"\n  ],\n  \"kruidenboek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flink\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verbaasde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"rijdt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"Shakespeare\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"elementaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"architectuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waardering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"postuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Finland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weven\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Zaterdagavond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gaststerren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tikfout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versterkt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"tienduizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"degelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"winterzonnetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mekaar\": [\n    \"Pron(rec,neut)\"\n  ],\n  \"voordoen\": [\n    \"V(refl,inf)\"\n  ],\n  \"spontaniteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strenge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"helpende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"binnenwerks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voordoet\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"rijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"krantejongens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voetbal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"avontuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitslapen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vrijen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"strelende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"overhaast\": [\n    \"Adj(adv,stell,onverv)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Stoomcursus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mondstuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wisselen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"contractueel\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"inktvis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Venetie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"galadiner\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"harde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"teckelmoeder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"joden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veldje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"omhulsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"menen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"huifkar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ajax\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"behoorlijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Mij\": [\n    \"Pron(per,1,ev,dat_of_acc)\"\n  ],\n  \"uitkijkpost\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bonheur\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Min\": [\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\"\n  ],\n  \"verbinding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tekort\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Mis\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Grote\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"protesten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"brandstof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jou\": [\n    \"Pron(per,2,ev,dat_of_acc)\"\n  ],\n  \"verkruimelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"stadhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdrijft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"jazzelementen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Geanimeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"techniek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"visbouillon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jagger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aantrekkelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"componist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakkige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wetende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"Swahili\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opzij\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"duwde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"haren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorbereiden\": [\n    \"V(refl,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"uitrekenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"geschapen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bergruimte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"NVSH\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"materiaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerekend\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"besneeuwde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"jurken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"glasvezel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"documentaire\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermaarde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"popmuziek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"antiquair\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"systematisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hinnikend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"krabbelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kasboeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"emotionele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lyriek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeggen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"pers\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reservaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duwen\": [\n    \"V(trans,inf)\"\n  ],\n  \"tegenkomen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bloemenkrans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toeren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Waldorf-Astoria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nieuwslezer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelezen\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Welnee\": [\n    \"Int\"\n  ],\n  \"achttiende\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"Grace\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Palaverboek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevoelsleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zwerven\": [\n    \"V(intrans,inf,subst)\",\n    \"V(intrans,inf)\"\n  ],\n  \"fjorden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Wiegerma\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Delden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Creatieoord\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"luchtvervuiling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verrader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Midden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erom\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"gezelschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erop\": [\n    \"Adv(pron,onbep)\",\n    \"Adv(pron,aanw)\"\n  ],\n  \"kleuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Auschwitz\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"maandag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Cornelis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gedeelte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervoer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geweldenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geregeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Arbeit\": [\n    \"Misc(vreemd)\"\n  ],\n  \"dichter\": [\n    \"Adv(gew,geen_func,vergr,onverv)\"\n  ],\n  \"aardewerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alcoholist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"communicatiemiddelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hanneke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kloppen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"krotten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veelbesproken\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"waarschuwend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"pijnlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Spelen\": [\n    \"N(eigen,mv,neut)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"Daume\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ontvangt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"schriftelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schrikbewind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tegenstrijdigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vechten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"wijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleurenproduktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"compleet\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"leidt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"ijzerzaagjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"achtten\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"opereren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Ondanks\": [\n    \"Prep(voor)\"\n  ],\n  \"woordenloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"betalen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"opmerkelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"huur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakenmensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Justitie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"caries\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mijnheer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afwezig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"niveau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"integratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verplicht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"dwaas\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Mol\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"prima\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Volgens\": [\n    \"Prep(voor)\"\n  ],\n  \"ervoor\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"bond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"NOS\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bolton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"iedereen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"climax\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondernam\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vertellen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"ronduit\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dashboard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bons\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jean\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bewijsbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Spontini\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Avenue\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"welzijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeulen\": [\n    \"V(trans,inf)\"\n  ],\n  \"noteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Brandpunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Academie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wieden\": [\n    \"V(trans,inf)\"\n  ],\n  \"bood\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Patrick\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Laser\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meisjes\": [\n    \"N(soort,mv,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"groeitijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"echtgenoten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oosterse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"boog\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gymnastiekuitvoering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleurig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ventura\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"boom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"technicus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"prins\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bundelen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"VITUS\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"frame\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Monty\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"huisarts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tv-produkties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"team\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"bekendste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"spray\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tricia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vermisten\": [\n    \"V(trans,verl_dw,verv_mv)\"\n  ],\n  \"Totdat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"scharen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vetarme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Smith\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stiekum\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dertigste\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"intelligentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebeurde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"kinderloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"dreun\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Wacht\": [\n    \"V(intrans,imp)\"\n  ],\n  \"citroen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Demerest\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spannend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bemoedigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"zichtbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"reversibiliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebedsmolens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onuitgeslapen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"handel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"2,1\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"vernietigingskamp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pakkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"trots\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingeschreven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sherry'tje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Michel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"traag\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"interesseren\": [\n    \"V(trans,inf)\"\n  ],\n  \"twijfel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"driemaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vlag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kruipt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gedoceerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"onderzoerzoekers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanvallers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanwijzingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vlak\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verlengingszaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"positie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"satijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vlees\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebeuren\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"momenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorbereidingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"2-3\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"bord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trouw\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hechte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Nixon-bewind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gestekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"paard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"soldaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schouders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dierentuin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"patroondelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"internationaal\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Prijsvorming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanvankelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dierenasiel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gesteld\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"genomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kwaadaardig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"karton\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veroorzaakt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Lau's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"monsieur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Enfin\": [\n    \"Int\"\n  ],\n  \"angstdroom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorbedachten\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vitamine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waardige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"moederschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgewekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rivieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beleefde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitzenden\": [\n    \"V(trans,inf)\"\n  ],\n  \"buiten\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Prep(voor)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"populair\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"mensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zullen\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"teen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mann's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"ministers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Noorse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"prikkeldraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"manman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"japonnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"trompettist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Almelo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volstaan\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"afgezaagd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"misdaad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kindje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geluk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geintje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"modepers\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"baai\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"handig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"fatalisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"breekt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"eerlijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"baan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"misdaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afgeleverd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"baas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"variaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"krijgsman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beroepsvoetbal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geslacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"immunisatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tamboers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"omkijken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vlek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"urenlange\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"oudoom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bladen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bouw\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"overgangsjaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gloriedag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Durft\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"varen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"waterpomp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"astrologie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nevenuitkomst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koesteren\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"baby\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbekend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"reklamekampagne\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alwetend\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hulstboom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gamma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"signalement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"skitechniek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minuscuul\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"regelmaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goddelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"handwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leuker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"verrukkelijks\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"back\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Vuile\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aanknopingspunten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stroeve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"betekenen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"schaakspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangesloten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"weliswaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ontruiming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"VROUW\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangekleed\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"moest\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Ooievaar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Margriet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krimpen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"activiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gloed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nertsstola\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"harte\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"opinie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onjuiste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"landelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sick\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"publikatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewild\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"rijtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bebouwde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"uitgezochte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"gunstig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"cognacje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luid\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ontdekten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"luie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Dagen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"besefte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"eeuwenoude\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tegen\": [\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"vertoefd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"klasgenoten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Figuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oplet\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"vliegreis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"twintig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"bakken\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"Heijermans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"reclamemensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bakker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lieten\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"leefregels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangestapt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"noteerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"(oud)studenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"reddingsduikboten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"atmosfeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"satire\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vitaminehoudende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bevrijdingsfeest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herleefde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"zorgden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"onhoudbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fortuin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keerde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"boys\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ongemakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderplank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brengen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"ketsen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"afwijzen\": [\n    \"V(trans,inf)\"\n  ],\n  \"dagelijkse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Politiek\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"weekbladen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geinterpreteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"professor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"foeilelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"staten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rienk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"natte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lukt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Transparante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"overbevolkingsverhalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kampioen-compromissensluiter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkloosheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vaderland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knoflook\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoogste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"marmotten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afschuwelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"platbektangetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwager\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kan\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Descriptions\": [\n    \"Misc(vreemd)\"\n  ],\n  \"betekenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Pretty\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wekenlange\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hevige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"boerden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"daalde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verricht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"erfelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"platen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"groeit\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Navarra\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontzettend\": [\n    \"Adj(adv,stell,onverv)\",\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"vertraging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rijksasiel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"strandstoelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kalmerend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"betekenden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"nijver\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Jonas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hoewel\": [\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"mevrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zoontje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"succes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bunt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorkomen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"wisselend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"denkbeeldige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Halverwege\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"clan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gelukkig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"overeen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"modebeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongezond\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"toewijding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duidt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"ongelovig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schimmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"produkt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgewezen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bereid\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"neemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"internationale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spande\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gedreven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verdedigen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"verschuldigde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"geraffineerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"experiment\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdediger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"betaalde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Blaricum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vroegtijdige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"statig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"treedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"accepteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"honden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"werkelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vlerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leverde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verlossende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"kostwinner\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wegens\": [\n    \"Prep(voor)\"\n  ],\n  \"getoond\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"revolutionaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"middelmaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"puddingvorm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vroedvrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voelden\": [\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"ontwijken\": [\n    \"V(trans,inf)\"\n  ],\n  \"meegedeeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afzonderlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"halfdonker\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gefrustreerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"overzichtstentoonstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dwars\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Da's\": [\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"noodoplossing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prijken\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"ken\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"assistenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oorzaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aktetas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wellicht\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"riool-extase\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erachter\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"voorspellen\": [\n    \"V(trans,inf)\"\n  ],\n  \"stofbergen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beeindigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rommelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Utopia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"enthousiasme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leveren\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"voetgangers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ravens\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"heren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"balk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vlot\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hartstochtelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Veronica\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vermogensmisdrijven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Burg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"neiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mooier\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"ruimte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stappen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"krotopruiming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dikke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Burm\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"communes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"A-D\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"sigaret\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kortom\": [\n    \"Int\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"tenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"individualisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jongelui\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"identieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"alleenstaande\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"ribbelige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"studentendecaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"motor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"term\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkhypothese\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Canarische\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"parfumeer\": [\n    \"V(trans,imp)\"\n  ],\n  \"platencontract\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Steinbachs\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Kusche\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zichtbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"plekken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"miljoen\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"invaliditeitsverzekeringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kwijtraakte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"acryl\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Trouwens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"band\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bang\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Allemaal\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Jonge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gemak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grasanjer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"thuiskomen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toevoeging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziekteverzekering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bonnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"omlijst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Poesjkin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"indruk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedoel\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"begrip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geenszins\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zeilt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"opgepropt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bloemetjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangesmeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aardappeltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tenslotte\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"lessen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verzoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ademhaling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voetballen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"ethische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bordeauxregions\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"energieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Zuid-Vietnam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderneming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brommers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vecht\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"rekenen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"uiterste\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"negatieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zandtrottoirs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"collectie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stommelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Ugly\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"steeds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kil\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"1_2\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"onstilbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hondje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"m'n\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"vruchtjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uzelf\": [\n    \"Pron(per,2,ev,nom)\"\n  ],\n  \"officier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Omdat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"overmorgen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Ootmarsum\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gedroogde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"burgerlijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ingedragen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zachtjes\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"beloning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Skarabee\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opvatting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"anderzijds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"nazaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"experimenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Akersloot\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schaden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Joseph\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"houtsvuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"preuts\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"Verhage\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dolle\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dispensatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergeten\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"winnen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"dorpsschool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stammen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"vierduizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"tuiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Munchen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beoordelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"delen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"aanbeveling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jazztrompettist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Boeyoeng\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uiteenlopende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"verzamelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"uitgelachen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Ieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verblijven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voordat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"Nee\": [\n    \"Int\"\n  ],\n  \"nachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geadopteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"farmaceutische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"persoonlijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sentimentele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Apollo-15\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"groter\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"geschonken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Mooie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"racerij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Net\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"New\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"indrukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verdrietige\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"15,6\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"vlug\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"maandblad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cadeau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daartegen\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"motto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glorie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leerling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oplichtten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"toevertrouwen\": [\n    \"V(trans,inf)\"\n  ],\n  \"druipt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"noodzakelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"deelnemen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"autoriteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervalt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"deelnemer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tevreden\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Horse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bijna\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wakkere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"inkomen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dwaze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"belangrijkste\": [\n    \"Adj(attr,overtr,verv_neut)\",\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"straf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levensvatbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"enthousiaste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"champignons\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"strak\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Aischylos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"minimumcijfers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"smaad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ambitie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luidruchtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Kralingen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"luxe\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"goden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"smaak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"acrobatische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"pleegt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"gedrongen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Hille\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"meneer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwording\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Drenthe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spastici\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"frieten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ouderwets\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"sudderde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"heuvels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"loopt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"toegaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"fotosafari's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beloerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Fuck\": [\n    \"Misc(vreemd)\"\n  ],\n  \"autopedjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedateerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Notre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"harder\": [\n    \"Adj(attr,vergr,onverv)\",\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Draai\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"beschaving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"actiestrategie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgaven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Amstelveen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderschat\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zag\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"wonen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"Kopenhagen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Soft\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Philip\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zal\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(hulp,ott,1,ev)\"\n  ],\n  \"Fleet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"student\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zat\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"pluchen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"takken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dikte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kom\": [\n    \"V(intrans,ott,1,ev)\",\n    \"N(soort,ev,neut)\",\n    \"V(hulp_of_kopp,ott,2,ev)\",\n    \"V(intrans,imp)\"\n  ],\n  \"kon\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beurzen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kou\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"David\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"straalt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Prager\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Overveens\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"James-Bond-film\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afgeraden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verlieten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Hans-Georg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woonark\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nadruk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vorig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"fors\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Neem\": [\n    \"V(trans,imp)\"\n  ],\n  \"vader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krepeerden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"teentjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begripsverklaring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wereldje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"steekt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"sociaal\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"inherente\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"attracties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verkeerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dubbelgevouwen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"relatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inpassen\": [\n    \"V(trans,inf)\"\n  ],\n  \"libretto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beslist\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zondag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoofdrollen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"alledag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"centimeter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genoeg\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"duivelbezweringsmaskers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"president\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vanille-ijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Behrendt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"achteruit\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Reiche\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"steelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"evenredigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"liefde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lapjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bernard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"haaknaald\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huisbaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opluchting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maakt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,imp)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"kater\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hallstein\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bikkelharde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"foto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ambivalentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alvast\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"idee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gelooide\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"technisch\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"antwoordde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"boven\": [\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\"\n  ],\n  \"flatneurose\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dringen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"V.V.V.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"idem\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"helder\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"curieus\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bikini\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mogelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"aangetrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"malaise\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hierdoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Buiten\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Mensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toesprak\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vernederingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"heeft-ie\": [\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"trekdieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Aken\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zeg\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,imp)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"brochures\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zei\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"dinkie-toy\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doekjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prijzen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"fout\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"eierroof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vreedzame\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"werklozen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"zes\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"schoolproblemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zet\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(refl,ott,3,ev)\",\n    \"V(refl,imp)\",\n    \"V(trans,imp)\"\n  ],\n  \"minst\": [\n    \"Num(hoofd,onbep,zelfst,overtr,onverv)\"\n  ],\n  \"22-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"snikkend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"omgekeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"besloten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Mick\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"NOSstudio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"psychische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"glimlachte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"jongeman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"durven\": [\n    \"V(hulp,inf)\"\n  ],\n  \"altijd\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"maand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opbloeiende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"verduidelijkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"brievenbus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"FIKTE\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"oorlogsspelletjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inspraak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doormaakt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"zwemmen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"betekenissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"erboven\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"zwaaide\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"zoveelste\": [\n    \"Num(rang,onbep,attr,onverv)\"\n  ],\n  \"dames\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beschikten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"kleinbehuisd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opgesmukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kinderbescherming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rennen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Nog\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"tragedie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zonder\": [\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Conj(onder,met_inf)\"\n  ],\n  \"kul\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekrast\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kun\": [\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"ikoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tweetal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"shock-effecten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Nou\": [\n    \"Adv(gew,aanw)\",\n    \"Int\"\n  ],\n  \"Edvard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Berlijn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verzorg\": [\n    \"V(trans,imp)\"\n  ],\n  \"steevast\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"puin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schoolmeester\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reageert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"MIDEM\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Soms\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Miep\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"teruggesnoeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"walgelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Mies\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"NIET\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"chirurg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Laten\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\"\n  ],\n  \"primitieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"pitten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ingrijpend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"bedacht\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Later\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"waarnaar\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"financieringsmaatschappijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Song\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"absolute\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ontroering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aankomen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"zie\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"kanalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Probeer\": [\n    \"V(hulp,imp)\"\n  ],\n  \"aanleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdrongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Terwijl\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"Duitsland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"recepties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zij\": [\n    \"Pron(per,3,ev_of_mv,nom)\",\n    \"V(hulp_of_kopp,conj)\"\n  ],\n  \"voorzetten\": [\n    \"V(trans,inf)\"\n  ],\n  \"Carolina\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"blindelings\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"zin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"keihard\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"reaktiemogelijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorbeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"warenhuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afgunst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zit\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"pop-art\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingenieurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"cotelet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wisselwerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nalatigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gustav\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voordelige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vederachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"revolver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Harris\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ludieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"drugs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"resultaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waaronder\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"nette\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"aanrijden\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Enterprises\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Edmund\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"behoorlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"absoluut\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"geheimzinnige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"mislukking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geetst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Rekelsvrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hobby-set-dozen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"intussen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"casual\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"federale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"scherpe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bijzonder\": [\n    \"Adj(adv,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ahead-Haarlem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"genezing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moeder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nariep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Zesde\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgeluisterd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gevierd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"maart\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"destijds\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Gesloten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"georienteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"boycotten\": [\n    \"V(trans,inf)\"\n  ],\n  \"ruime\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bouwstop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"leggen\": [\n    \"V(trans,inf)\",\n    \"V(refl,inf)\"\n  ],\n  \"overschrijden\": [\n    \"V(trans,inf)\"\n  ],\n  \"Staten\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"spraakvermogen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"armoede\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"overgevlogen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"ouderworden\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"geconcentreerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bezitlozen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"heden\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vrijdagochtend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorschijnend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"chains\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ruine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gesubsidieerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"uitoefenen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"voorbehoedmiddelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kinderkopje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broekpak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"briesje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grotere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"uiterlijke\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"tjalken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Castle\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gekleurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vernemen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"ogenschijnlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"meesters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beloofde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"punt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onrechtvaardig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Mijn\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"rechterarm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"evenzo\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vinden\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Visserijstr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afbrak\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"volhouden\": [\n    \"V(trans,inf)\"\n  ],\n  \"polysonore\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wandelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"natuurkunde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"accepteerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kwijt\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"enzovoorts\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"sociale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sjaaltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"entree\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voila\": [\n    \"Misc(vreemd)\"\n  ],\n  \"afscheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"registratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongehuwde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Pierre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gespuwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rechten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Mike\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drukt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"26jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jaarlijks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"rechter\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"wijd\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"eerlijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"trokken\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"moeilijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"wijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sigarenkistjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Nonnetjes\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"bereiken\": [\n    \"V(trans,inf)\"\n  ],\n  \"Uiterlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"wandelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"louter\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"OVS\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wasmachine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Russische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ambachtsman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cruisen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bijtgrage\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"levensgezel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cruises\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"scherts\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"woningnood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ferree\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"laboratoriumwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"skicentrum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Evenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hangt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"overspannen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"paraplu\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongevallenverzekeringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitermate\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zou\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"skien\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Beuningen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ambulance\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kruizemunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleurenharmonieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"veronderstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"welgemikte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Engeland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verkocht\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Driehonderd\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"gedaald\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Escoffier\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bekritiseerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"openluchtmuseum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"achterblijft\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"D'66\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gereputeerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wilt\": [\n    \"V(hulp,ott,2,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"Naast\": [\n    \"Prep(voor)\"\n  ],\n  \"beefden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Mina\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overwegen\": [\n    \"V(trans,inf)\"\n  ],\n  \"toegebeten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Shappy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"officieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Uitgekiend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aandeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"smart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onkosten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Russel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verfstof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bobath\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hop-d'r-op\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"manschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Russen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vijandigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waarmede\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"aanwezig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"samen-zijn\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"diamanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verharder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kortom\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Int\"\n  ],\n  \"midimode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teruggebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Cucumber\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"-onderzoek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fans\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"olielampje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daarboven\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"gabardine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mannen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bondserie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geringe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"helemaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"namelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"uitwissen\": [\n    \"V(trans,inf)\"\n  ],\n  \"wind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Spartaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Centraal\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"inspirerende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"opstellen\": [\n    \"V(refl,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Bovendien\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ondergebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"deugdelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"voorhand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Eerlijkheidshalve\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gingen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(hulp,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verre\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fotoserie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daargelaten\": [\n    \"Prep(achter)\"\n  ],\n  \"toeneemt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gereageerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"afliep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gezamenlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"OZZ\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgeprobeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Wilgen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"benadrukken\": [\n    \"V(trans,inf)\"\n  ],\n  \"bedaren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"liefst\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Bedoel\": [\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"gezegden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Snowdon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stervende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"onderbreken\": [\n    \"V(trans,inf)\"\n  ],\n  \"ongeorganiseerde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"opeengeperste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kwaadheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verhalen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"vluggertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"niets\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"puur\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"mrs.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezorgd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ramen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"operatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diep\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"getrouwd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"verhinderd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"lag\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tutoyerend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"veroorzakende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"weggegaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gedokterd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"afgeslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vanuit\": [\n    \"Prep(voor)\"\n  ],\n  \"Spanje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zelden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"lap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opvoeding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondeugende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"las\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"eindspurt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rondbuig-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jong\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pikken\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"beoogde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"nieuw\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verdeeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nervositeit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"piano\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volzinnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geconfronteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"eindigden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"17.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"recorder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanpakken\": [\n    \"V(trans,inf)\"\n  ],\n  \"verdeelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"vergaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"schijnheiligheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pittige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sinaasappelsap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kermis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aceton\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buikwand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daarbinnen\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"autoritaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lopen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Bescherming\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stijgende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"wandkleed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"conflict\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vanaf\": [\n    \"Prep(voor)\"\n  ],\n  \"overal\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"Miss\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Azie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tenminste\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"formele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"mindere\": [\n    \"Num(hoofd,onbep,attr,vergr,verv_neut)\"\n  ],\n  \"weelderige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"combineren\": [\n    \"V(trans,inf)\"\n  ],\n  \"gulden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onechte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"meestal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"portret\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blijkbaar\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"lelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"slimheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wegliet\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"roadmanager\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"talrijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"melkmannen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Verandering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eene\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"aankomst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Breton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overwinning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spelletjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gemerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"huizes\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"ondertitel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beginnen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"eens\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"middelmatige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wist\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Verkeer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"structuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gesmoorde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"tube\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erotisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"interessanter\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"etc.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"uitgever\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tower\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Snoeshaan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"deskundigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"werkploeg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ALS\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"pratend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"wisselvallige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kleurenfilms\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"drentelden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Meneer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervaardigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verzekeringstarief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aflatende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"gekrepeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"wederzijds\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"genieting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dagverblijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aardig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"les\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"let\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"terroriseerden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"onderrigt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Yves\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"plassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vergeleken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"spasticiteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bankreferenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Square\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Norway\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afgrijselijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"doorgedraaid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"teveel\": [\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\"\n  ],\n  \"popnummers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanvallen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"okay\": [\n    \"Int\"\n  ],\n  \"1-persoonskamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkrijgbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"leeuwenkop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sleur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitzicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"particuliere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"opgewassen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"onjuist\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"giechelden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"dorst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mogelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onverdraaglijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"plantgat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ANP\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gekwetst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vermoedens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"miljard\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"presidentsverkiezingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"meneren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Gray\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dubbel-lp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geurig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"resulteren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Evenals\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"ziekten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sam-sam\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Caecilia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"puberteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wachten\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"keert\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"William\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sneden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"doorloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daartoe\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"potlood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prompt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vergunning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vernietigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Koningin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meesten\": [\n    \"Num(hoofd,onbep,zelfst,overtr,verv_mv)\"\n  ],\n  \"Belgische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"punch\": [\n    \"Misc(vreemd)\"\n  ],\n  \"nachts\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"diepzeezwemmen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"meester\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glaasje-op\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stadion\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"donkerblauwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"roodgeschilderde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verzwegen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vermoeden\": [\n    \"V(trans,inf)\"\n  ],\n  \"provocatus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderaan\": [\n    \"Prep(voor)\"\n  ],\n  \"bekertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zondag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kennen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bleef\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"rechtse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorspoedig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dichtgetrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bleek\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Meestentijds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"decormaquette\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"papier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eten\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"Godsnaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"baby-doll\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Buitenveldert-Amsterdam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Rimini\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"koket\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"lid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Och\": [\n    \"Int\"\n  ],\n  \"jouw\": [\n    \"Pron(bez,2,ev,neut,attr)\"\n  ],\n  \"lig\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Psychiatrische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Kartoffelsalat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"motivering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geraakt\": [\n    \"V(hulp_of_kopp,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"PCS\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"gemeen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"triest\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pendelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"grammofoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zenuwslopende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"elkaars\": [\n    \"Pron(rec,gen)\"\n  ],\n  \"kluivend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"ding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoals\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"Rein\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bereikte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"voorste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kruidenboeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vijftig\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Ober\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rustig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lijdt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Europa's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"geestdrift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"etablissement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"collagestijl\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sommige\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"tijdens\": [\n    \"Prep(voor)\"\n  ],\n  \"huisvrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Opgeschrikt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"meubelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"toebehoord\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"merels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geknecht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hesje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koelkast\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ARP\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aardbevingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geringste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"geraamd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"grapje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vijanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vaste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitbuiting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eengezinswoningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gekronkelde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"meespelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"eeuw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boordevol\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"aanwijzing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arbeidsveld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lazen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Altijd\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Parool\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tuin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deelden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Hendrika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zoldertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zodanig\": [\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"Onassis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doden\": [\n    \"Adj(zelfst,stell,verv_mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"Teruggekeerd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Indiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"appeltaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goede\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"kluchtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Pallandt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"turn-ons\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dossier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfbewuster\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"kennis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"popperig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gezinstype\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zichzelf\": [\n    \"Pron(ref,3,ev_of_mv)\"\n  ],\n  \"leeggehaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"goeds\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"Zonder\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_inf)\"\n  ],\n  \"beamen\": [\n    \"V(trans,inf)\"\n  ],\n  \"beschouw\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"aanvraag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rilde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"mentaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vlakte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afwas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telkens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stierf\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"sprekende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"heftige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Sark\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doodeenzaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"tonen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(refl,ott,1_of_2_of_3,mv)\",\n    \"N(soort,mv,neut)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"speel\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"voorouders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"honend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"registreert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"chanson-programma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"desnoods\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bevatten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"ontucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geintegreerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"manifesteerde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"zeurderige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"noch\": [\n    \"Conj(neven)\"\n  ],\n  \"haverklap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezaaid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"onverharde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voelend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"professionele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dichtbij\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ambtsperiode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebrek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fondueschotels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Reclamemensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Elspeet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gestorven\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gelegenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bleke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"buitengewoon\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kogels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opzien\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regenjas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongegrond\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Zwijger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"eigenschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"node\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verdienstelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"wanhopige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Doen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"tulp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Doet\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"oliehaven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aantrekkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sphagnum-turf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zakie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Leeuw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oil\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concluderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"daaromheen\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"citaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tevens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"landen\": [\n    \"N(soort,mv,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"los\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"noodlot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanzien\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,inf,subst)\",\n    \"V(trans,inf)\"\n  ],\n  \"slachtpartij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plaatsjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Moeder\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jonkheer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Slavische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hijzelf\": [\n    \"Pron(per,3,ev,nom)\"\n  ],\n  \"Nederlands\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"N(eigen,ev,gen)\"\n  ],\n  \"Daardoor\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"klap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"AWW\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koorts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stichting\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"haten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"zakje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rapport\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kirsch\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bungalowhotel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"milieus\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kunststoffen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"huwelijksreis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rechtsaf\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"mogen\": [\n    \"V(hulp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Doge\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weekend-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wonderkinderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"medewerkers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"slagerstouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waaraan\": [\n    \"Adv(pron,vrag)\",\n    \"Adv(pron,betr)\"\n  ],\n  \"illusie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Huishoudschool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vangen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Stevens\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vaderlandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onthullend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"controle\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wekelijks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"sturen\": [\n    \"V(trans,inf)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"maanoppervlak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gezinsvorming\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Lijdensweek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zinsnede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Darnley\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"maatschappelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ambtenaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"goeie\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"regering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Uitgaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"oerkracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luieren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"lijkt\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Haarlem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schilderwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontdooid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bieden\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"klonken\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"buurtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Carel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"missing-link\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lusteloos\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Recreatie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gemene\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"i.u.d.'s\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"impressionistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"evenement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mexicaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Ierland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gaaikema\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rebelse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"coordinatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tragisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Inmiddels\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"toeristische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zoetvijltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plezierigste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"eerst\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kleuter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oefenen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"katholieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Waag\": [\n    \"V(trans,imp)\"\n  ],\n  \"Ome\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfportret\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"regeringspartijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Waar\": [\n    \"Adv(gew,vrag)\",\n    \"Adv(pron,betr)\"\n  ],\n  \"weerstond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"pleiten\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"komkommers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gasten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jachtsafari's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Sander\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarschuwde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"schuilnaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Parade\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Elizabeth\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"natuurmuseum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teruggehouden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bosneger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziekenhuisbevallingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verkoop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitbundige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schooldeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klem\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schoonheidswater\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doormidden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"opereert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"soelaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"excellenties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"huwelijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lindner\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kerstmis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgericht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"morgens\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"gelijk\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"niet-Hindostaans\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"aandriften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"abrikozen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ons\": [\n    \"Pron(bez,1,mv,neut,attr)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oefening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontstaan\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gezellige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Police\": [\n    \"Misc(vreemd)\"\n  ],\n  \"slagzin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nieuwsmedia\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ruikende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"ontstaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"waarschuwen\": [\n    \"V(trans,inf)\"\n  ],\n  \"algauw\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Overspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"misprijzend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"leken\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"meetellen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Dahome\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Oog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inachtneming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volgorde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ook\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"aantal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oom\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lui\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"dagen-\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sluiten\": [\n    \"V(refl,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"voelde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ploegafspraken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gordijnring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minutieus\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"serie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Soefi-zijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fluitjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wachtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"thuis-opgevoede\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Overdoen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"geheven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Philippe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pleet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prakken\": [\n    \"V(trans,inf)\"\n  ],\n  \"filmsterren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eethuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"initiatief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaadje-eitje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kozen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Bruce\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sijsjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"koersstijging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geraak\": [\n    \"V(hulp_of_kopp,ott,1,ev)\"\n  ],\n  \"voelen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(refl,inf)\"\n  ],\n  \"verruiming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zo'n\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"eiwitten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"barok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vaagheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"baron\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"perspektief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zijde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewaring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Previn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderhandelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Revu\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"relations\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Limburgse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"huisdier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huilen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"leerzaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"fijngehakte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"juffrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"woont\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Sorry\": [\n    \"Int\"\n  ],\n  \"auto's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"keukenprinses\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hier\": [\n    \"Adv(gew,aanw)\",\n    \"Adv(pron,aanw)\"\n  ],\n  \"compliment\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"emancipatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schiep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"danig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"allerprilste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"Maastrichtse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bloedend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"instructies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"actie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeegedierte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Door\": [\n    \"Prep(voor)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"genre\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knoop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zonzoeker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"creaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"primair\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"raadplegen\": [\n    \"V(trans,inf)\"\n  ],\n  \"handkarren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opzettelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Albert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"conclusie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedreigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Chabaudanjer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lijst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wegwerken\": [\n    \"V(trans,inf)\"\n  ],\n  \"natuurbad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"woongemeenschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"waartegen\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"Alle\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"praatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"merendeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gemeubileerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijwonen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"smaakpapillen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gewenste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Vanuit\": [\n    \"Prep(voor)\"\n  ],\n  \"grachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"thuiskwam\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"snauwde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onderschatten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"harpoenier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haalde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"high\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"plein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"media-mannen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"probeerde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"wateren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zakte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"pleit\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Chuvalo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vliegen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"19,75\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"klaarmaakte\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"nadele\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"Moderne\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"veroordeeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aankwam\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Liefhebber\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zuidkust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tenger\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gemanipuleer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"paren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"voorhoofdknobbel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Brussel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kronkelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Aan\": [\n    \"Prep(voor)\"\n  ],\n  \"heeft\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"dankt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"kunstgeschiedenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Onlangs\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"kusten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spierpoedelnaakt\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Kermis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"belangrijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Durham\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Koeweit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toeschouwers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"suiker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdient\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"Overal\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"woord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"contract\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleinzerig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Dorp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebiedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"beheersen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"lijve\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"boontjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schokbrekers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prachtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"terreinen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"harten\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"groepseffect\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dory\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"groeten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"tournee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zijden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gefascineerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"betrekken\": [\n    \"V(trans,inf)\"\n  ],\n  \"contacten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hielden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"nadenk\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"geringere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"langdurig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"koninklijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afgebroken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"negen\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Ach\": [\n    \"Int\"\n  ],\n  \"blijken\": [\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"neger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schilder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"-stronken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Gevormde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"hijgend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"onvoldaanheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"effe\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"popmusici\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"studeerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"afschrikken\": [\n    \"V(trans,inf)\"\n  ],\n  \"Act\": [\n    \"Misc(vreemd)\"\n  ],\n  \"importeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"bruikbaars\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"Veel\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\"\n  ],\n  \"lokaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schijn\": [\n    \"N(soort,ev,neut)\",\n    \"V(hulp_of_kopp,ott,2,ev)\"\n  ],\n  \"ziekenhuisgemeenschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ada\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verdiept\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"vaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kweken\": [\n    \"V(trans,inf,subst)\",\n    \"V(trans,inf)\"\n  ],\n  \"zwoer\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"deelnemers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bankstel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lijdensweg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"departement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kiezen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"hoofdgebouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verjaarscadeau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wegstromen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"dosis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"STOP\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afgewogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"westerse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"slaatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sketches\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Henri\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bordjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nauwgezet\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"drankverkopers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"achtentwintigste\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"klok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorstellen\": [\n    \"V(trans,inf)\"\n  ],\n  \"klom\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gevoed\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"inzien\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Daan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waarvoor\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"gevoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daar\": [\n    \"Adv(pron,aanw)\",\n    \"Adv(gew,aanw)\"\n  ],\n  \"Henry\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bitter\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ongelofelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"stoornissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"frisse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hoeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verhuisd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"angst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jasperina\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwacht\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Stefan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"jury-leden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"serre\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Britse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vangst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschijnsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verbouwing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"september\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"avonden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stroom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"naad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Galbulten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Mobil\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"alsnog\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"anonieme\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"naam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Cecil\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kernen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hartspier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zachtheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"middle-class\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"naar\": [\n    \"Prep(voor)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"onderdeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"publieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hotel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"climacterium\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ranch\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"direct\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"optrad\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"nootjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gelijktijdig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"spiegelstroken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorechtelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nous\": [\n    \"Misc(vreemd)\"\n  ],\n  \"vereist\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"probleempjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nadere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"liever\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"Want\": [\n    \"Conj(neven)\"\n  ],\n  \"lorren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wegpikt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"verrassende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"baden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"nadert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"aangrijpend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"teneinde\": [\n    \"Conj(onder,met_inf)\"\n  ],\n  \"belastingbetalers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onverhoedse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Poolse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"feite\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"hing\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"behoort\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bergen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"37-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lingerie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"noodzakelijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"agressie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zijne\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"onwrikbaar\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Lester\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vervangen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"schildje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanstekelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wandelden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"praatstof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"iets\": [\n    \"Pron(onbep,neut,zelfst)\",\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"directie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"japon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versturen\": [\n    \"V(trans,inf)\"\n  ],\n  \"vooral\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"oplevert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"lyrisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"badkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jazz\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Brusselse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"auto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderwerp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kuren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"J.B.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"DSRV\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binnenkort\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bezuinigen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"ongenoemd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vooruitgang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zatterik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opging\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bewandelen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"getracht\": [\n    \"V(hulp,verl_dw,onverv)\"\n  ],\n  \"mag\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"veilige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afgronden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ginds\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"etentjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gracieuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weinig\": [\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\",\n    \"Num(hoofd,onbep,attr,stell,onverv)\"\n  ],\n  \"man\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\",\n    \"Misc(vreemd)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"map\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeker\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"zeldzamer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"lezen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"huizenbouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ermee\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"boodschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lezer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daaruit\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Hermans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vloedlijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"processen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"misleidende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"kuchte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"l.p.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevolking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voortgezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Abrahamse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"operette\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deurknop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoekje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herinneringen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorkeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Alstublieft\": [\n    \"Int\"\n  ],\n  \"Terra\": [\n    \"Misc(vreemd)\"\n  ],\n  \"dialogen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"praatte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tuinpaden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bekijkt\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Terre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bibliotheek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bromde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"avondje\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"vijfde\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"manieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Veld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kostuums\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"indicaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ditzelfde\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"Warm\": [\n    \"V(trans,imp)\"\n  ],\n  \"radiostations\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"steeg\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"rechtstreeks\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"wielrijdster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"steek\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"steen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fokken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"kwetsbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beschikte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"allerscherpst\": [\n    \"Adj(attr,overtr,onverv)\"\n  ],\n  \"straat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitzending\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"simplificaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ogenblik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"DANKTE\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"opmerkelijkste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"minachting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rock\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"neergelegd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"trottoirs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vergelijk\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"uitmaken\": [\n    \"V(trans,inf)\"\n  ],\n  \"vervelen\": [\n    \"V(refl,inf)\"\n  ],\n  \"2.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"gesmoord\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Blois\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gevolg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dreigde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Chemische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vriendinnetjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Venlo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bouwtrant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"olijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vlamgevat\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"heilzaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Compromis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"riskante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rode\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"katoen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cultuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moeten\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\"\n  ],\n  \"benijdden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Hoes\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Als\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"onderzochte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"uberhaupt\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zelfmoord\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verklaring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geachte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"aarzelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"nahoudt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Roodaangelopen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mee\": [\n    \"Adv(deel_v)\",\n    \"Adv(deel_adv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vrouw-maagd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mei\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"paasfolklore\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binnen\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_v)\",\n    \"Prep(voor)\"\n  ],\n  \"Terugzetten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"groenige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"men\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"verleden\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"processie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"met\": [\n    \"Prep(voor)\"\n  ],\n  \"Terug\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"blokje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Mevrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"allerkleinsten\": [\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"daglicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"medailles\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"woonde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"broedtijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"roes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"roet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gaapte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hits\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bespreken\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"lauwwarm\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ijsland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bekeken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"meegaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"aarzelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"gehouden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kwalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"allesverwoestend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"And\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Hoge\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Remover\": [\n    \"Misc(vreemd)\"\n  ],\n  \"jarigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"agent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijfokken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"maximum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lokale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"angstig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"drukke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"evolutionaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nabootsen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vakantiereizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vastberaden\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Citaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tevens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"boerendansers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mede\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"doorsneekijker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flutargumenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"studie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heimwee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"titels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"conservatieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"scheelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"verantwoordelijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heleboel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sensuele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitzondering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"studio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkapt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Munchhausen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"steil\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Dwayne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgeborgen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Pas\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Koorts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Paradiso\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"teint\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tumult\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nabijheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorgemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"identificeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Producer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dali\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"promoveren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"sluit\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Enkelaar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"meel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Roemenie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woestijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rattenvlo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reddingsvloot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bettelstudent\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"handicap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meen\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"afijn\": [\n    \"Int\"\n  ],\n  \"bekleedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"meer\": [\n    \"Adv(gew,geen_func,vergr,onverv)\",\n    \"Num(hoofd,onbep,attr,vergr,onverv)\",\n    \"Num(hoofd,onbep,zelfst,vergr,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Borra\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"alcohol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toefje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jaarmarkt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gunstige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"walvissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"brak\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Juliana\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sprekers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Pisuisse\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dame\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"billijken\": [\n    \"V(trans,inf)\"\n  ],\n  \"levenslang\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"nevel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voetgangersvereniging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dorpsstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verbeelding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"enkelbreuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opluisterde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"albums\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"getuige\": [\n    \"Prep(voor)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"mij\": [\n    \"Pron(per,1,ev,dat_of_acc)\",\n    \"Pron(ref,1,ev)\"\n  ],\n  \"eindelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"paaien\": [\n    \"V(trans,inf)\"\n  ],\n  \"plastic\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"min\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\",\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\"\n  ],\n  \"studentenorganisaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vijftiende\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"Dana\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"souvenirs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rustieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"legertuig\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opdonder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dank\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"bloemmotieven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"name\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"vergeven\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"opberg-bankje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rijlessen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"luchten\": [\n    \"V(trans,inf)\"\n  ],\n  \"Margaret\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"boudiers\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"continent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdrijven\": [\n    \"V(trans,inf)\"\n  ],\n  \"Hieraan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"aandelenkoersen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stelt\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(refl,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Nuss\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontwikkelingsplan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ondernemersinitiatief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gifhistorie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verrekenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"instinct\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"timmeren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"ZuidAmerika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vatte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verbazen\": [\n    \"V(trans,inf)\"\n  ],\n  \"plegen\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"mej.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Billy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lollig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wezenlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"witzijden\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"poeslief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rommel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gepikt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Gelijk\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"kookboeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wegvalt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"linkerhand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hollywood\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Philiptheatre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"paspoort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwaar\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Sankt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"begeeft\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"waarboven\": [\n    \"Adv(pron,vrag)\"\n  ],\n  \"stellingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"befaamde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"terugkeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"westen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"neerknielden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Home\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geslikt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"briefje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"middelbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"artiesteningang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bidprentjesformaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Weense\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verkeersovertreders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sprieten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gevaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"decembermaand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderdelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"interessant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ongeduldiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"gedroomd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"McDonald\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volslagen\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"rolt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"binnen-\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"inscriptie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"visie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beschrijvingskunst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volksmaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"paplepel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luidt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"profane\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"nippen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"straks\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"mengen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"walvisvaarder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongeluk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ethiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lied\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoeken\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"boycot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"luchtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"liep\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"veldheer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"liet\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"erflatingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gezinnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"spijzen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aantrok\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"publiceerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"grijs\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pleegde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Economische\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Hoog\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Elke\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"gevogelte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rond\": [\n    \"Prep(voor)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adv(deel_v)\"\n  ],\n  \"macht\": [\n    \"Misc(vreemd)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"denk-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorop\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Panorama\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spontaan\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bestelwagen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kapper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"life\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hoor\": [\n    \"V(intrans,imp)\"\n  ],\n  \"luchtvaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kroop\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Pia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wegbereiders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"fantasieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Komedianten\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verschilt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"mosterd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"melk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ritman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schipbreukelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"moe\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"beloven\": [\n    \"V(trans,inf)\"\n  ],\n  \"zeeschepen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Gezellig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ochtend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reisroute\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rood\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"sigaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongeduldig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"drukte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"geschenk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bericht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wisseljaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"masker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Elly\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"strand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nasi\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"abortuskliniek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heilzame\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"hengelaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grill\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bouwprogramma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bloedvaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ligt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"karwei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geestelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"sterk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verbergen\": [\n    \"V(trans,inf)\"\n  ],\n  \"hypofysaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bekwaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Gedeelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"opperste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"glazige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"denkt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"combinatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herstellen\": [\n    \"V(trans,inf)\"\n  ],\n  \"0,95\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"resultaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plaatsvindt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"moeilijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"(maatschappij-)visie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"basis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Black\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"mens\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arrogantie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eenmaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Weelf\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"prrachtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"surfing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Overigens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"geredigeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nimmer\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"vergezelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ontslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sport\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omheen\": [\n    \"Adv(deel_adv)\"\n  ],\n  \"gekropen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"ijdelheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vogels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"syteem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"resoluut\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"centjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Maltz\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"alfabetische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"glimlach\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rekening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onherroepelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"intree\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"activiteiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geboortedorp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"antwoordt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Klimrozen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nauw\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"puntbaardje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Merton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schotels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"richten\": [\n    \"V(trans,inf)\"\n  ],\n  \"Suiker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"faciliteiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"giro-overschrijvingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"relief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kudde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Queens\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rijssen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"voorwaarden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zeer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Capricieux\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toeschouwer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belangrijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geleverd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"oogschaduw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"steun\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vindt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"Pietje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Emilia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"orgel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"epidemie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Marlene\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"goedheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bill\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oppervlak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Haag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kraag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vechtlustige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Haal\": [\n    \"V(trans,imp)\"\n  ],\n  \"Tongeren\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kraai\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"affiches\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Spaak\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Schmidt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Londen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Haar\": [\n    \"Pron(bez,3,ev,neut,attr)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerechten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pannetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Santa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"doorgaans\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Houd\": [\n    \"V(trans,imp)\"\n  ],\n  \"hangar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deftige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"brandbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Santi\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"getrokken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"lila\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"aangelopen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"eigenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"PCPA\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrijheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Glimlachend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"broertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"omtrent\": [\n    \"Prep(voor)\"\n  ],\n  \"dronken\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Sowjets\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"raad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"massieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"merk\": [\n    \"V(trans,ott,1,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"klimt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"symboliek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"platteland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zegt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"Korver\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"raam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Montreal\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gevoed\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Koeprin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"grammofoonopname\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschaffen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"bekroning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"honderdduizenden\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"samenstelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Ljubljana\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voetvolk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"democratisering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Uffizi\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verspreiden\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"kolonisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wijdt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Milton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"blues\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hield\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"laboratoria\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voortaan\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wiegen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dagblad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"artistieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gisteravond\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bekend\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hielp\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"speeltuin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"beroerder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"vaarten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"communiceren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"400.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"ambities\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"link\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"exotische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"15-jarig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lint\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"examen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jeugdige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stencil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mezelf\": [\n    \"Pron(ref,1,ev)\"\n  ],\n  \"sneeuw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ruim\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Verenigde\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"ziekenhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"potpourri\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"winkels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Liever\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"winkelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"driekwart\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"grootmoederprincipe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aandacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fronsen\": [\n    \"V(trans,inf)\"\n  ],\n  \"juiste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rade\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"Aandachtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"middeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"festivaltent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bonnensysteem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"waarbij\": [\n    \"Adv(pron,betr)\",\n    \"Adv(pron,vrag)\"\n  ],\n  \"hangen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"uitsterving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Enige\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"namiddag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teruggevallen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"ansichtkaarten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vissenmoordenaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vurige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Weesp\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"periode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vooral\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"moeilijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schokkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"arrangeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Spaans\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"samentrekken\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"virtuoos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"reaktievorm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meloen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duidelijkste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"haarfijn\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Spring\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"moeilijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Weinig\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\"\n  ],\n  \"tikken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"graagte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buitenlanders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zelf\": [\n    \"Pron(aanw,neut,attr,w_zelf)\"\n  ],\n  \"bochten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ploppertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedacht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beslissing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"punten-telling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oranje\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"vermoedelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"potente\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Marianne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"specifiek\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"synthetisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Crawford\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"daarvan\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Friedl\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"liefdeskandidaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verscherpt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gesleept\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"roze\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"marge\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dwalen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"heerst\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"tafeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ledematen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"thee\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"point\": [\n    \"Misc(vreemd)\"\n  ],\n  \"vetkwabjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Moderedactrices\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Vijfde\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vermoord\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"vaderlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"goedkoper\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"belastingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"maitre\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vroege\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Westeuropese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"blauwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"middelpunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stevig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"eisen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aspecten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"rapporteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"ontslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Club-Hotel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"protserig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"constante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"koppen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"miniatuurtoneel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"machines\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hongaarse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Hair\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitzonderlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"keuze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grondslag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krachtiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"trieste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Pepper\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"flesje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gevolg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zware\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"brug\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"naargeestige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"brui\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"massacommunicatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krulspelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"moedersterfte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewonnen\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"krullen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"figuurzaag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Simon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wrede\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"specialistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voel\": [\n    \"V(trans,ott,1,ev)\",\n    \"V(refl,ott,1,ev)\"\n  ],\n  \"rancuneus\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"positieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zwart\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"blondine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ruffo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezond\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"recepten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verlaten\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,inf)\"\n  ],\n  \"badhuish\": [\n    \"Misc(vreemd)\"\n  ],\n  \"slap\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"voet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sukses\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hartog\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Sharon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitgezonderd\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"lijsten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opdraafde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"behandeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"goedverzorgde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zwenkte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Jackie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gedonder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"smaakt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"gastheer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"imponeerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vertrokken\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"commentator\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zuigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Binnen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Geef\": [\n    \"V(trans,imp)\",\n    \"V(refl,ott,2,ev)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"behandelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"wreed\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vakmensen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderdrukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"noorden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"babbeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Geen\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"ZIJN\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"nadenken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Gees\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"bijeenkomsten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"fiasco\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"London\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"McCarthy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bea\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bee\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"lichaamstaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzoeken\": [\n    \"V(trans,inf)\"\n  ],\n  \"bundel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bourget\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mobilisatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Acifit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bel\": [\n    \"V(trans,imp)\"\n  ],\n  \"Ben\": [\n    \"N(eigen,ev,neut)\",\n    \"V(hulp_of_kopp,ott,1,ev)\"\n  ],\n  \"tyfus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gerard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevestigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hopeloos\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"formuleren\": [\n    \"V(trans,inf)\"\n  ],\n  \"vlakbij\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Half\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"dassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Houdt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"demografische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitkering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekookt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"lengtevariaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"breigarens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bieten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tweeenzestig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"kerstavond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"markt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spuit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sherry\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overhouden\": [\n    \"V(trans,inf)\"\n  ],\n  \"Zelfexpressie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"arbeidsvoorwaarden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tweeduizend\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"dokter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevestigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"dodelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"moederlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Levering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concert\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schoolkind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vakbladen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Classics\": [\n    \"Misc(vreemd)\"\n  ],\n  \"spaarzaam\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gebeurd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"wuivend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"bezochten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"rukte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"sportvis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Leger\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Casso\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beinvloeden\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Vrije\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"huren\": [\n    \"V(trans,inf)\"\n  ],\n  \"gebeurt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"hoofdstuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bestond\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ontwikkelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"tijdlang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tweeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aureool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vooruit\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"30,-\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Reich\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verdwijnt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"saunabaden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wonder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telefooncel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedrijvige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"anzichtschone\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Hand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weken\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"laakte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"zelfde\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"rigoreuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ingelicht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"compensatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderlaken\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hetzelfde\": [\n    \"Pron(aanw,neut,attr)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"mejuffrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hans\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Mierlo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"goed-Amerikaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"freule\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"religieuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"roemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Gelderse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"conflictsituatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kippe-ei\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spijlen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vrijwel\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"diner\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"langwerpige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lijstje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"CHU\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoveel\": [\n    \"Num(hoofd,onbep,attr,stell,onverv)\",\n    \"Num(hoofd,onbep,zelfst,stell,onverv)\"\n  ],\n  \"daarover\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"vette\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afdaalde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"nazomer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nam\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"georganiseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ruzie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koperplaatbewerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nat\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Bij\": [\n    \"Prep(voor)\"\n  ],\n  \"openlijker\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"sierprutsjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"glorieuze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"optreden\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,inf,subst)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kennedyverleden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buitenissige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"benadering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knollen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorhoofd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tsjechoslowakije\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kelders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"55e\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"Jazeker\": [\n    \"Int\"\n  ],\n  \"aanbevolen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"koning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heimelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beseffen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"lords\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitdrukken\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"arbitrage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ornament\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontzeggen\": [\n    \"V(trans,inf)\"\n  ],\n  \"kokende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Ruud\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Iedereen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"weleens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zelfs\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gepikeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"huishouden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"frei\": [\n    \"Misc(vreemd)\"\n  ],\n  \"4,50\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"lijden\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"volk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Festival\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hindoe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overrompelt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"woonden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"deftiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"beschimmelde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"Vermoedelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"mystiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"punten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eilanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"roept\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Stone\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drinke\": [\n    \"V(trans,conj)\"\n  ],\n  \"Geld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingewikkelde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Westen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"deskundig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"onderzoekers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Huisarts\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hare\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dijkstra\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"slim\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Moray\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"RutSpeer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"drinkt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"vacuum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijst\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Montaldo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Beiroet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"brandbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"piet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volgden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"bedrag\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitlokken\": [\n    \"V(trans,inf)\"\n  ],\n  \"adviseur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kaarsdragers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"loslaten\": [\n    \"V(trans,inf)\"\n  ],\n  \"bouwkundig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lonend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"beeldcassettes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Aanleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hulpbehoevende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"talismannen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"branden\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"vond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onverschillig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"aktie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genageld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rottijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hedendaagse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Straks\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"rare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"doende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"nee\": [\n    \"Int\"\n  ],\n  \"piraterij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"naief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"saxofoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reuzevent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gordijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toneelschool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beledigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"riddergoed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"net\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lolita-achtig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Nkima\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gene\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beluisteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"anti-conceptie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jongleren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Leeuwarden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"transplantaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zocht\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"percentsgewijs\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"staarde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"voor\": [\n    \"Prep(voor)\",\n    \"Conj(onder,met_inf)\",\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(eigen,ev,neut)\",\n    \"N(soort,ev,neut)\",\n    \"Conj(onder,met_fin)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"voos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"meerdere\": [\n    \"Num(hoofd,onbep,attr,vergr,verv_neut)\"\n  ],\n  \"doelstelling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volgende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Bestaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"extra\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kwamen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"draagt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"tekent\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"artiesten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"meekrijgen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"onderdrukking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"topplaats\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kunstbenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgestreken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"krampachtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"overgedragen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"fris\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"gevoelens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onoverbiddelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"4,95\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"aspect\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rechtbank\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onmiddellijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kinderverhalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Monsieur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bob\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schildpad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontmoedigt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"twee\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Lord\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"praktisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vogelbescherming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Boo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"fresco's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zovele\": [\n    \"Num(hoofd,onbep,attr,stell,verv_neut)\"\n  ],\n  \"aanstaande\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spreiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Fijn\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Christ'l\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"planken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pasta\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"puntje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plotseling\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"netjes\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Friese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onnodige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"straffen\": [\n    \"V(intrans,inf)\",\n    \"V(intrans,inf,subst)\"\n  ],\n  \"gemakkelijker\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"draait\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"betrouwbaarheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Frieso\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rauw\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"masseuse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorzocht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"even\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"wijnkopers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"betreurde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gedecoreerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"komen\": [\n    \"V(intrans,inf)\",\n    \"V(hulp_of_kopp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"vork\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vorm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Staphorst\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwachten\": [\n    \"V(trans,inf)\"\n  ],\n  \"symfonieorkest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eigenaars\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"drift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pijn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pijp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sontag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"daagt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"dollars\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eiste\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"evenmin\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vierenzeventigste\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"toestellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"joviaal\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Majesteit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dramatisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schippers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"serieus\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"slok\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opnamen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sporthal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slaagde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Laan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rawi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gert\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"slot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lagere-schooltijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zondagavond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kreeften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hitst\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"bezienswaardigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flatgebouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Laat\": [\n    \"V(hulp,imp)\",\n    \"V(trans,imp)\",\n    \"V(hulp,ott,1,ev)\",\n    \"V(hulp,ott,3,ev)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kapitaalkrachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Schinveld\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Staat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"nl.\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"spaarzame\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"sjiekste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"dingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verkrachting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"modinettes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wijze\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geaccepteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"handelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"actief\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hitte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Theresia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dubbelzinnigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevallen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"tijdvak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kinderverlamming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beslotenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoorde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vaag\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"uitsluitend\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Voorts\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"pils\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vaak\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"geimporteerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verwensingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Eddie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"betoog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hobbelpaard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"commissie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"edith\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vijftien\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"samenwerkend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"woedend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"homoseksueel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Fins\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"twaalf-en-een-half\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"slachtoffer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vulgaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"commentaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gepraat\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"pesah\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Leven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgediend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"plaatselijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tenthuisjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"luchtbuidel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Quadrille\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"paradis\": [\n    \"Misc(vreemd)\"\n  ],\n  \"bromfietser\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"House\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Residence\": [\n    \"Misc(vreemd)\"\n  ],\n  \"compartimentjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overzien\": [\n    \"V(trans,inf)\"\n  ],\n  \"gevonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verhuizing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"republikeinen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangesproken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"voorstel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toneelstukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"poeier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gezakt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"tweede\": [\n    \"Num(rang,bep,attr,onverv)\",\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"Wolkow\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sjoemelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"stoplichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kindermishandeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontbreekt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"afwijkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"mannetjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"asperges\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Langlauf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toeval\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spannen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"aanvallige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wezen\": [\n    \"V(hulp_of_kopp,inf)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"no.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergissen\": [\n    \"V(refl,inf)\"\n  ],\n  \"bewogen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"opzeggen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"aarzelend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"moment\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontdekte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"supermarkets\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Catac\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spreekt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"gegaan\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Loenochod\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Wiegel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"betaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aanmerkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"But\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Atletico\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schipbreuk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genoteerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Drente\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geneesheer-directeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koppeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belastbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"berggebieden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onwil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verleend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"tweeen\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"familieleden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Deskundigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genezingsbehoefte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snaveltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Magisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Piraeus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pomponvormige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"deuren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verleent\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"struktuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behalen\": [\n    \"V(trans,inf)\"\n  ],\n  \"klinken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"mankement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"scholen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wanbegrip\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sssst\": [\n    \"Int\"\n  ],\n  \"zoal\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"elkaar\": [\n    \"Pron(rec,neut)\"\n  ],\n  \"notariele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"meren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"verpanjerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"provincies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"adres\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oceaanoppervlak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nog\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bovenal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"onzegbaars\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"biologisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vooruitstrevende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"wijn-publicisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kastje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behulpzaamheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doppen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Roode\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kuste\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"sexshops\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"not\": [\n    \"Misc(vreemd)\"\n  ],\n  \"nou\": [\n    \"Adv(gew,aanw)\",\n    \"Int\"\n  ],\n  \"coach\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"massief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Poema's\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"garderobe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"parochiehuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ouderwetse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vooruitzichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"knap\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"haven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ernst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwonden\": [\n    \"V(trans,inf)\"\n  ],\n  \"geheime\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weggegooid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"werkruimte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgetogen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vurig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"blootstellen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"overtollige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verpesten\": [\n    \"V(trans,inf)\"\n  ],\n  \"nr.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vroeg\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"woordenstroom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gelukkig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"borrelende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Schimmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"subsidie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgekeken\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"vage\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"duimpje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onwettig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"details\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"piassen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gezaaid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"inwendig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ijver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moraal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewerkelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"spinazie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vijver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Elaine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"'30\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"buffet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toekomstige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"apart\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rustige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"patiente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ervaringsfeiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Judith\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beste\": [\n    \"Adj(attr,overtr,verv_neut)\",\n    \"Adj(zelfst,overtr,onverv)\",\n    \"Adj(adv,vergr,verv_neut)\",\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"veiligheidspin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sinds\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"appel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"terecht\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zelve\": [\n    \"Pron(aanw,neut,attr,w_zelf)\"\n  ],\n  \"Amerika\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"evoluties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geslachtsleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hierbij\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"zorgt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"verstoring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lichtstad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lawaai\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oorzaak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Pansy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onbewust\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Nivernais\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Barrett\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zoek\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"budgetten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanbood\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"zoet\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"moraal-code\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fenomeen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cholera\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genre-aquarellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Astruc\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"klopten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"kleurloos\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Astrud\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"collega\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vanavond\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"waarschuwing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hennep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Minnaars\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Zuidpool\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tijde\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"Kees\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"administratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gracht\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"succesvol\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Rooie\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"welvaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"protesteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Gezond\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"paprika's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ester\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sneuvelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"aangetrouwd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"logisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"overwonnen\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Werksituatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haastig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Niemand\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"getreden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Nederlanders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jezus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"breidt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"stuit\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"aanval\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"merkt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"overheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"samenwoning\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stemmenwinst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"charmantste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"brieven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitgestrekte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verantwoord\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"criminaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huisvesten\": [\n    \"V(trans,inf)\"\n  ],\n  \"verfijnde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"begroet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Jean-Gabriel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"genoemde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kantoor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdringingsstelsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pamfletten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pollepel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Carlos\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afgedwongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"koffer-wegen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"hectares\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangename\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Wallen\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"nihil\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Kennedy's\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"vals\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"uitgaan\": [\n    \"V(intrans,inf)\"\n  ],\n  \"valt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"worden\": [\n    \"V(hulp_of_kopp,inf)\",\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(hulp_of_kopp,inf,subst)\"\n  ],\n  \"onbevangen\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vertekend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aankopen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontsnapping\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgaat\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"krijgsraad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontspannen\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(refl,inf)\"\n  ],\n  \"Dokter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vraagt\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"McCartney\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onderdanen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ondertussen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Lane\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volgt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Benno\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"getraumatiseerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"shirts\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sterren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verdraagt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"komst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"excommuniceerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"stuks\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kunstschatten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"steunlokalen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"reiger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Officier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"badpaviljoentje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitnodiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Valkenswaard\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"constateer\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"schaven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inschakeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"speervissen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"nieuwjaar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"modegevoelig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bezitsrecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"binnenvaren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"verwachtte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"knie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongeveer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"deelnemende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"handgreep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"logeerpartij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Duvalier\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stompen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"serieuzer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"wensdroom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goedvinden\": [\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bederven\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"richtingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kosten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kwaaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"televisie-juke-box\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"knip\": [\n    \"V(trans,imp)\"\n  ],\n  \"zozeer\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"uitgeschakeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Kamperdijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"binnenplaatsje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pepertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"formatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hulpverlening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitstromend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Daniel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"record\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gekoesterd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"uiteenlopen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"vlieg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarmee\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Poll\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toepassingsmogelijkheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"uitbundigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"enorm\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"meikaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoogtijdagen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schudde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Lionel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"snugger\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"genezen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"doorgedrongen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"loskomt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"snoep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overhemd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geslagen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"nukkig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"jukbeenderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"graden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanbouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grootmoeder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"markante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"terugkerende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"benaderde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"woorden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verkenners\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"centen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"balken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"consumptie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hotelportier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"clowns\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kunstvezels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Alberts\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"liften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"etalagepoppen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Koning\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overwon\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Kopechne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"erdoor\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"raakt\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(hulp_of_kopp,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"pater\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bewerkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"programma's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"alwaar\": [\n    \"Adv(gew,vrag)\"\n  ],\n  \"Celsius\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Palaver\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergissing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"cafe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Schep\": [\n    \"V(trans,imp)\"\n  ],\n  \"weersomstandigheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"materiele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vinger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Model\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nasmeulend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Wickler's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"klaarblijkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"geloofsleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nixons\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"tien\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"Libero\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bouten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"benaderen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"geschilderd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Vandaag\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stramien\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Starr\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gebak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Anne\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verzekerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"kastanjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"chansons\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"betreffende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"conclusies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"optel-\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vervoermiddel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vandaar\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"onwelgevallig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"zond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"rinse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Anno\": [\n    \"Prep(voor)\"\n  ],\n  \"zong\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gehuurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kieskeurig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Jantien\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bedden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zetten\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"drukken\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"8,75\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"falen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"personeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijgaand\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"premieheffing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bourbons\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"aangenomen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"boyos\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eenennegentig\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"naadje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijgekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"eigenaresse\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Karel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geput\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"knieholten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Last\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"keukenflesjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"soepeler\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"aanbieden\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"uitpraten\": [\n    \"V(trans,inf)\"\n  ],\n  \"kunstmanen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gewrichten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bevliegingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opgegeven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"radiogolven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verenigingswateren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hulpmiddel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"a.s.\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"smak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"midgetgolf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zoon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Witte\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"innerlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tegelijkertijd\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vliegtuiglawaai\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kent\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verliefd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kamperen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bovenop\": [\n    \"Prep(voor)\"\n  ],\n  \"gezondheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"minislangenlerenmantelpak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vast\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"goed\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"bloeddruk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaadcel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"illustere\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"weekend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"treft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"knol\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwangerschapsstuipen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gewenst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"knop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kleurloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"lands\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"verslond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Hollandsche\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"know\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Herman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"carnavalstijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bestreken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Bijlmer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afgekoeld\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Questura\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrijheidsstrijder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spaanplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gidsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Moskou\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volop\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Schik\": [\n    \"V(trans,imp)\"\n  ],\n  \"kinderziektes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Verdere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"Schil\": [\n    \"V(trans,imp)\"\n  ],\n  \"bredere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"munt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nichtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slaapkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ongepelde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stellen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"tegenwoordige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"heimelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ruisende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"ingewikkeld\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"teken\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"hogere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"relatiepatroon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behalve\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"direkte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"roepen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"Juist\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schuldgevoelens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontwikkelt\": [\n    \"V(refl,ott,3,ev)\"\n  ],\n  \"klinieken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zorg\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"tijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zodat\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"rechtvaardiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vraag\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,imp)\",\n    \"V(trans,imp)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"boterhammen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gogo\": [\n    \"Misc(vreemd)\"\n  ],\n  \"boottocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschuiving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vijvers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderwijssituatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afnemen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"sommigen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"been\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mannenzaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"eitje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aldoor\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stolling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bleven\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"cabaretier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weggeweest\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"trein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meerlen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lange\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"verwezenlijkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"stapels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voordeed\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"garantie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"politieman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arbeidersvrouwen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"truffel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opnemen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"langs\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\"\n  ],\n  \"Paal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gaarne\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"voordeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertraagde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"pilgebruikende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uiteenzetten\": [\n    \"V(trans,inf)\"\n  ],\n  \"tikt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"vlinder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"betasten\": [\n    \"V(trans,inf)\"\n  ],\n  \"flessenexpressie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oudste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"computerprogrammeurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"goederen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"geaarde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"voeding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nostalgie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"optreedt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"veranderingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ongeboren\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"attitude-wijziging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stembiljet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorhoofdsfronsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gunstigste\": [\n    \"Adj(attr,overtr,verv_neut)\"\n  ],\n  \"aanrader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontgaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"neergang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"James\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gereserveerds\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"afgewerkt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beperktere\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Greta\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tegenstander\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontmaagt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"trekt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"torentje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teleurgestelde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"handenarbeid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tolereren\": [\n    \"V(trans,inf)\"\n  ],\n  \"stellig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"aanbrengen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"aigretteveertjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dixon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontzetting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"redigeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"burgers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zout\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sproeien\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Gruyters\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"voorwerp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eindexamen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"menhirs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schaaltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grafkrans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grammofoonplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"functies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gekost\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"leerde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hartinfarct\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwembad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"export\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heesters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Nicky\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pestbacillen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"letsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"twaalfde\": [\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"hitparade\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"barnsteenkleurig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"overvallen\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"must\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbemande\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Noordelijke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gehoord\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"balkon\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zeemijnbouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hebben\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(hulp,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"levensperiode\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"klimaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beter\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"steriele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tint\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Pads\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Romney\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"communicatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vernon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Prinses\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"twijfelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"golf\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"welig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"prikkelgeleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorstelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"slikken\": [\n    \"V(trans,inf)\"\n  ],\n  \"herinnerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lawaai-patientjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"elektronische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"luistert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"klemmetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schimpend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"echtpaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"literatuuropgaven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"herinnert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"begeleiders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"situaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aangebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verbijsterde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"rustiger\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"make-ups\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"trend\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broodschrijvers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tweede\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"toekomen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"werken\": [\n    \"V(intrans,inf)\",\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"vensterbanken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"openbaar-vervoer-safari\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"slavernij\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"patienten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"muur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Lourdes\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bethesda\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Thiel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"meende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verveel\": [\n    \"V(refl,ott,1,ev)\"\n  ],\n  \"geschuwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vriendschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"betrekkingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"reddingsduikboot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eitjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"poespas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uiteinde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"welvaartsvaste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vaststellen\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"zeiden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"broodsnijmachine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"greppel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"massa\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kostte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"welke\": [\n    \"Pron(vrag,neut,zelfst)\",\n    \"Pron(betr,gen,zelfst)\"\n  ],\n  \"Toch\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"koortsachtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"noodzaak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"milieuvervuiling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weerspiegeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vegen\": [\n    \"V(trans,inf)\"\n  ],\n  \"opwindends\": [\n    \"V(intrans,teg_dw,verv_gen)\"\n  ],\n  \"Rusland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"care\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Alles\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"studies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prikkels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"prikkelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"bezwaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"azalea\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"slagroom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vestiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meewerkten\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"vogeltjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedroogde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"firmanaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijnaam\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teckels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Zulk\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"Integendeel\": [\n    \"Int\"\n  ],\n  \"wijder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"gooi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangetoond\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"knopen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Andre\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vernuft\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"genitalien\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zwakke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bewoonster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ophalen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"roerstokjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schijnen\": [\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"......\": [\n    \"Punc(hellip)\"\n  ],\n  \"overleed\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Gezin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"casu\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Meesters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"identificeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"rouge\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vissers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Onder\": [\n    \"Prep(voor)\"\n  ],\n  \"siert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"maakten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(refl,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"weergave\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boerenkinderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"risico's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Toen\": [\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,aanw)\"\n  ],\n  \"uniform\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aardrijkskunde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stemmetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doodziek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mazelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Frazier\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"excuus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sigarebandjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zand-\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"talen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bent\": [\n    \"V(hulp_of_kopp,ott,2,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"zuigelingensterfte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"commercie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vanmorgen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Chauffeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Moeilijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Frankie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gemeubileerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"skiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"grijpen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"innamen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"gecombineerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zwart-witbeelden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schandpaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tongetjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vannacht\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"zwijgend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"aftrekposten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overblijfselen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kruckenhauser\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Bedrog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verliest\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"juryrapport\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broederschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alimentatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"communistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"overbeweiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Thijs\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"polijstpasta\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"prijkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Wetenschappelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"meevoerend\": [\n    \"V(trans,teg_dw,onverv)\"\n  ],\n  \"filmtijdschriften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zuinig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"problemen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Paola\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Caesar\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zieken\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"zorgen\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\"\n  ],\n  \"zake\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"verlorene\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"ontdekkingsreiziger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maaltijden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"natuurlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tegemoet\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Philips\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gedenkteken\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzetten\": [\n    \"V(refl,inf)\"\n  ],\n  \"biedt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Groenland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"halfgestopte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"randjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"botsing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"berg\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"seksueel\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"opknappen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Manny\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"socialist\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werknemers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gaan\": [\n    \"V(intrans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(hulp,inf)\",\n    \"V(intrans,inf,subst)\"\n  ],\n  \"vervelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"ondanks\": [\n    \"Prep(voor)\"\n  ],\n  \"beschadigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verbrassende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"Country\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Helemaal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gaat\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,imp)\",\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"vreugdedans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goud\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"tekst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"staatsprijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kanker\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vistochtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"samenlevingsstructuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"volgend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"weleer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"ontruimd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Trastevere\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sierlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ontketend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"menselijke\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"Niettemin\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"'70-'71\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"SGP\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"best\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,overtr,onverv)\"\n  ],\n  \"Pant\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volgens\": [\n    \"Prep(voor)\"\n  ],\n  \"Tibetaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Heiden\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"volkstuincomplexen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"regelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"gedronken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Nice\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"klinkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"eigenlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"inspanningen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jorma\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"sportief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wordt\": [\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(hulp_of_kopp,ott,2,ev)\"\n  ],\n  \"aanzienlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Worden\": [\n    \"V(hulp_of_kopp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Nico\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"veilinghuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Vraagt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"zang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dusver\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"banden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"op-\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geluisterd\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"journalisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ons\": [\n    \"Pron(bez,1,mv,neut,attr)\",\n    \"Pron(per,1,mv,dat_of_acc)\",\n    \"Pron(ref,1,mv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"round\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"nooit\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"Dream\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gebakken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"antirevolutionaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"dierbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Operatie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Papa\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geschiedt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Getrouwd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Sojoez-11\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitverkoren\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ploeteren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"oog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zodra\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"Kosten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ook\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"voorgelicht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"woensdag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Koster\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"natuurreservaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"oor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Dennendal\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"langer\": [\n    \"Adj(adv,vergr,onverv)\",\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"ademhalingswegen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Edward\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hertrouwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"diepzeehaai\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vaklien\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderwerpen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"televisieseizoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"lichamen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kortgeleden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"dappersten\": [\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"klaagt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"nieuwsgierigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"Niet\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"levensvisie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Godfried\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Doctoraal\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"weerkaatsen\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"spieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verouderingsproces\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stones\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Slangen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"recht-aan\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gegroeid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Mersham\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ontlasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Permanent\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Park\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bewees\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"eraan\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"nieuwbouwwijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"02550-15579\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"toonde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Garneer\": [\n    \"V(trans,imp)\"\n  ],\n  \"haalden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"dochtertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"moderator\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handenarbeidzaken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bloedplasma\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Anson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"wapenhandel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"karakteristiek\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"snakt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Third\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Toon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Amerika's\": [\n    \"N(eigen,ev,gen)\"\n  ],\n  \"monopolies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Salonwoorden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Arnhem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"eindje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"drinken\": [\n    \"V(trans,inf)\"\n  ],\n  \"knipperbollen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verzekering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oudere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"tochten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begeleidende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Drouin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bevelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"voorzien\": [\n    \"V(trans,inf)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"toeristen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voortdurend\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"systeem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Drie\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"nagenoeg\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"flauwe\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"voorziet\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"universiteitsgebouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ouders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"charmes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kutschinsky\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gezogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gemakkelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"grintpad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Arlbergpas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Cheverny\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"toekomst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"seksuele\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"huidige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"geloven\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,inf)\"\n  ],\n  \"devoot\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schuiven\": [\n    \"V(trans,inf)\"\n  ],\n  \"zwanger\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"spreekuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huwelijksfeesten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorbijgaan\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"verdeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kennedytraditie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glaasje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschiedde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"werkte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gebroken\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gericht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"behoren\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"kinderarts\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontberingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"speelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"autobiografie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedroeg\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"koel\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"aandringen\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"kracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versperden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"tegenvallers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Paul\": [\n    \"N(eigen,ev,neut)\",\n    \"Misc(vreemd)\"\n  ],\n  \"dessins\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sportieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Nyerere\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"iedere\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"vennoot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vorderingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verrichten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"onredelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"route\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erotisch-technische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"chauvinisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ieders\": [\n    \"Pron(onbep,gen,zelfst)\"\n  ],\n  \"historie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"garde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bovenaan\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"aan\": [\n    \"Prep(voor)\",\n    \"Prep(comb)\",\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"vereende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"V.S.\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Rob\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"lenen\": [\n    \"V(trans,inf)\"\n  ],\n  \"oud\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Nijs\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Napels\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"omgeving\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontworpen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Village\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Provence\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"herschrijft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"piste\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Straight\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"begeleidt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"verwerken\": [\n    \"V(trans,inf)\"\n  ],\n  \"scheidsrechter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"diplomatieke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"doorzien\": [\n    \"V(trans,inf)\"\n  ],\n  \"Menac\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"creme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wilde\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"Adj(attr,stell,verv_neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vorige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zuster\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verreweg\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"fikse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"reclamebureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gedegradeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verboden\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"garen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"straten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begrijpt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"bewaren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Cannes\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overdrijve\": [\n    \"V(intrans,conj)\"\n  ],\n  \"vasthoudt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"klaarlichte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"instigatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Price\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beginjaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inhouden\": [\n    \"V(trans,inf)\"\n  ],\n  \"ringetjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"butler\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ach\": [\n    \"Int\"\n  ],\n  \"moederziel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telegram\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"conversatiezaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beviel\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tochtje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"REACTIES\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"mensapen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"herstel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdachts\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"kankeren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"act\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"motief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dichters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"literatuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gepoetst\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"diefstal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"probeerden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"vaatziekten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vrachtwagens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sliep\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"alternatief\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwonderen\": [\n    \"V(refl,inf)\"\n  ],\n  \"verontwaardigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verbeeldingskracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verschillen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"fontein\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aapje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Slingelandt\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stemverheffing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zwerftochten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"delirium\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"proeven\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"Peterke\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"draaiboekauteurs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zevenhonderd\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"waardig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Chatillon-en-Bazois\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"rechtvaardigen\": [\n    \"V(trans,inf)\"\n  ],\n  \"accijnzen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zekerheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderhield\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"crepe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tafels\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"enthousiast\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"felle\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"felicitatiekaart\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hieronder\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"maten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Sabine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uiterlijk\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"koortsig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bewijzen\": [\n    \"V(trans,inf)\",\n    \"N(soort,mv,neut)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"verspilling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inheemse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"pijpers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"doordringen\": [\n    \"V(trans,inf)\"\n  ],\n  \"onderuitgezakt\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"ziekte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangehouden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"pioniers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"schaaldieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"machtszwakke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"diverse\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"aangepaste\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"koks\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ballen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Alassio\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"intrigeerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"honderdste\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"jicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bepaald\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Calabria\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ballet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"peperdure\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gereden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Annelies\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"feit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"betrekkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"verzorgde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Zuidlimburgers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dag\": [\n    \"Int\"\n  ],\n  \"geweldige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Italiaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"onderbouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"trillingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dan\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"aangekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"uitgedeeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vanzelfsprekend\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"heetst\": [\n    \"Adj(zelfst,overtr,onverv)\"\n  ],\n  \"Das\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Dat\": [\n    \"Pron(aanw,neut,zelfst)\",\n    \"Pron(aanw,neut,attr)\",\n    \"Conj(onder,met_fin)\"\n  ],\n  \"onbruikbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kinesica\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ruimtestation\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"januari\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Rue\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"keien\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Day\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Zonen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vuurwerk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkmethoden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"enigszins\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"grofheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"heette\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Christelijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schreven\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"volgezogen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gapt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"beeldcassette\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hebben\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"verzorgen\": [\n    \"V(trans,inf)\"\n  ],\n  \"magots\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"terugbrengen\": [\n    \"V(trans,inf)\"\n  ],\n  \"gegeten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"zolang\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"komt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(intrans,imp)\",\n    \"V(hulp_of_kopp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp_of_kopp,ott,2,ev)\"\n  ],\n  \"familieroman\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schakelde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"afbeeldingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"plukken\": [\n    \"V(trans,inf)\"\n  ],\n  \"make-up\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nadelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"goedhartig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gepleegd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Consumptiesex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"International\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bovendien\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"matig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Venusstraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"effectenbeurs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"perfectie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lukte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"worst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zonnekust\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorsprong\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gooien\": [\n    \"V(trans,inf)\"\n  ],\n  \"tweeentwintig\": [\n    \"Num(hoofd,bep,attr,onverv)\",\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"verhaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"liedjesteksten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rijksbureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezweren\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"isotonische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"schakelen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"overgelaten\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"peperduur\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kooi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zondagsavonds\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"kook\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"effect\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afspraken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hurkWC's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"koop\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\"\n  ],\n  \"huishoudgeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"koos\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"telde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"hoogconjunctuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boodschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gilden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"opvarenden\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"spottend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"formuleert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Ongeduldig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"BoymansVan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Fauriel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verkeersopvoeding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Den\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tanden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onze\": [\n    \"Pron(bez,1,mv,neut,attr)\"\n  ],\n  \"veroordeelde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"paniekje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Der\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kostelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Guernsey\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oppervlakte-temperatuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onveranderd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"nagedacht\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"najaarstrek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glipte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"veerkracht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toelaat\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"borrel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rampen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"trachten\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bijtijds\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"bondig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"pistolen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Bouchet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Incognita\": [\n    \"Misc(vreemd)\"\n  ],\n  \"voedingsstoffen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vermeldt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"all\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Standen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"braken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"bastaard\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"China\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"als\": [\n    \"Conj(onder,met_fin)\",\n    \"Conj(neven)\"\n  ],\n  \"overjas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Ching\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verlangen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Utrecht\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Prima\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ongemotiveerd\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"klaagzangen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"werklustige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"regelmatig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Julius\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afkomstig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"leeftijdsverloochening\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nadelig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"innemen\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"appartement\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aalmoezenier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gauw\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"blonde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"opeens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"disfunktioneel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Robbe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verbintenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"decors\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onbeheerst\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Provo-beweging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"versterkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"snel\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"krachten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Victor\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geliefde\": [\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"behandeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"buurvrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gave\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jaloezie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kort\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"behoorden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"Griekse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"summum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onvermijdelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pantry\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"broer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"teweer\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"and\": [\n    \"Misc(vreemd)\",\n    \"N(soort,mv,neut)\",\n    \"N(eigen,ev,neut)\",\n    \"N(eigen,mv,neut)\"\n  ],\n  \"Vroeger\": [\n    \"Adj(adv,vergr,onverv)\"\n  ],\n  \"therapeute\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onbewuste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"knalde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Prins\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"eveneens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"onafhankelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verzolen\": [\n    \"V(trans,inf)\"\n  ],\n  \"weerkeert\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"informatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"telefoonverbinding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dirigisme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kerstmis\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"achteraf\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pad\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedreigd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Belangrijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vertoonde\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bedekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kost\": [\n    \"V(trans,ott,3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"toenemende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"pak\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,imp)\",\n    \"V(intrans,imp)\"\n  ],\n  \"moederonderzeeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pal\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"behoeftigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"watertje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Die\": [\n    \"Pron(aanw,neut,attr)\",\n    \"N(eigen,ev,neut)\",\n    \"Pron(betr,neut,zelfst)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"verpleegtehuizen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pas\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"N(soort,ev,neut)\",\n    \"V(intrans,imp)\"\n  ],\n  \"ontvangen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Dik\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"rodehond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ingeslagen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"rationeel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lipgloss\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"werkzaam\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pay\": [\n    \"Misc(vreemd)\"\n  ],\n  \"voorschriften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"erdoorheen\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"verrukt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Dit\": [\n    \"Pron(aanw,neut,zelfst)\",\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"brandblaren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zachtmoedige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jezelf\": [\n    \"Pron(ref,2,ev)\"\n  ],\n  \"Frans\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kaap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Philadelphia\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Hindeloper\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ellebogen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Franz\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kaas\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontbieden\": [\n    \"V(trans,inf)\"\n  ],\n  \"bekroond\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"koud\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verveling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"theorie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Gerrit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"beschaamd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geslaagde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"kritiek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"letter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tocht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eidooiers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"18de\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"meega\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"verwerkte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kous\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tikte\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"amerikaans\": [\n    \"Adj(attr,stell,verv_gen)\"\n  ],\n  \"Trouw\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"springvorm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"concurreren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"dienen\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"contact\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belichaming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behoefte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eind\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snij\": [\n    \"V(trans,imp)\"\n  ],\n  \"lichtheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"complicaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Hoogenboom\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Provinciale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"vermocht\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"opeten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"beledigden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"blijmoedigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Amerikaanse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"volkomen\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"burgerpersoneel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kuif\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"miljonairs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"inlichtingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overtredingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"New-York\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"normen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Goren\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"leefden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"uitgezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"arm\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hulpelozer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"27.000\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"duidelijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"rechtlijnig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bekende\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"orgasmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Trade\": [\n    \"Misc(vreemd)\"\n  ],\n  \"zindelijkheidstraining\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"badmintonwedstrijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitzonderingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wintersport\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vaticaan\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tuin-schoonheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermijdbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stuurde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verlegen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"per\": [\n    \"Prep(voor)\"\n  ],\n  \"dogela's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"pet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geschreven\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"klassenstrijd\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mijdende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"ontsnappen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"schouder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Veenestraat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bitterballen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stommigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rijst\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Rien\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gespannen\": [\n    \"Adj(attr,stell,onverv)\",\n    \"V(trans,verl_dw,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"piloten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Elsje\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Spanjaarden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanhangig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Hayworth\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Riet\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verloskundige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"menstruatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezittingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Broadway\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"overkomen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"instituut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voortkronkelende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"brandstichtingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"algeheel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"lijfwacht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Schokkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"gedeprimeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Chen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vonkende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"Boer-van\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Minnema\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Harry\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"WAREN\": [\n    \"V(hulp_of_kopp,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"romans\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ernstige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"San\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"milieu\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Carnac\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gestoken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"organische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"christelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"liedjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"computer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ergens\": [\n    \"Adv(gew,onbep)\",\n    \"Adv(pron,onbep)\"\n  ],\n  \"besproeien\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"milieuverontreiniging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kwispelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Brussels\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"prestatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duurdere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"homofilie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderzocht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"doorging\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"richting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Saloon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Brugge\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Adultery\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ziekenkamer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Bureau\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorkomende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"willen\": [\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,inf)\"\n  ],\n  \"schoenpoetswinkeltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verduisteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"zodoende\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Haaksbergen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"32-jarige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Dr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vermoedelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"familie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Duitssprekende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zoekt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"aftrekken\": [\n    \"V(trans,inf)\"\n  ],\n  \"pitjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"herhaling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gemotiveerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"verderfelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bloembodem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lagere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"Tegen\": [\n    \"Prep(voor)\"\n  ],\n  \"Sextant\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"omstandigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eist\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"pil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vooruitgegaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afdraaien\": [\n    \"V(trans,inf)\"\n  ],\n  \"Coler\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hadden\": [\n    \"V(hulp,ovt,1_of_2_of_3,mv)\",\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"pleidooi\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vakantie-contact\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geopend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Palmen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kunt\": [\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"courant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ouders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dunkt\": [\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"landhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duidelijk-Zweedse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ontstolen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"brood\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dacht\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verstond\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verklaard\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"gezinsmaaltijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"JEAN-LOUIS\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nageoogde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Westerse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ZuidLimburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"begeleid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"meent\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"adoptiebeleid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verdoofd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verklaart\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"broeken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"L'Air\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"brutaliteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zielen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Rijn\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Beckman\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aanvaarden\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\"\n  ],\n  \"miljonair\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderkomen\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"krantenproject\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sparta\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pitje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verbonden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"aangeraakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"traditioneel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ergere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"gebondenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hiernaast\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"Sex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grimmige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Iedere\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"uitwegen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"klokslag\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"papieren\": [\n    \"Adj(attr,stell,onverv)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"afschuwelijker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"indien\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"medewerking\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wrijven\": [\n    \"V(trans,inf)\"\n  ],\n  \"beweren\": [\n    \"V(trans,inf)\"\n  ],\n  \"plakjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"motoren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Natuuuurlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"hertogin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beleefdheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vervloekt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"dunne\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zestiende\": [\n    \"Num(rang,bep,attr,onverv)\",\n    \"Num(rang,bep,zelfst,onverv)\"\n  ],\n  \"Erkel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Gisteren\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Sera\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zorgvuldiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"cijferen\": [\n    \"V(trans,inf)\"\n  ],\n  \"rijken\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"prof.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"onberispelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Eigenlijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"stichting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opvangen\": [\n    \"V(trans,inf)\"\n  ],\n  \"rijker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"spasme\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezien\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"dergelijk\": [\n    \"Pron(aanw,neut,attr)\"\n  ],\n  \"pages\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"trachtte\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"kale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Vorige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"leiden\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"verstuurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Revolutie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"flessen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"blijf\": [\n    \"V(hulp_of_kopp,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"leider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kalm\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hortend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"geschriften\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"blijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stroken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"milligram\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"algehele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"proef\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Kluns\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Meighen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Stel\": [\n    \"V(trans,imp)\"\n  ],\n  \"merkten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"mamuthones\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"donker\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Dus\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Campagnolo\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vloeimest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verloop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verloor\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Butler\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"eigen\": [\n    \"Pron(aanw,neut,attr,w_eigen)\",\n    \"Pron(onbep,neut,attr)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"pnd\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ooit\": [\n    \"Adv(gew,onbep)\"\n  ],\n  \"pauze\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"folkloristisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Recht-toe\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kranten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"groeien\": [\n    \"V(intrans,inf)\"\n  ],\n  \"kamp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Neemt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"gekocht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"huurder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"heersers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kapsel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"autootje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ergeren\": [\n    \"V(refl,inf)\"\n  ],\n  \"gesigneerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"naartoe\": [\n    \"Adv(deel_adv)\"\n  ],\n  \"borduurnaald\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nonnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wijn-en-spijs-journalisten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"oorspronkelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"linie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"probeer\": [\n    \"V(trans,imp)\"\n  ],\n  \"souvereine\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ambtelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"terwijl\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"vaders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"nummers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Seth\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Beatles\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"meten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gesproken\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"bezitten\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"kookt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"leeftijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gehandicapte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"lekker\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"meter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kang\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Eskimo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ineens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"vuiltje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vriendinnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"simplistische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Sir\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Sit\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geparkeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"pop\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziekenauto\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Alghero\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inmiddels\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"marktaandelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"meest\": [\n    \"Adv(gew,geen_func,overtr,onverv)\",\n    \"Num(hoofd,onbep,attr,overtr,onverv)\",\n    \"Num(hoofd,onbep,zelfst,overtr,onverv)\"\n  ],\n  \"inenten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"proces\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwerping\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afgeven\": [\n    \"V(intrans,inf)\"\n  ],\n  \"braak\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"laboratorium\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontvangst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"misselijkheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"arsenaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"t.a.v.\": [\n    \"Prep(voor)\"\n  ],\n  \"verhoudingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Dwars\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"rivier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"hoogstens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"gelijkvormige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"films\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ultrafijne\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"meespeelden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"beurs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorleef\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"argument\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"donderdag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"liefdadigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"konservatieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Amersfoortse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"buik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Blik\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stellingname\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zitting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"laboranten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"buis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Heren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"buit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Turkije\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verstaan\": [\n    \"V(trans,inf)\"\n  ],\n  \"fantasie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"passende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"enclave\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verstaat\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"links\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"blind\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"buikig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"adjudant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aankwamen\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"schoongewaaid\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"zoete\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"afstoting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Trapp\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dienst\": [\n    \"N(soort,ev,neut)\",\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Anton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"feilloze\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"borden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ontdekken\": [\n    \"V(trans,inf)\"\n  ],\n  \"hierheen\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"bordes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Chr.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"telefoontje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zingen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"traditionele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"buikje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ambitieus\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"bewerkt\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"fouten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"laatste\": [\n    \"Adj(attr,overtr,verv_neut)\",\n    \"Adj(zelfst,overtr,verv_neut)\"\n  ],\n  \"blijvend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"type\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"passage\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handfuncties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"avondeten\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"doorbraak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brandend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"spijt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"opzicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"impotentie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kampen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"geworpen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"sociaaleconomisch\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"ineenstorten\": [\n    \"V(intrans,inf,subst)\"\n  ],\n  \"getinte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"rellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"sadistisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gisting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontwikkeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"rondloopt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"seizoenen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onbetamelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"ingevoerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nadien\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Zolang\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"stemming\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"symbolen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"haute-couture\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verzameling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"glimlachende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"kalend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"arresteerde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"informeert\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"hardgekookte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"miste\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"ligging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lieveling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"obligaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Louise\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pluizenraper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"capituleer\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Complimenteus\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"verdienen\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"sterveling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"staken\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"wijten\": [\n    \"V(trans,inf)\"\n  ],\n  \"Christus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Presentatrice\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Pere-Lachaise\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwierf\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"TNO\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"talenten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"overschreden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"beleefd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Lapland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bad\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"leraren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kast\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangetroffen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vlekkies\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ballingschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Rita\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"strafbehoefte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Boeing\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bak\": [\n    \"V(trans,imp)\"\n  ],\n  \"Armonada\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kapsones\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onvrij\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"nalopen\": [\n    \"V(trans,inf)\"\n  ],\n  \"alsjeblieft\": [\n    \"Int\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"beleeft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Gedroogd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"voortreffelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"bar\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"raadzaal\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Afgelopen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"nachtmerrie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkrachtingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Sol\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Son\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gladde\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"belangrijker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"wringen\": [\n    \"V(trans,inf)\"\n  ],\n  \"waggelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"muziekinstituut\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"terugkwam\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gronden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onwaarschijnlijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Indonesie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"houding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verstoort\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"polio\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Central\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"stokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"polis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"breken\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"iiii\": [\n    \"Num(hoofd,bep,zelfst,onverv)\"\n  ],\n  \"Nederland\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"april\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zeuren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"achterhalen\": [\n    \"V(trans,inf)\"\n  ],\n  \"wegspoelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"schaapsherder\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"instructie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Oude\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"spirit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bordje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Amerikanen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Delft\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gereedschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dichtgehouden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kauw\": [\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Bijlmermeer\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"haute-finance\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blikken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Kennelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"olifant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ontmoeten\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Verbondsvergadering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gesneden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"thans\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(gew,aanw)\"\n  ],\n  \"allerhande\": [\n    \"Pron(onbep,neut,attr)\"\n  ],\n  \"Plotseling\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"schieten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"foutje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zinde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"toegediend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"haring\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oppositieleider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behelpen\": [\n    \"V(refl,inf)\"\n  ],\n  \"vroegere\": [\n    \"Adj(attr,vergr,verv_neut)\"\n  ],\n  \"minderwaardigheidsgevoelens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Weet\": [\n    \"V(trans,ott,2,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"meubelplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"iemand\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"individueel\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"PARIJS\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gemist\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"driedimensionaal\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"verkochten\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"openingetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"secundaire\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"jongeren\": [\n    \"Adj(zelfst,vergr,verv_neut)\",\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"controleren\": [\n    \"V(trans,inf)\"\n  ],\n  \"overgebracht\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"heide\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Verantwoorde\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"minderjarigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"St.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"reumatische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fotograferende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"gehaakte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"bed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"da's\": [\n    \"V(hulp_of_kopp,ott,3,ev)\"\n  ],\n  \"filmscript\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vissen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,inf)\"\n  ],\n  \"bek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zuchtte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"bel\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Wanneer\": [\n    \"Conj(onder,met_fin)\",\n    \"Adv(gew,betr)\"\n  ],\n  \"ben\": [\n    \"V(hulp_of_kopp,ott,1,ev)\",\n    \"V(hulp_of_kopp,ott,2,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Loopt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"pijnloos\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vrouw-vrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gunstiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"bepalen\": [\n    \"V(trans,inf)\"\n  ],\n  \"erbij\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"klaagde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"verbondenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grondig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Alexander\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hersencellen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Corner\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kistje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onderwijs\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veertienjarig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Arend\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Sta\": [\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"passant\": [\n    \"Misc(vreemd)\"\n  ],\n  \"doodgewone\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tamelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"florissant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"objecten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Chauvin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"verwrongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"opgevoed\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"consideratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"reumatisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"blauwbloedigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"advies\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"atoomduikboot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"veranda\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"begin\": [\n    \"N(soort,ev,neut)\",\n    \"V(trans,ott,1,ev)\",\n    \"V(intrans,ott,1,ev)\"\n  ],\n  \"Dreimaderlhaus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"dagboek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vader\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brillen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"biljardairs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"NOS-schakelcentrum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"donzen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"hertrouwde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"geopenbaard\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Acifit-ploegleider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"erfelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Letter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vastbindt\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"rijkdom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overtreft\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Damas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"predikant\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"indenken\": [\n    \"V(trans,inf)\"\n  ],\n  \"loodje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eensterre-restaurants\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kenden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"chronische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"FBO\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"ouderlijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"vastgezet\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"broedgelegenheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"galbulten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bankier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verscheurd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"metro\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fantastische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"ingehaald\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ontstegen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Honderden\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"terechtgekomen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"Craig\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"TREFFEN\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"ademnood\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"brand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"spits\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"GrootBrittannie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"riepen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"voortvloeiden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"lakens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bij\": [\n    \"Prep(voor)\",\n    \"Adv(deel_v)\",\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adv(deel_adv)\"\n  ],\n  \"reisgezelschap\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"stromende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"portretten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Boven\": [\n    \"Prep(voor)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"d'r\": [\n    \"Pron(bez,3,ev,neut,attr)\"\n  ],\n  \"afgeweest\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verkeersongelukken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vijzelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"Picpus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kunnen\": [\n    \"V(hulp,inf)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"idylles\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Rhoda\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"suede\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verkeer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"praat\": [\n    \"V(intrans,ott,1,ev)\",\n    \"V(intrans,ott,2,ev)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"Ede\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gebruiken\": [\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Stadionweg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"anderen\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"Dingsda\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Huyskens\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"winkelen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"verstand\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tachtig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"Toetela\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"knikte\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"economisch\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Duits\": [\n    \"Adj(zelfst,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Cijfers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"doordrinkt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"verleiden\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"hoegenaamd\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Welk\": [\n    \"Pron(vrag,neut,zelfst)\"\n  ],\n  \"Perzen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Well\": [\n    \"Misc(vreemd)\"\n  ],\n  \"troffen\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"slaat-ie\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"december\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"landbouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"solidariteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kritische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"pikant\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"individuele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"melodieen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanwezige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"smerig\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"allang\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"rotsen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Duits-Nederlandse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Chambord\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"aldus\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"hurken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Een\": [\n    \"Art(onbep,zijd_of_onzijd,neut)\",\n    \"Num(hoofd,bep,zelfst,onverv)\",\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"dialoog\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"medelijden\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"mishandeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vergoeden\": [\n    \"V(trans,inf)\"\n  ],\n  \"menigte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onthouding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"principe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gehoorzaamden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"verbod\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"ziekelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"beschouwd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"ontsteld\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Delon\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"artikel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sterrenbeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"alleenrecht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"sportnieuws\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handleiding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nieuwenhuizen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"probleem\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beschouwt\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"Flas\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"organisaties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"reisbureaus\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gevangen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"nauwelijks\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Ergens\": [\n    \"Adv(pron,onbep)\"\n  ],\n  \"bevat\": [\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"subliem\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Indian\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Tommy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"buitenromp\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vreugde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorwerpen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begon\": [\n    \"V(hulp,ovt,1_of_2_of_3,ev)\",\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"gezinsleven\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opgehouden\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Willem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vrij\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gedragingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"begint\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,3,ev)\"\n  ],\n  \"soep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewone\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"plan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kijken\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"ontzettende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gebieden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"zulke\": [\n    \"Pron(aanw,dat,attr)\"\n  ],\n  \"beschreven\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"prolongatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plat\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"geladen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Patroni\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"woedt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"verdwenen\": [\n    \"V(intrans,verl_dw,onverv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"slaperigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toaalbeeld\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"snackbar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Peinzend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"opgedroogd\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"populariteit\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jenny\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hieromtrent\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"schitteren\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Vijf\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"taxichauffeur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Blaise\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waargemaakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"kneep\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"stick\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"herkende\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"begonne\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"gewoon\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"afknippen\": [\n    \"V(trans,inf)\"\n  ],\n  \"oproep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zelfstandigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"compromis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"oproer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Jacobus\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nodige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"bod\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bof\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eigendom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorlichting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"restanten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"FIM\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"bom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bos\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vermoeidheidverschijnselen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"commerciele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Hommes\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"waardoor\": [\n    \"Adv(pron,betr)\",\n    \"Adv(pron,vrag)\"\n  ],\n  \"melkhandelaar\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"neem\": [\n    \"V(trans,imp)\",\n    \"V(trans,ott,2,ev)\",\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"complex\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gevarieerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geconstateerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"neer\": [\n    \"Adv(deel_v)\"\n  ],\n  \"grondbelasting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toegedaan\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Voorzichtig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"tijdverdrijf\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"University\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"reisdoel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behoeven\": [\n    \"V(hulp,inf)\"\n  ],\n  \"opdoemen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Ruime\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Burton\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"klokkeluider\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voorbereidselen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"afgelegen\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"colleges\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bevel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Voortaan\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Werp\": [\n    \"V(trans,imp)\"\n  ],\n  \"harmonie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nabuureiland\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"halfslachtigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Indien\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"speciale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Afgaande\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"industrie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Willie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"opgevoerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Arabieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"varkensvlees\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Nieuwjaarsdag\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"schepper\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verwijten\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"spiraalvormige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"zaaks\": [\n    \"N(soort,ev,gen)\"\n  ],\n  \"maandelijkse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"plek\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"draden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"West\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Glans\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bomen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Elk\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"verschil\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"achtergrond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aarzelt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"behoede\": [\n    \"V(trans,conj)\"\n  ],\n  \"alsof\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"profeet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"huursom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"revolutiontair\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"persagent\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"schoonheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onvervangbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"snufje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gemutst\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"kampementen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kleuradvies\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opname\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wrange\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"knorde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"flats\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"verbreken\": [\n    \"V(trans,inf)\"\n  ],\n  \"Verbond\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boekenkast\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Psychologen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Soestdijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Roche\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"nature\": [\n    \"N(soort,ev,dat)\"\n  ],\n  \"Bardot\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"moeite\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanzetten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"lampjes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"technologie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wijzerplaat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gunstigst\": [\n    \"Adj(attr,overtr,onverv)\"\n  ],\n  \"Oosten\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zwijgen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"snelheidsovertredingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"wetten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Borneo-SumatraHandelmaatschappij\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Ineens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"flauw\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"toegezwaaid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"daarin\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"kastekort\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opwinding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beschikken\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(trans,inf)\"\n  ],\n  \"decor\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"behoeft\": [\n    \"V(hulp,ott,3,ev)\",\n    \"V(trans,ott,3,ev)\"\n  ],\n  \"streek\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\",\n    \"N(soort,ev,neut)\"\n  ],\n  \"regeringsschijven\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Honderdvijftig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"tweeenvijftig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"kralenkransen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gedwongen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"streep\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"eerbied\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"vertederd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vlaktes\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gestolen\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"opeenstapeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Vietnamese\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"fantaseerden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"peterselie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"plannen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vertelden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\",\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"hoofd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"organisatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"fornuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"India\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"muren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"soms\": [\n    \"Adv(gew,aanw)\",\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stijf\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"vermande\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"geroken\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"relatief\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"VVV's\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Jamesy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gedoe\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"frappante\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Indie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"afhangt\": [\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"stijl\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"voldoende\": [\n    \"Pron(onbep,neut,attr)\",\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"actrice\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"democratie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kopen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"anderhalf\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"keuzevakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"televisie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"intelligent\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"chaos\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"akelige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"concentreren\": [\n    \"V(refl,inf)\"\n  ],\n  \"scala\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gewoonten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"natuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"girls\": [\n    \"Misc(vreemd)\"\n  ],\n  \"Marrat\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"derde\": [\n    \"Num(rang,bep,attr,onverv)\"\n  ],\n  \"intellectuele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"eenvoudig\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"wagens\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tempo\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gebeurtenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Omgerekend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Amerikaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"avondwandelingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"terugtrok\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"tussentijd\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"afstandelijk\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"historische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"coitus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"1,80\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"slechte\": [\n    \"Adj(attr,stell,verv_neut)\",\n    \"Adj(zelfst,stell,verv_neut)\"\n  ],\n  \"naamplaatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verrijzen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"open\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Verre\": [\n    \"N(eigen,ev,neut)\",\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Parijse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"reclamespot\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"steken\": [\n    \"V(trans,inf)\"\n  ],\n  \"ijverige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"winter\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wettig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"slechts\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Bloedschande\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gordijnen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gast-arbeiders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Gwen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tenzij\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"lichtzinnigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Personality\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"garanderen\": [\n    \"V(trans,inf)\"\n  ],\n  \"1,90\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"prille\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"symbool\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"toneel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"verontschuldigingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onderduikers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vreemdeling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Tweeentwintig\": [\n    \"Num(hoofd,bep,attr,onverv)\"\n  ],\n  \"gebruikte\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"Ten\": [\n    \"Prep(voor)\"\n  ],\n  \"goudlame\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"terloops\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"betrof\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Kersentuin\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Niets\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"openbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"daarna\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"avonduren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gediend\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"renteniers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"beleid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"melden\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"bewust\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"werktuigelijk\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"groen-groen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"vitale\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"plakken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voorvaderen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"handiger\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"dierenliefde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Curacao\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"pianoles\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"onzichtbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Oostenrijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"haardvuur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"anticonceptie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"weemoedig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Nieuw\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kopie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"parfum\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beroemdheden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"jachtgeweer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opmerkelijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"spirituele\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"besloot\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"vordering\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"daarom\": [\n    \"Adv(gew,aanw)\"\n  ],\n  \"Klaassenspel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Crazy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tennisbaan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bespeuren\": [\n    \"V(trans,inf)\"\n  ],\n  \"daarop\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"geschikt\": [\n    \"Adj(attr,stell,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"verknocht\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"respect\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"goedwillende\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Monroe\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"mijn\": [\n    \"Pron(bez,1,ev,neut,attr)\"\n  ],\n  \"Joegoslavie\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"turkoois\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"getransformeerde\": [\n    \"V(trans,verl_dw,verv_neut)\"\n  ],\n  \"zachte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitgebreid\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"recht\": [\n    \"N(soort,ev,neut)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"kopje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bezeten\": [\n    \"Adj(adv,stell,onverv)\",\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"centimeters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"actrices\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"hetgeen\": [\n    \"Pron(betr,neut,zelfst)\"\n  ],\n  \"schreien\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"gespecialiseerd\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"The\": [\n    \"N(eigen,ev,neut)\",\n    \"N(eigen,mv,neut)\"\n  ],\n  \"wenst\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"soorten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onzin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"wetenschappelijk\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"Eva\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"roemrucht\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"noemden\": [\n    \"V(trans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"v.Rh.\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"monteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"schoonmaak\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"pedofiel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"overigens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"belevenissen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"daarentegen\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"stipt\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"torsen\": [\n    \"V(trans,inf)\"\n  ],\n  \"wennen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"copulatie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zilvergrijs\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Grootpa\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Iemand\": [\n    \"Pron(onbep,neut,zelfst)\"\n  ],\n  \"mild\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Daarover\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"beenspieren\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"gesteund\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"afmaken\": [\n    \"V(trans,inf)\"\n  ],\n  \"magie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"maatschappijen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"min.\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"vervolgens\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Yersey\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Produkten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"klimrozen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"slanke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"temidden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"plaatje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beslissen\": [\n    \"V(intrans,inf)\",\n    \"V(trans,inf)\"\n  ],\n  \"Caraibische\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"Tja\": [\n    \"Int\"\n  ],\n  \"verliezen\": [\n    \"V(trans,inf)\",\n    \"V(intrans,inf)\",\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"Greene\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zweer\": [\n    \"V(trans,ott,1,ev)\"\n  ],\n  \"Johnson\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"zweet\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Katherine\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"uitgestorven\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"streng\": [\n    \"Adj(attr,stell,onverv)\",\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"balletgeschiedenis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dertien-\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ratsma\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"leeuwendeel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zigeunervrouw\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"nest\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"musicals\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"dunner\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"verbrijzeld\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"vleespasteitje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"levensduur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"emoties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"stijve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"kerstboom\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"dreiging\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"weiden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"adverteerders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"minirokken\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"bloemetje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aangifte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"benaderbaar\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"schoonzicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"presidente\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"jaartje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"haast-je-rep-jehuwelijk\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Deur\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"boeiende\": [\n    \"V(intrans,teg_dw,verv_neut)\"\n  ],\n  \"voorstellingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ratten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Eilanden\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"herenkleding\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"grenzen\": [\n    \"N(soort,mv,neut)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"eigenheimer\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"inrichting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"duidde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Sterker\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Misschien\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Limburg\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jules\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"veelsoortige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"gedaan\": [\n    \"V(trans,verl_dw,onverv)\",\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"ramadan\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aarde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"aanknopen\": [\n    \"V(trans,inf)\"\n  ],\n  \"inzicht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"blindedarm\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Belgisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"sonde\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"zusterhuis\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"beslaan\": [\n    \"V(trans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"tijden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voortkomen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"moderne\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"tegenstanders\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"argwanender\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"neus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitgangspunt\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"belevings-\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Carola\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Rotterdam\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"geringer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"Hoofd-van-de-Dienst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kamelen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"duiden\": [\n    \"V(trans,inf)\",\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"prachtige\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"stalde\": [\n    \"V(trans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"onlangs\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"waardelozer\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"autoriteiten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"ondergeschikte\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"uitgevallen\": [\n    \"V(intrans,verl_dw,onverv)\"\n  ],\n  \"werksters\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Ziet\": [\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"peinzen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\"\n  ],\n  \"vrienden\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"voornamelijk\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"verpakt\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"geconsumeerd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"smartlapen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tinteling\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"akte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bevallen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"beschrijven\": [\n    \"V(trans,inf)\"\n  ],\n  \"Vogelaars\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"gespaard\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"Guerrero\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"kruisbes\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bedenken\": [\n    \"V(trans,inf)\",\n    \"V(trans,inf,subst)\",\n    \"V(refl,inf)\"\n  ],\n  \"Hoogendijk\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"plus\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"naieve\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"genoemd\": [\n    \"V(trans,verl_dw,onverv)\"\n  ],\n  \"hoorn\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Fantastisch\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Ijssel\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"boeken\": [\n    \"N(soort,mv,neut)\",\n    \"V(trans,inf)\"\n  ],\n  \"Kunnen\": [\n    \"V(intrans,ott,1_of_2_of_3,mv)\",\n    \"V(hulp,ott,1_of_2_of_3,mv)\"\n  ],\n  \"hardnekkig\": [\n    \"Adj(adv,stell,onverv)\"\n  ],\n  \"d'Indy\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hoort\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"cognac\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Zoals\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"verdiepingen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"onverwoestbare\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"burger\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"meewerken\": [\n    \"V(intrans,inf)\"\n  ],\n  \"client\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"lepel\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"qua\": [\n    \"Prep(voor)\"\n  ],\n  \"natuurlijk\": [\n    \"Adj(adv,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"Romeins\": [\n    \"Adj(zelfst,stell,onverv)\"\n  ],\n  \"anjers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aanhoren\": [\n    \"V(trans,inf)\"\n  ],\n  \"Tom\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"tegenvallen\": [\n    \"V(intrans,inf)\"\n  ],\n  \"Top\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Hebt\": [\n    \"V(hulp,ott,2,ev)\",\n    \"V(trans,ott,2,ev)\"\n  ],\n  \"O'Hara\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"songs\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Tot\": [\n    \"Prep(voor)\"\n  ],\n  \"bevonden\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"scholieren\": [\n    \"N(eigen,ev,neut)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"toegesnelde\": [\n    \"V(intrans,verl_dw,verv_neut)\"\n  ],\n  \"Doetichem\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"hinderlijke\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"politicus\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Laurent\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"oogmake-up\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Deze\": [\n    \"Pron(aanw,neut,attr)\",\n    \"Pron(aanw,neut,zelfst)\"\n  ],\n  \"speelt\": [\n    \"V(trans,ott,3,ev)\",\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"duurden\": [\n    \"V(intrans,ovt,1_of_2_of_3,mv)\"\n  ],\n  \"leefde\": [\n    \"V(intrans,ovt,1_of_2_of_3,ev)\"\n  ],\n  \"Vaste\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"duurder\": [\n    \"Adj(attr,vergr,onverv)\"\n  ],\n  \"gaten\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"Moet\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(hulp,ott,2,ev)\"\n  ],\n  \"voorkomend\": [\n    \"V(intrans,teg_dw,onverv)\"\n  ],\n  \"Zaken\": [\n    \"N(eigen,mv,neut)\",\n    \"N(soort,mv,neut)\"\n  ],\n  \"godsdienst\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"opofferen\": [\n    \"V(trans,inf)\"\n  ],\n  \"zwerfkat\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bekvechten\": [\n    \"V(intrans,inf)\"\n  ],\n  \"voorspellende\": [\n    \"V(trans,teg_dw,verv_neut)\"\n  ],\n  \"getiteld\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"amper\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"mist\": [\n    \"N(soort,ev,neut)\",\n    \"V(intrans,ott,3,ev)\"\n  ],\n  \"red.\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Duitsers\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"aansluiting\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"uitdelen\": [\n    \"V(trans,inf)\"\n  ],\n  \"weemoed\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kopse\": [\n    \"Adj(attr,stell,verv_neut)\"\n  ],\n  \"adrenaline-injectie\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"gerucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Daarnaast\": [\n    \"Adv(pron,aanw)\"\n  ],\n  \"portier\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"Borsen\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"Jacobs\": [\n    \"N(eigen,ev,neut)\"\n  ],\n  \"porties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"tijdje\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"handschrift\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"bijspijkeren\": [\n    \"V(trans,inf)\"\n  ],\n  \"vreemdsoortig\": [\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"gemakzucht\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"MEISJE\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"tante\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"kopend\": [\n    \"V(trans,teg_dw,onverv)\"\n  ],\n  \"mascotte\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"coupures\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"kijkt\": [\n    \"V(intrans,ott,3,ev)\",\n    \"V(intrans,ott,2,ev)\"\n  ],\n  \"stimuleren\": [\n    \"V(trans,inf,subst)\"\n  ],\n  \"dicht\": [\n    \"Adv(gew,geen_func,stell,onverv)\",\n    \"Adj(attr,stell,onverv)\"\n  ],\n  \"mits\": [\n    \"Conj(onder,met_fin)\"\n  ],\n  \"beticht\": [\n    \"V(refl,verl_dw,onverv)\"\n  ],\n  \"smerigheid\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"geleden\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"Papa's\": [\n    \"N(eigen,mv,neut)\"\n  ],\n  \"hanteren\": [\n    \"V(trans,inf)\"\n  ],\n  \"vriendin\": [\n    \"N(soort,ev,neut)\"\n  ],\n  \"landschappen\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"etcetera\": [\n    \"Adv(gew,geen_func,stell,onverv)\"\n  ],\n  \"infecties\": [\n    \"N(soort,mv,neut)\"\n  ],\n  \"6-jarigen\": [\n    \"Adj(zelfst,stell,verv_mv)\"\n  ],\n  \"gedroeg\": [\n    \"V(refl,ovt,1_of_2_of_3,ev)\"\n  ]\n}"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/README.txt",
    "content": "The tranformation rules in tr_from_brill_paper.txt are from this article:\nA 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\n\nThe lexicon in lexicon_from_posjs.json is from:\nhttps://github.com/dariusk/pos-js\n\nThe transformation rules in tr_from_posj.txt are derived from Javascript code in:\nBrillTransformationRules.js from https://github.com/dariusk/pos-js/\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/lexicon_from_posjs.json",
    "content": "{\n    \"'\": [\n        \"\\\"\"\n    ],\n    \"\\\"\": [\n        \"\\\"\"\n    ],\n    \"Ranavan\": [\n        \"NNP\"\n    ], \n    \"fawn\": [\n        \"NN\"\n    ], \n    \"pro-Soviet\": [\n        \"JJ\"\n    ], \n    \"Hydro-Electric\": [\n        \"NNP\"\n    ], \n    \"waste-disposal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"chameleons\": [\n        \"NNS\"\n    ], \n    \"clotted\": [\n        \"JJ\"\n    ], \n    \"spiders\": [\n        \"NNS\"\n    ], \n    \"verses\": [\n        \"NNS\"\n    ], \n    \"hanging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hawaiian\\\\/Japanese\": [\n        \"JJ\"\n    ], \n    \"hastily\": [\n        \"RB\"\n    ], \n    \"comically\": [\n        \"RB\"\n    ], \n    \"REIS\": [\n        \"NNP\"\n    ], \n    \"localized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"spidery\": [\n        \"JJ\"\n    ], \n    \"disobeying\": [\n        \"VBG\"\n    ], \n    \"marketing-wise\": [\n        \"JJ\"\n    ], \n    \"plant-closing\": [\n        \"JJ\"\n    ], \n    \"Archuleta\": [\n        \"NNP\"\n    ], \n    \"refunding\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Western\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"wrought-iron\": [\n        \"JJ\"\n    ], \n    \"Gravesend\": [\n        \"NNP\"\n    ], \n    \"government-to-government\": [\n        \"JJ\"\n    ], \n    \"Euro\": [\n        \"NNP\"\n    ], \n    \"familiarness\": [\n        \"NN\"\n    ], \n    \"slothful\": [\n        \"JJ\"\n    ], \n    \"Valle\": [\n        \"NNP\"\n    ], \n    \"Famed\": [\n        \"JJ\"\n    ], \n    \"Blade\": [\n        \"NNP\"\n    ], \n    \"Poetry\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mizell\": [\n        \"NNP\"\n    ], \n    \"plant-modernization\": [\n        \"JJ\"\n    ], \n    \"Rizopolous\": [\n        \"NNP\"\n    ], \n    \"seamier\": [\n        \"JJR\"\n    ], \n    \"wooded\": [\n        \"JJ\"\n    ], \n    \"grueling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Muniz\": [\n        \"NNP\"\n    ], \n    \"Amparano\": [\n        \"NNP\"\n    ], \n    \"Saco\": [\n        \"NNP\"\n    ], \n    \"Miert\": [\n        \"NN\"\n    ], \n    \"Sack\": [\n        \"NNP\"\n    ], \n    \"virtuosos\": [\n        \"NNS\"\n    ], \n    \"circuitry\": [\n        \"NN\"\n    ], \n    \"crotch\": [\n        \"NN\"\n    ], \n    \"Raptopoulos\": [\n        \"NNP\"\n    ], \n    \"Multilateral\": [\n        \"NNP\"\n    ], \n    \"S-D\": [\n        \"NN\"\n    ], \n    \"immunities\": [\n        \"NNS\"\n    ], \n    \"all-news\": [\n        \"JJ\"\n    ], \n    \"Pinkerton\": [\n        \"NNP\"\n    ], \n    \"gaskets\": [\n        \"NNS\"\n    ], \n    \"Kibbutzim\": [\n        \"NNS\"\n    ], \n    \"Shocked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"deadheads\": [\n        \"NNS\"\n    ], \n    \"junkification\": [\n        \"NN\"\n    ], \n    \"Dixiecrat\": [\n        \"NNP\"\n    ], \n    \"Honorable\": [\n        \"NNP\"\n    ], \n    \"Olde\": [\n        \"NNP\"\n    ], \n    \"\": [], \n    \"snuggled\": [\n        \"VBD\"\n    ], \n    \"inanimate\": [\n        \"JJ\"\n    ], \n    \"errors\": [\n        \"NNS\"\n    ], \n    \"Initially\": [\n        \"RB\"\n    ], \n    \"self-reliant\": [\n        \"JJ\"\n    ], \n    \"defenses\": [\n        \"NNS\"\n    ], \n    \"Hamilton\": [\n        \"NNP\"\n    ], \n    \"HCFA\": [\n        \"NNP\"\n    ], \n    \"designing\": [\n        \"VBG\"\n    ], \n    \"numeral\": [\n        \"NN\"\n    ], \n    \"pawed\": [\n        \"VBN\"\n    ], \n    \"Kosonen\": [\n        \"NNP\"\n    ], \n    \"Designcraft\": [\n        \"NNP\"\n    ], \n    \"mailings\": [\n        \"NNS\"\n    ], \n    \"perforations\": [\n        \"NNS\"\n    ], \n    \"Sussman\": [\n        \"NNP\"\n    ], \n    \"affiliates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"advanced-ceramics\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"perfunctorily\": [\n        \"RB\"\n    ], \n    \"malunya\": [\n        \"NN\"\n    ], \n    \"affiliated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Footnotes\": [\n        \"NNS\"\n    ], \n    \"confronts\": [\n        \"VBZ\"\n    ], \n    \"small-screen\": [\n        \"JJ\"\n    ], \n    \"Manger\": [\n        \"NNP\"\n    ], \n    \"Manges\": [\n        \"NNP\"\n    ], \n    \"Bereuter\": [\n        \"NNP\"\n    ], \n    \"kids\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"uplifting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Downfall\": [\n        \"NNP\"\n    ], \n    \"deferring\": [\n        \"VBG\"\n    ], \n    \"controversy\": [\n        \"NN\"\n    ], \n    \"Keillor\": [\n        \"NNP\"\n    ], \n    \"neurologist\": [\n        \"NN\"\n    ], \n    \"electric-power\": [\n        \"JJ\"\n    ], \n    \"orthographies\": [\n        \"NNS\"\n    ], \n    \"Hafiz\": [\n        \"NNP\"\n    ], \n    \"sheep-lined\": [\n        \"JJ\"\n    ], \n    \"projection\": [\n        \"NN\"\n    ], \n    \"inflation-induced\": [\n        \"JJ\"\n    ], \n    \"Harvey\": [\n        \"NNP\"\n    ], \n    \"stern\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"insecurity\": [\n        \"NN\"\n    ], \n    \"Vernor\": [\n        \"NNP\"\n    ], \n    \"inevitable\": [\n        \"JJ\"\n    ], \n    \"Vernon\": [\n        \"NNP\"\n    ], \n    \"distortions\": [\n        \"NNS\"\n    ], \n    \"reasserting\": [\n        \"VBG\"\n    ], \n    \"sermons\": [\n        \"NNS\"\n    ], \n    \"grounds-care\": [\n        \"JJ\"\n    ], \n    \"populations\": [\n        \"NNS\"\n    ], \n    \"exuberantly\": [\n        \"RB\"\n    ], \n    \"Sindona\": [\n        \"NNP\"\n    ], \n    \"Hardshell\": [\n        \"NNP\"\n    ], \n    \"lankmark\": [\n        \"NN\"\n    ], \n    \"whole-heartedly\": [\n        \"RB\"\n    ], \n    \"Pedone\": [\n        \"NNP\"\n    ], \n    \"pay-movie\": [\n        \"JJ\"\n    ], \n    \"co-marketing\": [\n        \"JJ\"\n    ], \n    \"intake\": [\n        \"NN\"\n    ], \n    \"morally\": [\n        \"RB\"\n    ], \n    \"Indigo\": [\n        \"NNP\"\n    ], \n    \"Edgardo\": [\n        \"NN\"\n    ], \n    \"non-advertising\": [\n        \"JJ\"\n    ], \n    \"Reichhold\": [\n        \"NNP\"\n    ], \n    \"Gastronomy\": [\n        \"NNP\"\n    ], \n    \"old-guard\": [\n        \"JJ\"\n    ], \n    \"wiretapping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"deputy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"wand\": [\n        \"NN\"\n    ], \n    \"R.G.\": [\n        \"NNP\"\n    ], \n    \"grass-fed\": [\n        \"JJ\"\n    ], \n    \"Darling\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"disparagement\": [\n        \"NN\"\n    ], \n    \"titanium\": [\n        \"NN\"\n    ], \n    \"Tippecanoe\": [\n        \"NNP\"\n    ], \n    \"rayon\": [\n        \"NN\"\n    ], \n    \"pinto\": [\n        \"NN\"\n    ], \n    \"nondiscretionary\": [\n        \"JJ\"\n    ], \n    \"well-armed\": [\n        \"JJ\"\n    ], \n    \"Editorials\": [\n        \"NNS\"\n    ], \n    \"co-operation\": [\n        \"NN\"\n    ], \n    \"electrical-engineering\": [\n        \"JJ\"\n    ], \n    \"McCamant\": [\n        \"NNP\"\n    ], \n    \"travel\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Attention\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Businessland\": [\n        \"NNP\"\n    ], \n    \"Nussbaum\": [\n        \"NNP\"\n    ], \n    \"tabac\": [\n        \"NN\"\n    ], \n    \"Bates\": [\n        \"NNP\"\n    ], \n    \"exposited\": [\n        \"VBN\"\n    ], \n    \"Feelers\": [\n        \"NNS\"\n    ], \n    \"assimilated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"dinosaurs\": [\n        \"NNS\"\n    ], \n    \"iodocompounds\": [\n        \"NNS\"\n    ], \n    \"Fogg\": [\n        \"NNP\"\n    ], \n    \"stipulate\": [\n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"sentencing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"pigment\": [\n        \"NN\"\n    ], \n    \"Tenants\": [\n        \"NNPS\"\n    ], \n    \"CFM\": [\n        \"NNP\"\n    ], \n    \"FINANCIAL\": [\n        \"NNP\"\n    ], \n    \"recombination\": [\n        \"NN\"\n    ], \n    \"CFD\": [\n        \"NNP\"\n    ], \n    \"CFC\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subplots\": [\n        \"NNS\"\n    ], \n    \"kiloton\": [\n        \"NN\"\n    ], \n    \"b-Current\": [\n        \"JJ\", \n        \"LS|JJ\"\n    ], \n    \"Shimon\": [\n        \"NNP\"\n    ], \n    \"CFP\": [\n        \"NNP\"\n    ], \n    \"Retention\": [\n        \"NNP\"\n    ], \n    \"sprawling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"snugly\": [\n        \"RB\"\n    ], \n    \"libertie\": [\n        \"NN\"\n    ], \n    \"Capistrano\": [\n        \"NNP\"\n    ], \n    \"Blackstone\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"ice-feeling\": [\n        \"NN\"\n    ], \n    \"Sabreliner\": [\n        \"NNP\"\n    ], \n    \"benefited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Robertson\": [\n        \"NNP\"\n    ], \n    \"Soviet-trained\": [\n        \"JJ\"\n    ], \n    \"activating\": [\n        \"VBG\"\n    ], \n    \"gay-ess\": [\n        \"VBP\"\n    ], \n    \"playhouse\": [\n        \"NN\"\n    ], \n    \"H.L.\": [\n        \"NNP\"\n    ], \n    \"WPS\": [\n        \"NNP\"\n    ], \n    \"ex-dividend\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"His\": [\n        \"PRP$\", \n        \"NNP\"\n    ], \n    \"Hit\": [\n        \"VBN\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"fit\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VBD\"\n    ], \n    \"Albrights\": [\n        \"NNPS\"\n    ], \n    \"Schroeder\": [\n        \"NNP\"\n    ], \n    \"screaming\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"gridiron\": [\n        \"NN\"\n    ], \n    \"Admirers\": [\n        \"NNS\"\n    ], \n    \"Bischofberger\": [\n        \"NNP\"\n    ], \n    \"Kavanagh\": [\n        \"NNP\"\n    ], \n    \"Walesa\": [\n        \"NNP\"\n    ], \n    \"Hid\": [\n        \"NNP\"\n    ], \n    \"fig\": [\n        \"NN\"\n    ], \n    \"Rubins\": [\n        \"NNS\"\n    ], \n    \"reentered\": [\n        \"VBD\"\n    ], \n    \"Ciminero\": [\n        \"NNP\"\n    ], \n    \"Him\": [\n        \"PRP\", \n        \"NNP\"\n    ], \n    \"Galanter\": [\n        \"NNP\"\n    ], \n    \"effecte\": [\n        \"VB\"\n    ], \n    \"Plebian\": [\n        \"JJ\"\n    ], \n    \"Aloe\": [\n        \"NNP\"\n    ], \n    \"vouchers\": [\n        \"NNS\"\n    ], \n    \"top-quality\": [\n        \"JJ\"\n    ], \n    \"Civics\": [\n        \"NNPS\"\n    ], \n    \"Pavlovitch\": [\n        \"NNP\"\n    ], \n    \"effects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Specialized\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"McArtor\": [\n        \"NNP\"\n    ], \n    \"honeybee\": [\n        \"NN\"\n    ], \n    \"broiler\": [\n        \"NN\"\n    ], \n    \"whacking\": [\n        \"VBG\"\n    ], \n    \"castigating\": [\n        \"VBG\"\n    ], \n    \"wooden\": [\n        \"JJ\"\n    ], \n    \"Pergamon\": [\n        \"NNP\"\n    ], \n    \"Combine\": [\n        \"VB\"\n    ], \n    \"uninfluenced\": [\n        \"VBN\"\n    ], \n    \"transit-association\": [\n        \"NN\"\n    ], \n    \"Weakening\": [\n        \"VBG\"\n    ], \n    \"Dairies\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"finger-paint\": [\n        \"NN\"\n    ], \n    \"Eyewear\": [\n        \"NNP\"\n    ], \n    \"parasites\": [\n        \"NNS\"\n    ], \n    \"Bullocks\": [\n        \"NNP\"\n    ], \n    \"Pamorex\": [\n        \"NNP\"\n    ], \n    \"Crowds\": [\n        \"NNS\"\n    ], \n    \"ANNOUNCED\": [\n        \"VBD\"\n    ], \n    \"Pomerania\": [\n        \"NNP\"\n    ], \n    \"Denizens\": [\n        \"NNS\"\n    ], \n    \"toleration\": [\n        \"NN\"\n    ], \n    \"Susie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"enviroment\": [\n        \"NN\"\n    ], \n    \"Sidestepping\": [\n        \"VBG\"\n    ], \n    \"adapt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Basement\": [\n        \"NN\"\n    ], \n    \"Chivas\": [\n        \"NNP\"\n    ], \n    \"Kahler\": [\n        \"NNP\"\n    ], \n    \"nightdress\": [\n        \"NN\"\n    ], \n    \"Impressionists\": [\n        \"NNPS\"\n    ], \n    \"MEDIA\": [\n        \"NNP\"\n    ], \n    \"underfoot\": [\n        \"RB\"\n    ], \n    \"Schwarz\": [\n        \"NNP\"\n    ], \n    \"Corinne\": [\n        \"NNP\"\n    ], \n    \"Argabright\": [\n        \"NNP\"\n    ], \n    \"elsewhere\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"stereotypical\": [\n        \"JJ\"\n    ], \n    \"Bergelt\": [\n        \"NNP\"\n    ], \n    \"Transformers\": [\n        \"NNPS\"\n    ], \n    \"estimate\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"obliterans\": [\n        \"NNS\"\n    ], \n    \"Egg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"chlorine\": [\n        \"NN\"\n    ], \n    \"silent\": [\n        \"JJ\"\n    ], \n    \"producer\\\\/director\": [\n        \"NN\"\n    ], \n    \"Nigel\": [\n        \"NNP\"\n    ], \n    \"disturber\": [\n        \"NN\"\n    ], \n    \"nucleoli\": [\n        \"NNS\"\n    ], \n    \"Woodberry\": [\n        \"NNP\"\n    ], \n    \"Domestically\": [\n        \"RB\"\n    ], \n    \"SIGNED\": [\n        \"VBN\"\n    ], \n    \"disturbed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"dinner-hour\": [\n        \"JJ\"\n    ], \n    \"third-dimensionality\": [\n        \"NN\"\n    ], \n    \"Facts\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"mendacity\": [\n        \"NN\"\n    ], \n    \"Niger\": [\n        \"NNP\"\n    ], \n    \"breed\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Varadero\": [\n        \"NNP\"\n    ], \n    \"Activity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Gingerly\": [\n        \"RB\"\n    ], \n    \"megabytes\": [\n        \"NNS\"\n    ], \n    \"Nerves\": [\n        \"NNS\"\n    ], \n    \"Lurie\": [\n        \"NNP\"\n    ], \n    \"olds\": [\n        \"NNS\"\n    ], \n    \"LAND\": [\n        \"NNP\"\n    ], \n    \"renovated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"needed\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"master\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"JJR\"\n    ], \n    \"mousseline\": [\n        \"NN\"\n    ], \n    \"genesis\": [\n        \"NN\"\n    ], \n    \"specters\": [\n        \"NNS\"\n    ], \n    \"Russo-American\": [\n        \"JJ\"\n    ], \n    \"Hammerstein\": [\n        \"NNP\"\n    ], \n    \"Aztar\": [\n        \"NNP\"\n    ], \n    \"scrapes\": [\n        \"NNS\"\n    ], \n    \"yield\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"mid-June\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mutilated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Daddy\": [\n        \"NNP\"\n    ], \n    \"heftiest\": [\n        \"JJS\"\n    ], \n    \"positively\": [\n        \"RB\"\n    ], \n    \"Guardsmen\": [\n        \"NNPS\"\n    ], \n    \"SPAN\": [\n        \"NNP\"\n    ], \n    \"anniversaries\": [\n        \"NNS\"\n    ], \n    \"ozone-destroying\": [\n        \"JJ\"\n    ], \n    \"Moonlighting\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Zeta\": [\n        \"NNP\"\n    ], \n    \"feeling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"movie-themed\": [\n        \"JJ\"\n    ], \n    \"Escadrille\": [\n        \"NNP\"\n    ], \n    \"third-round\": [\n        \"JJ\"\n    ], \n    \"value-story\": [\n        \"JJ\"\n    ], \n    \"neuroselective\": [\n        \"JJ\"\n    ], \n    \"Chicago\": [\n        \"NNP\"\n    ], \n    \"straight-from-the-shoulder\": [\n        \"JJ\"\n    ], \n    \"index-options\": [\n        \"NNS\"\n    ], \n    \"consenting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"pecs\": [\n        \"NNS\"\n    ], \n    \"brawny\": [\n        \"JJ\"\n    ], \n    \"recapitalized\": [\n        \"VBN\"\n    ], \n    \"skullcap\": [\n        \"NN\"\n    ], \n    \"Theo\": [\n        \"NNP\"\n    ], \n    \"Then\": [\n        \"RB\"\n    ], \n    \"Them\": [\n        \"PRP\", \n        \"NNP\", \n        \"DT\"\n    ], \n    \"scraped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"wholesome\": [\n        \"JJ\"\n    ], \n    \"Ashenberg\": [\n        \"NNP\"\n    ], \n    \"Grodnik\": [\n        \"NNP\"\n    ], \n    \"Thee\": [\n        \"PRP\"\n    ], \n    \"Tschilwyk\": [\n        \"NNP\"\n    ], \n    \"Myron\": [\n        \"NNP\"\n    ], \n    \"They\": [\n        \"PRP\", \n        \"NNP\"\n    ], \n    \"v-senv5\": [\n        \"NNP\"\n    ], \n    \"ex-accountant\": [\n        \"NN\"\n    ], \n    \"shipments\": [\n        \"NNS\"\n    ], \n    \"diminishing\": [\n        \"VBG\"\n    ], \n    \"chumminess\": [\n        \"NN\"\n    ], \n    \"resonates\": [\n        \"VBZ\"\n    ], \n    \"Jessye\": [\n        \"NNP\"\n    ], \n    \"tensely\": [\n        \"RB\"\n    ], \n    \"Hubacher\": [\n        \"NNP\"\n    ], \n    \"Pandora\": [\n        \"NNP\"\n    ], \n    \"resonated\": [\n        \"VBD\"\n    ], \n    \"transverse\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"KEARNEY\": [\n        \"NNP\"\n    ], \n    \"Encore\": [\n        \"NNP\"\n    ], \n    \"semicircular\": [\n        \"JJ\"\n    ], \n    \"Pastern\": [\n        \"NNP\"\n    ], \n    \"Lanvin\": [\n        \"NNP\"\n    ], \n    \"state-directed\": [\n        \"JJ\"\n    ], \n    \"Journal-Bulletin\": [\n        \"NNP\"\n    ], \n    \"willinge\": [\n        \"JJ\"\n    ], \n    \"Civilized\": [\n        \"JJ\"\n    ], \n    \"Armide\": [\n        \"NN\"\n    ], \n    \"fugitives\": [\n        \"NNS\"\n    ], \n    \"conservative-led\": [\n        \"JJ\"\n    ], \n    \"purged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"saying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ffreind\": [\n        \"VB\"\n    ], \n    \"U-2\": [\n        \"NNP\"\n    ], \n    \"Euralliance\": [\n        \"NNP\"\n    ], \n    \"Mignanelli\": [\n        \"NNP\"\n    ], \n    \"Jacobson\": [\n        \"NNP\"\n    ], \n    \"padded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Butterfinger\": [\n        \"NNP\"\n    ], \n    \"Cunha\": [\n        \"NNP\"\n    ], \n    \"incorruptibility\": [\n        \"NN\"\n    ], \n    \"Basinger\": [\n        \"NNP\"\n    ], \n    \"hounded\": [\n        \"VBD\"\n    ], \n    \"apace\": [\n        \"RB\"\n    ], \n    \"Taiyo\": [\n        \"NNP\"\n    ], \n    \"clicked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rizvi\": [\n        \"NNP\"\n    ], \n    \"excavator\": [\n        \"NN\"\n    ], \n    \"lepidoptery\": [\n        \"NN\"\n    ], \n    \"Ammonium\": [\n        \"NN\"\n    ], \n    \"lube\": [\n        \"NN\"\n    ], \n    \"Geste\": [\n        \"NNP\"\n    ], \n    \"TEACH\": [\n        \"VB\"\n    ], \n    \"L.C.\": [\n        \"NNP\"\n    ], \n    \"familistical\": [\n        \"JJ\"\n    ], \n    \"photo-montage\": [\n        \"JJ\"\n    ], \n    \"INSEAD\": [\n        \"NNP\"\n    ], \n    \"Warnke\": [\n        \"NNP\"\n    ], \n    \"Sibson\": [\n        \"NNP\"\n    ], \n    \"outfielders\": [\n        \"NNS\"\n    ], \n    \"Dionne\": [\n        \"NNP\"\n    ], \n    \"Comenico\": [\n        \"NNP\"\n    ], \n    \"Bancorp.\": [\n        \"NNP\"\n    ], \n    \"affronted\": [\n        \"VBN\"\n    ], \n    \"currencny\": [\n        \"NN\"\n    ], \n    \"Senators\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Ecology\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Baden-Wuerttemburg\": [\n        \"NNP\"\n    ], \n    \"nicely\": [\n        \"RB\"\n    ], \n    \"Andover\": [\n        \"NNP\"\n    ], \n    \"succumb\": [\n        \"VB\"\n    ], \n    \"Dances\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Dancer\": [\n        \"NNP\"\n    ], \n    \"software-installation\": [\n        \"NN\"\n    ], \n    \"pipers\": [\n        \"NNS\"\n    ], \n    \"Jabe\": [\n        \"NNP\"\n    ], \n    \"programmatic\": [\n        \"JJ\"\n    ], \n    \"concretistic-seeming\": [\n        \"JJ\"\n    ], \n    \"Centerbank\": [\n        \"NNP\"\n    ], \n    \"Anderson\": [\n        \"NNP\"\n    ], \n    \"Boon-Sanwa\": [\n        \"NNP\"\n    ], \n    \"news\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"McChicken\": [\n        \"NNP\"\n    ], \n    \"advisedly\": [\n        \"RB\"\n    ], \n    \"Mosle\": [\n        \"NNP\"\n    ], \n    \"above-market\": [\n        \"JJ\"\n    ], \n    \"Heinkel\": [\n        \"NNP\"\n    ], \n    \"Trinitron\": [\n        \"NNP\"\n    ], \n    \"motional\": [\n        \"JJ\"\n    ], \n    \"guided-missile\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chugoku\": [\n        \"NNP\"\n    ], \n    \"Dexedrine\": [\n        \"NNP\"\n    ], \n    \"Tarzana\": [\n        \"NNP\"\n    ], \n    \"Eichner\": [\n        \"NNP\"\n    ], \n    \"Hurst\": [\n        \"NNP\"\n    ], \n    \"requisites\": [\n        \"NNS\"\n    ], \n    \"wage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"redistricting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"extend\": [\n        \"VB\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"nature\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Eisai\": [\n        \"NNP\"\n    ], \n    \"fruits\": [\n        \"NNS\"\n    ], \n    \"lapping\": [\n        \"VBG\"\n    ], \n    \"superficial\": [\n        \"JJ\"\n    ], \n    \"brainwashed\": [\n        \"VBN\"\n    ], \n    \"Bajakian\": [\n        \"NNP\"\n    ], \n    \"extent\": [\n        \"NN\"\n    ], \n    \"tendons\": [\n        \"NNS\"\n    ], \n    \"airflow\": [\n        \"NN\"\n    ], \n    \"Resolute\": [\n        \"NNP\"\n    ], \n    \"Camusfearna\": [\n        \"NNP\"\n    ], \n    \"lookit\": [\n        \"NN\"\n    ], \n    \"Orkem\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Handmaid\": [\n        \"NNP\"\n    ], \n    \"lumber-like\": [\n        \"JJ\"\n    ], \n    \"Altairians\": [\n        \"NNPS\"\n    ], \n    \"Oil-related\": [\n        \"JJ\"\n    ], \n    \"fearlessly\": [\n        \"RB\"\n    ], \n    \"Apartment\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"foreclosing\": [\n        \"VBG\"\n    ], \n    \"SCHWARTZ\": [\n        \"NNP\"\n    ], \n    \"Reuter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"meaningfulness\": [\n        \"NN\"\n    ], \n    \"wearying\": [\n        \"VBG\"\n    ], \n    \"unhealed\": [\n        \"JJ\"\n    ], \n    \"fondled\": [\n        \"VBN\"\n    ], \n    \"minuses\": [\n        \"NNS\"\n    ], \n    \"self-consistent\": [\n        \"JJ\"\n    ], \n    \"month-long\": [\n        \"JJ\"\n    ], \n    \"brindle\": [\n        \"NN\"\n    ], \n    \"humming\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Instantly\": [\n        \"RB\"\n    ], \n    \"triviality\": [\n        \"NN\"\n    ], \n    \"layette\": [\n        \"NN\"\n    ], \n    \"fro\": [\n        \"RB\"\n    ], \n    \".\": [\n        \".\"\n    ], \n    \"Nischwitz\": [\n        \"NNP\"\n    ], \n    \"much\": [\n        \"JJ\", \n        \"DT\", \n        \"NN\", \n        \"RB\", \n        \"RB|JJ\"\n    ], \n    \"Jorio\": [\n        \"NNP\"\n    ], \n    \"Closely\": [\n        \"RB\"\n    ], \n    \"sterilizer\": [\n        \"NN\"\n    ], \n    \"dehumanised\": [\n        \"VBN\"\n    ], \n    \"unleavened\": [\n        \"JJ\"\n    ], \n    \"fry\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ellman\": [\n        \"NNP\"\n    ], \n    \"Goals\": [\n        \"NNPS\"\n    ], \n    \"doubte\": [\n        \"NN\"\n    ], \n    \"INMAC\": [\n        \"NNP\"\n    ], \n    \"spit\": [\n        \"VB\", \n        \"NN\", \n        \"VBD\"\n    ], \n    \"Clayt\": [\n        \"NNP\"\n    ], \n    \"Clays\": [\n        \"NNP\"\n    ], \n    \"spic\": [\n        \"NN\"\n    ], \n    \"Donovan\": [\n        \"NNP\"\n    ], \n    \"doubts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Akerson\": [\n        \"NNP\"\n    ], \n    \"two-hundredths\": [\n        \"NNS\"\n    ], \n    \"Cipolla\": [\n        \"NNP\"\n    ], \n    \"spin\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Volksgeist\": [\n        \"FW\"\n    ], \n    \"skilfully\": [\n        \"RB\"\n    ], \n    \"wildcat\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"near-irrelevant\": [\n        \"JJ\"\n    ], \n    \"U.N.-chartered\": [\n        \"JJ\"\n    ], \n    \"Ben-Gurion\": [\n        \"NNP\"\n    ], \n    \"bargain-hunters\": [\n        \"NNS\"\n    ], \n    \"contingencies\": [\n        \"NNS\"\n    ], \n    \"crupper\": [\n        \"NN\"\n    ], \n    \"microbiological\": [\n        \"JJ\"\n    ], \n    \"misconstrued\": [\n        \"VBN\"\n    ], \n    \"low-smoke\": [\n        \"JJ\"\n    ], \n    \"red-figured\": [\n        \"JJ\"\n    ], \n    \"Courtrai\": [\n        \"NNP\"\n    ], \n    \"prostrate\": [\n        \"JJ\"\n    ], \n    \"Crusaders\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"biddies\": [\n        \"NNS\"\n    ], \n    \"slide-packs\": [\n        \"NNS\"\n    ], \n    \"cupful\": [\n        \"JJ\"\n    ], \n    \"carboxymethyl\": [\n        \"NN\"\n    ], \n    \"Berridge\": [\n        \"NNP\"\n    ], \n    \"Innumerable\": [\n        \"JJ\"\n    ], \n    \"embargos\": [\n        \"NNS\"\n    ], \n    \"conditioned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"to-morrow\": [\n        \"RB\"\n    ], \n    \"Stanhope\": [\n        \"NNP\"\n    ], \n    \"Brookings\": [\n        \"NNP\"\n    ], \n    \"conditioner\": [\n        \"NN\"\n    ], \n    \"half-billion\": [\n        \"JJ\"\n    ], \n    \"hone\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"memorial\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"WFXT\": [\n        \"NNP\"\n    ], \n    \"inventively\": [\n        \"RB\"\n    ], \n    \"C/NNP.A.J.\": [\n        \"NNP\"\n    ], \n    \"mummified\": [\n        \"VBN\"\n    ], \n    \"honk\": [\n        \"VBP\"\n    ], \n    \"slash-mouthed\": [\n        \"JJ\"\n    ], \n    \"Tahitian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"conformed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"visitations\": [\n        \"NNS\"\n    ], \n    \"HOSPITALS\": [\n        \"NNS\"\n    ], \n    \"fireweed\": [\n        \"NN\"\n    ], \n    \"saluted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"myocardial\": [\n        \"JJ\"\n    ], \n    \"Front-runners\": [\n        \"NNS\"\n    ], \n    \"Maybe\": [\n        \"RB\", \n        \"UH\"\n    ], \n    \"Alienus\": [\n        \"NNP\"\n    ], \n    \"torpedoes\": [\n        \"NNS\"\n    ], \n    \"low-grade\": [\n        \"JJ\"\n    ], \n    \"pfffted\": [\n        \"VBD\"\n    ], \n    \"torpedoed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cost-effectiveness\": [\n        \"NN\"\n    ], \n    \"holystones\": [\n        \"NNS\"\n    ], \n    \"spotty\": [\n        \"JJ\"\n    ], \n    \"furlough\": [\n        \"NN\"\n    ], \n    \"peremptory\": [\n        \"JJ\"\n    ], \n    \"Verges\": [\n        \"NNP\"\n    ], \n    \"mentors\": [\n        \"NNS\"\n    ], \n    \"Stearn\": [\n        \"NNP\"\n    ], \n    \"academic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ALPA\": [\n        \"NNP\"\n    ], \n    \"academia\": [\n        \"NN\"\n    ], \n    \"lonelier\": [\n        \"RBR\"\n    ], \n    \"EBS\": [\n        \"NNP\"\n    ], \n    \"J.MBB\": [\n        \"NNP\"\n    ], \n    \"Table\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"corporate\": [\n        \"JJ\"\n    ], \n    \"massaging\": [\n        \"VBG\"\n    ], \n    \"Hickey\": [\n        \"NNP\"\n    ], \n    \"absurdities\": [\n        \"NNS\"\n    ], \n    \"golden\": [\n        \"JJ\"\n    ], \n    \"half-starved\": [\n        \"JJ\"\n    ], \n    \"topography\": [\n        \"NN\"\n    ], \n    \"valleys\": [\n        \"NNS\"\n    ], \n    \"Feigenbaum\": [\n        \"NNP\"\n    ], \n    \"salt-crusted\": [\n        \"JJ\"\n    ], \n    \"lasso\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"claudication\": [\n        \"NN\"\n    ], \n    \"Vitalie\": [\n        \"NNP\"\n    ], \n    \"ham\": [\n        \"NN\"\n    ], \n    \"duffer\": [\n        \"NN\"\n    ], \n    \"out-of-town\": [\n        \"JJ\"\n    ], \n    \"Oscar\": [\n        \"NNP\"\n    ], \n    \"bull-roaring\": [\n        \"JJ\"\n    ], \n    \"Schlemmer\": [\n        \"NNP\"\n    ], \n    \"Mohammedanism\": [\n        \"NNP\"\n    ], \n    \"hay\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"duffel\": [\n        \"NN\"\n    ], \n    \"vicitims\": [\n        \"NNS\"\n    ], \n    \"has\": [\n        \"VBZ\", \n        \"VBN\", \n        \".\"\n    ], \n    \"hat\": [\n        \"NN\"\n    ], \n    \"Spence\": [\n        \"NNP\"\n    ], \n    \"Housekeeping\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"elders\": [\n        \"NNS\"\n    ], \n    \"Serieuses\": [\n        \"NNP\"\n    ], \n    \"constrictors\": [\n        \"NNS\"\n    ], \n    \"unequivocally\": [\n        \"RB\"\n    ], \n    \"objective\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"indicative\": [\n        \"JJ\"\n    ], \n    \"compaction\": [\n        \"NN\"\n    ], \n    \"Seaboard\": [\n        \"NNP\"\n    ], \n    \"ERNST\": [\n        \"NNP\"\n    ], \n    \"solid-state\": [\n        \"JJ\"\n    ], \n    \"Eurocell\": [\n        \"NNP\"\n    ], \n    \"Tipping\": [\n        \"NN\"\n    ], \n    \"riskiness\": [\n        \"NN\"\n    ], \n    \"Kontrollbank\": [\n        \"NNP\"\n    ], \n    \"sleuthing\": [\n        \"NN\"\n    ], \n    \"Wedtech\": [\n        \"NNP\"\n    ], \n    \"Brenda\": [\n        \"NNP\"\n    ], \n    \"Perfecta\": [\n        \"NNP\"\n    ], \n    \"studiousness\": [\n        \"NN\"\n    ], \n    \"Stiller\": [\n        \"NNP\"\n    ], \n    \"Pentagon\": [\n        \"NNP\"\n    ], \n    \"double-step\": [\n        \"JJ\"\n    ], \n    \"misdemeanors\": [\n        \"NNS\"\n    ], \n    \"Swedish\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Quadrex\": [\n        \"NNP\"\n    ], \n    \"crowd\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"walk-on\": [\n        \"NN\"\n    ], \n    \"flue\": [\n        \"NN\"\n    ], \n    \"mosques\": [\n        \"NNS\"\n    ], \n    \"Expressways\": [\n        \"NNP\"\n    ], \n    \"crown\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"culpas\": [\n        \"FW\"\n    ], \n    \"Bourcier\": [\n        \"NNP\"\n    ], \n    \"captive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Avdel\": [\n        \"NNP\"\n    ], \n    \"emphases\": [\n        \"NNS\"\n    ], \n    \"anti-epilepsy\": [\n        \"JJ\"\n    ], \n    \"fiduciary\": [\n        \"JJ\"\n    ], \n    \"debt-rating\": [\n        \"JJ\"\n    ], \n    \"leather-hard\": [\n        \"JJ\"\n    ], \n    \"perchance\": [\n        \"RB\"\n    ], \n    \"Nixdorf\": [\n        \"NNP\"\n    ], \n    \"bottom\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"inhuman\": [\n        \"JJ\"\n    ], \n    \"Wangenheim\": [\n        \"NNP\"\n    ], \n    \"reqion\": [\n        \"NN\"\n    ], \n    \"Celebration\": [\n        \"NNP\"\n    ], \n    \"Lasorda\": [\n        \"NNP\"\n    ], \n    \"Calls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"non-porous\": [\n        \"JJ\"\n    ], \n    \"considerin\": [\n        \"VBG\"\n    ], \n    \"life-or-death\": [\n        \"NN\"\n    ], \n    \"Kentuck\": [\n        \"NNP\"\n    ], \n    \"brigades\": [\n        \"NNS\"\n    ], \n    \"starring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"caskets\": [\n        \"NNS\"\n    ], \n    \"Scwhab\": [\n        \"NNP\"\n    ], \n    \"accelerations\": [\n        \"NNS\"\n    ], \n    \"restlessness\": [\n        \"NN\"\n    ], \n    \"benches\": [\n        \"NNS\"\n    ], \n    \"Transmanche-Link\": [\n        \"NNP\"\n    ], \n    \"anomalous\": [\n        \"JJ\"\n    ], \n    \"officeholders\": [\n        \"NNS\"\n    ], \n    \"catchy\": [\n        \"JJ\"\n    ], \n    \"newly-emerging\": [\n        \"JJ\"\n    ], \n    \"sticle\": [\n        \"VB\"\n    ], \n    \"ribozymes\": [\n        \"NNS\"\n    ], \n    \"classical-music\": [\n        \"JJ\"\n    ], \n    \"lemmings\": [\n        \"NNS\"\n    ], \n    \"Cydonia\": [\n        \"NNP\"\n    ], \n    \"pre-tax\": [\n        \"JJ\"\n    ], \n    \"Concerned\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"honeymoon\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Valdez\": [\n        \"NNP\"\n    ], \n    \"Pontiac-Cadillac\": [\n        \"NNP\"\n    ], \n    \"shoots\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"appropriators\": [\n        \"NNS\"\n    ], \n    \"Ends\": [\n        \"NNS\", \n        \"VBZ\", \n        \"NNPS\"\n    ], \n    \"despised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fabric\": [\n        \"NN\"\n    ], \n    \"Inherently\": [\n        \"RB\"\n    ], \n    \"raped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Carolco\": [\n        \"NNP\"\n    ], \n    \"grasping\": [\n        \"VBG\"\n    ], \n    \"GERMANY\": [\n        \"NNP\"\n    ], \n    \"rapes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"avocados\": [\n        \"NNS\"\n    ], \n    \"Endo\": [\n        \"NNP\"\n    ], \n    \"perfumes\": [\n        \"NNS\"\n    ], \n    \"Bonds-b\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"denoting\": [\n        \"VBG\"\n    ], \n    \"Telesphere\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cohnfidunt\": [\n        \"NN\"\n    ], \n    \"perfumed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Roast\": [\n        \"VB\"\n    ], \n    \"Nineteenth\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Bensonhurst\": [\n        \"NNP\"\n    ], \n    \"incinerator\": [\n        \"NN\"\n    ], \n    \"Interferon\": [\n        \"NNP\"\n    ], \n    \"congratulations\": [\n        \"NNS\", \n        \"UH\"\n    ], \n    \"dark-squared\": [\n        \"JJ\"\n    ], \n    \"Whom\": [\n        \"WP\", \n        \"NNP\"\n    ], \n    \"Year-to-date\": [\n        \"JJ\"\n    ], \n    \"Jaya\": [\n        \"NNP\"\n    ], \n    \"Household\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"VTOL\": [\n        \"NNP\"\n    ], \n    \"County\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"Merom\": [\n        \"NNP\"\n    ], \n    \"open-air\": [\n        \"JJ\"\n    ], \n    \"nicest\": [\n        \"JJS\"\n    ], \n    \"appeals-court\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"soldering\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"slow-bouncing\": [\n        \"JJ\"\n    ], \n    \"Jays\": [\n        \"NNPS\"\n    ], \n    \"Manderscheid\": [\n        \"NNP\"\n    ], \n    \"passenger\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"disgrace\": [\n        \"NN\"\n    ], \n    \"Ladas\": [\n        \"NNP\"\n    ], \n    \"Tales\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"YOUNG\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"VARIAN\": [\n        \"NNP\"\n    ], \n    \"two-day\": [\n        \"JJ\"\n    ], \n    \"Fukuda\": [\n        \"NNP\"\n    ], \n    \"ECU-based\": [\n        \"JJ\"\n    ], \n    \"taxable-equivalent\": [\n        \"JJ\"\n    ], \n    \"Fennessy\": [\n        \"NNP\"\n    ], \n    \"Velasco\": [\n        \"NNP\"\n    ], \n    \"Resler\": [\n        \"NNP\"\n    ], \n    \"crowns\": [\n        \"NNS\"\n    ], \n    \"Paraquat\": [\n        \"NN\"\n    ], \n    \"Burke\": [\n        \"NNP\"\n    ], \n    \"wordlessly\": [\n        \"RB\"\n    ], \n    \"Demagogues\": [\n        \"NNS\"\n    ], \n    \"thoroughgoing\": [\n        \"JJ\"\n    ], \n    \"Checchi\": [\n        \"NNP\"\n    ], \n    \"hawked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Melbourne\": [\n        \"NNP\"\n    ], \n    \"SONGsters\": [\n        \"NNS\"\n    ], \n    \"Bucer\": [\n        \"NNP\"\n    ], \n    \"smelling\": [\n        \"VBG\"\n    ], \n    \"hawker\": [\n        \"NN\"\n    ], \n    \"Filofax\": [\n        \"NNP\"\n    ], \n    \"Ida\": [\n        \"NNP\"\n    ], \n    \"meteorologist\": [\n        \"NN\"\n    ], \n    \"continentally\": [\n        \"RB\"\n    ], \n    \"Debutante\": [\n        \"NNP\"\n    ], \n    \"Oriole\": [\n        \"NNP\"\n    ], \n    \"Dragonetti\": [\n        \"NNP\"\n    ], \n    \"BURNHAM\": [\n        \"NNP\"\n    ], \n    \"A.D\": [\n        \"NN\"\n    ], \n    \"Wiley\": [\n        \"NNP\"\n    ], \n    \"chain\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"whoever\": [\n        \"WP\"\n    ], \n    \"Agura\": [\n        \"NNP\"\n    ], \n    \"Spector\": [\n        \"NNP\"\n    ], \n    \"Cairoli\": [\n        \"NNP\"\n    ], \n    \"Ipswich\": [\n        \"NNP\"\n    ], \n    \"chair\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Beyeler\": [\n        \"NNP\"\n    ], \n    \"ballet\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"amplification\": [\n        \"NN\"\n    ], \n    \"grapples\": [\n        \"VBZ\"\n    ], \n    \"freelance\": [\n        \"JJ\"\n    ], \n    \"Yemma\": [\n        \"NNP\"\n    ], \n    \"sweat-suits\": [\n        \"NNS\"\n    ], \n    \"balled\": [\n        \"VBN\"\n    ], \n    \"grappled\": [\n        \"VBD\"\n    ], \n    \"underlining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"circumstances\": [\n        \"NNS\"\n    ], \n    \"oversight\": [\n        \"NN\"\n    ], \n    \"tenacious\": [\n        \"JJ\"\n    ], \n    \"Barret\": [\n        \"NNP\"\n    ], \n    \"windshields\": [\n        \"NNS\"\n    ], \n    \"paychecks\": [\n        \"NNS\"\n    ], \n    \"jerk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"enflamed\": [\n        \"VBN\"\n    ], \n    \"optronics\": [\n        \"NN\"\n    ], \n    \"Barred\": [\n        \"VBN\"\n    ], \n    \"gloomy\": [\n        \"JJ\"\n    ], \n    \"Levittown\": [\n        \"NNP\"\n    ], \n    \"Barren\": [\n        \"NNP\"\n    ], \n    \"locked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Barrel\": [\n        \"NN\"\n    ], \n    \"upper-lower\": [\n        \"JJ\"\n    ], \n    \"exact\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"minute\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Tri-State\": [\n        \"NNP\"\n    ], \n    \"Hellman\": [\n        \"NNP\"\n    ], \n    \"reining\": [\n        \"VBG\"\n    ], \n    \"skewed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"illustrators\": [\n        \"NNS\"\n    ], \n    \"erasures\": [\n        \"NNS\"\n    ], \n    \"skewer\": [\n        \"NN\"\n    ], \n    \"reimpose\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"M$\": [\n        \"$\"\n    ], \n    \"Silvio\": [\n        \"NNP\"\n    ], \n    \"versatility\": [\n        \"NN\"\n    ], \n    \"hindered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"M.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ogles\": [\n        \"VBZ\"\n    ], \n    \"M4\": [\n        \"NNP\"\n    ], \n    \"Olgivanna\": [\n        \"NNP\"\n    ], \n    \"chopping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hegemonic\": [\n        \"JJ\"\n    ], \n    \"SFr3\": [\n        \"NNP\"\n    ], \n    \"SFr2\": [\n        \"NNP\"\n    ], \n    \"kindliness\": [\n        \"NN\"\n    ], \n    \"DeRita\": [\n        \"NNP\"\n    ], \n    \"celebrated\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"storability\": [\n        \"NN\"\n    ], \n    \"Premise\": [\n        \"NNP\"\n    ], \n    \"S*/NNS&Ls\": [\n        \"NNP\"\n    ], \n    \"non-caffeine\": [\n        \"JJ\"\n    ], \n    \"celebrates\": [\n        \"VBZ\"\n    ], \n    \"unintentionally\": [\n        \"RB\"\n    ], \n    \"Metrecal\": [\n        \"NNP\"\n    ], \n    \"Me\": [\n        \"PRP\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Md\": [\n        \"NNP\"\n    ], \n    \"Ma\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"busyness\": [\n        \"NN\"\n    ], \n    \"Mc\": [\n        \"NNP\"\n    ], \n    \"climbs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"blunted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Mo\": [\n        \"NNP\"\n    ], \n    \"Mi\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"plucking\": [\n        \"VBG\"\n    ], \n    \"Mt\": [\n        \"NNP\"\n    ], \n    \"Ms\": [\n        \"NNP\"\n    ], \n    \"Mr\": [\n        \"NNP\"\n    ], \n    \"dwindling\": [\n        \"VBG\"\n    ], \n    \"My\": [\n        \"PRP$\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"blunter\": [\n        \"NN\"\n    ], \n    \"ME\": [\n        \"PRP\"\n    ], \n    \"MG\": [\n        \"NNP\"\n    ], \n    \"MF\": [\n        \"NNP\"\n    ], \n    \"MC\": [\n        \"NNP\"\n    ], \n    \"MB\": [\n        \"NNP\"\n    ], \n    \"impacted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"MO\": [\n        \"NNP\"\n    ], \n    \"Pestillo\": [\n        \"NNP\"\n    ], \n    \"Haddix\": [\n        \"NNP\"\n    ], \n    \"queue\": [\n        \"NN\"\n    ], \n    \"snowbirds\": [\n        \"NNS\"\n    ], \n    \"sprouted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"MP\": [\n        \"NNP\"\n    ], \n    \"MS\": [\n        \"NNP\"\n    ], \n    \"MR\": [\n        \"NNP\"\n    ], \n    \"ill-fated\": [\n        \"JJ\"\n    ], \n    \"non-circumvention\": [\n        \"NN\"\n    ], \n    \"Kylberg\": [\n        \"NNP\"\n    ], \n    \"Jardin\": [\n        \"NNP\"\n    ], \n    \"stockbuilding\": [\n        \"VBG\"\n    ], \n    \"Dilantin\": [\n        \"NNP\"\n    ], \n    \"houseman\": [\n        \"NN\"\n    ], \n    \"POWs\": [\n        \"NNS\"\n    ], \n    \"Germano-Slavic\": [\n        \"JJ\"\n    ], \n    \"redevelopers\": [\n        \"NNS\"\n    ], \n    \"ex-wives\": [\n        \"NNS\"\n    ], \n    \"BOOSTS\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"opposes\": [\n        \"VBZ\"\n    ], \n    \"August\": [\n        \"NNP\"\n    ], \n    \"perished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Watsonville\": [\n        \"NNP\"\n    ], \n    \"ARNOLD\": [\n        \"NNP\"\n    ], \n    \"non-Magyars\": [\n        \"NNPS\"\n    ], \n    \"Rima\": [\n        \"NNP\"\n    ], \n    \"unjust\": [\n        \"JJ\"\n    ], \n    \"Pinsk\": [\n        \"NNP\"\n    ], \n    \"Those\": [\n        \"DT\", \n        \"NNP\"\n    ], \n    \"perishes\": [\n        \"VBZ\"\n    ], \n    \"Iris\": [\n        \"NNP\"\n    ], \n    \"dampness\": [\n        \"NN\"\n    ], \n    \"Szocs\": [\n        \"NNP\"\n    ], \n    \"ADVANCES\": [\n        \"NNS\"\n    ], \n    \"Proposals\": [\n        \"NNS\"\n    ], \n    \"Bars\": [\n        \"NNP\"\n    ], \n    \"Henley\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"consoles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Barr\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bather\": [\n        \"NN\"\n    ], \n    \"ADVANCED\": [\n        \"NNP\"\n    ], \n    \"gray-black\": [\n        \"JJ\"\n    ], \n    \"Pianos\": [\n        \"NNP\"\n    ], \n    \"Mikoyan\": [\n        \"NNP\"\n    ], \n    \"oscillator\": [\n        \"NN\"\n    ], \n    \"Hershey\": [\n        \"NNP\"\n    ], \n    \"pre-financed\": [\n        \"JJ\"\n    ], \n    \"Laotian\": [\n        \"JJ\"\n    ], \n    \"Wetherell\": [\n        \"NNP\"\n    ], \n    \"following\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"renew\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Revolutionaries\": [\n        \"NNS\"\n    ], \n    \"unoriginals\": [\n        \"NNS\"\n    ], \n    \"want\": [\n        \"VBP\", \n        \"VB\", \n        \"NN\"\n    ], \n    \"mailboxes\": [\n        \"NNS\"\n    ], \n    \"Symphony\": [\n        \"NNP\"\n    ], \n    \"Chula\": [\n        \"NNP\"\n    ], \n    \"Dayna\": [\n        \"NNP\"\n    ], \n    \"Shige\": [\n        \"NNP\"\n    ], \n    \"photoelectronic\": [\n        \"JJ\"\n    ], \n    \"Mantha\": [\n        \"NNP\"\n    ], \n    \"petroleum-related\": [\n        \"JJ\"\n    ], \n    \"Broglie\": [\n        \"NNP\"\n    ], \n    \"Broglio\": [\n        \"NNP\"\n    ], \n    \"T-bills\": [\n        \"NNS\"\n    ], \n    \"anti-toxic\": [\n        \"JJ\"\n    ], \n    \"mid-September\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thanking\": [\n        \"VBG\"\n    ], \n    \"Sprizzo\": [\n        \"NNP\"\n    ], \n    \"Significant\": [\n        \"JJ\"\n    ], \n    \"Dumb\": [\n        \"JJ\"\n    ], \n    \"Bard\": [\n        \"NNP\"\n    ], \n    \"epidemiologic\": [\n        \"JJ\"\n    ], \n    \"B-flat\": [\n        \"NN\"\n    ], \n    \"Zucker\": [\n        \"NNP\"\n    ], \n    \"convincingly\": [\n        \"RB\"\n    ], \n    \"fueled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"laxative\": [\n        \"NN\"\n    ], \n    \"Wiesel\": [\n        \"NNP\"\n    ], \n    \"Softness\": [\n        \"NN\"\n    ], \n    \"warm-blooded\": [\n        \"JJ\"\n    ], \n    \"extended-care\": [\n        \"JJ\"\n    ], \n    \"heliotrope\": [\n        \"NN\"\n    ], \n    \"under-achievers\": [\n        \"NNS\"\n    ], \n    \"Crobsy\": [\n        \"NNP\"\n    ], \n    \"advertiser-sponsored\": [\n        \"JJ\"\n    ], \n    \"inhabiting\": [\n        \"VBG\"\n    ], \n    \"Flexibility\": [\n        \"NN\"\n    ], \n    \"middle-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"forebears\": [\n        \"NNS\"\n    ], \n    \"skirmish\": [\n        \"NN\"\n    ], \n    \"Gillespie\": [\n        \"NNP\"\n    ], \n    \"Centredale\": [\n        \"NNP\"\n    ], \n    \"Lumex\": [\n        \"NNP\"\n    ], \n    \"gold-based\": [\n        \"JJ\"\n    ], \n    \"shirked\": [\n        \"VBN\"\n    ], \n    \"colorblindness\": [\n        \"NN\"\n    ], \n    \"Bowie\": [\n        \"NNP\"\n    ], \n    \"LIN\": [\n        \"NNP\"\n    ], \n    \"Hiroaki\": [\n        \"NNP\"\n    ], \n    \"copious\": [\n        \"JJ\"\n    ], \n    \"LIT\": [\n        \"NNP\"\n    ], \n    \"anti-Semites\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Trustees\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Elias\": [\n        \"NNP\"\n    ], \n    \"Cromwell\": [\n        \"NNP\"\n    ], \n    \"Wetten\": [\n        \"FW\"\n    ], \n    \"jig\": [\n        \"NN\"\n    ], \n    \"disconnect\": [\n        \"VB\"\n    ], \n    \"milked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Stoltzman\": [\n        \"NNP\"\n    ], \n    \"Agencies\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Hopis\": [\n        \"NNPS\"\n    ], \n    \"revenue-raisers\": [\n        \"NNS\"\n    ], \n    \"First-hand\": [\n        \"JJ\"\n    ], \n    \"librarians\": [\n        \"NNS\"\n    ], \n    \"spotlighting\": [\n        \"VBG\"\n    ], \n    \"gold-leaf\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"oral-care\": [\n        \"JJ\"\n    ], \n    \"Veil\": [\n        \"NNP\"\n    ], \n    \"no-brainer\": [\n        \"NN\"\n    ], \n    \"Hiding\": [\n        \"VBG\"\n    ], \n    \"apron\": [\n        \"NN\"\n    ], \n    \"shacked\": [\n        \"VBN\"\n    ], \n    \"Iraqis\": [\n        \"NNPS\"\n    ], \n    \"ENERGY\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"bashful\": [\n        \"JJ\"\n    ], \n    \"EL-10\": [\n        \"NNP\"\n    ], \n    \"overpowering\": [\n        \"JJ\"\n    ], \n    \"Gordon\": [\n        \"NNP\"\n    ], \n    \"now-standard\": [\n        \"JJ\"\n    ], \n    \"workmanlike\": [\n        \"JJ\"\n    ], \n    \"henpecked\": [\n        \"JJ\"\n    ], \n    \"sorted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bedevil\": [\n        \"VB\"\n    ], \n    \"loan-repayment\": [\n        \"NN\"\n    ], \n    \"hickory\": [\n        \"NN\"\n    ], \n    \"didn\": [\n        \"VBD\"\n    ], \n    \"pealing\": [\n        \"VBG\"\n    ], \n    \"Yellow\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bubenik\": [\n        \"NNP\"\n    ], \n    \"cadence\": [\n        \"NN\"\n    ], \n    \"Roslyn\": [\n        \"NNP\"\n    ], \n    \"instability\": [\n        \"NN\"\n    ], \n    \"quarter\": [\n        \"NN\"\n    ], \n    \"Plowman\": [\n        \"NN\"\n    ], \n    \"Merieux-Connaught\": [\n        \"NNP\"\n    ], \n    \"growthy\": [\n        \"JJ\"\n    ], \n    \"bursting\": [\n        \"VBG\"\n    ], \n    \"Yoshiaki\": [\n        \"NNP\"\n    ], \n    \"presages\": [\n        \"VBZ\"\n    ], \n    \"growths\": [\n        \"NNS\"\n    ], \n    \"Venturesome\": [\n        \"JJ\"\n    ], \n    \"frames\": [\n        \"NNS\"\n    ], \n    \"irremediable\": [\n        \"JJ\"\n    ], \n    \"entering\": [\n        \"VBG\"\n    ], \n    \"Soiree\": [\n        \"NNP\"\n    ], \n    \"uselessness\": [\n        \"NN\"\n    ], \n    \"salads\": [\n        \"NNS\"\n    ], \n    \"disasters\": [\n        \"NNS\"\n    ], \n    \"Deborah\": [\n        \"NNP\"\n    ], \n    \"Jiangsu\": [\n        \"NNP\"\n    ], \n    \"assessors\": [\n        \"NNS\"\n    ], \n    \"Imasdounian\": [\n        \"NNP\"\n    ], \n    \"Michigan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Nightclubs\": [\n        \"NNPS\"\n    ], \n    \"staff-written\": [\n        \"JJ\"\n    ], \n    \"seriously\": [\n        \"RB\"\n    ], \n    \"TIGRs\": [\n        \"NNP\"\n    ], \n    \"calming\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"cash-back\": [\n        \"JJ\"\n    ], \n    \"Bouvier\": [\n        \"NNP\"\n    ], \n    \"Westpac\": [\n        \"NNP\"\n    ], \n    \"incentives\": [\n        \"NNS\"\n    ], \n    \"Recital\": [\n        \"NNP\"\n    ], \n    \"Johsen\": [\n        \"NNP\"\n    ], \n    \"inwardly\": [\n        \"RB\"\n    ], \n    \"crazies\": [\n        \"NNS\"\n    ], \n    \"grandma\": [\n        \"NN\"\n    ], \n    \"la-la\": [\n        \"JJ\"\n    ], \n    \"composer-pianist-conductor\": [\n        \"NN\"\n    ], \n    \"backfiring\": [\n        \"VBG\"\n    ], \n    \"Sun-3\\\\\": [\n        \"NNP\"\n    ], \n    \"Ventes\": [\n        \"NNP\"\n    ], \n    \"precious-metals\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"modest\": [\n        \"JJ\"\n    ], \n    \"Kepler\": [\n        \"NNP\"\n    ], \n    \"Voegtli\": [\n        \"NNP\"\n    ], \n    \"socking\": [\n        \"VBG\"\n    ], \n    \"Yucaipa\": [\n        \"NNP\"\n    ], \n    \"hemorrhoids\": [\n        \"NNS\"\n    ], \n    \"Norwalk\": [\n        \"NNP\"\n    ], \n    \"top-heavy\": [\n        \"JJ\"\n    ], \n    \"Latchford\": [\n        \"NNP\"\n    ], \n    \"cigarette-vending\": [\n        \"JJ\"\n    ], \n    \"spoken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"twined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pixley\": [\n        \"NNP\"\n    ], \n    \"NIH-appointed\": [\n        \"JJ\"\n    ], \n    \"spokes\": [\n        \"NNS\"\n    ], \n    \"periodical\": [\n        \"NN\"\n    ], \n    \"Sinyard\": [\n        \"NNP\"\n    ], \n    \"affords\": [\n        \"VBZ\"\n    ], \n    \"Palos\": [\n        \"NNP\"\n    ], \n    \"Drouot\": [\n        \"NNP\"\n    ], \n    \"Monday\": [\n        \"NNP\"\n    ], \n    \"Cia.\": [\n        \"NNP\"\n    ], \n    \"inflation-offsetting\": [\n        \"JJ\"\n    ], \n    \"carbide-products\": [\n        \"NNS\"\n    ], \n    \"Stuckey\": [\n        \"NNP\"\n    ], \n    \"Mounted\": [\n        \"NNP\"\n    ], \n    \"lingering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"subcompacts\": [\n        \"NNS\"\n    ], \n    \"Omron\": [\n        \"NNP\"\n    ], \n    \"RAISED\": [\n        \"VBD\"\n    ], \n    \"whitewash\": [\n        \"NN\"\n    ], \n    \"solid-waste\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"surges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"snatch\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"retrogressive\": [\n        \"JJ\"\n    ], \n    \"Smaby\": [\n        \"NNP\"\n    ], \n    \"Hamilton-oriented\": [\n        \"JJ\"\n    ], \n    \"absorbs\": [\n        \"VBZ\"\n    ], \n    \"surged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"drug-cartel\": [\n        \"JJ\"\n    ], \n    \"History\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"government-guaranteed\": [\n        \"JJ\"\n    ], \n    \"Equinox\": [\n        \"NNP\"\n    ], \n    \"Ciao\": [\n        \"FW\"\n    ], \n    \"crossroads\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"so-so\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"oerations\": [\n        \"NNS\"\n    ], \n    \"wandering\": [\n        \"VBG\"\n    ], \n    \"shakeup\": [\n        \"NN\"\n    ], \n    \"Waring\": [\n        \"NNP\"\n    ], \n    \"sumptuous\": [\n        \"JJ\"\n    ], \n    \"turned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"jewels\": [\n        \"NNS\"\n    ], \n    \"Field\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hubay\": [\n        \"NNP\"\n    ], \n    \"uninterrupted\": [\n        \"JJ\"\n    ], \n    \"Nummi\": [\n        \"NNP\"\n    ], \n    \"Exchange-listed\": [\n        \"JJ\"\n    ], \n    \"politicos\": [\n        \"NNS\"\n    ], \n    \"fashionable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"coliseum\": [\n        \"NN\"\n    ], \n    \"Forester\": [\n        \"NNP\"\n    ], \n    \"zoo\": [\n        \"NN\"\n    ], \n    \"market-monitoring\": [\n        \"JJ\"\n    ], \n    \"Cinematographer\": [\n        \"NN\"\n    ], \n    \"travel-agency\": [\n        \"NN\"\n    ], \n    \"Klesken\": [\n        \"NNP\"\n    ], \n    \"pistachio\": [\n        \"JJ\"\n    ], \n    \"opposite\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"discerning\": [\n        \"JJ\"\n    ], \n    \"below-investment-grade\": [\n        \"JJ\"\n    ], \n    \"spewing\": [\n        \"VBG\"\n    ], \n    \"Darman\": [\n        \"NNP\"\n    ], \n    \"oil-rig\": [\n        \"NN\"\n    ], \n    \"Plentywood\": [\n        \"NNP\"\n    ], \n    \"Depositors\": [\n        \"NNS\"\n    ], \n    \"Wong\": [\n        \"NNP\"\n    ], \n    \"Depository\": [\n        \"NNP\"\n    ], \n    \"Melsungen\": [\n        \"NNP\"\n    ], \n    \"Sochaux\": [\n        \"NNP\"\n    ], \n    \"non-vaccinated\": [\n        \"JJ\"\n    ], \n    \"touchy\": [\n        \"JJ\"\n    ], \n    \"Hurwitt\": [\n        \"NNP\"\n    ], \n    \"Instances\": [\n        \"NNS\"\n    ], \n    \"jitters\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"obsidian\": [\n        \"NN\"\n    ], \n    \"jittery\": [\n        \"JJ\"\n    ], \n    \"scavanged\": [\n        \"VBN\"\n    ], \n    \"Sibley\": [\n        \"NNP\"\n    ], \n    \"lung-function\": [\n        \"JJ\"\n    ], \n    \"unmistakable\": [\n        \"JJ\"\n    ], \n    \"imagines\": [\n        \"VBZ\"\n    ], \n    \"friction\": [\n        \"NN\"\n    ], \n    \"Ethiopia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"inconsistent\": [\n        \"JJ\"\n    ], \n    \"imagined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"area-sales\": [\n        \"JJ\"\n    ], \n    \"ensembles\": [\n        \"NNS\"\n    ], \n    \"reconciling\": [\n        \"VBG\"\n    ], \n    \"transact\": [\n        \"VB\"\n    ], \n    \"Duponts\": [\n        \"NNPS\"\n    ], \n    \"aimlessly\": [\n        \"RB\"\n    ], \n    \"Adia\": [\n        \"NNP\"\n    ], \n    \"Dolmabahce\": [\n        \"NNP\"\n    ], \n    \"seven-unit\": [\n        \"JJ\"\n    ], \n    \"concurrence\": [\n        \"NN\"\n    ], \n    \"Alfieri\": [\n        \"NNP\"\n    ], \n    \"then-minister\": [\n        \"NN\"\n    ], \n    \"rejoiced\": [\n        \"VBD\"\n    ], \n    \"Surprising\": [\n        \"JJ\"\n    ], \n    \"revolutionized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"balconies\": [\n        \"NNS\"\n    ], \n    \"stoicism\": [\n        \"NN\"\n    ], \n    \"skiffs\": [\n        \"NNS\"\n    ], \n    \"rejoices\": [\n        \"VBZ\"\n    ], \n    \"Mid-Atlantic\": [\n        \"NN\"\n    ], \n    \"etcetera\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"recombinant\": [\n        \"JJ\"\n    ], \n    \"keenly\": [\n        \"RB\"\n    ], \n    \"Winnie\": [\n        \"NNP\"\n    ], \n    \"bathwater\": [\n        \"NN\"\n    ], \n    \"recurred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Facilities\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"airily\": [\n        \"RB\"\n    ], \n    \"YES\": [\n        \"NNP\"\n    ], \n    \"Pawtucket\": [\n        \"NNP\"\n    ], \n    \"Old-time\": [\n        \"JJ\"\n    ], \n    \"WTBS\": [\n        \"NNP\"\n    ], \n    \"gold-share\": [\n        \"JJ\"\n    ], \n    \"printing-ink\": [\n        \"JJ\"\n    ], \n    \"Osbert\": [\n        \"NNP\"\n    ], \n    \"Nearing\": [\n        \"VBG\"\n    ], \n    \"Ringo\": [\n        \"NNP\"\n    ], \n    \"bishopry\": [\n        \"NN\"\n    ], \n    \"MerchantsBank\": [\n        \"NNP\"\n    ], \n    \"FIAT\": [\n        \"NNP\"\n    ], \n    \"defensively\": [\n        \"RB\"\n    ], \n    \"Arabian-American\": [\n        \"NNP\"\n    ], \n    \"foreign-investment\": [\n        \"JJ\"\n    ], \n    \"Lermer\": [\n        \"NNP\"\n    ], \n    \"Compilation\": [\n        \"NN\"\n    ], \n    \"field-services\": [\n        \"JJ\"\n    ], \n    \"Designated\": [\n        \"NNP\"\n    ], \n    \"Wisdom\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vaccines\": [\n        \"NNS\"\n    ], \n    \"unlocks\": [\n        \"VBZ\"\n    ], \n    \"kilometer\": [\n        \"NN\"\n    ], \n    \"moons\": [\n        \"NNS\"\n    ], \n    \"Kadane\": [\n        \"NNP\"\n    ], \n    \"Ziegfeld\": [\n        \"NNP\"\n    ], \n    \"welcomes\": [\n        \"VBZ\"\n    ], \n    \"food-sector\": [\n        \"JJ\"\n    ], \n    \"Rademacher\": [\n        \"NNP\"\n    ], \n    \"Hip\": [\n        \"NN\"\n    ], \n    \"severe-looking\": [\n        \"JJ\"\n    ], \n    \"Harbor\": [\n        \"NNP\"\n    ], \n    \"Wachter\": [\n        \"NNP\"\n    ], \n    \"Oglethorpe\": [\n        \"NNP\"\n    ], \n    \"VGA\": [\n        \"NNP\"\n    ], \n    \"Katzenjammer\": [\n        \"NNP\"\n    ], \n    \"Mazowsze\": [\n        \"NNP\"\n    ], \n    \"Teeth\": [\n        \"NNS\"\n    ], \n    \"menacing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"wickedly\": [\n        \"RB\"\n    ], \n    \"Cosmos\": [\n        \"NNP\"\n    ], \n    \"uncharacteristically\": [\n        \"RB\"\n    ], \n    \"Ashington-Pickett\": [\n        \"NNP\"\n    ], \n    \"majestically\": [\n        \"RB\"\n    ], \n    \"Collectors\": [\n        \"NNS\"\n    ], \n    \"Hwang\": [\n        \"NNP\"\n    ], \n    \"millionaire\": [\n        \"NN\"\n    ], \n    \"catcalls\": [\n        \"NNS\"\n    ], \n    \"lifeline\": [\n        \"NN\"\n    ], \n    \"workplace\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"raggedness\": [\n        \"NN\"\n    ], \n    \"grooming\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"fix\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"roominess\": [\n        \"NN\"\n    ], \n    \"Yosemite\": [\n        \"NNP\"\n    ], \n    \"Kaganovich\": [\n        \"NNP\"\n    ], \n    \"Fairbanks\": [\n        \"NNP\"\n    ], \n    \"gaiety\": [\n        \"NN\"\n    ], \n    \"Whiteley\": [\n        \"NNP\"\n    ], \n    \"Smiths\": [\n        \"NNPS\"\n    ], \n    \"Carnegey\": [\n        \"NNP\"\n    ], \n    \"cribs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Nedelya\": [\n        \"NNP\"\n    ], \n    \"Shouldering\": [\n        \"VBG\"\n    ], \n    \"Alperstein\": [\n        \"NNP\"\n    ], \n    \"Chaseman\": [\n        \"NNP\"\n    ], \n    \"Caius\": [\n        \"NNP\"\n    ], \n    \"network-buying\": [\n        \"JJ\"\n    ], \n    \"A.C.\": [\n        \"NNP\"\n    ], \n    \"suppressant\": [\n        \"NN\"\n    ], \n    \"west\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"JJS\"\n    ], \n    \"Interscience\": [\n        \"NNP\"\n    ], \n    \"Asheville\": [\n        \"NNP\"\n    ], \n    \"motives\": [\n        \"NNS\"\n    ], \n    \"MountainBikes\": [\n        \"NNPS\"\n    ], \n    \"toadyism\": [\n        \"NN\"\n    ], \n    \"BankAmerica\": [\n        \"NNP\"\n    ], \n    \"tightener\": [\n        \"NN\"\n    ], \n    \"clergyman\": [\n        \"NN\"\n    ], \n    \"readings\": [\n        \"NNS\"\n    ], \n    \"photos\": [\n        \"NNS\"\n    ], \n    \"tightened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"offshore\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"abject\": [\n        \"JJ\"\n    ], \n    \"extant\": [\n        \"JJ\"\n    ], \n    \"Prompted\": [\n        \"VBN\"\n    ], \n    \"Adjusted\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Muenchen\": [\n        \"NNP\"\n    ], \n    \"fin\": [\n        \"NN\"\n    ], \n    \"pretence\": [\n        \"NN\"\n    ], \n    \"Pozzatti\": [\n        \"NNP\"\n    ], \n    \"bankrupts\": [\n        \"VBZ\"\n    ], \n    \"Cooch\": [\n        \"NNP\"\n    ], \n    \"state-building\": [\n        \"NN\"\n    ], \n    \"Size\": [\n        \"NN\"\n    ], \n    \"graphed\": [\n        \"VBN\"\n    ], \n    \"importation\": [\n        \"NN\"\n    ], \n    \"Zhitzhakli\": [\n        \"NNP\"\n    ], \n    \"over-stitched\": [\n        \"JJ\"\n    ], \n    \"labor-force\": [\n        \"NN\"\n    ], \n    \"limping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"depressors\": [\n        \"NNS\"\n    ], \n    \"demolition\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Profile\": [\n        \"NN\"\n    ], \n    \"Norcen\": [\n        \"NNP\"\n    ], \n    \"ingrained\": [\n        \"JJ\"\n    ], \n    \"sinuously\": [\n        \"RB\"\n    ], \n    \"Profili\": [\n        \"NNP\"\n    ], \n    \"Apocrypha\": [\n        \"NNPS\"\n    ], \n    \"Kiko\": [\n        \"NNP\"\n    ], \n    \"Kiki\": [\n        \"NNP\"\n    ], \n    \"Blood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bloom\": [\n        \"NNP\"\n    ], \n    \"visually\": [\n        \"RB\"\n    ], \n    \"assigns\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"hideaway\": [\n        \"NN\"\n    ], \n    \"Map\": [\n        \"NNP\"\n    ], \n    \"saber-toothed\": [\n        \"JJ\"\n    ], \n    \"Clear\": [\n        \"NNP\"\n    ], \n    \"IRS\": [\n        \"NNP\"\n    ], \n    \"anti-Honecker\": [\n        \"JJ\"\n    ], \n    \"IRI\": [\n        \"NNP\"\n    ], \n    \"Anywhere\": [\n        \"RB\"\n    ], \n    \"Clean\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Barend\": [\n        \"NNP\"\n    ], \n    \"IRA\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Temper\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"by-product\": [\n        \"NN\"\n    ], \n    \"agronomist\": [\n        \"NN\"\n    ], \n    \"Tappan\": [\n        \"NNP\"\n    ], \n    \"wane\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Whiting\": [\n        \"NNP\"\n    ], \n    \"Mednis\": [\n        \"NNP\"\n    ], \n    \"Non-lawyers\": [\n        \"NNS\"\n    ], \n    \"Longley\": [\n        \"NNP\"\n    ], \n    \"flatish\": [\n        \"JJ\"\n    ], \n    \"May\": [\n        \"NNP\", \n        \"MD\"\n    ], \n    \"peculiarities\": [\n        \"NNS\"\n    ], \n    \"nonunionized\": [\n        \"VBN\"\n    ], \n    \"Berlitz\": [\n        \"NNP\"\n    ], \n    \"Sigmund\": [\n        \"NNP\"\n    ], \n    \"highest-ranking\": [\n        \"JJ\"\n    ], \n    \"Magellan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"persistently\": [\n        \"RB\"\n    ], \n    \"NAB\": [\n        \"NNP\"\n    ], \n    \"NAC\": [\n        \"NNP\"\n    ], \n    \"Mudugno\": [\n        \"NNP\"\n    ], \n    \"Conceivably\": [\n        \"RB\"\n    ], \n    \"being\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBG|JJ\"\n    ], \n    \"Diesel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"NAM\": [\n        \"NNP\"\n    ], \n    \"NAR\": [\n        \"NNP\"\n    ], \n    \"NAS\": [\n        \"NNP\"\n    ], \n    \"Aeschylus\": [\n        \"NNP\"\n    ], \n    \"B.G.\": [\n        \"NNP\"\n    ], \n    \"Megargel\": [\n        \"NNP\"\n    ], \n    \"temblor\": [\n        \"NN\"\n    ], \n    \"generator\": [\n        \"NN\"\n    ], \n    \"Completed\": [\n        \"VBN\"\n    ], \n    \"adroit\": [\n        \"JJ\"\n    ], \n    \"plunderers\": [\n        \"NNS\"\n    ], \n    \"Mac\": [\n        \"NNP\"\n    ], \n    \"plumed\": [\n        \"JJ\"\n    ], \n    \"grounder\": [\n        \"NN\"\n    ], \n    \"saddened\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"plumes\": [\n        \"NNS\"\n    ], \n    \"dart-throwing\": [\n        \"NN\"\n    ], \n    \"Crane\": [\n        \"NNP\"\n    ], \n    \"Completes\": [\n        \"VBZ\"\n    ], \n    \"FOREAMI\": [\n        \"NNP\"\n    ], \n    \"foot-loose\": [\n        \"JJ\"\n    ], \n    \"customer-oriented\": [\n        \"JJ\"\n    ], \n    \"absense\": [\n        \"NN\"\n    ], \n    \"unerring\": [\n        \"JJ\"\n    ], \n    \"Tarnoff\": [\n        \"NNP\"\n    ], \n    \"rejoin\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"decomposed\": [\n        \"JJ\"\n    ], \n    \"sums\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"romps\": [\n        \"NNS\"\n    ], \n    \"spokespersons\": [\n        \"NNS\"\n    ], \n    \"traffic\": [\n        \"NN\"\n    ], \n    \"preference\": [\n        \"NN\"\n    ], \n    \"decomposes\": [\n        \"VBZ\"\n    ], \n    \"Manon\": [\n        \"NNP\"\n    ], \n    \"sensational\": [\n        \"JJ\"\n    ], \n    \"Coontz\": [\n        \"NNP\"\n    ], \n    \"Millenbruch\": [\n        \"NNP\"\n    ], \n    \"conpired\": [\n        \"VBN\"\n    ], \n    \"Sergio\": [\n        \"NNP\"\n    ], \n    \"piston-brake\": [\n        \"NN\"\n    ], \n    \"Electrochemical\": [\n        \"NNP\"\n    ], \n    \"superiority\": [\n        \"NN\"\n    ], \n    \"Warming\": [\n        \"VBG\"\n    ], \n    \"Valiant\": [\n        \"NNP\"\n    ], \n    \"pizza-eating\": [\n        \"JJ\"\n    ], \n    \"Suggs\": [\n        \"NNP\"\n    ], \n    \"obstruct\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Case\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"satisfactory\": [\n        \"JJ\"\n    ], \n    \"NAFTA\": [\n        \"NNP\"\n    ], \n    \"Aligning\": [\n        \"VBG\"\n    ], \n    \"rest-room\": [\n        \"NN\"\n    ], \n    \"Expressed\": [\n        \"VBN\"\n    ], \n    \"pervading\": [\n        \"VBG\"\n    ], \n    \"Expresses\": [\n        \"VBZ\"\n    ], \n    \"firstpreference\": [\n        \"NN\"\n    ], \n    \"Sorkin\": [\n        \"NNP\"\n    ], \n    \"Hanifen\": [\n        \"NNP\"\n    ], \n    \"substance\": [\n        \"NN\"\n    ], \n    \"self-effacement\": [\n        \"NN\"\n    ], \n    \"Pharaoh\": [\n        \"NNP\"\n    ], \n    \"Verwoerd\": [\n        \"NNP\"\n    ], \n    \"propylthiouracil\": [\n        \"NN\"\n    ], \n    \"ravines\": [\n        \"NNS\"\n    ], \n    \"bench...\": [\n        \":\"\n    ], \n    \"Chausson\": [\n        \"NNP\"\n    ], \n    \"bravest-feathered\": [\n        \"JJ\"\n    ], \n    \"averse\": [\n        \"JJ\"\n    ], \n    \"Cartoonist\": [\n        \"NN\"\n    ], \n    \"disparaging\": [\n        \"VBG\"\n    ], \n    \"Pooling\": [\n        \"NNP\"\n    ], \n    \"Gaul\": [\n        \"NNP\"\n    ], \n    \"KCs\": [\n        \"NNS\"\n    ], \n    \"endogamy\": [\n        \"NN\"\n    ], \n    \"Knows\": [\n        \"VBZ\"\n    ], \n    \"exasperating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Bramah\": [\n        \"NNP\"\n    ], \n    \"bio-research\": [\n        \"NN\"\n    ], \n    \"ferromagnetic\": [\n        \"JJ\"\n    ], \n    \"revolutionists\": [\n        \"NNS\"\n    ], \n    \"newsboy\": [\n        \"NN\"\n    ], \n    \"one-iron\": [\n        \"JJ\"\n    ], \n    \"Agoura\": [\n        \"NNP\"\n    ], \n    \"KCS\": [\n        \"NNP\"\n    ], \n    \"Gloria\": [\n        \"NNP\"\n    ], \n    \"Lindzen\": [\n        \"NNP\"\n    ], \n    \"sonority\": [\n        \"NN\"\n    ], \n    \"Hesburgh\": [\n        \"NNP\"\n    ], \n    \"perturbed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"commingled\": [\n        \"VBN\"\n    ], \n    \"antidote\": [\n        \"NN\"\n    ], \n    \"tangoed\": [\n        \"VBD\"\n    ], \n    \"revivified\": [\n        \"VBN\"\n    ], \n    \"Herber\": [\n        \"NNP\"\n    ], \n    \"Celie\": [\n        \"NNP\"\n    ], \n    \"lively\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Celia\": [\n        \"NNP\"\n    ], \n    \"pivot\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"biches\": [\n        \"NNS\"\n    ], \n    \"news-magazine\": [\n        \"NN\"\n    ], \n    \"gnashing\": [\n        \"VBG\"\n    ], \n    \"bubbly\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"salicylate\": [\n        \"NN\"\n    ], \n    \"gleam\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"glean\": [\n        \"VB\"\n    ], \n    \"Galamian\": [\n        \"NNP\"\n    ], \n    \"Peninsula\": [\n        \"NNP\"\n    ], \n    \"redirection\": [\n        \"NN\"\n    ], \n    \"Calder\": [\n        \"NNP\"\n    ], \n    \"Steckles\": [\n        \"NNP\"\n    ], \n    \"sealed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"cupids\": [\n        \"NNS\"\n    ], \n    \"bubble\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Political-Military\": [\n        \"NNP\"\n    ], \n    \"tire-makers\": [\n        \"NNS\"\n    ], \n    \"secreted\": [\n        \"VBN\"\n    ], \n    \"emigres\": [\n        \"NNS\"\n    ], \n    \"societal\": [\n        \"JJ\"\n    ], \n    \"Southgate\": [\n        \"NNP\"\n    ], \n    \"with\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Redevelopment\": [\n        \"NNP\"\n    ], \n    \"abused\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"self-seeking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"upper-level\": [\n        \"JJ\"\n    ], \n    \"tripe\": [\n        \"NN\"\n    ], \n    \"marginality\": [\n        \"NN\"\n    ], \n    \"chomped\": [\n        \"VBN\"\n    ], \n    \"rags\": [\n        \"NNS\"\n    ], \n    \"operationally\": [\n        \"RB\"\n    ], \n    \"FRANKLIN\": [\n        \"NNP\"\n    ], \n    \"abuser\": [\n        \"NN\"\n    ], \n    \"abuses\": [\n        \"NNS\"\n    ], \n    \"Berea\": [\n        \"NNP\"\n    ], \n    \"trips\": [\n        \"NNS\"\n    ], \n    \"touchstone\": [\n        \"NN\"\n    ], \n    \"dance-committee\": [\n        \"JJ\"\n    ], \n    \"Beaubien\": [\n        \"NNP\"\n    ], \n    \"Hormats\": [\n        \"NNP\"\n    ], \n    \"color-television\": [\n        \"NN\"\n    ], \n    \"Cinderella\": [\n        \"NNP\"\n    ], \n    \"POLITICAL\": [\n        \"JJ\"\n    ], \n    \"Auerbach\": [\n        \"NNP\"\n    ], \n    \"watches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Meineke\": [\n        \"NNP\"\n    ], \n    \"incepting\": [\n        \"VBG\"\n    ], \n    \"associating\": [\n        \"VBG\"\n    ], \n    \"follow-up\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"formulation\": [\n        \"NN\"\n    ], \n    \"creak\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tremble\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"C.H.\": [\n        \"NNP\"\n    ], \n    \"cream\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ladd\": [\n        \"NNP\"\n    ], \n    \"Lada\": [\n        \"NNP\"\n    ], \n    \"Burnley\": [\n        \"NNP\"\n    ], \n    \"sympathetically\": [\n        \"RB\"\n    ], \n    \"unparalleled\": [\n        \"JJ\"\n    ], \n    \"Savior\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bunyan\": [\n        \"NNP\"\n    ], \n    \"Incinerator\": [\n        \"NNP\"\n    ], \n    \"Lady\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Amadee\": [\n        \"NNP\"\n    ], \n    \"faxes\": [\n        \"NNS\"\n    ], \n    \"refunded\": [\n        \"VBN\"\n    ], \n    \"waving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kaufnabb\": [\n        \"NNP\"\n    ], \n    \"faxed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hairsplitting\": [\n        \"JJ\"\n    ], \n    \"brotherhood\": [\n        \"NN\"\n    ], \n    \"linebackers\": [\n        \"NNS\"\n    ], \n    \"LeFevre\": [\n        \"NNP\"\n    ], \n    \"tricky\": [\n        \"JJ\"\n    ], \n    \"Krims\": [\n        \"NNPS\"\n    ], \n    \"twinges\": [\n        \"NNS\"\n    ], \n    \"Henh\": [\n        \"UH\"\n    ], \n    \"Mercer-Meidinger-Hansen\": [\n        \"NNP\"\n    ], \n    \"Explained\": [\n        \"NNP\"\n    ], \n    \"maliciously\": [\n        \"RB\"\n    ], \n    \"Casinos\": [\n        \"NNS\"\n    ], \n    \"Lyric\": [\n        \"NNP\"\n    ], \n    \"pre-Revolutionary\": [\n        \"JJ\"\n    ], \n    \"Moorhead\": [\n        \"NNP\"\n    ], \n    \"accreted\": [\n        \"VBN\"\n    ], \n    \"Hens\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"industry-government\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"legislatures\": [\n        \"NNS\"\n    ], \n    \"head-to-head\": [\n        \"JJ\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"Drinkhouse\": [\n        \"NNP\"\n    ], \n    \"oathe\": [\n        \"NN\"\n    ], \n    \"caused\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"beware\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"ceramic\": [\n        \"JJ\"\n    ], \n    \"unitholders\": [\n        \"NNS\"\n    ], \n    \"About\": [\n        \"IN\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"tax-loss\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Farley\": [\n        \"NNP\"\n    ], \n    \"Alperts\": [\n        \"NNS\"\n    ], \n    \"causes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Galsworthy\": [\n        \"NNP\"\n    ], \n    \"Rodney-Miss\": [\n        \"NNP\"\n    ], \n    \"predawn\": [\n        \"JJ\"\n    ], \n    \"front-desk\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"contraction-extension\": [\n        \"JJ\"\n    ], \n    \"gall-bladder\": [\n        \"NN\"\n    ], \n    \"overexpose\": [\n        \"VB\"\n    ], \n    \"Grappelly\": [\n        \"NNP\"\n    ], \n    \"norm\": [\n        \"NN\"\n    ], \n    \"re-marketing\": [\n        \"NN\"\n    ], \n    \"break-neck\": [\n        \"JJ\"\n    ], \n    \"floated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"TRANSCANADA\": [\n        \"NNP\"\n    ], \n    \"Conversation\": [\n        \"NN\"\n    ], \n    \"Menzel\": [\n        \"NNP\"\n    ], \n    \"floater\": [\n        \"NN\"\n    ], \n    \"Wilkes\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"Maniffature\": [\n        \"NNP\"\n    ], \n    \"Wilkey\": [\n        \"NNP\"\n    ], \n    \"insufficiently\": [\n        \"RB\"\n    ], \n    \"sang\": [\n        \"VBD\", \n        \"FW\"\n    ], \n    \"Hoxa\": [\n        \"NNP\"\n    ], \n    \"sane\": [\n        \"JJ\"\n    ], \n    \"Semifinished\": [\n        \"VBN\"\n    ], \n    \"sana\": [\n        \"FW\"\n    ], \n    \"senselessly\": [\n        \"RB\"\n    ], \n    \"sank\": [\n        \"VBD\"\n    ], \n    \"self-employment\": [\n        \"NN\"\n    ], \n    \"abbreviated\": [\n        \"JJ\"\n    ], \n    \"OEP\": [\n        \"NNP\"\n    ], \n    \"bird-brain\": [\n        \"NN\"\n    ], \n    \"ultravehement\": [\n        \"JJ\"\n    ], \n    \"Thrice\": [\n        \"RB\"\n    ], \n    \"strong-willed\": [\n        \"JJ\"\n    ], \n    \"topcoats\": [\n        \"NNS\"\n    ], \n    \"accreditation\": [\n        \"NN\"\n    ], \n    \"psychosomatic\": [\n        \"JJ\"\n    ], \n    \"straggle\": [\n        \"VBP\"\n    ], \n    \"hyper-trader\": [\n        \"NN\"\n    ], \n    \"Dutch\\\\/Shell\": [\n        \"NNP\"\n    ], \n    \"computing-services\": [\n        \"JJ\"\n    ], \n    \"PAYS\": [\n        \"VBZ\"\n    ], \n    \"Ogilvy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"jurist\": [\n        \"NN\"\n    ], \n    \"dwells\": [\n        \"VBZ\"\n    ], \n    \"hash\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"obtrudes\": [\n        \"VBZ\"\n    ], \n    \"hatchway\": [\n        \"NN\"\n    ], \n    \"Huntley\": [\n        \"NNP\"\n    ], \n    \"Departments\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"strata\": [\n        \"NNS\"\n    ], \n    \"daunted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"OEC\": [\n        \"NNP\"\n    ], \n    \"unrewarding\": [\n        \"JJ\"\n    ], \n    \"hast\": [\n        \"VBP\"\n    ], \n    \"less-complicated\": [\n        \"JJ\"\n    ], \n    \"MANHATTAN\": [\n        \"NNP\"\n    ], \n    \"criminality\": [\n        \"NN\"\n    ], \n    \"Histadrut\": [\n        \"NNP\"\n    ], \n    \"Concept\": [\n        \"NNP\"\n    ], \n    \"Fawkes\": [\n        \"NNP\"\n    ], \n    \"Mercer\": [\n        \"NNP\"\n    ], \n    \"Rodman\": [\n        \"NNP\"\n    ], \n    \"Vaikule\": [\n        \"NNP\"\n    ], \n    \"periodic\": [\n        \"JJ\"\n    ], \n    \"free-on-board\": [\n        \"JJ\"\n    ], \n    \"Quintet\": [\n        \"NNP\"\n    ], \n    \"Chazanoff\": [\n        \"NNP\"\n    ], \n    \"skepticism\": [\n        \"NN\"\n    ], \n    \"dehumanized\": [\n        \"VBN\"\n    ], \n    \"Alsatian\": [\n        \"NNP\"\n    ], \n    \"depart\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"retroactive\": [\n        \"JJ\"\n    ], \n    \"reclaimed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Scorpio\": [\n        \"NNP\"\n    ], \n    \"art-auction\": [\n        \"NN\"\n    ], \n    \"traumatized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"full-sized\": [\n        \"JJ\"\n    ], \n    \"Puttin\": [\n        \"NNP\"\n    ], \n    \"cynics\": [\n        \"NNS\"\n    ], \n    \"launchings\": [\n        \"NNS\"\n    ], \n    \"shape-up\": [\n        \"JJ\"\n    ], \n    \"rudder\": [\n        \"NN\"\n    ], \n    \"Crash\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"invalidism\": [\n        \"NN\"\n    ], \n    \"prejudging\": [\n        \"VBG\"\n    ], \n    \"Dumpster\": [\n        \"NNP\"\n    ], \n    \"Bamford\": [\n        \"NNP\"\n    ], \n    \"cat-and-mouse\": [\n        \"JJ\"\n    ], \n    \"act...\": [\n        \":\"\n    ], \n    \"failure-to-supervise\": [\n        \"JJ\"\n    ], \n    \"initiated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"company\": [\n        \"NN\"\n    ], \n    \"Frumil\": [\n        \"NNP\"\n    ], \n    \"corrected\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Subways\": [\n        \"NNS\"\n    ], \n    \"initiates\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Subic\": [\n        \"NNP\"\n    ], \n    \"survey-type\": [\n        \"JJ\"\n    ], \n    \"Cybill\": [\n        \"NNP\"\n    ], \n    \"stampings\": [\n        \"NNS\"\n    ], \n    \"Willows\": [\n        \"NNS\"\n    ], \n    \"Gods\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"installing\": [\n        \"VBG\"\n    ], \n    \"Corsicas\": [\n        \"NNS\"\n    ], \n    \"CORTES\": [\n        \"NNP\"\n    ], \n    \"resorcinol\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ice-breaker\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"knocked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"grope\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"scramble\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Panasonic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"bogs\": [\n        \"VBZ\"\n    ], \n    \"Guppy\": [\n        \"NNP\"\n    ], \n    \"meaner\": [\n        \"JJR\"\n    ], \n    \"bogy\": [\n        \"NN\"\n    ], \n    \"Called\": [\n        \"VBN\", \n        \"VBD\", \n        \"NNP\"\n    ], \n    \"Somali\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"clotheslines\": [\n        \"NNS\"\n    ], \n    \"allegro\": [\n        \"JJ\"\n    ], \n    \"electric-driven\": [\n        \"JJ\"\n    ], \n    \"Grits\": [\n        \"NNP\"\n    ], \n    \"recapitalize\": [\n        \"VB\"\n    ], \n    \"Wolfson\": [\n        \"NNP\"\n    ], \n    \"Quinta\": [\n        \"NNP\"\n    ], \n    \"Glasgow\": [\n        \"NNP\"\n    ], \n    \"bonded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"brushoff\": [\n        \"NN\"\n    ], \n    \"huge\": [\n        \"JJ\"\n    ], \n    \"Murkland\": [\n        \"NNP\"\n    ], \n    \"hugh\": [\n        \"JJ\"\n    ], \n    \"dismissed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Frances\": [\n        \"NNP\"\n    ], \n    \"top-selling\": [\n        \"JJ\"\n    ], \n    \"Hering\": [\n        \"NNP\"\n    ], \n    \"hugs\": [\n        \"NNS\"\n    ], \n    \"dismisses\": [\n        \"VBZ\"\n    ], \n    \"Sigmen\": [\n        \"NNP\"\n    ], \n    \"Skorich\": [\n        \"NNP\"\n    ], \n    \"thickened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"disgraced\": [\n        \"VBN\"\n    ], \n    \"variant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ineffectively\": [\n        \"RB\"\n    ], \n    \"hackwork\": [\n        \"NN\"\n    ], \n    \"Declan\": [\n        \"NNP\"\n    ], \n    \"malevolent\": [\n        \"JJ\"\n    ], \n    \"loan-to-value\": [\n        \"JJ\"\n    ], \n    \"resemble\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"twisting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"France.\": [\n        \"NNP\"\n    ], \n    \"Stuff\": [\n        \"NN\"\n    ], \n    \"Nero\": [\n        \"NNP\"\n    ], \n    \"media\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"exclusions\": [\n        \"NNS\"\n    ], \n    \"Ikle\": [\n        \"NNP\"\n    ], \n    \"everlastingly\": [\n        \"RB\"\n    ], \n    \"accuse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Oilfields\": [\n        \"NNS\"\n    ], \n    \"peppy\": [\n        \"JJ\"\n    ], \n    \"installed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"enrollments\": [\n        \"NNS\"\n    ], \n    \"paper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"spirituals\": [\n        \"NNS\"\n    ], \n    \"installer\": [\n        \"NN\"\n    ], \n    \"sceneries\": [\n        \"NNS\"\n    ], \n    \"schoolhouse\": [\n        \"NN\"\n    ], \n    \"sell-through\": [\n        \"NN\"\n    ], \n    \"cheerfulness\": [\n        \"NN\"\n    ], \n    \"bummed\": [\n        \"VBN\"\n    ], \n    \"Parental\": [\n        \"JJ\"\n    ], \n    \"boomerangs\": [\n        \"NNS\"\n    ], \n    \"Fisheries\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"bypass\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"non-subcommittee\": [\n        \"JJ\"\n    ], \n    \"Brussels\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"sauce\": [\n        \"NN\"\n    ], \n    \"reintroduced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"colleague\": [\n        \"NN\"\n    ], \n    \"Loma\": [\n        \"NNP\"\n    ], \n    \"Lomb\": [\n        \"NNP\"\n    ], \n    \"abandons\": [\n        \"VBZ\"\n    ], \n    \"gadget\": [\n        \"NN\"\n    ], \n    \"MS-DOS\": [\n        \"NNP\"\n    ], \n    \"deliberating\": [\n        \"VBG\"\n    ], \n    \"Berkman\": [\n        \"NNP\"\n    ], \n    \"idols\": [\n        \"NNS\"\n    ], \n    \"Markovic\": [\n        \"NNP\"\n    ], \n    \"Ameritech\": [\n        \"NNP\"\n    ], \n    \"Curley\": [\n        \"NNP\"\n    ], \n    \"cigar-making\": [\n        \"JJ\"\n    ], \n    \"autocracy\": [\n        \"NN\"\n    ], \n    \"Satires\": [\n        \"NNPS\"\n    ], \n    \"anti-price-fixing\": [\n        \"JJ\"\n    ], \n    \"Authority\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"courses\": [\n        \"NNS\"\n    ], \n    \"Day-to-day\": [\n        \"JJ\"\n    ], \n    \"Oswald\": [\n        \"NNP\"\n    ], \n    \"shocking\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"chipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"begged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bosak\": [\n        \"NNP\"\n    ], \n    \"cicadas\": [\n        \"NNS\"\n    ], \n    \"C.W.\": [\n        \"NNP\"\n    ], \n    \"Bergman\": [\n        \"NNP\"\n    ], \n    \"scarcely-tapped\": [\n        \"JJ\"\n    ], \n    \"lipstick\": [\n        \"NN\"\n    ], \n    \"scoops\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"boxed-in\": [\n        \"JJ\"\n    ], \n    \"research\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"RF-082\": [\n        \"NN\"\n    ], \n    \"life-changing\": [\n        \"JJ\"\n    ], \n    \"Report\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Jewett\": [\n        \"NNP\"\n    ], \n    \"electricals\": [\n        \"NNS\"\n    ], \n    \"cables\": [\n        \"NNS\"\n    ], \n    \"bedlam\": [\n        \"NN\"\n    ], \n    \"Muzo\": [\n        \"NNP\"\n    ], \n    \"Canute\": [\n        \"NNP\"\n    ], \n    \"Bohane\": [\n        \"NNP\"\n    ], \n    \"suntan\": [\n        \"NN\"\n    ], \n    \"CIRCUIT\": [\n        \"NNP\"\n    ], \n    \"airway\": [\n        \"NN\"\n    ], \n    \"ecologically\": [\n        \"RB\"\n    ], \n    \"Nino\": [\n        \"NNP\"\n    ], \n    \"Buell\": [\n        \"NNP\"\n    ], \n    \"tractor-trailer\": [\n        \"NN\"\n    ], \n    \"carry-on\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Exitosa\": [\n        \"NNP\"\n    ], \n    \"MGM\": [\n        \"NNP\"\n    ], \n    \"Fawaz\": [\n        \"NNP\"\n    ], \n    \"Thyssen\": [\n        \"NNP\"\n    ], \n    \"porpoise\": [\n        \"NN\"\n    ], \n    \"precautionary\": [\n        \"JJ\"\n    ], \n    \"Remains\": [\n        \"NNS\"\n    ], \n    \"Dalai\": [\n        \"NNP\"\n    ], \n    \"preservation\": [\n        \"NN\"\n    ], \n    \"Delancy\": [\n        \"NNP\"\n    ], \n    \"Agonale\": [\n        \"NNP\"\n    ], \n    \"Malocclusion\": [\n        \"NN\"\n    ], \n    \"peaceable\": [\n        \"JJ\"\n    ], \n    \"CH\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"percolator\": [\n        \"NN\"\n    ], \n    \"Started\": [\n        \"VBN\"\n    ], \n    \"swipe\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tradition\": [\n        \"NN\"\n    ], \n    \"Giraffe\": [\n        \"NNP\"\n    ], \n    \"intra-EC\": [\n        \"JJ\"\n    ], \n    \"calculations\": [\n        \"NNS\"\n    ], \n    \"Homebrew\": [\n        \"NNP\"\n    ], \n    \"essays\": [\n        \"NNS\"\n    ], \n    \"Starter\": [\n        \"NNP\"\n    ], \n    \"scimitar-wielding\": [\n        \"JJ\"\n    ], \n    \"tenderfoot\": [\n        \"NN\"\n    ], \n    \"Assignation\": [\n        \"NN\"\n    ], \n    \"hand-covered\": [\n        \"JJ\"\n    ], \n    \"age-and-sex\": [\n        \"JJ\"\n    ], \n    \"Bugs\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"cheekbones\": [\n        \"NNS\"\n    ], \n    \"Trinen\": [\n        \"NNP\"\n    ], \n    \"Dludsky\": [\n        \"NNP\"\n    ], \n    \"stifle\": [\n        \"VB\"\n    ], \n    \"evicting\": [\n        \"VBG\"\n    ], \n    \"Treble\": [\n        \"NNP\"\n    ], \n    \"Hogg\": [\n        \"NNP\"\n    ], \n    \"Cancer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hoge\": [\n        \"NNP\"\n    ], \n    \"de-emphasized\": [\n        \"VBN\"\n    ], \n    \"getaway\": [\n        \"NN\"\n    ], \n    \"Hogs\": [\n        \"NNS\"\n    ], \n    \"dismantling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Shiloh\": [\n        \"NNP\"\n    ], \n    \"mass-producing\": [\n        \"VBG\"\n    ], \n    \"country-and-Western\": [\n        \"JJ\"\n    ], \n    \"Speculative\": [\n        \"JJ\"\n    ], \n    \"exuberant\": [\n        \"JJ\"\n    ], \n    \"forward-moving\": [\n        \"JJ\"\n    ], \n    \"swanky\": [\n        \"JJ\"\n    ], \n    \"Metro-Goldwyn-Mayer\": [\n        \"NNP\"\n    ], \n    \"Oldsmobile\": [\n        \"NNP\"\n    ], \n    \"Anti-Deficiency\": [\n        \"NNP\"\n    ], \n    \"mutilates\": [\n        \"VBZ\"\n    ], \n    \"blond\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"conjugate\": [\n        \"NN\"\n    ], \n    \"Etess\": [\n        \"NNP\"\n    ], \n    \"odors\": [\n        \"NNS\"\n    ], \n    \"Founding\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"fermented\": [\n        \"VBN\"\n    ], \n    \"permanence\": [\n        \"NN\"\n    ], \n    \"single-B-minus\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"peridontal\": [\n        \"JJ\"\n    ], \n    \"recognizing\": [\n        \"VBG\"\n    ], \n    \"Othello\": [\n        \"NNP\"\n    ], \n    \"Addis\": [\n        \"NNP\"\n    ], \n    \"penman\": [\n        \"NN\"\n    ], \n    \"Recreation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"singles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Consultant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pollare\": [\n        \"NNP\"\n    ], \n    \"shake-up\": [\n        \"NN\"\n    ], \n    \"Energetic\": [\n        \"JJ\"\n    ], \n    \"understands\": [\n        \"VBZ\"\n    ], \n    \"wiggled\": [\n        \"VBD\"\n    ], \n    \"seize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Brownapopolus\": [\n        \"NNP\"\n    ], \n    \"OTC\": [\n        \"NNP\"\n    ], \n    \"proliferated\": [\n        \"VBN\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"cultivating\": [\n        \"VBG\"\n    ], \n    \"administrate\": [\n        \"VB\"\n    ], \n    \"Indirect\": [\n        \"JJ\"\n    ], \n    \"OTS\": [\n        \"NNP\"\n    ], \n    \"harvests\": [\n        \"NNS\"\n    ], \n    \"wording\": [\n        \"NN\"\n    ], \n    \"ambiguities\": [\n        \"NNS\"\n    ], \n    \"husband-and-wife\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"team-management\": [\n        \"NN\"\n    ], \n    \"far-flung\": [\n        \"JJ\"\n    ], \n    \"Consumption\": [\n        \"NN\"\n    ], \n    \"exterminate\": [\n        \"VB\"\n    ], \n    \"agonize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Deadly\": [\n        \"JJ\"\n    ], \n    \"Motown\": [\n        \"NNP\"\n    ], \n    \"affix\": [\n        \"VB\"\n    ], \n    \"Amgen\": [\n        \"NNP\"\n    ], \n    \"Pepperdine\": [\n        \"NNP\"\n    ], \n    \"Behold\": [\n        \"VB\"\n    ], \n    \"overwhelmed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"blender\": [\n        \"NN\"\n    ], \n    \"Bast\": [\n        \"NNP\"\n    ], \n    \"Basu\": [\n        \"NNP\"\n    ], \n    \"Bass\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"two-room\": [\n        \"JJ\"\n    ], \n    \"Dirt\": [\n        \"NN\"\n    ], \n    \"commodity-market\": [\n        \"NN\"\n    ], \n    \"Premiere\": [\n        \"NNP\"\n    ], \n    \"Patrolmen\": [\n        \"NNP\"\n    ], \n    \"gooey\": [\n        \"JJ\"\n    ], \n    \"Basf\": [\n        \"NNP\"\n    ], \n    \"Maxxam\": [\n        \"NNP\"\n    ], \n    \"Base\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dire\": [\n        \"JJ\"\n    ], \n    \"Dirk\": [\n        \"NNP\"\n    ], \n    \"Palash\": [\n        \"NNP\"\n    ], \n    \"indifference\": [\n        \"NN\"\n    ], \n    \"non-wealthy\": [\n        \"JJ\"\n    ], \n    \"columns\": [\n        \"NNS\"\n    ], \n    \"chiefdoms\": [\n        \"NNS\"\n    ], \n    \"uncontested\": [\n        \"JJ\"\n    ], \n    \"mousetraps\": [\n        \"NNS\"\n    ], \n    \"pleasure\\\\\": [\n        \"CC\"\n    ], \n    \"Cooker\": [\n        \"NNP\"\n    ], \n    \"Lesley\": [\n        \"NNP\"\n    ], \n    \"adventurers\": [\n        \"NNS\"\n    ], \n    \"Aroostook\": [\n        \"NNP\"\n    ], \n    \"Cooked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"remedy\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Delaware-based\": [\n        \"JJ\"\n    ], \n    \"Finevest\": [\n        \"NNP\"\n    ], \n    \"compass\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"damnit\": [\n        \"UH\"\n    ], \n    \"distraction\": [\n        \"NN\"\n    ], \n    \"sects\": [\n        \"NNS\"\n    ], \n    \"incapacitated\": [\n        \"VBN\"\n    ], \n    \"well-off\": [\n        \"JJ\"\n    ], \n    \"tanked\": [\n        \"VBN\"\n    ], \n    \"Improper\": [\n        \"JJ\"\n    ], \n    \"Surveying\": [\n        \"VBG\"\n    ], \n    \"untrustworthiness\": [\n        \"NN\"\n    ], \n    \"tanker\": [\n        \"NN\"\n    ], \n    \"roundhouse\": [\n        \"NN\"\n    ], \n    \"rumored\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"insane\": [\n        \"JJ\"\n    ], \n    \"Criticisms\": [\n        \"NNP\"\n    ], \n    \"handcuffs\": [\n        \"NNS\"\n    ], \n    \"GROUP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sener\": [\n        \"NNP\"\n    ], \n    \"bundling\": [\n        \"VBG\"\n    ], \n    \"activists\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"redoubt\": [\n        \"NN\"\n    ], \n    \"Thirty-ninth\": [\n        \"NNP\"\n    ], \n    \"collectively\": [\n        \"RB\"\n    ], \n    \"Founders\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"semidrying\": [\n        \"JJ\"\n    ], \n    \"analog\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Osram\": [\n        \"NNP\"\n    ], \n    \"Straightening\": [\n        \"VBG\"\n    ], \n    \"Roukema\": [\n        \"NNP\"\n    ], \n    \"dipole\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Peggy\": [\n        \"NNP\"\n    ], \n    \"exclaimed\": [\n        \"VBD\"\n    ], \n    \"Tieken\": [\n        \"NNP\"\n    ], \n    \"ablated\": [\n        \"VBN\"\n    ], \n    \"hauteur\": [\n        \"NN\"\n    ], \n    \"thrive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Hollowell\": [\n        \"NNP\"\n    ], \n    \"pantomimed\": [\n        \"VBD\"\n    ], \n    \"hunter-gatherers\": [\n        \"NNS\"\n    ], \n    \"unsealing\": [\n        \"NN\"\n    ], \n    \"NEKOOSA\": [\n        \"NNP\"\n    ], \n    \"condoned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fulton\": [\n        \"NNP\"\n    ], \n    \"empowering\": [\n        \"VBG\"\n    ], \n    \"Neil\": [\n        \"NNP\"\n    ], \n    \"legitimately\": [\n        \"RB\"\n    ], \n    \"KRENZ\": [\n        \"NNP\"\n    ], \n    \"out-of-door\": [\n        \"NN\"\n    ], \n    \"money-maker\": [\n        \"NN\"\n    ], \n    \"Boy-Lady\": [\n        \"NNP\"\n    ], \n    \"Wilde\": [\n        \"NNP\"\n    ], \n    \"al-Husseini\": [\n        \"NNP\"\n    ], \n    \"Acapulco\": [\n        \"NNP\"\n    ], \n    \"retarded\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wisely\": [\n        \"RB\"\n    ], \n    \"Breton\": [\n        \"NNP\"\n    ], \n    \"bell\": [\n        \"NN\"\n    ], \n    \"Clyde\": [\n        \"NNP\"\n    ], \n    \"adaptation\": [\n        \"NN\"\n    ], \n    \"Mecholyl\": [\n        \"NNP\"\n    ], \n    \"Peanuts\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"belt\": [\n        \"NN\"\n    ], \n    \"nimbler\": [\n        \"JJR\"\n    ], \n    \"Cary\": [\n        \"NNP\"\n    ], \n    \"Blaikie\": [\n        \"NNP\"\n    ], \n    \"Leiby\": [\n        \"NNP\"\n    ], \n    \"Cars\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Stoutt\": [\n        \"NNP\"\n    ], \n    \"satire\": [\n        \"NN\"\n    ], \n    \"imperfections\": [\n        \"NNS\"\n    ], \n    \"longs\": [\n        \"VBZ\"\n    ], \n    \"proprietor\": [\n        \"NN\"\n    ], \n    \"extravagant\": [\n        \"JJ\"\n    ], \n    \"Carl\": [\n        \"NNP\"\n    ], \n    \"Cara\": [\n        \"NNP\"\n    ], \n    \"Card\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Care\": [\n        \"NNP\", \n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Polly\": [\n        \"NNP\"\n    ], \n    \"coahse\": [\n        \"NN\"\n    ], \n    \"N.C.\": [\n        \"NNP\"\n    ], \n    \"Spike-haired\": [\n        \"JJ\"\n    ], \n    \"Polls\": [\n        \"NNS\"\n    ], \n    \"complements\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"awake\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Sinfonia\": [\n        \"NNP\"\n    ], \n    \"pacemaker\": [\n        \"NN\"\n    ], \n    \"Pollo\": [\n        \"NNP\"\n    ], \n    \"Harriet\": [\n        \"NNP\"\n    ], \n    \"Harrier\": [\n        \"NNP\"\n    ], \n    \"Hiroshima\": [\n        \"NNP\"\n    ], \n    \"Giblen\": [\n        \"NNP\"\n    ], \n    \"lace-drawn\": [\n        \"JJ\"\n    ], \n    \"presses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Slim-Fast\": [\n        \"NNP\"\n    ], \n    \"Markel\": [\n        \"NNP\"\n    ], \n    \"Drennen\": [\n        \"NNP\"\n    ], \n    \"budget\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Colston\": [\n        \"NNP\"\n    ], \n    \"Biopharm\": [\n        \"NNP\"\n    ], \n    \"Markey\": [\n        \"NNP\"\n    ], \n    \"pressed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Brauerei\": [\n        \"NNP\"\n    ], \n    \"Market\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"error-laden\": [\n        \"JJ\"\n    ], \n    \"hand-wringer\": [\n        \"NN\"\n    ], \n    \"agitation\": [\n        \"NN\"\n    ], \n    \"averaging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"binding\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"eve\": [\n        \"NN\"\n    ], \n    \"deferred-maintenance\": [\n        \"JJ\"\n    ], \n    \"signal-processing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Expressway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contract-services\": [\n        \"NNS\"\n    ], \n    \"Bouwer\": [\n        \"NNP\"\n    ], \n    \"raiders\": [\n        \"NNS\"\n    ], \n    \"Norwick\": [\n        \"NNP\"\n    ], \n    \"starlight\": [\n        \"NN\"\n    ], \n    \"Norwich\": [\n        \"NNP\"\n    ], \n    \"economic-efficiency\": [\n        \"NN\"\n    ], \n    \"Leibowitz\": [\n        \"NNP\"\n    ], \n    \"U.S.A\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"behemoths\": [\n        \"NNS\"\n    ], \n    \"Spencerian\": [\n        \"JJ\"\n    ], \n    \"Tidal\": [\n        \"NNP\"\n    ], \n    \"Payments\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"affairs\": [\n        \"NNS\"\n    ], \n    \"most-watched\": [\n        \"JJ\"\n    ], \n    \"U.S.$\": [\n        \"$\"\n    ], \n    \"cardholders\": [\n        \"NNS\"\n    ], \n    \"Miners\": [\n        \"NNP\"\n    ], \n    \"Likud\": [\n        \"NNP\"\n    ], \n    \"nickname\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"infamous\": [\n        \"JJ\"\n    ], \n    \"Regulator\": [\n        \"NNP\"\n    ], \n    \"hymen\": [\n        \"NN\"\n    ], \n    \"Oregonian\": [\n        \"NNP\"\n    ], \n    \"Haas\": [\n        \"NNP\"\n    ], \n    \"Mexico-based\": [\n        \"JJ\"\n    ], \n    \"Manny\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Taster\": [\n        \"NNP\"\n    ], \n    \"Mockowiczes\": [\n        \"NNPS\"\n    ], \n    \"copes\": [\n        \"VBZ\"\n    ], \n    \"clasped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Reidy\": [\n        \"NNP\"\n    ], \n    \"O.\": [\n        \"NNP\"\n    ], \n    \"quick-fix\": [\n        \"JJ\"\n    ], \n    \"uncouth\": [\n        \"JJ\"\n    ], \n    \"salvo\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"World-Wide\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Boyde\": [\n        \"NNP\"\n    ], \n    \"Grenier\": [\n        \"NNP\"\n    ], \n    \"Orphic\": [\n        \"JJ\"\n    ], \n    \"harness-emotions\": [\n        \"JJ\"\n    ], \n    \"Colorliner\": [\n        \"NNP\"\n    ], \n    \"salve\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Marsh\": [\n        \"NNP\"\n    ], \n    \"Harland\": [\n        \"NNP\"\n    ], \n    \"avionics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"no-strike\": [\n        \"JJ\"\n    ], \n    \"pool-side\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"abstention\": [\n        \"NN\"\n    ], \n    \"F.O.\": [\n        \"NNP\"\n    ], \n    \"Brando\": [\n        \"NNP\"\n    ], \n    \"truism\": [\n        \"NN\"\n    ], \n    \"Nationally\": [\n        \"RB\"\n    ], \n    \"Brande\": [\n        \"NNP\"\n    ], \n    \"audiotex\": [\n        \"NN\"\n    ], \n    \"multi-year\": [\n        \"JJ\"\n    ], \n    \"Brandy\": [\n        \"NNP\"\n    ], \n    \"parents\": [\n        \"NNS\"\n    ], \n    \"Brands\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"closedown\": [\n        \"NN\"\n    ], \n    \"Old-House\": [\n        \"NNP\"\n    ], \n    \"Brandt\": [\n        \"NNP\"\n    ], \n    \"On\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Ol\": [\n        \"JJ\"\n    ], \n    \"Ok\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Oi\": [\n        \"NNP\"\n    ], \n    \"Oh\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"Of\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"couple\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"bureaucrat\": [\n        \"NN\"\n    ], \n    \"emanating\": [\n        \"VBG\"\n    ], \n    \"Pepinsky\": [\n        \"NNP\"\n    ], \n    \"oneyear\": [\n        \"JJ\"\n    ], \n    \"polemic\": [\n        \"JJ\"\n    ], \n    \"Oz\": [\n        \"NNP\"\n    ], \n    \"Oy\": [\n        \"NNP\"\n    ], \n    \"Buzz\": [\n        \"NNP\"\n    ], \n    \"colonials\": [\n        \"NNS\"\n    ], \n    \"credit-reporting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Or\": [\n        \"CC\"\n    ], \n    \"Cairo-sponsored\": [\n        \"JJ\"\n    ], \n    \"OK\": [\n        \"JJ\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"OH\": [\n        \"NN\"\n    ], \n    \"Schacht\": [\n        \"NNP\"\n    ], \n    \"OF\": [\n        \"IN\"\n    ], \n    \"Show\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Schotter\": [\n        \"NNP\"\n    ], \n    \"Kaydon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"greenback\": [\n        \"NN\"\n    ], \n    \"chorus\": [\n        \"NN\"\n    ], \n    \"Heideman\": [\n        \"NNP\"\n    ], \n    \"OR\": [\n        \"CC\"\n    ], \n    \"noninterference\": [\n        \"NN\"\n    ], \n    \"Treatment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"COUP\": [\n        \"NN\"\n    ], \n    \"standing-room\": [\n        \"NN\"\n    ], \n    \"Burlingham\": [\n        \"NNP\"\n    ], \n    \"crapshoot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bounce\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"bouncy\": [\n        \"JJ\"\n    ], \n    \"Assumption\": [\n        \"NN\"\n    ], \n    \"gold-filled\": [\n        \"JJ\"\n    ], \n    \"earthquake...\": [\n        \":\"\n    ], \n    \"greener\": [\n        \"JJR\"\n    ], \n    \"underbelly\": [\n        \"NN\"\n    ], \n    \"sorbed\": [\n        \"VBN\"\n    ], \n    \"orderings\": [\n        \"NNS\"\n    ], \n    \"Yacos\": [\n        \"NNP\"\n    ], \n    \"Japanese-based\": [\n        \"JJ\"\n    ], \n    \"microbes\": [\n        \"NNS\"\n    ], \n    \"Rosty\": [\n        \"NNP\"\n    ], \n    \"Frank\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"firecracker\": [\n        \"NN\"\n    ], \n    \"Witter\": [\n        \"NNP\"\n    ], \n    \"Frans\": [\n        \"NNP\"\n    ], \n    \"Ogisu\": [\n        \"NNP\"\n    ], \n    \"Witten\": [\n        \"NNP\"\n    ], \n    \"Drexel-underwritten\": [\n        \"JJ\"\n    ], \n    \"Franz\": [\n        \"NNP\"\n    ], \n    \"Aviation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"LEADER\": [\n        \"NN\"\n    ], \n    \"Hells\": [\n        \"NNP\"\n    ], \n    \"Sculley\": [\n        \"NNP\"\n    ], \n    \"Liaisons\": [\n        \"NNS\"\n    ], \n    \"electronics-instruments\": [\n        \"JJ\"\n    ], \n    \"less-aggressive\": [\n        \"JJ\"\n    ], \n    \"respite\": [\n        \"NN\"\n    ], \n    \"Reeder\": [\n        \"NNP\"\n    ], \n    \"Hello\": [\n        \"UH\"\n    ], \n    \"browny\": [\n        \"JJ\"\n    ], \n    \"disjointed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Soft-spoken\": [\n        \"JJ\"\n    ], \n    \"scraggly\": [\n        \"JJ\"\n    ], \n    \"Kassebaum\": [\n        \"NNP\"\n    ], \n    \"Oso\": [\n        \"NNP\"\n    ], \n    \"Winnetka\": [\n        \"NNP\"\n    ], \n    \"telephone-information\": [\n        \"NN\"\n    ], \n    \"mouth\": [\n        \"NN\"\n    ], \n    \"Rican\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"canning\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Suhey\": [\n        \"NNP\"\n    ], \n    \"well-versed\": [\n        \"JJ\"\n    ], \n    \"seven-figure\": [\n        \"JJ\"\n    ], \n    \"Herslow\": [\n        \"NNP\"\n    ], \n    \"terrorists\": [\n        \"NNS\"\n    ], \n    \"disturbingly\": [\n        \"RB\"\n    ], \n    \"inti\": [\n        \"NN\"\n    ], \n    \"disease-resistance\": [\n        \"JJ\"\n    ], \n    \"bloodspots\": [\n        \"NNS\"\n    ], \n    \"Flights\": [\n        \"NNS\"\n    ], \n    \"controversies\": [\n        \"NNS\"\n    ], \n    \"el-Fna\": [\n        \"NNP\"\n    ], \n    \"controllers\": [\n        \"NNS\"\n    ], \n    \"Corvallis\": [\n        \"NNP\"\n    ], \n    \"Pellicano\": [\n        \"NNP\"\n    ], \n    \"sightseeing\": [\n        \"NN\"\n    ], \n    \"backbend\": [\n        \"NN\"\n    ], \n    \"uncertainties\": [\n        \"NNS\"\n    ], \n    \"discoid\": [\n        \"JJ\"\n    ], \n    \"Dime\": [\n        \"NNP\"\n    ], \n    \"gases\": [\n        \"NNS\"\n    ], \n    \"atheists\": [\n        \"NNS\"\n    ], \n    \"four-jet\": [\n        \"JJ\"\n    ], \n    \"fragmented\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Natcher\": [\n        \"NNP\"\n    ], \n    \"Principal\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"market-reform\": [\n        \"JJ\"\n    ], \n    \"Natchez\": [\n        \"NNP\"\n    ], \n    \"junior-year-abroad\": [\n        \"JJ\"\n    ], \n    \"carping\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Boswell\": [\n        \"NNP\"\n    ], \n    \"frozen-embryo\": [\n        \"NN\"\n    ], \n    \"HelmsleySpear\": [\n        \"NNP\"\n    ], \n    \"Resolution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"intestines\": [\n        \"NNS\"\n    ], \n    \"Spinnaker\": [\n        \"NNP\"\n    ], \n    \"Consolidated\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"testaments\": [\n        \"NNS\"\n    ], \n    \"paired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"retaliatory\": [\n        \"JJ\"\n    ], \n    \"purges\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Scotchman\": [\n        \"NN\"\n    ], \n    \"Magoun\": [\n        \"NNP\"\n    ], \n    \"Apex\": [\n        \"NNP\"\n    ], \n    \"Goudsmit\": [\n        \"NNP\"\n    ], \n    \"Enthoven\": [\n        \"NNP\"\n    ], \n    \"deadliest\": [\n        \"JJS\"\n    ], \n    \"haunt\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Vauxhall\": [\n        \"NNP\"\n    ], \n    \"bobbed\": [\n        \"VBD\"\n    ], \n    \"Twins\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"nectaries\": [\n        \"NNS\"\n    ], \n    \"self-victimized\": [\n        \"JJ\"\n    ], \n    \"tragi-comic\": [\n        \"JJ\"\n    ], \n    \"unsaturated\": [\n        \"JJ\"\n    ], \n    \"non-Fed\": [\n        \"JJ\"\n    ], \n    \"intrepid\": [\n        \"JJ\"\n    ], \n    \"puzzling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Hollins\": [\n        \"NNP\"\n    ], \n    \"Hazel\": [\n        \"NNP\"\n    ], \n    \"uranium\": [\n        \"NN\"\n    ], \n    \"Noticing\": [\n        \"VBG\"\n    ], \n    \"Last\": [\n        \"JJ\", \n        \"NNP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Gephardt\": [\n        \"NNP\"\n    ], \n    \"Senor\": [\n        \"NNP\"\n    ], \n    \"tech\": [\n        \"NN\"\n    ], \n    \"revision\": [\n        \"NN\"\n    ], \n    \"depredations\": [\n        \"NNS\"\n    ], \n    \"myofibrils\": [\n        \"NNS\"\n    ], \n    \"trans-illuminated\": [\n        \"JJ\"\n    ], \n    \"litigants\": [\n        \"NNS\"\n    ], \n    \"Larchmont\": [\n        \"NNP\"\n    ], \n    \"Longwood\": [\n        \"NNP\"\n    ], \n    \"suppression\": [\n        \"NN\"\n    ], \n    \"Ludie\": [\n        \"NNP\"\n    ], \n    \"bibliographies\": [\n        \"NNS\"\n    ], \n    \"bianco\": [\n        \"NN\"\n    ], \n    \"interfaith\": [\n        \"JJ\"\n    ], \n    \"Dort\": [\n        \"NNP\"\n    ], \n    \"Devery\": [\n        \"NNP\"\n    ], \n    \"methodologies\": [\n        \"NNS\"\n    ], \n    \"Pitman-Moore\": [\n        \"NNP\"\n    ], \n    \"time-share\": [\n        \"JJ\"\n    ], \n    \"Sacramento-based\": [\n        \"JJ\"\n    ], \n    \"crease\": [\n        \"NN\"\n    ], \n    \"transient\": [\n        \"JJ\"\n    ], \n    \"Stamford\": [\n        \"NNP\"\n    ], \n    \"F.E.\": [\n        \"NNP\"\n    ], \n    \"rewt\": [\n        \"NN\"\n    ], \n    \"Hodson\": [\n        \"NNP\"\n    ], \n    \"Bolivar\": [\n        \"NNP\"\n    ], \n    \"Doubt\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"hepatitis\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Aguirre-Sacasa\": [\n        \"NNP\"\n    ], \n    \"conservative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"two-seater\": [\n        \"JJ\"\n    ], \n    \"Shortridge\": [\n        \"NNP\"\n    ], \n    \"detectives\": [\n        \"NNS\"\n    ], \n    \"amalgamation\": [\n        \"NN\"\n    ], \n    \"unforseen\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"glows\": [\n        \"NNS\"\n    ], \n    \"Bobar\": [\n        \"NNP\"\n    ], \n    \"carelessly\": [\n        \"RB\"\n    ], \n    \"Bince\": [\n        \"NNP\"\n    ], \n    \"Organ\": [\n        \"NN\"\n    ], \n    \"dicker\": [\n        \"VB\"\n    ], \n    \"account\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ornithological\": [\n        \"NNP\"\n    ], \n    \"Loantech\": [\n        \"NNP\"\n    ], \n    \"minerals\": [\n        \"NNS\"\n    ], \n    \"rediscovery\": [\n        \"NN\"\n    ], \n    \"detested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Intercity\": [\n        \"JJ\"\n    ], \n    \"amanuensis\": [\n        \"NN\"\n    ], \n    \"diorah\": [\n        \"NN\"\n    ], \n    \"Scobee-Frazier\": [\n        \"NNP\"\n    ], \n    \"extraditing\": [\n        \"VBG\"\n    ], \n    \"Negus\": [\n        \"NNP\"\n    ], \n    \"less-than-brilliant\": [\n        \"JJ\"\n    ], \n    \"vouchsafes\": [\n        \"VBZ\"\n    ], \n    \"Bankruptcy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stair-step\": [\n        \"JJ\"\n    ], \n    \"Begins\": [\n        \"VBZ\"\n    ], \n    \"Haqvin\": [\n        \"NNP\"\n    ], \n    \"Winchester\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cannibals\": [\n        \"NNS\"\n    ], \n    \"castle-themed\": [\n        \"JJ\"\n    ], \n    \"progenitors\": [\n        \"NNS\"\n    ], \n    \"Atlantes\": [\n        \"NN\"\n    ], \n    \"Catskills\": [\n        \"NNPS\"\n    ], \n    \"Hollsworth\": [\n        \"NNP\"\n    ], \n    \"dynamics\": [\n        \"NNS\"\n    ], \n    \"tempted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"victor\": [\n        \"NN\"\n    ], \n    \"Entrance\": [\n        \"NN\"\n    ], \n    \"lawbreakers\": [\n        \"NNS\"\n    ], \n    \"sweats\": [\n        \"NNS\"\n    ], \n    \"Association\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"alpha-beta-gammas\": [\n        \"NNS\"\n    ], \n    \"waning\": [\n        \"VBG\"\n    ], \n    \"Kathryn\": [\n        \"NNP\"\n    ], \n    \"multimedia\": [\n        \"NNS\"\n    ], \n    \"mough\": [\n        \"NN\"\n    ], \n    \"sweaty\": [\n        \"JJ\"\n    ], \n    \"Blockade\": [\n        \"NN\"\n    ], \n    \"flowing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Handels\": [\n        \"NNP\"\n    ], \n    \"continously\": [\n        \"RB\"\n    ], \n    \"harassing\": [\n        \"VBG\"\n    ], \n    \"druggist\": [\n        \"NN\"\n    ], \n    \"Brasilia\": [\n        \"NNP\"\n    ], \n    \"wishy-washy\": [\n        \"JJ\"\n    ], \n    \"Luciano\": [\n        \"NNP\"\n    ], \n    \"Puppies\": [\n        \"NNS\"\n    ], \n    \"squirming\": [\n        \"VBG\"\n    ], \n    \"garbage-to-energy\": [\n        \"JJ\"\n    ], \n    \"Seddon\": [\n        \"NNP\"\n    ], \n    \"hi-tech\": [\n        \"JJ\"\n    ], \n    \"credits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Recycling\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ould\": [\n        \"JJ\"\n    ], \n    \"information-technology\": [\n        \"JJ\"\n    ], \n    \"Alien\": [\n        \"NNP\"\n    ], \n    \"derby\": [\n        \"NN\"\n    ], \n    \"makes\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"maker\": [\n        \"NN\"\n    ], \n    \"hasps\": [\n        \"NNS\"\n    ], \n    \"panicked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Tito\": [\n        \"NNP\"\n    ], \n    \"Pigeon\": [\n        \"NNP\"\n    ], \n    \"It-wit\": [\n        \"NN\"\n    ], \n    \"NASDA\": [\n        \"NNP\"\n    ], \n    \"Beronio\": [\n        \"NNP\"\n    ], \n    \"nibbling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"butyl-lithium\": [\n        \"NN\"\n    ], \n    \"McKusick\": [\n        \"NNP\"\n    ], \n    \"desiring\": [\n        \"VBG\"\n    ], \n    \"Solo\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bookman\": [\n        \"NNP\"\n    ], \n    \"property\\\\/casualty\": [\n        \"NN\"\n    ], \n    \"Presently\": [\n        \"RB\"\n    ], \n    \"HEARS\": [\n        \"VBZ\"\n    ], \n    \"incertain\": [\n        \"JJ\"\n    ], \n    \"Sold\": [\n        \"VBN\"\n    ], \n    \"Sole\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lobbyist\": [\n        \"NN\"\n    ], \n    \"Siegel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Masami\": [\n        \"NNP\"\n    ], \n    \"Neutral\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"surrogates\": [\n        \"NNS\"\n    ], \n    \"NATO\": [\n        \"NNP\"\n    ], \n    \"Kauffmann\": [\n        \"NNP\"\n    ], \n    \"Jadwiga\": [\n        \"NNP\"\n    ], \n    \"ex-FDA\": [\n        \"JJ\"\n    ], \n    \"arbitrage``\": [\n        \"``\"\n    ], \n    \"Chatsworth\": [\n        \"NNP\"\n    ], \n    \"EURODOLLARS\": [\n        \"NNS\", \n        \"NNPS|NNS\", \n        \"NNPS\"\n    ], \n    \"rich\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"stolidly\": [\n        \"RB\"\n    ], \n    \"undeclared\": [\n        \"JJ\"\n    ], \n    \"Laporte\": [\n        \"NNP\"\n    ], \n    \"Hiawatha\": [\n        \"NNP\"\n    ], \n    \"Growing\": [\n        \"VBG\"\n    ], \n    \"Blackfriar\": [\n        \"NNP\"\n    ], \n    \"customer\": [\n        \"NN\"\n    ], \n    \"Madam\": [\n        \"NNP\"\n    ], \n    \"Shurtleff\": [\n        \"NNP\"\n    ], \n    \"integrating\": [\n        \"VBG\"\n    ], \n    \"meatpacker\": [\n        \"NN\"\n    ], \n    \"Fiedler\": [\n        \"NNP\"\n    ], \n    \"trans-lingually\": [\n        \"RB\"\n    ], \n    \"unknowns\": [\n        \"NNS\"\n    ], \n    \"clean-water\": [\n        \"NN\"\n    ], \n    \"reserves\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"retell\": [\n        \"VBP\"\n    ], \n    \"Overland\": [\n        \"NNP\"\n    ], \n    \"English-language\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lawford\": [\n        \"NNP\"\n    ], \n    \"scatter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Harnischfeger\": [\n        \"NNP\"\n    ], \n    \"field-service\": [\n        \"JJ\"\n    ], \n    \"murmuring\": [\n        \"VBG\"\n    ], \n    \"plate\": [\n        \"NN\"\n    ], \n    \"copywriter\": [\n        \"NN\"\n    ], \n    \"billboards\": [\n        \"NNS\"\n    ], \n    \"rode\": [\n        \"VBD\"\n    ], \n    \"ascension\": [\n        \"NN\"\n    ], \n    \"Democratic-controlled\": [\n        \"JJ\"\n    ], \n    \"Panmunjom\": [\n        \"NNP\"\n    ], \n    \"bolstered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rosie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cross-eyed\": [\n        \"JJ\"\n    ], \n    \"tightrope\": [\n        \"NN\"\n    ], \n    \"Vesole\": [\n        \"NNP\"\n    ], \n    \"comedy\": [\n        \"NN\"\n    ], \n    \"sucess\": [\n        \"NN\"\n    ], \n    \"clasping\": [\n        \"VBG\"\n    ], \n    \"fine-looking\": [\n        \"JJ\"\n    ], \n    \"SCRAP\": [\n        \"VBP\"\n    ], \n    \"disassociated\": [\n        \"VBD\"\n    ], \n    \"wignapping\": [\n        \"NN\"\n    ], \n    \"Y-region\": [\n        \"NN\"\n    ], \n    \"re-entering\": [\n        \"VBG\"\n    ], \n    \"Glowering\": [\n        \"VBG\"\n    ], \n    \"Forseth\": [\n        \"NNP\"\n    ], \n    \"Spanberg\": [\n        \"NNP\"\n    ], \n    \"Ono\": [\n        \"NNP\"\n    ], \n    \"Ong\": [\n        \"NNP\"\n    ], \n    \"Grosse\": [\n        \"NNP\"\n    ], \n    \"Bleeker\": [\n        \"NNP\"\n    ], \n    \"Laugh\": [\n        \"NNP\"\n    ], \n    \"Maccario\": [\n        \"NNP\"\n    ], \n    \"Nine-month\": [\n        \"JJ\"\n    ], \n    \"Madson\": [\n        \"NNP\"\n    ], \n    \"evolutionary\": [\n        \"JJ\"\n    ], \n    \"thigh\": [\n        \"NN\"\n    ], \n    \"non-church\": [\n        \"JJ\"\n    ], \n    \"volts\": [\n        \"NNS\"\n    ], \n    \"Shigeru\": [\n        \"NNP\"\n    ], \n    \"altogether\": [\n        \"RB\"\n    ], \n    \"Fitzgerald\": [\n        \"NNP\"\n    ], \n    \"Lincoln-Mercury-Merkur\": [\n        \"NNP\"\n    ], \n    \"summer-holiday\": [\n        \"JJ\"\n    ], \n    \"Mikie\": [\n        \"NNP\"\n    ], \n    \"long-lived\": [\n        \"JJ\"\n    ], \n    \"Reconsider\": [\n        \"VB\"\n    ], \n    \"Emergency\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cut-rate\": [\n        \"JJ\"\n    ], \n    \"BRIDGEPORT\": [\n        \"NNP\"\n    ], \n    \"high-price\": [\n        \"JJ\"\n    ], \n    \"accompaniments\": [\n        \"NNS\"\n    ], \n    \"barrel-wide\": [\n        \"JJ\"\n    ], \n    \"derivative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Home\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subparagraph\": [\n        \"NN\"\n    ], \n    \"LYNCH\": [\n        \"NNP\"\n    ], \n    \"physicians\": [\n        \"NNS\"\n    ], \n    \"prosper\": [\n        \"VB\"\n    ], \n    \"Yongjian\": [\n        \"NNP\"\n    ], \n    \"Conviction\": [\n        \"NN\"\n    ], \n    \"Teleprompter\": [\n        \"NNP\"\n    ], \n    \"Fortified\": [\n        \"VBN\"\n    ], \n    \"Morrill\": [\n        \"NNP\"\n    ], \n    \"Register\": [\n        \"NNP\"\n    ], \n    \"creedal\": [\n        \"JJ\"\n    ], \n    \"Long-Term\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"junior-high\": [\n        \"JJ\"\n    ], \n    \"Extensions\": [\n        \"NNS\"\n    ], \n    \"Sense\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"nose-dived\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Creators\": [\n        \"NNS\"\n    ], \n    \"grimaced\": [\n        \"VBD\"\n    ], \n    \"STOCK\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"off-center\": [\n        \"JJ\"\n    ], \n    \"five-party\": [\n        \"JJ\"\n    ], \n    \"far-famed\": [\n        \"JJ\"\n    ], \n    \"concave\": [\n        \"JJ\"\n    ], \n    \"Riely\": [\n        \"NNP\"\n    ], \n    \"Wenceslas\": [\n        \"NNP\"\n    ], \n    \"invertebrates\": [\n        \"NNS\"\n    ], \n    \"Bonanno\": [\n        \"NNP\"\n    ], \n    \"reproducing\": [\n        \"VBG\"\n    ], \n    \"homogeneous\": [\n        \"JJ\"\n    ], \n    \"Landis\": [\n        \"NNP\"\n    ], \n    \"Molloy\": [\n        \"NNP\"\n    ], \n    \"self-image\": [\n        \"NN\"\n    ], \n    \"Dunes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"gravel-voiced\": [\n        \"JJ\"\n    ], \n    \"Recyclers\": [\n        \"NNPS\"\n    ], \n    \"Anniversary\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dropping\": [\n        \"VBG\"\n    ], \n    \"Cheng\": [\n        \"NNP\"\n    ], \n    \"Seiyu\": [\n        \"NNP\"\n    ], \n    \"patch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"witness\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mind-set\": [\n        \"NN\"\n    ], \n    \"Treausry\": [\n        \"NNP\"\n    ], \n    \"Noting\": [\n        \"VBG\"\n    ], \n    \"creditworthy\": [\n        \"NN\"\n    ], \n    \"frowns\": [\n        \"VBZ\"\n    ], \n    \"market-on-close\": [\n        \"JJ\"\n    ], \n    \"DuroTest\": [\n        \"NNP\"\n    ], \n    \"Shortly\": [\n        \"RB\"\n    ], \n    \"unwieldy\": [\n        \"JJ\"\n    ], \n    \"greedy\": [\n        \"JJ\"\n    ], \n    \"Monopolies\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"convolutions\": [\n        \"NNS\"\n    ], \n    \"ServantCor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hammersla\": [\n        \"NNP\"\n    ], \n    \"Ecco\": [\n        \"NNP\"\n    ], \n    \"Oros\": [\n        \"NNP\"\n    ], \n    \"Angola\": [\n        \"NNP\"\n    ], \n    \"Juliano\": [\n        \"NNP\"\n    ], \n    \"U-I\": [\n        \"NNP\"\n    ], \n    \"Zayre\": [\n        \"NNP\"\n    ], \n    \"countrey\": [\n        \"NN\"\n    ], \n    \"Plenary\": [\n        \"NNP\"\n    ], \n    \"underinvestigated\": [\n        \"JJ\"\n    ], \n    \"troughed\": [\n        \"VBD\"\n    ], \n    \"BOSSES\": [\n        \"NNP\"\n    ], \n    \"Calvert\": [\n        \"NNP\"\n    ], \n    \"receding\": [\n        \"VBG\"\n    ], \n    \"gamekeeper\": [\n        \"NN\"\n    ], \n    \"upper-class\": [\n        \"JJ\"\n    ], \n    \"imprecates\": [\n        \"VBZ\"\n    ], \n    \"jurists\": [\n        \"NNS\"\n    ], \n    \"REINSURERS\": [\n        \"NNS\"\n    ], \n    \"Refco\": [\n        \"NNP\"\n    ], \n    \"landlord-tenant\": [\n        \"JJ\"\n    ], \n    \"Kubek\": [\n        \"NNP\"\n    ], \n    \"Connecting\": [\n        \"NNP\"\n    ], \n    \"Backstairs\": [\n        \"NNS\"\n    ], \n    \"WORKS\": [\n        \"NNP\"\n    ], \n    \"vetoed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dunston\": [\n        \"NNP\"\n    ], \n    \"erstwhile\": [\n        \"JJ\"\n    ], \n    \"foul-ups\": [\n        \"NNS\"\n    ], \n    \"Pinter\": [\n        \"NNP\"\n    ], \n    \"onslaughts\": [\n        \"NNS\"\n    ], \n    \"lumen\": [\n        \"NN\"\n    ], \n    \"garden-shrub\": [\n        \"NN\"\n    ], \n    \"Kikkoman\": [\n        \"NNP\"\n    ], \n    \"interests\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"enforcement\": [\n        \"NN\"\n    ], \n    \"Boardman\": [\n        \"NNP\"\n    ], \n    \"quarry\": [\n        \"NN\"\n    ], \n    \"Dill\": [\n        \"NNP\"\n    ], \n    \"Roosevelt\": [\n        \"NNP\"\n    ], \n    \"Calcium\": [\n        \"NN\"\n    ], \n    \"Xenia\": [\n        \"NNP\"\n    ], \n    \"Copperman\": [\n        \"NNP\"\n    ], \n    \"incongruities\": [\n        \"NNS\"\n    ], \n    \"Heckman\": [\n        \"NNP\"\n    ], \n    \"commandant\": [\n        \"NN\"\n    ], \n    \"Existing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"non-research\": [\n        \"JJ\"\n    ], \n    \"orchestrated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ashton-Tate\": [\n        \"NNP\"\n    ], \n    \"gays\": [\n        \"NNS\"\n    ], \n    \"Doswell\": [\n        \"NNP\"\n    ], \n    \"Tennesse\": [\n        \"NNP\"\n    ], \n    \"Negotiable\": [\n        \"JJ\"\n    ], \n    \"Oldenburg\": [\n        \"NNP\"\n    ], \n    \"false\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"shrinks\": [\n        \"VBZ\"\n    ], \n    \"chivalrous\": [\n        \"JJ\"\n    ], \n    \"Fenimore\": [\n        \"NNP\"\n    ], \n    \"cost-reduction\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tonight\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"Secret\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ledge\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"wave-setting\": [\n        \"JJ\"\n    ], \n    \"mustachioed\": [\n        \"JJ\"\n    ], \n    \"depict\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Mulloy\": [\n        \"NNP\"\n    ], \n    \"how-to\": [\n        \"JJ\"\n    ], \n    \"Fukuyama\": [\n        \"NNP\"\n    ], \n    \"cloakrooms\": [\n        \"NNS\"\n    ], \n    \"DEFENSE\": [\n        \"NN\"\n    ], \n    \"teetered\": [\n        \"VBD\"\n    ], \n    \"Invisible\": [\n        \"NNP\"\n    ], \n    \"Lansbury\": [\n        \"NNP\"\n    ], \n    \"tall-masted\": [\n        \"JJ\"\n    ], \n    \"Sysco\": [\n        \"NNP\"\n    ], \n    \"manor\": [\n        \"NN\"\n    ], \n    \"Brown-tobacco\": [\n        \"JJ\"\n    ], \n    \"Fizkultura\": [\n        \"NNP\"\n    ], \n    \"hoof-and-mouth\": [\n        \"JJ\"\n    ], \n    \"cipher\": [\n        \"VB\"\n    ], \n    \"Mode\": [\n        \"NNP\"\n    ], \n    \"jimmied\": [\n        \"VBD\"\n    ], \n    \"oil-slicked\": [\n        \"JJ\"\n    ], \n    \"Wheatena\": [\n        \"NNP\"\n    ], \n    \"so-called\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"placement\": [\n        \"NN\"\n    ], \n    \"Barasch\": [\n        \"NNP\"\n    ], \n    \"Soderblom\": [\n        \"NNP\"\n    ], \n    \"bred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Adaptaplex\": [\n        \"NNP\"\n    ], \n    \"Belisle\": [\n        \"NNP\"\n    ], \n    \"lots\": [\n        \"NNS\"\n    ], \n    \"consorting\": [\n        \"VBG\"\n    ], \n    \"O*/NNP&Y\": [\n        \"NN\"\n    ], \n    \"brew\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"back...\": [\n        \":\"\n    ], \n    \"Unstained\": [\n        \"JJ\"\n    ], \n    \"Hasenauer\": [\n        \"NNP\"\n    ], \n    \"Brandes\": [\n        \"NNP\"\n    ], \n    \"Reliance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"free-traders\": [\n        \"NNS\"\n    ], \n    \"Brandel\": [\n        \"NNP\"\n    ], \n    \"rubric\": [\n        \"NN\"\n    ], \n    \"bean-counting\": [\n        \"NN\"\n    ], \n    \"replaster\": [\n        \"VB\"\n    ], \n    \"taps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"trying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Betsey\": [\n        \"NNP\"\n    ], \n    \"quickened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Curzon\": [\n        \"NNP\"\n    ], \n    \"entities\": [\n        \"NNS\"\n    ], \n    \"irk\": [\n        \"VB\"\n    ], \n    \"tape\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"reggae-and-rock\": [\n        \"JJ\"\n    ], \n    \"riding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Storekeepers\": [\n        \"NNS\"\n    ], \n    \"preliminaries\": [\n        \"NNS\"\n    ], \n    \"Schlieren\": [\n        \"NNP\"\n    ], \n    \"undivided\": [\n        \"JJ\"\n    ], \n    \"Hooked\": [\n        \"VBD\"\n    ], \n    \"Tasso\": [\n        \"NNP\"\n    ], \n    \"I.R.S\": [\n        \"NNP\"\n    ], \n    \"unbundle\": [\n        \"VB\"\n    ], \n    \"EnClean\": [\n        \"NNP\"\n    ], \n    \"Keen\": [\n        \"NNP\"\n    ], \n    \"molasses\": [\n        \"NN\"\n    ], \n    \"sinus\": [\n        \"NN\"\n    ], \n    \"wring\": [\n        \"VB\"\n    ], \n    \"strollers\": [\n        \"NNS\"\n    ], \n    \"monkish\": [\n        \"JJ\"\n    ], \n    \"Rating\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"five-block\": [\n        \"JJ\"\n    ], \n    \"State-run\": [\n        \"JJ\"\n    ], \n    \"fez-wearing\": [\n        \"JJ\"\n    ], \n    \"comprising\": [\n        \"VBG\"\n    ], \n    \"taxes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"low-value\": [\n        \"JJ\"\n    ], \n    \"stuff\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"cabaret-like\": [\n        \"JJ\"\n    ], \n    \"taxed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Landesrentenbank\": [\n        \"NNP\"\n    ], \n    \"Brent\": [\n        \"NNP\"\n    ], \n    \"guessing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"deathward\": [\n        \"RB\"\n    ], \n    \"pronoun\": [\n        \"NN\"\n    ], \n    \"frame\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"AmeriGas\": [\n        \"NNP\"\n    ], \n    \"Joachim\": [\n        \"NNP\"\n    ], \n    \"Fe\": [\n        \"NNP\"\n    ], \n    \"elusiveness\": [\n        \"NN\"\n    ], \n    \"knee-type\": [\n        \"JJ\"\n    ], \n    \"Hooker\": [\n        \"NNP\"\n    ], \n    \"Linden\": [\n        \"NNP\"\n    ], \n    \"dungeon\": [\n        \"NN\"\n    ], \n    \"Nagayama\": [\n        \"NNP\"\n    ], \n    \"destiny\": [\n        \"NN\"\n    ], \n    \"Yanks\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Issam\": [\n        \"NNP\"\n    ], \n    \"nuclear\": [\n        \"JJ\"\n    ], \n    \"Hindoo\": [\n        \"NNP\"\n    ], \n    \"Issak\": [\n        \"NNP\"\n    ], \n    \"roiled\": [\n        \"VBN\"\n    ], \n    \"STUBBED\": [\n        \"VBN\"\n    ], \n    \"membrane\": [\n        \"NN\"\n    ], \n    \"onward-driving\": [\n        \"JJ\"\n    ], \n    \"Linder\": [\n        \"NNP\"\n    ], \n    \"incumbent-protection\": [\n        \"JJ\"\n    ], \n    \"post-bankruptcy\": [\n        \"JJ\"\n    ], \n    \"Succasunna\": [\n        \"NNP\"\n    ], \n    \"Courbet\": [\n        \"NNP\"\n    ], \n    \"INQUIRY\": [\n        \"NN\"\n    ], \n    \"hot-selling\": [\n        \"JJ\"\n    ], \n    \"Clairson\": [\n        \"NNP\"\n    ], \n    \"staring\": [\n        \"VBG\"\n    ], \n    \"handstands\": [\n        \"NNS\"\n    ], \n    \"challengers\": [\n        \"NNS\"\n    ], \n    \"marts\": [\n        \"NNS\"\n    ], \n    \"Circus\": [\n        \"NNP\"\n    ], \n    \"Leontief\": [\n        \"NNP\"\n    ], \n    \"Zurich-based\": [\n        \"JJ\"\n    ], \n    \"Ione\": [\n        \"NNP\"\n    ], \n    \"award-winning\": [\n        \"JJ\"\n    ], \n    \"Musmanno\": [\n        \"NNP\"\n    ], \n    \"exalting\": [\n        \"VBG\"\n    ], \n    \"low-altitude\": [\n        \"NN\"\n    ], \n    \"near-term\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ledger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"indict\": [\n        \"VB\"\n    ], \n    \"stylistically\": [\n        \"RB\"\n    ], \n    \"scapulars\": [\n        \"NNS\"\n    ], \n    \"Certificates-a\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Meadows\": [\n        \"NNP\"\n    ], \n    \"mailman\": [\n        \"NN\"\n    ], \n    \"balloonists\": [\n        \"NNS\"\n    ], \n    \"decanting\": [\n        \"VBG\"\n    ], \n    \"open-shelf\": [\n        \"JJ\"\n    ], \n    \"genetic\": [\n        \"JJ\"\n    ], \n    \"willing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"entitle\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Aziz\": [\n        \"NNP\"\n    ], \n    \"feather\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"GRiDPad\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Land-based\": [\n        \"JJ\"\n    ], \n    \"commuter\": [\n        \"NN\"\n    ], \n    \"commutes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"coherence\": [\n        \"NN\"\n    ], \n    \"quasi-performer\": [\n        \"NN\"\n    ], \n    \"commuted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Vicks\": [\n        \"NNP\"\n    ], \n    \"Kupor\": [\n        \"NNP\"\n    ], \n    \"MARKS\": [\n        \"NNS\"\n    ], \n    \"swindling\": [\n        \"VBG\"\n    ], \n    \"Vicky\": [\n        \"NNP\"\n    ], \n    \"banish\": [\n        \"VB\"\n    ], \n    \"countermeasures\": [\n        \"NNS\"\n    ], \n    \"sourly\": [\n        \"RB\"\n    ], \n    \"Widener\": [\n        \"NNP\"\n    ], \n    \"Verbrugge\": [\n        \"NNP\"\n    ], \n    \"Ebersol\": [\n        \"NNP\"\n    ], \n    \"OECD\": [\n        \"NNP\"\n    ], \n    \"Bethlehem\": [\n        \"NNP\"\n    ], \n    \"Mahal-flavor\": [\n        \"NNP\"\n    ], \n    \"Virginians\": [\n        \"NNPS\"\n    ], \n    \"westerly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Greek-speaking\": [\n        \"JJ\"\n    ], \n    \"Noces\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Dalfen\": [\n        \"NNP\"\n    ], \n    \"Yazov\": [\n        \"NNP\"\n    ], \n    \"greater\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"cohort\": [\n        \"NN\"\n    ], \n    \"ostentatious\": [\n        \"JJ\"\n    ], \n    \"newsroom\": [\n        \"NN\"\n    ], \n    \"descendants\": [\n        \"NNS\"\n    ], \n    \"Judie\": [\n        \"NNP\"\n    ], \n    \"Regular\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Stanbury\": [\n        \"NNP\"\n    ], \n    \"chronicling\": [\n        \"VBG\"\n    ], \n    \"unimaginable\": [\n        \"JJ\"\n    ], \n    \"ex-employer\": [\n        \"NN\"\n    ], \n    \"Mandelbaum\": [\n        \"NNP\"\n    ], \n    \"nondescriptly\": [\n        \"RB\"\n    ], \n    \"high-standard\": [\n        \"JJ\"\n    ], \n    \"diplomatically\": [\n        \"RB\"\n    ], \n    \"Decker\": [\n        \"NNP\"\n    ], \n    \"polyesters\": [\n        \"NNS\"\n    ], \n    \"ex-employee\": [\n        \"NN\"\n    ], \n    \"heathenish\": [\n        \"JJ\"\n    ], \n    \"Hanover-Precious\": [\n        \"NNP\"\n    ], \n    \"Dulles\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"non-fortress-like\": [\n        \"JJ\"\n    ], \n    \"off\": [\n        \"IN\", \n        \"RB|IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"EYP\": [\n        \"NNP\"\n    ], \n    \"provocatively\": [\n        \"RB\"\n    ], \n    \"SHIBUMI\": [\n        \"NNP\"\n    ], \n    \"southeastern\": [\n        \"JJ\"\n    ], \n    \"oft\": [\n        \"RB\"\n    ], \n    \"diphtheria\": [\n        \"NN\"\n    ], \n    \"windowless\": [\n        \"JJ\"\n    ], \n    \"Bambi-syndronists\": [\n        \"NNS\"\n    ], \n    \"reefs\": [\n        \"NNS\"\n    ], \n    \"monetarism\": [\n        \"NN\"\n    ], \n    \"newest\": [\n        \"JJS\", \n        \"JJ\"\n    ], \n    \"Similarly\": [\n        \"RB\"\n    ], \n    \"peer-group\": [\n        \"JJ\"\n    ], \n    \"Lover\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"resuspended\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Siegman\": [\n        \"NNP\"\n    ], \n    \"Joyo\": [\n        \"NNP\"\n    ], \n    \"Camdessus\": [\n        \"NNP\"\n    ], \n    \"monetarist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ramcharger\": [\n        \"NNP\"\n    ], \n    \"granulocytic\": [\n        \"JJ\"\n    ], \n    \"W.D.\": [\n        \"NNP\"\n    ], \n    \"Schering\": [\n        \"NNP\"\n    ], \n    \"too-expensive\": [\n        \"JJ\"\n    ], \n    \"moralities\": [\n        \"NNS\"\n    ], \n    \"hot-rolled\": [\n        \"JJ\"\n    ], \n    \"neoliberal\": [\n        \"JJ\"\n    ], \n    \"Countrywide\": [\n        \"NNP\"\n    ], \n    \"crack\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Unfurling\": [\n        \"VBG\"\n    ], \n    \"one-percentage-point\": [\n        \"JJ\"\n    ], \n    \"Lebo\": [\n        \"NNP\"\n    ], \n    \"Qualitative\": [\n        \"JJ\"\n    ], \n    \"stooped\": [\n        \"VBD\"\n    ], \n    \"falters\": [\n        \"VBZ\"\n    ], \n    \"crux\": [\n        \"NN\"\n    ], \n    \"Ghent\": [\n        \"NNP\"\n    ], \n    \"Photofrin\": [\n        \"NN\"\n    ], \n    \"crus\": [\n        \"NN\"\n    ], \n    \"RESOURCES\": [\n        \"NNP\"\n    ], \n    \"debatable\": [\n        \"JJ\"\n    ], \n    \"Virdon\": [\n        \"NNP\"\n    ], \n    \"bulge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Insta-Care\": [\n        \"NNP\"\n    ], \n    \"sharp-jawed\": [\n        \"JJ\"\n    ], \n    \"Gino\": [\n        \"NNP\"\n    ], \n    \"Agents\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Hondurans\": [\n        \"NNS\"\n    ], \n    \"become\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Earthbeat\": [\n        \"NNP\"\n    ], \n    \"Lauritsen\": [\n        \"NNP\"\n    ], \n    \"Purves\": [\n        \"NNP\"\n    ], \n    \"Newburgh\": [\n        \"NNP\"\n    ], \n    \"Kidder\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"stress-producing\": [\n        \"JJ\"\n    ], \n    \"Rykoff-Sexton\": [\n        \"NNP\"\n    ], \n    \"Food-price\": [\n        \"JJ\"\n    ], \n    \"castorbeans\": [\n        \"NNS\"\n    ], \n    \"hissing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Feldstein\": [\n        \"NNP\"\n    ], \n    \"Belvidere\": [\n        \"NNP\"\n    ], \n    \"recognition\": [\n        \"NN\"\n    ], \n    \"Warrior\": [\n        \"NNP\"\n    ], \n    \"cutting-tools\": [\n        \"NNS\"\n    ], \n    \"passion\": [\n        \"NN\"\n    ], \n    \"saucepan\": [\n        \"NN\"\n    ], \n    \"five-by-eight-inch\": [\n        \"JJ\"\n    ], \n    \"Fruehauf\": [\n        \"NNP\"\n    ], \n    \"sidestreet\": [\n        \"NN\"\n    ], \n    \"biology\": [\n        \"NN\"\n    ], \n    \"Kikuyu\": [\n        \"NNP\"\n    ], \n    \"Komurasaki\": [\n        \"NNP\"\n    ], \n    \"Telefonos\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Jaggers\": [\n        \"NNP\"\n    ], \n    \"last-resort\": [\n        \"JJ\"\n    ], \n    \"Utopia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"torched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tubing\": [\n        \"NN\", \n        \",\"\n    ], \n    \"posterity\": [\n        \"NN\"\n    ], \n    \"imaginary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"milquetoast\": [\n        \"NN\"\n    ], \n    \"Judgments\": [\n        \"NNS\"\n    ], \n    \"debentures\": [\n        \"NNS\"\n    ], \n    \"grayer\": [\n        \"JJR\"\n    ], \n    \"SalFininistas\": [\n        \"NNP\"\n    ], \n    \"Cos\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Replace\": [\n        \"VB\"\n    ], \n    \"Glassell\": [\n        \"NNP\"\n    ], \n    \"moss-covered\": [\n        \"JJ\"\n    ], \n    \"blackness\": [\n        \"NN\"\n    ], \n    \"curative\": [\n        \"JJ\"\n    ], \n    \"mucilage\": [\n        \"NN\"\n    ], \n    \"grayed\": [\n        \"JJ\"\n    ], \n    \"swimming\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"cultivates\": [\n        \"VBZ\"\n    ], \n    \"high-priced\": [\n        \"JJ\"\n    ], \n    \"letters\": [\n        \"NNS\"\n    ], \n    \"Somewhere\": [\n        \"RB\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Propulsion\": [\n        \"NNP\"\n    ], \n    \"Caesars\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"sharpness\": [\n        \"NN\"\n    ], \n    \"Ravel-like\": [\n        \"JJ\"\n    ], \n    \"Schmalzried\": [\n        \"NNP\"\n    ], \n    \"unstanched\": [\n        \"VBN\"\n    ], \n    \"cultivated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"HOLIDAY\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bothers\": [\n        \"VBZ\"\n    ], \n    \"glistened\": [\n        \"VBD\"\n    ], \n    \"brownies\": [\n        \"NNS\"\n    ], \n    \"zenith\": [\n        \"NN\"\n    ], \n    \"Corton-Charlemagne\": [\n        \"NNP\"\n    ], \n    \"nonfarm\": [\n        \"JJ\"\n    ], \n    \"splintered\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pairing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"faster-growing\": [\n        \"JJR\"\n    ], \n    \"providential\": [\n        \"JJ\"\n    ], \n    \"solid-muscle\": [\n        \"JJ\"\n    ], \n    \"terminates\": [\n        \"VBZ\"\n    ], \n    \"Billings\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"sommelier\": [\n        \"FW\"\n    ], \n    \"Majdan-Tartarski\": [\n        \"NNP\"\n    ], \n    \"Exact\": [\n        \"JJ\"\n    ], \n    \"Wimpys\": [\n        \"NNP\"\n    ], \n    \"public-housing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sanitation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"airline-hostess\": [\n        \"NN\"\n    ], \n    \"Kloman\": [\n        \"NNP\"\n    ], \n    \"Lo-Jack\": [\n        \"NNP\"\n    ], \n    \"cancer-gene\": [\n        \"JJ\"\n    ], \n    \"FormBase\": [\n        \"NNP\"\n    ], \n    \"Bohn\": [\n        \"NNP\"\n    ], \n    \"Lifson\": [\n        \"NNP\"\n    ], \n    \"Healthcare\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Milstar\": [\n        \"NNP\"\n    ], \n    \"Nu-West\": [\n        \"NNP\"\n    ], \n    \"Guber\\\\/Peters\": [\n        \"NNP\"\n    ], \n    \"fragmentation\": [\n        \"NN\"\n    ], \n    \"tossed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"evident\": [\n        \"JJ\"\n    ], \n    \"shrunk\": [\n        \"VBN\"\n    ], \n    \"Terrizzi\": [\n        \"NNP\"\n    ], \n    \"wheellike\": [\n        \"JJ\"\n    ], \n    \"excitement\": [\n        \"NN\"\n    ], \n    \"tosses\": [\n        \"NNS\"\n    ], \n    \"office-supply\": [\n        \"JJ\"\n    ], \n    \"problem\": [\n        \"NN\"\n    ], \n    \"man-to-man\": [\n        \"RB\"\n    ], \n    \"Vowel-Length\": [\n        \"NN\"\n    ], \n    \"Bumkins\": [\n        \"NNP\"\n    ], \n    \"Cementos\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Argonne\": [\n        \"NNP\"\n    ], \n    \"obese\": [\n        \"JJ\"\n    ], \n    \"Nath\": [\n        \"NNP\"\n    ], \n    \"Alleghany\": [\n        \"NNP\"\n    ], \n    \"fine-featured\": [\n        \"JJ\"\n    ], \n    \"Nate\": [\n        \"NNP\"\n    ], \n    \"smoothed-muscled\": [\n        \"JJ\"\n    ], \n    \"nonetheless\": [\n        \"RB\"\n    ], \n    \"tubular\": [\n        \"JJ\"\n    ], \n    \"Somers\": [\n        \"NNP\"\n    ], \n    \"leafmold\": [\n        \"NN\"\n    ], \n    \"decisional\": [\n        \"JJ\"\n    ], \n    \"Khare\": [\n        \"NNP\"\n    ], \n    \"details\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"D.W.\": [\n        \"NNP\"\n    ], \n    \"gene-replication\": [\n        \"NN\"\n    ], \n    \"Corp.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rebelled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Accord\": [\n        \"NNP\"\n    ], \n    \"Trickster\": [\n        \"NNP\"\n    ], \n    \"Matais\": [\n        \"NNP\"\n    ], \n    \"Peery\": [\n        \"NNP\"\n    ], \n    \"Druse\": [\n        \"JJ\"\n    ], \n    \"outlets\": [\n        \"NNS\"\n    ], \n    \"treelike\": [\n        \"JJ\"\n    ], \n    \"ULI\": [\n        \"NNP\"\n    ], \n    \"Monterrey-based\": [\n        \"JJ\"\n    ], \n    \"Delwin\": [\n        \"NNP\"\n    ], \n    \"Praise\": [\n        \"NN\"\n    ], \n    \"Michaels\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"exposure\": [\n        \"NN\"\n    ], \n    \"export-driven\": [\n        \"JJ\"\n    ], \n    \"Octoroon\": [\n        \"NNP\"\n    ], \n    \"Corps\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"caricaturist\": [\n        \"NN\"\n    ], \n    \"compete\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"villainous\": [\n        \"JJ\"\n    ], \n    \"Rhu-beb-ni-ice\": [\n        \"NN\"\n    ], \n    \"Philly\": [\n        \"RB\"\n    ], \n    \"Infotab\": [\n        \"NNP\"\n    ], \n    \"non-Alternative\": [\n        \"NNP\"\n    ], \n    \"near-strangers\": [\n        \"NNS\"\n    ], \n    \"clamoring\": [\n        \"VBG\"\n    ], \n    \"yield-maintenance\": [\n        \"NN\"\n    ], \n    \"Agile\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"magnetic\": [\n        \"JJ\"\n    ], \n    \"Kensington\": [\n        \"NNP\"\n    ], \n    \"Interlude\": [\n        \"NNP\"\n    ], \n    \"Roche\": [\n        \"NNP\"\n    ], \n    \"Rocha\": [\n        \"NNP\"\n    ], \n    \"tenuous\": [\n        \"JJ\"\n    ], \n    \"Partecipazioni\": [\n        \"NNP\"\n    ], \n    \"integrity\": [\n        \"NN\"\n    ], \n    \"stinks\": [\n        \"VBZ\"\n    ], \n    \"cm.\": [\n        \"NN\"\n    ], \n    \"Brainard\": [\n        \"NNP\"\n    ], \n    \"self-consuming\": [\n        \"JJ\"\n    ], \n    \"Assemblyman\": [\n        \"NNP\"\n    ], \n    \"periodicals\": [\n        \"NNS\"\n    ], \n    \"Immediate\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"propellants\": [\n        \"NNS\"\n    ], \n    \"neighbours\": [\n        \"NNS\"\n    ], \n    \"Propylene\": [\n        \"NN\"\n    ], \n    \"Greenshields\": [\n        \"NNP\"\n    ], \n    \"over-the-road\": [\n        \"JJ\"\n    ], \n    \"worth\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\", \n        \"RB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"alternating\": [\n        \"VBG\"\n    ], \n    \"Aaawww\": [\n        \"UH\"\n    ], \n    \"stud\": [\n        \"NN\"\n    ], \n    \"Ametek\": [\n        \"NNP\"\n    ], \n    \"perishable\": [\n        \"JJ\"\n    ], \n    \"Mancini\": [\n        \"NNP\"\n    ], \n    \"Shaughnessy\": [\n        \"NNP\"\n    ], \n    \"Pipe\": [\n        \"NNP\"\n    ], \n    \"replication\": [\n        \"NN\"\n    ], \n    \"summarized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pre-employment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hands-off\": [\n        \"JJ\"\n    ], \n    \"white-collar-defense\": [\n        \"JJ\"\n    ], \n    \"five-ply\": [\n        \"JJ\"\n    ], \n    \"blanche\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"by-election\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"progression\": [\n        \"NN\"\n    ], \n    \"daydream\": [\n        \"NN\"\n    ], \n    \"Subsidies\": [\n        \"NNS\"\n    ], \n    \"debunked\": [\n        \"VBN\"\n    ], \n    \"samurai\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"underground-storage\": [\n        \"NN\"\n    ], \n    \"vegetable-protein\": [\n        \"NN\"\n    ], \n    \"superlunary\": [\n        \"JJ\"\n    ], \n    \"Zagaria\": [\n        \"NNP\"\n    ], \n    \"Conning\": [\n        \"NNP\"\n    ], \n    \"weapons-plant\": [\n        \"JJ\"\n    ], \n    \"professionally\": [\n        \"RB\"\n    ], \n    \"Boats\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Thema\": [\n        \"NNP\"\n    ], \n    \"Troubled\": [\n        \"JJ\", \n        \"VBN\", \n        \"NNP\"\n    ], \n    \"shatteringly\": [\n        \"RB\"\n    ], \n    \"Capra\": [\n        \"NNP\"\n    ], \n    \"machines\": [\n        \"NNS\"\n    ], \n    \"Salle\": [\n        \"NNP\"\n    ], \n    \"auto-market\": [\n        \"NN\"\n    ], \n    \"filtration\": [\n        \"NN\"\n    ], \n    \"food-service\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fireman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"time-tested\": [\n        \"JJ\"\n    ], \n    \"Grandis\": [\n        \"NNP\"\n    ], \n    \"offshoots\": [\n        \"NNS\"\n    ], \n    \"Whirling\": [\n        \"JJ\"\n    ], \n    \"Mazda\": [\n        \"NNP\"\n    ], \n    \"market-place\": [\n        \"NN\"\n    ], \n    \"baptistery\": [\n        \"NN\"\n    ], \n    \"Sedan\": [\n        \"NNP\"\n    ], \n    \"Olatunji\": [\n        \"NNP\"\n    ], \n    \"Nietzsche\": [\n        \"NNP\"\n    ], \n    \"Photograph\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"No-o-o\": [\n        \"UH\"\n    ], \n    \"viewings\": [\n        \"NNS\"\n    ], \n    \"Caradon\": [\n        \"NNP\"\n    ], \n    \"PARIS\": [\n        \"NNP\"\n    ], \n    \"sub-therapeutic\": [\n        \"JJ\"\n    ], \n    \"Linville\": [\n        \"NNP\"\n    ], \n    \"equals\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"remarried\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Cadre\": [\n        \"NNP\"\n    ], \n    \"Algonquin\": [\n        \"NNP\"\n    ], \n    \"Taisei\": [\n        \"NNP\"\n    ], \n    \"non-Mexican\": [\n        \"JJ\"\n    ], \n    \"Marshal\": [\n        \"NNP\"\n    ], \n    \"stresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bilevel\": [\n        \"JJ\"\n    ], \n    \"Duero\": [\n        \"NNP\"\n    ], \n    \"fireballs\": [\n        \"NNS\"\n    ], \n    \"catch-up\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Barabba\": [\n        \"NNP\"\n    ], \n    \"Riefling\": [\n        \"NNP\"\n    ], \n    \"stressed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"sequestering\": [\n        \"NN\"\n    ], \n    \"otters\": [\n        \"NNS\"\n    ], \n    \"Absolute\": [\n        \"JJ\"\n    ], \n    \"Brownell\": [\n        \"NNP\"\n    ], \n    \"Economdis\": [\n        \"NNP\"\n    ], \n    \"water-purification\": [\n        \"NN\"\n    ], \n    \"inequitable\": [\n        \"JJ\"\n    ], \n    \"plenum\": [\n        \"NN\"\n    ], \n    \"Raymonda\": [\n        \"NNP\"\n    ], \n    \"inequitably\": [\n        \"RB\"\n    ], \n    \"building-supplies\": [\n        \"NNS\"\n    ], \n    \"Satan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"compulsively\": [\n        \"RB\"\n    ], \n    \"HOLLYWOOD\": [\n        \"NNP\"\n    ], \n    \"bra\": [\n        \"NN\"\n    ], \n    \"Cestre\": [\n        \"NNP\"\n    ], \n    \"devastation\": [\n        \"NN\"\n    ], \n    \"Shootin\": [\n        \"VBG\"\n    ], \n    \"Bellini\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fulfull\": [\n        \"VB\"\n    ], \n    \"sweater\": [\n        \"NN\"\n    ], \n    \"W.I.L.D\": [\n        \"NNP\"\n    ], \n    \"unrehearsed\": [\n        \"JJ\"\n    ], \n    \"Poughkeepsie\": [\n        \"NNP\"\n    ], \n    \"spearhead\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"administering\": [\n        \"VBG\"\n    ], \n    \"sweated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"exacts\": [\n        \"VBZ\"\n    ], \n    \"Competes\": [\n        \"VBZ\"\n    ], \n    \"chlorpromazine\": [\n        \"NN\"\n    ], \n    \"Consort\": [\n        \"NNP\"\n    ], \n    \"Skye\": [\n        \"NNP\"\n    ], \n    \"Extracts\": [\n        \"NNS\"\n    ], \n    \"simperers\": [\n        \"NNS\"\n    ], \n    \"ascribe\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"two-drug\": [\n        \"JJ\"\n    ], \n    \"regrouping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"championships\": [\n        \"NNS\"\n    ], \n    \"profits-optimism\": [\n        \"JJ\"\n    ], \n    \"overstretch\": [\n        \"VB\"\n    ], \n    \"Thurmond\": [\n        \"NNP\"\n    ], \n    \"Count-Duke\": [\n        \"NNP\"\n    ], \n    \"Ormoc\": [\n        \"NNP\"\n    ], \n    \"Normally\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Svevo\": [\n        \"NNP\"\n    ], \n    \"divorced\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"divorcee\": [\n        \"NN\"\n    ], \n    \"Steele\": [\n        \"NNP\"\n    ], \n    \"honeymooners\": [\n        \"NNS\"\n    ], \n    \"cuddly\": [\n        \"JJ\"\n    ], \n    \"divorces\": [\n        \"NNS\"\n    ], \n    \"era\": [\n        \"NN\"\n    ], \n    \"containment\": [\n        \"NN\"\n    ], \n    \"elbow\": [\n        \"NN\"\n    ], \n    \"Steels\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"maget\": [\n        \"NN\"\n    ], \n    \"Abe\": [\n        \"NNP\"\n    ], \n    \"quivering\": [\n        \"VBG\"\n    ], \n    \"relativistic\": [\n        \"JJ\"\n    ], \n    \"DiLorenzo\": [\n        \"NNP\"\n    ], \n    \"Abt\": [\n        \"NNP\"\n    ], \n    \"Abu\": [\n        \"NNP\"\n    ], \n    \"Schenley\": [\n        \"NNP\"\n    ], \n    \"RTC-owned\": [\n        \"JJ\"\n    ], \n    \"totaled\": [\n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Caniglia\": [\n        \"NNP\"\n    ], \n    \"impassive\": [\n        \"JJ\"\n    ], \n    \"confidential\": [\n        \"JJ\"\n    ], \n    \"Seafirst\": [\n        \"NNP\"\n    ], \n    \"rationed\": [\n        \"VBN\"\n    ], \n    \"nuts\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"photoelectrons\": [\n        \"NNS\"\n    ], \n    \"corporation-socialist\": [\n        \"JJ\"\n    ], \n    \"Lelogeais\": [\n        \"NNP\"\n    ], \n    \"LATEST\": [\n        \"JJS\"\n    ], \n    \"chines\": [\n        \"NNS\"\n    ], \n    \"Griggs\": [\n        \"NNP\"\n    ], \n    \"Invoking\": [\n        \"VBG\"\n    ], \n    \"Duluth\": [\n        \"NNP\"\n    ], \n    \"misleads\": [\n        \"VBZ\"\n    ], \n    \"Huard\": [\n        \"NNP\"\n    ], \n    \"Farrell\": [\n        \"NNP\"\n    ], \n    \"Anglo-Dutch\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"purging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pre-1986\": [\n        \"JJ\"\n    ], \n    \"CALL\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"NNP\", \n        \"NN|JJ\"\n    ], \n    \"Mandom\": [\n        \"NNP\"\n    ], \n    \"well-born\": [\n        \"JJ\"\n    ], \n    \"crystallographic\": [\n        \"JJ\"\n    ], \n    \"Colucci\": [\n        \"NNP\"\n    ], \n    \"greasies\": [\n        \"NNS\"\n    ], \n    \"Brasiliaaircraft\": [\n        \"NNP\"\n    ], \n    \"Guest\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gumption\": [\n        \"NN\"\n    ], \n    \"slimmed\": [\n        \"VBN\"\n    ], \n    \"undetected\": [\n        \"JJ\"\n    ], \n    \"ancients\": [\n        \"NNS\"\n    ], \n    \"slimmer\": [\n        \"JJR\", \n        \"RB\"\n    ], \n    \"coiling\": [\n        \"VBG\"\n    ], \n    \"counter-drill\": [\n        \"VB\"\n    ], \n    \"understates\": [\n        \"VBZ\"\n    ], \n    \"pension-plan\": [\n        \"NN\"\n    ], \n    \"defrauded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"production\": [\n        \"NN\"\n    ], \n    \"understated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"single-A-1-plus\": [\n        \"NNP\"\n    ], \n    \"fumigants\": [\n        \"NNS\"\n    ], \n    \"Cherwell\": [\n        \"NNP\"\n    ], \n    \"typescript\": [\n        \"NN\"\n    ], \n    \"Ditto\": [\n        \"NN\"\n    ], \n    \"underperform\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"Oman\": [\n        \"NNP\"\n    ], \n    \"Keepers\": [\n        \"NNS\"\n    ], \n    \"Motion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Omar\": [\n        \"NNP\"\n    ], \n    \"Arraignment\": [\n        \"NN\"\n    ], \n    \"Hamburger\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"sizenine\": [\n        \"JJ\"\n    ], \n    \"Cross-Purposes\": [\n        \"NNPS\"\n    ], \n    \"Reno-Lake\": [\n        \"NNP|NP\"\n    ], \n    \"principals\": [\n        \"NNS\"\n    ], \n    \"Schoenberg\": [\n        \"NNP\"\n    ], \n    \"reasonably\": [\n        \"RB\"\n    ], \n    \"routines\": [\n        \"NNS\"\n    ], \n    \"reasonable\": [\n        \"JJ\"\n    ], \n    \"Broadcasters\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"varmint\": [\n        \"NN\"\n    ], \n    \"Volatile\": [\n        \"JJ\"\n    ], \n    \"feeds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Turin-based\": [\n        \"JJ\"\n    ], \n    \"volcanos\": [\n        \"NNS\"\n    ], \n    \"unfocused\": [\n        \"JJ\"\n    ], \n    \"dumping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"emeralds\": [\n        \"NNS\"\n    ], \n    \"apotheosis\": [\n        \"NN\"\n    ], \n    \"clay-mining\": [\n        \"NN\"\n    ], \n    \"Type\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Brunswig\": [\n        \"NNP\"\n    ], \n    \"chauvinistic\": [\n        \"JJ\"\n    ], \n    \"Aubrey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gumucio\": [\n        \"NNP\"\n    ], \n    \"trainers\": [\n        \"NNS\"\n    ], \n    \"ruggedly\": [\n        \"RB\"\n    ], \n    \"out-of-sight\": [\n        \"JJ\"\n    ], \n    \"drawn-out\": [\n        \"JJ\"\n    ], \n    \"self-important\": [\n        \"JJ\"\n    ], \n    \"disputed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"barrier\": [\n        \"NN\"\n    ], \n    \"bellhops\": [\n        \"NNS\"\n    ], \n    \"Ubberroth\": [\n        \"NNP\"\n    ], \n    \"certifies\": [\n        \"VBZ\"\n    ], \n    \"death-sentence\": [\n        \"NN\"\n    ], \n    \"funn-eeee\": [\n        \"JJ\"\n    ], \n    \"disputes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"fastening\": [\n        \"NN\"\n    ], \n    \"enlightened\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"lollipop\": [\n        \"NN\"\n    ], \n    \"certified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"scabs\": [\n        \"NNS\"\n    ], \n    \"chortled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"baseman\": [\n        \"NN\"\n    ], \n    \"Ugh\": [\n        \"UH\"\n    ], \n    \"Parade\": [\n        \"NNP\"\n    ], \n    \"maniac\": [\n        \"NN\"\n    ], \n    \"shortner\": [\n        \"NN\"\n    ], \n    \"practitioner\": [\n        \"NN\"\n    ], \n    \"One-third\": [\n        \"NN\"\n    ], \n    \"AFFLUENT\": [\n        \"JJ\"\n    ], \n    \"flawless\": [\n        \"JJ\"\n    ], \n    \"sprig\": [\n        \"NN\"\n    ], \n    \"Pernod\": [\n        \"NN\"\n    ], \n    \"chortles\": [\n        \"VBZ\"\n    ], \n    \"manias\": [\n        \"NNS\"\n    ], \n    \"blackout\": [\n        \"NN\"\n    ], \n    \"generalizations\": [\n        \"NNS\"\n    ], \n    \"clouding\": [\n        \"NN\"\n    ], \n    \"JERSEY\": [\n        \"NNP\"\n    ], \n    \"Amendments\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Tracey\": [\n        \"NNP\"\n    ], \n    \"re-enact\": [\n        \"VB\"\n    ], \n    \"railroads\": [\n        \"NNS\"\n    ], \n    \"hamstring\": [\n        \"VB\"\n    ], \n    \"another\": [\n        \"DT\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Manfred\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Vulturidae\": [\n        \"NNS\"\n    ], \n    \"Flavel\": [\n        \"NNP\"\n    ], \n    \"Azoff\": [\n        \"NNP\"\n    ], \n    \"alcoves\": [\n        \"NNS\"\n    ], \n    \"illustrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"reconfirming\": [\n        \"VBG\"\n    ], \n    \"public-sector\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tossers\": [\n        \"NNS\"\n    ], \n    \"U-turn\": [\n        \"NN\"\n    ], \n    \"takeovers\": [\n        \"NNS\"\n    ], \n    \"more-than-ordinary\": [\n        \"JJ\"\n    ], \n    \"sweat-saturated\": [\n        \"JJ\"\n    ], \n    \"Sangamon\": [\n        \"NNP\"\n    ], \n    \"mail-sorting\": [\n        \"VBG\"\n    ], \n    \"dogs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"incitements\": [\n        \"NNS\"\n    ], \n    \"Pike\": [\n        \"NNP\"\n    ], \n    \"Rushdie\": [\n        \"NNP\"\n    ], \n    \"Rare\": [\n        \"JJ\"\n    ], \n    \"over-large\": [\n        \"JJ\"\n    ], \n    \"offhand\": [\n        \"JJ\"\n    ], \n    \"Spaarbank\": [\n        \"NNP\"\n    ], \n    \"Andersson\": [\n        \"NNP\"\n    ], \n    \"enmeshed\": [\n        \"VBN\"\n    ], \n    \"cereal\": [\n        \"NN\"\n    ], \n    \"anti-missile\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"guild\": [\n        \"NN\"\n    ], \n    \"guile\": [\n        \"NN\"\n    ], \n    \"luxuriosly-upholstered\": [\n        \"JJ\"\n    ], \n    \"volume-decliner\": [\n        \"JJ\"\n    ], \n    \"meteorology\": [\n        \"NN\"\n    ], \n    \"step-father\": [\n        \"NN\"\n    ], \n    \"Relation\": [\n        \"NN\"\n    ], \n    \"Lewtas\": [\n        \"NNP\"\n    ], \n    \"Spontex\": [\n        \"NNP\"\n    ], \n    \"Hazzard\": [\n        \"NNP\"\n    ], \n    \"lanzador\": [\n        \"FW\"\n    ], \n    \"microfossils\": [\n        \"NNS\"\n    ], \n    \"AIDS-treatment\": [\n        \"NN\"\n    ], \n    \"Hiltunen\": [\n        \"NNP\"\n    ], \n    \"resettable\": [\n        \"JJ\"\n    ], \n    \"well-meaning\": [\n        \"JJ\"\n    ], \n    \"Lendrum\": [\n        \"NNP\"\n    ], \n    \"Zamislov\": [\n        \"NNP\"\n    ], \n    \"respecting\": [\n        \"VBG\"\n    ], \n    \"Venable\": [\n        \"NNP\"\n    ], \n    \"Lincoln\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"i-th\": [\n        \"NN\"\n    ], \n    \"Talbott\": [\n        \"NNP\"\n    ], \n    \"sportsmen\": [\n        \"NNS\"\n    ], \n    \"Kinnear\": [\n        \"NNP\"\n    ], \n    \"admittances\": [\n        \"NNS\"\n    ], \n    \"refreshingly\": [\n        \"RB\"\n    ], \n    \"impelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"DeKalb\": [\n        \"NNP\"\n    ], \n    \"contents\": [\n        \"NNS\"\n    ], \n    \"Q.\": [\n        \"NNP\"\n    ], \n    \"Pravda\": [\n        \"NNP\"\n    ], \n    \"semi-conductors\": [\n        \"NNS\"\n    ], \n    \"field-based\": [\n        \"JJ\"\n    ], \n    \"convenient\": [\n        \"JJ\"\n    ], \n    \"stillness\": [\n        \"NN\"\n    ], \n    \"Confiscated\": [\n        \"VBN|JJ\"\n    ], \n    \"subjects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"quadric\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"thundering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"pilgrimage\": [\n        \"NN\"\n    ], \n    \"Phase-3\": [\n        \"NN\"\n    ], \n    \"Phase-2\": [\n        \"NN\"\n    ], \n    \"Emyanitoff\": [\n        \"NNP\"\n    ], \n    \"AMBASSADOR\": [\n        \"NN\"\n    ], \n    \"Flamingo\": [\n        \"NNP\"\n    ], \n    \"Splits\": [\n        \"NNS\"\n    ], \n    \"Button\": [\n        \"NNP\"\n    ], \n    \"Resolving\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"troughs\": [\n        \"NNS\"\n    ], \n    \"Machine-vision\": [\n        \"JJ\"\n    ], \n    \"weak...\": [\n        \":\"\n    ], \n    \"ramblings\": [\n        \"NNS\"\n    ], \n    \"immediacy\": [\n        \"NN\"\n    ], \n    \"Yutaka\": [\n        \"NNP\"\n    ], \n    \"return-on-savings\": [\n        \"JJ\"\n    ], \n    \"Atchinson\": [\n        \"NNP\"\n    ], \n    \"blood-pressure\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nostrils\": [\n        \"NNS\"\n    ], \n    \"witnessed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Shanties\": [\n        \"NNPS\"\n    ], \n    \"enshrined\": [\n        \"VBN\"\n    ], \n    \"QB\": [\n        \"NNP\"\n    ], \n    \"QE\": [\n        \"NNP\"\n    ], \n    \"repudiation\": [\n        \"NN\"\n    ], \n    \"reserve\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fultz\": [\n        \"NNP\"\n    ], \n    \"yachters\": [\n        \"NNS\"\n    ], \n    \"Atala\": [\n        \"NNP\"\n    ], \n    \"ESOP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Refinements\": [\n        \"NNS\"\n    ], \n    \"foamed-core\": [\n        \"JJ\"\n    ], \n    \"bellow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"value-oriented\": [\n        \"JJ\"\n    ], \n    \"Yocum\": [\n        \"NNP\"\n    ], \n    \"witnesses\": [\n        \"NNS\"\n    ], \n    \"Mapco\": [\n        \"NNP\"\n    ], \n    \"Moselle\": [\n        \"NNP\"\n    ], \n    \"Photography\": [\n        \"NNP\"\n    ], \n    \"mid-flight\": [\n        \"RB\"\n    ], \n    \"fuel-guzzling\": [\n        \"JJ\"\n    ], \n    \"Krueger\": [\n        \"NNP\"\n    ], \n    \"completes\": [\n        \"VBZ\"\n    ], \n    \"industriously\": [\n        \"RB\"\n    ], \n    \"cashews\": [\n        \"NNS\"\n    ], \n    \"facaded\": [\n        \"VBN\"\n    ], \n    \"show-biz\": [\n        \"NN\"\n    ], \n    \"Haitian\": [\n        \"JJ\"\n    ], \n    \"tracers\": [\n        \"NNS\"\n    ], \n    \"Sass\": [\n        \"NNP\"\n    ], \n    \"tin-roofed\": [\n        \"JJ\"\n    ], \n    \"machos\": [\n        \"NNS\"\n    ], \n    \"fluid-filled\": [\n        \"JJ\"\n    ], \n    \"haunted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"roundabout\": [\n        \"JJ\"\n    ], \n    \"Curie-Weiss\": [\n        \"NNP\"\n    ], \n    \"rolled-up\": [\n        \"JJ\"\n    ], \n    \"conventioneers\": [\n        \"NNS\"\n    ], \n    \"runs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"domesticity\": [\n        \"NN\"\n    ], \n    \"runt\": [\n        \"NN\"\n    ], \n    \"Donoghue\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"SMALL-COMPANY\": [\n        \"JJ\"\n    ], \n    \"Pearce\": [\n        \"NNP\"\n    ], \n    \"gears\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rung\": [\n        \"VBN\", \n        \"NN\"\n    ], \n    \"Psychical\": [\n        \"JJ\"\n    ], \n    \"insurgents\": [\n        \"NNS\"\n    ], \n    \"freshwater\": [\n        \"JJR\"\n    ], \n    \"Loeser\": [\n        \"NNP\"\n    ], \n    \"Clifford\": [\n        \"NNP\"\n    ], \n    \"smoldered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"AEP\": [\n        \"NNP\"\n    ], \n    \"AES\": [\n        \"NNP\"\n    ], \n    \"Jackson\": [\n        \"NNP\"\n    ], \n    \"Caracas\": [\n        \"NNP\"\n    ], \n    \"AEW\": [\n        \"NNP\"\n    ], \n    \"shoe-horn\": [\n        \"VB\"\n    ], \n    \"Shinton\": [\n        \"NNP\"\n    ], \n    \"AEC\": [\n        \"NNP\"\n    ], \n    \"Bleier\": [\n        \"NNP\"\n    ], \n    \"bullhorns\": [\n        \"NNS\"\n    ], \n    \"AEG\": [\n        \"NNP\"\n    ], \n    \"horrendous\": [\n        \"JJ\"\n    ], \n    \"Judeo-Christian\": [\n        \"JJ\"\n    ], \n    \"Meyohas\": [\n        \"NNP\"\n    ], \n    \"pastel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"draws\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"smoggy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pasted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Horror\": [\n        \"NNP\"\n    ], \n    \"Fifteenth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Workmen\": [\n        \"NNS\"\n    ], \n    \"cooperation\": [\n        \"NN\"\n    ], \n    \"drawn\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"drawl\": [\n        \"NN\"\n    ], \n    \"encounters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Micha\": [\n        \"NNP\"\n    ], \n    \"pastes\": [\n        \"NNS\"\n    ], \n    \"Domingo\": [\n        \"NNP\"\n    ], \n    \"handful\": [\n        \"NN\"\n    ], \n    \"A310-300s\": [\n        \"NNP\"\n    ], \n    \"Hudnut\": [\n        \"NNP\"\n    ], \n    \"rush-hour\": [\n        \"JJ\"\n    ], \n    \"succumbs\": [\n        \"VBZ\"\n    ], \n    \"non-skid\": [\n        \"JJ\"\n    ], \n    \"Koeppel\": [\n        \"NNP\"\n    ], \n    \"Self-Government\": [\n        \"NNP\"\n    ], \n    \"Perish\": [\n        \"VB\"\n    ], \n    \"essentially\": [\n        \"RB\"\n    ], \n    \"psychologists\": [\n        \"NNS\"\n    ], \n    \"han\": [\n        \"NN\"\n    ], \n    \"colorlessness\": [\n        \"NN\"\n    ], \n    \"excrement\": [\n        \"NN\"\n    ], \n    \"Bring\": [\n        \"VB\"\n    ], \n    \"Mich.\": [\n        \"NNP\"\n    ], \n    \"Gtech\": [\n        \"NNP\"\n    ], \n    \"Dawn\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Brink\": [\n        \"NNP\"\n    ], \n    \"Telemann\": [\n        \"NNP\"\n    ], \n    \"uniformity\": [\n        \"NN\"\n    ], \n    \"tone\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"SkyWest\": [\n        \"NNP\"\n    ], \n    \"Conservationists\": [\n        \"NNS\"\n    ], \n    \"had\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Molokai\": [\n        \"NNP\"\n    ], \n    \"engulfs\": [\n        \"VBZ\"\n    ], \n    \"Furhmann\": [\n        \"NNP\"\n    ], \n    \"anticipatory\": [\n        \"JJ\"\n    ], \n    \"tons\": [\n        \"NNS\"\n    ], \n    \"infirm\": [\n        \"JJ\"\n    ], \n    \"tony\": [\n        \"JJ\"\n    ], \n    \"guzzlers\": [\n        \"NNS\"\n    ], \n    \"newsmaker\": [\n        \"NN\"\n    ], \n    \"companionway\": [\n        \"NN\"\n    ], \n    \"gratitude\": [\n        \"NN\"\n    ], \n    \"backwardness\": [\n        \"NN\"\n    ], \n    \"Taccetta\": [\n        \"NNP\"\n    ], \n    \"Tchalo\": [\n        \"FW\"\n    ], \n    \"Connecticut\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hungarians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Barge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mamaroneck\": [\n        \"NNP\"\n    ], \n    \"hospitalization\": [\n        \"NN\"\n    ], \n    \"plebeian\": [\n        \"JJ\"\n    ], \n    \"excite\": [\n        \"VB\"\n    ], \n    \"Elections\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"madhouse\": [\n        \"NN\"\n    ], \n    \"psychically\": [\n        \"RB\"\n    ], \n    \"idolatry\": [\n        \"NN\"\n    ], \n    \"novitiates\": [\n        \"NNS\"\n    ], \n    \"Horstman\": [\n        \"NNP\"\n    ], \n    \"reciprocal\": [\n        \"JJ\"\n    ], \n    \"Canada-Newfoundland\": [\n        \"NNP\"\n    ], \n    \"warbler\": [\n        \"NN\"\n    ], \n    \"rattlers\": [\n        \"NNS\"\n    ], \n    \"thrash\": [\n        \"VB\"\n    ], \n    \"ultracentrifuge\": [\n        \"NN\"\n    ], \n    \"endpoints\": [\n        \"NNS\"\n    ], \n    \"Lamberjack\": [\n        \"NNP\"\n    ], \n    \"Massey\": [\n        \"NNP\"\n    ], \n    \"Marenzio\": [\n        \"NNP\"\n    ], \n    \"beetles\": [\n        \"NNS\"\n    ], \n    \"Amfac\": [\n        \"NNP\"\n    ], \n    \"marksmanship\": [\n        \"NN\"\n    ], \n    \"unblinkingly\": [\n        \"RB\"\n    ], \n    \"CVN\": [\n        \"NNP\"\n    ], \n    \"dizzy\": [\n        \"JJ\"\n    ], \n    \"teutonic\": [\n        \"JJ\"\n    ], \n    \"spectrometric\": [\n        \"JJ\"\n    ], \n    \"CVB\": [\n        \"NNP\"\n    ], \n    \"chip-design\": [\n        \"JJ\"\n    ], \n    \"municipal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bilious\": [\n        \"JJ\"\n    ], \n    \"pesticide-free\": [\n        \"JJ\"\n    ], \n    \"Santas\": [\n        \"NNPS\"\n    ], \n    \"Ill.\": [\n        \"NNP\"\n    ], \n    \"addressees\": [\n        \"NNS\"\n    ], \n    \"Smug\": [\n        \"JJ\"\n    ], \n    \"wider-body\": [\n        \"JJR\"\n    ], \n    \"disciplining\": [\n        \"VBG\"\n    ], \n    \"Classroom\": [\n        \"NNP\"\n    ], \n    \"fuss\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lyndhurst\": [\n        \"NNP\"\n    ], \n    \"unready\": [\n        \"JJ\"\n    ], \n    \"Denver-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"TND.B\": [\n        \"NNP\"\n    ], \n    \"fuse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Bloeser\": [\n        \"NNP\"\n    ], \n    \"rasping\": [\n        \"JJ\"\n    ], \n    \"venturing\": [\n        \"VBG\"\n    ], \n    \"Takashimaya\": [\n        \"NNP\"\n    ], \n    \"Flippo\": [\n        \"NNP\"\n    ], \n    \"humble\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Gresham\": [\n        \"NNP\"\n    ], \n    \"Alamito\": [\n        \"NNP\"\n    ], \n    \"neo-stagnationist\": [\n        \"JJ\"\n    ], \n    \"client\": [\n        \"NN\"\n    ], \n    \"casbah\": [\n        \"NN\"\n    ], \n    \"R.W.\": [\n        \"NNP\"\n    ], \n    \"sullenly\": [\n        \"RB\"\n    ], \n    \"Ille\": [\n        \"NNP\"\n    ], \n    \"tax-department\": [\n        \"JJ\"\n    ], \n    \"wops\": [\n        \"VBZ\"\n    ], \n    \"Doubtless\": [\n        \"RB\"\n    ], \n    \"daguerreotypes\": [\n        \"NNS\"\n    ], \n    \"super-Herculean\": [\n        \"JJ\"\n    ], \n    \"Duff\": [\n        \"NNP\"\n    ], \n    \"Lorenzo\": [\n        \"NNP\"\n    ], \n    \"thanks\": [\n        \"NNS\", \n        \"VBZ\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"sabbatical\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"beautifying\": [\n        \"VBG\"\n    ], \n    \"Taft-Hartley\": [\n        \"NNP\"\n    ], \n    \"Suitable\": [\n        \"JJ\"\n    ], \n    \"nilpotent\": [\n        \"JJ\"\n    ], \n    \"similarities\": [\n        \"NNS\"\n    ], \n    \"High-Yield\": [\n        \"NNP\"\n    ], \n    \"Baeyens\": [\n        \"NNP\"\n    ], \n    \"cowhand\": [\n        \"NN\"\n    ], \n    \"Nader\": [\n        \"NNP\"\n    ], \n    \"openings\": [\n        \"NNS\"\n    ], \n    \"Eighth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Democratic-endorsed\": [\n        \"JJ\"\n    ], \n    \"Hubble\": [\n        \"NNP\"\n    ], \n    \"Tabellen\": [\n        \"FW\"\n    ], \n    \"six-footer\": [\n        \"NN\"\n    ], \n    \"Wink\": [\n        \"NNP\"\n    ], \n    \"Winn\": [\n        \"NNP\"\n    ], \n    \"sweet-clover\": [\n        \"NN\"\n    ], \n    \"mail-order\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jansen\": [\n        \"NNP\"\n    ], \n    \"InCide\": [\n        \"NNP\"\n    ], \n    \"designers\": [\n        \"NNS\"\n    ], \n    \"Lancet\": [\n        \"NNP\"\n    ], \n    \"Agouron\": [\n        \"NNP\"\n    ], \n    \"Wine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"eroded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rustle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Hochman\": [\n        \"NNP\"\n    ], \n    \"cool\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"temporally\": [\n        \"RB\"\n    ], \n    \"slavish\": [\n        \"JJ\"\n    ], \n    \"sawmill\": [\n        \"NN\"\n    ], \n    \"mail-fraud\": [\n        \"NN\"\n    ], \n    \"night\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"long-endurance\": [\n        \"JJ\"\n    ], \n    \"fluoride\": [\n        \"NN\"\n    ], \n    \"mazes\": [\n        \"NNS\"\n    ], \n    \"Arrack\": [\n        \"NN\"\n    ], \n    \"dualities\": [\n        \"NNS\"\n    ], \n    \"Supplies\": [\n        \"NNS\"\n    ], \n    \"Steamboat\": [\n        \"NNP\"\n    ], \n    \"OFFENSIVE\": [\n        \"JJ\"\n    ], \n    \"caliper\": [\n        \"NN\"\n    ], \n    \"fine-arts\": [\n        \"NNS\"\n    ], \n    \"Papanicolaou\": [\n        \"NN\"\n    ], \n    \"Commission\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"Rewarding\": [\n        \"NN\"\n    ], \n    \"Grapefruit\": [\n        \"NNP\"\n    ], \n    \"Italia\": [\n        \"NNP\"\n    ], \n    \"Glantz\": [\n        \"NNP\"\n    ], \n    \"bemused\": [\n        \"JJ\"\n    ], \n    \"contaminating\": [\n        \"VBG\"\n    ], \n    \"glamorize\": [\n        \"VB\"\n    ], \n    \"ungracious\": [\n        \"JJ\"\n    ], \n    \"Malibu\": [\n        \"NNP\"\n    ], \n    \"signifying\": [\n        \"VBG\"\n    ], \n    \"Bieber\": [\n        \"NNP\"\n    ], \n    \"post-conviction\": [\n        \"JJ\"\n    ], \n    \"cortical\": [\n        \"JJ\"\n    ], \n    \"dolce\": [\n        \"FW\"\n    ], \n    \"near-Balkanization\": [\n        \"NN\"\n    ], \n    \"Proceedings\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"architectural\": [\n        \"JJ\"\n    ], \n    \"Mailing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"president-U.S.\": [\n        \"NN\"\n    ], \n    \"non-contributory\": [\n        \"JJ\"\n    ], \n    \"Vajna\": [\n        \"NNP\"\n    ], \n    \"gentler\": [\n        \"JJR\"\n    ], \n    \"docutainment\": [\n        \"NN\"\n    ], \n    \"Briarcliff\": [\n        \"NNP\"\n    ], \n    \"passenger-kilometers\": [\n        \"NNS\"\n    ], \n    \"Dragging\": [\n        \"VBG\"\n    ], \n    \"DEPOSIT\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Arata\": [\n        \"NNP\"\n    ], \n    \"Priory\": [\n        \"NNP\"\n    ], \n    \"Horizon\": [\n        \"NNP\"\n    ], \n    \"synagogues\": [\n        \"NNS\"\n    ], \n    \"Puglisi\": [\n        \"NNP\"\n    ], \n    \"attorney\": [\n        \"NN\"\n    ], \n    \"catchall\": [\n        \"NN\"\n    ], \n    \"rendering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Schnabel\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Richfield\": [\n        \"NNP\"\n    ], \n    \"vipers\": [\n        \"NNS\"\n    ], \n    \"Blasi\": [\n        \"NNP\"\n    ], \n    \"Garcias\": [\n        \"NNPS\"\n    ], \n    \"Tatanga\": [\n        \"NNP\"\n    ], \n    \"frill\": [\n        \"NN\"\n    ], \n    \"overblown\": [\n        \"JJ\"\n    ], \n    \"sternal\": [\n        \"JJ\"\n    ], \n    \"Cherkasov\": [\n        \"NNP\"\n    ], \n    \"Regency\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Presley\": [\n        \"NNP\"\n    ], \n    \"emission-control\": [\n        \"JJ\"\n    ], \n    \"Blast\": [\n        \"NNP\"\n    ], \n    \"Blass\": [\n        \"NNP\"\n    ], \n    \"gaseous\": [\n        \"JJ\"\n    ], \n    \"garaged\": [\n        \"VBN\"\n    ], \n    \"firelight\": [\n        \"NN\"\n    ], \n    \"McChesney\": [\n        \"NNP\"\n    ], \n    \"Bhagat\": [\n        \"NNP\"\n    ], \n    \"U.N.F.P\": [\n        \"NNP\"\n    ], \n    \"garages\": [\n        \"NNS\"\n    ], \n    \"Liipfert\": [\n        \"NNP\"\n    ], \n    \"catalyst\": [\n        \"NN\"\n    ], \n    \"Fanshawe\": [\n        \"NNP\"\n    ], \n    \"sailboats\": [\n        \"NNS\"\n    ], \n    \"human-generated\": [\n        \"JJ\"\n    ], \n    \"reproductive\": [\n        \"JJ\"\n    ], \n    \"crows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"not-knowing\": [\n        \"RB|VBG\"\n    ], \n    \"McGraw-Hill\": [\n        \"NNP\"\n    ], \n    \"Reducing\": [\n        \"VBG\"\n    ], \n    \"Crean\": [\n        \"NNP\"\n    ], \n    \"Cream\": [\n        \"NNP\"\n    ], \n    \"Jessie\": [\n        \"NNP\"\n    ], \n    \"Joint-venture\": [\n        \"JJ\"\n    ], \n    \"aorta\": [\n        \"NN\"\n    ], \n    \"Some\": [\n        \"DT\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"Quill\\\\/William\": [\n        \"NNP\"\n    ], \n    \"potholes\": [\n        \"NNS\"\n    ], \n    \"direct-marketed\": [\n        \"JJ\"\n    ], \n    \"Repsol\": [\n        \"NNP\"\n    ], \n    \"constriction\": [\n        \"NN\"\n    ], \n    \"valuing\": [\n        \"VBG\"\n    ], \n    \"chantier\": [\n        \"FW\"\n    ], \n    \"denouncing\": [\n        \"VBG\"\n    ], \n    \"Isikoff\": [\n        \"NNP\"\n    ], \n    \"evasive\": [\n        \"JJ\"\n    ], \n    \"test\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Largely\": [\n        \"RB\"\n    ], \n    \"Kaza\": [\n        \"NNP\"\n    ], \n    \"Maxicare\": [\n        \"NNP\"\n    ], \n    \"Behan\": [\n        \"NNP\"\n    ], \n    \"authoritarianism\": [\n        \"NN\"\n    ], \n    \"school-sponsored\": [\n        \"JJ\"\n    ], \n    \"Ouse\": [\n        \"NNP\"\n    ], \n    \"faze\": [\n        \"VB\"\n    ], \n    \"}\": [\n        \")\"\n    ], \n    \"Escobar\": [\n        \"NNP\"\n    ], \n    \"fourth-ranking\": [\n        \"JJ\"\n    ], \n    \"Hallman\": [\n        \"NNP\"\n    ], \n    \"bestioles\": [\n        \"NNS\"\n    ], \n    \"banquets\": [\n        \"NNS\"\n    ], \n    \"Keller\": [\n        \"NNP\"\n    ], \n    \"Chicken\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kelley\": [\n        \"NNP\"\n    ], \n    \"Japanese-language\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"songs\": [\n        \"NNS\"\n    ], \n    \"Draw-file\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"concept\": [\n        \"NN\"\n    ], \n    \"Mathias\": [\n        \"NNP\"\n    ], \n    \"redeployment\": [\n        \"NN\"\n    ], \n    \"Containment\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"silverware\": [\n        \"NN\"\n    ], \n    \"horseback\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"underwriter\": [\n        \"NN\"\n    ], \n    \"Republic\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"roundtable\": [\n        \"JJ\"\n    ], \n    \"battle\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Memoir\": [\n        \"NN\"\n    ], \n    \"tenable\": [\n        \"JJ\"\n    ], \n    \"soothed\": [\n        \"VBD\"\n    ], \n    \"varnish\": [\n        \"NN\"\n    ], \n    \"zeroing\": [\n        \"VBG\"\n    ], \n    \"aristocratic\": [\n        \"JJ\"\n    ], \n    \"Delphine\": [\n        \"NNP\"\n    ], \n    \"Intent\": [\n        \"NN\"\n    ], \n    \"island-fantasy\": [\n        \"JJ\"\n    ], \n    \"headstrong\": [\n        \"JJ\"\n    ], \n    \"extols\": [\n        \"VBZ\"\n    ], \n    \"puppyish\": [\n        \"JJ\"\n    ], \n    \"Prego\": [\n        \"NNP\"\n    ], \n    \"Roles\": [\n        \"NNS\"\n    ], \n    \"graphite-plastic\": [\n        \"JJ\"\n    ], \n    \"treadmill\": [\n        \"NN\"\n    ], \n    \"Rolex\": [\n        \"NNP\"\n    ], \n    \"dark-haired\": [\n        \"JJ\"\n    ], \n    \"Mineralogy\": [\n        \"NNP\"\n    ], \n    \"turns\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"gun\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"gum\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Butterfield\": [\n        \"NNP\"\n    ], \n    \"car-sales\": [\n        \"NNS\"\n    ], \n    \"guy\": [\n        \"NN\"\n    ], \n    \"Reaganite\": [\n        \"JJ\"\n    ], \n    \"jurisdictional\": [\n        \"JJ\"\n    ], \n    \"Leningrad-Kirov\": [\n        \"NNP\"\n    ], \n    \"Sander\": [\n        \"NNP\"\n    ], \n    \"CML\": [\n        \"NNP\"\n    ], \n    \"CMK\": [\n        \"NNP\"\n    ], \n    \"detonated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"CMI\": [\n        \"NNP\"\n    ], \n    \"CME\": [\n        \"NNP\"\n    ], \n    \"Watts\": [\n        \"NNP\"\n    ], \n    \"CMA\": [\n        \"NNP\"\n    ], \n    \"hand-woven\": [\n        \"VBN\", \n        \"NN\"\n    ], \n    \"Galoob\": [\n        \"NNP\"\n    ], \n    \"wattles\": [\n        \"NNS\"\n    ], \n    \"Aluminum-Bat\": [\n        \"NN\"\n    ], \n    \"CMZ\": [\n        \"NNP\"\n    ], \n    \"forging\": [\n        \"VBG\"\n    ], \n    \"Ziff\": [\n        \"NNP\"\n    ], \n    \"CMS\": [\n        \"NNP\"\n    ], \n    \"Fork\": [\n        \"NNP\"\n    ], \n    \"Corp.-compatible\": [\n        \"JJ\"\n    ], \n    \"Form\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"heaviness\": [\n        \"NN\"\n    ], \n    \"foregoing\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"shares\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"Ford\": [\n        \"NNP\"\n    ], \n    \"peels\": [\n        \"VBZ\"\n    ], \n    \"Yoshida\": [\n        \"NNP\"\n    ], \n    \"alertness\": [\n        \"NN\"\n    ], \n    \"Fort\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"khaneh\": [\n        \"FW\"\n    ], \n    \"Darin\": [\n        \"NNP\"\n    ], \n    \"handyman\": [\n        \"NN\"\n    ], \n    \"research-and-production\": [\n        \"JJ\"\n    ], \n    \"wonduh\": [\n        \"VB\"\n    ], \n    \"sleepwalkers\": [\n        \"NNS\"\n    ], \n    \"English\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"combatant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lorin\": [\n        \"NNP\"\n    ], \n    \"Bunks\": [\n        \"NNS\"\n    ], \n    \"teacher\": [\n        \"NN\"\n    ], \n    \"sociable\": [\n        \"JJ\"\n    ], \n    \"Perch\": [\n        \"NNP\"\n    ], \n    \"Juvenile\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Portugal\": [\n        \"NNP\"\n    ], \n    \"oilfield\": [\n        \"NN\"\n    ], \n    \"lithotripter\": [\n        \"NN\"\n    ], \n    \"Fueling\": [\n        \"VBG\"\n    ], \n    \"Sanlandro\": [\n        \"NNP\"\n    ], \n    \"Percy\": [\n        \"NNP\"\n    ], \n    \"burdensome\": [\n        \"JJ\"\n    ], \n    \"reagents\": [\n        \"NNS\"\n    ], \n    \"Lizzy\": [\n        \"NNP\"\n    ], \n    \"plotted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lighthouses\": [\n        \"NNS\"\n    ], \n    \"Guarascio\": [\n        \"NNP\"\n    ], \n    \"H.A.\": [\n        \"NNP\"\n    ], \n    \"regardless\": [\n        \"RB\"\n    ], \n    \"extra\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"unappeasably\": [\n        \"RB\"\n    ], \n    \"uphill\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"filaments\": [\n        \"NNS\"\n    ], \n    \"puffed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Isaam\": [\n        \"NNP\"\n    ], \n    \"unappeasable\": [\n        \"JJ\"\n    ], \n    \"Isaac\": [\n        \"NNP\"\n    ], \n    \"quenching\": [\n        \"NN\"\n    ], \n    \"Complaint\": [\n        \"NN\"\n    ], \n    \"Semon\": [\n        \"NNP\"\n    ], \n    \"Lines-Trans\": [\n        \"NNP\"\n    ], \n    \"coalesce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fell\": [\n        \"NNP\", \n        \"VBD\"\n    ], \n    \"unreinforced\": [\n        \"JJ\"\n    ], \n    \"slough\": [\n        \"VB\"\n    ], \n    \"Idols\": [\n        \"NNS\"\n    ], \n    \"Feld\": [\n        \"NNP\"\n    ], \n    \"Government-owned\": [\n        \"JJ\"\n    ], \n    \"Teleflora\": [\n        \"NNP\"\n    ], \n    \"rainfall\": [\n        \"NN\"\n    ], \n    \"Anabaptist\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Require\": [\n        \"VB\"\n    ], \n    \"celebrity-oriented\": [\n        \"JJ\"\n    ], \n    \"southern-central\": [\n        \"JJ\"\n    ], \n    \"non-member\": [\n        \"NN\"\n    ], \n    \"Westbrook\": [\n        \"NNP\"\n    ], \n    \"Quotations\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"spaceships\": [\n        \"NNS\"\n    ], \n    \"prepay\": [\n        \"VB\"\n    ], \n    \"defeats\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Conn.based\": [\n        \"JJ\"\n    ], \n    \"top-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Johann\": [\n        \"NNP\"\n    ], \n    \"syntactically\": [\n        \"RB\"\n    ], \n    \"HEYNOW\": [\n        \"NNP\"\n    ], \n    \"woefully\": [\n        \"RB\"\n    ], \n    \"Homer\": [\n        \"NNP\"\n    ], \n    \"Livermore\": [\n        \"NNP\"\n    ], \n    \"Clough\": [\n        \"NNP\"\n    ], \n    \"Drivers\": [\n        \"NNS\"\n    ], \n    \"self-realized\": [\n        \"JJ\"\n    ], \n    \"chit\": [\n        \"NN\"\n    ], \n    \"Freight\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ton-per-year\": [\n        \"JJ\"\n    ], \n    \"ERG\": [\n        \"NNP\"\n    ], \n    \"chin\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Runge\": [\n        \"NNP\"\n    ], \n    \"ERC\": [\n        \"NNP\"\n    ], \n    \"chic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"determinations\": [\n        \"NNS\"\n    ], \n    \"Dubinsky\": [\n        \"NNP\"\n    ], \n    \"emerging-growth\": [\n        \"NN\"\n    ], \n    \"varnishes\": [\n        \"NNS\"\n    ], \n    \"dialysis\": [\n        \"NN\"\n    ], \n    \"discussion\": [\n        \"NN\"\n    ], \n    \"Reber\": [\n        \"NNP\"\n    ], \n    \"switchgear\": [\n        \"NN\"\n    ], \n    \"positional\": [\n        \"JJ\"\n    ], \n    \"antitrust-law\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rebel\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"wash-up\": [\n        \"JJ\"\n    ], \n    \"deteriorate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"armies\": [\n        \"NNS\"\n    ], \n    \"unenforcible\": [\n        \"JJ\"\n    ], \n    \"Biaggi\": [\n        \"NNP\"\n    ], \n    \"peerless\": [\n        \"JJ\"\n    ], \n    \"escalate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"APARTHEID\": [\n        \"NNP\"\n    ], \n    \"Elaborate\": [\n        \"JJ\"\n    ], \n    \"songbook\": [\n        \"NN\"\n    ], \n    \"push-up\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Kendrick\": [\n        \"NNP\"\n    ], \n    \"shortcovering\": [\n        \"NN\"\n    ], \n    \"drastic\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Spiller\": [\n        \"NNP\"\n    ], \n    \"Supavud\": [\n        \"NNP\"\n    ], \n    \"Shih\": [\n        \"NNP\"\n    ], \n    \"Kornbluth\": [\n        \"NNP\"\n    ], \n    \"Dieter\": [\n        \"NNP\"\n    ], \n    \"grandson\": [\n        \"NN\"\n    ], \n    \"HUDSON\": [\n        \"NNP\"\n    ], \n    \"devotees\": [\n        \"NNS\"\n    ], \n    \"beehive\": [\n        \"NN\"\n    ], \n    \"Radio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ill-founded\": [\n        \"JJ\"\n    ], \n    \"Sporkin\": [\n        \"NNP\"\n    ], \n    \"Radic\": [\n        \"NNP\"\n    ], \n    \"Grandparent\": [\n        \"NNP\"\n    ], \n    \"Ship\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"conquests\": [\n        \"NNS\"\n    ], \n    \"opts\": [\n        \"VBZ\"\n    ], \n    \"Combustion\": [\n        \"NNP\"\n    ], \n    \"Author\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"backwoods-and-sand-hill\": [\n        \"JJ\"\n    ], \n    \"Hannon\": [\n        \"NNP\"\n    ], \n    \"Jas\": [\n        \"NNP\"\n    ], \n    \"Jap\": [\n        \"NNP\"\n    ], \n    \"Jan\": [\n        \"NNP\"\n    ], \n    \"brain\": [\n        \"NN\"\n    ], \n    \"Mandell\": [\n        \"NNP\"\n    ], \n    \"Jam\": [\n        \"NNP\"\n    ], \n    \"tablets\": [\n        \"NNS\"\n    ], \n    \"obediences\": [\n        \"NNS\"\n    ], \n    \"Jai\": [\n        \"NNP\"\n    ], \n    \"still-building\": [\n        \"JJ\"\n    ], \n    \"still\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Mandela\": [\n        \"NNP\"\n    ], \n    \"Dolan\": [\n        \"NNP\"\n    ], \n    \"safe-driving\": [\n        \"JJ\"\n    ], \n    \"lyin\": [\n        \"NN\"\n    ], \n    \"big-souled\": [\n        \"JJ\"\n    ], \n    \"customer-driven\": [\n        \"JJ\"\n    ], \n    \"Arkansas-based\": [\n        \"JJ\"\n    ], \n    \"correspondence\": [\n        \"NN\"\n    ], \n    \"Modigliani\": [\n        \"NNP\"\n    ], \n    \"Genghis\": [\n        \"NNP\"\n    ], \n    \"thermometers\": [\n        \"NNS\"\n    ], \n    \"refineries\": [\n        \"NNS\"\n    ], \n    \"Ventspils\": [\n        \"NNP\"\n    ], \n    \"slacks\": [\n        \"NNS\"\n    ], \n    \"five-year-old\": [\n        \"JJ\"\n    ], \n    \"Mattison\": [\n        \"NNP\"\n    ], \n    \"galloping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Zeke\": [\n        \"NNP\"\n    ], \n    \"susceptibility\": [\n        \"NN\"\n    ], \n    \"inversion\": [\n        \"NN\"\n    ], \n    \"placate\": [\n        \"VB\"\n    ], \n    \"WestAir\": [\n        \"NNP\"\n    ], \n    \"drop\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"S.G.\": [\n        \"NNP\"\n    ], \n    \"beings\": [\n        \"NNS\"\n    ], \n    \"Glenview\": [\n        \"NNP\"\n    ], \n    \"extradite\": [\n        \"VB\"\n    ], \n    \"marshals\": [\n        \"NNS\"\n    ], \n    \"seamanship\": [\n        \"NN\"\n    ], \n    \"grouse\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"challenged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mixed-up\": [\n        \"JJ\"\n    ], \n    \"Museum\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stooping\": [\n        \"VBG\"\n    ], \n    \"free-holders\": [\n        \"NNS\"\n    ], \n    \"yeah\": [\n        \"UH\", \n        \"NN\"\n    ], \n    \"Kahwaty\": [\n        \"NNP\"\n    ], \n    \"challenges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Becalmed\": [\n        \"VBN\"\n    ], \n    \"year\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Zealand-based\": [\n        \"JJ\"\n    ], \n    \"beer-drinker\": [\n        \"NN\"\n    ], \n    \"Thru\": [\n        \"IN\"\n    ], \n    \"quasi-private\": [\n        \"JJ\"\n    ], \n    \"monitors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"crisis-response\": [\n        \"JJ\"\n    ], \n    \"Seattle-based\": [\n        \"JJ\"\n    ], \n    \"Compagnie\": [\n        \"NNP\"\n    ], \n    \"Norwegian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"structural-adjustment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wholeheartedly\": [\n        \"RB\"\n    ], \n    \"Indochinese\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"temporizing\": [\n        \"VBG\"\n    ], \n    \"Tariff\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"well-operated\": [\n        \"JJ\"\n    ], \n    \"Iijima\": [\n        \"NNP\"\n    ], \n    \"York-area\": [\n        \"JJ\"\n    ], \n    \"saxophones\": [\n        \"NNS\"\n    ], \n    \"Taiwan-born\": [\n        \"JJ\"\n    ], \n    \"scandal-stench\": [\n        \"NN\"\n    ], \n    \"Itoiz\": [\n        \"NNP\"\n    ], \n    \"advantages\": [\n        \"NNS\"\n    ], \n    \"vuhranduh\": [\n        \"NN\"\n    ], \n    \"Lincoln-Douglas\": [\n        \"NNP\"\n    ], \n    \"repayable\": [\n        \"JJ\"\n    ], \n    \"contemplation\": [\n        \"NN\"\n    ], \n    \"Travelers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"AgResource\": [\n        \"NNP\"\n    ], \n    \"transition\": [\n        \"NN\"\n    ], \n    \"Erin\": [\n        \"NNP\"\n    ], \n    \"tangled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Erik\": [\n        \"NNP\"\n    ], \n    \"Ironic\": [\n        \"JJ\"\n    ], \n    \"nonprofit\": [\n        \"JJ\"\n    ], \n    \"Padget\": [\n        \"NNP\"\n    ], \n    \"Payers\": [\n        \"NNS\"\n    ], \n    \"suffice\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"BENTSEN\": [\n        \"NNP\"\n    ], \n    \"Historian\": [\n        \"NN\"\n    ], \n    \"flipping\": [\n        \"VBG\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"TRAVELS\": [\n        \"VBZ\"\n    ], \n    \"aluminum-industry\": [\n        \"NN\"\n    ], \n    \"Vonnegut\": [\n        \"NNP\"\n    ], \n    \"Medicine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"two-and-a-half-mile\": [\n        \"JJ\"\n    ], \n    \"L.L.\": [\n        \"NNP\"\n    ], \n    \"tomorrow\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Petry\": [\n        \"NNP\"\n    ], \n    \"Euro-son\": [\n        \"NN\"\n    ], \n    \"Bruckner\": [\n        \"NNP\"\n    ], \n    \"reinvestment\": [\n        \"NN\"\n    ], \n    \"publicly-traded\": [\n        \"JJ\"\n    ], \n    \"Driscoll\": [\n        \"NNP\"\n    ], \n    \"Zadel\": [\n        \"NNP\"\n    ], \n    \"predomination\": [\n        \"NN\"\n    ], \n    \"Tech-Sym\": [\n        \"NNP\"\n    ], \n    \"typographical\": [\n        \"JJ\"\n    ], \n    \"despises\": [\n        \"VBZ\"\n    ], \n    \"Analyses\": [\n        \"NNS\"\n    ], \n    \"Roaco\": [\n        \"NNP\"\n    ], \n    \"brainy\": [\n        \"JJ\"\n    ], \n    \"Quadrum\": [\n        \"NNP\"\n    ], \n    \"uninformed\": [\n        \"JJ\"\n    ], \n    \"brains\": [\n        \"NNS\"\n    ], \n    \"Jail\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interbank\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"NN|JJ\", \n        \"NN|RB\", \n        \"NN|JJ|RB\", \n        \"RB|NN|JJ\"\n    ], \n    \"auto-immune\": [\n        \"JJ\"\n    ], \n    \"Karstadt\": [\n        \"NNP\"\n    ], \n    \"professionals\": [\n        \"NNS\"\n    ], \n    \"back-disability\": [\n        \"NN\"\n    ], \n    \"transferred\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"discernment\": [\n        \"NN\"\n    ], \n    \"Bremerton\": [\n        \"NNP\"\n    ], \n    \"diktat\": [\n        \"JJ\"\n    ], \n    \"GERMANS\": [\n        \"NNPS\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Volland\": [\n        \"NNP\"\n    ], \n    \"overcollateralized\": [\n        \"VBN\"\n    ], \n    \"extinguish\": [\n        \"VB\"\n    ], \n    \"Settlement\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ekberg\": [\n        \"NNP\"\n    ], \n    \"unsubstantiated\": [\n        \"JJ\"\n    ], \n    \"Cappy\": [\n        \"NNP\"\n    ], \n    \"Marcor\": [\n        \"NNP\"\n    ], \n    \"Marcos\": [\n        \"NNP\"\n    ], \n    \"beef-hungry\": [\n        \"JJ\"\n    ], \n    \"Orrie\": [\n        \"NNP\"\n    ], \n    \"Capps\": [\n        \"NNP\"\n    ], \n    \"For...\": [\n        \":\"\n    ], \n    \"OUTSIDE\": [\n        \"JJ\"\n    ], \n    \"Winnipeg\": [\n        \"NNP\"\n    ], \n    \"Deep\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Petre\": [\n        \"NNP\"\n    ], \n    \"Marcom\": [\n        \"NNP\"\n    ], \n    \"Israelite\": [\n        \"NNP\"\n    ], \n    \"snorting\": [\n        \"NN\"\n    ], \n    \"blonde-headed\": [\n        \"JJ\"\n    ], \n    \"custom-built\": [\n        \"VBN\"\n    ], \n    \"call-in\": [\n        \"JJ\"\n    ], \n    \"Refuses\": [\n        \"VBZ\"\n    ], \n    \"chemical-weapons\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Wiseguy\": [\n        \"NNP\"\n    ], \n    \"Package\": [\n        \"NN\"\n    ], \n    \"Vestar\": [\n        \"NNP\"\n    ], \n    \"thesaurus\": [\n        \"NN\"\n    ], \n    \"importantly\": [\n        \"RB\"\n    ], \n    \"Viatech\": [\n        \"NNP\"\n    ], \n    \"Akio\": [\n        \"NNP\"\n    ], \n    \"Akin\": [\n        \"NNP\"\n    ], \n    \"MeraBank\": [\n        \"NNP\"\n    ], \n    \"countries\": [\n        \"NNS\"\n    ], \n    \"Ibaraki\": [\n        \"NNP\"\n    ], \n    \"Ente\": [\n        \"NNP\"\n    ], \n    \"Iveco\": [\n        \"NNP\"\n    ], \n    \"Thermo\": [\n        \"NNP\"\n    ], \n    \"Coupes\": [\n        \"NNP\"\n    ], \n    \"implications\": [\n        \"NNS\"\n    ], \n    \"premiered\": [\n        \"VBD\"\n    ], \n    \"chauffeured\": [\n        \"VBN\"\n    ], \n    \"premieres\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"heir-designate\": [\n        \"NN\"\n    ], \n    \"precipice-walled\": [\n        \"JJ\"\n    ], \n    \"Jibril\": [\n        \"NNP\"\n    ], \n    \"Web\": [\n        \"NNP\"\n    ], \n    \"Aggies\": [\n        \"NNP\"\n    ], \n    \"Blount\": [\n        \"NNP\"\n    ], \n    \"Wei\": [\n        \"NNP\"\n    ], \n    \"Character\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hairpin\": [\n        \"NN\"\n    ], \n    \"play-by-play\": [\n        \"JJ\"\n    ], \n    \"Wes\": [\n        \"NNP\"\n    ], \n    \"cathode-ray\": [\n        \"NN\"\n    ], \n    \"teamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Wet\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"bridgework\": [\n        \"NN\"\n    ], \n    \"Sharing\": [\n        \"VBG\"\n    ], \n    \"Jeepers\": [\n        \"UH\"\n    ], \n    \"Nijinska\": [\n        \"NNP\"\n    ], \n    \"Pelletier\": [\n        \"NNP\"\n    ], \n    \"industrialize\": [\n        \"VB\"\n    ], \n    \"embittered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"self-supporting\": [\n        \"JJ\"\n    ], \n    \"Nijinsky\": [\n        \"NN\"\n    ], \n    \"Awake\": [\n        \"NNP\"\n    ], \n    \"Cupply\": [\n        \"NNP\"\n    ], \n    \"Marsden\": [\n        \"NNP\"\n    ], \n    \"Adaptations\": [\n        \"NNS\"\n    ], \n    \"paneled\": [\n        \"JJ\"\n    ], \n    \"ten-gallon\": [\n        \"JJ\"\n    ], \n    \"crevasses\": [\n        \"NNS\"\n    ], \n    \"Levinson\": [\n        \"NNP\"\n    ], \n    \"humbled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stroll\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"LD060\": [\n        \"NN\"\n    ], \n    \"well-capitalized\": [\n        \"JJ\"\n    ], \n    \"self-indulgence\": [\n        \"NN\"\n    ], \n    \"rippling\": [\n        \"VBG\"\n    ], \n    \"irritant\": [\n        \"NN\"\n    ], \n    \"Intellectual\": [\n        \"NNP\"\n    ], \n    \"thumbnail\": [\n        \"NN\"\n    ], \n    \"anti-tax\": [\n        \"JJ\"\n    ], \n    \"ambling\": [\n        \"VBG\"\n    ], \n    \"carloads\": [\n        \"NNS\"\n    ], \n    \"Arhat\": [\n        \"NNP\"\n    ], \n    \"Chicago-area\": [\n        \"JJ\"\n    ], \n    \"bannnnnng\": [\n        \"VB\"\n    ], \n    \"EMA\": [\n        \"NNP\"\n    ], \n    \"Whigs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"EMC\": [\n        \"NNP\"\n    ], \n    \"burst\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"excoriated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"EMI\": [\n        \"NNP\"\n    ], \n    \"anchored\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Harbanse\": [\n        \"NNP\"\n    ], \n    \"EMS\": [\n        \"NNP\"\n    ], \n    \"hoes\": [\n        \"NNS\"\n    ], \n    \"non-discrimination\": [\n        \"NN\"\n    ], \n    \"Tolerance\": [\n        \"NN\"\n    ], \n    \"Index-arbitrage\": [\n        \"NN\"\n    ], \n    \"break-up\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Rincon\": [\n        \"NNP\"\n    ], \n    \"once-dull\": [\n        \"JJ\"\n    ], \n    \"Krzywy-Rog\": [\n        \"NNP\"\n    ], \n    \"Krieger\": [\n        \"NNP\"\n    ], \n    \"Members\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"complications\": [\n        \"NNS\"\n    ], \n    \"westbound\": [\n        \"JJ\"\n    ], \n    \"intonations\": [\n        \"NNS\"\n    ], \n    \"Diehards\": [\n        \"NNS\"\n    ], \n    \"Puttana\": [\n        \"NN\"\n    ], \n    \"piece-by-piece\": [\n        \"JJ\"\n    ], \n    \"Lieberman\": [\n        \"NNP\"\n    ], \n    \"toting\": [\n        \"VBG\"\n    ], \n    \"Beahrs\": [\n        \"NNP\"\n    ], \n    \"Joseph\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"clipboards\": [\n        \"NNS\"\n    ], \n    \"broil\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"money-transfer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"WIN\\\\\": [\n        \"NNP\"\n    ], \n    \"WINS\": [\n        \"VBZ\"\n    ], \n    \"Adoniram\": [\n        \"NNP\"\n    ], \n    \"undersold\": [\n        \"NN\"\n    ], \n    \"outcuss\": [\n        \"VBZ\"\n    ], \n    \"Malaysia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lavery\": [\n        \"NNP\"\n    ], \n    \"mortgage-industry\": [\n        \"NN\"\n    ], \n    \"botched\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Altenburg\": [\n        \"NNP\"\n    ], \n    \"madness\": [\n        \"NN\"\n    ], \n    \"foreboding\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"hybrids\": [\n        \"NNS\"\n    ], \n    \"inexplicable\": [\n        \"JJ\"\n    ], \n    \"exploit\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Japanese-Americans\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"biographer\": [\n        \"NN\"\n    ], \n    \"Velazquez\": [\n        \"NNP\"\n    ], \n    \"Principals\": [\n        \"NNS\"\n    ], \n    \"charismatic\": [\n        \"JJ\"\n    ], \n    \"sledding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"amino\": [\n        \"JJ\"\n    ], \n    \"muzzling\": [\n        \"JJ\"\n    ], \n    \"Pain\": [\n        \"NN\"\n    ], \n    \"lioness\": [\n        \"NN\"\n    ], \n    \"Meteorological\": [\n        \"NNP\"\n    ], \n    \"micrometeoritic\": [\n        \"JJ\"\n    ], \n    \"Paid\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"tropical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pace-setter\": [\n        \"NN\"\n    ], \n    \"Paix\": [\n        \"NNP\"\n    ], \n    \"Floyd\": [\n        \"NNP\"\n    ], \n    \"dictator\": [\n        \"NN\"\n    ], \n    \"six-dollar\": [\n        \"JJ\"\n    ], \n    \"Goodby\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Maybelline\": [\n        \"NNP\"\n    ], \n    \"before-school\": [\n        \"JJ\"\n    ], \n    \"aggressions\": [\n        \"NNS\"\n    ], \n    \"straying\": [\n        \"VBG\"\n    ], \n    \"Yr.\": [\n        \"NN\"\n    ], \n    \"discontinuing\": [\n        \"VBG\"\n    ], \n    \"Involved\": [\n        \"VBN\"\n    ], \n    \"fours\": [\n        \"NNS\"\n    ], \n    \"earth-bound\": [\n        \"JJ\"\n    ], \n    \"vagueness\": [\n        \"NN\"\n    ], \n    \"skiers\": [\n        \"NNS\"\n    ], \n    \"Biosystems\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Night\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"freebooters\": [\n        \"NNS\"\n    ], \n    \"financial-service\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Steroids\": [\n        \"NNS\"\n    ], \n    \"Yaffe\": [\n        \"NNP\"\n    ], \n    \"offbeat\": [\n        \"JJ\"\n    ], \n    \"Hyun\": [\n        \"NNP\"\n    ], \n    \"moderns\": [\n        \"NNS\"\n    ], \n    \"Performed\": [\n        \"VBN\"\n    ], \n    \"biped\": [\n        \"NN\"\n    ], \n    \"Edgewater\": [\n        \"NNP\"\n    ], \n    \"Moody\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Histochemistry\": [\n        \"NNP\"\n    ], \n    \"Aaronson\": [\n        \"NNP\"\n    ], \n    \"GNP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bickered\": [\n        \"VBN\"\n    ], \n    \"tilling\": [\n        \"VBG\"\n    ], \n    \"mucus\": [\n        \"NN\"\n    ], \n    \"metric\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"continuing-education\": [\n        \"JJ\"\n    ], \n    \"Insurgent\": [\n        \"JJ\"\n    ], \n    \"Better\": [\n        \"NNP\", \n        \"RBR\", \n        \"RB\", \n        \"JJR\"\n    ], \n    \"Unwilling\": [\n        \"JJ\"\n    ], \n    \"Israel\": [\n        \"NNP\"\n    ], \n    \"develop\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"M.R.\": [\n        \"NNP\"\n    ], \n    \"pester\": [\n        \"VB\"\n    ], \n    \"Notitia\": [\n        \"NNS\"\n    ], \n    \"Bloomberg\": [\n        \"NNP\"\n    ], \n    \"preisolated\": [\n        \"VBN\"\n    ], \n    \"Fed-watching\": [\n        \"JJ\"\n    ], \n    \"near-complete\": [\n        \"JJ\"\n    ], \n    \"Amado\": [\n        \"NNP\"\n    ], \n    \"Hitter\": [\n        \"NN\"\n    ], \n    \"Fertitta\": [\n        \"NNP\"\n    ], \n    \"century...\": [\n        \":\"\n    ], \n    \"squatted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Telelawyer\": [\n        \"NNP\"\n    ], \n    \"Amada\": [\n        \"NNP\"\n    ], \n    \"rodder\": [\n        \"NN\"\n    ], \n    \"single-sentence\": [\n        \"JJ\"\n    ], \n    \"fifty-cent\": [\n        \"JJ\"\n    ], \n    \"bronchiolitis\": [\n        \"NN\"\n    ], \n    \"Colee\": [\n        \"NNP\"\n    ], \n    \"squatter\": [\n        \"NN\"\n    ], \n    \"irresistable\": [\n        \"JJ\"\n    ], \n    \"Peruvian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"nacelle\": [\n        \"NN\"\n    ], \n    \"Caverns\": [\n        \"NNP\"\n    ], \n    \"Terence\": [\n        \"NNP\"\n    ], \n    \"Nesconset\": [\n        \"NNP\"\n    ], \n    \"tarpapered\": [\n        \"JJ\"\n    ], \n    \"Catinari\": [\n        \"NNP\"\n    ], \n    \"Walkers\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"depreciation-induced\": [\n        \"JJ\"\n    ], \n    \"Municipals\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"airborne-radar\": [\n        \"NN\"\n    ], \n    \"Puma\": [\n        \"NN\"\n    ], \n    \"nondurable\": [\n        \"JJ\"\n    ], \n    \"Service\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Oaklanders\": [\n        \"NNPS\"\n    ], \n    \"worn-out\": [\n        \"JJ\"\n    ], \n    \"Bafflers\": [\n        \"NNPS\"\n    ], \n    \"neon\": [\n        \"NN\"\n    ], \n    \"moviestar\": [\n        \"NN\"\n    ], \n    \"Gases\": [\n        \"NNS\"\n    ], \n    \"Pump\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"growled\": [\n        \"VBD\"\n    ], \n    \"maternity\": [\n        \"NN\"\n    ], \n    \"greetings\": [\n        \"NNS\"\n    ], \n    \"Euro-that\": [\n        \"NN\"\n    ], \n    \"Syllables\": [\n        \"NNS\"\n    ], \n    \"Molecular\": [\n        \"NNP\"\n    ], \n    \"d-c\": [\n        \"NN\"\n    ], \n    \"Linear\": [\n        \"NNP\"\n    ], \n    \"forward-looking\": [\n        \"JJ\"\n    ], \n    \"Muniak\": [\n        \"NNP\"\n    ], \n    \"abortive\": [\n        \"JJ\"\n    ], \n    \"felicities\": [\n        \"NNS\"\n    ], \n    \"Marysville\": [\n        \"NNP\"\n    ], \n    \"overbought\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Thatcherian\": [\n        \"JJ\"\n    ], \n    \"lowest-cost\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Analyst\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"disproportionate\": [\n        \"JJ\"\n    ], \n    \"propped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Outflows\": [\n        \"NNS\"\n    ], \n    \"Tenn.-based\": [\n        \"JJ\"\n    ], \n    \"dialectics\": [\n        \"NNS\"\n    ], \n    \"earnest\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Plainview\": [\n        \"NNP\"\n    ], \n    \"Playtex\": [\n        \"NNP\"\n    ], \n    \"fortune\": [\n        \"NN\"\n    ], \n    \"heightened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Regulars\": [\n        \"NNS\"\n    ], \n    \"unrequited\": [\n        \"JJ\"\n    ], \n    \"conducts\": [\n        \"VBZ\"\n    ], \n    \"Greyhound\": [\n        \"NNP\"\n    ], \n    \"roll\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"annually\": [\n        \"RB\"\n    ], \n    \"yearnings\": [\n        \"NNS\"\n    ], \n    \"unspoiled\": [\n        \"JJ\"\n    ], \n    \"scholastics\": [\n        \"NNS\"\n    ], \n    \"Salwen\": [\n        \"NNP\"\n    ], \n    \"Mahran\": [\n        \"NNP\"\n    ], \n    \"output\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Magleby\": [\n        \"NNP\"\n    ], \n    \"falsehood\": [\n        \"NN\"\n    ], \n    \"verbal\": [\n        \"JJ\"\n    ], \n    \"exposed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"tragedies\": [\n        \"NNS\"\n    ], \n    \"cathode\": [\n        \"NN\"\n    ], \n    \"Walnut\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"exposes\": [\n        \"VBZ\"\n    ], \n    \"zealously\": [\n        \"RB\"\n    ], \n    \"slurries\": [\n        \"NNS\"\n    ], \n    \"intend\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Udall\": [\n        \"NNP\"\n    ], \n    \"ACTH\": [\n        \"NNP\"\n    ], \n    \"salicylic\": [\n        \"JJ\"\n    ], \n    \"manipulator\": [\n        \"NN\"\n    ], \n    \"Symantec\": [\n        \"NNP\"\n    ], \n    \"palms\": [\n        \"NNS\"\n    ], \n    \"AlunJones\": [\n        \"NNP\"\n    ], \n    \"two-minute\": [\n        \"JJ\"\n    ], \n    \"Vinken\": [\n        \"NNP\"\n    ], \n    \"Pompey\": [\n        \"NNP\"\n    ], \n    \"Ion\": [\n        \"NNP\"\n    ], \n    \"Prizzi\": [\n        \"NNP\"\n    ], \n    \"bustlin\": [\n        \"NN\"\n    ], \n    \"elephant-like\": [\n        \"JJ\"\n    ], \n    \"fractures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Chilean\": [\n        \"JJ\"\n    ], \n    \"Kalmuk\": [\n        \"NNP\"\n    ], \n    \"FT-SE\": [\n        \"NNP\"\n    ], \n    \"carefulness\": [\n        \"NN\"\n    ], \n    \"sweet-natured\": [\n        \"JJ\"\n    ], \n    \"PLACE\": [\n        \"NNP\"\n    ], \n    \"heat-absorbing\": [\n        \"JJ\"\n    ], \n    \"fractured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"bazaar\": [\n        \"NN\"\n    ], \n    \"Leonardo\": [\n        \"NNP\"\n    ], \n    \"Kalmus\": [\n        \"NNP\"\n    ], \n    \"B.B.C.\": [\n        \"NNP\"\n    ], \n    \"Krakowiak\": [\n        \"NNP\"\n    ], \n    \"Cavenee\": [\n        \"NNP\"\n    ], \n    \"user-inviting\": [\n        \"JJ\"\n    ], \n    \"Scapin\": [\n        \"NNP\"\n    ], \n    \"mugging\": [\n        \"NN\"\n    ], \n    \"Blaine\": [\n        \"NNP\"\n    ], \n    \"Chevron\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"non-resistants\": [\n        \"JJ\"\n    ], \n    \"D&B\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"backup\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Intergovernmental\": [\n        \"NNP\"\n    ], \n    \"Kapoor\": [\n        \"NNP\"\n    ], \n    \"Boogie\": [\n        \"NNP\"\n    ], \n    \"Amicam\": [\n        \"NNP\"\n    ], \n    \"Pavletich\": [\n        \"NNP\"\n    ], \n    \"shrinking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"intervention\": [\n        \"NN\"\n    ], \n    \"Noctiluca\": [\n        \"NN\"\n    ], \n    \"discount-coupon\": [\n        \"NN\"\n    ], \n    \"Karshilama\": [\n        \"NNP\"\n    ], \n    \"Well-received\": [\n        \"JJ\"\n    ], \n    \"Rounding-off\": [\n        \"NN\"\n    ], \n    \"Yuppily\": [\n        \"RB\"\n    ], \n    \"Budzyn\": [\n        \"NNP\"\n    ], \n    \"Finnie\": [\n        \"NNP\"\n    ], \n    \"Ruschkowski\": [\n        \"NNP\"\n    ], \n    \"explosions\": [\n        \"NNS\"\n    ], \n    \"LOSS\\\\\": [\n        \"NN\"\n    ], \n    \"Acarbose\": [\n        \"NNP\"\n    ], \n    \"cost-push\": [\n        \"JJ\"\n    ], \n    \"shoestring\": [\n        \"NN\"\n    ], \n    \"pitcher\": [\n        \"NN\"\n    ], \n    \"Kennon\": [\n        \"NNP\"\n    ], \n    \"American-developed\": [\n        \"JJ\"\n    ], \n    \"Calderwood\": [\n        \"NNP\"\n    ], \n    \"Galveston-Port\": [\n        \"NNP\"\n    ], \n    \"shootout\": [\n        \"NN\"\n    ], \n    \"recouped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"omelet\": [\n        \"NN\"\n    ], \n    \"pervasively\": [\n        \"RB\"\n    ], \n    \"eighth-floor\": [\n        \"JJ\"\n    ], \n    \"Trouble\": [\n        \"NN\"\n    ], \n    \"wholes\": [\n        \"NNS\"\n    ], \n    \"curtail\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"illustrator\": [\n        \"NN\"\n    ], \n    \"embedded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Ironweed\": [\n        \"NN\"\n    ], \n    \"Two-month\": [\n        \"JJ\"\n    ], \n    \"Survival\": [\n        \"NNP\"\n    ], \n    \"Marston\": [\n        \"NNP\"\n    ], \n    \"waltzing\": [\n        \"VBG\"\n    ], \n    \"Fitzwater\": [\n        \"NNP\"\n    ], \n    \"Adaptation\": [\n        \"NN\"\n    ], \n    \"realigned\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Moves\": [\n        \"NNS\"\n    ], \n    \"DEFECT\": [\n        \"VBP\"\n    ], \n    \"sturdiest\": [\n        \"JJS\"\n    ], \n    \"Jacques-Francois\": [\n        \"NNP\"\n    ], \n    \"BALKS\": [\n        \"VBZ\"\n    ], \n    \"rosarians\": [\n        \"NNS\"\n    ], \n    \"Veterans\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Idol\": [\n        \"NNP\"\n    ], \n    \"finishes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Howson-Algraphy\": [\n        \"NNP\"\n    ], \n    \"Niven\": [\n        \"NNP\"\n    ], \n    \"inactivation\": [\n        \"NN\"\n    ], \n    \"Finnegan\": [\n        \"NNP\"\n    ], \n    \"Herald-American\": [\n        \"NNP\"\n    ], \n    \"Purpose\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Daberko\": [\n        \"NNP\"\n    ], \n    \"fools\": [\n        \"NNS\"\n    ], \n    \"poor\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Engine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"diaries\": [\n        \"NNS\"\n    ], \n    \"unselfconsciousness\": [\n        \"NN\"\n    ], \n    \"endeavors\": [\n        \"NNS\"\n    ], \n    \"whistling\": [\n        \"VBG\"\n    ], \n    \"drive-through\": [\n        \"JJ\"\n    ], \n    \"vp\": [\n        \"NN\"\n    ], \n    \"vertigo\": [\n        \"NN\"\n    ], \n    \"SIMPLIFYING\": [\n        \"VBG\"\n    ], \n    \"Y.W.C.A.\": [\n        \"NNP\"\n    ], \n    \"Miron\": [\n        \"NNP\"\n    ], \n    \"titillating\": [\n        \"VBG\"\n    ], \n    \"insertions\": [\n        \"NNS\"\n    ], \n    \"Boissoneault\": [\n        \"NNP\"\n    ], \n    \"Comcast\": [\n        \"NNP\"\n    ], \n    \"DIRECTORS\": [\n        \"NNS\"\n    ], \n    \"cores\": [\n        \"NNS\"\n    ], \n    \"overseas\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Magnolias\": [\n        \"NNS\"\n    ], \n    \"Intervoice\": [\n        \"NNP\"\n    ], \n    \"disaffiliation\": [\n        \"NN\"\n    ], \n    \"interspecies\": [\n        \"NNS\"\n    ], \n    \"ceases\": [\n        \"VBZ\"\n    ], \n    \"JWP\": [\n        \"NNP\"\n    ], \n    \"Unknown\": [\n        \"JJ\"\n    ], \n    \"HURRICANE\": [\n        \"NNP\"\n    ], \n    \"heavy-water\": [\n        \"NN\"\n    ], \n    \"ceased\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"thoughtful\": [\n        \"JJ\"\n    ], \n    \"unblock\": [\n        \"VB\"\n    ], \n    \"Take\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Shultz\": [\n        \"NNP\"\n    ], \n    \"bulb\": [\n        \"NN\"\n    ], \n    \"pipsqueak\": [\n        \"NN\"\n    ], \n    \"religious\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"Kasler\": [\n        \"NNP\"\n    ], \n    \"osteoporosis\": [\n        \"NN\"\n    ], \n    \"Cieca\": [\n        \"NNP\"\n    ], \n    \"corps\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Staloff\": [\n        \"NNP\"\n    ], \n    \"Discos\": [\n        \"NNS\"\n    ], \n    \"computerizing\": [\n        \"VBG\"\n    ], \n    \"music-publishing\": [\n        \"JJ\"\n    ], \n    \"sight-seeing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"volunteer\": [\n        \"NN\", \n        \"VB\", \n        \"JJR\", \n        \"VBP\"\n    ], \n    \"twothirds\": [\n        \"NNS\"\n    ], \n    \"patently\": [\n        \"RB\"\n    ], \n    \"clean-air\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hancock\": [\n        \"NNP\"\n    ], \n    \"pseudoephedrine\": [\n        \"NN\"\n    ], \n    \"Status-roles\": [\n        \"NNS\"\n    ], \n    \"coloured\": [\n        \"JJ\"\n    ], \n    \"Celestial\": [\n        \"NNP\"\n    ], \n    \"Surging\": [\n        \"VBG\"\n    ], \n    \"wrangler\": [\n        \"NN\"\n    ], \n    \"Underwoods\": [\n        \"NNPS\"\n    ], \n    \"coupon-distribution\": [\n        \"JJ\"\n    ], \n    \"Terminiello\": [\n        \"NNP\"\n    ], \n    \"anarchical\": [\n        \"JJ\"\n    ], \n    \"Veiling\": [\n        \"VBG\"\n    ], \n    \"artfulness\": [\n        \"NN\"\n    ], \n    \"rationally\": [\n        \"RB\"\n    ], \n    \"reaffirming\": [\n        \"VBG\"\n    ], \n    \"startin\": [\n        \"VBG\"\n    ], \n    \"brucellosis\": [\n        \"NN\"\n    ], \n    \"ass\": [\n        \"NN\"\n    ], \n    \"lulls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"nullity\": [\n        \"NN\"\n    ], \n    \"streets\": [\n        \"NNS\"\n    ], \n    \"GUN\": [\n        \"NNP\"\n    ], \n    \"less-conservative\": [\n        \"JJ\"\n    ], \n    \"coudn\": [\n        \"MD\"\n    ], \n    \"Watchmen\": [\n        \"NNP\"\n    ], \n    \"Youngberg\": [\n        \"NNP\"\n    ], \n    \"Gaetan\": [\n        \"NNP\"\n    ], \n    \"Robb\": [\n        \"NNP\"\n    ], \n    \"bass\": [\n        \"NN\"\n    ], \n    \"heavy-construction\": [\n        \"NN\"\n    ], \n    \"cues\": [\n        \"NNS\"\n    ], \n    \"raw-material\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"lurch\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"nonproliferation\": [\n        \"NN\"\n    ], \n    \"Stenhachs\": [\n        \"NNPS\"\n    ], \n    \"cued\": [\n        \"VBD\"\n    ], \n    \"Importers\": [\n        \"NNP\"\n    ], \n    \"Breda\": [\n        \"NNP\"\n    ], \n    \"scallops\": [\n        \"NNS\"\n    ], \n    \"stockyards\": [\n        \"NNS\"\n    ], \n    \"Chessman\": [\n        \"NNP\"\n    ], \n    \"longshoremen\": [\n        \"NNS\"\n    ], \n    \"Paramus\": [\n        \"NNP\"\n    ], \n    \"confict\": [\n        \"NN\"\n    ], \n    \"continuingly\": [\n        \"RB\"\n    ], \n    \"ragtime\": [\n        \"NN\"\n    ], \n    \"Latinovich\": [\n        \"NNP\"\n    ], \n    \"excess\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"marring\": [\n        \"VBG\"\n    ], \n    \"food-products\": [\n        \"NNS\"\n    ], \n    \"Fokine\": [\n        \"NNP\"\n    ], \n    \"Doll\": [\n        \"NNP\"\n    ], \n    \"cathartic\": [\n        \"JJ\"\n    ], \n    \"psalmist\": [\n        \"NN\"\n    ], \n    \"Dole\": [\n        \"NNP\"\n    ], \n    \"Bolstered\": [\n        \"VBN\"\n    ], \n    \"Krasnik\": [\n        \"NNP\"\n    ], \n    \"Kohnstamm-positive\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"indirection\": [\n        \"NN\"\n    ], \n    \"Trusthouse\": [\n        \"NNP\"\n    ], \n    \"advertising\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"successors\": [\n        \"NNS\"\n    ], \n    \"Plateau\": [\n        \"NNP\"\n    ], \n    \"inspires\": [\n        \"VBZ\"\n    ], \n    \"Tingley\": [\n        \"NNP\"\n    ], \n    \"gun-carrying\": [\n        \"JJ\"\n    ], \n    \"Stateswest\": [\n        \"NNP\"\n    ], \n    \"Chicopee\": [\n        \"NNP\"\n    ], \n    \"S*\": [\n        \"NNP\"\n    ], \n    \"head-topper\": [\n        \"NN\"\n    ], \n    \"S.\": [\n        \"NNP\"\n    ], \n    \"A.S.\": [\n        \"NNP\"\n    ], \n    \"seventeenth\": [\n        \"JJ\"\n    ], \n    \"Climb\": [\n        \"VB\"\n    ], \n    \"S$\": [\n        \"$\"\n    ], \n    \"Commencing\": [\n        \"VBG\"\n    ], \n    \"Moet\": [\n        \"NNP\", \n        \"JJS\"\n    ], \n    \"Butlers\": [\n        \"NNPS\"\n    ], \n    \"Intouch\": [\n        \"NNP\"\n    ], \n    \"Connor\": [\n        \"NNP\"\n    ], \n    \"Mono-unsaturated\": [\n        \"JJ\"\n    ], \n    \"Backyard\": [\n        \"NN\"\n    ], \n    \"oil-field\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Struggle\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"cannibalism\": [\n        \"NN\"\n    ], \n    \"Sheraton-Biltmore\": [\n        \"NNP\"\n    ], \n    \"Sy\": [\n        \"NNP\"\n    ], \n    \"Viewmaster\": [\n        \"NNP\"\n    ], \n    \"Sr\": [\n        \"NNP\"\n    ], \n    \"propellers\": [\n        \"NNS\"\n    ], \n    \"Sp\": [\n        \"NNP\"\n    ], \n    \"Arlt\": [\n        \"NNP\"\n    ], \n    \"Su\": [\n        \"NNP\"\n    ], \n    \"St\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Banking\": [\n        \"NNP\", \n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Si\": [\n        \"NNP\"\n    ], \n    \"sclerotic\": [\n        \"JJ\"\n    ], \n    \"So\": [\n        \"RB\", \n        \"NNP\", \n        \"CC\", \n        \"IN\", \n        \"UH\"\n    ], \n    \"pretense\": [\n        \"NN\"\n    ], \n    \"Se\": [\n        \"NNP\"\n    ], \n    \"coup-planning\": [\n        \"NN\"\n    ], \n    \"daminozide\": [\n        \"NN\"\n    ], \n    \"macho\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"game-management\": [\n        \"NN\"\n    ], \n    \"spandrels\": [\n        \"NNS\"\n    ], \n    \"SS\": [\n        \"NNP\"\n    ], \n    \"on-again-off-again\": [\n        \"JJ\"\n    ], \n    \"Blumberg\": [\n        \"NNP\"\n    ], \n    \"SP\": [\n        \"NNP\"\n    ], \n    \"SW\": [\n        \"NNP\"\n    ], \n    \"anti-airline\": [\n        \"NN\"\n    ], \n    \"SK\": [\n        \"NNP\"\n    ], \n    \"FELLOWSHIP\": [\n        \"NN\"\n    ], \n    \"SH\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SO\": [\n        \"RB\"\n    ], \n    \"budgets\": [\n        \"NNS\"\n    ], \n    \"SC\": [\n        \"NNP\"\n    ], \n    \"SA\": [\n        \"NNP\"\n    ], \n    \"self-conscious\": [\n        \"JJ\"\n    ], \n    \"SE\": [\n        \"NNP\"\n    ], \n    \"SD\": [\n        \"NNP\"\n    ], \n    \"Bitten\": [\n        \"VBN\"\n    ], \n    \"IBJ\": [\n        \"NNP\"\n    ], \n    \"persists\": [\n        \"VBZ\"\n    ], \n    \"cubist\": [\n        \"JJ\"\n    ], \n    \"IBM\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unconcealed\": [\n        \"VBN\"\n    ], \n    \"IBC\": [\n        \"NNP\"\n    ], \n    \"Finberg\": [\n        \"NNP\"\n    ], \n    \"black-draped\": [\n        \"JJ\"\n    ], \n    \"quartets\": [\n        \"NNS\"\n    ], \n    \"Innocent\": [\n        \"JJ\"\n    ], \n    \"Cellist\": [\n        \"NNP\"\n    ], \n    \"Signers\": [\n        \"NNS\"\n    ], \n    \"IBT\": [\n        \"NNP\"\n    ], \n    \"cubism\": [\n        \"NN\"\n    ], \n    \"overcharging\": [\n        \"VBG\"\n    ], \n    \"stymie\": [\n        \"VB\"\n    ], \n    \"surpassed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"dismembering\": [\n        \"VBG\"\n    ], \n    \"individualistic\": [\n        \"JJ\"\n    ], \n    \"Brahm\": [\n        \"NNP\"\n    ], \n    \"reject\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"surpasses\": [\n        \"VBZ\"\n    ], \n    \"Falb\": [\n        \"NNP\"\n    ], \n    \"Alcorn\": [\n        \"NNP\"\n    ], \n    \"Lower\": [\n        \"JJR\", \n        \"NNP\"\n    ], \n    \"Microorganisms\": [\n        \"NNS\"\n    ], \n    \"desisted\": [\n        \"VBD\"\n    ], \n    \"purring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"compulsory\": [\n        \"JJ\"\n    ], \n    \"Sumat\": [\n        \"NNP\"\n    ], \n    \"criticize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Schellke\": [\n        \"NNP\"\n    ], \n    \"Slote\": [\n        \"NNP\"\n    ], \n    \"embark\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"anytime\": [\n        \"RB\"\n    ], \n    \"roommates\": [\n        \"NNS\"\n    ], \n    \"chopsticks\": [\n        \"NNS\"\n    ], \n    \"Euthanasia\": [\n        \"NN\"\n    ], \n    \"Marathon\": [\n        \"NNP\"\n    ], \n    \"ghostbusters\": [\n        \"NNS\"\n    ], \n    \"world-affairs\": [\n        \"NNS\"\n    ], \n    \"groundup\": [\n        \"JJ\"\n    ], \n    \"networking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Cholet\": [\n        \"NNP\"\n    ], \n    \"Bedouins\": [\n        \"NNS\"\n    ], \n    \"Definite\": [\n        \"JJ\"\n    ], \n    \"charities\": [\n        \"NNS\"\n    ], \n    \"Southbrook\": [\n        \"NNP\"\n    ], \n    \"lovebirds\": [\n        \"NNS\"\n    ], \n    \"sarcolemmal\": [\n        \"JJ\"\n    ], \n    \"southpaw\": [\n        \"NN\"\n    ], \n    \"Atlas\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"clarinet\": [\n        \"NN\"\n    ], \n    \"Confederacy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Property-tax\": [\n        \"JJ\"\n    ], \n    \"may...\": [\n        \":\"\n    ], \n    \"Pountain\": [\n        \"NNP\"\n    ], \n    \"miter\": [\n        \"VB\"\n    ], \n    \"Temptation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Equibank\": [\n        \"NNP\"\n    ], \n    \"absence\": [\n        \"NN\"\n    ], \n    \"prowled\": [\n        \"VBD\"\n    ], \n    \"differed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"rabble\": [\n        \"NN\"\n    ], \n    \"Tupolev\": [\n        \"NNP\"\n    ], \n    \"boastings\": [\n        \"NNS\"\n    ], \n    \"misalignment\": [\n        \"NN\"\n    ], \n    \"evening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"cable-television\": [\n        \"NN\"\n    ], \n    \"Intergroup\": [\n        \"NNP\"\n    ], \n    \"Hostess\": [\n        \"NNP\"\n    ], \n    \"slighter\": [\n        \"JJR\"\n    ], \n    \"musket\": [\n        \"NN\"\n    ], \n    \"Kwang\": [\n        \"NNP\"\n    ], \n    \"flatout\": [\n        \"NN\"\n    ], \n    \"Pre-Legislative\": [\n        \"NNP\"\n    ], \n    \"sexologist\": [\n        \"NN\"\n    ], \n    \"flashlight-type\": [\n        \"JJ\"\n    ], \n    \"fifth-largest\": [\n        \"JJ\"\n    ], \n    \"slighted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Incurably\": [\n        \"RB\"\n    ], \n    \"inflecting\": [\n        \"VBG\"\n    ], \n    \"impressionists\": [\n        \"NNS\"\n    ], \n    \"liquefied\": [\n        \"VBN\"\n    ], \n    \"obligates\": [\n        \"VBZ\"\n    ], \n    \"freebies\": [\n        \"NNS\"\n    ], \n    \"Suez\": [\n        \"NNP\"\n    ], \n    \"bless\": [\n        \"VB\"\n    ], \n    \"Quaid\": [\n        \"NNP\"\n    ], \n    \"disdaining\": [\n        \"VBG\"\n    ], \n    \"Elbaum\": [\n        \"NNP\"\n    ], \n    \"McNaughton\": [\n        \"NNP\"\n    ], \n    \"blest\": [\n        \"VB\", \n        \"VBN\"\n    ], \n    \"fairy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"obligated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"heavy\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"thrombi\": [\n        \"NNS\"\n    ], \n    \"transcribe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gathering-in\": [\n        \"NN\"\n    ], \n    \"Tax\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Gentleman\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Anat\": [\n        \"NNP\"\n    ], \n    \"ballistics\": [\n        \"NNS\"\n    ], \n    \"honest-to-Betsy\": [\n        \"RB\"\n    ], \n    \"Westridge\": [\n        \"NNP\"\n    ], \n    \"Fearon\": [\n        \"NNP\"\n    ], \n    \"four-element\": [\n        \"JJ\"\n    ], \n    \"heave\": [\n        \"NN\"\n    ], \n    \"anarchy\": [\n        \"NN\"\n    ], \n    \"processed-foods\": [\n        \"JJ\"\n    ], \n    \"Tad\": [\n        \"NNP\"\n    ], \n    \"Diethylstilbestrol\": [\n        \"NN\"\n    ], \n    \"jolly\": [\n        \"JJ\"\n    ], \n    \"Besher\": [\n        \"NNP\"\n    ], \n    \"shrivel\": [\n        \"VB\"\n    ], \n    \"reacquisition\": [\n        \"NN\"\n    ], \n    \"Serpentine\": [\n        \"NNP\"\n    ], \n    \"Town\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rayfield\": [\n        \"NNP\"\n    ], \n    \"Storyboard\": [\n        \"NNP\"\n    ], \n    \"earns\": [\n        \"VBZ\"\n    ], \n    \"Manjucri\": [\n        \"NNP\"\n    ], \n    \"toiling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Senese\": [\n        \"NNP\"\n    ], \n    \"Capitalincludes\": [\n        \"NNS\"\n    ], \n    \"hapless\": [\n        \"JJ\"\n    ], \n    \"Blend\": [\n        \"VB\"\n    ], \n    \"step-up\": [\n        \"NN\"\n    ], \n    \"Fantastic\": [\n        \"JJ\"\n    ], \n    \"broad-based\": [\n        \"JJ\"\n    ], \n    \"Sauvignon\": [\n        \"NNP\"\n    ], \n    \"Bros\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Broe\": [\n        \"NNP\"\n    ], \n    \"Brod\": [\n        \"NNP\"\n    ], \n    \"Feniger\": [\n        \"NNP\"\n    ], \n    \"Supplee\": [\n        \"NNP\"\n    ], \n    \"CNBC\": [\n        \"NNP\"\n    ], \n    \"Samba\": [\n        \"NNP\"\n    ], \n    \"Adds\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"spitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"quasi-recitative\": [\n        \"JJ\"\n    ], \n    \"Tatler\": [\n        \"NNP\"\n    ], \n    \"Hawksworth\": [\n        \"NNP\"\n    ], \n    \"Adde\": [\n        \"NNP\"\n    ], \n    \"effortless\": [\n        \"JJ\"\n    ], \n    \"visions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"equating\": [\n        \"VBG\"\n    ], \n    \"vote-begging\": [\n        \"NN\"\n    ], \n    \"obtainable\": [\n        \"JJ\"\n    ], \n    \"Grenville\": [\n        \"NNP\"\n    ], \n    \"DEAE-cellulose\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"announcements\": [\n        \"NNS\"\n    ], \n    \"teamsters\": [\n        \"NNS\"\n    ], \n    \"fiddle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Dutil\": [\n        \"NNP\"\n    ], \n    \"Refuge\": [\n        \"NNP\"\n    ], \n    \"trapped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Schroll\": [\n        \"NNP\"\n    ], \n    \"BRADSTREET\": [\n        \"NNP\"\n    ], \n    \"trapper\": [\n        \"NN\"\n    ], \n    \"French-Italian\": [\n        \"JJ\"\n    ], \n    \"Initiating\": [\n        \"VBG\"\n    ], \n    \"assaulted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"skillfulness\": [\n        \"NN\"\n    ], \n    \"imperiled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"clean-fuels\": [\n        \"NNS\"\n    ], \n    \"south-eastern\": [\n        \"JJ\"\n    ], \n    \"Dreamboat\": [\n        \"NNP\"\n    ], \n    \"gnawed\": [\n        \"VBD\"\n    ], \n    \"hesitating\": [\n        \"VBG\"\n    ], \n    \"Mahoganny\": [\n        \"NNP\"\n    ], \n    \"breadbasket\": [\n        \"NN\"\n    ], \n    \"garrison\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Communities\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"mooed\": [\n        \"VBD\"\n    ], \n    \"Beretta\": [\n        \"NNP\"\n    ], \n    \"phobia\": [\n        \"NN\"\n    ], \n    \"readapting\": [\n        \"VBG\"\n    ], \n    \"event-driven\": [\n        \"JJ\"\n    ], \n    \"footnote\": [\n        \"NN\"\n    ], \n    \"tearfully\": [\n        \"RB\"\n    ], \n    \"Mizuno\": [\n        \"NNP\"\n    ], \n    \"heaviest\": [\n        \"JJS\"\n    ], \n    \"deflationary\": [\n        \"JJ\"\n    ], \n    \"committment\": [\n        \"NN\"\n    ], \n    \"Late\": [\n        \"RB\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"ogled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Window\": [\n        \"NN\"\n    ], \n    \"organs\": [\n        \"NNS\"\n    ], \n    \"boorish\": [\n        \"JJ\"\n    ], \n    \"adorns\": [\n        \"VBZ\"\n    ], \n    \"adrift\": [\n        \"RB\"\n    ], \n    \"Wetzler\": [\n        \"NNP\"\n    ], \n    \"Price\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"itemized\": [\n        \"VBN\"\n    ], \n    \"Graduates\": [\n        \"NNS\"\n    ], \n    \"after-dinner\": [\n        \"JJ\"\n    ], \n    \"Swinburne\": [\n        \"NNP\"\n    ], \n    \"Focusing\": [\n        \"VBG\"\n    ], \n    \"Cruze\": [\n        \"NNP\"\n    ], \n    \"caliber\": [\n        \"NN\"\n    ], \n    \"Lucinda\": [\n        \"NNP\"\n    ], \n    \"Lookit\": [\n        \"VB\"\n    ], \n    \"Chief\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"money-back\": [\n        \"JJ\"\n    ], \n    \"Chien\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Schweitzer\": [\n        \"NNP\"\n    ], \n    \"Polygram\": [\n        \"NNP\"\n    ], \n    \"Killips\": [\n        \"NNP\"\n    ], \n    \"ballyhoo\": [\n        \"NN\"\n    ], \n    \"once-in-a-lifetime\": [\n        \"JJ\"\n    ], \n    \"Usinor\": [\n        \"NNP\"\n    ], \n    \"arising\": [\n        \"VBG\"\n    ], \n    \"Viscerally\": [\n        \"RB\"\n    ], \n    \"Nanjing\": [\n        \"NNP\"\n    ], \n    \"divestiture\": [\n        \"NN\"\n    ], \n    \"Chartered\": [\n        \"NNP\"\n    ], \n    \"ansuh\": [\n        \"VB\"\n    ], \n    \"velocity\": [\n        \"NN\"\n    ], \n    \"rechargeable\": [\n        \"JJ\"\n    ], \n    \"physics\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"stalked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"homefolk\": [\n        \"NN\"\n    ], \n    \"phenomenon\": [\n        \"NN\"\n    ], \n    \"hovered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"gas-tax\": [\n        \"NN\"\n    ], \n    \"Wheaties\": [\n        \"NNPS\"\n    ], \n    \"church-going\": [\n        \"JJ\"\n    ], \n    \"beatniks\": [\n        \"NNS\"\n    ], \n    \"Johannesburg\": [\n        \"NNP\"\n    ], \n    \"Benin\": [\n        \"NNP\"\n    ], \n    \"heavens\": [\n        \"NNS\", \n        \"UH\"\n    ], \n    \"Venturi\": [\n        \"NNP\"\n    ], \n    \"ERISA\": [\n        \"NNP\"\n    ], \n    \"predilections\": [\n        \"NNS\"\n    ], \n    \"flattery\": [\n        \"NN\"\n    ], \n    \"Prednisone\": [\n        \"NN\"\n    ], \n    \"megabit\": [\n        \"NN\"\n    ], \n    \"Pittston\": [\n        \"NNP\"\n    ], \n    \"French\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"common-law-marriage\": [\n        \"NN\"\n    ], \n    \"Trustee\": [\n        \"NNP\"\n    ], \n    \"vomica\": [\n        \"NN\"\n    ], \n    \"ymg\": [\n        \"NN\"\n    ], \n    \"Office.\": [\n        \"NNP\"\n    ], \n    \"ten-minute\": [\n        \"JJ\"\n    ], \n    \"sanhedrin\": [\n        \"NN\"\n    ], \n    \"inner-ear\": [\n        \"JJ\"\n    ], \n    \"local-news\": [\n        \"NN\"\n    ], \n    \"Michelle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"FITC\": [\n        \"NNP\"\n    ], \n    \"retorts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Uclaf\": [\n        \"NNP\"\n    ], \n    \"Greco\": [\n        \"NNP\"\n    ], \n    \"competing\": [\n        \"VBG\", \n        \"JJ\", \n        \"VBG|JJ\"\n    ], \n    \"boils\": [\n        \"VBZ\"\n    ], \n    \"Counselor\": [\n        \"NNP\"\n    ], \n    \"unburned\": [\n        \"JJ\"\n    ], \n    \"Oncogen\": [\n        \"NNP\"\n    ], \n    \"bone-loss\": [\n        \"NN\"\n    ], \n    \"Confucian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"employer-paid\": [\n        \"JJ\"\n    ], \n    \"hypo\": [\n        \"JJ\"\n    ], \n    \"hype\": [\n        \"NN\"\n    ], \n    \"doctrinaire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wriggled\": [\n        \"VBD\"\n    ], \n    \"Franck\": [\n        \"NNP\"\n    ], \n    \"howled\": [\n        \"VBD\"\n    ], \n    \"Paradox\": [\n        \"NNP\"\n    ], \n    \"Franco\": [\n        \"NNP\"\n    ], \n    \"drafted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"locale\": [\n        \"NN\"\n    ], \n    \"Bridgewater\": [\n        \"NNP\"\n    ], \n    \"Kipp\": [\n        \"NNP\"\n    ], \n    \"Laramie\": [\n        \"NNP\"\n    ], \n    \"France\": [\n        \"NNP\"\n    ], \n    \"drenching\": [\n        \"NN\"\n    ], \n    \"Asbury\": [\n        \"NNP\"\n    ], \n    \"Gibbs\": [\n        \"NNP\"\n    ], \n    \"Mama\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"portrait\": [\n        \"NN\"\n    ], \n    \"Poised\": [\n        \"NNP\"\n    ], \n    \"Goldenberg\": [\n        \"NNP\"\n    ], \n    \"Gibby\": [\n        \"NNP\"\n    ], \n    \"payroll-paring\": [\n        \"JJ\"\n    ], \n    \"locals\": [\n        \"NNS\"\n    ], \n    \"Brash\": [\n        \"NNP\"\n    ], \n    \"oldies\": [\n        \"NNS\"\n    ], \n    \"loud-voiced\": [\n        \"JJ\"\n    ], \n    \"tolls\": [\n        \"NNS\"\n    ], \n    \"falsify\": [\n        \"VB\"\n    ], \n    \"Realty\": [\n        \"NNP\"\n    ], \n    \"Tsuruo\": [\n        \"NNP\"\n    ], \n    \"Brass\": [\n        \"NNP\"\n    ], \n    \"FREED\": [\n        \"VBD\"\n    ], \n    \"five-row\": [\n        \"JJ\"\n    ], \n    \"Rodolfo\": [\n        \"NNP\"\n    ], \n    \"Kercheval\": [\n        \"NNP\"\n    ], \n    \"Smelov\": [\n        \"NNP\"\n    ], \n    \"Rippe\": [\n        \"NNP\"\n    ], \n    \"disintegrative\": [\n        \"JJ\"\n    ], \n    \"Redundant\": [\n        \"NNP\"\n    ], \n    \"Elise\": [\n        \"NNP\"\n    ], \n    \"arrears\": [\n        \"NNS\"\n    ], \n    \"abruptly\": [\n        \"RB\"\n    ], \n    \"hoisted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"collaborators\": [\n        \"NNS\"\n    ], \n    \"Vadas\": [\n        \"NNP\"\n    ], \n    \"Vadar\": [\n        \"NNP\"\n    ], \n    \"grass-covered\": [\n        \"JJ\"\n    ], \n    \"memorized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"higher-cost\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"drug-store\": [\n        \"NN\"\n    ], \n    \"minorities\": [\n        \"NNS\"\n    ], \n    \"TOURISM\": [\n        \"NN\"\n    ], \n    \"mausoleum\": [\n        \"NN\"\n    ], \n    \"Admirably\": [\n        \"RB\"\n    ], \n    \"SHEDDING\": [\n        \"VBG\"\n    ], \n    \"Mailloux\": [\n        \"NNP\"\n    ], \n    \"Compaq\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Koerner\": [\n        \"NNP\"\n    ], \n    \"Bader\": [\n        \"NNP\"\n    ], \n    \"Rothshchild\": [\n        \"NNP\"\n    ], \n    \"proton\": [\n        \"NN\"\n    ], \n    \"non-exempt\": [\n        \"JJ\"\n    ], \n    \"Crack\": [\n        \"NN\"\n    ], \n    \"Sullam\": [\n        \"NNP\"\n    ], \n    \"Lookout\": [\n        \"NNP\"\n    ], \n    \"Bracknell\": [\n        \"NNP\"\n    ], \n    \"three-building\": [\n        \"JJ\"\n    ], \n    \"BRITANNICA\": [\n        \"NNP\"\n    ], \n    \"Protection\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Runiewicz\": [\n        \"NNP\"\n    ], \n    \"Bogdan\": [\n        \"NNP\"\n    ], \n    \"Gott\": [\n        \"FW\"\n    ], \n    \"ganglion\": [\n        \"NN\"\n    ], \n    \"Lenders\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Harbison\": [\n        \"NNP\"\n    ], \n    \"enroll\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"N\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Gilt\": [\n        \"NNP\"\n    ], \n    \"Switch\": [\n        \"NN\"\n    ], \n    \"Donna\": [\n        \"NNP\"\n    ], \n    \"confusions\": [\n        \"NNS\"\n    ], \n    \"Hassan\": [\n        \"NNP\"\n    ], \n    \"F-major\": [\n        \"NN\"\n    ], \n    \"furrow\": [\n        \"NN\"\n    ], \n    \"floating-point\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"substantiates\": [\n        \"VBZ\"\n    ], \n    \"Supplement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"accidently\": [\n        \"RB\"\n    ], \n    \"Asmara\": [\n        \"NNP\"\n    ], \n    \"LifeSavers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Qatar\": [\n        \"NNP\"\n    ], \n    \"procedurally\": [\n        \"RB\"\n    ], \n    \"embroidered\": [\n        \"VBN\"\n    ], \n    \"Pulaski\": [\n        \"NNP\"\n    ], \n    \"high-rolling\": [\n        \"JJ\"\n    ], \n    \"industrial-product\": [\n        \"NN\"\n    ], \n    \"Delving\": [\n        \"VBG\"\n    ], \n    \"Bonwit\": [\n        \"NNP\"\n    ], \n    \"Eyes\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"grant\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Luke\": [\n        \"NNP\"\n    ], \n    \"Lafite-Rothschild\": [\n        \"NNP\"\n    ], \n    \"Masks\": [\n        \"VBZ\"\n    ], \n    \"makeshift\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"paid-up\": [\n        \"JJ\"\n    ], \n    \"vulnerable\": [\n        \"JJ\"\n    ], \n    \"grand\": [\n        \"JJ\"\n    ], \n    \"well-hit\": [\n        \"JJ\"\n    ], \n    \"throughput\": [\n        \"NN\"\n    ], \n    \"Lonski\": [\n        \"NNP\"\n    ], \n    \"composition\": [\n        \"NN\"\n    ], \n    \"pleadings\": [\n        \"NNS\"\n    ], \n    \"Faith\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"classmates\": [\n        \"NNS\"\n    ], \n    \"fatty\": [\n        \"JJ\"\n    ], \n    \"indispensability\": [\n        \"NN\"\n    ], \n    \"Seated\": [\n        \"VBN\"\n    ], \n    \"soberly\": [\n        \"RB\"\n    ], \n    \"Bleus\": [\n        \"NNP\"\n    ], \n    \"calcification\": [\n        \"NN\"\n    ], \n    \"Euro-beach\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Archie\": [\n        \"NNP\"\n    ], \n    \"calibrates\": [\n        \"VBZ\"\n    ], \n    \"sniggered\": [\n        \"VBD\"\n    ], \n    \"Rhenish\": [\n        \"JJ\"\n    ], \n    \"Lupel\": [\n        \"NNP\"\n    ], \n    \"MX\": [\n        \"NNP\"\n    ], \n    \"eighty-nine\": [\n        \"NN\"\n    ], \n    \"synopsis\": [\n        \"NN\"\n    ], \n    \"calibrated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"share-trading\": [\n        \"NN\"\n    ], \n    \"influx\": [\n        \"NN\"\n    ], \n    \"mobs\": [\n        \"NNS\"\n    ], \n    \"Schwinn\": [\n        \"NNP\"\n    ], \n    \"POLICY\": [\n        \"NNP\"\n    ], \n    \"Burleson\": [\n        \"NNP\"\n    ], \n    \"settlements\": [\n        \"NNS\"\n    ], \n    \"Grenadian\": [\n        \"JJ\"\n    ], \n    \"reviewed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"devastatingly\": [\n        \"RB\"\n    ], \n    \"public-stock\": [\n        \"NN\"\n    ], \n    \"Falconbridge\": [\n        \"NNP\"\n    ], \n    \"Reconstruction\": [\n        \"NNP\"\n    ], \n    \"reviewer\": [\n        \"NN\"\n    ], \n    \"Durables\": [\n        \"NNPS\"\n    ], \n    \"PIK\": [\n        \"NNP\"\n    ], \n    \"informal\": [\n        \"JJ\"\n    ], \n    \"PIC\": [\n        \"NNP\"\n    ], \n    \"shortcut\": [\n        \"NN\"\n    ], \n    \"representational\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cherries\": [\n        \"NNS\"\n    ], \n    \"questioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Berkeley\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"PIR\": [\n        \"NNP\"\n    ], \n    \"Spouse\": [\n        \"NN\"\n    ], \n    \"double-hamburger\": [\n        \"NN\"\n    ], \n    \"reemphasizes\": [\n        \"VBZ\"\n    ], \n    \"nymphomaniacs\": [\n        \"NNS\"\n    ], \n    \"capacities\": [\n        \"NNS\"\n    ], \n    \"cruise-ship\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"payment...\": [\n        \":\"\n    ], \n    \"Antigua\": [\n        \"NNP\"\n    ], \n    \"dearly\": [\n        \"RB\"\n    ], \n    \"tax-accounting\": [\n        \"NN\"\n    ], \n    \"preparatory\": [\n        \"JJ\"\n    ], \n    \"pre-sentencing\": [\n        \"JJ\"\n    ], \n    \"ponds\": [\n        \"NNS\"\n    ], \n    \"Kathie\": [\n        \"NNP\"\n    ], \n    \"maltreatment\": [\n        \"NN\"\n    ], \n    \"helter-skelter\": [\n        \"JJ\"\n    ], \n    \"Systemic\": [\n        \"JJ\"\n    ], \n    \"Personages\": [\n        \"NNS\"\n    ], \n    \"softness\": [\n        \"NN\"\n    ], \n    \"LABORATORIES\": [\n        \"NNP\"\n    ], \n    \"Crip\": [\n        \"NNP\"\n    ], \n    \"terminology\": [\n        \"NN\"\n    ], \n    \"Cris\": [\n        \"NNP\"\n    ], \n    \"F-16s\": [\n        \"NNPS\"\n    ], \n    \"sketch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Push-ups\": [\n        \"NNS\"\n    ], \n    \"Dancing\": [\n        \"NN\"\n    ], \n    \"Pattern\": [\n        \"NN\"\n    ], \n    \"still-healthy\": [\n        \"JJ\"\n    ], \n    \"Myself\": [\n        \"NNP\"\n    ], \n    \"yolk\": [\n        \"NN\"\n    ], \n    \"lips\": [\n        \"NNS\"\n    ], \n    \"towards\": [\n        \"IN\"\n    ], \n    \"plumbers\": [\n        \"NNS\"\n    ], \n    \"Laos\": [\n        \"NNP\"\n    ], \n    \"callousness\": [\n        \"NN\"\n    ], \n    \"Futures-related\": [\n        \"JJ\"\n    ], \n    \"Manifatture\": [\n        \"NNP\"\n    ], \n    \"MorningStar\": [\n        \"NNP\"\n    ], \n    \"dilapidated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"manufacturing-sector\": [\n        \"NN\"\n    ], \n    \"Preparations\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Aquacutie\": [\n        \"NNP\"\n    ], \n    \"competitions\": [\n        \"NNS\"\n    ], \n    \"intramuscularly\": [\n        \"RB\"\n    ], \n    \"Davidson\": [\n        \"NNP\"\n    ], \n    \"Sainted\": [\n        \"NNP\"\n    ], \n    \"Southport\": [\n        \"NNP\"\n    ], \n    \"Protestant\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Parliamentarians\": [\n        \"NNP\"\n    ], \n    \"benefactor\": [\n        \"NN\"\n    ], \n    \"undergone\": [\n        \"VBN\"\n    ], \n    \"Biologics\": [\n        \"NNP\"\n    ], \n    \"quota\": [\n        \"NN\"\n    ], \n    \"multivalent\": [\n        \"JJ\"\n    ], \n    \"Biologico\": [\n        \"NNP\"\n    ], \n    \"assists\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"viewpoints\": [\n        \"NNS\"\n    ], \n    \"infusion-therapy\": [\n        \"JJ\"\n    ], \n    \"repressions\": [\n        \"NNS\"\n    ], \n    \"Strategies\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Swallow\": [\n        \"NNP\"\n    ], \n    \"offside\": [\n        \"NN\"\n    ], \n    \"real-estate-investment\": [\n        \"NN\"\n    ], \n    \"BUYERS\": [\n        \"NNS\"\n    ], \n    \"Taylor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"anti-Sony\": [\n        \"JJ\"\n    ], \n    \"lyophilized\": [\n        \"VBN\"\n    ], \n    \"mentalities\": [\n        \"NNS\"\n    ], \n    \"Scam\": [\n        \"NN\"\n    ], \n    \"silence\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"shavers\": [\n        \"NNS\"\n    ], \n    \"Thi\": [\n        \"NNP\"\n    ], \n    \"not-so-new\": [\n        \"JJ\"\n    ], \n    \"unimpaired\": [\n        \"JJ\"\n    ], \n    \"BATTLE\": [\n        \"NN\"\n    ], \n    \"presupposes\": [\n        \"VBZ\"\n    ], \n    \"Hennessey\": [\n        \"NNP\"\n    ], \n    \"reworked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Evangelicalism\": [\n        \"NNP\"\n    ], \n    \"Norman\": [\n        \"NNP\"\n    ], \n    \"HISPANIC\": [\n        \"JJ\"\n    ], \n    \"placing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kitty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"visas\": [\n        \"NNS\"\n    ], \n    \"Koch\": [\n        \"NNP\"\n    ], \n    \"unlashed\": [\n        \"VBD\"\n    ], \n    \"Benackova\": [\n        \"NNP\"\n    ], \n    \"Kitti\": [\n        \"NNP\"\n    ], \n    \"opposed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"uncomplaining\": [\n        \"JJ\"\n    ], \n    \"withholding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"olestra\": [\n        \"NN\"\n    ], \n    \"Secom\": [\n        \"NNP\"\n    ], \n    \"healthful\": [\n        \"JJ\"\n    ], \n    \"Perpetual\": [\n        \"JJ\"\n    ], \n    \"Dakotas\": [\n        \"NNPS\"\n    ], \n    \"tragically\": [\n        \"RB\"\n    ], \n    \"Howe\": [\n        \"NNP\"\n    ], \n    \"investment-banking\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"liberalizing\": [\n        \"VBG\"\n    ], \n    \"Howl\": [\n        \"NNP\"\n    ], \n    \"livability\": [\n        \"NN\"\n    ], \n    \"Rafsanjani\": [\n        \"NNP\"\n    ], \n    \"viciously\": [\n        \"RB\"\n    ], \n    \"limpid\": [\n        \"JJ\"\n    ], \n    \"Okayama\": [\n        \"NNP\"\n    ], \n    \"purloined\": [\n        \"VBN\"\n    ], \n    \"chomp\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"familar\": [\n        \"JJ\"\n    ], \n    \"Newspeak\": [\n        \"NNP\"\n    ], \n    \"graham-flour-based\": [\n        \"JJ\"\n    ], \n    \"MacroChem\": [\n        \"NNP\"\n    ], \n    \"munis\": [\n        \"NNS\"\n    ], \n    \"On-to-Spokane\": [\n        \"NNP\"\n    ], \n    \"Marella\": [\n        \"NNP\"\n    ], \n    \"similar\": [\n        \"JJ\"\n    ], \n    \"CBS-K\": [\n        \"NNP\"\n    ], \n    \"hesitantly\": [\n        \"RB\"\n    ], \n    \"ordered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Lauder\": [\n        \"NNP\"\n    ], \n    \"metalsmiths\": [\n        \"NNS\"\n    ], \n    \"interventions\": [\n        \"NNS\"\n    ], \n    \"arm-levitation\": [\n        \"NN\"\n    ], \n    \"criminal-abortion\": [\n        \"JJ\"\n    ], \n    \"Edward\": [\n        \"NNP\"\n    ], \n    \"buckle-on\": [\n        \"JJ\"\n    ], \n    \"consoled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"aeronautical\": [\n        \"JJ\"\n    ], \n    \"dashed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"fears\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"application\": [\n        \"NN\"\n    ], \n    \"Wash.\": [\n        \"NNP\"\n    ], \n    \"department\": [\n        \"NN\"\n    ], \n    \"aprons\": [\n        \"NNS\"\n    ], \n    \"feare\": [\n        \"NN\"\n    ], \n    \"dashes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Benninger\": [\n        \"NNP\"\n    ], \n    \"smiles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Exterminatin\": [\n        \"VBG\"\n    ], \n    \"securitiess\": [\n        \"NN\"\n    ], \n    \"Stanford\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sentry\": [\n        \"NNP\"\n    ], \n    \"Cott\": [\n        \"NNP\"\n    ], \n    \"Sizwe\": [\n        \"NNP\"\n    ], \n    \"hot-slough\": [\n        \"JJ\"\n    ], \n    \"assayed\": [\n        \"VBN\"\n    ], \n    \"Sentra\": [\n        \"NNP\"\n    ], \n    \"afterglow\": [\n        \"NN\"\n    ], \n    \"graphically\": [\n        \"RB\"\n    ], \n    \"smiled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"banalization\": [\n        \"NN\"\n    ], \n    \"Dauchy\": [\n        \"NNP\"\n    ], \n    \"approving\": [\n        \"VBG\"\n    ], \n    \"Roundtable\": [\n        \"NNP\"\n    ], \n    \"aesthetically\": [\n        \"RB\"\n    ], \n    \"Baucus\": [\n        \"NNP\"\n    ], \n    \"correlated\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"syntactical\": [\n        \"JJ\"\n    ], \n    \"resolving\": [\n        \"VBG\"\n    ], \n    \"Perches\": [\n        \"NNP\"\n    ], \n    \"Corrette\": [\n        \"NNP\"\n    ], \n    \"England-born\": [\n        \"NNP|VBN\"\n    ], \n    \"bribe\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Perched\": [\n        \"VBN\"\n    ], \n    \"Soviets\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"infringing\": [\n        \"VBG\"\n    ], \n    \"Apparently\": [\n        \"RB\"\n    ], \n    \"Levinger\": [\n        \"NNP\"\n    ], \n    \"current-carrying\": [\n        \"JJ\"\n    ], \n    \"Bengal\": [\n        \"NNP\"\n    ], \n    \"No-Smoking\": [\n        \"NNP\"\n    ], \n    \"lob-scuse\": [\n        \"NN\"\n    ], \n    \"FALL\": [\n        \"NN\"\n    ], \n    \"Mortality\": [\n        \"NN\"\n    ], \n    \"compact\": [\n        \"JJ\", \n        \"NN\", \n        \"NN|JJ\"\n    ], \n    \"GABLE\": [\n        \"NNP\"\n    ], \n    \"Parent\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"insistent\": [\n        \"JJ\"\n    ], \n    \"Nod\": [\n        \"NNP\"\n    ], \n    \"Nob\": [\n        \"NNP\"\n    ], \n    \"uninformative\": [\n        \"JJ\"\n    ], \n    \"Father-God\": [\n        \"NNP\"\n    ], \n    \"anti-communist\": [\n        \"JJ\"\n    ], \n    \"Not\": [\n        \"RB\", \n        \"NNP\", \n        \"DT\"\n    ], \n    \"Nov\": [\n        \"NNP\"\n    ], \n    \"Now\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Nor\": [\n        \"CC\"\n    ], \n    \"unabridged\": [\n        \"JJ\"\n    ], \n    \"rebounding\": [\n        \"VBG\"\n    ], \n    \"Celebrity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"assuming\": [\n        \"VBG\"\n    ], \n    \"acreage\": [\n        \"NN\"\n    ], \n    \"Donut\": [\n        \"NNP\"\n    ], \n    \"Elbow\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"yourselves\": [\n        \"PRP\"\n    ], \n    \"Curb\": [\n        \"VB\"\n    ], \n    \"No.\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Organification\": [\n        \"NN\"\n    ], \n    \"meticulously\": [\n        \"RB\"\n    ], \n    \"browny-haired\": [\n        \"JJ\"\n    ], \n    \"booze\": [\n        \"NN\"\n    ], \n    \"Mogul\": [\n        \"NNP\"\n    ], \n    \"Yiddish\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Antibody\": [\n        \"NN\"\n    ], \n    \"sedentary\": [\n        \"JJ\"\n    ], \n    \"enforce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Antietam\": [\n        \"NNP\"\n    ], \n    \"FHLBB\": [\n        \"NNP\"\n    ], \n    \"overfunded\": [\n        \"VBN\"\n    ], \n    \"jump\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"notwithstanding\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"waitress\": [\n        \"NN\"\n    ], \n    \"Gris\": [\n        \"NNP\"\n    ], \n    \"Ramseier\": [\n        \"NNP\"\n    ], \n    \"Milanoff\": [\n        \"NNP\"\n    ], \n    \"Fahey\": [\n        \"NNP\"\n    ], \n    \"anti-party\": [\n        \"JJ\"\n    ], \n    \"Kutney\": [\n        \"NNP\"\n    ], \n    \"Isacsson\": [\n        \"NNP\"\n    ], \n    \"conning\": [\n        \"VBG\"\n    ], \n    \"Grid\": [\n        \"NNP\"\n    ], \n    \"Survived\": [\n        \"VBD\"\n    ], \n    \"Hibler\": [\n        \"NNP\"\n    ], \n    \"houseful\": [\n        \"NN\"\n    ], \n    \"upsetting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"McNealy\": [\n        \"NNP\"\n    ], \n    \"fifteenth\": [\n        \"JJ\"\n    ], \n    \"Hershel\": [\n        \"NNP\"\n    ], \n    \"Conducted\": [\n        \"VBN\"\n    ], \n    \"just-rejuvenated\": [\n        \"JJ\"\n    ], \n    \"Skipjack\": [\n        \"NNP\"\n    ], \n    \"Palace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tequila\": [\n        \"NNP\"\n    ], \n    \"Back\": [\n        \"RB\", \n        \"NN\", \n        \"RP\", \n        \"NNP\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Bach\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ever-anxious\": [\n        \"JJ\"\n    ], \n    \"avaricious\": [\n        \"JJ\"\n    ], \n    \"automotive-product\": [\n        \"NN\"\n    ], \n    \"Kermit\": [\n        \"NNP\"\n    ], \n    \"Organizational\": [\n        \"JJ\"\n    ], \n    \"strong-arm\": [\n        \"JJ\"\n    ], \n    \"patents\": [\n        \"NNS\"\n    ], \n    \"Temperatures\": [\n        \"NNS\"\n    ], \n    \"hilltops\": [\n        \"NNS\"\n    ], \n    \"Oilers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"foresee\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Krishnamurthy\": [\n        \"NNP\"\n    ], \n    \"adroitness\": [\n        \"NN\"\n    ], \n    \"Assistance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"manage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pankyo\": [\n        \"NNP\"\n    ], \n    \"all-white\": [\n        \"JJ\"\n    ], \n    \"Loyalist\": [\n        \"JJ\"\n    ], \n    \"Rowland-Morin\": [\n        \"NNP\"\n    ], \n    \"Lanza\": [\n        \"NNP\"\n    ], \n    \"biophysical\": [\n        \"JJ\"\n    ], \n    \"semi-sterile\": [\n        \"JJ\"\n    ], \n    \"Rich-affiliated\": [\n        \"JJ\"\n    ], \n    \"Discontinue\": [\n        \"VB\"\n    ], \n    \"trivializing\": [\n        \"VBG\"\n    ], \n    \"camera\": [\n        \"NN\"\n    ], \n    \"Averae\": [\n        \"NNP\"\n    ], \n    \"Png\": [\n        \"NNP\"\n    ], \n    \"Markus\": [\n        \"NNP\"\n    ], \n    \"salvages\": [\n        \"VBZ\"\n    ], \n    \"Kumagai-Gumi\": [\n        \"NNP\"\n    ], \n    \"Oakar\": [\n        \"NNP\"\n    ], \n    \"Basking\": [\n        \"NNP\"\n    ], \n    \"fifteenth-century\": [\n        \"JJ\"\n    ], \n    \"salvaged\": [\n        \"VBN\"\n    ], \n    \"boards\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"parachute\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"techno-managerial\": [\n        \"JJ\"\n    ], \n    \"laendler\": [\n        \"JJ\"\n    ], \n    \"meek\": [\n        \"JJ\"\n    ], \n    \"computer-products\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"averaged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"subrogation\": [\n        \"NN\"\n    ], \n    \"test-prep\": [\n        \"JJ\"\n    ], \n    \"longhaul\": [\n        \"NN\"\n    ], \n    \"Generation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"VIII\": [\n        \"NNP\"\n    ], \n    \"servants\": [\n        \"NNS\"\n    ], \n    \"Caravan\": [\n        \"NNP\"\n    ], \n    \"meet\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"averages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"certainty\": [\n        \"NN\"\n    ], \n    \"Israeli\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"links\": [\n        \"NNS\", \n        \"VBZ\", \n        \"NN\"\n    ], \n    \"money-losing\": [\n        \"JJ\"\n    ], \n    \"radioing\": [\n        \"VBG\"\n    ], \n    \"chinless\": [\n        \"JJ\"\n    ], \n    \"week-end\": [\n        \"NN\"\n    ], \n    \"synchronism\": [\n        \"NN\"\n    ], \n    \"Politics-ridden\": [\n        \"JJ\"\n    ], \n    \"pulling\": [\n        \"VBG\"\n    ], \n    \"intuitions\": [\n        \"NNS\"\n    ], \n    \"peelback\": [\n        \"JJ\"\n    ], \n    \"cave-men\": [\n        \"NNS\"\n    ], \n    \"Wakabayashi\": [\n        \"NNP\"\n    ], \n    \"embodiment\": [\n        \"NN\"\n    ], \n    \"Deeper\": [\n        \"JJR\"\n    ], \n    \"cratering\": [\n        \"VBG\"\n    ], \n    \"well-served\": [\n        \"JJ\"\n    ], \n    \"waterproof\": [\n        \"NN\"\n    ], \n    \"Beast\": [\n        \"NNP\"\n    ], \n    \"Passaic-Clifton\": [\n        \"NNP\"\n    ], \n    \"sentiments\": [\n        \"NNS\"\n    ], \n    \"Reservation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"instinctively\": [\n        \"RB\"\n    ], \n    \"listens\": [\n        \"VBZ\"\n    ], \n    \"MiniScribe\": [\n        \"NNP\"\n    ], \n    \"filament\": [\n        \"NN\"\n    ], \n    \"embellished\": [\n        \"VBN\"\n    ], \n    \"Baubles\": [\n        \"NNPS\"\n    ], \n    \"ultrasonically\": [\n        \"RB\"\n    ], \n    \"outdid\": [\n        \"VBD\"\n    ], \n    \"Heilbron\": [\n        \"NNP\"\n    ], \n    \"Mrs\": [\n        \"NNP\"\n    ], \n    \"Roman\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"bibliographical\": [\n        \"JJ\"\n    ], \n    \"Allou\": [\n        \"NNP\"\n    ], \n    \"Allow\": [\n        \"VB\"\n    ], \n    \"Alloy\": [\n        \"NN\"\n    ], \n    \"Wheeling\": [\n        \"NNP\"\n    ], \n    \"Makin\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"scoop\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Guard\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"encyclopedia\": [\n        \"NN\"\n    ], \n    \"desensitized\": [\n        \"VBN\"\n    ], \n    \"encyclopedic\": [\n        \"JJ\"\n    ], \n    \"sambuca\": [\n        \"NN\"\n    ], \n    \"estate-freeze\": [\n        \"JJ\"\n    ], \n    \"Skelly\": [\n        \"NNP\"\n    ], \n    \"Baltimorean\": [\n        \"NNP\"\n    ], \n    \"Bapepam\": [\n        \"NNP\"\n    ], \n    \"employee-health\": [\n        \"NN\"\n    ], \n    \"carnivores\": [\n        \"NNS\"\n    ], \n    \"interceptor\": [\n        \"NN\"\n    ], \n    \"Favre\": [\n        \"NNP\"\n    ], \n    \"box-office\": [\n        \"NN\"\n    ], \n    \"RAF\": [\n        \"NNP\"\n    ], \n    \"Multiple\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"equanimity\": [\n        \"NN\"\n    ], \n    \"EASTERN\": [\n        \"NNP\"\n    ], \n    \"Telegraphers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"subroutines\": [\n        \"NNS\"\n    ], \n    \"Baxley\": [\n        \"NNP\"\n    ], \n    \"gymnasts\": [\n        \"NNS\"\n    ], \n    \"Multiply\": [\n        \"VB\"\n    ], \n    \"RAX\": [\n        \"NNP\"\n    ], \n    \"overflights\": [\n        \"NNS\"\n    ], \n    \"popularly\": [\n        \"RB\"\n    ], \n    \"wells\": [\n        \"NNS\"\n    ], \n    \"Loser\": [\n        \"JJ\"\n    ], \n    \"Loses\": [\n        \"VBZ\"\n    ], \n    \"J.E.\": [\n        \"NNP\"\n    ], \n    \"Lewco\": [\n        \"NNP\"\n    ], \n    \"sinfulness\": [\n        \"NN\"\n    ], \n    \"Losec\": [\n        \"NNP\"\n    ], \n    \"unnaturalness\": [\n        \"NN\"\n    ], \n    \"Mendelsohn\": [\n        \"NNP\"\n    ], \n    \"university\": [\n        \"NN\"\n    ], \n    \"Montpelier\": [\n        \"NNP\"\n    ], \n    \"Bellman\": [\n        \"NNP\"\n    ], \n    \"Telemunchen\": [\n        \"NNP\"\n    ], \n    \"tax-based\": [\n        \"JJ\"\n    ], \n    \"slide\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"firings\": [\n        \"NNS\"\n    ], \n    \"Pesce\": [\n        \"NNP\"\n    ], \n    \"drug-delivery\": [\n        \"JJ\"\n    ], \n    \"still-ravaged\": [\n        \"JJ\"\n    ], \n    \"Dream-Sweetmite\": [\n        \"NNP\"\n    ], \n    \"six-minute\": [\n        \"JJ\"\n    ], \n    \"Statistics\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"attachments\": [\n        \"NNS\"\n    ], \n    \"Borges\": [\n        \"NNP\"\n    ], \n    \"Bertrand\": [\n        \"NNP\"\n    ], \n    \"witha\": [\n        \"NN\"\n    ], \n    \"OCC\": [\n        \"NNP\"\n    ], \n    \"constitute\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"buccolic\": [\n        \"JJ\"\n    ], \n    \"psychopomp\": [\n        \"NN\"\n    ], \n    \"Oils\": [\n        \"NNS\"\n    ], \n    \"OCR\": [\n        \"NNP\"\n    ], \n    \"special\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"littered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"special-projects\": [\n        \"JJ\"\n    ], \n    \"Parioli\": [\n        \"NNP\"\n    ], \n    \"vestibule\": [\n        \"NN\"\n    ], \n    \"Fermate\": [\n        \"NNP\"\n    ], \n    \"obsessive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Anderlini\": [\n        \"NNP\"\n    ], \n    \"Crosbie\": [\n        \"NNP\"\n    ], \n    \"hopscotch\": [\n        \"NN\"\n    ], \n    \"full-season\": [\n        \"JJ\"\n    ], \n    \"Gromov\": [\n        \"NNP\"\n    ], \n    \"darkly\": [\n        \"RB\"\n    ], \n    \"non-Cocom\": [\n        \"JJ\"\n    ], \n    \"Daiwa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Relentlessly\": [\n        \"RB\"\n    ], \n    \"improvisational\": [\n        \"JJ\"\n    ], \n    \"Sentor\": [\n        \"NNP\"\n    ], \n    \"Meurons\": [\n        \"NNS\"\n    ], \n    \"delegated\": [\n        \"VBN\"\n    ], \n    \"tulle\": [\n        \"NN\"\n    ], \n    \"Drawing\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"resumed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bombay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cell-free\": [\n        \"JJ\"\n    ], \n    \"Owen\": [\n        \"NNP\"\n    ], \n    \"near-recession\": [\n        \"NN\"\n    ], \n    \"timer\": [\n        \"NN\"\n    ], \n    \"times\": [\n        \"NNS\", \n        \"VBZ\", \n        \"CC\", \n        \"RB\"\n    ], \n    \"Telxon\": [\n        \"NNP\"\n    ], \n    \"Boesky-greed-is-good\": [\n        \"JJ\"\n    ], \n    \"isotropic\": [\n        \"JJ\"\n    ], \n    \"cash-hungry\": [\n        \"JJ\"\n    ], \n    \"resumes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"timed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Lustgarten\": [\n        \"NNP\"\n    ], \n    \"reassessment\": [\n        \"NN\"\n    ], \n    \"Lanier\": [\n        \"NNP\"\n    ], \n    \"Iaciofano\": [\n        \"NNP\"\n    ], \n    \"Merry-go-round\": [\n        \"NNP\"\n    ], \n    \"confuse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cramp\": [\n        \"NN\"\n    ], \n    \"unsupported\": [\n        \"JJ\"\n    ], \n    \"French-Canadians\": [\n        \"NNPS\"\n    ], \n    \"bitch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"man-in-the-moon\": [\n        \"JJ\"\n    ], \n    \"Pioneering\": [\n        \"NNP\"\n    ], \n    \"Shann\": [\n        \"NNP\"\n    ], \n    \"Newtonian\": [\n        \"JJ\"\n    ], \n    \"Contracts\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Fran\": [\n        \"NNP\"\n    ], \n    \"Tshombe\": [\n        \"NNP\"\n    ], \n    \"wrapper\": [\n        \"NN\"\n    ], \n    \"Dunker\": [\n        \"NNP\"\n    ], \n    \"Pilko\": [\n        \"NNP\"\n    ], \n    \"Dunkel\": [\n        \"NNP\"\n    ], \n    \"minisupercomputers\": [\n        \"NNS\"\n    ], \n    \"goings-on\": [\n        \"NNS\"\n    ], \n    \"Weill\\\\/Bertolt\": [\n        \"NNP\"\n    ], \n    \"hard-nosed\": [\n        \"JJ\"\n    ], \n    \"Fray\": [\n        \"NN\"\n    ], \n    \"land-disposal\": [\n        \"NN\"\n    ], \n    \"weepers\": [\n        \"NNS\"\n    ], \n    \"Volney\": [\n        \"NNP\"\n    ], \n    \"crackle\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"innovate\": [\n        \"VB\"\n    ], \n    \"surfing\": [\n        \"NN\"\n    ], \n    \"secco\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"objectification\": [\n        \"NN\"\n    ], \n    \"newlywed\": [\n        \"NN\"\n    ], \n    \"RESEARCHERS\": [\n        \"NNS\"\n    ], \n    \"Geary\": [\n        \"NNP\"\n    ], \n    \"catered\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"bloodiest\": [\n        \"JJS\"\n    ], \n    \"bloat\": [\n        \"NN\"\n    ], \n    \"conscious\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Malcom\": [\n        \"NNP\"\n    ], \n    \"sidetracked\": [\n        \"VBD\"\n    ], \n    \"Macmillan\": [\n        \"NNP\"\n    ], \n    \"caterer\": [\n        \"NN\"\n    ], \n    \"insignificance\": [\n        \"NN\"\n    ], \n    \"Asti\": [\n        \"NNP\"\n    ], \n    \"enforced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Asta\": [\n        \"NNP\"\n    ], \n    \"Flying\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"enforcer\": [\n        \"NN\"\n    ], \n    \"enforces\": [\n        \"VBZ\"\n    ], \n    \"Interview\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"EVEREX\": [\n        \"NNP\"\n    ], \n    \"metaphysics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Falstaff\": [\n        \"NNP\"\n    ], \n    \"Administrator\": [\n        \"NNP\"\n    ], \n    \"Solemnly\": [\n        \"RB\"\n    ], \n    \"Parcel\": [\n        \"NNP\"\n    ], \n    \"rosier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"thunders\": [\n        \"VBZ\"\n    ], \n    \"Bowery\": [\n        \"NNP\"\n    ], \n    \"pushups\": [\n        \"NNS\"\n    ], \n    \"battles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Schuman\": [\n        \"NNP\"\n    ], \n    \"grounding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"battled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nokomis\": [\n        \"NNP\"\n    ], \n    \"Morgenthau\": [\n        \"NNP\"\n    ], \n    \"mountaintop\": [\n        \"NN\"\n    ], \n    \"polka-dotted\": [\n        \"JJ\"\n    ], \n    \"blades\": [\n        \"NNS\"\n    ], \n    \"venereal\": [\n        \"JJ\"\n    ], \n    \"swollen\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"acupuncturist\": [\n        \"NN\"\n    ], \n    \"regi\": [\n        \"FW\"\n    ], \n    \"development-aid\": [\n        \"NN\"\n    ], \n    \"Geographic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Countin\": [\n        \"VBG\"\n    ], \n    \"quick-kill\": [\n        \"JJ\"\n    ], \n    \"Rescue\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Exceed\": [\n        \"VBD\"\n    ], \n    \"free-marketers\": [\n        \"NNS\"\n    ], \n    \"subtracted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Keiyo\": [\n        \"NNP\"\n    ], \n    \"Mold\": [\n        \"NN\"\n    ], \n    \"repeated\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Fellow\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Rusting\": [\n        \"VBG\"\n    ], \n    \"Lavallade\": [\n        \"NNP\"\n    ], \n    \"skunk\": [\n        \"NN\"\n    ], \n    \"stationing\": [\n        \"VBG\"\n    ], \n    \"Lehn\": [\n        \"NNP\"\n    ], \n    \"sisters-in-law\": [\n        \"NNS\"\n    ], \n    \"Anthea\": [\n        \"NNP\"\n    ], \n    \"loadin\": [\n        \"VBG\"\n    ], \n    \"seclude\": [\n        \"VB\"\n    ], \n    \"Anthem\": [\n        \"NNP\"\n    ], \n    \"Belzec\": [\n        \"NNP\"\n    ], \n    \"halting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Non-residential\": [\n        \"JJ\"\n    ], \n    \"beatific\": [\n        \"JJ\"\n    ], \n    \"telling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"homeshopping\": [\n        \"NN\"\n    ], \n    \"Holgerson\": [\n        \"NNP\"\n    ], \n    \"Garvier\": [\n        \"NNP\"\n    ], \n    \"unfinished\": [\n        \"JJ\"\n    ], \n    \"sheriff\": [\n        \"NN\"\n    ], \n    \"nitrous\": [\n        \"JJ\"\n    ], \n    \"Waterways\": [\n        \"NNS\"\n    ], \n    \"brighten\": [\n        \"VB\"\n    ], \n    \"Pro-Choice\": [\n        \"JJ\"\n    ], \n    \"won\": [\n        \"VBD\", \n        \"NN\", \n        \"NNS\", \n        \"VBN\"\n    ], \n    \"Newtown\": [\n        \"NNP\"\n    ], \n    \"cameos\": [\n        \"NNS\"\n    ], \n    \"inherited\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"embody\": [\n        \"VBP\"\n    ], \n    \"seasonality\": [\n        \"NN\"\n    ], \n    \"bottom-of-the-barrel\": [\n        \"JJ\"\n    ], \n    \"Lumia\": [\n        \"NNP\"\n    ], \n    \"kinked\": [\n        \"JJ\"\n    ], \n    \"Marquis\": [\n        \"NNP\"\n    ], \n    \"indentations\": [\n        \"NNS\"\n    ], \n    \"alabaster\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"Holtzman\": [\n        \"NNP\"\n    ], \n    \"maritime\": [\n        \"JJ\"\n    ], \n    \"vehicles\": [\n        \"NNS\"\n    ], \n    \"Rosner\": [\n        \"NNP\"\n    ], \n    \"scintillating\": [\n        \"JJ\"\n    ], \n    \"siphons\": [\n        \"NNS\"\n    ], \n    \"Guizot\": [\n        \"NNP\"\n    ], \n    \"Fitness\": [\n        \"NNP\"\n    ], \n    \"post-Deng\": [\n        \"JJ\"\n    ], \n    \"Savelyeva\": [\n        \"NNP\"\n    ], \n    \"dwellings\": [\n        \"NNS\"\n    ], \n    \"Rezsoe\": [\n        \"NNP\"\n    ], \n    \"professors\": [\n        \"NNS\"\n    ], \n    \"Forget\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"tobacco\": [\n        \"NN\"\n    ], \n    \"CANADIAN\": [\n        \"JJ\"\n    ], \n    \"imperious\": [\n        \"JJ\"\n    ], \n    \"French-speaking\": [\n        \"JJ\"\n    ], \n    \"yearn\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"coaxed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Abbe-Scotch\": [\n        \"NNP\"\n    ], \n    \"Darlington\": [\n        \"NNP\"\n    ], \n    \"Austrian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Internatonal\": [\n        \"NNP\"\n    ], \n    \"stock-repurchase\": [\n        \"JJ\"\n    ], \n    \"Senk\": [\n        \"NNP\"\n    ], \n    \"Rainy\": [\n        \"NNP\"\n    ], \n    \"multiplying\": [\n        \"VBG\"\n    ], \n    \"Investing\": [\n        \"VBG\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Arland\": [\n        \"NNP\"\n    ], \n    \"pro-repeal\": [\n        \"JJ\"\n    ], \n    \"canine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Stolzenbach\": [\n        \"NNP\"\n    ], \n    \"hotel\\\\/entertainment\": [\n        \"NN\"\n    ], \n    \"Cadbury-Schweppes\": [\n        \"NNP\"\n    ], \n    \"rifts\": [\n        \"NNS\"\n    ], \n    \"Mariners\": [\n        \"NNPS\"\n    ], \n    \"intercorporate\": [\n        \"JJ\"\n    ], \n    \"Raine\": [\n        \"NNP\"\n    ], \n    \"conductivity\": [\n        \"NN\"\n    ], \n    \"Nuttle\": [\n        \"NNP\"\n    ], \n    \"washable\": [\n        \"JJ\"\n    ], \n    \"double-entendre\": [\n        \"NN\"\n    ], \n    \"N.H.\": [\n        \"NNP\"\n    ], \n    \"illusory\": [\n        \"JJ\"\n    ], \n    \"southward\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Normura\": [\n        \"NNP\"\n    ], \n    \"dialectically\": [\n        \"RB\"\n    ], \n    \"Liptak\": [\n        \"NNP\"\n    ], \n    \"McIntyre\": [\n        \"NNP\"\n    ], \n    \"diethylaminoethyl\": [\n        \"NN\"\n    ], \n    \"Sen.\": [\n        \"NNP\"\n    ], \n    \"re-oriented\": [\n        \"VBN\"\n    ], \n    \"keg\": [\n        \"NN\"\n    ], \n    \"hurrying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ovals\": [\n        \"NNS\"\n    ], \n    \"indiscriminate\": [\n        \"JJ\"\n    ], \n    \"Hooray\": [\n        \"UH\"\n    ], \n    \"kicking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Projecting\": [\n        \"VBG\"\n    ], \n    \"Benanav\": [\n        \"NNP\"\n    ], \n    \"key\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"reprobating\": [\n        \"VBG\"\n    ], \n    \"flying-mount\": [\n        \"NN\"\n    ], \n    \"Muscovite\": [\n        \"NNP\"\n    ], \n    \"D-night\": [\n        \"NN\"\n    ], \n    \"questionaire\": [\n        \"NN\"\n    ], \n    \"limits\": [\n        \"NNS\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"writhed\": [\n        \"VBD\"\n    ], \n    \"outrank\": [\n        \"VBP\"\n    ], \n    \"historichomes\": [\n        \"NNS\"\n    ], \n    \"computer-distributed\": [\n        \"JJ\"\n    ], \n    \"one-size-fits-all\": [\n        \"JJ\"\n    ], \n    \"strains\": [\n        \"NNS\"\n    ], \n    \"heavenward\": [\n        \"JJ\"\n    ], \n    \"Loftus\": [\n        \"NNP\"\n    ], \n    \"red-flag\": [\n        \"VB\"\n    ], \n    \"self-assertion\": [\n        \"NN\"\n    ], \n    \"diplomats\": [\n        \"NNS\"\n    ], \n    \"Integraph\": [\n        \"NNP\"\n    ], \n    \"paranormal\": [\n        \"JJ\"\n    ], \n    \"presaging\": [\n        \"VBG\"\n    ], \n    \"overarming\": [\n        \"VBG\"\n    ], \n    \"accomplishing\": [\n        \"VBG\"\n    ], \n    \"TransTechnology\": [\n        \"NNP\"\n    ], \n    \"ANTHEM\": [\n        \"NNP\"\n    ], \n    \"unaffordable\": [\n        \"JJ\"\n    ], \n    \"aircraft-electronics\": [\n        \"NN\"\n    ], \n    \"glommed\": [\n        \"VBD\"\n    ], \n    \"immense\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bolivian\": [\n        \"JJ\"\n    ], \n    \"Spook\": [\n        \"VBP\"\n    ], \n    \"troopers\": [\n        \"NNS\"\n    ], \n    \"controlled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"retrospective\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Steinbach\": [\n        \"NNP\"\n    ], \n    \"harborside\": [\n        \"NN\"\n    ], \n    \"replenishment\": [\n        \"NN\"\n    ], \n    \"controller\": [\n        \"NN\"\n    ], \n    \"abortions\": [\n        \"NNS\"\n    ], \n    \"G.N.\": [\n        \"NNP\"\n    ], \n    \"unamusing\": [\n        \"JJ\"\n    ], \n    \"Masnadieri\": [\n        \"NNP\"\n    ], \n    \"Falwell\": [\n        \"NNP\"\n    ], \n    \"Consequently\": [\n        \"RB\"\n    ], \n    \"Hanao\": [\n        \"NNP\"\n    ], \n    \"debtor\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gardening\": [\n        \"NNP\"\n    ], \n    \"monohull\": [\n        \"NN\"\n    ], \n    \"energy-industry\": [\n        \"NN\"\n    ], \n    \"Sture\": [\n        \"NNP\"\n    ], \n    \"Atlantans\": [\n        \"NNPS\"\n    ], \n    \"Angotti\": [\n        \"NNP\"\n    ], \n    \"dynamism\": [\n        \"NN\"\n    ], \n    \"Federal-Tiger\": [\n        \"NNP\"\n    ], \n    \"Kneeling\": [\n        \"VBG\"\n    ], \n    \"piloting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Stockdale\": [\n        \"NNP\"\n    ], \n    \"comets\": [\n        \"NNS\"\n    ], \n    \"margin-calls\": [\n        \"NNS\"\n    ], \n    \"examines\": [\n        \"VBZ\"\n    ], \n    \"examiner\": [\n        \"NN\"\n    ], \n    \"modestly\": [\n        \"RB\"\n    ], \n    \"Baccarat\": [\n        \"NNP\"\n    ], \n    \"prestidigitation\": [\n        \"NN\"\n    ], \n    \"surface\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fraas\": [\n        \"NNP\"\n    ], \n    \"examined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pretty\": [\n        \"RB\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"cometh\": [\n        \"VBZ\"\n    ], \n    \"day-after-day\": [\n        \"JJ\"\n    ], \n    \"Songbag\": [\n        \"NNP\"\n    ], \n    \"bazaars\": [\n        \"NNS\"\n    ], \n    \"school-based\": [\n        \"JJ\"\n    ], \n    \"Skilton\": [\n        \"NNP\"\n    ], \n    \"Seoul-Moscow\": [\n        \"NNP\"\n    ], \n    \"computer-aided\": [\n        \"JJ\"\n    ], \n    \"Bangkok\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"harmonies\": [\n        \"NNS\"\n    ], \n    \"over-all\": [\n        \"JJ\"\n    ], \n    \"northwest\": [\n        \"RB\", \n        \"NN\", \n        \"JJS\", \n        \"JJ\"\n    ], \n    \"Arabist\": [\n        \"JJ\"\n    ], \n    \"Syse\": [\n        \"NNP\"\n    ], \n    \"glob-flakes\": [\n        \"NN\"\n    ], \n    \"Mockler\": [\n        \"NNP\"\n    ], \n    \"foreign-made\": [\n        \"JJ\"\n    ], \n    \"Types\": [\n        \"NNS\"\n    ], \n    \"dirhams\": [\n        \"NNS\"\n    ], \n    \"Torme\": [\n        \"NNP\"\n    ], \n    \"Buzzy\": [\n        \"NNP\"\n    ], \n    \"anti-viral\": [\n        \"JJ\"\n    ], \n    \"proscribe\": [\n        \"VBP\"\n    ], \n    \"Curie\": [\n        \"NNP\"\n    ], \n    \"stumped\": [\n        \"VBN\"\n    ], \n    \"Curia\": [\n        \"NNP\"\n    ], \n    \"Hallelujah\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"refashion\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"steals\": [\n        \"VBZ\"\n    ], \n    \"rift\": [\n        \"NN\"\n    ], \n    \"RB&H\": [\n        \"NNP\"\n    ], \n    \"Macaulay\": [\n        \"NNP\"\n    ], \n    \"EBPI\": [\n        \"NNP\"\n    ], \n    \"Evelyn\": [\n        \"NNP\"\n    ], \n    \"Mayflower\": [\n        \"NNP\"\n    ], \n    \"role-experiment\": [\n        \"NN\"\n    ], \n    \"Tide\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"insurmountable\": [\n        \"JJ\"\n    ], \n    \"Experiments\": [\n        \"NNS\"\n    ], \n    \"furriers\": [\n        \"NNS\"\n    ], \n    \"coronaries\": [\n        \"NNS\"\n    ], \n    \"headcount\": [\n        \"NN\"\n    ], \n    \"Exton\": [\n        \"NNP\"\n    ], \n    \"spy-chaser\": [\n        \"NN\"\n    ], \n    \"By-passing\": [\n        \"VBG\"\n    ], \n    \"increasingly\": [\n        \"RB\"\n    ], \n    \"spotchecks\": [\n        \"NNS\"\n    ], \n    \"lunation\": [\n        \"NN\"\n    ], \n    \"liked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Disappointments\": [\n        \"NNS\"\n    ], \n    \"distant\": [\n        \"JJ\"\n    ], \n    \"Atwell\": [\n        \"NNP\"\n    ], \n    \"VATICAN\": [\n        \"NNP\"\n    ], \n    \"dais\": [\n        \"NN\"\n    ], \n    \"Gaming\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bellevue\": [\n        \"NNP\"\n    ], \n    \"community-service\": [\n        \"NN\"\n    ], \n    \"O.K.\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"Spadafora\": [\n        \"NNP\"\n    ], \n    \"Zane\": [\n        \"NNP\"\n    ], \n    \"emblems\": [\n        \"NNS\"\n    ], \n    \"restaurateur\": [\n        \"NN\"\n    ], \n    \"Dorsey\": [\n        \"NNP\"\n    ], \n    \"Dorset\": [\n        \"NNP\"\n    ], \n    \"indignation\": [\n        \"NN\"\n    ], \n    \"precedents\": [\n        \"NNS\"\n    ], \n    \"disappearance\": [\n        \"NN\"\n    ], \n    \"propelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Herrmann\": [\n        \"NNP\"\n    ], \n    \"Zambon\": [\n        \"NNP\"\n    ], \n    \"propeller\": [\n        \"NN\"\n    ], \n    \"Amerman\": [\n        \"NNP\"\n    ], \n    \"intersection\": [\n        \"NN\"\n    ], \n    \"Total-Cie\": [\n        \"NNP\"\n    ], \n    \"Aug.\": [\n        \"NNP\"\n    ], \n    \"Manuscript\": [\n        \"NNP\"\n    ], \n    \"skips\": [\n        \"VBZ\"\n    ], \n    \"Merely\": [\n        \"RB\"\n    ], \n    \"Drawbacks\": [\n        \"NNS\"\n    ], \n    \"unthaw\": [\n        \"VB\"\n    ], \n    \"payments\": [\n        \"NNS\"\n    ], \n    \"conscripts\": [\n        \"NNS\"\n    ], \n    \"rote\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"climbers\": [\n        \"NNS\"\n    ], \n    \"revisits\": [\n        \"VBZ\"\n    ], \n    \"glare\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Avoid\": [\n        \"VB\"\n    ], \n    \"Colleagues\": [\n        \"NNS\"\n    ], \n    \"Leventhal\": [\n        \"NNP\"\n    ], \n    \"U.\": [\n        \"NNP\"\n    ], \n    \"Kong-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"FOES\": [\n        \"NNS\"\n    ], \n    \"moderates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Andras\": [\n        \"NNP\"\n    ], \n    \"Boyeki\": [\n        \"NNP\"\n    ], \n    \"objected\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Newell\": [\n        \"NNP\"\n    ], \n    \"Enrico\": [\n        \"NNP\"\n    ], \n    \"oppression\": [\n        \"NN\"\n    ], \n    \"cradle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"moderated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"inflammation\": [\n        \"NN\"\n    ], \n    \"open-door\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sweepstakes\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Strang\": [\n        \"NNP\"\n    ], \n    \"demonstrated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"limitations\": [\n        \"NNS\"\n    ], \n    \"to-and-fro\": [\n        \"RB\"\n    ], \n    \"forgit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Straight\": [\n        \"JJ\"\n    ], \n    \"Official\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"degree-granting\": [\n        \"JJ\"\n    ], \n    \"Up\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"Us\": [\n        \"NNP\", \n        \"NNPS\", \n        \"PRP\"\n    ], \n    \"Farmwife\": [\n        \"NNP\"\n    ], \n    \"Um\": [\n        \"UH\"\n    ], \n    \"berserk\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Cartier\": [\n        \"NNP\"\n    ], \n    \"F.R.\": [\n        \"NN\"\n    ], \n    \"Dream-Way\": [\n        \"NNP\"\n    ], \n    \"Euratom\": [\n        \"NNP\"\n    ], \n    \"unhinged\": [\n        \"VBN\"\n    ], \n    \"anchorage\": [\n        \"NN\"\n    ], \n    \"UP\": [\n        \"IN\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"US\": [\n        \"PRP\", \n        \"NNP\"\n    ], \n    \"quartet\": [\n        \"NN\"\n    ], \n    \"UN\": [\n        \"NNP\"\n    ], \n    \"UH\": [\n        \"NNP\"\n    ], \n    \"UK\": [\n        \"NNP\"\n    ], \n    \"unaided\": [\n        \"JJ\"\n    ], \n    \"interlobular\": [\n        \"JJ\"\n    ], \n    \"CB-radio-style\": [\n        \"JJ\"\n    ], \n    \"ninth-inning\": [\n        \"NN\"\n    ], \n    \"cocoa\": [\n        \"NN\"\n    ], \n    \"restatement\": [\n        \"NN\"\n    ], \n    \"pointless\": [\n        \"JJ\"\n    ], \n    \"cyclorama\": [\n        \"NN\"\n    ], \n    \"Vergessen\": [\n        \"FW\"\n    ], \n    \"additional\": [\n        \"JJ\"\n    ], \n    \"lagged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stripes\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Valois\": [\n        \"NNP\"\n    ], \n    \"Souza\": [\n        \"NNP\"\n    ], \n    \"SsangYong\": [\n        \"NNP\"\n    ], \n    \"Franchisee\": [\n        \"NN\"\n    ], \n    \"Fear-maddened\": [\n        \"JJ\"\n    ], \n    \"non-Aryan\": [\n        \"JJ\"\n    ], \n    \"Moss\": [\n        \"NNP\"\n    ], \n    \"Waldo\": [\n        \"NNP\"\n    ], \n    \"heart-disease\": [\n        \"NN\"\n    ], \n    \"gait\": [\n        \"NN\"\n    ], \n    \"squirmy\": [\n        \"JJ\"\n    ], \n    \"gain\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Rauschenbusch\": [\n        \"NNP\"\n    ], \n    \"October-December\": [\n        \"NNP\"\n    ], \n    \"MetroCorp\": [\n        \"NNP\"\n    ], \n    \"highest\": [\n        \"JJS\", \n        \"RB\", \n        \"RBS\"\n    ], \n    \"McGinley\": [\n        \"NNP\"\n    ], \n    \"Bordner\": [\n        \"NNP\"\n    ], \n    \"sinusoids\": [\n        \"NNS\"\n    ], \n    \"Kinnock\": [\n        \"NNP\"\n    ], \n    \"derelicts\": [\n        \"NNS\"\n    ], \n    \"Niarchos\": [\n        \"NNP\"\n    ], \n    \"Twist\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Einstein\": [\n        \"NNP\"\n    ], \n    \"cavalcades\": [\n        \"NNS\"\n    ], \n    \"Djurdjevic\": [\n        \"NNP\"\n    ], \n    \"Nawal\": [\n        \"NNP\"\n    ], \n    \"marketplace\": [\n        \"NN\"\n    ], \n    \"Invictus\": [\n        \"NNP\"\n    ], \n    \"kisses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"beats\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Doors\": [\n        \"NNS\"\n    ], \n    \"Spierer\": [\n        \"NNP\"\n    ], \n    \"education\": [\n        \"NN\"\n    ], \n    \"take-home\": [\n        \"JJ\"\n    ], \n    \"Lubyanka\": [\n        \"NNP\"\n    ], \n    \"K.C.\": [\n        \"NN\"\n    ], \n    \"Leftist\": [\n        \"JJ\"\n    ], \n    \"cosmopolitans\": [\n        \"NNS\"\n    ], \n    \"ingredients\": [\n        \"NNS\"\n    ], \n    \"RULES\": [\n        \"NNS\"\n    ], \n    \"chock-a-block\": [\n        \"JJ\"\n    ], \n    \"Elmgrove\": [\n        \"NNP\"\n    ], \n    \"proctors\": [\n        \"NNS\"\n    ], \n    \"Wells\": [\n        \"NNP\"\n    ], \n    \"presaged\": [\n        \"VBD\"\n    ], \n    \"Delivery\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Giles\": [\n        \"NNP\"\n    ], \n    \"Vane\": [\n        \"NNP\"\n    ], \n    \"popularizing\": [\n        \"VBG\"\n    ], \n    \"McCleod\": [\n        \"NNP\"\n    ], \n    \"blunders\": [\n        \"NNS\"\n    ], \n    \"stormbound\": [\n        \"JJ\"\n    ], \n    \"exothermic\": [\n        \"JJ\"\n    ], \n    \"traditionalist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tackiest\": [\n        \"JJS\"\n    ], \n    \"Kazikaev\": [\n        \"NNP\"\n    ], \n    \"Hyndman\": [\n        \"NNP\"\n    ], \n    \"foil\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"middlebrow\": [\n        \"JJ\"\n    ], \n    \"backstage\": [\n        \"RB\"\n    ], \n    \"Endure\": [\n        \"VBP\"\n    ], \n    \"Novato\": [\n        \"NNP\"\n    ], \n    \"Muncipal\": [\n        \"NNP\"\n    ], \n    \"in-office\": [\n        \"JJ\"\n    ], \n    \"better-prepared\": [\n        \"JJ\"\n    ], \n    \"shuns\": [\n        \"VBZ\"\n    ], \n    \"accidents\": [\n        \"NNS\"\n    ], \n    \"shunt\": [\n        \"NN\"\n    ], \n    \"Tzora\": [\n        \"NNP\"\n    ], \n    \"Rome-based\": [\n        \"JJ\"\n    ], \n    \"Fourteenth\": [\n        \"NNP\"\n    ], \n    \"Stickers\": [\n        \"NNS\"\n    ], \n    \"indirectly\": [\n        \"RB\"\n    ], \n    \"eclipsing\": [\n        \"VBG\"\n    ], \n    \"paperless\": [\n        \"JJ\"\n    ], \n    \"Keul\": [\n        \"NNP\"\n    ], \n    \"Soak\": [\n        \"VB\"\n    ], \n    \"Frontier\": [\n        \"NNP\"\n    ], \n    \"Toubro\": [\n        \"NNP\"\n    ], \n    \"circumlocution\": [\n        \"NN\"\n    ], \n    \"twelve-hour\": [\n        \"JJ\"\n    ], \n    \"high-button\": [\n        \"JJ\"\n    ], \n    \"Energieproduktiebedrijf\": [\n        \"NNP\"\n    ], \n    \"trodden\": [\n        \"JJ\"\n    ], \n    \"Bailey\": [\n        \"NNP\"\n    ], \n    \"Leggett\": [\n        \"NNP\"\n    ], \n    \"Cuauhtemoc\": [\n        \"NNP\"\n    ], \n    \"Soap\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ruling-class\": [\n        \"JJ\"\n    ], \n    \"Hondo\": [\n        \"NNP\"\n    ], \n    \"auf\": [\n        \"FW\"\n    ], \n    \"swam\": [\n        \"VBD\"\n    ], \n    \"Honda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pensions\": [\n        \"NNS\"\n    ], \n    \"Shapovalov\": [\n        \"NNP\"\n    ], \n    \"swat\": [\n        \"NN\"\n    ], \n    \"swap\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Sheets\": [\n        \"NNP\"\n    ], \n    \"Dynafac\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"recycle\": [\n        \"VB\"\n    ], \n    \"aux\": [\n        \"FW\"\n    ], \n    \"sorry\": [\n        \"JJ\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"sway\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Pleas\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"collaborate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Znaniye\": [\n        \"NNP\"\n    ], \n    \"void\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Industria\": [\n        \"NNP\"\n    ], \n    \"Panyotis\": [\n        \"NNP\"\n    ], \n    \"trend-spotter\": [\n        \"NN\"\n    ], \n    \"voir\": [\n        \"FW\"\n    ], \n    \"comico-romantico\": [\n        \"JJ\"\n    ], \n    \"Simplot\": [\n        \"NNP\"\n    ], \n    \"deplorably\": [\n        \"RB\"\n    ], \n    \"hurricane-stricken\": [\n        \"JJ\"\n    ], \n    \"Extending\": [\n        \"VBG\"\n    ], \n    \"unrelated\": [\n        \"JJ\"\n    ], \n    \"enhance\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"deplorable\": [\n        \"JJ\"\n    ], \n    \"separation-of-powers\": [\n        \"JJ\"\n    ], \n    \"whirlwind\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"landlords\": [\n        \"NNS\"\n    ], \n    \"Cuisine\": [\n        \"NNP\"\n    ], \n    \"Margaux\": [\n        \"NNP\"\n    ], \n    \"scouted\": [\n        \"VBD\"\n    ], \n    \"Christic\": [\n        \"NNP\"\n    ], \n    \"Herrick\": [\n        \"NNP\"\n    ], \n    \"Christie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Yasuda\": [\n        \"NNP\"\n    ], \n    \"hibernate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"tangential\": [\n        \"JJ\"\n    ], \n    \"kidnap\": [\n        \"VB\"\n    ], \n    \"disintegrated\": [\n        \"VBD\"\n    ], \n    \"ignominiously\": [\n        \"RB\"\n    ], \n    \"tall-growing\": [\n        \"JJ\"\n    ], \n    \"Sikes\": [\n        \"NNP\"\n    ], \n    \"uptempo\": [\n        \"JJ\"\n    ], \n    \"Schenk\": [\n        \"NNP\"\n    ], \n    \"WELLS\": [\n        \"NNP\"\n    ], \n    \"yonder\": [\n        \"NN\"\n    ], \n    \"spokesman\": [\n        \"NN\"\n    ], \n    \"confusin\": [\n        \"NN\"\n    ], \n    \"reviving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"mee\": [\n        \"PRP\"\n    ], \n    \"helmets\": [\n        \"NNS\"\n    ], \n    \"market-hog\": [\n        \"JJ\"\n    ], \n    \"mea\": [\n        \"FW\"\n    ], \n    \"back-on-terra-firma\": [\n        \"JJ\"\n    ], \n    \"muzzle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mem\": [\n        \"FW\"\n    ], \n    \"men\": [\n        \"NNS\"\n    ], \n    \"mei\": [\n        \"FW\"\n    ], \n    \"weirdly\": [\n        \"RB\"\n    ], \n    \"met\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bussieres\": [\n        \"NNP\"\n    ], \n    \"biconcave\": [\n        \"JJ\"\n    ], \n    \"Lassus\": [\n        \"NNP\"\n    ], \n    \"systematized\": [\n        \"VBN\"\n    ], \n    \"Aalseth\": [\n        \"NNP\"\n    ], \n    \"rooster-comb\": [\n        \"NN\"\n    ], \n    \"launch-control\": [\n        \"NN\"\n    ], \n    \"Curry\": [\n        \"NNP\"\n    ], \n    \"Predispositions\": [\n        \"NNS\"\n    ], \n    \"Chiron\": [\n        \"NNP\"\n    ], \n    \"Simeon\": [\n        \"NNP\"\n    ], \n    \"Brakes\": [\n        \"NNS\"\n    ], \n    \"Extra\": [\n        \"NNP\"\n    ], \n    \"Scolatti\": [\n        \"NNP\"\n    ], \n    \"Demonstrations\": [\n        \"NNS\"\n    ], \n    \"defects-office\": [\n        \"NN\"\n    ], \n    \"fajitas\": [\n        \"NNS\"\n    ], \n    \"Ricketts\": [\n        \"NNP\"\n    ], \n    \"have-nots\": [\n        \"NNS\"\n    ], \n    \"Lyon\": [\n        \"NNP\"\n    ], \n    \"mobility\": [\n        \"NN\"\n    ], \n    \"south-central\": [\n        \"JJ\"\n    ], \n    \"objectively\": [\n        \"RB\"\n    ], \n    \"sliced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fleischmanns\": [\n        \"NNP\"\n    ], \n    \"Norske\": [\n        \"NNP\"\n    ], \n    \"Piano\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Romanza\": [\n        \"NNP\"\n    ], \n    \"tutelage\": [\n        \"NN\"\n    ], \n    \"Boersen-Zeitung\": [\n        \"NNP\"\n    ], \n    \"rationalist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"doubled-edged\": [\n        \"JJ\"\n    ], \n    \"LOBBIES\": [\n        \"VBZ\"\n    ], \n    \"gold-oriented\": [\n        \"JJ\"\n    ], \n    \"Drexler\": [\n        \"NNP\"\n    ], \n    \"well-servicing\": [\n        \"JJ\"\n    ], \n    \"Kingsepp\": [\n        \"NNP\"\n    ], \n    \"Rudibaugh\": [\n        \"NNP\"\n    ], \n    \"rationalism\": [\n        \"NN\"\n    ], \n    \"Carbon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"TASS\": [\n        \"NNP\"\n    ], \n    \"overlooked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"grabbin\": [\n        \"VBG\"\n    ], \n    \"surgical-abortion\": [\n        \"JJ\"\n    ], \n    \"multi-state\": [\n        \"JJ\"\n    ], \n    \"workmanship\": [\n        \"NN\"\n    ], \n    \"phraseology\": [\n        \"NN\"\n    ], \n    \"Smelting\": [\n        \"NNP\"\n    ], \n    \"defecated\": [\n        \"VBN\"\n    ], \n    \"rook\": [\n        \"NN\"\n    ], \n    \"room\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"interposition\": [\n        \"NN\"\n    ], \n    \"flue-cured\": [\n        \"JJ\"\n    ], \n    \"roof\": [\n        \"NN\"\n    ], \n    \"Slug\": [\n        \"VB\"\n    ], \n    \"movies\": [\n        \"NNS\"\n    ], \n    \"Fournier\": [\n        \"NNP\"\n    ], \n    \"exceptions\": [\n        \"NNS\"\n    ], \n    \"root\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"troubles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"motor-operated\": [\n        \"JJ\"\n    ], \n    \"Zweibel\": [\n        \"NNP\"\n    ], \n    \"Chrome\": [\n        \"NNP\"\n    ], \n    \"Wizard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"whistle-blowers\": [\n        \"NNS\"\n    ], \n    \"Scalfaro\": [\n        \"NNP\"\n    ], \n    \"cials\": [\n        \"NNS\"\n    ], \n    \"Maecker\": [\n        \"NNP\"\n    ], \n    \"Hardscrabble\": [\n        \"NNP\"\n    ], \n    \"shelving\": [\n        \"NN\"\n    ], \n    \"Fast-food\": [\n        \"NN\"\n    ], \n    \"elicited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"January-August\": [\n        \"NNP\"\n    ], \n    \"decrying\": [\n        \"VBG\"\n    ], \n    \"Darcy\": [\n        \"NNP\"\n    ], \n    \"remonstrated\": [\n        \"VBD\"\n    ], \n    \"Red-Green\": [\n        \"NNP\"\n    ], \n    \"quibble\": [\n        \"VB\"\n    ], \n    \"loggers\": [\n        \"NNS\"\n    ], \n    \"Fidler\": [\n        \"NNP\"\n    ], \n    \"disassemble\": [\n        \"VB\"\n    ], \n    \"manuals\": [\n        \"NNS\"\n    ], \n    \"loyalty\": [\n        \"NN\"\n    ], \n    \"ova\": [\n        \"NN\"\n    ], \n    \"fracas\": [\n        \"NN\"\n    ], \n    \"Kiley\": [\n        \"NNP\"\n    ], \n    \"disassembly\": [\n        \"NN\"\n    ], \n    \"cathoderay\": [\n        \"NN\"\n    ], \n    \"security-type\": [\n        \"JJ\"\n    ], \n    \"lifesaving\": [\n        \"VBG\"\n    ], \n    \"Trujillos\": [\n        \"NNPS\"\n    ], \n    \"defaces\": [\n        \"VBZ\"\n    ], \n    \"EQUITIES\": [\n        \"NNPS\"\n    ], \n    \"Delusion\": [\n        \"NNP\"\n    ], \n    \"Touring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"neglect\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ended\": [\n        \"NNP\"\n    ], \n    \"fictitious\": [\n        \"JJ\"\n    ], \n    \"pasteurized\": [\n        \"VBN\"\n    ], \n    \"plagiarizers\": [\n        \"NNS\"\n    ], \n    \"Edwviges\": [\n        \"NNP\"\n    ], \n    \"Textiles\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"glycols\": [\n        \"NNS\"\n    ], \n    \"determinate\": [\n        \"JJ\"\n    ], \n    \"Agnelli\": [\n        \"NNP\"\n    ], \n    \"high-rep\": [\n        \"JJ\"\n    ], \n    \"inconclusive\": [\n        \"JJ\"\n    ], \n    \"Socialization\": [\n        \"NN\"\n    ], \n    \"W.T.\": [\n        \"NNP\"\n    ], \n    \"fable\": [\n        \"NN\"\n    ], \n    \"fellas\": [\n        \"NNS\"\n    ], \n    \"budding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"cattaloe\": [\n        \"NN\"\n    ], \n    \"famille\": [\n        \"FW\"\n    ], \n    \"personae\": [\n        \"NNS\"\n    ], \n    \"deathly\": [\n        \"JJ\"\n    ], \n    \"personal\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sun-Times\": [\n        \"NNP\"\n    ], \n    \"Econometric\": [\n        \"NNP\"\n    ], \n    \"MiGs\": [\n        \"NNPS\"\n    ], \n    \"Luber\": [\n        \"NNP\"\n    ], \n    \"stalemate\": [\n        \"NN\"\n    ], \n    \"Butter-Nut\": [\n        \"NNP\"\n    ], \n    \"drops\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"confidently\": [\n        \"RB\"\n    ], \n    \"rebutted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"comedy-oriented\": [\n        \"JJ\"\n    ], \n    \"madly\": [\n        \"RB\"\n    ], \n    \"combination\": [\n        \"NN\"\n    ], \n    \"Ashwood\": [\n        \"NNP\"\n    ], \n    \"driftin\": [\n        \"VBG\"\n    ], \n    \"Challenge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"glazes\": [\n        \"NNS\"\n    ], \n    \"demythologize\": [\n        \"VB\"\n    ], \n    \"Agenda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Beggiato\": [\n        \"NNP\"\n    ], \n    \"glazed\": [\n        \"VBN\"\n    ], \n    \"imprisoning\": [\n        \"VBG\"\n    ], \n    \"Saitama\": [\n        \"NNP\"\n    ], \n    \"Chesley\": [\n        \"NNP\"\n    ], \n    \"AIDS-related\": [\n        \"JJ\"\n    ], \n    \"emergency-cash\": [\n        \"NN\"\n    ], \n    \"Seita\": [\n        \"NNP\"\n    ], \n    \"Seitz\": [\n        \"NNP\"\n    ], \n    \"ducking\": [\n        \"VBG\"\n    ], \n    \"interpolation\": [\n        \"NN\"\n    ], \n    \"Check\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"punishable\": [\n        \"JJ\"\n    ], \n    \"nonchurchgoing\": [\n        \"JJ\"\n    ], \n    \"Goulde\": [\n        \"NNP\"\n    ], \n    \"admittees\": [\n        \"NNS\"\n    ], \n    \"SS.\": [\n        \"NNP\"\n    ], \n    \"trading\": [\n        \"NN\", \n        \"NN|VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"forgot\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"aids\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"LeBrun\": [\n        \"NNP\"\n    ], \n    \"comedies\": [\n        \"NNS\"\n    ], \n    \"two-percentage-point\": [\n        \"JJ\"\n    ], \n    \"Obeying\": [\n        \"VBG\"\n    ], \n    \"merchants\": [\n        \"NNS\"\n    ], \n    \"unbound\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Menderes\": [\n        \"NNP\"\n    ], \n    \"Eagle-Berol\": [\n        \"NNP\"\n    ], \n    \"Rosabelle\": [\n        \"NNP\"\n    ], \n    \"Skolniks\": [\n        \"NNP\"\n    ], \n    \"bulkheads\": [\n        \"NNS\"\n    ], \n    \"debit\": [\n        \"NN\"\n    ], \n    \"Stockman\": [\n        \"NNP\"\n    ], \n    \"Join\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Clive\": [\n        \"NNP\"\n    ], \n    \"Reps.\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"SS-18s\": [\n        \"NNS\"\n    ], \n    \"abate\": [\n        \"VB\"\n    ], \n    \"Healthco\": [\n        \"NNP\"\n    ], \n    \"mushrooming\": [\n        \"NN\"\n    ], \n    \"Salvatori\": [\n        \"NNP\"\n    ], \n    \"resew\": [\n        \"VB\"\n    ], \n    \"gruonded\": [\n        \"VBD\"\n    ], \n    \"Privatizing\": [\n        \"NN\"\n    ], \n    \"SST\": [\n        \"NNP\"\n    ], \n    \"cosmic\": [\n        \"JJ\"\n    ], \n    \"Sudden\": [\n        \"JJ\"\n    ], \n    \"SSI\": [\n        \"NNP\"\n    ], \n    \"uses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"enraged\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Adolf\": [\n        \"NNP\"\n    ], \n    \"causeways\": [\n        \"NNS\"\n    ], \n    \"Freshmen\": [\n        \"NNS\"\n    ], \n    \"oracles\": [\n        \"NNS\"\n    ], \n    \"Waite\": [\n        \"NNP\"\n    ], \n    \"double-A-2\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"double-A-3\": [\n        \"JJ\"\n    ], \n    \"Electro-Optics\": [\n        \"NNP\"\n    ], \n    \"Vectra\": [\n        \"NNP\"\n    ], \n    \"ALBERTA\": [\n        \"NNP\"\n    ], \n    \"Fienberg\": [\n        \"NNP\"\n    ], \n    \"PATRON\": [\n        \"NNP\"\n    ], \n    \"acquaint\": [\n        \"VB\"\n    ], \n    \"Mess\": [\n        \"NN\"\n    ], \n    \"Consolidation\": [\n        \"NN\"\n    ], \n    \"Mullerin\": [\n        \"NNP\"\n    ], \n    \"Johns\": [\n        \"NNP\"\n    ], \n    \"Excellent\": [\n        \"JJ\"\n    ], \n    \"woodwind\": [\n        \"NN\"\n    ], \n    \"gourmets\": [\n        \"NNS\"\n    ], \n    \"McKinleyville\": [\n        \"NNP\"\n    ], \n    \"Commandeering\": [\n        \"VBG\"\n    ], \n    \"Estimated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"dower\": [\n        \"NN\"\n    ], \n    \"Yevgeny\": [\n        \"NNP\"\n    ], \n    \"chronicled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Charleston\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Minikes\": [\n        \"NNP\"\n    ], \n    \"begins\": [\n        \"VBZ\"\n    ], \n    \"homogenized\": [\n        \"VBN\"\n    ], \n    \"Travel-Holiday\": [\n        \"NNP\"\n    ], \n    \"enshrouding\": [\n        \"VBG\"\n    ], \n    \"Exhausted\": [\n        \"JJ\"\n    ], \n    \"conforms\": [\n        \"VBZ\"\n    ], \n    \"Colefax\": [\n        \"NNP\"\n    ], \n    \"exchangeable\": [\n        \"JJ\"\n    ], \n    \"biochemical\": [\n        \"JJ\"\n    ], \n    \"perilla\": [\n        \"NN\"\n    ], \n    \"Bottlers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mercier\": [\n        \"NNP\"\n    ], \n    \"Snuff\": [\n        \"NNP\"\n    ], \n    \"recommence\": [\n        \"VB\"\n    ], \n    \"Curacao\": [\n        \"NNP\"\n    ], \n    \"rattle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"ebb-and-flow\": [\n        \"NN\"\n    ], \n    \"Lewellyn\": [\n        \"NNP\"\n    ], \n    \"Gideon\": [\n        \"NNP\"\n    ], \n    \"central-planning\": [\n        \"JJ\"\n    ], \n    \"prerecorded\": [\n        \"VBN\"\n    ], \n    \"nine-tenths\": [\n        \"NNS\"\n    ], \n    \"theology\": [\n        \"NN\"\n    ], \n    \"Tashkent\": [\n        \"NNP\"\n    ], \n    \"Egyptian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Kinder-Care\": [\n        \"NNP\"\n    ], \n    \"Gripen\": [\n        \"NNP\"\n    ], \n    \"recordkeeping\": [\n        \"NN\"\n    ], \n    \"quarterback\": [\n        \"NN\"\n    ], \n    \"yearlong\": [\n        \"JJ\"\n    ], \n    \"uproariously\": [\n        \"RB\"\n    ], \n    \"overplayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"criminal-justice\": [\n        \"NN\"\n    ], \n    \"Biological\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"legal-services\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"maria\": [\n        \"NNS\"\n    ], \n    \"Sanctuary\": [\n        \"NNP\"\n    ], \n    \"splints\": [\n        \"NNS\"\n    ], \n    \"competitors\": [\n        \"NNS\"\n    ], \n    \"Kyocera\": [\n        \"NNP\"\n    ], \n    \"egg-throwing\": [\n        \"JJ\"\n    ], \n    \"unleashed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sabre\": [\n        \"NNP\"\n    ], \n    \"PATCO\": [\n        \"NNP\"\n    ], \n    \"armament\": [\n        \"NN\"\n    ], \n    \"UPI\": [\n        \"NNP\"\n    ], \n    \"mineralized\": [\n        \"JJ\"\n    ], \n    \"implying\": [\n        \"VBG\"\n    ], \n    \"flouted\": [\n        \"VBN\"\n    ], \n    \"poison\": [\n        \"NN\", \n        \"NN|JJ\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"McDuffie\": [\n        \"NNP\"\n    ], \n    \"dampening\": [\n        \"JJ\"\n    ], \n    \"CONSUMERS\": [\n        \"NNS\"\n    ], \n    \"double-A\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"bookish\": [\n        \"JJ\"\n    ], \n    \"double-C\": [\n        \"NN\"\n    ], \n    \"celery\": [\n        \"NN\"\n    ], \n    \"Archbishops\": [\n        \"NNS\"\n    ], \n    \"Post-Newsweek\": [\n        \"NNP\"\n    ], \n    \"Advantages\": [\n        \"NNS\"\n    ], \n    \"Lahus\": [\n        \"NNP\"\n    ], \n    \"Others\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"bangish\": [\n        \"JJ\"\n    ], \n    \"lightening\": [\n        \"VBG\"\n    ], \n    \"company-owned\": [\n        \"JJ\"\n    ], \n    \"extraterrestrials\": [\n        \"NNS\"\n    ], \n    \"preparatives\": [\n        \"NNS\"\n    ], \n    \"nyet\": [\n        \"UH\"\n    ], \n    \"difference...\": [\n        \":\"\n    ], \n    \"Yesiree\": [\n        \"UH\"\n    ], \n    \"appetizer\": [\n        \"NN\"\n    ], \n    \"trans-Panama\": [\n        \"JJ\"\n    ], \n    \"water-deficient\": [\n        \"JJ\"\n    ], \n    \"pallets\": [\n        \"NNS\"\n    ], \n    \"Holstein\": [\n        \"NNP\"\n    ], \n    \"untradeable\": [\n        \"JJ\"\n    ], \n    \"boom-boom-boom\": [\n        \"JJ\"\n    ], \n    \"dauphin\": [\n        \"NN\"\n    ], \n    \"facilitators\": [\n        \"NNS\"\n    ], \n    \"COMMENTS\": [\n        \"NNS\"\n    ], \n    \"godliness\": [\n        \"NN\"\n    ], \n    \"hookworm\": [\n        \"NN\"\n    ], \n    \"troop\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"adulterous\": [\n        \"JJ\"\n    ], \n    \"Partners\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Star-Spangled\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"testing\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"Af-values\": [\n        \"NNS\"\n    ], \n    \"dog-meat\": [\n        \"NN\"\n    ], \n    \"Indexes\": [\n        \"NNS\"\n    ], \n    \"Dreamers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"non-stop\": [\n        \"JJ\"\n    ], \n    \"hoydenish\": [\n        \"JJ\"\n    ], \n    \"Indexed\": [\n        \"JJ\"\n    ], \n    \"interruptions\": [\n        \"NNS\"\n    ], \n    \"home-entertainment\": [\n        \"JJ\"\n    ], \n    \"Watervliet\": [\n        \"NNP\"\n    ], \n    \"Somebody\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Plotkin\": [\n        \"NNP\"\n    ], \n    \"narrated\": [\n        \"VBN\"\n    ], \n    \"eighty-sixth\": [\n        \"JJ\"\n    ], \n    \"half-a-dozen\": [\n        \"NN\"\n    ], \n    \"Billed\": [\n        \"VBN\"\n    ], \n    \"by-ways\": [\n        \"NNS\"\n    ], \n    \"Multiplexers\": [\n        \"NNS\"\n    ], \n    \"socio-economic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Blumstein\": [\n        \"NNP\"\n    ], \n    \"W.Va.\": [\n        \"NNP\"\n    ], \n    \"Tunnel\": [\n        \"NNP\"\n    ], \n    \"non-governmental\": [\n        \"JJ\"\n    ], \n    \"busloads\": [\n        \"NNS\"\n    ], \n    \"motto\": [\n        \"NN\"\n    ], \n    \"Otherwise\": [\n        \"RB\"\n    ], \n    \"Micawber\": [\n        \"NNP\"\n    ], \n    \"Cylinder\": [\n        \"NN\"\n    ], \n    \"resistant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Imperiales\": [\n        \"NNPS\"\n    ], \n    \"uncertainty\": [\n        \"NN\"\n    ], \n    \"elastomer\": [\n        \"NN\"\n    ], \n    \"discount-movie\": [\n        \"JJ\"\n    ], \n    \"RobertsCorp\": [\n        \"NNP\"\n    ], \n    \"Naples-born\": [\n        \"JJ\"\n    ], \n    \"carat\": [\n        \"NN\"\n    ], \n    \"Thrall\": [\n        \"NNP\"\n    ], \n    \"Glimco\": [\n        \"NNP\"\n    ], \n    \"Bahamas\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"precut\": [\n        \"JJ\"\n    ], \n    \"half-point\": [\n        \"JJ\"\n    ], \n    \"Muscat\": [\n        \"NNP\"\n    ], \n    \"putt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"oceanography\": [\n        \"NN\"\n    ], \n    \"puts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"regenerate\": [\n        \"VB\"\n    ], \n    \"KANEB\": [\n        \"NNP\"\n    ], \n    \"parsley\": [\n        \"NN\"\n    ], \n    \"Paredon\": [\n        \"NN\"\n    ], \n    \"growth...\": [\n        \":\"\n    ], \n    \"soft-landing\": [\n        \"JJ\"\n    ], \n    \"entered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lovely\": [\n        \"JJ\"\n    ], \n    \"well-deserved\": [\n        \"JJ\"\n    ], \n    \"SHORT-TERM\": [\n        \"JJ\"\n    ], \n    \"eight-bar\": [\n        \"JJ\"\n    ], \n    \"Emmert\": [\n        \"NNP\"\n    ], \n    \"Flor\": [\n        \"NNP\"\n    ], \n    \"Flow\": [\n        \"NNP\"\n    ], \n    \"BRITISH\": [\n        \"JJ\"\n    ], \n    \"word-games\": [\n        \"NNS\"\n    ], \n    \"Keteyian\": [\n        \"NNP\"\n    ], \n    \"Flom\": [\n        \"NNP\"\n    ], \n    \"Misery\": [\n        \"NN\"\n    ], \n    \"scrubbers\": [\n        \"NNS\"\n    ], \n    \"Voice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"harshness\": [\n        \"NN\"\n    ], \n    \"Debugging\": [\n        \"VBG\"\n    ], \n    \"Reputedly\": [\n        \"RB\"\n    ], \n    \"vendetta\": [\n        \"NN\"\n    ], \n    \"Process\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tatman\": [\n        \"NNP\"\n    ], \n    \"Canaan\": [\n        \"NNP\"\n    ], \n    \"Pines\": [\n        \"NNP\"\n    ], \n    \"ceilings\": [\n        \"NNS\"\n    ], \n    \"CAPITALIST\": [\n        \"JJ\"\n    ], \n    \"sprinted\": [\n        \"VBD\"\n    ], \n    \"cane\": [\n        \"NN\"\n    ], \n    \"bribery-related\": [\n        \"JJ\"\n    ], \n    \"recuperate\": [\n        \"VB\"\n    ], \n    \"well-kept\": [\n        \"JJ\"\n    ], \n    \"Arrangement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cant\": [\n        \"NN\"\n    ], \n    \"cans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"inscrutable\": [\n        \"JJ\"\n    ], \n    \"gaze\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"cockatoos\": [\n        \"NNS\"\n    ], \n    \"borough\": [\n        \"NN\"\n    ], \n    \"specialization\": [\n        \"NN\"\n    ], \n    \"Kibbutz\": [\n        \"NNP\"\n    ], \n    \"erudition\": [\n        \"NN\"\n    ], \n    \"realizing\": [\n        \"VBG\"\n    ], \n    \"Sanson\": [\n        \"NNP\"\n    ], \n    \"Chatwal\": [\n        \"NNP\"\n    ], \n    \"Sansom\": [\n        \"NNP\"\n    ], \n    \"small-company-stock\": [\n        \"NN\"\n    ], \n    \"world-famous\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"colonies\": [\n        \"NNS\"\n    ], \n    \"detergency\": [\n        \"NN\"\n    ], \n    \"evolve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"off-duty\": [\n        \"JJ\"\n    ], \n    \"Hals\": [\n        \"NNP\"\n    ], \n    \"opulent\": [\n        \"JJ\"\n    ], \n    \"Champlain\": [\n        \"NNP\"\n    ], \n    \"impelling\": [\n        \"JJ\"\n    ], \n    \"Dilip\": [\n        \"NNP\"\n    ], \n    \"price-stabilized\": [\n        \"JJ\"\n    ], \n    \"Usually\": [\n        \"RB\"\n    ], \n    \"geological\": [\n        \"JJ\"\n    ], \n    \"interferometers\": [\n        \"NNS\"\n    ], \n    \"Brassbound\": [\n        \"NNP\"\n    ], \n    \"SAKOS\": [\n        \"FW\"\n    ], \n    \"presto\": [\n        \"RB\"\n    ], \n    \"unconditionally\": [\n        \"RB\"\n    ], \n    \"jackdaws\": [\n        \"NNS\"\n    ], \n    \"failing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Matson\": [\n        \"NNP\"\n    ], \n    \"resuming\": [\n        \"VBG\"\n    ], \n    \"Janitsch\": [\n        \"NNP\"\n    ], \n    \"perceptiveness\": [\n        \"NN\"\n    ], \n    \"sanctums\": [\n        \"NNS\"\n    ], \n    \"yours\": [\n        \"PRP\", \n        \"JJ\"\n    ], \n    \"worked-out\": [\n        \"JJ\"\n    ], \n    \"Helicopters\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Griffin\": [\n        \"NNP\"\n    ], \n    \"unclenched\": [\n        \"VBN\"\n    ], \n    \"Significants\": [\n        \"NNS\"\n    ], \n    \"crystallites\": [\n        \"NNS\"\n    ], \n    \"Capone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Acceptable\": [\n        \"JJ\"\n    ], \n    \"assigned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"assignee\": [\n        \"NN\"\n    ], \n    \"fighters\": [\n        \"NNS\"\n    ], \n    \"reformation\": [\n        \"NN\"\n    ], \n    \"salivary\": [\n        \"JJ\"\n    ], \n    \"rent-a-colonel\": [\n        \"NN\"\n    ], \n    \"rent-subsidy\": [\n        \"JJ\"\n    ], \n    \"Bills\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"pecuniary\": [\n        \"JJ\"\n    ], \n    \"Boss\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"appellant\": [\n        \"FW\"\n    ], \n    \"copyrights\": [\n        \"NNS\"\n    ], \n    \"Backlog\": [\n        \"NN\"\n    ], \n    \"cardiologists\": [\n        \"NNS\"\n    ], \n    \"Buddhism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"revenue-sharing\": [\n        \"JJ\"\n    ], \n    \"ago.\": [\n        \"RB\"\n    ], \n    \"Kerr-Mills\": [\n        \"NNP\"\n    ], \n    \"Bowman\": [\n        \"NNP\"\n    ], \n    \"boasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"involuntary\": [\n        \"JJ\"\n    ], \n    \"rehash\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"supervisors\": [\n        \"NNS\"\n    ], \n    \"paramilitary\": [\n        \"JJ\"\n    ], \n    \"orthodontic\": [\n        \"JJ\"\n    ], \n    \"hi-fi\": [\n        \"NN\"\n    ], \n    \"Browne\": [\n        \"NNP\"\n    ], \n    \"Picturing\": [\n        \"VBG\"\n    ], \n    \"Arp\": [\n        \"NNP\"\n    ], \n    \"Stolz\": [\n        \"NNP\"\n    ], \n    \"Art\": [\n        \"NNP\", \n        \"VBZ\", \n        \"NN\"\n    ], \n    \"repossessed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"ramparts\": [\n        \"NNS\"\n    ], \n    \"Arx\": [\n        \"NNP\"\n    ], \n    \"tormentors\": [\n        \"NNS\"\n    ], \n    \"Michele\": [\n        \"NNP\"\n    ], \n    \"Computing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Ara\": [\n        \"NNP\"\n    ], \n    \"Arc\": [\n        \"NNP\"\n    ], \n    \"Are\": [\n        \"VBP\", \n        \"NNP\"\n    ], \n    \"testers\": [\n        \"NNS\"\n    ], \n    \"talk-aboutiveness\": [\n        \"NN\"\n    ], \n    \"Ark\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Michels\": [\n        \"NNP\"\n    ], \n    \"Arm\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Aro\": [\n        \"NNP\"\n    ], \n    \"cowardice\": [\n        \"NN\"\n    ], \n    \"Arraignments\": [\n        \"NNS\"\n    ], \n    \"dean\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Generics\": [\n        \"NNS\"\n    ], \n    \"Beef\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Conduits\": [\n        \"NNS\"\n    ], \n    \"deaf\": [\n        \"JJ\"\n    ], \n    \"Zeising\": [\n        \"NNP\"\n    ], \n    \"Been\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"yf\": [\n        \"NN\"\n    ], \n    \"Beep\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Beer\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"yearlings\": [\n        \"NNS\"\n    ], \n    \"Beet\": [\n        \"NNP\"\n    ], \n    \"Browns\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"dear\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"doll-like\": [\n        \"JJ\"\n    ], \n    \"carts\": [\n        \"NNS\"\n    ], \n    \"microwave\": [\n        \"NN\"\n    ], \n    \"buffer\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Parizeau\": [\n        \"NNP\"\n    ], \n    \"provoking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Leonidas\": [\n        \"NNP\"\n    ], \n    \"carte\": [\n        \"NN\"\n    ], \n    \"Kochan\": [\n        \"NNP\"\n    ], \n    \"trade-in\": [\n        \"NN\"\n    ], \n    \"subscriptions\": [\n        \"NNS\"\n    ], \n    \"codifies\": [\n        \"VBZ\"\n    ], \n    \"predicting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Junk\": [\n        \"NN\"\n    ], \n    \"Salman\": [\n        \"NNP\"\n    ], \n    \"defense-electronics\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Corey\": [\n        \"NNP\"\n    ], \n    \"buffet\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Blampied\": [\n        \"NNP\"\n    ], \n    \"missive\": [\n        \"NN\"\n    ], \n    \"codified\": [\n        \"VBN\"\n    ], \n    \"backlogs\": [\n        \"NNS\"\n    ], \n    \"lyking\": [\n        \"VBG\"\n    ], \n    \"appeasing\": [\n        \"NN\"\n    ], \n    \"Hoped-for\": [\n        \"JJ\"\n    ], \n    \"leave-taking\": [\n        \"NN\"\n    ], \n    \"blithe\": [\n        \"JJ\"\n    ], \n    \"Merill\": [\n        \"NNP\"\n    ], \n    \"Carstens\": [\n        \"NNP\"\n    ], \n    \"clapboard\": [\n        \"NN\"\n    ], \n    \"second-guessed\": [\n        \"VBN\"\n    ], \n    \"emcee\": [\n        \"NN\"\n    ], \n    \"managers\": [\n        \"NNS\"\n    ], \n    \"Dallas\": [\n        \"NNP\"\n    ], \n    \"Isabell\": [\n        \"NNP\"\n    ], \n    \"memory-pictures\": [\n        \"NNS\"\n    ], \n    \"Pokorny\": [\n        \"NNP\"\n    ], \n    \"HyperCard\": [\n        \"NNP\"\n    ], \n    \"down\": [\n        \"RB\", \n        \"IN|RB\", \n        \"RBR\", \n        \"VBP\", \n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RP\", \n        \"VB\"\n    ], \n    \"Southlife\": [\n        \"NNP\"\n    ], \n    \"plain-clothes\": [\n        \"JJ\"\n    ], \n    \"P.D.I.\": [\n        \"NNP\"\n    ], \n    \"Chairmen\": [\n        \"NNS\"\n    ], \n    \"refined\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Satrum\": [\n        \"NNP\"\n    ], \n    \"Cranston\": [\n        \"NNP\"\n    ], \n    \"solar-electromagnetic\": [\n        \"NN\"\n    ], \n    \"TRC\": [\n        \"NNP\"\n    ], \n    \"initial\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"U/NNP.S.C.\": [\n        \"NNP\"\n    ], \n    \"districts\\\\/states\": [\n        \"NNS\"\n    ], \n    \"futureeither\": [\n        \"NN\"\n    ], \n    \"let-down\": [\n        \"NNS\"\n    ], \n    \"editor\": [\n        \"NN\"\n    ], \n    \"fraction\": [\n        \"NN\"\n    ], \n    \"tank-related\": [\n        \"JJ\"\n    ], \n    \"Herman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"polemical\": [\n        \"JJ\"\n    ], \n    \"creation\": [\n        \"NN\"\n    ], \n    \"clinics\": [\n        \"NNS\"\n    ], \n    \"Lissa\": [\n        \"NNP\"\n    ], \n    \"Bradsby\": [\n        \"NNP\"\n    ], \n    \"Dicello\": [\n        \"NNP\"\n    ], \n    \"anionics\": [\n        \"NNS\"\n    ], \n    \"landing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"feminine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"experimentations\": [\n        \"NNS\"\n    ], \n    \"zaiteku\": [\n        \"FW\"\n    ], \n    \"Defeat\": [\n        \"NNP\"\n    ], \n    \"one-stooler\": [\n        \"NN\"\n    ], \n    \"analyst\": [\n        \"NN\"\n    ], \n    \"Urstadt\": [\n        \"NNP\"\n    ], \n    \"evinced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"trendiest\": [\n        \"JJS\"\n    ], \n    \"Albanians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"deer-handling\": [\n        \"NN\"\n    ], \n    \"bad-neighbor\": [\n        \"JJ\"\n    ], \n    \"Boismassif\": [\n        \"NNP\"\n    ], \n    \"Langhorne\": [\n        \"NNP\"\n    ], \n    \"Fedders\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"work-in-progress\": [\n        \"NN\"\n    ], \n    \"northerner\": [\n        \"NN\"\n    ], \n    \"resuscitating\": [\n        \"VBG\"\n    ], \n    \"Richman\": [\n        \"NNP\"\n    ], \n    \"governors-association\": [\n        \"NN\"\n    ], \n    \"Niche-itis\": [\n        \"NN\"\n    ], \n    \"on-air\": [\n        \"JJ\"\n    ], \n    \"Heymann\": [\n        \"NNP\"\n    ], \n    \"flood-lighted\": [\n        \"JJ\"\n    ], \n    \"strengthening\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pontiff\": [\n        \"NN\"\n    ], \n    \"petit\": [\n        \"FW\"\n    ], \n    \"cure-all\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"HELPS\": [\n        \"VBZ\"\n    ], \n    \"awhile\": [\n        \"RB\"\n    ], \n    \"marinated\": [\n        \"VBN\"\n    ], \n    \"Tiber\": [\n        \"NNP\"\n    ], \n    \"Persona\": [\n        \"NNP\"\n    ], \n    \"exaltations\": [\n        \"NNS\"\n    ], \n    \"Menuhin-Amadeus\": [\n        \"NNP\"\n    ], \n    \"Taisho\": [\n        \"NNP\"\n    ], \n    \"Persons\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"time-strapped\": [\n        \"JJ\"\n    ], \n    \"Lande\": [\n        \"NNP\"\n    ], \n    \"Uplands\": [\n        \"NNPS\"\n    ], \n    \"Romantic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"faction\": [\n        \"NN\"\n    ], \n    \"handicap\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"super-expensive\": [\n        \"JJ\"\n    ], \n    \"utilities\": [\n        \"NNS\"\n    ], \n    \"Conveyance\": [\n        \"NN\"\n    ], \n    \"brightens\": [\n        \"VBZ\"\n    ], \n    \"export-license\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cathy\": [\n        \"NNP\"\n    ], \n    \"twelve-year-old\": [\n        \"JJ\"\n    ], \n    \"bluefish\": [\n        \"NNS\"\n    ], \n    \"Barnard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"load-shedding\": [\n        \"NNS\"\n    ], \n    \"restorer\": [\n        \"NN\"\n    ], \n    \"annuity\": [\n        \"NN\"\n    ], \n    \"pseudo\": [\n        \"JJ\"\n    ], \n    \"worked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"scribblers\": [\n        \"NNS\"\n    ], \n    \"Substitute\": [\n        \"JJ\"\n    ], \n    \"Daikin\": [\n        \"NNP\"\n    ], \n    \"Exploracion\": [\n        \"NNP\"\n    ], \n    \"restored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"discreetly\": [\n        \"RB\"\n    ], \n    \"E.G.\": [\n        \"NNP\"\n    ], \n    \"hijacker\": [\n        \"NN\"\n    ], \n    \"Torino\": [\n        \"NNP\"\n    ], \n    \"Tango\": [\n        \"NNP\"\n    ], \n    \"Winning\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Kalevi\": [\n        \"NNP\"\n    ], \n    \"redouble\": [\n        \"VB\"\n    ], \n    \"myelofibrosis\": [\n        \"NN\"\n    ], \n    \"hijacked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"DALLAS\": [\n        \"NNP\"\n    ], \n    \"swoon\": [\n        \"NN\"\n    ], \n    \"father\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"parenchyma\": [\n        \"NN\"\n    ], \n    \"Redskins\": [\n        \"NNPS\"\n    ], \n    \"analogous\": [\n        \"JJ\"\n    ], \n    \"Washington-based\": [\n        \"JJ\"\n    ], \n    \"telegraph\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lakeland\": [\n        \"NNP\"\n    ], \n    \"Sewanee\": [\n        \"NNP\"\n    ], \n    \"Cantobank\": [\n        \"NNP\"\n    ], \n    \"Tenements\": [\n        \"NNS\"\n    ], \n    \"enslavement\": [\n        \"NN\"\n    ], \n    \"self-proclaimed\": [\n        \"JJ\"\n    ], \n    \"undergirding\": [\n        \"NN\"\n    ], \n    \"airings\": [\n        \"NNS\"\n    ], \n    \"biceps\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"stiffed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cheapest\": [\n        \"JJS\"\n    ], \n    \"proposals\": [\n        \"NNS\"\n    ], \n    \"tartans\": [\n        \"NNS\"\n    ], \n    \"trombones\": [\n        \"NNS\"\n    ], \n    \"turgid\": [\n        \"JJ\"\n    ], \n    \"Mahmoud\": [\n        \"NNP\"\n    ], \n    \"Fidelity\": [\n        \"NNP\"\n    ], \n    \"misimpressions\": [\n        \"NNS\"\n    ], \n    \"stiffer\": [\n        \"JJR\"\n    ], \n    \"talked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Curcio\": [\n        \"NNP\"\n    ], \n    \"Merger\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"four-crate\": [\n        \"JJ\"\n    ], \n    \"onrushing\": [\n        \"JJ\"\n    ], \n    \"measurable\": [\n        \"JJ\"\n    ], \n    \"Pittsburghers\": [\n        \"NNPS\"\n    ], \n    \"measurably\": [\n        \"RB\"\n    ], \n    \"currant\": [\n        \"NN\"\n    ], \n    \"Zoghby\": [\n        \"NNP\"\n    ], \n    \"targets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Define\": [\n        \"VB\"\n    ], \n    \"majors\": [\n        \"NNS\"\n    ], \n    \"page-one\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"distension\": [\n        \"NN\"\n    ], \n    \"self-redefinition\": [\n        \"NN\"\n    ], \n    \"encrusted\": [\n        \"VBN\"\n    ], \n    \"Comend\": [\n        \"VB\"\n    ], \n    \"Klette\": [\n        \"NNP\"\n    ], \n    \"annals\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"suspect\": [\n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"noconfidence\": [\n        \"JJ\"\n    ], \n    \"less-than-perfect\": [\n        \"JJ\"\n    ], \n    \"covetousness\": [\n        \"NN\"\n    ], \n    \"processing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Bishops\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Latvians\": [\n        \"NNPS\"\n    ], \n    \"DSW\": [\n        \"NN\"\n    ], \n    \"Bids\": [\n        \"NNS\"\n    ], \n    \"DSP\": [\n        \"NNP\"\n    ], \n    \"cushioning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"DSL\": [\n        \"NNP\"\n    ], \n    \"DSM\": [\n        \"NNP\"\n    ], \n    \"DSG\": [\n        \"NNP\"\n    ], \n    \"frosting\": [\n        \"NN\"\n    ], \n    \"colonization\": [\n        \"NN\"\n    ], \n    \"Muffling\": [\n        \"VBG\"\n    ], \n    \"box\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"boy\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"diagnoses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Founder\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"bop\": [\n        \"NN\"\n    ], \n    \"grinned\": [\n        \"VBD\"\n    ], \n    \"bow\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Founded\": [\n        \"VBN\"\n    ], \n    \"spheres\": [\n        \"NNS\"\n    ], \n    \"Daylight\": [\n        \"NNP\"\n    ], \n    \"diagnosed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bon\": [\n        \"FW\"\n    ], \n    \"Jaques\": [\n        \"NNP\"\n    ], \n    \"boa\": [\n        \"NN\"\n    ], \n    \"Antonini\": [\n        \"NNP\"\n    ], \n    \"bog\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"teenage\": [\n        \"JJ\"\n    ], \n    \"Cortlandt\": [\n        \"NNP\"\n    ], \n    \"KFAC-FM\": [\n        \"NNP\"\n    ], \n    \"passthrough\": [\n        \"JJ\"\n    ], \n    \"Mannix\": [\n        \"NNP\"\n    ], \n    \"Lansing\": [\n        \"NNP\"\n    ], \n    \"close-knit\": [\n        \"JJ\"\n    ], \n    \"mainframe-class\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"transplant\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Couperin\": [\n        \"NNP\"\n    ], \n    \"infinitum\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Conrail\": [\n        \"NNP\"\n    ], \n    \"cooperates\": [\n        \"VBZ\"\n    ], \n    \"uncritical\": [\n        \"JJ\"\n    ], \n    \"Tonio\": [\n        \"NNP\"\n    ], \n    \"vineyard\": [\n        \"NN\"\n    ], \n    \"Aerospace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cooperated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Maintaining\": [\n        \"VBG\"\n    ], \n    \"scriptwriters\": [\n        \"NNS\"\n    ], \n    \"Kingwood\": [\n        \"NNP\"\n    ], \n    \"beadwork\": [\n        \"NN\"\n    ], \n    \"Carletonian\": [\n        \"NNP\"\n    ], \n    \"polymerizations\": [\n        \"NNS\"\n    ], \n    \"labyrinth\": [\n        \"NN\"\n    ], \n    \"Behaviour\": [\n        \"NN\"\n    ], \n    \"Customhouse\": [\n        \"NNP\"\n    ], \n    \"forswears\": [\n        \"VBZ\"\n    ], \n    \"AUS\": [\n        \"NNP\"\n    ], \n    \"Money-market\": [\n        \"NN\"\n    ], \n    \"Ginsberg\": [\n        \"NNP\"\n    ], \n    \"bushels\": [\n        \"NNS\"\n    ], \n    \"four-syllable\": [\n        \"JJ\"\n    ], \n    \"JOIN\": [\n        \"VB\"\n    ], \n    \"evil-doers\": [\n        \"NNS\"\n    ], \n    \"McAfee\": [\n        \"NNP\"\n    ], \n    \"quoting\": [\n        \"VBG\"\n    ], \n    \"Scan\": [\n        \"NNP\"\n    ], \n    \"whizzed\": [\n        \"VBD\"\n    ], \n    \"frivolity\": [\n        \"NN\"\n    ], \n    \"drags\": [\n        \"VBZ\"\n    ], \n    \"Numbers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"romanticized\": [\n        \"VBN\"\n    ], \n    \"Ekstrohm\": [\n        \"NNP\"\n    ], \n    \"Abney\": [\n        \"NNP\"\n    ], \n    \"thicknesses\": [\n        \"NNS\"\n    ], \n    \"Purkis\": [\n        \"NNP\"\n    ], \n    \"Heather\": [\n        \"NNP\"\n    ], \n    \"Conalco\": [\n        \"NNP\"\n    ], \n    \"non-user\": [\n        \"NN\"\n    ], \n    \"fuck\": [\n        \"VB\"\n    ], \n    \"forerunners\": [\n        \"NNS\"\n    ], \n    \"Cougar\": [\n        \"NNP\"\n    ], \n    \"floodheads\": [\n        \"NNS\"\n    ], \n    \"RE-ENTRY\": [\n        \"NNP\"\n    ], \n    \"subconsciously\": [\n        \"RB\"\n    ], \n    \"metal-workers\": [\n        \"NNS\"\n    ], \n    \"Earns\": [\n        \"VBZ\"\n    ], \n    \"nonchalant\": [\n        \"JJ\"\n    ], \n    \"Carrollton\": [\n        \"NNP\"\n    ], \n    \"Flotilla\": [\n        \"NNP\"\n    ], \n    \"irreverent\": [\n        \"JJ\"\n    ], \n    \"hazardous-waste\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Liddell\": [\n        \"NNP\"\n    ], \n    \"Germania\": [\n        \"NNP\"\n    ], \n    \"male-sterile\": [\n        \"JJ\"\n    ], \n    \"Germanic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"metamidophos\": [\n        \"NNS\"\n    ], \n    \"Amerongen\": [\n        \"NNP\"\n    ], \n    \"Urn\": [\n        \"NNP\"\n    ], \n    \"proto-senility\": [\n        \"NN\"\n    ], \n    \"hand-tooled\": [\n        \"JJ\"\n    ], \n    \"membership\": [\n        \"NN\"\n    ], \n    \"nondairy\": [\n        \"JJ\"\n    ], \n    \"Urs\": [\n        \"NNP\"\n    ], \n    \"New-construction\": [\n        \"NN\"\n    ], \n    \"CORP.\": [\n        \"NNP\"\n    ], \n    \"sweat-soaked\": [\n        \"JJ\"\n    ], \n    \"fetal-alcohol\": [\n        \"JJ\"\n    ], \n    \"heat-treatment\": [\n        \"NN\"\n    ], \n    \"Braniff\": [\n        \"NNP\"\n    ], \n    \"Restless\": [\n        \"JJ\"\n    ], \n    \"reseller\": [\n        \"JJR\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"elongation\": [\n        \"NN\"\n    ], \n    \"Olean\": [\n        \"NNP\"\n    ], \n    \"Headland\": [\n        \"NNP\"\n    ], \n    \"caption\": [\n        \"NN\"\n    ], \n    \"brokerage-firm\": [\n        \"JJ\"\n    ], \n    \"Nicaraguan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Sequa\": [\n        \"NNP\"\n    ], \n    \"demonstratives\": [\n        \"NNS\"\n    ], \n    \"Hasbrouck\": [\n        \"NNP\"\n    ], \n    \"oncology\": [\n        \"NN\"\n    ], \n    \"spreadsheets\": [\n        \"NNS\"\n    ], \n    \"half-inch\": [\n        \"JJ\"\n    ], \n    \"fatalities\": [\n        \"NNS\"\n    ], \n    \"solder\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"blooded\": [\n        \"VBN\"\n    ], \n    \"Trappings\": [\n        \"NNP\"\n    ], \n    \"Cf.\": [\n        \"VB\"\n    ], \n    \"Muscle\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"police\": [\n        \"NN\", \n        \"VB\", \n        \"NNS\"\n    ], \n    \"krater\": [\n        \"NN\"\n    ], \n    \"domestic-policy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rail\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rain\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Regis\": [\n        \"NNP\"\n    ], \n    \"Guatemala\": [\n        \"NNP\"\n    ], \n    \"Opportunity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"policy\": [\n        \"NN\"\n    ], \n    \"one-out-of-three\": [\n        \"JJ\"\n    ], \n    \"sterility\": [\n        \"NN\"\n    ], \n    \"transparently\": [\n        \"RB\"\n    ], \n    \"reinvested\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"underpinning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Terg-O-Tometer\": [\n        \"NNP\"\n    ], \n    \"Solomons\": [\n        \"NNPS\"\n    ], \n    \"tucked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Burghardt\": [\n        \"NNP\"\n    ], \n    \"soulful\": [\n        \"JJ\"\n    ], \n    \"contravened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lunch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"markings\": [\n        \"NNS\"\n    ], \n    \"Fiasco\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"teller\": [\n        \"NN\"\n    ], \n    \"Kloner\": [\n        \"NNP\"\n    ], \n    \"pimp\": [\n        \"NN\"\n    ], \n    \"Selmer-Sande\": [\n        \"NNP\"\n    ], \n    \"Trabb\": [\n        \"NNP\"\n    ], \n    \"Seville\": [\n        \"NNP\"\n    ], \n    \"showcasing\": [\n        \"VBG\"\n    ], \n    \"home-owners\": [\n        \"NNS\"\n    ], \n    \"PANEL\": [\n        \"NN\"\n    ], \n    \"physiologic\": [\n        \"JJ\"\n    ], \n    \"motherland\": [\n        \"NN\"\n    ], \n    \"one-over-par\": [\n        \"JJ\"\n    ], \n    \"Sentelle\": [\n        \"NNP\"\n    ], \n    \"unachievable\": [\n        \"JJ\"\n    ], \n    \"elephants\": [\n        \"NNS\"\n    ], \n    \"mass-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"well-paying\": [\n        \"JJ\"\n    ], \n    \"SERVICES\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"foreign-trading\": [\n        \"JJ\"\n    ], \n    \"Routine\": [\n        \"JJ\"\n    ], \n    \"tax-exemption\": [\n        \"NN\"\n    ], \n    \"Disappointing\": [\n        \"JJ\"\n    ], \n    \"Lollipops\": [\n        \"NNS\"\n    ], \n    \"carrion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Successful\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"HEFTY\": [\n        \"NNP\"\n    ], \n    \"FSLIC\": [\n        \"NNP\"\n    ], \n    \"Pocket\": [\n        \"NNP\"\n    ], \n    \"firewater\": [\n        \"NN\"\n    ], \n    \"bailout\": [\n        \"NN\"\n    ], \n    \"Stansfield\": [\n        \"NNP\"\n    ], \n    \"Longer-term\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"assurance\": [\n        \"NN\"\n    ], \n    \"registries\": [\n        \"NNS\"\n    ], \n    \"irrigating\": [\n        \"VBG\"\n    ], \n    \"G\": [\n        \"NN\", \n        \"NNP\", \n        \"LS\"\n    ], \n    \"Rights\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Needing\": [\n        \"VBG\"\n    ], \n    \"non-bank\": [\n        \"JJ\"\n    ], \n    \"publicsector\": [\n        \"JJ\"\n    ], \n    \"coffers\": [\n        \"NNS\"\n    ], \n    \"noisemakers\": [\n        \"NNS\"\n    ], \n    \"Luigi\": [\n        \"NNS\"\n    ], \n    \"ajar\": [\n        \"RB\"\n    ], \n    \"Maharashtra\": [\n        \"NNP\"\n    ], \n    \"Fight\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"carnival\": [\n        \"NN\"\n    ], \n    \"waiter\": [\n        \"NN\"\n    ], \n    \"contented\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Microscopes\": [\n        \"NNS\"\n    ], \n    \"bar-buddy\": [\n        \"NN\"\n    ], \n    \"Andruses\": [\n        \"NNPS\"\n    ], \n    \"vision\": [\n        \"NN\"\n    ], \n    \"frequent\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"adoptees\": [\n        \"NNS\"\n    ], \n    \"Lindens\": [\n        \"NNPS\"\n    ], \n    \"fleeing\": [\n        \"VBG\"\n    ], \n    \"dungeons\": [\n        \"NNS\"\n    ], \n    \"SHEVARDNADZE\": [\n        \"NNP\"\n    ], \n    \"subterfuges\": [\n        \"NNS\"\n    ], \n    \"neo-populist\": [\n        \"JJ\"\n    ], \n    \"Super-Protein\": [\n        \"NNP\"\n    ], \n    \"enthralled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Black\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"intrastate\": [\n        \"JJ\"\n    ], \n    \"overheating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"noisier\": [\n        \"JJR\"\n    ], \n    \"infant-formula\": [\n        \"NN\"\n    ], \n    \"Lecky\": [\n        \"NNP\"\n    ], \n    \"Isolating\": [\n        \"VBG\"\n    ], \n    \"Anglo-American\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Minerva\": [\n        \"NNP\"\n    ], \n    \"Norwell\": [\n        \"NNP\"\n    ], \n    \"home-state\": [\n        \"JJ\"\n    ], \n    \"bare-bones\": [\n        \"JJ\"\n    ], \n    \"flatiron\": [\n        \"NN\"\n    ], \n    \"Saxe\": [\n        \"NNP\"\n    ], \n    \"vacuum-tube\": [\n        \"JJ\"\n    ], \n    \"fifteen-mile\": [\n        \"JJ\"\n    ], \n    \"speaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"anti-South\": [\n        \"JJ\"\n    ], \n    \"Oncor\": [\n        \"NNP\"\n    ], \n    \"inefficient\": [\n        \"JJ\"\n    ], \n    \"Miracle\": [\n        \"NNP\"\n    ], \n    \"Ministries\": [\n        \"NNP\"\n    ], \n    \"Denouncing\": [\n        \"VBG\"\n    ], \n    \"Court-packing\": [\n        \"JJ\"\n    ], \n    \"Hanshin\": [\n        \"NNP\"\n    ], \n    \"set-up\": [\n        \"NN\"\n    ], \n    \"Consulting\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"doddering\": [\n        \"JJ\"\n    ], \n    \"log-jam\": [\n        \"NN\"\n    ], \n    \"Addwest\": [\n        \"NNP\"\n    ], \n    \"automakers\": [\n        \"NNS\"\n    ], \n    \"big-shouldered\": [\n        \"JJ\"\n    ], \n    \"Styrofoam\": [\n        \"NNP\"\n    ], \n    \"Jayark\": [\n        \"NNP\"\n    ], \n    \"metre\": [\n        \"NN\"\n    ], \n    \"DeWalt\": [\n        \"NNP\"\n    ], \n    \"thyrotoxic\": [\n        \"JJ\"\n    ], \n    \"EUROPE\": [\n        \"NNP\"\n    ], \n    \"global-news\": [\n        \"NN\"\n    ], \n    \"Prescription-drug\": [\n        \"NN\"\n    ], \n    \"Bandini\": [\n        \"NNP\"\n    ], \n    \"Rockies\": [\n        \"NNPS\"\n    ], \n    \"defecting\": [\n        \"VBG\"\n    ], \n    \"Expectations\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Lovett\": [\n        \"NNP\"\n    ], \n    \"hard-hit\": [\n        \"JJ\"\n    ], \n    \"incontestable\": [\n        \"JJ\"\n    ], \n    \"himself\": [\n        \"PRP\"\n    ], \n    \"pastry\": [\n        \"NN\"\n    ], \n    \"nondefeatist\": [\n        \"JJ\"\n    ], \n    \"Waterston\": [\n        \"NNP\"\n    ], \n    \"Torrance\": [\n        \"NNP\"\n    ], \n    \"squaw\": [\n        \"NN\"\n    ], \n    \"squat\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Steudler\": [\n        \"NNP\"\n    ], \n    \"Broncs\": [\n        \"NNP\"\n    ], \n    \"foreigner\": [\n        \"NN\"\n    ], \n    \"complexity\": [\n        \"NN\"\n    ], \n    \"shocked\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"more-muscular\": [\n        \"JJ\"\n    ], \n    \"squad\": [\n        \"NN\"\n    ], \n    \"quieting\": [\n        \"VBG\"\n    ], \n    \"reacquainted\": [\n        \"VBN\"\n    ], \n    \"Bronco\": [\n        \"NNP\"\n    ], \n    \"Kazakhstan\": [\n        \"NNP\"\n    ], \n    \"Mathematical\": [\n        \"JJ\"\n    ], \n    \"ultimate\": [\n        \"JJ\"\n    ], \n    \"flattered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Worldwide\": [\n        \"NNP\"\n    ], \n    \"DHL\": [\n        \"NNP\"\n    ], \n    \"innuendoes\": [\n        \"NNS\"\n    ], \n    \"Parrot\": [\n        \"NNP\"\n    ], \n    \"with-it\": [\n        \"JJ\"\n    ], \n    \"arguing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cathedrals\": [\n        \"NNS\"\n    ], \n    \"cost-raising\": [\n        \"JJ\"\n    ], \n    \"billon\": [\n        \"NN\"\n    ], \n    \"out-migration\": [\n        \"NN\"\n    ], \n    \"humorists\": [\n        \"NNS\"\n    ], \n    \"Kellum\": [\n        \"NNP\"\n    ], \n    \"tugging\": [\n        \"VBG\"\n    ], \n    \"Keane\": [\n        \"NNP\"\n    ], \n    \"incisive\": [\n        \"JJ\"\n    ], \n    \"wheel-loader\": [\n        \"JJ\"\n    ], \n    \"angst\": [\n        \"NN\"\n    ], \n    \"bleating\": [\n        \"VBG\"\n    ], \n    \"cosponsors\": [\n        \"VBZ\"\n    ], \n    \"Actively\": [\n        \"RB\"\n    ], \n    \"Graubart\": [\n        \"NNP\"\n    ], \n    \"Duty-free\": [\n        \"JJ\"\n    ], \n    \"iniquitous\": [\n        \"JJ\"\n    ], \n    \"Harriers\": [\n        \"NNPS\"\n    ], \n    \"WE\": [\n        \"PRP\"\n    ], \n    \"WB\": [\n        \"NNP\"\n    ], \n    \"big-boned\": [\n        \"JJ\"\n    ], \n    \"Detached\": [\n        \"VBN\"\n    ], \n    \"pro-U.N.F.P.\": [\n        \"JJ\"\n    ], \n    \"Yuppie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disunity\": [\n        \"NN\"\n    ], \n    \"WW\": [\n        \"NNP\"\n    ], \n    \"bedside\": [\n        \"NN\"\n    ], \n    \"Barre\": [\n        \"NNP\"\n    ], \n    \"maninstays\": [\n        \"NNS\"\n    ], \n    \"high-profile\": [\n        \"JJ\"\n    ], \n    \"sponsorship\": [\n        \"NN\"\n    ], \n    \"enthusiast\": [\n        \"NN\"\n    ], \n    \"new-rich\": [\n        \"JJ\"\n    ], \n    \"We\": [\n        \"PRP\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Wa\": [\n        \"NNP\", \n        \",\"\n    ], \n    \"Wo\": [\n        \"MD\"\n    ], \n    \"non-Soviet\": [\n        \"JJ\"\n    ], \n    \"treasure\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Uzi-model\": [\n        \"JJ\"\n    ], \n    \"Wu\": [\n        \"NNP\"\n    ], \n    \"windbag\": [\n        \"NN\"\n    ], \n    \"Diary\": [\n        \"NNP\"\n    ], \n    \"coagulating\": [\n        \"VBG\"\n    ], \n    \"travesty\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"treasury\": [\n        \"NN\"\n    ], \n    \"enthusiasm\": [\n        \"NN\"\n    ], \n    \"pegged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Partisan\": [\n        \"NNP\"\n    ], \n    \"program-trade\": [\n        \"JJ\"\n    ], \n    \"even-larger\": [\n        \"JJ\"\n    ], \n    \"Kleist\": [\n        \"NNP\"\n    ], \n    \"self-plagiarisms\": [\n        \"NNS\"\n    ], \n    \"seekin\": [\n        \"VBG\"\n    ], \n    \"Frothingham\": [\n        \"NNP\"\n    ], \n    \"satiety\": [\n        \"NN\"\n    ], \n    \"hailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"gee\": [\n        \"UH\"\n    ], \n    \"juleps\": [\n        \"NNS\"\n    ], \n    \"unaltered\": [\n        \"JJ\"\n    ], \n    \"chiropractor\": [\n        \"NN\"\n    ], \n    \"bitters\": [\n        \"NNS\"\n    ], \n    \"Pelin\": [\n        \"NNP\"\n    ], \n    \"enjoys\": [\n        \"VBZ\"\n    ], \n    \"in-migration\": [\n        \"NN\"\n    ], \n    \"Mommor\": [\n        \"NNP\"\n    ], \n    \"Laird\": [\n        \"NNP\"\n    ], \n    \"Right\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"Angel\": [\n        \"NNP\"\n    ], \n    \"W.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"colossus\": [\n        \"NN\"\n    ], \n    \"Snodgrass\": [\n        \"NNP\"\n    ], \n    \"requesting\": [\n        \"VBG\"\n    ], \n    \"growth-stunting\": [\n        \"JJ\"\n    ], \n    \"miles\": [\n        \"NNS\"\n    ], \n    \"Weiler\": [\n        \"NNP\"\n    ], \n    \"less-restrictive\": [\n        \"JJ\"\n    ], \n    \"nostril\": [\n        \"NN\"\n    ], \n    \"Attribute\": [\n        \"NNP\"\n    ], \n    \"Anger\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"tallow\": [\n        \"NN\"\n    ], \n    \"Delacre\": [\n        \"NNP\"\n    ], \n    \"ANR\": [\n        \"NNP\"\n    ], \n    \"declared\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Wyndham\": [\n        \"NNP\"\n    ], \n    \"Grant\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Provide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sear\": [\n        \"VB\"\n    ], \n    \"Wansee\": [\n        \"NNP\"\n    ], \n    \"seat\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"starlet\": [\n        \"NN\"\n    ], \n    \"HELD\": [\n        \"VBD\"\n    ], \n    \"declares\": [\n        \"VBZ\"\n    ], \n    \"Neave\": [\n        \"NNP\"\n    ], \n    \"Grand\": [\n        \"NNP\", \n        \"FW\", \n        \"JJ\"\n    ], \n    \"Placement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"emulating\": [\n        \"VBG\"\n    ], \n    \"Grano\": [\n        \"NNP\"\n    ], \n    \"Shaefer\": [\n        \"NNP\"\n    ], \n    \"Machiguenga\": [\n        \"NNP\"\n    ], \n    \"Nakazato\": [\n        \"NNP\"\n    ], \n    \"Bonecrusher\": [\n        \"NNP\"\n    ], \n    \"indicted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Illiterate\": [\n        \"JJ\"\n    ], \n    \"tongue-tied\": [\n        \"JJ\"\n    ], \n    \"pilot-management\": [\n        \"JJ\"\n    ], \n    \"label\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"boundaries\": [\n        \"NNS\"\n    ], \n    \"public-information\": [\n        \"JJ\"\n    ], \n    \"permeated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mercantilists\": [\n        \"NNS\"\n    ], \n    \"government...\": [\n        \":\"\n    ], \n    \"across\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"property-tax\": [\n        \"JJ\"\n    ], \n    \"satiate\": [\n        \"VB\"\n    ], \n    \"Nervousness\": [\n        \"NN\"\n    ], \n    \"infrastructure\": [\n        \"NN\"\n    ], \n    \"august\": [\n        \"JJ\"\n    ], \n    \"FOR\": [\n        \"IN\"\n    ], \n    \"FOX\": [\n        \"NN\"\n    ], \n    \"data-base\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"procreativity\": [\n        \"NN\"\n    ], \n    \"dreamless\": [\n        \"JJ\"\n    ], \n    \"dogging\": [\n        \"VBG\"\n    ], \n    \"Each\": [\n        \"DT\"\n    ], \n    \"beefed-up\": [\n        \"JJ\"\n    ], \n    \"gauntlet\": [\n        \"NN\"\n    ], \n    \"Perse\": [\n        \"NNP\"\n    ], \n    \"per-passenger\": [\n        \"NN\"\n    ], \n    \"Potlatch\": [\n        \"NNP\"\n    ], \n    \"Carver\": [\n        \"NNP\"\n    ], \n    \"philosophically\": [\n        \"RB\"\n    ], \n    \"feelers\": [\n        \"NNS\"\n    ], \n    \"Carvey\": [\n        \"NNP\"\n    ], \n    \"fulminate\": [\n        \"VB\"\n    ], \n    \"badly-needed\": [\n        \"JJ\"\n    ], \n    \"blasts\": [\n        \"NNS\"\n    ], \n    \"sketchy\": [\n        \"JJ\"\n    ], \n    \"Taught\": [\n        \"VBN\"\n    ], \n    \"tout\": [\n        \"VB\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"Carved\": [\n        \"JJ\"\n    ], \n    \"Statistical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"womanhood\": [\n        \"NN\"\n    ], \n    \"Laboratory\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"longshot\": [\n        \"NN\"\n    ], \n    \"nonentity\": [\n        \"NN\"\n    ], \n    \"long-sleeved\": [\n        \"JJ\"\n    ], \n    \"ISRAEL\": [\n        \"NNP\"\n    ], \n    \"polities\": [\n        \"NNS\"\n    ], \n    \"about-face\": [\n        \"NN\"\n    ], \n    \"Wachtel\": [\n        \"NNP\"\n    ], \n    \"dislocations\": [\n        \"NNS\"\n    ], \n    \"V-shaped\": [\n        \"JJ\"\n    ], \n    \"McLennan\": [\n        \"NNP\"\n    ], \n    \"PRICIEST\": [\n        \"JJS\"\n    ], \n    \"Riley\": [\n        \"NNP\"\n    ], \n    \"considering\": [\n        \"VBG\"\n    ], \n    \"Assembly\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"capable\": [\n        \"JJ\"\n    ], \n    \"wobble\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Affiliates\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Optical\": [\n        \"NNP\"\n    ], \n    \"wobbly\": [\n        \"JJ\"\n    ], \n    \"Assemble\": [\n        \"VB\"\n    ], \n    \"Affiliated\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"capably\": [\n        \"RB\"\n    ], \n    \"derogation\": [\n        \"NN\"\n    ], \n    \"lustily\": [\n        \"RB\"\n    ], \n    \"vopos\": [\n        \"FW\"\n    ], \n    \"repurchasing\": [\n        \"VBG\"\n    ], \n    \"circumference\": [\n        \"NN\"\n    ], \n    \"Hathaway\": [\n        \"NNP\"\n    ], \n    \"wake\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Solovyov\": [\n        \"NNP\"\n    ], \n    \"stand-ups\": [\n        \"NNS\"\n    ], \n    \"hardcore\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Revise\": [\n        \"VB\"\n    ], \n    \"plastering\": [\n        \"NN\"\n    ], \n    \"Chiaromonte\": [\n        \"NNP\"\n    ], \n    \"Showalter\": [\n        \"NNP\"\n    ], \n    \"earlier-reported\": [\n        \"JJ\"\n    ], \n    \"Baths\": [\n        \"NNPS\"\n    ], \n    \"investigating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Shipbuilders\": [\n        \"NNPS\"\n    ], \n    \"falsified\": [\n        \"VBN\"\n    ], \n    \"blackballed\": [\n        \"VBN\"\n    ], \n    \"Shivers\": [\n        \"NNP\"\n    ], \n    \"Crutzen\": [\n        \"NNP\"\n    ], \n    \"Tibetan-like\": [\n        \"JJ\"\n    ], \n    \"Burge\": [\n        \"NNP\"\n    ], \n    \"Intermediate\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Blumenfeld\": [\n        \"NNP\"\n    ], \n    \"Symposium\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"protein\": [\n        \"NN\"\n    ], \n    \"Targetted\": [\n        \"NNP\"\n    ], \n    \"essayish\": [\n        \"JJ\"\n    ], \n    \"doubting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"dairies\": [\n        \"NNS\"\n    ], \n    \"paring\": [\n        \"VBG\"\n    ], \n    \"woodland\": [\n        \"JJ\"\n    ], \n    \"Infusion\": [\n        \"NN\"\n    ], \n    \"lava\": [\n        \"NN\"\n    ], \n    \"Destruction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"grantors\": [\n        \"NNS\"\n    ], \n    \"extended\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"expended\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mustangs\": [\n        \"NNP\"\n    ], \n    \"incarceration\": [\n        \"NN\"\n    ], \n    \"Barcelona\": [\n        \"NNP\"\n    ], \n    \"annulled\": [\n        \"VBD\"\n    ], \n    \"Holliday\": [\n        \"NNP\"\n    ], \n    \"Ortho\": [\n        \"NNP\"\n    ], \n    \"CAPITAL\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pistoleers\": [\n        \"NNS\"\n    ], \n    \"shopworn\": [\n        \"JJ\"\n    ], \n    \"Hampton\": [\n        \"NNP\"\n    ], \n    \"Indian-summer\": [\n        \"JJ\"\n    ], \n    \"identifiers\": [\n        \"NNS\"\n    ], \n    \"Fosterites\": [\n        \"NNP\"\n    ], \n    \"stunted\": [\n        \"VBN\"\n    ], \n    \"Carlton\": [\n        \"NNP\"\n    ], \n    \"Bit\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"admonishing\": [\n        \"VBG\"\n    ], \n    \"Marxists\": [\n        \"NNPS\"\n    ], \n    \"allowance\": [\n        \"NN\"\n    ], \n    \"convened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"nitrogen-fertilizer\": [\n        \"NN\"\n    ], \n    \"consisted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"alfalfa\": [\n        \"NN\"\n    ], \n    \"Englishy\": [\n        \"JJ\"\n    ], \n    \"Einsatzkommandos\": [\n        \"NNP\"\n    ], \n    \"Feedlots\": [\n        \"NNS\"\n    ], \n    \"snug-fitting\": [\n        \"JJ\"\n    ], \n    \"Pittsburg\": [\n        \"NNP\"\n    ], \n    \"leeway\": [\n        \"NN\"\n    ], \n    \"flavor\": [\n        \"NN\"\n    ], \n    \"embroideries\": [\n        \"NNS\"\n    ], \n    \"statesmen\": [\n        \"NNS\"\n    ], \n    \"willy-nilly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"decriminalization\": [\n        \"NN\"\n    ], \n    \"tourism\": [\n        \"NN\"\n    ], \n    \"Putka\": [\n        \"NNP\"\n    ], \n    \"pre-clinical\": [\n        \"JJ\"\n    ], \n    \"silver-painted\": [\n        \"JJ\"\n    ], \n    \"Weekes\": [\n        \"NNP\"\n    ], \n    \"Nisbet\": [\n        \"NNP\"\n    ], \n    \"Enver\": [\n        \"NNP\"\n    ], \n    \"swooning\": [\n        \"NN\"\n    ], \n    \"glutinous\": [\n        \"JJ\"\n    ], \n    \"tenses\": [\n        \"NNS\"\n    ], \n    \"First-Born\": [\n        \"NNP\"\n    ], \n    \"Coconut\": [\n        \"NNP\"\n    ], \n    \"tensed\": [\n        \"VBD\"\n    ], \n    \"Telefonica\": [\n        \"NNP\"\n    ], \n    \"Well-trained\": [\n        \"JJ\"\n    ], \n    \"GRAND\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Liberal\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"DC-10s\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"vertically\": [\n        \"RB\"\n    ], \n    \"acquainted\": [\n        \"VBN\"\n    ], \n    \"vending\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"arsonist\": [\n        \"NN\"\n    ], \n    \"Haase\": [\n        \"NNP\"\n    ], \n    \"utopians\": [\n        \"NNS\"\n    ], \n    \"Gannon\": [\n        \"NNP\"\n    ], \n    \"demography\": [\n        \"NN\"\n    ], \n    \"Moreover\": [\n        \"RB\", \n        \"JJR\"\n    ], \n    \"passionate\": [\n        \"JJ\"\n    ], \n    \"escalators\": [\n        \"NNS\"\n    ], \n    \"Digest\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"woolly-minded\": [\n        \"JJ\"\n    ], \n    \"Schmidt-Chiari\": [\n        \"NNP\"\n    ], \n    \"obsessions\": [\n        \"NNS\"\n    ], \n    \"Gilkson\": [\n        \"NNP\"\n    ], \n    \"Romana\": [\n        \"NNP\"\n    ], \n    \"pronounce\": [\n        \"VB\"\n    ], \n    \"Analogously\": [\n        \"RB\"\n    ], \n    \"showman\": [\n        \"NN\"\n    ], \n    \"Pembina\": [\n        \"NNP\"\n    ], \n    \"snoring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"smarting\": [\n        \"VBG\"\n    ], \n    \"prerogatives\": [\n        \"NNS\"\n    ], \n    \"potentiometer\": [\n        \"NN\"\n    ], \n    \"illustrated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Shipyard\": [\n        \"NNP\"\n    ], \n    \"Pasteur\": [\n        \"NNP\"\n    ], \n    \"Skies\": [\n        \"NNPS\"\n    ], \n    \"thrust-to-weight\": [\n        \"JJ\"\n    ], \n    \"staff-reduction\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"snake-like\": [\n        \"JJ\"\n    ], \n    \"job-training\": [\n        \"NN\"\n    ], \n    \"Ciardi\": [\n        \"NNP\"\n    ], \n    \"fitness\": [\n        \"NN\"\n    ], \n    \"sixty-day\": [\n        \"JJ\"\n    ], \n    \"Vietnam\": [\n        \"NNP\"\n    ], \n    \"glycerol\": [\n        \"NN\"\n    ], \n    \"Behavior\": [\n        \"NN\"\n    ], \n    \"Assuredly\": [\n        \"RB\"\n    ], \n    \"glomerular\": [\n        \"JJ\"\n    ], \n    \"Intermediates\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"long-studied\": [\n        \"JJ\"\n    ], \n    \"R-shaped\": [\n        \"JJ\"\n    ], \n    \"lithograph\": [\n        \"NN\"\n    ], \n    \"city-states\": [\n        \"NNS\"\n    ], \n    \"Images\": [\n        \"NNP\"\n    ], \n    \"most-dangerous\": [\n        \"JJ\"\n    ], \n    \"purported\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"fertile\": [\n        \"JJ\"\n    ], \n    \"Middletown\": [\n        \"NNP\"\n    ], \n    \"quintets\": [\n        \"NNS\"\n    ], \n    \"cranny\": [\n        \"NN\"\n    ], \n    \"Buaford\": [\n        \"NNP\"\n    ], \n    \"Maintenance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"certitudes\": [\n        \"NNS\"\n    ], \n    \"Trapped\": [\n        \"VBN\"\n    ], \n    \"pastures\": [\n        \"NNS\"\n    ], \n    \"hassling\": [\n        \"VBG\"\n    ], \n    \"Leperq\": [\n        \"NNP\"\n    ], \n    \"Baruschke\": [\n        \"NNP\"\n    ], \n    \"distracted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"collided\": [\n        \"VBD\"\n    ], \n    \"deadlines\": [\n        \"NNS\"\n    ], \n    \"heroine\": [\n        \"NN\"\n    ], \n    \"Appropriation\": [\n        \"NNP\"\n    ], \n    \"practised\": [\n        \"JJ\"\n    ], \n    \"tyrosine\": [\n        \"NN\"\n    ], \n    \"gains-tax-cut\": [\n        \"JJ\"\n    ], \n    \"spicy\": [\n        \"JJ\"\n    ], \n    \"Baliles\": [\n        \"NNP\"\n    ], \n    \"Dorgan\": [\n        \"NNP\"\n    ], \n    \"wholehearted\": [\n        \"JJ\"\n    ], \n    \"Orlick\": [\n        \"NNP\"\n    ], \n    \"pre-kidnap\": [\n        \"JJ\"\n    ], \n    \"Meller\": [\n        \"NNP\"\n    ], \n    \"information-services\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Mellen\": [\n        \"NNP\"\n    ], \n    \"whichever-the-hell\": [\n        \"JJ\"\n    ], \n    \"teddy-bear\": [\n        \"NN\"\n    ], \n    \"BATTLED\": [\n        \"VBD\"\n    ], \n    \"Guber\": [\n        \"NNP\"\n    ], \n    \"spice\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"well-understood\": [\n        \"JJ\"\n    ], \n    \"Eddie\": [\n        \"NNP\"\n    ], \n    \"Angeles-based\": [\n        \"JJ\"\n    ], \n    \"Wheat-germ\": [\n        \"NN\"\n    ], \n    \"powerless\": [\n        \"JJ\"\n    ], \n    \"dawdling\": [\n        \"VBG\"\n    ], \n    \"Hershiser\": [\n        \"NNP\"\n    ], \n    \"aesthetes\": [\n        \"NNS\"\n    ], \n    \"Shijie\": [\n        \"NNP\"\n    ], \n    \"Crucial\": [\n        \"JJ\"\n    ], \n    \"one-sixteenth\": [\n        \"NN\"\n    ], \n    \"undiminished\": [\n        \"JJ\"\n    ], \n    \"examine\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spat\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"Riding\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Weinroth\": [\n        \"NNP\"\n    ], \n    \"Mulligatawny\": [\n        \"NNP\"\n    ], \n    \"casualty\": [\n        \"NN\"\n    ], \n    \"strikers\": [\n        \"NNS\"\n    ], \n    \"Busby\": [\n        \"NNP\"\n    ], \n    \"turmoils\": [\n        \"NNS\"\n    ], \n    \"Cuneo\": [\n        \"NNP\"\n    ], \n    \"designating\": [\n        \"VBG\"\n    ], \n    \"weeded\": [\n        \"VBN\"\n    ], \n    \"Courtenay\": [\n        \"NNP\"\n    ], \n    \"what-nots\": [\n        \"NNS\"\n    ], \n    \"Buddhists\": [\n        \"NNP\"\n    ], \n    \"Somewhat\": [\n        \"RB\"\n    ], \n    \"redeposition\": [\n        \"NN\"\n    ], \n    \"Tse-tung\": [\n        \"NNP\"\n    ], \n    \"painted-in\": [\n        \"NN\"\n    ], \n    \"victimize\": [\n        \"VBP\"\n    ], \n    \"Milko\": [\n        \"NNP\"\n    ], \n    \"Climate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deliverers\": [\n        \"NNS\"\n    ], \n    \"FPA\": [\n        \"NNP\"\n    ], \n    \"equitably\": [\n        \"RB\"\n    ], \n    \"Fixed-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"FPL\": [\n        \"NNP\"\n    ], \n    \"Yorktown\": [\n        \"NNP\"\n    ], \n    \"custom-made\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Milka\": [\n        \"NNP\"\n    ], \n    \"Milky\": [\n        \"NNP\"\n    ], \n    \"Alfredo\": [\n        \"NNP\"\n    ], \n    \"equitable\": [\n        \"JJ\"\n    ], \n    \"itches\": [\n        \"VBZ\"\n    ], \n    \"Beneficial\": [\n        \"NNP\"\n    ], \n    \"blackmailers\": [\n        \"NNS\"\n    ], \n    \"Healthdyne\": [\n        \"NNP\"\n    ], \n    \"wanta\": [\n        \"VB\"\n    ], \n    \"excretion\": [\n        \"NN\"\n    ], \n    \"boosters\": [\n        \"NNS\"\n    ], \n    \"u\": [\n        \"PRP\", \n        \"NN\"\n    ], \n    \"oases\": [\n        \"NNS\"\n    ], \n    \"double-bolt\": [\n        \"VB\"\n    ], \n    \"grassroots\": [\n        \"NNS\"\n    ], \n    \"Waning\": [\n        \"JJ\"\n    ], \n    \"departmentalizing\": [\n        \"VBG\"\n    ], \n    \"Tomczak\": [\n        \"NNP\"\n    ], \n    \"full-body\": [\n        \"JJ\"\n    ], \n    \"Kaplan\": [\n        \"NNP\"\n    ], \n    \"Asahi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Championship\": [\n        \"NNP\"\n    ], \n    \"McLuhan\": [\n        \"NNP\"\n    ], \n    \"Icahn\": [\n        \"NNP\"\n    ], \n    \"tomes\": [\n        \"NNS\"\n    ], \n    \"PRIME\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"puffs\": [\n        \"VBZ\"\n    ], \n    \"Hazlitt\": [\n        \"NNP\"\n    ], \n    \"righted\": [\n        \"VBN\"\n    ], \n    \"Giorgios\": [\n        \"NNP\"\n    ], \n    \"puffy\": [\n        \"JJ\"\n    ], \n    \"plausibility\": [\n        \"NN\"\n    ], \n    \"yon\": [\n        \"RB\"\n    ], \n    \"Socrates\": [\n        \"NNP\"\n    ], \n    \"Calude\": [\n        \"NNP\"\n    ], \n    \"Pels\": [\n        \"NNP\"\n    ], \n    \"Liman\": [\n        \"NNP\"\n    ], \n    \"clench\": [\n        \"VB\"\n    ], \n    \"Objections\": [\n        \"NNS\"\n    ], \n    \"squirted\": [\n        \"VBD\"\n    ], \n    \"forking\": [\n        \"VBG\"\n    ], \n    \"alma\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"phosphines\": [\n        \"NNS\"\n    ], \n    \"diagnometer\": [\n        \"NN\"\n    ], \n    \"Piraro\": [\n        \"NNP\"\n    ], \n    \"CTCA\": [\n        \"NNP\"\n    ], \n    \"Vilnius\": [\n        \"NNP\"\n    ], \n    \"outworn\": [\n        \"JJ\"\n    ], \n    \"clinch\": [\n        \"VB\"\n    ], \n    \"arithmetized\": [\n        \"VBN\"\n    ], \n    \"straighten\": [\n        \"VB\"\n    ], \n    \"Peppers\": [\n        \"NNP\"\n    ], \n    \"squeezes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"late-summer\\\\\": [\n        \"JJ\"\n    ], \n    \"Corollas\": [\n        \"NNPS\"\n    ], \n    \"repeals\": [\n        \"VBZ\"\n    ], \n    \"Densmore\": [\n        \"NNP\"\n    ], \n    \"Laro\": [\n        \"NNP\"\n    ], \n    \"wrecked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"trinket\": [\n        \"NN\"\n    ], \n    \"Muffler\": [\n        \"NNP\"\n    ], \n    \"Hydro\": [\n        \"NNP\"\n    ], \n    \"wrecker\": [\n        \"NN\"\n    ], \n    \"fetishize\": [\n        \"VBP\"\n    ], \n    \"hotbed\": [\n        \"NN\"\n    ], \n    \"HCS\": [\n        \"NNP\"\n    ], \n    \"mull\": [\n        \"VB\"\n    ], \n    \"action-adventure\": [\n        \"JJ\"\n    ], \n    \"bushwhacked\": [\n        \"VBD\"\n    ], \n    \"calculates\": [\n        \"VBZ\"\n    ], \n    \"witchy\": [\n        \"JJ\"\n    ], \n    \"mule\": [\n        \"NN\"\n    ], \n    \"HCC\": [\n        \"NNP\"\n    ], \n    \"Georgescu\": [\n        \"NNP\"\n    ], \n    \"HCF\": [\n        \"NNP\"\n    ], \n    \"affectionately\": [\n        \"RB\"\n    ], \n    \"Fishback\": [\n        \"NNP\"\n    ], \n    \"stupor\": [\n        \"NN\"\n    ], \n    \"Clark\": [\n        \"NNP\"\n    ], \n    \"Clare\": [\n        \"NNP\"\n    ], \n    \"squiggly\": [\n        \"RB\"\n    ], \n    \"Clara\": [\n        \"NNP\"\n    ], \n    \"Wrangle\": [\n        \"VB\"\n    ], \n    \"WLIB\": [\n        \"NNP\"\n    ], \n    \"repaying\": [\n        \"VBG\"\n    ], \n    \"Keenan\": [\n        \"NNP\"\n    ], \n    \"Separating\": [\n        \"VBG\"\n    ], \n    \"Marquette\": [\n        \"NNP\"\n    ], \n    \"collated\": [\n        \"VBN\"\n    ], \n    \"specialize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Misawa\": [\n        \"NNP\"\n    ], \n    \"splashes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Reform\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"phasing-out\": [\n        \"NN\"\n    ], \n    \"munchkin\": [\n        \"NN\"\n    ], \n    \"Mmes.\": [\n        \"NNPS\"\n    ], \n    \"rock-ribbed\": [\n        \"JJ\"\n    ], \n    \"Carboni\": [\n        \"NNP\"\n    ], \n    \"Dolly\": [\n        \"NNP\"\n    ], \n    \"pigmented\": [\n        \"VBN\"\n    ], \n    \"Dolls\": [\n        \"NNP\"\n    ], \n    \"composure\": [\n        \"NN\"\n    ], \n    \"correspondent\\\\/news\": [\n        \"NNS\"\n    ], \n    \"monocytogenes\": [\n        \"FW\"\n    ], \n    \"Bialystok\": [\n        \"NNP\"\n    ], \n    \"anathema\": [\n        \"NN\"\n    ], \n    \"Astrophysicist\": [\n        \"NN\"\n    ], \n    \"Houtz\": [\n        \"NNP\"\n    ], \n    \"Coming\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Lekberg\": [\n        \"NNP\"\n    ], \n    \"Governments\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Biblically\": [\n        \"RB\"\n    ], \n    \"engaged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"jangling\": [\n        \"VBG\"\n    ], \n    \"just-departed\": [\n        \"JJ\"\n    ], \n    \"Communist-led\": [\n        \"JJ\"\n    ], \n    \"Byronic\": [\n        \"JJ\"\n    ], \n    \"disfavor\": [\n        \"NN\"\n    ], \n    \"karaoke\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Purcell\": [\n        \"NNP\"\n    ], \n    \"Brody\": [\n        \"NNP\"\n    ], \n    \"hour\": [\n        \"NN\"\n    ], \n    \"recall\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"sulkily\": [\n        \"RB\"\n    ], \n    \"Activists\": [\n        \"NNS\"\n    ], \n    \"marcato\": [\n        \"FW\"\n    ], \n    \"Stoicism\": [\n        \"NN\"\n    ], \n    \"social-register\": [\n        \"JJ\"\n    ], \n    \"Oregonians\": [\n        \"NNPS\"\n    ], \n    \"remain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"halts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"reaps\": [\n        \"VBZ\"\n    ], \n    \"proteolytic\": [\n        \"JJ\"\n    ], \n    \"stubborn\": [\n        \"JJ\"\n    ], \n    \"ritual\": [\n        \"NN\"\n    ], \n    \"synchronized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"rejuvenated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"minimun\": [\n        \"NN\"\n    ], \n    \"collision\": [\n        \"NN\"\n    ], \n    \"minimum\": [\n        \"JJ\", \n        \"JJ|NN\", \n        \"NN\"\n    ], \n    \"halfmile\": [\n        \"NN\"\n    ], \n    \"despot\": [\n        \"NN\"\n    ], \n    \"petroleum-exploration\": [\n        \"JJ\"\n    ], \n    \"UNESCO\": [\n        \"NNP\"\n    ], \n    \"Calif\": [\n        \"NNP\"\n    ], \n    \"biography\": [\n        \"NN\"\n    ], \n    \"rejuvenates\": [\n        \"VBZ\"\n    ], \n    \"homicide\": [\n        \"NN\"\n    ], \n    \"Yalta\": [\n        \"NNP\"\n    ], \n    \"Sandhurst\": [\n        \"NNP\"\n    ], \n    \"Mustard\": [\n        \"NN\"\n    ], \n    \"Chromatography\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"misallocated\": [\n        \"VBD\"\n    ], \n    \"technology\": [\n        \"NN\"\n    ], \n    \"comfort\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"low-risk\": [\n        \"JJ\"\n    ], \n    \"maps\": [\n        \"NNS\"\n    ], \n    \"Wamre\": [\n        \"NNP\"\n    ], \n    \"Nouns\": [\n        \"NNS\"\n    ], \n    \"stir\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Comanches\": [\n        \"NNPS\"\n    ], \n    \"uninfected\": [\n        \"JJ\"\n    ], \n    \"plasmodium\": [\n        \"NN\"\n    ], \n    \"Kelli\": [\n        \"NNP\"\n    ], \n    \"kitty\": [\n        \"NN\"\n    ], \n    \"divinities\": [\n        \"NNS\"\n    ], \n    \"dry-gulchin\": [\n        \"NN\"\n    ], \n    \"spread-sensitive\": [\n        \"JJ\"\n    ], \n    \"Shafroth\": [\n        \"NNP\"\n    ], \n    \"Transplantation\": [\n        \"NNP\"\n    ], \n    \"countering\": [\n        \"VBG\"\n    ], \n    \"accorded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Erde\": [\n        \"NNP\"\n    ], \n    \"verified\": [\n        \"VBN\"\n    ], \n    \"undecided\": [\n        \"JJ\"\n    ], \n    \"reappeared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hair-trigger\": [\n        \"JJ\"\n    ], \n    \"CLARK\": [\n        \"NNP\"\n    ], \n    \"tradeoffs\": [\n        \"NNS\"\n    ], \n    \"conglomerates\": [\n        \"NNS\"\n    ], \n    \"special-service\": [\n        \"JJ\"\n    ], \n    \"Muscular\": [\n        \"NNP\"\n    ], \n    \"dragon\": [\n        \"NN\"\n    ], \n    \"BVIslander\": [\n        \"NN\"\n    ], \n    \"rebuked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"co-exist\": [\n        \"VB\"\n    ], \n    \"BROKERAGE\": [\n        \"NN\"\n    ], \n    \"Kurtzig\": [\n        \"NNP\"\n    ], \n    \"Bish\": [\n        \"NNP\"\n    ], \n    \"mulching\": [\n        \"VBG\"\n    ], \n    \"heartfelt\": [\n        \"JJ\"\n    ], \n    \"RAYCHEM\": [\n        \"NNP\"\n    ], \n    \"Creamer\": [\n        \"NNP\"\n    ], \n    \"Roald\": [\n        \"NNP\"\n    ], \n    \"Inefficient-Market\": [\n        \"NNP\"\n    ], \n    \"Canfield\": [\n        \"NNP\"\n    ], \n    \"hundredth\": [\n        \"JJ\"\n    ], \n    \"comedic\": [\n        \"JJ\"\n    ], \n    \"comedie\": [\n        \"NN\"\n    ], \n    \"emaciated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Final-hour\": [\n        \"JJ\"\n    ], \n    \"verifier\": [\n        \"NN\"\n    ], \n    \"seasonally\": [\n        \"RB\"\n    ], \n    \"three-hour-long\": [\n        \"JJ\"\n    ], \n    \"counter-culture\": [\n        \"JJ\"\n    ], \n    \"Jath\": [\n        \"NNP\"\n    ], \n    \"worshiping\": [\n        \"VBG\"\n    ], \n    \"cinches\": [\n        \"NNS\"\n    ], \n    \"Fuchs\": [\n        \"NNP\"\n    ], \n    \"invigoration\": [\n        \"NN\"\n    ], \n    \"Scana\": [\n        \"NNP\"\n    ], \n    \"hyphens\": [\n        \"NNS\"\n    ], \n    \"compound\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"walk-to\": [\n        \"JJ\"\n    ], \n    \"viewers\": [\n        \"NNS\"\n    ], \n    \"groped\": [\n        \"VBD\"\n    ], \n    \"mystery\": [\n        \"NN\"\n    ], \n    \"huddle\": [\n        \"NN\"\n    ], \n    \"Polished\": [\n        \"JJ\"\n    ], \n    \"Chmn.\": [\n        \"NNP\"\n    ], \n    \"Kika\": [\n        \"NNP\"\n    ], \n    \"Super-Sets\": [\n        \"NNP\"\n    ], \n    \"evade\": [\n        \"VB\"\n    ], \n    \"micro\": [\n        \"JJ\"\n    ], \n    \"Merkurs\": [\n        \"NNPS\"\n    ], \n    \"rattail\": [\n        \"NN\"\n    ], \n    \"submarine-launched\": [\n        \"JJ\"\n    ], \n    \"repeating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"integrated-circuit\": [\n        \"JJ\"\n    ], \n    \"politicize\": [\n        \"VB\"\n    ], \n    \"fuel-economy\": [\n        \"NN\"\n    ], \n    \"Berle\": [\n        \"NNP\"\n    ], \n    \"above-ceiling\": [\n        \"NN\"\n    ], \n    \"engaging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"managements\": [\n        \"NNS\"\n    ], \n    \"suspecting\": [\n        \"VBG\"\n    ], \n    \"edged\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"wisecracks\": [\n        \"NNS\"\n    ], \n    \"bandaged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"acquisitive\": [\n        \"JJ\"\n    ], \n    \"Coor\": [\n        \"NNP\"\n    ], \n    \"Braumeisters\": [\n        \"NNPS\"\n    ], \n    \"traitorous\": [\n        \"JJ\"\n    ], \n    \"sickness\": [\n        \"NN\"\n    ], \n    \"T-helper\": [\n        \"NN\"\n    ], \n    \"Cook\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"evaluation\": [\n        \"NN\"\n    ], \n    \"Cool\": [\n        \"JJ\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"semi-celebrities\": [\n        \"NNS\"\n    ], \n    \"Long-range\": [\n        \"JJ\"\n    ], \n    \"office\\\\/dept.\": [\n        \"NN\"\n    ], \n    \"backer\": [\n        \"NN\"\n    ], \n    \"extraordinary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"asked...\": [\n        \":\"\n    ], \n    \"Enos\": [\n        \"NNP\"\n    ], \n    \"deflate\": [\n        \"VB\"\n    ], \n    \"backed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Migliorino\": [\n        \"NNP\"\n    ], \n    \"Nielsen\": [\n        \"NNP\"\n    ], \n    \"faucet\": [\n        \"NN\"\n    ], \n    \"Archbishop\": [\n        \"NNP\"\n    ], \n    \"constraining\": [\n        \"VBG\"\n    ], \n    \"Puritan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"white-spirits\": [\n        \"JJ\"\n    ], \n    \"PAPER\": [\n        \"NN\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Puritans\": [\n        \"NNS\"\n    ], \n    \"free-spiritedness\": [\n        \"NN\"\n    ], \n    \"bawh\": [\n        \"NN\"\n    ], \n    \"private-bank\": [\n        \"JJ\"\n    ], \n    \"Lorena\": [\n        \"NNP\"\n    ], \n    \"advertisement\": [\n        \"NN\"\n    ], \n    \"Smukler\": [\n        \"NNP\"\n    ], \n    \"treetops\": [\n        \"NNS\"\n    ], \n    \"Homewood\": [\n        \"NNP\"\n    ], \n    \"welcome\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pituitary-gland\": [\n        \"NN\"\n    ], \n    \"major-burden-to-the-planet\": [\n        \"NN\"\n    ], \n    \"steel-gray\": [\n        \"JJ\"\n    ], \n    \"faultlessly\": [\n        \"RB\"\n    ], \n    \"mercilessly\": [\n        \"RB\"\n    ], \n    \"Screen\": [\n        \"NN\"\n    ], \n    \"WPP\": [\n        \"NNP\"\n    ], \n    \"jetty\": [\n        \"NN\"\n    ], \n    \"Slums\": [\n        \"NNP\"\n    ], \n    \"Environmental\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"paper-products\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"four-count\": [\n        \"JJ\"\n    ], \n    \"Silesia\": [\n        \"NNP\"\n    ], \n    \"catapult\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Justin\": [\n        \"NNP\"\n    ], \n    \"Ballenger\": [\n        \"NNP\"\n    ], \n    \"Napkins\": [\n        \"NNS\"\n    ], \n    \"sea-launched\": [\n        \"JJ\"\n    ], \n    \"differentiate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dividend\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"reedbuck\": [\n        \"NN\"\n    ], \n    \"after-school\": [\n        \"JJ\"\n    ], \n    \"cost-savings\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Franklyn\": [\n        \"NNP\"\n    ], \n    \"allurement\": [\n        \"NN\"\n    ], \n    \"Juncal\": [\n        \"NNP\"\n    ], \n    \"third-dimensional\": [\n        \"JJ\"\n    ], \n    \"clear-it-out\": [\n        \"JJ\"\n    ], \n    \"Cimoli\": [\n        \"NNP\"\n    ], \n    \"unbroken\": [\n        \"JJ\"\n    ], \n    \"ONCE\": [\n        \"RB\"\n    ], \n    \"Sprinkel\": [\n        \"NNP\"\n    ], \n    \"swerve\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"confessional\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ditcher\": [\n        \"NN\"\n    ], \n    \"focally\": [\n        \"RB\"\n    ], \n    \"Eurocops\": [\n        \"NNPS\"\n    ], \n    \"Amusing\": [\n        \"JJ\"\n    ], \n    \"make-ready\": [\n        \"NN\"\n    ], \n    \"Aterman\": [\n        \"NNP\"\n    ], \n    \"three-quarters\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Administrative\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"ditched\": [\n        \"VBD\"\n    ], \n    \"Limitations\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Lucio\": [\n        \"NNP\"\n    ], \n    \"Shoreline\": [\n        \"NN\"\n    ], \n    \"Bernardo\": [\n        \"NNP\"\n    ], \n    \"Ukrainian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Clostridium\": [\n        \"NN\"\n    ], \n    \"Lucie\": [\n        \"NNP\"\n    ], \n    \"Cudahy\": [\n        \"NNP\"\n    ], \n    \"Lucia\": [\n        \"NNP\"\n    ], \n    \"lifts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"zitless\": [\n        \"JJ\"\n    ], \n    \"Laband\": [\n        \"NNP\"\n    ], \n    \"electro-optical\": [\n        \"JJ\"\n    ], \n    \"arbitrager\": [\n        \"NN\"\n    ], \n    \"chary\": [\n        \"JJ\"\n    ], \n    \"frequent-flyer\": [\n        \"NN\"\n    ], \n    \"serene\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"godfather\": [\n        \"NN\"\n    ], \n    \"eggs\": [\n        \"NNS\"\n    ], \n    \"Holes\": [\n        \"NNS\"\n    ], \n    \"chart\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"serviced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Holen\": [\n        \"NNP\"\n    ], \n    \"charm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Evans-Black\": [\n        \"NNP\"\n    ], \n    \"services\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Fresh\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Taras\": [\n        \"NNP\"\n    ], \n    \"teems\": [\n        \"VBZ\"\n    ], \n    \"Anointing\": [\n        \"VBG\"\n    ], \n    \"honkytonks\": [\n        \"NNS\"\n    ], \n    \"dealer-related\": [\n        \"JJ\"\n    ], \n    \"WATCH\": [\n        \"VB\"\n    ], \n    \"gin\": [\n        \"NN\"\n    ], \n    \"curtain-raiser\": [\n        \"NN\"\n    ], \n    \"Beira\": [\n        \"NNP\"\n    ], \n    \"seething\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Rexall\": [\n        \"NNP\"\n    ], \n    \"consanguineous\": [\n        \"JJ\"\n    ], \n    \"chelas\": [\n        \"NNS\"\n    ], \n    \"rebels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"swelling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"charter-shipping\": [\n        \"JJ\"\n    ], \n    \"passer-by\": [\n        \"NN\"\n    ], \n    \"Confident\": [\n        \"JJ\"\n    ], \n    \"shut-in\": [\n        \"JJ\"\n    ], \n    \"Billiken\": [\n        \"NNP\"\n    ], \n    \"headlines\": [\n        \"NNS\"\n    ], \n    \"tight-fistedness\": [\n        \"NN\"\n    ], \n    \"exteriors\": [\n        \"NNS\"\n    ], \n    \"Freeman\": [\n        \"NNP\"\n    ], \n    \"sluggishly\": [\n        \"RB\"\n    ], \n    \"music-making\": [\n        \"NN\"\n    ], \n    \"Sellers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Caterpillar\": [\n        \"NNP\"\n    ], \n    \"Solomon-like\": [\n        \"JJ\"\n    ], \n    \"sanitize\": [\n        \"VBP\"\n    ], \n    \"thruways\": [\n        \"RB\"\n    ], \n    \"Concluding\": [\n        \"VBG\"\n    ], \n    \"unagi\": [\n        \"FW\"\n    ], \n    \"general-insurance\": [\n        \"NN\"\n    ], \n    \"Keeny\": [\n        \"NNP\"\n    ], \n    \"City-based\": [\n        \"JJ\"\n    ], \n    \"U.N.-monitored\": [\n        \"JJ\"\n    ], \n    \"Guilford-Martin\": [\n        \"NNP\"\n    ], \n    \"Favorite\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"toddlers\": [\n        \"NNS\"\n    ], \n    \"mid-1950s\": [\n        \"NNS\"\n    ], \n    \"rotted\": [\n        \"VBN\"\n    ], \n    \"Amending\": [\n        \"VBG\"\n    ], \n    \"irresolution\": [\n        \"NN\"\n    ], \n    \"methanol-powered\": [\n        \"JJ\"\n    ], \n    \"judiciously\": [\n        \"RB\"\n    ], \n    \"Keene\": [\n        \"NNP\"\n    ], \n    \"Riddle\": [\n        \"NN\"\n    ], \n    \"Scenarios\": [\n        \"NNS\"\n    ], \n    \"spikes\": [\n        \"NNS\"\n    ], \n    \"motorcycles\": [\n        \"NNS\"\n    ], \n    \"Distributors\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"enclaves\": [\n        \"NNS\"\n    ], \n    \"Lucullan\": [\n        \"JJ\"\n    ], \n    \"Ecogen\": [\n        \"NNP\"\n    ], \n    \"Minneapolis\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"motorcycled\": [\n        \"VBD\"\n    ], \n    \"pre-production\": [\n        \"JJ\"\n    ], \n    \"spiked\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Female\": [\n        \"JJ\"\n    ], \n    \"Apologies\": [\n        \"NNS\"\n    ], \n    \"restaurants\": [\n        \"NNS\"\n    ], \n    \"light-flared\": [\n        \"JJ\"\n    ], \n    \"Morse\": [\n        \"NNP\"\n    ], \n    \"semi-finished\": [\n        \"JJ\"\n    ], \n    \"semisecret\": [\n        \"JJ\"\n    ], \n    \"overburdened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"short-contact\": [\n        \"JJ\"\n    ], \n    \"internationalist\": [\n        \"JJ\"\n    ], \n    \"Woodside\": [\n        \"NNP\"\n    ], \n    \"Omnicorp\": [\n        \"NNP\"\n    ], \n    \"Sigemund\": [\n        \"NNP\"\n    ], \n    \"GET\": [\n        \"VB\"\n    ], \n    \"antimaterialism\": [\n        \"NN\"\n    ], \n    \"GE\\\\\": [\n        \"NNP\"\n    ], \n    \"GEC\": [\n        \"NNP\"\n    ], \n    \"cahoots\": [\n        \"NNS\"\n    ], \n    \"eight-year\": [\n        \"JJ\"\n    ], \n    \"Richards\": [\n        \"NNP\"\n    ], \n    \"internationalism\": [\n        \"NN\"\n    ], \n    \"Bayaderka\": [\n        \"NNP\"\n    ], \n    \"Superstar\": [\n        \"NNP\"\n    ], \n    \"rbi\": [\n        \"NNS\"\n    ], \n    \"trustingly\": [\n        \"RB\"\n    ], \n    \"mailbox\": [\n        \"NN\"\n    ], \n    \"Archibald\": [\n        \"NNP\"\n    ], \n    \"premise\": [\n        \"NN\"\n    ], \n    \"mirth\": [\n        \"NN\"\n    ], \n    \"plutonium-powered\": [\n        \"JJ\"\n    ], \n    \"inimitable\": [\n        \"JJ\"\n    ], \n    \"axiom\": [\n        \"NN\"\n    ], \n    \"glorification\": [\n        \"NN\"\n    ], \n    \"Detective\": [\n        \"NNP\"\n    ], \n    \"Yeh\": [\n        \"NNP\"\n    ], \n    \"defunct\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Slower\": [\n        \"JJR\"\n    ], \n    \"docudrama\": [\n        \"NN\"\n    ], \n    \"appropriations\": [\n        \"NNS\"\n    ], \n    \"Yea\": [\n        \"UH\"\n    ], \n    \"Gann\": [\n        \"NNP\"\n    ], \n    \"foreign\": [\n        \"JJ\"\n    ], \n    \"sparring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Reservoirs\": [\n        \"NNP\"\n    ], \n    \"suede\": [\n        \"NN\"\n    ], \n    \"Carving\": [\n        \"NN\"\n    ], \n    \"focused\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Dawson\": [\n        \"NNP\"\n    ], \n    \"anlayst\": [\n        \"NN\"\n    ], \n    \"Yet\": [\n        \"RB\", \n        \"RB|CC\", \n        \"CC\"\n    ], \n    \"Yew\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subpar\": [\n        \"JJ\"\n    ], \n    \"combinable\": [\n        \"JJ\"\n    ], \n    \"duplicable\": [\n        \"JJ\"\n    ], \n    \"Surrounded\": [\n        \"VBN\"\n    ], \n    \"Rastus\": [\n        \"NNP\"\n    ], \n    \"panicking\": [\n        \"VBG\"\n    ], \n    \"undersecretary\": [\n        \"NN\"\n    ], \n    \"Schaumburg\": [\n        \"NNP\"\n    ], \n    \"cross-functional\": [\n        \"JJ\"\n    ], \n    \"non-instinctive\": [\n        \"JJ\"\n    ], \n    \"Institut\": [\n        \"NNP\"\n    ], \n    \"sinuousness\": [\n        \"NN\"\n    ], \n    \"Checks\": [\n        \"NNS\"\n    ], \n    \"Defendant\": [\n        \"NN\"\n    ], \n    \"Khmer\": [\n        \"NNP\"\n    ], \n    \"fused\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Middenstandsbank\": [\n        \"NNP\"\n    ], \n    \"viscometer\": [\n        \"NN\"\n    ], \n    \"Wendell\": [\n        \"NNP\"\n    ], \n    \"apostle\": [\n        \"NN\"\n    ], \n    \"Processing\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"appall\": [\n        \"VBP\"\n    ], \n    \"TV-Cable\": [\n        \"NNP\"\n    ], \n    \"screened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"grandsons\": [\n        \"NNS\"\n    ], \n    \"peppery\": [\n        \"JJ\"\n    ], \n    \"fuses\": [\n        \"NNS\"\n    ], \n    \"peppers\": [\n        \"NNS\"\n    ], \n    \"middle-of-the-roaders\": [\n        \"NNS\"\n    ], \n    \"nukes\": [\n        \"NNS\"\n    ], \n    \"freelancing\": [\n        \"NN\"\n    ], \n    \"assorted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"ineptitude\": [\n        \"NN\"\n    ], \n    \"decorous\": [\n        \"JJ\"\n    ], \n    \"roved\": [\n        \"VBD\"\n    ], \n    \"non-Germans\": [\n        \"NNS\"\n    ], \n    \"two-valued\": [\n        \"JJ\"\n    ], \n    \"Stockholm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rory\": [\n        \"NNP\"\n    ], \n    \"resisted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"outriggers\": [\n        \"NNS\"\n    ], \n    \"patriarchy\": [\n        \"NN\"\n    ], \n    \"evangelical\": [\n        \"JJ\"\n    ], \n    \"Indications\": [\n        \"NNS\"\n    ], \n    \"dicks\": [\n        \"NNS\"\n    ], \n    \"politician\": [\n        \"NN\"\n    ], \n    \"Pohly\": [\n        \"NNP\"\n    ], \n    \"deferred\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"skiff\": [\n        \"NN\"\n    ], \n    \"teaspoonful\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mechanochemically\": [\n        \"RB\"\n    ], \n    \"Institue\": [\n        \"NNP\"\n    ], \n    \"radiosterilized\": [\n        \"VBN\"\n    ], \n    \"Rehfeld\": [\n        \"NNP\"\n    ], \n    \"escheat\": [\n        \"NN\"\n    ], \n    \"century\": [\n        \"NN\"\n    ], \n    \"perilously\": [\n        \"RB\"\n    ], \n    \"Irv\": [\n        \"NN\"\n    ], \n    \"audience-friendly\": [\n        \"JJ\"\n    ], \n    \"Delay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"confining\": [\n        \"VBG\"\n    ], \n    \"DataQuest\": [\n        \"NNP\"\n    ], \n    \"stoves\": [\n        \"NNS\"\n    ], \n    \"Ira\": [\n        \"NNP\"\n    ], \n    \"Elliott\": [\n        \"NNP\"\n    ], \n    \"Ahm\": [\n        \"PRP\"\n    ], \n    \"all-important\": [\n        \"JJ\"\n    ], \n    \"urethra\": [\n        \"NN\"\n    ], \n    \"ethylene\": [\n        \"NN\"\n    ], \n    \"infernally\": [\n        \"RB\"\n    ], \n    \"Copp\": [\n        \"NNP\"\n    ], \n    \"lap-shoulder\": [\n        \"JJ\"\n    ], \n    \"Sonnenschein\": [\n        \"NNP\"\n    ], \n    \"bristle\": [\n        \"VBP\", \n        \"VB\", \n        \"NN\"\n    ], \n    \"Heine\": [\n        \"NNP\"\n    ], \n    \"Copy\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"riddling\": [\n        \"VBG\"\n    ], \n    \"currencies\": [\n        \"NNS\"\n    ], \n    \"Cash-pressed\": [\n        \"JJ\"\n    ], \n    \"PETROLEUM\": [\n        \"NNP\"\n    ], \n    \"deterrence...\": [\n        \":\"\n    ], \n    \"SISAL\": [\n        \"NNP\"\n    ], \n    \"stripe\": [\n        \"NN\"\n    ], \n    \"unveil\": [\n        \"VB\"\n    ], \n    \"LVI\": [\n        \"NNP\"\n    ], \n    \"horse-drawn\": [\n        \"JJ\"\n    ], \n    \"gestures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"organically\": [\n        \"RB\"\n    ], \n    \"Serving\": [\n        \"VBG\"\n    ], \n    \"whores\": [\n        \"NNS\"\n    ], \n    \"PLANS\": [\n        \"VBZ\"\n    ], \n    \"Plainly\": [\n        \"RB\"\n    ], \n    \"Councils\": [\n        \"NNPS\"\n    ], \n    \"Healthvest\": [\n        \"NNP\"\n    ], \n    \"Superconductivity\": [\n        \"NN\"\n    ], \n    \"Carolus\": [\n        \"NNP\"\n    ], \n    \"iffy\": [\n        \"JJ\"\n    ], \n    \"Economic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Insitutional\": [\n        \"JJ\"\n    ], \n    \"briquettes\": [\n        \"NNS\"\n    ], \n    \"Fiscal-year\": [\n        \"JJ\"\n    ], \n    \"consumer-minded\": [\n        \"JJ\"\n    ], \n    \"know\\\\/no\": [\n        \"NN\"\n    ], \n    \"Albany\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"criss-cross\": [\n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Kennewick\": [\n        \"NNP\"\n    ], \n    \"Obispo\": [\n        \"NNP\"\n    ], \n    \"zestfully\": [\n        \"RB\"\n    ], \n    \"segregate\": [\n        \"VB\"\n    ], \n    \"Boren\": [\n        \"NNP\"\n    ], \n    \"Picon\": [\n        \"NNP\"\n    ], \n    \"shrewdly\": [\n        \"RB\"\n    ], \n    \"Minolta\": [\n        \"NNP\"\n    ], \n    \"place-names\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"choreographers\": [\n        \"NNS\"\n    ], \n    \"Aspirin\": [\n        \"NNP\"\n    ], \n    \"McGann\": [\n        \"NNP\"\n    ], \n    \"postal\": [\n        \"JJ\"\n    ], \n    \"Proprietorships\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"PROPOSE\": [\n        \"VB\"\n    ], \n    \"adjusters\": [\n        \"NNS\"\n    ], \n    \"coal-black\": [\n        \"JJ\"\n    ], \n    \"studious\": [\n        \"JJ\"\n    ], \n    \"Christopher\": [\n        \"NNP\"\n    ], \n    \"impassible\": [\n        \"JJ\"\n    ], \n    \"clamping\": [\n        \"VBG\"\n    ], \n    \"Astra\": [\n        \"NNP\"\n    ], \n    \"per-ad\": [\n        \"JJ\"\n    ], \n    \"Belknap\": [\n        \"NNP\"\n    ], \n    \"malfunctions\": [\n        \"NNS\"\n    ], \n    \"Commons\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"Truth\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"bribing\": [\n        \"VBG\"\n    ], \n    \"knock\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Butterwyn\": [\n        \"NNP\"\n    ], \n    \"L-shaped\": [\n        \"JJ\"\n    ], \n    \"hard-wire\": [\n        \"JJ\"\n    ], \n    \"preradiation\": [\n        \"NN\"\n    ], \n    \"objectiveness\": [\n        \"NN\"\n    ], \n    \"parsimonious\": [\n        \"JJ\"\n    ], \n    \"borrows\": [\n        \"VBZ\"\n    ], \n    \"loyalist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"foolish\": [\n        \"JJ\"\n    ], \n    \"machinegun\": [\n        \"NN\"\n    ], \n    \"Happens\": [\n        \"VBZ\"\n    ], \n    \"outscored\": [\n        \"VBD\"\n    ], \n    \"drill-bit\": [\n        \"NN\"\n    ], \n    \"lastest\": [\n        \"JJS\"\n    ], \n    \"Fischbach\": [\n        \"NNP\"\n    ], \n    \"Deliberately\": [\n        \"RB\"\n    ], \n    \"blow\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"re-regulation\": [\n        \"NN\"\n    ], \n    \"TALENT\": [\n        \"NN\"\n    ], \n    \"infliction\": [\n        \"NN\"\n    ], \n    \"scalps\": [\n        \"NNS\"\n    ], \n    \"Togs\": [\n        \"NNP\"\n    ], \n    \"balmy\": [\n        \"JJ\"\n    ], \n    \"phantasy\": [\n        \"NN\"\n    ], \n    \"pleats\": [\n        \"NNS\"\n    ], \n    \"revenue-desperate\": [\n        \"JJ\"\n    ], \n    \"fixations\": [\n        \"NNS\"\n    ], \n    \"inimical\": [\n        \"JJ\"\n    ], \n    \"Ambridge\": [\n        \"NNP\"\n    ], \n    \"Bosket\": [\n        \"NNP\"\n    ], \n    \"Freni\": [\n        \"NNP\"\n    ], \n    \"Cascade\": [\n        \"NNP\"\n    ], \n    \"Sourcing\": [\n        \"VBG\"\n    ], \n    \"self-published\": [\n        \"JJ\"\n    ], \n    \"Birkel\": [\n        \"NNP\"\n    ], \n    \"feigning\": [\n        \"VBG\"\n    ], \n    \"Nomani\": [\n        \"NNP\"\n    ], \n    \"Cocoa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"canvassing\": [\n        \"VBG\"\n    ], \n    \"Cocom\": [\n        \"NNP\"\n    ], \n    \"hindrances\": [\n        \"NNS\"\n    ], \n    \"buffoons\": [\n        \"NNS\"\n    ], \n    \"tiff\": [\n        \"NN\"\n    ], \n    \"abusive\": [\n        \"JJ\"\n    ], \n    \"retailer\": [\n        \"NN\"\n    ], \n    \"seating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"English-rights\": [\n        \"JJ\"\n    ], \n    \"Increase\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"inhospitable\": [\n        \"JJ\"\n    ], \n    \"Oberkfell\": [\n        \"NNP\"\n    ], \n    \"retailed\": [\n        \"VBN\"\n    ], \n    \"Zaroubin\": [\n        \"NNP\"\n    ], \n    \"locking-in\": [\n        \"NN\"\n    ], \n    \"U.S.-style\": [\n        \"JJ\"\n    ], \n    \"Feeley\": [\n        \"NNP\"\n    ], \n    \"police-dodging\": [\n        \"NN\"\n    ], \n    \"underused\": [\n        \"VBN\"\n    ], \n    \"Cordis\": [\n        \"NNP\"\n    ], \n    \"out-plunging\": [\n        \"JJ\"\n    ], \n    \"underlines\": [\n        \"VBZ\"\n    ], \n    \"Esperanza\": [\n        \"NNP\"\n    ], \n    \"Stephenson\": [\n        \"NNP\"\n    ], \n    \"exterminated\": [\n        \"VBN\"\n    ], \n    \"Filter\": [\n        \"NNP\"\n    ], \n    \"mechanistic\": [\n        \"JJ\"\n    ], \n    \"underlined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Supply-sider\": [\n        \"NNP\"\n    ], \n    \"HONECKER\": [\n        \"NNP\"\n    ], \n    \"Beijing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"pickers\": [\n        \"NNS\"\n    ], \n    \"CORNUCOPIA\": [\n        \"NN\"\n    ], \n    \"Kazakh\": [\n        \"NNP\"\n    ], \n    \"corkscrews\": [\n        \"NNS\"\n    ], \n    \"Bennett\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Groucho\": [\n        \"NNP\"\n    ], \n    \"drug-traffickers\": [\n        \"NNS\"\n    ], \n    \"market-specific\": [\n        \"JJ\"\n    ], \n    \"Potala\": [\n        \"NNP\"\n    ], \n    \"curt\": [\n        \"JJ\"\n    ], \n    \"constant\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"pseudonymous\": [\n        \"JJ\"\n    ], \n    \"GORBACHEV\": [\n        \"NNP\"\n    ], \n    \"beckoning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"scarlet\": [\n        \"JJ\"\n    ], \n    \"Charisma\": [\n        \"NNP\"\n    ], \n    \"cure\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"network-writer\": [\n        \"JJ\"\n    ], \n    \"fabricating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Linda\": [\n        \"NNP\"\n    ], \n    \"curl\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"stripper\": [\n        \"NN\"\n    ], \n    \"Municipalities\": [\n        \"NNS\"\n    ], \n    \"pecks\": [\n        \"NNS\"\n    ], \n    \"Commissioned\": [\n        \"VBN\"\n    ], \n    \"Neo-Classicists\": [\n        \"NNPS\"\n    ], \n    \"mayonnaise\": [\n        \"NN\"\n    ], \n    \"confine\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"dark-green\": [\n        \"JJ\"\n    ], \n    \"Advance\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bowles\": [\n        \"NNP\"\n    ], \n    \"Kleiman\": [\n        \"NNP\"\n    ], \n    \"Slogan\": [\n        \"NNP\"\n    ], \n    \"endocrine\": [\n        \"JJ\"\n    ], \n    \"marijuana-smuggling\": [\n        \"JJ\"\n    ], \n    \"less-risky\": [\n        \"JJ\"\n    ], \n    \"showgirls\": [\n        \"NNS\"\n    ], \n    \"HDTV\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hainan\": [\n        \"NNP\"\n    ], \n    \"cater\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"utterly\": [\n        \"RB\"\n    ], \n    \"fructose\": [\n        \"NN\"\n    ], \n    \"balm-of-Gilead\": [\n        \"NN\"\n    ], \n    \"unenforceable\": [\n        \"JJ\"\n    ], \n    \"reflectors\": [\n        \"NNS\"\n    ], \n    \"Bartville\": [\n        \"NNP\"\n    ], \n    \"Taft\": [\n        \"NNP\"\n    ], \n    \"implies\": [\n        \"VBZ\"\n    ], \n    \"cooker\": [\n        \"NN\"\n    ], \n    \"healers\": [\n        \"NNS\"\n    ], \n    \"red-and-yellow\": [\n        \"JJ\"\n    ], \n    \"mortgage-interest\": [\n        \"JJ\"\n    ], \n    \"cooked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"implied\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Determine\": [\n        \"VB\"\n    ], \n    \"razing\": [\n        \"VBG\"\n    ], \n    \"uterus\": [\n        \"NN\"\n    ], \n    \"conjugal\": [\n        \"JJ\"\n    ], \n    \"verstrichen\": [\n        \"FW\"\n    ], \n    \"Voegelin\": [\n        \"NNP\"\n    ], \n    \"portraying\": [\n        \"VBG\"\n    ], \n    \"groceries\": [\n        \"NNS\"\n    ], \n    \"fascinatingly\": [\n        \"RB\"\n    ], \n    \"Coons\": [\n        \"NNP\"\n    ], \n    \"Angelina\": [\n        \"NNP\"\n    ], \n    \"marveled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bonds\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Gatsby-in-reverse\": [\n        \"NN\"\n    ], \n    \"ill-suited\": [\n        \"JJ\"\n    ], \n    \"reductions\": [\n        \"NNS\"\n    ], \n    \"Prepayments\": [\n        \"NNS\"\n    ], \n    \"masculine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sietsma\": [\n        \"NNP\"\n    ], \n    \"pleasing\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"NTSB\": [\n        \"NNP\"\n    ], \n    \"nervousness\": [\n        \"NN\"\n    ], \n    \"Redoute\": [\n        \"NNP\"\n    ], \n    \"proctor\": [\n        \"NN\"\n    ], \n    \"presently\": [\n        \"RB\"\n    ], \n    \"Sportswriters\": [\n        \"NNS\"\n    ], \n    \"Ibbotson\": [\n        \"NNP\"\n    ], \n    \"radiophonic\": [\n        \"JJ\"\n    ], \n    \"startlingly\": [\n        \"RB\"\n    ], \n    \"hoards\": [\n        \"NNS\"\n    ], \n    \"uttuh\": [\n        \"VB\"\n    ], \n    \"entire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"economic-reform\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"diverging\": [\n        \"VBG\"\n    ], \n    \"A.N.\": [\n        \"NNP\"\n    ], \n    \"RepublicBank\": [\n        \"NNP\"\n    ], \n    \"Gatos\": [\n        \"NNP\"\n    ], \n    \"busier\": [\n        \"JJR\"\n    ], \n    \"busies\": [\n        \"NNS\"\n    ], \n    \"pre-emancipation\": [\n        \"NN\"\n    ], \n    \"flex-time\": [\n        \"JJ\"\n    ], \n    \"havens\": [\n        \"NNS\"\n    ], \n    \"Timken\": [\n        \"NNP\"\n    ], \n    \"Sacred\": [\n        \"NNP\"\n    ], \n    \"Howard\": [\n        \"NNP\", \n        \"RP\", \n        \"NNPS\"\n    ], \n    \"Neoax\": [\n        \"NNP\"\n    ], \n    \"Onsets\": [\n        \"NNS\"\n    ], \n    \"Fast\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Birns\": [\n        \"NNP\"\n    ], \n    \"squabble\": [\n        \"NN\"\n    ], \n    \"Faso\": [\n        \"NNP\"\n    ], \n    \"wider-than-normal\": [\n        \"JJ\"\n    ], \n    \"repurchased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"par-5\": [\n        \"JJ\"\n    ], \n    \"par-3\": [\n        \"NN\"\n    ], \n    \"emigrations\": [\n        \"NNS\"\n    ], \n    \"fat\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"IUD\": [\n        \"NNP\"\n    ], \n    \"Butts\": [\n        \"NNP\"\n    ], \n    \"Necessity\": [\n        \"NN\"\n    ], \n    \"Butte\": [\n        \"NNP\"\n    ], \n    \"employerpaid\": [\n        \"JJ\"\n    ], \n    \"Tindal\": [\n        \"NNP\"\n    ], \n    \"Nugget\": [\n        \"NNP\"\n    ], \n    \"apologetic\": [\n        \"JJ\"\n    ], \n    \"vexatious\": [\n        \"JJ\"\n    ], \n    \"Afranio\": [\n        \"NNP\"\n    ], \n    \"packing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"healing\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"pinch-hitter\": [\n        \"NN\"\n    ], \n    \"safer\": [\n        \"JJR\"\n    ], \n    \"DEVELOPMENTS\": [\n        \"NNPS\"\n    ], \n    \"million-gallon\": [\n        \"JJ\"\n    ], \n    \"Oreos\": [\n        \"NNPS\"\n    ], \n    \"windfalls\": [\n        \"NNS\"\n    ], \n    \"Jennifer\": [\n        \"NNP\"\n    ], \n    \"Correll\": [\n        \"NNP\"\n    ], \n    \"Henritze\": [\n        \"NNP\"\n    ], \n    \"Week-end\": [\n        \"NN\"\n    ], \n    \"implement\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"depressant\": [\n        \"NN\"\n    ], \n    \"Reedville\": [\n        \"NNP\"\n    ], \n    \"absolutes\": [\n        \"NNS\"\n    ], \n    \"bumming\": [\n        \"VBG\"\n    ], \n    \"obsolesence\": [\n        \"NN\"\n    ], \n    \"light-duty\": [\n        \"JJ\"\n    ], \n    \"Starlings\": [\n        \"NNS\"\n    ], \n    \"Beneficiary\": [\n        \"NN\"\n    ], \n    \"Rhode\": [\n        \"NNP\"\n    ], \n    \"Rhoda\": [\n        \"NNP\"\n    ], \n    \"Batchelder\": [\n        \"NNP\"\n    ], \n    \"over-50\": [\n        \"JJ\"\n    ], \n    \"Answer\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"welcomed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Aston\": [\n        \"NNP\"\n    ], \n    \"oilfields\": [\n        \"NNS\"\n    ], \n    \"abhorrently\": [\n        \"RB\"\n    ], \n    \"Tarter\": [\n        \"NNP\"\n    ], \n    \"Garrin\": [\n        \"NNP\"\n    ], \n    \"Mentality\": [\n        \"NN\"\n    ], \n    \"hammered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"once-moribund\": [\n        \"JJ\"\n    ], \n    \"little-known\": [\n        \"JJ\"\n    ], \n    \"totality\": [\n        \"NN\"\n    ], \n    \"year-ago\": [\n        \"JJ\"\n    ], \n    \"Eastman\": [\n        \"NNP\"\n    ], \n    \"Astor\": [\n        \"NNP\"\n    ], \n    \"prized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"disgust\": [\n        \"NN\"\n    ], \n    \"locker-room\": [\n        \"NN\"\n    ], \n    \"Honest\": [\n        \"UH\"\n    ], \n    \"Revolution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"prizes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Latour\": [\n        \"NNP\"\n    ], \n    \"many-bodied\": [\n        \"JJ\"\n    ], \n    \"steroid-induced\": [\n        \"JJ\"\n    ], \n    \"silvery\": [\n        \"JJ\"\n    ], \n    \"headstands\": [\n        \"NNS\"\n    ], \n    \"non-communist\": [\n        \"JJ\"\n    ], \n    \"fooling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"jeers\": [\n        \"NNS\"\n    ], \n    \"tobacco-product\": [\n        \"JJ\"\n    ], \n    \"grated\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"public-asset\": [\n        \"JJ\"\n    ], \n    \"closing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"Asylum\": [\n        \"NNP\"\n    ], \n    \"fetch\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"experiential\": [\n        \"JJ\"\n    ], \n    \"blabs\": [\n        \"VBZ\"\n    ], \n    \"Camping\": [\n        \"NN\"\n    ], \n    \"invoices\": [\n        \"NNS\"\n    ], \n    \"teamster\": [\n        \"NN\"\n    ], \n    \"lammed\": [\n        \"VBD\"\n    ], \n    \"McGeorge\": [\n        \"NNP\"\n    ], \n    \"homoerotic\": [\n        \"JJ\"\n    ], \n    \"Meninas\": [\n        \"NNP\"\n    ], \n    \"hair-care\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"well-wishing\": [\n        \"NN\"\n    ], \n    \"Chapdelaine\": [\n        \"NNP\"\n    ], \n    \"varied\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Yo\": [\n        \"NNP\"\n    ], \n    \"Worrell\": [\n        \"NNP\"\n    ], \n    \"Drink\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Ye\": [\n        \"NNP\"\n    ], \n    \"Fridge\": [\n        \"NNP\"\n    ], \n    \"Respondents\": [\n        \"NNS\"\n    ], \n    \"KFC\": [\n        \"NNP\"\n    ], \n    \"NZ$\": [\n        \"$\"\n    ], \n    \"Yr\": [\n        \"NN\"\n    ], \n    \"Yu\": [\n        \"NNP\"\n    ], \n    \"profile\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Riegle\": [\n        \"NNP\"\n    ], \n    \"rumpus\": [\n        \"NN\"\n    ], \n    \"incompetence\": [\n        \"NN\"\n    ], \n    \"leukemia\": [\n        \"NN\"\n    ], \n    \"Washington-Alexandria\": [\n        \"NNP\"\n    ], \n    \"dockyards\": [\n        \"NNS\"\n    ], \n    \"incompetency\": [\n        \"NN\"\n    ], \n    \"beer-runner\": [\n        \"NN\"\n    ], \n    \"Hedison\": [\n        \"NNP\"\n    ], \n    \"pleasantness\": [\n        \"NN\"\n    ], \n    \"Gosson\": [\n        \"NNP\"\n    ], \n    \"chasing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"friendlier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Texas-Louisiana\": [\n        \"NNP\"\n    ], \n    \"Y.\": [\n        \"NNP\"\n    ], \n    \"interviewees\": [\n        \"NNS\"\n    ], \n    \"nonworking\": [\n        \"JJ\"\n    ], \n    \"miscues\": [\n        \"NNS\"\n    ], \n    \"trembling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"year...\": [\n        \":\"\n    ], \n    \"sensitively\": [\n        \"RB\"\n    ], \n    \"Adultery\": [\n        \"NNP\"\n    ], \n    \"furious\": [\n        \"JJ\"\n    ], \n    \"solos\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"subsequently\": [\n        \"RB\"\n    ], \n    \"B-52\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cease-fire\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"rutted\": [\n        \"JJ\"\n    ], \n    \"disarm\": [\n        \"VB\"\n    ], \n    \"Theatres\": [\n        \"NNP\"\n    ], \n    \"McMillin\": [\n        \"NNP\"\n    ], \n    \"east-west\": [\n        \"JJ\"\n    ], \n    \"flattering\": [\n        \"JJ\"\n    ], \n    \"electors\": [\n        \"NNS\"\n    ], \n    \"Rotman\": [\n        \"NNP\"\n    ], \n    \"enactments\": [\n        \"NNS\"\n    ], \n    \"twirls\": [\n        \"VBZ\"\n    ], \n    \"Legislators\": [\n        \"NNS\"\n    ], \n    \"integrators\": [\n        \"NNS\"\n    ], \n    \"twirly\": [\n        \"JJ\"\n    ], \n    \"wadded\": [\n        \"VBD\"\n    ], \n    \"accredited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bull-necked\": [\n        \"JJ\"\n    ], \n    \"blatant\": [\n        \"JJ\"\n    ], \n    \"circumspectly\": [\n        \"RB\"\n    ], \n    \"disrupts\": [\n        \"VBZ\"\n    ], \n    \"youngish\": [\n        \"JJ\"\n    ], \n    \"sapling\": [\n        \"NN\"\n    ], \n    \"bolder\": [\n        \"JJR\"\n    ], \n    \"Nickelodeon\": [\n        \"NNP\"\n    ], \n    \"century-old\": [\n        \"JJ\"\n    ], \n    \"Robie\": [\n        \"NNP\"\n    ], \n    \"LeMans\": [\n        \"NNP\"\n    ], \n    \"tetragonal\": [\n        \"JJ\"\n    ], \n    \"ineffably\": [\n        \"RB\"\n    ], \n    \"Robin\": [\n        \"NNP\"\n    ], \n    \"building-control\": [\n        \"NN\"\n    ], \n    \"flail\": [\n        \"NN\"\n    ], \n    \"frayed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"blindfolded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"shelf-registered\": [\n        \"JJ\"\n    ], \n    \"Indicated\": [\n        \"VBD\"\n    ], \n    \"Gari\": [\n        \"NNP\"\n    ], \n    \"mammals\": [\n        \"NNS\"\n    ], \n    \"Kailin\": [\n        \"NNP\"\n    ], \n    \"cowhide\": [\n        \"NN\"\n    ], \n    \"Moroccan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Gary\": [\n        \"NNP\"\n    ], \n    \"Talsky\": [\n        \"NNP\"\n    ], \n    \"theatergoing\": [\n        \"JJ\"\n    ], \n    \"Sanjay\": [\n        \"NNP\"\n    ], \n    \"two-inch\": [\n        \"JJ\"\n    ], \n    \"footsy\": [\n        \"NN\"\n    ], \n    \"-ism\": [\n        \"NN\"\n    ], \n    \"pantry\": [\n        \"NN\"\n    ], \n    \"recoated\": [\n        \"VBN\"\n    ], \n    \"Finucane\": [\n        \"NNP\"\n    ], \n    \"Print\": [\n        \"VB\"\n    ], \n    \"table-top\": [\n        \"JJ\"\n    ], \n    \"sexual\": [\n        \"JJ\"\n    ], \n    \"Prins\": [\n        \"NNP\"\n    ], \n    \"Kaliniak\": [\n        \"NNP\"\n    ], \n    \"Griston\": [\n        \"NNP\"\n    ], \n    \"Nu\": [\n        \"NNP\"\n    ], \n    \"Hein\": [\n        \"NNP\"\n    ], \n    \"Ching\": [\n        \"NNP\"\n    ], \n    \"China\": [\n        \"NNP\"\n    ], \n    \"barley\": [\n        \"NN\"\n    ], \n    \"Chino\": [\n        \"NNP\"\n    ], \n    \"Chinn\": [\n        \"NNP\"\n    ], \n    \"tradeable\": [\n        \"JJ\"\n    ], \n    \"Bostonian\": [\n        \"NNP\"\n    ], \n    \"Kakita\": [\n        \"NNP\"\n    ], \n    \"Trappist\": [\n        \"JJ\"\n    ], \n    \"fluctuates\": [\n        \"VBZ\"\n    ], \n    \"NJ\": [\n        \"NNP\"\n    ], \n    \"Natick\": [\n        \"NNP\"\n    ], \n    \"Picks\": [\n        \"VBZ\"\n    ], \n    \"fluctuated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Manhattan-based\": [\n        \"JJ\"\n    ], \n    \"goitrogens\": [\n        \"NNS\"\n    ], \n    \"Exceptions\": [\n        \"NNS\"\n    ], \n    \"Specific\": [\n        \"JJ\"\n    ], \n    \"Outlook\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"yard\": [\n        \"NN\"\n    ], \n    \"Durban\": [\n        \"NNP\"\n    ], \n    \"candle-lit\": [\n        \"JJ\"\n    ], \n    \"hinting\": [\n        \"VBG\"\n    ], \n    \"better-educated\": [\n        \"JJ\"\n    ], \n    \"yarn\": [\n        \"NN\"\n    ], \n    \"dumbbell\": [\n        \"NN\"\n    ], \n    \"Rothwell\": [\n        \"NNP\"\n    ], \n    \"V-8\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"V-6\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sammy\": [\n        \"NNP\"\n    ], \n    \"Adsi\": [\n        \"NNP\"\n    ], \n    \"handier\": [\n        \"JJR\"\n    ], \n    \"seventy-six\": [\n        \"JJ\"\n    ], \n    \"braced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Emhart\": [\n        \"NNP\"\n    ], \n    \"reaches\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"glanders\": [\n        \"NNS\"\n    ], \n    \"Pickup\": [\n        \"NNP\"\n    ], \n    \"Tuitions\": [\n        \"NNS\"\n    ], \n    \"guidebook\": [\n        \"NN\"\n    ], \n    \"Necesarily\": [\n        \"NNP\"\n    ], \n    \"reached\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hashes\": [\n        \"NNS\"\n    ], \n    \"braces\": [\n        \"NNS\"\n    ], \n    \"presuming\": [\n        \"VBG\"\n    ], \n    \"pershare\": [\n        \"JJ\"\n    ], \n    \"MANAGEMENT\": [\n        \"NNP\"\n    ], \n    \"coffee-roasting\": [\n        \"JJ\"\n    ], \n    \"Symbol\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Inheritance\": [\n        \"NN\"\n    ], \n    \"demythologized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"paxam\": [\n        \"NN\"\n    ], \n    \"intermediate\": [\n        \"JJ\"\n    ], \n    \"then-Vice\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"student-directed\": [\n        \"JJ\"\n    ], \n    \"acquiescence\": [\n        \"NN\"\n    ], \n    \"programmable\": [\n        \"JJ\"\n    ], \n    \"cartoonlike\": [\n        \"JJ\"\n    ], \n    \"malapropism\": [\n        \"NN\"\n    ], \n    \"rifle-shotgun\": [\n        \"NN\"\n    ], \n    \"bulldog\": [\n        \"JJ\"\n    ], \n    \"hesitatingly\": [\n        \"RB\"\n    ], \n    \"Gainen\": [\n        \"NNP\"\n    ], \n    \"overexpansion\": [\n        \"NN\"\n    ], \n    \"unsubtle\": [\n        \"JJ\"\n    ], \n    \"Hartweger\": [\n        \"NNP\"\n    ], \n    \"NP\": [\n        \"NNP\"\n    ], \n    \"Gaines\": [\n        \"NNP\"\n    ], \n    \"three-front\": [\n        \"JJ\"\n    ], \n    \"inapt\": [\n        \"JJ\"\n    ], \n    \"coughed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"opposition-party\": [\n        \"JJ\"\n    ], \n    \"Pound\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Portraits\": [\n        \"NNPS\"\n    ], \n    \"Agnese\": [\n        \"NNP\"\n    ], \n    \"Sabrina\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"long-term``\": [\n        \"``\"\n    ], \n    \"tenements\": [\n        \"NNS\"\n    ], \n    \"Stirs\": [\n        \"VBZ\"\n    ], \n    \"Battista\": [\n        \"NNP\"\n    ], \n    \"mastodons\": [\n        \"NNS\"\n    ], \n    \"anthropologist\": [\n        \"NN\"\n    ], \n    \"men-folk\": [\n        \"NNS\"\n    ], \n    \"Hagood\": [\n        \"NNP\"\n    ], \n    \"FRINGE-BENEFIT\": [\n        \"JJ\"\n    ], \n    \"Newhart\": [\n        \"NNP\"\n    ], \n    \"yearned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"have\": [\n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"Dollar-De\": [\n        \"NNP\"\n    ], \n    \"Bacarella\": [\n        \"NNP\"\n    ], \n    \"continents\": [\n        \"NNS\"\n    ], \n    \"black-and-yellow\": [\n        \"JJ\"\n    ], \n    \"shoestrings\": [\n        \"NNS\"\n    ], \n    \"million-share\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"gingerly\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"precipice\": [\n        \"NN\"\n    ], \n    \"capital-to-assets\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"whistle-stop\": [\n        \"JJ\"\n    ], \n    \"computer-edited\": [\n        \"JJ\"\n    ], \n    \"Omission\": [\n        \"NN\"\n    ], \n    \"LeGere\": [\n        \"NNP\"\n    ], \n    \"Meggs\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"super-regulator\": [\n        \"NN\"\n    ], \n    \"Morley\": [\n        \"NNP\"\n    ], \n    \"postition\": [\n        \"NN\"\n    ], \n    \"orchestrations\": [\n        \"NNS\"\n    ], \n    \"Scientology\": [\n        \"NNP\"\n    ], \n    \"mimics\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Rafer\": [\n        \"NNP\"\n    ], \n    \"enamels\": [\n        \"NNS\"\n    ], \n    \"clinkers\": [\n        \"NNS\"\n    ], \n    \"prisoner\": [\n        \"NN\"\n    ], \n    \"payment\": [\n        \"NN\"\n    ], \n    \"inexorable\": [\n        \"JJ\"\n    ], \n    \"beets\": [\n        \"NNS\"\n    ], \n    \"misrelated\": [\n        \"VBN\"\n    ], \n    \"disease\": [\n        \"NN\"\n    ], \n    \"deuterium\": [\n        \"NN\"\n    ], \n    \"Banca\": [\n        \"NNP\"\n    ], \n    \"MICROPOLIS\": [\n        \"NNP\"\n    ], \n    \"occasion\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Banco\": [\n        \"NNP\"\n    ], \n    \"contemptuous\": [\n        \"JJ\"\n    ], \n    \"inexorably\": [\n        \"RB\"\n    ], \n    \"squeegee\": [\n        \"VBP\"\n    ], \n    \"Gonzalez\": [\n        \"NNP\"\n    ], \n    \"recess\": [\n        \"NN\"\n    ], \n    \"Britten\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ejaculated\": [\n        \"VBD\"\n    ], \n    \"Capshaw\": [\n        \"NNP\"\n    ], \n    \"demurred\": [\n        \"VBD\"\n    ], \n    \"Wheelabrator\": [\n        \"NNP\"\n    ], \n    \"hamlet\": [\n        \"NN\"\n    ], \n    \"trustfully\": [\n        \"RB\"\n    ], \n    \"shutoff\": [\n        \"NN\"\n    ], \n    \"submachine\": [\n        \"JJ\"\n    ], \n    \"definable\": [\n        \"JJ\"\n    ], \n    \"ImmunoGen\": [\n        \"NNP\"\n    ], \n    \"demurrer\": [\n        \"NN\"\n    ], \n    \"Pysllium\": [\n        \"NN\"\n    ], \n    \"Snezak\": [\n        \"NNP\"\n    ], \n    \"freedom-conscious\": [\n        \"JJ\"\n    ], \n    \"Colodny\": [\n        \"NNP\"\n    ], \n    \"knowledge\": [\n        \"NN\"\n    ], \n    \"short-seller\": [\n        \"NN\"\n    ], \n    \"Doner\": [\n        \"NNP\"\n    ], \n    \"Vanessa\": [\n        \"NNP\"\n    ], \n    \"no-hit\": [\n        \"JJ\"\n    ], \n    \"sonofabitch\": [\n        \"NN\"\n    ], \n    \"cohesiveness\": [\n        \"NN\"\n    ], \n    \"Arau\": [\n        \"NNP\"\n    ], \n    \"front-office\": [\n        \"NN\"\n    ], \n    \"standard-weight\": [\n        \"JJ\"\n    ], \n    \"emitting\": [\n        \"VBG\"\n    ], \n    \"Handelsbank\": [\n        \"NNP\"\n    ], \n    \"Hummerstone\": [\n        \"NNP\"\n    ], \n    \"Thrift\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Casanovas\": [\n        \"NNPS\"\n    ], \n    \"hijacking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Finnish\": [\n        \"JJ\"\n    ], \n    \"feed-grain\": [\n        \"NN\"\n    ], \n    \"reputations\": [\n        \"NNS\"\n    ], \n    \"microelectronic\": [\n        \"JJ\"\n    ], \n    \"Winnick\": [\n        \"NNP\"\n    ], \n    \"Husak\": [\n        \"NNP\"\n    ], \n    \"Blevins\": [\n        \"NNPS\"\n    ], \n    \"Gaffney\": [\n        \"NNP\"\n    ], \n    \"subways\": [\n        \"NNS\"\n    ], \n    \"teams\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Helaba\": [\n        \"NNP\"\n    ], \n    \"PITCH\": [\n        \"NNP\"\n    ], \n    \"excesses\": [\n        \"NNS\"\n    ], \n    \"Zoe\": [\n        \"NNP\"\n    ], \n    \"hypophyseal\": [\n        \"JJ\"\n    ], \n    \"CONSOLIDATED\": [\n        \"NNP\"\n    ], \n    \"GNP-based\": [\n        \"JJ\"\n    ], \n    \"showdown\": [\n        \"NN\"\n    ], \n    \"metal-hydrido\": [\n        \"NN\"\n    ], \n    \"polyphosphates\": [\n        \"NNS\"\n    ], \n    \"Zoo\": [\n        \"NNP\"\n    ], \n    \"LEAVE\": [\n        \"NN\"\n    ], \n    \"teakwood\": [\n        \"NN\"\n    ], \n    \"daffodils\": [\n        \"NNS\"\n    ], \n    \"Vanuatu\": [\n        \"NNP\"\n    ], \n    \"tuxedos\": [\n        \"NNS\"\n    ], \n    \"Juliber\": [\n        \"NNP\"\n    ], \n    \"Squaresville\": [\n        \"NNP\"\n    ], \n    \"Pettibone\": [\n        \"NNP\"\n    ], \n    \"brunt\": [\n        \"NN\"\n    ], \n    \"Discreet\": [\n        \"JJ\"\n    ], \n    \"wean\": [\n        \"VB\"\n    ], \n    \"invariant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tediously\": [\n        \"RB\"\n    ], \n    \"b-Week\": [\n        \"NN\", \n        \"LS|NN\"\n    ], \n    \"dirty\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"antiquarians\": [\n        \"NNS\"\n    ], \n    \"Nonelectrical\": [\n        \"JJ\"\n    ], \n    \"various\": [\n        \"JJ\"\n    ], \n    \"Incline\": [\n        \"NNP\"\n    ], \n    \"weak\": [\n        \"JJ\"\n    ], \n    \"Inexpensive\": [\n        \"JJ\"\n    ], \n    \"antics\": [\n        \"NNS\"\n    ], \n    \"Elvador\": [\n        \"NNP\"\n    ], \n    \"Financings\": [\n        \"NNS\"\n    ], \n    \"watts\": [\n        \"NNS\"\n    ], \n    \"Tompkins\": [\n        \"NNP\"\n    ], \n    \"effluent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Osamu\": [\n        \"NNP\"\n    ], \n    \"revoked\": [\n        \"VBN\"\n    ], \n    \"UAP\": [\n        \"NNP\"\n    ], \n    \"joke\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"equal\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pulp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Byrnes\": [\n        \"NNP\"\n    ], \n    \"liquidating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"politicizing\": [\n        \"VBG\"\n    ], \n    \"placebo\": [\n        \"NN\"\n    ], \n    \"statues\": [\n        \"NNS\"\n    ], \n    \"bond-market\": [\n        \"JJ\"\n    ], \n    \"treasure-trove\": [\n        \"NN\"\n    ], \n    \"disarmament\": [\n        \"NN\"\n    ], \n    \"coexistence\": [\n        \"NN\"\n    ], \n    \"Piscataway\": [\n        \"NNP\"\n    ], \n    \"Machinists\": [\n        \"NNS\", \n        \"NNS|NPS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"liquidations\": [\n        \"NNS\"\n    ], \n    \"Miklos\": [\n        \"NNP\"\n    ], \n    \"Musica\": [\n        \"NNP\"\n    ], \n    \"Buffet\": [\n        \"NNP\"\n    ], \n    \"honeysuckle\": [\n        \"NN\"\n    ], \n    \"manhood\": [\n        \"NN\"\n    ], \n    \"tax-law\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"asphyxia\": [\n        \"NN\"\n    ], \n    \"playwrights\": [\n        \"NNS\"\n    ], \n    \"magnetized\": [\n        \"VBN\"\n    ], \n    \"devoting\": [\n        \"VBG\"\n    ], \n    \"self-aggrandizing\": [\n        \"JJ\"\n    ], \n    \"Thailand\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Huerta\": [\n        \"NNP\"\n    ], \n    \"supermarket-refrigeration\": [\n        \"NN\"\n    ], \n    \"thrift-industry\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"EXCHANGE\": [\n        \"NN\"\n    ], \n    \"hard-core\": [\n        \"JJ\"\n    ], \n    \"Massachussets\": [\n        \"NNP\"\n    ], \n    \"Parsow\": [\n        \"NNP\"\n    ], \n    \"Trevor\": [\n        \"NNP\"\n    ], \n    \"Airlines\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"musicality\": [\n        \"NN\"\n    ], \n    \"Parson\": [\n        \"NNP\"\n    ], \n    \"airline-industry\": [\n        \"NN\"\n    ], \n    \"watcher\": [\n        \"NN\"\n    ], \n    \"advance-purchase\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"emergency-relief\": [\n        \"NN\"\n    ], \n    \"welcoming\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"Arigato\": [\n        \"FW\"\n    ], \n    \"super-experiment\": [\n        \"NN\"\n    ], \n    \"Spruell\": [\n        \"NNP\"\n    ], \n    \"Tissues\": [\n        \"NNPS\"\n    ], \n    \"limited-scale\": [\n        \"JJ\"\n    ], \n    \"General\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Nunn\": [\n        \"NNP\"\n    ], \n    \"Pricing\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"THREAT\": [\n        \"NN\"\n    ], \n    \"hubs\": [\n        \"NNS\"\n    ], \n    \"ensuing\": [\n        \"VBG\"\n    ], \n    \"outshone\": [\n        \"NN\"\n    ], \n    \"frustrating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"lassitude\": [\n        \"NN\"\n    ], \n    \"liberal-democratic\": [\n        \"JJ\"\n    ], \n    \"Carty\": [\n        \"NNP\"\n    ], \n    \"movie-to-be\": [\n        \"NN\"\n    ], \n    \"workplaces\": [\n        \"NNS\"\n    ], \n    \"weighed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"arrangements\": [\n        \"NNS\"\n    ], \n    \"closets\": [\n        \"NNS\"\n    ], \n    \"marginalia\": [\n        \"NNS\"\n    ], \n    \"watched\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Beach\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"corporate-lending\": [\n        \"JJ\"\n    ], \n    \"tumbled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"whirl\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"diety\": [\n        \"NN\"\n    ], \n    \"Fever\": [\n        \"NN\"\n    ], \n    \"Return\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"Schuette\": [\n        \"NNP\"\n    ], \n    \"MBK\": [\n        \"NNP\"\n    ], \n    \"diets\": [\n        \"NNS\"\n    ], \n    \"MBE\": [\n        \"NNP\"\n    ], \n    \"DiSimone\": [\n        \"NNP\"\n    ], \n    \"MBA\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"MBB\": [\n        \"NNP\"\n    ], \n    \"target-language\": [\n        \"NN\"\n    ], \n    \"sugar-coated\": [\n        \"JJ\"\n    ], \n    \"Polo\\\\/Ralph\": [\n        \"NNP\"\n    ], \n    \"tumbler\": [\n        \"NN\"\n    ], \n    \"Postel\": [\n        \"NNP\"\n    ], \n    \"powerboat\": [\n        \"NN\"\n    ], \n    \"Posted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"garish\": [\n        \"JJ\"\n    ], \n    \"Pemex\": [\n        \"NNP\"\n    ], \n    \"Prevents\": [\n        \"VBZ\"\n    ], \n    \"Aims\": [\n        \"VBZ\"\n    ], \n    \"sauna\": [\n        \"NN\"\n    ], \n    \"Groves\": [\n        \"NNP\"\n    ], \n    \"Grover\": [\n        \"NNP\"\n    ], \n    \"Haste\": [\n        \"NN\"\n    ], \n    \"noncommittally\": [\n        \"RB\"\n    ], \n    \"yoga\": [\n        \"NN\"\n    ], \n    \"unfetter\": [\n        \"VB\"\n    ], \n    \"C.R.\": [\n        \"NNP\"\n    ], \n    \"Westminister\": [\n        \"NNP\"\n    ], \n    \"Pasquale\": [\n        \"NNP\"\n    ], \n    \"disoriented\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"exceedingly\": [\n        \"RB\"\n    ], \n    \"wobbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"residuals\": [\n        \"NNS\"\n    ], \n    \"redeemable\": [\n        \"JJ\"\n    ], \n    \"Warshaw\": [\n        \"NNP\"\n    ], \n    \"comparisons\": [\n        \"NNS\"\n    ], \n    \"multibilliondollar\": [\n        \"JJ\"\n    ], \n    \"wreckage\": [\n        \"NN\"\n    ], \n    \"Weimar\": [\n        \"NNP\"\n    ], \n    \"stores\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"numbering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"diskette\": [\n        \"NN\"\n    ], \n    \"interim\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Collected\": [\n        \"NNP\"\n    ], \n    \"localize\": [\n        \"VB\"\n    ], \n    \"flashlight\": [\n        \"NN\"\n    ], \n    \"nerve-shattering\": [\n        \"JJ\"\n    ], \n    \"Aspects\": [\n        \"NNPS\"\n    ], \n    \"repetitious\": [\n        \"JJ\"\n    ], \n    \"reformer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"onward\": [\n        \"RB\"\n    ], \n    \"demographic\": [\n        \"JJ\"\n    ], \n    \"future-time\": [\n        \"JJ\"\n    ], \n    \"ductwork\": [\n        \"NN\"\n    ], \n    \"slits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Jacobius\": [\n        \"NNP\"\n    ], \n    \"tremulously\": [\n        \"RB\"\n    ], \n    \"Heiko\": [\n        \"NNP\"\n    ], \n    \"embossed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bishops\": [\n        \"NNS\"\n    ], \n    \"reformed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"characteristically\": [\n        \"RB\"\n    ], \n    \"resolved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"footholds\": [\n        \"NNS\"\n    ], \n    \"co-founders\": [\n        \"NNS\"\n    ], \n    \"Thread\": [\n        \"VB\"\n    ], \n    \"Madrigal\": [\n        \"NNP\"\n    ], \n    \"Hadley\": [\n        \"NNP\"\n    ], \n    \"Gran\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Threat\": [\n        \"NN\"\n    ], \n    \"resolves\": [\n        \"VBZ\"\n    ], \n    \"Release\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"bailiff\": [\n        \"NN\"\n    ], \n    \"futures-market\": [\n        \"NN\"\n    ], \n    \"computer-age\": [\n        \"JJ\"\n    ], \n    \"Inflammatory\": [\n        \"JJ\"\n    ], \n    \"like\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"minicomputer\": [\n        \"NN\"\n    ], \n    \"vibrant\": [\n        \"JJ\"\n    ], \n    \"Niem\": [\n        \"NNP\"\n    ], \n    \"admitted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Anders\": [\n        \"NNP\"\n    ], \n    \"H/NNP.A.\": [\n        \"NN\"\n    ], \n    \"chick\": [\n        \"NN\"\n    ], \n    \"job-hunting\": [\n        \"JJ\"\n    ], \n    \"kaleidoscope\": [\n        \"NN\"\n    ], \n    \"coin-cleaning\": [\n        \"JJ\"\n    ], \n    \"one-year-old\": [\n        \"JJ\"\n    ], \n    \"Heldring\": [\n        \"NNP\"\n    ], \n    \"foamed-in-place\": [\n        \"JJ\"\n    ], \n    \"Wasatch\": [\n        \"NNP\"\n    ], \n    \"Meyerbeer\": [\n        \"NNP\"\n    ], \n    \"Arney\": [\n        \"NNP\"\n    ], \n    \"scurried\": [\n        \"VBD\"\n    ], \n    \"federal-court\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Arai\": [\n        \"NNP\"\n    ], \n    \"hail\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"hair\": [\n        \"NN\"\n    ], \n    \"Tribune-Democrat\": [\n        \"NNP\"\n    ], \n    \"Palatine\": [\n        \"NNP\"\n    ], \n    \"Janofsky\": [\n        \"NNP\"\n    ], \n    \"recommendation\": [\n        \"NN\"\n    ], \n    \"elephantine\": [\n        \"JJ\"\n    ], \n    \"indemnify\": [\n        \"VB\"\n    ], \n    \"poseurs\": [\n        \"NNS\"\n    ], \n    \"scurries\": [\n        \"NNS\"\n    ], \n    \"Non-Catholics\": [\n        \"NNS\"\n    ], \n    \"Crosbys\": [\n        \"NNPS\"\n    ], \n    \"trust\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"OS\\\\\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hurricane\": [\n        \"NN\"\n    ], \n    \"McDLT\": [\n        \"NNP\"\n    ], \n    \"unalluring\": [\n        \"JJ\"\n    ], \n    \"neurosis\": [\n        \"NN\"\n    ], \n    \"discretion\": [\n        \"NN\"\n    ], \n    \"Racks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"null-type\": [\n        \"JJ\"\n    ], \n    \"fueloil\": [\n        \"NN\"\n    ], \n    \"videotext\": [\n        \"NN\"\n    ], \n    \"Mathues\": [\n        \"NNP\"\n    ], \n    \"Baker\": [\n        \"NNP\"\n    ], \n    \"Bakes\": [\n        \"NNP\"\n    ], \n    \"non-readers\": [\n        \"NNS\"\n    ], \n    \"lieutenant\": [\n        \"NN\"\n    ], \n    \"uptight\": [\n        \"JJ\"\n    ], \n    \"Oubati\": [\n        \"NNP\"\n    ], \n    \"Diebel\": [\n        \"NNP\"\n    ], \n    \"marketable\": [\n        \"JJ\"\n    ], \n    \"consumerism\": [\n        \"NN\"\n    ], \n    \"Foggia\": [\n        \"NNP\"\n    ], \n    \"Indulgence\": [\n        \"NNP\"\n    ], \n    \"Jarrell\": [\n        \"NNP\"\n    ], \n    \"CPAs\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"introduces\": [\n        \"VBZ\"\n    ], \n    \"purism\": [\n        \"NN\"\n    ], \n    \"switchboard\": [\n        \"NN\"\n    ], \n    \"befogged\": [\n        \"JJ\"\n    ], \n    \"Japan\": [\n        \"NNP\"\n    ], \n    \"introduced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kingman\": [\n        \"NNP\"\n    ], \n    \"Salina\": [\n        \"NNP\"\n    ], \n    \"Psychology\": [\n        \"NNP\"\n    ], \n    \"socks\": [\n        \"NNS\"\n    ], \n    \"Iraqw\": [\n        \"NNP\"\n    ], \n    \"Iraqi\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"termini\": [\n        \"NNS\"\n    ], \n    \"Mindlin\": [\n        \"NNP\"\n    ], \n    \"lightyears\": [\n        \"NNS\"\n    ], \n    \"Cronkite\": [\n        \"NNP\"\n    ], \n    \"Lanzhou\": [\n        \"NNP\"\n    ], \n    \"Fresca\": [\n        \"NNP\"\n    ], \n    \"impartation\": [\n        \"NN\"\n    ], \n    \"elastic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rushed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"two-tone\": [\n        \"JJ\"\n    ], \n    \"petroleumproducts\": [\n        \"NNS\"\n    ], \n    \"FAST\": [\n        \"NNP\"\n    ], \n    \"rushes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Artra\": [\n        \"NNP\"\n    ], \n    \"onepage\": [\n        \"JJ\"\n    ], \n    \"glimmer\": [\n        \"NN\"\n    ], \n    \"FASB\": [\n        \"NNP\"\n    ], \n    \"USN.\": [\n        \"NNP\"\n    ], \n    \"touted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"insures\": [\n        \"VBZ\"\n    ], \n    \"insurer\": [\n        \"NN\"\n    ], \n    \"coke\": [\n        \"NN\"\n    ], \n    \"insured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"propylene\": [\n        \"NN\"\n    ], \n    \"photocathodes\": [\n        \"NNS\"\n    ], \n    \"no-star\": [\n        \"JJ\"\n    ], \n    \"anonymous\": [\n        \"JJ\"\n    ], \n    \"now-obscure\": [\n        \"JJ\"\n    ], \n    \"persimmons\": [\n        \"NNS\"\n    ], \n    \"Ariail\": [\n        \"NNP\"\n    ], \n    \"flit\": [\n        \"VBP\"\n    ], \n    \"non-representation\": [\n        \"JJ\"\n    ], \n    \"flip\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Konigsberg\": [\n        \"NNP\"\n    ], \n    \"Toshiki\": [\n        \"NNP\"\n    ], \n    \"omnibus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Toshiko\": [\n        \"NNP\"\n    ], \n    \"thorn\": [\n        \"NN\"\n    ], \n    \"wage-discrimination\": [\n        \"NN\"\n    ], \n    \"madrigal\": [\n        \"NN\"\n    ], \n    \"replying\": [\n        \"VBG\"\n    ], \n    \"circus\": [\n        \"NN\"\n    ], \n    \"well-defined\": [\n        \"JJ\"\n    ], \n    \"kilogram\": [\n        \"NN\"\n    ], \n    \"shoot-out\": [\n        \"NN\"\n    ], \n    \"commentators\": [\n        \"NNS\"\n    ], \n    \"identities\": [\n        \"NNS\"\n    ], \n    \"Carwood\": [\n        \"NNP\"\n    ], \n    \"Driesell\": [\n        \"NNP\"\n    ], \n    \"Trepp\": [\n        \"NNP\"\n    ], \n    \"geeing\": [\n        \"VBG\"\n    ], \n    \"dressed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Movable\": [\n        \"JJ\"\n    ], \n    \"interdepartmental\": [\n        \"JJ\"\n    ], \n    \"detain\": [\n        \"VB\"\n    ], \n    \"Wireless\": [\n        \"NNP\"\n    ], \n    \"interest-free\": [\n        \"JJ\"\n    ], \n    \"ducked\": [\n        \"VBD\"\n    ], \n    \"dresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dresser\": [\n        \"NN\"\n    ], \n    \"convicts\": [\n        \"NNS\"\n    ], \n    \"Cry\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Fortas\": [\n        \"NNP\"\n    ], \n    \"Hersey\": [\n        \"NNP\"\n    ], \n    \"maturational\": [\n        \"JJ\"\n    ], \n    \"April\": [\n        \"NNP\"\n    ], \n    \"detours\": [\n        \"NNS\"\n    ], \n    \"over-hired\": [\n        \"VBD\"\n    ], \n    \"Prospect\": [\n        \"NNP\"\n    ], \n    \"stirred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ramble\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"AARP\": [\n        \"NNP\"\n    ], \n    \"grimmer\": [\n        \"RBR\"\n    ], \n    \"Alonso\": [\n        \"NNP\"\n    ], \n    \"wine\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gratified\": [\n        \"JJ\"\n    ], \n    \"pool-equipment\": [\n        \"NN\"\n    ], \n    \"Communisn\": [\n        \"NN\"\n    ], \n    \"EVERYONE\": [\n        \"NN\"\n    ], \n    \"Minitruck\": [\n        \"NN\"\n    ], \n    \"Zaves\": [\n        \"NNP\"\n    ], \n    \"sterilizing\": [\n        \"VBG\"\n    ], \n    \"dynasty\": [\n        \"NN\"\n    ], \n    \"Communist\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Infirmary\": [\n        \"NNP\"\n    ], \n    \"inexpert\": [\n        \"JJ\"\n    ], \n    \"Employes\": [\n        \"NNS\"\n    ], \n    \"public-relations\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"consciences\": [\n        \"NNS\"\n    ], \n    \"Wathen\": [\n        \"NNP\"\n    ], \n    \"glides\": [\n        \"VBZ\"\n    ], \n    \"midseason\": [\n        \"NN\"\n    ], \n    \"activist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"orange-juice\": [\n        \"NN\"\n    ], \n    \"@\": [\n        \"IN\", \n        \"SYM\"\n    ], \n    \"noninterest-income\": [\n        \"NN\"\n    ], \n    \"haughtiness\": [\n        \"NN\"\n    ], \n    \"Deluge\": [\n        \"NN\"\n    ], \n    \"non-interest\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"prowls\": [\n        \"VBZ\"\n    ], \n    \"Auvil\": [\n        \"NNP\"\n    ], \n    \"Kevah\": [\n        \"NNP\"\n    ], \n    \"nw.\": [\n        \"NN\"\n    ], \n    \"reiterating\": [\n        \"VBG\"\n    ], \n    \"Shook\": [\n        \"VBD\"\n    ], \n    \"canners\": [\n        \"NNS\"\n    ], \n    \"MONEY\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"harried\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ANNUAL\": [\n        \"JJ\"\n    ], \n    \"cannery\": [\n        \"NN\"\n    ], \n    \"drug-pricing\": [\n        \"NN\"\n    ], \n    \"barracks\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"martingale\": [\n        \"NN\"\n    ], \n    \"Norris-LaGuardia\": [\n        \"NNP\"\n    ], \n    \"feathery\": [\n        \"JJ\"\n    ], \n    \"Fortunately\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Nightmare\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"feathers\": [\n        \"NNS\"\n    ], \n    \"direct\": [\n        \"JJ\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Solly\": [\n        \"NNP\"\n    ], \n    \"nail\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Okamoto\": [\n        \"NNP\"\n    ], \n    \"bubblelike\": [\n        \"JJ\"\n    ], \n    \"Samsung-Corning\": [\n        \"NNP\"\n    ], \n    \"caseworkers\": [\n        \"NNS\"\n    ], \n    \"commemorating\": [\n        \"VBG\"\n    ], \n    \"revolves\": [\n        \"VBZ\"\n    ], \n    \"revolver\": [\n        \"NN\"\n    ], \n    \"liberty\": [\n        \"NN\"\n    ], \n    \"Houdini\": [\n        \"NNP\"\n    ], \n    \"Mmm\": [\n        \"UH\"\n    ], \n    \"oaths\": [\n        \"NNS\"\n    ], \n    \"Manko\": [\n        \"NNP\"\n    ], \n    \"ebbs\": [\n        \"VBZ\"\n    ], \n    \"rubdowns\": [\n        \"NNS\"\n    ], \n    \"revolved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Augustan\": [\n        \"NNP\"\n    ], \n    \"electroshocks\": [\n        \"NNS\"\n    ], \n    \"ultimatums\": [\n        \"NNS\"\n    ], \n    \"half-past\": [\n        \"JJ\"\n    ], \n    \"overplanted\": [\n        \"VBN\"\n    ], \n    \"vertebrates\": [\n        \"NNS\"\n    ], \n    \"GARY\": [\n        \"NNP\"\n    ], \n    \"Fitchburg\": [\n        \"NNP\"\n    ], \n    \"red-and-white\": [\n        \"JJ\"\n    ], \n    \"snacked\": [\n        \"VBD\"\n    ], \n    \"Dames\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Obligations\": [\n        \"NNS\"\n    ], \n    \"counterprogramming\": [\n        \"NN\"\n    ], \n    \"leaves\": [\n        \"VBZ\", \n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Elkus\": [\n        \"NNP\"\n    ], \n    \"Per-capita\": [\n        \"JJ\"\n    ], \n    \"White-haired\": [\n        \"JJ\"\n    ], \n    \"Barbados\": [\n        \"NNP\"\n    ], \n    \"midway\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"issuers\": [\n        \"NNS\"\n    ], \n    \"prints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"consumer-analgesic\": [\n        \"JJ\"\n    ], \n    \"Well-Tempered\": [\n        \"JJ\"\n    ], \n    \"Narrative\": [\n        \"JJ\"\n    ], \n    \"purifying\": [\n        \"VBG\"\n    ], \n    \"Henceforth\": [\n        \"RB\"\n    ], \n    \"Pasadena\": [\n        \"NNP\"\n    ], \n    \"meats\": [\n        \"NNS\"\n    ], \n    \"Lefcourt\": [\n        \"NNP\"\n    ], \n    \"audivi\": [\n        \"FW\"\n    ], \n    \"meaty\": [\n        \"JJ\"\n    ], \n    \"riots\": [\n        \"NNS\"\n    ], \n    \"saleswomen\": [\n        \"NNS\"\n    ], \n    \"gweilo\": [\n        \"FW\"\n    ], \n    \"denationalization\": [\n        \"NN\"\n    ], \n    \"dollar-sellers\": [\n        \"NNS\"\n    ], \n    \"fainting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"saber\": [\n        \"NN\"\n    ], \n    \"small-employer\": [\n        \"NN\"\n    ], \n    \"Sounion\": [\n        \"NNP\"\n    ], \n    \"Blue-chip\": [\n        \"JJ\"\n    ], \n    \"Legers\": [\n        \"NNPS\"\n    ], \n    \"overstored\": [\n        \"JJ\"\n    ], \n    \"excellent\": [\n        \"JJ\"\n    ], \n    \"Accrued\": [\n        \"VBN\"\n    ], \n    \"Kay-Bee\": [\n        \"NNP\"\n    ], \n    \"supplemental\": [\n        \"JJ\"\n    ], \n    \"Bio-Technology\": [\n        \"NNP\"\n    ], \n    \"Manigat\": [\n        \"NNP\"\n    ], \n    \"philanthropic\": [\n        \"JJ\"\n    ], \n    \"Brahms\": [\n        \"NNP\"\n    ], \n    \"archaism\": [\n        \"NN\"\n    ], \n    \"Lube\": [\n        \"NNP\"\n    ], \n    \"iridium\": [\n        \"NN\"\n    ], \n    \"Fox-Meyer\": [\n        \"NNP\"\n    ], \n    \"Mohan\": [\n        \"NNP\"\n    ], \n    \"Mrad\": [\n        \"NN\"\n    ], \n    \"salvage\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"grenade\": [\n        \"NN\"\n    ], \n    \"Buchwald\": [\n        \"NNP\"\n    ], \n    \"male-fertile\": [\n        \"JJ\"\n    ], \n    \"scorekeepers\": [\n        \"NNS\"\n    ], \n    \"overhears\": [\n        \"VBZ\"\n    ], \n    \"Jarvik\": [\n        \"NNP\"\n    ], \n    \"estate\": [\n        \"NN\"\n    ], \n    \"hemoglobin\": [\n        \"NN\"\n    ], \n    \"gadgets\": [\n        \"NNS\"\n    ], \n    \"more-spontaneous\": [\n        \"JJ\"\n    ], \n    \"treasuries\": [\n        \"NNS\"\n    ], \n    \"jumble\": [\n        \"NN\"\n    ], \n    \"keep\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"attract\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Jarvis\": [\n        \"NNP\"\n    ], \n    \"ceremony\": [\n        \"NN\"\n    ], \n    \"Haywood\": [\n        \"NNP\"\n    ], \n    \"multibank\": [\n        \"NN\"\n    ], \n    \"drummed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"finalist\": [\n        \"NN\"\n    ], \n    \"drummer\": [\n        \"NN\"\n    ], \n    \"Poverty\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"pro-environment\": [\n        \"NN\"\n    ], \n    \"Flemings\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"char-broiled\": [\n        \"JJ\"\n    ], \n    \"description\": [\n        \"NN\"\n    ], \n    \"first-bracket\": [\n        \"NN\"\n    ], \n    \"insecure\": [\n        \"JJ\"\n    ], \n    \"befoh\": [\n        \"RB\"\n    ], \n    \"astoundingly\": [\n        \"RB\"\n    ], \n    \"Stookey\": [\n        \"NNP\"\n    ], \n    \"ash-blonde\": [\n        \"JJ\"\n    ], \n    \"Wilhelmina\": [\n        \"NNP\"\n    ], \n    \"salsa\": [\n        \"NN\"\n    ], \n    \"Banners\": [\n        \"NNS\"\n    ], \n    \"parallel\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"provisionally\": [\n        \"RB\"\n    ], \n    \"humiliatingly\": [\n        \"RB\"\n    ], \n    \"Quakeress\": [\n        \"NN\"\n    ], \n    \"Sadler\": [\n        \"NNP\"\n    ], \n    \"hotel-casinos\": [\n        \"NNS\"\n    ], \n    \"HEALTHY\": [\n        \"JJ\"\n    ], \n    \"amid\": [\n        \"IN\"\n    ], \n    \"highpriced\": [\n        \"JJ\"\n    ], \n    \"pullout\": [\n        \"NN\"\n    ], \n    \"summing\": [\n        \"VBG\"\n    ], \n    \"flippantly\": [\n        \"RB\"\n    ], \n    \"funniest\": [\n        \"JJS\"\n    ], \n    \"fourth-biggest\": [\n        \"JJ\"\n    ], \n    \"Rouge\": [\n        \"NNP\"\n    ], \n    \"antique-car\": [\n        \"NN\"\n    ], \n    \"Rough\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Midvale\": [\n        \"NNP\"\n    ], \n    \"reforming\": [\n        \"VBG\"\n    ], \n    \"glories\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"agriculture-related\": [\n        \"JJ\"\n    ], \n    \"resounds\": [\n        \"VBZ\"\n    ], \n    \"Sportin\": [\n        \"VBG\"\n    ], \n    \"staining\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Nadelmann\": [\n        \"NNP\"\n    ], \n    \"Haselhoff\": [\n        \"NNP\"\n    ], \n    \"How-2\": [\n        \"NNP\"\n    ], \n    \"howdy\": [\n        \"UH\"\n    ], \n    \"RXDC\": [\n        \"NNP\"\n    ], \n    \"dioramas\": [\n        \"NN\"\n    ], \n    \"Reva\": [\n        \"NNP\"\n    ], \n    \"Shopkorn\": [\n        \"NNP\"\n    ], \n    \"rancidity\": [\n        \"NN\"\n    ], \n    \"sob\": [\n        \"VB\"\n    ], \n    \"Convinced\": [\n        \"VBN\"\n    ], \n    \"Blistered\": [\n        \"VBN\"\n    ], \n    \"McCord\": [\n        \"NNP\"\n    ], \n    \"Coastline\": [\n        \"NNP\"\n    ], \n    \"denizens\": [\n        \"NNS\"\n    ], \n    \"blots\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"diseases\": [\n        \"NNS\"\n    ], \n    \"coconut-containing\": [\n        \"JJ\"\n    ], \n    \"Kosar\": [\n        \"NNP\"\n    ], \n    \"preconceived\": [\n        \"JJ\"\n    ], \n    \"whitened\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"diseased\": [\n        \"JJ\"\n    ], \n    \"linguists\": [\n        \"NNS\"\n    ], \n    \"Kosan\": [\n        \"NNP\"\n    ], \n    \"flotation\": [\n        \"NN\"\n    ], \n    \"Nameless\": [\n        \"NNP\"\n    ], \n    \"Online\": [\n        \"NNP\"\n    ], \n    \"ennumerated\": [\n        \"VBD\"\n    ], \n    \"Soldatenko\": [\n        \"NNP\"\n    ], \n    \"long-hair\": [\n        \"JJ\"\n    ], \n    \"steelworkers\": [\n        \"NNS\"\n    ], \n    \"Walden\": [\n        \"NNP\"\n    ], \n    \"Verfahrenstechnik\": [\n        \"NNP\"\n    ], \n    \"Unigesco\": [\n        \"NNP\"\n    ], \n    \"Three-and-a-half\": [\n        \"JJ\"\n    ], \n    \"Adding\": [\n        \"VBG\"\n    ], \n    \"exhilarated\": [\n        \"VBN\"\n    ], \n    \"fishpond\": [\n        \"NN\"\n    ], \n    \"Percent\": [\n        \"NN\"\n    ], \n    \"leftist\": [\n        \"JJ\"\n    ], \n    \"nitrite\": [\n        \"NN\"\n    ], \n    \"Handelsman\": [\n        \"NNP\"\n    ], \n    \"railed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Corpus\": [\n        \"NNP\"\n    ], \n    \"Stock-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Azusa\": [\n        \"NNP\"\n    ], \n    \"desertion\": [\n        \"NN\"\n    ], \n    \"Restrictive\": [\n        \"JJ\"\n    ], \n    \"Oberlin\": [\n        \"NNP\"\n    ], \n    \"banning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"foolishly\": [\n        \"RB\"\n    ], \n    \"newly\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Zeien\": [\n        \"NNP\"\n    ], \n    \"Signore\": [\n        \"NNP\"\n    ], \n    \"independence\": [\n        \"NN\"\n    ], \n    \"Inferential\": [\n        \"NNP\"\n    ], \n    \"Darwen\": [\n        \"NNP\"\n    ], \n    \"associate\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"hump-backed\": [\n        \"JJ\"\n    ], \n    \"unwraps\": [\n        \"VBZ\"\n    ], \n    \"Bitterness\": [\n        \"NN\"\n    ], \n    \"anti-A\": [\n        \"NNP\"\n    ], \n    \"anti-B\": [\n        \"NNP\"\n    ], \n    \"homologous\": [\n        \"RB\"\n    ], \n    \"Signora\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"mastering\": [\n        \"VBG\"\n    ], \n    \"too-hearty\": [\n        \"JJ\"\n    ], \n    \"ASW\": [\n        \"NN\"\n    ], \n    \"mononuclear\": [\n        \"JJ\"\n    ], \n    \"reinstatement\": [\n        \"NN\"\n    ], \n    \"Supervisor\": [\n        \"NNP\"\n    ], \n    \"Photo\": [\n        \"NNP\"\n    ], \n    \"notching\": [\n        \"VBG\"\n    ], \n    \"hyperbolic\": [\n        \"JJ\"\n    ], \n    \"spendthrifts\": [\n        \"NNS\"\n    ], \n    \"days\": [\n        \"NNS\"\n    ], \n    \"hypocracy\": [\n        \"NN\"\n    ], \n    \"Traits\": [\n        \"NNP\"\n    ], \n    \"wowed\": [\n        \"VBD\"\n    ], \n    \"X-rayed\": [\n        \"VBN\"\n    ], \n    \"artistry\": [\n        \"NN\"\n    ], \n    \"F.B.\": [\n        \"NNP\"\n    ], \n    \"weight-training\": [\n        \"NN\"\n    ], \n    \"ayni\": [\n        \"NNS\"\n    ], \n    \"ecumenists\": [\n        \"NNS\"\n    ], \n    \"Interviewed\": [\n        \"VBN\"\n    ], \n    \"lovable\": [\n        \"JJ\"\n    ], \n    \"subcontractor\": [\n        \"NN\"\n    ], \n    \"much-discussed\": [\n        \"JJ\"\n    ], \n    \"Shenandoah\": [\n        \"NNP\"\n    ], \n    \"inter-German\": [\n        \"JJ\"\n    ], \n    \"affilliate\": [\n        \"NN\"\n    ], \n    \"ASC\": [\n        \"NNP\"\n    ], \n    \"fact-finding\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Insurances\": [\n        \"NNPS\"\n    ], \n    \"Cocoons\": [\n        \"NNS\"\n    ], \n    \"five-foot\": [\n        \"JJ\"\n    ], \n    \"ASA\": [\n        \"NNP\"\n    ], \n    \"pomological\": [\n        \"JJ\"\n    ], \n    \"gowns\": [\n        \"NNS\"\n    ], \n    \"Sweetener\": [\n        \"NNP\"\n    ], \n    \"malingering\": [\n        \"VBG\"\n    ], \n    \"extra-nasty\": [\n        \"JJ\"\n    ], \n    \"speechwriters\": [\n        \"NNS\"\n    ], \n    \"Automated\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"embellish\": [\n        \"VB\"\n    ], \n    \"Twice\": [\n        \"RB\"\n    ], \n    \"life-enhancement\": [\n        \"NN\"\n    ], \n    \"Thames\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Shots\": [\n        \"NNS\"\n    ], \n    \"postcards\": [\n        \"NNS\"\n    ], \n    \"lather\": [\n        \"NN\"\n    ], \n    \"finance-director\": [\n        \"NN\"\n    ], \n    \"Surrey\": [\n        \"NNP\"\n    ], \n    \"reclining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"frankly\": [\n        \"RB\"\n    ], \n    \"overinvested\": [\n        \"VBN\"\n    ], \n    \"up-or-down\": [\n        \"JJ\"\n    ], \n    \"visages\": [\n        \"NNS\"\n    ], \n    \"Sputnik\": [\n        \"NNP\"\n    ], \n    \"hemispherical\": [\n        \"JJ\"\n    ], \n    \"seminal\": [\n        \"JJ\"\n    ], \n    \"bridge\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Christos\": [\n        \"NNP\"\n    ], \n    \"handkerchief\": [\n        \"NN\"\n    ], \n    \"thistles\": [\n        \"NNS\"\n    ], \n    \"Barreiro\": [\n        \"NNP\"\n    ], \n    \"OCC-member\": [\n        \"JJ\"\n    ], \n    \"unpopular\": [\n        \"JJ\"\n    ], \n    \"Help-wanted\": [\n        \"JJ\"\n    ], \n    \"truck-sales\": [\n        \"NNS\"\n    ], \n    \"Binn\": [\n        \"NNP\"\n    ], \n    \"lunchtime\": [\n        \"NN\"\n    ], \n    \"healer\": [\n        \"NN\"\n    ], \n    \"Bernini\": [\n        \"NNP\"\n    ], \n    \"general-merchandise\": [\n        \"NN\"\n    ], \n    \"page-long\": [\n        \"JJ\"\n    ], \n    \"seminar\": [\n        \"NN\"\n    ], \n    \"parliamentarian\": [\n        \"NN\"\n    ], \n    \"thoroughly\": [\n        \"RB\"\n    ], \n    \"Trends\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"thorough\": [\n        \"JJ\"\n    ], \n    \"dermal\": [\n        \"JJ\"\n    ], \n    \"unashamedly\": [\n        \"RB\"\n    ], \n    \"Nikitas\": [\n        \"NNP\"\n    ], \n    \"Economies\": [\n        \"NNS\"\n    ], \n    \"court-appointed\": [\n        \"JJ\"\n    ], \n    \"cross-bay\": [\n        \"JJ\"\n    ], \n    \"tularemia\": [\n        \"NN\"\n    ], \n    \"Schroder\": [\n        \"NNP\"\n    ], \n    \"hotel-restaurant\": [\n        \"NN\"\n    ], \n    \"erasers\": [\n        \"NNS\"\n    ], \n    \"impels\": [\n        \"VBZ\"\n    ], \n    \"rancid\": [\n        \"JJ\"\n    ], \n    \"Promised\": [\n        \"JJ\"\n    ], \n    \"aggrandizing\": [\n        \"VBG\"\n    ], \n    \"pardoned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mega-projects\": [\n        \"NNS\"\n    ], \n    \"overpriced\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Anglo-North\": [\n        \"JJ\"\n    ], \n    \"Tsarevich\": [\n        \"NNP\"\n    ], \n    \"U.S.investors\": [\n        \"NNS\"\n    ], \n    \"Spots\": [\n        \"NNS\"\n    ], \n    \"musicals\": [\n        \"NNS\"\n    ], \n    \"Inquirer\": [\n        \"NNP\"\n    ], \n    \"opinionmakers\": [\n        \"NNS\"\n    ], \n    \"aspired\": [\n        \"VBD\"\n    ], \n    \"peddle\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"endowment\": [\n        \"NN\"\n    ], \n    \"LOCKHEED\": [\n        \"NNP\"\n    ], \n    \"prevailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"situations\": [\n        \"NNS\"\n    ], \n    \"sycophantic\": [\n        \"JJ\"\n    ], \n    \"gouty\": [\n        \"JJ\"\n    ], \n    \"liquified\": [\n        \"JJ\"\n    ], \n    \"hardball\": [\n        \"NN\"\n    ], \n    \"greenness\": [\n        \"NN\"\n    ], \n    \"borrowed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"sambur\": [\n        \"NN\"\n    ], \n    \"Handicapped\": [\n        \"NNP\"\n    ], \n    \"neoclassical\": [\n        \"JJ\"\n    ], \n    \"ultimatum\": [\n        \"NN\"\n    ], \n    \"borrower\": [\n        \"NN\"\n    ], \n    \"applejack\": [\n        \"NN\"\n    ], \n    \"Gunder\": [\n        \"NNP\"\n    ], \n    \"considerate\": [\n        \"JJ\"\n    ], \n    \"dog-eared\": [\n        \"JJ\"\n    ], \n    \"Weatherly\": [\n        \"NNP\"\n    ], \n    \"angers\": [\n        \"VBZ\"\n    ], \n    \"bel\": [\n        \"FW\"\n    ], \n    \"spokesperson\": [\n        \"NN\"\n    ], \n    \"igneous\": [\n        \"JJ\"\n    ], \n    \"Mediterranean\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"massifs\": [\n        \"NNS\"\n    ], \n    \"multinationalism\": [\n        \"NN\"\n    ], \n    \"ailments\": [\n        \"NNS\"\n    ], \n    \"Medialink\": [\n        \"NNP\"\n    ], \n    \"wildflowers\": [\n        \"NNS\"\n    ], \n    \"sharpens\": [\n        \"VBZ\"\n    ], \n    \"skeptically\": [\n        \"RB\"\n    ], \n    \"Wolfe\": [\n        \"NNP\"\n    ], \n    \"Helva\": [\n        \"NNP\"\n    ], \n    \"Wolff\": [\n        \"NNP\"\n    ], \n    \"potty\": [\n        \"NN\"\n    ], \n    \"Formula\": [\n        \"NN\"\n    ], \n    \"Datson\": [\n        \"NNP\"\n    ], \n    \"molehill\": [\n        \"NN\"\n    ], \n    \"Stolley\": [\n        \"NNP\"\n    ], \n    \"mus\": [\n        \"MD\"\n    ], \n    \"Corp.:8.725\": [\n        \"NNP\"\n    ], \n    \"Stoller\": [\n        \"NNP\"\n    ], \n    \"Insomnia\": [\n        \"NN\"\n    ], \n    \"mud\": [\n        \"NN\"\n    ], \n    \"Pizarro\": [\n        \"NNP\"\n    ], \n    \"Hilger\": [\n        \"NNP\"\n    ], \n    \"G.E.\": [\n        \"NNP\"\n    ], \n    \"hopefully\": [\n        \"RB\"\n    ], \n    \"mum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"furloughs\": [\n        \"NNS\"\n    ], \n    \"herding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"print-developing\": [\n        \"JJ\"\n    ], \n    \"deposed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Staffordshire\": [\n        \"NNP\"\n    ], \n    \"pre-med\": [\n        \"JJ\"\n    ], \n    \"Zimbabwean\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"portrays\": [\n        \"VBZ\"\n    ], \n    \"CEREAL\": [\n        \"NNP\"\n    ], \n    \"four-quarter\": [\n        \"JJ\"\n    ], \n    \"NASAA\": [\n        \"NNP\"\n    ], \n    \"Drahuschak\": [\n        \"NNP\"\n    ], \n    \"Bridgeton\": [\n        \"NNP\"\n    ], \n    \"born-to-shop\": [\n        \"JJ\"\n    ], \n    \"fault\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Barnum\": [\n        \"NNP\"\n    ], \n    \"overcooks\": [\n        \"VBZ\"\n    ], \n    \"Pantas\": [\n        \"NNP\"\n    ], \n    \"six-day\": [\n        \"JJ\"\n    ], \n    \"consonantal\": [\n        \"JJ\"\n    ], \n    \"Gandois\": [\n        \"NNP\"\n    ], \n    \"spurs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"industry-specific\": [\n        \"JJ\"\n    ], \n    \"expense\": [\n        \"NN\"\n    ], \n    \"interoffice\": [\n        \"JJ\"\n    ], \n    \"HomeFed\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Blomfield\": [\n        \"NNP\"\n    ], \n    \"antiSony\": [\n        \"JJ\"\n    ], \n    \"Geos\": [\n        \"NNS\"\n    ], \n    \"TVs\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"hands-down\": [\n        \"JJ\"\n    ], \n    \"foamy-necked\": [\n        \"JJ\"\n    ], \n    \"inactivate\": [\n        \"VB\"\n    ], \n    \"Vendome\": [\n        \"NNP\"\n    ], \n    \"corteggiamento\": [\n        \"FW\"\n    ], \n    \"villains\": [\n        \"NNS\"\n    ], \n    \"pre-selected\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Cutty\": [\n        \"NNP\"\n    ], \n    \"FEMALES\": [\n        \"NNS\"\n    ], \n    \"TVX\": [\n        \"NNP\"\n    ], \n    \"Hockett\": [\n        \"NNP\"\n    ], \n    \"warehouses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sororities\": [\n        \"NNS\"\n    ], \n    \"zigzags\": [\n        \"NNS\"\n    ], \n    \"TVS\": [\n        \"NNP\"\n    ], \n    \"Spencer\": [\n        \"NNP\"\n    ], \n    \"beneficiary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bering\": [\n        \"NNP\"\n    ], \n    \"appestat\": [\n        \"NN\"\n    ], \n    \"TVA\": [\n        \"NNP\"\n    ], \n    \"unchanged\": [\n        \"JJ\"\n    ], \n    \"refuted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Adams\": [\n        \"NNP\"\n    ], \n    \"pecked\": [\n        \"VBD\"\n    ], \n    \"transatlantic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Adame\": [\n        \"NNP\"\n    ], \n    \"Geo.\": [\n        \"NNP\"\n    ], \n    \"moldable\": [\n        \"JJ\"\n    ], \n    \"Adamo\": [\n        \"NNP\"\n    ], \n    \"Irretrievably\": [\n        \"RB\"\n    ], \n    \"STATES\": [\n        \"NNS\"\n    ], \n    \"microns\": [\n        \"NNS\"\n    ], \n    \"Fillmore\": [\n        \"NNP\"\n    ], \n    \"Deputy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"lb-plus\": [\n        \"JJ\"\n    ], \n    \"Shuiski\": [\n        \"NNP\"\n    ], \n    \"censors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"arnica\": [\n        \"NN\"\n    ], \n    \"SUBURBIA\": [\n        \"NN\"\n    ], \n    \"n\": [\n        \"NN\", \n        \"CC\"\n    ], \n    \"Herzog\": [\n        \"NNP\"\n    ], \n    \"dashboard\": [\n        \"NN\"\n    ], \n    \"YMCA\": [\n        \"NNP\"\n    ], \n    \"cantles\": [\n        \"NNS\"\n    ], \n    \"AIDS-inspired\": [\n        \"JJ\"\n    ], \n    \"disquisition\": [\n        \"NN\"\n    ], \n    \"persecutory\": [\n        \"JJ\"\n    ], \n    \"persecutors\": [\n        \"NNS\"\n    ], \n    \"card-carrying\": [\n        \"JJ\"\n    ], \n    \"accessories\": [\n        \"NNS\"\n    ], \n    \"dazzled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Tela\": [\n        \"NNP\"\n    ], \n    \"dazzles\": [\n        \"VBZ\"\n    ], \n    \"dazzler\": [\n        \"NN\"\n    ], \n    \"pathology\": [\n        \"NN\"\n    ], \n    \"Microdyne\": [\n        \"NNP\"\n    ], \n    \"Tell\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Thacher\": [\n        \"NNP\"\n    ], \n    \"Handing\": [\n        \"VBG\"\n    ], \n    \"Abstraction\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"prior\": [\n        \"RB\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"forgitful\": [\n        \"JJ\"\n    ], \n    \"high-polluting\": [\n        \"JJ\"\n    ], \n    \"Woodruff\": [\n        \"NNP\"\n    ], \n    \"beside\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"Chongju\": [\n        \"NNP\"\n    ], \n    \"Remarks\": [\n        \"NNS\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"single-valued\": [\n        \"JJ\"\n    ], \n    \"Imaginary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Clumps\": [\n        \"NNS\"\n    ], \n    \"Contraction\": [\n        \"NN\"\n    ], \n    \"Primerica\": [\n        \"NNP\"\n    ], \n    \"peaks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Descending\": [\n        \"VBG\"\n    ], \n    \"Oley\": [\n        \"NNP\"\n    ], \n    \"Oleg\": [\n        \"NNP\"\n    ], \n    \"unyielding\": [\n        \"JJ\"\n    ], \n    \"Cascading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Olea\": [\n        \"NNP\"\n    ], \n    \"greeter\": [\n        \"NN\"\n    ], \n    \"goofed\": [\n        \"VBD\"\n    ], \n    \"Patterson\": [\n        \"NNP\"\n    ], \n    \"darned\": [\n        \"RB\"\n    ], \n    \"all-something-or-the-other\": [\n        \"JJ\"\n    ], \n    \"shortly\": [\n        \"RB\"\n    ], \n    \"dada\": [\n        \"NN\"\n    ], \n    \"trash-bag\": [\n        \"NN\"\n    ], \n    \"litigator\": [\n        \"NN\"\n    ], \n    \"Muenchmeyer\": [\n        \"NNP\"\n    ], \n    \"Manager\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"multistage\": [\n        \"JJ\"\n    ], \n    \"Ethical\": [\n        \"NNP\"\n    ], \n    \"Narrow-gauged\": [\n        \"JJ\"\n    ], \n    \"Utility\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"snowman\": [\n        \"NN\"\n    ], \n    \"assembling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Estonian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"unemployment\": [\n        \"NN\"\n    ], \n    \"ex-housing\": [\n        \"JJ\"\n    ], \n    \"rodent\": [\n        \"NN\"\n    ], \n    \"grades\": [\n        \"NNS\"\n    ], \n    \"grader\": [\n        \"NN\"\n    ], \n    \"less-profitable\": [\n        \"JJ\"\n    ], \n    \"break.\": [\n        \"NN\"\n    ], \n    \"gray-thatched\": [\n        \"JJ\"\n    ], \n    \"megabyte\": [\n        \"NN\"\n    ], \n    \"preparer\": [\n        \"NN\"\n    ], \n    \"sacredness\": [\n        \"NN\"\n    ], \n    \"Kuwait\": [\n        \"NNP\"\n    ], \n    \"warping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Konstantin\": [\n        \"NNP\"\n    ], \n    \"Heileman\": [\n        \"NNP\"\n    ], \n    \"gave\": [\n        \"VBD\"\n    ], \n    \"backhome\": [\n        \"NN\"\n    ], \n    \"Epinalers\": [\n        \"NNPS\"\n    ], \n    \"salacious\": [\n        \"JJ\"\n    ], \n    \"breaks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"LEAVING\": [\n        \"VBG\"\n    ], \n    \"Doolin\": [\n        \"NNP\"\n    ], \n    \"Skyline\": [\n        \"NNP\"\n    ], \n    \"descending\": [\n        \"VBG\"\n    ], \n    \"overcrowding\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"b-Includes\": [\n        \"VBZ\"\n    ], \n    \"melting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chrysalis\": [\n        \"NNP\"\n    ], \n    \"brutality\": [\n        \"NN\"\n    ], \n    \"renames\": [\n        \"VBZ\"\n    ], \n    \"Shevardnadze\": [\n        \"NNP\"\n    ], \n    \"Unmarried\": [\n        \"JJ\"\n    ], \n    \"follower\": [\n        \"NN\"\n    ], \n    \"Echo\": [\n        \"NNP\"\n    ], \n    \"renamed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"majored\": [\n        \"VBN\"\n    ], \n    \"Hakko\": [\n        \"NNP\"\n    ], \n    \"envision\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Mosque\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Underwear\": [\n        \"NN\"\n    ], \n    \"M30\": [\n        \"NNP\"\n    ], \n    \"Takeover-stock\": [\n        \"JJ\"\n    ], \n    \"election\": [\n        \"NN\"\n    ], \n    \"Champagne\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pitiful\": [\n        \"NNP\"\n    ], \n    \"Edinburgh\": [\n        \"NNP\"\n    ], \n    \"Experienced\": [\n        \"VBN\"\n    ], \n    \"SCI\": [\n        \"NNP\"\n    ], \n    \"SCE\": [\n        \"NNP\"\n    ], \n    \"Gurla\": [\n        \"NNP\"\n    ], \n    \"Annalee\": [\n        \"NNP\"\n    ], \n    \"SCA\": [\n        \"NNP\"\n    ], \n    \"mystified\": [\n        \"VBN\"\n    ], \n    \"Hiram\": [\n        \"NNP\"\n    ], \n    \"Spago\": [\n        \"NNP\"\n    ], \n    \"loins\": [\n        \"NNS\"\n    ], \n    \"cable-televison\": [\n        \"NN\"\n    ], \n    \"hunk\": [\n        \"NN\"\n    ], \n    \"Tradition\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SCR\": [\n        \"NNP\"\n    ], \n    \"khaki\": [\n        \"JJ\"\n    ], \n    \"Huggins\": [\n        \"NNP\"\n    ], \n    \"plugging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Camaro\": [\n        \"NNP\"\n    ], \n    \"mark-ups\": [\n        \"NNS\"\n    ], \n    \"Coincidences\": [\n        \"NNPS\"\n    ], \n    \"Kligman\": [\n        \"NNP\"\n    ], \n    \"METALS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"ASDA\": [\n        \"NNP\"\n    ], \n    \"shuck\": [\n        \"VB\"\n    ], \n    \"powpow\": [\n        \"NN\"\n    ], \n    \"Forecasting\": [\n        \"NN\"\n    ], \n    \"Courtaulds\": [\n        \"NNP\"\n    ], \n    \"blabbed\": [\n        \"VBD\"\n    ], \n    \"plying\": [\n        \"VBG\"\n    ], \n    \"Renata\": [\n        \"NNP\"\n    ], \n    \"Strivers\": [\n        \"NNPS\"\n    ], \n    \"Scarface\": [\n        \"NNP\"\n    ], \n    \"Runnan\": [\n        \"NNP\"\n    ], \n    \"tannin\": [\n        \"NN\"\n    ], \n    \"duke\": [\n        \"NN\"\n    ], \n    \"Florio\": [\n        \"NNP\"\n    ], \n    \"aber\": [\n        \"FW\"\n    ], \n    \"disaffiliate\": [\n        \"VBP\"\n    ], \n    \"unsalted\": [\n        \"JJ\"\n    ], \n    \"Keshtmand\": [\n        \"NNP\"\n    ], \n    \"fern\": [\n        \"NN\"\n    ], \n    \"Environment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ahs\": [\n        \"UH\"\n    ], \n    \"abed\": [\n        \"RB\"\n    ], \n    \"ussr\": [\n        \"NN\"\n    ], \n    \"RATES\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Tewary\": [\n        \"NNP\"\n    ], \n    \"Islanders\": [\n        \"NNPS\"\n    ], \n    \"vaccination\": [\n        \"NN\"\n    ], \n    \"warrant\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"transoceanic\": [\n        \"JJ\"\n    ], \n    \"sunlight\": [\n        \"NN\"\n    ], \n    \"Hilprecht\": [\n        \"NNP\"\n    ], \n    \"stuck\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Brean\": [\n        \"NNP\"\n    ], \n    \"mid-October\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"JJR\"\n    ], \n    \"Shiremanstown\": [\n        \"NNP\"\n    ], \n    \"data-storing\": [\n        \"JJ\"\n    ], \n    \"Bread\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"indexers\": [\n        \"NNS\"\n    ], \n    \"Heart-measuring\": [\n        \"JJ\"\n    ], \n    \"Congratulations\": [\n        \"NNS\", \n        \"UH\"\n    ], \n    \"interrelation\": [\n        \"NN\"\n    ], \n    \"Periclean\": [\n        \"NNP\"\n    ], \n    \"automate\": [\n        \"VB\"\n    ], \n    \"pp.\": [\n        \"NNS\"\n    ], \n    \"pricked\": [\n        \"VBN\"\n    ], \n    \"overcollected\": [\n        \"JJ\"\n    ], \n    \"Aviazione\": [\n        \"NNP\"\n    ], \n    \"deoxyribonucleic\": [\n        \"JJ\"\n    ], \n    \"Finishing\": [\n        \"VBG\"\n    ], \n    \"forborne\": [\n        \"VB\"\n    ], \n    \"Cauff\": [\n        \"NNP\"\n    ], \n    \"Loomans\": [\n        \"NNP\"\n    ], \n    \"Seventy-six\": [\n        \"JJ\"\n    ], \n    \"tipsters\": [\n        \"NNS\"\n    ], \n    \"Mifflin\": [\n        \"NNP\"\n    ], \n    \"mannequins\": [\n        \"NNS\"\n    ], \n    \"Dannemiller\": [\n        \"NNP\"\n    ], \n    \"U.N.-backed\": [\n        \"JJ\"\n    ], \n    \"Ohmae\": [\n        \"NNP\"\n    ], \n    \"nerdy\": [\n        \"JJ\"\n    ], \n    \"more\": [\n        \"JJR\", \n        \"RBR|NN\", \n        \"JJ\", \n        \"JJR|RBR\", \n        \"NN\", \n        \"RB\", \n        \"RP\", \n        \"RBR|JJR\", \n        \"RBR\"\n    ], \n    \"nerds\": [\n        \"NNS\"\n    ], \n    \"worshipful\": [\n        \"JJ\"\n    ], \n    \"cobbled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kunze\": [\n        \"NNP\"\n    ], \n    \"suspicions\": [\n        \"NNS\"\n    ], \n    \"Edouard\": [\n        \"NNP\"\n    ], \n    \"limbic\": [\n        \"JJ\"\n    ], \n    \"sometime\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"cobbler\": [\n        \"NN\"\n    ], \n    \"voter-approved\": [\n        \"JJ\"\n    ], \n    \"Taylors\": [\n        \"NNPS\"\n    ], \n    \"regime\": [\n        \"NN\"\n    ], \n    \"inborn\": [\n        \"JJ\"\n    ], \n    \"eerie\": [\n        \"JJ\"\n    ], \n    \"Panelli\": [\n        \"NNP\"\n    ], \n    \"outgrew\": [\n        \"VBD\"\n    ], \n    \"insurance-policy\": [\n        \"NN\"\n    ], \n    \"mastoideus\": [\n        \"NN\"\n    ], \n    \"Rinker\": [\n        \"NNP\"\n    ], \n    \"Cornwall\": [\n        \"NNP\"\n    ], \n    \"Rouben\": [\n        \"NNP\"\n    ], \n    \"Ewan\": [\n        \"NNP\"\n    ], \n    \"beheading\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Euro-banners\": [\n        \"NNS\"\n    ], \n    \"but...\": [\n        \":\"\n    ], \n    \"implant\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"erosion\": [\n        \"NN\"\n    ], \n    \"papery\": [\n        \"JJ\"\n    ], \n    \"squeals\": [\n        \"NNS\"\n    ], \n    \"ROARED\": [\n        \"VBD\"\n    ], \n    \"Britoil\": [\n        \"NNP\"\n    ], \n    \"savviest\": [\n        \"JJS\"\n    ], \n    \"SPERANDEO\": [\n        \"NNP\"\n    ], \n    \"football\": [\n        \"NN\"\n    ], \n    \"flushes\": [\n        \"VBZ\"\n    ], \n    \"V.H.\": [\n        \"NNP\"\n    ], \n    \"shirkers\": [\n        \"NNS\"\n    ], \n    \"flushed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Woodhaven\": [\n        \"NNP\"\n    ], \n    \"Forecasters\": [\n        \"NNS\"\n    ], \n    \"agayne\": [\n        \"RB\"\n    ], \n    \"faster\": [\n        \"RBR\", \n        \"JJR\", \n        \"RB\"\n    ], \n    \"Universal-International\": [\n        \"NNP\"\n    ], \n    \"verve\": [\n        \"NN\"\n    ], \n    \"vigorously\": [\n        \"RB\"\n    ], \n    \"Clifton\": [\n        \"NNP\"\n    ], \n    \"roomed\": [\n        \"VBD\"\n    ], \n    \"unchallenged\": [\n        \"JJ\"\n    ], \n    \"remarked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fasten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"nuclei\": [\n        \"NNS\"\n    ], \n    \"item-processing\": [\n        \"JJ\"\n    ], \n    \"relation-back\": [\n        \"JJ\"\n    ], \n    \"Klugt\": [\n        \"NNP\"\n    ], \n    \"winnings\": [\n        \"NNS\"\n    ], \n    \"Tsk\": [\n        \"UH\"\n    ], \n    \"Dutch-descended\": [\n        \"JJ\"\n    ], \n    \"rob\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Vickstrom\": [\n        \"NNP\"\n    ], \n    \"rod\": [\n        \"NN\"\n    ], \n    \"deliveries\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Fuqua\": [\n        \"NNP\"\n    ], \n    \"Transcontinental\": [\n        \"NNP\"\n    ], \n    \"Getz\": [\n        \"NNP\"\n    ], \n    \"Kluge\": [\n        \"NNP\"\n    ], \n    \"savings-type\": [\n        \"JJ\"\n    ], \n    \"functioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Gets\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"rot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"row\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"inverse\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unk-unks\": [\n        \"NNS\"\n    ], \n    \"blind-sided\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"September-October\": [\n        \"NNP\"\n    ], \n    \"fairy-tale\": [\n        \"NN\"\n    ], \n    \"earthquake\": [\n        \"NN\"\n    ], \n    \"aplomb\": [\n        \"NN\"\n    ], \n    \"unconcernedly\": [\n        \"RB\"\n    ], \n    \"Oesterreichische\": [\n        \"NNP\"\n    ], \n    \"R-Cape\": [\n        \"NNP\"\n    ], \n    \"marrieds\": [\n        \"NNS\"\n    ], \n    \"Snap-On\": [\n        \"NNP\"\n    ], \n    \"Whittlesey\": [\n        \"NNP\"\n    ], \n    \"Holston\": [\n        \"NNP\"\n    ], \n    \"frequencies\": [\n        \"NNS\"\n    ], \n    \"emphasizes\": [\n        \"VBZ\"\n    ], \n    \"Creepers\": [\n        \"UH\"\n    ], \n    \"Tsunami\": [\n        \"NNS\"\n    ], \n    \"Roylott\": [\n        \"NNP\"\n    ], \n    \"feel-good\": [\n        \"JJ\"\n    ], \n    \"emphasized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bathos\": [\n        \"NN\"\n    ], \n    \"hydraulically\": [\n        \"RB\"\n    ], \n    \"near-majority\": [\n        \"JJ\"\n    ], \n    \"Danger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Owens-Illinois\": [\n        \"NNP\"\n    ], \n    \"Accounts\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Tyndall\": [\n        \"NNP\"\n    ], \n    \"hotelier\": [\n        \"NN\"\n    ], \n    \"Yok.\": [\n        \"NNP\"\n    ], \n    \"Novo\": [\n        \"NNP\"\n    ], \n    \"irritates\": [\n        \"VBZ\"\n    ], \n    \"Azcuenaga\": [\n        \"NNP\"\n    ], \n    \"Braddock\": [\n        \"NNP\"\n    ], \n    \"Nova\": [\n        \"NNP\"\n    ], \n    \"thickest\": [\n        \"JJS\"\n    ], \n    \"widened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"double-bladed\": [\n        \"JJ\"\n    ], \n    \"video-rental\": [\n        \"JJ\"\n    ], \n    \"Savory\": [\n        \"JJ\"\n    ], \n    \"\\\\*\\\\*\": [\n        \"SYM\", \n        \"NN\"\n    ], \n    \"Feuermann\": [\n        \"NNP\"\n    ], \n    \"irritated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"evaporative\": [\n        \"JJ\"\n    ], \n    \"explictly\": [\n        \"RB\"\n    ], \n    \"psyllium-fortified\": [\n        \"JJ\"\n    ], \n    \"goes\": [\n        \"VBZ\"\n    ], \n    \"hopscotched\": [\n        \"VBD\"\n    ], \n    \"Qui\": [\n        \"FW\"\n    ], \n    \"jilted\": [\n        \"VBN\"\n    ], \n    \"now-legal\": [\n        \"JJ\"\n    ], \n    \"Nov.\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"tabulation\": [\n        \"NN\"\n    ], \n    \"Fragua\": [\n        \"NNP\"\n    ], \n    \"slaying\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"learn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"investment-newsletter\": [\n        \"NN\"\n    ], \n    \"femininity\": [\n        \"NN\"\n    ], \n    \"erembal\": [\n        \"NNP\"\n    ], \n    \"witch\": [\n        \"NN\"\n    ], \n    \"foreign-flag\": [\n        \"NN\"\n    ], \n    \"Pebworth\": [\n        \"NNP\"\n    ], \n    \"Mainz\": [\n        \"NNP\"\n    ], \n    \"oodles\": [\n        \"NN\"\n    ], \n    \"Fischer\": [\n        \"NNP\"\n    ], \n    \"boast\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"rethink\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"AGENCY\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"then-Speaker\": [\n        \"JJ\"\n    ], \n    \"lamps\": [\n        \"NNS\"\n    ], \n    \"prudent-man\": [\n        \"JJ\"\n    ], \n    \"Maine\": [\n        \"NNP\"\n    ], \n    \"Leet\": [\n        \"NNP\"\n    ], \n    \"Kress\": [\n        \"NNP\"\n    ], \n    \"Lees\": [\n        \"NNP\"\n    ], \n    \"Visiting\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"problematic\": [\n        \"JJ\"\n    ], \n    \"atrocious\": [\n        \"JJ\"\n    ], \n    \"wreak\": [\n        \"VB\"\n    ], \n    \"Ohioans\": [\n        \"NNPS\"\n    ], \n    \"Kresa\": [\n        \"NNP\"\n    ], \n    \"civilizations\": [\n        \"NNS\"\n    ], \n    \"touchdown\": [\n        \"NN\"\n    ], \n    \"Jerky\": [\n        \"NNP\"\n    ], \n    \"crisis\": [\n        \"NN\"\n    ], \n    \"bulbs\": [\n        \"NNS\"\n    ], \n    \"Sienkiewicz\": [\n        \"NNP\"\n    ], \n    \"chimps\": [\n        \"NNS\"\n    ], \n    \"variously\": [\n        \"RB\"\n    ], \n    \"Nikon\": [\n        \"NNP\"\n    ], \n    \"Appel\": [\n        \"NNP\"\n    ], \n    \"prey\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"meanes\": [\n        \"NNS\"\n    ], \n    \"prep\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"today\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"plug\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Westamerica\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pellegrini\": [\n        \"NNP\"\n    ], \n    \"cased\": [\n        \"VBD\"\n    ], \n    \"fuel\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"higher-than-normal\": [\n        \"JJ\"\n    ], \n    \"Manningham\": [\n        \"NNP\"\n    ], \n    \"BUFFALO\": [\n        \"NNP\"\n    ], \n    \"spoilage\": [\n        \"NN\"\n    ], \n    \"Lavidge\": [\n        \"NNP\"\n    ], \n    \"depressants\": [\n        \"NNS\"\n    ], \n    \"family-owned\": [\n        \"JJ\"\n    ], \n    \"posthumous\": [\n        \"JJ\"\n    ], \n    \"inveterate\": [\n        \"JJ\"\n    ], \n    \"dthat\": [\n        \"IN\"\n    ], \n    \"Vesco\": [\n        \"NNP\"\n    ], \n    \"Bergsma\": [\n        \"NNP\"\n    ], \n    \"hitmakers\": [\n        \"NNS\"\n    ], \n    \"address\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kanon\": [\n        \"NNP\"\n    ], \n    \"figure\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"inexperience\": [\n        \"NN\"\n    ], \n    \"adherent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hutchings\": [\n        \"NNP\"\n    ], \n    \"Encino\": [\n        \"NNP\"\n    ], \n    \"unloads\": [\n        \"VBZ\"\n    ], \n    \"McDowell\": [\n        \"NNP\"\n    ], \n    \"air-cell\": [\n        \"JJ\"\n    ], \n    \"Dilys\": [\n        \"NNP\"\n    ], \n    \"naivete\": [\n        \"NN\"\n    ], \n    \"Concerning\": [\n        \"VBG\"\n    ], \n    \"middle-range\": [\n        \"JJ\"\n    ], \n    \"medium-to-long-range\": [\n        \"JJ\"\n    ], \n    \"mismanagement\": [\n        \"NN\"\n    ], \n    \"Tarwhine\": [\n        \"NNP\"\n    ], \n    \"night-vision\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fourth\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Demand\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"deep-pocketed\": [\n        \"JJ\"\n    ], \n    \"generic-drug\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"digesting\": [\n        \"VBG\"\n    ], \n    \"Coproduction\": [\n        \"NNP\"\n    ], \n    \"bedground\": [\n        \"NN\"\n    ], \n    \"tyke\": [\n        \"NN\"\n    ], \n    \"trickling\": [\n        \"VBG\"\n    ], \n    \"unificationists\": [\n        \"NNS\"\n    ], \n    \"representations\": [\n        \"NNS\"\n    ], \n    \"Eligibility\": [\n        \"NN\"\n    ], \n    \"eighth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Exclusive\": [\n        \"JJ\"\n    ], \n    \"Gomez\": [\n        \"NNP\"\n    ], \n    \"Cardin\": [\n        \"NNP\"\n    ], \n    \"utero\": [\n        \"NN\"\n    ], \n    \"Soup\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"substerilization\": [\n        \"NN\"\n    ], \n    \"pastilles\": [\n        \"NNS\"\n    ], \n    \"Spahnie\": [\n        \"NN\"\n    ], \n    \"Newport\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Behague\": [\n        \"NNP\"\n    ], \n    \"Ratner\": [\n        \"NNP\"\n    ], \n    \"statisticians\": [\n        \"NNS\"\n    ], \n    \"Unruh\": [\n        \"NNP\"\n    ], \n    \"stock-warrant\": [\n        \"NN\"\n    ], \n    \"DOORS\": [\n        \"NNS\"\n    ], \n    \"cistern\": [\n        \"NN\"\n    ], \n    \"mantlepiece\": [\n        \"NN\"\n    ], \n    \"dreading\": [\n        \"VBG\"\n    ], \n    \"farmed\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"stanchest\": [\n        \"JJS\"\n    ], \n    \"Euromark\": [\n        \"NN\"\n    ], \n    \"Rules\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"cathodoluminescent\": [\n        \"JJ\"\n    ], \n    \"guiltiness\": [\n        \"NN\"\n    ], \n    \"non-confrontational\": [\n        \"JJ\"\n    ], \n    \"hanky\": [\n        \"NN\"\n    ], \n    \"Wesley\": [\n        \"NNP\"\n    ], \n    \"Everywhere\": [\n        \"RB\"\n    ], \n    \"pervade\": [\n        \"VBP\"\n    ], \n    \"farmer\": [\n        \"NN\"\n    ], \n    \"Matamoras\": [\n        \"NNP\"\n    ], \n    \"loophole\": [\n        \"NN\"\n    ], \n    \"leggy\": [\n        \"JJ\"\n    ], \n    \"Ruled\": [\n        \"VBN\"\n    ], \n    \"Throne\": [\n        \"NN\"\n    ], \n    \"Wildlife\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nomads\": [\n        \"NNS\"\n    ], \n    \"Harmonizing\": [\n        \"NNP\"\n    ], \n    \"Koenigsberg\": [\n        \"NNP\"\n    ], \n    \"non-recessionary\": [\n        \"JJ\"\n    ], \n    \"top-four\": [\n        \"JJ\"\n    ], \n    \"Nobuto\": [\n        \"NNP\"\n    ], \n    \"Ultimate\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ornelas\": [\n        \"NNP\"\n    ], \n    \"inheriting\": [\n        \"VBG\"\n    ], \n    \"invents\": [\n        \"VBZ\"\n    ], \n    \"sop\": [\n        \"NN\"\n    ], \n    \"endangerment\": [\n        \"NN\"\n    ], \n    \"argues...\": [\n        \":\"\n    ], \n    \"Monsky\": [\n        \"NNP\"\n    ], \n    \"community-based\": [\n        \"JJ\"\n    ], \n    \"all-New\": [\n        \"NNP\"\n    ], \n    \"ordain\": [\n        \"VB\"\n    ], \n    \"whiplash\": [\n        \"NN\"\n    ], \n    \"farewell\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Petersburg\": [\n        \"NNP\"\n    ], \n    \"Poag\": [\n        \"NNP\"\n    ], \n    \"Eugenia\": [\n        \"NNP\"\n    ], \n    \"intended\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"UGI\": [\n        \"NNP\"\n    ], \n    \"computer-market\": [\n        \"JJ\"\n    ], \n    \"concur\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"precooked\": [\n        \"VBN\"\n    ], \n    \"sha\": [\n        \"MD\"\n    ], \n    \"tensions\": [\n        \"NNS\"\n    ], \n    \"prophesized\": [\n        \"VBD\"\n    ], \n    \"UGF\": [\n        \"NNP\"\n    ], \n    \"abounding\": [\n        \"VBG\"\n    ], \n    \"Timpanogos\": [\n        \"NNP\"\n    ], \n    \"with-but-after\": [\n        \"JJ\"\n    ], \n    \"Throw\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"monopolized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"eagle\": [\n        \"NN\"\n    ], \n    \"one-owner\": [\n        \"JJ\"\n    ], \n    \"Gregoire\": [\n        \"NNP\"\n    ], \n    \"Economizers\": [\n        \"NNS\"\n    ], \n    \"nuclear-weapons-sites\": [\n        \"NNS\"\n    ], \n    \"rocket-motor\": [\n        \"NN\"\n    ], \n    \"dyed-in-the-wool\": [\n        \"JJ\"\n    ], \n    \"TECHNOLOGIES\": [\n        \"NNP\"\n    ], \n    \"minted\": [\n        \"VBN\"\n    ], \n    \"drilled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Bock\": [\n        \"NNP\"\n    ], \n    \"Battery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"then-Secretary\": [\n        \"NNP\"\n    ], \n    \"Boca\": [\n        \"NNP\"\n    ], \n    \"Virgins\": [\n        \"NNPS\"\n    ], \n    \"Gringo\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Holler\": [\n        \"NNP\"\n    ], \n    \"outbreaks\": [\n        \"NNS\"\n    ], \n    \"mortars\": [\n        \"NNS\"\n    ], \n    \"Longview\": [\n        \"NNP\"\n    ], \n    \"Holley\": [\n        \"NNP\"\n    ], \n    \"Ah-ah\": [\n        \"UH\"\n    ], \n    \"long-troubled\": [\n        \"JJ\"\n    ], \n    \"R2-D2\": [\n        \"NN\"\n    ], \n    \"Hyde-to-Jekyll\": [\n        \"JJ\"\n    ], \n    \"parasols\": [\n        \"NNS\"\n    ], \n    \"handled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Chernishev\": [\n        \"NNP\"\n    ], \n    \"unattainable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dissolutions\": [\n        \"NNS\"\n    ], \n    \"squashed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"in-state\": [\n        \"JJ\"\n    ], \n    \"Lido\": [\n        \"NNP\"\n    ], \n    \"afterthought\": [\n        \"NN\"\n    ], \n    \"spurned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"native-born\": [\n        \"JJ\"\n    ], \n    \"prayers\": [\n        \"NNS\"\n    ], \n    \"less-than-robust\": [\n        \"JJ\"\n    ], \n    \"Contras\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"DGII\": [\n        \"NNP\"\n    ], \n    \"arousing\": [\n        \"VBG\"\n    ], \n    \"seller-financed\": [\n        \"JJ\"\n    ], \n    \"woodcarver\": [\n        \"NN\"\n    ], \n    \"Aurelius\": [\n        \"NNP\"\n    ], \n    \"international-share\": [\n        \"JJ\"\n    ], \n    \"Lids\": [\n        \"NNS\"\n    ], \n    \"Netty\": [\n        \"NNP\"\n    ], \n    \"Bruckheimer\": [\n        \"NNP\"\n    ], \n    \"Kaufhof\": [\n        \"NNP\"\n    ], \n    \"stylized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"SE\\\\/30\": [\n        \"NNP\"\n    ], \n    \"Netto\": [\n        \"NNP\"\n    ], \n    \"self-betrayal\": [\n        \"NN\"\n    ], \n    \"grunt\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"strange-sounding\": [\n        \"JJ\"\n    ], \n    \"prior-approval\": [\n        \"JJ\"\n    ], \n    \"Garment\": [\n        \"NNP\"\n    ], \n    \"Futhermore\": [\n        \"NN\"\n    ], \n    \"barrels-a-day\": [\n        \"JJ\"\n    ], \n    \"newage\": [\n        \"NN\"\n    ], \n    \"Yoshiyuki\": [\n        \"NNP\"\n    ], \n    \"cards\": [\n        \"NNS\"\n    ], \n    \"pulsation\": [\n        \"NN\"\n    ], \n    \"sladang\": [\n        \"NN\"\n    ], \n    \"Thelma\": [\n        \"NNP\"\n    ], \n    \"Bakeries\": [\n        \"NNP\"\n    ], \n    \"BPC\": [\n        \"NNP\"\n    ], \n    \"BPB\": [\n        \"NNP\"\n    ], \n    \"overfill\": [\n        \"VB\"\n    ], \n    \"Grange\": [\n        \"NNP\"\n    ], \n    \"Attraction\": [\n        \"NNP\"\n    ], \n    \"stiffest\": [\n        \"JJS\"\n    ], \n    \"suspense\": [\n        \"NN\"\n    ], \n    \"Navona\": [\n        \"NNP\"\n    ], \n    \"exchanging\": [\n        \"VBG\"\n    ], \n    \"ADR\": [\n        \"NNP\"\n    ], \n    \"price-reporting\": [\n        \"NN\"\n    ], \n    \"wage-setter\": [\n        \"NN\"\n    ], \n    \"batting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ADS\": [\n        \"NNPS\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"Karlis\": [\n        \"NNP\"\n    ], \n    \"subsystems\": [\n        \"NNS\"\n    ], \n    \"```\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lemmon\": [\n        \"NNP\"\n    ], \n    \"Hotelecopy\": [\n        \"NNP\"\n    ], \n    \"Topeka\": [\n        \"NNP\"\n    ], \n    \"sciences\": [\n        \"NNS\"\n    ], \n    \"jade-handled\": [\n        \"JJ\"\n    ], \n    \"Sauternes\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Jachmann\": [\n        \"NNP\"\n    ], \n    \"Londono\": [\n        \"NNP\"\n    ], \n    \"roleplaying\": [\n        \"NN\"\n    ], \n    \"commonplace\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Korean-American\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Barnaba\": [\n        \"NNP\"\n    ], \n    \"Good\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"icon\": [\n        \"NN\"\n    ], \n    \"wireless\": [\n        \"JJ\"\n    ], \n    \"annum\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Geduld\": [\n        \"NNP\"\n    ], \n    \"proud\": [\n        \"JJ\"\n    ], \n    \"pores\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Abreast\": [\n        \"NNP\"\n    ], \n    \"pored\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"applicator\": [\n        \"NN\"\n    ], \n    \"Gesamtkunstwerke\": [\n        \"FW\"\n    ], \n    \"pop-out\": [\n        \"JJ\"\n    ], \n    \"drastically\": [\n        \"RB\"\n    ], \n    \"inequity\": [\n        \"NN\"\n    ], \n    \"Anglophilia\": [\n        \"NNP\"\n    ], \n    \"antitakeover\": [\n        \"JJR\"\n    ], \n    \"cheat\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kanjorski\": [\n        \"NNP\"\n    ], \n    \"allegations\": [\n        \"NNS\"\n    ], \n    \"Research\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"spacer\": [\n        \"NN\"\n    ], \n    \"spaces\": [\n        \"NNS\"\n    ], \n    \"Opposed\": [\n        \"VBN\"\n    ], \n    \"Bundesbank\": [\n        \"NNP\"\n    ], \n    \"inshore\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"painlessly\": [\n        \"RB\"\n    ], \n    \"trot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Publishers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"sausage-grinder\": [\n        \"NN\"\n    ], \n    \"Confer\": [\n        \"NNP\"\n    ], \n    \"gunloading\": [\n        \"NN\"\n    ], \n    \"skywave\": [\n        \"NN\"\n    ], \n    \"believing\": [\n        \"VBG\"\n    ], \n    \"Mimi\": [\n        \"NNP\"\n    ], \n    \"Overtega\": [\n        \"NNP\"\n    ], \n    \"Louis\": [\n        \"NNP\"\n    ], \n    \"Annual\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"broadest\": [\n        \"JJS\"\n    ], \n    \"Europalia\": [\n        \"NNP\"\n    ], \n    \"Kennametal\": [\n        \"NNP\"\n    ], \n    \"Lashof\": [\n        \"NNP\"\n    ], \n    \"Colombatto\": [\n        \"NNP\"\n    ], \n    \"cylinders\": [\n        \"NNS\"\n    ], \n    \"heisted\": [\n        \"VBD\"\n    ], \n    \"cautionary\": [\n        \"JJ\"\n    ], \n    \"burlesque\": [\n        \"JJ\"\n    ], \n    \"Doherty\": [\n        \"NNP\"\n    ], \n    \"high-backed\": [\n        \"JJ\"\n    ], \n    \"contrivances\": [\n        \"NNS\"\n    ], \n    \"Goethe\": [\n        \"NNP\"\n    ], \n    \"Salim\": [\n        \"NNP\"\n    ], \n    \"Gouldoid\": [\n        \"JJ\"\n    ], \n    \"jokes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Geoff\": [\n        \"NNP\"\n    ], \n    \"predicted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"E.W.\": [\n        \"NNP\"\n    ], \n    \"Dagens\": [\n        \"NNP\"\n    ], \n    \"Plympton\": [\n        \"NNP\"\n    ], \n    \"Conquest\": [\n        \"NNP\"\n    ], \n    \"Lamphere\": [\n        \"NNP\"\n    ], \n    \"oil-depletion\": [\n        \"JJ\"\n    ], \n    \"Off-Road\": [\n        \"NNP\"\n    ], \n    \"signs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Jaffray\": [\n        \"NNP\"\n    ], \n    \"Conus\": [\n        \"NNP\"\n    ], \n    \"Dickie\": [\n        \"NNP\"\n    ], \n    \"Bits\": [\n        \"NNS\"\n    ], \n    \"Chicagoans\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Chestnut\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tardily\": [\n        \"RB\"\n    ], \n    \"subcompact\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hamish\": [\n        \"NNP\"\n    ], \n    \"Bouncing\": [\n        \"NNP\"\n    ], \n    \"Loose\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"commitments\": [\n        \"NNS\"\n    ], \n    \"Vitro-Anchor\": [\n        \"NNP\"\n    ], \n    \"Galipault\": [\n        \"NNP\"\n    ], \n    \"anti-apartheid\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Breuer\": [\n        \"NNP\"\n    ], \n    \"Harperner\": [\n        \"NNP\"\n    ], \n    \"saucy\": [\n        \"JJ\"\n    ], \n    \"three-step\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Seiders\": [\n        \"NNP\"\n    ], \n    \"disaffection\": [\n        \"NN\"\n    ], \n    \"freight-forwarding\": [\n        \"JJ\"\n    ], \n    \"harshly\": [\n        \"RB\"\n    ], \n    \"Westerly\": [\n        \"NNP\"\n    ], \n    \"Indigestion\": [\n        \"NN\"\n    ], \n    \"Tolstoy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fathuh\": [\n        \"NN\"\n    ], \n    \"tantalizingly\": [\n        \"RB\"\n    ], \n    \"ISC\\\\/Bunker\": [\n        \"NNP\"\n    ], \n    \"quiet\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"jillions\": [\n        \"NNS\"\n    ], \n    \"Krat\": [\n        \"NNP\"\n    ], \n    \"Genetics\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Travel\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"staff...\": [\n        \":\"\n    ], \n    \"period\": [\n        \"NN\"\n    ], \n    \"insist\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Durning\": [\n        \"NNP\"\n    ], \n    \"ECU-denominated\": [\n        \"JJ\"\n    ], \n    \"sugar-producing\": [\n        \"JJ\"\n    ], \n    \"Numerous\": [\n        \"JJ\"\n    ], \n    \"debt-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Courant\": [\n        \"NNP\"\n    ], \n    \"turkey\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"televising\": [\n        \"NN\"\n    ], \n    \"subscribed\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\"\n    ], \n    \"lower-value\": [\n        \"JJR\"\n    ], \n    \"consultancy\": [\n        \"NN\"\n    ], \n    \"Meeker\": [\n        \"NNP\"\n    ], \n    \"Edsel\": [\n        \"NNP\"\n    ], \n    \"subscribes\": [\n        \"VBZ\"\n    ], \n    \"Modest\": [\n        \"JJ\"\n    ], \n    \"ASHTON-TATE\": [\n        \"NNP\"\n    ], \n    \"peaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"vulture-like\": [\n        \"JJ\"\n    ], \n    \"direction\": [\n        \"NN\"\n    ], \n    \"Aer\": [\n        \"NNP\"\n    ], \n    \"exasperate\": [\n        \"VB\"\n    ], \n    \"CAAC\": [\n        \"NNP\"\n    ], \n    \"ostentation\": [\n        \"NN\"\n    ], \n    \"surreptitiously\": [\n        \"RB\"\n    ], \n    \"Spilman\": [\n        \"NNP\"\n    ], \n    \"Hartfield-Zodys\": [\n        \"NNP\"\n    ], \n    \"walkie-talkie\": [\n        \"NN\"\n    ], \n    \"roaringest\": [\n        \"JJS\"\n    ], \n    \"TRANSPLANT\": [\n        \"NNP\"\n    ], \n    \"case\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Aeronautics\": [\n        \"NNP\"\n    ], \n    \"multiple-purpose\": [\n        \"JJ\"\n    ], \n    \"deposit-transfer\": [\n        \"NN\"\n    ], \n    \"Stetson\": [\n        \"NNP\"\n    ], \n    \"Intertech\": [\n        \"NNP\"\n    ], \n    \"cash\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"cask\": [\n        \"NN\"\n    ], \n    \"fiercer\": [\n        \"JJR\"\n    ], \n    \"cast\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Conversion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Metamorphosis\": [\n        \"NN\"\n    ], \n    \"intifada\": [\n        \"NN\"\n    ], \n    \"Laurel\": [\n        \"NNP\"\n    ], \n    \"abducted\": [\n        \"VBN\", \n        \"NN\"\n    ], \n    \"Lauren\": [\n        \"NNP\"\n    ], \n    \"reflectance\": [\n        \"NN\"\n    ], \n    \"antisocial\": [\n        \"JJ\"\n    ], \n    \"clefts\": [\n        \"NNS\"\n    ], \n    \"Dionysian\": [\n        \"JJ\"\n    ], \n    \"duplicating\": [\n        \"VBG\"\n    ], \n    \"refinery\": [\n        \"NN\"\n    ], \n    \"leadoff\": [\n        \"NN\"\n    ], \n    \"flat-bed\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ironic\": [\n        \"JJ\"\n    ], \n    \"impaled\": [\n        \"VBN\"\n    ], \n    \"refiners\": [\n        \"NNS\"\n    ], \n    \"four-wheel\": [\n        \"JJ\"\n    ], \n    \"Characteristically\": [\n        \"RB\"\n    ], \n    \"hustlers\": [\n        \"NNS\"\n    ], \n    \"Germanys\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"revolutions\": [\n        \"NNS\"\n    ], \n    \"participant\": [\n        \"NN\"\n    ], \n    \"MarCor\": [\n        \"NNP\"\n    ], \n    \"sellin\": [\n        \"NN\"\n    ], \n    \"Frenchmen\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"fender\": [\n        \"NN\"\n    ], \n    \"Swiftly\": [\n        \"RB\"\n    ], \n    \"injurious\": [\n        \"JJ\"\n    ], \n    \"squadroom\": [\n        \"NN\"\n    ], \n    \"Jacuzzi\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"FileNet\": [\n        \"NNP\"\n    ], \n    \"catfish\": [\n        \"NN\"\n    ], \n    \"manila\": [\n        \"JJ\"\n    ], \n    \"Lasswitz\": [\n        \"NNP\"\n    ], \n    \"frequented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Yancey-6\": [\n        \"NN\"\n    ], \n    \"Aphrodite\": [\n        \"NNP\"\n    ], \n    \"even-handed\": [\n        \"JJ\"\n    ], \n    \"Antone\": [\n        \"NNP\"\n    ], \n    \"Antoni\": [\n        \"NNP\"\n    ], \n    \"first-half\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"one-by-one\": [\n        \"JJ\"\n    ], \n    \"statue\": [\n        \"NN\"\n    ], \n    \"electronics-distribution\": [\n        \"NN\"\n    ], \n    \"epidemiological\": [\n        \"JJ\"\n    ], \n    \"FIDELITY\": [\n        \"NNP\"\n    ], \n    \"Antony\": [\n        \"NNP\"\n    ], \n    \"Off-flavor\": [\n        \"NN\"\n    ], \n    \"electromagnetism\": [\n        \"NN\"\n    ], \n    \"British-French-Israeli\": [\n        \"JJ\"\n    ], \n    \"Psychoanalytic\": [\n        \"NNP\"\n    ], \n    \"Failures\": [\n        \"NNS\"\n    ], \n    \"bodied\": [\n        \"JJ\"\n    ], \n    \"Zirbel\": [\n        \"NNP\"\n    ], \n    \"delectable\": [\n        \"JJ\"\n    ], \n    \"catchword\": [\n        \"NN\"\n    ], \n    \"Pure\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"delectably\": [\n        \"RB\"\n    ], \n    \"influence-peddling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"bodies\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"justify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pink\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bokat\": [\n        \"NNP\"\n    ], \n    \"Yakkety\": [\n        \"NNP\"\n    ], \n    \"splices\": [\n        \"VBZ\"\n    ], \n    \"Barrios\": [\n        \"NNP\"\n    ], \n    \"Pina\": [\n        \"NNP\"\n    ], \n    \"Pine\": [\n        \"NNP\"\n    ], \n    \"spliced\": [\n        \"VBN\"\n    ], \n    \"cease\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"polish\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Decorators\": [\n        \"NNP\"\n    ], \n    \"Municipal\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"FDIC\": [\n        \"NNP\"\n    ], \n    \"feminist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Missile\": [\n        \"NNP\"\n    ], \n    \"Tamotsu\": [\n        \"NNP\"\n    ], \n    \"ditties\": [\n        \"NNS\"\n    ], \n    \"invasion-theory\": [\n        \"NN\"\n    ], \n    \"Bosworth\": [\n        \"NNP\"\n    ], \n    \"Bonnierforetagen\": [\n        \"NNP\"\n    ], \n    \"feminism\": [\n        \"NN\"\n    ], \n    \"assets*\": [\n        \"NNS\"\n    ], \n    \"Clairton\": [\n        \"NNP\"\n    ], \n    \"Non-smoking\": [\n        \"NN\"\n    ], \n    \"half-states\": [\n        \"NNS\"\n    ], \n    \"co-ordinates\": [\n        \"VBZ\"\n    ], \n    \"the...\": [\n        \":\"\n    ], \n    \"Motorfair\": [\n        \"NNP\"\n    ], \n    \"Af-stage\": [\n        \"JJ\"\n    ], \n    \"reconfiguration\": [\n        \"NN\"\n    ], \n    \"Accompanied\": [\n        \"VBN\"\n    ], \n    \"U.N.\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kasen\": [\n        \"NNP\"\n    ], \n    \"television-viewing\": [\n        \"NN\"\n    ], \n    \"acute\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"towel\": [\n        \"NN\"\n    ], \n    \"coursed\": [\n        \"VBN\"\n    ], \n    \"eight-piece\": [\n        \"JJ\"\n    ], \n    \"Old\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"towed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"footballs\": [\n        \"NNS\"\n    ], \n    \"Enhancement\": [\n        \"NNP\"\n    ], \n    \"Ludden\": [\n        \"NNP\"\n    ], \n    \"snatches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"apple-tree\": [\n        \"NN\"\n    ], \n    \"simulator\": [\n        \"NN\"\n    ], \n    \"quick-service\": [\n        \"JJ\"\n    ], \n    \"Master\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Muynak\": [\n        \"NNP\"\n    ], \n    \"snatched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"arms-reduction\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Struggling\": [\n        \"VBG\"\n    ], \n    \"animalcare\": [\n        \"JJ\"\n    ], \n    \"swaps\": [\n        \"NNS\"\n    ], \n    \"tricks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cater\": [\n        \"NNP\"\n    ], \n    \"Tettamanti\": [\n        \"NNP\"\n    ], \n    \"Mercifully\": [\n        \"RB\"\n    ], \n    \"kilter\": [\n        \"NN\"\n    ], \n    \"penny-pinching\": [\n        \"JJ\"\n    ], \n    \"Harmas\": [\n        \"NNP\"\n    ], \n    \"cringing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"slaughter\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"pooch\": [\n        \"NN\"\n    ], \n    \"Forsyth\": [\n        \"NNP\"\n    ], \n    \"prattle\": [\n        \"NN\"\n    ], \n    \"lifeboats\": [\n        \"NNS\"\n    ], \n    \"five-consecutive\": [\n        \"JJ\"\n    ], \n    \"treadmills\": [\n        \"NNS\"\n    ], \n    \"fillings\": [\n        \"NNS\"\n    ], \n    \"freight-jumper\": [\n        \"NN\"\n    ], \n    \"Genesee\": [\n        \"NNP\"\n    ], \n    \"thin-soled\": [\n        \"JJ\"\n    ], \n    \"whence\": [\n        \"WRB\"\n    ], \n    \"Celine\": [\n        \"NNP\"\n    ], \n    \"Amherst\": [\n        \"NNP\"\n    ], \n    \"discrimination\": [\n        \"NN\"\n    ], \n    \"Broder\": [\n        \"NNP\"\n    ], \n    \"Anand\": [\n        \"NNP\"\n    ], \n    \"nods\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Toseland\": [\n        \"NNP\"\n    ], \n    \"Cumulative\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"warbling\": [\n        \"VBG\"\n    ], \n    \"Hosomi\": [\n        \"NNP\"\n    ], \n    \"engendered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"rising\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"anti-Nazis\": [\n        \"NNPS\"\n    ], \n    \"syringe\": [\n        \"NN\"\n    ], \n    \"syringa\": [\n        \"NN\"\n    ], \n    \"Postmaster\": [\n        \"NNP\"\n    ], \n    \"vine-shaded\": [\n        \"JJ\"\n    ], \n    \"whales\": [\n        \"NNS\"\n    ], \n    \"Norma\": [\n        \"NNP\"\n    ], \n    \"cultured\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Clorets\": [\n        \"NNP\"\n    ], \n    \"half-darkness\": [\n        \"NN\"\n    ], \n    \"Norms\": [\n        \"NNS\"\n    ], \n    \"cultures\": [\n        \"NNS\"\n    ], \n    \"Veltri\": [\n        \"NNP\"\n    ], \n    \"Arcadipane\": [\n        \"NNP\"\n    ], \n    \"livestock-dealing\": [\n        \"JJ\"\n    ], \n    \"Tunis\": [\n        \"NNP\"\n    ], \n    \"Permit\": [\n        \"VB\"\n    ], \n    \"triple-C\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"triple-B\": [\n        \"JJ\"\n    ], \n    \"triple-A\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Turben\": [\n        \"NNP\"\n    ], \n    \"travelogue-like\": [\n        \"JJ\"\n    ], \n    \"competitve\": [\n        \"JJ\"\n    ], \n    \"Boksen\": [\n        \"NNP\"\n    ], \n    \"extermination\": [\n        \"NN\"\n    ], \n    \"incise\": [\n        \"VB\"\n    ], \n    \"Subaru\": [\n        \"NNP\"\n    ], \n    \"de-inking\": [\n        \"JJ\"\n    ], \n    \"closely-held\": [\n        \"JJ\"\n    ], \n    \"Ambigua\": [\n        \"NNP\"\n    ], \n    \"triple-a\": [\n        \"JJ\"\n    ], \n    \"Ringler\": [\n        \"NNP\"\n    ], \n    \"Constructors\": [\n        \"NNPS\"\n    ], \n    \"autoimmune\": [\n        \"JJ\"\n    ], \n    \"theophylline\": [\n        \"NN\"\n    ], \n    \"Biederman\": [\n        \"NNP\"\n    ], \n    \"repatriation\": [\n        \"NN\"\n    ], \n    \"outgrip\": [\n        \"VB\"\n    ], \n    \"Knightsbridge\": [\n        \"NNP\"\n    ], \n    \"scotches\": [\n        \"NNS\"\n    ], \n    \"Fabrri\": [\n        \"NNP\"\n    ], \n    \"deserve\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Eternal\": [\n        \"NNP\"\n    ], \n    \"Dart\": [\n        \"NNP\"\n    ], \n    \"Dark\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Darn\": [\n        \"VB\"\n    ], \n    \"seven-stories\": [\n        \"JJ\"\n    ], \n    \"Lesch-Nyhan\": [\n        \"NNP\"\n    ], \n    \"Panhandle\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"line-drawing\": [\n        \"JJ\"\n    ], \n    \"Dare\": [\n        \"VB\"\n    ], \n    \"Pulitzer\": [\n        \"NNP\"\n    ], \n    \"deviation\": [\n        \"NN\"\n    ], \n    \"mummies\": [\n        \"NNS\"\n    ], \n    \"releasing\": [\n        \"VBG\"\n    ], \n    \"Jaguar\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"T.R.\": [\n        \"NNP\"\n    ], \n    \"uncorked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"finale\": [\n        \"NN\"\n    ], \n    \"Foundry\": [\n        \"NNP\"\n    ], \n    \"Dashitchev\": [\n        \"NNP\"\n    ], \n    \"fiberglas\": [\n        \"NNS\"\n    ], \n    \"bullets\": [\n        \"NNS\"\n    ], \n    \"Dragon\": [\n        \"NNP\"\n    ], \n    \"finals\": [\n        \"NNS\"\n    ], \n    \"feedlot\": [\n        \"NN\"\n    ], \n    \"land-locked\": [\n        \"JJ\"\n    ], \n    \"Satisfactory\": [\n        \"JJ\"\n    ], \n    \"Forty-third\": [\n        \"JJ\"\n    ], \n    \"anti-plaque\": [\n        \"JJ\"\n    ], \n    \"teleology\": [\n        \"NN\"\n    ], \n    \"Cuban\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"directors\": [\n        \"NNS\"\n    ], \n    \"Presbyterians\": [\n        \"NNPS\"\n    ], \n    \"treason\": [\n        \"NN\"\n    ], \n    \"directory\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"numbing\": [\n        \"JJ\"\n    ], \n    \"sorption-desorption\": [\n        \"NN\"\n    ], \n    \"Maple\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"crumpled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tarry\": [\n        \"VB\"\n    ], \n    \"Lubowski\": [\n        \"NNP\"\n    ], \n    \"Riggs\": [\n        \"NNP\"\n    ], \n    \"Hendrik\": [\n        \"NNP\"\n    ], \n    \"coach\": [\n        \"NN\"\n    ], \n    \"generalize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"barons\": [\n        \"NNS\"\n    ], \n    \"Certificates\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"cementing\": [\n        \"VBG\"\n    ], \n    \"decisions\": [\n        \"NNS\"\n    ], \n    \"Subsequently\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"barony\": [\n        \"NN\"\n    ], \n    \"glimpse\": [\n        \"NN\"\n    ], \n    \"apartment\": [\n        \"NN\"\n    ], \n    \"weightings\": [\n        \"NNS\"\n    ], \n    \"subsided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kurlak\": [\n        \"NNP\"\n    ], \n    \"Frequently\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"subsides\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"infringement\": [\n        \"NN\"\n    ], \n    \"Angus\": [\n        \"NNP\"\n    ], \n    \"prognostication\": [\n        \"NN\"\n    ], \n    \"treating\": [\n        \"VBG\"\n    ], \n    \"Silber\": [\n        \"NNP\"\n    ], \n    \"Steptoe\": [\n        \"NNP\"\n    ], \n    \"RUSSIANS\": [\n        \"NNS\"\n    ], \n    \"Dickey\": [\n        \"NNP\"\n    ], \n    \"nahce\": [\n        \"JJ\"\n    ], \n    \"Ress\": [\n        \"NNP\"\n    ], \n    \"clinched\": [\n        \"VBD\"\n    ], \n    \"Rest\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"occurs\": [\n        \"VBZ\"\n    ], \n    \"singularly\": [\n        \"RB\"\n    ], \n    \"Stitched\": [\n        \"VBN\"\n    ], \n    \"Dickel\": [\n        \"NNP\"\n    ], \n    \"threshing\": [\n        \"NN\"\n    ], \n    \"renouncing\": [\n        \"VBG\"\n    ], \n    \"clincher\": [\n        \"NN\"\n    ], \n    \"clinches\": [\n        \"NNS\"\n    ], \n    \"Milbauer\": [\n        \"NNP\"\n    ], \n    \"flick\": [\n        \"NN\"\n    ], \n    \"employing\": [\n        \"VBG\"\n    ], \n    \"JURY\": [\n        \"NN\"\n    ], \n    \"uh-huh\": [\n        \"UH\"\n    ], \n    \"Willow\": [\n        \"NNP\"\n    ], \n    \"Ease\": [\n        \"VB\"\n    ], \n    \"Hennefeld\": [\n        \"NNP\"\n    ], \n    \"Kasten\": [\n        \"NNP\"\n    ], \n    \"Ilka\": [\n        \"NNP\"\n    ], \n    \"Kaster\": [\n        \"NNP\"\n    ], \n    \"granular-type\": [\n        \"JJ\"\n    ], \n    \"Easy\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Flameco\": [\n        \"NNP\"\n    ], \n    \"East\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"NNS\"\n    ], \n    \"distributorship\": [\n        \"NN\"\n    ], \n    \"Ionizing\": [\n        \"VBG\"\n    ], \n    \"sue\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sub\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"sun\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sum\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Naturals\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Disposti\": [\n        \"NNP\"\n    ], \n    \"money-winner\": [\n        \"NN\"\n    ], \n    \"sur\": [\n        \"FW\"\n    ], \n    \"sup\": [\n        \"VB\"\n    ], \n    \"skippering\": [\n        \"VBG\"\n    ], \n    \"Straights\": [\n        \"NNS\"\n    ], \n    \"low-cal\": [\n        \"JJ\"\n    ], \n    \"Kodansha\": [\n        \"NNP\"\n    ], \n    \"Barba\": [\n        \"NNP\"\n    ], \n    \"toes\": [\n        \"NNS\"\n    ], \n    \"AIDS-research\": [\n        \"JJ\"\n    ], \n    \"autumn-touched\": [\n        \"JJ\"\n    ], \n    \"Fonstein\": [\n        \"NNP\"\n    ], \n    \"Chardonnay-sipping\": [\n        \"JJ\"\n    ], \n    \"Ginza\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Gloves\": [\n        \"NNP\"\n    ], \n    \"Glover\": [\n        \"NNP\"\n    ], \n    \"equations\": [\n        \"NNS\"\n    ], \n    \"WAGE\": [\n        \"NN\"\n    ], \n    \"bacteria-contaminated\": [\n        \"JJ\"\n    ], \n    \"underhanded\": [\n        \"JJ\"\n    ], \n    \"high-school\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"dues\": [\n        \"NNS\"\n    ], \n    \"Mathewson\": [\n        \"NNP\"\n    ], \n    \"turnabout\": [\n        \"NN\"\n    ], \n    \"Biondi-Santi\": [\n        \"NNP\"\n    ], \n    \"stiffness\": [\n        \"NN\"\n    ], \n    \"better-remembered\": [\n        \"JJ\"\n    ], \n    \"student-led\": [\n        \"JJ\"\n    ], \n    \"ex-marine\": [\n        \"NN\"\n    ], \n    \"tramping\": [\n        \"VBG\"\n    ], \n    \"camcorder\": [\n        \"NN\"\n    ], \n    \"poignantly\": [\n        \"RB\"\n    ], \n    \"arms-control\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fee-per-case\": [\n        \"JJ\"\n    ], \n    \"solitude\": [\n        \"NN\"\n    ], \n    \"airlifting\": [\n        \"VBG\"\n    ], \n    \"Providence\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Louisville\": [\n        \"NNP\"\n    ], \n    \"enlivened\": [\n        \"VBN\"\n    ], \n    \"herring\": [\n        \"NN\"\n    ], \n    \"loping\": [\n        \"VBG\"\n    ], \n    \"Intermarco\": [\n        \"NNP\"\n    ], \n    \"rustic\": [\n        \"JJ\"\n    ], \n    \"vote-diluting\": [\n        \"JJ\"\n    ], \n    \"radar-type\": [\n        \"JJ\"\n    ], \n    \"Richeson\": [\n        \"NNP\"\n    ], \n    \"discipleship\": [\n        \"NN\"\n    ], \n    \"Harlin\": [\n        \"NNP\"\n    ], \n    \"horses\": [\n        \"NNS\"\n    ], \n    \"Theodosian\": [\n        \"JJ\"\n    ], \n    \"immersion\": [\n        \"NN\"\n    ], \n    \"bank-credit\": [\n        \"NN\"\n    ], \n    \"sorcery\": [\n        \"NN\"\n    ], \n    \"antibiotics\": [\n        \"NNS\"\n    ], \n    \"aerialists\": [\n        \"NNS\"\n    ], \n    \"hissed\": [\n        \"VBD\"\n    ], \n    \"Trupins\": [\n        \"NNPS\"\n    ], \n    \"five-member\": [\n        \"JJ\"\n    ], \n    \"Laplace\": [\n        \"NNP\"\n    ], \n    \"Alberding\": [\n        \"NNP\"\n    ], \n    \"Wheeland\": [\n        \"NNP\"\n    ], \n    \"Libyan\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Showbiz\": [\n        \"NNP\"\n    ], \n    \"Captures\": [\n        \"NNP\"\n    ], \n    \"Gecker\": [\n        \"NNP\"\n    ], \n    \"Cozying\": [\n        \"VBG\"\n    ], \n    \"ineffectual\": [\n        \"JJ\"\n    ], \n    \"caveat\": [\n        \"NN\"\n    ], \n    \"Apropos\": [\n        \"RB\"\n    ], \n    \"absently\": [\n        \"RB\"\n    ], \n    \"Indefinite\": [\n        \"JJ\"\n    ], \n    \"Captured\": [\n        \"VBN\"\n    ], \n    \"technical-services\": [\n        \"NNS\"\n    ], \n    \"Willenson\": [\n        \"NNP\"\n    ], \n    \"searchlight\": [\n        \"NN\"\n    ], \n    \"duets\": [\n        \"NNS\"\n    ], \n    \"Duffey\": [\n        \"NNP\"\n    ], \n    \"asset-rich\": [\n        \"JJ\"\n    ], \n    \"Interco\": [\n        \"NNP\"\n    ], \n    \"metamorphosis\": [\n        \"NN\"\n    ], \n    \"Thompson\": [\n        \"NNP\"\n    ], \n    \"regulation\\\\/deregulation\": [\n        \"NN\"\n    ], \n    \"Democratique\": [\n        \"NNP\"\n    ], \n    \"third-generation\": [\n        \"JJ\"\n    ], \n    \"ostentatiously\": [\n        \"RB\"\n    ], \n    \"terrestrial\": [\n        \"JJ\"\n    ], \n    \"grey-haired\": [\n        \"JJ\"\n    ], \n    \"Cashin\": [\n        \"NNP\"\n    ], \n    \"liveried\": [\n        \"JJ\"\n    ], \n    \"Cannon\": [\n        \"NNP\"\n    ], \n    \"irrigate\": [\n        \"VB\"\n    ], \n    \"untied\": [\n        \"VBD\"\n    ], \n    \"occasionally\": [\n        \"RB\"\n    ], \n    \"Boseki\": [\n        \"NNP\"\n    ], \n    \"Iodination\": [\n        \"NN\"\n    ], \n    \"antebellum\": [\n        \"JJ\"\n    ], \n    \"Lobo\": [\n        \"NNP\"\n    ], \n    \"biophysics\": [\n        \"NNS\"\n    ], \n    \"cadmium\": [\n        \"NN\"\n    ], \n    \"adventure\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"concentrating\": [\n        \"VBG\"\n    ], \n    \"Ceremonial\": [\n        \"NNP\"\n    ], \n    \"PRODUCT\": [\n        \"NN\"\n    ], \n    \"Belgrade\": [\n        \"NNP\"\n    ], \n    \"Single-A-3\": [\n        \"JJ\"\n    ], \n    \"Single-A-2\": [\n        \"JJ\"\n    ], \n    \"meticulous\": [\n        \"JJ\"\n    ], \n    \"stock-optioned\": [\n        \"JJ\"\n    ], \n    \"untenable\": [\n        \"JJ\"\n    ], \n    \"Armen\": [\n        \"NNP\"\n    ], \n    \"fish-export\": [\n        \"JJ\"\n    ], \n    \"Armed\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"PPI\": [\n        \"NNP\"\n    ], \n    \"Yenakiyevo\": [\n        \"NNP\"\n    ], \n    \"SAINT\": [\n        \"NNP\"\n    ], \n    \"Bottom\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Carr-Lowrey\": [\n        \"NNP\"\n    ], \n    \"Alsop\": [\n        \"NNP\"\n    ], \n    \"Tessie\": [\n        \"NNP\"\n    ], \n    \"grille-route\": [\n        \"NN\"\n    ], \n    \"Same\": [\n        \"JJ\"\n    ], \n    \"Ravitz\": [\n        \"NNP\"\n    ], \n    \"Lorrain\": [\n        \"NNP\"\n    ], \n    \"Alson\": [\n        \"NNP\"\n    ], \n    \"Arab-sponsored\": [\n        \"JJ\"\n    ], \n    \"Relational\": [\n        \"NNP\"\n    ], \n    \"Cigarette\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Roach\": [\n        \"NNP\"\n    ], \n    \"unitary\": [\n        \"JJ\"\n    ], \n    \"Daolet\": [\n        \"NNP\"\n    ], \n    \"transfers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"soccer\": [\n        \"NN\"\n    ], \n    \"somebody\": [\n        \"NN\"\n    ], \n    \"generously\": [\n        \"RB\"\n    ], \n    \"Err\": [\n        \"VB\"\n    ], \n    \"Trimmer\": [\n        \"NNP\"\n    ], \n    \"countercharged\": [\n        \"VBD\"\n    ], \n    \"Era\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Haack\": [\n        \"NNP\"\n    ], \n    \"countercharges\": [\n        \"NNS\"\n    ], \n    \"U.S.-grown\": [\n        \"JJ\"\n    ], \n    \"instructions\": [\n        \"NNS\"\n    ], \n    \"intolerably\": [\n        \"RB\"\n    ], \n    \"Longue\": [\n        \"NNP\"\n    ], \n    \"Hands-on\": [\n        \"JJ\"\n    ], \n    \"Danes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"sequester\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"accommodates\": [\n        \"VBZ\"\n    ], \n    \"permanant\": [\n        \"JJ\"\n    ], \n    \"immunoelectrophoresis\": [\n        \"NN\"\n    ], \n    \"Western-owned\": [\n        \"JJ\"\n    ], \n    \"Ready\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"accommodated\": [\n        \"VBN\"\n    ], \n    \"transportable\": [\n        \"JJ\"\n    ], \n    \"intolerable\": [\n        \"JJ\"\n    ], \n    \"erratic\": [\n        \"JJ\"\n    ], \n    \"intactible\": [\n        \"JJ\"\n    ], \n    \"Bede\": [\n        \"NNP\"\n    ], \n    \"Fabric\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kitada\": [\n        \"NNP\"\n    ], \n    \"oppressed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Butcher\": [\n        \"NNP\"\n    ], \n    \"loopy\": [\n        \"JJ\"\n    ], \n    \"Simat\": [\n        \"NNP\"\n    ], \n    \"mainframes\": [\n        \"NNS\"\n    ], \n    \"loops\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"atonal\": [\n        \"JJ\"\n    ], \n    \"oppresses\": [\n        \"VBZ\"\n    ], \n    \"kotowaza\": [\n        \"FW\"\n    ], \n    \"croaking\": [\n        \"NN\"\n    ], \n    \"Abitibi-Price\": [\n        \"NNP\"\n    ], \n    \"firsts\": [\n        \"NNS\"\n    ], \n    \"telltale\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Vikes\": [\n        \"NNPS\"\n    ], \n    \"anti-depressant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"disquiet\": [\n        \"NN\"\n    ], \n    \"hilt\": [\n        \"NN\"\n    ], \n    \"hydraulic\": [\n        \"JJ\"\n    ], \n    \"unambiguity\": [\n        \"NN\"\n    ], \n    \"candour\": [\n        \"NN\"\n    ], \n    \"hill\": [\n        \"NN\"\n    ], \n    \"constant-temperature\": [\n        \"NN\"\n    ], \n    \"compounding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Samoilov\": [\n        \"NNP\"\n    ], \n    \"Bryce\": [\n        \"NNP\"\n    ], \n    \"roofs\": [\n        \"NNS\"\n    ], \n    \"side-effects\": [\n        \"NNS\"\n    ], \n    \"management-incentive\": [\n        \"JJ\"\n    ], \n    \"yearthat\": [\n        \"NN\"\n    ], \n    \"Opinion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"shut-off\": [\n        \"JJ\"\n    ], \n    \"Germans.\": [\n        \"NNS\"\n    ], \n    \"bourgeoisie\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"Tempter\": [\n        \"NNP\"\n    ], \n    \"less-than-amicable\": [\n        \"JJ\"\n    ], \n    \"prejudice\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Guardian\": [\n        \"NNP\"\n    ], \n    \"Bland\": [\n        \"JJ\"\n    ], \n    \"Blanc\": [\n        \"NNP\"\n    ], \n    \"Vietor\": [\n        \"NNP\"\n    ], \n    \"Ponder\": [\n        \"VBP\"\n    ], \n    \"shrewish\": [\n        \"JJ\"\n    ], \n    \"seeming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"vellum\": [\n        \"JJ\"\n    ], \n    \"Connelly\": [\n        \"NNP\"\n    ], \n    \"Indian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Axel\": [\n        \"NNP\"\n    ], \n    \"distributive\": [\n        \"JJ\"\n    ], \n    \"earthworms\": [\n        \"NNS\"\n    ], \n    \"story\": [\n        \"NN\"\n    ], \n    \"scathing\": [\n        \"JJ\"\n    ], \n    \"Dictionary\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"talismanic\": [\n        \"JJ\"\n    ], \n    \"Durmoy\": [\n        \"NNP\"\n    ], \n    \"leading\": [\n        \"VBG\", \n        \"JJ|VBG\", \n        \"VBG|JJ\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Castro-Medellin\": [\n        \"NNP\"\n    ], \n    \"polyether-type\": [\n        \"JJ\"\n    ], \n    \"Voicetek\": [\n        \"NNP\"\n    ], \n    \"sub-freezing\": [\n        \"JJ\"\n    ], \n    \"market-ready\": [\n        \"JJ\"\n    ], \n    \"often-criticized\": [\n        \"JJ\"\n    ], \n    \"VIACOM\": [\n        \"NNP\"\n    ], \n    \"Danske\": [\n        \"NNP\"\n    ], \n    \"second-class\": [\n        \"JJ\"\n    ], \n    \"Hawker\": [\n        \"NNP\"\n    ], \n    \"Hawkes\": [\n        \"NNP\"\n    ], \n    \"store\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"temptations\": [\n        \"NNS\"\n    ], \n    \"Bevel\": [\n        \"VB\"\n    ], \n    \"saint\": [\n        \"NN\"\n    ], \n    \"Dangerous\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"retinal\": [\n        \"JJ\"\n    ], \n    \"off-putting\": [\n        \"JJ\"\n    ], \n    \"alumina\": [\n        \"NN\"\n    ], \n    \"Bozic\": [\n        \"NNP\"\n    ], \n    \"five-course\": [\n        \"JJ\"\n    ], \n    \"shrunken\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"king\": [\n        \"NN\"\n    ], \n    \"kind\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Munich-based\": [\n        \"JJ\"\n    ], \n    \"weatherproof\": [\n        \"JJ\"\n    ], \n    \"Semmelman\": [\n        \"NNP\"\n    ], \n    \"Chickasaws\": [\n        \"NNPS\"\n    ], \n    \"Transol\": [\n        \"NNP\"\n    ], \n    \"cut-price\": [\n        \"JJ\"\n    ], \n    \"multibillion\": [\n        \"JJ\"\n    ], \n    \"Gladiator\": [\n        \"NNP\"\n    ], \n    \"Questioned\": [\n        \"VBN\"\n    ], \n    \"tongues\": [\n        \"NNS\"\n    ], \n    \"Ballet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"skyscrapers\": [\n        \"NNS\"\n    ], \n    \"storytelling\": [\n        \"NN\"\n    ], \n    \"Giampiero\": [\n        \"NNP\"\n    ], \n    \"shrewd\": [\n        \"JJ\"\n    ], \n    \"Marmalstein\": [\n        \"NNP\"\n    ], \n    \"tongued\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Westport\": [\n        \"NNP\"\n    ], \n    \"Telegraphie\": [\n        \"NNP\"\n    ], \n    \"Cid\": [\n        \"NNP\"\n    ], \n    \"Caccappolo\": [\n        \"NNP\"\n    ], \n    \"smallpox\": [\n        \"NN\"\n    ], \n    \"Frabotta\": [\n        \"NNP\"\n    ], \n    \"Moreland\": [\n        \"NNP\"\n    ], \n    \"DJS-Inverness\": [\n        \"NNP\"\n    ], \n    \"single-sex\": [\n        \"JJ\"\n    ], \n    \"conforming\": [\n        \"VBG\"\n    ], \n    \"entirety\": [\n        \"NN\"\n    ], \n    \"humanize\": [\n        \"VB\"\n    ], \n    \"establshed\": [\n        \"VBN\"\n    ], \n    \"genetically\": [\n        \"RB\"\n    ], \n    \"Perna\": [\n        \"NNP\"\n    ], \n    \"Levenson\": [\n        \"NNP\"\n    ], \n    \"gild\": [\n        \"VB\"\n    ], \n    \"inconvenience\": [\n        \"NN\"\n    ], \n    \"Equal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"architects\": [\n        \"NNS\"\n    ], \n    \"rarefied\": [\n        \"VBN\"\n    ], \n    \"Pedott\": [\n        \"NNP\"\n    ], \n    \"probabilistic\": [\n        \"JJ\"\n    ], \n    \"farmhouses\": [\n        \"NNS\"\n    ], \n    \"dealers\": [\n        \"NNS\"\n    ], \n    \"Gaither\": [\n        \"NNP\"\n    ], \n    \"forerunner\": [\n        \"NN\"\n    ], \n    \"acclaims\": [\n        \"VBZ\"\n    ], \n    \"lying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Serenity\": [\n        \"NN\"\n    ], \n    \"vaunted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"safeguarding\": [\n        \"VBG\"\n    ], \n    \"barter\": [\n        \"NN\"\n    ], \n    \"grandmas\": [\n        \"NNS\"\n    ], \n    \"Dolores\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Suits\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"inflexible\": [\n        \"JJ\"\n    ], \n    \"rate-IRA\": [\n        \"NN\"\n    ], \n    \"Suite\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Lowenthal\": [\n        \"NNP\"\n    ], \n    \"piezoelectric\": [\n        \"JJ\"\n    ], \n    \"Affordable\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Lacking\": [\n        \"VBG\"\n    ], \n    \"suburbanized\": [\n        \"VBN\"\n    ], \n    \"Epsilon\": [\n        \"NNP\"\n    ], \n    \"China-investment\": [\n        \"JJ\"\n    ], \n    \"airtime\": [\n        \"NN\"\n    ], \n    \"yet-to-be-formed\": [\n        \"JJ\"\n    ], \n    \"Stratas\": [\n        \"NNP\"\n    ], \n    \"incapacitating\": [\n        \"JJ\"\n    ], \n    \"founding\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"bradykinin\": [\n        \"NN\"\n    ], \n    \"invoke\": [\n        \"VB\"\n    ], \n    \"ungrateful\": [\n        \"JJ\"\n    ], \n    \"Batch\": [\n        \"NN\"\n    ], \n    \"mortgage-backed\": [\n        \"JJ\"\n    ], \n    \"H.J.\": [\n        \"NNP\"\n    ], \n    \"knighted\": [\n        \"VBN\"\n    ], \n    \"reprint\": [\n        \"VB\"\n    ], \n    \"Uno-Ven\": [\n        \"NNP\"\n    ], \n    \"Evren\": [\n        \"NNP\"\n    ], \n    \"syringes\": [\n        \"NNS\"\n    ], \n    \"engraver\": [\n        \"NN\"\n    ], \n    \"Knorr\": [\n        \"NNP\"\n    ], \n    \"tree-huggers\": [\n        \"NNS\"\n    ], \n    \"prescribing\": [\n        \"VBG\"\n    ], \n    \"catharsis\": [\n        \"NN\"\n    ], \n    \"laser-beam-printer\": [\n        \"NN\"\n    ], \n    \"McCoy\": [\n        \"NNP\"\n    ], \n    \"revenues\": [\n        \"NNS\"\n    ], \n    \"engraved\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"wrote\": [\n        \"VBD\"\n    ], \n    \"Whitehead\": [\n        \"NNP\"\n    ], \n    \"excellences\": [\n        \"NNS\"\n    ], \n    \"charge-excess\": [\n        \"NN\"\n    ], \n    \"rent-subsidized\": [\n        \"JJ\"\n    ], \n    \"procrastinated\": [\n        \"VBD\"\n    ], \n    \"visualize\": [\n        \"VB\"\n    ], \n    \"axially\": [\n        \"RB\"\n    ], \n    \"tummy\": [\n        \"NN\"\n    ], \n    \"worst-marked\": [\n        \"JJ\"\n    ], \n    \"surmounted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ups\": [\n        \"NNS\"\n    ], \n    \"Mmmm\": [\n        \"UH\"\n    ], \n    \"Quell\": [\n        \"NNP\"\n    ], \n    \"Fogelson\": [\n        \"NNP\"\n    ], \n    \"Hsu\": [\n        \"NNP\"\n    ], \n    \"Costanza\": [\n        \"NNP\"\n    ], \n    \"obscenities\": [\n        \"NNS\"\n    ], \n    \"frugality\": [\n        \"NN\"\n    ], \n    \"solo\": [\n        \"NN\", \n        \"JJ\", \n        \"RB|JJ\", \n        \"VB\"\n    ], \n    \"misstep\": [\n        \"NN\"\n    ], \n    \"ushered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"silicone\": [\n        \"NN\"\n    ], \n    \"Gasoline\": [\n        \"NN\"\n    ], \n    \"franchises\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"attention\": [\n        \"NN\"\n    ], \n    \"Manual\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"confiscated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bullhide\": [\n        \"NN\"\n    ], \n    \"Workplace\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fatality\": [\n        \"NN\"\n    ], \n    \"franchisee\": [\n        \"NN\"\n    ], \n    \"franchised\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Steinmetz\": [\n        \"NNP\"\n    ], \n    \"oversee\": [\n        \"VB\"\n    ], \n    \"shorthanded\": [\n        \"JJ\"\n    ], \n    \"Aspercreme\": [\n        \"NNP\"\n    ], \n    \"Apollonian\": [\n        \"JJ\"\n    ], \n    \"cancer-susceptible\": [\n        \"JJ\"\n    ], \n    \"much-respected\": [\n        \"JJ\"\n    ], \n    \"nettled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"distress\": [\n        \"NN\"\n    ], \n    \"Ex-Cub\": [\n        \"JJ\"\n    ], \n    \"drug-interdiction\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"export-control\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Snowmass\": [\n        \"NNP\"\n    ], \n    \"Skala\": [\n        \"NNP\"\n    ], \n    \"Metcalf\": [\n        \"NNP\"\n    ], \n    \"Lovie\": [\n        \"UH\"\n    ], \n    \"Ibrahim\": [\n        \"NNP\"\n    ], \n    \"Yoorick\": [\n        \"NNP\"\n    ], \n    \"Cement\": [\n        \"NNP\"\n    ], \n    \"Caitlin\": [\n        \"NNP\"\n    ], \n    \"Fueled\": [\n        \"VBN\"\n    ], \n    \"Edelmann\": [\n        \"NNP\"\n    ], \n    \"Tightened\": [\n        \"JJ\"\n    ], \n    \"Pediatricians\": [\n        \"NNS\"\n    ], \n    \"cone-sphere\": [\n        \"JJ\"\n    ], \n    \"Coeditors\": [\n        \"NNS\"\n    ], \n    \"waste-water\": [\n        \"NN\"\n    ], \n    \"isolationistic\": [\n        \"JJ\"\n    ], \n    \"Sunay\": [\n        \"NNP\"\n    ], \n    \"institutionalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"commodity-options\": [\n        \"NNS\"\n    ], \n    \"flight\": [\n        \"NN\"\n    ], \n    \"Marcile\": [\n        \"NNP\"\n    ], \n    \"proxy-solicitation\": [\n        \"JJ\"\n    ], \n    \"unswagged\": [\n        \"JJ\"\n    ], \n    \"imprudence\": [\n        \"NN\"\n    ], \n    \"precision\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Corinth\": [\n        \"NNP\"\n    ], \n    \"rescissions\": [\n        \"NNS\"\n    ], \n    \"notables\": [\n        \"NNS\"\n    ], \n    \"instructor\": [\n        \"NN\"\n    ], \n    \"up-tight\": [\n        \"JJ\"\n    ], \n    \"Guccione\": [\n        \"NNP\"\n    ], \n    \"GoldCard\": [\n        \"NNP\"\n    ], \n    \"workmen\": [\n        \"NNS\"\n    ], \n    \"guarding\": [\n        \"VBG\"\n    ], \n    \"indefinitely\": [\n        \"RB\"\n    ], \n    \"Leponex\": [\n        \"NNP\"\n    ], \n    \"Fifty-fifth\": [\n        \"NNP\"\n    ], \n    \"Fabrics\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"kick\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Aikin\": [\n        \"NNP\"\n    ], \n    \"servitude\": [\n        \"NN\"\n    ], \n    \"Forwarding\": [\n        \"NNP\"\n    ], \n    \"unaccompanied\": [\n        \"JJ\"\n    ], \n    \"blue-blood\": [\n        \"JJ\"\n    ], \n    \"Lurgi\": [\n        \"NNP\"\n    ], \n    \"launderer\": [\n        \"NN\"\n    ], \n    \"important-looking\": [\n        \"JJ\"\n    ], \n    \"antithesis\": [\n        \"NN\"\n    ], \n    \"Centrality\": [\n        \"NN\"\n    ], \n    \"Vernitron\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"laundered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Advancers\": [\n        \"NNS\"\n    ], \n    \"Chicago-based\": [\n        \"JJ\"\n    ], \n    \"shirt\": [\n        \"NN\"\n    ], \n    \"sachems\": [\n        \"NNS\"\n    ], \n    \"denunciation\": [\n        \"NN\"\n    ], \n    \"badgering\": [\n        \"VBG\"\n    ], \n    \"HUNGARY\": [\n        \"NNP\"\n    ], \n    \"shirk\": [\n        \"VB\"\n    ], \n    \"yucca\": [\n        \"NN\"\n    ], \n    \"daughters\": [\n        \"NNS\"\n    ], \n    \"higher\": [\n        \"JJR\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"sell\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"GOOD\": [\n        \"JJ\"\n    ], \n    \"Escorts\": [\n        \"NNS\"\n    ], \n    \"restraint\": [\n        \"NN\"\n    ], \n    \"Ranch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"demarcated\": [\n        \"VBN\"\n    ], \n    \"restrains\": [\n        \"VBZ\"\n    ], \n    \"Crossing\": [\n        \"VBG\"\n    ], \n    \"Triangle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Solana\": [\n        \"NNP\"\n    ], \n    \"Fitzgibbon\": [\n        \"NNP\"\n    ], \n    \"Polypropylene\": [\n        \"NN\"\n    ], \n    \"Qureshey\": [\n        \"NNP\"\n    ], \n    \"try\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"magnified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"destabilizing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Norsemen\": [\n        \"NNPS\"\n    ], \n    \"machinery\": [\n        \"NN\"\n    ], \n    \"extorted\": [\n        \"VBD\"\n    ], \n    \"magnifies\": [\n        \"VBZ\"\n    ], \n    \"self\": [\n        \"NN\", \n        \"PRP\"\n    ], \n    \"Liberalism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"acquisition-minded\": [\n        \"JJ\"\n    ], \n    \"Fitts\": [\n        \"NNP\"\n    ], \n    \"prorata\": [\n        \"FW\"\n    ], \n    \"large-area\": [\n        \"JJ\"\n    ], \n    \"prorate\": [\n        \"VB\"\n    ], \n    \"Anti-nuclear\": [\n        \"JJ\"\n    ], \n    \"pop-music\": [\n        \"NN\"\n    ], \n    \"Dragoumis\": [\n        \"NNP\"\n    ], \n    \"Wonderful\": [\n        \"JJ\"\n    ], \n    \"humaine\": [\n        \"NN\"\n    ], \n    \"Playground\": [\n        \"NNP\"\n    ], \n    \"comprehensively\": [\n        \"RB\"\n    ], \n    \"blank-faced\": [\n        \"JJ\"\n    ], \n    \"Ovonic\": [\n        \"NNP\"\n    ], \n    \"Groff\": [\n        \"NNP\"\n    ], \n    \"summaries\": [\n        \"NNS\"\n    ], \n    \"meanest\": [\n        \"JJS\"\n    ], \n    \"Jackpot\": [\n        \"NNP\"\n    ], \n    \"Ironically\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Marulanda\": [\n        \"NNP\"\n    ], \n    \"Nokia\": [\n        \"NNP\"\n    ], \n    \"comedy\\\\\": [\n        \"JJ\"\n    ], \n    \"Pompano\": [\n        \"NNP\"\n    ], \n    \"Shores\": [\n        \"NNP\"\n    ], \n    \"Chadli\": [\n        \"NNP\"\n    ], \n    \"difficile\": [\n        \"FW\"\n    ], \n    \"jostle\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ammann\": [\n        \"NNP\"\n    ], \n    \"Sain\": [\n        \"NNP\"\n    ], \n    \"Injection\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vetoing\": [\n        \"VBG\"\n    ], \n    \"Hilder\": [\n        \"NNP\"\n    ], \n    \"Naumberg\": [\n        \"NNP\"\n    ], \n    \"Artois\": [\n        \"NNP\"\n    ], \n    \"Enzor\": [\n        \"NNP\"\n    ], \n    \"Sail\": [\n        \"NNP\"\n    ], \n    \"Thou\": [\n        \"PRP\"\n    ], \n    \"advocate\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bemoan\": [\n        \"VB\"\n    ], \n    \"Kurtanjek\": [\n        \"NNP\"\n    ], \n    \"Thor\": [\n        \"NNP\"\n    ], \n    \"Thom\": [\n        \"NNP\"\n    ], \n    \"re-entry\": [\n        \"NN\"\n    ], \n    \"Nakhamkin\": [\n        \"NNP\"\n    ], \n    \"Foliage\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"macromolecular\": [\n        \"JJ\"\n    ], \n    \"Revising\": [\n        \"VBG\"\n    ], \n    \"Uniroyal\\\\\": [\n        \"NNP\"\n    ], \n    \"skeptical\": [\n        \"JJ\"\n    ], \n    \"cogeneration\": [\n        \"NN\"\n    ], \n    \"confront\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"phosphors\": [\n        \"NNS\"\n    ], \n    \"separately\": [\n        \"RB\"\n    ], \n    \"uproar\": [\n        \"NN\"\n    ], \n    \"deleterious\": [\n        \"JJ\"\n    ], \n    \"Cady\": [\n        \"NNP\"\n    ], \n    \"Bishopsgate\": [\n        \"NNP\"\n    ], \n    \"DALKON\": [\n        \"NNP\"\n    ], \n    \"campagna\": [\n        \"NN\"\n    ], \n    \"new-model\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"policy-makers\": [\n        \"NNS\"\n    ], \n    \"disinclined\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Matsunaga\": [\n        \"NNP\"\n    ], \n    \"chaulmoogra\": [\n        \"NN\"\n    ], \n    \"Roustabouts\": [\n        \"NNPS\"\n    ], \n    \"hurriedly\": [\n        \"RB\"\n    ], \n    \"Prosecutor\": [\n        \"NNP\"\n    ], \n    \"Sony\\\\/Columbia\": [\n        \"NNP\"\n    ], \n    \"LATE\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"constitutionality\": [\n        \"NN\"\n    ], \n    \"Klimt\": [\n        \"NNP\"\n    ], \n    \"Gewirtz\": [\n        \"NNP\"\n    ], \n    \"Parvenu\": [\n        \"NNP\"\n    ], \n    \"Sunday-newspaper\": [\n        \"NNP\"\n    ], \n    \"Nishi\": [\n        \"NNP\"\n    ], \n    \"stock-manipulation\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"jumped-up\": [\n        \"JJ\"\n    ], \n    \"Uspensky\": [\n        \"NNP\"\n    ], \n    \"perpendicular\": [\n        \"JJ\"\n    ], \n    \"I-75\": [\n        \"NN\"\n    ], \n    \"refused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bikers\": [\n        \"NNS\"\n    ], \n    \"consolation\": [\n        \"NN\"\n    ], \n    \"refuses\": [\n        \"VBZ\"\n    ], \n    \"Peiping\": [\n        \"NNP\"\n    ], \n    \"projector\": [\n        \"NN\"\n    ], \n    \"pipeline\": [\n        \"NN\"\n    ], \n    \"asserting\": [\n        \"VBG\"\n    ], \n    \"bristling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"raucous\": [\n        \"JJ\"\n    ], \n    \"violins\": [\n        \"NNS\"\n    ], \n    \"careerism\": [\n        \"NN\"\n    ], \n    \"plaza\": [\n        \"NN\"\n    ], \n    \"virus\": [\n        \"NN\"\n    ], \n    \"lifeless\": [\n        \"JJ\"\n    ], \n    \"Bolshevism\": [\n        \"NNP\"\n    ], \n    \"Voyagers.\": [\n        \"NNPS\"\n    ], \n    \"Keizer\": [\n        \"NNP\"\n    ], \n    \"Defrost\": [\n        \"VB\"\n    ], \n    \"youthful\": [\n        \"JJ\"\n    ], \n    \"calloused\": [\n        \"JJ\"\n    ], \n    \"CONFIRMED\": [\n        \"VBD\"\n    ], \n    \"Andersen\": [\n        \"NNP\"\n    ], \n    \"re-engineered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Moffett\": [\n        \"NNP\"\n    ], \n    \"tappets\": [\n        \"NNS\"\n    ], \n    \"Arbogast\": [\n        \"NNP\"\n    ], \n    \"BioScience\": [\n        \"NNP\"\n    ], \n    \"Minster\": [\n        \"NNP\"\n    ], \n    \"artifice\": [\n        \"NN\"\n    ], \n    \"flagellated\": [\n        \"VBN\"\n    ], \n    \"strumming\": [\n        \"VBG\"\n    ], \n    \"stench\": [\n        \"NN\"\n    ], \n    \"impressed\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"acquiesce\": [\n        \"VB\"\n    ], \n    \"lone\": [\n        \"JJ\"\n    ], \n    \"handles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"long\": [\n        \"JJ\", \n        \"VBP\", \n        \"RB\"\n    ], \n    \"Microcom\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Torrid-Breeze\": [\n        \"NNP\"\n    ], \n    \"impresses\": [\n        \"VBZ\"\n    ], \n    \"impresser\": [\n        \"NN\"\n    ], \n    \"etch\": [\n        \"VB\"\n    ], \n    \"EAST\": [\n        \"NNP\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Appaloosas\": [\n        \"NNPS\"\n    ], \n    \"authored\": [\n        \"VBN\"\n    ], \n    \"audacious\": [\n        \"JJ\"\n    ], \n    \"monomers\": [\n        \"NNS\"\n    ], \n    \"Barth\": [\n        \"NNP\"\n    ], \n    \"anesthetics\": [\n        \"NNS\"\n    ], \n    \"kitchenware\": [\n        \"NN\"\n    ], \n    \"Elizario\": [\n        \"NNP\"\n    ], \n    \"anti-clericalism\": [\n        \"JJ\"\n    ], \n    \"fulfilling\": [\n        \"VBG\"\n    ], \n    \"Wesleyan\": [\n        \"NNP\"\n    ], \n    \"sanguineum\": [\n        \"NN\"\n    ], \n    \"Barbera\": [\n        \"NNP\"\n    ], \n    \"bankrolling\": [\n        \"VBG\"\n    ], \n    \"price-sensitive\": [\n        \"JJ\"\n    ], \n    \"co-managing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"fluctuations\": [\n        \"NNS\"\n    ], \n    \"etc.\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Bankhaus\": [\n        \"NNP\"\n    ], \n    \"fiscally\": [\n        \"RB\"\n    ], \n    \"debt-for-environment\": [\n        \"NN\"\n    ], \n    \"Saxony\": [\n        \"NNP\"\n    ], \n    \"Gerold\": [\n        \"NNP\"\n    ], \n    \"water-cooled\": [\n        \"JJ\"\n    ], \n    \"Nazia\": [\n        \"NNP\"\n    ], \n    \"coordinator\": [\n        \"NN\"\n    ], \n    \"Attack\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reservoirs\": [\n        \"NNS\"\n    ], \n    \"whitewashing\": [\n        \"VBG\"\n    ], \n    \"rally\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"rained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nazis\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Cunard\": [\n        \"NNP\"\n    ], \n    \"leadership...\": [\n        \":\"\n    ], \n    \"rainbow\": [\n        \"NN\"\n    ], \n    \"toeholds\": [\n        \"NNS\"\n    ], \n    \"camcorders\": [\n        \"NNS\"\n    ], \n    \"Jorge\": [\n        \"NNP\"\n    ], \n    \"Ignorance\": [\n        \"NN\"\n    ], \n    \"saffron\": [\n        \"NN\"\n    ], \n    \"Price-boosting\": [\n        \"JJ\"\n    ], \n    \"one-on-one\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Personally\": [\n        \"RB\"\n    ], \n    \"bandstand\": [\n        \"NN\"\n    ], \n    \"Prefecture\": [\n        \"NNP\"\n    ], \n    \"Colts\": [\n        \"NNP\"\n    ], \n    \"Coupons\": [\n        \"NNS\"\n    ], \n    \"nice\": [\n        \"JJ\"\n    ], \n    \"Audit\": [\n        \"NNP\"\n    ], \n    \"Hackmann\": [\n        \"NNP\"\n    ], \n    \"private-placement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"smitten\": [\n        \"VBN\"\n    ], \n    \"self-discovery\": [\n        \"NN\"\n    ], \n    \"cityscapes\": [\n        \"NNS\"\n    ], \n    \"dragnet\": [\n        \"NN\"\n    ], \n    \"bonding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ROK\": [\n        \"NNP\"\n    ], \n    \"allowing\": [\n        \"VBG\"\n    ], \n    \"Audio\": [\n        \"NNP\"\n    ], \n    \"Saupiquet\": [\n        \"NNP\"\n    ], \n    \"relaunch\": [\n        \"VB\"\n    ], \n    \"HHS\": [\n        \"NNP\"\n    ], \n    \"Asher\": [\n        \"NNP\"\n    ], \n    \"Curling\": [\n        \"NNP\"\n    ], \n    \"Edna\": [\n        \"NNP\"\n    ], \n    \"amusements\": [\n        \"NNS\"\n    ], \n    \"Turned\": [\n        \"VBN\"\n    ], \n    \"departments\": [\n        \"NNS\"\n    ], \n    \"Rubinstein\": [\n        \"NNP\"\n    ], \n    \"Afro-Asian\": [\n        \"NNP\"\n    ], \n    \"Boisvert\": [\n        \"NNP\"\n    ], \n    \"Kinney\": [\n        \"NNP\"\n    ], \n    \"safekeep\": [\n        \"VB\"\n    ], \n    \"Turner\": [\n        \"NNP\"\n    ], \n    \"buffalo\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Wheelan\": [\n        \"NNP\"\n    ], \n    \"Based\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"Basel\": [\n        \"NNP\"\n    ], \n    \"Oremland\": [\n        \"NNP\"\n    ], \n    \"Foret\": [\n        \"NNP\"\n    ], \n    \"Lattice\": [\n        \"NNP\"\n    ], \n    \"Braverman\": [\n        \"NNP\"\n    ], \n    \"discordant\": [\n        \"JJ\"\n    ], \n    \"uphold\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Shippings\": [\n        \"NNS\"\n    ], \n    \"inbreeding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"graybeards\": [\n        \"NNS\"\n    ], \n    \"Govett\": [\n        \"NNP\"\n    ], \n    \"Morphophonemic\": [\n        \"JJ\"\n    ], \n    \"Axxess\": [\n        \"NNP\"\n    ], \n    \"languages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"warehouseman\": [\n        \"NN\"\n    ], \n    \"repackage\": [\n        \"VB\"\n    ], \n    \"careened\": [\n        \"VBD\"\n    ], \n    \"blended\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"include\": [\n        \"VBP\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"Takahashi\": [\n        \"NNP\"\n    ], \n    \"Matagorda\": [\n        \"NNP\"\n    ], \n    \"face-lifting\": [\n        \"NN\"\n    ], \n    \"Killen\": [\n        \"NNP\"\n    ], \n    \"accommodations\": [\n        \"NNS\"\n    ], \n    \"currency-exchange\": [\n        \"JJ\"\n    ], \n    \"Topaz\": [\n        \"NNP\"\n    ], \n    \"Reaffirming\": [\n        \"VBG\"\n    ], \n    \"Oresme\": [\n        \"NNP\"\n    ], \n    \"skivvies\": [\n        \"NNS\"\n    ], \n    \"Chesterfield\": [\n        \"NNP\"\n    ], \n    \"Bruckmann\": [\n        \"NNP\"\n    ], \n    \"socio-political\": [\n        \"JJ\"\n    ], \n    \"disclaimed\": [\n        \"VBD\"\n    ], \n    \"leveled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Composer\": [\n        \"NN\"\n    ], \n    \"Taurida\": [\n        \"NNP\"\n    ], \n    \"Riverwalk\": [\n        \"NNP\"\n    ], \n    \"Dyazide\": [\n        \"NNP\"\n    ], \n    \"Telecommunications\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Euzhan\": [\n        \"NNP\"\n    ], \n    \"concluded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"non-fiction\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wames\": [\n        \"NNP\"\n    ], \n    \"Nocturne\": [\n        \"NNP\"\n    ], \n    \"Kerrey\": [\n        \"NNP\"\n    ], \n    \"wrestling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"malice\": [\n        \"NN\"\n    ], \n    \"electronic-transaction\": [\n        \"JJ\"\n    ], \n    \"aquifer\": [\n        \"NN\"\n    ], \n    \"counter-argument\": [\n        \"NN\"\n    ], \n    \"bedpans\": [\n        \"NNS\"\n    ], \n    \"reunion\": [\n        \"NN\"\n    ], \n    \"acid\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Cash-heavy\": [\n        \"JJ\"\n    ], \n    \"Shanyun\": [\n        \"NNP\"\n    ], \n    \"Baches\": [\n        \"NNPS\"\n    ], \n    \"bibliophiles\": [\n        \"NNS\"\n    ], \n    \"Governors\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"disentangle\": [\n        \"VB\"\n    ], \n    \"bearish\": [\n        \"JJ\"\n    ], \n    \"Coherent\": [\n        \"NNP\"\n    ], \n    \"occupation\": [\n        \"NN\"\n    ], \n    \"McElvaney\": [\n        \"NNP\"\n    ], \n    \"well-traveled\": [\n        \"JJ\"\n    ], \n    \"chose\": [\n        \"VBD\"\n    ], \n    \"Seton\": [\n        \"NNP\"\n    ], \n    \"kangaroo\": [\n        \"NN\"\n    ], \n    \"Grovers\": [\n        \"NNP\"\n    ], \n    \"wraps\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Apostles\": [\n        \"NNPS\"\n    ], \n    \"explore\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Yun\": [\n        \"NNP\"\n    ], \n    \"insubordinate\": [\n        \"JJ\"\n    ], \n    \"Belvieu\": [\n        \"NNP\"\n    ], \n    \"Checchi-Skinner\": [\n        \"NNP\"\n    ], \n    \"settling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Goodis\": [\n        \"NNP\"\n    ], \n    \"Arvey\": [\n        \"NNP\"\n    ], \n    \"Selection\": [\n        \"NN\"\n    ], \n    \"blue-glazed\": [\n        \"JJ\"\n    ], \n    \"apparat\": [\n        \"NN\"\n    ], \n    \"Christmastime\": [\n        \"NNP\"\n    ], \n    \"operating-system\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"suggests\": [\n        \"VBZ\"\n    ], \n    \"Cheshire\": [\n        \"NNP\"\n    ], \n    \"Palm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pall\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Palo\": [\n        \"NNP\"\n    ], \n    \"Phosphates\": [\n        \"NNP\"\n    ], \n    \"pre-academic\": [\n        \"JJ\"\n    ], \n    \"Pale\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"pajama\": [\n        \"NN\"\n    ], \n    \"pro-Hearst\": [\n        \"JJ\"\n    ], \n    \"Staffers\": [\n        \"NNS\"\n    ], \n    \"saltier\": [\n        \"JJR\"\n    ], \n    \"Ships\": [\n        \"NNS\"\n    ], \n    \"hardy\": [\n        \"JJ\"\n    ], \n    \"Exit\": [\n        \"NN\"\n    ], \n    \"doubtfully\": [\n        \"RB\"\n    ], \n    \"Froissart\": [\n        \"NNP\"\n    ], \n    \"Wiseman\": [\n        \"NNP\"\n    ], \n    \"no-back\": [\n        \"NN\"\n    ], \n    \"from\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Neurex\": [\n        \"NNP\"\n    ], \n    \"frog\": [\n        \"NN\"\n    ], \n    \"procrastinate\": [\n        \"VB\"\n    ], \n    \"underscoring\": [\n        \"VBG\"\n    ], \n    \"DEMOCRATS\": [\n        \"NNS\"\n    ], \n    \"circuitous\": [\n        \"JJ\"\n    ], \n    \"rapid-fire\": [\n        \"JJ\"\n    ], \n    \"auxiliaries\": [\n        \"NNS\"\n    ], \n    \"removable\": [\n        \"JJ\"\n    ], \n    \"Gun\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Wheaton\": [\n        \"NNP\"\n    ], \n    \"Landfill\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sequoia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kondratas\": [\n        \"NNP\"\n    ], \n    \"Mig\": [\n        \"NN\"\n    ], \n    \"Guy\": [\n        \"NNP\"\n    ], \n    \"Netsch\": [\n        \"NNP\"\n    ], \n    \"Affair\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Aghazadeh\": [\n        \"NNP\"\n    ], \n    \"fifth-best\": [\n        \"JJ\"\n    ], \n    \"accrues\": [\n        \"VBZ\"\n    ], \n    \"recessionary\": [\n        \"JJ\"\n    ], \n    \"Calvi\": [\n        \"NNP\"\n    ], \n    \"Comsat\": [\n        \"NNP\"\n    ], \n    \"hookups\": [\n        \"NNS\"\n    ], \n    \"accrued\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Tartaglia\": [\n        \"NNP\"\n    ], \n    \"Edmund\": [\n        \"NNP\"\n    ], \n    \"Farnese\": [\n        \"NNP\"\n    ], \n    \"thirsty\": [\n        \"JJ\"\n    ], \n    \"nonverbal\": [\n        \"JJ\"\n    ], \n    \"re-set\": [\n        \"VB\"\n    ], \n    \"L&N\": [\n        \"NNP\"\n    ], \n    \"assumptions\": [\n        \"NNS\"\n    ], \n    \"Reorganizing\": [\n        \"VBG\"\n    ], \n    \"Australian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"electronic-defense\": [\n        \"NN\"\n    ], \n    \"autobiography\": [\n        \"NN\"\n    ], \n    \"counting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"spinnability\": [\n        \"NN\"\n    ], \n    \"then-rampant\": [\n        \"JJ\"\n    ], \n    \"cliches\": [\n        \"NNS\"\n    ], \n    \"Toshiichi\": [\n        \"NNP\"\n    ], \n    \"sidewalks\": [\n        \"NNS\"\n    ], \n    \"stewardship\": [\n        \"NN\"\n    ], \n    \"Large-package\": [\n        \"JJ\"\n    ], \n    \"Garments\": [\n        \"NNS\"\n    ], \n    \"Concocts\": [\n        \"VBZ\"\n    ], \n    \"secular\": [\n        \"JJ\"\n    ], \n    \"cliched\": [\n        \"JJ\"\n    ], \n    \"Mambelli\": [\n        \"NNP\"\n    ], \n    \"ceasing\": [\n        \"VBG\"\n    ], \n    \"detests\": [\n        \"VBZ\"\n    ], \n    \"warehouse-management\": [\n        \"NN\"\n    ], \n    \"normalcy\": [\n        \"NN\"\n    ], \n    \"deltoid\": [\n        \"NN\"\n    ], \n    \"Pockets\": [\n        \"NNS\"\n    ], \n    \"Inability\": [\n        \"NN\"\n    ], \n    \"Ruwe\": [\n        \"NNP\"\n    ], \n    \"Puhl\": [\n        \"NNP\"\n    ], \n    \"somethin\": [\n        \"NN\"\n    ], \n    \"Outdoor\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"hum\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"budge\": [\n        \"VB\"\n    ], \n    \"Sonenberg\": [\n        \"NNP\"\n    ], \n    \"civics\": [\n        \"NNS\"\n    ], \n    \"villas\": [\n        \"NNS\"\n    ], \n    \"Kings\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Liriano\": [\n        \"NNP\"\n    ], \n    \"Sino-foreign\": [\n        \"JJ\"\n    ], \n    \"Craton\": [\n        \"NNP\"\n    ], \n    \"violator\": [\n        \"NN\"\n    ], \n    \"perishing\": [\n        \"VBG\"\n    ], \n    \"sanctioned\": [\n        \"VBN\"\n    ], \n    \"Interference\": [\n        \"NNP\"\n    ], \n    \"interpreted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"strove\": [\n        \"VBD\"\n    ], \n    \"Tortoriello\": [\n        \"NNP\"\n    ], \n    \"Mitre\": [\n        \"NNP\"\n    ], \n    \"interpreter\": [\n        \"NN\"\n    ], \n    \"Markese\": [\n        \"NNP\"\n    ], \n    \"small-equipment\": [\n        \"NN\"\n    ], \n    \"late-1988\": [\n        \"JJ\"\n    ], \n    \"dismaying\": [\n        \"JJ\"\n    ], \n    \"Fairly\": [\n        \"RB\"\n    ], \n    \"neighborly\": [\n        \"JJ\"\n    ], \n    \"glee\": [\n        \"NN\"\n    ], \n    \"Lublin\": [\n        \"NNP\"\n    ], \n    \"crowds\": [\n        \"NNS\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"Admassy\": [\n        \"NNP\"\n    ], \n    \"Tickets\": [\n        \"NNS\"\n    ], \n    \"Ibn\": [\n        \"NNP\"\n    ], \n    \"undoing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"impressing\": [\n        \"VBG\"\n    ], \n    \"Deloris\": [\n        \"NNP\"\n    ], \n    \"REPORTS\": [\n        \"NNS\"\n    ], \n    \"ambition\": [\n        \"NN\"\n    ], \n    \"abstractive\": [\n        \"JJ\"\n    ], \n    \"clippings\": [\n        \"NNS\"\n    ], \n    \"measly\": [\n        \"JJ\"\n    ], \n    \"edit\": [\n        \"VB\"\n    ], \n    \"enviable\": [\n        \"JJ\"\n    ], \n    \"subcontinent\": [\n        \"NN\"\n    ], \n    \"redwoods\": [\n        \"NNS\"\n    ], \n    \"three-wood\": [\n        \"JJ\"\n    ], \n    \"Bucky\": [\n        \"NNP\"\n    ], \n    \"computer-operated\": [\n        \"JJ\"\n    ], \n    \"Eliminating\": [\n        \"VBG\"\n    ], \n    \"pleasures\": [\n        \"NNS\"\n    ], \n    \"Bucks\": [\n        \"NNP\"\n    ], \n    \"treads\": [\n        \"VBZ\"\n    ], \n    \"Preferences\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"floutingly\": [\n        \"RB\"\n    ], \n    \"Venezuelans\": [\n        \"NNPS\"\n    ], \n    \"Nihon\": [\n        \"NNP\"\n    ], \n    \"deals...\": [\n        \":\"\n    ], \n    \"double-wing\": [\n        \"JJ\"\n    ], \n    \"whipsawed\": [\n        \"VBN\"\n    ], \n    \"senior-subordinated\": [\n        \"JJ\"\n    ], \n    \"ambassadors\": [\n        \"NNS\"\n    ], \n    \"Verboort\": [\n        \"NN\"\n    ], \n    \"say-great\": [\n        \"JJ\"\n    ], \n    \"KAISER\": [\n        \"NNP\"\n    ], \n    \"honorably\": [\n        \"RB\"\n    ], \n    \"Civ.\": [\n        \"NNP\"\n    ], \n    \"Waikoloa\": [\n        \"NNP\"\n    ], \n    \"Canseco\": [\n        \"NNP\"\n    ], \n    \"chaos\": [\n        \"NN\"\n    ], \n    \"delivre\": [\n        \"VB\"\n    ], \n    \"Weisberg\": [\n        \"NNP\"\n    ], \n    \"Brokerage\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"M.I.T.-trained\": [\n        \"JJ\"\n    ], \n    \"Unique\": [\n        \"JJ\"\n    ], \n    \"Cartoon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sequent\": [\n        \"NNP\"\n    ], \n    \"Ednee\": [\n        \"NNP\"\n    ], \n    \"Mattis\": [\n        \"NNP\"\n    ], \n    \"pours\": [\n        \"VBZ\"\n    ], \n    \"SUPREME\": [\n        \"NNP\"\n    ], \n    \"up-scale\": [\n        \"JJ\"\n    ], \n    \"Mattie\": [\n        \"NNP\"\n    ], \n    \"Stupid\": [\n        \"JJ\"\n    ], \n    \"Beige\": [\n        \"NNP\"\n    ], \n    \"Mattia\": [\n        \"NNP\"\n    ], \n    \"Paganini\": [\n        \"NNS\"\n    ], \n    \"organic\": [\n        \"JJ\"\n    ], \n    \"g\": [\n        \"NN\"\n    ], \n    \"crashed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"bioequivalence-therapeutic-equivalence\": [\n        \"JJ\"\n    ], \n    \"Autocollimator\": [\n        \"NN\"\n    ], \n    \"footnoted\": [\n        \"VBN\"\n    ], \n    \"loggerheads\": [\n        \"NNS\"\n    ], \n    \"Renaissance-style\": [\n        \"JJ\"\n    ], \n    \"regaining\": [\n        \"VBG\"\n    ], \n    \"hence\": [\n        \"RB\"\n    ], \n    \"footnotes\": [\n        \"NNS\"\n    ], \n    \"Regionally\": [\n        \"RB\"\n    ], \n    \"self-enclosed\": [\n        \"JJ\"\n    ], \n    \"Belfast\": [\n        \"NNP\"\n    ], \n    \"Lufkin\": [\n        \"NNP\"\n    ], \n    \"eleventh\": [\n        \"JJ\"\n    ], \n    \"Electrical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"title-holder\": [\n        \"NN\"\n    ], \n    \"J.G.\": [\n        \"NNP\"\n    ], \n    \"two-wheel-drive\": [\n        \"JJ\"\n    ], \n    \"assailing\": [\n        \"VBG\"\n    ], \n    \"end-of-year\": [\n        \"JJ\"\n    ], \n    \"property-investment\": [\n        \"NN\"\n    ], \n    \"unknown\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Waving\": [\n        \"VBG\"\n    ], \n    \"glide-bombed\": [\n        \"VBD\"\n    ], \n    \"misunderstood\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nibelungenlied\": [\n        \"NNP\"\n    ], \n    \"Lencioni\": [\n        \"NNP\"\n    ], \n    \"consoling\": [\n        \"VBG\"\n    ], \n    \"Mixtec\": [\n        \"JJ\"\n    ], \n    \"cuckoo-bumblebee\": [\n        \"NN\"\n    ], \n    \"well-organized\": [\n        \"JJ\"\n    ], \n    \"fist-fighting\": [\n        \"NN\"\n    ], \n    \"Intolerable\": [\n        \"JJ\"\n    ], \n    \"Denrees\": [\n        \"NNP\"\n    ], \n    \"bashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"colas\": [\n        \"NNS\"\n    ], \n    \"Quebecers\": [\n        \"NNPS\"\n    ], \n    \"Ellison\": [\n        \"NNP\"\n    ], \n    \"War-era\": [\n        \"NNP\"\n    ], \n    \"willingess\": [\n        \"NN\"\n    ], \n    \"househld\": [\n        \"JJ\"\n    ], \n    \"basher\": [\n        \"NN\"\n    ], \n    \"Cozumel\": [\n        \"NNP\"\n    ], \n    \"creditors\": [\n        \"NNS\"\n    ], \n    \"Diego\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"co-written\": [\n        \"VBN\"\n    ], \n    \"right-of-entry\": [\n        \"NN\"\n    ], \n    \"Keogh\": [\n        \"NNP\"\n    ], \n    \"teenagers\": [\n        \"NNS\"\n    ], \n    \"thrift-rescue\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"small-stock\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"delineated\": [\n        \"VBN\"\n    ], \n    \"gloomily\": [\n        \"RB\"\n    ], \n    \"Forgiveness\": [\n        \"NN\"\n    ], \n    \"convenants\": [\n        \"NNS\"\n    ], \n    \"declasse\": [\n        \"JJ\"\n    ], \n    \"Howsam\": [\n        \"NNP\"\n    ], \n    \"lightning-like\": [\n        \"JJ\"\n    ], \n    \"propriety\": [\n        \"NN\"\n    ], \n    \"marginalizing\": [\n        \"VBG\"\n    ], \n    \"boastful\": [\n        \"JJ\"\n    ], \n    \"Dock\": [\n        \"NNP\"\n    ], \n    \"trespassing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Angrist\": [\n        \"NNP\"\n    ], \n    \"Johansen\": [\n        \"NNP\"\n    ], \n    \"misplacing\": [\n        \"VBG\"\n    ], \n    \"law-based\": [\n        \"JJ\"\n    ], \n    \"Gorenstein\": [\n        \"NNP\"\n    ], \n    \"Moines\": [\n        \"NNP\"\n    ], \n    \"twittering\": [\n        \"VBG\"\n    ], \n    \"mavens\": [\n        \"NNS\"\n    ], \n    \"Dorsten\": [\n        \"NNP\"\n    ], \n    \"agglutinins\": [\n        \"NNS\"\n    ], \n    \"hilltop\": [\n        \"NN\"\n    ], \n    \"Agnelli-related\": [\n        \"JJ\"\n    ], \n    \"GM-Toyota\": [\n        \"JJ\"\n    ], \n    \"why\": [\n        \"WRB\"\n    ], \n    \"Lindsay\": [\n        \"NNP\"\n    ], \n    \"JPI\": [\n        \"NNP\"\n    ], \n    \"Huskins\": [\n        \"NNP\"\n    ], \n    \"ensues\": [\n        \"VBZ\"\n    ], \n    \"oscillated\": [\n        \"VBD\"\n    ], \n    \"off-season\": [\n        \"NN\"\n    ], \n    \"Actress\": [\n        \"NNP\"\n    ], \n    \"pipe\": [\n        \"NN\"\n    ], \n    \"blowup\": [\n        \"NN\"\n    ], \n    \"ensued\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Everybody\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Whose\": [\n        \"WP$\"\n    ], \n    \"balding\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"stonemason\": [\n        \"NN\"\n    ], \n    \"pleases\": [\n        \"VBZ\"\n    ], \n    \"Shima\": [\n        \"NNP\"\n    ], \n    \"chapters\": [\n        \"NNS\"\n    ], \n    \"Klamath\": [\n        \"NNP\"\n    ], \n    \"Chemical\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"unwinding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"convertibles\": [\n        \"NNS\"\n    ], \n    \"utter\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"pleased\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"litigation\": [\n        \"NN\"\n    ], \n    \"earthquake-proof\": [\n        \"JJ\"\n    ], \n    \"SUPERPOWERS\": [\n        \"NNPS\"\n    ], \n    \"post-modern\": [\n        \"JJ\"\n    ], \n    \"Gramercy\": [\n        \"NNP\"\n    ], \n    \"Dickson\": [\n        \"NNP\"\n    ], \n    \"Tanganika\": [\n        \"NNP\"\n    ], \n    \"he\": [\n        \"PRP\", \n        \"VB\"\n    ], \n    \"widegrip\": [\n        \"JJ\"\n    ], \n    \"indignant\": [\n        \"JJ\"\n    ], \n    \"cube\": [\n        \"NN\"\n    ], \n    \"skimp\": [\n        \"VB\"\n    ], \n    \"skims\": [\n        \"VBZ\"\n    ], \n    \"Clayton-Pedersen\": [\n        \"NNP\"\n    ], \n    \"Enright\": [\n        \"NNP\"\n    ], \n    \"GPA\": [\n        \"NNP\"\n    ], \n    \"growth-and-income\": [\n        \"JJ\"\n    ], \n    \"Beaman\": [\n        \"NNP\"\n    ], \n    \"cubs\": [\n        \"NNS\"\n    ], \n    \"coordinating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"aleck\": [\n        \"NN\"\n    ], \n    \"Holman\": [\n        \"NNP\"\n    ], \n    \"Plastics\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Sentence\": [\n        \"NN\"\n    ], \n    \"Ambushes\": [\n        \"NNS\"\n    ], \n    \"Spinning\": [\n        \"VBG\"\n    ], \n    \"paternalism\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Stalinist-corrupted\": [\n        \"JJ\"\n    ], \n    \"union-busting\": [\n        \"JJ\"\n    ], \n    \"tickertape\": [\n        \"NN\"\n    ], \n    \"Halsey\": [\n        \"NNP\"\n    ], \n    \"editorialize\": [\n        \"VB\"\n    ], \n    \"half-million\": [\n        \"JJ\"\n    ], \n    \"go-go\": [\n        \"JJ\"\n    ], \n    \"workbench\": [\n        \"NN\"\n    ], \n    \"Ungava\": [\n        \"NNP\"\n    ], \n    \"Relocation\": [\n        \"NNP\"\n    ], \n    \"bust-up\": [\n        \"JJ\"\n    ], \n    \"honorariums\": [\n        \"NNS\"\n    ], \n    \"multipart\": [\n        \"JJ\"\n    ], \n    \"Cartusciello\": [\n        \"NNP\"\n    ], \n    \"Bosses\": [\n        \"NNS\"\n    ], \n    \"confrontational\": [\n        \"JJ\"\n    ], \n    \"despoiled\": [\n        \"VBN\"\n    ], \n    \"endothermic\": [\n        \"JJ\"\n    ], \n    \"sparsely\": [\n        \"RB\"\n    ], \n    \"traditionalism\": [\n        \"NN\"\n    ], \n    \"penetrations\": [\n        \"NNS\"\n    ], \n    \"credentialized\": [\n        \"JJ\"\n    ], \n    \"monstrous\": [\n        \"JJ\"\n    ], \n    \"candidate-picking\": [\n        \"JJ\"\n    ], \n    \"multifaceted\": [\n        \"JJ\"\n    ], \n    \"wetting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"limit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"defacing\": [\n        \"VBG\"\n    ], \n    \"Diagnoses\": [\n        \"NNPS\"\n    ], \n    \"Gordin\": [\n        \"NNP\"\n    ], \n    \"jot\": [\n        \"NN\"\n    ], \n    \"conclave\": [\n        \"NN\"\n    ], \n    \"horrifyingly\": [\n        \"RB\"\n    ], \n    \"joy\": [\n        \"NN\"\n    ], \n    \"Democrat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"job\": [\n        \"NN\"\n    ], \n    \"Subway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Machiavellian\": [\n        \"JJ\"\n    ], \n    \"Epigraph\": [\n        \"NN\"\n    ], \n    \"stucco\": [\n        \"NN\"\n    ], \n    \"Donnelly\": [\n        \"NNP\"\n    ], \n    \"estuarian\": [\n        \"NN\"\n    ], \n    \"tremolo\": [\n        \"NN\"\n    ], \n    \"valiantly\": [\n        \"RB\"\n    ], \n    \"april\": [\n        \"NNP\"\n    ], \n    \"presidential-primary\": [\n        \"NN\"\n    ], \n    \"Sustaining\": [\n        \"VBG\"\n    ], \n    \"Dealer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"grounds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Expos\": [\n        \"NNPS\"\n    ], \n    \"Kuhlman\": [\n        \"NNP\"\n    ], \n    \"Staffe\": [\n        \"NNP\"\n    ], \n    \"heredity\": [\n        \"NN\"\n    ], \n    \"Indianapolis-based\": [\n        \"JJ\"\n    ], \n    \"symphonies\": [\n        \"NNS\"\n    ], \n    \"Staffs\": [\n        \"NNS\"\n    ], \n    \"Abd-al-Aziz\": [\n        \"NNP\"\n    ], \n    \"advertising-backed\": [\n        \"JJ\"\n    ], \n    \"Sternberg\": [\n        \"NNP\"\n    ], \n    \"Postwar\": [\n        \"RB\"\n    ], \n    \"decent\": [\n        \"JJ\"\n    ], \n    \"Campestre\": [\n        \"NNP\"\n    ], \n    \"trademark\": [\n        \"NN\"\n    ], \n    \"responds\": [\n        \"VBZ\"\n    ], \n    \"short-circuited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"arbitrator\": [\n        \"NN\"\n    ], \n    \"lipsticks\": [\n        \"NNS\"\n    ], \n    \"Toronto\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"puberty\": [\n        \"NN\"\n    ], \n    \"harshest\": [\n        \"JJS\"\n    ], \n    \"talk-show\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"discimination\": [\n        \"NN\"\n    ], \n    \"frozen-pizza\": [\n        \"NN\"\n    ], \n    \"Westmin\": [\n        \"NNP\"\n    ], \n    \"Face\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"boozed-out\": [\n        \"JJ\"\n    ], \n    \"naphtha\": [\n        \"NN\"\n    ], \n    \"McGruder\": [\n        \"NNP\"\n    ], \n    \"Junk-holders\": [\n        \"NNS\"\n    ], \n    \"follow-ups\": [\n        \"NNS\"\n    ], \n    \"auto-emission\": [\n        \"NN\"\n    ], \n    \"Regret\": [\n        \"NN\"\n    ], \n    \"Sept.\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"shrimping\": [\n        \"NN\"\n    ], \n    \"lanthanum\": [\n        \"NN\"\n    ], \n    \"leaded-glass\": [\n        \"JJ\"\n    ], \n    \"Not-held\": [\n        \"JJ\"\n    ], \n    \"stunning\": [\n        \"JJ\"\n    ], \n    \"black-eyed\": [\n        \"JJ\"\n    ], \n    \"medicinal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Doraville\": [\n        \"NNP\"\n    ], \n    \"Knappertsbusch\": [\n        \"NNP\"\n    ], \n    \"unworkable\": [\n        \"JJ\"\n    ], \n    \"crassness\": [\n        \"NN\"\n    ], \n    \"lower-than-anticipated\": [\n        \"JJ\"\n    ], \n    \"draining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"lonely\": [\n        \"JJ\"\n    ], \n    \"Marchand\": [\n        \"NNP\"\n    ], \n    \"lightweight\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"disinterred\": [\n        \"VBN\"\n    ], \n    \"Rimini\": [\n        \"NNP\"\n    ], \n    \"over-price\": [\n        \"VB\"\n    ], \n    \"Culver\": [\n        \"NNP\"\n    ], \n    \"maddening\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"temptingly\": [\n        \"RB\"\n    ], \n    \"lyricists\": [\n        \"NNS\"\n    ], \n    \"exuberance\": [\n        \"NN\"\n    ], \n    \"burnouts\": [\n        \"NNS\"\n    ], \n    \"disciple\": [\n        \"NN\"\n    ], \n    \"Doobie\": [\n        \"NNP\"\n    ], \n    \"disagree\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Fungi\": [\n        \"NNP\"\n    ], \n    \"Quickening\": [\n        \"VBG\"\n    ], \n    \"overcrowded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"recriminations\": [\n        \"NNS\"\n    ], \n    \"picayune\": [\n        \"JJ\"\n    ], \n    \"Rauschenberg\": [\n        \"NNP\"\n    ], \n    \"Loosli\": [\n        \"NNP\"\n    ], \n    \"fur-and-leather\": [\n        \"JJ\"\n    ], \n    \"warming\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"Houston\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Meaney\": [\n        \"NNP\"\n    ], \n    \"aquisition\": [\n        \"NN\"\n    ], \n    \"timbre\": [\n        \"NN\"\n    ], \n    \"enamored\": [\n        \"JJ\"\n    ], \n    \"self-serve\": [\n        \"NN\"\n    ], \n    \"conquer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ruppert\": [\n        \"NNP\"\n    ], \n    \"re-incorporated\": [\n        \"VBN\"\n    ], \n    \"cameo\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"camel\": [\n        \"NN\"\n    ], \n    \"accosting\": [\n        \"VBG\"\n    ], \n    \"system-management\": [\n        \"NN\"\n    ], \n    \"Balmain\": [\n        \"NNP\"\n    ], \n    \"off-off\": [\n        \"JJ\"\n    ], \n    \"Strawbridge\": [\n        \"NNP\"\n    ], \n    \"Eshleman\": [\n        \"NNP\"\n    ], \n    \"Liebler\": [\n        \"NNP\"\n    ], \n    \"pythons\": [\n        \"NNS\"\n    ], \n    \"Hand-holding\": [\n        \"NN\"\n    ], \n    \"Burkhardt\": [\n        \"NNP\"\n    ], \n    \"archfool\": [\n        \"NN\"\n    ], \n    \"Crumley\": [\n        \"NNP\"\n    ], \n    \"guts\": [\n        \"NNS\"\n    ], \n    \"trade-ethnic\": [\n        \"JJ\"\n    ], \n    \"Quotron\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"usage\": [\n        \"NN\"\n    ], \n    \"Glasses\": [\n        \"NNS\"\n    ], \n    \"Pearson\": [\n        \"NNP\"\n    ], \n    \"provisions\": [\n        \"NNS\"\n    ], \n    \"wagon\": [\n        \"NN\"\n    ], \n    \"Homeowners\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"term\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"single-handed\": [\n        \"JJ\"\n    ], \n    \"Components\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"catchers\": [\n        \"NNS\"\n    ], \n    \"redesign\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Gabe\": [\n        \"NNP\"\n    ], \n    \"Portago\": [\n        \"NNP\"\n    ], \n    \"largest-selling\": [\n        \"JJ\"\n    ], \n    \"CAMBREX\": [\n        \"NNP\"\n    ], \n    \"Vila\": [\n        \"NNP\"\n    ], \n    \"KVA\": [\n        \"NNP\"\n    ], \n    \"gilt-edged\": [\n        \"JJ\"\n    ], \n    \"RISK\": [\n        \"NN\"\n    ], \n    \"perpetual\": [\n        \"JJ\"\n    ], \n    \"housing-assistance\": [\n        \"JJ\"\n    ], \n    \"Treece\": [\n        \"NNP\"\n    ], \n    \"Frosted\": [\n        \"NNP\"\n    ], \n    \"Interfinance\": [\n        \"NNP\"\n    ], \n    \"overtures\": [\n        \"NNS\"\n    ], \n    \"feigned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"hosts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"glass-fiber\": [\n        \"JJ\"\n    ], \n    \"anti-cholesterol\": [\n        \"JJ\"\n    ], \n    \"parity\": [\n        \"NN\"\n    ], \n    \"exceed\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"smoothly\": [\n        \"RB\"\n    ], \n    \"contemporaneous\": [\n        \"JJ\"\n    ], \n    \"reclamation\": [\n        \"NN\"\n    ], \n    \"melee\": [\n        \"NN\"\n    ], \n    \"dot-matrix\": [\n        \"NN\"\n    ], \n    \"past.\": [\n        \"NN\"\n    ], \n    \"Zukin\": [\n        \"NNP\"\n    ], \n    \"misadventures\": [\n        \"NNS\"\n    ], \n    \"Biblical\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Wildbad\": [\n        \"NNP\"\n    ], \n    \"Himebaugh\": [\n        \"NNP\"\n    ], \n    \"underutilization\": [\n        \"NN\"\n    ], \n    \"Tussard\": [\n        \"NNP\"\n    ], \n    \"Jack-of-all-trades\": [\n        \"NN\"\n    ], \n    \"Korobytsin\": [\n        \"NNP\"\n    ], \n    \"Heartwise\": [\n        \"NNP\"\n    ], \n    \"physician-executive\": [\n        \"JJ\"\n    ], \n    \"pasty\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"across-the-board\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"services-repair\": [\n        \"NN\"\n    ], \n    \"Newall\": [\n        \"NNP\"\n    ], \n    \"Dollars\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Ehman\": [\n        \"NNP\"\n    ], \n    \"Bingles\": [\n        \"NNS\"\n    ], \n    \"fords\": [\n        \"NNS\"\n    ], \n    \"pasta\": [\n        \"NN\"\n    ], \n    \"Bingley\": [\n        \"NNP\"\n    ], \n    \"paste\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"calcium-supplemented\": [\n        \"JJ\"\n    ], \n    \"pike\": [\n        \"NN\"\n    ], \n    \"Jurists\": [\n        \"NNP\"\n    ], \n    \"rare\": [\n        \"JJ\"\n    ], \n    \"carried\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dufresne\": [\n        \"NNP\"\n    ], \n    \"goat-drawn\": [\n        \"JJ\"\n    ], \n    \"then-Air\": [\n        \"JJ|NP\"\n    ], \n    \"Carr\": [\n        \"NNP\"\n    ], \n    \"Kreutzer\": [\n        \"NNP\"\n    ], \n    \"carrier\": [\n        \"NN\"\n    ], \n    \"construction-oriented\": [\n        \"JJ\"\n    ], \n    \"outstripped\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Cigna\": [\n        \"NNP\"\n    ], \n    \"Angelica\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"half-heartedly\": [\n        \"JJ\"\n    ], \n    \"outset\": [\n        \"NN\"\n    ], \n    \"WTXF\": [\n        \"NNP\"\n    ], \n    \"polished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Gorton\": [\n        \"NNP\"\n    ], \n    \"gymnastic\": [\n        \"JJ\"\n    ], \n    \"Gene-Spliced\": [\n        \"JJ\"\n    ], \n    \"Angelico\": [\n        \"NNP\"\n    ], \n    \"polishes\": [\n        \"NNS\"\n    ], \n    \"lawful\": [\n        \"JJ\"\n    ], \n    \"zoology\": [\n        \"NN\"\n    ], \n    \"Penman\": [\n        \"NNP\"\n    ], \n    \"Honeybee\": [\n        \"NNP\"\n    ], \n    \"AWOC\": [\n        \"NNP\"\n    ], \n    \"Schuler\": [\n        \"NNP\"\n    ], \n    \"Feeding\": [\n        \"NNP\"\n    ], \n    \"Grease\": [\n        \"NN\"\n    ], \n    \"Finance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"crave\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"suburbs\": [\n        \"NNS\"\n    ], \n    \"Capetown\": [\n        \"NNP\"\n    ], \n    \"Transcaucasus\": [\n        \"NNP\"\n    ], \n    \"spiral\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"RAAF\": [\n        \"NNP\"\n    ], \n    \"captains\": [\n        \"NNS\"\n    ], \n    \"Hartigan\": [\n        \"NNP\"\n    ], \n    \"gazpacho\": [\n        \"NN\"\n    ], \n    \"Execution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leveraged\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Greasy\": [\n        \"JJ\"\n    ], \n    \"automates\": [\n        \"VBZ\"\n    ], \n    \"Davison\": [\n        \"NNP\"\n    ], \n    \"nourish\": [\n        \"VB\"\n    ], \n    \"catsup\": [\n        \"NN\"\n    ], \n    \"supertanker\": [\n        \"NN\"\n    ], \n    \"Galophone-Prissy\": [\n        \"NNP\"\n    ], \n    \"indigents\": [\n        \"NNS\"\n    ], \n    \"DEFICIT\": [\n        \"NNP\"\n    ], \n    \"Witcher\": [\n        \"NNP\"\n    ], \n    \"defamed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"administration...\": [\n        \":\"\n    ], \n    \"protesting\": [\n        \"VBG\"\n    ], \n    \"FCB\\\\/Leber\": [\n        \"NNP\"\n    ], \n    \"Tawney\": [\n        \"NNP\"\n    ], \n    \"Britain\": [\n        \"NNP\"\n    ], \n    \"graphite\": [\n        \"NN\"\n    ], \n    \"unasterisked\": [\n        \"JJ\"\n    ], \n    \"Hi-Country\": [\n        \"NNP\"\n    ], \n    \"CAE-Link\": [\n        \"NNP\"\n    ], \n    \"monastic\": [\n        \"JJ\"\n    ], \n    \"bewail\": [\n        \"VB\"\n    ], \n    \"Descent\": [\n        \"NN\"\n    ], \n    \"horrific\": [\n        \"JJ\"\n    ], \n    \"Illinois-based\": [\n        \"JJ\"\n    ], \n    \"overhauled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"maroon\": [\n        \"JJ\"\n    ], \n    \"Geometric\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"visa\": [\n        \"NN\"\n    ], \n    \"gizmo\": [\n        \"NN\"\n    ], \n    \"monopolists\": [\n        \"NNS\"\n    ], \n    \"Haskin\": [\n        \"NNP\"\n    ], \n    \"glint\": [\n        \"NN\"\n    ], \n    \"multi-spired\": [\n        \"JJ\"\n    ], \n    \"overprotected\": [\n        \"VBN\"\n    ], \n    \"hurricane-prone\": [\n        \"JJ\"\n    ], \n    \"Elsinore\": [\n        \"NNP\"\n    ], \n    \"coffees\": [\n        \"NNS\"\n    ], \n    \"repute\": [\n        \"NN\"\n    ], \n    \"Raful\": [\n        \"NNP\"\n    ], \n    \"conclusion\": [\n        \"NN\"\n    ], \n    \"Mushr\": [\n        \"NN\"\n    ], \n    \"mildness\": [\n        \"NN\"\n    ], \n    \"kinds\": [\n        \"NNS\"\n    ], \n    \"Lionville\": [\n        \"NNP\"\n    ], \n    \"pumps\": [\n        \"NNS\"\n    ], \n    \"Karim\": [\n        \"NNP\"\n    ], \n    \"Karin\": [\n        \"NNP\"\n    ], \n    \"Acme-Cleveland\": [\n        \"NNP\"\n    ], \n    \"rhapsody\": [\n        \"NN\"\n    ], \n    \"market-related\": [\n        \"JJ\"\n    ], \n    \"Siti\": [\n        \"NNP\"\n    ], \n    \"auxiliary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Surviving\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"adaptable\": [\n        \"JJ\"\n    ], \n    \"Bellas\": [\n        \"NNP\"\n    ], \n    \"Sitz\": [\n        \"NNP\"\n    ], \n    \"tumefaciens\": [\n        \"NN\"\n    ], \n    \"tulips\": [\n        \"NNS\"\n    ], \n    \"dominoes\": [\n        \"NN\"\n    ], \n    \"laundromat\": [\n        \"NN\"\n    ], \n    \"sash\": [\n        \"NN\"\n    ], \n    \"pistol-whipped\": [\n        \"VBD\"\n    ], \n    \"impersonalized\": [\n        \"JJ\"\n    ], \n    \"Campuses\": [\n        \"NNS\"\n    ], \n    \"fig.\": [\n        \"NN\"\n    ], \n    \"tormenting\": [\n        \"VBG\"\n    ], \n    \"Elevated\": [\n        \"NNP\"\n    ], \n    \"Sugar\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"plaudits\": [\n        \"NNS\"\n    ], \n    \"Thriving\": [\n        \"JJ\"\n    ], \n    \"Seekonk\": [\n        \"NNP\"\n    ], \n    \"Thrive\": [\n        \"VBP\"\n    ], \n    \"third-biggest\": [\n        \"JJ\"\n    ], \n    \"little-noted\": [\n        \"JJ\"\n    ], \n    \"consulate\": [\n        \"NN\"\n    ], \n    \"Casey\": [\n        \"NNP\"\n    ], \n    \"fingernails\": [\n        \"NNS\"\n    ], \n    \"couch-potato\": [\n        \"NN\"\n    ], \n    \"Cases\": [\n        \"NNS\"\n    ], \n    \"Winooski\": [\n        \"NNP\"\n    ], \n    \"Regionalism\": [\n        \"NNP\"\n    ], \n    \"illegally\": [\n        \"RB\"\n    ], \n    \"PHOBIA\": [\n        \"NN\"\n    ], \n    \"shielding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"IXL\": [\n        \"NNP\"\n    ], \n    \"reversibility\": [\n        \"NN\"\n    ], \n    \"Eiszner\": [\n        \"NNP\"\n    ], \n    \"TAINTS\": [\n        \"VBZ\"\n    ], \n    \"Super-NOW\": [\n        \"NNP\"\n    ], \n    \"presser\": [\n        \"NN\"\n    ], \n    \"Waikikians\": [\n        \"NNPS\"\n    ], \n    \"neo-swing\": [\n        \"NN\"\n    ], \n    \"antianemia\": [\n        \"JJ\"\n    ], \n    \"Single-seeded\": [\n        \"JJ\"\n    ], \n    \"Tierno\": [\n        \"NNP\"\n    ], \n    \"tensile\": [\n        \"JJ\"\n    ], \n    \"intensification\": [\n        \"NN\"\n    ], \n    \"disburden\": [\n        \"VB\"\n    ], \n    \"then-Minister\": [\n        \"JJ\"\n    ], \n    \"Whisper\": [\n        \"NNP\"\n    ], \n    \"debuting\": [\n        \"VBG\"\n    ], \n    \"parsympathetic\": [\n        \"JJ\"\n    ], \n    \"B.A.\": [\n        \"NNP\"\n    ], \n    \"world-oriented\": [\n        \"JJ\"\n    ], \n    \"switchblade\": [\n        \"NN\"\n    ], \n    \"Gressette\": [\n        \"NNP\"\n    ], \n    \"crisply\": [\n        \"RB\"\n    ], \n    \"Hockey\": [\n        \"NNP\"\n    ], \n    \"Merlis\": [\n        \"NNP\"\n    ], \n    \"milled\": [\n        \"JJ\"\n    ], \n    \"SIZING\": [\n        \"NNP\"\n    ], \n    \"admire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"machine-masters\": [\n        \"NNS\"\n    ], \n    \"dangled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"whaling\": [\n        \"NN\"\n    ], \n    \"unlisted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Georgene\": [\n        \"NNP\"\n    ], \n    \"Verner\": [\n        \"NNP\"\n    ], \n    \"dangles\": [\n        \"VBZ\"\n    ], \n    \"Arighi\": [\n        \"NNP\"\n    ], \n    \"negated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"increasing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pictorially\": [\n        \"RB\"\n    ], \n    \"Neville\": [\n        \"NNP\"\n    ], \n    \"Sioux\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"PROCTER\": [\n        \"NNP\"\n    ], \n    \"russet-colored\": [\n        \"JJ\"\n    ], \n    \"jasmine\": [\n        \"NN\"\n    ], \n    \"Budget\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Longer\": [\n        \"JJR\"\n    ], \n    \"Stuttgart\": [\n        \"NNP\"\n    ], \n    \"eight-acre\": [\n        \"JJ\"\n    ], \n    \"Amtech\": [\n        \"NNP\"\n    ], \n    \"Foremost\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"lead\\\\/sulfur\": [\n        \"NN\"\n    ], \n    \"Yuko\": [\n        \"NNP\"\n    ], \n    \"Yuki\": [\n        \"NNP\"\n    ], \n    \"borrowers\": [\n        \"NNS\"\n    ], \n    \"fast-developing\": [\n        \"JJ\"\n    ], \n    \"Allenport\": [\n        \"NNP\"\n    ], \n    \"hollyhocks\": [\n        \"NNS\"\n    ], \n    \"NOC\": [\n        \"NNP\"\n    ], \n    \"grade-school\": [\n        \"JJ\"\n    ], \n    \"yet...\": [\n        \":\"\n    ], \n    \"CONSERVATIVES\": [\n        \"NNS\"\n    ], \n    \"NOW\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"NOP\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"burrow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"interferon\": [\n        \"NN\"\n    ], \n    \"Cheered\": [\n        \"VBN\"\n    ], \n    \"Quincy\": [\n        \"NNP\"\n    ], \n    \"previous-year\": [\n        \"JJ\"\n    ], \n    \"high-current\": [\n        \"JJ\"\n    ], \n    \"Jennings\": [\n        \"NNP\"\n    ], \n    \"besets\": [\n        \"VBZ\"\n    ], \n    \"explained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hallingby\": [\n        \"NNP\"\n    ], \n    \"scoffer\": [\n        \"NN\"\n    ], \n    \"Stock-market\": [\n        \"NN\"\n    ], \n    \"Savoyards\": [\n        \"NNP\"\n    ], \n    \"Quince\": [\n        \"NN\"\n    ], \n    \"Irishmen\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"spoke\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"re-emphasize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Scheherazade\": [\n        \"NNP\"\n    ], \n    \"overshadow\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"glimmering\": [\n        \"VBG\"\n    ], \n    \"replacement-car\": [\n        \"NN\"\n    ], \n    \"Anticipated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"play-it-safe\": [\n        \"JJ\"\n    ], \n    \"Corning\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"heralded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sassy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Brainards\": [\n        \"NNPS\"\n    ], \n    \"Bioengineers\": [\n        \"NNS\"\n    ], \n    \"Brighton\": [\n        \"NNP\"\n    ], \n    \"segregationist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mired\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"successful\": [\n        \"JJ\"\n    ], \n    \"greenhouse-effect\": [\n        \"JJ\"\n    ], \n    \"officio\": [\n        \"FW\"\n    ], \n    \"hurt\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"naczelnik\": [\n        \"FW\"\n    ], \n    \"Genossenschaftsbank\": [\n        \"NNP\"\n    ], \n    \"goddammit\": [\n        \"UH\"\n    ], \n    \"detective-story\": [\n        \"NN\"\n    ], \n    \"straddle\": [\n        \"VB\"\n    ], \n    \"Luna\": [\n        \"NNP\"\n    ], \n    \"vow\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Lung\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gogol\": [\n        \"NNP\"\n    ], \n    \"lower-wage\": [\n        \"JJ\"\n    ], \n    \"Lund\": [\n        \"NNP\"\n    ], \n    \"better-paying\": [\n        \"JJ\"\n    ], \n    \"Mystery\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"unstuffy\": [\n        \"VB\"\n    ], \n    \"droppable\": [\n        \"JJ\"\n    ], \n    \"household\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Celso\": [\n        \"NNP\"\n    ], \n    \"Insulate\": [\n        \"VB\"\n    ], \n    \"Reality\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Smith-Colmer\": [\n        \"NNP\"\n    ], \n    \"reprove\": [\n        \"VB\"\n    ], \n    \"money-hungry\": [\n        \"NN\"\n    ], \n    \"rescue\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"preferably\": [\n        \"RB\"\n    ], \n    \"Eagle\": [\n        \"NNP\"\n    ], \n    \"Wheaties-box\": [\n        \"JJ\"\n    ], \n    \"complaining\": [\n        \"VBG\"\n    ], \n    \"Atop\": [\n        \"IN\"\n    ], \n    \"damage\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Killing\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"machine\": [\n        \"NN\"\n    ], \n    \"methodology\": [\n        \"NN\"\n    ], \n    \"health-maintenance\": [\n        \"NN\"\n    ], \n    \"trading-fraud\": [\n        \"NN\"\n    ], \n    \"Jussel\": [\n        \"NNP\"\n    ], \n    \"agglutination\": [\n        \"NN\"\n    ], \n    \"preferable\": [\n        \"JJ\"\n    ], \n    \"Caldor\": [\n        \"NNP\"\n    ], \n    \"Alcatel\": [\n        \"NNP\"\n    ], \n    \"arylesterase\": [\n        \"NN\"\n    ], \n    \"swing\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"anti-flag-burning\": [\n        \"JJ\"\n    ], \n    \"possum\": [\n        \"NN\"\n    ], \n    \"Matlock\": [\n        \"NNP\"\n    ], \n    \"calves\": [\n        \"NNS\"\n    ], \n    \"wins\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"attracts\": [\n        \"VBZ\"\n    ], \n    \"Tiant\": [\n        \"NNP\"\n    ], \n    \"signatories\": [\n        \"NNS\"\n    ], \n    \"wink\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Haskell\": [\n        \"NNP\"\n    ], \n    \"keeps\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Manitoba\": [\n        \"NNP\"\n    ], \n    \"PNC\": [\n        \"NNP\"\n    ], \n    \"Petruchka\": [\n        \"NNP\"\n    ], \n    \"wing\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"wind\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"heavily-upholstered\": [\n        \"JJ\"\n    ], \n    \"Lohmans\": [\n        \"NNP\"\n    ], \n    \"Requirements\": [\n        \"NNS\"\n    ], \n    \"money-retirees\": [\n        \"NNS\"\n    ], \n    \"ARAL-88\": [\n        \"NNP\"\n    ], \n    \"C.B.\": [\n        \"NNP\"\n    ], \n    \"west-central\": [\n        \"JJ\"\n    ], \n    \"handcuff\": [\n        \"VBP\"\n    ], \n    \"lower-cost\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"affect\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"soothingly\": [\n        \"RB\"\n    ], \n    \"whoring\": [\n        \"NN\"\n    ], \n    \"Kearns\": [\n        \"NNP\"\n    ], \n    \"rankings\": [\n        \"NNS\"\n    ], \n    \"un-Swiss\": [\n        \"JJ\"\n    ], \n    \"Kearny\": [\n        \"NNP\"\n    ], \n    \"narrowest\": [\n        \"JJS\"\n    ], \n    \"Harris\": [\n        \"NNP\"\n    ], \n    \"Prohibited\": [\n        \"NNP\"\n    ], \n    \"endeavoring\": [\n        \"VBG\"\n    ], \n    \"shipbuilder\": [\n        \"NN\"\n    ], \n    \"Shattuck\": [\n        \"NNP\"\n    ], \n    \"woods\": [\n        \"NNS\"\n    ], \n    \"workhorse\": [\n        \"NN\"\n    ], \n    \"universalistic\": [\n        \"JJ\"\n    ], \n    \"Christiansen\": [\n        \"NNP\"\n    ], \n    \"exploding-wire\": [\n        \"JJ\"\n    ], \n    \"commemorate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"captioned\": [\n        \"VBD\"\n    ], \n    \"tenancy\": [\n        \"NN\"\n    ], \n    \"MRI\": [\n        \"NNP\"\n    ], \n    \"Robbery\": [\n        \"NNP\"\n    ], \n    \"Cards\": [\n        \"NNP\", \n        \"VBP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"township\": [\n        \"NN\"\n    ], \n    \"Robbers\": [\n        \"NNS\"\n    ], \n    \"MRA\": [\n        \"NNP\"\n    ], \n    \"MRC\": [\n        \"NNP\"\n    ], \n    \"represents\": [\n        \"VBZ\"\n    ], \n    \"China-bound\": [\n        \"JJ\"\n    ], \n    \"Hilkert\": [\n        \"NNP\"\n    ], \n    \"chamber-music\": [\n        \"JJ\"\n    ], \n    \"queues\": [\n        \"NNS\"\n    ], \n    \"dumps\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"clothed\": [\n        \"VBN\"\n    ], \n    \"Branford\": [\n        \"NNP\"\n    ], \n    \"Bonnier\": [\n        \"NNP\"\n    ], \n    \"Hoogli\": [\n        \"NNP\"\n    ], \n    \"Mouse\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"queued\": [\n        \"JJ\"\n    ], \n    \"preceded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"typifies\": [\n        \"VBZ\"\n    ], \n    \"financial\": [\n        \"JJ\"\n    ], \n    \"swathe\": [\n        \"NN\"\n    ], \n    \"Dortmund\": [\n        \"NNP\"\n    ], \n    \"bowls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mule-drawn\": [\n        \"JJ\"\n    ], \n    \"precedes\": [\n        \"VBZ\"\n    ], \n    \"fortnight\": [\n        \"NN\"\n    ], \n    \"laboratory\": [\n        \"NN\"\n    ], \n    \"Grauman\": [\n        \"NNP\"\n    ], \n    \"urbane\": [\n        \"JJ\"\n    ], \n    \"Stillwater\": [\n        \"NNP\"\n    ], \n    \"Tarheelia\": [\n        \"NNP\"\n    ], \n    \"Hellisen\": [\n        \"NNP\"\n    ], \n    \"Awkwardly\": [\n        \"RB\"\n    ], \n    \"JT8D-200\": [\n        \"NN\"\n    ], \n    \"rented\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Colorcoat\": [\n        \"NNP\"\n    ], \n    \"Swasey\": [\n        \"NNP\"\n    ], \n    \"Systematically\": [\n        \"RB\"\n    ], \n    \"last-gasp\": [\n        \"JJ\"\n    ], \n    \"Karre\": [\n        \"NNP\"\n    ], \n    \"fugitive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sensory\": [\n        \"JJ\"\n    ], \n    \"assures\": [\n        \"VBZ\"\n    ], \n    \"Nutmeg\": [\n        \"NNP\"\n    ], \n    \"Singletary\": [\n        \"NNP\"\n    ], \n    \"sensors\": [\n        \"NNS\"\n    ], \n    \"Poltrack\": [\n        \"NNP\"\n    ], \n    \"Raphael\": [\n        \"NNP\"\n    ], \n    \"Disgrace\": [\n        \"NN\"\n    ], \n    \"Hord\": [\n        \"NNP\"\n    ], \n    \"tsunami-warning\": [\n        \"JJ\"\n    ], \n    \"Hori\": [\n        \"NNP\"\n    ], \n    \"typified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dubilier\": [\n        \"NNP\"\n    ], \n    \"secularism\": [\n        \"NN\"\n    ], \n    \"obsolescent\": [\n        \"JJ\"\n    ], \n    \"Horn\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"joint-venturing\": [\n        \"NN\"\n    ], \n    \"waddles\": [\n        \"VBZ\"\n    ], \n    \"naturalism\": [\n        \"NN\"\n    ], \n    \"Human\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"clothes\": [\n        \"NNS\"\n    ], \n    \"shopper\": [\n        \"NN\"\n    ], \n    \"heavy-crude\": [\n        \"NN\"\n    ], \n    \"skim-milk\": [\n        \"NN\"\n    ], \n    \"subtlety\": [\n        \"NN\"\n    ], \n    \"Please\": [\n        \"VB\", \n        \"RB\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"shopped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Turpin\": [\n        \"NNP\"\n    ], \n    \"Canion\": [\n        \"NNP\"\n    ], \n    \"contralto\": [\n        \"NN\"\n    ], \n    \"outstandingly\": [\n        \"RB\"\n    ], \n    \"Skyway\": [\n        \"NNP\"\n    ], \n    \"copyright-infringement\": [\n        \"NN\"\n    ], \n    \"dogmas\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"hardboard\": [\n        \"NN\"\n    ], \n    \"postulate\": [\n        \"VB\"\n    ], \n    \"legs\": [\n        \"NNS\"\n    ], \n    \"persecute\": [\n        \"VBP\"\n    ], \n    \"oil-patch\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Atmospheric\": [\n        \"NNP\"\n    ], \n    \"collapse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"fibrous\": [\n        \"JJ\"\n    ], \n    \"snooty\": [\n        \"JJ\"\n    ], \n    \"bounty\": [\n        \"NN\"\n    ], \n    \"Precious-metals\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Named\": [\n        \"VBN\"\n    ], \n    \"wisdom\": [\n        \"NN\"\n    ], \n    \"Outrunning\": [\n        \"VBG\"\n    ], \n    \"Bertoia\": [\n        \"NNP\"\n    ], \n    \"Chernobyl\": [\n        \"NNP\"\n    ], \n    \"Plummer\": [\n        \"NNP\"\n    ], \n    \"PHOENIX\": [\n        \"NNP\"\n    ], \n    \"iteration\": [\n        \"NN\"\n    ], \n    \"endure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"warm-toned\": [\n        \"JJ\"\n    ], \n    \"bodyguards\": [\n        \"NNS\"\n    ], \n    \"contribution\": [\n        \"NN\"\n    ], \n    \"recheck\": [\n        \"VBP\"\n    ], \n    \"Computerworld\": [\n        \"NNP\"\n    ], \n    \"Varvara\": [\n        \"NNP\"\n    ], \n    \"groaning\": [\n        \"VBG\"\n    ], \n    \"girder\": [\n        \"NN\"\n    ], \n    \"PLC\": [\n        \"NNP\"\n    ], \n    \"Keeping\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"demand-related\": [\n        \"JJ\"\n    ], \n    \"Fraud\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gursel\": [\n        \"NNP\"\n    ], \n    \"overregulated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Haussmann\": [\n        \"NNP\"\n    ], \n    \"rechartering\": [\n        \"VBG\"\n    ], \n    \"Crotale\": [\n        \"JJ\"\n    ], \n    \"Bans\": [\n        \"NNP\"\n    ], \n    \"responsible\": [\n        \"JJ\"\n    ], \n    \"Northlich\": [\n        \"NNP\"\n    ], \n    \"Tastes\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"condensers\": [\n        \"NNS\"\n    ], \n    \"metallic\": [\n        \"JJ\"\n    ], \n    \"Bane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Band\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bang\": [\n        \"NNP\"\n    ], \n    \"causing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"defiantly\": [\n        \"RB\"\n    ], \n    \"Banc\": [\n        \"NNP\"\n    ], \n    \"alai\": [\n        \"FW\"\n    ], \n    \"Bani\": [\n        \"NNP\"\n    ], \n    \"Bank\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"commercial-credit\": [\n        \"NN\"\n    ], \n    \"Marrow-Tech\": [\n        \"NNP\"\n    ], \n    \"Anglo\\\\/Dutch\": [\n        \"NNP\"\n    ], \n    \"Emboldened\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"gloaters\": [\n        \"NNS\"\n    ], \n    \"mystique\": [\n        \"NN\"\n    ], \n    \"contact-lens\": [\n        \"NN\"\n    ], \n    \"looming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"deficit-inflation-capital-flight\": [\n        \"JJ\"\n    ], \n    \"well-fortified\": [\n        \"JJ\"\n    ], \n    \"affirmation\": [\n        \"NN\"\n    ], \n    \"Logic\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"retaining\": [\n        \"VBG\"\n    ], \n    \"Puppeteer\": [\n        \"NN\"\n    ], \n    \"conclaves\": [\n        \"NNS\"\n    ], \n    \"morality\": [\n        \"NN\"\n    ], \n    \"initiator\": [\n        \"NN\"\n    ], \n    \"antitrust\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"grove\": [\n        \"NN\"\n    ], \n    \"professor\": [\n        \"NN\"\n    ], \n    \"Kingston\": [\n        \"NNP\"\n    ], \n    \"detectors\": [\n        \"NNS\"\n    ], \n    \"rerun-sales\": [\n        \"NNS\"\n    ], \n    \"alas\": [\n        \"UH\"\n    ], \n    \"braying\": [\n        \"JJ\"\n    ], \n    \"world-at-large\": [\n        \"NN\"\n    ], \n    \"suspicions...\": [\n        \":\"\n    ], \n    \"budget-cutting\": [\n        \"NN\"\n    ], \n    \"classicism\": [\n        \"NN\"\n    ], \n    \"Ashmolean\": [\n        \"NNP\"\n    ], \n    \"bomb\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pro-enterprise\": [\n        \"JJ\"\n    ], \n    \"Sawallisch\": [\n        \"NNP\"\n    ], \n    \"tequila\": [\n        \"NN\"\n    ], \n    \"advisors\": [\n        \"NNS\"\n    ], \n    \"parolees\": [\n        \"NNS\"\n    ], \n    \"reinstitution\": [\n        \"NN\"\n    ], \n    \"Cinalli\": [\n        \"NNP\"\n    ], \n    \"undefined\": [\n        \"JJ\"\n    ], \n    \"regiments\": [\n        \"NNS\"\n    ], \n    \"gauge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"five-week\": [\n        \"JJ\"\n    ], \n    \"Meyner\": [\n        \"NNP\"\n    ], \n    \"capes\": [\n        \"NNS\"\n    ], \n    \"rock-hard\": [\n        \"JJ\"\n    ], \n    \"copy\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"crisis-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"buckboard\": [\n        \"NN\"\n    ], \n    \"menu\": [\n        \"NN\"\n    ], \n    \"adoption-assistance\": [\n        \"JJ\"\n    ], \n    \"buxom\": [\n        \"JJ\"\n    ], \n    \"breath-taking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"steel-ingot\": [\n        \"NN\"\n    ], \n    \"theme\": [\n        \"NN\"\n    ], \n    \"Beulah\": [\n        \"NNP\"\n    ], \n    \"Evry\": [\n        \"NNP\"\n    ], \n    \"mend\": [\n        \"VB\"\n    ], \n    \"telegrams\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Belated\": [\n        \"JJ\"\n    ], \n    \"quasi-religious\": [\n        \"JJ\"\n    ], \n    \"fellow-countryman\": [\n        \"NN\"\n    ], \n    \"bank-branch\": [\n        \"JJ\"\n    ], \n    \"lenders\": [\n        \"NNS\"\n    ], \n    \"chutney\": [\n        \"NN\"\n    ], \n    \"plane-building\": [\n        \"NN\"\n    ], \n    \"avenger\": [\n        \"NN\"\n    ], \n    \"Pointing\": [\n        \"VBG\"\n    ], \n    \"requalify\": [\n        \"VB\"\n    ], \n    \"slow-scrambling\": [\n        \"JJ\"\n    ], \n    \"IQ\": [\n        \"NNP\"\n    ], \n    \"lurched\": [\n        \"VBD\"\n    ], \n    \"Purified\": [\n        \"VBN\"\n    ], \n    \"Nett\": [\n        \"NNP\"\n    ], \n    \"Clearly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"two-mile\": [\n        \"JJ\"\n    ], \n    \"traverse\": [\n        \"VB\"\n    ], \n    \"leasing\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"consummation\": [\n        \"NN\"\n    ], \n    \"conservatories\": [\n        \"NNS\"\n    ], \n    \"Tenney\": [\n        \"NNP\"\n    ], \n    \"Velveeta\": [\n        \"NNP\"\n    ], \n    \"Liebowitz\": [\n        \"NNP\"\n    ], \n    \"babyhood\": [\n        \"NN\"\n    ], \n    \"natural-gas\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nocturnal\": [\n        \"JJ\"\n    ], \n    \"best\": [\n        \"JJS\", \n        \"RBS\", \n        \"JJSS\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"demonologist\": [\n        \"NN\"\n    ], \n    \"stealthy\": [\n        \"JJ\"\n    ], \n    \"killable\": [\n        \"JJ\"\n    ], \n    \"planoconcave\": [\n        \"JJ\"\n    ], \n    \"height-to-diameter\": [\n        \"NN\"\n    ], \n    \"Courts\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"conceptual\": [\n        \"JJ\"\n    ], \n    \"toolmaker\": [\n        \"NN\"\n    ], \n    \"Cage\": [\n        \"NNP\"\n    ], \n    \"pirate\": [\n        \"NN\"\n    ], \n    \"boom-boxes\": [\n        \"NNS\"\n    ], \n    \"donut-sales\": [\n        \"JJ\"\n    ], \n    \"claws\": [\n        \"NNS\"\n    ], \n    \"screwball\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"felons\": [\n        \"NNS\"\n    ], \n    \"cripple-maker\": [\n        \"NN\"\n    ], \n    \"felony\": [\n        \"NN\"\n    ], \n    \"aesthetic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"non-daily\": [\n        \"JJ\"\n    ], \n    \"Mechanix\": [\n        \"NNP\"\n    ], \n    \"two-sevenths\": [\n        \"NNS\"\n    ], \n    \"Trohan\": [\n        \"NNP\"\n    ], \n    \"drew\": [\n        \"VBD\"\n    ], \n    \"wrap-around\": [\n        \"JJ\"\n    ], \n    \"carbon\": [\n        \"NN\"\n    ], \n    \"Malabar\": [\n        \"NNP\"\n    ], \n    \"Stiemerling\": [\n        \"NNP\"\n    ], \n    \"Veronica\": [\n        \"NN\"\n    ], \n    \"violators\": [\n        \"NNS\"\n    ], \n    \"adapter\": [\n        \"NN\"\n    ], \n    \"PSA\": [\n        \"NNP\"\n    ], \n    \"adventurer\": [\n        \"NN\"\n    ], \n    \"adventures\": [\n        \"NNS\"\n    ], \n    \"PSE\": [\n        \"NNP\"\n    ], \n    \"goal-line\": [\n        \"NN\"\n    ], \n    \"Demented\": [\n        \"JJ\"\n    ], \n    \"estates\": [\n        \"NNS\"\n    ], \n    \"PS\\\\\": [\n        \"NN\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"quests\": [\n        \"NNS\"\n    ], \n    \"adapted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nanny\": [\n        \"NN\"\n    ], \n    \"polycrystalline\": [\n        \"JJ\"\n    ], \n    \"irresponsible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"higher-rate\": [\n        \"JJ\"\n    ], \n    \"Sawicki\": [\n        \"NNP\"\n    ], \n    \"canyon\": [\n        \"NN\"\n    ], \n    \"SAFEWAY\": [\n        \"NNP\"\n    ], \n    \"irresponsibly\": [\n        \"RB\"\n    ], \n    \"linguistically\": [\n        \"RB\"\n    ], \n    \"Weyerhauser\": [\n        \"NNP\"\n    ], \n    \"non-professionals\": [\n        \"NNS\"\n    ], \n    \"eased...\": [\n        \":\"\n    ], \n    \"Skyros\": [\n        \"NNP\"\n    ], \n    \"corrugations\": [\n        \"NNS\"\n    ], \n    \"anti-psychotic\": [\n        \"JJ\"\n    ], \n    \"D.,Calif\": [\n        \"NNP\"\n    ], \n    \"chrome\": [\n        \"NN\"\n    ], \n    \"work-force\": [\n        \"NN\"\n    ], \n    \"breakoff\": [\n        \"JJ\"\n    ], \n    \"risk-capital\": [\n        \"JJ\"\n    ], \n    \"extraction\": [\n        \"NN\"\n    ], \n    \"neo-dadaist\": [\n        \"NN\"\n    ], \n    \"quadripartite\": [\n        \"JJ\"\n    ], \n    \"tutorials\": [\n        \"NNS\"\n    ], \n    \"Luneburg\": [\n        \"NNP\"\n    ], \n    \"incompetent\": [\n        \"JJ\"\n    ], \n    \"life\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Board-traded\": [\n        \"JJ\"\n    ], \n    \"hospitalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"cash-equivalent\": [\n        \"JJ\"\n    ], \n    \"Poland\": [\n        \"NNP\"\n    ], \n    \"Fergus\": [\n        \"NNP\"\n    ], \n    \"similar-sounding\": [\n        \"JJ\"\n    ], \n    \"Concrete\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"joust\": [\n        \"NN\"\n    ], \n    \"lift\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"regaled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"child\": [\n        \"NN\"\n    ], \n    \"Investigating\": [\n        \"VBG\"\n    ], \n    \"chili\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"self-destructed\": [\n        \"VBD\"\n    ], \n    \"modern-day\": [\n        \"JJ\"\n    ], \n    \"chill\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"unsold\": [\n        \"JJ\"\n    ], \n    \"adaptations\": [\n        \"NNS\"\n    ], \n    \"sanctorum\": [\n        \"FW\"\n    ], \n    \"Grove\\\\/Weidenfeld\": [\n        \"NN\"\n    ], \n    \"Kippur\": [\n        \"NNP\"\n    ], \n    \"never-predictable\": [\n        \"JJ\"\n    ], \n    \"picturing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Potsdam\": [\n        \"NNP\"\n    ], \n    \"Y-cells\": [\n        \"NNS\"\n    ], \n    \"Slyke\": [\n        \"NNP\"\n    ], \n    \"actuated\": [\n        \"VBN\"\n    ], \n    \"letdown\": [\n        \"NN\"\n    ], \n    \"electromagnets\": [\n        \"NNS\"\n    ], \n    \"Sure-sure\": [\n        \"JJ\"\n    ], \n    \"sterno-cleido\": [\n        \"NN\"\n    ], \n    \"schoolbooks\": [\n        \"NNS\"\n    ], \n    \"doorman\": [\n        \"NN\"\n    ], \n    \"Grafin\": [\n        \"NNP\"\n    ], \n    \"Grafil\": [\n        \"NNP\"\n    ], \n    \"buckles\": [\n        \"NNS\"\n    ], \n    \"Confirmation\": [\n        \"NN\"\n    ], \n    \"Lehtinen\": [\n        \"NNP\"\n    ], \n    \"accouterments\": [\n        \"NNS\"\n    ], \n    \"Doronfeld\": [\n        \"NNP\"\n    ], \n    \"impaling\": [\n        \"VBG\"\n    ], \n    \"Barataria\": [\n        \"NNP\"\n    ], \n    \"enlistment\": [\n        \"NN\"\n    ], \n    \"swarthy\": [\n        \"JJ\"\n    ], \n    \"manageability\": [\n        \"NN\"\n    ], \n    \"babies\": [\n        \"NNS\"\n    ], \n    \"nonphysical\": [\n        \"JJ\"\n    ], \n    \"Appleby\": [\n        \"NNP\"\n    ], \n    \"re-incorporation\": [\n        \"NN\"\n    ], \n    \"Taper\": [\n        \"NNP\"\n    ], \n    \"Ranieri\": [\n        \"NNP\"\n    ], \n    \"wholewheat\": [\n        \"JJ\"\n    ], \n    \"Biggio\": [\n        \"NNP\"\n    ], \n    \"Taped\": [\n        \"VBN\"\n    ], \n    \"Peking\": [\n        \"NNP\"\n    ], \n    \"stiffs\": [\n        \"NNS\"\n    ], \n    \"speech-making\": [\n        \"NN\"\n    ], \n    \"pioneers\": [\n        \"NNS\"\n    ], \n    \"wives\": [\n        \"NNS\"\n    ], \n    \"J.J.\": [\n        \"NNP\"\n    ], \n    \"RJR\": [\n        \"NNP\"\n    ], \n    \"stupendous\": [\n        \"JJ\"\n    ], \n    \"kwhr\": [\n        \"NN\"\n    ], \n    \"ventricles\": [\n        \"NNS\"\n    ], \n    \"hair-growing\": [\n        \"JJ\"\n    ], \n    \"IOCSIXF\": [\n        \"NN\"\n    ], \n    \"IOCSIXG\": [\n        \"NN\"\n    ], \n    \"subpoena\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"spearheading\": [\n        \"VBG\"\n    ], \n    \"juridical\": [\n        \"JJ\"\n    ], \n    \"misrepresents\": [\n        \"VBZ\"\n    ], \n    \"fittest\": [\n        \"JJS\"\n    ], \n    \"halfhearted\": [\n        \"JJ\"\n    ], \n    \"adagios\": [\n        \"NNS\"\n    ], \n    \"British-American\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Buxtehude\": [\n        \"NNP\"\n    ], \n    \"high-rated\": [\n        \"JJ\"\n    ], \n    \"forsaken\": [\n        \"VBN\"\n    ], \n    \"forsakes\": [\n        \"VBZ\"\n    ], \n    \"life-saving\": [\n        \"JJ\"\n    ], \n    \"deductable\": [\n        \"JJ\"\n    ], \n    \"ungovernable\": [\n        \"JJ\"\n    ], \n    \"plight\": [\n        \"NN\"\n    ], \n    \"caregiver\": [\n        \"NN\"\n    ], \n    \"cellophane\": [\n        \"NN\"\n    ], \n    \"charter-boat\": [\n        \"NN\"\n    ], \n    \"agricultural-research\": [\n        \"JJ\"\n    ], \n    \"Geertz\": [\n        \"NNP\"\n    ], \n    \"HUD-related\": [\n        \"JJ\"\n    ], \n    \"ground-floor\": [\n        \"JJ\"\n    ], \n    \"irradiated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Ligne\": [\n        \"NNP\"\n    ], \n    \"Halebian\": [\n        \"NNP\"\n    ], \n    \"Waltham\": [\n        \"NNP\"\n    ], \n    \"thickening\": [\n        \"VBG\"\n    ], \n    \"Framework\": [\n        \"NNP\"\n    ], \n    \"collections\": [\n        \"NNS\"\n    ], \n    \"delinquents\": [\n        \"NNS\"\n    ], \n    \"Marrill\": [\n        \"NNP\"\n    ], \n    \"contribued\": [\n        \"VBD\"\n    ], \n    \"self-inflicted\": [\n        \"JJ\"\n    ], \n    \"ON\": [\n        \"IN\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"Aeneid\": [\n        \"NNP\"\n    ], \n    \"zero-magnitude\": [\n        \"NN\"\n    ], \n    \"birth\": [\n        \"NN\"\n    ], \n    \"Oceana\": [\n        \"NNP\"\n    ], \n    \"massively\": [\n        \"RB\"\n    ], \n    \"Taksim\": [\n        \"NNP\"\n    ], \n    \"Braving\": [\n        \"VBG\"\n    ], \n    \"articulated\": [\n        \"VBN\"\n    ], \n    \"tapering\": [\n        \"VBG\"\n    ], \n    \"Ingeniera\": [\n        \"NNP\"\n    ], \n    \"de-listed\": [\n        \"VBN\"\n    ], \n    \"Behind\": [\n        \"IN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"pavement\": [\n        \"NN\"\n    ], \n    \"abscesses\": [\n        \"NNS\"\n    ], \n    \"DEALERS\": [\n        \"NNPS\"\n    ], \n    \"people\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Pharmacy\": [\n        \"NNP\"\n    ], \n    \"Tropical\": [\n        \"NNP\"\n    ], \n    \"Toensing\": [\n        \"NNP\"\n    ], \n    \"warring\": [\n        \"VBG\"\n    ], \n    \"aspen\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Shirer\": [\n        \"NNP\"\n    ], \n    \"gasps\": [\n        \"NNS\"\n    ], \n    \"sociology\": [\n        \"NN\"\n    ], \n    \"Quarry\": [\n        \"NNP\"\n    ], \n    \"hulks\": [\n        \"NNS\"\n    ], \n    \"Baum\": [\n        \"NNP\"\n    ], \n    \"Prolusion\": [\n        \"NNP\"\n    ], \n    \"Withdrawals\": [\n        \"NNS\"\n    ], \n    \"impulsively\": [\n        \"RB\"\n    ], \n    \"tarantara\": [\n        \"NN\"\n    ], \n    \"consummately\": [\n        \"RB\"\n    ], \n    \"serpents\": [\n        \"NNS\"\n    ], \n    \"a-raising\": [\n        \"VBG\"\n    ], \n    \"germinate\": [\n        \"VBP\"\n    ], \n    \"Keith\": [\n        \"NNP\"\n    ], \n    \"Royce\": [\n        \"NNP\"\n    ], \n    \"pinched\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"INFORMATION\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Naess\": [\n        \"NNP\"\n    ], \n    \"Didi\": [\n        \"NNP\"\n    ], \n    \"specialty-machinery\": [\n        \"NN\"\n    ], \n    \"Hauling\": [\n        \"VBG\"\n    ], \n    \"Thing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Practices\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"shifting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pinches\": [\n        \"NNS\"\n    ], \n    \"brokerage\": [\n        \"NN\"\n    ], \n    \"Think\": [\n        \"VBP\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"insinuations\": [\n        \"NNS\"\n    ], \n    \"Snatching\": [\n        \"VBG\"\n    ], \n    \"derailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Celanese\": [\n        \"NNP\"\n    ], \n    \"rebuffed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Ichi\": [\n        \"NNP\"\n    ], \n    \"Bronson\": [\n        \"NNP\"\n    ], \n    \"despair\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"repellent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"spins\": [\n        \"VBZ\"\n    ], \n    \"Shake\": [\n        \"VB\"\n    ], \n    \"sarakin\": [\n        \"FW\"\n    ], \n    \"Strength\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Summers\": [\n        \"NNP\"\n    ], \n    \"dashboards\": [\n        \"NNS\"\n    ], \n    \"Occasional\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Misses\": [\n        \"NNPS\"\n    ], \n    \"fixed-price\": [\n        \"JJ\"\n    ], \n    \"Hirschman\": [\n        \"NNP\"\n    ], \n    \"attrition\": [\n        \"NN\"\n    ], \n    \"reducing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Repligen\": [\n        \"NNP\"\n    ], \n    \"ownerships\": [\n        \"NNS\"\n    ], \n    \"Ali\": [\n        \"NNP\"\n    ], \n    \"panorama\": [\n        \"NN\"\n    ], \n    \"Paestum\": [\n        \"NNP\"\n    ], \n    \"vinegar\": [\n        \"NN\"\n    ], \n    \"Wichita\": [\n        \"NNP\"\n    ], \n    \"common-law\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Amaury\": [\n        \"NNP\"\n    ], \n    \"Ogura\": [\n        \"NNP\"\n    ], \n    \"thrips\": [\n        \"NN\"\n    ], \n    \"happy\": [\n        \"JJ\"\n    ], \n    \"alloys\": [\n        \"NNS\"\n    ], \n    \"fascination\": [\n        \"NN\"\n    ], \n    \"grokking\": [\n        \"VBG\"\n    ], \n    \"Completing\": [\n        \"VBG\"\n    ], \n    \"Dentistry\": [\n        \"NNP\"\n    ], \n    \"conclusively\": [\n        \"RB\"\n    ], \n    \"Dabney\": [\n        \"NNP\"\n    ], \n    \"gripes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Boole\": [\n        \"NNP\"\n    ], \n    \"hemisphere\": [\n        \"NN\"\n    ], \n    \"melanin\": [\n        \"NN\"\n    ], \n    \"materals\": [\n        \"NNS\"\n    ], \n    \"silliness\": [\n        \"NN\"\n    ], \n    \"mirthless\": [\n        \"JJ\"\n    ], \n    \"Reductions\": [\n        \"NNS\"\n    ], \n    \"antiCommunist\": [\n        \"JJ\"\n    ], \n    \"peso\": [\n        \"NN\"\n    ], \n    \"pest\": [\n        \"NN\", \n        \"JJS\"\n    ], \n    \"pontificate\": [\n        \"VB\"\n    ], \n    \"panels\": [\n        \"NNS\"\n    ], \n    \"five-inch\": [\n        \"JJ\"\n    ], \n    \"Mancuso\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"juvenile\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"liberal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Variety\": [\n        \"NNP\"\n    ], \n    \"Dixiecrats\": [\n        \"NNS\"\n    ], \n    \"tournament\": [\n        \"NN\"\n    ], \n    \"muscatel\": [\n        \"NN\"\n    ], \n    \"Zuercher\": [\n        \"NNP\"\n    ], \n    \"Raimondo\": [\n        \"NNP\"\n    ], \n    \"exist\": [\n        \"VB\", \n        \"VBP\", \n        \"NNP\"\n    ], \n    \"obligations\": [\n        \"NNS\"\n    ], \n    \"accounting\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"provisons\": [\n        \"NNS\"\n    ], \n    \"supporters\": [\n        \"NNS\"\n    ], \n    \"solicitation\": [\n        \"NN\"\n    ], \n    \"dotted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Gherlein\": [\n        \"NNP\"\n    ], \n    \"ROBERT\": [\n        \"NNP\"\n    ], \n    \"Beismortier\": [\n        \"NNP\"\n    ], \n    \"Hennessy\": [\n        \"NNP\"\n    ], \n    \"Nolan\": [\n        \"NNP\"\n    ], \n    \"deep-seated\": [\n        \"JJ\"\n    ], \n    \"dissimiliar\": [\n        \"JJ\"\n    ], \n    \"Ceramics\": [\n        \"NNPS\"\n    ], \n    \"disastrously\": [\n        \"RB\"\n    ], \n    \"Shuwa\": [\n        \"NNP\"\n    ], \n    \"Reinforcing\": [\n        \"VBG\"\n    ], \n    \"nondriver\": [\n        \"NN\"\n    ], \n    \"invested\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"persecution\": [\n        \"NN\"\n    ], \n    \"Barberini\": [\n        \"NNP\"\n    ], \n    \"anti-white\": [\n        \"JJ\"\n    ], \n    \"Carpathians\": [\n        \"NNPS\"\n    ], \n    \"Jutish\": [\n        \"JJ\"\n    ], \n    \"Stirring\": [\n        \"VBG\"\n    ], \n    \"spades\": [\n        \"NNS\"\n    ], \n    \"deformational\": [\n        \"JJ\"\n    ], \n    \"sniffed\": [\n        \"VBD\"\n    ], \n    \"Ellsworth\": [\n        \"NNP\"\n    ], \n    \"Aureliano\": [\n        \"NNP\"\n    ], \n    \"DevelopMate\": [\n        \"NNP\"\n    ], \n    \"goaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"McKid\": [\n        \"NNP\"\n    ], \n    \"Steinhart\": [\n        \"NNP\"\n    ], \n    \"fares\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"novelty\": [\n        \"NN\"\n    ], \n    \"Indians\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Glauber\": [\n        \"NNP\"\n    ], \n    \"avalanche\": [\n        \"NN\"\n    ], \n    \"anti-airline-takeover\": [\n        \"JJ\"\n    ], \n    \"gallbladder\": [\n        \"NN\"\n    ], \n    \"Indiana\": [\n        \"NNP\"\n    ], \n    \"Falkland\": [\n        \"NNP\"\n    ], \n    \"Plump\": [\n        \"JJ\"\n    ], \n    \"cupped\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"rousing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Truckers\": [\n        \"NNS\"\n    ], \n    \"indolent\": [\n        \"JJ\"\n    ], \n    \"behave\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lighting\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"veterans\": [\n        \"NNS\"\n    ], \n    \"Hnilica\": [\n        \"NNP\"\n    ], \n    \"single-employer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"prepaid\": [\n        \"JJ\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"Scranton\": [\n        \"NNP\"\n    ], \n    \"refinance\": [\n        \"VB\"\n    ], \n    \"SunAmerica\": [\n        \"NNP\"\n    ], \n    \"mourn\": [\n        \"VB\"\n    ], \n    \"servicing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Seko\": [\n        \"NNP\"\n    ], \n    \"sun-browned\": [\n        \"JJ\"\n    ], \n    \"Experimental\": [\n        \"JJ\"\n    ], \n    \"fire-resistant\": [\n        \"JJ\"\n    ], \n    \"wondrously\": [\n        \"RB\"\n    ], \n    \"Dugan\": [\n        \"NNP\"\n    ], \n    \"short-range\": [\n        \"JJ\"\n    ], \n    \"solves\": [\n        \"VBZ\"\n    ], \n    \"Northeastern\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"corporate-identity\": [\n        \"JJ\"\n    ], \n    \"Intelogic\": [\n        \"NNP\"\n    ], \n    \"Aeromexico\": [\n        \"NNP\"\n    ], \n    \"solved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Quigley\": [\n        \"NNP\"\n    ], \n    \"Cantonese\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Subsidizing\": [\n        \"VBG\"\n    ], \n    \"Tables\": [\n        \"NNS\"\n    ], \n    \"officiate\": [\n        \"VB\"\n    ], \n    \"Marmi\": [\n        \"NNP\"\n    ], \n    \"steaks\": [\n        \"NNS\"\n    ], \n    \"Bldg.\": [\n        \"NNP\"\n    ], \n    \"Hingham\": [\n        \"NNP\"\n    ], \n    \"erotic\": [\n        \"JJ\"\n    ], \n    \"anti-androgen\": [\n        \"JJ\"\n    ], \n    \"Dellums\": [\n        \"NNP\"\n    ], \n    \"Tricia\": [\n        \"NNP\"\n    ], \n    \"cleanliness\": [\n        \"NN\"\n    ], \n    \"Brumidi-Costaggini\": [\n        \"NNP\"\n    ], \n    \"crackpot\": [\n        \"NN\"\n    ], \n    \"current\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"extraterrestrial\": [\n        \"JJ\"\n    ], \n    \"whipcracking\": [\n        \"NN\"\n    ], \n    \"Crowell\": [\n        \"NNP\"\n    ], \n    \"all-powerful\": [\n        \"JJ\"\n    ], \n    \"Cays\": [\n        \"NNP\"\n    ], \n    \"drewe\": [\n        \"VBD\"\n    ], \n    \"tough-looking\": [\n        \"JJ\"\n    ], \n    \"Machold\": [\n        \"NNP\"\n    ], \n    \"UNION\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"amalgam\": [\n        \"NN\"\n    ], \n    \"Caetani\": [\n        \"NNP\"\n    ], \n    \"Decca\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eighties\": [\n        \"NNP\"\n    ], \n    \"Nynex\": [\n        \"NNP\"\n    ], \n    \"Godwin\": [\n        \"NNP\"\n    ], \n    \"government-relations\": [\n        \"NNS\"\n    ], \n    \"Baton\": [\n        \"NNP\"\n    ], \n    \"studied\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"tassels\": [\n        \"NNS\"\n    ], \n    \"Exegete\": [\n        \"NNP\"\n    ], \n    \"therein\": [\n        \"RB\"\n    ], \n    \"Miglia\": [\n        \"NNP\"\n    ], \n    \"studies\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bearable\": [\n        \"JJ\"\n    ], \n    \"carpets\": [\n        \"NNS\"\n    ], \n    \"indiscriminantly\": [\n        \"RB\"\n    ], \n    \"defense-budget\": [\n        \"NN\"\n    ], \n    \"SOYBEANS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Rogin\": [\n        \"NNP\"\n    ], \n    \"properties.``\": [\n        \"``\"\n    ], \n    \"Alberto\": [\n        \"NNP\"\n    ], \n    \"Alberta\": [\n        \"NNP\"\n    ], \n    \"monaural\": [\n        \"JJ\"\n    ], \n    \"grimmest\": [\n        \"JJS\"\n    ], \n    \"fresher\": [\n        \"JJR\"\n    ], \n    \"Emanuele\": [\n        \"NNP\"\n    ], \n    \"Abello\": [\n        \"NNP\"\n    ], \n    \"predictions\": [\n        \"NNS\"\n    ], \n    \"public-land\": [\n        \"JJ\"\n    ], \n    \"Pontius\": [\n        \"NNP\"\n    ], \n    \"corners\": [\n        \"NNS\"\n    ], \n    \"Kafkaesque\": [\n        \"JJ\"\n    ], \n    \"One-Leg\": [\n        \"NNP\"\n    ], \n    \"Califon\": [\n        \"NNP\"\n    ], \n    \"cranked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"afford\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"apparent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MD-90s\": [\n        \"NNS\"\n    ], \n    \"wrenches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"easiest\": [\n        \"JJS\"\n    ], \n    \"behalf\": [\n        \"NN\"\n    ], \n    \"Oum\": [\n        \"NNP\"\n    ], \n    \"COS.\": [\n        \"NNP\"\n    ], \n    \"lumberjack\": [\n        \"NN\"\n    ], \n    \"overloaded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"cooked-over\": [\n        \"JJ\"\n    ], \n    \"believer\": [\n        \"NN\"\n    ], \n    \"believes\": [\n        \"VBZ\"\n    ], \n    \"God-curst\": [\n        \"JJ\"\n    ], \n    \"Appliances\": [\n        \"NNPS\"\n    ], \n    \"believed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"scenics\": [\n        \"NNS\"\n    ], \n    \"Worth-based\": [\n        \"JJ\"\n    ], \n    \"O.N.\": [\n        \"NNP\"\n    ], \n    \"Sepulveda\": [\n        \"NNP\"\n    ], \n    \"Inward\": [\n        \"NNP\"\n    ], \n    \"teaspoons\": [\n        \"NNS\"\n    ], \n    \"wrenched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bandaging\": [\n        \"NNP\"\n    ], \n    \"Officine\": [\n        \"NNP\"\n    ], \n    \"intransigent\": [\n        \"JJ\"\n    ], \n    \"hides\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"fiche\": [\n        \"FW\"\n    ], \n    \"philological\": [\n        \"JJ\"\n    ], \n    \"agendas\": [\n        \"NNS\"\n    ], \n    \"uncles\": [\n        \"NNS\"\n    ], \n    \"deserves\": [\n        \"VBZ\"\n    ], \n    \"Vyacheslav\": [\n        \"NNP\"\n    ], \n    \"ticklebrush\": [\n        \"NN\"\n    ], \n    \"agave\": [\n        \"NN\"\n    ], \n    \"elephant\": [\n        \"NN\"\n    ], \n    \"Holmberg\": [\n        \"NNP\"\n    ], \n    \"parameter\": [\n        \"NN\"\n    ], \n    \"Newlywed\": [\n        \"NNP\"\n    ], \n    \"belongs\": [\n        \"VBZ\"\n    ], \n    \"snaps\": [\n        \"VBZ\"\n    ], \n    \"Aeroquip\": [\n        \"NNP\"\n    ], \n    \"EQU\": [\n        \"NN\"\n    ], \n    \"blasting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"transportation-cost\": [\n        \"JJ\"\n    ], \n    \"rehabilitate\": [\n        \"VB\"\n    ], \n    \"Managua\": [\n        \"NNP\"\n    ], \n    \"overfunding\": [\n        \"NN\"\n    ], \n    \"date\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Become\": [\n        \"VB\"\n    ], \n    \"data\": [\n        \"NNS\", \n        \"NN|NNS\", \n        \"NNS|NN\", \n        \"NN\"\n    ], \n    \"Shandong\": [\n        \"NNP\"\n    ], \n    \"Yoshihashi\": [\n        \"NNP\"\n    ], \n    \"sectors\": [\n        \"NNS\"\n    ], \n    \"interest-sensitive\": [\n        \"JJ\"\n    ], \n    \"aseptically\": [\n        \"RB\"\n    ], \n    \"approximation\": [\n        \"NN\"\n    ], \n    \"applicant\": [\n        \"NN\"\n    ], \n    \"sclerosis\": [\n        \"NN\"\n    ], \n    \"yielding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Catching\": [\n        \"VBG\"\n    ], \n    \"definitions\": [\n        \"NNS\"\n    ], \n    \"quatrain\": [\n        \"NN\"\n    ], \n    \"scents\": [\n        \"NNS\"\n    ], \n    \"wavelengths\": [\n        \"NNS\"\n    ], \n    \"debt-coverage\": [\n        \"JJ\"\n    ], \n    \"unfavorably\": [\n        \"RB\"\n    ], \n    \"haute\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"unacceptable\": [\n        \"JJ\"\n    ], \n    \"Leaguers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"bibulous\": [\n        \"JJ\"\n    ], \n    \"unacceptably\": [\n        \"RB\"\n    ], \n    \"ungentlemanly\": [\n        \"JJ\"\n    ], \n    \"unfavorable\": [\n        \"JJ\"\n    ], \n    \"stills\": [\n        \"NNS\"\n    ], \n    \"Clemson\": [\n        \"NNP\"\n    ], \n    \"Shaw\": [\n        \"NNP\"\n    ], \n    \"solitary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Karalis\": [\n        \"NNP\"\n    ], \n    \"Zolo\": [\n        \"NNP\"\n    ], \n    \"lackluster\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"bagels\": [\n        \"NNS\"\n    ], \n    \"Unlimited\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"covertly\": [\n        \"RB\"\n    ], \n    \"creations\": [\n        \"NNS\"\n    ], \n    \"orchestrating\": [\n        \"VBG\"\n    ], \n    \"Rafeedie\": [\n        \"NNP\"\n    ], \n    \"Persky\": [\n        \"NNP\"\n    ], \n    \"decades\": [\n        \"NNS\"\n    ], \n    \"into\": [\n        \"IN\", \n        \"RP\"\n    ], \n    \"Amin\": [\n        \"NNP\"\n    ], \n    \"stabilizers\": [\n        \"NNS\"\n    ], \n    \"three-family\": [\n        \"JJ\"\n    ], \n    \"matches\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"cholesterol-reduction\": [\n        \"NN\"\n    ], \n    \"Socialist\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"insomnia\": [\n        \"NN\"\n    ], \n    \"Sherwin-Williams\": [\n        \"NNP\"\n    ], \n    \"Langer\": [\n        \"NNP\"\n    ], \n    \"records\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Socialism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"six-week\": [\n        \"JJ\"\n    ], \n    \"arriving\": [\n        \"VBG\"\n    ], \n    \"in-laws\": [\n        \"NNS\"\n    ], \n    \"non-brain\": [\n        \"JJ\"\n    ], \n    \"runners\": [\n        \"NNS\"\n    ], \n    \"matched\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"revery\": [\n        \"NN\"\n    ], \n    \"Newest\": [\n        \"JJS\"\n    ], \n    \"revert\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"McCrory\": [\n        \"NNP\"\n    ], \n    \"wetness\": [\n        \"NN\"\n    ], \n    \"bowling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"target-hunting\": [\n        \"JJ\"\n    ], \n    \"manors\": [\n        \"NNS\"\n    ], \n    \"workman\": [\n        \"NN\"\n    ], \n    \"sex-manuals\": [\n        \"NNS\"\n    ], \n    \"Richmond-area\": [\n        \"JJ\"\n    ], \n    \"ALCOHOL\": [\n        \"NNP\"\n    ], \n    \"whosoever\": [\n        \"WP\"\n    ], \n    \"Snyder\": [\n        \"NNP\"\n    ], \n    \"bovine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"low-wage\": [\n        \"JJ\"\n    ], \n    \"Calderone\": [\n        \"NNP\"\n    ], \n    \"Habicht\": [\n        \"NNP\"\n    ], \n    \"Ferraros\": [\n        \"NNPS\"\n    ], \n    \"revises\": [\n        \"VBZ\"\n    ], \n    \"Shah\": [\n        \"NNP\"\n    ], \n    \"giddy\": [\n        \"JJ\"\n    ], \n    \"Eire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"canvas\": [\n        \"NN\"\n    ], \n    \"workaholic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Anwar\": [\n        \"NN\"\n    ], \n    \"top-performing\": [\n        \"JJ\"\n    ], \n    \"methylene\": [\n        \"NN\"\n    ], \n    \"unreleasable\": [\n        \"JJ\"\n    ], \n    \"Emission\": [\n        \"NN\"\n    ], \n    \"Hollis\": [\n        \"NNP\"\n    ], \n    \"sibilant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"suggesting\": [\n        \"VBG\"\n    ], \n    \"linguine\": [\n        \"NN\"\n    ], \n    \"bordering\": [\n        \"VBG\"\n    ], \n    \"flurries\": [\n        \"NNS\"\n    ], \n    \"clustering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"joiners\": [\n        \"NNS\"\n    ], \n    \"Braille\": [\n        \"NNP\"\n    ], \n    \"treaty-making\": [\n        \"NN\"\n    ], \n    \"possibility\": [\n        \"NN\"\n    ], \n    \"untidiness\": [\n        \"NN\"\n    ], \n    \"KOFY-FM\": [\n        \"NNP\"\n    ], \n    \"intensely\": [\n        \"RB\"\n    ], \n    \"Aye-yah-ah-ah\": [\n        \"UH\"\n    ], \n    \"huskiness\": [\n        \"NN\"\n    ], \n    \"toned\": [\n        \"VBN\"\n    ], \n    \"Bruyette\": [\n        \"NNP\"\n    ], \n    \"Monet\": [\n        \"NNP\"\n    ], \n    \"Monex\": [\n        \"NNP\"\n    ], \n    \"Money\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thunderclaps\": [\n        \"NNS\"\n    ], \n    \"Jeffry\": [\n        \"NNP\"\n    ], \n    \"grinder\": [\n        \"NN\"\n    ], \n    \"story-book\": [\n        \"NN\"\n    ], \n    \"livable\": [\n        \"JJ\"\n    ], \n    \"Euro-pillows\": [\n        \"NNS\"\n    ], \n    \"Hovarter\": [\n        \"NNP\"\n    ], \n    \"Monel\": [\n        \"NNP\"\n    ], \n    \"famine-relief\": [\n        \"NN\"\n    ], \n    \"Sanford\": [\n        \"NNP\"\n    ], \n    \"Tailback\": [\n        \"NNP\"\n    ], \n    \"now-purged\": [\n        \"JJ\"\n    ], \n    \"Blanco\": [\n        \"NNP\"\n    ], \n    \"Conradie\": [\n        \"NNP\"\n    ], \n    \"hair-raising\": [\n        \"JJ\"\n    ], \n    \"nested\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"vote\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"nester\": [\n        \"NN\"\n    ], \n    \"Blancs\": [\n        \"NNP\"\n    ], \n    \"intermolecular\": [\n        \"JJ\"\n    ], \n    \"Benington\": [\n        \"NNP\"\n    ], \n    \"merger-related\": [\n        \"JJ\"\n    ], \n    \"phonetics\": [\n        \"NNS\"\n    ], \n    \"Franco-German\": [\n        \"NNP\"\n    ], \n    \"survivability\": [\n        \"NN\"\n    ], \n    \"Garza\": [\n        \"NNP\"\n    ], \n    \"Spagna\": [\n        \"FW\"\n    ], \n    \"Uses\": [\n        \"NNS\"\n    ], \n    \"six-lane\": [\n        \"JJ\"\n    ], \n    \"Homestake\": [\n        \"NNP\"\n    ], \n    \"Petruzzi\": [\n        \"NNP\"\n    ], \n    \"debt-servicing\": [\n        \"NN\"\n    ], \n    \"dealmakers\": [\n        \"NNS\"\n    ], \n    \"Grandson\": [\n        \"NNP\"\n    ], \n    \"white-stucco\": [\n        \"JJ\"\n    ], \n    \"Aircoa\": [\n        \"NNP\"\n    ], \n    \"Haskayne\": [\n        \"NNP\"\n    ], \n    \"boomtown\": [\n        \"NN\"\n    ], \n    \"space-rocket\": [\n        \"NN\"\n    ], \n    \"padding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"redoubled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Northwest-Skinner\": [\n        \"NNP\"\n    ], \n    \"Sept\": [\n        \"NNP\"\n    ], \n    \"offocus\": [\n        \"NN\"\n    ], \n    \"High-priced\": [\n        \"JJ\"\n    ], \n    \"Embarrassed\": [\n        \"JJ\"\n    ], \n    \"encrypting\": [\n        \"VBG\"\n    ], \n    \"exacted\": [\n        \"VBD\"\n    ], \n    \"Titan\": [\n        \"NNP\"\n    ], \n    \"non-members\": [\n        \"NNS\"\n    ], \n    \"Emmerich\": [\n        \"NNP\"\n    ], \n    \"Alejandro\": [\n        \"NNP\"\n    ], \n    \"future\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Trump-watchers\": [\n        \"NNS\"\n    ], \n    \"opens\": [\n        \"VBZ\"\n    ], \n    \"Holynskyj\": [\n        \"NNP\"\n    ], \n    \"cavalier\": [\n        \"JJ\"\n    ], \n    \"financings\": [\n        \"NNS\"\n    ], \n    \"prospect\": [\n        \"NN\"\n    ], \n    \"FLIGHT\": [\n        \"NN\"\n    ], \n    \"tasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"round-faced\": [\n        \"JJ\"\n    ], \n    \"tastes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Inquiry\": [\n        \"NNP\"\n    ], \n    \"lurking\": [\n        \"VBG\"\n    ], \n    \"dragooned\": [\n        \"VBD\"\n    ], \n    \"hand-carved\": [\n        \"JJ\"\n    ], \n    \"serials\": [\n        \"NNS\"\n    ], \n    \"sanctimonious\": [\n        \"JJ\"\n    ], \n    \"LeRoy\": [\n        \"NNP\"\n    ], \n    \"undercover\": [\n        \"JJ\"\n    ], \n    \"Aspin\": [\n        \"NNP\"\n    ], \n    \"take\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"vandals\": [\n        \"NNS\"\n    ], \n    \"convulsive\": [\n        \"JJ\"\n    ], \n    \"long-life\": [\n        \"JJ\"\n    ], \n    \"altered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Galant\": [\n        \"NNP\"\n    ], \n    \"Katutura\": [\n        \"NNP\"\n    ], \n    \"candidly\": [\n        \"RB\"\n    ], \n    \"Kerr\": [\n        \"NNP\"\n    ], \n    \"transpirating\": [\n        \"VBG\"\n    ], \n    \"Kern\": [\n        \"NNP\"\n    ], \n    \"standard-bearer\": [\n        \"NN\"\n    ], \n    \"Rogaine\": [\n        \"NNP\"\n    ], \n    \"Radames\": [\n        \"NNP\"\n    ], \n    \"Belin\": [\n        \"NNP\"\n    ], \n    \"Settled\": [\n        \"VBN\"\n    ], \n    \"Portuguese\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"enamel\": [\n        \"NN\"\n    ], \n    \"ex-convict\": [\n        \"NN\"\n    ], \n    \"French-government-owned\": [\n        \"JJ\"\n    ], \n    \"occidental\": [\n        \"JJ\"\n    ], \n    \"Mame\": [\n        \"NNP\"\n    ], \n    \"AK-47\": [\n        \"NNP\"\n    ], \n    \"Swingin\": [\n        \"NNP\"\n    ], \n    \"Strip\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"affirmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hereby\": [\n        \"RB\"\n    ], \n    \"surplus\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Kurland\": [\n        \"NNP\"\n    ], \n    \"consumption-tax\": [\n        \"NN\"\n    ], \n    \"mince\": [\n        \"VB\"\n    ], \n    \"Hamilton-Dorgan\": [\n        \"NNP\"\n    ], \n    \"LAWYER\": [\n        \"NN\"\n    ], \n    \"realists\": [\n        \"NNS\"\n    ], \n    \"unkind\": [\n        \"JJ\"\n    ], \n    \"ready-to-eat\": [\n        \"JJ\"\n    ], \n    \"robs\": [\n        \"VBZ\"\n    ], \n    \"Greek-Canadian\": [\n        \"JJ\"\n    ], \n    \"Fraga\": [\n        \"NNP\"\n    ], \n    \"ALLOWED\": [\n        \"VBD\"\n    ], \n    \"robe\": [\n        \"NN\"\n    ], \n    \"clawing\": [\n        \"VBG\"\n    ], \n    \"Real-estate\": [\n        \"NN\"\n    ], \n    \"charmed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"sweet-smelling\": [\n        \"JJ\"\n    ], \n    \"morphological\": [\n        \"JJ\"\n    ], \n    \"Lexington\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"countered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"breakfast-table\": [\n        \"NN\"\n    ], \n    \"cursing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kiowa\": [\n        \"NNP\"\n    ], \n    \"Farmingdale\": [\n        \"NNP\"\n    ], \n    \"Products\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Ta-Hu-Wa-Hu-Wai\": [\n        \"NNP\"\n    ], \n    \"Sikhs\": [\n        \"NNPS\"\n    ], \n    \"literal-minded\": [\n        \"JJ\"\n    ], \n    \"Givers\": [\n        \"NNP\"\n    ], \n    \"assimilate\": [\n        \"VB\"\n    ], \n    \"Madsen\": [\n        \"NNP\"\n    ], \n    \"neutralist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nociceptive\": [\n        \"JJ\"\n    ], \n    \"neutralism\": [\n        \"NN\"\n    ], \n    \"liable\": [\n        \"JJ\"\n    ], \n    \"Kassem\": [\n        \"NNP\"\n    ], \n    \"disparage\": [\n        \"VB\"\n    ], \n    \"surgeries\": [\n        \"NNS\"\n    ], \n    \"gout\": [\n        \"NN\"\n    ], \n    \"raged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dived\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Specifically\": [\n        \"RB\"\n    ], \n    \"cheesecloth\": [\n        \"NN\"\n    ], \n    \"BOARD\": [\n        \"NNP\"\n    ], \n    \"Goldwag\": [\n        \"NNP\"\n    ], \n    \"surgery\": [\n        \"NN\"\n    ], \n    \"Ravencroft\": [\n        \"NNP\"\n    ], \n    \"diver\": [\n        \"NN\"\n    ], \n    \"Tirello\": [\n        \"NNP\"\n    ], \n    \"rages\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"bugler\": [\n        \"NN\"\n    ], \n    \"gastrointestinal\": [\n        \"JJ\"\n    ], \n    \"thease\": [\n        \"NN\"\n    ], \n    \"Zafris\": [\n        \"NNP\"\n    ], \n    \"Librium\": [\n        \"NNP\"\n    ], \n    \"Vandenberg\": [\n        \"NNP\"\n    ], \n    \"Audiovisual\": [\n        \"NNP\"\n    ], \n    \"high-net\": [\n        \"NN\"\n    ], \n    \"discount-rate\": [\n        \"JJ\"\n    ], \n    \"vote-loser\": [\n        \"NN\"\n    ], \n    \"Mather\": [\n        \"NNP\"\n    ], \n    \"Determining\": [\n        \"VBG\"\n    ], \n    \"affecting\": [\n        \"VBG\"\n    ], \n    \"Primakov\": [\n        \"NNP\"\n    ], \n    \"Keeling\": [\n        \"NNP\"\n    ], \n    \"Bible\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Velon\": [\n        \"NNP\"\n    ], \n    \"charmer\": [\n        \"NN\"\n    ], \n    \"supermarket\": [\n        \"NN\"\n    ], \n    \"HLTs\": [\n        \"NNS\"\n    ], \n    \"rapacious\": [\n        \"JJ\"\n    ], \n    \"jovial\": [\n        \"JJ\"\n    ], \n    \"jaunts\": [\n        \"NNS\"\n    ], \n    \"hit-run\": [\n        \"NN\"\n    ], \n    \"demonetized\": [\n        \"VBN\"\n    ], \n    \"Hodgkin\": [\n        \"NNP\"\n    ], \n    \"second-worst\": [\n        \"JJ\"\n    ], \n    \"shit-sick\": [\n        \"JJ\"\n    ], \n    \"necropsy\": [\n        \"NN\"\n    ], \n    \"Citation\": [\n        \"NNP\"\n    ], \n    \"Worms\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Glynis\": [\n        \"NNP\"\n    ], \n    \"loudly\": [\n        \"RB\"\n    ], \n    \"Cornelius\": [\n        \"NNP\"\n    ], \n    \"expression\": [\n        \"NN\"\n    ], \n    \"Mollie\": [\n        \"NNP\"\n    ], \n    \"Liber\": [\n        \"NNP\"\n    ], \n    \"ants\": [\n        \"NNS\"\n    ], \n    \"homosexuality\": [\n        \"NN\"\n    ], \n    \"stereophonic\": [\n        \"JJ\"\n    ], \n    \"anti\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"Libel\": [\n        \"NNP\"\n    ], \n    \"ante\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"human-sounding\": [\n        \"JJ\"\n    ], \n    \"thick-skulled\": [\n        \"JJ\"\n    ], \n    \"contingent-fee\": [\n        \"JJ\"\n    ], \n    \"combines\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"booms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"teddy\": [\n        \"NN\"\n    ], \n    \"breath\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"combined\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"lowincome\": [\n        \"JJ\"\n    ], \n    \"Signor\": [\n        \"NNP\"\n    ], \n    \"Plus-one\": [\n        \"JJ\"\n    ], \n    \"squinted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Distressed\": [\n        \"JJ\"\n    ], \n    \"influence\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Torrence\": [\n        \"NNP\"\n    ], \n    \"sturdily\": [\n        \"RB\"\n    ], \n    \"Rotary\": [\n        \"NNP\"\n    ], \n    \"administrator\": [\n        \"NN\"\n    ], \n    \"Agatha\": [\n        \"NNP\"\n    ], \n    \"rematches\": [\n        \"NNS\"\n    ], \n    \"globally\": [\n        \"RB\"\n    ], \n    \"blowfish\": [\n        \"NN\"\n    ], \n    \"Honshu\": [\n        \"NNP\"\n    ], \n    \"shanty\": [\n        \"NN\"\n    ], \n    \"Wedd\": [\n        \"NNP\"\n    ], \n    \"disbelieve\": [\n        \"VB\"\n    ], \n    \"vote-getters\": [\n        \"NNS\"\n    ], \n    \"COMMUNICATIONS\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"newspaperman\": [\n        \"NN\"\n    ], \n    \"Doctrine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"curricula\": [\n        \"NNS\"\n    ], \n    \"girth\": [\n        \"NN\"\n    ], \n    \"malevolencies\": [\n        \"NNS\"\n    ], \n    \"brow\": [\n        \"NN\"\n    ], \n    \"Jolt\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"brok\": [\n        \"VBD\"\n    ], \n    \"M.D\": [\n        \"NNP\"\n    ], \n    \"Ilyushins\": [\n        \"NNPS\"\n    ], \n    \"three-second\": [\n        \"JJ\"\n    ], \n    \"shuts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"funds-service\": [\n        \"JJ\"\n    ], \n    \"spiraling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Trettien\": [\n        \"NNP\"\n    ], \n    \"expediently\": [\n        \"RB\"\n    ], \n    \"Rodney-Honor\": [\n        \"NNP\"\n    ], \n    \"unemployed\": [\n        \"JJ\"\n    ], \n    \"cramming\": [\n        \"VBG\"\n    ], \n    \"two-year-old\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bondholder\": [\n        \"NN\"\n    ], \n    \"unmanageably\": [\n        \"RB\"\n    ], \n    \"cheere\": [\n        \"VBP\"\n    ], \n    \"glycerolized\": [\n        \"VBN\"\n    ], \n    \"State-owned\": [\n        \"JJ\"\n    ], \n    \"Anchorage\": [\n        \"NNP\"\n    ], \n    \"carillons\": [\n        \"NNS\"\n    ], \n    \"cheers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Birtcher\": [\n        \"NNP\"\n    ], \n    \"Diagnostics\": [\n        \"NNPS\"\n    ], \n    \"unmanageable\": [\n        \"JJ\"\n    ], \n    \"cheery\": [\n        \"JJ\"\n    ], \n    \"Kirschbaum\": [\n        \"NNP\"\n    ], \n    \"Silkworms\": [\n        \"NNP\"\n    ], \n    \"escorts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"coste\": [\n        \"VB\"\n    ], \n    \"Slay\": [\n        \"VBP\"\n    ], \n    \"flocks\": [\n        \"NNS\"\n    ], \n    \"antihistamine\": [\n        \"NN\"\n    ], \n    \"sharp-rising\": [\n        \"JJ\"\n    ], \n    \"Simultaneous\": [\n        \"JJ\"\n    ], \n    \"engulfing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"genii\": [\n        \"NN\"\n    ], \n    \"bravura\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"trains\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"genie\": [\n        \"NN\"\n    ], \n    \"Soule\": [\n        \"NNP\"\n    ], \n    \"Slab\": [\n        \"NN\"\n    ], \n    \"Botswana\": [\n        \"NNP\"\n    ], \n    \"Mexicana\": [\n        \"NNP\"\n    ], \n    \"idleness\": [\n        \"NN\"\n    ], \n    \"barbecues\": [\n        \"NNS\"\n    ], \n    \"McGlothlin\": [\n        \"NNP\"\n    ], \n    \"mediumistic\": [\n        \"JJ\"\n    ], \n    \"break-down\": [\n        \"NN\"\n    ], \n    \"DISCOUNT\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Mexicans\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Daniel\": [\n        \"NNP\"\n    ], \n    \"Hurrays\": [\n        \"NNP\"\n    ], \n    \"non-binding\": [\n        \"JJ\"\n    ], \n    \"McGillivray\": [\n        \"NNP\"\n    ], \n    \"Bygdeman\": [\n        \"NNP\"\n    ], \n    \"barbecued\": [\n        \"VBN\"\n    ], \n    \"Pepper\\\\/Seven\": [\n        \"NNP\"\n    ], \n    \"blondes\": [\n        \"NNS\"\n    ], \n    \"Mullen\": [\n        \"NNP\"\n    ], \n    \"Zack\": [\n        \"NNP\"\n    ], \n    \"Zach\": [\n        \"NNP\"\n    ], \n    \"Phineoppus\": [\n        \"NNP\"\n    ], \n    \"near-left\": [\n        \"NN\"\n    ], \n    \"hereabouts\": [\n        \"RB\"\n    ], \n    \"Stirlen\": [\n        \"NNP\"\n    ], \n    \"formative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lengthens\": [\n        \"VBZ\"\n    ], \n    \"Transgenics\": [\n        \"NNP\"\n    ], \n    \"Copernicus-the-astronomer\": [\n        \"NN\"\n    ], \n    \"Muller\": [\n        \"NNP\"\n    ], \n    \"Hitchcock\": [\n        \"NNP\"\n    ], \n    \"Cuckoo\": [\n        \"NN\"\n    ], \n    \"Mona\": [\n        \"NNP\"\n    ], \n    \"unquiet\": [\n        \"JJ\"\n    ], \n    \"Korra\": [\n        \"NNP\"\n    ], \n    \"Monk\": [\n        \"NNP\"\n    ], \n    \"Drake\": [\n        \"NNP\"\n    ], \n    \"Mis-ter\": [\n        \"NNP\"\n    ], \n    \"Mont\": [\n        \"NNP\"\n    ], \n    \"Wellman\": [\n        \"NNP\"\n    ], \n    \"Mony\": [\n        \"NNP\"\n    ], \n    \"clan\": [\n        \"NN\"\n    ], \n    \"clam\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"clad\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"overhyped\": [\n        \"JJ\"\n    ], \n    \"Rabinowiczes\": [\n        \"NNPS\"\n    ], \n    \"yearly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Muammar\": [\n        \"NNP\"\n    ], \n    \"Tasuku\": [\n        \"NNP\"\n    ], \n    \"full-scale\": [\n        \"JJ\"\n    ], \n    \"clay\": [\n        \"NN\"\n    ], \n    \"claw\": [\n        \"NN\"\n    ], \n    \"Cervetto\": [\n        \"NNP\"\n    ], \n    \"clap\": [\n        \"NN\"\n    ], \n    \"sewing-machine\": [\n        \"NN\"\n    ], \n    \"Ostrager\": [\n        \"NNP\"\n    ], \n    \"winds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Brandon\": [\n        \"NNP\"\n    ], \n    \"yyyy\": [\n        \"NN\"\n    ], \n    \"all-pervading\": [\n        \"JJ\"\n    ], \n    \"endeavor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Cecchini\": [\n        \"NNP\"\n    ], \n    \"obviousness\": [\n        \"NN\"\n    ], \n    \"Piranesi\": [\n        \"NNP\"\n    ], \n    \"innoculation\": [\n        \"NN\"\n    ], \n    \"riveting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Timidly\": [\n        \"RB\"\n    ], \n    \"Bleckner\": [\n        \"NNP\"\n    ], \n    \"oblige\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"juggernaut\": [\n        \"NN\"\n    ], \n    \"Projects\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"state-provided\": [\n        \"JJ\"\n    ], \n    \"unsuccessfully\": [\n        \"RB\"\n    ], \n    \"philosophizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Concordance\": [\n        \"NN\"\n    ], \n    \"contingent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"confided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"relented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Testifying\": [\n        \"VBG\"\n    ], \n    \"Awareness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ration\": [\n        \"NN\"\n    ], \n    \"Proteins\": [\n        \"NNPS\"\n    ], \n    \"sprung\": [\n        \"VBN\"\n    ], \n    \"imminence\": [\n        \"NN\"\n    ], \n    \"confides\": [\n        \"VBZ\"\n    ], \n    \"ratios\": [\n        \"NNS\"\n    ], \n    \"standpoint\": [\n        \"NN\"\n    ], \n    \"Curzio\": [\n        \"NNP\"\n    ], \n    \"Chardonnays\": [\n        \"NNPS\"\n    ], \n    \"joyfully\": [\n        \"RB\"\n    ], \n    \"counterbids\": [\n        \"NNS\"\n    ], \n    \"fightin\": [\n        \"VBG\"\n    ], \n    \"evil-minded\": [\n        \"JJ\"\n    ], \n    \"act\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Timber\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Macchiarola\": [\n        \"NNP\"\n    ], \n    \"commercial-property\": [\n        \"NN\"\n    ], \n    \"curling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Litz\": [\n        \"NNP\"\n    ], \n    \"Advancement\": [\n        \"NNP\"\n    ], \n    \"home-furnishings\": [\n        \"NNS\"\n    ], \n    \"Eppelmann\": [\n        \"NNP\"\n    ], \n    \"Hansen\": [\n        \"NNP\"\n    ], \n    \"parties\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Lite\": [\n        \"NNP\"\n    ], \n    \"somnolent\": [\n        \"JJ\"\n    ], \n    \"Pakistani\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Lita\": [\n        \"NNP\"\n    ], \n    \"Gilhooley\": [\n        \"NNP\"\n    ], \n    \"blood-bought\": [\n        \"JJ\"\n    ], \n    \"V.E.\": [\n        \"NNP\"\n    ], \n    \"yeasts\": [\n        \"NNS\"\n    ], \n    \"Equimark\": [\n        \"NNP\"\n    ], \n    \"bobbing\": [\n        \"VBG\"\n    ], \n    \"recommends\": [\n        \"VBZ\"\n    ], \n    \"BORLAND\": [\n        \"NNP\"\n    ], \n    \"TeleVideo\": [\n        \"NNP\"\n    ], \n    \"Yanes\": [\n        \"NNP\"\n    ], \n    \"fastidious\": [\n        \"JJ\"\n    ], \n    \"lane\": [\n        \"NN\"\n    ], \n    \"McFeeley\": [\n        \"NNP\"\n    ], \n    \"cloned\": [\n        \"VBN\"\n    ], \n    \"Francais\": [\n        \"NNP\"\n    ], \n    \"Teniente\": [\n        \"NNP\"\n    ], \n    \"Guido\": [\n        \"NNP\"\n    ], \n    \"DRAM\": [\n        \"NNP\"\n    ], \n    \"Detroit-over-San\": [\n        \"JJ\"\n    ], \n    \"wickets\": [\n        \"NNS\"\n    ], \n    \"Guide\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"buying\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\", \n        \"VBG|NN\"\n    ], \n    \"rotundity\": [\n        \"NN\"\n    ], \n    \"Wrigley\": [\n        \"NNP\"\n    ], \n    \"confessions\": [\n        \"NNS\"\n    ], \n    \"algorithm\": [\n        \"NN\"\n    ], \n    \"in-law\": [\n        \"NN\"\n    ], \n    \"sales-building\": [\n        \"JJ\"\n    ], \n    \"Won\": [\n        \"NNP\"\n    ], \n    \"severally\": [\n        \"RB\"\n    ], \n    \"Close\": [\n        \"RB\", \n        \"VB\", \n        \"NNP\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"torso\": [\n        \"NN\"\n    ], \n    \"agree\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"detailed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"gone\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"carves\": [\n        \"VBZ\"\n    ], \n    \"dovish\": [\n        \"JJ\"\n    ], \n    \"Quietism\": [\n        \"NNP\"\n    ], \n    \"ag\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Seigner\": [\n        \"NNP\"\n    ], \n    \"ah\": [\n        \"UH\", \n        \"VBP\"\n    ], \n    \"am\": [\n        \"VBP\", \n        \"FW\", \n        \"RB\"\n    ], \n    \"Amiel\": [\n        \"NNP\"\n    ], \n    \"Deatherage\": [\n        \"NNP\"\n    ], \n    \"Nacional\": [\n        \"NNP\"\n    ], \n    \"as\": [\n        \"IN\", \n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Becca\": [\n        \"NNP\"\n    ], \n    \"au\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"at\": [\n        \"IN\", \n        \"VBD\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Garrisonian\": [\n        \"NN\"\n    ], \n    \"ax\": [\n        \"NN\"\n    ], \n    \"marine-transport\": [\n        \"NN\"\n    ], \n    \"Quietist\": [\n        \"NNP\"\n    ], \n    \"carven\": [\n        \"VBN\"\n    ], \n    \"Serve-Air\": [\n        \"NNP\"\n    ], \n    \"self-referential\": [\n        \"JJ\"\n    ], \n    \"prosceniums\": [\n        \"NNS\"\n    ], \n    \"oilcloth\": [\n        \"NN\"\n    ], \n    \"Salamander\": [\n        \"NNP\"\n    ], \n    \"Machos\": [\n        \"FW\"\n    ], \n    \"Simpsons\": [\n        \"NNPS\"\n    ], \n    \"Machon\": [\n        \"NNP\"\n    ], \n    \"gunboats\": [\n        \"NNS\"\n    ], \n    \"Birenbaum\": [\n        \"NNP\"\n    ], \n    \"spatial\": [\n        \"JJ\"\n    ], \n    \"jell\": [\n        \"VB\"\n    ], \n    \"contemporaries\": [\n        \"NNS\"\n    ], \n    \"bizarrely\": [\n        \"RB\"\n    ], \n    \"IBRD\": [\n        \"NNP\"\n    ], \n    \"unrefrigerated\": [\n        \"JJ\"\n    ], \n    \"fluorinated\": [\n        \"VBN\"\n    ], \n    \"annex\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Maier\": [\n        \"NNP\"\n    ], \n    \"slant\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"a.\": [\n        \"NN\"\n    ], \n    \"herbs\": [\n        \"NNS\"\n    ], \n    \"middling\": [\n        \"JJ\"\n    ], \n    \"Pekin\": [\n        \"NNP\"\n    ], \n    \"PROFITT\": [\n        \"NNP\"\n    ], \n    \"Sabol\": [\n        \"NNP\"\n    ], \n    \"mite-box\": [\n        \"NN\"\n    ], \n    \"Explanations\": [\n        \"NNS\"\n    ], \n    \"PROFITS\": [\n        \"NNS\"\n    ], \n    \"Retin-A\": [\n        \"NNP\"\n    ], \n    \"Vicar\": [\n        \"NNP\"\n    ], \n    \"dogleg\": [\n        \"NN\"\n    ], \n    \"police-community\": [\n        \"JJ\"\n    ], \n    \"padlock\": [\n        \"NN\"\n    ], \n    \"Absorbing\": [\n        \"VBG\"\n    ], \n    \"Twiggy\": [\n        \"NNP\"\n    ], \n    \"mimic\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cps\": [\n        \"NNS\"\n    ], \n    \"Vical\": [\n        \"NNP\"\n    ], \n    \"cpu\": [\n        \"NN\"\n    ], \n    \"overeager\": [\n        \"JJ\"\n    ], \n    \"Canada\": [\n        \"NNP\"\n    ], \n    \"externally\": [\n        \"RB\"\n    ], \n    \"instincts\": [\n        \"NNS\"\n    ], \n    \"asteroids\": [\n        \"NNS\"\n    ], \n    \"ex-Beecham\": [\n        \"JJ\"\n    ], \n    \"Currier\": [\n        \"NNP\"\n    ], \n    \"Amdahl\": [\n        \"NNP\"\n    ], \n    \"sugar-using\": [\n        \"JJ\"\n    ], \n    \"upkeep\": [\n        \"NN\"\n    ], \n    \"fairness\": [\n        \"NN\"\n    ], \n    \"revolting\": [\n        \"JJ\"\n    ], \n    \"Mateyo\": [\n        \"NNP\"\n    ], \n    \"Wickhams\": [\n        \"NNP\"\n    ], \n    \"caveats\": [\n        \"NNS\"\n    ], \n    \"disciples\": [\n        \"NNS\"\n    ], \n    \"pornographic\": [\n        \"JJ\"\n    ], \n    \"Early-morning\": [\n        \"JJ\"\n    ], \n    \"champions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"piddling\": [\n        \"JJ\"\n    ], \n    \"co-signed\": [\n        \"JJ\"\n    ], \n    \"dressing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Precious\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"well-cut\": [\n        \"JJ\"\n    ], \n    \"splashing\": [\n        \"VBG\"\n    ], \n    \"state-produced\": [\n        \"JJ\"\n    ], \n    \"compromising\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"gemlike\": [\n        \"JJ\"\n    ], \n    \"fullbacking\": [\n        \"VBG\"\n    ], \n    \"Severence\": [\n        \"NNP\"\n    ], \n    \"self-experimentation\": [\n        \"NN\"\n    ], \n    \"purpose...\": [\n        \":\"\n    ], \n    \"Kweisi\": [\n        \"NNP\"\n    ], \n    \"manageable\": [\n        \"JJ\"\n    ], \n    \"price-moving\": [\n        \"JJ\"\n    ], \n    \"Cockburn\": [\n        \"NNP\"\n    ], \n    \"`\": [\n        \"``\"\n    ], \n    \"Noam\": [\n        \"NNP\"\n    ], \n    \"Noah\": [\n        \"NNP\"\n    ], \n    \"accompanying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"DELAYED\": [\n        \"VBN\"\n    ], \n    \"underclothes\": [\n        \"NNS\"\n    ], \n    \"dinosaur\": [\n        \"NN\"\n    ], \n    \"scrapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Darrell\": [\n        \"NNP\"\n    ], \n    \"program-driven\": [\n        \"JJ\"\n    ], \n    \"Chiat\\\\\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Powless\": [\n        \"NNP\"\n    ], \n    \"humongous\": [\n        \"JJ\"\n    ], \n    \"antibiotic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pretenses\": [\n        \"NNS\"\n    ], \n    \"two-class\": [\n        \"JJ\"\n    ], \n    \"Nordmann\": [\n        \"NNP\"\n    ], \n    \"fill-ins\": [\n        \"NNS\"\n    ], \n    \"nation-state\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Dilly\": [\n        \"NNP\"\n    ], \n    \"Arlin\": [\n        \"NNP\"\n    ], \n    \"flashback\": [\n        \"NN\"\n    ], \n    \"Immaculate\": [\n        \"NNP\"\n    ], \n    \"prime-1\": [\n        \"NN\"\n    ], \n    \"one-drug\": [\n        \"JJ\"\n    ], \n    \"poisonous\": [\n        \"JJ\"\n    ], \n    \"burgundy\": [\n        \"NN\"\n    ], \n    \"Safari\": [\n        \"NNP\"\n    ], \n    \"non-medical\": [\n        \"JJ\"\n    ], \n    \"avenues\": [\n        \"NNS\"\n    ], \n    \"super-user\": [\n        \"NN\"\n    ], \n    \"celluloses\": [\n        \"NNS\"\n    ], \n    \"Patronage\": [\n        \"NN\"\n    ], \n    \"Bureaus\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"installations\": [\n        \"NNS\"\n    ], \n    \"Deminex\": [\n        \"NNP\"\n    ], \n    \"re-examines\": [\n        \"VBZ\"\n    ], \n    \"electronic-bomb\": [\n        \"NN\"\n    ], \n    \"pidgin\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"DALIS\": [\n        \"NNPS\"\n    ], \n    \"Fireside\\\\/Simon\": [\n        \"NNP\"\n    ], \n    \"dreamlessly\": [\n        \"RB\"\n    ], \n    \"non-performing\": [\n        \"JJ\"\n    ], \n    \"dramatist\": [\n        \"NN\"\n    ], \n    \"backlash\": [\n        \"NN\"\n    ], \n    \"squashy\": [\n        \"JJ\"\n    ], \n    \"mudslinging\": [\n        \"NN\"\n    ], \n    \"Planet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ultra-safe\": [\n        \"JJ\"\n    ], \n    \"Westendorf\": [\n        \"NNP\"\n    ], \n    \"L-1011\": [\n        \"NNP\"\n    ], \n    \"Zurich\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Totaling\": [\n        \"VBG\"\n    ], \n    \"compliance\": [\n        \"NN\"\n    ], \n    \"Litowski\": [\n        \"NNP\"\n    ], \n    \"interconnected\": [\n        \"VBN\"\n    ], \n    \"atelier\": [\n        \"NN\"\n    ], \n    \"Richardson-Smith\": [\n        \"NNP\"\n    ], \n    \"cap-and-ball\": [\n        \"JJ\"\n    ], \n    \"gunfights\": [\n        \"NNS\"\n    ], \n    \"brimmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lytton\": [\n        \"NNP\"\n    ], \n    \"Astarte\": [\n        \"NNP\"\n    ], \n    \"Auf\": [\n        \"NNP\"\n    ], \n    \"filial\": [\n        \"JJ\"\n    ], \n    \"Sleepy-eyed\": [\n        \"JJ\"\n    ], \n    \"Aul\": [\n        \"NNP\"\n    ], \n    \"Cotty\": [\n        \"NNP\"\n    ], \n    \"conspiratorial\": [\n        \"JJ\"\n    ], \n    \"Pouilly-Fuisse\": [\n        \"NNP\"\n    ], \n    \"worry-free\": [\n        \"JJ\"\n    ], \n    \"intermediate-range\": [\n        \"JJ\"\n    ], \n    \"unbleached\": [\n        \"JJ\"\n    ], \n    \"Elements\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Optimists\": [\n        \"NNS\"\n    ], \n    \"Peat\": [\n        \"NNP\"\n    ], \n    \"mothers-in-law\": [\n        \"NNS\"\n    ], \n    \"bigness\": [\n        \"NN\"\n    ], \n    \"AMDAHL\": [\n        \"NNP\"\n    ], \n    \"Peal\": [\n        \"NNP\"\n    ], \n    \"Peak\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Scratchard\": [\n        \"NNP\"\n    ], \n    \"Meaningful\": [\n        \"JJ\"\n    ], \n    \"Financing\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Canoga\": [\n        \"NNP\"\n    ], \n    \"contrive\": [\n        \"VB\"\n    ], \n    \"Philippines\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Humble\": [\n        \"NNP\"\n    ], \n    \"spoils\": [\n        \"NNS\"\n    ], \n    \"LaFalce\": [\n        \"NNP\"\n    ], \n    \"Slick\": [\n        \"JJ\"\n    ], \n    \"expansively\": [\n        \"RB\"\n    ], \n    \"riverbank\": [\n        \"NN\"\n    ], \n    \"DIOCS\": [\n        \"NN\"\n    ], \n    \"delphic\": [\n        \"JJ\"\n    ], \n    \"evolves\": [\n        \"VBZ\"\n    ], \n    \"Carltons\": [\n        \"NNPS\"\n    ], \n    \"chisel\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Coney\": [\n        \"NNP\"\n    ], \n    \"indicating\": [\n        \"VBG\"\n    ], \n    \"evolved\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Compelled\": [\n        \"VBN\"\n    ], \n    \"beautiful\": [\n        \"JJ\"\n    ], \n    \"Denton\": [\n        \"NNP\"\n    ], \n    \"impacts\": [\n        \"NNS\"\n    ], \n    \"stated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rustled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"dislikes\": [\n        \"VBZ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"moon\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"accept\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"autumn\": [\n        \"NN\"\n    ], \n    \"Laban\": [\n        \"NNP\"\n    ], \n    \"Venezuelan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"rustler\": [\n        \"NN\"\n    ], \n    \"elaborately\": [\n        \"RB\"\n    ], \n    \"McCulley\": [\n        \"NNP\"\n    ], \n    \"faster-spending\": [\n        \"JJ\"\n    ], \n    \"equities\": [\n        \"NNS\"\n    ], \n    \"Fulham\": [\n        \"NNP\"\n    ], \n    \"earnings\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"cling\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Maquila\": [\n        \"NN\"\n    ], \n    \"telegraphic\": [\n        \"JJ\"\n    ], \n    \"Hanover\": [\n        \"NNP\"\n    ], \n    \"Correspondence\": [\n        \"NN\"\n    ], \n    \"BancOklahoma\": [\n        \"NNP\"\n    ], \n    \"expense-account\": [\n        \"NN\"\n    ], \n    \"Bracken\": [\n        \"NNP\"\n    ], \n    \"Ditka\": [\n        \"NNP\"\n    ], \n    \"Maxentius\": [\n        \"NNP\"\n    ], \n    \"re-evaluating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"haggardly\": [\n        \"RB\"\n    ], \n    \"backyard\": [\n        \"NN\"\n    ], \n    \"Yastrow\": [\n        \"NNP\"\n    ], \n    \"unhesitant\": [\n        \"JJ\"\n    ], \n    \"summarization\": [\n        \"NN\"\n    ], \n    \"debility\": [\n        \"NN\"\n    ], \n    \"Authority-Garden\": [\n        \"NNP\"\n    ], \n    \"MANUFACTURERS\": [\n        \"NNPS\"\n    ], \n    \"hauling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Beowulf\": [\n        \"NNP\"\n    ], \n    \"chemistries\": [\n        \"NNS\"\n    ], \n    \"pre-historic\": [\n        \"JJ\"\n    ], \n    \"marine-research\": [\n        \"NN\"\n    ], \n    \"pans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"veridical\": [\n        \"JJ\"\n    ], \n    \"pant\": [\n        \"NN\"\n    ], \n    \"Nana\": [\n        \"NNP\"\n    ], \n    \"pany\": [\n        \"NN\"\n    ], \n    \"MICRO\": [\n        \"NNP\"\n    ], \n    \"sinning\": [\n        \"NN\"\n    ], \n    \"pane\": [\n        \"NN\"\n    ], \n    \"Scofield\": [\n        \"NNP\"\n    ], \n    \"Seasonings\": [\n        \"NNPS\"\n    ], \n    \"Nkrumah\": [\n        \"NNP\"\n    ], \n    \"Alter\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Abbie\": [\n        \"NNP\"\n    ], \n    \"Collateral\": [\n        \"NN\"\n    ], \n    \"Seifert\": [\n        \"NNP\"\n    ], \n    \"Llewellyn\": [\n        \"NNP\"\n    ], \n    \"debilitated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"decision-maker\": [\n        \"NN\"\n    ], \n    \"deeds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"urbanization\": [\n        \"NN\"\n    ], \n    \"MD11\": [\n        \"NNP\"\n    ], \n    \"ocean-shipping\": [\n        \"NN\"\n    ], \n    \"hysterectomy\": [\n        \"NN\"\n    ], \n    \"nonparticulate\": [\n        \"NN\"\n    ], \n    \"rigids\": [\n        \"NNS\"\n    ], \n    \"VandenBerg\": [\n        \"NNP\"\n    ], \n    \"lineback\": [\n        \"NN\"\n    ], \n    \"consign\": [\n        \"VB\"\n    ], \n    \"iridescent\": [\n        \"JJ\"\n    ], \n    \"Experimentally\": [\n        \"RB\"\n    ], \n    \"Gerhard\": [\n        \"NNP\"\n    ], \n    \"Creative\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Partnerships\": [\n        \"NNS\"\n    ], \n    \"Alcibiades\": [\n        \"NNP\"\n    ], \n    \"be-thonged\": [\n        \"JJ\"\n    ], \n    \"judgeships\": [\n        \"NNS\"\n    ], \n    \"real-estate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Menet\": [\n        \"NNP\"\n    ], \n    \"Newton\": [\n        \"NNP\"\n    ], \n    \"truths\": [\n        \"NNS\"\n    ], \n    \"impugning\": [\n        \"VBG\"\n    ], \n    \"Pole\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"plurality\": [\n        \"NN\"\n    ], \n    \"Thanks\": [\n        \"NNS\", \n        \"UH\"\n    ], \n    \"Pola\": [\n        \"NNP\"\n    ], \n    \"Polo\": [\n        \"NNP\"\n    ], \n    \"recovery-program\": [\n        \"NN\"\n    ], \n    \"Poll\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Polk\": [\n        \"NNP\"\n    ], \n    \"fee-related\": [\n        \"JJ\"\n    ], \n    \"Menem\": [\n        \"NNP\"\n    ], \n    \"transforming\": [\n        \"VBG\"\n    ], \n    \"bends\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"catalogues\": [\n        \"NNS\"\n    ], \n    \"Dactyls\": [\n        \"NNPS\"\n    ], \n    \"Balenciaga\": [\n        \"NNP\"\n    ], \n    \"exorbitant\": [\n        \"JJ\"\n    ], \n    \"Setting\": [\n        \"VBG\"\n    ], \n    \"fewer\": [\n        \"JJR\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"Peoples\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mon-Fay\": [\n        \"NNP\"\n    ], \n    \"catalogued\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"takeing\": [\n        \"VBG\"\n    ], \n    \"BMC\": [\n        \"NNP\"\n    ], \n    \"BMA\": [\n        \"NNP\"\n    ], \n    \"BMI\": [\n        \"NNP\"\n    ], \n    \"mattered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pea-green\": [\n        \"JJ\"\n    ], \n    \"BMP\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"goitrogen\": [\n        \"NN\"\n    ], \n    \"BMW\": [\n        \"NNP\"\n    ], \n    \"BMT\": [\n        \"NNP\"\n    ], \n    \"TREND-SETTER\": [\n        \"NN\"\n    ], \n    \"expiation\": [\n        \"NN\"\n    ], \n    \"Railroad\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Beckstrom\": [\n        \"NNP\"\n    ], \n    \"Folding\": [\n        \"VBG\"\n    ], \n    \"free-spending\": [\n        \"JJ\"\n    ], \n    \"drifting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"porcelain\": [\n        \"NN\"\n    ], \n    \"disheveled\": [\n        \"JJ\"\n    ], \n    \"Burgundies\": [\n        \"NNPS\"\n    ], \n    \"paucity\": [\n        \"NN\"\n    ], \n    \"pitfalls\": [\n        \"NNS\"\n    ], \n    \"proxy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"imagine\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Nonprofit\": [\n        \"JJ\"\n    ], \n    \"reproach\": [\n        \"NN\"\n    ], \n    \"Hispanic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"uplands\": [\n        \"NNS\"\n    ], \n    \"chlorothiazide\": [\n        \"NN\"\n    ], \n    \"positioning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Allotments\": [\n        \"NNS\"\n    ], \n    \"instigation\": [\n        \"NN\"\n    ], \n    \"bookies\": [\n        \"NNS\"\n    ], \n    \"Spanos\": [\n        \"NNP\"\n    ], \n    \"conductors\": [\n        \"NNS\"\n    ], \n    \"Doran\": [\n        \"NNP\"\n    ], \n    \"redeemded\": [\n        \"VBN\"\n    ], \n    \"Tabacs\": [\n        \"NNP\"\n    ], \n    \"waspishly\": [\n        \"RB\"\n    ], \n    \"corrugated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"vowel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"protectionist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"thereafter\": [\n        \"RB\"\n    ], \n    \"preordainment\": [\n        \"NN\"\n    ], \n    \"slipper\": [\n        \"NN\"\n    ], \n    \"Services\\\\/Japan\": [\n        \"NNP\"\n    ], \n    \"Kinnett\": [\n        \"NNP\"\n    ], \n    \"Kagan\": [\n        \"NNP\"\n    ], \n    \"SMALL\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Treiger\": [\n        \"NNP\"\n    ], \n    \"Isham\": [\n        \"NNP\"\n    ], \n    \"protectionism\": [\n        \"NN\"\n    ], \n    \"intervention...\": [\n        \":\"\n    ], \n    \"unexplained\": [\n        \"JJ\"\n    ], \n    \"tadpoles\": [\n        \"NNS\"\n    ], \n    \"Courier\": [\n        \"NNP\"\n    ], \n    \"Hualien\": [\n        \"NNP\"\n    ], \n    \"Helmet\": [\n        \"NN\"\n    ], \n    \"erupted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mathavious\": [\n        \"NNP\"\n    ], \n    \"tangency\": [\n        \"NN\"\n    ], \n    \"crisscrossed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"sympathies\": [\n        \"NNS\"\n    ], \n    \"Doubts\": [\n        \"NNS\"\n    ], \n    \"relationship\": [\n        \"NN\"\n    ], \n    \"eucalyptus\": [\n        \"NN\"\n    ], \n    \"soft-drinks\": [\n        \"NNS\"\n    ], \n    \"immediate\": [\n        \"JJ\"\n    ], \n    \"credit-market\": [\n        \"JJ\"\n    ], \n    \"mishap\": [\n        \"NN\"\n    ], \n    \"consult\": [\n        \"VB\"\n    ], \n    \"focusing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unprofitable\": [\n        \"JJ\"\n    ], \n    \"observatory\": [\n        \"NN\"\n    ], \n    \"Equator\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jean-Pascal\": [\n        \"NNP\"\n    ], \n    \"professoriate\": [\n        \"NN\"\n    ], \n    \"computer-guided\": [\n        \"JJ\"\n    ], \n    \"Inhouse\": [\n        \"JJ\"\n    ], \n    \"drawled\": [\n        \"VBD\"\n    ], \n    \"PegaSys\": [\n        \"NNP\"\n    ], \n    \"Migs\": [\n        \"NNS\"\n    ], \n    \"lovelorn\": [\n        \"JJ\"\n    ], \n    \"less-influential\": [\n        \"JJ\"\n    ], \n    \"revelling\": [\n        \"VBG\"\n    ], \n    \"carrier-current\": [\n        \"JJ\"\n    ], \n    \"Sanjiv\": [\n        \"NNP\"\n    ], \n    \"refrigerators\": [\n        \"NNS\"\n    ], \n    \"fights\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"well-developed\": [\n        \"JJ\"\n    ], \n    \"Donnay\": [\n        \"NNP\"\n    ], \n    \"Adverse\": [\n        \"JJ\"\n    ], \n    \"Donnan\": [\n        \"NNP\"\n    ], \n    \"Loevner\": [\n        \"NNP\"\n    ], \n    \"more-senior\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"ballerina\": [\n        \"NN\"\n    ], \n    \"honeybees\": [\n        \"NNS\"\n    ], \n    \"Kyoto\": [\n        \"NNP\"\n    ], \n    \"trowel\": [\n        \"NN\"\n    ], \n    \"Makwah\": [\n        \"NNP\"\n    ], \n    \"equaled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"analogy\": [\n        \"NN\"\n    ], \n    \"chest-back-lat-shoulder\": [\n        \"JJ\"\n    ], \n    \"MacKinnon\": [\n        \"NNP\"\n    ], \n    \"fellers\": [\n        \"NNS\"\n    ], \n    \"civil-investigative\": [\n        \"JJ\"\n    ], \n    \"effecting\": [\n        \"VBG\"\n    ], \n    \"benefit-plan\": [\n        \"JJ\"\n    ], \n    \"Prentice-Hall\": [\n        \"NNP\"\n    ], \n    \"viscoelasticity\": [\n        \"NN\"\n    ], \n    \"high-rate\": [\n        \"JJ\"\n    ], \n    \"funnier\": [\n        \"JJR\"\n    ], \n    \"Tanzi\": [\n        \"NNP\"\n    ], \n    \"Lysol\": [\n        \"NNP\"\n    ], \n    \"tokens\": [\n        \"NNS\"\n    ], \n    \"unequal\": [\n        \"JJ\"\n    ], \n    \"Tomsho\": [\n        \"NNP\"\n    ], \n    \"covet\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cover\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"coves\": [\n        \"NNS\"\n    ], \n    \"low-stress\": [\n        \"JJ\"\n    ], \n    \"autofluorescence\": [\n        \"NN\"\n    ], \n    \"Fauntroy\": [\n        \"NNP\"\n    ], \n    \"Physicochemical\": [\n        \"JJ\"\n    ], \n    \"Swirsky\": [\n        \"NNP\"\n    ], \n    \"Singing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"fiscal-fourth\": [\n        \"JJ\"\n    ], \n    \"trip-hammer\": [\n        \"NN\"\n    ], \n    \"notebook-size\": [\n        \"JJ\"\n    ], \n    \"Burnsville\": [\n        \"NNP\"\n    ], \n    \"Kidnaper\": [\n        \"NN\"\n    ], \n    \"Gridley\": [\n        \"NNP\"\n    ], \n    \"aghast\": [\n        \"JJ\"\n    ], \n    \"Mail-Order\": [\n        \"JJ\"\n    ], \n    \"well-endowed\": [\n        \"JJ\"\n    ], \n    \"Soviet-American\": [\n        \"JJ\"\n    ], \n    \"Melloan\": [\n        \"NNP\"\n    ], \n    \"Hajime\": [\n        \"NNP\"\n    ], \n    \"AIDS-like\": [\n        \"JJ\"\n    ], \n    \"electronic-quote\": [\n        \"NN\"\n    ], \n    \"SCUD\": [\n        \"NNP\"\n    ], \n    \"condos\": [\n        \"NNS\"\n    ], \n    \"undying\": [\n        \"JJ\"\n    ], \n    \"Istvan\": [\n        \"NNP\"\n    ], \n    \"Tagamet\": [\n        \"NNP\"\n    ], \n    \"Lodestar\": [\n        \"NNP\"\n    ], \n    \"bastion\": [\n        \"NN\"\n    ], \n    \"T.B.\": [\n        \"NNP\"\n    ], \n    \"alloted\": [\n        \"VBN\"\n    ], \n    \"Broomfield\": [\n        \"NNP\"\n    ], \n    \"Oddy\": [\n        \"NNP\"\n    ], \n    \"Masters\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"magicians\": [\n        \"NNS\"\n    ], \n    \"Stouffer\": [\n        \"NNP\"\n    ], \n    \"gratis\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Point-Pepperell\": [\n        \"NNP\"\n    ], \n    \"Odds\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"eies\": [\n        \"NNS\"\n    ], \n    \"upholstery\": [\n        \"NN\"\n    ], \n    \"Dana-Farber\": [\n        \"NNP\"\n    ], \n    \"Heikes\": [\n        \"NNP\"\n    ], \n    \"Yaaba\": [\n        \"NNP\"\n    ], \n    \"Pereira\": [\n        \"NNP\"\n    ], \n    \"Minutes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"dustin\": [\n        \"VBG\"\n    ], \n    \"Tator\": [\n        \"NNP\"\n    ], \n    \"tumors\": [\n        \"NNS\"\n    ], \n    \"demeanors\": [\n        \"NNS\"\n    ], \n    \"low-fat\": [\n        \"JJ\"\n    ], \n    \"obscure\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"sew\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"dryin\": [\n        \"VBG\"\n    ], \n    \"seq\": [\n        \"NN\"\n    ], \n    \"overwhelm\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fox\": [\n        \"NNP\"\n    ], \n    \"Foy\": [\n        \"NNP\"\n    ], \n    \"sex\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Foe\": [\n        \"NNP\"\n    ], \n    \"see\": [\n        \"VB\", \n        \"UH\", \n        \"VBP\"\n    ], \n    \"Fog\": [\n        \"NN\"\n    ], \n    \"unsheltered\": [\n        \"JJ\"\n    ], \n    \"migration\": [\n        \"NN\"\n    ], \n    \"sea\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Stedt\": [\n        \"NNP\"\n    ], \n    \"Umm\": [\n        \"UH\"\n    ], \n    \"institutes\": [\n        \"NN\"\n    ], \n    \"Westbound\": [\n        \"NNP\"\n    ], \n    \"Calabria\": [\n        \"NNP\"\n    ], \n    \"bone-marrow\": [\n        \"NN\"\n    ], \n    \"vitamins\": [\n        \"NNS\"\n    ], \n    \"Yale-New\": [\n        \"NNP\"\n    ], \n    \"unmarketable\": [\n        \"JJ\"\n    ], \n    \"topmost\": [\n        \"JJ\"\n    ], \n    \"avuncular\": [\n        \"JJ\"\n    ], \n    \"Belinda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ungaretti\": [\n        \"NNP\"\n    ], \n    \"Rebounding\": [\n        \"VBG\"\n    ], \n    \"Pocketing\": [\n        \"VBG\"\n    ], \n    \"ego-adaptive\": [\n        \"JJ\"\n    ], \n    \"embargoes\": [\n        \"NNS\"\n    ], \n    \"Dmitri\": [\n        \"NNP\"\n    ], \n    \"redesigning\": [\n        \"VBG\"\n    ], \n    \"Serves\": [\n        \"VBZ\"\n    ], \n    \"hooted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"shortlived\": [\n        \"JJ\"\n    ], \n    \"Served\": [\n        \"VBN\"\n    ], \n    \"pagan\": [\n        \"JJ\"\n    ], \n    \"embargoed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kaskaskia\": [\n        \"NNP\"\n    ], \n    \"Nortek\": [\n        \"NNP\"\n    ], \n    \"RETIREMENT\": [\n        \"NNP\"\n    ], \n    \"Goldscheider\": [\n        \"NNP\"\n    ], \n    \"fifty-year\": [\n        \"JJ\"\n    ], \n    \"repainted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"scams\": [\n        \"NNS\"\n    ], \n    \"Halloran\": [\n        \"NNP\"\n    ], \n    \"long-term\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"NNS\"\n    ], \n    \"Nortex\": [\n        \"NNP\"\n    ], \n    \"volcanic\": [\n        \"JJ\"\n    ], \n    \"electrician\": [\n        \"NN\"\n    ], \n    \"Spectator\": [\n        \"NNP\"\n    ], \n    \"drunk\": [\n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"underwent\": [\n        \"VBD\"\n    ], \n    \"Ephlin\": [\n        \"NNP\"\n    ], \n    \"forklift\": [\n        \"NN\"\n    ], \n    \"USGA\": [\n        \"NNP\"\n    ], \n    \"triservice\": [\n        \"NN\"\n    ], \n    \"community\": [\n        \"NN\"\n    ], \n    \"hollow\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"agents\": [\n        \"NNS\"\n    ], \n    \"BREWERS\": [\n        \"NNS\"\n    ], \n    \"creeds\": [\n        \"NNS\"\n    ], \n    \"underlay\": [\n        \"VBP\"\n    ], \n    \"runups\": [\n        \"NNS\"\n    ], \n    \"worthless\": [\n        \"JJ\"\n    ], \n    \"vehemently\": [\n        \"RB\"\n    ], \n    \"numinous\": [\n        \"JJ\"\n    ], \n    \"APPLE\": [\n        \"NNP\"\n    ], \n    \"Trail\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"A321s\": [\n        \"NNS\"\n    ], \n    \"scions\": [\n        \"NNS\"\n    ], \n    \"McBride\": [\n        \"NNP\"\n    ], \n    \"flounced\": [\n        \"VBN\"\n    ], \n    \"self-deceived\": [\n        \"JJ\"\n    ], \n    \"semi-public\": [\n        \"JJ\"\n    ], \n    \"Burwell\": [\n        \"NNP\"\n    ], \n    \"Waseda\": [\n        \"NNP\"\n    ], \n    \"repayments\": [\n        \"NNS\"\n    ], \n    \"then-21\": [\n        \"JJ\"\n    ], \n    \"towne\": [\n        \"NN\"\n    ], \n    \"fund\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"McRoberts\": [\n        \"NNP\"\n    ], \n    \"vortex\": [\n        \"NN\"\n    ], \n    \"Ninja\": [\n        \"NNP\"\n    ], \n    \"womanizing\": [\n        \"VBG\"\n    ], \n    \"insiders\": [\n        \"NNS\"\n    ], \n    \"towns\": [\n        \"NNS\"\n    ], \n    \"ligands\": [\n        \"NNS\"\n    ], \n    \"Standard-issue\": [\n        \"JJ\"\n    ], \n    \"tweaked\": [\n        \"VBD\"\n    ], \n    \"Dallara\": [\n        \"NNP\"\n    ], \n    \"judicial\": [\n        \"JJ\"\n    ], \n    \"Duplicating\": [\n        \"VBG\"\n    ], \n    \"sesame\": [\n        \"NN\"\n    ], \n    \"Fighters\": [\n        \"NNP\"\n    ], \n    \"sociality\": [\n        \"NN\"\n    ], \n    \"redounds\": [\n        \"VBZ\"\n    ], \n    \"Measure\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"front-loaded\": [\n        \"JJ\"\n    ], \n    \"Keschl\": [\n        \"NNP\"\n    ], \n    \"road-crossing\": [\n        \"NN\"\n    ], \n    \"owed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Hubermann\": [\n        \"NNP\"\n    ], \n    \"Hartzog\": [\n        \"NNP\"\n    ], \n    \"owes\": [\n        \"VBZ\"\n    ], \n    \"mediating\": [\n        \"VBG\"\n    ], \n    \"decor\": [\n        \"NN\"\n    ], \n    \"Ayres\": [\n        \"NNP\"\n    ], \n    \"volume-based\": [\n        \"JJ\"\n    ], \n    \"decoy\": [\n        \"NN\"\n    ], \n    \"two-color\": [\n        \"JJ\"\n    ], \n    \"Morelli\": [\n        \"NNP\"\n    ], \n    \"ingot\": [\n        \"NN\"\n    ], \n    \"voraciously\": [\n        \"RB\"\n    ], \n    \"Jocelyn\": [\n        \"NNP\"\n    ], \n    \"Apergillus\": [\n        \"NN\"\n    ], \n    \"monasticism\": [\n        \"NN\"\n    ], \n    \"doan\": [\n        \"VBP\"\n    ], \n    \"levels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dollar-and-cents\": [\n        \"JJ\"\n    ], \n    \"Raleigh\": [\n        \"NNP\"\n    ], \n    \"Expands\": [\n        \"VBZ\"\n    ], \n    \"oddest\": [\n        \"JJS\"\n    ], \n    \"Cameo\": [\n        \"NNP\"\n    ], \n    \"Camel\": [\n        \"NNP\"\n    ], \n    \"Woodbridge\": [\n        \"NNP\"\n    ], \n    \"upland\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Rate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"regulating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Nastro\": [\n        \"NNP\"\n    ], \n    \"Uxbridge\": [\n        \"NNP\"\n    ], \n    \"Resourceful\": [\n        \"JJ\"\n    ], \n    \"Rath\": [\n        \"NNP\"\n    ], \n    \"Segal\": [\n        \"NNP\"\n    ], \n    \"red-haired\": [\n        \"JJ\"\n    ], \n    \"hypothesized\": [\n        \"VBN\"\n    ], \n    \"militiamen\": [\n        \"NNS\"\n    ], \n    \"Alabamans\": [\n        \"NNS\"\n    ], \n    \"rumbling\": [\n        \"VBG\"\n    ], \n    \"LAYOFFS\": [\n        \"NNS\"\n    ], \n    \"Segar\": [\n        \"NNP\"\n    ], \n    \"contradicting\": [\n        \"VBG\"\n    ], \n    \"relevancy\": [\n        \"NN\"\n    ], \n    \"dissociation\": [\n        \"NN\"\n    ], \n    \"interregnum\": [\n        \"NN\"\n    ], \n    \"Rahway\": [\n        \"NNP\"\n    ], \n    \"sweet-shrub\": [\n        \"NN\"\n    ], \n    \"VCOR\": [\n        \"NNP\"\n    ], \n    \"Varian\": [\n        \"NNP\"\n    ], \n    \"ellipsoids\": [\n        \"NNS\"\n    ], \n    \"location\": [\n        \"NN\"\n    ], \n    \"DM850-a-month\": [\n        \"JJ\"\n    ], \n    \"billable\": [\n        \"JJ\"\n    ], \n    \"relevance\": [\n        \"NN\"\n    ], \n    \"Fukuoka\": [\n        \"NNP\"\n    ], \n    \"Shartzer\": [\n        \"NNP\"\n    ], \n    \"victims\": [\n        \"NNS\"\n    ], \n    \"Frenchwoman\": [\n        \"NNP\"\n    ], \n    \"rigatoni\": [\n        \"NN\"\n    ], \n    \"Merhige\": [\n        \"NNP\"\n    ], \n    \"instructors\": [\n        \"NNS\"\n    ], \n    \"Vermejo\": [\n        \"NNP\"\n    ], \n    \"deflationist\": [\n        \"NN\"\n    ], \n    \"Duffus\": [\n        \"NNP\"\n    ], \n    \"integrated-steel\": [\n        \"NN\"\n    ], \n    \"contraptions\": [\n        \"NNS\"\n    ], \n    \"Aransas\": [\n        \"NNP\"\n    ], \n    \"governess\": [\n        \"NN\"\n    ], \n    \"criminal-defense\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"amicably\": [\n        \"RB\"\n    ], \n    \"Dams\": [\n        \"NNS\"\n    ], \n    \"Damp\": [\n        \"JJ\"\n    ], \n    \"DES\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Yamatake\": [\n        \"NNP\"\n    ], \n    \"Damn\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"sight\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"nostrums\": [\n        \"NNS\"\n    ], \n    \"DEA\": [\n        \"NNP\"\n    ], \n    \"DEC\": [\n        \"NNP\"\n    ], \n    \"amicable\": [\n        \"JJ\"\n    ], \n    \"Dame\": [\n        \"NNP\"\n    ], \n    \"wrongful\": [\n        \"JJ\"\n    ], \n    \"Balcerowicz\": [\n        \"NNP\"\n    ], \n    \"Viewmaster-Ideal\": [\n        \"NNP\"\n    ], \n    \"stamens\": [\n        \"NNS\"\n    ], \n    \"stables\": [\n        \"NNS\"\n    ], \n    \"sheet-fed\": [\n        \"JJ\"\n    ], \n    \"stabled\": [\n        \"VBD\"\n    ], \n    \"film-processing\": [\n        \"NN\"\n    ], \n    \"blood-red\": [\n        \"NN\"\n    ], \n    \"cop-killer\": [\n        \"JJ\"\n    ], \n    \"durables\": [\n        \"NNS\"\n    ], \n    \"EPO-treated\": [\n        \"JJ\"\n    ], \n    \"tankers\": [\n        \"NNS\"\n    ], \n    \"lubra\": [\n        \"NN\"\n    ], \n    \"two-for-one\": [\n        \"JJ\"\n    ], \n    \"Riviera\": [\n        \"NNP\"\n    ], \n    \"Soll\": [\n        \"NNP\"\n    ], \n    \"U.S.-SOVIET\": [\n        \"JJ\"\n    ], \n    \"vitals\": [\n        \"NNS\"\n    ], \n    \"non-tariff\": [\n        \"JJ\"\n    ], \n    \"Earth-quake\": [\n        \"NN\"\n    ], \n    \"scarify\": [\n        \"VB\"\n    ], \n    \"wildlife\": [\n        \"NN\"\n    ], \n    \"Fulgoni\": [\n        \"NNP\"\n    ], \n    \"anything\": [\n        \"NN\"\n    ], \n    \"global-market\": [\n        \"JJ\"\n    ], \n    \"Shawano\": [\n        \"NNP\"\n    ], \n    \"ambush\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"computational\": [\n        \"JJ\"\n    ], \n    \"Hatless\": [\n        \"JJ\"\n    ], \n    \"Bensten\": [\n        \"NNP\"\n    ], \n    \"Young\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"ACS\": [\n        \"NNP\"\n    ], \n    \"adverbs\": [\n        \"NNS\"\n    ], \n    \"Skillman\": [\n        \"NNP\"\n    ], \n    \"Riger\": [\n        \"NNP\"\n    ], \n    \"ACT\": [\n        \"NNP\"\n    ], \n    \"burdens\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"next\": [\n        \"JJ\", \n        \"IN\", \n        \"RB\"\n    ], \n    \"CoGen\": [\n        \"NNP\"\n    ], \n    \"criticisms\": [\n        \"NNS\"\n    ], \n    \"straight-line\": [\n        \"JJ\"\n    ], \n    \"bargaining\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"assuring\": [\n        \"VBG\"\n    ], \n    \"textual\": [\n        \"JJ\"\n    ], \n    \"occupy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"often-disparaged\": [\n        \"JJ\"\n    ], \n    \"pixie-like\": [\n        \"JJ\"\n    ], \n    \"BONO\": [\n        \"FW\"\n    ], \n    \"rhetorical\": [\n        \"JJ\"\n    ], \n    \"DowBrands\": [\n        \"NNP\"\n    ], \n    \"excavating\": [\n        \"VBG\"\n    ], \n    \"impudent\": [\n        \"JJ\"\n    ], \n    \"Klimpl\": [\n        \"NNP\"\n    ], \n    \"Mlle\": [\n        \"NNP\"\n    ], \n    \"retina\": [\n        \"NN\"\n    ], \n    \"Trafton\": [\n        \"NNP\"\n    ], \n    \"vowing\": [\n        \"VBG\"\n    ], \n    \"numismatic\": [\n        \"JJ\"\n    ], \n    \"High-yielding\": [\n        \"JJ\"\n    ], \n    \"cortico-hypothalamic\": [\n        \"JJ\"\n    ], \n    \"port-shopping\": [\n        \"NN\"\n    ], \n    \"Bandish\": [\n        \"NNP\"\n    ], \n    \"nieces\": [\n        \"NNS\"\n    ], \n    \"redeemed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"feather-bedding\": [\n        \"NN\"\n    ], \n    \"Indoor\": [\n        \"JJ\"\n    ], \n    \"Ohlman\": [\n        \"NNP\"\n    ], \n    \"electrophorus\": [\n        \"NN\"\n    ], \n    \"Erdos\": [\n        \"NNP\"\n    ], \n    \"mature\": [\n        \"JJ\", \n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"supervisor\": [\n        \"NN\"\n    ], \n    \"Gobbee\": [\n        \"NNP\"\n    ], \n    \"WALL\": [\n        \"NNP\"\n    ], \n    \"Disposal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jolla\": [\n        \"NNP\"\n    ], \n    \"Parks\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Gutfreund-Postel\": [\n        \"NNP\"\n    ], \n    \"Mishelevka\": [\n        \"NNP\"\n    ], \n    \"Frothy\": [\n        \"JJ\"\n    ], \n    \"Memory\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Parke\": [\n        \"NNP\"\n    ], \n    \"wove\": [\n        \"VBD\"\n    ], \n    \"formalism\": [\n        \"NN\"\n    ], \n    \"Chesshire\": [\n        \"NNP\"\n    ], \n    \"bad-cop\": [\n        \"JJ\"\n    ], \n    \"Sundstrand\": [\n        \"NNP\"\n    ], \n    \"Brush-off\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Dividends\": [\n        \"NNS\"\n    ], \n    \"leftward\": [\n        \"JJ\"\n    ], \n    \"overshoots\": [\n        \"VBZ\"\n    ], \n    \"actors\": [\n        \"NNS\"\n    ], \n    \"brazier\": [\n        \"NN\"\n    ], \n    \"Monchecourt\": [\n        \"NNP\"\n    ], \n    \"pockmarked\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"rumor-fraught\": [\n        \"JJ\"\n    ], \n    \"sided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"faintly\": [\n        \"RB\"\n    ], \n    \"Gorilla\": [\n        \"NNP\"\n    ], \n    \"Onan\": [\n        \"NNP\"\n    ], \n    \"DRILLING\": [\n        \"NN\"\n    ], \n    \"Railway\": [\n        \"NNP\"\n    ], \n    \"Biscuits\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"sides\": [\n        \"NNS\"\n    ], \n    \"worsened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"unionized\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"one-set\": [\n        \"JJ\"\n    ], \n    \"TR.\": [\n        \"NNP\"\n    ], \n    \"Ritter\": [\n        \"NNP\"\n    ], \n    \"superstate\": [\n        \"NN\"\n    ], \n    \"summit\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"walker\": [\n        \"NN\"\n    ], \n    \"Exchange-rate\": [\n        \"JJ\"\n    ], \n    \"Krauts\": [\n        \"NNS\"\n    ], \n    \"essay\": [\n        \"NN\"\n    ], \n    \"CPI\": [\n        \"NNP\"\n    ], \n    \"pooched\": [\n        \"VBD\"\n    ], \n    \"Taxonomists\": [\n        \"NNS\"\n    ], \n    \"CPA\": [\n        \"NNP\"\n    ], \n    \"Tweed\": [\n        \"NNP\"\n    ], \n    \"CPC\": [\n        \"NNP\"\n    ], \n    \"results\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"June-to-September\": [\n        \"NNP\"\n    ], \n    \"dedicates\": [\n        \"VBZ\"\n    ], \n    \"Nonconformists\": [\n        \"NNS\"\n    ], \n    \"CPR\": [\n        \"NNP\"\n    ], \n    \"QVC\": [\n        \"NNP\"\n    ], \n    \"CPT\": [\n        \"NN\"\n    ], \n    \"ORDERS\": [\n        \"VBZ\"\n    ], \n    \"inferences\": [\n        \"NNS\"\n    ], \n    \"Taraday\": [\n        \"NNP\"\n    ], \n    \"renunciations\": [\n        \"NNS\"\n    ], \n    \"Milhaud\": [\n        \"NNP\"\n    ], \n    \"court-supervised\": [\n        \"JJ\"\n    ], \n    \"send\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"outlooks\": [\n        \"NNS\"\n    ], \n    \"commuter-airline\": [\n        \"NN\"\n    ], \n    \"Bharati\": [\n        \"NNP\"\n    ], \n    \"Candide\": [\n        \"NNP\"\n    ], \n    \"sent\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pestering\": [\n        \"VBG\"\n    ], \n    \"recitals\": [\n        \"NNS\"\n    ], \n    \"Sanctions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Goldstein\": [\n        \"NNP\"\n    ], \n    \"languished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Following\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"languishes\": [\n        \"VBZ\"\n    ], \n    \"pyrometer\": [\n        \"NN\"\n    ], \n    \"seven-member\": [\n        \"JJ\"\n    ], \n    \"categories\": [\n        \"NNS\"\n    ], \n    \"Kimball\": [\n        \"NNP\"\n    ], \n    \"travel-services\": [\n        \"NNS\"\n    ], \n    \"recognizance\": [\n        \"NN\"\n    ], \n    \"Related\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Talking\": [\n        \"VBG\"\n    ], \n    \"bemoans\": [\n        \"VBZ\"\n    ], \n    \"obesity\": [\n        \"NN\"\n    ], \n    \"Seattle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thirty-foot\": [\n        \"JJ\"\n    ], \n    \"Lynford\": [\n        \"NNP\"\n    ], \n    \"burrowed\": [\n        \"VBD\"\n    ], \n    \"agrarian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Redbirds\": [\n        \"NNP\"\n    ], \n    \"buckskins\": [\n        \"NNS\"\n    ], \n    \"Newbery\": [\n        \"NNP\"\n    ], \n    \"Newberg\": [\n        \"NNP\"\n    ], \n    \"re-enactments\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Reinhardt\": [\n        \"NNP\"\n    ], \n    \"shivery\": [\n        \"JJ\"\n    ], \n    \"Jessica\": [\n        \"NNP\"\n    ], \n    \"firma\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Alai\": [\n        \"NNP\"\n    ], \n    \"Giddings\": [\n        \"NNP\"\n    ], \n    \"analogously\": [\n        \"RB\"\n    ], \n    \"Alan\": [\n        \"NNP\"\n    ], \n    \"laxity\": [\n        \"NN\"\n    ], \n    \"Alar\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Alas\": [\n        \"UH\", \n        \"RB\"\n    ], \n    \"firms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Diario\": [\n        \"NNP\"\n    ], \n    \"Barbudos\": [\n        \"NNPS\"\n    ], \n    \"Newton-John\": [\n        \"NNP\"\n    ], \n    \"fertilization\": [\n        \"NN\"\n    ], \n    \"panelists\": [\n        \"NNS\"\n    ], \n    \"jammies\": [\n        \"NNS\"\n    ], \n    \"Lammermoor\": [\n        \"NNP\"\n    ], \n    \"identifications\": [\n        \"NNS\"\n    ], \n    \"Tremdine\": [\n        \"NNP\"\n    ], \n    \"aerodynamic\": [\n        \"JJ\"\n    ], \n    \"physiology\": [\n        \"NN\"\n    ], \n    \"Streak\": [\n        \"NNP\"\n    ], \n    \"sentimentality\": [\n        \"NN\"\n    ], \n    \"engage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Stream\": [\n        \"NNP\"\n    ], \n    \"firm.\": [\n        \"NN\"\n    ], \n    \"Energy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ala.\": [\n        \"NNP\"\n    ], \n    \"McCarthy-era\": [\n        \"JJ\"\n    ], \n    \"bank-affiliated\": [\n        \"JJ\"\n    ], \n    \"Militia\": [\n        \"NNS\"\n    ], \n    \"Religious\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Dohnanyi\": [\n        \"NNP\"\n    ], \n    \"debts\": [\n        \"NNS\"\n    ], \n    \"Decay\": [\n        \"NNP\"\n    ], \n    \"finagling\": [\n        \"NN\"\n    ], \n    \"Alleged\": [\n        \"JJ\"\n    ], \n    \"distrusted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Industrielle\": [\n        \"NNP\"\n    ], \n    \"moonlighting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"F-14\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"F-15\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"trivialize\": [\n        \"VB\"\n    ], \n    \"F-18\": [\n        \"NN\"\n    ], \n    \"F.E.L.\": [\n        \"NNP\"\n    ], \n    \"cheered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ha\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Outright\": [\n        \"JJ\"\n    ], \n    \"archbishop\": [\n        \"NN\"\n    ], \n    \"whipping\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"painstakingly\": [\n        \"RB\"\n    ], \n    \"ministers\": [\n        \"NNS\"\n    ], \n    \"cash-or-shares\": [\n        \"JJ\"\n    ], \n    \"Oppenheim\": [\n        \"NNP\"\n    ], \n    \"muffed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Telmex\": [\n        \"NNP\"\n    ], \n    \"Delawareans\": [\n        \"NNPS\"\n    ], \n    \"Kaisers\": [\n        \"NNPS\"\n    ], \n    \"chloride\": [\n        \"NN\"\n    ], \n    \"Biny\": [\n        \"NNP\"\n    ], \n    \"crisscrossing\": [\n        \"VBG\"\n    ], \n    \"Bricktop\": [\n        \"NNP\"\n    ], \n    \"monophonic\": [\n        \"JJ\"\n    ], \n    \"Gumi\": [\n        \"NNP\"\n    ], \n    \"one-megabit\": [\n        \"JJ\"\n    ], \n    \"Hosting\": [\n        \"VBG\"\n    ], \n    \"Cimabue\": [\n        \"NNP\"\n    ], \n    \"Gums\": [\n        \"NNS\"\n    ], \n    \"Gump\": [\n        \"NNP\"\n    ], \n    \"Sucre\": [\n        \"NNP\"\n    ], \n    \"sharply\": [\n        \"RB\"\n    ], \n    \"roller-coaster\": [\n        \"NN\"\n    ], \n    \"promotional\": [\n        \"JJ\"\n    ], \n    \"folder\": [\n        \"NN\"\n    ], \n    \"pollutant\": [\n        \"NN\"\n    ], \n    \"cross-margining\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Christoph\": [\n        \"NNP\"\n    ], \n    \"insists\": [\n        \"VBZ\"\n    ], \n    \"instinctual\": [\n        \"JJ\"\n    ], \n    \"Subtle\": [\n        \"JJ\"\n    ], \n    \"hare-brained\": [\n        \"JJ\"\n    ], \n    \"campsites\": [\n        \"NNS\"\n    ], \n    \"million-member-Teamsters\": [\n        \"NNPS\"\n    ], \n    \"wed\": [\n        \"VBN\", \n        \"VB\"\n    ], \n    \"Shrieves\": [\n        \"NNP\"\n    ], \n    \"Sherrie\": [\n        \"NNP\"\n    ], \n    \"depiction\": [\n        \"NN\"\n    ], \n    \"beckoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Several\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"trumpet\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Shoupe\": [\n        \"NNP\"\n    ], \n    \"Osler\": [\n        \"NNP\"\n    ], \n    \"nuts-and-bolts\": [\n        \"JJ\"\n    ], \n    \"hydrophilic\": [\n        \"JJ\"\n    ], \n    \"Crocodile\": [\n        \"NNP\"\n    ], \n    \"Bolling\": [\n        \"NNP\"\n    ], \n    \"Ransy\": [\n        \"NNP\"\n    ], \n    \"expansion-minded\": [\n        \"JJ\"\n    ], \n    \"tableau\": [\n        \"NN\"\n    ], \n    \"Ittleson\": [\n        \"NNP\"\n    ], \n    \"Tigershark\": [\n        \"NNP\"\n    ], \n    \"Railcar\": [\n        \"NNP\"\n    ], \n    \"stand\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"ACQUISITIONS\": [\n        \"NNS\"\n    ], \n    \"blocks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Flax\": [\n        \"NNP\"\n    ], \n    \"wallpaper\": [\n        \"NN\"\n    ], \n    \"Poitrine\": [\n        \"NNP\"\n    ], \n    \"paleo\": [\n        \"NN\"\n    ], \n    \"blocky\": [\n        \"JJ\"\n    ], \n    \"Garcia\": [\n        \"NNP\"\n    ], \n    \"notebook\": [\n        \"NN\"\n    ], \n    \"demonstrating\": [\n        \"VBG\"\n    ], \n    \"Ingrid\": [\n        \"NNP\"\n    ], \n    \"lagoons\": [\n        \"NNS\"\n    ], \n    \"near-total\": [\n        \"JJ\"\n    ], \n    \"efficiently\": [\n        \"RB\"\n    ], \n    \"Welmers\": [\n        \"NNS\"\n    ], \n    \"selectors\": [\n        \"NNS\"\n    ], \n    \"critical-intellectual\": [\n        \"JJ\"\n    ], \n    \"intellectuals\": [\n        \"NNS\"\n    ], \n    \"Leisire\": [\n        \"NNP\"\n    ], \n    \"Buhrmann-Tetterode\": [\n        \"NNP\"\n    ], \n    \"Kaiser\": [\n        \"NNP\"\n    ], \n    \"jigger\": [\n        \"NN\"\n    ], \n    \"unpalatable\": [\n        \"JJ\"\n    ], \n    \"comma\": [\n        \"NN\"\n    ], \n    \"N.C.-based\": [\n        \"JJ\"\n    ], \n    \"Brenna\": [\n        \"NNP\"\n    ], \n    \"Octobrists\": [\n        \"NNPS\"\n    ], \n    \"operative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"easements\": [\n        \"NNS\"\n    ], \n    \"recreating\": [\n        \"VBG\"\n    ], \n    \"unpeace\": [\n        \"NN\"\n    ], \n    \"excretory\": [\n        \"JJ\"\n    ], \n    \"Shroeder\": [\n        \"NNP\"\n    ], \n    \"hypothesize\": [\n        \"VB\"\n    ], \n    \"Southeastern\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"shudder\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spoiling\": [\n        \"VBG\"\n    ], \n    \"hobby\": [\n        \"NN\"\n    ], \n    \"Bazaar\": [\n        \"NNP\"\n    ], \n    \"French-franc\": [\n        \"NN\"\n    ], \n    \"burping\": [\n        \"VBG\"\n    ], \n    \"crucial\": [\n        \"JJ\"\n    ], \n    \"Excluding\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Reichenberg\": [\n        \"NNP\"\n    ], \n    \"Manzanola\": [\n        \"NNP\"\n    ], \n    \"triphosphorous\": [\n        \"JJ\"\n    ], \n    \"Wynston\": [\n        \"NNP\"\n    ], \n    \"A&M\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Katz\": [\n        \"NNP\"\n    ], \n    \"rail-equipment\": [\n        \"JJ\"\n    ], \n    \"installment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"gallstones\": [\n        \"NNS\"\n    ], \n    \"A&E\": [\n        \"NNP\"\n    ], \n    \"Sporting\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"M-19\": [\n        \"NN\"\n    ], \n    \"merge\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Informix\": [\n        \"NNP\"\n    ], \n    \"Kato\": [\n        \"NNP\"\n    ], \n    \"accounts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"A&W\": [\n        \"NNP\"\n    ], \n    \"A&P\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"veracious\": [\n        \"JJ\"\n    ], \n    \"Lumpur\": [\n        \"NNP\"\n    ], \n    \"kisha\": [\n        \"FW\"\n    ], \n    \"BUSINESS\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Treasure\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mills\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Millo\": [\n        \"NNP\"\n    ], \n    \"Most-Favored\": [\n        \"JJS\"\n    ], \n    \"intangible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dispatch\": [\n        \"NNP\"\n    ], \n    \"Treasury\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"repainting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Mille\": [\n        \"NNP\"\n    ], \n    \"WOLFSON\": [\n        \"NNP\"\n    ], \n    \"Lynes\": [\n        \"NNP\"\n    ], \n    \"wander\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Least-cost\": [\n        \"JJ\"\n    ], \n    \"Agreement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"HIAA\": [\n        \"NNP\"\n    ], \n    \"venom\": [\n        \"NN\"\n    ], \n    \"exults\": [\n        \"VBZ\"\n    ], \n    \"saltbush\": [\n        \"NN\"\n    ], \n    \"Contractors\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"czar\": [\n        \"NN\"\n    ], \n    \"Bakkers\": [\n        \"NNPS\"\n    ], \n    \"interactions\": [\n        \"NNS\"\n    ], \n    \"Grove\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"yawns\": [\n        \"NNS\"\n    ], \n    \"opinion-makers\": [\n        \"NNS\"\n    ], \n    \"Albanese\": [\n        \"NNP\"\n    ], \n    \"Herwick\": [\n        \"NNP\"\n    ], \n    \"BICC\": [\n        \"NNP\"\n    ], \n    \"Freddy\": [\n        \"NNP\"\n    ], \n    \"loomed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Cuellar\": [\n        \"NNP\"\n    ], \n    \"eyeballing\": [\n        \"VBG\"\n    ], \n    \"monographs\": [\n        \"NNS\"\n    ], \n    \"Aided\": [\n        \"VBN\"\n    ], \n    \"Bachman\": [\n        \"NNP\"\n    ], \n    \"shuld\": [\n        \"MD\"\n    ], \n    \"congressonal\": [\n        \"JJ\"\n    ], \n    \"mesmerized\": [\n        \"VBN\"\n    ], \n    \"followings\": [\n        \"NNS\"\n    ], \n    \"low-calorie\": [\n        \"JJ\"\n    ], \n    \"Aides\": [\n        \"NNS\"\n    ], \n    \"Caper\": [\n        \"NNP\"\n    ], \n    \"Wheeler\": [\n        \"NNP\"\n    ], \n    \"transmitters\": [\n        \"NNS\"\n    ], \n    \"Capet\": [\n        \"NNP\"\n    ], \n    \"Hypocrisy\": [\n        \"NN\"\n    ], \n    \"pines\": [\n        \"NNS\"\n    ], \n    \"Review\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"owned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"straining\": [\n        \"VBG\"\n    ], \n    \"owner\": [\n        \"NN\"\n    ], \n    \"Capek\": [\n        \"NNP\"\n    ], \n    \"Sovtransavto\": [\n        \"NNP\"\n    ], \n    \"Pampers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Capel\": [\n        \"NNP\"\n    ], \n    \"Naturally\": [\n        \"RB\"\n    ], \n    \"legislative\": [\n        \"JJ\"\n    ], \n    \"Solidarity-led\": [\n        \"JJ\"\n    ], \n    \"STOCKS\": [\n        \"NNS\"\n    ], \n    \"Y-MP\\\\/832\": [\n        \"NNP\"\n    ], \n    \"foreign-based\": [\n        \"JJ\"\n    ], \n    \"upstate\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"tulip-shaped\": [\n        \"JJ\"\n    ], \n    \"state-controlled\": [\n        \"JJ\"\n    ], \n    \"acknowleged\": [\n        \"VBD\"\n    ], \n    \"Bahrenburg\": [\n        \"NNP\"\n    ], \n    \"spaceship\": [\n        \"NN\"\n    ], \n    \"painful\": [\n        \"JJ\"\n    ], \n    \"twinjets\": [\n        \"NNS\"\n    ], \n    \"HERO\": [\n        \"NN\"\n    ], \n    \"Levin\": [\n        \"NNP\"\n    ], \n    \"trestle\": [\n        \"NN\"\n    ], \n    \"midlevel\": [\n        \"JJ\"\n    ], \n    \"printmaking\": [\n        \"NN\"\n    ], \n    \"applauds\": [\n        \"VBZ\"\n    ], \n    \"BRANDS\": [\n        \"NNPS\"\n    ], \n    \"Meanwile\": [\n        \"RB\"\n    ], \n    \"marquees\": [\n        \"NNS\"\n    ], \n    \"delimits\": [\n        \"VBZ\"\n    ], \n    \"steel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"buttocks\": [\n        \"NNS\"\n    ], \n    \"boot-wearer\": [\n        \"JJ\"\n    ], \n    \"steed\": [\n        \"NN\"\n    ], \n    \"manpower\": [\n        \"NN\"\n    ], \n    \"haystacks\": [\n        \"NNS\"\n    ], \n    \"restaffed\": [\n        \"VBD\"\n    ], \n    \"malpractice\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"punctured\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Paschall\": [\n        \"NNP\"\n    ], \n    \"Re-enactments\": [\n        \"NNS\"\n    ], \n    \"steep\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"torrent\": [\n        \"NN\"\n    ], \n    \"steer\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Jolivet\": [\n        \"NNP\"\n    ], \n    \"seaborne\": [\n        \"JJ\"\n    ], \n    \"Results\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"PLODDERS\": [\n        \"NNS\"\n    ], \n    \"chromium-plated\": [\n        \"JJ\"\n    ], \n    \"Mercedes-Benz\": [\n        \"NNP\"\n    ], \n    \"devotions\": [\n        \"NNS\"\n    ], \n    \"Zorn\": [\n        \"NNP\"\n    ], \n    \"Haferkamp\": [\n        \"NNP\"\n    ], \n    \"blockbuster\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Balag\": [\n        \"NNP\"\n    ], \n    \"clearly\": [\n        \"RB\"\n    ], \n    \"Remember\": [\n        \"VB\"\n    ], \n    \"Claws\": [\n        \"NNS\"\n    ], \n    \"wryness\": [\n        \"NN\"\n    ], \n    \"documents\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"soak\": [\n        \"VB\"\n    ], \n    \"bacterium\": [\n        \"NN\"\n    ], \n    \"bassoon\": [\n        \"NN\"\n    ], \n    \"vented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"probly\": [\n        \"RB\"\n    ], \n    \"mechanism\": [\n        \"NN\"\n    ], \n    \"decomposing\": [\n        \"VBG\"\n    ], \n    \"bonanza\": [\n        \"NN\"\n    ], \n    \"mechanist\": [\n        \"NN\"\n    ], \n    \"soap\": [\n        \"NN\"\n    ], \n    \"Dare-Base\": [\n        \"NNP\"\n    ], \n    \"regard\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"snuff\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"BEWARE\": [\n        \"VB\"\n    ], \n    \"safety-first\": [\n        \"JJ\"\n    ], \n    \"sophomoric\": [\n        \"JJ\"\n    ], \n    \"psychiatry\": [\n        \"NN\"\n    ], \n    \"Hurricanes\": [\n        \"NNPS\"\n    ], \n    \"HOLD\": [\n        \"VB\"\n    ], \n    \"medal\": [\n        \"NN\"\n    ], \n    \"Patents\": [\n        \"NNP\"\n    ], \n    \"RCSB\": [\n        \"NNP\"\n    ], \n    \"thirdquarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Expedition\": [\n        \"NNP\"\n    ], \n    \"reignite\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"endrocrine\": [\n        \"JJ\"\n    ], \n    \"Pancho\": [\n        \"NNP\"\n    ], \n    \"disallowance\": [\n        \"NN\"\n    ], \n    \"montgolfiere\": [\n        \"FW\"\n    ], \n    \"Marquess\": [\n        \"NNP\"\n    ], \n    \"Sophias\": [\n        \"NNP\"\n    ], \n    \"leftfield\": [\n        \"NN\"\n    ], \n    \"EXE\": [\n        \"NNP\"\n    ], \n    \"Evidences\": [\n        \"NNS\"\n    ], \n    \"dissociate\": [\n        \"VB\"\n    ], \n    \"understate\": [\n        \"VBP\"\n    ], \n    \"EXP\": [\n        \"NNP\"\n    ], \n    \"Wolzein\": [\n        \"NNP\"\n    ], \n    \"Removal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"asylum\": [\n        \"NN\"\n    ], \n    \"ELP\": [\n        \"NNP\"\n    ], \n    \"jostling\": [\n        \"VBG\"\n    ], \n    \"illumine\": [\n        \"VB\"\n    ], \n    \"planter\": [\n        \"NN\"\n    ], \n    \"championed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ex-chairman\": [\n        \"NN\"\n    ], \n    \"emancipate\": [\n        \"VB\"\n    ], \n    \"Serif\": [\n        \"NNP\"\n    ], \n    \"planted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"poohbah\": [\n        \"NN\"\n    ], \n    \"matronly\": [\n        \"JJ\"\n    ], \n    \"Bergsten\": [\n        \"NNP\"\n    ], \n    \"maggots\": [\n        \"NNS\"\n    ], \n    \"bourbon\": [\n        \"NN\"\n    ], \n    \"Saltiel\": [\n        \"NNP\"\n    ], \n    \"maggoty\": [\n        \"JJ\"\n    ], \n    \"Keswick\": [\n        \"NNP\"\n    ], \n    \"pogroms\": [\n        \"NNS\"\n    ], \n    \"Sumita\": [\n        \"NNP\"\n    ], \n    \"Owners\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"humanness\": [\n        \"NN\"\n    ], \n    \"internationals\": [\n        \"NNS\"\n    ], \n    \"intellectually\": [\n        \"RB\"\n    ], \n    \"Ekman\": [\n        \"NNP\"\n    ], \n    \"flower-scented\": [\n        \"JJ\"\n    ], \n    \"fronds\": [\n        \"NNS\"\n    ], \n    \"Fashions\": [\n        \"NNPS\"\n    ], \n    \"River\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"multiyear\": [\n        \"JJ\"\n    ], \n    \"quarter-mile\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"dishearten\": [\n        \"VB\"\n    ], \n    \"Lydall\": [\n        \"NNP\"\n    ], \n    \"spatula\": [\n        \"NN\"\n    ], \n    \"Brahmin\": [\n        \"NNP\"\n    ], \n    \"luminosity\": [\n        \"NN\"\n    ], \n    \"nise\": [\n        \"JJ\"\n    ], \n    \"disapprobation\": [\n        \"NN\"\n    ], \n    \"streamlined\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"DeGol\": [\n        \"NNP\"\n    ], \n    \"Anniston\": [\n        \"NNP\"\n    ], \n    \"incurably\": [\n        \"RB\"\n    ], \n    \"Wilshire\": [\n        \"NNP\"\n    ], \n    \"Histrionix\": [\n        \"NNP\"\n    ], \n    \"creationist\": [\n        \"JJ\"\n    ], \n    \"catastrophic\": [\n        \"JJ\"\n    ], \n    \"heartburn\": [\n        \"NN\"\n    ], \n    \"edition\": [\n        \"NN\"\n    ], \n    \"Pre-attack\": [\n        \"JJ\"\n    ], \n    \"corrals\": [\n        \"NNS\"\n    ], \n    \"subcommittee\": [\n        \"NN\"\n    ], \n    \"bidders\": [\n        \"NNS\"\n    ], \n    \"incurable\": [\n        \"JJ\"\n    ], \n    \"Nonunion\": [\n        \"NNP\"\n    ], \n    \"creationism\": [\n        \"NN\"\n    ], \n    \"yodel\": [\n        \"NN\"\n    ], \n    \"bossman\": [\n        \"NN\"\n    ], \n    \"Hannes\": [\n        \"NNP\"\n    ], \n    \"partisan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Euro-Belge\": [\n        \"NNP\"\n    ], \n    \"extraneousness\": [\n        \"NN\"\n    ], \n    \"Two-part\": [\n        \"JJ\"\n    ], \n    \"injustice\": [\n        \"NN\"\n    ], \n    \"Jean-Pierre\": [\n        \"NNP\"\n    ], \n    \"Jones-Irwin\": [\n        \"NNP\"\n    ], \n    \"reauthorization\": [\n        \"NN\"\n    ], \n    \"classless\": [\n        \"JJ\"\n    ], \n    \"faceless\": [\n        \"JJ\"\n    ], \n    \"Forum\": [\n        \"NNP\"\n    ], \n    \"WFRR\": [\n        \"NNP\"\n    ], \n    \"Amdura\": [\n        \"NNP\"\n    ], \n    \"bright-eyed\": [\n        \"JJ\"\n    ], \n    \"Admistration\": [\n        \"NNP\"\n    ], \n    \"port-of-call\": [\n        \"NN\"\n    ], \n    \"candybar\": [\n        \"NN\"\n    ], \n    \"drum\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Ter-Arutunian\": [\n        \"NNP\"\n    ], \n    \"unflinching\": [\n        \"JJ\"\n    ], \n    \"sevenday\": [\n        \"JJ\"\n    ], \n    \"Ethiopian\": [\n        \"JJ\"\n    ], \n    \"drug\": [\n        \"NN\"\n    ], \n    \"Serum\": [\n        \"NN\"\n    ], \n    \"sugared\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Anlage\": [\n        \"NNP\"\n    ], \n    \"irruptions\": [\n        \"NNS\"\n    ], \n    \"Vaughan\": [\n        \"NNP\"\n    ], \n    \"clamshell\": [\n        \"NN\"\n    ], \n    \"cm\": [\n        \"NN\"\n    ], \n    \"cc\": [\n        \"NN\"\n    ], \n    \"Guinea\": [\n        \"NNP\"\n    ], \n    \"ca\": [\n        \"MD\"\n    ], \n    \"skylights\": [\n        \"NNS\"\n    ], \n    \"laity\": [\n        \"NN\"\n    ], \n    \"missile-guidance\": [\n        \"JJ\"\n    ], \n    \"nonstops\": [\n        \"NNS\"\n    ], \n    \"pounced\": [\n        \"VBD\"\n    ], \n    \"rapidement\": [\n        \"FW\"\n    ], \n    \"allocated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"paperboy\": [\n        \"NN\"\n    ], \n    \"cu\": [\n        \"NN\"\n    ], \n    \"equips\": [\n        \"VBZ\"\n    ], \n    \"Get\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"trajectory\": [\n        \"NN\"\n    ], \n    \"dazzling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"anhydrously\": [\n        \"RB\"\n    ], \n    \"Chennault\": [\n        \"NNP\"\n    ], \n    \"Gee\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"ex-member\": [\n        \"NN\"\n    ], \n    \"QUANTUM\": [\n        \"NNP\"\n    ], \n    \"hottest\": [\n        \"JJS\"\n    ], \n    \"I.D.\": [\n        \"NN\"\n    ], \n    \"break-even\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Marous\": [\n        \"NNP\"\n    ], \n    \"Gem\": [\n        \"NNP\"\n    ], \n    \"Gel\": [\n        \"NNP\"\n    ], \n    \"Mid-sized\": [\n        \"JJ\"\n    ], \n    \"stalled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rioting\": [\n        \"NN\"\n    ], \n    \"Enthusiastic\": [\n        \"JJ\"\n    ], \n    \"Cytogen\": [\n        \"NNP\"\n    ], \n    \"geysering\": [\n        \"VBG\"\n    ], \n    \"laser\": [\n        \"NN\"\n    ], \n    \"Continentals\": [\n        \"NNS\"\n    ], \n    \"grinning\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Pulling\": [\n        \"VBG\"\n    ], \n    \"Fatman\": [\n        \"NNP\"\n    ], \n    \"Hickok\": [\n        \"NNP\"\n    ], \n    \"rigged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"maul\": [\n        \"VB\"\n    ], \n    \"Eros\": [\n        \"NNP\"\n    ], \n    \"rethought\": [\n        \"JJ\"\n    ], \n    \"movie-studio\": [\n        \"NN\"\n    ], \n    \"Burnsides\": [\n        \"NNPS\"\n    ], \n    \"preppie\": [\n        \"NN\"\n    ], \n    \"delaying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN|VBG\"\n    ], \n    \"lush\": [\n        \"JJ\"\n    ], \n    \"L.R.\": [\n        \"NNP\"\n    ], \n    \"lust\": [\n        \"NN\"\n    ], \n    \"five-cylinder\": [\n        \"JJ\"\n    ], \n    \"Crestmont\": [\n        \"NNP\"\n    ], \n    \"Rajter\": [\n        \"NNP\"\n    ], \n    \"cremation\": [\n        \"NN\"\n    ], \n    \"waspish\": [\n        \"JJ\"\n    ], \n    \"maligned\": [\n        \"VBN\"\n    ], \n    \"concealing\": [\n        \"VBG\"\n    ], \n    \"Pettee\": [\n        \"NNP\"\n    ], \n    \"highlighted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Raoul\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Geothermal\": [\n        \"NNP\"\n    ], \n    \"five-pound\": [\n        \"JJ\"\n    ], \n    \"glares\": [\n        \"VBZ\"\n    ], \n    \"infarction\": [\n        \"NN\"\n    ], \n    \"Wertheimer\": [\n        \"NNP\"\n    ], \n    \"inlaid\": [\n        \"VBN\"\n    ], \n    \"balm\": [\n        \"NN\"\n    ], \n    \"ball\": [\n        \"NN\"\n    ], \n    \"balk\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Canadian-fisheries\": [\n        \"NNS\"\n    ], \n    \"Jase\": [\n        \"NNP\"\n    ], \n    \"forecasts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"heaped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"robotic\": [\n        \"JJ\"\n    ], \n    \"Hires\": [\n        \"NNP\"\n    ], \n    \"overalls\": [\n        \"NNS\"\n    ], \n    \"whyfores\": [\n        \"NNS\"\n    ], \n    \"Julio\": [\n        \"NNP\"\n    ], \n    \"Oklahoman\": [\n        \"NNP\"\n    ], \n    \"Julie\": [\n        \"NNP\"\n    ], \n    \"Julia\": [\n        \"NNP\"\n    ], \n    \"Sontag\": [\n        \"NNP\"\n    ], \n    \"clambering\": [\n        \"VBG\"\n    ], \n    \"Thutmose\": [\n        \"NNP\"\n    ], \n    \"wigmaker\": [\n        \"NN\"\n    ], \n    \"Ito-Yokado\": [\n        \"NNP\"\n    ], \n    \"Sahour\": [\n        \"NNP\"\n    ], \n    \"snake\": [\n        \"NN\"\n    ], \n    \"gully\": [\n        \"NN\"\n    ], \n    \"Marcia\": [\n        \"NNP\"\n    ], \n    \"moments\": [\n        \"NNS\"\n    ], \n    \"glut\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"hand-blower\": [\n        \"NN\"\n    ], \n    \"LABOR\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Emphasis\": [\n        \"NN\"\n    ], \n    \"glum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Drobny\": [\n        \"NNP\"\n    ], \n    \"glue\": [\n        \"NN\"\n    ], \n    \"Flynn\": [\n        \"NNP\"\n    ], \n    \"Bahrain\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ankara\": [\n        \"NNP\"\n    ], \n    \"Unbelievable\": [\n        \"JJ\"\n    ], \n    \"Works\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Ketchikan\": [\n        \"NNP\"\n    ], \n    \"politique\": [\n        \"FW\"\n    ], \n    \"fifth-straight\": [\n        \"JJ\"\n    ], \n    \"coattails\": [\n        \"NNS\"\n    ], \n    \"Levesque\": [\n        \"NNP\"\n    ], \n    \"Osterreichische\": [\n        \"NNP\"\n    ], \n    \"Zoeller\": [\n        \"NNP\"\n    ], \n    \"unrecoverable\": [\n        \"JJ\"\n    ], \n    \"fluctuating\": [\n        \"VBG\"\n    ], \n    \"Unfortunately\": [\n        \"RB\"\n    ], \n    \"taunt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"famously\": [\n        \"RB\"\n    ], \n    \"Slatkin\": [\n        \"NNP\"\n    ], \n    \"Kaddish\": [\n        \"NNP\"\n    ], \n    \"SGA\": [\n        \"NNP\"\n    ], \n    \"car-rental\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bayonets\": [\n        \"NNS\"\n    ], \n    \"Skating\": [\n        \"NNP\"\n    ], \n    \"SGB\": [\n        \"NNP\"\n    ], \n    \"crisp\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"onion\": [\n        \"NN\"\n    ], \n    \"Gensichen\": [\n        \"NNP\"\n    ], \n    \"bigotry\": [\n        \"NN\"\n    ], \n    \"scenic\": [\n        \"JJ\"\n    ], \n    \"Wakayama\": [\n        \"NNP\"\n    ], \n    \"Quit\": [\n        \"VB\"\n    ], \n    \"indications\": [\n        \"NNS\"\n    ], \n    \"Kodama\": [\n        \"NNP\"\n    ], \n    \"guaranty\": [\n        \"NN\"\n    ], \n    \"U.N.F.P.\": [\n        \"NNP\"\n    ], \n    \"foreseeable\": [\n        \"JJ\"\n    ], \n    \"footage\": [\n        \"NN\"\n    ], \n    \"Withrow\": [\n        \"NNP\"\n    ], \n    \"ballot\": [\n        \"NN\"\n    ], \n    \"hashers\": [\n        \"NNS\"\n    ], \n    \"Tenderfoot\": [\n        \"NN\"\n    ], \n    \"Procaine\": [\n        \"NN\"\n    ], \n    \"Barron\": [\n        \"NNP\"\n    ], \n    \"hoarder\": [\n        \"NN\"\n    ], \n    \"Gardner-Denver\": [\n        \"NNP\"\n    ], \n    \"leveraged\": [\n        \"JJ\", \n        \"VBN\", \n        \"NN\"\n    ], \n    \"snappy\": [\n        \"JJ\"\n    ], \n    \"half-crocked\": [\n        \"JJ\"\n    ], \n    \"high-definition\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"forgiven\": [\n        \"VBN\"\n    ], \n    \"Barrow\": [\n        \"NNP\"\n    ], \n    \"Eden\": [\n        \"NNP\"\n    ], \n    \"Markrud\": [\n        \"NNP\"\n    ], \n    \"haulage\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shortage\": [\n        \"NN\"\n    ], \n    \"ornithologist\": [\n        \"NN\"\n    ], \n    \"Brizola\": [\n        \"NNP\"\n    ], \n    \"senior-management\": [\n        \"NN\"\n    ], \n    \"fetal-vulnerability\": [\n        \"JJ\"\n    ], \n    \"Eder\": [\n        \"NNP\"\n    ], \n    \"Toward\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"mosquito-plagued\": [\n        \"JJ\"\n    ], \n    \"gained\": [\n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"embolisms\": [\n        \"NNS\"\n    ], \n    \"ingest\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"idolize\": [\n        \"VBP\"\n    ], \n    \"Talon\": [\n        \"NNP\"\n    ], \n    \"seeds\": [\n        \"NNS\"\n    ], \n    \"gainer\": [\n        \"NN\"\n    ], \n    \"kneebreeches\": [\n        \"NNS\"\n    ], \n    \"seedy\": [\n        \"JJ\"\n    ], \n    \"strode\": [\n        \"VBD\"\n    ], \n    \"Grune\": [\n        \"NNP\"\n    ], \n    \"German-born\": [\n        \"JJ\"\n    ], \n    \"Consuming\": [\n        \"VBG\"\n    ], \n    \"clotheshorse\": [\n        \"NN\"\n    ], \n    \"unbent\": [\n        \"JJ\"\n    ], \n    \"libertarians\": [\n        \"NNS\"\n    ], \n    \"jingles\": [\n        \"NNS\"\n    ], \n    \"uninterruptedly\": [\n        \"RB\"\n    ], \n    \"Charters\": [\n        \"NNP\"\n    ], \n    \"abreaction\": [\n        \"NN\"\n    ], \n    \"Coen\": [\n        \"NNP\"\n    ], \n    \"Sensibility\": [\n        \"NN\"\n    ], \n    \"jingled\": [\n        \"VBD\"\n    ], \n    \"recapitalizations\": [\n        \"NNS\"\n    ], \n    \"sander\": [\n        \"NN\"\n    ], \n    \"Serra\": [\n        \"NNP\"\n    ], \n    \"Young-Jin\": [\n        \"NNP\"\n    ], \n    \"Sickness\": [\n        \"NN\"\n    ], \n    \"off-speed\": [\n        \"JJ\"\n    ], \n    \"housing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Dictates\": [\n        \"NNS\"\n    ], \n    \"stamina\": [\n        \"NN\"\n    ], \n    \"Expenditure\": [\n        \"NNP\"\n    ], \n    \"Republicanism\": [\n        \"NNP\"\n    ], \n    \"unresponsive\": [\n        \"JJ\"\n    ], \n    \"Deor\": [\n        \"NNP\"\n    ], \n    \"daughter-in-law\": [\n        \"NN\"\n    ], \n    \"hoosegows\": [\n        \"NNS\"\n    ], \n    \"storehouse\": [\n        \"NN\"\n    ], \n    \"beeped\": [\n        \"VBN\"\n    ], \n    \"delivery\": [\n        \"NN\"\n    ], \n    \"Suppose\": [\n        \"VB\"\n    ], \n    \"delivers\": [\n        \"VBZ\"\n    ], \n    \"Balance\": [\n        \"NNP\"\n    ], \n    \"illustrative\": [\n        \"JJ\"\n    ], \n    \"beeper\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"straightaway\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Jessy\": [\n        \"NNP\"\n    ], \n    \"Bicycle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"official\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"reinforcement\": [\n        \"NN\"\n    ], \n    \"harvested\": [\n        \"VBN\"\n    ], \n    \"gold-phone\": [\n        \"NN\"\n    ], \n    \"unguaranteed\": [\n        \"JJ\"\n    ], \n    \"Vagabond\": [\n        \"NNP\"\n    ], \n    \"Jesse\": [\n        \"NNP\"\n    ], \n    \"Lusser\": [\n        \"NNP\"\n    ], \n    \"televison-record\": [\n        \"NN\"\n    ], \n    \"BOSTON\": [\n        \"NNP\"\n    ], \n    \"Riga\": [\n        \"NNP\"\n    ], \n    \"Leixlip\": [\n        \"NNP\"\n    ], \n    \"denote\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"semi-arid\": [\n        \"JJ\"\n    ], \n    \"Neisse-Oder\": [\n        \"NNP\"\n    ], \n    \"shepherded\": [\n        \"VBD\"\n    ], \n    \"Thoma\": [\n        \"NNP\"\n    ], \n    \"Benets\": [\n        \"NNPS\"\n    ], \n    \"battery-powered\": [\n        \"JJ\"\n    ], \n    \"anaerobic\": [\n        \"JJ\"\n    ], \n    \"Imam\": [\n        \"NNP\"\n    ], \n    \"Imai\": [\n        \"NNP\"\n    ], \n    \"variety\": [\n        \"NN\"\n    ], \n    \"Griswold\": [\n        \"NNP\"\n    ], \n    \"saunas\": [\n        \"NNS\"\n    ], \n    \"fast-rising\": [\n        \"JJ\"\n    ], \n    \"deficit-racked\": [\n        \"JJ\"\n    ], \n    \"intermission\": [\n        \"NN\"\n    ], \n    \"Anti-Jones\": [\n        \"JJ\"\n    ], \n    \"WANES\": [\n        \"VBZ\"\n    ], \n    \"penciled\": [\n        \"VBN\"\n    ], \n    \"satellite-dish\": [\n        \"NN\"\n    ], \n    \"FELLED\": [\n        \"VBD\"\n    ], \n    \"videocasette\": [\n        \"NN\"\n    ], \n    \"footprints\": [\n        \"NNS\"\n    ], \n    \"foreleg\": [\n        \"NN\"\n    ], \n    \"unswerving\": [\n        \"JJ\"\n    ], \n    \"Dulude\": [\n        \"NNP\"\n    ], \n    \"arbiter\": [\n        \"NN\"\n    ], \n    \"McFeely\": [\n        \"RB\"\n    ], \n    \"Fifty-two\": [\n        \"JJ\"\n    ], \n    \"Arvin\": [\n        \"NNP\"\n    ], \n    \"pacify\": [\n        \"VB\"\n    ], \n    \"Wafaa\": [\n        \"NNP\"\n    ], \n    \"Appleseeds\": [\n        \"NNPS\"\n    ], \n    \"Page\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"matrix\": [\n        \"NN\"\n    ], \n    \"time-on-the-job\": [\n        \"JJ\"\n    ], \n    \"buyin\": [\n        \"NN\"\n    ], \n    \"limousines\": [\n        \"NNS\"\n    ], \n    \"Fujimoto\": [\n        \"NNP\"\n    ], \n    \"transports\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"undercutting\": [\n        \"VBG\"\n    ], \n    \"orders-related\": [\n        \"JJ\"\n    ], \n    \"coquette\": [\n        \"NN\"\n    ], \n    \"Soaring\": [\n        \"VBG\"\n    ], \n    \"pension\": [\n        \"NN\"\n    ], \n    \"Trotting\": [\n        \"VBG\"\n    ], \n    \"buoy\": [\n        \"VB\"\n    ], \n    \"knockers\": [\n        \"NNS\"\n    ], \n    \"Sadly\": [\n        \"RB\"\n    ], \n    \"consolidated\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"C-90\": [\n        \"NN\"\n    ], \n    \"Rous\": [\n        \"NNP\"\n    ], \n    \"Boies\": [\n        \"NNP\"\n    ], \n    \"Antler\": [\n        \"NNP\"\n    ], \n    \"oldest\": [\n        \"JJS\"\n    ], \n    \"Sicurella\": [\n        \"NNP\"\n    ], \n    \"consolidates\": [\n        \"VBZ\"\n    ], \n    \"psychopathic\": [\n        \"JJ\"\n    ], \n    \"underclassman\": [\n        \"NN\"\n    ], \n    \"metropolitian\": [\n        \"JJ\"\n    ], \n    \"sputtered\": [\n        \"VBD\"\n    ], \n    \"Schmolka\": [\n        \"NNP\"\n    ], \n    \"forte-pianos\": [\n        \"NNS\"\n    ], \n    \"physiological\": [\n        \"JJ\"\n    ], \n    \"knife-edge\": [\n        \"NN\"\n    ], \n    \"Architects\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Rangel\": [\n        \"NNP\"\n    ], \n    \"Ranger\": [\n        \"NNP\"\n    ], \n    \"Sasebo\": [\n        \"NNP\"\n    ], \n    \"Schonberg\": [\n        \"NNP\"\n    ], \n    \"hell-for-leather\": [\n        \"RB\"\n    ], \n    \"slowest\": [\n        \"JJS\"\n    ], \n    \"Pololu\": [\n        \"NNP\"\n    ], \n    \"overpaying\": [\n        \"VBG\"\n    ], \n    \"litle\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"League\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Breed\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"higher-multiple\": [\n        \"JJ\"\n    ], \n    \"fireplaces\": [\n        \"NNS\"\n    ], \n    \"geology\": [\n        \"NN\"\n    ], \n    \"blanket\": [\n        \"NN\", \n        \"VBP\", \n        \"NN|JJ\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"distort\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sellers\": [\n        \"NNS\"\n    ], \n    \"Telectronics\": [\n        \"NNP\"\n    ], \n    \"Adlai\": [\n        \"NNP\"\n    ], \n    \"disobedient\": [\n        \"JJ\"\n    ], \n    \"Brindisi\": [\n        \"NNP\"\n    ], \n    \"XRAL\": [\n        \"NNP\"\n    ], \n    \"Canada-North\": [\n        \"NNP\"\n    ], \n    \"uninviting\": [\n        \"JJ\"\n    ], \n    \"Surrounding\": [\n        \"VBG\"\n    ], \n    \"ACLU\": [\n        \"NNP\"\n    ], \n    \"antagonize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Amudarya\": [\n        \"NNP\"\n    ], \n    \"auto-insurance\": [\n        \"NN\"\n    ], \n    \"Shevchenko\": [\n        \"NNP\"\n    ], \n    \"League-sponsored\": [\n        \"JJ\"\n    ], \n    \"Ambiguan\": [\n        \"JJ\"\n    ], \n    \"Lubrizol\": [\n        \"NNP\"\n    ], \n    \"chaffing\": [\n        \"VBG\"\n    ], \n    \"belaboring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kiryat\": [\n        \"NNP\"\n    ], \n    \"dwindles\": [\n        \"VBZ\"\n    ], \n    \"Idealist\": [\n        \"NN\"\n    ], \n    \"Bauman\": [\n        \"NNP\"\n    ], \n    \"Avoidance\": [\n        \"NNP\"\n    ], \n    \"established\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"disk\": [\n        \"NN\"\n    ], \n    \"LSC\": [\n        \"NNP\"\n    ], \n    \"DeMyer\": [\n        \"NNP\"\n    ], \n    \"Dresdner-ABD\": [\n        \"NNP\"\n    ], \n    \"+\": [\n        \"SYM\", \n        \"NN\"\n    ], \n    \"Sherman\": [\n        \"NNP\"\n    ], \n    \"walkout\": [\n        \"NN\"\n    ], \n    \"LSI\": [\n        \"NNP\"\n    ], \n    \"sideman\": [\n        \"NN\"\n    ], \n    \"LSU\": [\n        \"NNP\"\n    ], \n    \"reconstruction\": [\n        \"NN\"\n    ], \n    \"drug-laden\": [\n        \"JJ\"\n    ], \n    \"SECURITY\": [\n        \"NN\"\n    ], \n    \"LSX\": [\n        \"NNP\"\n    ], \n    \"textures\": [\n        \"NNS\"\n    ], \n    \"Yeller\": [\n        \"JJ\"\n    ], \n    \"Stiles\": [\n        \"NNP\"\n    ], \n    \"Tiepolo\": [\n        \"NNP\"\n    ], \n    \"Yellen\": [\n        \"NNP\"\n    ], \n    \"textured\": [\n        \"JJ\"\n    ], \n    \"noncompliant\": [\n        \"JJ\"\n    ], \n    \"Dimitris\": [\n        \"NNP\"\n    ], \n    \"celebration\": [\n        \"NN\"\n    ], \n    \"F.S.B.\": [\n        \"NNP\"\n    ], \n    \"Vanities\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Widsith\": [\n        \"NNP\"\n    ], \n    \"Martinair\": [\n        \"NNP\"\n    ], \n    \"rigorously\": [\n        \"RB\"\n    ], \n    \"Tuesday\": [\n        \"NNP\"\n    ], \n    \"alter-ego\": [\n        \"NN\"\n    ], \n    \"Brozman\": [\n        \"NNP\"\n    ], \n    \"bunked\": [\n        \"VBD\"\n    ], \n    \"smoke\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bunker\": [\n        \"NN\"\n    ], \n    \"Negotiations\": [\n        \"NNS\"\n    ], \n    \"secure\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Cristal\": [\n        \"NNP\"\n    ], \n    \"windowpane\": [\n        \"NN\"\n    ], \n    \"phase-two\": [\n        \"JJ\"\n    ], \n    \"modulated\": [\n        \"VBN\"\n    ], \n    \"Interleukin-3\": [\n        \"NN\"\n    ], \n    \"wrack\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"BEVERLY\": [\n        \"NNP\"\n    ], \n    \"linearly\": [\n        \"RB\"\n    ], \n    \"experimentation\": [\n        \"NN\"\n    ], \n    \"shams\": [\n        \"NNS\"\n    ], \n    \"Nezhari\": [\n        \"NNP\"\n    ], \n    \"castor-oil\": [\n        \"NN\"\n    ], \n    \"Lock\": [\n        \"NNP\"\n    ], \n    \"knoll\": [\n        \"NN\"\n    ], \n    \"Corestates\": [\n        \"NNP\"\n    ], \n    \"Ssmc\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fragmentary\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"two-pronged\": [\n        \"JJ\"\n    ], \n    \"Dells\": [\n        \"NNP\"\n    ], \n    \"Plunkett\": [\n        \"NNP\"\n    ], \n    \"already-strained\": [\n        \"JJ\"\n    ], \n    \"sunbleached\": [\n        \"VBN\"\n    ], \n    \"stochastic\": [\n        \"JJ\"\n    ], \n    \"emeritus\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tariff\": [\n        \"NN\"\n    ], \n    \"authentically\": [\n        \"RB\"\n    ], \n    \"Della\": [\n        \"NNP\"\n    ], \n    \"soils\": [\n        \"NNS\"\n    ], \n    \"Porters\": [\n        \"NNPS\"\n    ], \n    \"unfailing\": [\n        \"JJ\"\n    ], \n    \"Courtier\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"grovel\": [\n        \"VB\"\n    ], \n    \"Habib\": [\n        \"NNP\"\n    ], \n    \"groves\": [\n        \"NNS\"\n    ], \n    \"tinder\": [\n        \"NN\"\n    ], \n    \"gallons\": [\n        \"NNS\"\n    ], \n    \"Astronaut\": [\n        \"NN\"\n    ], \n    \"Glance\": [\n        \"VB\"\n    ], \n    \"could\": [\n        \"MD\"\n    ], \n    \"piers\": [\n        \"NNS\"\n    ], \n    \"ascetic\": [\n        \"NN\"\n    ], \n    \"chemical-arms-control\": [\n        \"JJ\"\n    ], \n    \"Carnochan\": [\n        \"NNP\"\n    ], \n    \"whole-bank\": [\n        \"JJ\"\n    ], \n    \"flunking\": [\n        \"VBG\"\n    ], \n    \"unreadable\": [\n        \"JJ\"\n    ], \n    \"Freie\": [\n        \"NNP\"\n    ], \n    \"Nizer\": [\n        \"NNP\"\n    ], \n    \"Rowan\": [\n        \"NNP\"\n    ], \n    \"scientist-consultant\": [\n        \"NN\"\n    ], \n    \"unsatisfying\": [\n        \"JJ\"\n    ], \n    \"indifferent\": [\n        \"JJ\"\n    ], \n    \"altitudes\": [\n        \"NNS\"\n    ], \n    \"MOHAWK\": [\n        \"NNP\"\n    ], \n    \"envenomed\": [\n        \"VBN\"\n    ], \n    \"Iran-Iraq\": [\n        \"NNP\"\n    ], \n    \"IPTAY\": [\n        \"NNP\"\n    ], \n    \"snobbishly\": [\n        \"RB\"\n    ], \n    \"morbid\": [\n        \"JJ\"\n    ], \n    \"minuet\": [\n        \"NN\"\n    ], \n    \"objets\": [\n        \"FW\"\n    ], \n    \"if\": [\n        \"IN\"\n    ], \n    \"memorization\": [\n        \"NN\"\n    ], \n    \"tax-deductible\": [\n        \"JJ\"\n    ], \n    \"doable\": [\n        \"JJ\"\n    ], \n    \"Extruded\": [\n        \"VBN\"\n    ], \n    \"Gottshall\": [\n        \"NNP\"\n    ], \n    \"theatricality\": [\n        \"NN\"\n    ], \n    \"suing\": [\n        \"VBG\"\n    ], \n    \"unmiked\": [\n        \"VBN\"\n    ], \n    \"bottler\": [\n        \"NN\"\n    ], \n    \"chromatogram\": [\n        \"NN\"\n    ], \n    \"LeSabre\": [\n        \"NNP\"\n    ], \n    \"underbracing\": [\n        \"NN\"\n    ], \n    \"repeats\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Trusk\": [\n        \"NNP\"\n    ], \n    \"homeowners\": [\n        \"NNS\"\n    ], \n    \"fund-objective\": [\n        \"JJ\"\n    ], \n    \"nascent\": [\n        \"JJ\"\n    ], \n    \"corvettes\": [\n        \"NNS\"\n    ], \n    \"Trust\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"claimant\": [\n        \"NN\"\n    ], \n    \"ridings\": [\n        \"NNS\"\n    ], \n    \"Fitzwilliam\": [\n        \"NNP\"\n    ], \n    \"tricked\": [\n        \"VBN\"\n    ], \n    \"Switchgear\": [\n        \"NNP\"\n    ], \n    \"Innes\": [\n        \"NNP\"\n    ], \n    \"Inner\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"New-home\": [\n        \"JJ\"\n    ], \n    \"priciest\": [\n        \"JJS\"\n    ], \n    \"mayor\": [\n        \"NN\"\n    ], \n    \"Catholics\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"marketmaking\": [\n        \"NN\"\n    ], \n    \"Kalyani\": [\n        \"NNP\"\n    ], \n    \"waterworks\": [\n        \"NN\", \n        \"NN|NNS\"\n    ], \n    \"bronchiole\": [\n        \"NN\"\n    ], \n    \"bunching\": [\n        \"VBG\"\n    ], \n    \"count\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"beakers\": [\n        \"NNS\"\n    ], \n    \"fragment\": [\n        \"NN\"\n    ], \n    \"most-recommended-issues\": [\n        \"JJ\"\n    ], \n    \"promulgators\": [\n        \"NNS\"\n    ], \n    \"soothing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"stanza-form\": [\n        \"NN\"\n    ], \n    \"Labatt\": [\n        \"NNP\"\n    ], \n    \"loose-jowled\": [\n        \"JJ\"\n    ], \n    \"classified\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"backgrounds\": [\n        \"NNS\"\n    ], \n    \"naysay\": [\n        \"VB\"\n    ], \n    \"Softer\": [\n        \"JJR\"\n    ], \n    \"hexameter\": [\n        \"NN\"\n    ], \n    \"hard-won\": [\n        \"JJ\"\n    ], \n    \"MARGIN\": [\n        \"NN\"\n    ], \n    \"excavations\": [\n        \"NNS\"\n    ], \n    \"Newtonville\": [\n        \"NNP\"\n    ], \n    \"Kinnevik\": [\n        \"NNP\"\n    ], \n    \"councils\": [\n        \"NNS\"\n    ], \n    \"autocollimator\": [\n        \"NN\"\n    ], \n    \"pin-point\": [\n        \"JJ\"\n    ], \n    \"stronger-than-expected\": [\n        \"JJ\"\n    ], \n    \"Cyclone\": [\n        \"NNP\"\n    ], \n    \"Nellcor\": [\n        \"NNP\"\n    ], \n    \"radio-location\": [\n        \"NN\"\n    ], \n    \"Psyche\": [\n        \"NNP\"\n    ], \n    \"Lampe\": [\n        \"NNP\"\n    ], \n    \"Wary\": [\n        \"JJ\"\n    ], \n    \"Wars\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"vessels\": [\n        \"NNS\"\n    ], \n    \"strangers\": [\n        \"NNS\"\n    ], \n    \"forte\": [\n        \"NN\"\n    ], \n    \"Warm\": [\n        \"JJ\"\n    ], \n    \"understaffs\": [\n        \"VBZ\"\n    ], \n    \"Ward\": [\n        \"NNP\"\n    ], \n    \"Chatham\": [\n        \"NNP\"\n    ], \n    \"forth\": [\n        \"RB\", \n        \"RP\"\n    ], \n    \"Convocations\": [\n        \"NNS\"\n    ], \n    \"PILGRIM\": [\n        \"NNP\"\n    ], \n    \"appointments\": [\n        \"NNS\"\n    ], \n    \"putty\": [\n        \"NN\"\n    ], \n    \"Palaces\": [\n        \"NNPS\"\n    ], \n    \"Scare\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"monoliths\": [\n        \"NNS\"\n    ], \n    \"Cambridge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eastern\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Gellert\": [\n        \"NNP\"\n    ], \n    \"construing\": [\n        \"VBG\"\n    ], \n    \"ordering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"four-bagger\": [\n        \"NN\"\n    ], \n    \"waterfall\": [\n        \"NN\"\n    ], \n    \"unenticing\": [\n        \"JJ\"\n    ], \n    \"low-paying\": [\n        \"JJ\"\n    ], \n    \"EuroTV\": [\n        \"NNP\"\n    ], \n    \"Rohm\": [\n        \"NNP\"\n    ], \n    \"truthfulness\": [\n        \"NN\"\n    ], \n    \"COAHR\": [\n        \"NNP\"\n    ], \n    \"E-71\": [\n        \"NNP\"\n    ], \n    \"Nationalized\": [\n        \"VBN\"\n    ], \n    \"beaching\": [\n        \"VBG\"\n    ], \n    \"toconsolidated\": [\n        \"VBN\"\n    ], \n    \"Cell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stalinist\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"four-day\": [\n        \"JJ\"\n    ], \n    \"Squeezing\": [\n        \"VBG\"\n    ], \n    \"blossomed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Doerner\": [\n        \"NNP\"\n    ], \n    \"drones\": [\n        \"NNS\"\n    ], \n    \"Harveys\": [\n        \"NNPS\"\n    ], \n    \"ficials\": [\n        \"NNS\"\n    ], \n    \"Cela\": [\n        \"NNP\"\n    ], \n    \"Rohs\": [\n        \"NNP\"\n    ], \n    \"Rohr\": [\n        \"NNP\"\n    ], \n    \"Magruder\": [\n        \"NNP\"\n    ], \n    \"gooseberry\": [\n        \"NN\"\n    ], \n    \"hearse\": [\n        \"NN\"\n    ], \n    \"protracted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"German-made\": [\n        \"JJ\"\n    ], \n    \"Shreveport\": [\n        \"NNP\"\n    ], \n    \"flagpole\": [\n        \"NN\"\n    ], \n    \"Isolde\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"Koshland\": [\n        \"NNP\"\n    ], \n    \"Census\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vetoes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ludicrously\": [\n        \"RB\"\n    ], \n    \"early-season\": [\n        \"JJ\"\n    ], \n    \"plant-expansion\": [\n        \"JJ\"\n    ], \n    \"Guffey\": [\n        \"NNP\"\n    ], \n    \"totted\": [\n        \"VBN\"\n    ], \n    \"Forsan\": [\n        \"FW\"\n    ], \n    \"Necklace\": [\n        \"NNP\"\n    ], \n    \"Brookmeyer\": [\n        \"NNP\"\n    ], \n    \"ever-existent\": [\n        \"JJ\"\n    ], \n    \"Communism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"extracurricular\": [\n        \"JJ\"\n    ], \n    \"one-pound-or-so\": [\n        \"JJ\"\n    ], \n    \"kung-fu\": [\n        \"NN\"\n    ], \n    \"tavern\": [\n        \"NN\"\n    ], \n    \"admonitions\": [\n        \"NNS\"\n    ], \n    \"Kerensky\": [\n        \"NNP\"\n    ], \n    \"Dompierre\": [\n        \"NNP\"\n    ], \n    \"devious\": [\n        \"JJ\"\n    ], \n    \"Purina\": [\n        \"NNP\"\n    ], \n    \"encumbered\": [\n        \"VBN\"\n    ], \n    \"bronchitis\": [\n        \"NN\"\n    ], \n    \"Romero\": [\n        \"NNP\"\n    ], \n    \"Tax-loss\": [\n        \"NN\"\n    ], \n    \"Mironenko\": [\n        \"NNP\"\n    ], \n    \"DIAPER\": [\n        \"NN\"\n    ], \n    \"House-Senate\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"stomach\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Correct\": [\n        \"JJ\"\n    ], \n    \"Cumhuriyet\": [\n        \"NNP\"\n    ], \n    \"alors\": [\n        \"FW\"\n    ], \n    \"stomack\": [\n        \"NN\"\n    ], \n    \"mean-spirited\": [\n        \"JJ\"\n    ], \n    \"MUMBO\": [\n        \"NN\"\n    ], \n    \"Nymex\": [\n        \"NNP\"\n    ], \n    \"Tudor-style\": [\n        \"JJ\"\n    ], \n    \"magnum\": [\n        \"NN\"\n    ], \n    \"Mahathir\": [\n        \"NNP\"\n    ], \n    \"Stolen\": [\n        \"NNP\"\n    ], \n    \"Dniepr\": [\n        \"NNP\"\n    ], \n    \"prohibitive\": [\n        \"JJ\"\n    ], \n    \"Naderite\": [\n        \"NNP|JJ\"\n    ], \n    \"devoutly\": [\n        \"RB\"\n    ], \n    \"Olivier\": [\n        \"NNP\"\n    ], \n    \"cumulatively\": [\n        \"RB\"\n    ], \n    \"Side\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"manifested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Excise-tax\": [\n        \"JJ\"\n    ], \n    \"leavening\": [\n        \"VBG\"\n    ], \n    \"antidepressant\": [\n        \"NN\"\n    ], \n    \"deacon\": [\n        \"NN\"\n    ], \n    \"unsophisticated\": [\n        \"JJ\"\n    ], \n    \"Jerrico\": [\n        \"NNP\"\n    ], \n    \"notion\": [\n        \"NN\"\n    ], \n    \"fussy\": [\n        \"JJ\"\n    ], \n    \"dredged\": [\n        \"VBD\"\n    ], \n    \"Amatayakul\": [\n        \"NNP\"\n    ], \n    \"Kiep\": [\n        \"NNP\"\n    ], \n    \"Kiev\": [\n        \"NNP\"\n    ], \n    \"Carriers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"anti-abortion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"barbiturate\": [\n        \"NN\"\n    ], \n    \"HUNTLEY\": [\n        \"NNP\"\n    ], \n    \"Gouldings\": [\n        \"NNPS\"\n    ], \n    \"infrared\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"serenely\": [\n        \"RB\"\n    ], \n    \"IH.\": [\n        \"NNP\"\n    ], \n    \"dredges\": [\n        \"VBZ\"\n    ], \n    \"wrung\": [\n        \"VB\"\n    ], \n    \"good-size\": [\n        \"JJ\"\n    ], \n    \"bemaddening\": [\n        \"VBG\"\n    ], \n    \"Kiel\": [\n        \"NNP\"\n    ], \n    \"latent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Brand\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Republicans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bldg\": [\n        \"NNP\"\n    ], \n    \"frivolities\": [\n        \"NNS\"\n    ], \n    \"SCHLOSS\": [\n        \"NNP\"\n    ], \n    \"custom-fit\": [\n        \"VB\"\n    ], \n    \"summarizing\": [\n        \"VBG\"\n    ], \n    \"accompanists\": [\n        \"NNS\"\n    ], \n    \"Brant\": [\n        \"NNP\"\n    ], \n    \"fatboy\": [\n        \"NN\"\n    ], \n    \"financial-related\": [\n        \"JJ\"\n    ], \n    \"Plumrose\": [\n        \"NNP\"\n    ], \n    \"predecessor\": [\n        \"NN\"\n    ], \n    \"Harms\": [\n        \"NNP\"\n    ], \n    \"center-fire\": [\n        \"JJ\"\n    ], \n    \"auditor-general\": [\n        \"NN\"\n    ], \n    \"frowning\": [\n        \"VBG\"\n    ], \n    \"Soviet\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Nikonov\": [\n        \"NNP\"\n    ], \n    \"chastened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Armstrong\": [\n        \"NNP\"\n    ], \n    \"blunderings\": [\n        \"NNS\"\n    ], \n    \"Fresnel\": [\n        \"NNP\"\n    ], \n    \"oil-industry\": [\n        \"NN\"\n    ], \n    \"Denman\": [\n        \"NNP\"\n    ], \n    \"syllabicity\": [\n        \"NN\"\n    ], \n    \"Upson\": [\n        \"NNP\"\n    ], \n    \"Weasel\": [\n        \"NNP\"\n    ], \n    \"endosperm\": [\n        \"NN\"\n    ], \n    \"Overextension\": [\n        \"NN\"\n    ], \n    \"Pull\": [\n        \"VB\"\n    ], \n    \"Pepperidge\": [\n        \"NNP\"\n    ], \n    \"Bailkin\": [\n        \"NNP\"\n    ], \n    \"now-misplaced\": [\n        \"JJ\"\n    ], \n    \"sewage-polluted\": [\n        \"JJ\"\n    ], \n    \"Homecoming\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SEEKS\": [\n        \"VBZ\"\n    ], \n    \"bake-offs\": [\n        \"NNS\"\n    ], \n    \"ES250\": [\n        \"NNP\"\n    ], \n    \"Quick-Wate\": [\n        \"NNP\"\n    ], \n    \"snoozing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Presbyterianism\": [\n        \"NN\"\n    ], \n    \"symmetric\": [\n        \"JJ\"\n    ], \n    \"Asensio\": [\n        \"NNP\"\n    ], \n    \"chattels\": [\n        \"NNS\"\n    ], \n    \"multiple-paged\": [\n        \"JJ\"\n    ], \n    \"Cralin\": [\n        \"NNP\"\n    ], \n    \"paramagnetic\": [\n        \"JJ\"\n    ], \n    \"slugs\": [\n        \"NNS\"\n    ], \n    \"Ten-year\": [\n        \"JJ\"\n    ], \n    \"Preoccupied\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pre-conscious\": [\n        \"JJ\"\n    ], \n    \"Argus\": [\n        \"NNP\"\n    ], \n    \"city-bred\": [\n        \"JJ\"\n    ], \n    \"Westmoreland\": [\n        \"NNP\"\n    ], \n    \"CENTERIOR\": [\n        \"NNP\"\n    ], \n    \"Metromedia-ITT\": [\n        \"NNP\"\n    ], \n    \"Genie\": [\n        \"NNP\"\n    ], \n    \"data-handling\": [\n        \"NN\"\n    ], \n    \"saloonkeeper\": [\n        \"NN\"\n    ], \n    \"VICTOR\": [\n        \"NNP\"\n    ], \n    \"Pickford\": [\n        \"NNP\"\n    ], \n    \"common-carrier\": [\n        \"NN\"\n    ], \n    \"Focus\": [\n        \"NNP\"\n    ], \n    \"workroom\": [\n        \"NN\"\n    ], \n    \"twos\": [\n        \"NNS\"\n    ], \n    \"Leads\": [\n        \"VBZ\"\n    ], \n    \"axle-breaking\": [\n        \"JJ\"\n    ], \n    \"capital-draining\": [\n        \"VBG\"\n    ], \n    \"gobbledygook\": [\n        \"NN\"\n    ], \n    \"Garman\": [\n        \"NNP\"\n    ], \n    \"requests\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"negotiation\": [\n        \"NN\"\n    ], \n    \"eyesight\": [\n        \"NN\"\n    ], \n    \"non-core\": [\n        \"JJ\"\n    ], \n    \"Electricity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"KMW\": [\n        \"NNP\"\n    ], \n    \"Galicians\": [\n        \"NNPS\"\n    ], \n    \"money-strapped\": [\n        \"JJ\"\n    ], \n    \"Groupe\": [\n        \"NNP\"\n    ], \n    \"broadening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"FREIGHTWAYS\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"moon-splashed\": [\n        \"JJ\"\n    ], \n    \"chimneys\": [\n        \"NNS\"\n    ], \n    \"Hillary\": [\n        \"NNP\"\n    ], \n    \"Boxer\": [\n        \"NNP\"\n    ], \n    \"Rust\": [\n        \"NNP\"\n    ], \n    \"Groups\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"post-retirement\": [\n        \"JJ\"\n    ], \n    \"Igdaloff\": [\n        \"NNP\"\n    ], \n    \"Bootle\": [\n        \"NNP\"\n    ], \n    \"cutouts\": [\n        \"NNS\"\n    ], \n    \"families\": [\n        \"NNS\"\n    ], \n    \"autumns\": [\n        \"NNS\"\n    ], \n    \"beastly\": [\n        \"JJ\"\n    ], \n    \"Citizens\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"jeopardized\": [\n        \"VBN\"\n    ], \n    \"carbamazepine\": [\n        \"NN\"\n    ], \n    \"coherent\": [\n        \"JJ\"\n    ], \n    \"Montreux\": [\n        \"NNP\"\n    ], \n    \"Superstitions\": [\n        \"NNPS\"\n    ], \n    \"jeopardizes\": [\n        \"VBZ\"\n    ], \n    \"Bozeman\": [\n        \"NNP\"\n    ], \n    \"nose-dive\": [\n        \"NN\"\n    ], \n    \"Cynical\": [\n        \"JJ\"\n    ], \n    \"soundproof\": [\n        \"JJ\"\n    ], \n    \"Chelmno\": [\n        \"NNP\"\n    ], \n    \"Altos\": [\n        \"NNP\"\n    ], \n    \"pre-colonial\": [\n        \"NN\"\n    ], \n    \"depictions\": [\n        \"NNS\"\n    ], \n    \"Accused\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"abrupt\": [\n        \"JJ\"\n    ], \n    \"Dried\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"coffin\": [\n        \"NN\"\n    ], \n    \"mealtime\": [\n        \"NN\"\n    ], \n    \"double-digit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"smorgasbord\": [\n        \"NN\"\n    ], \n    \"Thence\": [\n        \"RB\"\n    ], \n    \"discourses\": [\n        \"NNS\"\n    ], \n    \"Crises\": [\n        \"NNS\"\n    ], \n    \"dumped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"glutamic\": [\n        \"JJ\"\n    ], \n    \"plastic-coated\": [\n        \"JJ\"\n    ], \n    \"British-built\": [\n        \"JJ\"\n    ], \n    \"Jelke\": [\n        \"NNP\"\n    ], \n    \"comparative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Falling\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Rococo\": [\n        \"JJ\"\n    ], \n    \"confirmed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"One-Horse\": [\n        \"JJ\"\n    ], \n    \"patent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"punctuation\": [\n        \"NN\"\n    ], \n    \"skyjacked\": [\n        \"VBN\"\n    ], \n    \"unharmed\": [\n        \"JJ\"\n    ], \n    \"Ingersoll\": [\n        \"NNP\"\n    ], \n    \"raid\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Crisman\": [\n        \"NNP\"\n    ], \n    \"high-frequency\": [\n        \"JJ\"\n    ], \n    \"blames\": [\n        \"VBZ\"\n    ], \n    \"Hocke\": [\n        \"NNP\"\n    ], \n    \"closings\": [\n        \"NNS\"\n    ], \n    \"rain\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Basel-based\": [\n        \"JJ\"\n    ], \n    \"Berol\": [\n        \"NNP\"\n    ], \n    \"Milquetoasts\": [\n        \"NNS\"\n    ], \n    \"Y\": [\n        \"NNP\", \n        \"PRP\", \n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"faiths\": [\n        \"NNS\"\n    ], \n    \"blamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"literatures\": [\n        \"NNS\"\n    ], \n    \"Diplomats\": [\n        \"NNS\"\n    ], \n    \"Kegham\": [\n        \"NNP\"\n    ], \n    \"scenario\": [\n        \"NN\"\n    ], \n    \"counterman\": [\n        \"NN\"\n    ], \n    \"Electrification\": [\n        \"NNP\"\n    ], \n    \"orgasms\": [\n        \"NNS\"\n    ], \n    \"bodes\": [\n        \"VBZ\"\n    ], \n    \"Proper\": [\n        \"JJ\"\n    ], \n    \"camps\": [\n        \"NNS\"\n    ], \n    \"deficit-debt\": [\n        \"NN\"\n    ], \n    \"kinship\": [\n        \"NN\"\n    ], \n    \"privately-owned\": [\n        \"JJ\"\n    ], \n    \"Sheldon\": [\n        \"NNP\"\n    ], \n    \"Able\": [\n        \"NNP\"\n    ], \n    \"repose\": [\n        \"NN\"\n    ], \n    \"Bonn-sponsored\": [\n        \"NNP\"\n    ], \n    \"Surprise\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"convivial\": [\n        \"JJ\"\n    ], \n    \"adding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Lazy\": [\n        \"NNP\"\n    ], \n    \"starboard\": [\n        \"VB\"\n    ], \n    \"order-taker\": [\n        \"NN\"\n    ], \n    \"dished\": [\n        \"VBD\"\n    ], \n    \"Leeches\": [\n        \"NNS\"\n    ], \n    \"Offenbach\": [\n        \"NNP\"\n    ], \n    \"surtax\": [\n        \"NN\"\n    ], \n    \"rescission\": [\n        \"NN\"\n    ], \n    \"Slovenia\": [\n        \"NNP\"\n    ], \n    \"advisories\": [\n        \"NNS\"\n    ], \n    \"transformed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"VALLEY\": [\n        \"NNP\"\n    ], \n    \"plasma\": [\n        \"NN\"\n    ], \n    \"Tampa\": [\n        \"NNP\"\n    ], \n    \"Filipino\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"basses\": [\n        \"NNS\"\n    ], \n    \"Aarvik\": [\n        \"NNP\"\n    ], \n    \"Combis\": [\n        \"NNPS\"\n    ], \n    \"Envigado\": [\n        \"NNP\"\n    ], \n    \"Priem\": [\n        \"NNP\"\n    ], \n    \"printing-press\": [\n        \"NN\"\n    ], \n    \"arak\": [\n        \"FW\"\n    ], \n    \"penny-stockbroker\": [\n        \"NN\"\n    ], \n    \"disadvantage\": [\n        \"NN\"\n    ], \n    \"multiplexing\": [\n        \"NN\"\n    ], \n    \"insurgent\": [\n        \"JJ\"\n    ], \n    \"Guadalupe\": [\n        \"NNP\"\n    ], \n    \"immoralities\": [\n        \"NNS\"\n    ], \n    \"midcapitalization\": [\n        \"NN\"\n    ], \n    \"Zambian\": [\n        \"JJ\"\n    ], \n    \"lapsed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tight-turn\": [\n        \"JJ\"\n    ], \n    \"Trading\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Necci\": [\n        \"NNP\"\n    ], \n    \"lapses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Yao\": [\n        \"NNP\"\n    ], \n    \"starvation\": [\n        \"NN\"\n    ], \n    \"gas-guzzling\": [\n        \"JJ\"\n    ], \n    \"sends\": [\n        \"VBZ\"\n    ], \n    \"Divided\": [\n        \"VBN\"\n    ], \n    \"Tom\": [\n        \"NNP\"\n    ], \n    \"antimonide\": [\n        \"NN\"\n    ], \n    \"webs\": [\n        \"NNS\"\n    ], \n    \"Loewenstern\": [\n        \"NNP\"\n    ], \n    \"Planeten\": [\n        \"NNP\"\n    ], \n    \"Seasoned\": [\n        \"JJ\"\n    ], \n    \"separateness\": [\n        \"NN\"\n    ], \n    \"Mesaba\": [\n        \"NNP\"\n    ], \n    \"Lea\": [\n        \"NNP\"\n    ], \n    \"Lipman\": [\n        \"NNP\"\n    ], \n    \"Led\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Lee\": [\n        \"NNP\"\n    ], \n    \"Leg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"phenomenal\": [\n        \"JJ\"\n    ], \n    \"Lek\": [\n        \"NNP\"\n    ], \n    \"Kots\": [\n        \"NNP\"\n    ], \n    \"Len\": [\n        \"NNP\"\n    ], \n    \"Leo\": [\n        \"NNP\"\n    ], \n    \"Lep\": [\n        \"NNP\"\n    ], \n    \"Les\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Let\": [\n        \"VB\", \n        \"NNP\", \n        \"VBD\"\n    ], \n    \"Leu\": [\n        \"NNP\"\n    ], \n    \"Lev\": [\n        \"NNP\"\n    ], \n    \"Lew\": [\n        \"NNP\"\n    ], \n    \"Lex\": [\n        \"NNP\"\n    ], \n    \"lagers\": [\n        \"NNS\"\n    ], \n    \"WNET\": [\n        \"NNP\"\n    ], \n    \"past-due\": [\n        \"JJ\"\n    ], \n    \"scribbles\": [\n        \"VBZ\"\n    ], \n    \"Hedman\": [\n        \"NNP\"\n    ], \n    \"half-city\": [\n        \"NN\"\n    ], \n    \"Caucusing\": [\n        \"VBG\"\n    ], \n    \"unswaggering\": [\n        \"JJ\"\n    ], \n    \"patienthood\": [\n        \"NN\"\n    ], \n    \"graduates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"blander\": [\n        \"JJR\"\n    ], \n    \"Swine\": [\n        \"JJ\"\n    ], \n    \"Swing\": [\n        \"NNP\"\n    ], \n    \"scarves\": [\n        \"NN\"\n    ], \n    \"Swink\": [\n        \"NNP\"\n    ], \n    \"Deryck\": [\n        \"NNP\"\n    ], \n    \"dines\": [\n        \"VBZ\"\n    ], \n    \"diner\": [\n        \"NN\"\n    ], \n    \"impenetrable\": [\n        \"JJ\"\n    ], \n    \"theirs\": [\n        \"PRP\", \n        \"JJ\"\n    ], \n    \"Ceramic\": [\n        \"JJ\"\n    ], \n    \"Mortage\": [\n        \"NNP\"\n    ], \n    \"bone-deep\": [\n        \"JJ\"\n    ], \n    \"dined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cherish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pupil\": [\n        \"NN\"\n    ], \n    \"Ciciulla\": [\n        \"NNP\"\n    ], \n    \"pegged-down\": [\n        \"JJ\"\n    ], \n    \"mantle\": [\n        \"NN\"\n    ], \n    \"Factory-to-You\": [\n        \"NNP\"\n    ], \n    \"Make\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"delighted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Poison\": [\n        \"NN\"\n    ], \n    \"balances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Weinberger\": [\n        \"NNP\"\n    ], \n    \"balanced\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lewd\": [\n        \"JJ\"\n    ], \n    \"malignancies\": [\n        \"NNS\"\n    ], \n    \"Sirs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Ketchum\": [\n        \"NNP\"\n    ], \n    \"fuchsia\": [\n        \"NN\"\n    ], \n    \"liquidated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Solzhenitsyn\": [\n        \"NNP\"\n    ], \n    \"unstressed\": [\n        \"JJ\"\n    ], \n    \"general-election\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"crime-infested\": [\n        \"JJ\"\n    ], \n    \"book-selection\": [\n        \"NN\"\n    ], \n    \"vitality\": [\n        \"NN\"\n    ], \n    \"Kurzweil\": [\n        \"NNP\"\n    ], \n    \"McLauchlin\": [\n        \"NNP\"\n    ], \n    \"encoded\": [\n        \"VBN\"\n    ], \n    \"Filigreed\": [\n        \"JJ\"\n    ], \n    \"reset\": [\n        \"NN\", \n        \"VBN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"responding\": [\n        \"VBG\"\n    ], \n    \"unthinkable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"generosity\": [\n        \"NN\"\n    ], \n    \"Bacterial\": [\n        \"JJ\"\n    ], \n    \"Milman\": [\n        \"NNP\"\n    ], \n    \"Milstein\": [\n        \"NNP\"\n    ], \n    \"Chicago-Manchester\": [\n        \"NNP\"\n    ], \n    \"private-sector\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hotter\": [\n        \"JJR\"\n    ], \n    \"electric-sewer-water\": [\n        \"JJ\"\n    ], \n    \"theorizing\": [\n        \"NN\"\n    ], \n    \"Scampini\": [\n        \"NNP\"\n    ], \n    \"Wanderjahr\": [\n        \"NN\"\n    ], \n    \"Hector\": [\n        \"NNP\"\n    ], \n    \"subsist\": [\n        \"VB\"\n    ], \n    \"cacao\": [\n        \"NN\"\n    ], \n    \"Blunt\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mole\": [\n        \"NN\"\n    ], \n    \"dosages\": [\n        \"NNS\"\n    ], \n    \"inculcated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"baguette\": [\n        \"FW\"\n    ], \n    \"Jacobean\": [\n        \"JJ\"\n    ], \n    \"weaned\": [\n        \"VBN\"\n    ], \n    \"weakened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"handmade\": [\n        \"JJ\"\n    ], \n    \"foot-tall\": [\n        \"JJ\"\n    ], \n    \"liberalized\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"negotiators\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Carrozza\": [\n        \"NN\"\n    ], \n    \"Supercritical\": [\n        \"NNP\"\n    ], \n    \"shoji\": [\n        \"FW\"\n    ], \n    \"limited-partnership\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tripped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ENCYCLOPAEDIA\": [\n        \"NNP\"\n    ], \n    \"EXECUTIVES\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Dallas-Fort\": [\n        \"NNP\"\n    ], \n    \"Gifting\": [\n        \"NN\"\n    ], \n    \"Stalinists\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"guiltless\": [\n        \"JJ\"\n    ], \n    \"yardage\": [\n        \"NN\"\n    ], \n    \"CHEWING\": [\n        \"VBG\"\n    ], \n    \"Massive\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Monument\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"action-results\": [\n        \"NNS\"\n    ], \n    \"Fausto\": [\n        \"NNP\"\n    ], \n    \"auto-obscuria\": [\n        \"NN\"\n    ], \n    \"B.V.\": [\n        \"NNP\"\n    ], \n    \"pseudo-thinking\": [\n        \"NN\"\n    ], \n    \"cheated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"hemophilia\": [\n        \"NN\"\n    ], \n    \"Tritium\": [\n        \"NN\"\n    ], \n    \"pollings\": [\n        \"NNS\"\n    ], \n    \"woodworm\": [\n        \"NN\"\n    ], \n    \"affidavit\": [\n        \"NN\"\n    ], \n    \"Gourman\": [\n        \"NNP\"\n    ], \n    \"cheater\": [\n        \"NN\"\n    ], \n    \"Ropart\": [\n        \"NNP\"\n    ], \n    \"Teutonic\": [\n        \"JJ\"\n    ], \n    \"Penutian\": [\n        \"NNP\"\n    ], \n    \"centuries-old\": [\n        \"JJ\"\n    ], \n    \"lineup\": [\n        \"NN\"\n    ], \n    \"Situated\": [\n        \"VBN\"\n    ], \n    \"government-sponsored\": [\n        \"JJ\"\n    ], \n    \"computer-assembly\": [\n        \"NN\"\n    ], \n    \"vampires\": [\n        \"NNS\"\n    ], \n    \"write-off\": [\n        \"NN\"\n    ], \n    \"single-family\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"global\": [\n        \"JJ\"\n    ], \n    \"Parsley\": [\n        \"NNP\"\n    ], \n    \"Dundee\": [\n        \"NNP\"\n    ], \n    \"Lintner\": [\n        \"NNP\"\n    ], \n    \"irritants\": [\n        \"NNS\"\n    ], \n    \"Haugh\": [\n        \"NNP\"\n    ], \n    \"Quite\": [\n        \"RB\", \n        \"PDT\", \n        \"JJ\"\n    ], \n    \"tea-drinking\": [\n        \"NN\"\n    ], \n    \"brochure\": [\n        \"NN\"\n    ], \n    \"Comparable\": [\n        \"JJ\"\n    ], \n    \"grape\": [\n        \"NN\"\n    ], \n    \"zone\": [\n        \"NN\"\n    ], \n    \"flask\": [\n        \"NN\"\n    ], \n    \"hums\": [\n        \"VBZ\"\n    ], \n    \"adenocard\": [\n        \"NN\"\n    ], \n    \"flash\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Jean-Luc\": [\n        \"NNP\"\n    ], \n    \"Strenuous\": [\n        \"JJ\"\n    ], \n    \"videos\": [\n        \"NNS\"\n    ], \n    \"feebly\": [\n        \"RB\"\n    ], \n    \"protective\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Zhu\": [\n        \"NNP\"\n    ], \n    \"Effoa\": [\n        \"NNP\"\n    ], \n    \"dispelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Amfesco\": [\n        \"NNP\"\n    ], \n    \"financeer\": [\n        \"NN\"\n    ], \n    \"Kililngsworth\": [\n        \"NNP\"\n    ], \n    \"floodlighted\": [\n        \"VBN\"\n    ], \n    \"Klinger\": [\n        \"NNP\"\n    ], \n    \"Volunteers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Cincinnati-based\": [\n        \"JJ\"\n    ], \n    \"feeble\": [\n        \"JJ\"\n    ], \n    \"Rapoport\": [\n        \"NNP\"\n    ], \n    \"tooling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Facility\": [\n        \"NNP\"\n    ], \n    \"altering\": [\n        \"VBG\"\n    ], \n    \"Rita-Sue\": [\n        \"NNP\"\n    ], \n    \"fragile\": [\n        \"JJ\"\n    ], \n    \"puppy\": [\n        \"NN\"\n    ], \n    \"Cheerful\": [\n        \"JJ\"\n    ], \n    \"ruminants\": [\n        \"NNS\"\n    ], \n    \"Pastures\": [\n        \"NNS\"\n    ], \n    \"Transylvania\": [\n        \"NNP\"\n    ], \n    \"PCS\": [\n        \"NNP\"\n    ], \n    \"PCP\": [\n        \"NNP\"\n    ], \n    \"repetitive\": [\n        \"JJ\"\n    ], \n    \"PCM\": [\n        \"NNP\"\n    ], \n    \"Bryson\": [\n        \"NNP\"\n    ], \n    \"Rodale\": [\n        \"NNP\"\n    ], \n    \"Bapilly\": [\n        \"NNP\"\n    ], \n    \"Rider\": [\n        \"NNP\"\n    ], \n    \"decelerating\": [\n        \"VBG\"\n    ], \n    \"Fittro\": [\n        \"NNP\"\n    ], \n    \"Lowe\": [\n        \"NNP\"\n    ], \n    \"Lown\": [\n        \"NNP\"\n    ], \n    \"PCs\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"scaffold\": [\n        \"NN\"\n    ], \n    \"voume\": [\n        \"NN\"\n    ], \n    \"Gebrueder\": [\n        \"NNP\"\n    ], \n    \"Basso\": [\n        \"NNP\"\n    ], \n    \"During\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Viaje\": [\n        \"NNP\"\n    ], \n    \"supporting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"burn\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"explosion\": [\n        \"NN\"\n    ], \n    \"Berri\": [\n        \"NNP\"\n    ], \n    \"overseers\": [\n        \"NNS\"\n    ], \n    \"corporate-earnings\": [\n        \"NNS\"\n    ], \n    \"Berra\": [\n        \"NNP\"\n    ], \n    \"Hentoff\": [\n        \"NNP\"\n    ], \n    \"Berry\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"demonizing\": [\n        \"NN\"\n    ], \n    \"Bassi\": [\n        \"NNP\"\n    ], \n    \"rubbery\": [\n        \"JJ\"\n    ], \n    \"appears\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"change\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Skandinaviska\": [\n        \"NNP\"\n    ], \n    \"pedals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"MacNeil-Lehrer\": [\n        \"NNP\"\n    ], \n    \"Edzard\": [\n        \"NNP\"\n    ], \n    \"Humpty\": [\n        \"NNP\"\n    ], \n    \"Cardiovasculatory\": [\n        \"NNP\"\n    ], \n    \"Sweig\": [\n        \"NNP\"\n    ], \n    \"detonate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"trial\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"aviation-services\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Resnick\": [\n        \"NNP\"\n    ], \n    \"jaw\": [\n        \"NN\"\n    ], \n    \"seedcoats\": [\n        \"NNS\"\n    ], \n    \"triad\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fahlgren\": [\n        \"NNP\"\n    ], \n    \"agates\": [\n        \"NNS\"\n    ], \n    \"inference\": [\n        \"NN\"\n    ], \n    \"Rangoni\": [\n        \"NNP\"\n    ], \n    \"Zwei\": [\n        \"NNP\"\n    ], \n    \"lending\": [\n        \"NN\", \n        \"VBG\", \n        \"NN|VBG\", \n        \"JJ\"\n    ], \n    \"Palasts\": [\n        \"NNPS\"\n    ], \n    \"Malays\": [\n        \"NNP\"\n    ], \n    \"Update\": [\n        \"NNP\"\n    ], \n    \"keeper\": [\n        \"NN\"\n    ], \n    \"retires\": [\n        \"VBZ\"\n    ], \n    \"suicides\": [\n        \"NNS\"\n    ], \n    \"discrediting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"terminal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"streetcar\": [\n        \"NN\"\n    ], \n    \"Stritch\": [\n        \"NNP\"\n    ], \n    \"Tiger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Caddyshack\": [\n        \"NNP\"\n    ], \n    \"live\": [\n        \"VB\", \n        \"RB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"jam\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Tammy\": [\n        \"NNP\"\n    ], \n    \"eccentrics\": [\n        \"NNS\"\n    ], \n    \"marginally\": [\n        \"RB\"\n    ], \n    \"deluxer\": [\n        \"NN\"\n    ], \n    \"re-insure\": [\n        \"VB\"\n    ], \n    \"credulity\": [\n        \"NN\"\n    ], \n    \"Waltermire\": [\n        \"NNP\"\n    ], \n    \"ABC\": [\n        \"NNP\"\n    ], \n    \"Echeandia\": [\n        \"NNP\"\n    ], \n    \"Beverage\": [\n        \"NNP\"\n    ], \n    \"Ulanys\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"risk-analysis\": [\n        \"NN\"\n    ], \n    \"pay-out\": [\n        \"NN\"\n    ], \n    \"misconception\": [\n        \"NN\"\n    ], \n    \"Moune\": [\n        \"NNP\"\n    ], \n    \"clumps\": [\n        \"NNS\"\n    ], \n    \"yelling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"logarithm\": [\n        \"NN\"\n    ], \n    \"Concise\": [\n        \"JJ\"\n    ], \n    \"Jens\": [\n        \"NNP\"\n    ], \n    \"Epilepsy\": [\n        \"NNP\"\n    ], \n    \"MMS\": [\n        \"NNP\"\n    ], \n    \"theater-exhibition\": [\n        \"NN\"\n    ], \n    \"gathers\": [\n        \"VBZ\"\n    ], \n    \"MMI\": [\n        \"NNP\"\n    ], \n    \"Alessio\": [\n        \"NNP\"\n    ], \n    \"Jena\": [\n        \"NNP\"\n    ], \n    \"Corporations\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"shock-damping\": [\n        \"JJ\"\n    ], \n    \"MMC\": [\n        \"NNP\"\n    ], \n    \"breeds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dedicated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"warm-hearted\": [\n        \"JJ\"\n    ], \n    \"AH-64\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"saith\": [\n        \"VBZ\", \n        \"VB\"\n    ], \n    \"expanding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"winehead\": [\n        \"NN\"\n    ], \n    \"supremacy\": [\n        \"NN\"\n    ], \n    \"Neoliberal\": [\n        \"JJ\"\n    ], \n    \"purity\": [\n        \"NN\"\n    ], \n    \"STRUGGLED\": [\n        \"VBD\"\n    ], \n    \"pong\": [\n        \"NN\"\n    ], \n    \"unlovable\": [\n        \"JJ\"\n    ], \n    \"Dataproducts\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"quota-increase\": [\n        \"JJ\"\n    ], \n    \"Magog\": [\n        \"NNP\"\n    ], \n    \"trophies\": [\n        \"NNS\"\n    ], \n    \"Fleischer\": [\n        \"NNP\"\n    ], \n    \"Norm\": [\n        \"NNP\"\n    ], \n    \"Acorn\": [\n        \"NNP\"\n    ], \n    \"Karkazis\": [\n        \"NNP\"\n    ], \n    \"Gene-splicing\": [\n        \"NN\"\n    ], \n    \"staircase\": [\n        \"NN\"\n    ], \n    \"planetary-science\": [\n        \"JJ\"\n    ], \n    \"commodity-oriented\": [\n        \"JJ\"\n    ], \n    \"prohibition\": [\n        \"NN\"\n    ], \n    \"banding\": [\n        \"VBG\"\n    ], \n    \"Trumplane\": [\n        \"NNP\"\n    ], \n    \"Lorincze\": [\n        \"NNP\"\n    ], \n    \"Pilson\": [\n        \"NNP\"\n    ], \n    \"crepe\": [\n        \"JJ\"\n    ], \n    \"remember\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Two-day\": [\n        \"JJ\"\n    ], \n    \"candles\": [\n        \"NNS\"\n    ], \n    \"tag-team\": [\n        \"JJ\"\n    ], \n    \"chin-out\": [\n        \"JJ\"\n    ], \n    \"home-mortgage\": [\n        \"JJ\"\n    ], \n    \"baseballs\": [\n        \"NNS\"\n    ], \n    \"truley\": [\n        \"RB\"\n    ], \n    \"crept\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rawlings\": [\n        \"NNP\"\n    ], \n    \"bleedings\": [\n        \"NNS\"\n    ], \n    \"Sulzer\": [\n        \"NNP\"\n    ], \n    \"installment-loan\": [\n        \"JJ\"\n    ], \n    \"embassies\": [\n        \"NNS\"\n    ], \n    \"tagged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Farm-machine\": [\n        \"NN\"\n    ], \n    \"foreclosure\": [\n        \"NN\"\n    ], \n    \"Spanish-American\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"colt\": [\n        \"NN\"\n    ], \n    \"toward\": [\n        \"IN\"\n    ], \n    \"goad\": [\n        \"NN\"\n    ], \n    \"cross-currency\": [\n        \"JJ\"\n    ], \n    \"Brezinski\": [\n        \"NNP\"\n    ], \n    \"coli\": [\n        \"NNS\"\n    ], \n    \"cold\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cole\": [\n        \"NN\"\n    ], \n    \"birds\": [\n        \"NNS\"\n    ], \n    \"cola\": [\n        \"NN\"\n    ], \n    \"Landini\": [\n        \"NNP\"\n    ], \n    \"sloe-eyed\": [\n        \"JJ\"\n    ], \n    \"rooftop\": [\n        \"NN\"\n    ], \n    \"Greater\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"assiduity\": [\n        \"NN\"\n    ], \n    \"Transactions\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"selves\": [\n        \"NNS\"\n    ], \n    \"reacting\": [\n        \"VBG\"\n    ], \n    \"Landing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"immortality\": [\n        \"NN\"\n    ], \n    \"Leesona-Holt\": [\n        \"NNP\"\n    ], \n    \"resurfaced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"enny\": [\n        \"JJ\"\n    ], \n    \"feats\": [\n        \"NNS\"\n    ], \n    \"Blythe\": [\n        \"NNP\"\n    ], \n    \"halt\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Trexler\": [\n        \"NNP\"\n    ], \n    \"Robertsons\": [\n        \"NNPS\"\n    ], \n    \"delinking\": [\n        \"NN\"\n    ], \n    \"Compliance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Zupan\": [\n        \"NNP\"\n    ], \n    \"wielded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"appoints\": [\n        \"VBZ\"\n    ], \n    \"Preventive\": [\n        \"JJ\"\n    ], \n    \"Elinor\": [\n        \"NNP\"\n    ], \n    \"hall\": [\n        \"NN\"\n    ], \n    \"halo\": [\n        \"NN\"\n    ], \n    \"Fery\": [\n        \"NNP\"\n    ], \n    \"LIVERPOOL\": [\n        \"NNP\"\n    ], \n    \"better-quality\": [\n        \"JJ\"\n    ], \n    \"Marlene\": [\n        \"NNP\"\n    ], \n    \"construction-management\": [\n        \"JJ\"\n    ], \n    \"jurisprudence\": [\n        \"NN\"\n    ], \n    \"Critical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"dramatical\": [\n        \"JJ\"\n    ], \n    \"Lowenstein\": [\n        \"NNP\"\n    ], \n    \"cancer-suppressing\": [\n        \"JJ\"\n    ], \n    \"em\": [\n        \"PRP\"\n    ], \n    \"Desire\": [\n        \"NN\"\n    ], \n    \"en\": [\n        \"IN\", \n        \"FW\", \n        \"RB\"\n    ], \n    \"eh\": [\n        \"UH\"\n    ], \n    \"Baer\": [\n        \"NNP\"\n    ], \n    \"trade-offs\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"worriedly\": [\n        \"RB\"\n    ], \n    \"Except\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Guadalajara\": [\n        \"NNP\"\n    ], \n    \"show\\\\\": [\n        \"NN\"\n    ], \n    \"Philadelphia-based\": [\n        \"JJ\"\n    ], \n    \"newscaster\": [\n        \"NN\"\n    ], \n    \"ex\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"et\": [\n        \"FW\", \n        \"VBD\", \n        \"CC\", \n        \"NNP\"\n    ], \n    \"er\": [\n        \"UH\"\n    ], \n    \"vying\": [\n        \"VBG\"\n    ], \n    \"foot-thick\": [\n        \"JJ\"\n    ], \n    \"opened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"space\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"VH-1\": [\n        \"NNP\"\n    ], \n    \"Torquemada\": [\n        \"NNP\"\n    ], \n    \"opener\": [\n        \"NN\"\n    ], \n    \"showy\": [\n        \"JJ\"\n    ], \n    \"castlelike\": [\n        \"JJ\"\n    ], \n    \"too-naked\": [\n        \"JJ\"\n    ], \n    \"eidetic\": [\n        \"JJ\"\n    ], \n    \"Mattei\": [\n        \"NNP\"\n    ], \n    \"Ghanaian\": [\n        \"JJ\"\n    ], \n    \"Stans\": [\n        \"NNP\"\n    ], \n    \"earthquake-related\": [\n        \"JJ\"\n    ], \n    \"mid-1989\": [\n        \"NN\"\n    ], \n    \"Covey\": [\n        \"NNP\"\n    ], \n    \"mid-1986\": [\n        \"NN\"\n    ], \n    \"Cover\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"eluted\": [\n        \"VBN\"\n    ], \n    \"quart\": [\n        \"NN\"\n    ], \n    \"Stand\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Lockwood\": [\n        \"NNP\"\n    ], \n    \"Foreign\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ransomes\": [\n        \"NNP\"\n    ], \n    \"rearrangements\": [\n        \"NNS\"\n    ], \n    \"barest\": [\n        \"JJS\"\n    ], \n    \"Beatie\": [\n        \"NNP\"\n    ], \n    \"Guiana\": [\n        \"NNP\"\n    ], \n    \"Bavarian\": [\n        \"JJ\"\n    ], \n    \"domes\": [\n        \"NNS\"\n    ], \n    \"Konner\": [\n        \"NNP\"\n    ], \n    \"Sarsaparilla\": [\n        \"NN\"\n    ], \n    \"Promise\": [\n        \"NNP\"\n    ], \n    \"domed\": [\n        \"JJ\"\n    ], \n    \"Even\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"concertos\": [\n        \"NNS\"\n    ], \n    \"Teslik\": [\n        \"NNP\"\n    ], \n    \"Asil\": [\n        \"NNP\"\n    ], \n    \"impossibly\": [\n        \"RB\"\n    ], \n    \"Fumio\": [\n        \"NN\"\n    ], \n    \"Asia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Inca\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Landers\": [\n        \"NNP\"\n    ], \n    \"orthographic\": [\n        \"JJ\"\n    ], \n    \"Rookie\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"impossible\": [\n        \"JJ\"\n    ], \n    \"forwarding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Ever\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Al-Sabah\": [\n        \"NNP\"\n    ], \n    \"Inco\": [\n        \"NNP\"\n    ], \n    \"sheep\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"sheer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Diamond\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sheet\": [\n        \"NN\"\n    ], \n    \"jugs\": [\n        \"NNS\"\n    ], \n    \"lightened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"weekdays\": [\n        \"NNS\", \n        \"RB\"\n    ], \n    \"transaminase\": [\n        \"NN\"\n    ], \n    \"naughtier\": [\n        \"JJR\"\n    ], \n    \"co-pilots\": [\n        \"NNS\"\n    ], \n    \"Galicia\": [\n        \"NNP\"\n    ], \n    \"Calmer\": [\n        \"JJR\"\n    ], \n    \"long-vanished\": [\n        \"JJ\"\n    ], \n    \"much-despised\": [\n        \"JJ\"\n    ], \n    \"sheen\": [\n        \"NN\"\n    ], \n    \"larder\": [\n        \"NN\"\n    ], \n    \"shampooed\": [\n        \"VBN\"\n    ], \n    \"Johansson\": [\n        \"NNP\"\n    ], \n    \"Waterseller\": [\n        \"NNP\"\n    ], \n    \"Neck\": [\n        \"NNP\"\n    ], \n    \"courier\": [\n        \"NN\"\n    ], \n    \"pelting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"sewer\": [\n        \"NN\"\n    ], \n    \"spot-checking\": [\n        \"NN\"\n    ], \n    \"peck\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Inc.\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"Quinzaine\": [\n        \"NNP\"\n    ], \n    \"rugged\": [\n        \"JJ\"\n    ], \n    \"Heisch\": [\n        \"NNP\"\n    ], \n    \"Speculators\": [\n        \"NNS\"\n    ], \n    \"Larkspur\": [\n        \"NNP\"\n    ], \n    \"non-union\": [\n        \"JJ\"\n    ], \n    \"shady\": [\n        \"JJ\"\n    ], \n    \"sublime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Furillo\": [\n        \"NNP\"\n    ], \n    \"Remarketers\": [\n        \"NNS\"\n    ], \n    \"saute\": [\n        \"VB\"\n    ], \n    \"correction\": [\n        \"NN\"\n    ], \n    \"World-Journal-Tribune\": [\n        \"NNP\"\n    ], \n    \"Cali\": [\n        \"NNP\"\n    ], \n    \"too-simple-to-be-true\": [\n        \"JJ\"\n    ], \n    \"Call\": [\n        \"VB\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Calm\": [\n        \"JJ\"\n    ], \n    \"abnormalities\": [\n        \"NNS\"\n    ], \n    \"breakfast\": [\n        \"NN\"\n    ], \n    \"Crawford\": [\n        \"NNP\"\n    ], \n    \"Cale\": [\n        \"NNP\"\n    ], \n    \"Calf\": [\n        \"NNP\"\n    ], \n    \"sterilized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"anti-Kabul\": [\n        \"JJ\"\n    ], \n    \"Phi\": [\n        \"NNP\"\n    ], \n    \"cavemen\": [\n        \"NNS\"\n    ], \n    \"skidding\": [\n        \"VBG\"\n    ], \n    \"Hellene\": [\n        \"NNP\"\n    ], \n    \"Non-interest\": [\n        \"JJ\"\n    ], \n    \"mismeasurement\": [\n        \"NN\"\n    ], \n    \"Exodus\": [\n        \"NNP\"\n    ], \n    \"faciunt\": [\n        \"FW\"\n    ], \n    \"six-cylinder\": [\n        \"JJ\"\n    ], \n    \"trans-Pacific\": [\n        \"JJ\"\n    ], \n    \"Osipenko\": [\n        \"NNP\"\n    ], \n    \"SUNY\": [\n        \"NNP\"\n    ], \n    \"Colombians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"PS\": [\n        \"NNP\"\n    ], \n    \"Markoe\": [\n        \"NNP\"\n    ], \n    \"Less-than-truckload\": [\n        \"JJ\"\n    ], \n    \"Nacion\": [\n        \"NNP\"\n    ], \n    \"Duyvil\": [\n        \"NNP\"\n    ], \n    \"hamstrung\": [\n        \"JJ\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Cal.\": [\n        \"NN\"\n    ], \n    \"Ph.\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"largish\": [\n        \"JJ\"\n    ], \n    \"sunset\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"diagonals\": [\n        \"NNS\"\n    ], \n    \"dispersed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"higher-caliber\": [\n        \"JJR\"\n    ], \n    \"Fifth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"posse\": [\n        \"NN\"\n    ], \n    \"brainchild\": [\n        \"NN\"\n    ], \n    \"Accutane\": [\n        \"NNP\"\n    ], \n    \"Polevoi\": [\n        \"NNP\"\n    ], \n    \"hydride\": [\n        \"NN\"\n    ], \n    \"misrepresenting\": [\n        \"VBG\"\n    ], \n    \"Sony-owned\": [\n        \"JJ\"\n    ], \n    \"hydrido\": [\n        \"NN\"\n    ], \n    \"Schwartzman\": [\n        \"NNP\"\n    ], \n    \"Centurion\": [\n        \"NNP\"\n    ], \n    \"Seismographic\": [\n        \"NNP\"\n    ], \n    \"cheeseburgers\": [\n        \"NNS\"\n    ], \n    \"crackling\": [\n        \"NN\"\n    ], \n    \"ikey-kikey\": [\n        \"JJ\"\n    ], \n    \"gnaw\": [\n        \"VB\"\n    ], \n    \"ratio\": [\n        \"NN\"\n    ], \n    \"unedifying\": [\n        \"JJ\"\n    ], \n    \"probings\": [\n        \"NNS\"\n    ], \n    \"high-fidelity\": [\n        \"NN\"\n    ], \n    \"Solar\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"underfunded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Leasco\": [\n        \"NNP\"\n    ], \n    \"Katya\": [\n        \"NNP\"\n    ], \n    \"NATIONAL\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"telomeric\": [\n        \"JJ\"\n    ], \n    \"prides\": [\n        \"VBZ\"\n    ], \n    \"Plunging\": [\n        \"VBG\"\n    ], \n    \"fortifications\": [\n        \"NNS\"\n    ], \n    \"remoter\": [\n        \"JJR\"\n    ], \n    \"prided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"revulsion\": [\n        \"NN\"\n    ], \n    \"European-minded\": [\n        \"JJ\"\n    ], \n    \"appreciatively\": [\n        \"RB\"\n    ], \n    \"Grumbled\": [\n        \"VBD\"\n    ], \n    \"seldom\": [\n        \"RB\"\n    ], \n    \"Alley\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jeux\": [\n        \"FW\"\n    ], \n    \"guttered\": [\n        \"VBD\"\n    ], \n    \"Rundfunk\": [\n        \"NNP\"\n    ], \n    \"Allen\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"electroreality\": [\n        \"NN\"\n    ], \n    \"PM\": [\n        \"NNP\"\n    ], \n    \"bluebloods\": [\n        \"NNS\"\n    ], \n    \"pouches\": [\n        \"NNS\"\n    ], \n    \"irradiation\": [\n        \"NN\"\n    ], \n    \"once-prevailing\": [\n        \"JJ\"\n    ], \n    \"Runyon\": [\n        \"NNP\"\n    ], \n    \"unmarried\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Parkhouse\": [\n        \"NNP\"\n    ], \n    \"fanned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"famine\": [\n        \"NN\"\n    ], \n    \"Winslow\": [\n        \"NNP\"\n    ], \n    \"matter-of-factly\": [\n        \"RB\"\n    ], \n    \"tackling\": [\n        \"VBG\"\n    ], \n    \"halides\": [\n        \"NNS\"\n    ], \n    \"big-daddy\": [\n        \"JJ\"\n    ], \n    \"Berlin\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"work-out\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Butt\": [\n        \"NNP\"\n    ], \n    \"herbal\": [\n        \"JJ\"\n    ], \n    \"Butz\": [\n        \"NNP\"\n    ], \n    \"Equations\": [\n        \"NNS\"\n    ], \n    \"extraordinary...\": [\n        \":\"\n    ], \n    \"Antares\": [\n        \"NNP\"\n    ], \n    \"post-revolutionary\": [\n        \"JJ\"\n    ], \n    \"Palmolive\": [\n        \"NNP\"\n    ], \n    \"transluscent\": [\n        \"JJ\"\n    ], \n    \"OSHA\": [\n        \"NNP\"\n    ], \n    \"spitfire\": [\n        \"NN\"\n    ], \n    \"industrial-automation\": [\n        \"NN\"\n    ], \n    \"UNITED\": [\n        \"NNP\"\n    ], \n    \"Swamped\": [\n        \"VBN\"\n    ], \n    \"diocesan\": [\n        \"JJ\"\n    ], \n    \"self-interest\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"heatshield\": [\n        \"NN\"\n    ], \n    \"successor-designate\": [\n        \"JJ\"\n    ], \n    \"unfrosted\": [\n        \"VBN\"\n    ], \n    \"characterization\": [\n        \"NN\"\n    ], \n    \"Chevalier\": [\n        \"NNP\"\n    ], \n    \"mirroring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pilings\": [\n        \"NNS\"\n    ], \n    \"moreover\": [\n        \"RB\"\n    ], \n    \"imcomparable\": [\n        \"JJ\"\n    ], \n    \"deducting\": [\n        \"VBG\"\n    ], \n    \"capitalizations\": [\n        \"NNS\"\n    ], \n    \"Anthology\": [\n        \"NNP\"\n    ], \n    \"interleukin-1\": [\n        \"NN\"\n    ], \n    \"lawsuit\": [\n        \"NN\"\n    ], \n    \"rebuild\": [\n        \"VB\"\n    ], \n    \"manmade-fiber\": [\n        \"JJ\"\n    ], \n    \"SCECorp\": [\n        \"NNP\"\n    ], \n    \"lumpish\": [\n        \"JJ\"\n    ], \n    \"relatedness\": [\n        \"NN\"\n    ], \n    \"sewage-treatment\": [\n        \"NN\"\n    ], \n    \"whispers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dangers\": [\n        \"NNS\"\n    ], \n    \"build-better-for-less\": [\n        \"JJ\"\n    ], \n    \"rebuilt\": [\n        \"VBN\"\n    ], \n    \"prie-dieu\": [\n        \"FW\"\n    ], \n    \"exhaustion\": [\n        \"NN\"\n    ], \n    \"shortages\": [\n        \"NNS\"\n    ], \n    \"pesticide\": [\n        \"NN\"\n    ], \n    \"Hamburg\": [\n        \"NNP\"\n    ], \n    \"non-veterans\": [\n        \"NNS\"\n    ], \n    \"Creamette\": [\n        \"NNP\"\n    ], \n    \"observers\": [\n        \"NNS\"\n    ], \n    \"Vorontsov\": [\n        \"NNP\"\n    ], \n    \"Enforcers\": [\n        \"NNS\"\n    ], \n    \"casino-company\": [\n        \"NN\"\n    ], \n    \"countless\": [\n        \"JJ\"\n    ], \n    \"OEX\": [\n        \"NNP\"\n    ], \n    \"Continuation\": [\n        \"NN\"\n    ], \n    \"Merced\": [\n        \"NNP\"\n    ], \n    \"fruitbowl\": [\n        \"NN\"\n    ], \n    \"Reins\": [\n        \"NNP\"\n    ], \n    \"pseudo-patriotism\": [\n        \"NN\"\n    ], \n    \"Serlin\": [\n        \"NNP\"\n    ], \n    \"Greenhouse\": [\n        \"NN\"\n    ], \n    \"OEL\": [\n        \"NNP\"\n    ], \n    \"dregs\": [\n        \"NNS\"\n    ], \n    \"Reine\": [\n        \"NNP\"\n    ], \n    \"landslide\": [\n        \"NN\"\n    ], \n    \"PARTICIPATED\": [\n        \"VBD\"\n    ], \n    \"piglets\": [\n        \"NNS\"\n    ], \n    \"Reina\": [\n        \"NNP\"\n    ], \n    \"baccalaureate\": [\n        \"NN\"\n    ], \n    \"Dice\": [\n        \"NNS\"\n    ], \n    \"Dick\": [\n        \"NNP\"\n    ], \n    \"Me-210\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"South-East\": [\n        \"NNP\"\n    ], \n    \"bias\": [\n        \"NN\"\n    ], \n    \"embrace\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"bestial\": [\n        \"JJ\"\n    ], \n    \"heels\": [\n        \"NNS\"\n    ], \n    \"multitudes\": [\n        \"NNS\"\n    ], \n    \"mediocre\": [\n        \"JJ\"\n    ], \n    \"Bolsa\": [\n        \"NNP\"\n    ], \n    \"Mediumistic\": [\n        \"JJ\"\n    ], \n    \"commuting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Arden\": [\n        \"NNP\"\n    ], \n    \"epoch\": [\n        \"NN\"\n    ], \n    \"Lock-Up\": [\n        \"NN\"\n    ], \n    \"fair-weather\": [\n        \"JJ\"\n    ], \n    \"pedantic\": [\n        \"JJ\"\n    ], \n    \"finish\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"buccaneers\": [\n        \"NNS\"\n    ], \n    \"Shady\": [\n        \"NNP\"\n    ], \n    \"reunions\": [\n        \"NNS\"\n    ], \n    \"Pinsoneault\": [\n        \"NNP\"\n    ], \n    \"Stash\": [\n        \"NNP\"\n    ], \n    \"videotaped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Steelworkers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"woulda\": [\n        \"MD\"\n    ], \n    \"Shade\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hersh\": [\n        \"NNP\"\n    ], \n    \"ringside\": [\n        \"NN\"\n    ], \n    \"inspector-general\": [\n        \"JJ\"\n    ], \n    \"Joining\": [\n        \"VBG\"\n    ], \n    \"Ackermann\": [\n        \"NNP\"\n    ], \n    \"theater\": [\n        \"NN\"\n    ], \n    \"fluorescein-labeled\": [\n        \"JJ\"\n    ], \n    \"sex-for-hire\": [\n        \"JJ\"\n    ], \n    \"diatomic\": [\n        \"JJ\"\n    ], \n    \"hospital-care\": [\n        \"NN\"\n    ], \n    \"slugged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"choreography\": [\n        \"NN\"\n    ], \n    \"edema\": [\n        \"NN\"\n    ], \n    \"wintered\": [\n        \"VBN\"\n    ], \n    \"tablespoonful\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"slugger\": [\n        \"NN\"\n    ], \n    \"slanting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"dueling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"revaluation\": [\n        \"NN\"\n    ], \n    \"tirade\": [\n        \"NN\"\n    ], \n    \"daydreaming\": [\n        \"NN\"\n    ], \n    \"conclude\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sportin\": [\n        \"VBG\"\n    ], \n    \"washbasin\": [\n        \"NN\"\n    ], \n    \"ESOPs\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"well-set\": [\n        \"JJ\"\n    ], \n    \"sportif\": [\n        \"FW\"\n    ], \n    \"participative\": [\n        \"JJ\"\n    ], \n    \"near-solid\": [\n        \"JJ\"\n    ], \n    \"SoHo\": [\n        \"NNP\"\n    ], \n    \"real\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Renwick\": [\n        \"NNP\"\n    ], \n    \"preliterate\": [\n        \"JJ\"\n    ], \n    \"Tuck\": [\n        \"NNP\"\n    ], \n    \"read\": [\n        \"VB\", \n        \"NN\", \n        \"VBP|VBD\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VBD|VBP\"\n    ], \n    \"Phillip\": [\n        \"NNP\"\n    ], \n    \"detoxify\": [\n        \"VB\"\n    ], \n    \"Reorganized\": [\n        \"NNP\"\n    ], \n    \"leapfrog\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"quickness\": [\n        \"NN\"\n    ], \n    \"unreflective\": [\n        \"JJ\"\n    ], \n    \"detract\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pesetas\": [\n        \"NNS\"\n    ], \n    \"French-polished\": [\n        \"JJ\"\n    ], \n    \"Adrien\": [\n        \"NNP\"\n    ], \n    \"reap\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"rear\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Kenlake\": [\n        \"NNP\"\n    ], \n    \"fractionally\": [\n        \"RB\"\n    ], \n    \"suppliers\": [\n        \"NNS\"\n    ], \n    \"yg-globulin\": [\n        \"NN\"\n    ], \n    \"Theocracy\": [\n        \"NN\"\n    ], \n    \"glass-making\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"abjection\": [\n        \"NN\"\n    ], \n    \"evidencing\": [\n        \"VBG\"\n    ], \n    \"Hawkinses\": [\n        \"NNPS\"\n    ], \n    \"servile\": [\n        \"JJ\"\n    ], \n    \"rival-bashing\": [\n        \"JJ\"\n    ], \n    \"Szanton\": [\n        \"NNP\"\n    ], \n    \"hacks\": [\n        \"NNS\"\n    ], \n    \"astronomer\": [\n        \"NN\"\n    ], \n    \"Archives\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"duration\": [\n        \"NN\"\n    ], \n    \"Barbaresco\": [\n        \"NNP\"\n    ], \n    \"slaughtering\": [\n        \"VBG\"\n    ], \n    \"putter\": [\n        \"NN\"\n    ], \n    \"recorded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Landrieu\": [\n        \"NNP\"\n    ], \n    \"descents\": [\n        \"NNS\"\n    ], \n    \"Southeast\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"featherless\": [\n        \"JJ\"\n    ], \n    \"recorder\": [\n        \"NN\"\n    ], \n    \"putted\": [\n        \"VBD\"\n    ], \n    \"Marilyn\": [\n        \"NNP\"\n    ], \n    \"architectonic\": [\n        \"JJ\"\n    ], \n    \"stagecoaches\": [\n        \"NNS\"\n    ], \n    \"Hunt\": [\n        \"NNP\"\n    ], \n    \"dejection\": [\n        \"NN\"\n    ], \n    \"winnowing\": [\n        \"NN\"\n    ], \n    \"sedimentation\": [\n        \"NN\"\n    ], \n    \"seducing\": [\n        \"VBG\"\n    ], \n    \"hectic\": [\n        \"JJ\"\n    ], \n    \"Promotion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"anti-Catholic\": [\n        \"JJ\"\n    ], \n    \"fondness\": [\n        \"NN\"\n    ], \n    \"Weavers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"easy-to-read\": [\n        \"JJ\"\n    ], \n    \"explusion\": [\n        \"NN\"\n    ], \n    \"paints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"STRIPES\": [\n        \"NNP\"\n    ], \n    \"Grandmothers\": [\n        \"NNP\"\n    ], \n    \"greatly\": [\n        \"RB\"\n    ], \n    \"Forgot\": [\n        \"VBN\"\n    ], \n    \"Depressive\": [\n        \"NNP\"\n    ], \n    \"Dubaih\": [\n        \"NNP\"\n    ], \n    \"heater\": [\n        \"NN\"\n    ], \n    \"disinfectant\": [\n        \"NN\"\n    ], \n    \"Cousin\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"more-advanced\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Memories\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Fallout\": [\n        \"NNP\"\n    ], \n    \"Wyser-Pratte\": [\n        \"NNP\"\n    ], \n    \"Hung\": [\n        \"NNP\"\n    ], \n    \"nicotine\": [\n        \"NN\"\n    ], \n    \"Bard\\\\/EMS\": [\n        \"NNP\"\n    ], \n    \"heated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Steppers\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"wellspring\": [\n        \"NN\"\n    ], \n    \"gungho\": [\n        \"JJ\"\n    ], \n    \"prepare\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"co-ops\": [\n        \"NN\"\n    ], \n    \"Vaux\": [\n        \"NNP\"\n    ], \n    \"stoppage\": [\n        \"NN\"\n    ], \n    \"Engelken\": [\n        \"NNP\"\n    ], \n    \"DISPLAYED\": [\n        \"VBD\"\n    ], \n    \"Hotei\": [\n        \"NNP\"\n    ], \n    \"stealth\": [\n        \"NN\"\n    ], \n    \"Birthday\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"unclasping\": [\n        \"VBG\"\n    ], \n    \"uremia\": [\n        \"NN\"\n    ], \n    \"faulted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"eluate\": [\n        \"NN\"\n    ], \n    \"Motorcycles\": [\n        \"NNS\"\n    ], \n    \"highway-relief\": [\n        \"JJ\"\n    ], \n    \"Nagykanizsa\": [\n        \"NNP\"\n    ], \n    \"TSH-treated\": [\n        \"JJ\"\n    ], \n    \"Calimala\": [\n        \"NNP\"\n    ], \n    \"Tripoli\": [\n        \"NNP\"\n    ], \n    \"DDG-51\": [\n        \"NNP\"\n    ], \n    \"Calcutta\": [\n        \"NNP\"\n    ], \n    \"appareled\": [\n        \"VBN\"\n    ], \n    \"irreversible\": [\n        \"JJ\"\n    ], \n    \"Department-store\": [\n        \"JJ\"\n    ], \n    \"McKay\": [\n        \"NNP\"\n    ], \n    \"Leinoff\": [\n        \"NNP\"\n    ], \n    \"Monday-morning\": [\n        \"JJ\"\n    ], \n    \"comics\": [\n        \"NNS\"\n    ], \n    \"condemnatory\": [\n        \"JJ\"\n    ], \n    \"Leyte\": [\n        \"NNP\"\n    ], \n    \"enameling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Grisebach\": [\n        \"NNP\"\n    ], \n    \"Grenfell\": [\n        \"NNP\"\n    ], \n    \"keyboarding\": [\n        \"VBG\"\n    ], \n    \"Shrugged\": [\n        \"VBN\"\n    ], \n    \"builders\": [\n        \"NNS\"\n    ], \n    \"Nobuya\": [\n        \"NNP\"\n    ], \n    \"commercial-banking\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"septa\": [\n        \"NNS\"\n    ], \n    \"cartons\": [\n        \"NNS\"\n    ], \n    \"oxen\": [\n        \"NNS\"\n    ], \n    \"subdue\": [\n        \"VB\"\n    ], \n    \"Cemetery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sales\": [\n        \"NNS\", \n        \"JJ\", \n        \"VBZ\"\n    ], \n    \"pummeling\": [\n        \"NN\"\n    ], \n    \"Tijd\": [\n        \"NNP\"\n    ], \n    \"erawhere\": [\n        \"NN\"\n    ], \n    \"reassumed\": [\n        \"VBN\"\n    ], \n    \"flat-to-lower\": [\n        \"JJ\"\n    ], \n    \"credibility\": [\n        \"NN\"\n    ], \n    \"storage\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"thither\": [\n        \"RB\"\n    ], \n    \"cinematography\": [\n        \"NN\"\n    ], \n    \"hobbyists\": [\n        \"NNS\"\n    ], \n    \"gambling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"seven-week-old\": [\n        \"JJ\"\n    ], \n    \"surest\": [\n        \"JJS\"\n    ], \n    \"Vicki\": [\n        \"NNP\"\n    ], \n    \"Iwatare\": [\n        \"NNP\"\n    ], \n    \"desolation\": [\n        \"NN\"\n    ], \n    \"Misinformation\": [\n        \"NN\"\n    ], \n    \"eromonga\": [\n        \"FW\"\n    ], \n    \"Renaults\": [\n        \"NNPS\"\n    ], \n    \"technologies\\\\\": [\n        \"JJ\"\n    ], \n    \"flattened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"nerve-racking\": [\n        \"JJ\"\n    ], \n    \"Pissarro\": [\n        \"NNP\"\n    ], \n    \"Surrealists\": [\n        \"NNS\"\n    ], \n    \"Whitefish\": [\n        \"NNP\"\n    ], \n    \"Stuffing\": [\n        \"VBG\"\n    ], \n    \"chords\": [\n        \"NNS\"\n    ], \n    \"adsorbed\": [\n        \"VBN\"\n    ], \n    \"Workshops\": [\n        \"NNS\"\n    ], \n    \"pectoral-front\": [\n        \"JJ\"\n    ], \n    \"titration\": [\n        \"NN\"\n    ], \n    \"Gypsy\": [\n        \"NN\"\n    ], \n    \"Ovitz\": [\n        \"NNP\"\n    ], \n    \"Pablo\": [\n        \"NNP\"\n    ], \n    \"maturity\": [\n        \"NN\"\n    ], \n    \"beachhead\": [\n        \"NN\"\n    ], \n    \"hateful\": [\n        \"JJ\"\n    ], \n    \"pointing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Griesa\": [\n        \"NNP\"\n    ], \n    \"rumdum\": [\n        \"NN\"\n    ], \n    \"splitting\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"slimming\": [\n        \"VBG\"\n    ], \n    \"Alcarria\": [\n        \"NNP\"\n    ], \n    \"bequeath\": [\n        \"VB\"\n    ], \n    \"cardiologist\": [\n        \"NN\"\n    ], \n    \"gaucherie\": [\n        \"NN\"\n    ], \n    \"Schmidt\": [\n        \"NNP\"\n    ], \n    \"Astwood\": [\n        \"NNP\"\n    ], \n    \"dimesize\": [\n        \"JJ\"\n    ], \n    \"Brown\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"compatiblizers\": [\n        \"NNS\"\n    ], \n    \"altruism\": [\n        \"NN\"\n    ], \n    \"FORCE\": [\n        \"VBP\"\n    ], \n    \"interior-decorating\": [\n        \"JJ\"\n    ], \n    \"Ralston\": [\n        \"NNP\"\n    ], \n    \"Syms\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Parallel\": [\n        \"JJ\"\n    ], \n    \"mpg\": [\n        \"NN\"\n    ], \n    \"sprains\": [\n        \"NNS\"\n    ], \n    \"Recovering\": [\n        \"VBG\"\n    ], \n    \"very\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"indubitable\": [\n        \"JJ\"\n    ], \n    \"officials-cum-drug-traffickers\": [\n        \"NNS\"\n    ], \n    \"based-CAE\": [\n        \"JJ|NP\"\n    ], \n    \"mph\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"vertex\": [\n        \"NN\"\n    ], \n    \"verb\": [\n        \"NN\"\n    ], \n    \"minded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"UVB\": [\n        \"NN\"\n    ], \n    \"austerity\": [\n        \"NN\"\n    ], \n    \"morphemic\": [\n        \"JJ\"\n    ], \n    \"suzerain\": [\n        \"NN\"\n    ], \n    \"randomness\": [\n        \"NN\"\n    ], \n    \"Beethoven\": [\n        \"NNP\"\n    ], \n    \"Khalifa\": [\n        \"NNP\"\n    ], \n    \"guileless\": [\n        \"JJ\"\n    ], \n    \"Midnight\": [\n        \"NNP\"\n    ], \n    \"Kruger\": [\n        \"NNP\"\n    ], \n    \"Ancel\": [\n        \"NNP\"\n    ], \n    \"Electrostatic\": [\n        \"JJ\"\n    ], \n    \"cash-rich\": [\n        \"JJ\"\n    ], \n    \"Wyo.\": [\n        \"NNP\"\n    ], \n    \"Reiss\": [\n        \"NNP\"\n    ], \n    \"Henrich\": [\n        \"NNP\"\n    ], \n    \"Genuine\": [\n        \"NNP\"\n    ], \n    \"TSH\": [\n        \"NNP\"\n    ], \n    \"TSB\": [\n        \"NNP\"\n    ], \n    \"reminiscence\": [\n        \"NN\"\n    ], \n    \"self-contained\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Glaxo\": [\n        \"NNP\"\n    ], \n    \"ELECTRONICS\": [\n        \"NNP\"\n    ], \n    \"Valens\": [\n        \"NNP\"\n    ], \n    \"Circles\": [\n        \"NNS\"\n    ], \n    \"papering\": [\n        \"VBG\"\n    ], \n    \"apologizes\": [\n        \"VBZ\"\n    ], \n    \"Widened\": [\n        \"VBD\"\n    ], \n    \"bituminous\": [\n        \"JJ\"\n    ], \n    \"three-game\": [\n        \"JJ\"\n    ], \n    \"Ronnie\": [\n        \"NNP\"\n    ], \n    \"Harmful\": [\n        \"JJ\"\n    ], \n    \"Feeney\": [\n        \"NNP\"\n    ], \n    \"apologized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Probing\": [\n        \"VBG\"\n    ], \n    \"egalitarianism\": [\n        \"NN\"\n    ], \n    \"Tammany\": [\n        \"NNP\"\n    ], \n    \"repugnant\": [\n        \"JJ\"\n    ], \n    \"Violeta\": [\n        \"NNP\"\n    ], \n    \"Alexei\": [\n        \"NNP\"\n    ], \n    \"entailing\": [\n        \"VBG\"\n    ], \n    \"recruits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rudimentary\": [\n        \"JJ\"\n    ], \n    \"answers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Grindlay\": [\n        \"NNP\"\n    ], \n    \"sardines\": [\n        \"NNS\"\n    ], \n    \"yummy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"consumer-oriented\": [\n        \"JJ\"\n    ], \n    \"conflation\": [\n        \"NN\"\n    ], \n    \"Borden\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interposed\": [\n        \"VBN\"\n    ], \n    \"Phamaceutical\": [\n        \"NNP\"\n    ], \n    \"will-to-power\": [\n        \"NN\"\n    ], \n    \"ahead\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"disclaimers\": [\n        \"NNS\"\n    ], \n    \"dream-ridden\": [\n        \"JJ\"\n    ], \n    \"telecast\": [\n        \"NN\"\n    ], \n    \"soldier\": [\n        \"NN\"\n    ], \n    \"bestowal\": [\n        \"NN\"\n    ], \n    \"whoppers\": [\n        \"NNS\"\n    ], \n    \"innovativeness\": [\n        \"NN\"\n    ], \n    \"Woessner\": [\n        \"NNP\"\n    ], \n    \"Border\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Victor\": [\n        \"NNP\"\n    ], \n    \"sidearms\": [\n        \"NNS\"\n    ], \n    \"Independents\": [\n        \"NNPS\"\n    ], \n    \"Exactly\": [\n        \"RB\"\n    ], \n    \"T-1600\": [\n        \"NNP\"\n    ], \n    \"capacity-expansion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"agonized\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"order-entry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Molesworth\": [\n        \"NNP\"\n    ], \n    \"Compulsions\": [\n        \"NNP\"\n    ], \n    \"original-issue\": [\n        \"JJ\"\n    ], \n    \"unpleasantness\": [\n        \"NN\"\n    ], \n    \"income-producing\": [\n        \"JJ\"\n    ], \n    \"Clarks\": [\n        \"NNS\"\n    ], \n    \"Tredyffrin\": [\n        \"NNP\"\n    ], \n    \"easy-to-use\": [\n        \"JJ\"\n    ], \n    \"Creating\": [\n        \"VBG\"\n    ], \n    \"Elf\": [\n        \"NNP\"\n    ], \n    \"injure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"overharvesting\": [\n        \"NN\"\n    ], \n    \"microeconomics\": [\n        \"NNS\"\n    ], \n    \"reserving\": [\n        \"VBG\"\n    ], \n    \"Lapham\": [\n        \"NNP\"\n    ], \n    \"CLUBS\": [\n        \"NNS\"\n    ], \n    \"ROME\": [\n        \"NNP\"\n    ], \n    \"girds\": [\n        \"VBZ\"\n    ], \n    \"doubtlessly\": [\n        \"RB\"\n    ], \n    \"wide-winged\": [\n        \"JJ\"\n    ], \n    \"injury\": [\n        \"NN\"\n    ], \n    \"stand-up\": [\n        \"JJ\"\n    ], \n    \"erode\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Policemen\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Chickens\": [\n        \"NNS\"\n    ], \n    \"Colson\": [\n        \"NNP\"\n    ], \n    \"powerhouses\": [\n        \"NNS\"\n    ], \n    \"suction\": [\n        \"NN\"\n    ], \n    \"Oral\": [\n        \"NNP\"\n    ], \n    \"Oran\": [\n        \"NNP\"\n    ], \n    \"Sheila\": [\n        \"NNP\"\n    ], \n    \"aspirational\": [\n        \"JJ\"\n    ], \n    \"Yoshitoki\": [\n        \"NNP\"\n    ], \n    \"AFDC\": [\n        \"NNP\"\n    ], \n    \"metal-cutting\": [\n        \"JJ\"\n    ], \n    \"Hartlib\": [\n        \"NNP\"\n    ], \n    \"sweeps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Soxhlet\": [\n        \"NN\"\n    ], \n    \"peals\": [\n        \"NNS\"\n    ], \n    \"reshaping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kerkorian\": [\n        \"NNP\"\n    ], \n    \"Staining\": [\n        \"VBG\"\n    ], \n    \"missile-transporter\": [\n        \"NN\"\n    ], \n    \"parasol\": [\n        \"NN\"\n    ], \n    \"stampede\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chubb\": [\n        \"NNP\"\n    ], \n    \"Bronislava\": [\n        \"NNP\"\n    ], \n    \"near-misses\": [\n        \"NN\"\n    ], \n    \"exclude\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"grey-skied\": [\n        \"JJ\"\n    ], \n    \"sci-fi\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wergeland\": [\n        \"NNP\"\n    ], \n    \"lithographic\": [\n        \"JJ\"\n    ], \n    \"pocketful\": [\n        \"NN\"\n    ], \n    \"telefax\": [\n        \"NN\"\n    ], \n    \"cloying\": [\n        \"JJ\", \n        \"JJ|VBG\"\n    ], \n    \"ransom\": [\n        \"NN\"\n    ], \n    \"Ganis\": [\n        \"NNP\"\n    ], \n    \"Heightened\": [\n        \"JJ\"\n    ], \n    \"tattoo\": [\n        \"NN\"\n    ], \n    \"Fitzpatrick\": [\n        \"NNP\"\n    ], \n    \"Pass\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"germinal\": [\n        \"JJ\"\n    ], \n    \"Yilin\": [\n        \"NNP\"\n    ], \n    \"rose-of-Sharon\": [\n        \"NN\"\n    ], \n    \"idiocy\": [\n        \"NN\"\n    ], \n    \"roadblocks\": [\n        \"NNS\"\n    ], \n    \"escutcheon\": [\n        \"NN\"\n    ], \n    \"collectability\": [\n        \"NN\"\n    ], \n    \"gasp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"inconceivable\": [\n        \"JJ\"\n    ], \n    \"INC.\": [\n        \"NNP\"\n    ], \n    \"Milcote\": [\n        \"NNP\"\n    ], \n    \"Adamec\": [\n        \"NNP\"\n    ], \n    \"prerequisites\": [\n        \"NNS\"\n    ], \n    \"lava-rocks\": [\n        \"NNS\"\n    ], \n    \"mortgage-backed-securities\": [\n        \"NNS\"\n    ], \n    \"overnight\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"buns\": [\n        \"NNS\"\n    ], \n    \"renewing\": [\n        \"VBG\"\n    ], \n    \"Fila\": [\n        \"NNP\"\n    ], \n    \"Ubermenschen\": [\n        \"NNPS\"\n    ], \n    \"File\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Film\": [\n        \"NNP\"\n    ], \n    \"Fill\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"chicks\": [\n        \"NNS\"\n    ], \n    \"Fishery\": [\n        \"NNP\"\n    ], \n    \"uncensored\": [\n        \"JJ\"\n    ], \n    \"Floresville\": [\n        \"NNP\"\n    ], \n    \"Africans\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"dine\": [\n        \"VB\"\n    ], \n    \"space-station\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tousled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"rebuilder\": [\n        \"NN\"\n    ], \n    \"non-negative\": [\n        \"JJ\"\n    ], \n    \"then-owner\": [\n        \"JJ\"\n    ], \n    \"Cardinals\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Superstition\": [\n        \"NN\"\n    ], \n    \"painstaking\": [\n        \"JJ\"\n    ], \n    \"fines\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"post-war\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fool\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"drunk-and-disorderlies\": [\n        \"NNS\"\n    ], \n    \"spear-throwing\": [\n        \"JJ\"\n    ], \n    \"Syndicates\": [\n        \"NNS\"\n    ], \n    \"food\": [\n        \"NN\"\n    ], \n    \"awarding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"prenatal\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"grandfathers\": [\n        \"NNS\"\n    ], \n    \"Syndicated\": [\n        \"NNP\"\n    ], \n    \"Sunward\": [\n        \"NNP\"\n    ], \n    \"foot\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"sixth-grade\": [\n        \"JJ\"\n    ], \n    \"Stillwell\": [\n        \"NNP\"\n    ], \n    \"Lewisohn\": [\n        \"NNP\"\n    ], \n    \"desperately\": [\n        \"RB\"\n    ], \n    \"SFX\": [\n        \"NNP\"\n    ], \n    \"croupier\": [\n        \"NN\"\n    ], \n    \"Suns\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"sailor\": [\n        \"NN\"\n    ], \n    \"Ekwanok\": [\n        \"NNP\"\n    ], \n    \"heavyweights\": [\n        \"NNS\"\n    ], \n    \"D&H\": [\n        \"NNP\"\n    ], \n    \"Bueno\": [\n        \"FW\"\n    ], \n    \"SFD\": [\n        \"NNP\"\n    ], \n    \"SFE\": [\n        \"NNP\"\n    ], \n    \"Sung\": [\n        \"NNP\"\n    ], \n    \"Toland\": [\n        \"NNP\"\n    ], \n    \"in-grown\": [\n        \"JJ\"\n    ], \n    \"unachieved\": [\n        \"VBN\"\n    ], \n    \"savored\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"editor-in-chief\": [\n        \"NN\"\n    ], \n    \"inspirational\": [\n        \"JJ\"\n    ], \n    \"fees\": [\n        \"NNS\"\n    ], \n    \"gentlelady\": [\n        \"NN\"\n    ], \n    \"wacky\": [\n        \"JJ\"\n    ], \n    \"mortgage-servicing\": [\n        \"NN\"\n    ], \n    \"irreconcilable\": [\n        \"JJ\"\n    ], \n    \"cemented\": [\n        \"VBN\"\n    ], \n    \"bulking\": [\n        \"VBG\"\n    ], \n    \"Minella\": [\n        \"NNP\"\n    ], \n    \"Kessler\": [\n        \"NNP\"\n    ], \n    \"Starve\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Zemlya\": [\n        \"NNP\"\n    ], \n    \"Bloomingdales\": [\n        \"NNP\"\n    ], \n    \"presumptuous\": [\n        \"JJ\"\n    ], \n    \"since\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"temporary\": [\n        \"JJ\"\n    ], \n    \"InterNorth\": [\n        \"NNP\"\n    ], \n    \"ultrasonics\": [\n        \"NNS\"\n    ], \n    \"laxatives\": [\n        \"NNS\"\n    ], \n    \"M\\\\/A-Com\": [\n        \"NNP\"\n    ], \n    \"Bent-Arm\": [\n        \"NNP\"\n    ], \n    \"dunk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pun\": [\n        \"NN\"\n    ], \n    \"flaunt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"asw\": [\n        \"NN\"\n    ], \n    \"ast\": [\n        \"JJ\"\n    ], \n    \"forty-niners\": [\n        \"NNS\"\n    ], \n    \"production-sharing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dung\": [\n        \"NN\"\n    ], \n    \"dune\": [\n        \"NN\"\n    ], \n    \"heroin\": [\n        \"NN\"\n    ], \n    \"ask\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spread-out\": [\n        \"JJ\"\n    ], \n    \"Palladio\": [\n        \"NNP\"\n    ], \n    \"ash\": [\n        \"NN\"\n    ], \n    \"pup\": [\n        \"NN\"\n    ], \n    \"Investments\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"heroic\": [\n        \"JJ\"\n    ], \n    \"ketorolac\": [\n        \"NNP\"\n    ], \n    \"Sohmer\": [\n        \"NNP\"\n    ], \n    \"perceptual\": [\n        \"JJ\"\n    ], \n    \"fugures\": [\n        \"NNS\"\n    ], \n    \"tenets\": [\n        \"NNS\"\n    ], \n    \"six-fold\": [\n        \"RB\"\n    ], \n    \"tortoises\": [\n        \"NNS\"\n    ], \n    \"cheering\": [\n        \"VBG\"\n    ], \n    \"Respect\": [\n        \"NN\"\n    ], \n    \"yield-management\": [\n        \"NN\"\n    ], \n    \"lantana\": [\n        \"NN\"\n    ], \n    \"Selma\": [\n        \"NNP\"\n    ], \n    \"liquefies\": [\n        \"VBZ\"\n    ], \n    \"DAYTON\": [\n        \"NNP\"\n    ], \n    \"penny-ante\": [\n        \"JJ\"\n    ], \n    \"reflected\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Badura-Skoda-Vienna\": [\n        \"NNP\"\n    ], \n    \"Hubbell\": [\n        \"NNP\"\n    ], \n    \"tektites\": [\n        \"NNS\"\n    ], \n    \"alliterative\": [\n        \"JJ\"\n    ], \n    \"Gorce\": [\n        \"NNP\"\n    ], \n    \"herbicides\": [\n        \"NNS\"\n    ], \n    \"Jeremiah\": [\n        \"NNP\"\n    ], \n    \"Plekhanov\": [\n        \"NNP\"\n    ], \n    \"ballot-burning\": [\n        \"JJ\"\n    ], \n    \"Mortgage-backed\": [\n        \"JJ\"\n    ], \n    \"Lipchitz\": [\n        \"NNP\"\n    ], \n    \"price-setting\": [\n        \"NN\"\n    ], \n    \"handshaker\": [\n        \"NN\"\n    ], \n    \"diabetes\": [\n        \"NN\"\n    ], \n    \"vilification\": [\n        \"NN\"\n    ], \n    \"Brinkley\": [\n        \"NNP\"\n    ], \n    \"shifted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hardbound\": [\n        \"JJ\"\n    ], \n    \"Modell\": [\n        \"NNP\"\n    ], \n    \"Ventura\": [\n        \"NNP\"\n    ], \n    \"anti-Western\": [\n        \"JJ\"\n    ], \n    \"Venture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"McGraw\": [\n        \"NNP\"\n    ], \n    \"western\": [\n        \"JJ\"\n    ], \n    \"Gianicolo\": [\n        \"NNP\"\n    ], \n    \"Calais\": [\n        \"NNP\"\n    ], \n    \"Searle\": [\n        \"NNP\"\n    ], \n    \"squeaky\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"inducted\": [\n        \"VBN\"\n    ], \n    \"collaborations\": [\n        \"NNS\"\n    ], \n    \"prejudged\": [\n        \"VBN\"\n    ], \n    \"squeaks\": [\n        \"VBZ\"\n    ], \n    \"photographing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"grogginess\": [\n        \"NN\"\n    ], \n    \"Leninskoye\": [\n        \"NNP\"\n    ], \n    \"Figs.\": [\n        \"NNS\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Quotidien\": [\n        \"NNP\"\n    ], \n    \"Extinction\": [\n        \"NNP\"\n    ], \n    \"rationalizations\": [\n        \"NNS\"\n    ], \n    \"Saudis\": [\n        \"NNPS\", \n        \"VBP\"\n    ], \n    \"substantiated\": [\n        \"JJ\"\n    ], \n    \"Conduct\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Father\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"juicy\": [\n        \"JJ\"\n    ], \n    \"unthematic\": [\n        \"JJ\"\n    ], \n    \"Stenhach\": [\n        \"NNP\"\n    ], \n    \"juice\": [\n        \"NN\"\n    ], \n    \"ecstatically\": [\n        \"RB\"\n    ], \n    \"bridled\": [\n        \"VBN\"\n    ], \n    \"income-oriented\": [\n        \"JJ\"\n    ], \n    \"sensual\": [\n        \"JJ\"\n    ], \n    \"GTE\": [\n        \"NNP\"\n    ], \n    \"Gruene\": [\n        \"NNP\"\n    ], \n    \"outbound\": [\n        \"JJ\"\n    ], \n    \"retracted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Band-Aid\": [\n        \"NNP\"\n    ], \n    \"Arger\": [\n        \"NNP\"\n    ], \n    \"flaming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"cargoes\": [\n        \"NNS\"\n    ], \n    \"labour\": [\n        \"NN\"\n    ], \n    \"checklist\": [\n        \"NN\"\n    ], \n    \"Ryrie\": [\n        \"NNP\"\n    ], \n    \"Puccini\": [\n        \"NNP\"\n    ], \n    \"Pissocra\": [\n        \"NNP\"\n    ], \n    \"repossesed\": [\n        \"JJ\"\n    ], \n    \"Thy\": [\n        \"PRP\", \n        \"PRP$\"\n    ], \n    \"frauds\": [\n        \"NNS\"\n    ], \n    \"Companies\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Kakutani\": [\n        \"NNP\"\n    ], \n    \"Foxmoor\": [\n        \"NNP\"\n    ], \n    \"Stronach\": [\n        \"NNP\"\n    ], \n    \"hothouse\": [\n        \"JJ\"\n    ], \n    \"Aviva\": [\n        \"NNP\"\n    ], \n    \"The\": [\n        \"DT\", \n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Mulligan\": [\n        \"NNP\"\n    ], \n    \"gregarious\": [\n        \"JJ\"\n    ], \n    \"Bolstering\": [\n        \"VBG\"\n    ], \n    \"prolongation\": [\n        \"NN\"\n    ], \n    \"Mommy\": [\n        \"NNP\"\n    ], \n    \"outbidding\": [\n        \"VBG\"\n    ], \n    \"Postscript\": [\n        \"NNP\"\n    ], \n    \"Momma\": [\n        \"NNP\"\n    ], \n    \"bridge-financing\": [\n        \"JJ\"\n    ], \n    \"Fishing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"World-wide\": [\n        \"JJ\"\n    ], \n    \"Mahagonny\": [\n        \"NNP\"\n    ], \n    \"giggles\": [\n        \"NNS\"\n    ], \n    \"acerbic\": [\n        \"JJ\"\n    ], \n    \"fiercest\": [\n        \"JJS\"\n    ], \n    \"Croonen\": [\n        \"NNP\"\n    ], \n    \"flounders\": [\n        \"VBZ\"\n    ], \n    \"hefted\": [\n        \"VBD\"\n    ], \n    \"top-notch\": [\n        \"JJ\"\n    ], \n    \"giggled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"church-owned\": [\n        \"JJ\"\n    ], \n    \"begets\": [\n        \"VBZ\"\n    ], \n    \"Nishiki\": [\n        \"NNP\"\n    ], \n    \"copyright\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Norberto\": [\n        \"NNP\"\n    ], \n    \"government-plus\": [\n        \"JJ\"\n    ], \n    \"bonheur\": [\n        \"NN\"\n    ], \n    \"CHARLES\": [\n        \"NNP\"\n    ], \n    \"no-good-bums\": [\n        \"NNS\"\n    ], \n    \"darted\": [\n        \"VBD\"\n    ], \n    \"pre-history\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"necking\": [\n        \"NN\"\n    ], \n    \"long-familiar\": [\n        \"JJ\"\n    ], \n    \"world-weary\": [\n        \"JJ\"\n    ], \n    \"pretty\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Bolger\": [\n        \"NNP\"\n    ], \n    \"NatWest\": [\n        \"NNP\"\n    ], \n    \"low-interest\": [\n        \"JJ\"\n    ], \n    \"seven-session\": [\n        \"JJ\"\n    ], \n    \"custodian\": [\n        \"NN\"\n    ], \n    \"custodial\": [\n        \"JJ\"\n    ], \n    \"trees\": [\n        \"NNS\"\n    ], \n    \"Dupuy\": [\n        \"NNP\"\n    ], \n    \"Crystal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"spackle\": [\n        \"VB\"\n    ], \n    \"tossing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"gloved\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"sacrificed\": [\n        \"VBN\"\n    ], \n    \"MICROSYSTEMS\": [\n        \"NNP\"\n    ], \n    \"full-bodied\": [\n        \"JJ\"\n    ], \n    \"sacrifices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"CHARITABLE\": [\n        \"JJ\"\n    ], \n    \"Unitarians\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"gloves\": [\n        \"NNS\"\n    ], \n    \"glover\": [\n        \"NN\"\n    ], \n    \"battlegrounds\": [\n        \"NNS\"\n    ], \n    \"Pritchett\": [\n        \"NNP\"\n    ], \n    \"crams\": [\n        \"VBZ\"\n    ], \n    \"re-rated\": [\n        \"VBN\"\n    ], \n    \"W.N.\": [\n        \"NNP\"\n    ], \n    \"Decent\": [\n        \"JJ\"\n    ], \n    \"outboard\": [\n        \"JJ\"\n    ], \n    \"YEEEEEECH\": [\n        \"UH\"\n    ], \n    \"manning\": [\n        \"VBG\"\n    ], \n    \"horoscopes\": [\n        \"NNS\"\n    ], \n    \"transportation\": [\n        \"NN\"\n    ], \n    \"Knife-grinder\": [\n        \"NNP\"\n    ], \n    \"Babin\": [\n        \"NNP\"\n    ], \n    \"Liddle\": [\n        \"NNP\"\n    ], \n    \"patties\": [\n        \"NNS\"\n    ], \n    \"horrid\": [\n        \"JJ\"\n    ], \n    \"Lectec\": [\n        \"NNP\"\n    ], \n    \"dramatics\": [\n        \"NNS\"\n    ], \n    \"FATHER\": [\n        \"NN\"\n    ], \n    \"Tikopia\": [\n        \"NNP\"\n    ], \n    \"grocer\": [\n        \"NN\"\n    ], \n    \"VIDEO\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"thermistor\": [\n        \"NN\"\n    ], \n    \"architect\": [\n        \"NN\"\n    ], \n    \"Kissinger\": [\n        \"NNP\"\n    ], \n    \"management-employee\": [\n        \"NN\"\n    ], \n    \"NHTSA\": [\n        \"NNP\"\n    ], \n    \"gynecologists\": [\n        \"NNS\"\n    ], \n    \"Zacks\": [\n        \"NNP\"\n    ], \n    \"genre\": [\n        \"NN\"\n    ], \n    \"Haro\": [\n        \"NNP\"\n    ], \n    \"Harm\": [\n        \"NNP\"\n    ], \n    \"Hark\": [\n        \"NNP\"\n    ], \n    \"unknowing\": [\n        \"JJ\"\n    ], \n    \"Fisk\": [\n        \"NNP\"\n    ], \n    \"Fish\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hard\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Briscoe\": [\n        \"NNP\"\n    ], \n    \"Hara\": [\n        \"NNP\"\n    ], \n    \"Rhoads\": [\n        \"NNP\"\n    ], \n    \"watchtowers\": [\n        \"NNS\"\n    ], \n    \"crackpots\": [\n        \"NNS\"\n    ], \n    \"Allingham\": [\n        \"NNP\"\n    ], \n    \"Argiento\": [\n        \"NNP\"\n    ], \n    \"searchlights\": [\n        \"NNS\"\n    ], \n    \"government-held\": [\n        \"JJ\"\n    ], \n    \"batters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"likee\": [\n        \"VB\"\n    ], \n    \"ridiculing\": [\n        \"VBG\"\n    ], \n    \"trans-Canadian\": [\n        \"JJ\"\n    ], \n    \"assortments\": [\n        \"NNS\"\n    ], \n    \"Discussion\": [\n        \"NN\"\n    ], \n    \"strenghtening\": [\n        \"VBG\"\n    ], \n    \"ideologues\": [\n        \"NNS\"\n    ], \n    \"badminton\": [\n        \"NN\"\n    ], \n    \"Maidens\": [\n        \"NNPS\"\n    ], \n    \"likes\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"private-line\": [\n        \"JJ\"\n    ], \n    \"Mose\": [\n        \"NNP\"\n    ], \n    \"neck-deep\": [\n        \"JJ\"\n    ], \n    \"described\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mosk\": [\n        \"NNP\"\n    ], \n    \"Batangas\": [\n        \"NNP\"\n    ], \n    \"resellers\": [\n        \"NNS\"\n    ], \n    \"Most\": [\n        \"JJS\", \n        \"NNP\", \n        \"RBS\", \n        \"RB\"\n    ], \n    \"describes\": [\n        \"VBZ\"\n    ], \n    \"maintenance\": [\n        \"NN\"\n    ], \n    \"preventable\": [\n        \"JJ\"\n    ], \n    \"Astrid\": [\n        \"NNP\"\n    ], \n    \"SX-21\": [\n        \"NNP\"\n    ], \n    \"Tomoshige\": [\n        \"NNP\"\n    ], \n    \"Honecker\": [\n        \"NNP\"\n    ], \n    \"budgeted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"three-foot-wide\": [\n        \"JJ\"\n    ], \n    \"lodgings\": [\n        \"NNS\"\n    ], \n    \"wet\": [\n        \"JJ\", \n        \"NN\", \n        \"VBD\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"append\": [\n        \"VB\"\n    ], \n    \"else\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Westvaco\": [\n        \"NNP\"\n    ], \n    \"transacting\": [\n        \"VBG\"\n    ], \n    \"second-quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"referrals\": [\n        \"NNS\"\n    ], \n    \"utmost\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"conspirator\": [\n        \"NN\"\n    ], \n    \"virologist\": [\n        \"NN\"\n    ], \n    \"all-paper\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"governor\": [\n        \"NN\"\n    ], \n    \"Memotec\": [\n        \"NNP\"\n    ], \n    \"Verdi\": [\n        \"NNP\"\n    ], \n    \"Mallinckrodt\": [\n        \"NNP\"\n    ], \n    \"eateries\": [\n        \"NNS\"\n    ], \n    \"erupting\": [\n        \"VBG\"\n    ], \n    \"straggling\": [\n        \"VBG\"\n    ], \n    \"voters\": [\n        \"NNS\"\n    ], \n    \"Furthermore\": [\n        \"RB\"\n    ], \n    \"Spuyten\": [\n        \"NNP\"\n    ], \n    \"sharecrop\": [\n        \"NN\"\n    ], \n    \"cellular-phone\": [\n        \"NN\"\n    ], \n    \"wartorn\": [\n        \"NN\"\n    ], \n    \"Cassandras\": [\n        \"NNPS\"\n    ], \n    \"Meistersinger\": [\n        \"NNP\"\n    ], \n    \"shuttered\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ryerson\": [\n        \"NNP\"\n    ], \n    \"shag\": [\n        \"JJ\"\n    ], \n    \"shad\": [\n        \"NN\"\n    ], \n    \"shah\": [\n        \"NN\"\n    ], \n    \"Meir\": [\n        \"NNP\"\n    ], \n    \"sham\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Huff\": [\n        \"NNP\"\n    ], \n    \"Pollution-control\": [\n        \"JJ\"\n    ], \n    \"receptions\": [\n        \"NNS\"\n    ], \n    \"curators\": [\n        \"NNS\"\n    ], \n    \"Transmission\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Alliant\": [\n        \"NNP\"\n    ], \n    \"overweight\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"feds\": [\n        \"NNS\"\n    ], \n    \"user\": [\n        \"NN\"\n    ], \n    \"priceless\": [\n        \"JJ\"\n    ], \n    \"takeover-proof\": [\n        \"JJ\"\n    ], \n    \"plugs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Telerama\": [\n        \"NNP\"\n    ], \n    \"much-beloved\": [\n        \"JJ\"\n    ], \n    \"unrolls\": [\n        \"VBZ\"\n    ], \n    \"wedged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"grind\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"segmented\": [\n        \"JJ\"\n    ], \n    \"center-stage\": [\n        \"JJ\"\n    ], \n    \"stubbed\": [\n        \"VBN\"\n    ], \n    \"Vaezi\": [\n        \"NNP\"\n    ], \n    \"grins\": [\n        \"NNS\"\n    ], \n    \"Girl\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dennis\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"mislaid\": [\n        \"VBN\"\n    ], \n    \"authoritatively\": [\n        \"RB\"\n    ], \n    \"distances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Chugai\": [\n        \"NNP\"\n    ], \n    \"MOVED\": [\n        \"VBD\"\n    ], \n    \"escorted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"atrophy\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"unhedged\": [\n        \"VBN\"\n    ], \n    \"inlets\": [\n        \"NNS\"\n    ], \n    \"hemolytic\": [\n        \"JJ\"\n    ], \n    \"praying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Killpath\": [\n        \"NNP\"\n    ], \n    \"$\": [\n        \"$\"\n    ], \n    \"moist\": [\n        \"JJ\"\n    ], \n    \"pier\": [\n        \"NN\"\n    ], \n    \"Football\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"guaranteed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Finished\": [\n        \"VBN\"\n    ], \n    \"havin\": [\n        \"VBG\"\n    ], \n    \"Spiegelman\": [\n        \"NNP\"\n    ], \n    \"specialty-chemical\": [\n        \"NN\"\n    ], \n    \"Germany\": [\n        \"NNP\"\n    ], \n    \"decontamination\": [\n        \"NN\"\n    ], \n    \"guarantees\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Maclean\": [\n        \"NNP\"\n    ], \n    \"Tivoli\": [\n        \"NNP\"\n    ], \n    \"march\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"fast-acting\": [\n        \"JJ\"\n    ], \n    \"Stallkamp\": [\n        \"NNP\"\n    ], \n    \"thousand-person\": [\n        \"JJ\"\n    ], \n    \"culturally\": [\n        \"RB\"\n    ], \n    \"Owego\": [\n        \"NNP\"\n    ], \n    \"Biehl\": [\n        \"NNP\"\n    ], \n    \"well-equipped\": [\n        \"JJ\"\n    ], \n    \"Waited\": [\n        \"VBN\"\n    ], \n    \"overriding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Shukri\": [\n        \"NNP\"\n    ], \n    \"Scanner\": [\n        \"NNP\"\n    ], \n    \"UBS\": [\n        \"NNP\"\n    ], \n    \"interestingly\": [\n        \"RB\"\n    ], \n    \"Smallwood\": [\n        \"NNP\"\n    ], \n    \"immunization\": [\n        \"NN\"\n    ], \n    \"Pepto-Bismol\": [\n        \"NNP\"\n    ], \n    \"Learning\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Shu-tt\": [\n        \"VB\"\n    ], \n    \"woodshed\": [\n        \"NN\"\n    ], \n    \"Sidecar\": [\n        \"NN\"\n    ], \n    \"art-nouveau\": [\n        \"JJ\"\n    ], \n    \"brakes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"philandering\": [\n        \"VBG\"\n    ], \n    \"histology\": [\n        \"NN\"\n    ], \n    \"Salomonovich\": [\n        \"NNP\"\n    ], \n    \"trade-union\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fanfare\": [\n        \"NN\"\n    ], \n    \"Verbatim\": [\n        \"JJ\"\n    ], \n    \"higher-octane\": [\n        \"JJ\"\n    ], \n    \"Pittsburgh\": [\n        \"NNP\"\n    ], \n    \"gratuity\": [\n        \"NN\"\n    ], \n    \"exceeding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"slash\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"phasing\": [\n        \"VBG\"\n    ], \n    \"Hokan\": [\n        \"NNP\"\n    ], \n    \"variances\": [\n        \"NNS\"\n    ], \n    \"chargin\": [\n        \"VBG\"\n    ], \n    \"ruh\": [\n        \"FW\"\n    ], \n    \"run\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"pulpwood\": [\n        \"NN\"\n    ], \n    \"rum\": [\n        \"NN\"\n    ], \n    \"rub\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"first-time\": [\n        \"JJ\"\n    ], \n    \"Pymm\": [\n        \"NNP\"\n    ], \n    \"rug\": [\n        \"NN\"\n    ], \n    \"rue\": [\n        \"NN\"\n    ], \n    \"macro-instructions\": [\n        \"NNS\"\n    ], \n    \"short-story\": [\n        \"NN\"\n    ], \n    \"panhandle\": [\n        \"NN\"\n    ], \n    \"ochre\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rut\": [\n        \"NN\"\n    ], \n    \"Grannell\": [\n        \"NNP\"\n    ], \n    \"integers\": [\n        \"NNS\"\n    ], \n    \"Girozentrale\": [\n        \"NNP\"\n    ], \n    \"Showdown\": [\n        \"NNP\"\n    ], \n    \"metrazol\": [\n        \"NN\"\n    ], \n    \"Lior\": [\n        \"NNP\"\n    ], \n    \"sourdough\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lion\": [\n        \"NNP\"\n    ], \n    \"Courier-Journal\": [\n        \"NNP\"\n    ], \n    \"F.O.O.D.\": [\n        \"NNP\"\n    ], \n    \"nonequivalent\": [\n        \"JJ\"\n    ], \n    \"Diagnosis\": [\n        \"NNP\"\n    ], \n    \"Thomp\": [\n        \"NN\"\n    ], \n    \"Eclectic\": [\n        \"JJ\"\n    ], \n    \"gambits\": [\n        \"NNS\"\n    ], \n    \"Racing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"rolls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Racine\": [\n        \"NNP\"\n    ], \n    \"Caddy\": [\n        \"NNP\"\n    ], \n    \"accountability\": [\n        \"NN\"\n    ], \n    \"marble-encased\": [\n        \"JJ\"\n    ], \n    \"heritage\": [\n        \"NN\"\n    ], \n    \"Northamptonshire\": [\n        \"NNP\"\n    ], \n    \"Kuster\": [\n        \"NNP\"\n    ], \n    \"Noll\": [\n        \"NNP\"\n    ], \n    \"sizzle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bursitis\": [\n        \"NN\"\n    ], \n    \"lowprofile\": [\n        \"JJ\"\n    ], \n    \"syndicators\": [\n        \"NNS\"\n    ], \n    \"Individuals\": [\n        \"NNS\"\n    ], \n    \"Micronite\": [\n        \"NN\"\n    ], \n    \"warlike\": [\n        \"JJ\"\n    ], \n    \"fiber-end\": [\n        \"JJ\"\n    ], \n    \"Bostic\": [\n        \"NNP\"\n    ], \n    \"Kazis\": [\n        \"NNP\"\n    ], \n    \"lacheln\": [\n        \"FW\"\n    ], \n    \"Lilac\": [\n        \"NNP\"\n    ], \n    \"physical-chemical\": [\n        \"JJ\"\n    ], \n    \"U.N.-sponsored\": [\n        \"JJ\"\n    ], \n    \"Bostik\": [\n        \"NNP\"\n    ], \n    \"Tyszkiewicz\": [\n        \"NNP\"\n    ], \n    \"Murray\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"foresight\": [\n        \"NN\"\n    ], \n    \"origin...\": [\n        \":\"\n    ], \n    \"gymnastics\": [\n        \"NNS\"\n    ], \n    \"stragglers\": [\n        \"NNS\"\n    ], \n    \"Wis.-based\": [\n        \"JJ\"\n    ], \n    \"Haarlem\": [\n        \"NNP\"\n    ], \n    \"Uchida\": [\n        \"NNP\"\n    ], \n    \"Shaw-Crier\": [\n        \"NNP\"\n    ], \n    \"fleshpots\": [\n        \"NNS\"\n    ], \n    \"animal-health\": [\n        \"NN\"\n    ], \n    \"Sizova\": [\n        \"NNP\"\n    ], \n    \"tormenters\": [\n        \"NNS\"\n    ], \n    \"pattered\": [\n        \"VBD\"\n    ], \n    \"Summertime\": [\n        \"NN\"\n    ], \n    \"tomography\": [\n        \"NN\"\n    ], \n    \"Kyodo\": [\n        \"NNP\"\n    ], \n    \"rough-tough\": [\n        \"JJ\"\n    ], \n    \"Lugar\": [\n        \"NNP\"\n    ], \n    \"ECUs\": [\n        \"NNS\"\n    ], \n    \"Kazan\": [\n        \"NNP\"\n    ], \n    \"Leather\": [\n        \"NNP\"\n    ], \n    \"preachers\": [\n        \"NNS\"\n    ], \n    \"Speaking\": [\n        \"VBG\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"vagabonds\": [\n        \"NNS\"\n    ], \n    \"lap-top\": [\n        \"JJ\"\n    ], \n    \"curriculum\": [\n        \"NN\"\n    ], \n    \"spectators\": [\n        \"NNS\"\n    ], \n    \"re-election\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"visits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Thought\": [\n        \"NNP\", \n        \"VBD\", \n        \"NN\"\n    ], \n    \"neocortex\": [\n        \"NN\"\n    ], \n    \"Teague\": [\n        \"NNP\"\n    ], \n    \"Emmett\": [\n        \"NNP\"\n    ], \n    \"S&P-down\": [\n        \"NN\"\n    ], \n    \"Mexicanos\": [\n        \"NNP\"\n    ], \n    \"required\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"humiliated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"cable-TV-system\": [\n        \"NN\"\n    ], \n    \"factually\": [\n        \"RB\"\n    ], \n    \"humiliates\": [\n        \"VBZ\"\n    ], \n    \"requires\": [\n        \"VBZ\"\n    ], \n    \"evenly\": [\n        \"RB\"\n    ], \n    \"block-buster\": [\n        \"NN\"\n    ], \n    \"eradicated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nuns\": [\n        \"NNS\"\n    ], \n    \"Pell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unalloyed\": [\n        \"JJ\"\n    ], \n    \"Wright-style\": [\n        \"JJ\"\n    ], \n    \"marbleizing\": [\n        \"NN\"\n    ], \n    \"go\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"RP\", \n        \"VBP\"\n    ], \n    \"gm\": [\n        \"NN\"\n    ], \n    \"Integrated\": [\n        \"NNP\"\n    ], \n    \"Af-fold\": [\n        \"JJ\"\n    ], \n    \"Cuisinart\": [\n        \"NNP\"\n    ], \n    \"baron\": [\n        \"NN\"\n    ], \n    \"earthbound\": [\n        \"JJ\"\n    ], \n    \"transacted\": [\n        \"VBN\"\n    ], \n    \"chinos\": [\n        \"NNS\"\n    ], \n    \"wizard\": [\n        \"NN\"\n    ], \n    \"airplay\": [\n        \"NN\"\n    ], \n    \"government-owned\": [\n        \"JJ\"\n    ], \n    \"attired\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"brass-bound\": [\n        \"JJ\"\n    ], \n    \"Bet\": [\n        \"NNP\"\n    ], \n    \"Goriot\": [\n        \"NNP\"\n    ], \n    \"schooner\": [\n        \"NN\"\n    ], \n    \"Pulley\": [\n        \"NNP\"\n    ], \n    \"pro-family\": [\n        \"NN\"\n    ], \n    \"thermos\": [\n        \"NN\"\n    ], \n    \"self-diagnostic\": [\n        \"JJ\"\n    ], \n    \"Pullen\": [\n        \"NNP\"\n    ], \n    \"Bisi\": [\n        \"NNP\"\n    ], \n    \"SpA\": [\n        \"NNP\"\n    ], \n    \"defamatory\": [\n        \"JJ\"\n    ], \n    \"Hindelong\": [\n        \"NNP\"\n    ], \n    \"Teerlink\": [\n        \"NNP\"\n    ], \n    \"Spy\": [\n        \"NNP\"\n    ], \n    \"tonal\": [\n        \"JJ\"\n    ], \n    \"non-food\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cyclosporine\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Schuylkill\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"insurance-premium-finance\": [\n        \"JJ\"\n    ], \n    \"Spa\": [\n        \"NNP\"\n    ], \n    \"innately\": [\n        \"RB\"\n    ], \n    \"Solebury\": [\n        \"NNP\"\n    ], \n    \"five-count\": [\n        \"JJ\"\n    ], \n    \"oddball\": [\n        \"JJ\"\n    ], \n    \"Thynne\": [\n        \"NNP\"\n    ], \n    \"jetplane\": [\n        \"NN\"\n    ], \n    \"punishing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"digest-size\": [\n        \"JJ\"\n    ], \n    \"expunging\": [\n        \"NN\"\n    ], \n    \"Farentino\": [\n        \"NNP\"\n    ], \n    \"Same-store\": [\n        \"JJ\"\n    ], \n    \"clotting\": [\n        \"VBG\"\n    ], \n    \"predispositions\": [\n        \"NNS\"\n    ], \n    \"Soothing\": [\n        \"VBG\"\n    ], \n    \"limited-edition\": [\n        \"JJ\"\n    ], \n    \"Poirot\": [\n        \"NNP\"\n    ], \n    \"Rohatyn\": [\n        \"NNP\"\n    ], \n    \"auspices\": [\n        \"NNS\"\n    ], \n    \"Briefly\": [\n        \"RB\"\n    ], \n    \"sophists\": [\n        \"NNS\"\n    ], \n    \"Boyd\": [\n        \"NNP\"\n    ], \n    \"opaque\": [\n        \"JJ\"\n    ], \n    \"dealer\": [\n        \"NN\"\n    ], \n    \"espresso\": [\n        \"NN\"\n    ], \n    \"Boym\": [\n        \"NNP\"\n    ], \n    \"Boys\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"rotten\": [\n        \"JJ\"\n    ], \n    \"Kirkland\": [\n        \"NNP\"\n    ], \n    \"Aulnay\": [\n        \"NNP\"\n    ], \n    \"schoolboys\": [\n        \"NNS\"\n    ], \n    \"Quatre\": [\n        \"NNP\"\n    ], \n    \"newcasts\": [\n        \"NNS\"\n    ], \n    \"vodkas\": [\n        \"NNS\"\n    ], \n    \"burnt-red\": [\n        \"JJ\"\n    ], \n    \"A.D.L.\": [\n        \"NNP\"\n    ], \n    \"Houghton\": [\n        \"NNP\"\n    ], \n    \"stance\": [\n        \"NN\"\n    ], \n    \"brokering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"stanch\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"stock-fraud\": [\n        \"NN\"\n    ], \n    \"BANKERS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"woolly-headed\": [\n        \"JJ\"\n    ], \n    \"growing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"inceptor\": [\n        \"NN\"\n    ], \n    \"Crimean\": [\n        \"NNP\"\n    ], \n    \"affidavits\": [\n        \"NNS\"\n    ], \n    \"Hedding\": [\n        \"NNP\"\n    ], \n    \"material0F.\": [\n        \"NN\"\n    ], \n    \"likened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Colder\": [\n        \"JJR\"\n    ], \n    \"PATTON\": [\n        \"NNP\"\n    ], \n    \"Aho\": [\n        \"NNP\"\n    ], \n    \"Billheimer\": [\n        \"NNP\"\n    ], \n    \"repel\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"products\": [\n        \"NNS\"\n    ], \n    \"cataloging\": [\n        \"VBG\"\n    ], \n    \"fellow-men\": [\n        \"NNS\"\n    ], \n    \"Wonder\": [\n        \"NNP\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"examining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"half-time\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Portuguese-language\": [\n        \"JJ\"\n    ], \n    \"centum\": [\n        \"NN\"\n    ], \n    \"clout\": [\n        \"NN\"\n    ], \n    \"Lipson\": [\n        \"NNP\"\n    ], \n    \"Waldheim\": [\n        \"NNP\"\n    ], \n    \"ligament\": [\n        \"NN\"\n    ], \n    \"anomalies\": [\n        \"NNS\"\n    ], \n    \"horticultural\": [\n        \"JJ\"\n    ], \n    \"Dai-Tokyo\": [\n        \"NNP\"\n    ], \n    \"manipulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"strapped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"aspirants\": [\n        \"NNS\"\n    ], \n    \"swanlike\": [\n        \"JJ\"\n    ], \n    \"arsines\": [\n        \"NNS\"\n    ], \n    \"Birkhead\": [\n        \"NNP\"\n    ], \n    \"vine-crisscrossed\": [\n        \"JJ\"\n    ], \n    \"indefensible\": [\n        \"JJ\"\n    ], \n    \"Appropriations\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"statutes\": [\n        \"NNS\"\n    ], \n    \"benchmark\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"self-criticism\": [\n        \"NN\"\n    ], \n    \"missile\": [\n        \"NN\"\n    ], \n    \"Editorial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Anti-Ballistic\": [\n        \"NNP\"\n    ], \n    \"shrieked\": [\n        \"VBD\"\n    ], \n    \"burr-headed\": [\n        \"JJ\"\n    ], \n    \"SNET\": [\n        \"NNP\"\n    ], \n    \"RADIO\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"nurture\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Englanders\": [\n        \"NNPS\"\n    ], \n    \"repairman\": [\n        \"NN\"\n    ], \n    \"anthropological\": [\n        \"JJ\"\n    ], \n    \"headstand\": [\n        \"NN\"\n    ], \n    \"Similarities\": [\n        \"NNS\"\n    ], \n    \"Almighty\": [\n        \"NNP\"\n    ], \n    \"documenting\": [\n        \"VBG\"\n    ], \n    \"Aoki\": [\n        \"NNP\"\n    ], \n    \"hesitate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sealift\": [\n        \"NN\"\n    ], \n    \"ambivalence\": [\n        \"NN\"\n    ], \n    \"reoriented\": [\n        \"VBN\"\n    ], \n    \"Rothschilds\": [\n        \"NNPS\"\n    ], \n    \"digested\": [\n        \"VBN\"\n    ], \n    \"Furey\": [\n        \"NNP\"\n    ], \n    \"poetry\": [\n        \"NN\"\n    ], \n    \"YOUR\": [\n        \"JJ\", \n        \"PRP$\"\n    ], \n    \"compiled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cladding\": [\n        \"NN\"\n    ], \n    \"ideologically\": [\n        \"RB\"\n    ], \n    \"pink\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fostered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"entree\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"jiffy\": [\n        \"NN\"\n    ], \n    \"debasement\": [\n        \"NN\"\n    ], \n    \"Alleghenies\": [\n        \"NNPS\"\n    ], \n    \"Ltee\": [\n        \"NNP\"\n    ], \n    \"foment\": [\n        \"VB\"\n    ], \n    \"Ambassador-at-Large\": [\n        \"NNP\"\n    ], \n    \"sky-high\": [\n        \"JJ\"\n    ], \n    \"pansies\": [\n        \"NNS\"\n    ], \n    \"buoying\": [\n        \"VBG\"\n    ], \n    \"adjectival\": [\n        \"JJ\"\n    ], \n    \"Farewell\": [\n        \"NNP\"\n    ], \n    \"agenda\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"supply-sider\": [\n        \"NN\"\n    ], \n    \"immensity\": [\n        \"NN\"\n    ], \n    \"unsolved\": [\n        \"JJ\"\n    ], \n    \"unbreakable\": [\n        \"JJ\"\n    ], \n    \"Hongkong\": [\n        \"NNP\"\n    ], \n    \"frescoing\": [\n        \"NN\"\n    ], \n    \"offences\": [\n        \"NNS\"\n    ], \n    \"bogeymen\": [\n        \"NNS\"\n    ], \n    \"stator\": [\n        \"NN\"\n    ], \n    \"Schantz\": [\n        \"NNP\"\n    ], \n    \"Patchen\": [\n        \"NNP\"\n    ], \n    \"Bangles\": [\n        \"NNPS\"\n    ], \n    \"PWA-owned\": [\n        \"JJ\"\n    ], \n    \"special-technology\": [\n        \"NN\"\n    ], \n    \"exclusion\": [\n        \"NN\"\n    ], \n    \"housewife\": [\n        \"NN\"\n    ], \n    \"Allocation\": [\n        \"NN\"\n    ], \n    \"still-to-be-named\": [\n        \"JJ\"\n    ], \n    \"stock-index-futures\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Volunteer\": [\n        \"NNP\"\n    ], \n    \"Philibert\": [\n        \"NNP\"\n    ], \n    \"fieldmice\": [\n        \"NN\"\n    ], \n    \"sterios\": [\n        \"NNS\"\n    ], \n    \"pure\": [\n        \"JJ\"\n    ], \n    \"stratification\": [\n        \"NN\"\n    ], \n    \"unflaky\": [\n        \"JJ\"\n    ], \n    \"tile\": [\n        \"NN\"\n    ], \n    \"Salsich\": [\n        \"NNP\"\n    ], \n    \"Repeating\": [\n        \"VBG\"\n    ], \n    \"starchiness\": [\n        \"NN\"\n    ], \n    \"Coolest\": [\n        \"JJS\"\n    ], \n    \"Supreme\": [\n        \"NNP\"\n    ], \n    \"Yamane\": [\n        \"NNP\"\n    ], \n    \"fundraisers\": [\n        \"NNS\"\n    ], \n    \"McNear\": [\n        \"NNP\"\n    ], \n    \"foiling\": [\n        \"VBG\"\n    ], \n    \"McNeal\": [\n        \"NNP\"\n    ], \n    \"pools\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lead-exposure\": [\n        \"JJ\"\n    ], \n    \"indolently\": [\n        \"RB\"\n    ], \n    \"Displaying\": [\n        \"VBG\"\n    ], \n    \"denuclearized\": [\n        \"VBN\"\n    ], \n    \"Albertson\": [\n        \"NNP\"\n    ], \n    \"SURVEYS\": [\n        \"NNS\"\n    ], \n    \"prognosticators\": [\n        \"NNS\"\n    ], \n    \"aggravates\": [\n        \"VBZ\"\n    ], \n    \"Hoxan\": [\n        \"NNP\"\n    ], \n    \"chunk\": [\n        \"NN\"\n    ], \n    \"index-linked\": [\n        \"JJ\"\n    ], \n    \"aggravated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"text-form\": [\n        \"NN\"\n    ], \n    \"seesaw\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"designer\": [\n        \"NN\"\n    ], \n    \"sands\": [\n        \"NNS\"\n    ], \n    \"Narbonne\": [\n        \"NNP\"\n    ], \n    \"sandy\": [\n        \"JJ\"\n    ], \n    \"lukewarm\": [\n        \"JJ\"\n    ], \n    \"EGYPT\": [\n        \"NNP\"\n    ], \n    \"Season\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"McVities\": [\n        \"NNP\"\n    ], \n    \"repositioning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"fathom\": [\n        \"VB\"\n    ], \n    \"Juliette\": [\n        \"NNP\"\n    ], \n    \"scimitar\": [\n        \"NN\"\n    ], \n    \"Towering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"amendatory\": [\n        \"JJ\"\n    ], \n    \"spacesuits\": [\n        \"NNS\"\n    ], \n    \"Engle\": [\n        \"NNP\"\n    ], \n    \"Brumidi\": [\n        \"NNP\"\n    ], \n    \"Aptitude\": [\n        \"NNP\"\n    ], \n    \"terminated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Gershen\": [\n        \"NNP\"\n    ], \n    \"Fundamental\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"conservatives\": [\n        \"NNS\"\n    ], \n    \"alchemists\": [\n        \"NNS\"\n    ], \n    \"Judd-Boston\": [\n        \"NNP\"\n    ], \n    \"befriended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Steiger\": [\n        \"NNP\"\n    ], \n    \"post-hearing\": [\n        \"JJ\"\n    ], \n    \"Stuart-family\": [\n        \"NN\"\n    ], \n    \"McLendon\": [\n        \"NNP\"\n    ], \n    \"Guimet\": [\n        \"NNP\"\n    ], \n    \"childless\": [\n        \"JJ\"\n    ], \n    \"standbys\": [\n        \"NNS\"\n    ], \n    \"mono-iodotyrosine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"original-equipment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sondheim\": [\n        \"NNP\"\n    ], \n    \"Newburger\": [\n        \"NNP\"\n    ], \n    \"Hybritech\": [\n        \"NNP\"\n    ], \n    \"Managing\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"reserve-building\": [\n        \"NN\"\n    ], \n    \"lobule\": [\n        \"NN\"\n    ], \n    \"Burdett\": [\n        \"NNP\"\n    ], \n    \"Gunner\": [\n        \"NNP\"\n    ], \n    \"introspective\": [\n        \"JJ\"\n    ], \n    \"Pantasaph\": [\n        \"NNP\"\n    ], \n    \"NORTHEAST\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fella\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"ASP\": [\n        \"NNP\"\n    ], \n    \"WORD\": [\n        \"NN\"\n    ], \n    \"AST\": [\n        \"NNP\"\n    ], \n    \"guys\": [\n        \"NNS\"\n    ], \n    \"WORK\": [\n        \"VBP\"\n    ], \n    \"adjoins\": [\n        \"VBZ\"\n    ], \n    \"AS\\\\\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"chintz\": [\n        \"VBP\"\n    ], \n    \"attach\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"attack\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"buckaroos\": [\n        \"NNS\"\n    ], \n    \"Odom\": [\n        \"NNP\"\n    ], \n    \"motorcyle\": [\n        \"NN\"\n    ], \n    \"Klan\": [\n        \"NNP\"\n    ], \n    \"Rinehart\": [\n        \"NNP\"\n    ], \n    \"Roquemore\": [\n        \"NNP\"\n    ], \n    \"Teixeira\": [\n        \"NNP\"\n    ], \n    \"Bini\": [\n        \"NNP\"\n    ], \n    \"DUN\": [\n        \"NNP\"\n    ], \n    \"Rev.\": [\n        \"NNP\"\n    ], \n    \"Bing\": [\n        \"NNP\"\n    ], \n    \"clanging\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"DUF\": [\n        \"NN\"\n    ], \n    \"formalities\": [\n        \"NNS\"\n    ], \n    \"Bride\": [\n        \"NNP\"\n    ], \n    \"R\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Dutton\": [\n        \"NNP\"\n    ], \n    \"World-Telegram\": [\n        \"NNP\"\n    ], \n    \"overwhelming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"updating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Grossman\": [\n        \"NNP\"\n    ], \n    \"choreographed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Channing\": [\n        \"NNP\"\n    ], \n    \"Bognato\": [\n        \"NNP\"\n    ], \n    \"electroshock\": [\n        \"NN\"\n    ], \n    \"distinguishes\": [\n        \"VBZ\"\n    ], \n    \"beg\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"bed\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bee\": [\n        \"NN\"\n    ], \n    \"RENT-A-CAR\": [\n        \"NNP\"\n    ], \n    \"snazzy\": [\n        \"JJ\"\n    ], \n    \"distinguished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"bet\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"exhibit\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"rhythmic\": [\n        \"JJ\"\n    ], \n    \"Baris\": [\n        \"NNP\"\n    ], \n    \"Curtiss-Wright\": [\n        \"NNP\"\n    ], \n    \"R-stage\": [\n        \"JJ\"\n    ], \n    \"Gillette\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Swiggett\": [\n        \"NNP\"\n    ], \n    \"carrots\": [\n        \"NNS\"\n    ], \n    \"center-field\": [\n        \"NN\"\n    ], \n    \"photographic-products\": [\n        \"JJ\"\n    ], \n    \"sardonic\": [\n        \"JJ\"\n    ], \n    \"battlegroups\": [\n        \"NNS\"\n    ], \n    \"torment\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"all-options\": [\n        \"JJ\"\n    ], \n    \"Vegetable\": [\n        \"NN\"\n    ], \n    \"constrained\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"batwings\": [\n        \"NNS\"\n    ], \n    \"rice-processing\": [\n        \"JJ\"\n    ], \n    \"Isabel\": [\n        \"NNP\"\n    ], \n    \"mainstays\": [\n        \"NNS\"\n    ], \n    \"square-built\": [\n        \"JJ\"\n    ], \n    \"INVESTORS\": [\n        \"NNS\"\n    ], \n    \"Retton\": [\n        \"NNP\"\n    ], \n    \"no-frills\": [\n        \"JJ\"\n    ], \n    \"instancy\": [\n        \"NN\"\n    ], \n    \"Dillinger\": [\n        \"NNP\"\n    ], \n    \"self-hatred\": [\n        \"NN\"\n    ], \n    \"instance\": [\n        \"NN\"\n    ], \n    \"romances\": [\n        \"NNS\"\n    ], \n    \"dimming\": [\n        \"VBG\"\n    ], \n    \"option-related\": [\n        \"JJ\"\n    ], \n    \"floundered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hoodlums\": [\n        \"NNS\"\n    ], \n    \"Urals\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Worlders\": [\n        \"NNPS\"\n    ], \n    \"demise\": [\n        \"NN\"\n    ], \n    \"Norths\": [\n        \"NNPS\"\n    ], \n    \"nuisance\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Northy\": [\n        \"NNP\"\n    ], \n    \"bloodthirsty\": [\n        \"JJ\"\n    ], \n    \"Somersaults\": [\n        \"NNS\"\n    ], \n    \"consequences\": [\n        \"NNS\"\n    ], \n    \"WSJ\\\\/NBC\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"semi-retired\": [\n        \"JJ\"\n    ], \n    \"Growth\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"conventional-arms\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Brendel\": [\n        \"NNP\"\n    ], \n    \"ex-franchise\": [\n        \"NN\"\n    ], \n    \"affair\": [\n        \"NN\"\n    ], \n    \"six-ton\": [\n        \"JJ\"\n    ], \n    \"reprehensible\": [\n        \"JJ\"\n    ], \n    \"kiddie\": [\n        \"NN\"\n    ], \n    \"adjudicator\": [\n        \"NN\"\n    ], \n    \"anyway\": [\n        \"RB\"\n    ], \n    \"contour-obliterating\": [\n        \"JJ\"\n    ], \n    \"farfetched\": [\n        \"JJ\"\n    ], \n    \"coal-mining\": [\n        \"JJ\"\n    ], \n    \"parked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"unenvied\": [\n        \"JJ\"\n    ], \n    \"Manske\": [\n        \"NNP\"\n    ], \n    \"counterterror\": [\n        \"JJ\"\n    ], \n    \"boutiques\": [\n        \"NNS\"\n    ], \n    \"remunerated\": [\n        \"VBN\"\n    ], \n    \"Bonaccolta\": [\n        \"NNP\"\n    ], \n    \"fiberglass\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"ever-lovin\": [\n        \"JJ\"\n    ], \n    \"millennia\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Creditanstalt-Bankverein\": [\n        \"NNP\"\n    ], \n    \"attained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sulfur\": [\n        \"NN\"\n    ], \n    \"stocks-index\": [\n        \"JJ\"\n    ], \n    \"Leszek\": [\n        \"NNP\"\n    ], \n    \"Medici\": [\n        \"NNPS\"\n    ], \n    \"quantified\": [\n        \"VBN\"\n    ], \n    \"Eats\": [\n        \"NNS\"\n    ], \n    \"bodybuilders\": [\n        \"NNS\"\n    ], \n    \"assimilable\": [\n        \"JJ\"\n    ], \n    \"User-friendly\": [\n        \"JJ\"\n    ], \n    \"Politically\": [\n        \"RB\"\n    ], \n    \"Ilva\": [\n        \"NNP\"\n    ], \n    \"ascended\": [\n        \"VBD\"\n    ], \n    \"evolution\": [\n        \"NN\"\n    ], \n    \"heart-wrenching\": [\n        \"JJ\"\n    ], \n    \"shy\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pricetags\": [\n        \"NNS\"\n    ], \n    \"uprisings\": [\n        \"NNS\"\n    ], \n    \"she\": [\n        \"PRP\"\n    ], \n    \"mixologists\": [\n        \"NNS\"\n    ], \n    \"Incrementally\": [\n        \"RB\"\n    ], \n    \"solicitous\": [\n        \"JJ\"\n    ], \n    \"flogged\": [\n        \"VBD\"\n    ], \n    \"Two-year\": [\n        \"JJ\"\n    ], \n    \"Stroking\": [\n        \"VBG\"\n    ], \n    \"sho\": [\n        \"UH\"\n    ], \n    \"movie-making\": [\n        \"NN\"\n    ], \n    \"home-building\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"accuses\": [\n        \"VBZ\"\n    ], \n    \"accuser\": [\n        \"NN\"\n    ], \n    \"halving\": [\n        \"VBG\"\n    ], \n    \"WEFA\": [\n        \"NNP\"\n    ], \n    \"typhoons\": [\n        \"NNS\"\n    ], \n    \"inkling\": [\n        \"NN\"\n    ], \n    \"differs\": [\n        \"VBZ\"\n    ], \n    \"Williamstown\": [\n        \"NNP\"\n    ], \n    \"accused\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"usefulness\": [\n        \"NN\"\n    ], \n    \"Tartary\": [\n        \"NNP\"\n    ], \n    \"configuration-data\": [\n        \"JJ\"\n    ], \n    \"pianism\": [\n        \"NN\"\n    ], \n    \"add-ons\": [\n        \"NNS\"\n    ], \n    \"Hergesheimer\": [\n        \"NNP\"\n    ], \n    \"Chiriqui\": [\n        \"NNP\"\n    ], \n    \"Dimaggio\": [\n        \"NNP\"\n    ], \n    \"horribly\": [\n        \"RB\"\n    ], \n    \"willpower\": [\n        \"NN\"\n    ], \n    \"arraigned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"horrible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"neither\": [\n        \"DT\", \n        \"NN\", \n        \"RB\", \n        \"CC\"\n    ], \n    \"INCREASING\": [\n        \"VBG\"\n    ], \n    \"kidneys\": [\n        \"NNS\"\n    ], \n    \"Wipe\": [\n        \"VB\"\n    ], \n    \"BellSouth-LIN\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"McAlinden\": [\n        \"NNP\"\n    ], \n    \"ultracentrifugation\": [\n        \"NN\"\n    ], \n    \"spares\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Campo\": [\n        \"NNP\"\n    ], \n    \"Recall\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"extolling\": [\n        \"VBG\"\n    ], \n    \"seemed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"spared\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Remain\": [\n        \"VB\"\n    ], \n    \"Race\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"middle-level\": [\n        \"JJ\"\n    ], \n    \"ailerons\": [\n        \"NNS\"\n    ], \n    \"approval\": [\n        \"NN\"\n    ], \n    \"mujahideen\": [\n        \"FW\"\n    ], \n    \"Tunnard\": [\n        \"NNP\"\n    ], \n    \"undetermined\": [\n        \"JJ\"\n    ], \n    \"Poling\": [\n        \"NNP\"\n    ], \n    \"meritless\": [\n        \"JJ\"\n    ], \n    \"Revlon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"at-risk\": [\n        \"JJ\"\n    ], \n    \"control-room\": [\n        \"NN\"\n    ], \n    \"anchormen\": [\n        \"NNS\"\n    ], \n    \"Masson\": [\n        \"NNP\"\n    ], \n    \"year-before\": [\n        \"JJ\"\n    ], \n    \"Headlines\": [\n        \"NNS\"\n    ], \n    \"High-grade\": [\n        \"JJ\"\n    ], \n    \"fee-per-day\": [\n        \"NN\"\n    ], \n    \"Kyo-zan\": [\n        \"NN\"\n    ], \n    \"Chabrier\": [\n        \"NNP\"\n    ], \n    \"franchise\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tabuchi\": [\n        \"NNP\"\n    ], \n    \"quantity-based\": [\n        \"JJ\"\n    ], \n    \"feeblest\": [\n        \"JJS\"\n    ], \n    \"Regalia\": [\n        \"NNP\"\n    ], \n    \"Middle-Eastern\": [\n        \"JJ\"\n    ], \n    \"addition\": [\n        \"NN\"\n    ], \n    \"new-mown\": [\n        \"JJ\"\n    ], \n    \"Immigration\": [\n        \"NNP\"\n    ], \n    \"conjoined\": [\n        \"VBN\"\n    ], \n    \"chimiques\": [\n        \"FW\"\n    ], \n    \"MOTOR\": [\n        \"NNP\"\n    ], \n    \"do-nothing\": [\n        \"JJ\"\n    ], \n    \"Raider\": [\n        \"NNP\"\n    ], \n    \"armistice\": [\n        \"NN\"\n    ], \n    \"isolating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"banshees\": [\n        \"NNS\"\n    ], \n    \"well-paid\": [\n        \"JJ\"\n    ], \n    \"Pretend\": [\n        \"VB\"\n    ], \n    \"SEC.\": [\n        \"NNP\"\n    ], \n    \"ghoulish\": [\n        \"JJ\"\n    ], \n    \"expenditure\": [\n        \"NN\"\n    ], \n    \"Repayment\": [\n        \"NNP\"\n    ], \n    \"Lutsenko\": [\n        \"NNP\"\n    ], \n    \"brunch\": [\n        \"NN\"\n    ], \n    \"capering\": [\n        \"VBG\"\n    ], \n    \"Logistics\": [\n        \"NNP\"\n    ], \n    \"owne\": [\n        \"JJ\"\n    ], \n    \"Tired\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"contexts\": [\n        \"NNS\"\n    ], \n    \"supervened\": [\n        \"VBN\"\n    ], \n    \"ripen\": [\n        \"VBP\"\n    ], \n    \"Avocado\": [\n        \"NNP\"\n    ], \n    \"chanceries\": [\n        \"NNS\"\n    ], \n    \"Tires\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"disaster-subsidy\": [\n        \"JJ\"\n    ], \n    \"Rusty\": [\n        \"NNP\"\n    ], \n    \"tt\": [\n        \"NN\"\n    ], \n    \"non-surgical\": [\n        \"JJ\"\n    ], \n    \"inaccurately\": [\n        \"RB\"\n    ], \n    \"owns\": [\n        \"VBZ\"\n    ], \n    \"cornering\": [\n        \"VBG\"\n    ], \n    \"bi-modal\": [\n        \"JJ\"\n    ], \n    \"Cyprus\": [\n        \"NNP\"\n    ], \n    \"TAKING\": [\n        \"VBG\"\n    ], \n    \"ArgoSystems\": [\n        \"NNPS\"\n    ], \n    \"Troops\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Laverty\": [\n        \"NNP\"\n    ], \n    \"neuron\": [\n        \"NN\"\n    ], \n    \"tonic\": [\n        \"NN\"\n    ], \n    \"interrogate\": [\n        \"VB\"\n    ], \n    \"plundered\": [\n        \"VBN\"\n    ], \n    \"deterence\": [\n        \"NN\"\n    ], \n    \"channel-zapping\": [\n        \"JJ\"\n    ], \n    \"disclosures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"windmill\": [\n        \"NN\"\n    ], \n    \"orbital\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dresdner\": [\n        \"NNP\"\n    ], \n    \"calamitous\": [\n        \"JJ\"\n    ], \n    \"incumbent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"blight\": [\n        \"NN\"\n    ], \n    \"Machelle\": [\n        \"NNP\"\n    ], \n    \"Mix-Up\": [\n        \"NN\"\n    ], \n    \"Viareggio\": [\n        \"NNP\"\n    ], \n    \"post-reapportionment\": [\n        \"JJ\"\n    ], \n    \"Repairing\": [\n        \"VBG\"\n    ], \n    \"Huddle\": [\n        \"NN\"\n    ], \n    \"hardliner\": [\n        \"NN\"\n    ], \n    \"Financial-service\": [\n        \"NN\"\n    ], \n    \"rightfully\": [\n        \"RB\"\n    ], \n    \"Lucassen\": [\n        \"NNP\"\n    ], \n    \"compared\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sabo\": [\n        \"NNP\"\n    ], \n    \"wrongly\": [\n        \"RB\"\n    ], \n    \"Saba\": [\n        \"NNP\"\n    ], \n    \"Grimes\": [\n        \"NNP\"\n    ], \n    \"Norsk\": [\n        \"NNP\"\n    ], \n    \"transaction\": [\n        \"NN\"\n    ], \n    \"freight-transport\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"reflection\": [\n        \"NN\"\n    ], \n    \"Throwing\": [\n        \"VBG\"\n    ], \n    \"Meinckian\": [\n        \"NNP\"\n    ], \n    \"Damonne\": [\n        \"NNP\"\n    ], \n    \"sanipractor\": [\n        \"NN\"\n    ], \n    \"campaign-decided\": [\n        \"NN\"\n    ], \n    \"HEUBLEIN\": [\n        \"NNP\"\n    ], \n    \"Superman\": [\n        \"NNP\"\n    ], \n    \"She\": [\n        \"PRP\", \n        \"NN\"\n    ], \n    \"taller\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"non-communists\": [\n        \"NNS\"\n    ], \n    \"schnooks\": [\n        \"NNS\"\n    ], \n    \"tell...\": [\n        \":\"\n    ], \n    \"Blaber\": [\n        \"NNP\"\n    ], \n    \"Perasso\": [\n        \"NNP\"\n    ], \n    \"centralizing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"incentive-spurred\": [\n        \"JJ\"\n    ], \n    \"spells\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"reaffirmation\": [\n        \"NN\"\n    ], \n    \"saviour\": [\n        \"NN\"\n    ], \n    \"Waldenbooks\": [\n        \"NNP\"\n    ], \n    \"beta-blocker\": [\n        \"NN\"\n    ], \n    \"stock-picking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fine-tune\": [\n        \"VB\"\n    ], \n    \"deposits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"deuterated\": [\n        \"VBD\"\n    ], \n    \"Broner\": [\n        \"NNP\"\n    ], \n    \"footballer\": [\n        \"NN\"\n    ], \n    \"drug-supply\": [\n        \"JJ\"\n    ], \n    \"homework\": [\n        \"NN\"\n    ], \n    \"Yasser\": [\n        \"NNP\"\n    ], \n    \"sonic\": [\n        \"JJ\"\n    ], \n    \"wooed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"definitive\": [\n        \"JJ\"\n    ], \n    \"fate\": [\n        \"NN\"\n    ], \n    \"whims\": [\n        \"NNS\"\n    ], \n    \"swami\": [\n        \"NNS\"\n    ], \n    \"fats\": [\n        \"NNS\"\n    ], \n    \"die-up\": [\n        \"NN\"\n    ], \n    \"historic\": [\n        \"JJ\"\n    ], \n    \"Autolatina\": [\n        \"NNP\"\n    ], \n    \"Attributes\": [\n        \"NNS\"\n    ], \n    \"dental-products\": [\n        \"NNS\"\n    ], \n    \"Proof\": [\n        \"NN\"\n    ], \n    \"Inspectors\": [\n        \"NNS\"\n    ], \n    \"break-the-rules\": [\n        \"JJ\"\n    ], \n    \"renegade\": [\n        \"NN\"\n    ], \n    \"nameplate\": [\n        \"NN\"\n    ], \n    \"sizes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"worthwile\": [\n        \"VB\"\n    ], \n    \"Burchuladze\": [\n        \"NNP\"\n    ], \n    \"candy\": [\n        \"NN\"\n    ], \n    \"sized\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"tablespoons\": [\n        \"NNS\"\n    ], \n    \"pinging\": [\n        \"VBG\"\n    ], \n    \"hydrolyzed\": [\n        \"VBN\"\n    ], \n    \"lends\": [\n        \"VBZ\"\n    ], \n    \"Hoaps\": [\n        \"NNP\"\n    ], \n    \"Albrecht\": [\n        \"NNP\"\n    ], \n    \"Gerbig\": [\n        \"NNP\"\n    ], \n    \"rims\": [\n        \"NNS\"\n    ], \n    \"Teipel\": [\n        \"NNP\"\n    ], \n    \"upswing\": [\n        \"NN\"\n    ], \n    \"goats\": [\n        \"NNS\"\n    ], \n    \"Babylon\": [\n        \"NNP\"\n    ], \n    \"Seizes\": [\n        \"VBZ\"\n    ], \n    \"price-and-seasonally\": [\n        \"RB\"\n    ], \n    \"sorption\": [\n        \"NN\"\n    ], \n    \"Institutio\": [\n        \"NNP\"\n    ], \n    \"retirements\": [\n        \"NNS\"\n    ], \n    \"Rhythms\": [\n        \"NNPS\"\n    ], \n    \"medieval\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Practically\": [\n        \"RB\"\n    ], \n    \"Leavenworth\": [\n        \"NNP\"\n    ], \n    \"expansion\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Strobel\": [\n        \"NNP\"\n    ], \n    \"imperfectly\": [\n        \"RB\"\n    ], \n    \"choked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Aslanian\": [\n        \"NNP\"\n    ], \n    \"Pyrometer\": [\n        \"NNP\"\n    ], \n    \"Antiquity\": [\n        \"NN\"\n    ], \n    \"eatables\": [\n        \"NNS\"\n    ], \n    \"U\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"seraphim\": [\n        \"NN\"\n    ], \n    \"reptile\": [\n        \"NN\"\n    ], \n    \"celebrations\": [\n        \"NNS\"\n    ], \n    \"Ford-Kissinger\": [\n        \"NNP\"\n    ], \n    \"citron\": [\n        \"JJ\"\n    ], \n    \"Graph\": [\n        \"NN\"\n    ], \n    \"evocation\": [\n        \"NN\"\n    ], \n    \"mushrooms\": [\n        \"NNS\"\n    ], \n    \"Foxx\": [\n        \"NNP\"\n    ], \n    \"brusquely\": [\n        \"RB\"\n    ], \n    \"secretive\": [\n        \"JJ\"\n    ], \n    \"winging\": [\n        \"VBG\"\n    ], \n    \"Nakamura\": [\n        \"NNP\"\n    ], \n    \"agin\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"Rameau\": [\n        \"NNP\"\n    ], \n    \"Dunlop\": [\n        \"NNP\"\n    ], \n    \"Dayton\": [\n        \"NNP\"\n    ], \n    \"Lorca\": [\n        \"NNP\"\n    ], \n    \"CGE\": [\n        \"NNP\"\n    ], \n    \"accountant\": [\n        \"NN\"\n    ], \n    \"figuratively\": [\n        \"RB\"\n    ], \n    \"inner\": [\n        \"JJ\"\n    ], \n    \"CGP\": [\n        \"NNP\"\n    ], \n    \"TEDs\": [\n        \"NNS\"\n    ], \n    \"backhand\": [\n        \"NN\"\n    ], \n    \"R.F.\": [\n        \"NNP\"\n    ], \n    \"Perin\": [\n        \"NNP\"\n    ], \n    \"FED\": [\n        \"NNP\"\n    ], \n    \"prophetic\": [\n        \"JJ\"\n    ], \n    \"Campitelli\": [\n        \"NNP\"\n    ], \n    \"government-encouraged\": [\n        \"JJ\"\n    ], \n    \"administrators\": [\n        \"NNS\"\n    ], \n    \"Daschle\": [\n        \"NNP\"\n    ], \n    \"fraternities\": [\n        \"NNS\"\n    ], \n    \"Hesse\": [\n        \"NNP\"\n    ], \n    \"Harrows\": [\n        \"NNPS\"\n    ], \n    \"Industrial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"apiece\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"annuities\": [\n        \"NNS\"\n    ], \n    \"millstones\": [\n        \"NNS\"\n    ], \n    \"projecting\": [\n        \"VBG\"\n    ], \n    \"Seashore\": [\n        \"NNP\"\n    ], \n    \"gagged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cacao\": [\n        \"NNP\"\n    ], \n    \"i.d.\": [\n        \"NN\"\n    ], \n    \"Industrias\": [\n        \"NNP\"\n    ], \n    \"mechanics\": [\n        \"NNS\"\n    ], \n    \"Semel\": [\n        \"NNP\"\n    ], \n    \"Alla\": [\n        \"NNP\"\n    ], \n    \"boulevards\": [\n        \"NNS\"\n    ], \n    \"cost-efficiency\": [\n        \"NN\"\n    ], \n    \"Tasaki\": [\n        \"NNP\"\n    ], \n    \"Fellows\": [\n        \"NNS\"\n    ], \n    \"impulse-related\": [\n        \"JJ\"\n    ], \n    \"build-ups\": [\n        \"NNS\"\n    ], \n    \"Ally\": [\n        \"VBP\"\n    ], \n    \"baksheesh\": [\n        \"NN\"\n    ], \n    \"folio\": [\n        \"NN\"\n    ], \n    \"castigation\": [\n        \"NN\"\n    ], \n    \"equiment\": [\n        \"NN\"\n    ], \n    \"torrid\": [\n        \"JJ\"\n    ], \n    \"savagely\": [\n        \"RB\"\n    ], \n    \"Appell\": [\n        \"NNP\"\n    ], \n    \"meteor\": [\n        \"NN\"\n    ], \n    \"Telecommuncations\": [\n        \"NNPS\"\n    ], \n    \"jamming\": [\n        \"NN\"\n    ], \n    \"Mexico-watchers\": [\n        \"NNS\"\n    ], \n    \"indiscretions\": [\n        \"NNS\"\n    ], \n    \"deficit-reduction\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Depicted\": [\n        \"VBN\"\n    ], \n    \"impurity\": [\n        \"NN\"\n    ], \n    \"bronchi\": [\n        \"NNS\"\n    ], \n    \"Allday\": [\n        \"NNP\"\n    ], \n    \"Aflatoxin\": [\n        \"NN\"\n    ], \n    \"Date\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Healey\": [\n        \"NNP\"\n    ], \n    \"tightest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"unsteadily\": [\n        \"RB\"\n    ], \n    \"Chambers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"retirees\": [\n        \"NNS\"\n    ], \n    \"Savage\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Engraph\": [\n        \"NNP\"\n    ], \n    \"Bernstein-Macaulay\": [\n        \"NNP\"\n    ], \n    \"coal-preparation\": [\n        \"JJ\"\n    ], \n    \"protest\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Toledo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"intermingle\": [\n        \"VBP\"\n    ], \n    \"IJAL\": [\n        \"NNP\"\n    ], \n    \"up.\": [\n        \"RB\"\n    ], \n    \"fronts\": [\n        \"NNS\"\n    ], \n    \"Liverpool\": [\n        \"NNP\"\n    ], \n    \"Klein\": [\n        \"NNP\"\n    ], \n    \"Lunge\": [\n        \"NNP\"\n    ], \n    \"restriction\": [\n        \"NN\"\n    ], \n    \"onstage\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"high-coupon\": [\n        \"JJ\"\n    ], \n    \"Grocery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pro-environmental\": [\n        \"JJ\"\n    ], \n    \"activation\": [\n        \"NN\"\n    ], \n    \"Auschwitz\": [\n        \"NNP\"\n    ], \n    \"clear-channel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dealer-managers\": [\n        \"NNS\"\n    ], \n    \"advocating\": [\n        \"VBG\"\n    ], \n    \"Queks\": [\n        \"NNPS\"\n    ], \n    \"snowflakes\": [\n        \"NNS\"\n    ], \n    \"well-structured\": [\n        \"JJ\"\n    ], \n    \"shoelace\": [\n        \"NN\"\n    ], \n    \"pure-meat\": [\n        \"NN\"\n    ], \n    \"nursery\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"greenish\": [\n        \"JJ\"\n    ], \n    \"fortiori\": [\n        \"FW\"\n    ], \n    \"closed-circuit\": [\n        \"JJ\"\n    ], \n    \"machine-gun\": [\n        \"NN\"\n    ], \n    \"swoons\": [\n        \"NNS\"\n    ], \n    \"bimonthly\": [\n        \"JJ\"\n    ], \n    \"Strasbourg\": [\n        \"NNP\"\n    ], \n    \"concise\": [\n        \"JJ\"\n    ], \n    \"Negative\": [\n        \"JJ\"\n    ], \n    \"Hounds\": [\n        \"NNPS\"\n    ], \n    \"evaluated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"twiddled\": [\n        \"VBD\"\n    ], \n    \"Affected\": [\n        \"VBN\"\n    ], \n    \"desirous\": [\n        \"JJ\"\n    ], \n    \"hang-tough\": [\n        \"JJ\"\n    ], \n    \"now-ousted\": [\n        \"JJ\"\n    ], \n    \"unskilled\": [\n        \"JJ\"\n    ], \n    \"fetish\": [\n        \"NN\"\n    ], \n    \"Anselmo\": [\n        \"NNP\"\n    ], \n    \"evolving\": [\n        \"VBG\"\n    ], \n    \"centric\": [\n        \"JJ\"\n    ], \n    \"baby-food\": [\n        \"JJ\"\n    ], \n    \"Items\": [\n        \"NNS\"\n    ], \n    \"never\": [\n        \"RB\", \n        \"RBR\"\n    ], \n    \"Artisans\": [\n        \"NNS\"\n    ], \n    \"S.I.\": [\n        \"NNP\"\n    ], \n    \"second-hand\": [\n        \"JJ\"\n    ], \n    \"cardboard\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Georgano\": [\n        \"NNP\"\n    ], \n    \"Fragile\": [\n        \"NNP\"\n    ], \n    \"buckled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"vulnerability\": [\n        \"NN\"\n    ], \n    \"groveling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"piercing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Soering\": [\n        \"NNP\"\n    ], \n    \"tolerating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"golds\": [\n        \"NNS\"\n    ], \n    \"weapons-grade\": [\n        \"JJ\"\n    ], \n    \"monosyllable\": [\n        \"NN\"\n    ], \n    \"Lilley\": [\n        \"NNP\"\n    ], \n    \"astute\": [\n        \"JJ\"\n    ], \n    \"Archangel\": [\n        \"NNP\"\n    ], \n    \"exquisiteness\": [\n        \"NN\"\n    ], \n    \"hunch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"elaborated\": [\n        \"VBN\"\n    ], \n    \"second-deadliest\": [\n        \"JJ\"\n    ], \n    \"shelter.\": [\n        \"NN\"\n    ], \n    \"dehumanize\": [\n        \"VB\"\n    ], \n    \"treatment\": [\n        \"NN\"\n    ], \n    \"elaborates\": [\n        \"VBZ\"\n    ], \n    \"near-monopoly\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Telemundo\": [\n        \"NNP\"\n    ], \n    \"Binning\": [\n        \"NNP\"\n    ], \n    \"drowned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"college-educated\": [\n        \"JJ\"\n    ], \n    \"Armies\": [\n        \"NNP\"\n    ], \n    \"Corresponding\": [\n        \"VBG\"\n    ], \n    \"mortality\": [\n        \"NN\"\n    ], \n    \"unsteadiness\": [\n        \"NN\"\n    ], \n    \"Heuvelmans\": [\n        \"NNP\"\n    ], \n    \"exited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"panacea\": [\n        \"NN\"\n    ], \n    \"Loire\": [\n        \"NNP\"\n    ], \n    \"misfiring\": [\n        \"VBG\"\n    ], \n    \"Insisting\": [\n        \"VBG\"\n    ], \n    \"Removed\": [\n        \"VBN\"\n    ], \n    \"tell\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"slam-dunk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"expose\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Yuen\": [\n        \"NNP\"\n    ], \n    \"underwear\": [\n        \"NN\"\n    ], \n    \"Hibbard\": [\n        \"NNP\"\n    ], \n    \"loony\": [\n        \"JJ\"\n    ], \n    \"A.D.\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"shelters\": [\n        \"NNS\"\n    ], \n    \"counter-trade\": [\n        \"JJ\"\n    ], \n    \"Esrey\": [\n        \"NNP\"\n    ], \n    \"inhabited\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"directorial\": [\n        \"JJ\"\n    ], \n    \"Vittorio\": [\n        \"NNP\"\n    ], \n    \"rights\": [\n        \"NNS\"\n    ], \n    \"Cornwallis\": [\n        \"NNP\"\n    ], \n    \"Vittoria\": [\n        \"NNP\"\n    ], \n    \"foliage\": [\n        \"NN\"\n    ], \n    \"Japan-made\": [\n        \"JJ\"\n    ], \n    \"frantic\": [\n        \"JJ\"\n    ], \n    \"home-center\": [\n        \"NN\"\n    ], \n    \"endow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Short-term\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"summarizes\": [\n        \"VBZ\"\n    ], \n    \"barbers\": [\n        \"NNS\"\n    ], \n    \"U.s\": [\n        \"NNP\"\n    ], \n    \"Ricken\": [\n        \"NNP\"\n    ], \n    \"squirting\": [\n        \"VBG\"\n    ], \n    \"CALLS\": [\n        \"NNPS\"\n    ], \n    \"give\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"high-efficiency\": [\n        \"NN\"\n    ], \n    \"TransAtlantic\": [\n        \"NNP\"\n    ], \n    \"Humphries\": [\n        \"NNP\"\n    ], \n    \"gleefully\": [\n        \"RB\"\n    ], \n    \"artifically\": [\n        \"RB\"\n    ], \n    \"laser-surgery\": [\n        \"NN\"\n    ], \n    \"crystallized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"U.S\": [\n        \"NNP\", \n        \"SYM\"\n    ], \n    \"polio\": [\n        \"NN\"\n    ], \n    \"Phoenix\": [\n        \"NNP\"\n    ], \n    \"Gaisman\": [\n        \"NNP\"\n    ], \n    \"scrivener\": [\n        \"NN\"\n    ], \n    \"braids\": [\n        \"NNS\"\n    ], \n    \"stupidity\": [\n        \"NN\"\n    ], \n    \"Jack\": [\n        \"NNP\"\n    ], \n    \"polis\": [\n        \"NN\"\n    ], \n    \"Mokaba\": [\n        \"NNP\"\n    ], \n    \"butting\": [\n        \"VBG\"\n    ], \n    \"U.K\": [\n        \"NNP\"\n    ], \n    \"U.N\": [\n        \"NNP\"\n    ], \n    \"Hashing\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Excision\": [\n        \"NN\"\n    ], \n    \"peopled\": [\n        \"VBN\"\n    ], \n    \"Neesen\": [\n        \"NNP\"\n    ], \n    \"futures-exchange\": [\n        \"NN\"\n    ], \n    \"abdomen\": [\n        \"NN\"\n    ], \n    \"Connolly\": [\n        \"NNP\"\n    ], \n    \"Prickly\": [\n        \"JJ\"\n    ], \n    \"Quinton\": [\n        \"NNP\"\n    ], \n    \"do-gooder\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Shlomo\": [\n        \"NNP\"\n    ], \n    \"kangaroo-committee\": [\n        \"NN\"\n    ], \n    \"summarize\": [\n        \"VB\"\n    ], \n    \"muddling\": [\n        \"VBG\"\n    ], \n    \"ambivalent\": [\n        \"JJ\"\n    ], \n    \"suppressants\": [\n        \"NNS\"\n    ], \n    \"DEFERRED\": [\n        \"JJ\"\n    ], \n    \"U.S.A.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"electronic-test\": [\n        \"JJ\"\n    ], \n    \"under-50\": [\n        \"JJ\"\n    ], \n    \"gulling\": [\n        \"VBG\"\n    ], \n    \"anti-miscarriage\": [\n        \"JJ\"\n    ], \n    \"cold-cuts\": [\n        \"NNS\"\n    ], \n    \"L.B.\": [\n        \"NNP\"\n    ], \n    \"cofactors\": [\n        \"NNS\"\n    ], \n    \"Sharps\": [\n        \"NNP\"\n    ], \n    \"amplifying\": [\n        \"VBG\"\n    ], \n    \"overstepping\": [\n        \"VBG\"\n    ], \n    \"elucidations\": [\n        \"NNS\"\n    ], \n    \"Sharpe\": [\n        \"NNP\"\n    ], \n    \"panthers\": [\n        \"NNS\"\n    ], \n    \"partisans\": [\n        \"NNS\"\n    ], \n    \"indispensible\": [\n        \"JJ\"\n    ], \n    \"private-label\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"three-week-old\": [\n        \"JJ\"\n    ], \n    \"soaking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"stopover\": [\n        \"NN\"\n    ], \n    \"DIASONICS\": [\n        \"NNP\"\n    ], \n    \"superhighway\": [\n        \"NN\"\n    ], \n    \"anti-lobbying\": [\n        \"JJ\"\n    ], \n    \"Bobby\": [\n        \"NNP\"\n    ], \n    \"decions\": [\n        \"NNS\"\n    ], \n    \"Detail\": [\n        \"NNP\"\n    ], \n    \"underscore\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"family-welfare\": [\n        \"NN\"\n    ], \n    \"Frederik\": [\n        \"NNP\"\n    ], \n    \"heavy-industry\": [\n        \"NN\"\n    ], \n    \"Weakens\": [\n        \"VBZ\"\n    ], \n    \"Capitol-EMI\": [\n        \"NNP\"\n    ], \n    \"brightness\": [\n        \"NN\"\n    ], \n    \"quarter-century\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"calibrating\": [\n        \"VBG\"\n    ], \n    \"investigator\": [\n        \"NN\"\n    ], \n    \"Sapanski\": [\n        \"NNP\"\n    ], \n    \"lucy\": [\n        \"NN\"\n    ], \n    \"Goose\": [\n        \"NNP\"\n    ], \n    \"Fortescue\": [\n        \"NNP\"\n    ], \n    \"Milan\": [\n        \"NNP\"\n    ], \n    \"less-cyclical\": [\n        \"JJ\"\n    ], \n    \"Tacker\": [\n        \"NNP\"\n    ], \n    \"motoring\": [\n        \"VBG\"\n    ], \n    \"luck\": [\n        \"NN\"\n    ], \n    \"adobe\": [\n        \"NN\"\n    ], \n    \"enthusiasts\": [\n        \"NNS\"\n    ], \n    \"Dressed\": [\n        \"VBN\"\n    ], \n    \"Wow\": [\n        \"UH\"\n    ], \n    \"RNAs\": [\n        \"NNS\"\n    ], \n    \"Charts\": [\n        \"NNS\"\n    ], \n    \"Waleson\": [\n        \"NNP\"\n    ], \n    \"Woo\": [\n        \"NNP\"\n    ], \n    \"taught\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Bogner\": [\n        \"NNP\"\n    ], \n    \"polivinylchloride\": [\n        \"NN\"\n    ], \n    \"Woe\": [\n        \"NN\"\n    ], \n    \"enclosure\": [\n        \"NN\"\n    ], \n    \"Dresses\": [\n        \"NNS\"\n    ], \n    \"Dresser\": [\n        \"NNP\"\n    ], \n    \"conjectures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"roadblock\": [\n        \"NN\"\n    ], \n    \"decree\": [\n        \"NN\"\n    ], \n    \"COOPER\": [\n        \"NNP\"\n    ], \n    \"pig-infested\": [\n        \"JJ\"\n    ], \n    \"stagemate\": [\n        \"NN\"\n    ], \n    \"freelancers\": [\n        \"NNS\"\n    ], \n    \"anesthetically\": [\n        \"RB\"\n    ], \n    \"ranted\": [\n        \"VBD\"\n    ], \n    \"HMS\": [\n        \"NNP\"\n    ], \n    \"conjectured\": [\n        \"VBN\"\n    ], \n    \"Tractarians\": [\n        \"NNS\"\n    ], \n    \"appraisers\": [\n        \"NNS\"\n    ], \n    \"HMA\": [\n        \"NNP\"\n    ], \n    \"Warners\": [\n        \"NNS\"\n    ], \n    \"primitive-eclogue\": [\n        \"JJ\"\n    ], \n    \"spring-joints\": [\n        \"NN\"\n    ], \n    \"grease\": [\n        \"NN\"\n    ], \n    \"Emeryville\": [\n        \"NNP\"\n    ], \n    \"Ricans\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Weigand\": [\n        \"NNP\"\n    ], \n    \"Crowder\": [\n        \"NNP\"\n    ], \n    \"over-emphasize\": [\n        \"JJ\"\n    ], \n    \"mistress\": [\n        \"NN\"\n    ], \n    \"monologue\": [\n        \"NN\"\n    ], \n    \"tax-rate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"greasy\": [\n        \"JJ\"\n    ], \n    \"logging\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"childishly\": [\n        \"RB\"\n    ], \n    \"trade-mark\": [\n        \"NN\"\n    ], \n    \"ist\": [\n        \"FW\"\n    ], \n    \"prodigal\": [\n        \"JJ\"\n    ], \n    \"braggadocio\": [\n        \"NN\"\n    ], \n    \"perforated\": [\n        \"JJ\"\n    ], \n    \"cellars\": [\n        \"NNS\"\n    ], \n    \"loud\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"skilled-nursing\": [\n        \"JJ\"\n    ], \n    \"grownups\": [\n        \"NNS\"\n    ], \n    \"Dorothee\": [\n        \"NNP\"\n    ], \n    \"hoop\": [\n        \"NN\"\n    ], \n    \"Sovereign\": [\n        \"NNP\"\n    ], \n    \"hoot\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"hook\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Villanova\": [\n        \"NNP\"\n    ], \n    \"Folks\": [\n        \"NNS\"\n    ], \n    \"hoof\": [\n        \"NN\"\n    ], \n    \"hood\": [\n        \"NN\"\n    ], \n    \"Attali\": [\n        \"NNP\"\n    ], \n    \"goblins\": [\n        \"NNS\"\n    ], \n    \"ECA\": [\n        \"NNP\"\n    ], \n    \"financial-futures\": [\n        \"NNS\"\n    ], \n    \"Hanover-Pebble\": [\n        \"NNP\"\n    ], \n    \"non-realistic\": [\n        \"JJ\"\n    ], \n    \"ECI\": [\n        \"NNP\"\n    ], \n    \"business-like\": [\n        \"JJ\"\n    ], \n    \"ECU\": [\n        \"NNP\"\n    ], \n    \"Wittgreen\": [\n        \"NNP\"\n    ], \n    \"Dainippon\": [\n        \"NNP\"\n    ], \n    \"ECP\": [\n        \"NNP\"\n    ], \n    \"non-duck\": [\n        \"JJ\"\n    ], \n    \"inferno\": [\n        \"NN\"\n    ], \n    \"twenty-first-century\": [\n        \"JJ\"\n    ], \n    \"steamily\": [\n        \"RB\"\n    ], \n    \"ballyhooey\": [\n        \"NN\"\n    ], \n    \"inflow\": [\n        \"NN\"\n    ], \n    \"mutate\": [\n        \"VB\"\n    ], \n    \"bed-and-breakfast\": [\n        \"JJ\"\n    ], \n    \"nondefense\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"individual-contributor\": [\n        \"NN\"\n    ], \n    \"self-restraint\": [\n        \"NN\"\n    ], \n    \"Boonton\": [\n        \"NNP\"\n    ], \n    \"Neighbor\": [\n        \"NN\"\n    ], \n    \"Geroge\": [\n        \"NNP\"\n    ], \n    \"swells\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mid-thirties\": [\n        \"NNS\"\n    ], \n    \"Purchases\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"bondholder\": [\n        \"NN\"\n    ], \n    \"M.A.\": [\n        \"NNP\"\n    ], \n    \"cruelly\": [\n        \"RB\"\n    ], \n    \"depraved\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Galina\": [\n        \"NNP\"\n    ], \n    \"Sticker\": [\n        \"NN\"\n    ], \n    \"normalizing\": [\n        \"VBG\"\n    ], \n    \"artillerist\": [\n        \"NN\"\n    ], \n    \"matter\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Colin\": [\n        \"NNP\"\n    ], \n    \"childlike\": [\n        \"JJ\"\n    ], \n    \"espouse\": [\n        \"VBP\"\n    ], \n    \"clerical-lay\": [\n        \"JJ\"\n    ], \n    \"Louisiana-Pacific\": [\n        \"NNP\"\n    ], \n    \"Floor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pistons\": [\n        \"NNS\"\n    ], \n    \"rivers\": [\n        \"NNS\"\n    ], \n    \"Flood\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Coaching\": [\n        \"NN\"\n    ], \n    \"childcare\": [\n        \"NN\"\n    ], \n    \"expeditions\": [\n        \"NNS\"\n    ], \n    \"reprieve\": [\n        \"NN\"\n    ], \n    \"Poets\": [\n        \"NNS\"\n    ], \n    \"power-hungry\": [\n        \"JJ\"\n    ], \n    \"boaters\": [\n        \"NNS\"\n    ], \n    \"it...\": [\n        \":\"\n    ], \n    \"demoralizing\": [\n        \"VBG\"\n    ], \n    \"subcontracts\": [\n        \"NNS\"\n    ], \n    \"Khin\": [\n        \"NNP\"\n    ], \n    \"Instructions\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Dirks\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"wrists\": [\n        \"NNS\"\n    ], \n    \"psychologically\": [\n        \"RB\"\n    ], \n    \"replenished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Ludlow\": [\n        \"NNPS\"\n    ], \n    \"repatriate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Adelia\": [\n        \"NNP\"\n    ], \n    \"government-set\": [\n        \"VBN\"\n    ], \n    \"inconsistency\": [\n        \"NN\"\n    ], \n    \"Trenton\": [\n        \"NNP\"\n    ], \n    \"Dynasts\": [\n        \"NNPS\"\n    ], \n    \"torchbearer\": [\n        \"NN\"\n    ], \n    \"greased\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dynasty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"summitry\": [\n        \"NN\"\n    ], \n    \"SHOPPERS\": [\n        \"NNS\"\n    ], \n    \"greases\": [\n        \"NNS\"\n    ], \n    \"moviemakers\": [\n        \"NNS\"\n    ], \n    \"half-implemented\": [\n        \"JJ\"\n    ], \n    \"Marketers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Karsner\": [\n        \"NNP\"\n    ], \n    \"visitor\": [\n        \"NN\"\n    ], \n    \"brilliance\": [\n        \"NN\"\n    ], \n    \"calculable\": [\n        \"JJ\"\n    ], \n    \"Bay-front\": [\n        \"JJ\"\n    ], \n    \"Alvan\": [\n        \"NNP\"\n    ], \n    \"evil-but-cute\": [\n        \"JJ\"\n    ], \n    \"resisting\": [\n        \"VBG\"\n    ], \n    \"divinity\": [\n        \"NN\"\n    ], \n    \"unleashes\": [\n        \"VBZ\"\n    ], \n    \"wooden-leg\": [\n        \"NN\"\n    ], \n    \"paralleling\": [\n        \"VBG\"\n    ], \n    \"Amana\": [\n        \"NNP\"\n    ], \n    \"MicroGeneSys\": [\n        \"NNP\"\n    ], \n    \"acne\": [\n        \"NN\"\n    ], \n    \"folded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"interpenetration\": [\n        \"NN\"\n    ], \n    \"Wight\": [\n        \"NNP\"\n    ], \n    \"Wolverton\": [\n        \"NNP\"\n    ], \n    \"integrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"slender-waisted\": [\n        \"JJ\"\n    ], \n    \"edict\": [\n        \"NN\"\n    ], \n    \"early-childhood\": [\n        \"NN\"\n    ], \n    \"Unitours\": [\n        \"NNPS\"\n    ], \n    \"somnambulates\": [\n        \"VBZ\"\n    ], \n    \"Comics\": [\n        \"NNPS\"\n    ], \n    \"warmheartedness\": [\n        \"NN\"\n    ], \n    \"stop\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Cawley\": [\n        \"NNP\"\n    ], \n    \"libellos\": [\n        \"NNS\"\n    ], \n    \"cracks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"HEWLETT-PACKARD\": [\n        \"NNP\"\n    ], \n    \"coating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"thermoforming\": [\n        \"JJ\"\n    ], \n    \"comply\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Gloucester\": [\n        \"NNP\"\n    ], \n    \"briefer\": [\n        \"JJR\"\n    ], \n    \"POUNDED\": [\n        \"VBD\"\n    ], \n    \"Sally\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rime\": [\n        \"NN\"\n    ], \n    \"thrusts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"weed-killing\": [\n        \"JJ\"\n    ], \n    \"briefed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"consanguineously\": [\n        \"RB\"\n    ], \n    \"prowazwki\": [\n        \"NN\"\n    ], \n    \"fertility\": [\n        \"NN\"\n    ], \n    \"Straniera\": [\n        \"NNP\"\n    ], \n    \"Clapping\": [\n        \"VBG\"\n    ], \n    \"Joint-research\": [\n        \"JJ\"\n    ], \n    \"ethical\": [\n        \"JJ\"\n    ], \n    \"reference\": [\n        \"NN\"\n    ], \n    \"Roark\": [\n        \"NNP\"\n    ], \n    \"tie-up\": [\n        \"NN\"\n    ], \n    \"sturgeon\": [\n        \"NN\"\n    ], \n    \"Kempinski\": [\n        \"NNP\"\n    ], \n    \"Juanita\": [\n        \"NNP\"\n    ], \n    \"Viag\": [\n        \"NNP\"\n    ], \n    \"Wangemans\": [\n        \"NNPS\"\n    ], \n    \"ficus\": [\n        \"NN\"\n    ], \n    \"constrictor\": [\n        \"NN\"\n    ], \n    \"revenuers\": [\n        \"NNS\"\n    ], \n    \"causeway\": [\n        \"NN\"\n    ], \n    \"auto-strop\": [\n        \"JJ\"\n    ], \n    \"tantamount\": [\n        \"JJ\"\n    ], \n    \"electricity-industry\": [\n        \"NN\"\n    ], \n    \"unbanning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bucknell\": [\n        \"NNP\"\n    ], \n    \"Yards\": [\n        \"NNP\"\n    ], \n    \"Eurofighter\": [\n        \"NNP\"\n    ], \n    \"juxtapose\": [\n        \"VBP\"\n    ], \n    \"deflecting\": [\n        \"VBG\"\n    ], \n    \"Podolsky\": [\n        \"NNP\"\n    ], \n    \"were\": [\n        \"VBD\", \n        \"VB\"\n    ], \n    \"pickins\": [\n        \"NNS\"\n    ], \n    \"richest\": [\n        \"JJS\"\n    ], \n    \"telecopier\": [\n        \"NN\"\n    ], \n    \"modeling\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"picking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"white-clad\": [\n        \"JJ\"\n    ], \n    \"mucky\": [\n        \"JJ\"\n    ], \n    \"horsemen\": [\n        \"NNS\"\n    ], \n    \"prudential\": [\n        \"JJ\"\n    ], \n    \"subverting\": [\n        \"VBG\"\n    ], \n    \"Abnormal\": [\n        \"JJ\"\n    ], \n    \"Refcorps\": [\n        \"NNS\"\n    ], \n    \"distinction\": [\n        \"NN\"\n    ], \n    \"Reasoning\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"typist\": [\n        \"NN\"\n    ], \n    \"Devoted\": [\n        \"VBN\"\n    ], \n    \"appeared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Jouvet\": [\n        \"NNP\"\n    ], \n    \"Snow\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hygiene\": [\n        \"NN\"\n    ], \n    \"administrations\": [\n        \"NNS\"\n    ], \n    \"Wentworth\": [\n        \"NNP\"\n    ], \n    \"Constantin\": [\n        \"NNP\"\n    ], \n    \"turnouts\": [\n        \"NNS\"\n    ], \n    \"dusting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unsloped\": [\n        \"JJ\"\n    ], \n    \"particulars\": [\n        \"NNS\"\n    ], \n    \"recognised\": [\n        \"VBD\"\n    ], \n    \"Cagayan\": [\n        \"NNP\"\n    ], \n    \"ethers\": [\n        \"NNS\"\n    ], \n    \"obtained\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"Stout\": [\n        \"NNP\"\n    ], \n    \"quantities\": [\n        \"NNS\"\n    ], \n    \"sunshine\": [\n        \"NN\"\n    ], \n    \"less.\": [\n        \"NN\"\n    ], \n    \"marijuana\": [\n        \"NN\"\n    ], \n    \"sunshiny\": [\n        \"JJ\"\n    ], \n    \"Marines\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"individualists\": [\n        \"NNS\"\n    ], \n    \"misquoted\": [\n        \"VBN\"\n    ], \n    \"Huskers\": [\n        \"NNPS\"\n    ], \n    \"Boothby\": [\n        \"NNP\"\n    ], \n    \"profitably\": [\n        \"RB\"\n    ], \n    \"Sellars\": [\n        \"NNP\"\n    ], \n    \"near\": [\n        \"IN\", \n        \"RB\", \n        \"VB\", \n        \"JJ\"\n    ], \n    \"apocryphal\": [\n        \"JJ\"\n    ], \n    \"neat\": [\n        \"JJ\"\n    ], \n    \"motorist\": [\n        \"NN\"\n    ], \n    \"DESPITE\": [\n        \"IN\"\n    ], \n    \"Tigard\": [\n        \"NNP\"\n    ], \n    \"Enel\": [\n        \"NNP\"\n    ], \n    \"anchor\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"power-starved\": [\n        \"JJ\"\n    ], \n    \"automotive-emissions-testing\": [\n        \"JJ\"\n    ], \n    \"traditionalistic\": [\n        \"JJ\"\n    ], \n    \"ip\": [\n        \"NN\"\n    ], \n    \"is\": [\n        \"VBZ\", \n        \"RB\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"it\": [\n        \"PRP\"\n    ], \n    \"Dante\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"strivers\": [\n        \"NNS\"\n    ], \n    \"Ruder\": [\n        \"NNP\"\n    ], \n    \"ij\": [\n        \"NN\"\n    ], \n    \"jest\": [\n        \"NN\"\n    ], \n    \"in\": [\n        \"IN\", \n        \"FW\", \n        \"NN\", \n        \"RB\", \n        \"RP\", \n        \"IN|RP\", \n        \"NNP\", \n        \"RP|IN\", \n        \"RBR\", \n        \"VBD\"\n    ], \n    \"textiles\": [\n        \"NNS\"\n    ], \n    \"sanitized\": [\n        \"VBN\"\n    ], \n    \"two-product\": [\n        \"JJ\"\n    ], \n    \"convulsively\": [\n        \"RB\"\n    ], \n    \"overstated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bottles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Fergeson\": [\n        \"NNP\"\n    ], \n    \"anoint\": [\n        \"VB\"\n    ], \n    \"insulin-dependent\": [\n        \"JJ\"\n    ], \n    \"bottled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Berettas\": [\n        \"NNS\"\n    ], \n    \"overstates\": [\n        \"VBZ\"\n    ], \n    \"Chilblains\": [\n        \"NNS\"\n    ], \n    \"phobias\": [\n        \"NNS\"\n    ], \n    \"Pencils\": [\n        \"NNS\"\n    ], \n    \"astringent\": [\n        \"JJ\"\n    ], \n    \"no-man\": [\n        \"JJ\"\n    ], \n    \"declaring\": [\n        \"VBG\"\n    ], \n    \"redevelop\": [\n        \"VB\"\n    ], \n    \"Neihart\": [\n        \"NNP\"\n    ], \n    \"self-sufficiency\": [\n        \"NN\"\n    ], \n    \"Bramwell\": [\n        \"NNP\"\n    ], \n    \"lonesome\": [\n        \"JJ\"\n    ], \n    \"Hard-Hearted\": [\n        \"NNP\"\n    ], \n    \"Truck\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"quarter-inch\": [\n        \"JJ\"\n    ], \n    \"potentials\": [\n        \"NNS\"\n    ], \n    \"Craftsmen\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Air\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stiffened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pari-mutuel\": [\n        \"JJ\"\n    ], \n    \"Pelican\": [\n        \"NNP\"\n    ], \n    \"practiced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"BeechNut\": [\n        \"NNP\"\n    ], \n    \"timeouts\": [\n        \"NNS\"\n    ], \n    \"Pucik\": [\n        \"NNP\"\n    ], \n    \"drug-policy\": [\n        \"NN\"\n    ], \n    \"Sakaguchi\": [\n        \"NNP\"\n    ], \n    \"Sonja\": [\n        \"NNP\"\n    ], \n    \"crabapple\": [\n        \"NN\"\n    ], \n    \"Vasvani\": [\n        \"NNP\"\n    ], \n    \"squamous\": [\n        \"JJ\"\n    ], \n    \"practices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"tombstone\": [\n        \"NN\"\n    ], \n    \"Minicar\": [\n        \"JJ\"\n    ], \n    \"Packaged-goods\": [\n        \"NNS\"\n    ], \n    \"Thornburg\": [\n        \"NNP\"\n    ], \n    \"facto\": [\n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Musician\": [\n        \"NN\"\n    ], \n    \"Sulaiman\": [\n        \"NNP\"\n    ], \n    \"molar\": [\n        \"NN\"\n    ], \n    \"sporting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"belowground\": [\n        \"NN\"\n    ], \n    \"bandwidth\": [\n        \"NN\"\n    ], \n    \"identify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Drivon\": [\n        \"NNP\"\n    ], \n    \"supernormal\": [\n        \"JJ\"\n    ], \n    \"facts\": [\n        \"NNS\"\n    ], \n    \"Shenzhen\": [\n        \"NNP\"\n    ], \n    \"bed-type\": [\n        \"JJ\"\n    ], \n    \"sunflower\": [\n        \"NN\"\n    ], \n    \"Mattone\": [\n        \"NNP\"\n    ], \n    \"regarded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Rotunda\": [\n        \"NNP\"\n    ], \n    \"defray\": [\n        \"VB\"\n    ], \n    \"Censorship\": [\n        \"NN\"\n    ], \n    \"moody\": [\n        \"JJ\"\n    ], \n    \"ALLY\": [\n        \"NN\"\n    ], \n    \"beholds\": [\n        \"VBZ\"\n    ], \n    \"fluidity\": [\n        \"NN\"\n    ], \n    \"Holch\": [\n        \"NNP\"\n    ], \n    \"Freya\": [\n        \"NNP\"\n    ], \n    \"darlings\": [\n        \"NNS\"\n    ], \n    \"twin-jet\": [\n        \"NN\"\n    ], \n    \"converged\": [\n        \"VBD\"\n    ], \n    \"Albania\": [\n        \"NNP\"\n    ], \n    \"vapors\": [\n        \"NNS\"\n    ], \n    \"Lucca\": [\n        \"NNP\"\n    ], \n    \"reconsidering\": [\n        \"VBG\"\n    ], \n    \"coarseness\": [\n        \"NN\"\n    ], \n    \"low-down\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Alvise\": [\n        \"NNP\"\n    ], \n    \"criminal-law\": [\n        \"NN\"\n    ], \n    \"Targo\": [\n        \"JJ\"\n    ], \n    \"esthetics\": [\n        \"NNS\"\n    ], \n    \"svelte-looking\": [\n        \"JJ\"\n    ], \n    \"signposts\": [\n        \"NNS\"\n    ], \n    \"unexplored\": [\n        \"JJ\"\n    ], \n    \"anodes\": [\n        \"NNS\"\n    ], \n    \"package-delivery\": [\n        \"JJ\"\n    ], \n    \"holdup\": [\n        \"NN\"\n    ], \n    \"Crude-goods\": [\n        \"NNS\"\n    ], \n    \"scrimmage\": [\n        \"NN\"\n    ], \n    \"Klauber\": [\n        \"NNP\"\n    ], \n    \"first-three\": [\n        \"JJ\"\n    ], \n    \"Denverite\": [\n        \"NNP\"\n    ], \n    \"Lifeco\": [\n        \"NNP\"\n    ], \n    \"Maddry\": [\n        \"NNP\"\n    ], \n    \"red-turbaned\": [\n        \"JJ\"\n    ], \n    \"notification\": [\n        \"NN\"\n    ], \n    \"Covering\": [\n        \"NNP\"\n    ], \n    \"Triandos\": [\n        \"NNP\"\n    ], \n    \"daytime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"RNA-based\": [\n        \"JJ\"\n    ], \n    \"motor-control\": [\n        \"JJ\"\n    ], \n    \"societyonly\": [\n        \"RB\"\n    ], \n    \"JMB\": [\n        \"NNP\"\n    ], \n    \"unmagnified\": [\n        \"JJ\"\n    ], \n    \"nonpoisonous\": [\n        \"JJ\"\n    ], \n    \"Basse\": [\n        \"NNP\"\n    ], \n    \"friend-of-the-court\": [\n        \"JJ\"\n    ], \n    \"bank-backed\": [\n        \"JJ\"\n    ], \n    \"burl\": [\n        \"NN\"\n    ], \n    \"car-safety\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Baileefe\": [\n        \"NNP\"\n    ], \n    \"Swedes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Sweden\": [\n        \"NNP\"\n    ], \n    \"firemen\": [\n        \"NNS\"\n    ], \n    \"burr\": [\n        \"NN\"\n    ], \n    \"bury\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unendurable\": [\n        \"JJ\"\n    ], \n    \"BECHTEL\": [\n        \"NNP\"\n    ], \n    \"zur\": [\n        \"FW\"\n    ], \n    \"B.F.\": [\n        \"NNP\"\n    ], \n    \"Conceptually\": [\n        \"RB\"\n    ], \n    \"untenured\": [\n        \"VBN\"\n    ], \n    \"gabbing\": [\n        \"VBG\"\n    ], \n    \"sleep-disorder\": [\n        \"JJ\"\n    ], \n    \"unwillingly\": [\n        \"RB\"\n    ], \n    \"Technicians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Evidence\": [\n        \"NN\"\n    ], \n    \"incentive-maximizing\": [\n        \"JJ\"\n    ], \n    \"Lappenberg\": [\n        \"NNP\"\n    ], \n    \"Idal\": [\n        \"NNP\"\n    ], \n    \"Rindos\": [\n        \"NNP\"\n    ], \n    \"correspondents\": [\n        \"NNS\"\n    ], \n    \"Tomash\": [\n        \"NNP\"\n    ], \n    \"RJR-style\": [\n        \"JJ\"\n    ], \n    \"Tomaso\": [\n        \"NNP\"\n    ], \n    \"formerly\": [\n        \"RB\"\n    ], \n    \"pilot-training\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ploy\": [\n        \"NN\"\n    ], \n    \"gut-Democratic\": [\n        \"JJ\"\n    ], \n    \"Hymowitz\": [\n        \"NNP\"\n    ], \n    \"intellectual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Krutchensky\": [\n        \"NNP\"\n    ], \n    \"Playback\": [\n        \"NNP\"\n    ], \n    \"Cosmetics\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"frightened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Behind-the-scenes\": [\n        \"JJ\"\n    ], \n    \"Withholding\": [\n        \"NN\"\n    ], \n    \"snorts\": [\n        \"VBZ\"\n    ], \n    \"magnetisms\": [\n        \"NNS\"\n    ], \n    \"catlike\": [\n        \"JJ\"\n    ], \n    \"per-share\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pitons\": [\n        \"NNS\"\n    ], \n    \"Cantoni\": [\n        \"NNP\"\n    ], \n    \"lurid\": [\n        \"JJ\"\n    ], \n    \"undergrowth\": [\n        \"NN\"\n    ], \n    \"irreversibility\": [\n        \"NN\"\n    ], \n    \"placeless\": [\n        \"JJ\"\n    ], \n    \"unknowable\": [\n        \"JJ\"\n    ], \n    \"drought-stricken\": [\n        \"JJ\"\n    ], \n    \"garments\": [\n        \"NNS\"\n    ], \n    \"Convenience\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"powerfully\": [\n        \"RB\"\n    ], \n    \"Survey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bauer\": [\n        \"NNP\"\n    ], \n    \"massacred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"obsequies\": [\n        \"NNS\"\n    ], \n    \"Melzi\": [\n        \"NNP\"\n    ], \n    \"tryin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Semi-Tech\": [\n        \"NNP\"\n    ], \n    \"hikers\": [\n        \"NNS\"\n    ], \n    \"bellwether\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"unvarying\": [\n        \"VBG\"\n    ], \n    \"hyalinization\": [\n        \"NN\"\n    ], \n    \"foul-up\": [\n        \"NN\"\n    ], \n    \"Ratners\": [\n        \"NNP\"\n    ], \n    \"Gaithersburg\": [\n        \"NNP\"\n    ], \n    \"Rayon\": [\n        \"NNP\"\n    ], \n    \"daddy\": [\n        \"NN\"\n    ], \n    \"separated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"field-hands\": [\n        \"NN\"\n    ], \n    \"trotter\": [\n        \"NN\"\n    ], \n    \"sticks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sidestep\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"all-woman\": [\n        \"JJ\"\n    ], \n    \"sticky\": [\n        \"JJ\"\n    ], \n    \"scrawl\": [\n        \"NN\"\n    ], \n    \"Conner\": [\n        \"NNP\"\n    ], \n    \"fashioned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stirrings\": [\n        \"NNS\"\n    ], \n    \"gowned\": [\n        \"JJ\"\n    ], \n    \"nonpareil\": [\n        \"JJ\"\n    ], \n    \"Jeffersonian\": [\n        \"JJ\"\n    ], \n    \"oversimplification\": [\n        \"NN\"\n    ], \n    \"alerts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"half-witted\": [\n        \"JJ\"\n    ], \n    \"breakwaters\": [\n        \"NNS\"\n    ], \n    \"co-insurance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ribbons\": [\n        \"NNS\"\n    ], \n    \"dies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"pinball-parlor\": [\n        \"NN\"\n    ], \n    \"diet\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"grassland\": [\n        \"NN\"\n    ], \n    \"diem\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Colloton\": [\n        \"NNP\"\n    ], \n    \"died\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"derail\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Roxy\": [\n        \"NNP\"\n    ], \n    \"pessimists\": [\n        \"NNS\"\n    ], \n    \"Vattern\": [\n        \"NNP\"\n    ], \n    \"Giants-Houston\": [\n        \"NNP\"\n    ], \n    \"Mitterrand\": [\n        \"NNP\"\n    ], \n    \"sobering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"spokeman\": [\n        \"NN\"\n    ], \n    \"Changeable\": [\n        \"JJ\"\n    ], \n    \"mobilized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gunslingers\": [\n        \"NNS\"\n    ], \n    \"skip\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"jingling\": [\n        \"VBG\"\n    ], \n    \"skit\": [\n        \"NN\"\n    ], \n    \"low-temperature\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"option-based\": [\n        \"JJ\"\n    ], \n    \"abatement\": [\n        \"NN\"\n    ], \n    \"tourist-delivery\": [\n        \"JJ\"\n    ], \n    \"skim\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Sneed\": [\n        \"NNP\"\n    ], \n    \"skin\": [\n        \"NN\"\n    ], \n    \"morphology\": [\n        \"NN\"\n    ], \n    \"skid\": [\n        \"NN\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"Evening\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deceitful\": [\n        \"JJ\"\n    ], \n    \"paper-goods\": [\n        \"NNS\"\n    ], \n    \"Sylphide\": [\n        \"NNP\"\n    ], \n    \"Hopley\": [\n        \"NNP\"\n    ], \n    \"Broadcast\": [\n        \"NNP\"\n    ], \n    \"answered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"phonemes\": [\n        \"NNS\"\n    ], \n    \"Lifeguard\": [\n        \"NN\"\n    ], \n    \"better-than-average\": [\n        \"JJ\"\n    ], \n    \"string\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"PriMerit\": [\n        \"NNP\"\n    ], \n    \"mass-reproduced\": [\n        \"JJ\"\n    ], \n    \"HUD\": [\n        \"NNP\"\n    ], \n    \"Explicit\": [\n        \"JJ\"\n    ], \n    \"geometrical\": [\n        \"JJ\"\n    ], \n    \"dinghy\": [\n        \"NN\"\n    ], \n    \"heroin-user\": [\n        \"NN\"\n    ], \n    \"pay-in-kind\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wildwood\": [\n        \"NNP\"\n    ], \n    \"Where\": [\n        \"WRB\", \n        \"NNP\"\n    ], \n    \"LANDOR\": [\n        \"NNP\"\n    ], \n    \"Vent\": [\n        \"NN\"\n    ], \n    \"Recess\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"LAWYERS\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"staples\": [\n        \"NNS\"\n    ], \n    \"banished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Health-care\": [\n        \"JJ\"\n    ], \n    \"miniaturized\": [\n        \"VBN\"\n    ], \n    \"boat-yard\": [\n        \"NN\"\n    ], \n    \"Lesbian\": [\n        \"NNP\"\n    ], \n    \"magnet\": [\n        \"NN\"\n    ], \n    \"banishes\": [\n        \"VBZ\"\n    ], \n    \"humanistic\": [\n        \"JJ\"\n    ], \n    \"two-timed\": [\n        \"VBN\"\n    ], \n    \"Lorlyn\": [\n        \"NNP\"\n    ], \n    \"Venn\": [\n        \"NNP\"\n    ], \n    \"recooned\": [\n        \"VBD\"\n    ], \n    \"extenuating\": [\n        \"VBG\"\n    ], \n    \"pregnancies\": [\n        \"NNS\"\n    ], \n    \"frequent-flier\": [\n        \"JJ\"\n    ], \n    \"trading-related\": [\n        \"JJ\"\n    ], \n    \"less-liquid\": [\n        \"JJR\"\n    ], \n    \"Loesser\": [\n        \"NNP\"\n    ], \n    \"NESB\": [\n        \"NNP\"\n    ], \n    \"U.S.-dollar\": [\n        \"NN\"\n    ], \n    \"Grads\": [\n        \"NNS\"\n    ], \n    \"Macassar\": [\n        \"NNP\"\n    ], \n    \"ere\": [\n        \"IN\"\n    ], \n    \"overcoming...\": [\n        \":\"\n    ], \n    \"photosensitive\": [\n        \"JJ\"\n    ], \n    \"leatherbound\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Masterpiece\": [\n        \"NNP\"\n    ], \n    \"half-forgotten\": [\n        \"JJ\"\n    ], \n    \"unrestricted\": [\n        \"JJ\"\n    ], \n    \"Quack\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"Damian\": [\n        \"NNP\"\n    ], \n    \"Sensenbrenner\": [\n        \"NNP\"\n    ], \n    \"bandwagon\": [\n        \"NN\"\n    ], \n    \"Coward\": [\n        \"NNP\"\n    ], \n    \"Variations\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Seaton\": [\n        \"NNP\"\n    ], \n    \"weir\": [\n        \"NN\"\n    ], \n    \"Uniondale\": [\n        \"NNP\"\n    ], \n    \"snagging\": [\n        \"VBG\"\n    ], \n    \"congestion\": [\n        \"NN\"\n    ], \n    \"deceit\": [\n        \"NN\"\n    ], \n    \"Leath\": [\n        \"NNP\"\n    ], \n    \"comptroller\": [\n        \"NN\"\n    ], \n    \"Brendle\": [\n        \"NNP\"\n    ], \n    \"Theatre-by-the-Sea\": [\n        \"NNP\"\n    ], \n    \"bids...\": [\n        \":\"\n    ], \n    \"exploitation\": [\n        \"NN\"\n    ], \n    \"Ikegai\": [\n        \"NNP\"\n    ], \n    \"souring\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"cyst\": [\n        \"NN\"\n    ], \n    \"crusading\": [\n        \"VBG\"\n    ], \n    \"Matrix\": [\n        \"NNP\"\n    ], \n    \"convenience-store\": [\n        \"NN\"\n    ], \n    \"OBrion\": [\n        \"NNP\"\n    ], \n    \"Hammarskjold\": [\n        \"NNP\"\n    ], \n    \"professorships\": [\n        \"NNS\"\n    ], \n    \"Alkylate\": [\n        \"NNP\"\n    ], \n    \"Viss\": [\n        \"NNP\"\n    ], \n    \"pollute\": [\n        \"VB\"\n    ], \n    \"Bridgestone\\\\/Firestone\": [\n        \"NNP\"\n    ], \n    \"SunCor\": [\n        \"NNP\"\n    ], \n    \"Visx\": [\n        \"NNP\"\n    ], \n    \"scenarios\": [\n        \"NNS\"\n    ], \n    \"Guadalupes\": [\n        \"NNPS\"\n    ], \n    \"Visa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"balks\": [\n        \"VBZ\"\n    ], \n    \"armchairs\": [\n        \"NNS\"\n    ], \n    \"brashest\": [\n        \"JJS\"\n    ], \n    \"grow-or-die\": [\n        \"JJ\"\n    ], \n    \"Inhalation\": [\n        \"NNP\"\n    ], \n    \"McGonagle\": [\n        \"NNP\"\n    ], \n    \"airline-acquisition\": [\n        \"JJ\"\n    ], \n    \"satirizes\": [\n        \"VBZ\"\n    ], \n    \"Grisoni\": [\n        \"NNP\"\n    ], \n    \"subsistent\": [\n        \"JJ\"\n    ], \n    \"Leinonen\": [\n        \"NNP\"\n    ], \n    \"performance-sharing\": [\n        \"JJ\"\n    ], \n    \"Brae\": [\n        \"NNP\"\n    ], \n    \"Brad\": [\n        \"NNP\"\n    ], \n    \"calorimetric\": [\n        \"JJ\"\n    ], \n    \"Bran\": [\n        \"NNP\"\n    ], \n    \"antismoking\": [\n        \"JJ\"\n    ], \n    \"Benelli\": [\n        \"NNP\"\n    ], \n    \"balk.\": [\n        \"VBP\"\n    ], \n    \"veterinarians\": [\n        \"NNS\"\n    ], \n    \"electrotherapist\": [\n        \"NN\"\n    ], \n    \"Pallo\": [\n        \"NNP\"\n    ], \n    \"repressing\": [\n        \"VBG\"\n    ], \n    \"Children\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"deceased\": [\n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"Oatnut\": [\n        \"NNP\"\n    ], \n    \"Caring\": [\n        \"VBG\"\n    ], \n    \"cost-saving\": [\n        \"JJ\"\n    ], \n    \"proscriptive\": [\n        \"JJ\"\n    ], \n    \"Baruch\": [\n        \"NNP\"\n    ], \n    \"Lamma\": [\n        \"NNP\"\n    ], \n    \"FOOTNOTE\": [\n        \"NNP\"\n    ], \n    \"pawning\": [\n        \"VBG\"\n    ], \n    \"coincident\": [\n        \"JJ\"\n    ], \n    \"Dutch\": [\n        \"JJ\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"bad-law\": [\n        \"NN\"\n    ], \n    \"dimwits\": [\n        \"NNS\"\n    ], \n    \"sell-order\": [\n        \"JJ\"\n    ], \n    \"normalize\": [\n        \"VB\"\n    ], \n    \"strainin\": [\n        \"VBG\"\n    ], \n    \"rays\": [\n        \"NNS\"\n    ], \n    \"Dahmane\": [\n        \"NNP\"\n    ], \n    \"slim-waisted\": [\n        \"JJ\"\n    ], \n    \"tilt\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"necklaces\": [\n        \"NNS\"\n    ], \n    \"ping\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pine\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"tax-fraud\": [\n        \"NN\"\n    ], \n    \"chemical\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"till\": [\n        \"IN\", \n        \"VB\"\n    ], \n    \"HUH\": [\n        \"NNP\"\n    ], \n    \"skates\": [\n        \"NNS\"\n    ], \n    \"pins\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"concertmaster\": [\n        \"NN\"\n    ], \n    \"consulting-firm\": [\n        \"NN\"\n    ], \n    \"pint\": [\n        \"NN\"\n    ], \n    \"spy-plane\": [\n        \"NN\"\n    ], \n    \"Hubba\": [\n        \"UH\"\n    ], \n    \"thermometric\": [\n        \"JJ\"\n    ], \n    \"Oher\": [\n        \"NNP\"\n    ], \n    \"whodunnit\": [\n        \"UH\"\n    ], \n    \"designed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"scalloped\": [\n        \"JJ\"\n    ], \n    \"millionths-of-a-second\": [\n        \"JJ\"\n    ], \n    \"aviator\": [\n        \"NN\"\n    ], \n    \"Hippophagique\": [\n        \"NNP\"\n    ], \n    \"Furs\": [\n        \"NNP\"\n    ], \n    \"domestic-inflation\": [\n        \"NN\"\n    ], \n    \"Hendl\": [\n        \"NNP\"\n    ], \n    \"twice-around\": [\n        \"JJ\"\n    ], \n    \"Fury\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"maybe\": [\n        \"RB\"\n    ], \n    \"unobvious\": [\n        \"JJ\"\n    ], \n    \"carriers\": [\n        \"NNS\"\n    ], \n    \"exterminator\": [\n        \"NN\"\n    ], \n    \"Gaussian\": [\n        \"JJ\"\n    ], \n    \"fluent\": [\n        \"JJ\"\n    ], \n    \"provide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"thorny\": [\n        \"JJ\"\n    ], \n    \"pickets\": [\n        \"NNS\"\n    ], \n    \"thorns\": [\n        \"NNS\"\n    ], \n    \"gesture\": [\n        \"NN\"\n    ], \n    \"Feared\": [\n        \"VBN\"\n    ], \n    \"cute\": [\n        \"JJ\"\n    ], \n    \"daily-wear\": [\n        \"JJ\"\n    ], \n    \"free-buying\": [\n        \"JJ\"\n    ], \n    \"Item-Categories\": [\n        \"NNPS\"\n    ], \n    \"entity\": [\n        \"NN\"\n    ], \n    \"stability\": [\n        \"NN\"\n    ], \n    \"Medicaid-covered\": [\n        \"JJ\"\n    ], \n    \"Walzer\": [\n        \"NNP\"\n    ], \n    \"cuts\": [\n        \"NNS\", \n        \"VBZ\", \n        \"NN\"\n    ], \n    \"CAHNERS\": [\n        \"NNP\"\n    ], \n    \"Utahans\": [\n        \"NNPS\"\n    ], \n    \"Merrill-Lynch\": [\n        \"NNP\"\n    ], \n    \"Budieshein\": [\n        \"NNP\"\n    ], \n    \"Jean-Rene\": [\n        \"NNP\"\n    ], \n    \"freight-car\": [\n        \"NN\"\n    ], \n    \"Kozak\": [\n        \"NNP\"\n    ], \n    \"plagiarized\": [\n        \"VBN\"\n    ], \n    \"salves\": [\n        \"NNS\"\n    ], \n    \"Iranian-backed\": [\n        \"JJ\"\n    ], \n    \"serenaded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Wage-settlement\": [\n        \"JJ\"\n    ], \n    \"extirpated\": [\n        \"VBN\"\n    ], \n    \"alluvial\": [\n        \"JJ\"\n    ], \n    \"nouveau\": [\n        \"JJ\"\n    ], \n    \"finance\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"captivated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"P.S\": [\n        \"NN\"\n    ], \n    \"killer\": [\n        \"NN\"\n    ], \n    \"shatter\": [\n        \"VB\"\n    ], \n    \"sooner\": [\n        \"RBR\", \n        \"RB\"\n    ], \n    \"Usines\": [\n        \"NNP\"\n    ], \n    \"state-sector\": [\n        \"JJ\"\n    ], \n    \"misinterpreters\": [\n        \"NNS\"\n    ], \n    \"budget-sensitive\": [\n        \"JJ\"\n    ], \n    \"aspirations\": [\n        \"NNS\"\n    ], \n    \"Kestner\": [\n        \"NNP\"\n    ], \n    \"killed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ornraier\": [\n        \"RBR\"\n    ], \n    \"Bonniers\": [\n        \"NNP\"\n    ], \n    \"Stores\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Storer\": [\n        \"NNP\"\n    ], \n    \"resignation\": [\n        \"NN\"\n    ], \n    \"Wakeman\": [\n        \"NNP\"\n    ], \n    \"pickoff\": [\n        \"NN\"\n    ], \n    \"nonfood\": [\n        \"NN\"\n    ], \n    \"unwashed\": [\n        \"JJ\"\n    ], \n    \"Hispanic-market\": [\n        \"JJ\"\n    ], \n    \"peasant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"P.m\": [\n        \"NN\"\n    ], \n    \"disseration\": [\n        \"NN\"\n    ], \n    \"Southwestern\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"stock-quote\": [\n        \"JJ\"\n    ], \n    \"thin-margin\": [\n        \"JJ\"\n    ], \n    \"Amstel\": [\n        \"NNP\"\n    ], \n    \"Borrioboola-Gha\": [\n        \"NNP\"\n    ], \n    \"Lux\": [\n        \"FW\"\n    ], \n    \"Luz\": [\n        \"NNP\"\n    ], \n    \"oil-exporting\": [\n        \"NN\"\n    ], \n    \"Misconceptions\": [\n        \"NNS\"\n    ], \n    \"Luc\": [\n        \"NNP\"\n    ], \n    \"gurgling\": [\n        \"VBG\"\n    ], \n    \"aloof\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Touted\": [\n        \"VBN\"\n    ], \n    \"Steamship\": [\n        \"NNP\"\n    ], \n    \"socialized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"flintless\": [\n        \"JJ\"\n    ], \n    \"undulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"socializes\": [\n        \"VBZ\"\n    ], \n    \"Ehrman\": [\n        \"NNP\"\n    ], \n    \"papers\": [\n        \"NNS\"\n    ], \n    \"Maureen\": [\n        \"NNP\"\n    ], \n    \"Mastering\": [\n        \"VBG\"\n    ], \n    \"nudes\": [\n        \"NNS\"\n    ], \n    \"ladder\": [\n        \"NN\"\n    ], \n    \"unless\": [\n        \"IN\"\n    ], \n    \"Siamese\": [\n        \"NNP\"\n    ], \n    \"gagging\": [\n        \"VBG\"\n    ], \n    \"democracies\": [\n        \"NNS\"\n    ], \n    \"cholesterol-lowering\": [\n        \"JJ\"\n    ], \n    \"vinyl\": [\n        \"NN\"\n    ], \n    \"Whelen\": [\n        \"NNP\"\n    ], \n    \"follow-on\": [\n        \"JJ\"\n    ], \n    \"Farrar\": [\n        \"NNP\"\n    ], \n    \"Deciding\": [\n        \"VBG\"\n    ], \n    \"Intuition\": [\n        \"NN\"\n    ], \n    \"Already\": [\n        \"RB\"\n    ], \n    \"language\": [\n        \"NN\"\n    ], \n    \"bared\": [\n        \"VBD\"\n    ], \n    \"widths\": [\n        \"NNS\"\n    ], \n    \"drizzling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"listings\": [\n        \"NNS\"\n    ], \n    \"proffered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Haden\": [\n        \"NNP\"\n    ], \n    \"foreign-entry-limit\": [\n        \"JJ\"\n    ], \n    \"blacksmith\": [\n        \"NN\"\n    ], \n    \"rewrites\": [\n        \"VBZ\"\n    ], \n    \"Windex\": [\n        \"NNP\"\n    ], \n    \"exotic\": [\n        \"JJ\"\n    ], \n    \"water-borne\": [\n        \"JJ\"\n    ], \n    \"Braye\": [\n        \"NNP\"\n    ], \n    \"scandalized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Didion\": [\n        \"NNP\"\n    ], \n    \"test-like\": [\n        \"JJ\"\n    ], \n    \"ISI\": [\n        \"NNP\"\n    ], \n    \"XIII\": [\n        \"NNP\"\n    ], \n    \"ISO\": [\n        \"NNP\"\n    ], \n    \"Anthong\": [\n        \"NNP\"\n    ], \n    \"ISC\": [\n        \"NNP\"\n    ], \n    \"Rotorex\": [\n        \"NNP\"\n    ], \n    \"restaurant-industry\": [\n        \"JJ\"\n    ], \n    \"scandalizes\": [\n        \"VBZ\"\n    ], \n    \"rivets\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"incompetently\": [\n        \"RB\"\n    ], \n    \"honesty\": [\n        \"NN\"\n    ], \n    \"vermeil\": [\n        \"JJ\"\n    ], \n    \"old-grad-type\": [\n        \"NN\"\n    ], \n    \"Pringle\": [\n        \"NNP\"\n    ], \n    \"plains\": [\n        \"NNS\"\n    ], \n    \"Inflation\": [\n        \"NN\"\n    ], \n    \"fellowships\": [\n        \"NNS\"\n    ], \n    \"workability\": [\n        \"NN\"\n    ], \n    \"Botts\": [\n        \"NNP\"\n    ], \n    \"helpings\": [\n        \"NNS\"\n    ], \n    \"Midsized\": [\n        \"JJ\"\n    ], \n    \"less-than-alarming\": [\n        \"JJ\"\n    ], \n    \"massaged\": [\n        \"VBN\"\n    ], \n    \"accurately\": [\n        \"RB\"\n    ], \n    \"maquette\": [\n        \"NN\"\n    ], \n    \"SEMICONDUCTOR\": [\n        \"NNP\"\n    ], \n    \"videodisks\": [\n        \"NNS\"\n    ], \n    \"stipulation\": [\n        \"NN\"\n    ], \n    \"cartels\": [\n        \"NNS\"\n    ], \n    \"Maclaine\": [\n        \"NNP\"\n    ], \n    \"framers\": [\n        \"NNS\"\n    ], \n    \"gotta\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\", \n        \"VBN|TO\", \n        \"VBP|TO\"\n    ], \n    \"LifeSpan\": [\n        \"NNP\"\n    ], \n    \"orgy\": [\n        \"NN\"\n    ], \n    \"swearing-in\": [\n        \"NN\"\n    ], \n    \"venture\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Sexism\": [\n        \"NN\"\n    ], \n    \"commends\": [\n        \"VBZ\"\n    ], \n    \"Autobiography\": [\n        \"NNP\"\n    ], \n    \"Jockey\": [\n        \"NNP\"\n    ], \n    \"dollop\": [\n        \"NN\"\n    ], \n    \"stoicaly\": [\n        \"RB\"\n    ], \n    \"fifth-consecutive\": [\n        \"JJ\"\n    ], \n    \"E.E.\": [\n        \"NNP\"\n    ], \n    \"plunge\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"France-Germany\": [\n        \"NNP\"\n    ], \n    \"Arnolphe\": [\n        \"NNP\"\n    ], \n    \"backwoods\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Tollman-Hundley\": [\n        \"NNP\"\n    ], \n    \"prize-fighter\": [\n        \"NN\"\n    ], \n    \"Dworkin-Cosell\": [\n        \"NNP\"\n    ], \n    \"personalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pranks\": [\n        \"NNS\"\n    ], \n    \"present-time\": [\n        \"JJ\"\n    ], \n    \"Ballhaus\": [\n        \"NNP\"\n    ], \n    \"Articles\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Ravenscroft\": [\n        \"NNP\"\n    ], \n    \"non-prescription\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"investigations\": [\n        \"NNS\"\n    ], \n    \"weakwilled\": [\n        \"JJ\"\n    ], \n    \"anarchist-adventurers\": [\n        \"NNS\"\n    ], \n    \"Strawberry\": [\n        \"NNP\"\n    ], \n    \"indwelling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"contrasts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"conspicuous\": [\n        \"JJ\"\n    ], \n    \"Magarity\": [\n        \"NNP\"\n    ], \n    \"Teich\": [\n        \"NNP\"\n    ], \n    \"beachfront\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"refunds\": [\n        \"NNS\"\n    ], \n    \"fills\": [\n        \"VBZ\"\n    ], \n    \"gyro\": [\n        \"NN\"\n    ], \n    \"wreathed\": [\n        \"VBN\"\n    ], \n    \"Arrayed\": [\n        \"VBN\"\n    ], \n    \"filly\": [\n        \"NN\"\n    ], \n    \"sixteen-year-old\": [\n        \"JJ\"\n    ], \n    \"Kasavubu\": [\n        \"NNP\"\n    ], \n    \"fille\": [\n        \"FW\"\n    ], \n    \"massacres\": [\n        \"NNS\"\n    ], \n    \"Galena\": [\n        \"NNP\"\n    ], \n    \"Monastery\": [\n        \"NNP\"\n    ], \n    \"obligatto\": [\n        \"NN\"\n    ], \n    \"Blohm\": [\n        \"NNP\"\n    ], \n    \"trotted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"obstructive\": [\n        \"JJ\"\n    ], \n    \"Indicator\": [\n        \"NN\"\n    ], \n    \"Ltd.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hoyvald\": [\n        \"NNP\"\n    ], \n    \"filed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"contemporary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Graduate\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gato\": [\n        \"NNP\"\n    ], \n    \"Gati\": [\n        \"NNP\"\n    ], \n    \"Gate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Monogamy\": [\n        \"NN\"\n    ], \n    \"lieder\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pluri-party\": [\n        \"JJ\"\n    ], \n    \"Payless\": [\n        \"NNP\"\n    ], \n    \"Stapleton\": [\n        \"NNP\"\n    ], \n    \"histories\": [\n        \"NNS\"\n    ], \n    \"Cafferarelli\": [\n        \"NNP\"\n    ], \n    \"nickels\": [\n        \"NNS\"\n    ], \n    \"Saltzburg\": [\n        \"NNP\"\n    ], \n    \"anti-program-trading\": [\n        \"JJ\"\n    ], \n    \"reproducibility\": [\n        \"NN\"\n    ], \n    \"savoring\": [\n        \"VBG\"\n    ], \n    \"underage\": [\n        \"JJ\"\n    ], \n    \"Leaves\": [\n        \"NNS\"\n    ], \n    \"spraying\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"free-floater\": [\n        \"NN\"\n    ], \n    \"framing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Toodle\": [\n        \"NNP\"\n    ], \n    \"Midway\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"third-straight\": [\n        \"JJ\"\n    ], \n    \"reading\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"snorted\": [\n        \"VBD\"\n    ], \n    \"Yuli\": [\n        \"NNP\"\n    ], \n    \"Wycombe\": [\n        \"NNP\"\n    ], \n    \"ruddy\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Malmesbury\": [\n        \"NNP\"\n    ], \n    \"Soeren\": [\n        \"NNP\"\n    ], \n    \"space-shuttle\": [\n        \"NN\"\n    ], \n    \"kernel\": [\n        \"NN\"\n    ], \n    \"lethargy\": [\n        \"NN\"\n    ], \n    \"rookie-of-the-year\": [\n        \"NN\"\n    ], \n    \"monarchists\": [\n        \"NNS\"\n    ], \n    \"anti-conservation\": [\n        \"JJ\"\n    ], \n    \"defense-procurement\": [\n        \"NN\"\n    ], \n    \"innovative\": [\n        \"JJ\"\n    ], \n    \"Exhibits\": [\n        \"NNPS\"\n    ], \n    \"Sigourney\": [\n        \"NNP\"\n    ], \n    \"unsecured\": [\n        \"JJ\"\n    ], \n    \"Hopefully\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"calendar\": [\n        \"NN\"\n    ], \n    \"cost-benefit\": [\n        \"JJ\"\n    ], \n    \"steadfast\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Stena\": [\n        \"NNP\"\n    ], \n    \"Forgive\": [\n        \"VB\"\n    ], \n    \"performance-oriented\": [\n        \"JJ\"\n    ], \n    \"whereabouts\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"metabolites\": [\n        \"NNS\"\n    ], \n    \"rads\": [\n        \"NNS\"\n    ], \n    \"Ferrier\": [\n        \"NNP\"\n    ], \n    \"Houston-Montgomery\": [\n        \"NNP\"\n    ], \n    \"checks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"oversized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"deletions\": [\n        \"NNS\"\n    ], \n    \"Barkley\": [\n        \"NNP\"\n    ], \n    \"single-warhead\": [\n        \"NN\"\n    ], \n    \"killing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Competitors\": [\n        \"NNS\"\n    ], \n    \"Froelich\": [\n        \"NNP\"\n    ], \n    \"pillared\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"top-rated\": [\n        \"JJ\"\n    ], \n    \"pre-World-War\": [\n        \"JJ\"\n    ], \n    \"Thirty-eighth\": [\n        \"NNP\"\n    ], \n    \"cents-per-hour\": [\n        \"JJ\"\n    ], \n    \"nomenclature\": [\n        \"NN\"\n    ], \n    \"indelicate\": [\n        \"JJ\"\n    ], \n    \"Tours\": [\n        \"NNPS\"\n    ], \n    \"disappointment\": [\n        \"NN\"\n    ], \n    \"holders\": [\n        \"NNS\"\n    ], \n    \"decimals\": [\n        \"NNS\"\n    ], \n    \"forecasting\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"over-regulation\": [\n        \"NN\"\n    ], \n    \"SV-10\": [\n        \"NN\"\n    ], \n    \"Elizabethan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Kuse\": [\n        \"NNP\"\n    ], \n    \"Whitlock\": [\n        \"NNP\"\n    ], \n    \"possessive\": [\n        \"JJ\"\n    ], \n    \"Zellerbach\": [\n        \"NNP\"\n    ], \n    \"Tigue\": [\n        \"NNP\"\n    ], \n    \"perpetuating\": [\n        \"VBG\"\n    ], \n    \"Corash\": [\n        \"NNP\"\n    ], \n    \"Sotnikov\": [\n        \"NNP\"\n    ], \n    \"quadrupling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"arts\": [\n        \"NNS\"\n    ], \n    \"caricature\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"all-too-familiar\": [\n        \"JJ\"\n    ], \n    \"localisms\": [\n        \"NNS\"\n    ], \n    \"shortening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"self-regulator\": [\n        \"NN\"\n    ], \n    \"constituencies\": [\n        \"NNS\"\n    ], \n    \"trading-oriented\": [\n        \"JJ\"\n    ], \n    \"graveyard\": [\n        \"NN\"\n    ], \n    \"business-communications\": [\n        \"NNS\"\n    ], \n    \"agranulocytosis\": [\n        \"NN\"\n    ], \n    \"codpiece\": [\n        \"NN\"\n    ], \n    \"Allstates\": [\n        \"NNP\"\n    ], \n    \"Taxpayers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Picus\": [\n        \"NNP\"\n    ], \n    \"spills\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"overdose\": [\n        \"NN\"\n    ], \n    \"Selwyn\": [\n        \"NNP\"\n    ], \n    \"those\": [\n        \"DT\"\n    ], \n    \"mid-section\": [\n        \"NN\"\n    ], \n    \"job-classification\": [\n        \"NN\"\n    ], \n    \"Minoru\": [\n        \"NNP\"\n    ], \n    \"litterbug\": [\n        \"NN\"\n    ], \n    \"Minors\": [\n        \"NNS\"\n    ], \n    \"disconnected\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Discounts\": [\n        \"NNS\"\n    ], \n    \"Malmo\": [\n        \"NNP\"\n    ], \n    \"Fixture\": [\n        \"NNP\"\n    ], \n    \"aircraft-engine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"client-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fallick\": [\n        \"NNP\"\n    ], \n    \"deformities\": [\n        \"NNS\"\n    ], \n    \"awakened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"grantee\": [\n        \"NN\"\n    ], \n    \"endothelial\": [\n        \"JJ\"\n    ], \n    \"Basketball\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"corn-buying\": [\n        \"JJ\"\n    ], \n    \"Florian\": [\n        \"NNP\"\n    ], \n    \"endowed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"rubbing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"undertones\": [\n        \"NNS\"\n    ], \n    \"camp-made\": [\n        \"JJ\"\n    ], \n    \"kindnesses\": [\n        \"NNS\"\n    ], \n    \"middle\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Koyo\": [\n        \"NNP\"\n    ], \n    \"ferns\": [\n        \"NNS\"\n    ], \n    \"Puffing\": [\n        \"VBG\"\n    ], \n    \"family-run\": [\n        \"JJ\"\n    ], \n    \"wimping\": [\n        \"VBG\"\n    ], \n    \"Hoyt\": [\n        \"NNP\"\n    ], \n    \"insofar\": [\n        \"RB\", \n        \"IN\"\n    ], \n    \"same\": [\n        \"JJ\"\n    ], \n    \"deference\": [\n        \"NN\"\n    ], \n    \"intermediary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"autonomously\": [\n        \"RB\"\n    ], \n    \"Peabody\": [\n        \"NNP\"\n    ], \n    \"gaspingly\": [\n        \"RB\"\n    ], \n    \"Leroy\": [\n        \"NNP\"\n    ], \n    \"Message\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"devours\": [\n        \"VBZ\"\n    ], \n    \"munch\": [\n        \"VB\"\n    ], \n    \"disincentives\": [\n        \"NNS\"\n    ], \n    \"Canticle\": [\n        \"NNP\"\n    ], \n    \"Defaults\": [\n        \"NNS\"\n    ], \n    \"Smeal\": [\n        \"NNP\"\n    ], \n    \"Mortars\": [\n        \"NNS\"\n    ], \n    \"exluding\": [\n        \"VBG\"\n    ], \n    \"discernable\": [\n        \"JJ\"\n    ], \n    \"intermittent\": [\n        \"JJ\"\n    ], \n    \"Tamerlane\": [\n        \"NNP\"\n    ], \n    \"DOONESBURY\": [\n        \"NNP\"\n    ], \n    \"Phibro\": [\n        \"NNP\"\n    ], \n    \"expressionism\": [\n        \"NN\"\n    ], \n    \"Rubega\": [\n        \"NNP\"\n    ], \n    \"imprint\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Hiss\": [\n        \"NNP\"\n    ], \n    \"adrenal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chavis\": [\n        \"NNP\"\n    ], \n    \"ethyl\": [\n        \"NN\"\n    ], \n    \"dipped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cash-up-front\": [\n        \"NN\"\n    ], \n    \"Genelabs\": [\n        \"NNPS\"\n    ], \n    \"Rattner\": [\n        \"NNP\"\n    ], \n    \"Carmody\": [\n        \"NNP\"\n    ], \n    \"swath\": [\n        \"NN\"\n    ], \n    \"vivify\": [\n        \"VB\"\n    ], \n    \"dipper\": [\n        \"NN\"\n    ], \n    \"Jeep\\\\/Eagle\": [\n        \"NNP\"\n    ], \n    \"Ethics\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"Banquet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nos.\": [\n        \"NN\"\n    ], \n    \"liken\": [\n        \"VBP\"\n    ], \n    \"presentable\": [\n        \"JJ\"\n    ], \n    \"Carat\": [\n        \"NNP\"\n    ], \n    \"Concert-Disc\": [\n        \"NNP\"\n    ], \n    \"admitting\": [\n        \"VBG\"\n    ], \n    \"dimensioning\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"F.S.L.I.C\": [\n        \"NNP\"\n    ], \n    \"Moosilauke\": [\n        \"NNP\"\n    ], \n    \"blankets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Executioner\": [\n        \"NN\"\n    ], \n    \"noncompetitively\": [\n        \"RB\"\n    ], \n    \"nosy\": [\n        \"JJ\"\n    ], \n    \"CPTs\": [\n        \"NNS\"\n    ], \n    \"Artfully\": [\n        \"RB\"\n    ], \n    \"chamber\": [\n        \"NN\"\n    ], \n    \"audience\": [\n        \"NN\"\n    ], \n    \"nose\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"neuronal\": [\n        \"JJ\"\n    ], \n    \"Pathology\": [\n        \"NNP\"\n    ], \n    \"Enron\": [\n        \"NNP\"\n    ], \n    \"Dress\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"specifies\": [\n        \"VBZ\"\n    ], \n    \"Democracy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"alternated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ned\": [\n        \"NNP\"\n    ], \n    \"Neb\": [\n        \"NNP\"\n    ], \n    \"Nec\": [\n        \"FW\"\n    ], \n    \"specified\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Nev\": [\n        \"NNP\"\n    ], \n    \"New\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Net\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"spasm\": [\n        \"NN\"\n    ], \n    \"car-dealers\": [\n        \"NNS\"\n    ], \n    \"gross\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Intermoda\": [\n        \"NNP\"\n    ], \n    \"Lempesis\": [\n        \"NNP\"\n    ], \n    \"PS\\\\/2\": [\n        \"NNP\"\n    ], \n    \"Gogo\": [\n        \"NNP\"\n    ], \n    \"Valspar\": [\n        \"NNP\"\n    ], \n    \"Artie\": [\n        \"NNP\"\n    ], \n    \"custody\": [\n        \"NN\"\n    ], \n    \"Gogh\": [\n        \"NNP\"\n    ], \n    \"Barokocy\": [\n        \"NNP\"\n    ], \n    \"reinbursement\": [\n        \"NN\"\n    ], \n    \"buttressed\": [\n        \"VBN\"\n    ], \n    \"Lycidas\": [\n        \"NNP\"\n    ], \n    \"Doritos\": [\n        \"NNS\"\n    ], \n    \"underwriters\": [\n        \"NNS\", \n        \",\"\n    ], \n    \"cliques\": [\n        \"NNS\"\n    ], \n    \"thefts\": [\n        \"NNS\"\n    ], \n    \"broker\": [\n        \"NN\"\n    ], \n    \"squall\": [\n        \"NN\"\n    ], \n    \"broken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Kyne\": [\n        \"NNP\"\n    ], \n    \"buttresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"highest-priced\": [\n        \"JJS\"\n    ], \n    \"mysticism\": [\n        \"NN\"\n    ], \n    \"squarely\": [\n        \"RB\"\n    ], \n    \"Husky\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"roaming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pettinesses\": [\n        \"NNS\"\n    ], \n    \"California-bashing\": [\n        \"JJ\"\n    ], \n    \"opium\": [\n        \"NN\"\n    ], \n    \"tease\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"othe\": [\n        \"JJ\"\n    ], \n    \"bilharziasis\": [\n        \"NN\"\n    ], \n    \"Kalin\": [\n        \"NNP\"\n    ], \n    \"arty\": [\n        \"JJ\"\n    ], \n    \"MANY\": [\n        \"JJ\"\n    ], \n    \"organizers\": [\n        \"NNS\"\n    ], \n    \"check-processing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dimensions\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Functions\": [\n        \"NNPS\"\n    ], \n    \"Contacts\": [\n        \"NNPS\"\n    ], \n    \"not-strictly-practical\": [\n        \"JJ\"\n    ], \n    \"then-current\": [\n        \"JJ\"\n    ], \n    \"Xydis\": [\n        \"NNP\"\n    ], \n    \"Kwasha\": [\n        \"NNP\"\n    ], \n    \"theories...\": [\n        \":\"\n    ], \n    \"Baring\": [\n        \"NNP\"\n    ], \n    \"state-private\": [\n        \"JJ\"\n    ], \n    \"Larsson\": [\n        \"NNP\"\n    ], \n    \"argumentation\": [\n        \"NN\"\n    ], \n    \"Conductor\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"daubed\": [\n        \"VBD\"\n    ], \n    \"Nest\": [\n        \"NNP\"\n    ], \n    \"Greiner\": [\n        \"NNP\"\n    ], \n    \"brute\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fates\": [\n        \"NNS\"\n    ], \n    \"Suffering\": [\n        \"VBG\"\n    ], \n    \"Nesi\": [\n        \"NNP\"\n    ], \n    \"Luth\": [\n        \"NNP\"\n    ], \n    \"two-tiered\": [\n        \"JJ\"\n    ], \n    \"Counsel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mornings\": [\n        \"NNS\"\n    ], \n    \"countersuing\": [\n        \"VBG\"\n    ], \n    \"hesitance\": [\n        \"NN\"\n    ], \n    \"proportionately\": [\n        \"RB\"\n    ], \n    \"debt\\\\/equity\": [\n        \"NN\"\n    ], \n    \"Transition\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"DIAL-A-PIANO-LESSON\": [\n        \"NNP\"\n    ], \n    \"anti-infectives\": [\n        \"NNS\"\n    ], \n    \"wiping\": [\n        \"VBG\"\n    ], \n    \"collosal\": [\n        \"JJ\"\n    ], \n    \"staircases\": [\n        \"NNS\"\n    ], \n    \"Walker\": [\n        \"NNP\"\n    ], \n    \"Gutfreund\": [\n        \"NNP\"\n    ], \n    \"Castle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hesitancy\": [\n        \"NN\"\n    ], \n    \"municipally-sponsored\": [\n        \"JJ\"\n    ], \n    \"belated\": [\n        \"JJ\"\n    ], \n    \"bomb-proof\": [\n        \"JJ\"\n    ], \n    \"Cigarette-vending\": [\n        \"JJ\"\n    ], \n    \"commonality\": [\n        \"NN\"\n    ], \n    \"HUD-supervised\": [\n        \"JJ\"\n    ], \n    \"co-chief\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"anemated\": [\n        \"VBN\"\n    ], \n    \"Nouvelle\": [\n        \"NNP\"\n    ], \n    \"sudden-end\": [\n        \"JJ\"\n    ], \n    \"SHOULD\": [\n        \"MD\"\n    ], \n    \"strawberry\": [\n        \"NN\"\n    ], \n    \"solvents\": [\n        \"NNS\"\n    ], \n    \"suitcase\": [\n        \"NN\"\n    ], \n    \"Commissioning\": [\n        \"VBG\"\n    ], \n    \"undereducated\": [\n        \"JJ\"\n    ], \n    \"Blues\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"ossification\": [\n        \"NN\"\n    ], \n    \"Alison\": [\n        \"NN\"\n    ], \n    \"Allgemeine\": [\n        \"NNP\"\n    ], \n    \"COFFEE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"TuHulHulZote\": [\n        \"NNP\"\n    ], \n    \"leaked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"croons\": [\n        \"VBZ\"\n    ], \n    \"VISX\": [\n        \"NNP\"\n    ], \n    \"leaker\": [\n        \"NN\"\n    ], \n    \"VISA\": [\n        \"NNP\"\n    ], \n    \"girlfriend\": [\n        \"NN\"\n    ], \n    \"lifetime\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"deterrent\": [\n        \"NN\"\n    ], \n    \"go-betweens\": [\n        \"NNS\"\n    ], \n    \"Nieman\": [\n        \"NNP\"\n    ], \n    \"PKbanken\": [\n        \"NNP\"\n    ], \n    \"Miringoff\": [\n        \"NNP\"\n    ], \n    \"slew\": [\n        \"NN\"\n    ], \n    \"drouth\": [\n        \"NN\"\n    ], \n    \"bragging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unaccustomed\": [\n        \"JJ\"\n    ], \n    \"Drilling\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Frontage\": [\n        \"NN\"\n    ], \n    \"definition-specialization\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"entertainment-industry\": [\n        \"NN\"\n    ], \n    \"students\": [\n        \"NNS\"\n    ], \n    \"Geolite\": [\n        \"NN\"\n    ], \n    \"Vadehra\": [\n        \"NNP\"\n    ], \n    \"Balanchine\": [\n        \"NNP\"\n    ], \n    \"deriving\": [\n        \"VBG\"\n    ], \n    \"obsesses\": [\n        \"VBZ\"\n    ], \n    \"Houten\": [\n        \"NNP\"\n    ], \n    \"elastomers\": [\n        \"NNS\"\n    ], \n    \"tackle\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"revolve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unpopularity\": [\n        \"NN\"\n    ], \n    \"remote\": [\n        \"JJ\"\n    ], \n    \"Restructure\": [\n        \"VBP\"\n    ], \n    \"recapitulation\": [\n        \"NN\"\n    ], \n    \"thrift-resolution\": [\n        \"NN\"\n    ], \n    \"Intangible\": [\n        \"JJ\"\n    ], \n    \"Secretary-designate\": [\n        \"NNP\"\n    ], \n    \"home-health-care\": [\n        \"JJ\"\n    ], \n    \"high-balance\": [\n        \"JJ\"\n    ], \n    \"nutrient\": [\n        \"JJ\"\n    ], \n    \"sterility-assurance\": [\n        \"NN\"\n    ], \n    \"counter-trend\": [\n        \"JJ\"\n    ], \n    \"starting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"bottoming\": [\n        \"VBG\"\n    ], \n    \"growling\": [\n        \"VBG\"\n    ], \n    \"Trish\": [\n        \"NNP\"\n    ], \n    \"Gallitano\": [\n        \"NNP\"\n    ], \n    \"Voute\": [\n        \"NNP\"\n    ], \n    \"mug\": [\n        \"NN\"\n    ], \n    \"suburban\": [\n        \"JJ\"\n    ], \n    \"alerting\": [\n        \"VBG\"\n    ], \n    \"Wayne\": [\n        \"NNP\"\n    ], \n    \"half-owned\": [\n        \"JJ\"\n    ], \n    \"Theorem\": [\n        \"NN\"\n    ], \n    \"b-reflects\": [\n        \"VBZ\"\n    ], \n    \"Euler\": [\n        \"NNP\"\n    ], \n    \"reluctant\": [\n        \"JJ\"\n    ], \n    \"Transcaucasian\": [\n        \"JJ\"\n    ], \n    \"Fremont\": [\n        \"NNP\"\n    ], \n    \"odyssey\": [\n        \"NN\"\n    ], \n    \"investigational\": [\n        \"JJ\"\n    ], \n    \"Bologna\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fulghum\": [\n        \"NNP\"\n    ], \n    \"selloffs\": [\n        \"NNS\"\n    ], \n    \"nightfall\": [\n        \"NN\"\n    ], \n    \"Beame\": [\n        \"NNP\"\n    ], \n    \"bevy\": [\n        \"NN\"\n    ], \n    \"self-deception\": [\n        \"NN\"\n    ], \n    \"shifters\": [\n        \"NNS\"\n    ], \n    \"rambunctious\": [\n        \"JJ\"\n    ], \n    \"Vehicles\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"overdone\": [\n        \"VBN\"\n    ], \n    \"Holliston\": [\n        \"NNP\"\n    ], \n    \"scour\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"posseman\": [\n        \"NN\"\n    ], \n    \"bottleneck\": [\n        \"NN\"\n    ], \n    \"capillary\": [\n        \"NN\"\n    ], \n    \"Ventured\": [\n        \"NNP\"\n    ], \n    \"extractors\": [\n        \"NNS\"\n    ], \n    \"benevolent\": [\n        \"JJ\"\n    ], \n    \"industrialization\": [\n        \"NN\"\n    ], \n    \"Course\": [\n        \"NNP\"\n    ], \n    \"crckdown.\": [\n        \"NN\"\n    ], \n    \"Rector\": [\n        \"NNP\"\n    ], \n    \"mistaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"incompatibles\": [\n        \"NNS\"\n    ], \n    \"Surety\": [\n        \"NNP\"\n    ], \n    \"Buds\": [\n        \"NNPS\"\n    ], \n    \"fauteuil\": [\n        \"FW\"\n    ], \n    \"titled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"MacGregor\": [\n        \"NNP\"\n    ], \n    \"periodicity\": [\n        \"NN\"\n    ], \n    \"JSP-supported\": [\n        \"JJ\"\n    ], \n    \"Benzell\": [\n        \"NNP\"\n    ], \n    \"knitted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"titles\": [\n        \"NNS\"\n    ], \n    \"lawyer\": [\n        \"NN\"\n    ], \n    \"Budd\": [\n        \"NNP\"\n    ], \n    \"Unam\": [\n        \"NNP\"\n    ], \n    \"Wycoff\": [\n        \"NNP\"\n    ], \n    \"novitiate\": [\n        \"NN\"\n    ], \n    \"CHECKUPS\": [\n        \"NNS\"\n    ], \n    \"Liberties\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"high-profit-margin\": [\n        \"JJ\"\n    ], \n    \"Ellington\": [\n        \"NNP\"\n    ], \n    \"sociologically\": [\n        \"RB\"\n    ], \n    \"Grievances\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Eskandarian\": [\n        \"NNP\"\n    ], \n    \"unreported\": [\n        \"JJ\"\n    ], \n    \"HENRI\": [\n        \"NNP\"\n    ], \n    \"pupated\": [\n        \"VBN\"\n    ], \n    \"K\": [\n        \"NNP\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"beacon\": [\n        \"NN\"\n    ], \n    \"venerated\": [\n        \"VBN\"\n    ], \n    \"HENRY\": [\n        \"NNP\"\n    ], \n    \"biweekly\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drubbed\": [\n        \"VBN\"\n    ], \n    \"fatter\": [\n        \"JJR\"\n    ], \n    \"search\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"feminine-care\": [\n        \"JJ\"\n    ], \n    \"Pumwani\": [\n        \"NNP\"\n    ], \n    \"super-headache\": [\n        \"NN\"\n    ], \n    \"emergency-claims\": [\n        \"NNS\"\n    ], \n    \"Nissei\": [\n        \"NNP\"\n    ], \n    \"fatten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pathological\": [\n        \"JJ\"\n    ], \n    \"Devin\": [\n        \"NNP\"\n    ], \n    \"Devil\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Scriptures\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"bathe\": [\n        \"VB\"\n    ], \n    \"Warriors\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"transit\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sadist\": [\n        \"NN\"\n    ], \n    \"seceded\": [\n        \"VBN\"\n    ], \n    \"debugged\": [\n        \"VBN\"\n    ], \n    \"Yaddo\": [\n        \"NNP\"\n    ], \n    \"sadism\": [\n        \"NN\"\n    ], \n    \"establish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"barked\": [\n        \"VBD\"\n    ], \n    \"issues-such\": [\n        \"JJ\"\n    ], \n    \"Conoco\": [\n        \"NNP\"\n    ], \n    \"Hard-surface\": [\n        \"JJ\"\n    ], \n    \"rotogravures\": [\n        \"NNS\"\n    ], \n    \"cultivation\": [\n        \"NN\"\n    ], \n    \"water-holding\": [\n        \"JJ\"\n    ], \n    \"Transfer\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"OUR\": [\n        \"PRP$\"\n    ], \n    \"achieving\": [\n        \"VBG\"\n    ], \n    \"OUT\": [\n        \"IN\", \n        \"RP\"\n    ], \n    \"BOTH\": [\n        \"DT\"\n    ], \n    \"Glamorous\": [\n        \"JJ\"\n    ], \n    \"Boeing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"career-bound\": [\n        \"JJ\"\n    ], \n    \"FEDERAL\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"brisk\": [\n        \"JJ\"\n    ], \n    \"dammit\": [\n        \"UH\", \n        \"VB\"\n    ], \n    \"Chukchi\": [\n        \"NNP\"\n    ], \n    \"Racal\": [\n        \"NNP\"\n    ], \n    \"maharajahs\": [\n        \"NNS\"\n    ], \n    \"Schwartau\": [\n        \"NNP\"\n    ], \n    \"none\": [\n        \"NN\"\n    ], \n    \"income-paying\": [\n        \"JJ\"\n    ], \n    \"intercepted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Comany\": [\n        \"NNP\"\n    ], \n    \"clergy\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Tagalog\": [\n        \"NNP\"\n    ], \n    \"refugee\": [\n        \"NN\"\n    ], \n    \"blastdown\": [\n        \"NN\"\n    ], \n    \"ex-jazz\": [\n        \"JJ\"\n    ], \n    \"compare\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Personal-computer\": [\n        \"NN\"\n    ], \n    \"buttress\": [\n        \"VB\"\n    ], \n    \"ionizing\": [\n        \"VBG\"\n    ], \n    \"raisin\": [\n        \"NN\"\n    ], \n    \"socal\": [\n        \"JJ\"\n    ], \n    \"AHSC\": [\n        \"NNP\"\n    ], \n    \"electronography\": [\n        \"NN\"\n    ], \n    \"minimum-tax\": [\n        \"NN\"\n    ], \n    \"gray-looking\": [\n        \"JJ\"\n    ], \n    \"wisely\": [\n        \"RB\"\n    ], \n    \"Ex-Presidents\": [\n        \"NNS\"\n    ], \n    \"thallium\": [\n        \"NN\"\n    ], \n    \"morning-session\": [\n        \"NN\"\n    ], \n    \"Carpenter\": [\n        \"NNP\"\n    ], \n    \"Stacy\": [\n        \"NNP\"\n    ], \n    \"Cabanne\": [\n        \"NNP\"\n    ], \n    \"Balkanize\": [\n        \"VB\"\n    ], \n    \"Stack\": [\n        \"NNP\"\n    ], \n    \"heartwarmingly\": [\n        \"RB\"\n    ], \n    \"galactic\": [\n        \"JJ\"\n    ], \n    \"charms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"petite\": [\n        \"JJ\"\n    ], \n    \"servicers\": [\n        \"NNS\"\n    ], \n    \"capital-intensive\": [\n        \"JJ\"\n    ], \n    \"slangy-confidential\": [\n        \"JJ\"\n    ], \n    \"bouffant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"petits\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"Jepson\": [\n        \"NNP\"\n    ], \n    \"Sophie\": [\n        \"NNP\"\n    ], \n    \"Cadbury\": [\n        \"NNP\"\n    ], \n    \"bloom\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Sophia\": [\n        \"NNP\"\n    ], \n    \"coffin-sized\": [\n        \"JJ\"\n    ], \n    \"coax\": [\n        \"VB\"\n    ], \n    \"unreservedly\": [\n        \"RB\"\n    ], \n    \"coat\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"cemeteries\": [\n        \"NNS\"\n    ], \n    \"coal\": [\n        \"NN\"\n    ], \n    \"Prawiro\": [\n        \"NNP\"\n    ], \n    \"What\": [\n        \"WP\", \n        \"NNP\", \n        \"PDT\", \n        \"WDT\"\n    ], \n    \"finalized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"U.K.\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"setback\": [\n        \"NN\"\n    ], \n    \"Pearlman\": [\n        \"NNP\"\n    ], \n    \"Intermark\": [\n        \"NNP\"\n    ], \n    \"dough\": [\n        \"NN\"\n    ], \n    \"M\\\\/I\": [\n        \"NNP\"\n    ], \n    \"existence\": [\n        \"NN\"\n    ], \n    \"clumsily\": [\n        \"RB\"\n    ], \n    \"Wham\": [\n        \"UH\"\n    ], \n    \"Whah\": [\n        \"WRB\"\n    ], \n    \"anaplasmosis\": [\n        \"NN\"\n    ], \n    \"Ranking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Pinola\": [\n        \"NNP\"\n    ], \n    \"Morehouse\": [\n        \"NNP\"\n    ], \n    \"render\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sodium\": [\n        \"NN\"\n    ], \n    \"Leyland\": [\n        \"NNP\"\n    ], \n    \"Marietta\": [\n        \"NNP\"\n    ], \n    \"clamor\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"bereft\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"infantrymen\": [\n        \"NNS\"\n    ], \n    \"pollen-and-nectar\": [\n        \"NN\"\n    ], \n    \"time-temperature\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gullah\": [\n        \"NNP\"\n    ], \n    \"minting\": [\n        \"VBG\"\n    ], \n    \"Dorcas\": [\n        \"NNP\"\n    ], \n    \"walls\": [\n        \"NNS\"\n    ], \n    \"Hansmann\": [\n        \"NNP\"\n    ], \n    \"Seelenfreund\": [\n        \"NNP\"\n    ], \n    \"detach\": [\n        \"VB\"\n    ], \n    \"Mogadishu\": [\n        \"NNP\"\n    ], \n    \"Afrique\": [\n        \"NNP\"\n    ], \n    \"Dist\": [\n        \"NNP\"\n    ], \n    \"Chung\": [\n        \"NNP\"\n    ], \n    \"suprise\": [\n        \"NN\"\n    ], \n    \"token\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kronish\": [\n        \"NNP\"\n    ], \n    \"subjugation\": [\n        \"NN\"\n    ], \n    \"under-owned\": [\n        \"JJ\"\n    ], \n    \"Dish\": [\n        \"NNP\"\n    ], \n    \"McDonnell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Disk\": [\n        \"NN\"\n    ], \n    \"upper-echelon\": [\n        \"JJ\"\n    ], \n    \"clamp\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"paper-company\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"clams\": [\n        \"NNS\"\n    ], \n    \"low-pass\": [\n        \"JJ\"\n    ], \n    \"nakedness\": [\n        \"NN\"\n    ], \n    \"beret\": [\n        \"NN\"\n    ], \n    \"securities-laws\": [\n        \"NNS\"\n    ], \n    \"dullish\": [\n        \"JJ\"\n    ], \n    \"implicated\": [\n        \"VBN\"\n    ], \n    \"Granville\": [\n        \"NNP\"\n    ], \n    \"Pattenden\": [\n        \"NNP\"\n    ], \n    \"seniority\": [\n        \"NN\"\n    ], \n    \"allusions\": [\n        \"NNS\"\n    ], \n    \"sub-minimum\": [\n        \"JJ\"\n    ], \n    \"ides\": [\n        \"NNS\"\n    ], \n    \"initiatives\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"reinstating\": [\n        \"VBG\"\n    ], \n    \"Lawyers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"HOLDINGS\": [\n        \"NNPS\"\n    ], \n    \"Popkin\": [\n        \"NNP\"\n    ], \n    \"numbingly\": [\n        \"RB\"\n    ], \n    \"Outlet\": [\n        \"NNP\"\n    ], \n    \"avenge\": [\n        \"VB\"\n    ], \n    \"Rocketdyne\": [\n        \"NNP\"\n    ], \n    \"Ukraine\": [\n        \"NNP\"\n    ], \n    \"Rosalynn\": [\n        \"NNP\"\n    ], \n    \"stridently\": [\n        \"RB\"\n    ], \n    \"Parsons\": [\n        \"NNP\"\n    ], \n    \"Anytime\": [\n        \"RB\"\n    ], \n    \"Inacio\": [\n        \"NNP\"\n    ], \n    \"Chin-Use\": [\n        \"VB\"\n    ], \n    \"Fenerty\": [\n        \"NNP\"\n    ], \n    \"Magoon\": [\n        \"NNP\"\n    ], \n    \"disposition\": [\n        \"NN\"\n    ], \n    \"Capwell\": [\n        \"NNP\"\n    ], \n    \"Squeezed\": [\n        \"VBN\"\n    ], \n    \"Pelham\": [\n        \"NNP\"\n    ], \n    \"Yankees\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"junk-bond-financed\": [\n        \"JJ\"\n    ], \n    \"Raines\": [\n        \"NNP\"\n    ], \n    \"Rainer\": [\n        \"NNP\"\n    ], \n    \"Tasaki-Riger\": [\n        \"NNP\"\n    ], \n    \"settlers\": [\n        \"NNS\"\n    ], \n    \"omit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Nazzella\": [\n        \"NNP\"\n    ], \n    \"Gettleman\": [\n        \"NNP\"\n    ], \n    \"Homeowner\": [\n        \"NNP\"\n    ], \n    \"audacity\": [\n        \"NN\"\n    ], \n    \"Inna\": [\n        \"NNP\"\n    ], \n    \"Kieslowski\": [\n        \"NNP\"\n    ], \n    \"McKinley\": [\n        \"NNP\"\n    ], \n    \"Pullman\": [\n        \"NNP\"\n    ], \n    \"CONVICTS\": [\n        \"VBZ\"\n    ], \n    \"seduction\": [\n        \"NN\"\n    ], \n    \"soot-stained\": [\n        \"JJ\"\n    ], \n    \"bullies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Officers\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"smaller\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"elevator\": [\n        \"NN\"\n    ], \n    \"Salerno\": [\n        \"NNP\"\n    ], \n    \"Gilbert\": [\n        \"NNP\"\n    ], \n    \"unfunnily\": [\n        \"RB\"\n    ], \n    \"Lipton\": [\n        \"NNP\"\n    ], \n    \"Saltis-McErlane\": [\n        \"NNP\"\n    ], \n    \"energy-hungry\": [\n        \"JJ\"\n    ], \n    \"Slight\": [\n        \"JJ\"\n    ], \n    \"totally\": [\n        \"RB\"\n    ], \n    \"kob\": [\n        \"NN\"\n    ], \n    \"entreated\": [\n        \"VBD\"\n    ], \n    \"suffixand\": [\n        \"NN\"\n    ], \n    \"Pediatric\": [\n        \"NNP\"\n    ], \n    \"beardown\": [\n        \"JJ\"\n    ], \n    \"casework\": [\n        \"NN\"\n    ], \n    \"matching-fund\": [\n        \"JJ\"\n    ], \n    \"Oberreit\": [\n        \"NNP\"\n    ], \n    \"ravings\": [\n        \"NNS\"\n    ], \n    \"mentality\": [\n        \"NN\"\n    ], \n    \"DTF\": [\n        \"NN\"\n    ], \n    \"madmen\": [\n        \"NNS\"\n    ], \n    \"vernier\": [\n        \"NN\"\n    ], \n    \"turboprop\": [\n        \"NN\"\n    ], \n    \"newswire\": [\n        \"NN\"\n    ], \n    \"three-fifths\": [\n        \"JJ\"\n    ], \n    \"liquid-chromatography\": [\n        \"NN\"\n    ], \n    \"pickups\": [\n        \"NNS\"\n    ], \n    \"colander\": [\n        \"NN\"\n    ], \n    \"Philco-sponsored\": [\n        \"JJ\"\n    ], \n    \"workbenches\": [\n        \"NNS\"\n    ], \n    \"riddance\": [\n        \"NN\"\n    ], \n    \"interactive\": [\n        \"JJ\"\n    ], \n    \"Jurong\": [\n        \"NNP\"\n    ], \n    \"emanation\": [\n        \"NN\"\n    ], \n    \"Waterville\": [\n        \"NNP\"\n    ], \n    \"actuary\": [\n        \"NN\"\n    ], \n    \"plead\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"interloper\": [\n        \"NN\"\n    ], \n    \"Schmetterer\": [\n        \"NNP\"\n    ], \n    \"intestine\": [\n        \"NN\"\n    ], \n    \"Somerset\": [\n        \"NNP\"\n    ], \n    \"collateralized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Kozloff\": [\n        \"NNP\"\n    ], \n    \"schizoid\": [\n        \"JJ\"\n    ], \n    \"Virginia\": [\n        \"NNP\"\n    ], \n    \"onset\": [\n        \"NN\"\n    ], \n    \"extracted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Joffrey\": [\n        \"NNP\"\n    ], \n    \"press-freedom\": [\n        \"NN\"\n    ], \n    \"hecatomb\": [\n        \"NN\"\n    ], \n    \"commentary\": [\n        \"NN\"\n    ], \n    \"listeria\": [\n        \"FW\"\n    ], \n    \"RPM\": [\n        \"NNP\"\n    ], \n    \"Beefsteak\": [\n        \"NNP\"\n    ], \n    \"Hanwa\": [\n        \"NNP\"\n    ], \n    \"equipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"medium-sized\": [\n        \"JJ\"\n    ], \n    \"depths\": [\n        \"NNS\"\n    ], \n    \"Communications\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"oat-bran\": [\n        \"NN\"\n    ], \n    \"self-correcting\": [\n        \"JJ\"\n    ], \n    \"Anatomically\": [\n        \"RB\"\n    ], \n    \"pocketing\": [\n        \"VBG\"\n    ], \n    \"squelched\": [\n        \"VBN\"\n    ], \n    \"handscrolls\": [\n        \"NNS\"\n    ], \n    \"loners\": [\n        \"NNS\"\n    ], \n    \"Encouraging\": [\n        \"VBG\"\n    ], \n    \"squelch\": [\n        \"VBP\"\n    ], \n    \"ASDIC\": [\n        \"NNP\"\n    ], \n    \"Armageddon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Regime\": [\n        \"NNP\"\n    ], \n    \"COLLECTING\": [\n        \"NN\"\n    ], \n    \"lumping\": [\n        \"VBG\"\n    ], \n    \"Helms\": [\n        \"NNP\"\n    ], \n    \"antisubmarine\": [\n        \"JJ\"\n    ], \n    \"Bixby\": [\n        \"NNP\"\n    ], \n    \"hillside\": [\n        \"NN\"\n    ], \n    \"sanctity\": [\n        \"NN\"\n    ], \n    \"tax-backed\": [\n        \"JJ\"\n    ], \n    \"Fiechter\": [\n        \"NNP\"\n    ], \n    \"persuasively\": [\n        \"RB\"\n    ], \n    \"mother-naked\": [\n        \"JJ\"\n    ], \n    \"Sensor\": [\n        \"NNP\"\n    ], \n    \"goose-stepping\": [\n        \"VBG\"\n    ], \n    \"gangs\": [\n        \"NNS\"\n    ], \n    \"philanthropists\": [\n        \"NNS\"\n    ], \n    \"Takihyo\": [\n        \"NNP\"\n    ], \n    \"J.T.\": [\n        \"NNP\"\n    ], \n    \"anachronisms\": [\n        \"NNS\"\n    ], \n    \"freedoms\": [\n        \"NNS\"\n    ], \n    \"generators\": [\n        \"NNS\"\n    ], \n    \"Whitlow\": [\n        \"NNP\"\n    ], \n    \"first-preference\": [\n        \"NN\"\n    ], \n    \"cysts\": [\n        \"NNS\"\n    ], \n    \"prowess\": [\n        \"NN\"\n    ], \n    \"notation\": [\n        \"NN\"\n    ], \n    \"permission\": [\n        \"NN\"\n    ], \n    \"Marry\": [\n        \"NNP\"\n    ], \n    \"Barre-Montpelier\": [\n        \"NNP\"\n    ], \n    \"horsemeat\": [\n        \"NN\"\n    ], \n    \"UNCERTAINTY\": [\n        \"NN\"\n    ], \n    \"Marra\": [\n        \"NNP\"\n    ], \n    \"promptings\": [\n        \"NNS\"\n    ], \n    \"Reich\": [\n        \"NNP\"\n    ], \n    \"annexation\": [\n        \"NN\"\n    ], \n    \"Kingdome\": [\n        \"NNP\"\n    ], \n    \"slingers\": [\n        \"NNS\"\n    ], \n    \"cumulate\": [\n        \"VB\"\n    ], \n    \"real-life\": [\n        \"JJ\"\n    ], \n    \"twiggy-looking\": [\n        \"JJ\"\n    ], \n    \"Smartt\": [\n        \"NNP\"\n    ], \n    \"Hebrews\": [\n        \"NNPS\"\n    ], \n    \"series-production\": [\n        \"NN\"\n    ], \n    \"reputable\": [\n        \"JJ\"\n    ], \n    \"Op.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Attendance\": [\n        \"NN\"\n    ], \n    \"McGurk\": [\n        \"NNP\"\n    ], \n    \"tended\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Wright\": [\n        \"NNP\"\n    ], \n    \"individual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tender\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Tuchman\": [\n        \"NNP\"\n    ], \n    \"enveloped\": [\n        \"VBN\"\n    ], \n    \"Collaborative\": [\n        \"NNP\"\n    ], \n    \"multiparty\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"manumitted\": [\n        \"VBN\"\n    ], \n    \"TCU\": [\n        \"NNP\"\n    ], \n    \"TCR\": [\n        \"NNP\"\n    ], \n    \"aviary\": [\n        \"NN\"\n    ], \n    \"halves\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Plunking\": [\n        \"VBG\"\n    ], \n    \"envelopes\": [\n        \"NNS\"\n    ], \n    \"TCI\": [\n        \"NNP\"\n    ], \n    \"TCF\": [\n        \"NNP\"\n    ], \n    \"guilt\": [\n        \"NN\"\n    ], \n    \"Isaiah\": [\n        \"NNP\"\n    ], \n    \"technical-ladder\": [\n        \"JJ\"\n    ], \n    \"interfaces\": [\n        \"NNS\"\n    ], \n    \"constitutional-law\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"analogues\": [\n        \"NNS\"\n    ], \n    \"overvalued\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"trespassed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cleaned-up\": [\n        \"JJ\"\n    ], \n    \"Belshazzar\": [\n        \"NNP\"\n    ], \n    \"Preambles\": [\n        \"NNS\"\n    ], \n    \"understand\\\\/adopt\": [\n        \"VB\"\n    ], \n    \"combustibles\": [\n        \"NNS\"\n    ], \n    \"mid-February\": [\n        \"NNP\"\n    ], \n    \"Grieco\": [\n        \"NNP\"\n    ], \n    \"PW4060\": [\n        \"NNP\"\n    ], \n    \"Rossi\": [\n        \"NNP\"\n    ], \n    \"Krauss-Maffei\": [\n        \"NNP\"\n    ], \n    \"Jenner\": [\n        \"NNP\"\n    ], \n    \"Sidney\": [\n        \"NNP\"\n    ], \n    \"sugar-subsidy\": [\n        \"NN\"\n    ], \n    \"Counselors\": [\n        \"NNPS\"\n    ], \n    \"Ladehoff\": [\n        \"NNP\"\n    ], \n    \"openness\": [\n        \"NN\"\n    ], \n    \"Payline\": [\n        \"NNP\"\n    ], \n    \"suppressing\": [\n        \"VBG\"\n    ], \n    \"seven-inning\": [\n        \"JJ\"\n    ], \n    \"blood-kinship\": [\n        \"NN\"\n    ], \n    \"create\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"TROUBLES\": [\n        \"NNS\"\n    ], \n    \"Ever-more\": [\n        \"RB\"\n    ], \n    \"Lousie\": [\n        \"NNP\"\n    ], \n    \"fast-frozen\": [\n        \"JJ\"\n    ], \n    \"Senora\": [\n        \"NNP\"\n    ], \n    \"Lubbock\": [\n        \"NNP\"\n    ], \n    \"Ritchie\": [\n        \"NNP\"\n    ], \n    \"hopefuls\": [\n        \"NNS\"\n    ], \n    \"roomette\": [\n        \"NN\"\n    ], \n    \"Servant\": [\n        \"NNP\"\n    ], \n    \"flavorful\": [\n        \"JJ\"\n    ], \n    \"Casino\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"COVER\": [\n        \"NN\"\n    ], \n    \"pre-1933\": [\n        \"JJ\"\n    ], \n    \"understand\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"realms\": [\n        \"NNS\"\n    ], \n    \"Dycom\": [\n        \"NNP\"\n    ], \n    \"Pozen\": [\n        \"NNP\"\n    ], \n    \"Sino-British\": [\n        \"JJ\"\n    ], \n    \"Ding\": [\n        \"NNP\"\n    ], \n    \"bile\": [\n        \"NN\"\n    ], \n    \"unify\": [\n        \"VB\"\n    ], \n    \"enchanted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Dino\": [\n        \"NNP\"\n    ], \n    \"laxness\": [\n        \"NN\"\n    ], \n    \"bill\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"bilk\": [\n        \"VB\"\n    ], \n    \"Salpetriere\": [\n        \"NNP\"\n    ], \n    \"Dinh\": [\n        \"NNP\"\n    ], \n    \"prolusions\": [\n        \"NNS\"\n    ], \n    \"Defending\": [\n        \"VBG\"\n    ], \n    \"CONTAMINATION\": [\n        \"NN\"\n    ], \n    \"non-Dow\": [\n        \"NNP\"\n    ], \n    \"Incorrect\": [\n        \"JJ\"\n    ], \n    \"vaults\": [\n        \"NNS\"\n    ], \n    \"shoddy\": [\n        \"JJ\"\n    ], \n    \"credit-worthiness\": [\n        \"NN\"\n    ], \n    \"rancor\": [\n        \"NN\"\n    ], \n    \"decoration\": [\n        \"NN\"\n    ], \n    \"cadge\": [\n        \"VBP\"\n    ], \n    \"tribesmen\": [\n        \"NNS\"\n    ], \n    \"arenas\": [\n        \"NNS\"\n    ], \n    \"computer-network\": [\n        \"NN\"\n    ], \n    \"Monarque\": [\n        \"FW\"\n    ], \n    \"saline\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"headless\": [\n        \"JJ\"\n    ], \n    \"Zimmer\": [\n        \"NNP\"\n    ], \n    \"leafed\": [\n        \"VBD\"\n    ], \n    \"Carrying\": [\n        \"VBG\"\n    ], \n    \"copying\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Martinique\": [\n        \"NNP\"\n    ], \n    \"dishonouring\": [\n        \"VBG\"\n    ], \n    \"F.D.\": [\n        \"NNP\"\n    ], \n    \"less-hurried\": [\n        \"JJ\"\n    ], \n    \"Barksdale\": [\n        \"NNP\"\n    ], \n    \"Motor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"itch\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"praising\": [\n        \"VBG\"\n    ], \n    \"Sinhalese-dominated\": [\n        \"JJ\"\n    ], \n    \"most-obvious\": [\n        \"JJ\"\n    ], \n    \"moment\": [\n        \"NN\"\n    ], \n    \"citadels\": [\n        \"NNS\"\n    ], \n    \"Bermuda-based\": [\n        \"JJ\"\n    ], \n    \"information-display\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sandals\": [\n        \"NNS\"\n    ], \n    \"carver\": [\n        \"NN\"\n    ], \n    \"Coffin\": [\n        \"NNP\"\n    ], \n    \"knowed\": [\n        \"VBN\"\n    ], \n    \"grown-up\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Figura\": [\n        \"NNP\"\n    ], \n    \"Langbo\": [\n        \"NNP\"\n    ], \n    \"Figure\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"percentages\": [\n        \"NNS\"\n    ], \n    \"high-tech-sounding\": [\n        \"JJ\"\n    ], \n    \"morrow\": [\n        \"NN\"\n    ], \n    \"cornball\": [\n        \"NN\"\n    ], \n    \"y\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"revising\": [\n        \"VBG\"\n    ], \n    \"absolving\": [\n        \"VBG\"\n    ], \n    \"chemistry\": [\n        \"NN\"\n    ], \n    \"Considering\": [\n        \"VBG\"\n    ], \n    \"echoing\": [\n        \"VBG\"\n    ], \n    \"purview\": [\n        \"NN\"\n    ], \n    \"makeshifts\": [\n        \"NNS\"\n    ], \n    \"Bremen\": [\n        \"NNP\"\n    ], \n    \"Cycads\": [\n        \"NNS\"\n    ], \n    \"Chojnowski\": [\n        \"NNP\"\n    ], \n    \"Sheckley\": [\n        \"NNP\"\n    ], \n    \"zodiacal\": [\n        \"JJ\"\n    ], \n    \"dishonesty\": [\n        \"NN\"\n    ], \n    \"alignment\": [\n        \"NN\"\n    ], \n    \"diversions\": [\n        \"NNS\"\n    ], \n    \"Overstreet\": [\n        \"NNP\"\n    ], \n    \"excites\": [\n        \"VBZ\"\n    ], \n    \"exciter\": [\n        \"NN\"\n    ], \n    \"shouting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bridal\": [\n        \"JJ\"\n    ], \n    \"Alida\": [\n        \"NNP\"\n    ], \n    \"Scholars\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"co-manager\": [\n        \"NN\"\n    ], \n    \"chambermaid\": [\n        \"NN\"\n    ], \n    \"co-managed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"matters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"reapportionment\": [\n        \"NN\"\n    ], \n    \"Enhance\": [\n        \"NNP\"\n    ], \n    \"Trichinella\": [\n        \"NN\"\n    ], \n    \"wave-particle\": [\n        \"NN\"\n    ], \n    \"wisenheimer\": [\n        \"NN\"\n    ], \n    \"disrepair\": [\n        \"NN\"\n    ], \n    \"enervation\": [\n        \"NN\"\n    ], \n    \"forepart\": [\n        \"NN\"\n    ], \n    \"Sigoloff\": [\n        \"NNP\"\n    ], \n    \"Reedy\": [\n        \"NNP\"\n    ], \n    \"glove\": [\n        \"NN\"\n    ], \n    \"Orthodoxy\": [\n        \"NNP\"\n    ], \n    \"deshabille\": [\n        \"NN\"\n    ], \n    \"INFLATION\": [\n        \"NN\"\n    ], \n    \"gut-flattening\": [\n        \"JJ\"\n    ], \n    \"friezes\": [\n        \"NNS\"\n    ], \n    \"Rawlins\": [\n        \"NNP\"\n    ], \n    \"protein-restricted\": [\n        \"JJ\"\n    ], \n    \"Chosen\": [\n        \"NNP\"\n    ], \n    \"peddlers\": [\n        \"NNS\"\n    ], \n    \"gravy\": [\n        \"NN\"\n    ], \n    \"examples\": [\n        \"NNS\"\n    ], \n    \"quarter-point\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fee-shifting\": [\n        \"JJ\"\n    ], \n    \"ferroelectric\": [\n        \"JJ\"\n    ], \n    \"scrim\": [\n        \"NN\"\n    ], \n    \"Bretz\": [\n        \"NNP\"\n    ], \n    \"aerobic\": [\n        \"JJ\"\n    ], \n    \"pew\": [\n        \"NN\"\n    ], \n    \"Brett\": [\n        \"NNP\"\n    ], \n    \"integration\": [\n        \"NN\"\n    ], \n    \"per\": [\n        \"IN\", \n        \"FW\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"pen\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Simplex\": [\n        \"JJ\"\n    ], \n    \"best-performing\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"peg\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"commentator\": [\n        \"NN\"\n    ], \n    \"pea\": [\n        \"NN\"\n    ], \n    \"anarchic\": [\n        \"JJ\"\n    ], \n    \"F18s\": [\n        \"NNS\"\n    ], \n    \"robbery\": [\n        \"NN\"\n    ], \n    \"chartists\": [\n        \"NNS\"\n    ], \n    \"Roulac\": [\n        \"NNP\"\n    ], \n    \"all-night\": [\n        \"JJ\"\n    ], \n    \"pulse-jet\": [\n        \"NN\"\n    ], \n    \"I.N.D.\": [\n        \"NNP\"\n    ], \n    \"Bledsoe\": [\n        \"NNP\"\n    ], \n    \"chanting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Elsie\": [\n        \"NNP\"\n    ], \n    \"chargeable\": [\n        \"JJ\"\n    ], \n    \"defrayed\": [\n        \"VBN\"\n    ], \n    \"engorged\": [\n        \"VBN\"\n    ], \n    \"judicial-conduct\": [\n        \"NN\"\n    ], \n    \"Banfield\": [\n        \"NNP\"\n    ], \n    \"dystopia\": [\n        \"NN\"\n    ], \n    \"Lovingood\": [\n        \"NNP\"\n    ], \n    \"robbers\": [\n        \"NNS\"\n    ], \n    \"conciliatory\": [\n        \"JJ\"\n    ], \n    \"bestseller\": [\n        \"NN\"\n    ], \n    \"beans\": [\n        \"NNS\"\n    ], \n    \"Privately\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"industrial-gas\": [\n        \"JJ\"\n    ], \n    \"Pastiche\": [\n        \"NN\"\n    ], \n    \"C.A.I.P.\": [\n        \"NNP\"\n    ], \n    \"Datsun\": [\n        \"NNP\"\n    ], \n    \"reckonings\": [\n        \"NNS\"\n    ], \n    \"code-sharing\": [\n        \"NN\"\n    ], \n    \"neutrality\": [\n        \"NN\"\n    ], \n    \"Helps\": [\n        \"VBZ\"\n    ], \n    \"STUDIES\": [\n        \"NNS\"\n    ], \n    \"uncaused\": [\n        \"JJ\"\n    ], \n    \"meet...\": [\n        \":\"\n    ], \n    \"witchcraft\": [\n        \"NN\"\n    ], \n    \"Tbilisi\": [\n        \"NNP\"\n    ], \n    \"Sleepwalkers\": [\n        \"NNS\"\n    ], \n    \"forward\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Punjab\": [\n        \"NNP\"\n    ], \n    \"doctored\": [\n        \"VBN\"\n    ], \n    \"precision-timing\": [\n        \"NN\"\n    ], \n    \"Mikulski\": [\n        \"NNP\"\n    ], \n    \"roadbuilding\": [\n        \"NN\"\n    ], \n    \"weaker\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"interagency\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nodular\": [\n        \"JJ\"\n    ], \n    \"re-enacting\": [\n        \"VBG\"\n    ], \n    \"juxtaposed\": [\n        \"VBN\"\n    ], \n    \"dueled\": [\n        \"VBD\"\n    ], \n    \"juxtaposes\": [\n        \"VBZ\"\n    ], \n    \"brain-damaged\": [\n        \"JJ\"\n    ], \n    \"pre-sale\": [\n        \"JJ\"\n    ], \n    \"Debban\": [\n        \"NNP\"\n    ], \n    \"Doing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Soon\": [\n        \"RB\"\n    ], \n    \"floppy-tie\": [\n        \"JJ\"\n    ], \n    \"Kuhlke\": [\n        \"NNP\"\n    ], \n    \"uninitiate\": [\n        \"NN\"\n    ], \n    \"circumvention\": [\n        \"NN\"\n    ], \n    \"Ohio\": [\n        \"NNP\"\n    ], \n    \"unequally\": [\n        \"RB\"\n    ], \n    \"groove\": [\n        \"NN\"\n    ], \n    \"MVP\": [\n        \"NNP\"\n    ], \n    \"Accident\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"life-like\": [\n        \"JJ\"\n    ], \n    \"congruence\": [\n        \"NN\"\n    ], \n    \"Jenco\": [\n        \"NNP\"\n    ], \n    \"spoonfuls\": [\n        \"NNS\"\n    ], \n    \"omens\": [\n        \"NNS\"\n    ], \n    \"dispensation\": [\n        \"NN\"\n    ], \n    \"revenue-law\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"semi-catatonic\": [\n        \"JJ\"\n    ], \n    \"Versailles\": [\n        \"NNP\"\n    ], \n    \"bracket\": [\n        \"NN\"\n    ], \n    \"TXO\": [\n        \"NNP\"\n    ], \n    \"fogged\": [\n        \"JJ\"\n    ], \n    \"Sumarlin\": [\n        \"NNP\"\n    ], \n    \"swamp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Rieke\": [\n        \"NNP\"\n    ], \n    \"plugged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bronchioles\": [\n        \"NNS\"\n    ], \n    \"Fiberglas\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"excrete\": [\n        \"VB\"\n    ], \n    \"Andrews\": [\n        \"NNP\"\n    ], \n    \"Ebaugh\": [\n        \"NNP\"\n    ], \n    \"aunt\": [\n        \"NN\"\n    ], \n    \"transferors\": [\n        \"NNS\"\n    ], \n    \"Cardenas\": [\n        \"NNP\"\n    ], \n    \"seventh-biggest\": [\n        \"JJ\"\n    ], \n    \"Tonkin\": [\n        \"NNP\"\n    ], \n    \"escapade\": [\n        \"NN\"\n    ], \n    \"Intercede\": [\n        \"VB\"\n    ], \n    \"aggregates\": [\n        \"NNS\"\n    ], \n    \"fished\": [\n        \"VBN\"\n    ], \n    \"fervently\": [\n        \"RB\"\n    ], \n    \"Branagan\": [\n        \"NNP\"\n    ], \n    \"oceanthermal\": [\n        \"JJ\"\n    ], \n    \"retranslated\": [\n        \"VBN\"\n    ], \n    \"Zapfel\": [\n        \"NNP\"\n    ], \n    \"amused\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Scots\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Scott\": [\n        \"NNP\"\n    ], \n    \"Worldly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"boathouses\": [\n        \"NNS\"\n    ], \n    \"Nordine\": [\n        \"NNP\"\n    ], \n    \"out-of-bounds\": [\n        \"JJ\"\n    ], \n    \"Haldeman\": [\n        \"NNP\"\n    ], \n    \"Intrepid\": [\n        \"NNP\"\n    ], \n    \"dogged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Meagher\": [\n        \"NNP\"\n    ], \n    \"front-page\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dioxins\": [\n        \"NNS\"\n    ], \n    \"Saint\": [\n        \"NNP\"\n    ], \n    \"Isle\": [\n        \"NNP\"\n    ], \n    \"Islander\": [\n        \"NNP\"\n    ], \n    \"Someone\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"waterflows\": [\n        \"NNS\"\n    ], \n    \"Weir\": [\n        \"NNP\"\n    ], \n    \"Orly\": [\n        \"NNP\"\n    ], \n    \"granular\": [\n        \"JJ\"\n    ], \n    \"Wein\": [\n        \"NNP\"\n    ], \n    \"Weil\": [\n        \"NNP\"\n    ], \n    \"Ernesto\": [\n        \"NNP\"\n    ], \n    \"Hempel\": [\n        \"NNP\"\n    ], \n    \"internment\": [\n        \"NN\"\n    ], \n    \"inject\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cortisone\": [\n        \"NN\"\n    ], \n    \"Bridewell\": [\n        \"NNP\"\n    ], \n    \"countriman\": [\n        \"NN\"\n    ], \n    \"confounding\": [\n        \"VBG\"\n    ], \n    \"Berets\": [\n        \"NNPS\"\n    ], \n    \"Telesis\": [\n        \"NNP\"\n    ], \n    \"Dirion\": [\n        \"NNP\"\n    ], \n    \"resonant\": [\n        \"JJ\"\n    ], \n    \"subservient\": [\n        \"JJ\"\n    ], \n    \"surgeon\": [\n        \"NN\"\n    ], \n    \"samovar\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"knight\": [\n        \"NN\"\n    ], \n    \"Brumbaugh\": [\n        \"NNP\"\n    ], \n    \"supine\": [\n        \"NN\"\n    ], \n    \"burlesques\": [\n        \"NNS\"\n    ], \n    \"Preparedness\": [\n        \"NN\"\n    ], \n    \"Abbot\": [\n        \"NNP\"\n    ], \n    \"mobilize\": [\n        \"VB\"\n    ], \n    \"Cesar\": [\n        \"NNP\"\n    ], \n    \"Select\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"unpublishable\": [\n        \"JJ\"\n    ], \n    \"Turkey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ovens\": [\n        \"NNS\"\n    ], \n    \"hardening\": [\n        \"VBG\"\n    ], \n    \"educators\": [\n        \"NNS\"\n    ], \n    \"antigen\": [\n        \"NN\"\n    ], \n    \"tinny\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mural\": [\n        \"NN\"\n    ], \n    \"Smalling\": [\n        \"NNP\"\n    ], \n    \"bloodshot\": [\n        \"JJ\"\n    ], \n    \"agricolas\": [\n        \"FW\"\n    ], \n    \"high-sulfur\": [\n        \"JJ\"\n    ], \n    \"WHAT\": [\n        \"WP\", \n        \"WDT\"\n    ], \n    \"WHAS\": [\n        \"NNP\"\n    ], \n    \"campuses\": [\n        \"NNS\"\n    ], \n    \"Machinist-union\": [\n        \"NNP\"\n    ], \n    \"T-34\": [\n        \"NN\"\n    ], \n    \"Johnnie\": [\n        \"NNP\"\n    ], \n    \"T-37\": [\n        \"NN\"\n    ], \n    \"T-38\": [\n        \"NN\"\n    ], \n    \"Supplemental\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"free-mail\": [\n        \"NN\"\n    ], \n    \"Weakest\": [\n        \"JJS\"\n    ], \n    \"raccoons\": [\n        \"NNS\"\n    ], \n    \"Seize\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Biscuit\": [\n        \"NNP\"\n    ], \n    \"Backstage\": [\n        \"RB\"\n    ], \n    \"nonexistent\": [\n        \"JJ\"\n    ], \n    \"bachelor\": [\n        \"NN\"\n    ], \n    \"intercept\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"puffed-up\": [\n        \"JJ\"\n    ], \n    \"Cheil\": [\n        \"NNP\"\n    ], \n    \"Unida\": [\n        \"NNP\"\n    ], \n    \"jockeys\": [\n        \"NNS\"\n    ], \n    \"Jeep-brand\": [\n        \"JJ\"\n    ], \n    \"mindset\": [\n        \"NN\"\n    ], \n    \"Unocal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Petrone\": [\n        \"NNP\"\n    ], \n    \"Storeria\": [\n        \"NNP\"\n    ], \n    \"DISAPPOINTMENTS\": [\n        \"NNS\"\n    ], \n    \"resurrect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"compellingly\": [\n        \"RB\"\n    ], \n    \"adult-literacy\": [\n        \"NN\"\n    ], \n    \"Papandreou\": [\n        \"NNP\"\n    ], \n    \"four-family\": [\n        \"JJ\"\n    ], \n    \"Conmel\": [\n        \"NNP\"\n    ], \n    \"fourth-quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kapadia\": [\n        \"NNP\"\n    ], \n    \"Chancellorsville\": [\n        \"NNP\"\n    ], \n    \"agribusiness\": [\n        \"NN\"\n    ], \n    \"Blossom\": [\n        \"NNP\"\n    ], \n    \"SMU\": [\n        \"NNP\"\n    ], \n    \"Interstate\\\\/Johnson\": [\n        \"NNP\"\n    ], \n    \"asynchrony\": [\n        \"NN\"\n    ], \n    \"beanstalk\": [\n        \"NN\"\n    ], \n    \"dudgeon\": [\n        \"NN\"\n    ], \n    \"facades\": [\n        \"NNS\"\n    ], \n    \"Manila\": [\n        \"NNP\"\n    ], \n    \"ups-and-downs\": [\n        \"NNS\"\n    ], \n    \"oval\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"resolutions\": [\n        \"NNS\"\n    ], \n    \"SMD\": [\n        \"NNP\"\n    ], \n    \"name-dropping\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Status\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"lamplight\": [\n        \"NN\"\n    ], \n    \"Barcelona-based\": [\n        \"JJ\"\n    ], \n    \"Statue\": [\n        \"NNP\"\n    ], \n    \"Declaration\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"McCaughey\": [\n        \"NNP\"\n    ], \n    \"Galway\": [\n        \"NNP\"\n    ], \n    \"Vasady\": [\n        \"NNP\"\n    ], \n    \"Single-subject\": [\n        \"JJ\"\n    ], \n    \"Kattus\": [\n        \"NNP\"\n    ], \n    \"armadillo\": [\n        \"NN\"\n    ], \n    \"ashamed\": [\n        \"JJ\"\n    ], \n    \"informally\": [\n        \"RB\"\n    ], \n    \"parapsychology\": [\n        \"NN\"\n    ], \n    \"Bulletin\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"misty-eyed\": [\n        \"JJ\"\n    ], \n    \"grandmotherly\": [\n        \"JJ\"\n    ], \n    \"RIGHTS\": [\n        \"NNS\"\n    ], \n    \"vaudeville\": [\n        \"NN\"\n    ], \n    \"REVENUE\": [\n        \"NN\"\n    ], \n    \"Period\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"nullified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"do-everything\": [\n        \"JJ\"\n    ], \n    \"celiac\": [\n        \"JJ\"\n    ], \n    \"Inconsistent\": [\n        \"JJ\"\n    ], \n    \"double-B-minus\\\\\": [\n        \"NN\"\n    ], \n    \"Impressions\": [\n        \"NNS\"\n    ], \n    \"parkway\": [\n        \"NN\"\n    ], \n    \"wooooosh\": [\n        \"NN\"\n    ], \n    \"poseur\": [\n        \"NN\"\n    ], \n    \"steel-related\": [\n        \"JJ\"\n    ], \n    \"Shining\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"pool-care\": [\n        \"JJ\"\n    ], \n    \"CONSULTING\": [\n        \"NNP\"\n    ], \n    \"whitehaired\": [\n        \"JJ\"\n    ], \n    \"Comroe\": [\n        \"NNP\"\n    ], \n    \"Goldenthal\": [\n        \"NNP\"\n    ], \n    \"flour-milling\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"second-year\": [\n        \"JJ\"\n    ], \n    \"effectively\": [\n        \"RB\"\n    ], \n    \"Galata\": [\n        \"NNP\"\n    ], \n    \"Starks\": [\n        \"NNP\"\n    ], \n    \"spruce\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"contempt\": [\n        \"NN\"\n    ], \n    \"debt-heavy\": [\n        \"JJ\"\n    ], \n    \"cinderblock\": [\n        \"NN\"\n    ], \n    \"emotionalism\": [\n        \"NN\"\n    ], \n    \"regions\": [\n        \"NNS\"\n    ], \n    \"druther\": [\n        \"VB\"\n    ], \n    \"fete\": [\n        \"VB\"\n    ], \n    \"Graciela\": [\n        \"NNP\"\n    ], \n    \"Ridgway\": [\n        \"NNP\"\n    ], \n    \"Fryar\": [\n        \"NNP\"\n    ], \n    \"aft\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"carvers\": [\n        \"NNS\"\n    ], \n    \"vitreous-china\": [\n        \"NN\"\n    ], \n    \"Cliff\": [\n        \"NNP\"\n    ], \n    \"Continuity\": [\n        \"NN\"\n    ], \n    \"Institutionalization\": [\n        \"NN\"\n    ], \n    \"Technical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"annexed\": [\n        \"VBD\"\n    ], \n    \"xxxx\": [\n        \"NN\"\n    ], \n    \"market-research\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"frenzy-free\": [\n        \"JJ\"\n    ], \n    \"UKRAINIANS\": [\n        \"NNS\"\n    ], \n    \"Japanese-South\": [\n        \"NNP\"\n    ], \n    \"cost-finding\": [\n        \"JJ\"\n    ], \n    \"Gazing\": [\n        \"VBG\"\n    ], \n    \"Freightways\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"primers\": [\n        \"NNS\"\n    ], \n    \"italics\": [\n        \"NNS\"\n    ], \n    \"Livestock\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Healy\": [\n        \"NNP\"\n    ], \n    \"MacDowell\": [\n        \"NNP\"\n    ], \n    \"Resist\": [\n        \"VB\"\n    ], \n    \"cuvees\": [\n        \"NNS\"\n    ], \n    \"stevedore\": [\n        \"NN\"\n    ], \n    \"retail-banking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"minivan\": [\n        \"NN\"\n    ], \n    \"fallback\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hausman\": [\n        \"NNP\"\n    ], \n    \"HUGO\": [\n        \"NNP\"\n    ], \n    \"deliberative\": [\n        \"JJ\"\n    ], \n    \"Dunbar\": [\n        \"NNP\"\n    ], \n    \"in-house\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"downtime\": [\n        \"NN\"\n    ], \n    \"Pherwani\": [\n        \"NNP\"\n    ], \n    \"hugged\": [\n        \"VBD\"\n    ], \n    \"lands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Shangri-La\": [\n        \"NNP\"\n    ], \n    \"bow-tied\": [\n        \"JJ\"\n    ], \n    \"Hermann\": [\n        \"NNP\"\n    ], \n    \"American-trained\": [\n        \"JJ\"\n    ], \n    \"Hindle\": [\n        \"NNP\"\n    ], \n    \"band-wagon\": [\n        \"JJ\"\n    ], \n    \"sic\": [\n        \"RB\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"Schedule\": [\n        \"NNP\"\n    ], \n    \"boy-meets-girl\": [\n        \"NN\"\n    ], \n    \"lampposts\": [\n        \"NNS\"\n    ], \n    \"acres\": [\n        \"NNS\"\n    ], \n    \"resorting\": [\n        \"VBG\"\n    ], \n    \"latitude\": [\n        \"NN\"\n    ], \n    \"farm-trade\": [\n        \"JJ\"\n    ], \n    \"Presbyterian-St\": [\n        \"JJ|NP\"\n    ], \n    \"Pembridge\": [\n        \"NNP\"\n    ], \n    \"unnerved\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Stricken\": [\n        \"NNP\"\n    ], \n    \"phagocytes\": [\n        \"NNS\"\n    ], \n    \"repassed\": [\n        \"VBN\"\n    ], \n    \"Hard-hitting\": [\n        \"JJ\"\n    ], \n    \"GMAC\": [\n        \"NNP\"\n    ], \n    \"institutionally\": [\n        \"RB\"\n    ], \n    \"doffing\": [\n        \"VBG\"\n    ], \n    \"Churpek\": [\n        \"NNP\"\n    ], \n    \"Adobe\": [\n        \"NNP\"\n    ], \n    \"Unemployment\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ahdawam\": [\n        \"UH\"\n    ], \n    \"Baltimore-Washington\": [\n        \"NNP\"\n    ], \n    \"Uyl\": [\n        \"NNP\"\n    ], \n    \"slipping\": [\n        \"VBG\"\n    ], \n    \"vivified\": [\n        \"VBN\"\n    ], \n    \"LaRosa\": [\n        \"NNP\"\n    ], \n    \"reintroducing\": [\n        \"VBG\"\n    ], \n    \"Previous\": [\n        \"JJ\"\n    ], \n    \"Ghost\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Whaley\": [\n        \"NNP\"\n    ], \n    \"thwart\": [\n        \"VB\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"transported\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Whaler\": [\n        \"NNP\"\n    ], \n    \"programmed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Sino-Soviet\": [\n        \"JJ\"\n    ], \n    \"live-oak\": [\n        \"NN\"\n    ], \n    \"Mercers\": [\n        \"NNPS\"\n    ], \n    \"programmes\": [\n        \"NNS\"\n    ], \n    \"most-valuable\": [\n        \"JJ\"\n    ], \n    \"Rotterdam\": [\n        \"NNP\"\n    ], \n    \"Westland\": [\n        \"NNP\"\n    ], \n    \"defend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Sussex\": [\n        \"NNP\"\n    ], \n    \"Tut\": [\n        \"NNP\"\n    ], \n    \"magic-practicing\": [\n        \"JJ\"\n    ], \n    \"opining\": [\n        \"VBG\"\n    ], \n    \"rec\": [\n        \"NN\"\n    ], \n    \"electronics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"red\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"franc\": [\n        \"NN\"\n    ], \n    \"Magwitch\": [\n        \"NNP\"\n    ], \n    \"Aitken\": [\n        \"NNP\"\n    ], \n    \"aflatoxin\": [\n        \"NN\"\n    ], \n    \"retrieved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"consortiums\": [\n        \"NNS\"\n    ], \n    \"soreheads\": [\n        \"NNS\"\n    ], \n    \"Theodor\": [\n        \"NNP\"\n    ], \n    \"chattily\": [\n        \"RB\"\n    ], \n    \"EXPECT\": [\n        \"VBP\"\n    ], \n    \"trends\": [\n        \"NNS\"\n    ], \n    \"Turbofan\": [\n        \"NN\"\n    ], \n    \"Buffalo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"retriever\": [\n        \"NN\"\n    ], \n    \"power-hitter\": [\n        \"NN\"\n    ], \n    \"cured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Multi-employer\": [\n        \"JJ\"\n    ], \n    \"cures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"taxable-fund\": [\n        \"JJ\"\n    ], \n    \"imput\": [\n        \"NN\"\n    ], \n    \"Operators\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"strippers\": [\n        \"NNS\"\n    ], \n    \"STEEL\": [\n        \"NNP\"\n    ], \n    \"plastics\": [\n        \"NNS\"\n    ], \n    \"dusty-green\": [\n        \"JJ\"\n    ], \n    \"hay-fever\": [\n        \"NN\"\n    ], \n    \"embarrassed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"hurdle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Birdwood\": [\n        \"NNP\"\n    ], \n    \"rusticated\": [\n        \"VBN\"\n    ], \n    \"afield\": [\n        \"RB\"\n    ], \n    \"Hans-Ulrich\": [\n        \"NNP\"\n    ], \n    \"splotched\": [\n        \"JJ\"\n    ], \n    \"data-processing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"non-Christians\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"ripples\": [\n        \"NNS\"\n    ], \n    \"realistically\": [\n        \"RB\"\n    ], \n    \"talkfest\": [\n        \"NN\"\n    ], \n    \"rippled\": [\n        \"VBD\"\n    ], \n    \"wistfully\": [\n        \"RB\"\n    ], \n    \"less-traveled\": [\n        \"JJ\"\n    ], \n    \"Warhol\": [\n        \"NNP\"\n    ], \n    \"Kilty\": [\n        \"NNP\"\n    ], \n    \"strongman\": [\n        \"NN\"\n    ], \n    \"Deacon\": [\n        \"NNP\"\n    ], \n    \"environmental\": [\n        \"JJ\"\n    ], \n    \"sporadically\": [\n        \"RB\"\n    ], \n    \"absent-minded\": [\n        \"JJ\"\n    ], \n    \"Battle-tested\": [\n        \"JJ\"\n    ], \n    \"Pesaro\": [\n        \"NNP\"\n    ], \n    \"non-executive\": [\n        \"JJ\"\n    ], \n    \"plumage\": [\n        \"NN\"\n    ], \n    \"slack\": [\n        \"JJ\", \n        \"VB\", \n        \"NN\"\n    ], \n    \"Sabha\": [\n        \"NNP\"\n    ], \n    \"shrapnel\": [\n        \"NN\"\n    ], \n    \"Low-flying\": [\n        \"JJ\"\n    ], \n    \"shampoo\": [\n        \"NN\"\n    ], \n    \"splotches\": [\n        \"NNS\"\n    ], \n    \"MATTEL\": [\n        \"NNP\"\n    ], \n    \"calamity\": [\n        \"NN\"\n    ], \n    \"boyish\": [\n        \"JJ\"\n    ], \n    \"Engineer\": [\n        \"NNP\"\n    ], \n    \"Moiseyeva\": [\n        \"NNP\"\n    ], \n    \"NUCLEAR\": [\n        \"NN\"\n    ], \n    \"Lech\": [\n        \"NNP\"\n    ], \n    \"two-year-long\": [\n        \"JJ\"\n    ], \n    \"patting\": [\n        \"VBG\"\n    ], \n    \"discussions\": [\n        \"NNS\"\n    ], \n    \"Rudnick\": [\n        \"NNP\"\n    ], \n    \"thyroidal\": [\n        \"JJ\"\n    ], \n    \"handsets\": [\n        \"NNS\"\n    ], \n    \"X-linked\": [\n        \"JJ\"\n    ], \n    \"Nugent\": [\n        \"NNP\"\n    ], \n    \"lawmkers\": [\n        \"NNS\"\n    ], \n    \"MLSS\": [\n        \"NN\"\n    ], \n    \"safety-related\": [\n        \"JJ\"\n    ], \n    \"debt-reduction\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"KnowledgeWare\": [\n        \"NNP\"\n    ], \n    \"Airways\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Goldman\": [\n        \"NNP\"\n    ], \n    \"Hitching\": [\n        \"VBG\"\n    ], \n    \"Flem\": [\n        \"NNP\"\n    ], \n    \"program-related\": [\n        \"JJ\"\n    ], \n    \"Flea\": [\n        \"NNP\"\n    ], \n    \"doubleheader\": [\n        \"NN\"\n    ], \n    \"Flee\": [\n        \"VBP\"\n    ], \n    \"mooring\": [\n        \"NN\"\n    ], \n    \"Nikes\": [\n        \"NNPS\"\n    ], \n    \"HOME-SALE\": [\n        \"JJ\"\n    ], \n    \"hazel\": [\n        \"JJ\"\n    ], \n    \"Cheri\": [\n        \"NNP\"\n    ], \n    \"tartan-patterned\": [\n        \"JJ\"\n    ], \n    \"diathermy\": [\n        \"NN\"\n    ], \n    \"WACS\": [\n        \"NNPS\"\n    ], \n    \"Matteson\": [\n        \"NNP\"\n    ], \n    \"tax-writing\": [\n        \"JJ\"\n    ], \n    \"W.E.\": [\n        \"NNP\"\n    ], \n    \"heartening\": [\n        \"JJ\"\n    ], \n    \"Illustrated\": [\n        \"NNP\"\n    ], \n    \"Mohamad\": [\n        \"NNP\"\n    ], \n    \"discursive\": [\n        \"JJ\"\n    ], \n    \"absurd\": [\n        \"JJ\"\n    ], \n    \"trobles\": [\n        \"NNS\"\n    ], \n    \"planks\": [\n        \"NNS\"\n    ], \n    \"SMALL-BUSINESS\": [\n        \"NN\"\n    ], \n    \"Sansui\": [\n        \"NNP\"\n    ], \n    \"Irrawaddy\": [\n        \"NNP\"\n    ], \n    \"overhangs\": [\n        \"NNS\"\n    ], \n    \"Straighten\": [\n        \"VB\"\n    ], \n    \"rusted\": [\n        \"JJ\"\n    ], \n    \"chevre\": [\n        \"NN\"\n    ], \n    \"Unconscionable\": [\n        \"JJ\"\n    ], \n    \"coloring\": [\n        \"NN\"\n    ], \n    \"debacles\": [\n        \"NNS\"\n    ], \n    \"hydroelectric\": [\n        \"JJ\"\n    ], \n    \"Yoshimoto\": [\n        \"NNP\"\n    ], \n    \"anthropic\": [\n        \"JJ\"\n    ], \n    \"Complaints\": [\n        \"NNS\"\n    ], \n    \"SOUTHERN\": [\n        \"NNP\"\n    ], \n    \"equilibrium\": [\n        \"NN\"\n    ], \n    \"Sgt.\": [\n        \"NNP\"\n    ], \n    \"chairmanships\": [\n        \"NNS\"\n    ], \n    \"Reversal\": [\n        \"NNP\"\n    ], \n    \"bat-roost\": [\n        \"JJ\"\n    ], \n    \"thrived\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Matsui\": [\n        \"NNP\"\n    ], \n    \"can..\": [\n        \"MD\"\n    ], \n    \"SAVINGS\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"gardenettes\": [\n        \"NNS\"\n    ], \n    \"timing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"thrives\": [\n        \"VBZ\"\n    ], \n    \"areas\": [\n        \"NNS\", \n        \"VBN\"\n    ], \n    \"crabs\": [\n        \"NNS\"\n    ], \n    \"Back-of-the-envelope\": [\n        \"JJ\"\n    ], \n    \"organ\": [\n        \"NN\"\n    ], \n    \"king-sized\": [\n        \"JJ\"\n    ], \n    \"eyebrow\": [\n        \"NN\"\n    ], \n    \"excreted\": [\n        \"VBN\"\n    ], \n    \"Pistol-whipping\": [\n        \"IN\"\n    ], \n    \"Oriental\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"dissolves\": [\n        \"VBZ\"\n    ], \n    \"Ca.\": [\n        \"NNP\"\n    ], \n    \"madam\": [\n        \"NN\"\n    ], \n    \"debt-limit\": [\n        \"NN\"\n    ], \n    \"farthest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"heightens\": [\n        \"VBZ\"\n    ], \n    \"subsidizing\": [\n        \"VBG\"\n    ], \n    \"preprinting\": [\n        \"NN\"\n    ], \n    \"Symes\": [\n        \"NNP\"\n    ], \n    \"yearning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"scholastic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"refrained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lotter\": [\n        \"NN\"\n    ], \n    \"Talmadge\": [\n        \"NNP\"\n    ], \n    \"Boil\": [\n        \"VB\"\n    ], \n    \"kinesthetically\": [\n        \"RB\"\n    ], \n    \"Dnieper\": [\n        \"NNP\"\n    ], \n    \"exploited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"respiration...\": [\n        \":\"\n    ], \n    \"cheaters\": [\n        \"NNS\"\n    ], \n    \"ex-reporters\": [\n        \"NNS\"\n    ], \n    \"purses\": [\n        \"NNS\"\n    ], \n    \"exploiter\": [\n        \"NN\"\n    ], \n    \"homogenate\": [\n        \"NN\"\n    ], \n    \"pursed\": [\n        \"VBD\"\n    ], \n    \"July\": [\n        \"NNP\"\n    ], \n    \"Keye\\\\/Donna\\\\/Pearlstein\": [\n        \"NN\"\n    ], \n    \"Avedisian\": [\n        \"NNP\"\n    ], \n    \"grumble\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Sabinson\": [\n        \"NNP\"\n    ], \n    \"jeopardizing\": [\n        \"VBG\"\n    ], \n    \"propulsions\": [\n        \"NNS\"\n    ], \n    \"Axa\": [\n        \"NNP\"\n    ], \n    \"Axe\": [\n        \"NNP\"\n    ], \n    \"Gagarin\": [\n        \"NNP\"\n    ], \n    \"professional-design\": [\n        \"JJ\"\n    ], \n    \"optional\": [\n        \"JJ\"\n    ], \n    \"Crary\": [\n        \"NNP\"\n    ], \n    \"Juergen\": [\n        \"NNP\"\n    ], \n    \"deadlock\": [\n        \"NN\"\n    ], \n    \"instant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"robberies\": [\n        \"NNS\"\n    ], \n    \"provincial\": [\n        \"JJ\"\n    ], \n    \"Olshan\": [\n        \"NNP\"\n    ], \n    \"predispose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"dBase\": [\n        \"NNP\"\n    ], \n    \"conquered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"passing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"glorious\": [\n        \"JJ\"\n    ], \n    \"UMW\": [\n        \"NNP\"\n    ], \n    \"underhandedness\": [\n        \"NN\"\n    ], \n    \"alphabetically\": [\n        \"RB\"\n    ], \n    \"unventilated\": [\n        \"VBN\"\n    ], \n    \"Savannakhet\": [\n        \"NNP\"\n    ], \n    \"Magpie\": [\n        \"NNP\"\n    ], \n    \"rocket-fuel\": [\n        \"NN\"\n    ], \n    \"seashores\": [\n        \"NNS\"\n    ], \n    \"laugh\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Run-down\": [\n        \"JJ\"\n    ], \n    \"Weird\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"instigators\": [\n        \"NNS\"\n    ], \n    \"deliberation\": [\n        \"NN\"\n    ], \n    \"piecewise\": [\n        \"RB\"\n    ], \n    \"Lithuanian\": [\n        \"JJ\"\n    ], \n    \"Salmon\": [\n        \"NNP\"\n    ], \n    \"rpm\": [\n        \"NN\"\n    ], \n    \"Electro-Optical\": [\n        \"NNP\"\n    ], \n    \"kitchen\": [\n        \"NN\"\n    ], \n    \"Corot\": [\n        \"NNP\"\n    ], \n    \"perennially\": [\n        \"RB\"\n    ], \n    \"asymmetrically\": [\n        \"RB\"\n    ], \n    \"arises\": [\n        \"VBZ\"\n    ], \n    \"perplexed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"America\\\\/International\": [\n        \"NNP\"\n    ], \n    \"arisen\": [\n        \"VBN\"\n    ], \n    \"atmospheric\": [\n        \"JJ\"\n    ], \n    \"censuses\": [\n        \"NNS\"\n    ], \n    \"contradicted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Appignanesi\": [\n        \"NNP\"\n    ], \n    \"Blockbuster\": [\n        \"NNP\"\n    ], \n    \"Chicago-centric\": [\n        \"JJ\"\n    ], \n    \"Jacobs\": [\n        \"NNP\"\n    ], \n    \"likable\": [\n        \"JJ\"\n    ], \n    \"prosy\": [\n        \"JJ\"\n    ], \n    \"ornithology\": [\n        \"NN\"\n    ], \n    \"Jacoby\": [\n        \"NNP\"\n    ], \n    \"blood\": [\n        \"NN\"\n    ], \n    \"paper-manufacturing\": [\n        \"JJ\"\n    ], \n    \"CD-type\": [\n        \"JJ\"\n    ], \n    \"Bellcore\": [\n        \"NNP\"\n    ], \n    \"Wrongs\": [\n        \"NNS\"\n    ], \n    \"haunches\": [\n        \"NNS\"\n    ], \n    \"prose\": [\n        \"NN\"\n    ], \n    \"portray\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cristiani\": [\n        \"NNP\"\n    ], \n    \"untoward\": [\n        \"JJ\"\n    ], \n    \"progressing\": [\n        \"VBG\"\n    ], \n    \"indistinguishable\": [\n        \"JJ\"\n    ], \n    \"plenipotentiary\": [\n        \"NN\"\n    ], \n    \"Car\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"shuttle\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Herzfeld\": [\n        \"NNP\"\n    ], \n    \"Orden\": [\n        \"NNP\"\n    ], \n    \"Lombarde\": [\n        \"NNP\"\n    ], \n    \"material\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"TURMOIL\": [\n        \"NN\"\n    ], \n    \"Lombardo\": [\n        \"NNP\"\n    ], \n    \"Dusseldorf\": [\n        \"NNP\"\n    ], \n    \"Lombardi\": [\n        \"NNP\"\n    ], \n    \"bullying\": [\n        \"VBG\"\n    ], \n    \"assessing\": [\n        \"VBG\"\n    ], \n    \"flew\": [\n        \"VBD\"\n    ], \n    \"neckline\": [\n        \"NN\"\n    ], \n    \"ante-bellum\": [\n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Order\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"besmirch\": [\n        \"VB\"\n    ], \n    \"uncombable\": [\n        \"JJ\"\n    ], \n    \"center\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"around-the-clock\": [\n        \"JJ\"\n    ], \n    \"roughhewn\": [\n        \"JJ\"\n    ], \n    \"overshadowed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"householder\": [\n        \"NN\"\n    ], \n    \"Globally\": [\n        \"RB\"\n    ], \n    \"retiring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"supercharged\": [\n        \"JJ\"\n    ], \n    \"oops\": [\n        \"UH\"\n    ], \n    \"publicize\": [\n        \"VB\"\n    ], \n    \"restuarant\": [\n        \"JJ\"\n    ], \n    \"fixated\": [\n        \"VBN\"\n    ], \n    \"reupholstering\": [\n        \"VBG\"\n    ], \n    \"Ragsdale\": [\n        \"NNP\"\n    ], \n    \"granddad\": [\n        \"NN\"\n    ], \n    \"Sirot\": [\n        \"NNP\"\n    ], \n    \"super-absorbent\": [\n        \"JJ\"\n    ], \n    \"Seaman\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"Abscam-indicted\": [\n        \"JJ\"\n    ], \n    \"books\": [\n        \"NNS\", \n        \"NN|POS\"\n    ], \n    \"surpass\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"seats\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Scraps\": [\n        \"NNS\"\n    ], \n    \"anye\": [\n        \"JJ\"\n    ], \n    \"raves\": [\n        \"VBZ\"\n    ], \n    \"swig\": [\n        \"NN\"\n    ], \n    \"field\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"area-wide\": [\n        \"JJ\"\n    ], \n    \"Kamehameha\": [\n        \"NNP\"\n    ], \n    \"bluebonnets\": [\n        \"NNS\"\n    ], \n    \"bench\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"adminstrative\": [\n        \"JJ\"\n    ], \n    \"bogey-symbol\": [\n        \"NN\"\n    ], \n    \"foreign-policy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"raved\": [\n        \"VBD\"\n    ], \n    \"citizen\": [\n        \"NN\"\n    ], \n    \"Comparable-store\": [\n        \"JJ\"\n    ], \n    \"Aqazadeh\": [\n        \"NNP\"\n    ], \n    \"Greenwood\": [\n        \"NNP\"\n    ], \n    \"tests\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"haltingly\": [\n        \"RB\"\n    ], \n    \"worlds\": [\n        \"NNS\"\n    ], \n    \"testy\": [\n        \"JJ\"\n    ], \n    \"repulsions\": [\n        \"NNS\"\n    ], \n    \"deployment\": [\n        \"NN\"\n    ], \n    \"condescending\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Mennen\": [\n        \"NNP\"\n    ], \n    \"Tarantino\": [\n        \"NNP\"\n    ], \n    \"incompletely\": [\n        \"RB\"\n    ], \n    \"noncommunist\": [\n        \"NN\"\n    ], \n    \"housekeeper\": [\n        \"NN\"\n    ], \n    \"newly-appointed\": [\n        \"JJ\"\n    ], \n    \"porous\": [\n        \"JJ\"\n    ], \n    \"commencements\": [\n        \"NNS\"\n    ], \n    \"Darvocet-N\": [\n        \"NNP\"\n    ], \n    \"corporativists\": [\n        \"NNS\"\n    ], \n    \"Laundered\": [\n        \"VBN\"\n    ], \n    \"BVI\": [\n        \"NNP\"\n    ], \n    \"works\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lucidly\": [\n        \"RB\"\n    ], \n    \"imprints\": [\n        \"NNS\"\n    ], \n    \"graphic-arts\": [\n        \"NNS\"\n    ], \n    \"mushroomed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mineola\": [\n        \"NNP\"\n    ], \n    \"president\\\\/finance\": [\n        \"NN\"\n    ], \n    \"majeure\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"whiner\": [\n        \"NN\"\n    ], \n    \"deviants\": [\n        \"NNS\"\n    ], \n    \"Editor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"legislated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mukherjee\": [\n        \"NNP\"\n    ], \n    \"job-hunters\": [\n        \"NNS\"\n    ], \n    \"whined\": [\n        \"VBD\"\n    ], \n    \"Hardball\": [\n        \"NNP\"\n    ], \n    \"Mike\": [\n        \"NNP\"\n    ], \n    \"est\": [\n        \"FW\"\n    ], \n    \"encouraging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"obsessed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"dunes\": [\n        \"NNS\"\n    ], \n    \"biotechnology-based\": [\n        \"JJ\"\n    ], \n    \"cents-off\": [\n        \"JJ\"\n    ], \n    \"Wenger\": [\n        \"NNP\"\n    ], \n    \"kidnappers\": [\n        \"NNS\"\n    ], \n    \"panes\": [\n        \"NNS\"\n    ], \n    \"lumpen-intellectual\": [\n        \"JJ\"\n    ], \n    \"manifesting\": [\n        \"VBG\"\n    ], \n    \"electrical-safety\": [\n        \"JJ\"\n    ], \n    \"Glenham\": [\n        \"NNP\"\n    ], \n    \"snapper\": [\n        \"NN\"\n    ], \n    \"Newarker\": [\n        \"NNP\"\n    ], \n    \"Lousy\": [\n        \"JJ\"\n    ], \n    \"snapped\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"ORDERED\": [\n        \"VBN\"\n    ], \n    \"well-informed\": [\n        \"JJ\"\n    ], \n    \"InterVoice\": [\n        \"NNP\"\n    ], \n    \"panel\": [\n        \"NN\"\n    ], \n    \"E.M.\": [\n        \"NNP\"\n    ], \n    \"radio-controlled\": [\n        \"JJ\"\n    ], \n    \"distilling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"smartly\": [\n        \"RB\"\n    ], \n    \"sea-transport\": [\n        \"JJ\"\n    ], \n    \"comet-like\": [\n        \"JJ\"\n    ], \n    \"Rucellai\": [\n        \"NNP\"\n    ], \n    \"Financially\": [\n        \"RB\"\n    ], \n    \"large-deposit\": [\n        \"JJ\"\n    ], \n    \"Questions\": [\n        \"NNS\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Bessie\": [\n        \"NNP\"\n    ], \n    \"predictor\": [\n        \"NN\"\n    ], \n    \"baseless\": [\n        \"JJ\"\n    ], \n    \"Law-enforcement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rendered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"varitinted\": [\n        \"JJ\"\n    ], \n    \"State-Local\": [\n        \"NNP\"\n    ], \n    \"public-health\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rhythmical\": [\n        \"JJ\"\n    ], \n    \"billions\": [\n        \"NNS\"\n    ], \n    \"lacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"weekends\": [\n        \"NNS\"\n    ], \n    \"eine\": [\n        \"FW\"\n    ], \n    \"calorie-heavy\": [\n        \"JJ\"\n    ], \n    \"earnings-driven\": [\n        \"JJ\"\n    ], \n    \"Single-occupancy\": [\n        \"NN\"\n    ], \n    \"enticed\": [\n        \"VBD\"\n    ], \n    \"Owens-Corning\": [\n        \"NNP\"\n    ], \n    \"growth-controlling\": [\n        \"JJ\"\n    ], \n    \"AGAIN\": [\n        \"RB\"\n    ], \n    \"buy\": [\n        \"VB\", \n        \"VBP\", \n        \"VB|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"co-anchored\": [\n        \"VBN\"\n    ], \n    \"bus\": [\n        \"NN\"\n    ], \n    \"Der\": [\n        \"NNP\"\n    ], \n    \"Losses\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Paperboard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"but\": [\n        \"CC\", \n        \"IN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"shute\": [\n        \"VB\"\n    ], \n    \"authenticator\": [\n        \"NN\"\n    ], \n    \"Dei\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Del\": [\n        \"NNP\"\n    ], \n    \"Den\": [\n        \"NNP\"\n    ], \n    \"Deo\": [\n        \"NNP\"\n    ], \n    \"first-floor\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Deb\": [\n        \"NNP\"\n    ], \n    \"Dec\": [\n        \"NNP\"\n    ], \n    \"Dee\": [\n        \"NNP\"\n    ], \n    \"Def\": [\n        \"NNP\"\n    ], \n    \"embargo\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"misty\": [\n        \"JJ\"\n    ], \n    \"princes\": [\n        \"NNS\"\n    ], \n    \"Salant\": [\n        \"NNP\"\n    ], \n    \"frugally\": [\n        \"RB\"\n    ], \n    \"breweries\": [\n        \"NNS\"\n    ], \n    \"Albertine\": [\n        \"NNP\"\n    ], \n    \"Salang\": [\n        \"NNP\"\n    ], \n    \"minutes\": [\n        \"NNS\"\n    ], \n    \"moralizing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"windless\": [\n        \"JJ\"\n    ], \n    \"probaby\": [\n        \"NN\"\n    ], \n    \"air-quality\": [\n        \"NN\"\n    ], \n    \"airmen\": [\n        \"NNS\"\n    ], \n    \"Meantime\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"wide-eyed\": [\n        \"JJ\"\n    ], \n    \"Hofstad\": [\n        \"NNP\"\n    ], \n    \"Dunkirk\": [\n        \"NNP\"\n    ], \n    \"Euromarket\": [\n        \"NNP\"\n    ], \n    \"Marches\": [\n        \"NNPS\"\n    ], \n    \"Shvets\": [\n        \"NNP\"\n    ], \n    \"virtual\": [\n        \"JJ\"\n    ], \n    \"shearing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Worker\": [\n        \"NNP\"\n    ], \n    \"ledge\": [\n        \"NN\"\n    ], \n    \"Altogether\": [\n        \"RB\"\n    ], \n    \"Phase\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"I...\": [\n        \":\"\n    ], \n    \"Aca\": [\n        \"NNP\"\n    ], \n    \"greater-fool\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Annihilate\": [\n        \"VB\"\n    ], \n    \"Ace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"brainlessly\": [\n        \"RB\"\n    ], \n    \"Jerebohms\": [\n        \"NNP\"\n    ], \n    \"glacier-like\": [\n        \"JJ\"\n    ], \n    \"weaponry\": [\n        \"NN\"\n    ], \n    \"Act\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Zhitkov\": [\n        \"NNP\"\n    ], \n    \"McFall\": [\n        \"NNP\"\n    ], \n    \"Scotchgard\": [\n        \"NNP\"\n    ], \n    \"godsend\": [\n        \"NN\"\n    ], \n    \"solution-type\": [\n        \"JJ\"\n    ], \n    \"contraceptive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"deluxe\": [\n        \"JJ\"\n    ], \n    \"Ashurst\": [\n        \"NNP\"\n    ], \n    \"test-preparation\": [\n        \"JJ\"\n    ], \n    \"Stock-loan\": [\n        \"NN\"\n    ], \n    \"winders\": [\n        \"NNS\"\n    ], \n    \"pupil\": [\n        \"NN\"\n    ], \n    \"AYER\": [\n        \"NNP\"\n    ], \n    \"Scandal\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"augmented\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"low-load\": [\n        \"JJ\"\n    ], \n    \"Pacemakers\": [\n        \"NNPS\"\n    ], \n    \"state-supported\": [\n        \"JJ\"\n    ], \n    \"represent\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"twice-extended\": [\n        \"JJ\"\n    ], \n    \"liar\": [\n        \"NN\"\n    ], \n    \"dere\": [\n        \"NN\"\n    ], \n    \"revoking\": [\n        \"VBG\"\n    ], \n    \"Uhl\": [\n        \"NNP\"\n    ], \n    \"poorest\": [\n        \"JJS\"\n    ], \n    \"adoption-business\": [\n        \"NN\"\n    ], \n    \"Grumman\": [\n        \"NNP\"\n    ], \n    \"Additionally\": [\n        \"RB\"\n    ], \n    \"non-consolidated\": [\n        \"JJ\"\n    ], \n    \"tweed\": [\n        \"NN\"\n    ], \n    \"pride\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Merabank\": [\n        \"NNP\"\n    ], \n    \"placated\": [\n        \"VBN\"\n    ], \n    \"Unpopular\": [\n        \"JJ\"\n    ], \n    \"nonresident\": [\n        \"JJ\"\n    ], \n    \"Pilgrim\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pilgrin\": [\n        \"NNP\"\n    ], \n    \"human-robot\": [\n        \"NN\"\n    ], \n    \"Industry\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"despondency\": [\n        \"NN\"\n    ], \n    \"Metzler\": [\n        \"NNP\"\n    ], \n    \"position-squaring\": [\n        \"NN\"\n    ], \n    \"every\": [\n        \"DT\"\n    ], \n    \"softened\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"upstream\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Durenberger\": [\n        \"NNP\"\n    ], \n    \"Industri\": [\n        \"NNP\"\n    ], \n    \"Steak\": [\n        \"NNP\"\n    ], \n    \"Steam\": [\n        \"NN\"\n    ], \n    \"Origin\": [\n        \"NN\"\n    ], \n    \"Presence\": [\n        \"NNP\"\n    ], \n    \"ovation\": [\n        \"NN\"\n    ], \n    \"Archipelago\": [\n        \"NNP\"\n    ], \n    \"Hanover-Misty\": [\n        \"NNP\"\n    ], \n    \"phonebook\": [\n        \"NN\"\n    ], \n    \"Hemphill\": [\n        \"NNP\"\n    ], \n    \"make-work\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MacNamara\": [\n        \"NNP\"\n    ], \n    \"joggers\": [\n        \"NNS\"\n    ], \n    \"Batchelor\": [\n        \"NNP\"\n    ], \n    \"Shareholders\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"picketed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cooperative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Arab-Israeli\": [\n        \"JJ\"\n    ], \n    \"Express-Buick\": [\n        \"NNP\"\n    ], \n    \"Sokolov\": [\n        \"NNP\"\n    ], \n    \"weddings\": [\n        \"NNS\"\n    ], \n    \"estimates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Rash\": [\n        \"NNP\"\n    ], \n    \"crocketed\": [\n        \"JJ\"\n    ], \n    \"persuade\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cosgrove\": [\n        \"NNP\"\n    ], \n    \"freehand\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"estimated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Burroughs\": [\n        \"NNP\"\n    ], \n    \"Obsolescence\": [\n        \"NNP\"\n    ], \n    \"allowances\": [\n        \"NNS\"\n    ], \n    \"third-class\": [\n        \"JJ\"\n    ], \n    \"rustler-hunter\": [\n        \"NN\"\n    ], \n    \"specification\": [\n        \"NN\"\n    ], \n    \"Continuous\": [\n        \"JJ\"\n    ], \n    \"sheeted\": [\n        \"JJ\"\n    ], \n    \"morbid-minded\": [\n        \"JJ\"\n    ], \n    \"Hachuel\": [\n        \"NNP\"\n    ], \n    \"smidgins\": [\n        \"NNS\"\n    ], \n    \"conduct\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"streetcars\": [\n        \"NNS\"\n    ], \n    \"injections\": [\n        \"NNS\"\n    ], \n    \"city-trading\": [\n        \"NN\"\n    ], \n    \"pats\": [\n        \"NNS\"\n    ], \n    \"Indonesia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bearishly\": [\n        \"RB\"\n    ], \n    \"Holiness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"stared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"market-oriented\": [\n        \"JJ\"\n    ], \n    \"transmits\": [\n        \"VBZ\"\n    ], \n    \"Ferraro\": [\n        \"NNP\"\n    ], \n    \"Ferrari\": [\n        \"NNP\"\n    ], \n    \"contentions\": [\n        \"NNS\"\n    ], \n    \"bulks\": [\n        \"VBZ\"\n    ], \n    \"path\": [\n        \"NN\"\n    ], \n    \"stares\": [\n        \"NNS\"\n    ], \n    \"Ferrara\": [\n        \"NNP\"\n    ], \n    \"orthodoxy\": [\n        \"NN\"\n    ], \n    \"reversals\": [\n        \"NNS\"\n    ], \n    \"Herwig\": [\n        \"NNP\"\n    ], \n    \"connoisseur\": [\n        \"NN\"\n    ], \n    \"Coddington\": [\n        \"NNP\"\n    ], \n    \"auction\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Hoof\": [\n        \"NNP\"\n    ], \n    \"proportioned\": [\n        \"JJ\"\n    ], \n    \"Pieces\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Engaging\": [\n        \"VBG\"\n    ], \n    \"characterizing\": [\n        \"VBG\"\n    ], \n    \"monogamous\": [\n        \"JJ\"\n    ], \n    \"pay-back\": [\n        \"JJ\"\n    ], \n    \"vacations\": [\n        \"NNS\"\n    ], \n    \"Idrissa\": [\n        \"NNP\"\n    ], \n    \"tie-in\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"touchdowns\": [\n        \"NNS\"\n    ], \n    \"charisma\": [\n        \"NN\"\n    ], \n    \"visibly\": [\n        \"RB\"\n    ], \n    \"anticus\": [\n        \"NN\"\n    ], \n    \"visible\": [\n        \"JJ\"\n    ], \n    \"Kids\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"protein-1\": [\n        \"NN\"\n    ], \n    \"Leech\": [\n        \"NNP\"\n    ], \n    \"Minority\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Housed\": [\n        \"VBN\"\n    ], \n    \"privet\": [\n        \"NN\"\n    ], \n    \"discrepancies\": [\n        \"NNS\"\n    ], \n    \"Houses\": [\n        \"NNS\"\n    ], \n    \"government-mandated\": [\n        \"JJ\"\n    ], \n    \"Interfunding\": [\n        \"NNP\"\n    ], \n    \"Grimesby\": [\n        \"NNP\"\n    ], \n    \"acceded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"microwavable\": [\n        \"JJ\"\n    ], \n    \"minicrash\": [\n        \"NN\"\n    ], \n    \"mV\": [\n        \"NN\"\n    ], \n    \"corporis\": [\n        \"FW\"\n    ], \n    \"casualties\": [\n        \"NNS\"\n    ], \n    \"mother.\": [\n        \"NN\"\n    ], \n    \"cerebellum\": [\n        \"NN\"\n    ], \n    \"Stanger\": [\n        \"NNP\"\n    ], \n    \"mg\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ma\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"mm\": [\n        \"NN\"\n    ], \n    \"ml\": [\n        \"NN\"\n    ], \n    \"mo\": [\n        \"NN\"\n    ], \n    \"Alternatives\": [\n        \"NNP\"\n    ], \n    \"WBBM-TV\": [\n        \"NNP\"\n    ], \n    \"Bramalea\": [\n        \"NNP\"\n    ], \n    \"my\": [\n        \"PRP$\", \n        \"UH\", \n        \"PRP\", \n        \"JJ\"\n    ], \n    \"quarrel\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mnemonic\": [\n        \"JJ\"\n    ], \n    \"Sark\": [\n        \"NNP\"\n    ], \n    \"autoloader\": [\n        \"NN\"\n    ], \n    \"high-sounding\": [\n        \"JJ\"\n    ], \n    \"then-Treasury\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Gutfreunds\": [\n        \"NNPS\"\n    ], \n    \"Motel\": [\n        \"NNP\"\n    ], \n    \"Sara\": [\n        \"NNP\"\n    ], \n    \"Sidewalks\": [\n        \"NNPS\"\n    ], \n    \"DJS\": [\n        \"NNP\"\n    ], \n    \"Sary\": [\n        \"NNP\"\n    ], \n    \"Mardis\": [\n        \"NNP\"\n    ], \n    \"predicting-machines\": [\n        \"NNS\"\n    ], \n    \"end\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Fundamentals\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"idosyncratic\": [\n        \"JJ\"\n    ], \n    \"frescos\": [\n        \"NNS\"\n    ], \n    \"Jeep\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kreisler\": [\n        \"NNP\"\n    ], \n    \"that...\": [\n        \":\"\n    ], \n    \"six-thirty\": [\n        \"JJ\"\n    ], \n    \"charging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"toasted-nut\": [\n        \"NN\"\n    ], \n    \"Handelsbanken\": [\n        \"NNP\"\n    ], \n    \"Essentially\": [\n        \"RB\"\n    ], \n    \"VCRs\": [\n        \"NNS\"\n    ], \n    \"unanimously\": [\n        \"RB\"\n    ], \n    \"protuberance\": [\n        \"NN\"\n    ], \n    \"polymerase\": [\n        \"NN\"\n    ], \n    \"ivory-inlay\": [\n        \"NN\"\n    ], \n    \"unit-making\": [\n        \"VBG\"\n    ], \n    \"SMART\": [\n        \"JJ\"\n    ], \n    \"stronghold\": [\n        \"NN\"\n    ], \n    \"PUBLICITY\": [\n        \"NN\"\n    ], \n    \"Maxwell\": [\n        \"NNP\"\n    ], \n    \"arbitrate\": [\n        \"VB\"\n    ], \n    \"Praver\": [\n        \"NNP\"\n    ], \n    \"enervating\": [\n        \"VBG\"\n    ], \n    \"scout\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Cattle\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Seidler\": [\n        \"NNP\"\n    ], \n    \"frontend\": [\n        \"NN\"\n    ], \n    \"Wintour\": [\n        \"NNP\"\n    ], \n    \"imbued\": [\n        \"VBN\"\n    ], \n    \"Selected\": [\n        \"JJ\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"non-identity\": [\n        \"JJ\"\n    ], \n    \"half-brothers\": [\n        \"NNS\"\n    ], \n    \"computer-aided-software-engineering\": [\n        \"NN\"\n    ], \n    \"reformers\": [\n        \"NNS\"\n    ], \n    \"fads\": [\n        \"NNS\"\n    ], \n    \"Dahl\": [\n        \"NNP\"\n    ], \n    \"Leonid\": [\n        \"NNP\"\n    ], \n    \"canto\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"stingrays\": [\n        \"NNS\"\n    ], \n    \"expectations\": [\n        \"NNS\"\n    ], \n    \"Keats\": [\n        \"NNP\"\n    ], \n    \"Keath\": [\n        \"NNP\"\n    ], \n    \"egotist...\": [\n        \":\"\n    ], \n    \"fade\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Lauber\": [\n        \"NNP\"\n    ], \n    \"tall-oil\": [\n        \"JJ\"\n    ], \n    \"KRAFT\": [\n        \"NNP\"\n    ], \n    \"moontrack\": [\n        \"NN\"\n    ], \n    \"Bristol-Myers\": [\n        \"NNP\"\n    ], \n    \"cost-containment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sturdy\": [\n        \"JJ\"\n    ], \n    \"Gotta\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"carrier-based\": [\n        \"JJ\"\n    ], \n    \"roost\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"disparaged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Geffen\": [\n        \"NNP\"\n    ], \n    \"Injun\": [\n        \"NNP\"\n    ], \n    \"Odysseus\": [\n        \"NNP\"\n    ], \n    \"Russian-dominated\": [\n        \"JJ\"\n    ], \n    \"DBL\": [\n        \"NNP\"\n    ], \n    \"cronyism\": [\n        \"NN\"\n    ], \n    \"Laguerre\": [\n        \"NNP\"\n    ], \n    \"DBC\": [\n        \"NNP\"\n    ], \n    \"mothers\": [\n        \"NNS\"\n    ], \n    \"chuck\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Sting\": [\n        \"NNP\"\n    ], \n    \"Moritz\": [\n        \"NNP\"\n    ], \n    \"filling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"yakking\": [\n        \"VBG\"\n    ], \n    \"Morita\": [\n        \"NNP\"\n    ], \n    \"victory\": [\n        \"NN\"\n    ], \n    \"skeletal\": [\n        \"JJ\"\n    ], \n    \"DBS\": [\n        \"NNP\"\n    ], \n    \"woolgather\": [\n        \"VB\"\n    ], \n    \"lasting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Lanese\": [\n        \"NNP\"\n    ], \n    \"signing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Messerschmitt-Boelkow\": [\n        \"NNP\"\n    ], \n    \"Hodge\": [\n        \"NNP\"\n    ], \n    \"proportion\": [\n        \"NN\"\n    ], \n    \"fussing\": [\n        \"VBG\"\n    ], \n    \"magnets\": [\n        \"NNS\"\n    ], \n    \"Hippocrates\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"poncho\": [\n        \"NN\"\n    ], \n    \"frog-haiku\": [\n        \"NN\"\n    ], \n    \"clozapine\": [\n        \"NN\"\n    ], \n    \"goo\": [\n        \"NN\"\n    ], \n    \"Katonah\": [\n        \"NNP\"\n    ], \n    \"vade\": [\n        \"FW\"\n    ], \n    \"trumpeter\": [\n        \"NN\"\n    ], \n    \"market-opening\": [\n        \"JJ\"\n    ], \n    \"co-produce\": [\n        \"VB\"\n    ], \n    \"two-hour\": [\n        \"JJ\"\n    ], \n    \"gob\": [\n        \"NN\"\n    ], \n    \"ex-lawyer\": [\n        \"NN\"\n    ], \n    \"metal-processing\": [\n        \"JJ\"\n    ], \n    \"millennium\": [\n        \"NN\"\n    ], \n    \"Imprimis\": [\n        \"NNP\"\n    ], \n    \"Telephone-operations\": [\n        \"NNS\"\n    ], \n    \"interconnectedness\": [\n        \"NN\"\n    ], \n    \"got\": [\n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Telecussed\": [\n        \"VBD\"\n    ], \n    \"investment-promotion\": [\n        \"NN\"\n    ], \n    \"scopes\": [\n        \"NNS\"\n    ], \n    \"Rugged\": [\n        \"JJ\"\n    ], \n    \"stock-loan\": [\n        \"NN\"\n    ], \n    \"cirrhosis\": [\n        \"NN\"\n    ], \n    \"Circus-Circus\": [\n        \"NNP\"\n    ], \n    \"scoped\": [\n        \"NN\"\n    ], \n    \"hand\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"AFP\": [\n        \"NNP\"\n    ], \n    \"glisten\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"mailgram\": [\n        \"NN\"\n    ], \n    \"laborer\": [\n        \"NN\"\n    ], \n    \"periodontal\": [\n        \"JJ\"\n    ], \n    \"inexpensive\": [\n        \"JJ\"\n    ], \n    \"Mountain\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"priorities\": [\n        \"NNS\"\n    ], \n    \"labored\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Embassy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sisulu\": [\n        \"NNP\"\n    ], \n    \"cooperating\": [\n        \"VBG\"\n    ], \n    \"Pharmics\": [\n        \"NNP\"\n    ], \n    \"Nicolas\": [\n        \"NNP\"\n    ], \n    \"Impetus\": [\n        \"NN\"\n    ], \n    \"already\": [\n        \"RB\"\n    ], \n    \"Working\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Leverett\": [\n        \"NNP\"\n    ], \n    \"Incredulous\": [\n        \"JJ\"\n    ], \n    \"selfless\": [\n        \"JJ\"\n    ], \n    \"sober\": [\n        \"JJ\"\n    ], \n    \"categorize\": [\n        \"VB\"\n    ], \n    \"Overlords\": [\n        \"NNPS\"\n    ], \n    \"Flaherty\": [\n        \"NNP\"\n    ], \n    \"solicitations\": [\n        \"NNS\"\n    ], \n    \"Cocktail\": [\n        \"NN\"\n    ], \n    \"shareholder-owned\": [\n        \"JJ\"\n    ], \n    \"physician-reimbursement\": [\n        \"JJ\"\n    ], \n    \"euphoric\": [\n        \"JJ\"\n    ], \n    \"euphoria\": [\n        \"NN\"\n    ], \n    \"six-time\": [\n        \"JJ\"\n    ], \n    \"ballistic\": [\n        \"JJ\"\n    ], \n    \"Wolstenholme\": [\n        \"NNP\"\n    ], \n    \"analgesic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ASSOCIATION\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fur\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"servo\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Seldom\": [\n        \"RB\"\n    ], \n    \"tool\": [\n        \"NN\"\n    ], \n    \"abates\": [\n        \"VBZ\"\n    ], \n    \"took\": [\n        \"VBD\"\n    ], \n    \"Londontowne\": [\n        \"NNP\"\n    ], \n    \"Patterns\": [\n        \"NNS\"\n    ], \n    \"Sunset\": [\n        \"NNP\"\n    ], \n    \"dBASE\": [\n        \"NNP\"\n    ], \n    \"Fun\": [\n        \"NNP\"\n    ], \n    \"abated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nonpartisan\": [\n        \"JJ\"\n    ], \n    \"whereby\": [\n        \"WRB\"\n    ], \n    \"Features\": [\n        \"NNPS\"\n    ], \n    \"near-Communists\": [\n        \"NNS\"\n    ], \n    \"foul-smelling\": [\n        \"JJ\"\n    ], \n    \"unsentimental\": [\n        \"JJ\"\n    ], \n    \"more-attractive\": [\n        \"JJ\"\n    ], \n    \"cowhands\": [\n        \"NNS\"\n    ], \n    \"steady-Eddies\": [\n        \"NNS\"\n    ], \n    \"Pocasset\": [\n        \"NNP\"\n    ], \n    \"Adele\": [\n        \"NNP\"\n    ], \n    \"lifesize\": [\n        \"JJ\"\n    ], \n    \"Dimly\": [\n        \"RB\"\n    ], \n    \"fashion\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"unrest\": [\n        \"NN\"\n    ], \n    \"Dying\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"overleveraging\": [\n        \"VBG\"\n    ], \n    \"Hanover-Lucy\": [\n        \"NNP\"\n    ], \n    \"talking\": [\n        \"VBG\", \n        \"NN\", \n        \"NN|VBG\"\n    ], \n    \"oil-tanker\": [\n        \"NN\"\n    ], \n    \"staggeringly\": [\n        \"RB\"\n    ], \n    \"conditioning...\": [\n        \":\"\n    ], \n    \"Etsuro\": [\n        \"NNP\"\n    ], \n    \"paid-in\": [\n        \"JJ\"\n    ], \n    \"doughty\": [\n        \"JJ\"\n    ], \n    \"Jasmine\": [\n        \"NNP\"\n    ], \n    \"balling\": [\n        \"VBG\"\n    ], \n    \"R.V.\": [\n        \"NNP\"\n    ], \n    \"localities\": [\n        \"NNS\"\n    ], \n    \"shelf\": [\n        \"NN\"\n    ], \n    \"effectiveness\": [\n        \"NN\"\n    ], \n    \"mid-twentieth\": [\n        \"JJ\"\n    ], \n    \"hot-dog\": [\n        \"JJ\"\n    ], \n    \"Absent\": [\n        \"VB\", \n        \"IN\", \n        \"JJ\", \n        \"JJ|IN\"\n    ], \n    \"evangelist\": [\n        \"NN\"\n    ], \n    \"grape-arbor\": [\n        \"NN\"\n    ], \n    \"near-identical\": [\n        \"JJ\"\n    ], \n    \"CWP\": [\n        \"NNP\"\n    ], \n    \"Collective\": [\n        \"NNP\"\n    ], \n    \"humbly\": [\n        \"RB\"\n    ], \n    \"Priestess\": [\n        \"NNP\"\n    ], \n    \"rumble\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Communistic\": [\n        \"JJ\"\n    ], \n    \"centering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"evangelism\": [\n        \"NN\"\n    ], \n    \"tabling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"prostitute\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"peers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"romantick\": [\n        \"JJ\"\n    ], \n    \"tallyho\": [\n        \"NN\"\n    ], \n    \"epistolatory\": [\n        \"JJ\"\n    ], \n    \"anti-leak\": [\n        \"JJ\"\n    ], \n    \"Anaconda\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"crankshaft\": [\n        \"NN\"\n    ], \n    \"Loathing\": [\n        \"NN\"\n    ], \n    \"silencing\": [\n        \"VBG\"\n    ], \n    \"Go-Go\": [\n        \"NN\"\n    ], \n    \"Collateralized\": [\n        \"NNP\"\n    ], \n    \"Populace\": [\n        \"NN\"\n    ], \n    \"special-purpose\": [\n        \"JJ\"\n    ], \n    \"reorganize\": [\n        \"VB\"\n    ], \n    \"arrayed\": [\n        \"VBN\"\n    ], \n    \"McDonough\": [\n        \"NNP\"\n    ], \n    \"EDISON\": [\n        \"NNP\"\n    ], \n    \"all-lesbian\": [\n        \"JJ\"\n    ], \n    \"studiously\": [\n        \"RB\"\n    ], \n    \"snickers\": [\n        \"NNS\"\n    ], \n    \"satiric\": [\n        \"JJ\"\n    ], \n    \"Furniture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rinsing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"mixture\": [\n        \"NN\"\n    ], \n    \"Soifer\": [\n        \"NNP\"\n    ], \n    \"Manute\": [\n        \"NNP\"\n    ], \n    \"novelists\": [\n        \"NNS\"\n    ], \n    \"blinking\": [\n        \"JJ\", \n        \"VBG\", \n        \"RB\"\n    ], \n    \"baffle\": [\n        \"VB\"\n    ], \n    \"Gingl\": [\n        \"NNP\"\n    ], \n    \"Weymouth\": [\n        \"NNP\"\n    ], \n    \"demagogues\": [\n        \"NNS\"\n    ], \n    \"Armco\": [\n        \"NNP\"\n    ], \n    \"intersperses\": [\n        \"VBZ\"\n    ], \n    \"Watson-Watt\": [\n        \"NNP\"\n    ], \n    \"spice-laden\": [\n        \"JJ\"\n    ], \n    \"Raimer\": [\n        \"NNP\"\n    ], \n    \"Disabled\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"interspersed\": [\n        \"VBN\"\n    ], \n    \"Rodrigo\": [\n        \"NNP\"\n    ], \n    \"Guterman\": [\n        \"NNP\"\n    ], \n    \"Burritt\": [\n        \"NNP\"\n    ], \n    \"rail-car\": [\n        \"NN\"\n    ], \n    \"thwarting\": [\n        \"VBG\"\n    ], \n    \"strainers\": [\n        \"NNS\"\n    ], \n    \"lay-sisters\": [\n        \"NNS\"\n    ], \n    \"demented\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Galax\": [\n        \"NNP\"\n    ], \n    \"taxied\": [\n        \"VBD\"\n    ], \n    \"Braitman\": [\n        \"NNP\"\n    ], \n    \"discriminating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"gladiator\": [\n        \"NN\"\n    ], \n    \"Herron\": [\n        \"NNP\"\n    ], \n    \"amalgamated\": [\n        \"VBN\"\n    ], \n    \"capacity\": [\n        \"NN\"\n    ], \n    \"postride\": [\n        \"JJ\"\n    ], \n    \"interviewing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"luminescent\": [\n        \"JJ\"\n    ], \n    \"loopaholics\": [\n        \"NNS\"\n    ], \n    \"Clarke\": [\n        \"NNP\"\n    ], \n    \"Statistique\": [\n        \"NNP\"\n    ], \n    \"Shuxian\": [\n        \"NNP\"\n    ], \n    \"Roderick\": [\n        \"NNP\"\n    ], \n    \"Small-business\": [\n        \"NN\"\n    ], \n    \"volumetric\": [\n        \"JJ\"\n    ], \n    \"Unificationism\": [\n        \"NNP\"\n    ], \n    \"G.B.S.\": [\n        \"NN\"\n    ], \n    \"adage\": [\n        \"NN\"\n    ], \n    \"Impco\": [\n        \"NNP\"\n    ], \n    \"Unificationist\": [\n        \"JJ\"\n    ], \n    \"byways\": [\n        \"NNS\"\n    ], \n    \"flowering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"improve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Danco\": [\n        \"NNP\"\n    ], \n    \"slow-spending\": [\n        \"JJ\"\n    ], \n    \"Dance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"make...\": [\n        \":\"\n    ], \n    \"Famine\": [\n        \"NN\"\n    ], \n    \"layered\": [\n        \"VBN\"\n    ], \n    \"conceits\": [\n        \"NN\"\n    ], \n    \"snooker\": [\n        \"NN\"\n    ], \n    \"imported-food\": [\n        \"NN\"\n    ], \n    \"monograph\": [\n        \"NN\"\n    ], \n    \"self-respect\": [\n        \"NN\"\n    ], \n    \"Kaye\": [\n        \"NNP\"\n    ], \n    \"direct-steelmaking\": [\n        \"NN\"\n    ], \n    \"Supra-Expressionism\": [\n        \"NNP\"\n    ], \n    \"towels\": [\n        \"NNS\"\n    ], \n    \"BSPP\": [\n        \"NNP\"\n    ], \n    \"double-breasted\": [\n        \"JJ\"\n    ], \n    \"Destler\": [\n        \"NNP\"\n    ], \n    \"unfurled\": [\n        \"VBN\"\n    ], \n    \"Malacca\": [\n        \"NNP\"\n    ], \n    \"stirringly\": [\n        \"RB\"\n    ], \n    \"foully\": [\n        \"RB\"\n    ], \n    \"Chance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"trampled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"diskettes\": [\n        \"NNS\"\n    ], \n    \"fantasies\": [\n        \"NNS\"\n    ], \n    \"Hucksters\": [\n        \"NNP\"\n    ], \n    \"metal-coil\": [\n        \"JJ\"\n    ], \n    \"snips\": [\n        \"NNS\"\n    ], \n    \"automotive-lighting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bladder\": [\n        \"NN\"\n    ], \n    \"usurped\": [\n        \"VBN\"\n    ], \n    \"oil-spill\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Budlong\": [\n        \"NNP\"\n    ], \n    \"auto-industry\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"dissatisfactions\": [\n        \"NNS\"\n    ], \n    \"Mahone\": [\n        \"NNP\"\n    ], \n    \"lessen\": [\n        \"VB\"\n    ], \n    \"Medibank\": [\n        \"NNP\"\n    ], \n    \"lesser\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Domingos\": [\n        \"NNP\"\n    ], \n    \"teachers\": [\n        \"NNS\"\n    ], \n    \"office-furniture\": [\n        \"JJ\"\n    ], \n    \"inexplicit\": [\n        \"JJ\"\n    ], \n    \"Gross\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"zip-code\": [\n        \"NN\"\n    ], \n    \"Eurodebentures\": [\n        \"NNS\"\n    ], \n    \"nightgowns\": [\n        \"NNS\"\n    ], \n    \"usable\": [\n        \"JJ\"\n    ], \n    \"Simms\": [\n        \"NNP\"\n    ], \n    \"Attridge\": [\n        \"NNP\"\n    ], \n    \"operator-services\": [\n        \"NNS\"\n    ], \n    \"surcharge\": [\n        \"NN\"\n    ], \n    \"Cramer\": [\n        \"NNP\"\n    ], \n    \"snobbery\": [\n        \"NN\"\n    ], \n    \"four-page-a-minute\": [\n        \"JJ\"\n    ], \n    \"Stahl\": [\n        \"NNP\"\n    ], \n    \"wound\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"yahoos\": [\n        \"NNS\"\n    ], \n    \"BOGGS\": [\n        \"NNP\"\n    ], \n    \"RECORD\": [\n        \"NNP\"\n    ], \n    \"complex\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Vieux\": [\n        \"NNP\"\n    ], \n    \"CBS-owned\": [\n        \"JJ\"\n    ], \n    \"interparty\": [\n        \"NN\"\n    ], \n    \"Fla.-based\": [\n        \"JJ\"\n    ], \n    \"Investors\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Minkow\": [\n        \"NNP\"\n    ], \n    \"pampering\": [\n        \"VBG\"\n    ], \n    \"twiddling\": [\n        \"VBG\"\n    ], \n    \"Spectra\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"constricting\": [\n        \"VBG\"\n    ], \n    \"amortization\": [\n        \"NN\"\n    ], \n    \"co-optation\": [\n        \"NN\"\n    ], \n    \"laissez-faire\": [\n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"monumentalism\": [\n        \"NN\"\n    ], \n    \"Pedestrian\": [\n        \"NNP\"\n    ], \n    \"Hilton\": [\n        \"NNP\"\n    ], \n    \"vilifies\": [\n        \"VBZ\"\n    ], \n    \"Ethyl\": [\n        \"NNP\"\n    ], \n    \"highway-construction\": [\n        \"JJ\"\n    ], \n    \"feuded\": [\n        \"VBD\"\n    ], \n    \"Williamsburg\": [\n        \"NNP\"\n    ], \n    \"councilman\": [\n        \"NN\"\n    ], \n    \"APPLIANCES\": [\n        \"NNPS\"\n    ], \n    \"uncooperative\": [\n        \"JJ\"\n    ], \n    \"Herder\": [\n        \"NNP\"\n    ], \n    \"Intercepting\": [\n        \"VBG\"\n    ], \n    \"forfeiture\": [\n        \"NN\"\n    ], \n    \"flutist\": [\n        \"NN\"\n    ], \n    \"Raghib\": [\n        \"NNP\"\n    ], \n    \"Wing\": [\n        \"NNP\"\n    ], \n    \"Wind\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hairless\": [\n        \"JJ\"\n    ], \n    \"interprets\": [\n        \"VBZ\"\n    ], \n    \"humanity\": [\n        \"NN\"\n    ], \n    \"Guttman-type\": [\n        \"JJ\"\n    ], \n    \"actresses\": [\n        \"NNS\"\n    ], \n    \"quake-hit\": [\n        \"JJ\"\n    ], \n    \"D\": [\n        \"NN\", \n        \"LS\", \n        \"NNP\"\n    ], \n    \"Fluorescence\": [\n        \"NN\"\n    ], \n    \"Tichy\": [\n        \"NNP\"\n    ], \n    \"Gabriel\": [\n        \"NNP\"\n    ], \n    \"timber-dependent\": [\n        \"JJ\"\n    ], \n    \"Content\": [\n        \"JJ\"\n    ], \n    \"reapportion\": [\n        \"VBP\"\n    ], \n    \"valewe\": [\n        \"NN\"\n    ], \n    \"Rudolf\": [\n        \"NNP\"\n    ], \n    \"apart\": [\n        \"RB\", \n        \"RP\", \n        \"JJ\"\n    ], \n    \"anti-Newtonian\": [\n        \"JJ\"\n    ], \n    \"intertwined\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"clearheaded\": [\n        \"JJ\"\n    ], \n    \"gift\": [\n        \"NN\"\n    ], \n    \"remanding\": [\n        \"VBG\"\n    ], \n    \"Lichtenstein\": [\n        \"NNP\"\n    ], \n    \"M.I.M.\": [\n        \"NNP\"\n    ], \n    \"anciently\": [\n        \"RB\"\n    ], \n    \"ditty\": [\n        \"NN\"\n    ], \n    \"splendor\": [\n        \"NN\"\n    ], \n    \"all-Negro\": [\n        \"JJ\"\n    ], \n    \"Educate\": [\n        \"VB\"\n    ], \n    \"overnighters\": [\n        \"NNS\"\n    ], \n    \"weight-height\": [\n        \"NN\"\n    ], \n    \"reunifed\": [\n        \"VBN\"\n    ], \n    \"sanction\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"enrolling\": [\n        \"NN\"\n    ], \n    \"gangbusters\": [\n        \"NNS\"\n    ], \n    \"Hillsborough\": [\n        \"NNP\"\n    ], \n    \"Nippon\": [\n        \"NNP\"\n    ], \n    \"untried\": [\n        \"JJ\"\n    ], \n    \"meters\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"precautions\": [\n        \"NNS\"\n    ], \n    \"Harrigan\": [\n        \"NNP\"\n    ], \n    \"embodied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"non-commissioned\": [\n        \"JJ\"\n    ], \n    \"Xanax\": [\n        \"NNP\"\n    ], \n    \"RATTLED\": [\n        \"VBD\"\n    ], \n    \"reinvest\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Looming\": [\n        \"VBG\"\n    ], \n    \"aid-to-education\": [\n        \"NN\"\n    ], \n    \"prejudicial\": [\n        \"JJ\"\n    ], \n    \"cooped\": [\n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"Repeatedly\": [\n        \"RB\"\n    ], \n    \"Brezhnev\": [\n        \"NNP\"\n    ], \n    \"Implores\": [\n        \"VBZ\"\n    ], \n    \"cash-laden\": [\n        \"JJ\"\n    ], \n    \"espionage\": [\n        \"NN\"\n    ], \n    \"ironclad\": [\n        \"JJ\"\n    ], \n    \"erodes\": [\n        \"VBZ\"\n    ], \n    \"Tegal\": [\n        \"NNP\"\n    ], \n    \"multi-agency\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"libertine\": [\n        \"NN\"\n    ], \n    \"Oakland-Alameda\": [\n        \"NNP\"\n    ], \n    \"phthalate\": [\n        \"NN\"\n    ], \n    \"CJS\": [\n        \"NNP\"\n    ], \n    \"lookee-loos\": [\n        \"NNS\"\n    ], \n    \"landowners\": [\n        \"NNS\"\n    ], \n    \"nontransferable\": [\n        \"JJ\"\n    ], \n    \"limitation\": [\n        \"NN\"\n    ], \n    \"census\": [\n        \"NN\"\n    ], \n    \"agriculture-chemicals\": [\n        \"NNS\"\n    ], \n    \"Leobardo\": [\n        \"NNP\"\n    ], \n    \"shards\": [\n        \"NNS\"\n    ], \n    \"Kafka\": [\n        \"NNP\"\n    ], \n    \"catkins\": [\n        \"NNS\"\n    ], \n    \"Lucretia\": [\n        \"NNP\"\n    ], \n    \"cooled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"self-splicing\": [\n        \"JJ\"\n    ], \n    \"Foss\": [\n        \"NNP\"\n    ], \n    \"Novacor\": [\n        \"NNP\"\n    ], \n    \"scandal-plagued\": [\n        \"JJ\"\n    ], \n    \"paddies\": [\n        \"NNS\"\n    ], \n    \"primitive\": [\n        \"JJ\"\n    ], \n    \"Guthrie\": [\n        \"NNP\"\n    ], \n    \"froze\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"preambles\": [\n        \"NNS\"\n    ], \n    \"Lebans\": [\n        \"NNP\"\n    ], \n    \"tapings\": [\n        \"NNS\"\n    ], \n    \"taffy\": [\n        \"JJ\"\n    ], \n    \"electorate\": [\n        \"NN\"\n    ], \n    \"Survive\": [\n        \"VB\"\n    ], \n    \"cafeteria\": [\n        \"NN\"\n    ], \n    \"jeunes\": [\n        \"FW\"\n    ], \n    \"Dodger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disinterest\": [\n        \"NN\"\n    ], \n    \"interlopers\": [\n        \"NNS\"\n    ], \n    \"lags\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Baldy\": [\n        \"NNP\"\n    ], \n    \"unpretentious\": [\n        \"JJ\"\n    ], \n    \"grain-trading\": [\n        \"JJ\"\n    ], \n    \"oil-well\": [\n        \"NN\"\n    ], \n    \"anti-racketeering\": [\n        \"JJ\"\n    ], \n    \"full-clad\": [\n        \"JJ\"\n    ], \n    \"head\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"medium\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sundays\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"preschoolers\": [\n        \"NNS\"\n    ], \n    \"heal\": [\n        \"VB\"\n    ], \n    \"world-leading\": [\n        \"JJ\"\n    ], \n    \"Suckow\": [\n        \"NNP\"\n    ], \n    \"Liffe\": [\n        \"NNP\"\n    ], \n    \"boarding-home\": [\n        \"NN\"\n    ], \n    \"heat\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"hear\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ewe\": [\n        \"NNP\"\n    ], \n    \"heap\": [\n        \"NN\"\n    ], \n    \"free-spirited\": [\n        \"JJ\"\n    ], \n    \"nodded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"counsel\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Uruguay\": [\n        \"NNP\"\n    ], \n    \"compositional\": [\n        \"JJ\"\n    ], \n    \"lopping\": [\n        \"NN\"\n    ], \n    \"high-powered\": [\n        \"JJ\"\n    ], \n    \"bargain\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"danseur\": [\n        \"FW\"\n    ], \n    \"adore\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"advertising-conscious\": [\n        \"JJ\"\n    ], \n    \"co-opted\": [\n        \"VBN\"\n    ], \n    \"mustering\": [\n        \"VBG\"\n    ], \n    \"Electronic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"southernmost\": [\n        \"JJ\"\n    ], \n    \"adorn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"obfuscation\": [\n        \"NN\"\n    ], \n    \"sinful\": [\n        \"JJ\"\n    ], \n    \"one-thousand-zloty\": [\n        \"JJ\"\n    ], \n    \"non-diva-like\": [\n        \"JJ\"\n    ], \n    \"simulations\": [\n        \"NNS\"\n    ], \n    \"pigpens\": [\n        \"NNS\"\n    ], \n    \"M8.7sp\": [\n        \"NNP\"\n    ], \n    \"Nauman\": [\n        \"NNP\"\n    ], \n    \"Chiefs\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"willingly\": [\n        \"RB\"\n    ], \n    \"Poo\": [\n        \"NNP\"\n    ], \n    \"Monteath\": [\n        \"NNP\"\n    ], \n    \"isomers\": [\n        \"NNS\"\n    ], \n    \"futures-related\": [\n        \"JJ\"\n    ], \n    \"incestuous\": [\n        \"JJ\"\n    ], \n    \"EST\": [\n        \"NNP\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"new-loan\": [\n        \"JJ\"\n    ], \n    \"self-congratulation\": [\n        \"NN\"\n    ], \n    \"ESP\": [\n        \"NNP\"\n    ], \n    \"Heebner\": [\n        \"NNP\"\n    ], \n    \"CyCare\": [\n        \"NNP\"\n    ], \n    \"Tooth\": [\n        \"NN\"\n    ], \n    \"ESB\": [\n        \"NNP\"\n    ], \n    \"ESN\": [\n        \"NN\"\n    ], \n    \"QUARTER\": [\n        \"NN\"\n    ], \n    \"reassuringly\": [\n        \"RB\"\n    ], \n    \"Unconscious\": [\n        \"NNP\"\n    ], \n    \"bullet\": [\n        \"NN\"\n    ], \n    \"uranyl\": [\n        \"NN\"\n    ], \n    \"withhold\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"urethane\": [\n        \"NN\"\n    ], \n    \"Denlea\": [\n        \"NNP\"\n    ], \n    \"oeufs\": [\n        \"FW\"\n    ], \n    \"backward\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Contributions\": [\n        \"NNS\"\n    ], \n    \"Suvorov\": [\n        \"NNP\"\n    ], \n    \"forgeries\": [\n        \"NNS\"\n    ], \n    \"counseling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Choral\": [\n        \"NNP\"\n    ], \n    \"brokerages\": [\n        \"NNS\"\n    ], \n    \"MasterCards\": [\n        \"NNS\"\n    ], \n    \"Iacocca\": [\n        \"NNP\"\n    ], \n    \"fusing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Buddy\": [\n        \"NNP\"\n    ], \n    \"brandin\": [\n        \"NN\"\n    ], \n    \"Cilluffo\": [\n        \"NNP\"\n    ], \n    \"S.D.\": [\n        \"NNP\"\n    ], \n    \"contemplating\": [\n        \"VBG\"\n    ], \n    \"flowered\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"trustees\": [\n        \"NNS\"\n    ], \n    \"Waverly\": [\n        \"NNP\"\n    ], \n    \"sceptical\": [\n        \"JJ\"\n    ], \n    \"Rosoff\": [\n        \"NNP\"\n    ], \n    \"Kafaroff\": [\n        \"NNP\"\n    ], \n    \"Haole\": [\n        \"FW\"\n    ], \n    \"formed-tooth\": [\n        \"JJ\"\n    ], \n    \"broadly\": [\n        \"RB\"\n    ], \n    \"Countries\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"thawed\": [\n        \"VBN\"\n    ], \n    \"hattes\": [\n        \"NNS\"\n    ], \n    \"Hargrave\": [\n        \"NNP\"\n    ], \n    \"rockstrewn\": [\n        \"NN\"\n    ], \n    \"drug-abuse\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"roving\": [\n        \"VBG\"\n    ], \n    \"eighteen-year-old\": [\n        \"JJ\"\n    ], \n    \"Indebted\": [\n        \"JJ\"\n    ], \n    \"denounced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Muratore\": [\n        \"NNP\"\n    ], \n    \"Wollman\": [\n        \"NNP\"\n    ], \n    \"denounces\": [\n        \"VBZ\"\n    ], \n    \"money-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hsieh\": [\n        \"NNP\"\n    ], \n    \"Rederi\": [\n        \"NNP\"\n    ], \n    \"peek\": [\n        \"NN\"\n    ], \n    \"inland\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"off-off-Broadway\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"nonresidential-contracting\": [\n        \"JJ\"\n    ], \n    \"Diebold\": [\n        \"NNP\"\n    ], \n    \"takeoff\": [\n        \"NN\"\n    ], \n    \"price-consciousness\": [\n        \"NN\"\n    ], \n    \"Durakon\": [\n        \"NNP\"\n    ], \n    \"bake\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Jana\": [\n        \"NNP\"\n    ], \n    \"allout\": [\n        \"JJ\"\n    ], \n    \"constitution\": [\n        \"NN\"\n    ], \n    \"Theatre\": [\n        \"NNP\"\n    ], \n    \"spire\": [\n        \"NN\"\n    ], \n    \"El-Abed\": [\n        \"NNP\"\n    ], \n    \"manikins\": [\n        \"NNS\"\n    ], \n    \"up-market\": [\n        \"JJ\"\n    ], \n    \"humorist\": [\n        \"NN\"\n    ], \n    \"Reeves\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mirek\": [\n        \"NNP\"\n    ], \n    \"retroviral\": [\n        \"JJ\"\n    ], \n    \"Maneret\": [\n        \"NNP\"\n    ], \n    \"eliminations\": [\n        \"NNS\"\n    ], \n    \"Trackdown\": [\n        \"NNP\"\n    ], \n    \"Annuity\": [\n        \"NNP\"\n    ], \n    \"plant-location\": [\n        \"JJ\"\n    ], \n    \"Khomeini\": [\n        \"NNP\"\n    ], \n    \"dissipates\": [\n        \"VBZ\"\n    ], \n    \"meteorites\": [\n        \"NNS\"\n    ], \n    \"Liechtenstein\": [\n        \"NNP\"\n    ], \n    \"Jan.\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"groups\": [\n        \"NNS\"\n    ], \n    \"dea\": [\n        \"NN\"\n    ], \n    \"dissipated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lonely-hearts\": [\n        \"NNS\"\n    ], \n    \"Rocket-powered\": [\n        \"JJ\"\n    ], \n    \"unidentified\": [\n        \"JJ\"\n    ], \n    \"pearly\": [\n        \"JJ\"\n    ], \n    \"PEOPLE\": [\n        \"NNS\"\n    ], \n    \"pearls\": [\n        \"NNS\"\n    ], \n    \"culpa\": [\n        \"FW\"\n    ], \n    \"ratable\": [\n        \"JJ\"\n    ], \n    \"marble\": [\n        \"NN\"\n    ], \n    \"aircraft-engine-maintenance\": [\n        \"JJ\"\n    ], \n    \"kerygma\": [\n        \"FW\"\n    ], \n    \"child-rearing\": [\n        \"NN\"\n    ], \n    \"abounded\": [\n        \"VBD\"\n    ], \n    \"crime\\\\/comedy\": [\n        \"NN\"\n    ], \n    \"Talmud\": [\n        \"NNP\"\n    ], \n    \"Raikin\": [\n        \"NNP\"\n    ], \n    \"patronage-free\": [\n        \"JJ\"\n    ], \n    \"morals\": [\n        \"NNS\"\n    ], \n    \"Catholicism\": [\n        \"NNP\"\n    ], \n    \"Interlake\": [\n        \"NNP\"\n    ], \n    \"AuCoin\": [\n        \"NNP\"\n    ], \n    \"Trend-following\": [\n        \"JJ\"\n    ], \n    \"Brissette\": [\n        \"NNP\"\n    ], \n    \"Vasso\": [\n        \"NNP\"\n    ], \n    \"Hungarian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Radzymin\": [\n        \"NNP\"\n    ], \n    \"criteria\": [\n        \"NNS\"\n    ], \n    \"Gillett\": [\n        \"NNP\"\n    ], \n    \"Affidavits\": [\n        \"NNS\"\n    ], \n    \"blacked-out\": [\n        \"JJ\"\n    ], \n    \"Gintel\": [\n        \"NNP\"\n    ], \n    \"Vivacious\": [\n        \"JJ\"\n    ], \n    \"chocolate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gesualdo\": [\n        \"NNP\"\n    ], \n    \"Groundwater\": [\n        \"NNP\"\n    ], \n    \"Push\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"misreading\": [\n        \"NN\"\n    ], \n    \"goofiness\": [\n        \"NN\"\n    ], \n    \"Carsten\": [\n        \"NNP\"\n    ], \n    \"Crystallographic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"trick...\": [\n        \":\"\n    ], \n    \"zinc-sulphide\": [\n        \"NN\"\n    ], \n    \"districts\": [\n        \"NNS\"\n    ], \n    \"hymselfe\": [\n        \"NN\"\n    ], \n    \"predominating\": [\n        \"VBG\"\n    ], \n    \"slightest\": [\n        \"JJS\"\n    ], \n    \"dropper\": [\n        \"NN\"\n    ], \n    \"Gerolamo\": [\n        \"NNP\"\n    ], \n    \"corrupted\": [\n        \"VBN\"\n    ], \n    \"parings\": [\n        \"NNS\"\n    ], \n    \"amazons\": [\n        \"NNS\"\n    ], \n    \"newsletters\": [\n        \"NNS\"\n    ], \n    \"sky-tapping\": [\n        \"JJ\"\n    ], \n    \"stroke\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"corrupter\": [\n        \"NN\"\n    ], \n    \"Lenwood\": [\n        \"NNP\"\n    ], \n    \"Manderbach\": [\n        \"NNP\"\n    ], \n    \"hydrogen\": [\n        \"NN\"\n    ], \n    \"foreign-ownership\": [\n        \"NN\"\n    ], \n    \"requirements\": [\n        \"NNS\"\n    ], \n    \"Marketing\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"Cartoonists\": [\n        \"NNP\"\n    ], \n    \"minivans\": [\n        \"NNS\"\n    ], \n    \"innumerable\": [\n        \"JJ\"\n    ], \n    \"Considered\": [\n        \"VBN\"\n    ], \n    \"bankruptcylaw\": [\n        \"NN\"\n    ], \n    \"Flyer\": [\n        \"NNP\"\n    ], \n    \"Gallagher\": [\n        \"NNP\"\n    ], \n    \"Wage-price\": [\n        \"JJ\"\n    ], \n    \"speaks\": [\n        \"VBZ\"\n    ], \n    \"Elkhorn\": [\n        \"NNP\"\n    ], \n    \"tipper\": [\n        \"NN\"\n    ], \n    \"irrational\": [\n        \"JJ\"\n    ], \n    \"ballroom\": [\n        \"NN\"\n    ], \n    \"rites\": [\n        \"NNS\"\n    ], \n    \"motorists\": [\n        \"NNS\"\n    ], \n    \"Dinosaur\": [\n        \"NNP\"\n    ], \n    \"outlandish\": [\n        \"JJ\"\n    ], \n    \"tipped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tippee\": [\n        \"NN\"\n    ], \n    \"evoke\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"nannies\": [\n        \"NNS\"\n    ], \n    \"Powers\": [\n        \"NNP\"\n    ], \n    \"Hashimoto\": [\n        \"NNP\"\n    ], \n    \"reposition\": [\n        \"VB\"\n    ], \n    \"flat-bottomed\": [\n        \"JJ\"\n    ], \n    \"misbegotten\": [\n        \"JJ\"\n    ], \n    \"compressing\": [\n        \"VBG\"\n    ], \n    \"fire-control\": [\n        \"JJ\"\n    ], \n    \"persons\": [\n        \"NNS\"\n    ], \n    \"Asleep\": [\n        \"RB\"\n    ], \n    \"glancing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"refund\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sonnet\": [\n        \"NN\"\n    ], \n    \"Feiner\": [\n        \"NNP\"\n    ], \n    \"undervalued\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"blocker\": [\n        \"NN\"\n    ], \n    \"fangs\": [\n        \"NNS\"\n    ], \n    \"canard\": [\n        \"NN\"\n    ], \n    \"accolades\": [\n        \"NNS\"\n    ], \n    \"in-store\": [\n        \"JJ\"\n    ], \n    \"academeh\": [\n        \"NN\"\n    ], \n    \"Gorbachev-era\": [\n        \"NN\"\n    ], \n    \"worship\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"blocked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"segregationists\": [\n        \"NNS\"\n    ], \n    \"rebalancing\": [\n        \"VBG\"\n    ], \n    \"Qualls\": [\n        \"NNP\"\n    ], \n    \"Sierras\": [\n        \"NNPS\"\n    ], \n    \"bead-like\": [\n        \"JJ\"\n    ], \n    \"Falco\": [\n        \"NNP\"\n    ], \n    \"coordinated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Factories\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"LD056\": [\n        \"NN\"\n    ], \n    \"meridian\": [\n        \"NN\"\n    ], \n    \"cutter\": [\n        \"NN\"\n    ], \n    \"quick-tempered\": [\n        \"JJ\"\n    ], \n    \"sparing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Highness\": [\n        \"NNP\"\n    ], \n    \"Turtles\": [\n        \"NNPS\"\n    ], \n    \"M.T.\": [\n        \"NNP\"\n    ], \n    \"appraised\": [\n        \"VBN\"\n    ], \n    \"HRT\": [\n        \"NNP\"\n    ], \n    \"radicals\": [\n        \"NNS\"\n    ], \n    \"gourmet\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"warranted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"asset-growth\": [\n        \"NN\"\n    ], \n    \"HRH\": [\n        \"NNP\"\n    ], \n    \"HRE\": [\n        \"NNP\"\n    ], \n    \"feathered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"appraiser\": [\n        \"NN\"\n    ], \n    \"HRB\": [\n        \"NNP\"\n    ], \n    \"Clams\": [\n        \"NNS\"\n    ], \n    \"Josephus\": [\n        \"NNP\"\n    ], \n    \"Bolduc\": [\n        \"NNP\"\n    ], \n    \"opera\": [\n        \"NN\"\n    ], \n    \"Mentum\": [\n        \"NNP\"\n    ], \n    \"belts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slumps\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Gotterdammerung\": [\n        \"NNP\"\n    ], \n    \"fourth-level\": [\n        \"JJ\"\n    ], \n    \"fair-trade-related\": [\n        \"JJ\"\n    ], \n    \"lower-paid\": [\n        \"JJ\"\n    ], \n    \"Campaigning\": [\n        \"VBG\"\n    ], \n    \"Gilroy\": [\n        \"NNP\"\n    ], \n    \"Heathrow\": [\n        \"NNP\"\n    ], \n    \"Airbus\": [\n        \"NNP\"\n    ], \n    \"weighted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"nettlesome\": [\n        \"JJ\"\n    ], \n    \"weight-control\": [\n        \"JJ\"\n    ], \n    \"pillaged\": [\n        \"VBD\"\n    ], \n    \"blacked\": [\n        \"VBN\"\n    ], \n    \"Britain-U.S.\": [\n        \"JJ\"\n    ], \n    \"zebra\": [\n        \"NN\"\n    ], \n    \"Forks\": [\n        \"NNS\"\n    ], \n    \"myrtle\": [\n        \"NN\"\n    ], \n    \"reckons\": [\n        \"VBZ\"\n    ], \n    \"quake-torn\": [\n        \"JJ\"\n    ], \n    \"sustains\": [\n        \"VBZ\"\n    ], \n    \"obfuscations\": [\n        \"NNS\"\n    ], \n    \"Shakespearian\": [\n        \"JJ\"\n    ], \n    \"Grabbing\": [\n        \"VBG\"\n    ], \n    \"disposables\": [\n        \"NNS\"\n    ], \n    \"someplace\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"Ciporkin\": [\n        \"NNP\"\n    ], \n    \"Bodner\": [\n        \"NNP\"\n    ], \n    \"clover\": [\n        \"NN\"\n    ], \n    \"more-natural\": [\n        \"JJ\"\n    ], \n    \"reformulation\": [\n        \"NN\"\n    ], \n    \"Coudersport\": [\n        \"NNP\"\n    ], \n    \"ENG\": [\n        \"NNP\"\n    ], \n    \"Keilin\": [\n        \"NNP\"\n    ], \n    \"ENI\": [\n        \"NNP\"\n    ], \n    \"Deppy\": [\n        \"NNP\"\n    ], \n    \"key-someone\": [\n        \"NN\"\n    ], \n    \"obituaries\": [\n        \"NNS\"\n    ], \n    \"light-headed\": [\n        \"JJ\"\n    ], \n    \"half-moons\": [\n        \"NNS\"\n    ], \n    \"explorers\": [\n        \"NNS\"\n    ], \n    \"Parity\": [\n        \"NN\"\n    ], \n    \"Leuffer\": [\n        \"NNP\"\n    ], \n    \"Julian\": [\n        \"NNP\"\n    ], \n    \"schnapps\": [\n        \"NN\"\n    ], \n    \"Delray\": [\n        \"NNP\"\n    ], \n    \"Glass-Steagall\": [\n        \"NNP\"\n    ], \n    \"teammates\": [\n        \"NNS\"\n    ], \n    \"deprogrammings\": [\n        \"NNS\"\n    ], \n    \"Industrialistes\": [\n        \"NNP\"\n    ], \n    \"FDA\": [\n        \"NNP\"\n    ], \n    \"Expenditures\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"mind-altering\": [\n        \"JJ\"\n    ], \n    \"Slobodin\": [\n        \"NNP\"\n    ], \n    \"faculty\": [\n        \"NN\"\n    ], \n    \"Nairne\": [\n        \"NNP\"\n    ], \n    \"sovereign\": [\n        \"JJ\", \n        \"NN\", \n        \"NN|JJ\"\n    ], \n    \"soaring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Scripp\": [\n        \"NNP\"\n    ], \n    \"Forrestal\": [\n        \"NNP\"\n    ], \n    \"Geographical\": [\n        \"JJ\"\n    ], \n    \"disinterested\": [\n        \"JJ\"\n    ], \n    \"surveys\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Johan\": [\n        \"NNP\"\n    ], \n    \"R-Bergen\": [\n        \"NNP\"\n    ], \n    \"Espagnol\": [\n        \"NNP\"\n    ], \n    \"Parkways\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"convention\": [\n        \"NN\"\n    ], \n    \"circa\": [\n        \"RB\"\n    ], \n    \"Dove\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"assigned-risk\": [\n        \"NN\"\n    ], \n    \"Biosite\": [\n        \"NNP\"\n    ], \n    \"interest-rate-sensitive\": [\n        \"JJ\"\n    ], \n    \"hug\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Whitten\": [\n        \"NNP\"\n    ], \n    \"tempers\": [\n        \"NNS\"\n    ], \n    \"hub\": [\n        \"NN\"\n    ], \n    \"Deregulation\": [\n        \"NN\"\n    ], \n    \"greatcoated\": [\n        \"JJ\"\n    ], \n    \"huh\": [\n        \"UH\"\n    ], \n    \"inexpressible\": [\n        \"JJ\"\n    ], \n    \"hut\": [\n        \"NN\"\n    ], \n    \"inexpressibly\": [\n        \"RB\"\n    ], \n    \"Cortex\": [\n        \"NNP\"\n    ], \n    \"tempera\": [\n        \"NN\"\n    ], \n    \"ill-advised\": [\n        \"JJ\"\n    ], \n    \"circulates\": [\n        \"VBZ\"\n    ], \n    \"holder\": [\n        \"NN\"\n    ], \n    \"Cortes\": [\n        \"NNP\"\n    ], \n    \"petrified\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"DeLay\": [\n        \"NNP\"\n    ], \n    \"demythologizing\": [\n        \"VBG\"\n    ], \n    \"tawdry\": [\n        \"JJ\"\n    ], \n    \"vapor-pressure\": [\n        \"NN\"\n    ], \n    \"Tryon\": [\n        \"NNP\"\n    ], \n    \"diplomatic\": [\n        \"JJ\"\n    ], \n    \"r\": [\n        \"NN\"\n    ], \n    \"DOWNEY\": [\n        \"NNP\"\n    ], \n    \"Lawful\": [\n        \"JJ\"\n    ], \n    \"change-ringing\": [\n        \"NN\"\n    ], \n    \"Gagne\": [\n        \"NNP\"\n    ], \n    \"EX-OFFICIALS\": [\n        \"NNS\"\n    ], \n    \"broken-nosed\": [\n        \"JJ\"\n    ], \n    \"armored\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Hirsch\": [\n        \"NNP\"\n    ], \n    \"underprepared\": [\n        \"JJ\"\n    ], \n    \"right-to-work\": [\n        \"JJ\"\n    ], \n    \"PolyGram\": [\n        \"NNP\"\n    ], \n    \"stolid\": [\n        \"JJ\"\n    ], \n    \"Vollard\": [\n        \"NNP\"\n    ], \n    \"overjoyed\": [\n        \"JJ\"\n    ], \n    \"exploratory\": [\n        \"JJ\"\n    ], \n    \"Sadie\": [\n        \"NNP\"\n    ], \n    \"transcription\": [\n        \"NN\"\n    ], \n    \"Schuller\": [\n        \"NNP\"\n    ], \n    \"Capitalizing\": [\n        \"VBG\"\n    ], \n    \"Watercolor\": [\n        \"NNP\"\n    ], \n    \"dining\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"emphasis\": [\n        \"NN\"\n    ], \n    \"Strouds\": [\n        \"NNP\"\n    ], \n    \"thermometer\": [\n        \"NN\"\n    ], \n    \"Maltese\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hyperemic\": [\n        \"JJ\"\n    ], \n    \"Selve\": [\n        \"NNP\"\n    ], \n    \"hyperemia\": [\n        \"NN\"\n    ], \n    \"Exch\": [\n        \"NN\"\n    ], \n    \"sect\": [\n        \"NN\"\n    ], \n    \"stock-basket\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sterns\": [\n        \"NNS\"\n    ], \n    \"Munro\": [\n        \"NNP\"\n    ], \n    \"botulinum\": [\n        \"NN\"\n    ], \n    \"Mickie\": [\n        \"NNP\"\n    ], \n    \"precluded\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Sheiner\": [\n        \"NNP\"\n    ], \n    \"visitors\": [\n        \"NNS\"\n    ], \n    \"Gandhi\": [\n        \"NNP\"\n    ], \n    \"brashness\": [\n        \"NN\"\n    ], \n    \"librarian\": [\n        \"NN\"\n    ], \n    \"headcount-control\": [\n        \"NN\"\n    ], \n    \"bioengineers\": [\n        \"NNS\"\n    ], \n    \"littering\": [\n        \"NN\"\n    ], \n    \"encasing\": [\n        \"VBG\"\n    ], \n    \"depreciation\": [\n        \"NN\"\n    ], \n    \"Carpentier\": [\n        \"NNP\"\n    ], \n    \"tax-cut\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"considered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Morin\": [\n        \"NNP\"\n    ], \n    \"Tensile\": [\n        \"JJ\"\n    ], \n    \"Protectionism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Post-Serialism\": [\n        \"NNP\"\n    ], \n    \"Habla\": [\n        \"NNP\"\n    ], \n    \"vetted\": [\n        \"VBN\"\n    ], \n    \"Comecon\": [\n        \"NNP\"\n    ], \n    \"infielder\": [\n        \"NN\"\n    ], \n    \"revamping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"once-proud\": [\n        \"JJ\"\n    ], \n    \"yen-bond\": [\n        \"JJ\"\n    ], \n    \"southwestern\": [\n        \"JJ\"\n    ], \n    \"Triland\": [\n        \"NNP\"\n    ], \n    \"Syrdarya\": [\n        \"NNP\"\n    ], \n    \"SOUTH\": [\n        \"NNP\"\n    ], \n    \"woolen\": [\n        \"JJ\"\n    ], \n    \"interessant\": [\n        \"FW\"\n    ], \n    \"Veraldi\": [\n        \"NNP\"\n    ], \n    \"half-full\": [\n        \"JJ\"\n    ], \n    \"Rauch\": [\n        \"NNP\"\n    ], \n    \"crimp\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"low-lying\": [\n        \"JJ\"\n    ], \n    \"hooting\": [\n        \"JJ\"\n    ], \n    \"Pune\": [\n        \"NNP\"\n    ], \n    \"narrows\": [\n        \"VBZ\"\n    ], \n    \"Piazza\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Puna\": [\n        \"NNP\"\n    ], \n    \"Piazzo\": [\n        \"NNP\"\n    ], \n    \"boilers\": [\n        \"NNS\"\n    ], \n    \"seventeen-inch\": [\n        \"JJ\"\n    ], \n    \"art-dealing\": [\n        \"JJ\"\n    ], \n    \"substitutionary\": [\n        \"JJ\"\n    ], \n    \"indulgences\": [\n        \"NNS\"\n    ], \n    \"tailor\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"food-shop\": [\n        \"JJ\"\n    ], \n    \"primates\": [\n        \"NNS\"\n    ], \n    \"treachery\": [\n        \"NN\"\n    ], \n    \"LXi\": [\n        \"NNP\"\n    ], \n    \"a-Discounted\": [\n        \"JJ\", \n        \"VBN\", \n        \"LS|JJ\"\n    ], \n    \"Laurentiis\": [\n        \"NNP\"\n    ], \n    \"mewed\": [\n        \"VBD\"\n    ], \n    \"pinnacle\": [\n        \"NN\"\n    ], \n    \"surrealism\": [\n        \"NN\"\n    ], \n    \"Shantung\": [\n        \"NNP\"\n    ], \n    \"Officielle\": [\n        \"NNP\"\n    ], \n    \"Mirage\": [\n        \"NNP\"\n    ], \n    \"Foulds\": [\n        \"NNP\"\n    ], \n    \"non-writers\": [\n        \"NNS\"\n    ], \n    \"printing-equipment\": [\n        \"NN\"\n    ], \n    \"Loggia\": [\n        \"NNP\"\n    ], \n    \"BELL\": [\n        \"NNP\"\n    ], \n    \"Fontana\": [\n        \"NNP\"\n    ], \n    \"ancestral\": [\n        \"JJ\"\n    ], \n    \"violated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sleepily\": [\n        \"RB\"\n    ], \n    \"simmering\": [\n        \"VBG\"\n    ], \n    \"violates\": [\n        \"VBZ\"\n    ], \n    \"Voyager\": [\n        \"NNP\"\n    ], \n    \"fails\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Frayne\": [\n        \"NNP\"\n    ], \n    \"bicyclist\": [\n        \"NN\"\n    ], \n    \"charters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"seers\": [\n        \"NNS\"\n    ], \n    \"Trunk\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bangalore\": [\n        \"NNP\"\n    ], \n    \"sackes\": [\n        \"NNS\"\n    ], \n    \"sacker\": [\n        \"NN\"\n    ], \n    \"Loopholes\": [\n        \"NNS\"\n    ], \n    \"receivers\": [\n        \"NNS\"\n    ], \n    \"best-run\": [\n        \"JJS\"\n    ], \n    \"Northumberland\": [\n        \"NN\"\n    ], \n    \"self-serving\": [\n        \"JJ\"\n    ], \n    \"disdainful\": [\n        \"JJ\"\n    ], \n    \"floundering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"bang-sashes\": [\n        \"NNS\"\n    ], \n    \"package-sort\": [\n        \"JJ\"\n    ], \n    \"dutiful\": [\n        \"JJ\"\n    ], \n    \"Ga\": [\n        \"NNP\"\n    ], \n    \"STOCK-INDEX\": [\n        \"NN\"\n    ], \n    \"Songs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"bunko\": [\n        \"NN\"\n    ], \n    \"Falegnami\": [\n        \"NNP\"\n    ], \n    \"discussions..\": [\n        \"NNS\"\n    ], \n    \"poivre\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"successes\": [\n        \"NNS\"\n    ], \n    \"darin\": [\n        \"JJ\"\n    ], \n    \"shortstop\": [\n        \"NN\"\n    ], \n    \"Phamaceuticals\": [\n        \"NNPS\"\n    ], \n    \"energies\": [\n        \"NNS\"\n    ], \n    \"Imbrium\": [\n        \"NNP\"\n    ], \n    \"Replies\": [\n        \"NNS\"\n    ], \n    \"Smiling\": [\n        \"VBG\"\n    ], \n    \"bunks\": [\n        \"NNS\"\n    ], \n    \"authoring\": [\n        \"VBG\"\n    ], \n    \"Ransom\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"Flaws\": [\n        \"NNS\"\n    ], \n    \"air-separation\": [\n        \"NN\"\n    ], \n    \"percussionist\": [\n        \"NN\"\n    ], \n    \"physician-patient\": [\n        \"JJ\"\n    ], \n    \"after-effects\": [\n        \"NNS\"\n    ], \n    \"robotics\": [\n        \"NNS\"\n    ], \n    \"Leatherneck\": [\n        \"NNP\"\n    ], \n    \"sampling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Luftfahrt\": [\n        \"NNP\"\n    ], \n    \"Sciences\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"pole\": [\n        \"NN\"\n    ], \n    \"colon\": [\n        \"NN\"\n    ], \n    \"initialing\": [\n        \"VBG\"\n    ], \n    \"polo\": [\n        \"NN\"\n    ], \n    \"unleaded\": [\n        \"JJ\"\n    ], \n    \"poll\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Events\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"runaway\": [\n        \"JJ\", \n        \"VBN\", \n        \"NN\"\n    ], \n    \"squaring\": [\n        \"VBG\"\n    ], \n    \"lifes\": [\n        \"NNS\"\n    ], \n    \"lifer\": [\n        \"NN\"\n    ], \n    \"Kroczek\": [\n        \"NNP\"\n    ], \n    \"Bacillus\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"high-profit\": [\n        \"JJ\"\n    ], \n    \"withstanding\": [\n        \"VBG\"\n    ], \n    \"Downgrades\": [\n        \"NNS\"\n    ], \n    \"filmmakers\": [\n        \"NNS\"\n    ], \n    \"gaited\": [\n        \"JJ\"\n    ], \n    \"X-tend\": [\n        \"NN\"\n    ], \n    \"Fall-in\": [\n        \"NNP\"\n    ], \n    \"Knee\": [\n        \"NN\"\n    ], \n    \"carryforwards\": [\n        \"NNS\"\n    ], \n    \"hardly\": [\n        \"RB\"\n    ], \n    \"Downgraded\": [\n        \"VBN\"\n    ], \n    \"WAO\": [\n        \"NNP\"\n    ], \n    \"Kortunov\": [\n        \"NNP\"\n    ], \n    \"product-line\": [\n        \"NN\"\n    ], \n    \"WAC\": [\n        \"NNP\"\n    ], \n    \"Wedged\": [\n        \"VBN\"\n    ], \n    \"stupendously\": [\n        \"RB\"\n    ], \n    \"Shevack\": [\n        \"NNP\"\n    ], \n    \"virutally\": [\n        \"RB\"\n    ], \n    \"WAZ\": [\n        \"NNP\"\n    ], \n    \"cresting\": [\n        \"VBG\"\n    ], \n    \"WAS\": [\n        \"VBD\"\n    ], \n    \"WAR\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"paying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"libelous\": [\n        \"JJ\"\n    ], \n    \"McLeod\": [\n        \"NNP\"\n    ], \n    \"postscript\": [\n        \"NN\"\n    ], \n    \"amend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"two-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"explicitness\": [\n        \"NN\"\n    ], \n    \"Reservists\": [\n        \"NNPS\"\n    ], \n    \"straitjacketed\": [\n        \"JJ\"\n    ], \n    \"Someday\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"shrieks\": [\n        \"NNS\"\n    ], \n    \"Preseault\": [\n        \"NNP\"\n    ], \n    \"trackless\": [\n        \"JJ\"\n    ], \n    \"SS-24s\": [\n        \"NNPS\"\n    ], \n    \"heelers\": [\n        \"NNS\"\n    ], \n    \"snaking\": [\n        \"VBG\"\n    ], \n    \"Shingles\": [\n        \"NNS\"\n    ], \n    \"clutter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"buy\\\\\": [\n        \"JJ\"\n    ], \n    \"ETHICS\": [\n        \"NNS\"\n    ], \n    \"Ozick\": [\n        \"NNP\"\n    ], \n    \"Alyce\": [\n        \"NNP\"\n    ], \n    \"volition\": [\n        \"NN\"\n    ], \n    \"helmet\": [\n        \"NN\"\n    ], \n    \"resentful\": [\n        \"JJ\"\n    ], \n    \"Generic-Drug\": [\n        \"JJ\"\n    ], \n    \"Cen-Tennial\": [\n        \"NNP\"\n    ], \n    \"alphabet\": [\n        \"NN\"\n    ], \n    \"unrolled\": [\n        \"JJ\"\n    ], \n    \"coarsely\": [\n        \"RB\"\n    ], \n    \"shifts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Brotherhood\": [\n        \"NNP\"\n    ], \n    \"Beaverton\": [\n        \"NNP\"\n    ], \n    \"less-popular\": [\n        \"JJ\"\n    ], \n    \"Silver\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"toweling\": [\n        \"NN\"\n    ], \n    \"Konowitch\": [\n        \"NNP\"\n    ], \n    \"Kevlar\": [\n        \"NNP\"\n    ], \n    \"libido\": [\n        \"NN\"\n    ], \n    \"booths\": [\n        \"NNS\"\n    ], \n    \"Pullmans\": [\n        \"NNS\"\n    ], \n    \"ninefold\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"producers\": [\n        \"NNS\"\n    ], \n    \"Idle\": [\n        \"JJ\"\n    ], \n    \"half-staff\": [\n        \"JJ\"\n    ], \n    \"weaknesses\": [\n        \"NNS\"\n    ], \n    \"CANDIDATES\": [\n        \"NNS\"\n    ], \n    \"threaded\": [\n        \"VBN\"\n    ], \n    \"Struthers\": [\n        \"NNP\"\n    ], \n    \"insurgents.\": [\n        \"NNS\"\n    ], \n    \"Asset-management\": [\n        \"JJ\"\n    ], \n    \"Amazonia\": [\n        \"NNP\"\n    ], \n    \"Tigrean\": [\n        \"JJ\"\n    ], \n    \"C.O.G.\": [\n        \"NNP\"\n    ], \n    \"DAWDLING\": [\n        \"NN\"\n    ], \n    \"seventy-two\": [\n        \"JJ\"\n    ], \n    \"Byting\": [\n        \"VBG\"\n    ], \n    \"guided\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Krapp\": [\n        \"NNP\"\n    ], \n    \"pariah\": [\n        \"NN\"\n    ], \n    \"differentiation\": [\n        \"NN\"\n    ], \n    \"laser-read\": [\n        \"JJ\"\n    ], \n    \"guides\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cowan\": [\n        \"NNP\"\n    ], \n    \"overlapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"assemblages\": [\n        \"NNS\"\n    ], \n    \"Tropicana\": [\n        \"NNP\"\n    ], \n    \"Dome\": [\n        \"NNP\"\n    ], \n    \"wall\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"handclasp\": [\n        \"NN\"\n    ], \n    \"Scores\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"anti-profiteering\": [\n        \"JJ\"\n    ], \n    \"scheduled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"POTABLES\": [\n        \"NNS\"\n    ], \n    \"loaned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tale\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"heterozygous\": [\n        \"JJ\"\n    ], \n    \"headroom\": [\n        \"NN\"\n    ], \n    \"coaxial\": [\n        \"JJ\"\n    ], \n    \"Crafts\": [\n        \"NNPS\"\n    ], \n    \"JVC\": [\n        \"NNP\"\n    ], \n    \"Tall\": [\n        \"JJ\"\n    ], \n    \"left-hand\": [\n        \"JJ\"\n    ], \n    \"sheared\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"unnerving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Sonatas\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Asset-backed\": [\n        \"JJ\"\n    ], \n    \"tape-delay\": [\n        \"NN\"\n    ], \n    \"Revised\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Finally\": [\n        \"RB\"\n    ], \n    \"Datatronic\": [\n        \"NNP\"\n    ], \n    \"irreproducibility\": [\n        \"NN\"\n    ], \n    \"arrays\": [\n        \"NNS\"\n    ], \n    \"junk-LBO\": [\n        \"JJ\"\n    ], \n    \"Something\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"surgicenters\": [\n        \"NNS\"\n    ], \n    \"recalls\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Boasts\": [\n        \"VBZ\"\n    ], \n    \"outpaces\": [\n        \"VBZ\"\n    ], \n    \"mileage-based\": [\n        \"JJ\"\n    ], \n    \"Studds\": [\n        \"NNP\"\n    ], \n    \"Army\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fluttered\": [\n        \"VBD\"\n    ], \n    \"Roslev\": [\n        \"NNP\"\n    ], \n    \"Arms\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Brierley-controlled\": [\n        \"JJ\"\n    ], \n    \"Capote\": [\n        \"NNP\"\n    ], \n    \"outpaced\": [\n        \"VBD\", \n        \"NN\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"sociologists\": [\n        \"NNS\"\n    ], \n    \"tonally\": [\n        \"RB\"\n    ], \n    \"informant\": [\n        \"NN\"\n    ], \n    \"top-secret\": [\n        \"JJ\"\n    ], \n    \"adjuncts\": [\n        \"NNS\"\n    ], \n    \"floured\": [\n        \"VBN\"\n    ], \n    \"tintable\": [\n        \"JJ\"\n    ], \n    \"incidentals\": [\n        \"NNS\"\n    ], \n    \"Sacrifice\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"already-tense\": [\n        \"JJ\"\n    ], \n    \"fusty\": [\n        \"JJ\"\n    ], \n    \"Ceil\": [\n        \"NNP\"\n    ], \n    \"colchicum\": [\n        \"NN\"\n    ], \n    \"nutty\": [\n        \"JJ\"\n    ], \n    \"Disc\": [\n        \"NNP\"\n    ], \n    \"compulsion\": [\n        \"NN\"\n    ], \n    \"quitting\": [\n        \"VBG\"\n    ], \n    \"calmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Orchard\": [\n        \"NNP\"\n    ], \n    \"Wilmington\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"communicate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"nudist\": [\n        \"JJ\"\n    ], \n    \"outreach\": [\n        \"NN\"\n    ], \n    \"Venetian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"anti-Americanism\": [\n        \"NN\"\n    ], \n    \"Roch\": [\n        \"NNP\"\n    ], \n    \"calmer\": [\n        \"JJR\"\n    ], \n    \"Rock\": [\n        \"NNP\"\n    ], \n    \"flattest\": [\n        \"JJS\"\n    ], \n    \"Ramillies\": [\n        \"NNP\"\n    ], \n    \"writer\\\\/producers\": [\n        \"NNS\"\n    ], \n    \"on\": [\n        \"IN\", \n        \"NNP\", \n        \"RBR\", \n        \"JJ\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"tear-filled\": [\n        \"JJ\"\n    ], \n    \"ol\": [\n        \"JJ\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"demarcation\": [\n        \"NN\"\n    ], \n    \"oh\": [\n        \"UH\"\n    ], \n    \"of\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"indestructibility\": [\n        \"NN\"\n    ], \n    \"reinforcing\": [\n        \"VBG\"\n    ], \n    \"Inverness\": [\n        \"NNP\"\n    ], \n    \"subdues\": [\n        \"VBZ\"\n    ], \n    \"oz\": [\n        \"NN\"\n    ], \n    \"ox\": [\n        \"NN\"\n    ], \n    \"os\": [\n        \"NN\"\n    ], \n    \"Souvanna\": [\n        \"NNP\"\n    ], \n    \"op\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"amber\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jordon\": [\n        \"NNP\"\n    ], \n    \"alarmism\": [\n        \"NN\"\n    ], \n    \"garnet\": [\n        \"NN\"\n    ], \n    \"Gebhard\": [\n        \"NNP\"\n    ], \n    \"Backers\": [\n        \"NNS\"\n    ], \n    \"garner\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"bail-jumping\": [\n        \"NN\"\n    ], \n    \"accountants...\": [\n        \":\"\n    ], \n    \"abrogate\": [\n        \"VB\"\n    ], \n    \"Aronson\": [\n        \"NNP\"\n    ], \n    \"Bowen\": [\n        \"NNP\"\n    ], \n    \"strictly\": [\n        \"RB\"\n    ], \n    \"Tailors\": [\n        \"NNP\"\n    ], \n    \"hazards\": [\n        \"NNS\"\n    ], \n    \"racism\": [\n        \"NN\"\n    ], \n    \"strict\": [\n        \"JJ\"\n    ], \n    \"racist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Export-Import\": [\n        \"NNP\"\n    ], \n    \"flaunt-your-wealth\": [\n        \"JJ\"\n    ], \n    \"extolled\": [\n        \"VBD\"\n    ], \n    \"Hospital-Cornell\": [\n        \"NNP\"\n    ], \n    \"condone\": [\n        \"VB\"\n    ], \n    \"equated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Verses\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"jua\": [\n        \"FW\"\n    ], \n    \"jug\": [\n        \"NN\"\n    ], \n    \"ABCs\": [\n        \"NNS\"\n    ], \n    \"idea\": [\n        \"NN\"\n    ], \n    \"soprano\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"strenuous\": [\n        \"JJ\"\n    ], \n    \"rosebush\": [\n        \"NN\"\n    ], \n    \"subcontractors\": [\n        \"NNS\"\n    ], \n    \"Media-buying\": [\n        \"NN\"\n    ], \n    \"terminus\": [\n        \"NN\"\n    ], \n    \"applying\": [\n        \"VBG\"\n    ], \n    \"street-corner\": [\n        \"JJ\"\n    ], \n    \"pork-barrel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"gherkins\": [\n        \"NNS\"\n    ], \n    \"Joanna\": [\n        \"NNP\"\n    ], \n    \"bulb-making\": [\n        \"JJ\"\n    ], \n    \"anti-alcohol\": [\n        \"JJ\"\n    ], \n    \"five-hundred-year-old\": [\n        \"JJ\"\n    ], \n    \"Enemies\": [\n        \"NNS\"\n    ], \n    \"castles\": [\n        \"NNS\"\n    ], \n    \"south-of-the-border\": [\n        \"JJ\"\n    ], \n    \"politico\": [\n        \"NN\"\n    ], \n    \"Imelda\": [\n        \"NNP\"\n    ], \n    \"endearment\": [\n        \"NN\"\n    ], \n    \"Armenians\": [\n        \"NNPS\"\n    ], \n    \"x-There\": [\n        \"EX\", \n        \"LS|EX\"\n    ], \n    \"revamps\": [\n        \"VBZ\"\n    ], \n    \"lightly\": [\n        \"RB\"\n    ], \n    \"drawin\": [\n        \"VBG\"\n    ], \n    \"politics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"unteach\": [\n        \"VB\"\n    ], \n    \"beds\": [\n        \"NNS\"\n    ], \n    \"Pentagonese\": [\n        \"NNP\"\n    ], \n    \"bicycling\": [\n        \"NN\"\n    ], \n    \"Doman\": [\n        \"NNP\"\n    ], \n    \"Physicist\": [\n        \"NNP\"\n    ], \n    \"insurance\": [\n        \"NN\"\n    ], \n    \"Slides\": [\n        \"NNS\"\n    ], \n    \"Slider\": [\n        \"NNP\"\n    ], \n    \"hellfire\": [\n        \"NN\"\n    ], \n    \"unneeded\": [\n        \"JJ\"\n    ], \n    \"dismayed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"auto-parts\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"ICI\": [\n        \"NNP\"\n    ], \n    \"Suffers\": [\n        \"VBZ\"\n    ], \n    \"ICN\": [\n        \"NNP\"\n    ], \n    \"ICM\": [\n        \"NNP\"\n    ], \n    \"superconductivity\": [\n        \"NN\"\n    ], \n    \"ICC\": [\n        \"NNP\"\n    ], \n    \"ICA\": [\n        \"NNP\"\n    ], \n    \"gunplay\": [\n        \"NN\"\n    ], \n    \"ICG\": [\n        \"NNP\"\n    ], \n    \"ICE\": [\n        \"NNP\"\n    ], \n    \"fetid\": [\n        \"JJ\"\n    ], \n    \"polyisocyanates\": [\n        \"NNS\"\n    ], \n    \"Franyo\": [\n        \"NNP\"\n    ], \n    \"Cromwellian\": [\n        \"JJ\"\n    ], \n    \"ICS\": [\n        \"NNP\"\n    ], \n    \"Cliffs\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"unconstitutionally\": [\n        \"RB\"\n    ], \n    \"illusive\": [\n        \"JJ\"\n    ], \n    \"Caplan\": [\n        \"NNP\"\n    ], \n    \"Azlant\": [\n        \"NNP\"\n    ], \n    \"Surplus\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Eminonu\": [\n        \"NNP\"\n    ], \n    \"Nurses\": [\n        \"NNS\"\n    ], \n    \"multimegaton\": [\n        \"JJ\"\n    ], \n    \"odds\": [\n        \"NNS\"\n    ], \n    \"telex\": [\n        \"NN\"\n    ], \n    \"unscathed\": [\n        \"JJ\"\n    ], \n    \"GATT\": [\n        \"NNP\"\n    ], \n    \"Likely\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"rimmed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Primarily\": [\n        \"RB\"\n    ], \n    \"phlegm\": [\n        \"NN\"\n    ], \n    \"Fame\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Theoretically\": [\n        \"RB\"\n    ], \n    \"underutilized\": [\n        \"VBN\"\n    ], \n    \"migrated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Edison\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Japan-U.S\": [\n        \"NNP\"\n    ], \n    \"sluggers\": [\n        \"NNS\"\n    ], \n    \"Faint\": [\n        \"JJ\"\n    ], \n    \"Toto\": [\n        \"NNP\"\n    ], \n    \"Tots\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"surgical\": [\n        \"JJ\"\n    ], \n    \"migrates\": [\n        \"VBZ\"\n    ], \n    \"unmoved\": [\n        \"JJ\"\n    ], \n    \"long-run\": [\n        \"JJ\"\n    ], \n    \"Hondius\": [\n        \"NNP\"\n    ], \n    \"longstrained\": [\n        \"VBN\"\n    ], \n    \"defaulters\": [\n        \"NNS\"\n    ], \n    \"Neo-Romanticism\": [\n        \"NNP\"\n    ], \n    \"Custodian\": [\n        \"NNP\"\n    ], \n    \"assuage\": [\n        \"VB\"\n    ], \n    \"incisiveness\": [\n        \"NN\"\n    ], \n    \"participants\": [\n        \"NNS\"\n    ], \n    \"diluting\": [\n        \"VBG\"\n    ], \n    \"Mirsky\": [\n        \"NNP\"\n    ], \n    \"program\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"depending\": [\n        \"VBG\"\n    ], \n    \"viz.\": [\n        \"NN\"\n    ], \n    \"presentation\": [\n        \"NN\"\n    ], \n    \"fill-in\": [\n        \"JJ\"\n    ], \n    \"positivists\": [\n        \"NNS\"\n    ], \n    \"woman\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"equivocal\": [\n        \"JJ\"\n    ], \n    \"sparkplugs\": [\n        \"NNS\"\n    ], \n    \"thin-lipped\": [\n        \"JJ\"\n    ], \n    \"induce\": [\n        \"VB\"\n    ], \n    \"Raeder\": [\n        \"NNP\"\n    ], \n    \"Classes\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Morvillo\": [\n        \"NNP\"\n    ], \n    \"soles\": [\n        \"NNS\"\n    ], \n    \"rebounds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"NPL\": [\n        \"NNP\"\n    ], \n    \"writing-instruments\": [\n        \"JJ\"\n    ], \n    \"wave-travel\": [\n        \"JJ\"\n    ], \n    \"unlike\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Penang\": [\n        \"NNP\"\n    ], \n    \"sanctify\": [\n        \"VB\"\n    ], \n    \"grandfather\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Aiding\": [\n        \"NNP\"\n    ], \n    \"Kolsrud\": [\n        \"NNP\"\n    ], \n    \"vibes\": [\n        \"NNS\"\n    ], \n    \"Motorcycle\": [\n        \"NNP\"\n    ], \n    \"Pearlstine\": [\n        \"NNP\"\n    ], \n    \"conflicted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"coxcombs\": [\n        \"NNS\"\n    ], \n    \"Digate\": [\n        \"NNP\"\n    ], \n    \"manslaughter\": [\n        \"NN\"\n    ], \n    \"chimera-chasing\": [\n        \"JJ\"\n    ], \n    \"Oce-Van\": [\n        \"NNP\"\n    ], \n    \"rats\": [\n        \"NNS\"\n    ], \n    \"Thieme\": [\n        \"NNP\"\n    ], \n    \"Proudfoot\": [\n        \"NNP\"\n    ], \n    \"rate\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"anti-contamination\": [\n        \"JJ\"\n    ], \n    \"Initiation\": [\n        \"NN\"\n    ], \n    \"rata\": [\n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"CALLIOPE\": [\n        \"NNP\"\n    ], \n    \"surprise-filled\": [\n        \"JJ\"\n    ], \n    \"new-generation\": [\n        \"NN\"\n    ], \n    \"sutures\": [\n        \"NNS\"\n    ], \n    \"hesitation\": [\n        \"NN\"\n    ], \n    \"Headly\": [\n        \"NNP\"\n    ], \n    \"ophthalmologists\": [\n        \"NNS\"\n    ], \n    \"Betty\": [\n        \"NNP\"\n    ], \n    \"woodworking\": [\n        \"NN\"\n    ], \n    \"Eveready\": [\n        \"NNP\"\n    ], \n    \"barbecue\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"interlaced\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"guns\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"prosaic\": [\n        \"JJ\"\n    ], \n    \"KISSINGER\": [\n        \"NNP\"\n    ], \n    \"eligibility\": [\n        \"NN\"\n    ], \n    \"LOAN\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Walitzee\": [\n        \"NNP\"\n    ], \n    \"overactive\": [\n        \"JJ\"\n    ], \n    \"Redeemer\": [\n        \"NNP\"\n    ], \n    \"retraining\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"bullishly\": [\n        \"RB\"\n    ], \n    \"vice-presidents\": [\n        \"NNS\"\n    ], \n    \"Ogonyok\": [\n        \"NNP\"\n    ], \n    \"misinterpret\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"caravans\": [\n        \"NNS\"\n    ], \n    \"ornithological\": [\n        \"JJ\"\n    ], \n    \"reincorporating\": [\n        \"VBG\"\n    ], \n    \"Accomplishments\": [\n        \"NNS\"\n    ], \n    \"sculptural\": [\n        \"JJ\"\n    ], \n    \"drunkards\": [\n        \"NNS\"\n    ], \n    \"Grayson\": [\n        \"NNP\"\n    ], \n    \"reshufflings\": [\n        \"NNS\"\n    ], \n    \"cookfire\": [\n        \"NN\"\n    ], \n    \"timber-state\": [\n        \"JJ\"\n    ], \n    \"thankfully\": [\n        \"RB\"\n    ], \n    \"Wendel\": [\n        \"NNP\"\n    ], \n    \"still-raging\": [\n        \"VBG\"\n    ], \n    \"should-be\": [\n        \"JJ\"\n    ], \n    \"controversialists\": [\n        \"NNS\"\n    ], \n    \"Wendee\": [\n        \"NNP\"\n    ], \n    \"Acres\": [\n        \"NNP\"\n    ], \n    \"screens\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"impolitic\": [\n        \"JJ\"\n    ], \n    \"armoire\": [\n        \"NN\"\n    ], \n    \"major-league\": [\n        \"JJ\"\n    ], \n    \"feedings\": [\n        \"NNS\"\n    ], \n    \"Aspenstrom\": [\n        \"NNP\"\n    ], \n    \"Arctic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"viscoelastic\": [\n        \"JJ\"\n    ], \n    \"forisque\": [\n        \"FW\"\n    ], \n    \"tarpaulin\": [\n        \"NN\"\n    ], \n    \"interception\": [\n        \"NN\"\n    ], \n    \"piggyback\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"inlay\": [\n        \"NN\"\n    ], \n    \"Pardus\": [\n        \"NNP\"\n    ], \n    \"Katangans\": [\n        \"NNPS\"\n    ], \n    \"converters\": [\n        \"NNS\"\n    ], \n    \"Intek\": [\n        \"NNP\"\n    ], \n    \"seismograph\": [\n        \"NN\"\n    ], \n    \"Intel\": [\n        \"NNP\"\n    ], \n    \"CNCA\": [\n        \"NNP\"\n    ], \n    \"golly\": [\n        \"UH\"\n    ], \n    \"drips\": [\n        \"VBZ\"\n    ], \n    \"Intensification\": [\n        \"NN\"\n    ], \n    \"draughts\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Inns\": [\n        \"NNPS\"\n    ], \n    \"Aden\": [\n        \"NNP\"\n    ], \n    \"Inter\": [\n        \"NNP\"\n    ], \n    \"draughty\": [\n        \"JJ\"\n    ], \n    \"end-of-school\": [\n        \"JJ\"\n    ], \n    \"eventuality\": [\n        \"NN\"\n    ], \n    \"debates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bystanders\": [\n        \"NNS\"\n    ], \n    \"Expanding\": [\n        \"VBG\"\n    ], \n    \"equation\": [\n        \"NN\"\n    ], \n    \"policemen\": [\n        \"NNS\"\n    ], \n    \"recast\": [\n        \"VB\"\n    ], \n    \"debated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"exposure-time\": [\n        \"NN\"\n    ], \n    \"Wade\": [\n        \"NNP\"\n    ], \n    \"ROUGH\": [\n        \"JJ\"\n    ], \n    \"bugaboos\": [\n        \"NNS\"\n    ], \n    \"Wada\": [\n        \"NNP\"\n    ], \n    \"evangelicals\": [\n        \"NNS\"\n    ], \n    \"matchmaking\": [\n        \"NN\"\n    ], \n    \"dweller\": [\n        \"NN\"\n    ], \n    \"Baa-2\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Baa-3\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"cosmological\": [\n        \"JJ\"\n    ], \n    \"Baa-1\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Intergraph\": [\n        \"NNP\"\n    ], \n    \"sitcom\": [\n        \"NN\"\n    ], \n    \"Rainey\": [\n        \"NNP\"\n    ], \n    \"arise\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cultivate\": [\n        \"VB\"\n    ], \n    \"anti-monopoly\": [\n        \"JJ\"\n    ], \n    \"offspring\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Arps\": [\n        \"NNP\"\n    ], \n    \"packaged-goods\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"transduction\": [\n        \"NN\"\n    ], \n    \"HomeCare\": [\n        \"NNP\"\n    ], \n    \"chip-making\": [\n        \"NN\"\n    ], \n    \"desperation\": [\n        \"NN\"\n    ], \n    \"Bonus\": [\n        \"NNP\"\n    ], \n    \"highest-rated\": [\n        \"JJ\"\n    ], \n    \"cleansing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"motels\": [\n        \"NNS\"\n    ], \n    \"nitwits\": [\n        \"NNS\"\n    ], \n    \"Tufts\": [\n        \"NNP\"\n    ], \n    \"cytokine\": [\n        \"NN|JJ\"\n    ], \n    \"draw-down\": [\n        \"NN\"\n    ], \n    \"record-high\": [\n        \"JJ\"\n    ], \n    \"emulate\": [\n        \"VB\"\n    ], \n    \"Pointers\": [\n        \"NNS\"\n    ], \n    \"Atkisson\": [\n        \"NNP\"\n    ], \n    \"Laue\": [\n        \"NNP\"\n    ], \n    \"corkscrew\": [\n        \"NN\"\n    ], \n    \"Laux\": [\n        \"NNP\"\n    ], \n    \"indomitable\": [\n        \"JJ\"\n    ], \n    \"Perluss\": [\n        \"NNP\"\n    ], \n    \"capitalize\": [\n        \"VB\"\n    ], \n    \"rotund\": [\n        \"JJ\"\n    ], \n    \"WTVJ\": [\n        \"NNP\"\n    ], \n    \"Davises\": [\n        \"NNPS\"\n    ], \n    \"Everyone\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Whittenburg\": [\n        \"NNP\"\n    ], \n    \"automobiles\": [\n        \"NNS\"\n    ], \n    \"export-bound\": [\n        \"JJ\"\n    ], \n    \"strutting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"specifying\": [\n        \"VBG\"\n    ], \n    \"agnostics\": [\n        \"NNS\"\n    ], \n    \"State-financed\": [\n        \"JJ\"\n    ], \n    \"rentals\": [\n        \"NNS\"\n    ], \n    \"Linus\": [\n        \"NNP\"\n    ], \n    \"unhip\": [\n        \"JJ\"\n    ], \n    \"Siepi\": [\n        \"NNP\"\n    ], \n    \"schillings\": [\n        \"NNS\"\n    ], \n    \"McN\": [\n        \"NNP\"\n    ], \n    \"sloop\": [\n        \"NN\"\n    ], \n    \"Interesting\": [\n        \"JJ\"\n    ], \n    \"anachronistically\": [\n        \"RB\"\n    ], \n    \"Brazos\": [\n        \"NNP\"\n    ], \n    \"trackage\": [\n        \"NN\"\n    ], \n    \"underwhelmed\": [\n        \"VBN\"\n    ], \n    \"Anglo-Jewish\": [\n        \"JJ\"\n    ], \n    \"paunchy\": [\n        \"JJ\"\n    ], \n    \"concentric\": [\n        \"JJ\"\n    ], \n    \"Arias\": [\n        \"NNP\"\n    ], \n    \"Smithfield\": [\n        \"NNP\"\n    ], \n    \"Zhaoxing\": [\n        \"NNP\"\n    ], \n    \"utilizes\": [\n        \"VBZ\"\n    ], \n    \"Lindner\": [\n        \"NNP\"\n    ], \n    \"sky-reaching\": [\n        \"JJ\"\n    ], \n    \"Ohira\": [\n        \"NNP\"\n    ], \n    \"Fitzhugh\": [\n        \"NNP\"\n    ], \n    \"glide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"environmentalist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Carnegie\": [\n        \"NNP\"\n    ], \n    \"environmentalism\": [\n        \"NN\"\n    ], \n    \"nonproductive\": [\n        \"JJ\"\n    ], \n    \"deficit-ridden\": [\n        \"JJ\"\n    ], \n    \"muddied\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"khaki-bound\": [\n        \"JJ\"\n    ], \n    \"fully-diluted\": [\n        \"JJ\"\n    ], \n    \"Karol\": [\n        \"NN\"\n    ], \n    \"Bandar\": [\n        \"NNP\"\n    ], \n    \"speechless\": [\n        \"JJ\"\n    ], \n    \"units\": [\n        \"NNS\"\n    ], \n    \"evaded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tualatin\": [\n        \"NNP\"\n    ], \n    \"playthings\": [\n        \"NNS\"\n    ], \n    \"Karos\": [\n        \"NNP\"\n    ], \n    \"bigger\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Amadou-Mahtar\": [\n        \"NNP\"\n    ], \n    \"CORNFELD\": [\n        \"NNP\"\n    ], \n    \"non-automotive\": [\n        \"JJ\"\n    ], \n    \"Masons\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"utilized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cantonment\": [\n        \"NN\"\n    ], \n    \"Scottish\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"short-sellers\": [\n        \"NNS\"\n    ], \n    \"nab\": [\n        \"VB\"\n    ], \n    \"aspens\": [\n        \"NNS\"\n    ], \n    \"Display\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lobar\": [\n        \"NNP\"\n    ], \n    \"Militant\": [\n        \"JJ\"\n    ], \n    \"modernized\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"knock-out\": [\n        \"JJ\"\n    ], \n    \"Rhea\": [\n        \"NNP\"\n    ], \n    \"Donor\": [\n        \"NN\"\n    ], \n    \"seditious\": [\n        \"JJ\"\n    ], \n    \"Chaplin-like\": [\n        \"JJ\"\n    ], \n    \"sexism\": [\n        \"NN\"\n    ], \n    \"waste-energy\": [\n        \"NN\"\n    ], \n    \"marketplaces\": [\n        \"NNS\"\n    ], \n    \"Third\": [\n        \"NNP\", \n        \"JJ\", \n        \"LS\", \n        \"RB\"\n    ], \n    \"disbelieved\": [\n        \"VBD\"\n    ], \n    \"at-market\": [\n        \"JJ\"\n    ], \n    \"insignificances\": [\n        \"NNS\"\n    ], \n    \"Samuel\": [\n        \"NNP\"\n    ], \n    \"pasted-in\": [\n        \"JJ\"\n    ], \n    \"puckering\": [\n        \"VBG\"\n    ], \n    \"Nightly\": [\n        \"NNP\"\n    ], \n    \"PHONE\": [\n        \"NNP\"\n    ], \n    \"Wazir\": [\n        \"NNP\"\n    ], \n    \"paradise\": [\n        \"NN\"\n    ], \n    \"postponements\": [\n        \"NNS\"\n    ], \n    \"base-stealing\": [\n        \"JJ\"\n    ], \n    \"evader\": [\n        \"NN\"\n    ], \n    \"Deane\": [\n        \"NNP\"\n    ], \n    \"hailing\": [\n        \"VBG\"\n    ], \n    \"boldness\": [\n        \"NN\"\n    ], \n    \"Malt\": [\n        \"NNP\"\n    ], \n    \"gut\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"experimenting\": [\n        \"VBG\"\n    ], \n    \"Doolittle\": [\n        \"NNP\"\n    ], \n    \"Year-round\": [\n        \"RB\"\n    ], \n    \"Deans\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mali\": [\n        \"NNP\"\n    ], \n    \"attendant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Male\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bloch\": [\n        \"NNP\"\n    ], \n    \"Block\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uprising\": [\n        \"NN\"\n    ], \n    \"fiat\": [\n        \"NN\"\n    ], \n    \"Addicts\": [\n        \"NNS\"\n    ], \n    \"coaches\": [\n        \"NNS\"\n    ], \n    \"Rachelle\": [\n        \"NNP\"\n    ], \n    \"soil-bearing\": [\n        \"JJ\"\n    ], \n    \"THIEVES\": [\n        \"NNS\"\n    ], \n    \"high-horsepower\": [\n        \"JJ\"\n    ], \n    \"turne\": [\n        \"VB\"\n    ], \n    \"solidly\": [\n        \"RB\"\n    ], \n    \"unhealthy\": [\n        \"JJ\"\n    ], \n    \"four-sided\": [\n        \"JJ\"\n    ], \n    \"Mendoza\": [\n        \"NNP\"\n    ], \n    \"Bethle\": [\n        \"NN\"\n    ], \n    \"rankles\": [\n        \"VBZ\"\n    ], \n    \"SUSPECT\": [\n        \"JJ\"\n    ], \n    \"defects\": [\n        \"NNS\"\n    ], \n    \"Refsum\": [\n        \"NNP\"\n    ], \n    \"pedal\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Drugstore\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"whale\": [\n        \"NN\"\n    ], \n    \"overrode\": [\n        \"VBD\"\n    ], \n    \"moan\": [\n        \"VB\"\n    ], \n    \"utilization\": [\n        \"NN\"\n    ], \n    \"edginess\": [\n        \"NN\"\n    ], \n    \"rails\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"collar\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"prescient\": [\n        \"JJ\"\n    ], \n    \"Cummings\": [\n        \"NNP\"\n    ], \n    \"Newer\": [\n        \"JJR\"\n    ], \n    \"reverence\": [\n        \"NN\"\n    ], \n    \"moat\": [\n        \"NN\"\n    ], \n    \"unchecked\": [\n        \"JJ\"\n    ], \n    \"frustrated...\": [\n        \":\"\n    ], \n    \"Viewers\": [\n        \"NNS\"\n    ], \n    \"Cinzano\": [\n        \"NNP\"\n    ], \n    \"Crabs\": [\n        \"NNP\"\n    ], \n    \"pains\": [\n        \"NNS\"\n    ], \n    \"SINCE\": [\n        \"IN\"\n    ], \n    \"public-opinion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ottawa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Arcilla\": [\n        \"NNP\"\n    ], \n    \"rustlings\": [\n        \"NNS\"\n    ], \n    \"Crabb\": [\n        \"NNP\"\n    ], \n    \"ferment\": [\n        \"NN\"\n    ], \n    \"Plumbing\": [\n        \"NNP\"\n    ], \n    \"Montedision\": [\n        \"NN\"\n    ], \n    \"punters\": [\n        \"NNS\"\n    ], \n    \"compartment\": [\n        \"NN\"\n    ], \n    \"Nux\": [\n        \"NN\"\n    ], \n    \"Whosoever\": [\n        \"NN\"\n    ], \n    \"vial\": [\n        \"NN\"\n    ], \n    \"Nut\": [\n        \"NNP\"\n    ], \n    \"NOVA\": [\n        \"NNP\"\n    ], \n    \"and\\\\/or\": [\n        \"NN\"\n    ], \n    \"Delvin\": [\n        \"NNP\"\n    ], \n    \"gangling\": [\n        \"JJ\"\n    ], \n    \"undiplomatic\": [\n        \"JJ\"\n    ], \n    \"populating\": [\n        \"VBG\"\n    ], \n    \"executioner\": [\n        \"NN\"\n    ], \n    \"mismanaged\": [\n        \"VBD\"\n    ], \n    \"Oliver\": [\n        \"NNP\"\n    ], \n    \"asham\": [\n        \"JJ\"\n    ], \n    \"Olivet\": [\n        \"NNP\"\n    ], \n    \"outstanding\": [\n        \"JJ\"\n    ], \n    \"Longhorns\": [\n        \"NNP\"\n    ], \n    \"second-look\": [\n        \"JJ\"\n    ], \n    \"delisted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Beryl\": [\n        \"NNP\"\n    ], \n    \"MURDER\": [\n        \"NN\"\n    ], \n    \"flight-to-quality\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Quiney\": [\n        \"NNP\"\n    ], \n    \"hexagonal\": [\n        \"JJ\"\n    ], \n    \"semiliterate\": [\n        \"JJ\"\n    ], \n    \"Masillon\": [\n        \"NNP\"\n    ], \n    \"Cayman\": [\n        \"NNP\"\n    ], \n    \"interferes\": [\n        \"VBZ\"\n    ], \n    \"DiIulio\": [\n        \"NNP\"\n    ], \n    \"lackadaisical\": [\n        \"JJ\"\n    ], \n    \"four-person\": [\n        \"JJ\"\n    ], \n    \"empirically\": [\n        \"RB\"\n    ], \n    \"Drexel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"chairman\": [\n        \"NN\"\n    ], \n    \"Parsifal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Swede\": [\n        \"NN\"\n    ], \n    \"interfered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"foreman\": [\n        \"NN\"\n    ], \n    \"Helpline\": [\n        \"NNP\"\n    ], \n    \"Internaional\": [\n        \"NNP\"\n    ], \n    \"rapist\": [\n        \"NN\"\n    ], \n    \"reckon\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"pillage\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"measures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"shimming\": [\n        \"NN\"\n    ], \n    \"reunited\": [\n        \"VBN\"\n    ], \n    \"eight-and-a-half-foot\": [\n        \"JJ\"\n    ], \n    \"SOFTWARE\": [\n        \"NNP\"\n    ], \n    \"Paddock\": [\n        \"NNP\"\n    ], \n    \"measured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Pieta\": [\n        \"NNP\"\n    ], \n    \"queasily\": [\n        \"RB\"\n    ], \n    \"grams\": [\n        \"NNS\"\n    ], \n    \"time-hotels\": [\n        \"NNS\"\n    ], \n    \"Zen\": [\n        \"NNP\"\n    ], \n    \"Zel\": [\n        \"NNP\"\n    ], \n    \"dissolved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"aquifers\": [\n        \"NNS\"\n    ], \n    \"pigeonholing\": [\n        \"NN\"\n    ], \n    \"Gloversville\": [\n        \"NNP\"\n    ], \n    \"Zey\": [\n        \"PRP\"\n    ], \n    \"Perfect\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"link-ups\": [\n        \"NNS\"\n    ], \n    \"asphalt\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Knill\": [\n        \"NNP\"\n    ], \n    \"ballplayer\": [\n        \"NN\"\n    ], \n    \"Walters-Donaldson\": [\n        \"NNP\"\n    ], \n    \"Majority\": [\n        \"NNP\"\n    ], \n    \"Genome\": [\n        \"NNP\"\n    ], \n    \"melody\": [\n        \"NN\"\n    ], \n    \"costing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"oil-leasing\": [\n        \"NN\"\n    ], \n    \"Alexeyeva\": [\n        \"NNP\"\n    ], \n    \"aggravate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"nevertheless\": [\n        \"RB\"\n    ], \n    \"Instructors\": [\n        \"NNS\"\n    ], \n    \"Troyes\": [\n        \"NNP\"\n    ], \n    \"penalty\": [\n        \"NN\"\n    ], \n    \"Conaway\": [\n        \"NNP\"\n    ], \n    \"Whitby\": [\n        \"NNP\"\n    ], \n    \"Democratization\": [\n        \"NN\"\n    ], \n    \"Kandinsky\": [\n        \"NNP\"\n    ], \n    \"Courcy\": [\n        \"NNP\"\n    ], \n    \"ILA\": [\n        \"NNP\"\n    ], \n    \"counterpoint\": [\n        \"NN\"\n    ], \n    \"aficionado\": [\n        \"NN\"\n    ], \n    \"furnaces\": [\n        \"NNS\"\n    ], \n    \"revered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"MiG-23BN\": [\n        \"NN\"\n    ], \n    \"procrastination\": [\n        \"NN\"\n    ], \n    \"Epicurean\": [\n        \"JJ\"\n    ], \n    \"compliments\": [\n        \"NNS\"\n    ], \n    \"Kaddurah-Daouk\": [\n        \"NNP\"\n    ], \n    \"oaks\": [\n        \"NNS\"\n    ], \n    \"non-edible\": [\n        \"JJ\"\n    ], \n    \"crime-busting\": [\n        \"JJ\"\n    ], \n    \"PHH\": [\n        \"NNP\"\n    ], \n    \"keenest\": [\n        \"JJS\"\n    ], \n    \"imponderables\": [\n        \"NNS\"\n    ], \n    \"activity\": [\n        \"NN\"\n    ], \n    \"PHS\": [\n        \"NNP\"\n    ], \n    \"dizziness\": [\n        \"NN\"\n    ], \n    \"paradoxical\": [\n        \"JJ\"\n    ], \n    \"consciously\": [\n        \"RB\"\n    ], \n    \"loveliness\": [\n        \"NN\"\n    ], \n    \"SHORT\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"martyrdom\": [\n        \"NN\"\n    ], \n    \"Parkersburg\": [\n        \"NNP\"\n    ], \n    \"upsurge\": [\n        \"NN\"\n    ], \n    \"X-rated\": [\n        \"JJ\"\n    ], \n    \"Urielites\": [\n        \"NNPS\"\n    ], \n    \"Homemakers\": [\n        \"NNP\"\n    ], \n    \"Derails\": [\n        \"NNS\"\n    ], \n    \"Boniface\": [\n        \"NNP\"\n    ], \n    \"security-services\": [\n        \"NN\"\n    ], \n    \"efficacious\": [\n        \"JJ\"\n    ], \n    \"move-up\": [\n        \"JJ\"\n    ], \n    \"nailed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cutrer\": [\n        \"NNP\"\n    ], \n    \"slapped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Codevilla\": [\n        \"NNP\"\n    ], \n    \"Jubal\": [\n        \"NNP\"\n    ], \n    \"incentive-reduced\": [\n        \"JJ\"\n    ], \n    \"Colmer\": [\n        \"NNP\"\n    ], \n    \"Hyannis\": [\n        \"NNP\"\n    ], \n    \"orbiting\": [\n        \"VBG\"\n    ], \n    \"C.D.\": [\n        \"NNP\"\n    ], \n    \"cancelling\": [\n        \"VBG\"\n    ], \n    \"Principal-only\": [\n        \"JJ\"\n    ], \n    \"Outline\": [\n        \"NN\"\n    ], \n    \"Ednie\": [\n        \"NNP\"\n    ], \n    \"days.\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Janus\": [\n        \"NNP\"\n    ], \n    \"succeed\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ignition\": [\n        \"NN\"\n    ], \n    \"venturers\": [\n        \"NNS\"\n    ], \n    \"ciliates\": [\n        \"NNS\"\n    ], \n    \"Willetts\": [\n        \"NNP\"\n    ], \n    \"orchardists\": [\n        \"NNS\"\n    ], \n    \"license\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Oxley\": [\n        \"NNP\"\n    ], \n    \"MHz\": [\n        \"NNS\"\n    ], \n    \"Christianson\": [\n        \"NNP\"\n    ], \n    \"Priscilla\": [\n        \"NNP\"\n    ], \n    \"Non-Smokers\": [\n        \"NNP\"\n    ], \n    \"sojourners\": [\n        \"NNS\"\n    ], \n    \"duplicity\": [\n        \"NN\"\n    ], \n    \"breastworks\": [\n        \"NNS\"\n    ], \n    \"vehicle-production\": [\n        \"JJ\"\n    ], \n    \"ARMs\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"off-balance\": [\n        \"JJ\"\n    ], \n    \"whelk\": [\n        \"NN\"\n    ], \n    \"slots\": [\n        \"NNS\"\n    ], \n    \"Mountain-Hi\": [\n        \"NNP\"\n    ], \n    \"Snook\": [\n        \"NNP\"\n    ], \n    \"bolster\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Filippo\": [\n        \"NNP\"\n    ], \n    \"Co-op\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Zomax\": [\n        \"NNP\"\n    ], \n    \"illumined\": [\n        \"VBD\"\n    ], \n    \"apprehensively\": [\n        \"RB\"\n    ], \n    \"pinpoints\": [\n        \"NNS\"\n    ], \n    \"confabulation\": [\n        \"NN\"\n    ], \n    \"Revson\": [\n        \"NNP\"\n    ], \n    \"armory\": [\n        \"NN\"\n    ], \n    \"brick\": [\n        \"NN\"\n    ], \n    \"illumines\": [\n        \"VBZ\"\n    ], \n    \"yielding-Mediterranian-woman\": [\n        \"JJ\"\n    ], \n    \"sending\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"quintet\": [\n        \"NN\"\n    ], \n    \"Blanton\": [\n        \"NNP\"\n    ], \n    \"vaguely\": [\n        \"RB\"\n    ], \n    \"Pioneers\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"infuriation\": [\n        \"NN\"\n    ], \n    \"Suitors\": [\n        \"NNS\"\n    ], \n    \"R.L.\": [\n        \"NNP\"\n    ], \n    \"obsessive-compulsive\": [\n        \"JJ\"\n    ], \n    \"corrode\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"employer-provided\": [\n        \"JJ\"\n    ], \n    \"Reily\": [\n        \"NNP\"\n    ], \n    \"parachutes\": [\n        \"NNS\"\n    ], \n    \"tweaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bebop\": [\n        \"NN\"\n    ], \n    \"Kobe\": [\n        \"NNP\"\n    ], \n    \"Shannon\": [\n        \"NNP\"\n    ], \n    \"welding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"QUOTABLE\": [\n        \"JJ\"\n    ], \n    \"Sumitomo\": [\n        \"NNP\"\n    ], \n    \"Edmonia\": [\n        \"NN\"\n    ], \n    \"Jones-Imboden\": [\n        \"NNP\"\n    ], \n    \"interlacing\": [\n        \"VBG\"\n    ], \n    \"leans\": [\n        \"VBZ\"\n    ], \n    \"vacuumed\": [\n        \"VBD\"\n    ], \n    \"Izaak\": [\n        \"NNP\"\n    ], \n    \"computer-driven\": [\n        \"JJ\"\n    ], \n    \"inspirationally\": [\n        \"RB\"\n    ], \n    \"Jellinek\": [\n        \"NNP\"\n    ], \n    \"OKC\": [\n        \"NNP\"\n    ], \n    \"Idaho-based\": [\n        \"JJ\"\n    ], \n    \"India-born\": [\n        \"JJ\"\n    ], \n    \"sliver\": [\n        \"NN\"\n    ], \n    \"tradedistorting\": [\n        \"JJ\"\n    ], \n    \"arrives\": [\n        \"VBZ\"\n    ], \n    \"Southmark\": [\n        \"NNP\"\n    ], \n    \"wallops\": [\n        \"VBZ\"\n    ], \n    \"Hanford\": [\n        \"NNP\"\n    ], \n    \"Manzoni\": [\n        \"NNP\"\n    ], \n    \"world-commerce\": [\n        \"JJ\"\n    ], \n    \"Prokofieff\": [\n        \"NNP\"\n    ], \n    \"domains\": [\n        \"NNS\"\n    ], \n    \"arrived\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Generalissimo\": [\n        \"NNP\"\n    ], \n    \"government-bond\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bookies\": [\n        \"NNS\"\n    ], \n    \"undersubscription\": [\n        \"NN\"\n    ], \n    \"robust\": [\n        \"JJ\"\n    ], \n    \"lower\": [\n        \"JJR\", \n        \"RBR\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Backe\": [\n        \"NNP\"\n    ], \n    \"equalled\": [\n        \"VBN\"\n    ], \n    \"sumac\": [\n        \"NN\"\n    ], \n    \"persuasive\": [\n        \"JJ\"\n    ], \n    \"bounces\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"anybody\": [\n        \"NN\"\n    ], \n    \"Rubeli\": [\n        \"NNP\"\n    ], \n    \"deliverable\": [\n        \"JJ\"\n    ], \n    \"Starkey\": [\n        \"NNP\"\n    ], \n    \"Terrace\": [\n        \"NNP\"\n    ], \n    \"bounced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Broxodent\": [\n        \"NNP\"\n    ], \n    \"data-recording\": [\n        \"NN\"\n    ], \n    \"grievance\": [\n        \"NN\"\n    ], \n    \"precedence\": [\n        \"NN\"\n    ], \n    \"Semmes\": [\n        \"NNP\"\n    ], \n    \"Handmade\": [\n        \"NNP\"\n    ], \n    \"competitive\": [\n        \"JJ\"\n    ], \n    \"mountaineering\": [\n        \"NN\"\n    ], \n    \"inactive\": [\n        \"JJ\"\n    ], \n    \"Suspicion\": [\n        \"NN\"\n    ], \n    \"Poindexter\": [\n        \"NNP\"\n    ], \n    \"margarine\": [\n        \"NN\"\n    ], \n    \"Scripture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"export-boosting\": [\n        \"JJ\"\n    ], \n    \"pin-curl\": [\n        \"JJ\"\n    ], \n    \"Freida\": [\n        \"NNP\"\n    ], \n    \"advisers\": [\n        \"NNS\"\n    ], \n    \"rowed\": [\n        \"VBD\"\n    ], \n    \"exclusively\": [\n        \"RB\"\n    ], \n    \"exhibition\": [\n        \"NN\"\n    ], \n    \"rocklike\": [\n        \"JJ\"\n    ], \n    \"Filed\": [\n        \"VBN\"\n    ], \n    \"Estancieros\": [\n        \"NNS\"\n    ], \n    \"Visker\": [\n        \"NNP\"\n    ], \n    \"civilizational\": [\n        \"JJ\"\n    ], \n    \"Criminologists\": [\n        \"NNS\"\n    ], \n    \"grapeshot\": [\n        \"NN\"\n    ], \n    \"Baranovichi\": [\n        \"NNP\"\n    ], \n    \"Daihatsu\": [\n        \"NNP\"\n    ], \n    \"Definitely\": [\n        \"RB\"\n    ], \n    \"unwomanly\": [\n        \"RB\"\n    ], \n    \"alkylarysulfonate\": [\n        \"NN\"\n    ], \n    \"Carrie\": [\n        \"NNP\"\n    ], \n    \"jots\": [\n        \"VBZ\"\n    ], \n    \"Kenny\": [\n        \"NNP\"\n    ], \n    \"Salida\": [\n        \"NNP\"\n    ], \n    \"citizen-sparked\": [\n        \"JJ\"\n    ], \n    \"flabbergasted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Stellar\": [\n        \"NNP\"\n    ], \n    \"Bertelsmann\": [\n        \"NNP\"\n    ], \n    \"Aventine\": [\n        \"NNP\"\n    ], \n    \"McMaster\": [\n        \"NNP\"\n    ], \n    \"anti-smokers\": [\n        \"NNS\"\n    ], \n    \"social-issue\": [\n        \"JJ\"\n    ], \n    \"less-than-successful\": [\n        \"JJ\"\n    ], \n    \"folders\": [\n        \"NNS\"\n    ], \n    \"tiefes\": [\n        \"FW\"\n    ], \n    \"ecology\": [\n        \"NN\"\n    ], \n    \"piglet\": [\n        \"NN\"\n    ], \n    \"aciduria\": [\n        \"NN\"\n    ], \n    \"denigration\": [\n        \"NN\"\n    ], \n    \"streaming\": [\n        \"VBG\"\n    ], \n    \"president\\\\/product\": [\n        \"NN\"\n    ], \n    \"BRNF\": [\n        \"NNP\"\n    ], \n    \"grenades\": [\n        \"NNS\"\n    ], \n    \"newsletter\": [\n        \"NN\"\n    ], \n    \"bellyfull\": [\n        \"NN\"\n    ], \n    \"snake-rail\": [\n        \"JJ\"\n    ], \n    \"bushy-tailed\": [\n        \"JJ\"\n    ], \n    \"capos\": [\n        \"NNS\"\n    ], \n    \"Philippine-studies\": [\n        \"NN\"\n    ], \n    \"tampers\": [\n        \"NNS\"\n    ], \n    \"Raoul-Duval\": [\n        \"NNP\"\n    ], \n    \"Lawsuit\": [\n        \"NNP\"\n    ], \n    \"Tarnopol\": [\n        \"NNP\"\n    ], \n    \"Guar\": [\n        \"JJ\"\n    ], \n    \"jumpy\": [\n        \"JJ\"\n    ], \n    \"beleaguered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"graining\": [\n        \"NN\"\n    ], \n    \"jumps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Harriton\": [\n        \"NNP\"\n    ], \n    \"Arragon\": [\n        \"NNP\"\n    ], \n    \"juju\": [\n        \"NN\"\n    ], \n    \"Altimari\": [\n        \"NNP\"\n    ], \n    \"Payton\": [\n        \"NNP\"\n    ], \n    \"powerplants\": [\n        \"NNS\"\n    ], \n    \"Procedural\": [\n        \"JJ\"\n    ], \n    \"Decries\": [\n        \"VBZ\"\n    ], \n    \"volunteering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ordeal\": [\n        \"NN\"\n    ], \n    \"Kimsong\": [\n        \"NNP\"\n    ], \n    \"Bovine\": [\n        \"NNP\"\n    ], \n    \"dune-grass\": [\n        \"NN\"\n    ], \n    \"acquistion\": [\n        \"NN\"\n    ], \n    \"repulsion\": [\n        \"NN\"\n    ], \n    \"Essex\": [\n        \"NNP\"\n    ], \n    \"huffed\": [\n        \"VBD\"\n    ], \n    \"arside\": [\n        \"NN\"\n    ], \n    \"Subsystems\": [\n        \"NNS\"\n    ], \n    \"Skopas\": [\n        \"NNP\"\n    ], \n    \"Bears\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"deafness\": [\n        \"NN\"\n    ], \n    \"mustached\": [\n        \"JJ\"\n    ], \n    \"holster\": [\n        \"NN\"\n    ], \n    \"mustaches\": [\n        \"NNS\"\n    ], \n    \"centrality\": [\n        \"NN\"\n    ], \n    \"Hillsdown\": [\n        \"NNP\"\n    ], \n    \"Beare\": [\n        \"NNP\"\n    ], \n    \"Beard\": [\n        \"NNP\"\n    ], \n    \"hope...\": [\n        \":\"\n    ], \n    \"introverted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"tumble\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"creaked\": [\n        \"VBD\"\n    ], \n    \"Every\": [\n        \"DT\"\n    ], \n    \"oddities\": [\n        \"NNS\"\n    ], \n    \"mountains\": [\n        \"NNS\"\n    ], \n    \"RICOing\": [\n        \"NN\"\n    ], \n    \"Gainesville\": [\n        \"NNP\"\n    ], \n    \"potassium\": [\n        \"NN\"\n    ], \n    \"Gautier\": [\n        \"NNP\"\n    ], \n    \"Boy-Marquita\": [\n        \"NNP\"\n    ], \n    \"taxpayer-related\": [\n        \"JJ\"\n    ], \n    \"Grenada\": [\n        \"NNP\"\n    ], \n    \"deployed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Load\": [\n        \"NN\"\n    ], \n    \"McNabb\": [\n        \"NNP\"\n    ], \n    \"Perdido\": [\n        \"NNP\"\n    ], \n    \"higher-profit\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"drinkers\": [\n        \"NNS\"\n    ], \n    \"Harrity\": [\n        \"NNP\"\n    ], \n    \"Loan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"geneticists\": [\n        \"NNS\"\n    ], \n    \"stalking\": [\n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"N.R.\": [\n        \"NNP\"\n    ], \n    \"ingrates\": [\n        \"NNS\"\n    ], \n    \"Elan\": [\n        \"NNP\"\n    ], \n    \"dazzlingly\": [\n        \"RB\"\n    ], \n    \"more-conventional\": [\n        \"JJR\"\n    ], \n    \"sunnier\": [\n        \"JJR\"\n    ], \n    \"LBOs\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"beguiling\": [\n        \"JJ\"\n    ], \n    \"saturate\": [\n        \"VB\"\n    ], \n    \"associated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Calenda\": [\n        \"NNP\"\n    ], \n    \"management-consultant\": [\n        \"NN\"\n    ], \n    \"Management\\\\\": [\n        \"JJ\"\n    ], \n    \"Underground\": [\n        \"JJ\"\n    ], \n    \"associates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Singh\": [\n        \"NNP\"\n    ], \n    \"Bagatelles\": [\n        \"NNPS\"\n    ], \n    \"laser-type\": [\n        \"JJ\"\n    ], \n    \"Amstrad\": [\n        \"NNP\"\n    ], \n    \"inequities\": [\n        \"NNS\"\n    ], \n    \"AIDS-prevention\": [\n        \"JJ\"\n    ], \n    \"visualization\": [\n        \"NN\"\n    ], \n    \"income\": [\n        \"NN\"\n    ], \n    \"Recently\": [\n        \"RB\"\n    ], \n    \"Laguna\": [\n        \"NNP\"\n    ], \n    \"pennant\": [\n        \"NN\"\n    ], \n    \"Elected\": [\n        \"VBN\"\n    ], \n    \"jackboots\": [\n        \"NNS\"\n    ], \n    \"develops\": [\n        \"VBZ\"\n    ], \n    \"truth-in-lending\": [\n        \"NN\"\n    ], \n    \"Laughing\": [\n        \"NNP\"\n    ], \n    \"flirtation\": [\n        \"NN\"\n    ], \n    \"weigh\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Making\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"halfback\": [\n        \"NN\"\n    ], \n    \"Criminal-defense\": [\n        \"NN\"\n    ], \n    \"Extractor\": [\n        \"NN\"\n    ], \n    \"Letterman\": [\n        \"NNP\"\n    ], \n    \"Andean\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"potters\": [\n        \"NNS\"\n    ], \n    \"non-enforcement\": [\n        \"JJ\"\n    ], \n    \"bills-measures\": [\n        \"JJ\"\n    ], \n    \"weights\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"pyre\": [\n        \"NN\"\n    ], \n    \"Mach\": [\n        \"NN\"\n    ], \n    \"carved\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"proximate\": [\n        \"JJ\"\n    ], \n    \"pervert\": [\n        \"NN\"\n    ], \n    \"Natrona\": [\n        \"NNP\"\n    ], \n    \"B-cell\": [\n        \"NN\"\n    ], \n    \"Cranes\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Panamanian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"high-blood-pressure\": [\n        \"JJ\"\n    ], \n    \"computer-service\": [\n        \"JJ\"\n    ], \n    \"motor-car\": [\n        \"NN\"\n    ], \n    \"whiskeys``\": [\n        \"``\"\n    ], \n    \"J.D.\": [\n        \"NNP\"\n    ], \n    \"timberland\": [\n        \"NN\"\n    ], \n    \"long-bodied\": [\n        \"JJ\"\n    ], \n    \"Launching\": [\n        \"VBG\"\n    ], \n    \"Dodge\": [\n        \"NNP\"\n    ], \n    \"Shere\": [\n        \"NNP\"\n    ], \n    \"Hazlett\": [\n        \"NNP\"\n    ], \n    \"disposal\": [\n        \"NN\"\n    ], \n    \"deterministic\": [\n        \"JJ\"\n    ], \n    \"Duclos\": [\n        \"NNP\"\n    ], \n    \"Jovian\": [\n        \"JJ\"\n    ], \n    \"half-gourd\": [\n        \"NN\"\n    ], \n    \"Sarason\": [\n        \"NNP\"\n    ], \n    \"stable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Buyer\": [\n        \"NNP\"\n    ], \n    \"Odyssey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mort\": [\n        \"NNP\"\n    ], \n    \"Brassnose\": [\n        \"NNP\"\n    ], \n    \"overlaps\": [\n        \"VBZ\"\n    ], \n    \"Superintendents\": [\n        \"NNS\"\n    ], \n    \"talons\": [\n        \"NNS\"\n    ], \n    \"much-publicized\": [\n        \"JJ\"\n    ], \n    \"reinterpret\": [\n        \"VB\"\n    ], \n    \"electron\": [\n        \"NN\"\n    ], \n    \"bounding\": [\n        \"VBG\"\n    ], \n    \"drinking\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"materialism\": [\n        \"NN\"\n    ], \n    \"physiognomy\": [\n        \"NN\"\n    ], \n    \"incoherent\": [\n        \"JJ\"\n    ], \n    \"off-price\": [\n        \"JJ\"\n    ], \n    \"cloud-flecked\": [\n        \"JJ\"\n    ], \n    \"reappearing\": [\n        \"VBG\"\n    ], \n    \"three-judge\": [\n        \"JJ\"\n    ], \n    \"alltime\": [\n        \"NN\"\n    ], \n    \"Zealand-dollar\": [\n        \"NN\"\n    ], \n    \"synthetic-leather\": [\n        \"JJ\"\n    ], \n    \"Silbert\": [\n        \"NNP\"\n    ], \n    \"Waymouth\": [\n        \"NNP\"\n    ], \n    \"Newgate\": [\n        \"NNP\"\n    ], \n    \"State\": [\n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Atorino\": [\n        \"NNP\"\n    ], \n    \"anti-Catholicism\": [\n        \"NN\"\n    ], \n    \"Fung\": [\n        \"NNP\"\n    ], \n    \"paleness\": [\n        \"NN\"\n    ], \n    \"Maryland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Two-Stem\": [\n        \"JJ\"\n    ], \n    \"checkers\": [\n        \"NNS\"\n    ], \n    \"microanalysis\": [\n        \"NN\"\n    ], \n    \"frankfurters\": [\n        \"NNS\"\n    ], \n    \"radar-eluding\": [\n        \"VBG\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"outlasted\": [\n        \"VBD\"\n    ], \n    \"colorization\": [\n        \"NN\"\n    ], \n    \"Simmon\": [\n        \"NNP\"\n    ], \n    \"garishness\": [\n        \"NN\"\n    ], \n    \"Henderson\": [\n        \"NNP\"\n    ], \n    \"mutual-aid\": [\n        \"JJ\"\n    ], \n    \"Airports\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"gaily\": [\n        \"RB\"\n    ], \n    \"Shantz\": [\n        \"NNP\"\n    ], \n    \"Light\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"pushing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"slated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"swirled\": [\n        \"VBD\"\n    ], \n    \"MAINTENANCE\": [\n        \"NNP\"\n    ], \n    \"Stat.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"confiscating\": [\n        \"VBG\"\n    ], \n    \"Job-Bias\": [\n        \"JJ\"\n    ], \n    \"vividness\": [\n        \"NN\"\n    ], \n    \"Maddalena\": [\n        \"NNP\"\n    ], \n    \"low-sugar\": [\n        \"JJ\"\n    ], \n    \"sob-wallow\": [\n        \"NN\"\n    ], \n    \"Yalagaloo\": [\n        \"UH\"\n    ], \n    \"ELDERLY\": [\n        \"JJ\"\n    ], \n    \"Ismaili\": [\n        \"NNP\"\n    ], \n    \"grants-in-aid\": [\n        \"NN\"\n    ], \n    \"warnings\": [\n        \"NNS\"\n    ], \n    \"nervous\": [\n        \"JJ\"\n    ], \n    \"Eckhardt\": [\n        \"NNP\"\n    ], \n    \"Amicable\": [\n        \"NNP\"\n    ], \n    \"payoffs\": [\n        \"NNS\"\n    ], \n    \"reds\": [\n        \"NNS\"\n    ], \n    \"examinations\": [\n        \"NNS\"\n    ], \n    \"slinging\": [\n        \"VBG\"\n    ], \n    \"preferred-stock\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Treat\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"redo\": [\n        \"VB\"\n    ], \n    \"Jergens\": [\n        \"NNP\"\n    ], \n    \"Rafales\": [\n        \"NNPS\"\n    ], \n    \"rackety\": [\n        \"JJ\"\n    ], \n    \"Ernie\": [\n        \"NNP\"\n    ], \n    \"Treasury-bond\": [\n        \"JJ\"\n    ], \n    \"No-Tobacco\": [\n        \"NNP\"\n    ], \n    \"rackets\": [\n        \"NNS\"\n    ], \n    \"MX-missile\": [\n        \"NN\"\n    ], \n    \"Erling\": [\n        \"NNP\"\n    ], \n    \"Pyrrhic\": [\n        \"JJ\"\n    ], \n    \"Andreotti\": [\n        \"NNP\"\n    ], \n    \"Sunda\": [\n        \"NNP\"\n    ], \n    \"Intervenes\": [\n        \"VBZ\"\n    ], \n    \"Count\": [\n        \"NNP\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"by-passed\": [\n        \"VBN\"\n    ], \n    \"Rodriquez\": [\n        \"NNP\"\n    ], \n    \"Chuck\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"pale-blue\": [\n        \"JJ\"\n    ], \n    \"Exclaimed\": [\n        \"VBD\"\n    ], \n    \"Trains\": [\n        \"NNS\"\n    ], \n    \"distractedly\": [\n        \"RB\"\n    ], \n    \"by-passes\": [\n        \"VBZ\"\n    ], \n    \"flabbiness\": [\n        \"NN\"\n    ], \n    \"weighting\": [\n        \"NN\"\n    ], \n    \"Taiwanese\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"carbon-dioxide\": [\n        \"NN\"\n    ], \n    \"Balcor\": [\n        \"NNP\"\n    ], \n    \"amethystine\": [\n        \"JJ\"\n    ], \n    \"lumber\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Ptolemaists\": [\n        \"NNS\"\n    ], \n    \"purports\": [\n        \"VBZ\"\n    ], \n    \"befits\": [\n        \"VBZ\"\n    ], \n    \"Mollica\": [\n        \"NNP\"\n    ], \n    \"Jewboy\": [\n        \"NN\"\n    ], \n    \"spying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Feature\": [\n        \"NNP\"\n    ], \n    \"mega-problems\": [\n        \"NNS\"\n    ], \n    \"complaisance\": [\n        \"NN\"\n    ], \n    \"villain\": [\n        \"NN\"\n    ], \n    \"carrot\": [\n        \"NN\"\n    ], \n    \"something\": [\n        \"NN\"\n    ], \n    \"hemlines\": [\n        \"NNS\"\n    ], \n    \"B70\": [\n        \"NN\"\n    ], \n    \"summers\": [\n        \"NNS\"\n    ], \n    \"one-branch\": [\n        \"JJ\"\n    ], \n    \"decaying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Pilgrm\": [\n        \"NNP\"\n    ], \n    \"Aldermen\": [\n        \"NNS\"\n    ], \n    \"buoyant\": [\n        \"JJ\"\n    ], \n    \"prognosis\": [\n        \"NN\"\n    ], \n    \"lamechians\": [\n        \"NNS\"\n    ], \n    \"unites\": [\n        \"VBZ\"\n    ], \n    \"gear-box\": [\n        \"NN\"\n    ], \n    \"Shows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Patriarchy\": [\n        \"NNP\"\n    ], \n    \"tension\": [\n        \"NN\"\n    ], \n    \"Assn\": [\n        \"NNP\"\n    ], \n    \"cupboard\": [\n        \"NN\"\n    ], \n    \"Snellville\": [\n        \"NNP\"\n    ], \n    \"Philo\": [\n        \"NNP\"\n    ], \n    \"Bairnco\": [\n        \"NNP\"\n    ], \n    \"masks\": [\n        \"NNS\"\n    ], \n    \"Gummi-Werke\": [\n        \"NNP\"\n    ], \n    \"Complying\": [\n        \"VBG\"\n    ], \n    \"cheaper\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"readiness\": [\n        \"NN\"\n    ], \n    \"Bouchard\": [\n        \"NNP\"\n    ], \n    \"Moonan\": [\n        \"NNP\"\n    ], \n    \"straps\": [\n        \"NNS\"\n    ], \n    \"ferret\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Stubblefield\": [\n        \"NNP\"\n    ], \n    \"co-hero\": [\n        \"NN\"\n    ], \n    \"batter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"martini\": [\n        \"NN\"\n    ], \n    \"parsonage\": [\n        \"NN\"\n    ], \n    \"spreads\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"saturated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Manzi\": [\n        \"NNP\"\n    ], \n    \"unfortunates\": [\n        \"NNS\"\n    ], \n    \"Moslem\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Time-Mynah\": [\n        \"NNP\"\n    ], \n    \"mathematicians\": [\n        \"NNS\"\n    ], \n    \"Wachtell\": [\n        \"NNP\"\n    ], \n    \"tyrant\": [\n        \"NN\"\n    ], \n    \"Warwick\": [\n        \"NNP\"\n    ], \n    \"Gargan\": [\n        \"NNP\"\n    ], \n    \"Gildersleeve\": [\n        \"NNP\"\n    ], \n    \"takings\": [\n        \"NNS\"\n    ], \n    \"frailties\": [\n        \"NNS\"\n    ], \n    \"Shell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gadflies\": [\n        \"NNS\"\n    ], \n    \"sackings\": [\n        \"NNS\"\n    ], \n    \"brawle\": [\n        \"NN\"\n    ], \n    \"anti-nuclear\": [\n        \"JJ\"\n    ], \n    \"nostalgic\": [\n        \"JJ\"\n    ], \n    \"estimating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Factorex\": [\n        \"NNP\"\n    ], \n    \"permanent\": [\n        \"JJ\"\n    ], \n    \"inspecting\": [\n        \"VBG\"\n    ], \n    \"shores\": [\n        \"NNS\"\n    ], \n    \"orange\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"conformance\": [\n        \"NN\"\n    ], \n    \"Queens\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"eastward\": [\n        \"RB\"\n    ], \n    \"bumbling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Hawks\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"christianizing\": [\n        \"VBG\"\n    ], \n    \"makings\": [\n        \"NNS\"\n    ], \n    \"Strukturbericht\": [\n        \"NNP\"\n    ], \n    \"adversely\": [\n        \"RB\"\n    ], \n    \"topcoat\": [\n        \"NN\"\n    ], \n    \"supermainframe\": [\n        \"NN\"\n    ], \n    \"Carnarvon\": [\n        \"NNP\"\n    ], \n    \"satellites\": [\n        \"NNS\"\n    ], \n    \"impaired\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"investor\": [\n        \"NN\"\n    ], \n    \"unpublicized\": [\n        \"JJ\"\n    ], \n    \"Greenland\": [\n        \"NNP\"\n    ], \n    \"Swaggart\": [\n        \"NNP\"\n    ], \n    \"transitional\": [\n        \"JJ\"\n    ], \n    \"profound\": [\n        \"JJ\"\n    ], \n    \"Pro\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"birth-defect\": [\n        \"NN\"\n    ], \n    \"executive-type\": [\n        \"NN\"\n    ], \n    \"retorted\": [\n        \"VBD\"\n    ], \n    \"conservatism\": [\n        \"NN\"\n    ], \n    \"Jose-Maria\": [\n        \"NNP\"\n    ], \n    \"this.``\": [\n        \"``\"\n    ], \n    \"Subject\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mitral\": [\n        \"JJ\"\n    ], \n    \"studios\": [\n        \"NNS\"\n    ], \n    \"liquid-glass\": [\n        \"NN\"\n    ], \n    \"psychopharmacological\": [\n        \"JJ\"\n    ], \n    \"Octet\": [\n        \"NNP\"\n    ], \n    \"mothered\": [\n        \"VBN\"\n    ], \n    \"phloem\": [\n        \"NN\"\n    ], \n    \"iron-willed\": [\n        \"JJ\"\n    ], \n    \"Octel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Angevine\": [\n        \"NNP\"\n    ], \n    \"Which\": [\n        \"WDT\"\n    ], \n    \"substructure\": [\n        \"NN\"\n    ], \n    \"clinching\": [\n        \"VBG\"\n    ], \n    \"Moreau\": [\n        \"NNP\"\n    ], \n    \"Flustered\": [\n        \"JJ\"\n    ], \n    \"studio\\\\\": [\n        \"JJ\"\n    ], \n    \"Hawke\": [\n        \"NNP\"\n    ], \n    \"exotic-Hawaiian-locale\": [\n        \"JJ\"\n    ], \n    \"hollering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"whitening\": [\n        \"VBG\"\n    ], \n    \"Historians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Buying\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"transmutation\": [\n        \"NN\"\n    ], \n    \"apses\": [\n        \"NNS\"\n    ], \n    \"Raimu\": [\n        \"NNP\"\n    ], \n    \"Neptune\": [\n        \"NNP\"\n    ], \n    \"Wilsonian\": [\n        \"JJ\"\n    ], \n    \"promptly\": [\n        \"RB\"\n    ], \n    \"Fairy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"usual\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"broker-dealer\": [\n        \"NN\", \n        \"JJ\", \n        \"NN|JJ\"\n    ], \n    \"Expense\": [\n        \"NN\"\n    ], \n    \"archaeologist\": [\n        \"NN\"\n    ], \n    \"Bulgaria\": [\n        \"NNP\"\n    ], \n    \"manicures\": [\n        \"VBZ\"\n    ], \n    \"age-old\": [\n        \"JJ\"\n    ], \n    \"enlargements\": [\n        \"NNS\"\n    ], \n    \"Wegener\": [\n        \"NNP\"\n    ], \n    \"illicit\": [\n        \"JJ\"\n    ], \n    \"manicured\": [\n        \"VBN\"\n    ], \n    \"Chayet\": [\n        \"NNP\"\n    ], \n    \"inky-brown\": [\n        \"JJ\"\n    ], \n    \"DOGS\": [\n        \"NNS\"\n    ], \n    \"computer-reservation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bolt-action\": [\n        \"JJ\"\n    ], \n    \"vases\": [\n        \"NNS\"\n    ], \n    \"McCullough\": [\n        \"NNP\"\n    ], \n    \"G.O.\": [\n        \"NNP\"\n    ], \n    \"Lemma\": [\n        \"NN\"\n    ], \n    \"listless\": [\n        \"JJ\"\n    ], \n    \"Lemme\": [\n        \"VB\"\n    ], \n    \"proposing\": [\n        \"VBG\"\n    ], \n    \"enormity\": [\n        \"NN\"\n    ], \n    \"Shoemaker\": [\n        \"NNP\"\n    ], \n    \"steams\": [\n        \"VBZ\"\n    ], \n    \"Rausch\": [\n        \"NNP\"\n    ], \n    \"Potlatches\": [\n        \"NNPS\"\n    ], \n    \"investment-management\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Tyner\": [\n        \"NNP\"\n    ], \n    \"uniting\": [\n        \"VBG\"\n    ], \n    \"toy-store\": [\n        \"NN\"\n    ], \n    \"Voss\": [\n        \"NNP\"\n    ], \n    \"inmate\": [\n        \"NN\"\n    ], \n    \"flip-flop\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Marge\": [\n        \"NNP\"\n    ], \n    \"ticklish\": [\n        \"JJ\"\n    ], \n    \"rigs\": [\n        \"NNS\"\n    ], \n    \"Vose\": [\n        \"NNP\"\n    ], \n    \"Margo\": [\n        \"NNP\"\n    ], \n    \"agility\": [\n        \"NN\"\n    ], \n    \"x-rays\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Rousseauan\": [\n        \"JJ\"\n    ], \n    \"postgraduate\": [\n        \"JJ\"\n    ], \n    \"shallow\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bolotin\": [\n        \"NNP\"\n    ], \n    \"Toronado\": [\n        \"NNP\"\n    ], \n    \"Wheels\": [\n        \"NNP\"\n    ], \n    \"O.E.\": [\n        \"NNP\"\n    ], \n    \"LIBOR\": [\n        \"NNP\"\n    ], \n    \"Shin\": [\n        \"NNP\"\n    ], \n    \"Belth\": [\n        \"NNP\"\n    ], \n    \"ricocheted\": [\n        \"VBD\"\n    ], \n    \"simple-seeming\": [\n        \"JJ\"\n    ], \n    \"hearings\": [\n        \"NNS\"\n    ], \n    \"Ziminska-Sygietynska\": [\n        \"NNP\"\n    ], \n    \"kickback\": [\n        \"NN\"\n    ], \n    \"boring\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hopkinsian\": [\n        \"NNP\"\n    ], \n    \"infectious\": [\n        \"JJ\"\n    ], \n    \"screeching\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"chattered\": [\n        \"VBD\"\n    ], \n    \"Sheena\": [\n        \"NNP\"\n    ], \n    \"Nazionale\": [\n        \"NNP\"\n    ], \n    \"Suhler\": [\n        \"NNP\"\n    ], \n    \"human-based\": [\n        \"JJ\"\n    ], \n    \"Folded\": [\n        \"NNP\"\n    ], \n    \"westward\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"mogul\": [\n        \"NN\"\n    ], \n    \"Ritz-Carlton\": [\n        \"NNP\"\n    ], \n    \"sincerity\": [\n        \"NN\"\n    ], \n    \"Metromedia\": [\n        \"NNP\"\n    ], \n    \"Compounding\": [\n        \"VBG\"\n    ], \n    \"intersecting\": [\n        \"VBG\"\n    ], \n    \"S.O.B.\": [\n        \"NN\"\n    ], \n    \"Bernardin\": [\n        \"NNP\"\n    ], \n    \"over-pretended\": [\n        \"JJ\"\n    ], \n    \"rout\": [\n        \"NN\"\n    ], \n    \"matchmakers\": [\n        \"NNS\"\n    ], \n    \"double-crossed\": [\n        \"VBD\"\n    ], \n    \"Erithmatic\": [\n        \"NN\"\n    ], \n    \"alienating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"willful\": [\n        \"JJ\"\n    ], \n    \"trivia\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"=\": [\n        \"SYM\"\n    ], \n    \"vegetation\": [\n        \"NN\"\n    ], \n    \"God-given\": [\n        \"JJ\"\n    ], \n    \"comest\": [\n        \"VBP\"\n    ], \n    \"coproducer\": [\n        \"NN\"\n    ], \n    \"Dragoslav\": [\n        \"NNP\"\n    ], \n    \"pomp-filled\": [\n        \"JJ\"\n    ], \n    \"muck\": [\n        \"NN\"\n    ], \n    \"harmful\": [\n        \"JJ\"\n    ], \n    \"Detroit\": [\n        \"NNP\"\n    ], \n    \"Gregory\": [\n        \"NNP\"\n    ], \n    \"Hanover-Sally\": [\n        \"NNP\"\n    ], \n    \"pulchritude\": [\n        \"NN\"\n    ], \n    \"thespians\": [\n        \"NNS\"\n    ], \n    \"Wollo\": [\n        \"NNP\"\n    ], \n    \"halved\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"clipboard-size\": [\n        \"JJ\"\n    ], \n    \"appallingly\": [\n        \"RB\"\n    ], \n    \"LEVINE\": [\n        \"NNP\"\n    ], \n    \"Mitchel\": [\n        \"NNP\"\n    ], \n    \"KICKING\": [\n        \"VBG\"\n    ], \n    \"lumpier\": [\n        \"JJR\"\n    ], \n    \"diagnostics\": [\n        \"NNS\"\n    ], \n    \"Appleseed\": [\n        \"NNP\"\n    ], \n    \"Lessons\": [\n        \"NNS\"\n    ], \n    \"EFPs\": [\n        \"NNS\"\n    ], \n    \"burners\": [\n        \"NNS\"\n    ], \n    \"tidings\": [\n        \"NNS\"\n    ], \n    \"Devens\": [\n        \"NNP\"\n    ], \n    \"hardcover\": [\n        \"NN\"\n    ], \n    \"serving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"democrats\": [\n        \"NNS\"\n    ], \n    \"Innovation\": [\n        \"NNP\"\n    ], \n    \"Wilkinson\": [\n        \"NNP\"\n    ], \n    \"filmed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"aftershave\": [\n        \"NN\"\n    ], \n    \"clutching\": [\n        \"VBG\"\n    ], \n    \"Jay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"perfumery\": [\n        \"NN\"\n    ], \n    \"interclass\": [\n        \"JJ\"\n    ], \n    \"sunflowers\": [\n        \"NNS\"\n    ], \n    \"Sharply\": [\n        \"RB\"\n    ], \n    \"myriad\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"counter-balanced\": [\n        \"JJ\"\n    ], \n    \"off-the-cuff\": [\n        \"JJ\"\n    ], \n    \"threateningly\": [\n        \"RB\"\n    ], \n    \"overeating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"formidable-appearing\": [\n        \"JJ\"\n    ], \n    \"wrestlings\": [\n        \"NNS\"\n    ], \n    \"road-show\": [\n        \"NN\"\n    ], \n    \"Persuading\": [\n        \"VBG\"\n    ], \n    \"Ulisse\": [\n        \"NNP\"\n    ], \n    \"SPENT\": [\n        \"VBD\"\n    ], \n    \"trims\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"non-Jewish\": [\n        \"JJ\"\n    ], \n    \"Bowser\": [\n        \"NNP\"\n    ], \n    \"stowaway\": [\n        \"NN\"\n    ], \n    \"THF\": [\n        \"NNP\"\n    ], \n    \"THE\": [\n        \"DT\", \n        \"NNP\"\n    ], \n    \"Sulgrave\": [\n        \"NNP\"\n    ], \n    \"THC\": [\n        \"NNP\"\n    ], \n    \"helion\": [\n        \"NN\"\n    ], \n    \"jury-duty\": [\n        \"NN\"\n    ], \n    \"bellies\": [\n        \"NNS\"\n    ], \n    \"Grobstein\": [\n        \"NNP\"\n    ], \n    \"enlisting\": [\n        \"VBG\"\n    ], \n    \"ended\": [\n        \"VBD\", \n        \"JJ\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"Penny\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"plopped\": [\n        \"VBD\"\n    ], \n    \"ministered\": [\n        \"VBD\"\n    ], \n    \"disparities\": [\n        \"NNS\"\n    ], \n    \"sparrows\": [\n        \"NNS\"\n    ], \n    \"pre-Easter\": [\n        \"JJ\"\n    ], \n    \"Politrick\": [\n        \"NN\"\n    ], \n    \"unison\": [\n        \"NN\"\n    ], \n    \"electrical-cable\": [\n        \"NN\"\n    ], \n    \"Uneven\": [\n        \"JJ\"\n    ], \n    \"expel\": [\n        \"VB\"\n    ], \n    \"Engaged\": [\n        \"VBN\"\n    ], \n    \"fantastically\": [\n        \"RB\"\n    ], \n    \"gametocide\": [\n        \"NN\"\n    ], \n    \"nonferrous\": [\n        \"JJ\"\n    ], \n    \"Unity\": [\n        \"NNP\"\n    ], \n    \"Rales\": [\n        \"NNP\"\n    ], \n    \"phosphor-screen\": [\n        \"NN\"\n    ], \n    \"Units\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Harapiak\": [\n        \"NNP\"\n    ], \n    \"unlimited\": [\n        \"JJ\"\n    ], \n    \"junks\": [\n        \"VBZ\"\n    ], \n    \"arguably\": [\n        \"RB\"\n    ], \n    \"wagers\": [\n        \"NNS\"\n    ], \n    \"scathingly\": [\n        \"RB\"\n    ], \n    \"freckled\": [\n        \"JJ\"\n    ], \n    \"Rothenberg\": [\n        \"NNP\"\n    ], \n    \"statehooders\": [\n        \"NNS\"\n    ], \n    \"Wrangler\": [\n        \"NNP\"\n    ], \n    \"Irises\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"weighing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"world-wide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"gas-one-tenth\": [\n        \"NN\"\n    ], \n    \"Torchmark\": [\n        \"NNP\"\n    ], \n    \"Catatonia\": [\n        \"NNP\"\n    ], \n    \"embarrassment\": [\n        \"NN\"\n    ], \n    \"probing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"radiation-produced\": [\n        \"JJ\"\n    ], \n    \"sonorous\": [\n        \"JJ\"\n    ], \n    \"wasp\": [\n        \"NN\"\n    ], \n    \"commands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"month-end\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Strait\": [\n        \"NNP\"\n    ], \n    \"budgeting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Confused\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Sungene\": [\n        \"NNP\"\n    ], \n    \"Unlikely\": [\n        \"RB\"\n    ], \n    \"illiquid\": [\n        \"JJ\"\n    ], \n    \"Veracruz\": [\n        \"NNP\"\n    ], \n    \"Canneries\": [\n        \"NNP\"\n    ], \n    \"tinning\": [\n        \"VBG\"\n    ], \n    \"commando\": [\n        \"NN\"\n    ], \n    \"unconvincing\": [\n        \"JJ\"\n    ], \n    \"Timothy\": [\n        \"NNP\"\n    ], \n    \"Worthless\": [\n        \"JJ\"\n    ], \n    \"cheap-shot\": [\n        \"JJ\"\n    ], \n    \"Dromey\": [\n        \"NNP\"\n    ], \n    \"unfolding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"wholesale-sized\": [\n        \"JJ\"\n    ], \n    \"narrower\": [\n        \"JJR\"\n    ], \n    \"litter-strewn\": [\n        \"JJ\"\n    ], \n    \"packaging\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Bristol-Meyers\": [\n        \"NNP\"\n    ], \n    \"misapplied\": [\n        \"VBN\"\n    ], \n    \"respect\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"narrowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"RD\": [\n        \"NNP\"\n    ], \n    \"leadsman\": [\n        \"NN\"\n    ], \n    \"cavities\": [\n        \"NNS\"\n    ], \n    \"ton-mile\": [\n        \"JJ\"\n    ], \n    \"fishers\": [\n        \"NNS\"\n    ], \n    \"hunters\": [\n        \"NNS\"\n    ], \n    \"storyteller\": [\n        \"NN\"\n    ], \n    \"Herald-Examiner\": [\n        \"NNP\"\n    ], \n    \"Forecasts\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bonneville\": [\n        \"NNP\"\n    ], \n    \"literal\": [\n        \"JJ\"\n    ], \n    \"sidesteps\": [\n        \"VBZ\"\n    ], \n    \"catechize\": [\n        \"VB\"\n    ], \n    \"floats\": [\n        \"VBZ\"\n    ], \n    \"Aderholds\": [\n        \"NNPS\"\n    ], \n    \"ghettos\": [\n        \"NNS\"\n    ], \n    \"determinant\": [\n        \"NN\"\n    ], \n    \"Exxon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"skinhead\": [\n        \"NN\"\n    ], \n    \"Ababa\": [\n        \"NNP\"\n    ], \n    \"sufficient\": [\n        \"JJ\"\n    ], \n    \"jaded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Credit\": [\n        \"NNP\", \n        \"NN\", \n        \"FW\"\n    ], \n    \"billion-asset\": [\n        \"JJ\"\n    ], \n    \"hightechnologies\": [\n        \"NNS\"\n    ], \n    \"Acknowledges\": [\n        \"VBZ\"\n    ], \n    \"XYLOGICS\": [\n        \"NNP\"\n    ], \n    \"painter\": [\n        \"NN\"\n    ], \n    \"interstices\": [\n        \"NNS\"\n    ], \n    \"arms-production\": [\n        \"NN\"\n    ], \n    \"once-absolute\": [\n        \"JJ\"\n    ], \n    \"Quilt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"riflemen-rangers\": [\n        \"NNS\"\n    ], \n    \"TRAVEL\": [\n        \"NN\"\n    ], \n    \"ejection\": [\n        \"NN\"\n    ], \n    \"Trumped\": [\n        \"VBN\"\n    ], \n    \"Kleinaitis\": [\n        \"NNP\"\n    ], \n    \"made-for-TV\": [\n        \"JJ\"\n    ], \n    \"Skiing\": [\n        \"NN\"\n    ], \n    \"not-so-subtly\": [\n        \"RB\"\n    ], \n    \"Taiwan\": [\n        \"NNP\"\n    ], \n    \"buy-stop\": [\n        \"JJ\"\n    ], \n    \"Quill\": [\n        \"NNP\"\n    ], \n    \"intercity\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"potions\": [\n        \"NNS\"\n    ], \n    \"Lassie\": [\n        \"NNP\"\n    ], \n    \"Reinvestment\": [\n        \"NNP\"\n    ], \n    \"palely\": [\n        \"RB\"\n    ], \n    \"DJIA\": [\n        \"NNP\"\n    ], \n    \"dual\": [\n        \"JJ\"\n    ], \n    \"snuck\": [\n        \"VBD\"\n    ], \n    \"Strom\": [\n        \"NNP\"\n    ], \n    \"Intelligent\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Stroh\": [\n        \"NNP\"\n    ], \n    \"coal-fired\": [\n        \"JJ\"\n    ], \n    \"canned-food\": [\n        \"NN\"\n    ], \n    \"member\": [\n        \"NN\"\n    ], \n    \"kitty-cornered\": [\n        \"JJ\"\n    ], \n    \"Halliburton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unwired\": [\n        \"VBD\"\n    ], \n    \"non-dischargable\": [\n        \"JJ\"\n    ], \n    \"Reinhold\": [\n        \"NNP\"\n    ], \n    \"Sandburgs\": [\n        \"NNPS\"\n    ], \n    \"Sperling\": [\n        \"NNP\"\n    ], \n    \"grandeur\": [\n        \"NN\"\n    ], \n    \"sincerest\": [\n        \"JJS\"\n    ], \n    \"diplomat\": [\n        \"NN\"\n    ], \n    \"beast\": [\n        \"NN\"\n    ], \n    \"Wal-Mart\": [\n        \"NNP\"\n    ], \n    \"OTC-market\": [\n        \"JJ\"\n    ], \n    \"fixed-repayment\": [\n        \"JJ\"\n    ], \n    \"Pivot\": [\n        \"NNP\"\n    ], \n    \"courant\": [\n        \"FW\"\n    ], \n    \"Gilda\": [\n        \"NNP\"\n    ], \n    \"aftuh\": [\n        \"RB\"\n    ], \n    \"Rosso\": [\n        \"NNP\"\n    ], \n    \"Savonarola\": [\n        \"NNP\"\n    ], \n    \"Stated\": [\n        \"VBN\"\n    ], \n    \"Staten\": [\n        \"NNP\"\n    ], \n    \"tithes\": [\n        \"NNS\"\n    ], \n    \"States\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Stater\": [\n        \"NNP\"\n    ], \n    \"adrenaline\": [\n        \"NN\"\n    ], \n    \"demonize\": [\n        \"VB\"\n    ], \n    \"Welch\": [\n        \"NNP\"\n    ], \n    \"Fawcett\": [\n        \"NNP\"\n    ], \n    \"Shearson\": [\n        \"NNP\"\n    ], \n    \"bending\": [\n        \"VBG\"\n    ], \n    \"beer-bellied\": [\n        \"JJ\"\n    ], \n    \"routinely\": [\n        \"RB\"\n    ], \n    \"dockworkers\": [\n        \"NNS\"\n    ], \n    \"Schnader\": [\n        \"NNP\"\n    ], \n    \"Bonham\": [\n        \"NNP\"\n    ], \n    \"gyrations\": [\n        \"NNS\"\n    ], \n    \"Bonfiglio\": [\n        \"NNP\"\n    ], \n    \"wealthy\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Yass\": [\n        \"NNP\"\n    ], \n    \"fishing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"active-matrix\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Microscopically\": [\n        \"RB\"\n    ], \n    \"waterskiing\": [\n        \"NN\"\n    ], \n    \"backroom\": [\n        \"NN\"\n    ], \n    \"NAHB\": [\n        \"NNP\"\n    ], \n    \"reconsidered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Marin\": [\n        \"NNP\"\n    ], \n    \"well-turned-out\": [\n        \"JJ\"\n    ], \n    \"satellite-linked\": [\n        \"JJ\"\n    ], \n    \"supply\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"upper-medium\": [\n        \"JJ\"\n    ], \n    \"nos\": [\n        \"NNS\"\n    ], \n    \"enact\": [\n        \"VB\"\n    ], \n    \"captivating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"layering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"toured\": [\n        \"VBD\"\n    ], \n    \"seventh-inning\": [\n        \"JJ\"\n    ], \n    \"Meager\": [\n        \"JJ\"\n    ], \n    \"Droll\": [\n        \"NNP\"\n    ], \n    \"Below\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"aeternitatis\": [\n        \"FW\"\n    ], \n    \"Dvorak\": [\n        \"NNP\"\n    ], \n    \"Maumee\": [\n        \"NNP\"\n    ], \n    \"helpful\": [\n        \"JJ\"\n    ], \n    \"tryouts\": [\n        \"NNS\"\n    ], \n    \"howitzer\": [\n        \"NN\"\n    ], \n    \"piasters\": [\n        \"NNS\"\n    ], \n    \"Camaro-Firebird\": [\n        \"NNP\"\n    ], \n    \"multibillion-yen\": [\n        \"JJ\"\n    ], \n    \"loser\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"loses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Honey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Skip\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Maria\": [\n        \"NNP\"\n    ], \n    \"herons\": [\n        \"NNS\"\n    ], \n    \"Saab-Scania\": [\n        \"NNP\"\n    ], \n    \"retractable\": [\n        \"JJ\"\n    ], \n    \"elevators\": [\n        \"NNS\"\n    ], \n    \"mattresses\": [\n        \"NNS\"\n    ], \n    \"growth\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Bonanza\": [\n        \"NNP\"\n    ], \n    \"throughout\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"Formally\": [\n        \"RB\"\n    ], \n    \"Promoters\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"miner\": [\n        \"NN\"\n    ], \n    \"mines\": [\n        \"NNS\"\n    ], \n    \"markers\": [\n        \"NNS\"\n    ], \n    \"blenders\": [\n        \"NNS\"\n    ], \n    \"earrings\": [\n        \"NNS\"\n    ], \n    \"mined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"patiently\": [\n        \"RB\"\n    ], \n    \"trout\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"truckers\": [\n        \"NNS\"\n    ], \n    \"obey\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"analysed\": [\n        \"VBN\"\n    ], \n    \"over-night\": [\n        \"JJ\"\n    ], \n    \"Gram-negative\": [\n        \"JJ\"\n    ], \n    \"Umkhonto\": [\n        \"NNP\"\n    ], \n    \"Longmont\": [\n        \"NNP\"\n    ], \n    \"re-creations\": [\n        \"NNS\"\n    ], \n    \"Warburg\": [\n        \"NNP\"\n    ], \n    \"extension\": [\n        \"NN\"\n    ], \n    \"saddle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sectarian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"gulping\": [\n        \"VBG\"\n    ], \n    \"Nogay\": [\n        \"NNP\"\n    ], \n    \"Stagecoach\": [\n        \"NNP\"\n    ], \n    \"multi-disciplinary\": [\n        \"JJ\"\n    ], \n    \"taxpaying\": [\n        \"JJ\"\n    ], \n    \"Wander-Years\": [\n        \"NNP\"\n    ], \n    \"additives\": [\n        \"NNS\"\n    ], \n    \"owl\": [\n        \"NN\"\n    ], \n    \"own\": [\n        \"JJ\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Cornell\": [\n        \"NNP\"\n    ], \n    \"creativity\": [\n        \"NN\"\n    ], \n    \"Marseilles\": [\n        \"NNP\"\n    ], \n    \"Stockard\": [\n        \"NNP\"\n    ], \n    \"Takao\": [\n        \"NNP\"\n    ], \n    \"kilowatt-hours\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Soviet-controlled\": [\n        \"JJ\"\n    ], \n    \"Ribeiro\": [\n        \"NNP\"\n    ], \n    \"keystroke\": [\n        \"NN\"\n    ], \n    \"J.F.\": [\n        \"NNP\"\n    ], \n    \"billfold\": [\n        \"NN\"\n    ], \n    \"policed\": [\n        \"VBN\"\n    ], \n    \"soft-looking\": [\n        \"JJ\"\n    ], \n    \"Diversity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"platoon\": [\n        \"NN\"\n    ], \n    \"Milberg\": [\n        \"NNP\"\n    ], \n    \"blanketed\": [\n        \"VBD\"\n    ], \n    \"smoothing\": [\n        \"VBG\"\n    ], \n    \"package-holiday\": [\n        \"JJ\"\n    ], \n    \"intention\": [\n        \"NN\"\n    ], \n    \"Israeli\\\\/Palestinian\": [\n        \"JJ\"\n    ], \n    \"Rowley\": [\n        \"NNP\"\n    ], \n    \"breeding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"inter-company\": [\n        \"JJ\"\n    ], \n    \"multistate\": [\n        \"NN\"\n    ], \n    \"spittle\": [\n        \"NN\"\n    ], \n    \"bitches\": [\n        \"NNS\"\n    ], \n    \"fixers\": [\n        \"NNS\"\n    ], \n    \"decisis\": [\n        \"FW\"\n    ], \n    \"Sonoma\": [\n        \"NNP\"\n    ], \n    \"Tel\": [\n        \"NNP\"\n    ], \n    \"Jenny\": [\n        \"NNP\"\n    ], \n    \"challenger\": [\n        \"NN\"\n    ], \n    \"Tea\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Anti-A\": [\n        \"NNP\"\n    ], \n    \"Ted\": [\n        \"NNP\"\n    ], \n    \"Tee\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Tex\": [\n        \"NNP\"\n    ], \n    \"Sheehy\": [\n        \"NNP\"\n    ], \n    \"Cetron\": [\n        \"NNP\"\n    ], \n    \"Jenni\": [\n        \"NNP\"\n    ], \n    \"demonstrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"rickety\": [\n        \"JJ\"\n    ], \n    \"recork\": [\n        \"VB\"\n    ], \n    \"here-for\": [\n        \"JJ\"\n    ], \n    \"Embittered\": [\n        \"JJ\"\n    ], \n    \"Pagones\": [\n        \"NNP\"\n    ], \n    \"Instinctively\": [\n        \"RB\"\n    ], \n    \"soft-shell\": [\n        \"JJ\"\n    ], \n    \"hymns\": [\n        \"NNS\"\n    ], \n    \"conspired\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lander\": [\n        \"NNP\"\n    ], \n    \"hard-to-fit\": [\n        \"JJ\"\n    ], \n    \"needle-like\": [\n        \"JJ\"\n    ], \n    \"Haun\": [\n        \"NNP\"\n    ], \n    \"Stetsons\": [\n        \"NNPS\"\n    ], \n    \"Bartlesville\": [\n        \"NNP\"\n    ], \n    \"Tempering\": [\n        \"VBG\"\n    ], \n    \"Dustin\": [\n        \"NNP\"\n    ], \n    \"Yeni\": [\n        \"NNP\"\n    ], \n    \"triphosphopyridine\": [\n        \"JJ\"\n    ], \n    \"volumes\": [\n        \"NNS\"\n    ], \n    \"reorientation\": [\n        \"NN\"\n    ], \n    \"apportioned\": [\n        \"VBN\"\n    ], \n    \"Payson\": [\n        \"NNP\"\n    ], \n    \"Converts\": [\n        \"NNS\"\n    ], \n    \"Musical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Baltimore\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"galvanism\": [\n        \"NN\"\n    ], \n    \"quicker\": [\n        \"JJR\", \n        \"RBR\", \n        \"JJ\"\n    ], \n    \"capability...\": [\n        \":\"\n    ], \n    \"McInroy\": [\n        \"NNP\"\n    ], \n    \"Fights\": [\n        \"NNS\"\n    ], \n    \"jewel\": [\n        \"NN\"\n    ], \n    \"pricey\": [\n        \"JJ\"\n    ], \n    \"intentionally\": [\n        \"RB\"\n    ], \n    \"whole-egg\": [\n        \"JJ\"\n    ], \n    \"Lyster\": [\n        \"NNP\"\n    ], \n    \"xenon\": [\n        \"NN\"\n    ], \n    \"CANADA\": [\n        \"NNP\"\n    ], \n    \"Steelton\": [\n        \"NNP\"\n    ], \n    \"xylem\": [\n        \"NN\"\n    ], \n    \"raining\": [\n        \"VBG\"\n    ], \n    \"sitters\": [\n        \"NNS\"\n    ], \n    \"Thorn-EMI\": [\n        \"NNP\"\n    ], \n    \"hordes\": [\n        \"NNS\"\n    ], \n    \"quota-breakers\": [\n        \"NNS\"\n    ], \n    \"Hasting\": [\n        \"NNP\"\n    ], \n    \"mark-denominated\": [\n        \"JJ\"\n    ], \n    \"foul\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"Seller\": [\n        \"NN\"\n    ], \n    \"revelers\": [\n        \"NNS\"\n    ], \n    \"prices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"BROWN-FORMAN\": [\n        \"NNP\"\n    ], \n    \"preface\": [\n        \"NN\"\n    ], \n    \"centimeter\": [\n        \"NN\"\n    ], \n    \"Until\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"aggression\": [\n        \"NN\"\n    ], \n    \"Antar\": [\n        \"NNP\"\n    ], \n    \"Electromyography\": [\n        \"NN\"\n    ], \n    \"crooned\": [\n        \"VBD\"\n    ], \n    \"Kushkin\": [\n        \"NNP\"\n    ], \n    \"Manufacturers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Michaelcheck\": [\n        \"NNP\"\n    ], \n    \"quadruple\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"outwit\": [\n        \"VB\"\n    ], \n    \"Belgians\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"demoted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Climbing\": [\n        \"VBG\"\n    ], \n    \"sinking\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"callin\": [\n        \"VBG\"\n    ], \n    \"propane\": [\n        \"NN\"\n    ], \n    \"SP1\": [\n        \"JJ\"\n    ], \n    \"financial-planning\": [\n        \"JJ\"\n    ], \n    \"laser-resistant\": [\n        \"JJ\"\n    ], \n    \"pierce\": [\n        \"VB\"\n    ], \n    \"tantalizing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"lignite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fur\": [\n        \"NN\"\n    ], \n    \"Redding\": [\n        \"NNP\"\n    ], \n    \"Heights\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"specialty-store\": [\n        \"NN\"\n    ], \n    \"uttering\": [\n        \"VBG\"\n    ], \n    \"Hannifin\": [\n        \"NNP\"\n    ], \n    \"Less\": [\n        \"RBR\", \n        \"JJR\", \n        \"NNP\"\n    ], \n    \"distate\": [\n        \"NN\"\n    ], \n    \"brutish\": [\n        \"JJ\"\n    ], \n    \"cross-top\": [\n        \"JJ\"\n    ], \n    \"Vast\": [\n        \"JJ\"\n    ], \n    \"gorup\": [\n        \"NN\"\n    ], \n    \"Quist\": [\n        \"NNP\"\n    ], \n    \"disunited\": [\n        \"VBN\"\n    ], \n    \"Jerez\": [\n        \"NNP\"\n    ], \n    \"anti-Galileo\": [\n        \"JJ\"\n    ], \n    \"commented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lesk\": [\n        \"NNP\"\n    ], \n    \"Conventional\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"tolerate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"railing\": [\n        \"NN\"\n    ], \n    \"Summerspace\": [\n        \"NNP\"\n    ], \n    \"na/TO\": [\n        \"NNP\"\n    ], \n    \"Hecla\": [\n        \"NNP\"\n    ], \n    \"non-ICO\": [\n        \"JJ\"\n    ], \n    \"resignations\": [\n        \"NNS\"\n    ], \n    \"pavane\": [\n        \"NN\"\n    ], \n    \"DiVarco\": [\n        \"NNP\"\n    ], \n    \"Huai\": [\n        \"NNP\"\n    ], \n    \"relieving\": [\n        \"VBG\"\n    ], \n    \"thunder\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Perinetti\": [\n        \"NNP\"\n    ], \n    \"Earthmen\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"schism\": [\n        \"NN\"\n    ], \n    \"Companion\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Guerrillas\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"bonuses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"early-warning\": [\n        \"NN\"\n    ], \n    \"Raspberry\": [\n        \"NN\"\n    ], \n    \"admiral\": [\n        \"NN\"\n    ], \n    \"inducement\": [\n        \"NN\"\n    ], \n    \"grovels\": [\n        \"VBZ\"\n    ], \n    \"Pudwell\": [\n        \"NNP\"\n    ], \n    \"legations\": [\n        \"NNS\"\n    ], \n    \"PROSECUTORS\": [\n        \"NNS\"\n    ], \n    \"top-flight\": [\n        \"JJ\"\n    ], \n    \"sobs\": [\n        \"NNS\"\n    ], \n    \"midafternoon\": [\n        \"NN\"\n    ], \n    \"fissured\": [\n        \"VBN\"\n    ], \n    \"PATIENCE\": [\n        \"NN\"\n    ], \n    \"Resins\": [\n        \"NNPS\"\n    ], \n    \"Forgotten\": [\n        \"NNP\"\n    ], \n    \"fissures\": [\n        \"NNS\"\n    ], \n    \"tenspot\": [\n        \"NN\"\n    ], \n    \"excelsior\": [\n        \"NN\"\n    ], \n    \"Botulinal\": [\n        \"JJ\"\n    ], \n    \"Dominique\": [\n        \"NNP\"\n    ], \n    \"Zita\": [\n        \"NNP\"\n    ], \n    \"flatlands\": [\n        \"NNS\"\n    ], \n    \"k\": [\n        \"NN\"\n    ], \n    \"Petite\": [\n        \"JJ\"\n    ], \n    \"Xiao\": [\n        \"NNP\"\n    ], \n    \"newspaper-publishing\": [\n        \"JJ\"\n    ], \n    \"unwanted\": [\n        \"JJ\"\n    ], \n    \"indulging\": [\n        \"VBG\"\n    ], \n    \"Mutton\": [\n        \"NNP\"\n    ], \n    \"labor-saving\": [\n        \"JJ\"\n    ], \n    \"Towsley\": [\n        \"NNP\"\n    ], \n    \"slivery\": [\n        \"NN\"\n    ], \n    \"Skates\": [\n        \"NNP\"\n    ], \n    \"cocaine\": [\n        \"NN\"\n    ], \n    \"Pompeii\": [\n        \"NNP\"\n    ], \n    \"zoning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"opponents\": [\n        \"NNS\"\n    ], \n    \"derivatives\": [\n        \"NNS\"\n    ], \n    \"good-hearted\": [\n        \"JJ\"\n    ], \n    \"reticulate\": [\n        \"JJ\"\n    ], \n    \"anti-deer\": [\n        \"JJ\"\n    ], \n    \"Rabin\": [\n        \"NNP\"\n    ], \n    \"females\": [\n        \"NNS\"\n    ], \n    \"standardized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"high-wage\": [\n        \"JJ\"\n    ], \n    \"pointedly\": [\n        \"RB\"\n    ], \n    \"taffycolored\": [\n        \"VBN\"\n    ], \n    \"smelts\": [\n        \"NNS\"\n    ], \n    \"lord\": [\n        \"NN\"\n    ], \n    \"zipped\": [\n        \"VBD\"\n    ], \n    \"foul-mouthed\": [\n        \"JJ\"\n    ], \n    \"tastefully\": [\n        \"RB\"\n    ], \n    \"Merz\": [\n        \"NNP\"\n    ], \n    \"lesson-learning\": [\n        \"NN\"\n    ], \n    \"Nuell\": [\n        \"NNP\"\n    ], \n    \"grimed\": [\n        \"VBN\"\n    ], \n    \"plunged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Merv\": [\n        \"NNP\"\n    ], \n    \"Ropes\": [\n        \"NNPS\"\n    ], \n    \"anticompetitive\": [\n        \"JJ\"\n    ], \n    \"plunges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"municipally\": [\n        \"RB\"\n    ], \n    \"marketing-and-distribution\": [\n        \"JJ\"\n    ], \n    \"world-freight\": [\n        \"NN\"\n    ], \n    \"Cyoctol\": [\n        \"NNP\"\n    ], \n    \"overextend\": [\n        \"VBP\"\n    ], \n    \"slimmed-down\": [\n        \"JJ\"\n    ], \n    \"currency\": [\n        \"NN\"\n    ], \n    \"Amoskeag\": [\n        \"NNP\"\n    ], \n    \"Energie\": [\n        \"NNP\"\n    ], \n    \"Loudon\": [\n        \"NNP\"\n    ], \n    \"Dempsey\": [\n        \"NNP\"\n    ], \n    \"unmasked\": [\n        \"VBN\"\n    ], \n    \"pigsty\": [\n        \"NN\"\n    ], \n    \"comedians\": [\n        \"NNS\"\n    ], \n    \"imperishable\": [\n        \"JJ\"\n    ], \n    \"child-safety\": [\n        \"JJ\"\n    ], \n    \"Zimet\": [\n        \"NNP\"\n    ], \n    \"Cabbage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mullins\": [\n        \"NNP\"\n    ], \n    \"fanaticism\": [\n        \"NN\"\n    ], \n    \"tripling\": [\n        \"VBG\"\n    ], \n    \"latest-quarter\": [\n        \"JJ\"\n    ], \n    \"thermodynamic\": [\n        \"JJ\"\n    ], \n    \"survivable\": [\n        \"JJ\"\n    ], \n    \"despondent\": [\n        \"JJ\"\n    ], \n    \"triage\": [\n        \"NN\"\n    ], \n    \"Players\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"McInerney\": [\n        \"NNP\"\n    ], \n    \"constants\": [\n        \"NNS\"\n    ], \n    \"persuasiveness\": [\n        \"NN\"\n    ], \n    \"Erie\": [\n        \"NNP\"\n    ], \n    \"Knowledgeable\": [\n        \"JJ\"\n    ], \n    \"drinks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"deutsche\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"first-mortgage\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pet-rabbit-raising\": [\n        \"JJ\"\n    ], \n    \"baggage\": [\n        \"NN\"\n    ], \n    \"trellises\": [\n        \"NNS\"\n    ], \n    \"Fabulous\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"timers\": [\n        \"NNS\"\n    ], \n    \"communistic\": [\n        \"JJ\"\n    ], \n    \"Drug-industry\": [\n        \"JJ\"\n    ], \n    \"Renowned\": [\n        \"VBN\"\n    ], \n    \"Criminals\": [\n        \"NNS\"\n    ], \n    \"MONTHLY\": [\n        \"JJ\"\n    ], \n    \"derring-do\": [\n        \"NN\"\n    ], \n    \"Recruiter\": [\n        \"NNP\"\n    ], \n    \"side-conclusions\": [\n        \"NNS\"\n    ], \n    \"Recruited\": [\n        \"VBN\"\n    ], \n    \"wrought\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"deregulating\": [\n        \"VBG\"\n    ], \n    \"superregional\": [\n        \"JJ\"\n    ], \n    \"unforeseen\": [\n        \"JJ\"\n    ], \n    \"auditors\": [\n        \"NNS\"\n    ], \n    \"survivors\": [\n        \"NNS\"\n    ], \n    \"Karangelen\": [\n        \"NNP\"\n    ], \n    \"insubstantial\": [\n        \"JJ\"\n    ], \n    \"Stainless\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Khost\": [\n        \"NNP\"\n    ], \n    \"easier\": [\n        \"JJR\", \n        \"RBR\", \n        \"RB\"\n    ], \n    \"Implements\": [\n        \"NNS\"\n    ], \n    \"Wilcox\": [\n        \"NNP\"\n    ], \n    \"thrones\": [\n        \"NNS\"\n    ], \n    \"planetoid\": [\n        \"NN\"\n    ], \n    \"slate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Presumably\": [\n        \"RB\"\n    ], \n    \"blini\": [\n        \"NNS\"\n    ], \n    \"aspersions\": [\n        \"NNS\"\n    ], \n    \"constructional\": [\n        \"JJ\"\n    ], \n    \"schools\": [\n        \"NNS\"\n    ], \n    \"Pechiney\": [\n        \"NNP\"\n    ], \n    \"slats\": [\n        \"NNS\"\n    ], \n    \"lenient\": [\n        \"JJ\"\n    ], \n    \"competitiveness\": [\n        \"NN\"\n    ], \n    \"Prudent\": [\n        \"NNP\"\n    ], \n    \"CODE-NAMED\": [\n        \"VBN\"\n    ], \n    \"renditions\": [\n        \"NNS\"\n    ], \n    \"argriculture\": [\n        \"NN\"\n    ], \n    \"fiscal-first\": [\n        \"JJ\"\n    ], \n    \"Hobbes\": [\n        \"NNP\"\n    ], \n    \"Pitney-Bowes\": [\n        \"NNP\"\n    ], \n    \"loyalties\": [\n        \"NNS\"\n    ], \n    \"twindam\": [\n        \"NN\"\n    ], \n    \"glad-handing\": [\n        \"NN\"\n    ], \n    \"unwary\": [\n        \"JJ\"\n    ], \n    \"pliant\": [\n        \"JJ\"\n    ], \n    \"series\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"slow-building\": [\n        \"JJ\"\n    ], \n    \"Yeres\": [\n        \"NNP\"\n    ], \n    \"Recognizing\": [\n        \"VBG\"\n    ], \n    \"Okada\": [\n        \"NNP\"\n    ], \n    \"depositing\": [\n        \"VBG\"\n    ], \n    \"substantially\": [\n        \"RB\"\n    ], \n    \"mutineer\": [\n        \"NN\"\n    ], \n    \"emulsified\": [\n        \"VBN\"\n    ], \n    \"TRADE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hahn\": [\n        \"NNP\"\n    ], \n    \"high-temperature\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ten-concert\": [\n        \"JJ\"\n    ], \n    \"package-design\": [\n        \"NN\"\n    ], \n    \"less-self-confident\": [\n        \"JJ\"\n    ], \n    \"single-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"redundancies\": [\n        \"NNS\"\n    ], \n    \"heavy-duty\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"H.K.\": [\n        \"NNP\"\n    ], \n    \"Culvers\": [\n        \"NNPS\"\n    ], \n    \"Super\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Chaikoff\": [\n        \"NNP\"\n    ], \n    \"foundation\": [\n        \"NN\"\n    ], \n    \"written\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Abortion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"safe-cracking\": [\n        \"JJ\"\n    ], \n    \"Pension\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Lapin\": [\n        \"FW\"\n    ], \n    \"mobsters\": [\n        \"NNS\"\n    ], \n    \"desks\": [\n        \"NNS\"\n    ], \n    \"Frankfurt\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"withered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Princeton\\\\/Newport-like\": [\n        \"JJ\"\n    ], \n    \"shipper\": [\n        \"NN\"\n    ], \n    \"exposing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Rosenberg\": [\n        \"NNP\"\n    ], \n    \"Mingo\": [\n        \"NNP\"\n    ], \n    \"Chan\": [\n        \"NNP\"\n    ], \n    \"Chao\": [\n        \"NNP\"\n    ], \n    \"silicon\": [\n        \"NN\"\n    ], \n    \"shipped\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"speedy\": [\n        \"JJ\"\n    ], \n    \"coeds\": [\n        \"NNS\"\n    ], \n    \"Cadam\": [\n        \"NNP\"\n    ], \n    \"repealed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Anjelica\": [\n        \"NNP\"\n    ], \n    \"caught\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"speeds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Universities\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"bowl\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Dun\": [\n        \"NNP\"\n    ], \n    \"most-likely\": [\n        \"JJ\"\n    ], \n    \"dailies\": [\n        \"NNS\"\n    ], \n    \"celebrators\": [\n        \"NNS\"\n    ], \n    \"Due\": [\n        \"JJ\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"sallies\": [\n        \"NNS\"\n    ], \n    \"channels\": [\n        \"NNS\"\n    ], \n    \"second-degree\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"infused\": [\n        \"VBN\"\n    ], \n    \"abutments\": [\n        \"NNS\"\n    ], \n    \"Trabants\": [\n        \"NNPS\"\n    ], \n    \"elms\": [\n        \"NNS\"\n    ], \n    \"Messelt\": [\n        \"NNP\"\n    ], \n    \"fur-piece\": [\n        \"NN\"\n    ], \n    \"eye-gouging\": [\n        \"NN\"\n    ], \n    \"basketball\": [\n        \"NN\"\n    ], \n    \"exchequer\": [\n        \"NN\"\n    ], \n    \"betrothed\": [\n        \"VBD\"\n    ], \n    \"investment-insurance\": [\n        \"NN\"\n    ], \n    \"prepurchase\": [\n        \"JJ\"\n    ], \n    \"Italian-led\": [\n        \"JJ\"\n    ], \n    \"Chorale\": [\n        \"NNP\"\n    ], \n    \"carload\": [\n        \"NN\"\n    ], \n    \"over-arching\": [\n        \"JJ\"\n    ], \n    \"hypothetical\": [\n        \"JJ\"\n    ], \n    \"SoundView\": [\n        \"NNP\"\n    ], \n    \"external-trade\": [\n        \"JJ\"\n    ], \n    \"bethought\": [\n        \"VB\"\n    ], \n    \"Encyclopaedia\": [\n        \"NNP\"\n    ], \n    \"Gallon-Loren\": [\n        \"NNP\"\n    ], \n    \"immensities\": [\n        \"NNS\"\n    ], \n    \"lunges\": [\n        \"VBZ\"\n    ], \n    \"lunger\": [\n        \"NN\"\n    ], \n    \"expunged\": [\n        \"VBN\"\n    ], \n    \"nirvana\": [\n        \"NN\"\n    ], \n    \"megalomaniac\": [\n        \"NN\"\n    ], \n    \"advisement\": [\n        \"NN\"\n    ], \n    \"Summit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"scholastically\": [\n        \"RB\"\n    ], \n    \"unfair-trade\": [\n        \"JJ\"\n    ], \n    \"crawl\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"lunged\": [\n        \"VBD\"\n    ], \n    \"Serkin\": [\n        \"NNP\"\n    ], \n    \"exultation\": [\n        \"NN\"\n    ], \n    \"showed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"elegant\": [\n        \"JJ\"\n    ], \n    \"hyenas\": [\n        \"NNS\"\n    ], \n    \"tree\": [\n        \"NN\"\n    ], \n    \"TINTING\": [\n        \"NN\"\n    ], \n    \"project\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Frequency\": [\n        \"NNP\"\n    ], \n    \"involutorial\": [\n        \"JJ\"\n    ], \n    \"blasphemed\": [\n        \"VBD\"\n    ], \n    \"Wessels\": [\n        \"NNP\"\n    ], \n    \"Furies\": [\n        \"NNS\"\n    ], \n    \"Sulya\": [\n        \"NNP\"\n    ], \n    \"runner\": [\n        \"NN\"\n    ], \n    \"Woodyard\": [\n        \"NNP\"\n    ], \n    \"untrained\": [\n        \"JJ\"\n    ], \n    \"antagonistic\": [\n        \"JJ\"\n    ], \n    \"shrubs\": [\n        \"NNS\"\n    ], \n    \"home-builder\": [\n        \"NN\"\n    ], \n    \"Memorex\": [\n        \"NNP\"\n    ], \n    \"ANSA\": [\n        \"NNP\"\n    ], \n    \"hyper-inflation\": [\n        \"NN\"\n    ], \n    \"gripe\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"nigs\": [\n        \"NNS\"\n    ], \n    \"asymmetric\": [\n        \"JJ\"\n    ], \n    \"recommended\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Pursuit\": [\n        \"NN\"\n    ], \n    \"doors\": [\n        \"NNS\"\n    ], \n    \"Ask\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"grips\": [\n        \"NNS\"\n    ], \n    \"Ash\": [\n        \"NNP\"\n    ], \n    \"Iain\": [\n        \"NNP\"\n    ], \n    \"Jones\": [\n        \"NNP\"\n    ], \n    \"Sardina\": [\n        \"NNP\"\n    ], \n    \"Catherall\": [\n        \"NNP\"\n    ], \n    \"Counterpoint\": [\n        \"NN\"\n    ], \n    \"debonair\": [\n        \"JJ\"\n    ], \n    \"reverberated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Althea\": [\n        \"NNP\"\n    ], \n    \"guardedness\": [\n        \"NN\"\n    ], \n    \"Warrick\": [\n        \"NNP\"\n    ], \n    \"stock-price\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cams\": [\n        \"NNS\"\n    ], \n    \"camp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Schwada\": [\n        \"NNP\"\n    ], \n    \"rotary\": [\n        \"JJ\"\n    ], \n    \"consumer-product\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"CREATIVE\": [\n        \"JJ\"\n    ], \n    \"memberships\": [\n        \"NNS\"\n    ], \n    \"Brideshead\": [\n        \"NNP\"\n    ], \n    \"howl\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Baden-Wuerttemberg\": [\n        \"NNP\"\n    ], \n    \"Lisbon\": [\n        \"NNP\"\n    ], \n    \"circulations\": [\n        \"NNS\"\n    ], \n    \"Chicago-Warsaw\": [\n        \"NNP\"\n    ], \n    \"came\": [\n        \"VBD\"\n    ], \n    \"Anglicans\": [\n        \"NNS\"\n    ], \n    \"Symonds\": [\n        \"NNP\"\n    ], \n    \"Abdul\": [\n        \"NNP\"\n    ], \n    \"shark-infested\": [\n        \"JJ\"\n    ], \n    \"reschedule\": [\n        \"VB\"\n    ], \n    \"Marcella\": [\n        \"NNP\"\n    ], \n    \"participate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"falsehoods\": [\n        \"NNS\"\n    ], \n    \"unmanaged\": [\n        \"JJ\"\n    ], \n    \"Marcello\": [\n        \"NNP\"\n    ], \n    \"convenient-type\": [\n        \"JJ\"\n    ], \n    \"layout\": [\n        \"NN\"\n    ], \n    \"Reaching\": [\n        \"VBG\"\n    ], \n    \"quaint\": [\n        \"JJ\"\n    ], \n    \"wastewater\": [\n        \"NN\"\n    ], \n    \"Tripod-Laing\": [\n        \"NNP\"\n    ], \n    \"Ranked\": [\n        \"VBN\"\n    ], \n    \"salvos\": [\n        \"NNS\"\n    ], \n    \"Wealthy\": [\n        \"NNP\"\n    ], \n    \"ballyhooed\": [\n        \"VBN\"\n    ], \n    \"On-Site\": [\n        \"NNP\"\n    ], \n    \"organizes\": [\n        \"VBZ\"\n    ], \n    \"D.C.\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pre-empt\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"denounce\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"psychiatric\": [\n        \"JJ\"\n    ], \n    \"foremost\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Encompassing\": [\n        \"VBG\"\n    ], \n    \"beavertail\": [\n        \"NN\"\n    ], \n    \"masonry\": [\n        \"NN\"\n    ], \n    \"tenaciously\": [\n        \"RB\"\n    ], \n    \"worth-waiting-for\": [\n        \"JJ\"\n    ], \n    \"Xiaobo\": [\n        \"NNP\"\n    ], \n    \"dipping\": [\n        \"VBG\"\n    ], \n    \"Mackenzie\": [\n        \"NNP\"\n    ], \n    \"prayerful\": [\n        \"JJ\"\n    ], \n    \"Seventies\": [\n        \"NNPS\"\n    ], \n    \"sludge-covered\": [\n        \"JJ\"\n    ], \n    \"twinkling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bennington\": [\n        \"NNP\"\n    ], \n    \"freewheelers\": [\n        \"NNS\"\n    ], \n    \"Neurenschatz\": [\n        \"NNP\"\n    ], \n    \"Winners\": [\n        \"NNS\"\n    ], \n    \"cloning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Subverts\": [\n        \"NNP\"\n    ], \n    \"McPherson\": [\n        \"NNP\"\n    ], \n    \"resigned\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pricking\": [\n        \"VBG\"\n    ], \n    \"no-lose\": [\n        \"JJ\"\n    ], \n    \"pressured\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"rings\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"solicitude\": [\n        \"NN\"\n    ], \n    \"top-drawer\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pressures\": [\n        \"NNS\"\n    ], \n    \"Wednesdays\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"oedipal\": [\n        \"JJ\"\n    ], \n    \"yogurt\": [\n        \"NN\"\n    ], \n    \"Lockies\": [\n        \"NNPS\"\n    ], \n    \"Pooh-like\": [\n        \"JJ\"\n    ], \n    \"apples\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Bebe\": [\n        \"NNP\"\n    ], \n    \"wanted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"good-news\": [\n        \"NN\"\n    ], \n    \"J/NNP.G.L.\": [\n        \"NNP\"\n    ], \n    \"employment-services\": [\n        \"JJ\"\n    ], \n    \"fullscale\": [\n        \"JJ\"\n    ], \n    \"Porkapolis\": [\n        \"NNP\"\n    ], \n    \"TANDEM\": [\n        \"NNP\"\n    ], \n    \"reconstitute\": [\n        \"VB\"\n    ], \n    \"defiance\": [\n        \"NN\"\n    ], \n    \"Quemoy\": [\n        \"NNP\"\n    ], \n    \"debt\": [\n        \"NN\"\n    ], \n    \"attendents\": [\n        \"NNS\"\n    ], \n    \"planner\": [\n        \"NN\"\n    ], \n    \"disdain\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Sovran\": [\n        \"NNP\"\n    ], \n    \"Weybosset\": [\n        \"NNP\"\n    ], \n    \"Blessed\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"planned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Menshikov\": [\n        \"NNP\"\n    ], \n    \"alternate\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"ramrod-straight\": [\n        \"JJ\"\n    ], \n    \"miscommunication\": [\n        \"NN\"\n    ], \n    \"BCD\": [\n        \"NNP\"\n    ], \n    \"fudged\": [\n        \"VBD\"\n    ], \n    \"Caton\": [\n        \"NNP\"\n    ], \n    \"liberal-conservative\": [\n        \"JJ\"\n    ], \n    \"BCA\": [\n        \"NNP\"\n    ], \n    \"munches\": [\n        \"VBZ\"\n    ], \n    \"trickiest\": [\n        \"JJS\"\n    ], \n    \"smithereens\": [\n        \"NNS\"\n    ], \n    \"hers\": [\n        \"PRP\", \n        \"JJ\"\n    ], \n    \"re-education\": [\n        \"NN\"\n    ], \n    \"gleaming\": [\n        \"VBG\"\n    ], \n    \"munched\": [\n        \"VBD\"\n    ], \n    \"Sorry\": [\n        \"JJ\", \n        \"UH\"\n    ], \n    \"grazing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"BCS\": [\n        \"NNP\"\n    ], \n    \"Pomton\": [\n        \"NNP\"\n    ], \n    \"reconsideration\": [\n        \"NN\"\n    ], \n    \"parley\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"trapdoor\": [\n        \"NN\"\n    ], \n    \"Orrin\": [\n        \"NNP\"\n    ], \n    \"Malay\": [\n        \"NNP\"\n    ], \n    \"Infection\": [\n        \"NN\"\n    ], \n    \"art-shop\": [\n        \"NN\"\n    ], \n    \"privilege\": [\n        \"NN\"\n    ], \n    \"dynamically\": [\n        \"RB\"\n    ], \n    \"deportations\": [\n        \"NNS\"\n    ], \n    \"dots\": [\n        \"NNS\"\n    ], \n    \"face-to-face\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Algiers\": [\n        \"NNP\"\n    ], \n    \"FDA-regulated\": [\n        \"JJ\"\n    ], \n    \"sewer-repair\": [\n        \"JJ\"\n    ], \n    \"gavottes\": [\n        \"NNS\"\n    ], \n    \"gloats\": [\n        \"VBZ\"\n    ], \n    \"low-ceilinged\": [\n        \"JJ\"\n    ], \n    \"Schulz\": [\n        \"NNP\"\n    ], \n    \"Nominations\": [\n        \"NNS\"\n    ], \n    \"doth\": [\n        \"VBZ\"\n    ], \n    \"expansionists\": [\n        \"NNS\"\n    ], \n    \"Gatward\": [\n        \"NNP\"\n    ], \n    \"gritty\": [\n        \"JJ\"\n    ], \n    \"joblot\": [\n        \"NN\"\n    ], \n    \"life-health\": [\n        \"NN\"\n    ], \n    \"inpatient\": [\n        \"NN\"\n    ], \n    \"scowled\": [\n        \"VBD\"\n    ], \n    \"NSBU\": [\n        \"NNP\"\n    ], \n    \"Kuiper\": [\n        \"NNP\"\n    ], \n    \"excited\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"light-rail\": [\n        \"JJ\"\n    ], \n    \"betas\": [\n        \"NNS\"\n    ], \n    \"MAGURNO\": [\n        \"NNP\"\n    ], \n    \"Campbell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pitt-Rivers\": [\n        \"NNP\"\n    ], \n    \"congratulation\": [\n        \"NN\"\n    ], \n    \"Southmark-supported\": [\n        \"JJ\"\n    ], \n    \"Painters\": [\n        \"NNS\"\n    ], \n    \"taunts\": [\n        \"NNS\"\n    ], \n    \"overpowers\": [\n        \"VBZ\"\n    ], \n    \"Teferi\": [\n        \"NNP\"\n    ], \n    \"upscale\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Gazette\": [\n        \"NNP\"\n    ], \n    \"violin\": [\n        \"NN\"\n    ], \n    \"churchmen\": [\n        \"NNS\"\n    ], \n    \"damaged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"severity\": [\n        \"NN\"\n    ], \n    \"pawnshop\": [\n        \"NN\"\n    ], \n    \"allegoric\": [\n        \"JJ\"\n    ], \n    \"Naw\": [\n        \"UH\"\n    ], \n    \"DILLARD\": [\n        \"NNP\"\n    ], \n    \"verify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hall-mark\": [\n        \"NN\"\n    ], \n    \"by-gone\": [\n        \"JJ\"\n    ], \n    \"drop-out\": [\n        \"JJ\"\n    ], \n    \"damages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Roine\": [\n        \"NNP\"\n    ], \n    \"Wratten\": [\n        \"NNP\"\n    ], \n    \"emphatic\": [\n        \"JJ\"\n    ], \n    \"voyager\": [\n        \"NN\"\n    ], \n    \"voyages\": [\n        \"NNS\"\n    ], \n    \"Scripps-Howard\": [\n        \"NNP\"\n    ], \n    \"equalizing\": [\n        \"NN\"\n    ], \n    \"Roskind\": [\n        \"NNP\"\n    ], \n    \"Retrovirus\": [\n        \"NNP\"\n    ], \n    \"seamen\": [\n        \"NNS\"\n    ], \n    \"Hinsdale\": [\n        \"NNP\"\n    ], \n    \"haggard\": [\n        \"JJ\"\n    ], \n    \"simulates\": [\n        \"VBZ\"\n    ], \n    \"Spalding\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Zielinski\": [\n        \"NNP\"\n    ], \n    \"Beset\": [\n        \"VBN\"\n    ], \n    \"fanatically\": [\n        \"RB\"\n    ], \n    \"simulated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"quantitative\": [\n        \"JJ\"\n    ], \n    \"pairings\": [\n        \"NNS\"\n    ], \n    \"dissects\": [\n        \"VBZ\"\n    ], \n    \"veils\": [\n        \"NNS\"\n    ], \n    \"DLINE\": [\n        \"NN\"\n    ], \n    \"boyhood\": [\n        \"NN\"\n    ], \n    \"Thank\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Thanh\": [\n        \"NNP\"\n    ], \n    \"THAT\": [\n        \"WDT\", \n        \"DT\"\n    ], \n    \"Subsequent\": [\n        \"JJ\"\n    ], \n    \"Baden-Baden\": [\n        \"NNP\"\n    ], \n    \"DRI\": [\n        \"NNP\"\n    ], \n    \"Bien\": [\n        \"NNP\"\n    ], \n    \"Position\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Thant\": [\n        \"NNP\"\n    ], \n    \"THAN\": [\n        \"IN\"\n    ], \n    \"DRG\": [\n        \"NNP\"\n    ], \n    \"Pumpkin\": [\n        \"NNP\"\n    ], \n    \"self-assured\": [\n        \"JJ\"\n    ], \n    \"handshake\": [\n        \"NN\"\n    ], \n    \"magically\": [\n        \"RB\"\n    ], \n    \"Soweto\": [\n        \"NNP\"\n    ], \n    \"old-fashioned\": [\n        \"JJ\"\n    ], \n    \"Sulamith\": [\n        \"NNP\"\n    ], \n    \"palmtops\": [\n        \"NNS\"\n    ], \n    \"innocent\": [\n        \"JJ\"\n    ], \n    \"botanists\": [\n        \"NNS\"\n    ], \n    \"Nichtige\": [\n        \"NN\"\n    ], \n    \"SystemOne\": [\n        \"NNP\"\n    ], \n    \"Broiler\": [\n        \"NN\"\n    ], \n    \"quirk\": [\n        \"NN\"\n    ], \n    \"knock-down\": [\n        \"JJ\"\n    ], \n    \"Cathleen\": [\n        \"NNP\"\n    ], \n    \"shabbily\": [\n        \"RB\"\n    ], \n    \"Chrysler\": [\n        \"NNP\"\n    ], \n    \"ratcheting\": [\n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"quirt\": [\n        \"NN\"\n    ], \n    \"Geier\": [\n        \"NNP\"\n    ], \n    \"Campbell-brand\": [\n        \"JJ\"\n    ], \n    \"Claudia\": [\n        \"NN\"\n    ], \n    \"brought\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"specie\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"deviance\": [\n        \"NN\"\n    ], \n    \"Claudio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bulked\": [\n        \"VBD\"\n    ], \n    \"Graziano\": [\n        \"NNP\"\n    ], \n    \"headwalls\": [\n        \"NNS\"\n    ], \n    \"sailorly\": [\n        \"RB\"\n    ], \n    \"ballooned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Yoshizawa\": [\n        \"NNP\"\n    ], \n    \"consultants\": [\n        \"NNS\"\n    ], \n    \"Bismark\": [\n        \"NNP\"\n    ], \n    \"Greenness\": [\n        \"NN\"\n    ], \n    \"Philadelphia-area\": [\n        \"JJ\"\n    ], \n    \"Norton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"newly-created\": [\n        \"JJ\"\n    ], \n    \"enemies\": [\n        \"NNS\"\n    ], \n    \"Messing\": [\n        \"VBG\"\n    ], \n    \"iniquities\": [\n        \"NNS\"\n    ], \n    \"Cudkowicz\": [\n        \"NNP\"\n    ], \n    \"polluted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"birdlike\": [\n        \"JJ\"\n    ], \n    \"disheartened\": [\n        \"VBN\"\n    ], \n    \"exposition\": [\n        \"NN\"\n    ], \n    \"periphery\": [\n        \"NN\"\n    ], \n    \"Hatching\": [\n        \"NNP\"\n    ], \n    \"nitrate\": [\n        \"NN\"\n    ], \n    \"polluter\": [\n        \"NN\"\n    ], \n    \"Convertible\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"theological\": [\n        \"JJ\"\n    ], \n    \"cultist\": [\n        \"NN\"\n    ], \n    \"McElroy\": [\n        \"NNP\"\n    ], \n    \"Remy\": [\n        \"NNP\"\n    ], \n    \"shaker\": [\n        \"NN\"\n    ], \n    \"shakes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"secularists\": [\n        \"NNS\"\n    ], \n    \"REJECTS\": [\n        \"VBZ\"\n    ], \n    \"Admittedly\": [\n        \"RB\"\n    ], \n    \"Valedictorian\": [\n        \"NNP\"\n    ], \n    \"Dooley\": [\n        \"NNP\"\n    ], \n    \"Marocaine\": [\n        \"NNP\"\n    ], \n    \"Westpheldt\": [\n        \"NNP\"\n    ], \n    \"Characters\": [\n        \"NNS\"\n    ], \n    \"defensive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"poppies\": [\n        \"NNS\"\n    ], \n    \"pliers\": [\n        \"NNS\"\n    ], \n    \"film-maker\": [\n        \"NN\"\n    ], \n    \"officiating\": [\n        \"VBG\"\n    ], \n    \"Gurkhas\": [\n        \"NNP\"\n    ], \n    \"AVX\": [\n        \"NNP\"\n    ], \n    \"Valentino\": [\n        \"NNP\"\n    ], \n    \"Valentina\": [\n        \"NNP\"\n    ], \n    \"fabrications\": [\n        \"NNS\"\n    ], \n    \"entrants\": [\n        \"NNS\"\n    ], \n    \"Valentine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"annualized\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Scrapings\": [\n        \"NNS\"\n    ], \n    \"AVC\": [\n        \"NNP\"\n    ], \n    \"hulking\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Use\": [\n        \"VB\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fee\": [\n        \"NN\"\n    ], \n    \"soe\": [\n        \"NN\"\n    ], \n    \"sod\": [\n        \"NN\"\n    ], \n    \"Blacks\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"facility\": [\n        \"NN\"\n    ], \n    \"Greeks\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"son\": [\n        \"NN\"\n    ], \n    \"Few\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"raiser\": [\n        \"NN\"\n    ], \n    \"raises\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"sow\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"soy\": [\n        \"NN\"\n    ], \n    \"Latino\": [\n        \"JJ\"\n    ], \n    \"Ont.\": [\n        \"NNP\"\n    ], \n    \"Fey\": [\n        \"NNP\"\n    ], \n    \"Checkit\": [\n        \"NNP\"\n    ], \n    \"authorizes\": [\n        \"VBZ\"\n    ], \n    \"waits\": [\n        \"VBZ\"\n    ], \n    \"La-la-landers\": [\n        \"NNS\"\n    ], \n    \"support\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"constantly\": [\n        \"RB\"\n    ], \n    \"Labeling\": [\n        \"VBG\"\n    ], \n    \"device.\": [\n        \"NN\"\n    ], \n    \"intra-stellar\": [\n        \"NN\"\n    ], \n    \"Schrager\": [\n        \"NNP\"\n    ], \n    \"Yoshio\": [\n        \"NNP\"\n    ], \n    \"Expressionism\": [\n        \"NNP\"\n    ], \n    \"general-director\": [\n        \"NN\"\n    ], \n    \"Hinkle\": [\n        \"NNP\"\n    ], \n    \"manmade\": [\n        \"NN\"\n    ], \n    \"fellow-employees\": [\n        \"NNS\"\n    ], \n    \"remarking\": [\n        \"VBG\"\n    ], \n    \"Nickelson\": [\n        \"NNP\"\n    ], \n    \"Akers\": [\n        \"NNP\"\n    ], \n    \"well-cemented\": [\n        \"JJ\"\n    ], \n    \"otter\": [\n        \"NN\"\n    ], \n    \"Servicios\": [\n        \"NNP\"\n    ], \n    \"Jens-Uwe\": [\n        \"NNP\"\n    ], \n    \"inside\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"devices\": [\n        \"NNS\"\n    ], \n    \"paprika\": [\n        \"NN\"\n    ], \n    \"faster-working\": [\n        \"JJR\"\n    ], \n    \"Hungary-Suez\": [\n        \"NNP\"\n    ], \n    \"glaringly\": [\n        \"RB\"\n    ], \n    \"Weatherford\": [\n        \"NNP\"\n    ], \n    \"Buoyed\": [\n        \"VBN\"\n    ], \n    \"communize\": [\n        \"VB\"\n    ], \n    \"Intourist\": [\n        \"NNP\"\n    ], \n    \"pilot-seniority\": [\n        \"NN\"\n    ], \n    \"door-frame\": [\n        \"NN\"\n    ], \n    \"Kurlander\": [\n        \"NNP\"\n    ], \n    \"Trooper\": [\n        \"NNP\"\n    ], \n    \"guideposts\": [\n        \"NNS\"\n    ], \n    \"textbook\": [\n        \"NN\"\n    ], \n    \"pig-drunk\": [\n        \"JJ\"\n    ], \n    \"centrifuged\": [\n        \"VBN\"\n    ], \n    \"Rimbaud\": [\n        \"NN\"\n    ], \n    \"Observations\": [\n        \"NNS\"\n    ], \n    \"death-row\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"negotiations\": [\n        \"NNS\"\n    ], \n    \"Unused\": [\n        \"JJ\"\n    ], \n    \"Francisco\": [\n        \"NNP\"\n    ], \n    \"AP-Dow\": [\n        \"NNP\"\n    ], \n    \"Trace\": [\n        \"NNP\"\n    ], \n    \"Track\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ambrosial\": [\n        \"JJ\"\n    ], \n    \"nestling\": [\n        \"NN\"\n    ], \n    \"Hernando\": [\n        \"NNP\"\n    ], \n    \"Tract\": [\n        \"NNP\"\n    ], \n    \"entomologist\": [\n        \"NN\"\n    ], \n    \"Tracy\": [\n        \"NNP\"\n    ], \n    \"superfluous\": [\n        \"JJ\"\n    ], \n    \"models\": [\n        \"NNS\"\n    ], \n    \"sunroof\": [\n        \"NN\"\n    ], \n    \"long-far\": [\n        \"NN\"\n    ], \n    \"Amos\": [\n        \"NNP\"\n    ], \n    \"Journal\\\\/NBC\": [\n        \"NNP\"\n    ], \n    \"Charley\": [\n        \"NNP\"\n    ], \n    \"Vadstena\": [\n        \"NNP\"\n    ], \n    \"Person\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vestiges\": [\n        \"NNS\"\n    ], \n    \"Charles\": [\n        \"NNP\"\n    ], \n    \"Charlet\": [\n        \"NNP\"\n    ], \n    \"Bayanihan\": [\n        \"NNP\"\n    ], \n    \"pet\": [\n        \"NN\", \n        \"VB\", \n        \"JJ\"\n    ], \n    \"conferred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Willam\": [\n        \"NNP\"\n    ], \n    \"renegotiating\": [\n        \"VBG\"\n    ], \n    \"irrigation\": [\n        \"NN\"\n    ], \n    \"hangovers\": [\n        \"NNS\"\n    ], \n    \"pep\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"umbrage\": [\n        \"NN\"\n    ], \n    \"hay-shakers\": [\n        \"NNS\"\n    ], \n    \"disrepute\": [\n        \"NN\"\n    ], \n    \"skate\": [\n        \"VB\"\n    ], \n    \"asymptomatic\": [\n        \"JJ\"\n    ], \n    \"rose-tea\": [\n        \"NN\"\n    ], \n    \"millisecond\": [\n        \"NN\"\n    ], \n    \"bribes\": [\n        \"NNS\"\n    ], \n    \"Wee\": [\n        \"NNP\"\n    ], \n    \"Falmouth\": [\n        \"NNP\"\n    ], \n    \"obsessively\": [\n        \"RB\"\n    ], \n    \"reverting\": [\n        \"VBG\"\n    ], \n    \"recurrence\": [\n        \"NN\"\n    ], \n    \"bicycles\": [\n        \"NNS\"\n    ], \n    \"bribed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"atavistic\": [\n        \"JJ\"\n    ], \n    \"persevere\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"icing\": [\n        \"NN\"\n    ], \n    \"Everytime\": [\n        \"RB\"\n    ], \n    \"scoreboard\": [\n        \"NN\"\n    ], \n    \"Yield\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Carvain\": [\n        \"NNP\"\n    ], \n    \"roundups\": [\n        \"NNS\"\n    ], \n    \"ellipsis\": [\n        \"NN\"\n    ], \n    \"Stratforde\": [\n        \"NNP\"\n    ], \n    \"fretting\": [\n        \"VBG\"\n    ], \n    \"Kai-shek\": [\n        \"NNP\"\n    ], \n    \"Rand\": [\n        \"NNP\"\n    ], \n    \"proto-oncogenes\": [\n        \"NN\"\n    ], \n    \"amoral\": [\n        \"JJ\"\n    ], \n    \"Fairing\": [\n        \"NN\"\n    ], \n    \"Rank\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Peterpaul\": [\n        \"NNP\"\n    ], \n    \"Jansenist\": [\n        \"NNP\"\n    ], \n    \"Nicaraguans\": [\n        \"NNPS\"\n    ], \n    \"aviators\": [\n        \"NNS\"\n    ], \n    \"Text\": [\n        \"NN\"\n    ], \n    \"rate-increase\": [\n        \"JJ\"\n    ], \n    \"crony\": [\n        \"NN\"\n    ], \n    \"Maquilas\": [\n        \"NNP\"\n    ], \n    \"occurrence\": [\n        \"NN\"\n    ], \n    \"collage\": [\n        \"NN\"\n    ], \n    \"sigh\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"sign\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"adulation\": [\n        \"NN\"\n    ], \n    \"value-system\": [\n        \"NN\"\n    ], \n    \"Aganbegyan\": [\n        \"NNP\"\n    ], \n    \"anaconda\": [\n        \"NN\"\n    ], \n    \"Slemrod\": [\n        \"NNP\"\n    ], \n    \"parachuting\": [\n        \"VBG\"\n    ], \n    \"Associations\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Ballooning\": [\n        \"NN\"\n    ], \n    \"tartare\": [\n        \"NN\"\n    ], \n    \"jeopardy\": [\n        \"NN\"\n    ], \n    \"Westphalia\": [\n        \"NNP\"\n    ], \n    \"hamstringing\": [\n        \"VBG\"\n    ], \n    \"Epilady\": [\n        \"NNP\"\n    ], \n    \"scar\": [\n        \"NN\"\n    ], \n    \"irresolvable\": [\n        \"JJ\"\n    ], \n    \"Veselich\": [\n        \"NNP\"\n    ], \n    \"Equality\": [\n        \"NNP\"\n    ], \n    \"leaped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"AFRICA\": [\n        \"NNP\"\n    ], \n    \"over-simple\": [\n        \"JJ\"\n    ], \n    \"understanding\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Woman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hoboken\": [\n        \"NNP\"\n    ], \n    \"sublease\": [\n        \"NN\"\n    ], \n    \"language-housekeeper\": [\n        \"JJ\"\n    ], \n    \"Emmy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"BLOW\": [\n        \"NNP\"\n    ], \n    \"Rush-Presbyterian-St\": [\n        \"NNP\"\n    ], \n    \"nonelectrical\": [\n        \"JJ\"\n    ], \n    \"Memorials\": [\n        \"NNP\"\n    ], \n    \"stair\": [\n        \"NN\"\n    ], \n    \"One-armed\": [\n        \"JJ\"\n    ], \n    \"Alaouite\": [\n        \"JJ\"\n    ], \n    \"ineffective\": [\n        \"JJ\"\n    ], \n    \"automated-teller-machine\": [\n        \"JJ\"\n    ], \n    \"Doaty\": [\n        \"NNP\"\n    ], \n    \"Wixom\": [\n        \"NNP\"\n    ], \n    \"spurts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Zealander\": [\n        \"NNP\"\n    ], \n    \"cheek-to-jowl\": [\n        \"RB\"\n    ], \n    \"Morover\": [\n        \"JJR\"\n    ], \n    \"convenes\": [\n        \"VBZ\"\n    ], \n    \"DOG\": [\n        \"NN\"\n    ], \n    \"logical\": [\n        \"JJ\"\n    ], \n    \"DOE\": [\n        \"NNP\"\n    ], \n    \"poll-taker\": [\n        \"NN\"\n    ], \n    \"loquacity\": [\n        \"NN\"\n    ], \n    \"fake\": [\n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Atonement\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"DOS\": [\n        \"NNP\"\n    ], \n    \"flagging\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"DOW\": [\n        \"NNP\"\n    ], \n    \"DOT\": [\n        \"NNP\"\n    ], \n    \"PLANTS\": [\n        \"NNS\"\n    ], \n    \"crammed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dershowitz\": [\n        \"NNP\"\n    ], \n    \"voices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Sarasota\": [\n        \"NNP\"\n    ], \n    \"wicker\": [\n        \"NN\"\n    ], \n    \"angry\": [\n        \"JJ\"\n    ], \n    \"Delayed\": [\n        \"JJ\"\n    ], \n    \"Sigler\": [\n        \"NNP\"\n    ], \n    \"wicket\": [\n        \"NN\"\n    ], \n    \"large-city\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"broken-down\": [\n        \"JJ\"\n    ], \n    \"enriched\": [\n        \"VBN\"\n    ], \n    \"wicked\": [\n        \"JJ\"\n    ], \n    \"scratched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Poetics\": [\n        \"NNP\"\n    ], \n    \"Mortar\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pollsters\": [\n        \"NNS\"\n    ], \n    \"Yocam\": [\n        \"NNP\"\n    ], \n    \"transoms\": [\n        \"NNS\"\n    ], \n    \"Marchese\": [\n        \"NNP\"\n    ], \n    \"Jimmy\": [\n        \"NNP\"\n    ], \n    \"scratches\": [\n        \"NNS\"\n    ], \n    \"Valhi\": [\n        \"NNP\"\n    ], \n    \"sieben\": [\n        \"FW\"\n    ], \n    \"Sintered\": [\n        \"VBN\"\n    ], \n    \"sanctified\": [\n        \"JJ\"\n    ], \n    \"hydrochloride\": [\n        \"NN\"\n    ], \n    \"Saga\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pretend\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"Sage\": [\n        \"NNP\"\n    ], \n    \"Kegler\": [\n        \"NNP\"\n    ], \n    \"inflamed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"flannels\": [\n        \"NNS\"\n    ], \n    \"Prudhoe\": [\n        \"NNP\"\n    ], \n    \"Squier\": [\n        \"NNP\"\n    ], \n    \"pumpkin\": [\n        \"NN\"\n    ], \n    \"Newsweek\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"re-examination\": [\n        \"NN\"\n    ], \n    \"Slotnick\": [\n        \"NNP\"\n    ], \n    \"awesome\": [\n        \"JJ\"\n    ], \n    \"virgins\": [\n        \"NNS\"\n    ], \n    \"validly\": [\n        \"RB\"\n    ], \n    \"Broadview\": [\n        \"NNP\"\n    ], \n    \"allowed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"stole\": [\n        \"VBD\"\n    ], \n    \"Medtronic\": [\n        \"NNP\"\n    ], \n    \"no-trade\": [\n        \"JJ\"\n    ], \n    \"savor\": [\n        \"VB\"\n    ], \n    \"dysgenic\": [\n        \"JJ\"\n    ], \n    \"Evenflo\": [\n        \"NNP\"\n    ], \n    \"tax-free.\": [\n        \"JJ\"\n    ], \n    \"undertook\": [\n        \"VBD\"\n    ], \n    \"encampment\": [\n        \"NN\"\n    ], \n    \"field-officials\": [\n        \"NNS\"\n    ], \n    \"federal-funds\": [\n        \"JJ\"\n    ], \n    \"misjudgments\": [\n        \"NNS\"\n    ], \n    \"wardens\": [\n        \"NNS\"\n    ], \n    \"ex-aides\": [\n        \"NNS\"\n    ], \n    \"yelp\": [\n        \"NN\"\n    ], \n    \"Peripherals\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Hooch\": [\n        \"NNP\"\n    ], \n    \"revealed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"golfers\": [\n        \"NNS\"\n    ], \n    \"Ozarks\": [\n        \"NNPS\"\n    ], \n    \"Literaturnaya\": [\n        \"NNP\"\n    ], \n    \"consequently\": [\n        \"RB\"\n    ], \n    \"nomadic\": [\n        \"JJ\"\n    ], \n    \"Probe\": [\n        \"NNP\"\n    ], \n    \"ordinarily\": [\n        \"RB\"\n    ], \n    \"st\": [\n        \"NN\"\n    ], \n    \"opinionated\": [\n        \"JJ\"\n    ], \n    \"so\": [\n        \"RB\", \n        \"CC\", \n        \"FW\", \n        \"IN\"\n    ], \n    \"sl\": [\n        \"UH\"\n    ], \n    \"snowed\": [\n        \"VBD\"\n    ], \n    \"tutoring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"se\": [\n        \"FW\", \n        \"IN\", \n        \"NN\", \n        \"PRP\"\n    ], \n    \"drunken\": [\n        \"JJ\"\n    ], \n    \"augurs\": [\n        \"VBZ\"\n    ], \n    \"wrappin\": [\n        \"VBG\"\n    ], \n    \"privation\": [\n        \"NN\"\n    ], \n    \"status-roles\": [\n        \"NNS\"\n    ], \n    \"flips\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"care-adviser\": [\n        \"NN\"\n    ], \n    \"Magarrell\": [\n        \"NNP\"\n    ], \n    \"Nippur\": [\n        \"NN\"\n    ], \n    \"flagships\": [\n        \"NNS\"\n    ], \n    \"experiments\": [\n        \"NNS\"\n    ], \n    \"Perth\": [\n        \"NNP\"\n    ], \n    \"crowbait\": [\n        \"NN\"\n    ], \n    \"omitting\": [\n        \"VBG\"\n    ], \n    \"frequents\": [\n        \"VBZ\"\n    ], \n    \"razors\": [\n        \"NNS\"\n    ], \n    \"Paray\": [\n        \"NNP\"\n    ], \n    \"bulldoze\": [\n        \"VB\"\n    ], \n    \"drunker\": [\n        \"JJR\"\n    ], \n    \"lovelies\": [\n        \"NNS\"\n    ], \n    \"Swifts\": [\n        \"NNPS\"\n    ], \n    \"sacrosanct\": [\n        \"JJ\"\n    ], \n    \"tore\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"constituted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"avid\": [\n        \"JJ\"\n    ], \n    \"tellingly\": [\n        \"RB\"\n    ], \n    \"internationally\": [\n        \"RB\"\n    ], \n    \"how\": [\n        \"WRB\"\n    ], \n    \"torn\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Greylag\": [\n        \"NNP\"\n    ], \n    \"sylvan\": [\n        \"JJ\"\n    ], \n    \"tort\": [\n        \"NN\"\n    ], \n    \"April-June\": [\n        \"NNP\"\n    ], \n    \"suspicion\": [\n        \"NN\"\n    ], \n    \"Pandick\": [\n        \"NNP\"\n    ], \n    \"foreign-aid\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Arguably\": [\n        \"RB\"\n    ], \n    \"televison\": [\n        \"NN\"\n    ], \n    \"Stabbert\": [\n        \"NNP\"\n    ], \n    \"limbo\": [\n        \"NN\"\n    ], \n    \"Asilomar\": [\n        \"NNP\"\n    ], \n    \"TCMP\": [\n        \"NNP\"\n    ], \n    \"hop\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Choices\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Mideastern\": [\n        \"JJ\"\n    ], \n    \"dance-theatre\": [\n        \"JJ\"\n    ], \n    \"symposium\": [\n        \"NN\"\n    ], \n    \"equipment-packed\": [\n        \"JJ\"\n    ], \n    \"Rockettes\": [\n        \"NNPS\"\n    ], \n    \"reckoning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"tipoff\": [\n        \"NN\"\n    ], \n    \"shouted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Simulator\": [\n        \"NNP\"\n    ], \n    \"Lazzeri\": [\n        \"NNP\"\n    ], \n    \"roasts\": [\n        \"NNS\"\n    ], \n    \"Macbeth\": [\n        \"NNP\"\n    ], \n    \"now-shuttered\": [\n        \"JJ\"\n    ], \n    \"cropping\": [\n        \"VBG\"\n    ], \n    \"Preti\": [\n        \"NNP\"\n    ], \n    \"Pretl\": [\n        \"NNP\"\n    ], \n    \"suffixes\": [\n        \"NNS\"\n    ], \n    \"photocathode\": [\n        \"NN\"\n    ], \n    \"Vitzhum\": [\n        \"NNP\"\n    ], \n    \"Department-sponsored\": [\n        \"JJ\"\n    ], \n    \"Shared\": [\n        \"NNP\"\n    ], \n    \"Learned\": [\n        \"NNP\", \n        \"VBD\"\n    ], \n    \"suhthuhn\": [\n        \"JJ\"\n    ], \n    \"EARTHQUAKE\": [\n        \"NN\"\n    ], \n    \"accordion-folding\": [\n        \"JJ\"\n    ], \n    \"rioters\": [\n        \"NNS\"\n    ], \n    \"Sauce\": [\n        \"NNP\"\n    ], \n    \"I.P.\": [\n        \"NNP\"\n    ], \n    \"squared\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"abide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"navels\": [\n        \"NNS\"\n    ], \n    \"investigation\": [\n        \"NN\"\n    ], \n    \"Ghostbusters\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Article\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"squares\": [\n        \"NNS\"\n    ], \n    \"dilemmas\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"demoralization\": [\n        \"NN\"\n    ], \n    \"recalculating\": [\n        \"VBG\"\n    ], \n    \"Enichem\": [\n        \"NNP\"\n    ], \n    \"Meynell\": [\n        \"NNP\"\n    ], \n    \"cooperatively\": [\n        \"RB\"\n    ], \n    \"palatial\": [\n        \"JJ\"\n    ], \n    \"Provigo\": [\n        \"NNP\"\n    ], \n    \"recordings\": [\n        \"NNS\"\n    ], \n    \"McCaw\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bumpy\": [\n        \"JJ\"\n    ], \n    \"poems\": [\n        \"NNS\"\n    ], \n    \"Westfield\": [\n        \"NNP\"\n    ], \n    \"scarred\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Whampoa\": [\n        \"NNP\"\n    ], \n    \"patronage\": [\n        \"NN\"\n    ], \n    \"gilts\": [\n        \"NNS\"\n    ], \n    \"councilwoman\": [\n        \"NN\"\n    ], \n    \"Ballon\": [\n        \"NNP\"\n    ], \n    \"Pritzker\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"Deficiency\": [\n        \"NNP\"\n    ], \n    \"vociferousness\": [\n        \"NN\"\n    ], \n    \"footwear\": [\n        \"NN\"\n    ], \n    \"Ballot\": [\n        \"NN\"\n    ], \n    \"Ballou\": [\n        \"NNP\"\n    ], \n    \"err\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ortiz\": [\n        \"NNP\"\n    ], \n    \"Balts\": [\n        \"NNPS\"\n    ], \n    \"guardhouse\": [\n        \"NN\"\n    ], \n    \"reinvestigation\": [\n        \"NN\"\n    ], \n    \"shareholder-payout\": [\n        \"JJ\"\n    ], \n    \"open\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"RB\", \n        \"RP\", \n        \"VB\"\n    ], \n    \"second-level\": [\n        \"JJ\"\n    ], \n    \"ripping\": [\n        \"VBG\"\n    ], \n    \"partook\": [\n        \"VBP\"\n    ], \n    \"boulevard\": [\n        \"NN\"\n    ], \n    \"home-blend\": [\n        \"NN\"\n    ], \n    \"convent\": [\n        \"NN\"\n    ], \n    \"franchisor\": [\n        \"NN\"\n    ], \n    \"Hmpf\": [\n        \"UH\"\n    ], \n    \"Hmm\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Daremblum\": [\n        \"NNP\"\n    ], \n    \"shiver\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"brevity\": [\n        \"NN\"\n    ], \n    \"deglycerolized\": [\n        \"VBN\"\n    ], \n    \"convene\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"begotten\": [\n        \"VBN\"\n    ], \n    \"infected\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"Paluck\": [\n        \"NNP\"\n    ], \n    \"pre-Christmas\": [\n        \"JJ\"\n    ], \n    \"Goodbody\": [\n        \"NNP\"\n    ], \n    \"homemade\": [\n        \"JJ\"\n    ], \n    \"preprepared\": [\n        \"VBN\"\n    ], \n    \"Moineau\": [\n        \"NNP\"\n    ], \n    \"illusionist\": [\n        \"NN\"\n    ], \n    \"raccoon-skin\": [\n        \"JJ\"\n    ], \n    \"fooled\": [\n        \"VBN\"\n    ], \n    \"hyperplasia\": [\n        \"NN\"\n    ], \n    \"iceberg\": [\n        \"NN\"\n    ], \n    \"favors\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"folly\": [\n        \"NN\"\n    ], \n    \"typography\": [\n        \"NN\"\n    ], \n    \"Lester\": [\n        \"NNP\"\n    ], \n    \"once-exploding\": [\n        \"JJ\"\n    ], \n    \"coats\": [\n        \"NNS\"\n    ], \n    \"Suiza\": [\n        \"NNP\"\n    ], \n    \"individualized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"top-ranked\": [\n        \"JJ\"\n    ], \n    \"favore\": [\n        \"FW\"\n    ], \n    \"addressing\": [\n        \"VBG\"\n    ], \n    \"unadited\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"veracity\": [\n        \"NN\"\n    ], \n    \"shipowners\": [\n        \"NNS\"\n    ], \n    \"Baullari\": [\n        \"NNP\"\n    ], \n    \"argument\": [\n        \"NN\"\n    ], \n    \"Poesy\": [\n        \"NN\"\n    ], \n    \"spender\": [\n        \"NN\"\n    ], \n    \"Creme\": [\n        \"NNP\"\n    ], \n    \"Nichias\": [\n        \"NNP\"\n    ], \n    \"horsepower\": [\n        \"NN\"\n    ], \n    \"JAGRY\": [\n        \"NNP\"\n    ], \n    \"Idaho\": [\n        \"NNP\"\n    ], \n    \"law.\": [\n        \"NN\"\n    ], \n    \"Rehnquist\": [\n        \"NNP\"\n    ], \n    \"Simmonsville\": [\n        \"NNP\"\n    ], \n    \"Nyunt\": [\n        \"NNP\"\n    ], \n    \"Congregation\": [\n        \"NNP\"\n    ], \n    \"management-information\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"blinding\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"adjusting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ironically\": [\n        \"RB\"\n    ], \n    \"Quinn\": [\n        \"NNP\"\n    ], \n    \"backyards\": [\n        \"NNS\"\n    ], \n    \"staffed\": [\n        \"VBN\"\n    ], \n    \"TIMES\": [\n        \"NNP\"\n    ], \n    \"pay-television\": [\n        \"NN\"\n    ], \n    \"Anker\": [\n        \"NNP\"\n    ], \n    \"crochet\": [\n        \"VB\"\n    ], \n    \"Prescott\": [\n        \"NNP\"\n    ], \n    \"winters\": [\n        \"NNS\"\n    ], \n    \"Auditorium\": [\n        \"NNP\"\n    ], \n    \"Erasing\": [\n        \"VBG\"\n    ], \n    \"photochemical\": [\n        \"JJ\"\n    ], \n    \"lawn\": [\n        \"NN\"\n    ], \n    \"Well-educated\": [\n        \"JJ\"\n    ], \n    \"Beghin\": [\n        \"NNP\"\n    ], \n    \"Vallecas\": [\n        \"NNP\"\n    ], \n    \"nonlethal\": [\n        \"JJ\"\n    ], \n    \"Scattered\": [\n        \"VBN\"\n    ], \n    \"adult-training\": [\n        \"JJ\"\n    ], \n    \"metalworking\": [\n        \"NN\"\n    ], \n    \"conservatively-cravated\": [\n        \"JJ\"\n    ], \n    \"versa\": [\n        \"RB\", \n        \"FW\"\n    ], \n    \"three-mile\": [\n        \"JJ\"\n    ], \n    \"cancer-causing\": [\n        \"JJ\"\n    ], \n    \"low-base-price\": [\n        \"JJ\"\n    ], \n    \"laws\": [\n        \"NNS\"\n    ], \n    \"Jacki\": [\n        \"NNP\"\n    ], \n    \"lexical\": [\n        \"JJ\"\n    ], \n    \"murmurs\": [\n        \"VBZ\"\n    ], \n    \"CF6-6\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"opportunist\": [\n        \"NN\"\n    ], \n    \"babbled\": [\n        \"VBD\"\n    ], \n    \"Balladur\": [\n        \"NNP\"\n    ], \n    \"merit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"opportunism\": [\n        \"NN\"\n    ], \n    \"underbedding\": [\n        \"NN\"\n    ], \n    \"Roland\": [\n        \"NNP\"\n    ], \n    \"Comvik\": [\n        \"NNP\"\n    ], \n    \"Magten\": [\n        \"NNP\"\n    ], \n    \"parsimony\": [\n        \"NN\"\n    ], \n    \"Trelleborg\": [\n        \"NNP\"\n    ], \n    \"democratization\": [\n        \"NN\"\n    ], \n    \"re-emphasizing\": [\n        \"VBG\"\n    ], \n    \"Indirectly\": [\n        \"RB\"\n    ], \n    \"debunk\": [\n        \"VB\"\n    ], \n    \"unplagued\": [\n        \"VBN\"\n    ], \n    \"state-centered\": [\n        \"JJ\"\n    ], \n    \"Edith\": [\n        \"NNP\"\n    ], \n    \"rephrase\": [\n        \"VB\"\n    ], \n    \"altercation\": [\n        \"NN\"\n    ], \n    \"lifeguard\": [\n        \"NN\"\n    ], \n    \"management-pilots\": [\n        \"JJ\"\n    ], \n    \"psychiatrist\": [\n        \"NN\"\n    ], \n    \"assistant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"freezing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Listeners\": [\n        \"NNS\"\n    ], \n    \"Bunker\": [\n        \"NNP\"\n    ], \n    \"complex-valued\": [\n        \"JJ\"\n    ], \n    \"reserve-draining\": [\n        \"JJ\"\n    ], \n    \"Pontiff\": [\n        \"NNP\"\n    ], \n    \"Euro-cards\": [\n        \"NNS\"\n    ], \n    \"resource\": [\n        \"NN\"\n    ], \n    \"hypoadrenocorticism\": [\n        \"NN\"\n    ], \n    \"hinges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"parasitic\": [\n        \"JJ\"\n    ], \n    \"priest\": [\n        \"NN\"\n    ], \n    \"Hound\": [\n        \"NNP\"\n    ], \n    \"hinged\": [\n        \"VBN\"\n    ], \n    \"orchids\": [\n        \"NNS\"\n    ], \n    \"Patricio\": [\n        \"NNP\"\n    ], \n    \"nouveaux\": [\n        \"FW\"\n    ], \n    \"artistically\": [\n        \"RB\"\n    ], \n    \"Optek\": [\n        \"NNP\"\n    ], \n    \"Patricia\": [\n        \"NNP\"\n    ], \n    \"redcoats\": [\n        \"NNS\"\n    ], \n    \"Batallion\": [\n        \"NNP\"\n    ], \n    \"R.,Vitro\": [\n        \"NNP\"\n    ], \n    \"anyways\": [\n        \"UH\"\n    ], \n    \"Ashtabula\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"heifers\": [\n        \"NNS\"\n    ], \n    \"Hendricks\": [\n        \"NNP\"\n    ], \n    \"yuse\": [\n        \"NN\"\n    ], \n    \"Egalitarianism\": [\n        \"NNP\"\n    ], \n    \"Kan.\": [\n        \"NNP\"\n    ], \n    \"misappropriated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Gulbuddin\": [\n        \"NNP\"\n    ], \n    \"That\": [\n        \"DT\", \n        \"NNP\", \n        \"PDT\", \n        \"IN\", \n        \"RB\", \n        \"WP\", \n        \"WDT\"\n    ], \n    \"ostensibly\": [\n        \"RB\"\n    ], \n    \"Thay\": [\n        \"NN\"\n    ], \n    \"sites\": [\n        \"NNS\"\n    ], \n    \"fierceness\": [\n        \"NN\"\n    ], \n    \"Elmhurst\": [\n        \"NNP\"\n    ], \n    \"Twentieth\": [\n        \"NNP\"\n    ], \n    \"Thad\": [\n        \"NNP\"\n    ], \n    \"Thai\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Turnout\": [\n        \"NN\"\n    ], \n    \"Than\": [\n        \"IN\"\n    ], \n    \"molds\": [\n        \"NNS\"\n    ], \n    \"Thal\": [\n        \"NNP\"\n    ], \n    \"panache\": [\n        \"NN\"\n    ], \n    \"vertical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"apparition\": [\n        \"NN\"\n    ], \n    \"Securities\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"capitalistic\": [\n        \"JJ\"\n    ], \n    \"recitation\": [\n        \"NN\"\n    ], \n    \"concentrate\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Tjokorda\": [\n        \"NNP\"\n    ], \n    \"Kann\": [\n        \"NNP\"\n    ], \n    \"Kano\": [\n        \"NNP\"\n    ], \n    \"mans\": [\n        \"VBZ\"\n    ], \n    \"raddled\": [\n        \"VBN\"\n    ], \n    \"Kane\": [\n        \"NNP\"\n    ], \n    \"mana\": [\n        \"NN\"\n    ], \n    \"mane\": [\n        \"NN\"\n    ], \n    \"unamortized\": [\n        \"JJ\"\n    ], \n    \"Kant\": [\n        \"NNP\"\n    ], \n    \"Barberton\": [\n        \"NNP\"\n    ], \n    \"Whatman\": [\n        \"NNP\"\n    ], \n    \"mano\": [\n        \"NN\"\n    ], \n    \"Preferably\": [\n        \"RB\"\n    ], \n    \"Timberlake\": [\n        \"NNP\"\n    ], \n    \"hurts\": [\n        \"VBZ\"\n    ], \n    \"adjudication\": [\n        \"NN\"\n    ], \n    \"very-highly\": [\n        \"JJ\"\n    ], \n    \"Morbid\": [\n        \"JJ\"\n    ], \n    \"Ivern\": [\n        \"NNP\"\n    ], \n    \"FSX\": [\n        \"NNP\"\n    ], \n    \"dolt\": [\n        \"NN\"\n    ], \n    \"Rivoli\": [\n        \"FW\"\n    ], \n    \"H.M.S.S.\": [\n        \"NNP\"\n    ], \n    \"caring\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"swashbuckling\": [\n        \"JJ\"\n    ], \n    \"sorely-needed\": [\n        \"JJ\"\n    ], \n    \"Stowey\": [\n        \"NNP\"\n    ], \n    \"Medieval\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Flash\": [\n        \"NN\"\n    ], \n    \"recaptured\": [\n        \"VBN\"\n    ], \n    \"bereavements\": [\n        \"NNS\"\n    ], \n    \"concede\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"damping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Tetris\": [\n        \"NN\"\n    ], \n    \"prototype\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"reflex\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"hilarity\": [\n        \"NN\"\n    ], \n    \"enable\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gist\": [\n        \"NN\"\n    ], \n    \"centerpiece\": [\n        \"NN\"\n    ], \n    \"turtleneck\": [\n        \"NN\"\n    ], \n    \"half-a-million\": [\n        \"JJ\"\n    ], \n    \"Analysts\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"antiquarian\": [\n        \"JJ\"\n    ], \n    \"nonqualified\": [\n        \"VBN\"\n    ], \n    \"diffuse\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"sharpshooters\": [\n        \"NNS\"\n    ], \n    \"Spiritual\": [\n        \"JJ\"\n    ], \n    \"profane\": [\n        \"JJ\"\n    ], \n    \"non-issue\": [\n        \"NN\"\n    ], \n    \"polls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"end-use\": [\n        \"JJ\"\n    ], \n    \"Supplementary\": [\n        \"NNP\"\n    ], \n    \"Wyeth\": [\n        \"NNP\"\n    ], \n    \"spotlight\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"aerosolized\": [\n        \"VBN\"\n    ], \n    \"Album\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"grown-ups\": [\n        \"NNS\"\n    ], \n    \"Cooking\": [\n        \"NNP\"\n    ], \n    \"gritty-eyed\": [\n        \"JJ\"\n    ], \n    \"Takanori\": [\n        \"NNP\"\n    ], \n    \"pinks\": [\n        \"NNS\"\n    ], \n    \"ivy\": [\n        \"NN\"\n    ], \n    \"Rolodexes\": [\n        \"NNPS\"\n    ], \n    \"binary\": [\n        \"JJ\"\n    ], \n    \"expenditures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"missiles\": [\n        \"NNS\"\n    ], \n    \"Latest-quarter\": [\n        \"JJ\"\n    ], \n    \"prevail\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"wiring\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Rafferty\": [\n        \"NNP\"\n    ], \n    \"Cerus\": [\n        \"NNP\"\n    ], \n    \"mouldering\": [\n        \"VBG\"\n    ], \n    \"Tobruk\": [\n        \"NNP\"\n    ], \n    \"non-contact\": [\n        \"JJ\"\n    ], \n    \"licit\": [\n        \"JJ\"\n    ], \n    \"black-robed\": [\n        \"JJ\"\n    ], \n    \"barbed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Seto\": [\n        \"NNP\"\n    ], \n    \"boosted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Escape\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Risparmio\": [\n        \"NNP\"\n    ], \n    \"much-copied\": [\n        \"JJ\"\n    ], \n    \"fowl\": [\n        \"NN\"\n    ], \n    \"barber\": [\n        \"NN\"\n    ], \n    \"Commonly\": [\n        \"RB\"\n    ], \n    \"extern\": [\n        \"NN\"\n    ], \n    \"recapture\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"booster\": [\n        \"NN\"\n    ], \n    \"LIVESTOCK\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Buser\": [\n        \"NNP\"\n    ], \n    \"customized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"clobber\": [\n        \"VB\"\n    ], \n    \"ringer\": [\n        \"NN\"\n    ], \n    \"quixotic\": [\n        \"JJ\"\n    ], \n    \"Milwaukee\": [\n        \"NNP\"\n    ], \n    \"earthquake-trained\": [\n        \"JJ\"\n    ], \n    \"petroleum-products\": [\n        \"NNS\"\n    ], \n    \"Gramm-Rudman\": [\n        \"NNP\"\n    ], \n    \"HBO\": [\n        \"NNP\"\n    ], \n    \"Minneapolis-St\": [\n        \"NNP\"\n    ], \n    \"HBJ\": [\n        \"NNP\"\n    ], \n    \"robing\": [\n        \"NN\"\n    ], \n    \"safeguards\": [\n        \"NNS\"\n    ], \n    \"fateful\": [\n        \"JJ\"\n    ], \n    \"Smuzynski\": [\n        \"NNP\"\n    ], \n    \"presumption\": [\n        \"NN\"\n    ], \n    \"pastoris\": [\n        \"NN\"\n    ], \n    \"ex-President\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"jarred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Shugart\": [\n        \"NNP\"\n    ], \n    \"Tattingers\": [\n        \"NNPS\"\n    ], \n    \"Regnery\": [\n        \"NNP\"\n    ], \n    \"Separation\": [\n        \"NN\"\n    ], \n    \"unviable\": [\n        \"JJ\"\n    ], \n    \"family-planning\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Altama\": [\n        \"NNP\"\n    ], \n    \"starving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"HOFI\": [\n        \"NNP\"\n    ], \n    \"around\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"RB|RP\"\n    ], \n    \"delinquencies\": [\n        \"NNS\"\n    ], \n    \"scurrying\": [\n        \"VBG\"\n    ], \n    \"Baltic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"breakage\": [\n        \"NN\"\n    ], \n    \"Pricor\": [\n        \"NNP\"\n    ], \n    \"MGM\\\\\": [\n        \"NNP\"\n    ], \n    \"cuff-like\": [\n        \"JJ\"\n    ], \n    \"inexplicably\": [\n        \"RB\"\n    ], \n    \"Neiman\": [\n        \"NNP\"\n    ], \n    \"direct-mail\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Notwithstanding\": [\n        \"IN\"\n    ], \n    \"inter\": [\n        \"FW\", \n        \"IN\"\n    ], \n    \"kennel\": [\n        \"NN\"\n    ], \n    \"Recognition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Matsushita\": [\n        \"NNP\"\n    ], \n    \"RALLIED\": [\n        \"VBD\"\n    ], \n    \"explaining\": [\n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"conditional\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lobster\": [\n        \"NN\"\n    ], \n    \"blood-specked\": [\n        \"JJ\"\n    ], \n    \"perpetrators\": [\n        \"NNS\"\n    ], \n    \"Komleva\": [\n        \"NNP\"\n    ], \n    \"Furnace\": [\n        \"NN\"\n    ], \n    \"revenue-neutral\": [\n        \"JJ\"\n    ], \n    \"MacLeishes\": [\n        \"NNPS\"\n    ], \n    \"composers\": [\n        \"NNS\"\n    ], \n    \"moon-round\": [\n        \"JJ\"\n    ], \n    \"memories\": [\n        \"NNS\"\n    ], \n    \"grand-looking\": [\n        \"JJ\"\n    ], \n    \"Danubian\": [\n        \"JJ\"\n    ], \n    \"corrosive\": [\n        \"JJ\"\n    ], \n    \"Huricane\": [\n        \"NNP\"\n    ], \n    \"M.D.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"brats\": [\n        \"NNS\"\n    ], \n    \"Totten\": [\n        \"NNP\"\n    ], \n    \"UnionFed\": [\n        \"NNP\"\n    ], \n    \"computer-aided-design\": [\n        \"JJ\"\n    ], \n    \"transformers\": [\n        \"NNS\"\n    ], \n    \"Freudenberger\": [\n        \"NNP\"\n    ], \n    \"Embryos\": [\n        \"NNS\"\n    ], \n    \"Expanded\": [\n        \"VBN\"\n    ], \n    \"Aswara\": [\n        \"NNP\"\n    ], \n    \"pluralist\": [\n        \"NN\"\n    ], \n    \"pluralism\": [\n        \"NN\"\n    ], \n    \"undercuts\": [\n        \"VBZ\"\n    ], \n    \"Rosewood\": [\n        \"NNP\"\n    ], \n    \"Serge\": [\n        \"NNP\"\n    ], \n    \"cozy\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"fifth-highest\": [\n        \"JJ\"\n    ], \n    \"origins\": [\n        \"NNS\"\n    ], \n    \"swarms\": [\n        \"NNS\"\n    ], \n    \"legerdemain\": [\n        \"NN\"\n    ], \n    \"Mozambique\": [\n        \"NNP\"\n    ], \n    \"Terminator\": [\n        \"NNP\"\n    ], \n    \"slights\": [\n        \"NNS\"\n    ], \n    \"starry-eyed\": [\n        \"JJ\"\n    ], \n    \"slighty\": [\n        \"NN\"\n    ], \n    \"Stimson\": [\n        \"NNP\"\n    ], \n    \"shied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"less-visible\": [\n        \"JJ\"\n    ], \n    \"Magnus\": [\n        \"NNP\"\n    ], \n    \"headsets\": [\n        \"NNS\"\n    ], \n    \"Away\": [\n        \"RB\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"legged\": [\n        \"JJ\"\n    ], \n    \"screws\": [\n        \"NNS\"\n    ], \n    \"fishes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"whim\": [\n        \"NN\"\n    ], \n    \"homeless\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shies\": [\n        \"VBZ\"\n    ], \n    \"Magnum\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Plain-vanilla\": [\n        \"JJ\"\n    ], \n    \"Estonians\": [\n        \"NNPS\"\n    ], \n    \"dawned\": [\n        \"VBD\"\n    ], \n    \"Mahayanist\": [\n        \"NN\"\n    ], \n    \"hev\": [\n        \"VB\"\n    ], \n    \"BAROMETER\": [\n        \"NN\"\n    ], \n    \"her\": [\n        \"PRP$\", \n        \"PRP\", \n        \"PRP$R\"\n    ], \n    \"ever-increasing\": [\n        \"JJ\"\n    ], \n    \"bristles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Heiwado\": [\n        \"NNP\"\n    ], \n    \"hex\": [\n        \"NN\"\n    ], \n    \"hey\": [\n        \"UH\"\n    ], \n    \"Iliad\": [\n        \"NNP\"\n    ], \n    \"Veille\": [\n        \"NNP\"\n    ], \n    \"over-broad\": [\n        \"JJ\"\n    ], \n    \"hel\": [\n        \"NN\"\n    ], \n    \"hem\": [\n        \"NN\"\n    ], \n    \"hen\": [\n        \"NN\"\n    ], \n    \"bristled\": [\n        \"VBD\"\n    ], \n    \"Englewood\": [\n        \"NNP\"\n    ], \n    \"verbatim\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Mahfouz\": [\n        \"NNP\"\n    ], \n    \"Fosterite\": [\n        \"NNP\"\n    ], \n    \"U.S.Japan\": [\n        \"JJ\"\n    ], \n    \"handsome\": [\n        \"JJ\"\n    ], \n    \"underdressed\": [\n        \"JJ\"\n    ], \n    \"rescuing\": [\n        \"VBG\"\n    ], \n    \"House\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"rhu-beb\": [\n        \"NN\"\n    ], \n    \"browbeaten\": [\n        \"VBN\"\n    ], \n    \"mid-engine\": [\n        \"JJ\"\n    ], \n    \"Soares-Kemp\": [\n        \"NNP\"\n    ], \n    \"telepathic\": [\n        \"JJ\"\n    ], \n    \"invigorating\": [\n        \"VBG\"\n    ], \n    \"trend-followers\": [\n        \"NNS\"\n    ], \n    \"credit-policy\": [\n        \"NN\"\n    ], \n    \"Thursday\": [\n        \"NNP\"\n    ], \n    \"Estee\": [\n        \"NNP\"\n    ], \n    \"lairs\": [\n        \"NNS\"\n    ], \n    \"low-profile\": [\n        \"JJ\"\n    ], \n    \"Estep\": [\n        \"NNP\"\n    ], \n    \"appalling\": [\n        \"JJ\"\n    ], \n    \"whit\": [\n        \"NN\"\n    ], \n    \"allocator\": [\n        \"NN\"\n    ], \n    \"water-filled\": [\n        \"JJ\"\n    ], \n    \"monsieur\": [\n        \"NN\"\n    ], \n    \"Kidnapper\": [\n        \"NN\"\n    ], \n    \"Glazer-Fine\": [\n        \"NNP\"\n    ], \n    \"Segalas\": [\n        \"NNP\"\n    ], \n    \"querulous\": [\n        \"JJ\"\n    ], \n    \"solaced\": [\n        \"VBN\"\n    ], \n    \"deterrant\": [\n        \"JJ\"\n    ], \n    \"ice-cold\": [\n        \"NN\"\n    ], \n    \"misplace\": [\n        \"VB\"\n    ], \n    \"Employees\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"crack-induced\": [\n        \"JJ\"\n    ], \n    \"Thurow\": [\n        \"NNP\"\n    ], \n    \"midsize\": [\n        \"JJ\"\n    ], \n    \"Aspen\": [\n        \"NNP\"\n    ], \n    \"paint-recycling\": [\n        \"JJ\"\n    ], \n    \"resell\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Coolidges\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"rostrum\": [\n        \"NN\"\n    ], \n    \"Soviet-Finnish\": [\n        \"JJ\"\n    ], \n    \"grand-daughter\": [\n        \"NN\"\n    ], \n    \"Leighfield\": [\n        \"NNP\"\n    ], \n    \"mask\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"clowning\": [\n        \"NN\"\n    ], \n    \"mash\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mast\": [\n        \"NN\"\n    ], \n    \"mass\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"inter-exchange\": [\n        \"JJ\"\n    ], \n    \"Zeitung\": [\n        \"NNP\"\n    ], \n    \"sin\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Hinzack\": [\n        \"NNP\"\n    ], \n    \"axles\": [\n        \"NNS\"\n    ], \n    \"birdcage\": [\n        \"NN\"\n    ], \n    \"bosoms\": [\n        \"NNS\"\n    ], \n    \"triptych\": [\n        \"NN\"\n    ], \n    \"recapturing\": [\n        \"VBG\"\n    ], \n    \"gate-post\": [\n        \"NN\"\n    ], \n    \"anti-rejection\": [\n        \"JJ\"\n    ], \n    \"minicar\": [\n        \"NN\"\n    ], \n    \"Vincent\": [\n        \"NNP\"\n    ], \n    \"evicted\": [\n        \"VBN\"\n    ], \n    \"sleazebag\": [\n        \"NN\"\n    ], \n    \"Jean-Honore\": [\n        \"NNP\"\n    ], \n    \"Rickel\": [\n        \"NNP\"\n    ], \n    \"Hafetz\": [\n        \"NNP\"\n    ], \n    \"levee\": [\n        \"NN\"\n    ], \n    \"Harper\": [\n        \"NNP\"\n    ], \n    \"chewing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"asterisks\": [\n        \"NNS\"\n    ], \n    \"Entries\": [\n        \"NNS\"\n    ], \n    \"uncounted\": [\n        \"JJ\"\n    ], \n    \"Rickey\": [\n        \"NNP\"\n    ], \n    \"degeneration\": [\n        \"NN\"\n    ], \n    \"appointment\": [\n        \"NN\"\n    ], \n    \"overpowered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Honotassa\": [\n        \"NNP\"\n    ], \n    \"wavers\": [\n        \"NNS\"\n    ], \n    \"detention\": [\n        \"NN\"\n    ], \n    \"documentaries\": [\n        \"NNS\"\n    ], \n    \"diary\": [\n        \"NN\"\n    ], \n    \"ex-player\": [\n        \"NN\"\n    ], \n    \"Mitofsky\": [\n        \"NNP\"\n    ], \n    \"showings\": [\n        \"NNS\"\n    ], \n    \"CHILDREN\": [\n        \"NNS\"\n    ], \n    \"often-repeated\": [\n        \"JJ\"\n    ], \n    \"Vivaldi\": [\n        \"NNP\"\n    ], \n    \"HOUSE\": [\n        \"NNP\"\n    ], \n    \"EXPRESS\": [\n        \"NNP\"\n    ], \n    \"dodged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"nine-press\": [\n        \"NN\"\n    ], \n    \"deftness\": [\n        \"NN\"\n    ], \n    \"no-inflation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"harry\": [\n        \"VB\"\n    ], \n    \"sea-food\": [\n        \"NN\"\n    ], \n    \"Woodin\": [\n        \"NNP\"\n    ], \n    \"son-of-a-bitch\": [\n        \"NN\"\n    ], \n    \"pigskin\": [\n        \"NN\"\n    ], \n    \"Heinemann\": [\n        \"NNP\"\n    ], \n    \"Candu\": [\n        \"NNP\"\n    ], \n    \"discriminates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"interpretor\": [\n        \"NN\"\n    ], \n    \"bond-holders\": [\n        \"NNS\"\n    ], \n    \"material-management\": [\n        \"NN\"\n    ], \n    \"discriminated\": [\n        \"VBD\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Kangyo\": [\n        \"NNP\"\n    ], \n    \"Sylvio\": [\n        \"NNP\"\n    ], \n    \"Ifint\": [\n        \"NNP\"\n    ], \n    \"product-design\": [\n        \"JJ\"\n    ], \n    \"query\": [\n        \"NN\"\n    ], \n    \"Sylvia\": [\n        \"NNP\"\n    ], \n    \"crests\": [\n        \"NNS\"\n    ], \n    \"F-20s\": [\n        \"NNPS\"\n    ], \n    \"Rossilini\": [\n        \"NNP\"\n    ], \n    \"hormonal\": [\n        \"JJ\"\n    ], \n    \"misrouted\": [\n        \"VBN\"\n    ], \n    \"Restraint\": [\n        \"NNP\"\n    ], \n    \"Weichern\": [\n        \"NNP\"\n    ], \n    \"auto-financing\": [\n        \"NN\"\n    ], \n    \"whirled\": [\n        \"VBD\"\n    ], \n    \"lower-than-expected\": [\n        \"JJ\"\n    ], \n    \"Karolinska\": [\n        \"NNP\"\n    ], \n    \"immiserated\": [\n        \"JJ\"\n    ], \n    \"sentient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"prestige-sentitive\": [\n        \"JJ\"\n    ], \n    \"Herald\": [\n        \"NNP\"\n    ], \n    \"Luthringshausen\": [\n        \"NNP\"\n    ], \n    \"Latvian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Nonmagical\": [\n        \"NNP\"\n    ], \n    \"Feathertop\": [\n        \"NNP\"\n    ], \n    \"welded\": [\n        \"VBN\"\n    ], \n    \"transposed\": [\n        \"VBN\"\n    ], \n    \"Cone\": [\n        \"NNP\"\n    ], \n    \"Cong\": [\n        \"NNP\"\n    ], \n    \"reactors\": [\n        \"NNS\"\n    ], \n    \"Conn\": [\n        \"NNP\"\n    ], \n    \"somewhat-ambiguous\": [\n        \"JJ\"\n    ], \n    \"non-police\": [\n        \"JJ\"\n    ], \n    \"Licks\": [\n        \"NNP\"\n    ], \n    \"reacquired\": [\n        \"VBN\"\n    ], \n    \"software-industry\": [\n        \"JJ\"\n    ], \n    \"non-flight\": [\n        \"JJ\"\n    ], \n    \"flatland\": [\n        \"NN\"\n    ], \n    \"homilies\": [\n        \"NNS\"\n    ], \n    \"expends\": [\n        \"VBZ\"\n    ], \n    \"spooned\": [\n        \"VBD\"\n    ], \n    \"Cardinal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"beheld\": [\n        \"VBD\"\n    ], \n    \"pulls\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Varnessa\": [\n        \"NNP\"\n    ], \n    \"Medmenham\": [\n        \"NNP\"\n    ], \n    \"Fragin\": [\n        \"NNP\"\n    ], \n    \"cowpox\": [\n        \"NN\"\n    ], \n    \"less-intrusive\": [\n        \"JJ\"\n    ], \n    \"Ovalle\": [\n        \"NNP\"\n    ], \n    \"Varese\": [\n        \"NNP\"\n    ], \n    \"sitter\": [\n        \"NN\"\n    ], \n    \"amassing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"ballad\": [\n        \"NN\"\n    ], \n    \"one-for-one\": [\n        \"JJ\"\n    ], \n    \"check-ups\": [\n        \"NNS\"\n    ], \n    \"a\\\\/k\\\\/a\": [\n        \"NN\"\n    ], \n    \"still-daylighted\": [\n        \"JJ\"\n    ], \n    \"sports-oriented\": [\n        \"JJ\"\n    ], \n    \"foundations\": [\n        \"NNS\"\n    ], \n    \"meat-packing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Neumann\": [\n        \"NNP\"\n    ], \n    \"midstream\": [\n        \"NN\"\n    ], \n    \"Nessel\": [\n        \"NNP\"\n    ], \n    \"Nessen\": [\n        \"NNP\"\n    ], \n    \"railroading\": [\n        \"VBG\"\n    ], \n    \"facelift\": [\n        \"NN\"\n    ], \n    \"unvaryingly\": [\n        \"RB\"\n    ], \n    \"Schlitz\": [\n        \"NNP\"\n    ], \n    \"merveilleux\": [\n        \"FW\"\n    ], \n    \"prompt\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"soak-the-rich\": [\n        \"JJ\"\n    ], \n    \"off-the-books\": [\n        \"JJ\"\n    ], \n    \"Cautious\": [\n        \"JJ\"\n    ], \n    \"cross-licensing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"implausibly\": [\n        \"RB\"\n    ], \n    \"Jackals\": [\n        \"NNS\"\n    ], \n    \"Marschalk\": [\n        \"NNP\"\n    ], \n    \"Dhabi\": [\n        \"NNP\"\n    ], \n    \"burgs\": [\n        \"NNS\"\n    ], \n    \"Basses\": [\n        \"NNPS\"\n    ], \n    \"frivolously\": [\n        \"RB\"\n    ], \n    \"att\": [\n        \"IN\"\n    ], \n    \"glowing\": [\n        \"VBG\", \n        \"JJ|VBG\", \n        \"JJ\"\n    ], \n    \"artery-pulmonary\": [\n        \"NN\"\n    ], \n    \"Measures\": [\n        \"NNS\"\n    ], \n    \"relinquished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"womb-leasing\": [\n        \"NN\"\n    ], \n    \"half-century\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sq\": [\n        \"JJ\"\n    ], \n    \"perversely\": [\n        \"RB\"\n    ], \n    \"second-tier\": [\n        \"JJ\"\n    ], \n    \"Baslot\": [\n        \"NNP\"\n    ], \n    \"three-men-and-a-helper\": [\n        \"JJ\"\n    ], \n    \"blotted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Flags\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"waver\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"waves\": [\n        \"NNS\"\n    ], \n    \"ethics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Helpless\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"SKIES\": [\n        \"NNS\"\n    ], \n    \"sp\": [\n        \"NN\"\n    ], \n    \"decontaminated\": [\n        \"VBN\"\n    ], \n    \"refuse\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"rustlers\": [\n        \"NNS\"\n    ], \n    \"Conditions\": [\n        \"NNS\"\n    ], \n    \"ADMITTED\": [\n        \"VBD\"\n    ], \n    \"Elfner\": [\n        \"NNP\"\n    ], \n    \"inquire\": [\n        \"VB\"\n    ], \n    \"Mid-America\": [\n        \"NNP\"\n    ], \n    \"M-m-m\": [\n        \"UH\"\n    ], \n    \"Sophoclean\": [\n        \"NNP\"\n    ], \n    \"functionaries\": [\n        \"NNS\"\n    ], \n    \"Confutatis\": [\n        \"FW\"\n    ], \n    \"Sea-road\": [\n        \"NN\"\n    ], \n    \"Kronenberger\": [\n        \"NNP\"\n    ], \n    \"grasshoppers\": [\n        \"NNS\"\n    ], \n    \"JFK\": [\n        \"NNP\"\n    ], \n    \"Atwood\": [\n        \"NNP\"\n    ], \n    \"mud-sweat-and-tears\": [\n        \"JJ\"\n    ], \n    \"furthering\": [\n        \"VBG\"\n    ], \n    \"Sotela\": [\n        \"NNP\"\n    ], \n    \"mousse\": [\n        \"NN\"\n    ], \n    \"distortion\": [\n        \"NN\"\n    ], \n    \"implausible\": [\n        \"JJ\"\n    ], \n    \"Dixon\": [\n        \"NNP\"\n    ], \n    \"stealin\": [\n        \"VBG\"\n    ], \n    \"astrology\": [\n        \"NN\"\n    ], \n    \"laced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"roemer\": [\n        \"NN\"\n    ], \n    \"termed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"telegraphic-transfer\": [\n        \"JJ\"\n    ], \n    \"guillotine\": [\n        \"NN\"\n    ], \n    \"conjugation\": [\n        \"NN\"\n    ], \n    \"Oberstar\": [\n        \"NNP\"\n    ], \n    \"anti-European\": [\n        \"JJ\"\n    ], \n    \"laces\": [\n        \"NNS\"\n    ], \n    \"zippo\": [\n        \"NN\"\n    ], \n    \"crysanthemum\": [\n        \"NN\"\n    ], \n    \"lacey\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tentatively\": [\n        \"RB\"\n    ], \n    \"Grammar\": [\n        \"NNP\"\n    ], \n    \"Theirs\": [\n        \"JJ\", \n        \"PRP\"\n    ], \n    \"transbay\": [\n        \"JJ\"\n    ], \n    \"anti-hooligan\": [\n        \"JJ\"\n    ], \n    \"Michael\": [\n        \"NNP\"\n    ], \n    \"salamander\": [\n        \"NN\"\n    ], \n    \"Quadrant\": [\n        \"NNP\"\n    ], \n    \"speculate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"professional-level\": [\n        \"JJ\"\n    ], \n    \"homogenize\": [\n        \"VB\"\n    ], \n    \"trans-Atlantic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"hereafter\": [\n        \"RB\"\n    ], \n    \"Eagleburger\": [\n        \"NNP\"\n    ], \n    \"nauseous\": [\n        \"JJ\"\n    ], \n    \"Resistance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unsprayed\": [\n        \"VBN\"\n    ], \n    \"REGULATIONS\": [\n        \"NNS\"\n    ], \n    \"Petroles\": [\n        \"NNP\"\n    ], \n    \"found\": [\n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"shambling\": [\n        \"VBG\"\n    ], \n    \"dosed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"safaris\": [\n        \"NNS\"\n    ], \n    \"Rose\": [\n        \"NNP\"\n    ], \n    \"reduce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Rosa\": [\n        \"NNP\"\n    ], \n    \"Forest-products\": [\n        \"NNS\"\n    ], \n    \"jellies\": [\n        \"NNS\"\n    ], \n    \"Rosy\": [\n        \"NNP\"\n    ], \n    \"doses\": [\n        \"NNS\"\n    ], \n    \"Rost\": [\n        \"NNP\"\n    ], \n    \"leadership-sanctioned\": [\n        \"JJ\"\n    ], \n    \"KangaROOS\": [\n        \"NNP\"\n    ], \n    \"penicillin\": [\n        \"NN\"\n    ], \n    \"Ross\": [\n        \"NNP\"\n    ], \n    \"embattled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Publicly\": [\n        \"RB\"\n    ], \n    \"Rimes\": [\n        \"NNP\"\n    ], \n    \"Gander\": [\n        \"NNP\"\n    ], \n    \"Durlach\": [\n        \"NNP\"\n    ], \n    \"tele-processing\": [\n        \"JJ\"\n    ], \n    \"Launches\": [\n        \"VBZ\"\n    ], \n    \"nuclear-power\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"meteorological\": [\n        \"JJ\"\n    ], \n    \"salute\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Eskimos\": [\n        \"NNPS\"\n    ], \n    \"belief\": [\n        \"NN\"\n    ], \n    \"demure\": [\n        \"JJ\"\n    ], \n    \"sublimed\": [\n        \"VBN\"\n    ], \n    \"confidence\": [\n        \"NN\"\n    ], \n    \"belies\": [\n        \"VBZ\"\n    ], \n    \"qualify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"conditioning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"housebound\": [\n        \"JJ\"\n    ], \n    \"clique\": [\n        \"NN\"\n    ], \n    \"WESTWOOD\": [\n        \"NNP\"\n    ], \n    \"owners\": [\n        \"NNS\"\n    ], \n    \"Younis\": [\n        \"NNP\"\n    ], \n    \"spike-haired\": [\n        \"JJ\"\n    ], \n    \"Oopsie-Cola\": [\n        \"NNP\"\n    ], \n    \"Years\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"reorganization-plan\": [\n        \"JJ\"\n    ], \n    \"sensations\": [\n        \"NNS\"\n    ], \n    \"longneck\": [\n        \"JJ\"\n    ], \n    \"cyanide\": [\n        \"NN\"\n    ], \n    \"castle\": [\n        \"NN\"\n    ], \n    \"warheads\": [\n        \"NNS\"\n    ], \n    \"Imhoff\": [\n        \"NNP\"\n    ], \n    \"Verplanck\": [\n        \"NNP\"\n    ], \n    \"rooted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"belligerent\": [\n        \"JJ\"\n    ], \n    \"Oxytetracycline\": [\n        \"NN\"\n    ], \n    \"Reverend\": [\n        \"NNP\"\n    ], \n    \"IFIL\": [\n        \"NNP\"\n    ], \n    \"sacrificial\": [\n        \"JJ\"\n    ], \n    \"DREXEL\": [\n        \"NNP\"\n    ], \n    \"Chesterton\": [\n        \"NNP\"\n    ], \n    \"unpleased\": [\n        \"VBN\"\n    ], \n    \"Hopei\": [\n        \"NNP\"\n    ], \n    \"guest\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Rude\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rudi\": [\n        \"NNP\"\n    ], \n    \"month-old\": [\n        \"JJ\"\n    ], \n    \"Brigantine\": [\n        \"NNP\"\n    ], \n    \"omnipresent\": [\n        \"JJ\"\n    ], \n    \"Elmsford\": [\n        \"NNP\"\n    ], \n    \"Plantations\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"crow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Hopes\": [\n        \"NNS\"\n    ], \n    \"Rudy\": [\n        \"NNP\"\n    ], \n    \"intra-state\": [\n        \"JJ\"\n    ], \n    \"warmly\": [\n        \"RB\"\n    ], \n    \"Clarkson\": [\n        \"NNP\"\n    ], \n    \"lavished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Straightened\": [\n        \"VBN\"\n    ], \n    \"satirical\": [\n        \"JJ\"\n    ], \n    \"crop\": [\n        \"NN\", \n        \"RP\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dumont\": [\n        \"NNP\"\n    ], \n    \"endlessly\": [\n        \"RB\"\n    ], \n    \"REBUFF\": [\n        \"NN\"\n    ], \n    \"thawing\": [\n        \"VBG\"\n    ], \n    \"non-democratic\": [\n        \"JJ\"\n    ], \n    \"polarized\": [\n        \"VBN\"\n    ], \n    \"worktable\": [\n        \"NN\"\n    ], \n    \"Mantle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pichia\": [\n        \"NN\"\n    ], \n    \"layouts\": [\n        \"NNS\"\n    ], \n    \"runners-up\": [\n        \"NNS\"\n    ], \n    \"MetWest\": [\n        \"NNP\"\n    ], \n    \"TUCSON\": [\n        \"NNP\"\n    ], \n    \"Floats\": [\n        \"VBZ\"\n    ], \n    \"shellfish\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"railroader\": [\n        \"NN\"\n    ], \n    \"teensy\": [\n        \"JJ\"\n    ], \n    \"suffocating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"fieldstone\": [\n        \"NN\"\n    ], \n    \"canceling\": [\n        \"VBG\"\n    ], \n    \"beforehand\": [\n        \"RB\"\n    ], \n    \"pedestrian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"George-Creque\": [\n        \"NNP\"\n    ], \n    \"Overnite\": [\n        \"NNP\"\n    ], \n    \"freakishly\": [\n        \"RB\"\n    ], \n    \"hand-sized\": [\n        \"JJ\"\n    ], \n    \"Comique\": [\n        \"NNP\"\n    ], \n    \"Dobbins\": [\n        \"NNP\"\n    ], \n    \"Micronic\": [\n        \"NNP\"\n    ], \n    \"knobs\": [\n        \"NNS\"\n    ], \n    \"three-part\": [\n        \"JJ\"\n    ], \n    \"thyroid-stimulating\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nontrade\": [\n        \"NN\"\n    ], \n    \"kneecap\": [\n        \"NN\"\n    ], \n    \"eagle-eyed\": [\n        \"JJ\"\n    ], \n    \"yearbooks\": [\n        \"NNS\"\n    ], \n    \"Underscoring\": [\n        \"VBG\"\n    ], \n    \"monastery\": [\n        \"NN\"\n    ], \n    \"under-three-years\": [\n        \"JJ\"\n    ], \n    \"affordability\": [\n        \"NN\"\n    ], \n    \"securities-law\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"darts\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Yaklin\": [\n        \"NNP\"\n    ], \n    \"Harpo\": [\n        \"NNP\"\n    ], \n    \"women-owned\": [\n        \"JJ\"\n    ], \n    \"Counsel/NNP...\": [\n        \":\"\n    ], \n    \"Roussel-Uclaf\": [\n        \"NNP\"\n    ], \n    \"lessons\": [\n        \"NNS\"\n    ], \n    \"dragger\": [\n        \"NN\"\n    ], \n    \"majoritarian\": [\n        \"JJ\"\n    ], \n    \"actionable\": [\n        \"JJ\"\n    ], \n    \"Cost\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"herniated\": [\n        \"VBN\"\n    ], \n    \"Honduran\": [\n        \"JJ\"\n    ], \n    \"dragged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Prapas\": [\n        \"NNP\"\n    ], \n    \"chowder\": [\n        \"NN\"\n    ], \n    \"Braque\": [\n        \"NNP\"\n    ], \n    \"cruiser\": [\n        \"NN\"\n    ], \n    \"cruises\": [\n        \"NNS\"\n    ], \n    \"Drenched\": [\n        \"JJ\"\n    ], \n    \"Freon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"secretaries\": [\n        \"NNS\"\n    ], \n    \"lengthwise\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Wedel\": [\n        \"NNP\"\n    ], \n    \"freight\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Man-Made\": [\n        \"JJ\"\n    ], \n    \"Fatal\": [\n        \"NNP\"\n    ], \n    \"elswehere\": [\n        \"NN\"\n    ], \n    \"Fatah\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pre-existent\": [\n        \"JJ\"\n    ], \n    \"Exports\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Southerner\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cie.\": [\n        \"NNP\"\n    ], \n    \"dwindled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Istel\": [\n        \"NNP\"\n    ], \n    \"writer\": [\n        \"NN\"\n    ], \n    \"clothesline\": [\n        \"NN\"\n    ], \n    \"competently\": [\n        \"RB\"\n    ], \n    \"aqua-lung\": [\n        \"NN\"\n    ], \n    \"enzyme\": [\n        \"NN\"\n    ], \n    \"Pitfalls\": [\n        \"NNS\"\n    ], \n    \"Arundel\": [\n        \"NNP\"\n    ], \n    \"Travellers\": [\n        \"NNS\"\n    ], \n    \"Confederate\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"hush-hush\": [\n        \"JJ\"\n    ], \n    \"cholinesterase\": [\n        \"NN\"\n    ], \n    \"Lanesmanship\": [\n        \"NN\"\n    ], \n    \"Defense\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"downpour\": [\n        \"NN\"\n    ], \n    \"Danube\": [\n        \"NNP\"\n    ], \n    \"banned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"January-March\": [\n        \"NNP\"\n    ], \n    \"Slocum\": [\n        \"NNP\"\n    ], \n    \"Fas-antigen\": [\n        \"NN\"\n    ], \n    \"Tarkington\": [\n        \"NNP\"\n    ], \n    \"Code\": [\n        \"NNP\"\n    ], \n    \"Atomics\\\\/Combustion\": [\n        \"NNP\"\n    ], \n    \"banner\": [\n        \"NN\"\n    ], \n    \"quizzed\": [\n        \"VBD\"\n    ], \n    \"deductive\": [\n        \"JJ\"\n    ], \n    \"enemy\": [\n        \"NN\"\n    ], \n    \"Gruller\": [\n        \"NNP\"\n    ], \n    \"radiation-protection\": [\n        \"JJ\"\n    ], \n    \"Suzman\": [\n        \"NNP\"\n    ], \n    \"Coda\": [\n        \"NNP\"\n    ], \n    \"carbines\": [\n        \"NNS\"\n    ], \n    \"Haynes\": [\n        \"NNP\"\n    ], \n    \"Cananea\": [\n        \"NNP\"\n    ], \n    \"Arizona-related\": [\n        \"JJ\"\n    ], \n    \"compressibility\": [\n        \"NN\"\n    ], \n    \"Plasti-Bars\": [\n        \"NNP\"\n    ], \n    \"McCormack\": [\n        \"NNP\"\n    ], \n    \"unqualifiedly\": [\n        \"RB\"\n    ], \n    \"largesse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"eradicating\": [\n        \"VBG\"\n    ], \n    \"re-edited\": [\n        \"VBN\"\n    ], \n    \"startup\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"potent\": [\n        \"JJ\"\n    ], \n    \"correspondent\": [\n        \"NN\"\n    ], \n    \"backfire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gas-turbine\": [\n        \"JJ\"\n    ], \n    \"contour\": [\n        \"NN\"\n    ], \n    \"baritone\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sliding-rate\": [\n        \"JJ\"\n    ], \n    \"Sibling\": [\n        \"NN\"\n    ], \n    \"guinea\": [\n        \"NN\"\n    ], \n    \"demons\": [\n        \"NNS\"\n    ], \n    \"weapons-control\": [\n        \"JJ\"\n    ], \n    \"Ilona\": [\n        \"NNP\"\n    ], \n    \"Idris\": [\n        \"NNP\"\n    ], \n    \"prodigally\": [\n        \"RB\"\n    ], \n    \"viciousness\": [\n        \"NN\"\n    ], \n    \"black-haired\": [\n        \"JJ\"\n    ], \n    \"Viva\": [\n        \"FW\"\n    ], \n    \"screeched\": [\n        \"VBD\"\n    ], \n    \"candor\": [\n        \"NN\"\n    ], \n    \"Vive\": [\n        \"FW\"\n    ], \n    \"enclosures\": [\n        \"NNS\"\n    ], \n    \"stretcher\": [\n        \"NN\"\n    ], \n    \"Mezzanine\": [\n        \"NNP\"\n    ], \n    \"Browning\": [\n        \"NNP\"\n    ], \n    \"Martinsek\": [\n        \"NNP\"\n    ], \n    \"Kobacker\": [\n        \"NNP\"\n    ], \n    \"respondents\": [\n        \"NNS\"\n    ], \n    \"death\": [\n        \"NN\"\n    ], \n    \"screeches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"diminution\": [\n        \"NN\"\n    ], \n    \"Weickerian\": [\n        \"JJ\"\n    ], \n    \"Leona\": [\n        \"NNP\"\n    ], \n    \"Leong\": [\n        \"NNP\"\n    ], \n    \"Leone\": [\n        \"NNP\"\n    ], \n    \"preponderantly\": [\n        \"RB\"\n    ], \n    \"Jason\": [\n        \"NNP\"\n    ], \n    \"Carena\": [\n        \"NNP\"\n    ], \n    \"Pittenger\": [\n        \"NNP\"\n    ], \n    \"Brawer\": [\n        \"NNP\"\n    ], \n    \"Declines\": [\n        \"NNS\"\n    ], \n    \"Merighi\": [\n        \"NNP\"\n    ], \n    \"Todd\": [\n        \"NNP\"\n    ], \n    \"messiah\": [\n        \"NN\"\n    ], \n    \"accomplice\": [\n        \"NN\"\n    ], \n    \"farm-supply\": [\n        \"JJ\"\n    ], \n    \"Irelands\": [\n        \"NNP\"\n    ], \n    \"Stocks\\\\/Mutual\": [\n        \"NNP\"\n    ], \n    \"Nobel\": [\n        \"NNP\"\n    ], \n    \"Duriron\": [\n        \"NNP\"\n    ], \n    \"frosty\": [\n        \"JJ\"\n    ], \n    \"U.S.-Mexican\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Reuling\": [\n        \"NNP\"\n    ], \n    \"Harwood\": [\n        \"NNP\"\n    ], \n    \"Plews\": [\n        \"NNP\"\n    ], \n    \"Rousseau\": [\n        \"NNP\"\n    ], \n    \"souffle\": [\n        \"NN\"\n    ], \n    \"four-minute\": [\n        \"JJ\"\n    ], \n    \"KVDA\": [\n        \"NNP\"\n    ], \n    \"adornments\": [\n        \"NNS\"\n    ], \n    \"eightball\": [\n        \"NN\"\n    ], \n    \"Weirton\": [\n        \"NNP\"\n    ], \n    \"Tagg\": [\n        \"NNP\"\n    ], \n    \"dealmaker\": [\n        \"NN\"\n    ], \n    \"Watt\": [\n        \"NNP\"\n    ], \n    \"raced\": [\n        \"VBD\"\n    ], \n    \"champion\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"paddles\": [\n        \"NNS\"\n    ], \n    \"halftime\": [\n        \"NN\"\n    ], \n    \"races\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"representative\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"systematic\": [\n        \"JJ\"\n    ], \n    \"mainlander\": [\n        \"NN\"\n    ], \n    \"pump-priming\": [\n        \"NN\"\n    ], \n    \"packers\": [\n        \"NNS\"\n    ], \n    \"respiration\": [\n        \"NN\"\n    ], \n    \"doctorates\": [\n        \"NNS\"\n    ], \n    \"two-party\": [\n        \"JJ\"\n    ], \n    \"Journeys\": [\n        \"NNS\"\n    ], \n    \"Orem\": [\n        \"NNP\"\n    ], \n    \"enrollment\": [\n        \"NN\"\n    ], \n    \"existance\": [\n        \"NN\"\n    ], \n    \"far-sighted\": [\n        \"JJ\"\n    ], \n    \"Northbrook\": [\n        \"NNP\"\n    ], \n    \"medically\": [\n        \"RB\"\n    ], \n    \"public-spirited\": [\n        \"JJ\"\n    ], \n    \"Oncogenes\": [\n        \"NNS\"\n    ], \n    \"leaning\": [\n        \"VBG\"\n    ], \n    \"Englishwoman\": [\n        \"NNP\"\n    ], \n    \"Stelco\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"eeriness\": [\n        \"NN\"\n    ], \n    \"occlusive\": [\n        \"JJ\"\n    ], \n    \"ContiTrade\": [\n        \"NNP\"\n    ], \n    \"clucked\": [\n        \"VBD\"\n    ], \n    \"housemate\": [\n        \"NN\"\n    ], \n    \"Dairymen\": [\n        \"NNP\"\n    ], \n    \"pacemakers\": [\n        \"NNS\"\n    ], \n    \"Telzrow\": [\n        \"NNP\"\n    ], \n    \"Kanska\": [\n        \"NNP\"\n    ], \n    \"AWAY\": [\n        \"RP\"\n    ], \n    \"Kulani\": [\n        \"NNP\"\n    ], \n    \"actuaries\": [\n        \"NNS\"\n    ], \n    \"recently-announced\": [\n        \"JJ\"\n    ], \n    \"cytolysis\": [\n        \"NN\"\n    ], \n    \"Sinfonica\": [\n        \"NNP\"\n    ], \n    \"involutions\": [\n        \"NNS\"\n    ], \n    \"premonition\": [\n        \"NN\"\n    ], \n    \"forgiveness\": [\n        \"NN\"\n    ], \n    \"stung\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Harnessing\": [\n        \"VBG\"\n    ], \n    \"knitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Leatherman\": [\n        \"NNP\"\n    ], \n    \"understating\": [\n        \"VBG\"\n    ], \n    \"Lines\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Liner\": [\n        \"NNP\"\n    ], \n    \"contrition\": [\n        \"NN\"\n    ], \n    \"Mercenary\": [\n        \"NN\"\n    ], \n    \"Nisshin\": [\n        \"NNP\"\n    ], \n    \"nouns\": [\n        \"NNS\"\n    ], \n    \"Italian-made\": [\n        \"JJ\"\n    ], \n    \"selfdamaging\": [\n        \"JJ\"\n    ], \n    \"fabrication\": [\n        \"NN\"\n    ], \n    \"housing-policy\": [\n        \"NN\"\n    ], \n    \"Limited\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"then-president\": [\n        \"JJ\"\n    ], \n    \"flagpoles\": [\n        \"NNS\"\n    ], \n    \"alleging\": [\n        \"VBG\"\n    ], \n    \"italicized\": [\n        \"VBN\"\n    ], \n    \"aftershock\": [\n        \"NN\"\n    ], \n    \"normals\": [\n        \"NNS\"\n    ], \n    \"theatres\": [\n        \"NNS\"\n    ], \n    \"equilibrated\": [\n        \"VBN\"\n    ], \n    \"redistribution\": [\n        \"NN\"\n    ], \n    \"airline-related\": [\n        \"JJ\"\n    ], \n    \"Villages\": [\n        \"NNS\"\n    ], \n    \"glitz\": [\n        \"NN\"\n    ], \n    \"befuddled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"jerkings\": [\n        \"NNS\"\n    ], \n    \"stunt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"befuddles\": [\n        \"VBZ\"\n    ], \n    \"mistresses\": [\n        \"NNS\"\n    ], \n    \"Kogyo\": [\n        \"NNP\"\n    ], \n    \"Orens\": [\n        \"NNP\"\n    ], \n    \"Krisher\": [\n        \"NNP\"\n    ], \n    \"pro-abortion\": [\n        \"JJ\"\n    ], \n    \"district\\\\/state\": [\n        \"NN\"\n    ], \n    \"one-square-mile\": [\n        \"JJ\"\n    ], \n    \"A.O.\": [\n        \"NNP\"\n    ], \n    \"rifleman\": [\n        \"NN\"\n    ], \n    \"manna\": [\n        \"NN\"\n    ], \n    \"Breaux\": [\n        \"NNP\"\n    ], \n    \"jutting\": [\n        \"VBG\"\n    ], \n    \"Palomar\": [\n        \"NNP\"\n    ], \n    \"skateboards\": [\n        \"NNS\"\n    ], \n    \"Nightlife\": [\n        \"NN\"\n    ], \n    \"suffering\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"baskets\": [\n        \"NNS\"\n    ], \n    \"entrenched\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Kucharski\": [\n        \"NNP\"\n    ], \n    \"blue-collar-mail\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Boneh\": [\n        \"NNP\"\n    ], \n    \"d\": [\n        \"FW\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"anti-liquor\": [\n        \"JJ\"\n    ], \n    \"squandered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Methodist\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Yardeni\": [\n        \"NNP\"\n    ], \n    \"Highly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"played-out\": [\n        \"JJ\"\n    ], \n    \"continue\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"yields\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Methodism\": [\n        \"NNP\"\n    ], \n    \"Kochitov\": [\n        \"NNP\"\n    ], \n    \"Bones\": [\n        \"NNS\"\n    ], \n    \"continuo\": [\n        \"NN\"\n    ], \n    \"Cason\": [\n        \"NNP\"\n    ], \n    \"NRDC\": [\n        \"NNP\"\n    ], \n    \"partying\": [\n        \"VBG\"\n    ], \n    \"COOPERATION\": [\n        \"NN\"\n    ], \n    \"senate\": [\n        \"NN\"\n    ], \n    \"spring\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Retrovir\": [\n        \"NNP\"\n    ], \n    \"Fahrenheit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"attics\": [\n        \"NNS\"\n    ], \n    \"Scot\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thermostats\": [\n        \"NNS\"\n    ], \n    \"curious\": [\n        \"JJ\"\n    ], \n    \"Collischon\": [\n        \"NNP\"\n    ], \n    \"gun-running\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"couscous\": [\n        \"NN\"\n    ], \n    \"Bittker\": [\n        \"NNP\"\n    ], \n    \"Schwalbe\": [\n        \"NNP\"\n    ], \n    \"heavy-armed\": [\n        \"JJ\"\n    ], \n    \"on-the-job\": [\n        \"JJ\"\n    ], \n    \"transactions\": [\n        \"NNS\"\n    ], \n    \"Aloft\": [\n        \"JJ\"\n    ], \n    \"hydrocarbon-storage\": [\n        \"NN\"\n    ], \n    \"Railbikers\": [\n        \"NNS\"\n    ], \n    \"BS\": [\n        \"NNP\"\n    ], \n    \"convulsions\": [\n        \"NNS\"\n    ], \n    \"three-dimentional\": [\n        \"JJ\"\n    ], \n    \"slopping\": [\n        \"VBG\"\n    ], \n    \"Assimilation\": [\n        \"NNP\"\n    ], \n    \"rural-care\": [\n        \"JJ\"\n    ], \n    \"Brady\": [\n        \"NNP\"\n    ], \n    \"overallotments\": [\n        \"NNS\"\n    ], \n    \"Rianta\": [\n        \"NNP\"\n    ], \n    \"odor\": [\n        \"NN\"\n    ], \n    \"Lagrange\": [\n        \"NNP\"\n    ], \n    \"sanguineous\": [\n        \"JJ\"\n    ], \n    \"pasteurization\": [\n        \"NN\"\n    ], \n    \"v.w.\": [\n        \"NN\"\n    ], \n    \"departures\": [\n        \"NNS\"\n    ], \n    \"digitizes\": [\n        \"VBZ\"\n    ], \n    \"Wenham\": [\n        \"NNP\"\n    ], \n    \"shadings\": [\n        \"NNS\"\n    ], \n    \"IVF\": [\n        \"NNP\"\n    ], \n    \"MERRILL\": [\n        \"NNP\"\n    ], \n    \"PCBs\": [\n        \"NNS\"\n    ], \n    \"Deaconess\": [\n        \"NNP\"\n    ], \n    \"won-lost\": [\n        \"JJ\"\n    ], \n    \"weatherbeaten\": [\n        \"JJ\"\n    ], \n    \"sacrament\": [\n        \"NN\"\n    ], \n    \"Ottoman\": [\n        \"NNP\"\n    ], \n    \"forearms\": [\n        \"NNS\"\n    ], \n    \"Aussedat\": [\n        \"NNP\"\n    ], \n    \"Narrowly\": [\n        \"NNP\"\n    ], \n    \"junkbond-financed\": [\n        \"JJ\"\n    ], \n    \"NEG\": [\n        \"NNP\"\n    ], \n    \"NED\": [\n        \"NNP\"\n    ], \n    \"Gujarat\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"NEC\": [\n        \"NNP\"\n    ], \n    \"Styron\": [\n        \"NNP\"\n    ], \n    \"blue-carpeted\": [\n        \"JJ\"\n    ], \n    \"NEW\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Scarborough\": [\n        \"NNP\"\n    ], \n    \"depositors\": [\n        \"NNS\"\n    ], \n    \"striven\": [\n        \"VBN\"\n    ], \n    \"retail-brokerage\": [\n        \"JJ\"\n    ], \n    \"strived\": [\n        \"VBD\"\n    ], \n    \"Tokai\": [\n        \"NNP\"\n    ], \n    \"videodisk\": [\n        \"NN\"\n    ], \n    \"minor-leaguer\": [\n        \"NN\"\n    ], \n    \"anti-program\": [\n        \"JJ\"\n    ], \n    \"crackdown\": [\n        \"NN\"\n    ], \n    \"suit\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Smoking\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Yuan\": [\n        \"NNP\"\n    ], \n    \"strives\": [\n        \"VBZ\"\n    ], \n    \"Should\": [\n        \"MD\", \n        \"NNP\"\n    ], \n    \"Baptist\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"NNP|JJ\"\n    ], \n    \"hoo-pig\": [\n        \"UH\"\n    ], \n    \"inches\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"graciously\": [\n        \"RB\"\n    ], \n    \"infinitive\": [\n        \"NN\"\n    ], \n    \"slump\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"well-regarded\": [\n        \"JJ\"\n    ], \n    \"slums\": [\n        \"NNS\"\n    ], \n    \"inched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"highest-yielding\": [\n        \"JJ\"\n    ], \n    \"Sergei\": [\n        \"NNP\"\n    ], \n    \"refinancing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Minnesotan\": [\n        \"NNP\"\n    ], \n    \"yeller\": [\n        \"JJ\"\n    ], \n    \"burrows\": [\n        \"NNS\"\n    ], \n    \"up\": [\n        \"IN\", \n        \"JJ\", \n        \"IN|RB\", \n        \"RB\", \n        \"RP\", \n        \"VB\", \n        \"NNP\", \n        \",\", \n        \"RBR\"\n    ], \n    \"us\": [\n        \"PRP\"\n    ], \n    \"um\": [\n        \"FW\", \n        \"UH\", \n        \"PRP\"\n    ], \n    \"un\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"uh\": [\n        \"UH\"\n    ], \n    \"last-minute\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ascertainable\": [\n        \"JJ\"\n    ], \n    \"short-dated\": [\n        \"JJ\"\n    ], \n    \"yelled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"storing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"parses\": [\n        \"VBZ\"\n    ], \n    \"consigned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pollution-causing\": [\n        \"JJ\"\n    ], \n    \"hangups\": [\n        \"NNS\"\n    ], \n    \"travel-management\": [\n        \"NN\"\n    ], \n    \"thugs\": [\n        \"NNS\"\n    ], \n    \"Durcan\": [\n        \"NNP\"\n    ], \n    \"dissemination\": [\n        \"NN\"\n    ], \n    \"fixing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"post-crash\": [\n        \"JJ\"\n    ], \n    \"specialty-printing\": [\n        \"JJ\"\n    ], \n    \"Kalyagin\": [\n        \"NNP\"\n    ], \n    \"deviate\": [\n        \"VB\"\n    ], \n    \"Bagley\": [\n        \"NNP\"\n    ], \n    \"ferried\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Espectador\": [\n        \"NNP\"\n    ], \n    \"trouser\": [\n        \"NN\"\n    ], \n    \"lucid\": [\n        \"JJ\"\n    ], \n    \"prosecution\": [\n        \"NN\"\n    ], \n    \"garbage-in\": [\n        \"JJ\"\n    ], \n    \"cranking\": [\n        \"VBG\"\n    ], \n    \"Zug\": [\n        \"NNP\"\n    ], \n    \"ferries\": [\n        \"NNS\"\n    ], \n    \"anti-Fascist\": [\n        \"JJ\"\n    ], \n    \"leaflets\": [\n        \"NNS\"\n    ], \n    \"Timbers\": [\n        \"NNP\"\n    ], \n    \"Revolutionibus\": [\n        \"FW\"\n    ], \n    \"duopoly\": [\n        \"RB\"\n    ], \n    \"walk-through\": [\n        \"JJ\"\n    ], \n    \"holes\": [\n        \"NNS\"\n    ], \n    \"Connection\": [\n        \"NN\"\n    ], \n    \"Webber\": [\n        \"NNP\"\n    ], \n    \"KGB\": [\n        \"NNP\"\n    ], \n    \"confederation\": [\n        \"NN\"\n    ], \n    \"KGF\": [\n        \"NNP\"\n    ], \n    \"inaccuracy\": [\n        \"NN\"\n    ], \n    \"fresh\": [\n        \"JJ\", \n        \"JJ|RB\"\n    ], \n    \"holed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"having\": [\n        \"VBG\"\n    ], \n    \"Rotan\": [\n        \"NNP\"\n    ], \n    \"melts\": [\n        \"VBZ\"\n    ], \n    \"knotted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tattered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Kennington\": [\n        \"NNP\"\n    ], \n    \"soften\": [\n        \"VB\"\n    ], \n    \"ex-investment\": [\n        \"JJ\"\n    ], \n    \"softer\": [\n        \"JJR\", \n        \"RB\"\n    ], \n    \"Summarizing\": [\n        \"VBG\"\n    ], \n    \"coverts\": [\n        \"NNS\"\n    ], \n    \"Gerstenblatt\": [\n        \"NNP\"\n    ], \n    \"Del.-based\": [\n        \"JJ\"\n    ], \n    \"Designer\": [\n        \"NN\"\n    ], \n    \"longstanding\": [\n        \"JJ\"\n    ], \n    \"edgewise\": [\n        \"RB\"\n    ], \n    \"Miserables\": [\n        \"FW\"\n    ], \n    \"Volvo-Renault\": [\n        \"NNP\"\n    ], \n    \"Designed\": [\n        \"VBN\"\n    ], \n    \"Bottoms\": [\n        \"NNS\"\n    ], \n    \"glees\": [\n        \"NNS\"\n    ], \n    \"On-Line\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"treasures\": [\n        \"NNS\"\n    ], \n    \"pestilent\": [\n        \"JJ\"\n    ], \n    \"stocked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Noffsinger\": [\n        \"NNP\"\n    ], \n    \"creeps\": [\n        \"VBZ\"\n    ], \n    \"panting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"redefinition\": [\n        \"NN\"\n    ], \n    \"Schechter\": [\n        \"NNP\"\n    ], \n    \"semi-city\": [\n        \"JJ\"\n    ], \n    \"anti-fraud\": [\n        \"JJ\"\n    ], \n    \"wipe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Medford\": [\n        \"NNP\"\n    ], \n    \"FFr1\": [\n        \"NNP\"\n    ], \n    \"Forellen\": [\n        \"NNP\"\n    ], \n    \"Maurice\": [\n        \"NNP\"\n    ], \n    \"transmission\": [\n        \"NN\"\n    ], \n    \"Y-MP\": [\n        \"NNP\"\n    ], \n    \"Dennison\": [\n        \"NNP\"\n    ], \n    \"racy\": [\n        \"JJ\"\n    ], \n    \"huh-uh\": [\n        \"JJ\"\n    ], \n    \"Hoagy\": [\n        \"NNP\"\n    ], \n    \"discounting\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"givenness\": [\n        \"NN\"\n    ], \n    \"Mervyn\": [\n        \"NNP\"\n    ], \n    \"near-completed\": [\n        \"JJ\"\n    ], \n    \"affadavit\": [\n        \"NN\"\n    ], \n    \"Telaction\": [\n        \"NNP\"\n    ], \n    \"Agence\": [\n        \"NNP\"\n    ], \n    \"Buente\": [\n        \"NNP\"\n    ], \n    \"licensee\": [\n        \"NN\"\n    ], \n    \"licensed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"two-button\": [\n        \"JJ\"\n    ], \n    \"imply\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Graedel\": [\n        \"NNP\"\n    ], \n    \"licenses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Parodis\": [\n        \"NNS\"\n    ], \n    \"leakage\": [\n        \"NN\"\n    ], \n    \"graduating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bonavia\": [\n        \"NNP\"\n    ], \n    \"Janes\": [\n        \"NNPS\"\n    ], \n    \"Janet\": [\n        \"NNP\"\n    ], \n    \"aboveboard\": [\n        \"JJ\"\n    ], \n    \"Yontz\": [\n        \"NNP\"\n    ], \n    \"glissade\": [\n        \"NN\"\n    ], \n    \"Waukegan\": [\n        \"NNP\"\n    ], \n    \"Achieving\": [\n        \"VBG\"\n    ], \n    \"consistently\": [\n        \"RB\"\n    ], \n    \"Cuddeford\": [\n        \"NNP\"\n    ], \n    \"polluting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"sixth\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"mammography\": [\n        \"NN\"\n    ], \n    \"Ferencik\": [\n        \"NNP\"\n    ], \n    \"Rumscheidt\": [\n        \"NNP\"\n    ], \n    \"Campagnoli\": [\n        \"NNP\"\n    ], \n    \"baroness\": [\n        \"NN\"\n    ], \n    \"Prior\": [\n        \"RB\"\n    ], \n    \"Giamatti\": [\n        \"NNP\"\n    ], \n    \"Kuhn\": [\n        \"NNP\"\n    ], \n    \"technical\": [\n        \"JJ\"\n    ], \n    \"Odors\": [\n        \"NNP\"\n    ], \n    \"inoperable\": [\n        \"JJ\"\n    ], \n    \"bellicosity\": [\n        \"NN\"\n    ], \n    \"Immortal\": [\n        \"NNP\"\n    ], \n    \"resulting\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"JJ\"\n    ], \n    \"admiralty\": [\n        \"NN\"\n    ], \n    \"Shareholder\": [\n        \"NN\"\n    ], \n    \"buffered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"maquila\": [\n        \"NN\"\n    ], \n    \"Starke\": [\n        \"NNP\"\n    ], \n    \"outcomes\": [\n        \"NNS\"\n    ], \n    \"unmasculine\": [\n        \"JJ\"\n    ], \n    \"sovereignty\": [\n        \"NN\"\n    ], \n    \"now-dismembered\": [\n        \"JJ\"\n    ], \n    \"million-mark\": [\n        \"JJ\"\n    ], \n    \"Pripet\": [\n        \"NNP\"\n    ], \n    \"causal\": [\n        \"JJ\"\n    ], \n    \"Younkers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Korn\": [\n        \"NNP\"\n    ], \n    \"exciting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Kori\": [\n        \"NNP\"\n    ], \n    \"ivy-covered\": [\n        \"JJ\"\n    ], \n    \"DRUGS\": [\n        \"NNPS\"\n    ], \n    \"Millburn\": [\n        \"NNP\"\n    ], \n    \"McCollum\": [\n        \"NNP\"\n    ], \n    \"pedagogical\": [\n        \"JJ\"\n    ], \n    \"Drag\": [\n        \"VB\"\n    ], \n    \"irrepressible\": [\n        \"JJ\"\n    ], \n    \"Sony-Columbia\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"humorless\": [\n        \"JJ\"\n    ], \n    \"forefathers\": [\n        \"NNS\"\n    ], \n    \"midday\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Kors\": [\n        \"NNP\"\n    ], \n    \"Himont\": [\n        \"NNP\"\n    ], \n    \"cathodophoretic\": [\n        \"JJ\"\n    ], \n    \"Eastland\": [\n        \"NNP\"\n    ], \n    \"shipwreck\": [\n        \"NN\"\n    ], \n    \"ESTATE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Beadleston\": [\n        \"NNP\"\n    ], \n    \"Smith\\\\/Greenland\": [\n        \"NNP\"\n    ], \n    \"Koppel\": [\n        \"NNP\"\n    ], \n    \"DEVICES\": [\n        \"NNP\"\n    ], \n    \"unplug\": [\n        \"VB\"\n    ], \n    \"bullhorn\": [\n        \"NN\"\n    ], \n    \"first-section\": [\n        \"JJ\"\n    ], \n    \"rubbish\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"eye-undeceiving\": [\n        \"NN\"\n    ], \n    \"Yokogawa\": [\n        \"NNP\"\n    ], \n    \"piety\": [\n        \"NN\"\n    ], \n    \"Hironaka\": [\n        \"NNP\"\n    ], \n    \"Oxnard\": [\n        \"NNP\"\n    ], \n    \"Donics\": [\n        \"NNP\"\n    ], \n    \"prompts\": [\n        \"VBZ\"\n    ], \n    \"Marjorie\": [\n        \"NNP\"\n    ], \n    \"Scandinavians\": [\n        \"NNPS\"\n    ], \n    \"Spirituals\": [\n        \"NNS\"\n    ], \n    \"emphatically\": [\n        \"RB\"\n    ], \n    \"nonliterary\": [\n        \"JJ\"\n    ], \n    \"cherubim\": [\n        \"NN\"\n    ], \n    \"slid\": [\n        \"VBD\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"perfecting\": [\n        \"VBG\"\n    ], \n    \"pelvic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"slim\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"prevailin\": [\n        \"NN\"\n    ], \n    \"Liberation\": [\n        \"NNP\"\n    ], \n    \"slit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tantrums\": [\n        \"NNS\"\n    ], \n    \"slip\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"pelvis\": [\n        \"NN\"\n    ], \n    \"Brelin\": [\n        \"NNP\"\n    ], \n    \"Duties\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"mullets\": [\n        \"NNS\"\n    ], \n    \"Phelps\": [\n        \"NNP\"\n    ], \n    \"delay\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"non-propagating\": [\n        \"JJ\"\n    ], \n    \"second-story\": [\n        \"JJ\"\n    ], \n    \"higher-fat\": [\n        \"JJR\"\n    ], \n    \"paternally\": [\n        \"RB\"\n    ], \n    \"palates\": [\n        \"NNS\"\n    ], \n    \"manacles\": [\n        \"NNS\"\n    ], \n    \"pub\": [\n        \"NN\"\n    ], \n    \"McGowan\": [\n        \"NNP\"\n    ], \n    \"Keansburg\": [\n        \"NNP\"\n    ], \n    \"Reprisals\": [\n        \"NNS\"\n    ], \n    \"impetuousness\": [\n        \"NN\"\n    ], \n    \"eminences\": [\n        \"NNS\"\n    ], \n    \"Hive\": [\n        \"NNP\"\n    ], \n    \"graveyards\": [\n        \"NNS\"\n    ], \n    \"fits\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"marrow\": [\n        \"NN\"\n    ], \n    \"hawk\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Cleva\": [\n        \"NNP\"\n    ], \n    \"solidarity\": [\n        \"NN\"\n    ], \n    \"inscrutability\": [\n        \"NN\"\n    ], \n    \"non-Greek\": [\n        \"JJ\"\n    ], \n    \"Centers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"commodities\": [\n        \"NNS\"\n    ], \n    \"Lybrand\": [\n        \"NNP\"\n    ], \n    \"pollution-free\": [\n        \"JJ\"\n    ], \n    \"antelope\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"cross-dressing\": [\n        \"JJ\"\n    ], \n    \"retrofitting\": [\n        \"NN\"\n    ], \n    \"Nearness\": [\n        \"NN\"\n    ], \n    \"Tennenbaum\": [\n        \"NNP\"\n    ], \n    \"future-day\": [\n        \"JJ\"\n    ], \n    \"Barnumville\": [\n        \"NNP\"\n    ], \n    \"deducing\": [\n        \"VBG\"\n    ], \n    \"chosen\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"snouts\": [\n        \"NNS\"\n    ], \n    \"non-farm\": [\n        \"JJ\"\n    ], \n    \"blistered\": [\n        \"VBN\"\n    ], \n    \"diluents\": [\n        \"NNS\"\n    ], \n    \"winners\": [\n        \"NNS\"\n    ], \n    \"suppressor\": [\n        \"NN\"\n    ], \n    \"quite-comfortable\": [\n        \"JJ\"\n    ], \n    \"bakery-mix\": [\n        \"JJ\"\n    ], \n    \"mitigates\": [\n        \"VBZ\"\n    ], \n    \"Wholesale\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"outlined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"SKr225\": [\n        \"NNS\"\n    ], \n    \"innermost\": [\n        \"JJ\"\n    ], \n    \"launder\": [\n        \"VB\"\n    ], \n    \"Cardiac\": [\n        \"NNP\"\n    ], \n    \"Aliber\": [\n        \"NNP\"\n    ], \n    \"pain-relief\": [\n        \"NN\"\n    ], \n    \"legendary\": [\n        \"JJ\"\n    ], \n    \"Social\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNS\"\n    ], \n    \"golfers...\": [\n        \":\"\n    ], \n    \"outlines\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"presidential\": [\n        \"JJ\"\n    ], \n    \"regionalism\": [\n        \"JJ\"\n    ], \n    \"minimalist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wallowing\": [\n        \"VBG\"\n    ], \n    \"truth\": [\n        \"NN\"\n    ], \n    \"minimalism\": [\n        \"NN\"\n    ], \n    \"remuda\": [\n        \"NN\"\n    ], \n    \"Titans\": [\n        \"NNS\"\n    ], \n    \"subset\": [\n        \"NN\"\n    ], \n    \"Haumd\": [\n        \"NNP\"\n    ], \n    \"WestLB\": [\n        \"NNP\"\n    ], \n    \"expectantly\": [\n        \"RB\"\n    ], \n    \"Willard\": [\n        \"NNP\"\n    ], \n    \"Poodle\": [\n        \"NNP\"\n    ], \n    \"Steiner\": [\n        \"NNP\"\n    ], \n    \"stepmothers\": [\n        \"NNS\"\n    ], \n    \"castigate\": [\n        \"VB\"\n    ], \n    \"Grips\": [\n        \"NNS\"\n    ], \n    \"Zubin\": [\n        \"NNP\"\n    ], \n    \"germaneness\": [\n        \"NN\"\n    ], \n    \"benefiting\": [\n        \"VBG\"\n    ], \n    \"nestbuilding\": [\n        \"NN\"\n    ], \n    \"dismissal\": [\n        \"NN\"\n    ], \n    \"overproduction\": [\n        \"NN\"\n    ], \n    \"Chebrikov\": [\n        \"NNP\"\n    ], \n    \"community-oriented\": [\n        \"JJ\"\n    ], \n    \"antimissile\": [\n        \"JJ\"\n    ], \n    \"motifs\": [\n        \"NNS\"\n    ], \n    \"hilarious\": [\n        \"JJ\"\n    ], \n    \"Photographic\": [\n        \"JJ\"\n    ], \n    \"eye-filling\": [\n        \"JJ\"\n    ], \n    \"Qintex\": [\n        \"NNP\"\n    ], \n    \"delineate\": [\n        \"VB\"\n    ], \n    \"Sukuma\": [\n        \"NNP\"\n    ], \n    \"subsiding\": [\n        \"VBG\"\n    ], \n    \"uncontrollably\": [\n        \"RB\"\n    ], \n    \"pre-publication\": [\n        \"JJ\"\n    ], \n    \"spill-related\": [\n        \"JJ\"\n    ], \n    \"graze\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"tresses\": [\n        \"NNS\"\n    ], \n    \"cutting-edge\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cathodic\": [\n        \"NNP\"\n    ], \n    \"shortest\": [\n        \"JJS\"\n    ], \n    \"Lesser\": [\n        \"NNP\"\n    ], \n    \"reposed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"top-of-the-line\": [\n        \"JJ\"\n    ], \n    \"Point\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cravath\": [\n        \"NNP\"\n    ], \n    \"Ackerly\": [\n        \"NNP\"\n    ], \n    \"put\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP|VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"sleeplessness\": [\n        \"NN\"\n    ], \n    \"qualifying\": [\n        \"VBG\"\n    ], \n    \"Ulbricht\": [\n        \"NNP\"\n    ], \n    \"ultramodern\": [\n        \"JJ\"\n    ], \n    \"Shearing\": [\n        \"NNP\"\n    ], \n    \"staggered\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"manuscript\": [\n        \"NN\"\n    ], \n    \"yells\": [\n        \"VBZ\"\n    ], \n    \"Blomdahl\": [\n        \"NNP\"\n    ], \n    \"Hasse\": [\n        \"NNP\"\n    ], \n    \"Calgon\": [\n        \"NNP\"\n    ], \n    \"quasi-mechanistic\": [\n        \"JJ\"\n    ], \n    \"Kempner\": [\n        \"NNP\"\n    ], \n    \"self-help\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"prank\": [\n        \"NN\"\n    ], \n    \"suppositions\": [\n        \"NNS\"\n    ], \n    \"razorback\": [\n        \"NN\"\n    ], \n    \"Grigsby\": [\n        \"NNP\"\n    ], \n    \"over-spent\": [\n        \"JJ\"\n    ], \n    \"pre-Reagan\": [\n        \"JJ\"\n    ], \n    \"instruction-set\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"inalienable\": [\n        \"JJ\"\n    ], \n    \"institute-sponsored\": [\n        \"JJ\"\n    ], \n    \"fouling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Actual\": [\n        \"JJ\"\n    ], \n    \"Half-time\": [\n        \"JJ\"\n    ], \n    \"chagrin\": [\n        \"NN\"\n    ], \n    \"adaptor\": [\n        \"NN\"\n    ], \n    \"difficult\": [\n        \"JJ\"\n    ], \n    \"cow-blood\": [\n        \"NN\"\n    ], \n    \"disengage\": [\n        \"VB\"\n    ], \n    \"Housman\": [\n        \"NNP\"\n    ], \n    \"concrete-product-making\": [\n        \"NN\"\n    ], \n    \"manhole\": [\n        \"NN\"\n    ], \n    \"Hastily\": [\n        \"RB\"\n    ], \n    \"retraction\": [\n        \"NN\"\n    ], \n    \"meanin\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"warfare\": [\n        \"NN\"\n    ], \n    \"exposure...\": [\n        \":\"\n    ], \n    \"bother\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"aggressor\": [\n        \"NN\"\n    ], \n    \"reacted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"extravaganzas\": [\n        \"NNS\"\n    ], \n    \"animal-based\": [\n        \"JJ\"\n    ], \n    \"rollercoaster\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Afrika\": [\n        \"NNP\"\n    ], \n    \"pertussis\": [\n        \"NN\"\n    ], \n    \"devotion\": [\n        \"NN\"\n    ], \n    \"collecting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"beggar\": [\n        \"NN\"\n    ], \n    \"trusting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"gently\": [\n        \"RB\"\n    ], \n    \"reassuring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"gentle\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Eidsmo\": [\n        \"NNP\"\n    ], \n    \"defending\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"fourteenth\": [\n        \"JJ\"\n    ], \n    \"C.S.\": [\n        \"NNP\"\n    ], \n    \"affinities\": [\n        \"NNS\"\n    ], \n    \"Mutants\": [\n        \"NNS\"\n    ], \n    \"thrift-insurance\": [\n        \"NN\"\n    ], \n    \"Pockmanster\": [\n        \"NNP\"\n    ], \n    \"hungrily\": [\n        \"RB\"\n    ], \n    \"Compiled\": [\n        \"VBN\"\n    ], \n    \"Rickenbaugh\": [\n        \"NNP\"\n    ], \n    \"awed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"hangover\": [\n        \"NN\"\n    ], \n    \"waffles\": [\n        \"NNS\"\n    ], \n    \"lilt\": [\n        \"NN\"\n    ], \n    \"public-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"astride\": [\n        \"IN\"\n    ], \n    \"waffled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"flash-bulbs\": [\n        \"NNS\"\n    ], \n    \"awes\": [\n        \"VBZ\"\n    ], \n    \"accuracy\": [\n        \"NN\"\n    ], \n    \"Borrowers\": [\n        \"NNS\"\n    ], \n    \"Conservatory\": [\n        \"NNP\"\n    ], \n    \"unobtrusively\": [\n        \"RB\"\n    ], \n    \"pitches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Journal\\\\/Europe\": [\n        \"NNP\"\n    ], \n    \"Moudy\": [\n        \"NNP\"\n    ], \n    \"old-age\": [\n        \"JJ\"\n    ], \n    \"Godunov\": [\n        \"NNP\"\n    ], \n    \"gussets\": [\n        \"NNS\"\n    ], \n    \"midmonth\": [\n        \"RB\"\n    ], \n    \"addiction\": [\n        \"NN\"\n    ], \n    \"ratifying\": [\n        \"VBG\"\n    ], \n    \"Lindemanns\": [\n        \"NNPS\"\n    ], \n    \"philosophers\": [\n        \"NNS\"\n    ], \n    \"MCI\": [\n        \"NNP\"\n    ], \n    \"tramps\": [\n        \"VBZ\"\n    ], \n    \"ambitions\": [\n        \"NNS\"\n    ], \n    \"locust\": [\n        \"NN\"\n    ], \n    \"MCA\": [\n        \"NNP\"\n    ], \n    \"five-point\": [\n        \"JJ\"\n    ], \n    \"Aquinas\": [\n        \"NNP\"\n    ], \n    \"mechanical\": [\n        \"JJ\"\n    ], \n    \"recoil\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"painting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"incarcerate\": [\n        \"VB\"\n    ], \n    \"Shawnee\": [\n        \"NNP\"\n    ], \n    \"Heyden\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bondsman\": [\n        \"NN\"\n    ], \n    \"public-transit\": [\n        \"JJ\"\n    ], \n    \"Whitmore\": [\n        \"NNP\"\n    ], \n    \"Cablevision\": [\n        \"NNP\"\n    ], \n    \"net-capital\": [\n        \"JJ\"\n    ], \n    \"briny\": [\n        \"JJ\"\n    ], \n    \"Daley\": [\n        \"NNP\"\n    ], \n    \"Rangers\": [\n        \"NNPS\"\n    ], \n    \"brine\": [\n        \"NN\"\n    ], \n    \"Manoplax\": [\n        \"NNP\"\n    ], \n    \"Waste\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"economist\": [\n        \"NN\"\n    ], \n    \"pitched\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"decade\": [\n        \"NN\"\n    ], \n    \"principal\": [\n        \"JJ\", \n        \"NN\", \n        \"NN|JJ\"\n    ], \n    \"vulture\": [\n        \"NN\"\n    ], \n    \"anti-gay\": [\n        \"JJ\"\n    ], \n    \"burnished\": [\n        \"VBN\"\n    ], \n    \"noir\": [\n        \"FW\"\n    ], \n    \"timpani\": [\n        \"NNS\"\n    ], \n    \"Experimenting\": [\n        \"VBG\"\n    ], \n    \"should\": [\n        \"MD\"\n    ], \n    \"buttons\": [\n        \"NNS\"\n    ], \n    \"reading-rooms\": [\n        \"NNS\"\n    ], \n    \"spontaneity\": [\n        \"NN\"\n    ], \n    \"ever-changing\": [\n        \"JJ\"\n    ], \n    \"indecisiveness\": [\n        \"NN\"\n    ], \n    \"bomblets\": [\n        \"NNS\"\n    ], \n    \"meant\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"capsules\": [\n        \"NNS\"\n    ], \n    \"Applause\": [\n        \"NN\"\n    ], \n    \"means\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Telesystems\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"impinging\": [\n        \"VBG\"\n    ], \n    \"McBee\": [\n        \"NNP\"\n    ], \n    \"impeachment\": [\n        \"NN\"\n    ], \n    \"Salaries\": [\n        \"NNS\"\n    ], \n    \"Wankui\": [\n        \"NNP\"\n    ], \n    \"Nightingale\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"shaping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sinner\": [\n        \"NNP\"\n    ], \n    \"Fleury\": [\n        \"NNP\"\n    ], \n    \"Because\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"metabolite\": [\n        \"NN\"\n    ], \n    \"Jacobite\": [\n        \"NNP\"\n    ], \n    \"unexecuted\": [\n        \"VBN\"\n    ], \n    \"rail-passenger\": [\n        \"NN\"\n    ], \n    \"extra-sensory\": [\n        \"JJ\"\n    ], \n    \"glossed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"default\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"neo-fascist\": [\n        \"JJ\"\n    ], \n    \"assembly-line\": [\n        \"NN\"\n    ], \n    \"unfeasible\": [\n        \"JJ\"\n    ], \n    \"favoring\": [\n        \"VBG\"\n    ], \n    \"Hock\": [\n        \"NNP\"\n    ], \n    \"low-rated\": [\n        \"JJ\"\n    ], \n    \"water-balance\": [\n        \"NN\"\n    ], \n    \"international-leasing\": [\n        \"JJ\"\n    ], \n    \"indecisive\": [\n        \"JJ\"\n    ], \n    \"correlations\": [\n        \"NNS\"\n    ], \n    \"packet\": [\n        \"NN\"\n    ], \n    \"meted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Treasury-bill\": [\n        \"NN\"\n    ], \n    \"packed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"innovator\": [\n        \"NN\"\n    ], \n    \"mien\": [\n        \"NN\"\n    ], \n    \"Human-rights\": [\n        \"NNS\"\n    ], \n    \"Ariane\": [\n        \"NNP\"\n    ], \n    \"fill-or-kill\": [\n        \"JJ\"\n    ], \n    \"Terminals\": [\n        \"NNS\"\n    ], \n    \"Meatheads\": [\n        \"NNS\"\n    ], \n    \"taunting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cloudless\": [\n        \"JJ\"\n    ], \n    \"piston\": [\n        \"NN\"\n    ], \n    \"pistol\": [\n        \"NN\"\n    ], \n    \"score-wise\": [\n        \"JJ\"\n    ], \n    \"fire-colored\": [\n        \"JJ\"\n    ], \n    \"ends\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"inchworm\": [\n        \"NN\"\n    ], \n    \"court-approved\": [\n        \"JJ\"\n    ], \n    \"drachmas\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"butts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"hogging\": [\n        \"VBG\"\n    ], \n    \"seaboard\": [\n        \"NN\"\n    ], \n    \"rejoins\": [\n        \"VBZ\"\n    ], \n    \"reappears\": [\n        \"VBZ\"\n    ], \n    \"covert-operations\": [\n        \"NNS\"\n    ], \n    \"mooing\": [\n        \"VBG\"\n    ], \n    \"observable\": [\n        \"JJ\"\n    ], \n    \"non-striking\": [\n        \"JJ\"\n    ], \n    \"Devotees\": [\n        \"NNS\"\n    ], \n    \"invited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"PERSUADING\": [\n        \"VB\"\n    ], \n    \"Sky-god\": [\n        \"NNP\"\n    ], \n    \"Holyoke\": [\n        \"NNP\"\n    ], \n    \"Lindsey\": [\n        \"NNP\"\n    ], \n    \"cents-a-share\": [\n        \"JJ\"\n    ], \n    \"trumps\": [\n        \"NNS\"\n    ], \n    \"government-sanctioned\": [\n        \"JJ\"\n    ], \n    \"Four-fifths\": [\n        \"NNS\"\n    ], \n    \"Scribe\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"invites\": [\n        \"VBZ\"\n    ], \n    \"Inspiring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"half-cocked\": [\n        \"JJ\"\n    ], \n    \"Pietermartizburg\": [\n        \"NNP\"\n    ], \n    \"stranding\": [\n        \"VBG\"\n    ], \n    \"Sartre\": [\n        \"NNP\"\n    ], \n    \"Girls\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"distil\": [\n        \"VB\"\n    ], \n    \"nine-to-five\": [\n        \"JJ\"\n    ], \n    \"subsedies\": [\n        \"NNS\"\n    ], \n    \"whispering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"higher-density\": [\n        \"JJ\"\n    ], \n    \"specialist-firm\": [\n        \"JJ\"\n    ], \n    \"lectern\": [\n        \"NN\"\n    ], \n    \"keying\": [\n        \"VBG\"\n    ], \n    \"pulsated\": [\n        \"VBD\"\n    ], \n    \"Monmouth\": [\n        \"NNP\"\n    ], \n    \"Bruccoli\": [\n        \"NNP\"\n    ], \n    \"music-loving\": [\n        \"JJ\"\n    ], \n    \"steadiness\": [\n        \"NN\"\n    ], \n    \"Pensive\": [\n        \"JJ\"\n    ], \n    \"Phone\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hawking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"transporters\": [\n        \"NNS\"\n    ], \n    \"chastised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Harlan-Hickory\": [\n        \"NNP\"\n    ], \n    \"Tremblay\": [\n        \"NNP\"\n    ], \n    \"high-positive\": [\n        \"JJ\"\n    ], \n    \"Stadt\": [\n        \"NNP\"\n    ], \n    \"hindquarters\": [\n        \"NNS\"\n    ], \n    \"mannequin\": [\n        \"NN\"\n    ], \n    \"chastises\": [\n        \"VBZ\"\n    ], \n    \"Knights\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"toasting\": [\n        \"VBG\"\n    ], \n    \"Pledge\": [\n        \"NNP\"\n    ], \n    \"affirmative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Innis-Maggiore-Olson\": [\n        \"NNP\"\n    ], \n    \"Push-Pull\": [\n        \"NNP\"\n    ], \n    \"Ciriaco\": [\n        \"NNP\"\n    ], \n    \"Index-linked\": [\n        \"JJ\"\n    ], \n    \"accumulator\": [\n        \"NN\"\n    ], \n    \"Bingaman\": [\n        \"NNP\"\n    ], \n    \"discoveries\": [\n        \"NNS\"\n    ], \n    \"groin\": [\n        \"NN\"\n    ], \n    \"iron-shod\": [\n        \"JJ\"\n    ], \n    \"globalizing\": [\n        \"VBG\"\n    ], \n    \"concerted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"whitewashed\": [\n        \"VBN\"\n    ], \n    \"reverse-surface\": [\n        \"JJ\"\n    ], \n    \"appalls\": [\n        \"VBZ\"\n    ], \n    \"reiteration\": [\n        \"NN\"\n    ], \n    \"ice-free\": [\n        \"JJ\"\n    ], \n    \"loosely-taped\": [\n        \"JJ\"\n    ], \n    \"rhinovirus-receptors\": [\n        \"NNS\"\n    ], \n    \"Fitting\": [\n        \"VBG\"\n    ], \n    \"askew\": [\n        \"RB\"\n    ], \n    \"sheath\": [\n        \"NN\"\n    ], \n    \"Gre.\": [\n        \"NNP\"\n    ], \n    \"upmarket\": [\n        \"JJ\"\n    ], \n    \"publicly-held\": [\n        \"JJ\"\n    ], \n    \"organ-transplant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"concealed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Asch\": [\n        \"NNP\"\n    ], \n    \"buffoon\": [\n        \"NN\"\n    ], \n    \"lengthening\": [\n        \"VBG\"\n    ], \n    \"outbreak\": [\n        \"NN\"\n    ], \n    \"Safer\": [\n        \"NNP\"\n    ], \n    \"now...\": [\n        \":\"\n    ], \n    \"Podolia\": [\n        \"NNP\"\n    ], \n    \"Carmer\": [\n        \"NNP\"\n    ], \n    \"Tribunal\": [\n        \"NNP\"\n    ], \n    \"Grew\": [\n        \"VBD\"\n    ], \n    \"drink\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Prendergast\": [\n        \"NNP\"\n    ], \n    \"cafeterias\": [\n        \"NNS\"\n    ], \n    \"fecundity\": [\n        \"NN\"\n    ], \n    \"Greg\": [\n        \"NNP\"\n    ], \n    \"Midas\": [\n        \"NNP\"\n    ], \n    \"Carmen\": [\n        \"NNP\"\n    ], \n    \"Carmel\": [\n        \"NNP\"\n    ], \n    \"pleasantly\": [\n        \"RB\"\n    ], \n    \"labor-intensive\": [\n        \"JJ\"\n    ], \n    \"fascinate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fully\": [\n        \"RB\"\n    ], \n    \"shacks\": [\n        \"NNS\"\n    ], \n    \"achievement-test\": [\n        \"NN\"\n    ], \n    \"do-good\": [\n        \"JJ\"\n    ], \n    \"fuel-neutral\": [\n        \"JJ\"\n    ], \n    \"tap-tap\": [\n        \"NN\"\n    ], \n    \"golf-ball\": [\n        \"NN\"\n    ], \n    \"Need\": [\n        \"VB\", \n        \"NNP\", \n        \"MD\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Sapporo\": [\n        \"NNP\"\n    ], \n    \"renegotiated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Closer\": [\n        \"RBR\"\n    ], \n    \"reprographic\": [\n        \"JJ\"\n    ], \n    \"immortalized\": [\n        \"VBN\"\n    ], \n    \"Fuming\": [\n        \"VBG\"\n    ], \n    \"fine-point\": [\n        \"JJ\"\n    ], \n    \"Cave\": [\n        \"NNP\"\n    ], \n    \"actress\\\\\": [\n        \"JJ\"\n    ], \n    \"Negroes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Herrin-Murphysboro-West\": [\n        \"NNP\"\n    ], \n    \"Deltacorp\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"outleaped\": [\n        \"VBD\"\n    ], \n    \"Corcoran\": [\n        \"NNP\"\n    ], \n    \"wood-product\": [\n        \"NN\"\n    ], \n    \"housework\": [\n        \"NN\"\n    ], \n    \"clipped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"exempt\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"punchbowl\": [\n        \"NN\"\n    ], \n    \"memorandums\": [\n        \"NNS\"\n    ], \n    \"MISFIRE\": [\n        \"NN\"\n    ], \n    \"Heroic\": [\n        \"NNP\"\n    ], \n    \"multi-media\": [\n        \"NNS\"\n    ], \n    \"know...\": [\n        \":\"\n    ], \n    \"Clemente\": [\n        \"NNP\"\n    ], \n    \"Logsdon\": [\n        \"NNP\"\n    ], \n    \"checking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Capacitors\": [\n        \"NNP\"\n    ], \n    \"cedar\": [\n        \"NN\"\n    ], \n    \"Clements\": [\n        \"NNP\"\n    ], \n    \"humors\": [\n        \"NNS\"\n    ], \n    \"supervise\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"whopping\": [\n        \"JJ\"\n    ], \n    \"airports\": [\n        \"NNS\"\n    ], \n    \"passable\": [\n        \"JJ\"\n    ], \n    \"evildoers\": [\n        \"NNS\"\n    ], \n    \"willow-lined\": [\n        \"JJ\"\n    ], \n    \"redound\": [\n        \"VB\"\n    ], \n    \"Ruys\": [\n        \"NNP\"\n    ], \n    \"shuddered\": [\n        \"VBD\"\n    ], \n    \"philanthropies\": [\n        \"NNS\"\n    ], \n    \"nerves\": [\n        \"NNS\"\n    ], \n    \"Ambroise\": [\n        \"NNP\"\n    ], \n    \"inexperienced\": [\n        \"JJ\"\n    ], \n    \"Arrowhead\": [\n        \"NNP\"\n    ], \n    \"Addition\": [\n        \"NN\"\n    ], \n    \"Ansco\": [\n        \"NNP\"\n    ], \n    \"hypersonic\": [\n        \"JJ\"\n    ], \n    \"uncharacteristic\": [\n        \"JJ\"\n    ], \n    \"algebraically\": [\n        \"RB\"\n    ], \n    \"habits\": [\n        \"NNS\"\n    ], \n    \"pacifistic\": [\n        \"JJ\"\n    ], \n    \"treks\": [\n        \"VBZ\"\n    ], \n    \"crudely\": [\n        \"RB\"\n    ], \n    \"Eugene\": [\n        \"NNP\"\n    ], \n    \"trainman\": [\n        \"NN\"\n    ], \n    \"Cutrere\": [\n        \"NNP\"\n    ], \n    \"cruelest\": [\n        \"JJS\"\n    ], \n    \"bedding\": [\n        \"NN\"\n    ], \n    \"Marcus\": [\n        \"NNP\"\n    ], \n    \"random-access\": [\n        \"JJ\"\n    ], \n    \"Sundor\": [\n        \"NNP\"\n    ], \n    \"blowing\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"NN\"\n    ], \n    \"Solon\": [\n        \"NNP\"\n    ], \n    \"travelogue\": [\n        \"NN\"\n    ], \n    \"out-compete\": [\n        \"VB\"\n    ], \n    \"Aziza\": [\n        \"NNP\"\n    ], \n    \"staccatos\": [\n        \"NNS\"\n    ], \n    \"X-gyro\": [\n        \"NN\"\n    ], \n    \"dollars...\": [\n        \":\"\n    ], \n    \"Solow\": [\n        \"NNP\"\n    ], \n    \"Proefrock\": [\n        \"NNP\"\n    ], \n    \"Alsatians\": [\n        \"NNPS\"\n    ], \n    \"Unveiling\": [\n        \"VBG\"\n    ], \n    \"Foreclosure\": [\n        \"NNP\"\n    ], \n    \"left-justified\": [\n        \"JJ\"\n    ], \n    \"gazing\": [\n        \"VBG\"\n    ], \n    \"whistled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"accusers\": [\n        \"NNS\"\n    ], \n    \"Dependent\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Uh\": [\n        \"UH\", \n        \"IN\"\n    ], \n    \"Dukakises\": [\n        \"NNP\"\n    ], \n    \"Broader\": [\n        \"JJR\"\n    ], \n    \"Erburu\": [\n        \"NNP\"\n    ], \n    \"Harlingen\": [\n        \"NNP\"\n    ], \n    \"poof\": [\n        \"NN\"\n    ], \n    \"Sommer\": [\n        \"NNP\"\n    ], \n    \"stockynges\": [\n        \"NNS\"\n    ], \n    \"software\": [\n        \"NN\"\n    ], \n    \"centrist\": [\n        \"JJ\"\n    ], \n    \"Speakers\": [\n        \"NNS\"\n    ], \n    \"rectify\": [\n        \"VB\"\n    ], \n    \"delenda\": [\n        \"FW\"\n    ], \n    \"longings\": [\n        \"NNS\"\n    ], \n    \"assess\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Labour\": [\n        \"NNP\"\n    ], \n    \"protector\": [\n        \"NN\"\n    ], \n    \"protozoa\": [\n        \"NNS\"\n    ], \n    \"withholding-tax\": [\n        \"JJ\"\n    ], \n    \"larvae\": [\n        \"NNS\"\n    ], \n    \"Frauds\": [\n        \"NNPS\"\n    ], \n    \"Omnibank\": [\n        \"NNP\"\n    ], \n    \"Contrarian\": [\n        \"JJ\"\n    ], \n    \"larval\": [\n        \"JJ\"\n    ], \n    \"Wiener\": [\n        \"NNP\"\n    ], \n    \"impeding\": [\n        \"VBG\"\n    ], \n    \"pool\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"proliferating\": [\n        \"VBG\"\n    ], \n    \"Berbera\": [\n        \"NNP\"\n    ], \n    \"catamaran\": [\n        \"NN\"\n    ], \n    \"insanely\": [\n        \"RB\"\n    ], \n    \"FE\": [\n        \"NNP\"\n    ], \n    \"complacency\": [\n        \"NN\"\n    ], \n    \"Mondrian\": [\n        \"NNP\"\n    ], \n    \"Artistes\": [\n        \"NNP\"\n    ], \n    \"savings-and-loans\": [\n        \"JJ\"\n    ], \n    \"Hutchinson\": [\n        \"NNP\"\n    ], \n    \"shamanistic\": [\n        \"JJ\"\n    ], \n    \"Foresight\": [\n        \"NN\"\n    ], \n    \"lowered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Reggie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rectum\": [\n        \"NN\"\n    ], \n    \"Outcome\": [\n        \"NN\"\n    ], \n    \"Chelsea\": [\n        \"NNP\"\n    ], \n    \"disbursement\": [\n        \"NN\"\n    ], \n    \"compute\": [\n        \"VB\"\n    ], \n    \"campus\": [\n        \"NN\"\n    ], \n    \"multinational\": [\n        \"JJ\"\n    ], \n    \"gravitational\": [\n        \"JJ\"\n    ], \n    \"imbalances\": [\n        \"NNS\"\n    ], \n    \"J.Y.\": [\n        \"NNP\"\n    ], \n    \"one-family\": [\n        \"JJ\"\n    ], \n    \"Leverkuhn\": [\n        \"NNP\"\n    ], \n    \"tertian\": [\n        \"JJ\"\n    ], \n    \"appraise\": [\n        \"VB\"\n    ], \n    \"undecideds\": [\n        \"NNS\"\n    ], \n    \"sirloin\": [\n        \"NN\"\n    ], \n    \"Karen\": [\n        \"NNP\"\n    ], \n    \"contribute\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"availabilities\": [\n        \"NNS\"\n    ], \n    \"sibling\": [\n        \"NN\"\n    ], \n    \"unsavory\": [\n        \"JJ\"\n    ], \n    \"Scrapiron\": [\n        \"NNP\"\n    ], \n    \"preschooler\": [\n        \"NN\"\n    ], \n    \"programmer\": [\n        \"NN\"\n    ], \n    \"r-Revised\": [\n        \"VBN\", \n        \"VB\"\n    ], \n    \"readjustments\": [\n        \"NNS\"\n    ], \n    \"Bearden\": [\n        \"NNP\"\n    ], \n    \"Utah\": [\n        \"NNP\"\n    ], \n    \"Yesterday\": [\n        \"NN\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"scholarly\": [\n        \"JJ\"\n    ], \n    \"proto-Yokuts\": [\n        \"NNS\"\n    ], \n    \"Janachowski\": [\n        \"NNP\"\n    ], \n    \"test-practice\": [\n        \"JJ\"\n    ], \n    \"predominant\": [\n        \"JJ\"\n    ], \n    \"Pompadour\": [\n        \"NNP\"\n    ], \n    \"reckless\": [\n        \"JJ\"\n    ], \n    \"jumbos\": [\n        \"NNS\"\n    ], \n    \"Geraghtys\": [\n        \"NNPS\"\n    ], \n    \"Acquiring\": [\n        \"VBG\"\n    ], \n    \"Vitus\": [\n        \"NNP\"\n    ], \n    \"Shokubai\": [\n        \"NNP\"\n    ], \n    \"Middle-class\": [\n        \"JJ\"\n    ], \n    \"vignette\": [\n        \"NN\"\n    ], \n    \"townsmen\": [\n        \"NNS\"\n    ], \n    \"veil\": [\n        \"NN\"\n    ], \n    \"six-year-old\": [\n        \"JJ\"\n    ], \n    \"draperies\": [\n        \"NNS\"\n    ], \n    \"OCN-PPL\": [\n        \"NNP\"\n    ], \n    \"SRS\": [\n        \"NNP\"\n    ], \n    \"misnomer\": [\n        \"NN\"\n    ], \n    \"amahs\": [\n        \"NNS\"\n    ], \n    \"influenza-pneumonia\": [\n        \"JJ\"\n    ], \n    \"hedges\": [\n        \"NNS\"\n    ], \n    \"Isuzu\": [\n        \"NNP\"\n    ], \n    \"silica\": [\n        \"NN\"\n    ], \n    \"rep\": [\n        \"NN\"\n    ], \n    \"ticketed\": [\n        \"VBN\"\n    ], \n    \"Constantinos\": [\n        \"NNP\"\n    ], \n    \"philantrophy\": [\n        \"NN\"\n    ], \n    \"Barber-Greene\": [\n        \"NNP\"\n    ], \n    \"domponents\": [\n        \"NNS\"\n    ], \n    \"mid-size\": [\n        \"JJ\"\n    ], \n    \"By-the-Sea\": [\n        \"NNP\"\n    ], \n    \"controversial\": [\n        \"JJ\"\n    ], \n    \"superefficient\": [\n        \"JJ\"\n    ], \n    \"defraud\": [\n        \"VB\"\n    ], \n    \"Madelon\": [\n        \"NNP\"\n    ], \n    \"Vince\": [\n        \"NNP\"\n    ], \n    \"obsoleting\": [\n        \"VBG\"\n    ], \n    \"bike\": [\n        \"NN\"\n    ], \n    \"Buy-out\": [\n        \"NN\"\n    ], \n    \"daze\": [\n        \"NN\"\n    ], \n    \"Shirley\": [\n        \"NNP\"\n    ], \n    \"Ovcharenko\": [\n        \"NNP\"\n    ], \n    \"Patriarca\": [\n        \"NNP\"\n    ], \n    \"Rakestraw\": [\n        \"NNP\"\n    ], \n    \"Patriarch\": [\n        \"NNP\"\n    ], \n    \"begrudge\": [\n        \"VB\"\n    ], \n    \"expectable\": [\n        \"JJ\"\n    ], \n    \"wholeness\": [\n        \"NN\"\n    ], \n    \"used-car\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tagging\": [\n        \"VBG\"\n    ], \n    \"manes\": [\n        \"NNS\"\n    ], \n    \"Hefter\": [\n        \"NNP\"\n    ], \n    \"leaseback\": [\n        \"NN\"\n    ], \n    \"pique\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"semi-nude\": [\n        \"JJ\"\n    ], \n    \"pro-Europe\": [\n        \"JJ\"\n    ], \n    \"HIV\\\\\": [\n        \"NNP\"\n    ], \n    \"chest-back-shoulder\": [\n        \"JJ\"\n    ], \n    \"Kinsey\": [\n        \"NNP\"\n    ], \n    \"triumph\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"fliers\": [\n        \"NNS\"\n    ], \n    \"monotonous\": [\n        \"JJ\"\n    ], \n    \"bubbling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"midsummer\": [\n        \"NN\"\n    ], \n    \"ice-filled\": [\n        \"JJ\"\n    ], \n    \"subaltern\": [\n        \"NN\"\n    ], \n    \"long-standing\": [\n        \"JJ\"\n    ], \n    \"Available\": [\n        \"JJ\"\n    ], \n    \"meekly\": [\n        \"RB\"\n    ], \n    \"Culture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"P.L.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kawasaki-Rikuso\": [\n        \"NNP\"\n    ], \n    \"revolutionize\": [\n        \"VB\"\n    ], \n    \"meetin\": [\n        \"NN\"\n    ], \n    \"no-tax-increase\": [\n        \"JJ\"\n    ], \n    \"Sonata\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"frank\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Downstairs\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Bourgeois\": [\n        \"NNP\"\n    ], \n    \"festive\": [\n        \"JJ\"\n    ], \n    \"revels\": [\n        \"NNS\"\n    ], \n    \"plastic-timber\": [\n        \"NN\"\n    ], \n    \"Stinnett\": [\n        \"NNP\"\n    ], \n    \"kindred\": [\n        \"JJ\"\n    ], \n    \"conglomerate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hassenfeld\": [\n        \"NNP\"\n    ], \n    \"flower-inscribed\": [\n        \"JJ\"\n    ], \n    \"watchers\": [\n        \"NNS\"\n    ], \n    \"daughter\": [\n        \"NN\"\n    ], \n    \"Constellation\": [\n        \"NNP\"\n    ], \n    \"five-and-a-half\": [\n        \"NN\"\n    ], \n    \"plain-spoken\": [\n        \"JJ\"\n    ], \n    \"absorbency\": [\n        \"NN\"\n    ], \n    \"unhelpful\": [\n        \"JJ\"\n    ], \n    \"F.A.\": [\n        \"NNP\"\n    ], \n    \"Unveiled\": [\n        \"VBN\"\n    ], \n    \"browsing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Novalta\": [\n        \"NNP\"\n    ], \n    \"Winch\": [\n        \"NNP\"\n    ], \n    \"envious\": [\n        \"JJ\"\n    ], \n    \"stripped-down\": [\n        \"JJ\"\n    ], \n    \"demythologization\": [\n        \"NN\"\n    ], \n    \"Connery\": [\n        \"NNP\"\n    ], \n    \"one-shot\": [\n        \"JJ\"\n    ], \n    \"infield\": [\n        \"NN\"\n    ], \n    \"eyeful\": [\n        \"NN\"\n    ], \n    \"hindsight\": [\n        \"NN\"\n    ], \n    \"pre-nuptial\": [\n        \"JJ\"\n    ], \n    \"rancho\": [\n        \"NN\"\n    ], \n    \"estancia\": [\n        \"NN\"\n    ], \n    \"Reporter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"alligator\": [\n        \"NN\"\n    ], \n    \"likelihood\": [\n        \"NN\"\n    ], \n    \"motivate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"negative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"voice-altering\": [\n        \"JJ\"\n    ], \n    \"mightiest\": [\n        \"JJS\"\n    ], \n    \"Pflaum\": [\n        \"NNP\"\n    ], \n    \"toneless\": [\n        \"JJ\"\n    ], \n    \"memoranda\": [\n        \"NNS\"\n    ], \n    \"Pezza\": [\n        \"NNP\"\n    ], \n    \"sociopath\": [\n        \"NN\"\n    ], \n    \"Hamiltonian\": [\n        \"JJ\"\n    ], \n    \"GOODY\": [\n        \"NNP\"\n    ], \n    \"infusion\": [\n        \"NN\"\n    ], \n    \"award\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Teams\": [\n        \"NNS\"\n    ], \n    \"Golenbock\": [\n        \"NNP\"\n    ], \n    \"intratissue\": [\n        \"NN\"\n    ], \n    \"ever-swelling\": [\n        \"JJ\"\n    ], \n    \"Geldermann\": [\n        \"NNP\"\n    ], \n    \"compatability\": [\n        \"NN\"\n    ], \n    \"characterize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"torquer\": [\n        \"NN\"\n    ], \n    \"Molard\": [\n        \"NNP\"\n    ], \n    \"theories\": [\n        \"NNS\"\n    ], \n    \"custom-design\": [\n        \"JJ\"\n    ], \n    \"oxide\": [\n        \"NN\"\n    ], \n    \"Walsh\": [\n        \"NNP\"\n    ], \n    \"Chorrillos\": [\n        \"NNP\"\n    ], \n    \"transparency\": [\n        \"NN\"\n    ], \n    \"workstations\": [\n        \"NNS\"\n    ], \n    \"BEARS\": [\n        \"NNP\"\n    ], \n    \"Bruns\": [\n        \"NNP\"\n    ], \n    \"Sealey\": [\n        \"NNP\"\n    ], \n    \"grandees\": [\n        \"NNS\"\n    ], \n    \"Brunk\": [\n        \"NNP\"\n    ], \n    \"Bruno\": [\n        \"NNP\"\n    ], \n    \"Sealed\": [\n        \"NNP\"\n    ], \n    \"Dollar-Britten\": [\n        \"NNP\"\n    ], \n    \"hatted\": [\n        \"VBN\"\n    ], \n    \"Passat\": [\n        \"NNP\"\n    ], \n    \"validated\": [\n        \"VBN\"\n    ], \n    \"substance-abusing\": [\n        \"JJ\"\n    ], \n    \"acrobatic\": [\n        \"JJ\"\n    ], \n    \"Welsh\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"agony\": [\n        \"NN\"\n    ], \n    \"Leger\": [\n        \"NNP\"\n    ], \n    \"one-liners\": [\n        \"NNS\"\n    ], \n    \"hitman\": [\n        \"NN\"\n    ], \n    \"Pru-Bache\": [\n        \"NNP\"\n    ], \n    \"rookie\": [\n        \"NN\"\n    ], \n    \"interview\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"types\": [\n        \"NNS\"\n    ], \n    \"beach\": [\n        \"NN\"\n    ], \n    \"Gilts\": [\n        \"NNS\"\n    ], \n    \"cherubs\": [\n        \"NNS\"\n    ], \n    \"Aliah\": [\n        \"NNP\"\n    ], \n    \"Nikkhah\": [\n        \"NNP\"\n    ], \n    \"melt-textured\": [\n        \"JJ\"\n    ], \n    \"castle-like\": [\n        \"JJ\"\n    ], \n    \"Grgich\": [\n        \"NNP\"\n    ], \n    \"Place-names\": [\n        \"NNS\"\n    ], \n    \"midlands\": [\n        \"NNS\"\n    ], \n    \"strategists\": [\n        \"NNS\"\n    ], \n    \"witching\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ex-wife\": [\n        \"NN\"\n    ], \n    \"Lifestyles\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"IV-drug-free\": [\n        \"JJ\"\n    ], \n    \"line-driven\": [\n        \"NN\"\n    ], \n    \"hasty\": [\n        \"JJ\"\n    ], \n    \"government-managed\": [\n        \"JJ\"\n    ], \n    \"retort\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"red-blood\": [\n        \"JJ\"\n    ], \n    \"haste\": [\n        \"NN\"\n    ], \n    \"water-purity\": [\n        \"NN\"\n    ], \n    \"extirpating\": [\n        \"VBG\"\n    ], \n    \"warchest\": [\n        \"NN\"\n    ], \n    \"Hustler\": [\n        \"NN\"\n    ], \n    \"arterial\": [\n        \"JJ\"\n    ], \n    \"modesty\": [\n        \"NN\"\n    ], \n    \"infested\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"decide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Walbrecher\": [\n        \"NNP\"\n    ], \n    \"Colonial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Vons\": [\n        \"NNPS\"\n    ], \n    \"Regatta\": [\n        \"NNP\"\n    ], \n    \"Meister\": [\n        \"NNP\"\n    ], \n    \"Tips\": [\n        \"NNP\"\n    ], \n    \"bombing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"appeasement\": [\n        \"NN\"\n    ], \n    \"pencil-pusher\": [\n        \"NN\"\n    ], \n    \"highlights\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"avocado\": [\n        \"NN\"\n    ], \n    \"ex-smokers\": [\n        \"NNS\"\n    ], \n    \"awfulness\": [\n        \"NN\"\n    ], \n    \"Velasquez\": [\n        \"NNP\"\n    ], \n    \"workable\": [\n        \"JJ\"\n    ], \n    \"bespeak\": [\n        \"VBP\"\n    ], \n    \"metals-stock\": [\n        \"NN\"\n    ], \n    \"Fairview\": [\n        \"NNP\"\n    ], \n    \"versus\": [\n        \"IN\", \n        \"CC\", \n        \"FW\"\n    ], \n    \"stabilities\": [\n        \"NNS\"\n    ], \n    \"woken\": [\n        \"VBN\"\n    ], \n    \"reagent\": [\n        \"NN\"\n    ], \n    \"mid-50s\": [\n        \"NNS\"\n    ], \n    \"exhaled\": [\n        \"VBD\"\n    ], \n    \"fresh-ground\": [\n        \"JJ\"\n    ], \n    \"affianced\": [\n        \"VBN\"\n    ], \n    \"rocky\": [\n        \"JJ\"\n    ], \n    \"tampering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Librarians\": [\n        \"NNS\"\n    ], \n    \"five-days-a-week\": [\n        \"JJ\"\n    ], \n    \"absolve\": [\n        \"VBP\"\n    ], \n    \"rocks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"artifical\": [\n        \"JJ\"\n    ], \n    \"four-fold\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"cornbread\": [\n        \"NN\"\n    ], \n    \"Af-inch\": [\n        \"JJ\"\n    ], \n    \"lifted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"schemes\": [\n        \"NNS\"\n    ], \n    \"kneels\": [\n        \"VBZ\"\n    ], \n    \"pro-NATO\": [\n        \"JJ\"\n    ], \n    \"Confess\": [\n        \"VB\"\n    ], \n    \"Stelzer\": [\n        \"NNP\"\n    ], \n    \"Antoine\": [\n        \"NNP\"\n    ], \n    \"tultul\": [\n        \"FW\"\n    ], \n    \"accompnaying\": [\n        \"VBG\"\n    ], \n    \"Konikow\": [\n        \"NNP\"\n    ], \n    \"ratepayers\": [\n        \"NNS\"\n    ], \n    \"transcends\": [\n        \"VBZ\"\n    ], \n    \"motorized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Crucians\": [\n        \"NNPS\"\n    ], \n    \"prohibitions\": [\n        \"NNS\"\n    ], \n    \"jiving\": [\n        \"VBG\"\n    ], \n    \"disloyalty\": [\n        \"NN\"\n    ], \n    \"non-liquid\": [\n        \"JJ\"\n    ], \n    \"attested\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tredici\": [\n        \"NNP\"\n    ], \n    \"market-stabilizing\": [\n        \"JJ\"\n    ], \n    \"dishwashers\": [\n        \"NNS\"\n    ], \n    \"veto\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tomkins\": [\n        \"NNP\"\n    ], \n    \"Sirowitz\": [\n        \"NNP\"\n    ], \n    \"Havisham\": [\n        \"NNP\"\n    ], \n    \"mourning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"campaigns\": [\n        \"NNS\"\n    ], \n    \"LIES\": [\n        \"VBZ\"\n    ], \n    \"V-1\": [\n        \"NNP\"\n    ], \n    \"pro-democracy\": [\n        \"JJ\"\n    ], \n    \"collation\": [\n        \"NN\"\n    ], \n    \"no-valued\": [\n        \"JJ\"\n    ], \n    \"Yasuo\": [\n        \"NNP\"\n    ], \n    \"Kageyama\": [\n        \"NNP\"\n    ], \n    \"fishing\\\\\": [\n        \"JJ\"\n    ], \n    \"volatile\": [\n        \"JJ\"\n    ], \n    \"buys\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"created\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"September\": [\n        \"NNP\"\n    ], \n    \"Torah\": [\n        \"NNP\"\n    ], \n    \"creates\": [\n        \"VBZ\"\n    ], \n    \"newdrug\": [\n        \"NN\"\n    ], \n    \"regress\": [\n        \"VB\"\n    ], \n    \"Contrary\": [\n        \"JJ\"\n    ], \n    \"Oji\": [\n        \"NNP\"\n    ], \n    \"Bridges\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Padovan\": [\n        \"NNP\"\n    ], \n    \"vulgar\": [\n        \"JJ\"\n    ], \n    \"daunting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Gamecock\": [\n        \"NNP\"\n    ], \n    \"Bridget\": [\n        \"NNP\"\n    ], \n    \"pots\": [\n        \"NNS\"\n    ], \n    \"Ackerman\": [\n        \"NNP\"\n    ], \n    \"Bauer-Ecsy\": [\n        \"NNP\"\n    ], \n    \"sparse\": [\n        \"JJ\"\n    ], \n    \"Gen.\": [\n        \"NNP\"\n    ], \n    \"guzzle\": [\n        \"VB\"\n    ], \n    \"securities-fraud\": [\n        \"NN\"\n    ], \n    \"thick\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"recapitalization\": [\n        \"NN\"\n    ], \n    \"mid-19th\": [\n        \"JJ\"\n    ], \n    \"four-engined\": [\n        \"JJ\"\n    ], \n    \"Uncle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"observations\": [\n        \"NNS\"\n    ], \n    \"snags\": [\n        \"NNS\"\n    ], \n    \"Selena\": [\n        \"NNP\"\n    ], \n    \"lunatics\": [\n        \"NNS\"\n    ], \n    \"filibuster\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pinpointing\": [\n        \"VBG\"\n    ], \n    \"Ajit\": [\n        \"NNP\"\n    ], \n    \"happily\": [\n        \"RB\"\n    ], \n    \"Texasness\": [\n        \"NN\"\n    ], \n    \"besuboru\": [\n        \"FW\"\n    ], \n    \"haflis\": [\n        \"NNS\"\n    ], \n    \"Chattanooga\": [\n        \"NNP\"\n    ], \n    \"Geno\": [\n        \"NNP\"\n    ], \n    \"factory-outlet\": [\n        \"JJ\"\n    ], \n    \"Koyata\": [\n        \"NNP\"\n    ], \n    \"tabloids\": [\n        \"NNS\"\n    ], \n    \"random-storage\": [\n        \"JJ\"\n    ], \n    \"Gene\": [\n        \"NNP\"\n    ], \n    \"Kurnit\": [\n        \"NNP\"\n    ], \n    \"Penal\": [\n        \"NNP\"\n    ], \n    \"orgasm\": [\n        \"NN\"\n    ], \n    \"scenes\": [\n        \"NNS\"\n    ], \n    \"TUC\": [\n        \"NNP\"\n    ], \n    \"minus\": [\n        \"CC\", \n        \"FW\", \n        \"IN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sayre\": [\n        \"NNP\"\n    ], \n    \"freight-cost\": [\n        \"JJ\"\n    ], \n    \"effectuate\": [\n        \"VB\"\n    ], \n    \"Kisen\": [\n        \"NNP\"\n    ], \n    \"gradualism\": [\n        \"NN\"\n    ], \n    \"dog-eat-dog\": [\n        \"JJ\"\n    ], \n    \"constellations\": [\n        \"NNS\"\n    ], \n    \"gradualist\": [\n        \"NN\"\n    ], \n    \"Hauser\": [\n        \"NNP\"\n    ], \n    \"dabbed\": [\n        \"VBD\"\n    ], \n    \"intifadah\": [\n        \"NN\"\n    ], \n    \"high-minded\": [\n        \"JJ\"\n    ], \n    \"Isao\": [\n        \"NNP\"\n    ], \n    \"quieter\": [\n        \"JJR\"\n    ], \n    \"MacIsaacs\": [\n        \"NNP\"\n    ], \n    \"necktie\": [\n        \"NN\"\n    ], \n    \"laden\": [\n        \"JJ\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"American-Jewish\": [\n        \"JJ\"\n    ], \n    \"hamper\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"light-crude\": [\n        \"NN\"\n    ], \n    \"quieted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Library\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fruit-flavored\": [\n        \"JJ\"\n    ], \n    \"Reinisch\": [\n        \"NNP\"\n    ], \n    \"transmit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"correlating\": [\n        \"VBG\"\n    ], \n    \"tax-credit\": [\n        \"NN\"\n    ], \n    \"writhe\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Frozen\": [\n        \"VBN\"\n    ], \n    \"Computers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bessie\\\\/Harper\": [\n        \"NNP\"\n    ], \n    \"Ryder\": [\n        \"NNP\"\n    ], \n    \"exercised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"anatomy\": [\n        \"NN\"\n    ], \n    \"Korea\": [\n        \"NNP\"\n    ], \n    \"Wenz\": [\n        \"NNP\"\n    ], \n    \"Sieckman\": [\n        \"NNP\"\n    ], \n    \"exercises\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Andrus\": [\n        \"NNP\"\n    ], \n    \"Went\": [\n        \"VBD\"\n    ], \n    \"Atsushi\": [\n        \"NNP\"\n    ], \n    \"duckling\": [\n        \"NN\"\n    ], \n    \"alumni\": [\n        \"NNS\"\n    ], \n    \"Scene\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"voulez\": [\n        \"FW\"\n    ], \n    \"missed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Skaggs\": [\n        \"NNP\"\n    ], \n    \"Egnuss\": [\n        \"NNP\"\n    ], \n    \"profundity\": [\n        \"NN\"\n    ], \n    \"theatrically\": [\n        \"RB\"\n    ], \n    \"Tombigbee\": [\n        \"NNP\"\n    ], \n    \"pre-trading\": [\n        \"JJ\"\n    ], \n    \"Monitor\": [\n        \"NNP\"\n    ], \n    \"Opaque\": [\n        \"JJ\"\n    ], \n    \"doped\": [\n        \"JJ\"\n    ], \n    \"damed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"number-crunchers\": [\n        \"NNS\"\n    ], \n    \"Ralston-Purina\": [\n        \"NNP\"\n    ], \n    \"Ganges\": [\n        \"NNP\"\n    ], \n    \"cherry-flavored\": [\n        \"JJ\"\n    ], \n    \"cogeneration-plant\": [\n        \"NN\"\n    ], \n    \"steadying\": [\n        \"JJ\"\n    ], \n    \"doper\": [\n        \"NN\"\n    ], \n    \"Anna\": [\n        \"NNP\"\n    ], \n    \"European\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"coup-makers\": [\n        \"NNS\"\n    ], \n    \"pant-legs\": [\n        \"NNS\"\n    ], \n    \"whistle-blower\": [\n        \"NN\"\n    ], \n    \"Judsons\": [\n        \"NNPS\"\n    ], \n    \"easy-to-reach\": [\n        \"JJ\"\n    ], \n    \"Security-Connecticut\": [\n        \"NNP\"\n    ], \n    \"deepest\": [\n        \"JJS\"\n    ], \n    \"firebombs\": [\n        \"NNS\"\n    ], \n    \"personality\": [\n        \"NN\"\n    ], \n    \"Fiscal\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"stasis\": [\n        \"NN\"\n    ], \n    \"three-dimensionality\": [\n        \"NN\"\n    ], \n    \"egghead\": [\n        \"NN\"\n    ], \n    \"cardinals\": [\n        \"NNS\"\n    ], \n    \"mEq.\": [\n        \"NN\"\n    ], \n    \"going-private\": [\n        \"JJ\"\n    ], \n    \"gored\": [\n        \"VBN\"\n    ], \n    \"Quick\": [\n        \"NNP\", \n        \"RB\", \n        \"JJ\"\n    ], \n    \"gambler-politician\": [\n        \"NN\"\n    ], \n    \"Bahia\": [\n        \"NNP\"\n    ], \n    \"monologues\": [\n        \"NNS\"\n    ], \n    \"Concertante\": [\n        \"NNP\"\n    ], \n    \"Fife\": [\n        \"NNP\"\n    ], \n    \"winos\": [\n        \"NNS\"\n    ], \n    \"covering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"idioms\": [\n        \"NNS\"\n    ], \n    \"Clinic\": [\n        \"NNP\"\n    ], \n    \"one-hundredth\": [\n        \"NN\"\n    ], \n    \"undrawn\": [\n        \"NN\"\n    ], \n    \"pointers\": [\n        \"NNS\"\n    ], \n    \"Functionally\": [\n        \"RB\"\n    ], \n    \"half-percent\": [\n        \"JJ\"\n    ], \n    \"Luxurious\": [\n        \"JJ\"\n    ], \n    \"uninhabited\": [\n        \"JJ\"\n    ], \n    \"press-forge\": [\n        \"NN\"\n    ], \n    \"w.\": [\n        \"JJ\"\n    ], \n    \"single-A-1\\\\\": [\n        \"NN\"\n    ], \n    \"window-film\": [\n        \"NN\"\n    ], \n    \"Rivals\": [\n        \"NNS\"\n    ], \n    \"Foster\": [\n        \"NNP\"\n    ], \n    \"cattle\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Longhorn\": [\n        \"NNP\"\n    ], \n    \"Hardly\": [\n        \"RB\"\n    ], \n    \"Indonesian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Comprehensive\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"scoffing\": [\n        \"NN\"\n    ], \n    \"Water\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ben-hadad\": [\n        \"NNP\"\n    ], \n    \"cellist\": [\n        \"NN\"\n    ], \n    \"counterattacked\": [\n        \"VBD\"\n    ], \n    \"payout-bylaws\": [\n        \"NNS\"\n    ], \n    \"failings\": [\n        \"NNS\"\n    ], \n    \"warmed-over\": [\n        \"IN\"\n    ], \n    \"ocular\": [\n        \"JJ\"\n    ], \n    \"terms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Inevitably\": [\n        \"RB\"\n    ], \n    \"wo\": [\n        \"MD\"\n    ], \n    \"Gignac\": [\n        \"NNP\"\n    ], \n    \"bioresearch\": [\n        \"NN\"\n    ], \n    \"patty-cake\": [\n        \"JJ\"\n    ], \n    \"sleek-headed\": [\n        \"JJ\"\n    ], \n    \"McFee\": [\n        \"NNP\"\n    ], \n    \"Danilow\": [\n        \"NNP\"\n    ], \n    \"admirals\": [\n        \"NNS\"\n    ], \n    \"Gumbel\\\\/Walt\": [\n        \"NNP\"\n    ], \n    \"convertible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"overestimated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"oomph\": [\n        \"NN\"\n    ], \n    \"electing\": [\n        \"VBG\"\n    ], \n    \"foes\": [\n        \"NNS\"\n    ], \n    \"Chicago-Paris\": [\n        \"NNP\"\n    ], \n    \"Guidelines\": [\n        \"NNS\"\n    ], \n    \"didactic\": [\n        \"JJ\"\n    ], \n    \"Boliou\": [\n        \"NNP\"\n    ], \n    \"brag\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"brad\": [\n        \"NN\"\n    ], \n    \"brah\": [\n        \"FW\"\n    ], \n    \"Cokes\": [\n        \"NNS\"\n    ], \n    \"bran\": [\n        \"NN\"\n    ], \n    \"kronor\": [\n        \"NNS\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"gable\": [\n        \"NN\"\n    ], \n    \"year-end\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"narcosis\": [\n        \"NN\"\n    ], \n    \"fresh-perked\": [\n        \"JJ\"\n    ], \n    \"dawdled\": [\n        \"VBD\"\n    ], \n    \"headlights\": [\n        \"NNS\"\n    ], \n    \"condemned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Kean\": [\n        \"NNP\"\n    ], \n    \"Seemingly\": [\n        \"RB\"\n    ], \n    \"Divertimento\": [\n        \"NNP\"\n    ], \n    \"Cleaning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"appreciation\": [\n        \"NN\"\n    ], \n    \"co-anchor\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"beebread\": [\n        \"NN\"\n    ], \n    \"droplets\": [\n        \"NNS\"\n    ], \n    \"sequence-tagged\": [\n        \"JJ\"\n    ], \n    \"Dream-Torkin\": [\n        \"NNP\"\n    ], \n    \"fest\": [\n        \"NN\", \n        \"JJS\"\n    ], \n    \"scaled-backed\": [\n        \"JJ\"\n    ], \n    \"XYVISION\": [\n        \"NNP\"\n    ], \n    \"deterred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"co-owner\": [\n        \"NN\"\n    ], \n    \"vaccinating\": [\n        \"VBG\"\n    ], \n    \"Percussion\": [\n        \"NNP\"\n    ], \n    \"launcher\": [\n        \"NN\"\n    ], \n    \"launches\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"stubs\": [\n        \"NNS\"\n    ], \n    \"air\": [\n        \"NN\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"aim\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"harrumphing\": [\n        \"NN\"\n    ], \n    \"trumpeted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"aid\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"property\": [\n        \"NN\"\n    ], \n    \"inspired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"launched\": [\n        \"VBN\", \n        \"VBD\", \n        \"VB\"\n    ], \n    \"paeans\": [\n        \"NNS\"\n    ], \n    \"plateful\": [\n        \"JJ\"\n    ], \n    \"Baltasar\": [\n        \"NNP\"\n    ], \n    \"V.O.\": [\n        \"NNP\"\n    ], \n    \"VWR\": [\n        \"NNP\"\n    ], \n    \"electromechanical\": [\n        \"JJ\"\n    ], \n    \"uplift\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"slighting\": [\n        \"VBG\"\n    ], \n    \"Roseanne\": [\n        \"NNP\"\n    ], \n    \"crawlspace\": [\n        \"NN\"\n    ], \n    \"Willcox\": [\n        \"NNP\"\n    ], \n    \"Petitio\": [\n        \"NNP\"\n    ], \n    \"Pratt\": [\n        \"NNP\"\n    ], \n    \"Gerlinger\": [\n        \"NNP\"\n    ], \n    \"air-freight-forwarding\": [\n        \"JJ\"\n    ], \n    \"hierarchies\": [\n        \"NNS\"\n    ], \n    \"lithium\": [\n        \"NN\"\n    ], \n    \"unconcern\": [\n        \"NN\"\n    ], \n    \"Amaral\": [\n        \"NNP\"\n    ], \n    \"palpably\": [\n        \"RB\"\n    ], \n    \"disagreement\": [\n        \"NN\"\n    ], \n    \"noncommercial\": [\n        \"JJ\"\n    ], \n    \"redneck\": [\n        \"NN\"\n    ], \n    \"palpable\": [\n        \"JJ\"\n    ], \n    \"de-emphasize\": [\n        \"VB\"\n    ], \n    \"commodity-price\": [\n        \"JJ\"\n    ], \n    \"prescribed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Addressing\": [\n        \"VBG\"\n    ], \n    \"diagramming\": [\n        \"VBG\"\n    ], \n    \"actinometer\": [\n        \"NN\"\n    ], \n    \"episodic\": [\n        \"JJ\"\n    ], \n    \"director-general\": [\n        \"NN\"\n    ], \n    \"peacocks\": [\n        \"NNS\"\n    ], \n    \"Charlestonians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"television-related\": [\n        \"JJ\"\n    ], \n    \"Wartzman\": [\n        \"NNP\"\n    ], \n    \"contact\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"prescribes\": [\n        \"VBZ\"\n    ], \n    \"droppers\": [\n        \"NNS\"\n    ], \n    \"analyzable\": [\n        \"JJ\"\n    ], \n    \"white-coated\": [\n        \"JJ\"\n    ], \n    \"Swank\": [\n        \"NNP\"\n    ], \n    \"Picchi\": [\n        \"NNP\"\n    ], \n    \"kale\": [\n        \"NN\"\n    ], \n    \"Parkland\": [\n        \"NNP\"\n    ], \n    \"kali\": [\n        \"FW\"\n    ], \n    \"anti-social\": [\n        \"JJ\"\n    ], \n    \"Editors\": [\n        \"NNS\"\n    ], \n    \"nondrying\": [\n        \"JJ\"\n    ], \n    \"bandied\": [\n        \"VBN\"\n    ], \n    \"new-spilled\": [\n        \"JJ\"\n    ], \n    \"cervix\": [\n        \"NN\"\n    ], \n    \"eying\": [\n        \"VBG\"\n    ], \n    \"tyrannize\": [\n        \"VB\"\n    ], \n    \"re-activate\": [\n        \"VB\"\n    ], \n    \"board\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"marginal\": [\n        \"JJ\"\n    ], \n    \"Thornburgh\": [\n        \"NNP\"\n    ], \n    \"expelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"progressed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"retread\": [\n        \"NN\"\n    ], \n    \"KODAK\": [\n        \"NNP\"\n    ], \n    \"Try\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Thomson-CSF\": [\n        \"NNP\"\n    ], \n    \"vies\": [\n        \"VBZ\"\n    ], \n    \"unification\": [\n        \"NN\"\n    ], \n    \"cosmical\": [\n        \"JJ\"\n    ], \n    \"progresses\": [\n        \"VBZ\"\n    ], \n    \"non-employee\": [\n        \"JJ\"\n    ], \n    \"operatorship\": [\n        \"NN\"\n    ], \n    \"Lizt\": [\n        \"NNP\"\n    ], \n    \"Arpege\": [\n        \"NNP\"\n    ], \n    \"bogeys\": [\n        \"NNS\"\n    ], \n    \"super-regional\": [\n        \"JJ\"\n    ], \n    \"Liza\": [\n        \"NNP\"\n    ], \n    \"oil-driller\": [\n        \"NN\"\n    ], \n    \"self-portraits\": [\n        \"NNS\"\n    ], \n    \"reinterpreting\": [\n        \"VBG\"\n    ], \n    \"augur\": [\n        \"VBP\"\n    ], \n    \"hard-hitting\": [\n        \"JJ\"\n    ], \n    \"Naperville\": [\n        \"NNP\"\n    ], \n    \"non-party\": [\n        \"JJ\"\n    ], \n    \"honored\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"honoree\": [\n        \"NN\"\n    ], \n    \"lashes\": [\n        \"NNS\"\n    ], \n    \"Cirona\": [\n        \"NNP\"\n    ], \n    \"Sunbird\": [\n        \"NNP\"\n    ], \n    \"tapis\": [\n        \"NN\"\n    ], \n    \"eyeing\": [\n        \"VBG\"\n    ], \n    \"lashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Sheraton\": [\n        \"NNP\"\n    ], \n    \"treasurers\": [\n        \"NNS\"\n    ], \n    \"somersaulting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ear-Muffs\": [\n        \"NNPS\"\n    ], \n    \"Boltz\": [\n        \"NNP\"\n    ], \n    \"/\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mulls\": [\n        \"VBZ\"\n    ], \n    \"nuzzled\": [\n        \"VBD\"\n    ], \n    \"Jupiter-bound\": [\n        \"JJ\"\n    ], \n    \"Judea\": [\n        \"NNP\"\n    ], \n    \"beating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"haberdasheries\": [\n        \"NNS\"\n    ], \n    \"JYJ\": [\n        \"NN|SYM\"\n    ], \n    \"Medgyessy\": [\n        \"NNP\"\n    ], \n    \"Micronics\": [\n        \"NNP\"\n    ], \n    \"cash-strapped\": [\n        \"JJ\"\n    ], \n    \"home-grown\": [\n        \"JJ\"\n    ], \n    \"Ebasco\": [\n        \"NNP\"\n    ], \n    \"third-tier\": [\n        \"JJ\"\n    ], \n    \"GM-10s\": [\n        \"NNP\"\n    ], \n    \"budget$\": [\n        \"$\"\n    ], \n    \"constructive\": [\n        \"JJ\"\n    ], \n    \"circonscription\": [\n        \"NN\"\n    ], \n    \"flinching\": [\n        \"VBG\"\n    ], \n    \"Baxter\": [\n        \"NNP\"\n    ], \n    \"callable\": [\n        \"JJ\"\n    ], \n    \"Strickland\": [\n        \"NNP\"\n    ], \n    \"goldbanded\": [\n        \"VBN\"\n    ], \n    \"Chinese-Soviet\": [\n        \"NNP\"\n    ], \n    \"numerator\": [\n        \"NN\"\n    ], \n    \"three-meter-high\": [\n        \"JJ\"\n    ], \n    \"Simba\": [\n        \"NNP\"\n    ], \n    \"hazes\": [\n        \"NNS\"\n    ], \n    \"Popoff\": [\n        \"NNP\"\n    ], \n    \"Dauphine\": [\n        \"NNP\"\n    ], \n    \"digestion\": [\n        \"NN\"\n    ], \n    \"hell-raising\": [\n        \"NN\"\n    ], \n    \"FEARS\": [\n        \"NNS\"\n    ], \n    \"bound\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VBD\"\n    ], \n    \"Hopi\": [\n        \"NNP\"\n    ], \n    \"Tipperary\": [\n        \"NNP\"\n    ], \n    \"Insider\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"non-controlling\": [\n        \"JJ\"\n    ], \n    \"crags\": [\n        \"NNS\"\n    ], \n    \"capped\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Judging\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"croaks\": [\n        \"NNS\"\n    ], \n    \"Sarandon\": [\n        \"NNP\"\n    ], \n    \"mutates\": [\n        \"VBZ\"\n    ], \n    \"divertimento\": [\n        \"JJ\"\n    ], \n    \"Reptilian\": [\n        \"NNP\"\n    ], \n    \"mutated\": [\n        \"VBN\"\n    ], \n    \"Oakhurst\": [\n        \"NNP\"\n    ], \n    \"herdsmen\": [\n        \"NNS\"\n    ], \n    \"tints\": [\n        \"NNS\"\n    ], \n    \"converse\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Minn.-based\": [\n        \"JJ\"\n    ], \n    \"less-established\": [\n        \"JJ\"\n    ], \n    \"Novello\": [\n        \"NNP\"\n    ], \n    \"PRESIDENT\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"restive\": [\n        \"JJ\"\n    ], \n    \"true\": [\n        \"JJ\"\n    ], \n    \"Left\": [\n        \"NNP\", \n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"nationwide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"absent\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Menuhin\": [\n        \"NNP\"\n    ], \n    \"undefeated\": [\n        \"JJ\"\n    ], \n    \"liens\": [\n        \"NNS\"\n    ], \n    \"Alar-style\": [\n        \"JJ\"\n    ], \n    \"Patience\": [\n        \"NN\"\n    ], \n    \"cosec\": [\n        \"NN\"\n    ], \n    \"anew\": [\n        \"RB\"\n    ], \n    \"inquiring\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"medication\": [\n        \"NN\"\n    ], \n    \"Carpeting\": [\n        \"NN\"\n    ], \n    \"lowering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Purvis\": [\n        \"NNP\"\n    ], \n    \"lumped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"warm-red\": [\n        \"JJ\"\n    ], \n    \"self-dramatization\": [\n        \"NN\"\n    ], \n    \"Fieldcrest\": [\n        \"NNP\"\n    ], \n    \"write\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fast-food\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"topped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"porosity\": [\n        \"NN\"\n    ], \n    \"polymyositis\": [\n        \"NN\"\n    ], \n    \"Jolliffe\": [\n        \"NNP\"\n    ], \n    \"topper\": [\n        \"NN\"\n    ], \n    \"frolic\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"quickening\": [\n        \"VBG\"\n    ], \n    \"growth-suppressing\": [\n        \"JJ\"\n    ], \n    \"EXXON\": [\n        \"NNP\"\n    ], \n    \"declassifying\": [\n        \"VBG\"\n    ], \n    \"Isoda\": [\n        \"NNP\"\n    ], \n    \"Daisy-Cadnetix\": [\n        \"NNP\"\n    ], \n    \"notepad\": [\n        \"NN\"\n    ], \n    \"indenture\": [\n        \"NN\"\n    ], \n    \"Koran\": [\n        \"NNP\"\n    ], \n    \"concurrent\": [\n        \"JJ\"\n    ], \n    \"vacuum-formed\": [\n        \"JJ\"\n    ], \n    \"Krohn\": [\n        \"NNP\"\n    ], \n    \"base-price\": [\n        \"NN\"\n    ], \n    \"abridgment\": [\n        \"NN\"\n    ], \n    \"five-and-twenty\": [\n        \"JJ\"\n    ], \n    \"Macksey\": [\n        \"NNP\"\n    ], \n    \"radioactivity\": [\n        \"NN\"\n    ], \n    \"governed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"outlive\": [\n        \"VB\"\n    ], \n    \"collared\": [\n        \"VBN\"\n    ], \n    \"WBAI\": [\n        \"NNP\"\n    ], \n    \"loyal\": [\n        \"JJ\"\n    ], \n    \"rainier\": [\n        \"JJR\"\n    ], \n    \"telephone-network\": [\n        \"JJ\"\n    ], \n    \"erased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"deigned\": [\n        \"VBD\"\n    ], \n    \"Goetz\": [\n        \"NNP\"\n    ], \n    \"quality-conscious\": [\n        \"JJ\"\n    ], \n    \"consul\": [\n        \"NN\"\n    ], \n    \"margined\": [\n        \"VBN\"\n    ], \n    \"unmixed\": [\n        \"VBN\"\n    ], \n    \"Bowenized\": [\n        \"VBN\"\n    ], \n    \"Marsha\": [\n        \"NNP\"\n    ], \n    \"Britches\": [\n        \"NNS\"\n    ], \n    \"adamantly\": [\n        \"RB\"\n    ], \n    \"Cassiopeia\": [\n        \"NNP\"\n    ], \n    \"Yamabe\": [\n        \"NNP\"\n    ], \n    \"Palme\": [\n        \"NNP\"\n    ], \n    \"killings\": [\n        \"NNS\"\n    ], \n    \"Bold\": [\n        \"NNP\"\n    ], \n    \"sacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Beregovoy\": [\n        \"NNP\"\n    ], \n    \"shrinkage\": [\n        \"NN\"\n    ], \n    \"Finis\": [\n        \"NNP\"\n    ], \n    \"Boll\": [\n        \"NNP\"\n    ], \n    \"rhythm\": [\n        \"NN\"\n    ], \n    \"co-presidents\": [\n        \"NNS\"\n    ], \n    \"Fritzie\": [\n        \"NNP\"\n    ], \n    \"decking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"pondered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Gentile\": [\n        \"NNP\"\n    ], \n    \"Eighty-Eight\": [\n        \"NNP\"\n    ], \n    \"non-accrual\": [\n        \"JJ\"\n    ], \n    \"Kodiak\": [\n        \"NNP\"\n    ], \n    \"entries\": [\n        \"NNS\"\n    ], \n    \"non-metallic\": [\n        \"JJ\"\n    ], \n    \"perceived\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Parker\": [\n        \"NNP\"\n    ], \n    \"PUTS\": [\n        \"NNPS\"\n    ], \n    \"Just\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kiddie\": [\n        \"NNP\"\n    ], \n    \"anisotropy\": [\n        \"NN\"\n    ], \n    \"over-ambition\": [\n        \"NN\"\n    ], \n    \"womb-to-tomb\": [\n        \"JJ\"\n    ], \n    \"shuttering\": [\n        \"VBG\"\n    ], \n    \"perceives\": [\n        \"VBZ\"\n    ], \n    \"SR\": [\n        \"NNP\"\n    ], \n    \"prohibiton\": [\n        \"NN\"\n    ], \n    \"woven\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unsubsidized\": [\n        \"JJ\"\n    ], \n    \"three-dimensional\": [\n        \"JJ\"\n    ], \n    \"WoodMac\": [\n        \"NNP\"\n    ], \n    \"paydown\": [\n        \"NN\"\n    ], \n    \"scarcity\": [\n        \"NN\"\n    ], \n    \"Berche\": [\n        \"NNP\"\n    ], \n    \"Bert\": [\n        \"NNP\"\n    ], \n    \"purchasers\": [\n        \"NNS\"\n    ], \n    \"curse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"appear\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Surlyn\": [\n        \"NNP\"\n    ], \n    \"Georgian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"pleasingly\": [\n        \"RB\"\n    ], \n    \"havoc\": [\n        \"NN\"\n    ], \n    \"Berg\": [\n        \"NNP\"\n    ], \n    \"consortia\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Imaging\": [\n        \"NNP\"\n    ], \n    \"pulsating\": [\n        \"VBG\"\n    ], \n    \"Imagine\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"appeal\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"self-preservation\": [\n        \"NN\"\n    ], \n    \"consolidations\": [\n        \"NNS\"\n    ], \n    \"Conspicuous\": [\n        \"JJ\"\n    ], \n    \"Momoyama\": [\n        \"NNP\"\n    ], \n    \"vocalists\": [\n        \"NNS\"\n    ], \n    \"oscillating\": [\n        \"VBG\"\n    ], \n    \"fast-grossing\": [\n        \"JJ\"\n    ], \n    \"astrophysicist\": [\n        \"NN\"\n    ], \n    \"featherbedding\": [\n        \"NN\"\n    ], \n    \"fractious\": [\n        \"JJ\"\n    ], \n    \"Jittery\": [\n        \"JJ\"\n    ], \n    \"suckers\": [\n        \"NNS\"\n    ], \n    \"Jerral\": [\n        \"NNP\"\n    ], \n    \"Deadlock\": [\n        \"NN\"\n    ], \n    \"Sells\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"pesticides.``\": [\n        \"``\"\n    ], \n    \"Alvear\": [\n        \"NNP\"\n    ], \n    \"incoming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Reservoir\": [\n        \"NNP\"\n    ], \n    \"impatiently\": [\n        \"RB\"\n    ], \n    \"SF\": [\n        \"NNP\"\n    ], \n    \"depositions\": [\n        \"NNS\"\n    ], \n    \"pictorial\": [\n        \"JJ\"\n    ], \n    \"Staggeringly\": [\n        \"RB\"\n    ], \n    \"tax-revision\": [\n        \"JJ\"\n    ], \n    \"homecoming\": [\n        \"NN\"\n    ], \n    \"Flav-O-Rich\": [\n        \"NNP\"\n    ], \n    \"penalizes\": [\n        \"VBZ\"\n    ], \n    \"mild-winter\": [\n        \"JJ\"\n    ], \n    \"Murrow\": [\n        \"NNP\"\n    ], \n    \"Amonasro\": [\n        \"NNP\"\n    ], \n    \"outfly\": [\n        \"VB\"\n    ], \n    \"jolts\": [\n        \"NNS\"\n    ], \n    \"stings\": [\n        \"NNS\"\n    ], \n    \"penalized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stingy\": [\n        \"JJ\"\n    ], \n    \"prove\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"beneficence\": [\n        \"NN\"\n    ], \n    \"Legent\": [\n        \"NNP\"\n    ], \n    \"ayatollah\": [\n        \"NN\"\n    ], \n    \"territories\": [\n        \"NNS\"\n    ], \n    \"BSN\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"non-Big\": [\n        \"JJ\"\n    ], \n    \"ca.\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"cuter\": [\n        \"JJR\"\n    ], \n    \"BSB\": [\n        \"NNP\"\n    ], \n    \"anemias\": [\n        \"NNS\"\n    ], \n    \"Pity\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"hesitates\": [\n        \"VBZ\"\n    ], \n    \"commissioner\": [\n        \"NN\"\n    ], \n    \"Pitz\": [\n        \"NNP\"\n    ], \n    \"repentance\": [\n        \"NN\"\n    ], \n    \"symptomatic\": [\n        \"JJ\"\n    ], \n    \"absorptions\": [\n        \"NNS\"\n    ], \n    \"commissioned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hesitated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"containing\": [\n        \"VBG\"\n    ], \n    \"fingered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Air-raid\": [\n        \"JJ\"\n    ], \n    \"Fyodor\": [\n        \"NNP\"\n    ], \n    \"unsung\": [\n        \"JJ\"\n    ], \n    \"rapidly-diminishing\": [\n        \"JJ\"\n    ], \n    \"Lieb\": [\n        \"NNP\"\n    ], \n    \"organizations\": [\n        \"NNS\"\n    ], \n    \"Klute\": [\n        \"NNP\"\n    ], \n    \"Lied\": [\n        \"NNP\"\n    ], \n    \"indescribable\": [\n        \"JJ\"\n    ], \n    \"car\": [\n        \"NN\"\n    ], \n    \"Magnetic\": [\n        \"JJ\"\n    ], \n    \"cap\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lien\": [\n        \"NN\"\n    ], \n    \"abacuses\": [\n        \"NNS\"\n    ], \n    \"undiversified\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"cat\": [\n        \"NN\"\n    ], \n    \"hardest\": [\n        \"JJS\", \n        \"RBS\", \n        \"RB\"\n    ], \n    \"renders\": [\n        \"VBZ\"\n    ], \n    \"can\": [\n        \"MD\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"pepper-coated\": [\n        \"JJ\"\n    ], \n    \"cab\": [\n        \"NN\"\n    ], \n    \"inpost\": [\n        \"NN\"\n    ], \n    \"room-rate\": [\n        \"JJ\"\n    ], \n    \"Hirschfeld\": [\n        \"NNP\"\n    ], \n    \"book-to-bill\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nonpaying\": [\n        \"JJ\"\n    ], \n    \"o\": [\n        \"IN\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"repackaged\": [\n        \"VBN\"\n    ], \n    \"Varigrad\": [\n        \"NNP\"\n    ], \n    \"Actor-Crooner\": [\n        \"NNP\"\n    ], \n    \"clothing\": [\n        \"NN\"\n    ], \n    \"McNichols\": [\n        \"NNP\"\n    ], \n    \"haulers\": [\n        \"NNS\"\n    ], \n    \"unwavering\": [\n        \"VBG\"\n    ], \n    \"Backer\": [\n        \"NNP\"\n    ], \n    \"Bitter\": [\n        \"JJ\"\n    ], \n    \"freezer\": [\n        \"NN\"\n    ], \n    \"freezes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Firemen\": [\n        \"NNS\"\n    ], \n    \"Marshes\": [\n        \"NNP\"\n    ], \n    \"Eaters\": [\n        \"NNS\"\n    ], \n    \"Pericles\": [\n        \"NNP\"\n    ], \n    \"pinch-hitters\": [\n        \"NNS\"\n    ], \n    \"deviated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Matsuo\": [\n        \"NNP\"\n    ], \n    \"backlots\": [\n        \"NNS\"\n    ], \n    \"deviates\": [\n        \"VBZ\"\n    ], \n    \"alternative-operator\": [\n        \"NN\"\n    ], \n    \"Ablard\": [\n        \"NNP\"\n    ], \n    \"Whitfield\": [\n        \"NNP\"\n    ], \n    \"Upstairs\": [\n        \"NN\"\n    ], \n    \"Metropolitan\": [\n        \"NNP\"\n    ], \n    \"Grishaw-Mueller\": [\n        \"NNP\"\n    ], \n    \"priestly\": [\n        \"JJ\"\n    ], \n    \"electrolysis-of-water\": [\n        \"JJ\"\n    ], \n    \"Heeding\": [\n        \"VBG\"\n    ], \n    \"Celnicker\": [\n        \"NNP\"\n    ], \n    \"hightops\": [\n        \"NNS\"\n    ], \n    \"deactivated\": [\n        \"VBN\"\n    ], \n    \"Aichi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Dream-Miss\": [\n        \"NNP\"\n    ], \n    \"WNBC-TV\": [\n        \"NNP\"\n    ], \n    \"deactivates\": [\n        \"VBZ\"\n    ], \n    \"restructurings\": [\n        \"NNS\"\n    ], \n    \"Compress\": [\n        \"VB\"\n    ], \n    \"vicinity\": [\n        \"NN\"\n    ], \n    \"quibs\": [\n        \"NNS\"\n    ], \n    \"E.P.\": [\n        \"NN\"\n    ], \n    \"medical-test\": [\n        \"JJ\"\n    ], \n    \"Rogers\": [\n        \"NNP\"\n    ], \n    \"Fall\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Peralta\": [\n        \"NNP\"\n    ], \n    \"Panzhihua\": [\n        \"NNP\"\n    ], \n    \"tails\": [\n        \"NNS\"\n    ], \n    \"woodchucks\": [\n        \"NNS\"\n    ], \n    \"vigilance\": [\n        \"NN\"\n    ], \n    \"Friar\": [\n        \"NN\"\n    ], \n    \"denominational\": [\n        \"JJ\"\n    ], \n    \"Interfering\": [\n        \"VBG\"\n    ], \n    \"preacher-singer\": [\n        \"NN\"\n    ], \n    \"Phalanx\": [\n        \"NNP\"\n    ], \n    \"lineage\": [\n        \"NN\"\n    ], \n    \"Milt\": [\n        \"NNP\"\n    ], \n    \"intrigues\": [\n        \"NNS\"\n    ], \n    \"chuckled\": [\n        \"VBD\"\n    ], \n    \"scarcer\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"still-commanding\": [\n        \"JJ\"\n    ], \n    \"Bressler\": [\n        \"NNP\"\n    ], \n    \"chuckles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Redford\": [\n        \"NNP\"\n    ], \n    \"intrigued\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Mile\": [\n        \"NNP\"\n    ], \n    \"Mill\": [\n        \"NNP\"\n    ], \n    \"skirmishers\": [\n        \"NNS\"\n    ], \n    \"Milk\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Airmail\": [\n        \"NN\"\n    ], \n    \"back-issue\": [\n        \"JJ\"\n    ], \n    \"sobbingly\": [\n        \"RB\"\n    ], \n    \"Pere\": [\n        \"NNP\"\n    ], \n    \"Perk\": [\n        \"NNP\"\n    ], \n    \"directing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hurried\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"T.H.\": [\n        \"NNP\"\n    ], \n    \"dideoxyinosine\": [\n        \"NN\"\n    ], \n    \"Suzuka\": [\n        \"NNP\"\n    ], \n    \"Peru\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hurries\": [\n        \"VBZ\"\n    ], \n    \"happen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Suzuki\": [\n        \"NNP\"\n    ], \n    \"amusement\": [\n        \"NN\"\n    ], \n    \"Mythical\": [\n        \"JJ\"\n    ], \n    \"irons\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Assess\": [\n        \"VB\"\n    ], \n    \"shadowing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Malaria\": [\n        \"NN\"\n    ], \n    \"wind-velocity\": [\n        \"NN\"\n    ], \n    \"antiwar\": [\n        \"JJ\"\n    ], \n    \"irony\": [\n        \"NN\"\n    ], \n    \"communicating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"worshiped\": [\n        \"VBN\"\n    ], \n    \"Mimieux\": [\n        \"NNP\"\n    ], \n    \"increase\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Threads\": [\n        \"NNS\"\n    ], \n    \"rational\": [\n        \"JJ\"\n    ], \n    \"side-by-side\": [\n        \"RB\"\n    ], \n    \"ruinous\": [\n        \"JJ\"\n    ], \n    \"Conte\": [\n        \"NNP\"\n    ], \n    \"Af.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"punky\": [\n        \"JJ\"\n    ], \n    \"cars\": [\n        \"NNS\"\n    ], \n    \"carp\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"punks\": [\n        \"NNS\"\n    ], \n    \"INTENSIVE\": [\n        \"JJ\"\n    ], \n    \"intruding\": [\n        \"VBG\"\n    ], \n    \"caro\": [\n        \"FW\"\n    ], \n    \"counteracted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ominous\": [\n        \"JJ\"\n    ], \n    \"Belmonts\": [\n        \"NNPS\"\n    ], \n    \"card\": [\n        \"NN\"\n    ], \n    \"care\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"vestige\": [\n        \"NN\"\n    ], \n    \"Gulick\": [\n        \"NNP\"\n    ], \n    \"beautify\": [\n        \"VBP\"\n    ], \n    \"McCurry\": [\n        \"NNP\"\n    ], \n    \"Linker\": [\n        \"NNP\"\n    ], \n    \"billion-a-year\": [\n        \"JJ\"\n    ], \n    \"entrusted\": [\n        \"VBN\"\n    ], \n    \"Partisans\": [\n        \"NNS\"\n    ], \n    \"Linked\": [\n        \"VBN\"\n    ], \n    \"diocs\": [\n        \"NNS\"\n    ], \n    \"low-end\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"high-power\": [\n        \"JJ\"\n    ], \n    \"Bois\": [\n        \"NNP\"\n    ], \n    \"Titche\": [\n        \"NNP\"\n    ], \n    \"indecent\": [\n        \"JJ\"\n    ], \n    \"untrue\": [\n        \"JJ\"\n    ], \n    \"botanist\": [\n        \"NN\"\n    ], \n    \"Templeman\": [\n        \"NNP\"\n    ], \n    \"message\": [\n        \"NN\"\n    ], \n    \"drove\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"creche\": [\n        \"NN\"\n    ], \n    \"truthfully\": [\n        \"RB\"\n    ], \n    \"checked\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"waned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"SU-27\": [\n        \"NN\"\n    ], \n    \"crossings\": [\n        \"NNS\"\n    ], \n    \"acre-feet\": [\n        \"NN\"\n    ], \n    \"mortgage-insurance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"checker\": [\n        \"NN\"\n    ], \n    \"blackening\": [\n        \"NN\"\n    ], \n    \"undergrads\": [\n        \"NNS\"\n    ], \n    \"triple-checked\": [\n        \"VBD\"\n    ], \n    \"national\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Garratt\": [\n        \"NNP\"\n    ], \n    \"wanes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"dismembered\": [\n        \"VBD\"\n    ], \n    \"nutrition\": [\n        \"NN\"\n    ], \n    \"Segura\": [\n        \"NNP\"\n    ], \n    \"needed...\": [\n        \":\"\n    ], \n    \"asides\": [\n        \"NNS\"\n    ], \n    \"quam\": [\n        \"FW\"\n    ], \n    \"Hobart\": [\n        \"NNP\"\n    ], \n    \"Nairobi\": [\n        \"NNP\"\n    ], \n    \"DataPlan\": [\n        \"NNP\"\n    ], \n    \"television\": [\n        \"NN\"\n    ], \n    \"velveteen\": [\n        \"NN\"\n    ], \n    \"model-year\": [\n        \"JJ\"\n    ], \n    \"bastions\": [\n        \"NNS\"\n    ], \n    \"monopolies\": [\n        \"NNS\"\n    ], \n    \"Starling\": [\n        \"NNP\"\n    ], \n    \"unimpeachable\": [\n        \"JJ\"\n    ], \n    \"profit-oriented\": [\n        \"JJ\"\n    ], \n    \"incepted\": [\n        \"VBD\"\n    ], \n    \"Yasumichi\": [\n        \"NNP\"\n    ], \n    \"respectability\": [\n        \"NN\"\n    ], \n    \"sea-damp\": [\n        \"JJ\"\n    ], \n    \"troublesome\": [\n        \"JJ\"\n    ], \n    \"contentious\": [\n        \"JJ\"\n    ], \n    \"consolidated-pretax\": [\n        \"JJ\"\n    ], \n    \"Locking\": [\n        \"VBG\"\n    ], \n    \"punctually\": [\n        \"RB\"\n    ], \n    \"comfy\": [\n        \"JJ\"\n    ], \n    \"distorted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"fetal-protection\": [\n        \"JJ\"\n    ], \n    \"Trash\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"USIA\": [\n        \"NNP\"\n    ], \n    \"sodomy\": [\n        \"NN\"\n    ], \n    \"undercurrent\": [\n        \"NN\"\n    ], \n    \"Okinawa\": [\n        \"NNP\"\n    ], \n    \"USIS\": [\n        \"NNP\"\n    ], \n    \"charlatanry\": [\n        \"NN\"\n    ], \n    \"deux\": [\n        \"FW\"\n    ], \n    \"Hadson\": [\n        \"NNP\"\n    ], \n    \"Aggie\": [\n        \"NNP\"\n    ], \n    \"uncousinly\": [\n        \"JJ\"\n    ], \n    \"Hillyer\": [\n        \"NNP\"\n    ], \n    \"Mijbil\": [\n        \"NNP\"\n    ], \n    \"price\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"affirmations\": [\n        \"NNS\"\n    ], \n    \"KSAN\": [\n        \"NNP\"\n    ], \n    \"Methyl\": [\n        \"NN\"\n    ], \n    \"rationale\": [\n        \"NN\"\n    ], \n    \"successive\": [\n        \"JJ\"\n    ], \n    \"mullah\": [\n        \"NN\"\n    ], \n    \"]\": [\n        \")\"\n    ], \n    \"Childhood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"SSMC\": [\n        \"NNP\"\n    ], \n    \"forever\": [\n        \"RB\"\n    ], \n    \"Scrabble\": [\n        \"NNP\"\n    ], \n    \"anticorruption\": [\n        \"NN\"\n    ], \n    \"unamended\": [\n        \"JJ\"\n    ], \n    \"duplication\": [\n        \"NN\"\n    ], \n    \"Chromosome\": [\n        \"NN\"\n    ], \n    \"underestimates\": [\n        \"VBZ\"\n    ], \n    \"well-rounded\": [\n        \"JJ\"\n    ], \n    \"thefin\": [\n        \"VBG\"\n    ], \n    \"laureate\": [\n        \"NN\"\n    ], \n    \"rambling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"operagoers\": [\n        \"NNS\"\n    ], \n    \"mains\": [\n        \"NNS\"\n    ], \n    \"U.S.-made\": [\n        \"JJ\"\n    ], \n    \"Alquist\": [\n        \"NNP\"\n    ], \n    \"Hoopla\": [\n        \"NNP\"\n    ], \n    \"Ruhollah\": [\n        \"NNP\"\n    ], \n    \"low-acid\": [\n        \"JJ\"\n    ], \n    \"REITs\": [\n        \"NNS\"\n    ], \n    \"Southwest\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Chautauqua\": [\n        \"NNP\"\n    ], \n    \"Hisao\": [\n        \"NNP\"\n    ], \n    \"saints\": [\n        \"NNS\"\n    ], \n    \"Kiang\": [\n        \"NNP\"\n    ], \n    \"Jacoboski\": [\n        \"NNP\"\n    ], \n    \"deployments\": [\n        \"NNS\"\n    ], \n    \"computer-unit\": [\n        \"JJ\"\n    ], \n    \"inventions\": [\n        \"NNS\"\n    ], \n    \"misquoting\": [\n        \"VBG\"\n    ], \n    \"Banerian\": [\n        \"NNP\"\n    ], \n    \"overwritten\": [\n        \"JJ\"\n    ], \n    \"Angeles-Pasadena\": [\n        \"NNP\"\n    ], \n    \"shepherding\": [\n        \"VBG\"\n    ], \n    \"grossing\": [\n        \"VBG\"\n    ], \n    \"Barring\": [\n        \"VBG\"\n    ], \n    \"peritoneal\": [\n        \"JJ\"\n    ], \n    \"Sidak\": [\n        \"NNP\"\n    ], \n    \"Burnand\": [\n        \"NNP\"\n    ], \n    \"denting\": [\n        \"VBG\"\n    ], \n    \"Haydon\": [\n        \"NNP\"\n    ], \n    \"Capitoline\": [\n        \"NNP\"\n    ], \n    \"unsaleable\": [\n        \"JJ\"\n    ], \n    \"ad-hoc\": [\n        \"JJ\"\n    ], \n    \"long-dominant\": [\n        \"JJ\"\n    ], \n    \"shareholdings\": [\n        \"NNS\"\n    ], \n    \"indeterminable\": [\n        \"JJ\"\n    ], \n    \"crotchety\": [\n        \"JJ\"\n    ], \n    \"effectual\": [\n        \"JJ\"\n    ], \n    \"quickie\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"gleamed\": [\n        \"VBD\"\n    ], \n    \"nonspecifically\": [\n        \"RB\"\n    ], \n    \"physically\": [\n        \"RB\"\n    ], \n    \"equalization\": [\n        \"NN\"\n    ], \n    \"Bankcard\": [\n        \"NNP\"\n    ], \n    \"Hofstra\": [\n        \"NNP\"\n    ], \n    \"asleep\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"CBC\": [\n        \"NNP\"\n    ], \n    \"char-grilled\": [\n        \"JJ\"\n    ], \n    \"Ferment\": [\n        \"NN\"\n    ], \n    \"Catalonians\": [\n        \"NNPS\"\n    ], \n    \"exterminating\": [\n        \"VBG\"\n    ], \n    \"decidely\": [\n        \"RB\"\n    ], \n    \"Legalization\": [\n        \"NN\"\n    ], \n    \"incite\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cellulose\": [\n        \"NN\"\n    ], \n    \"Tons\": [\n        \"NNS\"\n    ], \n    \"Wetter\": [\n        \"NNP\"\n    ], \n    \"Leeds\": [\n        \"NNP\"\n    ], \n    \"Rostagno\": [\n        \"NNP\"\n    ], \n    \"Coordinating\": [\n        \"NNP\"\n    ], \n    \"Heffer\": [\n        \"NNP\"\n    ], \n    \"Golly\": [\n        \"UH\"\n    ], \n    \"sun-burned\": [\n        \"JJ\"\n    ], \n    \"Scenic\": [\n        \"JJ\"\n    ], \n    \"blame\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"sinecures\": [\n        \"NNS\"\n    ], \n    \"Delaunay\": [\n        \"NNP\"\n    ], \n    \"sub-conscious-level\": [\n        \"NN\"\n    ], \n    \"Thaxter\": [\n        \"NNP\"\n    ], \n    \"pertain\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Oh-the-pain-of-it\": [\n        \"UH\"\n    ], \n    \"tie-breaker\": [\n        \"NN\"\n    ], \n    \"Through\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"aura\": [\n        \"NN\"\n    ], \n    \"newfound\": [\n        \"JJ\"\n    ], \n    \"evict\": [\n        \"VB\"\n    ], \n    \"mites\": [\n        \"NNS\"\n    ], \n    \"Jeremy\": [\n        \"NNP\"\n    ], \n    \"diachronic\": [\n        \"JJ\"\n    ], \n    \"Jose\": [\n        \"NNP\"\n    ], \n    \"Pictures\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"deviating\": [\n        \"VBG\"\n    ], \n    \"Flite-King\": [\n        \"JJ\"\n    ], \n    \"ASSOCIATES\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Chinese-inspired\": [\n        \"JJ\"\n    ], \n    \"evangelists\": [\n        \"NNS\"\n    ], \n    \"eight-team\": [\n        \"JJ\"\n    ], \n    \"upper-house\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sportscasters\": [\n        \"NNS\"\n    ], \n    \"McWilliams\": [\n        \"NNP\"\n    ], \n    \"Tylan\": [\n        \"NNP\"\n    ], \n    \"Stick\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Tanks\": [\n        \"NNS\"\n    ], \n    \"prurient\": [\n        \"JJ\"\n    ], \n    \"linguistic\": [\n        \"JJ\"\n    ], \n    \"jerky\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"marrowbones\": [\n        \"NNS\"\n    ], \n    \"Harpener\": [\n        \"NNP\"\n    ], \n    \"confectionary\": [\n        \"JJ\"\n    ], \n    \"Portsmouth\": [\n        \"NNP\"\n    ], \n    \"rubs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ravine\": [\n        \"NNP\"\n    ], \n    \"Pasley\": [\n        \"NNP\"\n    ], \n    \"cigarette-tax\": [\n        \"NN\"\n    ], \n    \"P-E\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"land-ownership\": [\n        \"NN\"\n    ], \n    \"purse-snatchings\": [\n        \"NNS\"\n    ], \n    \"regurgitating\": [\n        \"VBG\"\n    ], \n    \"Schnitz\": [\n        \"NNP\"\n    ], \n    \"pistol-packing\": [\n        \"JJ\"\n    ], \n    \"freely\": [\n        \"RB\"\n    ], \n    \"thrillers\": [\n        \"NNS\"\n    ], \n    \"Manuela\": [\n        \"NNP\"\n    ], \n    \"ein\": [\n        \"FW\"\n    ], \n    \"polymer\": [\n        \"NN\"\n    ], \n    \"Herdman\": [\n        \"NNP\"\n    ], \n    \"alcoholic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"AIW\": [\n        \"NNP\"\n    ], \n    \"health-care\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"AIR\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"AIM\": [\n        \"NNP\"\n    ], \n    \"Hammacks\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"pleads\": [\n        \"VBZ\"\n    ], \n    \"attributed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"achievement\": [\n        \"NN\"\n    ], \n    \"AID\": [\n        \"NNP\"\n    ], \n    \"AIG\": [\n        \"NNP\"\n    ], \n    \"Silberberg\": [\n        \"NNP\"\n    ], \n    \"AIA\": [\n        \"NNP\"\n    ], \n    \"de-iodinating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"farmwives\": [\n        \"NNS\"\n    ], \n    \"quarter-to-quarter\": [\n        \"JJ\"\n    ], \n    \"Sturgess\": [\n        \"NNP\"\n    ], \n    \"halogenated\": [\n        \"VBD\"\n    ], \n    \"Dorrances\": [\n        \"NNPS\"\n    ], \n    \"Conquete\": [\n        \"NNP\"\n    ], \n    \"image-making\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"followers\": [\n        \"NNS\"\n    ], \n    \"Co-cola\": [\n        \"NNP\"\n    ], \n    \"a-la-Aristotle\": [\n        \"NN\"\n    ], \n    \"mouth-watering\": [\n        \"JJ\"\n    ], \n    \"n-dimensional\": [\n        \"JJ\"\n    ], \n    \"petted\": [\n        \"VBN\"\n    ], \n    \"adipic\": [\n        \"JJ\"\n    ], \n    \"Rowswell\": [\n        \"NNP\"\n    ], \n    \"bigoted\": [\n        \"JJ\"\n    ], \n    \"anecdotal\": [\n        \"JJ\"\n    ], \n    \"Beaver\": [\n        \"NNP\"\n    ], \n    \"corpulence\": [\n        \"NN\"\n    ], \n    \"smelt\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"alligators\": [\n        \"NNS\"\n    ], \n    \"Prosopopoeia\": [\n        \"NNP\"\n    ], \n    \"enchanting\": [\n        \"JJ\"\n    ], \n    \"force-rate\": [\n        \"NN\"\n    ], \n    \"Bogota\": [\n        \"NNP\"\n    ], \n    \"truck-maker\": [\n        \"NN\"\n    ], \n    \"Dass\": [\n        \"FW\"\n    ], \n    \"constitutional\": [\n        \"JJ\"\n    ], \n    \"Dash\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rep.\": [\n        \"NNP\"\n    ], \n    \"Heliopolis\": [\n        \"NNP\"\n    ], \n    \"well-fleshed\": [\n        \"JJ\"\n    ], \n    \"calculator-toting\": [\n        \"JJ\"\n    ], \n    \"emergency-medical\": [\n        \"JJ\"\n    ], \n    \"comment\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"GIMMEE\": [\n        \"UH\"\n    ], \n    \"aeration\": [\n        \"NN\"\n    ], \n    \"Barco\": [\n        \"NNP\"\n    ], \n    \"stateroom\": [\n        \"NN\"\n    ], \n    \"valuable\": [\n        \"JJ\"\n    ], \n    \"fleeced\": [\n        \"VBN\"\n    ], \n    \"rule.\": [\n        \"NN\"\n    ], \n    \"unstaring\": [\n        \"VBG\"\n    ], \n    \"WAFA\": [\n        \"NNP\"\n    ], \n    \"administrator-general\": [\n        \"NN\"\n    ], \n    \"Niepce\": [\n        \"NNP\"\n    ], \n    \"temblor-prone\": [\n        \"JJ\"\n    ], \n    \"geographically\": [\n        \"RB\"\n    ], \n    \"Lewinton\": [\n        \"NNP\"\n    ], \n    \"young-skewing\": [\n        \"JJ\"\n    ], \n    \"fussily\": [\n        \"RB\"\n    ], \n    \"warms\": [\n        \"VBZ\"\n    ], \n    \"zany\": [\n        \"JJ\"\n    ], \n    \"Exporters\": [\n        \"NNPS\"\n    ], \n    \"unfold\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"non-clients\": [\n        \"NNS\"\n    ], \n    \"Pietruski\": [\n        \"NNP\"\n    ], \n    \"FAST-FOOD\": [\n        \"NN\"\n    ], \n    \"rules\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ruler\": [\n        \"NN\"\n    ], \n    \"counter-successes\": [\n        \"NNS\"\n    ], \n    \"calendars\": [\n        \"NNS\"\n    ], \n    \"bureaucratization\": [\n        \"NN\"\n    ], \n    \"briefest\": [\n        \"JJS\"\n    ], \n    \"listening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unaccounted\": [\n        \"JJ\"\n    ], \n    \"culprits\": [\n        \"NNS\"\n    ], \n    \"Localism\": [\n        \"NN\"\n    ], \n    \"Toney\": [\n        \"NNP\"\n    ], \n    \"snail-like\": [\n        \"JJ\"\n    ], \n    \"commend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"SiH\": [\n        \"NN\"\n    ], \n    \"conversing\": [\n        \"VBG\"\n    ], \n    \"dislodged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"saleslady\": [\n        \"NN\"\n    ], \n    \"Palmer\": [\n        \"NNP\"\n    ], \n    \"everyone...\": [\n        \":\"\n    ], \n    \"greeting\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Interpore\": [\n        \"NNP\"\n    ], \n    \"oblivion\": [\n        \"NN\"\n    ], \n    \"Nuveen\": [\n        \"NNP\"\n    ], \n    \"Imitation\": [\n        \"NN\"\n    ], \n    \"Seniors\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Thea\": [\n        \"NNP\"\n    ], \n    \"Alfred\": [\n        \"NNP\"\n    ], \n    \"bespectacled\": [\n        \"JJ\"\n    ], \n    \"immovable\": [\n        \"JJ\"\n    ], \n    \"Daytona\": [\n        \"NNP\"\n    ], \n    \"fairs\": [\n        \"NNS\"\n    ], \n    \"post-mortal\": [\n        \"JJ\"\n    ], \n    \"U.S.-China\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"cleanser\": [\n        \"NN\"\n    ], \n    \"Vowing\": [\n        \"VBG\"\n    ], \n    \"Customs\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fullyear\": [\n        \"JJ\"\n    ], \n    \"cleansed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Earl\": [\n        \"NNP\"\n    ], \n    \"pylons\": [\n        \"NNS\"\n    ], \n    \"JUST\": [\n        \"RB\"\n    ], \n    \"Crunch\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"radial\": [\n        \"JJ\"\n    ], \n    \"Schumpeter\": [\n        \"NNP\"\n    ], \n    \"unease\": [\n        \"NN\"\n    ], \n    \"BMP-1\": [\n        \"NN\"\n    ], \n    \"uneasy\": [\n        \"JJ\"\n    ], \n    \"lyriist\": [\n        \"NN\"\n    ], \n    \"Undugu\": [\n        \"NNP\"\n    ], \n    \"reader-friendly\": [\n        \"JJ\"\n    ], \n    \"Earp\": [\n        \"NNP\"\n    ], \n    \"throw\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Ears\": [\n        \"NNS\"\n    ], \n    \"supervises\": [\n        \"VBZ\"\n    ], \n    \"trekked\": [\n        \"VBD\"\n    ], \n    \"previsions\": [\n        \"NNS\"\n    ], \n    \"Guadalcanal\": [\n        \"NNP\"\n    ], \n    \"supervised\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"wold\": [\n        \"MD\"\n    ], \n    \"rate-tightening\": [\n        \"JJ\"\n    ], \n    \"Knowlton\": [\n        \"NNP\"\n    ], \n    \"flashbacks\": [\n        \"NNS\"\n    ], \n    \"statuette\": [\n        \"NN\"\n    ], \n    \"flim-flammery\": [\n        \"NN\"\n    ], \n    \"Parichy-Hamm\": [\n        \"NNP\"\n    ], \n    \"inflation-created\": [\n        \"JJ\"\n    ], \n    \"numerically\": [\n        \"RB\"\n    ], \n    \"skunks\": [\n        \"NNS\"\n    ], \n    \"Jesperson\": [\n        \"NNP\"\n    ], \n    \"earring\": [\n        \"NN\"\n    ], \n    \"law-school\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"male-headed\": [\n        \"JJ\"\n    ], \n    \"Gutenberghus\": [\n        \"NNP\"\n    ], \n    \"table-tennis\": [\n        \"NN\"\n    ], \n    \"removing\": [\n        \"VBG\"\n    ], \n    \"Stabenau\": [\n        \"NNP\"\n    ], \n    \"backbench\": [\n        \"JJ\"\n    ], \n    \"school-research\": [\n        \"JJ\"\n    ], \n    \"nerve-ends\": [\n        \"NNS\"\n    ], \n    \"greying\": [\n        \"VBG\"\n    ], \n    \"exclusiveness\": [\n        \"NN\"\n    ], \n    \"Sewing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"indicators\": [\n        \"NNS\"\n    ], \n    \"Carlin\": [\n        \"NNP\"\n    ], \n    \"Lancia\": [\n        \"NNP\"\n    ], \n    \"Naster\": [\n        \"NNP\"\n    ], \n    \"Strapless\": [\n        \"NNP\"\n    ], \n    \"Cagliari\": [\n        \"NNP\"\n    ], \n    \"P-3\": [\n        \"NN\"\n    ], \n    \"Commitment\": [\n        \"NNP\"\n    ], \n    \"quantitatively\": [\n        \"RB\"\n    ], \n    \"Highways\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\", \n        \"RB\"\n    ], \n    \"ingratitoode\": [\n        \"NN\"\n    ], \n    \"sadness\": [\n        \"NN\"\n    ], \n    \"postures\": [\n        \"NNS\"\n    ], \n    \"pro-ball\": [\n        \"NN\"\n    ], \n    \"C-plane\": [\n        \"NN\"\n    ], \n    \"two-disc\": [\n        \"JJ\"\n    ], \n    \"impersonator\": [\n        \"NN\"\n    ], \n    \"naysayers\": [\n        \"NNS\"\n    ], \n    \"SEEQ\": [\n        \"NNP\"\n    ], \n    \"stiff-backed\": [\n        \"JJ\"\n    ], \n    \"endevor\": [\n        \"NN\"\n    ], \n    \"quandary\": [\n        \"NN\"\n    ], \n    \"reliability\": [\n        \"NN\"\n    ], \n    \"mid-January\": [\n        \"NNP\"\n    ], \n    \"percenter\": [\n        \"NN\"\n    ], \n    \"Fleming\": [\n        \"NNP\"\n    ], \n    \"SEEK\": [\n        \"VB\"\n    ], \n    \"statuses\": [\n        \"NNS\"\n    ], \n    \"Prometrix\": [\n        \"NNP\"\n    ], \n    \"NLRB\": [\n        \"NNP\"\n    ], \n    \"Data-destroying\": [\n        \"JJ\"\n    ], \n    \"Reach\": [\n        \"NNP\"\n    ], \n    \"snuffer\": [\n        \"NN\"\n    ], \n    \"Palladian\": [\n        \"NNP\"\n    ], \n    \"snuffed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"CompuServe\": [\n        \"NNP\"\n    ], \n    \"suites\": [\n        \"NNS\"\n    ], \n    \"paranoiac\": [\n        \"NN\"\n    ], \n    \"esthetic\": [\n        \"JJ\"\n    ], \n    \"Fernando\": [\n        \"NNP\"\n    ], \n    \"computerized\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"Outsville\": [\n        \"NNP\"\n    ], \n    \"suited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cashways\": [\n        \"NNPS\"\n    ], \n    \"CityFed\": [\n        \"NNP\"\n    ], \n    \"redecorating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"airheads\": [\n        \"NNS\"\n    ], \n    \"Paragould\": [\n        \"NNP\"\n    ], \n    \"Pedigree-contemplating\": [\n        \"VBG\"\n    ], \n    \"Fromm\": [\n        \"NNP\"\n    ], \n    \"aminometha\": [\n        \"NN\"\n    ], \n    \"hard-working\": [\n        \"JJ\"\n    ], \n    \"Fancy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"untidy\": [\n        \"JJ\"\n    ], \n    \"Feders\": [\n        \"NNP\"\n    ], \n    \"judgment-proof\": [\n        \"JJ\"\n    ], \n    \"banishment\": [\n        \"NN\"\n    ], \n    \"outlining\": [\n        \"VBG\"\n    ], \n    \"skeleton\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ESPN\": [\n        \"NNP\"\n    ], \n    \"groundwork\": [\n        \"NN\"\n    ], \n    \"Fernand\": [\n        \"NNP\"\n    ], \n    \"neutrino-sized\": [\n        \"JJ\"\n    ], \n    \"income-earner\": [\n        \"NN\"\n    ], \n    \"Brandhorst\": [\n        \"NNP\"\n    ], \n    \"wire-tapping\": [\n        \"NN\"\n    ], \n    \"contortionists\": [\n        \"NNS\"\n    ], \n    \"Chadroe\": [\n        \"NNP\"\n    ], \n    \"refocus\": [\n        \"VB\"\n    ], \n    \"federalize\": [\n        \"VB\"\n    ], \n    \"equate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"interior-furnishings\": [\n        \"NNS\"\n    ], \n    \"ESPs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"passivity\": [\n        \"NN\"\n    ], \n    \"Salk\": [\n        \"NNP\"\n    ], \n    \"Sala\": [\n        \"NNP\"\n    ], \n    \"Compassionately\": [\n        \"RB\"\n    ], \n    \"Sale\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"maladjusted\": [\n        \"JJ\"\n    ], \n    \"Salt\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Tortoises\": [\n        \"NNPS\"\n    ], \n    \"concurring\": [\n        \"VBG\"\n    ], \n    \"isms\": [\n        \"NNS\"\n    ], \n    \"louis\": [\n        \"NNS\"\n    ], \n    \"unfailingly\": [\n        \"RB\"\n    ], \n    \"state-level\": [\n        \"JJ\"\n    ], \n    \"ponderousness\": [\n        \"NN\"\n    ], \n    \"mutterings\": [\n        \"NNS\"\n    ], \n    \"ogling\": [\n        \"VBG\"\n    ], \n    \"Triple-A\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Gulag\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stoecklin\": [\n        \"NNP\"\n    ], \n    \"CAMPAIGN\": [\n        \"NNP\"\n    ], \n    \"colossal\": [\n        \"JJ\"\n    ], \n    \"Grandmother\": [\n        \"NNP\"\n    ], \n    \"Jessey\": [\n        \"NNP\"\n    ], \n    \"overturns\": [\n        \"VBZ\"\n    ], \n    \"Generalized\": [\n        \"NNP\"\n    ], \n    \"keening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"gentler-sloping\": [\n        \"JJ\"\n    ], \n    \"Giurleo\": [\n        \"NNP\"\n    ], \n    \"ecclesiastical\": [\n        \"JJ\"\n    ], \n    \"Singles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Entombment\": [\n        \"NN\"\n    ], \n    \"boardrooms\": [\n        \"NNS\"\n    ], \n    \"line-item-veto\": [\n        \"JJ\"\n    ], \n    \"thickness\": [\n        \"NN\"\n    ], \n    \"him.\": [\n        \"NN\"\n    ], \n    \"laggardness\": [\n        \"NN\"\n    ], \n    \"proselytizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"heavier-than-usual\": [\n        \"JJ\"\n    ], \n    \"Lyneses\": [\n        \"NNP\"\n    ], \n    \"Namib\": [\n        \"NNP\"\n    ], \n    \"Prosecutors\": [\n        \"NNS\"\n    ], \n    \"computer-data-storage\": [\n        \"JJ\"\n    ], \n    \"Staged\": [\n        \"VBN\"\n    ], \n    \"loose\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"RB|RP\"\n    ], \n    \"modify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mendacious\": [\n        \"JJ\"\n    ], \n    \"re-vision\": [\n        \"NN\"\n    ], \n    \"Sniffing\": [\n        \"VBG\"\n    ], \n    \"selective\": [\n        \"JJ\"\n    ], \n    \"Diamond-Star\": [\n        \"NNP\"\n    ], \n    \"Newburyport\": [\n        \"NNP\"\n    ], \n    \"Bendjedid\": [\n        \"NNP\"\n    ], \n    \"unproven\": [\n        \"JJ\"\n    ], \n    \"REAL-ESTATE\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Plouf\": [\n        \"NNP\"\n    ], \n    \"Cougars\": [\n        \"NNPS\"\n    ], \n    \"Korngold\": [\n        \"NNP\"\n    ], \n    \"disassociate\": [\n        \"VB\"\n    ], \n    \"C-minus\": [\n        \"JJ\"\n    ], \n    \"Shimbun\": [\n        \"NNP\"\n    ], \n    \"Shrug\": [\n        \"NN\"\n    ], \n    \"Aeroflot\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"limos\": [\n        \"NNS\"\n    ], \n    \"Ziari\": [\n        \"NNP\"\n    ], \n    \"grindings\": [\n        \"NNS\"\n    ], \n    \"fatsos\": [\n        \"NNS\"\n    ], \n    \"thatches\": [\n        \"NNS\"\n    ], \n    \"straightened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Alvarez\": [\n        \"NNP\"\n    ], \n    \"toys\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lewdness\": [\n        \"NN\"\n    ], \n    \"Nicol\": [\n        \"NNP\"\n    ], \n    \"impaction\": [\n        \"NN\"\n    ], \n    \"read-only\": [\n        \"JJ\"\n    ], \n    \"Explorer\": [\n        \"NNP\"\n    ], \n    \"probabilities\": [\n        \"NNS\"\n    ], \n    \"Cadillac\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Agrippa\": [\n        \"NNP\"\n    ], \n    \"Handyman\": [\n        \"NNP\"\n    ], \n    \"Ghoreyeb\": [\n        \"NNP\"\n    ], \n    \"Australites\": [\n        \"NNS\"\n    ], \n    \"FCC\": [\n        \"NNP\"\n    ], \n    \"favorer\": [\n        \"NN\"\n    ], \n    \"Undoubtedly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"entails\": [\n        \"VBZ\"\n    ], \n    \"Torsten\": [\n        \"NNP\"\n    ], \n    \"turbo\": [\n        \"NN\"\n    ], \n    \"staphylococcus\": [\n        \"NN\"\n    ], \n    \"stylistic\": [\n        \"JJ\"\n    ], \n    \"studio-quality\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kalipharma\": [\n        \"NNP\"\n    ], \n    \"dishwasher\": [\n        \"NN\"\n    ], \n    \"Yukihiro\": [\n        \"NNP\"\n    ], \n    \"captors\": [\n        \"NNS\"\n    ], \n    \"instrumental\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"impulse\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mounted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Yerevan\": [\n        \"NNP\"\n    ], \n    \"Megamarketing\": [\n        \"NN\"\n    ], \n    \"nit-picking\": [\n        \"NN\"\n    ], \n    \"Gerstacker\": [\n        \"NNP\"\n    ], \n    \"Stop-loss\": [\n        \"NN\"\n    ], \n    \"breezes\": [\n        \"NNS\"\n    ], \n    \"pawns\": [\n        \"NNS\"\n    ], \n    \"offended\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"hand-made\": [\n        \"JJ\"\n    ], \n    \"adjudging\": [\n        \"VBG\"\n    ], \n    \"fronted\": [\n        \"VBD\"\n    ], \n    \"Boston\": [\n        \"NNP\"\n    ], \n    \"propounded\": [\n        \"VBD\"\n    ], \n    \"situs\": [\n        \"NN\"\n    ], \n    \"history\": [\n        \"NN\"\n    ], \n    \"Normalize\": [\n        \"VB\"\n    ], \n    \"ions\": [\n        \"NNS\"\n    ], \n    \"decapitalized\": [\n        \"JJ\"\n    ], \n    \"CAR\": [\n        \"NN\"\n    ], \n    \"Chinese-American\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Martinsburg\": [\n        \"NNP\"\n    ], \n    \"northernmost\": [\n        \"JJ\"\n    ], \n    \"archipelago\": [\n        \"NN\"\n    ], \n    \"BACKED\": [\n        \"VBD\"\n    ], \n    \"fundamentalism\": [\n        \"NN\"\n    ], \n    \"bloodless\": [\n        \"JJ\"\n    ], \n    \"CAE\": [\n        \"NNP\"\n    ], \n    \"firmly\": [\n        \"RB\"\n    ], \n    \"tandem-seat\": [\n        \"JJ\"\n    ], \n    \"E.T.C\": [\n        \"NNP\"\n    ], \n    \"dust-up\": [\n        \"NN\"\n    ], \n    \"menus\": [\n        \"NNS\"\n    ], \n    \"multi-gear\": [\n        \"JJ\"\n    ], \n    \"Clerks\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Aldridge\": [\n        \"NNP\"\n    ], \n    \"artist-author\": [\n        \"NN\"\n    ], \n    \"Renault\": [\n        \"NNP\"\n    ], \n    \"Malvenius\": [\n        \"NNP\"\n    ], \n    \"ocher\": [\n        \"NN\"\n    ], \n    \"sneak\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Nickless\": [\n        \"NNP\"\n    ], \n    \"Dogumenti\": [\n        \"FW\"\n    ], \n    \"Dreams\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"gardeners\": [\n        \"NNS\"\n    ], \n    \"invasion\": [\n        \"NN\"\n    ], \n    \"telephoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"custom-make\": [\n        \"VB\"\n    ], \n    \"preferential\": [\n        \"JJ\"\n    ], \n    \"negligibly\": [\n        \"RB\"\n    ], \n    \"Southland\": [\n        \"NNP\"\n    ], \n    \"MAKE\": [\n        \"VB\"\n    ], \n    \"spectra\": [\n        \"NNS\"\n    ], \n    \"spectre\": [\n        \"NN\"\n    ], \n    \"inundations\": [\n        \"NNS\"\n    ], \n    \"Peron\": [\n        \"NNP\"\n    ], \n    \"negligible\": [\n        \"JJ\"\n    ], \n    \"telephones\": [\n        \"NNS\"\n    ], \n    \"deterioration\": [\n        \"NN\"\n    ], \n    \"crafts\": [\n        \"NNS\"\n    ], \n    \"wreaking\": [\n        \"VBG\"\n    ], \n    \"Laurie\": [\n        \"NNP\"\n    ], \n    \"crafty\": [\n        \"JJ\"\n    ], \n    \"orientations\": [\n        \"NNS\"\n    ], \n    \"Jansz.\": [\n        \"NNP\"\n    ], \n    \"help\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"hierarchy\": [\n        \"NN\"\n    ], \n    \"slouch\": [\n        \"NN\"\n    ], \n    \"sooo\": [\n        \"RB\"\n    ], \n    \"soon\": [\n        \"RB\"\n    ], \n    \"IL-2\": [\n        \"NNP\"\n    ], \n    \"held\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"soot\": [\n        \"NN\"\n    ], \n    \"redfish\": [\n        \"NN\"\n    ], \n    \"drooling\": [\n        \"VBG\"\n    ], \n    \"kinetic\": [\n        \"JJ\"\n    ], \n    \"Michilimackinac\": [\n        \"NNP\"\n    ], \n    \"fanning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"skirmishing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"startled-horse\": [\n        \"JJ\"\n    ], \n    \"Sweanor\": [\n        \"NNP\"\n    ], \n    \"Marlborough\": [\n        \"NNP\"\n    ], \n    \"teeming\": [\n        \"VBG\"\n    ], \n    \"watchdogs\": [\n        \"NNS\"\n    ], \n    \"single-class\": [\n        \"JJ\"\n    ], \n    \"Silvershoe\": [\n        \"NNP\"\n    ], \n    \"acculturated\": [\n        \"VBN\"\n    ], \n    \"Frito-Lay\": [\n        \"NNP\"\n    ], \n    \"yj\": [\n        \"NN\"\n    ], \n    \"ym\": [\n        \"NN\"\n    ], \n    \"yl\": [\n        \"NN\"\n    ], \n    \"nondollar\": [\n        \"JJ\"\n    ], \n    \"indefatigable\": [\n        \"JJ\"\n    ], \n    \"yc\": [\n        \"NN\"\n    ], \n    \"yb\": [\n        \"NN\"\n    ], \n    \"ye\": [\n        \"PRP\", \n        \"SYM\", \n        \"NN\"\n    ], \n    \"re-declared\": [\n        \"VBD\"\n    ], \n    \"yg\": [\n        \"NN\"\n    ], \n    \"anticipated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"vomit\": [\n        \"VBP\"\n    ], \n    \"anticipates\": [\n        \"VBZ\"\n    ], \n    \"yp\": [\n        \"NN\"\n    ], \n    \"ys\": [\n        \"VBZ\"\n    ], \n    \"yr\": [\n        \"NN\"\n    ], \n    \"irrationality\": [\n        \"NN\"\n    ], \n    \"yt\": [\n        \"NN\"\n    ], \n    \"drought-shriveled\": [\n        \"JJ\"\n    ], \n    \"Abdul-Raheem\": [\n        \"NNP\"\n    ], \n    \"stopper\": [\n        \"NN\"\n    ], \n    \"erection\": [\n        \"NN\"\n    ], \n    \"Solchaga\": [\n        \"NNP\"\n    ], \n    \"chamfer\": [\n        \"NN\"\n    ], \n    \"Sandia\": [\n        \"NNP\"\n    ], \n    \"ifs\": [\n        \"NNS\"\n    ], \n    \"Culmone\": [\n        \"NNP\"\n    ], \n    \"Ierulli\": [\n        \"NNP\"\n    ], \n    \"malfeasant\": [\n        \"JJ\"\n    ], \n    \"lexicostatistics\": [\n        \"NNS\"\n    ], \n    \"Lippi\": [\n        \"NNP\"\n    ], \n    \"stopped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Council\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sandip\": [\n        \"NNP\"\n    ], \n    \"minstrels\": [\n        \"NNS\"\n    ], \n    \"Battalion\": [\n        \"NNP\"\n    ], \n    \"give-away\": [\n        \"JJ\"\n    ], \n    \"End\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Kennelly\": [\n        \"NNP\"\n    ], \n    \"Eng\": [\n        \"NNP\"\n    ], \n    \"positioned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Acid\": [\n        \"JJ\"\n    ], \n    \"kidnapping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Grenoble\": [\n        \"NNP\"\n    ], \n    \"Cozen\": [\n        \"NNP\"\n    ], \n    \"Swavely\": [\n        \"NNP\"\n    ], \n    \"dominates\": [\n        \"VBZ\"\n    ], \n    \"tinting-film\": [\n        \"NN\"\n    ], \n    \"Antwerp-based\": [\n        \"JJ\"\n    ], \n    \"surrounded\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\"\n    ], \n    \"Hawthorne\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"price-corroding\": [\n        \"JJ\"\n    ], \n    \"trusts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"flattening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Israeli-Palestinian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"intransigents\": [\n        \"NNS\"\n    ], \n    \"preparers\": [\n        \"NNS\"\n    ], \n    \"myocardium\": [\n        \"NN\"\n    ], \n    \"earnings-per-share\": [\n        \"JJ\"\n    ], \n    \"issue\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"like-minded\": [\n        \"JJ\"\n    ], \n    \"WSJ\\\\\": [\n        \"NNP\"\n    ], \n    \"dictatorial\": [\n        \"JJ\"\n    ], \n    \"Clarendon\": [\n        \"NNP\"\n    ], \n    \"Washingtons\": [\n        \"NNPS\"\n    ], \n    \"labs\": [\n        \"NNS\"\n    ], \n    \"Taittinger\": [\n        \"NNP\"\n    ], \n    \"reason\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"equivocating\": [\n        \"NN\"\n    ], \n    \"fortress-like\": [\n        \"JJ\"\n    ], \n    \"launch\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"good-for-you\": [\n        \"JJ\"\n    ], \n    \"persuading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"platter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"blossom\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"POOCH\": [\n        \"NN\"\n    ], \n    \"beggars\": [\n        \"NNS\"\n    ], \n    \"Codifying\": [\n        \"VBG\"\n    ], \n    \"Elsevier\": [\n        \"NNP\"\n    ], \n    \"product-liability\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"beggary\": [\n        \"NN\"\n    ], \n    \"consultations\": [\n        \"NNS\"\n    ], \n    \"presumptions\": [\n        \"NNS\"\n    ], \n    \"Sybase\": [\n        \"NNP\"\n    ], \n    \"space-weapons\": [\n        \"NNS\"\n    ], \n    \"dominating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"croissants\": [\n        \"NNS\"\n    ], \n    \"prohibitively\": [\n        \"RB\"\n    ], \n    \"maple\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"arbitration\": [\n        \"NN\"\n    ], \n    \"stress-related\": [\n        \"JJ\"\n    ], \n    \"Kaulentis\": [\n        \"NNP\"\n    ], \n    \"bum\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"transcendent\": [\n        \"JJ\"\n    ], \n    \"econobox\": [\n        \"NN\"\n    ], \n    \"scheme\": [\n        \"NN\"\n    ], \n    \"banana\": [\n        \"NN\"\n    ], \n    \"schema\": [\n        \"NN\"\n    ], \n    \"Money-fund\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Twenty-seven\": [\n        \"JJ\"\n    ], \n    \"water-ski\": [\n        \"NN\"\n    ], \n    \"Vocal\": [\n        \"NN\"\n    ], \n    \"overdrive\": [\n        \"NN\"\n    ], \n    \"signaling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"sulfuric\": [\n        \"JJ\"\n    ], \n    \"norms\": [\n        \"NNS\"\n    ], \n    \"ulcerated\": [\n        \"JJ\"\n    ], \n    \"supercharger\": [\n        \"NN\"\n    ], \n    \"Guevara\": [\n        \"NNP\"\n    ], \n    \"tunic\": [\n        \"NN\"\n    ], \n    \"uncolored\": [\n        \"JJ\"\n    ], \n    \"ouster\": [\n        \"NN\"\n    ], \n    \"Schuyler\": [\n        \"NNP\"\n    ], \n    \"Seiler\": [\n        \"NNP\"\n    ], \n    \"alluding\": [\n        \"VBG\"\n    ], \n    \"Jeopardize\": [\n        \"VB\"\n    ], \n    \"merciless\": [\n        \"JJ\"\n    ], \n    \"battering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"S.C.\": [\n        \"NNP\"\n    ], \n    \"ousted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"weapon\": [\n        \"NN\"\n    ], \n    \"Deficit\": [\n        \"NNP\"\n    ], \n    \"Parliamentary\": [\n        \"JJ\"\n    ], \n    \"overstaying\": [\n        \"VBG\"\n    ], \n    \"Gon\": [\n        \"VBG\"\n    ], \n    \"Goh\": [\n        \"NNP\"\n    ], \n    \"God\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Gog\": [\n        \"NNP\"\n    ], \n    \"Goa\": [\n        \"NNP\"\n    ], \n    \"Got\": [\n        \"VBD\", \n        \"VBN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"Kalonji\": [\n        \"NNP\"\n    ], \n    \"once-devoted\": [\n        \"JJ\"\n    ], \n    \"sidewise\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"evasion\": [\n        \"NN\"\n    ], \n    \"Approvals\": [\n        \"NNS\"\n    ], \n    \"Demographics\": [\n        \"NNS\"\n    ], \n    \"officers\": [\n        \"NNS\"\n    ], \n    \"cross-purchase\": [\n        \"JJ\"\n    ], \n    \"faultlines\": [\n        \"NNS\"\n    ], \n    \"generics-maker\": [\n        \"NN\"\n    ], \n    \"applauded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Sandler\": [\n        \"NNP\"\n    ], \n    \"experienced\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"English-Scottish-French\": [\n        \"NNP\"\n    ], \n    \"Long-debated\": [\n        \"JJ\"\n    ], \n    \"Magnet\": [\n        \"NNP\"\n    ], \n    \"Slipping\": [\n        \"VBG\"\n    ], \n    \"Massacres\": [\n        \"NNS\"\n    ], \n    \"experiences\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Aboveground\": [\n        \"JJ\"\n    ], \n    \"C.C.B.\": [\n        \"NNP\"\n    ], \n    \"Placements\": [\n        \"NNP\"\n    ], \n    \"Warman\": [\n        \"NNP\"\n    ], \n    \"Sticks\": [\n        \"NNP\"\n    ], \n    \"loopholes\": [\n        \"NNS\"\n    ], \n    \"popularity\": [\n        \"NN\"\n    ], \n    \"unreasonable\": [\n        \"JJ\"\n    ], \n    \"unreasonably\": [\n        \"RB\"\n    ], \n    \"Call-In\": [\n        \"NN\"\n    ], \n    \"latest\": [\n        \"JJS\", \n        \"JJ\"\n    ], \n    \"hips\": [\n        \"NNS\"\n    ], \n    \"boredom\": [\n        \"NN\"\n    ], \n    \"perseverance\": [\n        \"NN\"\n    ], \n    \"Lennox\": [\n        \"NNP\"\n    ], \n    \"Gauleiter\": [\n        \"NNP\"\n    ], \n    \"languid\": [\n        \"JJ\"\n    ], \n    \"bespeaks\": [\n        \"VBZ\"\n    ], \n    \"planeload\": [\n        \"NN\"\n    ], \n    \"ex-Attorney\": [\n        \"NNP\"\n    ], \n    \"scorched\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Ministers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"barbell\": [\n        \"NN\"\n    ], \n    \"flood-control\": [\n        \"JJ\"\n    ], \n    \"social-class\": [\n        \"JJ\"\n    ], \n    \"Lennon\": [\n        \"NNP\"\n    ], \n    \"Mengistu\": [\n        \"NNP\"\n    ], \n    \"debt-ceiling\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"scorcher\": [\n        \"NN\"\n    ], \n    \"HILLS\": [\n        \"NNP\"\n    ], \n    \"psychically-blind\": [\n        \"JJ\"\n    ], \n    \"paranoid\": [\n        \"JJ\"\n    ], \n    \"vibration-control\": [\n        \"JJ\"\n    ], \n    \"assertion\": [\n        \"NN\"\n    ], \n    \"striptease\": [\n        \"NN\"\n    ], \n    \"hardener\": [\n        \"NN\"\n    ], \n    \"doodads\": [\n        \"NNS\"\n    ], \n    \"hardened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Duffy\": [\n        \"NNP\"\n    ], \n    \"Phineas\": [\n        \"NNP\"\n    ], \n    \"legible\": [\n        \"JJ\"\n    ], \n    \"Sorrell\": [\n        \"NNP\"\n    ], \n    \"management-research\": [\n        \"NN\"\n    ], \n    \"trimesters\": [\n        \"NNS\"\n    ], \n    \"outlast\": [\n        \"VB\"\n    ], \n    \"Sangallo\": [\n        \"NNP\"\n    ], \n    \"Hayasaka\": [\n        \"NNP\"\n    ], \n    \"desulfurization\": [\n        \"NN\"\n    ], \n    \"docile\": [\n        \"JJ\"\n    ], \n    \"isolationism\": [\n        \"NN\"\n    ], \n    \"Feldman\": [\n        \"NNP\"\n    ], \n    \"soft-drink\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"event-risk\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"enlargers\": [\n        \"NNS\"\n    ], \n    \"molten\": [\n        \"JJ\"\n    ], \n    \"cyanide-laced\": [\n        \"JJ\"\n    ], \n    \"snake-oil\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"L.H.\": [\n        \"NNP\"\n    ], \n    \"millenium\": [\n        \"NN\"\n    ], \n    \"Powerful\": [\n        \"JJ\"\n    ], \n    \"poisoner\": [\n        \"NN\"\n    ], \n    \"insurance-company\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"state-owned\": [\n        \"JJ\"\n    ], \n    \"Councilman\": [\n        \"NNP\"\n    ], \n    \"miseries\": [\n        \"NNS\"\n    ], \n    \"jury-rigged\": [\n        \"VBD\"\n    ], \n    \"Bricom\": [\n        \"NNP\"\n    ], \n    \"poisoned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"courteous\": [\n        \"JJ\"\n    ], \n    \"adjudicators\": [\n        \"NNS\"\n    ], \n    \"INDEX\": [\n        \"NN\"\n    ], \n    \"Varlaam\": [\n        \"NNP\"\n    ], \n    \"Ackerley\": [\n        \"NNP\"\n    ], \n    \"Tahoe\": [\n        \"NNP\"\n    ], \n    \"disapproving\": [\n        \"JJ\"\n    ], \n    \"linkups\": [\n        \"NNS\"\n    ], \n    \"CHANGED\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pithiest\": [\n        \"JJS\"\n    ], \n    \"wife\\\\/mother\": [\n        \"NN\"\n    ], \n    \"purposeless\": [\n        \"JJ\"\n    ], \n    \"protecting\": [\n        \"VBG\"\n    ], \n    \"Receptech\": [\n        \"NNP\"\n    ], \n    \"big-game\": [\n        \"JJ\"\n    ], \n    \"constellation\": [\n        \"NN\"\n    ], \n    \"Disgruntled\": [\n        \"JJ\"\n    ], \n    \"sixth-biggest\": [\n        \"JJ\"\n    ], \n    \"bifurcate\": [\n        \"VB\"\n    ], \n    \"digitalization\": [\n        \"NN\"\n    ], \n    \"Haestier\": [\n        \"NNP\"\n    ], \n    \"Boltzmann\": [\n        \"NNP\"\n    ], \n    \"Quips\": [\n        \"VBZ\"\n    ], \n    \"Soloviev\": [\n        \"NNP\"\n    ], \n    \"Tehran\": [\n        \"NNP\"\n    ], \n    \"day-long\": [\n        \"JJ\"\n    ], \n    \"opening-hour\": [\n        \"JJ\"\n    ], \n    \"as-yet\": [\n        \"RB\"\n    ], \n    \"Coupal\": [\n        \"NNP\"\n    ], \n    \"invisibly\": [\n        \"RB\"\n    ], \n    \"Departure\": [\n        \"NN\"\n    ], \n    \"Veronis\": [\n        \"NNP\"\n    ], \n    \"rudiments\": [\n        \"NNS\"\n    ], \n    \"pseudo-symmetric\": [\n        \"JJ\"\n    ], \n    \"invisible\": [\n        \"JJ\"\n    ], \n    \"Hohlbein\": [\n        \"NNP\"\n    ], \n    \"ice-core\": [\n        \"NN\"\n    ], \n    \"lookalike\": [\n        \"JJ\"\n    ], \n    \"secrets\": [\n        \"NNS\"\n    ], \n    \"Infantry\": [\n        \"NNP\"\n    ], \n    \"Superconductors\": [\n        \"NNS\"\n    ], \n    \"Schaack\": [\n        \"NNP\"\n    ], \n    \"woke\": [\n        \"VBD\"\n    ], \n    \"class-warfare\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"weatherstrip\": [\n        \"VB\"\n    ], \n    \"procedural\": [\n        \"JJ\"\n    ], \n    \"Graham\": [\n        \"NNP\"\n    ], \n    \"one-product\": [\n        \"NN\"\n    ], \n    \"inflation-wary\": [\n        \"JJ\"\n    ], \n    \"Wan\": [\n        \"NNP\"\n    ], \n    \"passively\": [\n        \"RB\"\n    ], \n    \"Productivity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"home-run\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hackers\": [\n        \"NNS\"\n    ], \n    \"charlotte\": [\n        \"NN\"\n    ], \n    \"hewn\": [\n        \"VBN\"\n    ], \n    \"Ltd\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"complies\": [\n        \"VBZ\"\n    ], \n    \"cross-sectional\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Traditionally\": [\n        \"RB\"\n    ], \n    \"spotting\": [\n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"Way\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hews\": [\n        \"VBZ\"\n    ], \n    \"vessel\": [\n        \"NN\"\n    ], \n    \"complied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Was\": [\n        \"VBD\"\n    ], \n    \"War\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Alexandrine\": [\n        \"JJ\"\n    ], \n    \"Capt.\": [\n        \"NNP\"\n    ], \n    \"psychotherapists\": [\n        \"NNS\"\n    ], \n    \"Cedar\": [\n        \"NNP\"\n    ], \n    \"f.o.b\": [\n        \"JJ\"\n    ], \n    \"reduced-fat\": [\n        \"JJ\"\n    ], \n    \"Saabye\": [\n        \"NNP\"\n    ], \n    \"Poppenberg\": [\n        \"NNP\"\n    ], \n    \"decisiveness\": [\n        \"NN\"\n    ], \n    \"Allies\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"overstate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chesebrough-Pond\": [\n        \"NNP\"\n    ], \n    \"permeating\": [\n        \"VBG\"\n    ], \n    \"Fluent\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Mayfield\": [\n        \"NNP\"\n    ], \n    \"Allied\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"recalled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"coalitions\": [\n        \"NNS\"\n    ], \n    \"bidding\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"reenact\": [\n        \"VB\"\n    ], \n    \"cabdriver\": [\n        \"NN\"\n    ], \n    \"egg-on-the-face\": [\n        \"JJ\"\n    ], \n    \"loon\": [\n        \"NN\"\n    ], \n    \"randomly\": [\n        \"RB\"\n    ], \n    \"loom\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"soiled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"look\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"well-written\": [\n        \"JJ\"\n    ], \n    \"assertedly\": [\n        \"RB\"\n    ], \n    \"Aldomet\": [\n        \"NNP\"\n    ], \n    \"mainframe\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"lightning-occurrence\": [\n        \"JJ\"\n    ], \n    \"endanger\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"loot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"non-junkies\": [\n        \"NNS\"\n    ], \n    \"loop\": [\n        \"NN\"\n    ], \n    \"LOWER\": [\n        \"JJR\"\n    ], \n    \"Pena\": [\n        \"NNP\"\n    ], \n    \"Directive\": [\n        \"NNP\"\n    ], \n    \"fickleness\": [\n        \"NN\"\n    ], \n    \"out-of-touch\": [\n        \"JJ\"\n    ], \n    \"clientslose\": [\n        \"JJ\"\n    ], \n    \"Fingers\": [\n        \"NNP\"\n    ], \n    \"confound\": [\n        \"VB\"\n    ], \n    \"reads\": [\n        \"VBZ\"\n    ], \n    \"Dictator\": [\n        \"NNP\"\n    ], \n    \"Roloff\": [\n        \"NNP\"\n    ], \n    \"three-hour\": [\n        \"JJ\"\n    ], \n    \"hyperbole\": [\n        \"NN\"\n    ], \n    \"Foley\": [\n        \"NNP\"\n    ], \n    \"fedora\": [\n        \"NN\"\n    ], \n    \"Born\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"repudiated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"discredit\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"terram\": [\n        \"FW\"\n    ], \n    \"personal-care\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ariadne\": [\n        \"NNP\"\n    ], \n    \"TAMPA\": [\n        \"NNP\"\n    ], \n    \"Gerome\": [\n        \"NNP\"\n    ], \n    \"Reactionaries\": [\n        \"NNS\"\n    ], \n    \"arbitrators\": [\n        \"NNS\"\n    ], \n    \"acrobacy\": [\n        \"NN\"\n    ], \n    \"Prick\": [\n        \"VB\"\n    ], \n    \"assortment\": [\n        \"NN\"\n    ], \n    \"skyrocketing\": [\n        \"VBG\"\n    ], \n    \"crucible\": [\n        \"NN\"\n    ], \n    \"ALUMINUM\": [\n        \"NNP\"\n    ], \n    \"half-baked\": [\n        \"JJ\"\n    ], \n    \"Sosnoff\": [\n        \"NNP\"\n    ], \n    \"pricks\": [\n        \"NNS\"\n    ], \n    \"Dunn-Atherton\": [\n        \"NNP\"\n    ], \n    \"garoupa\": [\n        \"NN\"\n    ], \n    \"Rowlands\": [\n        \"NNP\"\n    ], \n    \"grossly\": [\n        \"RB\"\n    ], \n    \"mid-range\": [\n        \"JJ\"\n    ], \n    \"extortionate\": [\n        \"JJ\"\n    ], \n    \"chore\": [\n        \"NN\"\n    ], \n    \"chord\": [\n        \"NN\"\n    ], \n    \"migratory\": [\n        \"JJ\"\n    ], \n    \"Faneuil\": [\n        \"NNP\"\n    ], \n    \"festivus\": [\n        \"FW\"\n    ], \n    \"morsel\": [\n        \"NN\"\n    ], \n    \"Anabel\": [\n        \"NNP\"\n    ], \n    \"Internet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"startups\": [\n        \"NNS\"\n    ], \n    \"buttoned-down\": [\n        \"JJ\"\n    ], \n    \"Casting\": [\n        \"VBG\"\n    ], \n    \"German-Italian\": [\n        \"JJ\"\n    ], \n    \"Flour\": [\n        \"NN\"\n    ], \n    \"decayed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"brand-new\": [\n        \"JJ\"\n    ], \n    \"Saalfeld\": [\n        \"NNP\"\n    ], \n    \"Bradford-White\": [\n        \"NNP\"\n    ], \n    \"specially-trained\": [\n        \"JJ\"\n    ], \n    \"Ludlum\": [\n        \"NNP\"\n    ], \n    \"insert\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"long-acting\": [\n        \"JJ\"\n    ], \n    \"price-depressing\": [\n        \"JJ\"\n    ], \n    \"Bank\\\\/IMF\": [\n        \"NNP\"\n    ], \n    \"sharers\": [\n        \"NNS\"\n    ], \n    \"Subsidiary\": [\n        \"NN\"\n    ], \n    \"re-invested\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"audio-specialty\": [\n        \"NN\"\n    ], \n    \"outright\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Alexandria\": [\n        \"NNP\"\n    ], \n    \"Previously\": [\n        \"RB\"\n    ], \n    \"Ensign\": [\n        \"NNP\"\n    ], \n    \"Boxell\": [\n        \"NNP\"\n    ], \n    \"Windels\": [\n        \"NNP\"\n    ], \n    \"byproduct\": [\n        \"NN\"\n    ], \n    \"swooped\": [\n        \"VBD\"\n    ], \n    \"resold\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"mathematical\": [\n        \"JJ\"\n    ], \n    \"Haughey\": [\n        \"NNP\"\n    ], \n    \"Carols\": [\n        \"NNPS\"\n    ], \n    \"Guitarist\": [\n        \"NNP\"\n    ], \n    \"left-field\": [\n        \"JJ\"\n    ], \n    \"Plains\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Caroli\": [\n        \"NNP\"\n    ], \n    \"window-shopping\": [\n        \"NN\"\n    ], \n    \"gamebird\": [\n        \"NN\"\n    ], \n    \"Carole\": [\n        \"NNP\"\n    ], \n    \"Economy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"savage\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"paginated\": [\n        \"VBN\"\n    ], \n    \"vacationer\": [\n        \"NN\"\n    ], \n    \"Citrus\": [\n        \"NNP\"\n    ], \n    \"barnstormer\": [\n        \"NN\"\n    ], \n    \"Zhijie\": [\n        \"NNP\"\n    ], \n    \"venturesome\": [\n        \"JJ\"\n    ], \n    \"Gasset\": [\n        \"NNP\"\n    ], \n    \"conditionally\": [\n        \"RB\"\n    ], \n    \"liturgy\": [\n        \"NN\"\n    ], \n    \"great-uncles\": [\n        \"NNS\"\n    ], \n    \"Sangyo\": [\n        \"NNP\"\n    ], \n    \"Andriessen\": [\n        \"NNP\"\n    ], \n    \"forgets\": [\n        \"VBZ\"\n    ], \n    \"minimal\": [\n        \"JJ\"\n    ], \n    \"berated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stem\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"DOC-IN-A-BOX\": [\n        \"NNP\"\n    ], \n    \"step\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"outlanders\": [\n        \"NNS\"\n    ], \n    \"stew\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"lasts\": [\n        \"VBZ\"\n    ], \n    \"plots\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"predictability\": [\n        \"NN\"\n    ], \n    \"space-systems\": [\n        \"NNS\"\n    ], \n    \"toppled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"shine\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Jin-Shung\": [\n        \"NNP\"\n    ], \n    \"entailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"talks-including\": [\n        \"JJ\"\n    ], \n    \"mega-crash\": [\n        \"NN\"\n    ], \n    \"rumbled\": [\n        \"VBD\"\n    ], \n    \"shins\": [\n        \"NNS\"\n    ], \n    \"messaging\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"pullouts\": [\n        \"NNS\"\n    ], \n    \"classics\": [\n        \"NNS\"\n    ], \n    \"shiny\": [\n        \"JJ\"\n    ], \n    \"dietary\": [\n        \"JJ\"\n    ], \n    \"channeling\": [\n        \"VBG\"\n    ], \n    \"junkholders\": [\n        \"NNS\"\n    ], \n    \"paltry\": [\n        \"JJ\"\n    ], \n    \"computes\": [\n        \"VBZ\"\n    ], \n    \"legislates\": [\n        \"VBZ\"\n    ], \n    \"stopping-point\": [\n        \"NN\"\n    ], \n    \"nonsense\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"say-so\": [\n        \"NN\"\n    ], \n    \"Waltch\": [\n        \"NNP\"\n    ], \n    \"quake-prone\": [\n        \"JJ\"\n    ], \n    \"Stalled\": [\n        \"VBN\"\n    ], \n    \"unbeknownst\": [\n        \"JJ\"\n    ], \n    \"Nogaret\": [\n        \"NNP\"\n    ], \n    \"Ruth\": [\n        \"NNP\"\n    ], \n    \"Villagers\": [\n        \"NNS\"\n    ], \n    \"Papermils\": [\n        \"NNP\"\n    ], \n    \"Gassman\": [\n        \"NNP\"\n    ], \n    \"sashay\": [\n        \"NN\"\n    ], \n    \"Victims\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"black-consumer\": [\n        \"NN\"\n    ], \n    \"brassiness\": [\n        \"NN\"\n    ], \n    \"Salvatore\": [\n        \"NNP\"\n    ], \n    \"Shylock\": [\n        \"NNP\"\n    ], \n    \"Turkey.\": [\n        \"NNP\"\n    ], \n    \"disallowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"manufacture\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"harem\": [\n        \"NN\"\n    ], \n    \"dips\": [\n        \"NNS\"\n    ], \n    \"inept\": [\n        \"JJ\"\n    ], \n    \"specialty\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"bolsters\": [\n        \"VBZ\"\n    ], \n    \"Blois\": [\n        \"NNP\"\n    ], \n    \"fishy\": [\n        \"JJ\"\n    ], \n    \"transportation-equipment\": [\n        \"NN\"\n    ], \n    \"gold-convertible\": [\n        \"JJ\"\n    ], \n    \"Unitarian\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"persisting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Brookmont\": [\n        \"NNP\"\n    ], \n    \"calligraphers\": [\n        \"NNS\"\n    ], \n    \"patient-care\": [\n        \"JJ\"\n    ], \n    \"Euro-jogging\": [\n        \"JJ\"\n    ], \n    \"accustomed\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"Lonrho\": [\n        \"NNP\"\n    ], \n    \"Moffitt\": [\n        \"NNP\"\n    ], \n    \"Stone-Consolidated\": [\n        \"NNP\"\n    ], \n    \"bride-gift\": [\n        \"NN\"\n    ], \n    \"Pagemaker\": [\n        \"NNP\"\n    ], \n    \"Ich\": [\n        \"FW\"\n    ], \n    \"estrogen\": [\n        \"NN\"\n    ], \n    \"acidity\": [\n        \"NN\"\n    ], \n    \"Ica\": [\n        \"NN\"\n    ], \n    \"Chalon-sur-Saone\": [\n        \"NNP\"\n    ], \n    \"chafed\": [\n        \"VBN\"\n    ], \n    \"Hampshire\": [\n        \"NNP\"\n    ], \n    \"INTERMARK\": [\n        \"NNP\"\n    ], \n    \"Kitchin\": [\n        \"NNP\"\n    ], \n    \"asters\": [\n        \"NNS\"\n    ], \n    \"chafes\": [\n        \"VBZ\"\n    ], \n    \"psychopath\": [\n        \"NN\"\n    ], \n    \"dammed-up\": [\n        \"VBN\"\n    ], \n    \"Abstractionists\": [\n        \"NNS\"\n    ], \n    \"liberalize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sullen\": [\n        \"JJ\"\n    ], \n    \"All-weather\": [\n        \"JJ\"\n    ], \n    \"anthology\": [\n        \"NN\"\n    ], \n    \"rewriting\": [\n        \"VBG\"\n    ], \n    \"hotel\\\\/casino\": [\n        \"NN\"\n    ], \n    \"bottom-line\": [\n        \"JJ\"\n    ], \n    \"genome\": [\n        \"NN\"\n    ], \n    \"fuzzier\": [\n        \"JJR\"\n    ], \n    \"seduzione\": [\n        \"FW\"\n    ], \n    \"Sisters\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Tetanus\": [\n        \"NN\"\n    ], \n    \"battery-operated\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"McKesson\": [\n        \"NNP\"\n    ], \n    \"regulations\": [\n        \"NNS\"\n    ], \n    \"sluicing\": [\n        \"VBG\"\n    ], \n    \"price-stabilizing\": [\n        \"JJ\"\n    ], \n    \"Coca\": [\n        \"NNP\"\n    ], \n    \"neuropathology\": [\n        \"NN\"\n    ], \n    \"shorelines\": [\n        \"NNS\"\n    ], \n    \"thundered\": [\n        \"VBD\"\n    ], \n    \"overlong\": [\n        \"JJ\"\n    ], \n    \"Showtime\": [\n        \"NNP\"\n    ], \n    \"Intermec\": [\n        \"NNP\"\n    ], \n    \"tailpipe\": [\n        \"NN\"\n    ], \n    \"sounder\": [\n        \"JJR\"\n    ], \n    \"wellbeing\": [\n        \"NN\"\n    ], \n    \"pink-petticoated\": [\n        \"JJ\"\n    ], \n    \"repatriations\": [\n        \"NNS\"\n    ], \n    \"goooolick\": [\n        \"NN\"\n    ], \n    \"megawatt\": [\n        \"NN\"\n    ], \n    \"berries\": [\n        \"NNS\"\n    ], \n    \"sounded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sales-of\": [\n        \"IN\"\n    ], \n    \"Erdman\": [\n        \"NNP\"\n    ], \n    \"Brophy\": [\n        \"NNP\"\n    ], \n    \"non-life\": [\n        \"JJ\"\n    ], \n    \"fair-market\": [\n        \"JJ\"\n    ], \n    \"psyche\": [\n        \"NN\"\n    ], \n    \"chicken-mutilating\": [\n        \"JJ\"\n    ], \n    \"bell-ringers\": [\n        \"NNS\"\n    ], \n    \"Canada-U.S.\": [\n        \"NNP\"\n    ], \n    \"post-1979\": [\n        \"JJ\"\n    ], \n    \"Lower-than-expected\": [\n        \"JJ\"\n    ], \n    \"Kuhns\": [\n        \"NNP\"\n    ], \n    \"Righteous\": [\n        \"JJ\"\n    ], \n    \"WLF\": [\n        \"NNP\"\n    ], \n    \"part-owner\": [\n        \"NN\"\n    ], \n    \"shackles\": [\n        \"NNS\"\n    ], \n    \"best-sellers\": [\n        \"NNS\"\n    ], \n    \"Ballroom\": [\n        \"NNP\"\n    ], \n    \"Silas\": [\n        \"NNP\"\n    ], \n    \"Stone\": [\n        \"NNP\"\n    ], \n    \"Award\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Aware\": [\n        \"JJ\"\n    ], \n    \"wage-rates\": [\n        \"NNS\"\n    ], \n    \"backflips\": [\n        \"VBZ\"\n    ], \n    \"shackled\": [\n        \"VBN\"\n    ], \n    \"Xiangyang\": [\n        \"NNP\"\n    ], \n    \"Swanson\": [\n        \"NNP\"\n    ], \n    \"upstarts\": [\n        \"NNS\"\n    ], \n    \"suite\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Weider\": [\n        \"NNP\"\n    ], \n    \"virtuous\": [\n        \"JJ\"\n    ], \n    \"eight-foot\": [\n        \"JJ\"\n    ], \n    \"Canadian\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"miners\": [\n        \"NNS\"\n    ], \n    \"quelling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Vermes\": [\n        \"NNP\"\n    ], \n    \"Jaime\": [\n        \"NNP\"\n    ], \n    \"trough\": [\n        \"NN\"\n    ], \n    \"cellular\": [\n        \"JJ\"\n    ], \n    \"S-curve\": [\n        \"NN\"\n    ], \n    \"crowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"facilitate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hardware-maintenance\": [\n        \"NN\"\n    ], \n    \"non-existant\": [\n        \"JJ\"\n    ], \n    \"ever-dying\": [\n        \"JJ\"\n    ], \n    \"exasperatingly\": [\n        \"RB\"\n    ], \n    \"Partner\": [\n        \"NNP\"\n    ], \n    \"hairier\": [\n        \"JJR\"\n    ], \n    \"panic-stricken\": [\n        \"JJ\"\n    ], \n    \"defiling\": [\n        \"VBG\"\n    ], \n    \"compensated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nazario\": [\n        \"NNP\"\n    ], \n    \"teasers\": [\n        \"NNS\"\n    ], \n    \"encroachment\": [\n        \"NN\"\n    ], \n    \"among\": [\n        \"IN\"\n    ], \n    \"decreed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"compensates\": [\n        \"VBZ\"\n    ], \n    \"should...\": [\n        \":\"\n    ], \n    \"Giorgetta\": [\n        \"NNP\"\n    ], \n    \"intraocular\": [\n        \"JJ\"\n    ], \n    \"decrees\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Seventy-fourth\": [\n        \"NNP\"\n    ], \n    \"banquetings\": [\n        \"NNS\"\n    ], \n    \"climes\": [\n        \"NNS\"\n    ], \n    \"sausage\": [\n        \"NN\"\n    ], \n    \"poke\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Locks\": [\n        \"NNP\"\n    ], \n    \"Environmentalists\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"marketed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"acccounting\": [\n        \"NN\"\n    ], \n    \"TAMMY\": [\n        \"NNP\"\n    ], \n    \"referees\": [\n        \"NNS\"\n    ], \n    \"America\": [\n        \"NNP\"\n    ], \n    \"marketer\": [\n        \"NN\"\n    ], \n    \"Dynabook\": [\n        \"NNP\"\n    ], \n    \"combative\": [\n        \"JJ\"\n    ], \n    \"accomplices\": [\n        \"NNS\"\n    ], \n    \"meandering\": [\n        \"VBG\"\n    ], \n    \"four-door\": [\n        \"JJ\"\n    ], \n    \"consumer-telephone\": [\n        \"JJ\"\n    ], \n    \"Cossacks\": [\n        \"NNPS\"\n    ], \n    \"commercial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"brooch\": [\n        \"NN\"\n    ], \n    \"Heating\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"case...\": [\n        \":\"\n    ], \n    \"quell\": [\n        \"VB\"\n    ], \n    \"Baird\": [\n        \"NNP\"\n    ], \n    \"ponytails\": [\n        \"NNS\"\n    ], \n    \"canals\": [\n        \"NNS\"\n    ], \n    \"Kostelanetz\": [\n        \"NNP\"\n    ], \n    \"Orgotein\": [\n        \"NNP\"\n    ], \n    \"Lying\": [\n        \"VBG\"\n    ], \n    \"Kernel\": [\n        \"NNP\"\n    ], \n    \"chant\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"overseen\": [\n        \"VBN\", \n        \"NN\"\n    ], \n    \"stone-still\": [\n        \"JJ\"\n    ], \n    \"whisking\": [\n        \"VBG\"\n    ], \n    \"COMMUTERS\": [\n        \"NNS\"\n    ], \n    \"oversees\": [\n        \"VBZ\"\n    ], \n    \"overseer\": [\n        \"NN\"\n    ], \n    \"Kerner\": [\n        \"NNP\"\n    ], \n    \"wig\": [\n        \"NN\"\n    ], \n    \"Gertrude\": [\n        \"NNP\"\n    ], \n    \"Waikiki\": [\n        \"NNP\"\n    ], \n    \"Ritz\": [\n        \"NNP\"\n    ], \n    \"unhitched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"win\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Yin\": [\n        \"NNP\"\n    ], \n    \"litigators\": [\n        \"NNS\"\n    ], \n    \"muddy-tasting\": [\n        \"JJ\"\n    ], \n    \"Rito\": [\n        \"NNP\"\n    ], \n    \"wit\": [\n        \"NN\"\n    ], \n    \"vivacity\": [\n        \"NN\"\n    ], \n    \"redefining\": [\n        \"VBG\"\n    ], \n    \"Rite\": [\n        \"NNP\"\n    ], \n    \"Rita\": [\n        \"NNP\"\n    ], \n    \"space-based\": [\n        \"JJ\"\n    ], \n    \"Bylot\": [\n        \"NNP\"\n    ], \n    \"chemical-arms\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"remains\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"one-stroke\": [\n        \"JJ\"\n    ], \n    \"Papa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Newfoundland\": [\n        \"NNP\"\n    ], \n    \"Matters\": [\n        \"NNP\", \n        \"NNS|VBZ\", \n        \"VBZ\"\n    ], \n    \"JSP\": [\n        \"NNP\"\n    ], \n    \"balustrade\": [\n        \"NN\"\n    ], \n    \"Papp\": [\n        \"NNP\"\n    ], \n    \"Bhd.\": [\n        \"NNP\"\n    ], \n    \"nickeling\": [\n        \"VBG\"\n    ], \n    \"started\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"vivid\": [\n        \"JJ\"\n    ], \n    \"REAGAN\": [\n        \"NNP\"\n    ], \n    \"rough-sanded\": [\n        \"JJ\"\n    ], \n    \"Roxboro\": [\n        \"NNP\"\n    ], \n    \"one-plane\": [\n        \"JJ\"\n    ], \n    \"Afro-Cuban\": [\n        \"JJ\"\n    ], \n    \"Seagoville\": [\n        \"NNP\"\n    ], \n    \"grain-exporting\": [\n        \"NN\"\n    ], \n    \"starter\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Monterey\": [\n        \"NNP\"\n    ], \n    \"crosses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"mythical\": [\n        \"JJ\"\n    ], \n    \"irreparably\": [\n        \"RB\"\n    ], \n    \"midwinter\": [\n        \"NN\"\n    ], \n    \"UtiliCorp\": [\n        \"NNP\"\n    ], \n    \"irreparable\": [\n        \"JJ\"\n    ], \n    \"depravities\": [\n        \"NNS\"\n    ], \n    \"Traveler\": [\n        \"NNP\"\n    ], \n    \"Rostenkowski\": [\n        \"NNP\"\n    ], \n    \"NP-27\": [\n        \"NNP\"\n    ], \n    \"customs-cleared\": [\n        \"JJ\"\n    ], \n    \"four-for-one\": [\n        \"RB\"\n    ], \n    \"ushers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"cheapens\": [\n        \"VBZ\"\n    ], \n    \"ferrets\": [\n        \"VBZ\"\n    ], \n    \"intimations\": [\n        \"NNS\"\n    ], \n    \"Halpern\": [\n        \"NNP\"\n    ], \n    \"Vistoso\": [\n        \"NNP\"\n    ], \n    \"serviceable\": [\n        \"JJ\"\n    ], \n    \"wonderful\": [\n        \"JJ\"\n    ], \n    \"skirt\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"truth-revealing\": [\n        \"JJ\"\n    ], \n    \"intraparty\": [\n        \"JJ\"\n    ], \n    \"Mohlere\": [\n        \"NNP\"\n    ], \n    \"tubers\": [\n        \"NNS\"\n    ], \n    \"Blumenthal\": [\n        \"NNP\"\n    ], \n    \"romancing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"NIAGARA\": [\n        \"NNP\"\n    ], \n    \"Heffner\": [\n        \"NNP\"\n    ], \n    \"BECOME\": [\n        \"VB\"\n    ], \n    \"Winton\": [\n        \"NNP\"\n    ], \n    \"pantaloons\": [\n        \"NNS\"\n    ], \n    \"unserviceable\": [\n        \"JJ\"\n    ], \n    \"Cepeda\": [\n        \"NNP\"\n    ], \n    \"rations\": [\n        \"NNS\"\n    ], \n    \"fatigue\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"belongings\": [\n        \"NNS\"\n    ], \n    \"medical-care\": [\n        \"NN\"\n    ], \n    \"Weighted\": [\n        \"NNP\"\n    ], \n    \"advocated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Unimin\": [\n        \"NNP\"\n    ], \n    \"catty\": [\n        \"JJ\"\n    ], \n    \"feels\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Emptied\": [\n        \"VBD\"\n    ], \n    \"Middle\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"bakery\": [\n        \"NN\"\n    ], \n    \"advocates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chain...\": [\n        \":\"\n    ], \n    \"bakers\": [\n        \"NNS\"\n    ], \n    \"quotations\": [\n        \"NNS\"\n    ], \n    \"ex-singer\": [\n        \"NN\"\n    ], \n    \"astronomical\": [\n        \"JJ\"\n    ], \n    \"Hoppe\": [\n        \"NNP\"\n    ], \n    \"combinations\": [\n        \"NNS\"\n    ], \n    \"Doonesbury\": [\n        \"NNP\"\n    ], \n    \"anchorite\": [\n        \"NN\"\n    ], \n    \"smarts\": [\n        \"VBZ\"\n    ], \n    \"Representative\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"physicalness\": [\n        \"NN\"\n    ], \n    \"imitating\": [\n        \"VBG\"\n    ], \n    \"advisable\": [\n        \"JJ\"\n    ], \n    \"sub-underwriters\": [\n        \"NNS\"\n    ], \n    \"Dwor\": [\n        \"NNP\"\n    ], \n    \"MOTORISTS\": [\n        \"NNS\"\n    ], \n    \"filets\": [\n        \"NNS\"\n    ], \n    \"Sink\": [\n        \"NNP\"\n    ], \n    \"STSN\": [\n        \"NNP\"\n    ], \n    \"manifestos\": [\n        \"NNS\"\n    ], \n    \"Steppenwolf\": [\n        \"NNP\"\n    ], \n    \"Sing\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"imbalance\": [\n        \"NN\"\n    ], \n    \"LBO\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"forest-product\": [\n        \"NN\"\n    ], \n    \"Harvester\": [\n        \"NNP\"\n    ], \n    \"affectations\": [\n        \"NNS\"\n    ], \n    \"dike\": [\n        \"NN\"\n    ], \n    \"BUY-OUT\": [\n        \"NN\"\n    ], \n    \"placid\": [\n        \"JJ\"\n    ], \n    \"dinnerware\": [\n        \"NN\"\n    ], \n    \"mini-fiestas\": [\n        \"NNS\"\n    ], \n    \"literacy\": [\n        \"NN\"\n    ], \n    \"grumbling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Pabor\": [\n        \"NNP\"\n    ], \n    \"divides\": [\n        \"VBZ\"\n    ], \n    \"Falwell-Robertson\": [\n        \"NNP\"\n    ], \n    \"predilection\": [\n        \"NN\"\n    ], \n    \"Carmichael\": [\n        \"NNP\"\n    ], \n    \"shaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"legions\": [\n        \"NNS\"\n    ], \n    \"front-end\": [\n        \"JJ\"\n    ], \n    \"conceiving\": [\n        \"VBG\"\n    ], \n    \"tumbrels\": [\n        \"NNS\"\n    ], \n    \"ills\": [\n        \"NNS\"\n    ], \n    \"Benedictine\": [\n        \"JJ\"\n    ], \n    \"York-mind\": [\n        \"NNP|NN\"\n    ], \n    \"IFA\": [\n        \"NNP\"\n    ], \n    \"IFC\": [\n        \"NNP\"\n    ], \n    \"self-enforced\": [\n        \"JJ\"\n    ], \n    \"laundry\": [\n        \"NN\"\n    ], \n    \"Piszczalski\": [\n        \"NNP\"\n    ], \n    \"IFO\": [\n        \"NNP\"\n    ], \n    \"deprivations\": [\n        \"NNS\"\n    ], \n    \"IFI\": [\n        \"NNP\"\n    ], \n    \"actor\": [\n        \"NN\"\n    ], \n    \"longhorns\": [\n        \"NNS\"\n    ], \n    \"confess\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Prizms\": [\n        \"NNPS\"\n    ], \n    \"cop-out\": [\n        \"NN\"\n    ], \n    \"Adrianople\": [\n        \"NN\"\n    ], \n    \"Burzon\": [\n        \"NNP\"\n    ], \n    \"Contrasts\": [\n        \"NNS\"\n    ], \n    \"Gartner\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"withering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Upset\": [\n        \"VBN\"\n    ], \n    \"Surge\": [\n        \"NNP\"\n    ], \n    \"Ives\": [\n        \"NNP\"\n    ], \n    \"completely\": [\n        \"RB\"\n    ], \n    \"Whiteford\": [\n        \"NNP\"\n    ], \n    \"Ivey\": [\n        \"NNP\"\n    ], \n    \"Anita\": [\n        \"NNP\"\n    ], \n    \"Hostaria\": [\n        \"NNP\"\n    ], \n    \"WITHHOLDING\": [\n        \"NN\"\n    ], \n    \"reeled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mastergate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pound-foolish\": [\n        \"JJ\"\n    ], \n    \"Carvalho\": [\n        \"NNP\"\n    ], \n    \"stride\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"shred\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Gothic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"derivations\": [\n        \"NNS\"\n    ], \n    \"more-sophisticated\": [\n        \"JJ\"\n    ], \n    \"protagonists\": [\n        \"NNS\"\n    ], \n    \"soldered\": [\n        \"VBN\"\n    ], \n    \"Cycly\": [\n        \"NNP\"\n    ], \n    \"beadle\": [\n        \"NN\"\n    ], \n    \"Nasdaq-traded\": [\n        \"JJ\"\n    ], \n    \"Vinson\": [\n        \"NNP\"\n    ], \n    \"Rochester\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Atlee\": [\n        \"NNP\"\n    ], \n    \"precisely\": [\n        \"RB\"\n    ], \n    \"Boris\": [\n        \"NNP\"\n    ], \n    \"Conduit\": [\n        \"NNP\"\n    ], \n    \"management\": [\n        \"NN\"\n    ], \n    \"stringently\": [\n        \"RB\"\n    ], \n    \"Conradies\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"non-partisan\": [\n        \"JJ\"\n    ], \n    \"Funds\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"NUS\": [\n        \"NNP\"\n    ], \n    \"Argos\": [\n        \"NNP\"\n    ], \n    \"Argon\": [\n        \"NN\"\n    ], \n    \"NUM\": [\n        \"NNP\"\n    ], \n    \"MacAllister\": [\n        \"NNP\"\n    ], \n    \"Borie\": [\n        \"NNP\"\n    ], \n    \"post-mortem\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"best-looking\": [\n        \"JJ\"\n    ], \n    \"picturesquely\": [\n        \"RB\"\n    ], \n    \"hitching\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"reallocate\": [\n        \"VB\"\n    ], \n    \"Hugely\": [\n        \"RB\"\n    ], \n    \"manifestation\": [\n        \"NN\"\n    ], \n    \"Silberman\": [\n        \"NNP\"\n    ], \n    \"varieties\": [\n        \"NNS\"\n    ], \n    \"One-inch\": [\n        \"JJ\"\n    ], \n    \"dual-road-up\": [\n        \"NN\"\n    ], \n    \"Biopure\": [\n        \"NNP\"\n    ], \n    \"underperforms\": [\n        \"VBZ\"\n    ], \n    \"bevor\": [\n        \"FW\"\n    ], \n    \"old-boy\": [\n        \"NN\"\n    ], \n    \"unprovable\": [\n        \"JJ\"\n    ], \n    \"breezy\": [\n        \"JJ\"\n    ], \n    \"Ismet\": [\n        \"NNP\"\n    ], \n    \"REPLIGEN\": [\n        \"NNP\"\n    ], \n    \"Leleiohaku\": [\n        \"NNP\"\n    ], \n    \"dourly\": [\n        \"RB\"\n    ], \n    \"Cornfeld\": [\n        \"NNP\"\n    ], \n    \"mediators\": [\n        \"NNS\"\n    ], \n    \"follow-through\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"b-Based\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Gentlemen\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"EQUIPMENT\": [\n        \"NNP\"\n    ], \n    \"ultrasonic\": [\n        \"JJ\"\n    ], \n    \"close\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"transactionstructuring\": [\n        \"NN\"\n    ], \n    \"wristwatches\": [\n        \"NNS\"\n    ], \n    \"Tadzhikistan\": [\n        \"NNP\"\n    ], \n    \"post-Inaugural\": [\n        \"JJ\"\n    ], \n    \"roiling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Melott\": [\n        \"NNP\"\n    ], \n    \"cranes\": [\n        \"NNS\"\n    ], \n    \"Tuberculosis\": [\n        \"NNP\"\n    ], \n    \"Rollins\": [\n        \"NNP\"\n    ], \n    \"ecumenical\": [\n        \"JJ\"\n    ], \n    \"makeover\": [\n        \"NN\"\n    ], \n    \"KWU\": [\n        \"NNP\"\n    ], \n    \"Vacations\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Rolling\": [\n        \"NNP\"\n    ], \n    \"truck\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"detector\": [\n        \"NN\"\n    ], \n    \"Des\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"deploy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"passionately\": [\n        \"RB\"\n    ], \n    \"Torell\": [\n        \"NNP\"\n    ], \n    \"expires\": [\n        \"VBZ\"\n    ], \n    \"camper\": [\n        \"NN\"\n    ], \n    \"camped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Weissmuller\": [\n        \"NNP\"\n    ], \n    \"expired\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"truce\": [\n        \"NN\"\n    ], \n    \"Godiva\": [\n        \"NNP\"\n    ], \n    \"simplicities\": [\n        \"NNS\"\n    ], \n    \"SAMURAI\": [\n        \"NNP\"\n    ], \n    \"hot-colored\": [\n        \"JJ\"\n    ], \n    \"granddaddies\": [\n        \"NNS\"\n    ], \n    \"breeze\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Secretary-General\": [\n        \"NNP\"\n    ], \n    \"snapshot\": [\n        \"NN\"\n    ], \n    \"databases\": [\n        \"NNS\"\n    ], \n    \"Boskin\": [\n        \"NNP\"\n    ], \n    \"bun\": [\n        \"NN\"\n    ], \n    \"radio-pharmaceutical\": [\n        \"JJ\"\n    ], \n    \"qualms\": [\n        \"NNS\"\n    ], \n    \"Tara\": [\n        \"NNP\"\n    ], \n    \"hammerless\": [\n        \"JJ\"\n    ], \n    \"Waal\": [\n        \"NNP\"\n    ], \n    \"Barney\": [\n        \"NNP\"\n    ], \n    \"Pushup\": [\n        \"NNP\"\n    ], \n    \"passe\": [\n        \"JJ\"\n    ], \n    \"MUST\": [\n        \"MD\"\n    ], \n    \"manzanita\": [\n        \"NN\"\n    ], \n    \"soothsayers\": [\n        \"NNS\"\n    ], \n    \"based\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"tire\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"rasa\": [\n        \"NN\"\n    ], \n    \"miniseries\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"(\": [\n        \"(\"\n    ], \n    \"transplants\": [\n        \"NNS\"\n    ], \n    \"Mervin\": [\n        \"NNP\"\n    ], \n    \"rash\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"bug\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"cosmetics-industry\": [\n        \"NN\"\n    ], \n    \"Beacon\": [\n        \"NNP\"\n    ], \n    \"bases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"suckered\": [\n        \"VBN\"\n    ], \n    \"bud\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"rasp\": [\n        \"NN\"\n    ], \n    \"Barnes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"girlie\": [\n        \"NN\"\n    ], \n    \"Wald\": [\n        \"NNP\"\n    ], \n    \"Jew-haters\": [\n        \"NNS\"\n    ], \n    \"commendation\": [\n        \"NN\"\n    ], \n    \"Stella\": [\n        \"NNP\"\n    ], \n    \"Gorham\": [\n        \"NNP\"\n    ], \n    \"Popular\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"C-SPAN\": [\n        \"NNP\"\n    ], \n    \"sowing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Humiliation\": [\n        \"NN\"\n    ], \n    \"course\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"outward-projecting\": [\n        \"JJ\"\n    ], \n    \"gust\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"transposition\": [\n        \"NN\"\n    ], \n    \"Scientech\": [\n        \"NNP\"\n    ], \n    \"watershed\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"topaz\": [\n        \"NN\"\n    ], \n    \"gush\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"feeling-state\": [\n        \"NN\"\n    ], \n    \"fasteners\": [\n        \"NNS\"\n    ], \n    \"trodding\": [\n        \"VBG\"\n    ], \n    \"counterprogram\": [\n        \"VB\"\n    ], \n    \"spotted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Staiger\": [\n        \"NNP\"\n    ], \n    \"mists\": [\n        \"NNS\"\n    ], \n    \"consulates\": [\n        \"NNS\"\n    ], \n    \"Lapp\": [\n        \"NNP\"\n    ], \n    \"Question\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"vagabond\": [\n        \"NN\"\n    ], \n    \"freeze\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pollin\": [\n        \"NNP\"\n    ], \n    \"driveway\": [\n        \"NN\"\n    ], \n    \"desperate\": [\n        \"JJ\"\n    ], \n    \"reattached\": [\n        \"VBN\"\n    ], \n    \"Indicators\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"XR-7\": [\n        \"NNP\"\n    ], \n    \"steel-stock\": [\n        \"NN\"\n    ], \n    \"irrefutable\": [\n        \"JJ\"\n    ], \n    \"Bessarabia\": [\n        \"NNP\"\n    ], \n    \"reconfirm\": [\n        \"VB\"\n    ], \n    \"unionists\": [\n        \"NNS\"\n    ], \n    \"timeliness\": [\n        \"NN\"\n    ], \n    \"missing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Toppers\": [\n        \"NNP\"\n    ], \n    \"Demus-Schubert\": [\n        \"NNP\"\n    ], \n    \"supernatural\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Greenbelt\": [\n        \"NNP\"\n    ], \n    \"Kenyans\": [\n        \"NNPS\"\n    ], \n    \"Threepenny\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"outsiders\": [\n        \"NNS\"\n    ], \n    \"comparable\": [\n        \"JJ\"\n    ], \n    \"rinses\": [\n        \"NNS\"\n    ], \n    \"DeVries\": [\n        \"NNP\"\n    ], \n    \"demur\": [\n        \"VBP\"\n    ], \n    \"Chiat\": [\n        \"NNP\"\n    ], \n    \"Stonewall\": [\n        \"NNP\"\n    ], \n    \"Mulhouse\": [\n        \"NNP\"\n    ], \n    \"lamechian\": [\n        \"JJ\"\n    ], \n    \"melds\": [\n        \"VBZ\"\n    ], \n    \"comparably\": [\n        \"RB\"\n    ], \n    \"Gable\": [\n        \"NNP\"\n    ], \n    \"Titled\": [\n        \"VBN\"\n    ], \n    \"diligent\": [\n        \"JJ\"\n    ], \n    \"Ruvolo\": [\n        \"NNP\"\n    ], \n    \"accordion\": [\n        \"NN\"\n    ], \n    \"year-round\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Pontissara\": [\n        \"NNP\"\n    ], \n    \"ranked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Lawyer\": [\n        \"NNP\"\n    ], \n    \"RJR-Macdonald\": [\n        \"NNP\"\n    ], \n    \"non-methanol\": [\n        \"JJ\"\n    ], \n    \"Vachell\": [\n        \"NNP\"\n    ], \n    \"christen\": [\n        \"VB\"\n    ], \n    \"Hydro-Quebec\": [\n        \"NNP\"\n    ], \n    \"budgetary\": [\n        \"JJ\"\n    ], \n    \"Picoult\": [\n        \"NNP\"\n    ], \n    \"Lok\": [\n        \"NNP\"\n    ], \n    \"Patton\": [\n        \"NNP\"\n    ], \n    \"Rosenthal\": [\n        \"NNP\"\n    ], \n    \"Al-Seyassah\": [\n        \"NNP\"\n    ], \n    \"Los\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Music\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Low\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Lot\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"instituting\": [\n        \"VBG\"\n    ], \n    \"hoverin\": [\n        \"VBG\"\n    ], \n    \"kings\": [\n        \"NNS\"\n    ], \n    \"Musil\": [\n        \"NNP\"\n    ], \n    \"Esnard\": [\n        \"NNP\"\n    ], \n    \"willy\": [\n        \"RB\"\n    ], \n    \"barrel-per-day\": [\n        \"JJ\"\n    ], \n    \"sari\": [\n        \"NN\"\n    ], \n    \"Sisk\": [\n        \"NNP\"\n    ], \n    \"Gregg\": [\n        \"NNP\"\n    ], \n    \"wills\": [\n        \"NNS\"\n    ], \n    \"larger-than-expected\": [\n        \"JJ\"\n    ], \n    \"cowards\": [\n        \"NNS\"\n    ], \n    \"slowly\": [\n        \"RB\"\n    ], \n    \"kingpin\": [\n        \"NN\"\n    ], \n    \"Consob\": [\n        \"NNP\"\n    ], \n    \"Six-year-old\": [\n        \"JJ\"\n    ], \n    \"beef-jerky\": [\n        \"NN\"\n    ], \n    \"Stoltz\": [\n        \"NNP\"\n    ], \n    \"microtonal\": [\n        \"JJ\"\n    ], \n    \"league\": [\n        \"NN\"\n    ], \n    \"bi-regional\": [\n        \"JJ\"\n    ], \n    \"Bluefield\": [\n        \"NNP\"\n    ], \n    \"hashish\": [\n        \"NN\"\n    ], \n    \"smokescreens\": [\n        \"NNS\"\n    ], \n    \"deer-killing\": [\n        \"NN\"\n    ], \n    \"Sizzling\": [\n        \"JJ\"\n    ], \n    \"hytt\": [\n        \"PRP\"\n    ], \n    \"oversize\": [\n        \"JJ\"\n    ], \n    \"quotation\": [\n        \"NN\"\n    ], \n    \"billionnaire\": [\n        \"NN\"\n    ], \n    \"anti-defense\": [\n        \"JJ\"\n    ], \n    \"Babin-Festival\": [\n        \"NNP\"\n    ], \n    \"outspread\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Routo-Jig\": [\n        \"NN\"\n    ], \n    \"spur-of-the-moment\": [\n        \"JJ\"\n    ], \n    \"Elvira\": [\n        \"NNP\"\n    ], \n    \"re-thinking\": [\n        \"VBG\"\n    ], \n    \"underclass\": [\n        \"NNS\"\n    ], \n    \"Cohens\": [\n        \"NNPS\"\n    ], \n    \"Rally\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Risley\": [\n        \"NNP\"\n    ], \n    \"coincidental\": [\n        \"JJ\"\n    ], \n    \"Sergeant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Terrence\": [\n        \"NNP\"\n    ], \n    \"Nomisma\": [\n        \"NNP\"\n    ], \n    \"Stallard\": [\n        \"NNP\"\n    ], \n    \"Geisha\": [\n        \"NN\"\n    ], \n    \"inhabits\": [\n        \"VBZ\"\n    ], \n    \"swinging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Ariz.\": [\n        \"NNP\"\n    ], \n    \"bucks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"municipals\": [\n        \"NNS\"\n    ], \n    \"trooping\": [\n        \"VBG\"\n    ], \n    \"liquidator\": [\n        \"NN\"\n    ], \n    \"overrendered\": [\n        \"VBN\"\n    ], \n    \"Metamucil\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"strange\": [\n        \"JJ\"\n    ], \n    \"tabbed\": [\n        \"VBD\"\n    ], \n    \"Virnich\": [\n        \"NNP\"\n    ], \n    \"fanatics\": [\n        \"NNS\"\n    ], \n    \"fide\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"wranglers\": [\n        \"NNS\"\n    ], \n    \"unconventional\": [\n        \"JJ\"\n    ], \n    \"plaids\": [\n        \"NNS\"\n    ], \n    \"promoters\": [\n        \"NNS\"\n    ], \n    \"nightly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Tulip\": [\n        \"NNP\"\n    ], \n    \"dammed\": [\n        \"VBD\"\n    ], \n    \"fierce\": [\n        \"JJ\"\n    ], \n    \"extendible\": [\n        \"JJ\"\n    ], \n    \"magician\": [\n        \"NN\"\n    ], \n    \"poultry\": [\n        \"NN\"\n    ], \n    \"Galveston-Houston\": [\n        \"NNP\"\n    ], \n    \"weld\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"corn-based\": [\n        \"JJ\"\n    ], \n    \"Spofford\": [\n        \"NNP\"\n    ], \n    \"well\": [\n        \"RB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"Fantasy\": [\n        \"NNP\"\n    ], \n    \"great-grandmother\": [\n        \"NN\"\n    ], \n    \"Sovietized\": [\n        \"JJ\"\n    ], \n    \"stirrups\": [\n        \"NNS\"\n    ], \n    \"Skill\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"spherical\": [\n        \"JJ\"\n    ], \n    \"Novick\": [\n        \"NNP\"\n    ], \n    \"Bathyran\": [\n        \"NNP\"\n    ], \n    \"attractively\": [\n        \"RB\"\n    ], \n    \"insinuating\": [\n        \"VBG\"\n    ], \n    \"Guerrilla\": [\n        \"NN\"\n    ], \n    \"Spenglerian\": [\n        \"JJ\"\n    ], \n    \"long-chain\": [\n        \"NN\"\n    ], \n    \"ping-pong\": [\n        \"NN\"\n    ], \n    \"Technological\": [\n        \"NNP\"\n    ], \n    \"wild-eyed\": [\n        \"JJ\"\n    ], \n    \"Porter\": [\n        \"NNP\"\n    ], \n    \"steward\": [\n        \"NN\"\n    ], \n    \"Camilo\": [\n        \"NNP\"\n    ], \n    \"imparts\": [\n        \"VBZ\"\n    ], \n    \"vide\": [\n        \"FW\"\n    ], \n    \"Vignola\": [\n        \"NNP\"\n    ], \n    \"handiwork\": [\n        \"NN\"\n    ], \n    \"stratum\": [\n        \"NN\"\n    ], \n    \"Coffield\": [\n        \"NNP\"\n    ], \n    \"swellings\": [\n        \"NNS\"\n    ], \n    \"Sultanov\": [\n        \"NNP\"\n    ], \n    \"accomodate\": [\n        \"VB\"\n    ], \n    \"Esso\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hassey\": [\n        \"NNP\"\n    ], \n    \"railcar\": [\n        \"NN\"\n    ], \n    \"Jacques\": [\n        \"NNP\"\n    ], \n    \"Doorne\": [\n        \"NNP\"\n    ], \n    \"Ref.\": [\n        \"NN\"\n    ], \n    \"Shampoo\": [\n        \"NNP\"\n    ], \n    \"solvency\": [\n        \"NN\"\n    ], \n    \"recharging\": [\n        \"VBG\"\n    ], \n    \"cashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Executed\": [\n        \"VBD\"\n    ], \n    \"Reid\": [\n        \"NNP\"\n    ], \n    \"granite\": [\n        \"NN\"\n    ], \n    \"Glorious\": [\n        \"JJ\"\n    ], \n    \"Gephardtian\": [\n        \"JJ\"\n    ], \n    \"Kita\": [\n        \"NNP\"\n    ], \n    \"immunology\": [\n        \"NN\"\n    ], \n    \"two-parent\": [\n        \"JJ\"\n    ], \n    \"dictionaries\": [\n        \"NNS\"\n    ], \n    \"Azerbaijan\": [\n        \"NNP\"\n    ], \n    \"Echelon\": [\n        \"NNP\"\n    ], \n    \"Cologne\": [\n        \"NNP\"\n    ], \n    \"nonfunctional\": [\n        \"JJ\"\n    ], \n    \"GAF\": [\n        \"NNP\"\n    ], \n    \"M&Ms\": [\n        \"NNS\"\n    ], \n    \"drizzly\": [\n        \"JJ\"\n    ], \n    \"Herald-Tribune\": [\n        \"NNP\"\n    ], \n    \"Oprah\": [\n        \"NNP\"\n    ], \n    \"Groupement\": [\n        \"NNP\"\n    ], \n    \"anti-diabetes\": [\n        \"JJ\"\n    ], \n    \"phenomena\": [\n        \"NNS\"\n    ], \n    \"zotl\": [\n        \"NN\"\n    ], \n    \"Mason\": [\n        \"NNP\"\n    ], \n    \"Optique\": [\n        \"NNP\"\n    ], \n    \"melioration\": [\n        \"NN\"\n    ], \n    \"husk\": [\n        \"NN\"\n    ], \n    \"vociferous\": [\n        \"JJ\"\n    ], \n    \"KAL\": [\n        \"NNP\"\n    ], \n    \"drizzle\": [\n        \"NN\"\n    ], \n    \"Christensen\": [\n        \"NNP\"\n    ], \n    \"Homozygous\": [\n        \"JJ\"\n    ], \n    \"communes\": [\n        \"NNS\"\n    ], \n    \"Seventh\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"injects\": [\n        \"VBZ\"\n    ], \n    \"consultative\": [\n        \"JJ\"\n    ], \n    \"appreciative\": [\n        \"JJ\"\n    ], \n    \"Bystrzyca\": [\n        \"NNP\"\n    ], \n    \"Wishes\": [\n        \"NNS\"\n    ], \n    \"sponsoring\": [\n        \"VBG\"\n    ], \n    \"Slash-B\": [\n        \"NNP\"\n    ], \n    \"Polymerix\": [\n        \"NNP\"\n    ], \n    \"Seurat\": [\n        \"NNP\"\n    ], \n    \"Cabrini\": [\n        \"NNP\"\n    ], \n    \"individualist\": [\n        \"NN\"\n    ], \n    \"sale-leaseback\": [\n        \"NN\"\n    ], \n    \"goatee\": [\n        \"NN\"\n    ], \n    \"journal\": [\n        \"NN\"\n    ], \n    \"lecturers\": [\n        \"NNS\"\n    ], \n    \"carats\": [\n        \"NNS\"\n    ], \n    \"Australia-based\": [\n        \"JJ\"\n    ], \n    \"buy-out-related\": [\n        \"JJ\"\n    ], \n    \"variation\": [\n        \"NN\"\n    ], \n    \"unfleshed\": [\n        \"VBN\"\n    ], \n    \"smidgen\": [\n        \"NN\"\n    ], \n    \"individualism\": [\n        \"NN\"\n    ], \n    \"Canfor\": [\n        \"NNP\"\n    ], \n    \"interlinked\": [\n        \"VBN\"\n    ], \n    \"crankcase\": [\n        \"NN\"\n    ], \n    \"Tigreans\": [\n        \"NNPS\"\n    ], \n    \"Konrad\": [\n        \"NNP\"\n    ], \n    \"beige\": [\n        \"JJ\"\n    ], \n    \"puppies\": [\n        \"NNS\"\n    ], \n    \"tongue\": [\n        \"NN\"\n    ], \n    \"Insuring\": [\n        \"VBG\"\n    ], \n    \"turtle\": [\n        \"NN\"\n    ], \n    \"Dialogues\": [\n        \"NNP\"\n    ], \n    \"PMs\": [\n        \"NNS\"\n    ], \n    \"townships\": [\n        \"NNS\"\n    ], \n    \"attains\": [\n        \"VBZ\"\n    ], \n    \"corporate-development\": [\n        \"NN\"\n    ], \n    \"AirCal\": [\n        \"NNP\"\n    ], \n    \"panoramas\": [\n        \"NNS\"\n    ], \n    \"Thousands\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"reconstituting\": [\n        \"VBG\"\n    ], \n    \"PMR\": [\n        \"NNP\"\n    ], \n    \"synthesized\": [\n        \"VBN\"\n    ], \n    \"seat-sale\": [\n        \"JJ\"\n    ], \n    \"imperial\": [\n        \"JJ\"\n    ], \n    \"synthesizes\": [\n        \"VBZ\"\n    ], \n    \"synthesizer\": [\n        \"NN\"\n    ], \n    \"Jeannie\": [\n        \"NNP\"\n    ], \n    \"drownings\": [\n        \"NNS\"\n    ], \n    \"Shedding\": [\n        \"VBG\"\n    ], \n    \"neutral\": [\n        \"JJ\"\n    ], \n    \"f-As\": [\n        \"IN\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"one-act\": [\n        \"JJ\"\n    ], \n    \"kegs\": [\n        \"NNS\"\n    ], \n    \"threaten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Spicer\": [\n        \"NNP\"\n    ], \n    \"bridgeheads\": [\n        \"NNS\"\n    ], \n    \"presuppositions\": [\n        \"NNS\"\n    ], \n    \"program-maker\": [\n        \"NN\"\n    ], \n    \"paean\": [\n        \"NN\"\n    ], \n    \"storied\": [\n        \"JJ\"\n    ], \n    \"seven-concert\": [\n        \"JJ\"\n    ], \n    \"Increasingly\": [\n        \"RB\"\n    ], \n    \"Kuriles\": [\n        \"NNP\"\n    ], \n    \"instructing\": [\n        \"VBG\"\n    ], \n    \"accommodative\": [\n        \"JJ\"\n    ], \n    \"turnings\": [\n        \"NNS\"\n    ], \n    \"stories\": [\n        \"NNS\"\n    ], \n    \"empty\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"systematically-simple\": [\n        \"JJ\"\n    ], \n    \"mass-media\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Hispano\": [\n        \"NNP\"\n    ], \n    \"Blankenship\": [\n        \"NNP\"\n    ], \n    \"Cargo\": [\n        \"NNP\"\n    ], \n    \"Schwarzer\": [\n        \"NNP\"\n    ], \n    \"Headley\": [\n        \"NNP\"\n    ], \n    \"Banknote\": [\n        \"NNP\"\n    ], \n    \"MSX\": [\n        \"NNP\"\n    ], \n    \"MSU\": [\n        \"NNP\"\n    ], \n    \"Lake\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lithotripsy\": [\n        \"NN\"\n    ], \n    \"MSP\": [\n        \"NNP\"\n    ], \n    \"crystals\": [\n        \"NNS\"\n    ], \n    \"Mediterranean-inspired\": [\n        \"JJ\"\n    ], \n    \"Bohart\": [\n        \"NNP\"\n    ], \n    \"Bullfinch\": [\n        \"NN\"\n    ], \n    \"pussycat\": [\n        \"NN\"\n    ], \n    \"Slightam\": [\n        \"NNP\"\n    ], \n    \"rumors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"three-row\": [\n        \"JJ\"\n    ], \n    \"Superstores\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"tailoring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sunshine\": [\n        \"NNP\"\n    ], \n    \"Merrimac\": [\n        \"NNP\"\n    ], \n    \"sidechairs\": [\n        \"NNS\"\n    ], \n    \"Richstone\": [\n        \"NNP\"\n    ], \n    \"Mouth\": [\n        \"NNP\"\n    ], \n    \"stumps\": [\n        \"NNS\"\n    ], \n    \"Endgame\": [\n        \"NNP\"\n    ], \n    \"stumpy\": [\n        \"JJ\"\n    ], \n    \"Hachiyas\": [\n        \"NNPS\"\n    ], \n    \"Hees\": [\n        \"NNP\"\n    ], \n    \"Baseman\": [\n        \"NN\"\n    ], \n    \"experimenters\": [\n        \"NNS\"\n    ], \n    \"C.C.\": [\n        \"NNP\"\n    ], \n    \"MOST\": [\n        \"JJS\"\n    ], \n    \"Heed\": [\n        \"VB\"\n    ], \n    \"biotechnology\": [\n        \"NN\"\n    ], \n    \"empowers\": [\n        \"VBZ\"\n    ], \n    \"Heem\": [\n        \"NNP\"\n    ], \n    \"nine-state\": [\n        \"JJ\"\n    ], \n    \"pestilence\": [\n        \"NN\"\n    ], \n    \"Killion\": [\n        \"NNP\"\n    ], \n    \"persistent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Viscera\": [\n        \"NNPS\"\n    ], \n    \"unopposable\": [\n        \"JJ\"\n    ], \n    \"PGH\": [\n        \"NNP\"\n    ], \n    \"uneducated\": [\n        \"JJ\"\n    ], \n    \"lives\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"desert-bound\": [\n        \"JJ\"\n    ], \n    \"Strangely\": [\n        \"RB\"\n    ], \n    \"sunburnt\": [\n        \"JJ\"\n    ], \n    \"Shardlow\": [\n        \"NNP\"\n    ], \n    \"Davidge\": [\n        \"NNP\"\n    ], \n    \"mackerel\": [\n        \"NN\"\n    ], \n    \"Overseeing\": [\n        \"VBG\"\n    ], \n    \"plenary\": [\n        \"JJ\"\n    ], \n    \"sermon\": [\n        \"NN\"\n    ], \n    \"Thruston\": [\n        \"NNP\"\n    ], \n    \"encores\": [\n        \"NNS\"\n    ], \n    \"Rylie\": [\n        \"NNP\"\n    ], \n    \"two-dimensional\": [\n        \"JJ\"\n    ], \n    \"whose\": [\n        \"WP$\"\n    ], \n    \"Hose\": [\n        \"NNP\"\n    ], \n    \"Purgatory\": [\n        \"NNP\"\n    ], \n    \"calculate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Exceptional\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"syndciated\": [\n        \"VBN\"\n    ], \n    \"Rosalind\": [\n        \"NNP\"\n    ], \n    \"Host\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"four-square-block\": [\n        \"JJ\"\n    ], \n    \"land-owning\": [\n        \"JJ\"\n    ], \n    \"Beecher\": [\n        \"NNP\"\n    ], \n    \"Waterloo\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sidoti\": [\n        \"NNP\"\n    ], \n    \"rosiest\": [\n        \"JJS\"\n    ], \n    \"Turbinen\": [\n        \"NNP\"\n    ], \n    \"low-budget\": [\n        \"JJ\"\n    ], \n    \"embroider\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Sticking\": [\n        \"NNP\"\n    ], \n    \"Sukio\": [\n        \"NNP\"\n    ], \n    \"hath\": [\n        \"VBZ\"\n    ], \n    \"horse-blanket\": [\n        \"RB\"\n    ], \n    \"graced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"high-flying\": [\n        \"JJ\"\n    ], \n    \"Brubaker\": [\n        \"NNP\"\n    ], \n    \"Nepalese\": [\n        \"NNPS\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Buenas\": [\n        \"NNP\"\n    ], \n    \"graces\": [\n        \"NNS\"\n    ], \n    \"Dozen\": [\n        \"NNP\"\n    ], \n    \"seven-word\": [\n        \"JJ\"\n    ], \n    \"winded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"plummetted\": [\n        \"VBD\"\n    ], \n    \"Stifter\": [\n        \"NNP\"\n    ], \n    \"justices\": [\n        \"NNS\"\n    ], \n    \"winder\": [\n        \"NN\"\n    ], \n    \"Torrijos\": [\n        \"NNP\"\n    ], \n    \"worthlessness\": [\n        \"NN\"\n    ], \n    \"fuel-efficiency\": [\n        \"JJ\"\n    ], \n    \"state-approved\": [\n        \"JJ\"\n    ], \n    \"preferences\": [\n        \"NNS\"\n    ], \n    \"wreck\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"complexities\": [\n        \"NNS\"\n    ], \n    \"Hacienda\": [\n        \"NNP\"\n    ], \n    \"pragmatist\": [\n        \"NN\"\n    ], \n    \"hazy\": [\n        \"JJ\"\n    ], \n    \"liberated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"haze\": [\n        \"NN\"\n    ], \n    \"Imboden\": [\n        \"NNP\"\n    ], \n    \"sidled\": [\n        \"VBD\"\n    ], \n    \"missile-launch\": [\n        \"JJ\"\n    ], \n    \"coefficient\": [\n        \"NN\"\n    ], \n    \"descendents\": [\n        \"NNS\"\n    ], \n    \"repugnance\": [\n        \"NN\"\n    ], \n    \"perquisites\": [\n        \"NNS\"\n    ], \n    \"abstractly\": [\n        \"RB\"\n    ], \n    \"Professionally\": [\n        \"RB\"\n    ], \n    \"flailed\": [\n        \"VBD\"\n    ], \n    \"Krutch\": [\n        \"NNP\"\n    ], \n    \"Alternative-operator\": [\n        \"NN\"\n    ], \n    \"Leagues\": [\n        \"NNPS\"\n    ], \n    \"Smaedt\": [\n        \"NNP\"\n    ], \n    \"rests\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"economics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"credit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"sombre\": [\n        \"JJ\"\n    ], \n    \"exacting\": [\n        \"JJ\"\n    ], \n    \"Wonderland\": [\n        \"NNP\"\n    ], \n    \"demagogic\": [\n        \"JJ\"\n    ], \n    \"Serial\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"gaucheries\": [\n        \"NNS\"\n    ], \n    \"menial\": [\n        \"JJ\"\n    ], \n    \"management-controlled\": [\n        \"JJ\"\n    ], \n    \"grandkids\": [\n        \"NNS\"\n    ], \n    \"ice-cubes\": [\n        \"NNS\"\n    ], \n    \"Afraid\": [\n        \"JJ\"\n    ], \n    \"decries\": [\n        \"VBZ\"\n    ], \n    \"ozone-cancer\": [\n        \"JJ\"\n    ], \n    \"Rather\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Fittingly\": [\n        \"RB\"\n    ], \n    \"sports-apparel\": [\n        \"JJ\"\n    ], \n    \"food-production\": [\n        \"NN\"\n    ], \n    \"weevil\": [\n        \"NN\"\n    ], \n    \"double-married\": [\n        \"JJ\"\n    ], \n    \"Vandringsar\": [\n        \"NNP\"\n    ], \n    \"specifics\": [\n        \"NNS\"\n    ], \n    \"decried\": [\n        \"VBD\"\n    ], \n    \"Wyman\": [\n        \"NNP\"\n    ], \n    \"overworking\": [\n        \"VBG\"\n    ], \n    \"dictum\": [\n        \"NN\"\n    ], \n    \"criminals\": [\n        \"NNS\"\n    ], \n    \"Jewry\": [\n        \"NNP\"\n    ], \n    \"Includes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"leaks\": [\n        \"NNS\"\n    ], \n    \"five-seventeen\": [\n        \"JJ\"\n    ], \n    \"Stoltenberg\": [\n        \"NNP\"\n    ], \n    \"negociants\": [\n        \"NNS\"\n    ], \n    \"Photographer\": [\n        \"NNP\"\n    ], \n    \"Included\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Uhr\": [\n        \"NNP\"\n    ], \n    \"leaky\": [\n        \"JJ\"\n    ], \n    \"six-packs\": [\n        \"NNS\"\n    ], \n    \"Sorting\": [\n        \"VBG\"\n    ], \n    \"Sanctam\": [\n        \"NNP\"\n    ], \n    \"heart-to-heart\": [\n        \"JJ\"\n    ], \n    \"Bilbao\": [\n        \"NNP\"\n    ], \n    \"ring-labeled\": [\n        \"JJ\"\n    ], \n    \"frenzy\": [\n        \"NN\"\n    ], \n    \"adult\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"protozoan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"aligned\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"chi-chi\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"Pinion\": [\n        \"NNP\"\n    ], \n    \"Better-educated\": [\n        \"JJ\"\n    ], \n    \"verdant\": [\n        \"JJ\"\n    ], \n    \"Supply\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fraser\": [\n        \"NNP\"\n    ], \n    \"somber\": [\n        \"JJ\"\n    ], \n    \"Realtors\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"akin\": [\n        \"JJ\", \n        \"RB|JJ\"\n    ], \n    \"divergent\": [\n        \"JJ\"\n    ], \n    \"reindicting\": [\n        \"VBG\"\n    ], \n    \"sinusoidal\": [\n        \"JJ\"\n    ], \n    \"softener\": [\n        \"NN\"\n    ], \n    \"nicotine-free\": [\n        \"JJ\"\n    ], \n    \"litigation-support\": [\n        \"JJ\"\n    ], \n    \"derogate\": [\n        \"NN\"\n    ], \n    \"print-shop\": [\n        \"NN\"\n    ], \n    \"Charterhouse\": [\n        \"NNP\"\n    ], \n    \"surveyor\": [\n        \"NN\"\n    ], \n    \"Baldor\": [\n        \"NNP\"\n    ], \n    \"magnitudes\": [\n        \"NNS\"\n    ], \n    \"beef-feeding\": [\n        \"JJ\"\n    ], \n    \"Eurocracy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"multiple-state\": [\n        \"JJ\"\n    ], \n    \"Junge\": [\n        \"NNP\"\n    ], \n    \"masterly\": [\n        \"JJ\"\n    ], \n    \"gumming\": [\n        \"VBG\"\n    ], \n    \"Lure\": [\n        \"VBP\"\n    ], \n    \"predictors\": [\n        \"NNS\"\n    ], \n    \"Lakewood\": [\n        \"NNP\"\n    ], \n    \"Neue\": [\n        \"NNP\"\n    ], \n    \"Kai\": [\n        \"NNP\"\n    ], \n    \"Massacre\": [\n        \"NNP\"\n    ], \n    \"Kao\": [\n        \"NNP\"\n    ], \n    \"Irving\": [\n        \"NNP\"\n    ], \n    \"boroughs\": [\n        \"NNS\"\n    ], \n    \"Kas\": [\n        \"NNP\"\n    ], \n    \"twitching\": [\n        \"VBG\"\n    ], \n    \"dual-channel\": [\n        \"JJ\"\n    ], \n    \"estimable\": [\n        \"JJ\"\n    ], \n    \"Kay\": [\n        \"NNP\"\n    ], \n    \"Reintroducing\": [\n        \"VBG\"\n    ], \n    \"Surcliffes\": [\n        \"NNPS\"\n    ], \n    \"construe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"commencing\": [\n        \"VBG\"\n    ], \n    \"minority\": [\n        \"NN\", \n        \"JJ\", \n        \"NN|JJ\"\n    ], \n    \"Fragonard\": [\n        \"NNP\"\n    ], \n    \"Skeoch\": [\n        \"NNP\"\n    ], \n    \"Castro\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bottom-down\": [\n        \"JJ\"\n    ], \n    \"waterfront\": [\n        \"NN\"\n    ], \n    \"president\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"higher-paid\": [\n        \"JJ\"\n    ], \n    \"bark-nibbling\": [\n        \"JJ\"\n    ], \n    \"Jeanette\": [\n        \"NNP\"\n    ], \n    \"stepchildren\": [\n        \"NN\"\n    ], \n    \"overtaken\": [\n        \"VBN\"\n    ], \n    \"insistence\": [\n        \"NN\"\n    ], \n    \"Tranquility\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fungi\": [\n        \"NNS\"\n    ], \n    \"Kheel\": [\n        \"NNP\"\n    ], \n    \"Aldrin\": [\n        \"NNP\"\n    ], \n    \"plied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Sporadic\": [\n        \"JJ\"\n    ], \n    \"rider-fashion\": [\n        \"JJ\"\n    ], \n    \"EEAE-cellulose\": [\n        \"NN\"\n    ], \n    \"foresaw\": [\n        \"VBD\"\n    ], \n    \"larger-than-normal\": [\n        \"JJ\"\n    ], \n    \"co-operating\": [\n        \"VBG\"\n    ], \n    \"Pre-decoration\": [\n        \"NN\"\n    ], \n    \"High-definition\": [\n        \"JJ\"\n    ], \n    \"banged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mystics\": [\n        \"NNS\"\n    ], \n    \"shipbuilders\": [\n        \"NNS\"\n    ], \n    \"wickedness\": [\n        \"NN\"\n    ], \n    \"McNair\": [\n        \"NNP\"\n    ], \n    \"PRA\": [\n        \"NNP\"\n    ], \n    \"PRC\": [\n        \"NNP\"\n    ], \n    \"glycerine\": [\n        \"NN\"\n    ], \n    \"PRO\": [\n        \"FW\"\n    ], \n    \"PRI\": [\n        \"NNP\"\n    ], \n    \"drug-smuggling\": [\n        \"JJ\"\n    ], \n    \"encounter\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"decaffeinated\": [\n        \"VBN\"\n    ], \n    \"Equities\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"convalescence\": [\n        \"NN\"\n    ], \n    \"reinstituting\": [\n        \"VBG\"\n    ], \n    \"Hartung\": [\n        \"NNP\"\n    ], \n    \"Melvyn\": [\n        \"NNP\"\n    ], \n    \"well-adjusted\": [\n        \"JJ\"\n    ], \n    \"Lifeboat\": [\n        \"NNP\"\n    ], \n    \"pianists\": [\n        \"NNS\"\n    ], \n    \"therapy\": [\n        \"NN\"\n    ], \n    \"Generale\": [\n        \"NNP\"\n    ], \n    \"Generali\": [\n        \"NNP\"\n    ], \n    \"Telepictures\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"cautiousness\": [\n        \"NN\"\n    ], \n    \"ethicist\": [\n        \"NN\"\n    ], \n    \"bony\": [\n        \"JJ\"\n    ], \n    \"meat\": [\n        \"NN\"\n    ], \n    \"bono\": [\n        \"FW\"\n    ], \n    \"Straight-Arm\": [\n        \"NNP\"\n    ], \n    \"bona\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"meal\": [\n        \"NN\"\n    ], \n    \"bone\": [\n        \"NN\"\n    ], \n    \"mean\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"triple-sealed\": [\n        \"JJ\"\n    ], \n    \"improvise\": [\n        \"VB\"\n    ], \n    \"ATP\": [\n        \"NN\"\n    ], \n    \"reinsurers\": [\n        \"NNS\"\n    ], \n    \"Mauritania\": [\n        \"NNP\"\n    ], \n    \"Widmark\": [\n        \"NNP\"\n    ], \n    \"gunny\": [\n        \"NN\"\n    ], \n    \"Investigation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tunick\": [\n        \"NNP\"\n    ], \n    \"awry\": [\n        \"RB\", \n        \"RB|JJ\", \n        \"JJ\"\n    ], \n    \"navy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"rebuts\": [\n        \"VBZ\"\n    ], \n    \"Discovery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"quantify\": [\n        \"VB\"\n    ], \n    \"Winsor\": [\n        \"NNP\"\n    ], \n    \"Muse\": [\n        \"NNP\"\n    ], \n    \"F.B.I.\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Deepak\": [\n        \"NNP\"\n    ], \n    \"Romer\": [\n        \"NNP\"\n    ], \n    \"deflator\": [\n        \"NN\"\n    ], \n    \"novelistic\": [\n        \"JJ\"\n    ], \n    \"Karnak\": [\n        \"NNP\"\n    ], \n    \"bluntest\": [\n        \"RBS\"\n    ], \n    \"Muss\": [\n        \"NNP\"\n    ], \n    \"democratizing\": [\n        \"VBG\"\n    ], \n    \"Must\": [\n        \"MD\"\n    ], \n    \"rehearsed\": [\n        \"VBN\"\n    ], \n    \"relics\": [\n        \"NNS\"\n    ], \n    \"auto-making\": [\n        \"NN\"\n    ], \n    \"non-residential\": [\n        \"JJ\"\n    ], \n    \"anti-recession\": [\n        \"JJ\"\n    ], \n    \"Miyagi\": [\n        \"NNP\"\n    ], \n    \"Xiaoqing\": [\n        \"NNP\"\n    ], \n    \"whammy\": [\n        \"NN\"\n    ], \n    \"patriarchate\": [\n        \"NN\"\n    ], \n    \"frenziedly\": [\n        \"RB\"\n    ], \n    \"earned-run\": [\n        \"JJ\"\n    ], \n    \"backlit\": [\n        \"JJ\"\n    ], \n    \"Hollister\": [\n        \"NNP\"\n    ], \n    \"Allso\": [\n        \"RB\"\n    ], \n    \"specialty-chemicals\": [\n        \"NNS\"\n    ], \n    \"Trichrome\": [\n        \"JJ\"\n    ], \n    \"impossibility\": [\n        \"NN\"\n    ], \n    \"ankle-deep\": [\n        \"JJ\"\n    ], \n    \"Tygartis\": [\n        \"NNP\"\n    ], \n    \"anti-science\": [\n        \"JJ\"\n    ], \n    \"religionists\": [\n        \"NNS\"\n    ], \n    \"appreciations\": [\n        \"NNS\"\n    ], \n    \"Petipa-Tschaikowsky\": [\n        \"NNP\"\n    ], \n    \"C-Span\": [\n        \"NNP\"\n    ], \n    \"Cafe\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bioengineer\": [\n        \"VB\"\n    ], \n    \"half-cup\": [\n        \"JJ\"\n    ], \n    \"wronged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"features\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"thereon\": [\n        \"RB\"\n    ], \n    \"Buddhist\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"University-EPA\": [\n        \"NNP\"\n    ], \n    \"comforted\": [\n        \"VBN\"\n    ], \n    \"Essar\": [\n        \"NNP\"\n    ], \n    \"Sociological\": [\n        \"JJ\"\n    ], \n    \"RULE\": [\n        \"VBP\"\n    ], \n    \"RMd\": [\n        \"NN\"\n    ], \n    \"semiempirical\": [\n        \"JJ\"\n    ], \n    \"Sonambula\": [\n        \"NNP\"\n    ], \n    \"torpid\": [\n        \"JJ\"\n    ], \n    \"leaders\": [\n        \"NNS\"\n    ], \n    \"RMS\": [\n        \"NNP\"\n    ], \n    \"annotated\": [\n        \"VBN\"\n    ], \n    \"Conder\": [\n        \"NNP\"\n    ], \n    \"Introduce\": [\n        \"VB\"\n    ], \n    \"Festival\": [\n        \"NNP\"\n    ], \n    \"twenties\": [\n        \"NNS\"\n    ], \n    \"Vindication\": [\n        \"NNP\"\n    ], \n    \"RMI\": [\n        \"NNP\"\n    ], \n    \"Wagner-Peyser\": [\n        \"NNP\"\n    ], \n    \"Body-building\": [\n        \"JJ\"\n    ], \n    \"solemnly\": [\n        \"RB\"\n    ], \n    \"Symbol:HRB\": [\n        \"NNP\"\n    ], \n    \"IRONY\": [\n        \"NN\"\n    ], \n    \"Malden\": [\n        \"NNP\"\n    ], \n    \"Schmalensee\": [\n        \"NNP\"\n    ], \n    \"Humphrey\": [\n        \"NNP\"\n    ], \n    \"Safely\": [\n        \"RB\"\n    ], \n    \"coverages\": [\n        \"NNS\"\n    ], \n    \"distance\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Consider\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Stillerman\": [\n        \"NNP\"\n    ], \n    \"college-oriented\": [\n        \"JJ\"\n    ], \n    \"enabled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"prayin\": [\n        \"NN\"\n    ], \n    \"Louis-Dreyfus\": [\n        \"NNP\"\n    ], \n    \"pleadingly\": [\n        \"RB\"\n    ], \n    \"Guerin\": [\n        \"NNP\"\n    ], \n    \"street\": [\n        \"NN\"\n    ], \n    \"stratified\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"ex-Communist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sajak\": [\n        \"NNP\"\n    ], \n    \"anatomically\": [\n        \"RB\"\n    ], \n    \"realestate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"extracting\": [\n        \"VBG\"\n    ], \n    \"mink\": [\n        \"NN\"\n    ], \n    \"far-fetched\": [\n        \"JJ\"\n    ], \n    \"unthinking\": [\n        \"JJ\"\n    ], \n    \"low-priced\": [\n        \"JJ\"\n    ], \n    \"Shelly\": [\n        \"NNP\"\n    ], \n    \"LINK-UP\": [\n        \"NN\"\n    ], \n    \"Designing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"obviously\": [\n        \"RB\"\n    ], \n    \"mint\": [\n        \"NN\"\n    ], \n    \"Buster\": [\n        \"NNP\"\n    ], \n    \"J.I.\": [\n        \"NNP\"\n    ], \n    \"Schneier\": [\n        \"NNP\"\n    ], \n    \"proto-Athabascan\": [\n        \"NN\"\n    ], \n    \"sharecroppers\": [\n        \"NNS\"\n    ], \n    \"Overseers\": [\n        \"NNPS\"\n    ], \n    \"Albers\": [\n        \"NNP\"\n    ], \n    \"Albert\": [\n        \"NNP\"\n    ], \n    \"divulge\": [\n        \"VB\"\n    ], \n    \"book-review\": [\n        \"NN\"\n    ], \n    \"Devol\": [\n        \"NNP\"\n    ], \n    \"Devon\": [\n        \"NNP\"\n    ], \n    \"CLAUSE\": [\n        \"NN\"\n    ], \n    \"Superslims\": [\n        \"NNPS\"\n    ], \n    \"Alberg\": [\n        \"NNP\"\n    ], \n    \"Directed\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"caricatures\": [\n        \"NNS\"\n    ], \n    \"single-firm\": [\n        \"JJ\"\n    ], \n    \"lowball\": [\n        \"NN\"\n    ], \n    \"Knight\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"psychological-intellectual\": [\n        \"JJ\"\n    ], \n    \"impurities\": [\n        \"NNS\"\n    ], \n    \"translator\": [\n        \"NN\"\n    ], \n    \"TSEM\": [\n        \"NN\"\n    ], \n    \"regular\": [\n        \"JJ\"\n    ], \n    \"caricatured\": [\n        \"VBN\"\n    ], \n    \"VecTrol\": [\n        \"NNP\"\n    ], \n    \"Cutler\": [\n        \"NNP\"\n    ], \n    \"Stendhal\": [\n        \"NNP\"\n    ], \n    \"Coca-Cola\": [\n        \"NNP\"\n    ], \n    \"long-planned\": [\n        \"JJ\"\n    ], \n    \"reimbursement\": [\n        \"NN\"\n    ], \n    \"mitigate\": [\n        \"VB\"\n    ], \n    \"Hovnanian\": [\n        \"NNP\"\n    ], \n    \"Yumiko\": [\n        \"NNP\"\n    ], \n    \"mushy\": [\n        \"JJ\"\n    ], \n    \"Wiederaufbau\": [\n        \"NNP\"\n    ], \n    \"shade-darkened\": [\n        \"JJ\"\n    ], \n    \"save-the-universe\": [\n        \"JJ\"\n    ], \n    \"consumer\": [\n        \"NN\"\n    ], \n    \"consumes\": [\n        \"VBZ\"\n    ], \n    \"Thiot\": [\n        \"NNP\"\n    ], \n    \"pruta\": [\n        \"NN\"\n    ], \n    \"spangle\": [\n        \"NN\"\n    ], \n    \"second-echelon\": [\n        \"JJ\"\n    ], \n    \"Spiotto\": [\n        \"NNP\"\n    ], \n    \"chilblains\": [\n        \"NNS\"\n    ], \n    \"Lafe\": [\n        \"NNP\"\n    ], \n    \"bearer\": [\n        \"NN\"\n    ], \n    \"Rebuilding\": [\n        \"VBG\"\n    ], \n    \"carbons\": [\n        \"NNS\"\n    ], \n    \"explain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"oxytetracycline\": [\n        \"NN\"\n    ], \n    \"Detention\": [\n        \"NNP\"\n    ], \n    \"Free\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Fred\": [\n        \"NNP\"\n    ], \n    \"brimstone\": [\n        \"NN\"\n    ], \n    \"Frey\": [\n        \"NNP\"\n    ], \n    \"ebbing\": [\n        \"VBG\"\n    ], \n    \"stabbing\": [\n        \"VBG\"\n    ], \n    \"clobbered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mischievous\": [\n        \"JJ\"\n    ], \n    \"boyfriend\": [\n        \"NN\"\n    ], \n    \"Fret\": [\n        \"VB\"\n    ], \n    \"waylaid\": [\n        \"VBN\"\n    ], \n    \"patter\": [\n        \"NN\"\n    ], \n    \"consumables\": [\n        \"NNS\"\n    ], \n    \"raiment\": [\n        \"NN\"\n    ], \n    \"patted\": [\n        \"VBD\"\n    ], \n    \"Carlile\": [\n        \"NNP\"\n    ], \n    \"technicians\": [\n        \"NNS\"\n    ], \n    \"meteors\": [\n        \"NNS\"\n    ], \n    \"Philinte\": [\n        \"NNP\"\n    ], \n    \"Hillis\": [\n        \"NNP\"\n    ], \n    \"Leaders\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"brewery-scion-turned-banker\": [\n        \"NN\"\n    ], \n    \"Washington\": [\n        \"NNP\"\n    ], \n    \"Searching\": [\n        \"VBG\"\n    ], \n    \"disco\": [\n        \"NN\"\n    ], \n    \"Prufrock\": [\n        \"NNP\"\n    ], \n    \"ABUSE\": [\n        \"NN\"\n    ], \n    \"architecture\": [\n        \"NN\"\n    ], \n    \"birth-control\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cower\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"grilled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Schwerdt\": [\n        \"NNP\"\n    ], \n    \"Completion\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"decides\": [\n        \"VBZ\"\n    ], \n    \"Sprenger\": [\n        \"NNP\"\n    ], \n    \"Tracys\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"crewmen\": [\n        \"NNS\"\n    ], \n    \"pooling-of-interest\": [\n        \"JJ\"\n    ], \n    \"Schumer\": [\n        \"NNP\"\n    ], \n    \"decided\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"well-documented\": [\n        \"JJ\"\n    ], \n    \"stress-temperature\": [\n        \"JJ\"\n    ], \n    \"UPJOHN\": [\n        \"NNP\"\n    ], \n    \"Boost\": [\n        \"VB\", \n        \"VBP\", \n        \"NNP\"\n    ], \n    \"Autosuggestibility\": [\n        \"NN\"\n    ], \n    \"voyage\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"reprinting\": [\n        \"VBG\"\n    ], \n    \"Greenwald\": [\n        \"NNP\"\n    ], \n    \"consequence\": [\n        \"NN\"\n    ], \n    \"smacks\": [\n        \"VBZ\"\n    ], \n    \"Nomenklatura\": [\n        \"NN\"\n    ], \n    \"Controller\": [\n        \"NNP\"\n    ], \n    \"day-old\": [\n        \"JJ\"\n    ], \n    \"pets\": [\n        \"NNS\"\n    ], \n    \"Bleach\": [\n        \"NN\"\n    ], \n    \"phenonenon\": [\n        \"NN\"\n    ], \n    \"Overt\": [\n        \"JJ\"\n    ], \n    \"shoemaking\": [\n        \"VBG\"\n    ], \n    \"unconstitutional\": [\n        \"JJ\"\n    ], \n    \"Serrana\": [\n        \"NNP\"\n    ], \n    \"triplet\": [\n        \"NN\"\n    ], \n    \"brat\": [\n        \"NN\"\n    ], \n    \"Dusty\": [\n        \"NNP\"\n    ], \n    \"Wilms\": [\n        \"NNP\"\n    ], \n    \"Peyrelongue\": [\n        \"NNP\"\n    ], \n    \"Counter\": [\n        \"NNP\"\n    ], \n    \"staves\": [\n        \"VBZ\"\n    ], \n    \"Wickham\": [\n        \"NNP\"\n    ], \n    \"questioner\": [\n        \"NN\"\n    ], \n    \"Toast\": [\n        \"NNP\"\n    ], \n    \"Hospitality\": [\n        \"NNP\"\n    ], \n    \"Wilma\": [\n        \"NNP\"\n    ], \n    \"Ehlers\": [\n        \"NNP\"\n    ], \n    \"disorderly\": [\n        \"JJ\"\n    ], \n    \"CONVICTION\": [\n        \"NN\"\n    ], \n    \"cutglass\": [\n        \"JJ\"\n    ], \n    \"regattas\": [\n        \"NNS\"\n    ], \n    \"pollinated\": [\n        \"VBN\"\n    ], \n    \"against\": [\n        \"IN\"\n    ], \n    \"Abboud\": [\n        \"NNP\"\n    ], \n    \"per-game\": [\n        \"JJ\"\n    ], \n    \"Basile\": [\n        \"NNP\"\n    ], \n    \"peddling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pate\": [\n        \"NN\"\n    ], \n    \"Metier\": [\n        \"NNP\"\n    ], \n    \"gushed\": [\n        \"VBD\"\n    ], \n    \"portant\": [\n        \"FW\"\n    ], \n    \"low-paid\": [\n        \"JJ\"\n    ], \n    \"loader\": [\n        \"NN\"\n    ], \n    \"initiative\": [\n        \"NN\"\n    ], \n    \"gusher\": [\n        \"NN\"\n    ], \n    \"gushes\": [\n        \"VBZ\"\n    ], \n    \"loaded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"arsenic\": [\n        \"NN\"\n    ], \n    \"Cezanne\": [\n        \"NNP\"\n    ], \n    \"Elkan\": [\n        \"NNP\"\n    ], \n    \"Ulysses\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kingan\": [\n        \"NNP\"\n    ], \n    \"riled\": [\n        \"VBN\"\n    ], \n    \"Macfarlane\": [\n        \"NNP\"\n    ], \n    \"fluff\": [\n        \"NN\"\n    ], \n    \"Tineo\": [\n        \"NNP\"\n    ], \n    \"futility\": [\n        \"NN\"\n    ], \n    \"Beardsley\": [\n        \"NNP\"\n    ], \n    \"referendum\": [\n        \"NN\"\n    ], \n    \"erect\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"milieu\": [\n        \"NN\"\n    ], \n    \"Beardslee\": [\n        \"NNP\"\n    ], \n    \"Bitting\": [\n        \"NNP\"\n    ], \n    \"gadgetry\": [\n        \"NN\"\n    ], \n    \"riles\": [\n        \"VBZ\"\n    ], \n    \"idol\": [\n        \"NN\"\n    ], \n    \"Mohawk\": [\n        \"NNP\"\n    ], \n    \"suppress\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Negas\": [\n        \"NNP\"\n    ], \n    \"Prolonged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"decrepit\": [\n        \"JJ\"\n    ], \n    \"generals\": [\n        \"NNS\"\n    ], \n    \"regretted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"censored\": [\n        \"VBN\"\n    ], \n    \"Rocket\": [\n        \"NNP\"\n    ], \n    \"picketing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Athletic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Intl\": [\n        \"NNP\"\n    ], \n    \"Into\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Dollar\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"say\": [\n        \"VBP\", \n        \"FW\", \n        \"NN\", \n        \"NNP\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"all-stock\": [\n        \"JJ\"\n    ], \n    \"melted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"exiling\": [\n        \"VBG\"\n    ], \n    \"Elinsky\": [\n        \"NNP\"\n    ], \n    \"mousy\": [\n        \"JJ\"\n    ], \n    \"Ignacio\": [\n        \"NNP\"\n    ], \n    \"American-Negro\": [\n        \"NNP\"\n    ], \n    \"pseudo-feeling\": [\n        \"NN\"\n    ], \n    \"strait-laced\": [\n        \"JJ\"\n    ], \n    \"defeated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Uniconer\": [\n        \"NNP\"\n    ], \n    \"Liberals\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Sejm\": [\n        \"NNP\"\n    ], \n    \"faked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mouse\": [\n        \"NN\"\n    ], \n    \"extraditions\": [\n        \"NNS\"\n    ], \n    \"Georgetown\": [\n        \"NNP\"\n    ], \n    \"Epson\": [\n        \"NNP\"\n    ], \n    \"rovings\": [\n        \"NNS\"\n    ], \n    \"counter-attacked\": [\n        \"VBD\"\n    ], \n    \"Epsom\": [\n        \"NNP\"\n    ], \n    \"entitles\": [\n        \"VBZ\"\n    ], \n    \"belle\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"jotting\": [\n        \"VBG\"\n    ], \n    \"Lemont\": [\n        \"NNP\"\n    ], \n    \"N.D.\": [\n        \"NNP\"\n    ], \n    \"belly\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"contaminate\": [\n        \"VB\"\n    ], \n    \"mixtures\": [\n        \"NNS\"\n    ], \n    \"rupiah\": [\n        \"NN\"\n    ], \n    \"Haruyuki\": [\n        \"NNP\"\n    ], \n    \"showing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Franco-Japanese\": [\n        \"NNP\"\n    ], \n    \"bells\": [\n        \"NNS\"\n    ], \n    \"Hisham\": [\n        \"NNP\"\n    ], \n    \"Residence\": [\n        \"NNP\"\n    ], \n    \"differing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"kit\": [\n        \"NN\"\n    ], \n    \"garlic\": [\n        \"NN\"\n    ], \n    \"kin\": [\n        \"NN\", \n        \"JJ\", \n        \"MD\"\n    ], \n    \"supposing\": [\n        \"VBG\"\n    ], \n    \"guilders\": [\n        \"NNS\"\n    ], \n    \"kif\": [\n        \"NN\"\n    ], \n    \"kid\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Italtel\": [\n        \"NN\"\n    ], \n    \"drowsily\": [\n        \"RB\"\n    ], \n    \"unconcerned\": [\n        \"JJ\"\n    ], \n    \"ALQ-178\": [\n        \"NNP\"\n    ], \n    \"virile\": [\n        \"JJ\"\n    ], \n    \"high-stepped\": [\n        \"JJ\"\n    ], \n    \"Wesson\": [\n        \"NNP\"\n    ], \n    \"lease-funded\": [\n        \"JJ\"\n    ], \n    \"Kobayashi\": [\n        \"NNP\"\n    ], \n    \"Bilzerian\": [\n        \"NNP\"\n    ], \n    \"Errors\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"consciousness\": [\n        \"NN\"\n    ], \n    \"poised...\": [\n        \":\"\n    ], \n    \"Bureaucrats\": [\n        \"NNS\"\n    ], \n    \"Overfall\": [\n        \"NNP\"\n    ], \n    \"RVs\": [\n        \"NNS\"\n    ], \n    \"personages\": [\n        \"NNS\"\n    ], \n    \"Branch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Heavenly\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Lagerlof\": [\n        \"NNP\"\n    ], \n    \"Branca\": [\n        \"NNP\"\n    ], \n    \"character\": [\n        \"NN\"\n    ], \n    \"inconclusively\": [\n        \"RB\"\n    ], \n    \"quarrelsome\": [\n        \"JJ\"\n    ], \n    \"ascents\": [\n        \"NNS\"\n    ], \n    \"knuckle-duster\": [\n        \"NN\"\n    ], \n    \"completely-restored\": [\n        \"JJ\"\n    ], \n    \"one-kiloton\": [\n        \"JJ\"\n    ], \n    \"stockpiling\": [\n        \"NN\"\n    ], \n    \"auspicious\": [\n        \"JJ\"\n    ], \n    \"blanching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Scorsese\": [\n        \"NNP\"\n    ], \n    \"erected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Djemaa\": [\n        \"NNP\"\n    ], \n    \"Aikawa\": [\n        \"NNP\"\n    ], \n    \"triple-Crated\": [\n        \"JJ\"\n    ], \n    \"performing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"unnecessary\": [\n        \"JJ\"\n    ], \n    \"Inpatient\": [\n        \"NN\"\n    ], \n    \"ridicules\": [\n        \"VBZ\"\n    ], \n    \"Wattley\": [\n        \"NNP\"\n    ], \n    \"Agnellis\": [\n        \"NNPS\"\n    ], \n    \"never-to-be-forgotten\": [\n        \"JJ\"\n    ], \n    \"belly-up\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Marching\": [\n        \"NNP\"\n    ], \n    \"Kowalski\": [\n        \"NNP\"\n    ], \n    \"Milpitas\": [\n        \"NNP\"\n    ], \n    \"Helga\": [\n        \"NNP\"\n    ], \n    \"Droz\": [\n        \"NNP\"\n    ], \n    \"Broad\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Garrett\": [\n        \"NNP\"\n    ], \n    \"bombarded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"eight-month\": [\n        \"JJ\"\n    ], \n    \"Yeargin\": [\n        \"NNP\"\n    ], \n    \"intern\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Jotaro\": [\n        \"NNP\"\n    ], \n    \"Moslems\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Arvind\": [\n        \"NNP\"\n    ], \n    \"eked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"plaintively\": [\n        \"RB\"\n    ], \n    \"contrarieties\": [\n        \"NNS\"\n    ], \n    \"Mikulich\": [\n        \"NNP\"\n    ], \n    \"theatrical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"eel\": [\n        \"NN\"\n    ], \n    \"HIV\\\\/AIDS\": [\n        \"JJ\"\n    ], \n    \"conquering\": [\n        \"VBG\"\n    ], \n    \"Drinking\": [\n        \"VBG\"\n    ], \n    \"larkspur\": [\n        \"NN\"\n    ], \n    \"Marla\": [\n        \"NNP\"\n    ], \n    \"prairies\": [\n        \"NNS\"\n    ], \n    \"foreign-transaction\": [\n        \"NN\"\n    ], \n    \"Whitley\": [\n        \"NNP\"\n    ], \n    \"humanists\": [\n        \"NNS\"\n    ], \n    \"faery\": [\n        \"NN\"\n    ], \n    \"power-steering\": [\n        \"NN\"\n    ], \n    \"unorganized\": [\n        \"JJ\"\n    ], \n    \"protagonist\": [\n        \"NN\"\n    ], \n    \"Georgia-Pacific\": [\n        \"NNP\"\n    ], \n    \"compleated\": [\n        \"VBN\"\n    ], \n    \"information-gathering\": [\n        \"JJ\"\n    ], \n    \"empowerment\": [\n        \"NN\"\n    ], \n    \"flourished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sector...\": [\n        \":\"\n    ], \n    \"ribs\": [\n        \"NNS\"\n    ], \n    \"cliche\": [\n        \"NN\"\n    ], \n    \"first-home\": [\n        \"JJ\"\n    ], \n    \"Charlene\": [\n        \"NNP\"\n    ], \n    \"outboards\": [\n        \"NNS\"\n    ], \n    \"outrage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"warrent\": [\n        \"JJ\"\n    ], \n    \"Allis-Chalmers\": [\n        \"NNP\"\n    ], \n    \"marshal\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"dim-witted\": [\n        \"JJ\"\n    ], \n    \"palm-lined\": [\n        \"JJ\"\n    ], \n    \"tastier\": [\n        \"JJR\"\n    ], \n    \"birdied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"PW4000\": [\n        \"NNP\"\n    ], \n    \"Coupe\": [\n        \"NNP\"\n    ], \n    \"overkill\": [\n        \"NN\"\n    ], \n    \"carving\": [\n        \"VBG\"\n    ], \n    \"Frustrated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"birdies\": [\n        \"NNS\"\n    ], \n    \"Rickettsia\": [\n        \"NN\"\n    ], \n    \"TEK\": [\n        \"NNP\"\n    ], \n    \"province\": [\n        \"NN\"\n    ], \n    \"husbun\": [\n        \"NN\"\n    ], \n    \"inductions\": [\n        \"NNS\"\n    ], \n    \"Riepe\": [\n        \"NNP\"\n    ], \n    \"TEA\": [\n        \"NNP\"\n    ], \n    \"Shawl\": [\n        \"NN\"\n    ], \n    \"off-stage\": [\n        \"NN\"\n    ], \n    \"sojourner\": [\n        \"NN\"\n    ], \n    \"maximum-security\": [\n        \"JJ\"\n    ], \n    \"vehemence\": [\n        \"NN\"\n    ], \n    \"flu-like\": [\n        \"JJ\"\n    ], \n    \"TEP\": [\n        \"NNP\"\n    ], \n    \"Safavids\": [\n        \"NNPS\"\n    ], \n    \"polyols\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"gentrified\": [\n        \"VBN\"\n    ], \n    \"half-interest\": [\n        \"NN\"\n    ], \n    \"messhall\": [\n        \"NN\"\n    ], \n    \"idealized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"largest-ever\": [\n        \"JJ\"\n    ], \n    \"CORP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"diaper\": [\n        \"NN\"\n    ], \n    \"turpentine\": [\n        \"NN\"\n    ], \n    \"stockbrokerage\": [\n        \"NN\"\n    ], \n    \"bevels\": [\n        \"NNS\"\n    ], \n    \"McCone\": [\n        \"NNP\"\n    ], \n    \"fleawort\": [\n        \"NN\"\n    ], \n    \"mouthed\": [\n        \"VBD\"\n    ], \n    \"lilies\": [\n        \"NNS\"\n    ], \n    \"Archimedes\": [\n        \"NNP\"\n    ], \n    \"detective\": [\n        \"NN\"\n    ], \n    \"punnished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"milligrams\": [\n        \"NNS\"\n    ], \n    \"bounds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"conformists\": [\n        \"NNS\"\n    ], \n    \"Grateful\": [\n        \"NNP\"\n    ], \n    \"plaintiffs\": [\n        \"NNS\"\n    ], \n    \"urbanism\": [\n        \"NN\"\n    ], \n    \"Interhome\": [\n        \"NNP\"\n    ], \n    \"breathe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"frowzy\": [\n        \"JJ\"\n    ], \n    \"bachelor-type\": [\n        \"JJ\"\n    ], \n    \"Oakwood\": [\n        \"NNP\"\n    ], \n    \"Franciscan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"graft-riddled\": [\n        \"JJ\"\n    ], \n    \"discounters\": [\n        \"NNS\"\n    ], \n    \"gland\": [\n        \"NN\"\n    ], \n    \"single-handedly\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"non-brand\": [\n        \"JJ\"\n    ], \n    \"pedagogue\": [\n        \"NN\"\n    ], \n    \"anthrax\": [\n        \"NN\"\n    ], \n    \"cushioned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"audition\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"aunts\": [\n        \"NNS\"\n    ], \n    \"authoritative\": [\n        \"JJ\"\n    ], \n    \"skirted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Andrew\": [\n        \"NNP\"\n    ], \n    \"actuators\": [\n        \"NNS\"\n    ], \n    \"Andrei\": [\n        \"NNP\"\n    ], \n    \"Timing\": [\n        \"NN\"\n    ], \n    \"laser-treatment\": [\n        \"NN\"\n    ], \n    \"Hasbrouk\": [\n        \"NNP\"\n    ], \n    \"shows\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Andree\": [\n        \"NNP\"\n    ], \n    \"optically\": [\n        \"RB\"\n    ], \n    \"TREATING\": [\n        \"VBG\"\n    ], \n    \"cash-short\": [\n        \"JJ\"\n    ], \n    \"Armbro\": [\n        \"NNP\"\n    ], \n    \"clear-cut\": [\n        \"JJ\"\n    ], \n    \"sensuous\": [\n        \"JJ\"\n    ], \n    \"hollered\": [\n        \"VBD\"\n    ], \n    \"on-the-spot\": [\n        \"JJ\"\n    ], \n    \"shatters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Koshare\": [\n        \"NNP\"\n    ], \n    \"Berean\": [\n        \"NNP\"\n    ], \n    \"Falvey\": [\n        \"NNP\"\n    ], \n    \"Ottoni\": [\n        \"NNP\"\n    ], \n    \"pension-insurance\": [\n        \"JJ\"\n    ], \n    \"shelf-life\": [\n        \"NN\"\n    ], \n    \"tiger-paw\": [\n        \"NN\"\n    ], \n    \"Medicis\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Okobank\": [\n        \"NNP\"\n    ], \n    \"myrrh\": [\n        \"NN\"\n    ], \n    \"non-competition\": [\n        \"JJ\"\n    ], \n    \"prepupal\": [\n        \"JJ\"\n    ], \n    \"Orient\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Woodcock\": [\n        \"NNP\"\n    ], \n    \"decelerate\": [\n        \"VB\"\n    ], \n    \"million-franc\": [\n        \"JJ\"\n    ], \n    \"customary\": [\n        \"JJ\"\n    ], \n    \"proletariat\": [\n        \"NN\"\n    ], \n    \"teary-eyed\": [\n        \"JJ\"\n    ], \n    \"go-along\": [\n        \"JJ\"\n    ], \n    \"downplays\": [\n        \"VBZ\"\n    ], \n    \"Micropolis\": [\n        \"NNP\"\n    ], \n    \"assailants\": [\n        \"NNS\"\n    ], \n    \"Erasmus\": [\n        \"NNP\"\n    ], \n    \"proletarian\": [\n        \"JJ\"\n    ], \n    \"resourceful\": [\n        \"JJ\"\n    ], \n    \"Phenolic\": [\n        \"JJ\"\n    ], \n    \"Shortages\": [\n        \"NNS\"\n    ], \n    \"fancies\": [\n        \"VBZ\"\n    ], \n    \"breathy\": [\n        \"JJ\"\n    ], \n    \"burnout\": [\n        \"NN\"\n    ], \n    \"sufferer\": [\n        \"NN\"\n    ], \n    \"Monde\": [\n        \"NNP\"\n    ], \n    \"skirting\": [\n        \"VBG\"\n    ], \n    \"suffered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"simmer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"DiNardo\": [\n        \"NNP\"\n    ], \n    \"shoot\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"deltoids\": [\n        \"NNS\"\n    ], \n    \"Nutting\": [\n        \"NNP\"\n    ], \n    \"Moskovskaya\": [\n        \"NNP\"\n    ], \n    \"estranging\": [\n        \"JJ\"\n    ], \n    \"piggybacking\": [\n        \"VBG\"\n    ], \n    \"Eichmann\": [\n        \"NNP\"\n    ], \n    \"Spanish-born\": [\n        \"JJ\"\n    ], \n    \"Roybal\": [\n        \"NNP\"\n    ], \n    \"mashing\": [\n        \"VBG\"\n    ], \n    \"Liquidation\": [\n        \"NNP\"\n    ], \n    \"trended\": [\n        \"VBN\"\n    ], \n    \"futurists\": [\n        \"NNS\"\n    ], \n    \"Eldest\": [\n        \"JJS\"\n    ], \n    \"Propylaea\": [\n        \"NNP\"\n    ], \n    \"item\": [\n        \"NN\"\n    ], \n    \"excellence\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"industrial-vehicle\": [\n        \"NN\"\n    ], \n    \"Gardini\": [\n        \"NNP\"\n    ], \n    \"capitalgains\": [\n        \"NNS\"\n    ], \n    \"non-answer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pedde\": [\n        \"NNP\"\n    ], \n    \"anesthetic\": [\n        \"NN\"\n    ], \n    \"Transkei\": [\n        \"NNP\"\n    ], \n    \"nineties\": [\n        \"NNS\"\n    ], \n    \"House.\": [\n        \"NNP\"\n    ], \n    \"zooms\": [\n        \"VBZ\"\n    ], \n    \"inconsequential\": [\n        \"JJ\"\n    ], \n    \"Antiques\": [\n        \"NNPS\"\n    ], \n    \"Accademia\": [\n        \"NNP\"\n    ], \n    \"Burlington\": [\n        \"NNP\"\n    ], \n    \"Shakespeare\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"semifinals\": [\n        \"NNS\"\n    ], \n    \"twaddle\": [\n        \"NN\"\n    ], \n    \"stealer\": [\n        \"NN\"\n    ], \n    \"adds\": [\n        \"VBZ\"\n    ], \n    \"negotatiators\": [\n        \"NNS\"\n    ], \n    \"micro-organisms\": [\n        \"NNS\"\n    ], \n    \"Appreciation\": [\n        \"NNP\"\n    ], \n    \"sweaters\": [\n        \"NNS\"\n    ], \n    \"McClintock\": [\n        \"NNP\"\n    ], \n    \"big-borrowing\": [\n        \"JJ\"\n    ], \n    \"Economics\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Tuscany\": [\n        \"NNP\"\n    ], \n    \"Presidency\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"NetFrame\": [\n        \"NNP\"\n    ], \n    \"mussels\": [\n        \"NNS\"\n    ], \n    \"makeup\": [\n        \"NN\"\n    ], \n    \"Haddad\": [\n        \"NNP\"\n    ], \n    \"availed\": [\n        \"VBD\"\n    ], \n    \"superstition\": [\n        \"NN\"\n    ], \n    \"dwelled\": [\n        \"VBN\"\n    ], \n    \"Neidl\": [\n        \"NNP\"\n    ], \n    \"airfields\": [\n        \"NNS\"\n    ], \n    \"tangent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"kilometers\": [\n        \"NNS\"\n    ], \n    \"Cementing\": [\n        \"VBG\"\n    ], \n    \"tuxedoed\": [\n        \"JJ\"\n    ], \n    \"nine-digit\": [\n        \"JJ\"\n    ], \n    \"bruises\": [\n        \"NNS\"\n    ], \n    \"torso-defining\": [\n        \"JJ\"\n    ], \n    \"somatic\": [\n        \"JJ\"\n    ], \n    \"expulsion\": [\n        \"NN\"\n    ], \n    \"simultaneous\": [\n        \"JJ\"\n    ], \n    \"historical\": [\n        \"JJ\"\n    ], \n    \"suggestion\": [\n        \"NN\"\n    ], \n    \"raccoon\": [\n        \"NN\"\n    ], \n    \"apartment-building\": [\n        \"NN\"\n    ], \n    \"conveniently\": [\n        \"RB\"\n    ], \n    \"swipes\": [\n        \"VBZ\"\n    ], \n    \"Technology\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bruised\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"elect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"undepicted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"withal\": [\n        \"IN\"\n    ], \n    \"patriots\": [\n        \"NNS\"\n    ], \n    \"verge\": [\n        \"NN\"\n    ], \n    \"teen-agers\": [\n        \"NNS\"\n    ], \n    \"Aim\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"surmount\": [\n        \"VB\"\n    ], \n    \"Spinney\": [\n        \"NNP\"\n    ], \n    \"Plaintiffs\": [\n        \"NNS\"\n    ], \n    \"hotels\": [\n        \"NNS\"\n    ], \n    \"wealth\": [\n        \"NN\"\n    ], \n    \"Komsomol\": [\n        \"NNP\"\n    ], \n    \"aye\": [\n        \"RB\"\n    ], \n    \"pluses\": [\n        \"NNS\"\n    ], \n    \"joyous\": [\n        \"JJ\"\n    ], \n    \"aya\": [\n        \"NN\"\n    ], \n    \"complaisant\": [\n        \"JJ\"\n    ], \n    \"month-earlier\": [\n        \"JJ\"\n    ], \n    \"capercailzie\": [\n        \"NN\"\n    ], \n    \"grandmasters\": [\n        \"NNS\"\n    ], \n    \"Cedric\": [\n        \"NNP\"\n    ], \n    \"Clemens\": [\n        \"NNP\"\n    ], \n    \"klaxon\": [\n        \"NN\"\n    ], \n    \"squid\": [\n        \"NN\"\n    ], \n    \"Clement\": [\n        \"NNP\"\n    ], \n    \"man-in-the-European-street\": [\n        \"NN\"\n    ], \n    \"aspirin\": [\n        \"NN\"\n    ], \n    \"vous\": [\n        \"FW\"\n    ], \n    \"slob\": [\n        \"NN\"\n    ], \n    \"Venetoen\": [\n        \"NNP\"\n    ], \n    \"Cimflex\": [\n        \"NNP\"\n    ], \n    \"Struggles\": [\n        \"NNP\"\n    ], \n    \"Geely\": [\n        \"NNP\"\n    ], \n    \"diversionary\": [\n        \"JJ\"\n    ], \n    \"Microsoft-Apple\": [\n        \"NNP\"\n    ], \n    \"facet-planes\": [\n        \"NNS\"\n    ], \n    \"Adventists\": [\n        \"NNP\"\n    ], \n    \"Gastineau\": [\n        \"NNP\"\n    ], \n    \"demolish\": [\n        \"VB\"\n    ], \n    \"Garea\": [\n        \"NNP\"\n    ], \n    \"unimproved\": [\n        \"JJ\"\n    ], \n    \"reviews\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"founder-originator\": [\n        \"NN\"\n    ], \n    \"check-kiting\": [\n        \"JJ\"\n    ], \n    \"anti-government\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"septum\": [\n        \"NN\"\n    ], \n    \"aridity\": [\n        \"NN\"\n    ], \n    \"nonce\": [\n        \"NN\"\n    ], \n    \"reflector\": [\n        \"NN\"\n    ], \n    \"lobbying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"confused\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Whitemarsh\": [\n        \"NNP\"\n    ], \n    \"Score\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"council\": [\n        \"NN\"\n    ], \n    \"Prado\": [\n        \"NNP\"\n    ], \n    \"confuses\": [\n        \"VBZ\"\n    ], \n    \"Issue\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"complainant\": [\n        \"NN\"\n    ], \n    \"Bronzavia-Air\": [\n        \"NNP\"\n    ], \n    \"Boeotian\": [\n        \"NNP\"\n    ], \n    \"thumbing\": [\n        \"VBG\"\n    ], \n    \"ballards\": [\n        \"NNS\"\n    ], \n    \"nine-game\": [\n        \"JJ\"\n    ], \n    \"Grupo\": [\n        \"NNP\"\n    ], \n    \"Ermanno\": [\n        \"NNP\"\n    ], \n    \"textile-related\": [\n        \"JJ\"\n    ], \n    \"loaves\": [\n        \"NNS\"\n    ], \n    \"map\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"effortful\": [\n        \"JJ\"\n    ], \n    \"mar\": [\n        \"VB\"\n    ], \n    \"swayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hydrogens\": [\n        \"NNS\"\n    ], \n    \"strokes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"max\": [\n        \"NN\"\n    ], \n    \"Healthier\": [\n        \"JJR\"\n    ], \n    \"Sagami\": [\n        \"NNP\"\n    ], \n    \"mad\": [\n        \"JJ\"\n    ], \n    \"Yale\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mai\": [\n        \"MD\"\n    ], \n    \"mah\": [\n        \"PRP$\"\n    ], \n    \"Platter\": [\n        \"NNP\"\n    ], \n    \"Electron-microscopical\": [\n        \"NN\"\n    ], \n    \"mud-caked\": [\n        \"JJ\"\n    ], \n    \"EuroBelge\": [\n        \"NNP\"\n    ], \n    \"scrambling\": [\n        \"VBG\"\n    ], \n    \"non-investment\": [\n        \"JJ\"\n    ], \n    \"regurgitated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Yankees-Brooklyn\": [\n        \"NNP\"\n    ], \n    \"long-range\": [\n        \"JJ\"\n    ], \n    \"Cavanagh\": [\n        \"NNP\"\n    ], \n    \"tale\": [\n        \"NN\"\n    ], \n    \"cascade\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"financial-report\": [\n        \"JJ\"\n    ], \n    \"deposit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"deceive\": [\n        \"VB\"\n    ], \n    \"unleash\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tall\": [\n        \"JJ\"\n    ], \n    \"markkaa\": [\n        \"NN\"\n    ], \n    \"talk\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"orchard...\": [\n        \":\"\n    ], \n    \"Hymn\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mississippi\": [\n        \"NNP\"\n    ], \n    \"Uncas\": [\n        \"NNP\"\n    ], \n    \"distributors\": [\n        \"NNS\"\n    ], \n    \"government-controlled\": [\n        \"JJ\"\n    ], \n    \"Mayfair\": [\n        \"NNP\"\n    ], \n    \"shaky\": [\n        \"JJ\"\n    ], \n    \"wishing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Dicke\": [\n        \"NNP\"\n    ], \n    \"introductions\": [\n        \"NNS\"\n    ], \n    \"recoup\": [\n        \"VB\"\n    ], \n    \"pitch\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dicks\": [\n        \"NNP\"\n    ], \n    \"Waxman\": [\n        \"NNP\"\n    ], \n    \"gold-plated\": [\n        \"JJ\"\n    ], \n    \"adhesive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"F-18s\": [\n        \"NNS\"\n    ], \n    \"Greiff\": [\n        \"NNP\"\n    ], \n    \"Comes\": [\n        \"VBZ\"\n    ], \n    \"Pettersson\": [\n        \"NNP\"\n    ], \n    \"consequential\": [\n        \"JJ\"\n    ], \n    \"World\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uptake\": [\n        \"NN\"\n    ], \n    \"Public-works\": [\n        \"NNS\"\n    ], \n    \"recipes\": [\n        \"NNS\"\n    ], \n    \"christening\": [\n        \"NN\"\n    ], \n    \"fuels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"less-perfectly\": [\n        \"RBR\"\n    ], \n    \"Tremendae\": [\n        \"NNP\"\n    ], \n    \"Laboratories\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"field-sequential\": [\n        \"JJ\"\n    ], \n    \"bestselling\": [\n        \"JJ\"\n    ], \n    \"home-equity\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"attorneys\": [\n        \"NNS\"\n    ], \n    \"Simple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lovelace\": [\n        \"NNP\"\n    ], \n    \"settings\": [\n        \"NNS\"\n    ], \n    \"arrows\": [\n        \"NNS\"\n    ], \n    \"Teamsters\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Simply\": [\n        \"RB\"\n    ], \n    \"rock\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"scolded\": [\n        \"VBN\"\n    ], \n    \"Homma\": [\n        \"NNP\"\n    ], \n    \"Detectives\": [\n        \"NNP\"\n    ], \n    \"eyelid\": [\n        \"NN\"\n    ], \n    \"Shorted\": [\n        \"JJ\"\n    ], \n    \"air-water\": [\n        \"JJ\"\n    ], \n    \"COUNTRY\": [\n        \"NN\"\n    ], \n    \"sweepings\": [\n        \"NNS\"\n    ], \n    \"Swears\": [\n        \"VBZ\"\n    ], \n    \"Shorter\": [\n        \"JJR\", \n        \"NNP\"\n    ], \n    \"Startled\": [\n        \"VBN\"\n    ], \n    \"whirlwinds\": [\n        \"NNS\"\n    ], \n    \"Frazier\": [\n        \"NNP\"\n    ], \n    \"scion\": [\n        \"NN\"\n    ], \n    \"fazed\": [\n        \"VBD\"\n    ], \n    \"hemmed\": [\n        \"VBN\"\n    ], \n    \"Springing\": [\n        \"VBG\"\n    ], \n    \"Therese\": [\n        \"NNP\"\n    ], \n    \"Davids\": [\n        \"NNP\"\n    ], \n    \"Feigen\": [\n        \"NNP\"\n    ], \n    \"Theresa\": [\n        \"NNP\"\n    ], \n    \"Renovo\": [\n        \"NNP\"\n    ], \n    \"Savoca\": [\n        \"NNP\"\n    ], \n    \"reforestation\": [\n        \"NN\"\n    ], \n    \"dioxide\": [\n        \"NN\"\n    ], \n    \"pizzeria\": [\n        \"NN\"\n    ], \n    \"centerline\": [\n        \"NN\"\n    ], \n    \"sensor\": [\n        \"NN\"\n    ], \n    \"Tragedy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Wemmick\": [\n        \"NNP\"\n    ], \n    \"Attakapas\": [\n        \"NNP\"\n    ], \n    \"landlord\": [\n        \"NN\"\n    ], \n    \"Tepper\": [\n        \"NNP\"\n    ], \n    \"Citibank\": [\n        \"NNP\"\n    ], \n    \"sideways\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"juxtapositions\": [\n        \"NNS\"\n    ], \n    \"Corp.s\": [\n        \"NNP\"\n    ], \n    \"sparkled\": [\n        \"VBD\"\n    ], \n    \"cough\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"orb\": [\n        \"NN\"\n    ], \n    \"infuriating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"advance\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"sphynxes\": [\n        \"NNS\"\n    ], \n    \"Lowndes\": [\n        \"NNP\"\n    ], \n    \"one-for-two\": [\n        \"JJ\"\n    ], \n    \"derivation\": [\n        \"NN\"\n    ], \n    \"theare\": [\n        \"NN\"\n    ], \n    \"where\": [\n        \"WRB\"\n    ], \n    \"Normal\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"bowling-related\": [\n        \"JJ\"\n    ], \n    \"Vortex\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thing\": [\n        \"NN\"\n    ], \n    \"thine\": [\n        \"JJ\"\n    ], \n    \"algaecide\": [\n        \"NN\"\n    ], \n    \"economic-forecasting\": [\n        \"JJ\"\n    ], \n    \"hands-off\": [\n        \"JJ\"\n    ], \n    \"think\": [\n        \"VBP\", \n        \"VB\", \n        \"NN\"\n    ], \n    \"Adelaide\": [\n        \"NNP\"\n    ], \n    \"Neusteters\": [\n        \"NNP\"\n    ], \n    \"Translocations\": [\n        \"NNS\"\n    ], \n    \"Farney\": [\n        \"NNP\"\n    ], \n    \"Compumat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"utopianism\": [\n        \"NN\"\n    ], \n    \"crib\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"WABC\": [\n        \"NNP\"\n    ], \n    \"Carnegie-Mellon\": [\n        \"NNP\"\n    ], \n    \"Krebs\": [\n        \"NNP\"\n    ], \n    \"Martin-type\": [\n        \"JJ\"\n    ], \n    \"non-residents\": [\n        \"NNS\"\n    ], \n    \"sounds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"cheesy\": [\n        \"JJ\"\n    ], \n    \"Sea-Land\": [\n        \"NNP\"\n    ], \n    \"interchange\": [\n        \"NN\"\n    ], \n    \"Levy\": [\n        \"NNP\"\n    ], \n    \"Weighing\": [\n        \"VBG\"\n    ], \n    \"murky\": [\n        \"JJ\"\n    ], \n    \"Hoffman\": [\n        \"NNP\"\n    ], \n    \"dog-and-pony\": [\n        \"NN\"\n    ], \n    \"Problems\": [\n        \"NNS\"\n    ], \n    \"Ecological\": [\n        \"NNP\"\n    ], \n    \"sound\\\\\": [\n        \"JJ\"\n    ], \n    \"pastry-lined\": [\n        \"JJ\"\n    ], \n    \"Comeback\": [\n        \"NNP\"\n    ], \n    \"rebuttal\": [\n        \"NN\"\n    ], \n    \"mermaid\": [\n        \"NN\"\n    ], \n    \"bloodshed\": [\n        \"NN\"\n    ], \n    \"eyes\": [\n        \"NNS\"\n    ], \n    \"Sweazey\": [\n        \"NNP\"\n    ], \n    \"Fortune\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subpoenas\": [\n        \"NNS\"\n    ], \n    \"eyed\": [\n        \"VBD\"\n    ], \n    \"Tough\": [\n        \"JJ\"\n    ], \n    \"interred\": [\n        \"VBD\"\n    ], \n    \"cleanse\": [\n        \"VB\"\n    ], \n    \"Comfed\": [\n        \"NNP\"\n    ], \n    \"Thomases\": [\n        \"NNP\"\n    ], \n    \"Serenade\": [\n        \"NNP\"\n    ], \n    \"trenches\": [\n        \"NNS\"\n    ], \n    \"sailing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"self-employed\": [\n        \"JJ\"\n    ], \n    \"notches\": [\n        \"NNS\"\n    ], \n    \"midtown\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Magma\": [\n        \"NNP\"\n    ], \n    \"reacquire\": [\n        \"VB\"\n    ], \n    \"Regulus\": [\n        \"NN\"\n    ], \n    \"high-growth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"notched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lullaby\": [\n        \"NN\"\n    ], \n    \"stubby\": [\n        \"JJ\"\n    ], \n    \"SWC\": [\n        \"NNP\"\n    ], \n    \"computer-marketing\": [\n        \"NN\"\n    ], \n    \"grab-bag\": [\n        \"NN\"\n    ], \n    \"comedian\": [\n        \"NN\"\n    ], \n    \"destroyers...\": [\n        \":\"\n    ], \n    \"monochrome\": [\n        \"JJ\"\n    ], \n    \"Puppy\": [\n        \"NNP\"\n    ], \n    \"glibly\": [\n        \"RB\"\n    ], \n    \"x-Year-to-date\": [\n        \"JJ\"\n    ], \n    \"speakers\": [\n        \"NNS\"\n    ], \n    \"Enjoying\": [\n        \"VBG\"\n    ], \n    \"hopples\": [\n        \"NNS\"\n    ], \n    \"Center-punch\": [\n        \"VB\"\n    ], \n    \"Kimbrough\": [\n        \"NNP\"\n    ], \n    \"half-life\": [\n        \"NN\"\n    ], \n    \"consortium\": [\n        \"NN\"\n    ], \n    \"Photographers\": [\n        \"NNP\"\n    ], \n    \"CFM56-3C\": [\n        \"NN\"\n    ], \n    \"switching\": [\n        \"VBG\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"chromosomes\": [\n        \"NNS\"\n    ], \n    \"roster\": [\n        \"NN\"\n    ], \n    \"cheesecake\": [\n        \"NN\"\n    ], \n    \"enter\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"earthquake-resistant\": [\n        \"JJ\"\n    ], \n    \"Abolition\": [\n        \"NNP\"\n    ], \n    \"semi-gelatinous\": [\n        \"JJ\"\n    ], \n    \"bowels\": [\n        \"NNS\"\n    ], \n    \"ghostbusting\": [\n        \"NN\"\n    ], \n    \"coveted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"festooning\": [\n        \"VBG\"\n    ], \n    \"Ringer\": [\n        \"NNP\"\n    ], \n    \"Sextuor\": [\n        \"NNP\"\n    ], \n    \"swift-striding\": [\n        \"JJ\"\n    ], \n    \"Ringel\": [\n        \"NNP\"\n    ], \n    \"Savers\": [\n        \"NNP\"\n    ], \n    \"fundraiser\": [\n        \"NN\"\n    ], \n    \"Hessische\": [\n        \"NNP\"\n    ], \n    \"shop\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"rating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Curriculum\": [\n        \"NN\"\n    ], \n    \"shot\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Keng\": [\n        \"NNP\"\n    ], \n    \"show\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Clearing\": [\n        \"NNP\"\n    ], \n    \"cornea\": [\n        \"NN\"\n    ], \n    \"Demons\": [\n        \"NNS\"\n    ], \n    \"elevate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Goffstein\": [\n        \"NNP\"\n    ], \n    \"shoe\": [\n        \"NN\"\n    ], \n    \"Kent\": [\n        \"NNP\"\n    ], \n    \"corner\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"fend\": [\n        \"VB\"\n    ], \n    \"Rubenesquely\": [\n        \"JJ\"\n    ], \n    \"Reproduced\": [\n        \"VBN\"\n    ], \n    \"quality-control\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"plume\": [\n        \"NN\"\n    ], \n    \"plumb\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Dundeen\": [\n        \"NNP\"\n    ], \n    \"Flores\": [\n        \"NNP\"\n    ], \n    \"McClatchy\": [\n        \"NNP\"\n    ], \n    \"fens\": [\n        \"NNS\"\n    ], \n    \"germs\": [\n        \"NNS\"\n    ], \n    \"Translation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"plump\": [\n        \"JJ\"\n    ], \n    \"non-invasive\": [\n        \"JJ\"\n    ], \n    \"Bumpers\": [\n        \"NNP\"\n    ], \n    \"replaying\": [\n        \"VBG\"\n    ], \n    \"opto-electronic\": [\n        \"JJ\"\n    ], \n    \"pricings\": [\n        \"NNS\"\n    ], \n    \"eight-foot-high\": [\n        \"JJ\"\n    ], \n    \"Gide\": [\n        \"NNP\"\n    ], \n    \"nearly\": [\n        \"RB\"\n    ], \n    \"pharaohs\": [\n        \"NNS\"\n    ], \n    \"denials\": [\n        \"NNS\"\n    ], \n    \"moviegoer\": [\n        \"NN\"\n    ], \n    \"Opinions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"flyways\": [\n        \"NNS\"\n    ], \n    \"short-staffed\": [\n        \"JJ\"\n    ], \n    \"Sturley\": [\n        \"NNP\"\n    ], \n    \"capstan\": [\n        \"NN\"\n    ], \n    \"jumper\": [\n        \"NN\"\n    ], \n    \"worrying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"NOTES\": [\n        \"NNS\"\n    ], \n    \"pro-Yankee\": [\n        \"NN\"\n    ], \n    \"cocktails\": [\n        \"NNS\"\n    ], \n    \"Lucifer\": [\n        \"NNP\"\n    ], \n    \"reevaluation\": [\n        \"NN\"\n    ], \n    \"teething\": [\n        \"VBG\"\n    ], \n    \"Money-saving\": [\n        \"JJ\"\n    ], \n    \"federal-corporate\": [\n        \"JJ\"\n    ], \n    \"Fares\": [\n        \"NNS\"\n    ], \n    \"Iowa\": [\n        \"NNP\"\n    ], \n    \"registering\": [\n        \"VBG\"\n    ], \n    \"limber\": [\n        \"JJ\"\n    ], \n    \"sandwich-type\": [\n        \"JJ\"\n    ], \n    \"malted\": [\n        \"VBN\"\n    ], \n    \"diamonds\": [\n        \"NNS\"\n    ], \n    \"straighteners\": [\n        \"NNS\"\n    ], \n    \"Flowering\": [\n        \"NN\"\n    ], \n    \"Hopwood\": [\n        \"NNP\"\n    ], \n    \"movieland\": [\n        \"NN\"\n    ], \n    \"FirstSouth\": [\n        \"NNP\"\n    ], \n    \"atrophic\": [\n        \"JJ\"\n    ], \n    \"parental\": [\n        \"JJ\"\n    ], \n    \"Atheist\": [\n        \"NNP\"\n    ], \n    \"slingshot\": [\n        \"NN\"\n    ], \n    \"crucified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mahoney\": [\n        \"NNP\"\n    ], \n    \"enthralling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Bailiffs\": [\n        \"NNS\"\n    ], \n    \"SOARS\": [\n        \"VBZ\"\n    ], \n    \"innoculating\": [\n        \"VBG\"\n    ], \n    \"animal-like\": [\n        \"JJ\"\n    ], \n    \"Northrop\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"amateurs\": [\n        \"NNS\"\n    ], \n    \"fat-substitute\": [\n        \"JJ\"\n    ], \n    \"profs\": [\n        \"NNS\"\n    ], \n    \"Continues\": [\n        \"VBZ\"\n    ], \n    \"cornered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"mobile-telecommunications\": [\n        \"NNS\"\n    ], \n    \"slain\": [\n        \"VBN\"\n    ], \n    \"U.S.-Japanese\": [\n        \"JJ\"\n    ], \n    \"condemning\": [\n        \"VBG\"\n    ], \n    \"Here\": [\n        \"RB\", \n        \"UH\"\n    ], \n    \"Heel-Terka\": [\n        \"NNP\"\n    ], \n    \"specializing\": [\n        \"VBG\"\n    ], \n    \"sensible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"intrude\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"umber\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Third-party\": [\n        \"JJ\"\n    ], \n    \"undershirt\": [\n        \"NN\"\n    ], \n    \"feeders\": [\n        \"NNS\"\n    ], \n    \"armload\": [\n        \"NN\"\n    ], \n    \"dependable\": [\n        \"JJ\"\n    ], \n    \"Kenmare\": [\n        \"NNP\"\n    ], \n    \"flight-attendants\": [\n        \"NNS\"\n    ], \n    \"sensibly\": [\n        \"RB\"\n    ], \n    \"hand-holding\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Originals\": [\n        \"NNS\"\n    ], \n    \"Broderick\": [\n        \"NNP\"\n    ], \n    \"David-Weill\": [\n        \"NNP\"\n    ], \n    \"Galtier\": [\n        \"NNP\"\n    ], \n    \"whips\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"refractories\": [\n        \"NNS\"\n    ], \n    \"Herr\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"radiochlorine\": [\n        \"NN\"\n    ], \n    \"ideologist\": [\n        \"NN\"\n    ], \n    \"memorialized\": [\n        \"VBN\"\n    ], \n    \"reopening\": [\n        \"VBG\"\n    ], \n    \"million-asset\": [\n        \"JJ\"\n    ], \n    \"JURORS\": [\n        \"NNS\"\n    ], \n    \"post-production\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Diversification\": [\n        \"NN\"\n    ], \n    \"Somehow\": [\n        \"RB\"\n    ], \n    \"well-cared-for\": [\n        \"JJ\"\n    ], \n    \"ongoing\": [\n        \"JJ\"\n    ], \n    \"ignition\": [\n        \"NN\"\n    ], \n    \"Sleepily\": [\n        \"RB\"\n    ], \n    \"Avenue\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"major-party\": [\n        \"JJ\"\n    ], \n    \"orginate\": [\n        \"VB\"\n    ], \n    \"planar\": [\n        \"JJ\"\n    ], \n    \"nonresidential\": [\n        \"JJ\"\n    ], \n    \"investor-relations\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Rahn\": [\n        \"NNP\"\n    ], \n    \"Supplementing\": [\n        \"VBG\"\n    ], \n    \"Bester\": [\n        \"NNP\"\n    ], \n    \"malformed\": [\n        \"JJ\"\n    ], \n    \"bargain-hunting\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tidiness\": [\n        \"NN\"\n    ], \n    \"Montevideo\": [\n        \"NNP\"\n    ], \n    \"siphoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"recalculated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Alstyne\": [\n        \"NNP\"\n    ], \n    \"censorial\": [\n        \"JJ\"\n    ], \n    \"semesters\": [\n        \"NNS\"\n    ], \n    \"arguments\": [\n        \"NNS\"\n    ], \n    \"credit-discrimination\": [\n        \"NN\"\n    ], \n    \"Lanka\": [\n        \"NNP\"\n    ], \n    \"five-round\": [\n        \"JJ\"\n    ], \n    \"capital-appreciation\": [\n        \"NN\"\n    ], \n    \"oil\": [\n        \"NN\"\n    ], \n    \"Sept.1\": [\n        \"NNP\"\n    ], \n    \"Hicks\": [\n        \"NNP\"\n    ], \n    \"pronouncement\": [\n        \"NN\"\n    ], \n    \"cauterize\": [\n        \"VB\"\n    ], \n    \"ancestors\": [\n        \"NNS\"\n    ], \n    \"Nesbitt\": [\n        \"NNP\"\n    ], \n    \"climbing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"flexed\": [\n        \"VBD\"\n    ], \n    \"one-man\": [\n        \"JJ\"\n    ], \n    \"Voorhes\": [\n        \"NNP\"\n    ], \n    \"Chore\": [\n        \"NN\"\n    ], \n    \"Hurtado\": [\n        \"NNP\"\n    ], \n    \"largely\": [\n        \"RB\", \n        \"VBN\"\n    ], \n    \"amounts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Eagleton-Newark\": [\n        \"NNP\"\n    ], \n    \"creeper\": [\n        \"NN\"\n    ], \n    \"easing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"bumping\": [\n        \"VBG\"\n    ], \n    \"parody\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Surveys\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Clavier\": [\n        \"NN\"\n    ], \n    \"gaining\": [\n        \"VBG\"\n    ], \n    \"crossbars\": [\n        \"NNS\"\n    ], \n    \"multipled\": [\n        \"VBD\"\n    ], \n    \"Boxing\": [\n        \"NN\"\n    ], \n    \"Frelinghuysen\": [\n        \"NNP\"\n    ], \n    \"Maynor\": [\n        \"NNP\"\n    ], \n    \"lobules\": [\n        \"NNS\"\n    ], \n    \"Lions\": [\n        \"NNP\"\n    ], \n    \"illegitimacy\": [\n        \"NN\"\n    ], \n    \"monei\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"baptismal\": [\n        \"JJ\"\n    ], \n    \"Archer-Daniels-Midland\": [\n        \"NNP\"\n    ], \n    \"worryin\": [\n        \"VBG\"\n    ], \n    \"feedlots\": [\n        \"NNS\"\n    ], \n    \"crab\": [\n        \"NN\"\n    ], \n    \"Engines\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"TO\": [\n        \"TO\"\n    ], \n    \"pups\": [\n        \"NNS\"\n    ], \n    \"Duchy\": [\n        \"NNP\"\n    ], \n    \"head-tossing\": [\n        \"NN\"\n    ], \n    \"shingles\": [\n        \"NNS\"\n    ], \n    \"Weeds\": [\n        \"NNS\"\n    ], \n    \"Perchdale\": [\n        \"NNP\"\n    ], \n    \"grip\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"slanted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"grit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Thenceforth\": [\n        \"NN\"\n    ], \n    \"Saratoga\": [\n        \"NNP\"\n    ], \n    \"reddened\": [\n        \"VBD\", \n        \"VB\"\n    ], \n    \"Denny\": [\n        \"NNP\"\n    ], \n    \"grid\": [\n        \"NN\"\n    ], \n    \"inglorious\": [\n        \"JJ\"\n    ], \n    \"unheroic\": [\n        \"JJ\"\n    ], \n    \"washed-out\": [\n        \"JJ\"\n    ], \n    \"grim\": [\n        \"JJ\"\n    ], \n    \"grin\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Childs\": [\n        \"NNP\"\n    ], \n    \"diamond-shaped\": [\n        \"JJ\"\n    ], \n    \"Bloomfield\": [\n        \"NNP\"\n    ], \n    \"Kemble\": [\n        \"NNP\"\n    ], \n    \"absentia\": [\n        \"FW\"\n    ], \n    \"facing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Childe\": [\n        \"NNP\"\n    ], \n    \"Hack\": [\n        \"NNP\"\n    ], \n    \"Refrigeration\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"counter-arguments\": [\n        \"NNS\"\n    ], \n    \"thirsted\": [\n        \"VBN\"\n    ], \n    \"niceties\": [\n        \"NNS\"\n    ], \n    \"greenmailer\": [\n        \"NN\"\n    ], \n    \"Threats\": [\n        \"NNS\"\n    ], \n    \"Jewelry\": [\n        \"NN\"\n    ], \n    \"Gerald\": [\n        \"NNP\"\n    ], \n    \"ascend\": [\n        \"VB\"\n    ], \n    \"eyelets\": [\n        \"NNS\"\n    ], \n    \"Amazing\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Dr.\": [\n        \"NNP\"\n    ], \n    \"Selectmen\": [\n        \"NNS\"\n    ], \n    \"Hamiltonians\": [\n        \"NNPS\"\n    ], \n    \"ascent\": [\n        \"NN\"\n    ], \n    \"Douglass\": [\n        \"NNP\"\n    ], \n    \"ADDED\": [\n        \"VBD\"\n    ], \n    \"jonron\": [\n        \"FW\"\n    ], \n    \"colonial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drug-addled\": [\n        \"JJ\"\n    ], \n    \"extensively\": [\n        \"RB\"\n    ], \n    \"Conde\": [\n        \"NNP\"\n    ], \n    \"pioneer\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Fidis\": [\n        \"NNP\"\n    ], \n    \"highbrow\": [\n        \"JJ\"\n    ], \n    \"linoleum\": [\n        \"NN\"\n    ], \n    \"windbreaks\": [\n        \"NNS\"\n    ], \n    \"intravenous\": [\n        \"JJ\"\n    ], \n    \"grafting\": [\n        \"VBG\"\n    ], \n    \"Dry\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Dinsmore\": [\n        \"NNP\"\n    ], \n    \"sprint\": [\n        \"NN\"\n    ], \n    \"Coping\": [\n        \"VBG\"\n    ], \n    \"Dru\": [\n        \"NNP\"\n    ], \n    \"dictators\": [\n        \"NNS\"\n    ], \n    \"Wesker\": [\n        \"NNP\"\n    ], \n    \"Goodbye\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"arithmetical\": [\n        \"JJ\"\n    ], \n    \"Litvinchuk\": [\n        \"NNP\"\n    ], \n    \"Rambo\": [\n        \"NNP\"\n    ], \n    \"fringe\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"adman\": [\n        \"NN\"\n    ], \n    \"helpmate\": [\n        \"NN\"\n    ], \n    \"Kyong\": [\n        \"NNP\"\n    ], \n    \"water-soluble\": [\n        \"JJ\"\n    ], \n    \"CREAM\": [\n        \"NNP\"\n    ], \n    \"checkup\": [\n        \"NN\"\n    ], \n    \"Bagging\": [\n        \"VBG\"\n    ], \n    \"memorials\": [\n        \"NNS\"\n    ], \n    \"bricklayers\": [\n        \"NNS\"\n    ], \n    \"implantation\": [\n        \"NN\"\n    ], \n    \"Bowl\": [\n        \"NNP\"\n    ], \n    \"blessed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"references\": [\n        \"NNS\"\n    ], \n    \"dreaming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Flagler\": [\n        \"NNP\"\n    ], \n    \"annoys\": [\n        \"VBZ\"\n    ], \n    \"T-shirts\": [\n        \"NNS\"\n    ], \n    \"re-evaluation\": [\n        \"NN\"\n    ], \n    \"Unwarranted\": [\n        \"JJ\"\n    ], \n    \"McLendon-Ebony\": [\n        \"NNP\"\n    ], \n    \"Politan\": [\n        \"NNP\"\n    ], \n    \"co-ordinating\": [\n        \"VBG\"\n    ], \n    \"totalitarian\": [\n        \"JJ\"\n    ], \n    \"Visits\": [\n        \"NNS\"\n    ], \n    \"cardmembers\": [\n        \"NNS\"\n    ], \n    \"Av.\": [\n        \"NNP\"\n    ], \n    \"redlining\": [\n        \"VBG\"\n    ], \n    \"caterpillars\": [\n        \"NNS\"\n    ], \n    \"relocations\": [\n        \"NNS\"\n    ], \n    \"Yahwe\": [\n        \"NNP\"\n    ], \n    \"indorsed\": [\n        \"VBD\"\n    ], \n    \"tobacco-industry\": [\n        \"NN\"\n    ], \n    \"stressors\": [\n        \"NNS\"\n    ], \n    \"strikes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sophisticated\": [\n        \"JJ\"\n    ], \n    \"downshoot\": [\n        \"NN\"\n    ], \n    \"nonacid\": [\n        \"JJ\"\n    ], \n    \"intoxication\": [\n        \"NN\"\n    ], \n    \"sophisticates\": [\n        \"NNS\"\n    ], \n    \"Beneath\": [\n        \"IN\"\n    ], \n    \"downstairs\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"nonviolence\": [\n        \"NN\"\n    ], \n    \"romantic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Integrator\": [\n        \"NNP\"\n    ], \n    \"Garden-variety\": [\n        \"NN\"\n    ], \n    \"centerfielder\": [\n        \"NN\"\n    ], \n    \"indisposition\": [\n        \"NN\"\n    ], \n    \"investment-linked\": [\n        \"JJ\"\n    ], \n    \"exemplar\": [\n        \"NN\"\n    ], \n    \"Avi\": [\n        \"NNP\"\n    ], \n    \"jabbing\": [\n        \"VBG\"\n    ], \n    \"blackbird\": [\n        \"NN\"\n    ], \n    \"electrifying\": [\n        \"JJ\"\n    ], \n    \"Cushing\": [\n        \"NNP\"\n    ], \n    \"Ava\": [\n        \"NNP\"\n    ], \n    \"Bureaucratic\": [\n        \"JJ\"\n    ], \n    \"USG\": [\n        \"NNP\"\n    ], \n    \"torpor\": [\n        \"NN\"\n    ], \n    \"Margret\": [\n        \"NNP\"\n    ], \n    \"USC\": [\n        \"NNP\"\n    ], \n    \"USA\": [\n        \"NNP\"\n    ], \n    \"rail-traffic\": [\n        \"JJ\"\n    ], \n    \"USN\": [\n        \"NNP\"\n    ], \n    \"Azerbaijani\": [\n        \"NNP\"\n    ], \n    \"deer\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"deep\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"resultant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"USW\": [\n        \"NNP\"\n    ], \n    \"IBM-remarketer\": [\n        \"JJ\"\n    ], \n    \"USS\": [\n        \"NNP\"\n    ], \n    \"grasped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"USP\": [\n        \"NNP\"\n    ], \n    \"deed\": [\n        \"NN\"\n    ], \n    \"carps\": [\n        \"VBZ\"\n    ], \n    \"USX\": [\n        \"NNP\"\n    ], \n    \"selfish\": [\n        \"JJ\"\n    ], \n    \"Harlan-Marcia\": [\n        \"NNP\"\n    ], \n    \"sports-functions\": [\n        \"NNS\"\n    ], \n    \"sufferings\": [\n        \"NNS\"\n    ], \n    \"drivers\": [\n        \"NNS\"\n    ], \n    \"ceaselessly\": [\n        \"RB\"\n    ], \n    \"narcotics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Cisneros\": [\n        \"NNP\"\n    ], \n    \"Bogdanor\": [\n        \"NNP\"\n    ], \n    \"Tooling\": [\n        \"VBG\"\n    ], \n    \"Dahlen\": [\n        \"NNP\"\n    ], \n    \"fruitless\": [\n        \"JJ\"\n    ], \n    \"Omaha\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stilted\": [\n        \"JJ\"\n    ], \n    \"Urraca\": [\n        \"NNP\"\n    ], \n    \"square-foot\": [\n        \"JJ\"\n    ], \n    \"gon\": [\n        \"VBG\", \n        \"VB\"\n    ], \n    \"Bachlund\": [\n        \"NNP\"\n    ], \n    \"decorated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"smaller-size\": [\n        \"JJ\"\n    ], \n    \"prewar\": [\n        \"JJ\"\n    ], \n    \"resembled\": [\n        \"VBD\"\n    ], \n    \"US$\": [\n        \"$\"\n    ], \n    \"profit-eating\": [\n        \"JJ\"\n    ], \n    \"sewed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"readership\": [\n        \"NN\"\n    ], \n    \"HOMEOWNERS\": [\n        \"NNS\"\n    ], \n    \"Gunther\": [\n        \"NNP\"\n    ], \n    \"resale\": [\n        \"NN\"\n    ], \n    \"inhibited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"god\": [\n        \"NN\"\n    ], \n    \"Harassment\": [\n        \"NN\"\n    ], \n    \"well-brushed\": [\n        \"JJ\"\n    ], \n    \"burdening\": [\n        \"VBG\"\n    ], \n    \"Processors\": [\n        \"NNPS\"\n    ], \n    \"wormy\": [\n        \"JJ\"\n    ], \n    \"duplicates\": [\n        \"VBZ\"\n    ], \n    \"rascals\": [\n        \"NNS\"\n    ], \n    \"Dazed\": [\n        \"JJ\"\n    ], \n    \"worms\": [\n        \"NNS\"\n    ], \n    \"Financieros\": [\n        \"NNP\"\n    ], \n    \"Robeson\": [\n        \"NNP\"\n    ], \n    \"tonnage\": [\n        \"NN\"\n    ], \n    \"revellers\": [\n        \"NNS\"\n    ], \n    \"prolongs\": [\n        \"VBZ\"\n    ], \n    \"duplicated\": [\n        \"VBN\"\n    ], \n    \"Protogeometric\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Meditations\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"inexhaustible\": [\n        \"JJ\"\n    ], \n    \"modernization\": [\n        \"NN\"\n    ], \n    \"fairways\": [\n        \"NNS\"\n    ], \n    \"prodding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hideout\": [\n        \"NN\"\n    ], \n    \"hideous\": [\n        \"JJ\"\n    ], \n    \"instigating\": [\n        \"VBG\"\n    ], \n    \"petro-dollar\": [\n        \"JJ\"\n    ], \n    \"Scouting\": [\n        \"VBG\"\n    ], \n    \"Referrals\": [\n        \"NNS\"\n    ], \n    \"paot\": [\n        \"NN\"\n    ], \n    \"drive-train\": [\n        \"NN\"\n    ], \n    \"Sonic\": [\n        \"JJ\"\n    ], \n    \"squeeze-out\": [\n        \"NN\"\n    ], \n    \"child-oriented\": [\n        \"JJ\"\n    ], \n    \"washer\": [\n        \"NN\"\n    ], \n    \"Svensk\": [\n        \"NNP\"\n    ], \n    \"twice-monthly\": [\n        \"JJ\"\n    ], \n    \"Abyssinians\": [\n        \"NNPS\"\n    ], \n    \"haggling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"extrusion\": [\n        \"NN\"\n    ], \n    \"dictatorship\": [\n        \"NN\"\n    ], \n    \"unsuspected\": [\n        \"JJ\"\n    ], \n    \"overtakin\": [\n        \"VBG\"\n    ], \n    \"grubs\": [\n        \"NNS\"\n    ], \n    \"bankrolled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hypothyroidism\": [\n        \"NN\"\n    ], \n    \"chandelle\": [\n        \"VB\"\n    ], \n    \"portable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kochanek\": [\n        \"NNP\"\n    ], \n    \"prominence\": [\n        \"NN\"\n    ], \n    \"eloped\": [\n        \"VBD\"\n    ], \n    \"chairman-designate\": [\n        \"NNP\"\n    ], \n    \"preposterous\": [\n        \"JJ\"\n    ], \n    \"Planitzer\": [\n        \"NNP\"\n    ], \n    \"Chargers\": [\n        \"NNPS\"\n    ], \n    \"transvestitism\": [\n        \"NN\"\n    ], \n    \"hard-to-fault\": [\n        \"JJ\"\n    ], \n    \"MUNICIPALS\": [\n        \"NNS\"\n    ], \n    \"Fergusson\": [\n        \"NNP\"\n    ], \n    \"subscripts\": [\n        \"NNS\"\n    ], \n    \"Malato\": [\n        \"NNP\"\n    ], \n    \"soft-heartedness\": [\n        \"NN\"\n    ], \n    \"Berliners\": [\n        \"NNP\"\n    ], \n    \"Cultural\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"paper-pushing\": [\n        \"JJ\"\n    ], \n    \"everlasting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"steelmaking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"theme-park\": [\n        \"NN\"\n    ], \n    \"component\": [\n        \"NN\"\n    ], \n    \"Gericault\": [\n        \"NNP\"\n    ], \n    \"BLS\": [\n        \"NNP\"\n    ], \n    \"operalet\": [\n        \"NN\"\n    ], \n    \"Petrus\": [\n        \"NNP\"\n    ], \n    \"disinflationary\": [\n        \"JJ\"\n    ], \n    \"Earth-week\": [\n        \"NN\"\n    ], \n    \"enmity\": [\n        \"NN\"\n    ], \n    \"Leeza\": [\n        \"NNP\"\n    ], \n    \"Czestochwa\": [\n        \"NNP\"\n    ], \n    \"Quatsch\": [\n        \"FW\"\n    ], \n    \"expiating\": [\n        \"VBG\"\n    ], \n    \"Pundits\": [\n        \"NNS\"\n    ], \n    \"summate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"temperately\": [\n        \"RB\"\n    ], \n    \"Southam\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"CLEARED\": [\n        \"VBD\"\n    ], \n    \"Canal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Canam\": [\n        \"NNP\"\n    ], \n    \"Darkness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"extrapolations\": [\n        \"NNS\"\n    ], \n    \"Anctil\": [\n        \"NNP\"\n    ], \n    \"Kruk\": [\n        \"NNP\"\n    ], \n    \"emptied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hunching\": [\n        \"VBG\"\n    ], \n    \"unseating\": [\n        \"VBG\"\n    ], \n    \"solid-gold\": [\n        \"JJ\"\n    ], \n    \"empties\": [\n        \"VBZ\"\n    ], \n    \"emptier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"soliticitations\": [\n        \"NNS\"\n    ], \n    \"legislator\": [\n        \"NN\"\n    ], \n    \"readily\": [\n        \"RB\"\n    ], \n    \"eye\": [\n        \"NN\"\n    ], \n    \"eyd\": [\n        \"VBN\"\n    ], \n    \"general-appeal\": [\n        \"JJ\"\n    ], \n    \"Frito\": [\n        \"NNP\"\n    ], \n    \"Niles\": [\n        \"NNP\"\n    ], \n    \"Pasha\": [\n        \"NNP\"\n    ], \n    \"heavy-handedness\": [\n        \"NN\"\n    ], \n    \"puke\": [\n        \"NN\"\n    ], \n    \"comparing\": [\n        \"VBG\"\n    ], \n    \"Fritz\": [\n        \"NNP\"\n    ], \n    \"splash\": [\n        \"NN\"\n    ], \n    \"amenities\": [\n        \"NNS\"\n    ], \n    \"libel\": [\n        \"NN\"\n    ], \n    \"dunks\": [\n        \"VBZ\"\n    ], \n    \"Frits\": [\n        \"NNP\"\n    ], \n    \"Stage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bio-Response\": [\n        \"NNP\"\n    ], \n    \"Tennis\": [\n        \"NNP\"\n    ], \n    \"one-story\": [\n        \"JJ\"\n    ], \n    \"suffused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"deinstitutionalization\": [\n        \"NN\"\n    ], \n    \"Louise\": [\n        \"NNP\"\n    ], \n    \"retrogradations\": [\n        \"NNS\"\n    ], \n    \"forfeitable\": [\n        \"JJ\"\n    ], \n    \"Masaki-Schatz\": [\n        \"NNP\"\n    ], \n    \"globe-spanning\": [\n        \"JJ\"\n    ], \n    \"Mouvement\": [\n        \"NNP\"\n    ], \n    \"Park-affiliated\": [\n        \"JJ\"\n    ], \n    \"Babelists\": [\n        \"NNS\"\n    ], \n    \"risk-management\": [\n        \"NN\"\n    ], \n    \"Daugherty\": [\n        \"NNP\"\n    ], \n    \"frustratingly\": [\n        \"RB\"\n    ], \n    \"Atone\": [\n        \"VB\"\n    ], \n    \"believability\": [\n        \"NN\"\n    ], \n    \"paragraph\": [\n        \"NN\"\n    ], \n    \"Pyhrric\": [\n        \"JJ\"\n    ], \n    \"slovenly\": [\n        \"JJ\"\n    ], \n    \"superstitions\": [\n        \"NNS\"\n    ], \n    \"pioneered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"prefaced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fryers\": [\n        \"NNS\"\n    ], \n    \"University-based\": [\n        \"JJ\"\n    ], \n    \"mutuality\": [\n        \"NN\"\n    ], \n    \"bravely\": [\n        \"RB\"\n    ], \n    \"Polystyrene\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Richwhite\": [\n        \"NNP\"\n    ], \n    \"gravely\": [\n        \"RB\"\n    ], \n    \"traduced\": [\n        \"VBN\"\n    ], \n    \"drug-trafficking\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Oder\": [\n        \"NNP\"\n    ], \n    \"hilum\": [\n        \"NN\"\n    ], \n    \"attain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Stained\": [\n        \"VBN\"\n    ], \n    \"Correggio\": [\n        \"NNP\"\n    ], \n    \"!\": [\n        \"!\"\n    ], \n    \"Patentees\": [\n        \"NNS\"\n    ], \n    \"pyrometers\": [\n        \"NNS\"\n    ], \n    \"Serex\": [\n        \"NNP\"\n    ], \n    \"Sedimentation\": [\n        \"NN\"\n    ], \n    \"Arrington\": [\n        \"NNP\"\n    ], \n    \"think-tank\": [\n        \"NN\"\n    ], \n    \"ensemble\": [\n        \"NN\"\n    ], \n    \"co-heads\": [\n        \"NNS\"\n    ], \n    \"long-arranged\": [\n        \"JJ\"\n    ], \n    \"Doi\": [\n        \"NNP\"\n    ], \n    \"Don\": [\n        \"NNP\"\n    ], \n    \"Doo\": [\n        \"NNP\"\n    ], \n    \"Dom\": [\n        \"NNP\"\n    ], \n    \"Doc\": [\n        \"NNP\"\n    ], \n    \"Compton\": [\n        \"NNP\"\n    ], \n    \"Thais\": [\n        \"NNPS\"\n    ], \n    \"Dog\": [\n        \"NNP\"\n    ], \n    \"Doe\": [\n        \"NNP\"\n    ], \n    \"Sybron\": [\n        \"NNP\"\n    ], \n    \"Dor\": [\n        \"NNP\"\n    ], \n    \"Dos\": [\n        \"NNP\"\n    ], \n    \"Dov\": [\n        \"NNP\"\n    ], \n    \"Dow\": [\n        \"NNP\"\n    ], \n    \"Neinas\": [\n        \"NNP\"\n    ], \n    \"chute\": [\n        \"NN\"\n    ], \n    \"ribozyme\": [\n        \"NN\"\n    ], \n    \"hypnotized\": [\n        \"VBN\"\n    ], \n    \"interpolated\": [\n        \"VBD\"\n    ], \n    \"Hunsucker\": [\n        \"NNP\"\n    ], \n    \"VITRO\": [\n        \"NNP\"\n    ], \n    \"misplaced\": [\n        \"VBN\"\n    ], \n    \"doused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"T.E.\": [\n        \"NNP\"\n    ], \n    \"Eavesdropping\": [\n        \"NN\"\n    ], \n    \"Confucianism\": [\n        \"NNP\"\n    ], \n    \"Alphonse\": [\n        \"NNP\"\n    ], \n    \"Rockaways\": [\n        \"NNPS\"\n    ], \n    \"Telephones\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Copycat\": [\n        \"NN\"\n    ], \n    \"rifles\": [\n        \"NNS\"\n    ], \n    \"played\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"winged\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"hifalutin\": [\n        \"JJ\"\n    ], \n    \"U.S.-endorsed\": [\n        \"JJ\"\n    ], \n    \"deploring\": [\n        \"VBG\"\n    ], \n    \"radar\": [\n        \"NN\"\n    ], \n    \"producer-consumer\": [\n        \"JJ\"\n    ], \n    \"rifled\": [\n        \"JJ\"\n    ], \n    \"predisposed\": [\n        \"VBN\"\n    ], \n    \"filters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"noncommissioned\": [\n        \"JJ\"\n    ], \n    \"suffer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Trinity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thrilling\": [\n        \"JJ\"\n    ], \n    \"self-designated\": [\n        \"JJ\"\n    ], \n    \"Ifni\": [\n        \"NNP\"\n    ], \n    \"gaslights\": [\n        \"NNS\"\n    ], \n    \"Kovacic\": [\n        \"NNP\"\n    ], \n    \"X-chromosome\": [\n        \"NN\"\n    ], \n    \"nausea\": [\n        \"NN\"\n    ], \n    \"carpentry\": [\n        \"NN\"\n    ], \n    \"noticing\": [\n        \"VBG\"\n    ], \n    \"Youth\": [\n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"home-bred\": [\n        \"JJ\"\n    ], \n    \"complain\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Medicaid-paid\": [\n        \"JJ\"\n    ], \n    \"sweatshops\": [\n        \"NNS\"\n    ], \n    \"alundum\": [\n        \"NN\"\n    ], \n    \"conic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Perestroika\": [\n        \"FW\"\n    ], \n    \"rip-roaring\": [\n        \"JJ\"\n    ], \n    \"positions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Laima\": [\n        \"NNP\"\n    ], \n    \"Tamara\": [\n        \"NNP\"\n    ], \n    \"exquisite\": [\n        \"JJ\"\n    ], \n    \"mystification\": [\n        \"NN\"\n    ], \n    \"suitcase-sized\": [\n        \"JJ\"\n    ], \n    \"Bundesbank-meeting\": [\n        \"NN\"\n    ], \n    \"stakebuilding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fairing\": [\n        \"NN\"\n    ], \n    \"identifying\": [\n        \"VBG\"\n    ], \n    \"watered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Plaskett\": [\n        \"NNP\"\n    ], \n    \"muscle-flexing\": [\n        \"JJ\"\n    ], \n    \"non-pregnant\": [\n        \"JJ\"\n    ], \n    \"Ephesians\": [\n        \"NNPS\"\n    ], \n    \"trooper\": [\n        \"NN\"\n    ], \n    \"throes\": [\n        \"NNS\"\n    ], \n    \"crowing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Cepheus\": [\n        \"NNP\"\n    ], \n    \"schemers\": [\n        \"NNS\"\n    ], \n    \"Deering\": [\n        \"NNP\"\n    ], \n    \"print\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"fortitude\": [\n        \"NN\"\n    ], \n    \"ironed\": [\n        \"VBN\"\n    ], \n    \"brewery\": [\n        \"NN\"\n    ], \n    \"foreground\": [\n        \"NN\"\n    ], \n    \"EC-wide\": [\n        \"JJ\"\n    ], \n    \"circumstance\": [\n        \"NN\"\n    ], \n    \"Leaving\": [\n        \"VBG\"\n    ], \n    \"Hardart\": [\n        \"NNP\"\n    ], \n    \"Ameri-Cable\": [\n        \"NNP\"\n    ], \n    \"members\": [\n        \"NNS\"\n    ], \n    \"beneficient\": [\n        \"JJ\"\n    ], \n    \"Uno\": [\n        \"NNP\"\n    ], \n    \"Manned\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Eurotunnel\": [\n        \"NNP\"\n    ], \n    \"Gribbin\": [\n        \"NNP\"\n    ], \n    \"unlacing\": [\n        \"VBG\"\n    ], \n    \"conducted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Patman\": [\n        \"NNP\"\n    ], \n    \"science-education\": [\n        \"NN\"\n    ], \n    \"rogues\": [\n        \"NNS\"\n    ], \n    \"anti-slavery\": [\n        \"JJ\"\n    ], \n    \"dons\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"IOWA\": [\n        \"NNP\"\n    ], \n    \"BMIRs\": [\n        \"NNPS\"\n    ], \n    \"Revzin\": [\n        \"NNP\"\n    ], \n    \"then-52\": [\n        \"JJ\"\n    ], \n    \"barbarian\": [\n        \"NN\"\n    ], \n    \"mishandled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"done\": [\n        \"VBN\", \n        \"JJ\", \n        \"RB\", \n        \"VBD\"\n    ], \n    \"rerouted\": [\n        \"VBN\"\n    ], \n    \"An-12\": [\n        \"NN\"\n    ], \n    \"Genesis\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nonresident\": [\n        \"JJ\"\n    ], \n    \"Medco\": [\n        \"NNP\"\n    ], \n    \"Zachau\": [\n        \"NNP\"\n    ], \n    \"defense-contract\": [\n        \"NN\"\n    ], \n    \"revive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"single-owner\": [\n        \"JJ\"\n    ], \n    \"thickets\": [\n        \"NNS\"\n    ], \n    \"militant\": [\n        \"JJ\"\n    ], \n    \"regulation\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"assumption\": [\n        \"NN\"\n    ], \n    \"Gamma\": [\n        \"NNP\"\n    ], \n    \"amplifiers\": [\n        \"NNS\"\n    ], \n    \"Raul\": [\n        \"NNP\"\n    ], \n    \"Matthews\": [\n        \"NNP\"\n    ], \n    \"Folk-lore\": [\n        \"NN\"\n    ], \n    \"conspirators\": [\n        \"NNS\"\n    ], \n    \"Rauh\": [\n        \"NNP\"\n    ], \n    \"muggers\": [\n        \"NNS\"\n    ], \n    \"conduit\": [\n        \"NN\"\n    ], \n    \"pare\": [\n        \"VB\"\n    ], \n    \"Linguists\": [\n        \"NNS\"\n    ], \n    \"draper\": [\n        \"NN\"\n    ], \n    \"drapes\": [\n        \"NNS\"\n    ], \n    \"Locust\": [\n        \"NN\"\n    ], \n    \"USFL\": [\n        \"NNP\"\n    ], \n    \"draped\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"rockin\": [\n        \"JJ\"\n    ], \n    \"dentist\": [\n        \"NN\"\n    ], \n    \"part\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"pars\": [\n        \"NNS\"\n    ], \n    \"Says\": [\n        \"VBZ\"\n    ], \n    \"roughcast\": [\n        \"NN\"\n    ], \n    \"Tockman\": [\n        \"NNP\"\n    ], \n    \"Killelea\": [\n        \"NNP\"\n    ], \n    \"carnage\": [\n        \"NN\"\n    ], \n    \"savagery\": [\n        \"NN\"\n    ], \n    \"namesake\": [\n        \"NN\"\n    ], \n    \"nation-states\": [\n        \"NN\"\n    ], \n    \"recording\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"chartaceos\": [\n        \"NNS\"\n    ], \n    \"Goyette\": [\n        \"NNP\"\n    ], \n    \"declare\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Affairs\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"idled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nominee\": [\n        \"NN\"\n    ], \n    \"Revelation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fact-bound\": [\n        \"JJ\"\n    ], \n    \"Turbin\": [\n        \"NNP\"\n    ], \n    \"Custom\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"trifled\": [\n        \"VBN\"\n    ], \n    \"inholdings\": [\n        \"NNS\"\n    ], \n    \"Galle\": [\n        \"NNP\"\n    ], \n    \"idler\": [\n        \"NN\"\n    ], \n    \"test-marketed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Galli\": [\n        \"NNP\"\n    ], \n    \"often-heard\": [\n        \"JJ\"\n    ], \n    \"Dozens\": [\n        \"NNS\"\n    ], \n    \"Gallo\": [\n        \"NNP\"\n    ], \n    \"insufferably\": [\n        \"RB\"\n    ], \n    \"Shinbun\": [\n        \"NNP\"\n    ], \n    \"majority\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nullifiers\": [\n        \"NNS\"\n    ], \n    \"insufferable\": [\n        \"JJ\"\n    ], \n    \"waitin\": [\n        \"NN\"\n    ], \n    \"Gustafson\": [\n        \"NNP\"\n    ], \n    \"easygoing\": [\n        \"JJ\"\n    ], \n    \"sweatshirts\": [\n        \"NNS\"\n    ], \n    \"serve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"salmon\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"cosy\": [\n        \"JJ\"\n    ], \n    \"booby-trap\": [\n        \"NN\"\n    ], \n    \"extremely\": [\n        \"RB\"\n    ], \n    \"fuel-cost\": [\n        \"JJ\"\n    ], \n    \"branching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"giggling\": [\n        \"VBG\"\n    ], \n    \"interceded\": [\n        \"VBD\"\n    ], \n    \"mediation\": [\n        \"NN\"\n    ], \n    \"storyline\": [\n        \"NN\"\n    ], \n    \"Waldholz\": [\n        \"NNP\"\n    ], \n    \"Accord-fighter\": [\n        \"JJ\"\n    ], \n    \"Hapoalim\": [\n        \"NNP\"\n    ], \n    \"sector\": [\n        \"NN\"\n    ], \n    \"Yastrzemski\": [\n        \"NNP\"\n    ], \n    \"Stringfellow\": [\n        \"NNP\"\n    ], \n    \"sparrow\": [\n        \"NN\"\n    ], \n    \"Pimlott\": [\n        \"NNP\"\n    ], \n    \"vampire\": [\n        \"NN\"\n    ], \n    \"nonrefundable\": [\n        \"JJ\"\n    ], \n    \"acceptability\": [\n        \"NN\"\n    ], \n    \"bodybuilding\": [\n        \"NN\"\n    ], \n    \"Wonjerika\": [\n        \"NNP\"\n    ], \n    \"defiles\": [\n        \"VBZ\"\n    ], \n    \"fungible\": [\n        \"JJ\"\n    ], \n    \"Edmiston\": [\n        \"NNP\"\n    ], \n    \"Bengt\": [\n        \"NNP\"\n    ], \n    \"Wheatley\": [\n        \"NNP\"\n    ], \n    \"ruin\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Group-of-Seven\": [\n        \"NN\"\n    ], \n    \"cataclysms\": [\n        \"NNS\"\n    ], \n    \"massing\": [\n        \"VBG\"\n    ], \n    \"affiliations\": [\n        \"NNS\"\n    ], \n    \"Ravich\": [\n        \"NNP\"\n    ], \n    \"plain-vanilla\": [\n        \"NN\"\n    ], \n    \"Yakov\": [\n        \"NNP\"\n    ], \n    \"devastate\": [\n        \"VB\"\n    ], \n    \"cool-headed\": [\n        \"JJ\"\n    ], \n    \"Ballantine\": [\n        \"NNP\"\n    ], \n    \"slithered\": [\n        \"VBD\"\n    ], \n    \"Fewer\": [\n        \"JJR\", \n        \"RB\"\n    ], \n    \"picture-postcard\": [\n        \"NN\"\n    ], \n    \"Paxton\": [\n        \"NNP\"\n    ], \n    \"silk\": [\n        \"NN\"\n    ], \n    \"sill\": [\n        \"NN\"\n    ], \n    \"silo\": [\n        \"NN\"\n    ], \n    \"contagious\": [\n        \"JJ\"\n    ], \n    \"Fujis\": [\n        \"NNPS\"\n    ], \n    \"testifying\": [\n        \"VBG\"\n    ], \n    \"Anyway\": [\n        \"RB\"\n    ], \n    \"dissociating\": [\n        \"VBG\"\n    ], \n    \"Fujii\": [\n        \"NNP\"\n    ], \n    \"Permut\": [\n        \"NNP\"\n    ], \n    \"common\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"allocations\": [\n        \"NNS\"\n    ], \n    \"Heel-Holiday\": [\n        \"NNP\"\n    ], \n    \"philanthropy\": [\n        \"NN\"\n    ], \n    \"severing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"builder-dealer\": [\n        \"JJ\"\n    ], \n    \"Kuwaiti\": [\n        \"JJ\"\n    ], \n    \"import-incentive\": [\n        \"JJ\"\n    ], \n    \"excavation\": [\n        \"NN\"\n    ], \n    \"summed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bank-fraud\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"irregularly\": [\n        \"RB\"\n    ], \n    \"amorphously\": [\n        \"RB\"\n    ], \n    \"gravest\": [\n        \"JJS\"\n    ], \n    \"Boulle\": [\n        \"NNP\"\n    ], \n    \"changeable\": [\n        \"JJ\"\n    ], \n    \"Hildy\": [\n        \"NNP\"\n    ], \n    \"Customarily\": [\n        \"RB\"\n    ], \n    \"resolute\": [\n        \"JJ\"\n    ], \n    \"electoral\": [\n        \"JJ\"\n    ], \n    \"Selectol\": [\n        \"NNP\"\n    ], \n    \"fans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Toobin\": [\n        \"NNP\"\n    ], \n    \"anti-lock\": [\n        \"JJ\"\n    ], \n    \"distraught\": [\n        \"JJ\"\n    ], \n    \"mouthful\": [\n        \"NN\"\n    ], \n    \"champagne\": [\n        \"NN\"\n    ], \n    \"Blackfeet\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"instrument-jammed\": [\n        \"JJ\"\n    ], \n    \"criminologist\": [\n        \"NN\"\n    ], \n    \"mobile-home\": [\n        \"NN\"\n    ], \n    \"center-punch\": [\n        \"VB\"\n    ], \n    \"DDR\": [\n        \"NNP\"\n    ], \n    \"DDT\": [\n        \"NNP\"\n    ], \n    \"DDI\": [\n        \"NNP\"\n    ], \n    \"scuttle\": [\n        \"VB\"\n    ], \n    \"Populaire\": [\n        \"NNP\"\n    ], \n    \"Dang\": [\n        \"NNP\"\n    ], \n    \"DDB\": [\n        \"NNP\"\n    ], \n    \"Dane\": [\n        \"NNP\"\n    ], \n    \"irreverence\": [\n        \"NN\"\n    ], \n    \"Refugees\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Dana\": [\n        \"NNP\"\n    ], \n    \"half-hour\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Arafat\": [\n        \"NNP\"\n    ], \n    \"bank-sponsored\": [\n        \"JJ\"\n    ], \n    \"Antisubmarine\": [\n        \"JJ\"\n    ], \n    \"sultan\": [\n        \"NN\"\n    ], \n    \"Morino\": [\n        \"NNP\"\n    ], \n    \"jumpiness\": [\n        \"NN\"\n    ], \n    \"large-screen\": [\n        \"JJ\"\n    ], \n    \"dreamlike\": [\n        \"JJ\"\n    ], \n    \"kitchens\": [\n        \"NNS\"\n    ], \n    \"big-selling\": [\n        \"JJ\"\n    ], \n    \"Cuyler\": [\n        \"NNP\"\n    ], \n    \"geniuses\": [\n        \"NNS\"\n    ], \n    \"Parke-Davis\": [\n        \"NNP\"\n    ], \n    \"cakes\": [\n        \"NNS\"\n    ], \n    \"pancake\": [\n        \"NN\"\n    ], \n    \"Voltaire\": [\n        \"NNP\"\n    ], \n    \"donkey\": [\n        \"NN\"\n    ], \n    \"FEWER\": [\n        \"JJR\"\n    ], \n    \"dances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dancer\": [\n        \"NN\"\n    ], \n    \"caked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Onni\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Munsell\": [\n        \"NNP\"\n    ], \n    \"Onno\": [\n        \"NNP\"\n    ], \n    \"FK-506\": [\n        \"NNP\"\n    ], \n    \"Advises\": [\n        \"VBZ\"\n    ], \n    \"Adviser\": [\n        \"NNP\"\n    ], \n    \"ensures\": [\n        \"VBZ\"\n    ], \n    \"snaring\": [\n        \"VBG\"\n    ], \n    \"pocketbook\": [\n        \"NN\"\n    ], \n    \"Mobilfunk\": [\n        \"NNP\"\n    ], \n    \"old-growth\": [\n        \"JJ\"\n    ], \n    \"vertebrate\": [\n        \"JJ\"\n    ], \n    \"all-college\": [\n        \"NN\"\n    ], \n    \"kidnapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stock-specialist\": [\n        \"JJ\"\n    ], \n    \"dropping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ensured\": [\n        \"VBD\"\n    ], \n    \"intrusive\": [\n        \"JJ\"\n    ], \n    \"fountainhead\": [\n        \"NN\"\n    ], \n    \"first-year\": [\n        \"JJ\"\n    ], \n    \"Stake\": [\n        \"VB\"\n    ], \n    \"Inpex\": [\n        \"NNP\"\n    ], \n    \"gay\": [\n        \"JJ\"\n    ], \n    \"performance-based\": [\n        \"JJ\"\n    ], \n    \"chatted\": [\n        \"VBD\"\n    ], \n    \"recaptilization\": [\n        \"NN\"\n    ], \n    \"gas\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"gap\": [\n        \"NN\"\n    ], \n    \"repertoire\": [\n        \"NN\"\n    ], \n    \"gal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"vane\": [\n        \"NN\"\n    ], \n    \"millionaires\": [\n        \"NNS\"\n    ], \n    \"gai\": [\n        \"FW\"\n    ], \n    \"gag\": [\n        \"NN\"\n    ], \n    \"wedding\": [\n        \"NN\"\n    ], \n    \"chatter\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"gab\": [\n        \"NN\"\n    ], \n    \"replaces\": [\n        \"VBZ\"\n    ], \n    \"Ordered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"outperforms\": [\n        \"VBZ\"\n    ], \n    \"PILING\": [\n        \"VBG\"\n    ], \n    \"College\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"consular\": [\n        \"JJ\"\n    ], \n    \"red-tape\": [\n        \"NN\"\n    ], \n    \"Angie\": [\n        \"NNP\"\n    ], \n    \"redevelopment\": [\n        \"NN\"\n    ], \n    \"waterway\": [\n        \"NN\"\n    ], \n    \"clubrooms\": [\n        \"NNS\"\n    ], \n    \"mystic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"colon-cancer\": [\n        \"NN\"\n    ], \n    \"down-to-earth\": [\n        \"JJ\"\n    ], \n    \"echelon\": [\n        \"NN\"\n    ], \n    \"Goodfellow\": [\n        \"NNP\"\n    ], \n    \"Heiser\": [\n        \"NNP\"\n    ], \n    \"Watrous\": [\n        \"NNP\"\n    ], \n    \"Receiving\": [\n        \"VBG\"\n    ], \n    \"shunning\": [\n        \"VBG\"\n    ], \n    \"aches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Dialogue\": [\n        \"NNP\"\n    ], \n    \"Londoner\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"sociologist\": [\n        \"NN\"\n    ], \n    \"rheumatism\": [\n        \"NN\"\n    ], \n    \"engrossed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"airbags\": [\n        \"NNS\"\n    ], \n    \"wherein\": [\n        \"WRB\", \n        \"RB\"\n    ], \n    \"benign\": [\n        \"JJ\"\n    ], \n    \"discourse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"ached\": [\n        \"VBD\"\n    ], \n    \"Pecorone\": [\n        \"NNP\"\n    ], \n    \"Monocite\": [\n        \"NNP\"\n    ], \n    \"Staley\": [\n        \"NNP\"\n    ], \n    \"husbands\": [\n        \"NNS\"\n    ], \n    \"absolved\": [\n        \"VBD\"\n    ], \n    \"purpose\": [\n        \"NN\"\n    ], \n    \"Parisians\": [\n        \"NNPS\"\n    ], \n    \"breathalyzer\": [\n        \"NN\"\n    ], \n    \"obeisant\": [\n        \"JJ\"\n    ], \n    \"Pardo\": [\n        \"NNP\"\n    ], \n    \"ADRs\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"motionless\": [\n        \"JJ\"\n    ], \n    \"Biomedicals\": [\n        \"NNP\"\n    ], \n    \"craved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"prophet\": [\n        \"NN\"\n    ], \n    \"redesigned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"craven\": [\n        \"JJ\"\n    ], \n    \"Magnums\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"craves\": [\n        \"VBZ\"\n    ], \n    \"toil\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"functionary\": [\n        \"NN\"\n    ], \n    \"hardwoods\": [\n        \"NNS\"\n    ], \n    \"Colorocs\": [\n        \"NNP\"\n    ], \n    \"paneling\": [\n        \"NN\"\n    ], \n    \"EITC\": [\n        \"NNP\"\n    ], \n    \"new-money\": [\n        \"JJ\"\n    ], \n    \"vindictive\": [\n        \"JJ\"\n    ], \n    \"Sendler\": [\n        \"NNP\"\n    ], \n    \"All-Star\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Armin\": [\n        \"NNP\"\n    ], \n    \"circling\": [\n        \"VBG\"\n    ], \n    \"Bekkai\": [\n        \"NNP\"\n    ], \n    \"Wigs\": [\n        \"NNS\"\n    ], \n    \"tear-soaked\": [\n        \"JJ\"\n    ], \n    \"discipline\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"R.P.\": [\n        \"NNP\"\n    ], \n    \"Strumwasser\": [\n        \"NNP\"\n    ], \n    \"Nipsco\": [\n        \"NNP\"\n    ], \n    \"Euro-enthusiasts\": [\n        \"NNS\"\n    ], \n    \"vague\": [\n        \"JJ\"\n    ], \n    \"Raboy\": [\n        \"NNP\"\n    ], \n    \"bravery\": [\n        \"NN\"\n    ], \n    \"wags\": [\n        \"NNS\"\n    ], \n    \"circumcision\": [\n        \"NN\"\n    ], \n    \"administrative\": [\n        \"JJ\"\n    ], \n    \"brainstorm\": [\n        \"NN\"\n    ], \n    \"unloading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Airfone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"valueless\": [\n        \"JJ\"\n    ], \n    \"chalking\": [\n        \"VBG\"\n    ], \n    \"squashing\": [\n        \"VBG\"\n    ], \n    \"displace\": [\n        \"VB\"\n    ], \n    \"Harley\": [\n        \"NNP\"\n    ], \n    \"smallness\": [\n        \"NN\"\n    ], \n    \"Matsushita-made\": [\n        \"JJ\"\n    ], \n    \"subparts\": [\n        \"NNS\"\n    ], \n    \"Campaneris\": [\n        \"NNP\"\n    ], \n    \"droped\": [\n        \"VBD\"\n    ], \n    \"Harlem\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"competitively\": [\n        \"RB\"\n    ], \n    \"Coupled\": [\n        \"VBN\"\n    ], \n    \"air-express\": [\n        \"NN\"\n    ], \n    \"Fond\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Erbamont\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Couples\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"surging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"propitious\": [\n        \"JJ\"\n    ], \n    \"Embryogen\": [\n        \"NNP\"\n    ], \n    \"mediocrity\": [\n        \"NN\"\n    ], \n    \"bamboo\": [\n        \"NN\"\n    ], \n    \"motion-control\": [\n        \"NN\"\n    ], \n    \"your...\": [\n        \":\"\n    ], \n    \"channelled\": [\n        \"VBN\"\n    ], \n    \"fourth-class\": [\n        \"JJ\"\n    ], \n    \"Danis\": [\n        \"NNP\"\n    ], \n    \"gardening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Gulf\": [\n        \"NNP\"\n    ], \n    \"Eskenazi\": [\n        \"NNP\"\n    ], \n    \"obliged\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"predisposing\": [\n        \"VBG\"\n    ], \n    \"pricing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"mirror\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"scuttled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"double-A1\": [\n        \"NN\"\n    ], \n    \"obliges\": [\n        \"VBZ\"\n    ], \n    \"Holden\": [\n        \"NNP\"\n    ], \n    \"Roessler\": [\n        \"NNP\"\n    ], \n    \"acquaintance\": [\n        \"NN\"\n    ], \n    \"collapses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"fivefold\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"metamorphosed\": [\n        \"VBN\"\n    ], \n    \"pill-factory\": [\n        \"JJ\"\n    ], \n    \"burgeoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"connecting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"verbally\": [\n        \"RB\"\n    ], \n    \"lard\": [\n        \"NN\"\n    ], \n    \"lark\": [\n        \"NN\"\n    ], \n    \"automobile-tire\": [\n        \"JJ\"\n    ], \n    \"Alarm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"visionary\": [\n        \"JJ\"\n    ], \n    \"rapping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"wayward\": [\n        \"JJ\"\n    ], \n    \"anemics\": [\n        \"NNS\"\n    ], \n    \"windowpanes\": [\n        \"NNS\"\n    ], \n    \"offenders\": [\n        \"NNS\"\n    ], \n    \"Roman-camp\": [\n        \"NN\"\n    ], \n    \"unenthusiastic\": [\n        \"JJ\"\n    ], \n    \"Heng-Shan\": [\n        \"NNP\"\n    ], \n    \"monologist\": [\n        \"NN\"\n    ], \n    \"Policies\": [\n        \"NNS\"\n    ], \n    \"scandal-ridden\": [\n        \"JJ\"\n    ], \n    \"optimize\": [\n        \"VB\"\n    ], \n    \"shrilling\": [\n        \"VBG\"\n    ], \n    \"Chieti\": [\n        \"NNP\"\n    ], \n    \"mid-market\": [\n        \"JJ\"\n    ], \n    \"anti-competitive\": [\n        \"JJ\"\n    ], \n    \"Alfa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Glenn\": [\n        \"NNP\"\n    ], \n    \"Choctaws\": [\n        \"NNPS\"\n    ], \n    \"nature-conquering\": [\n        \"JJ\"\n    ], \n    \"gratings\": [\n        \"NNS\"\n    ], \n    \"peccadilloes\": [\n        \"NNS\"\n    ], \n    \"ounce\": [\n        \"NN\"\n    ], \n    \"extensions\": [\n        \"NNS\"\n    ], \n    \"double-A\\\\\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"bluster\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"wilted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Chrisanthopoulos\": [\n        \"NNP\"\n    ], \n    \"lessor\": [\n        \"NN\"\n    ], \n    \"harassed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"higher-yielding\": [\n        \"JJ\"\n    ], \n    \"hard-boiled\": [\n        \"JJ\"\n    ], \n    \"framed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"CWA\": [\n        \"NNP\"\n    ], \n    \"moderating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Advertising\\\\/San\": [\n        \"NNP\"\n    ], \n    \"custom-designed\": [\n        \"JJ\"\n    ], \n    \"gains-tax\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lesson\": [\n        \"NN\"\n    ], \n    \"top-yielding\": [\n        \"JJ\"\n    ], \n    \"Vulture\": [\n        \"NN\"\n    ], \n    \"race-driver\": [\n        \"NN\"\n    ], \n    \"derangement\": [\n        \"NN\"\n    ], \n    \"kaffeeklatsch\": [\n        \"FW\"\n    ], \n    \"Non-Dissonant\": [\n        \"NNP\"\n    ], \n    \"trading-room\": [\n        \"NN\"\n    ], \n    \"Nichido\": [\n        \"NNP\"\n    ], \n    \"rape-and-incest\": [\n        \"JJ\"\n    ], \n    \"immigration\": [\n        \"NN\"\n    ], \n    \"butlers\": [\n        \"NNS\"\n    ], \n    \"subjectively\": [\n        \"RB\"\n    ], \n    \"another...\": [\n        \":\"\n    ], \n    \"discomfit\": [\n        \"VB\"\n    ], \n    \"particulates\": [\n        \"NNS\"\n    ], \n    \"sheep-like\": [\n        \"JJ\"\n    ], \n    \"Riedel\": [\n        \"NNP\"\n    ], \n    \"de\": [\n        \"FW\", \n        \"IN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"parts-suppliers\": [\n        \"NNS\"\n    ], \n    \"Fools\": [\n        \"NNS\"\n    ], \n    \"rear-looking\": [\n        \"JJ\"\n    ], \n    \"Bigelow\": [\n        \"NNP\"\n    ], \n    \"members.\": [\n        \"NN\"\n    ], \n    \"research-heavy\": [\n        \"JJ\"\n    ], \n    \"cubbyholes\": [\n        \"NNS\"\n    ], \n    \"Siebern\": [\n        \"NNP\"\n    ], \n    \"corn-producing\": [\n        \"JJ\"\n    ], \n    \"Perhaps\": [\n        \"RB\"\n    ], \n    \"notarized\": [\n        \"VBN\"\n    ], \n    \"Westinghouse\": [\n        \"NNP\"\n    ], \n    \"provost\": [\n        \"NN\"\n    ], \n    \"Zeidner\": [\n        \"NNP\"\n    ], \n    \"Occident\": [\n        \"NNP\"\n    ], \n    \"Fiberall\": [\n        \"NNP\"\n    ], \n    \"Siebert\": [\n        \"NNP\"\n    ], \n    \"brethren\": [\n        \"NNS\"\n    ], \n    \"Murder\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"adjudicate\": [\n        \"VB\"\n    ], \n    \"MERGER\": [\n        \"NN\"\n    ], \n    \"Danehy\": [\n        \"NNP\"\n    ], \n    \"pennants\": [\n        \"NNS\"\n    ], \n    \"buckshot\": [\n        \"NN\"\n    ], \n    \"Kass\": [\n        \"NNP\"\n    ], \n    \"pails\": [\n        \"NNS\"\n    ], \n    \"priori\": [\n        \"FW\"\n    ], \n    \"semi-private\": [\n        \"JJ\"\n    ], \n    \"Proxy\": [\n        \"NN\"\n    ], \n    \"cesspools\": [\n        \"NNS\"\n    ], \n    \"Nicholas\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"yodeling\": [\n        \"VBG\"\n    ], \n    \"conventionally\": [\n        \"RB\"\n    ], \n    \"spurns\": [\n        \"VBZ\"\n    ], \n    \"patsies\": [\n        \"NNS\"\n    ], \n    \"itemizing\": [\n        \"VBG\"\n    ], \n    \"enterprise\": [\n        \"NN\"\n    ], \n    \"luxurious\": [\n        \"JJ\"\n    ], \n    \"depicting\": [\n        \"VBG\"\n    ], \n    \"work-weary\": [\n        \"JJ\"\n    ], \n    \"pro-Trujillo\": [\n        \"JJ\"\n    ], \n    \"statesman\": [\n        \"NN\"\n    ], \n    \"power-tool\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Roussel\": [\n        \"NNP\"\n    ], \n    \"romantics\": [\n        \"NNS\"\n    ], \n    \"ascertained\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"arm-twisting\": [\n        \"NNP\"\n    ], \n    \"floe\": [\n        \"NN\"\n    ], \n    \"Alferon\": [\n        \"NNP\"\n    ], \n    \"Strangfeld\": [\n        \"NNP\"\n    ], \n    \"quick-to-prepare\": [\n        \"JJ\"\n    ], \n    \"Cinematografica\": [\n        \"NNP\"\n    ], \n    \"Balcolm\": [\n        \"NNP\"\n    ], \n    \"Nedlloyd\": [\n        \"NNP\"\n    ], \n    \"classic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"beckons\": [\n        \"VBZ\"\n    ], \n    \"preadmission\": [\n        \"NN\"\n    ], \n    \"Whosever\": [\n        \"WP\"\n    ], \n    \"sometimes-necessary\": [\n        \"JJ\"\n    ], \n    \"integral\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"corroding\": [\n        \"VBG\"\n    ], \n    \"rivalry\": [\n        \"NN\"\n    ], \n    \"factoring\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Mellal\": [\n        \"NNP\"\n    ], \n    \"Payne\": [\n        \"NNP\"\n    ], \n    \"record-breaking\": [\n        \"JJ\"\n    ], \n    \"Saatchis\": [\n        \"NNPS\"\n    ], \n    \"Crippled\": [\n        \"NNP\"\n    ], \n    \"diagnosticians\": [\n        \"NNS\"\n    ], \n    \"countenances\": [\n        \"NNS\"\n    ], \n    \"stupefying\": [\n        \"JJ\"\n    ], \n    \"Prudential\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"automotive\": [\n        \"JJ\"\n    ], \n    \"non-subscription\": [\n        \"JJ\"\n    ], \n    \"postage-prepaid\": [\n        \"JJ\"\n    ], \n    \"past-oriented\": [\n        \"JJ\"\n    ], \n    \"recreation\": [\n        \"NN\"\n    ], \n    \"Takeovers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Woolard\": [\n        \"NNP\"\n    ], \n    \"Overtones\": [\n        \"NNS\"\n    ], \n    \"sulked\": [\n        \"VBD\"\n    ], \n    \"molal\": [\n        \"JJ\"\n    ], \n    \"hunter\": [\n        \"NN\"\n    ], \n    \"McCraw\": [\n        \"NNP\"\n    ], \n    \"DKNY\": [\n        \"NNP\"\n    ], \n    \"bandoleers\": [\n        \"NNS\"\n    ], \n    \"playmate\": [\n        \"NN\"\n    ], \n    \"luxury-goods\": [\n        \"NNS\"\n    ], \n    \"Shortening\": [\n        \"VBG\"\n    ], \n    \"Lottie\": [\n        \"NNP\"\n    ], \n    \"government-certified\": [\n        \"JJ\"\n    ], \n    \"insertion\": [\n        \"NN\"\n    ], \n    \"cassocked\": [\n        \"JJ\"\n    ], \n    \"quick-handling\": [\n        \"JJ\"\n    ], \n    \"Norway\": [\n        \"NNP\"\n    ], \n    \"Guthman\": [\n        \"NNP\"\n    ], \n    \"recession\": [\n        \"NN\"\n    ], \n    \"sonogram\": [\n        \"NN\"\n    ], \n    \"earmarking\": [\n        \"VBG\"\n    ], \n    \"pipes\": [\n        \"NNS\"\n    ], \n    \"piper\": [\n        \"NN\"\n    ], \n    \"paddle\": [\n        \"NN\"\n    ], \n    \"inconveniences\": [\n        \"NNS\"\n    ], \n    \"acquisiton\": [\n        \"NN\"\n    ], \n    \"payday\": [\n        \"NN\"\n    ], \n    \"revisionist\": [\n        \"JJ\"\n    ], \n    \"Iran-Contra\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"piped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Milos\": [\n        \"NNP\"\n    ], \n    \"Boheme\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"narrow-bodied\": [\n        \"JJ\"\n    ], \n    \"spacing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"demoniac\": [\n        \"JJ\"\n    ], \n    \"Buckhannon\": [\n        \"NN\"\n    ], \n    \"FTC\": [\n        \"NNP\"\n    ], \n    \"Marriage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fiefdom\": [\n        \"NN\"\n    ], \n    \"Paracchini\": [\n        \"NNP\"\n    ], \n    \"archness\": [\n        \"NN\"\n    ], \n    \"preamble\": [\n        \"NN\"\n    ], \n    \"Equestrian\": [\n        \"NNP\"\n    ], \n    \"lower-income\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Cried\": [\n        \"VBD\"\n    ], \n    \"conceit\": [\n        \"NN\"\n    ], \n    \"Intelligence\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"franks-in-buns\": [\n        \"NNS\"\n    ], \n    \"farm-subsidy\": [\n        \"NN\"\n    ], \n    \"neater\": [\n        \"RBR\"\n    ], \n    \"Crier\": [\n        \"NNP\"\n    ], \n    \"health-insurance\": [\n        \"NN\"\n    ], \n    \"Wieden\": [\n        \"NNP\"\n    ], \n    \"three-minute\": [\n        \"JJ\"\n    ], \n    \"opticians\": [\n        \"NNS\"\n    ], \n    \"Prosperity\": [\n        \"NN\"\n    ], \n    \"race...\": [\n        \":\"\n    ], \n    \"blizzard\": [\n        \"NN\"\n    ], \n    \"Tack-solder\": [\n        \"VB\"\n    ], \n    \"decrease\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Nachman\": [\n        \"NNP\"\n    ], \n    \"Brazilian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"HOME\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Yoran\": [\n        \"NNP\"\n    ], \n    \"gallivantin\": [\n        \"NN\"\n    ], \n    \"dissonance\": [\n        \"NN\"\n    ], \n    \"male-only\": [\n        \"JJ\"\n    ], \n    \"asteroid\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Katherine\": [\n        \"NNP\"\n    ], \n    \"Kobrand\": [\n        \"NNP\"\n    ], \n    \"venal\": [\n        \"JJ\"\n    ], \n    \"Porta-Potti\": [\n        \"NNP\"\n    ], \n    \"trait\": [\n        \"NN\"\n    ], \n    \"silted\": [\n        \"VBN\"\n    ], \n    \"trail\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"train\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"normalized\": [\n        \"VBN\"\n    ], \n    \"swooping\": [\n        \"VBG\"\n    ], \n    \"beetle-browed\": [\n        \"JJ\"\n    ], \n    \"Estonia\": [\n        \"NNP\"\n    ], \n    \"embarked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"super-spy\": [\n        \"NN\"\n    ], \n    \"Encourage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Breene\": [\n        \"NNP\"\n    ], \n    \"pedaled\": [\n        \"VBN\"\n    ], \n    \"obvious\": [\n        \"JJ\"\n    ], \n    \"unwitting\": [\n        \"JJ\"\n    ], \n    \"inviolate\": [\n        \"JJ\"\n    ], \n    \"hormone-treated\": [\n        \"JJ\"\n    ], \n    \"Savath\": [\n        \"NNP\"\n    ], \n    \"octoroon\": [\n        \"NN\"\n    ], \n    \"snacks\": [\n        \"NNS\"\n    ], \n    \"Protestant-dominated\": [\n        \"JJ\"\n    ], \n    \"infantry\": [\n        \"NN\"\n    ], \n    \"sought\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"four-point\": [\n        \"JJ\"\n    ], \n    \"HOLDING\": [\n        \"NNP\"\n    ], \n    \"low-foam\": [\n        \"NN\"\n    ], \n    \"food-fish\": [\n        \"NNS\"\n    ], \n    \"Rosenfield\": [\n        \"NNP\"\n    ], \n    \"lamb\": [\n        \"NN\"\n    ], \n    \"monoxide\": [\n        \"NN\"\n    ], \n    \"lame\": [\n        \"JJ\"\n    ], \n    \"lamp\": [\n        \"NN\"\n    ], \n    \"solitudes\": [\n        \"NNS\"\n    ], \n    \"forest\": [\n        \"NN\"\n    ], \n    \"psyches\": [\n        \"NNS\"\n    ], \n    \"hedgers\": [\n        \"NNS\"\n    ], \n    \"furnace\": [\n        \"NN\"\n    ], \n    \"nips\": [\n        \"NNS\"\n    ], \n    \"flanking\": [\n        \"VBG\"\n    ], \n    \"Stirling\": [\n        \"NNP\"\n    ], \n    \"factored\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Yoshiharu\": [\n        \"NNP\"\n    ], \n    \"bushwhackin\": [\n        \"JJ\"\n    ], \n    \"billings\": [\n        \"NNS\"\n    ], \n    \"nary\": [\n        \"DT\", \n        \"PDT\"\n    ], \n    \"Georgeson\": [\n        \"NNP\"\n    ], \n    \"obtrusiveness\": [\n        \"NN\"\n    ], \n    \"deliriously\": [\n        \"RB\"\n    ], \n    \"defective\": [\n        \"JJ\"\n    ], \n    \"Fixed-rate\": [\n        \"JJ\"\n    ], \n    \"picturesque\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Brenmor\": [\n        \"NNP\"\n    ], \n    \"sidelong\": [\n        \"JJ\"\n    ], \n    \"Weather\": [\n        \"NNP\"\n    ], \n    \"Champ\": [\n        \"NNP\"\n    ], \n    \"Kwan\": [\n        \"NNP\"\n    ], \n    \"lingua\": [\n        \"FW\"\n    ], \n    \"Ateliers\": [\n        \"NNP\"\n    ], \n    \"Boatel\": [\n        \"NN\"\n    ], \n    \"Transportek\": [\n        \"NNP\"\n    ], \n    \"concentration-camp\": [\n        \"NN\"\n    ], \n    \"charting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"butternut\": [\n        \"NN\"\n    ], \n    \"Oistrakh\": [\n        \"NNP\"\n    ], \n    \"burning\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Raccoons\": [\n        \"NNS\"\n    ], \n    \"koan\": [\n        \"FW\"\n    ], \n    \"Neubauer\": [\n        \"NNP\"\n    ], \n    \"Quartet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kindergarten\": [\n        \"NN\"\n    ], \n    \"Fortier\": [\n        \"NNP\"\n    ], \n    \"Forties\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"bedpost\": [\n        \"NN\"\n    ], \n    \"well-respected\": [\n        \"JJ\"\n    ], \n    \"waggling\": [\n        \"VBG\"\n    ], \n    \"Stronghold\": [\n        \"JJ\"\n    ], \n    \"tickled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"spell\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"fiesta\": [\n        \"NN\"\n    ], \n    \"Wacker\": [\n        \"NNP\"\n    ], \n    \"courtroom\": [\n        \"NN\"\n    ], \n    \"Loves\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"Mother\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Exchnage\": [\n        \"NNP\"\n    ], \n    \"Woodworth\": [\n        \"NNP\"\n    ], \n    \"Tamiris\": [\n        \"NNP\"\n    ], \n    \"Jinshajiang\": [\n        \"NNP\"\n    ], \n    \"stormier\": [\n        \"JJR\"\n    ], \n    \"meterological\": [\n        \"JJ\"\n    ], \n    \"Cheveralls\": [\n        \"NNP\"\n    ], \n    \"change-over\": [\n        \"NN\"\n    ], \n    \"Gunny\": [\n        \"NNP\"\n    ], \n    \"computer-activated\": [\n        \"JJ\"\n    ], \n    \"virulent\": [\n        \"JJ\"\n    ], \n    \"Lichtblau\": [\n        \"NNP\"\n    ], \n    \"Fed\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Richterian\": [\n        \"JJ\"\n    ], \n    \"Avelar\": [\n        \"NNP\"\n    ], \n    \"Korobytsins\": [\n        \"NNS\"\n    ], \n    \"half-well\": [\n        \"JJ\"\n    ], \n    \"Klatsky\": [\n        \"NNP\"\n    ], \n    \"winked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"outcry\": [\n        \"NN\"\n    ], \n    \"McRae\": [\n        \"NNP\"\n    ], \n    \"burdened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pacifism\": [\n        \"NN\"\n    ], \n    \"Monets\": [\n        \"NNPS\"\n    ], \n    \"filmmaking\": [\n        \"NN\"\n    ], \n    \"Exxon-Valdez\": [\n        \"JJ\"\n    ], \n    \"role-playing\": [\n        \"NN\"\n    ], \n    \"Bruch\": [\n        \"NNP\"\n    ], \n    \"matt\": [\n        \"NN\"\n    ], \n    \"Increasing\": [\n        \"VBG\", \n        \"JJ|VBG\"\n    ], \n    \"mats\": [\n        \"NNS\"\n    ], \n    \"Wyche\": [\n        \"NNP\"\n    ], \n    \"plods\": [\n        \"VBZ\"\n    ], \n    \"common-stock\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"repress\": [\n        \"VB\"\n    ], \n    \"stub\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mate\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"messenger\": [\n        \"NN\"\n    ], \n    \"SICK\": [\n        \"NNP\"\n    ], \n    \"peeling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Tasmania\": [\n        \"NNP\"\n    ], \n    \"math\": [\n        \"NN\"\n    ], \n    \"heretics\": [\n        \"NNS\"\n    ], \n    \"P.-T.A.\": [\n        \"NNP\"\n    ], \n    \"thunderstorm\": [\n        \"NN\"\n    ], \n    \"affilates\": [\n        \"NNS\"\n    ], \n    \"meaningfully\": [\n        \"RB\"\n    ], \n    \"Appalachians\": [\n        \"NNPS\"\n    ], \n    \"Tanker\": [\n        \"NNP\"\n    ], \n    \"Manitoba-based\": [\n        \"JJ\"\n    ], \n    \"megadrop\": [\n        \"NN\"\n    ], \n    \"pocket-size\": [\n        \"JJ\"\n    ], \n    \"Sparling\": [\n        \"NNP\"\n    ], \n    \"Morinaga\": [\n        \"NNP\"\n    ], \n    \"hyperinflation\": [\n        \"NN\"\n    ], \n    \"university-wide\": [\n        \"JJ\"\n    ], \n    \"still-outstanding\": [\n        \"JJ\"\n    ], \n    \"Burgesses\": [\n        \"NNS\"\n    ], \n    \"Pantheon\": [\n        \"NNP\"\n    ], \n    \"Floey\": [\n        \"NNP\"\n    ], \n    \"fouled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"pre-May\": [\n        \"JJ\"\n    ], \n    \"grieving\": [\n        \"VBG\"\n    ], \n    \"Endowment\": [\n        \"NNP\"\n    ], \n    \"unspent\": [\n        \"JJ\"\n    ], \n    \"Oxfordshire\": [\n        \"NNP\"\n    ], \n    \"Japs\": [\n        \"NNPS\"\n    ], \n    \"NAIRO\": [\n        \"NNP\"\n    ], \n    \"Dickinson\": [\n        \"NNP\"\n    ], \n    \"Toshiba\": [\n        \"NNP\"\n    ], \n    \"synthesizine\": [\n        \"NN\"\n    ], \n    \"Weinberg\": [\n        \"NNP\"\n    ], \n    \"swept\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Adverbial\": [\n        \"JJ\"\n    ], \n    \"fiber-related\": [\n        \"JJ\"\n    ], \n    \"air-pollution\": [\n        \"NN\"\n    ], \n    \"nut\": [\n        \"NN\"\n    ], \n    \"gas-station\": [\n        \"JJ\"\n    ], \n    \"Bauser\": [\n        \"NNP\"\n    ], \n    \"sixteenth\": [\n        \"JJ\"\n    ], \n    \"veto-proof\": [\n        \"JJ\"\n    ], \n    \"appartus\": [\n        \"NN\"\n    ], \n    \"eavesdrop\": [\n        \"VB\"\n    ], \n    \"smolder\": [\n        \"VBP\"\n    ], \n    \"completed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"picnicked\": [\n        \"VBD\"\n    ], \n    \"dreary\": [\n        \"JJ\"\n    ], \n    \"perforce\": [\n        \"RB\"\n    ], \n    \"Ryutaro\": [\n        \"NNP\"\n    ], \n    \"Land-Rover\": [\n        \"NNP\"\n    ], \n    \"capital-raising\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"discretionary\": [\n        \"JJ\"\n    ], \n    \"non-intellectual\": [\n        \"JJ\"\n    ], \n    \"anti-socialist\": [\n        \"JJ\"\n    ], \n    \"jocks\": [\n        \"NNS\"\n    ], \n    \"O.K\": [\n        \"UH\"\n    ], \n    \"wad-working\": [\n        \"NN\"\n    ], \n    \"Caleb\": [\n        \"NNP\"\n    ], \n    \"Born-again\": [\n        \"JJ\"\n    ], \n    \"circumspect\": [\n        \"JJ\"\n    ], \n    \"amplitude\": [\n        \"NN\"\n    ], \n    \"Flush\": [\n        \"JJ\"\n    ], \n    \"visited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"morticians\": [\n        \"NNS\"\n    ], \n    \"plutonium-based\": [\n        \"JJ\"\n    ], \n    \"fluctuation\": [\n        \"NN\"\n    ], \n    \"transitory\": [\n        \"JJ\"\n    ], \n    \"Fought\": [\n        \"VBN\"\n    ], \n    \"Pirelli\": [\n        \"NNP\"\n    ], \n    \"unlikely\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"clunker\": [\n        \"NN\"\n    ], \n    \"Peg\": [\n        \"NNP\"\n    ], \n    \"Dilenschneider\": [\n        \"NNP\"\n    ], \n    \"Couple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pushing\": [\n        \"VBG\"\n    ], \n    \"prays\": [\n        \"VBZ\"\n    ], \n    \"parks\": [\n        \"NNS\"\n    ], \n    \"Xinhua\": [\n        \"NNP\"\n    ], \n    \"Sante\": [\n        \"NNP\"\n    ], \n    \"Santa\": [\n        \"NNP\"\n    ], \n    \"miniskirt\": [\n        \"NN\"\n    ], \n    \"rubber-stamp\": [\n        \"VB\"\n    ], \n    \"self-dictate\": [\n        \"NN\"\n    ], \n    \"savages\": [\n        \"NNS\"\n    ], \n    \"closeups\": [\n        \"NNS\"\n    ], \n    \"Trac\": [\n        \"NNP\"\n    ], \n    \"early-morning\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"supranationalism\": [\n        \"NN\"\n    ], \n    \"Gillers\": [\n        \"NNP\"\n    ], \n    \"Eagleton\": [\n        \"NNP\"\n    ], \n    \"Trap\": [\n        \"NNP\"\n    ], \n    \"savaged\": [\n        \"VBD\"\n    ], \n    \"trendier\": [\n        \"JJR\"\n    ], \n    \"communications-network\": [\n        \"JJ\"\n    ], \n    \"Inter-American\": [\n        \"NNP\"\n    ], \n    \"Tray\": [\n        \"NNP\"\n    ], \n    \"overestimation\": [\n        \"NN\"\n    ], \n    \"gurus\": [\n        \"NNS\"\n    ], \n    \"afresh\": [\n        \"RB\"\n    ], \n    \"U.S.-Philippine\": [\n        \"JJ\"\n    ], \n    \"wherewith\": [\n        \"VB\"\n    ], \n    \"stranded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"reconcilable\": [\n        \"JJ\"\n    ], \n    \"silver-gray\": [\n        \"JJ\"\n    ], \n    \"sheathing\": [\n        \"NN\"\n    ], \n    \"anti-American\": [\n        \"JJ\"\n    ], \n    \"normally\": [\n        \"RB\"\n    ], \n    \"Saturday\": [\n        \"NNP\"\n    ], \n    \"Fei\": [\n        \"NNP\"\n    ], \n    \"galvanizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"appliques\": [\n        \"NNS\"\n    ], \n    \"industrialism\": [\n        \"NN\"\n    ], \n    \"big-hearted\": [\n        \"JJ\"\n    ], \n    \"off-hours\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"slanderer\": [\n        \"NN\"\n    ], \n    \"medical-products\": [\n        \"NNS\"\n    ], \n    \"festooned\": [\n        \"VBN\"\n    ], \n    \"floodlight\": [\n        \"NN\"\n    ], \n    \"underappreciated\": [\n        \"JJ\"\n    ], \n    \"BEST\": [\n        \"JJS\"\n    ], \n    \"leaching\": [\n        \"NN\"\n    ], \n    \"inspiring\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"debt-payment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Neibart\": [\n        \"NNP\"\n    ], \n    \"couponing\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"neighbhorhoods\": [\n        \"NNS\"\n    ], \n    \"INTERVOICE\": [\n        \"NNP\"\n    ], \n    \"Va.-based\": [\n        \"JJ\"\n    ], \n    \"lobo\": [\n        \"NN\"\n    ], \n    \"lobe\": [\n        \"NN\"\n    ], \n    \"whistleblower\": [\n        \"NN\"\n    ], \n    \"Amitai\": [\n        \"NNP\"\n    ], \n    \"Accacia\": [\n        \"NNP\"\n    ], \n    \"Imrene\": [\n        \"NNP\"\n    ], \n    \"Belzberg\": [\n        \"NNP\"\n    ], \n    \"Tadahiko\": [\n        \"NNP\"\n    ], \n    \"littlest\": [\n        \"JJS\"\n    ], \n    \"Cemal\": [\n        \"NNP\"\n    ], \n    \"Selden\": [\n        \"NNP\"\n    ], \n    \"cycled\": [\n        \"VBN\"\n    ], \n    \"dripped\": [\n        \"VBD\"\n    ], \n    \"shelling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"co-extinction\": [\n        \"NN\"\n    ], \n    \"Seldes\": [\n        \"NNP\"\n    ], \n    \"including\": [\n        \"VBG\"\n    ], \n    \"fighter-jet\": [\n        \"NN\"\n    ], \n    \"cycles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"filched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Interlochen\": [\n        \"NNP\"\n    ], \n    \"Baiba\": [\n        \"NNP\"\n    ], \n    \"adventuresome\": [\n        \"JJ\"\n    ], \n    \"Special-interest\": [\n        \"JJ\"\n    ], \n    \"Spokesmen\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"snowplow\": [\n        \"NN\"\n    ], \n    \"co-payment\": [\n        \"JJ\"\n    ], \n    \"Passion\": [\n        \"NNP\"\n    ], \n    \"seventy-five-foot\": [\n        \"JJ\"\n    ], \n    \"injunctive\": [\n        \"JJ\"\n    ], \n    \"speechlessness\": [\n        \"NN\"\n    ], \n    \"vicars\": [\n        \"NNS\"\n    ], \n    \"imaginatively\": [\n        \"RB\"\n    ], \n    \"fine-feathered\": [\n        \"JJ\"\n    ], \n    \"Noriega\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pattern\": [\n        \"NN\"\n    ], \n    \"microcomputer-systems\": [\n        \"JJ\"\n    ], \n    \"deep-discount\": [\n        \"JJ\"\n    ], \n    \"Ophthalmic\": [\n        \"NNP\"\n    ], \n    \"Charnock\": [\n        \"NNP\"\n    ], \n    \"Ouzo\": [\n        \"NN\"\n    ], \n    \"Shoulder\": [\n        \"NN\"\n    ], \n    \"smilingly\": [\n        \"RB\"\n    ], \n    \"pseudynom\": [\n        \"NN\"\n    ], \n    \"BARKER\": [\n        \"NNP\"\n    ], \n    \"emitted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"deliver\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"handpicked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"three-axis\": [\n        \"JJ\"\n    ], \n    \"Anchor\": [\n        \"NNP\"\n    ], \n    \"festering\": [\n        \"VBG\"\n    ], \n    \"nightmares\": [\n        \"NNS\"\n    ], \n    \"asunder\": [\n        \"RB\"\n    ], \n    \"thence\": [\n        \"RB\"\n    ], \n    \"streetlight\": [\n        \"NN\"\n    ], \n    \"hundred-and-eighty-degree\": [\n        \"JJ\"\n    ], \n    \"Design\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Knecht\": [\n        \"NNP\"\n    ], \n    \"swallow\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Mafia\": [\n        \"NNP\"\n    ], \n    \"neon-lighted\": [\n        \"JJ\"\n    ], \n    \"aquarium\": [\n        \"NN\"\n    ], \n    \"cornices\": [\n        \"NNS\"\n    ], \n    \"relevant\": [\n        \"JJ\"\n    ], \n    \"contamination\": [\n        \"NN\"\n    ], \n    \"Pinkie\": [\n        \"NN\"\n    ], \n    \"Luxembourg\": [\n        \"NNP\"\n    ], \n    \"ushering\": [\n        \"VBG\"\n    ], \n    \"Journal-American\": [\n        \"NNP\"\n    ], \n    \"North-Rhine\": [\n        \"NNP\"\n    ], \n    \"Hoe\": [\n        \"VB\"\n    ], \n    \"Christian-Moslem\": [\n        \"JJ\"\n    ], \n    \"walnut\": [\n        \"NN\"\n    ], \n    \"unearthed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"flourishing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"securities-investment\": [\n        \"JJ\"\n    ], \n    \"salable\": [\n        \"JJ\"\n    ], \n    \"quasi-public\": [\n        \"JJ\"\n    ], \n    \"centerstage\": [\n        \"NN\"\n    ], \n    \"Pietro\": [\n        \"NNP\"\n    ], \n    \"attends\": [\n        \"VBZ\"\n    ], \n    \"certain\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"sticklike\": [\n        \"JJ\"\n    ], \n    \"curtain\": [\n        \"NN\"\n    ], \n    \"proposal\": [\n        \"NN\"\n    ], \n    \"Asia\\\\/Pacific\": [\n        \"JJ\"\n    ], \n    \"division.\": [\n        \"NN\"\n    ], \n    \"phosphorescent\": [\n        \"JJ\"\n    ], \n    \"DeMar\": [\n        \"NNP\"\n    ], \n    \"aramid\": [\n        \"NN\"\n    ], \n    \"overwhelmingly\": [\n        \"RB\"\n    ], \n    \"protect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dent\": [\n        \"NNP\"\n    ], \n    \"bulk\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"business-as-usual\": [\n        \"JJ\"\n    ], \n    \"tenderly\": [\n        \"RB\"\n    ], \n    \"Honestly\": [\n        \"RB\"\n    ], \n    \"Kuala\": [\n        \"NNP\"\n    ], \n    \"bull\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Professional\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"incentive-bonus\": [\n        \"NN\"\n    ], \n    \"Deng\": [\n        \"NNP\"\n    ], \n    \"divisions\": [\n        \"NNS\"\n    ], \n    \"Virsaladze\": [\n        \"NNP\"\n    ], \n    \"wrap-up\": [\n        \"JJ\"\n    ], \n    \"entrepreneurial\": [\n        \"JJ\"\n    ], \n    \"Production\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"extracts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"inherits\": [\n        \"VBZ\"\n    ], \n    \"penalizing\": [\n        \"VBG\"\n    ], \n    \"chaotic\": [\n        \"JJ\"\n    ], \n    \"PONT\": [\n        \"NNP\"\n    ], \n    \"Trimedyne\": [\n        \"NNP\"\n    ], \n    \"walks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"shanties\": [\n        \"NNS\"\n    ], \n    \"papyrus\": [\n        \"NN\"\n    ], \n    \"LIBERTY\": [\n        \"NNP\"\n    ], \n    \"commending\": [\n        \"VBG\"\n    ], \n    \"counter-tenor\": [\n        \"NN\"\n    ], \n    \"convection\": [\n        \"NN\"\n    ], \n    \"nine-month\": [\n        \"JJ\"\n    ], \n    \"unretouched\": [\n        \"JJ\"\n    ], \n    \"SUPERIOR\": [\n        \"NNP\"\n    ], \n    \"slammer\": [\n        \"NN\"\n    ], \n    \"pro-market\": [\n        \"JJ\"\n    ], \n    \"oink\": [\n        \"UH\"\n    ], \n    \"cypress-like\": [\n        \"JJ\"\n    ], \n    \"GAS\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"GAR\": [\n        \"NNP\"\n    ], \n    \"GAP\": [\n        \"NNP\"\n    ], \n    \"GAO\": [\n        \"NNP\"\n    ], \n    \"agency-dealing\": [\n        \"JJ\"\n    ], \n    \"slammed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dorado\": [\n        \"NNP\"\n    ], \n    \"frontal\": [\n        \"JJ\"\n    ], \n    \"GAG\": [\n        \"NNP\"\n    ], \n    \"Earthlings\": [\n        \"NNS\"\n    ], \n    \"Drought\": [\n        \"NN\"\n    ], \n    \"eugenic\": [\n        \"JJ\"\n    ], \n    \"Handsome\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"disseminating\": [\n        \"VBG\"\n    ], \n    \"neolithic\": [\n        \"JJ\"\n    ], \n    \"JCP\": [\n        \"NNP\"\n    ], \n    \"pleasure-boat\": [\n        \"NN\"\n    ], \n    \"Benesi\": [\n        \"NNP\"\n    ], \n    \"AUTO\": [\n        \"NNP\"\n    ], \n    \"Ride\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"corkers\": [\n        \"NNS\"\n    ], \n    \"binoculars\": [\n        \"NNS\"\n    ], \n    \"ghazal\": [\n        \"FW\"\n    ], \n    \"Discipline\": [\n        \"NN\"\n    ], \n    \"Unruly\": [\n        \"JJ\"\n    ], \n    \"Tait\": [\n        \"NNP\"\n    ], \n    \"Cadillacs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"garb\": [\n        \"NN\"\n    ], \n    \"PERIPATETIC\": [\n        \"JJ\"\n    ], \n    \"Cammack\": [\n        \"NNP\"\n    ], \n    \"president-engineering\": [\n        \"NN|NN\"\n    ], \n    \"pampered\": [\n        \"JJ\"\n    ], \n    \"promulgating\": [\n        \"VBG\"\n    ], \n    \"Finkelstein\": [\n        \"NNP\"\n    ], \n    \"Sichuan\": [\n        \"NNP\"\n    ], \n    \"Langsdorf\": [\n        \"NNP\"\n    ], \n    \"knotty\": [\n        \"JJ\"\n    ], \n    \"inwardness\": [\n        \"NN\"\n    ], \n    \"confidences\": [\n        \"NNS\"\n    ], \n    \"deltas\": [\n        \"NNS\"\n    ], \n    \"sister-in-law\": [\n        \"NN\"\n    ], \n    \"necessitate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Excels\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"logistics-computer\": [\n        \"NN\"\n    ], \n    \"Pilgrimage\": [\n        \"NNP\"\n    ], \n    \"P*/NNP&G\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Resourcesrose\": [\n        \"NNP\"\n    ], \n    \"spectrophotometric\": [\n        \"JJ\"\n    ], \n    \"Davis\\\\/Zweig\": [\n        \"NNP\"\n    ], \n    \"well-worn\": [\n        \"JJ\"\n    ], \n    \"Excell\": [\n        \"NNP\"\n    ], \n    \"nastiest\": [\n        \"JJS\"\n    ], \n    \"Grandparents\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"squandering\": [\n        \"VBG\"\n    ], \n    \"Deeply\": [\n        \"RB\"\n    ], \n    \"barnsful\": [\n        \"NN\"\n    ], \n    \"Amax\": [\n        \"NNP\"\n    ], \n    \"confederacy\": [\n        \"NN\"\n    ], \n    \"Perham\": [\n        \"NNP\"\n    ], \n    \"Flanked\": [\n        \"VBN\"\n    ], \n    \"Olney\": [\n        \"NNP\"\n    ], \n    \"REACTOR\": [\n        \"NN\"\n    ], \n    \"sympathy...\": [\n        \":\"\n    ], \n    \"Woods\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"reconverting\": [\n        \"VBG\"\n    ], \n    \"oratorical\": [\n        \"JJ\"\n    ], \n    \"green-scaled\": [\n        \"JJ\"\n    ], \n    \"contrabass\": [\n        \"NN\"\n    ], \n    \"half-speed\": [\n        \"JJ\"\n    ], \n    \"crazily\": [\n        \"RB\"\n    ], \n    \"Aunts\": [\n        \"NNS\"\n    ], \n    \"Wide\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bordeau\": [\n        \"NNP\"\n    ], \n    \"authority\": [\n        \"NN\"\n    ], \n    \"ideals\": [\n        \"NNS\"\n    ], \n    \"Offers\": [\n        \"VBZ\"\n    ], \n    \"Zitin\": [\n        \"NNP\"\n    ], \n    \"Jerebohm\": [\n        \"NNP\"\n    ], \n    \"Terrorism\": [\n        \"NNP\"\n    ], \n    \"Banbury\": [\n        \"NNP\"\n    ], \n    \"Harvesting\": [\n        \"NN\"\n    ], \n    \"shrug\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"port-side\": [\n        \"JJ\"\n    ], \n    \"unfunny\": [\n        \"JJ\"\n    ], \n    \"shrub\": [\n        \"NN\"\n    ], \n    \"Danssesse\": [\n        \"NNP\"\n    ], \n    \"BMEWS\": [\n        \"NNP\"\n    ], \n    \"panzers\": [\n        \"NNS\"\n    ], \n    \"clarity\": [\n        \"NN\"\n    ], \n    \"Herrera\": [\n        \"NNP\"\n    ], \n    \"Czechoslovak-made\": [\n        \"JJ\"\n    ], \n    \"elementary-grade\": [\n        \"JJ\"\n    ], \n    \"Cote\": [\n        \"NNP\"\n    ], \n    \"Boehringer-Ingleheim\": [\n        \"NNP\"\n    ], \n    \"Shostakovich\": [\n        \"NNP\"\n    ], \n    \"Afterward\": [\n        \"RB\"\n    ], \n    \"thinly\": [\n        \"RB\"\n    ], \n    \"trombonist\": [\n        \"NN\"\n    ], \n    \"Tail\": [\n        \"NNP\"\n    ], \n    \"accosted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"oiled\": [\n        \"JJ\"\n    ], \n    \"meminisse\": [\n        \"FW\"\n    ], \n    \"Cirillo\": [\n        \"NNP\"\n    ], \n    \"although\": [\n        \"IN\"\n    ], \n    \"Zaffius\": [\n        \"NNP\"\n    ], \n    \"oiler\": [\n        \"NN\"\n    ], \n    \"half-horse\": [\n        \"JJ\"\n    ], \n    \"Cawthorn\": [\n        \"NNP\"\n    ], \n    \"raiding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"copper-rich\": [\n        \"JJ\"\n    ], \n    \"actual\": [\n        \"JJ\"\n    ], \n    \"socket\": [\n        \"NN\"\n    ], \n    \"Rubbermaid\": [\n        \"NNP\"\n    ], \n    \"ribbed\": [\n        \"JJ\"\n    ], \n    \"Mesirov\": [\n        \"NNP\"\n    ], \n    \"Comprised\": [\n        \"VBN\"\n    ], \n    \"cockroaches\": [\n        \"NNS\"\n    ], \n    \"imitation-woodgrain\": [\n        \"NN\"\n    ], \n    \"socked\": [\n        \"VBD\"\n    ], \n    \"prevailing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"rule``\": [\n        \"``\"\n    ], \n    \"Wogan\": [\n        \"NNP\"\n    ], \n    \"faltering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"driftnet\": [\n        \"NN\"\n    ], \n    \"Montreal-Toronto\": [\n        \"JJ\"\n    ], \n    \"Wiligis\": [\n        \"NNP\"\n    ], \n    \"obliterated\": [\n        \"VBN\"\n    ], \n    \"ankles\": [\n        \"NNS\"\n    ], \n    \"imbibed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"playoff\": [\n        \"NN\"\n    ], \n    \"esteem\": [\n        \"NN\"\n    ], \n    \"Laserscope\": [\n        \"NNP\"\n    ], \n    \"wheat-germ\": [\n        \"NN\"\n    ], \n    \"Woodstream\": [\n        \"NNP\"\n    ], \n    \"Ideally\": [\n        \"RB\"\n    ], \n    \"Terranomics\": [\n        \"NNS\"\n    ], \n    \"Mountains\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Raymondville\": [\n        \"NNP\"\n    ], \n    \"Hostetter\": [\n        \"NNP\"\n    ], \n    \"ridge\": [\n        \"NN\"\n    ], \n    \"Reckon\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"self-explanatory\": [\n        \"JJ\"\n    ], \n    \"Ex-Wells\": [\n        \"NNP\"\n    ], \n    \"fourth-century\": [\n        \"JJ\"\n    ], \n    \"reigned\": [\n        \"VBD\"\n    ], \n    \"Porcaro\": [\n        \"NNP\"\n    ], \n    \"biggest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"life-and-death\": [\n        \"JJ\"\n    ], \n    \"glib\": [\n        \"JJ\"\n    ], \n    \"Minnett\": [\n        \"NNP\"\n    ], \n    \"rajah\": [\n        \"NN\"\n    ], \n    \"preparations\": [\n        \"NNS\"\n    ], \n    \"Jew-as-enemy\": [\n        \"NN\"\n    ], \n    \"Tschoegl\": [\n        \"NNP\"\n    ], \n    \"study-plan\": [\n        \"NN\"\n    ], \n    \"contemptuously\": [\n        \"RB\"\n    ], \n    \"Adopting\": [\n        \"VBG\"\n    ], \n    \"Vietnamese-backed\": [\n        \"JJ\"\n    ], \n    \"Multiplying\": [\n        \"VBG\"\n    ], \n    \"snagged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Proposed\": [\n        \"VBN\"\n    ], \n    \"image-processing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"heatedly\": [\n        \"RB\"\n    ], \n    \"Uninhibited\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mischarging\": [\n        \"NN\"\n    ], \n    \"levis\": [\n        \"NNS\"\n    ], \n    \"cerulean\": [\n        \"NN\"\n    ], \n    \"Discussions\": [\n        \"NNS\"\n    ], \n    \"Serological\": [\n        \"JJ\"\n    ], \n    \"Ivy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"palm-studded\": [\n        \"JJ\"\n    ], \n    \"acids\": [\n        \"NNS\"\n    ], \n    \"doomsayers\": [\n        \"NNS\"\n    ], \n    \"Would-be\": [\n        \"JJ\"\n    ], \n    \"recounts\": [\n        \"VBZ\"\n    ], \n    \"Drobnick\": [\n        \"NNP\"\n    ], \n    \"separating\": [\n        \"VBG\"\n    ], \n    \"inflation-fighting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"developing-nation\": [\n        \"JJ\"\n    ], \n    \"undiluted\": [\n        \"JJ\"\n    ], \n    \"value-assessment\": [\n        \"NN\"\n    ], \n    \"antiviral\": [\n        \"JJ\"\n    ], \n    \"propects\": [\n        \"NNS\"\n    ], \n    \"bloodletting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"standing-room-only\": [\n        \"JJ\"\n    ], \n    \"Noriegan\": [\n        \"JJ\"\n    ], \n    \"high-ceilinged\": [\n        \"JJ\"\n    ], \n    \"Ardito-Barletta\": [\n        \"NNP\"\n    ], \n    \"Know\": [\n        \"VB\", \n        \"VBP\", \n        \"NNP\"\n    ], \n    \"Noriegas\": [\n        \"NNS\"\n    ], \n    \"EQUITY\": [\n        \"NNP\"\n    ], \n    \"Knox\": [\n        \"NNP\"\n    ], \n    \"Ostlandske\": [\n        \"NNP\"\n    ], \n    \"Schrunk\": [\n        \"NNP\"\n    ], \n    \"dictatorships\": [\n        \"NNS\"\n    ], \n    \"forever-Cathy\": [\n        \"NN\"\n    ], \n    \"Spill\": [\n        \"NN\"\n    ], \n    \"pilot-union\": [\n        \"JJ\"\n    ], \n    \"dack-rihs\": [\n        \"NNS\"\n    ], \n    \"DiLeo\": [\n        \"NNP\"\n    ], \n    \"uncommon\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"booboo\": [\n        \"NN\"\n    ], \n    \"previous\": [\n        \"JJ\"\n    ], \n    \"double-helix\": [\n        \"JJ\"\n    ], \n    \"Orchesis\": [\n        \"NNP\"\n    ], \n    \"Janson\": [\n        \"NNP\"\n    ], \n    \"musclemen\": [\n        \"NNS\"\n    ], \n    \"Benita\": [\n        \"NNP\"\n    ], \n    \"Benito\": [\n        \"NNP\"\n    ], \n    \"co-develop\": [\n        \"VB\"\n    ], \n    \"microelectronics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"armor\": [\n        \"NN\"\n    ], \n    \"styryl-lithium\": [\n        \"NN\"\n    ], \n    \"Sleep\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"limited\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"neige\": [\n        \"FW\"\n    ], \n    \"many-times\": [\n        \"RB\"\n    ], \n    \"Stardent\": [\n        \"NNP\"\n    ], \n    \"Scasi\": [\n        \"NNP\"\n    ], \n    \"wigmakers\": [\n        \"NNS\"\n    ], \n    \"Hammers\": [\n        \"VBZ\"\n    ], \n    \"Carters\": [\n        \"NNPS\"\n    ], \n    \"CMOS\": [\n        \"NNP\"\n    ], \n    \"poorly\": [\n        \"RB\"\n    ], \n    \"AMONG\": [\n        \"IN\"\n    ], \n    \"replacements\": [\n        \"NNS\"\n    ], \n    \"premium-beer\": [\n        \"NN\"\n    ], \n    \"anti-army\": [\n        \"JJ\"\n    ], \n    \"powderpuff\": [\n        \"NN\"\n    ], \n    \"snipe\": [\n        \"VB\"\n    ], \n    \"Naive\": [\n        \"JJ\"\n    ], \n    \"Sudol\": [\n        \"NNP\"\n    ], \n    \"Corder\": [\n        \"NNP\"\n    ], \n    \"hampered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tashjian\": [\n        \"NNP\"\n    ], \n    \"tenacity\": [\n        \"NN\"\n    ], \n    \"stationery\": [\n        \"NN\"\n    ], \n    \"tongue-lashing\": [\n        \"NN\"\n    ], \n    \"CHASE\": [\n        \"NNP\"\n    ], \n    \"Henri\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"barium\": [\n        \"NN\"\n    ], \n    \"co-lead\": [\n        \"JJ\"\n    ], \n    \"maximized\": [\n        \"VBN\"\n    ], \n    \"four-square\": [\n        \"NN\"\n    ], \n    \"Doulgas\": [\n        \"NNP\"\n    ], \n    \"RDWS\": [\n        \"NN\"\n    ], \n    \"sanitation-control\": [\n        \"JJ\"\n    ], \n    \"Henry\": [\n        \"NNP\"\n    ], \n    \"Fudo\": [\n        \"NNP\"\n    ], \n    \"Syrian-backed\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Biotech\": [\n        \"NNP\"\n    ], \n    \"pooled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"greenbacks\": [\n        \"NNS\"\n    ], \n    \"Reference\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Premier\": [\n        \"NNP\"\n    ], \n    \"mackinaw\": [\n        \"NN\"\n    ], \n    \"management-labor\": [\n        \"JJ\"\n    ], \n    \"phase\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Melody\": [\n        \"NNP\"\n    ], \n    \"Leschly\": [\n        \"NNP\"\n    ], \n    \"parted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"reflectance-measuring\": [\n        \"JJ\"\n    ], \n    \"fabulous\": [\n        \"JJ\"\n    ], \n    \"Soya\": [\n        \"NNP\"\n    ], \n    \"infiltration\": [\n        \"NN\"\n    ], \n    \"parapets\": [\n        \"NNS\"\n    ], \n    \"undated\": [\n        \"JJ\"\n    ], \n    \"friendships\": [\n        \"NNS\"\n    ], \n    \"tweezers\": [\n        \"NNS\"\n    ], \n    \"chests\": [\n        \"NNS\"\n    ], \n    \"Motoren\": [\n        \"NNP\"\n    ], \n    \"fattening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"redistributed\": [\n        \"VBN\"\n    ], \n    \"mutational\": [\n        \"JJ\"\n    ], \n    \"organisms\": [\n        \"NNS\"\n    ], \n    \"worsen\": [\n        \"VB\"\n    ], \n    \"stock-trader\": [\n        \"NN\"\n    ], \n    \"insinuate\": [\n        \"VB\"\n    ], \n    \"redistributes\": [\n        \"VBZ\"\n    ], \n    \"E-6A\": [\n        \"NN\"\n    ], \n    \"Diest\": [\n        \"NNP\"\n    ], \n    \"endorse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"speeded-up\": [\n        \"JJ\"\n    ], \n    \"Abandoning\": [\n        \"VBG\"\n    ], \n    \"paper-making\": [\n        \"JJ\"\n    ], \n    \"Balking\": [\n        \"VBG\"\n    ], \n    \"Lymington\": [\n        \"NNP\"\n    ], \n    \"American-made\": [\n        \"JJ\"\n    ], \n    \"Vilas\": [\n        \"NNP\"\n    ], \n    \"Critics\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"shills\": [\n        \"NNS\"\n    ], \n    \"feisty\": [\n        \"JJ\"\n    ], \n    \"delegates\": [\n        \"NNS\"\n    ], \n    \"Urged\": [\n        \"VBN\"\n    ], \n    \"Follow\": [\n        \"VB\"\n    ], \n    \"represented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"aftermath\": [\n        \"NN\"\n    ], \n    \"finders\": [\n        \"NNS\"\n    ], \n    \"potato-like\": [\n        \"JJ\"\n    ], \n    \"wait-and-see\": [\n        \"JJ\"\n    ], \n    \"forum\": [\n        \"NN\"\n    ], \n    \"Tabs\": [\n        \"NNS\"\n    ], \n    \"MINIMUM-WAGE\": [\n        \"NN\"\n    ], \n    \"stipulates\": [\n        \"VBZ\"\n    ], \n    \"Surprisingly\": [\n        \"RB\"\n    ], \n    \"Owned\": [\n        \"NNP\"\n    ], \n    \"disclaims\": [\n        \"VBZ\"\n    ], \n    \"mentor\": [\n        \"NN\"\n    ], \n    \"Pinel\": [\n        \"NNP\"\n    ], \n    \"Owner\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Tabb\": [\n        \"NNP\"\n    ], \n    \"stipulated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"MBAs\": [\n        \"NNS\"\n    ], \n    \"politic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"swearing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Thomasini\": [\n        \"NNP\"\n    ], \n    \"Jossy\": [\n        \"NNP\"\n    ], \n    \"Collectibles\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Studying\": [\n        \"VBG\"\n    ], \n    \"Siemaszko\": [\n        \"NNP\"\n    ], \n    \"sneer\": [\n        \"NN\"\n    ], \n    \"Sick\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"LAWMAKERS\": [\n        \"NNS\"\n    ], \n    \"Gostomski\": [\n        \"NNP\"\n    ], \n    \"smelter\": [\n        \"NN\"\n    ], \n    \"Sprouting\": [\n        \"NN\"\n    ], \n    \"hospital\": [\n        \"NN\"\n    ], \n    \"Express\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rivkin\": [\n        \"NNP\"\n    ], \n    \"Northwood\": [\n        \"NNP\"\n    ], \n    \"mediate\": [\n        \"VB\"\n    ], \n    \"noting\": [\n        \"VBG\"\n    ], \n    \"reserpine\": [\n        \"NN\"\n    ], \n    \"incautious\": [\n        \"JJ\"\n    ], \n    \"alpenglow\": [\n        \"NN\"\n    ], \n    \"preview\": [\n        \"NN\"\n    ], \n    \"assessment\": [\n        \"NN\"\n    ], \n    \"juiciest\": [\n        \"JJS\"\n    ], \n    \"Ark.\": [\n        \"NNP\"\n    ], \n    \"barbarous\": [\n        \"JJ\"\n    ], \n    \"polyether\": [\n        \"NN\"\n    ], \n    \"interpenetrate\": [\n        \"VBP\"\n    ], \n    \"A.J.\": [\n        \"NNP\"\n    ], \n    \"correspondingly\": [\n        \"RB\"\n    ], \n    \"Cece\": [\n        \"NNP\"\n    ], \n    \"Sugarman\": [\n        \"NNP\"\n    ], \n    \"Dilthey\": [\n        \"NNP\"\n    ], \n    \"film-making\": [\n        \"JJ\"\n    ], \n    \"Cech\": [\n        \"NNP\"\n    ], \n    \"Ceco\": [\n        \"NNP\"\n    ], \n    \"Write\": [\n        \"VB\"\n    ], \n    \"Ear\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wintering\": [\n        \"VBG\"\n    ], \n    \"Anti-Semite\": [\n        \"NN\"\n    ], \n    \"Poppins\": [\n        \"NNP\"\n    ], \n    \"Eat\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"prearranged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Rousell\": [\n        \"NNP\"\n    ], \n    \"Mister\": [\n        \"NNP\"\n    ], \n    \"Movats\": [\n        \"NNP\"\n    ], \n    \"Popping\": [\n        \"VBG\"\n    ], \n    \"unilateral\": [\n        \"JJ\"\n    ], \n    \"IIs\": [\n        \"NNPS\"\n    ], \n    \"ingenuity\": [\n        \"NN\"\n    ], \n    \"cooling-off\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Clyfford\": [\n        \"NNP\"\n    ], \n    \"Unpleasant\": [\n        \"JJ\"\n    ], \n    \"non-NMS\": [\n        \"JJ\"\n    ], \n    \"Hillman\": [\n        \"NNP\"\n    ], \n    \"pluralistic\": [\n        \"JJ\"\n    ], \n    \"Wheel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"IIT\": [\n        \"NNP\"\n    ], \n    \"sneers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"scolding\": [\n        \"VBG\"\n    ], \n    \"infecting\": [\n        \"VBG\"\n    ], \n    \"Admissions\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"lesions\": [\n        \"NNS\"\n    ], \n    \"Jordan\": [\n        \"NNP\"\n    ], \n    \"aching\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Michelangelos\": [\n        \"NNPS\"\n    ], \n    \"dollar-selling\": [\n        \"NN\"\n    ], \n    \"Carmon\": [\n        \"NNP\"\n    ], \n    \"confrontations\": [\n        \"NNS\"\n    ], \n    \"moisten\": [\n        \"VB\"\n    ], \n    \"shakeout\": [\n        \"NN\"\n    ], \n    \"Cogeneration\": [\n        \"NNP\"\n    ], \n    \"delicacy\": [\n        \"NN\"\n    ], \n    \"price-jolting\": [\n        \"JJ\"\n    ], \n    \"Marlin\": [\n        \"NNP\"\n    ], \n    \"Buckhorn\": [\n        \"NN\"\n    ], \n    \"Excellence\": [\n        \"NN\"\n    ], \n    \"bylines\": [\n        \"NNS\"\n    ], \n    \"Kawasaki\": [\n        \"NNP\"\n    ], \n    \"best-pitcher\": [\n        \"JJ\"\n    ], \n    \"heavers\": [\n        \"NNS\"\n    ], \n    \"snarling\": [\n        \"VBG\"\n    ], \n    \"eye-to-eye\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Salinas\": [\n        \"NNP\"\n    ], \n    \"turn-ons\": [\n        \"NNS\"\n    ], \n    \"jungle\": [\n        \"NN\"\n    ], \n    \"decreasing\": [\n        \"VBG\"\n    ], \n    \"aloud\": [\n        \"RB\"\n    ], \n    \"civil-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"oysters\": [\n        \"NNS\"\n    ], \n    \"misadventure\": [\n        \"NN\"\n    ], \n    \"nouvelle\": [\n        \"JJ\"\n    ], \n    \"Nostalgia\": [\n        \"NN\"\n    ], \n    \"Nostalgic\": [\n        \"JJ\"\n    ], \n    \"outshine\": [\n        \"VB\"\n    ], \n    \"Cup-Tote\": [\n        \"NNP\"\n    ], \n    \"SeaEscape\": [\n        \"NNP\"\n    ], \n    \"clapped\": [\n        \"VBD\"\n    ], \n    \"automating\": [\n        \"VBG\"\n    ], \n    \"glances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Third-Period\": [\n        \"JJ\"\n    ], \n    \"entrances\": [\n        \"NNS\"\n    ], \n    \"utilitarian\": [\n        \"JJ\"\n    ], \n    \"polluters\": [\n        \"NNS\"\n    ], \n    \"supervoting\": [\n        \"JJ\"\n    ], \n    \"first-level\": [\n        \"JJ\"\n    ], \n    \"McCall\": [\n        \"NNP\"\n    ], \n    \"entranced\": [\n        \"VBN\"\n    ], \n    \"compelling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"glanced\": [\n        \"VBD\"\n    ], \n    \"Aspencades\": [\n        \"NNPS\"\n    ], \n    \"vehicle\": [\n        \"NN\"\n    ], \n    \"Observatory\": [\n        \"NNP\"\n    ], \n    \"out-of-favor\": [\n        \"JJ\"\n    ], \n    \"pseudo-lobbyists\": [\n        \"NNS\"\n    ], \n    \"churchgoers\": [\n        \"NNS\"\n    ], \n    \"waffling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"potentates\": [\n        \"NNS\"\n    ], \n    \"Kidd\": [\n        \"NNP\"\n    ], \n    \"Bonfire\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kajima\": [\n        \"NNP\"\n    ], \n    \"Fawn\": [\n        \"NNP\"\n    ], \n    \"several\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"enmities\": [\n        \"NNS\"\n    ], \n    \"potatoes\": [\n        \"NNS\"\n    ], \n    \"PACS\": [\n        \"NNS\"\n    ], \n    \"Bolshoi\": [\n        \"NNP\"\n    ], \n    \"RICO-forfeiture\": [\n        \"JJ\"\n    ], \n    \"frantically\": [\n        \"RB\"\n    ], \n    \"affiliate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Wilber\": [\n        \"NNP\"\n    ], \n    \"each\": [\n        \"DT\"\n    ], \n    \"Chapel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wariness\": [\n        \"NN\"\n    ], \n    \"correctional\": [\n        \"JJ\"\n    ], \n    \"imponderable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Neon\": [\n        \"NNP\"\n    ], \n    \"mahogany\": [\n        \"NN\"\n    ], \n    \"stockbrokers\": [\n        \"NNS\"\n    ], \n    \"onleh\": [\n        \"RB\"\n    ], \n    \"first-refusal\": [\n        \"JJ\"\n    ], \n    \"Dynamite\": [\n        \"NNP\"\n    ], \n    \"ghosts\": [\n        \"NNS\"\n    ], \n    \"double-decker\": [\n        \"JJ\"\n    ], \n    \"footfalls\": [\n        \"NNS\"\n    ], \n    \"Paladin\": [\n        \"NNP\"\n    ], \n    \"looseleaf\": [\n        \"NN\"\n    ], \n    \"fraught\": [\n        \"JJ\"\n    ], \n    \"Chancellor\": [\n        \"NNP\"\n    ], \n    \"counselors\": [\n        \"NNS\"\n    ], \n    \"baseballight\": [\n        \"NN\"\n    ], \n    \"adjust\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"splashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"LaserTripter\": [\n        \"NNP\"\n    ], \n    \"chisels\": [\n        \"NNS\"\n    ], \n    \"eternal\": [\n        \"JJ\"\n    ], \n    \"salesmanship\": [\n        \"NN\"\n    ], \n    \"masterpiece\": [\n        \"NN\"\n    ], \n    \"Novo\\\\\": [\n        \"NNP\"\n    ], \n    \"Soldiers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"non-fat\": [\n        \"JJ\"\n    ], \n    \"Shank\": [\n        \"NNP\"\n    ], \n    \"Kotobuki\": [\n        \"NNP\"\n    ], \n    \"Insects\": [\n        \"NNS\"\n    ], \n    \"grasses\": [\n        \"NNS\"\n    ], \n    \"AmBase\": [\n        \"NNP\"\n    ], \n    \"Sancho\": [\n        \"NNP\"\n    ], \n    \"Kilhour\": [\n        \"NNP\"\n    ], \n    \"encephalographic\": [\n        \"JJ\"\n    ], \n    \"aspire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"onto\": [\n        \"IN\"\n    ], \n    \"tinkering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"grassed\": [\n        \"VBN\"\n    ], \n    \"rand\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"rang\": [\n        \"VBD\"\n    ], \n    \"appeals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"fighter-bombers\": [\n        \"NNS\"\n    ], \n    \"bandages\": [\n        \"NNS\"\n    ], \n    \"rank\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"hearing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"bombard\": [\n        \"VB\"\n    ], \n    \"now-dominant\": [\n        \"JJ\"\n    ], \n    \"Volare\": [\n        \"NNP\"\n    ], \n    \"postmark\": [\n        \"NN\"\n    ], \n    \"calorie\": [\n        \"NN\"\n    ], \n    \"caloric\": [\n        \"JJ\"\n    ], \n    \"triable\": [\n        \"JJ\"\n    ], \n    \"four-cylinder\": [\n        \"JJ\"\n    ], \n    \"lulled\": [\n        \"VBN\"\n    ], \n    \"Kulturbund\": [\n        \"NNP\"\n    ], \n    \"London-bred\": [\n        \"JJ\"\n    ], \n    \"geered\": [\n        \"VBN\"\n    ], \n    \"rewritten\": [\n        \"VBN\"\n    ], \n    \"reappraised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"indeterminate\": [\n        \"JJ\"\n    ], \n    \"Hacksaw\": [\n        \"NNP\"\n    ], \n    \"antiques\": [\n        \"NNS\"\n    ], \n    \"Volkswagen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"putty-like\": [\n        \"JJ\"\n    ], \n    \"pre-selling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"wedge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tuohy\": [\n        \"NNP\"\n    ], \n    \"bomb-plant\": [\n        \"JJ\"\n    ], \n    \"insightful\": [\n        \"JJ\"\n    ], \n    \"long-term-oriented\": [\n        \"JJ\"\n    ], \n    \"urban\": [\n        \"JJ\"\n    ], \n    \"overdraw\": [\n        \"VB\"\n    ], \n    \"scare-tactic\": [\n        \"NN\"\n    ], \n    \"airwaves\": [\n        \"NNS\"\n    ], \n    \"vertical-takeoff-and-landing\": [\n        \"JJ\"\n    ], \n    \"Carolyne\": [\n        \"NNP\"\n    ], \n    \"non-job-connected\": [\n        \"JJ\"\n    ], \n    \"negotiating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"slide-lock\": [\n        \"NN\"\n    ], \n    \"wrapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Benefit\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Joannie\": [\n        \"NNP\"\n    ], \n    \"wardrobe\": [\n        \"NN\"\n    ], \n    \"Yitzhak\": [\n        \"NNP\"\n    ], \n    \"rampage\": [\n        \"NN\"\n    ], \n    \"divisible\": [\n        \"JJ\"\n    ], \n    \"bloated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"O.T.\": [\n        \"NNP\"\n    ], \n    \"ABA\": [\n        \"NNP\"\n    ], \n    \"interrelated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"flame\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Gang\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Spirrison\": [\n        \"NNP\"\n    ], \n    \"Renshaw\": [\n        \"NNP\"\n    ], \n    \"legibility\": [\n        \"NN\"\n    ], \n    \"swift-footed\": [\n        \"JJ\"\n    ], \n    \"oath-taking\": [\n        \"NN\"\n    ], \n    \"Triamcinolone\": [\n        \"NN\"\n    ], \n    \"Pershare\": [\n        \"JJ\"\n    ], \n    \"arbs\": [\n        \"NNS\"\n    ], \n    \"pollination\": [\n        \"NN\"\n    ], \n    \"commercializing\": [\n        \"VBG\"\n    ], \n    \"Menilmontant\": [\n        \"NNP\"\n    ], \n    \"advising\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"public-address\": [\n        \"JJ\"\n    ], \n    \"slithering\": [\n        \"VBG\"\n    ], \n    \"thomp\": [\n        \"NN\"\n    ], \n    \"Czechoslovakia\": [\n        \"NNP\"\n    ], \n    \"Conceived\": [\n        \"VBN\"\n    ], \n    \"pandanus\": [\n        \"NN\"\n    ], \n    \"predominantly\": [\n        \"RB\"\n    ], \n    \"Picop\": [\n        \"NNP\"\n    ], \n    \"clunky\": [\n        \"JJ\"\n    ], \n    \"wide-awake\": [\n        \"JJ\"\n    ], \n    \"easier-to-read\": [\n        \"JJ\"\n    ], \n    \"Vowel\": [\n        \"NNP\"\n    ], \n    \"Jelly\": [\n        \"NNP\"\n    ], \n    \"complexes\": [\n        \"NNS\"\n    ], \n    \"Pikaia\": [\n        \"NNP\"\n    ], \n    \"Leland\": [\n        \"NNP\"\n    ], \n    \"Relentless\": [\n        \"JJ\"\n    ], \n    \"Attermann\": [\n        \"NNP\"\n    ], \n    \"Wang\": [\n        \"NNP\"\n    ], \n    \"Whitelock\": [\n        \"NNP\"\n    ], \n    \"gravitas\": [\n        \"NNS\"\n    ], \n    \"Shield\": [\n        \"NNP\"\n    ], \n    \"Want\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pineapple\": [\n        \"NN\"\n    ], \n    \"stock-related\": [\n        \"JJ\"\n    ], \n    \"pasha\": [\n        \"NN\"\n    ], \n    \"Tetley\": [\n        \"NNP\"\n    ], \n    \"yank\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"kerchiefs\": [\n        \"NNS\"\n    ], \n    \"sanctuary\": [\n        \"NN\"\n    ], \n    \"herpetologist\": [\n        \"NN\"\n    ], \n    \"shipmate\": [\n        \"NN\"\n    ], \n    \"sago\": [\n        \"NN\"\n    ], \n    \"saga\": [\n        \"NN\"\n    ], \n    \"sage\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"two-season\": [\n        \"JJ\"\n    ], \n    \"solutions\": [\n        \"NNS\"\n    ], \n    \"polemics\": [\n        \"NNS\"\n    ], \n    \"Pickin\": [\n        \"VBG\"\n    ], \n    \"sags\": [\n        \"NNS\"\n    ], \n    \"chewed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Salespeople\": [\n        \"NNS\"\n    ], \n    \"bluing\": [\n        \"NN\"\n    ], \n    \"Mercantile\": [\n        \"NNP\"\n    ], \n    \"delays\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"refreshment\": [\n        \"NN\"\n    ], \n    \"boies\": [\n        \"NNS\"\n    ], \n    \"takeover-stock\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pearl-gray\": [\n        \"JJ\"\n    ], \n    \"eleventh-hour\": [\n        \"JJ\"\n    ], \n    \"non-figurative\": [\n        \"JJ\"\n    ], \n    \"excitedly\": [\n        \"RB\"\n    ], \n    \"Surrender\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"dullness\": [\n        \"NN\"\n    ], \n    \"Whittier\": [\n        \"NNP\"\n    ], \n    \"Pacheco\": [\n        \"NNP\"\n    ], \n    \"imperceptibly\": [\n        \"RB\"\n    ], \n    \"criticizes\": [\n        \"VBZ\"\n    ], \n    \"asbestos\": [\n        \"NN\"\n    ], \n    \"overpressure\": [\n        \"NN\"\n    ], \n    \"fluid\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"criticized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"congruent\": [\n        \"JJ\"\n    ], \n    \"Eurasian\": [\n        \"NNP\"\n    ], \n    \"report\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Magdalene\": [\n        \"NNP\"\n    ], \n    \"older-skewing\": [\n        \"JJR\"\n    ], \n    \"Magdalena\": [\n        \"NNP\"\n    ], \n    \"Sucrerie\": [\n        \"NNP\"\n    ], \n    \"subservience\": [\n        \"NN\"\n    ], \n    \"translating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Telecharge\": [\n        \"NNP\"\n    ], \n    \"method\": [\n        \"NN\"\n    ], \n    \"peroxide\": [\n        \"NN\"\n    ], \n    \"Jupiter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Conradically\": [\n        \"RB\"\n    ], \n    \"health-services\": [\n        \"JJ\"\n    ], \n    \"fragrant\": [\n        \"JJ\"\n    ], \n    \"thrashing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"electrodes\": [\n        \"NNS\"\n    ], \n    \"habit\": [\n        \"NN\"\n    ], \n    \"wrest\": [\n        \"VB\"\n    ], \n    \"Eckenfelder\": [\n        \"NNP\"\n    ], \n    \"proclaims\": [\n        \"VBZ\"\n    ], \n    \"detection\": [\n        \"NN\"\n    ], \n    \"price-competitive\": [\n        \"JJ\"\n    ], \n    \"red-necked\": [\n        \"JJ\"\n    ], \n    \"corrupt\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"noodles\": [\n        \"NNS\"\n    ], \n    \"Klatman\": [\n        \"NNP\"\n    ], \n    \"byword\": [\n        \"NN\"\n    ], \n    \"overborrowing\": [\n        \"VBG\"\n    ], \n    \"Dodgers\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Desegregation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ditlow\": [\n        \"NNP\"\n    ], \n    \"hundred-thousand-share\": [\n        \"JJ\"\n    ], \n    \"interdiction\": [\n        \"NN\"\n    ], \n    \"modulate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kingfisher\": [\n        \"NNP\"\n    ], \n    \"brushbacks\": [\n        \"NNS\"\n    ], \n    \"Costantine\": [\n        \"NNP\"\n    ], \n    \"unconscionable\": [\n        \"JJ\"\n    ], \n    \"Dak\": [\n        \"NNP\"\n    ], \n    \"incarnation\": [\n        \"NN\"\n    ], \n    \"Budgeting\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"leaping\": [\n        \"VBG\", \n        \"JJ|VBG\"\n    ], \n    \"larynx\": [\n        \"NN\"\n    ], \n    \"Lumber\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bangs\": [\n        \"NNP\"\n    ], \n    \"wear\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"low-back-pain\": [\n        \"JJ\"\n    ], \n    \"goddess\": [\n        \"NN\"\n    ], \n    \"franc-denominated\": [\n        \"JJ\"\n    ], \n    \"Karet\": [\n        \"NNP\"\n    ], \n    \"beeps\": [\n        \"NNS\"\n    ], \n    \"politically\": [\n        \"RB\"\n    ], \n    \"amortized\": [\n        \"VBN\"\n    ], \n    \"WNBC\": [\n        \"NNP\"\n    ], \n    \"Karel\": [\n        \"NNP\"\n    ], \n    \"Kowa\": [\n        \"NNP\"\n    ], \n    \"Small-stock\": [\n        \"NN\"\n    ], \n    \"Zink\": [\n        \"NNP\"\n    ], \n    \"infection-fighting\": [\n        \"JJ\"\n    ], \n    \"Lidex\": [\n        \"NNP\"\n    ], \n    \"Maj.\": [\n        \"NNP\"\n    ], \n    \"GIVE\": [\n        \"VBP\"\n    ], \n    \"beer-runners\": [\n        \"NNS\"\n    ], \n    \"anti-discrimination\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Runways\": [\n        \"NNS\"\n    ], \n    \"Pharmaceuticals\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Brittan\": [\n        \"NNP\"\n    ], \n    \"Intimations\": [\n        \"NNS\"\n    ], \n    \"majestic\": [\n        \"JJ\"\n    ], \n    \"Plaster\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"less-educated\": [\n        \"JJ\"\n    ], \n    \"banisters\": [\n        \"NNS\"\n    ], \n    \"hysterically\": [\n        \"RB\"\n    ], \n    \"wide-open\": [\n        \"JJ\"\n    ], \n    \"rotenone\": [\n        \"NN\"\n    ], \n    \"space-buying\": [\n        \"NN\"\n    ], \n    \"Marlboro\": [\n        \"NNP\"\n    ], \n    \"simplification\": [\n        \"NN\"\n    ], \n    \"becalmed\": [\n        \"JJ\"\n    ], \n    \"subverts\": [\n        \"VBZ\"\n    ], \n    \"Pittsburgh-based\": [\n        \"JJ\"\n    ], \n    \"Kibbutzniks\": [\n        \"NNS\"\n    ], \n    \"single-barrel\": [\n        \"JJ\"\n    ], \n    \"Mogan\": [\n        \"NNP\"\n    ], \n    \"Pennsylvania\": [\n        \"NNP\"\n    ], \n    \"Medicines\": [\n        \"NNP\"\n    ], \n    \"glided\": [\n        \"VBD\"\n    ], \n    \"well-run\": [\n        \"JJ\"\n    ], \n    \"gasolines\": [\n        \"NNS\"\n    ], \n    \"Skoal\": [\n        \"NNP\"\n    ], \n    \"patronizing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"glider\": [\n        \"NN\"\n    ], \n    \"windup\": [\n        \"NN\"\n    ], \n    \"Arlauskas\": [\n        \"NNP\"\n    ], \n    \"foster-care\": [\n        \"JJ\"\n    ], \n    \"non-Western\": [\n        \"JJ\"\n    ], \n    \"leprosy\": [\n        \"NN\"\n    ], \n    \"Helmerich\": [\n        \"NNP\"\n    ], \n    \"Plug-in\": [\n        \"JJ\"\n    ], \n    \"delle\": [\n        \"NNP\"\n    ], \n    \"marinade\": [\n        \"NN\"\n    ], \n    \"Spreading\": [\n        \"NNP\"\n    ], \n    \"procedure\": [\n        \"NN\"\n    ], \n    \"hangars\": [\n        \"NNS\"\n    ], \n    \"confreres\": [\n        \"FW\", \n        \"NNS\"\n    ], \n    \"Compaore\": [\n        \"NNP\"\n    ], \n    \"market-maker\": [\n        \"NN\"\n    ], \n    \"Ellis\": [\n        \"NNP\"\n    ], \n    \"provocative\": [\n        \"JJ\"\n    ], \n    \"Boise-Cascade\": [\n        \"NNP\"\n    ], \n    \"slovenliness\": [\n        \"NN\"\n    ], \n    \"Ellie\": [\n        \"NNP\"\n    ], \n    \"experts\": [\n        \"NNS\"\n    ], \n    \"subspecies\": [\n        \"NNS\"\n    ], \n    \"PATH\": [\n        \"NNP\"\n    ], \n    \"interacts\": [\n        \"VBZ\"\n    ], \n    \"Nathaniel\": [\n        \"NNP\"\n    ], \n    \"aged-care\": [\n        \"NN\"\n    ], \n    \"circumventing\": [\n        \"VBG\"\n    ], \n    \"gpd\": [\n        \"NN\"\n    ], \n    \"B.U.\": [\n        \"NNP\"\n    ], \n    \"matsyendra\": [\n        \"NN\"\n    ], \n    \"low-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"colour-prints\": [\n        \"NNS\"\n    ], \n    \"Copersucar\": [\n        \"NNP\"\n    ], \n    \"bands\": [\n        \"NNS\"\n    ], \n    \"Franchise\": [\n        \"NNP\"\n    ], \n    \"PEDAL\": [\n        \"NN\"\n    ], \n    \"harming\": [\n        \"VBG\"\n    ], \n    \"uncharged\": [\n        \"JJ\"\n    ], \n    \"lusty\": [\n        \"JJ\"\n    ], \n    \"satellite\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"settle\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Maguire\": [\n        \"NNP\"\n    ], \n    \"lusts\": [\n        \"NNS\"\n    ], \n    \"bastard\": [\n        \"NN\"\n    ], \n    \"deflect\": [\n        \"VB\"\n    ], \n    \"suburb\": [\n        \"NN\"\n    ], \n    \"Coatedboard\": [\n        \"NNP\"\n    ], \n    \"Monsanto\": [\n        \"NNP\"\n    ], \n    \"portal\": [\n        \"NN\"\n    ], \n    \"Ashland\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"insisted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"normalization\": [\n        \"NN\"\n    ], \n    \"tassel\": [\n        \"NN\"\n    ], \n    \"Bernadine\": [\n        \"NNP\"\n    ], \n    \"lunch-time\": [\n        \"NN\"\n    ], \n    \"Ottaway\": [\n        \"NNP\"\n    ], \n    \"intercompany\": [\n        \"NN\"\n    ], \n    \"FUNDS\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"minimill\": [\n        \"NN\"\n    ], \n    \"poked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"gabble\": [\n        \"NN\"\n    ], \n    \"savings\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"incapable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Trendy\": [\n        \"JJ\"\n    ], \n    \"floor-covering\": [\n        \"NN\"\n    ], \n    \"appease\": [\n        \"VB\"\n    ], \n    \"Lots\": [\n        \"NNS\"\n    ], \n    \"luxury-car\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"diesels\": [\n        \"NNS\"\n    ], \n    \"mending\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unimpeachably\": [\n        \"RB\"\n    ], \n    \"Lott\": [\n        \"NNP\"\n    ], \n    \"Yachtel\": [\n        \"NN\"\n    ], \n    \"DeMoulin\": [\n        \"NNP\"\n    ], \n    \"bugged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"breaching\": [\n        \"VBG\"\n    ], \n    \"Churches\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"strenuously\": [\n        \"RB\"\n    ], \n    \"ever-higher\": [\n        \"JJ\"\n    ], \n    \"Georgians\": [\n        \"NNPS\"\n    ], \n    \"Ought\": [\n        \"MD\"\n    ], \n    \"dearer\": [\n        \"JJR\"\n    ], \n    \"meanly\": [\n        \"RB\"\n    ], \n    \"co-defendants\": [\n        \"NNS\"\n    ], \n    \"vie\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Loyola\": [\n        \"NNP\"\n    ], \n    \"roughish\": [\n        \"JJ\"\n    ], \n    \"image-provoking\": [\n        \"JJ\"\n    ], \n    \"overemphasize\": [\n        \"VB\"\n    ], \n    \"kelp\": [\n        \"NN\"\n    ], \n    \"teenager\": [\n        \"NN\"\n    ], \n    \"entropy-increasing\": [\n        \"JJ\"\n    ], \n    \"Giroux\": [\n        \"NNP\"\n    ], \n    \"city\": [\n        \"NN\"\n    ], \n    \"trashed\": [\n        \"VBN\"\n    ], \n    \"Piero\": [\n        \"NNP\"\n    ], \n    \"groundbreakers\": [\n        \"NNS\"\n    ], \n    \"spanned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"upturn\": [\n        \"NN\"\n    ], \n    \"non-time\": [\n        \"NN\"\n    ], \n    \"spanner\": [\n        \"NN\"\n    ], \n    \"Piers\": [\n        \"NNP\"\n    ], \n    \"ditto\": [\n        \"NN\"\n    ], \n    \"appearing\": [\n        \"VBG\"\n    ], \n    \"employer-sponsored\": [\n        \"JJ\"\n    ], \n    \"hunt\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"zoom\": [\n        \"VB\"\n    ], \n    \"offices\": [\n        \"NNS\"\n    ], \n    \"overrated\": [\n        \"VBN\"\n    ], \n    \"hung\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"superlative\": [\n        \"JJ\"\n    ], \n    \"petting\": [\n        \"NN\"\n    ], \n    \"proudly\": [\n        \"RB\"\n    ], \n    \"Dalldorf\": [\n        \"NNP\"\n    ], \n    \"Wildenstein\": [\n        \"NNP\"\n    ], \n    \"Muck\": [\n        \"NNP\"\n    ], \n    \"Much\": [\n        \"RB\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"smarmy\": [\n        \"JJ\"\n    ], \n    \"recently-passed\": [\n        \"JJ\"\n    ], \n    \"wrenching\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Sisley\": [\n        \"NNP\"\n    ], \n    \"self-effacing\": [\n        \"JJ\"\n    ], \n    \"companions\": [\n        \"NNS\"\n    ], \n    \"totals\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Shoney\": [\n        \"NNP\"\n    ], \n    \"small-appearing\": [\n        \"JJ\"\n    ], \n    \"MNB\": [\n        \"NNP\"\n    ], \n    \"MNC\": [\n        \"NNP\"\n    ], \n    \"hastens\": [\n        \"VBZ\"\n    ], \n    \"PBS\": [\n        \"NNP\"\n    ], \n    \"PBX\": [\n        \"NNP\"\n    ], \n    \"disappeared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"two-colored\": [\n        \"JJ\"\n    ], \n    \"idolized\": [\n        \"JJ\"\n    ], \n    \"Summcorp\": [\n        \"NNP\"\n    ], \n    \"pectoralis\": [\n        \"NN\"\n    ], \n    \"interjected\": [\n        \"VBD\"\n    ], \n    \"bylaw\": [\n        \"NN\"\n    ], \n    \"By-the-Book\": [\n        \"JJ\"\n    ], \n    \"plum\": [\n        \"NN\"\n    ], \n    \"Disarmament\": [\n        \"NNP\"\n    ], \n    \"Gomel\": [\n        \"NNP\"\n    ], \n    \"Melanto\": [\n        \"NNP\"\n    ], \n    \"plus\": [\n        \"CC\", \n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"improvidently\": [\n        \"RB\"\n    ], \n    \"glowering\": [\n        \"VBG\"\n    ], \n    \"conformations\": [\n        \"NNS\"\n    ], \n    \"Hone\": [\n        \"NNP\"\n    ], \n    \"trafficker\": [\n        \"NN\"\n    ], \n    \"Hong\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"patent-law\": [\n        \"NN\"\n    ], \n    \"MANAGERS\": [\n        \"NNS\"\n    ], \n    \"over-stress\": [\n        \"VB\"\n    ], \n    \"credited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Schaffner\": [\n        \"NNP\"\n    ], \n    \"Valente\": [\n        \"NNP\"\n    ], \n    \"trafficked\": [\n        \"VBD\"\n    ], \n    \"brushcut\": [\n        \"NN\"\n    ], \n    \"fruitful\": [\n        \"JJ\"\n    ], \n    \"deferents\": [\n        \"NNS\"\n    ], \n    \"existed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"stereotype\": [\n        \"NN\"\n    ], \n    \"sidings\": [\n        \"NNS\"\n    ], \n    \"attainments\": [\n        \"NNS\"\n    ], \n    \"sneezing\": [\n        \"VBG\"\n    ], \n    \"MiniSport\": [\n        \"NNP\"\n    ], \n    \"personage\": [\n        \"NN\"\n    ], \n    \"Illustration\": [\n        \"NNP\"\n    ], \n    \"Mammograms\": [\n        \"NNS\"\n    ], \n    \"Fellini\": [\n        \"NNP\"\n    ], \n    \"minter\": [\n        \"NN\"\n    ], \n    \"newsperson\": [\n        \"NN\"\n    ], \n    \"crews\": [\n        \"NNS\"\n    ], \n    \"astrophysics\": [\n        \"NNS\"\n    ], \n    \"Bonjour\": [\n        \"FW\"\n    ], \n    \"metabolism\": [\n        \"NN\"\n    ], \n    \"theory-and\": [\n        \"NN\"\n    ], \n    \"questionable\": [\n        \"JJ\"\n    ], \n    \"Rangoon\": [\n        \"NNP\"\n    ], \n    \"calving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"payoffif\": [\n        \"NN\"\n    ], \n    \"Hon.\": [\n        \"NNP\"\n    ], \n    \"Tax-free\": [\n        \"JJ\"\n    ], \n    \"heinous\": [\n        \"JJ\"\n    ], \n    \"satisfactorily\": [\n        \"RB\"\n    ], \n    \"boondoggler\": [\n        \"NN\"\n    ], \n    \"questionably\": [\n        \"RB\"\n    ], \n    \"Maddie\": [\n        \"NNP\"\n    ], \n    \"medical-practice\": [\n        \"NN\"\n    ], \n    \"helicopter-borne\": [\n        \"JJ\"\n    ], \n    \"paging\": [\n        \"NN\"\n    ], \n    \"phosphate\": [\n        \"NN\"\n    ], \n    \"Bainbridge\": [\n        \"NNP\"\n    ], \n    \"sickliest\": [\n        \"JJS\"\n    ], \n    \"plant-sciences\": [\n        \"JJ\"\n    ], \n    \"PERMANENTE\": [\n        \"NNP\"\n    ], \n    \"Vista\": [\n        \"NNP\"\n    ], \n    \"Granada\": [\n        \"NNP\"\n    ], \n    \"forearm\": [\n        \"NN\"\n    ], \n    \"Pensacola\": [\n        \"NNP\"\n    ], \n    \"advancements\": [\n        \"NNS\"\n    ], \n    \"Abigail\": [\n        \"NNP\"\n    ], \n    \"Tuborg\": [\n        \"NNP\"\n    ], \n    \"indirect\": [\n        \"JJ\"\n    ], \n    \"buzzwords\": [\n        \"NNS\"\n    ], \n    \"propagandists\": [\n        \"NNS\"\n    ], \n    \"Lehne\": [\n        \"NNP\"\n    ], \n    \"punster\": [\n        \"NN\"\n    ], \n    \"overbid\": [\n        \"VBD\", \n        \"VB\"\n    ], \n    \"inquisitiveness\": [\n        \"NN\"\n    ], \n    \"dialect\": [\n        \"NN\"\n    ], \n    \"emeriti\": [\n        \"FW\"\n    ], \n    \"unbalanced\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"cleric\": [\n        \"NN\"\n    ], \n    \"superposition\": [\n        \"NN\"\n    ], \n    \"Effective\": [\n        \"JJ\"\n    ], \n    \"Relishes\": [\n        \"NNS\"\n    ], \n    \"Dain-sponsored\": [\n        \"JJ\"\n    ], \n    \"recompence\": [\n        \"NN\"\n    ], \n    \"miscellaneous\": [\n        \"JJ\"\n    ], \n    \"Harman\": [\n        \"NNP\"\n    ], \n    \"blokes\": [\n        \"NNS\"\n    ], \n    \"Splendor\": [\n        \"NN\"\n    ], \n    \"ridges\": [\n        \"NNS\"\n    ], \n    \"catastrophic-healthcare\": [\n        \"JJ\"\n    ], \n    \"discharge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"honour\": [\n        \"NN\"\n    ], \n    \"Kodak\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"power-company\": [\n        \"NN\"\n    ], \n    \"Emile\": [\n        \"NNP\"\n    ], \n    \"Chateaubriand\": [\n        \"NNP\"\n    ], \n    \"navel\": [\n        \"NN\"\n    ], \n    \"Kohi\": [\n        \"FW\"\n    ], \n    \"yacht\": [\n        \"NN\"\n    ], \n    \"Kohl\": [\n        \"NNP\"\n    ], \n    \"Dumas\": [\n        \"NNP\"\n    ], \n    \"well-designed\": [\n        \"JJ\"\n    ], \n    \"voluntarism\": [\n        \"NN\"\n    ], \n    \"intimacy\": [\n        \"NN\"\n    ], \n    \"reappraising\": [\n        \"VBG\"\n    ], \n    \"Emily\": [\n        \"NNP\"\n    ], \n    \"pistils\": [\n        \"NNS\"\n    ], \n    \"regulars\": [\n        \"NNS\"\n    ], \n    \"below-market\": [\n        \"JJ\"\n    ], \n    \"focus\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"leads\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Hardings\": [\n        \"NNPS\"\n    ], \n    \"ice\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Frum\": [\n        \"NNP\"\n    ], \n    \"crack-using\": [\n        \"JJ\"\n    ], \n    \"empathize\": [\n        \"VB\"\n    ], \n    \"McElyee\": [\n        \"NNP\"\n    ], \n    \"reinsuring\": [\n        \"VBG\"\n    ], \n    \"pompously\": [\n        \"RB\"\n    ], \n    \"icy\": [\n        \"JJ\"\n    ], \n    \"environment\": [\n        \"NN\"\n    ], \n    \"Jeroboams\": [\n        \"NNPS\"\n    ], \n    \"charge\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"quash\": [\n        \"VB\"\n    ], \n    \"discovering\": [\n        \"VBG\"\n    ], \n    \"Robots\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"papier-mache\": [\n        \"NN\"\n    ], \n    \"coop\": [\n        \"NN\"\n    ], \n    \"Ferre\": [\n        \"NNP\"\n    ], \n    \"Quattlebaum\": [\n        \"NNP\"\n    ], \n    \"Ferro\": [\n        \"NNP\"\n    ], \n    \"sours\": [\n        \"VBZ\"\n    ], \n    \"hard-disk\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"plantain\": [\n        \"NN\"\n    ], \n    \"cook\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ferry\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Speculation\": [\n        \"NN\"\n    ], \n    \"little\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"stonewalled\": [\n        \"VBD\"\n    ], \n    \"federal-systems\": [\n        \"JJ\"\n    ], \n    \"Laswick\": [\n        \"NNP\"\n    ], \n    \"three-inning\": [\n        \"JJ\"\n    ], \n    \"camaraderie\": [\n        \"NN\"\n    ], \n    \"cold-weather\": [\n        \"JJ\"\n    ], \n    \"invidious\": [\n        \"JJ\"\n    ], \n    \"asset-management\": [\n        \"NN\"\n    ], \n    \"encroach\": [\n        \"VB\"\n    ], \n    \"phosphorus-bridged\": [\n        \"JJ\"\n    ], \n    \"rehashed\": [\n        \"VBD\"\n    ], \n    \"Naftalis\": [\n        \"NNP\"\n    ], \n    \"better-than-expected\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dries\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"drier\": [\n        \"NN\", \n        \"JJR\", \n        \"RBR\"\n    ], \n    \"mid-1992\": [\n        \"NN\"\n    ], \n    \"body-tissue\": [\n        \"NN\"\n    ], \n    \"obsolete\": [\n        \"JJ\"\n    ], \n    \"mid-1995\": [\n        \"NN\"\n    ], \n    \"Damages\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"ZDF\": [\n        \"NNP\"\n    ], \n    \"pre-Communist\": [\n        \"JJ\"\n    ], \n    \"Abbenhaus\": [\n        \"NNP\"\n    ], \n    \"deluded\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Sheffield\": [\n        \"NNP\"\n    ], \n    \"Cullen\\\\/Frost\": [\n        \"NNP\"\n    ], \n    \"transcontinental\": [\n        \"JJ\"\n    ], \n    \"Haggard\": [\n        \"NNP\"\n    ], \n    \"Accor\": [\n        \"NNP\"\n    ], \n    \"prescriptions\": [\n        \"NNS\"\n    ], \n    \"Barrister\": [\n        \"NNP\"\n    ], \n    \"skyjackers\": [\n        \"NNS\"\n    ], \n    \"still-limited\": [\n        \"JJ\"\n    ], \n    \"cork\": [\n        \"NN\"\n    ], \n    \"Mustang\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"city\\\\/regional\": [\n        \"JJ\"\n    ], \n    \"Matrimonial\": [\n        \"NNP\"\n    ], \n    \"male\": [\n        \"JJ\", \n        \"JJ|NN\", \n        \"NN\"\n    ], \n    \"standout\": [\n        \"NN\"\n    ], \n    \"shove\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"healthy\": [\n        \"JJ\"\n    ], \n    \"ravaging\": [\n        \"VBG\"\n    ], \n    \"busybodies\": [\n        \"NNS\"\n    ], \n    \"Sibly\": [\n        \"NNP\"\n    ], \n    \"Maximilian\": [\n        \"NNP\"\n    ], \n    \"Hornung\": [\n        \"NNP\"\n    ], \n    \"prude\": [\n        \"NN\"\n    ], \n    \"Floating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Ruanda-Urundi\": [\n        \"NNP\"\n    ], \n    \"SIDES\": [\n        \"NNS\"\n    ], \n    \"emerge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kayabashi\": [\n        \"NNP\"\n    ], \n    \"humour\": [\n        \"NN\"\n    ], \n    \"inducing\": [\n        \"VBG\"\n    ], \n    \"Member\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"trousers-pockets\": [\n        \"NNS\"\n    ], \n    \"preconceptions\": [\n        \"NNS\"\n    ], \n    \"Communion\": [\n        \"NNP\"\n    ], \n    \"Ind.\": [\n        \"NNP\"\n    ], \n    \"Siegfried\": [\n        \"NNP\"\n    ], \n    \"hoppled\": [\n        \"VBN\"\n    ], \n    \"inflections\": [\n        \"NNS\"\n    ], \n    \"podiatric\": [\n        \"JJ\"\n    ], \n    \"brighter\": [\n        \"JJR\"\n    ], \n    \"off-base\": [\n        \"JJ\"\n    ], \n    \"Strenger\": [\n        \"NNP\"\n    ], \n    \"doctor-oriented\": [\n        \"JJ\"\n    ], \n    \"binational\": [\n        \"JJ\"\n    ], \n    \"Carbones\": [\n        \"NNPS\"\n    ], \n    \"Wendells\": [\n        \"NNPS\"\n    ], \n    \"fourteen-nation\": [\n        \"NN\"\n    ], \n    \"negroes\": [\n        \"NNPS\"\n    ], \n    \"Barneys\": [\n        \"NNP\"\n    ], \n    \"reorder\": [\n        \"VB\"\n    ], \n    \"lawns\": [\n        \"NNS\"\n    ], \n    \"ayes\": [\n        \"NNS\"\n    ], \n    \"Gerardo\": [\n        \"NNP\"\n    ], \n    \"sheds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Fredrikshall\": [\n        \"NNP\"\n    ], \n    \"Lebanon\": [\n        \"NNP\"\n    ], \n    \"part-timers\": [\n        \"NNS\"\n    ], \n    \"alliance\": [\n        \"NN\"\n    ], \n    \"Swallow-Barn\": [\n        \"NNP\"\n    ], \n    \"Homeless\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"placements\": [\n        \"NNS\"\n    ], \n    \"president-international\": [\n        \"NN\"\n    ], \n    \"Mij\": [\n        \"NNP\"\n    ], \n    \"Beaming\": [\n        \"VBG\"\n    ], \n    \"Mio\": [\n        \"NNP\"\n    ], \n    \"Mia\": [\n        \"NNP\"\n    ], \n    \"seven-month-old\": [\n        \"JJ\"\n    ], \n    \"geeks\": [\n        \"NNS\"\n    ], \n    \"glitch\": [\n        \"NN\"\n    ], \n    \"mediumship\": [\n        \"NN\"\n    ], \n    \"demagoguery\": [\n        \"NN\"\n    ], \n    \"Eighteenth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"five-pfennig\": [\n        \"JJ\"\n    ], \n    \"Mix\": [\n        \"NNP\"\n    ], \n    \"Gasse\": [\n        \"NNP\"\n    ], \n    \"terrain-marring\": [\n        \"JJ\"\n    ], \n    \"IMSAI\": [\n        \"NNP\"\n    ], \n    \"intelligible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"painkillers\": [\n        \"NNS\"\n    ], \n    \"price-fixing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Jeri\": [\n        \"NNP\"\n    ], \n    \"undulated\": [\n        \"VBD\"\n    ], \n    \"cardinal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lucked\": [\n        \"VBD\"\n    ], \n    \"Strategists\": [\n        \"NNS\"\n    ], \n    \"begs\": [\n        \"VBZ\"\n    ], \n    \"Boehm\": [\n        \"NNP\"\n    ], \n    \"etched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"leavin\": [\n        \"VBG\"\n    ], \n    \"crashes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"crasher\": [\n        \"NN\"\n    ], \n    \"fascist\": [\n        \"JJ\"\n    ], \n    \"scoff\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"Ramirez\": [\n        \"NNP\"\n    ], \n    \"fascism\": [\n        \"NN\"\n    ], \n    \"depriving\": [\n        \"VBG\"\n    ], \n    \"Rawls\": [\n        \"NNP\"\n    ], \n    \"celluloids\": [\n        \"NNS\"\n    ], \n    \"muggy\": [\n        \"JJ\"\n    ], \n    \"Ellesmere\": [\n        \"NNP\"\n    ], \n    \"liquid\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drumsticks\": [\n        \"NNS\"\n    ], \n    \"Damas\": [\n        \"NNP\"\n    ], \n    \"Jeans\": [\n        \"NNPS\"\n    ], \n    \"noncriminal\": [\n        \"JJ\"\n    ], \n    \"Breakers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Elks\": [\n        \"NNP\"\n    ], \n    \"Muscatine\": [\n        \"NNP\"\n    ], \n    \"Janesville\": [\n        \"NNP\"\n    ], \n    \"invests\": [\n        \"VBZ\"\n    ], \n    \"Jeane\": [\n        \"NNP\"\n    ], \n    \"Trenchard\": [\n        \"NNP\"\n    ], \n    \"Monorail\": [\n        \"NNP\"\n    ], \n    \"Kwango\": [\n        \"NNP\"\n    ], \n    \"subjectivity\": [\n        \"NN\"\n    ], \n    \"extractor\": [\n        \"NN\"\n    ], \n    \"Otero\": [\n        \"NNP\"\n    ], \n    \"subsections\": [\n        \"NNS\"\n    ], \n    \"estuary\": [\n        \"NN\"\n    ], \n    \"furnished\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"understandingly\": [\n        \"RB\"\n    ], \n    \"paternalist\": [\n        \"JJ\"\n    ], \n    \"creativity-oriented\": [\n        \"JJ\"\n    ], \n    \"local-service\": [\n        \"JJ\"\n    ], \n    \"SOUVENIRS\": [\n        \"NNS\"\n    ], \n    \"furnishes\": [\n        \"VBZ\"\n    ], \n    \"Maturities\": [\n        \"NNS\"\n    ], \n    \"White\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Christ-like\": [\n        \"JJ\"\n    ], \n    \"foldable\": [\n        \"JJ\"\n    ], \n    \"supplemented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"skinfolds\": [\n        \"NNS\"\n    ], \n    \"Stung\": [\n        \"VBN\"\n    ], \n    \"abhorred\": [\n        \"VBD\"\n    ], \n    \"self-insurance\": [\n        \"NN\"\n    ], \n    \"tangos\": [\n        \"NNS\"\n    ], \n    \"Using\": [\n        \"VBG\"\n    ], \n    \"Jordonelle\": [\n        \"NNP\"\n    ], \n    \"investment-oriented\": [\n        \"JJ\"\n    ], \n    \"Cable\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unhurriedly\": [\n        \"RB\"\n    ], \n    \"underneath\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"cowering\": [\n        \"VBG\"\n    ], \n    \"Gottesfeld\": [\n        \"NNP\"\n    ], \n    \"A340\": [\n        \"NN\"\n    ], \n    \"lustful\": [\n        \"JJ\"\n    ], \n    \"Loyalties\": [\n        \"NNS\"\n    ], \n    \"Pontchartrain\": [\n        \"NNP\"\n    ], \n    \"Klauser\": [\n        \"NNP\"\n    ], \n    \"name\": [\n        \"NN\", \n        \"VB\", \n        \"UH\", \n        \"VBP\"\n    ], \n    \"coaxes\": [\n        \"VBZ\"\n    ], \n    \"sensibilities\": [\n        \"NNS\"\n    ], \n    \"laborers\": [\n        \"NNS\"\n    ], \n    \"substitutes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"synchronize\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"bullion\": [\n        \"NN\"\n    ], \n    \"trussed-up\": [\n        \"JJ\"\n    ], \n    \"recognitions\": [\n        \"NNS\"\n    ], \n    \"social-security\": [\n        \"NN\"\n    ], \n    \"loss-recovery\": [\n        \"JJ\"\n    ], \n    \"populated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"hiccups\": [\n        \"NNS\"\n    ], \n    \"expansions\": [\n        \"NNS\"\n    ], \n    \"uninhibited\": [\n        \"JJ\"\n    ], \n    \"Semiramis\": [\n        \"NNP\"\n    ], \n    \"Distributing\": [\n        \"VBG\"\n    ], \n    \"inopportune\": [\n        \"JJ\"\n    ], \n    \"responsiblilty\": [\n        \"NN\"\n    ], \n    \"tuned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"obsession\": [\n        \"NN\"\n    ], \n    \"plans\": [\n        \"NNS\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"once-downtrodden\": [\n        \"JJ\"\n    ], \n    \"Woodman\": [\n        \"NNP\"\n    ], \n    \"low-pitched\": [\n        \"JJ\"\n    ], \n    \"infarct\": [\n        \"NN\"\n    ], \n    \"issuances\": [\n        \"NNS\"\n    ], \n    \"Engineered\": [\n        \"NNP\"\n    ], \n    \"Woodmac\": [\n        \"NNP\"\n    ], \n    \"Pennsylvania-based\": [\n        \"JJ\"\n    ], \n    \"de-iodinated\": [\n        \"VBN\"\n    ], \n    \"antiphonal\": [\n        \"JJ\"\n    ], \n    \"variable-speed\": [\n        \"JJ\"\n    ], \n    \"Record\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"broker-sold\": [\n        \"JJ\"\n    ], \n    \"Security\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"liberal-arts\": [\n        \"NNS\"\n    ], \n    \"Lamalie\": [\n        \"NNP\"\n    ], \n    \"overmedicated\": [\n        \"VBN\"\n    ], \n    \"calories\": [\n        \"NNS\"\n    ], \n    \"Accelerated\": [\n        \"VBN\"\n    ], \n    \"unpaid\": [\n        \"JJ\"\n    ], \n    \"butterflies\": [\n        \"NNS\"\n    ], \n    \"swine\": [\n        \"NNS\"\n    ], \n    \"Kaboom\": [\n        \"NN\"\n    ], \n    \"widow\": [\n        \"NN\"\n    ], \n    \"childhood\": [\n        \"NN\"\n    ], \n    \"ammo\": [\n        \"NN\"\n    ], \n    \"revenue\": [\n        \"NN\"\n    ], \n    \"Stark\": [\n        \"NNP\"\n    ], \n    \"Start\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Hartford\\\\/Springfield\": [\n        \"NNP\"\n    ], \n    \"Stars\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Starr\": [\n        \"NNP\"\n    ], \n    \"array\": [\n        \"NN\"\n    ], \n    \"hairdressers\": [\n        \"NNS\"\n    ], \n    \"less-dramatic\": [\n        \"JJ\"\n    ], \n    \"peddles\": [\n        \"VBZ\"\n    ], \n    \"peddler\": [\n        \"NN\"\n    ], \n    \"Bundesnachrichtendienst\": [\n        \"NNP\"\n    ], \n    \"intra-governmental\": [\n        \"JJ\"\n    ], \n    \"opus\": [\n        \"NN\"\n    ], \n    \"Kedgeree\": [\n        \"NN\"\n    ], \n    \"Wharton\": [\n        \"NNP\"\n    ], \n    \"terrifying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"peddled\": [\n        \"VBN\"\n    ], \n    \"Provision\": [\n        \"NN\"\n    ], \n    \"seduced\": [\n        \"VBN\"\n    ], \n    \"Geneva-based\": [\n        \"JJ\"\n    ], \n    \"greenly\": [\n        \"RB\"\n    ], \n    \"cope\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Pasternak\": [\n        \"NNP\"\n    ], \n    \"caning\": [\n        \"NN\"\n    ], \n    \"Turnpike-widening\": [\n        \"JJ\"\n    ], \n    \"paredon\": [\n        \"NN\"\n    ], \n    \"Seng\": [\n        \"NNP\"\n    ], \n    \"Naked\": [\n        \"JJ\"\n    ], \n    \"cops\": [\n        \"NNS\"\n    ], \n    \"nonoccurrence\": [\n        \"NN\"\n    ], \n    \"Send\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"seducer\": [\n        \"NN\"\n    ], \n    \"seduces\": [\n        \"VBZ\"\n    ], \n    \"immigrant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Mobutu\": [\n        \"NNP\"\n    ], \n    \"specify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Katanga\": [\n        \"NNP\"\n    ], \n    \"possiblities\": [\n        \"NNS\"\n    ], \n    \"unfortunately\": [\n        \"RB\"\n    ], \n    \"oats\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Jogjakarta\": [\n        \"NN\"\n    ], \n    \"capital-gain\": [\n        \"JJ\"\n    ], \n    \"fourth-flight\": [\n        \"JJ\"\n    ], \n    \"Time-Warner\": [\n        \"NNP\"\n    ], \n    \"mindful\": [\n        \"JJ\"\n    ], \n    \"schooled\": [\n        \"VBN\"\n    ], \n    \"Alpers\": [\n        \"NNP\"\n    ], \n    \"outcome\": [\n        \"NN\"\n    ], \n    \"oath\": [\n        \"NN\"\n    ], \n    \"Alpert\": [\n        \"NNP\"\n    ], \n    \"rend\": [\n        \"VB\"\n    ], \n    \"Topkapi\": [\n        \"NNP\"\n    ], \n    \"Did-\": [\n        \"NNP\"\n    ], \n    \"CONTACT\": [\n        \"NN\"\n    ], \n    \"rent\": [\n        \"NN\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Unglazed\": [\n        \"VBN\"\n    ], \n    \"hunter-killer\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Glavin\": [\n        \"NNP\"\n    ], \n    \"sashayed\": [\n        \"VBD\"\n    ], \n    \"marathon\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"right-to-privacy\": [\n        \"JJ\"\n    ], \n    \"narrow-minded\": [\n        \"JJ\"\n    ], \n    \"homerun\": [\n        \"NN\"\n    ], \n    \"Fazio\": [\n        \"NNP\"\n    ], \n    \"ideas\": [\n        \"NNS\"\n    ], \n    \"great-grandchildren\": [\n        \"NNS\"\n    ], \n    \"ideal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sent\": [\n        \"VBN\"\n    ], \n    \"fracture\": [\n        \"NN\"\n    ], \n    \"blunt\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"DISNEY\": [\n        \"NNP\"\n    ], \n    \"luckiest\": [\n        \"JJS\"\n    ], \n    \"hooves\": [\n        \"NNS\"\n    ], \n    \"Basics\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"kibbutz\": [\n        \"NN\"\n    ], \n    \"inks\": [\n        \"NNS\"\n    ], \n    \"betrayal\": [\n        \"NN\"\n    ], \n    \"Shortageflation\": [\n        \"NN\"\n    ], \n    \"barflies\": [\n        \"NNS\"\n    ], \n    \"medical-school\": [\n        \"NN\"\n    ], \n    \"Erodes\": [\n        \"VBZ\"\n    ], \n    \"stormed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Waldbaum\": [\n        \"NNP\"\n    ], \n    \"Yegor\": [\n        \"NNP\"\n    ], \n    \"WHITMAN\": [\n        \"NNP\"\n    ], \n    \"CITY\": [\n        \"NNP\"\n    ], \n    \"Wagoneer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Taoism\": [\n        \"NNP\"\n    ], \n    \"Type-O\": [\n        \"JJ\"\n    ], \n    \"coproductions\": [\n        \"NNS\"\n    ], \n    \"RIAA\": [\n        \"NNP\"\n    ], \n    \"Erensel\": [\n        \"NNP\"\n    ], \n    \"Gold\\\\/Minerals\": [\n        \"NNP\"\n    ], \n    \"P.A.\": [\n        \"NN\"\n    ], \n    \"humilation\": [\n        \"NN\"\n    ], \n    \"sculpted\": [\n        \"VBN\"\n    ], \n    \"terror-stricken\": [\n        \"JJ\"\n    ], \n    \"Dassault\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"permeable\": [\n        \"JJ\"\n    ], \n    \"F.N.\": [\n        \"NNP\"\n    ], \n    \"non-com\": [\n        \"NN\"\n    ], \n    \"hustled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Whittaker\": [\n        \"NNP\"\n    ], \n    \"feistiness\": [\n        \"NN\"\n    ], \n    \"polysilicon\": [\n        \"NN\"\n    ], \n    \"Fellowship\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Authentication\": [\n        \"NNP\"\n    ], \n    \"Gilbertie\": [\n        \"NNP\"\n    ], \n    \"drumbeating\": [\n        \"NN\"\n    ], \n    \"shibboleth\": [\n        \"NN\"\n    ], \n    \"tailpipe-emissions\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"adhere\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hustler\": [\n        \"NN\"\n    ], \n    \"hustles\": [\n        \"VBZ\"\n    ], \n    \"unshaven\": [\n        \"JJ\"\n    ], \n    \"principled\": [\n        \"JJ\"\n    ], \n    \"one-million-plus\": [\n        \"JJ\"\n    ], \n    \"B-2\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"B-3\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"open-skies\": [\n        \"JJ\"\n    ], \n    \"B-1\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"unheard-of\": [\n        \"JJ\"\n    ], \n    \"B-4\": [\n        \"NNP\"\n    ], \n    \"invocation\": [\n        \"NN\"\n    ], \n    \"transfusions\": [\n        \"NNS\"\n    ], \n    \"MSD-200\": [\n        \"NNP\"\n    ], \n    \"Progressive\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"H\": [\n        \"NNP\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"Twigs\": [\n        \"NNS\"\n    ], \n    \"Arthritis\": [\n        \"NNP\"\n    ], \n    \"non-viral\": [\n        \"JJ\"\n    ], \n    \"multimillion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"strafing\": [\n        \"VBG\"\n    ], \n    \"Shops\": [\n        \"NNPS\", \n        \"VBZ\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"reveal\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Radcliffe\": [\n        \"NNP\"\n    ], \n    \"contradistinction\": [\n        \"NN\"\n    ], \n    \"driers\": [\n        \"NNS\"\n    ], \n    \"attitude\": [\n        \"NN\"\n    ], \n    \"kickbacks\": [\n        \"NNS\"\n    ], \n    \"Suburban\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"RATIOS\": [\n        \"NNS\"\n    ], \n    \"ken\": [\n        \"NN\"\n    ], \n    \"bids\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"abler\": [\n        \"JJR\"\n    ], \n    \"college\": [\n        \"NN\"\n    ], \n    \"Wildly\": [\n        \"RB\"\n    ], \n    \"apologies\": [\n        \"NNS\"\n    ], \n    \"determinative\": [\n        \"JJ\"\n    ], \n    \"cadets\": [\n        \"NNS\"\n    ], \n    \"kitschy\": [\n        \"JJ\"\n    ], \n    \"Edelman\": [\n        \"NNP\"\n    ], \n    \"reproducibly\": [\n        \"RB\"\n    ], \n    \"federal\": [\n        \"JJ\"\n    ], \n    \"Mont.\": [\n        \"NNP\"\n    ], \n    \"definite\": [\n        \"JJ\"\n    ], \n    \"Alarcon\": [\n        \"NNP\"\n    ], \n    \"fun-in-the-sun\": [\n        \"JJ\"\n    ], \n    \"nooks\": [\n        \"NNS\"\n    ], \n    \"reproducible\": [\n        \"JJ\"\n    ], \n    \"Trevino\": [\n        \"NNP\"\n    ], \n    \"cantered\": [\n        \"VBD\"\n    ], \n    \"corridors\": [\n        \"NNS\"\n    ], \n    \"communicators\": [\n        \"NNS\"\n    ], \n    \"half-gainer\": [\n        \"NN\"\n    ], \n    \"pine-knot\": [\n        \"JJ\"\n    ], \n    \"jurisprudentially\": [\n        \"RB\"\n    ], \n    \"now-shaky\": [\n        \"JJ\"\n    ], \n    \"FUND\": [\n        \"NNP\"\n    ], \n    \"disinfectants\": [\n        \"NNS\"\n    ], \n    \"diners\": [\n        \"NNS\"\n    ], \n    \"volubly\": [\n        \"RB\"\n    ], \n    \"interfere\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Leitz\": [\n        \"NNP\"\n    ], \n    \"Monte\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"wanders\": [\n        \"VBZ\"\n    ], \n    \"subskills\": [\n        \"NNS\"\n    ], \n    \"recumbent\": [\n        \"JJ\"\n    ], \n    \"Millay\": [\n        \"NNP\"\n    ], \n    \"Month\": [\n        \"NNP\"\n    ], \n    \"leftists\": [\n        \"NNS\"\n    ], \n    \"berry\": [\n        \"NN\"\n    ], \n    \"Dream-Lusty\": [\n        \"NNP\"\n    ], \n    \"Monty\": [\n        \"NNP\"\n    ], \n    \"duty\": [\n        \"NN\"\n    ], \n    \"Decline\": [\n        \"NN\"\n    ], \n    \"Halcion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cabal\": [\n        \"NN\"\n    ], \n    \"Geraldo\": [\n        \"NNP\"\n    ], \n    \"pox\": [\n        \"NN\"\n    ], \n    \"Shortstop\": [\n        \"NNP\"\n    ], \n    \"armchair\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pontificates\": [\n        \"VBZ\"\n    ], \n    \"hunched\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Denali\": [\n        \"NNP\"\n    ], \n    \"pop\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pol\": [\n        \"NN\"\n    ], \n    \"swum\": [\n        \"VBN\"\n    ], \n    \"pod\": [\n        \"NN\"\n    ], \n    \"hunches\": [\n        \"NNS\"\n    ], \n    \"MAKES\": [\n        \"VBZ\"\n    ], \n    \"teammate\": [\n        \"NN\"\n    ], \n    \"Electric\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"rhinestones\": [\n        \"NNS\"\n    ], \n    \"entrenchment\": [\n        \"NN\"\n    ], \n    \"bequeathed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cash-squeezed\": [\n        \"JJ\"\n    ], \n    \"Bisson\": [\n        \"NNP\"\n    ], \n    \"Y.M.H.A.\": [\n        \"NNP\"\n    ], \n    \"billionaires\": [\n        \"NNS\"\n    ], \n    \"dairymen\": [\n        \"NNS\"\n    ], \n    \"engine\": [\n        \"NN\"\n    ], \n    \"Leominster\": [\n        \"NNP\"\n    ], \n    \"blessing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Spokeswomen\": [\n        \"NNS\"\n    ], \n    \"ADVANCEMENT\": [\n        \"NNP\"\n    ], \n    \"Stavropoulos\": [\n        \"NNP\"\n    ], \n    \"tiger\": [\n        \"NN\"\n    ], \n    \"callipygous\": [\n        \"NN\"\n    ], \n    \"eatery\": [\n        \"NN\"\n    ], \n    \"Geissinger\": [\n        \"NNP\"\n    ], \n    \"minister\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Barmore\": [\n        \"NNP\"\n    ], \n    \"eaters\": [\n        \"NNS\"\n    ], \n    \"careful\": [\n        \"JJ\"\n    ], \n    \"irrelevant\": [\n        \"JJ\"\n    ], \n    \"dribble\": [\n        \"NN\"\n    ], \n    \"sniff\": [\n        \"VB\"\n    ], \n    \"mount\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"volatilization\": [\n        \"NN\"\n    ], \n    \"Vary\": [\n        \"VBP\"\n    ], \n    \"premature\": [\n        \"JJ\"\n    ], \n    \"pre-date\": [\n        \"VB\"\n    ], \n    \"prime-3\": [\n        \"NN\"\n    ], \n    \"air-passenger\": [\n        \"NN\"\n    ], \n    \"mound\": [\n        \"NN\"\n    ], \n    \"Sega\": [\n        \"NNP\"\n    ], \n    \"Yachtsman\": [\n        \"NNP\"\n    ], \n    \"enriches\": [\n        \"VBZ\"\n    ], \n    \"vest\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Slice\": [\n        \"NN\"\n    ], \n    \"Silvers\": [\n        \"NNP\"\n    ], \n    \"coupled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"self-rule\": [\n        \"NN\"\n    ], \n    \"Edwin\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Oak\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ex-Justice\": [\n        \"NN\"\n    ], \n    \"couples\": [\n        \"NNS\"\n    ], \n    \"coupler\": [\n        \"NN\"\n    ], \n    \"Oat\": [\n        \"NNP\"\n    ], \n    \"Shoppers\": [\n        \"NNS\"\n    ], \n    \"decisively\": [\n        \"RB\"\n    ], \n    \"Cashman\": [\n        \"NNP\"\n    ], \n    \"erroneously\": [\n        \"RB\"\n    ], \n    \"Schwarzkopf\": [\n        \"NNP\"\n    ], \n    \"dithering\": [\n        \"VBG\"\n    ], \n    \"Void\": [\n        \"NN\"\n    ], \n    \"chuckling\": [\n        \"VBG\"\n    ], \n    \"no-profit\": [\n        \"JJ\"\n    ], \n    \"persona\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Commodity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"refraction\": [\n        \"NN\"\n    ], \n    \"Soul\": [\n        \"NNP\"\n    ], \n    \"asseet\": [\n        \"NN\"\n    ], \n    \"decently\": [\n        \"RB\"\n    ], \n    \"Sour\": [\n        \"NNP\"\n    ], \n    \"abalone\": [\n        \"NN\"\n    ], \n    \"unqualified\": [\n        \"JJ\"\n    ], \n    \"illicitly\": [\n        \"RB\"\n    ], \n    \"cartoon\": [\n        \"NN\"\n    ], \n    \"togetherness\": [\n        \"NN\"\n    ], \n    \"Buckhead\": [\n        \"NNP\"\n    ], \n    \"Drunken\": [\n        \"JJ\"\n    ], \n    \"omelette\": [\n        \"NN\"\n    ], \n    \"estimation\": [\n        \"NN\"\n    ], \n    \"sand\": [\n        \"NN\"\n    ], \n    \"Appelbaum\": [\n        \"NNP\"\n    ], \n    \"ranch\": [\n        \"NN\"\n    ], \n    \"double-checking\": [\n        \"NN\"\n    ], \n    \"synthesised\": [\n        \"VBN\"\n    ], \n    \"shroud\": [\n        \"VBP\"\n    ], \n    \"Physical\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"LBO-related\": [\n        \"JJ\"\n    ], \n    \"Herod\": [\n        \"NNP\"\n    ], \n    \"Vikings\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Heron\": [\n        \"NNP\"\n    ], \n    \"actress\": [\n        \"NN\"\n    ], \n    \"risking\": [\n        \"VBG\"\n    ], \n    \"Nikolais\": [\n        \"NNP\"\n    ], \n    \"internationalization\": [\n        \"NN\"\n    ], \n    \"satin\": [\n        \"NN\"\n    ], \n    \"halfway\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"lower-cut\": [\n        \"JJ\"\n    ], \n    \"socialite\": [\n        \"NN\"\n    ], \n    \"agreeement\": [\n        \"NN\"\n    ], \n    \"Propane\": [\n        \"NNP\"\n    ], \n    \"rose\": [\n        \"VBD\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Getty\": [\n        \"NNP\"\n    ], \n    \"Laboratorium\": [\n        \"NNP\"\n    ], \n    \"disrupt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Tsur\": [\n        \"NNP\"\n    ], \n    \"Marmara\": [\n        \"NNP\"\n    ], \n    \"Ricco\": [\n        \"NNP\"\n    ], \n    \"Adair\": [\n        \"NNP\"\n    ], \n    \"confines\": [\n        \"NNS\"\n    ], \n    \"saber-rattling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"confined\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Beiderbecke\": [\n        \"NNP\"\n    ], \n    \"Wynn\": [\n        \"NNP\"\n    ], \n    \"Producer\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"exquisitely\": [\n        \"RB\"\n    ], \n    \"reduces\": [\n        \"VBZ\"\n    ], \n    \"reducer\": [\n        \"NN\"\n    ], \n    \"sanity\": [\n        \"NN\"\n    ], \n    \"snort\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"four-in-hand\": [\n        \"JJ\"\n    ], \n    \"Israelites\": [\n        \"NNPS\"\n    ], \n    \"substandard\": [\n        \"JJ\"\n    ], \n    \"stony-meteorite\": [\n        \"JJ\"\n    ], \n    \"reduced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Antoinette\": [\n        \"NNP\"\n    ], \n    \"Bookwalter\": [\n        \"NNP\"\n    ], \n    \"Vevay\": [\n        \"NNP\"\n    ], \n    \"inflation-hedge\": [\n        \"JJ\"\n    ], \n    \"West\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"better-capitalized\": [\n        \"JJ\"\n    ], \n    \"esplanade\": [\n        \"NN\"\n    ], \n    \"Employer\": [\n        \"NN\"\n    ], \n    \"Cracklin\": [\n        \"NNP\"\n    ], \n    \"semi-local\": [\n        \"JJ\"\n    ], \n    \"Employee\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cahners\": [\n        \"NNP\"\n    ], \n    \"Bartleby\": [\n        \"NNP\"\n    ], \n    \"eloquence\": [\n        \"NN\"\n    ], \n    \"Berens\": [\n        \"NNP\"\n    ], \n    \"boatsmen\": [\n        \"NNS\"\n    ], \n    \"Basler\": [\n        \"NNP\"\n    ], \n    \"resonate\": [\n        \"VB\"\n    ], \n    \"DeMoss\": [\n        \"NNP\"\n    ], \n    \"preceding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ornamentation\": [\n        \"NN\"\n    ], \n    \"loose-knit\": [\n        \"JJ\"\n    ], \n    \"biofeedback\": [\n        \"NN\"\n    ], \n    \"TRO\": [\n        \"NN\"\n    ], \n    \"Co-optation\": [\n        \"NN\"\n    ], \n    \"Rutherford\": [\n        \"NNP\"\n    ], \n    \"Kolstad\": [\n        \"NNP\"\n    ], \n    \"launch-pad\": [\n        \"JJ\"\n    ], \n    \"Olin\": [\n        \"NNP\"\n    ], \n    \"Neuberger\": [\n        \"NNP\"\n    ], \n    \"TRT\": [\n        \"NNP\"\n    ], \n    \"TRW\": [\n        \"NNP\"\n    ], \n    \"TRV\": [\n        \"NNP\"\n    ], \n    \"roly-poly\": [\n        \"JJ\"\n    ], \n    \"radiography\": [\n        \"NN\"\n    ], \n    \"Extensor\": [\n        \"NNP\"\n    ], \n    \"Cabernets\": [\n        \"NNPS\"\n    ], \n    \"cornucopia\": [\n        \"NN\"\n    ], \n    \"Jackie\": [\n        \"NNP\"\n    ], \n    \"shrimp\": [\n        \"NN\"\n    ], \n    \"informing\": [\n        \"VBG\"\n    ], \n    \"creepers\": [\n        \"NNS\"\n    ], \n    \"Coleco\": [\n        \"NNP\"\n    ], \n    \"relative-performance\": [\n        \"JJ\"\n    ], \n    \"equalize\": [\n        \"VB\"\n    ], \n    \"tariffs\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"rapeseed\": [\n        \"NN\"\n    ], \n    \"Bexar\": [\n        \"NNP\"\n    ], \n    \"ladies\": [\n        \"NNS\"\n    ], \n    \"Fritze\": [\n        \"NNP\"\n    ], \n    \"Commisioner\": [\n        \"NNP\"\n    ], \n    \"polka\": [\n        \"NN\"\n    ], \n    \"pick-up\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fabbri\": [\n        \"NNP\"\n    ], \n    \"Tumbling\": [\n        \"JJ\"\n    ], \n    \"conservancy\": [\n        \"NN\"\n    ], \n    \"Otto\": [\n        \"NNP\"\n    ], \n    \"Otte\": [\n        \"NNP\"\n    ], \n    \"theoretically\": [\n        \"RB\"\n    ], \n    \"Wolters-Kluwer\": [\n        \"NNP\"\n    ], \n    \"ESL\": [\n        \"NNP\"\n    ], \n    \"boatloads\": [\n        \"NNS\"\n    ], \n    \"Nabisco\": [\n        \"NNP\"\n    ], \n    \"Hurwitz\": [\n        \"NNP\"\n    ], \n    \"Vikulov\": [\n        \"NNP\"\n    ], \n    \"expiration-related\": [\n        \"JJ\"\n    ], \n    \"liberals\": [\n        \"NNS\"\n    ], \n    \"Infiniti\": [\n        \"NNP\"\n    ], \n    \"Ashamed\": [\n        \"JJ\"\n    ], \n    \"unfertile\": [\n        \"JJ\"\n    ], \n    \"Infinite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mansfield\": [\n        \"NNP\"\n    ], \n    \"Lesley-Anne\": [\n        \"NNP\"\n    ], \n    \"multi-millionaire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"merrymaking\": [\n        \"NN\"\n    ], \n    \"Errol\": [\n        \"NNP\"\n    ], \n    \"Stoneridge\": [\n        \"NNP\"\n    ], \n    \"over-50s\": [\n        \"NNS\"\n    ], \n    \"amongst\": [\n        \"IN\"\n    ], \n    \"Wurm\": [\n        \"NNP\"\n    ], \n    \"Sloves\": [\n        \"NNP\"\n    ], \n    \"hotel-casino\": [\n        \"NN\"\n    ], \n    \"Melies\": [\n        \"NNP\"\n    ], \n    \"Inscribed\": [\n        \"VBN\"\n    ], \n    \"pygmies\": [\n        \"NNS\"\n    ], \n    \"Kisha\": [\n        \"FW\"\n    ], \n    \"demilitarize\": [\n        \"VB\"\n    ], \n    \"Arbitrage-related\": [\n        \"JJ\"\n    ], \n    \"hard-sell\": [\n        \"JJ\"\n    ], \n    \"Saito\": [\n        \"NNP\"\n    ], \n    \"highboard\": [\n        \"NN\"\n    ], \n    \"cloisters\": [\n        \"NNS\"\n    ], \n    \"dimly-outlined\": [\n        \"JJ\"\n    ], \n    \"inoculation\": [\n        \"NN\"\n    ], \n    \"muscle-bound\": [\n        \"JJ\"\n    ], \n    \"Gienow\": [\n        \"NNP\"\n    ], \n    \"Layout\": [\n        \"NN\"\n    ], \n    \"Space\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nucor\": [\n        \"NNP\"\n    ], \n    \"shoulders\": [\n        \"NNS\"\n    ], \n    \"Detergent\": [\n        \"NN\"\n    ], \n    \"lichen\": [\n        \"NN\"\n    ], \n    \"smokescreen\": [\n        \"NN\"\n    ], \n    \"McKenzie\": [\n        \"NNP\"\n    ], \n    \"encompass\": [\n        \"VB\"\n    ], \n    \"bishop\": [\n        \"NN\"\n    ], \n    \"pre-season\": [\n        \"JJ\"\n    ], \n    \"heather\": [\n        \"NN\"\n    ], \n    \"discerned\": [\n        \"VBN\"\n    ], \n    \"Hirey\": [\n        \"NNP\"\n    ], \n    \"Sumo\": [\n        \"NN\"\n    ], \n    \"puttable\": [\n        \"JJ\"\n    ], \n    \"narrowing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hired\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"radio-TV\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"heathen\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"SGC\": [\n        \"NNP\"\n    ], \n    \"analystics\": [\n        \"NNS\"\n    ], \n    \"Johnstown\": [\n        \"NNP\"\n    ], \n    \"Farnum\": [\n        \"NNP\"\n    ], \n    \"McCormick\": [\n        \"NNP\"\n    ], \n    \"collaborative\": [\n        \"JJ\"\n    ], \n    \"Wellington\": [\n        \"NNP\"\n    ], \n    \"concoctions\": [\n        \"NNS\"\n    ], \n    \"Zoete\": [\n        \"NNP\"\n    ], \n    \"Deafening\": [\n        \"VBG\"\n    ], \n    \"Perier\": [\n        \"NNP\"\n    ], \n    \"accruals\": [\n        \"NNS\"\n    ], \n    \"unanswerable\": [\n        \"JJ\"\n    ], \n    \"inflation-growth\": [\n        \"NN\"\n    ], \n    \"Marilee\": [\n        \"NNP\"\n    ], \n    \"slowball\": [\n        \"NN\"\n    ], \n    \"conceptualizing\": [\n        \"VBG\"\n    ], \n    \"Brewer\": [\n        \"NNP\"\n    ], \n    \"Runner\": [\n        \"NNP\"\n    ], \n    \"quavering\": [\n        \"VBG\"\n    ], \n    \"internalized\": [\n        \"VBN\"\n    ], \n    \"lamentations\": [\n        \"NNS\"\n    ], \n    \"sudsing\": [\n        \"NN\"\n    ], \n    \"hitless\": [\n        \"JJ\"\n    ], \n    \"tanned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"AMUSEMENT\": [\n        \"JJ\"\n    ], \n    \"Breen\": [\n        \"NNP\"\n    ], \n    \"all\": [\n        \"DT\", \n        \"RB|DT\", \n        \"DT|RB\", \n        \"RB\", \n        \"PDT\"\n    ], \n    \"quizzical\": [\n        \"JJ\"\n    ], \n    \"self-pacification\": [\n        \"NN\"\n    ], \n    \"ZZZZ\": [\n        \"NNP\"\n    ], \n    \"Delphi\": [\n        \"NNP\"\n    ], \n    \"ale\": [\n        \"NN\"\n    ], \n    \"Frederick\": [\n        \"NNP\"\n    ], \n    \"swerving\": [\n        \"VBG\"\n    ], \n    \"Ayatollah\": [\n        \"NNP\"\n    ], \n    \"systemic\": [\n        \"JJ\"\n    ], \n    \"Messrs\": [\n        \"NNPS\"\n    ], \n    \"deportees\": [\n        \"NNS\"\n    ], \n    \"hmmm\": [\n        \"UH\"\n    ], \n    \"wanton\": [\n        \"JJ\"\n    ], \n    \"kick-offs\": [\n        \"NNS\"\n    ], \n    \"all-natural\": [\n        \"JJ\"\n    ], \n    \"now-historic\": [\n        \"JJ\"\n    ], \n    \"Strut\": [\n        \"VB\"\n    ], \n    \"High-ranking\": [\n        \"JJ\"\n    ], \n    \"commander\": [\n        \"NN\"\n    ], \n    \"Strum\": [\n        \"NNP\"\n    ], \n    \"Strub\": [\n        \"NNP\"\n    ], \n    \"problem-the\": [\n        \"JJ\"\n    ], \n    \"al.\": [\n        \"NNS\"\n    ], \n    \"Beachfront\": [\n        \"NNP\"\n    ], \n    \"Dior\": [\n        \"NNP\"\n    ], \n    \"CHICAGO\": [\n        \"NNP\"\n    ], \n    \"namedropper\": [\n        \"NN\"\n    ], \n    \"sundials\": [\n        \"NNS\"\n    ], \n    \"facetious\": [\n        \"JJ\"\n    ], \n    \"chicly\": [\n        \"RB\"\n    ], \n    \"oxides\": [\n        \"NNS\"\n    ], \n    \"Fowler\": [\n        \"NNP\"\n    ], \n    \"awful\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"quadriceps\": [\n        \"NNS\"\n    ], \n    \"sentimental\": [\n        \"JJ\"\n    ], \n    \"Nursing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"proscribed\": [\n        \"VBN\"\n    ], \n    \"Vail\": [\n        \"NNP\"\n    ], \n    \"proscribes\": [\n        \"VBZ\"\n    ], \n    \"walkouts\": [\n        \"NNS\"\n    ], \n    \"Ushuaia\": [\n        \"NNP\"\n    ], \n    \"Wellesley\": [\n        \"NNP\"\n    ], \n    \"underperformers\": [\n        \"NNS\"\n    ], \n    \"immanent\": [\n        \"JJ\"\n    ], \n    \"Durant\": [\n        \"NNP\"\n    ], \n    \"collar-to-collar\": [\n        \"JJ\"\n    ], \n    \"Pharma\": [\n        \"NNP\"\n    ], \n    \"gleened\": [\n        \"VBN\"\n    ], \n    \"monodisperse\": [\n        \"JJ\"\n    ], \n    \"reins\": [\n        \"NNS\"\n    ], \n    \"Ewen\": [\n        \"NNP\"\n    ], \n    \"BDDP\": [\n        \"NNP\"\n    ], \n    \"Interest\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"pound-of-flesh\": [\n        \"JJ\"\n    ], \n    \"Circle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Oppen\": [\n        \"NNP\"\n    ], \n    \"Trans-Pecos\": [\n        \"NNP\"\n    ], \n    \"displaying\": [\n        \"VBG\"\n    ], \n    \"crust\": [\n        \"NN\"\n    ], \n    \"Frustrate\": [\n        \"VBP\"\n    ], \n    \"crush\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"faltered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Absent-minded\": [\n        \"JJ\"\n    ], \n    \"more-than-terrible\": [\n        \"JJ\"\n    ], \n    \"Iranians\": [\n        \"NNPS\"\n    ], \n    \"Brauchli\": [\n        \"NNP\"\n    ], \n    \"multitude\": [\n        \"NN\"\n    ], \n    \"condensed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"tags\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Exaggerated\": [\n        \"VBN\"\n    ], \n    \"unwaveringly\": [\n        \"RB\"\n    ], \n    \"unprofessional\": [\n        \"JJ\"\n    ], \n    \"raked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"behaviour\": [\n        \"NN\"\n    ], \n    \"condenser\": [\n        \"NN\"\n    ], \n    \"CoAdvil\": [\n        \"NNP\"\n    ], \n    \"Two-Year\": [\n        \"JJ\"\n    ], \n    \"nerd-and-geek\": [\n        \"JJ\"\n    ], \n    \"under-35\": [\n        \"JJ\"\n    ], \n    \"piquant\": [\n        \"JJ\"\n    ], \n    \"outposts\": [\n        \"NNS\"\n    ], \n    \"gamesmen\": [\n        \"NNS\"\n    ], \n    \"Toy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"store-sales\": [\n        \"NN\"\n    ], \n    \"Top\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Italian-cut\": [\n        \"JJ\"\n    ], \n    \"bathers\": [\n        \"NNS\"\n    ], \n    \"Tok\": [\n        \"NNP\"\n    ], \n    \"Toi\": [\n        \"NNP\"\n    ], \n    \"Too\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"ocelot\": [\n        \"NN\"\n    ], \n    \"Lahan\": [\n        \"NNP\"\n    ], \n    \"Toa\": [\n        \"NNP\"\n    ], \n    \"senders\": [\n        \"NNS\"\n    ], \n    \"Toe\": [\n        \"NNP\"\n    ], \n    \"obscurely\": [\n        \"RB\"\n    ], \n    \"Lived\": [\n        \"VBD\"\n    ], \n    \"jurors\": [\n        \"NNS\"\n    ], \n    \"Shiftan\": [\n        \"NNP\"\n    ], \n    \"denominated\": [\n        \"VBN\"\n    ], \n    \"Overall\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Lives\": [\n        \"NNS\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"toughs\": [\n        \"NNS\"\n    ], \n    \"markets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"minor\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"front-running\": [\n        \"JJ\"\n    ], \n    \"Late-night\": [\n        \"JJ\"\n    ], \n    \"which...\": [\n        \":\"\n    ], \n    \"spacers\": [\n        \"NNS\"\n    ], \n    \"lopsidedly\": [\n        \"RB\"\n    ], \n    \"pinheaded\": [\n        \"JJ\"\n    ], \n    \"Wyatt\": [\n        \"NNP\"\n    ], \n    \"basically\": [\n        \"RB\"\n    ], \n    \"lapels\": [\n        \"NNS\"\n    ], \n    \"nitpicking\": [\n        \"JJ\"\n    ], \n    \"Silbermann\": [\n        \"NNP\"\n    ], \n    \"chaplain\": [\n        \"NN\"\n    ], \n    \"confessionals\": [\n        \"NNS\"\n    ], \n    \"Holewinski\": [\n        \"NNP\"\n    ], \n    \"stationmaster\": [\n        \"NN\"\n    ], \n    \"Particularly\": [\n        \"RB\"\n    ], \n    \"Figurines\": [\n        \"NNS\"\n    ], \n    \"wizards\": [\n        \"NNS\"\n    ], \n    \"Vasilenko\": [\n        \"NNP\"\n    ], \n    \"Kiran\": [\n        \"NNP\"\n    ], \n    \"unfairness\": [\n        \"NN\"\n    ], \n    \"McNerney\": [\n        \"NNP\"\n    ], \n    \"souped-up\": [\n        \"JJ\"\n    ], \n    \"Phantom\": [\n        \"NNP\"\n    ], \n    \"everyone\": [\n        \"NN\"\n    ], \n    \"spenders\": [\n        \"NNS\"\n    ], \n    \"box-sized\": [\n        \"JJ\"\n    ], \n    \"Grahamstown\": [\n        \"NNP\"\n    ], \n    \"Tie-vole-ee\": [\n        \"NN\"\n    ], \n    \"Nora\": [\n        \"NNP\"\n    ], \n    \"methyl\": [\n        \"NN\"\n    ], \n    \"Savona\": [\n        \"NNP\"\n    ], \n    \"Nord\": [\n        \"NNP\"\n    ], \n    \"Nori\": [\n        \"NNP\"\n    ], \n    \"mother-of-pearl\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"meandered\": [\n        \"VBD\"\n    ], \n    \"influenced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"court\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"goal\": [\n        \"NN\"\n    ], \n    \"half-year\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rockhall\": [\n        \"NNP\"\n    ], \n    \"gin-and-tonics\": [\n        \"NNS\"\n    ], \n    \"quadrillionth\": [\n        \"NN\"\n    ], \n    \"Detachment\": [\n        \"NNP\"\n    ], \n    \"Amira\": [\n        \"NNP\"\n    ], \n    \"influences\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"non-Korean\": [\n        \"JJ\"\n    ], \n    \"bawdy\": [\n        \"JJ\"\n    ], \n    \"goat\": [\n        \"NN\"\n    ], \n    \"Structural\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"algebra\": [\n        \"NN\"\n    ], \n    \"Gallium\": [\n        \"NN\"\n    ], \n    \"pricecutting\": [\n        \"NN\"\n    ], \n    \"superpremiums\": [\n        \"NNS\"\n    ], \n    \"unsurprising\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"softball\": [\n        \"NN\"\n    ], \n    \"mountings\": [\n        \"NNS\"\n    ], \n    \"Debonnie\": [\n        \"NNP\"\n    ], \n    \"profited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"rationalize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"prefers\": [\n        \"VBZ\"\n    ], \n    \"interpolations\": [\n        \"NNS\"\n    ], \n    \"stash\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"surfeit\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Pension-fund\": [\n        \"NN\"\n    ], \n    \"assailant\": [\n        \"NN\"\n    ], \n    \"Nasdaq\\\\/National\": [\n        \"NNP\"\n    ], \n    \"shade\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"coals-to-Newcastle\": [\n        \"JJ\"\n    ], \n    \"Kakadu\": [\n        \"NN\"\n    ], \n    \"turnover\": [\n        \"NN\"\n    ], \n    \"Nikka\": [\n        \"NNP\"\n    ], \n    \"tip-off\": [\n        \"NN\"\n    ], \n    \"outrages\": [\n        \"NNS\"\n    ], \n    \"Vescos\": [\n        \"NNPS\"\n    ], \n    \"essence\": [\n        \"NN\"\n    ], \n    \"pay-TV\": [\n        \"NN\"\n    ], \n    \"then-moribund\": [\n        \"JJ\"\n    ], \n    \"sponging\": [\n        \"NN\"\n    ], \n    \"outraged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"market-makers\": [\n        \"NNS\"\n    ], \n    \"reconnect\": [\n        \"VB\"\n    ], \n    \"operations...\": [\n        \":\"\n    ], \n    \"inquiries\": [\n        \"NNS\"\n    ], \n    \"disagreed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"style\": [\n        \"NN\"\n    ], \n    \"Hash\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tax-freedom\": [\n        \"NN\"\n    ], \n    \"yet-another\": [\n        \"JJ\"\n    ], \n    \"pray\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Stefan\": [\n        \"NNP\"\n    ], \n    \"SAAMI\": [\n        \"NNP\"\n    ], \n    \"Code-Alarm\": [\n        \"NNP\"\n    ], \n    \"disagrees\": [\n        \"VBZ\"\n    ], \n    \"scop\": [\n        \"NN\"\n    ], \n    \"prai\": [\n        \"VBP\"\n    ], \n    \"speaker\": [\n        \"NN\"\n    ], \n    \"Estimate\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"flexural\": [\n        \"JJ\"\n    ], \n    \"pram\": [\n        \"NN\"\n    ], \n    \"dwarfism\": [\n        \"NN\"\n    ], \n    \"W.O.\": [\n        \"NNP\"\n    ], \n    \"thoroughbred\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mimetic\": [\n        \"JJ\"\n    ], \n    \"sucking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Enfield\": [\n        \"NNP\"\n    ], \n    \"Goodwill\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"eulogy\": [\n        \"NN\"\n    ], \n    \"t-tau\": [\n        \"NN\"\n    ], \n    \"Firzite\": [\n        \"NN\"\n    ], \n    \"imitators\": [\n        \"NNS\"\n    ], \n    \"Asean\": [\n        \"JJ\"\n    ], \n    \"but-bulls\": [\n        \"IN\"\n    ], \n    \"frigate\": [\n        \"NN\"\n    ], \n    \"pint-sized\": [\n        \"JJ\"\n    ], \n    \"wafting\": [\n        \"VBG\"\n    ], \n    \"stroked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"friendship\": [\n        \"NN\"\n    ], \n    \"sedimentary\": [\n        \"JJ\"\n    ], \n    \"Lambeth\": [\n        \"NNP\"\n    ], \n    \"Mory\": [\n        \"NNP\"\n    ], \n    \"electrogalvanizing\": [\n        \"VBG\"\n    ], \n    \"inflates\": [\n        \"VBZ\"\n    ], \n    \"buffetted\": [\n        \"VBN\"\n    ], \n    \"Untch\": [\n        \"NNP\"\n    ], \n    \"Platform\": [\n        \"NN\"\n    ], \n    \"Mori\": [\n        \"NNP\"\n    ], \n    \"expect\": [\n        \"VBP\", \n        \"VB\", \n        \"IN\"\n    ], \n    \"Mischa\": [\n        \"NNP\"\n    ], \n    \"inflated\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"More\": [\n        \"RBR\", \n        \"JJ\", \n        \"NN\", \n        \"JJR\", \n        \"JJS\", \n        \"RBR|JJR\", \n        \"NNP\"\n    ], \n    \"reverent\": [\n        \"JJ\"\n    ], \n    \"gangland\": [\n        \"NN\"\n    ], \n    \"wondered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"poachers\": [\n        \"NNS\"\n    ], \n    \"convicting\": [\n        \"VBG\"\n    ], \n    \"clandestine\": [\n        \"JJ\"\n    ], \n    \"impeccably\": [\n        \"RB\"\n    ], \n    \"induces\": [\n        \"VBZ\"\n    ], \n    \"shipment\": [\n        \"NN\"\n    ], \n    \"diaphragms\": [\n        \"NNS\"\n    ], \n    \"induced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"remodeling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Gurus\": [\n        \"NNS\"\n    ], \n    \"passenger-restraint\": [\n        \"NN\"\n    ], \n    \"Cosmo\": [\n        \"NNP\"\n    ], \n    \"Schraffts\": [\n        \"NNP\"\n    ], \n    \"powwow\": [\n        \"NN\"\n    ], \n    \"warm-up\": [\n        \"NN\"\n    ], \n    \"Kingdom-based\": [\n        \"JJ\"\n    ], \n    \"loused\": [\n        \"VBD\"\n    ], \n    \"bushes\": [\n        \"NNS\"\n    ], \n    \"Olechowski\": [\n        \"NNP\"\n    ], \n    \"e.g\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Igbo\": [\n        \"NNP\"\n    ], \n    \"progressives\": [\n        \"NNS\"\n    ], \n    \"bushel\": [\n        \"NN\"\n    ], \n    \"feed\": [\n        \"NN\", \n        \"VB\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"Huge\": [\n        \"JJ\"\n    ], \n    \"hydrides\": [\n        \"NNS\"\n    ], \n    \"feel\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Hugo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hugh\": [\n        \"NNP\"\n    ], \n    \"aseptic\": [\n        \"JJ\"\n    ], \n    \"feet\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"sympathy\": [\n        \"NN\"\n    ], \n    \"cardmember\": [\n        \"NN\"\n    ], \n    \"Buzzell\": [\n        \"NNP\"\n    ], \n    \"densitometry\": [\n        \"NN\"\n    ], \n    \"Rat-face\": [\n        \"NN\"\n    ], \n    \"Autobiographies\": [\n        \"NNS\"\n    ], \n    \"soaps\": [\n        \"NNS\"\n    ], \n    \"impeccable\": [\n        \"JJ\"\n    ], \n    \"Eating\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"majority-owned\": [\n        \"JJ\"\n    ], \n    \"Models\": [\n        \"NNS\"\n    ], \n    \"grime\": [\n        \"NN\"\n    ], \n    \"astuteness\": [\n        \"NN\"\n    ], \n    \"brisker\": [\n        \"JJR\"\n    ], \n    \"hangs\": [\n        \"VBZ\"\n    ], \n    \"Cytel\": [\n        \"NNP\"\n    ], \n    \"Iard\": [\n        \"NNP\"\n    ], \n    \"grimy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gulch\": [\n        \"NNP\"\n    ], \n    \"kilobytes\": [\n        \"NNS\"\n    ], \n    \"recovered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"oversupply\": [\n        \"NN\"\n    ], \n    \"pipelines\": [\n        \"NNS\"\n    ], \n    \"Vineland\": [\n        \"NNP\"\n    ], \n    \"hotel\": [\n        \"NN\"\n    ], \n    \"property\\\\\": [\n        \"JJ\"\n    ], \n    \"Volokh\": [\n        \"NNP\"\n    ], \n    \"Mail-order\": [\n        \"NN\"\n    ], \n    \"optical\": [\n        \"JJ\"\n    ], \n    \"Suisse-First\": [\n        \"NNP\"\n    ], \n    \"megalomania\": [\n        \"NN\"\n    ], \n    \"Nevsky\": [\n        \"NNP\"\n    ], \n    \"second-biggest\": [\n        \"JJ\"\n    ], \n    \"KOREAN\": [\n        \"JJ\"\n    ], \n    \"lavishing\": [\n        \"VBG\"\n    ], \n    \"rate-sensitive\": [\n        \"JJ\"\n    ], \n    \"Korff\": [\n        \"NNP\"\n    ], \n    \"aims\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"ATMs\": [\n        \"NNS\"\n    ], \n    \"outrageous\": [\n        \"JJ\"\n    ], \n    \"Kromy\": [\n        \"NNP\"\n    ], \n    \"chousin\": [\n        \"VBG\"\n    ], \n    \"journalistic\": [\n        \"JJ\"\n    ], \n    \"risks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"insulted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"inventiveness\": [\n        \"NN\"\n    ], \n    \"midmorning\": [\n        \"NN\"\n    ], \n    \"risky\": [\n        \"JJ\"\n    ], \n    \"Gilded\": [\n        \"NNP\"\n    ], \n    \"dropoffs\": [\n        \"NNS\"\n    ], \n    \"suspicious\": [\n        \"JJ\"\n    ], \n    \"hour-long\": [\n        \"JJ\"\n    ], \n    \"Jane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cognizant\": [\n        \"JJ\"\n    ], \n    \"Gilder\": [\n        \"NNP\"\n    ], \n    \"Becton\": [\n        \"NNP\"\n    ], \n    \"rife\": [\n        \"JJ\"\n    ], \n    \"down-and-outers\": [\n        \"NNS\"\n    ], \n    \"nights\": [\n        \"NNS\"\n    ], \n    \"Bellarosa\": [\n        \"NNP\"\n    ], \n    \"imitations\": [\n        \"NNS\"\n    ], \n    \"DRUG\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Chimerine\": [\n        \"NNP\"\n    ], \n    \"still-new\": [\n        \"JJ\"\n    ], \n    \"riff\": [\n        \"NN\"\n    ], \n    \"UCC\": [\n        \"NNP\"\n    ], \n    \"Seeks\": [\n        \"VBZ\"\n    ], \n    \"Chodorow\": [\n        \"NNP\"\n    ], \n    \"semi-abstractions\": [\n        \"NNS\"\n    ], \n    \"contractual\": [\n        \"JJ\"\n    ], \n    \"free-wheeling\": [\n        \"JJ\"\n    ], \n    \"Perimeter\": [\n        \"NNP\"\n    ], \n    \"coterie\": [\n        \"NN\"\n    ], \n    \"intervened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Miami-Madrid\": [\n        \"NNP\"\n    ], \n    \"Orbis\": [\n        \"NNP\"\n    ], \n    \"seances\": [\n        \"NNS\"\n    ], \n    \"eruption\": [\n        \"NN\"\n    ], \n    \"Waldorf\": [\n        \"NNP\"\n    ], \n    \"cigarette\": [\n        \"NN\"\n    ], \n    \"steady-state\": [\n        \"JJ\"\n    ], \n    \"choral\": [\n        \"JJ\"\n    ], \n    \"thermostat\": [\n        \"NN\"\n    ], \n    \"boycotting\": [\n        \"VBG\"\n    ], \n    \"prestige\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"transcending\": [\n        \"VBG\"\n    ], \n    \"Finds\": [\n        \"VBZ\"\n    ], \n    \"intervenes\": [\n        \"VBZ\"\n    ], \n    \"Mehl\": [\n        \"NNP\"\n    ], \n    \"Augustine\": [\n        \"NNP\"\n    ], \n    \"Yaobang\": [\n        \"NNP\"\n    ], \n    \"reinvigoration\": [\n        \"NN\"\n    ], \n    \"Yoshihisa\": [\n        \"NNP\"\n    ], \n    \"Houston-Dallas\": [\n        \"JJ\"\n    ], \n    \"Boga\": [\n        \"NNP\"\n    ], \n    \"Quebequois\": [\n        \"NNP\"\n    ], \n    \"Kimmell\": [\n        \"NNP\"\n    ], \n    \"left-of-center\": [\n        \"JJ\"\n    ], \n    \"notch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Euripides\": [\n        \"NNP\"\n    ], \n    \"journeys\": [\n        \"NNS\"\n    ], \n    \"Cerebral\": [\n        \"NNP\"\n    ], \n    \"wildcatter\": [\n        \"NN\"\n    ], \n    \"Rothko\": [\n        \"NNP\"\n    ], \n    \"share-holders\": [\n        \"NNS\"\n    ], \n    \"Oil-field\": [\n        \"NN\"\n    ], \n    \"capital-coverage\": [\n        \"NN\"\n    ], \n    \"Skinny\": [\n        \"NNP\"\n    ], \n    \"Entrekin\": [\n        \"NNP\"\n    ], \n    \"relive\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"stubble\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Amateur\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"unrealistic\": [\n        \"JJ\"\n    ], \n    \"discord\": [\n        \"NN\"\n    ], \n    \"grotesque\": [\n        \"JJ\"\n    ], \n    \"GENERAL\": [\n        \"NNP\"\n    ], \n    \"rubles\": [\n        \"NNS\"\n    ], \n    \"Wilfred\": [\n        \"NNP\", \n        \"VBD\"\n    ], \n    \"unsuited\": [\n        \"VBN\"\n    ], \n    \"QFC\": [\n        \"NNP\"\n    ], \n    \"Pyne\": [\n        \"NNP\"\n    ], \n    \"Liberia\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"land-rich\": [\n        \"JJ\"\n    ], \n    \"publicity\": [\n        \"NN\"\n    ], \n    \"spurious\": [\n        \"JJ\"\n    ], \n    \"TIP\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Funded\": [\n        \"VBN\"\n    ], \n    \"fastest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"steam-baths\": [\n        \"NNS\"\n    ], \n    \"non-voting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Aldus\": [\n        \"NNP\"\n    ], \n    \"compiles\": [\n        \"VBZ\"\n    ], \n    \"compiler\": [\n        \"NN\"\n    ], \n    \"Protests\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"continuum\": [\n        \"NN\"\n    ], \n    \"fruit-juice\": [\n        \"NN\"\n    ], \n    \"Sleight\": [\n        \"NNP\"\n    ], \n    \"timeless\": [\n        \"JJ\"\n    ], \n    \"Restudy\": [\n        \"VB\"\n    ], \n    \"all-federal\": [\n        \"JJ\"\n    ], \n    \"submariners\": [\n        \"NNS\"\n    ], \n    \"wheeling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"retaliated\": [\n        \"VBD\"\n    ], \n    \"repulsed\": [\n        \"VBN\"\n    ], \n    \"oxcart\": [\n        \"NN\"\n    ], \n    \"Machiguengas\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Sorge\": [\n        \"NNP\"\n    ], \n    \"declines\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Summaryof\": [\n        \"NNP\"\n    ], \n    \"Nomi\": [\n        \"NNP\"\n    ], \n    \"Nomo\": [\n        \"NNP\"\n    ], \n    \"spill-cleanup\": [\n        \"NN\"\n    ], \n    \"kylix\": [\n        \"NN\"\n    ], \n    \"Eisenstat\": [\n        \"NNP\"\n    ], \n    \"declined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"annihilation\": [\n        \"NN\"\n    ], \n    \"parchment\": [\n        \"NN\"\n    ], \n    \"Pamplin\": [\n        \"NNP\"\n    ], \n    \"Jurgen\": [\n        \"NNP\"\n    ], \n    \"COASTAL\": [\n        \"NNP\"\n    ], \n    \"FundTrust\": [\n        \"NNP\"\n    ], \n    \"numerous\": [\n        \"JJ\"\n    ], \n    \"hairs\": [\n        \"NNS\"\n    ], \n    \"ethanol-based\": [\n        \"JJ\"\n    ], \n    \"Cavarretta\": [\n        \"NNP\"\n    ], \n    \"leavings\": [\n        \"NNS\"\n    ], \n    \"desegregated\": [\n        \"VBN\"\n    ], \n    \"B-52H\": [\n        \"NN\"\n    ], \n    \"prolusion\": [\n        \"NN\"\n    ], \n    \"Dabbling\": [\n        \"VBG\"\n    ], \n    \"outfit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"counter-productive\": [\n        \"JJ\"\n    ], \n    \"small-denomination\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Highfield\": [\n        \"NNP\"\n    ], \n    \"radiopharmaceutical\": [\n        \"JJ\"\n    ], \n    \"prelude\": [\n        \"NN\"\n    ], \n    \"Touchstone\": [\n        \"NNP\"\n    ], \n    \"Kazuhiko\": [\n        \"NNP\"\n    ], \n    \"Werter\": [\n        \"NNP\"\n    ], \n    \"prescription\": [\n        \"NN\"\n    ], \n    \"hesitant\": [\n        \"JJ\"\n    ], \n    \"hermetic\": [\n        \"JJ\"\n    ], \n    \"Amando\": [\n        \"NNP\"\n    ], \n    \"Collectively\": [\n        \"RB\"\n    ], \n    \"Sununu\": [\n        \"NNP\"\n    ], \n    \"re-investment\": [\n        \"NN\"\n    ], \n    \"Farmboy\": [\n        \"NNP\"\n    ], \n    \"muskadell\": [\n        \"NN\"\n    ], \n    \"Cannavino\": [\n        \"NNP\"\n    ], \n    \"cynic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Moloch\": [\n        \"NNP\"\n    ], \n    \"gussied\": [\n        \"VBN\"\n    ], \n    \"knee-deep\": [\n        \"JJ\"\n    ], \n    \"S-Cargo\": [\n        \"NNP\"\n    ], \n    \"Conservancy\": [\n        \"NNP\"\n    ], \n    \"marveling\": [\n        \"VBG\"\n    ], \n    \"Vietnam-veteran\": [\n        \"JJ\"\n    ], \n    \"crispy\": [\n        \"JJ\"\n    ], \n    \"hour-and-a-half\": [\n        \"NN\"\n    ], \n    \"java\": [\n        \"NN\"\n    ], \n    \"panky\": [\n        \"NN\"\n    ], \n    \"scented\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Hebraic\": [\n        \"JJ\"\n    ], \n    \"re-explore\": [\n        \"VB\"\n    ], \n    \"fifteen-minute\": [\n        \"JJ\"\n    ], \n    \"heterogamous\": [\n        \"JJ\"\n    ], \n    \"HOTELS\": [\n        \"NNPS\"\n    ], \n    \"Takeover\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"refrigeration\": [\n        \"NN\"\n    ], \n    \"ocean\": [\n        \"NN\"\n    ], \n    \"Travancore\": [\n        \"NNP\"\n    ], \n    \"skyward\": [\n        \"RB\"\n    ], \n    \"horticultural-products\": [\n        \"NNS\"\n    ], \n    \"Paul-Minneapolis\": [\n        \"NNP\"\n    ], \n    \"tangents\": [\n        \"NNS\"\n    ], \n    \"referee\": [\n        \"NN\"\n    ], \n    \"Ratajczak\": [\n        \"NNP\"\n    ], \n    \"kilograms\": [\n        \"NNS\"\n    ], \n    \"firefighters\": [\n        \"NNS\"\n    ], \n    \"transferring\": [\n        \"VBG\"\n    ], \n    \"R.I.-based\": [\n        \"JJ\"\n    ], \n    \"Academic\": [\n        \"NNP\"\n    ], \n    \"Tactical\": [\n        \"NNP\"\n    ], \n    \"well-mannered\": [\n        \"JJ\"\n    ], \n    \"budget-making\": [\n        \"JJ\"\n    ], \n    \"plants\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"feather-like\": [\n        \"JJ\"\n    ], \n    \"conception\": [\n        \"NN\"\n    ], \n    \"Estonian-language\": [\n        \"JJ\"\n    ], \n    \"stagewhispers\": [\n        \"VBZ\"\n    ], \n    \"Ganado\": [\n        \"NNP\"\n    ], \n    \"Winston\": [\n        \"NNP\"\n    ], \n    \"Sales\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Rudner\": [\n        \"NNP\"\n    ], \n    \"mythologies\": [\n        \"NNS\"\n    ], \n    \"Salem\": [\n        \"NNP\"\n    ], \n    \"barricade\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Saleh\": [\n        \"NNP\"\n    ], \n    \"evaluates\": [\n        \"VBZ\"\n    ], \n    \"Hokkaido\": [\n        \"NNP\"\n    ], \n    \"non-forthcoming\": [\n        \"JJ\"\n    ], \n    \"Italy\": [\n        \"NNP\"\n    ], \n    \"canvassed\": [\n        \"VBN\"\n    ], \n    \"Madaripur\": [\n        \"NNP\"\n    ], \n    \"gel\": [\n        \"NN\"\n    ], \n    \"Equity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"weirs\": [\n        \"NNS\"\n    ], \n    \"Italo\": [\n        \"NNP\"\n    ], \n    \"pavilions\": [\n        \"NNS\"\n    ], \n    \"distrusts\": [\n        \"VBZ\"\n    ], \n    \"Ruggiero\": [\n        \"NNP\"\n    ], \n    \"electriques\": [\n        \"FW\"\n    ], \n    \"examiners\": [\n        \"NNS\"\n    ], \n    \"Thrombinar\": [\n        \"NNP\"\n    ], \n    \"Dederick\": [\n        \"NNP\"\n    ], \n    \"us...\": [\n        \":\"\n    ], \n    \"more-level\": [\n        \"JJ\"\n    ], \n    \"stimulates\": [\n        \"VBZ\"\n    ], \n    \"Hemel\": [\n        \"NNP\"\n    ], \n    \"Penney\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"assuaged\": [\n        \"VBN\"\n    ], \n    \"CURBING\": [\n        \"VBG\"\n    ], \n    \"stimulated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rahman\": [\n        \"NNP\"\n    ], \n    \"tellers\": [\n        \"NNS\"\n    ], \n    \"drought-seared\": [\n        \"JJ\"\n    ], \n    \"Vermont\": [\n        \"NNP\"\n    ], \n    \"mid-century\": [\n        \"JJ\"\n    ], \n    \"bureau-sponsored\": [\n        \"JJ\"\n    ], \n    \"aflatoxin-free\": [\n        \"JJ\"\n    ], \n    \"fitness-promoting\": [\n        \"JJ\"\n    ], \n    \"holidays\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"doers\": [\n        \"NNS\"\n    ], \n    \"anhydrous\": [\n        \"JJ\"\n    ], \n    \"Ferranti-led\": [\n        \"JJ\"\n    ], \n    \"resuscitated\": [\n        \"VBN\"\n    ], \n    \"abnormality\": [\n        \"NN\"\n    ], \n    \"cheek\": [\n        \"NN\"\n    ], \n    \"cheer\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"vulnerabilities\": [\n        \"NNS\"\n    ], \n    \"stating\": [\n        \"VBG\"\n    ], \n    \"throwaway\": [\n        \"JJ\"\n    ], \n    \"lowers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"carport\": [\n        \"NN\"\n    ], \n    \"Anzilotti\": [\n        \"NNP\"\n    ], \n    \"scrupulous\": [\n        \"JJ\"\n    ], \n    \"canted\": [\n        \"JJ\"\n    ], \n    \"Long-haul\": [\n        \"JJ\"\n    ], \n    \"all-star\": [\n        \"JJ\"\n    ], \n    \"Ai-\": [\n        \"NNP\"\n    ], \n    \"exonerating\": [\n        \"VBG\"\n    ], \n    \"Orioles\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Territory\": [\n        \"NNP\"\n    ], \n    \"great-quality\": [\n        \"NN\"\n    ], \n    \"profitable\": [\n        \"JJ\"\n    ], \n    \"Overture\": [\n        \"NNP\"\n    ], \n    \"Knapek\": [\n        \"NNP\"\n    ], \n    \"observant\": [\n        \"JJ\"\n    ], \n    \"development...\": [\n        \":\"\n    ], \n    \"topsy-turvy\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"contractor\": [\n        \"NN\"\n    ], \n    \"governmental\": [\n        \"JJ\"\n    ], \n    \"Acadia\": [\n        \"NNP\"\n    ], \n    \"price\\\\/earnings\": [\n        \"NNS\"\n    ], \n    \"Palfrey\": [\n        \"NNP\"\n    ], \n    \"reinstate\": [\n        \"VB\"\n    ], \n    \"barbarisms\": [\n        \"NNS\"\n    ], \n    \"freefall\": [\n        \"NN\"\n    ], \n    \"complaint\": [\n        \"NN\"\n    ], \n    \"complains\": [\n        \"VBZ\"\n    ], \n    \"stews\": [\n        \"NNS\"\n    ], \n    \"Youths\": [\n        \"NNP\"\n    ], \n    \"deflators\": [\n        \"NNS\"\n    ], \n    \"teahouse\": [\n        \"NN\"\n    ], \n    \"recantation\": [\n        \"NN\"\n    ], \n    \"Anxious\": [\n        \"JJ\"\n    ], \n    \"Clemensen\": [\n        \"NNP\"\n    ], \n    \"Mityukh\": [\n        \"NNP\"\n    ], \n    \"entangled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Aid\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"morale\": [\n        \"NN\"\n    ], \n    \"rotate\": [\n        \"VB\"\n    ], \n    \"Life-preservers\": [\n        \"NNS\"\n    ], \n    \"polymers\": [\n        \"NNS\"\n    ], \n    \"sexton\": [\n        \"NN\"\n    ], \n    \"mini-vans\": [\n        \"NNS\"\n    ], \n    \"Upgrades\": [\n        \"NNS\"\n    ], \n    \"READY\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Centralizing\": [\n        \"VBG\"\n    ], \n    \"sprinklers\": [\n        \"NNS\"\n    ], \n    \"Gentile-Jewish\": [\n        \"NNP\"\n    ], \n    \"many-sided\": [\n        \"JJ\"\n    ], \n    \"stagnating\": [\n        \"VBG\"\n    ], \n    \"Northview\": [\n        \"NNP\"\n    ], \n    \"Cambodians\": [\n        \"NNPS\"\n    ], \n    \"soybean-meal\": [\n        \"NN\"\n    ], \n    \"Jannequin\": [\n        \"NNP\"\n    ], \n    \"wonderland\": [\n        \"NN\"\n    ], \n    \"Assonance\": [\n        \"NN\"\n    ], \n    \"HAPPY\": [\n        \"JJ\"\n    ], \n    \"Ainsley\": [\n        \"NNP\"\n    ], \n    \"braweling\": [\n        \"VBG\"\n    ], \n    \"eqns.\": [\n        \"NN\"\n    ], \n    \"double-wall\": [\n        \"JJ\"\n    ], \n    \"ill-mannered\": [\n        \"JJ\"\n    ], \n    \"seller\": [\n        \"NN\"\n    ], \n    \"adoptive\": [\n        \"JJ\"\n    ], \n    \"innovation\": [\n        \"NN\"\n    ], \n    \"Coopersmith\": [\n        \"NNP\"\n    ], \n    \"Fooled\": [\n        \"VBN\"\n    ], \n    \"Bahcall\": [\n        \"NNP\"\n    ], \n    \"Frenchman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"porridge\": [\n        \"NN\"\n    ], \n    \"under-reported\": [\n        \"JJ\"\n    ], \n    \"Victim\": [\n        \"NN\"\n    ], \n    \"telegrapher\": [\n        \"NN\"\n    ], \n    \"baited\": [\n        \"VBN\"\n    ], \n    \"Command\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"upraised\": [\n        \"VBN\"\n    ], \n    \"Tridex\": [\n        \"NNP\"\n    ], \n    \"telegraphed\": [\n        \"VBD\"\n    ], \n    \"Russia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Antori\": [\n        \"NNP\"\n    ], \n    \"ICAO\": [\n        \"NNP\"\n    ], \n    \"substances\": [\n        \"NNS\"\n    ], \n    \"undertow\": [\n        \"NN\"\n    ], \n    \"housekeeping\": [\n        \"NN\"\n    ], \n    \"wherefores\": [\n        \"NNS\"\n    ], \n    \"forbears\": [\n        \"NNS\"\n    ], \n    \"surfers\": [\n        \"NNS\"\n    ], \n    \"Motive\": [\n        \"NN\"\n    ], \n    \"Barbakow\": [\n        \"NNP\"\n    ], \n    \"Fishkill\": [\n        \"NNP\"\n    ], \n    \"zorrillas\": [\n        \"NNS\"\n    ], \n    \"asset-based\": [\n        \"JJ\"\n    ], \n    \"fantasia\": [\n        \"NN\"\n    ], \n    \"wanna\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gamma\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"conserving\": [\n        \"VBG\"\n    ], \n    \"blouses\": [\n        \"NNS\"\n    ], \n    \"eight-year-old\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Elmer\": [\n        \"NNP\"\n    ], \n    \"Ponce\": [\n        \"NNP\"\n    ], \n    \"drifter\": [\n        \"NN\"\n    ], \n    \"Stranahan\": [\n        \"NNP\"\n    ], \n    \"mergers-advisory\": [\n        \"JJ\"\n    ], \n    \"figs.\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"drifted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Scotch-and-soda\": [\n        \"NN\"\n    ], \n    \"gouge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Zubkovskaya\": [\n        \"NNP\"\n    ], \n    \"featureless\": [\n        \"JJ\"\n    ], \n    \"SPENDING\": [\n        \"NN\"\n    ], \n    \"slimmer-than-expected\": [\n        \"JJ\"\n    ], \n    \"ache\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"B-2s\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Anthony\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"back-pay\": [\n        \"NN\"\n    ], \n    \"wormwood\": [\n        \"NN\"\n    ], \n    \"analyze\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"idol-worship\": [\n        \"NN\"\n    ], \n    \"contrite\": [\n        \"JJ\"\n    ], \n    \"tutored\": [\n        \"VBN\"\n    ], \n    \"clots\": [\n        \"NNS\"\n    ], \n    \"glamour\": [\n        \"NN\"\n    ], \n    \"cloth\": [\n        \"NN\"\n    ], \n    \"LoSpam\": [\n        \"NNP\"\n    ], \n    \"enhancing\": [\n        \"VBG\"\n    ], \n    \"near-panic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"smaller-than-average\": [\n        \"JJ\"\n    ], \n    \"electric-transport\": [\n        \"NN\"\n    ], \n    \"outpost\": [\n        \"NN\"\n    ], \n    \"professorship\": [\n        \"NN\"\n    ], \n    \"Belk\": [\n        \"NNP\"\n    ], \n    \"patriot\": [\n        \"NN\"\n    ], \n    \"Belo\": [\n        \"NNP\"\n    ], \n    \"Aparicio\": [\n        \"NNP\"\n    ], \n    \"consist\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Bell\": [\n        \"NNP\"\n    ], \n    \"characteristic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bela\": [\n        \"NNP\"\n    ], \n    \"barring\": [\n        \"VBG\"\n    ], \n    \"full-blown\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Belz\": [\n        \"NNP\"\n    ], \n    \"shooed\": [\n        \"VBN\"\n    ], \n    \"highlight\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Aggressive\": [\n        \"NNP\"\n    ], \n    \"chapels\": [\n        \"NNS\"\n    ], \n    \"x-ray\": [\n        \"NN\"\n    ], \n    \"Belt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"editorially\": [\n        \"RB\"\n    ], \n    \"airdrops\": [\n        \"NNS\"\n    ], \n    \"sublet\": [\n        \"VB\", \n        \"VBN\"\n    ], \n    \"Luisa\": [\n        \"NNP\"\n    ], \n    \"Luise\": [\n        \"NNP\"\n    ], \n    \"graham\": [\n        \"NN\"\n    ], \n    \"thin-walled\": [\n        \"JJ\"\n    ], \n    \"Coolers\": [\n        \"NNS\"\n    ], \n    \"Commander-in-Chief\": [\n        \"NNP\"\n    ], \n    \"immunologist\": [\n        \"NN\"\n    ], \n    \"unjustifiably\": [\n        \"RB\"\n    ], \n    \"evils\": [\n        \"NNS\"\n    ], \n    \"Babcock\": [\n        \"NNP\"\n    ], \n    \"parlor\": [\n        \"NN\"\n    ], \n    \"Hangman\": [\n        \"NNP\"\n    ], \n    \"defrauding\": [\n        \"VBG\"\n    ], \n    \"shallower\": [\n        \"JJR\"\n    ], \n    \"unjustifiable\": [\n        \"JJ\"\n    ], \n    \"artistic\": [\n        \"JJ\"\n    ], \n    \"mustard\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Metro\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"proration\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"backbone\": [\n        \"NN\"\n    ], \n    \"problems\": [\n        \"NNS\"\n    ], \n    \"latecomer\": [\n        \"NN\"\n    ], \n    \"three-dice\": [\n        \"JJ\"\n    ], \n    \"helping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"insect\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"telexes\": [\n        \"NNS\"\n    ], \n    \"garbed\": [\n        \"VBN\"\n    ], \n    \"tear-jerking\": [\n        \"JJ\"\n    ], \n    \"rightful\": [\n        \"JJ\"\n    ], \n    \"Bankhead\": [\n        \"NNP\"\n    ], \n    \"Delius\": [\n        \"NNP\"\n    ], \n    \"sapping\": [\n        \"VBG\"\n    ], \n    \"forming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hiroshi\": [\n        \"NNP\"\n    ], \n    \"near-record\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Furze\": [\n        \"NNP\"\n    ], \n    \"Migrant\": [\n        \"NNP\"\n    ], \n    \"non-hydrogen-bonded\": [\n        \"JJ\"\n    ], \n    \"attaining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"narrative\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"six-point\": [\n        \"JJ\"\n    ], \n    \"intentional\": [\n        \"JJ\"\n    ], \n    \"Scowcroft\": [\n        \"NNP\"\n    ], \n    \"gabardine\": [\n        \"NN\"\n    ], \n    \"McAlester\": [\n        \"NNP\"\n    ], \n    \"wrestle\": [\n        \"VB\"\n    ], \n    \"uninspected\": [\n        \"JJ\"\n    ], \n    \"hooks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"anti-Castro\": [\n        \"JJ\"\n    ], \n    \"Veterinary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"U.B.U.\": [\n        \"NNP\"\n    ], \n    \"grinding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Symington\": [\n        \"NNP\"\n    ], \n    \"seaquake\": [\n        \"NN\"\n    ], \n    \"fancifully\": [\n        \"RB\"\n    ], \n    \"monomer\": [\n        \"NN\"\n    ], \n    \"unstapled\": [\n        \"JJ\"\n    ], \n    \"Rohrer\": [\n        \"NNP\"\n    ], \n    \"Geneticist\": [\n        \"NNP\"\n    ], \n    \"Agree\": [\n        \"VBP\"\n    ], \n    \"Norio\": [\n        \"NNP\"\n    ], \n    \"Belvedere\": [\n        \"NNP\"\n    ], \n    \"interpenetrates\": [\n        \"VBZ\"\n    ], \n    \"dramatically\": [\n        \"RB\"\n    ], \n    \"polyethers\": [\n        \"NNS\"\n    ], \n    \"midocean\": [\n        \"JJ\"\n    ], \n    \"surfactant\": [\n        \"NN\"\n    ], \n    \"Esber\": [\n        \"NNP\"\n    ], \n    \"bibles\": [\n        \"NNS\"\n    ], \n    \"ed.\": [\n        \"NN\"\n    ], \n    \"Calvin\": [\n        \"NNP\"\n    ], \n    \"Soviet-German\": [\n        \"NNP\"\n    ], \n    \"passenger-mile\": [\n        \"NN\"\n    ], \n    \"cover-up\": [\n        \"NN\"\n    ], \n    \"posture\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"bistros\": [\n        \"NNS\"\n    ], \n    \"still-secret\": [\n        \"JJ\"\n    ], \n    \"super-imposed\": [\n        \"VBN\"\n    ], \n    \"Halas\": [\n        \"NNP\"\n    ], \n    \"Baltensweiler\": [\n        \"NNP\"\n    ], \n    \"winter\": [\n        \"NN\"\n    ], \n    \"tenderness\": [\n        \"NN\"\n    ], \n    \"black-and-orange\": [\n        \"JJ\"\n    ], \n    \"Strand\": [\n        \"NNP\"\n    ], \n    \"nine-day\": [\n        \"JJ\"\n    ], \n    \"half-industrial\": [\n        \"JJ\"\n    ], \n    \"stratify\": [\n        \"VB\"\n    ], \n    \"Subcontractors\": [\n        \"NNS\"\n    ], \n    \"DTH\": [\n        \"NNP\"\n    ], \n    \"Brien\": [\n        \"NNP\"\n    ], \n    \"flashlights\": [\n        \"NNS\"\n    ], \n    \"Maggart\": [\n        \"NNP\"\n    ], \n    \"datelined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Brief\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ellmann\": [\n        \"NNP\"\n    ], \n    \"power-train\": [\n        \"NN\"\n    ], \n    \"abominable\": [\n        \"JJ\"\n    ], \n    \"Panic\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"superceded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ex-bandits\": [\n        \"NNS\"\n    ], \n    \"reaching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"somatostatin\": [\n        \"NN\"\n    ], \n    \"Cujo\": [\n        \"NNP\"\n    ], \n    \"concisely\": [\n        \"RB\"\n    ], \n    \"gubernatorial\": [\n        \"JJ\"\n    ], \n    \"Maryanne\": [\n        \"NNP\"\n    ], \n    \"toenails\": [\n        \"NNS\"\n    ], \n    \"Koreans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Highlands\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"categorically\": [\n        \"RB\"\n    ], \n    \"New-York\": [\n        \"NNP\"\n    ], \n    \"Obviously\": [\n        \"RB\"\n    ], \n    \"Mussolini-like\": [\n        \"JJ\"\n    ], \n    \"less-than-half-time\": [\n        \"JJ\"\n    ], \n    \"manufacturing-automation\": [\n        \"NN\"\n    ], \n    \"stair-well\": [\n        \"NN\"\n    ], \n    \"controversy-prone\": [\n        \"JJ\"\n    ], \n    \"post-graduate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"one-issue\": [\n        \"JJ\"\n    ], \n    \"Piloting\": [\n        \"VBG\"\n    ], \n    \"Cuddleback\": [\n        \"NNP\"\n    ], \n    \"Immoderate\": [\n        \"NNP\"\n    ], \n    \"communicational\": [\n        \"JJ\"\n    ], \n    \"unenviable\": [\n        \"JJ\"\n    ], \n    \"transfer-tax\": [\n        \"NN\"\n    ], \n    \"January-to-August\": [\n        \"NNP\"\n    ], \n    \"brachii\": [\n        \"NNS\"\n    ], \n    \"Danchin\": [\n        \"NNP\"\n    ], \n    \"Tanny\": [\n        \"NNP\"\n    ], \n    \"unconditional\": [\n        \"JJ\"\n    ], \n    \"definitively\": [\n        \"RB\"\n    ], \n    \"armpit\": [\n        \"NN\"\n    ], \n    \"disowned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"once-bustling\": [\n        \"JJ\"\n    ], \n    \"Binary\": [\n        \"JJ\"\n    ], \n    \"Tithing\": [\n        \"NN\"\n    ], \n    \"strategic-weapons\": [\n        \"JJ\"\n    ], \n    \"Operational\": [\n        \"JJ\"\n    ], \n    \"chartist\": [\n        \"NN\"\n    ], \n    \"dark-blue\": [\n        \"JJ\"\n    ], \n    \"columnists\": [\n        \"NNS\"\n    ], \n    \"Input\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Lebanese-controlled\": [\n        \"JJ\"\n    ], \n    \"galloped\": [\n        \"VBN\"\n    ], \n    \"lamming\": [\n        \"VBG\"\n    ], \n    \"long-delayed\": [\n        \"JJ\"\n    ], \n    \"devotional\": [\n        \"JJ\"\n    ], \n    \"garbled\": [\n        \"VBN\"\n    ], \n    \"uniramous\": [\n        \"JJ\"\n    ], \n    \"Oyajima\": [\n        \"NNP\"\n    ], \n    \"Career\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rarest\": [\n        \"JJS\"\n    ], \n    \"Chinese-British\": [\n        \"JJ\"\n    ], \n    \"steadfastly\": [\n        \"RB\"\n    ], \n    \"virulence\": [\n        \"NN\"\n    ], \n    \"recount\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"detects\": [\n        \"VBZ\"\n    ], \n    \"F.S.C.\": [\n        \"NNP\"\n    ], \n    \"ALL\": [\n        \"PDT\", \n        \"NNP\"\n    ], \n    \"Igaras\": [\n        \"NNP\"\n    ], \n    \"strategically\": [\n        \"RB\"\n    ], \n    \"dusted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"napkins\": [\n        \"NNS\"\n    ], \n    \"Onondaga\": [\n        \"NNP\"\n    ], \n    \"Rhone-Poulenc\": [\n        \"NNP\"\n    ], \n    \"Amboy\": [\n        \"NNP\"\n    ], \n    \"ALT\": [\n        \"NNP\"\n    ], \n    \"ALU\": [\n        \"NNP\"\n    ], \n    \"picture-images\": [\n        \"NNS\"\n    ], \n    \"bittersweet\": [\n        \"JJ\"\n    ], \n    \"STAGED\": [\n        \"VBD\"\n    ], \n    \"Parts\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Suspension\": [\n        \"NNP\"\n    ], \n    \"soil-nutrients\": [\n        \"NNS\"\n    ], \n    \"Party\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nightclub\": [\n        \"NN\"\n    ], \n    \"Shipments\": [\n        \"NNS\"\n    ], \n    \"sir\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"sip\": [\n        \"NN\"\n    ], \n    \"Flames\": [\n        \"NNPS\"\n    ], \n    \"sit\": [\n        \"VB\", \n        \"FW\", \n        \"VBP\"\n    ], \n    \"Ruxpin\": [\n        \"NNP\"\n    ], \n    \"invulnerability\": [\n        \"NN\"\n    ], \n    \"embarrassingly\": [\n        \"RB\"\n    ], \n    \"outclass\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Baby-dear\": [\n        \"NNP\"\n    ], \n    \"Edgerton\": [\n        \"NNP\"\n    ], \n    \"privatize\": [\n        \"VB\"\n    ], \n    \"ruffians\": [\n        \"NNS\"\n    ], \n    \"memoir\": [\n        \"NN\"\n    ], \n    \"Engraving\": [\n        \"NNP\"\n    ], \n    \"maternal\": [\n        \"JJ\"\n    ], \n    \"maladjustment\": [\n        \"NN\"\n    ], \n    \"immersed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"beer-tax\": [\n        \"JJ\"\n    ], \n    \"impulsive\": [\n        \"JJ\"\n    ], \n    \"Ghose\": [\n        \"NNP\"\n    ], \n    \"pseudo-scientific\": [\n        \"JJ\"\n    ], \n    \"herd-owner\": [\n        \"NN\"\n    ], \n    \"polarities\": [\n        \"NNS\"\n    ], \n    \"reassurances\": [\n        \"NNS\"\n    ], \n    \"trippin\": [\n        \"NN\"\n    ], \n    \"archtype\": [\n        \"NN\"\n    ], \n    \"Nashua\": [\n        \"NNP\"\n    ], \n    \"Rifkinesque\": [\n        \"JJ\"\n    ], \n    \"sanest\": [\n        \"JJS\"\n    ], \n    \"tactic\": [\n        \"NN\"\n    ], \n    \"CreditWatch\": [\n        \"NNP\"\n    ], \n    \"reauthorized\": [\n        \"VBN\"\n    ], \n    \"Wockenfuss\": [\n        \"NNP\"\n    ], \n    \"pulsed\": [\n        \"VBN\"\n    ], \n    \"demobilized\": [\n        \"VBN\"\n    ], \n    \"waif\": [\n        \"NN\"\n    ], \n    \"statutory\": [\n        \"JJ\"\n    ], \n    \"beguile\": [\n        \"VBP\"\n    ], \n    \"pistols\": [\n        \"NNS\"\n    ], \n    \"pulses\": [\n        \"NNS\"\n    ], \n    \"cross-market\": [\n        \"JJ\"\n    ], \n    \"hankered\": [\n        \"VBN\"\n    ], \n    \"lifeblood\": [\n        \"NN\"\n    ], \n    \"Boucherie\": [\n        \"NNP\"\n    ], \n    \"Vermeersch\": [\n        \"NNP\"\n    ], \n    \"frightening\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"McInnes\": [\n        \"NNP\"\n    ], \n    \"Liberian\": [\n        \"JJ\"\n    ], \n    \"clusters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"edging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fewer-than-expected\": [\n        \"JJ\"\n    ], \n    \"freeman\": [\n        \"NN\"\n    ], \n    \"Cay\": [\n        \"NNP\"\n    ], \n    \"pecans\": [\n        \"NNS\"\n    ], \n    \"gasses\": [\n        \"NNS\"\n    ], \n    \"gasser\": [\n        \"NN\"\n    ], \n    \"Cap\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Cav\": [\n        \"NNP\"\n    ], \n    \"invitations\": [\n        \"NNS\"\n    ], \n    \"Can\": [\n        \"MD\", \n        \"NNP\"\n    ], \n    \"Cam\": [\n        \"NNP\"\n    ], \n    \"Cal\": [\n        \"NNP\"\n    ], \n    \"Cab\": [\n        \"NNP\"\n    ], \n    \"Caa\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Murders\": [\n        \"NNS\"\n    ], \n    \"PRINCE\": [\n        \"NNP\"\n    ], \n    \"gassed\": [\n        \"VBN\"\n    ], \n    \"Devonshire\": [\n        \"NNP\"\n    ], \n    \"Puget\": [\n        \"NNP\"\n    ], \n    \"railbikes\": [\n        \"NNS\"\n    ], \n    \"Autry\": [\n        \"NNP\"\n    ], \n    \"marketization\": [\n        \"NN\"\n    ], \n    \"Restrict\": [\n        \"VB\"\n    ], \n    \"fuzz\": [\n        \"NN\"\n    ], \n    \"hook-up\": [\n        \"NN\"\n    ], \n    \"BankWatch\": [\n        \"NNP\"\n    ], \n    \"beveled\": [\n        \"VBN\"\n    ], \n    \"E.\": [\n        \"NNP\"\n    ], \n    \"thumb-sucking\": [\n        \"NN\"\n    ], \n    \"disregarding\": [\n        \"VBG\"\n    ], \n    \"beavered\": [\n        \"VBD\"\n    ], \n    \"McClintick\": [\n        \"NNP\"\n    ], \n    \"lilac\": [\n        \"JJ\"\n    ], \n    \"tepid\": [\n        \"JJ\"\n    ], \n    \"indulges\": [\n        \"VBZ\"\n    ], \n    \"unbelievable\": [\n        \"JJ\"\n    ], \n    \"misperceptions\": [\n        \"NNS\"\n    ], \n    \"lesser-known\": [\n        \"JJ\"\n    ], \n    \"Wendy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stewardesses\": [\n        \"NNS\"\n    ], \n    \"preying\": [\n        \"VBG\"\n    ], \n    \"indulged\": [\n        \"VBD\"\n    ], \n    \"Pressburger\": [\n        \"NNP\"\n    ], \n    \"tabulate\": [\n        \"VB\"\n    ], \n    \"frontier\": [\n        \"NN\"\n    ], \n    \"Claremont\": [\n        \"NNP\"\n    ], \n    \"unencumbered\": [\n        \"JJ\"\n    ], \n    \"dock-siders\": [\n        \"NNS\"\n    ], \n    \"party-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"exporting\": [\n        \"VBG\"\n    ], \n    \"Brewery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"preprivatization\": [\n        \"NN\"\n    ], \n    \"supports\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Sacrifices\": [\n        \"NNS\"\n    ], \n    \"Alva\": [\n        \"NNP\"\n    ], \n    \"pendant\": [\n        \"NN\"\n    ], \n    \"LaGrange\": [\n        \"NNP\"\n    ], \n    \"molecularly\": [\n        \"RB\"\n    ], \n    \"bondmarket\": [\n        \"NN\"\n    ], \n    \"MacAndrews\": [\n        \"NNP\"\n    ], \n    \"weaves\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"computer-system-design\": [\n        \"JJ\"\n    ], \n    \"cranberry-and-gray\": [\n        \"JJ\"\n    ], \n    \"latitudes\": [\n        \"NNS\"\n    ], \n    \"Charlton\": [\n        \"NNP\"\n    ], \n    \"Landscape\": [\n        \"NNP\"\n    ], \n    \"plainly\": [\n        \"RB\"\n    ], \n    \"anti-seizure\": [\n        \"JJ\"\n    ], \n    \"Phenothiazine\": [\n        \"NN\"\n    ], \n    \"flocked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"echo\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"engenders\": [\n        \"VBZ\"\n    ], \n    \"Accordingly\": [\n        \"RB\"\n    ], \n    \"lovering\": [\n        \"VBG\"\n    ], \n    \"Heyford\": [\n        \"NNP\"\n    ], \n    \"Saab\": [\n        \"NNP\"\n    ], \n    \"laughingly\": [\n        \"RB\"\n    ], \n    \"North\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"publication\": [\n        \"NN\"\n    ], \n    \"Norte\": [\n        \"NNP\"\n    ], \n    \"Rent-A-Lease\": [\n        \"NNP\"\n    ], \n    \"Bonaventure\": [\n        \"NNP\"\n    ], \n    \"Miriam\": [\n        \"NNP\"\n    ], \n    \"wood-paneled\": [\n        \"JJ\"\n    ], \n    \"Segur\": [\n        \"NNP\"\n    ], \n    \"fermions\": [\n        \"NNS\"\n    ], \n    \"canvassers\": [\n        \"NNS\"\n    ], \n    \"badness\": [\n        \"NN\"\n    ], \n    \"misinformed\": [\n        \"VBN\"\n    ], \n    \"Leumi\": [\n        \"NNP\"\n    ], \n    \"high-sudsing\": [\n        \"JJ\"\n    ], \n    \"Success\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Meredith\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Alderson\": [\n        \"NNP\"\n    ], \n    \"musings\": [\n        \"NNS\"\n    ], \n    \"docketed\": [\n        \"VBN\"\n    ], \n    \"Directions\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"reflecting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"overreaches\": [\n        \"VBZ\"\n    ], \n    \"BLUE\": [\n        \"JJ\"\n    ], \n    \"Sniffle\": [\n        \"NNP\"\n    ], \n    \"SELLING\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Deutsch\": [\n        \"NNP\"\n    ], \n    \"isolation\": [\n        \"NN\"\n    ], \n    \"proneness\": [\n        \"NN\"\n    ], \n    \"rarity\": [\n        \"NN\"\n    ], \n    \"Galan\": [\n        \"NNP\"\n    ], \n    \"Leery\": [\n        \"JJ\"\n    ], \n    \"NETWORK\": [\n        \"NN\"\n    ], \n    \"nonsurgical\": [\n        \"JJ\"\n    ], \n    \"blip\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"faux\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"Basho\": [\n        \"NNP\"\n    ], \n    \"academically\": [\n        \"RB\"\n    ], \n    \"cathouse\": [\n        \"NN\"\n    ], \n    \"Michelangelo\": [\n        \"NNP\"\n    ], \n    \"angle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"rearranged\": [\n        \"VBD\"\n    ], \n    \"Winnebago\": [\n        \"NNP\"\n    ], \n    \"rearranges\": [\n        \"VBZ\"\n    ], \n    \"madstones\": [\n        \"NNS\"\n    ], \n    \"woven-root\": [\n        \"JJ\"\n    ], \n    \"HEALTH\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Severna\": [\n        \"NNP\"\n    ], \n    \"pharmacist\": [\n        \"NN\"\n    ], \n    \"re-opening\": [\n        \"VBG\"\n    ], \n    \"Barrette\": [\n        \"JJ\"\n    ], \n    \"annnouncement\": [\n        \"NN\"\n    ], \n    \"emancipation\": [\n        \"NN\"\n    ], \n    \"tough-minded\": [\n        \"JJ\"\n    ], \n    \"alarmed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"nonprescription\": [\n        \"NN\"\n    ], \n    \"insidiously\": [\n        \"RB\"\n    ], \n    \"neighboring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Song\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"exhorting\": [\n        \"VBG\"\n    ], \n    \"IMEDE\": [\n        \"NNP\"\n    ], \n    \"Chabrol\": [\n        \"NNP\"\n    ], \n    \"two-line\": [\n        \"JJ\"\n    ], \n    \"flux\": [\n        \"NN\"\n    ], \n    \"Millers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Pryce\": [\n        \"NNP\"\n    ], \n    \"hypervelocity\": [\n        \"NN\"\n    ], \n    \"Venti\": [\n        \"NNP\"\n    ], \n    \"Vento\": [\n        \"NNP\"\n    ], \n    \"bulging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ANNUITY\": [\n        \"NNP\"\n    ], \n    \"stove\": [\n        \"NN\"\n    ], \n    \"wide-sweeping\": [\n        \"JJ\"\n    ], \n    \"Jyoti\": [\n        \"NNP\"\n    ], \n    \"Genevieve\": [\n        \"NNP\"\n    ], \n    \"TOPAZ\": [\n        \"NNP\"\n    ], \n    \"Lassila\": [\n        \"NNP\"\n    ], \n    \"Riiiing\": [\n        \"UH\"\n    ], \n    \"Blueger\": [\n        \"NNP\"\n    ], \n    \"neurotoxic\": [\n        \"JJ\"\n    ], \n    \"darkest\": [\n        \"JJS\"\n    ], \n    \"U.S.S.R\": [\n        \"NNP\", \n        \"SYM\"\n    ], \n    \"subtracting\": [\n        \"VBG\"\n    ], \n    \"bottling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"squirms\": [\n        \"VBZ\"\n    ], \n    \"boucle\": [\n        \"NN\"\n    ], \n    \"Promptly\": [\n        \"RB\"\n    ], \n    \"verbs\": [\n        \"NNS\"\n    ], \n    \"bogged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"combo\": [\n        \"NN\"\n    ], \n    \"chemical-weapon\": [\n        \"NN\"\n    ], \n    \"Strongin\": [\n        \"NNP\"\n    ], \n    \"warm-ups\": [\n        \"NNS\"\n    ], \n    \"stock-holding\": [\n        \"JJ\"\n    ], \n    \"Transco\": [\n        \"NNP\"\n    ], \n    \"broncs\": [\n        \"NNS\"\n    ], \n    \"Octobers\": [\n        \"NNPS\"\n    ], \n    \"urethanes\": [\n        \"NNS\"\n    ], \n    \"Tarrant\": [\n        \"NNP\"\n    ], \n    \"embezzlement\": [\n        \"NN\"\n    ], \n    \"stitching\": [\n        \"NN\"\n    ], \n    \"deceives\": [\n        \"VBZ\"\n    ], \n    \"spokewoman\": [\n        \"NN\"\n    ], \n    \"Know-nothings\": [\n        \"NNS\"\n    ], \n    \"allocate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"vacuolization\": [\n        \"NN\"\n    ], \n    \"clubbers\": [\n        \"NNS\"\n    ], \n    \"competitive-analysis\": [\n        \"JJ\"\n    ], \n    \"liquidators\": [\n        \"NNS\"\n    ], \n    \"deceived\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Burnham\": [\n        \"NNP\"\n    ], \n    \"FDC\": [\n        \"NNP\"\n    ], \n    \"horticulturally\": [\n        \"RB\"\n    ], \n    \"module\": [\n        \"NN\"\n    ], \n    \"oligarchs\": [\n        \"NNS\"\n    ], \n    \"FDR\": [\n        \"NNP\"\n    ], \n    \"geometrically\": [\n        \"RB\"\n    ], \n    \"FRANKENBERRY\": [\n        \"NNP\"\n    ], \n    \"Ballad\": [\n        \"NNP\"\n    ], \n    \"televised\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Intrapreneurship\": [\n        \"NN\"\n    ], \n    \"coveting\": [\n        \"VBG\"\n    ], \n    \"Rittlemann\": [\n        \"NNP\"\n    ], \n    \"frustrates\": [\n        \"VBZ\"\n    ], \n    \"Lawless\": [\n        \"NNP\"\n    ], \n    \"Newells\": [\n        \"NNPS\"\n    ], \n    \"rendition\": [\n        \"NN\"\n    ], \n    \"Rudoff\": [\n        \"NNP\"\n    ], \n    \"frustrated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"data-service\": [\n        \"JJ\"\n    ], \n    \"publishers\": [\n        \"NNS\"\n    ], \n    \"Aviion\": [\n        \"NNP\"\n    ], \n    \"Gazettes\": [\n        \"NNP\"\n    ], \n    \"Dallas-headquartered\": [\n        \"JJ\"\n    ], \n    \"rescuers\": [\n        \"NNS\"\n    ], \n    \"Chlortetracycline\": [\n        \"NN\"\n    ], \n    \"Doxiadis\": [\n        \"NNP\"\n    ], \n    \"succesful\": [\n        \"JJ\"\n    ], \n    \"Maggie\": [\n        \"NNP\"\n    ], \n    \"dramatization\": [\n        \"NN\"\n    ], \n    \"anti-generic\": [\n        \"JJ\"\n    ], \n    \"sewerage\": [\n        \"NN\"\n    ], \n    \"solar-radiation\": [\n        \"NN\"\n    ], \n    \"non-junk\": [\n        \"JJ\"\n    ], \n    \"news-weekly\": [\n        \"NN\"\n    ], \n    \"Indies\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"underscores\": [\n        \"VBZ\"\n    ], \n    \"auctions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Rolls\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"up...\": [\n        \":\"\n    ], \n    \"Axis\": [\n        \"NNP\"\n    ], \n    \"sequenced\": [\n        \"VBN\"\n    ], \n    \"self-completion\": [\n        \"NN\"\n    ], \n    \"carbonates\": [\n        \"NNS\"\n    ], \n    \"Ellerman\": [\n        \"NNP\"\n    ], \n    \"R.E.\": [\n        \"NNP\"\n    ], \n    \"walk\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Gamper\": [\n        \"NNP\"\n    ], \n    \"interface\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"phonologic\": [\n        \"JJ\"\n    ], \n    \"fledging\": [\n        \"VBG\"\n    ], \n    \"coordinates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sequences\": [\n        \"NNS\"\n    ], \n    \"overpayment\": [\n        \"NN\"\n    ], \n    \"desk-top\": [\n        \"JJ\"\n    ], \n    \"trays\": [\n        \"NNS\"\n    ], \n    \"i.e.\": [\n        \"FW\", \n        \"NN\", \n        \"RP\"\n    ], \n    \"subsurface\": [\n        \"JJ\"\n    ], \n    \"Grzesiak\": [\n        \"NNP\"\n    ], \n    \"Brahmaputra\": [\n        \"NNP\"\n    ], \n    \"intendant\": [\n        \"NN\"\n    ], \n    \"Discount\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"pullet-roofed\": [\n        \"JJ\"\n    ], \n    \"Sandra\": [\n        \"NNP\"\n    ], \n    \"Sandro\": [\n        \"NNP\"\n    ], \n    \"counterculture\": [\n        \"JJ\"\n    ], \n    \"nickel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"inbound\": [\n        \"JJ\"\n    ], \n    \"interrupts\": [\n        \"VBZ\"\n    ], \n    \"nicked\": [\n        \"VBN\"\n    ], \n    \"injustices\": [\n        \"NNS\"\n    ], \n    \"walloping\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"overture\": [\n        \"NN\"\n    ], \n    \"help-me-make-it-through-the-fiscal-nigh\": [\n        \"JJ\"\n    ], \n    \"CDs\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"cavorting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Joplin\": [\n        \"NN\"\n    ], \n    \"overturn\": [\n        \"VB\"\n    ], \n    \"Innopac\": [\n        \"NNP\"\n    ], \n    \"CDA\": [\n        \"NNP\"\n    ], \n    \"CDC\": [\n        \"NNP\"\n    ], \n    \"overuse\": [\n        \"NN\"\n    ], \n    \"CDK\": [\n        \"NNP\"\n    ], \n    \"CDT\": [\n        \"NNP\"\n    ], \n    \"CDU\": [\n        \"NNP\"\n    ], \n    \"Fatalities\": [\n        \"NNS\"\n    ], \n    \"Fitch\": [\n        \"NNP\"\n    ], \n    \"loosest\": [\n        \"JJS\"\n    ], \n    \"mutant\": [\n        \"JJ\"\n    ], \n    \"ten-month\": [\n        \"JJ\"\n    ], \n    \"mid-afternoon\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"ajury\": [\n        \"NN\"\n    ], \n    \"eight-hour\": [\n        \"JJ\"\n    ], \n    \"outspend\": [\n        \"VBP\"\n    ], \n    \"water-reactor\": [\n        \"JJ\"\n    ], \n    \"Loving\": [\n        \"NNP\"\n    ], \n    \"oiticica\": [\n        \"NN\"\n    ], \n    \"kissed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"unveiling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"market-moving\": [\n        \"JJ\"\n    ], \n    \"clear-headed\": [\n        \"JJ\"\n    ], \n    \"H.N.\": [\n        \"NNP\"\n    ], \n    \"improves\": [\n        \"VBZ\"\n    ], \n    \"refinancings\": [\n        \"NNS\"\n    ], \n    \"conversations\": [\n        \"NNS\"\n    ], \n    \"Waveland\": [\n        \"NNP\"\n    ], \n    \"fantasized\": [\n        \"VBN\"\n    ], \n    \"gets\": [\n        \"VBZ\"\n    ], \n    \"UST\": [\n        \"NNP\"\n    ], \n    \"tomatoes\": [\n        \"NNS\"\n    ], \n    \"sops\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"raisers\": [\n        \"NNS\"\n    ], \n    \"windstorm\": [\n        \"NN\"\n    ], \n    \"Alma\": [\n        \"NNP\"\n    ], \n    \"Hanover-Bertie\": [\n        \"NNP\"\n    ], \n    \"Manuel\": [\n        \"NNP\"\n    ], \n    \"D.L.\": [\n        \"NNP\"\n    ], \n    \"downpayment\": [\n        \"NN\"\n    ], \n    \"gutter\": [\n        \"NN\"\n    ], \n    \"semi-finalists\": [\n        \"NNS\"\n    ], \n    \"extramural\": [\n        \"JJ\"\n    ], \n    \"railbiking\": [\n        \"NN\"\n    ], \n    \"slaughterhouse\": [\n        \"NN\"\n    ], \n    \"re-paid\": [\n        \"VBD\"\n    ], \n    \"gutted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"spectator\": [\n        \"NN\"\n    ], \n    \"abrasion-resistant\": [\n        \"NN\"\n    ], \n    \"REPAIR\": [\n        \"NN\"\n    ], \n    \"dismounts\": [\n        \"VBZ\"\n    ], \n    \"riveted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Faithful\": [\n        \"NN\"\n    ], \n    \"Fawell\": [\n        \"NNP\"\n    ], \n    \"obtain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Hasidic\": [\n        \"JJ\"\n    ], \n    \"interim-dividend\": [\n        \"NN\"\n    ], \n    \"batteries\": [\n        \"NNS\"\n    ], \n    \"recollection\": [\n        \"NN\"\n    ], \n    \"propositioned\": [\n        \"VBD\"\n    ], \n    \"Crews\": [\n        \"NNP\"\n    ], \n    \"neurasthenic\": [\n        \"NN\"\n    ], \n    \"lettuce\": [\n        \"NN\"\n    ], \n    \"Taikisha\": [\n        \"NNP\"\n    ], \n    \"toilets\": [\n        \"NNS\"\n    ], \n    \"majesty\": [\n        \"NN\"\n    ], \n    \"Neveh\": [\n        \"NNP\"\n    ], \n    \"Teddy\": [\n        \"NNP\"\n    ], \n    \"Publication\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Diagnostic\": [\n        \"NNP\"\n    ], \n    \"Downing\": [\n        \"NNP\"\n    ], \n    \"attractive\": [\n        \"JJ\"\n    ], \n    \"c-Yields\": [\n        \"NNS\", \n        \"LS|NNS\"\n    ], \n    \"stowed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"rescind\": [\n        \"VB\"\n    ], \n    \"Institution\": [\n        \"NNP\"\n    ], \n    \"Bloopers\": [\n        \"NNS\"\n    ], \n    \"frieze\": [\n        \"NN\"\n    ], \n    \"Jaffe\": [\n        \"NNP\"\n    ], \n    \"masquerade\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Lazar\": [\n        \"NNP\"\n    ], \n    \"Camels\": [\n        \"NNS\"\n    ], \n    \"Saledo\": [\n        \"NNP\"\n    ], \n    \"doughnut\": [\n        \"NN\"\n    ], \n    \"Felsenthal\": [\n        \"NNP\"\n    ], \n    \"governmemt\": [\n        \"NN\"\n    ], \n    \"Arbitrage\": [\n        \"NN\"\n    ], \n    \"Garonzik\": [\n        \"NNP\"\n    ], \n    \"T\\\\/A\": [\n        \"NNP\"\n    ], \n    \"Guam\": [\n        \"NNP\"\n    ], \n    \"sophomore\": [\n        \"NN\"\n    ], \n    \"DeScenza\": [\n        \"NNP\"\n    ], \n    \"Iverson\": [\n        \"NNP\"\n    ], \n    \"incendiary\": [\n        \"JJ\"\n    ], \n    \"Ueberroth\": [\n        \"NNP\"\n    ], \n    \"Foods\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"machine-gun-toting\": [\n        \"JJ\"\n    ], \n    \"Boylan\": [\n        \"NNP\"\n    ], \n    \"Fulson\": [\n        \"NNP\"\n    ], \n    \"razor-sharp\": [\n        \"JJ\"\n    ], \n    \"Bouygues\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"auto-loaders\": [\n        \"NNS\"\n    ], \n    \"sultry\": [\n        \"JJ\"\n    ], \n    \"Shiflett\": [\n        \"NNP\"\n    ], \n    \"Informed\": [\n        \"VBN\"\n    ], \n    \"stat\": [\n        \"NN\"\n    ], \n    \"Bahar\": [\n        \"NNP\"\n    ], \n    \"pre-legislative\": [\n        \"JJ\"\n    ], \n    \"platforms\": [\n        \"NNS\"\n    ], \n    \"Kahn\": [\n        \"NNP\"\n    ], \n    \"pussy-willow\": [\n        \"NN\"\n    ], \n    \"export\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"econometrics\": [\n        \"NN\"\n    ], \n    \"proprietorships\": [\n        \"NNS\"\n    ], \n    \"Sherren\": [\n        \"NNP\"\n    ], \n    \"himselfe\": [\n        \"NN\"\n    ], \n    \"NORAD\": [\n        \"NNP\"\n    ], \n    \"Warmly\": [\n        \"RB\"\n    ], \n    \"severance\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Shamir\": [\n        \"NNP\"\n    ], \n    \"Sihanouk\": [\n        \"NNP\"\n    ], \n    \"Alzheimer\": [\n        \"NNP\"\n    ], \n    \"debuts\": [\n        \"VBZ\"\n    ], \n    \"soft-currency\": [\n        \"JJ\"\n    ], \n    \"blood-flecked\": [\n        \"JJ\"\n    ], \n    \"Range\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sutz\": [\n        \"NNP\"\n    ], \n    \"hypoactive\": [\n        \"JJ\"\n    ], \n    \"fluorescent\": [\n        \"JJ\"\n    ], \n    \"motive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"half-empty\": [\n        \"JJ\"\n    ], \n    \"death-like\": [\n        \"JJ\"\n    ], \n    \"linger\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"shrub-covered\": [\n        \"JJ\"\n    ], \n    \"universe\": [\n        \"NN\"\n    ], \n    \"Kaifu\": [\n        \"NNP\"\n    ], \n    \"SPCA\": [\n        \"NNP\"\n    ], \n    \"track-signal\": [\n        \"JJ\"\n    ], \n    \"monthly\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Zero\": [\n        \"NN\"\n    ], \n    \"sighting\": [\n        \"NN\"\n    ], \n    \"Moehn\": [\n        \"NNP\"\n    ], \n    \"Oct\": [\n        \"NNP\"\n    ], \n    \"blot-like\": [\n        \"JJ\"\n    ], \n    \"inaugurating\": [\n        \"VBG\"\n    ], \n    \"food-canning\": [\n        \"NN\"\n    ], \n    \"cocked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dulcet\": [\n        \"JJ\"\n    ], \n    \"travelers\": [\n        \"NNS\"\n    ], \n    \"scarecrowish\": [\n        \"JJ\"\n    ], \n    \"Chadha\": [\n        \"NNP\"\n    ], \n    \"Adjusters\": [\n        \"NNS\"\n    ], \n    \"housing-discrimination\": [\n        \"NN\"\n    ], \n    \"Clashes\": [\n        \"NNS\"\n    ], \n    \"whiplashes\": [\n        \"NNS\"\n    ], \n    \"Widely\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"well-regulated\": [\n        \"JJ\"\n    ], \n    \"Pedigrees\": [\n        \"NNS\"\n    ], \n    \"teabag\": [\n        \"NN\"\n    ], \n    \"Enforcement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ivory\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"van\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Corneilus\": [\n        \"NNP\"\n    ], \n    \"incipient\": [\n        \"JJ\"\n    ], \n    \"kidding\": [\n        \"VBG\"\n    ], \n    \"polymerization\": [\n        \"NN\"\n    ], \n    \"divisional\": [\n        \"JJ\"\n    ], \n    \"quadratic\": [\n        \"JJ\"\n    ], \n    \"desolations\": [\n        \"NNS\"\n    ], \n    \"Commands\": [\n        \"NNS\"\n    ], \n    \"Shipman\": [\n        \"NNP\"\n    ], \n    \"Poole\": [\n        \"NNP\"\n    ], \n    \"black-clad\": [\n        \"JJ\"\n    ], \n    \"asocial\": [\n        \"JJ\"\n    ], \n    \"courtliness\": [\n        \"NN\"\n    ], \n    \"good-bye\": [\n        \"NN\", \n        \"JJ\", \n        \"UH\"\n    ], \n    \"well-positioned\": [\n        \"JJ\"\n    ], \n    \"squeeze\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"untraditional\": [\n        \"JJ\"\n    ], \n    \"made\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"tactics\": [\n        \"NNS\"\n    ], \n    \"hitter\": [\n        \"NN\"\n    ], \n    \"whether\": [\n        \"IN\", \n        \"CC\"\n    ], \n    \"Barabolak\": [\n        \"NNP\"\n    ], \n    \"Appleyard\": [\n        \"NNP\"\n    ], \n    \"atheist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Uerkesh\": [\n        \"NNP\"\n    ], \n    \"interchanges\": [\n        \"NNS\"\n    ], \n    \"Bovard\": [\n        \"NNP\"\n    ], \n    \"wedge-nosed\": [\n        \"JJ\"\n    ], \n    \"Hamrick\": [\n        \"NNP\"\n    ], \n    \"nine-story\": [\n        \"JJ\"\n    ], \n    \"inadequate\": [\n        \"JJ\"\n    ], \n    \"Writes\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Writer\": [\n        \"NNP\"\n    ], \n    \"plaques\": [\n        \"NNS\"\n    ], \n    \"SEPARATED\": [\n        \"VBN\"\n    ], \n    \"APPEARS\": [\n        \"VBZ\"\n    ], \n    \"mutual\": [\n        \"JJ\"\n    ], \n    \"diplomas\": [\n        \"NNS\"\n    ], \n    \"calibration\": [\n        \"NN\"\n    ], \n    \"Uto-Aztecan\": [\n        \"NNP\"\n    ], \n    \"Freinkel\": [\n        \"NNP\"\n    ], \n    \"Decathlon\": [\n        \"NNP\"\n    ], \n    \"reinvigorating\": [\n        \"VBG\"\n    ], \n    \"cutthroat\": [\n        \"JJ\"\n    ], \n    \"overtones\": [\n        \"NNS\"\n    ], \n    \"L.E.\": [\n        \"NNP\"\n    ], \n    \"Banner\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Strident\": [\n        \"JJ\"\n    ], \n    \"laundry-type\": [\n        \"JJ\"\n    ], \n    \"Lehder\": [\n        \"NNP\"\n    ], \n    \"Ottermole\": [\n        \"NNP\"\n    ], \n    \"Nonbuilding\": [\n        \"JJ\"\n    ], \n    \"Jean-Paul\": [\n        \"NNP\"\n    ], \n    \"household-products\": [\n        \"NNS\"\n    ], \n    \"metabolized\": [\n        \"VBN\"\n    ], \n    \"income-tax\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Creditbank\": [\n        \"NNP\"\n    ], \n    \"twangy\": [\n        \"JJ\"\n    ], \n    \"BUYING\": [\n        \"NN\"\n    ], \n    \"extort\": [\n        \"VB\"\n    ], \n    \"Garbage\": [\n        \"NNP\"\n    ], \n    \"semitrance\": [\n        \"NN\"\n    ], \n    \"Competitive\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"coincidentally\": [\n        \"RB\"\n    ], \n    \"Keizai\": [\n        \"NNP\"\n    ], \n    \"ex-employees\": [\n        \"NNS\"\n    ], \n    \"Bacteria\": [\n        \"NNS\"\n    ], \n    \"medium-distance\": [\n        \"JJ\"\n    ], \n    \"Mortimer\": [\n        \"NNP\"\n    ], \n    \"underemployment\": [\n        \"NN\"\n    ], \n    \"Procardia\": [\n        \"NNP\"\n    ], \n    \"Germany-based\": [\n        \"JJ\"\n    ], \n    \"treading\": [\n        \"VBG\"\n    ], \n    \"junketeering\": [\n        \"NN\"\n    ], \n    \"granting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"four-month-old\": [\n        \"JJ\"\n    ], \n    \"religious-right\": [\n        \"NN\"\n    ], \n    \"aggregations\": [\n        \"NNS\"\n    ], \n    \"Ronald\": [\n        \"NNP\"\n    ], \n    \"Visitors\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Nagamo\": [\n        \"NNP\"\n    ], \n    \"impoverishment\": [\n        \"NN\"\n    ], \n    \"lore\": [\n        \"NN\"\n    ], \n    \"portentous\": [\n        \"JJ\"\n    ], \n    \"shaving\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"digit\": [\n        \"NN\"\n    ], \n    \"hormone\": [\n        \"NN\"\n    ], \n    \"Frankly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Electrosurgery\": [\n        \"NNP\"\n    ], \n    \"cardiomegaly\": [\n        \"NN\"\n    ], \n    \"reconstructions\": [\n        \"NNS\"\n    ], \n    \"second-stage\": [\n        \"JJ\"\n    ], \n    \"Ducking\": [\n        \"VBG\"\n    ], \n    \"elevations\": [\n        \"NNS\"\n    ], \n    \"Ole\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Sande\": [\n        \"NNP\"\n    ], \n    \"internally\": [\n        \"RB\"\n    ], \n    \"slyly\": [\n        \"RB\"\n    ], \n    \"Chippendale\": [\n        \"NNP\"\n    ], \n    \"Dalgety\": [\n        \"NNP\"\n    ], \n    \"aircraft-navigation\": [\n        \"NN\"\n    ], \n    \"Rojas\": [\n        \"NNP\"\n    ], \n    \"Coupon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SoftLetter\": [\n        \"NNP\"\n    ], \n    \"Sands\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"citizen-plaintiffs\": [\n        \"NNS\"\n    ], \n    \"Sandy\": [\n        \"NNP\"\n    ], \n    \"elegy\": [\n        \"NN\"\n    ], \n    \"cloves\": [\n        \"NNS\"\n    ], \n    \"shirtsleeve\": [\n        \"NN\"\n    ], \n    \"small-game\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"bacon\": [\n        \"NN\"\n    ], \n    \"pulse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tires\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"consists\": [\n        \"VBZ\"\n    ], \n    \"rusty\": [\n        \"JJ\"\n    ], \n    \"inheritors\": [\n        \"NNS\"\n    ], \n    \"foreign-owned\": [\n        \"JJ\"\n    ], \n    \"ten-foot\": [\n        \"JJ\"\n    ], \n    \"blouse\": [\n        \"NN\"\n    ], \n    \"Weart\": [\n        \"NNP\"\n    ], \n    \"Colo\": [\n        \"NNP\"\n    ], \n    \"Supports\": [\n        \"VBZ\"\n    ], \n    \"Unemployed\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"boogie\": [\n        \"NN\"\n    ], \n    \"contributed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fingers\": [\n        \"NNS\"\n    ], \n    \"Weary\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"pathogenic\": [\n        \"JJ\"\n    ], \n    \"Wrong\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"roadhouse\": [\n        \"NN\"\n    ], \n    \"set-asides\": [\n        \"NNS\"\n    ], \n    \"redelivered\": [\n        \"VBN\"\n    ], \n    \"contributes\": [\n        \"VBZ\"\n    ], \n    \"exclamations\": [\n        \"NNS\"\n    ], \n    \"Kassan\": [\n        \"NNP\"\n    ], \n    \"specialist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"misjudged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hero\": [\n        \"NN\"\n    ], \n    \"brocaded\": [\n        \"JJ\"\n    ], \n    \"reporter\": [\n        \"NN\"\n    ], \n    \"herb\": [\n        \"NN\"\n    ], \n    \"splinter\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"sunspot\": [\n        \"NN\"\n    ], \n    \"here\": [\n        \"RB\"\n    ], \n    \"herd\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"reported\": [\n        \"VBD\", \n        \"JJ\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"[\": [\n        \"(\"\n    ], \n    \"Cold\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"whipping-boys\": [\n        \"NNS\"\n    ], \n    \"conversational\": [\n        \"JJ\"\n    ], \n    \"road-shy\": [\n        \"JJ\"\n    ], \n    \"Fernberger\": [\n        \"NNP\"\n    ], \n    \"Catastrophic\": [\n        \"NNP\"\n    ], \n    \"Settlements\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"HLR\": [\n        \"NNP\"\n    ], \n    \"robin\": [\n        \"NN\"\n    ], \n    \"tremors\": [\n        \"NNS\"\n    ], \n    \"symmetrical\": [\n        \"JJ\"\n    ], \n    \"Cola\": [\n        \"NNP\"\n    ], \n    \"no-more-nonsense\": [\n        \"JJ\"\n    ], \n    \"swan\": [\n        \"NN\"\n    ], \n    \"Basir\": [\n        \"NNP\"\n    ], \n    \"MEXICO\": [\n        \"NNP\"\n    ], \n    \"fireworks\": [\n        \"NNS\"\n    ], \n    \"panjandrum\": [\n        \"NN\"\n    ], \n    \"Snack-food\": [\n        \"NN\"\n    ], \n    \"MERGING\": [\n        \"VBG\"\n    ], \n    \"Pomerantz\": [\n        \"NNP\"\n    ], \n    \"Scottsdale\": [\n        \"NNP\"\n    ], \n    \"computer-security\": [\n        \"JJ\"\n    ], \n    \"Basil\": [\n        \"NNP\"\n    ], \n    \"Syrians\": [\n        \"NNPS\"\n    ], \n    \"SKr20\": [\n        \"NNS\"\n    ], \n    \"Messina\": [\n        \"NNP\"\n    ], \n    \"unit\": [\n        \"NN\"\n    ], \n    \"Merle\": [\n        \"NNP\"\n    ], \n    \"rise-perhaps\": [\n        \"RB\"\n    ], \n    \"hanky-panky\": [\n        \"NN\"\n    ], \n    \"Plugging\": [\n        \"VBG\"\n    ], \n    \"bays\": [\n        \"NNS\"\n    ], \n    \"Chahar\": [\n        \"NNP\"\n    ], \n    \"Humility\": [\n        \"NNP\"\n    ], \n    \"sweltering\": [\n        \"JJ\"\n    ], \n    \"personal-spending\": [\n        \"NN\"\n    ], \n    \"Quek\": [\n        \"NNP\"\n    ], \n    \"Charity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"expiring\": [\n        \"VBG\"\n    ], \n    \"Holds\": [\n        \"NNP\"\n    ], \n    \"holy\": [\n        \"JJ\"\n    ], \n    \"detracts\": [\n        \"VBZ\"\n    ], \n    \"gashes\": [\n        \"NNS\"\n    ], \n    \"ruminations\": [\n        \"NNS\"\n    ], \n    \"Emerson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"menaced\": [\n        \"VBN\"\n    ], \n    \"hole\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"hold\": [\n        \"VB\", \n        \"VB|NN\", \n        \"NN\", \n        \"RB\", \n        \"VBP\"\n    ], \n    \"Pardon\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"irksome\": [\n        \"JJ\"\n    ], \n    \"porcupines\": [\n        \"NNS\"\n    ], \n    \"EDA\": [\n        \"NNP\"\n    ], \n    \"Wilderness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Geeks\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"budget-altering\": [\n        \"JJ\"\n    ], \n    \"EDS\": [\n        \"NNP\"\n    ], \n    \"cristata\": [\n        \"FW\"\n    ], \n    \"battlefront\": [\n        \"NN\"\n    ], \n    \"discotheque\": [\n        \"NN\"\n    ], \n    \"EDT\": [\n        \"NNP\"\n    ], \n    \"Hobday\": [\n        \"NNP\"\n    ], \n    \"centralization\": [\n        \"NN\"\n    ], \n    \"postponable\": [\n        \"JJ\"\n    ], \n    \"Frosts\": [\n        \"NNPS\"\n    ], \n    \"Positive\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"FCB\\\\\": [\n        \"NNP\"\n    ], \n    \"Ex-smokers\": [\n        \"NNS\"\n    ], \n    \"malign\": [\n        \"JJ\"\n    ], \n    \"over-simplification\": [\n        \"NN\"\n    ], \n    \"Antonovich\": [\n        \"NNP\"\n    ], \n    \"Travelling\": [\n        \"VBG\"\n    ], \n    \"hog\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"fuzzed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Blowing\": [\n        \"NN\"\n    ], \n    \"hob\": [\n        \"NN\"\n    ], \n    \"hoc\": [\n        \"FW\"\n    ], \n    \"hon\": [\n        \"NN\"\n    ], \n    \"drying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Gardner\": [\n        \"NNP\"\n    ], \n    \"then-dress\": [\n        \"JJ\"\n    ], \n    \"hot\": [\n        \"JJ\"\n    ], \n    \"patrimony\": [\n        \"NN\"\n    ], \n    \"significance\": [\n        \"NN\"\n    ], \n    \"Wedgwood\": [\n        \"NNP\"\n    ], \n    \"casualty-loss\": [\n        \"JJ\"\n    ], \n    \"classify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"A\": [\n        \"DT\", \n        \"NNP\", \n        \"NNS\", \n        \"PRP\", \n        \"FW\", \n        \"JJ\", \n        \"LS\", \n        \"NN\", \n        \"NNPS\", \n        \"VB\"\n    ], \n    \"renounced\": [\n        \"VBD\"\n    ], \n    \"McKinnon\": [\n        \"NNP\"\n    ], \n    \"beauty\": [\n        \"NN\"\n    ], \n    \"minimums\": [\n        \"NNS\"\n    ], \n    \"Michelman\": [\n        \"NNP\"\n    ], \n    \"infrastructural\": [\n        \"JJ\"\n    ], \n    \"Yields\": [\n        \"NNS\"\n    ], \n    \"Schober\": [\n        \"NNP\"\n    ], \n    \"overexploited\": [\n        \"JJ\"\n    ], \n    \"pseudo-emotion\": [\n        \"NN\"\n    ], \n    \"Manafort\": [\n        \"NNP\"\n    ], \n    \"headquarters\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"presiding\": [\n        \"VBG\"\n    ], \n    \"Lalauries\": [\n        \"NNPS\"\n    ], \n    \"TASTY\": [\n        \"JJ\"\n    ], \n    \"debt-laden\": [\n        \"JJ\"\n    ], \n    \"Grigoriy\": [\n        \"NNP\"\n    ], \n    \"democratic\": [\n        \"JJ\"\n    ], \n    \"then-client\": [\n        \"NN\"\n    ], \n    \"backdrop\": [\n        \"NN\"\n    ], \n    \"Maruwa\": [\n        \"NNP\"\n    ], \n    \"Edita\": [\n        \"NNP\"\n    ], \n    \"schoolmates\": [\n        \"NNS\"\n    ], \n    \"Pavese\": [\n        \"NNP\"\n    ], \n    \"car-assembly\": [\n        \"NN\"\n    ], \n    \"home-delivered\": [\n        \"JJ\"\n    ], \n    \"dreamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mindanao\": [\n        \"NNP\"\n    ], \n    \"Jules\": [\n        \"NNP\"\n    ], \n    \"Micro-Economics\": [\n        \"NNPS\"\n    ], \n    \"murals\": [\n        \"NNS\"\n    ], \n    \"Charlottesville\": [\n        \"NNP\"\n    ], \n    \"fidelity\": [\n        \"NN\"\n    ], \n    \"Broadbent\": [\n        \"NNP\"\n    ], \n    \"term-end\": [\n        \"JJ\"\n    ], \n    \"dreamer\": [\n        \"NN\"\n    ], \n    \"admirably\": [\n        \"RB\"\n    ], \n    \"break-through\": [\n        \"NN\"\n    ], \n    \"Howdy\": [\n        \"UH\"\n    ], \n    \"Munching\": [\n        \"VBG\"\n    ], \n    \"Smarter\": [\n        \"RB\", \n        \"RBR\"\n    ], \n    \"McKinsey\": [\n        \"NNP\"\n    ], \n    \"intelligentsia\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"goal-oriented\": [\n        \"JJ\"\n    ], \n    \"distinguishing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"bowstring\": [\n        \"NN\"\n    ], \n    \"nobler\": [\n        \"JJR\"\n    ], \n    \"nobles\": [\n        \"NNS\"\n    ], \n    \"admirable\": [\n        \"JJ\"\n    ], \n    \"grievous\": [\n        \"JJ\"\n    ], \n    \"Eubie\": [\n        \"NNP\"\n    ], \n    \"aftershock-damping\": [\n        \"JJ\"\n    ], \n    \"accrual\": [\n        \"NN\"\n    ], \n    \"SpellRight\": [\n        \"NNP\"\n    ], \n    \"Gossiping\": [\n        \"NNP\"\n    ], \n    \"awfully\": [\n        \"RB\"\n    ], \n    \"SWITCHING\": [\n        \"VBG\"\n    ], \n    \"Gottlieb\": [\n        \"NNP\"\n    ], \n    \"pleasantries\": [\n        \"NNS\"\n    ], \n    \"across-the-board-cuts\": [\n        \"NNS\"\n    ], \n    \"spotless\": [\n        \"JJ\"\n    ], \n    \"Dutchman\": [\n        \"NNP\"\n    ], \n    \"McCluskey\": [\n        \"NNP\"\n    ], \n    \"Three-quarters\": [\n        \"NNS\"\n    ], \n    \"Undersecretary\": [\n        \"NNP\"\n    ], \n    \"Superior\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Falklands\": [\n        \"NNP\"\n    ], \n    \"chest-high\": [\n        \"JJ\"\n    ], \n    \"jet-setters\": [\n        \"NNS\"\n    ], \n    \"knockout\": [\n        \"NN\"\n    ], \n    \"near-limit\": [\n        \"JJ\"\n    ], \n    \"contracting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"whiz\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"earned-income\": [\n        \"NN\"\n    ], \n    \"strychnine\": [\n        \"NN\"\n    ], \n    \"c-Translated\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"whir\": [\n        \"NN\"\n    ], \n    \"Trunkline\": [\n        \"NNP\"\n    ], \n    \"whip\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"borne\": [\n        \"VBN\"\n    ], \n    \"shutdowns\": [\n        \"NNS\"\n    ], \n    \"balanced-budget\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gustav\": [\n        \"NNP\"\n    ], \n    \"trending\": [\n        \"VBG\"\n    ], \n    \"whoosh\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"homoeroticism\": [\n        \"NN\"\n    ], \n    \"Gustaf\": [\n        \"NNP\"\n    ], \n    \"Sin\\\\/Your\": [\n        \"NNP\"\n    ], \n    \"Curiosity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Purepac\": [\n        \"NNP\"\n    ], \n    \"cigar\": [\n        \"NN\"\n    ], \n    \"pre-Anglo-Saxon\": [\n        \"JJ\"\n    ], \n    \"intervention-speeded\": [\n        \"JJ\"\n    ], \n    \"sellout\": [\n        \"NN\"\n    ], \n    \"managerial\": [\n        \"JJ\"\n    ], \n    \"hero-worshippers\": [\n        \"NNS\"\n    ], \n    \"Hiatt\": [\n        \"NNP\"\n    ], \n    \"SES\": [\n        \"NNP\"\n    ], \n    \"Scrivener\": [\n        \"NNP\"\n    ], \n    \"cornerstone\": [\n        \"NN\"\n    ], \n    \"post-sale\": [\n        \"JJ\"\n    ], \n    \"piecemeal\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"takeout\": [\n        \"NN\"\n    ], \n    \"reprimanded\": [\n        \"VBN\"\n    ], \n    \"Bramante\": [\n        \"NNP\"\n    ], \n    \"greenhouse-produced\": [\n        \"JJ\"\n    ], \n    \"Votes\": [\n        \"NNS\"\n    ], \n    \"Voter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"clinical\": [\n        \"JJ\"\n    ], \n    \"McCaughan\": [\n        \"NNP\"\n    ], \n    \"exit-visa\": [\n        \"JJ\"\n    ], \n    \"eyeglasses\": [\n        \"NNS\"\n    ], \n    \"spinning\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"miliaris\": [\n        \"NN\"\n    ], \n    \"Waterford\": [\n        \"NNP\"\n    ], \n    \"Steelers\": [\n        \"NNP\"\n    ], \n    \"bitten\": [\n        \"VBN\"\n    ], \n    \"even-tempered\": [\n        \"JJ\"\n    ], \n    \"rhododendron\": [\n        \"NN\"\n    ], \n    \"Sonia\": [\n        \"NNP\"\n    ], \n    \"Puche\": [\n        \"NNP\"\n    ], \n    \"Mitzel\": [\n        \"NNP\"\n    ], \n    \"beguiled\": [\n        \"VBN\"\n    ], \n    \"numerological\": [\n        \"JJ\"\n    ], \n    \"Recordings\": [\n        \"NNP\"\n    ], \n    \"Simmons\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"chugging\": [\n        \"VBG\"\n    ], \n    \"non-warranty\": [\n        \"NN\"\n    ], \n    \"bitter\": [\n        \"JJ\"\n    ], \n    \"rummaged\": [\n        \"VBD\"\n    ], \n    \"Anku\": [\n        \"NNP\"\n    ], \n    \"electronic-data\": [\n        \"JJ\", \n        \"NN|NNS\"\n    ], \n    \"cushions\": [\n        \"NNS\"\n    ], \n    \"gothic\": [\n        \"JJ\"\n    ], \n    \"Victory\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pulse-timing\": [\n        \"JJ\"\n    ], \n    \"modern-dance\": [\n        \"NN\"\n    ], \n    \"Kaina\": [\n        \"NNP\"\n    ], \n    \"Chrysler-brand\": [\n        \"JJ\"\n    ], \n    \"peril\": [\n        \"NN\"\n    ], \n    \"ever-tightening\": [\n        \"JJ\"\n    ], \n    \"I.A.P/NNP.A.\": [\n        \"NN\"\n    ], \n    \"Hyperlite\": [\n        \"NN\"\n    ], \n    \"Carroll\": [\n        \"NNP\"\n    ], \n    \"Maxim\": [\n        \"NNP\"\n    ], \n    \"nations\": [\n        \"NNS\"\n    ], \n    \"pneumonia\": [\n        \"NN\"\n    ], \n    \"Eades\": [\n        \"NNP\"\n    ], \n    \"acquisition\": [\n        \"NN\"\n    ], \n    \"Cody\": [\n        \"NNP\"\n    ], \n    \"Bucchino\": [\n        \"NNP\"\n    ], \n    \"fevered\": [\n        \"JJ\"\n    ], \n    \"hue\": [\n        \"NN\"\n    ], \n    \"corne\": [\n        \"NN\"\n    ], \n    \"Tatsunori\": [\n        \"NNP\"\n    ], \n    \"broody\": [\n        \"JJ\"\n    ], \n    \"headland\": [\n        \"NN\"\n    ], \n    \"width\": [\n        \"NN\"\n    ], \n    \"corny\": [\n        \"JJ\"\n    ], \n    \"easy-to-film\": [\n        \"JJ\"\n    ], \n    \"on-again\": [\n        \"JJ\"\n    ], \n    \"Holly\": [\n        \"NNP\"\n    ], \n    \"corns\": [\n        \"NNS\"\n    ], \n    \"diversifications\": [\n        \"NNS\"\n    ], \n    \"Schrier\": [\n        \"NNP\"\n    ], \n    \"herdin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"three-foot\": [\n        \"JJ\"\n    ], \n    \"Kansallis\": [\n        \"NNP\"\n    ], \n    \"furrier\": [\n        \"NN\"\n    ], \n    \"circulated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"object\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Pavane\": [\n        \"NNP\"\n    ], \n    \"backpedal\": [\n        \"VB\"\n    ], \n    \"Paychex\": [\n        \"NNP\"\n    ], \n    \"known\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"large-diameter\": [\n        \"JJ\"\n    ], \n    \"Nunzio\": [\n        \"NNP\"\n    ], \n    \"Bulloch\": [\n        \"NNP\"\n    ], \n    \"FALTERS\": [\n        \"NNP\"\n    ], \n    \"Bullock\": [\n        \"NNP\"\n    ], \n    \"pirogues\": [\n        \"NNS\"\n    ], \n    \"consummate\": [\n        \"JJ\"\n    ], \n    \"place\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Brillo\": [\n        \"NN\"\n    ], \n    \"Mayumi\": [\n        \"NNP\"\n    ], \n    \"incomplete\": [\n        \"JJ\"\n    ], \n    \"marvel\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Klansmen\": [\n        \"NNPS\"\n    ], \n    \"chirpy\": [\n        \"JJ\"\n    ], \n    \"Basra\": [\n        \"NNP\"\n    ], \n    \"McGuane\": [\n        \"NNP\"\n    ], \n    \"folk-music\": [\n        \"NN\"\n    ], \n    \"Situation\": [\n        \"NNP\"\n    ], \n    \"heckled\": [\n        \"VBN\"\n    ], \n    \"reinvented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Congressional\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"touches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"busy\": [\n        \"JJ\"\n    ], \n    \"Premium\": [\n        \"NNP\"\n    ], \n    \"skirmishes\": [\n        \"NNS\"\n    ], \n    \"typewriters\": [\n        \"NNS\"\n    ], \n    \"buss\": [\n        \"NN\"\n    ], \n    \"Whitbread\": [\n        \"NNP\"\n    ], \n    \"bust\": [\n        \"NN\", \n        \"JJ|RB\", \n        \"VB\"\n    ], \n    \"skirmished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"druggies\": [\n        \"NNS\"\n    ], \n    \"Hirschey\": [\n        \"NNP\"\n    ], \n    \"Romanee-Conti\": [\n        \"NNP\"\n    ], \n    \"tire-kickers\": [\n        \"NNS\"\n    ], \n    \"longhorn\": [\n        \"NN\"\n    ], \n    \"non-regulated\": [\n        \"JJ\"\n    ], \n    \"Californian\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"cervelat\": [\n        \"NN\"\n    ], \n    \"cubic\": [\n        \"JJ\"\n    ], \n    \"Francaise\": [\n        \"NNP\"\n    ], \n    \"Vases\": [\n        \"NNS\"\n    ], \n    \"Chapters\": [\n        \"NNS\"\n    ], \n    \"Delors\": [\n        \"NNP\"\n    ], \n    \"Quicker\": [\n        \"JJR\"\n    ], \n    \"cushion\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Stadtmauer\": [\n        \"NNP\"\n    ], \n    \"by-wheelchair\": [\n        \"JJ\"\n    ], \n    \"Colorado\": [\n        \"NNP\"\n    ], \n    \"Ringing\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"ad-agency\": [\n        \"NN\"\n    ], \n    \"Schwemer\": [\n        \"NNP\"\n    ], \n    \"decoys\": [\n        \"NNS\"\n    ], \n    \"Ripplemeyer\": [\n        \"NNP\"\n    ], \n    \"three-year\": [\n        \"JJ\"\n    ], \n    \"Transporting\": [\n        \"VBG\"\n    ], \n    \"release\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"particulate\": [\n        \"JJ\"\n    ], \n    \"Sharpest\": [\n        \"JJS\"\n    ], \n    \"stand-still\": [\n        \"JJ\"\n    ], \n    \"sheet-metal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Biedermeier\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"Gruppe\": [\n        \"NNP\"\n    ], \n    \"Famous-Barr\": [\n        \"NNP\"\n    ], \n    \"naturalness\": [\n        \"NN\"\n    ], \n    \"Stikeman\": [\n        \"NNP\"\n    ], \n    \"Olympian\": [\n        \"JJ\"\n    ], \n    \"result\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Leyden\": [\n        \"NN\"\n    ], \n    \"internationalize\": [\n        \"VB\"\n    ], \n    \"hammer\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Dogs\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"peptizing\": [\n        \"VBG\"\n    ], \n    \"Cocteau\": [\n        \"NNP\"\n    ], \n    \"oncogene\": [\n        \"NN\"\n    ], \n    \"Waist-High\": [\n        \"JJ\"\n    ], \n    \"Risk\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Szold\": [\n        \"NNP\"\n    ], \n    \"overbillings\": [\n        \"NNS\"\n    ], \n    \"Rise\": [\n        \"NN\", \n        \"NNP\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"REPLICATION\": [\n        \"NN\"\n    ], \n    \"just-revised\": [\n        \"JJ\"\n    ], \n    \"Credietbank\": [\n        \"NNP\"\n    ], \n    \"occupational\": [\n        \"JJ\"\n    ], \n    \"Terrier\": [\n        \"NNP\"\n    ], \n    \"Devans\": [\n        \"NNP\"\n    ], \n    \"parallels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"disposable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"international-operations\": [\n        \"NNS\"\n    ], \n    \"inextricable\": [\n        \"JJ\"\n    ], \n    \"SUGAR\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"inextricably\": [\n        \"RB\"\n    ], \n    \"Tomonggong\": [\n        \"NNP\"\n    ], \n    \"conflagration\": [\n        \"NN\"\n    ], \n    \"butane\": [\n        \"NN\"\n    ], \n    \"downgrade\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"discursiveness\": [\n        \"NN\"\n    ], \n    \"pity\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"patented\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"accident\": [\n        \"NN\"\n    ], \n    \"Trammell\": [\n        \"NNP\"\n    ], \n    \"Simonds-Gooding\": [\n        \"NNP\"\n    ], \n    \"Poehl\": [\n        \"NNP\"\n    ], \n    \"pits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mew\": [\n        \"VB\"\n    ], \n    \"demanded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"recoilless\": [\n        \"JJ\"\n    ], \n    \"pith\": [\n        \"NN\"\n    ], \n    \"Dreyfus\": [\n        \"NNP\"\n    ], \n    \"thyroid\": [\n        \"NN\"\n    ], \n    \"demander\": [\n        \"NN\"\n    ], \n    \"colo-rectal\": [\n        \"JJ\"\n    ], \n    \"asked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"Tallahoosa\": [\n        \"NNP\"\n    ], \n    \"lockers\": [\n        \"NNS\"\n    ], \n    \"media-buying\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"near-manic\": [\n        \"JJ\"\n    ], \n    \"Petfoods\": [\n        \"NNPS\"\n    ], \n    \"agglomerate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"self-professed\": [\n        \"JJ\"\n    ], \n    \"caffeine-free\": [\n        \"JJ\"\n    ], \n    \"Unquestionably\": [\n        \"RB\"\n    ], \n    \"blending\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"stock-swap\": [\n        \"JJ\"\n    ], \n    \"Columns\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"postmasters\": [\n        \"NNS\"\n    ], \n    \"Marron\": [\n        \"NNP\"\n    ], \n    \"stop-limit\": [\n        \"JJ\"\n    ], \n    \"Clarence\": [\n        \"NNP\"\n    ], \n    \"quake-displaced\": [\n        \"JJ\"\n    ], \n    \"Confucius\": [\n        \"NNP\"\n    ], \n    \"mitigation\": [\n        \"NN\"\n    ], \n    \"Worksheets\": [\n        \"NNS\"\n    ], \n    \"Tomato\": [\n        \"NNP\"\n    ], \n    \"Guralnick\": [\n        \"NNP\"\n    ], \n    \"tax-reducing\": [\n        \"VBG\"\n    ], \n    \"skiis\": [\n        \"NNS\"\n    ], \n    \"comprehensiveness\": [\n        \"NN\"\n    ], \n    \"Zoladex\": [\n        \"NNP\"\n    ], \n    \"grillework\": [\n        \"NN\"\n    ], \n    \"estuaries\": [\n        \"NNS\"\n    ], \n    \"Almaden\": [\n        \"NNP\"\n    ], \n    \"Holmes\": [\n        \"NNP\"\n    ], \n    \"Hapsburg\": [\n        \"NNP\"\n    ], \n    \"Devils\": [\n        \"NNPS\"\n    ], \n    \"Superdome\": [\n        \"NNP\"\n    ], \n    \"two-fold\": [\n        \"JJ\"\n    ], \n    \"mates\": [\n        \"NNS\"\n    ], \n    \"cross-referencing\": [\n        \"NN\"\n    ], \n    \"Anselm\": [\n        \"NNP\"\n    ], \n    \"starstruck\": [\n        \"JJ\"\n    ], \n    \"levies\": [\n        \"NNS\"\n    ], \n    \"LOC\": [\n        \"NNP\"\n    ], \n    \"Mitsuo\": [\n        \"NNP\"\n    ], \n    \"Mitsui\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Double-Jointed\": [\n        \"NNP\"\n    ], \n    \"equator\": [\n        \"NN\"\n    ], \n    \"Responsible\": [\n        \"JJ\"\n    ], \n    \"Vacation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ill-equipped\": [\n        \"JJ\"\n    ], \n    \"LOW\": [\n        \"RB\"\n    ], \n    \"LOT\": [\n        \"NNP\"\n    ], \n    \"levied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"doomsayer\": [\n        \"NN\"\n    ], \n    \"crusaders\": [\n        \"NNS\"\n    ], \n    \"Marlys\": [\n        \"NNP\"\n    ], \n    \"Swiss-cheese\": [\n        \"NN\"\n    ], \n    \"Co-Chief\": [\n        \"NNP\"\n    ], \n    \"marshlands\": [\n        \"NNS\"\n    ], \n    \"computer-room\": [\n        \"JJ\"\n    ], \n    \"things\": [\n        \"NNS\"\n    ], \n    \"toaster\": [\n        \"NN\"\n    ], \n    \"any\": [\n        \"DT\", \n        \"RB\"\n    ], \n    \"Newman\": [\n        \"NNP\"\n    ], \n    \"Plaines\": [\n        \"NNP\"\n    ], \n    \"Sippl\": [\n        \"NNP\"\n    ], \n    \"toasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"outsell\": [\n        \"VB\"\n    ], \n    \"bacteria-free\": [\n        \"JJ\"\n    ], \n    \"DeVos\": [\n        \"NNP\"\n    ], \n    \"DeVon\": [\n        \"NNP\"\n    ], \n    \"Rune\": [\n        \"NNP\"\n    ], \n    \"preachy\": [\n        \"JJ\"\n    ], \n    \"DeVoe\": [\n        \"NNP\"\n    ], \n    \"tuna\": [\n        \"NN\"\n    ], \n    \"Naturalization\": [\n        \"NNP\"\n    ], \n    \"tung\": [\n        \"NN\"\n    ], \n    \"tune\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dalzell-Cousin\": [\n        \"NNP\"\n    ], \n    \"desert-battle\": [\n        \"JJ\"\n    ], \n    \"vice-president\": [\n        \"NN\"\n    ], \n    \"before-tax\": [\n        \"JJ\"\n    ], \n    \"Nutritional\": [\n        \"NNP\"\n    ], \n    \"echoed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cannibalize\": [\n        \"VB\"\n    ], \n    \"burgers\": [\n        \"NNS\"\n    ], \n    \"dewatering\": [\n        \"VBG\"\n    ], \n    \"echoes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rancorous\": [\n        \"JJ\"\n    ], \n    \"spurred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Over-the-counter\": [\n        \"JJ\"\n    ], \n    \"Elkind\": [\n        \"NNP\"\n    ], \n    \"allgedly\": [\n        \"RB\"\n    ], \n    \"sovereigns\": [\n        \"NNS\"\n    ], \n    \"sub-tests\": [\n        \"NNS\"\n    ], \n    \"Whitaker\": [\n        \"NNP\"\n    ], \n    \"Elkins\": [\n        \"NNP\"\n    ], \n    \"short-covering\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"bond-insurance\": [\n        \"JJ\"\n    ], \n    \"Metroplex\": [\n        \"NNP\"\n    ], \n    \"enters\": [\n        \"VBZ\"\n    ], \n    \"dialogues\": [\n        \"NNS\"\n    ], \n    \"Russians\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"ENVIRONMENTAL\": [\n        \"JJ\"\n    ], \n    \"ease\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"slices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slick-talking\": [\n        \"JJ\"\n    ], \n    \"topical\": [\n        \"JJ\"\n    ], \n    \"terrestrially\": [\n        \"RB\"\n    ], \n    \"Samengo-Turner\": [\n        \"NNP\"\n    ], \n    \"easy\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"falter\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"east\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Wilbur\": [\n        \"NNP\"\n    ], \n    \"posed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kelton\": [\n        \"NNP\"\n    ], \n    \"well-wedged\": [\n        \"JJ\"\n    ], \n    \"status-dropout\": [\n        \"NN\"\n    ], \n    \"MX-6s\": [\n        \"NNPS\"\n    ], \n    \"poses\": [\n        \"VBZ\"\n    ], \n    \"bushy\": [\n        \"JJ\"\n    ], \n    \"occurring\": [\n        \"VBG\"\n    ], \n    \"harmoniously\": [\n        \"RB\"\n    ], \n    \"Oncology\": [\n        \"NNP\"\n    ], \n    \"Nederlander\": [\n        \"NNP\"\n    ], \n    \"bobby\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Lowry\": [\n        \"NNP\"\n    ], \n    \"Ezekiel\": [\n        \"NNP\"\n    ], \n    \"eight-by-ten\": [\n        \"JJ\"\n    ], \n    \"Mts.\": [\n        \"NNP\"\n    ], \n    \"Shrove\": [\n        \"NNP\"\n    ], \n    \"Follow-up\": [\n        \"JJ\"\n    ], \n    \"without,``\": [\n        \"``\"\n    ], \n    \"Aquidneck\": [\n        \"NNP\"\n    ], \n    \"finely-spun\": [\n        \"JJ\"\n    ], \n    \"split-up\": [\n        \"NN\"\n    ], \n    \"Desrosiers\": [\n        \"NNP\"\n    ], \n    \"N.M\": [\n        \"NNP\"\n    ], \n    \"N.J\": [\n        \"NNP\"\n    ], \n    \"N.H\": [\n        \"NNP\"\n    ], \n    \"Peanut\": [\n        \"NN\"\n    ], \n    \"midyear\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"N.D\": [\n        \"NNP\"\n    ], \n    \"N.C\": [\n        \"NNP\"\n    ], \n    \"N.A\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Suspect\": [\n        \"JJ\"\n    ], \n    \"N.Y\": [\n        \"NNP\"\n    ], \n    \"conflicts.\": [\n        \"NN\"\n    ], \n    \"N.V\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lend-lease\": [\n        \"JJ\"\n    ], \n    \"Palms\": [\n        \"NNPS\"\n    ], \n    \"W\\\\/O\": [\n        \"NNP\"\n    ], \n    \"Motley\": [\n        \"NNP\"\n    ], \n    \"rehearse\": [\n        \"VB\"\n    ], \n    \"Hasseltine\": [\n        \"NNP\"\n    ], \n    \"speed-up\": [\n        \"JJ\"\n    ], \n    \"creative\": [\n        \"JJ\"\n    ], \n    \"repression\": [\n        \"NN\"\n    ], \n    \"imposes\": [\n        \"VBZ\"\n    ], \n    \"Palma\": [\n        \"NNP\"\n    ], \n    \"Cholet-Dupont\": [\n        \"NNP\"\n    ], \n    \"attorney-client\": [\n        \"JJ\"\n    ], \n    \"Gandalf\": [\n        \"NNP\"\n    ], \n    \"Hippie\": [\n        \"NNP\"\n    ], \n    \"nubbins\": [\n        \"NNS\"\n    ], \n    \"Wertheim\": [\n        \"NNP\"\n    ], \n    \"terraces\": [\n        \"NNS\"\n    ], \n    \"city-charter\": [\n        \"NN\"\n    ], \n    \"Barcalounger\": [\n        \"NNP\"\n    ], \n    \"Euro-barbecue\": [\n        \"NN\"\n    ], \n    \"terraced\": [\n        \"VBN\"\n    ], \n    \"manufacturing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Gorby\": [\n        \"NNP\"\n    ], \n    \"ham-like\": [\n        \"JJ\"\n    ], \n    \"intellectus\": [\n        \"FW\"\n    ], \n    \"Factor-VIII\": [\n        \"NNP\"\n    ], \n    \"coexistent\": [\n        \"JJ\"\n    ], \n    \"Dyson\": [\n        \"NNP\"\n    ], \n    \"pseudo-glamorous\": [\n        \"JJ\"\n    ], \n    \"Lullwater\": [\n        \"NNP\"\n    ], \n    \"Gitanes\": [\n        \"NNP\"\n    ], \n    \"cohesively\": [\n        \"RB\"\n    ], \n    \"leverage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"disqualified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"slightly\": [\n        \"RB\"\n    ], \n    \"meddle\": [\n        \"VB\"\n    ], \n    \"Fiero\": [\n        \"NNP\"\n    ], \n    \"consulting\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Fenway\": [\n        \"NNP\"\n    ], \n    \"well-cared\": [\n        \"JJ\"\n    ], \n    \"Starpointe\": [\n        \"NNP\"\n    ], \n    \"cell-free\": [\n        \"JJ\"\n    ], \n    \"Marketed\": [\n        \"VBN\"\n    ], \n    \"freshman\": [\n        \"NN\"\n    ], \n    \"Fiery\": [\n        \"JJ\"\n    ], \n    \"consumer-products\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"vibrancy\": [\n        \"NN\"\n    ], \n    \"journeying\": [\n        \"VBG\"\n    ], \n    \"Fuss\": [\n        \"VB\"\n    ], \n    \"precludes\": [\n        \"VBZ\"\n    ], \n    \"chalk-white\": [\n        \"JJ\"\n    ], \n    \"Tchaikovsky\": [\n        \"NNP\"\n    ], \n    \"knowing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"busy-work\": [\n        \"NN\"\n    ], \n    \"GOP\": [\n        \"NNP\"\n    ], \n    \"uncluttered\": [\n        \"JJ\"\n    ], \n    \"alphabetized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Civilian-groups\": [\n        \"NNPS\"\n    ], \n    \"underestimated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"insurrection\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"non-contract\": [\n        \"JJ\"\n    ], \n    \"offer\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"understandably\": [\n        \"RB\"\n    ], \n    \"dickering\": [\n        \"NN\"\n    ], \n    \"notifications\": [\n        \"NNS\"\n    ], \n    \"talents\": [\n        \"NNS\"\n    ], \n    \"incorporation\": [\n        \"NN\"\n    ], \n    \"Dalloway\": [\n        \"NNP\"\n    ], \n    \"heavy-tracked\": [\n        \"JJ\"\n    ], \n    \"squalid\": [\n        \"JJ\"\n    ], \n    \"unchlorinated\": [\n        \"VBN\"\n    ], \n    \"anti-dilutive\": [\n        \"JJ\"\n    ], \n    \"Seeing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Tone\": [\n        \"NN\"\n    ], \n    \"Tong\": [\n        \"NNP\"\n    ], \n    \"Toni\": [\n        \"NNP\"\n    ], \n    \"myopic\": [\n        \"JJ\"\n    ], \n    \"myopia\": [\n        \"NN\"\n    ], \n    \"Hatteras\": [\n        \"NNP\"\n    ], \n    \"highest-grossing\": [\n        \"JJS\"\n    ], \n    \"histochemical\": [\n        \"JJ\"\n    ], \n    \"rerun\": [\n        \"NN\"\n    ], \n    \"Tony\": [\n        \"NNP\"\n    ], \n    \"Andy\": [\n        \"NNP\"\n    ], \n    \"Szeto\": [\n        \"NNP\"\n    ], \n    \"fiefdoms\": [\n        \"NNS\"\n    ], \n    \"Differ\": [\n        \"VBP\"\n    ], \n    \"nectareous\": [\n        \"JJ\"\n    ], \n    \"Ruffel\": [\n        \"NNP\"\n    ], \n    \"Scurlock\": [\n        \"NNP\"\n    ], \n    \"bathrobe\": [\n        \"NN\"\n    ], \n    \"Crush\": [\n        \"NNP\"\n    ], \n    \"Virgin\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Virgil\": [\n        \"NNP\"\n    ], \n    \"Coburg\": [\n        \"NNP\"\n    ], \n    \"LOGIC\": [\n        \"NNP\"\n    ], \n    \"pretrial\": [\n        \"JJ\"\n    ], \n    \"Coburn\": [\n        \"NNP\"\n    ], \n    \"OLYMPIA\": [\n        \"NNP\"\n    ], \n    \"Sunday-Tuesday\": [\n        \"NNP\"\n    ], \n    \"microcytochemistry\": [\n        \"NN\"\n    ], \n    \"floor\": [\n        \"NN\"\n    ], \n    \"uttered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"grammatical\": [\n        \"JJ\"\n    ], \n    \"ambitious\": [\n        \"JJ\"\n    ], \n    \"lenses\": [\n        \"NNS\"\n    ], \n    \"Ibos\": [\n        \"NNP\"\n    ], \n    \"smell\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"cortex\": [\n        \"NN\"\n    ], \n    \"Tirpak\": [\n        \"NNP\"\n    ], \n    \"rehearsing\": [\n        \"VBG\"\n    ], \n    \"Western-style\": [\n        \"JJ\"\n    ], \n    \"semi-professionally\": [\n        \"RB\"\n    ], \n    \"pitcher-coach\": [\n        \"NN\"\n    ], \n    \"Luthuli\": [\n        \"NNP\"\n    ], \n    \"non-cumulative\": [\n        \"JJ\"\n    ], \n    \"grinders\": [\n        \"NNS\"\n    ], \n    \"rolling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"annointed\": [\n        \"VBN\"\n    ], \n    \"congested\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"denationalized\": [\n        \"VBN\"\n    ], \n    \"Kemchenjunga\": [\n        \"NNP\"\n    ], \n    \"mateless\": [\n        \"JJ\"\n    ], \n    \"disruption\": [\n        \"NN\"\n    ], \n    \"serialized\": [\n        \"VBN\"\n    ], \n    \"lowdown\": [\n        \"JJ\"\n    ], \n    \"IMF-World\": [\n        \"NNP\"\n    ], \n    \"iodoprotein\": [\n        \"NN\"\n    ], \n    \"packets\": [\n        \"NNS\"\n    ], \n    \"Quaker\": [\n        \"NNP\"\n    ], \n    \"Samara\": [\n        \"NNP\"\n    ], \n    \"unquenched\": [\n        \"VBN\"\n    ], \n    \"budworm\": [\n        \"NN\"\n    ], \n    \"banners\": [\n        \"NNS\"\n    ], \n    \"Lamle\": [\n        \"NNP\"\n    ], \n    \"restaurateurs\": [\n        \"NNS\"\n    ], \n    \"perch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Riney\": [\n        \"NNP\"\n    ], \n    \"reviewers\": [\n        \"NNS\"\n    ], \n    \"oneasy\": [\n        \"NN\"\n    ], \n    \"Nicklaus\": [\n        \"NNP\"\n    ], \n    \"Desktop\": [\n        \"NNP\"\n    ], \n    \"throw-away\": [\n        \"JJ\"\n    ], \n    \"doted\": [\n        \"VBN\"\n    ], \n    \"fawned\": [\n        \"VBN\"\n    ], \n    \"FIRMS\": [\n        \"NNS\"\n    ], \n    \"Sluggish\": [\n        \"JJ\"\n    ], \n    \"Stinson\": [\n        \"NNP\"\n    ], \n    \"Siemienas\": [\n        \"NNP\"\n    ], \n    \"Tupperware\": [\n        \"NNP\"\n    ], \n    \"Songau\": [\n        \"NNP\"\n    ], \n    \"Santayana\": [\n        \"NNP\"\n    ], \n    \"plainclothes\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Sizable\": [\n        \"JJ\"\n    ], \n    \"KETV\": [\n        \"NNP\"\n    ], \n    \"debtholders\": [\n        \"NNS\"\n    ], \n    \"WEEK\": [\n        \"NN\"\n    ], \n    \"leaving...\": [\n        \":\"\n    ], \n    \"WEEI\": [\n        \"NNP\"\n    ], \n    \"Prize\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Debussy\": [\n        \"NNP\"\n    ], \n    \"two-door\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cosmic\": [\n        \"NNP\"\n    ], \n    \"Conquering\": [\n        \"NNP\"\n    ], \n    \"VAX\": [\n        \"NNP\"\n    ], \n    \"bustle\": [\n        \"NN\"\n    ], \n    \"Smilin\": [\n        \"NNP\"\n    ], \n    \"fullest\": [\n        \"JJS\"\n    ], \n    \"Hannibal\": [\n        \"NNP\"\n    ], \n    \"betterment\": [\n        \"NN\"\n    ], \n    \"VAT\": [\n        \"NNP\"\n    ], \n    \"thermoformed\": [\n        \"VBN\"\n    ], \n    \"Off-Broadway\": [\n        \"NNP\"\n    ], \n    \"kneading\": [\n        \"VBG\"\n    ], \n    \"vans\": [\n        \"NNS\"\n    ], \n    \"muscat\": [\n        \"JJ\"\n    ], \n    \"Aldrich\": [\n        \"NNP\"\n    ], \n    \"reclusive\": [\n        \"JJ\"\n    ], \n    \"Dubin\": [\n        \"NNP\"\n    ], \n    \"Stock-index\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"yd.\": [\n        \"NN\"\n    ], \n    \"post-Watergate\": [\n        \"JJ\"\n    ], \n    \"rents\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"self-expression\": [\n        \"NN\"\n    ], \n    \"growth-fund\": [\n        \"NN\"\n    ], \n    \"Coche-Dury\": [\n        \"NNP\"\n    ], \n    \"phosphates\": [\n        \"NNS\"\n    ], \n    \"leering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Lt.\": [\n        \"NNP\"\n    ], \n    \"ordo\": [\n        \"FW\"\n    ], \n    \"psychosocial\": [\n        \"JJ\"\n    ], \n    \"retirement-system\": [\n        \"JJ\"\n    ], \n    \"axes\": [\n        \"NNS\"\n    ], \n    \"A.E.\": [\n        \"NNP\"\n    ], \n    \"Timmy\": [\n        \"NNP\"\n    ], \n    \"proprieties\": [\n        \"NNS\"\n    ], \n    \"ACCOUNTANTS\": [\n        \"NNS\"\n    ], \n    \"Jannsen\": [\n        \"NNP\"\n    ], \n    \"creepiest\": [\n        \"JJS\"\n    ], \n    \"steel-toothed\": [\n        \"JJ\"\n    ], \n    \"grandparents\": [\n        \"NNS\"\n    ], \n    \"funeral\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tight-lipped\": [\n        \"JJ\"\n    ], \n    \"splice\": [\n        \"NN\"\n    ], \n    \"Undismayed\": [\n        \"JJ\"\n    ], \n    \"alone\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"along\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"RB|RP\"\n    ], \n    \"anchoring\": [\n        \"VBG\"\n    ], \n    \"tachyarrhythmia\": [\n        \"NN\"\n    ], \n    \"Power-generation\": [\n        \"JJ\"\n    ], \n    \"anti-reformers\": [\n        \"NNS\"\n    ], \n    \"Packer\": [\n        \"NNP\"\n    ], \n    \"saws\": [\n        \"NNS\"\n    ], \n    \"vectors\": [\n        \"NNS\"\n    ], \n    \"eduction\": [\n        \"NN\"\n    ], \n    \"Packet\": [\n        \"NN\"\n    ], \n    \"Ziegler\": [\n        \"NNP\"\n    ], \n    \"Casals\": [\n        \"NNP\"\n    ], \n    \"stock-exchange\": [\n        \"NN\"\n    ], \n    \"Joshi\": [\n        \"NNP\"\n    ], \n    \"Oilcloth\": [\n        \"NN\"\n    ], \n    \"pinkly\": [\n        \"RB\"\n    ], \n    \"Paradoxically\": [\n        \"RB\"\n    ], \n    \"melodious\": [\n        \"JJ\"\n    ], \n    \"Delahanty\": [\n        \"NNP\"\n    ], \n    \"radish\": [\n        \"NN\"\n    ], \n    \"Technique\": [\n        \"NN\"\n    ], \n    \"prefer\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"coinciding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"unabsorbed\": [\n        \"JJ\"\n    ], \n    \"typically...\": [\n        \":\"\n    ], \n    \"Tilghman\": [\n        \"NNP\"\n    ], \n    \"crime\": [\n        \"NN\"\n    ], \n    \"Nikko\": [\n        \"NNP\"\n    ], \n    \"Donizetti\": [\n        \"NNP\"\n    ], \n    \"traders\": [\n        \"NNS\"\n    ], \n    \"unmarked\": [\n        \"JJ\"\n    ], \n    \"to-do\": [\n        \"NN\"\n    ], \n    \"Crouch\": [\n        \"NNP\"\n    ], \n    \"huskily\": [\n        \"RB\"\n    ], \n    \"homesick\": [\n        \"JJ\"\n    ], \n    \"shortfalls\": [\n        \"NNS\"\n    ], \n    \"filmy\": [\n        \"JJ\"\n    ], \n    \"films\": [\n        \"NNS\"\n    ], \n    \"unwounded\": [\n        \"JJ\"\n    ], \n    \"sonnets\": [\n        \"NNS\"\n    ], \n    \"climax\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"carved-out-of-solid\": [\n        \"JJ\"\n    ], \n    \"series.\": [\n        \"NN\"\n    ], \n    \"marbles\": [\n        \"NNS\"\n    ], \n    \"subsistence\": [\n        \"NN\"\n    ], \n    \"Barely\": [\n        \"RB\"\n    ], \n    \"tailing\": [\n        \"VBG\"\n    ], \n    \"validity\": [\n        \"NN\"\n    ], \n    \"Retail\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Ambassador-designate\": [\n        \"NNP\"\n    ], \n    \"logos\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Analytrol\": [\n        \"NNP\"\n    ], \n    \"celebrity-driven\": [\n        \"JJ\"\n    ], \n    \"foods\": [\n        \"NNS\"\n    ], \n    \"coexist\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"biophysicist\": [\n        \"NN\"\n    ], \n    \"dual-purpose\": [\n        \"JJ\"\n    ], \n    \"tax-policy\": [\n        \"NN\"\n    ], \n    \"disking\": [\n        \"VBG\"\n    ], \n    \"Tylenol\": [\n        \"NNP\"\n    ], \n    \"Greenwich-Potowomut\": [\n        \"NNP\"\n    ], \n    \"Monkey\": [\n        \"NNP\"\n    ], \n    \"typicality\": [\n        \"NN\"\n    ], \n    \"HOBBY\": [\n        \"NN\"\n    ], \n    \"stockbroker\": [\n        \"NN\"\n    ], \n    \"evidently\": [\n        \"RB\"\n    ], \n    \"mauler\": [\n        \"NN\"\n    ], \n    \"silos\": [\n        \"NNS\"\n    ], \n    \"poking\": [\n        \"VBG\"\n    ], \n    \"Guzzi\": [\n        \"NNP\"\n    ], \n    \"CLUBBING\": [\n        \"VBG\"\n    ], \n    \"self-critical\": [\n        \"JJ\"\n    ], \n    \"electronicmedical-equipment\": [\n        \"JJ\"\n    ], \n    \"explores\": [\n        \"VBZ\"\n    ], \n    \"explorer\": [\n        \"NN\"\n    ], \n    \"slush\": [\n        \"NN\"\n    ], \n    \"transients\": [\n        \"NNS\"\n    ], \n    \"Hamer\": [\n        \"NNP\"\n    ], \n    \"explored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Flottl\": [\n        \"NNP\"\n    ], \n    \"it-wit\": [\n        \"NN\"\n    ], \n    \"Brokerage-firm\": [\n        \"JJ\"\n    ], \n    \"such\": [\n        \"JJ\", \n        \"PDT\", \n        \"DT\"\n    ], \n    \"suck\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Flotte\": [\n        \"NNP\"\n    ], \n    \"Dipylon\": [\n        \"NNP\"\n    ], \n    \"titular\": [\n        \"JJ\"\n    ], \n    \"NCR\": [\n        \"NNP\"\n    ], \n    \"Borgeson\": [\n        \"NNP\"\n    ], \n    \"pranha\": [\n        \"NN\"\n    ], \n    \"NCI\": [\n        \"NNP\"\n    ], \n    \"darkened\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"furiouser\": [\n        \"RBR\"\n    ], \n    \"black-tipped\": [\n        \"JJ\"\n    ], \n    \"NCB\": [\n        \"NNP\"\n    ], \n    \"post-trial\": [\n        \"JJ\"\n    ], \n    \"colonic\": [\n        \"JJ\"\n    ], \n    \"Protitch\": [\n        \"NNP\"\n    ], \n    \"unsolicited\": [\n        \"JJ\"\n    ], \n    \"Grimm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Maurier\": [\n        \"NNP\"\n    ], \n    \"noteworthy\": [\n        \"JJ\"\n    ], \n    \"sell-off\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"heraldic\": [\n        \"JJ\"\n    ], \n    \"reaffirms\": [\n        \"VBZ\"\n    ], \n    \"blustered\": [\n        \"VBD\"\n    ], \n    \"dyspeptic\": [\n        \"JJ\"\n    ], \n    \"legal-ethics\": [\n        \"NNS\"\n    ], \n    \"Onidi\": [\n        \"NNP\"\n    ], \n    \"Widget\": [\n        \"NNP\"\n    ], \n    \"yawning\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"thumb\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"court-reporting\": [\n        \"JJ\"\n    ], \n    \"Singin\": [\n        \"VBG\"\n    ], \n    \"public-works\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Kissing\": [\n        \"VBG\"\n    ], \n    \"thump\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"deviant\": [\n        \"JJ\"\n    ], \n    \"presentness\": [\n        \"NN\"\n    ], \n    \"downsizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"conveying\": [\n        \"VBG\"\n    ], \n    \"insemination\": [\n        \"NN\"\n    ], \n    \"executors\": [\n        \"NNS\"\n    ], \n    \"Returns\": [\n        \"NNS\"\n    ], \n    \"thyroids\": [\n        \"NNS\"\n    ], \n    \"chromatic\": [\n        \"JJ\"\n    ], \n    \"retrain\": [\n        \"VB\"\n    ], \n    \"Tullock\": [\n        \"NNP\"\n    ], \n    \"Viggo\": [\n        \"NNP\"\n    ], \n    \"Tittabawassee\": [\n        \"NNP\"\n    ], \n    \"Torresi\": [\n        \"NNP\"\n    ], \n    \"Birgfeld\": [\n        \"NNP\"\n    ], \n    \"maintaining\": [\n        \"VBG\"\n    ], \n    \"firming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"double-whammy\": [\n        \"NN\"\n    ], \n    \"Codification\": [\n        \"NN\"\n    ], \n    \"look-alike\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"McAllen\": [\n        \"NNP\"\n    ], \n    \"wallpapers\": [\n        \"NNS\"\n    ], \n    \"Lucky-Goldstar\": [\n        \"NNP\"\n    ], \n    \"olivefaced\": [\n        \"JJ\"\n    ], \n    \"Lotte\": [\n        \"NNP\"\n    ], \n    \"Forfeiture\": [\n        \"NNP\"\n    ], \n    \"Tristars\": [\n        \"NNPS\"\n    ], \n    \"Ind.-investment\": [\n        \"NN\"\n    ], \n    \"repaid\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Governali\": [\n        \"NNP\"\n    ], \n    \"Loudermilk\": [\n        \"NNP\"\n    ], \n    \"sexually\": [\n        \"RB\"\n    ], \n    \"regionally\": [\n        \"RB\"\n    ], \n    \"Knife\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"small-scale\": [\n        \"JJ\"\n    ], \n    \"Shepherd\": [\n        \"NNP\"\n    ], \n    \"Undeterred\": [\n        \"JJ\"\n    ], \n    \"ever-optimistic\": [\n        \"JJ\"\n    ], \n    \"jounce\": [\n        \"NN\"\n    ], \n    \"Minoso\": [\n        \"NNP\"\n    ], \n    \"Remembering\": [\n        \"VBG\"\n    ], \n    \"Welcome\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\", \n        \"VB\"\n    ], \n    \"Leopard\": [\n        \"NNP\"\n    ], \n    \"non-inflationary\": [\n        \"JJ\"\n    ], \n    \"verisimilitude\": [\n        \"NN\"\n    ], \n    \"protections\": [\n        \"NNS\"\n    ], \n    \"D.J.\": [\n        \"NNP\"\n    ], \n    \"inconspicuously\": [\n        \"RB\"\n    ], \n    \"formula\": [\n        \"NN\"\n    ], \n    \"Rectum\": [\n        \"NN\"\n    ], \n    \"Saturn\": [\n        \"NNP\"\n    ], \n    \"sainthood\": [\n        \"NN\"\n    ], \n    \"chemically\": [\n        \"RB\"\n    ], \n    \"Tropworld\": [\n        \"NNP\"\n    ], \n    \"superiors\": [\n        \"NNS\"\n    ], \n    \"willya\": [\n        \"MD\"\n    ], \n    \"cowling\": [\n        \"NN\"\n    ], \n    \"mapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"seventh\": [\n        \"JJ\"\n    ], \n    \"vicious\": [\n        \"JJ\"\n    ], \n    \"plea\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"quarterbacks\": [\n        \"NNS\"\n    ], \n    \"Fenton\": [\n        \"NNP\"\n    ], \n    \"longrange\": [\n        \"JJ\"\n    ], \n    \"monogrammed\": [\n        \"JJ\"\n    ], \n    \"foundation-stone\": [\n        \"NN\"\n    ], \n    \"silhouetted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"basso\": [\n        \"NN\"\n    ], \n    \"undisguised\": [\n        \"JJ\"\n    ], \n    \"programming\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"routed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"trial-book\": [\n        \"JJ\"\n    ], \n    \"X-marked\": [\n        \"JJ\"\n    ], \n    \"silhouettes\": [\n        \"NNS\"\n    ], \n    \"Philippians\": [\n        \"NNS\"\n    ], \n    \"LXI\": [\n        \"NNP\"\n    ], \n    \"routes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"jumbled\": [\n        \"VBN\"\n    ], \n    \"number-one\": [\n        \"JJ\"\n    ], \n    \"Hayeses\": [\n        \"NNPS\"\n    ], \n    \"recapitalizing\": [\n        \"VBG\"\n    ], \n    \"plea-bargain\": [\n        \"JJ\"\n    ], \n    \"bluish\": [\n        \"JJ\"\n    ], \n    \"teaches\": [\n        \"VBZ\"\n    ], \n    \"speculatively\": [\n        \"RB\"\n    ], \n    \"Horwath\": [\n        \"NNP\"\n    ], \n    \"forfeiting\": [\n        \"VBG\"\n    ], \n    \"well-tailored\": [\n        \"JJ\"\n    ], \n    \"ink-jetting\": [\n        \"JJ\"\n    ], \n    \"MacNeil\\\\\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"synchrony\": [\n        \"NN\"\n    ], \n    \"light-bulb\": [\n        \"NN\"\n    ], \n    \"waist\": [\n        \"NN\"\n    ], \n    \"rodders\": [\n        \"NNS\"\n    ], \n    \"judgements\": [\n        \"NNS\"\n    ], \n    \"dissipate\": [\n        \"VB\"\n    ], \n    \"separatists\": [\n        \"NNS\"\n    ], \n    \"realization\": [\n        \"NN\"\n    ], \n    \"out-moded\": [\n        \"JJ\"\n    ], \n    \"Sharpshooters\": [\n        \"NNPS\"\n    ], \n    \"silvas\": [\n        \"FW\"\n    ], \n    \"Attilio\": [\n        \"NNP\"\n    ], \n    \"Patrice\": [\n        \"NNP\"\n    ], \n    \"Josephthal\": [\n        \"NNP\"\n    ], \n    \"Patrick\": [\n        \"NNP\"\n    ], \n    \"Kurd\": [\n        \"NNP\"\n    ], \n    \"proving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"betray\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"ridiculous\": [\n        \"JJ\"\n    ], \n    \"Install\": [\n        \"VB\"\n    ], \n    \"jury-tampering\": [\n        \"JJ\"\n    ], \n    \"Laff\": [\n        \"NNP\"\n    ], \n    \"Kurt\": [\n        \"NNP\"\n    ], \n    \"republic\": [\n        \"NN\"\n    ], \n    \"poultice\": [\n        \"NN\"\n    ], \n    \"nine-year\": [\n        \"JJ\"\n    ], \n    \"vocabularies\": [\n        \"NNS\"\n    ], \n    \"Poynting-Robertson\": [\n        \"NNP\"\n    ], \n    \"anti-authoritarian\": [\n        \"JJ\"\n    ], \n    \"scrumptious\": [\n        \"JJ\"\n    ], \n    \"Seerey\": [\n        \"NNP\"\n    ], \n    \"unprecedented\": [\n        \"JJ\"\n    ], \n    \"Athenians\": [\n        \"NNPS\"\n    ], \n    \"once-bloated\": [\n        \"JJ\"\n    ], \n    \"WTPI-FM\": [\n        \"NNP\"\n    ], \n    \"Dissenting\": [\n        \"JJ\"\n    ], \n    \"janitor\": [\n        \"NN\"\n    ], \n    \"picture-palace\": [\n        \"NN\"\n    ], \n    \"cowed\": [\n        \"VBN\"\n    ], \n    \"obliging\": [\n        \"JJ\"\n    ], \n    \"Elemer\": [\n        \"NNP\"\n    ], \n    \"descends\": [\n        \"VBZ\"\n    ], \n    \"Couturier\": [\n        \"NNP\"\n    ], \n    \"dusty-slippered\": [\n        \"JJ\"\n    ], \n    \"financier\": [\n        \"NN\"\n    ], \n    \"foiled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rainwater\": [\n        \"NN\"\n    ], \n    \"preservative\": [\n        \"JJ\"\n    ], \n    \"nott\": [\n        \"RB\"\n    ], \n    \"gunfighter\": [\n        \"NN\"\n    ], \n    \"AUTOMOBILES\": [\n        \"NNPS\"\n    ], \n    \"unsuitable\": [\n        \"JJ\"\n    ], \n    \"cent\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"note\": [\n        \"NN\", \n        \"JJ\", \n        \"VBP\", \n        \"VB\", \n        \"NN|VB\"\n    ], \n    \"unsuitably\": [\n        \"RB\"\n    ], \n    \"Monoclonal\": [\n        \"JJ\"\n    ], \n    \"hedonistic\": [\n        \"JJ\"\n    ], \n    \"butterfly\": [\n        \"NN\"\n    ], \n    \"indebted\": [\n        \"JJ\"\n    ], \n    \"handing\": [\n        \"VBG\"\n    ], \n    \"Drop\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"mid-twentieth-century\": [\n        \"JJ\"\n    ], \n    \"invoked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"East-West\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"remarks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"prodigies\": [\n        \"NNS\"\n    ], \n    \"metaphysicals\": [\n        \"NNS\"\n    ], \n    \"weather-royal\": [\n        \"JJ\"\n    ], \n    \"montage\": [\n        \"NN\"\n    ], \n    \"sale\": [\n        \"NN\"\n    ], \n    \"hugely\": [\n        \"RB\"\n    ], \n    \"market...\": [\n        \":\"\n    ], \n    \"not.\": [\n        \"NN\"\n    ], \n    \"salt\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mega-resorts\": [\n        \"NNS\"\n    ], \n    \"twinned\": [\n        \"VBN\"\n    ], \n    \"Broncos\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Merola\": [\n        \"NNP\"\n    ], \n    \"propagandist\": [\n        \"NN\"\n    ], \n    \"Mobs\": [\n        \"NNS\"\n    ], \n    \"slot\": [\n        \"NN\"\n    ], \n    \"weapons\": [\n        \"NNS\"\n    ], \n    \"slow\": [\n        \"JJ\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"slop\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tariff-reduction\": [\n        \"NN\"\n    ], \n    \"sloe\": [\n        \"NN\"\n    ], \n    \"tears\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slog\": [\n        \"VB\"\n    ], \n    \"four-letter\": [\n        \"JJ\"\n    ], \n    \"roustabout\": [\n        \"NN\"\n    ], \n    \"wilfully\": [\n        \"RB\"\n    ], \n    \"suggestions...\": [\n        \":\"\n    ], \n    \"long-settled\": [\n        \"JJ\"\n    ], \n    \"godlike\": [\n        \"JJ\"\n    ], \n    \"Meadowland\": [\n        \"NNP\"\n    ], \n    \"oil-and-gas\": [\n        \"JJ\"\n    ], \n    \"touch\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Presto\": [\n        \"FW\"\n    ], \n    \"tree-clumps\": [\n        \"NNS\"\n    ], \n    \"Roling\": [\n        \"NNP\"\n    ], \n    \"over-stored\": [\n        \"JJ\"\n    ], \n    \"drumlin\": [\n        \"NN\"\n    ], \n    \"Cowessett-East\": [\n        \"NNP\"\n    ], \n    \"Starkov\": [\n        \"NNP\"\n    ], \n    \"iron-poor\": [\n        \"JJ\"\n    ], \n    \"Admiralty\": [\n        \"NN\"\n    ], \n    \"infringes\": [\n        \"VBZ\"\n    ], \n    \"Conneaut\": [\n        \"NNP\"\n    ], \n    \"time-span\": [\n        \"NN\"\n    ], \n    \"artist\": [\n        \"NN\"\n    ], \n    \"borrow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"absurdly\": [\n        \"RB\"\n    ], \n    \"non-sales\": [\n        \"JJ\"\n    ], \n    \"Tripartite\": [\n        \"NNP\"\n    ], \n    \"overreaction\": [\n        \"NN\"\n    ], \n    \"Manchester\": [\n        \"NNP\"\n    ], \n    \"wheare\": [\n        \"WRB\"\n    ], \n    \"Frankenberry\": [\n        \"NNP\"\n    ], \n    \"marred\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Granath\": [\n        \"NNP\"\n    ], \n    \"Edmondson\": [\n        \"NNP\"\n    ], \n    \"Juniors\": [\n        \"NNS\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"subatomic\": [\n        \"JJ\"\n    ], \n    \"gangster\": [\n        \"NN\"\n    ], \n    \"Communist-type\": [\n        \"JJ\"\n    ], \n    \"Armory\": [\n        \"NNP\"\n    ], \n    \"no-one\": [\n        \"JJ\"\n    ], \n    \"purest\": [\n        \"JJS\"\n    ], \n    \"dysentery\": [\n        \"NN\"\n    ], \n    \"windshield\": [\n        \"NN\"\n    ], \n    \"Hempstead\": [\n        \"NNP\"\n    ], \n    \"diddle\": [\n        \"UH\"\n    ], \n    \"temporized\": [\n        \"VBD\"\n    ], \n    \"mops\": [\n        \"NNS\"\n    ], \n    \"demagnification\": [\n        \"NN\"\n    ], \n    \"Baja\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Allergan\": [\n        \"NNP\"\n    ], \n    \"scooting\": [\n        \"VBG\"\n    ], \n    \"jobs\": [\n        \"NNS\"\n    ], \n    \"ANNUITIES\": [\n        \"NNS\"\n    ], \n    \"Jervis\": [\n        \"NNP\"\n    ], \n    \"suppresses\": [\n        \"VBZ\"\n    ], \n    \"gratefully\": [\n        \"RB\"\n    ], \n    \"co-opting\": [\n        \"NN\"\n    ], \n    \"spare\": [\n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"spark\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"suppressed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"quack\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"deliciously\": [\n        \"RB\"\n    ], \n    \"Czechoslovak\": [\n        \"JJ\"\n    ], \n    \"residence\": [\n        \"NN\"\n    ], \n    \"jokers\": [\n        \"NNS\"\n    ], \n    \"Phipps\": [\n        \"NNP\"\n    ], \n    \"inclusions\": [\n        \"NNS\"\n    ], \n    \"residency\": [\n        \"NN\"\n    ], \n    \"now-defunct\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"conductorship\": [\n        \"NN\"\n    ], \n    \"flextime\": [\n        \"NN\"\n    ], \n    \"work-rule\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mortgage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Delaware\": [\n        \"NNP\"\n    ], \n    \"Comparing\": [\n        \"VBG\"\n    ], \n    \"amphobiles\": [\n        \"NNS\"\n    ], \n    \"boar\": [\n        \"NNS\"\n    ], \n    \"aerial\": [\n        \"JJ\"\n    ], \n    \"extinct\": [\n        \"JJ\"\n    ], \n    \"crew\": [\n        \"NN\"\n    ], \n    \"fungus-produced\": [\n        \"JJ\"\n    ], \n    \"boat\": [\n        \"NN\"\n    ], \n    \"fitful\": [\n        \"JJ\"\n    ], \n    \"sprays\": [\n        \"NNS\"\n    ], \n    \"submerging\": [\n        \"VBG\"\n    ], \n    \"stretch\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"mounting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"locally\": [\n        \"RB\"\n    ], \n    \"mutinous\": [\n        \"JJ\"\n    ], \n    \"Sardinia\": [\n        \"NNP\"\n    ], \n    \"twin-line\": [\n        \"JJ\"\n    ], \n    \"theaf\": [\n        \"NN\"\n    ], \n    \"diatribe\": [\n        \"NN\"\n    ], \n    \"Replied\": [\n        \"VBD\"\n    ], \n    \"Pacific-listed\": [\n        \"JJ\"\n    ], \n    \"Hebert\": [\n        \"NNP\"\n    ], \n    \"Varnell\": [\n        \"NNP\"\n    ], \n    \"Whenever\": [\n        \"WRB\"\n    ], \n    \"seniority-list\": [\n        \"NN\"\n    ], \n    \"chlorofluorocarbon\": [\n        \"NN\"\n    ], \n    \"non-exclusive\": [\n        \"JJ\"\n    ], \n    \"Play\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"chatty\": [\n        \"JJ\"\n    ], \n    \"unclouded\": [\n        \"JJ\"\n    ], \n    \"jute\": [\n        \"NN\"\n    ], \n    \"eschews\": [\n        \"VBZ\"\n    ], \n    \"pacers\": [\n        \"NNS\"\n    ], \n    \"dressy\": [\n        \"JJ\"\n    ], \n    \"re-energized\": [\n        \"JJ\"\n    ], \n    \"relic\": [\n        \"NN\"\n    ], \n    \"constituency\": [\n        \"NN\"\n    ], \n    \"region\": [\n        \"NN\"\n    ], \n    \"moorings\": [\n        \"NNS\"\n    ], \n    \"Londonderry\": [\n        \"NNP\"\n    ], \n    \"prevalence\": [\n        \"NN\"\n    ], \n    \"warehouse-club\": [\n        \"NN\"\n    ], \n    \"less-creditworthy\": [\n        \"JJ\"\n    ], \n    \"speedway\": [\n        \"NN\"\n    ], \n    \"NT&SA\": [\n        \"NNP\"\n    ], \n    \"Prettier\": [\n        \"JJR\"\n    ], \n    \"Airy\": [\n        \"JJ\"\n    ], \n    \"minimum-fee\": [\n        \"JJ\"\n    ], \n    \"undiversifiable\": [\n        \"JJ\"\n    ], \n    \"compatriots\": [\n        \"NNS\"\n    ], \n    \"DuVol\": [\n        \"NNP\"\n    ], \n    \"Towards\": [\n        \"NNP\", \n        \"IN\"\n    ], \n    \"propagation\": [\n        \"NN\"\n    ], \n    \"threatens\": [\n        \"VBZ\"\n    ], \n    \"scientifically\": [\n        \"RB\"\n    ], \n    \"surveillance\": [\n        \"NN\"\n    ], \n    \"Freddie\": [\n        \"NNP\"\n    ], \n    \"Borglum\": [\n        \"NNP\"\n    ], \n    \"underestimate\": [\n        \"VB\"\n    ], \n    \"ARISE\": [\n        \"VBP\"\n    ], \n    \"pre-introduction\": [\n        \"JJ\"\n    ], \n    \"glutting\": [\n        \"VBG\"\n    ], \n    \"Readiness\": [\n        \"NN\"\n    ], \n    \"reverts\": [\n        \"VBZ\"\n    ], \n    \"snarls\": [\n        \"NNS\"\n    ], \n    \"births\": [\n        \"NNS\"\n    ], \n    \"domineering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Bathyrans\": [\n        \"NNPS\"\n    ], \n    \"near-unmatched\": [\n        \"JJ\"\n    ], \n    \"culled\": [\n        \"VBN\"\n    ], \n    \"tumor-necrosis\": [\n        \"JJ\"\n    ], \n    \"Jiaqi\": [\n        \"NNP\"\n    ], \n    \"blind-pool\": [\n        \"JJ\"\n    ], \n    \"hubba\": [\n        \"UH\"\n    ], \n    \"Colorful\": [\n        \"JJ\"\n    ], \n    \"driftwood\": [\n        \"NN\"\n    ], \n    \"Holies\": [\n        \"NNPS\"\n    ], \n    \"Displacement\": [\n        \"NN\"\n    ], \n    \"Holien\": [\n        \"NNP\"\n    ], \n    \"Sonet-based\": [\n        \"JJ\"\n    ], \n    \"color-field\": [\n        \"JJ\"\n    ], \n    \"PWA\": [\n        \"NNP\"\n    ], \n    \"wraith-like\": [\n        \"JJ\"\n    ], \n    \"Lucerne\": [\n        \"NNP\"\n    ], \n    \"hubby\": [\n        \"NN\"\n    ], \n    \"exacerbations\": [\n        \"NNS\"\n    ], \n    \"distills\": [\n        \"VBZ\"\n    ], \n    \"sprayed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"white-shoe\": [\n        \"JJ\"\n    ], \n    \"slime\": [\n        \"NN\"\n    ], \n    \"Sokolev\": [\n        \"NNP\"\n    ], \n    \"attorney-consultant\": [\n        \"NN\"\n    ], \n    \"amalgamate\": [\n        \"VB\"\n    ], \n    \"slimy\": [\n        \"JJ\"\n    ], \n    \"propfan\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"three-hour-show\": [\n        \"NN\"\n    ], \n    \"pols\": [\n        \"NNS\"\n    ], \n    \"omissions\": [\n        \"NNS\"\n    ], \n    \"inaudible\": [\n        \"JJ\"\n    ], \n    \"TEXAS\": [\n        \"NNP\"\n    ], \n    \"Louchheim\": [\n        \"NNP\"\n    ], \n    \"briefings\": [\n        \"NNS\"\n    ], \n    \"unprovocative\": [\n        \"JJ\"\n    ], \n    \"color\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Morfey\": [\n        \"NNP\"\n    ], \n    \"antagonisms\": [\n        \"NNS\"\n    ], \n    \"Takamori\": [\n        \"NNP\"\n    ], \n    \"Artemisia\": [\n        \"NNP\"\n    ], \n    \"Nicastro\": [\n        \"NNP\"\n    ], \n    \"TBWA\": [\n        \"NNP\"\n    ], \n    \"Secondly\": [\n        \"RB\"\n    ], \n    \"Tripe\": [\n        \"NNP\"\n    ], \n    \"Adjournment\": [\n        \"NN\"\n    ], \n    \"Nile\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Perfume\": [\n        \"NN\"\n    ], \n    \"Richert\": [\n        \"NNP\"\n    ], \n    \"transcended\": [\n        \"VBD\"\n    ], \n    \"comrade\": [\n        \"NN\"\n    ], \n    \"boycotted\": [\n        \"VBN\"\n    ], \n    \"Sherwood\": [\n        \"NNP\"\n    ], \n    \"cash-draw\": [\n        \"JJ\"\n    ], \n    \"partaking\": [\n        \"VBG\"\n    ], \n    \"Beirut-on-Hudson\": [\n        \"NNP\"\n    ], \n    \"expunge\": [\n        \"VB\"\n    ], \n    \"nutrients\": [\n        \"NNS\"\n    ], \n    \"Dubois\": [\n        \"NNP\"\n    ], \n    \"destigmatization\": [\n        \"NN\"\n    ], \n    \"Augustus\": [\n        \"NNP\"\n    ], \n    \"discarded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"tsunami\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Beall\": [\n        \"NNP\"\n    ], \n    \"Fourtou\": [\n        \"NNP\"\n    ], \n    \"pundits\": [\n        \"NNS\"\n    ], \n    \"glycol\": [\n        \"NN\"\n    ], \n    \"HOMESTEAD\": [\n        \"NNP\"\n    ], \n    \"Beale\": [\n        \"NNP\"\n    ], \n    \"Soukhouma\": [\n        \"NNP\"\n    ], \n    \"auditorium\": [\n        \"NN\"\n    ], \n    \"bankruptcies\": [\n        \"NNS\"\n    ], \n    \"most-used\": [\n        \"JJ\"\n    ], \n    \"curator\": [\n        \"NN\"\n    ], \n    \"Stockgrowers\": [\n        \"NNPS\"\n    ], \n    \"Delaney\": [\n        \"NNP\"\n    ], \n    \"Rubinfien\": [\n        \"NNP\"\n    ], \n    \"sweetest-tasting\": [\n        \"JJ\"\n    ], \n    \"conscionable\": [\n        \"JJ\"\n    ], \n    \"JACKPOT\": [\n        \"NNP\"\n    ], \n    \"Ruidoso\": [\n        \"NNP\"\n    ], \n    \"noon\": [\n        \"NN\"\n    ], \n    \"attacks.\": [\n        \"NN\"\n    ], \n    \"searing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ventilation\": [\n        \"NN\"\n    ], \n    \"abusable\": [\n        \"JJ\"\n    ], \n    \"Orthopedic\": [\n        \"NNP\"\n    ], \n    \"exit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"forecasted\": [\n        \"VBN\"\n    ], \n    \"dissociates\": [\n        \"VBZ\"\n    ], \n    \"hand-written\": [\n        \"JJ\"\n    ], \n    \"DeTomaso\": [\n        \"NNP\"\n    ], \n    \"Daimler\": [\n        \"NNP\"\n    ], \n    \"ex-prison\": [\n        \"NN\"\n    ], \n    \"scientific\": [\n        \"JJ\"\n    ], \n    \"power\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"intimate\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Carrot\": [\n        \"NNP\"\n    ], \n    \"Meisenheimer\": [\n        \"NNP\"\n    ], \n    \"solar-wind\": [\n        \"NN\"\n    ], \n    \"Glenda\": [\n        \"NNP\"\n    ], \n    \"travelin\": [\n        \"VBG\"\n    ], \n    \"product-development\": [\n        \"NN\"\n    ], \n    \"treatable\": [\n        \"JJ\"\n    ], \n    \"favorite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kysor\": [\n        \"NNP\"\n    ], \n    \"slender\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Riunite\": [\n        \"NNP\"\n    ], \n    \"J.N.\": [\n        \"NNP\"\n    ], \n    \"stipulations\": [\n        \"NNS\"\n    ], \n    \"lower-status\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"independent-minded\": [\n        \"JJ\"\n    ], \n    \"Losers\": [\n        \"NNS\"\n    ], \n    \"localism\": [\n        \"NN\"\n    ], \n    \"lofty\": [\n        \"JJ\"\n    ], \n    \"irreversibly\": [\n        \"RB\"\n    ], \n    \"crewcut\": [\n        \"NN\"\n    ], \n    \"Beaten\": [\n        \"VBN\"\n    ], \n    \"T-bond\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"policy-coordination\": [\n        \"NN\"\n    ], \n    \"accumulates\": [\n        \"VBZ\"\n    ], \n    \"Branman\": [\n        \"NNP\"\n    ], \n    \"Acting\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"motor-home\": [\n        \"NN\"\n    ], \n    \"certifying\": [\n        \"VBG\"\n    ], \n    \"bargain-basement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"accumulated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"coupe\": [\n        \"NN\"\n    ], \n    \"Guadeloupe\": [\n        \"NNP\"\n    ], \n    \"simulcasting\": [\n        \"VBG\"\n    ], \n    \"Wilcock\": [\n        \"NNP\"\n    ], \n    \"Queenan\": [\n        \"NNP\"\n    ], \n    \"draft-avoidance\": [\n        \"NN\"\n    ], \n    \"Benched\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"stylishly\": [\n        \"RB\"\n    ], \n    \"bulk-buying\": [\n        \"JJ\"\n    ], \n    \"semi-ambiguous\": [\n        \"JJ\"\n    ], \n    \"Feinstein\": [\n        \"NNP\"\n    ], \n    \"percussive\": [\n        \"JJ\"\n    ], \n    \"convertibility\": [\n        \"NN\"\n    ], \n    \"mollify\": [\n        \"VB\"\n    ], \n    \"viscous\": [\n        \"JJ\"\n    ], \n    \"innovated\": [\n        \"VBD\"\n    ], \n    \"BUILDING\": [\n        \"NNP\"\n    ], \n    \"complete\": [\n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"fifth-century\": [\n        \"JJ\"\n    ], \n    \"Bum\": [\n        \"NNP\"\n    ], \n    \"self-images\": [\n        \"NN\"\n    ], \n    \"Steuben\": [\n        \"NNP\"\n    ], \n    \"made-for-television\": [\n        \"JJ\"\n    ], \n    \"prostitution..\": [\n        \"NN\"\n    ], \n    \"mice\": [\n        \"NNS\"\n    ], \n    \"aide\": [\n        \"NN\"\n    ], \n    \"cords\": [\n        \"NNS\"\n    ], \n    \"mica\": [\n        \"NN\"\n    ], \n    \"superego\": [\n        \"NN\"\n    ], \n    \"darken\": [\n        \"VBP\"\n    ], \n    \"pajama-clad\": [\n        \"JJ\"\n    ], \n    \"microphoning\": [\n        \"VBG\"\n    ], \n    \"couching\": [\n        \"VBG\"\n    ], \n    \"Bug\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fruitfulness\": [\n        \"NN\"\n    ], \n    \"stonily\": [\n        \"RB\"\n    ], \n    \"self-perceived\": [\n        \"JJ\"\n    ], \n    \"darker\": [\n        \"JJR\"\n    ], \n    \"Anglia\": [\n        \"NNP\"\n    ], \n    \"brotherly\": [\n        \"JJ\"\n    ], \n    \"exhausted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"savers\\\\/investors\": [\n        \"NNS\"\n    ], \n    \"accents\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"wartime\": [\n        \"NN\"\n    ], \n    \"Showmanship\": [\n        \"NN\"\n    ], \n    \"washings\": [\n        \"NNS\"\n    ], \n    \"hoodlum\": [\n        \"NN\"\n    ], \n    \"Criterion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"McRaney\": [\n        \"NNP\"\n    ], \n    \"clauses\": [\n        \"NNS\"\n    ], \n    \"Barbary\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"subjugating\": [\n        \"VBG\"\n    ], \n    \"exile\\\\/trade\": [\n        \"NN\"\n    ], \n    \"nuclear-tipped\": [\n        \"JJ\"\n    ], \n    \"Acorns\": [\n        \"NNS\"\n    ], \n    \"hollowness\": [\n        \"NN\"\n    ], \n    \"abolish\": [\n        \"VB\"\n    ], \n    \"Stensrud\": [\n        \"NNP\"\n    ], \n    \"Preussag\": [\n        \"NNP\"\n    ], \n    \"pre-kindergarten\": [\n        \"NN\"\n    ], \n    \"predestined\": [\n        \"VBN\"\n    ], \n    \"grammarians\": [\n        \"NNS\"\n    ], \n    \"pollutants\": [\n        \"NNS\"\n    ], \n    \"Bullshit\": [\n        \"UH\"\n    ], \n    \"standardize\": [\n        \"VB\"\n    ], \n    \"forgettable\": [\n        \"JJ\"\n    ], \n    \"non-Japanese\": [\n        \"JJ\"\n    ], \n    \"bombed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"vigilantism\": [\n        \"NN\"\n    ], \n    \"Visscher\": [\n        \"NNP\"\n    ], \n    \"Practical\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Cardiff\": [\n        \"NNP\"\n    ], \n    \"Glove\": [\n        \"NNP\"\n    ], \n    \"Nonspecific\": [\n        \"JJ\"\n    ], \n    \"Pease\": [\n        \"NNP\"\n    ], \n    \"Greentree\": [\n        \"NNP\"\n    ], \n    \"principally\": [\n        \"RB\"\n    ], \n    \"disdained\": [\n        \"VBN\"\n    ], \n    \"BLAST\": [\n        \"NN\"\n    ], \n    \"Fordham\": [\n        \"NNP\"\n    ], \n    \"Sparrow-size\": [\n        \"NNP\"\n    ], \n    \"mocking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"groom\": [\n        \"NN\"\n    ], \n    \"Ascent\": [\n        \"NNP\"\n    ], \n    \"wag\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"counterweight\": [\n        \"NN\"\n    ], \n    \"fraudulent\": [\n        \"JJ\"\n    ], \n    \"immunoglobulin\": [\n        \"NN\"\n    ], \n    \"Rychard\": [\n        \"NNP\"\n    ], \n    \"Artur\": [\n        \"NNP\"\n    ], \n    \"oppressors\": [\n        \"NNS\"\n    ], \n    \"splicing\": [\n        \"VBG\"\n    ], \n    \"influenza\": [\n        \"NN\"\n    ], \n    \"consider\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Knowledgeware\": [\n        \"NNP\"\n    ], \n    \"Physiological\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"worker-years\": [\n        \"NNS\"\n    ], \n    \"weariness\": [\n        \"NN\"\n    ], \n    \"Usinor-Sacilor\": [\n        \"NNP\"\n    ], \n    \"Boutflower\": [\n        \"NNP\"\n    ], \n    \"tours\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"aflatoxin-producing\": [\n        \"JJ\"\n    ], \n    \"Syllabification\": [\n        \"NN\"\n    ], \n    \"GROWS\": [\n        \"VBZ\"\n    ], \n    \"Y-cell\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Earthquake-related\": [\n        \"JJ\"\n    ], \n    \"Rooker\": [\n        \"NNP\"\n    ], \n    \"fjords\": [\n        \"NNS\"\n    ], \n    \"look-see\": [\n        \"NN\"\n    ], \n    \"Barbara\": [\n        \"NNP\"\n    ], \n    \"Evil\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"state-plan\": [\n        \"JJ\"\n    ], \n    \"Kingsley\": [\n        \"NNP\"\n    ], \n    \"smile\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"wad\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Colby\": [\n        \"NNP\"\n    ], \n    \"detestation\": [\n        \"NN\"\n    ], \n    \"Ollie\": [\n        \"NNP\"\n    ], \n    \"BREAKERS\": [\n        \"NNP\"\n    ], \n    \"Shaffner\": [\n        \"NN\"\n    ], \n    \"encroaching\": [\n        \"VBG\"\n    ], \n    \"blebs\": [\n        \"NNS\"\n    ], \n    \"strand\": [\n        \"NN\"\n    ], \n    \"anxiety-released\": [\n        \"NN\"\n    ], \n    \"Fassbinder\": [\n        \"NNP\"\n    ], \n    \"misinformation\": [\n        \"NN\"\n    ], \n    \"laying\": [\n        \"VBG\", \n        \"NN\", \n        \",\"\n    ], \n    \"weatherman\": [\n        \"NN\"\n    ], \n    \"Lycra\": [\n        \"NNP\"\n    ], \n    \"Rodding\": [\n        \"NN\"\n    ], \n    \"swirling\": [\n        \"VBG\"\n    ], \n    \"wind-and-water\": [\n        \"JJ\"\n    ], \n    \"CONSUMER\": [\n        \"NN\"\n    ], \n    \"blue-blooded\": [\n        \"JJ\"\n    ], \n    \"Gasich\": [\n        \"NNP\"\n    ], \n    \"teacher-employee\": [\n        \"NN\"\n    ], \n    \"tricolor\": [\n        \"JJ\"\n    ], \n    \"Nolen\": [\n        \"NNP\"\n    ], \n    \"destitute\": [\n        \"JJ\"\n    ], \n    \"cabin-crew\": [\n        \"NNS\"\n    ], \n    \"near-blind\": [\n        \"JJ\"\n    ], \n    \"antibody-producing\": [\n        \"JJ\"\n    ], \n    \"million-square-foot\": [\n        \"JJ\"\n    ], \n    \"Bourn\": [\n        \"NNP\"\n    ], \n    \"decimeter-wave-length\": [\n        \"NN\"\n    ], \n    \"dispassionately\": [\n        \"RB\"\n    ], \n    \"disruptions\": [\n        \"NNS\"\n    ], \n    \"resume\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Capo\": [\n        \"NNP\"\n    ], \n    \"succinct\": [\n        \"JJ\"\n    ], \n    \"consumer-driven\": [\n        \"JJ\"\n    ], \n    \"Cape\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"high-purity\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jiang\": [\n        \"NNP\"\n    ], \n    \"trampling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"N.A.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Newhouse\": [\n        \"NNP\"\n    ], \n    \"concluding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"outdone\": [\n        \"VBN\"\n    ], \n    \"reshaped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stirke\": [\n        \"NN\"\n    ], \n    \"showrooms\": [\n        \"NNS\"\n    ], \n    \"Korbin\": [\n        \"NNP\"\n    ], \n    \"roadways\": [\n        \"NNS\"\n    ], \n    \"reshapes\": [\n        \"VBZ\"\n    ], \n    \"infrequently\": [\n        \"RB\"\n    ], \n    \"healthier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"acquittal\": [\n        \"NN\"\n    ], \n    \"social\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sweetness\": [\n        \"NN\"\n    ], \n    \"underrate\": [\n        \"VB\"\n    ], \n    \"Circuit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Marne\": [\n        \"NNP\"\n    ], \n    \"mortgaged-backed\": [\n        \"JJ\"\n    ], \n    \"apprised\": [\n        \"VBN\"\n    ], \n    \"regiment\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"whimsically\": [\n        \"RB\"\n    ], \n    \"cargo\": [\n        \"NN\"\n    ], \n    \"compensations\": [\n        \"NNS\"\n    ], \n    \"decrement\": [\n        \"NN\"\n    ], \n    \"old-model\": [\n        \"JJ\"\n    ], \n    \"debunking\": [\n        \"NN\"\n    ], \n    \"Nutritionists\": [\n        \"NNS\"\n    ], \n    \"Md.\": [\n        \"NNP\"\n    ], \n    \"fetuses\": [\n        \"NNS\"\n    ], \n    \"catch-all\": [\n        \"JJ\"\n    ], \n    \"twister-coners\": [\n        \"NNS\"\n    ], \n    \"objectives\": [\n        \"NNS\"\n    ], \n    \"Romano\": [\n        \"NNP\"\n    ], \n    \"poodle\": [\n        \"NN\"\n    ], \n    \"maltreat\": [\n        \"VBP\"\n    ], \n    \"Romans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"polecat\": [\n        \"NN\"\n    ], \n    \"Stehlin\": [\n        \"NNP\"\n    ], \n    \"Newport-based\": [\n        \"JJ\"\n    ], \n    \"gas-company\": [\n        \"NN\"\n    ], \n    \"waterways\": [\n        \"NNS\"\n    ], \n    \"emission\": [\n        \"NN\"\n    ], \n    \"Janssen\": [\n        \"NNP\"\n    ], \n    \"Quebeckers\": [\n        \"NNPS\"\n    ], \n    \"S-s-sahjunt\": [\n        \"NN\"\n    ], \n    \"citizenry\": [\n        \"NN\"\n    ], \n    \"Leason\": [\n        \"NNP\"\n    ], \n    \"Yeung\": [\n        \"NNP\"\n    ], \n    \"normative\": [\n        \"JJ\"\n    ], \n    \"Then-Navy\": [\n        \"NNP\"\n    ], \n    \"Tiffany\": [\n        \"NNP\"\n    ], \n    \"classificatory\": [\n        \"JJ\"\n    ], \n    \"Perelman\": [\n        \"NNP\"\n    ], \n    \"abundant\": [\n        \"JJ\"\n    ], \n    \"Manly\": [\n        \"NNP\"\n    ], \n    \"toughened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"punched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bayreuth\": [\n        \"NNP\"\n    ], \n    \"safe-deposit\": [\n        \"JJ\"\n    ], \n    \"concessionaire\": [\n        \"NN\"\n    ], \n    \"libertines\": [\n        \"NNS\"\n    ], \n    \"nationhood\": [\n        \"NN\"\n    ], \n    \"gristmill\": [\n        \"NN\"\n    ], \n    \"CARIPLO\": [\n        \"NNP\"\n    ], \n    \"tea-leaf\": [\n        \"NN\"\n    ], \n    \"salty\": [\n        \"JJ\"\n    ], \n    \"profit-maximizing\": [\n        \"JJ\"\n    ], \n    \"Saville\": [\n        \"NNP\"\n    ], \n    \"dress\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Castro-led\": [\n        \"JJ\"\n    ], \n    \"salts\": [\n        \"NNS\"\n    ], \n    \"condemn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pagurian\": [\n        \"NNP\"\n    ], \n    \"Mountaineer\": [\n        \"NNP\"\n    ], \n    \"trebled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"emancipated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"fruition\": [\n        \"NN\"\n    ], \n    \"ungoverned\": [\n        \"JJ\"\n    ], \n    \"functioning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"metalworkers\": [\n        \"NNS\"\n    ], \n    \"BanPonce\": [\n        \"NNP\"\n    ], \n    \"tab-lifter\": [\n        \"NN\"\n    ], \n    \"appanage\": [\n        \"NN\"\n    ], \n    \"Instantaneously\": [\n        \"RB\"\n    ], \n    \"asset-valuation\": [\n        \"NN\"\n    ], \n    \"appealed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"flutter\": [\n        \"NN\"\n    ], \n    \"snotty\": [\n        \"JJ\"\n    ], \n    \"Taoist\": [\n        \"NNP\"\n    ], \n    \"Market-If-Touched\": [\n        \"NNP\"\n    ], \n    \"childbearing\": [\n        \"VBG\"\n    ], \n    \"larceny\": [\n        \"NN\"\n    ], \n    \"manipulated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"earnings-growth\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"impermissible\": [\n        \"JJ\"\n    ], \n    \"penury\": [\n        \"NN\"\n    ], \n    \"Hathcock\": [\n        \"NNP\"\n    ], \n    \"re-enforces\": [\n        \"VBZ\"\n    ], \n    \"Lyman\": [\n        \"NNP\"\n    ], \n    \"pear-shaped\": [\n        \"JJ\"\n    ], \n    \"incessantly\": [\n        \"RB\"\n    ], \n    \"yellow-green\": [\n        \"JJ\"\n    ], \n    \"Bluebonnet\": [\n        \"NNP\"\n    ], \n    \"guaranteed-neutral\": [\n        \"JJ\"\n    ], \n    \"Serv-Air\": [\n        \"NNP\"\n    ], \n    \"bulldozers\": [\n        \"NNS\"\n    ], \n    \"Thorndike\": [\n        \"NNP\"\n    ], \n    \"Zweig\": [\n        \"NNP\"\n    ], \n    \"ruble\\\\/gold\": [\n        \"JJ\"\n    ], \n    \"Copperweld\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"behahn\": [\n        \"RB\"\n    ], \n    \"Fixed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"rapidly\": [\n        \"RB\"\n    ], \n    \"laddered\": [\n        \"JJ\"\n    ], \n    \"nystatin\": [\n        \"NN\"\n    ], \n    \"face-amount\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ruining\": [\n        \"VBG\"\n    ], \n    \"Sischy\": [\n        \"NNP\"\n    ], \n    \"snobs\": [\n        \"NNS\"\n    ], \n    \"tyrants\": [\n        \"NNS\"\n    ], \n    \"secondarily\": [\n        \"RB\"\n    ], \n    \"O.B.\": [\n        \"NNP\"\n    ], \n    \"Nozze\": [\n        \"FW\"\n    ], \n    \"snowball\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"renegotiations\": [\n        \"NNS\"\n    ], \n    \"outlawing\": [\n        \"VBG\"\n    ], \n    \"Dwellers\": [\n        \"NNS\"\n    ], \n    \"reticent\": [\n        \"JJ\"\n    ], \n    \"reassured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"defense-appropriations\": [\n        \"JJ\"\n    ], \n    \"shifty\": [\n        \"JJ\"\n    ], \n    \"Loman\": [\n        \"NNP\"\n    ], \n    \"war\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"double-A-1\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"coping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Universal-Morning\": [\n        \"NNP\"\n    ], \n    \"labeling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Ricca\": [\n        \"NNP\"\n    ], \n    \"Connections\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Bolshevistic\": [\n        \"JJ\"\n    ], \n    \"Lomax\": [\n        \"NNP\"\n    ], \n    \"floors\": [\n        \"NNS\"\n    ], \n    \"cratered\": [\n        \"VBN\"\n    ], \n    \"Seltzer\": [\n        \"NNP\"\n    ], \n    \"Lomas\": [\n        \"NNP\"\n    ], \n    \"Quinlan\": [\n        \"NNP\"\n    ], \n    \"marry\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"execs\": [\n        \"NNS\"\n    ], \n    \"airconditioner\": [\n        \"JJR\"\n    ], \n    \"incinerators\": [\n        \"NNS\"\n    ], \n    \"prophesying\": [\n        \"VBG\"\n    ], \n    \"Oldham\": [\n        \"NNP\"\n    ], \n    \"grandmothers\": [\n        \"NNS\"\n    ], \n    \"gene-therapy\": [\n        \"NN\"\n    ], \n    \"Inmate\": [\n        \"NNP\"\n    ], \n    \"hay-wagon\": [\n        \"NN\"\n    ], \n    \"newspaper-delivery\": [\n        \"NN\"\n    ], \n    \"blues\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"office-systems\": [\n        \"NNS\"\n    ], \n    \"scribe\": [\n        \"NN\"\n    ], \n    \"terrify\": [\n        \"VB\"\n    ], \n    \"really\": [\n        \"RB\"\n    ], \n    \"Morale\": [\n        \"NN\"\n    ], \n    \"tailback\": [\n        \"NN\"\n    ], \n    \"mark-up\": [\n        \"NN\"\n    ], \n    \"midcontinent\": [\n        \"JJ\"\n    ], \n    \"Dion\": [\n        \"NNP\"\n    ], \n    \"once-high-flying\": [\n        \"JJ\"\n    ], \n    \"Contrast\": [\n        \"NN\"\n    ], \n    \"norske\": [\n        \"NNP\"\n    ], \n    \"Flaming\": [\n        \"NNP\"\n    ], \n    \"NewsEdge\": [\n        \"NNP\"\n    ], \n    \"Ostro\": [\n        \"NNP\"\n    ], \n    \"Toyota\": [\n        \"NNP\"\n    ], \n    \"antisera\": [\n        \"NN\"\n    ], \n    \"blue-draped\": [\n        \"JJ\"\n    ], \n    \"cockpit\": [\n        \"NN\"\n    ], \n    \"pickaxe\": [\n        \"NN\"\n    ], \n    \"shop-till-you-drop\": [\n        \"JJ\"\n    ], \n    \"Peacekeeper\": [\n        \"NNP\"\n    ], \n    \"P.J.\": [\n        \"NNP\"\n    ], \n    \"figures-order\": [\n        \"NNS|NN\"\n    ], \n    \"looseness\": [\n        \"NN\"\n    ], \n    \"reared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"retained\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"TBS\": [\n        \"NNP\"\n    ], \n    \"misusing\": [\n        \"VBG\"\n    ], \n    \"give-and-take\": [\n        \"NN\"\n    ], \n    \"afflictions\": [\n        \"NNS\"\n    ], \n    \"retainer\": [\n        \"NN\"\n    ], \n    \"Lausanne\": [\n        \"NNP\"\n    ], \n    \"first-grader\": [\n        \"NN\"\n    ], \n    \"unmanned\": [\n        \"JJ\"\n    ], \n    \"company-sponsored\": [\n        \"JJ\"\n    ], \n    \"clump\": [\n        \"NN\"\n    ], \n    \"exhibited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"two-letter\": [\n        \"JJ\"\n    ], \n    \"purhasing\": [\n        \"NN\"\n    ], \n    \"Alwin\": [\n        \"NNP\"\n    ], \n    \"A\\\\/S\": [\n        \"NNP\"\n    ], \n    \"Combs\": [\n        \"NNP\"\n    ], \n    \"Garrick\": [\n        \"NNP\"\n    ], \n    \"sit-down\": [\n        \"JJ\"\n    ], \n    \"adduce\": [\n        \"VB\"\n    ], \n    \"stumpage\": [\n        \"NN\"\n    ], \n    \"Combo\": [\n        \"NNP\"\n    ], \n    \"Topper\": [\n        \"NNP\"\n    ], \n    \"ironing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Combe\": [\n        \"NNP\"\n    ], \n    \"Iglehart\": [\n        \"NNP\"\n    ], \n    \"Ghettos\": [\n        \"NNPS\"\n    ], \n    \"franked\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"exertions\": [\n        \"NNS\"\n    ], \n    \"Transportation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"probity\": [\n        \"NN\"\n    ], \n    \"lengthiest\": [\n        \"JJS\"\n    ], \n    \"Cosma\": [\n        \"NNP\"\n    ], \n    \"Enterprises\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"flings\": [\n        \"NNS\"\n    ], \n    \"franker\": [\n        \"JJR\"\n    ], \n    \"Nonfat\": [\n        \"NNP\"\n    ], \n    \"degassed\": [\n        \"VBN\"\n    ], \n    \"Tracor\": [\n        \"NNP\"\n    ], \n    \"Underwriter\": [\n        \"NNP\"\n    ], \n    \"depressingly\": [\n        \"RB\"\n    ], \n    \"philantropists\": [\n        \"NNS\"\n    ], \n    \"two-bedroom\": [\n        \"JJ\"\n    ], \n    \"Catherwood\": [\n        \"NNP\"\n    ], \n    \"Mesa\": [\n        \"NNP\"\n    ], \n    \"Reinforced\": [\n        \"NNP\"\n    ], \n    \"B&B\": [\n        \"NNP\"\n    ], \n    \"Clausen\": [\n        \"NNP\"\n    ], \n    \"guanidine\": [\n        \"NN\"\n    ], \n    \"Kramer\": [\n        \"NNP\"\n    ], \n    \"B&H\": [\n        \"NNP\"\n    ], \n    \"less-indomitable\": [\n        \"JJ\"\n    ], \n    \"defends\": [\n        \"VBZ\"\n    ], \n    \"Vivaldi-at-brunch\": [\n        \"JJ\"\n    ], \n    \"B&W\": [\n        \"NNP\"\n    ], \n    \"Freind\": [\n        \"NNP\"\n    ], \n    \"Nowadays\": [\n        \"RB\"\n    ], \n    \"stickiness\": [\n        \"NN\"\n    ], \n    \"Rican-American\": [\n        \"NNP\"\n    ], \n    \"Connell\": [\n        \"NNP\"\n    ], \n    \"Yigal\": [\n        \"NNP\"\n    ], \n    \"hams\": [\n        \"NNS\"\n    ], \n    \"precipitating\": [\n        \"VBG\"\n    ], \n    \"gasket\": [\n        \"NN\"\n    ], \n    \"pranksters\": [\n        \"NNS\"\n    ], \n    \"Sesit\": [\n        \"NNP\"\n    ], \n    \"Rockwell\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pajamas\": [\n        \"NNS\"\n    ], \n    \"carbon-impregnated\": [\n        \"JJ\"\n    ], \n    \"craft-industrial\": [\n        \"JJ\"\n    ], \n    \"directives\": [\n        \"NNS\"\n    ], \n    \"mill-pond\": [\n        \"NN\"\n    ], \n    \"Leopold\": [\n        \"NNP\"\n    ], \n    \"Erection\": [\n        \"NNP\"\n    ], \n    \"taxidermist\": [\n        \"NN\"\n    ], \n    \"flatnesses\": [\n        \"NNS\"\n    ], \n    \"probability\": [\n        \"NN\"\n    ], \n    \"firsthand\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"swiftly\": [\n        \"RB\"\n    ], \n    \"Wards\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"anti-takeover\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"offensively\": [\n        \"RB\"\n    ], \n    \"Zaishuo\": [\n        \"NNP\"\n    ], \n    \"salinity\": [\n        \"NN\"\n    ], \n    \"Lumped\": [\n        \"VBN\"\n    ], \n    \"Munroe\": [\n        \"NNP\"\n    ], \n    \"semiconductor-manufacturing\": [\n        \"NN\"\n    ], \n    \"donkeys\": [\n        \"NNS\"\n    ], \n    \"Securities-trading\": [\n        \"JJ\"\n    ], \n    \"paper-shuffling\": [\n        \"NN\"\n    ], \n    \"Amerace\": [\n        \"NNP\"\n    ], \n    \"have-not\": [\n        \"JJ\"\n    ], \n    \"clog\": [\n        \"VB\"\n    ], \n    \"frocks\": [\n        \"NNS\"\n    ], \n    \"Post-tragedy\": [\n        \"RB\"\n    ], \n    \"friable\": [\n        \"JJ\"\n    ], \n    \"Ahmanson\": [\n        \"NNP\"\n    ], \n    \"alcohol-powered\": [\n        \"JJ\"\n    ], \n    \"Noonday\": [\n        \"NNP\"\n    ], \n    \"Kingdom\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"spineless\": [\n        \"JJ\"\n    ], \n    \"Muslim\": [\n        \"NNP\"\n    ], \n    \"misplacements\": [\n        \"NNS\"\n    ], \n    \"ELECTED\": [\n        \"VBD\"\n    ], \n    \"younguh\": [\n        \"JJR\"\n    ], \n    \"Revivals\": [\n        \"NNS\"\n    ], \n    \"PW-4000\": [\n        \"NN\"\n    ], \n    \"financial-services\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"occuring\": [\n        \"VBG\"\n    ], \n    \"beams\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ever-worsening\": [\n        \"JJ\"\n    ], \n    \"adheres\": [\n        \"VBZ\"\n    ], \n    \"anti-Somoza\": [\n        \"JJ\"\n    ], \n    \"devising\": [\n        \"VBG\"\n    ], \n    \"adhered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"steel-casting\": [\n        \"JJ\"\n    ], \n    \"untreated\": [\n        \"JJ\"\n    ], \n    \"Shietz\": [\n        \"NNP\"\n    ], \n    \"Richmond-Petersburg\": [\n        \"NNP\"\n    ], \n    \"railbiker\": [\n        \"NN\"\n    ], \n    \"riven\": [\n        \"VBN\"\n    ], \n    \"tumult\": [\n        \"NN\"\n    ], \n    \"tabby\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Athlone\": [\n        \"NNP\"\n    ], \n    \"proclaim\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"IBEW\": [\n        \"NNP\"\n    ], \n    \"river\": [\n        \"NN\"\n    ], \n    \"mineralogical\": [\n        \"JJ\"\n    ], \n    \"Grattan\": [\n        \"NNP\"\n    ], \n    \"creator\": [\n        \"NN\"\n    ], \n    \"nibble\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"picketers\": [\n        \"NNS\"\n    ], \n    \"frontrunner\": [\n        \"NN\"\n    ], \n    \"Correspondents\": [\n        \"NNPS\"\n    ], \n    \"wielder\": [\n        \"NN\"\n    ], \n    \"snow-white\": [\n        \"JJ\"\n    ], \n    \"avowedly\": [\n        \"RB\"\n    ], \n    \"sacred\": [\n        \"JJ\"\n    ], \n    \"puncturing\": [\n        \"VBG\"\n    ], \n    \"shorter-tenure\": [\n        \"JJ\"\n    ], \n    \"Saskatchewan\": [\n        \"NNP\"\n    ], \n    \"currently\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"triple-B-minus\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Sons\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"futile\": [\n        \"JJ\"\n    ], \n    \"Sony\": [\n        \"NNP\"\n    ], \n    \"rite\": [\n        \"NN\"\n    ], \n    \"all-too-sincere\": [\n        \"JJ\"\n    ], \n    \"open-access\": [\n        \"NN\"\n    ], \n    \"buoys\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Bridgeport\": [\n        \"NNP\"\n    ], \n    \"giddiness\": [\n        \"NN\"\n    ], \n    \"self-centered\": [\n        \"JJ\"\n    ], \n    \"OUTLOOK\": [\n        \"NNP\"\n    ], \n    \"Prime-1\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Prime-3\": [\n        \"JJ\"\n    ], \n    \"Prime-2\": [\n        \"JJ\"\n    ], \n    \"flatware\": [\n        \"NN\"\n    ], \n    \"mitigating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Lipner\": [\n        \"NNP\"\n    ], \n    \"Honor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sikorski\": [\n        \"NNP\"\n    ], \n    \"rehashing\": [\n        \"VBG\"\n    ], \n    \"prospects\": [\n        \"NNS\"\n    ], \n    \"dauntless\": [\n        \"JJ\"\n    ], \n    \"influential\": [\n        \"JJ\"\n    ], \n    \"Worldscope\": [\n        \"NNP\"\n    ], \n    \"offending\": [\n        \"VBG\"\n    ], \n    \"BREADBOX\": [\n        \"NN\"\n    ], \n    \"Donaghy\": [\n        \"NNP\"\n    ], \n    \"unMcGuanean\": [\n        \"JJ\"\n    ], \n    \"Calaveras\": [\n        \"NNS\"\n    ], \n    \"approve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Legislative\": [\n        \"NNP\"\n    ], \n    \"soundings\": [\n        \"NNS\"\n    ], \n    \"gadfly\": [\n        \"NN\"\n    ], \n    \"except\": [\n        \"IN\", \n        \"VB\"\n    ], \n    \"Greatness\": [\n        \"NNP\"\n    ], \n    \"churns\": [\n        \"VBZ\"\n    ], \n    \"joint-production\": [\n        \"JJ\"\n    ], \n    \"backsides\": [\n        \"NNS\"\n    ], \n    \"trade-distorting\": [\n        \"JJ\"\n    ], \n    \"devil\": [\n        \"NN\"\n    ], \n    \"publishing\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Nestled\": [\n        \"VBN\"\n    ], \n    \"MARCOS\": [\n        \"NNP\"\n    ], \n    \"lizards\": [\n        \"NNS\"\n    ], \n    \"Tickell\": [\n        \"NNP\"\n    ], \n    \"ml.\": [\n        \"NN\"\n    ], \n    \"convicted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"calculi\": [\n        \"NNS\"\n    ], \n    \"Scout\": [\n        \"NNP\"\n    ], \n    \"incentive-backed\": [\n        \"JJ\"\n    ], \n    \"Queensland\": [\n        \"NNP\"\n    ], \n    \"Infotechnology\": [\n        \"NNP\"\n    ], \n    \"sweetheart\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"silenced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Seaga\": [\n        \"NNP\"\n    ], \n    \"threes-fulfilled\": [\n        \"NN\"\n    ], \n    \"bitchy\": [\n        \"JJ\"\n    ], \n    \"silences\": [\n        \"NNS\"\n    ], \n    \"sleeves\": [\n        \"NNS\"\n    ], \n    \"Saudi\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"long-depressed\": [\n        \"JJ\"\n    ], \n    \"handling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"reinstalled\": [\n        \"VBN\"\n    ], \n    \"nonmaterial\": [\n        \"JJ\"\n    ], \n    \"micrographics\": [\n        \"NNS\"\n    ], \n    \"Kassar\": [\n        \"NNP\"\n    ], \n    \"single-sponsor\": [\n        \"JJ\"\n    ], \n    \"CAREER\": [\n        \"NNP\"\n    ], \n    \"Yair\": [\n        \"NNP\"\n    ], \n    \"Turnkey\": [\n        \"NNP\"\n    ], \n    \"Kassal\": [\n        \"NNP\"\n    ], \n    \"kissing\": [\n        \"VBG\"\n    ], \n    \"heart-pounding\": [\n        \"JJ\"\n    ], \n    \"hoping\": [\n        \"VBG\"\n    ], \n    \"elegance\": [\n        \"NN\"\n    ], \n    \"folksy\": [\n        \"JJ\"\n    ], \n    \"Detractors\": [\n        \"NNS\"\n    ], \n    \"Galapagos\": [\n        \"NNP\"\n    ], \n    \"bank-baiting\": [\n        \"JJ\"\n    ], \n    \"ducks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"all-automatic\": [\n        \"JJ\"\n    ], \n    \"centennial\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"triple\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"beautifully\": [\n        \"RB\"\n    ], \n    \"carry-forwards\": [\n        \"NNS\"\n    ], \n    \"Doerig\": [\n        \"NNP\"\n    ], \n    \"shorted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"fibers\": [\n        \"NNS\"\n    ], \n    \"riverboat\": [\n        \"NN\"\n    ], \n    \"shorten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tells\": [\n        \"VBZ\"\n    ], \n    \"shorter\": [\n        \"JJR\"\n    ], \n    \"Ichiro\": [\n        \"NNP\"\n    ], \n    \"x-Includes\": [\n        \"VBZ\"\n    ], \n    \"virtually\": [\n        \"RB\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"INTEREST\": [\n        \"NN\"\n    ], \n    \"wasteland\": [\n        \"NN\"\n    ], \n    \"Fiats\": [\n        \"NNPS\"\n    ], \n    \"Quint\": [\n        \"NNP\"\n    ], \n    \"foments\": [\n        \"VBZ\"\n    ], \n    \"Gehl\": [\n        \"NNP\"\n    ], \n    \"commune\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"servitors\": [\n        \"NNS\"\n    ], \n    \"snail\": [\n        \"NN\"\n    ], \n    \"gringos\": [\n        \"NNS\"\n    ], \n    \"Skeletal\": [\n        \"JJ\"\n    ], \n    \"unsatisfied\": [\n        \"JJ\"\n    ], \n    \"ill-defined\": [\n        \"JJ\"\n    ], \n    \"deformity\": [\n        \"NN\"\n    ], \n    \"nondeductible\": [\n        \"JJ\"\n    ], \n    \"jealously\": [\n        \"RB\"\n    ], \n    \"marine-products\": [\n        \"NNS\"\n    ], \n    \"Rainier\": [\n        \"NNP\"\n    ], \n    \"imcomplete\": [\n        \"JJ\"\n    ], \n    \"long-suspected\": [\n        \"JJ\"\n    ], \n    \"stack\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"crosscurrents\": [\n        \"NNS\"\n    ], \n    \"institution-wide\": [\n        \"JJ\"\n    ], \n    \"oil-drilling\": [\n        \"NN\"\n    ], \n    \"rosters\": [\n        \"NNS\"\n    ], \n    \"immediate-response\": [\n        \"JJ\"\n    ], \n    \"Lanston\": [\n        \"NNP\"\n    ], \n    \"Ill-considered\": [\n        \"JJ\"\n    ], \n    \"Lottery\": [\n        \"NNP\"\n    ], \n    \"Landon\": [\n        \"NNP\"\n    ], \n    \"commercial-satellite-launching\": [\n        \"JJ\"\n    ], \n    \"schedules\": [\n        \"NNS\"\n    ], \n    \"aroma\": [\n        \"NN\"\n    ], \n    \"Survivors\": [\n        \"NNS\"\n    ], \n    \"arrests\": [\n        \"NNS\"\n    ], \n    \"Aeronauticas\": [\n        \"NNP\"\n    ], \n    \"LaWarre\": [\n        \"NNP\"\n    ], \n    \"Landor\": [\n        \"NNP\"\n    ], \n    \"wits\": [\n        \"NNS\"\n    ], \n    \"assaying\": [\n        \"VBG\"\n    ], \n    \"overbroad\": [\n        \"JJ\"\n    ], \n    \"brutalism\": [\n        \"NN\"\n    ], \n    \"surprises\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"MD-90\": [\n        \"NN\"\n    ], \n    \"bake-oven\": [\n        \"NN\"\n    ], \n    \"night-time\": [\n        \"JJ\"\n    ], \n    \"signals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Sulcer\": [\n        \"NNP\"\n    ], \n    \"grapefruit\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Talk\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"Rodeph\": [\n        \"NNP\"\n    ], \n    \"input\": [\n        \"NN\"\n    ], \n    \"submissions\": [\n        \"NNS\"\n    ], \n    \"surprised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"add-on\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Daniels\": [\n        \"NNP\"\n    ], \n    \"BRACED\": [\n        \"NNP\"\n    ], \n    \"Ohara\": [\n        \"NNP\"\n    ], \n    \"Dow-Jones\": [\n        \"NNP\"\n    ], \n    \"depreciable\": [\n        \"JJ\"\n    ], \n    \"hurricane-hit\": [\n        \"JJ\"\n    ], \n    \"aerospace\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"falcon\": [\n        \"NN\"\n    ], \n    \"indelibly\": [\n        \"RB\"\n    ], \n    \"Maytag\": [\n        \"NNP\"\n    ], \n    \"projects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"flannel\": [\n        \"NN\"\n    ], \n    \"Epplers\": [\n        \"NNP\"\n    ], \n    \"worsening\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Terramycin\": [\n        \"NN\"\n    ], \n    \"stylist\": [\n        \"NN\"\n    ], \n    \"forcibly\": [\n        \"RB\"\n    ], \n    \"Bedridden\": [\n        \"JJ\"\n    ], \n    \"consensus\": [\n        \"NN\"\n    ], \n    \"communications\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Leben\": [\n        \"NNP\"\n    ], \n    \"confinements\": [\n        \"NNS\"\n    ], \n    \"Professor\": [\n        \"NNP\"\n    ], \n    \"stylish\": [\n        \"JJ\"\n    ], \n    \"cronies\": [\n        \"NNS\"\n    ], \n    \"Mondonville\": [\n        \"NNP\"\n    ], \n    \"buddies\": [\n        \"NNS\"\n    ], \n    \"Andi\": [\n        \"NNP\"\n    ], \n    \"Alterman\": [\n        \"NNP\"\n    ], \n    \"sponsorships\": [\n        \"NNS\"\n    ], \n    \"federal-question\": [\n        \"JJ\"\n    ], \n    \"FEAR\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"Insam\": [\n        \"NNP\"\n    ], \n    \"horsedom\": [\n        \"NN\"\n    ], \n    \"full-dress\": [\n        \"JJ\"\n    ], \n    \"Daniele\": [\n        \"NNP\"\n    ], \n    \"linkages\": [\n        \"NNS\"\n    ], \n    \"Meech\": [\n        \"NNP\"\n    ], \n    \"Foreigners\": [\n        \"NNS\"\n    ], \n    \"prior-day\": [\n        \"JJ\"\n    ], \n    \"temple\": [\n        \"NN\"\n    ], \n    \"Bohmerwald\": [\n        \"FW\"\n    ], \n    \"waiving\": [\n        \"VBG\"\n    ], \n    \"Transwestern\": [\n        \"NNP\"\n    ], \n    \"senior-graduate\": [\n        \"NN\"\n    ], \n    \"major\": [\n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Pollution\": [\n        \"NNP\"\n    ], \n    \"Michigan-based\": [\n        \"JJ\"\n    ], \n    \"exaggerated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"captious\": [\n        \"JJ\"\n    ], \n    \"coureurs\": [\n        \"FW\"\n    ], \n    \"Radioing\": [\n        \"VBG\"\n    ], \n    \"helpfulness\": [\n        \"NN\"\n    ], \n    \"self-deprecation\": [\n        \"NN\"\n    ], \n    \"Katie\": [\n        \"NNP\"\n    ], \n    \"Kans.\": [\n        \"NNP\"\n    ], \n    \"repair\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"garbage\": [\n        \"NN\"\n    ], \n    \"Carthage\": [\n        \"FW\"\n    ], \n    \"recreate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Carthago\": [\n        \"FW\"\n    ], \n    \"locus\": [\n        \"NN\"\n    ], \n    \"collapsible\": [\n        \"JJ\"\n    ], \n    \"Gian\": [\n        \"NNP\"\n    ], \n    \"careerists\": [\n        \"NNS\"\n    ], \n    \"producer-hubby\": [\n        \"NN\"\n    ], \n    \"Findlay\": [\n        \"NNP\"\n    ], \n    \"due-process\": [\n        \"NN\"\n    ], \n    \"sneaky\": [\n        \"JJ\"\n    ], \n    \"spending\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN|VBG\", \n        \"VBG\"\n    ], \n    \"poison-pill\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sneaks\": [\n        \"VBZ\"\n    ], \n    \"submit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"custom\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Foamy\": [\n        \"NNP\"\n    ], \n    \"bridesmaids\": [\n        \"NNS\"\n    ], \n    \"fund-raisers\": [\n        \"NNS\"\n    ], \n    \":\": [\n        \":\"\n    ], \n    \"torquers\": [\n        \"NNS\"\n    ], \n    \"blueprint\": [\n        \"NN\"\n    ], \n    \"Regarding\": [\n        \"VBG\"\n    ], \n    \"Strongheart\": [\n        \"NNP\"\n    ], \n    \"atop\": [\n        \"IN\"\n    ], \n    \"brazenness\": [\n        \"NN\"\n    ], \n    \"Kanegafuchi\": [\n        \"NNP\"\n    ], \n    \"Yank\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Moby\": [\n        \"NNP\"\n    ], \n    \"SJO\": [\n        \"NNP\"\n    ], \n    \"atom\": [\n        \"NN\"\n    ], \n    \"coldest\": [\n        \"JJS\"\n    ], \n    \"McLelland\": [\n        \"NNP\"\n    ], \n    \"FreudToy\": [\n        \"NNP\"\n    ], \n    \"inducements\": [\n        \"NNS\"\n    ], \n    \"marginal-rate\": [\n        \"NN\"\n    ], \n    \"bumpers\": [\n        \"NNS\"\n    ], \n    \"Africa\": [\n        \"NNP\"\n    ], \n    \"slander\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"beauty-idiom\": [\n        \"NN\"\n    ], \n    \"verification\": [\n        \"NN\"\n    ], \n    \"behavioral\": [\n        \"JJ\"\n    ], \n    \"continuously\": [\n        \"RB\"\n    ], \n    \"cachexia\": [\n        \"FW\"\n    ], \n    \"Excerpts\": [\n        \"NNS\"\n    ], \n    \"operating-cost\": [\n        \"JJ\"\n    ], \n    \"single-country\": [\n        \"JJ\"\n    ], \n    \"heartthrob\": [\n        \"NN\"\n    ], \n    \"discolored\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"corporate-owned\": [\n        \"JJ\"\n    ], \n    \"cowboys\": [\n        \"NNS\"\n    ], \n    \"eye-catching\": [\n        \"JJ\"\n    ], \n    \"Outside\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Babe\": [\n        \"NNP\"\n    ], \n    \"subtypes\": [\n        \"NNS\"\n    ], \n    \"billion-dollar\": [\n        \"JJ\"\n    ], \n    \"re-established\": [\n        \"VBD\"\n    ], \n    \"Pawcatuck\": [\n        \"NNP\"\n    ], \n    \"sunken\": [\n        \"JJ\"\n    ], \n    \"invalid\": [\n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"occasional\": [\n        \"JJ\"\n    ], \n    \"wildlife-related\": [\n        \"JJ\"\n    ], \n    \"defense-products\": [\n        \"NNS\"\n    ], \n    \"tenterhooks\": [\n        \"NNS\"\n    ], \n    \"tart\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"elements\": [\n        \"NNS\"\n    ], \n    \"scrub\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"beginnings\": [\n        \"NNS\"\n    ], \n    \"provided\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"fixed-dollar\": [\n        \"JJ\"\n    ], \n    \"Derby\": [\n        \"NNP\"\n    ], \n    \"unpunctured\": [\n        \"JJ\"\n    ], \n    \"bedeviled\": [\n        \"VBN\"\n    ], \n    \"articulations\": [\n        \"NNS\"\n    ], \n    \"ago\": [\n        \"RB\", \n        \"IN\"\n    ], \n    \"furthest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"fighter\": [\n        \"NN\"\n    ], \n    \"Nineties\": [\n        \"NNPS\"\n    ], \n    \"reasoned\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"scotch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"age\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"feud\": [\n        \"NN\"\n    ], \n    \"mailgrams\": [\n        \"NNS\"\n    ], \n    \"carrying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Huwa\": [\n        \"NNP\"\n    ], \n    \"teachings\": [\n        \"NNS\"\n    ], \n    \"oracle\": [\n        \"NN\"\n    ], \n    \"military-style\": [\n        \"JJ\"\n    ], \n    \"Mercury\": [\n        \"NNP\"\n    ], \n    \"partial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"effigy\": [\n        \"NN\"\n    ], \n    \"Ever-confident\": [\n        \"JJ\"\n    ], \n    \"Betsy\": [\n        \"NNP\"\n    ], \n    \"non-propagandistic\": [\n        \"JJ\"\n    ], \n    \"dainty\": [\n        \"JJ\"\n    ], \n    \"gossip\": [\n        \"NN\"\n    ], \n    \"delectation\": [\n        \"NN\"\n    ], \n    \"churned\": [\n        \"VBD\"\n    ], \n    \"detoured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"what-will-T\": [\n        \"WP|MD|NP\"\n    ], \n    \"Alden\": [\n        \"NNP\"\n    ], \n    \"curds\": [\n        \"NNS\"\n    ], \n    \"Yaniv\": [\n        \"NNP\"\n    ], \n    \"oceanfront\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"housebreaking\": [\n        \"NN\"\n    ], \n    \"primly\": [\n        \"RB\"\n    ], \n    \"postings\": [\n        \"NNS\"\n    ], \n    \"probe\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"end-of-the-year\": [\n        \"JJ\"\n    ], \n    \"torture\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Dain\": [\n        \"NNP\"\n    ], \n    \"continues\": [\n        \"VBZ\"\n    ], \n    \"Femina\": [\n        \"NNP\"\n    ], \n    \"abduction\": [\n        \"NN\"\n    ], \n    \"Classics\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"continued\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"timely\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Ambassador\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Grabowiec\": [\n        \"NNP\"\n    ], \n    \"princess-in-a-carriage\": [\n        \"NN\"\n    ], \n    \"Patriots\": [\n        \"NNPS\"\n    ], \n    \"Hieber\": [\n        \"NNP\"\n    ], \n    \"Lentjes\": [\n        \"NNP\"\n    ], \n    \"visuals\": [\n        \"NNS\"\n    ], \n    \"Onset\": [\n        \"NN\"\n    ], \n    \"Petipa-Minkus\": [\n        \"NNP\"\n    ], \n    \"venerable-but-much-derided\": [\n        \"JJ\"\n    ], \n    \"Nurse\": [\n        \"NNP\"\n    ], \n    \"odd\": [\n        \"JJ\"\n    ], \n    \"ode\": [\n        \"NN\"\n    ], \n    \"Labovitz\": [\n        \"NNP\"\n    ], \n    \"self-certainty\": [\n        \"NN\"\n    ], \n    \"supply\\\\/demand\": [\n        \"NN\"\n    ], \n    \"Stonehenge\": [\n        \"NNP\"\n    ], \n    \"Bodleian\": [\n        \"NNP\"\n    ], \n    \"toughens\": [\n        \"VBZ\"\n    ], \n    \"life-size\": [\n        \"JJ\"\n    ], \n    \"Mondale\": [\n        \"NNP\"\n    ], \n    \"slabs\": [\n        \"NNS\"\n    ], \n    \"counterbalancing\": [\n        \"VBG\"\n    ], \n    \"lappets\": [\n        \"NNS\"\n    ], \n    \"proliferation\": [\n        \"NN\"\n    ], \n    \"respectively\": [\n        \"RB\"\n    ], \n    \"gathered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"delivering\": [\n        \"VBG\"\n    ], \n    \"trade-off\": [\n        \"NN\"\n    ], \n    \"octave\": [\n        \"JJ\"\n    ], \n    \"medallions\": [\n        \"NNS\"\n    ], \n    \"price-driven\": [\n        \"JJ\"\n    ], \n    \"gazes\": [\n        \"VBZ\"\n    ], \n    \"Giorgio\": [\n        \"NNP\"\n    ], \n    \"great\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"coops\": [\n        \"NNS\"\n    ], \n    \"Kantorei\": [\n        \"NNP\"\n    ], \n    \"receive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"titanic\": [\n        \"JJ\"\n    ], \n    \"Maalox\": [\n        \"NNP\"\n    ], \n    \"overcommitted\": [\n        \"VBN\"\n    ], \n    \"microchemistry\": [\n        \"NN\"\n    ], \n    \"Lips\": [\n        \"NNS\"\n    ], \n    \"defeat\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"popcorn\": [\n        \"NN\"\n    ], \n    \"opinion\": [\n        \"NN\"\n    ], \n    \"bookkeeping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"quarter-century-old\": [\n        \"JJ\"\n    ], \n    \"double-B\": [\n        \"JJ\"\n    ], \n    \"grower\": [\n        \"NN\"\n    ], \n    \"Helfman\": [\n        \"NNP\"\n    ], \n    \"slogging\": [\n        \"VBG\"\n    ], \n    \"Excludes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"disobey\": [\n        \"VB\"\n    ], \n    \"terrified\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Triptych\": [\n        \"NNP\"\n    ], \n    \"extricate\": [\n        \"VB\"\n    ], \n    \"anti-tax-shelter\": [\n        \"JJ\"\n    ], \n    \"Danieli\": [\n        \"NNP\"\n    ], \n    \"foreign-exchange\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pragmatism\": [\n        \"NN\"\n    ], \n    \"quick-drying\": [\n        \"JJ\"\n    ], \n    \"super-city\": [\n        \"NN\"\n    ], \n    \"Counters\": [\n        \"VBZ\"\n    ], \n    \"unphysical\": [\n        \"JJ\"\n    ], \n    \"perfusion\": [\n        \"NN\"\n    ], \n    \"rutabaga\": [\n        \"NN\"\n    ], \n    \"certificate\": [\n        \"NN\"\n    ], \n    \"drawing-rooms\": [\n        \"NNS\"\n    ], \n    \"figurative\": [\n        \"JJ\"\n    ], \n    \"open-minded\": [\n        \"JJ\"\n    ], \n    \"duplicate\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"Chetta\": [\n        \"NNP\"\n    ], \n    \"Nomination\": [\n        \"NN\"\n    ], \n    \"turnoff\": [\n        \"NN\"\n    ], \n    \"passageway\": [\n        \"NN\"\n    ], \n    \"Chok\": [\n        \"NNP\"\n    ], \n    \"purposes\": [\n        \"NNS\"\n    ], \n    \"subdued\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Chou\": [\n        \"NNP\"\n    ], \n    \"Chow\": [\n        \"NNP\"\n    ], \n    \"gladly\": [\n        \"RB\"\n    ], \n    \"delegating\": [\n        \"VBG\"\n    ], \n    \"Lanny\": [\n        \"NNP\"\n    ], \n    \"self-analysis\": [\n        \"NN\"\n    ], \n    \"Mergers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"charity\": [\n        \"NN\"\n    ], \n    \"ill-trained\": [\n        \"JJ\"\n    ], \n    \"animals\": [\n        \"NNS\"\n    ], \n    \"Feedback\": [\n        \"NN\"\n    ], \n    \"this\": [\n        \"DT\", \n        \"RB\", \n        \"PDT\"\n    ], \n    \"erythroid\": [\n        \"NN\"\n    ], \n    \"two-part\": [\n        \"JJ\"\n    ], \n    \"septuagenarian\": [\n        \"NN\"\n    ], \n    \"run-scoring\": [\n        \"JJ\"\n    ], \n    \"thin\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"feistier\": [\n        \"JJR\"\n    ], \n    \"overcooled\": [\n        \"JJ\"\n    ], \n    \"Inmac\": [\n        \"NNP\"\n    ], \n    \"reeds\": [\n        \"NNS\"\n    ], \n    \"Hemus\": [\n        \"NNP\"\n    ], \n    \"off-color\": [\n        \"JJ\"\n    ], \n    \"reedy\": [\n        \"JJ\"\n    ], \n    \"Copies\": [\n        \"NNS\"\n    ], \n    \"Inman\": [\n        \"NNP\"\n    ], \n    \"disease-resistant\": [\n        \"JJ\"\n    ], \n    \"intramural\": [\n        \"JJ\"\n    ], \n    \"martyr\": [\n        \"NN\"\n    ], \n    \"hereinafter\": [\n        \"RB\"\n    ], \n    \"interdenominational\": [\n        \"JJ\"\n    ], \n    \"weaken\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"W.B.\": [\n        \"NNP\"\n    ], \n    \"mutually\": [\n        \"RB\"\n    ], \n    \"wares\": [\n        \"NNS\"\n    ], \n    \"courtiers\": [\n        \"NNS\"\n    ], \n    \"Shcherbitsky\": [\n        \"NNP\"\n    ], \n    \"Rim-Fire\": [\n        \"JJ\"\n    ], \n    \"Payment\": [\n        \"NN\"\n    ], \n    \"scammed\": [\n        \"VBD\"\n    ], \n    \"singular\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"successors-in-spirit\": [\n        \"NNS\"\n    ], \n    \"Disease\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nailing\": [\n        \"VBG\"\n    ], \n    \"Frost-Debby\": [\n        \"NNP\"\n    ], \n    \"preferring\": [\n        \"VBG\"\n    ], \n    \"little-town\": [\n        \"JJ\"\n    ], \n    \"bellboys\": [\n        \"NNS\"\n    ], \n    \"Clarita\": [\n        \"NNP\"\n    ], \n    \"Apple\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"CRAY\": [\n        \"NNP\"\n    ], \n    \"or\": [\n        \"CC\", \n        \"NNP\"\n    ], \n    \"Denis\": [\n        \"NNP\"\n    ], \n    \"RACIST\": [\n        \"JJ\"\n    ], \n    \"Buffeted\": [\n        \"VBN\"\n    ], \n    \"MLPI\": [\n        \"NNP\"\n    ], \n    \"Leahy\": [\n        \"NNP\"\n    ], \n    \"Catholic\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"point-spread\": [\n        \"JJ\"\n    ], \n    \"producer\": [\n        \"NN\"\n    ], \n    \"produces\": [\n        \"VBZ\"\n    ], \n    \"Microbiology\": [\n        \"NNP\"\n    ], \n    \"produced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Pfau\": [\n        \"NNP\"\n    ], \n    \"motorcycle\": [\n        \"NN\"\n    ], \n    \"year-earlier\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Serene\": [\n        \"NNP\"\n    ], \n    \"Caters\": [\n        \"NNP\"\n    ], \n    \"progeny\": [\n        \"NN\"\n    ], \n    \"Friedman\": [\n        \"NNP\"\n    ], \n    \"Cracking\": [\n        \"VBG\"\n    ], \n    \"communication\": [\n        \"NN\"\n    ], \n    \"silken\": [\n        \"JJ\"\n    ], \n    \"lawlessness\": [\n        \"NN\"\n    ], \n    \"elites\": [\n        \"NNS\"\n    ], \n    \"bolting\": [\n        \"VBG\"\n    ], \n    \"Qizhen\": [\n        \"NNP\"\n    ], \n    \"popularized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gun-slinging\": [\n        \"JJ\"\n    ], \n    \"detergents\": [\n        \"NNS\"\n    ], \n    \"bothering\": [\n        \"VBG\"\n    ], \n    \"Costner\": [\n        \"NNP\"\n    ], \n    \"folk-lore\": [\n        \"NN\"\n    ], \n    \"Cowley\": [\n        \"NNP\"\n    ], \n    \"cage\": [\n        \"NN\"\n    ], \n    \"orphaned\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"left-right\": [\n        \"JJ\"\n    ], \n    \"Arlen\": [\n        \"NNP\"\n    ], \n    \"hallmarks\": [\n        \"NNS\"\n    ], \n    \"San\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\", \n        \"JJ\"\n    ], \n    \"Sam\": [\n        \"NNP\"\n    ], \n    \"Sal\": [\n        \"NNP\"\n    ], \n    \"undertaking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"traced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sag\": [\n        \"NNP\"\n    ], \n    \"accompanies\": [\n        \"VBZ\"\n    ], \n    \"Sad\": [\n        \"JJ\"\n    ], \n    \"Kooning\": [\n        \"NNP\"\n    ], \n    \"Yetnikoff\": [\n        \"NNP\"\n    ], \n    \"vibrations\": [\n        \"NNS\"\n    ], \n    \"Conan\": [\n        \"NNP\"\n    ], \n    \"accompanied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Inspections\": [\n        \"NNP\"\n    ], \n    \"Saw\": [\n        \"VBD\", \n        \"NNP\"\n    ], \n    \"Arles\": [\n        \"NN\"\n    ], \n    \"Sat\": [\n        \"VBD\"\n    ], \n    \"Platinum\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"overextended\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"exacerbated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dentsu\": [\n        \"NNP\"\n    ], \n    \"yellowish\": [\n        \"JJ\"\n    ], \n    \"doing\": [\n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"Underage\": [\n        \"JJ\"\n    ], \n    \"upholders\": [\n        \"NNS\"\n    ], \n    \"sidelight\": [\n        \"NN\"\n    ], \n    \"static\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ionosphere\": [\n        \"NN\"\n    ], \n    \"snippy\": [\n        \"JJ\"\n    ], \n    \"half-jokingly\": [\n        \"RB\"\n    ], \n    \"hitches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Evergreen\": [\n        \"NNP\"\n    ], \n    \"halter\": [\n        \"NN\"\n    ], \n    \"Lourie\": [\n        \"NNP\"\n    ], \n    \"susceptors\": [\n        \"NNS\"\n    ], \n    \"traversed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nerio\": [\n        \"NNP\"\n    ], \n    \"O&Y\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Alpine\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Solitudinem\": [\n        \"FW\"\n    ], \n    \"Spikes\": [\n        \"NNP\"\n    ], \n    \"NT&SA-run\": [\n        \"JJ\"\n    ], \n    \"Meek\": [\n        \"NNP\"\n    ], \n    \"J.X.\": [\n        \"NNP\"\n    ], \n    \"tempo\": [\n        \"NN\"\n    ], \n    \"temps\": [\n        \"NNS\"\n    ], \n    \"Miguel\": [\n        \"NNP\"\n    ], \n    \"tied\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"tempt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"shun\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Meet\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"steering\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"assiduously\": [\n        \"RB\"\n    ], \n    \"defining\": [\n        \"VBG\"\n    ], \n    \"fortune-tellers\": [\n        \"NN\"\n    ], \n    \"scary\": [\n        \"JJ\"\n    ], \n    \"Rullo\": [\n        \"NNP\"\n    ], \n    \"compote\": [\n        \"NN\"\n    ], \n    \"scars\": [\n        \"NNS\"\n    ], \n    \"vineyards\": [\n        \"NNS\"\n    ], \n    \"Naderites\": [\n        \"NNS\"\n    ], \n    \"Jump\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"congeniality\": [\n        \"NN\"\n    ], \n    \"pigs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Fredric\": [\n        \"NNP\"\n    ], \n    \"CHEVRON\": [\n        \"NNP\"\n    ], \n    \"Fredrik\": [\n        \"NNP\"\n    ], \n    \"scare\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"cannonball\": [\n        \"NN\"\n    ], \n    \"equates\": [\n        \"VBZ\"\n    ], \n    \"Nary\": [\n        \"NNP\"\n    ], \n    \"Popish\": [\n        \"NNP\"\n    ], \n    \"Destroyer\": [\n        \"NN\"\n    ], \n    \"lettering\": [\n        \"NN\"\n    ], \n    \"touring\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"autographed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"autographer\": [\n        \"NN\"\n    ], \n    \"three-way\": [\n        \"JJ\"\n    ], \n    \"Nara\": [\n        \"NNP\"\n    ], \n    \"mid-Victorian\": [\n        \"NNP\"\n    ], \n    \"Suites\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Placentia\": [\n        \"NNP\"\n    ], \n    \"condensate\": [\n        \"NN\"\n    ], \n    \"traveller\": [\n        \"NN\"\n    ], \n    \"triplication\": [\n        \"NN\"\n    ], \n    \"PROCEEDINGS\": [\n        \"NNS\"\n    ], \n    \"imitate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"detectable\": [\n        \"JJ\"\n    ], \n    \"AMERICANS\": [\n        \"NNS\"\n    ], \n    \"hand-crafted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"belligerently\": [\n        \"RB\"\n    ], \n    \"travelled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Reproach\": [\n        \"VB\"\n    ], \n    \"Nylev\": [\n        \"NNP\"\n    ], \n    \"Bowes\": [\n        \"NNP\"\n    ], \n    \"Trophy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"UNR\": [\n        \"NNP\"\n    ], \n    \"suburbanite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"red-tipped\": [\n        \"JJ\"\n    ], \n    \"rearmed\": [\n        \"JJ\"\n    ], \n    \"hardtack-box\": [\n        \"NN\"\n    ], \n    \"fizzes\": [\n        \"VBZ\"\n    ], \n    \"Gwyn\": [\n        \"NNP\"\n    ], \n    \"beatings\": [\n        \"NNS\"\n    ], \n    \"UNA\": [\n        \"NNP\"\n    ], \n    \"UNC\": [\n        \"NNP\"\n    ], \n    \"tacked-down\": [\n        \"JJ\"\n    ], \n    \"Assad\": [\n        \"NNP\"\n    ], \n    \"Beermann\": [\n        \"NNP\"\n    ], \n    \"Lawton\": [\n        \"NNP\"\n    ], \n    \"Bolton\": [\n        \"NNP\"\n    ], \n    \"haven\": [\n        \"NN\"\n    ], \n    \"inscriptions\": [\n        \"NNS\"\n    ], \n    \"dead-end\": [\n        \"JJ\"\n    ], \n    \"subroutine\": [\n        \"NN\"\n    ], \n    \"Pohs\": [\n        \"NNP\"\n    ], \n    \"Handsomest\": [\n        \"JJS\"\n    ], \n    \"Corne\": [\n        \"NNP\"\n    ], \n    \"Willson\": [\n        \"NNP\"\n    ], \n    \"Disciplined\": [\n        \"VBN\"\n    ], \n    \"dowel\": [\n        \"NN\"\n    ], \n    \"disband\": [\n        \"VB\"\n    ], \n    \"Pohl\": [\n        \"NNP\"\n    ], \n    \"country\": [\n        \"NN\"\n    ], \n    \"terror-filled\": [\n        \"JJ\"\n    ], \n    \"Teter\": [\n        \"NNP\"\n    ], \n    \"belly-flopped\": [\n        \"VBD\"\n    ], \n    \"Aging\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"viewer\": [\n        \"NN\"\n    ], \n    \"Fosback\": [\n        \"NNP\"\n    ], \n    \"partnership\": [\n        \"NN\"\n    ], \n    \"poisons\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Westminster\": [\n        \"NNP\"\n    ], \n    \"Bachtold\": [\n        \"NNP\"\n    ], \n    \"stable-garage\": [\n        \"NN\"\n    ], \n    \"Polysilicon\": [\n        \"NN\"\n    ], \n    \"Correctly\": [\n        \"RB\"\n    ], \n    \"Elianti\": [\n        \"NNP\"\n    ], \n    \"viewed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Pacholik\": [\n        \"NNP\"\n    ], \n    \"outfought\": [\n        \"NN\"\n    ], \n    \"Petermann\": [\n        \"NNP\"\n    ], \n    \"health-related\": [\n        \"JJ\"\n    ], \n    \"Midlantic\": [\n        \"NNP\"\n    ], \n    \"directivity\": [\n        \"NN\"\n    ], \n    \"BIG\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"BID\": [\n        \"NNP\"\n    ], \n    \"jurisdictions\": [\n        \"NNS\"\n    ], \n    \"five-coordinate\": [\n        \"JJ\"\n    ], \n    \"Hodges\": [\n        \"NNP\"\n    ], \n    \"Yugoslav-born\": [\n        \"JJ\"\n    ], \n    \"snake-charmer\": [\n        \"NN\"\n    ], \n    \"Colinas\": [\n        \"NNP\"\n    ], \n    \"injunctions\": [\n        \"NNS\"\n    ], \n    \"BIP\": [\n        \"NNP\"\n    ], \n    \"toughest\": [\n        \"JJS\"\n    ], \n    \"embroiled\": [\n        \"VBN\"\n    ], \n    \"Hendry\": [\n        \"NNP\"\n    ], \n    \"conservative-liberal\": [\n        \"JJ\"\n    ], \n    \"noblesse\": [\n        \"JJ\"\n    ], \n    \"Polycast\": [\n        \"NNP\"\n    ], \n    \"better-known\": [\n        \"JJ\"\n    ], \n    \"Piping\": [\n        \"NN\"\n    ], \n    \"Advertising\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"device\": [\n        \"NN\"\n    ], \n    \"vultures\": [\n        \"NNS\"\n    ], \n    \"Asked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Descartes\": [\n        \"NNP\"\n    ], \n    \"manuevering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"checking-account\": [\n        \"JJ\"\n    ], \n    \"Acquired\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"Gyllensten\": [\n        \"NNP\"\n    ], \n    \"U.S.-Czech\": [\n        \"JJ\"\n    ], \n    \"Relative\": [\n        \"JJ\"\n    ], \n    \"double-A-rated\": [\n        \"JJ\"\n    ], \n    \"fiasco\": [\n        \"NN\"\n    ], \n    \"Brieff\": [\n        \"NNP\"\n    ], \n    \"wounded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Acquirer\": [\n        \"NN\"\n    ], \n    \"turnery\": [\n        \"NN\"\n    ], \n    \"atmosphere\": [\n        \"NN\"\n    ], \n    \"CONGRESS\": [\n        \"NNP\"\n    ], \n    \"monasteries\": [\n        \"NNS\"\n    ], \n    \"hawing\": [\n        \"VBG\"\n    ], \n    \"terminate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"centralized\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Took\": [\n        \"VBD\"\n    ], \n    \"organized-crime\": [\n        \"NN\"\n    ], \n    \"Shrine\": [\n        \"NNP\"\n    ], \n    \"mismanaging\": [\n        \"VBG\"\n    ], \n    \"bedroom\": [\n        \"NN\"\n    ], \n    \"unconnected\": [\n        \"JJ\"\n    ], \n    \"medication-dispensing\": [\n        \"JJ\"\n    ], \n    \"Bissell\": [\n        \"NNP\"\n    ], \n    \"Soviet-Western\": [\n        \"NNP\"\n    ], \n    \"H-2\": [\n        \"NNP\"\n    ], \n    \"boutique-store\": [\n        \"NN\"\n    ], \n    \"Jill\": [\n        \"NNP\"\n    ], \n    \"Gatsby\": [\n        \"NNP\"\n    ], \n    \"printers\": [\n        \"NNS\"\n    ], \n    \"Younger\": [\n        \"JJR\", \n        \"NNP\"\n    ], \n    \"Unwinding\": [\n        \"VBG\"\n    ], \n    \"jackpot\": [\n        \"NN\"\n    ], \n    \"Kaufmann\": [\n        \"NNP\"\n    ], \n    \"market-if-touched\": [\n        \"NN\"\n    ], \n    \"H-P\": [\n        \"NNP\"\n    ], \n    \"Malknecht\": [\n        \"NNP\"\n    ], \n    \"doubtful\": [\n        \"JJ\"\n    ], \n    \"moneymakers\": [\n        \"NNS\"\n    ], \n    \"B-I-G\": [\n        \"NNP\"\n    ], \n    \"once-scandalous\": [\n        \"JJ\"\n    ], \n    \"envy-quotient\": [\n        \"NN\"\n    ], \n    \"Vigier\": [\n        \"NNP\"\n    ], \n    \"h\": [\n        \"NN\"\n    ], \n    \"Brand-Name\": [\n        \"NN\"\n    ], \n    \"T-Max\": [\n        \"NNP\"\n    ], \n    \"Supt.\": [\n        \"NNP\"\n    ], \n    \"anti-programmers\": [\n        \"NNS\"\n    ], \n    \"four-megabit\": [\n        \"JJ\"\n    ], \n    \"six-person\": [\n        \"JJ\"\n    ], \n    \"furs\": [\n        \"NNS\"\n    ], \n    \"withstand\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Amneris\": [\n        \"NNP\"\n    ], \n    \"Rubel\": [\n        \"NNP\"\n    ], \n    \"Donner\": [\n        \"NNP\"\n    ], \n    \"primarly\": [\n        \"RB\"\n    ], \n    \"exerted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Chalidale\": [\n        \"NNP\"\n    ], \n    \"electrode\": [\n        \"NN\"\n    ], \n    \"state-administered\": [\n        \"JJ\"\n    ], \n    \"Joanne\": [\n        \"NNP\"\n    ], \n    \"dust-settling\": [\n        \"JJ\"\n    ], \n    \"Arimathea\": [\n        \"NNP\"\n    ], \n    \"paper-work\": [\n        \"NN\"\n    ], \n    \"Restoration\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unravel\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lockerbie\": [\n        \"NNP\"\n    ], \n    \"legitimize\": [\n        \"VB\"\n    ], \n    \"sevices\": [\n        \"NNS\"\n    ], \n    \"harsher\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Republican\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"browbeat\": [\n        \"VB\"\n    ], \n    \"retentive\": [\n        \"JJ\"\n    ], \n    \"Kalentiev\": [\n        \"NNP\"\n    ], \n    \"Andrzej\": [\n        \"NNP\"\n    ], \n    \"Developing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"single-A-3\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"single-A-2\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"single-A-1\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"second-order\": [\n        \"JJ\"\n    ], \n    \"dartboard\": [\n        \"NN\"\n    ], \n    \"courtyard\": [\n        \"NN\"\n    ], \n    \"Vedrine\": [\n        \"NNP\"\n    ], \n    \"greenware\": [\n        \"NN\"\n    ], \n    \"panelboard\": [\n        \"NN\"\n    ], \n    \"weary\": [\n        \"JJ\"\n    ], \n    \"Stalling\": [\n        \"VBG\"\n    ], \n    \"stake-building\": [\n        \"VBG\"\n    ], \n    \"more-volatile\": [\n        \"JJR\"\n    ], \n    \"drillers\": [\n        \"NNS\"\n    ], \n    \"Umpire\": [\n        \"NN\"\n    ], \n    \"match-width\": [\n        \"NN\"\n    ], \n    \"recorders\": [\n        \"NNS\"\n    ], \n    \"Mossoviet\": [\n        \"NNP\"\n    ], \n    \"etc\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"millivoltmeter\": [\n        \"NN\"\n    ], \n    \"rooming-house\": [\n        \"NN\"\n    ], \n    \"puff\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Buskirk\": [\n        \"NNP\"\n    ], \n    \"Sunman\": [\n        \"NNP\"\n    ], \n    \"strongly\": [\n        \"RB\"\n    ], \n    \"epigrams\": [\n        \"NNS\"\n    ], \n    \"apportionments\": [\n        \"NNS\"\n    ], \n    \"Would\": [\n        \"MD\"\n    ], \n    \"Godkin\": [\n        \"NNP\"\n    ], \n    \"editing\\\\/electronic\": [\n        \"JJ\"\n    ], \n    \"incest\": [\n        \"NN\"\n    ], \n    \"unsanctioned\": [\n        \"JJ\"\n    ], \n    \"Turin\": [\n        \"NNP\"\n    ], \n    \"Marantz\": [\n        \"NNP\"\n    ], \n    \"Crouched\": [\n        \"VBN\"\n    ], \n    \"powered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Outputs\": [\n        \"NNS\"\n    ], \n    \"mathematics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"poured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"aquamarine\": [\n        \"NN\"\n    ], \n    \"Westborough\": [\n        \"NNP\"\n    ], \n    \"pro-Castro\": [\n        \"JJ\"\n    ], \n    \"totaling\": [\n        \"VBG\"\n    ], \n    \"Expand\": [\n        \"NNP\"\n    ], \n    \"high-toned\": [\n        \"JJ\"\n    ], \n    \"Financiers\": [\n        \"NNS\"\n    ], \n    \"crisscross\": [\n        \"VBP\"\n    ], \n    \"pixies\": [\n        \"NNS\"\n    ], \n    \"emigration-related\": [\n        \"JJ\"\n    ], \n    \"Financiere\": [\n        \"NNP\"\n    ], \n    \"blatancy\": [\n        \"NN\"\n    ], \n    \"allusiveness\": [\n        \"NN\"\n    ], \n    \"Naxos\": [\n        \"NNP\"\n    ], \n    \"Shaking\": [\n        \"VBG\"\n    ], \n    \"freewheeling\": [\n        \"JJ\"\n    ], \n    \"consumer-led\": [\n        \"JJ\"\n    ], \n    \"median-nerve\": [\n        \"JJ\"\n    ], \n    \"apparitions\": [\n        \"NNS\"\n    ], \n    \"Farragut\": [\n        \"NNP\"\n    ], \n    \"memorizing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"deregulation\": [\n        \"NN\"\n    ], \n    \"AIChE\": [\n        \"NNP\"\n    ], \n    \"cameo-like\": [\n        \"JJ\"\n    ], \n    \"aesthetics\": [\n        \"NNS\"\n    ], \n    \"silver-haired\": [\n        \"JJ\"\n    ], \n    \"Vesuvio\": [\n        \"NNP\"\n    ], \n    \"odd-year\": [\n        \"JJ\"\n    ], \n    \"country-squirehood\": [\n        \"NN\"\n    ], \n    \"orchards\": [\n        \"NNS\"\n    ], \n    \"optimistic\": [\n        \"JJ\"\n    ], \n    \"raison\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Mathematics\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Toxic\": [\n        \"JJ\"\n    ], \n    \"conserve\": [\n        \"VB\"\n    ], \n    \"terrorist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"market-inspired\": [\n        \"JJ\"\n    ], \n    \"dilate\": [\n        \"VB\"\n    ], \n    \"yuppie\": [\n        \"NN\"\n    ], \n    \"earthmoving\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tempestuous\": [\n        \"JJ\"\n    ], \n    \"digging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"terrorism\": [\n        \"NN\"\n    ], \n    \"discount-retailing\": [\n        \"NN\"\n    ], \n    \"repercussions\": [\n        \"NNS\"\n    ], \n    \"Rafale\": [\n        \"NNP\"\n    ], \n    \"Three-day\": [\n        \"JJ\"\n    ], \n    \"millilon\": [\n        \"NN\"\n    ], \n    \"restating\": [\n        \"VBG\"\n    ], \n    \"Benedek\": [\n        \"NNP\"\n    ], \n    \"assuaging\": [\n        \"VBG\"\n    ], \n    \"Medical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wisest\": [\n        \"JJS\"\n    ], \n    \"siphoning\": [\n        \"VBG\"\n    ], \n    \"proficiency\": [\n        \"NN\"\n    ], \n    \"Garrard\": [\n        \"NNP\"\n    ], \n    \"afghan\": [\n        \"NN\"\n    ], \n    \"mosaic\": [\n        \"NN\"\n    ], \n    \"six-week-old\": [\n        \"JJ\"\n    ], \n    \"Superfund\": [\n        \"NNP\"\n    ], \n    \"Cowles\": [\n        \"NNP\"\n    ], \n    \"Soignee\": [\n        \"FW\"\n    ], \n    \"well-illustrated\": [\n        \"JJ\"\n    ], \n    \"harpsichord\": [\n        \"NN\"\n    ], \n    \"Violin\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"microvan\": [\n        \"NN\"\n    ], \n    \"turned-up\": [\n        \"JJ\"\n    ], \n    \"strategicarms\": [\n        \"NNS\"\n    ], \n    \"Influenced\": [\n        \"NNP\"\n    ], \n    \"inconsistently\": [\n        \"RB\"\n    ], \n    \"Polian\": [\n        \"NNP\"\n    ], \n    \"corporate-pension\": [\n        \"JJ\"\n    ], \n    \"dachshounds\": [\n        \"NNS\"\n    ], \n    \"Hayden\": [\n        \"NNP\"\n    ], \n    \"PROSECUTOR\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tyre\": [\n        \"NNP\"\n    ], \n    \"day-to-day\": [\n        \"JJ\"\n    ], \n    \"hand-operated\": [\n        \"JJ\"\n    ], \n    \"Proxmire\": [\n        \"NNP\"\n    ], \n    \"nonsegregated\": [\n        \"JJ\"\n    ], \n    \"Theodosius\": [\n        \"NNP\"\n    ], \n    \"developing-country\": [\n        \"JJ\"\n    ], \n    \"Nilsson\": [\n        \"NNP\"\n    ], \n    \"pompous\": [\n        \"JJ\"\n    ], \n    \"Brigadier\": [\n        \"NNP\"\n    ], \n    \"lattice\": [\n        \"NN\"\n    ], \n    \"Reason\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"clerking\": [\n        \"NN\"\n    ], \n    \"Divesting\": [\n        \"VBG\"\n    ], \n    \"noblemen\": [\n        \"NNS\"\n    ], \n    \"harshened\": [\n        \"VBD\"\n    ], \n    \"Norall\": [\n        \"NNP\"\n    ], \n    \"increased\": [\n        \"VBN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBN|JJ\"\n    ], \n    \"Launch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Heartland\": [\n        \"NNP\"\n    ], \n    \"fairies\": [\n        \"NNS\"\n    ], \n    \"Shipping\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"WayMar\": [\n        \"NNP\"\n    ], \n    \"increases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cellular\": [\n        \"NNP\"\n    ], \n    \"Sao\": [\n        \"NNP\"\n    ], \n    \"incessant\": [\n        \"JJ\"\n    ], \n    \"Casablanca\": [\n        \"NNP\"\n    ], \n    \"tablet-shattering\": [\n        \"JJ\"\n    ], \n    \"Raydiola\": [\n        \"NNP\"\n    ], \n    \"CITIZENS\": [\n        \"NNS\"\n    ], \n    \"purling\": [\n        \"VBG\"\n    ], \n    \"pries\": [\n        \"VBZ\"\n    ], \n    \"parasite\": [\n        \"NN\"\n    ], \n    \"garage\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"post-June\": [\n        \"JJ\"\n    ], \n    \"JUDGE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"prevention\": [\n        \"NN\"\n    ], \n    \"THOSE\": [\n        \"DT\"\n    ], \n    \"sinewy\": [\n        \"JJ\"\n    ], \n    \"Brougham\": [\n        \"NNP\"\n    ], \n    \"Vladivostok\": [\n        \"NNP\"\n    ], \n    \"marketshare\": [\n        \"NN\"\n    ], \n    \"sinews\": [\n        \"NNS\"\n    ], \n    \"almonds\": [\n        \"NNS\"\n    ], \n    \"downside\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Game-Boy\": [\n        \"NN\"\n    ], \n    \"seed-bearing\": [\n        \"JJ\"\n    ], \n    \"oneself\": [\n        \"PRP\"\n    ], \n    \"LeBoutillier\": [\n        \"NNP\"\n    ], \n    \"Vladimir\": [\n        \"NNP\"\n    ], \n    \"jalapeno\": [\n        \"JJ\"\n    ], \n    \"Luerssen\": [\n        \"NNP\"\n    ], \n    \"literally\": [\n        \"RB\"\n    ], \n    \"Karamazov\": [\n        \"NNP\"\n    ], \n    \"Say\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"non-option\": [\n        \"JJ\"\n    ], \n    \"doer\": [\n        \"NN\"\n    ], \n    \"does\": [\n        \"VBZ\"\n    ], \n    \"telephone-booth\": [\n        \"NN\"\n    ], \n    \"blurry\": [\n        \"JJ\"\n    ], \n    \"Desarrollo\": [\n        \"NNP\"\n    ], \n    \"cadaverous\": [\n        \"JJ\"\n    ], \n    \"Inside\": [\n        \"IN\", \n        \"NNP\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"cellulose\": [\n        \"NN\"\n    ], \n    \"no-loads\": [\n        \"NNS\"\n    ], \n    \"behind-schedule\": [\n        \"JJ\"\n    ], \n    \"yuh\": [\n        \"PRP\"\n    ], \n    \"residences\": [\n        \"NNS\"\n    ], \n    \"Egil\": [\n        \"NNP\"\n    ], \n    \"beneath\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"slackjawed\": [\n        \"VBN\"\n    ], \n    \"payout\": [\n        \"NN\"\n    ], \n    \"double-decking\": [\n        \"NN\"\n    ], \n    \"asks\": [\n        \"VBZ\"\n    ], \n    \"traces\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"worker-compensation\": [\n        \"NN\"\n    ], \n    \"Rapp\": [\n        \"NNP\"\n    ], \n    \"Tammen\": [\n        \"NNP\"\n    ], \n    \"laboring\": [\n        \"VBG\"\n    ], \n    \"courtly\": [\n        \"JJ\"\n    ], \n    \"on-stage\": [\n        \"JJ\"\n    ], \n    \"nucleus\": [\n        \"NN\"\n    ], \n    \"concession\": [\n        \"NN\"\n    ], \n    \"encamp\": [\n        \"VB\"\n    ], \n    \"Spice-Nice\": [\n        \"NNP\"\n    ], \n    \"Rape\": [\n        \"NNP\"\n    ], \n    \"executives\": [\n        \"NNS\"\n    ], \n    \"enigmatic\": [\n        \"JJ\"\n    ], \n    \"ACCOUNT\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"contractions\": [\n        \"NNS\"\n    ], \n    \"title-insurance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Desai\": [\n        \"NNP\"\n    ], \n    \"iodinating\": [\n        \"VBG\"\n    ], \n    \"combat-ready\": [\n        \"JJ\"\n    ], \n    \"roads\": [\n        \"NNS\"\n    ], \n    \"negotiable\": [\n        \"JJ\"\n    ], \n    \"Network\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"peccavi\": [\n        \"FW\"\n    ], \n    \"Jeep-Eagle\": [\n        \"NNP\"\n    ], \n    \"caviar\": [\n        \"NN\"\n    ], \n    \"Micronyx\": [\n        \"NNP\"\n    ], \n    \"Hulbert\": [\n        \"NNP\"\n    ], \n    \"trigger\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Procreation\": [\n        \"NN\"\n    ], \n    \"troubling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"inter-tribal\": [\n        \"JJ\"\n    ], \n    \"bd\": [\n        \"NNS\"\n    ], \n    \"Cogefar\": [\n        \"NNP\"\n    ], \n    \"Ambler\": [\n        \"NNP\"\n    ], \n    \"Verrone\": [\n        \"NNP\"\n    ], \n    \"Finnair\": [\n        \"NNP\"\n    ], \n    \"Isosceles\": [\n        \"NNP\"\n    ], \n    \"teleological\": [\n        \"JJ\"\n    ], \n    \"DIET\": [\n        \"NNP\"\n    ], \n    \"Portillo\": [\n        \"NNP\"\n    ], \n    \"water-treatment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Chatter-Proofed\": [\n        \"JJ\"\n    ], \n    \"dextrous\": [\n        \"JJ\"\n    ], \n    \"be\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"candidacy\": [\n        \"NN\"\n    ], \n    \"headrests\": [\n        \"NNS\"\n    ], \n    \"DIED\": [\n        \"VBD\"\n    ], \n    \"arsenals\": [\n        \"NNS\"\n    ], \n    \"six-inch-square\": [\n        \"JJ\"\n    ], \n    \"deficitcutting\": [\n        \"NN\"\n    ], \n    \"realist\": [\n        \"NN\"\n    ], \n    \"Gettysburg\": [\n        \"NNP\"\n    ], \n    \"Gourlay\": [\n        \"NNP\"\n    ], \n    \"non-casino\": [\n        \"JJ\"\n    ], \n    \"nominations\": [\n        \"NNS\"\n    ], \n    \"custom-tailored\": [\n        \"JJ\"\n    ], \n    \"fold\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"menstruation\": [\n        \"JJ\"\n    ], \n    \"kowtow\": [\n        \"VB\"\n    ], \n    \"Portage\": [\n        \"NNP\"\n    ], \n    \"gasconade\": [\n        \"VB\"\n    ], \n    \"cosponsored\": [\n        \"VBN\"\n    ], \n    \"replica\": [\n        \"NN\"\n    ], \n    \"sixth-largest\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Yamaichi\": [\n        \"NNP\"\n    ], \n    \"endeared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"DAF\": [\n        \"NNP\"\n    ], \n    \"Kohler\": [\n        \"NNP\"\n    ], \n    \"Brain\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"gold-backed\": [\n        \"JJ\"\n    ], \n    \"DAT\": [\n        \"NNP\"\n    ], \n    \"nosedive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Naktong\": [\n        \"NNP\"\n    ], \n    \"state-dominated\": [\n        \"JJ\"\n    ], \n    \"Hayward\": [\n        \"NNP\"\n    ], \n    \"DAX\": [\n        \"NNP\"\n    ], \n    \"DAY\": [\n        \"NNP\"\n    ], \n    \"Bathar-on-Walli\": [\n        \"NNP\"\n    ], \n    \"woodlots\": [\n        \"NNS\"\n    ], \n    \"colonized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bailing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Aslacton\": [\n        \"NNP\"\n    ], \n    \"Karatz\": [\n        \"NNP\"\n    ], \n    \"Karate\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Beringer\": [\n        \"NNP\"\n    ], \n    \"Context\": [\n        \"NN\"\n    ], \n    \"Testament\": [\n        \"NNP\"\n    ], \n    \"epilogue\": [\n        \"NN\"\n    ], \n    \"Mainstream\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"tidelands\": [\n        \"NNS\"\n    ], \n    \"quetzal\": [\n        \"NN\"\n    ], \n    \"Findings\": [\n        \"NNS\"\n    ], \n    \"Pyrex\": [\n        \"NNP\"\n    ], \n    \"hoots\": [\n        \"NNS\"\n    ], \n    \"Thirty-one\": [\n        \"JJ\"\n    ], \n    \"rule\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"soporific\": [\n        \"JJ\"\n    ], \n    \"computer-magazine\": [\n        \"JJ\"\n    ], \n    \"athlete-student\": [\n        \"NN\"\n    ], \n    \"delicate-beyond-description\": [\n        \"JJ\"\n    ], \n    \"oil-bath\": [\n        \"NN\"\n    ], \n    \"abhor\": [\n        \"VB\"\n    ], \n    \"Epstein\": [\n        \"NNP\"\n    ], \n    \"practicability\": [\n        \"NN\"\n    ], \n    \"InterMedia\": [\n        \"NNP\"\n    ], \n    \"AGI\": [\n        \"NNP\"\n    ], \n    \"Missail\": [\n        \"NNP\"\n    ], \n    \"crunchier\": [\n        \"JJR\"\n    ], \n    \"AGF\": [\n        \"NNP\"\n    ], \n    \"AGE\": [\n        \"NNP\"\n    ], \n    \"Stuart\": [\n        \"NNP\"\n    ], \n    \"AGA\": [\n        \"NNP\"\n    ], \n    \"self-incrimination\": [\n        \"NN\"\n    ], \n    \"Messenger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kingpin\": [\n        \"NN\"\n    ], \n    \"AGS\": [\n        \"NNP\"\n    ], \n    \"relationships\": [\n        \"NNS\"\n    ], \n    \"votes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"anti-cartel\": [\n        \"JJ\"\n    ], \n    \"J-2\": [\n        \"NNP\"\n    ], \n    \"endings\": [\n        \"NNS\"\n    ], \n    \"voted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hacksaw\": [\n        \"NN\"\n    ], \n    \"Vere\": [\n        \"NNP\"\n    ], \n    \"Rocking\": [\n        \"NNP\"\n    ], \n    \"Yellow-pages\": [\n        \"NN\"\n    ], \n    \"customer-account\": [\n        \"NN\"\n    ], \n    \"Toth\": [\n        \"NNP\"\n    ], \n    \"Iranian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"compassion\": [\n        \"NN\"\n    ], \n    \"gobbles\": [\n        \"VBZ\"\n    ], \n    \"Volio\": [\n        \"NNP\"\n    ], \n    \"Centerior\": [\n        \"NNP\"\n    ], \n    \"egrets\": [\n        \"NNS\"\n    ], \n    \"exporters\": [\n        \"NNS\"\n    ], \n    \"Automatic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"gobbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"chapel\": [\n        \"NN\"\n    ], \n    \"tickets\": [\n        \"NNS\"\n    ], \n    \"co-plaintiff\": [\n        \"NN\"\n    ], \n    \"Daim\": [\n        \"NNP\"\n    ], \n    \"furrowed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Helton\": [\n        \"NNP\"\n    ], \n    \"Longinotti\": [\n        \"NNPS\"\n    ], \n    \"scalar\": [\n        \"JJ\"\n    ], \n    \"humidity\": [\n        \"NN\"\n    ], \n    \"casinos\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"delegate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"war-dirty\": [\n        \"JJ\"\n    ], \n    \"quaking\": [\n        \"VBG\"\n    ], \n    \"nondescript\": [\n        \"JJ\"\n    ], \n    \"Harbridge\": [\n        \"NNP\"\n    ], \n    \"Cowboys-owned\": [\n        \"JJ\"\n    ], \n    \"Wah\": [\n        \"NNP\"\n    ], \n    \"phoney\": [\n        \"JJ\"\n    ], \n    \"pragmatic\": [\n        \"JJ\"\n    ], \n    \"Matuschka\": [\n        \"NNP\"\n    ], \n    \"two-note\": [\n        \"JJ\"\n    ], \n    \"phones\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"shut\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"skillfully\": [\n        \"RB\"\n    ], \n    \"gull\": [\n        \"NN\"\n    ], \n    \"resubmitted\": [\n        \"VBD\"\n    ], \n    \"Strange\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"follow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"MacGregors\": [\n        \"NNPS\"\n    ], \n    \"spontaneously\": [\n        \"RB\"\n    ], \n    \"sorriest\": [\n        \"JJS\"\n    ], \n    \"phoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"perish\": [\n        \"VB\"\n    ], \n    \"Minnetonka\": [\n        \"NNP\"\n    ], \n    \"Trivia\": [\n        \"NNP\"\n    ], \n    \"seven-thirty\": [\n        \"RB\"\n    ], \n    \"Deluged\": [\n        \"VBN\"\n    ], \n    \"incompatible\": [\n        \"JJ\"\n    ], \n    \"Ones\": [\n        \"NNP\"\n    ], \n    \"toll\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Onex\": [\n        \"NNP\"\n    ], \n    \"tole\": [\n        \"NN\", \n        \"VBD\"\n    ], \n    \"told\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"unmotivated\": [\n        \"JJ\"\n    ], \n    \"simultaneously\": [\n        \"RB\"\n    ], \n    \"Padre\": [\n        \"NNP\"\n    ], \n    \"WASHINGTON\": [\n        \"NNP\"\n    ], \n    \"week-ends\": [\n        \"NNS\"\n    ], \n    \"kindled\": [\n        \"VBN\"\n    ], \n    \"bookcase\": [\n        \"NN\"\n    ], \n    \"Simulated\": [\n        \"JJ\"\n    ], \n    \"Addicted\": [\n        \"NNP\"\n    ], \n    \"detoxification\": [\n        \"NN\"\n    ], \n    \"Ft.\": [\n        \"NNP\"\n    ], \n    \"hundredweight\": [\n        \"NN\"\n    ], \n    \"kudos\": [\n        \"NNS\"\n    ], \n    \"Merrill\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"walkin\": [\n        \"VBG\"\n    ], \n    \"basketball-cutback\": [\n        \"NN\"\n    ], \n    \"struck\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Santucci\": [\n        \"NNP\"\n    ], \n    \"regimentation\": [\n        \"NN\"\n    ], \n    \"CTS\": [\n        \"NNP\"\n    ], \n    \"Stratus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"angrily\": [\n        \"RB\"\n    ], \n    \"charred\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Health\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ESystems\": [\n        \"NNP\"\n    ], \n    \"CTB\": [\n        \"NNP\"\n    ], \n    \"embarrass\": [\n        \"VB\"\n    ], \n    \"Ouija\": [\n        \"NNP\"\n    ], \n    \"removal\": [\n        \"NN\"\n    ], \n    \"ARBITRAGE\": [\n        \"NN\"\n    ], \n    \"Akros\": [\n        \"NNP\"\n    ], \n    \"Bernhardt\": [\n        \"NNP\"\n    ], \n    \"substitutions\": [\n        \"NNS\"\n    ], \n    \"prices...\": [\n        \":\"\n    ], \n    \"Foil\": [\n        \"NNP\"\n    ], \n    \"whinnied\": [\n        \"VBD\"\n    ], \n    \"Akron\": [\n        \"NNP\"\n    ], \n    \"Unwanted\": [\n        \"JJ\"\n    ], \n    \"PaineWebber\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Squadrons\": [\n        \"NNP\"\n    ], \n    \"Masterson\": [\n        \"NNP\"\n    ], \n    \"tumultuous\": [\n        \"JJ\"\n    ], \n    \"minor-sport\": [\n        \"NN\"\n    ], \n    \"Introduces\": [\n        \"VBZ\"\n    ], \n    \"curvature\": [\n        \"NN\"\n    ], \n    \"Feeds\": [\n        \"NNS\"\n    ], \n    \"Introduced\": [\n        \"VBN\"\n    ], \n    \"self-involved\": [\n        \"JJ\"\n    ], \n    \"handkerchiefs\": [\n        \"NNS\"\n    ], \n    \"bartender\": [\n        \"NN\"\n    ], \n    \"Challenging\": [\n        \"VBG\"\n    ], \n    \"full-throated\": [\n        \"JJ\"\n    ], \n    \"work\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"worm\": [\n        \"NN\"\n    ], \n    \"worn\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"resents\": [\n        \"VBZ\"\n    ], \n    \"mammalian\": [\n        \"JJ\"\n    ], \n    \"macroscopically\": [\n        \"RB\"\n    ], \n    \"wort\": [\n        \"NN\"\n    ], \n    \"criticizing\": [\n        \"VBG\"\n    ], \n    \"corporativism\": [\n        \"NN\"\n    ], \n    \"airstrip\": [\n        \"NN\"\n    ], \n    \"psyllium\": [\n        \"NN\"\n    ], \n    \"exhorts\": [\n        \"VBZ\"\n    ], \n    \"Swan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hurricane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pennock\": [\n        \"NNP\"\n    ], \n    \"hyphenated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"sub-assembly\": [\n        \"NN\"\n    ], \n    \"Frontiers\": [\n        \"NNS\"\n    ], \n    \"dry-eyed\": [\n        \"JJ\"\n    ], \n    \"Parkos\": [\n        \"NNP\"\n    ], \n    \"Journal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hosannas\": [\n        \"NNS\"\n    ], \n    \"mulch\": [\n        \"NN\"\n    ], \n    \"disappear\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"completed-contract\": [\n        \"JJ\"\n    ], \n    \"disappoint\": [\n        \"VB\"\n    ], \n    \"Arguing\": [\n        \"VBG\"\n    ], \n    \"Rilly\": [\n        \"NNP\"\n    ], \n    \"FORCES\": [\n        \"NNS\"\n    ], \n    \"subbing\": [\n        \"VBG\"\n    ], \n    \"Will\": [\n        \"MD\", \n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Wilm\": [\n        \"NNP\"\n    ], \n    \"interlibrary\": [\n        \"JJ\"\n    ], \n    \"Wilk\": [\n        \"NNP\"\n    ], \n    \"Wild\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Wile\": [\n        \"NNP\"\n    ], \n    \"blonde-haired\": [\n        \"JJ\"\n    ], \n    \"meaningful\": [\n        \"JJ\"\n    ], \n    \"nipped\": [\n        \"VBD\"\n    ], \n    \"shimmering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"foolhardy\": [\n        \"JJ\"\n    ], \n    \"thickens\": [\n        \"VBZ\"\n    ], \n    \"Afanasyeva\": [\n        \"NNP\"\n    ], \n    \"scarf\": [\n        \"NN\"\n    ], \n    \"ambulance\": [\n        \"NN\"\n    ], \n    \"Sexual\": [\n        \"NNP\"\n    ], \n    \"order\": [\n        \"NN\", \n        \"VBP\", \n        \"IN\", \n        \"VB\"\n    ], \n    \"Moultons\": [\n        \"NNPS\"\n    ], \n    \"Eye\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"office\": [\n        \"NN\"\n    ], \n    \"Longman\": [\n        \"NNP\"\n    ], \n    \"five-blade\": [\n        \"JJ\"\n    ], \n    \"Indeterminate\": [\n        \"NNP\"\n    ], \n    \"proportionate\": [\n        \"JJ\"\n    ], \n    \"squalor\": [\n        \"NN\"\n    ], \n    \"Absorbed\": [\n        \"VBN\"\n    ], \n    \"debuted\": [\n        \"VBD\"\n    ], \n    \"sludge\": [\n        \"NN\"\n    ], \n    \"misconduct\": [\n        \"NN\"\n    ], \n    \"realism\": [\n        \"NN\"\n    ], \n    \"upholding\": [\n        \"VBG\"\n    ], \n    \"bugless\": [\n        \"JJ\"\n    ], \n    \"extraterritorial\": [\n        \"JJ\"\n    ], \n    \"Monetary\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"clanged\": [\n        \"VBD\"\n    ], \n    \"pricier\": [\n        \"JJR\"\n    ], \n    \"brawling\": [\n        \"NN\"\n    ], \n    \"stippled\": [\n        \"JJ\"\n    ], \n    \"securities-price\": [\n        \"JJ\"\n    ], \n    \"Burns\": [\n        \"NNP\"\n    ], \n    \"Burnt\": [\n        \"NNP\"\n    ], \n    \"skyline\": [\n        \"NN\"\n    ], \n    \"Raising\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"willling\": [\n        \"VBG\"\n    ], \n    \"three-cornered\": [\n        \"JJ\"\n    ], \n    \"anti-statist\": [\n        \"NN\"\n    ], \n    \"Pros\": [\n        \"NNS\"\n    ], \n    \"Mitropoulos\": [\n        \"NNP\"\n    ], \n    \"Reama\": [\n        \"NNP\"\n    ], \n    \"friction-free\": [\n        \"JJ\"\n    ], \n    \"Travels\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Suggests\": [\n        \"NNS\"\n    ], \n    \"Foote\": [\n        \"NNP\"\n    ], \n    \"shameful\": [\n        \"JJ\"\n    ], \n    \"suitor\": [\n        \"NN\"\n    ], \n    \"Gumport\": [\n        \"NNP\"\n    ], \n    \"Rathbones\": [\n        \"NNPS\"\n    ], \n    \"intercrisis\": [\n        \"NN\"\n    ], \n    \"Rubicam\": [\n        \"NNP\"\n    ], \n    \"mini-saga\": [\n        \"NN\"\n    ], \n    \"bolted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"weasling\": [\n        \"VBG\"\n    ], \n    \"oxygen\": [\n        \"NN\"\n    ], \n    \"doles\": [\n        \"VBZ\"\n    ], \n    \"embankment\": [\n        \"NN\"\n    ], \n    \"NPD\": [\n        \"NNP\"\n    ], \n    \"GFSA\": [\n        \"NNP\"\n    ], \n    \"doled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Gallant\": [\n        \"NNP\"\n    ], \n    \"Groton\": [\n        \"NNP\"\n    ], \n    \"Rhine\": [\n        \"NNP\"\n    ], \n    \"Choking\": [\n        \"VBG\"\n    ], \n    \"Feminist\": [\n        \"NNP\"\n    ], \n    \"SOME\": [\n        \"DT\"\n    ], \n    \"Galland\": [\n        \"NNP\"\n    ], \n    \"Montbrial\": [\n        \"NNP\"\n    ], \n    \"disappointing\": [\n        \"JJ\"\n    ], \n    \"recognizable\": [\n        \"JJ\"\n    ], \n    \"Tournier\": [\n        \"NNP\"\n    ], \n    \"Feminism\": [\n        \"NN\"\n    ], \n    \"reformists\": [\n        \"NNS\"\n    ], \n    \"Novak\": [\n        \"NNP\"\n    ], \n    \"Presbyterian\": [\n        \"NNP\"\n    ], \n    \"cornmeal-price\": [\n        \"NN\"\n    ], \n    \"cameras\": [\n        \"NNS\"\n    ], \n    \"baby-products\": [\n        \"JJ\"\n    ], \n    \"fellowship\": [\n        \"NN\"\n    ], \n    \"phone-company\": [\n        \"NN\"\n    ], \n    \"steel-service-center\": [\n        \"NN\"\n    ], \n    \"unproblematic\": [\n        \"JJ\"\n    ], \n    \"Napoleon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bugatti\": [\n        \"NNP\"\n    ], \n    \"deep-sounding\": [\n        \"JJ\"\n    ], \n    \"arpeggios\": [\n        \"NNS\"\n    ], \n    \"Assemblies\": [\n        \"NNP\"\n    ], \n    \"atom-like\": [\n        \"JJ\"\n    ], \n    \"admits\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"anti-Soviet\": [\n        \"JJ\"\n    ], \n    \"Griffith-Jones\": [\n        \"NNP\"\n    ], \n    \"condicions\": [\n        \"NNS\"\n    ], \n    \"theoriticians\": [\n        \"NNS\"\n    ], \n    \"entry-limiting\": [\n        \"JJ\"\n    ], \n    \"Norell\": [\n        \"NNP\"\n    ], \n    \"Zend-Avesta\": [\n        \"NNP\"\n    ], \n    \"undaunted\": [\n        \"JJ\"\n    ], \n    \"Australasian\": [\n        \"JJ\"\n    ], \n    \"louse\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"myth-making\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"lousy\": [\n        \"JJ\"\n    ], \n    \"cannisters\": [\n        \"NNS\"\n    ], \n    \"solicitousness\": [\n        \"NN\"\n    ], \n    \"Baker-Shevardnadze\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"condom\": [\n        \"NN\"\n    ], \n    \"carloading\": [\n        \"NN\"\n    ], \n    \"SWAO\": [\n        \"NNP\"\n    ], \n    \"realness\": [\n        \"NN\"\n    ], \n    \"Palestinian\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"split-level\": [\n        \"JJ\"\n    ], \n    \"miscalculation\": [\n        \"NN\"\n    ], \n    \"overaggressive\": [\n        \"JJ\"\n    ], \n    \"Going\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"radar.\": [\n        \"NN\"\n    ], \n    \"Aegis-class\": [\n        \"JJ\"\n    ], \n    \"comin\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"comic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Symbion\": [\n        \"NNP\"\n    ], \n    \"Hustle\": [\n        \"VB\"\n    ], \n    \"Garish\": [\n        \"JJ\"\n    ], \n    \"Tests\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"hedging\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Repository\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Testy\": [\n        \"JJ\"\n    ], \n    \"Kolber\": [\n        \"NNP\"\n    ], \n    \"Fawzy\": [\n        \"NNP\"\n    ], \n    \"Testa\": [\n        \"NNP\"\n    ], \n    \"compromise\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"horn-rimmed\": [\n        \"JJ\"\n    ], \n    \"upshot\": [\n        \"NN\"\n    ], \n    \"Psychotherapy\": [\n        \"NNP\"\n    ], \n    \"Fawzi\": [\n        \"NNP\"\n    ], \n    \"Disneyland\": [\n        \"NNP\"\n    ], \n    \"kiwi\": [\n        \"NN\"\n    ], \n    \"S*/NN&L\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"decorations\": [\n        \"NNS\"\n    ], \n    \"fanatical\": [\n        \"JJ\"\n    ], \n    \"provisioned\": [\n        \"VBN\"\n    ], \n    \"radars\": [\n        \"NNS\"\n    ], \n    \"Care-Unit\": [\n        \"NNP\"\n    ], \n    \"rejected\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Preparation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ahmet\": [\n        \"NNP\"\n    ], \n    \"weakly\": [\n        \"RB\"\n    ], \n    \"southernisms\": [\n        \"NNS\"\n    ], \n    \"Y&R\": [\n        \"NNP\"\n    ], \n    \"Berman\": [\n        \"NNP\"\n    ], \n    \"dissociated\": [\n        \"VBN\"\n    ], \n    \"Selkirk\": [\n        \"NNP\"\n    ], \n    \"face-saving\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mercy\": [\n        \"NN\"\n    ], \n    \"disproportionally\": [\n        \"RB\"\n    ], \n    \"Mitofksy\": [\n        \"NNP\"\n    ], \n    \"hike\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"non-freezing\": [\n        \"JJ\"\n    ], \n    \"programs\": [\n        \"NNS\"\n    ], \n    \"expurgation\": [\n        \"NN\"\n    ], \n    \"Wrecks\": [\n        \"VBZ\"\n    ], \n    \"songwriters\": [\n        \"NNS\"\n    ], \n    \"high-cost\": [\n        \"JJ\"\n    ], \n    \"Prose\": [\n        \"NNP\"\n    ], \n    \"Madonna\": [\n        \"NNP\"\n    ], \n    \"hacking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"haves\": [\n        \"NNS\"\n    ], \n    \"much-abused\": [\n        \"JJ\"\n    ], \n    \"Ticor\": [\n        \"NNP\"\n    ], \n    \"rewrite\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Cordier\": [\n        \"NNP\"\n    ], \n    \"maniclike\": [\n        \"JJ\"\n    ], \n    \"Rig-Veda\": [\n        \"NNP\"\n    ], \n    \"pessimist\": [\n        \"NN\"\n    ], \n    \"Msec.\": [\n        \"NNS\"\n    ], \n    \"super-regionals\": [\n        \"NNS\"\n    ], \n    \"lull\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Reagan-era\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"accompany\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Knupp\": [\n        \"NNP\"\n    ], \n    \"Quasimodo\": [\n        \"NNP\"\n    ], \n    \"beef-fat\": [\n        \"JJ\"\n    ], \n    \"ponder\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"genuine\": [\n        \"JJ\"\n    ], \n    \"small-lot\": [\n        \"JJ\"\n    ], \n    \"retail-sized\": [\n        \"JJ\"\n    ], \n    \"Amory\": [\n        \"NNP\"\n    ], \n    \"Fleetwood\": [\n        \"NNP\"\n    ], \n    \"Stroud\": [\n        \"NNP\"\n    ], \n    \"gnomelike\": [\n        \"JJ\"\n    ], \n    \"overtook\": [\n        \"VBD\"\n    ], \n    \"virus-free\": [\n        \"JJ\"\n    ], \n    \"Stroup\": [\n        \"NNP\"\n    ], \n    \"circles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Aristide\": [\n        \"NNP\"\n    ], \n    \"Metropolian\": [\n        \"NNP\"\n    ], \n    \"SYSCO\": [\n        \"NNP\"\n    ], \n    \"Quayle\": [\n        \"NNP\"\n    ], \n    \"solidified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"HEXX\": [\n        \"NNP\"\n    ], \n    \"Demanded\": [\n        \"VBD\"\n    ], \n    \"circled\": [\n        \"VBD\"\n    ], \n    \"tally\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"corded\": [\n        \"VBN\"\n    ], \n    \"solidifies\": [\n        \"VBZ\"\n    ], \n    \"Vieth\": [\n        \"NNP\"\n    ], \n    \"Aidan\": [\n        \"NNP\"\n    ], \n    \"Ardmore\": [\n        \"NNP\"\n    ], \n    \"Telegraaf\": [\n        \"NNP\"\n    ], \n    \"newcomers\": [\n        \"NNS\"\n    ], \n    \"Self-contained\": [\n        \"JJ\"\n    ], \n    \"Election\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deeply\": [\n        \"RB\"\n    ], \n    \"Institutes\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Native\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"decidedly\": [\n        \"RB\"\n    ], \n    \"kyat\": [\n        \"NN\"\n    ], \n    \"teetering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"writeoff\": [\n        \"NN\"\n    ], \n    \"knightly\": [\n        \"JJ\"\n    ], \n    \"chandelier\": [\n        \"NN\"\n    ], \n    \"Dimitriadis\": [\n        \"NNP\"\n    ], \n    \"nephew\": [\n        \"NN\"\n    ], \n    \"Powell\": [\n        \"NNP\"\n    ], \n    \"Monteith\": [\n        \"NNP\"\n    ], \n    \"sharks\": [\n        \"NNS\"\n    ], \n    \"sewn\": [\n        \"VBN\"\n    ], \n    \"Fasken\": [\n        \"NNP\"\n    ], \n    \"Facetious\": [\n        \"NNP\"\n    ], \n    \"elucidated\": [\n        \"VBN\"\n    ], \n    \"thermodynamically\": [\n        \"RB\"\n    ], \n    \"yea\": [\n        \"NN\"\n    ], \n    \"fast-opening\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"most-valuable-player\": [\n        \"NN\"\n    ], \n    \"pursuing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"so-far\": [\n        \"JJ\"\n    ], \n    \"Orkney\": [\n        \"NNP\"\n    ], \n    \"sews\": [\n        \"VBZ\"\n    ], \n    \"higher-capacity\": [\n        \"JJ\"\n    ], \n    \"Leven\": [\n        \"NNP\"\n    ], \n    \"Level\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"transfixing\": [\n        \"VBG\"\n    ], \n    \"unsteady\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"preferred\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBG\", \n        \"VBN\"\n    ], \n    \"Vieira\": [\n        \"NNP\"\n    ], \n    \"Oranjemund\": [\n        \"NNP\"\n    ], \n    \"MTCR\": [\n        \"NNP\"\n    ], \n    \"Lever\": [\n        \"NNP\"\n    ], \n    \"Francona\": [\n        \"NNP\"\n    ], \n    \"savory\": [\n        \"JJ\"\n    ], \n    \"Menagerie\": [\n        \"NNP\"\n    ], \n    \"speared\": [\n        \"VBD\"\n    ], \n    \"suffrage\": [\n        \"NN\"\n    ], \n    \"R.J.\": [\n        \"NNP\"\n    ], \n    \"Peres\": [\n        \"NNP\"\n    ], \n    \"nuper\": [\n        \"FW\"\n    ], \n    \"Brownlow\": [\n        \"NNP\"\n    ], \n    \"stead\": [\n        \"NN\"\n    ], \n    \"humanist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"radiators\": [\n        \"NNS\"\n    ], \n    \"Dobbs\": [\n        \"NNP\"\n    ], \n    \"analytical\": [\n        \"JJ\"\n    ], \n    \"Perez\": [\n        \"NNP\"\n    ], \n    \"crucifixion\": [\n        \"NN\"\n    ], \n    \"steak\": [\n        \"NN\"\n    ], \n    \"steal\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"steam\": [\n        \"NN\"\n    ], \n    \"ghoul\": [\n        \"NN\"\n    ], \n    \"Christendom\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Apparatus\": [\n        \"NN\"\n    ], \n    \"observes\": [\n        \"VBZ\"\n    ], \n    \"H.C.\": [\n        \"NNP\"\n    ], \n    \"segmentation\": [\n        \"NN\"\n    ], \n    \"Semmel\": [\n        \"NNP\"\n    ], \n    \"observed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"building-materials\": [\n        \"NNS\"\n    ], \n    \"Cetus\": [\n        \"NNP\"\n    ], \n    \"scrutinizing\": [\n        \"VBG\"\n    ], \n    \"semiconductor-equipment\": [\n        \"NN\"\n    ], \n    \"gesticulated\": [\n        \"VBD\"\n    ], \n    \"chiding\": [\n        \"VBG\"\n    ], \n    \"Pricey\": [\n        \"JJ\"\n    ], \n    \"grain-storage\": [\n        \"NN\"\n    ], \n    \"anaprapath\": [\n        \"NN\"\n    ], \n    \"chortling\": [\n        \"VBG\"\n    ], \n    \"seeping\": [\n        \"VBG\"\n    ], \n    \"tester\": [\n        \"NN\"\n    ], \n    \"yen-support\": [\n        \"JJ\"\n    ], \n    \"breakaway\": [\n        \"NN\"\n    ], \n    \"mincing\": [\n        \"VBG\"\n    ], \n    \"Nasser\": [\n        \"NNP\"\n    ], \n    \"detracting\": [\n        \"VBG\"\n    ], \n    \"Issuers\": [\n        \"NNS\"\n    ], \n    \"disservice\": [\n        \"NN\"\n    ], \n    \"negatively\": [\n        \"RB\"\n    ], \n    \"straight-talking\": [\n        \"JJ\"\n    ], \n    \"received\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"abstractedness\": [\n        \"NN\"\n    ], \n    \"combating\": [\n        \"VBG\"\n    ], \n    \"ill\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"paralyzing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"DaiIchi\": [\n        \"NNP\"\n    ], \n    \"ilk\": [\n        \"NN\"\n    ], \n    \"receives\": [\n        \"VBZ\"\n    ], \n    \"receiver\": [\n        \"NN\"\n    ], \n    \"Mickelberry\": [\n        \"NNP\"\n    ], \n    \"groans\": [\n        \"VBZ\"\n    ], \n    \"Honors\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"department-store\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Feb.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ETR\": [\n        \"NNP\"\n    ], \n    \"credit-information\": [\n        \"NN\"\n    ], \n    \"Klemperer\": [\n        \"NNP\"\n    ], \n    \"spear\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Cheeses\": [\n        \"NNPS\"\n    ], \n    \"ETA\": [\n        \"NNP\"\n    ], \n    \"urgencies\": [\n        \"NNS\"\n    ], \n    \"wider\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"speak\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"trickery\": [\n        \"NN\"\n    ], \n    \"engines\": [\n        \"NNS\"\n    ], \n    \"mobilization\": [\n        \"NN\"\n    ], \n    \"Modrall\": [\n        \"NNP\"\n    ], \n    \"exhume\": [\n        \"VB\"\n    ], \n    \"Vague\": [\n        \"JJ\"\n    ], \n    \"leech\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Quotation\": [\n        \"NNP\"\n    ], \n    \"hiders\": [\n        \"NNS\"\n    ], \n    \"Takushoku\": [\n        \"NNP\"\n    ], \n    \"Electoral\": [\n        \"NNP\"\n    ], \n    \"concerning\": [\n        \"VBG\"\n    ], \n    \"catering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Guenter\": [\n        \"NNP\"\n    ], \n    \"handicraftsman\": [\n        \"NN\"\n    ], \n    \"quailing\": [\n        \"VBG\"\n    ], \n    \"Pieter\": [\n        \"NNP\"\n    ], \n    \"Klees\": [\n        \"NNP\"\n    ], \n    \"rasps\": [\n        \"NNS\"\n    ], \n    \"Perlman\": [\n        \"NNP\"\n    ], \n    \"raspy\": [\n        \"NN\"\n    ], \n    \"clean-shaven\": [\n        \"JJ\"\n    ], \n    \"Workshop\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"half-breed\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"lahk\": [\n        \"IN\"\n    ], \n    \"Bales\": [\n        \"NNP\"\n    ], \n    \"Agins\": [\n        \"NNP\"\n    ], \n    \"stink\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"blood-clot\": [\n        \"NN\"\n    ], \n    \"Ithacan\": [\n        \"NNP\"\n    ], \n    \"kaleidescope\": [\n        \"NN\"\n    ], \n    \"undemocratic\": [\n        \"JJ\"\n    ], \n    \"Matsuura\": [\n        \"NNP\"\n    ], \n    \"sting\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"self-defeat\": [\n        \"NN\"\n    ], \n    \"money-minded\": [\n        \"JJ\"\n    ], \n    \"brake\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"drug-education\": [\n        \"NN\"\n    ], \n    \"Lenny\": [\n        \"NNP\"\n    ], \n    \"Insecures\": [\n        \"NNPS\"\n    ], \n    \"Shields\": [\n        \"NNP\"\n    ], \n    \"Missions\": [\n        \"NNP\"\n    ], \n    \"wooing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bas-relief\": [\n        \"NN\"\n    ], \n    \"MiG-29\": [\n        \"NNP\"\n    ], \n    \"Dolce\": [\n        \"NNP\"\n    ], \n    \"Shlaes\": [\n        \"NNP\"\n    ], \n    \"veining\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Parrino\": [\n        \"NNP\"\n    ], \n    \"sometimes-exhausting\": [\n        \"JJ\"\n    ], \n    \"Placid\": [\n        \"NNP\"\n    ], \n    \"Burmans\": [\n        \"NNPS\"\n    ], \n    \"avoids\": [\n        \"VBZ\"\n    ], \n    \"summer-long\": [\n        \"JJ\"\n    ], \n    \"perimeter\": [\n        \"NN\"\n    ], \n    \"pastels\": [\n        \"NNS\"\n    ], \n    \"foot-high\": [\n        \"JJ\"\n    ], \n    \"outperformed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fastest-growing\": [\n        \"JJ\", \n        \"JJS\", \n        \"NN\"\n    ], \n    \"Skokie\": [\n        \"NNP\"\n    ], \n    \"insulating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"alkylbenzenesulfonates\": [\n        \"NNS\"\n    ], \n    \"counterbidders\": [\n        \"NNS\"\n    ], \n    \"Distillers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"operands\": [\n        \"NNS\"\n    ], \n    \"immaterial\": [\n        \"JJ\"\n    ], \n    \"Physically\": [\n        \"RB\"\n    ], \n    \"drip\": [\n        \"NN\"\n    ], \n    \"Monitors\": [\n        \"NNP\"\n    ], \n    \"Tribuna\": [\n        \"NNP\"\n    ], \n    \"haircuts\": [\n        \"NNS\"\n    ], \n    \"discreet\": [\n        \"JJ\"\n    ], \n    \"Tribune\": [\n        \"NNP\"\n    ], \n    \"local-money\": [\n        \"NN\"\n    ], \n    \"impertinent\": [\n        \"JJ\"\n    ], \n    \"buy-out\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"messieurs\": [\n        \"FW\"\n    ], \n    \"endometriosis\": [\n        \"NN\"\n    ], \n    \"querulously\": [\n        \"RB\"\n    ], \n    \"sticking\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"unities\": [\n        \"NNS\"\n    ], \n    \"Mubarak\": [\n        \"NNP\"\n    ], \n    \"Conclusions\": [\n        \"NNS\"\n    ], \n    \"Zeron\": [\n        \"NNP\"\n    ], \n    \"dignify\": [\n        \"VB\"\n    ], \n    \"multilocation\": [\n        \"NN\"\n    ], \n    \"supervisory\": [\n        \"JJ\"\n    ], \n    \"tenting\": [\n        \"NN\"\n    ], \n    \"goggles\": [\n        \"NNS\"\n    ], \n    \"Zeros\": [\n        \"NNS\"\n    ], \n    \"physiochemical\": [\n        \"JJ\"\n    ], \n    \"still-continuing\": [\n        \"JJ\"\n    ], \n    \"Pittman\": [\n        \"NNP\"\n    ], \n    \"Ballantine\\\\/Del\": [\n        \"NNP\"\n    ], \n    \"Wesco\": [\n        \"NNP\"\n    ], \n    \"Gay\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"photographer\": [\n        \"NN\"\n    ], \n    \"Trident\": [\n        \"NNP\"\n    ], \n    \"Gas\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"six-game\": [\n        \"JJ\"\n    ], \n    \"Gal\": [\n        \"NNP\"\n    ], \n    \"surtaxes\": [\n        \"NNS\"\n    ], \n    \"CASTLE\": [\n        \"NNP\"\n    ], \n    \"photographed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"maye\": [\n        \"MD\"\n    ], \n    \"maya\": [\n        \"FW\"\n    ], \n    \"required.\": [\n        \"VBN\"\n    ], \n    \"lead-zinc\": [\n        \"JJ\"\n    ], \n    \"fusion\": [\n        \"NN\"\n    ], \n    \"injuring\": [\n        \"VBG\"\n    ], \n    \"commandments\": [\n        \"NNS\"\n    ], \n    \"tarpon\": [\n        \"NN\"\n    ], \n    \"draftsmen\": [\n        \"NNS\"\n    ], \n    \"seductive\": [\n        \"JJ\"\n    ], \n    \"flavoring\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"texts\": [\n        \"NNS\"\n    ], \n    \"bucolic\": [\n        \"JJ\"\n    ], \n    \"Ga.\": [\n        \"NNP\"\n    ], \n    \"pains-taking\": [\n        \"JJ\"\n    ], \n    \"conniver\": [\n        \"NN\"\n    ], \n    \"invaluable\": [\n        \"JJ\"\n    ], \n    \"one-step\": [\n        \"JJ\"\n    ], \n    \"nude\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"force-fear\": [\n        \"JJ\"\n    ], \n    \"calculus\": [\n        \"NN\"\n    ], \n    \"profit-seeking\": [\n        \"JJ\"\n    ], \n    \"IL-4\": [\n        \"NN\"\n    ], \n    \"Skinnerish\": [\n        \"JJ\"\n    ], \n    \"lineages\": [\n        \"NNS\"\n    ], \n    \"Unwholesome\": [\n        \"JJ\"\n    ], \n    \"Distilled\": [\n        \"NNP\"\n    ], \n    \"shipboard-weapons\": [\n        \"NNS\"\n    ], \n    \"stylization\": [\n        \"NN\"\n    ], \n    \"overdriving\": [\n        \"VBG\"\n    ], \n    \"drawdown\": [\n        \"NN\"\n    ], \n    \"rhubarb-like\": [\n        \"JJ\"\n    ], \n    \"global-warming\": [\n        \"JJ\"\n    ], \n    \"WCRS-Eurocom\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Stoll\": [\n        \"NNP\"\n    ], \n    \"antirealistic\": [\n        \"JJ\"\n    ], \n    \"repository\": [\n        \"NN\"\n    ], \n    \"Lankford\": [\n        \"NNP\"\n    ], \n    \"molton\": [\n        \"NN\"\n    ], \n    \"outlays\": [\n        \"NNS\"\n    ], \n    \"U.N.F.P./NNP.\": [\n        \"JJ\"\n    ], \n    \"Farrells\": [\n        \"NNPS\"\n    ], \n    \"Property\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hydra-headed\": [\n        \"JJ\"\n    ], \n    \"banked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"lightheaded\": [\n        \"JJ\"\n    ], \n    \"Nazi-occupied\": [\n        \"JJ\"\n    ], \n    \"Mennonite\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"hostilities\": [\n        \"NNS\"\n    ], \n    \"multi-valve\": [\n        \"JJ\"\n    ], \n    \"constituting\": [\n        \"VBG\"\n    ], \n    \"speedier\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"banker\": [\n        \"NN\"\n    ], \n    \"horizon\": [\n        \"NN\"\n    ], \n    \"croak\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"SP1-plus\": [\n        \"JJ\"\n    ], \n    \"Siciliana\": [\n        \"NNP\"\n    ], \n    \"loin\": [\n        \"NN\"\n    ], \n    \"Hoijer\": [\n        \"NNP\"\n    ], \n    \"squander\": [\n        \"VB\"\n    ], \n    \"ruddiness\": [\n        \"NN\"\n    ], \n    \"hard-liner\": [\n        \"NN\"\n    ], \n    \"Faulding\": [\n        \"NNP\"\n    ], \n    \"deal\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kellogg-Briand\": [\n        \"NNP\"\n    ], \n    \"legislation\": [\n        \"NN\"\n    ], \n    \"slowdowns\": [\n        \"NNS\"\n    ], \n    \"editions\": [\n        \"NNS\"\n    ], \n    \"Mechanized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"anti-convulsive\": [\n        \"JJ\"\n    ], \n    \"recession-plagued\": [\n        \"JJ\"\n    ], \n    \"Sanyo\": [\n        \"NNP\"\n    ], \n    \"super-majority\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shopping-mall\": [\n        \"NN|JJ\"\n    ], \n    \"Holcomb\": [\n        \"NNP\"\n    ], \n    \"China-watcher\": [\n        \"NN\"\n    ], \n    \"dead\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VBN\"\n    ], \n    \"Psychiatry\": [\n        \"NNP\"\n    ], \n    \"Bfree\": [\n        \"NNP\"\n    ], \n    \"Fenster\": [\n        \"NNP\"\n    ], \n    \"Bellamy\": [\n        \"NNP\"\n    ], \n    \"wellrun\": [\n        \"JJ\"\n    ], \n    \"overindebtedness\": [\n        \"NN\"\n    ], \n    \"rejuvenation\": [\n        \"NN\"\n    ], \n    \"shuttled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Czech\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Studio-City\": [\n        \"NNP\"\n    ], \n    \"Beadle\": [\n        \"NNP\"\n    ], \n    \"pension-minded\": [\n        \"JJ\"\n    ], \n    \"foreknown\": [\n        \"VB\"\n    ], \n    \"dovetails\": [\n        \"VBZ\"\n    ], \n    \"Xomen-E5\": [\n        \"NNP\"\n    ], \n    \"back-up\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cancers\": [\n        \"NNS\"\n    ], \n    \"fingering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"foreign-country\": [\n        \"JJ\"\n    ], \n    \"vacationers\": [\n        \"NNS\"\n    ], \n    \"fulfills\": [\n        \"VBZ\"\n    ], \n    \"stronger\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"public-audit\": [\n        \"JJ\"\n    ], \n    \"Broome\": [\n        \"NNP\"\n    ], \n    \"saltwater\": [\n        \"NN\"\n    ], \n    \"stock-investing\": [\n        \"JJ\"\n    ], \n    \"archive\": [\n        \"NN\"\n    ], \n    \"university-based\": [\n        \"JJ\"\n    ], \n    \"Bagcraft\": [\n        \"NNP\"\n    ], \n    \"revetments\": [\n        \"NNS\"\n    ], \n    \"spongy\": [\n        \"JJ\"\n    ], \n    \"dying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"historical-claims\": [\n        \"NNS\"\n    ], \n    \"meanness\": [\n        \"NN\"\n    ], \n    \"Supermarket\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"reality\": [\n        \"NN\"\n    ], \n    \"Lurcat\": [\n        \"NNP\"\n    ], \n    \"Consideration\": [\n        \"NN\"\n    ], \n    \"orate\": [\n        \"VB\"\n    ], \n    \"disbursesments\": [\n        \"NNS\"\n    ], \n    \"Eurodynamics\": [\n        \"NNPS\"\n    ], \n    \"Windows\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Bruwer\": [\n        \"NNP\"\n    ], \n    \"troupe\": [\n        \"NN\"\n    ], \n    \"Nakayasu\": [\n        \"NNP\"\n    ], \n    \"WWRL\": [\n        \"NNP\"\n    ], \n    \"Estate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"abscissa\": [\n        \"NN\"\n    ], \n    \"reasoning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Osis\": [\n        \"NNP\"\n    ], \n    \"Crescent\": [\n        \"NNP\"\n    ], \n    \"Encyclopedia\": [\n        \"NNP\"\n    ], \n    \"statistics-keepers\": [\n        \"NNS\"\n    ], \n    \"EOG\": [\n        \"NNP\"\n    ], \n    \"Nadir\": [\n        \"NNP\"\n    ], \n    \"dance\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Bushnell\": [\n        \"NNP\"\n    ], \n    \"desegregate\": [\n        \"VB\"\n    ], \n    \"Aliksanian\": [\n        \"NNP\"\n    ], \n    \"fabricated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"No-Name\": [\n        \"NNP\"\n    ], \n    \"ex-fighter\": [\n        \"NN\"\n    ], \n    \"sponge\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"idealism\": [\n        \"NN\"\n    ], \n    \"automated-teller\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"jogger\": [\n        \"NN\"\n    ], \n    \"Serve\": [\n        \"VB\"\n    ], \n    \"counter-attack\": [\n        \"NN\"\n    ], \n    \"Academics\": [\n        \"NNS\"\n    ], \n    \"infinitesimally\": [\n        \"RB\"\n    ], \n    \"underworked\": [\n        \"JJ\"\n    ], \n    \"terror\": [\n        \"NN\"\n    ], \n    \"idealist\": [\n        \"NN\"\n    ], \n    \"chip-packaging\": [\n        \"NN\"\n    ], \n    \"Present\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"volunteers\": [\n        \"NNS\"\n    ], \n    \"Acquisitions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"brown\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Lynnwood\": [\n        \"NNP\"\n    ], \n    \"Deerstalker\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"upriver\": [\n        \"JJ\"\n    ], \n    \"cochannel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"emergencies\": [\n        \"NNS\"\n    ], \n    \"trouble\": [\n        \"NN\", \n        \"VBD\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"brows\": [\n        \"NNS\"\n    ], \n    \"Georgette\": [\n        \"NNP\"\n    ], \n    \"toxins\": [\n        \"NNS\"\n    ], \n    \"Cubans\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Superlative\": [\n        \"NNP\"\n    ], \n    \"Hallbauer\": [\n        \"NNP\"\n    ], \n    \"Sincere\": [\n        \"NNP\"\n    ], \n    \"wire-haired\": [\n        \"JJ\"\n    ], \n    \"WILL\": [\n        \"MD\"\n    ], \n    \"Georgi\": [\n        \"NNP\"\n    ], \n    \"introjected\": [\n        \"VBN\"\n    ], \n    \"George\": [\n        \"NNP\"\n    ], \n    \"newsreel\": [\n        \"NN\"\n    ], \n    \"governing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"cease-and-desist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"imprecisely\": [\n        \"RB\"\n    ], \n    \"legalized\": [\n        \"VBN\"\n    ], \n    \"regret\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Equity-Income\": [\n        \"NNP\"\n    ], \n    \"stop-work\": [\n        \"JJ\"\n    ], \n    \"regained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Entergy\": [\n        \"NNP\"\n    ], \n    \"DD\": [\n        \"NNP\"\n    ], \n    \"Akerfeldt\": [\n        \"NNP\"\n    ], \n    \"Laverne\\\\\": [\n        \"JJ\"\n    ], \n    \"prairie\": [\n        \"NN\"\n    ], \n    \"Slowly\": [\n        \"RB\"\n    ], \n    \"Rick\": [\n        \"NNP\"\n    ], \n    \"Rich\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tempest\": [\n        \"NN\"\n    ], \n    \"Cahill\": [\n        \"NNP\"\n    ], \n    \"spleen-crushing\": [\n        \"JJ\"\n    ], \n    \"Cushman\": [\n        \"NNP\"\n    ], \n    \"assistance\": [\n        \"NN\"\n    ], \n    \"ComputerLand\": [\n        \"NNP\"\n    ], \n    \"Moravian\": [\n        \"NNP\"\n    ], \n    \"commensurate\": [\n        \"JJ\"\n    ], \n    \"unescorted\": [\n        \"JJ\"\n    ], \n    \"Spinoffs\": [\n        \"NNS\"\n    ], \n    \"inauguration\": [\n        \"NN\"\n    ], \n    \"peeled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"whiteness\": [\n        \"NN\"\n    ], \n    \"Youngstown\": [\n        \"NNP\"\n    ], \n    \"Kozinski\": [\n        \"NNP\"\n    ], \n    \"pennystock\": [\n        \"NN\"\n    ], \n    \"medico-military\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Deak\": [\n        \"NNP\"\n    ], \n    \"Dean\": [\n        \"NNP\"\n    ], \n    \"Deal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cantonal\": [\n        \"JJ\"\n    ], \n    \"Deaf\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Dead\": [\n        \"NNP\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"excursion\": [\n        \"NN\"\n    ], \n    \"Maynard\": [\n        \"NNP\"\n    ], \n    \"Sobey\": [\n        \"NNP\"\n    ], \n    \"computer-related\": [\n        \"JJ\"\n    ], \n    \"SOCIAL\": [\n        \"JJ\"\n    ], \n    \"Dear\": [\n        \"NNP\", \n        \"JJ\", \n        \"UH\"\n    ], \n    \"shootouts\": [\n        \"NNS\"\n    ], \n    \"R/NNP.H.S.\": [\n        \"NNP\"\n    ], \n    \"E-Systems\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Lawmaking\": [\n        \"JJ\"\n    ], \n    \"confrontation\": [\n        \"NN\"\n    ], \n    \"idlings\": [\n        \"NNS\"\n    ], \n    \"pancreatitis\": [\n        \"NN\"\n    ], \n    \"dewy-eyed\": [\n        \"JJ\"\n    ], \n    \"C-5B\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Evenings\": [\n        \"RB\"\n    ], \n    \"embarrassing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"GLS\": [\n        \"NNP\"\n    ], \n    \"AT*/NNP&T\": [\n        \"NN\"\n    ], \n    \"credit-rating\": [\n        \"JJ\", \n        \"NN|JJ\", \n        \"NN\"\n    ], \n    \"DA\": [\n        \"NN\"\n    ], \n    \"time-table\": [\n        \"NN\"\n    ], \n    \"Adley\": [\n        \"NNP\"\n    ], \n    \"sighted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fierce\": [\n        \"JJ\"\n    ], \n    \"fourth-ranked\": [\n        \"JJ\"\n    ], \n    \"desktop-publishing\": [\n        \"NN\"\n    ], \n    \"Adler\": [\n        \"NNP\"\n    ], \n    \"wept\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hahnemann\": [\n        \"NNP\"\n    ], \n    \"Latowski\": [\n        \"NNP\"\n    ], \n    \"countertop\": [\n        \"NN\"\n    ], \n    \"abandonment\": [\n        \"NN\"\n    ], \n    \"Zebek\": [\n        \"NNP\"\n    ], \n    \"BOZELL\": [\n        \"NNP\"\n    ], \n    \"Westboro\": [\n        \"NNP\"\n    ], \n    \"slinky\": [\n        \"JJ\"\n    ], \n    \"Unflattering\": [\n        \"JJ\"\n    ], \n    \"catastrophic-care\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"instructional\": [\n        \"JJ\"\n    ], \n    \"bemoaning\": [\n        \"VBG\"\n    ], \n    \"slogan\": [\n        \"NN\"\n    ], \n    \"Wyvern\": [\n        \"NNP\"\n    ], \n    \"Compulsory\": [\n        \"JJ\"\n    ], \n    \"Down\": [\n        \"IN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"bowled\": [\n        \"VBN\"\n    ], \n    \"Cherokees\": [\n        \"NNPS\"\n    ], \n    \"imitation\": [\n        \"NN\"\n    ], \n    \"Poems\": [\n        \"NNPS\"\n    ], \n    \"Vietnamese\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"playbacks\": [\n        \"NNS\"\n    ], \n    \"sidemen\": [\n        \"NNS\"\n    ], \n    \"paused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"refine\": [\n        \"VB\"\n    ], \n    \"Brockville\": [\n        \"NNP\"\n    ], \n    \"Lipper\": [\n        \"NNP\"\n    ], \n    \"Walter\": [\n        \"NNP\"\n    ], \n    \"Sheindlin\": [\n        \"NNP\"\n    ], \n    \"fortunately\": [\n        \"RB\"\n    ], \n    \"non-business\": [\n        \"JJ\"\n    ], \n    \"Munich\": [\n        \"NNP\"\n    ], \n    \"Industrywide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"gaping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"afternoon\": [\n        \"NN\"\n    ], \n    \"superintend\": [\n        \"VB\"\n    ], \n    \"cranky\": [\n        \"JJ\"\n    ], \n    \"ponies\": [\n        \"NNS\"\n    ], \n    \"typewriting\": [\n        \"NN\"\n    ], \n    \"southern\": [\n        \"JJ\"\n    ], \n    \"unobtrusive\": [\n        \"JJ\"\n    ], \n    \"diva\": [\n        \"NN\"\n    ], \n    \"jousting\": [\n        \"VBG\"\n    ], \n    \"nondurables\": [\n        \"NNS\"\n    ], \n    \"prowlers\": [\n        \"NNS\"\n    ], \n    \"castling\": [\n        \"VBG\"\n    ], \n    \"ponied\": [\n        \"VBD\"\n    ], \n    \"lifting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Parti\": [\n        \"NNP\"\n    ], \n    \"vomited\": [\n        \"VBD\"\n    ], \n    \"Stoics\": [\n        \"NNS\"\n    ], \n    \"surreys\": [\n        \"NNS\"\n    ], \n    \"wiggle\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Danish-American\": [\n        \"NNP\"\n    ], \n    \"townsman\": [\n        \"NN\"\n    ], \n    \"Sithe\": [\n        \"NNP\"\n    ], \n    \"automatically\": [\n        \"RB\"\n    ], \n    \"individual-type\": [\n        \"JJ\"\n    ], \n    \"McKinney\": [\n        \"NNP\"\n    ], \n    \"typical\": [\n        \"JJ\"\n    ], \n    \"novelized\": [\n        \"JJ\"\n    ], \n    \"albicans\": [\n        \"NNS\"\n    ], \n    \"Unlisted\": [\n        \"NNP\"\n    ], \n    \"nice-looking\": [\n        \"JJ\"\n    ], \n    \"MOTORS\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"DISCIPLINARY\": [\n        \"NN\"\n    ], \n    \"genteel\": [\n        \"JJ\"\n    ], \n    \"SKr1.5\": [\n        \"NNS\"\n    ], \n    \"tranche\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"subs\": [\n        \"NNS\"\n    ], \n    \"fumed\": [\n        \"VBD\"\n    ], \n    \"appearin\": [\n        \"VBG\"\n    ], \n    \"Delhi\": [\n        \"NNP\"\n    ], \n    \"wracking\": [\n        \"VBG\"\n    ], \n    \"titers\": [\n        \"NNS\"\n    ], \n    \"Dictaphone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"concierge\": [\n        \"NN\"\n    ], \n    \"according\": [\n        \"VBG\"\n    ], \n    \"artisan\": [\n        \"NN\"\n    ], \n    \"dreadfully\": [\n        \"RB\"\n    ], \n    \"showered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hackles\": [\n        \"NNS\"\n    ], \n    \"restaurant-development\": [\n        \"NN\"\n    ], \n    \"overreacted\": [\n        \"VBN\"\n    ], \n    \"Wasson\": [\n        \"NNP\"\n    ], \n    \"refiner\": [\n        \"NN\"\n    ], \n    \"first-families\": [\n        \"NNS\"\n    ], \n    \"scaling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pain-bringing\": [\n        \"JJ\"\n    ], \n    \"courtship\": [\n        \"NN\"\n    ], \n    \"provision\": [\n        \"NN\"\n    ], \n    \"Specially\": [\n        \"RB\"\n    ], \n    \"first-rate\": [\n        \"JJ\"\n    ], \n    \"contemptible\": [\n        \"JJ\"\n    ], \n    \"residentially\": [\n        \"RB\"\n    ], \n    \"hard-to-spot\": [\n        \"JJ\"\n    ], \n    \"Thursdays\": [\n        \"NNPS\"\n    ], \n    \"costuming\": [\n        \"NN\"\n    ], \n    \"Santo\": [\n        \"NNP\"\n    ], \n    \"lawmen\": [\n        \"NNS\"\n    ], \n    \"Bulseco\": [\n        \"NNP\"\n    ], \n    \"Italian-American\": [\n        \"JJ\"\n    ], \n    \"Eliot\": [\n        \"NNP\"\n    ], \n    \"sugary\": [\n        \"JJ\"\n    ], \n    \"WFC\": [\n        \"NNP\"\n    ], \n    \"sugars\": [\n        \"NNS\"\n    ], \n    \"Peregrine\": [\n        \"NNP\"\n    ], \n    \"snapshots\": [\n        \"NNS\"\n    ], \n    \"ELWOOD\": [\n        \"NNP\"\n    ], \n    \"one-quarter-cent\": [\n        \"JJ\"\n    ], \n    \"operand\": [\n        \"NN\"\n    ], \n    \"prosecutorial\": [\n        \"JJ\"\n    ], \n    \"Reflects\": [\n        \"VBZ\"\n    ], \n    \"Freed\": [\n        \"VBN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Rolfes\": [\n        \"NNP\"\n    ], \n    \"digressions\": [\n        \"NNS\"\n    ], \n    \"non-thermal\": [\n        \"JJ\"\n    ], \n    \"belligerence\": [\n        \"NN\"\n    ], \n    \"Vulcan\": [\n        \"NNP\"\n    ], \n    \"Jartran\": [\n        \"NNP\"\n    ], \n    \"airline-crash\": [\n        \"JJ\"\n    ], \n    \"happenings\": [\n        \"NNS\"\n    ], \n    \"Phyfe\": [\n        \"NNP\"\n    ], \n    \"communists\": [\n        \"NNS\"\n    ], \n    \"high-performing\": [\n        \"JJ\"\n    ], \n    \"photon-counting\": [\n        \"JJ\"\n    ], \n    \"virtuosi\": [\n        \"NNS\"\n    ], \n    \"film-makers\": [\n        \"NNS\"\n    ], \n    \"virtuoso\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lugging\": [\n        \"VBG\"\n    ], \n    \"RoadRailer\": [\n        \"NNP\"\n    ], \n    \"Vihon\": [\n        \"NNP\"\n    ], \n    \"marina\": [\n        \"NN\"\n    ], \n    \"Reprints\": [\n        \"NNS\"\n    ], \n    \"marine\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"McGroarty\": [\n        \"NNP\"\n    ], \n    \"Videos\": [\n        \"NNPS\"\n    ], \n    \"coulda\": [\n        \"NN\"\n    ], \n    \"Sherlund\": [\n        \"NNP\"\n    ], \n    \"fonder\": [\n        \"JJR\"\n    ], \n    \"Compensation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ninth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"stillbirths\": [\n        \"NNS\"\n    ], \n    \"disable\": [\n        \"VB\"\n    ], \n    \"Pinscher\": [\n        \"NN\"\n    ], \n    \"Freeport\": [\n        \"NNP\"\n    ], \n    \"tennis\": [\n        \"NN\"\n    ], \n    \"Rumors\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"mayst\": [\n        \"MD\"\n    ], \n    \"There\": [\n        \"EX\", \n        \"NN\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"survivalists\": [\n        \"NNS\"\n    ], \n    \"angular\": [\n        \"JJ\"\n    ], \n    \"Hollings\": [\n        \"NNP\"\n    ], \n    \"impetuous\": [\n        \"JJ\"\n    ], \n    \"corinthian\": [\n        \"JJ\"\n    ], \n    \"Traynor\": [\n        \"NNP\"\n    ], \n    \"teacart\": [\n        \"NN\"\n    ], \n    \"tusks\": [\n        \"NNS\"\n    ], \n    \"free-lance\": [\n        \"JJ\"\n    ], \n    \"bed-time\": [\n        \"NN\"\n    ], \n    \"president-finance\": [\n        \"NN\"\n    ], \n    \"similitude\": [\n        \"NN\"\n    ], \n    \"relicensing\": [\n        \"NN\"\n    ], \n    \"Hourly\": [\n        \"JJ\"\n    ], \n    \"Scholar\": [\n        \"NNP\"\n    ], \n    \"thieving\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"least-cost\": [\n        \"JJ\"\n    ], \n    \"eliminates\": [\n        \"VBZ\"\n    ], \n    \"acquirers\": [\n        \"NNS\"\n    ], \n    \"disabuse\": [\n        \"VB\"\n    ], \n    \"unstinting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"skimmers\": [\n        \"NNS\"\n    ], \n    \"Beverly\": [\n        \"NNP\"\n    ], \n    \"Flats\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"eliminated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"handicaps\": [\n        \"NNS\"\n    ], \n    \"semantics\": [\n        \"NNS\"\n    ], \n    \"Nutley\": [\n        \"NNP\"\n    ], \n    \"Urbanization\": [\n        \"NN\"\n    ], \n    \"accordance\": [\n        \"NN\"\n    ], \n    \"hurl\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"accesses\": [\n        \"NNS\"\n    ], \n    \"rubout\": [\n        \"NN\"\n    ], \n    \"Glassworks\": [\n        \"NNP\"\n    ], \n    \"high-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"retracing\": [\n        \"VBG\"\n    ], \n    \"transcendant\": [\n        \"JJ\"\n    ], \n    \"accessed\": [\n        \"VBN\"\n    ], \n    \"photosynthesis\": [\n        \"NN\"\n    ], \n    \"lubricating-oil\": [\n        \"NN\"\n    ], \n    \"starve\": [\n        \"VB\"\n    ], \n    \"Gunter\": [\n        \"NNP\"\n    ], \n    \"premier\": [\n        \"NN\", \n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Kittredge\": [\n        \"NNP\"\n    ], \n    \"invalidated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"dispersant\": [\n        \"NN\"\n    ], \n    \"investment-grade\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pappy\": [\n        \"NNP\"\n    ], \n    \"well-read\": [\n        \"JJ\"\n    ], \n    \"wallowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"recover\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"premium-food\": [\n        \"NN\"\n    ], \n    \"bowling-league\": [\n        \"NN\"\n    ], \n    \"intellectual-property\": [\n        \"JJ\"\n    ], \n    \"infection-screening\": [\n        \"JJ\"\n    ], \n    \"idealization\": [\n        \"NN\"\n    ], \n    \"online\": [\n        \"JJ\"\n    ], \n    \"motivated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Poultry\": [\n        \"NN\"\n    ], \n    \"accustoms\": [\n        \"VBZ\"\n    ], \n    \"postmaster\": [\n        \"NN\"\n    ], \n    \"Borja\": [\n        \"NNP\"\n    ], \n    \"underserved\": [\n        \"JJ\"\n    ], \n    \"oppressive\": [\n        \"JJ\"\n    ], \n    \"SS-25s\": [\n        \"NNPS\"\n    ], \n    \"T-bill\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"anti-rightist\": [\n        \"JJ\"\n    ], \n    \"algebraic\": [\n        \"JJ\"\n    ], \n    \"Threlkeld\": [\n        \"NNP\"\n    ], \n    \"peaceful\": [\n        \"JJ\"\n    ], \n    \"unnavigable\": [\n        \"JJ\"\n    ], \n    \"cocopalm\": [\n        \"NN\"\n    ], \n    \"circuit-breaker\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fuck\": [\n        \"VB\"\n    ], \n    \"Dividend-related\": [\n        \"JJ\"\n    ], \n    \"five-hour\": [\n        \"JJ\"\n    ], \n    \"intrusions\": [\n        \"NNS\"\n    ], \n    \"Peterson-Kroll\": [\n        \"NNP\"\n    ], \n    \"slaves\": [\n        \"NNS\"\n    ], \n    \"Triborough\": [\n        \"NNP\"\n    ], \n    \"Telsmith\": [\n        \"NNP\"\n    ], \n    \"professional\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ordination\": [\n        \"NN\"\n    ], \n    \"restaging\": [\n        \"VBG\"\n    ], \n    \"Sidley\": [\n        \"NNP\"\n    ], \n    \"psychobiology\": [\n        \"NN\"\n    ], \n    \"Lawson-Walters\": [\n        \"NNP\"\n    ], \n    \"state-sponsored\": [\n        \"JJ\"\n    ], \n    \"Advest\": [\n        \"NNP\"\n    ], \n    \"Political\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"right-handed\": [\n        \"JJ\"\n    ], \n    \"Intercontinental\": [\n        \"NNP\"\n    ], \n    \"Reuters\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Role\": [\n        \"NN\"\n    ], \n    \"Rolf\": [\n        \"NNP\"\n    ], \n    \"gratified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Drunkard\": [\n        \"NNP\"\n    ], \n    \"ocarina\": [\n        \"NN\"\n    ], \n    \"Roll\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"crashing\": [\n        \"VBG\"\n    ], \n    \"busily\": [\n        \"RB\"\n    ], \n    \"handlebars\": [\n        \"NNS\"\n    ], \n    \"Ludcke\": [\n        \"NNP\"\n    ], \n    \"Kansas\": [\n        \"NNP\"\n    ], \n    \"overbilled\": [\n        \"VBD\"\n    ], \n    \"skits\": [\n        \"NNS\"\n    ], \n    \"semi-controlled\": [\n        \"JJ\"\n    ], \n    \"buy-sell\": [\n        \"JJ\"\n    ], \n    \"threefold\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Kansan\": [\n        \"NNP\"\n    ], \n    \"week-old\": [\n        \"JJ\"\n    ], \n    \"Wirthlin\": [\n        \"NNP\"\n    ], \n    \"growth-minded\": [\n        \"JJ\"\n    ], \n    \"reauthorize\": [\n        \"VB\"\n    ], \n    \"mini-component\": [\n        \"JJ\"\n    ], \n    \"domestic-production\": [\n        \"NN\"\n    ], \n    \"building-society\": [\n        \"JJ\"\n    ], \n    \"oil-covered\": [\n        \"JJ\"\n    ], \n    \"Sturbridge\": [\n        \"NNP\"\n    ], \n    \"ginmill\": [\n        \"NN\"\n    ], \n    \"differentiating\": [\n        \"VBG\"\n    ], \n    \"Ville\": [\n        \"NNP\"\n    ], \n    \"Villa\": [\n        \"NNP\"\n    ], \n    \"Champs\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"recharged\": [\n        \"VBN\"\n    ], \n    \"true-false\": [\n        \"JJ\"\n    ], \n    \"Fiorina\": [\n        \"NNP\"\n    ], \n    \"Fiorini\": [\n        \"NNP\"\n    ], \n    \"pituitary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"quorum\": [\n        \"NN\"\n    ], \n    \"Anticipation\": [\n        \"NN\"\n    ], \n    \"Santiveri\": [\n        \"NNP\"\n    ], \n    \"administratively\": [\n        \"RB\"\n    ], \n    \"whisked\": [\n        \"VBN\"\n    ], \n    \"protestations\": [\n        \"NNS\"\n    ], \n    \"tranquil\": [\n        \"JJ\"\n    ], \n    \"namely\": [\n        \"RB\"\n    ], \n    \"Janissaries\": [\n        \"NNS\"\n    ], \n    \"Millstein\": [\n        \"NNP\"\n    ], \n    \"OncoScint\": [\n        \"NNP\"\n    ], \n    \"angina\": [\n        \"NN\"\n    ], \n    \"explosive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"reputed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"LDC\": [\n        \"NNP\"\n    ], \n    \"hypocrisies\": [\n        \"NNS\"\n    ], \n    \"whiskey\": [\n        \"NN\"\n    ], \n    \"Breaks\": [\n        \"NNP\"\n    ], \n    \"Attempts\": [\n        \"NNS\"\n    ], \n    \"preferred-share\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"LDS\": [\n        \"NNP\"\n    ], \n    \"LDP\": [\n        \"NNP\"\n    ], \n    \"complexion\": [\n        \"NN\"\n    ], \n    \"free-trade\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"concerto\": [\n        \"NN\"\n    ], \n    \"road-construction\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"squeaky-clean\": [\n        \"JJ\"\n    ], \n    \"fascinates\": [\n        \"VBZ\"\n    ], \n    \"verbiage\": [\n        \"NN\"\n    ], \n    \"notice\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Johnson\": [\n        \"NNP\"\n    ], \n    \"prettiest\": [\n        \"JJS\"\n    ], \n    \"ACRES\": [\n        \"NNP\"\n    ], \n    \"school-improvement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kreuter\": [\n        \"NNP\"\n    ], \n    \"Arne\": [\n        \"NNP\"\n    ], \n    \"African-safari\": [\n        \"JJ\"\n    ], \n    \"impromptu\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"institutional-type\": [\n        \"JJ\"\n    ], \n    \"onetime\": [\n        \"JJ\"\n    ], \n    \"cleave\": [\n        \"VB\"\n    ], \n    \"discernible\": [\n        \"JJ\"\n    ], \n    \"Metals\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Stepson\": [\n        \"NNP\"\n    ], \n    \"Metall\": [\n        \"NNP\"\n    ], \n    \"Lehigh\": [\n        \"NNP\"\n    ], \n    \"customarily\": [\n        \"RB\"\n    ], \n    \"long-distance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tax-anticipation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Death\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"half-mincing\": [\n        \"JJ\"\n    ], \n    \"binuclear\": [\n        \"JJ\"\n    ], \n    \"UniFirst\": [\n        \"NNP\"\n    ], \n    \"wreaths\": [\n        \"NNS\"\n    ], \n    \"renewals\": [\n        \"NNS\"\n    ], \n    \"pimples\": [\n        \"NNS\"\n    ], \n    \"Alcott\": [\n        \"NNP\"\n    ], \n    \"resurging\": [\n        \"VBG\"\n    ], \n    \"Healthsource\": [\n        \"NNP\"\n    ], \n    \"skew\": [\n        \"VB\"\n    ], \n    \"government-run\": [\n        \"JJ\"\n    ], \n    \"Reddington\": [\n        \"NNP\"\n    ], \n    \"dust-swirling\": [\n        \"JJ\"\n    ], \n    \"abating\": [\n        \"VBG\"\n    ], \n    \"upshots\": [\n        \"NNS\"\n    ], \n    \"subjecting\": [\n        \"VBG\"\n    ], \n    \"drop-in\": [\n        \"JJ\"\n    ], \n    \"Bicyclists\": [\n        \"NNPS\"\n    ], \n    \"external\": [\n        \"JJ\"\n    ], \n    \"Osborn\": [\n        \"NNP\"\n    ], \n    \"single-cell\": [\n        \"JJ\"\n    ], \n    \"Kenneth\": [\n        \"NNP\"\n    ], \n    \"slogans\": [\n        \"NNS\"\n    ], \n    \"humans\": [\n        \"NNS\"\n    ], \n    \"Weevil\": [\n        \"NNP\"\n    ], \n    \"Ganes\": [\n        \"NNP\"\n    ], \n    \"handicapped\": [\n        \"JJ\", \n        \"VBN\", \n        \"NNS\"\n    ], \n    \"Coiffet\": [\n        \"NNP\"\n    ], \n    \"Kennett\": [\n        \"NNP\"\n    ], \n    \"well-made\": [\n        \"JJ\"\n    ], \n    \"coolest\": [\n        \"JJS\"\n    ], \n    \"mandating\": [\n        \"VBG\"\n    ], \n    \"Spiro\": [\n        \"NNP\"\n    ], \n    \"ramp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Cleave\": [\n        \"NNP\"\n    ], \n    \"interviewers\": [\n        \"NNS\"\n    ], \n    \"laggard\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"habitants\": [\n        \"NNS\"\n    ], \n    \"absorbedthe\": [\n        \"VB\"\n    ], \n    \"donating\": [\n        \"VBG\"\n    ], \n    \"Hismanal\": [\n        \"NNP\"\n    ], \n    \"stickers\": [\n        \"NNS\"\n    ], \n    \"northward\": [\n        \"RB\"\n    ], \n    \"Aeronautical\": [\n        \"NNP\"\n    ], \n    \"NSM\": [\n        \"NNP\"\n    ], \n    \"NSA\": [\n        \"NNP\"\n    ], \n    \"NSC\": [\n        \"NNP\"\n    ], \n    \"ex-House\": [\n        \"JJ\"\n    ], \n    \"personally-owned\": [\n        \"JJ\"\n    ], \n    \"dangerous...\": [\n        \":\"\n    ], \n    \"gentlemen\": [\n        \"NNS\"\n    ], \n    \"officered\": [\n        \"VBN\"\n    ], \n    \"angered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Supposing\": [\n        \"VBG\"\n    ], \n    \"gorging\": [\n        \"VBG\"\n    ], \n    \"Whisky\": [\n        \"NN\"\n    ], \n    \"Pachelbel\": [\n        \"NNP\"\n    ], \n    \"investigated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"prefuh\": [\n        \"VB\"\n    ], \n    \"courtesan\": [\n        \"NN\"\n    ], \n    \"Homeroom\": [\n        \"NNP\"\n    ], \n    \"imprecations\": [\n        \"NNS\"\n    ], \n    \"non-publishers\": [\n        \"NNS\"\n    ], \n    \"bumpin\": [\n        \"VBG\"\n    ], \n    \"Marsico\": [\n        \"NNP\"\n    ], \n    \"Defectors\": [\n        \"NNS\"\n    ], \n    \"investigates\": [\n        \"VBZ\"\n    ], \n    \"Candle\": [\n        \"NNP\"\n    ], \n    \"Proprietorship\": [\n        \"NNP\"\n    ], \n    \"hundred-leaf\": [\n        \"JJ\"\n    ], \n    \"Klawitter\": [\n        \"NNP\"\n    ], \n    \"idiot-grin\": [\n        \"NN\"\n    ], \n    \"Telecom\": [\n        \"NNP\"\n    ], \n    \"Tibet\": [\n        \"NNP\"\n    ], \n    \"Lerach\": [\n        \"NNP\"\n    ], \n    \"Philosophical\": [\n        \"NNP\"\n    ], \n    \"laboratories\": [\n        \"NNS\"\n    ], \n    \"Knickerbocker\": [\n        \"NNP\"\n    ], \n    \"hit-making\": [\n        \"JJ\"\n    ], \n    \"laboratory-services\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"heaps\": [\n        \"NNS\"\n    ], \n    \"knowledgeable\": [\n        \"JJ\"\n    ], \n    \"belittle\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"harddisk\": [\n        \"NN\"\n    ], \n    \"EXPRESSED\": [\n        \"VBD\"\n    ], \n    \"Indigenes\": [\n        \"NNP\"\n    ], \n    \"Reduction\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"madrigals\": [\n        \"NNS\"\n    ], \n    \"ribosomal\": [\n        \"JJ\"\n    ], \n    \"Spruill\": [\n        \"NNP\"\n    ], \n    \"terrains\": [\n        \"NNS\"\n    ], \n    \"Christ\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"answerable\": [\n        \"JJ\"\n    ], \n    \"horse-player\": [\n        \"NN\"\n    ], \n    \"staging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"newly-weds\": [\n        \"NNS\"\n    ], \n    \"anti-LDP\": [\n        \"JJ\"\n    ], \n    \"senseless\": [\n        \"JJ\"\n    ], \n    \"refurbish\": [\n        \"VB\"\n    ], \n    \"smugglers\": [\n        \"NNS\"\n    ], \n    \"supercomputers\": [\n        \"NNS\"\n    ], \n    \"lender\": [\n        \"NN\"\n    ], \n    \"non-artistic\": [\n        \"JJ\"\n    ], \n    \"baloney\": [\n        \"NN\"\n    ], \n    \"Palmdale\": [\n        \"NNP\"\n    ], \n    \"Nuremberg\": [\n        \"NNP\"\n    ], \n    \"epoch-making\": [\n        \"JJ\"\n    ], \n    \"discontinue\": [\n        \"VB\"\n    ], \n    \"sawtimber\": [\n        \"NN\"\n    ], \n    \"early\": [\n        \"JJ\", \n        \"JJ|RB\", \n        \"RB\"\n    ], \n    \"Tour\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"symbolism\": [\n        \"NN\"\n    ], \n    \"oldline\": [\n        \"NN\"\n    ], \n    \"communiques\": [\n        \"NNS\"\n    ], \n    \"throwed\": [\n        \"VBD\"\n    ], \n    \"endorses\": [\n        \"VBZ\"\n    ], \n    \"one-month\": [\n        \"JJ\"\n    ], \n    \"External\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"thrower\": [\n        \"NN\"\n    ], \n    \"nubile\": [\n        \"JJ\"\n    ], \n    \"Contant\": [\n        \"NNP\"\n    ], \n    \"hollowware\": [\n        \"NN\"\n    ], \n    \"dilution\": [\n        \"NN\"\n    ], \n    \"endorsed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ceremonial\": [\n        \"JJ\"\n    ], \n    \"cause...\": [\n        \":\"\n    ], \n    \"repricing\": [\n        \"NN\"\n    ], \n    \"Valenti\": [\n        \"NNP\"\n    ], \n    \"Houston-Galveston\": [\n        \"NNP\"\n    ], \n    \"chronology\": [\n        \"NN\"\n    ], \n    \"abetted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Government\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"capital-goods\": [\n        \"NNS\"\n    ], \n    \"Zehnder\": [\n        \"NNP\"\n    ], \n    \"Dewhurst\": [\n        \"NNP\"\n    ], \n    \"asbestos-abatement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"premonitory\": [\n        \"JJ\"\n    ], \n    \"dealership\": [\n        \"NN\"\n    ], \n    \"Wake\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"non-profit\": [\n        \"JJ\"\n    ], \n    \"Vaughn\": [\n        \"NNP\"\n    ], \n    \"rifling\": [\n        \"NN\"\n    ], \n    \"Wako\": [\n        \"NNP\"\n    ], \n    \"Thiele\": [\n        \"NNP\"\n    ], \n    \"business\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Duren\": [\n        \"NNP\"\n    ], \n    \"strained\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"fast-cut\": [\n        \"JJ\"\n    ], \n    \"inherent\": [\n        \"JJ\"\n    ], \n    \"Long-distance\": [\n        \"NN\"\n    ], \n    \"emasculate\": [\n        \"VB\"\n    ], \n    \"pseudo-government\": [\n        \"NN\"\n    ], \n    \"MANUALS\": [\n        \"NNS\"\n    ], \n    \"gums\": [\n        \"NNS\"\n    ], \n    \"boldly\": [\n        \"RB\"\n    ], \n    \"parson\": [\n        \"NN\"\n    ], \n    \"parrot-like\": [\n        \"JJ\"\n    ], \n    \"Arhats\": [\n        \"NNPS\"\n    ], \n    \"bright-green\": [\n        \"JJ\"\n    ], \n    \"assassin\": [\n        \"NN\"\n    ], \n    \"Stennett\": [\n        \"NNP\"\n    ], \n    \"four-thirty\": [\n        \"RB\"\n    ], \n    \"rediscovering\": [\n        \"VBG\"\n    ], \n    \"Ostrowsky\": [\n        \"NNP\"\n    ], \n    \"Pils\": [\n        \"NNP\"\n    ], \n    \"Maffei\": [\n        \"NNP\"\n    ], \n    \"platoons\": [\n        \"NNS\"\n    ], \n    \"PROGRAM\": [\n        \"NN\"\n    ], \n    \"resuscitate\": [\n        \"VB\"\n    ], \n    \"your\": [\n        \"PRP$\", \n        \"PRP|VBP\"\n    ], \n    \"Mon-Khmer\": [\n        \"NNP\"\n    ], \n    \"hot-line\": [\n        \"NN\"\n    ], \n    \"Rotha\": [\n        \"NNP\"\n    ], \n    \"Rego\": [\n        \"NNP\"\n    ], \n    \"assumed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"unmodified\": [\n        \"JJ\"\n    ], \n    \"Priam\": [\n        \"NNP\"\n    ], \n    \"unreliability\": [\n        \"NN\"\n    ], \n    \"drank\": [\n        \"VBD\"\n    ], \n    \"low-cholesterol\": [\n        \"JJ\"\n    ], \n    \"Denials\": [\n        \"NNS\"\n    ], \n    \"melon-like\": [\n        \"JJ\"\n    ], \n    \"assumes\": [\n        \"VBZ\"\n    ], \n    \"Manufacturer\": [\n        \"NNP\"\n    ], \n    \"reassume\": [\n        \"VB\"\n    ], \n    \"Experience\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kondo\": [\n        \"NNP\"\n    ], \n    \"lymph\": [\n        \"NN\"\n    ], \n    \"McGregor\": [\n        \"NNP\"\n    ], \n    \"Johnston\": [\n        \"NNP\"\n    ], \n    \"Sports\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"happening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"autobiographical\": [\n        \"JJ\"\n    ], \n    \"historicity\": [\n        \"NN\"\n    ], \n    \"unrecognized\": [\n        \"JJ\"\n    ], \n    \"Stifel\": [\n        \"NNP\"\n    ], \n    \"Robinsonville\": [\n        \"NNP\"\n    ], \n    \"stapling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"porcelains\": [\n        \"NNS\"\n    ], \n    \"Jefferson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"high-volume\": [\n        \"JJ\"\n    ], \n    \"cornmeal\": [\n        \"NN\"\n    ], \n    \"Dietetic\": [\n        \"NNP\"\n    ], \n    \"charlatan\": [\n        \"NN\"\n    ], \n    \"Crisis\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"design...\": [\n        \":\"\n    ], \n    \"Condoms\": [\n        \"NNS\"\n    ], \n    \"scanner\": [\n        \"NN\"\n    ], \n    \"bamboozled\": [\n        \"VBN\"\n    ], \n    \"scratching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"landscape\": [\n        \"NN\"\n    ], \n    \"scanned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Strike\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"human-leukocyte-derived\": [\n        \"JJ\"\n    ], \n    \"Banjo\": [\n        \"NNP\"\n    ], \n    \"Karns\": [\n        \"NNP\"\n    ], \n    \"Lal\": [\n        \"NNP\"\n    ], \n    \"innings\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"unwelcome\": [\n        \"JJ\"\n    ], \n    \"Lao\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hurtled\": [\n        \"VBD\"\n    ], \n    \"chandeliers\": [\n        \"NNS\"\n    ], \n    \"on-time\": [\n        \"JJ\"\n    ], \n    \"hydroxylation\": [\n        \"NN\"\n    ], \n    \"Lag\": [\n        \"NN\"\n    ], \n    \"Bertussi\": [\n        \"NNP\"\n    ], \n    \"Lab\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lac\": [\n        \"NNP\"\n    ], \n    \"valid\": [\n        \"JJ\"\n    ], \n    \"Lay\": [\n        \"NNP\", \n        \"VBD\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"yow\": [\n        \"NN\", \n        \"PRP\"\n    ], \n    \"Patten\": [\n        \"NNP\"\n    ], \n    \"Law\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lap\": [\n        \"NNP\"\n    ], \n    \"Las\": [\n        \"NNP\"\n    ], \n    \"Maack\": [\n        \"NNP\"\n    ], \n    \"Great\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"two-digit\": [\n        \"JJ\"\n    ], \n    \"Foresman\": [\n        \"NNP\"\n    ], \n    \"Pickle\": [\n        \"NNP\"\n    ], \n    \"building\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"La.\": [\n        \"NNP\"\n    ], \n    \"condensation\": [\n        \"NN\"\n    ], \n    \"loutish\": [\n        \"JJ\"\n    ], \n    \"Moscow-allied\": [\n        \"JJ\"\n    ], \n    \"apathy\": [\n        \"NN\"\n    ], \n    \"marionettes\": [\n        \"NNS\"\n    ], \n    \"Shirwen\": [\n        \"NNP\"\n    ], \n    \"vines\": [\n        \"NNS\"\n    ], \n    \"Croom-Helm\": [\n        \"NNP\"\n    ], \n    \"linens\": [\n        \"NNS\"\n    ], \n    \"signalling\": [\n        \"VBG\"\n    ], \n    \"Melvin\": [\n        \"NNP\"\n    ], \n    \"tractors\": [\n        \"NNS\"\n    ], \n    \"seven-million-ton\": [\n        \"JJ\"\n    ], \n    \"jockeying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"exhibitions\": [\n        \"NNS\"\n    ], \n    \"lopped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Thortec\": [\n        \"NNP\"\n    ], \n    \"deadline\": [\n        \"NN\"\n    ], \n    \"worshipper\": [\n        \"NN\"\n    ], \n    \"benefits-consulting\": [\n        \"JJ\"\n    ], \n    \"dishwater\": [\n        \"NN\"\n    ], \n    \"Movieline\": [\n        \"NNP\"\n    ], \n    \"Inter-City\": [\n        \"NNP\"\n    ], \n    \"Bonhoeffer\": [\n        \"NNP\"\n    ], \n    \"disbelieves\": [\n        \"VBZ\"\n    ], \n    \"blueberries\": [\n        \"NNS\"\n    ], \n    \"hable\": [\n        \"JJ\"\n    ], \n    \"Braud\": [\n        \"NNP\"\n    ], \n    \"equivalence\": [\n        \"NN\"\n    ], \n    \"Braun\": [\n        \"NNP\"\n    ], \n    \"expounded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"stomping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Genson\": [\n        \"NNP\"\n    ], \n    \"spruced\": [\n        \"VBN\"\n    ], \n    \"cinematic\": [\n        \"JJ\"\n    ], \n    \"reneging\": [\n        \"VBG\"\n    ], \n    \"relieve\": [\n        \"VB\"\n    ], \n    \"reusing\": [\n        \"VBG\"\n    ], \n    \"arm-rise\": [\n        \"NN\"\n    ], \n    \"futures-investment\": [\n        \"JJ\"\n    ], \n    \"PCST\": [\n        \"NNP\"\n    ], \n    \"Malott\": [\n        \"NNP\"\n    ], \n    \"balancing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"firebreaks\": [\n        \"NNS\"\n    ], \n    \"Seasonal\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Gwen\": [\n        \"NNP\"\n    ], \n    \"Geoffrion\": [\n        \"NNP\"\n    ], \n    \"Lully\": [\n        \"NNP\"\n    ], \n    \"last-mentioned\": [\n        \"JJ\"\n    ], \n    \"Fluctuation\": [\n        \"NN\"\n    ], \n    \"GREAT\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"riverbanks\": [\n        \"NNS\"\n    ], \n    \"fence\": [\n        \"NN\"\n    ], \n    \"saga-like\": [\n        \"JJ\"\n    ], \n    \"Low-Income\": [\n        \"NNP\"\n    ], \n    \"Helliesen\": [\n        \"NNP\"\n    ], \n    \"race-drivers\": [\n        \"NNS\"\n    ], \n    \"Intair\": [\n        \"NNP\"\n    ], \n    \"casual\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"snippets\": [\n        \"NNS\"\n    ], \n    \"Martinez\": [\n        \"NNP\"\n    ], \n    \"Jonesborough\": [\n        \"NNP\"\n    ], \n    \"tussle\": [\n        \"NN\"\n    ], \n    \"darkness\": [\n        \"NN\"\n    ], \n    \"consumers\": [\n        \"NNS\"\n    ], \n    \"Boorse\": [\n        \"NNP\"\n    ], \n    \"Motorists\": [\n        \"NNS\"\n    ], \n    \"emotions\": [\n        \"NNS\"\n    ], \n    \"Zamora\": [\n        \"NNP\"\n    ], \n    \"retention\": [\n        \"NN\"\n    ], \n    \"cost-cutters\": [\n        \"NNS\"\n    ], \n    \"orthicon\": [\n        \"NN\"\n    ], \n    \"litters\": [\n        \"NNS\"\n    ], \n    \"Angst\": [\n        \"NN\"\n    ], \n    \"unsharpened\": [\n        \"VBN\"\n    ], \n    \"trunk\": [\n        \"NN\"\n    ], \n    \"gift-products\": [\n        \"NNS\"\n    ], \n    \"Homerists\": [\n        \"NNS\"\n    ], \n    \"Gov.\": [\n        \"NNP\"\n    ], \n    \"SAID\": [\n        \"VBD\"\n    ], \n    \"nonmembers\": [\n        \"NNS\"\n    ], \n    \"partaker\": [\n        \"VB\"\n    ], \n    \"partakes\": [\n        \"VBZ\"\n    ], \n    \"Mall\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Spinrad\": [\n        \"NNP\"\n    ], \n    \"drawers\": [\n        \"NNS\"\n    ], \n    \"outsells\": [\n        \"VBZ\"\n    ], \n    \"Glorioso\": [\n        \"NNP\"\n    ], \n    \"B.J.\": [\n        \"NNP\"\n    ], \n    \"uniquely\": [\n        \"RB\"\n    ], \n    \"biodegradable\": [\n        \"JJ\"\n    ], \n    \"Cartesian\": [\n        \"JJ\"\n    ], \n    \"Chargeurs\": [\n        \"NNP\"\n    ], \n    \"Iodinated\": [\n        \"VBN\"\n    ], \n    \"four-month\": [\n        \"JJ\"\n    ], \n    \"cosmetic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"layoff\": [\n        \"NN\"\n    ], \n    \"malapropisms\": [\n        \"NNS\"\n    ], \n    \"dispersement\": [\n        \"NN\"\n    ], \n    \"globes\": [\n        \"NNS\"\n    ], \n    \"Papua-New\": [\n        \"NNP\"\n    ], \n    \"Specimens\": [\n        \"NNS\"\n    ], \n    \"teach\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ehrhardt\": [\n        \"NNP\"\n    ], \n    \"metal-forming\": [\n        \"JJ\"\n    ], \n    \"flaws\": [\n        \"NNS\"\n    ], \n    \"Maser\": [\n        \"NNP\"\n    ], \n    \"country-life\": [\n        \"JJ\"\n    ], \n    \"ShowBiz\": [\n        \"NNP\"\n    ], \n    \"adminstration\": [\n        \"NN\"\n    ], \n    \"TOOLWORKS\": [\n        \"NNP\"\n    ], \n    \"Yarchoan\": [\n        \"NNP\"\n    ], \n    \"assessor\": [\n        \"NN\"\n    ], \n    \"home-bound\": [\n        \"JJ\"\n    ], \n    \"swoop\": [\n        \"NN\"\n    ], \n    \"countercultural\": [\n        \"JJ\"\n    ], \n    \"Birdie\": [\n        \"NNP\"\n    ], \n    \"Bless\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"stabilizing\": [\n        \"VBG\"\n    ], \n    \"car-parking\": [\n        \"JJ\"\n    ], \n    \"movie-of-the-week\": [\n        \"NN\"\n    ], \n    \"Hedrick\": [\n        \"NNP\"\n    ], \n    \"tortoise\": [\n        \"NN\"\n    ], \n    \"Kozuo\": [\n        \"NNP\"\n    ], \n    \"Atkinson\": [\n        \"NNP\"\n    ], \n    \"People\": [\n        \"NNS\", \n        \"NN\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"coalition\": [\n        \"NN\"\n    ], \n    \"CHIMPS\": [\n        \"NNS\"\n    ], \n    \"Doubtful\": [\n        \"JJ\"\n    ], \n    \"entrapment\": [\n        \"NN\"\n    ], \n    \"Guttman\": [\n        \"NNP\"\n    ], \n    \"Pre-inaugural\": [\n        \"JJ\"\n    ], \n    \"Donnybrook\": [\n        \"NNP\"\n    ], \n    \"transcend\": [\n        \"VBP\"\n    ], \n    \"adviser\": [\n        \"NN\"\n    ], \n    \"Amharas\": [\n        \"NNPS\"\n    ], \n    \"Claeys\": [\n        \"NNP\"\n    ], \n    \"negligence\": [\n        \"NN\"\n    ], \n    \"boycott\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Vizcaya\": [\n        \"NNP\"\n    ], \n    \"climates\": [\n        \"NNS\"\n    ], \n    \"less-expensive\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"boat-building\": [\n        \"JJ\"\n    ], \n    \"unjacketed\": [\n        \"JJ\"\n    ], \n    \"Interstate\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"processors\": [\n        \"NNS\"\n    ], \n    \"cafeteria-style\": [\n        \"JJ\"\n    ], \n    \"PGM\": [\n        \"NNP\"\n    ], \n    \"spreadsheet\": [\n        \"NN\"\n    ], \n    \"stayed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"incisions\": [\n        \"NNS\"\n    ], \n    \"non-convertible\": [\n        \"JJ\"\n    ], \n    \"Habomai\": [\n        \"NNP\"\n    ], \n    \"worshipped\": [\n        \"NN\"\n    ], \n    \"Reinsurance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wigs\": [\n        \"NNS\"\n    ], \n    \"deja\": [\n        \"FW\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Impatiently\": [\n        \"RB\"\n    ], \n    \"derived\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"foxtail\": [\n        \"NN\"\n    ], \n    \"triumphs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"tries\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Wollaeger\": [\n        \"NNP\"\n    ], \n    \"congratulating\": [\n        \"NN\"\n    ], \n    \"derives\": [\n        \"VBZ\"\n    ], \n    \"Sensing\": [\n        \"VBG\"\n    ], \n    \"a\": [\n        \"DT\", \n        \"VB\", \n        \",\", \n        \"VBN\", \n        \"NNP\", \n        \"FW\", \n        \"JJ\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"deluge\": [\n        \"NN\"\n    ], \n    \"enzymes\": [\n        \"NNS\"\n    ], \n    \"Sweet\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"minicars\": [\n        \"NNS\"\n    ], \n    \"Kamens\": [\n        \"NNP\"\n    ], \n    \"bashing\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"mantrap\": [\n        \"NN\"\n    ], \n    \"Sween\": [\n        \"NNP\"\n    ], \n    \"grizzled\": [\n        \"JJ\"\n    ], \n    \"committes\": [\n        \"NNS\"\n    ], \n    \"Accomplishing\": [\n        \"VBG\"\n    ], \n    \"tripolyphosphate\": [\n        \"NN\"\n    ], \n    \"preponderating\": [\n        \"JJ\"\n    ], \n    \"chalked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"show-piece\": [\n        \"JJ\"\n    ], \n    \"ex-chief\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"gainful\": [\n        \"JJ\"\n    ], \n    \"committee\": [\n        \"NN\"\n    ], \n    \"committed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBN|JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBD|VBN\"\n    ], \n    \"crossborder\": [\n        \"JJ\"\n    ], \n    \"MIT\": [\n        \"NNP\"\n    ], \n    \"Wacklin\": [\n        \"NNP\"\n    ], \n    \"cardiovascular\": [\n        \"JJ\"\n    ], \n    \"limelight\": [\n        \"NN\"\n    ], \n    \"discloses\": [\n        \"VBZ\"\n    ], \n    \"tempering\": [\n        \"VBG\"\n    ], \n    \"Corroon\": [\n        \"NNP\"\n    ], \n    \"IMF-guided\": [\n        \"JJ\"\n    ], \n    \"gosaimasu\": [\n        \"FW\"\n    ], \n    \"brigands\": [\n        \"NNS\"\n    ], \n    \"overexcited\": [\n        \"VBN\"\n    ], \n    \"reluctance\": [\n        \"NN\"\n    ], \n    \"Strikes\": [\n        \"NNS\"\n    ], \n    \"actually\": [\n        \"RB\"\n    ], \n    \"unheated\": [\n        \"JJ\"\n    ], \n    \"Weitz\": [\n        \"NNP\"\n    ], \n    \"Putting\": [\n        \"VBG\"\n    ], \n    \"disclosed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"lira\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Tamil\": [\n        \"NNP\"\n    ], \n    \"tenfold\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"trail-worn\": [\n        \"JJ\"\n    ], \n    \"stiffen\": [\n        \"VB\"\n    ], \n    \"Evolution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"seventy-foot\": [\n        \"JJ\"\n    ], \n    \"pre-empted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"second-to-die\": [\n        \"JJ\"\n    ], \n    \"Worried\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Victorian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"abberations\": [\n        \"NNS\"\n    ], \n    \"forefingers\": [\n        \"NNS\"\n    ], \n    \"Worries\": [\n        \"NNS\"\n    ], \n    \"nothin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Cavour\": [\n        \"NNP\"\n    ], \n    \"BILLS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"lightens\": [\n        \"VBZ\"\n    ], \n    \"RANSOM\": [\n        \"NNP\"\n    ], \n    \"Pro-Am\": [\n        \"NNP\"\n    ], \n    \"decimal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Episodes\": [\n        \"NNS\"\n    ], \n    \"Whitcomb\": [\n        \"NNP\"\n    ], \n    \"messed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"C.E.\": [\n        \"NNP\"\n    ], \n    \"Commentaries\": [\n        \"NNPS\"\n    ], \n    \"Earnings\": [\n        \"NNS\"\n    ], \n    \"abstractionism\": [\n        \"NN\"\n    ], \n    \"international-capital\": [\n        \"JJ\"\n    ], \n    \"Hitachi\": [\n        \"NNP\"\n    ], \n    \"beyond\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"passiveness\": [\n        \"NN\"\n    ], \n    \"veneration\": [\n        \"NN\"\n    ], \n    \"basements\": [\n        \"NNS\"\n    ], \n    \"Everett\": [\n        \"NNP\"\n    ], \n    \"meditating\": [\n        \"VBG\"\n    ], \n    \"Chatset\": [\n        \"NNP\"\n    ], \n    \"thrift-accounting\": [\n        \"NN\"\n    ], \n    \"fielded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sustain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Diaper\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"R&D\": [\n        \"NN\"\n    ], \n    \"sympathized\": [\n        \"VBD\"\n    ], \n    \"R&M\": [\n        \"NNP\"\n    ], \n    \"Arnhem\": [\n        \"NNP\"\n    ], \n    \"upon\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"ponderous\": [\n        \"JJ\"\n    ], \n    \"nationally\": [\n        \"RB\"\n    ], \n    \"Ignore\": [\n        \"VB\"\n    ], \n    \"cornstarch\": [\n        \"NN\"\n    ], \n    \"machine-family\": [\n        \"NN\"\n    ], \n    \"litigate\": [\n        \"VB\"\n    ], \n    \"coiffure\": [\n        \"NN\"\n    ], \n    \"diffused\": [\n        \"VBN\"\n    ], \n    \"retrial...\": [\n        \":\"\n    ], \n    \"Takagi\": [\n        \"NNP\"\n    ], \n    \"terrible\": [\n        \"JJ\"\n    ], \n    \"bridegroom\": [\n        \"NN\"\n    ], \n    \"terribly\": [\n        \"RB\"\n    ], \n    \"expecting\": [\n        \"VBG\"\n    ], \n    \"businessmen\": [\n        \"NNS\"\n    ], \n    \"Darwinian\": [\n        \"JJ\"\n    ], \n    \"daisy\": [\n        \"NN\"\n    ], \n    \"heartbeat\": [\n        \"NN\"\n    ], \n    \"undergo\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"skin-care\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sacrifice\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Frost\": [\n        \"NNP\"\n    ], \n    \"COURT\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"welfare-state\": [\n        \"JJ\"\n    ], \n    \"ever-growing\": [\n        \"JJ\"\n    ], \n    \"re-moralizing\": [\n        \"VBG\"\n    ], \n    \"Billmeyer\": [\n        \"NNP\"\n    ], \n    \"Kakumaru\": [\n        \"NNP\"\n    ], \n    \"mist\": [\n        \"NN\"\n    ], \n    \"miss\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"D*\": [\n        \"NNP\"\n    ], \n    \"SO-CALLED\": [\n        \"JJ\"\n    ], \n    \"inter-industry\": [\n        \"JJ\"\n    ], \n    \"inure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Sakellariadises\": [\n        \"NNS\"\n    ], \n    \"tax-and-spend\": [\n        \"JJ\"\n    ], \n    \"interwoven\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"monetary-stroke-military\": [\n        \"JJ\"\n    ], \n    \"pinned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Altman\": [\n        \"NNP\"\n    ], \n    \"fibrillation\": [\n        \"NN\"\n    ], \n    \"fielder\": [\n        \"NN\"\n    ], \n    \"Bumblebees\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"dealing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"realign...\": [\n        \":\"\n    ], \n    \"Montmartre\": [\n        \"NNP\"\n    ], \n    \"motor-vehicle\": [\n        \"NN\"\n    ], \n    \"bowed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Improved\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Check-List\": [\n        \"NNP\"\n    ], \n    \"bowel\": [\n        \"NN\"\n    ], \n    \"understructure\": [\n        \"NN\"\n    ], \n    \"Times-Mirror\": [\n        \"NNP\"\n    ], \n    \"outgrown\": [\n        \"VBN\"\n    ], \n    \"Improves\": [\n        \"VBZ\"\n    ], \n    \"deductibility\": [\n        \"NN\"\n    ], \n    \"monosyllables\": [\n        \"NNS\"\n    ], \n    \"inventing\": [\n        \"VBG\"\n    ], \n    \"translation\": [\n        \"NN\"\n    ], \n    \"Nellie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Croydon\": [\n        \"NNP\"\n    ], \n    \"Treadwell\": [\n        \"NNP\"\n    ], \n    \"grocery\": [\n        \"NN\"\n    ], \n    \"Rosenfeld\": [\n        \"NNP\"\n    ], \n    \"Spaced\": [\n        \"NNP\"\n    ], \n    \"grocers\": [\n        \"NNS\"\n    ], \n    \"Jukes\": [\n        \"NNP\"\n    ], \n    \"Sextet\": [\n        \"NNP\"\n    ], \n    \"bride\": [\n        \"NN\"\n    ], \n    \"Spaces\": [\n        \"NNPS\"\n    ], \n    \"intensities\": [\n        \"NNS\"\n    ], \n    \"long-sought\": [\n        \"JJ\"\n    ], \n    \"leafing\": [\n        \"VBG\"\n    ], \n    \"entranceway\": [\n        \"NN\"\n    ], \n    \"talker\": [\n        \"NN\"\n    ], \n    \"Peach\": [\n        \"NNP\"\n    ], \n    \"Baar\": [\n        \"NNP\"\n    ], \n    \"alongside\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"SMYRNA\": [\n        \"NNP\"\n    ], \n    \"Elemental\": [\n        \"JJ\"\n    ], \n    \"emperors\": [\n        \"NNS\"\n    ], \n    \"Sykes\": [\n        \"NNP\"\n    ], \n    \"Bilbrey\": [\n        \"NNP\"\n    ], \n    \"more-informed\": [\n        \"JJ\"\n    ], \n    \"Enholme\": [\n        \"NNP\"\n    ], \n    \"lid\": [\n        \"NN\"\n    ], \n    \"lie\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Dingle\": [\n        \"NNP\"\n    ], \n    \"jour\": [\n        \"FW\"\n    ], \n    \"Users\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Ilkka\": [\n        \"NNP\"\n    ], \n    \"speculative\": [\n        \"JJ\"\n    ], \n    \"empowered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"transference\": [\n        \"NN\"\n    ], \n    \"sordid\": [\n        \"JJ\"\n    ], \n    \"lit\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Covas\": [\n        \"NNP\"\n    ], \n    \"lip\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"glass-container\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"aggravating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Datacomputer\": [\n        \"NNP\"\n    ], \n    \"Kenan\": [\n        \"NNP\"\n    ], \n    \"eight-partner\": [\n        \"JJ\"\n    ], \n    \"Baa1\": [\n        \"JJ\"\n    ], \n    \"Baa2\": [\n        \"JJ\"\n    ], \n    \"Baa3\": [\n        \"JJ\"\n    ], \n    \"Sharpshooter\": [\n        \"NNP\"\n    ], \n    \"supply-driven\": [\n        \"JJ\"\n    ], \n    \"promenade\": [\n        \"NN\"\n    ], \n    \"sponsored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"diametrically\": [\n        \"RB\"\n    ], \n    \"Massimo\": [\n        \"NNP\"\n    ], \n    \"Roomberg\": [\n        \"NNP\"\n    ], \n    \"Massimi\": [\n        \"NNP\"\n    ], \n    \"Rhys\": [\n        \"NNP\"\n    ], \n    \"archery\": [\n        \"NN\"\n    ], \n    \"anti-switching\": [\n        \"JJ\"\n    ], \n    \"chronicle\": [\n        \"NN\"\n    ], \n    \"clear\": [\n        \"JJ\", \n        \"RB|JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"broadened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cleat\": [\n        \"NN\"\n    ], \n    \"Baskets\": [\n        \"NNS\"\n    ], \n    \"CHANGES\": [\n        \"NNS\"\n    ], \n    \"clean\": [\n        \"JJ\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"pickiest\": [\n        \"JJS\"\n    ], \n    \"Braden\": [\n        \"NNP\"\n    ], \n    \"nondoctrinaire\": [\n        \"JJ\"\n    ], \n    \"lest\": [\n        \"IN\"\n    ], \n    \"hyper\": [\n        \"JJ\"\n    ], \n    \"tincture\": [\n        \"NN\"\n    ], \n    \"Junid\": [\n        \"NNP\"\n    ], \n    \"sheik\": [\n        \"NN\"\n    ], \n    \"switch-hitter\": [\n        \"NN\"\n    ], \n    \"hyped\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"Ten-thousand-dollar\": [\n        \"JJ\"\n    ], \n    \"backdated\": [\n        \"VBD\"\n    ], \n    \"Savaiko\": [\n        \"NNP\"\n    ], \n    \"basic-cable\": [\n        \"JJ\"\n    ], \n    \"Loan-loss\": [\n        \"JJ\"\n    ], \n    \"stubbornness\": [\n        \"NN\"\n    ], \n    \"mid-1948\": [\n        \"JJ\"\n    ], \n    \"Chelmsford\": [\n        \"NNP\"\n    ], \n    \"surveyed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mandate\": [\n        \"NN\"\n    ], \n    \"circle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Grow\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"juke\": [\n        \"NN\"\n    ], \n    \"Nederlandsche\": [\n        \"NNP\"\n    ], \n    \"far-lower\": [\n        \"JJR\"\n    ], \n    \"take-away\": [\n        \"JJ\"\n    ], \n    \"biopsy\": [\n        \"NN\"\n    ], \n    \"phosgene\": [\n        \"NN\"\n    ], \n    \"reinvesting\": [\n        \"VBG\"\n    ], \n    \"Medicare\": [\n        \"NNP\"\n    ], \n    \"break-away\": [\n        \"NN\"\n    ], \n    \"interminable\": [\n        \"JJ\"\n    ], \n    \"exhibiting\": [\n        \"VBG\"\n    ], \n    \"querying\": [\n        \"VBG\"\n    ], \n    \"waterproofing\": [\n        \"NN\"\n    ], \n    \"Tramp\": [\n        \"NNP\"\n    ], \n    \"Randol\": [\n        \"NNP\"\n    ], \n    \"ohmic\": [\n        \"JJ\"\n    ], \n    \"Warmongering\": [\n        \"VBG\"\n    ], \n    \"suspender-clad\": [\n        \"JJ\"\n    ], \n    \"end-of-the-quarter\": [\n        \"JJ\"\n    ], \n    \"new-business\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mega-mergers\": [\n        \"NNS\"\n    ], \n    \"filled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"DOCTORS\": [\n        \"NNS\"\n    ], \n    \"coffeehouse\": [\n        \"NN\"\n    ], \n    \"Winiarski\": [\n        \"NNP\"\n    ], \n    \"redefine\": [\n        \"VB\"\n    ], \n    \"Wealth\": [\n        \"NNP\"\n    ], \n    \"Pluses\": [\n        \"NNS\"\n    ], \n    \"bakes\": [\n        \"VBZ\"\n    ], \n    \"Cotillion\": [\n        \"NNP\"\n    ], \n    \"Isfahan\": [\n        \"NNP\"\n    ], \n    \"ready-to-wear\": [\n        \"JJ\"\n    ], \n    \"photo\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Morrison\": [\n        \"NNP\"\n    ], \n    \"triple-A-rated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Norddeutsche\": [\n        \"NNP\"\n    ], \n    \"circumscriptions\": [\n        \"NNS\"\n    ], \n    \"familiarity\": [\n        \"NN\"\n    ], \n    \"Adoptions\": [\n        \"NNS\"\n    ], \n    \"timeworn\": [\n        \"JJ\"\n    ], \n    \"incompatibility\": [\n        \"NN\"\n    ], \n    \"Costco\": [\n        \"NNP\"\n    ], \n    \"Dicarban\": [\n        \"NN\"\n    ], \n    \"Southampton\": [\n        \"NNP\"\n    ], \n    \"Lyttleton\": [\n        \"NNP\"\n    ], \n    \"Leopoldville\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"plutonium-recovery\": [\n        \"JJ\"\n    ], \n    \"invisibles\": [\n        \"NNS\"\n    ], \n    \"timidly\": [\n        \"RB\"\n    ], \n    \"propulsive\": [\n        \"JJ\"\n    ], \n    \"craters\": [\n        \"NNS\"\n    ], \n    \"WINSTON-SALEM\": [\n        \"NNP\"\n    ], \n    \"philanthropist\": [\n        \"NN\"\n    ], \n    \"McGillicuddy\": [\n        \"NNP\"\n    ], \n    \"sea-village\": [\n        \"NN\"\n    ], \n    \"next-generation\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Biodegradable\": [\n        \"JJ\"\n    ], \n    \"rasped\": [\n        \"VBD\"\n    ], \n    \"mega\": [\n        \"JJ\"\n    ], \n    \"Curran\": [\n        \"NNP\"\n    ], \n    \"gaunt\": [\n        \"JJ\"\n    ], \n    \"campaign-finance\": [\n        \"JJ\"\n    ], \n    \"sensitive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"grille\": [\n        \"NN\"\n    ], \n    \"phonies\": [\n        \"NNS\"\n    ], \n    \"Provincie\": [\n        \"NNP\"\n    ], \n    \"headed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"him\": [\n        \"PRP\"\n    ], \n    \"Panama\": [\n        \"NNP\"\n    ], \n    \"manners\": [\n        \"NNS\"\n    ], \n    \"Anhwei\": [\n        \"NNP\"\n    ], \n    \"Broker\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"header\": [\n        \"NN\"\n    ], \n    \"Vicksburg\": [\n        \"NNP\"\n    ], \n    \"Mt.\": [\n        \"NNP\"\n    ], \n    \"REMIC\": [\n        \"NNP\"\n    ], \n    \"Dotzler\": [\n        \"NNP\"\n    ], \n    \"Cabin\": [\n        \"NNP\"\n    ], \n    \"acculturation\": [\n        \"NN\"\n    ], \n    \"Deemed\": [\n        \"VBN\"\n    ], \n    \"Solel\": [\n        \"NNP\"\n    ], \n    \"glee-club\": [\n        \"NN\"\n    ], \n    \"arrest\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Trigg\": [\n        \"NNP\"\n    ], \n    \"off-budget\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dunlaevy\": [\n        \"NNP\"\n    ], \n    \"uncritically\": [\n        \"RB\"\n    ], \n    \"ratings-getter\": [\n        \"NN\"\n    ], \n    \"reciprocate\": [\n        \"VB\"\n    ], \n    \"coarse\": [\n        \"JJ\"\n    ], \n    \"mutiny\": [\n        \"NN\"\n    ], \n    \"fiber-optic\": [\n        \"JJ\"\n    ], \n    \"Soler\": [\n        \"NNP\"\n    ], \n    \"territory\": [\n        \"NN\"\n    ], \n    \"Pilgrims\": [\n        \"NNPS\"\n    ], \n    \"delights\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"compromises\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"compromiser\": [\n        \"NN\"\n    ], \n    \"Especially\": [\n        \"RB\"\n    ], \n    \"Diocesan\": [\n        \"JJ\"\n    ], \n    \"determination\": [\n        \"NN\"\n    ], \n    \"compromised\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"wrings\": [\n        \"VBZ\"\n    ], \n    \"save-the-wildlife\": [\n        \"JJ\"\n    ], \n    \"hobnob\": [\n        \"VB\"\n    ], \n    \"honest\": [\n        \"JJ\"\n    ], \n    \"yards\": [\n        \"NNS\"\n    ], \n    \"smolderingly\": [\n        \"RB\"\n    ], \n    \"cannibalizing\": [\n        \"VBG\"\n    ], \n    \"Konitz\": [\n        \"NNP\"\n    ], \n    \"once-sporadic\": [\n        \"JJ\"\n    ], \n    \"pseudo-profundities\": [\n        \"NNS\"\n    ], \n    \"while\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Valvoline\": [\n        \"NNP\"\n    ], \n    \"Anschluss\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"Allie\": [\n        \"NNP\"\n    ], \n    \"Hotels\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"uncompromising\": [\n        \"JJ\"\n    ], \n    \"nightingales\": [\n        \"NNS\"\n    ], \n    \"well-played\": [\n        \"JJ\"\n    ], \n    \"deworm\": [\n        \"VB\"\n    ], \n    \"tendered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"rubber-like\": [\n        \"JJ\"\n    ], \n    \"first-place\": [\n        \"JJ\"\n    ], \n    \"streaking\": [\n        \"VBG\"\n    ], \n    \"cedar-roofed\": [\n        \"JJ\"\n    ], \n    \"RCA\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mortis\": [\n        \"NN\"\n    ], \n    \"marble-columned\": [\n        \"JJ\"\n    ], \n    \"baseline\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Kellaway\": [\n        \"NNP\"\n    ], \n    \"brutal-and\": [\n        \"JJ|CC\"\n    ], \n    \"Wrist\": [\n        \"NN\"\n    ], \n    \"overdoses\": [\n        \"NNS\"\n    ], \n    \"Unum\": [\n        \"NNP\"\n    ], \n    \"reselling\": [\n        \"VBG\"\n    ], \n    \"Beazer\": [\n        \"NNP\"\n    ], \n    \"Declining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"clearness\": [\n        \"NN\"\n    ], \n    \"hallway\": [\n        \"NN\"\n    ], \n    \"Mr.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bonus\": [\n        \"NN\"\n    ], \n    \"boo\": [\n        \"VB\"\n    ], \n    \"stashed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stereo-sound\": [\n        \"JJ\"\n    ], \n    \"J.C.\": [\n        \"NNP\"\n    ], \n    \"revitalization\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Shane\": [\n        \"NNP\"\n    ], \n    \"pre-1950s\": [\n        \"JJ\"\n    ], \n    \"asset-liability\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Matos\": [\n        \"NNP\"\n    ], \n    \"Agin\": [\n        \"NNP\"\n    ], \n    \"formability\": [\n        \"NN\"\n    ], \n    \"haul\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"foreign-investor\": [\n        \"NN\"\n    ], \n    \"auditor\": [\n        \"NN\"\n    ], \n    \"Agip\": [\n        \"NNP\"\n    ], \n    \"appalled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"scouring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"coup\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"lobsters\": [\n        \"NNS\"\n    ], \n    \"Hemmed\": [\n        \"VBN\"\n    ], \n    \"desk\": [\n        \"NN\"\n    ], \n    \"confiscation\": [\n        \"NN\"\n    ], \n    \"ignoble\": [\n        \"JJ\"\n    ], \n    \"Hemmer\": [\n        \"NNP\"\n    ], \n    \"cent-a-bushel\": [\n        \"JJ\"\n    ], \n    \"restlessly\": [\n        \"RB\"\n    ], \n    \"planetoids\": [\n        \"NNS\"\n    ], \n    \"OAS\": [\n        \"NNP\"\n    ], \n    \"Secretariate\": [\n        \"NNP\"\n    ], \n    \"Fulwood\": [\n        \"NNP\"\n    ], \n    \"dissimulation\": [\n        \"NN\"\n    ], \n    \"cross-currents\": [\n        \"NNS\"\n    ], \n    \"Shansi\": [\n        \"NNP\"\n    ], \n    \"waxing\": [\n        \"NN\"\n    ], \n    \"parentage\": [\n        \"NN\"\n    ], \n    \"conjured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Citroen\": [\n        \"NN\"\n    ], \n    \"Predictably\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Otsego\": [\n        \"NNP\"\n    ], \n    \"cemetery\": [\n        \"NN\"\n    ], \n    \"indigestible\": [\n        \"JJ\"\n    ], \n    \"Refsnes\": [\n        \"NNP\"\n    ], \n    \"Dever\": [\n        \"NNP\"\n    ], \n    \"stock-market\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Prevention\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fractionated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"harmonize\": [\n        \"VB\"\n    ], \n    \"Devey\": [\n        \"NNP\"\n    ], \n    \"descendant\": [\n        \"NN\"\n    ], \n    \"single-issue\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Zaffarano\": [\n        \"NNP\"\n    ], \n    \"pre-empting\": [\n        \"JJ\"\n    ], \n    \"radiator\": [\n        \"NN\"\n    ], \n    \"determinedly\": [\n        \"RB\"\n    ], \n    \"Deparment\": [\n        \"NNP\"\n    ], \n    \"albino\": [\n        \"NN\"\n    ], \n    \"GROWTH\": [\n        \"NN\"\n    ], \n    \"short-changing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"populous\": [\n        \"JJ\"\n    ], \n    \"opprobrium\": [\n        \"NN\"\n    ], \n    \"Bittania\": [\n        \"NNP\"\n    ], \n    \"carbon-14\": [\n        \"NN\"\n    ], \n    \"four-stroke\": [\n        \"JJ\"\n    ], \n    \"pillar\": [\n        \"NN\"\n    ], \n    \"CFTC\": [\n        \"NNP\"\n    ], \n    \"translates\": [\n        \"VBZ\"\n    ], \n    \"Recoup\": [\n        \"VB\"\n    ], \n    \"translated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Skadden\": [\n        \"NNP\"\n    ], \n    \"perked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lumsden\": [\n        \"NNP\"\n    ], \n    \"mauve\": [\n        \"JJ\"\n    ], \n    \"Fears\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Chubu\": [\n        \"NNP\"\n    ], \n    \"urgent\": [\n        \"JJ\"\n    ], \n    \"Retailing\": [\n        \"NN\"\n    ], \n    \"Breckenridge\": [\n        \"NNP\"\n    ], \n    \"Choose\": [\n        \"VB\"\n    ], \n    \"Attendants\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Sibra\": [\n        \"NNP\"\n    ], \n    \"sabre-rattling\": [\n        \"NN\"\n    ], \n    \"Foreclosed\": [\n        \"VBN\"\n    ], \n    \"Cottle\": [\n        \"NNP\"\n    ], \n    \"Cardboard\": [\n        \"NN\"\n    ], \n    \"thyroxine\": [\n        \"NN\"\n    ], \n    \"eating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kerstin\": [\n        \"NNP\"\n    ], \n    \"booklet\": [\n        \"NN\"\n    ], \n    \"Bruises\": [\n        \"NNS\"\n    ], \n    \"jazzy\": [\n        \"JJ\"\n    ], \n    \"Pennzoil\": [\n        \"NNP\"\n    ], \n    \"Raccoon\": [\n        \"NNP\"\n    ], \n    \"Schang\": [\n        \"NNP\"\n    ], \n    \"subtract\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"paperwads\": [\n        \"NNS\"\n    ], \n    \"bureaus\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Legalizing\": [\n        \"VBG\"\n    ], \n    \"blocs\": [\n        \"NNS\"\n    ], \n    \"samplers\": [\n        \"NNS\"\n    ], \n    \"scattergun\": [\n        \"NN\"\n    ], \n    \"simulation\": [\n        \"NN\"\n    ], \n    \"hinge\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"sake\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Yemeni\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"I.E.P.\": [\n        \"NNP\"\n    ], \n    \"tax-uniformity\": [\n        \"NN\"\n    ], \n    \"Redstone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"block\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"disclosure\": [\n        \"NN\"\n    ], \n    \"foreign-equity\": [\n        \"NN\"\n    ], \n    \"long-neck\": [\n        \"JJ\"\n    ], \n    \"SLHD\": [\n        \"NNP\"\n    ], \n    \"decertify\": [\n        \"VB\"\n    ], \n    \"ticket-transfer\": [\n        \"NN\"\n    ], \n    \"dissatisfaction\": [\n        \"NN\"\n    ], \n    \"strophe\": [\n        \"NN\"\n    ], \n    \"Cauffman\": [\n        \"NNP\"\n    ], \n    \"parables\": [\n        \"NNS\"\n    ], \n    \"fixed-term\": [\n        \"NN\"\n    ], \n    \"nine-page\": [\n        \"JJ\"\n    ], \n    \"wonderingly\": [\n        \"RB\"\n    ], \n    \"Republics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"translucence\": [\n        \"NN\"\n    ], \n    \"translucency\": [\n        \"NN\"\n    ], \n    \"douse\": [\n        \"VB\"\n    ], \n    \"rivalries\": [\n        \"NNS\"\n    ], \n    \"kamikaze\": [\n        \"NN\"\n    ], \n    \"calumny\": [\n        \"NN\"\n    ], \n    \"hemming\": [\n        \"VBG\"\n    ], \n    \"Lerner\": [\n        \"NNP\"\n    ], \n    \"governs\": [\n        \"VBZ\"\n    ], \n    \"newel\": [\n        \"NN\"\n    ], \n    \"self-starters\": [\n        \"NNS\"\n    ], \n    \"turbulence\": [\n        \"NN\"\n    ], \n    \"reef\": [\n        \"NN\"\n    ], \n    \"Adrian\": [\n        \"NNP\"\n    ], \n    \"AC&R\\\\/CCL\": [\n        \"NNP\"\n    ], \n    \"amateurish\": [\n        \"JJ\"\n    ], \n    \"group-health\": [\n        \"NN\"\n    ], \n    \"amateurism\": [\n        \"NN\"\n    ], \n    \"Pallavicini\": [\n        \"NNP\"\n    ], \n    \"skulk\": [\n        \"VB\"\n    ], \n    \"skull\": [\n        \"NN\"\n    ], \n    \"Bar-Shavit\": [\n        \"NNP\"\n    ], \n    \"bewilders\": [\n        \"VBZ\"\n    ], \n    \"Ahern\": [\n        \"NNP\"\n    ], \n    \"Perspective\": [\n        \"NNP\"\n    ], \n    \"buglike\": [\n        \"JJ\"\n    ], \n    \"Guerbet\": [\n        \"NNP\"\n    ], \n    \"corrective\": [\n        \"JJ\"\n    ], \n    \"elitist\": [\n        \"JJ\"\n    ], \n    \"amphitheater\": [\n        \"NN\"\n    ], \n    \"iodotyrosines\": [\n        \"NNS\"\n    ], \n    \"gushy\": [\n        \"JJ\"\n    ], \n    \"Oakmont\": [\n        \"NNP\"\n    ], \n    \"spousal\": [\n        \"JJ\"\n    ], \n    \"Polar\": [\n        \"NNP\"\n    ], \n    \"Harding\": [\n        \"NNP\"\n    ], \n    \"jamboree\": [\n        \"NN\"\n    ], \n    \"nap\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Designers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"electrical\": [\n        \"JJ\"\n    ], \n    \"Werke\": [\n        \"NNP\"\n    ], \n    \"kills\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Teach\": [\n        \"VBP\"\n    ], \n    \"nay\": [\n        \"RB\"\n    ], \n    \"out-smart\": [\n        \"VB\"\n    ], \n    \"Alienated\": [\n        \"NNP\"\n    ], \n    \"oilheating\": [\n        \"NN\"\n    ], \n    \"reportedly\": [\n        \"RB\"\n    ], \n    \"fewest\": [\n        \"JJS\"\n    ], \n    \"luminaries\": [\n        \"NNS\"\n    ], \n    \"resign\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"lunging\": [\n        \"VBG\"\n    ], \n    \"averting\": [\n        \"VBG\"\n    ], \n    \"rested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Scaring\": [\n        \"VBG\"\n    ], \n    \"orange-flavored\": [\n        \"JJ\"\n    ], \n    \"Documentary\": [\n        \"NNP\"\n    ], \n    \"Yalies\": [\n        \"NNS\"\n    ], \n    \"cryptographic\": [\n        \"JJ\"\n    ], \n    \"antecedent\": [\n        \"NN\"\n    ], \n    \"Empresa\": [\n        \"NNP\"\n    ], \n    \"sputniks\": [\n        \"NNS\"\n    ], \n    \"Rilwanu\": [\n        \"NNP\"\n    ], \n    \"fragmentarily\": [\n        \"RB\"\n    ], \n    \"bleached\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Stubbs\": [\n        \"NNP\"\n    ], \n    \"tactile\": [\n        \"JJ\"\n    ], \n    \"hallways\": [\n        \"NNS\"\n    ], \n    \"bleacher\": [\n        \"NN\"\n    ], \n    \"Yes\": [\n        \"UH\", \n        \"NN\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"ribbies\": [\n        \"NNS\"\n    ], \n    \"Sell\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"left-leaning\": [\n        \"JJ\"\n    ], \n    \"cabinet-level\": [\n        \"JJ\"\n    ], \n    \"Self\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kc.\": [\n        \"NN\"\n    ], \n    \"Rails\": [\n        \"NNPS\"\n    ], \n    \"salaries\": [\n        \"NNS\"\n    ], \n    \"Selz\": [\n        \"NNP\"\n    ], \n    \"sales-moving\": [\n        \"JJ\"\n    ], \n    \"aristocrat\": [\n        \"NN\"\n    ], \n    \"Reenact\": [\n        \"VB\"\n    ], \n    \"cement-and-glass\": [\n        \"JJ\"\n    ], \n    \"Painful\": [\n        \"JJ\"\n    ], \n    \"outperforming\": [\n        \"VBG\"\n    ], \n    \"Gaynor\": [\n        \"NNP\"\n    ], \n    \"Sabine\": [\n        \"NNP\"\n    ], \n    \"Sabina\": [\n        \"NNP\"\n    ], \n    \"Quadra\": [\n        \"NNP\"\n    ], \n    \"JVC\\\\/Victor\": [\n        \"NNP\"\n    ], \n    \"blobby\": [\n        \"JJ\"\n    ], \n    \"expelling\": [\n        \"VBG\"\n    ], \n    \"Perignon\": [\n        \"NNP\"\n    ], \n    \"wracked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pinnacles\": [\n        \"NNS\"\n    ], \n    \"Borromini\": [\n        \"NNP\"\n    ], \n    \"Manya\": [\n        \"NNP\"\n    ], \n    \"Titus\": [\n        \"NNP\"\n    ], \n    \"Mrs.\": [\n        \"NNP\"\n    ], \n    \"Irimajiri\": [\n        \"NNP\"\n    ], \n    \"salaried\": [\n        \"JJ\"\n    ], \n    \"fictionalized\": [\n        \"VBN\"\n    ], \n    \"retold\": [\n        \"VBD\"\n    ], \n    \"Weisfield\": [\n        \"NNP\"\n    ], \n    \"exits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Veneto\": [\n        \"NNP\"\n    ], \n    \"tall-tale\": [\n        \"NN\"\n    ], \n    \"Tombrello\": [\n        \"NNP\"\n    ], \n    \"defocusing\": [\n        \"VBG\"\n    ], \n    \"verdict\": [\n        \"NN\"\n    ], \n    \"prosodic\": [\n        \"JJ\"\n    ], \n    \"Sentences\": [\n        \"NNS\"\n    ], \n    \"Karcher-Everly\": [\n        \"NNP\"\n    ], \n    \"inspection\": [\n        \"NN\"\n    ], \n    \"configurations\": [\n        \"NNS\"\n    ], \n    \"Conger\": [\n        \"NNP\"\n    ], \n    \"Orson\": [\n        \"NNP\"\n    ], \n    \"arbitragers\": [\n        \"NNS\"\n    ], \n    \"Reclamation\": [\n        \"NNP\"\n    ], \n    \"stoned\": [\n        \"VBN\"\n    ], \n    \"blitz\": [\n        \"NN\"\n    ], \n    \"Erroll\": [\n        \"NNP\"\n    ], \n    \"Equipment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"graying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Schleiermacher\": [\n        \"NNP\"\n    ], \n    \"ardent\": [\n        \"JJ\"\n    ], \n    \"ferreting\": [\n        \"VBG\"\n    ], \n    \"cheapening\": [\n        \"VBG\"\n    ], \n    \"evokes\": [\n        \"VBZ\"\n    ], \n    \"Abner\": [\n        \"NNP\"\n    ], \n    \"dactyls\": [\n        \"NNS\"\n    ], \n    \"exacerbate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tribunal\": [\n        \"NN\"\n    ], \n    \"cell\": [\n        \"NN\"\n    ], \n    \"evoked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dannehower\": [\n        \"NNP\"\n    ], \n    \"tournaments\": [\n        \"NNS\"\n    ], \n    \"Barlow\": [\n        \"NNP\"\n    ], \n    \"apple-flavored\": [\n        \"JJ\"\n    ], \n    \"weirdy\": [\n        \"NN\"\n    ], \n    \"Created\": [\n        \"VBN\"\n    ], \n    \"car-maker\": [\n        \"NN\"\n    ], \n    \"D.C.-based\": [\n        \"JJ\"\n    ], \n    \"Wheelock\": [\n        \"NNP\"\n    ], \n    \"prescribe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Creates\": [\n        \"VBZ\"\n    ], \n    \"acoustics\": [\n        \"NNS\"\n    ], \n    \"likening\": [\n        \"VBG\"\n    ], \n    \"weirdo\": [\n        \"NN\"\n    ], \n    \"super-string\": [\n        \"JJ\"\n    ], \n    \"flunky\": [\n        \"NN\"\n    ], \n    \"Remingtons\": [\n        \"NNPS\"\n    ], \n    \"G.L.\": [\n        \"NNP\"\n    ], \n    \"engraving\": [\n        \"NN\"\n    ], \n    \"Strother\": [\n        \"NNP\"\n    ], \n    \"Long-lived\": [\n        \"JJ\"\n    ], \n    \"Hanch\": [\n        \"NNP\"\n    ], \n    \"morsels\": [\n        \"NNS\"\n    ], \n    \"veered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Tooth-hurty\": [\n        \"NN\"\n    ], \n    \"preferentially\": [\n        \"RB\"\n    ], \n    \"Arabia\": [\n        \"NNP\"\n    ], \n    \"Arabic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hexagon\": [\n        \"NN\"\n    ], \n    \"Suncor\": [\n        \"NNP\"\n    ], \n    \"Rolexes\": [\n        \"NNPS\"\n    ], \n    \"Legends\": [\n        \"NNPS\"\n    ], \n    \"danger\": [\n        \"NN\"\n    ], \n    \"shake\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"OGDEN\": [\n        \"NNP\"\n    ], \n    \"Miyazaki\": [\n        \"NNP\"\n    ], \n    \"apprehensive\": [\n        \"JJ\"\n    ], \n    \"Construct\": [\n        \"VB\"\n    ], \n    \"danged\": [\n        \"VBN\"\n    ], \n    \"re-living\": [\n        \"NN\"\n    ], \n    \"wrong-way\": [\n        \"JJ\"\n    ], \n    \"Lucian\": [\n        \"NNP\"\n    ], \n    \"Hare\": [\n        \"NNP\"\n    ], \n    \"comers\": [\n        \"NNS\"\n    ], \n    \"singing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Photographing\": [\n        \"NNP\"\n    ], \n    \"property-liability\": [\n        \"NN\"\n    ], \n    \"subsidizes\": [\n        \"VBZ\"\n    ], \n    \"snoop\": [\n        \"VB\"\n    ], \n    \"current-coupon\": [\n        \"JJ\"\n    ], \n    \"child-care\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bookin\": [\n        \"NNP\"\n    ], \n    \"hightailing\": [\n        \"VBG\"\n    ], \n    \"Dreyer\": [\n        \"NNP\"\n    ], \n    \"contentment\": [\n        \"NN\"\n    ], \n    \"debt-financing\": [\n        \"JJ\"\n    ], \n    \"subsidized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Varying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"exhaustive\": [\n        \"JJ\"\n    ], \n    \"placard-carrying\": [\n        \"JJ\"\n    ], \n    \"Memphis\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"pleated\": [\n        \"JJ\"\n    ], \n    \"bureaucracy\": [\n        \"NN\"\n    ], \n    \"patient-advocacy\": [\n        \"NN\"\n    ], \n    \"biblical\": [\n        \"JJ\"\n    ], \n    \"mininum-wage\": [\n        \"NN\"\n    ], \n    \"becomes\": [\n        \"VBZ\"\n    ], \n    \"lacerate\": [\n        \"VB\"\n    ], \n    \"temblors\": [\n        \"NNS\"\n    ], \n    \"spare-parts\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"blindsided\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"disrobe\": [\n        \"VB\"\n    ], \n    \"becomed\": [\n        \"VBN\"\n    ], \n    \"sample\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"LIKE\": [\n        \"IN\"\n    ], \n    \"corporates\": [\n        \"NNS\"\n    ], \n    \"sanctions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ride\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Kuser\": [\n        \"NNP\"\n    ], \n    \"progressivity\": [\n        \"NN\"\n    ], \n    \"Video\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Vote\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tift\": [\n        \"NNP\"\n    ], \n    \"painless\": [\n        \"JJ\"\n    ], \n    \"initiatve\": [\n        \"NN\"\n    ], \n    \"crevasse\": [\n        \"NN\"\n    ], \n    \"TOP\": [\n        \"NNP\"\n    ], \n    \"semi-circle\": [\n        \"NN\"\n    ], \n    \"TOW\": [\n        \"NN\"\n    ], \n    \"Balletto\": [\n        \"NNP\"\n    ], \n    \"cross-section\": [\n        \"NN\"\n    ], \n    \"Figlewski\": [\n        \"NNP\"\n    ], \n    \"Dunham\": [\n        \"NNP\"\n    ], \n    \"shrift\": [\n        \"NN\"\n    ], \n    \"Pro-rated\": [\n        \"JJ\"\n    ], \n    \"Kentfield\": [\n        \"NNP\"\n    ], \n    \"tugboat\": [\n        \"NN\"\n    ], \n    \"college-completion\": [\n        \"JJ\"\n    ], \n    \"Compassion\": [\n        \"NNP\"\n    ], \n    \"vesicular\": [\n        \"JJ\"\n    ], \n    \"Thoreau\": [\n        \"NNP\"\n    ], \n    \"one-party\": [\n        \"JJ\"\n    ], \n    \"Bowater\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"prime-time\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sikkim\": [\n        \"NNP\"\n    ], \n    \"hand-lotion\": [\n        \"NN\"\n    ], \n    \"cottages\": [\n        \"NNS\"\n    ], \n    \"commodity-trading\": [\n        \"NN\"\n    ], \n    \"Alexis\": [\n        \"NNP\"\n    ], \n    \"insufficient\": [\n        \"JJ\"\n    ], \n    \"dogfight\": [\n        \"NN\"\n    ], \n    \"Alexia\": [\n        \"NNP\"\n    ], \n    \"X-ray-proof\": [\n        \"JJ\"\n    ], \n    \"Planar\": [\n        \"NNP\"\n    ], \n    \"crazes\": [\n        \"NNS\"\n    ], \n    \"Brocklin\": [\n        \"NNP\"\n    ], \n    \"Cayne\": [\n        \"NNP\"\n    ], \n    \"avarice\": [\n        \"NN\"\n    ], \n    \"crazee\": [\n        \"JJ\"\n    ], \n    \"crazed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"revise\": [\n        \"VB\"\n    ], \n    \"rove\": [\n        \"VB\"\n    ], \n    \"craggy\": [\n        \"JJ\"\n    ], \n    \"round-the-clock\": [\n        \"JJ\"\n    ], \n    \"unlawful\": [\n        \"JJ\"\n    ], \n    \"superimposing\": [\n        \"VBG\"\n    ], \n    \"Iturup\": [\n        \"NNP\"\n    ], \n    \"big-bucks\": [\n        \"JJ\"\n    ], \n    \"October-March\": [\n        \"NNP\"\n    ], \n    \"facilitated\": [\n        \"VBN\"\n    ], \n    \"advertorial\": [\n        \"JJ\"\n    ], \n    \"Dallas-based\": [\n        \"JJ\"\n    ], \n    \"Buksbaum\": [\n        \"NNP\"\n    ], \n    \"Seger\": [\n        \"NNP\"\n    ], \n    \"purgation\": [\n        \"NN\"\n    ], \n    \"mentioned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"converting\": [\n        \"VBG\"\n    ], \n    \"facilitates\": [\n        \"VBZ\"\n    ], \n    \"helicopters\": [\n        \"NNS\"\n    ], \n    \"Air-to-ground\": [\n        \"JJ\"\n    ], \n    \"stuggles\": [\n        \"VBZ\"\n    ], \n    \"Toynbee\": [\n        \"NNP\"\n    ], \n    \"Croasdale\": [\n        \"NNP\"\n    ], \n    \"C-12F\": [\n        \"NN\"\n    ], \n    \"two-wheel\": [\n        \"JJ\"\n    ], \n    \"Beginners\": [\n        \"NNS\"\n    ], \n    \"wife-to-be\": [\n        \"NN\"\n    ], \n    \"Jennie\": [\n        \"NNP\"\n    ], \n    \"excoriating\": [\n        \"VBG\"\n    ], \n    \"Arbel\": [\n        \"NNP\"\n    ], \n    \"Hammerton\": [\n        \"NNP\"\n    ], \n    \"Junk-portfolio\": [\n        \"NN\"\n    ], \n    \"sweets\": [\n        \"NNS\"\n    ], \n    \"fallible\": [\n        \"JJ\"\n    ], \n    \"Zeiss\": [\n        \"NNP\"\n    ], \n    \"Jenning\": [\n        \"NNP\"\n    ], \n    \"masters\": [\n        \"NNS\"\n    ], \n    \"dioxalate\": [\n        \"NN\"\n    ], \n    \"mastery\": [\n        \"NN\"\n    ], \n    \"swamping\": [\n        \"VBG\"\n    ], \n    \"consensual\": [\n        \"JJ\"\n    ], \n    \"Puny\": [\n        \"JJ\"\n    ], \n    \"registrations\": [\n        \"NNS\"\n    ], \n    \"magnitude\": [\n        \"NN\"\n    ], \n    \"Shipbuilding\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nordson\": [\n        \"NNP\"\n    ], \n    \"turn-of-the-century\": [\n        \"JJ\"\n    ], \n    \"blue-sky\": [\n        \"JJ\"\n    ], \n    \"junkets\": [\n        \"NNS\"\n    ], \n    \"globe\": [\n        \"NN\"\n    ], \n    \"unsurprised\": [\n        \"JJ\"\n    ], \n    \"home-plate\": [\n        \"NN\"\n    ], \n    \"Fifties\": [\n        \"NNPS\"\n    ], \n    \"measure\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"twenty-first\": [\n        \"JJ\"\n    ], \n    \"Bandstand\": [\n        \"NN\"\n    ], \n    \"Smyth\": [\n        \"NNP\"\n    ], \n    \"gallant\": [\n        \"JJ\"\n    ], \n    \"entry-price\": [\n        \"JJ\"\n    ], \n    \"Blakey\": [\n        \"NNP\"\n    ], \n    \"Xoma\": [\n        \"NNP\"\n    ], \n    \"sub-segments\": [\n        \"NNS\"\n    ], \n    \"groundwave\": [\n        \"NN\"\n    ], \n    \"playground\": [\n        \"NN\"\n    ], \n    \"ASME\": [\n        \"NNP\"\n    ], \n    \"thriving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Zuratas\": [\n        \"NNP\"\n    ], \n    \"consigns\": [\n        \"VBZ\"\n    ], \n    \"statist\": [\n        \"JJ\"\n    ], \n    \"dissented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"A.J.C.\": [\n        \"NNP\"\n    ], \n    \"intruded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"high-performance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wines\": [\n        \"NNS\"\n    ], \n    \"Spinco\": [\n        \"NNP\"\n    ], \n    \"Draw\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"interplanetary\": [\n        \"JJ\"\n    ], \n    \"caregivers\": [\n        \"NNS\"\n    ], \n    \"Afghanistan\": [\n        \"NNP\"\n    ], \n    \"attending\": [\n        \"VBG\"\n    ], \n    \"intrudes\": [\n        \"VBZ\"\n    ], \n    \"intruder\": [\n        \"NN\"\n    ], \n    \"dissenter\": [\n        \"NN\"\n    ], \n    \"Eisenberg\": [\n        \"NNP\"\n    ], \n    \"Khaju\": [\n        \"NNP\"\n    ], \n    \"PHP\": [\n        \"NNP\"\n    ], \n    \"penknife\": [\n        \"NN\"\n    ], \n    \"Bestimmung\": [\n        \"FW\"\n    ], \n    \"snowstorm\": [\n        \"NN\"\n    ], \n    \"pilfering\": [\n        \"VBG\"\n    ], \n    \"pedimented\": [\n        \"VBN\"\n    ], \n    \"Comin\": [\n        \"VBG\"\n    ], \n    \"Seiki\": [\n        \"NNP\"\n    ], \n    \"Comic\": [\n        \"NNP\"\n    ], \n    \"Seiko\": [\n        \"NNP\"\n    ], \n    \"tramway\": [\n        \"NN\"\n    ], \n    \"Special-election\": [\n        \"NN\"\n    ], \n    \"veal\": [\n        \"NN\"\n    ], \n    \"indisposed\": [\n        \"JJ\"\n    ], \n    \"self-judging\": [\n        \"JJ\"\n    ], \n    \"rectifying\": [\n        \"VBG\"\n    ], \n    \"four-hour\": [\n        \"JJ\"\n    ], \n    \"Hart\": [\n        \"NNP\"\n    ], \n    \"signify\": [\n        \"VB\"\n    ], \n    \"Neo-Jazz\": [\n        \"NNP\"\n    ], \n    \"Perot-EDS\": [\n        \"JJ\"\n    ], \n    \"Animated\": [\n        \"JJ\"\n    ], \n    \"jump-start\": [\n        \"VB\"\n    ], \n    \"bears\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"squinting\": [\n        \"VBG\"\n    ], \n    \"durable\": [\n        \"JJ\"\n    ], \n    \"adopted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"adoptee\": [\n        \"NN\"\n    ], \n    \"Gaafer\": [\n        \"NNP\"\n    ], \n    \"neurotransmitter\": [\n        \"NN\"\n    ], \n    \"jellyfish\": [\n        \"NN\"\n    ], \n    \"final\": [\n        \"JJ\"\n    ], \n    \"Valu\": [\n        \"NNP\"\n    ], \n    \"beard\": [\n        \"NN\"\n    ], \n    \"redesignation\": [\n        \"NN\"\n    ], \n    \"exactly\": [\n        \"RB\"\n    ], \n    \"Alumni\": [\n        \"NNPS\"\n    ], \n    \"Boogaard\": [\n        \"NNP\"\n    ], \n    \"Rivlin\": [\n        \"NNP\"\n    ], \n    \"bassist\": [\n        \"NN\"\n    ], \n    \"self-aggrandisement\": [\n        \"NN\"\n    ], \n    \"apologist\": [\n        \"NN\"\n    ], \n    \"frowningly\": [\n        \"RB\"\n    ], \n    \"swindled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"comity\": [\n        \"NN\"\n    ], \n    \"Norodom\": [\n        \"NNP\"\n    ], \n    \"photogenic\": [\n        \"JJ\"\n    ], \n    \"Meese\": [\n        \"NNP\"\n    ], \n    \"Formby\": [\n        \"NNP\"\n    ], \n    \"rough-and-ready-sounding\": [\n        \"JJ\"\n    ], \n    \"cravings\": [\n        \"NNS\"\n    ], \n    \"go-it-alone\": [\n        \"JJ\"\n    ], \n    \"Ante\": [\n        \"NN\"\n    ], \n    \"referral\": [\n        \"NN\"\n    ], \n    \"Anta\": [\n        \"NNP\"\n    ], \n    \"berths\": [\n        \"NNS\"\n    ], \n    \"re-entered\": [\n        \"VBD\"\n    ], \n    \"Span\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"thwarted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"partner-in-charge\": [\n        \"NN\"\n    ], \n    \"Spam\": [\n        \"NNP\"\n    ], \n    \"tabs\": [\n        \"NNS\"\n    ], \n    \"three-sentence\": [\n        \"JJ\"\n    ], \n    \"Sock\": [\n        \"VB\"\n    ], \n    \"market-making\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Writers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"sundown\": [\n        \"NN\"\n    ], \n    \"Spar\": [\n        \"NNP\"\n    ], \n    \"dromozootic\": [\n        \"JJ\"\n    ], \n    \"Dream-Next\": [\n        \"NNP\"\n    ], \n    \"doubleA-2\": [\n        \"JJ\"\n    ], \n    \"sings\": [\n        \"VBZ\"\n    ], \n    \"Starzl\": [\n        \"NNP\"\n    ], \n    \"union-owned\": [\n        \"JJ\"\n    ], \n    \"kebob\": [\n        \"NN\"\n    ], \n    \"conformitarianism\": [\n        \"NN\"\n    ], \n    \"able\": [\n        \"JJ\"\n    ], \n    \"ably\": [\n        \"RB\"\n    ], \n    \"pronouncing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"unsmiling\": [\n        \"JJ\"\n    ], \n    \"Graphics\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"seasonings\": [\n        \"NNS\"\n    ], \n    \"Appleton\": [\n        \"NNP\"\n    ], \n    \"medals\": [\n        \"NNS\"\n    ], \n    \"balloting\": [\n        \"NN\"\n    ], \n    \"counter-demand\": [\n        \"NN\"\n    ], \n    \"Delmore\": [\n        \"NNP\"\n    ], \n    \"cocaine-processing\": [\n        \"NN\"\n    ], \n    \"dubs\": [\n        \"VBZ\"\n    ], \n    \"Coopers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"overlapping\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"brother-in-law\": [\n        \"NN\"\n    ], \n    \"awe\": [\n        \"NN\"\n    ], \n    \"Vapor\": [\n        \"NN\"\n    ], \n    \"lay-up\": [\n        \"JJ\"\n    ], \n    \"plumber\": [\n        \"NN\"\n    ], \n    \"Ultimately\": [\n        \"RB\"\n    ], \n    \"obstructionist\": [\n        \"NN\"\n    ], \n    \"prickly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"suture\": [\n        \"NN\"\n    ], \n    \"forlorn\": [\n        \"JJ\"\n    ], \n    \"Kwaishinsha\": [\n        \"NNP\"\n    ], \n    \"serge\": [\n        \"NN\"\n    ], \n    \"emerging\": [\n        \"VBG\"\n    ], \n    \"indoor\": [\n        \"JJ\"\n    ], \n    \"thirteen-year-old\": [\n        \"JJ\"\n    ], \n    \"mg.\": [\n        \"NN\"\n    ], \n    \"Self-sufficiency\": [\n        \"NN\"\n    ], \n    \"Leesona\": [\n        \"NNP\"\n    ], \n    \"Pedroli\": [\n        \"NNP\"\n    ], \n    \"midwife\": [\n        \"NN\"\n    ], \n    \"molest\": [\n        \"VB\"\n    ], \n    \"allaying\": [\n        \"VBG\"\n    ], \n    \"ostinatos\": [\n        \"NNS\"\n    ], \n    \"Tegucigalpa\": [\n        \"NNP\"\n    ], \n    \"Ilford\": [\n        \"NNP\"\n    ], \n    \"untimely\": [\n        \"JJ\"\n    ], \n    \"earned\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Floodlights\": [\n        \"NNP\"\n    ], \n    \"grata\": [\n        \"FW\"\n    ], \n    \"winner\": [\n        \"NN\"\n    ], \n    \"employes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"employer\": [\n        \"NN\"\n    ], \n    \"earner\": [\n        \"NN\"\n    ], \n    \"employee\": [\n        \"NN\"\n    ], \n    \"employed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"orderliness\": [\n        \"NN\"\n    ], \n    \"dodge\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"moralist\": [\n        \"NN\"\n    ], \n    \"Yard\": [\n        \"NNP\"\n    ], \n    \"up-pp\": [\n        \"RP\"\n    ], \n    \"overall\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"NAIR\": [\n        \"NNP\"\n    ], \n    \"Schell\": [\n        \"NNP\"\n    ], \n    \"once-sacred\": [\n        \"JJ\"\n    ], \n    \"buyer\": [\n        \"NN\"\n    ], \n    \"leases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Italian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Levert\": [\n        \"NNP\"\n    ], \n    \"footlights\": [\n        \"NNS\"\n    ], \n    \"wellness\": [\n        \"NN\"\n    ], \n    \"sharpshooter\": [\n        \"NN\"\n    ], \n    \"moralism\": [\n        \"NN\"\n    ], \n    \"prossed\": [\n        \"FW\"\n    ], \n    \"Vigdor\": [\n        \"NNP\"\n    ], \n    \"contain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"proponents\": [\n        \"NNS\"\n    ], \n    \"brand-loyal\": [\n        \"JJ\"\n    ], \n    \"NEA\": [\n        \"NNP\"\n    ], \n    \"hardwood\": [\n        \"NN\"\n    ], \n    \"chaperone\": [\n        \"NN\"\n    ], \n    \"orphan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Reub\": [\n        \"NNP\"\n    ], \n    \"under-50s\": [\n        \"NNS\"\n    ], \n    \"Salvagni\": [\n        \"NNP\"\n    ], \n    \"powder\": [\n        \"NN\"\n    ], \n    \"anastomoses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"spy-in-training\": [\n        \"NN\"\n    ], \n    \"illiteracy\": [\n        \"NN\"\n    ], \n    \"Gaining\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"statu\": [\n        \"FW\"\n    ], \n    \"stats\": [\n        \"NNS\"\n    ], \n    \"unilateralists\": [\n        \"NNS\"\n    ], \n    \"hit-and-run\": [\n        \"JJ\"\n    ], \n    \"state\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"surmises\": [\n        \"NNS\"\n    ], \n    \"Gaillard\": [\n        \"NNP\"\n    ], \n    \"ciliated\": [\n        \"VBN\"\n    ], \n    \"anti-inflationary\": [\n        \"JJ\"\n    ], \n    \"insomma\": [\n        \"FW\"\n    ], \n    \"setbacks\": [\n        \"NNS\"\n    ], \n    \"boatels\": [\n        \"NNS\"\n    ], \n    \"sorely\": [\n        \"RB\"\n    ], \n    \"Assemblywoman\": [\n        \"NNP\"\n    ], \n    \"Colonna\": [\n        \"NNP\"\n    ], \n    \"C.C.B\": [\n        \"NNP\"\n    ], \n    \"Nekoosa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"semi-annual\": [\n        \"JJ\"\n    ], \n    \"reallocated\": [\n        \"VBN\"\n    ], \n    \"gynecological\": [\n        \"JJ\"\n    ], \n    \"Aegean\": [\n        \"NNP\"\n    ], \n    \"retrievable\": [\n        \"JJ\"\n    ], \n    \"pileups\": [\n        \"NNS\"\n    ], \n    \"Pestered\": [\n        \"VBN\"\n    ], \n    \"once-stodgy\": [\n        \"JJ\"\n    ], \n    \"roil\": [\n        \"VB\"\n    ], \n    \"manifestations\": [\n        \"NNS\"\n    ], \n    \"spatter\": [\n        \"NN\"\n    ], \n    \"Result\": [\n        \"NN\"\n    ], \n    \"Tsou\": [\n        \"NNP\"\n    ], \n    \"semi-abstract\": [\n        \"JJ\"\n    ], \n    \"flocking\": [\n        \"VBG\"\n    ], \n    \"Over-achievers\": [\n        \"NNS\"\n    ], \n    \"spandex\": [\n        \"NN\"\n    ], \n    \"hydrotherapy\": [\n        \"NN\"\n    ], \n    \"passers-by\": [\n        \"NNS\"\n    ], \n    \"harmonic\": [\n        \"JJ\"\n    ], \n    \"amounted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"horticulturist\": [\n        \"NN\"\n    ], \n    \"waved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"rat-a-tat-tatty\": [\n        \"JJ\"\n    ], \n    \"tread\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Relax\": [\n        \"VB\"\n    ], \n    \"revenue-generating\": [\n        \"JJ\"\n    ], \n    \"outplacement\": [\n        \"NN\"\n    ], \n    \"gerbera\": [\n        \"NN\"\n    ], \n    \"Zuni\": [\n        \"NNP\"\n    ], \n    \"Tonawanda\": [\n        \"NNP\"\n    ], \n    \"Elvekrog\": [\n        \"NNP\"\n    ], \n    \"senses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"husband-stealer\": [\n        \"NN\"\n    ], \n    \"adjourns\": [\n        \"VBZ\"\n    ], \n    \"nine-bedroom\": [\n        \"JJ\"\n    ], \n    \"Chandra\": [\n        \"NNP\"\n    ], \n    \"Regie\": [\n        \"NNP\"\n    ], \n    \"pharmacuetical\": [\n        \"JJ\"\n    ], \n    \"piqued\": [\n        \"VBN\"\n    ], \n    \"kava\": [\n        \"FW\"\n    ], \n    \"glossary\": [\n        \"NN\"\n    ], \n    \"electron-device\": [\n        \"NN\"\n    ], \n    \"pandemonium\": [\n        \"NN\"\n    ], \n    \"doctor-patient\": [\n        \"JJ\"\n    ], \n    \"Olszewskiof\": [\n        \"NNP\"\n    ], \n    \"Early\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"reapportioned\": [\n        \"VBN\"\n    ], \n    \"CELEBRATIONS\": [\n        \"NNP\"\n    ], \n    \"Ter-Stepanova\": [\n        \"NNP\"\n    ], \n    \"free-market-oriented\": [\n        \"JJ\"\n    ], \n    \"sustenance\": [\n        \"NN\"\n    ], \n    \"W.R.\": [\n        \"NNP\"\n    ], \n    \"Saveth\": [\n        \"NNP\"\n    ], \n    \"blasphemous\": [\n        \"JJ\"\n    ], \n    \"balloon\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"tappet\": [\n        \"NN\"\n    ], \n    \"begat\": [\n        \"VBD\"\n    ], \n    \"sideboards\": [\n        \"NNS\"\n    ], \n    \"S-20\": [\n        \"NN\"\n    ], \n    \"rattled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"eclectic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tapped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Apolo\": [\n        \"NNP\"\n    ], \n    \"Mirante\": [\n        \"NNP\"\n    ], \n    \"Coastal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"reactionary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"line-up\": [\n        \"NN\"\n    ], \n    \"effect\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"EYEWEAR\": [\n        \"NN\"\n    ], \n    \"trembles\": [\n        \"VBZ\"\n    ], \n    \"Kurds\": [\n        \"NNPS\"\n    ], \n    \"discouraged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"disorderliness\": [\n        \"NN\"\n    ], \n    \"embryo\": [\n        \"NN\"\n    ], \n    \"herpetology\": [\n        \"NN\"\n    ], \n    \"supernatant\": [\n        \"JJ\"\n    ], \n    \"surfboard\": [\n        \"NN\"\n    ], \n    \"intercede\": [\n        \"VB\"\n    ], \n    \"cent-per-barrel\": [\n        \"JJ\"\n    ], \n    \"universalize\": [\n        \"VBP\"\n    ], \n    \"no-nonsense\": [\n        \"JJ\"\n    ], \n    \"steoreotyped\": [\n        \"JJ\"\n    ], \n    \"Have\": [\n        \"VBP\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"draconian\": [\n        \"JJ\"\n    ], \n    \"BE\": [\n        \"VB\"\n    ], \n    \"BG\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"working-day\": [\n        \"JJ\"\n    ], \n    \"BA\": [\n        \"NNP\"\n    ], \n    \"Tecumseh\": [\n        \"NNP\"\n    ], \n    \"ocean-going\": [\n        \"JJ\"\n    ], \n    \"Nickerson\": [\n        \"NNP\"\n    ], \n    \"purifier\": [\n        \"NN\"\n    ], \n    \"linage\": [\n        \"NN\"\n    ], \n    \"BK\": [\n        \"NNP\"\n    ], \n    \"BT\": [\n        \"NNP\"\n    ], \n    \"BV\": [\n        \"NNP\"\n    ], \n    \"marauding\": [\n        \"VBG\"\n    ], \n    \"Collections\": [\n        \"NNS\"\n    ], \n    \"Germanized\": [\n        \"VBN\"\n    ], \n    \"Reinker\": [\n        \"NNP\"\n    ], \n    \"laurel\": [\n        \"NN\"\n    ], \n    \"purified\": [\n        \"VBN\"\n    ], \n    \"sputtering\": [\n        \"JJ\"\n    ], \n    \"Be\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"eye-strain\": [\n        \"NN\"\n    ], \n    \"Bo\": [\n        \"NNP\"\n    ], \n    \"logged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Twenty-one-year-old\": [\n        \"NN\"\n    ], \n    \"sepsis\": [\n        \"NN\"\n    ], \n    \"Kandu\": [\n        \"NNP\"\n    ], \n    \"luncheons\": [\n        \"NNS\"\n    ], \n    \"By\": [\n        \"IN\", \n        \"RB\", \n        \"NNP\", \n        \"UH\"\n    ], \n    \"Bershad\": [\n        \"NNP\"\n    ], \n    \"ample\": [\n        \"JJ\"\n    ], \n    \"Lackey\": [\n        \"NNP\"\n    ], \n    \"devisee\": [\n        \"NN\"\n    ], \n    \"devised\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"self-assurance\": [\n        \"NN\"\n    ], \n    \"early-departure\": [\n        \"NN\"\n    ], \n    \"burden\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"side-looking\": [\n        \"JJ\"\n    ], \n    \"Mottus\": [\n        \"NNP\"\n    ], \n    \"devises\": [\n        \"VBZ\"\n    ], \n    \"PhacoFlex\": [\n        \"NNP\"\n    ], \n    \"strategic-arms\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"glazing\": [\n        \"VBG\"\n    ], \n    \"England\": [\n        \"NNP\"\n    ], \n    \"B.\": [\n        \"NNP\", \n        \".\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"al-Faisal\": [\n        \"NNP\"\n    ], \n    \"B2\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"setups\": [\n        \"NNS\"\n    ], \n    \"less-rigorous\": [\n        \"JJR\"\n    ], \n    \"ill-understood\": [\n        \"JJ\"\n    ], \n    \"glycosides\": [\n        \"NNS\"\n    ], \n    \"shed\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Bombieri\": [\n        \"NNP\"\n    ], \n    \"shea\": [\n        \"NN\"\n    ], \n    \"repositories\": [\n        \"NNS\"\n    ], \n    \"belonged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"grizzlies\": [\n        \"NNS\"\n    ], \n    \"sleighs\": [\n        \"NNS\"\n    ], \n    \"non-newtonian\": [\n        \"JJ\"\n    ], \n    \"restudy\": [\n        \"NN\"\n    ], \n    \"fearlast\": [\n        \"NN\"\n    ], \n    \"redress\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"deliverance\": [\n        \"NN\"\n    ], \n    \"midwestern\": [\n        \"JJ\"\n    ], \n    \"MacFarlanes\": [\n        \"NNP\"\n    ], \n    \"reduced-instruction\": [\n        \"NN\"\n    ], \n    \"Draper\": [\n        \"NNP\"\n    ], \n    \"Landonne\": [\n        \"NNP\"\n    ], \n    \"kettle\": [\n        \"NN\"\n    ], \n    \"Detroit-to-Tokyo\": [\n        \"JJ\"\n    ], \n    \"Overfunding\": [\n        \"VBG\"\n    ], \n    \"Voell\": [\n        \"NNP\"\n    ], \n    \"heir-apparent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gaylor\": [\n        \"NNP\"\n    ], \n    \"commawnded\": [\n        \"VBD\"\n    ], \n    \"co-produced\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Crosse\": [\n        \"NNP\"\n    ], \n    \"prohibited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"chancy\": [\n        \"JJ\"\n    ], \n    \"torsos\": [\n        \"NNS\"\n    ], \n    \"Ukropina\": [\n        \"NNP\"\n    ], \n    \"crystallizing\": [\n        \"VBG\"\n    ], \n    \"Jugend\": [\n        \"NNP\"\n    ], \n    \"Secord\": [\n        \"NNP\"\n    ], \n    \"co-authors\": [\n        \"VBZ\"\n    ], \n    \"staked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"scribing\": [\n        \"NN\"\n    ], \n    \"Tadeusz\": [\n        \"NNP\"\n    ], \n    \"gun-slinger\": [\n        \"NN\"\n    ], \n    \"delicacies\": [\n        \"NNS\"\n    ], \n    \"toppings\": [\n        \"NNS\"\n    ], \n    \"Novosibirsk\": [\n        \"NNP\"\n    ], \n    \"semi-inflated\": [\n        \"JJ\"\n    ], \n    \"arrogantly\": [\n        \"RB\"\n    ], \n    \"Flesher\": [\n        \"NNP\"\n    ], \n    \"Bonomo\": [\n        \"NNP\"\n    ], \n    \"stakes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"primal\": [\n        \"JJ\"\n    ], \n    \"Seydoux\": [\n        \"NNP\"\n    ], \n    \"Jacquette\": [\n        \"NNP\"\n    ], \n    \"bridging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"due\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\", \n        \"RB\", \n        \"NNS\"\n    ], \n    \"infer...\": [\n        \":\"\n    ], \n    \"receptor\": [\n        \"NN\"\n    ], \n    \"Netherlands-based\": [\n        \"JJ\"\n    ], \n    \"strategy\": [\n        \"NN\"\n    ], \n    \"endeavours\": [\n        \"NNS\"\n    ], \n    \"utility\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"grassfire\": [\n        \"NN\"\n    ], \n    \"sopranos\": [\n        \"NNS\"\n    ], \n    \"Generic\": [\n        \"NNP\"\n    ], \n    \"Vegas\": [\n        \"NNP\"\n    ], \n    \"new-job\": [\n        \"JJ\"\n    ], \n    \"divulging\": [\n        \"VBG\"\n    ], \n    \"Sheeting\": [\n        \"NN\"\n    ], \n    \"Arrange\": [\n        \"VB\"\n    ], \n    \"cricket\": [\n        \"NN\"\n    ], \n    \"Vending\": [\n        \"NN\"\n    ], \n    \"Successive\": [\n        \"JJ\"\n    ], \n    \"generalship\": [\n        \"NN\"\n    ], \n    \"evacuate\": [\n        \"VB\"\n    ], \n    \"uncurled\": [\n        \"VBD\"\n    ], \n    \"Teschner\": [\n        \"NNP\"\n    ], \n    \"Allen-film\": [\n        \"NN\"\n    ], \n    \"Cinnamon\": [\n        \"NNP\"\n    ], \n    \"Highland\": [\n        \"NNP\"\n    ], \n    \"palmtop\": [\n        \"NN\"\n    ], \n    \"pi\": [\n        \"NN\"\n    ], \n    \"Sicilian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Kamloops\": [\n        \"NNP\"\n    ], \n    \"cells\": [\n        \"NNS\"\n    ], \n    \"hosting\": [\n        \"VBG\"\n    ], \n    \"Michaelson\": [\n        \"NNP\"\n    ], \n    \"cruel\": [\n        \"JJ\"\n    ], \n    \"manifesto\": [\n        \"NN\"\n    ], \n    \"Sponsor\": [\n        \"NNP\"\n    ], \n    \"steepest\": [\n        \"JJS\"\n    ], \n    \"good-driver\": [\n        \"JJ\"\n    ], \n    \"Probes\": [\n        \"NNPS\"\n    ], \n    \"broader-based\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"slugfest\": [\n        \"NN\", \n        \"JJS\"\n    ], \n    \"Centocor\": [\n        \"NNP\"\n    ], \n    \"devise\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pfc.\": [\n        \"NNP\"\n    ], \n    \"penny\": [\n        \"NN\"\n    ], \n    \"Left-stream\": [\n        \"JJ\"\n    ], \n    \"magnates\": [\n        \"NNS\"\n    ], \n    \"resented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Proleukin\": [\n        \"NNP\"\n    ], \n    \"ideational\": [\n        \"JJ\"\n    ], \n    \"Willens\": [\n        \"NNP\"\n    ], \n    \"chromosome\": [\n        \"NN\"\n    ], \n    \"Mining\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Explosion\": [\n        \"NN\"\n    ], \n    \"scowls\": [\n        \"VBZ\"\n    ], \n    \"hazelnuts\": [\n        \"NNS\"\n    ], \n    \"fencing\": [\n        \"NN\"\n    ], \n    \"foreseeing\": [\n        \"VBG\"\n    ], \n    \"coffeepot\": [\n        \"NN\"\n    ], \n    \"palletized\": [\n        \"VBN\"\n    ], \n    \"paratroopers\": [\n        \"NNS\"\n    ], \n    \"chemise\": [\n        \"NN\"\n    ], \n    \"policy-making\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"misconceptions\": [\n        \"NNS\"\n    ], \n    \"Depicting\": [\n        \"VBG\"\n    ], \n    \"chemist\": [\n        \"NN\"\n    ], \n    \"Like\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"ecstatic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ken\": [\n        \"NNP\"\n    ], \n    \"charge-offs\": [\n        \"NNS\"\n    ], \n    \"refreshments\": [\n        \"NNS\"\n    ], \n    \"Mathews\": [\n        \"NNP\"\n    ], \n    \"sleep-wakefulness\": [\n        \"NN\"\n    ], \n    \"owner-bred\": [\n        \"JJ\"\n    ], \n    \"Neglect\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"So-Ho\": [\n        \"NNP\"\n    ], \n    \"strike-force\": [\n        \"NN\"\n    ], \n    \"using\": [\n        \"VBG\"\n    ], \n    \"Discover\": [\n        \"NNP\"\n    ], \n    \"Melcher\": [\n        \"NNP\"\n    ], \n    \"poplin\": [\n        \"NN\"\n    ], \n    \"ill-gotten\": [\n        \"JJ\"\n    ], \n    \"theory-teaching\": [\n        \"VBG\"\n    ], \n    \"retail-distribution\": [\n        \"NN\"\n    ], \n    \"secondly\": [\n        \"RB\"\n    ], \n    \"Appear\": [\n        \"VBP\"\n    ], \n    \"nun\": [\n        \"NN\"\n    ], \n    \"Improvement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bolet\": [\n        \"NNP\"\n    ], \n    \"nigh\": [\n        \"RB\"\n    ], \n    \"scheming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"colloquies\": [\n        \"NNS\"\n    ], \n    \"captain\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"minuscule\": [\n        \"JJ\"\n    ], \n    \"clearing-firm\": [\n        \"JJ\"\n    ], \n    \"offenses\": [\n        \"NNS\"\n    ], \n    \"Eizenstat\": [\n        \"NNP\"\n    ], \n    \"presente\": [\n        \"JJ\"\n    ], \n    \"sweetest\": [\n        \"JJS\"\n    ], \n    \"bimbos\": [\n        \"NNS\"\n    ], \n    \"presents\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"nuceoside\": [\n        \"NN\"\n    ], \n    \"nominal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hardtack\": [\n        \"NN\"\n    ], \n    \"sub-group\": [\n        \"NN\"\n    ], \n    \"trousers\": [\n        \"NNS\"\n    ], \n    \"saver\": [\n        \"NN\"\n    ], \n    \"slow-moving\": [\n        \"JJ\"\n    ], \n    \"saves\": [\n        \"VBZ\"\n    ], \n    \"cruising\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Rail-transit\": [\n        \"NN\"\n    ], \n    \"Cabletron\": [\n        \"NNP\"\n    ], \n    \"connects\": [\n        \"VBZ\"\n    ], \n    \"compacts\": [\n        \"NNS\"\n    ], \n    \"Django\": [\n        \"NNP\"\n    ], \n    \"vice-regent\": [\n        \"JJ\"\n    ], \n    \"Becht\": [\n        \"NNP\"\n    ], \n    \"ADOPTED\": [\n        \"VBD\"\n    ], \n    \"Farge\": [\n        \"NNP\"\n    ], \n    \"EG&G\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"courageous\": [\n        \"JJ\"\n    ], \n    \"convexity\": [\n        \"NN\"\n    ], \n    \"Physiologically\": [\n        \"RB\"\n    ], \n    \"Littleton\": [\n        \"NNP\"\n    ], \n    \"laurels\": [\n        \"NNS\"\n    ], \n    \"coin-operated\": [\n        \"JJ\"\n    ], \n    \"Golar\": [\n        \"NNP\"\n    ], \n    \"nerve-cell\": [\n        \"JJ\"\n    ], \n    \"convenience\": [\n        \"NN\"\n    ], \n    \"Somoza\": [\n        \"NNP\"\n    ], \n    \"roundness\": [\n        \"NN\"\n    ], \n    \"inaction\": [\n        \"NN\"\n    ], \n    \"Frisch\": [\n        \"NNP\"\n    ], \n    \"farmhouse\": [\n        \"NN\"\n    ], \n    \"embouchure\": [\n        \"NN\"\n    ], \n    \"quilt\": [\n        \"NN\"\n    ], \n    \"warns\": [\n        \"VBZ\"\n    ], \n    \"pyramid\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"second-in-command\": [\n        \"NN\"\n    ], \n    \"shoveled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"helluva\": [\n        \"JJ\"\n    ], \n    \"qualitatively\": [\n        \"RB\"\n    ], \n    \"cactus\": [\n        \"NN\"\n    ], \n    \"quill\": [\n        \"NN\"\n    ], \n    \"even\": [\n        \"RB\", \n        \"JJ\", \n        \"VB\", \n        \"RB|JJ\"\n    ], \n    \"betraying\": [\n        \"VBG\"\n    ], \n    \"dividend-capture\": [\n        \"NN\"\n    ], \n    \"saved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"malleable\": [\n        \"JJ\"\n    ], \n    \"Traub\": [\n        \"NNP\"\n    ], \n    \"untenanted\": [\n        \"JJ\"\n    ], \n    \"maverick\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fardulli\": [\n        \"NNP\"\n    ], \n    \"plunked\": [\n        \"VBD\"\n    ], \n    \"anteaters\": [\n        \"NNS\"\n    ], \n    \"Sometimes\": [\n        \"RB\"\n    ], \n    \"Pesqueira\": [\n        \"NNP\"\n    ], \n    \"statehood\": [\n        \"NN\"\n    ], \n    \"Flip\": [\n        \"NNP\"\n    ], \n    \"refinement\": [\n        \"NN\"\n    ], \n    \"deposition\": [\n        \"NN\"\n    ], \n    \"Systran\": [\n        \"NNP\"\n    ], \n    \"Wonda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cross-blending\": [\n        \"JJ\"\n    ], \n    \"Labaton\": [\n        \"NNP\"\n    ], \n    \"by-roads\": [\n        \"NNS\"\n    ], \n    \"Smokies\": [\n        \"NNPS\"\n    ], \n    \"Haig\": [\n        \"NNP\"\n    ], \n    \"jams\": [\n        \"NNS\"\n    ], \n    \"Carmelite\": [\n        \"JJ\"\n    ], \n    \"Hail\": [\n        \"NNP\"\n    ], \n    \"expedited\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Hair\": [\n        \"NN\"\n    ], \n    \"ornamental\": [\n        \"JJ\"\n    ], \n    \"superstitious\": [\n        \"JJ\"\n    ], \n    \"permit\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"aikido\": [\n        \"FW\"\n    ], \n    \"fathered\": [\n        \"VBD\"\n    ], \n    \"high-wire\": [\n        \"JJ\"\n    ], \n    \"shrubbery-lined\": [\n        \"JJ\"\n    ], \n    \"pray-for-growth-later\": [\n        \"JJ\"\n    ], \n    \"Fargo\": [\n        \"NNP\"\n    ], \n    \"business-interruption\": [\n        \"JJ\"\n    ], \n    \"Senate-backed\": [\n        \"JJ\"\n    ], \n    \"schooling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"cost-control\": [\n        \"JJ\"\n    ], \n    \"Giffen\": [\n        \"NNP\"\n    ], \n    \"Eggers\": [\n        \"NNP\"\n    ], \n    \"circumvent\": [\n        \"VB\"\n    ], \n    \"particularity\": [\n        \"NN\"\n    ], \n    \"overhear\": [\n        \"VB\"\n    ], \n    \"overheat\": [\n        \"VB\"\n    ], \n    \"Computer-generated\": [\n        \"JJ\"\n    ], \n    \"Mankowski\": [\n        \"NNP\"\n    ], \n    \"barks\": [\n        \"VBZ\"\n    ], \n    \"Overvalued\": [\n        \"JJ\"\n    ], \n    \"secessionist\": [\n        \"NN\"\n    ], \n    \"overhead\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"calm\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"name-drops\": [\n        \"VBZ\"\n    ], \n    \"prior-year\": [\n        \"JJ\"\n    ], \n    \"self-regulatory\": [\n        \"JJ\"\n    ], \n    \"twirled\": [\n        \"JJ\"\n    ], \n    \"Prentiss\": [\n        \"NNP\"\n    ], \n    \"Miniver\": [\n        \"NNP\"\n    ], \n    \"Cliburn\": [\n        \"NNP\"\n    ], \n    \"Existentialists\": [\n        \"NNS\"\n    ], \n    \"composite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ravenspurn\": [\n        \"NNP\"\n    ], \n    \"week-long\": [\n        \"JJ\"\n    ], \n    \"spiraled\": [\n        \"VBD\"\n    ], \n    \"product-marketing\": [\n        \"NN\"\n    ], \n    \"Inning\": [\n        \"NN\"\n    ], \n    \"plaintive\": [\n        \"JJ\"\n    ], \n    \"%CHG\": [\n        \"NN\"\n    ], \n    \"reality-based\": [\n        \"JJ\"\n    ], \n    \"gasoline\": [\n        \"NN\"\n    ], \n    \"Lauchli\": [\n        \"NNP\"\n    ], \n    \"gossiping\": [\n        \"VBG\"\n    ], \n    \"Advertisers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"audiophiles\": [\n        \"NNS\"\n    ], \n    \"Drexel-managed\": [\n        \"JJ\"\n    ], \n    \"laughs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"honed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"involve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Relatives\": [\n        \"NNS\"\n    ], \n    \"discography\": [\n        \"NN\"\n    ], \n    \"French-Canadian\": [\n        \"NNP\"\n    ], \n    \"Waldensian\": [\n        \"JJ\"\n    ], \n    \"savers\": [\n        \"NNS\"\n    ], \n    \"Biofeedback\": [\n        \"NNP\"\n    ], \n    \"funky\": [\n        \"JJ\"\n    ], \n    \"motel-keeping\": [\n        \"NN\"\n    ], \n    \"Veblen\": [\n        \"NNP\"\n    ], \n    \"salivate\": [\n        \"VB\"\n    ], \n    \"bathrobes\": [\n        \"NNS\"\n    ], \n    \"quok\": [\n        \"FW\"\n    ], \n    \"cavernous\": [\n        \"JJ\"\n    ], \n    \"Nineveh\": [\n        \"NNP\"\n    ], \n    \"Starbird\": [\n        \"NNP\"\n    ], \n    \"high-loss\": [\n        \"JJ\"\n    ], \n    \"curiosity\": [\n        \"NN\"\n    ], \n    \"two-syllable\": [\n        \"JJ\"\n    ], \n    \"Budweisers\": [\n        \"NNS\"\n    ], \n    \"Dyncorp\": [\n        \"NNP\"\n    ], \n    \"purchase\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"All\": [\n        \"DT\", \n        \"RB\", \n        \"NNP\", \n        \"PDT\", \n        \"NNS|DT\"\n    ], \n    \"parading\": [\n        \"VBG\"\n    ], \n    \"Civic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Civil\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"stand-alone\": [\n        \"JJ\"\n    ], \n    \"Telerate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"assuredly\": [\n        \"RB\"\n    ], \n    \"bout-de-souffle\": [\n        \"FW\"\n    ], \n    \"square-mile\": [\n        \"JJ\"\n    ], \n    \"waited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"uninsured\": [\n        \"JJ\"\n    ], \n    \"Alt\": [\n        \"NNP\"\n    ], \n    \"operations\": [\n        \"NNS\"\n    ], \n    \"deco\": [\n        \"NN\"\n    ], \n    \"unfolds\": [\n        \"VBZ\"\n    ], \n    \"maraschino\": [\n        \"NN\"\n    ], \n    \"deck\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"steel-making\": [\n        \"JJ\"\n    ], \n    \"idiotypes\": [\n        \"NNS\"\n    ], \n    \"Humphreys\": [\n        \"NNP\"\n    ], \n    \"Opportunities\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"eyewear\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unmalicious\": [\n        \"JJ\"\n    ], \n    \"fortify\": [\n        \"VB\"\n    ], \n    \"monoclonal-antibody\": [\n        \"NN\"\n    ], \n    \"down.\": [\n        \"RP\"\n    ], \n    \"responsive\": [\n        \"JJ\"\n    ], \n    \"high-paid\": [\n        \"JJ\"\n    ], \n    \"Ventres\": [\n        \"NNP\"\n    ], \n    \"Virgilio\": [\n        \"NNP\"\n    ], \n    \"just-say-no\": [\n        \"JJ\"\n    ], \n    \",\": [\n        \",\"\n    ], \n    \"blackened\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Beck\": [\n        \"NNP\"\n    ], \n    \"Cutting\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"carve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Mexican-food\": [\n        \"JJ\"\n    ], \n    \"apogee\": [\n        \"NN\"\n    ], \n    \"imperturbable\": [\n        \"JJ\"\n    ], \n    \"repairmen\": [\n        \"NNS\"\n    ], \n    \"donors\": [\n        \"NNS\"\n    ], \n    \"sermons\\\\/From\": [\n        \"JJ\"\n    ], \n    \"Ruckert\": [\n        \"NNP\"\n    ], \n    \"downs\": [\n        \"NNS\"\n    ], \n    \"nightclubs\": [\n        \"NNS\"\n    ], \n    \"BALANCES\": [\n        \"NNS\"\n    ], \n    \"Steps\": [\n        \"NNPS\", \n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"WOODSTOCK\": [\n        \"NNP\"\n    ], \n    \"rhapsodize\": [\n        \"VBP\"\n    ], \n    \"decorator\": [\n        \"NN\"\n    ], \n    \"musically\": [\n        \"RB\"\n    ], \n    \"leaner\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"doubtingly\": [\n        \"RB\"\n    ], \n    \"mistrust\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Goebel\": [\n        \"NNP\"\n    ], \n    \"speak-easy\": [\n        \"NN\"\n    ], \n    \"Stop-close-only\": [\n        \"JJ\"\n    ], \n    \"victories\": [\n        \"NNS\"\n    ], \n    \"successorship\": [\n        \"NN\"\n    ], \n    \"sullying\": [\n        \"VBG\"\n    ], \n    \"spinneret\": [\n        \"NN\"\n    ], \n    \"inserts\": [\n        \"NNS\"\n    ], \n    \"pay-per-view\": [\n        \"JJ\"\n    ], \n    \"clarets\": [\n        \"NNS\"\n    ], \n    \"ministering\": [\n        \"VBG\"\n    ], \n    \"Factor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"optimistically\": [\n        \"RB\"\n    ], \n    \"extract\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"safe-sounding\": [\n        \"JJ\"\n    ], \n    \"scoreless\": [\n        \"JJ\"\n    ], \n    \"cartridge\": [\n        \"NN\"\n    ], \n    \"airmailed\": [\n        \"VBD\"\n    ], \n    \"Piddington\": [\n        \"NNP\"\n    ], \n    \"hushed\": [\n        \"JJ\"\n    ], \n    \"sparkle\": [\n        \"NN\"\n    ], \n    \"Weisman\": [\n        \"NNP\"\n    ], \n    \"Njust\": [\n        \"NNP\"\n    ], \n    \"advancers\": [\n        \"NNS\"\n    ], \n    \"Pier\": [\n        \"NNP\"\n    ], \n    \"assaults\": [\n        \"NNS\"\n    ], \n    \"voltages\": [\n        \"NNS\"\n    ], \n    \"pityingly\": [\n        \"RB\"\n    ], \n    \"curtailment\": [\n        \"NN\"\n    ], \n    \"proportionality\": [\n        \"NN\"\n    ], \n    \"Jalaalwalikraam\": [\n        \"NNP\"\n    ], \n    \"LeMay\": [\n        \"NNP\"\n    ], \n    \"Nixon\": [\n        \"NNP\"\n    ], \n    \"rinds\": [\n        \"NNS\"\n    ], \n    \"saggy\": [\n        \"JJ\"\n    ], \n    \"shaggy\": [\n        \"JJ\"\n    ], \n    \"Gulliver\": [\n        \"NNP\"\n    ], \n    \"starts\": [\n        \"VBZ\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"cackled\": [\n        \"VBD\"\n    ], \n    \"Noblesville\": [\n        \"NNP\"\n    ], \n    \"Defect\": [\n        \"NN\"\n    ], \n    \"Panda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"communications-equipment\": [\n        \"NN\"\n    ], \n    \"deems\": [\n        \"VBZ\"\n    ], \n    \"Computation\": [\n        \"NNP\"\n    ], \n    \"Mirror\": [\n        \"NNP\"\n    ], \n    \"junk-holders\": [\n        \"NNS\"\n    ], \n    \"Cod\": [\n        \"NNP\"\n    ], \n    \"Swahili\": [\n        \"NNP\"\n    ], \n    \"Yoneda\": [\n        \"NNP\"\n    ], \n    \"longue\": [\n        \"NN\"\n    ], \n    \"Besset\": [\n        \"NNP\"\n    ], \n    \"McGrevin\": [\n        \"NNP\"\n    ], \n    \"Wootton\": [\n        \"NNP\"\n    ], \n    \"Grigory\": [\n        \"NNP\"\n    ], \n    \"peculiarity\": [\n        \"NN\"\n    ], \n    \"Borrowing\": [\n        \"VBG\"\n    ], \n    \"disappearing\": [\n        \"VBG\"\n    ], \n    \"Sattig\": [\n        \"NNP\"\n    ], \n    \"snubbing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Halls\": [\n        \"NNP\"\n    ], \n    \"Grigori\": [\n        \"NNP\"\n    ], \n    \"MUTUAL\": [\n        \"JJ\"\n    ], \n    \"terry-cloth\": [\n        \"NN\"\n    ], \n    \"spinach\": [\n        \"NN\"\n    ], \n    \"Wanna\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"concussion\": [\n        \"NN\"\n    ], \n    \"recruiting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"kolkhozes\": [\n        \"NNS\"\n    ], \n    \"union-represented\": [\n        \"JJ\"\n    ], \n    \"Corollary\": [\n        \"NN\"\n    ], \n    \"zeros\": [\n        \"NNS\"\n    ], \n    \"industrial-services\": [\n        \"JJ\"\n    ], \n    \"sometimes-tawdry\": [\n        \"JJ\"\n    ], \n    \"twister\": [\n        \"NN\"\n    ], \n    \"curtails\": [\n        \"VBZ\"\n    ], \n    \"Petrobras\": [\n        \"NNP\"\n    ], \n    \"BBN\": [\n        \"NNP\"\n    ], \n    \"moisture\": [\n        \"NN\"\n    ], \n    \"government-business\": [\n        \"NN\"\n    ], \n    \"malls\": [\n        \"NNS\"\n    ], \n    \"BBC\": [\n        \"NNP\"\n    ], \n    \"BBB\": [\n        \"NNP\"\n    ], \n    \"ten-by-ten-mile\": [\n        \"JJ\"\n    ], \n    \"Telos\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Troop\": [\n        \"NNP\"\n    ], \n    \"Waterhouse\": [\n        \"NNP\"\n    ], \n    \"peculiar\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"symptom\": [\n        \"NN\"\n    ], \n    \"congratulatory\": [\n        \"JJ\"\n    ], \n    \"anxiety\": [\n        \"NN\"\n    ], \n    \"Canberra\": [\n        \"NNP\"\n    ], \n    \"fraternisation\": [\n        \"NN\"\n    ], \n    \"Soviet-finished\": [\n        \"JJ\"\n    ], \n    \"full-service\": [\n        \"JJ\"\n    ], \n    \"purifiers\": [\n        \"NNS\"\n    ], \n    \"divisiveness\": [\n        \"NN\"\n    ], \n    \"subhumanity\": [\n        \"NN\"\n    ], \n    \"untrue...\": [\n        \":\"\n    ], \n    \"on-the-go\": [\n        \"JJ\"\n    ], \n    \"Rudder\": [\n        \"NNP\"\n    ], \n    \"streetfighter\": [\n        \"NN\"\n    ], \n    \"Downey\": [\n        \"NNP\"\n    ], \n    \"hitting-pitching\": [\n        \"JJ\"\n    ], \n    \"Kloeckner\": [\n        \"NNP\"\n    ], \n    \"churn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Grooms\": [\n        \"NNP\"\n    ], \n    \"horde\": [\n        \"NN\"\n    ], \n    \"Norwest\": [\n        \"NNP\"\n    ], \n    \"Dismantle\": [\n        \"VB\"\n    ], \n    \"much-criticized\": [\n        \"JJ\"\n    ], \n    \"Tripod\": [\n        \"NNP\"\n    ], \n    \"Pianists\": [\n        \"NNS\"\n    ], \n    \"light-truck\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"chest\": [\n        \"NN\"\n    ], \n    \"chess\": [\n        \"NN\"\n    ], \n    \"streaked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hoods\": [\n        \"NNS\"\n    ], \n    \"automotive-parts\": [\n        \"JJ\"\n    ], \n    \"waist-length\": [\n        \"JJ\"\n    ], \n    \"Hixson\": [\n        \"NNP\"\n    ], \n    \"bye\": [\n        \"VB\"\n    ], \n    \"Pennell\": [\n        \"NNP\"\n    ], \n    \"Cannell\": [\n        \"NNP\"\n    ], \n    \"Traviata\": [\n        \"NNP\"\n    ], \n    \"eight-thirty\": [\n        \"JJ\"\n    ], \n    \"three-inch\": [\n        \"JJ\"\n    ], \n    \"Rosemary\": [\n        \"NNP\"\n    ], \n    \"trusteeship\": [\n        \"NN\"\n    ], \n    \"unknowingly\": [\n        \"RB\"\n    ], \n    \"offersey\": [\n        \"NNS\"\n    ], \n    \"crevice\": [\n        \"NN\"\n    ], \n    \"by-pass\": [\n        \"NN\"\n    ], \n    \"money-laundering\": [\n        \"NN\"\n    ], \n    \"Hillcrest\": [\n        \"NNP\"\n    ], \n    \"Skandia\": [\n        \"NNP\"\n    ], \n    \"Commercants\": [\n        \"NNP\"\n    ], \n    \"clocked\": [\n        \"VBN\"\n    ], \n    \"reprinted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"fungal\": [\n        \"JJ\"\n    ], \n    \"boiler-room\": [\n        \"NN\"\n    ], \n    \"Alper\": [\n        \"NNP\"\n    ], \n    \"retire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tradition-bound\": [\n        \"JJ\"\n    ], \n    \"top-priority\": [\n        \"JJ\"\n    ], \n    \"deftly\": [\n        \"RB\"\n    ], \n    \"treaties\": [\n        \"NNS\"\n    ], \n    \"upfield\": [\n        \"RB\"\n    ], \n    \"uneasiness\": [\n        \"NN\"\n    ], \n    \"discourteous\": [\n        \"JJ\"\n    ], \n    \"stepping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Dalrymple\": [\n        \"NNP\"\n    ], \n    \"Beigel\": [\n        \"NNP\"\n    ], \n    \"marvelously\": [\n        \"RB\"\n    ], \n    \"Bake-off\": [\n        \"NNP\"\n    ], \n    \"Roadway\": [\n        \"NNP\"\n    ], \n    \"Gioconda\": [\n        \"NNP\"\n    ], \n    \"cripple\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"AWE\": [\n        \"NNP\"\n    ], \n    \"hoard\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pigeons\": [\n        \"NNS\"\n    ], \n    \"AWA\": [\n        \"NNP\"\n    ], \n    \"colorful\": [\n        \"JJ\"\n    ], \n    \"Days\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Sifton\": [\n        \"NNP\"\n    ], \n    \"bric-a-brac\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Nodding\": [\n        \"VBG\"\n    ], \n    \"yachtels\": [\n        \"NNS\"\n    ], \n    \"home-improvement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"built-from-kit\": [\n        \"JJ\"\n    ], \n    \"UNIFIED\": [\n        \"JJ\"\n    ], \n    \"bat\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bar\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Segall\": [\n        \"NNP\"\n    ], \n    \"Remphan\": [\n        \"NNP\"\n    ], \n    \"high-yield\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bay\": [\n        \"NN\"\n    ], \n    \"illegitimate\": [\n        \"JJ\"\n    ], \n    \"bag\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"puffery\": [\n        \"NN\"\n    ], \n    \"Yoshi\": [\n        \"NNP\"\n    ], \n    \"seat-for-the-secretary\": [\n        \"JJ\"\n    ], \n    \"feudalism\": [\n        \"NN\"\n    ], \n    \"puffers\": [\n        \"NNS\"\n    ], \n    \"Dargene\": [\n        \"NNP\"\n    ], \n    \"bam\": [\n        \"UH\"\n    ], \n    \"Old-timers\": [\n        \"NNS\"\n    ], \n    \"Corinthian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"open-top\": [\n        \"JJ\"\n    ], \n    \"unworthy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Heusen\": [\n        \"NNP\"\n    ], \n    \"Order-Entry\": [\n        \"NN\"\n    ], \n    \"emergent\": [\n        \"JJ\"\n    ], \n    \"Sydney\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sleeper\": [\n        \"NNP\"\n    ], \n    \"spattered\": [\n        \"VBN\"\n    ], \n    \"mournfully\": [\n        \"RB\"\n    ], \n    \"prototypical\": [\n        \"JJ\"\n    ], \n    \"brazil\": [\n        \"NN\"\n    ], \n    \"fastballs\": [\n        \"NNS\"\n    ], \n    \"inappropriate\": [\n        \"JJ\"\n    ], \n    \"Choice\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mezzogiorno\": [\n        \"NNP\"\n    ], \n    \"longed-for\": [\n        \"JJ\"\n    ], \n    \"disprove\": [\n        \"VB\"\n    ], \n    \"Self-censorship\": [\n        \"NN\"\n    ], \n    \"Evaluations\": [\n        \"NNS\"\n    ], \n    \"Argent\": [\n        \"NNP\"\n    ], \n    \"lethargic\": [\n        \"JJ\"\n    ], \n    \"Massey-Ferguson\": [\n        \"NNP\"\n    ], \n    \"stiffening\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"G-R-H\": [\n        \"NNP\"\n    ], \n    \"Omnibus\": [\n        \"NN\"\n    ], \n    \"wrapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Rudyard\": [\n        \"NNP\"\n    ], \n    \"ignorance\": [\n        \"NN\"\n    ], \n    \"vacuuming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Schall\": [\n        \"NNP\"\n    ], \n    \"stout-hearted\": [\n        \"JJ\"\n    ], \n    \"Yours\": [\n        \"PRP\"\n    ], \n    \"retrovision\": [\n        \"NN\"\n    ], \n    \"House-floor\": [\n        \"JJ\"\n    ], \n    \"B.t.u.\": [\n        \"NN\"\n    ], \n    \"bronzed\": [\n        \"JJ\"\n    ], \n    \"Gunnar\": [\n        \"NNP\"\n    ], \n    \"restarting\": [\n        \"VBG\"\n    ], \n    \"monopolize\": [\n        \"VB\"\n    ], \n    \"bronzes\": [\n        \"NNS\"\n    ], \n    \"Given\": [\n        \"VBN\"\n    ], \n    \"motioning\": [\n        \"VBG\"\n    ], \n    \"exemplary\": [\n        \"JJ\"\n    ], \n    \"Reconsideration\": [\n        \"NN\"\n    ], \n    \"photorealism\": [\n        \"NN\"\n    ], \n    \"Fullerton\": [\n        \"NNP\"\n    ], \n    \"Investcorp\": [\n        \"NNP\"\n    ], \n    \"modems\": [\n        \"NNS\"\n    ], \n    \"inquisitive\": [\n        \"JJ\"\n    ], \n    \"Withuhn\": [\n        \"NNP\"\n    ], \n    \"Forest\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dating\": [\n        \"NNP\"\n    ], \n    \"hoi-polloi\": [\n        \"FW\"\n    ], \n    \"Avco\": [\n        \"NNP\"\n    ], \n    \"co-workers\": [\n        \"NNS\"\n    ], \n    \"commonplaces\": [\n        \"NNS\"\n    ], \n    \"Earle\": [\n        \"NNP\"\n    ], \n    \"Gladys\": [\n        \"NNP\"\n    ], \n    \"Utley\": [\n        \"NNP\"\n    ], \n    \"renegotiation\": [\n        \"NN\"\n    ], \n    \"Exboyfriend\": [\n        \"NN\"\n    ], \n    \"Earls\": [\n        \"NNP\"\n    ], \n    \"Spillane\": [\n        \"NNP\"\n    ], \n    \"Citicorp\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"threw\": [\n        \"VBD\"\n    ], \n    \"Divisions\": [\n        \"NNS\"\n    ], \n    \"Morningstar\": [\n        \"NNP\"\n    ], \n    \"Bertram\": [\n        \"NNP\"\n    ], \n    \"Farberware\": [\n        \"NNP\"\n    ], \n    \"deadliness\": [\n        \"NN\"\n    ], \n    \"Meehan\": [\n        \"NNP\"\n    ], \n    \"ADIA\": [\n        \"NNP\"\n    ], \n    \"Utt\": [\n        \"NNP\"\n    ], \n    \"Aggrieved\": [\n        \"JJ\"\n    ], \n    \"Edmar\": [\n        \"NNP\"\n    ], \n    \"aviation\": [\n        \"NN\"\n    ], \n    \"Winawer\": [\n        \"NNP\"\n    ], \n    \"sly\": [\n        \"JJ\"\n    ], \n    \"remakes\": [\n        \"NNS\"\n    ], \n    \"originate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"suppose\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"murders\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chauvinism\": [\n        \"NN\"\n    ], \n    \"Hovercraft\": [\n        \"NNP\"\n    ], \n    \"guardianship\": [\n        \"NN\"\n    ], \n    \"well-balanced\": [\n        \"JJ\"\n    ], \n    \"paradises\": [\n        \"NNS\"\n    ], \n    \"Z-gyro\": [\n        \"NN\"\n    ], \n    \"sushi\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Conceptions\": [\n        \"NNS\"\n    ], \n    \"Caltech\": [\n        \"NNP\"\n    ], \n    \"homozygous\": [\n        \"JJ\"\n    ], \n    \"redecorated\": [\n        \"VBN\"\n    ], \n    \"expirations\": [\n        \"NNS\"\n    ], \n    \"vindicate\": [\n        \"VB\"\n    ], \n    \"Fiesta\": [\n        \"NNP\"\n    ], \n    \"LaMothe\": [\n        \"NNP\"\n    ], \n    \"who\": [\n        \"WP\", \n        \"NN\"\n    ], \n    \"Seagate\": [\n        \"NNP\"\n    ], \n    \"Scholastic\": [\n        \"NNP\"\n    ], \n    \"potentially\": [\n        \"RB\"\n    ], \n    \"miswritten\": [\n        \"JJ\"\n    ], \n    \"Eisenhower\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"debt-repayment\": [\n        \"NN\"\n    ], \n    \"transvestites\": [\n        \"NNS\"\n    ], \n    \"beef-import\": [\n        \"JJ\"\n    ], \n    \"governors\": [\n        \"NNS\"\n    ], \n    \"Raos\": [\n        \"NNP\"\n    ], \n    \"loincloth\": [\n        \"NN\"\n    ], \n    \"nurturer\": [\n        \"NN\"\n    ], \n    \"pharmacological\": [\n        \"JJ\"\n    ], \n    \"warden\": [\n        \"NN\"\n    ], \n    \"polyproplene\": [\n        \"NN\"\n    ], \n    \"Miltonic\": [\n        \"JJ\"\n    ], \n    \"plastic-pipe\": [\n        \"JJ\"\n    ], \n    \"bailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"electronics-product\": [\n        \"NN\"\n    ], \n    \"RLLY\": [\n        \"NNP\"\n    ], \n    \"emissary\": [\n        \"NN\"\n    ], \n    \"lightheartedly\": [\n        \"RB\"\n    ], \n    \"stimuli\": [\n        \"NNS\"\n    ], \n    \"Shantytowns\": [\n        \"NNS\"\n    ], \n    \"smokes\": [\n        \"VBZ\"\n    ], \n    \"smoker\": [\n        \"NN\"\n    ], \n    \"Rauscher\": [\n        \"NNP\"\n    ], \n    \"hydration\": [\n        \"NN\"\n    ], \n    \"qualities\": [\n        \"NNS\"\n    ], \n    \"anchorman\": [\n        \"NN\"\n    ], \n    \"claims\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"smoked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"sentence\": [\n        \"NN\"\n    ], \n    \"earlier-period\": [\n        \"NN\"\n    ], \n    \"unfair\": [\n        \"JJ\"\n    ], \n    \"stimulations\": [\n        \"NNS\"\n    ], \n    \"Clorox\": [\n        \"NNP\"\n    ], \n    \"Campeau-related\": [\n        \"JJ\"\n    ], \n    \"Wildman\": [\n        \"NNP\"\n    ], \n    \"steel-reinforced\": [\n        \"JJ\"\n    ], \n    \"wafers\": [\n        \"NNS\"\n    ], \n    \"Bellinger\": [\n        \"NNP\"\n    ], \n    \"candidate\": [\n        \"NN\"\n    ], \n    \"infinitely\": [\n        \"RB\"\n    ], \n    \"agile\": [\n        \"JJ\"\n    ], \n    \"nonchlorinated\": [\n        \"JJ\"\n    ], \n    \"Begging\": [\n        \"VBG\"\n    ], \n    \"youngsters\": [\n        \"NNS\"\n    ], \n    \"servicemen\": [\n        \"NNS\"\n    ], \n    \"co-payments\": [\n        \"NNS\"\n    ], \n    \"tax-collecting\": [\n        \"JJ\"\n    ], \n    \"cost-of-living\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Playboy-Show-Biz\": [\n        \"NNP\"\n    ], \n    \"solar-power\": [\n        \"JJ\"\n    ], \n    \"interior\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"whichever\": [\n        \"WDT\"\n    ], \n    \"natal\": [\n        \"JJ\"\n    ], \n    \"Disappointment\": [\n        \"NN\"\n    ], \n    \"Richco\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"counter-moves\": [\n        \"NNS\"\n    ], \n    \"Kamin\": [\n        \"NNP\"\n    ], \n    \"Gersony\": [\n        \"NNP\"\n    ], \n    \"fined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Casualties\": [\n        \"NNS\"\n    ], \n    \"manual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"perfectibility\": [\n        \"NN\"\n    ], \n    \"autocracies\": [\n        \"NNS\"\n    ], \n    \"Giguiere\": [\n        \"NNP\"\n    ], \n    \"Provost\": [\n        \"NNP\"\n    ], \n    \"Lingus\": [\n        \"NNP\"\n    ], \n    \"Weitzen\": [\n        \"NNP\"\n    ], \n    \"CTA\": [\n        \"NNP\"\n    ], \n    \"sparred\": [\n        \"VBD\"\n    ], \n    \"Hajak\": [\n        \"NNP\"\n    ], \n    \"romantically\": [\n        \"RB\"\n    ], \n    \"Hilary\": [\n        \"NNP\"\n    ], \n    \"right-field\": [\n        \"NN\"\n    ], \n    \"Weapons\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"revel\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"readmitted\": [\n        \"VBN\"\n    ], \n    \"Yankus\": [\n        \"NNP\"\n    ], \n    \"Infrared\": [\n        \"JJ\"\n    ], \n    \"Onlookers\": [\n        \"NNS\"\n    ], \n    \"dense\": [\n        \"JJ\"\n    ], \n    \"vaccine-vendor\": [\n        \"JJ\"\n    ], \n    \"Hiring\": [\n        \"VBG\"\n    ], \n    \"unnameable\": [\n        \"JJ\"\n    ], \n    \"outspoken\": [\n        \"JJ\"\n    ], \n    \"Soviet-bloc\": [\n        \"JJ\"\n    ], \n    \"orbited\": [\n        \"VBD\"\n    ], \n    \"electronic-information\": [\n        \"NN\"\n    ], \n    \"tycoons\": [\n        \"NNS\"\n    ], \n    \"loudspeakers\": [\n        \"NNS\"\n    ], \n    \"obsequiousness\": [\n        \"NN\"\n    ], \n    \"grit-impregnated\": [\n        \"JJ\"\n    ], \n    \"translators\": [\n        \"NNS\"\n    ], \n    \"novelties\": [\n        \"NNS\"\n    ], \n    \"blackmail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Forand\": [\n        \"NNP\"\n    ], \n    \"squeamish\": [\n        \"JJ\"\n    ], \n    \"sift\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"great-grandson\": [\n        \"NN\"\n    ], \n    \"McDonalds\": [\n        \"NNP\"\n    ], \n    \"super\": [\n        \"JJ\", \n        \"FW\"\n    ], \n    \"Heatherington\": [\n        \"NNP\"\n    ], \n    \"impersonates\": [\n        \"VBZ\"\n    ], \n    \"Retired\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Retiree\": [\n        \"NN\"\n    ], \n    \"commie\": [\n        \"JJ\"\n    ], \n    \"alignments\": [\n        \"NNS\"\n    ], \n    \"Abstract\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"beta\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hearing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Filofaxes\": [\n        \"NNPS\"\n    ], \n    \"cadre\": [\n        \"NN\"\n    ], \n    \"impersonated\": [\n        \"VBN\"\n    ], \n    \"Cameron\": [\n        \"NNP\"\n    ], \n    \"commit\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Lovers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"sheets\": [\n        \"NNS\"\n    ], \n    \"money-handling\": [\n        \"NN\"\n    ], \n    \"litmus\": [\n        \"NN\"\n    ], \n    \"parsing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"canny\": [\n        \"JJ\"\n    ], \n    \"doctrine\": [\n        \"NN\"\n    ], \n    \"Vault\": [\n        \"NNP\"\n    ], \n    \"cascades\": [\n        \"VBZ\"\n    ], \n    \"Tee-wah\": [\n        \"NNP\"\n    ], \n    \"Stay\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"fifty-dollar\": [\n        \"JJ\"\n    ], \n    \"non-auto\": [\n        \"JJ\"\n    ], \n    \"Nutrition\": [\n        \"NNP\"\n    ], \n    \"Bostian\": [\n        \"NNP\"\n    ], \n    \"Cultor\": [\n        \"NNP\"\n    ], \n    \"effaces\": [\n        \"VBZ\"\n    ], \n    \"amazingly\": [\n        \"RB\"\n    ], \n    \"Castros\": [\n        \"NNPS\"\n    ], \n    \"press-release\": [\n        \"NN\"\n    ], \n    \"Mocking\": [\n        \"NNP\"\n    ], \n    \"anti-freeze\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sutermeister\": [\n        \"NNP\"\n    ], \n    \"mortgagebacked\": [\n        \"JJ\"\n    ], \n    \"at-bat\": [\n        \"NN\"\n    ], \n    \"S.D\": [\n        \"NNP\"\n    ], \n    \"faring\": [\n        \"VBG\"\n    ], \n    \"DNA\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"S.C\": [\n        \"NNP\"\n    ], \n    \"offering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"forks\": [\n        \"NNS\"\n    ], \n    \"Dade\": [\n        \"NNP\"\n    ], \n    \"ulcers\": [\n        \"NNS\"\n    ], \n    \"Dada\": [\n        \"NNP\"\n    ], \n    \"Extrapolation\": [\n        \"NN\"\n    ], \n    \"solar-corpuscular-radiation\": [\n        \"NN\"\n    ], \n    \"synonym\": [\n        \"NN\"\n    ], \n    \"I.C.H.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Z\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"atrocities\": [\n        \"NNS\"\n    ], \n    \"Dads\": [\n        \"NNP\"\n    ], \n    \"builds\": [\n        \"VBZ\"\n    ], \n    \"emboldened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"staged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Anti-Ballistic-Missile\": [\n        \"JJ\"\n    ], \n    \"AFTERSHOCKS\": [\n        \"NNS\"\n    ], \n    \"Privatize\": [\n        \"VB\"\n    ], \n    \"Wister\": [\n        \"NNP\"\n    ], \n    \"Melrose\": [\n        \"NNP\"\n    ], \n    \"stager\": [\n        \"NN\"\n    ], \n    \"stages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"diagnose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unenlightened\": [\n        \"JJ\"\n    ], \n    \"toss\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"dites\": [\n        \"FW\"\n    ], \n    \"Gerber\": [\n        \"NNP\"\n    ], \n    \"megatons\": [\n        \"NNS\"\n    ], \n    \"marksman\": [\n        \"NN\"\n    ], \n    \"floating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Mertle\": [\n        \"NNP\"\n    ], \n    \"triamcinolone\": [\n        \"NN\"\n    ], \n    \"Pirie\": [\n        \"NNP\"\n    ], \n    \"wonder-working\": [\n        \"JJ\"\n    ], \n    \"generally\": [\n        \"RB\"\n    ], \n    \"handed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bodily\": [\n        \"NNP\"\n    ], \n    \"oppose\": [\n        \"VB\", \n        \"NNPS\", \n        \"VBP\"\n    ], \n    \"Advisor\": [\n        \"NNP\"\n    ], \n    \"hander\": [\n        \"NN\"\n    ], \n    \"tardy\": [\n        \"JJ\"\n    ], \n    \"vitamin-and-iron\": [\n        \"JJ\"\n    ], \n    \"ba-a-a\": [\n        \"UH\"\n    ], \n    \"futures-trading\": [\n        \"JJ\"\n    ], \n    \"MacArthur-Helen\": [\n        \"NNP\"\n    ], \n    \"Tietmeyer\": [\n        \"NNP\"\n    ], \n    \"Arnold\": [\n        \"NNP\"\n    ], \n    \"trepidation\": [\n        \"NN\"\n    ], \n    \"insurrections\": [\n        \"NNS\"\n    ], \n    \"DeBeauvoir\": [\n        \"NNP\"\n    ], \n    \"identity-management\": [\n        \"NN\"\n    ], \n    \"stoke\": [\n        \"VB\"\n    ], \n    \"pizzas\": [\n        \"NNS\"\n    ], \n    \"Institutue\": [\n        \"NNP\"\n    ], \n    \"plus-one\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Constant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"apology\": [\n        \"NN\"\n    ], \n    \"luckier\": [\n        \"JJR\"\n    ], \n    \"almanac\": [\n        \"NN\"\n    ], \n    \"more-favored\": [\n        \"JJ\"\n    ], \n    \"TROs\": [\n        \"NNS\"\n    ], \n    \"parcels\": [\n        \"NNS\"\n    ], \n    \"Anglo-French\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"themed\": [\n        \"VBN\"\n    ], \n    \"recalculation\": [\n        \"NN\"\n    ], \n    \"themes\": [\n        \"NNS\"\n    ], \n    \"yapping\": [\n        \"VBG\"\n    ], \n    \"domestic-airline\": [\n        \"NN\"\n    ], \n    \"Louisiane\": [\n        \"NNP\"\n    ], \n    \"parasympathetic\": [\n        \"JJ\"\n    ], \n    \"Milbank\": [\n        \"NNP\"\n    ], \n    \"Louisiana\": [\n        \"NNP\"\n    ], \n    \"Czar\": [\n        \"NNP\"\n    ], \n    \"semiconductor-depreciation\": [\n        \"JJ\"\n    ], \n    \"hidebound\": [\n        \"JJ\"\n    ], \n    \"suicide\": [\n        \"NN\"\n    ], \n    \"praises\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Philharmonic\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"polyunsaturated\": [\n        \"JJ\"\n    ], \n    \"scribble\": [\n        \"VB\"\n    ], \n    \"technique\": [\n        \"NN\"\n    ], \n    \"bordered\": [\n        \"VBN\"\n    ], \n    \"finally\": [\n        \"RB\"\n    ], \n    \"praised\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"emasculation\": [\n        \"NN\"\n    ], \n    \"Kerschner\": [\n        \"NNP\"\n    ], \n    \"Barry\": [\n        \"NNP\"\n    ], \n    \"DEPARTMENT\": [\n        \"NNP\"\n    ], \n    \"Temple-Inland\": [\n        \"NNP\"\n    ], \n    \"daintily\": [\n        \"RB\"\n    ], \n    \"Nomura\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Saouma\": [\n        \"NNP\"\n    ], \n    \"Bruser\": [\n        \"NNP\"\n    ], \n    \"gambit\": [\n        \"NN\"\n    ], \n    \"FIT\": [\n        \"NNP\"\n    ], \n    \"patrolman\": [\n        \"NN\"\n    ], \n    \"Ironpants\": [\n        \"NNP\"\n    ], \n    \"figment\": [\n        \"NN\"\n    ], \n    \"bogeyed\": [\n        \"VBD\"\n    ], \n    \"sappy\": [\n        \"JJ\"\n    ], \n    \"FIG\": [\n        \"NNP\"\n    ], \n    \"uneventful\": [\n        \"JJ\"\n    ], \n    \"airfare\": [\n        \"NN\"\n    ], \n    \"word\": [\n        \"NN\"\n    ], \n    \"suppressors\": [\n        \"NNS\"\n    ], \n    \"Playskool\": [\n        \"NNP\"\n    ], \n    \"Affirmed\": [\n        \"NNP\"\n    ], \n    \"wore\": [\n        \"VBD\"\n    ], \n    \"dim\": [\n        \"JJ\"\n    ], \n    \"din\": [\n        \"NN\"\n    ], \n    \"Statements\": [\n        \"NNS\"\n    ], \n    \"nectar\": [\n        \"NN\"\n    ], \n    \"did\": [\n        \"VBD\"\n    ], \n    \"die\": [\n        \"VB\", \n        \"VBP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"dig\": [\n        \"VB\", \n        \"FW\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"reactivity\": [\n        \"NN\"\n    ], \n    \"specials\": [\n        \"NNS\"\n    ], \n    \"contempt-of-court\": [\n        \"NN\"\n    ], \n    \"moistening\": [\n        \"VBG\"\n    ], \n    \"dip\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"self-righteousness\": [\n        \"NN\"\n    ], \n    \"drug-pushing\": [\n        \"JJ\"\n    ], \n    \"Stoeckel\": [\n        \"NNP\"\n    ], \n    \"villa\": [\n        \"NN\"\n    ], \n    \"eclipse\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Lawsuits\": [\n        \"NNS\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"maximization\": [\n        \"NN\"\n    ], \n    \"seven-inch\": [\n        \"JJ\"\n    ], \n    \"debt-futures\": [\n        \"NNS\"\n    ], \n    \"threshold\": [\n        \"NN\"\n    ], \n    \"Buffton\": [\n        \"NNP\"\n    ], \n    \"deregulaton\": [\n        \"NN\"\n    ], \n    \"bacterial\": [\n        \"JJ\"\n    ], \n    \"Weyerhaeuser\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"pen-and-ink\": [\n        \"JJ\"\n    ], \n    \"gayety\": [\n        \"NN\"\n    ], \n    \"Donofrio\": [\n        \"NNP\"\n    ], \n    \"high-tailed\": [\n        \"VBD\"\n    ], \n    \"Liberal-Radical\": [\n        \"NNP\"\n    ], \n    \"takin\": [\n        \"VBG\"\n    ], \n    \"favour\": [\n        \"NN\"\n    ], \n    \"vandalized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"well-fed\": [\n        \"JJ\"\n    ], \n    \"incidents\": [\n        \"NNS\"\n    ], \n    \"dishonestly\": [\n        \"RB\"\n    ], \n    \"proclaiming\": [\n        \"VBG\"\n    ], \n    \"extemporize\": [\n        \"VB\"\n    ], \n    \"wail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"involuntarily\": [\n        \"RB\"\n    ], \n    \"Freeberg\": [\n        \"NNP\"\n    ], \n    \"Rabat\": [\n        \"NNP\"\n    ], \n    \"monied\": [\n        \"JJ\"\n    ], \n    \"signalizes\": [\n        \"VBZ\"\n    ], \n    \"Stalin\": [\n        \"NNP\"\n    ], \n    \"decipher\": [\n        \"VB\"\n    ], \n    \"monies\": [\n        \"NNS\"\n    ], \n    \"conversant\": [\n        \"NN\"\n    ], \n    \"Indosuez\": [\n        \"NNP\"\n    ], \n    \"alto\": [\n        \"NN\"\n    ], \n    \"leather-men\": [\n        \"NNS\"\n    ], \n    \"badgered\": [\n        \"VBD\"\n    ], \n    \"institute\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tellier\": [\n        \"NNP\"\n    ], \n    \"dominantly\": [\n        \"RB\"\n    ], \n    \"thrashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"convoys\": [\n        \"NNS\"\n    ], \n    \"One-fourth\": [\n        \"NN\"\n    ], \n    \"CLOROX\": [\n        \"NNP\"\n    ], \n    \"finer\": [\n        \"JJR\"\n    ], \n    \"Luxembourg-based\": [\n        \"JJ\"\n    ], \n    \"nylon\": [\n        \"NN\"\n    ], \n    \"all-out\": [\n        \"JJ\"\n    ], \n    \"hither\": [\n        \"RB\"\n    ], \n    \"Buren\": [\n        \"NNP\"\n    ], \n    \"careworn\": [\n        \"JJ\"\n    ], \n    \"Marcius\": [\n        \"NNP\"\n    ], \n    \"Purchasing\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Donato\": [\n        \"NNP\"\n    ], \n    \"subverted\": [\n        \"VBN\"\n    ], \n    \"spring-early\": [\n        \"JJ\"\n    ], \n    \"Farming\": [\n        \"VBG\"\n    ], \n    \"milliliter\": [\n        \"NN\"\n    ], \n    \"Ratto\": [\n        \"NNP\"\n    ], \n    \"everybody\": [\n        \"NN\"\n    ], \n    \"ungainly\": [\n        \"JJ\"\n    ], \n    \"poet-painter\": [\n        \"NN\"\n    ], \n    \"five-years\": [\n        \"NNS\"\n    ], \n    \"additive\": [\n        \"NN\"\n    ], \n    \"discus\": [\n        \"NN\"\n    ], \n    \"sharper\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"spirituality\": [\n        \"NN\"\n    ], \n    \"median-family\": [\n        \"NN\"\n    ], \n    \"commutator-like\": [\n        \"JJ\"\n    ], \n    \"Lunch\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"touched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Awards\": [\n        \"NNP\"\n    ], \n    \"flaunting\": [\n        \"VBG\"\n    ], \n    \"craftsman-in-residence\": [\n        \"JJ\"\n    ], \n    \"sharpen\": [\n        \"VB\"\n    ], \n    \"unconfirmed\": [\n        \"JJ\"\n    ], \n    \"cited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Freres\": [\n        \"NNP\"\n    ], \n    \"Parsippany\": [\n        \"NNP\"\n    ], \n    \"fast-moving\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"ageless\": [\n        \"JJ\"\n    ], \n    \"Blackstock\": [\n        \"NNP\"\n    ], \n    \"downtown\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"downing\": [\n        \"VBG\"\n    ], \n    \"fund-selling\": [\n        \"JJ\"\n    ], \n    \"reinvestigating\": [\n        \"VBG\"\n    ], \n    \"sonobuoy\": [\n        \"NN\"\n    ], \n    \"Duke\": [\n        \"NNP\"\n    ], \n    \"Nordyke\": [\n        \"NNP\"\n    ], \n    \"noninterest\": [\n        \"JJ\"\n    ], \n    \"avoiding\": [\n        \"VBG\"\n    ], \n    \"souk\": [\n        \"NN\"\n    ], \n    \"flu\": [\n        \"NN\"\n    ], \n    \"soul\": [\n        \"NN\"\n    ], \n    \"Pacific\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"soup\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sour\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Cathcart\": [\n        \"NNP\"\n    ], \n    \"Ailing\": [\n        \"VBG\"\n    ], \n    \"arrive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"small-time\": [\n        \"JJ\"\n    ], \n    \"predict\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Digital\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Backhaus\": [\n        \"NNP\"\n    ], \n    \"Westmore\": [\n        \"NNP\"\n    ], \n    \"drawer\": [\n        \"NN\"\n    ], \n    \"shorting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Biedermann\": [\n        \"NNP\"\n    ], \n    \"Heylin\": [\n        \"NNP\"\n    ], \n    \"hand-me-down\": [\n        \"JJ\"\n    ], \n    \"yokels\": [\n        \"NNS\"\n    ], \n    \"harking\": [\n        \"VBG\"\n    ], \n    \"self-perpetuating\": [\n        \"JJ\"\n    ], \n    \"get\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"kraft-pulp\": [\n        \"JJ\"\n    ], \n    \"Bleckley\": [\n        \"NNP\"\n    ], \n    \"Eppel\": [\n        \"NNP\"\n    ], \n    \"strikingly\": [\n        \"RB\"\n    ], \n    \"appraisingly\": [\n        \"RB\"\n    ], \n    \"nighters\": [\n        \"NNS\"\n    ], \n    \"government-assisted\": [\n        \"JJ\"\n    ], \n    \"SOFT\": [\n        \"JJ\"\n    ], \n    \"Muldoon\": [\n        \"NNP\"\n    ], \n    \"rivaled\": [\n        \"VBD\"\n    ], \n    \"inputs\": [\n        \"NNS\"\n    ], \n    \"sheet-rolling\": [\n        \"VBG\"\n    ], \n    \"critics\": [\n        \"NNS\"\n    ], \n    \"Performing\": [\n        \"VBG\"\n    ], \n    \"Tri-Star\": [\n        \"NNP\"\n    ], \n    \"vivacious\": [\n        \"JJ\"\n    ], \n    \"hedonism\": [\n        \"NN\"\n    ], \n    \"Benedetti\": [\n        \"NNP\"\n    ], \n    \"Benedetto\": [\n        \"NNP\"\n    ], \n    \"pressuring\": [\n        \"VBG\"\n    ], \n    \"weeding\": [\n        \"VBG\"\n    ], \n    \"isothermally\": [\n        \"RB\"\n    ], \n    \"highroad\": [\n        \"NN\"\n    ], \n    \"Ede\": [\n        \"NNP\"\n    ], \n    \"borrowing\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"avant\": [\n        \"FW\"\n    ], \n    \"Leslie\": [\n        \"NNP\"\n    ], \n    \"Edw\": [\n        \"NNP\"\n    ], \n    \"flat-out\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"halos\": [\n        \"NNS\"\n    ], \n    \"Euclid\": [\n        \"NNP\"\n    ], \n    \"cross-fertilization\": [\n        \"NN\"\n    ], \n    \"unconsciously\": [\n        \"RB\"\n    ], \n    \"Litta\": [\n        \"NNP\"\n    ], \n    \"straightening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"gradual\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"argues\": [\n        \"VBZ\"\n    ], \n    \"male-dominated\": [\n        \"JJ\"\n    ], \n    \"Morgart\": [\n        \"NNP\"\n    ], \n    \"argued\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"uninominal\": [\n        \"JJ\"\n    ], \n    \"single-level\": [\n        \"JJ\"\n    ], \n    \"trend-following\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"thank\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mais\": [\n        \"FW\"\n    ], \n    \"prisoner-made\": [\n        \"JJ\"\n    ], \n    \"Moniuszko\": [\n        \"NNP\"\n    ], \n    \"Cluett\": [\n        \"NNP\"\n    ], \n    \"Kamm\": [\n        \"NNP\"\n    ], \n    \"gen\": [\n        \"NN\"\n    ], \n    \"maid\": [\n        \"NN\"\n    ], \n    \"coaching\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Kamp\": [\n        \"NNP\"\n    ], \n    \"gem\": [\n        \"NN\"\n    ], \n    \"Esopus\": [\n        \"NNP\"\n    ], \n    \"mail\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"main\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nouvelle-Heloise\": [\n        \"NNP\"\n    ], \n    \"Hodgson\": [\n        \"NNP\"\n    ], \n    \"truest\": [\n        \"JJS\"\n    ], \n    \"machikin\": [\n        \"FW\"\n    ], \n    \"views\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"impulses\": [\n        \"NNS\"\n    ], \n    \"enclave\": [\n        \"NN\"\n    ], \n    \"satellite-assembly\": [\n        \"NN\"\n    ], \n    \"society-measured\": [\n        \"VBN\"\n    ], \n    \"Huntley-Brinkley\": [\n        \"NNP\"\n    ], \n    \"cooling-heating\": [\n        \"JJ\"\n    ], \n    \"Closing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Marconi\": [\n        \"NNP\"\n    ], \n    \"unpredictability\": [\n        \"NN\"\n    ], \n    \"possess\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"outweigh\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"battlefields\": [\n        \"NNS\"\n    ], \n    \"in-fighting\": [\n        \"NN\"\n    ], \n    \"Steelmaking\": [\n        \"NN\"\n    ], \n    \"directories\": [\n        \"NNS\"\n    ], \n    \"proteins\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"yet-unnamed\": [\n        \"JJ\"\n    ], \n    \"Anheuser\": [\n        \"NNP\"\n    ], \n    \"olim\": [\n        \"FW\"\n    ], \n    \"pharmacies\": [\n        \"NNS\"\n    ], \n    \"redraw\": [\n        \"VB\"\n    ], \n    \"Energies\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Dinerstein\": [\n        \"NNP\"\n    ], \n    \"abnormal\": [\n        \"JJ\"\n    ], \n    \"recitative\": [\n        \"NN\"\n    ], \n    \"inhomogeneous\": [\n        \"JJ\"\n    ], \n    \"gird\": [\n        \"VB\"\n    ], \n    \"sifted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"giveth\": [\n        \"VBZ\", \n        \"VB\"\n    ], \n    \"girl\": [\n        \"NN\"\n    ], \n    \"living\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"stock-taking\": [\n        \"NN\"\n    ], \n    \"VICTIMS\": [\n        \"NNS\"\n    ], \n    \"Mileage\": [\n        \"NN\"\n    ], \n    \"mid-1940s\": [\n        \"NNS\"\n    ], \n    \"Pederson\": [\n        \"NNP\"\n    ], \n    \"lak\": [\n        \"IN\"\n    ], \n    \"refurbishment\": [\n        \"NN\"\n    ], \n    \"lad\": [\n        \"NN\"\n    ], \n    \"undertone\": [\n        \"NN\"\n    ], \n    \"tidbits\": [\n        \"NNS\"\n    ], \n    \"metaphysic\": [\n        \"NN\"\n    ], \n    \"canal\": [\n        \"NN\"\n    ], \n    \"Tokyo-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Theater\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dummkopf\": [\n        \"NN\"\n    ], \n    \"kedgeree\": [\n        \"NN\"\n    ], \n    \"pumping\": [\n        \"VBG\"\n    ], \n    \"spies\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"spiel\": [\n        \"NN\"\n    ], \n    \"BONUSES\": [\n        \"NNS\"\n    ], \n    \"miscreants\": [\n        \"NNS\"\n    ], \n    \"fuller\": [\n        \"JJR\"\n    ], \n    \"spied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"spend-now\": [\n        \"JJ\"\n    ], \n    \"Sigma\": [\n        \"NNP\"\n    ], \n    \"Options\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"weather-resistant\": [\n        \"JJ\"\n    ], \n    \"cross-trading\": [\n        \"NN\"\n    ], \n    \"boastfully\": [\n        \"RB\"\n    ], \n    \"pepperoni\": [\n        \"NNS\"\n    ], \n    \"desultory\": [\n        \"JJ\"\n    ], \n    \"Chemische\": [\n        \"NNP\"\n    ], \n    \"substrates\": [\n        \"NNS\"\n    ], \n    \"p.m.-midnight\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Viyella\": [\n        \"NNP\"\n    ], \n    \"trading-account\": [\n        \"JJ\"\n    ], \n    \"Probable\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"discharges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Sayegh\": [\n        \"NNP\"\n    ], \n    \"thiihng\": [\n        \"NN\"\n    ], \n    \"all-America\": [\n        \"JJ\"\n    ], \n    \"permissibility\": [\n        \"NN\"\n    ], \n    \"unthreatening\": [\n        \"JJ\"\n    ], \n    \"Probably\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Pirate\": [\n        \"NNP\"\n    ], \n    \"discharged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"public-TV\": [\n        \"NN\"\n    ], \n    \"seersucker\": [\n        \"NN\"\n    ], \n    \"thoughtless\": [\n        \"JJ\"\n    ], \n    \"lap\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"slept\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"seas\": [\n        \"NNS\"\n    ], \n    \"CalTech\": [\n        \"NNP\"\n    ], \n    \"Carlos\": [\n        \"NNP\"\n    ], \n    \"daunt\": [\n        \"VB\"\n    ], \n    \"Janney\": [\n        \"NNP\"\n    ], \n    \"Bundy\": [\n        \"NNP\"\n    ], \n    \"Thurman\": [\n        \"NNP\"\n    ], \n    \"Bhojani\": [\n        \"NNP\"\n    ], \n    \"inflation-free\": [\n        \"JJ\"\n    ], \n    \"Subscribers\": [\n        \"NNS\"\n    ], \n    \"FRE\": [\n        \"NNP\"\n    ], \n    \"TUMBLE\": [\n        \"JJ\"\n    ], \n    \"Servifilm\": [\n        \"NNP\"\n    ], \n    \"non-event\": [\n        \"NN\"\n    ], \n    \"neutralists\": [\n        \"NNS\"\n    ], \n    \"blacklist\": [\n        \"VB\"\n    ], \n    \"Loughlin\": [\n        \"NNP\"\n    ], \n    \"Miles\": [\n        \"NNP\"\n    ], \n    \"formaldehyde\": [\n        \"NN\"\n    ], \n    \"Eslinger\": [\n        \"NNP\"\n    ], \n    \"emigrating\": [\n        \"VBG\"\n    ], \n    \"bio-analytical\": [\n        \"JJ\"\n    ], \n    \"knackwurst\": [\n        \"NN\"\n    ], \n    \"lugs\": [\n        \"NNS\"\n    ], \n    \"live-hauled\": [\n        \"VBD\"\n    ], \n    \"dissenters\": [\n        \"NNS\"\n    ], \n    \"Braeuer\": [\n        \"NNP\"\n    ], \n    \"Canyon\": [\n        \"NNP\"\n    ], \n    \"protected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"fluoresces\": [\n        \"VBZ\"\n    ], \n    \"center-aisle\": [\n        \"NN\"\n    ], \n    \"Walsifer\": [\n        \"NNP\"\n    ], \n    \"DO\": [\n        \"VB\"\n    ], \n    \"Urbanski\": [\n        \"NNP\"\n    ], \n    \"DJ\": [\n        \"NNP\"\n    ], \n    \"anti-prostitution\": [\n        \"JJ\"\n    ], \n    \"mundane\": [\n        \"JJ\"\n    ], \n    \"DG\": [\n        \"NNP\"\n    ], \n    \"improbability\": [\n        \"NN\"\n    ], \n    \"DE\": [\n        \"NNP\"\n    ], \n    \"DC\": [\n        \"NN\"\n    ], \n    \"Chace\": [\n        \"NNP\"\n    ], \n    \"winding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Regulation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"north-bound\": [\n        \"JJ\"\n    ], \n    \"DX\": [\n        \"NNP\"\n    ], \n    \"stigma\": [\n        \"NN\"\n    ], \n    \"voiced\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"DU\": [\n        \"NNP\"\n    ], \n    \"guidewheels\": [\n        \"NNS\"\n    ], \n    \"Do\": [\n        \"VBP\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"pre-assault\": [\n        \"JJ\"\n    ], \n    \"jammed-together\": [\n        \"JJ\"\n    ], \n    \"Di\": [\n        \"NNP\"\n    ], \n    \"unheeding\": [\n        \"VBG\"\n    ], \n    \"insoluble\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rhett\": [\n        \"NNP\"\n    ], \n    \"answering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"wetly\": [\n        \"RB\"\n    ], \n    \"Da\": [\n        \"NNP\"\n    ], \n    \"Undaunted\": [\n        \"JJ\"\n    ], \n    \"Kokubu\": [\n        \"NNP\"\n    ], \n    \"callously\": [\n        \"RB\"\n    ], \n    \"current-generation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Du\": [\n        \"NNP\"\n    ], \n    \"Dr\": [\n        \"NNP\"\n    ], \n    \"Ds\": [\n        \"NNS\"\n    ], \n    \"channel\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Legislature\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subtilis\": [\n        \"NNS\"\n    ], \n    \"colorin\": [\n        \"NN\"\n    ], \n    \"trace\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"permeates\": [\n        \"VBZ\"\n    ], \n    \"Healthy\": [\n        \"JJ\"\n    ], \n    \"succumbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tanabe\": [\n        \"NNP\"\n    ], \n    \"Gaunt\": [\n        \"JJ\"\n    ], \n    \"Spirited\": [\n        \"JJ\"\n    ], \n    \"satisfying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Ferranti\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"PRISON-SHOP\": [\n        \"NNP\"\n    ], \n    \"Panamanians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"D.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"highboy\": [\n        \"NN\"\n    ], \n    \"naturopath\": [\n        \"NN\"\n    ], \n    \"Frankie\": [\n        \"NNP\"\n    ], \n    \"surprising\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Ms.\": [\n        \"NNP\"\n    ], \n    \"Palmingiano\": [\n        \"NNP\"\n    ], \n    \"gracefully\": [\n        \"RB\"\n    ], \n    \"Suffolk\": [\n        \"NNP\"\n    ], \n    \"Certs\": [\n        \"NNP\"\n    ], \n    \"matryoshka\": [\n        \"FW\"\n    ], \n    \"D2\": [\n        \"NN\"\n    ], \n    \"lexicon\": [\n        \"NN\"\n    ], \n    \"certification\": [\n        \"NN\"\n    ], \n    \"reassessing\": [\n        \"VBG\"\n    ], \n    \"non-patent\": [\n        \"JJ\"\n    ], \n    \"Ingo\": [\n        \"NNP\"\n    ], \n    \"sectorial\": [\n        \"JJ\"\n    ], \n    \"Province\": [\n        \"NNP\"\n    ], \n    \"BioVentures\": [\n        \"NNP\"\n    ], \n    \"standard-setting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Biologique\": [\n        \"NNP\"\n    ], \n    \"Rozelle\": [\n        \"NNP\"\n    ], \n    \"impunity\": [\n        \"NN\"\n    ], \n    \"norethandrolone\": [\n        \"NN\"\n    ], \n    \"Rozella\": [\n        \"NNP\"\n    ], \n    \"law-and-order\": [\n        \"NN\"\n    ], \n    \"disconcerting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"M.Ed\": [\n        \"NNP\"\n    ], \n    \"Holliger\": [\n        \"NNP\"\n    ], \n    \"ranking\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kappa\": [\n        \"NNP\"\n    ], \n    \"muni\": [\n        \"NN\", \n        \"JJ\", \n        \"NNS\"\n    ], \n    \"pseudo-happiness\": [\n        \"NN\"\n    ], \n    \"hostage\": [\n        \"NN\"\n    ], \n    \"Menton\": [\n        \"NNP\"\n    ], \n    \"designated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"uninvolved\": [\n        \"JJ\"\n    ], \n    \"Krane\": [\n        \"NNP\"\n    ], \n    \"relyriced\": [\n        \"VBD\"\n    ], \n    \"Mentor\": [\n        \"NNP\"\n    ], \n    \"distinctly\": [\n        \"RB\"\n    ], \n    \"designates\": [\n        \"VBZ\"\n    ], \n    \"Filipinos\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"beseech\": [\n        \"VBP\"\n    ], \n    \"Methods\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"keyboards\": [\n        \"NNS\"\n    ], \n    \"Helionetics\": [\n        \"NNP\"\n    ], \n    \"busiest\": [\n        \"JJS\"\n    ], \n    \"median\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Shintoism\": [\n        \"NNP\"\n    ], \n    \"diversities\": [\n        \"NNS\"\n    ], \n    \"M.E.\": [\n        \"NNP\"\n    ], \n    \"threading\": [\n        \"VBG\"\n    ], \n    \"stupid\": [\n        \"JJ\"\n    ], \n    \"traffic-control\": [\n        \"NN\"\n    ], \n    \"employer-offered\": [\n        \"JJ\"\n    ], \n    \"home-and-home\": [\n        \"JJ\"\n    ], \n    \"detailsman\": [\n        \"NN\"\n    ], \n    \"Subgroups\": [\n        \"NNS\"\n    ], \n    \"able-bodied\": [\n        \"JJ\"\n    ], \n    \"crushes\": [\n        \"VBZ\"\n    ], \n    \"Storage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"derailments\": [\n        \"NNS\"\n    ], \n    \"anti-secrecy\": [\n        \"JJ\"\n    ], \n    \"Inventory\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Montrachet\": [\n        \"NNP\"\n    ], \n    \"dialectic\": [\n        \"NN\"\n    ], \n    \"Ky.-based\": [\n        \"JJ\"\n    ], \n    \"eyepiece\": [\n        \"NN\"\n    ], \n    \"COMMUNISTS\": [\n        \"NNS\"\n    ], \n    \"gratifying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"trijets\": [\n        \"NNS\"\n    ], \n    \"Jindo\": [\n        \"NNP\"\n    ], \n    \"Fascist\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wing-tip\": [\n        \"JJ\"\n    ], \n    \"forecast\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Hours\": [\n        \"NNS\"\n    ], \n    \"Fascism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"international-payments\": [\n        \"NNS\"\n    ], \n    \"Selective\": [\n        \"JJ\"\n    ], \n    \"geometric\": [\n        \"JJ\"\n    ], \n    \"saw-horse\": [\n        \"NN\"\n    ], \n    \"dried\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"run-ups\": [\n        \"NNS\"\n    ], \n    \"Sans\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Northrup\": [\n        \"NNP\"\n    ], \n    \"tacit\": [\n        \"JJ\"\n    ], \n    \"signaled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"condensing\": [\n        \"VBG\"\n    ], \n    \"Unitarianism\": [\n        \"NNP\"\n    ], \n    \"Grounds\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"ternational\": [\n        \"JJ\"\n    ], \n    \"TriStar\": [\n        \"NNP\"\n    ], \n    \"remake\": [\n        \"VB\"\n    ], \n    \"delirium\": [\n        \"NN\"\n    ], \n    \"Michelson\": [\n        \"NNP\"\n    ], \n    \"contractually\": [\n        \"RB\"\n    ], \n    \"stretches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"SEATO\": [\n        \"NNP\"\n    ], \n    \"despaired\": [\n        \"VBD\"\n    ], \n    \"nest-egg\": [\n        \"NN\"\n    ], \n    \"refocused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Poore\": [\n        \"NNP\"\n    ], \n    \"Calor\": [\n        \"NNP\"\n    ], \n    \"innovations\": [\n        \"NNS\"\n    ], \n    \"clambered\": [\n        \"VBD\"\n    ], \n    \"stretched\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"disliking\": [\n        \"VBG\"\n    ], \n    \"neutrino\": [\n        \"NN\"\n    ], \n    \"westwards\": [\n        \"NNS\"\n    ], \n    \"refocuses\": [\n        \"VBZ\", \n        \"VB\"\n    ], \n    \"laudable\": [\n        \"JJ\"\n    ], \n    \"anyplace\": [\n        \"RB\"\n    ], \n    \"mare\": [\n        \"NN\"\n    ], \n    \"unusual\": [\n        \"JJ\"\n    ], \n    \"Calif.\": [\n        \"NNP\"\n    ], \n    \"underworld\": [\n        \"NN\"\n    ], \n    \"Ochsenschlager\": [\n        \"NNP\"\n    ], \n    \"non-paper\": [\n        \"NN\"\n    ], \n    \"mark\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"mart\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Blasphemous\": [\n        \"JJ\"\n    ], \n    \"quackery\": [\n        \"NN\"\n    ], \n    \"mars\": [\n        \"VBZ\"\n    ], \n    \"Modeling\": [\n        \"NNP\"\n    ], \n    \"shopping\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"measles\": [\n        \"NN\"\n    ], \n    \"Reversing\": [\n        \"VBG\"\n    ], \n    \"SECOND\": [\n        \"JJ\"\n    ], \n    \"Jungle\": [\n        \"NNP\"\n    ], \n    \"Colcord\": [\n        \"NNP\"\n    ], \n    \"griping\": [\n        \"NN\"\n    ], \n    \"Yugoslavs\": [\n        \"NNS\"\n    ], \n    \"bar-code\": [\n        \"JJ\"\n    ], \n    \"slumber\": [\n        \"NN\"\n    ], \n    \"profiles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Yardumian\": [\n        \"NNP\"\n    ], \n    \"Rumor\": [\n        \"NN\"\n    ], \n    \"McCann-Erikson\": [\n        \"NNP\"\n    ], \n    \"bemoaned\": [\n        \"VBD\"\n    ], \n    \"profiled\": [\n        \"VBN\"\n    ], \n    \"philosophies\": [\n        \"NNS\"\n    ], \n    \"pushin\": [\n        \"NN\"\n    ], \n    \"Venice\": [\n        \"NNP\"\n    ], \n    \"interest-bearing\": [\n        \"JJ\"\n    ], \n    \"Toshio\": [\n        \"NNP\"\n    ], \n    \"unpolitical\": [\n        \"JJ\"\n    ], \n    \"Sung-Shan\": [\n        \"NNP\"\n    ], \n    \"rammed\": [\n        \"VBD\"\n    ], \n    \"Ostriches\": [\n        \"NNS\"\n    ], \n    \"H.F.\": [\n        \"NNP\"\n    ], \n    \"third-floor\": [\n        \"JJ\"\n    ], \n    \"poll-takers\": [\n        \"NNS\"\n    ], \n    \"scavenger\": [\n        \"NN\"\n    ], \n    \"movements\": [\n        \"NNS\"\n    ], \n    \"bags\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"different\": [\n        \"JJ\"\n    ], \n    \"absences\": [\n        \"NNS\"\n    ], \n    \"harsh\": [\n        \"JJ\"\n    ], \n    \"doctor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Stieglitz\": [\n        \"NNP\"\n    ], \n    \"Asman\": [\n        \"NNP\"\n    ], \n    \"anti-acne\": [\n        \"NN\"\n    ], \n    \"skiddy\": [\n        \"JJ\"\n    ], \n    \"spot-market\": [\n        \"JJ\"\n    ], \n    \"heartbreak\": [\n        \"NN\"\n    ], \n    \"Gethsemane\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"smoke-stained\": [\n        \"JJ\"\n    ], \n    \"struggling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"exhaling\": [\n        \"VBG\"\n    ], \n    \"transitions\": [\n        \"NNS\"\n    ], \n    \"exhaust\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"GANNETT\": [\n        \"NNP\"\n    ], \n    \"third-party\": [\n        \"JJ\"\n    ], \n    \"Tallahatchie\": [\n        \"NNP\"\n    ], \n    \"Expo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"scorned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Moulton\": [\n        \"NNP\"\n    ], \n    \"Apparel\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"lemon\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"DaPuzzo\": [\n        \"NNP\"\n    ], \n    \"suffuse\": [\n        \"VB\"\n    ], \n    \"emigrated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"CCK-related\": [\n        \"JJ\"\n    ], \n    \"third-ranking\": [\n        \"JJ\"\n    ], \n    \"pentameter\": [\n        \"NN\"\n    ], \n    \"cardiac-drug\": [\n        \"JJ\"\n    ], \n    \"self-consciously\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"low-volume\": [\n        \"JJ\"\n    ], \n    \"Metrocorp\": [\n        \"NNP\"\n    ], \n    \"instillation\": [\n        \"NN\"\n    ], \n    \"Columbiana\": [\n        \"NNP\"\n    ], \n    \"prochoice\": [\n        \"NN\"\n    ], \n    \"DONORS\": [\n        \"NNS\"\n    ], \n    \"Niggertown\": [\n        \"NNP\"\n    ], \n    \"orchid-strewn\": [\n        \"JJ\"\n    ], \n    \"adulterated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Treasurers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Margaret\": [\n        \"NNP\"\n    ], \n    \"borax\": [\n        \"NN\"\n    ], \n    \"Steinhardt\": [\n        \"NNP\"\n    ], \n    \"grating\": [\n        \"NN\"\n    ], \n    \"Coin\": [\n        \"NNP\"\n    ], \n    \"Sperry\": [\n        \"NNP\"\n    ], \n    \"thyrotrophin\": [\n        \"NN\"\n    ], \n    \"bluestocking\": [\n        \"NN\"\n    ], \n    \"adverbial\": [\n        \"JJ\"\n    ], \n    \"Tackles\": [\n        \"VBZ\"\n    ], \n    \"grandstanding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unfoldment\": [\n        \"NN\"\n    ], \n    \"co-publisher\": [\n        \"NN\"\n    ], \n    \"line-density\": [\n        \"NN\"\n    ], \n    \"SHELTERS\": [\n        \"NNS\"\n    ], \n    \"secrecy\": [\n        \"NN\"\n    ], \n    \"disadvantageous\": [\n        \"JJ\"\n    ], \n    \"railroad\": [\n        \"NN\"\n    ], \n    \"implicate\": [\n        \"VB\"\n    ], \n    \"Friars\": [\n        \"NNS\"\n    ], \n    \"Moleculon\": [\n        \"NNP\"\n    ], \n    \"lightning\": [\n        \"NN\"\n    ], \n    \"Troy\": [\n        \"NNP\"\n    ], \n    \"London\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"retailers\": [\n        \"NNS\"\n    ], \n    \"Rosabeth\": [\n        \"NNP\"\n    ], \n    \"Trop\": [\n        \"NNP\"\n    ], \n    \"amortizing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Enid\": [\n        \"NNP\"\n    ], \n    \"transmittable\": [\n        \"JJ\"\n    ], \n    \"Savoy\": [\n        \"NNP\"\n    ], \n    \"climactic\": [\n        \"JJ\"\n    ], \n    \"spans\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Croma\": [\n        \"NNP\"\n    ], \n    \"imprisonment\": [\n        \"NN\"\n    ], \n    \"galvanic\": [\n        \"JJ\"\n    ], \n    \"trillion-dollar\": [\n        \"JJ\"\n    ], \n    \"Wachsman\": [\n        \"NNP\"\n    ], \n    \"Cost-effective\": [\n        \"JJ\"\n    ], \n    \"eighteenth-century\": [\n        \"JJ\"\n    ], \n    \"Swansea\": [\n        \"NNP\"\n    ], \n    \"error-prone\": [\n        \"JJ\"\n    ], \n    \"baseball-card\": [\n        \"JJ\"\n    ], \n    \"Atherton\": [\n        \"NNP\"\n    ], \n    \"livres\": [\n        \"FW\", \n        \"NNS\"\n    ], \n    \"WHISPER\": [\n        \"NN\"\n    ], \n    \"RESEARCH\": [\n        \"NNP\"\n    ], \n    \"critical\": [\n        \"JJ\"\n    ], \n    \"Canellos\": [\n        \"NNP\"\n    ], \n    \"claustrophobia\": [\n        \"NN\"\n    ], \n    \"claustrophobic\": [\n        \"JJ\"\n    ], \n    \"moderate\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Pan-American\": [\n        \"JJ\"\n    ], \n    \"measuring\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ|VBG\"\n    ], \n    \"forfeitures\": [\n        \"NNS\"\n    ], \n    \"no-men\": [\n        \"NNS\"\n    ], \n    \"buckling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"airways\": [\n        \"NNS\"\n    ], \n    \"nonoperating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"shellshocked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"strangles\": [\n        \"VBZ\"\n    ], \n    \"consumer-paint\": [\n        \"JJ\"\n    ], \n    \"hara-kiri\": [\n        \"FW\"\n    ], \n    \"subcommitee\": [\n        \"NN\"\n    ], \n    \"Solved\": [\n        \"VBD\"\n    ], \n    \"despicable\": [\n        \"JJ\"\n    ], \n    \"maintainence\": [\n        \"NN\"\n    ], \n    \"recraft\": [\n        \"VB\"\n    ], \n    \"Efforts\": [\n        \"NNS\"\n    ], \n    \"strangled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"finicky\": [\n        \"JJ\"\n    ], \n    \"Stacey\": [\n        \"NNP\"\n    ], \n    \"tuning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"conducting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"son-in-law\": [\n        \"NN\"\n    ], \n    \"anti-business\": [\n        \"JJ\"\n    ], \n    \"Revenue\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"troupes\": [\n        \"NNS\"\n    ], \n    \"violence\": [\n        \"NN\"\n    ], \n    \"ARRESTED\": [\n        \"VBD\"\n    ], \n    \"asset-sale\": [\n        \"JJ\"\n    ], \n    \"non-banking\": [\n        \"JJ\"\n    ], \n    \"practical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Erotic\": [\n        \"NNP\"\n    ], \n    \"INVESTIGATION\": [\n        \"NNP\"\n    ], \n    \"threesome\": [\n        \"NN\"\n    ], \n    \"Supportive\": [\n        \"JJ\"\n    ], \n    \"program-selling\": [\n        \"JJ\"\n    ], \n    \"imitated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Heads\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"straight-armed\": [\n        \"VBD\"\n    ], \n    \"Sunken\": [\n        \"NNP\"\n    ], \n    \"Magi\": [\n        \"NNP\"\n    ], \n    \"Fendrick\": [\n        \"NNP\"\n    ], \n    \"Wansley\": [\n        \"NNP\"\n    ], \n    \"Heady\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Soothsayer\": [\n        \"NNP\"\n    ], \n    \"Newmark\": [\n        \"NNP\"\n    ], \n    \"exploiting\": [\n        \"VBG\"\n    ], \n    \"Countered\": [\n        \"VBD\"\n    ], \n    \"imitates\": [\n        \"VBZ\"\n    ], \n    \"paganism\": [\n        \"NN\"\n    ], \n    \"shantytown\": [\n        \"NN\"\n    ], \n    \"ISSUES\": [\n        \"NNS\"\n    ], \n    \"Harold\": [\n        \"NNP\"\n    ], \n    \"Rectifier\": [\n        \"NNP\"\n    ], \n    \"Harkinson\": [\n        \"NNP\"\n    ], \n    \"gravid\": [\n        \"JJ\"\n    ], \n    \"slurped\": [\n        \"VBD\"\n    ], \n    \"sipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"recognizably\": [\n        \"RB\"\n    ], \n    \"decode\": [\n        \"VB\"\n    ], \n    \"greenhouse-gas\": [\n        \"JJ\"\n    ], \n    \"braiding\": [\n        \"VBG\"\n    ], \n    \"moth-like\": [\n        \"JJ\"\n    ], \n    \"Whipsnade\": [\n        \"NNP\"\n    ], \n    \"bettering\": [\n        \"VBG\"\n    ], \n    \"deepened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Freud\": [\n        \"NNP\", \n        \",\"\n    ], \n    \"chambered\": [\n        \"VBN\"\n    ], \n    \"Phosphate\": [\n        \"NNP\"\n    ], \n    \"Canterbury\": [\n        \"NNP\"\n    ], \n    \"shortterm\": [\n        \"JJ\"\n    ], \n    \"billowed\": [\n        \"VBD\"\n    ], \n    \"Fuentes\": [\n        \"NNP\"\n    ], \n    \"geriatric\": [\n        \"JJ\"\n    ], \n    \"evaporate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Delays\": [\n        \"NNS\"\n    ], \n    \"retrained\": [\n        \"VBN\"\n    ], \n    \"hound\": [\n        \"NN\"\n    ], \n    \"fountain-falls\": [\n        \"NNS\"\n    ], \n    \"discs\": [\n        \"NNS\"\n    ], \n    \"Oriani\": [\n        \"NNP\"\n    ], \n    \"doctrinal\": [\n        \"JJ\"\n    ], \n    \"departs\": [\n        \"VBZ\"\n    ], \n    \"Poeme\": [\n        \"NNP\"\n    ], \n    \"Grigorss\": [\n        \"NNP\"\n    ], \n    \"executive-branch\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"astronaut\": [\n        \"NN\"\n    ], \n    \"high-priority\": [\n        \"JJ\"\n    ], \n    \"overtime\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"million-a-year\": [\n        \"JJ\"\n    ], \n    \"Keehn\": [\n        \"NNP\"\n    ], \n    \"syngeries\": [\n        \"NNS\"\n    ], \n    \"awkwardly\": [\n        \"RB\"\n    ], \n    \"clamored\": [\n        \"VBD\"\n    ], \n    \"pitifully\": [\n        \"RB\"\n    ], \n    \"subdivision\": [\n        \"NN\"\n    ], \n    \"beer-guzzling\": [\n        \"JJ\"\n    ], \n    \"unload\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Reasons\": [\n        \"NNS\"\n    ], \n    \"Colnaghi\": [\n        \"NNP\"\n    ], \n    \"Bochniarz\": [\n        \"NNP\"\n    ], \n    \"unsee\": [\n        \"VBN\"\n    ], \n    \"dramatic\": [\n        \"JJ\"\n    ], \n    \"weighty\": [\n        \"JJ\"\n    ], \n    \"drugging\": [\n        \"VBG\"\n    ], \n    \"spectral\": [\n        \"JJ\"\n    ], \n    \"upperclassmen\": [\n        \"NNS\"\n    ], \n    \"drug-sales\": [\n        \"NNS\"\n    ], \n    \"resolution\": [\n        \"NN\"\n    ], \n    \"Seafood\": [\n        \"NN\"\n    ], \n    \"Goolick\": [\n        \"NN\"\n    ], \n    \"Ramesh\": [\n        \"NNP\"\n    ], \n    \"Van\": [\n        \"NNP\"\n    ], \n    \"Winter\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"Val\": [\n        \"NNP\"\n    ], \n    \"Perle\": [\n        \"NNP\"\n    ], \n    \"geode\": [\n        \"NN\"\n    ], \n    \"plain-clothesmen\": [\n        \"NNS\"\n    ], \n    \"ever-narrowing\": [\n        \"JJ\"\n    ], \n    \"million-dollar\": [\n        \"JJ\"\n    ], \n    \"Vax\": [\n        \"NNP\"\n    ], \n    \"editorialist\": [\n        \"NN\"\n    ], \n    \"undisrupted\": [\n        \"JJ\"\n    ], \n    \"prevalance\": [\n        \"NN\"\n    ], \n    \"children\": [\n        \"NNS\"\n    ], \n    \"Bechtel\": [\n        \"NNP\"\n    ], \n    \"Yeast\": [\n        \"NN\"\n    ], \n    \"Mecklenberg\": [\n        \"NNP\"\n    ], \n    \"Zapala\": [\n        \"NNP\"\n    ], \n    \"POPs\": [\n        \"NNS\"\n    ], \n    \"Cookie-Crisp\": [\n        \"NNP\"\n    ], \n    \"wants\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"premium\": [\n        \"NN\", \n        \"JJ|NN\", \n        \"JJ\"\n    ], \n    \"distorting\": [\n        \"VBG\"\n    ], \n    \"straightforward\": [\n        \"JJ\"\n    ], \n    \"Japanese-financed\": [\n        \"JJ\"\n    ], \n    \"Chartres\": [\n        \"NNP\"\n    ], \n    \"JIM\": [\n        \"NNP\"\n    ], \n    \"Microelectronics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"blood-chilling\": [\n        \"JJ\"\n    ], \n    \"aware\": [\n        \"JJ\"\n    ], \n    \"coyness\": [\n        \"NN\"\n    ], \n    \"forwarders\": [\n        \"NNS\"\n    ], \n    \"subterranean\": [\n        \"JJ\"\n    ], \n    \"Messinesi\": [\n        \"NNP\"\n    ], \n    \"unilateralism\": [\n        \"NN\"\n    ], \n    \"fuel-services\": [\n        \"NNS\"\n    ], \n    \"revaluing\": [\n        \"NN\"\n    ], \n    \"veined\": [\n        \"JJ\"\n    ], \n    \"conjugating\": [\n        \"VBG\"\n    ], \n    \"dampen\": [\n        \"VB\"\n    ], \n    \"polonaise\": [\n        \"NN\"\n    ], \n    \"unstilted\": [\n        \"JJ\"\n    ], \n    \"hym\": [\n        \"PRP\"\n    ], \n    \"Giubbonari\": [\n        \"NNP\"\n    ], \n    \"six-foot-four\": [\n        \"JJ\"\n    ], \n    \"hys\": [\n        \"PRP$\"\n    ], \n    \"Rink\": [\n        \"NNP\"\n    ], \n    \"damper\": [\n        \"NN\"\n    ], \n    \"nucleated\": [\n        \"VBN\"\n    ], \n    \"LS400\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Needs\": [\n        \"NNS\"\n    ], \n    \"Needy\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"F.D.R.\": [\n        \"NNP\"\n    ], \n    \"burger\": [\n        \"NN\"\n    ], \n    \"corrosion-resistant\": [\n        \"JJ\"\n    ], \n    \"commercial-litigation\": [\n        \"NN\"\n    ], \n    \"affectation\": [\n        \"NN\"\n    ], \n    \"Hanover-Ceyway\": [\n        \"NNP\"\n    ], \n    \"Salzgitter\": [\n        \"NNP\"\n    ], \n    \"ribbon\": [\n        \"NN\"\n    ], \n    \"putting\": [\n        \"VBG\"\n    ], \n    \"Clearasil\": [\n        \"NNP\"\n    ], \n    \"dial\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"diam\": [\n        \"NN\"\n    ], \n    \"opted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"skeptic\": [\n        \"NN\"\n    ], \n    \"WARNED\": [\n        \"VBD\"\n    ], \n    \"bankruptcy-reorganization\": [\n        \"NN\"\n    ], \n    \"portions\": [\n        \"NNS\"\n    ], \n    \"ratchet\": [\n        \"VB\"\n    ], \n    \"White-shirted\": [\n        \"JJ\"\n    ], \n    \"selfeffacing\": [\n        \"VBG\"\n    ], \n    \"movement\": [\n        \"NN\"\n    ], \n    \"violently\": [\n        \"RB\"\n    ], \n    \"cohorts\": [\n        \"NNS\"\n    ], \n    \"trouncing\": [\n        \"NN\"\n    ], \n    \"Amon\": [\n        \"NNP\"\n    ], \n    \"morale-enhancing\": [\n        \"JJ\"\n    ], \n    \"ranged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"twang\": [\n        \"NN\"\n    ], \n    \"promising\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Cedergren\": [\n        \"NNP\"\n    ], \n    \"ranges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ranger\": [\n        \"NN\"\n    ], \n    \"Arthur\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disastrous\": [\n        \"JJ\"\n    ], \n    \"H.M.S.S\": [\n        \"NNP\"\n    ], \n    \"capacitor\": [\n        \"NN\"\n    ], \n    \"Neuhaus\": [\n        \"NNP\"\n    ], \n    \"Analytical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Amor\": [\n        \"FW\"\n    ], \n    \"sunning\": [\n        \"VBG\"\n    ], \n    \"Whole\": [\n        \"JJ\"\n    ], \n    \"Gachinger\": [\n        \"NNP\"\n    ], \n    \"publishes\": [\n        \"VBZ\"\n    ], \n    \"sub-zero\": [\n        \"JJ\"\n    ], \n    \"water-authority\": [\n        \"NN\"\n    ], \n    \"unconvinced\": [\n        \"JJ\"\n    ], \n    \"Kitamura\": [\n        \"NNP\"\n    ], \n    \"hard-earned\": [\n        \"JJ\"\n    ], \n    \"stretching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"scurry\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"published\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Neglecting\": [\n        \"VBG\"\n    ], \n    \"skids\": [\n        \"NNS\"\n    ], \n    \"cystic\": [\n        \"JJ\"\n    ], \n    \"authorize\": [\n        \"VB\"\n    ], \n    \"buses\": [\n        \"NNS\"\n    ], \n    \"clapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Everlys\": [\n        \"NNS\"\n    ], \n    \"bused\": [\n        \"VBN\"\n    ], \n    \"icecap\": [\n        \"NN\"\n    ], \n    \"Bazy-Sire\": [\n        \"NNP\"\n    ], \n    \"memos\": [\n        \"NNS\"\n    ], \n    \"Core\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"phonemic\": [\n        \"JJ\"\n    ], \n    \"Gimenez\": [\n        \"NNP\"\n    ], \n    \"senior-debt\": [\n        \"NN\"\n    ], \n    \"Corn\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"destination\": [\n        \"NN\"\n    ], \n    \"Multiflow\": [\n        \"NNP\"\n    ], \n    \"Cort\": [\n        \"NNP\"\n    ], \n    \"congratulated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Corp\": [\n        \"NNP\"\n    ], \n    \"Corr\": [\n        \"NNP\"\n    ], \n    \"Brunner\": [\n        \"NNP\"\n    ], \n    \"Petitions\": [\n        \"NNS\"\n    ], \n    \"obstinate\": [\n        \"JJ\"\n    ], \n    \"strait\": [\n        \"NN\"\n    ], \n    \"LTV\": [\n        \"NNP\"\n    ], \n    \"pads\": [\n        \"NNS\"\n    ], \n    \"Kennedy\": [\n        \"NNP\"\n    ], \n    \"sniffers\": [\n        \"NNS\"\n    ], \n    \"falloff\": [\n        \"NN\"\n    ], \n    \"thrift-like\": [\n        \"JJ\"\n    ], \n    \"leavened\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Pantasote\": [\n        \"NNP\"\n    ], \n    \"LTD\": [\n        \"NNP\"\n    ], \n    \"straight-haired\": [\n        \"JJ\"\n    ], \n    \"ruling-party\": [\n        \"NN\"\n    ], \n    \"willfully\": [\n        \"RB\"\n    ], \n    \"counterclaim\": [\n        \"NN\"\n    ], \n    \"alcohol-related\": [\n        \"JJ\"\n    ], \n    \"ladling\": [\n        \"VBG\"\n    ], \n    \"Aikman\": [\n        \"NNP\"\n    ], \n    \"sarcasms\": [\n        \"NNS\"\n    ], \n    \"sudden\": [\n        \"JJ\"\n    ], \n    \"discotheques\": [\n        \"NNS\"\n    ], \n    \"Kissick\": [\n        \"NNP\"\n    ], \n    \"Rezneck\": [\n        \"NNP\"\n    ], \n    \"lingered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Wallenstein\": [\n        \"NNP\"\n    ], \n    \"bivouac\": [\n        \"NN\"\n    ], \n    \"Argas\": [\n        \"NNP\"\n    ], \n    \"barbequed\": [\n        \"JJ\"\n    ], \n    \"deplores\": [\n        \"VBZ\"\n    ], \n    \"Transcendentalism\": [\n        \"NNP\"\n    ], \n    \"Kindergarten\": [\n        \"NN\"\n    ], \n    \"hullabaloo\": [\n        \"NN\"\n    ], \n    \"Borge\": [\n        \"NNP\"\n    ], \n    \"church-state\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Abrahams\": [\n        \"NNP\"\n    ], \n    \"deplored\": [\n        \"VBD\"\n    ], \n    \"aphorisms\": [\n        \"NNS\"\n    ], \n    \"rededicating\": [\n        \"VBG\"\n    ], \n    \"subminimum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"enforcers\": [\n        \"NNS\"\n    ], \n    \"DRI\\\\/McGraw\": [\n        \"NNP\"\n    ], \n    \"Hordern\": [\n        \"NNP\"\n    ], \n    \"Mavis\": [\n        \"NNP\"\n    ], \n    \"pay-down\": [\n        \"JJ\"\n    ], \n    \"Battat\": [\n        \"NNP\"\n    ], \n    \"CONTROL\": [\n        \"NNP\"\n    ], \n    \"lakes\": [\n        \"NNS\"\n    ], \n    \"Bombers\": [\n        \"NNS\"\n    ], \n    \"frilly\": [\n        \"JJ\"\n    ], \n    \"long-view\": [\n        \"JJ\"\n    ], \n    \"inflationary\": [\n        \"JJ\"\n    ], \n    \"Effjohn\": [\n        \"NNP\"\n    ], \n    \"kegful\": [\n        \"JJ\"\n    ], \n    \"double-B-minus\": [\n        \"NN\"\n    ], \n    \"frills\": [\n        \"NNS\"\n    ], \n    \"synagogue\": [\n        \"NN\"\n    ], \n    \"solipsism\": [\n        \"NN\"\n    ], \n    \"savvier\": [\n        \"JJR\"\n    ], \n    \"response\": [\n        \"NN\"\n    ], \n    \"bleak\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"securities-based\": [\n        \"JJ\"\n    ], \n    \"Branum\": [\n        \"NNP\"\n    ], \n    \"Prater\": [\n        \"NNP\"\n    ], \n    \"eats\": [\n        \"VBZ\"\n    ], \n    \"Siemens-GEC-Plessey\": [\n        \"NNP\"\n    ], \n    \"re-enacted\": [\n        \"VBN\"\n    ], \n    \"barbital\": [\n        \"NN\"\n    ], \n    \"Lett\": [\n        \"NNP\"\n    ], \n    \"nonagricultural\": [\n        \"JJ\"\n    ], \n    \"Anouilh\": [\n        \"NNP\"\n    ], \n    \"sacadolares\": [\n        \"FW\"\n    ], \n    \"egregiously\": [\n        \"RB\"\n    ], \n    \"infant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"formulations\": [\n        \"NNS\"\n    ], \n    \"rounded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Haislmaier\": [\n        \"NNP\"\n    ], \n    \"swamped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"half-crazy\": [\n        \"JJ\"\n    ], \n    \"oblique\": [\n        \"JJ\"\n    ], \n    \"rounder\": [\n        \"JJR\"\n    ], \n    \"lewdly\": [\n        \"RB\"\n    ], \n    \"rat-a-tat-tat\": [\n        \"JJ\"\n    ], \n    \"Extensive\": [\n        \"JJ\"\n    ], \n    \"Illusion\": [\n        \"NNP\"\n    ], \n    \"CSFB\": [\n        \"NNP\"\n    ], \n    \"manhunts\": [\n        \"NNS\"\n    ], \n    \"Vanous\": [\n        \"NNP\"\n    ], \n    \"Specialty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ciba-Geigy\": [\n        \"NNP\"\n    ], \n    \"Lederle\": [\n        \"NNP\"\n    ], \n    \"detected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"monacle\": [\n        \"NN\"\n    ], \n    \"Viscount\": [\n        \"NNP\"\n    ], \n    \"Zoning\": [\n        \"NNP\"\n    ], \n    \"someone\": [\n        \"NN\"\n    ], \n    \"fireproofing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"five-minute\": [\n        \"JJ\"\n    ], \n    \"scandalizing\": [\n        \"JJ\"\n    ], \n    \"redistribute\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"neophyte\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pavillion\": [\n        \"NNP\"\n    ], \n    \"grubby\": [\n        \"JJ\"\n    ], \n    \"sprang\": [\n        \"VBD\"\n    ], \n    \"FARGO\": [\n        \"NNP\"\n    ], \n    \"fuer\": [\n        \"NNP\"\n    ], \n    \"bestirred\": [\n        \"VBN\"\n    ], \n    \"Globo\": [\n        \"NNP\"\n    ], \n    \"confidence-crusher\": [\n        \"NN\"\n    ], \n    \"exiles\": [\n        \"NNS\"\n    ], \n    \"Telli\": [\n        \"NNP\"\n    ], \n    \"Globe\": [\n        \"NNP\"\n    ], \n    \"holiest\": [\n        \"JJS\"\n    ], \n    \"Pollnow\": [\n        \"NNP\"\n    ], \n    \"Schoenholtz\": [\n        \"NNP\"\n    ], \n    \"exiled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Association-College\": [\n        \"NNP\"\n    ], \n    \"Olenegorsk\": [\n        \"NNP\"\n    ], \n    \"order-to-ship\": [\n        \"JJ\"\n    ], \n    \"Scalia\": [\n        \"NNP\"\n    ], \n    \"essayist\": [\n        \"NN\"\n    ], \n    \"biscuits\": [\n        \"NNS\"\n    ], \n    \"Horseman\": [\n        \"NN\"\n    ], \n    \"Euro-products\": [\n        \"NNS\"\n    ], \n    \"subsystem\": [\n        \"NN\"\n    ], \n    \"once-unthinkable\": [\n        \"JJ\"\n    ], \n    \"syndicator\": [\n        \"NN\"\n    ], \n    \"mental\": [\n        \"JJ\"\n    ], \n    \"interweaving\": [\n        \"VBG\"\n    ], \n    \"house\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"chomping\": [\n        \"VBG\"\n    ], \n    \"trans-illumination\": [\n        \"NN\"\n    ], \n    \"sarsaparilla\": [\n        \"NN\"\n    ], \n    \"foreign-bank\": [\n        \"JJ\"\n    ], \n    \"countrymen\": [\n        \"NNS\"\n    ], \n    \"connect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"ripple\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"horsemanship\": [\n        \"NN\"\n    ], \n    \"backpacks\": [\n        \"NNS\"\n    ], \n    \"simplify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"flower\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Viktor\": [\n        \"NNP\"\n    ], \n    \"undervaluing\": [\n        \"VBG\"\n    ], \n    \"DeBat\": [\n        \"NNP\"\n    ], \n    \"ex-National\": [\n        \"JJ\"\n    ], \n    \"acting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"flowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"MacWeek\": [\n        \"NNP\"\n    ], \n    \"quince\": [\n        \"NN\"\n    ], \n    \"tiresome\": [\n        \"JJ\"\n    ], \n    \"Ramathan\": [\n        \"NNP\"\n    ], \n    \"Northwestern\": [\n        \"NNP\"\n    ], \n    \"squished\": [\n        \"VBN\"\n    ], \n    \"commits\": [\n        \"VBZ\"\n    ], \n    \"uranium-mining\": [\n        \"NN\"\n    ], \n    \"geared\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"difficulty\": [\n        \"NN\"\n    ], \n    \"Paging\": [\n        \"NNP\"\n    ], \n    \"confectionery\": [\n        \"NN\"\n    ], \n    \"cuckoos\": [\n        \"NNS\"\n    ], \n    \"giveaway\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"several-year\": [\n        \"JJ\"\n    ], \n    \"vibrato\": [\n        \"NN\"\n    ], \n    \"companion\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"superconductors\": [\n        \"NNS\"\n    ], \n    \"throwers\": [\n        \"NNS\"\n    ], \n    \"Helper\": [\n        \"NNP\"\n    ], \n    \"Basques\": [\n        \"NNPS\"\n    ], \n    \"cheap-wine\": [\n        \"JJ\"\n    ], \n    \"pilote\": [\n        \"FW\"\n    ], \n    \"Helped\": [\n        \"VBN\"\n    ], \n    \"Kaiparowits\": [\n        \"NNP\"\n    ], \n    \"much-heralded\": [\n        \"JJ\"\n    ], \n    \"free-drink\": [\n        \"JJ\"\n    ], \n    \"Subscribing\": [\n        \"VBG\"\n    ], \n    \"pilots\": [\n        \"NNS\"\n    ], \n    \"cash-management\": [\n        \"JJ\"\n    ], \n    \"INSURANCE\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ridership\": [\n        \"NN\"\n    ], \n    \"botany\": [\n        \"NN\"\n    ], \n    \"CompuChem\": [\n        \"NNP\"\n    ], \n    \"stepmother\": [\n        \"NN\"\n    ], \n    \"Montgoris\": [\n        \"NNP\"\n    ], \n    \"mistakenly\": [\n        \"RB\"\n    ], \n    \"Brighetti\": [\n        \"NNP\"\n    ], \n    \"juncture\": [\n        \"NN\"\n    ], \n    \"instances\": [\n        \"NNS\"\n    ], \n    \"girl-friend\": [\n        \"NN\"\n    ], \n    \"Rancher\": [\n        \"NNP\"\n    ], \n    \"cups\": [\n        \"NNS\"\n    ], \n    \"ivory-tower\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lanesville\": [\n        \"NNP\"\n    ], \n    \"killin\": [\n        \"VBG\"\n    ], \n    \"indulgent\": [\n        \"JJ\"\n    ], \n    \"smoother\": [\n        \"JJ\", \n        \"RB\", \n        \"JJR\"\n    ], \n    \"COAST\": [\n        \"NNP\"\n    ], \n    \"Cheers\": [\n        \"NNP\"\n    ], \n    \"redistributing\": [\n        \"VBG\"\n    ], \n    \"cholera\": [\n        \"NN\"\n    ], \n    \"reflexly\": [\n        \"RB\"\n    ], \n    \"smoothed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mutterers\": [\n        \"NNS\"\n    ], \n    \"bumble\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"trawl\": [\n        \"NN\"\n    ], \n    \"pest-control\": [\n        \"JJ\"\n    ], \n    \"Language\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"favorably\": [\n        \"RB\"\n    ], \n    \"acorns\": [\n        \"NNS\"\n    ], \n    \"service-type\": [\n        \"JJ\"\n    ], \n    \"excels\": [\n        \"VBZ\"\n    ], \n    \"sensation\": [\n        \"NN\"\n    ], \n    \"sangiovanni\": [\n        \"NNS\"\n    ], \n    \"sizable\": [\n        \"JJ\"\n    ], \n    \"favorable\": [\n        \"JJ\"\n    ], \n    \"DIFFERENCE\": [\n        \"NNP\"\n    ], \n    \"last-round\": [\n        \"JJ\"\n    ], \n    \"peaked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"involvements\": [\n        \"NNS\"\n    ], \n    \"quickwitted\": [\n        \"JJ\"\n    ], \n    \"dossier\": [\n        \"NN\"\n    ], \n    \"d-Limited\": [\n        \"NNP\"\n    ], \n    \"Brambles\": [\n        \"NNP\"\n    ], \n    \"Objects\": [\n        \"NNS\", \n        \"NNPS|VBZ\"\n    ], \n    \"Pinky\": [\n        \"NNP\"\n    ], \n    \"biracial\": [\n        \"JJ\"\n    ], \n    \"contrary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"treated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"putout\": [\n        \"NN\"\n    ], \n    \"ambitiously\": [\n        \"RB\"\n    ], \n    \"tagua\": [\n        \"NN\"\n    ], \n    \"pre-existing\": [\n        \"JJ\"\n    ], \n    \"desuetude\": [\n        \"NN\"\n    ], \n    \"million-member\": [\n        \"JJ\"\n    ], \n    \"nuclide\": [\n        \"NN\"\n    ], \n    \"Breath\": [\n        \"NN\"\n    ], \n    \"Swire\": [\n        \"NNP\"\n    ], \n    \"Pageant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Outlooks\": [\n        \"NNS\"\n    ], \n    \"cometary\": [\n        \"JJ\"\n    ], \n    \"unafraid\": [\n        \"JJ\"\n    ], \n    \"under-achievement\": [\n        \"NN\"\n    ], \n    \"fading\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"cardigan\": [\n        \"NN\"\n    ], \n    \"built\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"amorality\": [\n        \"NN\"\n    ], \n    \"Connall\": [\n        \"NNP\"\n    ], \n    \"Arab\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"boardinghouses\": [\n        \"NNS\"\n    ], \n    \"Walmart\": [\n        \"NNP\"\n    ], \n    \"Davao\": [\n        \"NNP\"\n    ], \n    \"Guildford\": [\n        \"NNP\"\n    ], \n    \"Aran\": [\n        \"NNP\"\n    ], \n    \"Meals\": [\n        \"NNP\"\n    ], \n    \"Aral\": [\n        \"NNP\"\n    ], \n    \"hub-and-spoke\": [\n        \"JJ\"\n    ], \n    \"choppiness\": [\n        \"NN\"\n    ], \n    \"HDTV-screen\": [\n        \"JJ\"\n    ], \n    \"flute\": [\n        \"NN\"\n    ], \n    \"Hawaii\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"HAS\": [\n        \"VBZ\"\n    ], \n    \"misstating\": [\n        \"VBG\"\n    ], \n    \"Savings\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Whelan\": [\n        \"NNP\"\n    ], \n    \"Manassas\": [\n        \"NNP\"\n    ], \n    \"non-interventionist\": [\n        \"JJ\"\n    ], \n    \"financiers\": [\n        \"NNS\"\n    ], \n    \"refrigerator\": [\n        \"NN\"\n    ], \n    \"Buckenham\": [\n        \"NNP\"\n    ], \n    \"big-business\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"diphosphopyridine\": [\n        \"JJ\"\n    ], \n    \"Zemlinsky\": [\n        \"NNP\"\n    ], \n    \"crisis-to-crisis\": [\n        \"JJ\"\n    ], \n    \"bustin\": [\n        \"VBG\"\n    ], \n    \"ATHLONE\": [\n        \"NNP\"\n    ], \n    \"Lodging\": [\n        \"NN\"\n    ], \n    \"Tyburn\": [\n        \"NN\"\n    ], \n    \"anti-submarine\": [\n        \"JJ\"\n    ], \n    \"pilferers\": [\n        \"NNS\"\n    ], \n    \"anti-market\": [\n        \"JJ\"\n    ], \n    \"joining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"weavers\": [\n        \"NNS\"\n    ], \n    \"Xia\": [\n        \"NNP\"\n    ], \n    \"directorate\": [\n        \"NN\"\n    ], \n    \"particularly\": [\n        \"RB\"\n    ], \n    \"disturbances\": [\n        \"NNS\"\n    ], \n    \"prepackaged\": [\n        \"VBN\"\n    ], \n    \"fins\": [\n        \"NNS\"\n    ], \n    \"hugging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bridgers\": [\n        \"NNP\"\n    ], \n    \"Hilo\": [\n        \"NNP\"\n    ], \n    \"repels\": [\n        \"VBZ\"\n    ], \n    \"fine\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"find\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"backtracking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Tucker\": [\n        \"NNP\"\n    ], \n    \"Tulsa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Coordination\": [\n        \"NN\"\n    ], \n    \"relent\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"dicate\": [\n        \"VBP\"\n    ], \n    \"frothier\": [\n        \"RBR\"\n    ], \n    \"marathons\": [\n        \"NNS\"\n    ], \n    \"PORTFOLIO\": [\n        \"NN\"\n    ], \n    \"Morgantown\": [\n        \"NNP\"\n    ], \n    \"Emigrant\": [\n        \"NNP\"\n    ], \n    \"boulder\": [\n        \"NN\"\n    ], \n    \"Desperately\": [\n        \"RB\"\n    ], \n    \"Apartheid\": [\n        \"NNP\"\n    ], \n    \"Stumbling\": [\n        \"JJ\"\n    ], \n    \"Verdes\": [\n        \"NNP\"\n    ], \n    \"Sukhoi\": [\n        \"NNP\"\n    ], \n    \"resolve\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Cataracts\": [\n        \"NNS\"\n    ], \n    \"racially\": [\n        \"RB\"\n    ], \n    \"Suddenly\": [\n        \"RB\"\n    ], \n    \"coughs\": [\n        \"NNS\"\n    ], \n    \"self-described\": [\n        \"JJ\"\n    ], \n    \"Co.``\": [\n        \"``\"\n    ], \n    \"meter\": [\n        \"NN\"\n    ], \n    \"WNYW\": [\n        \"NNP\"\n    ], \n    \"instrumentals\": [\n        \"NNS\"\n    ], \n    \"forensic\": [\n        \"JJ\"\n    ], \n    \"vine\": [\n        \"NN\"\n    ], \n    \"coal-railroad\": [\n        \"NN\"\n    ], \n    \"already-known\": [\n        \"JJ\"\n    ], \n    \"ball-hawking\": [\n        \"JJ\"\n    ], \n    \"domain\": [\n        \"NN\"\n    ], \n    \"overeat\": [\n        \"VBP\"\n    ], \n    \"chastisement\": [\n        \"NN\"\n    ], \n    \"Impressive\": [\n        \"JJ\"\n    ], \n    \"unit-labor\": [\n        \"JJ\"\n    ], \n    \"antihistorical\": [\n        \"JJ\"\n    ], \n    \"superseded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"please\": [\n        \"VB\", \n        \"UH\", \n        \"VBP\"\n    ], \n    \"fourth-period\": [\n        \"JJ\"\n    ], \n    \"walk-way\": [\n        \"NN\"\n    ], \n    \"smallest\": [\n        \"JJS\"\n    ], \n    \"blood-sport\": [\n        \"JJ\"\n    ], \n    \"Egyptians\": [\n        \"NNPS\", \n        \"NN\"\n    ], \n    \"Charta\": [\n        \"NNP\"\n    ], \n    \"supersedes\": [\n        \"VBZ\"\n    ], \n    \"King\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kind\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"vindicated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"home-team\": [\n        \"JJ\"\n    ], \n    \"responses\": [\n        \"NNS\"\n    ], \n    \"exoneration\": [\n        \"NN\"\n    ], \n    \"aircraft\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"foothill\": [\n        \"NN\"\n    ], \n    \"encapsulate\": [\n        \"VB\"\n    ], \n    \"SELL-OFFS\": [\n        \"NNS\"\n    ], \n    \"breakups\": [\n        \"NNS\"\n    ], \n    \"Babatunde\": [\n        \"NNP\"\n    ], \n    \"full-time\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"assisted-living\": [\n        \"JJ\"\n    ], \n    \"erysipelas\": [\n        \"NN\"\n    ], \n    \"brunches\": [\n        \"NNS\"\n    ], \n    \"powers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"pizzas-with-everything\": [\n        \"NNS\"\n    ], \n    \"gamblers\": [\n        \"NNS\"\n    ], \n    \"flight-crew\": [\n        \"NN\"\n    ], \n    \"customs-clearance\": [\n        \"NN\"\n    ], \n    \"arteriolosclerosis\": [\n        \"NN\"\n    ], \n    \"upgraded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"cost-consciousness\": [\n        \"NN\"\n    ], \n    \"complacently\": [\n        \"RB\"\n    ], \n    \"ngandlu\": [\n        \"FW\"\n    ], \n    \"scairt\": [\n        \"VBN\"\n    ], \n    \"prosecuting\": [\n        \"VBG\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"asymptotically\": [\n        \"RB\"\n    ], \n    \"Hoffer\": [\n        \"NNP\"\n    ], \n    \"Koehler\": [\n        \"NNP\"\n    ], \n    \"Stromeyer\": [\n        \"NNP\"\n    ], \n    \"twenty-five-year-old\": [\n        \"JJ\"\n    ], \n    \"Denied\": [\n        \"VBN\"\n    ], \n    \"McKenna\": [\n        \"NNP\"\n    ], \n    \"no-confidence\": [\n        \"NN\"\n    ], \n    \"feeding-pain\": [\n        \"JJ\"\n    ], \n    \"Jacquelyn\": [\n        \"NN\"\n    ], \n    \"raise\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"frets\": [\n        \"VBZ\"\n    ], \n    \"Sprung\": [\n        \"NNP\"\n    ], \n    \"choruses\": [\n        \"NNS\"\n    ], \n    \"un-aided\": [\n        \"JJ\"\n    ], \n    \"anti-human\": [\n        \"JJ\"\n    ], \n    \"Planners\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"chorused\": [\n        \"VBD\"\n    ], \n    \"Margulies\": [\n        \"NNP\"\n    ], \n    \"weapons-modernization\": [\n        \"JJ\"\n    ], \n    \"pessimism\": [\n        \"NN\"\n    ], \n    \"Liquid\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Princeton\": [\n        \"NNP\"\n    ], \n    \"lulu\": [\n        \"NN\"\n    ], \n    \"Months\": [\n        \"NNS\"\n    ], \n    \"mountaineers\": [\n        \"NNS\"\n    ], \n    \"Marsicano\": [\n        \"NNP\"\n    ], \n    \"Presenting\": [\n        \"VBG\"\n    ], \n    \"Drill\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Newts\": [\n        \"NNP\"\n    ], \n    \"one-reel\": [\n        \"JJ\"\n    ], \n    \"Conveniently\": [\n        \"RB\"\n    ], \n    \"Donnelley\": [\n        \"NNP\"\n    ], \n    \"post-secondary\": [\n        \"JJ\"\n    ], \n    \"near-unanimous\": [\n        \"JJ\"\n    ], \n    \"Classic\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"solid\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"puissant\": [\n        \"JJ\"\n    ], \n    \"holocaust\": [\n        \"NN\"\n    ], \n    \"aptness\": [\n        \"NN\"\n    ], \n    \"missteps\": [\n        \"NNS\"\n    ], \n    \"Eustis\": [\n        \"NNP\"\n    ], \n    \"Hulse\": [\n        \"NNP\"\n    ], \n    \"Toklas\": [\n        \"NNP\"\n    ], \n    \"hotelman\": [\n        \"NN\"\n    ], \n    \"Benelux\": [\n        \"NNP\"\n    ], \n    \"impracticable\": [\n        \"JJ\"\n    ], \n    \"Speedup\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"arms-sales\": [\n        \"JJ\"\n    ], \n    \"Confirming\": [\n        \"VBG\"\n    ], \n    \"finalists\": [\n        \"NNS\"\n    ], \n    \"Instead\": [\n        \"RB\", \n        \"IN\"\n    ], \n    \"seduce\": [\n        \"VB\"\n    ], \n    \"menarche\": [\n        \"NN\"\n    ], \n    \"textile\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Featherweight\": [\n        \"NN\"\n    ], \n    \"neutron\": [\n        \"NN\"\n    ], \n    \"passenger-tire\": [\n        \"JJ\"\n    ], \n    \"Realtor\": [\n        \"NN\"\n    ], \n    \"Muscovites\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"keys\": [\n        \"NNS\"\n    ], \n    \"appreciably\": [\n        \"RB\"\n    ], \n    \"osteoarthritis\": [\n        \"NN\"\n    ], \n    \"flitting\": [\n        \"VBG\"\n    ], \n    \"ab\": [\n        \"NN\"\n    ], \n    \"Bel-Air\": [\n        \"NNP\"\n    ], \n    \"agreed-on\": [\n        \"JJ\"\n    ], \n    \"supersede\": [\n        \"VB\"\n    ], \n    \"dystopian\": [\n        \"JJ\"\n    ], \n    \"private-eye\": [\n        \"NN\"\n    ], \n    \"forfeited\": [\n        \"VBN\"\n    ], \n    \"county\": [\n        \"NN\"\n    ], \n    \"blood-cell\": [\n        \"NN\"\n    ], \n    \"flags\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Masur\": [\n        \"NNP\"\n    ], \n    \"DAYAC\": [\n        \"NNP\"\n    ], \n    \"ill-fitting\": [\n        \"JJ\"\n    ], \n    \"dystopias\": [\n        \"NNS\"\n    ], \n    \"pfennig\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Lothario\": [\n        \"NN\"\n    ], \n    \"alluring\": [\n        \"JJ\"\n    ], \n    \"Hoeve\": [\n        \"NNP\"\n    ], \n    \"lower-emission\": [\n        \"NN\"\n    ], \n    \"re-order\": [\n        \"JJ\"\n    ], \n    \"ludicrous\": [\n        \"JJ\"\n    ], \n    \"budgeteers\": [\n        \"NNS\"\n    ], \n    \"nowbankrupt\": [\n        \"JJ\"\n    ], \n    \"profoundly\": [\n        \"RB\"\n    ], \n    \"three-run\": [\n        \"JJ\"\n    ], \n    \"Carlsson\": [\n        \"NNP\"\n    ], \n    \"ad\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"impetus\": [\n        \"NN\"\n    ], \n    \"pollster\": [\n        \"NN\"\n    ], \n    \"S.W.\": [\n        \"NNP\"\n    ], \n    \"calibre\": [\n        \"NN\"\n    ], \n    \"Hotel-casino\": [\n        \"NN\"\n    ], \n    \"reproof\": [\n        \"NN\"\n    ], \n    \"solvable\": [\n        \"JJ\"\n    ], \n    \"Payout\": [\n        \"NN\"\n    ], \n    \"overhanging\": [\n        \"VBG\"\n    ], \n    \"drama-filled\": [\n        \"JJ\"\n    ], \n    \"Riemann\": [\n        \"NNP\"\n    ], \n    \"Lotos\": [\n        \"NNP\"\n    ], \n    \"Bickwit\": [\n        \"NNP\"\n    ], \n    \"MRCA\": [\n        \"NNP\"\n    ], \n    \"Cruel\": [\n        \"JJ\"\n    ], \n    \"coffee-house\": [\n        \"NN\"\n    ], \n    \"Bachmann\": [\n        \"NNP\"\n    ], \n    \"Weslock\": [\n        \"NNP\"\n    ], \n    \"upgradings\": [\n        \"NNS\"\n    ], \n    \"unite\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fast-approaching\": [\n        \"JJ\"\n    ], \n    \"coverup\": [\n        \"NN\"\n    ], \n    \"calypso\": [\n        \"NN\"\n    ], \n    \"Samoa\": [\n        \"NNP\"\n    ], \n    \"cognitive\": [\n        \"JJ\"\n    ], \n    \"profferred\": [\n        \"VBN\"\n    ], \n    \"follows\": [\n        \"VBZ\"\n    ], \n    \"miffed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Bradlee\": [\n        \"NNP\"\n    ], \n    \"Sunbelt\": [\n        \"NNP\"\n    ], \n    \"Bradley\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ai\": [\n        \"VBP\", \n        \"VB\", \n        \"VBZ\"\n    ], \n    \"jolted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"metal-tasting\": [\n        \"JJ\"\n    ], \n    \"rheumatoid\": [\n        \"JJ\"\n    ], \n    \"more-generic\": [\n        \"JJ\"\n    ], \n    \"unilateralist\": [\n        \"JJ\"\n    ], \n    \"Lidov\": [\n        \"NNP\"\n    ], \n    \"vicelike\": [\n        \"JJ\"\n    ], \n    \"grass-roots\": [\n        \"JJ\"\n    ], \n    \"unpatronizing\": [\n        \"VBG\"\n    ], \n    \"strongest\": [\n        \"JJS\"\n    ], \n    \"cabinets\": [\n        \"NNS\"\n    ], \n    \"gourmet-food\": [\n        \"NN\"\n    ], \n    \"pronounced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Cornerback\": [\n        \"NN\"\n    ], \n    \"Seoul\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contacts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"affects\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"prayer-time\": [\n        \"NN\"\n    ], \n    \"endotoxin\": [\n        \"NN\"\n    ], \n    \"Greve\": [\n        \"NNP\"\n    ], \n    \"Zhejiang\": [\n        \"NNP\"\n    ], \n    \"pronounces\": [\n        \"VBZ\"\n    ], \n    \"mailers\": [\n        \"NNS\"\n    ], \n    \"Hartley-Leonard\": [\n        \"NNP\"\n    ], \n    \"JUDICIAL\": [\n        \"JJ\"\n    ], \n    \"augmenting\": [\n        \"VBG\"\n    ], \n    \"YWCA\": [\n        \"NNP\"\n    ], \n    \"headwall\": [\n        \"NN\"\n    ], \n    \"Medellin\": [\n        \"NNP\"\n    ], \n    \"Norbert\": [\n        \"NNP\"\n    ], \n    \"remembered\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"peculiarly\": [\n        \"RB\"\n    ], \n    \"Infectious\": [\n        \"JJ\"\n    ], \n    \"Lazybones\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"David\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"restrictive\": [\n        \"JJ\"\n    ], \n    \"fee\": [\n        \"NN\"\n    ], \n    \"Norberg\": [\n        \"NNP\"\n    ], \n    \"hostages\": [\n        \"NNS\"\n    ], \n    \"Davis\": [\n        \"NNP\"\n    ], \n    \"Leucadia\": [\n        \"NNP\"\n    ], \n    \"Change-ringing\": [\n        \"NN\"\n    ], \n    \"Typically\": [\n        \"RB\"\n    ], \n    \"tripping\": [\n        \"VBG\"\n    ], \n    \"Caraiba\": [\n        \"NNP\"\n    ], \n    \"piles\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"graduation\": [\n        \"NN\"\n    ], \n    \"piled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Despair\": [\n        \"NN\"\n    ], \n    \"pediatrician\": [\n        \"NN\"\n    ], \n    \"Grev.\": [\n        \"NNP\"\n    ], \n    \"crass\": [\n        \"JJ\"\n    ], \n    \"Precisely\": [\n        \"RB\"\n    ], \n    \"tenants\": [\n        \"NNS\"\n    ], \n    \"pollution\": [\n        \"NN\"\n    ], \n    \"waltz\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"al\": [\n        \"NNS\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"aliens\": [\n        \"NNS\"\n    ], \n    \"invading\": [\n        \"VBG\"\n    ], \n    \"disenfranchisement\": [\n        \"NN\"\n    ], \n    \"proverb\": [\n        \"NN\"\n    ], \n    \"semi-heights\": [\n        \"NNS\"\n    ], \n    \"bankruptcy\": [\n        \"NN\"\n    ], \n    \"afflict\": [\n        \"VB\"\n    ], \n    \"denominationally\": [\n        \"RB\"\n    ], \n    \"professional\\\\/executive\": [\n        \"JJ\"\n    ], \n    \"Warwickshire\": [\n        \"NNP\"\n    ], \n    \"errand\": [\n        \"NN\"\n    ], \n    \"famines\": [\n        \"NNS\"\n    ], \n    \"Lehmans\": [\n        \"NNPS\"\n    ], \n    \"errant\": [\n        \"JJ\"\n    ], \n    \"mega-resort\": [\n        \"NN\"\n    ], \n    \"well-bound\": [\n        \"JJ\"\n    ], \n    \"splenetic\": [\n        \"JJ\"\n    ], \n    \"Schieffelin\": [\n        \"NNP\"\n    ], \n    \"Saunder\": [\n        \"NNP\"\n    ], \n    \"cloud\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"copy-cat\": [\n        \"JJ\"\n    ], \n    \"multilevel\": [\n        \"JJ\"\n    ], \n    \"hopes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Marriott\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"directed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Westerner\": [\n        \"NNP\"\n    ], \n    \"biggie\": [\n        \"NN\"\n    ], \n    \"gegenschein\": [\n        \"NN\"\n    ], \n    \"detachable\": [\n        \"JJ\"\n    ], \n    \"ABORTION\": [\n        \"NN\"\n    ], \n    \"error-free\": [\n        \"JJ\"\n    ], \n    \"Lewis\": [\n        \"NNP\"\n    ], \n    \"KQED\": [\n        \"NNP\"\n    ], \n    \"ropers\": [\n        \"NNS\"\n    ], \n    \"psoriasis\": [\n        \"NN\"\n    ], \n    \"Mauldin\": [\n        \"NNP\"\n    ], \n    \"hardest-hit\": [\n        \"JJ\"\n    ], \n    \"expedition\": [\n        \"NN\"\n    ], \n    \"codger\": [\n        \"NN\"\n    ], \n    \"lye\": [\n        \"NN\"\n    ], \n    \"Narrowing\": [\n        \"VBG\"\n    ], \n    \"Panglossian\": [\n        \"JJ\"\n    ], \n    \"markdowns\": [\n        \"NNS\"\n    ], \n    \"psychoanalysis\": [\n        \"NN\"\n    ], \n    \"Nye\": [\n        \"NNP\"\n    ], \n    \"Pathans\": [\n        \"NNPS\"\n    ], \n    \"gunmetal-gray\": [\n        \"JJ\"\n    ], \n    \"self-tender\": [\n        \"JJ\"\n    ], \n    \"Hillel\": [\n        \"NNP\"\n    ], \n    \"crypt\": [\n        \"NN\"\n    ], \n    \"state-chartered\": [\n        \"JJ\"\n    ], \n    \"semiautomatic\": [\n        \"JJ\"\n    ], \n    \"MACMILLAN\": [\n        \"NNP\"\n    ], \n    \"teemed\": [\n        \"VBD\"\n    ], \n    \"Rhin\": [\n        \"NNP\"\n    ], \n    \"Hiller\": [\n        \"NNP\"\n    ], \n    \"dungarees\": [\n        \"NNS\"\n    ], \n    \"irreplaceable\": [\n        \"JJ\"\n    ], \n    \"ponying\": [\n        \"VBG\"\n    ], \n    \"Tanner\": [\n        \"NNP\"\n    ], \n    \"Babylonian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Recherche\": [\n        \"NNP\"\n    ], \n    \"Macel\": [\n        \"NNP\"\n    ], \n    \"audio\\\\/visual\": [\n        \"JJ\"\n    ], \n    \"accidental\": [\n        \"JJ\"\n    ], \n    \"lend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"angora\": [\n        \"NN\"\n    ], \n    \"tablespoon\": [\n        \"NN\"\n    ], \n    \"Mullendore\": [\n        \"NNP\"\n    ], \n    \"Bodin\": [\n        \"NNP\"\n    ], \n    \"Newsprint\": [\n        \"NN\"\n    ], \n    \"liners\": [\n        \"NNS\"\n    ], \n    \"polynomials\": [\n        \"NNS\"\n    ], \n    \"lens\": [\n        \"NN\"\n    ], \n    \"Depictions\": [\n        \"NNS\"\n    ], \n    \"Lujan\": [\n        \"NNP\"\n    ], \n    \"lent\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"genetics\": [\n        \"NNS\"\n    ], \n    \"hansom\": [\n        \"JJ\"\n    ], \n    \"desert\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Liberating\": [\n        \"VBG\"\n    ], \n    \"near-paralysis\": [\n        \"NN\"\n    ], \n    \"boyfriends\": [\n        \"NNS\"\n    ], \n    \"Macmillan\\\\\": [\n        \"NNP\"\n    ], \n    \"mantel\": [\n        \"NN\"\n    ], \n    \"downcast\": [\n        \"JJ\"\n    ], \n    \"rotational\": [\n        \"JJ\"\n    ], \n    \"Paperhouse\": [\n        \"NNP\"\n    ], \n    \"Spectrum\": [\n        \"NNP\"\n    ], \n    \"loafed\": [\n        \"VBD\"\n    ], \n    \"wahtahm\": [\n        \"NN\"\n    ], \n    \"failures\": [\n        \"NNS\"\n    ], \n    \"Interviu\": [\n        \"NNP\"\n    ], \n    \"debenture\": [\n        \"NN\"\n    ], \n    \"restraining\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Foresters\": [\n        \"NNS\"\n    ], \n    \"bulkhead\": [\n        \"NN\"\n    ], \n    \"round-tripping\": [\n        \"NN\"\n    ], \n    \"grays\": [\n        \"NNS\"\n    ], \n    \"SLIPS\": [\n        \"VBZ\"\n    ], \n    \"Seeking\": [\n        \"VBG\"\n    ], \n    \"stockholders...\": [\n        \":\"\n    ], \n    \"enjoined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kellogg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"habit-forming\": [\n        \"JJ\"\n    ], \n    \"sculptor\": [\n        \"NN\"\n    ], \n    \"Gerbrandt\": [\n        \"NNP\"\n    ], \n    \"redemptive\": [\n        \"JJ\"\n    ], \n    \"fatal\": [\n        \"JJ\"\n    ], \n    \"rejiggering\": [\n        \"VBG\"\n    ], \n    \"Pacitti\": [\n        \"NNP\"\n    ], \n    \"anti-Communism\": [\n        \"NN\"\n    ], \n    \"rubber-necking\": [\n        \"VBG\"\n    ], \n    \"Constitutional\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Walkin\": [\n        \"NNP\"\n    ], \n    \"ECONOMIC\": [\n        \"JJ\"\n    ], \n    \"vehicle-making\": [\n        \"JJ\"\n    ], \n    \"contribs\": [\n        \"NNS\"\n    ], \n    \"first-preferred\": [\n        \"JJ\"\n    ], \n    \"wires\": [\n        \"NNS\"\n    ], \n    \"Alisky\": [\n        \"NNP\"\n    ], \n    \"arrange\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tang\": [\n        \"NN\"\n    ], \n    \"affirmative-action\": [\n        \"NN\"\n    ], \n    \"disappointingly\": [\n        \"RB\"\n    ], \n    \"shock\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Shayol\": [\n        \"NNP\"\n    ], \n    \"tenuously\": [\n        \"RB\"\n    ], \n    \"Osake\": [\n        \"NNP\"\n    ], \n    \"Aqualon\": [\n        \"NNP\"\n    ], \n    \"rearing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Abelson\": [\n        \"NNP\"\n    ], \n    \"Bibliography\": [\n        \"NN\"\n    ], \n    \"artificiality\": [\n        \"NN\"\n    ], \n    \"ex-schoolteacher\": [\n        \"NN\"\n    ], \n    \"bleeding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Lone\": [\n        \"NNP\"\n    ], \n    \"Long\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Despising\": [\n        \"VBG\"\n    ], \n    \"Streeter\": [\n        \"NNP\"\n    ], \n    \"Witnessing\": [\n        \"VBG\"\n    ], \n    \"price-growth\": [\n        \"JJ\"\n    ], \n    \"retracting\": [\n        \"VBG\"\n    ], \n    \"Susitna\": [\n        \"NNP\"\n    ], \n    \"Kinsell\": [\n        \"NNP\"\n    ], \n    \"pittance\": [\n        \"NN\"\n    ], \n    \"chicago\": [\n        \"NNP\"\n    ], \n    \"single-store\": [\n        \"JJ\"\n    ], \n    \"stockholder-owned\": [\n        \"JJ\"\n    ], \n    \"Pornographer\": [\n        \"NNP\"\n    ], \n    \"PRODUCTS\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"tri-iodothyronine\": [\n        \"NN\"\n    ], \n    \"Goldstar\": [\n        \"NNP\"\n    ], \n    \"Datafleet\": [\n        \"NNP\"\n    ], \n    \"double-A-plus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"body\": [\n        \"NN\"\n    ], \n    \"justification\": [\n        \"NN\"\n    ], \n    \"mews\": [\n        \"NN\"\n    ], \n    \"industy\": [\n        \"NN\"\n    ], \n    \"Dysan\": [\n        \"NNP\"\n    ], \n    \"bods\": [\n        \"NNS\"\n    ], \n    \"Cacophonist\": [\n        \"NNP\"\n    ], \n    \"frontiersmen\": [\n        \"NNS\"\n    ], \n    \"Bursts\": [\n        \"VBZ\"\n    ], \n    \"remissions\": [\n        \"NNS\"\n    ], \n    \"tremor\": [\n        \"NN\"\n    ], \n    \"extrema\": [\n        \"NNS\"\n    ], \n    \"bode\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"extreme\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"topicality\": [\n        \"NN\"\n    ], \n    \"inter-town\": [\n        \"JJ\"\n    ], \n    \"dastardly\": [\n        \"JJ\"\n    ], \n    \"cash-deferred\": [\n        \"JJ\"\n    ], \n    \"crystallize\": [\n        \"VB\"\n    ], \n    \"Deportees\": [\n        \"NNS\"\n    ], \n    \"Steichen\": [\n        \"NNP\"\n    ], \n    \"Valhalla\": [\n        \"NNP\"\n    ], \n    \"FORMER\": [\n        \"JJ\"\n    ], \n    \"Brothers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"limp\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"F\\\\\": [\n        \"NN\"\n    ], \n    \"sacrilegious\": [\n        \"JJ\"\n    ], \n    \"extravagance\": [\n        \"NN\"\n    ], \n    \"Nico\": [\n        \"NNP\"\n    ], \n    \"limb\": [\n        \"NN\"\n    ], \n    \"scandal\": [\n        \"NN\"\n    ], \n    \"Industrie\": [\n        \"NNP\"\n    ], \n    \"lima\": [\n        \"NN\"\n    ], \n    \"FM\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"FN\": [\n        \"NNP\"\n    ], \n    \"Nice\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"writedown\": [\n        \"NN\"\n    ], \n    \"Fu\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sirrine\": [\n        \"NNP\"\n    ], \n    \"Canepa\": [\n        \"NNP\"\n    ], \n    \"MDC\": [\n        \"NNP\"\n    ], \n    \"calculation\": [\n        \"NN\"\n    ], \n    \"TEACHERS\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"harrowing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"MDT\": [\n        \"NNP\"\n    ], \n    \"collonaded\": [\n        \"VBN\"\n    ], \n    \"Tortillas\": [\n        \"NNPS\"\n    ], \n    \"C.P.\": [\n        \"NNP\"\n    ], \n    \"cost-efficient\": [\n        \"JJ\"\n    ], \n    \"asset-quality\": [\n        \"JJ\"\n    ], \n    \"lung-tissue\": [\n        \"JJ\"\n    ], \n    \"cookware\": [\n        \"NN\"\n    ], \n    \"Kloske\": [\n        \"NNP\"\n    ], \n    \"Urben\": [\n        \"NNP\"\n    ], \n    \"eccentricity\": [\n        \"NN\"\n    ], \n    \"commandeering\": [\n        \"VBG\"\n    ], \n    \"tearing\": [\n        \"VBG\"\n    ], \n    \"subscription\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Frequent-flier\": [\n        \"JJ\"\n    ], \n    \"Clov\": [\n        \"NNP\"\n    ], \n    \"Clow\": [\n        \"NNP\"\n    ], \n    \"UPHELD\": [\n        \"VBN\"\n    ], \n    \"indignities\": [\n        \"NNS\"\n    ], \n    \"Buckeye\": [\n        \"NNP\"\n    ], \n    \"telephone-marketing\": [\n        \"JJ\"\n    ], \n    \"Whitehouse\": [\n        \"NNP\"\n    ], \n    \"uh-uh\": [\n        \"UH\"\n    ], \n    \"brinkmanship\": [\n        \"NN\"\n    ], \n    \"impeded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"employe\": [\n        \"NN\"\n    ], \n    \"immoderate\": [\n        \"JJ\"\n    ], \n    \"sanitarium\": [\n        \"NN\"\n    ], \n    \"Condos\": [\n        \"NNS\"\n    ], \n    \"Condor\": [\n        \"NNP\"\n    ], \n    \"IATA\": [\n        \"NNP\"\n    ], \n    \"Speeches\": [\n        \"NNS\"\n    ], \n    \"Orvis\": [\n        \"NNP\"\n    ], \n    \"boned\": [\n        \"VBN\"\n    ], \n    \"Orvil\": [\n        \"NNP\"\n    ], \n    \"ludicrousness\": [\n        \"NN\"\n    ], \n    \"fulfillment\": [\n        \"NN\"\n    ], \n    \"employs\": [\n        \"VBZ\"\n    ], \n    \"bones\": [\n        \"NNS\"\n    ], \n    \"patinas\": [\n        \"NNS\"\n    ], \n    \"slow-growing\": [\n        \"JJ\"\n    ], \n    \"overtly\": [\n        \"RB\"\n    ], \n    \"native\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kabel\": [\n        \"NNP\"\n    ], \n    \"California-based\": [\n        \"JJ\"\n    ], \n    \"demonic\": [\n        \"JJ\"\n    ], \n    \"responsibilities\": [\n        \"NNS\"\n    ], \n    \"attachment\": [\n        \"NN\"\n    ], \n    \"reeking\": [\n        \"VBG\"\n    ], \n    \"Ginner\": [\n        \"NNP\"\n    ], \n    \"Stafford\": [\n        \"NNP\"\n    ], \n    \"watery\": [\n        \"JJ\"\n    ], \n    \"Nissan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Malapi\": [\n        \"NNP\"\n    ], \n    \"collection\": [\n        \"NN\"\n    ], \n    \"forswore\": [\n        \"VBD\"\n    ], \n    \"Guards\": [\n        \"NNPS\"\n    ], \n    \"SCORE\": [\n        \"NNP\"\n    ], \n    \"trapdoors\": [\n        \"NNS\"\n    ], \n    \"Icelandic\": [\n        \"NNP\"\n    ], \n    \"lines\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"liner\": [\n        \"NN\"\n    ], \n    \"gunbarrel\": [\n        \"NN\"\n    ], \n    \"Shamrock\": [\n        \"NNP\"\n    ], \n    \"linen\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"chief\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Marshalls\": [\n        \"NNP\"\n    ], \n    \"Tahiti\": [\n        \"NNP\"\n    ], \n    \"chien\": [\n        \"FW\"\n    ], \n    \"stock-trading\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Schenectady\": [\n        \"NNP\"\n    ], \n    \"furnish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unforethought\": [\n        \"JJ\"\n    ], \n    \"eerily\": [\n        \"RB\"\n    ], \n    \"Minnesota\": [\n        \"NNP\"\n    ], \n    \"Cavazos\": [\n        \"NNP\"\n    ], \n    \"duffers\": [\n        \"NNS\"\n    ], \n    \"Takanashi\": [\n        \"NNP\"\n    ], \n    \"Csathy\": [\n        \"NNP\"\n    ], \n    \"worse-than-expected\": [\n        \"JJ\"\n    ], \n    \"Herzenberg\": [\n        \"NNP\"\n    ], \n    \"onboard\": [\n        \"NN\"\n    ], \n    \"gestational\": [\n        \"JJ\"\n    ], \n    \"industrious\": [\n        \"JJ\"\n    ], \n    \"hick-self\": [\n        \"NN\"\n    ], \n    \"Northerners\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"LaGuardia\": [\n        \"NNP\"\n    ], \n    \"taboos\": [\n        \"NNS\"\n    ], \n    \"quill-pen\": [\n        \"JJ\"\n    ], \n    \"Ebbetts\": [\n        \"NNP\"\n    ], \n    \"seige\": [\n        \"NN\"\n    ], \n    \"stances\": [\n        \"NNS\"\n    ], \n    \"Catania\": [\n        \"NNP\"\n    ], \n    \"Achilles\": [\n        \"NNP\"\n    ], \n    \"Inspectorate\": [\n        \"NNP\"\n    ], \n    \"Terpers\": [\n        \"NNPS\"\n    ], \n    \"noncommittal\": [\n        \"JJ\"\n    ], \n    \"lushes\": [\n        \"NNS\"\n    ], \n    \"non-retail\": [\n        \"JJ\"\n    ], \n    \"Lorain\": [\n        \"NNP\"\n    ], \n    \"yearend\": [\n        \"NN\"\n    ], \n    \"mention\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"cutting\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Seasons\": [\n        \"NNPS\"\n    ], \n    \"Merritt-Chapman\": [\n        \"NNP\"\n    ], \n    \"inoculations\": [\n        \"NNS\"\n    ], \n    \"kindness\": [\n        \"NN\"\n    ], \n    \"Roaming\": [\n        \"VBG\"\n    ], \n    \"capital-gains\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"stunts\": [\n        \"NNS\"\n    ], \n    \"estranged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"jiggling\": [\n        \"VBG\"\n    ], \n    \"identified\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Toujours\": [\n        \"FW\"\n    ], \n    \"Bancroft\": [\n        \"NNP\"\n    ], \n    \"skid-row\": [\n        \"NN\"\n    ], \n    \"ABC-TV\": [\n        \"NNP\"\n    ], \n    \"disregard\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"identifies\": [\n        \"VBZ\"\n    ], \n    \"identifier\": [\n        \"NN\"\n    ], \n    \"uninteresting\": [\n        \"JJ\"\n    ], \n    \"Tetrameron\": [\n        \"NNP\"\n    ], \n    \"three-room\": [\n        \"JJ\"\n    ], \n    \"tetrahalides\": [\n        \"NNS\"\n    ], \n    \"black-white\": [\n        \"JJ\"\n    ], \n    \"phosphate-buffered\": [\n        \"NN\"\n    ], \n    \"humanism\": [\n        \"NN\"\n    ], \n    \"sergeants\": [\n        \"NNS\"\n    ], \n    \"Dickens\": [\n        \"NNP\"\n    ], \n    \"sweatshirt\": [\n        \"NN\"\n    ], \n    \"non-wireline\": [\n        \"JJ\"\n    ], \n    \"Wacoal\": [\n        \"NNP\"\n    ], \n    \"empires\": [\n        \"NNS\"\n    ], \n    \"Gloeilampenfabrieken\": [\n        \"NNP\"\n    ], \n    \"short-dollar\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Electress\": [\n        \"NNP\"\n    ], \n    \"clothing-store\": [\n        \"NN\"\n    ], \n    \"Signature\": [\n        \"NNP\"\n    ], \n    \"trickier\": [\n        \"JJR\"\n    ], \n    \"Sombrotto\": [\n        \"NNP\"\n    ], \n    \"oriental\": [\n        \"JJ\"\n    ], \n    \"sure-sure\": [\n        \"NN\"\n    ], \n    \"four-week\": [\n        \"JJ\"\n    ], \n    \"lecture\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"thereupon\": [\n        \"RB\"\n    ], \n    \"Contemplation\": [\n        \"NN\"\n    ], \n    \"coed\": [\n        \"NN\"\n    ], \n    \"capital-to-asset\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Reliable\": [\n        \"NNP\"\n    ], \n    \"unluckily\": [\n        \"RB\"\n    ], \n    \"one-house\": [\n        \"JJ\"\n    ], \n    \"hazard\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"non-virulent\": [\n        \"JJ\"\n    ], \n    \"delinquency\": [\n        \"NN\"\n    ], \n    \"computer-software\": [\n        \"NN\"\n    ], \n    \"spring-training\": [\n        \"NN\"\n    ], \n    \"French-modeled\": [\n        \"JJ\"\n    ], \n    \"Divisional\": [\n        \"NNP\"\n    ], \n    \"sun-tanned\": [\n        \"JJ\"\n    ], \n    \"Interim\": [\n        \"JJ\"\n    ], \n    \"qualification\": [\n        \"NN\"\n    ], \n    \"barriers\": [\n        \"NNS\"\n    ], \n    \"plant-and-equipment\": [\n        \"JJ\"\n    ], \n    \"Petrovich\": [\n        \"NNP\"\n    ], \n    \"south\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"predominate\": [\n        \"VBP\"\n    ], \n    \"infantryman\": [\n        \"NN\"\n    ], \n    \"Taming\": [\n        \"VBG\"\n    ], \n    \"franks\": [\n        \"NNS\"\n    ], \n    \"erroneous\": [\n        \"JJ\"\n    ], \n    \"instill\": [\n        \"VB\"\n    ], \n    \"Canadian-dollar\": [\n        \"JJ\"\n    ], \n    \"humblest\": [\n        \"JJS\"\n    ], \n    \"Phils\": [\n        \"NNPS\"\n    ], \n    \"thirties\": [\n        \"NNS\"\n    ], \n    \"observer\": [\n        \"NN\"\n    ], \n    \"Laude\": [\n        \"NNP\"\n    ], \n    \"deafened\": [\n        \"VBN\"\n    ], \n    \"Eurocrooks\": [\n        \"NNPS\"\n    ], \n    \"dehumidified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Wilson-to-Jim\": [\n        \"JJ\"\n    ], \n    \"maidens\": [\n        \"NNS\"\n    ], \n    \"Adnan\": [\n        \"NNP\"\n    ], \n    \"chivying\": [\n        \"VBG\"\n    ], \n    \"agonies\": [\n        \"NNS\"\n    ], \n    \"Pueri\": [\n        \"FW\"\n    ], \n    \"Railroad-rate\": [\n        \"JJ\"\n    ], \n    \"Madrid-based\": [\n        \"JJ\"\n    ], \n    \"Trinova\": [\n        \"NNP\"\n    ], \n    \"overpayments\": [\n        \"NNS\"\n    ], \n    \"bell-ringer\": [\n        \"NN\"\n    ], \n    \"Reserved\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"reaffirm\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"impoundment\": [\n        \"NN\"\n    ], \n    \"Rolland\": [\n        \"NNP\"\n    ], \n    \"Weisbord\": [\n        \"NNP\"\n    ], \n    \"mini-empire\": [\n        \"NN\"\n    ], \n    \"Pullings\": [\n        \"NNP\"\n    ], \n    \"prune\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"hospices\": [\n        \"NNS\"\n    ], \n    \"probe-based\": [\n        \"JJ\"\n    ], \n    \"ninth-circuit\": [\n        \"JJ\"\n    ], \n    \"much-talked-about\": [\n        \"JJ\"\n    ], \n    \"linchpin\": [\n        \"NN\"\n    ], \n    \"inversely\": [\n        \"RB\"\n    ], \n    \"References\": [\n        \"NNS\"\n    ], \n    \"Merrell\": [\n        \"NNP\"\n    ], \n    \"doctorate\": [\n        \"NN\"\n    ], \n    \"Thiep\": [\n        \"NNP\"\n    ], \n    \"Kunkel\": [\n        \"NNP\"\n    ], \n    \"Thieu\": [\n        \"NNP\"\n    ], \n    \"finetuning\": [\n        \"VBG\"\n    ], \n    \"Par\": [\n        \"NNP\"\n    ], \n    \"Pas\": [\n        \"FW\"\n    ], \n    \"Pat\": [\n        \"NNP\"\n    ], \n    \"poverty-stricken\": [\n        \"JJ\"\n    ], \n    \"inundating\": [\n        \"VBG\"\n    ], \n    \"Pax\": [\n        \"NNP\"\n    ], \n    \"Pay\": [\n        \"VB\", \n        \"VBP\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Paz\": [\n        \"NNP\"\n    ], \n    \"Plastow\": [\n        \"NNP\"\n    ], \n    \"curves\": [\n        \"NNS\"\n    ], \n    \"milion\": [\n        \"NN\"\n    ], \n    \"Pac\": [\n        \"NNP\"\n    ], \n    \"pitiable\": [\n        \"JJ\"\n    ], \n    \"nonfiction\": [\n        \"NN\"\n    ], \n    \"dictate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"SHUTTLE\": [\n        \"NN\"\n    ], \n    \"curved\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Pak\": [\n        \"NNP\"\n    ], \n    \"Pal\": [\n        \"NNP\"\n    ], \n    \"Pam\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pan\": [\n        \"NNP\"\n    ], \n    \"Pao\": [\n        \"NNP\"\n    ], \n    \"Mac-Laren\": [\n        \"NNP\"\n    ], \n    \"double-A\\\\/single-A-plus\": [\n        \"JJ\"\n    ], \n    \"maggot-covered\": [\n        \"JJ\"\n    ], \n    \"rejects\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"fictive\": [\n        \"JJ\"\n    ], \n    \"Sposato\": [\n        \"NNP\"\n    ], \n    \"psycho-physiology\": [\n        \"NN\"\n    ], \n    \"Uh-uh\": [\n        \"UH\"\n    ], \n    \"Distorts\": [\n        \"NNP\"\n    ], \n    \"nabbing\": [\n        \"VBG\"\n    ], \n    \"Exemption\": [\n        \"NN\"\n    ], \n    \"starches\": [\n        \"NNS\"\n    ], \n    \"Sesame\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"noontime\": [\n        \"NN\"\n    ], \n    \"masts\": [\n        \"NNS\"\n    ], \n    \"preliminary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rural\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Stibel\": [\n        \"NNP\"\n    ], \n    \"starched\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"quilted\": [\n        \"JJ\"\n    ], \n    \"downbeat\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Calloway\": [\n        \"NNP\"\n    ], \n    \"Carnegie-Illinois\": [\n        \"NNP\"\n    ], \n    \"Inju\": [\n        \"NNP\"\n    ], \n    \"Wellsville\": [\n        \"NNP\"\n    ], \n    \"road-building\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pork-barrelers\": [\n        \"NNS\"\n    ], \n    \"Bishop\": [\n        \"NNP\"\n    ], \n    \"mortgage-based\": [\n        \"JJ\"\n    ], \n    \"nags\": [\n        \"NNS\"\n    ], \n    \"absorbing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"near-certain\": [\n        \"JJ\"\n    ], \n    \"child-as-required-yuppie-possession\": [\n        \"NN\"\n    ], \n    \"Civilization\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hemlocks\": [\n        \"NNS\"\n    ], \n    \"STREET\": [\n        \"NNP\"\n    ], \n    \"rebuke\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"afferent\": [\n        \"JJ\"\n    ], \n    \"heighborhoods\": [\n        \"NNS\"\n    ], \n    \"incorruptible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"antiserum\": [\n        \"NN\"\n    ], \n    \"restyled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Teeter\": [\n        \"NNP\"\n    ], \n    \"excrutiatingly\": [\n        \"RB\"\n    ], \n    \"madman\": [\n        \"NN\"\n    ], \n    \"overgrown\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Manic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Mon\": [\n        \"NNP\"\n    ], \n    \"Mom\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mob\": [\n        \"NN\"\n    ], \n    \"Manin\": [\n        \"NNP\"\n    ], \n    \"cockpits\": [\n        \"NNS\"\n    ], \n    \"Shepherds\": [\n        \"NNPS\"\n    ], \n    \"peptide\": [\n        \"NN\"\n    ], \n    \"beat\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"beau\": [\n        \"NN\"\n    ], \n    \"bear\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"yelps\": [\n        \"NNS\"\n    ], \n    \"Prices\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"bean\": [\n        \"NN\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pre-split\": [\n        \"JJ\"\n    ], \n    \"beak\": [\n        \"NN\"\n    ], \n    \"bulk-chemical\": [\n        \"NN|JJ\", \n        \"JJ\"\n    ], \n    \"Wessel\": [\n        \"NNP\"\n    ], \n    \"Technologies\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"annihilate\": [\n        \"VB\"\n    ], \n    \"unauthorized\": [\n        \"JJ\"\n    ], \n    \"ANIMAL-RIGHTS\": [\n        \"NNS\"\n    ], \n    \"Bright\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Camden\": [\n        \"NNP\"\n    ], \n    \"mascara\": [\n        \"NN\"\n    ], \n    \"revocation\": [\n        \"NN\"\n    ], \n    \"tightening\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"stinkpotters\": [\n        \"NNS\"\n    ], \n    \"splendidly\": [\n        \"RB\"\n    ], \n    \"Jerome\": [\n        \"NNP\"\n    ], \n    \"Letch\": [\n        \"NNP\"\n    ], \n    \"mystery-story\": [\n        \"JJ\"\n    ], \n    \"omission\": [\n        \"NN\"\n    ], \n    \"amply\": [\n        \"RB\"\n    ], \n    \"Jurors\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"exists\": [\n        \"VBZ\"\n    ], \n    \"abstruse\": [\n        \"JJ\"\n    ], \n    \"Soviet-style\": [\n        \"JJ\"\n    ], \n    \"medicinalis\": [\n        \"FW\"\n    ], \n    \"Various\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"audits\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"maximums\": [\n        \"NNS\"\n    ], \n    \"hottest-selling\": [\n        \"JJS\"\n    ], \n    \"centrifugation\": [\n        \"NN\"\n    ], \n    \"missile-range\": [\n        \"JJ\"\n    ], \n    \"Hunkerish\": [\n        \"JJ\"\n    ], \n    \"forest-products\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"progress\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"vaporization\": [\n        \"NN\"\n    ], \n    \"contaminated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Soviet-backed\": [\n        \"JJ\"\n    ], \n    \"minimills\": [\n        \"NNS\"\n    ], \n    \"Datastream\": [\n        \"NNP\"\n    ], \n    \"tailspin\": [\n        \"NN\"\n    ], \n    \"anonymously\": [\n        \"RB\"\n    ], \n    \"Study\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"S\": [\n        \"NNP\", \n        \"POS\", \n        \"NN\"\n    ], \n    \"Moreno\": [\n        \"NNP\"\n    ], \n    \"Lorimar\": [\n        \"NNP\"\n    ], \n    \"Hawley\": [\n        \"NNP\"\n    ], \n    \"upcountry\": [\n        \"JJ\"\n    ], \n    \"tenebrous\": [\n        \"JJ\"\n    ], \n    \"antipodes\": [\n        \"NNS\"\n    ], \n    \"Kanebo\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Millenarianism\": [\n        \"NN\"\n    ], \n    \"under-serviced\": [\n        \"JJ\"\n    ], \n    \"retentiveness\": [\n        \"NN\"\n    ], \n    \"wholesale-store\": [\n        \"JJ\"\n    ], \n    \"fluoropolymers\": [\n        \"NNS\"\n    ], \n    \"at-home\": [\n        \"JJ\"\n    ], \n    \"acetonemia\": [\n        \"NN\"\n    ], \n    \"photographs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"vent\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"marjoram\": [\n        \"NN\"\n    ], \n    \"Inlet\": [\n        \"NNP\"\n    ], \n    \"P-11\": [\n        \"NN\"\n    ], \n    \"Solving\": [\n        \"VBG\"\n    ], \n    \"legal-lending\": [\n        \"JJ\"\n    ], \n    \"half-sister\": [\n        \"NN\"\n    ], \n    \"nostalgia\": [\n        \"NN\"\n    ], \n    \"Gershwins\": [\n        \"NNP\"\n    ], \n    \"PERIOD\": [\n        \"NN\"\n    ], \n    \"Ormsby\": [\n        \"NNP\"\n    ], \n    \"land-use\": [\n        \"NN\"\n    ], \n    \"OLE\": [\n        \"NNP\"\n    ], \n    \"copier\": [\n        \"NN\"\n    ], \n    \"copies\": [\n        \"NNS\"\n    ], \n    \"armadillos\": [\n        \"NNS\"\n    ], \n    \"Leinberger\": [\n        \"NNP\"\n    ], \n    \"neutralized\": [\n        \"VBN\"\n    ], \n    \"Brooklyn\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stentorian\": [\n        \"JJ\"\n    ], \n    \"contemplative\": [\n        \"JJ\"\n    ], \n    \"copied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"tell-all\": [\n        \"JJ\"\n    ], \n    \"home.\": [\n        \"NN\"\n    ], \n    \"CFCs\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Fairchild\": [\n        \"NNP\"\n    ], \n    \"censor\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Zworykin\": [\n        \"NNP\"\n    ], \n    \"Boyce\": [\n        \"NNP\"\n    ], \n    \"ridden\": [\n        \"VBN\"\n    ], \n    \"player\": [\n        \"NN\"\n    ], \n    \"nosedived\": [\n        \"VBD\"\n    ], \n    \"angles\": [\n        \"NNS\"\n    ], \n    \"angler\": [\n        \"NN\"\n    ], \n    \"Stratton\": [\n        \"NNP\"\n    ], \n    \"PRECIOUS\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"payrolls\": [\n        \"NNS\"\n    ], \n    \"Heading\": [\n        \"VBG\"\n    ], \n    \"blackouts\": [\n        \"NNS\"\n    ], \n    \"homer\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"homes\": [\n        \"NNS\"\n    ], \n    \"write-in\": [\n        \"NN\"\n    ], \n    \"planetarium\": [\n        \"NN\"\n    ], \n    \"marches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"microcircuits\": [\n        \"NNS\"\n    ], \n    \"homey\": [\n        \"JJ\"\n    ], \n    \"appearance\": [\n        \"NN\"\n    ], \n    \"Yoneyama\": [\n        \"NNP\"\n    ], \n    \"woodgraining\": [\n        \"NN\"\n    ], \n    \"bond-trading\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mozambiquans\": [\n        \"NNS\"\n    ], \n    \"Shin-Daiwa\": [\n        \"NNP\"\n    ], \n    \"Crooked\": [\n        \"JJ\"\n    ], \n    \"unction\": [\n        \"NN\"\n    ], \n    \"UTILITIES\": [\n        \"NNP\"\n    ], \n    \"decamped\": [\n        \"VBD\"\n    ], \n    \"Baskerville\": [\n        \"NNP\"\n    ], \n    \"S.p.A.\": [\n        \"NNP\"\n    ], \n    \"contention\": [\n        \"NN\"\n    ], \n    \"begining\": [\n        \"NN\"\n    ], \n    \"Product\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Garden\": [\n        \"NNP\"\n    ], \n    \"Christi\": [\n        \"NNP\"\n    ], \n    \"landmarks\": [\n        \"NNS\"\n    ], \n    \"richness\": [\n        \"NN\"\n    ], \n    \"impressionistic\": [\n        \"JJ\"\n    ], \n    \"Bedbugs\": [\n        \"NNS\"\n    ], \n    \"Cleanth\": [\n        \"NNP\"\n    ], \n    \"prognostications\": [\n        \"NNS\"\n    ], \n    \"Produce\": [\n        \"VB\"\n    ], \n    \"Dismal\": [\n        \"JJ\"\n    ], \n    \"Pendant\": [\n        \"NNP\"\n    ], \n    \"Christy\": [\n        \"NNP\"\n    ], \n    \"Sunoco\": [\n        \"NNP\"\n    ], \n    \"neutralizes\": [\n        \"VBZ\"\n    ], \n    \"twelfth\": [\n        \"JJ\"\n    ], \n    \"frivolous\": [\n        \"JJ\"\n    ], \n    \"Natwest\": [\n        \"NNP\"\n    ], \n    \"slickly\": [\n        \"RB\"\n    ], \n    \"caters\": [\n        \"VBZ\"\n    ], \n    \"novels\": [\n        \"NNS\"\n    ], \n    \"shames\": [\n        \"NNS\"\n    ], \n    \"hospitals\": [\n        \"NNS\"\n    ], \n    \"Chevaline\": [\n        \"NNP\"\n    ], \n    \"fucken\": [\n        \"JJ\"\n    ], \n    \"Yokel\": [\n        \"NNP\"\n    ], \n    \"scholars\": [\n        \"NNS\"\n    ], \n    \"shamed\": [\n        \"VBN\"\n    ], \n    \"bi-monthly\": [\n        \"JJ\"\n    ], \n    \"insure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"untouchable\": [\n        \"JJ\"\n    ], \n    \"landlubber\": [\n        \"NN\"\n    ], \n    \"low-rate\": [\n        \"JJ\"\n    ], \n    \"forty-fold\": [\n        \"JJ\"\n    ], \n    \"thought\": [\n        \"VBD\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"showpiece\": [\n        \"NN\"\n    ], \n    \"pre-trial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"feudalistic\": [\n        \"JJ\"\n    ], \n    \"Bookings\": [\n        \"NNS\"\n    ], \n    \"Fairless\": [\n        \"NNP\"\n    ], \n    \"good-quality\": [\n        \"JJ\"\n    ], \n    \"DOWNSIZING\": [\n        \"NN\"\n    ], \n    \"peacefully\": [\n        \"RB\"\n    ], \n    \"barking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"red-tile\": [\n        \"JJ\"\n    ], \n    \"Harsco\": [\n        \"NNP\"\n    ], \n    \"Darth\": [\n        \"NNP\"\n    ], \n    \"profiteering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fingerprint\": [\n        \"NN\"\n    ], \n    \"domestic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bloodlust\": [\n        \"NN\"\n    ], \n    \"Federals\": [\n        \"NN\"\n    ], \n    \"ETV\": [\n        \"NNP\"\n    ], \n    \"Osnos\": [\n        \"NNP\"\n    ], \n    \"CDL\": [\n        \"NNP\"\n    ], \n    \"conjugates\": [\n        \"NNS\"\n    ], \n    \"network-wide\": [\n        \"JJ\"\n    ], \n    \"world-ignoring\": [\n        \"JJ\"\n    ], \n    \"affections\": [\n        \"NNS\"\n    ], \n    \"fast-shrinking\": [\n        \"JJ\"\n    ], \n    \"arbitraging\": [\n        \"VBG\"\n    ], \n    \"rebate\": [\n        \"NN\"\n    ], \n    \"conjugated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"good-will\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"scrimp\": [\n        \"VB\"\n    ], \n    \"Bushes\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"radiocarbon\": [\n        \"NN\"\n    ], \n    \"Sawyer\": [\n        \"NNP\"\n    ], \n    \"pit-run\": [\n        \"JJ\"\n    ], \n    \"dryer\": [\n        \"NN\"\n    ], \n    \"admonished\": [\n        \"VBD\"\n    ], \n    \"Stammering\": [\n        \"NN\"\n    ], \n    \"rumpled\": [\n        \"JJ\"\n    ], \n    \"oilworkers\": [\n        \"NNS\"\n    ], \n    \"idea-exchange\": [\n        \"NN\"\n    ], \n    \"journalism\": [\n        \"NN\"\n    ], \n    \"Takuma\": [\n        \"NNP\"\n    ], \n    \"Watterson\": [\n        \"NNP\"\n    ], \n    \"nation-building\": [\n        \"NN\"\n    ], \n    \"Employee-benefit\": [\n        \"JJ\"\n    ], \n    \"now-discontinued\": [\n        \"JJ\"\n    ], \n    \"journalist\": [\n        \"NN\"\n    ], \n    \"epoxy\": [\n        \"JJ\"\n    ], \n    \"wohaw\": [\n        \"NN\"\n    ], \n    \"Luxuries\": [\n        \"NNP\"\n    ], \n    \"awash\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Documents\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"force-feeding\": [\n        \"NN\"\n    ], \n    \"nine-months\": [\n        \"NNS\"\n    ], \n    \"alive\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"unpredictably\": [\n        \"RB\"\n    ], \n    \"Rosett\": [\n        \"NNP\"\n    ], \n    \"ostracism\": [\n        \"NN\"\n    ], \n    \"convey\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"convex\": [\n        \"JJ\"\n    ], \n    \"resulted...\": [\n        \":\"\n    ], \n    \"novelist\": [\n        \"NN\"\n    ], \n    \"dollar-profits\": [\n        \"JJ\"\n    ], \n    \"Coffee\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leasure\": [\n        \"NN\"\n    ], \n    \"Naclerio\": [\n        \"NNP\"\n    ], \n    \"bifurcated\": [\n        \"JJ\"\n    ], \n    \"marched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Tenderly\": [\n        \"RB\"\n    ], \n    \"economical\": [\n        \"JJ\"\n    ], \n    \"Sanitary\": [\n        \"NNP\"\n    ], \n    \"MANUFACTURING\": [\n        \"NNP\"\n    ], \n    \"ironies\": [\n        \"NNS\"\n    ], \n    \"Coffey\": [\n        \"NNP\"\n    ], \n    \"islander\": [\n        \"NN\"\n    ], \n    \"noise\": [\n        \"NN\"\n    ], \n    \"Killeen\": [\n        \"NNP\"\n    ], \n    \"Schlossberg\": [\n        \"NNP\"\n    ], \n    \"executive-legislative\": [\n        \"JJ\"\n    ], \n    \"buttoned\": [\n        \"VBN\"\n    ], \n    \"neurosurgeon\": [\n        \"NN\"\n    ], \n    \"Howick\": [\n        \"NNP\"\n    ], \n    \"Brancato\": [\n        \"NNP\"\n    ], \n    \"preventative\": [\n        \"JJ\"\n    ], \n    \"noisy\": [\n        \"JJ\"\n    ], \n    \"Fyffes\": [\n        \"NNP\"\n    ], \n    \"December\": [\n        \"NNP\"\n    ], \n    \"Vice-President\": [\n        \"NNP\"\n    ], \n    \"glade\": [\n        \"NN\"\n    ], \n    \"over-allotment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Noticias\": [\n        \"NNP\"\n    ], \n    \"work-a-day\": [\n        \"JJ\"\n    ], \n    \"engineless\": [\n        \"JJ\"\n    ], \n    \"one-dimensional\": [\n        \"JJ\"\n    ], \n    \"discard\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"J/NNP.I.\": [\n        \"JJ\"\n    ], \n    \"Medicare-eligible\": [\n        \"JJ\"\n    ], \n    \"projectors\": [\n        \"NNS\"\n    ], \n    \"Traitor\": [\n        \"NN\"\n    ], \n    \"childrens\": [\n        \"NNS\"\n    ], \n    \"mineralogy\": [\n        \"NN\"\n    ], \n    \"perspiring\": [\n        \"JJ\"\n    ], \n    \"chemists\": [\n        \"NNS\"\n    ], \n    \"cargo-handling\": [\n        \"NN\"\n    ], \n    \"guard\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Twilight\": [\n        \"NNP\"\n    ], \n    \"capital-reserve\": [\n        \"JJ\"\n    ], \n    \"well-baby\": [\n        \"JJ\"\n    ], \n    \"Stadium\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Scientists\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"perplexity\": [\n        \"NN\"\n    ], \n    \"donnybrook\": [\n        \"NN\"\n    ], \n    \"nonmedia\": [\n        \"NN\"\n    ], \n    \"Immunetech\": [\n        \"NNP\"\n    ], \n    \"micrograms\": [\n        \"NNS\"\n    ], \n    \"adolescent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Suzy\": [\n        \"NNP\"\n    ], \n    \"brides\": [\n        \"NNS\"\n    ], \n    \"Vanourek\": [\n        \"NNP\"\n    ], \n    \"impassively\": [\n        \"RB\"\n    ], \n    \"stimulative\": [\n        \"JJ\"\n    ], \n    \"McFarland\": [\n        \"NNP\"\n    ], \n    \"Varmus\": [\n        \"NNP\"\n    ], \n    \"typesetting\": [\n        \"NN\"\n    ], \n    \"Screenwriter\": [\n        \"NN\"\n    ], \n    \"earsplitting\": [\n        \"JJ\"\n    ], \n    \"self-righteous\": [\n        \"JJ\"\n    ], \n    \"anti-French\": [\n        \"JJ\"\n    ], \n    \"Jeffersonians\": [\n        \"NNPS\"\n    ], \n    \"Protracted\": [\n        \"JJ\"\n    ], \n    \"Syndic\": [\n        \"NNP\"\n    ], \n    \"artillerists\": [\n        \"NNS\"\n    ], \n    \"cut-throat\": [\n        \"JJ\"\n    ], \n    \"plague\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"commodities-related\": [\n        \"JJ\"\n    ], \n    \"strident\": [\n        \"JJ\"\n    ], \n    \"assets\": [\n        \"NNS\"\n    ], \n    \"THIDIU\": [\n        \"NNP\"\n    ], \n    \"free-travel\": [\n        \"JJ\"\n    ], \n    \"glory\": [\n        \"NN\"\n    ], \n    \"Camelot\": [\n        \"NNP\"\n    ], \n    \"French-born\": [\n        \"JJ\"\n    ], \n    \"Outwardly\": [\n        \"RB\"\n    ], \n    \"aristocratically\": [\n        \"RB\"\n    ], \n    \"trapezoid\": [\n        \"NN\"\n    ], \n    \"Intervention\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"durn\": [\n        \"JJ\"\n    ], \n    \"supreme\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pin\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"garter\": [\n        \"NN\"\n    ], \n    \"Rye\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ryc\": [\n        \"NNP\"\n    ], \n    \"pig\": [\n        \"NN\"\n    ], \n    \"SS-24\": [\n        \"NNP\"\n    ], \n    \"SS-25\": [\n        \"NNP\"\n    ], \n    \"Appellate\": [\n        \"NNP\"\n    ], \n    \"SS-20\": [\n        \"NNP\"\n    ], \n    \"pip\": [\n        \"UH\", \n        \"NN\"\n    ], \n    \"central-bank\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pit\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Wimbledon\": [\n        \"NNP\"\n    ], \n    \"rakish\": [\n        \"JJ\"\n    ], \n    \"claiming\": [\n        \"VBG\"\n    ], \n    \"forestry\": [\n        \"NN\"\n    ], \n    \"case-to-case\": [\n        \"JJ\"\n    ], \n    \"ellipses\": [\n        \"NNS\"\n    ], \n    \"motored\": [\n        \"VBD\"\n    ], \n    \"Jacksonville\": [\n        \"NNP\"\n    ], \n    \"stimulant\": [\n        \"NN\"\n    ], \n    \"Ry.\": [\n        \"NNP\"\n    ], \n    \"desecration\": [\n        \"NN\"\n    ], \n    \"Steward\": [\n        \"NN\"\n    ], \n    \"ecological\": [\n        \"JJ\"\n    ], \n    \"three-panel\": [\n        \"JJ\"\n    ], \n    \"medico\": [\n        \"NN\"\n    ], \n    \"That-a-way\": [\n        \"RB\"\n    ], \n    \"Stewart\": [\n        \"NNP\"\n    ], \n    \"Dragons\": [\n        \"NNP\"\n    ], \n    \"Private\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Ritterman\": [\n        \"NNP\"\n    ], \n    \"ironic...\": [\n        \":\"\n    ], \n    \"preachiness\": [\n        \"NN\"\n    ], \n    \"cookbook\": [\n        \"NN\"\n    ], \n    \"vehement\": [\n        \"JJ\"\n    ], \n    \"right-to-counsel\": [\n        \"JJ\"\n    ], \n    \"tanking\": [\n        \"VBG\"\n    ], \n    \"enzyme-like\": [\n        \"JJ\"\n    ], \n    \"maquilas\": [\n        \"NNS\"\n    ], \n    \"bunkmates\": [\n        \"NNS\"\n    ], \n    \"sun-baked\": [\n        \"JJ\"\n    ], \n    \"heliocentric\": [\n        \"JJ\"\n    ], \n    \"hating\": [\n        \"VBG\"\n    ], \n    \"frostbite\": [\n        \"NN\"\n    ], \n    \"nuclear-propulsion\": [\n        \"JJ\"\n    ], \n    \"Earthquakes\": [\n        \"NNS\"\n    ], \n    \"patches\": [\n        \"NNS\"\n    ], \n    \"whereever\": [\n        \"WRB\"\n    ], \n    \"Buccaneers\": [\n        \"NNS\"\n    ], \n    \"bureaucrats\": [\n        \"NNS\"\n    ], \n    \"Oka\": [\n        \"NNP\"\n    ], \n    \"patched\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"halogen\": [\n        \"NN\"\n    ], \n    \"public-affairs\": [\n        \"NNS\"\n    ], \n    \"already-developed\": [\n        \"JJ\"\n    ], \n    \"excused\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"dales\": [\n        \"NNS\"\n    ], \n    \"regrets\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"merchant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"risk\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Angeles-area\": [\n        \"JJ\"\n    ], \n    \"oxaloacetic\": [\n        \"JJ\"\n    ], \n    \"nodules\": [\n        \"NNS\"\n    ], \n    \"voice-over\": [\n        \"JJ\"\n    ], \n    \"Poquet\": [\n        \"NNP\"\n    ], \n    \"tree-planting\": [\n        \"NN\"\n    ], \n    \"leggings\": [\n        \"NNS\"\n    ], \n    \"Lorillard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"funneled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Brakke\": [\n        \"NN\"\n    ], \n    \"Antique\": [\n        \"NNP\"\n    ], \n    \"market-by-market\": [\n        \"JJ\"\n    ], \n    \"Harte-Hanks\": [\n        \"NNP\"\n    ], \n    \"Regiment\": [\n        \"NNP\"\n    ], \n    \"verie\": [\n        \"RB\"\n    ], \n    \"flashy\": [\n        \"JJ\"\n    ], \n    \"shockproof\": [\n        \"JJ\"\n    ], \n    \"PROPERTY\": [\n        \"NN\"\n    ], \n    \"hostile-bid\": [\n        \"JJ\"\n    ], \n    \"Elburn\": [\n        \"NNP\"\n    ], \n    \"non-service-connected\": [\n        \"JJ\"\n    ], \n    \"snafu\": [\n        \"NN\"\n    ], \n    \"surrounding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"electricians\": [\n        \"NNS\"\n    ], \n    \"louder\": [\n        \"JJR\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"Harlequins\": [\n        \"NNPS\"\n    ], \n    \"Heraclitus\": [\n        \"NNP\"\n    ], \n    \"expressive\": [\n        \"JJ\"\n    ], \n    \"tethers\": [\n        \"NNS\"\n    ], \n    \"Revulsion\": [\n        \"NNP\"\n    ], \n    \"Carpenters\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"engine...\": [\n        \":\"\n    ], \n    \"bronchiolar\": [\n        \"JJ\"\n    ], \n    \"plodding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"coasters\": [\n        \"NNS\"\n    ], \n    \"Strafaci\": [\n        \"NNP\"\n    ], \n    \"despoilers\": [\n        \"NNS\"\n    ], \n    \"Andress\": [\n        \"NNP\"\n    ], \n    \"mints\": [\n        \"NNS\"\n    ], \n    \"Plants\": [\n        \"NNS\"\n    ], \n    \"kicked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"orgies\": [\n        \"NNS\"\n    ], \n    \"responsiveness\": [\n        \"NN\"\n    ], \n    \"law-making\": [\n        \"NNS\"\n    ], \n    \"Blasingame\": [\n        \"NNP\"\n    ], \n    \"McCarran-Ferguson\": [\n        \"NNP\"\n    ], \n    \"Exportkredit\": [\n        \"NNP\"\n    ], \n    \"ramps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Scandinavian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"socialize\": [\n        \"VB\"\n    ], \n    \"B.C\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Utrecht\": [\n        \"NNP\"\n    ], \n    \"kicker\": [\n        \"NN\"\n    ], \n    \"non-taxable\": [\n        \"JJ\"\n    ], \n    \"overprotective\": [\n        \"JJ\"\n    ], \n    \"rightness\": [\n        \"NN\"\n    ], \n    \"arroyo\": [\n        \"NN\"\n    ], \n    \"monarch\": [\n        \"NN\"\n    ], \n    \"singled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"West-End\": [\n        \"NNP\"\n    ], \n    \"Pseudomonas\": [\n        \"NNS\"\n    ], \n    \"outpace\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"jogging\": [\n        \"NN\"\n    ], \n    \"analysts\": [\n        \"NNS\"\n    ], \n    \"mistake\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"hydrophobia\": [\n        \"NN\"\n    ], \n    \"Bennis\": [\n        \"NNP\"\n    ], \n    \"hydrophobic\": [\n        \"JJ\"\n    ], \n    \"Petty\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tenn\": [\n        \"NNP\"\n    ], \n    \"bad-expectations\": [\n        \"JJ\"\n    ], \n    \"perpetuated\": [\n        \"VBN\"\n    ], \n    \"Tend\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"canyonside\": [\n        \"NN\"\n    ], \n    \"Tens\": [\n        \"NNS\"\n    ], \n    \"perpetuates\": [\n        \"VBZ\"\n    ], \n    \"Rundfunkchor\": [\n        \"NNP\"\n    ], \n    \"Cleveland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"foreign-car\": [\n        \"NN\"\n    ], \n    \"codewords\": [\n        \"NNS\"\n    ], \n    \"Engelhard\": [\n        \"NNP\"\n    ], \n    \"compositions\": [\n        \"NNS\"\n    ], \n    \"Everyman\": [\n        \"NNP\"\n    ], \n    \"unnnt\": [\n        \"NN\"\n    ], \n    \"preserved\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Rheingold\": [\n        \"NNP\"\n    ], \n    \"Parisian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Olga\": [\n        \"NNP\"\n    ], \n    \"Bombus\": [\n        \"NNP\"\n    ], \n    \"bellringers\": [\n        \"NNS\"\n    ], \n    \"phony\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"phone\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Rounding\": [\n        \"VBG\"\n    ], \n    \"five-day\": [\n        \"JJ\"\n    ], \n    \"president-elect\": [\n        \"NN\"\n    ], \n    \"Eisenhhower\": [\n        \"NNP\"\n    ], \n    \"enjoying\": [\n        \"VBG\"\n    ], \n    \"left-centerfield\": [\n        \"JJ\"\n    ], \n    \"cleaner-burning\": [\n        \"JJ\"\n    ], \n    \"campers\": [\n        \"NNS\"\n    ], \n    \"Abalkin\": [\n        \"NNP\"\n    ], \n    \"Gottingen\": [\n        \"NNP\"\n    ], \n    \"daft\": [\n        \"JJ\"\n    ], \n    \"phrases\": [\n        \"NNS\"\n    ], \n    \"Perth-based\": [\n        \"JJ\"\n    ], \n    \"auto-loan\": [\n        \"JJ\"\n    ], \n    \"fortress\": [\n        \"NN\"\n    ], \n    \"decorative\": [\n        \"JJ\"\n    ], \n    \"inscription\": [\n        \"NN\"\n    ], \n    \"thankless\": [\n        \"JJ\"\n    ], \n    \"Ecolab\": [\n        \"NNP\"\n    ], \n    \"Leiden\": [\n        \"NN\"\n    ], \n    \"walkways\": [\n        \"NNS\"\n    ], \n    \"Jerry\": [\n        \"NNP\"\n    ], \n    \"Renoirs\": [\n        \"NNPS\"\n    ], \n    \"British-owned\": [\n        \"JJ\"\n    ], \n    \"woodpecker\": [\n        \"NN\"\n    ], \n    \"guarantee\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fleckenstein\": [\n        \"NNP\"\n    ], \n    \"Giraud\": [\n        \"NNP\"\n    ], \n    \"stint\": [\n        \"NN\"\n    ], \n    \"governor-elect\": [\n        \"NN\"\n    ], \n    \"Lortie\": [\n        \"NNP\"\n    ], \n    \"Miranda\": [\n        \"NNP\"\n    ], \n    \"once-private\": [\n        \"JJ\"\n    ], \n    \"T-72\": [\n        \"NN\"\n    ], \n    \"SbCs-type\": [\n        \"JJ\"\n    ], \n    \"kebabs\": [\n        \"NNS\"\n    ], \n    \"poker\": [\n        \"NN\"\n    ], \n    \"pokes\": [\n        \"VBZ\"\n    ], \n    \"Laurent\": [\n        \"NNP\"\n    ], \n    \"mouths\": [\n        \"NNS\"\n    ], \n    \"KRON\": [\n        \"NNP\"\n    ], \n    \"pokey\": [\n        \"JJ\"\n    ], \n    \"arthritis\": [\n        \"NN\"\n    ], \n    \"campgrounds\": [\n        \"NNS\"\n    ], \n    \"FORD\": [\n        \"NNP\"\n    ], \n    \"Emanuel\": [\n        \"NNP\"\n    ], \n    \"Seife\": [\n        \"NNP\"\n    ], \n    \"still-uncalculated\": [\n        \"JJ\"\n    ], \n    \"Laurene\": [\n        \"NNP\"\n    ], \n    \"arthritic\": [\n        \"JJ\"\n    ], \n    \"Around\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"systematization\": [\n        \"NN\"\n    ], \n    \"Fig.\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"acknowledged\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"ultimately\": [\n        \"RB\"\n    ], \n    \"unpunished\": [\n        \"JJ\"\n    ], \n    \"deepens\": [\n        \"VBZ\"\n    ], \n    \"acknowledges\": [\n        \"VBZ\"\n    ], \n    \"archaeology\": [\n        \"NN\"\n    ], \n    \"standard-issue\": [\n        \"JJ\"\n    ], \n    \"executed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"interpretation\": [\n        \"NN\"\n    ], \n    \"Salvadoran\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Valdese\": [\n        \"NNP\"\n    ], \n    \"sprout\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"over\": [\n        \"IN\", \n        \"RP\", \n        \"JJ\", \n        \"RP|RB\", \n        \"RB\"\n    ], \n    \"off-the-record\": [\n        \"JJ\"\n    ], \n    \"pound\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"sickle\": [\n        \"JJ\"\n    ], \n    \"net-benefit\": [\n        \"JJ\"\n    ], \n    \"sickly\": [\n        \"JJ\"\n    ], \n    \"obligational\": [\n        \"JJ\"\n    ], \n    \"executes\": [\n        \"VBZ\"\n    ], \n    \"oven\": [\n        \"NN\"\n    ], \n    \"Bible-emancipated\": [\n        \"JJ\"\n    ], \n    \"Tutunik\": [\n        \"NNP\"\n    ], \n    \"Mogg\": [\n        \"NNP\"\n    ], \n    \"outsized\": [\n        \"JJ\"\n    ], \n    \"hands-off-all-sweets\": [\n        \"NNS\"\n    ], \n    \"flagrante\": [\n        \"FW\"\n    ], \n    \"destroyer\": [\n        \"NN\"\n    ], \n    \"SAC\": [\n        \"NNP\"\n    ], \n    \"SAB\": [\n        \"NNP\"\n    ], \n    \"Barges\": [\n        \"NNS\"\n    ], \n    \"Cruelty\": [\n        \"NNP\"\n    ], \n    \"destroyed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Bargen\": [\n        \"NNP\"\n    ], \n    \"compensatory\": [\n        \"JJ\"\n    ], \n    \"Armenian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Tanaka\": [\n        \"NNP\"\n    ], \n    \"once-unprofitable\": [\n        \"JJ\"\n    ], \n    \"adventurously\": [\n        \"RB\"\n    ], \n    \"SAT\": [\n        \"NNP\"\n    ], \n    \"However\": [\n        \"RB\", \n        \"RBR\", \n        \"WRB\"\n    ], \n    \"Midwesco\": [\n        \"NNP\"\n    ], \n    \"Anglo-Argentine\": [\n        \"NNP\"\n    ], \n    \"payouts\": [\n        \"NNS\"\n    ], \n    \"uranium-waste\": [\n        \"JJ\"\n    ], \n    \"Martinsville\": [\n        \"NNP\"\n    ], \n    \"Curtain\": [\n        \"NNP\"\n    ], \n    \"bouts\": [\n        \"NNS\"\n    ], \n    \"rheum\": [\n        \"NN\"\n    ], \n    \"Annualized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"merchandisers\": [\n        \"NNS\"\n    ], \n    \"oversoftness\": [\n        \"NN\"\n    ], \n    \"Antithyroid\": [\n        \"JJ\"\n    ], \n    \"hermeneutics\": [\n        \"NN\"\n    ], \n    \"stinking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"fonts\": [\n        \"NNS\"\n    ], \n    \"training.\": [\n        \"NN\"\n    ], \n    \"meatpacking\": [\n        \"NN\"\n    ], \n    \"incentive-pay\": [\n        \"JJ\"\n    ], \n    \"dyeing\": [\n        \"NN\"\n    ], \n    \"capricious\": [\n        \"JJ\"\n    ], \n    \"TALKS\": [\n        \"VBZ\"\n    ], \n    \"Diffring\": [\n        \"NNP\"\n    ], \n    \"prohibit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Elton\": [\n        \"NNP\"\n    ], \n    \"tumbleweed\": [\n        \"NN\"\n    ], \n    \"independent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"stern-to\": [\n        \"RB\"\n    ], \n    \"subsoil\": [\n        \"NN\"\n    ], \n    \"banana-exporting\": [\n        \"JJ\"\n    ], \n    \"tinting\": [\n        \"NN\"\n    ], \n    \"Quickview\": [\n        \"NNP\"\n    ], \n    \"chemical-bomb\": [\n        \"NN\"\n    ], \n    \"Derel\": [\n        \"NNP\"\n    ], \n    \"Derek\": [\n        \"NNP\"\n    ], \n    \"hanged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Adolphus\": [\n        \"NNP\"\n    ], \n    \"truant\": [\n        \"JJ\"\n    ], \n    \"clothe\": [\n        \"VB\"\n    ], \n    \"Styles\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Idrocarburi\": [\n        \"NNP\"\n    ], \n    \"Ginn\": [\n        \"NNP\"\n    ], \n    \"ammoniac\": [\n        \"JJ\"\n    ], \n    \"Wrighting\": [\n        \"NN\"\n    ], \n    \"transplantable\": [\n        \"JJ\"\n    ], \n    \"Radetzky\": [\n        \"NNP\"\n    ], \n    \"integrative\": [\n        \"JJ\"\n    ], \n    \"bucking\": [\n        \"VBG\"\n    ], \n    \"Hurt\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"William\": [\n        \"NNP\"\n    ], \n    \"Blumenkrantz\": [\n        \"NNP\"\n    ], \n    \"Ozanne\": [\n        \"NNP\"\n    ], \n    \"Hurd\": [\n        \"NNP\"\n    ], \n    \"Sounder\": [\n        \"NNP\"\n    ], \n    \"re-created\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Cooler\": [\n        \"NNP\"\n    ], \n    \"then-market\": [\n        \"JJ\"\n    ], \n    \"effort...\": [\n        \":\"\n    ], \n    \"Folonari\": [\n        \"NNP\"\n    ], \n    \"re-creates\": [\n        \"VBZ\"\n    ], \n    \"formation\": [\n        \"NN\"\n    ], \n    \"time-limited\": [\n        \"JJ\"\n    ], \n    \"Tien\": [\n        \"NNP\"\n    ], \n    \"Percival\": [\n        \"NNP\"\n    ], \n    \"inside-the-Beltway\": [\n        \"NN\"\n    ], \n    \"BIGGER\": [\n        \"JJR\"\n    ], \n    \"vacationland\": [\n        \"NN\"\n    ], \n    \"Valparaiso\": [\n        \"NNP\"\n    ], \n    \"poetry-writing\": [\n        \"JJ\"\n    ], \n    \"machining\": [\n        \"NN\"\n    ], \n    \"recite\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Impact\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"organification\": [\n        \"NN\"\n    ], \n    \"Cannistraro\": [\n        \"NNP\"\n    ], \n    \"Sojourner\": [\n        \"NNP\"\n    ], \n    \"corrosion-protection\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"megalopolises\": [\n        \"NNS\"\n    ], \n    \"PORTING\": [\n        \"VBG\"\n    ], \n    \"Etienne-Emile\": [\n        \"NNP\"\n    ], \n    \"Calisto\": [\n        \"NNP\"\n    ], \n    \"Espre\": [\n        \"NNP\"\n    ], \n    \"sharpest\": [\n        \"JJS\"\n    ], \n    \"nip\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Shaving\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"mercury\": [\n        \"NN\"\n    ], \n    \"F.R\": [\n        \"NN\"\n    ], \n    \"Fitzpatrick-Davis\": [\n        \"NNP\"\n    ], \n    \"synthetic-diamond\": [\n        \"NN\"\n    ], \n    \"Thefts\": [\n        \"NNS\"\n    ], \n    \"After-the-fact\": [\n        \"JJ\"\n    ], \n    \"Berkowitz\": [\n        \"NNP\"\n    ], \n    \"F.C\": [\n        \"NNP\"\n    ], \n    \"wildly\": [\n        \"RB\"\n    ], \n    \"abstentions\": [\n        \"NNS\"\n    ], \n    \"percentage\": [\n        \"NN\"\n    ], \n    \"sidelining\": [\n        \"VBG\"\n    ], \n    \"acidified\": [\n        \"VBN\"\n    ], \n    \"Receipts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Search\": [\n        \"VB\"\n    ], \n    \"yuletide\": [\n        \"NN\"\n    ], \n    \"Burgsteinfurt\": [\n        \"NNP\"\n    ], \n    \"PW-2000\": [\n        \"NN\"\n    ], \n    \"esoteric\": [\n        \"JJ\"\n    ], \n    \"downsize\": [\n        \"VB\"\n    ], \n    \"Ties\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"collectives\": [\n        \"NNS\"\n    ], \n    \"Insurance-industry\": [\n        \"NN\"\n    ], \n    \"abandoning\": [\n        \"VBG\"\n    ], \n    \"piazza\": [\n        \"NN\"\n    ], \n    \"re-acquire\": [\n        \"VB\"\n    ], \n    \"classed\": [\n        \"VBN\"\n    ], \n    \"brokerage-stock\": [\n        \"NN\"\n    ], \n    \"strung\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"precipitously\": [\n        \"RB\"\n    ], \n    \"Romaniuk\": [\n        \"NNP\"\n    ], \n    \"headlands\": [\n        \"NNS\"\n    ], \n    \"classes\": [\n        \"NNS\"\n    ], \n    \"wisps\": [\n        \"NNS\"\n    ], \n    \"Silences\": [\n        \"NNS\"\n    ], \n    \"countess\": [\n        \"NN\"\n    ], \n    \"Galaxy\": [\n        \"NN\"\n    ], \n    \"rag\": [\n        \"NN\"\n    ], \n    \"Gerd\": [\n        \"NNP\"\n    ], \n    \"ran\": [\n        \"VBD\"\n    ], \n    \"Disposables\": [\n        \"NNS\"\n    ], \n    \"ram\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"raj\": [\n        \"NN\"\n    ], \n    \"Gero\": [\n        \"NNP\"\n    ], \n    \"raw\": [\n        \"JJ\"\n    ], \n    \"COUNSEL\": [\n        \"NN\"\n    ], \n    \"Spelman\": [\n        \"NNP\"\n    ], \n    \"temporary-help\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rap\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Hengst\": [\n        \"NNP\"\n    ], \n    \"plaster-of-Paris\": [\n        \"NN\"\n    ], \n    \"ray\": [\n        \"NN\"\n    ], \n    \"nipples\": [\n        \"NNS\"\n    ], \n    \"Kaolin\": [\n        \"NNP\"\n    ], \n    \"relapse\": [\n        \"NN\"\n    ], \n    \"Bibles\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Lehman\\\\/American\": [\n        \"NNP\"\n    ], \n    \"degenerates\": [\n        \"VBZ\"\n    ], \n    \"Slaughter\": [\n        \"NNP\"\n    ], \n    \"short-of-war\": [\n        \"JJ\"\n    ], \n    \"Ridiculous\": [\n        \"JJ\"\n    ], \n    \"nonmusical\": [\n        \"JJ\"\n    ], \n    \"glimpsed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"glands\": [\n        \"NNS\"\n    ], \n    \"Ogden\": [\n        \"NNP\"\n    ], \n    \"denominator\": [\n        \"NN\"\n    ], \n    \"Blimp\": [\n        \"NNP\"\n    ], \n    \"gerundial\": [\n        \"JJ\"\n    ], \n    \"Bikini\": [\n        \"NNP\"\n    ], \n    \"glimpses\": [\n        \"NNS\"\n    ], \n    \"Faulk\": [\n        \"NNP\"\n    ], \n    \"half-acre\": [\n        \"JJ\"\n    ], \n    \"philosophic\": [\n        \"JJ\"\n    ], \n    \"Biking\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"parting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"nudism\": [\n        \"NN\"\n    ], \n    \"constancy\": [\n        \"NN\"\n    ], \n    \"TRUST\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"out-of-alignment\": [\n        \"NN\"\n    ], \n    \"Sundome\": [\n        \"NNP\"\n    ], \n    \"centrex\": [\n        \"NN\"\n    ], \n    \"partition\": [\n        \"NN\"\n    ], \n    \"metal\": [\n        \"NN\"\n    ], \n    \"yearearlier\": [\n        \"JJ\"\n    ], \n    \"swerved\": [\n        \"VBD\"\n    ], \n    \"billion-franc\": [\n        \"NN\"\n    ], \n    \"shooing\": [\n        \"VBG\"\n    ], \n    \"payment-system\": [\n        \"NN\"\n    ], \n    \"inaccuracies\": [\n        \"NNS\"\n    ], \n    \"ORACLE\": [\n        \"NNP\"\n    ], \n    \"curio\": [\n        \"NN\"\n    ], \n    \"levying\": [\n        \"VBG\"\n    ], \n    \"high-intensity\": [\n        \"JJ\"\n    ], \n    \"currants\": [\n        \"NNS\"\n    ], \n    \"chariot\": [\n        \"NN\"\n    ], \n    \"contacted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hunched-up\": [\n        \"JJ\"\n    ], \n    \"labels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mutual-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"seawall\": [\n        \"NN\"\n    ], \n    \"white-water\": [\n        \"NN\"\n    ], \n    \"distillates\": [\n        \"NNS\"\n    ], \n    \"drawbridge\": [\n        \"NN\"\n    ], \n    \"availability\": [\n        \"NN\"\n    ], \n    \"och\": [\n        \"FW\"\n    ], \n    \"Korowin\": [\n        \"NNP\"\n    ], \n    \"faddish\": [\n        \"JJ\"\n    ], \n    \"Thereby\": [\n        \"RB\"\n    ], \n    \"Big\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bid\": [\n        \"NNP\"\n    ], \n    \"Bib\": [\n        \"NNP\"\n    ], \n    \"Bic\": [\n        \"NNP\"\n    ], \n    \"whiteface\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bix\": [\n        \"NNP\"\n    ], \n    \"Feodor\": [\n        \"NNP\"\n    ], \n    \"parlayed\": [\n        \"VBD\"\n    ], \n    \"Mayans\": [\n        \"NNS\"\n    ], \n    \"niche-market\": [\n        \"NN\"\n    ], \n    \"blue-collar\": [\n        \"JJ\"\n    ], \n    \"Dornier\": [\n        \"NNP\"\n    ], \n    \"velours\": [\n        \"NN\"\n    ], \n    \"Berger\": [\n        \"NNP\"\n    ], \n    \"crudity\": [\n        \"NN\"\n    ], \n    \"Lopukhov\": [\n        \"NNP\"\n    ], \n    \"burden-sharing\": [\n        \"NN\"\n    ], \n    \"airstrips\": [\n        \"NNS\"\n    ], \n    \"Catalina\": [\n        \"NNP\"\n    ], \n    \"reconstruct\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ricardo\": [\n        \"NNP\"\n    ], \n    \"fabrics\": [\n        \"NNS\"\n    ], \n    \"steamer\": [\n        \"NN\"\n    ], \n    \"Batista\": [\n        \"NNP\"\n    ], \n    \"price-conscious\": [\n        \"JJ\"\n    ], \n    \"diethylstilbestrol\": [\n        \"NN\"\n    ], \n    \"yellow-dwarf\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"idiotic\": [\n        \"JJ\"\n    ], \n    \"easy-to-operate\": [\n        \"JJ\"\n    ], \n    \"gages\": [\n        \"NNS\"\n    ], \n    \"mergers\": [\n        \"NNS\"\n    ], \n    \"adjustable-rate\": [\n        \"JJ\"\n    ], \n    \"pummel\": [\n        \"VB\"\n    ], \n    \"Lego\": [\n        \"NNP\"\n    ], \n    \"Radhakrishnan\": [\n        \"NNP\"\n    ], \n    \"swears\": [\n        \"VBZ\"\n    ], \n    \"Morozov\": [\n        \"NNP\"\n    ], \n    \"upturned\": [\n        \"JJ\"\n    ], \n    \"Performance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Metzenbaum\": [\n        \"NNP\"\n    ], \n    \"Kennedy-Waxman\": [\n        \"NNP\"\n    ], \n    \"Hanks\": [\n        \"NNP\"\n    ], \n    \"tersely\": [\n        \"RB\"\n    ], \n    \"malaria\": [\n        \"NN\"\n    ], \n    \"Wachtler\": [\n        \"NNP\"\n    ], \n    \"Arianists\": [\n        \"NNS\"\n    ], \n    \"HIV-1\": [\n        \"NNP\"\n    ], \n    \"paralinguistic\": [\n        \"JJ\"\n    ], \n    \"Breger\": [\n        \"NNP\"\n    ], \n    \"incomprehension\": [\n        \"NN\"\n    ], \n    \"pocketbooks\": [\n        \"NNS\"\n    ], \n    \"Hays\": [\n        \"NNP\"\n    ], \n    \"Documentation\": [\n        \"NNP\"\n    ], \n    \"listlessly\": [\n        \"RB\"\n    ], \n    \"Advani\": [\n        \"NNP\"\n    ], \n    \"Torres\": [\n        \"NNP\"\n    ], \n    \"Chevy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dynamo\": [\n        \"NN\"\n    ], \n    \"outages\": [\n        \"NNS\"\n    ], \n    \"Gumbel\": [\n        \"NNP\"\n    ], \n    \"devout\": [\n        \"JJ\"\n    ], \n    \"Giustiniani\": [\n        \"NNP\"\n    ], \n    \"sipped\": [\n        \"VBD\"\n    ], \n    \"rhythms\": [\n        \"NNS\"\n    ], \n    \"Datuk\": [\n        \"NNP\"\n    ], \n    \"ventricular\": [\n        \"JJ\"\n    ], \n    \"W.I.\": [\n        \"NNP\"\n    ], \n    \"HCA\": [\n        \"NNP\"\n    ], \n    \"colloquium\": [\n        \"NN\"\n    ], \n    \"unheeded\": [\n        \"JJ\"\n    ], \n    \"re-creactions\": [\n        \"NNS\"\n    ], \n    \"Bergson\": [\n        \"NNP\"\n    ], \n    \"Mohamed\": [\n        \"NNP\"\n    ], \n    \"Zooey\": [\n        \"NNP\"\n    ], \n    \"suggest\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kanin\": [\n        \"NNP\"\n    ], \n    \"Torrey\": [\n        \"NNP\"\n    ], \n    \"vexed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"reconstructs\": [\n        \"VBZ\"\n    ], \n    \"Zulu\": [\n        \"NNP\"\n    ], \n    \"Aristotelean-Thomistic\": [\n        \"JJ\"\n    ], \n    \"occupants\": [\n        \"NNS\"\n    ], \n    \"vexes\": [\n        \"VBZ\"\n    ], \n    \"comprehension\": [\n        \"NN\"\n    ], \n    \"Hmong\": [\n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Prentice\": [\n        \"NNP\"\n    ], \n    \"Seynes\": [\n        \"NNP\"\n    ], \n    \"bureaucratic\": [\n        \"JJ\"\n    ], \n    \"bingo\": [\n        \"NN\"\n    ], \n    \"aback\": [\n        \"RB\"\n    ], \n    \"incomparable\": [\n        \"JJ\"\n    ], \n    \"Lambert\": [\n        \"NNP\"\n    ], \n    \"binge\": [\n        \"NN\"\n    ], \n    \"rebounded\": [\n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"counter-apparatus\": [\n        \"NN\"\n    ], \n    \"Kimihide\": [\n        \"NNP\"\n    ], \n    \"blower\": [\n        \"NN\"\n    ], \n    \"general-practice\": [\n        \"JJ\"\n    ], \n    \"post-chemotherapy\": [\n        \"JJ\"\n    ], \n    \"incomparably\": [\n        \"RB\"\n    ], \n    \"containers\": [\n        \"NNS\"\n    ], \n    \"Unitil\": [\n        \"NNP\"\n    ], \n    \"topgallant\": [\n        \"NN\"\n    ], \n    \"fleeting\": [\n        \"JJ\"\n    ], \n    \"Staples\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Birnbaum\": [\n        \"NNP\"\n    ], \n    \"bereavement\": [\n        \"NN\"\n    ], \n    \"Dey\": [\n        \"NNP\"\n    ], \n    \"lumberyard\": [\n        \"NN\"\n    ], \n    \"evidenced\": [\n        \"VBN\"\n    ], \n    \"craft\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Gerosa\": [\n        \"NNP\"\n    ], \n    \"benefits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"budged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"high-altitude\": [\n        \"JJ\"\n    ], \n    \"teapot\": [\n        \"NN\"\n    ], \n    \"pre-market\": [\n        \"JJ\"\n    ], \n    \"Secretary\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deliberations\": [\n        \"NNS\"\n    ], \n    \"unelected\": [\n        \"JJ\"\n    ], \n    \"information-service\": [\n        \"NN\"\n    ], \n    \"hyperactive\": [\n        \"JJ\"\n    ], \n    \"heartland\": [\n        \"NN\"\n    ], \n    \"Bengalis\": [\n        \"NNPS\"\n    ], \n    \"mine-safety\": [\n        \"JJ\"\n    ], \n    \"thousandth\": [\n        \"JJ\"\n    ], \n    \"penultimate\": [\n        \"JJ\"\n    ], \n    \"Darkhorse\": [\n        \"NNP\"\n    ], \n    \"beepers\": [\n        \"NNS\"\n    ], \n    \"last-season\": [\n        \"JJ\"\n    ], \n    \"Owning\": [\n        \"VBG\"\n    ], \n    \"uninterruptible\": [\n        \"JJ\"\n    ], \n    \"brewer\": [\n        \"NN\"\n    ], \n    \"Naphta\": [\n        \"NNP\"\n    ], \n    \"Menu\": [\n        \"NNP\"\n    ], \n    \"System-specific\": [\n        \"JJ\"\n    ], \n    \"brewed\": [\n        \"VBN\"\n    ], \n    \"Candidates\": [\n        \"NNS\"\n    ], \n    \"punctuality\": [\n        \"NN\"\n    ], \n    \"moderate-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Refinery\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"bonanzas\": [\n        \"NNS\"\n    ], \n    \"Abrams\": [\n        \"NNP\"\n    ], \n    \"Rapping\": [\n        \"VBG\"\n    ], \n    \"furled\": [\n        \"VBD\"\n    ], \n    \"foursome\": [\n        \"NN\"\n    ], \n    \"bhoy\": [\n        \"NN\"\n    ], \n    \"Rochford\": [\n        \"NNP\"\n    ], \n    \"ingested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Worlds\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"hyperventilating\": [\n        \"NN\"\n    ], \n    \"passbooks\": [\n        \"NNS\"\n    ], \n    \"scientifically-trained\": [\n        \"JJ\"\n    ], \n    \"New-issue\": [\n        \"JJ\"\n    ], \n    \"AIEE\": [\n        \"NNP\"\n    ], \n    \"Nestle\": [\n        \"NNP\"\n    ], \n    \"CanadianImmigration\": [\n        \"NNP\"\n    ], \n    \"characters\": [\n        \"NNS\"\n    ], \n    \"mentions\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"workings\": [\n        \"NNS\"\n    ], \n    \"dozing\": [\n        \"VBG\"\n    ], \n    \"common-sense\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mentioning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Twinkies\": [\n        \"NNPS\"\n    ], \n    \"incredulously\": [\n        \"RB\"\n    ], \n    \"Watergate-beleaguered\": [\n        \"JJ\"\n    ], \n    \"woodworms\": [\n        \"NNS\"\n    ], \n    \"kibbutz-made\": [\n        \"JJ\"\n    ], \n    \"property-related\": [\n        \"JJ\"\n    ], \n    \"direct-mail-mogul\": [\n        \"NN\"\n    ], \n    \"anti-Noriega\": [\n        \"JJ\"\n    ], \n    \"medics\": [\n        \"NNS\"\n    ], \n    \"uncoached\": [\n        \"JJ\"\n    ], \n    \"Corault\": [\n        \"NNP\"\n    ], \n    \"die-hards\": [\n        \"NNS\"\n    ], \n    \"year-to-date\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"laptop\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"transporting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Methodists\": [\n        \"NNPS\"\n    ], \n    \"discussant\": [\n        \"NN\"\n    ], \n    \"resigning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Oleanders\": [\n        \"NNS\"\n    ], \n    \"for...\": [\n        \":\"\n    ], \n    \"functionally\": [\n        \"RB\"\n    ], \n    \"vices\": [\n        \"NNS\"\n    ], \n    \"Protestants\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"polarization\": [\n        \"NN\"\n    ], \n    \"UIC\": [\n        \"NNP\"\n    ], \n    \"cholesterol-free\": [\n        \"JJ\"\n    ], \n    \"monitored\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"three-night\": [\n        \"JJ\"\n    ], \n    \"furry\": [\n        \"JJ\"\n    ], \n    \"groused\": [\n        \"VBD\"\n    ], \n    \"explanatory\": [\n        \"JJ\"\n    ], \n    \"Corso\": [\n        \"NNP\"\n    ], \n    \"Flint\": [\n        \"NNP\"\n    ], \n    \"Corsi\": [\n        \"NNP\"\n    ], \n    \"caravan\": [\n        \"NN\"\n    ], \n    \"Philip\": [\n        \"NNP\"\n    ], \n    \"breakfasted\": [\n        \"VBD\"\n    ], \n    \"grouses\": [\n        \"VBZ\"\n    ], \n    \"erratically\": [\n        \"RB\"\n    ], \n    \"reorganizations\": [\n        \"NNS\"\n    ], \n    \"Hekhmatyar\": [\n        \"NNP\"\n    ], \n    \"Marrakesh\": [\n        \"NNP\"\n    ], \n    \"rubicund\": [\n        \"JJ\"\n    ], \n    \"inescapable\": [\n        \"JJ\"\n    ], \n    \"Corona\": [\n        \"NNP\"\n    ], \n    \"prominant\": [\n        \"JJ\"\n    ], \n    \"salesparson\": [\n        \"NN\"\n    ], \n    \"cruzados\": [\n        \"NNS\"\n    ], \n    \"Invalid\": [\n        \"NNP\"\n    ], \n    \"wholesaler\": [\n        \"NN\"\n    ], \n    \"incontrovertible\": [\n        \"JJ\"\n    ], \n    \"officals\": [\n        \"NNS\"\n    ], \n    \"Nerds\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Belo-Universal\": [\n        \"NNP\"\n    ], \n    \"atmospheres\": [\n        \"NNS\"\n    ], \n    \"Crimea\": [\n        \"NNP\"\n    ], \n    \"Bomb\": [\n        \"VB\"\n    ], \n    \"headline-grabbing\": [\n        \"JJ\"\n    ], \n    \"Tears\": [\n        \"NNS\"\n    ], \n    \"Finns\": [\n        \"NNPS\"\n    ], \n    \"Aguais\": [\n        \"NNP\"\n    ], \n    \"willowy\": [\n        \"JJ\"\n    ], \n    \"Milkaukee\": [\n        \"NNP\"\n    ], \n    \"crudest\": [\n        \"JJS\"\n    ], \n    \"incumbents\": [\n        \"NNS\"\n    ], \n    \"utmosts\": [\n        \"NNS\"\n    ], \n    \"HP\": [\n        \"NNP\"\n    ], \n    \"Pius\": [\n        \"NNP\"\n    ], \n    \"HK\": [\n        \"NNP\"\n    ], \n    \"HI\": [\n        \"NNP\"\n    ], \n    \"HN\": [\n        \"NNP\"\n    ], \n    \"HM\": [\n        \"NNP\"\n    ], \n    \"Autocoder\": [\n        \"NN\"\n    ], \n    \"advertise\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"HF\": [\n        \"NNP\"\n    ], \n    \"perfected\": [\n        \"VBN\"\n    ], \n    \"HD\": [\n        \"NNP\"\n    ], \n    \"HE\": [\n        \"PRP\"\n    ], \n    \"nobleman\": [\n        \"NN\"\n    ], \n    \"securities\": [\n        \"NNS\"\n    ], \n    \"fingerprinting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"time-poor\": [\n        \"JJ\"\n    ], \n    \"Hu\": [\n        \"NNP\"\n    ], \n    \"ubiquity\": [\n        \"NN\"\n    ], \n    \"Hi\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"Ho\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"marauders\": [\n        \"NNS\"\n    ], \n    \"Begbick\": [\n        \"NNP\"\n    ], \n    \"booking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"He\": [\n        \"PRP\", \n        \"NNP\"\n    ], \n    \"plights\": [\n        \"NNS\"\n    ], \n    \"weasel-worded\": [\n        \"JJ\"\n    ], \n    \"searchingly\": [\n        \"RB\"\n    ], \n    \"supermachine\": [\n        \"NN\"\n    ], \n    \"Sandner\": [\n        \"NNP\"\n    ], \n    \"erotica\": [\n        \"NNS\"\n    ], \n    \"Deductible\": [\n        \"JJ\"\n    ], \n    \"homewards\": [\n        \"RB\"\n    ], \n    \"Commodities\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Gaston\": [\n        \"NNP\"\n    ], \n    \"Tassinari\": [\n        \"NNP\"\n    ], \n    \"hutments\": [\n        \"NNS\"\n    ], \n    \"plunging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"H.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Venneboerger\": [\n        \"NNP\"\n    ], \n    \"Duverger\": [\n        \"NNP\"\n    ], \n    \"steadily\": [\n        \"RB\"\n    ], \n    \"Bess\": [\n        \"NNP\"\n    ], \n    \"efforts\": [\n        \"NNS\"\n    ], \n    \"twitch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"curry\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Best\": [\n        \"JJS\", \n        \"NNP\", \n        \"RBS|JJS\", \n        \"RBS\"\n    ], \n    \"loan-officer\": [\n        \"NN\"\n    ], \n    \"Provided\": [\n        \"VBN\"\n    ], \n    \"Touches\": [\n        \"VBZ\"\n    ], \n    \"SERVICE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"presence\": [\n        \"NN\"\n    ], \n    \"lunatic-fringe\": [\n        \"JJ\"\n    ], \n    \"shaken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"bucket-shop\": [\n        \"JJ\"\n    ], \n    \"Pattison\": [\n        \"NNP\"\n    ], \n    \"UNRESOLVED\": [\n        \"JJ\"\n    ], \n    \"free-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Puts\": [\n        \"VBZ\"\n    ], \n    \"outmatched\": [\n        \"VBD\"\n    ], \n    \"much-anticipated\": [\n        \"JJ\"\n    ], \n    \"indispensable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lambskin\": [\n        \"NN\"\n    ], \n    \"aquisitions\": [\n        \"NNS\"\n    ], \n    \"anti-war-related\": [\n        \"JJ\"\n    ], \n    \"tacks\": [\n        \"NNS\"\n    ], \n    \"Mennis\": [\n        \"NNP\"\n    ], \n    \"synthesis\": [\n        \"NN\"\n    ], \n    \"Rocky\": [\n        \"NNP\"\n    ], \n    \"abysmal\": [\n        \"JJ\"\n    ], \n    \"differences\": [\n        \"NNS\"\n    ], \n    \"removes\": [\n        \"VBZ\"\n    ], \n    \"Zurkuhlen\": [\n        \"NNP\"\n    ], \n    \"Peasant\": [\n        \"NNP\"\n    ], \n    \"uncle\": [\n        \"NN\"\n    ], \n    \"outfox\": [\n        \"VB\"\n    ], \n    \"tacky\": [\n        \"JJ\"\n    ], \n    \"sustained\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"removed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Bascom\": [\n        \"NNP\"\n    ], \n    \"U.M.T.\": [\n        \"NN\"\n    ], \n    \"Fired\": [\n        \"VBN\"\n    ], \n    \"product-registration\": [\n        \"NN\"\n    ], \n    \"muster\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"prowl\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"higher-salaried\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"coconut-lime\": [\n        \"JJ\"\n    ], \n    \"Fires\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"BRK\": [\n        \"NNP\"\n    ], \n    \"flappers\": [\n        \"NNS\"\n    ], \n    \"precious\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"LaMantia\": [\n        \"NNP\"\n    ], \n    \"CAROLG\": [\n        \"NNP\"\n    ], \n    \"starchy\": [\n        \"JJ\"\n    ], \n    \"gagline\": [\n        \"NN\"\n    ], \n    \"penal\": [\n        \"JJ\"\n    ], \n    \"trim\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"trio\": [\n        \"NN\"\n    ], \n    \"believably\": [\n        \"RB\"\n    ], \n    \"Resnik\": [\n        \"NNP\"\n    ], \n    \"nineteen-year-old\": [\n        \"JJ\"\n    ], \n    \"showin\": [\n        \"NN\"\n    ], \n    \"Hudson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dissidents\": [\n        \"NNS\"\n    ], \n    \"escutcheons\": [\n        \"NNS\"\n    ], \n    \"panic-driven\": [\n        \"JJ\"\n    ], \n    \"Europeanization\": [\n        \"NN\"\n    ], \n    \"bio-medicine\": [\n        \"NN\"\n    ], \n    \"believable\": [\n        \"JJ\"\n    ], \n    \"boodleoo\": [\n        \"UH\"\n    ], \n    \"bearishness\": [\n        \"NN\"\n    ], \n    \"check\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"tris\": [\n        \"NNS\"\n    ], \n    \"constructed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rd.\": [\n        \"NNP\"\n    ], \n    \"detriments\": [\n        \"NNS\"\n    ], \n    \"tip\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Steinkuhler\": [\n        \"NNP\"\n    ], \n    \"tin\": [\n        \"NN\"\n    ], \n    \"stagnant\": [\n        \"JJ\"\n    ], \n    \"tie\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"MARYLAND\": [\n        \"NNP\"\n    ], \n    \"Kincannon\": [\n        \"NNP\"\n    ], \n    \"Jewishness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"dissonances\": [\n        \"NNS\"\n    ], \n    \"phoenix\": [\n        \"NN\"\n    ], \n    \"loan-loss\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"uniformly\": [\n        \"RB\"\n    ], \n    \"Windflower\": [\n        \"NNP\"\n    ], \n    \"wisecracked\": [\n        \"VBD\"\n    ], \n    \"Boase\": [\n        \"NNP\"\n    ], \n    \"dullest\": [\n        \"JJS\"\n    ], \n    \"magpies\": [\n        \"NNS\"\n    ], \n    \"multi-phase\": [\n        \"JJ\"\n    ], \n    \"hashing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Salon\": [\n        \"NNP\"\n    ], \n    \"portends\": [\n        \"VBZ\"\n    ], \n    \"longer\": [\n        \"RB\", \n        \",\", \n        \"JJR\", \n        \"RBR\"\n    ], \n    \"fill-in-your-favorite-epithet\": [\n        \"JJ\"\n    ], \n    \"Pollitt\": [\n        \"NNP\"\n    ], \n    \"landed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"longed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"great-nieces\": [\n        \"NNS\"\n    ], \n    \"grisly\": [\n        \"JJ\"\n    ], \n    \"effluents\": [\n        \"NNS\"\n    ], \n    \"premeditated\": [\n        \"JJ\"\n    ], \n    \"unimpeded\": [\n        \"JJ\"\n    ], \n    \"Loftier\": [\n        \"JJR\"\n    ], \n    \"tongue-in-cheek\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Newsstands\": [\n        \"NNS\"\n    ], \n    \"business-minded\": [\n        \"JJ\"\n    ], \n    \"computation\": [\n        \"NN\"\n    ], \n    \"pseudophloem\": [\n        \"NN\"\n    ], \n    \"Sherry\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"swollen-looking\": [\n        \"JJ\"\n    ], \n    \"Today\": [\n        \"NN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"Dad\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dae\": [\n        \"NNP\"\n    ], \n    \"Dag\": [\n        \"NNP\"\n    ], \n    \"essentials\": [\n        \"NNS\"\n    ], \n    \"helio-copters\": [\n        \"NNS\"\n    ], \n    \"Dan\": [\n        \"NNP\"\n    ], \n    \"Dai\": [\n        \"NNP\"\n    ], \n    \"Standard\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Boredom\": [\n        \"NN\"\n    ], \n    \"Das\": [\n        \"NNP\"\n    ], \n    \"Insurers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Day\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"non-black\": [\n        \"JJ\"\n    ], \n    \"furrows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"MEASUREX\": [\n        \"NNP\"\n    ], \n    \"credit-tightening\": [\n        \"NN\"\n    ], \n    \"Micelles\": [\n        \"NNS\"\n    ], \n    \"Rheumatics\": [\n        \"NN|NNS\"\n    ], \n    \"Chirac\": [\n        \"NNP\"\n    ], \n    \"bluffs\": [\n        \"NNS\"\n    ], \n    \"headquarter\": [\n        \"JJ\"\n    ], \n    \"Atari\": [\n        \"NNP\"\n    ], \n    \"pseudo-anthropological\": [\n        \"JJ\"\n    ], \n    \"intellectuality\": [\n        \"NN\"\n    ], \n    \"Bronfmans\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"penises\": [\n        \"NNS\"\n    ], \n    \"Secure\": [\n        \"VB\"\n    ], \n    \"Canoe\": [\n        \"NNP\"\n    ], \n    \"Kron\": [\n        \"NNP\"\n    ], \n    \"firmwide\": [\n        \"RB\"\n    ], \n    \"registered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"culminating\": [\n        \"VBG\"\n    ], \n    \"F111\": [\n        \"NN\"\n    ], \n    \"planning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"symposiums\": [\n        \"NNS\"\n    ], \n    \"quick\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"eroding\": [\n        \"VBG\"\n    ], \n    \"phrasing\": [\n        \"NN\"\n    ], \n    \"Talleyrand\": [\n        \"NNP\"\n    ], \n    \"Antenne\": [\n        \"NNP\"\n    ], \n    \"delineaments\": [\n        \"NNS\"\n    ], \n    \"two-week\": [\n        \"JJ\"\n    ], \n    \"Katsanos\": [\n        \"NNP\"\n    ], \n    \"sucks\": [\n        \"VBZ\"\n    ], \n    \"public-interest\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"steelmakers\": [\n        \"NNS\"\n    ], \n    \"potato-supplier\": [\n        \"NN\"\n    ], \n    \"Colossians\": [\n        \"NNPS\"\n    ], \n    \"stands\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Heorot\": [\n        \"NNP\"\n    ], \n    \"nationalized\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unripe\": [\n        \"JJ\"\n    ], \n    \"contracted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"scads\": [\n        \"NNS\"\n    ], \n    \"Federico\": [\n        \"NNP\"\n    ], \n    \"nearness\": [\n        \"NN\"\n    ], \n    \"Karches\": [\n        \"NNP\"\n    ], \n    \"Karcher\": [\n        \"NNP\"\n    ], \n    \"Podger\": [\n        \"NNP\"\n    ], \n    \"reply\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"outlandishly\": [\n        \"RB\"\n    ], \n    \"Groom\": [\n        \"NNP\"\n    ], \n    \"custom-chip\": [\n        \"JJ\"\n    ], \n    \"once-spare\": [\n        \"JJ\"\n    ], \n    \"alkaline\": [\n        \"JJ\"\n    ], \n    \"Age\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dazed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Aga\": [\n        \"NNP\"\n    ], \n    \"long-termers\": [\n        \"NNS\"\n    ], \n    \"water\": [\n        \"NN\", \n        \"VB\", \n        \"JJ\"\n    ], \n    \"attainment\": [\n        \"NN\"\n    ], \n    \"Miyata\": [\n        \"NNP\"\n    ], \n    \"baseball\": [\n        \"NN\"\n    ], \n    \"Gauged\": [\n        \"VBN\"\n    ], \n    \"refuse-littered\": [\n        \"JJ\"\n    ], \n    \"supplying\": [\n        \"VBG\"\n    ], \n    \"avenging\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"sleepwalk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bygone\": [\n        \"JJ\"\n    ], \n    \"expressly\": [\n        \"RB\"\n    ], \n    \"grounded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"blotch\": [\n        \"NN\"\n    ], \n    \"restructuring\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\", \n        \"VBG|NN\"\n    ], \n    \"binomial\": [\n        \"NN\"\n    ], \n    \"Lemans\": [\n        \"NNP\"\n    ], \n    \"potable\": [\n        \"JJ\"\n    ], \n    \"world-renowned\": [\n        \"JJ\"\n    ], \n    \"mimicked\": [\n        \"VBN\"\n    ], \n    \"Unione\": [\n        \"NNP\"\n    ], \n    \"unbidden\": [\n        \"JJ\"\n    ], \n    \"Justice\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cover-Up\": [\n        \"NNP\"\n    ], \n    \"expletive\": [\n        \"NN\"\n    ], \n    \"Unions\": [\n        \"NNS\"\n    ], \n    \"bad-risk\": [\n        \"JJ\"\n    ], \n    \"conventional-type\": [\n        \"JJ\"\n    ], \n    \"transferrable\": [\n        \"JJ\"\n    ], \n    \"Import\": [\n        \"NN\"\n    ], \n    \"swallowed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"wrecking\": [\n        \"VBG\"\n    ], \n    \"Townley\": [\n        \"NNP\"\n    ], \n    \"third-quarter\": [\n        \"JJ\", \n        \"NN\", \n        \"NN|JJ\"\n    ], \n    \"fifty-pound\": [\n        \"JJ\"\n    ], \n    \"unsheathe\": [\n        \"VB\"\n    ], \n    \"Zeisler\": [\n        \"NNP\"\n    ], \n    \"frothy\": [\n        \"JJ\"\n    ], \n    \"memory\": [\n        \"NN\"\n    ], \n    \"certiorari\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"smeared\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"smudged\": [\n        \"JJ\"\n    ], \n    \"October\": [\n        \"NNP\"\n    ], \n    \"reworking\": [\n        \"NN\"\n    ], \n    \"conductor\": [\n        \"NN\"\n    ], \n    \"sessions\": [\n        \"NNS\"\n    ], \n    \"clicking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"outputs\": [\n        \"NNS\"\n    ], \n    \"cashier\": [\n        \"NN\"\n    ], \n    \"mainline\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drown\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"first-hand\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"insights\": [\n        \"NNS\"\n    ], \n    \"Fourth-quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dialed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"chignon\": [\n        \"NN\"\n    ], \n    \"reprimanding\": [\n        \"VBG\"\n    ], \n    \"radon\": [\n        \"NN\"\n    ], \n    \"flagship\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nonunion\": [\n        \"JJ\"\n    ], \n    \"rainstorm\": [\n        \"NN\"\n    ], \n    \"Safford\": [\n        \"NNP\"\n    ], \n    \"Antilles\": [\n        \"NNPS\"\n    ], \n    \"streak\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"earphone\": [\n        \"NN\"\n    ], \n    \"stream\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"downfall\": [\n        \"NN\"\n    ], \n    \"Media\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"expectant\": [\n        \"JJ\"\n    ], \n    \"Wonham\": [\n        \"NNP\"\n    ], \n    \"Borscht\": [\n        \"NNP\"\n    ], \n    \"Ushikubo\": [\n        \"NNP\"\n    ], \n    \"major-frauds\": [\n        \"JJ\"\n    ], \n    \"quacks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"conversely\": [\n        \"RB\"\n    ], \n    \"Thoroughbred\": [\n        \"NNP\"\n    ], \n    \"living-room\": [\n        \"NN\"\n    ], \n    \"tip-toe\": [\n        \"NN\"\n    ], \n    \"Terms\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"front-back\": [\n        \"JJ\"\n    ], \n    \"Mihalek\": [\n        \"NNP\"\n    ], \n    \"inheritance\": [\n        \"NN\"\n    ], \n    \"protectionists\": [\n        \"NNS\"\n    ], \n    \"secured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"unwire\": [\n        \"VB\"\n    ], \n    \"Fruit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Shvartzer\": [\n        \"NNP\"\n    ], \n    \"unappreciated\": [\n        \"JJ\"\n    ], \n    \"Traps\": [\n        \"NNS\"\n    ], \n    \"cocktail\": [\n        \"NN\"\n    ], \n    \"marketability\": [\n        \"NN\"\n    ], \n    \"Horizons\": [\n        \"NNP\"\n    ], \n    \"red-white-and-blue\": [\n        \"JJ\"\n    ], \n    \"clone\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Mazzone\": [\n        \"NNP\"\n    ], \n    \"soyaburgers\": [\n        \"NNS\"\n    ], \n    \"THR\": [\n        \"NNP\"\n    ], \n    \"birthday\": [\n        \"NN\"\n    ], \n    \"interest-subsidy\": [\n        \"NN\"\n    ], \n    \"floral\": [\n        \"JJ\"\n    ], \n    \"renovation\": [\n        \"NN\"\n    ], \n    \"gorges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"XCEL\": [\n        \"NNP\"\n    ], \n    \"radar-threat\": [\n        \"JJ\"\n    ], \n    \"summoning\": [\n        \"VBG\"\n    ], \n    \"amuse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"purification\": [\n        \"NN\"\n    ], \n    \"needy\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Buttrick\": [\n        \"NNP\"\n    ], \n    \"Premark\": [\n        \"NNP\"\n    ], \n    \"out-migrants\": [\n        \"NNS\"\n    ], \n    \"Sidley-Ashurst\": [\n        \"NNP\"\n    ], \n    \"Leblanc\": [\n        \"NNP\"\n    ], \n    \"nine-member\": [\n        \"JJ\"\n    ], \n    \"Suntory\": [\n        \"NNP\"\n    ], \n    \"Leblang\": [\n        \"NNP\"\n    ], \n    \"head-injury\": [\n        \"NN\"\n    ], \n    \"acts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Upton\": [\n        \"NNP\"\n    ], \n    \"Wozniak\": [\n        \"NNP\"\n    ], \n    \"yuppies\": [\n        \"NNS\"\n    ], \n    \"Breaking\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"midnight\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"dinkiest\": [\n        \"JJS\"\n    ], \n    \"ducklings\": [\n        \"NNS\"\n    ], \n    \"Premarin\": [\n        \"NNP\"\n    ], \n    \"pre-eminent\": [\n        \"JJ\"\n    ], \n    \"swank\": [\n        \"JJ\"\n    ], \n    \"atCrcial\": [\n        \"NNP\"\n    ], \n    \"MinHa\": [\n        \"NNP\"\n    ], \n    \"handgun\": [\n        \"NN\"\n    ], \n    \"microcomputer\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"decontrol\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Communese\": [\n        \"NNP\"\n    ], \n    \"Moving\": [\n        \"VBG\"\n    ], \n    \"joblessness\": [\n        \"NN\"\n    ], \n    \"swans\": [\n        \"NNS\"\n    ], \n    \"Greifswald\": [\n        \"NNP\"\n    ], \n    \"thaws\": [\n        \"NNS\"\n    ], \n    \"eccentricities\": [\n        \"NNS\"\n    ], \n    \"Linger\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"buffetings\": [\n        \"NNS\"\n    ], \n    \"McDade\": [\n        \"NNP\"\n    ], \n    \"Misanthrope\": [\n        \"NN\"\n    ], \n    \"Edwardsville\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"iron-ore\": [\n        \"NN\"\n    ], \n    \"endeavored\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Adherence\": [\n        \"NN\"\n    ], \n    \"remolding\": [\n        \"VBG\"\n    ], \n    \"Triggering\": [\n        \"VBG\"\n    ], \n    \"not-so-pale\": [\n        \"JJ\"\n    ], \n    \"non-smoking\": [\n        \"JJ\"\n    ], \n    \"guffawing\": [\n        \"VBG\"\n    ], \n    \"Motorized\": [\n        \"NNP\"\n    ], \n    \"smog-ridden\": [\n        \"JJ\"\n    ], \n    \"Contest\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cross-examination\": [\n        \"NN\"\n    ], \n    \"self-screening\": [\n        \"JJ\"\n    ], \n    \"Geological\": [\n        \"NNP\"\n    ], \n    \"Marder\": [\n        \"NNP\"\n    ], \n    \"Burford\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"phalanx\": [\n        \"NN\"\n    ], \n    \"Save\": [\n        \"VB\", \n        \"NNP\", \n        \"IN\", \n        \"RB\"\n    ], \n    \"hysteria\": [\n        \"NN\"\n    ], \n    \"hacker\": [\n        \"NN\"\n    ], \n    \"set-aside\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"factors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"middleman\": [\n        \"NN\"\n    ], \n    \"factory\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"extrapolate\": [\n        \"VB\"\n    ], \n    \"hacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"misallocating\": [\n        \"VBG\"\n    ], \n    \"Palumbo\": [\n        \"NNP\"\n    ], \n    \"maneuver\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"attendee\": [\n        \"NN\"\n    ], \n    \"attended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bolts\": [\n        \"NNS\"\n    ], \n    \"profit-margin\": [\n        \"NN\"\n    ], \n    \"blizzards\": [\n        \"NNS\"\n    ], \n    \"counteroffensive\": [\n        \"NN\"\n    ], \n    \"nightingale\": [\n        \"NN\"\n    ], \n    \"hobble\": [\n        \"VB\"\n    ], \n    \"eject\": [\n        \"VB\"\n    ], \n    \"motional-modified\": [\n        \"JJ\"\n    ], \n    \"sophistication\": [\n        \"NN\"\n    ], \n    \"earning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"asphalt-hard\": [\n        \"JJ\"\n    ], \n    \"compression\": [\n        \"NN\"\n    ], \n    \"blood-thirsty\": [\n        \"JJ\"\n    ], \n    \"gusto\": [\n        \"NN\"\n    ], \n    \"Collinsville\": [\n        \"NNP\"\n    ], \n    \"gusts\": [\n        \"NNS\"\n    ], \n    \"retreating\": [\n        \"VBG\"\n    ], \n    \"heavy-weight\": [\n        \"JJ\"\n    ], \n    \"reproval\": [\n        \"NN\"\n    ], \n    \"gusty\": [\n        \"JJ\"\n    ], \n    \"high-resolution\": [\n        \"JJ\"\n    ], \n    \"suspend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fetched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"moneymaker\": [\n        \"NN\"\n    ], \n    \"rafts\": [\n        \"NNS\"\n    ], \n    \"undercapitalized\": [\n        \"JJ\"\n    ], \n    \"Kelly\": [\n        \"NNP\"\n    ], \n    \"fetches\": [\n        \"VBZ\"\n    ], \n    \"commissioners\": [\n        \"NNS\"\n    ], \n    \"Panoz\": [\n        \"NNP\"\n    ], \n    \"Miyoshi\": [\n        \"NNP\"\n    ], \n    \"Lasmo\": [\n        \"NNP\"\n    ], \n    \"molded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"J&L\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"J&C\": [\n        \"NNP\"\n    ], \n    \"J&B\": [\n        \"NNP\"\n    ], \n    \"maiestie\": [\n        \"NN\"\n    ], \n    \"haggle\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"plastic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Margarito\": [\n        \"NNP\"\n    ], \n    \"Hoylake\": [\n        \"NNP\"\n    ], \n    \"Conable\": [\n        \"NNP\"\n    ], \n    \"Cult\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leonel\": [\n        \"NNP\"\n    ], \n    \"Culp\": [\n        \"NNP\"\n    ], \n    \"festivity\": [\n        \"NN\"\n    ], \n    \"exploring\": [\n        \"VBG\"\n    ], \n    \"amines\": [\n        \"NNS\"\n    ], \n    \"unobtainable\": [\n        \"JJ\"\n    ], \n    \"Co-authors\": [\n        \"NNS\"\n    ], \n    \"season\": [\n        \"NN\"\n    ], \n    \"T.T.\": [\n        \"NNP\"\n    ], \n    \"overcapacity\": [\n        \"NN\"\n    ], \n    \"Saull\": [\n        \"NNP\"\n    ], \n    \"Jerell\": [\n        \"NNP\"\n    ], \n    \"lengthier\": [\n        \"RBR\"\n    ], \n    \"quirky\": [\n        \"JJ\"\n    ], \n    \"traditionnel\": [\n        \"FW\"\n    ], \n    \"distantly\": [\n        \"RB\"\n    ], \n    \"Kedzie\": [\n        \"NNP\"\n    ], \n    \"toughening\": [\n        \"VBG\"\n    ], \n    \"public-policy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Runners\": [\n        \"NNS\"\n    ], \n    \"chugs\": [\n        \"NNS\"\n    ], \n    \"marines\": [\n        \"NNS\"\n    ], \n    \"mariner\": [\n        \"NN\"\n    ], \n    \"Yankee\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"unprecedentedly\": [\n        \"RB\"\n    ], \n    \"legalizing\": [\n        \"VBG\"\n    ], \n    \"generality\": [\n        \"NN\"\n    ], \n    \"whiskies\": [\n        \"NNS\"\n    ], \n    \"Gastronomes\": [\n        \"NNS\"\n    ], \n    \"nominating\": [\n        \"VBG\"\n    ], \n    \"Jemela\": [\n        \"NNP\"\n    ], \n    \"bakeware\": [\n        \"NN\"\n    ], \n    \"conversion\": [\n        \"NN\"\n    ], \n    \"kimchi\": [\n        \"FW\"\n    ], \n    \"silhouette\": [\n        \"NN\"\n    ], \n    \"Premont\": [\n        \"NNP\"\n    ], \n    \"Funeral\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mourners\": [\n        \"NNS\"\n    ], \n    \"Multifoods\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Merrick\": [\n        \"NNP\"\n    ], \n    \"Bastards\": [\n        \"NNS\"\n    ], \n    \"in-home\": [\n        \"JJ\"\n    ], \n    \"paraphrase\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"pollution-reduction\": [\n        \"NN\"\n    ], \n    \"Aktiebolaget\": [\n        \"NNP\"\n    ], \n    \"optical-disk\": [\n        \"JJ\"\n    ], \n    \"agilely\": [\n        \"RB\"\n    ], \n    \"malpractices\": [\n        \"NNS\"\n    ], \n    \"social-services\": [\n        \"JJ\"\n    ], \n    \"sightings\": [\n        \"NNS\"\n    ], \n    \"de-iodination\": [\n        \"NN\"\n    ], \n    \"Olayan\": [\n        \"NNP\"\n    ], \n    \"Depression-era\": [\n        \"JJ\"\n    ], \n    \"pencils\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Kuomintang\": [\n        \"NNP\"\n    ], \n    \"AC&R\": [\n        \"NNP\"\n    ], \n    \"Pflugerville\": [\n        \"NNP\"\n    ], \n    \"Audrey\": [\n        \"NNP\"\n    ], \n    \"trafficking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"inter-Arab\": [\n        \"JJ\"\n    ], \n    \"senior\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Humana\": [\n        \"NNP\"\n    ], \n    \"shrieking\": [\n        \"NN\"\n    ], \n    \"P\\\\/E\": [\n        \"NNP\"\n    ], \n    \"serenade\": [\n        \"NN\"\n    ], \n    \"grade-equivalent\": [\n        \"NN\"\n    ], \n    \"above-ground\": [\n        \"JJ\"\n    ], \n    \"supraventricular\": [\n        \"JJ\"\n    ], \n    \"diverge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"end-of-model-year\": [\n        \"JJ\"\n    ], \n    \"woos\": [\n        \"VBZ\"\n    ], \n    \"evaluative\": [\n        \"JJ\"\n    ], \n    \"Continuing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"obstinacy\": [\n        \"NN\"\n    ], \n    \"shimmer\": [\n        \"NN\"\n    ], \n    \"Parry\": [\n        \"NNP\"\n    ], \n    \"woof\": [\n        \"NN\"\n    ], \n    \"wood\": [\n        \"NN\"\n    ], \n    \"CERTIFICATES\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"wool\": [\n        \"NN\"\n    ], \n    \"dreaded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Stettin\": [\n        \"NNP\"\n    ], \n    \"reoffered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"expectation\": [\n        \"NN\"\n    ], \n    \"payment-in-kind\": [\n        \"JJ\"\n    ], \n    \"dye\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Baroque\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Discoveries\": [\n        \"NNS\"\n    ], \n    \"finance-minister\": [\n        \"NN\"\n    ], \n    \"badinage\": [\n        \"NN\"\n    ], \n    \"verdicts\": [\n        \"NNS\"\n    ], \n    \"braver\": [\n        \"JJR\"\n    ], \n    \"landro\": [\n        \"NN\"\n    ], \n    \"orphans\": [\n        \"NNS\"\n    ], \n    \"fainted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"denouement\": [\n        \"NN\"\n    ], \n    \"state-registered\": [\n        \"JJ\"\n    ], \n    \"clowns\": [\n        \"NNS\"\n    ], \n    \"fainter\": [\n        \"JJR\"\n    ], \n    \"Jozef\": [\n        \"NNP\"\n    ], \n    \"Corporal\": [\n        \"NNP\"\n    ], \n    \"poling\": [\n        \"VBG\"\n    ], \n    \"Physicians\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"silver-bearded\": [\n        \"JJ\"\n    ], \n    \"art-historical\": [\n        \"JJ\"\n    ], \n    \"warfront\": [\n        \"NN\"\n    ], \n    \"beasties\": [\n        \"NNS\"\n    ], \n    \"Keeler\": [\n        \"NNP\"\n    ], \n    \"Spread\": [\n        \"VB\"\n    ], \n    \"Gehrig\": [\n        \"NNP\"\n    ], \n    \"Volk\": [\n        \"NNP\"\n    ], \n    \"Seminole\": [\n        \"NNP\"\n    ], \n    \"parking\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Sniper\": [\n        \"NNP\"\n    ], \n    \"fenced-in\": [\n        \"JJ\"\n    ], \n    \"inhibitory\": [\n        \"JJ\"\n    ], \n    \"mortgage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"crystal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ways\": [\n        \"NNS\"\n    ], \n    \"review\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Univision\": [\n        \"NNP\"\n    ], \n    \"equipmwent-leasing\": [\n        \"NN\"\n    ], \n    \"inhibitors\": [\n        \"NNS\"\n    ], \n    \"Tarzan\": [\n        \"NNP\"\n    ], \n    \"region-by-region\": [\n        \"JJ\"\n    ], \n    \"shareholding\": [\n        \"NN\"\n    ], \n    \"Mazeroski\": [\n        \"NNP\"\n    ], \n    \"rebuilds\": [\n        \"VBZ\"\n    ], \n    \"toying\": [\n        \"VBG\"\n    ], \n    \"Harlow\": [\n        \"NNP\"\n    ], \n    \"sirens\": [\n        \"NNS\"\n    ], \n    \"multiplied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"shivered\": [\n        \"VBD\"\n    ], \n    \"medium-size\": [\n        \"JJ\"\n    ], \n    \"fellow-craftsmen\": [\n        \"NNS\"\n    ], \n    \"micelle\": [\n        \"NN\"\n    ], \n    \"U.S.\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"fast-talking\": [\n        \"JJ\"\n    ], \n    \"inseparable\": [\n        \"JJ\"\n    ], \n    \"multiplies\": [\n        \"VBZ\"\n    ], \n    \"recentralized\": [\n        \"VBN\"\n    ], \n    \"isthmus\": [\n        \"NN\"\n    ], \n    \"postage\": [\n        \"NN\"\n    ], \n    \"missions\": [\n        \"NNS\"\n    ], \n    \"gimmicky\": [\n        \"JJ\"\n    ], \n    \"gimmicks\": [\n        \"NNS\"\n    ], \n    \"Broadstar\": [\n        \"NNP\"\n    ], \n    \"prompted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"government-securities\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Turbine\": [\n        \"NNP\"\n    ], \n    \"utterance\": [\n        \"NN\"\n    ], \n    \"Sarrebourg\": [\n        \"NNP\"\n    ], \n    \"skull-bashings\": [\n        \"NNS\"\n    ], \n    \"Zumbrunn\": [\n        \"NNP\"\n    ], \n    \"key-financial\": [\n        \"JJ\"\n    ], \n    \"kazoo\": [\n        \"NN\"\n    ], \n    \"hereunto\": [\n        \"RB\"\n    ], \n    \"saliva\": [\n        \"NN\"\n    ], \n    \"destabilizes\": [\n        \"VBZ\"\n    ], \n    \"quinine\": [\n        \"NN\"\n    ], \n    \"assertions\": [\n        \"NNS\"\n    ], \n    \"misapplying\": [\n        \"VBG\"\n    ], \n    \"Herculean\": [\n        \"JJ\"\n    ], \n    \"skeletons\": [\n        \"NNS\"\n    ], \n    \"raring\": [\n        \"JJ\"\n    ], \n    \"bums\": [\n        \"NNS\"\n    ], \n    \"Beauty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disappearances\": [\n        \"NNS\"\n    ], \n    \"eyewitnesses\": [\n        \"NNS\"\n    ], \n    \"self-sustaining\": [\n        \"JJ\"\n    ], \n    \"microscopic\": [\n        \"JJ\"\n    ], \n    \"cucumber\": [\n        \"NN\"\n    ], \n    \"Deets\": [\n        \"NNP\"\n    ], \n    \"umpire\": [\n        \"NN\"\n    ], \n    \"followup\": [\n        \"JJ\"\n    ], \n    \"messes\": [\n        \"NNS\"\n    ], \n    \"long-keeping\": [\n        \"JJ\"\n    ], \n    \"reimburse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Breve\": [\n        \"NNP\"\n    ], \n    \"implored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"annoyance\": [\n        \"NN\"\n    ], \n    \"sea-horses\": [\n        \"NNS\"\n    ], \n    \"foreclosed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"implores\": [\n        \"VBZ\"\n    ], \n    \"attentive\": [\n        \"JJ\"\n    ], \n    \"excelled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"rhymes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"refractory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Colors\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"jonquils\": [\n        \"NNS\"\n    ], \n    \"Cotran\": [\n        \"NNP\"\n    ], \n    \"spritzers\": [\n        \"NNS\"\n    ], \n    \"rhymed\": [\n        \"VBD\"\n    ], \n    \"Crystallography\": [\n        \"NNP\"\n    ], \n    \"Contend\": [\n        \"VBP\"\n    ], \n    \"Sako\": [\n        \"NN\"\n    ], \n    \"WFXT-TV\": [\n        \"NNP\"\n    ], \n    \"double-B-plus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"generation-skipping\": [\n        \"JJ\"\n    ], \n    \"Sake\": [\n        \"FW\"\n    ], \n    \"telephone\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dissident\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ticketron\": [\n        \"NNP\"\n    ], \n    \"Euro-TV\": [\n        \"NNP\"\n    ], \n    \"Amomng\": [\n        \"JJ\"\n    ], \n    \"Speakership\": [\n        \"NNP\"\n    ], \n    \"Saks\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"distiller\": [\n        \"NN\"\n    ], \n    \"Wardair\": [\n        \"NNP\"\n    ], \n    \"Kirchberger\": [\n        \"NNP\"\n    ], \n    \"Format\": [\n        \"NN\"\n    ], \n    \"distributions\": [\n        \"NNS\"\n    ], \n    \"rope-sight\": [\n        \"NN\"\n    ], \n    \"now-famous\": [\n        \"JJ\"\n    ], \n    \"supra\": [\n        \"RB\"\n    ], \n    \"Burdines\": [\n        \"NNPS\"\n    ], \n    \"macaroni\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"distilled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"reminder\": [\n        \"NN\"\n    ], \n    \"isle\": [\n        \"NN\"\n    ], \n    \"twosome\": [\n        \"NN\"\n    ], \n    \"barefoot\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"disadvantages\": [\n        \"NNS\"\n    ], \n    \"smothering\": [\n        \"VBG\"\n    ], \n    \"driver\": [\n        \"NN\"\n    ], \n    \"drives\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"driven\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"submarines\": [\n        \"NNS\"\n    ], \n    \"Waxworks\": [\n        \"NNP\"\n    ], \n    \"Eta\": [\n        \"NNP\"\n    ], \n    \"vacanices\": [\n        \"NNS\"\n    ], \n    \"Bennigsen-Foerder\": [\n        \"NNP\"\n    ], \n    \"Perozo\": [\n        \"NNP\"\n    ], \n    \"vocalist\": [\n        \"NN\"\n    ], \n    \"Haaek\": [\n        \"NNP\"\n    ], \n    \"Bondholders\": [\n        \"NNS\"\n    ], \n    \"pints\": [\n        \"NNS\"\n    ], \n    \"sinkhole\": [\n        \"NN\"\n    ], \n    \"demineralization\": [\n        \"NN\"\n    ], \n    \"flakes\": [\n        \"NNS\"\n    ], \n    \"components\": [\n        \"NNS\"\n    ], \n    \"protege\": [\n        \"NN\"\n    ], \n    \"a-Monthly\": [\n        \"JJ\"\n    ], \n    \"soapsuds\": [\n        \"NNS\"\n    ], \n    \"disloyal\": [\n        \"JJ\"\n    ], \n    \"Stimulates\": [\n        \"VBZ\"\n    ], \n    \"agriculturals\": [\n        \"NNS\"\n    ], \n    \"waste-storage\": [\n        \"NN\"\n    ], \n    \"Provo\": [\n        \"NNP\"\n    ], \n    \"Teijin\": [\n        \"NNP\"\n    ], \n    \"lavish\": [\n        \"JJ\"\n    ], \n    \"Eisenach\": [\n        \"NNP\"\n    ], \n    \"kiln\": [\n        \"NN\"\n    ], \n    \"Diodati\": [\n        \"NNP\"\n    ], \n    \"LVMH\": [\n        \"NNP\"\n    ], \n    \"insight\": [\n        \"NN\"\n    ], \n    \"sampled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"blot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"metal-working\": [\n        \"JJ\"\n    ], \n    \"hint\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Louella\": [\n        \"NNP\"\n    ], \n    \"embezzled\": [\n        \"VBD\"\n    ], \n    \"Shealy\": [\n        \"NNP\"\n    ], \n    \"Applications\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"bloodhounds\": [\n        \"NNS\"\n    ], \n    \"falsely\": [\n        \"RB\"\n    ], \n    \"bloc\": [\n        \"NN\"\n    ], \n    \"blob\": [\n        \"NN\"\n    ], \n    \"samples\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sampler\": [\n        \"NN\"\n    ], \n    \"Simca\": [\n        \"NNP\"\n    ], \n    \"CABBAGE\": [\n        \"NN\"\n    ], \n    \"outwardly\": [\n        \"RB\", \n        \".\"\n    ], \n    \"nattily\": [\n        \"RB\"\n    ], \n    \"Woolworth\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"intrapreneurship\": [\n        \"NN\"\n    ], \n    \"replaced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hermetically\": [\n        \"RB\"\n    ], \n    \"Vedder\": [\n        \"NNP\"\n    ], \n    \"undergraduates\": [\n        \"NNS\"\n    ], \n    \"Shelton\": [\n        \"NNP\"\n    ], \n    \"divested\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"kilowatts\": [\n        \"NNS\"\n    ], \n    \"squirreling\": [\n        \"VBG\"\n    ], \n    \"Sultane\": [\n        \"NNP\"\n    ], \n    \"Tootal\": [\n        \"NNP\"\n    ], \n    \"Newbold\": [\n        \"NNP\"\n    ], \n    \"particle\": [\n        \"NN\"\n    ], \n    \"aqueous\": [\n        \"JJ\"\n    ], \n    \"oddly\": [\n        \"RB\"\n    ], \n    \"sternly\": [\n        \"RB\"\n    ], \n    \"quid-pro-quo\": [\n        \"JJ\"\n    ], \n    \"SHAREHOLDER\": [\n        \"NN\"\n    ], \n    \"Sultans\": [\n        \"NNS\"\n    ], \n    \"friar\": [\n        \"NN\"\n    ], \n    \"civil-rights\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"mass-marketers\": [\n        \"NNS\"\n    ], \n    \"profit-making\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"six-week-long\": [\n        \"JJ\"\n    ], \n    \"Sidorenko\": [\n        \"NNP\"\n    ], \n    \"non-OPEC\": [\n        \"JJ\"\n    ], \n    \"neuralgia\": [\n        \"NN\"\n    ], \n    \"two-nosed\": [\n        \"JJ\"\n    ], \n    \"Ricostruzioni\": [\n        \"NNP\"\n    ], \n    \"Wray\": [\n        \"NNP\"\n    ], \n    \"deduce\": [\n        \"VB\"\n    ], \n    \"viselike\": [\n        \"JJ\"\n    ], \n    \"table\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"International\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"low-density\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"intact\": [\n        \"JJ\"\n    ], \n    \"McEnroe\": [\n        \"NNP\"\n    ], \n    \"Paddy\": [\n        \"NNP\"\n    ], \n    \"Knowing\": [\n        \"VBG\"\n    ], \n    \"Parthenon\": [\n        \"NNP\"\n    ], \n    \"Brentwood\": [\n        \"NNP\"\n    ], \n    \"renounce\": [\n        \"VB\"\n    ], \n    \"stops\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"reallocating\": [\n        \"VBG\"\n    ], \n    \"A-1\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"central-city\": [\n        \"NN\"\n    ], \n    \"unfunded\": [\n        \"JJ\"\n    ], \n    \"severed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"English-Danish\": [\n        \"NNP\"\n    ], \n    \"metropolis\": [\n        \"NN\"\n    ], \n    \"Later\": [\n        \"RB\", \n        \"JJR\", \n        \"RBR\", \n        \"JJ\"\n    ], \n    \"populists\": [\n        \"NNS\"\n    ], \n    \"convincing\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"warlords\": [\n        \"NNS\"\n    ], \n    \"squashed-looking\": [\n        \"JJ\"\n    ], \n    \"substratum\": [\n        \"NN\"\n    ], \n    \"fishery\": [\n        \"NN\"\n    ], \n    \"fantasize\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"pastors\": [\n        \"NNS\"\n    ], \n    \"Albright\": [\n        \"NNP\"\n    ], \n    \"Montagu\": [\n        \"NNP\"\n    ], \n    \"Mabon\": [\n        \"NNP\"\n    ], \n    \"one-act-play\": [\n        \"JJ\"\n    ], \n    \"Bundestag\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Croix\": [\n        \"NNP\"\n    ], \n    \"beavers\": [\n        \"NNS\"\n    ], \n    \"Transit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"small-fry\": [\n        \"JJ\"\n    ], \n    \"Erected\": [\n        \"VBN\"\n    ], \n    \"Blanche\": [\n        \"NNP\"\n    ], \n    \"Prevented\": [\n        \"VBN\"\n    ], \n    \"hypothalamus\": [\n        \"NN\"\n    ], \n    \"spaghetti\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"cripples\": [\n        \"NNS\"\n    ], \n    \"concentrations\": [\n        \"NNS\"\n    ], \n    \"Goebbels\": [\n        \"NNP\"\n    ], \n    \"McCracken\": [\n        \"NNP\"\n    ], \n    \"Soviet-built\": [\n        \"JJ\"\n    ], \n    \"flocculation\": [\n        \"NN\"\n    ], \n    \"scofflaws\": [\n        \"NNS\"\n    ], \n    \"spinal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Equate\": [\n        \"VB\"\n    ], \n    \"top-tang\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lastly\": [\n        \"RB\"\n    ], \n    \"Kaufhaus\": [\n        \"NNP\"\n    ], \n    \"feudal\": [\n        \"JJ\"\n    ], \n    \"lawmaking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"weeknight\": [\n        \"NN\"\n    ], \n    \"interest-only\": [\n        \"JJ\"\n    ], \n    \"Beatles\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Opposite\": [\n        \"IN\", \n        \"JJ\"\n    ], \n    \"Brannon\": [\n        \"NNP\"\n    ], \n    \"DELAYS\": [\n        \"VBZ\"\n    ], \n    \"Amenitskii\": [\n        \"NNP\"\n    ], \n    \"TECO\": [\n        \"NNP\"\n    ], \n    \"thereabouts\": [\n        \"RB\"\n    ], \n    \"suggestibility\": [\n        \"NN\"\n    ], \n    \"deteriorating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Mlangeni\": [\n        \"NNP\"\n    ], \n    \"Marver\": [\n        \"NNP\"\n    ], \n    \"gibe\": [\n        \"NN\"\n    ], \n    \"Orejuela\": [\n        \"NNP\"\n    ], \n    \"baronial\": [\n        \"JJ\"\n    ], \n    \"Kummerfeld\": [\n        \"NNP\"\n    ], \n    \"caraway\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"garnered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Circulations\": [\n        \"NNP\"\n    ], \n    \"overbreadth\": [\n        \"NN\"\n    ], \n    \"sentimentalists\": [\n        \"NNS\"\n    ], \n    \"sleaze\": [\n        \"NN\"\n    ], \n    \"greeted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mat\": [\n        \"NN\"\n    ], \n    \"Drogoul\": [\n        \"NNP\"\n    ], \n    \"avec\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Twin\": [\n        \"NNP\"\n    ], \n    \"Radical\": [\n        \"NNP\"\n    ], \n    \"Tawes\": [\n        \"NNP\"\n    ], \n    \"sleazy\": [\n        \"JJ\"\n    ], \n    \"risk-averse\": [\n        \"JJ\"\n    ], \n    \"russet\": [\n        \"JJ\"\n    ], \n    \"frighten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"business-class\": [\n        \"JJ\"\n    ], \n    \"cringed\": [\n        \"VBD\"\n    ], \n    \"Principles\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Spievack\": [\n        \"NNP\"\n    ], \n    \"slosh\": [\n        \"VB\"\n    ], \n    \"LeCave\": [\n        \"NNP\"\n    ], \n    \"special-edition\": [\n        \"JJ\"\n    ], \n    \"incorrect\": [\n        \"JJ\"\n    ], \n    \"B-cells\": [\n        \"NNS\"\n    ], \n    \"rubbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Woodbury\": [\n        \"NNP\"\n    ], \n    \"junk-financed\": [\n        \"JJ\"\n    ], \n    \"Quote\": [\n        \"NN\"\n    ], \n    \"dramatizations\": [\n        \"NNS\"\n    ], \n    \"then-husband\": [\n        \"NN\"\n    ], \n    \"just-picked\": [\n        \"JJ\"\n    ], \n    \"erecting\": [\n        \"VBG\"\n    ], \n    \"rubber\": [\n        \"NN\"\n    ], \n    \"Nuf\": [\n        \"RB\"\n    ], \n    \"arbitrageurs\": [\n        \"NNS\"\n    ], \n    \"redial\": [\n        \"VB\"\n    ], \n    \"sweet-tongued\": [\n        \"JJ\"\n    ], \n    \"eight-mile\": [\n        \"JJ\"\n    ], \n    \"ramification\": [\n        \"NN\"\n    ], \n    \"trash\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"stalwart\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"preoccupation\": [\n        \"NN\"\n    ], \n    \"requested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Berard\": [\n        \"NNP\"\n    ], \n    \"Basham\": [\n        \"NNP\"\n    ], \n    \"separate\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"stocky\": [\n        \"JJ\"\n    ], \n    \"grotesques\": [\n        \"NNS\"\n    ], \n    \"CNA\": [\n        \"NNP\"\n    ], \n    \"CNN\": [\n        \"NNP\"\n    ], \n    \"stocks\": [\n        \"NNS\", \n        \"VBZ\", \n        \"RB\"\n    ], \n    \"freshness\": [\n        \"NN\"\n    ], \n    \"sun-inflamed\": [\n        \"JJ\"\n    ], \n    \"Knots\": [\n        \"NNP\"\n    ], \n    \"stackers\": [\n        \"NNS\"\n    ], \n    \"applause\": [\n        \"NN\"\n    ], \n    \"refinanced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bellyaching\": [\n        \"NN\"\n    ], \n    \"Ornstein\": [\n        \"NNP\"\n    ], \n    \"Mean\": [\n        \"VB\"\n    ], \n    \"derrick\": [\n        \"NN\"\n    ], \n    \"Guidi\": [\n        \"NNP\"\n    ], \n    \"neo-classicism\": [\n        \"NN\"\n    ], \n    \"Dubovskoi\": [\n        \"NNP\"\n    ], \n    \"Suttle\": [\n        \"NNP\"\n    ], \n    \"preparation\": [\n        \"NN\"\n    ], \n    \"Stretch\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"lack\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"executing\": [\n        \"VBG\"\n    ], \n    \"cornfield\": [\n        \"NN\"\n    ], \n    \"lacy\": [\n        \"JJ\"\n    ], \n    \"Words\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"blood-forming\": [\n        \"JJ\"\n    ], \n    \"piazzas\": [\n        \"NNS\"\n    ], \n    \"matron\": [\n        \"NN\"\n    ], \n    \"synthetic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"contortion\": [\n        \"NN\"\n    ], \n    \"catastrophe\": [\n        \"NN\"\n    ], \n    \"Ecole\": [\n        \"NNP\"\n    ], \n    \"Christiane\": [\n        \"NNP\"\n    ], \n    \"lining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"switched\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Christiana\": [\n        \"NNP\"\n    ], \n    \"ham-radio\": [\n        \"NN\"\n    ], \n    \"dejectedly\": [\n        \"RB\"\n    ], \n    \"palsy\": [\n        \"NN\"\n    ], \n    \"Butane\": [\n        \"NN\"\n    ], \n    \"siblings\": [\n        \"NNS\"\n    ], \n    \"defuse\": [\n        \"VB\"\n    ], \n    \"Christians\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Usha\": [\n        \"NNP\"\n    ], \n    \"fax\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"low-duty\": [\n        \"JJ\"\n    ], \n    \"multiple-year\": [\n        \"JJ\"\n    ], \n    \"far\": [\n        \"RB\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"ticked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"perseveres\": [\n        \"VBZ\"\n    ], \n    \"shavings\": [\n        \"NNS\"\n    ], \n    \"Behrens\": [\n        \"NNP\"\n    ], \n    \"psychologist\": [\n        \"NN\"\n    ], \n    \"sons\": [\n        \"NNS\"\n    ], \n    \"fan\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"hems\": [\n        \"NNS\"\n    ], \n    \"ticket\": [\n        \"NN\"\n    ], \n    \"ticker\": [\n        \"NN\"\n    ], \n    \"fad\": [\n        \"NN\"\n    ], \n    \"product-launch\": [\n        \"NN\"\n    ], \n    \"Capellan\": [\n        \"NNP\"\n    ], \n    \"upper-middle\": [\n        \"JJ\"\n    ], \n    \"shipboard\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"stimulus\": [\n        \"NN\"\n    ], \n    \"Litton\": [\n        \"NNP\"\n    ], \n    \"Ideologues\": [\n        \"NNS\"\n    ], \n    \"lesbians\": [\n        \"NNS\"\n    ], \n    \"booting\": [\n        \"VBG\"\n    ], \n    \"mountain-bike\": [\n        \"NN\"\n    ], \n    \"Endeavor\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Galbraith\": [\n        \"NNP\"\n    ], \n    \"Macao\": [\n        \"NNP\"\n    ], \n    \"align\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chase\": [\n        \"NNP\"\n    ], \n    \"entourage\": [\n        \"NN\"\n    ], \n    \"Scarpia\": [\n        \"NNP\"\n    ], \n    \"Hattori\": [\n        \"NNP\"\n    ], \n    \"synergy\": [\n        \"NN\"\n    ], \n    \"Discourse\": [\n        \"NNP\"\n    ], \n    \"Welling\": [\n        \"NNP\"\n    ], \n    \"NOVEMBER\": [\n        \"NNP\"\n    ], \n    \"fabricates\": [\n        \"VBZ\"\n    ], \n    \"over-emphasized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"interaxial\": [\n        \"JJ\"\n    ], \n    \"imported\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"Definitive\": [\n        \"JJ\"\n    ], \n    \"advantageous\": [\n        \"JJ\"\n    ], \n    \"reception\": [\n        \"NN\"\n    ], \n    \"whimper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"serve-the-world\": [\n        \"JJ\"\n    ], \n    \"importer\": [\n        \"NN\"\n    ], \n    \"attitudes\": [\n        \"NNS\"\n    ], \n    \"fathoms\": [\n        \"NNS\"\n    ], \n    \"ultra-pasteurized\": [\n        \"JJ\"\n    ], \n    \"scowling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"conciliator\": [\n        \"NN\"\n    ], \n    \"whitecollar\": [\n        \"JJ\"\n    ], \n    \"Clouds\": [\n        \"NNP\"\n    ], \n    \"Susan\": [\n        \"NNP\"\n    ], \n    \"totalistic\": [\n        \"JJ\"\n    ], \n    \"Rachmaninoff\": [\n        \"NNP\"\n    ], \n    \"researchable\": [\n        \"JJ\"\n    ], \n    \"Mohammed\": [\n        \"NNP\"\n    ], \n    \"Gundy\": [\n        \"NNP\"\n    ], \n    \"red-light\": [\n        \"JJ\"\n    ], \n    \"Leonore\": [\n        \"NNP\"\n    ], \n    \"Danza\": [\n        \"NNP\"\n    ], \n    \"Communication\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"price-wise\": [\n        \"JJ\"\n    ], \n    \"fumigant\": [\n        \"NN\"\n    ], \n    \"weaning\": [\n        \"VBG\"\n    ], \n    \"schoolgirlish\": [\n        \"JJ\"\n    ], \n    \"miniature\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"supplements\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"spaceborn\": [\n        \"JJ\"\n    ], \n    \"gleeful\": [\n        \"JJ\"\n    ], \n    \"runoff\": [\n        \"NN\"\n    ], \n    \"Forrest\": [\n        \"NNP\"\n    ], \n    \"Metter\": [\n        \"NNP\"\n    ], \n    \"Chores\": [\n        \"NNS\"\n    ], \n    \"ex-president\": [\n        \"NN\"\n    ], \n    \"UNDEFINED\": [\n        \"JJ\"\n    ], \n    \"vioiln\": [\n        \"NN\"\n    ], \n    \"Things\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"layer\": [\n        \"NN\"\n    ], \n    \"less-serious\": [\n        \"JJ\"\n    ], \n    \"spaciousness\": [\n        \"NN\"\n    ], \n    \"busboy\": [\n        \"NN\"\n    ], \n    \"appliances\": [\n        \"NNS\"\n    ], \n    \"Reader\": [\n        \"NNP\"\n    ], \n    \"inorganic\": [\n        \"JJ\"\n    ], \n    \"Luray\": [\n        \"NNP\"\n    ], \n    \"aberrant\": [\n        \"JJ\"\n    ], \n    \"pervades\": [\n        \"VBZ\"\n    ], \n    \"Maurer\": [\n        \"NNP\"\n    ], \n    \"punts\": [\n        \"NNS\"\n    ], \n    \"kidney-shaped\": [\n        \"JJ\"\n    ], \n    \"forcefully\": [\n        \"RB\"\n    ], \n    \"conspiring\": [\n        \"VBG\"\n    ], \n    \"pervaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"new-home\": [\n        \"JJ\"\n    ], \n    \"school-lunch\": [\n        \"NN\"\n    ], \n    \"branded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Zipper\": [\n        \"NNP\"\n    ], \n    \"waxen\": [\n        \"JJ\"\n    ], \n    \"resistor\": [\n        \"NN\"\n    ], \n    \"amalgamations\": [\n        \"NNS\"\n    ], \n    \"grabbing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"crested\": [\n        \"JJ\"\n    ], \n    \"operators\": [\n        \"NNS\"\n    ], \n    \"Sidekick\": [\n        \"NNP\"\n    ], \n    \"stutter\": [\n        \"NN\"\n    ], \n    \"something...\": [\n        \":\"\n    ], \n    \"Figaro\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"domination\": [\n        \"NN\"\n    ], \n    \"keyhole\": [\n        \"NN\"\n    ], \n    \"stick\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Hegel\": [\n        \"NNP\"\n    ], \n    \"big-time\": [\n        \"JJ\"\n    ], \n    \"portended\": [\n        \"VBD\"\n    ], \n    \"Confronted\": [\n        \"VBN\"\n    ], \n    \"Zela\": [\n        \"NNP\"\n    ], \n    \"plagiarism\": [\n        \"NN\"\n    ], \n    \"battle-shattered\": [\n        \"JJ\"\n    ], \n    \"Thunderbirds\": [\n        \"NNPS\"\n    ], \n    \"protons\": [\n        \"NNS\"\n    ], \n    \"Kwon\": [\n        \"NNP\"\n    ], \n    \"arbitrating\": [\n        \"VBG\"\n    ], \n    \"Zell\": [\n        \"NNP\"\n    ], \n    \"forbearance\": [\n        \"NN\"\n    ], \n    \"Free-marketeers\": [\n        \"NNS\"\n    ], \n    \"originations\": [\n        \"NNS\"\n    ], \n    \"psychoanalytic\": [\n        \"JJ\"\n    ], \n    \"powers-that-be\": [\n        \"NN\"\n    ], \n    \"challenging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"drug-making\": [\n        \"JJ\"\n    ], \n    \"Thurday\": [\n        \"NNP\"\n    ], \n    \"Bonito\": [\n        \"NNP\"\n    ], \n    \"univalent\": [\n        \"JJ\"\n    ], \n    \"protects\": [\n        \"VBZ\"\n    ], \n    \"closet-sized\": [\n        \"JJ\"\n    ], \n    \"Grohl\": [\n        \"NNP\"\n    ], \n    \"meditate\": [\n        \"VB\"\n    ], \n    \"cold-storage\": [\n        \"JJ\"\n    ], \n    \"recursive\": [\n        \"JJ\"\n    ], \n    \"sleeplessly\": [\n        \"RB\"\n    ], \n    \"Know-Nothing\": [\n        \"JJ\"\n    ], \n    \"Friendly\": [\n        \"NNP\"\n    ], \n    \"wither\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gullies\": [\n        \"NNS\"\n    ], \n    \"speeding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"shoo-in\": [\n        \"NN\"\n    ], \n    \"light-headedness\": [\n        \"JJ\"\n    ], \n    \"sandwich\": [\n        \"NN\"\n    ], \n    \"battle-cries\": [\n        \"NN\"\n    ], \n    \"Glo\": [\n        \"NNP\"\n    ], \n    \"Influential\": [\n        \"JJ\"\n    ], \n    \"commodity-chemical\": [\n        \"JJ\"\n    ], \n    \"oddballs\": [\n        \"NNS\"\n    ], \n    \"Shippin\": [\n        \"VB\"\n    ], \n    \"musicianship\": [\n        \"NN\"\n    ], \n    \"Careless\": [\n        \"NNP\"\n    ], \n    \"mismeasurements\": [\n        \"NNS\"\n    ], \n    \"Raucher\": [\n        \"NNP\"\n    ], \n    \"supply-and-demand\": [\n        \"NN\"\n    ], \n    \"penitentiary\": [\n        \"NN\"\n    ], \n    \"cults\": [\n        \"NNS\"\n    ], \n    \"retrofitted\": [\n        \"VBN\"\n    ], \n    \"Played\": [\n        \"VBN\"\n    ], \n    \"beatification\": [\n        \"NN\"\n    ], \n    \"LeMasters\": [\n        \"NNP\"\n    ], \n    \"cudgels\": [\n        \"NNS\"\n    ], \n    \"Player\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"culte\": [\n        \"FW\"\n    ], \n    \"retaliate\": [\n        \"VB\"\n    ], \n    \"Tech\": [\n        \"NNP\"\n    ], \n    \"half-dozen\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Herschel\": [\n        \"NNP\"\n    ], \n    \"microsomal\": [\n        \"JJ\"\n    ], \n    \"Gestapo-style\": [\n        \"JJ\"\n    ], \n    \"gauges\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"non-sentimental\": [\n        \"JJ\"\n    ], \n    \"eludes\": [\n        \"VBZ\"\n    ], \n    \"Raikes\": [\n        \"NNP\"\n    ], \n    \"disabled\": [\n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"gauged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Jamiesson\": [\n        \"NNP\"\n    ], \n    \"scientist\": [\n        \"NN\"\n    ], \n    \"tuxedo-rental\": [\n        \"JJ\"\n    ], \n    \"Vranian\": [\n        \"NNP\"\n    ], \n    \"Pickens\": [\n        \"NNP\"\n    ], \n    \"dithers\": [\n        \"VBZ\"\n    ], \n    \"eluded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"read-my-lips\": [\n        \"JJ\"\n    ], \n    \"propensity\": [\n        \"NN\"\n    ], \n    \"Equivalent\": [\n        \"NN\"\n    ], \n    \"Threatened\": [\n        \"VBD\"\n    ], \n    \"excutives\": [\n        \"NNS\"\n    ], \n    \"conformist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"filberts\": [\n        \"NNS\"\n    ], \n    \"Guyon\": [\n        \"NNP\"\n    ], \n    \"Dominican\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"aggressively\": [\n        \"RB\"\n    ], \n    \"L\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sub-station\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"screw-loose\": [\n        \"JJ\"\n    ], \n    \"accumulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"meat-processing\": [\n        \"JJ\"\n    ], \n    \"ozone-depleting\": [\n        \"JJ\"\n    ], \n    \"entropy\": [\n        \"NN\"\n    ], \n    \"Trustcorp\": [\n        \"NNP\"\n    ], \n    \"subtler\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"refresh\": [\n        \"VBP\"\n    ], \n    \"irreducible\": [\n        \"JJ\"\n    ], \n    \"rolling-steel\": [\n        \"NN\"\n    ], \n    \"Nutrasweet\": [\n        \"NNP\"\n    ], \n    \"malfunction\": [\n        \"NN\"\n    ], \n    \"succulent\": [\n        \"JJ\"\n    ], \n    \"fixture\": [\n        \"NN\"\n    ], \n    \"used\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Tiger-Heli\": [\n        \"NNP\"\n    ], \n    \"Daywatch\": [\n        \"NNP\"\n    ], \n    \"inflict\": [\n        \"VB\"\n    ], \n    \"JAUNTS\": [\n        \"NNS\"\n    ], \n    \"Oculon\": [\n        \"NNP\"\n    ], \n    \"twists\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"democracy-free\": [\n        \"JJ\"\n    ], \n    \"out-of-mind\": [\n        \"JJ\"\n    ], \n    \"dugout\": [\n        \"NN\"\n    ], \n    \"Mulcahy\": [\n        \"NNP\"\n    ], \n    \"Frankenstein\": [\n        \"NNP\"\n    ], \n    \"congenial\": [\n        \"JJ\"\n    ], \n    \"one-sentence\": [\n        \"JJ\"\n    ], \n    \"Eliezer\": [\n        \"NNP\"\n    ], \n    \"electrical-products\": [\n        \"NNS\"\n    ], \n    \"docters\": [\n        \"NNS\"\n    ], \n    \"soulless\": [\n        \"JJ\"\n    ], \n    \"razor\": [\n        \"NN\"\n    ], \n    \"combed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"steeple\": [\n        \"NN\"\n    ], \n    \"forgive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Stauffer\": [\n        \"NNP\"\n    ], \n    \"abeyance\": [\n        \"NN\"\n    ], \n    \"hearths\": [\n        \"NNS\"\n    ], \n    \"lag\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"dexamethasone\": [\n        \"NN\"\n    ], \n    \"blister\": [\n        \"NN\"\n    ], \n    \"honey-in-the-sun\": [\n        \"JJ\"\n    ], \n    \"Nonrecurring\": [\n        \"JJ\"\n    ], \n    \"non-academic\": [\n        \"JJ\"\n    ], \n    \"States-Yugoslav\": [\n        \"NNP\"\n    ], \n    \"cremated\": [\n        \"VBN\"\n    ], \n    \"Seger-Elvekrog\": [\n        \"NNP\"\n    ], \n    \"glottochronological\": [\n        \"JJ\"\n    ], \n    \"undercapitalization\": [\n        \"NN\"\n    ], \n    \"Helmsley-Spear\": [\n        \"NNP\"\n    ], \n    \"Barakat\": [\n        \"NNP\"\n    ], \n    \"Booming\": [\n        \"JJ\"\n    ], \n    \"patrons...\": [\n        \":\"\n    ], \n    \"municipal-bond\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fancy\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"brave\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"once-grumpy\": [\n        \"JJ\"\n    ], \n    \"speedometer\": [\n        \"NN\"\n    ], \n    \"lower-quality\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"passes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"breathless\": [\n        \"JJ\"\n    ], \n    \"Co-sponsoring\": [\n        \"NNP\"\n    ], \n    \"Giroldi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"SWITCH\": [\n        \"NN\"\n    ], \n    \"inhibitions\": [\n        \"NNS\"\n    ], \n    \"polybutenes\": [\n        \"NNS\"\n    ], \n    \"passed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"penetrates\": [\n        \"VBZ\"\n    ], \n    \"single-shot\": [\n        \"JJ\"\n    ], \n    \"syrup\": [\n        \"NN\"\n    ], \n    \"court...\": [\n        \":\"\n    ], \n    \"passel\": [\n        \"NN\"\n    ], \n    \"headache\": [\n        \"NN\"\n    ], \n    \"Paolo\": [\n        \"NNP\"\n    ], \n    \"treasured\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"option\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"state-supervised\": [\n        \"JJ\"\n    ], \n    \"Pericle\": [\n        \"NNP\"\n    ], \n    \"relieved\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Dijon\": [\n        \"NNP\"\n    ], \n    \"rawboned\": [\n        \"JJ\"\n    ], \n    \"semi-serious\": [\n        \"JJ\"\n    ], \n    \"treasurer\": [\n        \"NN\"\n    ], \n    \"nullifying\": [\n        \"VBG\"\n    ], \n    \"REALTY\": [\n        \"NNP\"\n    ], \n    \"Beefeater\": [\n        \"NNP\"\n    ], \n    \"Nishimura\": [\n        \"NNP\"\n    ], \n    \"reliever\": [\n        \"NN\"\n    ], \n    \"relieves\": [\n        \"VBZ\"\n    ], \n    \"finishing-school\": [\n        \"NN\"\n    ], \n    \"fence-sit\": [\n        \"VB\"\n    ], \n    \"Marina\": [\n        \"NNP\"\n    ], \n    \"sinless\": [\n        \"JJ\"\n    ], \n    \"Rico\": [\n        \"NNP\"\n    ], \n    \"F.A.O.\": [\n        \"NNP\"\n    ], \n    \"whiskered\": [\n        \"JJ\"\n    ], \n    \"brushlike\": [\n        \"JJ\"\n    ], \n    \"WPA\": [\n        \"NNP\"\n    ], \n    \"doubly\": [\n        \"RB\"\n    ], \n    \"West...\": [\n        \":\"\n    ], \n    \"TRANSFER\": [\n        \"NN\"\n    ], \n    \"Crittenden\": [\n        \"NNP\"\n    ], \n    \"recently-filed\": [\n        \"JJ\"\n    ], \n    \"Anglo\": [\n        \"NNP\"\n    ], \n    \"Devices\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Wakui\": [\n        \"NNP\"\n    ], \n    \"gilt\": [\n        \"JJ\", \n        \"NN|JJ\", \n        \"NN\"\n    ], \n    \"Kombo\": [\n        \"NNP\"\n    ], \n    \"booklets\": [\n        \"NNS\"\n    ], \n    \"Dept.\": [\n        \"NNP\"\n    ], \n    \"Bamberger\": [\n        \"NNP\"\n    ], \n    \"Forge\": [\n        \"NNP\"\n    ], \n    \"Abercrombie\": [\n        \"NNP\"\n    ], \n    \"lorazapam\": [\n        \"NN\"\n    ], \n    \"perpetrate\": [\n        \"VB\"\n    ], \n    \"sandwiched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nuzhet\": [\n        \"NNP\"\n    ], \n    \"Supporters\": [\n        \"NNS\"\n    ], \n    \"hatbox\": [\n        \"NN\"\n    ], \n    \"staph\": [\n        \"NN\"\n    ], \n    \"archaized\": [\n        \"VBD\"\n    ], \n    \"manic-depressive\": [\n        \"NN\"\n    ], \n    \"Viewing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Refractories\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"sandwiches\": [\n        \"NNS\"\n    ], \n    \"Galvin\": [\n        \"NNP\"\n    ], \n    \"hurling\": [\n        \"VBG\"\n    ], \n    \"pianist\": [\n        \"NN\"\n    ], \n    \"puffing\": [\n        \"VBG\"\n    ], \n    \"human-resource\": [\n        \"JJ\"\n    ], \n    \"buff\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"wheedled\": [\n        \"VBN\"\n    ], \n    \"Boehlert\": [\n        \"NNP\"\n    ], \n    \"queasiness\": [\n        \"NN\"\n    ], \n    \"Coventry\": [\n        \"NNP\"\n    ], \n    \"reach\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"self-deluded\": [\n        \"JJ\"\n    ], \n    \"theircompany\": [\n        \"NN\"\n    ], \n    \"rumen\": [\n        \"NN\"\n    ], \n    \"miserly\": [\n        \"JJ\"\n    ], \n    \"Lafayette\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sears-McDonald\": [\n        \"NNP\"\n    ], \n    \"revivals\": [\n        \"NNS\"\n    ], \n    \"Giuseppe\": [\n        \"NNP\"\n    ], \n    \"soared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"equatorial\": [\n        \"JJ\"\n    ], \n    \"troubie\": [\n        \"NN\"\n    ], \n    \"windows\": [\n        \"NNS\"\n    ], \n    \"bugaboo\": [\n        \"NN\"\n    ], \n    \"coincides\": [\n        \"VBZ\"\n    ], \n    \"Switzer\": [\n        \"NNP\"\n    ], \n    \"locales\": [\n        \"NNS\"\n    ], \n    \"ingots\": [\n        \"NNS\"\n    ], \n    \"hindrance\": [\n        \"NN\"\n    ], \n    \"coincided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Juliet\": [\n        \"NNP\"\n    ], \n    \"say...\": [\n        \":\"\n    ], \n    \"agglutinin\": [\n        \"NN\"\n    ], \n    \"Forrester\": [\n        \"NNP\"\n    ], \n    \"rationalized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"reassembled\": [\n        \"VBN\"\n    ], \n    \"JP\": [\n        \"NNP\"\n    ], \n    \"Ebert\": [\n        \"NNP\"\n    ], \n    \"allocable\": [\n        \"JJ\"\n    ], \n    \"Erath\": [\n        \"NNP\"\n    ], \n    \"flexers\": [\n        \"NNS\"\n    ], \n    \"restarters\": [\n        \"NNS\"\n    ], \n    \"JH\": [\n        \"NNP\"\n    ], \n    \"laments\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Forward\": [\n        \"NNP\"\n    ], \n    \"JA\": [\n        \"NNP\"\n    ], \n    \"tussled\": [\n        \"VBD\"\n    ], \n    \"ragging\": [\n        \"VBG\"\n    ], \n    \"Seattlites\": [\n        \"NNS\"\n    ], \n    \"grabbag\": [\n        \"NN\"\n    ], \n    \"Nationwide\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"anvil\": [\n        \"NN\"\n    ], \n    \"firewood\": [\n        \"NN\"\n    ], \n    \"pianist-comedian\": [\n        \"NN\"\n    ], \n    \"Jr\": [\n        \"NNP\"\n    ], \n    \"Blaming\": [\n        \"VBG\"\n    ], \n    \"starters\": [\n        \"NNS\"\n    ], \n    \"Nature\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jo\": [\n        \"NNP\"\n    ], \n    \"Taruffi\": [\n        \"NNP\"\n    ], \n    \"unopposed\": [\n        \"JJ\"\n    ], \n    \"unilaterally\": [\n        \"RB\"\n    ], \n    \"feminists\": [\n        \"NNS\"\n    ], \n    \"hip\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bedford\": [\n        \"NNP\"\n    ], \n    \"hir\": [\n        \"PRP$\"\n    ], \n    \"his\": [\n        \"PRP$\", \n        \"PRP\"\n    ], \n    \"mono-unsaturated\": [\n        \"JJ\"\n    ], \n    \"babble\": [\n        \"NN\"\n    ], \n    \"ceremoniously\": [\n        \"RB\"\n    ], \n    \"Cokely\": [\n        \"NNP\"\n    ], \n    \"amici\": [\n        \"FW\"\n    ], \n    \"explosively\": [\n        \"RB\"\n    ], \n    \"Bierce\": [\n        \"NNP\"\n    ], \n    \"longest\": [\n        \"JJS\"\n    ], \n    \"commiserate\": [\n        \"VB\"\n    ], \n    \"banquet\": [\n        \"NN\"\n    ], \n    \"ogress\": [\n        \"NN\"\n    ], \n    \"loneliness\": [\n        \"NN\"\n    ], \n    \"obstructionism\": [\n        \"NN\"\n    ], \n    \"JOINT\": [\n        \"JJ\"\n    ], \n    \"J.\": [\n        \"NNP\"\n    ], \n    \"dossiers\": [\n        \"NNS\"\n    ], \n    \"outstrips\": [\n        \"VBZ\"\n    ], \n    \"bars\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Partnership\": [\n        \"NNP\"\n    ], \n    \"Shirt\": [\n        \"NNP\"\n    ], \n    \"intelligence\": [\n        \"NN\"\n    ], \n    \"Rospatch\": [\n        \"NNP\"\n    ], \n    \"yassuhs\": [\n        \"UH\"\n    ], \n    \"Shira\": [\n        \"NNP\"\n    ], \n    \"barb\": [\n        \"NN\"\n    ], \n    \"bare\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"bard\": [\n        \"NN\"\n    ], \n    \"bark\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Cluff\": [\n        \"NNP\"\n    ], \n    \"compacted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"barn\": [\n        \"NN\"\n    ], \n    \"entry-limited\": [\n        \"JJ\"\n    ], \n    \"learns\": [\n        \"VBZ\"\n    ], \n    \"glistening\": [\n        \"VBG\"\n    ], \n    \"Libya\": [\n        \"NNP\"\n    ], \n    \"distinctive\": [\n        \"JJ\"\n    ], \n    \"Oregon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"libraries\": [\n        \"NNS\"\n    ], \n    \"ENDED\": [\n        \"VBD\"\n    ], \n    \"Menelaus\": [\n        \"NNP\"\n    ], \n    \"use\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"consecutive\": [\n        \"JJ\"\n    ], \n    \"shtik\": [\n        \"NN\"\n    ], \n    \"Thursday-night\": [\n        \"JJ\"\n    ], \n    \"SALT\": [\n        \"NNP\"\n    ], \n    \"initially\": [\n        \"RB\"\n    ], \n    \"Ingbar\": [\n        \"NNP\"\n    ], \n    \"bronchus\": [\n        \"NN\"\n    ], \n    \"one-company\": [\n        \"JJ\"\n    ], \n    \"general-purpose\": [\n        \"JJ\"\n    ], \n    \"denomination\": [\n        \"NN\"\n    ], \n    \"rapid\": [\n        \"JJ\"\n    ], \n    \"admirers\": [\n        \"NNS\"\n    ], \n    \"African\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Japanese\": [\n        \"JJ\", \n        \"NN\", \n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"already-nervous\": [\n        \"NN\"\n    ], \n    \"Spurred\": [\n        \"VBN\"\n    ], \n    \"blazer\": [\n        \"NN\"\n    ], \n    \"Fracturing\": [\n        \"NNP\"\n    ], \n    \"sluiced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Morrissey\": [\n        \"NNP\"\n    ], \n    \"small-business\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Unitholders\": [\n        \"NNS\"\n    ], \n    \"Morey\": [\n        \"NNP\"\n    ], \n    \"four-nation\": [\n        \"JJ\"\n    ], \n    \"sluices\": [\n        \"NNS\"\n    ], \n    \"blazed\": [\n        \"VBD\"\n    ], \n    \"became\": [\n        \"VBD\"\n    ], \n    \"redemptions\": [\n        \"NNS\"\n    ], \n    \"upturns\": [\n        \"NNS\"\n    ], \n    \"Morel\": [\n        \"NNP\"\n    ], \n    \"arbitrarily\": [\n        \"RB\"\n    ], \n    \"network-affiliated\": [\n        \"JJ\"\n    ], \n    \"three-point\": [\n        \"JJ\"\n    ], \n    \"carpet-cleaning\": [\n        \"JJ\"\n    ], \n    \"unleveled\": [\n        \"VBN\"\n    ], \n    \"improper\": [\n        \"JJ\"\n    ], \n    \"goldfish\": [\n        \"NN\"\n    ], \n    \"weasel\": [\n        \"NN\"\n    ], \n    \"Cobb\": [\n        \"NNP\"\n    ], \n    \"Cobo\": [\n        \"NNP\"\n    ], \n    \"cyclicality\": [\n        \"NN\"\n    ], \n    \"pesatas\": [\n        \"NNS\"\n    ], \n    \"pro-Reagan\": [\n        \"JJ\"\n    ], \n    \"Latter-day\": [\n        \"JJ\"\n    ], \n    \"Hewlett-Woodmere\": [\n        \"NNP\"\n    ], \n    \"jugglers\": [\n        \"NNS\"\n    ], \n    \"steeples\": [\n        \"NNS\"\n    ], \n    \"Guitar\": [\n        \"NNP\"\n    ], \n    \"whom\": [\n        \"WP\"\n    ], \n    \"reduction\": [\n        \"NN\"\n    ], \n    \"ditches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"whoe\": [\n        \"WP\"\n    ], \n    \"Elite\": [\n        \"NNP\"\n    ], \n    \"Finkel\": [\n        \"NNP\"\n    ], \n    \"buck\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"process-control\": [\n        \"NN\"\n    ], \n    \"passably\": [\n        \"RB\"\n    ], \n    \"single-party\": [\n        \"JJ\"\n    ], \n    \"Maitland\": [\n        \"NNP\"\n    ], \n    \"TRIAD\": [\n        \"NNP\"\n    ], \n    \"Afghan-Pakistan\": [\n        \"JJ\"\n    ], \n    \"tug-of-war\": [\n        \"NN\"\n    ], \n    \"near-completion\": [\n        \"NN\"\n    ], \n    \"left-handed\": [\n        \"JJ\"\n    ], \n    \"labor-shortage\": [\n        \"NN\"\n    ], \n    \"stolen\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Succeeding\": [\n        \"VBG\"\n    ], \n    \"bailouts\": [\n        \"NNS\"\n    ], \n    \"sportiest\": [\n        \"JJS\"\n    ], \n    \"fingerings\": [\n        \"NNS\"\n    ], \n    \"foreign-assistance\": [\n        \"NN\"\n    ], \n    \"Heidrick\": [\n        \"NNP\"\n    ], \n    \"wireline\": [\n        \"JJ\"\n    ], \n    \"underperformed\": [\n        \"VBN\"\n    ], \n    \"Springerville\": [\n        \"NNP\"\n    ], \n    \"engineers\": [\n        \"NNS\"\n    ], \n    \"City\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lodges\": [\n        \"NNS\"\n    ], \n    \"Middlesex\": [\n        \"NNP\"\n    ], \n    \"blurted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"self-promotion\": [\n        \"NN\"\n    ], \n    \"Edwards\": [\n        \"NNP\"\n    ], \n    \"Edwardh\": [\n        \"NNP\"\n    ], \n    \"lodged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fleet\\\\/Norstar\": [\n        \"NNP\"\n    ], \n    \"Write-offs\": [\n        \"NNS\"\n    ], \n    \"Freeze\": [\n        \"NN\"\n    ], \n    \"anguish\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Cite\": [\n        \"VBP\"\n    ], \n    \"gallus-snapping\": [\n        \"JJ\"\n    ], \n    \"openended\": [\n        \"VBN\"\n    ], \n    \"predigested\": [\n        \"VBN\"\n    ], \n    \"twofold\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"myth\": [\n        \"NN\"\n    ], \n    \"retroactively\": [\n        \"RB\"\n    ], \n    \"Skydome\": [\n        \"NNP\"\n    ], \n    \"cumulus\": [\n        \"NN\"\n    ], \n    \"Vibrometer\": [\n        \"NN\"\n    ], \n    \"Rolls-Royce\": [\n        \"NNP\"\n    ], \n    \"widely\": [\n        \"RB\"\n    ], \n    \"itchy\": [\n        \"JJ\"\n    ], \n    \"pro-reform\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"parvenus\": [\n        \"NNS\"\n    ], \n    \"biochemist\": [\n        \"NN\"\n    ], \n    \"Ila\": [\n        \"NNP\"\n    ], \n    \"depersonalization\": [\n        \"NN\"\n    ], \n    \"negotiate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Sober\": [\n        \"NNP\"\n    ], \n    \"Fabian\": [\n        \"NNP\"\n    ], \n    \"psychoanalyst\": [\n        \"NN\"\n    ], \n    \"post-1987\": [\n        \"JJ\"\n    ], \n    \"executive-level\": [\n        \"JJ\"\n    ], \n    \"interrogation\": [\n        \"NN\"\n    ], \n    \"precedent-setting\": [\n        \"JJ\"\n    ], \n    \"verboten\": [\n        \"FW\"\n    ], \n    \"new-car\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"refute\": [\n        \"VB\"\n    ], \n    \"Seizing\": [\n        \"VBG\"\n    ], \n    \"edgy\": [\n        \"JJ\"\n    ], \n    \"unnourished\": [\n        \"JJ\"\n    ], \n    \"edge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Augustines\": [\n        \"NNPS\"\n    ], \n    \"dares\": [\n        \"VBZ\"\n    ], \n    \"hotdog\": [\n        \"NN\"\n    ], \n    \"bleaching\": [\n        \"VBG\"\n    ], \n    \"honeymooning\": [\n        \"NN\"\n    ], \n    \"endeavour\": [\n        \"NN\"\n    ], \n    \"marshalling\": [\n        \"NN\"\n    ], \n    \"reliant\": [\n        \"JJ\"\n    ], \n    \"GLI\": [\n        \"NNP\"\n    ], \n    \"aftermaths\": [\n        \"NNS\"\n    ], \n    \"salutaris\": [\n        \"FW\"\n    ], \n    \"intervals\": [\n        \"NNS\"\n    ], \n    \"pyramiding\": [\n        \"VBG\"\n    ], \n    \"autumnal\": [\n        \"JJ\"\n    ], \n    \"Semenov\": [\n        \"NNP\"\n    ], \n    \"Sixteenth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"tigress\": [\n        \"NN\"\n    ], \n    \"tektite\": [\n        \"NN\"\n    ], \n    \"illusions\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"corroborated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mile-long\": [\n        \"JJ\"\n    ], \n    \"half-melted\": [\n        \"JJ\"\n    ], \n    \"tamer\": [\n        \"JJR\"\n    ], \n    \"theorem\": [\n        \"NN\"\n    ], \n    \"single-digit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MedChem\": [\n        \"NNP\"\n    ], \n    \"curettage\": [\n        \"NN\"\n    ], \n    \"unscheduled\": [\n        \"JJ\"\n    ], \n    \"Farwell\": [\n        \"NNP\"\n    ], \n    \"Glory\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"twopoint\": [\n        \"NN\"\n    ], \n    \"conscript\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sharpener\": [\n        \"NN\"\n    ], \n    \"REJECTED\": [\n        \"VBN\"\n    ], \n    \"Defends\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rafters\": [\n        \"NNS\"\n    ], \n    \"specialized-engineering\": [\n        \"JJ\"\n    ], \n    \"WMB\": [\n        \"NNP\"\n    ], \n    \"antiseptic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sharpened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kass-Pedone\": [\n        \"NNP\"\n    ], \n    \"modifications\": [\n        \"NNS\"\n    ], \n    \"Cucamonga\": [\n        \"NNP\"\n    ], \n    \"capitals\": [\n        \"NNS\"\n    ], \n    \"drooled\": [\n        \"VBD\"\n    ], \n    \"ignore\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"one-week\": [\n        \"JJ\"\n    ], \n    \"unstable\": [\n        \"JJ\"\n    ], \n    \"rearrangement\": [\n        \"NN\"\n    ], \n    \"Teeley\": [\n        \"NNP\"\n    ], \n    \"pre-independence\": [\n        \"NN\"\n    ], \n    \"pro-student\": [\n        \"JJ\"\n    ], \n    \"Pharmaceutical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"konga\": [\n        \"NN\"\n    ], \n    \"hinted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"time-cast\": [\n        \"JJ\"\n    ], \n    \"Backs\": [\n        \"VBZ\"\n    ], \n    \"Leighton\": [\n        \"NNP\"\n    ], \n    \"highest-pitched\": [\n        \"JJ\"\n    ], \n    \"litter\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"selfishness\": [\n        \"NN\"\n    ], \n    \"co-developers\": [\n        \"NNS\"\n    ], \n    \"modernize\": [\n        \"VB\"\n    ], \n    \"insurance-cost\": [\n        \"JJ\"\n    ], \n    \"Prototype\": [\n        \"NN\"\n    ], \n    \"Clubs\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Fund\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Virus\": [\n        \"NN\"\n    ], \n    \"Motorola\": [\n        \"NNP\"\n    ], \n    \"ticking\": [\n        \"VBG\"\n    ], \n    \"osmium\": [\n        \"NN\"\n    ], \n    \"headmaster\": [\n        \"NN\"\n    ], \n    \"Funk\": [\n        \"NNP\"\n    ], \n    \"PARENT\": [\n        \"NN\"\n    ], \n    \"Aguilar\": [\n        \"NNP\"\n    ], \n    \"non-beer\": [\n        \"JJ\"\n    ], \n    \"solecism\": [\n        \"NN\"\n    ], \n    \"Barton\": [\n        \"NNP\"\n    ], \n    \"Bartol\": [\n        \"NNP\"\n    ], \n    \"capital-punishment\": [\n        \"NN\"\n    ], \n    \"Taoists\": [\n        \"NNP\"\n    ], \n    \"cannons\": [\n        \"NNS\"\n    ], \n    \"palmed\": [\n        \"VBD\"\n    ], \n    \"roundup\": [\n        \"NN\"\n    ], \n    \"Fulfills\": [\n        \"VBZ\"\n    ], \n    \"Singleton\": [\n        \"NNP\"\n    ], \n    \"tauntingly\": [\n        \"RB\"\n    ], \n    \"Koreagate\": [\n        \"NNP\"\n    ], \n    \"Okrent\": [\n        \"NNP\"\n    ], \n    \"overgenerous\": [\n        \"JJ\"\n    ], \n    \"entrepreneurs\": [\n        \"NNS\"\n    ], \n    \"completing\": [\n        \"VBG\"\n    ], \n    \"I.R.S.\": [\n        \"NNP\"\n    ], \n    \"grazin\": [\n        \"VBG\"\n    ], \n    \"tyme\": [\n        \"NN\"\n    ], \n    \"hatred\": [\n        \"NN\"\n    ], \n    \"Nathan-Bond\": [\n        \"NNP\"\n    ], \n    \"resiliency\": [\n        \"NN\"\n    ], \n    \"microorganism\": [\n        \"NN\"\n    ], \n    \"unnoticed\": [\n        \"JJ\"\n    ], \n    \"stitched\": [\n        \"VBN\"\n    ], \n    \"conquest\": [\n        \"NN\"\n    ], \n    \"operational\": [\n        \"JJ\"\n    ], \n    \"OPPENHEIMER\": [\n        \"NNP\"\n    ], \n    \"shawls\": [\n        \"NNS\"\n    ], \n    \"religiosity\": [\n        \"NN\"\n    ], \n    \"Greene\\\\/Worldwide\": [\n        \"NNP\"\n    ], \n    \"Sonnett\": [\n        \"NNP\"\n    ], \n    \"resilience\": [\n        \"NN\"\n    ], \n    \"intraday\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"stitches\": [\n        \"NNS\"\n    ], \n    \"amidst\": [\n        \"IN\"\n    ], \n    \"Batallion-2000\": [\n        \"NNP\"\n    ], \n    \"window\": [\n        \"NN\"\n    ], \n    \"ABG-Semca\": [\n        \"NNP\"\n    ], \n    \"Fuzzy\": [\n        \"JJ\"\n    ], \n    \"skouting\": [\n        \"VBG\"\n    ], \n    \"albumin\": [\n        \"NN\"\n    ], \n    \"audio-visual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Beccaria\": [\n        \"NNP\"\n    ], \n    \"Verit\": [\n        \"NNP\"\n    ], \n    \"Maoist\": [\n        \"JJ\"\n    ], \n    \"higher-than-retail\": [\n        \"JJ\"\n    ], \n    \"Sylvan\": [\n        \"NNP\"\n    ], \n    \"Ziebarth\": [\n        \"NNP\"\n    ], \n    \"repeatedly\": [\n        \"RB\"\n    ], \n    \"Zedmark\": [\n        \"NNP\"\n    ], \n    \"Means\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\", \n        \"VBZ\"\n    ], \n    \"non-Russian\": [\n        \"JJ\"\n    ], \n    \"Wickcliffe\": [\n        \"NNP\"\n    ], \n    \"commercialism\": [\n        \"NN\"\n    ], \n    \"licensees\": [\n        \"NNS\"\n    ], \n    \"feasting\": [\n        \"VBG\"\n    ], \n    \"peppermint\": [\n        \"NN\"\n    ], \n    \"majority-party\": [\n        \"JJ\"\n    ], \n    \"unsealed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Westerners\": [\n        \"NNPS\"\n    ], \n    \"dill\": [\n        \"NN\"\n    ], \n    \"Ansel\": [\n        \"NNP\"\n    ], \n    \"dystrophy\": [\n        \"NN\"\n    ], \n    \"worthwhile\": [\n        \"JJ\"\n    ], \n    \"radiopasteurization\": [\n        \"NN\"\n    ], \n    \"shortcuts\": [\n        \"NNS\"\n    ], \n    \"gunpoint\": [\n        \"NN\"\n    ], \n    \"Hungerfords\": [\n        \"NNP\"\n    ], \n    \"divisive\": [\n        \"JJ\"\n    ], \n    \"missionaries\": [\n        \"NNS\"\n    ], \n    \"wall-flowers\": [\n        \"NNS\"\n    ], \n    \"capitalmarket\": [\n        \"NN\"\n    ], \n    \"forestalled\": [\n        \"VBN\"\n    ], \n    \"dessert-menu\": [\n        \"NN\"\n    ], \n    \"grouper\": [\n        \"NN\"\n    ], \n    \"malicious\": [\n        \"JJ\"\n    ], \n    \"Specifics\": [\n        \"NNS\"\n    ], \n    \"Embarcadero\": [\n        \"NNP\"\n    ], \n    \"grouped\": [\n        \"VBN\"\n    ], \n    \"ornamented\": [\n        \"VBN\"\n    ], \n    \"mammoth\": [\n        \"JJ\"\n    ], \n    \"interpretable\": [\n        \"JJ\"\n    ], \n    \"disrupting\": [\n        \"VBG\"\n    ], \n    \"Felsher\": [\n        \"NNP\"\n    ], \n    \"least-developed-nation\": [\n        \"JJ\"\n    ], \n    \"then-prevailing\": [\n        \"JJ\"\n    ], \n    \"half-filled\": [\n        \"JJ\"\n    ], \n    \"Foiles\": [\n        \"NNP\"\n    ], \n    \"fluorescence\": [\n        \"NN\"\n    ], \n    \"policymaker\": [\n        \"NN\"\n    ], \n    \"liquefy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Reformation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Foiled\": [\n        \"VBN\"\n    ], \n    \"KOFY\": [\n        \"NNP\"\n    ], \n    \"emoted\": [\n        \"VBD\"\n    ], \n    \"Oakland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"scroll\": [\n        \"NN\"\n    ], \n    \"draftee\": [\n        \"NN\"\n    ], \n    \"reseachers\": [\n        \"NNS\"\n    ], \n    \"Kimmel\": [\n        \"NNP\"\n    ], \n    \"underachievers\": [\n        \"NNS\"\n    ], \n    \"philosopher\": [\n        \"NN\"\n    ], \n    \"instantaneous\": [\n        \"JJ\"\n    ], \n    \"Stands\": [\n        \"NNP\"\n    ], \n    \"prospectively\": [\n        \"RB\"\n    ], \n    \"Bowan\": [\n        \"NNP\"\n    ], \n    \"Viewpoint\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"special-interest\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Endara\": [\n        \"NNP\"\n    ], \n    \"A.P.\": [\n        \"NNP\"\n    ], \n    \"squeezing\": [\n        \"VBG\"\n    ], \n    \"sweathruna\": [\n        \"FW\"\n    ], \n    \"Commanding\": [\n        \"VBG\"\n    ], \n    \"Dailey\": [\n        \"NNP\"\n    ], \n    \"property-rich\": [\n        \"JJ\"\n    ], \n    \"manufactured...\": [\n        \":\"\n    ], \n    \"Systemwide\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Sobel\": [\n        \"NNP\"\n    ], \n    \"Porgy\": [\n        \"NNP\"\n    ], \n    \"engineered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"headlined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"BANCORPORATION\": [\n        \"NNP\"\n    ], \n    \"NRM\": [\n        \"NNP\"\n    ], \n    \"auto-buying\": [\n        \"NN\"\n    ], \n    \"warships\": [\n        \"NNS\"\n    ], \n    \"Sims\": [\n        \"NNP\"\n    ], \n    \"LAN\": [\n        \"NNP\"\n    ], \n    \"troup\": [\n        \"NN\"\n    ], \n    \"one-thousandth\": [\n        \"NN\"\n    ], \n    \"fadeout\": [\n        \"NN\"\n    ], \n    \"Tarot-like\": [\n        \"JJ\"\n    ], \n    \"violinists\": [\n        \"NNS\"\n    ], \n    \"prepayment-protected\": [\n        \"JJ\"\n    ], \n    \"LAC\": [\n        \"NNP\"\n    ], \n    \"deals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Projections\": [\n        \"NNS\"\n    ], \n    \"Kuraray\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dealt\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"manifestly\": [\n        \"RB\"\n    ], \n    \"businesses\": [\n        \"NNS\"\n    ], \n    \"LAW\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"all-married\": [\n        \"JJ\"\n    ], \n    \"stainless-steel\": [\n        \"JJ\"\n    ], \n    \"Haynie\": [\n        \"NNP\"\n    ], \n    \"civic-lunch\": [\n        \"JJ\"\n    ], \n    \"Neanderthal\": [\n        \"JJ\"\n    ], \n    \"narcotizes\": [\n        \"VBZ\"\n    ], \n    \"reinsure\": [\n        \"VB\"\n    ], \n    \"Interviews\": [\n        \"NNS\"\n    ], \n    \"surefire\": [\n        \"JJ\"\n    ], \n    \"pre-French\": [\n        \"JJ\"\n    ], \n    \"Hutton\": [\n        \"NNP\"\n    ], \n    \"Raw-steel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Durwood\": [\n        \"NNP\"\n    ], \n    \"open-bank\": [\n        \"JJ\"\n    ], \n    \"beanballs\": [\n        \"NNS\"\n    ], \n    \"buffeted\": [\n        \"VBN\"\n    ], \n    \"universities\": [\n        \"NNS\"\n    ], \n    \"hourly\": [\n        \"JJ\"\n    ], \n    \"Zygmunt\": [\n        \"NNP\"\n    ], \n    \"Narita\": [\n        \"NNP\"\n    ], \n    \"non-familial\": [\n        \"JJ\"\n    ], \n    \"Zakes\": [\n        \"NNP\"\n    ], \n    \"attire\": [\n        \"NN\"\n    ], \n    \"Randall\": [\n        \"NNP\"\n    ], \n    \"post-colonial\": [\n        \"JJ\"\n    ], \n    \"twice-a-year\": [\n        \"JJ\"\n    ], \n    \"vistas\": [\n        \"NNS\"\n    ], \n    \"re-exports\": [\n        \"NNS\"\n    ], \n    \"noncontract\": [\n        \"JJ\"\n    ], \n    \"Belafonte\": [\n        \"NNP\"\n    ], \n    \"sinuses\": [\n        \"NNS\"\n    ], \n    \"Macropathology\": [\n        \"NN\"\n    ], \n    \"stock-conspiracy\": [\n        \"NN\"\n    ], \n    \"end-tailed\": [\n        \"VBN\"\n    ], \n    \"bottom-fishers\": [\n        \"NNS\"\n    ], \n    \"Technomic\": [\n        \"NNP\"\n    ], \n    \"Benediction\": [\n        \"NNP\"\n    ], \n    \"scrapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Alois\": [\n        \"NNP\"\n    ], \n    \"coverlet\": [\n        \"NN\"\n    ], \n    \"Dowd\": [\n        \"NNP\"\n    ], \n    \"Clapper\": [\n        \"NNP\"\n    ], \n    \"rationalistic\": [\n        \"JJ\"\n    ], \n    \"oversold\": [\n        \"VBN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"U.S.-Korean\": [\n        \"JJ\"\n    ], \n    \"Hardy\": [\n        \"NNP\"\n    ], \n    \"permanent-insurance\": [\n        \"JJ\"\n    ], \n    \"Materials\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"helpers\": [\n        \"NNS\"\n    ], \n    \"Spade\": [\n        \"NNP\"\n    ], \n    \"pseudo-history\": [\n        \"NN\"\n    ], \n    \"Carlsbad\": [\n        \"NNP\"\n    ], \n    \"feverishly\": [\n        \"RB\"\n    ], \n    \"shovel\": [\n        \"NN\"\n    ], \n    \"gossiped\": [\n        \"VBN\"\n    ], \n    \"declivity\": [\n        \"NN\"\n    ], \n    \"scales\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"forbid\": [\n        \"VB\", \n        \"VBP\", \n        \"UH\"\n    ], \n    \"chipped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"black-and-white\": [\n        \"JJ\"\n    ], \n    \"shoved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Threatening\": [\n        \"VBG\"\n    ], \n    \"subsidary\": [\n        \"JJ\"\n    ], \n    \"quake-inflicted\": [\n        \"JJ\"\n    ], \n    \"scaled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"adsorbs\": [\n        \"VBZ\"\n    ], \n    \"thirteenth-century\": [\n        \"JJ\"\n    ], \n    \"decade-long\": [\n        \"JJ\"\n    ], \n    \"Toho\": [\n        \"NNP\"\n    ], \n    \"nitrofurantoin\": [\n        \"NN\"\n    ], \n    \"shoves\": [\n        \"VBZ\"\n    ], \n    \"analyses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"grassy\": [\n        \"JJ\"\n    ], \n    \"mycology\": [\n        \"NN\"\n    ], \n    \"pauses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Births\": [\n        \"NNS\"\n    ], \n    \"Jacksons\": [\n        \"NNPS\"\n    ], \n    \"deer-are-long-legged-rats-with-big-ears\": [\n        \"JJ\"\n    ], \n    \"modicum\": [\n        \"NN\"\n    ], \n    \"organismic\": [\n        \"JJ\"\n    ], \n    \"Murguia\": [\n        \"NNP\"\n    ], \n    \"exchange-listed\": [\n        \"JJ\"\n    ], \n    \"Dolphins\": [\n        \"NNPS\"\n    ], \n    \"particularistic\": [\n        \"JJ\"\n    ], \n    \"Gloom\": [\n        \"NN\"\n    ], \n    \"Selections\": [\n        \"NNS\"\n    ], \n    \"Gossips\": [\n        \"NNS\"\n    ], \n    \"inclined\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"symbolizing\": [\n        \"VBG\"\n    ], \n    \"EMPLOYEE\": [\n        \"NN\"\n    ], \n    \"Oct.13\": [\n        \"NNP\"\n    ], \n    \"Copaken\": [\n        \"NNP\"\n    ], \n    \"Sighting\": [\n        \"VBG\"\n    ], \n    \"rabbit\": [\n        \"NN\"\n    ], \n    \"entwined\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"thuringiensis\": [\n        \"FW\"\n    ], \n    \"Giannini\": [\n        \"NNP\"\n    ], \n    \"women\": [\n        \"NNS\"\n    ], \n    \"Trompe\": [\n        \"FW\"\n    ], \n    \"parent-company\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ANF-Industrie\": [\n        \"NNP\"\n    ], \n    \"D.,Calif.\": [\n        \"NN\"\n    ], \n    \"restaged\": [\n        \"VBN\"\n    ], \n    \"extralegal\": [\n        \"JJ\"\n    ], \n    \"hookup\": [\n        \"NN\"\n    ], \n    \"Solloway\": [\n        \"NNP\"\n    ], \n    \"abort\": [\n        \"VB\"\n    ], \n    \"merged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"kenning\": [\n        \"NN\"\n    ], \n    \"NTC\": [\n        \"NNP\"\n    ], \n    \"advancement\": [\n        \"NN\"\n    ], \n    \"NTG\": [\n        \"NNP\"\n    ], \n    \"Fox-Pitt\": [\n        \"NNP\"\n    ], \n    \"indulgence\": [\n        \"NN\"\n    ], \n    \"Northern\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"descramblers.\": [\n        \"NN\"\n    ], \n    \"flaring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"rapt\": [\n        \"JJ\"\n    ], \n    \"heaving\": [\n        \"VBG\"\n    ], \n    \"Skipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Magic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"rape\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cutbacks\": [\n        \"NNP\"\n    ], \n    \"Frisbee\": [\n        \"NNP\"\n    ], \n    \"guru\": [\n        \"NN\"\n    ], \n    \"patronize\": [\n        \"VB\"\n    ], \n    \"HUTTON\": [\n        \"NNP\"\n    ], \n    \"Hubie\": [\n        \"NNP\"\n    ], \n    \"fidgeting\": [\n        \"VBG\"\n    ], \n    \"Duchossois\": [\n        \"NNP\"\n    ], \n    \"extra-curricular\": [\n        \"JJ\"\n    ], \n    \"undersized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"goldsmith\": [\n        \"NN\"\n    ], \n    \"modulations\": [\n        \"NNS\"\n    ], \n    \"segmenting\": [\n        \"VBG\"\n    ], \n    \"exemplify\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"hurdles\": [\n        \"NNS\"\n    ], \n    \"bestsellers\": [\n        \"NNS\"\n    ], \n    \"anti-management\": [\n        \"JJ\"\n    ], \n    \"salvaging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Vassiliades\": [\n        \"NNP\"\n    ], \n    \"hurdled\": [\n        \"VBD\"\n    ], \n    \"Qualities\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"ethnic\": [\n        \"JJ\"\n    ], \n    \"Hence\": [\n        \"RB\"\n    ], \n    \"hymens\": [\n        \"NNS\"\n    ], \n    \"Dostoevski\": [\n        \"NNP\"\n    ], \n    \"Knightfall\": [\n        \"NNP\"\n    ], \n    \"sculptures\": [\n        \"NNS\"\n    ], \n    \"Aermacchi\": [\n        \"NNP\"\n    ], \n    \"interrupted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Far-reaching\": [\n        \"JJ\"\n    ], \n    \"Fairmont\": [\n        \"NNP\"\n    ], \n    \"sculptured\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"penny-stocks\": [\n        \"NN\"\n    ], \n    \"high-rises\": [\n        \"NNS\"\n    ], \n    \"irregularity\": [\n        \"NN\"\n    ], \n    \"Rundfunk-Sinfonie-Orchester\": [\n        \"NNP\"\n    ], \n    \"Convulsively\": [\n        \"RB\"\n    ], \n    \"heavyweight\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Toronto-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"half-bottles\": [\n        \"NNS\"\n    ], \n    \"heebie-jeebies\": [\n        \"NNS\"\n    ], \n    \"fizzy\": [\n        \"NN\"\n    ], \n    \"humaneness\": [\n        \"NN\"\n    ], \n    \"dearest\": [\n        \"JJS\"\n    ], \n    \"primary-color\": [\n        \"JJ\"\n    ], \n    \"outsold\": [\n        \"VBD\"\n    ], \n    \"Inwood\": [\n        \"NNP\"\n    ], \n    \"obeisance\": [\n        \"NN\"\n    ], \n    \"Billard\": [\n        \"NNP\"\n    ], \n    \"complicate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"inlet\": [\n        \"NN\"\n    ], \n    \"Hoemke\": [\n        \"NNP\"\n    ], \n    \"choosy\": [\n        \"JJ\"\n    ], \n    \"apologetically\": [\n        \"RB\"\n    ], \n    \"owe\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"money-wise\": [\n        \"JJ\"\n    ], \n    \"choose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Roizen\": [\n        \"NNP\"\n    ], \n    \"inconsistencies\": [\n        \"NNS\"\n    ], \n    \"covered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"pending\": [\n        \"VBG\", \n        \"JJ\", \n        \"VBG|JJ\"\n    ], \n    \"Yoder\": [\n        \"NNP\"\n    ], \n    \"Task\": [\n        \"NNP\"\n    ], \n    \"Scandinavia\": [\n        \"NNP\"\n    ], \n    \"multi-purpose\": [\n        \"JJ\"\n    ], \n    \"Gabor\": [\n        \"NNP\"\n    ], \n    \"flour\": [\n        \"NN\"\n    ], \n    \"flout\": [\n        \"VB\"\n    ], \n    \"lionized\": [\n        \"VBN\"\n    ], \n    \"place-kicking\": [\n        \"NN\"\n    ], \n    \"catchwords\": [\n        \"NNS\"\n    ], \n    \"Gabon\": [\n        \"NNP\"\n    ], \n    \"Adam\": [\n        \"NNP\"\n    ], \n    \"microeconomic\": [\n        \"JJ\"\n    ], \n    \"Writing\": [\n        \"VBG\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"service\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"mollified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"decommissioned\": [\n        \"VBN\"\n    ], \n    \"drummers\": [\n        \"NNS\"\n    ], \n    \"HMOs\": [\n        \"NNP\"\n    ], \n    \"Considerable\": [\n        \"JJ\"\n    ], \n    \"Emulex\": [\n        \"NNP\"\n    ], \n    \"worst-case\": [\n        \"JJ\"\n    ], \n    \"unavailing\": [\n        \"JJ\"\n    ], \n    \"job-boosters\": [\n        \"NNS\"\n    ], \n    \"higher-toned\": [\n        \"JJ\"\n    ], \n    \"FiberWorld\": [\n        \"NNP\"\n    ], \n    \"Arts\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"masterworks\": [\n        \"NNS\"\n    ], \n    \"completions\": [\n        \"NNS\"\n    ], \n    \"HATS\": [\n        \"NNS\"\n    ], \n    \"U.S.-built\": [\n        \"JJ\"\n    ], \n    \"Witnesses\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"whitish\": [\n        \"JJ\"\n    ], \n    \"Spangenberg\": [\n        \"NNP\"\n    ], \n    \"lobbied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"firepower\": [\n        \"NN\"\n    ], \n    \"sectional\": [\n        \"JJ\"\n    ], \n    \"Shuttle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Michelob\": [\n        \"NNP\"\n    ], \n    \"respects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"effloresce\": [\n        \"VB\"\n    ], \n    \"unabated\": [\n        \"JJ\"\n    ], \n    \"gurgle\": [\n        \"NN\"\n    ], \n    \"impart\": [\n        \"VB\"\n    ], \n    \"McCafferty\": [\n        \"NNP\"\n    ], \n    \"dive\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Vantage\": [\n        \"NNP\"\n    ], \n    \"proviso\": [\n        \"NN\"\n    ], \n    \"hair-relaxer\": [\n        \"NN\"\n    ], \n    \"witches\": [\n        \"NNS\"\n    ], \n    \"sunbaked\": [\n        \"JJ\"\n    ], \n    \"Deno\": [\n        \"NNP\"\n    ], \n    \"service-industry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"digitalis\": [\n        \"NN\"\n    ], \n    \"supercritical\": [\n        \"JJ\"\n    ], \n    \"halfheartedly\": [\n        \"RB\"\n    ], \n    \"dumpster\": [\n        \"NN\"\n    ], \n    \"yori\": [\n        \"FW\"\n    ], \n    \"conflicts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Snedaker\": [\n        \"NNP\"\n    ], \n    \"Ed.\": [\n        \"NNP\"\n    ], \n    \"yore\": [\n        \"PRP$\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"conscripted\": [\n        \"VBN\"\n    ], \n    \"feasible\": [\n        \"JJ\"\n    ], \n    \"conversation\": [\n        \"NN\"\n    ], \n    \"round-eyed\": [\n        \"JJ\"\n    ], \n    \"reweave\": [\n        \"VB\"\n    ], \n    \"slow-firing\": [\n        \"JJ\"\n    ], \n    \"warning-signals\": [\n        \"NN\"\n    ], \n    \"boondoggle\": [\n        \"NN\"\n    ], \n    \"information-delivery\": [\n        \"NN\"\n    ], \n    \"keyless\": [\n        \"JJ\"\n    ], \n    \"amorist\": [\n        \"NN\"\n    ], \n    \"nonrecurring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"experience-oriented\": [\n        \"JJ\"\n    ], \n    \"Maloof\": [\n        \"NNP\"\n    ], \n    \"much-delayed\": [\n        \"JJ\"\n    ], \n    \"Flushing\": [\n        \"NNP\"\n    ], \n    \"management-services\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"endemic\": [\n        \"JJ\"\n    ], \n    \"tolerant\": [\n        \"JJ\"\n    ], \n    \"salient\": [\n        \"JJ\"\n    ], \n    \"triphenylstibine\": [\n        \"NN\"\n    ], \n    \"Swiss-franc\": [\n        \"NN\"\n    ], \n    \"Uprising\": [\n        \"NNP\"\n    ], \n    \"overdraft\": [\n        \"NN\"\n    ], \n    \"galley\": [\n        \"NN\"\n    ], \n    \"galled\": [\n        \"VBN\"\n    ], \n    \"tootles\": [\n        \"VBZ\"\n    ], \n    \"compact-disk\": [\n        \"NN\"\n    ], \n    \"minority-internship\": [\n        \"JJ\"\n    ], \n    \"earthshaking\": [\n        \"JJ\"\n    ], \n    \"pimplike\": [\n        \"JJ\"\n    ], \n    \"doomed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"powdered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"simulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"institution\": [\n        \"NN\"\n    ], \n    \"heat-processing\": [\n        \"JJ\"\n    ], \n    \"Heymeyer\": [\n        \"NNP\"\n    ], \n    \"males\": [\n        \"NNS\"\n    ], \n    \"Bellow\": [\n        \"NNP\"\n    ], \n    \"recontamination\": [\n        \"NN\"\n    ], \n    \"say-speak\": [\n        \"NN\"\n    ], \n    \"Moldavian\": [\n        \"NNP\"\n    ], \n    \"riches\": [\n        \"NNS\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"abetting\": [\n        \"VBG\"\n    ], \n    \"frugal\": [\n        \"JJ\"\n    ], \n    \"Fletcher\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Corrupt\": [\n        \"NNP\"\n    ], \n    \"Ailey\": [\n        \"NNP\"\n    ], \n    \"creek-filled\": [\n        \"JJ\"\n    ], \n    \"Milling\": [\n        \"NNP\"\n    ], \n    \"quality-adjusted\": [\n        \"JJ\"\n    ], \n    \"Ailes\": [\n        \"NNP\"\n    ], \n    \"Empire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fissionable\": [\n        \"JJ\"\n    ], \n    \"Potash\": [\n        \"NNP\"\n    ], \n    \"muezzin\": [\n        \"NN\"\n    ], \n    \"quasi-xenophobic\": [\n        \"JJ\"\n    ], \n    \"Kremlin\": [\n        \"NNP\"\n    ], \n    \"Independent\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"arraigning\": [\n        \"VBG\"\n    ], \n    \"shareholder-rights\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Pabst\": [\n        \"NNP\"\n    ], \n    \"ham-handed\": [\n        \"JJ\"\n    ], \n    \"pre-game\": [\n        \"JJ\"\n    ], \n    \"Braking\": [\n        \"NNP\"\n    ], \n    \"ghazals\": [\n        \"FW\"\n    ], \n    \"Twaron\": [\n        \"NNP\"\n    ], \n    \"Elizabeth\": [\n        \"NNP\"\n    ], \n    \"supplanted\": [\n        \"VBN\"\n    ], \n    \"Kiss\": [\n        \"VB\"\n    ], \n    \"Mattox\": [\n        \"NNP\"\n    ], \n    \"Yquem\": [\n        \"NNP\"\n    ], \n    \"Howie\": [\n        \"NNP\"\n    ], \n    \"Middlefield\": [\n        \"NNP\"\n    ], \n    \"wind-blown\": [\n        \"JJ\"\n    ], \n    \"firecrackers\": [\n        \"NNS\"\n    ], \n    \"Daniil\": [\n        \"NNP\"\n    ], \n    \"Laying\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"siphon\": [\n        \"VB\"\n    ], \n    \"vouching\": [\n        \"VBG\"\n    ], \n    \"European-made\": [\n        \"JJ\"\n    ], \n    \"biologic\": [\n        \"JJ\"\n    ], \n    \"Mercedes\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"delve\": [\n        \"VB\"\n    ], \n    \"highschool\": [\n        \"NN\"\n    ], \n    \"nucleotide\": [\n        \"NN\"\n    ], \n    \"Profits\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"amulets\": [\n        \"NNS\"\n    ], \n    \"terra-cotta-colored\": [\n        \"JJ\"\n    ], \n    \"much-lauded\": [\n        \"JJ\"\n    ], \n    \"Coeur\": [\n        \"NNP\"\n    ], \n    \"epicure\": [\n        \"NN\"\n    ], \n    \"CI\": [\n        \"NNP\"\n    ], \n    \"Assicurazioni\": [\n        \"NNP\"\n    ], \n    \"High\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Salter\": [\n        \"NNP\"\n    ], \n    \"Adjoining\": [\n        \"VBG\"\n    ], \n    \"Blvd\": [\n        \"NNP\"\n    ], \n    \"Silly\": [\n        \"NNP\"\n    ], \n    \"REQUESTS\": [\n        \"NNS\"\n    ], \n    \"seam\": [\n        \"NN\"\n    ], \n    \"smirked\": [\n        \"VBD\"\n    ], \n    \"Bantam\": [\n        \"NNP\"\n    ], \n    \"intragovernment\": [\n        \"JJ\"\n    ], \n    \"nolens\": [\n        \"FW\"\n    ], \n    \"non-market\": [\n        \"NN\"\n    ], \n    \"superimposes\": [\n        \"VBZ\"\n    ], \n    \"purely\": [\n        \"RB\"\n    ], \n    \"seaweed\": [\n        \"NN\"\n    ], \n    \"b-As\": [\n        \"IN\", \n        \"NNS\"\n    ], \n    \"superimposed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"chicken\": [\n        \"NN\"\n    ], \n    \"seal\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"debate\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lingering\": [\n        \"JJ\"\n    ], \n    \"painted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Pyramids\": [\n        \"NNPS\"\n    ], \n    \"craziness\": [\n        \"NN\"\n    ], \n    \"Faget\": [\n        \"NNP\"\n    ], \n    \"cache\": [\n        \"NN\"\n    ], \n    \"Unpublished\": [\n        \"JJ\"\n    ], \n    \"Rey-controlled\": [\n        \"JJ\"\n    ], \n    \"Craft\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"tinges\": [\n        \"NNS\"\n    ], \n    \"re-echo\": [\n        \"VB\"\n    ], \n    \"Measured\": [\n        \"VBN\"\n    ], \n    \"property-sector\": [\n        \"NN\"\n    ], \n    \"lighter-than-air\": [\n        \"JJ\"\n    ], \n    \"Kollmorgen\": [\n        \"NNP\"\n    ], \n    \"sued\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"UV-B\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Spinley\": [\n        \"NNP\"\n    ], \n    \"Quelch\": [\n        \"NNP\"\n    ], \n    \"canyons\": [\n        \"NNS\"\n    ], \n    \"flirting\": [\n        \"VBG\"\n    ], \n    \"Galophone-Kimberly\": [\n        \"NNP\"\n    ], \n    \"watercolor\": [\n        \"NN\"\n    ], \n    \"ones\": [\n        \"NNS\"\n    ], \n    \"sues\": [\n        \"VBZ\"\n    ], \n    \"daydreamed\": [\n        \"VBD\"\n    ], \n    \"suey\": [\n        \"NN\"\n    ], \n    \"Flugdienst\": [\n        \"NNP\"\n    ], \n    \"NIH\": [\n        \"NNP\"\n    ], \n    \"homosexuals\": [\n        \"NNS\"\n    ], \n    \"HCFCs\": [\n        \"NNS\"\n    ], \n    \"memorabilia\": [\n        \"NNS\"\n    ], \n    \"Sullivan\": [\n        \"NNP\"\n    ], \n    \"Maury\": [\n        \"NNP\"\n    ], \n    \"vied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Promotional\": [\n        \"JJ\"\n    ], \n    \"NORC\": [\n        \"NNP\"\n    ], \n    \"Maura\": [\n        \"NNP\"\n    ], \n    \"grassroots-fueled\": [\n        \"JJ\"\n    ], \n    \"movie-star\": [\n        \"NN\"\n    ], \n    \"WIN\": [\n        \"NNP\"\n    ], \n    \"proprietorship\": [\n        \"NN\"\n    ], \n    \"Bertorelli\": [\n        \"NNP\"\n    ], \n    \"Gosh\": [\n        \"UH\"\n    ], \n    \"sediment\": [\n        \"NN\"\n    ], \n    \"truer\": [\n        \"JJR\"\n    ], \n    \"conversions\": [\n        \"NNS\"\n    ], \n    \"Siniscal\": [\n        \"NNP\"\n    ], \n    \"turbulent\": [\n        \"JJ\"\n    ], \n    \"Gold-backed\": [\n        \"JJ\"\n    ], \n    \"LMEYER\": [\n        \"NNP\"\n    ], \n    \"Lawrence\": [\n        \"NNP\"\n    ], \n    \"merits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"recoiled\": [\n        \"VBD\"\n    ], \n    \"unfairly\": [\n        \"RB\"\n    ], \n    \"Amman\": [\n        \"NNP\"\n    ], \n    \"bright-red\": [\n        \"JJ\"\n    ], \n    \"Bernardine\": [\n        \"NNP\"\n    ], \n    \"Gutfeld\": [\n        \"NNP\"\n    ], \n    \"ever-quieter\": [\n        \"JJ\"\n    ], \n    \"record\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"phase-one\": [\n        \"JJ\"\n    ], \n    \"Ramtron\": [\n        \"NNP\"\n    ], \n    \"superb\": [\n        \"JJ\"\n    ], \n    \"eight-cent\": [\n        \"JJ\"\n    ], \n    \"entrant\": [\n        \"NN\"\n    ], \n    \"chairmen\": [\n        \"NNS\"\n    ], \n    \"computer-hardware\": [\n        \"NN\"\n    ], \n    \"oldsters\": [\n        \"NNS\"\n    ], \n    \"trifle\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Ellsaesser\": [\n        \"NNP\"\n    ], \n    \"reexamining\": [\n        \"VBG\"\n    ], \n    \"Zivley\": [\n        \"NNP\"\n    ], \n    \"Shunted\": [\n        \"VBN\"\n    ], \n    \"huts\": [\n        \"NNS\"\n    ], \n    \"neonatal\": [\n        \"JJ\"\n    ], \n    \"spoil\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"limited-time\": [\n        \"JJ\"\n    ], \n    \"paragraphing\": [\n        \"NN\"\n    ], \n    \"fervors\": [\n        \"NNS\"\n    ], \n    \"Safety-Kleen\": [\n        \"NNP\"\n    ], \n    \"Berlin-West\": [\n        \"NNP\"\n    ], \n    \"Tet\": [\n        \"NNP\"\n    ], \n    \"Daignault\": [\n        \"NNP\"\n    ], \n    \"Suemeg\": [\n        \"NNP\"\n    ], \n    \"Parkinson\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Kirby\": [\n        \"NNP\"\n    ], \n    \"Shotgun-type\": [\n        \"JJ\"\n    ], \n    \"grain\": [\n        \"NN\"\n    ], \n    \"clogged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"demurs\": [\n        \"VBZ\"\n    ], \n    \"DC-9\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"torments\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"comestibles\": [\n        \"NNS\"\n    ], \n    \"out-of-school\": [\n        \"JJ\"\n    ], \n    \"wonder\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\", \n        \"JJR\"\n    ], \n    \"kinesics\": [\n        \"NNS\"\n    ], \n    \"retailer-sales\": [\n        \"JJ\"\n    ], \n    \"worldly\": [\n        \"JJ\"\n    ], \n    \"Boundary\": [\n        \"NN\"\n    ], \n    \"fourth-grade\": [\n        \"JJ\"\n    ], \n    \"unhappiness\": [\n        \"NN\"\n    ], \n    \"no-layoff\": [\n        \"JJ\"\n    ], \n    \"adulterers\": [\n        \"NNS\"\n    ], \n    \"hypothalamically\": [\n        \"RB\"\n    ], \n    \"Margolin\": [\n        \"NNP\"\n    ], \n    \"Fujisankei\": [\n        \"NNP\"\n    ], \n    \"non-professional\": [\n        \"JJ\"\n    ], \n    \"lettermen\": [\n        \"NNS\"\n    ], \n    \"intimidates\": [\n        \"VBZ\"\n    ], \n    \"CF\": [\n        \"NNP\"\n    ], \n    \"freshborn\": [\n        \"NN\"\n    ], \n    \"Langendorf\": [\n        \"NNP\"\n    ], \n    \"enlarging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Strong-earnings\": [\n        \"NNS\"\n    ], \n    \"Benson\": [\n        \"NNP\"\n    ], \n    \"divinely\": [\n        \"RB\"\n    ], \n    \"Home-made\": [\n        \"JJ\"\n    ], \n    \"thrusting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"sportswriter\": [\n        \"NN\"\n    ], \n    \"STATE\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uncanny\": [\n        \"JJ\"\n    ], \n    \"repetition\": [\n        \"NN\"\n    ], \n    \"Navigation\": [\n        \"NNP\"\n    ], \n    \"kerchief\": [\n        \"NN\"\n    ], \n    \"wily\": [\n        \"JJ\"\n    ], \n    \"wilt\": [\n        \"MD\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"opening-day\": [\n        \"NN\"\n    ], \n    \"intra-Community\": [\n        \"JJ\"\n    ], \n    \"disabled-workers\": [\n        \"NNS\"\n    ], \n    \"choices\": [\n        \"NNS\"\n    ], \n    \"will\": [\n        \"MD\", \n        \"VBP\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"hovering\": [\n        \"VBG\"\n    ], \n    \"Poetrie\": [\n        \"NNP\"\n    ], \n    \"suffix\": [\n        \"NN\"\n    ], \n    \"unaccommodating\": [\n        \"JJ\"\n    ], \n    \"riche\": [\n        \"JJ\"\n    ], \n    \"PLO\": [\n        \"NNP\"\n    ], \n    \"Potentially\": [\n        \"RB\"\n    ], \n    \"abbot\": [\n        \"NN\"\n    ], \n    \"Bollinger\": [\n        \"NNP\"\n    ], \n    \"Braques\": [\n        \"NNPS\"\n    ], \n    \"boite\": [\n        \"NNP\"\n    ], \n    \"unflappable\": [\n        \"JJ\"\n    ], \n    \"far-out\": [\n        \"JJ\"\n    ], \n    \"Plantation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"richissimos\": [\n        \"NNS\"\n    ], \n    \"lobular\": [\n        \"JJ\"\n    ], \n    \"Bretton\": [\n        \"NNP\"\n    ], \n    \"Tactics\": [\n        \"NNS\"\n    ], \n    \"garbage-incinerator\": [\n        \"NN\"\n    ], \n    \"Hope\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cambrex\": [\n        \"NNP\"\n    ], \n    \"Gaubert\": [\n        \"NNP\"\n    ], \n    \"Colman\": [\n        \"NNP\"\n    ], \n    \"privileges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"program-dominated\": [\n        \"JJ\"\n    ], \n    \"limply\": [\n        \"RB\"\n    ], \n    \"horse-playing\": [\n        \"JJ\"\n    ], \n    \"retailing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Pasta\": [\n        \"NNP\"\n    ], \n    \"Londe\": [\n        \"NNP\"\n    ], \n    \"privileged\": [\n        \"JJ\"\n    ], \n    \"elbows\": [\n        \"NNS\"\n    ], \n    \"vaquero\": [\n        \"NN\"\n    ], \n    \"Janis\": [\n        \"NNP\"\n    ], \n    \"Sosnick\": [\n        \"NNP\"\n    ], \n    \"premiere\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"takeoffs\": [\n        \"NNS\"\n    ], \n    \"MTV\": [\n        \"NNP\"\n    ], \n    \"diploma\": [\n        \"NN\"\n    ], \n    \"Voyagers\": [\n        \"NNPS\"\n    ], \n    \"first-amendment\": [\n        \"JJ\"\n    ], \n    \"proprietors\": [\n        \"NNS\"\n    ], \n    \"glared\": [\n        \"VBD\"\n    ], \n    \"marketwide\": [\n        \"JJ\"\n    ], \n    \"Bust\": [\n        \"NNP\"\n    ], \n    \"MTM\": [\n        \"NNP\"\n    ], \n    \"memorialist\": [\n        \"NN\"\n    ], \n    \"bear-market\": [\n        \"NN\"\n    ], \n    \"proprietory\": [\n        \"JJ\"\n    ], \n    \"suffragettes\": [\n        \"NNS\"\n    ], \n    \"already-expensive\": [\n        \"JJ\"\n    ], \n    \"asset-stripping\": [\n        \"JJ\"\n    ], \n    \"Looked\": [\n        \"VBD\"\n    ], \n    \"back-ups\": [\n        \"NNS\"\n    ], \n    \"Kutz\": [\n        \"NNP\"\n    ], \n    \"Muir\": [\n        \"NNP\"\n    ], \n    \"government-provided\": [\n        \"JJ\"\n    ], \n    \"unpacked\": [\n        \"JJ\"\n    ], \n    \"Lond.\": [\n        \"NNP\"\n    ], \n    \"theses\": [\n        \"NNS\"\n    ], \n    \"Minuses\": [\n        \"NNS\"\n    ], \n    \"commando-trained\": [\n        \"NN\"\n    ], \n    \"sensing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Haut\": [\n        \"NNP\"\n    ], \n    \"Annapolis\": [\n        \"NNP\"\n    ], \n    \"Quentin\": [\n        \"NNP\"\n    ], \n    \"Schmalma\": [\n        \"UH\"\n    ], \n    \"Conyers\": [\n        \"NNP\"\n    ], \n    \"quarter-moon\": [\n        \"NN\"\n    ], \n    \"identically\": [\n        \"RB\"\n    ], \n    \"melanderi\": [\n        \"NNPS\"\n    ], \n    \"Ayers\": [\n        \"NNP\"\n    ], \n    \"patria\": [\n        \"FW\"\n    ], \n    \"downturns\": [\n        \"NNS\"\n    ], \n    \"dooming\": [\n        \"VBG\"\n    ], \n    \"miniscule\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Records\\\\/SONY\": [\n        \"NNP\"\n    ], \n    \"beauticians\": [\n        \"NNS\"\n    ], \n    \"Tower\": [\n        \"NNP\"\n    ], \n    \"happiness\": [\n        \"NN\"\n    ], \n    \"temerity\": [\n        \"NN\"\n    ], \n    \"Wolfsburg\": [\n        \"NNP\"\n    ], \n    \"avidly\": [\n        \"RB\"\n    ], \n    \"patronne\": [\n        \"NN\"\n    ], \n    \"two-page\": [\n        \"JJ\"\n    ], \n    \"point\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Prohibition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fujisawa\": [\n        \"NNP\"\n    ], \n    \"Milwaukee-based\": [\n        \"JJ\"\n    ], \n    \"crannies\": [\n        \"NNS\"\n    ], \n    \"Mattsson\": [\n        \"NNP\"\n    ], \n    \"earthquakes\": [\n        \"NNS\"\n    ], \n    \"Solodar\": [\n        \"NNP\"\n    ], \n    \"identical\": [\n        \"JJ\"\n    ], \n    \"Reared\": [\n        \"VBN\"\n    ], \n    \"Drum\": [\n        \"NNP\"\n    ], \n    \"tranquilizer\": [\n        \"NN\"\n    ], \n    \"permanent-looking\": [\n        \"JJ\"\n    ], \n    \"republics\": [\n        \"NNS\"\n    ], \n    \"Bante\": [\n        \"NNP\"\n    ], \n    \"name-droppers\": [\n        \"NNS\"\n    ], \n    \"idyllic\": [\n        \"JJ\"\n    ], \n    \"Norimasa\": [\n        \"NNP\"\n    ], \n    \"Bobettes\": [\n        \"NNS\"\n    ], \n    \"Bantu\": [\n        \"NNP\"\n    ], \n    \"fervente\": [\n        \"NNP\"\n    ], \n    \"ahem\": [\n        \"UH\"\n    ], \n    \"pamphlet\": [\n        \"NN\"\n    ], \n    \"Dealing\": [\n        \"VBG\"\n    ], \n    \"Federal-court\": [\n        \"JJ\"\n    ], \n    \"Barcus\": [\n        \"NNP\"\n    ], \n    \"repressed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Desc\": [\n        \"NNP\"\n    ], \n    \"stain-resistant\": [\n        \"JJ\"\n    ], \n    \"Bunting\": [\n        \"NNP\"\n    ], \n    \"full-of-the-moon\": [\n        \"NN\"\n    ], \n    \"Milken\": [\n        \"NNP\"\n    ], \n    \"Fuller\": [\n        \"NNP\"\n    ], \n    \"credit...\": [\n        \":\"\n    ], \n    \"faithfully\": [\n        \"RB\"\n    ], \n    \"IAFP\": [\n        \"NNP\"\n    ], \n    \"searching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bronces\": [\n        \"NNP\"\n    ], \n    \"Sport-King\": [\n        \"NN\"\n    ], \n    \"darkhaired\": [\n        \"JJ\"\n    ], \n    \"self-content\": [\n        \"JJ\"\n    ], \n    \"Jonathan\": [\n        \"NNP\"\n    ], \n    \"neglecting\": [\n        \"VBG\"\n    ], \n    \"M.D.C\": [\n        \"NNP\"\n    ], \n    \"management-by-objective\": [\n        \"NN\"\n    ], \n    \"regular-featured\": [\n        \"JJ\"\n    ], \n    \"leaf\": [\n        \"NN\"\n    ], \n    \"lead\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"suavity\": [\n        \"NN\"\n    ], \n    \"leak\": [\n        \"NN\"\n    ], \n    \"mass-circulation\": [\n        \"JJ\"\n    ], \n    \"obscurities\": [\n        \"NNS\"\n    ], \n    \"lean\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lavaro\": [\n        \"NN\"\n    ], \n    \"M.D.s\": [\n        \"NNS\"\n    ], \n    \"hold-back\": [\n        \"NN\"\n    ], \n    \"leap\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"nonfinancial\": [\n        \"JJ\"\n    ], \n    \"glacial\": [\n        \"JJ\"\n    ], \n    \"refolded\": [\n        \"VBD\"\n    ], \n    \"locate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mania\": [\n        \"NN\"\n    ], \n    \"all-in-all\": [\n        \"RB\"\n    ], \n    \"murderer\": [\n        \"NN\"\n    ], \n    \"Japanese\\\\/Chinese\": [\n        \"JJ\"\n    ], \n    \"Chimicles\": [\n        \"NNP\"\n    ], \n    \"mitt\": [\n        \"NN\"\n    ], \n    \"murdered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"hoofmarks\": [\n        \"NNS\"\n    ], \n    \"Chester\": [\n        \"NNP\"\n    ], \n    \"slum\": [\n        \"NN\"\n    ], \n    \"Maui\": [\n        \"NNP\"\n    ], \n    \"tempered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mite\": [\n        \"NN\"\n    ], \n    \"slug\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"CONGRESSIONAL\": [\n        \"JJ\"\n    ], \n    \"Elios\": [\n        \"NNP\"\n    ], \n    \"incline\": [\n        \"NN\"\n    ], \n    \"stereotypically\": [\n        \"RB\"\n    ], \n    \"spilled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ethics-related\": [\n        \"JJ\"\n    ], \n    \"shipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"surge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Fundamentalists\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Furiouser\": [\n        \"RBR\"\n    ], \n    \"Buick\": [\n        \"NNP\"\n    ], \n    \"Fosset\": [\n        \"NNP\"\n    ], \n    \"fatally\": [\n        \"RB\"\n    ], \n    \"Really\": [\n        \"RB\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"warranty\": [\n        \"NN\"\n    ], \n    \"Ecclesiastical\": [\n        \"NNP\"\n    ], \n    \"warrants\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"brambles\": [\n        \"NNS\"\n    ], \n    \"Predictions\": [\n        \"NNS\"\n    ], \n    \"druggers\": [\n        \"NNS\"\n    ], \n    \"brush\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"inpenetrable\": [\n        \"JJ\"\n    ], \n    \"North-Central\": [\n        \"JJ\"\n    ], \n    \"Liebenow\": [\n        \"NNP\"\n    ], \n    \"Ball\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"resistors\": [\n        \"NNS\"\n    ], \n    \"Bali\": [\n        \"NNP\"\n    ], \n    \"grapevine\": [\n        \"NN\"\n    ], \n    \"Bald\": [\n        \"NNP\"\n    ], \n    \"province-wide\": [\n        \"JJ\"\n    ], \n    \"Bala\": [\n        \"NNP\"\n    ], \n    \"Sailor\": [\n        \"NNP\"\n    ], \n    \"Baly\": [\n        \"NNP\"\n    ], \n    \"Vern\": [\n        \"NNP\"\n    ], \n    \"NetWare\": [\n        \"NNP\"\n    ], \n    \"appointing\": [\n        \"VBG\"\n    ], \n    \"Kenji\": [\n        \"NNP\"\n    ], \n    \"funds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bombardments\": [\n        \"NNS\"\n    ], \n    \"corneal\": [\n        \"JJ\"\n    ], \n    \"missile-defense\": [\n        \"JJ\"\n    ], \n    \"Suggestion\": [\n        \"NNP\"\n    ], \n    \"Charmer\": [\n        \"NNP\"\n    ], \n    \"kibbutzniks\": [\n        \"NNS\"\n    ], \n    \"auto-dealer\": [\n        \"NN\"\n    ], \n    \"triple-digit\": [\n        \"JJ\"\n    ], \n    \"Bucharest\": [\n        \"NNP\"\n    ], \n    \"Gathering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Golf\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gold\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Redbook\": [\n        \"NNP\"\n    ], \n    \"Goddamn\": [\n        \"UH\"\n    ], \n    \"insipid\": [\n        \"JJ\"\n    ], \n    \"recede\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"flood-prone\": [\n        \"JJ\"\n    ], \n    \"AFTERMATH\": [\n        \"NNP\"\n    ], \n    \"Hemingway\": [\n        \"NNP\"\n    ], \n    \"hand-wringing\": [\n        \"NN\"\n    ], \n    \"Strasny\": [\n        \"NNP\"\n    ], \n    \"network-owned\": [\n        \"JJ\"\n    ], \n    \"Tamales\": [\n        \"NNPS\"\n    ], \n    \"buffs\": [\n        \"NNS\"\n    ], \n    \"domesticates\": [\n        \"VBZ\"\n    ], \n    \"Mrads\": [\n        \"NNS\"\n    ], \n    \"horsewoman\": [\n        \"NN\"\n    ], \n    \"dearth\": [\n        \"NN\"\n    ], \n    \"carbohydrate\": [\n        \"NN\"\n    ], \n    \"bombarding\": [\n        \"VBG\"\n    ], \n    \"Vancouver\": [\n        \"NNP\"\n    ], \n    \"goodness\": [\n        \"NN\"\n    ], \n    \"wavelength\": [\n        \"NN\"\n    ], \n    \"anythin\": [\n        \"NN\"\n    ], \n    \"accolade\": [\n        \"NN\"\n    ], \n    \"Temporary\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"ususal\": [\n        \"JJ\"\n    ], \n    \"more-or-less\": [\n        \"RB\"\n    ], \n    \"framer\": [\n        \"NN\"\n    ], \n    \"Adamski\": [\n        \"NNP\"\n    ], \n    \"book\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"boom\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"boon\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Chinaman\": [\n        \"NNP\"\n    ], \n    \"Procedures\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"honorary\": [\n        \"JJ\"\n    ], \n    \"withstood\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"estanciero\": [\n        \"NN\"\n    ], \n    \"junk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Jovanovich\\\\/Bruccoli\": [\n        \"NNP\"\n    ], \n    \"moguls\": [\n        \"NNS\"\n    ], \n    \"ideological\": [\n        \"JJ\"\n    ], \n    \"medications\": [\n        \"NNS\"\n    ], \n    \"dhow\": [\n        \"NN\"\n    ], \n    \"dollarette\": [\n        \"JJ\"\n    ], \n    \"Dover\": [\n        \"NNP\"\n    ], \n    \"Geingob\": [\n        \"NNP\"\n    ], \n    \"NFIB\": [\n        \"NNP\"\n    ], \n    \"Calmly\": [\n        \"RB\"\n    ], \n    \"rotting\": [\n        \"VBG\"\n    ], \n    \"tax-reform\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"well-entrenched\": [\n        \"JJ\"\n    ], \n    \"extended-range\": [\n        \"JJ\"\n    ], \n    \"Lust\": [\n        \"NNP\"\n    ], \n    \"northerly\": [\n        \"JJ\"\n    ], \n    \"hardboiled\": [\n        \"JJ\"\n    ], \n    \"mid-week\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"deferment\": [\n        \"NN\"\n    ], \n    \"Debts\": [\n        \"NNP\"\n    ], \n    \"BUSINESSLAND\": [\n        \"NNP\"\n    ], \n    \"Larsen\": [\n        \"NNP\"\n    ], \n    \"five-nation\": [\n        \"JJ\"\n    ], \n    \"co-venture\": [\n        \"NN\"\n    ], \n    \"Schuster\": [\n        \"NNP\"\n    ], \n    \"waste-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"advantage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Moreira\": [\n        \"NNP\"\n    ], \n    \"fractioning\": [\n        \"VBG\"\n    ], \n    \"Adjusting\": [\n        \"VBG\"\n    ], \n    \"scold\": [\n        \"VB\"\n    ], \n    \"originality\": [\n        \"NN\"\n    ], \n    \"all-county\": [\n        \"JJ\"\n    ], \n    \"halfways\": [\n        \"RB\"\n    ], \n    \"mutinies\": [\n        \"NNS\"\n    ], \n    \"alphabetic\": [\n        \"JJ\"\n    ], \n    \"Duhagon\": [\n        \"NNP\"\n    ], \n    \"Elec\": [\n        \"NNP\"\n    ], \n    \"Apicella\": [\n        \"NNP\"\n    ], \n    \"button-down\": [\n        \"JJ\"\n    ], \n    \"citrus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cod-liver\": [\n        \"NN\"\n    ], \n    \"millages\": [\n        \"NNS\"\n    ], \n    \"appropriation\": [\n        \"NN\"\n    ], \n    \"rawhide\": [\n        \"NN\"\n    ], \n    \"Fridman\": [\n        \"NNP\"\n    ], \n    \"Kearney\": [\n        \"NNP\"\n    ], \n    \"Goshen\": [\n        \"NNP\"\n    ], \n    \"liaisons\": [\n        \"NNS\"\n    ], \n    \"ASSETS\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Loen\": [\n        \"NNP\"\n    ], \n    \"Cairenes\": [\n        \"NNPS\"\n    ], \n    \"Loeb\": [\n        \"NNP\"\n    ], \n    \"J/NNP.A.W.\": [\n        \"NNP\"\n    ], \n    \"broiled\": [\n        \"VBN\"\n    ], \n    \"deferments\": [\n        \"NNS\"\n    ], \n    \"ultra-violet\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"steadfastness\": [\n        \"NN\"\n    ], \n    \"non-compete\": [\n        \"JJ\"\n    ], \n    \"Loew\": [\n        \"NNP\"\n    ], \n    \"non-violent\": [\n        \"JJ\"\n    ], \n    \"Colonialism\": [\n        \"NN\"\n    ], \n    \"sooty\": [\n        \"JJ\"\n    ], \n    \"intonaco\": [\n        \"NN\"\n    ], \n    \"punning\": [\n        \"VBG\"\n    ], \n    \"precocity\": [\n        \"NN\"\n    ], \n    \"feasibility\": [\n        \"NN\"\n    ], \n    \"miniatures\": [\n        \"NNS\"\n    ], \n    \"Dissident\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"sustaining\": [\n        \"VBG\"\n    ], \n    \"Cruger\": [\n        \"NNP\"\n    ], \n    \"Pampa\": [\n        \"NNP\"\n    ], \n    \"Charade\": [\n        \"NNP\"\n    ], \n    \"Burrill\": [\n        \"NNP\"\n    ], \n    \"hit-man\": [\n        \"NN\"\n    ], \n    \"Bosis\": [\n        \"NNP\"\n    ], \n    \"tiered\": [\n        \"JJ\"\n    ], \n    \"cooking\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Blackwill\": [\n        \"NNP\"\n    ], \n    \"BLOEDEL\": [\n        \"NNP\"\n    ], \n    \"Dylex\": [\n        \"NNP\"\n    ], \n    \"store-brand\": [\n        \"JJ\"\n    ], \n    \"AT&T\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Agfa\": [\n        \"NNP\"\n    ], \n    \"hallucinating\": [\n        \"VBG\"\n    ], \n    \"Maldutis\": [\n        \"NNP\"\n    ], \n    \"shocks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"widget\": [\n        \"NN\"\n    ], \n    \"Logging\": [\n        \"NN\"\n    ], \n    \"chins\": [\n        \"NNS\"\n    ], \n    \"Foundation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"jubilantly\": [\n        \"RB\"\n    ], \n    \"zlotys\": [\n        \"NNS\"\n    ], \n    \"nawt\": [\n        \"RB\"\n    ], \n    \"china\": [\n        \"NN\"\n    ], \n    \"non-``\": [\n        \"``\"\n    ], \n    \"Octopus\": [\n        \"NNP\"\n    ], \n    \"doldrums\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"One-year\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rundlett\": [\n        \"NNP\"\n    ], \n    \"climbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nibble\": [\n        \"NNP\"\n    ], \n    \"compressor-manufacturing\": [\n        \"JJ\"\n    ], \n    \"Dubose\": [\n        \"NNP\"\n    ], \n    \"Jewell\": [\n        \"NNP\"\n    ], \n    \"Farther\": [\n        \"RB\"\n    ], \n    \"natures\": [\n        \"NNS\"\n    ], \n    \"over-leveraged\": [\n        \"JJ\"\n    ], \n    \"Shicoff\": [\n        \"NNP\"\n    ], \n    \"Isler\": [\n        \"NNP\"\n    ], \n    \"Isles\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"mortgage-lending\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"appropriately\": [\n        \"RB\"\n    ], \n    \"Dexter\": [\n        \"NNP\"\n    ], \n    \"lengthen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"now-smaller\": [\n        \"JJ\"\n    ], \n    \"forbore\": [\n        \"VBD\"\n    ], \n    \"Vitulli\": [\n        \"NNP\"\n    ], \n    \"pro-rata\": [\n        \"JJ\"\n    ], \n    \"Warburgs\": [\n        \"NNPS\"\n    ], \n    \"ARTY\": [\n        \"NNP\"\n    ], \n    \"abbreviations\": [\n        \"NNS\"\n    ], \n    \"Gemeinschaft\": [\n        \"FW\"\n    ], \n    \"share-repurchase\": [\n        \"JJ\"\n    ], \n    \"Laodicean\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"music\": [\n        \"NN\"\n    ], \n    \"therefore\": [\n        \"RB\", \n        \"CC\"\n    ], \n    \"stock-registration\": [\n        \"NN\"\n    ], \n    \"Randell\": [\n        \"NNP\"\n    ], \n    \"Diabetes\": [\n        \"NNP\"\n    ], \n    \"Glenne\": [\n        \"NNP\"\n    ], \n    \"LOUIS\": [\n        \"NNP\"\n    ], \n    \"Clients\": [\n        \"NNS\"\n    ], \n    \"Red-blooded\": [\n        \"JJ\"\n    ], \n    \"father-murder\": [\n        \"NN\"\n    ], \n    \"primeval\": [\n        \"JJ\"\n    ], \n    \"Mattress\": [\n        \"NNP\"\n    ], \n    \"unpack\": [\n        \"VB\"\n    ], \n    \"Buoy\": [\n        \"NNP\"\n    ], \n    \"J.H.\": [\n        \"NNP\"\n    ], \n    \"Proprietary\": [\n        \"NNP\"\n    ], \n    \"archaeological\": [\n        \"JJ\"\n    ], \n    \"CHEMICAL\": [\n        \"NNP\"\n    ], \n    \"leadings\": [\n        \"NNS\"\n    ], \n    \"locker\": [\n        \"NN\"\n    ], \n    \"Colombia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"anode\": [\n        \"NN\"\n    ], \n    \"sky-carving\": [\n        \"JJ\"\n    ], \n    \"six-mile\": [\n        \"JJ\"\n    ], \n    \"unreconstructed\": [\n        \"JJ\"\n    ], \n    \"cable-programming\": [\n        \"JJ\"\n    ], \n    \"Le\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"La\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Lo\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Li\": [\n        \"NNP\"\n    ], \n    \"American-style\": [\n        \"JJ\"\n    ], \n    \"Lu\": [\n        \"NNP\"\n    ], \n    \"cookers\": [\n        \"NNS\"\n    ], \n    \"automobile-parts\": [\n        \"JJ\"\n    ], \n    \"Biafra\": [\n        \"NNP\"\n    ], \n    \"absolute\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"LD\": [\n        \"NN\"\n    ], \n    \"LA\": [\n        \"NNP\"\n    ], \n    \"Malapai\": [\n        \"NNP\"\n    ], \n    \"Easter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"LM\": [\n        \"NNP\"\n    ], \n    \"cutback\": [\n        \"NN\"\n    ], \n    \"Navin\": [\n        \"NNP\"\n    ], \n    \"playback\": [\n        \"NN\"\n    ], \n    \"LS\": [\n        \"NNP\"\n    ], \n    \"LP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Falcon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"LX\": [\n        \"NNP\"\n    ], \n    \"junior-grade\": [\n        \"JJ\"\n    ], \n    \"Guste\": [\n        \"NNP\"\n    ], \n    \"L.\": [\n        \"NNP\"\n    ], \n    \"stingier\": [\n        \"JJR\"\n    ], \n    \"operator-assisted\": [\n        \"JJ\"\n    ], \n    \"emphysematous\": [\n        \"JJ\"\n    ], \n    \"Centerre\": [\n        \"NNP\"\n    ], \n    \"Hoping\": [\n        \"VBG\"\n    ], \n    \"down-payments\": [\n        \"NNS\"\n    ], \n    \"romped\": [\n        \"VBD\"\n    ], \n    \"Matunuck\": [\n        \"NNP\"\n    ], \n    \"sickening\": [\n        \"JJ\"\n    ], \n    \"tulip\": [\n        \"NN\"\n    ], \n    \"concoction\": [\n        \"NN\"\n    ], \n    \"Sarum\": [\n        \"NNP\"\n    ], \n    \"farmlands\": [\n        \"NNS\"\n    ], \n    \"nonsensical\": [\n        \"JJ\"\n    ], \n    \"point-of-sale\": [\n        \"JJ\"\n    ], \n    \"investment-counseling\": [\n        \"JJ\"\n    ], \n    \"Ehrlichman\": [\n        \"NNP\"\n    ], \n    \"Willy\": [\n        \"NNP\"\n    ], \n    \"already-shaky\": [\n        \"JJ\"\n    ], \n    \"Wills\": [\n        \"NNP\"\n    ], \n    \"whizzing\": [\n        \"VBG\"\n    ], \n    \"partnered\": [\n        \"VBN\"\n    ], \n    \"Dussa\": [\n        \"NNP\"\n    ], \n    \"Forty-one\": [\n        \"JJ\"\n    ], \n    \"CONTAIN\": [\n        \"VB\"\n    ], \n    \"Willa\": [\n        \"NNP\"\n    ], \n    \"multi-windowed\": [\n        \"JJ\"\n    ], \n    \"rewarded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Boxford\": [\n        \"NNP\"\n    ], \n    \"Qinghua\": [\n        \"NNP\"\n    ], \n    \"Abbott\": [\n        \"NNP\"\n    ], \n    \"ligand\": [\n        \"NN\"\n    ], \n    \"occupations\": [\n        \"NNS\"\n    ], \n    \"randomization\": [\n        \"NN\"\n    ], \n    \"secede\": [\n        \"VB\"\n    ], \n    \"Progressivism\": [\n        \"NNP\"\n    ], \n    \"anticipations\": [\n        \"NNS\"\n    ], \n    \"HIV-related\": [\n        \"JJ\"\n    ], \n    \"wales\": [\n        \"NNS\"\n    ], \n    \"per-ton\": [\n        \"JJ\"\n    ], \n    \"Decisionline\": [\n        \"NNP\"\n    ], \n    \"variables\": [\n        \"NNS\"\n    ], \n    \"Prence\": [\n        \"NNP\"\n    ], \n    \"Libera\": [\n        \"FW\"\n    ], \n    \"Hickory\": [\n        \"NNP\"\n    ], \n    \"municipality\": [\n        \"NN\"\n    ], \n    \"riggers\": [\n        \"NNS\"\n    ], \n    \"HIGH\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"recollections\": [\n        \"NNS\"\n    ], \n    \"Lodowick\": [\n        \"NNP\"\n    ], \n    \"multidimensional\": [\n        \"JJ\"\n    ], \n    \"undeveloped\": [\n        \"JJ\"\n    ], \n    \"glutted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Mechanics\": [\n        \"NNP\"\n    ], \n    \"Shamu\": [\n        \"NNP\"\n    ], \n    \"five-percentage-point\": [\n        \"JJ\"\n    ], \n    \"Shame\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"arrow\": [\n        \"NN\"\n    ], \n    \"burial\": [\n        \"NN\"\n    ], \n    \"diatoms\": [\n        \"NNS\"\n    ], \n    \"Hovdingar\": [\n        \"FW\"\n    ], \n    \"Authenticated\": [\n        \"VBN\"\n    ], \n    \"telescope\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sandbars\": [\n        \"NNS\"\n    ], \n    \"Tiburon\": [\n        \"NNP\"\n    ], \n    \"outgeneraled\": [\n        \"VBN\"\n    ], \n    \"PENSION\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Jamestown\": [\n        \"NNP\"\n    ], \n    \"allay\": [\n        \"VB\"\n    ], \n    \"WEDTECH\": [\n        \"NNP\"\n    ], \n    \"esoterica\": [\n        \"NNS\"\n    ], \n    \"touts\": [\n        \"VBZ\"\n    ], \n    \"Underseas\": [\n        \"NNP\"\n    ], \n    \"smirk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mason\": [\n        \"NN\"\n    ], \n    \"encourage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"zap\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Correcting\": [\n        \"VBG\"\n    ], \n    \"outburst\": [\n        \"NN\"\n    ], \n    \"misrepresentations\": [\n        \"NNS\"\n    ], \n    \"full-spectrum\": [\n        \"NN\"\n    ], \n    \"stamping\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"NN\"\n    ], \n    \"sheetrock\": [\n        \"NN\"\n    ], \n    \"negociant\": [\n        \"NN\"\n    ], \n    \"resinlike\": [\n        \"JJ\"\n    ], \n    \"Blessings\": [\n        \"NNS\"\n    ], \n    \"Osric\": [\n        \"NNP\"\n    ], \n    \"air-conditioners\": [\n        \"NNS\"\n    ], \n    \"universally\": [\n        \"RB\"\n    ], \n    \"single-day\": [\n        \"JJ\"\n    ], \n    \"Pilsudski\": [\n        \"NNP\"\n    ], \n    \"competes\": [\n        \"VBZ\"\n    ], \n    \"commissaries\": [\n        \"NNS\"\n    ], \n    \"UH-60A\": [\n        \"NNP\"\n    ], \n    \"Crawford-Browne\": [\n        \"NNP\"\n    ], \n    \"ministries\": [\n        \"NNS\"\n    ], \n    \"Mooney\": [\n        \"NNP\"\n    ], \n    \"competed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dentures\": [\n        \"NNS\"\n    ], \n    \"Walbancke\": [\n        \"NNP\"\n    ], \n    \"Krampe\": [\n        \"NNP\"\n    ], \n    \"Delfim\": [\n        \"NNP\"\n    ], \n    \"Mao\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disfigured\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"maladies\": [\n        \"NNS\"\n    ], \n    \"Tshombe-Gizenga-Goa-Ghana\": [\n        \"NNP\"\n    ], \n    \"clamorous\": [\n        \"JJ\"\n    ], \n    \"reintroduces\": [\n        \"VBZ\"\n    ], \n    \"seizures\": [\n        \"NNS\"\n    ], \n    \"polybutene\": [\n        \"NN\"\n    ], \n    \"Itch\": [\n        \"VB\"\n    ], \n    \"Fearless\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"ruins\": [\n        \"NNS\"\n    ], \n    \"mind-boggling\": [\n        \"JJ\"\n    ], \n    \"critter\": [\n        \"NN\"\n    ], \n    \"pan-tribal\": [\n        \"JJ\"\n    ], \n    \"Kerr-McGee\": [\n        \"NNP\"\n    ], \n    \"exulted\": [\n        \"VBD\"\n    ], \n    \"nigras\": [\n        \"NNS\"\n    ], \n    \"Gosbank\": [\n        \"NNP\"\n    ], \n    \"middle-Gaelic\": [\n        \"JJ\"\n    ], \n    \"large-size\": [\n        \"JJ\"\n    ], \n    \"Oracle\": [\n        \"NNP\"\n    ], \n    \"non-interstate\": [\n        \"JJ\"\n    ], \n    \"Colleges\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Alongside\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"Diceon\": [\n        \"NNP\"\n    ], \n    \"idly\": [\n        \"RB\"\n    ], \n    \"regulator\": [\n        \"NN\"\n    ], \n    \"idle\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"also-ran\": [\n        \"NN\"\n    ], \n    \"assertiveness\": [\n        \"NN\"\n    ], \n    \"valiant\": [\n        \"JJ\"\n    ], \n    \"Aluminum-ingot\": [\n        \"NN\"\n    ], \n    \"bath-supplies\": [\n        \"NNS\"\n    ], \n    \"Preludes\": [\n        \"NNPS\"\n    ], \n    \"Generally\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"spectrum\": [\n        \"NN\"\n    ], \n    \"media-spending\": [\n        \"JJ\"\n    ], \n    \"Phuong\": [\n        \"NNP\"\n    ], \n    \"dozed\": [\n        \"VBD\"\n    ], \n    \"increment\": [\n        \"NN\"\n    ], \n    \"arousal\": [\n        \"JJ\"\n    ], \n    \"pomp\": [\n        \"NN\"\n    ], \n    \"CORPORATE\": [\n        \"JJ\"\n    ], \n    \"Studach\": [\n        \"NNP\"\n    ], \n    \"Live-In\": [\n        \"NN\"\n    ], \n    \"Fontaine\": [\n        \"NNP\"\n    ], \n    \"Kennard\": [\n        \"NNP\"\n    ], \n    \"beltway\": [\n        \"NN\"\n    ], \n    \"racers\": [\n        \"NNS\"\n    ], \n    \"moralizers\": [\n        \"NNS\"\n    ], \n    \"Pascual\": [\n        \"NNP\"\n    ], \n    \"anti-epileptic\": [\n        \"JJ\"\n    ], \n    \"Missionary\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"concedes\": [\n        \"VBZ\"\n    ], \n    \"committing\": [\n        \"VBG\"\n    ], \n    \"sugarcane\": [\n        \"NN\"\n    ], \n    \"limitless\": [\n        \"JJ\"\n    ], \n    \"vexing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"retroviruses\": [\n        \"NNS\"\n    ], \n    \"metrics\": [\n        \"NNS\"\n    ], \n    \"Seib\": [\n        \"NNP\"\n    ], \n    \"diagnosable\": [\n        \"JJ\"\n    ], \n    \"Dispensing\": [\n        \"VBG\"\n    ], \n    \"conceded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mahler\": [\n        \"NNP\"\n    ], \n    \"singer\": [\n        \"NN\"\n    ], \n    \"non-EC\": [\n        \"JJ\"\n    ], \n    \"Paragon\": [\n        \"NNP\"\n    ], \n    \"trading-company\": [\n        \"NN\"\n    ], \n    \"many-much\": [\n        \"NN\"\n    ], \n    \"confidence-shattering\": [\n        \"JJ\"\n    ], \n    \"scream\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"custom-die\": [\n        \"NN\"\n    ], \n    \"Zanzibar\": [\n        \"JJ\"\n    ], \n    \"Curly\": [\n        \"JJ\"\n    ], \n    \"sons-in-law\": [\n        \"NNS\"\n    ], \n    \"ex-partners\": [\n        \"NNS\"\n    ], \n    \"TAXPAYERS\": [\n        \"NNS\"\n    ], \n    \"fennel\": [\n        \"NN\"\n    ], \n    \"ulcer\": [\n        \"NN\"\n    ], \n    \"Marks\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"cheaply\": [\n        \"RB\"\n    ], \n    \"Resources\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mylan\": [\n        \"NNP\"\n    ], \n    \"Extend\": [\n        \"VB\"\n    ], \n    \"longer-established\": [\n        \"JJ\"\n    ], \n    \"Reiser\": [\n        \"NNP\"\n    ], \n    \"Tiao\": [\n        \"NNP\"\n    ], \n    \"midshipmen\": [\n        \"NNS\"\n    ], \n    \"bliss\": [\n        \"NN\"\n    ], \n    \"Octave\": [\n        \"NNP\"\n    ], \n    \"Coliseum\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rice\": [\n        \"NN\"\n    ], \n    \"Mylar\": [\n        \"NNP\"\n    ], \n    \"remotest\": [\n        \"JJS\"\n    ], \n    \"Dalkon\": [\n        \"NNP\"\n    ], \n    \"Tricks\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"bruddah\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"dope-ridden\": [\n        \"JJ\"\n    ], \n    \"acrobats\": [\n        \"NNS\"\n    ], \n    \"inside-the-beltway\": [\n        \"NN\"\n    ], \n    \"conquerors\": [\n        \"NNS\"\n    ], \n    \"Harburg\": [\n        \"NNP\"\n    ], \n    \"boarder\": [\n        \"NN\"\n    ], \n    \"Guesstimates\": [\n        \"NNS\"\n    ], \n    \"Rip\": [\n        \"NNP\"\n    ], \n    \"Craig\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"eyelids\": [\n        \"NNS\"\n    ], \n    \"Rim\": [\n        \"NNP\"\n    ], \n    \"Higher-income\": [\n        \"JJR\"\n    ], \n    \"twice-daily\": [\n        \"JJ\"\n    ], \n    \"boarded\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Composers\": [\n        \"NNPS\"\n    ], \n    \"pioneering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"housewarming\": [\n        \"JJ\"\n    ], \n    \"clarified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"sensitivity\": [\n        \"NN\"\n    ], \n    \"howse\": [\n        \"NN\"\n    ], \n    \"three-bedroom\": [\n        \"JJ\"\n    ], \n    \"overexercised\": [\n        \"VBN\"\n    ], \n    \"eschewing\": [\n        \"VBG\"\n    ], \n    \"sweetpeas\": [\n        \"NNS\"\n    ], \n    \"Narberth\": [\n        \"NNP\"\n    ], \n    \"mass-produce\": [\n        \"VB\"\n    ], \n    \"Occupational\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"clarifies\": [\n        \"VBZ\"\n    ], \n    \"rocket-propulsion\": [\n        \"NN\"\n    ], \n    \"playfulness\": [\n        \"NN\"\n    ], \n    \"deadpan\": [\n        \"JJ\"\n    ], \n    \"Advances\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Dartboard\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"drover\": [\n        \"NN\"\n    ], \n    \"droves\": [\n        \"NNS\"\n    ], \n    \"ex-Mrs\": [\n        \"JJ|NP\"\n    ], \n    \"Sinhalese\": [\n        \"JJ\"\n    ], \n    \"third-story\": [\n        \"JJ\"\n    ], \n    \"imprimatur\": [\n        \"NN\"\n    ], \n    \"timber\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"croakin\": [\n        \"VBG\"\n    ], \n    \"O*/NNP&M\": [\n        \"NN\"\n    ], \n    \"Advanced\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Coast-based\": [\n        \"JJ\"\n    ], \n    \"Dictation\": [\n        \"NN\"\n    ], \n    \"marketing-communications\": [\n        \"NNS\"\n    ], \n    \"Truesdell\": [\n        \"NNP\"\n    ], \n    \"unseemly\": [\n        \"JJ\"\n    ], \n    \"Parenthesis\": [\n        \"NN\"\n    ], \n    \"Bronx\": [\n        \"NNP\"\n    ], \n    \"flathead\": [\n        \"JJ\"\n    ], \n    \"tyranny\": [\n        \"NN\"\n    ], \n    \"Spectradyne\": [\n        \"NNP\"\n    ], \n    \"Elaborating\": [\n        \"VBG\"\n    ], \n    \"veer\": [\n        \"VB\"\n    ], \n    \"leisure-oriented\": [\n        \"JJ\"\n    ], \n    \"Otis\": [\n        \"NNP\"\n    ], \n    \"heating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"incense\": [\n        \"NN\"\n    ], \n    \"Laura\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"high-yielding\": [\n        \"JJ\"\n    ], \n    \"Wohlstetter\": [\n        \"NNP\"\n    ], \n    \"multimillions\": [\n        \"NNS\"\n    ], \n    \"Lauri\": [\n        \"NNP\"\n    ], \n    \"horse-steak\": [\n        \"NN\"\n    ], \n    \"Lauro\": [\n        \"NNP\"\n    ], \n    \"eradicate\": [\n        \"VB\"\n    ], \n    \"obscenity\": [\n        \"NN\"\n    ], \n    \"gypsies\": [\n        \"NNS\"\n    ], \n    \"Mendell\": [\n        \"NNP\"\n    ], \n    \"Biovest\": [\n        \"NNP\"\n    ], \n    \"blonde\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"truthful\": [\n        \"JJ\"\n    ], \n    \"CICS\": [\n        \"NNP\"\n    ], \n    \"godhead\": [\n        \"NN\"\n    ], \n    \"relearns\": [\n        \"VBZ\"\n    ], \n    \"Hinman\": [\n        \"NNP\"\n    ], \n    \"Sitting\": [\n        \"VBG\"\n    ], \n    \"union\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Tamm\": [\n        \"NNP\"\n    ], \n    \"flipped\": [\n        \"VBD\"\n    ], \n    \"reregulation\": [\n        \"NN\"\n    ], \n    \"Brassica\": [\n        \"NNP\"\n    ], \n    \"Hoosier\": [\n        \"NNP\"\n    ], \n    \"Weerasinghe\": [\n        \"NNP\"\n    ], \n    \"tallest\": [\n        \"JJS\"\n    ], \n    \"chlorazepate\": [\n        \"NN\"\n    ], \n    \"Remington\": [\n        \"NNP\"\n    ], \n    \"Tama\": [\n        \"NNP\"\n    ], \n    \"retrospect\": [\n        \"NN\"\n    ], \n    \"allotting\": [\n        \"VBG\"\n    ], \n    \"Royaux\": [\n        \"NNP\"\n    ], \n    \"Consensus\": [\n        \"NNP\"\n    ], \n    \"low-water\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sycophants\": [\n        \"NNS\"\n    ], \n    \"business-related\": [\n        \"JJ\"\n    ], \n    \"Indemnity\": [\n        \"NNP\"\n    ], \n    \"Hieronymus\": [\n        \"NNP\"\n    ], \n    \"TDK\": [\n        \"NNP\"\n    ], \n    \"Elgin\": [\n        \"NNP\"\n    ], \n    \"participatory\": [\n        \"JJ\"\n    ], \n    \"data-communications\": [\n        \"NNS\"\n    ], \n    \"Talley\": [\n        \"NNP\"\n    ], \n    \"Beware\": [\n        \"VB\"\n    ], \n    \"unwillingness\": [\n        \"NN\"\n    ], \n    \"ugly\": [\n        \"JJ\"\n    ], \n    \"employ\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"disk-drive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Vlasi\": [\n        \"NNP\"\n    ], \n    \"Kaneb\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Zurcher\": [\n        \"NNP\"\n    ], \n    \"Prozac\": [\n        \"NNP\"\n    ], \n    \"Michel-Etienne\": [\n        \"NNP\"\n    ], \n    \"RODE\": [\n        \"VBD\"\n    ], \n    \"Evzone\": [\n        \"NNP\"\n    ], \n    \"Clarksburg\": [\n        \"NNP\"\n    ], \n    \"Potomac\": [\n        \"NNP\"\n    ], \n    \"London-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Sword\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"noncompetitive\": [\n        \"JJ\"\n    ], \n    \"womanly\": [\n        \"JJ\"\n    ], \n    \"verged\": [\n        \"VBD\"\n    ], \n    \"Phouma\": [\n        \"NNP\"\n    ], \n    \"JYM\": [\n        \"NN|SYM\"\n    ], \n    \"malefactors\": [\n        \"NNS\"\n    ], \n    \"jolting\": [\n        \"VBG\"\n    ], \n    \"Elders\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"hot-honey\": [\n        \"JJ\"\n    ], \n    \"split\": [\n        \"NN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Peden\": [\n        \"NNP\"\n    ], \n    \"Clardy\": [\n        \"NNP\"\n    ], \n    \"Wussler\": [\n        \"NNP\"\n    ], \n    \"KIPPUR\": [\n        \"NNP\"\n    ], \n    \"boiled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"effortlessly\": [\n        \"RB\"\n    ], \n    \"inadvertently\": [\n        \"RB\"\n    ], \n    \"qualifications\": [\n        \"NNS\"\n    ], \n    \"workforce\": [\n        \"NN\"\n    ], \n    \"intellectual-literary\": [\n        \"JJ\"\n    ], \n    \"consents\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Liquidating\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"boiler\": [\n        \"NN\"\n    ], \n    \"Bentsen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"supper\": [\n        \"NN\"\n    ], \n    \"Persia\": [\n        \"NNP\"\n    ], \n    \"Traces\": [\n        \"NNS\"\n    ], \n    \"Tracer\": [\n        \"NNP\"\n    ], \n    \"midsized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Malay-based\": [\n        \"JJ\"\n    ], \n    \"anti-Bork\": [\n        \"JJ\"\n    ], \n    \"Martyn\": [\n        \"NNP\"\n    ], \n    \"Miami-based\": [\n        \"JJ\"\n    ], \n    \"Gavin\": [\n        \"NNP\"\n    ], \n    \"Belton\": [\n        \"NNP\"\n    ], \n    \"goofing\": [\n        \"VBG\"\n    ], \n    \"discrepencies\": [\n        \"NNS\"\n    ], \n    \"plaque\": [\n        \"NN\"\n    ], \n    \"Weaken\": [\n        \"VB\"\n    ], \n    \"Shaffer\": [\n        \"NNP\"\n    ], \n    \"outlived\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rapid\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Muscolina\": [\n        \"NNP\"\n    ], \n    \"Retracing\": [\n        \"VBG\"\n    ], \n    \"haberdashery\": [\n        \"NN\"\n    ], \n    \"scorekeeping\": [\n        \"NN\"\n    ], \n    \"out-of-doors\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"homogeneity\": [\n        \"NN\"\n    ], \n    \"gun-shy\": [\n        \"JJ\"\n    ], \n    \"snickered\": [\n        \"VBD\"\n    ], \n    \"Neversink\": [\n        \"NNP\"\n    ], \n    \"portrayed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Happy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Eternity\": [\n        \"NN\"\n    ], \n    \"Ewing\": [\n        \"NNP\"\n    ], \n    \"espouses\": [\n        \"VBZ\"\n    ], \n    \"insubordination\": [\n        \"NN\"\n    ], \n    \"Baghdad\": [\n        \"NNP\"\n    ], \n    \"beloved\": [\n        \"JJ\", \n        \"VBN\", \n        \"NN\"\n    ], \n    \"espoused\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bake-Off\": [\n        \"NNP\"\n    ], \n    \"grilled-chicken\": [\n        \"JJ\"\n    ], \n    \"warn-your-enemy\": [\n        \"JJ\"\n    ], \n    \"confidentially\": [\n        \"RB\"\n    ], \n    \"survival\": [\n        \"NN\"\n    ], \n    \"Faculty\": [\n        \"NN\"\n    ], \n    \"Jewish-Gentile\": [\n        \"NNP\"\n    ], \n    \"otherworldly\": [\n        \"JJ\"\n    ], \n    \"unprotected\": [\n        \"JJ\"\n    ], \n    \"off-white\": [\n        \"JJ\"\n    ], \n    \"clustered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"shadow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Muscovy\": [\n        \"NNP\"\n    ], \n    \"Mongi\": [\n        \"NNP\"\n    ], \n    \"Maniago\": [\n        \"NNP\"\n    ], \n    \"Schleswig-Holstein\": [\n        \"NNP\"\n    ], \n    \"gangplank\": [\n        \"NN\"\n    ], \n    \"retake\": [\n        \"VB\"\n    ], \n    \"festivities\": [\n        \"NNS\"\n    ], \n    \"Steven\": [\n        \"NNP\"\n    ], \n    \"Growers\": [\n        \"NNPS\"\n    ], \n    \"cholecystokinin\": [\n        \"NN\"\n    ], \n    \"Abyss\": [\n        \"NN\"\n    ], \n    \"Agricoles\": [\n        \"NNP\"\n    ], \n    \"hypocrisy\": [\n        \"NN\"\n    ], \n    \"Literally\": [\n        \"RB\"\n    ], \n    \"discordantly\": [\n        \"RB\"\n    ], \n    \"begin\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"proportionally\": [\n        \"RB\"\n    ], \n    \"defeatists\": [\n        \"NNS\"\n    ], \n    \"Book-of-the-Month\": [\n        \"NNP\"\n    ], \n    \"prospectuses\": [\n        \"NNS\"\n    ], \n    \"Between\": [\n        \"IN\"\n    ], \n    \"billboard\": [\n        \"NN\"\n    ], \n    \"stealthily\": [\n        \"RB\"\n    ], \n    \"Goodyear\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Asiatic\": [\n        \"JJ\"\n    ], \n    \"Merriam-Webster\": [\n        \"NNP\"\n    ], \n    \"Redwood\": [\n        \"NNP\"\n    ], \n    \"Passaic\": [\n        \"NNP\"\n    ], \n    \"MARKETING\": [\n        \"NN\"\n    ], \n    \"plucked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ingleside\": [\n        \"NNP\"\n    ], \n    \"slivers\": [\n        \"NNS\"\n    ], \n    \"alligatored\": [\n        \"VBN\"\n    ], \n    \"IBC\\\\\": [\n        \"NNP\"\n    ], \n    \"low-yielding\": [\n        \"JJ\"\n    ], \n    \"Jakes\": [\n        \"NNP\"\n    ], \n    \"fish\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"NNS\"\n    ], \n    \"binder\": [\n        \"NN\"\n    ], \n    \"personal-computer\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"anti-scientific\": [\n        \"JJ\"\n    ], \n    \"anagram\": [\n        \"NN\"\n    ], \n    \"disdains\": [\n        \"VBZ\"\n    ], \n    \"IBCA\": [\n        \"NNP\"\n    ], \n    \"stoker\": [\n        \"NN\"\n    ], \n    \"Franchising\": [\n        \"NNP\"\n    ], \n    \"bicentennial\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"browse\": [\n        \"VB\"\n    ], \n    \"oneness\": [\n        \"NN\"\n    ], \n    \"property-poor\": [\n        \"JJ\"\n    ], \n    \"stoked\": [\n        \"VBN\"\n    ], \n    \"oversaw\": [\n        \"VBD\", \n        \"VB\"\n    ], \n    \"beinge\": [\n        \"VBG\"\n    ], \n    \"RECRUITS\": [\n        \"VBZ\"\n    ], \n    \"infraction\": [\n        \"NN\"\n    ], \n    \"administer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Aaron\": [\n        \"NNP\"\n    ], \n    \"Management\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Seelig\": [\n        \"NNP\"\n    ], \n    \"Rheinstein\": [\n        \"NNP\"\n    ], \n    \"collectors\": [\n        \"NNS\"\n    ], \n    \"fast-vanishing\": [\n        \"JJ\"\n    ], \n    \"altitude\": [\n        \"NN\"\n    ], \n    \"diocese\": [\n        \"NN\"\n    ], \n    \"tame\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Testicular\": [\n        \"NNP\"\n    ], \n    \"NALU\": [\n        \"NNP\"\n    ], \n    \"greatness\": [\n        \"NN\"\n    ], \n    \"Device\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"single-room-occupancy\": [\n        \"JJ\"\n    ], \n    \"tamp\": [\n        \"VB\"\n    ], \n    \"contusions\": [\n        \"NNS\"\n    ], \n    \"DyDee\": [\n        \"NNP\"\n    ], \n    \"grooms\": [\n        \"NNS\"\n    ], \n    \"miles-per-hour\": [\n        \"JJ\"\n    ], \n    \"waistcoat\": [\n        \"NN\"\n    ], \n    \"quota-cheaters\": [\n        \"NNS\"\n    ], \n    \"nonvoting\": [\n        \"JJ\"\n    ], \n    \"hot-tempered\": [\n        \"JJ\"\n    ], \n    \"Boudreau\": [\n        \"NNP\"\n    ], \n    \"Soda\": [\n        \"NNP\"\n    ], \n    \"safeguard\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"duel\": [\n        \"NN\"\n    ], \n    \"High-technologies\": [\n        \"NNS\"\n    ], \n    \"masquerading\": [\n        \"VBG\"\n    ], \n    \"Gene-Princess\": [\n        \"NNP\"\n    ], \n    \"smasher\": [\n        \"NN\"\n    ], \n    \"Pleasanton\": [\n        \"NNP\"\n    ], \n    \"auditioning\": [\n        \"VBG\"\n    ], \n    \"pesos\": [\n        \"NNS\"\n    ], \n    \"smashed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Brest\": [\n        \"NNP\"\n    ], \n    \"duet\": [\n        \"NN\"\n    ], \n    \"Lolita\": [\n        \"NNP\"\n    ], \n    \"refillable\": [\n        \"JJ\"\n    ], \n    \"Sentiment\": [\n        \"NN\"\n    ], \n    \"prudentially\": [\n        \"RB\"\n    ], \n    \"megahertz\": [\n        \"NN\"\n    ], \n    \"Deleage\": [\n        \"NNP\"\n    ], \n    \"whorls\": [\n        \"NNS\"\n    ], \n    \"Pittsboro\": [\n        \"NNP\"\n    ], \n    \"railhead\": [\n        \"NN\"\n    ], \n    \"candle\": [\n        \"NN\"\n    ], \n    \"tooth\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"triangles\": [\n        \"NNS\"\n    ], \n    \"Tashi\": [\n        \"NNP\"\n    ], \n    \"microwaving\": [\n        \"VBG\"\n    ], \n    \"flaps\": [\n        \"NNS\"\n    ], \n    \"Apollo\": [\n        \"NNP\"\n    ], \n    \"eventual\": [\n        \"JJ\"\n    ], \n    \"Lefferts\": [\n        \"NNP\"\n    ], \n    \"role\": [\n        \"NN\"\n    ], \n    \"market-affecting\": [\n        \"JJ\"\n    ], \n    \"OHIO\": [\n        \"NNP\"\n    ], \n    \"vegetative\": [\n        \"JJ\"\n    ], \n    \"credit-line\": [\n        \"NN\"\n    ], \n    \"Ferruzzi\": [\n        \"NNP\"\n    ], \n    \"all-consuming\": [\n        \"JJ\"\n    ], \n    \"E\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\", \n        \"LS\"\n    ], \n    \"Operation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ointment\": [\n        \"NN\"\n    ], \n    \"outage\": [\n        \"NN\"\n    ], \n    \"Gardena\": [\n        \"NNP\"\n    ], \n    \"comely\": [\n        \"JJ\"\n    ], \n    \"intent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"class-conscious\": [\n        \"JJ\"\n    ], \n    \"Horticultural\": [\n        \"NNP\"\n    ], \n    \"variable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"transporter\": [\n        \"NN\"\n    ], \n    \"Gardens\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"rephrased\": [\n        \"VBN\"\n    ], \n    \"Inform\": [\n        \"NNP\"\n    ], \n    \"fluke\": [\n        \"NN\"\n    ], \n    \"filing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"surface-analyzer\": [\n        \"NN\"\n    ], \n    \"Sudanese\": [\n        \"NNP\"\n    ], \n    \"overturned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Heerden\": [\n        \"NNP\"\n    ], \n    \"gown\": [\n        \"NN\"\n    ], \n    \"Blackwells\": [\n        \"NNPS\"\n    ], \n    \"Wunderman\": [\n        \"NNP\"\n    ], \n    \"Shigezo\": [\n        \"NNP\"\n    ], \n    \"non-arbitrage\": [\n        \"JJ\"\n    ], \n    \"bandits\": [\n        \"NNS\"\n    ], \n    \"Wabash\": [\n        \"NNP\"\n    ], \n    \"Bye\": [\n        \"UH\"\n    ], \n    \"Proudhon\": [\n        \"NNP\"\n    ], \n    \"osf\": [\n        \"IN\"\n    ], \n    \"Millstone\": [\n        \"NNP\"\n    ], \n    \"airframes\": [\n        \"NNS\"\n    ], \n    \"Tourist\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"timbered\": [\n        \"JJ\"\n    ], \n    \"photocopiers\": [\n        \"NNS\"\n    ], \n    \"crates\": [\n        \"NNS\"\n    ], \n    \"crater\": [\n        \"NN\"\n    ], \n    \"Beckwith\": [\n        \"NNP\"\n    ], \n    \"Tourism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Glendora\": [\n        \"NNP\"\n    ], \n    \"anti-Yankee\": [\n        \"JJ\"\n    ], \n    \"who...\": [\n        \":\"\n    ], \n    \"Agnos\": [\n        \"NNP\"\n    ], \n    \"choice\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Lyle\": [\n        \"NNP\"\n    ], \n    \"Halprin\": [\n        \"NNP\"\n    ], \n    \"Selkirkers\": [\n        \"NNS\"\n    ], \n    \"stays\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Olszewski\": [\n        \"NNP\"\n    ], \n    \"plaid-floored\": [\n        \"JJ\"\n    ], \n    \"bestiary\": [\n        \"NN\"\n    ], \n    \"Lasker\": [\n        \"NNP\"\n    ], \n    \"Dimitri\": [\n        \"NNP\"\n    ], \n    \"Tau\": [\n        \"NNP\"\n    ], \n    \"cooks\": [\n        \"NNS\"\n    ], \n    \"Tap\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Tar\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Monday-Friday\": [\n        \"NNP\"\n    ], \n    \"Organized\": [\n        \"NNP\"\n    ], \n    \"Sojuzpushnina\": [\n        \"NNP\"\n    ], \n    \"Tae\": [\n        \"NNP\"\n    ], \n    \"Inexplicably\": [\n        \"RB\"\n    ], \n    \"defaults\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"CLAIMS\": [\n        \"VBZ\"\n    ], \n    \"Tan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Tao\": [\n        \"NNP\"\n    ], \n    \"Tai\": [\n        \"NNP\"\n    ], \n    \"Taj\": [\n        \"NNP\"\n    ], \n    \"Copernicus\": [\n        \"NNP\"\n    ], \n    \"crash-scarred\": [\n        \"JJ\"\n    ], \n    \"meadow\": [\n        \"NN\"\n    ], \n    \"intial\": [\n        \"JJ\"\n    ], \n    \"trails\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Small-company\": [\n        \"JJ\"\n    ], \n    \"Dryja\": [\n        \"NNP\"\n    ], \n    \"lengthened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"thrumming\": [\n        \"VBG\"\n    ], \n    \"long-suffering\": [\n        \"JJ\"\n    ], \n    \"shirts\": [\n        \"NNS\"\n    ], \n    \"costlier\": [\n        \"JJR\"\n    ], \n    \"not-so-lonely\": [\n        \"JJ\"\n    ], \n    \"Stop-Limit\": [\n        \"NNP\"\n    ], \n    \"Rolm\": [\n        \"NNP\"\n    ], \n    \"Landau\": [\n        \"NNP\"\n    ], \n    \"Loper\": [\n        \"NNP\"\n    ], \n    \"Magna\": [\n        \"NNP\"\n    ], \n    \"Fault-tolerant\": [\n        \"JJ\"\n    ], \n    \"scandal-wracked\": [\n        \"JJ\"\n    ], \n    \"boost\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Lopez\": [\n        \"NNP\"\n    ], \n    \"Bio-Products\": [\n        \"NNP\"\n    ], \n    \"Porsche-like\": [\n        \"JJ\"\n    ], \n    \"under-depreciated\": [\n        \"NN\"\n    ], \n    \"Latham\": [\n        \"NNP\"\n    ], \n    \"egg-processing\": [\n        \"JJ\"\n    ], \n    \"Webb\": [\n        \"NNP\"\n    ], \n    \"Hallmark\": [\n        \"NNP\"\n    ], \n    \"photomicrograph\": [\n        \"NN\"\n    ], \n    \"accomplishes\": [\n        \"VBZ\"\n    ], \n    \"mafiosi\": [\n        \"NNS\"\n    ], \n    \"dusty\": [\n        \"JJ\"\n    ], \n    \"Displayed\": [\n        \"VBN\"\n    ], \n    \"LME\": [\n        \"NNP\"\n    ], \n    \"accomplished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"irregulars\": [\n        \"NNS\"\n    ], \n    \"Bofors\": [\n        \"NNP\"\n    ], \n    \"commmuter\": [\n        \"NN\"\n    ], \n    \"REAL\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Shattered\": [\n        \"JJ\"\n    ], \n    \"Giulio\": [\n        \"NNP\"\n    ], \n    \"Thornton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cacophony\": [\n        \"NN\"\n    ], \n    \"Enough\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"Jong\": [\n        \"NNP\"\n    ], \n    \"Joni\": [\n        \"NNP\"\n    ], \n    \"REAP\": [\n        \"VBP\"\n    ], \n    \"Heimers\": [\n        \"NNP\"\n    ], \n    \"nitrates\": [\n        \"NNS\"\n    ], \n    \"working\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kansai\": [\n        \"NNP\"\n    ], \n    \"Hayter\": [\n        \"NNP\"\n    ], \n    \"Lazzaroni\": [\n        \"NNP\"\n    ], \n    \"Royalty\": [\n        \"NNP\"\n    ], \n    \"Inmates\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Jaclyn\": [\n        \"NNP\"\n    ], \n    \"High-gain\": [\n        \"JJ\"\n    ], \n    \"Sahjunt\": [\n        \"NNP\"\n    ], \n    \"Finnerty\": [\n        \"NNP\"\n    ], \n    \"Bush-Gorbachev\": [\n        \"NNP\"\n    ], \n    \"mid-continent\": [\n        \"JJ\"\n    ], \n    \"Vicolo\": [\n        \"NNP\"\n    ], \n    \"assimilation\": [\n        \"NN\"\n    ], \n    \"Doubled\": [\n        \"VBD\"\n    ], \n    \"Rapatee\": [\n        \"NNP\"\n    ], \n    \"non-family\": [\n        \"JJ\"\n    ], \n    \"tines\": [\n        \"NNS\"\n    ], \n    \"arable\": [\n        \"JJ\"\n    ], \n    \"Doubles\": [\n        \"NNP\"\n    ], \n    \"intemperance\": [\n        \"NN\"\n    ], \n    \"Opelika\": [\n        \"NNP\"\n    ], \n    \"riders\": [\n        \"NNS\"\n    ], \n    \"total-ban\": [\n        \"NN\"\n    ], \n    \"investment-recovery\": [\n        \"NN\"\n    ], \n    \"Joffre\": [\n        \"NNP\"\n    ], \n    \"originally\": [\n        \"RB\"\n    ], \n    \"abortion\": [\n        \"NN\"\n    ], \n    \"harmonious\": [\n        \"JJ\"\n    ], \n    \"Showers\": [\n        \"NNP\"\n    ], \n    \"Comparative\": [\n        \"JJ\"\n    ], \n    \"stupidities\": [\n        \"NNS\"\n    ], \n    \"zippers\": [\n        \"NNS\"\n    ], \n    \"toffee\": [\n        \"NN\"\n    ], \n    \"unraveled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Protestantism\": [\n        \"NNP\"\n    ], \n    \"admired\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Mexicali\": [\n        \"NNP\"\n    ], \n    \"tree-shaded\": [\n        \"JJ\"\n    ], \n    \"mirrors\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Hump\": [\n        \"NNP\"\n    ], \n    \"Hecht\": [\n        \"NNP\"\n    ], \n    \"Shilling\": [\n        \"NNP\"\n    ], \n    \"Matamoros\": [\n        \"NNP\"\n    ], \n    \"locks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"incremental\": [\n        \"JJ\"\n    ], \n    \"Coffee-shop\": [\n        \"NN\"\n    ], \n    \"admires\": [\n        \"VBZ\"\n    ], \n    \"admirer\": [\n        \"NN\"\n    ], \n    \"Bore\": [\n        \"VB\"\n    ], \n    \"Hume\": [\n        \"NNP\"\n    ], \n    \"septic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Plimpton\": [\n        \"NNP\"\n    ], \n    \"dooms\": [\n        \"NNS\"\n    ], \n    \"road-circuit\": [\n        \"NN\"\n    ], \n    \"vainly\": [\n        \"RB\"\n    ], \n    \"foreshortening\": [\n        \"VBG\"\n    ], \n    \"slams\": [\n        \"VBZ\"\n    ], \n    \"Skinner\": [\n        \"NNP\"\n    ], \n    \"Knauer\": [\n        \"NNP\"\n    ], \n    \"Printemps\": [\n        \"NNP\"\n    ], \n    \"minicomputers\": [\n        \"NNS\"\n    ], \n    \"Drain\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"moon-washed\": [\n        \"JJ\"\n    ], \n    \"dinosaur...\": [\n        \":\"\n    ], \n    \"STC\": [\n        \"NNP\"\n    ], \n    \"power-buying\": [\n        \"JJ\"\n    ], \n    \"paleontologists\": [\n        \"NNS\"\n    ], \n    \"LecTec\": [\n        \"NNP\"\n    ], \n    \"Kissin\": [\n        \"NNP\"\n    ], \n    \"STS\": [\n        \"NNP\"\n    ], \n    \"Corporate\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Korps\": [\n        \"NNP\"\n    ], \n    \"egotistical\": [\n        \"JJ\"\n    ], \n    \"temperate\": [\n        \"JJ\"\n    ], \n    \"pulley\": [\n        \"NN\"\n    ], \n    \"obstetrician\": [\n        \"NN\"\n    ], \n    \"finanicial\": [\n        \"JJ\"\n    ], \n    \"Needless\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"name-calling\": [\n        \"NN\"\n    ], \n    \"regressive\": [\n        \"JJ\"\n    ], \n    \"sandbox\": [\n        \"NN\"\n    ], \n    \"Moll\": [\n        \"NNP\"\n    ], \n    \"COCAINE\": [\n        \"NNP\"\n    ], \n    \"wolves\": [\n        \"NNS\"\n    ], \n    \"Astaires\": [\n        \"NNPS\"\n    ], \n    \"Mole\": [\n        \"NNP\"\n    ], \n    \"wastepaper\": [\n        \"NN\"\n    ], \n    \"Encouraged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Spurgeon\": [\n        \"NNP\"\n    ], \n    \"seven-bedroom\": [\n        \"JJ\"\n    ], \n    \"Peterborough\": [\n        \"NNP\"\n    ], \n    \"SEPARATE\": [\n        \"JJ\"\n    ], \n    \"touch-tone\": [\n        \"JJ\"\n    ], \n    \"Prudence\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"years\": [\n        \"NNS\"\n    ], \n    \"episodes\": [\n        \"NNS\"\n    ], \n    \"yeard\": [\n        \"VBN\"\n    ], \n    \"Fjelstad\": [\n        \"NNP\"\n    ], \n    \"close-in\": [\n        \"JJ\"\n    ], \n    \"Lakeshore\": [\n        \"NNP\"\n    ], \n    \"dust-thick\": [\n        \"JJ\"\n    ], \n    \"once-fashionable\": [\n        \"JJ\"\n    ], \n    \"Cypress\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Assist\": [\n        \"NNP\"\n    ], \n    \"Escanaba\": [\n        \"NNP\"\n    ], \n    \"Legislatures\": [\n        \"NNS\"\n    ], \n    \"antipathy\": [\n        \"NN\"\n    ], \n    \"suspension\": [\n        \"NN\"\n    ], \n    \"troubled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"relapsed\": [\n        \"VBD\"\n    ], \n    \"augen\": [\n        \"FW\"\n    ], \n    \"recipients\": [\n        \"NNS\"\n    ], \n    \"civilian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kemm\": [\n        \"NNP\"\n    ], \n    \"Deutsche\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"Minoan-Mycenaean\": [\n        \"NNP\"\n    ], \n    \"indigenous\": [\n        \"JJ\"\n    ], \n    \"secularized\": [\n        \"VBN\"\n    ], \n    \"big-large\": [\n        \"NN\"\n    ], \n    \"drilling\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Kemp\": [\n        \"NNP\"\n    ], \n    \"Webster\": [\n        \"NNP\"\n    ], \n    \"U.S.backed\": [\n        \"JJ\"\n    ], \n    \"frontage\": [\n        \"NN\"\n    ], \n    \"ki-yi-ing\": [\n        \"VBG\"\n    ], \n    \"materialized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"twenty-nine-foot-wide\": [\n        \"JJ\"\n    ], \n    \"Cafritz\": [\n        \"NNP\"\n    ], \n    \"Holcombe\": [\n        \"NNP\"\n    ], \n    \"fisherman\": [\n        \"NN\"\n    ], \n    \"Certified\": [\n        \"NNP\"\n    ], \n    \"scratchiness\": [\n        \"NN\"\n    ], \n    \"materializes\": [\n        \"VBZ\"\n    ], \n    \"quarrymen\": [\n        \"NNS\"\n    ], \n    \"retrieve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"receipt\": [\n        \"NN\"\n    ], \n    \"Entitlements\": [\n        \"NNS\"\n    ], \n    \"Live\": [\n        \"NNP\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"sponsor\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"prudently\": [\n        \"RB\"\n    ], \n    \"workdays\": [\n        \"NNS\"\n    ], \n    \"Mongan\": [\n        \"NNP\"\n    ], \n    \"interned\": [\n        \"VBN\"\n    ], \n    \"paroxysmal\": [\n        \"JJ\"\n    ], \n    \"Zawia\": [\n        \"NNP\"\n    ], \n    \"Treasonable\": [\n        \"JJ\"\n    ], \n    \"Barbour\": [\n        \"NNP\"\n    ], \n    \"Drums\": [\n        \"NNS\"\n    ], \n    \"typed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Transfers\": [\n        \"NNS\"\n    ], \n    \"complicates\": [\n        \"VBZ\"\n    ], \n    \"curbs\": [\n        \"NNS\"\n    ], \n    \"hairdresser\": [\n        \"NN\"\n    ], \n    \"FUTURES\": [\n        \"NNS\"\n    ], \n    \"Roughly\": [\n        \"RB\"\n    ], \n    \"complicated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Veritrac\": [\n        \"NNP\"\n    ], \n    \"pro-tem\": [\n        \"JJ\"\n    ], \n    \"GRANTING\": [\n        \"VBG\"\n    ], \n    \"Libertines\": [\n        \"NNS\"\n    ], \n    \"Avmark\": [\n        \"NNP\"\n    ], \n    \"fortune-happy\": [\n        \"JJ\"\n    ], \n    \"large-firm\": [\n        \"JJ\"\n    ], \n    \"initiate\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"aboard\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"oil-futures\": [\n        \"NNS\"\n    ], \n    \"Owens\": [\n        \"NNP\"\n    ], \n    \"Dachshund\": [\n        \"NN\"\n    ], \n    \"emotion\": [\n        \"NN\"\n    ], \n    \"gunshot\": [\n        \"NN\"\n    ], \n    \"managed-care\": [\n        \"JJ\"\n    ], \n    \"saving\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"XA2000\": [\n        \"NNP\"\n    ], \n    \"symmetry\": [\n        \"NN\"\n    ], \n    \"reprisal\": [\n        \"NN\"\n    ], \n    \"Aloud\": [\n        \"RB\"\n    ], \n    \"mignon\": [\n        \"NN\"\n    ], \n    \"Vasilievitch\": [\n        \"NNP\"\n    ], \n    \"Funding\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"veldt\": [\n        \"NN\"\n    ], \n    \"exaggerations\": [\n        \"NNS\"\n    ], \n    \"stifles\": [\n        \"VBZ\"\n    ], \n    \"sway-backed\": [\n        \"JJ\"\n    ], \n    \"Sabhavasu\": [\n        \"NNP\"\n    ], \n    \"Amici\": [\n        \"FW\"\n    ], \n    \"stifled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"embalming\": [\n        \"NN\"\n    ], \n    \"oversimplified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"decommissoned\": [\n        \"JJ\"\n    ], \n    \"plugugly\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shawl\": [\n        \"NN\"\n    ], \n    \"play-acting\": [\n        \"NN\"\n    ], \n    \"Mullaney\": [\n        \"NNP\"\n    ], \n    \"tombstones\": [\n        \"NNS\"\n    ], \n    \"Stileman\": [\n        \"NNP\"\n    ], \n    \"Herger\": [\n        \"NNP\"\n    ], \n    \"Meils\": [\n        \"NNP\"\n    ], \n    \"LETTER\": [\n        \"NN\"\n    ], \n    \"herds\": [\n        \"NNS\"\n    ], \n    \"specialists\": [\n        \"NNS\"\n    ], \n    \"adoptable\": [\n        \"JJ\"\n    ], \n    \"Willingness\": [\n        \"NN\"\n    ], \n    \"Pentagon-related\": [\n        \"JJ\"\n    ], \n    \"nonsocialist\": [\n        \"JJ\"\n    ], \n    \"Economidis\": [\n        \"NNP\"\n    ], \n    \"unfit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hubert\": [\n        \"NNP\"\n    ], \n    \"ascendancy\": [\n        \"NN\"\n    ], \n    \"tortures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"illness\": [\n        \"NN\"\n    ], \n    \"sockdologizing\": [\n        \"VBG\"\n    ], \n    \"flat-footed\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Procepe\": [\n        \"NNP\"\n    ], \n    \"Suggest\": [\n        \"VB\"\n    ], \n    \"amphibology\": [\n        \"NN\"\n    ], \n    \"locations\": [\n        \"NNS\"\n    ], \n    \"Easterners\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"gene-splicing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cold-rolled\": [\n        \"JJ\"\n    ], \n    \"wood-products\": [\n        \"NNS\"\n    ], \n    \"Rawleigh\": [\n        \"NNP\"\n    ], \n    \"SOARED\": [\n        \"VBD\"\n    ], \n    \"invite\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Hastert\": [\n        \"NNP\"\n    ], \n    \"BREWS\": [\n        \"VBZ\"\n    ], \n    \"Evadna\": [\n        \"NNP\"\n    ], \n    \"warriors\": [\n        \"NNS\"\n    ], \n    \"Alicia\": [\n        \"NNP\"\n    ], \n    \"Salzman\": [\n        \"NNP\"\n    ], \n    \"intends\": [\n        \"VBZ\"\n    ], \n    \"portents\": [\n        \"NNS\"\n    ], \n    \"Hale\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kenworthy\": [\n        \"NNP\"\n    ], \n    \"Half\": [\n        \"NN\", \n        \"NNP\", \n        \"PDT\", \n        \"DT\", \n        \"RB\"\n    ], \n    \"evened\": [\n        \"VBN\"\n    ], \n    \"Hall\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Halo\": [\n        \"NNP\"\n    ], \n    \"creditably\": [\n        \"RB\"\n    ], \n    \"imperatives\": [\n        \"NNS\"\n    ], \n    \"printer\": [\n        \"NN\"\n    ], \n    \"High-end\": [\n        \"JJ\"\n    ], \n    \"ascendency\": [\n        \"NN\"\n    ], \n    \"Gilleland\": [\n        \"NNP\"\n    ], \n    \"Newcomers\": [\n        \"NNS\"\n    ], \n    \"Concessionaires\": [\n        \"NNS\"\n    ], \n    \"So-so\": [\n        \"NN\"\n    ], \n    \"Allison\": [\n        \"NNP\"\n    ], \n    \"printed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"knowingly\": [\n        \"RB\"\n    ], \n    \"prayerfully\": [\n        \"RB\"\n    ], \n    \"creditable\": [\n        \"JJ\"\n    ], \n    \"Mohasco\": [\n        \"NNP\"\n    ], \n    \"Chet\": [\n        \"NNP\"\n    ], \n    \"Lands\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Cher\": [\n        \"NNP\"\n    ], \n    \"Ches\": [\n        \"NNP\"\n    ], \n    \"twirlingly\": [\n        \"RB\"\n    ], \n    \"Ishida\": [\n        \"NNP\"\n    ], \n    \"Chez\": [\n        \"NNP\"\n    ], \n    \"Chex\": [\n        \"NNP\"\n    ], \n    \"Chef\": [\n        \"NNP\"\n    ], \n    \"Landa\": [\n        \"NNP\"\n    ], \n    \"phis\": [\n        \"NNS\"\n    ], \n    \"Granin\": [\n        \"NNP\"\n    ], \n    \"summer-winter\": [\n        \"JJ\"\n    ], \n    \"Chen\": [\n        \"NNP\"\n    ], \n    \"redirected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Chem\": [\n        \"NNP\"\n    ], \n    \"Schilling\": [\n        \"NNP\"\n    ], \n    \"fascinated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"stimulator\": [\n        \"NN\"\n    ], \n    \"coupon-equivalent\": [\n        \"JJ\"\n    ], \n    \"Rheumatism\": [\n        \"NNP\"\n    ], \n    \"infuriate\": [\n        \"VB\"\n    ], \n    \"APMS\": [\n        \"NNP\"\n    ], \n    \"Sky\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Electronics\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"fecal\": [\n        \"JJ\"\n    ], \n    \"sales-tax\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"elan\": [\n        \"NN\"\n    ], \n    \"Seigel\": [\n        \"NNP\"\n    ], \n    \"Piwen\": [\n        \"NNP\"\n    ], \n    \"aggressive\": [\n        \"JJ\"\n    ], \n    \"Ski\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Meanings\": [\n        \"NNS\"\n    ], \n    \"equidistantly\": [\n        \"RB\"\n    ], \n    \"Chips\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"betrothal\": [\n        \"JJ\"\n    ], \n    \"Leadership\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Frenzy\": [\n        \"NNP\"\n    ], \n    \"Housing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bianco\": [\n        \"NNP\"\n    ], \n    \"gas-derived\": [\n        \"JJ\"\n    ], \n    \"hindmost\": [\n        \"JJ\"\n    ], \n    \"guarded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"polypropylene\": [\n        \"NN\"\n    ], \n    \"Assets\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"suitcases\": [\n        \"NNS\"\n    ], \n    \"tilting\": [\n        \"VBG\"\n    ], \n    \"fraud-related\": [\n        \"JJ\"\n    ], \n    \"two-round\": [\n        \"JJ\"\n    ], \n    \"simplistic\": [\n        \"JJ\"\n    ], \n    \"Nagymaros\": [\n        \"NNP\"\n    ], \n    \"college-sports\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"hearing-aid\": [\n        \"NN\"\n    ], \n    \"mechanization\": [\n        \"NN\"\n    ], \n    \"awaiting\": [\n        \"VBG\"\n    ], \n    \"Machinist\": [\n        \"NNP\"\n    ], \n    \"Plaintiffs``\": [\n        \"``\"\n    ], \n    \"Ryosuke\": [\n        \"NNP\"\n    ], \n    \"Exhibit\": [\n        \"NN\"\n    ], \n    \"Public-health\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Asquith\": [\n        \"NNP\"\n    ], \n    \"whipped\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Dismounting\": [\n        \"VBG\"\n    ], \n    \"mealie-meal\": [\n        \"NN\"\n    ], \n    \"multifiber\": [\n        \"JJR\"\n    ], \n    \"Cashion\": [\n        \"NNP\"\n    ], \n    \"morose\": [\n        \"JJ\"\n    ], \n    \"cost-billing\": [\n        \"JJ\"\n    ], \n    \"One-day\": [\n        \"JJ\"\n    ], \n    \"Toll\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hurricane-wracked\": [\n        \"JJ\"\n    ], \n    \"Juge\": [\n        \"NNP\"\n    ], \n    \"preclearance\": [\n        \"NN\"\n    ], \n    \"impressions\": [\n        \"NNS\"\n    ], \n    \"hastened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Clintonville\": [\n        \"NNP\"\n    ], \n    \"Weithas\": [\n        \"NNP\"\n    ], \n    \"intoxicating\": [\n        \"JJ\"\n    ], \n    \"stock-appreciation-based\": [\n        \"JJ\"\n    ], \n    \"refresher\": [\n        \"NN\"\n    ], \n    \"agriculture-based\": [\n        \"JJ\"\n    ], \n    \"alarming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"low-speed\": [\n        \"JJ\"\n    ], \n    \"Jonas\": [\n        \"NNP\"\n    ], \n    \"consumer-electronics\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"refreshed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Awe\": [\n        \"NN\"\n    ], \n    \"Mitsubishi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Boondael\": [\n        \"NNP\"\n    ], \n    \"business-services\": [\n        \"JJ\"\n    ], \n    \"planes\": [\n        \"NNS\"\n    ], \n    \"Conasupo\": [\n        \"NNP\"\n    ], \n    \"bankruptcy-court\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gettinger\": [\n        \"NNP\"\n    ], \n    \"pro-Iranian\": [\n        \"JJ\"\n    ], \n    \"publicity-shy\": [\n        \"JJ\"\n    ], \n    \"McCauley\": [\n        \"NNP\"\n    ], \n    \"Vitarine\": [\n        \"NNP\"\n    ], \n    \"first-aid\": [\n        \"NN\"\n    ], \n    \"concentrated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"busting\": [\n        \"VBG\"\n    ], \n    \"Automax\": [\n        \"NNP\"\n    ], \n    \"Bancario\": [\n        \"NNP\"\n    ], \n    \"stop-and-start\": [\n        \"JJ\"\n    ], \n    \"Luxco\": [\n        \"NNP\"\n    ], \n    \"recitations\": [\n        \"NNS\"\n    ], \n    \"s\": [\n        \"PRP\", \n        \"NN\"\n    ], \n    \"concentrates\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"C-word\": [\n        \"NN\"\n    ], \n    \"doctoring\": [\n        \"NN\"\n    ], \n    \"loveliest\": [\n        \"JJS\"\n    ], \n    \"UMNO\": [\n        \"NNP\"\n    ], \n    \"Unsettling\": [\n        \"JJ\"\n    ], \n    \"Sweet-sour\": [\n        \"JJ\"\n    ], \n    \"compels\": [\n        \"VBZ\"\n    ], \n    \"dark-skinned\": [\n        \"JJ\"\n    ], \n    \"Leavitt\": [\n        \"NNP\"\n    ], \n    \"Giordano\": [\n        \"NNP\"\n    ], \n    \"Twenty-First\": [\n        \"NNP\"\n    ], \n    \"buoyancy\": [\n        \"NN\"\n    ], \n    \"radicalized\": [\n        \"VBN\"\n    ], \n    \"Horton\": [\n        \"NNP\"\n    ], \n    \"epistemology\": [\n        \"NN\"\n    ], \n    \"Pepper\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"RESIGNED\": [\n        \"VBD\"\n    ], \n    \"extra-high\": [\n        \"JJ\"\n    ], \n    \"accelerometer\": [\n        \"NN\"\n    ], \n    \"post-independence\": [\n        \"JJ\"\n    ], \n    \"one-upmanship\": [\n        \"NN\"\n    ], \n    \"stripped\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"ultracentrifugally\": [\n        \"RB\"\n    ], \n    \"spyglass\": [\n        \"NN\"\n    ], \n    \"Berber\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Briefer\": [\n        \"NNP\"\n    ], \n    \"relations\": [\n        \"NNS\"\n    ], \n    \"Sundarji\": [\n        \"NNP\"\n    ], \n    \"combatted\": [\n        \"VBN\"\n    ], \n    \"no-trading\": [\n        \"JJ\"\n    ], \n    \"formed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Baykal\": [\n        \"NNP\"\n    ], \n    \"geothermal\": [\n        \"JJ\"\n    ], \n    \"Industries-developed\": [\n        \"NNP\"\n    ], \n    \"Entertaining\": [\n        \"NNP\"\n    ], \n    \"former\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"runnin\": [\n        \"VBG\"\n    ], \n    \"co-ordination\": [\n        \"NN\"\n    ], \n    \"outflows\": [\n        \"NNS\"\n    ], \n    \"rock-like\": [\n        \"JJ\"\n    ], \n    \"Annandale\": [\n        \"NNP\"\n    ], \n    \"Commander\": [\n        \"NNP\"\n    ], \n    \"straighter\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"huckstering\": [\n        \"VBG\"\n    ], \n    \"defeatism\": [\n        \"NN\"\n    ], \n    \"Revamps\": [\n        \"NNP\"\n    ], \n    \"newspaper\": [\n        \"NN\"\n    ], \n    \"situation\": [\n        \"NN\"\n    ], \n    \"Copland\": [\n        \"NNP\"\n    ], \n    \"Flugleasing\": [\n        \"NNP\"\n    ], \n    \"penthouse\": [\n        \"NN\"\n    ], \n    \"parboiled\": [\n        \"VBD\"\n    ], \n    \"non-vested\": [\n        \"JJ\"\n    ], \n    \"U.S.-led\": [\n        \"JJ\"\n    ], \n    \"all-round\": [\n        \"JJ\"\n    ], \n    \"Diaghileff\": [\n        \"NNP\"\n    ], \n    \"reviled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Nagoya\": [\n        \"NNP\"\n    ], \n    \"dubious\": [\n        \"JJ\"\n    ], \n    \"obtuse\": [\n        \"JJ\"\n    ], \n    \"electrogalvanized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Eliminate\": [\n        \"VB\"\n    ], \n    \"serological\": [\n        \"JJ\"\n    ], \n    \"engages\": [\n        \"NNS\", \n        \"VBN\", \n        \"VBZ\"\n    ], \n    \"debilitating\": [\n        \"JJ\"\n    ], \n    \"titer\": [\n        \"NN\"\n    ], \n    \"Govette\": [\n        \"NNP\"\n    ], \n    \"Replacing\": [\n        \"VBG\"\n    ], \n    \"theorized\": [\n        \"VBD\"\n    ], \n    \"mean-square\": [\n        \"JJ\"\n    ], \n    \"legalistic\": [\n        \"JJ\"\n    ], \n    \"Lovejoy\": [\n        \"NNP\"\n    ], \n    \"gelding\": [\n        \"NN\"\n    ], \n    \"Megdal\": [\n        \"NNP\"\n    ], \n    \"reformatory\": [\n        \"NN\"\n    ], \n    \"Landover\": [\n        \"NNP\"\n    ], \n    \"Whipple\": [\n        \"NNP\"\n    ], \n    \"UTA\": [\n        \"NNP\"\n    ], \n    \"chain-store\": [\n        \"JJ\"\n    ], \n    \"Oxygen\": [\n        \"NN\"\n    ], \n    \"deft\": [\n        \"JJ\"\n    ], \n    \"defy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Commissioner\": [\n        \"NNP\"\n    ], \n    \"UTL\": [\n        \"JJ\"\n    ], \n    \"edges\": [\n        \"NNS\"\n    ], \n    \"wired\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bluntly\": [\n        \"RB\"\n    ], \n    \"healthy-looking\": [\n        \"JJ\"\n    ], \n    \"brasses\": [\n        \"NNS\"\n    ], \n    \"Spherical\": [\n        \"JJ\"\n    ], \n    \"Appropriately\": [\n        \"RB\"\n    ], \n    \"Pork\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tracking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"renunciation\": [\n        \"NN\"\n    ], \n    \"Haupts\": [\n        \"NNP\"\n    ], \n    \"Zero-Based\": [\n        \"NNP\"\n    ], \n    \"Otros\": [\n        \"NNP\"\n    ], \n    \"Primark\": [\n        \"NNP\"\n    ], \n    \"Port\": [\n        \"NNP\"\n    ], \n    \"I.M.F.\": [\n        \"NNP\"\n    ], \n    \"steamed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"recycles\": [\n        \"VBZ\"\n    ], \n    \"recycler\": [\n        \"NN\"\n    ], \n    \"disconcert\": [\n        \"VB\"\n    ], \n    \"Crossfire\": [\n        \"NNP\"\n    ], \n    \"Conservative\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"divestitures\": [\n        \"NNS\"\n    ], \n    \"BOJ\": [\n        \"NNP\"\n    ], \n    \"Concerns\": [\n        \"NNS\"\n    ], \n    \"BOC\": [\n        \"NNP\"\n    ], \n    \"BOD\": [\n        \"NN\"\n    ], \n    \"INVESTMENTS\": [\n        \"NNPS\"\n    ], \n    \"serious-minded\": [\n        \"JJ\"\n    ], \n    \"Boylston\": [\n        \"NNP\"\n    ], \n    \"uncap\": [\n        \"VB\"\n    ], \n    \"Infighting\": [\n        \"NN\"\n    ], \n    \"Males\": [\n        \"NNPS\"\n    ], \n    \"Bardagy\": [\n        \"NNP\"\n    ], \n    \"counterproposals\": [\n        \"NNS\"\n    ], \n    \"Malek\": [\n        \"NNP\"\n    ], \n    \"Lewala\": [\n        \"NNP\"\n    ], \n    \"overthrow\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"haystack\": [\n        \"NN\"\n    ], \n    \"Malec\": [\n        \"NNP\"\n    ], \n    \"Duke-EPA\": [\n        \"JJ\"\n    ], \n    \"Debates\": [\n        \"NNS\"\n    ], \n    \"gestured\": [\n        \"VBD\"\n    ], \n    \"sportsmanship\": [\n        \"NN\"\n    ], \n    \"takeover-threat\": [\n        \"NN\"\n    ], \n    \"mosaic-like\": [\n        \"JJ\"\n    ], \n    \"downtrend\": [\n        \"NN\"\n    ], \n    \"Decreasing\": [\n        \"VBG\"\n    ], \n    \"world\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"colluded\": [\n        \"VBD\"\n    ], \n    \"apprehending\": [\n        \"VBG\"\n    ], \n    \"Example\": [\n        \"NN\"\n    ], \n    \"tremulous\": [\n        \"JJ\"\n    ], \n    \"domestic-credit\": [\n        \"NN\"\n    ], \n    \"SETTING\": [\n        \"VBG\"\n    ], \n    \"Nacht\": [\n        \"FW\"\n    ], \n    \"unrepentant\": [\n        \"JJ\"\n    ], \n    \"out-of-step\": [\n        \"JJ\"\n    ], \n    \"G.O.P.\": [\n        \"NN\"\n    ], \n    \"shutter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"glamor\": [\n        \"NN\"\n    ], \n    \"militate\": [\n        \"VB\"\n    ], \n    \"Sludge\": [\n        \"NNP\"\n    ], \n    \"goosey\": [\n        \"JJ\"\n    ], \n    \"superintendent\": [\n        \"NN\"\n    ], \n    \"learning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"grub\": [\n        \"NN\"\n    ], \n    \"Burchette\": [\n        \"NNP\"\n    ], \n    \"Engel\": [\n        \"NNP\"\n    ], \n    \"unshielded\": [\n        \"VBN\"\n    ], \n    \"demeaning\": [\n        \"JJ\"\n    ], \n    \"diving\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"stagecoach\": [\n        \"NN\"\n    ], \n    \"divine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tva\": [\n        \"NN\"\n    ], \n    \"white-squire\": [\n        \"NN\"\n    ], \n    \"Brazilians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Prabang\": [\n        \"NNP\"\n    ], \n    \"cavity\": [\n        \"NN\"\n    ], \n    \"seaman\": [\n        \"NN\"\n    ], \n    \"refundable\": [\n        \"JJ\"\n    ], \n    \"semantically\": [\n        \"RB\"\n    ], \n    \"well-planned\": [\n        \"JJ\"\n    ], \n    \"restoring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"SQUARE\": [\n        \"NNP\"\n    ], \n    \"holiday-season\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"retains\": [\n        \"VBZ\"\n    ], \n    \"Tax-exempts\": [\n        \"NNS\"\n    ], \n    \"Lukens\": [\n        \"NNP\"\n    ], \n    \"leadership\": [\n        \"NN\"\n    ], \n    \"Cawdron\": [\n        \"NNP\"\n    ], \n    \"E.D.\": [\n        \"NNP\"\n    ], \n    \"B-scale\": [\n        \"NN\"\n    ], \n    \"majoring\": [\n        \"VBG\"\n    ], \n    \"Private-sector\": [\n        \"JJ\"\n    ], \n    \"trickster\": [\n        \"NN\"\n    ], \n    \"retraced\": [\n        \"VBD\"\n    ], \n    \"Tibbs\": [\n        \"NNP\"\n    ], \n    \"Magnatek\": [\n        \"NNP\"\n    ], \n    \"Puzzled\": [\n        \"VBN\"\n    ], \n    \"local-exchange\": [\n        \"JJ\"\n    ], \n    \"Inisel\": [\n        \"NNP\"\n    ], \n    \"five-cent\": [\n        \"JJ\"\n    ], \n    \"loch\": [\n        \"NN\"\n    ], \n    \"rabbinical\": [\n        \"JJ\"\n    ], \n    \"Paine\": [\n        \"NNP\"\n    ], \n    \"shapely\": [\n        \"JJ\"\n    ], \n    \"No\": [\n        \"DT\", \n        \"NN\", \n        \"RB\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"McMullin\": [\n        \"NNP\"\n    ], \n    \"Paini\": [\n        \"NNP\"\n    ], \n    \"Ne\": [\n        \"NNP\"\n    ], \n    \"unethically\": [\n        \"RB\"\n    ], \n    \"Ng\": [\n        \"NNP\"\n    ], \n    \"Endangered\": [\n        \"NNP\"\n    ], \n    \"ineffable\": [\n        \"JJ\"\n    ], \n    \"Pains\": [\n        \"NNS\"\n    ], \n    \"conceptually\": [\n        \"RB\"\n    ], \n    \"Sansone\": [\n        \"NNP\"\n    ], \n    \"Finley\": [\n        \"NNP\"\n    ], \n    \"carbaryl\": [\n        \"NN\"\n    ], \n    \"Gordon\\\\/Pick\": [\n        \"NNP\"\n    ], \n    \"NH\": [\n        \"NNP\"\n    ], \n    \"Tewfik\": [\n        \"NNP\"\n    ], \n    \"Bielas\": [\n        \"NNP\"\n    ], \n    \"Hultberg\": [\n        \"NNP\"\n    ], \n    \"NL\": [\n        \"NNP\"\n    ], \n    \"DnC\": [\n        \"NNP\"\n    ], \n    \"NO\": [\n        \"DT\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"lacquered\": [\n        \"VBN\"\n    ], \n    \"NB\": [\n        \"NNP\"\n    ], \n    \"NC\": [\n        \"NNP\"\n    ], \n    \"NE\": [\n        \"NNP\"\n    ], \n    \"deCordova\": [\n        \"NNP\"\n    ], \n    \"lounging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"rumbles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Insect\": [\n        \"NN\"\n    ], \n    \"mindless\": [\n        \"JJ\"\n    ], \n    \"missy\": [\n        \"NN\"\n    ], \n    \"Windahall\": [\n        \"NNP\"\n    ], \n    \"Maeterlinck\": [\n        \"NNP\"\n    ], \n    \"NS\": [\n        \"NNP\"\n    ], \n    \"carabao\": [\n        \"NN\"\n    ], \n    \"NU\": [\n        \"NNP\"\n    ], \n    \"NV\": [\n        \"NNP\"\n    ], \n    \"NW\": [\n        \"NNP\"\n    ], \n    \"Hannover\": [\n        \"NNP\"\n    ], \n    \"Firebird\": [\n        \"NNP\"\n    ], \n    \"N.\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"worsted\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nations-monitored\": [\n        \"JJ\"\n    ], \n    \"Alternately\": [\n        \"RB\"\n    ], \n    \"Tandy\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"foreheads\": [\n        \"NNS\"\n    ], \n    \"Group\\\\/Business\": [\n        \"NNP\"\n    ], \n    \"Arkhipov\": [\n        \"NNP\"\n    ], \n    \"whinny\": [\n        \"NN\"\n    ], \n    \"jewelery-related\": [\n        \"JJ\"\n    ], \n    \"liquid-drug\": [\n        \"JJ\"\n    ], \n    \"pull\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"rush\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"rehabilitations\": [\n        \"NNS\"\n    ], \n    \"hairpieces\": [\n        \"NNS\"\n    ], \n    \"Rodriguez\": [\n        \"NNP\"\n    ], \n    \"Property\\\\\": [\n        \"JJ\"\n    ], \n    \"Beheading\": [\n        \"VBG\"\n    ], \n    \"ruse\": [\n        \"NN\"\n    ], \n    \"eight-count\": [\n        \"JJ\"\n    ], \n    \"Caution\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Berndt\": [\n        \"NNP\"\n    ], \n    \"OGURA\": [\n        \"NNP\"\n    ], \n    \"rust\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Porche\": [\n        \"NNP\"\n    ], \n    \"gratuitous\": [\n        \"JJ\"\n    ], \n    \"DPX\\\\\": [\n        \"NNP\"\n    ], \n    \"hypertension\": [\n        \"NN\"\n    ], \n    \"Pathe\": [\n        \"NNP\"\n    ], \n    \"Sultanate\": [\n        \"NNP\"\n    ], \n    \"jargon\": [\n        \"NN\"\n    ], \n    \"AZT\": [\n        \"NNP\"\n    ], \n    \"Humanity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Real\": [\n        \"JJ\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"Sarawak\": [\n        \"NNP\"\n    ], \n    \"moniker\": [\n        \"NN\"\n    ], \n    \"ideally\": [\n        \"RB\"\n    ], \n    \"Taff\": [\n        \"NNP\"\n    ], \n    \"Read\": [\n        \"NNP\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"half-completed\": [\n        \"JJ\"\n    ], \n    \"COMPLETED\": [\n        \"VBD\"\n    ], \n    \"introspection\": [\n        \"NN\"\n    ], \n    \"p.a.\": [\n        \"NN\"\n    ], \n    \"T.D.\": [\n        \"NNP\"\n    ], \n    \"Rear\": [\n        \"JJ\"\n    ], \n    \"passerby\": [\n        \"NN\"\n    ], \n    \"Theran\": [\n        \"NNP\"\n    ], \n    \"hydraulics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"anti-idiotypes\": [\n        \"NNS\"\n    ], \n    \"intimation\": [\n        \"NN\"\n    ], \n    \"environing\": [\n        \"VBG\"\n    ], \n    \"Kildare\": [\n        \"NNP\"\n    ], \n    \"Khivrich\": [\n        \"NNP\"\n    ], \n    \"infirmity\": [\n        \"NN\"\n    ], \n    \"Rempsberger\": [\n        \"NNP\"\n    ], \n    \"electronic-measuring\": [\n        \"JJ\"\n    ], \n    \"Conn.-based\": [\n        \"JJ\"\n    ], \n    \"Comeau\": [\n        \"NNP\"\n    ], \n    \"firebrand\": [\n        \"NN\"\n    ], \n    \"Correlations\": [\n        \"NNS\"\n    ], \n    \"dyed\": [\n        \"VBN\"\n    ], \n    \"Hardware\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cardillo\": [\n        \"NNP\"\n    ], \n    \"Bias\": [\n        \"NNP\"\n    ], \n    \"CATV\": [\n        \"NN\"\n    ], \n    \"Pitch\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"dyes\": [\n        \"NNS\"\n    ], \n    \"valves\": [\n        \"NNS\"\n    ], \n    \"added-value\": [\n        \"JJ\"\n    ], \n    \"Fit\": [\n        \"JJ\"\n    ], \n    \"population-control\": [\n        \"JJ\"\n    ], \n    \"Fix\": [\n        \"VB\"\n    ], \n    \"landlocked\": [\n        \"JJ\"\n    ], \n    \"Fig\": [\n        \"NN\"\n    ], \n    \"internist\": [\n        \"NN\"\n    ], \n    \"Fio\": [\n        \"NNP\"\n    ], \n    \"Fil\": [\n        \"NNP\"\n    ], \n    \"taxicab\": [\n        \"NN\"\n    ], \n    \"Schaefer\": [\n        \"NNP\"\n    ], \n    \"whitely\": [\n        \"RB\"\n    ], \n    \"Rendell\": [\n        \"NNP\"\n    ], \n    \"Waterbury\": [\n        \"NNP\"\n    ], \n    \"domestic-made\": [\n        \"JJ\"\n    ], \n    \"midwest\": [\n        \"JJS\"\n    ], \n    \"roadway\": [\n        \"NN\"\n    ], \n    \"Zwiren\": [\n        \"NNP\"\n    ], \n    \"Capricorn\": [\n        \"NNP\"\n    ], \n    \"tombs\": [\n        \"NNS\"\n    ], \n    \"checkin\": [\n        \"VBG\"\n    ], \n    \"Mignott\": [\n        \"NNP\"\n    ], \n    \"baton\": [\n        \"NN\"\n    ], \n    \"Ancistrodon\": [\n        \"NNP\"\n    ], \n    \"problem-solving\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nagin\": [\n        \"NNP\"\n    ], \n    \"mind-numbing\": [\n        \"JJ\"\n    ], \n    \"rootless\": [\n        \"JJ\"\n    ], \n    \"quasi-governmental\": [\n        \"JJ\"\n    ], \n    \"Maxtor\": [\n        \"NNP\"\n    ], \n    \"shenanigans\": [\n        \"NNS\"\n    ], \n    \"Anabaptists\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"sixty-five-mile\": [\n        \"JJ\"\n    ], \n    \"small\": [\n        \"JJ\"\n    ], \n    \"USED\": [\n        \"VBD\"\n    ], \n    \"Peace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"paso\": [\n        \"NN\"\n    ], \n    \"milord\": [\n        \"NN\"\n    ], \n    \"healed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"past\": [\n        \"JJ\", \n        \"VBN\", \n        \"IN\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Terminating\": [\n        \"VBG\"\n    ], \n    \"fractionation\": [\n        \"NN\"\n    ], \n    \"displays\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"pass\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Reyes\": [\n        \"NNP\"\n    ], \n    \"McCarty\": [\n        \"NNP\"\n    ], \n    \"investment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"quicken\": [\n        \"VB\"\n    ], \n    \"shockwave\": [\n        \"NN\"\n    ], \n    \"fertilizations\": [\n        \"NNS\"\n    ], \n    \"menswear\": [\n        \"NN\"\n    ], \n    \"clock\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"corked\": [\n        \"JJ\"\n    ], \n    \"colonists\": [\n        \"NNS\"\n    ], \n    \"subspaces\": [\n        \"NNS\"\n    ], \n    \"full\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Critically\": [\n        \"RB\"\n    ], \n    \"foreign-airline\": [\n        \"NN\"\n    ], \n    \"Bourses\": [\n        \"NNP\"\n    ], \n    \"Charlie\": [\n        \"NNP\"\n    ], \n    \"diapers\": [\n        \"NNS\"\n    ], \n    \"Digby\": [\n        \"NNP\"\n    ], \n    \"a-Includes\": [\n        \"VBZ\"\n    ], \n    \"Roeck\": [\n        \"NNP\"\n    ], \n    \"civilians\": [\n        \"NNS\"\n    ], \n    \"ventilated\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"elementary-school\": [\n        \"JJ\"\n    ], \n    \"Justino\": [\n        \"NNP\"\n    ], \n    \"Justine\": [\n        \"NNP\"\n    ], \n    \"solvating\": [\n        \"VBG\"\n    ], \n    \"experience\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"anthropologists\": [\n        \"NNS\"\n    ], \n    \"single-lot\": [\n        \"JJ\"\n    ], \n    \"cessation\": [\n        \"NN\"\n    ], \n    \"countin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Mannesmann\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"faculties\": [\n        \"NNS\"\n    ], \n    \"tax-free\": [\n        \"JJ\"\n    ], \n    \"welter\": [\n        \"NN\"\n    ], \n    \"followed\": [\n        \"VBD\", \n        \"VBN|VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Drubbing\": [\n        \"NN\"\n    ], \n    \"Richmond\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Annisberg\": [\n        \"NNP\"\n    ], \n    \"Gigenza\": [\n        \"NNP\"\n    ], \n    \"literary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"attendance\": [\n        \"NN\"\n    ], \n    \"Conlow\": [\n        \"NNP\"\n    ], \n    \"enliven\": [\n        \"VBP\"\n    ], \n    \"Alsagoray\": [\n        \"NNP\"\n    ], \n    \"Wexler\": [\n        \"NNP\"\n    ], \n    \"Friedrichs\": [\n        \"NNP\"\n    ], \n    \"unrecognizable\": [\n        \"JJ\"\n    ], \n    \"Conlon\": [\n        \"NNP\"\n    ], \n    \"tissue-transplant\": [\n        \"JJ\"\n    ], \n    \"Meana\": [\n        \"NNP\"\n    ], \n    \"Teknowledge\": [\n        \"NNP\"\n    ], \n    \"door\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Flannagans\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"anti-choice\": [\n        \"JJ\"\n    ], \n    \"one-sided\": [\n        \"JJ\"\n    ], \n    \"tested\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"jealousies\": [\n        \"NNS\"\n    ], \n    \"Celica\": [\n        \"NNP\"\n    ], \n    \"nonviolent\": [\n        \"JJ\"\n    ], \n    \"doom\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Irradiation\": [\n        \"NN\"\n    ], \n    \"Agitato\": [\n        \"NNP\"\n    ], \n    \"Chad\": [\n        \"NNP\"\n    ], \n    \"Radiopasteurization\": [\n        \"NN\"\n    ], \n    \"anxieties\": [\n        \"NNS\"\n    ], \n    \"applelike\": [\n        \"JJ\"\n    ], \n    \"centrifugal\": [\n        \"JJ\"\n    ], \n    \"Bondi\": [\n        \"NNP\"\n    ], \n    \"Newitt\": [\n        \"NNP\"\n    ], \n    \"changeover\": [\n        \"NN\"\n    ], \n    \"wimp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"diabetic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"generalists\": [\n        \"NNS\"\n    ], \n    \"memoirs\": [\n        \"NNS\"\n    ], \n    \"Varga\": [\n        \"NNP\"\n    ], \n    \"Seventy-nine\": [\n        \"JJ\"\n    ], \n    \"concordant\": [\n        \"JJ\"\n    ], \n    \"sequins\": [\n        \"NNS\"\n    ], \n    \"respective\": [\n        \"JJ\"\n    ], \n    \"ANDERSEN\": [\n        \"NNP\"\n    ], \n    \"Vining\": [\n        \"NNP\"\n    ], \n    \"cosily\": [\n        \"RB\"\n    ], \n    \"speedboat\": [\n        \"NN\"\n    ], \n    \"enlargd\": [\n        \"VBN\"\n    ], \n    \"enlarge\": [\n        \"VB\"\n    ], \n    \"ONEIDA\": [\n        \"NNP\"\n    ], \n    \"Succeed\": [\n        \"NNP\"\n    ], \n    \"creeks\": [\n        \"NNS\"\n    ], \n    \"footman\": [\n        \"NN\"\n    ], \n    \"implicitly\": [\n        \"RB\"\n    ], \n    \"rollback\": [\n        \"NN\"\n    ], \n    \"sprinkle\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"trendsetter\": [\n        \"NN\"\n    ], \n    \"lanky\": [\n        \"JJ\"\n    ], \n    \"Emil\": [\n        \"NNP\"\n    ], \n    \"Closed-end\": [\n        \"JJ\"\n    ], \n    \"sympathize\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Bio-Trends\": [\n        \"NNP\"\n    ], \n    \"Medfield\": [\n        \"NNP\"\n    ], \n    \"mended\": [\n        \"VBN\"\n    ], \n    \"CATFISH\": [\n        \"NNS\"\n    ], \n    \"GOULD\": [\n        \"NNP\"\n    ], \n    \"Maccaquano\": [\n        \"NNP\"\n    ], \n    \"low-margin\": [\n        \"JJ\"\n    ], \n    \"Silently\": [\n        \"RB\"\n    ], \n    \"Statistically\": [\n        \"RB\"\n    ], \n    \"waked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"abrasives\": [\n        \"NNS\"\n    ], \n    \"Dobson\": [\n        \"NNP\"\n    ], \n    \"Senorita\": [\n        \"NNP\"\n    ], \n    \"Woonsocket\": [\n        \"NNP\"\n    ], \n    \"RTRSY\": [\n        \"NNP\"\n    ], \n    \"expense-reducing\": [\n        \"JJ\"\n    ], \n    \"overcooked\": [\n        \"VBN\"\n    ], \n    \"Trailing\": [\n        \"VBG\"\n    ], \n    \"Bridgetown\": [\n        \"NNP\"\n    ], \n    \"replied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"circularity\": [\n        \"NN\"\n    ], \n    \"rocketed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pinpoint\": [\n        \"NNP\"\n    ], \n    \"Nervous\": [\n        \"JJ\"\n    ], \n    \"Nishizuka\": [\n        \"NNP\"\n    ], \n    \"wide-ranging\": [\n        \"JJ\"\n    ], \n    \"resorts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"DKB\": [\n        \"NNP\"\n    ], \n    \"Fagenson\": [\n        \"NNP\"\n    ], \n    \"replies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Chem-Con\": [\n        \"NNP\"\n    ], \n    \"smiling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"roots\": [\n        \"NNS\"\n    ], \n    \"state-run\": [\n        \"JJ\"\n    ], \n    \"Plenitude\": [\n        \"NNP\"\n    ], \n    \"Lizzie\": [\n        \"NNP\"\n    ], \n    \"revalued\": [\n        \"VBN\"\n    ], \n    \"Pualani\": [\n        \"NNP\"\n    ], \n    \"hounds\": [\n        \"NNS\"\n    ], \n    \"symptoms\": [\n        \"NNS\"\n    ], \n    \"plotters\": [\n        \"NNS\"\n    ], \n    \"shuddering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ugliness\": [\n        \"NN\"\n    ], \n    \"one-color\": [\n        \"JJ\"\n    ], \n    \"in-jokes\": [\n        \"NNS\"\n    ], \n    \"wined\": [\n        \"VBD\"\n    ], \n    \"Menfolk\": [\n        \"NNS\"\n    ], \n    \"focussed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"unstated\": [\n        \"JJ\"\n    ], \n    \"universality\": [\n        \"NN\"\n    ], \n    \"dull\": [\n        \"JJ\"\n    ], \n    \"Elektronik\": [\n        \"NNP\"\n    ], \n    \"busied\": [\n        \"VBD\"\n    ], \n    \"Medlin\": [\n        \"NNP\"\n    ], \n    \"Banker\": [\n        \"NNP\"\n    ], \n    \"weeds\": [\n        \"NNS\"\n    ], \n    \"Kennedy-wordsmith\": [\n        \"NNP\"\n    ], \n    \"verandah\": [\n        \"NN\"\n    ], \n    \"self-insured\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Duy\": [\n        \"NNP\"\n    ], \n    \"Alastair\": [\n        \"NNP\"\n    ], \n    \"piping\": [\n        \"NN\"\n    ], \n    \"directionless\": [\n        \"JJ\"\n    ], \n    \"repayment\": [\n        \"NN\"\n    ], \n    \"Benda\": [\n        \"NNP\"\n    ], \n    \"reactions\": [\n        \"NNS\"\n    ], \n    \"brunette\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Phoenix-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"scotched\": [\n        \"VBD\"\n    ], \n    \"advertisers\": [\n        \"NNS\"\n    ], \n    \"operation\": [\n        \"NN\"\n    ], \n    \"inquired\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nitto\": [\n        \"NNP\"\n    ], \n    \"Weldon\": [\n        \"NNP\"\n    ], \n    \"Mazzorana\": [\n        \"NNP\"\n    ], \n    \"buzzsaw\": [\n        \"NN\"\n    ], \n    \"denotes\": [\n        \"VBZ\"\n    ], \n    \"Wackers\": [\n        \"NNPS\"\n    ], \n    \"slowly-mending\": [\n        \"JJ\"\n    ], \n    \"Stjernsward\": [\n        \"NNP\"\n    ], \n    \"denoted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mineworkers\": [\n        \"NNS\"\n    ], \n    \"triennial\": [\n        \"NN\"\n    ], \n    \"Prof.\": [\n        \"NNP\"\n    ], \n    \"impudence\": [\n        \"NN\"\n    ], \n    \"warm\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Builder\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Brookland\": [\n        \"NNP\"\n    ], \n    \"Deduction\": [\n        \"NN\"\n    ], \n    \"abnormally\": [\n        \"RB\"\n    ], \n    \"Cartoons\": [\n        \"NNS\"\n    ], \n    \"ATARI\": [\n        \"NNP\"\n    ], \n    \"Serious\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"McCain\": [\n        \"NNP\"\n    ], \n    \"bodyworkers\": [\n        \"NNS\"\n    ], \n    \"plowing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"definition\": [\n        \"NN\"\n    ], \n    \"pairs\": [\n        \"NNS\"\n    ], \n    \"Panza\": [\n        \"NNP\"\n    ], \n    \"Fleischman\": [\n        \"NNP\"\n    ], \n    \"verandas\": [\n        \"NNS\"\n    ], \n    \"multihulled\": [\n        \"VBN\"\n    ], \n    \"testament\": [\n        \"NN\"\n    ], \n    \"existential\": [\n        \"JJ\"\n    ], \n    \"Economist\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Reluctant\": [\n        \"JJ\"\n    ], \n    \"euphemism\": [\n        \"NN\"\n    ], \n    \"Fra\": [\n        \"NNP\"\n    ], \n    \"purport\": [\n        \"VBP\"\n    ], \n    \"Fri\": [\n        \"NNP\"\n    ], \n    \"despatched\": [\n        \"VBD\"\n    ], \n    \"brutally\": [\n        \"RB\"\n    ], \n    \"Curtiss\": [\n        \"NNP\"\n    ], \n    \"Pareo\": [\n        \"NNP\"\n    ], \n    \"Fry\": [\n        \"VB\"\n    ], \n    \"Persuasion\": [\n        \"NN\"\n    ], \n    \"wardrobes\": [\n        \"NNS\"\n    ], \n    \"Personality\": [\n        \"NNP\"\n    ], \n    \"Byrne\": [\n        \"NNP\"\n    ], \n    \"Abramowitz\": [\n        \"NNP\"\n    ], \n    \"cradles\": [\n        \"NNS\"\n    ], \n    \"moderately\": [\n        \"RB\"\n    ], \n    \"hallowed\": [\n        \"JJ\"\n    ], \n    \"formula-based\": [\n        \"JJ\"\n    ], \n    \"bedridden\": [\n        \"JJ\"\n    ], \n    \"Clericis\": [\n        \"NNP\"\n    ], \n    \"cradled\": [\n        \"VBN\"\n    ], \n    \"justly\": [\n        \"RB\"\n    ], \n    \"Illeman\": [\n        \"NNP\"\n    ], \n    \"Rolette\": [\n        \"NNP\"\n    ], \n    \"interviewee\": [\n        \"NN\"\n    ], \n    \"interviewed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gaiters\": [\n        \"NNS\"\n    ], \n    \"typhoon\": [\n        \"NN\"\n    ], \n    \"repurchases\": [\n        \"NNS\"\n    ], \n    \"interviewer\": [\n        \"NN\"\n    ], \n    \"FRANKFURT\": [\n        \"NNP\"\n    ], \n    \"Puette\": [\n        \"NNP\"\n    ], \n    \"Mademoiselle\": [\n        \"NNP\"\n    ], \n    \"Recounting\": [\n        \"VBG\"\n    ], \n    \"Kleiner\": [\n        \"NNP\"\n    ], \n    \"condolences\": [\n        \"NNS\"\n    ], \n    \"Eubanks\": [\n        \"NNP\"\n    ], \n    \"fertility-control\": [\n        \"JJ\"\n    ], \n    \"charges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"family-oriented\": [\n        \"JJ\"\n    ], \n    \"navigators\": [\n        \"NNS\"\n    ], \n    \"Rosenblum\": [\n        \"NNP\"\n    ], \n    \"surrealist\": [\n        \"JJ\"\n    ], \n    \"Interwoven\": [\n        \"JJ\"\n    ], \n    \"Impartiality\": [\n        \"NN\"\n    ], \n    \"waft\": [\n        \"VB\"\n    ], \n    \"graffiti\": [\n        \"NN\"\n    ], \n    \"Achenbaum\": [\n        \"NNP\"\n    ], \n    \"cleverness\": [\n        \"NN\"\n    ], \n    \"Snuggle\": [\n        \"NNP\"\n    ], \n    \"Mainstay\": [\n        \"NN\"\n    ], \n    \"Food\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Brace\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Orchester\": [\n        \"NNP\"\n    ], \n    \"Blackmun\": [\n        \"NNP\"\n    ], \n    \"Krogers\": [\n        \"NNPS\"\n    ], \n    \"also\": [\n        \"RB\", \n        \".\"\n    ], \n    \"Haavelmo\": [\n        \"NNP\"\n    ], \n    \"conscription\": [\n        \"NN\"\n    ], \n    \"Foot\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Chiat\\\\/Day\\\\/Mojo\": [\n        \"NNP\"\n    ], \n    \"CALLED\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"counter-measures\": [\n        \"NNS\"\n    ], \n    \"departmental\": [\n        \"JJ\"\n    ], \n    \"Grais\": [\n        \"NNP\"\n    ], \n    \"PLUNGED\": [\n        \"VBD\"\n    ], \n    \"Lilly\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"balkanized\": [\n        \"JJ\"\n    ], \n    \"Eurofima\": [\n        \"NNP\"\n    ], \n    \"Grain\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Grail\": [\n        \"NNP\"\n    ], \n    \"Friede\": [\n        \"NNP\"\n    ], \n    \"trills\": [\n        \"NNS\"\n    ], \n    \"ticketing\": [\n        \"VBG\"\n    ], \n    \"Haliburton\": [\n        \"NNP\"\n    ], \n    \"deviations\": [\n        \"NNS\"\n    ], \n    \"Capitol\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"arson\": [\n        \"NN\"\n    ], \n    \"Anne-Marie\": [\n        \"NNP\"\n    ], \n    \"sometimes\": [\n        \"RB\"\n    ], \n    \"barred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"self-financed\": [\n        \"JJ\"\n    ], \n    \"barren\": [\n        \"JJ\"\n    ], \n    \"Portfolio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"barrel\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Relatively\": [\n        \"RB\"\n    ], \n    \"Nagorski\": [\n        \"NNP\"\n    ], \n    \"bulletin\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Anhalt-Bernburg\": [\n        \"NNP\"\n    ], \n    \"stock-appreciation\": [\n        \"NN\"\n    ], \n    \"American-built\": [\n        \"JJ\"\n    ], \n    \"Hal\": [\n        \"NNP\"\n    ], \n    \"Ham\": [\n        \"NNP\"\n    ], \n    \"Han\": [\n        \"NNP\"\n    ], \n    \"transshipment\": [\n        \"NN\"\n    ], \n    \"H.T.\": [\n        \"NNP\"\n    ], \n    \"Had\": [\n        \"VBD\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"bookings\": [\n        \"NNS\"\n    ], \n    \"Hay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Merciful\": [\n        \"JJ\"\n    ], \n    \"Hap\": [\n        \"NNP\"\n    ], \n    \"baneful\": [\n        \"JJ\"\n    ], \n    \"Has\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"Hat\": [\n        \"NNP\"\n    ], \n    \"Pa.-based\": [\n        \"JJ\"\n    ], \n    \"Haw\": [\n        \"UH\"\n    ], \n    \"access\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Bulgarian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Cellar\": [\n        \"NNP\"\n    ], \n    \"Dunn\": [\n        \"NNP\"\n    ], \n    \"neophytes\": [\n        \"NNS\"\n    ], \n    \"Dauster\": [\n        \"NNP\"\n    ], \n    \"Dung\": [\n        \"NNP\"\n    ], \n    \"cassette\": [\n        \"NN\"\n    ], \n    \"snobbish\": [\n        \"JJ\"\n    ], \n    \"calibers\": [\n        \"NNS\"\n    ], \n    \"broker-dealers\": [\n        \"NNS\"\n    ], \n    \"atheistic\": [\n        \"JJ\"\n    ], \n    \"McLemore\": [\n        \"NNP\"\n    ], \n    \"Wife\": [\n        \"NN\"\n    ], \n    \"Viande\": [\n        \"NNP\"\n    ], \n    \"Cowbird\": [\n        \"NNP\"\n    ], \n    \"sunny\": [\n        \"JJ\"\n    ], \n    \"trek\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"BACK\": [\n        \"RB\"\n    ], \n    \"non-insurance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"plasters\": [\n        \"NNS\"\n    ], \n    \"Dimes\": [\n        \"NNP\"\n    ], \n    \"devoured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"adapts\": [\n        \"VBZ\"\n    ], \n    \"bytes\": [\n        \"NNS\"\n    ], \n    \"sojourn\": [\n        \"NN\"\n    ], \n    \"goitre\": [\n        \"NN\"\n    ], \n    \"caramel\": [\n        \"NN\"\n    ], \n    \"INCOME\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"approximations\": [\n        \"NNS\"\n    ], \n    \"prospectus\": [\n        \"NN\"\n    ], \n    \"Amalgamated\": [\n        \"NNP\"\n    ], \n    \"delicately\": [\n        \"RB\"\n    ], \n    \"sycamore\": [\n        \"NN\"\n    ], \n    \"Glacier\": [\n        \"NNP\"\n    ], \n    \"Grolier\": [\n        \"NNP\"\n    ], \n    \"Fiori\": [\n        \"NNP\"\n    ], \n    \"overboard\": [\n        \"RB\"\n    ], \n    \"Fiore\": [\n        \"NNP\"\n    ], \n    \"shower\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"free-falling\": [\n        \"JJ\"\n    ], \n    \"unrealized\": [\n        \"JJ\"\n    ], \n    \"sulfurous\": [\n        \"JJ\"\n    ], \n    \"Cuomo\": [\n        \"NNP\"\n    ], \n    \"Perkin-Elmer\": [\n        \"NNP\"\n    ], \n    \"AGREED\": [\n        \"VBD\"\n    ], \n    \"Panama-incorporated\": [\n        \"JJ\"\n    ], \n    \"Thatcher-style\": [\n        \"JJ\"\n    ], \n    \"Erikson\": [\n        \"NNP\"\n    ], \n    \"Hostile\": [\n        \"JJ\"\n    ], \n    \"AZTR\": [\n        \"NNP\"\n    ], \n    \"bull-like\": [\n        \"JJ\"\n    ], \n    \"Tustin\": [\n        \"NNP\"\n    ], \n    \"untouched\": [\n        \"JJ\"\n    ], \n    \"Hollinger\": [\n        \"NNP\"\n    ], \n    \"Sewer\": [\n        \"NNP\"\n    ], \n    \"Shionogi\": [\n        \"NNP\"\n    ], \n    \"Non\": [\n        \"FW\"\n    ], \n    \"lass\": [\n        \"NN\"\n    ], \n    \"last\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"R-5th\": [\n        \"JJ\"\n    ], \n    \"door-fronted\": [\n        \"VBN\"\n    ], \n    \"business-migration\": [\n        \"NN\"\n    ], \n    \"connection\": [\n        \"NN\"\n    ], \n    \"eight-month-old\": [\n        \"JJ\"\n    ], \n    \"lash\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"McEnaney\": [\n        \"NNP\"\n    ], \n    \"acted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Oresteia\": [\n        \"NNP\"\n    ], \n    \"geometry\": [\n        \"NN\"\n    ], \n    \"aforethought\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sinuous\": [\n        \"JJ\"\n    ], \n    \"Greeniaus\": [\n        \"NNP\"\n    ], \n    \"S.P.\": [\n        \"NNP\"\n    ], \n    \"Woonasquatucket\": [\n        \"NNP\"\n    ], \n    \"Wyeth-Ayerst\": [\n        \"NNP\"\n    ], \n    \"Appointment\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"originators\": [\n        \"NNS\"\n    ], \n    \"lucrative\": [\n        \"JJ\"\n    ], \n    \"Automobile\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"decades-old\": [\n        \"JJ\"\n    ], \n    \"patrolled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"combatants\": [\n        \"NNS\"\n    ], \n    \"periwinkles\": [\n        \"NNS\"\n    ], \n    \"ozone-safe\": [\n        \"JJ\"\n    ], \n    \"infect\": [\n        \"VB\"\n    ], \n    \"moderation\": [\n        \"NN\"\n    ], \n    \"Siecles\": [\n        \"NNPS\"\n    ], \n    \"diffusely\": [\n        \"RB\"\n    ], \n    \"Prompt\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Michel\": [\n        \"NNP\"\n    ], \n    \"Icahns\": [\n        \"NNP\"\n    ], \n    \"exponential\": [\n        \"JJ\"\n    ], \n    \"Meinders\": [\n        \"NNP\"\n    ], \n    \"caged\": [\n        \"VBN\"\n    ], \n    \"Neste\": [\n        \"NNP\"\n    ], \n    \"expanded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"empirical\": [\n        \"JJ\"\n    ], \n    \"Reverdy\": [\n        \"NNP\"\n    ], \n    \"presentational\": [\n        \"JJ\"\n    ], \n    \"cagey\": [\n        \"JJ\"\n    ], \n    \"Margins\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"cages\": [\n        \"NNS\"\n    ], \n    \"trinkets\": [\n        \"NNS\"\n    ], \n    \"Vizeversa\": [\n        \"NNP\"\n    ], \n    \"von\": [\n        \"NNP\"\n    ], \n    \"waivered\": [\n        \"VBN\"\n    ], \n    \"motors\": [\n        \"NNS\"\n    ], \n    \"tell-tale\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"vos\": [\n        \"FW\"\n    ], \n    \"cuisine\": [\n        \"NN\"\n    ], \n    \"savings-and-loan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tight-fisted\": [\n        \"JJ\"\n    ], \n    \"Disgusted\": [\n        \"VBN\"\n    ], \n    \"Keffer\": [\n        \"NNP\"\n    ], \n    \"eventshah-leh\": [\n        \"RB\"\n    ], \n    \"Wisner\": [\n        \"NNP\"\n    ], \n    \"Gen-Probe\": [\n        \"NNP\"\n    ], \n    \"flooded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Entrepreneurs\": [\n        \"NNS\"\n    ], \n    \"first-order\": [\n        \"JJ\"\n    ], \n    \"Pakistanis\": [\n        \"NNPS\"\n    ], \n    \"Chorus\": [\n        \"NNP\"\n    ], \n    \"Heinze\": [\n        \"NNP\"\n    ], \n    \"Benetton\": [\n        \"NNP\"\n    ], \n    \"ringsiders\": [\n        \"NNS\"\n    ], \n    \"guerrilla-held\": [\n        \"JJ\"\n    ], \n    \"Minns\": [\n        \"NNP\"\n    ], \n    \"Karp\": [\n        \"NNP\"\n    ], \n    \"Kary\": [\n        \"NNP\"\n    ], \n    \"delisting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"honor\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kara\": [\n        \"NNP\"\n    ], \n    \"Names\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Kare\": [\n        \"NNP\"\n    ], \n    \"make-believe\": [\n        \"NN\"\n    ], \n    \"Karo\": [\n        \"NNP\"\n    ], \n    \"Karl\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"countian\": [\n        \"NN\"\n    ], \n    \"dieting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Neodata\": [\n        \"NNP\"\n    ], \n    \"Unimpressed\": [\n        \"JJ\"\n    ], \n    \"crackled\": [\n        \"VBD\"\n    ], \n    \"Amtran\": [\n        \"NNP\"\n    ], \n    \"Milne\": [\n        \"NNP\"\n    ], \n    \"crackles\": [\n        \"VBZ\"\n    ], \n    \"Undead\": [\n        \"NN\"\n    ], \n    \"PHOTOGRAPH\": [\n        \"NN\"\n    ], \n    \"cuffs\": [\n        \"NNS\"\n    ], \n    \"Non-cosmetic\": [\n        \"JJ\"\n    ], \n    \"anti-intellectual\": [\n        \"JJ\"\n    ], \n    \"overcurious\": [\n        \"JJ\"\n    ], \n    \"built-soap\": [\n        \"NN\"\n    ], \n    \"pinball\": [\n        \"NN\"\n    ], \n    \"resemblances\": [\n        \"NNS\"\n    ], \n    \"horseradish\": [\n        \"NN\"\n    ], \n    \"Lockman\": [\n        \"NNP\"\n    ], \n    \"Marino\": [\n        \"NNP\"\n    ], \n    \"depravity\": [\n        \"NN\"\n    ], \n    \"Tackle\": [\n        \"NNP\"\n    ], \n    \"Marine\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"cordon\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"PROSPECTS\": [\n        \"NNS\"\n    ], \n    \"Multimedia\": [\n        \"NNP\"\n    ], \n    \"poor-white-trash\": [\n        \"JJ\"\n    ], \n    \"emergency\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"McAlpine\": [\n        \"NNP\"\n    ], \n    \"Bellingham\": [\n        \"NNP\"\n    ], \n    \"abound\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lerman\": [\n        \"NNP\"\n    ], \n    \"Margery\": [\n        \"NNP\"\n    ], \n    \"emergence\": [\n        \"NN\"\n    ], \n    \"Gunfire\": [\n        \"NN\"\n    ], \n    \"Petrolane\": [\n        \"NNP\"\n    ], \n    \"marquee\": [\n        \"NN\"\n    ], \n    \"spine\": [\n        \"NN\"\n    ], \n    \"retrovirus\": [\n        \"NN\"\n    ], \n    \"marques\": [\n        \"NNS\"\n    ], \n    \"individuals\": [\n        \"NNS\"\n    ], \n    \"Wiesbaden\": [\n        \"NNP\"\n    ], \n    \"tribes\": [\n        \"NNS\"\n    ], \n    \"ExPe\": [\n        \"NNP\"\n    ], \n    \"metropolitanization\": [\n        \"NN\"\n    ], \n    \"velocities\": [\n        \"NNS\"\n    ], \n    \"methods\": [\n        \"NNS\"\n    ], \n    \"goddamn\": [\n        \"UH\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"necessaries\": [\n        \"NNS\"\n    ], \n    \"Bourse\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"methode\": [\n        \"NNP\"\n    ], \n    \"Norristown\": [\n        \"NNP\"\n    ], \n    \"Confidential\": [\n        \"NNP\"\n    ], \n    \"measurements\": [\n        \"NNS\"\n    ], \n    \"benefit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Nyack\": [\n        \"NNP\"\n    ], \n    \"Ravenswood\": [\n        \"NNP\"\n    ], \n    \"Heublein\": [\n        \"NNP\"\n    ], \n    \"SIERRA\": [\n        \"NNP\"\n    ], \n    \"Deloitte-Touche\": [\n        \"NNP\"\n    ], \n    \"seclusion\": [\n        \"NN\"\n    ], \n    \"Antigone\": [\n        \"NNP\"\n    ], \n    \"inserting\": [\n        \"VBG\"\n    ], \n    \"chrysanthemums\": [\n        \"NNS\"\n    ], \n    \"obscures\": [\n        \"VBZ\"\n    ], \n    \"luncheon-voucher\": [\n        \"NN\"\n    ], \n    \"LATE-BREAKING\": [\n        \"JJ\"\n    ], \n    \"Congressmen\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"home-audience\": [\n        \"NN\"\n    ], \n    \"obscured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Havilland\": [\n        \"NNP\"\n    ], \n    \"Sugary\": [\n        \"JJ\"\n    ], \n    \"bad-smelling\": [\n        \"JJ\"\n    ], \n    \"deserved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"epochal\": [\n        \"JJ\"\n    ], \n    \"Quivar\": [\n        \"NNP\"\n    ], \n    \"Sugars\": [\n        \"NNPS\"\n    ], \n    \"encylopedia\": [\n        \"NN\"\n    ], \n    \"wrinkles\": [\n        \"NNS\"\n    ], \n    \"Levki\": [\n        \"NNP\"\n    ], \n    \"Prescience\": [\n        \"NNP\"\n    ], \n    \"excised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"wrinkled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"torch-lit\": [\n        \"JJ\"\n    ], \n    \"eight-person\": [\n        \"JJ\"\n    ], \n    \"Bunch\": [\n        \"NN\"\n    ], \n    \"Globe-Democrat\": [\n        \"NNP\"\n    ], \n    \"Keizaikai\": [\n        \"NNP\"\n    ], \n    \"Debt-Burdened\": [\n        \"JJ\"\n    ], \n    \"Zola\": [\n        \"NNP\"\n    ], \n    \"readable\": [\n        \"JJ\"\n    ], \n    \"Shay\": [\n        \"NNP\"\n    ], \n    \"prodigious\": [\n        \"JJ\"\n    ], \n    \"Well-wishers\": [\n        \"NNS\"\n    ], \n    \"Altair\": [\n        \"NNP\"\n    ], \n    \"Balch\": [\n        \"NNP\"\n    ], \n    \"Shad\": [\n        \"NNP\"\n    ], \n    \"contributor\": [\n        \"NN\"\n    ], \n    \"HFC\": [\n        \"NNP\"\n    ], \n    \"Shan\": [\n        \"NNP\"\n    ], \n    \"enthusiasms\": [\n        \"NNS\"\n    ], \n    \"Used\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"span\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"thwump\": [\n        \"NN\"\n    ], \n    \"harnessed\": [\n        \"VBN\"\n    ], \n    \"specialty-retail\": [\n        \"JJ\"\n    ], \n    \"Brunsdon\": [\n        \"NNP\"\n    ], \n    \"sock\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"manufacturing-cost\": [\n        \"NN\"\n    ], \n    \"Feds\": [\n        \"NNPS\"\n    ], \n    \"prowling\": [\n        \"VBG\"\n    ], \n    \"spas\": [\n        \"NNS\"\n    ], \n    \"Sabras\": [\n        \"NNS\"\n    ], \n    \"Counties\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"considerably\": [\n        \"RB\"\n    ], \n    \"hot-cereals\": [\n        \"NNS\"\n    ], \n    \"Congresswoman\": [\n        \"NNP\"\n    ], \n    \"data-storage\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"deductions\": [\n        \"NNS\"\n    ], \n    \"Keynotes\": [\n        \"NNS\"\n    ], \n    \"hyping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sha.\": [\n        \"NNP\"\n    ], \n    \"considerable\": [\n        \"JJ\"\n    ], \n    \"nonrecourse\": [\n        \"JJ\"\n    ], \n    \"fades\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Afanasyev\": [\n        \"NNP\"\n    ], \n    \"positivist\": [\n        \"NN\"\n    ], \n    \"inhumane\": [\n        \"JJ\"\n    ], \n    \"Dolphin\": [\n        \"NNP\"\n    ], \n    \"Elegant\": [\n        \"NNP\"\n    ], \n    \"preemptive\": [\n        \"JJ\"\n    ], \n    \"Yemelyanenko\": [\n        \"NNP\"\n    ], \n    \"mortgage-securities\": [\n        \"JJ\"\n    ], \n    \"positivism\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"WWOR\": [\n        \"NNP\"\n    ], \n    \"Iguana\": [\n        \"NNP\"\n    ], \n    \"introjects\": [\n        \"NNS\"\n    ], \n    \"Gentility\": [\n        \"NN\"\n    ], \n    \"Sofia\": [\n        \"NNP\"\n    ], \n    \"trench\": [\n        \"NN\"\n    ], \n    \"Malkovich\": [\n        \"NNP\"\n    ], \n    \"unsafe\": [\n        \"JJ\"\n    ], \n    \"char\": [\n        \"VB\"\n    ], \n    \"chap\": [\n        \"NN\"\n    ], \n    \"diverse\": [\n        \"JJ\"\n    ], \n    \"chaw\": [\n        \"NN\"\n    ], \n    \"chat\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"surveying\": [\n        \"VBG\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"Sierra\": [\n        \"NNP\"\n    ], \n    \"shiningly\": [\n        \"RB\"\n    ], \n    \"Nast\": [\n        \"NNP\"\n    ], \n    \"Phillies\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"conceptions\": [\n        \"NNS\"\n    ], \n    \"subordinator\": [\n        \"NN\"\n    ], \n    \"hove\": [\n        \"VBD\"\n    ], \n    \"Arthurian\": [\n        \"JJ\"\n    ], \n    \"Gurion\": [\n        \"NNP\"\n    ], \n    \"Skelton\": [\n        \"NNP\"\n    ], \n    \"Smokey\": [\n        \"NNP\"\n    ], \n    \"Julius\": [\n        \"NNP\"\n    ], \n    \"gardenia\": [\n        \"NN\"\n    ], \n    \"Rutstein\": [\n        \"NNP\"\n    ], \n    \"long-lasting\": [\n        \"JJ\"\n    ], \n    \"Nakasone\": [\n        \"NNP\"\n    ], \n    \"Portrayal\": [\n        \"NN\"\n    ], \n    \"reinsurance\": [\n        \"NN\"\n    ], \n    \"BIA-COR\": [\n        \"NNP\"\n    ], \n    \"Indiana-Ohio\": [\n        \"NNP\"\n    ], \n    \"land\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"lana\": [\n        \"FW\"\n    ], \n    \"Gawdamighty\": [\n        \"UH\"\n    ], \n    \"electroplated\": [\n        \"VBN\"\n    ], \n    \"Leipzig\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"thrombosis\": [\n        \"NN\"\n    ], \n    \"Rheinstahl\": [\n        \"NNP\"\n    ], \n    \"Winnipesaukee\": [\n        \"NNP\"\n    ], \n    \"Radar\": [\n        \"NNP\"\n    ], \n    \"beverage\": [\n        \"NN\"\n    ], \n    \"Chicago-Helsinki\": [\n        \"NNP\"\n    ], \n    \"Secaucus\": [\n        \"NNP\"\n    ], \n    \"Jif\": [\n        \"NNP\"\n    ], \n    \"modernizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"dawning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"toted\": [\n        \"VBN\"\n    ], \n    \"Jin\": [\n        \"NNP\"\n    ], \n    \"railbirds\": [\n        \"NNS\"\n    ], \n    \"broaden\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Jim\": [\n        \"NNP\"\n    ], \n    \"totem\": [\n        \"NN\"\n    ], \n    \"cobalt\": [\n        \"NN\"\n    ], \n    \"family-community\": [\n        \"NN\"\n    ], \n    \"broader\": [\n        \"JJR\"\n    ], \n    \"amiss\": [\n        \"JJ\"\n    ], \n    \"Pesticides\": [\n        \"NNS\"\n    ], \n    \"Biogen\": [\n        \"NNP\"\n    ], \n    \"Notice\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Garson\": [\n        \"NNP\"\n    ], \n    \"Symptomatic\": [\n        \"JJ\"\n    ], \n    \"Youngest\": [\n        \"JJS\", \n        \"NNP\"\n    ], \n    \"rejoined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"contours\": [\n        \"NNS\"\n    ], \n    \"expeditious\": [\n        \"JJ\"\n    ], \n    \"resources\": [\n        \"NNS\"\n    ], \n    \"pinkish-white\": [\n        \"JJ\"\n    ], \n    \"boatload\": [\n        \"NN\"\n    ], \n    \"quadruples\": [\n        \"VBZ\"\n    ], \n    \"dissents\": [\n        \"NNS\"\n    ], \n    \"petitions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"quadrupled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"squirt\": [\n        \"NN\"\n    ], \n    \"Wakes\": [\n        \"NNP\"\n    ], \n    \"harbor\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"ICCO\": [\n        \"NNP\"\n    ], \n    \"whooping\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"funneling\": [\n        \"VBG\"\n    ], \n    \"Sabbath\": [\n        \"NNP\"\n    ], \n    \"damning\": [\n        \"VBG\"\n    ], \n    \"JACUZZI\": [\n        \"NNP\"\n    ], \n    \"world-class\": [\n        \"JJ\"\n    ], \n    \"twice-yearly\": [\n        \"JJ\"\n    ], \n    \"lesbianism\": [\n        \"NN\"\n    ], \n    \"Sodium\": [\n        \"NN\"\n    ], \n    \"Spending\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Richelieu\": [\n        \"NNP\"\n    ], \n    \"forthrightness\": [\n        \"NN\"\n    ], \n    \"Mathematically\": [\n        \"RB\"\n    ], \n    \"crook\": [\n        \"NN\"\n    ], \n    \"Broadcasts\": [\n        \"NNS\"\n    ], \n    \"croon\": [\n        \"VB\"\n    ], \n    \"Wellsley\": [\n        \"NNP\"\n    ], \n    \"drought-related\": [\n        \"JJ\"\n    ], \n    \"Campaigne\": [\n        \"NNP\"\n    ], \n    \"Schmedel\": [\n        \"NNP\"\n    ], \n    \"Tauke\": [\n        \"NNP\"\n    ], \n    \"industry-standard\": [\n        \"JJ\"\n    ], \n    \"henceforth\": [\n        \"RB\"\n    ], \n    \"turnaround\": [\n        \"NN\"\n    ], \n    \"advantageously\": [\n        \"RB\"\n    ], \n    \"much-coveted\": [\n        \"JJ\"\n    ], \n    \"Freedom\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dupont\": [\n        \"NNP\"\n    ], \n    \"Dierker\": [\n        \"NNP\"\n    ], \n    \"Orfeo\": [\n        \"NNP\"\n    ], \n    \"TECHNOLOGY\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Greek-Americans\": [\n        \"NNPS\"\n    ], \n    \"keddah\": [\n        \"FW\"\n    ], \n    \"Trumbull\": [\n        \"NNP\"\n    ], \n    \"unwittingly\": [\n        \"RB\"\n    ], \n    \"Zaporogian\": [\n        \"NNP\"\n    ], \n    \"headline\": [\n        \"NN\"\n    ], \n    \"KV\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"survey\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"thatt\": [\n        \"IN\"\n    ], \n    \"NRLDA\": [\n        \"NNP\"\n    ], \n    \"A.G.\": [\n        \"NNP\"\n    ], \n    \"steamers\": [\n        \"NNS\"\n    ], \n    \"Greenwich\": [\n        \"NNP\"\n    ], \n    \"INSTITUTE\": [\n        \"NNP\"\n    ], \n    \"Feuchtwanger\": [\n        \"NNP\"\n    ], \n    \"lymphocytic\": [\n        \"JJ\"\n    ], \n    \"wishywashy\": [\n        \"NN\"\n    ], \n    \"dumbest\": [\n        \"JJS\"\n    ], \n    \"Paster\": [\n        \"NNP\"\n    ], \n    \"Kleinman\": [\n        \"NNP\"\n    ], \n    \"Maiorana\": [\n        \"NNP\"\n    ], \n    \"virus-boosting\": [\n        \"JJ\"\n    ], \n    \"Lamberth\": [\n        \"NNP\"\n    ], \n    \"Mandresh\": [\n        \"NNP\"\n    ], \n    \"guideline\": [\n        \"NN\"\n    ], \n    \"Cadwell\": [\n        \"NNP\"\n    ], \n    \"L.T.\": [\n        \"NNP\"\n    ], \n    \"Wedding\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"binges\": [\n        \"NNS\"\n    ], \n    \"Suspected\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"vasodilator\": [\n        \"NN\"\n    ], \n    \"nonpolitical\": [\n        \"JJ\"\n    ], \n    \"BOND\": [\n        \"NN\"\n    ], \n    \"pencil\": [\n        \"NN\"\n    ], \n    \"Erlenmeyer\": [\n        \"NN\"\n    ], \n    \"By-Products\": [\n        \"NNP\"\n    ], \n    \"baby\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Reactors\": [\n        \"NNP\"\n    ], \n    \"housebreakers\": [\n        \"NNS\"\n    ], \n    \"enzymatic\": [\n        \"JJ\"\n    ], \n    \"attention...\": [\n        \":\"\n    ], \n    \"twenty-dollar\": [\n        \"JJ\"\n    ], \n    \"clients\": [\n        \"NNS\"\n    ], \n    \"Hideaki\": [\n        \"NNP\"\n    ], \n    \"five-month\": [\n        \"JJ\"\n    ], \n    \"back-dating\": [\n        \"VBG\"\n    ], \n    \"Offenses\": [\n        \"NNS\"\n    ], \n    \"hauls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"FRAUDS\": [\n        \"NNS\"\n    ], \n    \"process\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"lock\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"coolness\": [\n        \"NN\"\n    ], \n    \"loco\": [\n        \"FW\"\n    ], \n    \"Hetman\": [\n        \"NNP\"\n    ], \n    \"Lender\": [\n        \"NNP\"\n    ], \n    \"bond-underwriting\": [\n        \"JJ\"\n    ], \n    \"nears\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"uncompensated\": [\n        \"JJ\"\n    ], \n    \"engagingly\": [\n        \"RB\"\n    ], \n    \"Agricole\": [\n        \"NNP\"\n    ], \n    \"all-American\": [\n        \"JJ\"\n    ], \n    \"educational\": [\n        \"JJ\"\n    ], \n    \"Agricola\": [\n        \"NNP\"\n    ], \n    \"paled\": [\n        \"VBD\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"Eldred\": [\n        \"NNP\"\n    ], \n    \"Millicent\": [\n        \"NNP\"\n    ], \n    \"procured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nuggets\": [\n        \"NNPS\"\n    ], \n    \"bilingual\": [\n        \"JJ\"\n    ], \n    \"hormones\": [\n        \"NNS\"\n    ], \n    \"burley\": [\n        \"NN\"\n    ], \n    \"Friends\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"pales\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Nathan\": [\n        \"NNP\"\n    ], \n    \"recorders.\": [\n        \"NNS\"\n    ], \n    \"summonses\": [\n        \"NNS\"\n    ], \n    \"a-gracious\": [\n        \"JJ\"\n    ], \n    \"terrors\": [\n        \"NNS\"\n    ], \n    \"Early-retirement\": [\n        \"NN\"\n    ], \n    \"Retardation\": [\n        \"NNP\"\n    ], \n    \"Brest-Silevniov\": [\n        \"NNP\"\n    ], \n    \"Gospel\": [\n        \"NNP\"\n    ], \n    \"Tinsman\": [\n        \"NNP\"\n    ], \n    \"Owens-Ilinois\": [\n        \"NNP\"\n    ], \n    \"Marlowe\": [\n        \"NNP\"\n    ], \n    \"realized\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"regains\": [\n        \"VBZ\"\n    ], \n    \"Sitco\": [\n        \"NNP\"\n    ], \n    \"Sanwa\": [\n        \"NNP\"\n    ], \n    \"robot\": [\n        \"NN\"\n    ], \n    \"oil-trading\": [\n        \"NN\"\n    ], \n    \"Oct.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Moet-Hennessy\": [\n        \"NNP\"\n    ], \n    \"realizes\": [\n        \"VBZ\"\n    ], \n    \"pungently\": [\n        \"RB\"\n    ], \n    \"presuppose\": [\n        \"VBP\"\n    ], \n    \"Good-by\": [\n        \"UH\"\n    ], \n    \"thrift-holding\": [\n        \"JJ\"\n    ], \n    \"holds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"folksongs\": [\n        \"NNS\"\n    ], \n    \"mute\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"roll-call\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Committeeman\": [\n        \"NNP\"\n    ], \n    \"directs\": [\n        \"VBZ\"\n    ], \n    \"Campbell-Mithun\": [\n        \"NNP\"\n    ], \n    \"Ads\": [\n        \"NNS\"\n    ], \n    \"perfect\": [\n        \"JJ\"\n    ], \n    \"byline\": [\n        \"NN\"\n    ], \n    \"broiling\": [\n        \"VBG\"\n    ], \n    \"Scientific\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kodaks\": [\n        \"NNPS\"\n    ], \n    \"varies\": [\n        \"VBZ\"\n    ], \n    \"Brooks\": [\n        \"NNP\"\n    ], \n    \"Cabinet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"meantime\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"thieves\": [\n        \"NNS\"\n    ], \n    \"Brooke\": [\n        \"NNP\"\n    ], \n    \"hijackers\": [\n        \"NNS\"\n    ], \n    \"morgen\": [\n        \"FW\"\n    ], \n    \"vicariously\": [\n        \"RB\"\n    ], \n    \"Courter...\": [\n        \":\"\n    ], \n    \"Hungry\": [\n        \"JJ\"\n    ], \n    \"astronomically\": [\n        \"RB\"\n    ], \n    \"beer-running\": [\n        \"NN\"\n    ], \n    \"seawater\": [\n        \"NN\"\n    ], \n    \"caucuses\": [\n        \"NNS\"\n    ], \n    \"realize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"disgorgement\": [\n        \"NN\"\n    ], \n    \"Purnick\": [\n        \"NNP\"\n    ], \n    \"blown-up\": [\n        \"VBN\"\n    ], \n    \"autistic\": [\n        \"JJ\"\n    ], \n    \"ruefully\": [\n        \"RB\"\n    ], \n    \"Caronia\": [\n        \"NNP\"\n    ], \n    \"Emmanuel\": [\n        \"NNP\"\n    ], \n    \"sneezed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"group-identity\": [\n        \"NN\"\n    ], \n    \"candlewick\": [\n        \"NN\"\n    ], \n    \"electrically\": [\n        \"RB\"\n    ], \n    \"All-You-Can-Eat\": [\n        \"NNP\"\n    ], \n    \"Talmo\": [\n        \"NNP\"\n    ], \n    \"glasses\": [\n        \"NNS\"\n    ], \n    \"Friedmann\": [\n        \"NNP\"\n    ], \n    \"suitors\": [\n        \"NNS\"\n    ], \n    \"RIVALRIES\": [\n        \"NNS\"\n    ], \n    \"Organisation\": [\n        \"NNP\"\n    ], \n    \"bump\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Aniseikonic\": [\n        \"JJ\"\n    ], \n    \"Chehel\": [\n        \"NNP\"\n    ], \n    \"deficiency\": [\n        \"NN\"\n    ], \n    \"Carbondale\": [\n        \"NNP\"\n    ], \n    \"VAX9000\": [\n        \"NN\"\n    ], \n    \"Vermonters\": [\n        \"NNPS\"\n    ], \n    \"Viren\": [\n        \"NNP\"\n    ], \n    \"fundamentally\": [\n        \"RB\"\n    ], \n    \"Welborn\": [\n        \"NNP\"\n    ], \n    \"Geocentricism\": [\n        \"NN\"\n    ], \n    \"rigging\": [\n        \"NN\"\n    ], \n    \"boutique\": [\n        \"NN\"\n    ], \n    \"Bassis\": [\n        \"NNPS\"\n    ], \n    \"M.S.\": [\n        \"NNP\"\n    ], \n    \"bicameral\": [\n        \"JJ\"\n    ], \n    \"anti-AIDS\": [\n        \"JJ\"\n    ], \n    \"Dirvin\": [\n        \"NNP\"\n    ], \n    \"unprepared\": [\n        \"JJ\"\n    ], \n    \"highs\": [\n        \"NNS\"\n    ], \n    \"Karene\": [\n        \"NNP\"\n    ], \n    \"news-weeklies\": [\n        \"NNS\"\n    ], \n    \"inferiority\": [\n        \"NN\"\n    ], \n    \"Flake\": [\n        \"NN\"\n    ], \n    \"Emery\": [\n        \"NNP\"\n    ], \n    \"Expecting\": [\n        \"VBG\"\n    ], \n    \"disintegrating\": [\n        \"VBG\"\n    ], \n    \"Dives\": [\n        \"NNS\"\n    ], \n    \"Passing\": [\n        \"VBG\", \n        \"VB\"\n    ], \n    \"once-a-month\": [\n        \"JJ\"\n    ], \n    \"criss-crossing\": [\n        \"NN\"\n    ], \n    \"dejeuners\": [\n        \"FW\"\n    ], \n    \"gunk\": [\n        \"NN\"\n    ], \n    \"mainland\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"transferable\": [\n        \"JJ\"\n    ], \n    \"area\": [\n        \"NN\"\n    ], \n    \"Jesus\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"chilly\": [\n        \"JJ\"\n    ], \n    \"length\": [\n        \"NN\"\n    ], \n    \"ratification\": [\n        \"NN\"\n    ], \n    \"Manufactured\": [\n        \"JJ\"\n    ], \n    \"chills\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Aubr.\": [\n        \"NNP\"\n    ], \n    \"untested\": [\n        \"JJ\"\n    ], \n    \"whiners\": [\n        \"NNS\"\n    ], \n    \"Gosheim\": [\n        \"NNP\"\n    ], \n    \"Fourth-of-July\": [\n        \"NNP\"\n    ], \n    \"scene\": [\n        \"NN\"\n    ], \n    \"Forecast\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Coombs\": [\n        \"NNP\"\n    ], \n    \"Krispies\": [\n        \"NNPS\"\n    ], \n    \"affliction\": [\n        \"NN\"\n    ], \n    \"starker\": [\n        \"JJR\"\n    ], \n    \"scent\": [\n        \"NN\"\n    ], \n    \"NZI\": [\n        \"NNP\"\n    ], \n    \"Ries\": [\n        \"NNP\"\n    ], \n    \"Iraj\": [\n        \"NNP\"\n    ], \n    \"Iran\": [\n        \"NNP\"\n    ], \n    \"cinder-block\": [\n        \"JJ\"\n    ], \n    \"festival\": [\n        \"NN\"\n    ], \n    \"Lengwin\": [\n        \"NNP\"\n    ], \n    \"Doosan\": [\n        \"NNP\"\n    ], \n    \"backdoor\": [\n        \"JJ\"\n    ], \n    \"sergeant\": [\n        \"NN\"\n    ], \n    \"SHAKE\": [\n        \"VB\"\n    ], \n    \"Iraq\": [\n        \"NNP\"\n    ], \n    \"denominators\": [\n        \"NNS\"\n    ], \n    \"pervasive\": [\n        \"JJ\"\n    ], \n    \"Firearms\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"burglarized\": [\n        \"VBN\"\n    ], \n    \"laymen\": [\n        \"NNS\"\n    ], \n    \"pressurized\": [\n        \"VBN\"\n    ], \n    \"Barletta\": [\n        \"NNP\"\n    ], \n    \"recurrences\": [\n        \"NNS\"\n    ], \n    \"Waycross\": [\n        \"NNP\"\n    ], \n    \"Veryfine\": [\n        \"NNP\"\n    ], \n    \"Hastings\": [\n        \"NNP\"\n    ], \n    \"seed-capital\": [\n        \"JJ\"\n    ], \n    \"egregious\": [\n        \"JJ\"\n    ], \n    \"roulette\": [\n        \"NN\"\n    ], \n    \"big-fee\": [\n        \"JJ\"\n    ], \n    \"gentile\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Goupil\": [\n        \"NNP\"\n    ], \n    \"Parella\": [\n        \"NNP\"\n    ], \n    \"student-test\": [\n        \"JJ\"\n    ], \n    \"U.S.-supplied\": [\n        \"JJ\"\n    ], \n    \"one-country\": [\n        \"JJ\"\n    ], \n    \"Bolingbroke\": [\n        \"NNP\"\n    ], \n    \"seethes\": [\n        \"VBZ\"\n    ], \n    \"Finsbury\": [\n        \"NNP\"\n    ], \n    \"Jeeps\": [\n        \"NNS\"\n    ], \n    \"Rowe\": [\n        \"NNP\"\n    ], \n    \"ponders\": [\n        \"VBZ\"\n    ], \n    \"dishes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"prevayle\": [\n        \"VB\"\n    ], \n    \"uncalled\": [\n        \"JJ\"\n    ], \n    \"Fluor\": [\n        \"NNP\"\n    ], \n    \"Gazinosu\": [\n        \"NNP\"\n    ], \n    \"Bay-area\": [\n        \"JJ\"\n    ], \n    \"Jeep\\\\\": [\n        \"NNP\"\n    ], \n    \"worldwide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Pierce\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"khan\": [\n        \"FW\"\n    ], \n    \"Gumkowski\": [\n        \"NNP\"\n    ], \n    \"essential...\": [\n        \":\"\n    ], \n    \"Samaritan\": [\n        \"NNP\"\n    ], \n    \"Ob-Irtysh\": [\n        \"NNP\"\n    ], \n    \"Fritzsche\": [\n        \"NNP\"\n    ], \n    \"Hiker\": [\n        \"NN\"\n    ], \n    \"petals\": [\n        \"NNS\"\n    ], \n    \"scabrous\": [\n        \"JJ\"\n    ], \n    \"Feliciano\": [\n        \"NNP\"\n    ], \n    \"Clinico-pathologic\": [\n        \"NNP\"\n    ], \n    \"Gaskin\": [\n        \"NNP\"\n    ], \n    \"Reserve\": [\n        \"NNP\"\n    ], \n    \"Bio-Dynamic\": [\n        \"NNP\"\n    ], \n    \"bleaker\": [\n        \"JJR\"\n    ], \n    \"Balsbaugh\": [\n        \"NNP\"\n    ], \n    \"thanksgiving\": [\n        \"NN\"\n    ], \n    \"program-trading\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"perceiving\": [\n        \"VBG\"\n    ], \n    \"bartenders\": [\n        \"NNS\"\n    ], \n    \"woolworkers\": [\n        \"NNS\"\n    ], \n    \"Tender\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Tussle\": [\n        \"NNP\"\n    ], \n    \"rainbows\": [\n        \"NNS\"\n    ], \n    \"woolly\": [\n        \"JJ\"\n    ], \n    \"employee-benefit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"greenhouse\": [\n        \"NN\"\n    ], \n    \"titian-haired\": [\n        \"JJ\"\n    ], \n    \"nominally\": [\n        \"RB\"\n    ], \n    \"Pennington\": [\n        \"NNP\"\n    ], \n    \"jay\": [\n        \"NN\"\n    ], \n    \"Euro-this\": [\n        \"NN\"\n    ], \n    \"jar\": [\n        \"NN\"\n    ], \n    \"Chromspun\": [\n        \"NNP\"\n    ], \n    \"Walton\": [\n        \"NNP\"\n    ], \n    \"bombings\": [\n        \"NNS\"\n    ], \n    \"Ultramar\": [\n        \"NNP\"\n    ], \n    \"jai\": [\n        \"FW\"\n    ], \n    \"jag\": [\n        \"NN\"\n    ], \n    \"untellable\": [\n        \"JJ\"\n    ], \n    \"jab\": [\n        \"NN\"\n    ], \n    \"Nightline\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"debtor-in-possession\": [\n        \"NN\"\n    ], \n    \"antagonism\": [\n        \"NN\"\n    ], \n    \"Okies\": [\n        \"NNP\"\n    ], \n    \"Dryden\": [\n        \"NNP\"\n    ], \n    \"WARNER-LAMBERT\": [\n        \"NNP\"\n    ], \n    \"sports-related\": [\n        \"JJ\"\n    ], \n    \"wing-shooting\": [\n        \"NN\"\n    ], \n    \"Bonhoffer\": [\n        \"NNP\"\n    ], \n    \"antagonist\": [\n        \"NN\"\n    ], \n    \"symbols\": [\n        \"NNS\"\n    ], \n    \"determinants\": [\n        \"NNS\"\n    ], \n    \"wynne\": [\n        \"VB\"\n    ], \n    \"BLAME\": [\n        \"VB\"\n    ], \n    \"lower-middle\": [\n        \"JJ\"\n    ], \n    \"rapped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"raceway\": [\n        \"NN\"\n    ], \n    \"exude\": [\n        \"VBP\"\n    ], \n    \"Brochures\": [\n        \"NNS\"\n    ], \n    \"strengthened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Heller\": [\n        \"NNP\"\n    ], \n    \"tax-shelter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"allusion\": [\n        \"NN\"\n    ], \n    \"Pt\": [\n        \"NNP\"\n    ], \n    \"faier\": [\n        \"RB\"\n    ], \n    \"appliance\": [\n        \"NN\"\n    ], \n    \"differentials\": [\n        \"NNS\"\n    ], \n    \"zoologist\": [\n        \"NN\"\n    ], \n    \"Pa\": [\n        \"NNP\"\n    ], \n    \"Adoption\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Pe\": [\n        \"NNP\"\n    ], \n    \"glass-bottom\": [\n        \"JJ\"\n    ], \n    \"Pi\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Po\": [\n        \"NNP\"\n    ], \n    \"airmail\": [\n        \"NN\"\n    ], \n    \"Pm\": [\n        \"NN\"\n    ], \n    \"PR\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Consitutional\": [\n        \"JJ\"\n    ], \n    \"PQ\": [\n        \"NN\"\n    ], \n    \"Rheims\": [\n        \"NNP\"\n    ], \n    \"insulting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Iwo\": [\n        \"NNP\"\n    ], \n    \"self-taught\": [\n        \"JJ\"\n    ], \n    \"PX\": [\n        \"NNP\"\n    ], \n    \"Aloys\": [\n        \"NNP\"\n    ], \n    \"thermonuclear\": [\n        \"JJ\"\n    ], \n    \"P\\\\\": [\n        \"NNP\"\n    ], \n    \"PC\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"PA\": [\n        \"NNP\"\n    ], \n    \"PF\": [\n        \"NNP\"\n    ], \n    \"A135\": [\n        \"NN\"\n    ], \n    \"Dyna\": [\n        \"NNP\"\n    ], \n    \"truncheons\": [\n        \"NNS\"\n    ], \n    \"Jackman\": [\n        \"NNP\"\n    ], \n    \"Vastly\": [\n        \"RB\"\n    ], \n    \"perennials\": [\n        \"NNS\"\n    ], \n    \"high-topped\": [\n        \"JJ\"\n    ], \n    \"Kitchen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Harty\": [\n        \"NNP\"\n    ], \n    \"Hartz\": [\n        \"NNP\"\n    ], \n    \"toner\": [\n        \"NN\"\n    ], \n    \"Hartt\": [\n        \"NNP\"\n    ], \n    \"Domesday\": [\n        \"NNP\"\n    ], \n    \"Kimbolton\": [\n        \"NNP\"\n    ], \n    \"FACES\": [\n        \"VBZ\"\n    ], \n    \"souvenir\": [\n        \"NN\"\n    ], \n    \"P.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"factory-jobs\": [\n        \"NNS\"\n    ], \n    \"slitter\": [\n        \"NN\"\n    ], \n    \"Widowers\": [\n        \"NNS\"\n    ], \n    \"Istiqlal\": [\n        \"NNP\"\n    ], \n    \"perfidious\": [\n        \"JJ\"\n    ], \n    \"Clearwater\": [\n        \"NNP\"\n    ], \n    \"doorway\": [\n        \"NN\"\n    ], \n    \"Cows\": [\n        \"NNS\"\n    ], \n    \"unearthing\": [\n        \"VBG\"\n    ], \n    \"Barbie\": [\n        \"NNP\"\n    ], \n    \"carbonyl\": [\n        \"NN\"\n    ], \n    \"roughed\": [\n        \"VBD\"\n    ], \n    \"milllion\": [\n        \"NN\"\n    ], \n    \"Gooding\": [\n        \"NNP\"\n    ], \n    \"Featherston\": [\n        \"NNP\"\n    ], \n    \"Bayou\": [\n        \"NNP\"\n    ], \n    \"Moderate\": [\n        \"JJ\"\n    ], \n    \"undergraduate\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"rougher\": [\n        \"JJR\"\n    ], \n    \"torsion\": [\n        \"NN\"\n    ], \n    \"CR103\": [\n        \"NNP\"\n    ], \n    \"door-to-door\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"debs\": [\n        \"NNS\"\n    ], \n    \"Sophisticated\": [\n        \"JJ\"\n    ], \n    \"goverment.\": [\n        \"NN\"\n    ], \n    \"DJS\\\\/Inverness\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Istat\": [\n        \"NNP\"\n    ], \n    \">\": [\n        \"SYM\", \n        \"NN\"\n    ], \n    \"sheepish\": [\n        \"JJ\"\n    ], \n    \"valuations\": [\n        \"NNS\"\n    ], \n    \"swarmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Tohmatsu\": [\n        \"NNP\"\n    ], \n    \"McKeown\": [\n        \"NNP\"\n    ], \n    \"Gossnab\": [\n        \"NNP\"\n    ], \n    \"Epiphany\": [\n        \"NNP\"\n    ], \n    \"shiftless\": [\n        \"JJ\"\n    ], \n    \"Sturges\": [\n        \"NNP\"\n    ], \n    \"purposively\": [\n        \"RB\"\n    ], \n    \"BELEAGUERED\": [\n        \"JJ\"\n    ], \n    \"lecherous\": [\n        \"JJ\"\n    ], \n    \"eraser-fitted\": [\n        \"JJ\"\n    ], \n    \"Number\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Quiksilver\": [\n        \"NNP\"\n    ], \n    \"U.S.-developed\": [\n        \"JJ\"\n    ], \n    \"Battle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deductible\": [\n        \"JJ\"\n    ], \n    \"fielding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Schopenhauer\": [\n        \"NNP\"\n    ], \n    \"stuffing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Likening\": [\n        \"VBG\"\n    ], \n    \"playgrounds\": [\n        \"NNS\"\n    ], \n    \"bioequivalent\": [\n        \"JJ\"\n    ], \n    \"Pipes\": [\n        \"NNP\"\n    ], \n    \"Piper\": [\n        \"NNP\"\n    ], \n    \"until...\": [\n        \":\"\n    ], \n    \"agonizes\": [\n        \"VBZ\"\n    ], \n    \"Fuel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Adequate\": [\n        \"JJ\"\n    ], \n    \"passbook\": [\n        \"NN\"\n    ], \n    \"merest\": [\n        \"JJS\"\n    ], \n    \"H&M\": [\n        \"NNP\"\n    ], \n    \"Nineteen-sixty\": [\n        \"NNP\"\n    ], \n    \"denial\": [\n        \"NN\"\n    ], \n    \"vocabulary\": [\n        \"NN\"\n    ], \n    \"Donbas\": [\n        \"NNP\"\n    ], \n    \"marketin\": [\n        \"NN\"\n    ], \n    \"complemented\": [\n        \"VBD\"\n    ], \n    \"Diplomatic\": [\n        \"JJ\"\n    ], \n    \"unsympathetic\": [\n        \"JJ\"\n    ], \n    \"wipeout\": [\n        \"NN\"\n    ], \n    \"sunshades\": [\n        \"NNS\"\n    ], \n    \"colts\": [\n        \"NNS\"\n    ], \n    \"identity\": [\n        \"NN\"\n    ], \n    \"Lai\": [\n        \"NNP\"\n    ], \n    \"audit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Joking\": [\n        \"VBG\"\n    ], \n    \"shotgun\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"illusiveness\": [\n        \"NN\"\n    ], \n    \"tropocollagen\": [\n        \"NN\"\n    ], \n    \"patterns\": [\n        \"NNS\"\n    ], \n    \"Colombo\": [\n        \"NNP\"\n    ], \n    \"Artists\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"diversify\": [\n        \"VB\"\n    ], \n    \"audio\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"north-south\": [\n        \"JJ\"\n    ], \n    \"bankruptcy-proceedings\": [\n        \"NNS\"\n    ], \n    \"corporate-wide\": [\n        \"JJ\"\n    ], \n    \"Kekisheva\": [\n        \"NNP\"\n    ], \n    \"well-financed\": [\n        \"JJ\"\n    ], \n    \"slitters\": [\n        \"NNS\"\n    ], \n    \"zotls\": [\n        \"NNS\"\n    ], \n    \"Wingman\": [\n        \"NN\"\n    ], \n    \"clocks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"floes\": [\n        \"NNS\"\n    ], \n    \"BCI\": [\n        \"NNP\"\n    ], \n    \"web\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Specthrie\": [\n        \"NNP\"\n    ], \n    \"wee\": [\n        \"JJ\", \n        \"PRP\"\n    ], \n    \"hauntingly\": [\n        \"RB\"\n    ], \n    \"Contacted\": [\n        \"VBN\"\n    ], \n    \"wei\": [\n        \"NNS\"\n    ], \n    \"Tact\": [\n        \"NN\"\n    ], \n    \"GTI\": [\n        \"NNP\"\n    ], \n    \"undulating\": [\n        \"JJ\"\n    ], \n    \"Tack\": [\n        \"NN\"\n    ], \n    \"fly-dotted\": [\n        \"JJ\"\n    ], \n    \"reckless-endangerment\": [\n        \"NN\"\n    ], \n    \"Taco\": [\n        \"NNP\"\n    ], \n    \"villagers\": [\n        \"NNS\"\n    ], \n    \"PC9801LX5C\": [\n        \"NNP\"\n    ], \n    \"Garn\": [\n        \"NNP\"\n    ], \n    \"Ninomiya\": [\n        \"NNP\"\n    ], \n    \"Nipponese\": [\n        \"JJ\"\n    ], \n    \"biologists\": [\n        \"NNS\"\n    ], \n    \"archeological\": [\n        \"JJ\"\n    ], \n    \"Stalone\": [\n        \"NNP\"\n    ], \n    \"wishes..\": [\n        \"NN\"\n    ], \n    \"capitulation\": [\n        \"NN\"\n    ], \n    \"Spendthrift\": [\n        \"NNP\"\n    ], \n    \"tick\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"peeked\": [\n        \"VBD\"\n    ], \n    \"pies\": [\n        \"NNS\"\n    ], \n    \"DesRosiers\": [\n        \"NNP\"\n    ], \n    \"Sopsaisana\": [\n        \"NNP\"\n    ], \n    \"Pirates\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Ethel-Jane\": [\n        \"NNP\"\n    ], \n    \"truculence\": [\n        \"NN\"\n    ], \n    \"DuPont\": [\n        \"NNP\"\n    ], \n    \"vistors\": [\n        \"NNS\"\n    ], \n    \"undid\": [\n        \"VBD\"\n    ], \n    \"flickering\": [\n        \"VBG\"\n    ], \n    \"now-notorious\": [\n        \"JJ\"\n    ], \n    \"teratologies\": [\n        \"NNS\"\n    ], \n    \"FIRM\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"breakables\": [\n        \"NNS\"\n    ], \n    \"Ladenburg\": [\n        \"NNP\"\n    ], \n    \"actuarial\": [\n        \"JJ\"\n    ], \n    \"Rojo\": [\n        \"NNP\"\n    ], \n    \"cider\": [\n        \"NN\"\n    ], \n    \"immortal\": [\n        \"JJ\"\n    ], \n    \"VO5\": [\n        \"NNP\"\n    ], \n    \"scatters\": [\n        \"VBZ\"\n    ], \n    \"choosing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"flush\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"G-2\": [\n        \"NN\"\n    ], \n    \"Hutchison\": [\n        \"NNP\"\n    ], \n    \"Meridian\": [\n        \"NNP\"\n    ], \n    \"Christmas-time\": [\n        \"JJ\"\n    ], \n    \"contested\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"B.C.\": [\n        \"NN\", \n        \"FW\", \n        \"NNP\"\n    ], \n    \"just-in-time\": [\n        \"JJ\"\n    ], \n    \"Recurring\": [\n        \"VBG\"\n    ], \n    \"mementos\": [\n        \"NNS\"\n    ], \n    \"sayonara\": [\n        \"FW\"\n    ], \n    \"Elshtain\": [\n        \"NNP\"\n    ], \n    \"e-Estimated\": [\n        \"VBN\"\n    ], \n    \"Gruntal\": [\n        \"NNP\"\n    ], \n    \"nonsmokers\": [\n        \"NNS\"\n    ], \n    \"freeze-out\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hemweg\": [\n        \"NNP\"\n    ], \n    \"pressure\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"wields\": [\n        \"VBZ\"\n    ], \n    \"SABLE\": [\n        \"NNP\"\n    ], \n    \"Christian-Democratic\": [\n        \"NNP\"\n    ], \n    \"infiltrating\": [\n        \"VBG\"\n    ], \n    \"SPECIALIZED\": [\n        \"JJ\"\n    ], \n    \"coldly\": [\n        \"RB\"\n    ], \n    \"homemaker\": [\n        \"NN\"\n    ], \n    \"illegalities\": [\n        \"NNS\"\n    ], \n    \"lifestyle\": [\n        \"NN\"\n    ], \n    \"VOA\": [\n        \"NNP\"\n    ], \n    \"outshines\": [\n        \"VBZ\"\n    ], \n    \"Viruses\": [\n        \"NNS\"\n    ], \n    \"Trinkaus\": [\n        \"NNP\"\n    ], \n    \"Diery\": [\n        \"NNP\"\n    ], \n    \"flair\": [\n        \"NN\"\n    ], \n    \"documentary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Margeotes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"miscegenation\": [\n        \"NN\"\n    ], \n    \"f-plane\": [\n        \"NN\"\n    ], \n    \"Glazier\": [\n        \"NNP\"\n    ], \n    \"Greenville\": [\n        \"NNP\"\n    ], \n    \"Schreyer\": [\n        \"NNP\"\n    ], \n    \"gastronomy\": [\n        \"NN\"\n    ], \n    \"VENTURE\": [\n        \"NN\"\n    ], \n    \"Sofitel\": [\n        \"NNP\"\n    ], \n    \"Mood\": [\n        \"NNP\"\n    ], \n    \"advert\": [\n        \"NN\"\n    ], \n    \"Sacremento\": [\n        \"NNP\"\n    ], \n    \"watchman\": [\n        \"NN\"\n    ], \n    \"heresy\": [\n        \"NN\"\n    ], \n    \"riflemen\": [\n        \"NNS\"\n    ], \n    \"indoctrinated\": [\n        \"VBN\"\n    ], \n    \"boites\": [\n        \"NNS\"\n    ], \n    \"bagged\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Negotiation\": [\n        \"NN\"\n    ], \n    \"Balafrej\": [\n        \"NNP\"\n    ], \n    \"yarns\": [\n        \"NNS\"\n    ], \n    \"stonelike\": [\n        \"JJ\"\n    ], \n    \"Contract\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Winzer\": [\n        \"NNP\"\n    ], \n    \"Cooke\": [\n        \"NNP\"\n    ], \n    \"convenience-food\": [\n        \"NN\"\n    ], \n    \"one-week-old\": [\n        \"JJ\"\n    ], \n    \"nation-wide\": [\n        \"JJ\"\n    ], \n    \"places\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Marxist-leaning\": [\n        \"NNP\"\n    ], \n    \"placed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gloated\": [\n        \"VBD\"\n    ], \n    \"Bank-Texas\": [\n        \"NNP\"\n    ], \n    \"Executive\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Berkshire\": [\n        \"NNP\"\n    ], \n    \"nurses\": [\n        \"NNS\"\n    ], \n    \"is...\": [\n        \":\"\n    ], \n    \"Cassa\": [\n        \"NNP\"\n    ], \n    \"hearers\": [\n        \"NNS\"\n    ], \n    \"reciprocates\": [\n        \"VBZ\"\n    ], \n    \"disengagement\": [\n        \"NN\"\n    ], \n    \"Darwin\": [\n        \"NNP\"\n    ], \n    \"nursed\": [\n        \"VBD\"\n    ], \n    \"effected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"CFM56-56s\": [\n        \"NNS\"\n    ], \n    \"Fate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deadly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Critic\": [\n        \"NNP\"\n    ], \n    \"lately\": [\n        \"RB\"\n    ], \n    \"Fats\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"compares\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"behold\": [\n        \"VB\"\n    ], \n    \"Well-intentioned\": [\n        \"JJ\"\n    ], \n    \"illusion\": [\n        \"NN\"\n    ], \n    \"February\": [\n        \"NNP\"\n    ], \n    \"repeat\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Inheriting\": [\n        \"VBG\"\n    ], \n    \"worker\": [\n        \"NN\"\n    ], \n    \"Ineffective\": [\n        \"JJ\"\n    ], \n    \"tinier\": [\n        \"NN\"\n    ], \n    \"multinationals\": [\n        \"NNS\"\n    ], \n    \"repeal\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"turboprops\": [\n        \"NNS\"\n    ], \n    \"searches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"searcher\": [\n        \"NN\"\n    ], \n    \"Odd-year\": [\n        \"JJ\"\n    ], \n    \"misconstructions\": [\n        \"NNS\"\n    ], \n    \"perpendicularly\": [\n        \"RB\"\n    ], \n    \"searched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"gardens\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"c-Excludes\": [\n        \"VB\"\n    ], \n    \"Deauville\": [\n        \"NNP\"\n    ], \n    \"Ericson\": [\n        \"NNP\"\n    ], \n    \"Lippmann\": [\n        \"NNP\"\n    ], \n    \"Elegance\": [\n        \"NN\"\n    ], \n    \"NYU\": [\n        \"NNP\"\n    ], \n    \"McClure\": [\n        \"NNP\"\n    ], \n    \"BOTTLED\": [\n        \"VBN\"\n    ], \n    \"Berkshires\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fuel-distribution\": [\n        \"NN\"\n    ], \n    \"rekindle\": [\n        \"VB\"\n    ], \n    \"nervously\": [\n        \"RB\"\n    ], \n    \"Mondry\": [\n        \"NNP\"\n    ], \n    \"Ruhnau\": [\n        \"NNP\"\n    ], \n    \"onus\": [\n        \"NN\"\n    ], \n    \"stomach-churning\": [\n        \"JJ\"\n    ], \n    \"Babbitt\": [\n        \"NNP\"\n    ], \n    \"unanimity\": [\n        \"NN\"\n    ], \n    \"Sanraku\": [\n        \"NNP\"\n    ], \n    \"MANAGER\": [\n        \"NN\"\n    ], \n    \"Tokyu\": [\n        \"NNP\"\n    ], \n    \"manhandled\": [\n        \"VBN\"\n    ], \n    \"sexualized\": [\n        \"JJ\"\n    ], \n    \"STRIP\": [\n        \"VB\"\n    ], \n    \"Guerneville\": [\n        \"NNP\"\n    ], \n    \"militantly\": [\n        \"RB\"\n    ], \n    \"Dignity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"amorous\": [\n        \"JJ\"\n    ], \n    \"two-inches\": [\n        \"NNS\"\n    ], \n    \"cow-people\": [\n        \"NN\"\n    ], \n    \"Enterprise\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"Musique\": [\n        \"NNP\"\n    ], \n    \"Military\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"micromanage\": [\n        \"NN\"\n    ], \n    \"money-fed\": [\n        \"JJ\"\n    ], \n    \"succumbing\": [\n        \"VBG\"\n    ], \n    \"three-month-old\": [\n        \"JJ\"\n    ], \n    \"Yearly\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Stringing\": [\n        \"VBG\"\n    ], \n    \"exaggerate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"compassionately\": [\n        \"RB\"\n    ], \n    \"Mutual-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"harrowed\": [\n        \"VBN\"\n    ], \n    \"Merleau-Ponty\": [\n        \"NNP\"\n    ], \n    \"notifying\": [\n        \"VBG\"\n    ], \n    \"miuchi\": [\n        \"FW\"\n    ], \n    \"abolishing\": [\n        \"VBG\"\n    ], \n    \"MANEUVERS\": [\n        \"NNS\"\n    ], \n    \"Whoopee\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Killory\": [\n        \"NNP\"\n    ], \n    \"ATLANTIC\": [\n        \"NNP\"\n    ], \n    \"Schachter\": [\n        \"NNP\"\n    ], \n    \"Dodd-type\": [\n        \"NNP\"\n    ], \n    \"Moos\": [\n        \"NNP\"\n    ], \n    \"stardom\": [\n        \"NN\"\n    ], \n    \"Y-MP8-232\": [\n        \"NNP\"\n    ], \n    \"Avery\": [\n        \"NNP\"\n    ], \n    \"beer-cooling\": [\n        \"VBG\"\n    ], \n    \"Game\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"unfelt\": [\n        \"JJ\"\n    ], \n    \"personifies\": [\n        \"VBZ\"\n    ], \n    \"Chairperson\": [\n        \"NNP\"\n    ], \n    \"multifamily\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Gorman\": [\n        \"NNP\"\n    ], \n    \"spunky\": [\n        \"NN\"\n    ], \n    \"residual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"redeploy\": [\n        \"VB\"\n    ], \n    \"protection\": [\n        \"NN\"\n    ], \n    \"personified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"light-year\": [\n        \"NN\"\n    ], \n    \"cold-cereal\": [\n        \"JJ\"\n    ], \n    \"Nonresidential\": [\n        \"JJ\"\n    ], \n    \"KKR\": [\n        \"NNP\"\n    ], \n    \"issues...\": [\n        \":\"\n    ], \n    \"KKK\": [\n        \"NNP\"\n    ], \n    \"Spruce\": [\n        \"NNP\"\n    ], \n    \"postponed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Riklis\": [\n        \"NNP\"\n    ], \n    \"shrimpers\": [\n        \"NNS\"\n    ], \n    \"cloistered\": [\n        \"JJ\"\n    ], \n    \"inflicting\": [\n        \"VBG\"\n    ], \n    \"Lampoon\": [\n        \"NNP\"\n    ], \n    \"lavatory\": [\n        \"NN\"\n    ], \n    \"now-scuttled\": [\n        \"JJ\"\n    ], \n    \"socioeconomic\": [\n        \"JJ\"\n    ], \n    \"absolution\": [\n        \"NN\"\n    ], \n    \"Crisco\": [\n        \"NNP\"\n    ], \n    \"plot\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"inculcation\": [\n        \"NN\"\n    ], \n    \"Seymour\": [\n        \"NNP\"\n    ], \n    \"wintertime\": [\n        \"NN\"\n    ], \n    \"coins\": [\n        \"NNS\"\n    ], \n    \"bundles\": [\n        \"NNS\"\n    ], \n    \"value-orientations\": [\n        \"NNS\"\n    ], \n    \"plod\": [\n        \"VB\"\n    ], \n    \"week-one\": [\n        \"JJ\"\n    ], \n    \"excelsin\": [\n        \"NN\"\n    ], \n    \"galbula\": [\n        \"FW\"\n    ], \n    \"bundled\": [\n        \"VBN\"\n    ], \n    \"abusing\": [\n        \"VBG\"\n    ], \n    \"bombast\": [\n        \"NN\"\n    ], \n    \"Breeden\": [\n        \"NNP\"\n    ], \n    \"toppling\": [\n        \"VBG\"\n    ], \n    \"wavy\": [\n        \"JJ\"\n    ], \n    \"Directorate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Chronicles\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"separates\": [\n        \"VBZ\"\n    ], \n    \"Breeder\": [\n        \"NNP\"\n    ], \n    \"IRA-Plus\": [\n        \"NN\"\n    ], \n    \"blocking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Swept\": [\n        \"VBN\"\n    ], \n    \"Headed\": [\n        \"VBN\"\n    ], \n    \"U.S.-German\": [\n        \"JJ\"\n    ], \n    \"still...\": [\n        \":\"\n    ], \n    \"total-cost\": [\n        \"JJ\"\n    ], \n    \"Substantial\": [\n        \"JJ\"\n    ], \n    \"Initiative\": [\n        \"NNP\"\n    ], \n    \"Madrid\": [\n        \"NNP\"\n    ], \n    \"suppository\": [\n        \"NN\"\n    ], \n    \"Afield\": [\n        \"NNP\"\n    ], \n    \"Sammi\": [\n        \"NNP\"\n    ], \n    \"one-arm\": [\n        \"JJ\"\n    ], \n    \"Montenegrin\": [\n        \"NNP\"\n    ], \n    \"indicated\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"flunk\": [\n        \"VBP\"\n    ], \n    \"deadweight\": [\n        \"NN\"\n    ], \n    \"flung\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ralph\": [\n        \"NNP\"\n    ], \n    \"agriculturally\": [\n        \"RB\"\n    ], \n    \"impair\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"indicates\": [\n        \"VBZ\"\n    ], \n    \"wholesaling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Honeywell\": [\n        \"NNP\"\n    ], \n    \"zero-inflation\": [\n        \"NN\"\n    ], \n    \"befuddling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"university-funded\": [\n        \"JJ\"\n    ], \n    \"six-figure\": [\n        \"JJ\"\n    ], \n    \"recovery\": [\n        \"NN\"\n    ], \n    \"inhabitants\": [\n        \"NNS\"\n    ], \n    \"finger-post\": [\n        \"NN\"\n    ], \n    \"US-Travel\": [\n        \"NNP\"\n    ], \n    \"vehicular\": [\n        \"JJ\"\n    ], \n    \"isolation...\": [\n        \":\"\n    ], \n    \"recovers\": [\n        \"VBZ\"\n    ], \n    \"co-wrote\": [\n        \"VBD\"\n    ], \n    \"Hindemith\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hundred-yen\": [\n        \"JJ\"\n    ], \n    \"evolutionists\": [\n        \"NNS\"\n    ], \n    \"Cryptic\": [\n        \"JJ\"\n    ], \n    \"arcs\": [\n        \"NNS\"\n    ], \n    \"pollinating\": [\n        \"VBG\"\n    ], \n    \"customs\": [\n        \"NNS\"\n    ], \n    \"millimeter\": [\n        \"NN\"\n    ], \n    \"run-of-the-mine\": [\n        \"JJ\"\n    ], \n    \"arch\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"foundering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"complacent\": [\n        \"JJ\"\n    ], \n    \"elusive\": [\n        \"JJ\"\n    ], \n    \"alienate\": [\n        \"VB\"\n    ], \n    \"appreciate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Delegation\": [\n        \"NNP\"\n    ], \n    \"rogue\": [\n        \"JJ\"\n    ], \n    \"Fannie\": [\n        \"NNP\"\n    ], \n    \"Globocnik\": [\n        \"NNP\"\n    ], \n    \"Bureaucrat\": [\n        \"NN\"\n    ], \n    \"derided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"droopy-eyed\": [\n        \"JJ\"\n    ], \n    \"Hackel\": [\n        \"NNP\"\n    ], \n    \"priming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"FARMERS\": [\n        \"NNS\"\n    ], \n    \"Eward\": [\n        \"NNP\"\n    ], \n    \"Drew\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Dioxins\": [\n        \"NNS\"\n    ], \n    \"Orthodontic\": [\n        \"JJ\"\n    ], \n    \"Argentinian\": [\n        \"JJ\"\n    ], \n    \"valor\": [\n        \"NN\"\n    ], \n    \"Banda\": [\n        \"NNP\"\n    ], \n    \"Dred\": [\n        \"NNP\"\n    ], \n    \"well-connected\": [\n        \"JJ\"\n    ], \n    \"coffee\": [\n        \"NN\"\n    ], \n    \"choicest\": [\n        \"JJS\"\n    ], \n    \"Consequences\": [\n        \"NNS\"\n    ], \n    \"jerking\": [\n        \"VBG\"\n    ], \n    \"safe\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"expressionist\": [\n        \"NN\"\n    ], \n    \"roommate\": [\n        \"NN\"\n    ], \n    \"squadrons\": [\n        \"NNS\"\n    ], \n    \"penetration\": [\n        \"NN\"\n    ], \n    \"sack\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"coal-like\": [\n        \"JJ\"\n    ], \n    \"lifelong\": [\n        \"JJ\"\n    ], \n    \"Candela\": [\n        \"NNP\"\n    ], \n    \"Sunday-school\": [\n        \"JJ\"\n    ], \n    \"whoop\": [\n        \"NN\"\n    ], \n    \"Twenty-six\": [\n        \"JJ\"\n    ], \n    \"eventualities\": [\n        \"NNS\"\n    ], \n    \"anion\": [\n        \"NN\"\n    ], \n    \"Saunders\": [\n        \"NNP\"\n    ], \n    \"dingo\": [\n        \"NN\"\n    ], \n    \"Beairsto\": [\n        \"NNP\"\n    ], \n    \"l\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"store-name\": [\n        \"JJ\"\n    ], \n    \"dingy\": [\n        \"JJ\"\n    ], \n    \"Lapides\": [\n        \"NNP\"\n    ], \n    \"flyers\": [\n        \"NNS\"\n    ], \n    \"cashmere\": [\n        \"NN\"\n    ], \n    \"Substituting\": [\n        \"VBG\"\n    ], \n    \"soon-to-be-sold\": [\n        \"JJ\"\n    ], \n    \"rental-car\": [\n        \"NN\"\n    ], \n    \"masseuse\": [\n        \"NN\"\n    ], \n    \"financial-crimes\": [\n        \"NNS\"\n    ], \n    \"Budapest\": [\n        \"NNP\", \n        \"JJS\"\n    ], \n    \"publishing-group\": [\n        \"JJ\"\n    ], \n    \"I-5\": [\n        \"NNP\"\n    ], \n    \"maniacs\": [\n        \"NNS\"\n    ], \n    \"contracted-for\": [\n        \"JJ\"\n    ], \n    \"Clerk\": [\n        \"NNP\"\n    ], \n    \"living-benefits\": [\n        \"JJ\"\n    ], \n    \"Oneok\": [\n        \"NNP\"\n    ], \n    \"Downtown\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Cereal\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"engrave\": [\n        \"VB\"\n    ], \n    \"Meyer\": [\n        \"NNP\"\n    ], \n    \"Trivest\": [\n        \"NNP\"\n    ], \n    \"commerical\": [\n        \"JJ\"\n    ], \n    \"colorless\": [\n        \"JJ\"\n    ], \n    \"Galloway\": [\n        \"NNP\"\n    ], \n    \"leftovers\": [\n        \"NNS\"\n    ], \n    \"Ahah\": [\n        \"UH\"\n    ], \n    \"Sardanapalus\": [\n        \"NNP\"\n    ], \n    \"dashing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"triphenylarsine\": [\n        \"NN\"\n    ], \n    \"detecting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hirudo\": [\n        \"FW\"\n    ], \n    \"bobbin-to-cone\": [\n        \"JJ\"\n    ], \n    \"shrubbery\": [\n        \"NN\"\n    ], \n    \"either-or\": [\n        \"JJ\"\n    ], \n    \"Correctional\": [\n        \"NNP\"\n    ], \n    \"I-E\": [\n        \"NNP\"\n    ], \n    \"Big-bucks\": [\n        \"JJ\"\n    ], \n    \"Metric\": [\n        \"NNP\"\n    ], \n    \"Perken\": [\n        \"NNP\"\n    ], \n    \"AMERICAN\": [\n        \"NNP\"\n    ], \n    \"trade-ad\": [\n        \"NN\"\n    ], \n    \"footsteps\": [\n        \"NNS\"\n    ], \n    \"newly-plowed\": [\n        \"JJ\"\n    ], \n    \"high-interestrate\": [\n        \"JJ\"\n    ], \n    \"champs\": [\n        \"NNS\"\n    ], \n    \"once-faltering\": [\n        \"JJ\"\n    ], \n    \"Bobbsey\": [\n        \"NNP\"\n    ], \n    \"AMNESTY\": [\n        \"NN\"\n    ], \n    \"synonymous\": [\n        \"JJ\"\n    ], \n    \"doling\": [\n        \"VBG\"\n    ], \n    \"disembark\": [\n        \"VBP\"\n    ], \n    \"electronic\": [\n        \"JJ\"\n    ], \n    \"home-furnishing\": [\n        \"NN\"\n    ], \n    \"Suchocki\": [\n        \"NNP\"\n    ], \n    \"historiography\": [\n        \"NN\"\n    ], \n    \"Portia\": [\n        \"NNP\"\n    ], \n    \"pardonable\": [\n        \"JJ\"\n    ], \n    \"self-regulation\": [\n        \"NN\"\n    ], \n    \"explosives\": [\n        \"NNS\"\n    ], \n    \"vagina\": [\n        \"NN\"\n    ], \n    \"approximately\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Exchange-sponsored\": [\n        \"JJ\"\n    ], \n    \"fumble\": [\n        \"NN\"\n    ], \n    \"john\": [\n        \"NN\"\n    ], \n    \"Kenzo\": [\n        \"NNP\"\n    ], \n    \"chanted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Markham\": [\n        \"NNP\"\n    ], \n    \"Dodington\": [\n        \"NNP\"\n    ], \n    \"wastes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mankiewicz\": [\n        \"NNP\"\n    ], \n    \"hard-currency\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fluently\": [\n        \"RB\"\n    ], \n    \"wasted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Rosenstein\": [\n        \"NNP\"\n    ], \n    \"Backup\": [\n        \"JJ\"\n    ], \n    \"chantey\": [\n        \"NN\"\n    ], \n    \"Masahiko\": [\n        \"NNP\"\n    ], \n    \"policymaking\": [\n        \"JJ\"\n    ], \n    \"ColoradoUte\": [\n        \"NNP\"\n    ], \n    \"askance\": [\n        \"RB\"\n    ], \n    \"CENTRUST\": [\n        \"NNP\"\n    ], \n    \"enhancement\": [\n        \"NN\"\n    ], \n    \"Arteries\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Un-American\": [\n        \"NNP\"\n    ], \n    \"temporize\": [\n        \"VB\"\n    ], \n    \"portraits\": [\n        \"NNS\"\n    ], \n    \"Cray\": [\n        \"NNP\"\n    ], \n    \"Crab\": [\n        \"NNP\"\n    ], \n    \"instant-camera\": [\n        \"NN\"\n    ], \n    \"Maestro\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mazowiecki\": [\n        \"NNP\"\n    ], \n    \"Oshkosh\": [\n        \"NNP\"\n    ], \n    \"Kadonada\": [\n        \"NNP\"\n    ], \n    \"Eurocrats\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"fraternized\": [\n        \"VBD\"\n    ], \n    \"silversmith\": [\n        \"NN\"\n    ], \n    \"Victorians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"social-role\": [\n        \"NN\"\n    ], \n    \"off-shore\": [\n        \"JJ\"\n    ], \n    \"Gallery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Flashdance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"maquiladoras\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"culminated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"nobody\": [\n        \"NN\"\n    ], \n    \"disembarking\": [\n        \"VBG\"\n    ], \n    \"unsurmountable\": [\n        \"JJ\"\n    ], \n    \"Artist\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"germane\": [\n        \"JJ\"\n    ], \n    \"indemnification\": [\n        \"NN\"\n    ], \n    \"Lucy\": [\n        \"NNP\"\n    ], \n    \"assesses\": [\n        \"VBZ\"\n    ], \n    \"Luce\": [\n        \"NNP\"\n    ], \n    \"Columnist\": [\n        \"NNP\"\n    ], \n    \"culminates\": [\n        \"VBZ\"\n    ], \n    \"scripts\": [\n        \"NNS\"\n    ], \n    \"assessed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Luci\": [\n        \"NNP\"\n    ], \n    \"grave\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Luck\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"topple\": [\n        \"VB\"\n    ], \n    \"conjures\": [\n        \"VBZ\"\n    ], \n    \"ubiquitousness\": [\n        \"NN\"\n    ], \n    \"Arshinkoff\": [\n        \"NNP\"\n    ], \n    \"heartstring-plucking\": [\n        \"JJ\"\n    ], \n    \"Elanco\": [\n        \"NNP\"\n    ], \n    \"non-gasoline\": [\n        \"JJ\"\n    ], \n    \"PAP\": [\n        \"NNP\"\n    ], \n    \"Ridge\": [\n        \"NNP\"\n    ], \n    \"PAY\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Ripples\": [\n        \"NNS\"\n    ], \n    \"PAC\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disturbs\": [\n        \"VBZ\"\n    ], \n    \"Katsuya\": [\n        \"NNP\"\n    ], \n    \"papillary\": [\n        \"JJ\"\n    ], \n    \"spuds\": [\n        \"NNS\"\n    ], \n    \"intergovernmental\": [\n        \"JJ\"\n    ], \n    \"PAN\": [\n        \"NNP\"\n    ], \n    \"letterman\": [\n        \"NN\"\n    ], \n    \"Santiago\": [\n        \"NNP\"\n    ], \n    \"geyser\": [\n        \"NN\"\n    ], \n    \"ellipsoid\": [\n        \"NN\"\n    ], \n    \"panned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stravinsky\": [\n        \"NNP\"\n    ], \n    \"throttling\": [\n        \"VBG\"\n    ], \n    \"beer-distribution\": [\n        \"NN\"\n    ], \n    \"gutsy\": [\n        \"JJ\"\n    ], \n    \"Englishmen\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"marketings\": [\n        \"NNS\"\n    ], \n    \"WHIRLPOOL\": [\n        \"NN\"\n    ], \n    \"hairshirt\": [\n        \"NN\"\n    ], \n    \"rectangle\": [\n        \"NN\"\n    ], \n    \"cappuccino\": [\n        \"NN\"\n    ], \n    \"Ostrander\": [\n        \"NNP\"\n    ], \n    \"Ranney\": [\n        \"NNP\"\n    ], \n    \"rotated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"degradation\": [\n        \"NN\"\n    ], \n    \"Herzlinger\": [\n        \"NNP\"\n    ], \n    \"Board-listed\": [\n        \"JJ\"\n    ], \n    \"Gauchos\": [\n        \"NNS\"\n    ], \n    \"vividly\": [\n        \"RB\"\n    ], \n    \"Loud\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Ageny\": [\n        \"NNP\"\n    ], \n    \"stalwarts\": [\n        \"NNS\"\n    ], \n    \"tartly\": [\n        \"RB\"\n    ], \n    \"overrule\": [\n        \"VB\"\n    ], \n    \"Zennist\": [\n        \"NN\"\n    ], \n    \"Observing\": [\n        \"VBG\"\n    ], \n    \"Marckesano\": [\n        \"NNP\"\n    ], \n    \"Agent\": [\n        \"NNP\"\n    ], \n    \"LaSalle\": [\n        \"NNP\"\n    ], \n    \"Maurits\": [\n        \"NNP\"\n    ], \n    \"triol\": [\n        \"NN\"\n    ], \n    \"scrubbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"secretary\": [\n        \"NN\"\n    ], \n    \"turmoil\": [\n        \"NN\"\n    ], \n    \"dustbin\": [\n        \"NN\"\n    ], \n    \"Gorbachev\": [\n        \"NNP\"\n    ], \n    \"zookeeper\": [\n        \"NN\"\n    ], \n    \"Atwells\": [\n        \"NNP\"\n    ], \n    \"gladness\": [\n        \"NN\"\n    ], \n    \"electrostatic\": [\n        \"JJ\"\n    ], \n    \"rampancy\": [\n        \"NN\"\n    ], \n    \"Lascar\": [\n        \"NNP\"\n    ], \n    \"optimum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Malawi\": [\n        \"NNP\"\n    ], \n    \"techniques\": [\n        \"NNS\"\n    ], \n    \"diffidence\": [\n        \"NN\"\n    ], \n    \"BVI-based\": [\n        \"JJ\"\n    ], \n    \"intermediate-term\": [\n        \"JJ\"\n    ], \n    \"TILT\": [\n        \"NN\"\n    ], \n    \"away\": [\n        \"RB\", \n        \"RB|RP\", \n        \"RP\"\n    ], \n    \"Bricker\": [\n        \"NNP\"\n    ], \n    \"Repeated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"bracing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"arcane\": [\n        \"JJ\"\n    ], \n    \"increase-results\": [\n        \"NNS\"\n    ], \n    \"Decide\": [\n        \"VB\"\n    ], \n    \"Schweizerische\": [\n        \"NNP\"\n    ], \n    \"Philosophic\": [\n        \"JJ\"\n    ], \n    \"superstores\": [\n        \"NNS\"\n    ], \n    \"shields\": [\n        \"NNS\"\n    ], \n    \"transducer\": [\n        \"NN\"\n    ], \n    \"disavowed\": [\n        \"VBD\"\n    ], \n    \"de-iodinase\": [\n        \"NN\"\n    ], \n    \"Pfiefer\": [\n        \"NNP\"\n    ], \n    \"Rede\": [\n        \"NNP\"\n    ], \n    \"Shaped\": [\n        \"JJ\"\n    ], \n    \"Sulamite\": [\n        \"NN\"\n    ], \n    \"Shapes\": [\n        \"NNS\"\n    ], \n    \"travellers\": [\n        \"NNS\"\n    ], \n    \"Slutsky\": [\n        \"NNP\"\n    ], \n    \"terrazzo\": [\n        \"NN\"\n    ], \n    \"Cupertino\": [\n        \"NNP\"\n    ], \n    \"climate\": [\n        \"NN\"\n    ], \n    \"abstracts\": [\n        \"NNS\"\n    ], \n    \"Offer\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"red-blooded\": [\n        \"JJ\"\n    ], \n    \"astringency\": [\n        \"NN\"\n    ], \n    \"fermentation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MOB\": [\n        \"NNP\"\n    ], \n    \"Abie\": [\n        \"NNP\"\n    ], \n    \"disappears\": [\n        \"VBZ\"\n    ], \n    \"publicity-seeking\": [\n        \"JJ\"\n    ], \n    \"McCammon\": [\n        \"NNP\"\n    ], \n    \"Odell\": [\n        \"NNP\"\n    ], \n    \"Drive-in\": [\n        \"NNP\"\n    ], \n    \"whistles\": [\n        \"NNS\"\n    ], \n    \"unchangedat\": [\n        \"JJ\"\n    ], \n    \"Katangan\": [\n        \"JJ\"\n    ], \n    \"mutations\": [\n        \"NNS\"\n    ], \n    \"nonconformist\": [\n        \"NN\"\n    ], \n    \"TransmancheLink\": [\n        \"NNP\"\n    ], \n    \"i.d\": [\n        \"NN\"\n    ], \n    \"Ireland\": [\n        \"NNP\"\n    ], \n    \"Universe\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"telecommunications\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\", \n        \"NNS|NN\"\n    ], \n    \"alia\": [\n        \"FW\"\n    ], \n    \"Kerry\": [\n        \"NNP\"\n    ], \n    \"noes\": [\n        \"NNS\"\n    ], \n    \"German-built\": [\n        \"JJ\"\n    ], \n    \"Heinzes\": [\n        \"NNPS\"\n    ], \n    \"Dedication\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Surely\": [\n        \"RB\"\n    ], \n    \"oleanders\": [\n        \"NNS\"\n    ], \n    \"Schweppes\": [\n        \"NNP\"\n    ], \n    \"Raphaels\": [\n        \"NNS\"\n    ], \n    \"lockup\": [\n        \"NN\"\n    ], \n    \"innoculated\": [\n        \"VBN\"\n    ], \n    \"superpowers\": [\n        \"NNS\"\n    ], \n    \"Kneale\": [\n        \"NNP\"\n    ], \n    \"attacked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"XRESERVE\": [\n        \"NN\"\n    ], \n    \"disaster-assistance\": [\n        \"JJ\"\n    ], \n    \"Eschewing\": [\n        \"VBG\"\n    ], \n    \"attacker\": [\n        \"NN\"\n    ], \n    \"imbroglio\": [\n        \"NN\"\n    ], \n    \"Casbah\": [\n        \"NNP\"\n    ], \n    \"collects\": [\n        \"VBZ\"\n    ], \n    \"clairvoyant\": [\n        \"JJ\"\n    ], \n    \"Broward\": [\n        \"NNP\"\n    ], \n    \"Rufus\": [\n        \"NNP\"\n    ], \n    \"gracious\": [\n        \"JJ\"\n    ], \n    \"Heinz\": [\n        \"NNP\"\n    ], \n    \"ex-presidents\": [\n        \"NNS\"\n    ], \n    \"orthorhombic\": [\n        \"JJ\"\n    ], \n    \"Lvovna\": [\n        \"NNP\"\n    ], \n    \"Hoot\": [\n        \"NNP\"\n    ], \n    \"Hook\": [\n        \"NNP\"\n    ], \n    \"over-the-air\": [\n        \"JJ\"\n    ], \n    \"Ascii\": [\n        \"NNP\"\n    ], \n    \"Saloojee\": [\n        \"NNP\"\n    ], \n    \"Hood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cylinder\": [\n        \"NN\"\n    ], \n    \"cons\": [\n        \"NNS\"\n    ], \n    \"cont\": [\n        \"VBN\"\n    ], \n    \"Athens\": [\n        \"NNP\"\n    ], \n    \"tissue\": [\n        \"NN\"\n    ], \n    \"Snug-Grip\": [\n        \"NNP\"\n    ], \n    \"Convention\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cleaning-fluid\": [\n        \"NN\"\n    ], \n    \"diagnostic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Athena\": [\n        \"NNP\"\n    ], \n    \"canvases\": [\n        \"NNS\"\n    ], \n    \"Bacardi\": [\n        \"NNP\"\n    ], \n    \"one-room\": [\n        \"JJ\"\n    ], \n    \"policy-research\": [\n        \"NN\"\n    ], \n    \"Stop\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"adjectives\": [\n        \"NNS\"\n    ], \n    \"agreeableness\": [\n        \"NN\"\n    ], \n    \"PAYMENTS\": [\n        \"NNS\"\n    ], \n    \"family-entertainment\": [\n        \"JJ\"\n    ], \n    \"synce\": [\n        \"IN\"\n    ], \n    \"hank\": [\n        \"NN\"\n    ], \n    \"Dines\": [\n        \"NNP\"\n    ], \n    \"Cedvet\": [\n        \"NNP\"\n    ], \n    \"hang\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"counterparts\": [\n        \"NNS\"\n    ], \n    \"Cadesi\": [\n        \"NNP\"\n    ], \n    \"liberties\": [\n        \"NNS\"\n    ], \n    \"Machiavelli\": [\n        \"NNP\"\n    ], \n    \"Salvation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cirrus\": [\n        \"NNP\"\n    ], \n    \"Lepercq\": [\n        \"NNP\"\n    ], \n    \"Broiled\": [\n        \"VBN\"\n    ], \n    \"Bricklayers\": [\n        \"NNPS\"\n    ], \n    \"Subcommittee\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"voice-mail\": [\n        \"NN\"\n    ], \n    \"musical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pronouncements\": [\n        \"NNS\"\n    ], \n    \"ultra-liberal\": [\n        \"JJ\"\n    ], \n    \"four-member\": [\n        \"JJ\"\n    ], \n    \"traditions\": [\n        \"NNS\"\n    ], \n    \"Konopnicki\": [\n        \"NNP\"\n    ], \n    \"Cambodia\": [\n        \"NNP\"\n    ], \n    \"Enquirer\": [\n        \"NNP\"\n    ], \n    \"Ballistic\": [\n        \"NNP\"\n    ], \n    \"Negmegan\": [\n        \"NNP\"\n    ], \n    \"Albacore\": [\n        \"NNP\"\n    ], \n    \"Koito\": [\n        \"NNP\"\n    ], \n    \"electronically\": [\n        \"RB\"\n    ], \n    \"single-lane\": [\n        \"JJ\"\n    ], \n    \"Paata\": [\n        \"NNP\"\n    ], \n    \"tramples\": [\n        \"VBZ\"\n    ], \n    \"Taxing\": [\n        \"VBG\"\n    ], \n    \"Utilization\": [\n        \"NN\"\n    ], \n    \"shout\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"cognac\": [\n        \"NN\"\n    ], \n    \"joss\": [\n        \"NN\"\n    ], \n    \"righteous\": [\n        \"JJ\"\n    ], \n    \"Odd-lot\": [\n        \"JJ\"\n    ], \n    \"insensitive\": [\n        \"JJ\"\n    ], \n    \"Sevin\": [\n        \"NN\"\n    ], \n    \"Restaurant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pizzicato\": [\n        \"NN\"\n    ], \n    \"unmolested\": [\n        \"JJ\"\n    ], \n    \"unfounded\": [\n        \"JJ\"\n    ], \n    \"cantilevers\": [\n        \"NNS\"\n    ], \n    \"catastrophic-health-care\": [\n        \"NN\"\n    ], \n    \"Fresno\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cooler\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"Certain\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"immunosuppressive\": [\n        \"JJ\"\n    ], \n    \"homing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"computer-chip\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Clerfayt\": [\n        \"NNP\"\n    ], \n    \"swingin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"songful\": [\n        \"JJ\"\n    ], \n    \"Pinick\": [\n        \"NNP\"\n    ], \n    \"flatter\": [\n        \"VB\"\n    ], \n    \"Inez\": [\n        \"NNP\"\n    ], \n    \"born\": [\n        \"VBN\"\n    ], \n    \"couture\": [\n        \"FW\"\n    ], \n    \"hassle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"flatten\": [\n        \"VB\"\n    ], \n    \"pugnacious\": [\n        \"JJ\"\n    ], \n    \"spinster\": [\n        \"NN\"\n    ], \n    \"bore\": [\n        \"VBD\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"confusing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"congratulate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"matriculate\": [\n        \"VB\"\n    ], \n    \"Booby\": [\n        \"JJ\"\n    ], \n    \"deep-space\": [\n        \"JJ\"\n    ], \n    \"house-painting\": [\n        \"JJ\"\n    ], \n    \"Cullinet\": [\n        \"NNP\"\n    ], \n    \"Ohio-based\": [\n        \"JJ\"\n    ], \n    \"Karacan\": [\n        \"NNP\"\n    ], \n    \"asking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Yancy-6\": [\n        \"NN\"\n    ], \n    \"melange\": [\n        \"NN\"\n    ], \n    \"adorable\": [\n        \"JJ\"\n    ], \n    \"participation\": [\n        \"NN\"\n    ], \n    \"Gray\": [\n        \"NNP\"\n    ], \n    \"field-crop-seeds\": [\n        \"JJ\"\n    ], \n    \"Meetings\": [\n        \"NNS\"\n    ], \n    \"peel\": [\n        \"VB\"\n    ], \n    \"earlier-than-expected\": [\n        \"JJ\"\n    ], \n    \"Medicale\": [\n        \"NNP\"\n    ], \n    \"Gras\": [\n        \"NNP\"\n    ], \n    \"Neal\": [\n        \"NNP\"\n    ], \n    \"peed\": [\n        \"VBN\"\n    ], \n    \"procure\": [\n        \"VB\"\n    ], \n    \"Mementoes\": [\n        \"NNS\"\n    ], \n    \"Near\": [\n        \"IN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Neas\": [\n        \"NNP\"\n    ], \n    \"Mescalero\": [\n        \"NNP\"\n    ], \n    \"Gram\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Asserts\": [\n        \"VBZ\"\n    ], \n    \"substitution\": [\n        \"NN\"\n    ], \n    \"peer\": [\n        \"NN\", \n        \"VBP\", \n        \"JJR\", \n        \"VB\"\n    ], \n    \"Grab\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Grad\": [\n        \"NNP\"\n    ], \n    \"Graf\": [\n        \"NNP\"\n    ], \n    \"Junkholders\": [\n        \"NNS\"\n    ], \n    \"secretively\": [\n        \"RB\"\n    ], \n    \"breaded\": [\n        \"VBN\"\n    ], \n    \"shellfire\": [\n        \"NN\"\n    ], \n    \"zooming\": [\n        \"VBG\"\n    ], \n    \"shared\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"master-race\": [\n        \"NN\"\n    ], \n    \"vats\": [\n        \"NNS\"\n    ], \n    \"crouch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mailroom\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Abdullah\": [\n        \"NNP\"\n    ], \n    \"profession\": [\n        \"NN\"\n    ], \n    \"Caja\": [\n        \"NNP\"\n    ], \n    \"Enemy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"versions\": [\n        \"NNS\"\n    ], \n    \"Negroid\": [\n        \"JJ\"\n    ], \n    \"stumble\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Pendergast\": [\n        \"NNP\"\n    ], \n    \"familiarize\": [\n        \"VB\"\n    ], \n    \"deception\": [\n        \"NN\"\n    ], \n    \"connote\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Managerial\": [\n        \"JJ\"\n    ], \n    \"conservation\": [\n        \"NN\"\n    ], \n    \"Matanky\": [\n        \"NNP\"\n    ], \n    \"wrongdoing\": [\n        \"NN\"\n    ], \n    \"threshhold\": [\n        \"NN\"\n    ], \n    \"malformations\": [\n        \"NNS\"\n    ], \n    \"Schlang\": [\n        \"NNP\"\n    ], \n    \"Money-making\": [\n        \"JJ\"\n    ], \n    \"mumbo-jumbo\": [\n        \"NN\"\n    ], \n    \"needled\": [\n        \"VBD\"\n    ], \n    \"diligence\": [\n        \"NN\"\n    ], \n    \"Halda\": [\n        \"NNP\"\n    ], \n    \"ceded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"disembarked\": [\n        \"VBD\"\n    ], \n    \"observances\": [\n        \"NNS\"\n    ], \n    \"needles\": [\n        \"NNS\"\n    ], \n    \"Romanesque\": [\n        \"JJ\"\n    ], \n    \"Greville\": [\n        \"NNP\"\n    ], \n    \"Distinguished\": [\n        \"NNP\"\n    ], \n    \"Catholic-Jewish\": [\n        \"JJ\"\n    ], \n    \"bottom-living\": [\n        \"JJ\"\n    ], \n    \"Pritikin\": [\n        \"NNP\"\n    ], \n    \"maximum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"apostles\": [\n        \"NNS\"\n    ], \n    \"hangar\": [\n        \"NN\"\n    ], \n    \"authorization\": [\n        \"NN\"\n    ], \n    \"coverings\": [\n        \"NNS\"\n    ], \n    \"faking\": [\n        \"VBG\"\n    ], \n    \"all-Copland\": [\n        \"JJ\"\n    ], \n    \"prayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hotlines\": [\n        \"NNS\"\n    ], \n    \"guesses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"NUMBER\": [\n        \"NN\"\n    ], \n    \"Manners\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"boutique-lined\": [\n        \"JJ\"\n    ], \n    \"Cabot\": [\n        \"NNP\"\n    ], \n    \"guessed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"expertise\": [\n        \"NN\"\n    ], \n    \"prayer\": [\n        \"NN\"\n    ], \n    \"Hillsboro\": [\n        \"NNP\"\n    ], \n    \"commences\": [\n        \"VBZ\"\n    ], \n    \"Stuecker\": [\n        \"NNP\"\n    ], \n    \"pressure...\": [\n        \":\"\n    ], \n    \"Kabalevsky\": [\n        \"NNP\"\n    ], \n    \"debtholder\": [\n        \"NN\"\n    ], \n    \"Namely\": [\n        \"RB\"\n    ], \n    \"senatorial\": [\n        \"JJ\"\n    ], \n    \"Falls\": [\n        \"NNP\", \n        \"VBZ\", \n        \"NNPS\"\n    ], \n    \"Eighty-Four\": [\n        \"NNP\"\n    ], \n    \"hoarseness\": [\n        \"NN\"\n    ], \n    \"Competent\": [\n        \"JJ\"\n    ], \n    \"Falla\": [\n        \"NNP\"\n    ], \n    \"immune-system\": [\n        \"NN\"\n    ], \n    \"enthuses\": [\n        \"VBZ\"\n    ], \n    \"mulling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"labor-based\": [\n        \"JJ\"\n    ], \n    \"update\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"improvisation\": [\n        \"NN\"\n    ], \n    \"Trial\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Stolzman\": [\n        \"NNP\"\n    ], \n    \"heptachlor\": [\n        \"NN\"\n    ], \n    \"Triad\": [\n        \"NNP\"\n    ], \n    \"Harpers\": [\n        \"NNP\"\n    ], \n    \"ex-musician\": [\n        \"NN\"\n    ], \n    \"Montgolfier\": [\n        \"NNP\"\n    ], \n    \"ground-water\": [\n        \"NN\"\n    ], \n    \"mid-to-high\": [\n        \"JJ\"\n    ], \n    \"snob-clannish\": [\n        \"JJ\"\n    ], \n    \"alertly\": [\n        \"RB\"\n    ], \n    \"Concurrence\": [\n        \"NN\"\n    ], \n    \"interval\": [\n        \"NN\"\n    ], \n    \"paper-littered\": [\n        \"JJ\"\n    ], \n    \"cohesion\": [\n        \"NN\"\n    ], \n    \"Jess\": [\n        \"NNP\"\n    ], \n    \"Bertha\": [\n        \"NNP\"\n    ], \n    \"flag-burner\": [\n        \"NN\"\n    ], \n    \"Blasphemers\": [\n        \"NNS\"\n    ], \n    \"grokked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"igloo\": [\n        \"NN\"\n    ], \n    \"tribunals\": [\n        \"NNS\"\n    ], \n    \"Moines-based\": [\n        \"JJ\"\n    ], \n    \"diplomacy\": [\n        \"NN\"\n    ], \n    \"long-cruise\": [\n        \"JJ\"\n    ], \n    \"million-dollar-plus\": [\n        \"JJ\"\n    ], \n    \"supplement\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"synapses\": [\n        \"NNS\"\n    ], \n    \"Bernz-O-Matic\": [\n        \"NN\"\n    ], \n    \"p.m.\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"A330\": [\n        \"NN\"\n    ], \n    \"Non-money\": [\n        \"JJ\"\n    ], \n    \"layers\": [\n        \"NNS\"\n    ], \n    \"contributing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Burl\": [\n        \"NNP\"\n    ], \n    \"visualizes\": [\n        \"VBZ\"\n    ], \n    \"Buri\": [\n        \"NNP\"\n    ], \n    \"Auberge\": [\n        \"NNP\"\n    ], \n    \"Burk\": [\n        \"NNP\"\n    ], \n    \"Burt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dissatisfied\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Burr\": [\n        \"NNP\"\n    ], \n    \"Bury\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"So-called\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Princes\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Bekaa\": [\n        \"NNP\"\n    ], \n    \"Elaine\": [\n        \"NNP\"\n    ], \n    \"Artistic\": [\n        \"JJ\"\n    ], \n    \"airing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Cyrus\": [\n        \"NNP\"\n    ], \n    \"Christrian\": [\n        \"NNP\"\n    ], \n    \"unformed\": [\n        \"JJ\"\n    ], \n    \"visualized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mencius\": [\n        \"NNP\"\n    ], \n    \"flammable\": [\n        \"JJ\"\n    ], \n    \"Bumbry\": [\n        \"NNP\"\n    ], \n    \"Mateo\": [\n        \"NNP\"\n    ], \n    \"Episcopal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Mater\": [\n        \"NNP\"\n    ], \n    \"Onleh\": [\n        \"RB\"\n    ], \n    \"evades\": [\n        \"VBZ\"\n    ], \n    \"biscotti\": [\n        \"NNS\"\n    ], \n    \"Kelman\": [\n        \"NNP\"\n    ], \n    \"plutocrats\": [\n        \"NNS\"\n    ], \n    \"verifiable\": [\n        \"JJ\"\n    ], \n    \"Feinman\": [\n        \"NNP\"\n    ], \n    \"Mevacor\": [\n        \"NNP\"\n    ], \n    \"agitate\": [\n        \"VBP\"\n    ], \n    \"cost\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Maxhuette\": [\n        \"NNP\"\n    ], \n    \"Instant\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Height\": [\n        \"NN\"\n    ], \n    \"Pretax\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Salish\": [\n        \"NNP\"\n    ], \n    \"Lucite\": [\n        \"NNP\"\n    ], \n    \"OK.\": [\n        \"UH\"\n    ], \n    \"typesetters\": [\n        \"NNS\"\n    ], \n    \"thicker\": [\n        \"JJR\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"fastigheter\": [\n        \"FW\"\n    ], \n    \"ecumenist\": [\n        \"NN\"\n    ], \n    \"non-earning\": [\n        \"JJ\"\n    ], \n    \"Sportdom\": [\n        \"NN\"\n    ], \n    \"Representing\": [\n        \"VBG\"\n    ], \n    \"cynically\": [\n        \"RB\"\n    ], \n    \"Five-Year\": [\n        \"NNP\"\n    ], \n    \"housebroken\": [\n        \"JJ\"\n    ], \n    \"foreign-debt\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"socioeconomically\": [\n        \"RB\"\n    ], \n    \"Power-Seek\": [\n        \"NN\"\n    ], \n    \"CUNA\": [\n        \"NNP\"\n    ], \n    \"Near-Term\": [\n        \"RB\"\n    ], \n    \"lolling\": [\n        \"VBG\"\n    ], \n    \"Corroborating\": [\n        \"VBG\"\n    ], \n    \"Breakey\": [\n        \"NNP\"\n    ], \n    \"crash-wary\": [\n        \"JJ\"\n    ], \n    \"lustrous\": [\n        \"JJ\"\n    ], \n    \"Distribution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sieve\": [\n        \"NN\"\n    ], \n    \"Corvette\": [\n        \"NNP\"\n    ], \n    \"Israeli-occupied\": [\n        \"JJ\"\n    ], \n    \"military-medical\": [\n        \"JJ\"\n    ], \n    \"bangs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Quakers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"OKI\": [\n        \"NNP\"\n    ], \n    \"washbowl\": [\n        \"NN\"\n    ], \n    \"York-SF\": [\n        \"NNP\"\n    ], \n    \"pillow\": [\n        \"NN\"\n    ], \n    \"ineffectiveness\": [\n        \"NN\"\n    ], \n    \"Dowager\": [\n        \"NNP\"\n    ], \n    \"perhaps-decisive\": [\n        \"JJ\"\n    ], \n    \"CALFED\": [\n        \"NNP\"\n    ], \n    \"Bizerte\": [\n        \"NNP\"\n    ], \n    \"Atlanta-Chicago\": [\n        \"NNP\"\n    ], \n    \"sextet\": [\n        \"NN\"\n    ], \n    \"losing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"softy\": [\n        \"NN\"\n    ], \n    \"oil-services\": [\n        \"JJ\"\n    ], \n    \"steam-generation\": [\n        \"JJ\"\n    ], \n    \"Lawmakers\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"most-actives\": [\n        \"JJS\"\n    ], \n    \"firearm\": [\n        \"NN\"\n    ], \n    \"Scopes\": [\n        \"NNP\"\n    ], \n    \"Customers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"higher-education\": [\n        \"JJ\", \n        \"NN\", \n        \"JJR\"\n    ], \n    \"Dies\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Diet\": [\n        \"NNP\"\n    ], \n    \"Dieu\": [\n        \"FW\"\n    ], \n    \"wonderfully\": [\n        \"RB\"\n    ], \n    \"T.M.B.\": [\n        \"NNP\"\n    ], \n    \"Diem\": [\n        \"NNP\"\n    ], \n    \"symbolized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Died\": [\n        \"VBD\", \n        \"VBN\", \n        \"VBD|VBN\"\n    ], \n    \"intently\": [\n        \"RB\"\n    ], \n    \"Amber\": [\n        \"NNP\"\n    ], \n    \"Watchers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"union-sponsored\": [\n        \"JJ\"\n    ], \n    \"cluck\": [\n        \"NN\"\n    ], \n    \"Canelo\": [\n        \"NNP\"\n    ], \n    \"UFOs\": [\n        \"NNS\"\n    ], \n    \"supervote\": [\n        \"NN\"\n    ], \n    \"twenty-fifth\": [\n        \"JJ\"\n    ], \n    \"Sneaker\": [\n        \"NNP\"\n    ], \n    \"decked\": [\n        \"VBN\"\n    ], \n    \"fortified\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"tax-evasion\": [\n        \"NN\"\n    ], \n    \"purge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Entrepreneur\": [\n        \"NN\"\n    ], \n    \"Awakening\": [\n        \"NNP\"\n    ], \n    \"HDTVs\": [\n        \"NNS\"\n    ], \n    \"Rondanini\": [\n        \"NNP\"\n    ], \n    \"totalled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Throughout\": [\n        \"IN\"\n    ], \n    \"mild-mannered\": [\n        \"JJ\"\n    ], \n    \"Sweeneys\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"fracturing\": [\n        \"VBG\"\n    ], \n    \"Showa\": [\n        \"NNP\"\n    ], \n    \"Pizzo\": [\n        \"NNP\"\n    ], \n    \"word-processing\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"anteater\": [\n        \"NN\"\n    ], \n    \"MEDUSA\": [\n        \"NNP\"\n    ], \n    \"Warner-Lambert\": [\n        \"NNP\"\n    ], \n    \"occur\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pizza\": [\n        \"NNP\"\n    ], \n    \"Bishun\": [\n        \"NNP\"\n    ], \n    \"Brightman\": [\n        \"NNP\"\n    ], \n    \"giveaways\": [\n        \"NNS\"\n    ], \n    \"lounge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"unrealistically\": [\n        \"RB\"\n    ], \n    \"etymological\": [\n        \"JJ\"\n    ], \n    \"Burden\": [\n        \"NNP\"\n    ], \n    \"jiu-jitsu\": [\n        \"FW\"\n    ], \n    \"ROTC\": [\n        \"NNP\"\n    ], \n    \"Ensrud\": [\n        \"NNP\"\n    ], \n    \"strays\": [\n        \"NNS\"\n    ], \n    \"sweatshop\": [\n        \"NN\"\n    ], \n    \"economy\": [\n        \"NN\"\n    ], \n    \"product\": [\n        \"NN\"\n    ], \n    \"sedately\": [\n        \"RB\"\n    ], \n    \"dampened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Heineken\": [\n        \"NNP\"\n    ], \n    \"artist-nature\": [\n        \"NN\"\n    ], \n    \"ornery\": [\n        \"JJ\"\n    ], \n    \"disgusted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Skopbank\": [\n        \"NNP\"\n    ], \n    \"produce\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Martin\": [\n        \"NNP\"\n    ], \n    \"Model\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"epaulets\": [\n        \"NNS\"\n    ], \n    \"pre-festival\": [\n        \"JJ\"\n    ], \n    \"cyclohexanol\": [\n        \"NN\"\n    ], \n    \"substantiation\": [\n        \"NN\"\n    ], \n    \"noses\": [\n        \"NNS\"\n    ], \n    \"wanderings\": [\n        \"NNS\"\n    ], \n    \"Isselbacher\": [\n        \"NNP\"\n    ], \n    \"portering\": [\n        \"NN\"\n    ], \n    \"corona\": [\n        \"NN\"\n    ], \n    \"nosed\": [\n        \"VBD\"\n    ], \n    \"Synar\": [\n        \"NNP\"\n    ], \n    \"half-reformed\": [\n        \"JJ\"\n    ], \n    \"Manley\": [\n        \"NNP\"\n    ], \n    \"perfection\": [\n        \"NN\"\n    ], \n    \"Sheep\": [\n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Sheer\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Industrials\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Sheet\": [\n        \"NNP\"\n    ], \n    \"nonpayment\": [\n        \"NN\"\n    ], \n    \"Biochemistry\": [\n        \"NNP\"\n    ], \n    \"freckles\": [\n        \"NNS\"\n    ], \n    \"raised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Tanin\": [\n        \"FW\"\n    ], \n    \"Re\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pergolesi\": [\n        \"NNP\"\n    ], \n    \"Cassell\": [\n        \"NNP\"\n    ], \n    \"Industriale\": [\n        \"NNP\"\n    ], \n    \"affirms\": [\n        \"VBZ\"\n    ], \n    \"Industriali\": [\n        \"NNP\"\n    ], \n    \"ENTERED\": [\n        \"VBD\"\n    ], \n    \"Bolivia\": [\n        \"NNP\"\n    ], \n    \"Rh\": [\n        \"NNP\"\n    ], \n    \"Sheen\": [\n        \"NNP\"\n    ], \n    \"RU\": [\n        \"NNP\"\n    ], \n    \"RV\": [\n        \"NN\"\n    ], \n    \"Enserch\": [\n        \"NNP\"\n    ], \n    \"incendiaries\": [\n        \"NNS\"\n    ], \n    \"top-10\": [\n        \"JJ\"\n    ], \n    \"DELIGHT\": [\n        \"VBP\"\n    ], \n    \"resettling\": [\n        \"VBG\"\n    ], \n    \"supernaturalism\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"RA\": [\n        \"NNP\"\n    ], \n    \"atonement\": [\n        \"NN\"\n    ], \n    \"a.k.a\": [\n        \"JJ\"\n    ], \n    \"factual\": [\n        \"JJ\"\n    ], \n    \"emigrants\": [\n        \"NNS\"\n    ], \n    \"non\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"nod\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"talk-format\": [\n        \"NN\"\n    ], \n    \"Faber\": [\n        \"NNP\"\n    ], \n    \"introduce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Eureka\": [\n        \"NNP\"\n    ], \n    \"unplanned\": [\n        \"JJ\"\n    ], \n    \"PL-480\": [\n        \"NN\"\n    ], \n    \"not\": [\n        \"RB\"\n    ], \n    \"R.\": [\n        \"NNP\"\n    ], \n    \"now\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"nor\": [\n        \"CC\"\n    ], \n    \"Stakes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Flygplanet\": [\n        \"NNP\"\n    ], \n    \"Ensolite\": [\n        \"NN\"\n    ], \n    \"thankful\": [\n        \"JJ\"\n    ], \n    \"Geoffrie\": [\n        \"NNP\"\n    ], \n    \"concerned``\": [\n        \"``\"\n    ], \n    \"cannibalistic\": [\n        \"JJ\"\n    ], \n    \"Skim\": [\n        \"JJ\"\n    ], \n    \"fishmongers\": [\n        \"NNS\"\n    ], \n    \"Agricultural\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Skid\": [\n        \"NNP\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"unloaded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"consummated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Additive\": [\n        \"NN\"\n    ], \n    \"Raiff\": [\n        \"NNP\"\n    ], \n    \"Ordinance\": [\n        \"NNP\"\n    ], \n    \"Engisch\": [\n        \"NNP\"\n    ], \n    \"Legal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wrap\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"polices\": [\n        \"NNS\"\n    ], \n    \"VIETNAM\": [\n        \"NNP\"\n    ], \n    \"Passed\": [\n        \"VBN\"\n    ], \n    \"Garth\": [\n        \"NNP\"\n    ], \n    \"Expected\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"naming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"tried\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"overcollection\": [\n        \"NN\"\n    ], \n    \"circumspection\": [\n        \"NN\"\n    ], \n    \"Janlori\": [\n        \"NNP\"\n    ], \n    \"rude\": [\n        \"JJ\"\n    ], \n    \"bullish\": [\n        \"JJ\"\n    ], \n    \"parceled\": [\n        \"VBN\"\n    ], \n    \"furthermore\": [\n        \"RB\"\n    ], \n    \"Vasa\": [\n        \"NNP\"\n    ], \n    \"thirst\": [\n        \"NN\"\n    ], \n    \"Ephesus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"spaniel-like\": [\n        \"JJ\"\n    ], \n    \"Dearly\": [\n        \"RB\"\n    ], \n    \"Vass\": [\n        \"NNP\"\n    ], \n    \"moldings\": [\n        \"NNS\"\n    ], \n    \"Constants\": [\n        \"NNS\"\n    ], \n    \"philharmonic\": [\n        \"NN\"\n    ], \n    \"Arrested\": [\n        \"VBN\"\n    ], \n    \"divergence\": [\n        \"NN\"\n    ], \n    \"Yen\": [\n        \"NNP\"\n    ], \n    \"reacceleration\": [\n        \"NN\"\n    ], \n    \"gum-chewing\": [\n        \"JJ\"\n    ], \n    \"Hemant\": [\n        \"NNP\"\n    ], \n    \"Constitutions\": [\n        \"NNS\"\n    ], \n    \"Macomber\": [\n        \"NNP\"\n    ], \n    \"lunch-box\": [\n        \"NN\"\n    ], \n    \"right-to-life\": [\n        \"JJ\"\n    ], \n    \"Jeffery\": [\n        \"NNP\"\n    ], \n    \"Kroger\": [\n        \"NNP\"\n    ], \n    \"Leyva\": [\n        \"NNP\"\n    ], \n    \"ship-to-surface\": [\n        \"NN\"\n    ], \n    \"Harbour\": [\n        \"NNP\"\n    ], \n    \"invitation\": [\n        \"NN\"\n    ], \n    \"thankfulness\": [\n        \"NN\"\n    ], \n    \"Fifty-ninth\": [\n        \"NNP\"\n    ], \n    \"blind\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Verret\": [\n        \"NNP\"\n    ], \n    \"Suicide\": [\n        \"NN\"\n    ], \n    \"light-water\": [\n        \"JJ\"\n    ], \n    \"Sprague\": [\n        \"NNP\"\n    ], \n    \"Soto\": [\n        \"NNP\"\n    ], \n    \"evil-doing\": [\n        \"NN\"\n    ], \n    \"Simmel\": [\n        \"NNP\"\n    ], \n    \"Pandelli\": [\n        \"NNP\"\n    ], \n    \"blink\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Till\": [\n        \"IN\"\n    ], \n    \"Simmer\": [\n        \"VB\"\n    ], \n    \"Expressing\": [\n        \"VBG\"\n    ], \n    \"ring\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"six-hour\": [\n        \"JJ\"\n    ], \n    \"national-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Freston\": [\n        \"NNP\"\n    ], \n    \"stock-pickers\": [\n        \"NNS\"\n    ], \n    \"Trygve\": [\n        \"NNP\"\n    ], \n    \"remotely\": [\n        \"RB\"\n    ], \n    \"Lieutenant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"suvivors\": [\n        \"NNS\"\n    ], \n    \"gloom-and-doom\": [\n        \"JJ\"\n    ], \n    \"Response\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"authorized\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"larks\": [\n        \"NNS\"\n    ], \n    \"Feuer\": [\n        \"NNP\"\n    ], \n    \"sores\": [\n        \"NNS\"\n    ], \n    \"appreciates\": [\n        \"VBZ\"\n    ], \n    \"repossess\": [\n        \"VB\"\n    ], \n    \"Refining\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sovietskaya\": [\n        \"NNP\"\n    ], \n    \"junkyard\": [\n        \"NN\"\n    ], \n    \"vocal\\\\\": [\n        \"JJ\"\n    ], \n    \"heretical\": [\n        \"JJ\"\n    ], \n    \"appreciated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"titans\": [\n        \"NNS\"\n    ], \n    \"underwritten\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"relocating\": [\n        \"VBG\"\n    ], \n    \"Creator\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fegersheim\": [\n        \"NNP\"\n    ], \n    \"recruit\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Scientifique\": [\n        \"NNP\"\n    ], \n    \"reassignment\": [\n        \"NN\"\n    ], \n    \"aerials\": [\n        \"NNS\"\n    ], \n    \"vocals\": [\n        \"NNS\"\n    ], \n    \"overhang\": [\n        \"NN\"\n    ], \n    \"impinge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"profuse\": [\n        \"JJ\"\n    ], \n    \"Saigon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"overdosing\": [\n        \"VBG\"\n    ], \n    \"Accumaster\": [\n        \"NNP\"\n    ], \n    \"APPROVES\": [\n        \"VBZ\"\n    ], \n    \"Chantilly\": [\n        \"NNP\"\n    ], \n    \"Shanken\": [\n        \"NNP\"\n    ], \n    \"minivans.\": [\n        \"NNS\"\n    ], \n    \"Shanker\": [\n        \"NNP\"\n    ], \n    \"CALIFORNIA\": [\n        \"NNP\"\n    ], \n    \"Danville\": [\n        \"NNP\"\n    ], \n    \"Numeral\": [\n        \"NNP\"\n    ], \n    \"Faulkner\": [\n        \"NNP\"\n    ], \n    \"APPROVED\": [\n        \"VBD\"\n    ], \n    \"Commune\": [\n        \"NNP\"\n    ], \n    \"Giolito\": [\n        \"NNP\"\n    ], \n    \"lesser-developed-country\": [\n        \"JJ\"\n    ], \n    \"Delegates\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Wimsatt\": [\n        \"NNP\"\n    ], \n    \"Broun\": [\n        \"NNP\"\n    ], \n    \"snout\": [\n        \"NN\"\n    ], \n    \"equipment\": [\n        \"NN\"\n    ], \n    \"Time-Olivette\": [\n        \"NNP\"\n    ], \n    \"mendicant\": [\n        \"JJ\"\n    ], \n    \"polygynous\": [\n        \"JJ\"\n    ], \n    \"Salerno-Sonnenberg\": [\n        \"NNP\"\n    ], \n    \"Unconfirmed\": [\n        \"JJ\"\n    ], \n    \"spring-back\": [\n        \"JJ\"\n    ], \n    \"Off\": [\n        \"IN\", \n        \"NNP\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Unlike\": [\n        \"IN\"\n    ], \n    \"attractiveness\": [\n        \"NN\"\n    ], \n    \"Nagel\": [\n        \"NNP\"\n    ], \n    \"neatly\": [\n        \"RB\"\n    ], \n    \"sports-and-entertainment\": [\n        \"JJ\"\n    ], \n    \"telephone-call\": [\n        \"NN\"\n    ], \n    \"Kauffeld\": [\n        \"NNP\"\n    ], \n    \"Reprinted\": [\n        \"VBN\"\n    ], \n    \"imposition\": [\n        \"NN\"\n    ], \n    \"customer-service\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"saintliness\": [\n        \"NN\"\n    ], \n    \"attempting\": [\n        \"VBG\"\n    ], \n    \"steady\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"unconquerable\": [\n        \"JJ\"\n    ], \n    \"Asian-owned\": [\n        \"JJ\"\n    ], \n    \"Cossack\": [\n        \"NNP\"\n    ], \n    \"Scrum\": [\n        \"NNP\"\n    ], \n    \"discoverer\": [\n        \"NN\"\n    ], \n    \"podiums\": [\n        \"NNS\"\n    ], \n    \"book-lined\": [\n        \"JJ\"\n    ], \n    \"Horse\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"discovered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Chandross\": [\n        \"NNP\"\n    ], \n    \"rate-watchers\": [\n        \"NNS\"\n    ], \n    \"Oversight\": [\n        \"NNP\"\n    ], \n    \"Sophocles\": [\n        \"NNP\"\n    ], \n    \"Dasher\": [\n        \"NNP\"\n    ], \n    \"snack\": [\n        \"NN\"\n    ], \n    \"Worse\": [\n        \"JJR\", \n        \"RBR|JJR\", \n        \"JJ\", \n        \"JJR|RBR\", \n        \"NNP\", \n        \"RBR\"\n    ], \n    \"Wichterle\": [\n        \"NNP\"\n    ], \n    \"soup-to-nuts\": [\n        \"JJ\"\n    ], \n    \"ALCEE\": [\n        \"NNP\"\n    ], \n    \"staid\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"hammock\": [\n        \"NN\"\n    ], \n    \"Worst\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"Solidarityled\": [\n        \"NNP\"\n    ], \n    \"stain\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"cash-starved\": [\n        \"JJ\"\n    ], \n    \"shrill\": [\n        \"JJ\"\n    ], \n    \"interstate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Luther\": [\n        \"NNP\"\n    ], \n    \"Pepsi-Cola\": [\n        \"NNP\"\n    ], \n    \"dervish-like\": [\n        \"JJ\"\n    ], \n    \"vocalic\": [\n        \"JJ\"\n    ], \n    \"Hartsfield\": [\n        \"NNP\"\n    ], \n    \"REQUIRED\": [\n        \"NNP\"\n    ], \n    \"reprints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Gottschalk\": [\n        \"NNP\"\n    ], \n    \"extremity\": [\n        \"NN\"\n    ], \n    \"Lobster\": [\n        \"NN\"\n    ], \n    \"Ba-1\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ba-2\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hambric\": [\n        \"NNP\"\n    ], \n    \"Hall-Mills\": [\n        \"NNP\"\n    ], \n    \"color-coding\": [\n        \"VBG\"\n    ], \n    \"Benzedrine\": [\n        \"NNP\"\n    ], \n    \"actively\": [\n        \"RB\"\n    ], \n    \"charcoaled\": [\n        \"VBN\"\n    ], \n    \"recalcitrant\": [\n        \"JJ\"\n    ], \n    \"Byler\": [\n        \"NNP\"\n    ], \n    \"reproduced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"suspects\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"dervish\": [\n        \"NN\"\n    ], \n    \"ROOM\": [\n        \"NN\"\n    ], \n    \"January-June\": [\n        \"JJ\"\n    ], \n    \"glaze\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"rollicking\": [\n        \"JJ\"\n    ], \n    \"cotton-growing\": [\n        \"JJ\"\n    ], \n    \"Christiev\": [\n        \"NNP\"\n    ], \n    \"Renoir\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"overcerebral\": [\n        \"JJ\"\n    ], \n    \"Productions\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"staffer\": [\n        \"NN\"\n    ], \n    \"Christies\": [\n        \"NNP\"\n    ], \n    \"import\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"all-cargo\": [\n        \"JJ\"\n    ], \n    \"therapies\": [\n        \"NNS\"\n    ], \n    \"orchestrate\": [\n        \"VB\"\n    ], \n    \"monarchy\": [\n        \"NN\"\n    ], \n    \"Wert\": [\n        \"NNP\"\n    ], \n    \"ENGRAPH\": [\n        \"NNP\"\n    ], \n    \"Hollingsworth\": [\n        \"NNP\"\n    ], \n    \"exhortations\": [\n        \"NNS\"\n    ], \n    \"App.\": [\n        \"NNP\"\n    ], \n    \"regulation-writing\": [\n        \"JJ\"\n    ], \n    \"non-white\": [\n        \"JJ\"\n    ], \n    \"Team\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"moans\": [\n        \"VBZ\"\n    ], \n    \"Konishi\": [\n        \"NNP\"\n    ], \n    \"duces\": [\n        \"FW\"\n    ], \n    \"resides\": [\n        \"VBZ\"\n    ], \n    \"resided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Scripps\": [\n        \"NNP\"\n    ], \n    \"impediments\": [\n        \"NNS\"\n    ], \n    \"sulky\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"attache\": [\n        \"NN\"\n    ], \n    \"Krishnaswami\": [\n        \"NNP\"\n    ], \n    \"jeans\": [\n        \"NNS\"\n    ], \n    \"Sachs\": [\n        \"NNP\"\n    ], \n    \"sulks\": [\n        \"NNS\"\n    ], \n    \"Interested\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"merriest\": [\n        \"JJS\"\n    ], \n    \"sassafras\": [\n        \"NN\"\n    ], \n    \"muttered\": [\n        \"VBD\"\n    ], \n    \"GenProbe\": [\n        \"NN\"\n    ], \n    \"scrimping\": [\n        \"VBG\"\n    ], \n    \"hillsides\": [\n        \"NNS\"\n    ], \n    \"Personal\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Doctors\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"partisanship\": [\n        \"NN\"\n    ], \n    \"Matsuda\": [\n        \"NNP\"\n    ], \n    \"intra-city\": [\n        \"NN\"\n    ], \n    \"Christsake\": [\n        \"NN\"\n    ], \n    \"krona\": [\n        \"NN\"\n    ], \n    \"impugn\": [\n        \"VB\"\n    ], \n    \"disclosing\": [\n        \"VBG\"\n    ], \n    \"substations\": [\n        \"NNS\"\n    ], \n    \"Purification\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"empathy\": [\n        \"NN\"\n    ], \n    \"suspected\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Mangano\": [\n        \"NNP\"\n    ], \n    \"Pertamina\": [\n        \"NNP\"\n    ], \n    \"scarfing\": [\n        \"VBG\"\n    ], \n    \"Stimulating\": [\n        \"VBG\"\n    ], \n    \"myofibrillae\": [\n        \"NNS\"\n    ], \n    \"reimburseable\": [\n        \"JJ\"\n    ], \n    \"DeHaviland\": [\n        \"NNP\"\n    ], \n    \"Sportsman\": [\n        \"NNP\"\n    ], \n    \"blinkers\": [\n        \"NNS\"\n    ], \n    \"lire\": [\n        \"NNS\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"Volzhsky\": [\n        \"NNP\"\n    ], \n    \"fume-filled\": [\n        \"JJ\"\n    ], \n    \"near-monopolies\": [\n        \"NNS\"\n    ], \n    \"implacable\": [\n        \"JJ\"\n    ], \n    \"Garin\": [\n        \"NNP\"\n    ], \n    \"bid-to-cover\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cumberland\": [\n        \"NNP\"\n    ], \n    \"contrarians\": [\n        \"NNS\"\n    ], \n    \"sawdust\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"skittishness\": [\n        \"NN\"\n    ], \n    \"Dietzer\": [\n        \"NNP\"\n    ], \n    \"Hirano\": [\n        \"NNP\"\n    ], \n    \"stewardess\": [\n        \"NN\"\n    ], \n    \"raptures\": [\n        \"NNS\"\n    ], \n    \"May\\\\\": [\n        \"NNP\"\n    ], \n    \"beaver\": [\n        \"NN\"\n    ], \n    \"Mailer\": [\n        \"NNP\"\n    ], \n    \"eight-page-a-minute\": [\n        \"JJ\"\n    ], \n    \"frozen-food\": [\n        \"NN\"\n    ], \n    \"ONE-DAY\": [\n        \"JJ\"\n    ], \n    \"O.E.C.D.\": [\n        \"NNP\"\n    ], \n    \"pillowcases\": [\n        \"NNS\"\n    ], \n    \"quagmire\": [\n        \"NN\"\n    ], \n    \"Illick\": [\n        \"NNP\"\n    ], \n    \"inquiry\": [\n        \"NN\"\n    ], \n    \"overambition\": [\n        \"NN\"\n    ], \n    \"week-to-week\": [\n        \"JJ\"\n    ], \n    \"aground\": [\n        \"RB\"\n    ], \n    \"Funari\": [\n        \"NNP\"\n    ], \n    \"foal\": [\n        \"NN\"\n    ], \n    \"foam\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"boom-and-bust\": [\n        \"JJ\"\n    ], \n    \"Wragge\": [\n        \"NNP\"\n    ], \n    \"Businessmen\": [\n        \"NNS\"\n    ], \n    \"CBS-Turner\": [\n        \"NNP\"\n    ], \n    \"Launched\": [\n        \"VBN\"\n    ], \n    \"Budweiser\": [\n        \"NNP\"\n    ], \n    \"in-group\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"space-defense\": [\n        \"JJ\"\n    ], \n    \"DeSoto\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"congressmen\": [\n        \"NNS\"\n    ], \n    \"alleviate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"uninjured\": [\n        \"JJ\"\n    ], \n    \"music-hall\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"SDI\": [\n        \"NNP\"\n    ], \n    \"co-conspirators\": [\n        \"NNS\"\n    ], \n    \"taxi\": [\n        \"NN\"\n    ], \n    \"Swaine\": [\n        \"NNP\"\n    ], \n    \"livestock\": [\n        \"NN\"\n    ], \n    \"typhus\": [\n        \"NN\"\n    ], \n    \"glitterati\": [\n        \"NNS\"\n    ], \n    \"work-station\": [\n        \"NN\"\n    ], \n    \"SwedBank\": [\n        \"NNP\"\n    ], \n    \"self-reform\": [\n        \"NN\"\n    ], \n    \"Framatome\": [\n        \"NNP\"\n    ], \n    \"Might\": [\n        \"MD\"\n    ], \n    \"cliffhanging\": [\n        \"VBG\"\n    ], \n    \"renewed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Solano\": [\n        \"NNP\"\n    ], \n    \"Showing\": [\n        \"VBG\"\n    ], \n    \"Spot\": [\n        \"NN\"\n    ], \n    \"verse\": [\n        \"NN\"\n    ], \n    \"film-festival\": [\n        \"NN\"\n    ], \n    \"Multiplication\": [\n        \"NN\"\n    ], \n    \"loan-forgiveness\": [\n        \"NN\"\n    ], \n    \"overruling\": [\n        \"VBG\"\n    ], \n    \"swim\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"psi\": [\n        \"NNS\"\n    ], \n    \"laundering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"stunk\": [\n        \"VBD\"\n    ], \n    \"onscreen\": [\n        \"RB\"\n    ], \n    \"Herter\": [\n        \"NNP\"\n    ], \n    \"Starts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"gonne\": [\n        \"VBN\"\n    ], \n    \"Oersted\": [\n        \"NNP\"\n    ], \n    \"gonna\": [\n        \"VBG\"\n    ], \n    \"DEAE-cellulose-treated\": [\n        \"NN\"\n    ], \n    \"ramshackle\": [\n        \"JJ\"\n    ], \n    \"amp\": [\n        \"NN\"\n    ], \n    \"Hatred\": [\n        \"NN\"\n    ], \n    \"Mutchin\": [\n        \"NNP\"\n    ], \n    \"Soybeans\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"rat-holes\": [\n        \"NNS\"\n    ], \n    \"Near-term\": [\n        \"JJ\"\n    ], \n    \"rose-gold\": [\n        \"NN\"\n    ], \n    \"Executions\": [\n        \"NNS\"\n    ], \n    \"feckless\": [\n        \"JJ\"\n    ], \n    \"BioSciences\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"blackberry\": [\n        \"NN\"\n    ], \n    \"Interruptions\": [\n        \"NNS\"\n    ], \n    \"transpiration\": [\n        \"NN\"\n    ], \n    \"apartments\": [\n        \"NNS\"\n    ], \n    \"envoys\": [\n        \"NNS\"\n    ], \n    \"semiannual\": [\n        \"JJ\"\n    ], \n    \"nucleic\": [\n        \"JJ\"\n    ], \n    \"Lederberg\": [\n        \"NNP\"\n    ], \n    \"hemorrhage\": [\n        \"NN\"\n    ], \n    \"resource-use\": [\n        \"NN\"\n    ], \n    \"iron-casting\": [\n        \"JJ\"\n    ], \n    \"unlocked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Earlier\": [\n        \"RBR\", \n        \"JJR\", \n        \"RB\"\n    ], \n    \"Right-wing\": [\n        \"JJ\"\n    ], \n    \"honorarium\": [\n        \"NN\"\n    ], \n    \"Grippo\": [\n        \"NNP\"\n    ], \n    \"passive-loss\": [\n        \"JJ\"\n    ], \n    \"assembly\": [\n        \"NN\"\n    ], \n    \"indestructible\": [\n        \"JJ\"\n    ], \n    \"Bustard\": [\n        \"NN\"\n    ], \n    \"innocence\": [\n        \"NN\"\n    ], \n    \"assemble\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sadder\": [\n        \"JJR\"\n    ], \n    \"iron-rod\": [\n        \"JJ\"\n    ], \n    \"creaking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"casuals\": [\n        \"NNS\"\n    ], \n    \"closedowns\": [\n        \"NNS\"\n    ], \n    \"Lancret\": [\n        \"NNP\"\n    ], \n    \"ideology\": [\n        \"NN\"\n    ], \n    \"conceals\": [\n        \"VBZ\"\n    ], \n    \"antibody\": [\n        \"NN\"\n    ], \n    \"LTCB\": [\n        \"NNP\"\n    ], \n    \"freeing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"outlook\": [\n        \"NN\"\n    ], \n    \"Kamemura\": [\n        \"NNP\"\n    ], \n    \"protease\": [\n        \"NN\"\n    ], \n    \"Rondo\": [\n        \"NN\"\n    ], \n    \"stare\": [\n        \"VB\", \n        \"VBP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"Khustndinov\": [\n        \"NNP\"\n    ], \n    \"shags\": [\n        \"VBZ\"\n    ], \n    \"Horwitz\": [\n        \"NNP\"\n    ], \n    \"stark\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"start\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\", \n        \"RP\"\n    ], \n    \"public-school\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"stars\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"politeness\": [\n        \"NN\"\n    ], \n    \"Zaffuto\": [\n        \"NNP\"\n    ], \n    \"allergic\": [\n        \"JJ\"\n    ], \n    \"F-14s\": [\n        \"NNS\"\n    ], \n    \"smuggling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"co-worker\": [\n        \"NN\"\n    ], \n    \"delayed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Nineteenth-century\": [\n        \"JJ\"\n    ], \n    \"intermissions\": [\n        \"NNS\"\n    ], \n    \"manipulative\": [\n        \"JJ\"\n    ], \n    \"know-how\": [\n        \"NN\"\n    ], \n    \"two-thirds\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"machinelike\": [\n        \"JJ\"\n    ], \n    \"Dees\": [\n        \"NNP\"\n    ], \n    \"near-rich\": [\n        \"NN\"\n    ], \n    \"Original\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"traveled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"fraud\": [\n        \"NN\"\n    ], \n    \"lock-outs\": [\n        \"NNS\"\n    ], \n    \"Xidex\": [\n        \"NNP\"\n    ], \n    \"big-league\": [\n        \"JJ\"\n    ], \n    \"Secilia\": [\n        \"NNP\"\n    ], \n    \"Lightweight\": [\n        \"JJ\"\n    ], \n    \"world-shattering\": [\n        \"JJ\"\n    ], \n    \"intents\": [\n        \"NNS\"\n    ], \n    \"Judah\": [\n        \"NNP\"\n    ], \n    \"converage\": [\n        \"NN\"\n    ], \n    \"coral-colored\": [\n        \"JJ\"\n    ], \n    \"air-cargo\": [\n        \"NN\"\n    ], \n    \"Granite\": [\n        \"NNP\"\n    ], \n    \"Ferdinand\": [\n        \"NNP\"\n    ], \n    \"Judas\": [\n        \"NNP\"\n    ], \n    \"evens\": [\n        \"VBZ\"\n    ], \n    \"Nos.\": [\n        \"NNS\"\n    ], \n    \"Cutter\": [\n        \"NNP\"\n    ], \n    \"Lante\": [\n        \"NNP\"\n    ], \n    \"Annex\": [\n        \"NNP\"\n    ], \n    \"Chun\": [\n        \"NNP\"\n    ], \n    \"appraising\": [\n        \"VBG\"\n    ], \n    \"trample\": [\n        \"VB\"\n    ], \n    \"terminating\": [\n        \"VBG\"\n    ], \n    \"general-staff\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"transfusion\": [\n        \"NN\"\n    ], \n    \"Swedish-Swiss\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Madeira\": [\n        \"NNP\"\n    ], \n    \"Lantz\": [\n        \"NNP\"\n    ], \n    \"forcing\": [\n        \"VBG\"\n    ], \n    \"ineligible\": [\n        \"JJ\"\n    ], \n    \"Entre\": [\n        \"NNP\"\n    ], \n    \"Minsk\": [\n        \"NNP\"\n    ], \n    \"registry\": [\n        \"NN\"\n    ], \n    \"Entry\": [\n        \"NN\"\n    ], \n    \"Nations\": [\n        \"NNPS\", \n        \"VBP\", \n        \"NNP|NPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"re-thought\": [\n        \"JJ\"\n    ], \n    \"dabble\": [\n        \"VB\"\n    ], \n    \"Amish\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Caliphobia\": [\n        \"NNP\"\n    ], \n    \"roasters\": [\n        \"NNS\"\n    ], \n    \"plastic-bodied\": [\n        \"JJ\"\n    ], \n    \"moonlight\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"stockpile\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"York-Moscow\": [\n        \"NNP\"\n    ], \n    \"prying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Letting\": [\n        \"VBG\"\n    ], \n    \"Nerien\": [\n        \"NNP\"\n    ], \n    \"semantic\": [\n        \"JJ\"\n    ], \n    \"Compression\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"W.L.\": [\n        \"NNP\"\n    ], \n    \"month\": [\n        \"NN\"\n    ], \n    \"rock-and-roll\": [\n        \"NN\"\n    ], \n    \"bookers\": [\n        \"NNS\"\n    ], \n    \"Renaissance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ultra-high-speed\": [\n        \"JJ\"\n    ], \n    \"pledged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"first-run\": [\n        \"JJ\"\n    ], \n    \"uncollaborated\": [\n        \"JJ\"\n    ], \n    \"insulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"video-distribution\": [\n        \"NN\"\n    ], \n    \"DC-8-62\": [\n        \"NN\"\n    ], \n    \"fountain\": [\n        \"NN\"\n    ], \n    \"pledges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"transience\": [\n        \"NN\"\n    ], \n    \"Hillyard\": [\n        \"NNP\"\n    ], \n    \"resounding\": [\n        \"JJ\"\n    ], \n    \"Steidtmann\": [\n        \"NNP\"\n    ], \n    \"Crabtree\": [\n        \"NNP\"\n    ], \n    \"Buffets\": [\n        \"NNS\"\n    ], \n    \"horror\": [\n        \"NN\"\n    ], \n    \"Revolt\": [\n        \"NN\"\n    ], \n    \"DeBakey\": [\n        \"NNP\"\n    ], \n    \"Newshour\": [\n        \"NN\"\n    ], \n    \"STOPPED\": [\n        \"VBN\"\n    ], \n    \"information-systems\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"begot\": [\n        \"VBD\"\n    ], \n    \"antagonised\": [\n        \"VBN\"\n    ], \n    \"just-ended\": [\n        \"JJ\"\n    ], \n    \"ceaseless\": [\n        \"JJ\"\n    ], \n    \"Canary\": [\n        \"NNP\"\n    ], \n    \"fusillade\": [\n        \"NN\"\n    ], \n    \"Canard\": [\n        \"NNP\"\n    ], \n    \"throbbing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Lipowa\": [\n        \"NNP\"\n    ], \n    \"locomotive\": [\n        \"NN\"\n    ], \n    \"Krapels\": [\n        \"NNP\"\n    ], \n    \"Boatyards\": [\n        \"NNS\"\n    ], \n    \"gut-wrenching\": [\n        \"JJ\"\n    ], \n    \"dual-ladder\": [\n        \"JJ\"\n    ], \n    \"Simonson\": [\n        \"NNP\"\n    ], \n    \"movie-goer\": [\n        \"NN\"\n    ], \n    \"Nuns\": [\n        \"NNPS\"\n    ], \n    \"Readerman\": [\n        \"NNP\"\n    ], \n    \"enjoin\": [\n        \"VB\"\n    ], \n    \"befriends\": [\n        \"VBZ\"\n    ], \n    \"foreign-stock\": [\n        \"JJ\"\n    ], \n    \"envisions\": [\n        \"VBZ\"\n    ], \n    \"chuckle\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"ails\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Kroll\": [\n        \"NNP\"\n    ], \n    \"investing\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"sun-bleached\": [\n        \"JJ\"\n    ], \n    \"Paribas\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"microbiology\": [\n        \"NN\"\n    ], \n    \"Affirmatively\": [\n        \"RB\"\n    ], \n    \"learned\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bartholf\": [\n        \"NNP\"\n    ], \n    \"Craving\": [\n        \"VBG\"\n    ], \n    \"Bioline\": [\n        \"NNP\"\n    ], \n    \"ferocious\": [\n        \"JJ\"\n    ], \n    \"Ifo\": [\n        \"NNP\"\n    ], \n    \"gridlocked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"tracks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"fourth-generation\": [\n        \"JJ\"\n    ], \n    \"Shortage\": [\n        \"NN\"\n    ], \n    \"Nahas\": [\n        \"NNP\"\n    ], \n    \"eventful\": [\n        \"JJ\"\n    ], \n    \"carpetbaggers\": [\n        \"NNS\"\n    ], \n    \"arena\": [\n        \"NN\"\n    ], \n    \"conviction\": [\n        \"NN\"\n    ], \n    \"outgrowth\": [\n        \"NN\"\n    ], \n    \"losses\": [\n        \"NNS\"\n    ], \n    \"dykes\": [\n        \"NNS\"\n    ], \n    \"Interprovincial\": [\n        \"NNP\"\n    ], \n    \"spy-chasing\": [\n        \"NN\"\n    ], \n    \"TransNet\": [\n        \"NNP\"\n    ], \n    \"Gurtz\": [\n        \"NNP\"\n    ], \n    \"sealing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Intermarriage\": [\n        \"NN\"\n    ], \n    \"Joan\": [\n        \"NNP\"\n    ], \n    \"Joao\": [\n        \"NNP\"\n    ], \n    \"inflected\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Castaneda\": [\n        \"NNP\"\n    ], \n    \"SP-44002\": [\n        \"LS\"\n    ], \n    \"requiring\": [\n        \"VBG\"\n    ], \n    \"SP-44001\": [\n        \"LS\"\n    ], \n    \"SP-44006\": [\n        \"LS\"\n    ], \n    \"Emmies\": [\n        \"NNPS\"\n    ], \n    \"mass-transit\": [\n        \"NN\"\n    ], \n    \"SP-44005\": [\n        \"LS\"\n    ], \n    \"revenue-losing\": [\n        \"JJ\"\n    ], \n    \"tender-offer\": [\n        \"JJ\"\n    ], \n    \"Jingsheng\": [\n        \"NNP\"\n    ], \n    \"Fines\": [\n        \"NNP\"\n    ], \n    \"Prothro\": [\n        \"NNP\"\n    ], \n    \"implanted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"conventional\": [\n        \"JJ\"\n    ], \n    \"heartened\": [\n        \"VBN\"\n    ], \n    \"revelation\": [\n        \"NN\"\n    ], \n    \"Chenoweth\": [\n        \"NNP\"\n    ], \n    \"Entenmann\": [\n        \"NNP\"\n    ], \n    \"Warden\": [\n        \"NNP\"\n    ], \n    \"Houk\": [\n        \"NNP\"\n    ], \n    \"Neo-Classicism\": [\n        \"NNP\"\n    ], \n    \"lineups\": [\n        \"NNS\"\n    ], \n    \"conformational\": [\n        \"JJ\"\n    ], \n    \"Limits\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"fusses\": [\n        \"VBZ\"\n    ], \n    \"grimly\": [\n        \"RB\"\n    ], \n    \"outpatient\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"two-time-losers\": [\n        \"JJ\"\n    ], \n    \"Perritt\": [\n        \"NNP\"\n    ], \n    \"Three-month\": [\n        \"JJ\"\n    ], \n    \"Technical-chart\": [\n        \"JJ\"\n    ], \n    \"DiLoreto\": [\n        \"NNP\"\n    ], \n    \"firebombing\": [\n        \"NN\"\n    ], \n    \"grill\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Afterwards\": [\n        \"RB\"\n    ], \n    \"drearier\": [\n        \"RBR\"\n    ], \n    \"high-net-worth\": [\n        \"JJ\"\n    ], \n    \"union-bidder\": [\n        \"NN\"\n    ], \n    \"Hardwicke-Etter\": [\n        \"NNP\"\n    ], \n    \"Martian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"twenty-year\": [\n        \"JJ\"\n    ], \n    \"defense-industry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"brain-wave\": [\n        \"JJ\"\n    ], \n    \"Publick\": [\n        \"NNP\"\n    ], \n    \"Tierney\": [\n        \"NNP\"\n    ], \n    \"Caspar\": [\n        \"NNP\"\n    ], \n    \"Coolidge\": [\n        \"NNP\"\n    ], \n    \"rejuvenate\": [\n        \"VB\"\n    ], \n    \"Pileggi\": [\n        \"NNP\"\n    ], \n    \"publicist\": [\n        \"NN\"\n    ], \n    \"well-behaved\": [\n        \"JJ\"\n    ], \n    \"phosphor\": [\n        \"NN\"\n    ], \n    \"spousal-notification\": [\n        \"NN\"\n    ], \n    \"phrase\": [\n        \"NN\"\n    ], \n    \"spectator-type\": [\n        \"JJ\"\n    ], \n    \"Opening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"utilize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unlucky\": [\n        \"JJ\"\n    ], \n    \"shrouds\": [\n        \"VBZ\"\n    ], \n    \"Pre-College\": [\n        \"NNP\"\n    ], \n    \"Bevo\": [\n        \"NNP\"\n    ], \n    \"Gabelman\": [\n        \"NNP\"\n    ], \n    \"Thielsch\": [\n        \"NNP\"\n    ], \n    \"diffuses\": [\n        \"VBZ\"\n    ], \n    \"Darkling\": [\n        \"NNP\"\n    ], \n    \"Television\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Reciprocal\": [\n        \"NNP\"\n    ], \n    \"Boehmer\": [\n        \"NNP\"\n    ], \n    \"maladjustments\": [\n        \"NNS\"\n    ], \n    \"CoreStates\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Emirates\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"non-romantic\": [\n        \"JJ\"\n    ], \n    \"Viacom\": [\n        \"NNP\"\n    ], \n    \"horizontal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"misnamed\": [\n        \"VBN\"\n    ], \n    \"Ameron\": [\n        \"NNP\"\n    ], \n    \"MBI\": [\n        \"NNP\"\n    ], \n    \"wind-swept\": [\n        \"JJ\"\n    ], \n    \"Flies\": [\n        \"NNS\"\n    ], \n    \"Flier\": [\n        \"NN\"\n    ], \n    \"Mexico\": [\n        \"NNP\"\n    ], \n    \"roundtrip\": [\n        \"NN\"\n    ], \n    \"UDC\": [\n        \"NNP\"\n    ], \n    \"Poster\": [\n        \"NNP\"\n    ], \n    \"Myrtle\": [\n        \"NNP\"\n    ], \n    \"McCaskill\": [\n        \"NNP\"\n    ], \n    \"granulocyte-macrophage\": [\n        \"NN\"\n    ], \n    \"miso\": [\n        \"NN\"\n    ], \n    \"remnants\": [\n        \"NNS\"\n    ], \n    \"Serenissimus\": [\n        \"NNP\"\n    ], \n    \"Midler\": [\n        \"NNP\"\n    ], \n    \"thermal\": [\n        \"JJ\"\n    ], \n    \"Weedon\": [\n        \"NNP\"\n    ], \n    \"gray-haired\": [\n        \"JJ\"\n    ], \n    \"Petrochemical\": [\n        \"NNP\"\n    ], \n    \"wishful\": [\n        \"JJ\"\n    ], \n    \"Platonica\": [\n        \"FW\"\n    ], \n    \"Phelan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"territorial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"autoclave\": [\n        \"NN\"\n    ], \n    \"Hypothesizing\": [\n        \"VBG\"\n    ], \n    \"systems\": [\n        \"NNS\"\n    ], \n    \"founders\": [\n        \"NNS\"\n    ], \n    \"Chong\": [\n        \"NNP\"\n    ], \n    \"Inada\": [\n        \"NNP\"\n    ], \n    \"food-safety\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Classicist\": [\n        \"NN\"\n    ], \n    \"Fearful\": [\n        \"JJ\"\n    ], \n    \"tumbles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"electives\": [\n        \"NNS\"\n    ], \n    \"Siberian\": [\n        \"JJ\"\n    ], \n    \"engine-casting\": [\n        \"NN\"\n    ], \n    \"Doron\": [\n        \"NNP\"\n    ], \n    \"permissible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Makato\": [\n        \"NNP\"\n    ], \n    \"transcendence\": [\n        \"NN\"\n    ], \n    \"Liar\": [\n        \"NN\"\n    ], \n    \"re-adopt\": [\n        \"NN\"\n    ], \n    \"pool-table\": [\n        \"NN\"\n    ], \n    \"watchdog\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"predators\": [\n        \"NNS\"\n    ], \n    \"purpling\": [\n        \"VBG\"\n    ], \n    \"lifestyles\": [\n        \"NNS\"\n    ], \n    \"predatory\": [\n        \"JJ\"\n    ], \n    \"barrels\": [\n        \"NNS\"\n    ], \n    \"ATTORNEY\": [\n        \"NNP\"\n    ], \n    \"Afghans\": [\n        \"NNPS\"\n    ], \n    \"Yuk-sui\": [\n        \"NNP\"\n    ], \n    \"Stockhausen\": [\n        \"NNP\"\n    ], \n    \"jaws\": [\n        \"NNS\"\n    ], \n    \"exasperated\": [\n        \"JJ\"\n    ], \n    \"Lapps\": [\n        \"NNPS\"\n    ], \n    \"ALLWASTE\": [\n        \"NNP\"\n    ], \n    \"punitive\": [\n        \"JJ\"\n    ], \n    \"deride\": [\n        \"VBP\"\n    ], \n    \"Guillaume\": [\n        \"NNP\"\n    ], \n    \"Feeder\": [\n        \"NN\"\n    ], \n    \"absurdity\": [\n        \"NN\"\n    ], \n    \"nonvirulent\": [\n        \"JJ\"\n    ], \n    \"TESTS\": [\n        \"NNS\"\n    ], \n    \"Farina\": [\n        \"NNP\"\n    ], \n    \"wedlock\": [\n        \"NN\"\n    ], \n    \"splattered\": [\n        \"VBN\"\n    ], \n    \"Nikons\": [\n        \"NNPS\"\n    ], \n    \"testify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ainslie\": [\n        \"NNP\"\n    ], \n    \"coincidences\": [\n        \"NNS\"\n    ], \n    \"safety\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"inactivated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Prudential-Bache\": [\n        \"NNP\"\n    ], \n    \"mittens\": [\n        \"NNS\"\n    ], \n    \"counterrevolutionary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"None\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"spelling-only\": [\n        \"JJ\"\n    ], \n    \"housed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"favored\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"PROPOSALS\": [\n        \"NNS\"\n    ], \n    \"preventatives\": [\n        \"NNS\"\n    ], \n    \"houses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"unsightly\": [\n        \"JJ\"\n    ], \n    \"brightest\": [\n        \"JJS\"\n    ], \n    \"overshadowing\": [\n        \"VBG\"\n    ], \n    \"turnout\": [\n        \"NN\"\n    ], \n    \"speculation\": [\n        \"NN\"\n    ], \n    \"chemical-industry\": [\n        \"NN\"\n    ], \n    \"unresolved\": [\n        \"JJ\"\n    ], \n    \"BL\": [\n        \"NNP\"\n    ], \n    \"Fill-Or-Kill\": [\n        \"NNP\"\n    ], \n    \"millenarians\": [\n        \"NNS\"\n    ], \n    \"racial-preference\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"indivisibility\": [\n        \"NN\"\n    ], \n    \"ACTING\": [\n        \"JJ\"\n    ], \n    \"uncertainly\": [\n        \"RB\"\n    ], \n    \"Uniroyal-Goodrich\": [\n        \"NNP\"\n    ], \n    \"apocalypse\": [\n        \"NN\"\n    ], \n    \"pro-Socialist\": [\n        \"JJ\"\n    ], \n    \"Handel\": [\n        \"NNP\"\n    ], \n    \"decapitalize\": [\n        \"VBP\"\n    ], \n    \"oncologist\": [\n        \"NN\"\n    ], \n    \"E.T.\": [\n        \"NNP\"\n    ], \n    \"Mennonites\": [\n        \"NNPS\"\n    ], \n    \"incubated\": [\n        \"VBN\"\n    ], \n    \"warty\": [\n        \"JJ\"\n    ], \n    \"Bharat\": [\n        \"NNP\"\n    ], \n    \"warts\": [\n        \"NNS\"\n    ], \n    \"horse\": [\n        \"NN\"\n    ], \n    \"Autos\": [\n        \"NNS\"\n    ], \n    \"Brailsford\": [\n        \"NNP\"\n    ], \n    \"Youngsters\": [\n        \"NNS\"\n    ], \n    \"Olympus\": [\n        \"NN\"\n    ], \n    \"Ponoluu\": [\n        \"NNP\"\n    ], \n    \"Zombie\": [\n        \"NNP\"\n    ], \n    \"station\": [\n        \"NN\"\n    ], \n    \"seafaring\": [\n        \"JJ\"\n    ], \n    \"dual-trading\": [\n        \"NN\"\n    ], \n    \"Cynewulf\": [\n        \"NNP\"\n    ], \n    \"Emancipation\": [\n        \"NNP\"\n    ], \n    \"South-Asian\": [\n        \"NNP\"\n    ], \n    \"APPB\": [\n        \"NNP\"\n    ], \n    \"million-common\": [\n        \"NN\"\n    ], \n    \"quivered\": [\n        \"VBD\"\n    ], \n    \"Molotov\": [\n        \"NNP\"\n    ], \n    \"Fries\": [\n        \"NNP\"\n    ], \n    \"Purloined\": [\n        \"NNP\"\n    ], \n    \"accesory\": [\n        \"NN\"\n    ], \n    \"consonant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fried\": [\n        \"NNP\"\n    ], \n    \"tapestries\": [\n        \"NNS\"\n    ], \n    \"classifiers\": [\n        \"NNS\"\n    ], \n    \"Buffetts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"gret\": [\n        \"JJ\"\n    ], \n    \"grew\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"self-awareness\": [\n        \"NN\"\n    ], \n    \"Valleyfair\": [\n        \"NNP\"\n    ], \n    \"Korn\\\\/Ferry\": [\n        \"NNP\"\n    ], \n    \"grey\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"non-newspaper\": [\n        \"JJ\"\n    ], \n    \"Krystallographie\": [\n        \"NNP\"\n    ], \n    \"Cecil\": [\n        \"NNP\"\n    ], \n    \"Cecin\": [\n        \"NNP\"\n    ], \n    \"contraception\": [\n        \"NN\"\n    ], \n    \"Bowker\": [\n        \"NNP\"\n    ], \n    \"Poulenc\": [\n        \"NNP\"\n    ], \n    \"LINCOLN\": [\n        \"NNP\"\n    ], \n    \"Peng\": [\n        \"NNP\"\n    ], \n    \"perestroika\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Fortney\": [\n        \"NNP\"\n    ], \n    \"Penn\": [\n        \"NNP\"\n    ], \n    \"blissful\": [\n        \"JJ\"\n    ], \n    \"null\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Penh\": [\n        \"NNP\"\n    ], \n    \"Fleeting\": [\n        \"JJ\"\n    ], \n    \"cave\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Sheboygan\": [\n        \"NNP\"\n    ], \n    \"AjA\": [\n        \"NNP\"\n    ], \n    \"AjB\": [\n        \"NNP\"\n    ], \n    \"options-related\": [\n        \"JJ\"\n    ], \n    \"six-story\": [\n        \"JJ\"\n    ], \n    \"Lightfoot\": [\n        \"NNP\"\n    ], \n    \"aired\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hires\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Sewickley\": [\n        \"NNP\"\n    ], \n    \"multilingual\": [\n        \"JJ\"\n    ], \n    \"Anthropologists\": [\n        \"NNS\"\n    ], \n    \"bettered\": [\n        \"VBD\"\n    ], \n    \"Kisscorni\": [\n        \"NNP\"\n    ], \n    \"hired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"reawaken\": [\n        \"VB\"\n    ], \n    \"Aj.\": [\n        \"NNP\"\n    ], \n    \"Iosola\": [\n        \"NNP\"\n    ], \n    \"Adamson\": [\n        \"NNP\"\n    ], \n    \"Crum\": [\n        \"NNP\"\n    ], \n    \"Satis\": [\n        \"NNP\"\n    ], \n    \"direct-investment\": [\n        \"JJ\"\n    ], \n    \"raving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"sturdy\": [\n        \"JJ\"\n    ], \n    \"Viewer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bedfast\": [\n        \"JJ\"\n    ], \n    \"Sayles\": [\n        \"NNP\"\n    ], \n    \"tongs\": [\n        \"NNS\"\n    ], \n    \"part-time\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"electrons\": [\n        \"NNS\"\n    ], \n    \"Callahan\": [\n        \"NNP\"\n    ], \n    \"bower\": [\n        \"NN\"\n    ], \n    \"unwed\": [\n        \"JJ\"\n    ], \n    \"tubes\": [\n        \"NNS\"\n    ], \n    \"naively\": [\n        \"RB\"\n    ], \n    \"Viewed\": [\n        \"VBN\"\n    ], \n    \"one-eighth\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Pythagoreans\": [\n        \"NNPS\"\n    ], \n    \"seven-hit\": [\n        \"JJ\"\n    ], \n    \"Favour\": [\n        \"NN\"\n    ], \n    \"velvety\": [\n        \"JJ\"\n    ], \n    \"ringers\": [\n        \"NNS\"\n    ], \n    \"albums\": [\n        \"NNS\"\n    ], \n    \"distressing\": [\n        \"JJ\"\n    ], \n    \"Dorens\": [\n        \"NNP\"\n    ], \n    \"Redmond\": [\n        \"NNP\"\n    ], \n    \"justice\": [\n        \"NN\"\n    ], \n    \"Multiphastic\": [\n        \"NNP\"\n    ], \n    \"get...\": [\n        \":\"\n    ], \n    \"Dorena\": [\n        \"NNP\"\n    ], \n    \"Caravaggio\": [\n        \"NNP\"\n    ], \n    \"Norment\": [\n        \"NNP\"\n    ], \n    \"porcupine\": [\n        \"NN\"\n    ], \n    \"financing\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"strut\": [\n        \"NN\"\n    ], \n    \"Intercollegiate\": [\n        \"NNP\"\n    ], \n    \"Tillotson\": [\n        \"NNP\"\n    ], \n    \"Gas-cooled\": [\n        \"JJ\"\n    ], \n    \"Eaton\": [\n        \"NNP\"\n    ], \n    \"tear-jerkers\": [\n        \"NNS\"\n    ], \n    \"pretending\": [\n        \"VBG\"\n    ], \n    \"caseloads\": [\n        \"NNS\"\n    ], \n    \"remarketings\": [\n        \"NNS\"\n    ], \n    \"Maxima\": [\n        \"NNP\"\n    ], \n    \"Nev.\": [\n        \"NNP\"\n    ], \n    \"co-operate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Auntie\": [\n        \"NNP\"\n    ], \n    \"adhering\": [\n        \"VBG\"\n    ], \n    \"retaliation\": [\n        \"NN\"\n    ], \n    \"stored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stott\": [\n        \"NNP\"\n    ], \n    \"after-hours\": [\n        \"JJ\", \n        \"NNS\", \n        \"RB\"\n    ], \n    \"buyings\": [\n        \"NNS\"\n    ], \n    \"Guides\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"andrenas\": [\n        \"NNPS\"\n    ], \n    \"patriotism\": [\n        \"NN\"\n    ], \n    \"management-consulting\": [\n        \"JJ\"\n    ], \n    \"culture\": [\n        \"NN\"\n    ], \n    \"Centronics\": [\n        \"NNP\"\n    ], \n    \"Schillinger\": [\n        \"NNP\"\n    ], \n    \"hell-bound\": [\n        \"JJ\"\n    ], \n    \"Emma\": [\n        \"NNP\"\n    ], \n    \"termites\": [\n        \"NNS\"\n    ], \n    \"colonialists\": [\n        \"NNS\"\n    ], \n    \"life-supporting\": [\n        \"JJ\"\n    ], \n    \"Messinger\": [\n        \"NNP\"\n    ], \n    \"pictures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"utopia\": [\n        \"NN\"\n    ], \n    \"Depletions\": [\n        \"NNS\"\n    ], \n    \"round-bottom\": [\n        \"JJ\"\n    ], \n    \"pictured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"perversities\": [\n        \"NNS\"\n    ], \n    \"Hogwash\": [\n        \"NN\"\n    ], \n    \"stagnation\": [\n        \"NN\"\n    ], \n    \"Isabella\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Butterworth\": [\n        \"NNP\"\n    ], \n    \"Isabelle\": [\n        \"NNP\"\n    ], \n    \"lange\": [\n        \"FW\"\n    ], \n    \"Ohioan\": [\n        \"NNP\"\n    ], \n    \"spray\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Zamiatin\": [\n        \"NNP\"\n    ], \n    \"negligent-homicide\": [\n        \"NN\"\n    ], \n    \"half-hearted\": [\n        \"JJ\"\n    ], \n    \"Tuskegee\": [\n        \"NNP\"\n    ], \n    \"B.C.-based\": [\n        \"JJ\"\n    ], \n    \"zipper\": [\n        \"NN\"\n    ], \n    \"Anchisi\": [\n        \"NNP\"\n    ], \n    \"kneeled\": [\n        \"VBD\"\n    ], \n    \"commoditize\": [\n        \"VB\"\n    ], \n    \"Kochis\": [\n        \"NNP\"\n    ], \n    \"Consciousness\": [\n        \"NN\"\n    ], \n    \"cashing\": [\n        \"VBG\"\n    ], \n    \"Disciplinary\": [\n        \"NNP\"\n    ], \n    \"Steve\": [\n        \"NNP\"\n    ], \n    \"Merits\": [\n        \"NNS\"\n    ], \n    \"forgotten\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"vault\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"experimental\": [\n        \"JJ\"\n    ], \n    \"Spacenet\": [\n        \"NNP\"\n    ], \n    \"Irish-made\": [\n        \"JJ\"\n    ], \n    \"expendable\": [\n        \"JJ\"\n    ], \n    \"waterside\": [\n        \"NN\"\n    ], \n    \"post-colonialism\": [\n        \"NN\"\n    ], \n    \"unfolded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"recommending\": [\n        \"VBG\"\n    ], \n    \"Educator\": [\n        \"NNP\"\n    ], \n    \"mist-like\": [\n        \"JJ\"\n    ], \n    \"employee-ownership\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Grand-Clement\": [\n        \"NNP\"\n    ], \n    \"Bethel\": [\n        \"NNP\"\n    ], \n    \"irresponsibility\": [\n        \"NN\"\n    ], \n    \"Bethea\": [\n        \"NNP\"\n    ], \n    \"wifely\": [\n        \"JJ\"\n    ], \n    \"Coble\": [\n        \"NNP\"\n    ], \n    \"ever-faster\": [\n        \"JJ\"\n    ], \n    \"Gingrich\": [\n        \"NNP\"\n    ], \n    \"Czechoslovaks\": [\n        \"NNPS\"\n    ], \n    \"test-tube\": [\n        \"NN\"\n    ], \n    \"lived\": [\n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"Ballard\": [\n        \"NNP\"\n    ], \n    \"Angenics\": [\n        \"NNP\"\n    ], \n    \"Flashed\": [\n        \"VBN\"\n    ], \n    \"Broadcasting\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Buchbinder\": [\n        \"NNP\"\n    ], \n    \"liver\": [\n        \"NN\"\n    ], \n    \"Pick\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"safety-sensitive\": [\n        \"JJ\"\n    ], \n    \"Sumner\": [\n        \"NNP\"\n    ], \n    \"lutihaw\": [\n        \"FW\"\n    ], \n    \"two-by-four\": [\n        \"NN\"\n    ], \n    \"pact\": [\n        \"NN\"\n    ], \n    \"intriguing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"practicality\": [\n        \"NN\"\n    ], \n    \"Sotun\": [\n        \"NNP\"\n    ], \n    \"Garner\": [\n        \"NNP\"\n    ], \n    \"Agency\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pace\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Incest\": [\n        \"NN\"\n    ], \n    \"smart\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Lemanowicz\": [\n        \"NNP\"\n    ], \n    \"Renfro\": [\n        \"NNP\"\n    ], \n    \"comrades\": [\n        \"NNS\"\n    ], \n    \"mailrooms\": [\n        \"NNS\"\n    ], \n    \"guide\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"pack\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"smacked\": [\n        \"VBD\"\n    ], \n    \"costly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"funded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"wagering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"forebear\": [\n        \"NN\"\n    ], \n    \"Racism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ground-glass\": [\n        \"JJ\"\n    ], \n    \"sluice\": [\n        \"NN\"\n    ], \n    \"Slash\": [\n        \"VB\"\n    ], \n    \"Eagles\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"payers\": [\n        \"NNS\"\n    ], \n    \"Esther\": [\n        \"NNP\"\n    ], \n    \"Ingot\": [\n        \"NN\"\n    ], \n    \"mulitiplier\": [\n        \"JJ\"\n    ], \n    \"Murdoch\": [\n        \"NNP\"\n    ], \n    \"Extraordinary\": [\n        \"JJ\"\n    ], \n    \"fabulations\": [\n        \"NNS\"\n    ], \n    \"energizing\": [\n        \"VBG\"\n    ], \n    \"Phyllis\": [\n        \"NNP\"\n    ], \n    \"Gaulle\": [\n        \"NNP\"\n    ], \n    \"impious\": [\n        \"JJ\"\n    ], \n    \"superfast\": [\n        \"JJ\"\n    ], \n    \"ratings\": [\n        \"NNS\"\n    ], \n    \"banter\": [\n        \"NN\"\n    ], \n    \"Scenes\": [\n        \"NNS\"\n    ], \n    \"Movies\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"computer-controlled\": [\n        \"JJ\"\n    ], \n    \"Lagnado\": [\n        \"NNP\"\n    ], \n    \"multisided\": [\n        \"JJ\"\n    ], \n    \"Berlaymont\": [\n        \"NNP\"\n    ], \n    \"Oswego\": [\n        \"NNP\"\n    ], \n    \"consistence\": [\n        \"NN\"\n    ], \n    \"accrediting\": [\n        \"NN\"\n    ], \n    \"NewsHour\": [\n        \"NNP\"\n    ], \n    \"double-stage\": [\n        \"JJ\"\n    ], \n    \"consistency\": [\n        \"NN\"\n    ], \n    \"canned-mushroom\": [\n        \"JJ\"\n    ], \n    \"Grafton\": [\n        \"NNP\"\n    ], \n    \"romanticize\": [\n        \"VB\"\n    ], \n    \"Living\": [\n        \"NNP\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"exploits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"powering\": [\n        \"VBG\"\n    ], \n    \"Cavallo\": [\n        \"NNP\"\n    ], \n    \"shivering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Cavalli\": [\n        \"NNP\"\n    ], \n    \"Tyler\": [\n        \"NNP\"\n    ], \n    \"Usery\": [\n        \"NNP\"\n    ], \n    \"RoadRailers\": [\n        \"NNPS\"\n    ], \n    \"disseminate\": [\n        \"VB\"\n    ], \n    \"Benzinger\": [\n        \"NNP\"\n    ], \n    \"excavators\": [\n        \"NNS\"\n    ], \n    \"Commodore\": [\n        \"NNP\"\n    ], \n    \"Krys\": [\n        \"NNP\"\n    ], \n    \"Visigoths\": [\n        \"NNPS\"\n    ], \n    \"useless\": [\n        \"JJ\"\n    ], \n    \"brushed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Rimmer\": [\n        \"NNP\"\n    ], \n    \"Graphic\": [\n        \"NNP\"\n    ], \n    \"Dowty\": [\n        \"NNP\"\n    ], \n    \"Demodocus\": [\n        \"NNP\"\n    ], \n    \"well-populated\": [\n        \"JJ\"\n    ], \n    \"wonderbars\": [\n        \"NNS\"\n    ], \n    \"notched-stick\": [\n        \"JJ\"\n    ], \n    \"Hockaday\": [\n        \"NNP\"\n    ], \n    \"M.B.A.s\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Madeleine\": [\n        \"NNP\"\n    ], \n    \"diuretics\": [\n        \"NNS\"\n    ], \n    \"debt-induced\": [\n        \"JJ\"\n    ], \n    \"vests\": [\n        \"NNS\"\n    ], \n    \"excluding\": [\n        \"VBG\"\n    ], \n    \"envisioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Keynesian\": [\n        \"JJ\"\n    ], \n    \"Auxiliaries\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Cogan\": [\n        \"NNP\"\n    ], \n    \"popular\": [\n        \"JJ\"\n    ], \n    \"Dunaway\": [\n        \"NNP\"\n    ], \n    \"Sarpsis\": [\n        \"NNP\"\n    ], \n    \"sonny-boy\": [\n        \"NN\"\n    ], \n    \"cones\": [\n        \"NNS\"\n    ], \n    \"freebase\": [\n        \"NN\"\n    ], \n    \"Hyman\": [\n        \"NNP\"\n    ], \n    \"Unitrode\": [\n        \"NNP\"\n    ], \n    \"economic\": [\n        \"JJ\"\n    ], \n    \"Midwestern\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Jesuits\": [\n        \"NNPS\"\n    ], \n    \"AMs\": [\n        \"NNS\"\n    ], \n    \"Difficult\": [\n        \"JJ\"\n    ], \n    \"AMI\": [\n        \"NNP\"\n    ], \n    \"Grossinger\": [\n        \"NNP\"\n    ], \n    \"Dooling\": [\n        \"NNP\"\n    ], \n    \"SPRUCING\": [\n        \"VBG\"\n    ], \n    \"AMA\": [\n        \"NNP\"\n    ], \n    \"spouting\": [\n        \"VBG\"\n    ], \n    \"AMC\": [\n        \"NNP\"\n    ], \n    \"AMF\": [\n        \"NNP\"\n    ], \n    \"Tennessean\": [\n        \"NNP\"\n    ], \n    \"AMP\": [\n        \"NNP\"\n    ], \n    \"AMR\": [\n        \"NNP\"\n    ], \n    \"AMT\": [\n        \"NNP\"\n    ], \n    \"MassMutual\": [\n        \"NNP\"\n    ], \n    \"Epistles\": [\n        \"NNPS\"\n    ], \n    \"Bila\": [\n        \"NNP\"\n    ], \n    \"anecdotes\": [\n        \"NNS\"\n    ], \n    \"Bill\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"equipotent\": [\n        \"JJ\"\n    ], \n    \"MacMillan\": [\n        \"NNP\"\n    ], \n    \"negatives\": [\n        \"NNS\"\n    ], \n    \"Homeric\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Decliners\": [\n        \"NNS\"\n    ], \n    \"smothered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"SCANDALS\": [\n        \"NNS\"\n    ], \n    \"Nouveaux\": [\n        \"NNP\"\n    ], \n    \"turret\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Distant\": [\n        \"JJ\"\n    ], \n    \"Looks\": [\n        \"VBZ\"\n    ], \n    \"high-heeled\": [\n        \"JJ\"\n    ], \n    \"geosciences\": [\n        \"NNS\"\n    ], \n    \"Looky\": [\n        \"VB\"\n    ], \n    \"Baron\": [\n        \"NNP\"\n    ], \n    \"hounding\": [\n        \"VBG\"\n    ], \n    \"tofu\": [\n        \"NN\"\n    ], \n    \"Beauchamps\": [\n        \"NNPS\"\n    ], \n    \"alpha\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Discovering\": [\n        \"VBG\"\n    ], \n    \"RoadRailing\": [\n        \"VBG\"\n    ], \n    \"Gershwin\": [\n        \"NNP\"\n    ], \n    \"Boulder\": [\n        \"NNP\"\n    ], \n    \"yo-yo\": [\n        \"NN\"\n    ], \n    \"supplicating\": [\n        \"VBG\"\n    ], \n    \"Diversey\": [\n        \"NNP\"\n    ], \n    \"approved\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Nadine\": [\n        \"NNP\"\n    ], \n    \"spawning\": [\n        \"VBG\"\n    ], \n    \"eons\": [\n        \"NNS\"\n    ], \n    \"Tonal\": [\n        \"JJ\"\n    ], \n    \"done-and\": [\n        \"CC\"\n    ], \n    \"janitors\": [\n        \"NNS\"\n    ], \n    \"Tosca\": [\n        \"NNP\"\n    ], \n    \"Littell\": [\n        \"NNP\"\n    ], \n    \"shouldered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"injection\": [\n        \"NN\"\n    ], \n    \"probate\": [\n        \"NN\"\n    ], \n    \"Tosco\": [\n        \"NNP\"\n    ], \n    \"Metatrace\": [\n        \"NNP\"\n    ], \n    \"Woodward\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"vacancies\": [\n        \"NNS\"\n    ], \n    \"Schnuck\": [\n        \"NNP\"\n    ], \n    \"Saadi\": [\n        \"NNP\"\n    ], \n    \"preparative\": [\n        \"JJ\"\n    ], \n    \"Buber-think\": [\n        \"NNP|VB\"\n    ], \n    \"Wylie\": [\n        \"NNP\"\n    ], \n    \"Blackmer\": [\n        \"NNP\"\n    ], \n    \"reverse-reverse\": [\n        \"JJ\"\n    ], \n    \"Tu\": [\n        \"NNP\"\n    ], \n    \"accessibility\": [\n        \"NN\"\n    ], \n    \"utility-cost\": [\n        \"NN\"\n    ], \n    \"Aviv\": [\n        \"NNP\"\n    ], \n    \"To\": [\n        \"TO\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"canonist\": [\n        \"NN\"\n    ], \n    \"Barshop\": [\n        \"NNP\"\n    ], \n    \"Avis\": [\n        \"NNP\"\n    ], \n    \"Ti\": [\n        \"NNP\"\n    ], \n    \"three-to-five-year\": [\n        \"JJ\"\n    ], \n    \"evocative\": [\n        \"JJ\"\n    ], \n    \"surmise\": [\n        \"VB\"\n    ], \n    \"Cardizem\": [\n        \"NNP\"\n    ], \n    \"Spanish-language\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"goddamit\": [\n        \"UH\"\n    ], \n    \"TV\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"TW\": [\n        \"NNP\"\n    ], \n    \"TR\": [\n        \"NNP\"\n    ], \n    \"cesium-137\": [\n        \"NN\"\n    ], \n    \"Default\": [\n        \"NNP\"\n    ], \n    \"co-obligation\": [\n        \"NN\"\n    ], \n    \"TI\": [\n        \"NNP\"\n    ], \n    \"Versicherung\": [\n        \"NNP\"\n    ], \n    \"TD\": [\n        \"NNP\"\n    ], \n    \"TB\": [\n        \"NN\"\n    ], \n    \"TC\": [\n        \"NNP\"\n    ], \n    \"arithmetic\": [\n        \"NN\"\n    ], \n    \"TA\": [\n        \"NNP\"\n    ], \n    \"Customer\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"wohd\": [\n        \"NN\"\n    ], \n    \"venerable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"laboratory-supply\": [\n        \"JJ\"\n    ], \n    \"T8\": [\n        \"NNP\"\n    ], \n    \"Pounds\": [\n        \"NNS\"\n    ], \n    \"pickup-bed\": [\n        \"NN\"\n    ], \n    \"Median\": [\n        \"JJ\"\n    ], \n    \"Crippling\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"T.\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"Woodcliff\": [\n        \"NNP\"\n    ], \n    \"labels.\": [\n        \"NNS\"\n    ], \n    \"Amazonian\": [\n        \"JJ\"\n    ], \n    \"Minutemen\": [\n        \"NNPS\"\n    ], \n    \"Sparrows\": [\n        \"NNP\"\n    ], \n    \"earphones\": [\n        \"NNS\"\n    ], \n    \"arch-enemy\": [\n        \"NN\"\n    ], \n    \"e\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Uzi\": [\n        \"NNP\"\n    ], \n    \"complicating\": [\n        \"VBG\"\n    ], \n    \"animal-rights\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Donations\": [\n        \"NNS\"\n    ], \n    \"underrated\": [\n        \"VBN\"\n    ], \n    \"imprecise\": [\n        \"JJ\"\n    ], \n    \"virtue\": [\n        \"NN\"\n    ], \n    \"Yalobusha\": [\n        \"NNP\"\n    ], \n    \"Westburne\": [\n        \"NNP\"\n    ], \n    \"Boccone\": [\n        \"NNP\"\n    ], \n    \"OST\": [\n        \"NNP\"\n    ], \n    \"Barsuki\": [\n        \"NNP\"\n    ], \n    \"bioTechnology\": [\n        \"NNP\"\n    ], \n    \"wall-paneling\": [\n        \"JJ\"\n    ], \n    \"Clasping\": [\n        \"VBG\"\n    ], \n    \"mid-morning\": [\n        \"NN\"\n    ], \n    \"Scheduled\": [\n        \"VBN\"\n    ], \n    \"Biddle\": [\n        \"NNP\"\n    ], \n    \"birthplace\": [\n        \"NN\"\n    ], \n    \"commas\": [\n        \"NNS\"\n    ], \n    \"sales-conscious\": [\n        \"JJ\"\n    ], \n    \"J/NNP.A.\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"optical-scanning\": [\n        \"JJ\"\n    ], \n    \"re-establishing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Rekindled\": [\n        \"VBN\"\n    ], \n    \"Schedules\": [\n        \"NNS\"\n    ], \n    \"Sulphur\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"friendly\": [\n        \"JJ\"\n    ], \n    \"Stress\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Penrose\": [\n        \"NNP\"\n    ], \n    \"wave\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"coffeecup\": [\n        \"NN\"\n    ], \n    \"felicity\": [\n        \"NN\"\n    ], \n    \"Risks\": [\n        \"NNS\"\n    ], \n    \"rattling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Deukmejian\": [\n        \"NNP\"\n    ], \n    \"Camry\": [\n        \"NNP\"\n    ], \n    \"Korbich\": [\n        \"NNP\"\n    ], \n    \"Acquisition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Risky\": [\n        \"NNP\"\n    ], \n    \"Embryo\": [\n        \"NN\"\n    ], \n    \"Charlotte\": [\n        \"NNP\"\n    ], \n    \"Hewett\": [\n        \"NNP\"\n    ], \n    \"Sago\": [\n        \"NNP\"\n    ], \n    \"acute-care\": [\n        \"NN\"\n    ], \n    \"compassionate\": [\n        \"JJ\"\n    ], \n    \"near-synonyms\": [\n        \"NNS\"\n    ], \n    \"self-starting\": [\n        \"JJ\"\n    ], \n    \"Tyco\": [\n        \"NNP\"\n    ], \n    \"Tuesdays\": [\n        \"NNPS\"\n    ], \n    \"rationalizing\": [\n        \"VBG\"\n    ], \n    \"Index\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Laughlin\": [\n        \"NNP\"\n    ], \n    \"Magnificent\": [\n        \"JJ\"\n    ], \n    \"SEAQ\": [\n        \"NNP\"\n    ], \n    \"Cameras\": [\n        \"NNS\"\n    ], \n    \"SEAT\": [\n        \"NNP\"\n    ], \n    \"redone\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pre-literate\": [\n        \"JJ\"\n    ], \n    \"Camera\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"muffs\": [\n        \"NNS\"\n    ], \n    \"parimutuels\": [\n        \"NNS\"\n    ], \n    \"sultans\": [\n        \"NNS\"\n    ], \n    \"Ishiguro\": [\n        \"NNP\"\n    ], \n    \"Raton\": [\n        \"NNP\"\n    ], \n    \"Disadvantages\": [\n        \"NNS\"\n    ], \n    \"pitilessly\": [\n        \"RB\"\n    ], \n    \"Disadvantaged\": [\n        \"NNP\"\n    ], \n    \"Kristin\": [\n        \"NNP\"\n    ], \n    \"Coors-Stroh\": [\n        \"NNP\"\n    ], \n    \"Copiague\": [\n        \"NNP\"\n    ], \n    \"long-handled\": [\n        \"JJ\"\n    ], \n    \"Publisher\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Locked\": [\n        \"VBN\"\n    ], \n    \"Airman\": [\n        \"NNP\"\n    ], \n    \"Blanched\": [\n        \"VBN\"\n    ], \n    \"kidnapper\": [\n        \"NN\"\n    ], \n    \"KHAD\\\\/WAD\": [\n        \"NN\"\n    ], \n    \"Popes\": [\n        \"NNPS\"\n    ], \n    \"Locker\": [\n        \"NNP\"\n    ], \n    \"Published\": [\n        \"VBN\"\n    ], \n    \"non-dairy-creamer\": [\n        \"NN\"\n    ], \n    \"enterprising\": [\n        \"JJ\"\n    ], \n    \"Rosalco\": [\n        \"NNP\"\n    ], \n    \"AZT-treated\": [\n        \"JJ\"\n    ], \n    \"convert\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"fAs\": [\n        \"NNP\"\n    ], \n    \"villages\": [\n        \"NNS\"\n    ], \n    \"Tells\": [\n        \"VBZ\"\n    ], \n    \"Theodore\": [\n        \"NNP\"\n    ], \n    \"cave-in\": [\n        \"NN\"\n    ], \n    \"Greenleaf\": [\n        \"NNP\"\n    ], \n    \"comminge\": [\n        \"VBG\"\n    ], \n    \"Soapy\": [\n        \"JJ\"\n    ], \n    \"diaper-changing\": [\n        \"JJ\"\n    ], \n    \"gene\": [\n        \"NN\"\n    ], \n    \"salvation\": [\n        \"NN\"\n    ], \n    \"frictional\": [\n        \"JJ\"\n    ], \n    \"Grunfeld\": [\n        \"NNP\"\n    ], \n    \"Blake\": [\n        \"NNP\"\n    ], \n    \"Doctor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rakishly\": [\n        \"RB\"\n    ], \n    \"Contributing\": [\n        \"VBG\"\n    ], \n    \"Enskilda\": [\n        \"NNP\"\n    ], \n    \"buildup\": [\n        \"NN\"\n    ], \n    \"infest\": [\n        \"VB\"\n    ], \n    \"well-polished\": [\n        \"JJ\"\n    ], \n    \"handfuls\": [\n        \"NNS\"\n    ], \n    \"enterprisingly\": [\n        \"RB\"\n    ], \n    \"Fields\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Rapanelli\": [\n        \"NNP\"\n    ], \n    \"traditionalized\": [\n        \"VBN\"\n    ], \n    \"Disputes\": [\n        \"NNP\"\n    ], \n    \"devotedly\": [\n        \"RB\"\n    ], \n    \"historically\": [\n        \"RB\"\n    ], \n    \"subsection\": [\n        \"NN\"\n    ], \n    \"compatriot\": [\n        \"NN\"\n    ], \n    \"CARTER-WALLACE\": [\n        \"NNP\"\n    ], \n    \"formally\": [\n        \"RB\"\n    ], \n    \"balsams\": [\n        \"NNS\"\n    ], \n    \"Roffman\": [\n        \"NNP\"\n    ], \n    \"visibility\": [\n        \"NN\"\n    ], \n    \"charming\": [\n        \"JJ\"\n    ], \n    \"Kirkwood\": [\n        \"NNP\"\n    ], \n    \"Squibb\": [\n        \"NNP\"\n    ], \n    \"appointed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"blithely\": [\n        \"RB\"\n    ], \n    \"wearin\": [\n        \"VBG\"\n    ], \n    \"lapse\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"exeuctive\": [\n        \"NN\"\n    ], \n    \"postmarked\": [\n        \"VBN\"\n    ], \n    \"ensconced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"transmitted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Birmingham\": [\n        \"NNP\"\n    ], \n    \"Mapplethorpe\": [\n        \"NNP\"\n    ], \n    \"Circumstances\": [\n        \"NNS\"\n    ], \n    \"unveiled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"double-valued\": [\n        \"JJ\"\n    ], \n    \"Brooklyn-born\": [\n        \"JJ\"\n    ], \n    \"Qantas\": [\n        \"NNP\"\n    ], \n    \"Lovell\": [\n        \"NNP\"\n    ], \n    \"Friedberg\": [\n        \"NNP\"\n    ], \n    \"Shipyards\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"high-VAT\": [\n        \"JJ\"\n    ], \n    \"Lovely\": [\n        \"NNP\"\n    ], \n    \"corruptions\": [\n        \"NNS\"\n    ], \n    \"Sinhalese.\": [\n        \"JJ\"\n    ], \n    \"Merchant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Times-Picayune\": [\n        \"NNP\"\n    ], \n    \"Breeders\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"despairs\": [\n        \"VBZ\"\n    ], \n    \"Quyne\": [\n        \"NNP\"\n    ], \n    \"asinine\": [\n        \"JJ\"\n    ], \n    \"unseated\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"service-oriented\": [\n        \"JJ\"\n    ], \n    \"GRiD\": [\n        \"NNP\"\n    ], \n    \"Happened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lionel\": [\n        \"NNP\"\n    ], \n    \"fare\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Assisting\": [\n        \"VBG\"\n    ], \n    \"Tymnet\": [\n        \"NNP\"\n    ], \n    \"farm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"faro\": [\n        \"NN\"\n    ], \n    \"Euroshuttle\": [\n        \"NNP\"\n    ], \n    \"aborigines\": [\n        \"NNS\"\n    ], \n    \"matchmaker\": [\n        \"NN\"\n    ], \n    \"dalliances\": [\n        \"NNS\"\n    ], \n    \"aliquots\": [\n        \"NNS\"\n    ], \n    \"Micelli\": [\n        \"NNP\"\n    ], \n    \"alibis\": [\n        \"NNS\"\n    ], \n    \"tomb\": [\n        \"NN\"\n    ], \n    \"Detroiters\": [\n        \"NNS\"\n    ], \n    \"bloodstream\": [\n        \"NN\"\n    ], \n    \"indemnifying\": [\n        \"VBG\"\n    ], \n    \"computations\": [\n        \"NNS\"\n    ], \n    \"yrs\": [\n        \"NNS\"\n    ], \n    \"Nyberg\": [\n        \"NNP\"\n    ], \n    \"half-block\": [\n        \"NN\"\n    ], \n    \"Ploys\": [\n        \"NNS\"\n    ], \n    \"dilatation\": [\n        \"NN\"\n    ], \n    \"Arrangements\": [\n        \"NNS\"\n    ], \n    \"Inter-Canadian\": [\n        \"NNP\"\n    ], \n    \"Rothmans\": [\n        \"NNP\"\n    ], \n    \"Lusaka\": [\n        \"NNP\"\n    ], \n    \"PENCILS\": [\n        \"NNS\"\n    ], \n    \"Resisting\": [\n        \"VBG\"\n    ], \n    \"gynecology\": [\n        \"NN\"\n    ], \n    \"Ruiz-Mateos\": [\n        \"NNP\"\n    ], \n    \"basement\": [\n        \"NN\"\n    ], \n    \"backbends\": [\n        \"NNS\"\n    ], \n    \"costume\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"temporal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kayne\": [\n        \"NNP\"\n    ], \n    \"new-telephone-line\": [\n        \"NN\"\n    ], \n    \"IOC\": [\n        \"NNP\"\n    ], \n    \"Torstar\": [\n        \"NNP\"\n    ], \n    \"Labouisse\": [\n        \"NNP\"\n    ], \n    \"articulation\": [\n        \"NN\"\n    ], \n    \"mesothelioma\": [\n        \"NN\"\n    ], \n    \"Formica\": [\n        \"NNP\"\n    ], \n    \"instrumented\": [\n        \"JJ\"\n    ], \n    \"subtraction\": [\n        \"NN\"\n    ], \n    \"stout\": [\n        \"JJ\"\n    ], \n    \"Hettie\": [\n        \"NNP\"\n    ], \n    \"Venus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hemenway\": [\n        \"NNP\"\n    ], \n    \"Respond\": [\n        \"VBP\"\n    ], \n    \"overcharges\": [\n        \"NNS\"\n    ], \n    \"miniwelfare\": [\n        \"JJ\"\n    ], \n    \"pre-war\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"spoon-feed\": [\n        \"VB\"\n    ], \n    \"ever-successful\": [\n        \"JJ\"\n    ], \n    \"Deslonde\": [\n        \"NNP\"\n    ], \n    \"brassieres\": [\n        \"NNS\"\n    ], \n    \"overcharged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"freedom-loving\": [\n        \"JJ\"\n    ], \n    \"Specter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"chided\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Listenin\": [\n        \"NN\"\n    ], \n    \"MERCHANTS\": [\n        \"NNPS\"\n    ], \n    \"Random\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Salins\": [\n        \"NNP\"\n    ], \n    \"vacuolated\": [\n        \"VBN\"\n    ], \n    \"citric\": [\n        \"JJ\"\n    ], \n    \"pursuits\": [\n        \"NNS\"\n    ], \n    \"collegial\": [\n        \"JJ\"\n    ], \n    \"investigative\": [\n        \"JJ\"\n    ], \n    \"refight\": [\n        \"VB\"\n    ], \n    \"Breeding\": [\n        \"NNP\"\n    ], \n    \"Wick\": [\n        \"NNP\"\n    ], \n    \"Santry\": [\n        \"NNP\"\n    ], \n    \"maximizes\": [\n        \"VBZ\"\n    ], \n    \"Loral\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Microbilt\": [\n        \"NNP\"\n    ], \n    \"Loran\": [\n        \"NNP\"\n    ], \n    \"entertainment\": [\n        \"NN\"\n    ], \n    \"CEO\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"terming\": [\n        \"VBG\"\n    ], \n    \"single-copy\": [\n        \"JJ\"\n    ], \n    \"back-alley\": [\n        \"JJ\"\n    ], \n    \"teetotaler\": [\n        \"NN\"\n    ], \n    \"cause\": [\n        \"NN\", \n        \"VB\", \n        \"VBG\", \n        \"VBP\"\n    ], \n    \"Troutman\": [\n        \"NNP\"\n    ], \n    \"abolitionists\": [\n        \"NNS\"\n    ], \n    \"contemporize\": [\n        \"VB\"\n    ], \n    \"Involving\": [\n        \"VBG\"\n    ], \n    \"Syncor\": [\n        \"NNP\"\n    ], \n    \"galaxies\": [\n        \"NNS\"\n    ], \n    \"R.D.\": [\n        \"NNP\"\n    ], \n    \"Fistoulari\": [\n        \"NNP\"\n    ], \n    \"cleansers\": [\n        \"NNS\"\n    ], \n    \"Darak\": [\n        \"NNP\"\n    ], \n    \"x\": [\n        \"NN\"\n    ], \n    \"Corrections\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"evidential\": [\n        \"JJ\"\n    ], \n    \"Prevost\": [\n        \"NNP\"\n    ], \n    \"Rodgers\": [\n        \"NNP\"\n    ], \n    \"Noxema\": [\n        \"NNP\"\n    ], \n    \"re-emphasise\": [\n        \"VB\"\n    ], \n    \"Yurochka\": [\n        \"NNP\"\n    ], \n    \"Nicandra\": [\n        \"NNP\"\n    ], \n    \"Murasawa\": [\n        \"NNP\"\n    ], \n    \"galling\": [\n        \"JJ\"\n    ], \n    \"Eurovision\": [\n        \"NNP\"\n    ], \n    \"projectile\": [\n        \"NN\"\n    ], \n    \"Recklessly\": [\n        \"RB\"\n    ], \n    \"powerful\": [\n        \"JJ\"\n    ], \n    \"Fete\": [\n        \"NNP\"\n    ], \n    \"Liliputian\": [\n        \"NNP\"\n    ], \n    \"Snelling\": [\n        \"NNP\"\n    ], \n    \"Theoretical\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Enzytech\": [\n        \"NNP\"\n    ], \n    \"clearinghouse\": [\n        \"NN\"\n    ], \n    \"cash-and-stock\": [\n        \"JJ\"\n    ], \n    \"tobacco-juice\": [\n        \"NN\"\n    ], \n    \"inasmuch\": [\n        \"RB\"\n    ], \n    \"three-digit\": [\n        \"JJ\"\n    ], \n    \"Favorable\": [\n        \"JJ\"\n    ], \n    \"ankle\": [\n        \"NN\"\n    ], \n    \"Lydia\": [\n        \"NNP\"\n    ], \n    \"Dawkins\": [\n        \"NNP\"\n    ], \n    \"Vidunas\": [\n        \"NNP\"\n    ], \n    \"lists\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chemicals\": [\n        \"NNS\"\n    ], \n    \"Rosenbach\": [\n        \"NNP\"\n    ], \n    \"liste\": [\n        \"FW\"\n    ], \n    \"characterizations\": [\n        \"NNS\"\n    ], \n    \"girdle\": [\n        \"NN\"\n    ], \n    \"well-established\": [\n        \"JJ\"\n    ], \n    \"submitted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Auburn\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"succinctly\": [\n        \"RB\"\n    ], \n    \"Zing\": [\n        \"NNP\"\n    ], \n    \"Mihaly\": [\n        \"NNP\"\n    ], \n    \"R.T.\": [\n        \"NNP\"\n    ], \n    \"Zinc\": [\n        \"NN\"\n    ], \n    \"Benham\": [\n        \"NNP\"\n    ], \n    \"Oval\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"acrylic-fiber\": [\n        \"JJ\"\n    ], \n    \"Absolution\": [\n        \"NN\"\n    ], \n    \"eight-times\": [\n        \"JJ\"\n    ], \n    \"globalists\": [\n        \"NNS\"\n    ], \n    \"sweeteners\": [\n        \"NNS\"\n    ], \n    \"Abilene\": [\n        \"NNP\"\n    ], \n    \"horrors\": [\n        \"NNS\"\n    ], \n    \"Other\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"earful\": [\n        \"NN\"\n    ], \n    \"Editions\": [\n        \"NNPS\"\n    ], \n    \"despatch\": [\n        \"NN\"\n    ], \n    \"Sarasate\": [\n        \"NNP\"\n    ], \n    \"similar-sized\": [\n        \"JJ\"\n    ], \n    \"Bastianini\": [\n        \"NNP\"\n    ], \n    \"interstates\": [\n        \"NNS\"\n    ], \n    \"Batman\": [\n        \"NNP\"\n    ], \n    \"relatives\": [\n        \"NNS\"\n    ], \n    \"auto-emissions\": [\n        \"NNS\"\n    ], \n    \"radioclast\": [\n        \"NN\"\n    ], \n    \"red-bellied\": [\n        \"JJ\"\n    ], \n    \"plowshares\": [\n        \"NNS\"\n    ], \n    \"Pueblo\": [\n        \"NNP\"\n    ], \n    \"duels\": [\n        \"NNS\"\n    ], \n    \"Photonics\": [\n        \"NNP\"\n    ], \n    \"France-Presse\": [\n        \"NNP\"\n    ], \n    \"discos\": [\n        \"NNS\"\n    ], \n    \"imperilled\": [\n        \"VBN\"\n    ], \n    \"vengeance\": [\n        \"NN\"\n    ], \n    \"counterbalance\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"corrects\": [\n        \"VBZ\"\n    ], \n    \"Centrex\": [\n        \"NNP\"\n    ], \n    \"gallery\": [\n        \"NN\"\n    ], \n    \"play-off\": [\n        \"NN\"\n    ], \n    \"Equalizer\": [\n        \"NNP\"\n    ], \n    \"Bertolotti\": [\n        \"NNP\"\n    ], \n    \"food-processing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"urn\": [\n        \"NN\"\n    ], \n    \"overhearing\": [\n        \"VBG\"\n    ], \n    \"Kanner\": [\n        \"NNP\"\n    ], \n    \"astonishing\": [\n        \"JJ\"\n    ], \n    \"ear-splitting\": [\n        \"JJ\"\n    ], \n    \"dustbowl\": [\n        \"NN\"\n    ], \n    \"constrain\": [\n        \"VB\"\n    ], \n    \"Randi\": [\n        \"NNP\"\n    ], \n    \"redheads\": [\n        \"NNS\"\n    ], \n    \"underpins\": [\n        \"VBZ\"\n    ], \n    \"telepathically\": [\n        \"RB\"\n    ], \n    \"selectiveness\": [\n        \"NN\"\n    ], \n    \"Rande\": [\n        \"NNP\"\n    ], \n    \"Commandment\": [\n        \"NN\"\n    ], \n    \"double-talk\": [\n        \"NN\"\n    ], \n    \"Randy\": [\n        \"NNP\"\n    ], \n    \"Gavrilov\": [\n        \"NNP\"\n    ], \n    \"Bonenfant\": [\n        \"NNP\"\n    ], \n    \"carcinogen\": [\n        \"NN\"\n    ], \n    \"marine-related\": [\n        \"JJ\"\n    ], \n    \"obsequious\": [\n        \"JJ\"\n    ], \n    \"lowlands\": [\n        \"NNS\"\n    ], \n    \"Hough\": [\n        \"NNP\"\n    ], \n    \"MacPhail\": [\n        \"NNP\"\n    ], \n    \"receptors\": [\n        \"NNS\"\n    ], \n    \"patristic\": [\n        \"JJ\"\n    ], \n    \"Czarina\": [\n        \"NNP\"\n    ], \n    \"achieve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"back-slapping\": [\n        \"JJ\"\n    ], \n    \"Nevermind\": [\n        \"VB\"\n    ], \n    \"exaltation\": [\n        \"NN\"\n    ], \n    \"Schwemm\": [\n        \"NNP\"\n    ], \n    \"popular-priced\": [\n        \"JJ\"\n    ], \n    \"plunking\": [\n        \"VBG\"\n    ], \n    \"second-half\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"offsaddled\": [\n        \"VBD\"\n    ], \n    \"Allegra\": [\n        \"NNP\"\n    ], \n    \"Masterworks\": [\n        \"NNPS\"\n    ], \n    \"trucks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Garamendi\": [\n        \"NNP\"\n    ], \n    \"Barnicle\": [\n        \"NNP\"\n    ], \n    \"directrices\": [\n        \"NNS\"\n    ], \n    \"Hwan\": [\n        \"NNP\"\n    ], \n    \"Allegro\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"FAILED\": [\n        \"VBD\"\n    ], \n    \"Palisades\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"golfs\": [\n        \"NNS\"\n    ], \n    \"Gravely\": [\n        \"NNP\"\n    ], \n    \"tunes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slimed\": [\n        \"VBN\"\n    ], \n    \"Kacy\": [\n        \"NNP\"\n    ], \n    \"embryonic\": [\n        \"JJ\"\n    ], \n    \"Nathanael\": [\n        \"NNP\"\n    ], \n    \"torts\": [\n        \"NNS\"\n    ], \n    \"Levina\": [\n        \"NNP\"\n    ], \n    \"Levine\": [\n        \"NNP\"\n    ], \n    \"Tesco\": [\n        \"NNP\"\n    ], \n    \"shrouded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dieppe\": [\n        \"NNP\"\n    ], \n    \"reoccupation\": [\n        \"NN\"\n    ], \n    \"operates\": [\n        \"VBZ\"\n    ], \n    \"officials\": [\n        \"NNS\"\n    ], \n    \"reinforcements\": [\n        \"NNS\"\n    ], \n    \"operated\": [\n        \"VBN\", \n        \"VBD|VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"all-employee\": [\n        \"JJ\"\n    ], \n    \"reverse-engineering\": [\n        \"NN\"\n    ], \n    \"Softener\": [\n        \"NN\"\n    ], \n    \"Wisconsin\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"MAPCO\": [\n        \"NNP\"\n    ], \n    \"nightmare\": [\n        \"NN\"\n    ], \n    \"intending\": [\n        \"VBG\"\n    ], \n    \"Alabamas\": [\n        \"NNPS\"\n    ], \n    \"tend\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kingsbridge\": [\n        \"NNP\"\n    ], \n    \"tens\": [\n        \"NNS\"\n    ], \n    \"unshaved\": [\n        \"JJ\"\n    ], \n    \"tent\": [\n        \"NN\"\n    ], \n    \"Full-time\": [\n        \"JJ\"\n    ], \n    \"Magnin\": [\n        \"NNP\"\n    ], \n    \"dropoff\": [\n        \"NN\"\n    ], \n    \"remitting\": [\n        \"VBG\"\n    ], \n    \"limbs\": [\n        \"NNS\"\n    ], \n    \"laid-off\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Telex\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"merry\": [\n        \"JJ\"\n    ], \n    \"one-stop\": [\n        \"JJ\"\n    ], \n    \"unfired\": [\n        \"VBN\"\n    ], \n    \"Juras\": [\n        \"NNP\"\n    ], \n    \"Remarque\": [\n        \"NNP\"\n    ], \n    \"unstoppable\": [\n        \"JJ\"\n    ], \n    \"hits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sediments\": [\n        \"NNS\"\n    ], \n    \"Burgee\": [\n        \"NNP\"\n    ], \n    \"Arlene\": [\n        \"NNP\"\n    ], \n    \"shingle\": [\n        \"NN\"\n    ], \n    \"Formosan\": [\n        \"JJ\"\n    ], \n    \"Burger\": [\n        \"NNP\"\n    ], \n    \"revitalized\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bellboy\": [\n        \"NN\"\n    ], \n    \"Quebec\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nymph\": [\n        \"NN\"\n    ], \n    \"nontoxic\": [\n        \"JJ\"\n    ], \n    \"scabbed\": [\n        \"VBN\"\n    ], \n    \"auto-maker\": [\n        \"NN\"\n    ], \n    \"autocrats\": [\n        \"NNS\"\n    ], \n    \"subtitle\": [\n        \"NN\"\n    ], \n    \"Delawares\": [\n        \"NNS\"\n    ], \n    \"Amoco\": [\n        \"NNP\"\n    ], \n    \"Pauleys\": [\n        \"NNPS\"\n    ], \n    \"U.S.C.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Avoids\": [\n        \"VBZ\"\n    ], \n    \"Bockris\": [\n        \"NNP\"\n    ], \n    \"Jaap\": [\n        \"NNP\"\n    ], \n    \"ENTERS\": [\n        \"VBZ\"\n    ], \n    \"thanked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Leukemia\": [\n        \"NNP\"\n    ], \n    \"Frills\": [\n        \"NNP\"\n    ], \n    \"outlaws\": [\n        \"NNS\"\n    ], \n    \"Groep\": [\n        \"NNP\"\n    ], \n    \"eraser\": [\n        \"NN\"\n    ], \n    \"erases\": [\n        \"VBZ\"\n    ], \n    \"Editing\": [\n        \"NN\"\n    ], \n    \"Hephzibah\": [\n        \"NNP\"\n    ], \n    \"battlements\": [\n        \"NNS\"\n    ], \n    \"constitutes\": [\n        \"VBZ\"\n    ], \n    \"anti-pocketbook\": [\n        \"JJ\"\n    ], \n    \"textile-importing\": [\n        \"NN\"\n    ], \n    \"Fulbright\": [\n        \"NNP\"\n    ], \n    \"five-speed\": [\n        \"JJ\"\n    ], \n    \"exploiters\": [\n        \"NNS\"\n    ], \n    \"guerrillas\": [\n        \"NNS\"\n    ], \n    \"Courses\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Whitrow\": [\n        \"NNP\"\n    ], \n    \"impress\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"smoking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"reclassified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Blandon\": [\n        \"NNP\"\n    ], \n    \"Lifeguards\": [\n        \"NNS\"\n    ], \n    \"FOUNDER\": [\n        \"NN\"\n    ], \n    \"Bricks\": [\n        \"NNS\"\n    ], \n    \"BILL\": [\n        \"NN\"\n    ], \n    \"queuing\": [\n        \"VBG\"\n    ], \n    \"Belasco\": [\n        \"NNP\"\n    ], \n    \"Kamchatka\": [\n        \"NNP\"\n    ], \n    \"Kaisha\": [\n        \"NNP\"\n    ], \n    \"mused\": [\n        \"VBD\"\n    ], \n    \"ratiocinating\": [\n        \"JJ\"\n    ], \n    \"under-inclusion\": [\n        \"NN\"\n    ], \n    \"Shochiku-Fuji\": [\n        \"NNP\"\n    ], \n    \"two-month\": [\n        \"JJ\"\n    ], \n    \"Cortizone-5\": [\n        \"NNP\"\n    ], \n    \"Ashman\": [\n        \"NNP\"\n    ], \n    \"BENEFITS\": [\n        \"NNS\"\n    ], \n    \"parte\": [\n        \"NN\"\n    ], \n    \"going-over\": [\n        \"NN\"\n    ], \n    \"shotshells\": [\n        \"NNS\"\n    ], \n    \"McShane\": [\n        \"NNP\"\n    ], \n    \"Cottrell\": [\n        \"NNP\"\n    ], \n    \"Flusser\": [\n        \"NNP\"\n    ], \n    \"tweezed\": [\n        \"VBN\"\n    ], \n    \"parts\": [\n        \"NNS\"\n    ], \n    \"wheel\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"wrong-headed\": [\n        \"JJ\"\n    ], \n    \"party\": [\n        \"NN\"\n    ], \n    \"divvying\": [\n        \"VBG\"\n    ], \n    \"Aluminum\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"employee-stock\": [\n        \"JJ\"\n    ], \n    \"Failing\": [\n        \"VBG\"\n    ], \n    \"abounds\": [\n        \"VBZ\"\n    ], \n    \"Rossides\": [\n        \"NNP\"\n    ], \n    \"Audience\": [\n        \"NN\"\n    ], \n    \"Non-God\": [\n        \"UH\"\n    ], \n    \"destruction\": [\n        \"NN\"\n    ], \n    \"scarcely\": [\n        \"RB\"\n    ], \n    \"MacReady\": [\n        \"NNP\"\n    ], \n    \"neuropathy\": [\n        \"NN\"\n    ], \n    \"Taizo\": [\n        \"NNP\"\n    ], \n    \"placating\": [\n        \"VBG\"\n    ], \n    \"Invacare\": [\n        \"NNP\"\n    ], \n    \"Durkin\": [\n        \"NNP\"\n    ], \n    \"drowns\": [\n        \"VBZ\"\n    ], \n    \"Threshold\": [\n        \"NNP\"\n    ], \n    \"Androfski\": [\n        \"NNP\"\n    ], \n    \"Newsnight\": [\n        \"NNP\"\n    ], \n    \"advertises\": [\n        \"VBZ\"\n    ], \n    \"advertiser\": [\n        \"NN\"\n    ], \n    \"Gaydon\": [\n        \"NNP\"\n    ], \n    \"Flower\": [\n        \"NNP\"\n    ], \n    \"Dionie\": [\n        \"NNP\"\n    ], \n    \"TOOK\": [\n        \"NNP\"\n    ], \n    \"Canadians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"detail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Brookhaven\": [\n        \"NNP\"\n    ], \n    \"mini-mill\": [\n        \"NN\"\n    ], \n    \"blackberry-basil\": [\n        \"NN\"\n    ], \n    \"femme\": [\n        \"FW\"\n    ], \n    \"run-down\": [\n        \"JJ\"\n    ], \n    \"density\": [\n        \"NN\"\n    ], \n    \"pin-pointed\": [\n        \"VBN\"\n    ], \n    \"MC88200\": [\n        \"NNP\"\n    ], \n    \"Yoichi\": [\n        \"NNP\"\n    ], \n    \"FACING\": [\n        \"VBG\"\n    ], \n    \"narcolepsy\": [\n        \"NN\"\n    ], \n    \"morgue\": [\n        \"NN\"\n    ], \n    \"riverside\": [\n        \"NN\"\n    ], \n    \"balloons\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Exposure\": [\n        \"NN\"\n    ], \n    \"canter\": [\n        \"NN\"\n    ], \n    \"Nicolson\": [\n        \"NNP\"\n    ], \n    \"Hibben\": [\n        \"NNP\"\n    ], \n    \"half-murmured\": [\n        \"JJ\"\n    ], \n    \"Limit\": [\n        \"VB\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nelson\": [\n        \"NNP\"\n    ], \n    \"bottoms\": [\n        \"NNS\"\n    ], \n    \"HK$\": [\n        \"$\"\n    ], \n    \"loss\": [\n        \"NN\"\n    ], \n    \"Cookies\": [\n        \"NNS\"\n    ], \n    \"necessary\": [\n        \"JJ\"\n    ], \n    \"lost\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Lights\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Corrado\": [\n        \"NNP\"\n    ], \n    \"Penelope\": [\n        \"NNP\"\n    ], \n    \"gangsters\": [\n        \"NNS\"\n    ], \n    \"tipple\": [\n        \"VBP\"\n    ], \n    \"Wilkes-Barre\": [\n        \"NNP\"\n    ], \n    \"Jasper\": [\n        \"NNP\"\n    ], \n    \"Shrewsbury\": [\n        \"NNP\"\n    ], \n    \"lose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"broad-scale\": [\n        \"JJ\"\n    ], \n    \"Milton\": [\n        \"NNP\"\n    ], \n    \"CITIES\\\\/ABC\": [\n        \"NNP\"\n    ], \n    \"Garryowen\": [\n        \"NNP\"\n    ], \n    \"parceling\": [\n        \"NN\"\n    ], \n    \"Asahipen\": [\n        \"NNP\"\n    ], \n    \"going-home\": [\n        \"JJ\"\n    ], \n    \"Thunder\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mayan\": [\n        \"JJ\"\n    ], \n    \"loan-guarantee\": [\n        \"NN\"\n    ], \n    \"library\": [\n        \"NN\"\n    ], \n    \"trucker\": [\n        \"NN\"\n    ], \n    \"home\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"EEG\": [\n        \"NNP\"\n    ], \n    \"leery\": [\n        \"JJ\"\n    ], \n    \"profittaking\": [\n        \"NN\"\n    ], \n    \"chroniclers\": [\n        \"NNS\"\n    ], \n    \"Bohemia\": [\n        \"NNP\"\n    ], \n    \"anti-trust\": [\n        \"JJ\"\n    ], \n    \"pinpoint\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"overlay\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"steaming\": [\n        \"VBG\"\n    ], \n    \"broad\": [\n        \"JJ\"\n    ], \n    \"overlap\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"non-dual\": [\n        \"JJ\"\n    ], \n    \"mutation\": [\n        \"NN\"\n    ], \n    \"adventuring\": [\n        \"NN\"\n    ], \n    \"Toronto-area\": [\n        \"JJ\"\n    ], \n    \"fanny\": [\n        \"NN\"\n    ], \n    \"Bryant\": [\n        \"NNP\"\n    ], \n    \"octogenarian\": [\n        \"JJ\"\n    ], \n    \"Nureyev\": [\n        \"NNP\"\n    ], \n    \"Quilted\": [\n        \"NNP\"\n    ], \n    \"real-world\": [\n        \"JJ\"\n    ], \n    \"subdirector\": [\n        \"NN\"\n    ], \n    \"hurls\": [\n        \"VBZ\"\n    ], \n    \"Vereinsbank\": [\n        \"NNP\"\n    ], \n    \"Shakes\": [\n        \"VBZ\"\n    ], \n    \"non-lethal\": [\n        \"JJ\"\n    ], \n    \"naps\": [\n        \"NNS\"\n    ], \n    \"Hastings-on-Hudson\": [\n        \"NNP\"\n    ], \n    \"Archaeology\": [\n        \"NNP\"\n    ], \n    \"refuge\": [\n        \"NN\"\n    ], \n    \"cataracts\": [\n        \"NNS\"\n    ], \n    \"tonics\": [\n        \"NNS\"\n    ], \n    \"M.C.\": [\n        \"NNP\"\n    ], \n    \"Cernuda\": [\n        \"NNP\"\n    ], \n    \"Mental\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Boadicea\": [\n        \"NNP\"\n    ], \n    \"greening\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Jorda\": [\n        \"NNP\"\n    ], \n    \"Conspiracy\": [\n        \"NNP\"\n    ], \n    \"myeloid\": [\n        \"NN\"\n    ], \n    \"Crosfield\": [\n        \"NNP\"\n    ], \n    \"Medical-instrument\": [\n        \"JJ\"\n    ], \n    \"KLUC-FM\": [\n        \"NNP\"\n    ], \n    \"Garibaldi\": [\n        \"NNP\"\n    ], \n    \"Communists\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"contending\": [\n        \"VBG\"\n    ], \n    \"fettered\": [\n        \"VBN\"\n    ], \n    \"previously\": [\n        \"RB\"\n    ], \n    \"Papetti\": [\n        \"NNP\"\n    ], \n    \"Quickly\": [\n        \"RB\"\n    ], \n    \"ultrasound\": [\n        \"NN\"\n    ], \n    \"Internal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Conseil\": [\n        \"NNP\"\n    ], \n    \"Secular\": [\n        \"JJ\"\n    ], \n    \"PRATT\": [\n        \"NNP\"\n    ], \n    \"multivalve\": [\n        \"JJ\"\n    ], \n    \"Colorama\": [\n        \"NN\"\n    ], \n    \"slow-motion\": [\n        \"JJ\"\n    ], \n    \"Daphne\": [\n        \"NNP\"\n    ], \n    \"Veraguas\": [\n        \"NNP\"\n    ], \n    \"service-center\": [\n        \"NN\"\n    ], \n    \"north\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"state-trading\": [\n        \"JJ\"\n    ], \n    \"rioted\": [\n        \"VBD\"\n    ], \n    \"triangular\": [\n        \"JJ\"\n    ], \n    \"fountains\": [\n        \"NNS\"\n    ], \n    \"blaming\": [\n        \"VBG\"\n    ], \n    \"Chamber\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"strawberries\": [\n        \"NNS\"\n    ], \n    \"oxygens\": [\n        \"NNS\"\n    ], \n    \"Oops\": [\n        \"UH\"\n    ], \n    \"lowest-rated\": [\n        \"JJ\"\n    ], \n    \"sprinkling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"ordinances\": [\n        \"NNS\"\n    ], \n    \"minutely\": [\n        \"RB\"\n    ], \n    \"Pagnol\": [\n        \"NNP\"\n    ], \n    \"bargaining-chip\": [\n        \"NN\"\n    ], \n    \"metronome\": [\n        \"NN\"\n    ], \n    \"Khrushchevs\": [\n        \"NNPS\"\n    ], \n    \"skill-dilution\": [\n        \"JJ\"\n    ], \n    \"Cheyennes\": [\n        \"NNPS\"\n    ], \n    \"dismounting\": [\n        \"VBG\"\n    ], \n    \"catalog-clothing-merchandiser\": [\n        \"NN\"\n    ], \n    \"fabricator\": [\n        \"NN\"\n    ], \n    \"display\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"urging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"I.Q.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"diligently\": [\n        \"RB\"\n    ], \n    \"universal\": [\n        \"JJ\"\n    ], \n    \"Nghe\": [\n        \"NNP\"\n    ], \n    \"dialogue\": [\n        \"NN\"\n    ], \n    \"Hatakeyama\": [\n        \"NNP\"\n    ], \n    \"Mustafa\": [\n        \"NNP\"\n    ], \n    \"house-building\": [\n        \"NN\"\n    ], \n    \"functions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Northridge\": [\n        \"NNP\"\n    ], \n    \"Geneva\": [\n        \"NNP\"\n    ], \n    \"Jr.\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Aoyama\": [\n        \"NNP\"\n    ], \n    \"Never\": [\n        \"RB\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"Neveu\": [\n        \"NNP\"\n    ], \n    \"Acid-washed\": [\n        \"JJ\"\n    ], \n    \"publicists\": [\n        \"NNS\"\n    ], \n    \"Peller\": [\n        \"NNP\"\n    ], \n    \"BEGAN\": [\n        \"VBD\"\n    ], \n    \"discorporated\": [\n        \"VBN\"\n    ], \n    \"star\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Dual\": [\n        \"JJ\"\n    ], \n    \"Congregationalism\": [\n        \"NNP\"\n    ], \n    \"half-mile\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"stay\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"staf\": [\n        \"NN\"\n    ], \n    \"stag\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"newspaper-printing\": [\n        \"NN\"\n    ], \n    \"stab\": [\n        \"NN\"\n    ], \n    \"Braggadocio\": [\n        \"NNP\"\n    ], \n    \"additionally\": [\n        \"RB\"\n    ], \n    \"fir\": [\n        \"NN\"\n    ], \n    \"Congregationalist\": [\n        \"NN\"\n    ], \n    \"phosphorus\": [\n        \"NN\"\n    ], \n    \"less-than-altruistic\": [\n        \"JJ\"\n    ], \n    \"Ungermann-Bass\": [\n        \"NNP\"\n    ], \n    \"Embraer\": [\n        \"NNP\"\n    ], \n    \"Neilson\": [\n        \"NNP\"\n    ], \n    \"atheism\": [\n        \"NN\"\n    ], \n    \"watercolors\": [\n        \"NNS\"\n    ], \n    \"Hanover-Mauri\": [\n        \"NNP\"\n    ], \n    \"Refined\": [\n        \"NNP\"\n    ], \n    \"foreshadowing\": [\n        \"VBG\"\n    ], \n    \"sniveling\": [\n        \"VBG\"\n    ], \n    \"Corsica\": [\n        \"NNP\"\n    ], \n    \"aided\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"forgone\": [\n        \"JJ\"\n    ], \n    \"whoops\": [\n        \"VBZ\"\n    ], \n    \"knelt\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"single-step\": [\n        \"JJ\"\n    ], \n    \"clean-up\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"knell\": [\n        \"NN\"\n    ], \n    \"perverted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"aides\": [\n        \"NNS\"\n    ], \n    \"Kwong\": [\n        \"NNP\"\n    ], \n    \"Sabena\": [\n        \"NNP\"\n    ], \n    \"buddy\": [\n        \"NN\"\n    ], \n    \"SKr29\": [\n        \"NNS\"\n    ], \n    \"Cluck\": [\n        \"NNP\"\n    ], \n    \"DeFazio\": [\n        \"NNP\"\n    ], \n    \"disability\": [\n        \"NN\"\n    ], \n    \"Preferred\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kristallstrukturen\": [\n        \"FW\"\n    ], \n    \"car-buff\": [\n        \"JJ\"\n    ], \n    \"MDL-1\": [\n        \"NN\"\n    ], \n    \"Chucas\": [\n        \"NNP\"\n    ], \n    \"Kinji\": [\n        \"NNP\"\n    ], \n    \"Thurgood\": [\n        \"NNP\"\n    ], \n    \"Authors\": [\n        \"NNS\"\n    ], \n    \"Merlo\": [\n        \"NNP\"\n    ], \n    \"Dougherty\": [\n        \"NNP\"\n    ], \n    \"fists\": [\n        \"NNS\"\n    ], \n    \"realignment\": [\n        \"NN\"\n    ], \n    \"Presser\": [\n        \"NN\"\n    ], \n    \"light-wave\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Identifying\": [\n        \"VBG\"\n    ], \n    \"Harley-Davidson\": [\n        \"NNP\"\n    ], \n    \"Anglican\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Pressed\": [\n        \"VBN\"\n    ], \n    \"Kuperberg\": [\n        \"NNP\"\n    ], \n    \"Shapiro\": [\n        \"NNP\"\n    ], \n    \"Shitts\": [\n        \"NNP\"\n    ], \n    \"epidemiologists\": [\n        \"NNS\"\n    ], \n    \"hypostatization\": [\n        \"NN\"\n    ], \n    \"crops\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Tepid\": [\n        \"NNP\"\n    ], \n    \"extinguishment\": [\n        \"NN\"\n    ], \n    \"Almonds\": [\n        \"NNS\"\n    ], \n    \"irrationally\": [\n        \"RB\"\n    ], \n    \"Colosseum\": [\n        \"NNP\"\n    ], \n    \"Raiders\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"McIntosh\": [\n        \"NNP\"\n    ], \n    \"zirconate\": [\n        \"NN\"\n    ], \n    \"likely\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"arrangers\": [\n        \"NNS\"\n    ], \n    \"subordinate\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"bureacratic\": [\n        \"JJ\"\n    ], \n    \"appetite\": [\n        \"NN\"\n    ], \n    \"Tolek\": [\n        \"NNP\"\n    ], \n    \"low-moisture\": [\n        \"JJ\"\n    ], \n    \"Arizona\": [\n        \"NNP\"\n    ], \n    \"polyelectrolytes\": [\n        \"NNS\"\n    ], \n    \"Culkin\": [\n        \"NNP\"\n    ], \n    \"Manzella\": [\n        \"NNP\"\n    ], \n    \"IgG\": [\n        \"NNP\"\n    ], \n    \"Parkhurst\": [\n        \"NNP\"\n    ], \n    \"mutual-funds\": [\n        \"NNS\"\n    ], \n    \"Pomona\": [\n        \"NNP\"\n    ], \n    \"foodstuffs\": [\n        \"NNS\"\n    ], \n    \"Toler\": [\n        \"NNP\"\n    ], \n    \"upward\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"low-ball\": [\n        \"JJ\"\n    ], \n    \"Central-bank\": [\n        \"NN\"\n    ], \n    \"snared\": [\n        \"VBN\"\n    ], \n    \"niche\": [\n        \"NN\"\n    ], \n    \"iodoamino\": [\n        \"NN\"\n    ], \n    \"Cuts\": [\n        \"NNS\"\n    ], \n    \"Irwin\": [\n        \"NNP\"\n    ], \n    \"Pennview\": [\n        \"NNP\"\n    ], \n    \"Two-income\": [\n        \"NN\"\n    ], \n    \"songbirds\": [\n        \"NNS\"\n    ], \n    \"provisioning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"inheritable\": [\n        \"JJ\"\n    ], \n    \"product-swap\": [\n        \"NN\"\n    ], \n    \"reshuffle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Rizzuto\": [\n        \"NNP\"\n    ], \n    \"contraction\": [\n        \"NN\"\n    ], \n    \"Engh\": [\n        \"NNP\"\n    ], \n    \"Rounded\": [\n        \"JJ\"\n    ], \n    \"Knudsen\": [\n        \"NNP\"\n    ], \n    \"bumps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Packaging\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"oozed\": [\n        \"VBD\"\n    ], \n    \"creasingly\": [\n        \"RB\"\n    ], \n    \"Luxury\": [\n        \"NN\"\n    ], \n    \"Inorganic\": [\n        \"JJ\"\n    ], \n    \"Persico\": [\n        \"NNP\"\n    ], \n    \"intrigue\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Either\": [\n        \"CC\", \n        \"DT\", \n        \"NNP\"\n    ], \n    \"Industries\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fantastic\": [\n        \"JJ\"\n    ], \n    \"Gutwein\": [\n        \"NNP\"\n    ], \n    \"kinesthetic\": [\n        \"JJ\"\n    ], \n    \"McCay\": [\n        \"NNP\"\n    ], \n    \"EasyLink\": [\n        \"NNP\"\n    ], \n    \"guests\": [\n        \"NNS\"\n    ], \n    \"god-like\": [\n        \"JJ\"\n    ], \n    \"exhusband\": [\n        \"NN\"\n    ], \n    \"tertiary\": [\n        \"JJ\"\n    ], \n    \"head-on\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"non-Humana\": [\n        \"JJ\"\n    ], \n    \"high-velocity\": [\n        \"JJ\"\n    ], \n    \"Gramm\": [\n        \"NNP\"\n    ], \n    \"Pro-choice\": [\n        \"JJ\"\n    ], \n    \"WHO\": [\n        \"WP\"\n    ], \n    \"Honolulu-based\": [\n        \"JJ\"\n    ], \n    \"hand-screened\": [\n        \"VBN\"\n    ], \n    \"survive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"WHX\": [\n        \"NNP\"\n    ], \n    \"WHY\": [\n        \"WRB\"\n    ], \n    \"non-high\": [\n        \"JJ\"\n    ], \n    \"pynte\": [\n        \"NN\"\n    ], \n    \"Catcher\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"highfalutin\": [\n        \"JJ\"\n    ], \n    \"Blasts\": [\n        \"NNS\"\n    ], \n    \"Times-Stock\": [\n        \"NNP\"\n    ], \n    \"dogma\": [\n        \"NN\"\n    ], \n    \"female-dominated\": [\n        \"JJ\"\n    ], \n    \"Greasies\": [\n        \"NNS\"\n    ], \n    \"ostracized\": [\n        \"VBN\"\n    ], \n    \"computer-stock\": [\n        \"NN\"\n    ], \n    \"Bienville\": [\n        \"NNP\"\n    ], \n    \"exploitative\": [\n        \"JJ\"\n    ], \n    \"laid-back\": [\n        \"JJ\"\n    ], \n    \"Shipston\": [\n        \"NNP\"\n    ], \n    \"ELECTRIC\": [\n        \"NNP\"\n    ], \n    \"Kingsford\": [\n        \"NNP\"\n    ], \n    \"Hettinger\": [\n        \"NNP\"\n    ], \n    \"Corporation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Whereas\": [\n        \"IN\", \n        \"WRB\"\n    ], \n    \"stressing\": [\n        \"VBG\"\n    ], \n    \"Globalization\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"isothermal\": [\n        \"JJ\"\n    ], \n    \"autonomy\": [\n        \"NN\"\n    ], \n    \"Watching\": [\n        \"VBG\"\n    ], \n    \"colds\": [\n        \"NNS\"\n    ], \n    \"Hawesville\": [\n        \"NNP\"\n    ], \n    \"adventurism\": [\n        \"NN\"\n    ], \n    \"slipstream\": [\n        \"NN\"\n    ], \n    \"amazing\": [\n        \"JJ\"\n    ], \n    \"adventurist\": [\n        \"JJ\"\n    ], \n    \"colde\": [\n        \"MD\"\n    ], \n    \"undesirable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"competency\": [\n        \"NN\"\n    ], \n    \"blanks\": [\n        \"NNS\"\n    ], \n    \"Lucas\": [\n        \"NNP\"\n    ], \n    \"Spinelli\": [\n        \"NNP\"\n    ], \n    \"vibratory\": [\n        \"JJ\"\n    ], \n    \"believers\": [\n        \"NNS\"\n    ], \n    \"arrearages\": [\n        \"NNS\"\n    ], \n    \"Bargain-hunters\": [\n        \"NNS\"\n    ], \n    \"single-engine\": [\n        \"JJ\"\n    ], \n    \"Bank\\\\/Tidewater\": [\n        \"NNP\"\n    ], \n    \"egos\": [\n        \"NNS\"\n    ], \n    \"schoolchildren\": [\n        \"NN\", \n        \"VB\", \n        \"NNS\"\n    ], \n    \"Hargitay\": [\n        \"NNP\"\n    ], \n    \"photoluminescence\": [\n        \"NN\"\n    ], \n    \"Trianon\": [\n        \"NNP\"\n    ], \n    \"octogenaraians\": [\n        \"NNS\"\n    ], \n    \"day-watch\": [\n        \"NN\"\n    ], \n    \"Became\": [\n        \"VBD\"\n    ], \n    \"Kalinowski\": [\n        \"NNP\"\n    ], \n    \"goodbye\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"operate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"athletes\": [\n        \"NNS\"\n    ], \n    \"wus\": [\n        \"RB\"\n    ], \n    \"W/NNP.B/NNP.I.\": [\n        \"NN\"\n    ], \n    \"unnamed\": [\n        \"JJ\"\n    ], \n    \"pothole\": [\n        \"NN\"\n    ], \n    \"Wrongdoers\": [\n        \"NNS\"\n    ], \n    \"Hetty\": [\n        \"NNP\"\n    ], \n    \"Newark\": [\n        \"NNP\"\n    ], \n    \"mumbo\": [\n        \"NN\"\n    ], \n    \"captions\": [\n        \"NNS\"\n    ], \n    \"Ordinary\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"wuh\": [\n        \"VBP\"\n    ], \n    \"before\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Halstead\": [\n        \"NNP\"\n    ], \n    \"Hosaka\": [\n        \"NNP\"\n    ], \n    \"chatte\": [\n        \"FW\"\n    ], \n    \"rescheduled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Chorney\": [\n        \"NNP\"\n    ], \n    \"JOB\": [\n        \"NN\"\n    ], \n    \"Pate\": [\n        \"NNP\"\n    ], \n    \"Pati\": [\n        \"FW\"\n    ], \n    \"Path\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Exeter\": [\n        \"NNP\"\n    ], \n    \"Oyster\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gunning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Computations\": [\n        \"NNS\"\n    ], \n    \"ninth-largest\": [\n        \"JJ\"\n    ], \n    \"runny\": [\n        \"JJ\"\n    ], \n    \"Simulation\": [\n        \"NN\"\n    ], \n    \"caterpillar\": [\n        \"NN\"\n    ], \n    \"downright\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Hartnett\": [\n        \"NNP\"\n    ], \n    \"Kymberly\": [\n        \"NNP\"\n    ], \n    \"Syntex\": [\n        \"NNP\"\n    ], \n    \"soddenly\": [\n        \"RB\"\n    ], \n    \"Semiconductors\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"arrested\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Derr\": [\n        \"NNP\"\n    ], \n    \"superficiality\": [\n        \"NN\"\n    ], \n    \"enterteyned\": [\n        \"VBD\"\n    ], \n    \"lofts\": [\n        \"NNS\"\n    ], \n    \"non-comparable\": [\n        \"JJ\"\n    ], \n    \"hawkers\": [\n        \"NNS\"\n    ], \n    \"long-shelf-life\": [\n        \"JJ\"\n    ], \n    \"pepping\": [\n        \"VBG\"\n    ], \n    \"methacrylate\": [\n        \"NN\"\n    ], \n    \"counterbid\": [\n        \"NN\"\n    ], \n    \"calmly\": [\n        \"RB\"\n    ], \n    \"durability\": [\n        \"NN\"\n    ], \n    \"Shabbat\": [\n        \"NNP\"\n    ], \n    \"skins\": [\n        \"NNS\"\n    ], \n    \"Moulin\": [\n        \"NNP\"\n    ], \n    \"untrustworthy\": [\n        \"JJ\"\n    ], \n    \"FmHA\": [\n        \"NNP\"\n    ], \n    \"Shelagh\": [\n        \"NNP\"\n    ], \n    \"imperiling\": [\n        \"VBG\"\n    ], \n    \"Thereupon\": [\n        \"RB\"\n    ], \n    \"chart-room\": [\n        \"JJ\"\n    ], \n    \"redressed\": [\n        \"VBN\"\n    ], \n    \"Luncheon\": [\n        \"NNP\"\n    ], \n    \"Rue\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"lurks\": [\n        \"VBZ\"\n    ], \n    \"Producers\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"E-II\": [\n        \"NNP\"\n    ], \n    \"languish\": [\n        \"VB\"\n    ], \n    \"housings\": [\n        \"NNS\"\n    ], \n    \"Econoclast\": [\n        \"NNP\"\n    ], \n    \"Anspach\": [\n        \"NNP\"\n    ], \n    \"telecommunication\": [\n        \"NN\"\n    ], \n    \"Dodd\": [\n        \"NNP\"\n    ], \n    \"birefringence\": [\n        \"NN\"\n    ], \n    \"ascending\": [\n        \"VBG\"\n    ], \n    \"Dods\": [\n        \"NNP\"\n    ], \n    \"Brenham\": [\n        \"NNP\"\n    ], \n    \"existentialist\": [\n        \"NN\"\n    ], \n    \"Minpeco\": [\n        \"NNP\"\n    ], \n    \"Costaggini\": [\n        \"NNP\"\n    ], \n    \"wrath\": [\n        \"NN\"\n    ], \n    \"Ripa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bioinsecticides\": [\n        \"NNS\"\n    ], \n    \"Ripe\": [\n        \"NNP\"\n    ], \n    \"Guideposts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Angrily\": [\n        \"RB\"\n    ], \n    \"or...\": [\n        \":\"\n    ], \n    \"punctuated\": [\n        \"VBN\"\n    ], \n    \"Burlingame\": [\n        \"NNP\"\n    ], \n    \"major-market\": [\n        \"JJ\"\n    ], \n    \"triple-crown\": [\n        \"JJ\"\n    ], \n    \"chinked\": [\n        \"VBN\"\n    ], \n    \"mass-produced\": [\n        \"JJ\"\n    ], \n    \"fictions\": [\n        \"NNS\"\n    ], \n    \"Handled\": [\n        \"VBN\"\n    ], \n    \"non-lawyers\": [\n        \"NNS\"\n    ], \n    \"fee-for-service\": [\n        \"JJ\"\n    ], \n    \"once-mighty\": [\n        \"JJ\"\n    ], \n    \"economy...\": [\n        \":\"\n    ], \n    \"Handler\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Handley\": [\n        \"NNP\"\n    ], \n    \"immensely\": [\n        \"RB\"\n    ], \n    \"Gortonists\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"crime-fighting\": [\n        \"JJ\"\n    ], \n    \"yuan\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Haislip\": [\n        \"NNP\"\n    ], \n    \"hawks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Beech\": [\n        \"NNP\"\n    ], \n    \"Hanson\": [\n        \"NNP\"\n    ], \n    \"tufts\": [\n        \"NNS\"\n    ], \n    \"Desert\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"shallowness\": [\n        \"NN\"\n    ], \n    \"Checci\": [\n        \"NNP\"\n    ], \n    \"Cerf\": [\n        \"NNP\"\n    ], \n    \"Strongly\": [\n        \"RB\"\n    ], \n    \"urban-fringe\": [\n        \"JJ\"\n    ], \n    \"reprobate\": [\n        \"NN\"\n    ], \n    \"Scotian\": [\n        \"NNP\"\n    ], \n    \"foreclose\": [\n        \"VB\"\n    ], \n    \"digs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Cerv\": [\n        \"NNP\"\n    ], \n    \"Pacify\": [\n        \"VB\"\n    ], \n    \"sober-faced\": [\n        \"JJ\"\n    ], \n    \"space-age\": [\n        \"JJ\"\n    ], \n    \"requisite\": [\n        \"JJ\"\n    ], \n    \"unscented\": [\n        \"VBN\"\n    ], \n    \"matting\": [\n        \"NN\"\n    ], \n    \"Anterior\": [\n        \"NNP\"\n    ], \n    \"data-gathering\": [\n        \"JJ\"\n    ], \n    \"rill\": [\n        \"NN\"\n    ], \n    \"Shepard\": [\n        \"NNP\"\n    ], \n    \"Bentham\": [\n        \"NNP\"\n    ], \n    \"evaporates\": [\n        \"VBZ\"\n    ], \n    \"bitterness\": [\n        \"NN\"\n    ], \n    \"non-alcoholic\": [\n        \"JJ\"\n    ], \n    \"townspeople\": [\n        \"NN\"\n    ], \n    \"knights\": [\n        \"NNS\"\n    ], \n    \"girlishly\": [\n        \"RB\"\n    ], \n    \"evaporated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"AUSTIN\": [\n        \"NNP\"\n    ], \n    \"Fads\": [\n        \"NNS\"\n    ], \n    \"abstracting\": [\n        \"VBG\"\n    ], \n    \"palace\": [\n        \"NN\"\n    ], \n    \"overdependence\": [\n        \"NN\"\n    ], \n    \"Alors\": [\n        \"FW\"\n    ], \n    \"Glaze\": [\n        \"VB\"\n    ], \n    \"reassert\": [\n        \"VB\"\n    ], \n    \"ginger\": [\n        \"NN\"\n    ], \n    \"two-burner\": [\n        \"JJ\"\n    ], \n    \"floodlit\": [\n        \"JJ\"\n    ], \n    \"OPTIONS\": [\n        \"NNS\"\n    ], \n    \"Anheuser-Busch\": [\n        \"NNP\"\n    ], \n    \"TEMPORARY\": [\n        \"JJ\"\n    ], \n    \"Nesbit\": [\n        \"NNP\"\n    ], \n    \"Holderlin\": [\n        \"NNP\"\n    ], \n    \"communicative\": [\n        \"JJ\"\n    ], \n    \"collectivizers\": [\n        \"NNS\"\n    ], \n    \"Cochran\": [\n        \"NNP\"\n    ], \n    \"fitting\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"sleeper\": [\n        \"NN\"\n    ], \n    \"Mugabe\": [\n        \"NNP\"\n    ], \n    \"insularity\": [\n        \"NN\"\n    ], \n    \"tunnels\": [\n        \"NNS\"\n    ], \n    \"salubrious\": [\n        \"JJ\"\n    ], \n    \"Medical-supply\": [\n        \"JJ\"\n    ], \n    \"show-stoppers\": [\n        \"NNS\"\n    ], \n    \"Ivan\": [\n        \"NNP\"\n    ], \n    \"two-lane\": [\n        \"JJ\"\n    ], \n    \"observation\": [\n        \"NN\"\n    ], \n    \"Hammerschmidt\": [\n        \"NNP\"\n    ], \n    \"overloud\": [\n        \"JJ\"\n    ], \n    \"impostor\": [\n        \"NN\"\n    ], \n    \"breathes\": [\n        \"VBZ\"\n    ], \n    \"breather\": [\n        \"NN\"\n    ], \n    \"self-destructive\": [\n        \"JJ\"\n    ], \n    \"unadjusted\": [\n        \"JJ\"\n    ], \n    \"hamming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Ballets\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Durrell\": [\n        \"NNP\"\n    ], \n    \"Nazism\": [\n        \"NNP\"\n    ], \n    \"Laszlo\": [\n        \"NNP\"\n    ], \n    \"annoyed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Bowne\": [\n        \"NNP\"\n    ], \n    \"Opponents\": [\n        \"NNS\"\n    ], \n    \"aquatic\": [\n        \"JJ\"\n    ], \n    \"small-city\": [\n        \"NN\"\n    ], \n    \"brutalities\": [\n        \"NNS\"\n    ], \n    \"peasanthood\": [\n        \"NN\"\n    ], \n    \"food-packaging\": [\n        \"JJ\"\n    ], \n    \"Hwa-Shan\": [\n        \"NNP\"\n    ], \n    \"Carmine\": [\n        \"NNP\"\n    ], \n    \"northeast\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"flatulent\": [\n        \"JJ\"\n    ], \n    \"price-earnings\": [\n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"jailed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"palliative\": [\n        \"JJ\"\n    ], \n    \"Havana\": [\n        \"NNP\"\n    ], \n    \"Campenhout\": [\n        \"NNP\"\n    ], \n    \"Mnouchkine\": [\n        \"NNP\"\n    ], \n    \"Leave\": [\n        \"VB\"\n    ], \n    \"Satellites\": [\n        \"NNS\"\n    ], \n    \"asset-allocation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"watermelon\": [\n        \"NN\"\n    ], \n    \"consensus-seeker\": [\n        \"NN\"\n    ], \n    \"MicroAge\": [\n        \"NNP\"\n    ], \n    \"earl\": [\n        \"NN\"\n    ], \n    \"earn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Honored\": [\n        \"VBN\"\n    ], \n    \"dicendi\": [\n        \"FW\"\n    ], \n    \"Fokker\": [\n        \"NNP\"\n    ], \n    \"metric-ton-per-year\": [\n        \"JJ\"\n    ], \n    \"stooges\": [\n        \"NNS\"\n    ], \n    \"monumental\": [\n        \"JJ\"\n    ], \n    \"winced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"enchant\": [\n        \"VB\"\n    ], \n    \"pug-nosed\": [\n        \"JJ\"\n    ], \n    \"ears\": [\n        \"NNS\"\n    ], \n    \"humanly\": [\n        \"RB\"\n    ], \n    \"Billboarding\": [\n        \"NNP\"\n    ], \n    \"diminutive\": [\n        \"JJ\"\n    ], \n    \"Stickney\": [\n        \"NNP\"\n    ], \n    \"roasted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"alterations\": [\n        \"NNS\"\n    ], \n    \"unmurmuring\": [\n        \"JJ\"\n    ], \n    \"allure\": [\n        \"NN\"\n    ], \n    \"nontraditional\": [\n        \"JJ\"\n    ], \n    \"PARTNER\": [\n        \"NN\"\n    ], \n    \"inter-city\": [\n        \"JJ\"\n    ], \n    \"incorporating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"antifraud\": [\n        \"NN\"\n    ], \n    \"unflatteringly\": [\n        \"RB\"\n    ], \n    \"Bettner\": [\n        \"NNP\"\n    ], \n    \"Tool\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"woozy\": [\n        \"JJ\"\n    ], \n    \"Inferiority\": [\n        \"NN\"\n    ], \n    \"artificial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"globalism\": [\n        \"NN\"\n    ], \n    \"Maronites\": [\n        \"NNPS\"\n    ], \n    \"Toot\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"Back-to-back\": [\n        \"JJ\"\n    ], \n    \"bloodstains\": [\n        \"NNS\"\n    ], \n    \"globalist\": [\n        \"NN\"\n    ], \n    \"adjudged\": [\n        \"VBN\"\n    ], \n    \"Boettcher\": [\n        \"NNP\"\n    ], \n    \"homebuilding\": [\n        \"NN\"\n    ], \n    \"medium-grade\": [\n        \"JJ\"\n    ], \n    \"insinuated\": [\n        \"VBD\"\n    ], \n    \"wears\": [\n        \"VBZ\"\n    ], \n    \"Lipshie\": [\n        \"NNP\"\n    ], \n    \"Usurpations\": [\n        \"NNS\"\n    ], \n    \"physicist\": [\n        \"NN\"\n    ], \n    \"lotion\": [\n        \"NN\"\n    ], \n    \"search-and-examination\": [\n        \"JJ\"\n    ], \n    \"architect-developer\": [\n        \"NN\"\n    ], \n    \"hundreds-of-billions-of-yen\": [\n        \"JJ\"\n    ], \n    \"arrogating\": [\n        \"VBG\"\n    ], \n    \"insinuates\": [\n        \"VBZ\"\n    ], \n    \"cuirassiers\": [\n        \"NNS\"\n    ], \n    \"cousin\": [\n        \"NN\"\n    ], \n    \"data-collection\": [\n        \"NN\"\n    ], \n    \"suggested\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Saturated\": [\n        \"JJ\"\n    ], \n    \"civilised\": [\n        \"JJ\"\n    ], \n    \"McDonald\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"wounding\": [\n        \"VBG\"\n    ], \n    \"jotted\": [\n        \"JJ\"\n    ], \n    \"nothing-down\": [\n        \"JJ\"\n    ], \n    \"sweepers\": [\n        \"NNS\"\n    ], \n    \"Stevenses\": [\n        \"NNPS\"\n    ], \n    \"Cassim\": [\n        \"NNP\"\n    ], \n    \"Gemina\": [\n        \"NNP\"\n    ], \n    \"presumably\": [\n        \"RB\"\n    ], \n    \"Patagonians\": [\n        \"NNPS\"\n    ], \n    \"Soldado\": [\n        \"NNP\"\n    ], \n    \"air-charter\": [\n        \"JJ\"\n    ], \n    \"eulogized\": [\n        \"VBD\"\n    ], \n    \"Papal\": [\n        \"JJ\"\n    ], \n    \"Lorraine\": [\n        \"NNP\"\n    ], \n    \"lanterns\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"foray\": [\n        \"NN\"\n    ], \n    \"WCRS\": [\n        \"NNP\"\n    ], \n    \"Legally\": [\n        \"RB\"\n    ], \n    \"Shinpan\": [\n        \"NNP\"\n    ], \n    \"copycat\": [\n        \"NN\"\n    ], \n    \"tint\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"tins\": [\n        \"NNS\"\n    ], \n    \"Vocabulary\": [\n        \"NNP\"\n    ], \n    \"basis\": [\n        \"NN\"\n    ], \n    \"Ryne\": [\n        \"NNP\"\n    ], \n    \"Waters\": [\n        \"NNP\"\n    ], \n    \"yaks\": [\n        \"NNS\"\n    ], \n    \"patrolling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Lamos\": [\n        \"NNP\"\n    ], \n    \"tiny\": [\n        \"JJ\"\n    ], \n    \"Lamon\": [\n        \"NNP\"\n    ], \n    \"commission\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mid-Atlantic\": [\n        \"JJ\"\n    ], \n    \"detrimental\": [\n        \"JJ\"\n    ], \n    \"interest\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"basic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"basil\": [\n        \"NN\"\n    ], \n    \"Marxist-Leninist\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"basin\": [\n        \"NN\"\n    ], \n    \"Kong-dollar\": [\n        \"NN\"\n    ], \n    \"meritocracy\": [\n        \"NN\"\n    ], \n    \"Hibor\": [\n        \"NNP\"\n    ], \n    \"deeper\": [\n        \"JJR\", \n        \"RBR\", \n        \"RB\"\n    ], \n    \"Saddle\": [\n        \"NNP\"\n    ], \n    \"dismiss\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"yellowing\": [\n        \"VBG\"\n    ], \n    \"shattering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"runup\": [\n        \"NN\"\n    ], \n    \"tolled\": [\n        \"VBN\"\n    ], \n    \"MISUSE\": [\n        \"NNP\"\n    ], \n    \"deepen\": [\n        \"VB\"\n    ], \n    \"downplay\": [\n        \"VB\"\n    ], \n    \"stockpickers\": [\n        \"NNS\"\n    ], \n    \"Ohga\": [\n        \"NNP\"\n    ], \n    \"commercial-switch\": [\n        \"JJ\"\n    ], \n    \"Centrale\": [\n        \"NNP\"\n    ], \n    \"affirm\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"all-knowing\": [\n        \"JJ\"\n    ], \n    \"luggage\": [\n        \"NN\"\n    ], \n    \"toll-rate\": [\n        \"JJ\"\n    ], \n    \"courageously\": [\n        \"RB\"\n    ], \n    \"GM-Jaguar\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"unshed\": [\n        \"JJ\"\n    ], \n    \"pessimistic\": [\n        \"JJ\"\n    ], \n    \"settles\": [\n        \"VBZ\"\n    ], \n    \"parastatals\": [\n        \"NNS\"\n    ], \n    \"tax-haven\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"track\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"mauling\": [\n        \"VBG\"\n    ], \n    \"Chastened\": [\n        \"VBN\"\n    ], \n    \"Grevyles\": [\n        \"NNP\"\n    ], \n    \"ABBIE\": [\n        \"NNP\"\n    ], \n    \"lasses\": [\n        \"NNS\"\n    ], \n    \"museums\": [\n        \"NNS\"\n    ], \n    \"waging\": [\n        \"VBG\"\n    ], \n    \"level-headed\": [\n        \"JJ\"\n    ], \n    \"non-refundable\": [\n        \"JJ\"\n    ], \n    \"parish\": [\n        \"NN\"\n    ], \n    \"V.\": [\n        \"NNP\", \n        \"CC\", \n        \"IN\"\n    ], \n    \"stickier\": [\n        \"JJR\"\n    ], \n    \"maryed\": [\n        \"VBN\"\n    ], \n    \"Dixieland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Catalyst\": [\n        \"NNP\"\n    ], \n    \"shoveling\": [\n        \"VBG\"\n    ], \n    \"Bare-Faced\": [\n        \"NNP\"\n    ], \n    \"VA\": [\n        \"NNP\"\n    ], \n    \"bearded\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Valued\": [\n        \"VBN\"\n    ], \n    \"VF\": [\n        \"NNP\"\n    ], \n    \"tax-give-away\": [\n        \"JJ\"\n    ], \n    \"renaissance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"VS\": [\n        \"NNP\"\n    ], \n    \"Values\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"VW\": [\n        \"NNP\"\n    ], \n    \"Va\": [\n        \"NNP\"\n    ], \n    \"black-majority\": [\n        \"JJ\"\n    ], \n    \"inherit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Howorth\": [\n        \"NNP\"\n    ], \n    \"Coniston\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Vt\": [\n        \"NNP\"\n    ], \n    \"Vu\": [\n        \"NNP\"\n    ], \n    \"TVwhich\": [\n        \"NNP\"\n    ], \n    \"pro-independence\": [\n        \"JJ\"\n    ], \n    \"flops\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"investments\": [\n        \"NNS\"\n    ], \n    \"McMullan\": [\n        \"NNP\"\n    ], \n    \"etiquette\": [\n        \"NN\"\n    ], \n    \"Politburo\": [\n        \"NNP\"\n    ], \n    \"well-diversified\": [\n        \"JJ\"\n    ], \n    \"yen\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Muses\": [\n        \"NNP\"\n    ], \n    \"year-old\": [\n        \"JJ\"\n    ], \n    \"yes\": [\n        \"UH\", \n        \"RB\"\n    ], \n    \"five-and-dime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"yet\": [\n        \"RB\", \n        \"CC\"\n    ], \n    \"Musee\": [\n        \"NNP\"\n    ], \n    \"nudge\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"brassiere\": [\n        \"NN\"\n    ], \n    \"decade-old\": [\n        \"JJ\"\n    ], \n    \"Demetrius\": [\n        \"NNP\"\n    ], \n    \"royal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bantered\": [\n        \"VBN\"\n    ], \n    \"Giving\": [\n        \"VBG\"\n    ], \n    \"julep\": [\n        \"NN\"\n    ], \n    \"inefficiencies\": [\n        \"NNS\"\n    ], \n    \"translucent\": [\n        \"JJ\"\n    ], \n    \"contestant\": [\n        \"NN\"\n    ], \n    \"save\": [\n        \"VB\", \n        \"IN\", \n        \"VBP\"\n    ], \n    \"trimming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Brinson\": [\n        \"NNP\"\n    ], \n    \"sapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"roosting\": [\n        \"VBG\"\n    ], \n    \"sailors\": [\n        \"NNS\"\n    ], \n    \"BAKER\": [\n        \"NNP\"\n    ], \n    \"ski-joring\": [\n        \"NN\"\n    ], \n    \"Schulze\": [\n        \"NNP\"\n    ], \n    \"Farrow\": [\n        \"NNP\"\n    ], \n    \"Hatton\": [\n        \"NNP\"\n    ], \n    \"nationalists\": [\n        \"NNS\"\n    ], \n    \"KPMG\": [\n        \"NNP\"\n    ], \n    \"Overseas\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"coincide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hatchback\": [\n        \"NN\"\n    ], \n    \"Pollen\": [\n        \"NNP\"\n    ], \n    \"Discrepancies\": [\n        \"NNS\"\n    ], \n    \"A.F.\": [\n        \"NNP\"\n    ], \n    \"occlusion\": [\n        \"NN\"\n    ], \n    \"career-risking\": [\n        \"JJ\"\n    ], \n    \"chuffing\": [\n        \"VBG\"\n    ], \n    \"game-winning\": [\n        \"JJ\"\n    ], \n    \"Orinoco\": [\n        \"NNP\"\n    ], \n    \"zombies\": [\n        \"NNS\"\n    ], \n    \"Immunex\": [\n        \"NNP\"\n    ], \n    \"angelfish\": [\n        \"NN\"\n    ], \n    \"Witness\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"fur-lined\": [\n        \"JJ\"\n    ], \n    \"theorists\": [\n        \"NNS\"\n    ], \n    \"shuttles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bookseller\": [\n        \"NN\"\n    ], \n    \"somehow\": [\n        \"RB\", \n        \"WRB\"\n    ], \n    \"elderly\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"platters\": [\n        \"NNS\"\n    ], \n    \"vaulted\": [\n        \"VBD\"\n    ], \n    \"blacked-in\": [\n        \"JJ\"\n    ], \n    \"sluicehouse\": [\n        \"NN\"\n    ], \n    \"Noufou\": [\n        \"NNP\"\n    ], \n    \"income-support\": [\n        \"NN\"\n    ], \n    \"Stalingr\": [\n        \"NNP\"\n    ], \n    \"uncoated\": [\n        \"JJ\"\n    ], \n    \"Kyzyl\": [\n        \"NNP\"\n    ], \n    \"noncumulative\": [\n        \"JJ\"\n    ], \n    \"Siege\": [\n        \"NNP\"\n    ], \n    \"seized-property\": [\n        \"JJ\"\n    ], \n    \"archivist\": [\n        \"NN\"\n    ], \n    \"runing\": [\n        \"VBG\"\n    ], \n    \"offcourse\": [\n        \"JJ\"\n    ], \n    \"Moliere\": [\n        \"NNP\"\n    ], \n    \"Rising\": [\n        \"VBG\"\n    ], \n    \"slurry\": [\n        \"NN\"\n    ], \n    \"Vadim\": [\n        \"NNP\"\n    ], \n    \"epigenetic\": [\n        \"JJ\"\n    ], \n    \"Odilo\": [\n        \"NNP\"\n    ], \n    \"molecule\": [\n        \"NN\"\n    ], \n    \"four-color\": [\n        \"JJ\"\n    ], \n    \"two-component\": [\n        \"JJ\"\n    ], \n    \"unreason\": [\n        \"NN\"\n    ], \n    \"end-of-season\": [\n        \"JJ\"\n    ], \n    \"fire-crackers\": [\n        \"NNS\"\n    ], \n    \"videotex\": [\n        \"NN\"\n    ], \n    \"digestible\": [\n        \"JJ\"\n    ], \n    \"inedible\": [\n        \"JJ\"\n    ], \n    \"non-scientist\": [\n        \"JJ\"\n    ], \n    \"Simsbury\": [\n        \"NNP\"\n    ], \n    \"near-maddened\": [\n        \"JJ\"\n    ], \n    \"barbarians\": [\n        \"NNS\"\n    ], \n    \"submarine\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"magazine\": [\n        \"NN\"\n    ], \n    \"Pressing\": [\n        \"VBG\"\n    ], \n    \"Including\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Swinging\": [\n        \"VBG\"\n    ], \n    \"nonstrikers\": [\n        \"NNS\"\n    ], \n    \"double-bogeyed\": [\n        \"VBD\"\n    ], \n    \"Marley\": [\n        \"NNP\"\n    ], \n    \"Haskins\": [\n        \"NNP\"\n    ], \n    \"ores\": [\n        \"NNS\"\n    ], \n    \"thinner\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"anointing\": [\n        \"VBG\"\n    ], \n    \"pungency\": [\n        \"NN\"\n    ], \n    \"Urien\": [\n        \"NNP\"\n    ], \n    \"Lehman\": [\n        \"NNP\"\n    ], \n    \"paunch\": [\n        \"NN\"\n    ], \n    \"jetting\": [\n        \"VBG\"\n    ], \n    \"fumes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slurs\": [\n        \"NNS\"\n    ], \n    \"scalded\": [\n        \"VBN\"\n    ], \n    \"thinned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"non-cash\": [\n        \"JJ\"\n    ], \n    \"murderers\": [\n        \"NNS\"\n    ], \n    \"slipshod\": [\n        \"JJ\"\n    ], \n    \"Unless\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"NBS\": [\n        \"NNP\"\n    ], \n    \"flying\": [\n        \"VBG\", \n        \"VBG|NN|JJ\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"jealousy\": [\n        \"NN\"\n    ], \n    \"voice-processing\": [\n        \"JJ\"\n    ], \n    \"old-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chinese-style\": [\n        \"JJ\"\n    ], \n    \"NBI\": [\n        \"NNP\"\n    ], \n    \"Backed\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"vacated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"NBA\": [\n        \"NNP\"\n    ], \n    \"factions\": [\n        \"NNS\"\n    ], \n    \"most-favored-nation\": [\n        \"JJ\"\n    ], \n    \"expectancies\": [\n        \"NNS\"\n    ], \n    \"Pressure-happy\": [\n        \"JJ\"\n    ], \n    \"Konzerthaus\": [\n        \"NNP\"\n    ], \n    \"Gazdag\": [\n        \"NNP\"\n    ], \n    \"January\": [\n        \"NNP\"\n    ], \n    \"spike\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"GenCorp\": [\n        \"NNP\"\n    ], \n    \"avions\": [\n        \"FW\"\n    ], \n    \"educations\": [\n        \"NNS\"\n    ], \n    \"unpadded\": [\n        \"JJ\"\n    ], \n    \"Masuda\": [\n        \"NNP\"\n    ], \n    \"assented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"B.D.\": [\n        \"NNP\"\n    ], \n    \"titters\": [\n        \"NNS\"\n    ], \n    \"Franke\": [\n        \"NNP\"\n    ], \n    \"prevents\": [\n        \"VBZ\"\n    ], \n    \"caution\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"energize\": [\n        \"VB\"\n    ], \n    \"Franks\": [\n        \"NNPS\"\n    ], \n    \"Unilever\": [\n        \"NNP\"\n    ], \n    \"tollways\": [\n        \"RB\"\n    ], \n    \"horrifying\": [\n        \"JJ\"\n    ], \n    \"average\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"optical-storage\": [\n        \"JJ\"\n    ], \n    \"Sybert\": [\n        \"NNP\"\n    ], \n    \"spotlighted\": [\n        \"VBN\"\n    ], \n    \"neuritis\": [\n        \"NN\"\n    ], \n    \"D-Mass.\": [\n        \"NNP\"\n    ], \n    \"Nuclear\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"erupts\": [\n        \"VBZ\"\n    ], \n    \"beautifully-tapered\": [\n        \"JJ\"\n    ], \n    \"wriggling\": [\n        \"VBG\"\n    ], \n    \"Masse\": [\n        \"NNP\"\n    ], \n    \"thunk\": [\n        \"NN\"\n    ], \n    \"pimpled\": [\n        \"JJ\"\n    ], \n    \"Massa\": [\n        \"NNP\"\n    ], \n    \"tarnished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Gaza\": [\n        \"NNP\"\n    ], \n    \"muffins\": [\n        \"NNS\"\n    ], \n    \"unallocable\": [\n        \"JJ\"\n    ], \n    \"Highway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"graft\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bruinish\": [\n        \"JJ\"\n    ], \n    \"marking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bruising\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"cents-a-unit\": [\n        \"JJ\"\n    ], \n    \"fosters\": [\n        \"VBZ\"\n    ], \n    \"Klerk\": [\n        \"NNP\"\n    ], \n    \"Bimini\": [\n        \"NNP\"\n    ], \n    \"Tagliabue\": [\n        \"NNP\"\n    ], \n    \"Velcro\": [\n        \"NN\"\n    ], \n    \"Sanger-Harris\": [\n        \"NNP\"\n    ], \n    \"tamale\": [\n        \"NN\"\n    ], \n    \"pouted\": [\n        \"VBD\"\n    ], \n    \"roomier\": [\n        \"JJR\"\n    ], \n    \"Criminalization\": [\n        \"NN\"\n    ], \n    \"braking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Drive\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"parenthood\": [\n        \"NN\"\n    ], \n    \"cement-truck\": [\n        \"JJ\"\n    ], \n    \"journey\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"NEARLY\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"budded\": [\n        \"VBD\"\n    ], \n    \"magnificence\": [\n        \"NN\"\n    ], \n    \"Mass.\": [\n        \"NNP\"\n    ], \n    \"weekend\": [\n        \"NN\"\n    ], \n    \"Iroquois\": [\n        \"NNP\"\n    ], \n    \"Rothe\": [\n        \"NNP\"\n    ], \n    \"jacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lithell\": [\n        \"NNP\"\n    ], \n    \"Echoing\": [\n        \"VBG\"\n    ], \n    \"cut-and-paste\": [\n        \"VB\"\n    ], \n    \"Mendelson\": [\n        \"NNP\"\n    ], \n    \"Decisions\": [\n        \"NNS\"\n    ], \n    \"trembled\": [\n        \"VBD\"\n    ], \n    \"jacket\": [\n        \"NN\"\n    ], \n    \"stripping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"taxlow\": [\n        \"NN\"\n    ], \n    \"profits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Apalachicola\": [\n        \"NNP\"\n    ], \n    \"vermilion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Systeme\": [\n        \"NNP\"\n    ], \n    \"five-game\": [\n        \"JJ\"\n    ], \n    \"Desmond\": [\n        \"NNP\"\n    ], \n    \"cattlemen\": [\n        \"NNS\"\n    ], \n    \"commentaries\": [\n        \"NNS\"\n    ], \n    \"anticipation\": [\n        \"NN\"\n    ], \n    \"Armisteads\": [\n        \"NNPS\"\n    ], \n    \"disorders\": [\n        \"NNS\"\n    ], \n    \"unrelieved\": [\n        \"JJ\"\n    ], \n    \"Hosogane\": [\n        \"NNP\"\n    ], \n    \"Atlas-Centaur\": [\n        \"NNP\"\n    ], \n    \"bond-fund\": [\n        \"NN\"\n    ], \n    \"expansion-contraction\": [\n        \"NN\"\n    ], \n    \"blasphemies\": [\n        \"NNS\"\n    ], \n    \"Danzig\": [\n        \"NNP\"\n    ], \n    \"advises\": [\n        \"VBZ\"\n    ], \n    \"Grill\": [\n        \"NNP\"\n    ], \n    \"hypercellularity\": [\n        \"NN\"\n    ], \n    \"trouble-free\": [\n        \"JJ\"\n    ], \n    \"defying\": [\n        \"VBG\"\n    ], \n    \"advised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"unworn\": [\n        \"JJ\"\n    ], \n    \"Donaldson\": [\n        \"NNP\"\n    ], \n    \"mayorship\": [\n        \"NN\"\n    ], \n    \"Riben\": [\n        \"NNP\"\n    ], \n    \"swapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hang-ups\": [\n        \"NNS\"\n    ], \n    \"Smythe\": [\n        \"NNP\"\n    ], \n    \"Cortese\": [\n        \"NNP\"\n    ], \n    \"Distally\": [\n        \"RB\"\n    ], \n    \"Potemkin\": [\n        \"NNP\"\n    ], \n    \"noiseless\": [\n        \"JJ\"\n    ], \n    \"Bordetella\": [\n        \"NN\"\n    ], \n    \"round\": [\n        \"NN\", \n        \"IN\", \n        \"JJ\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Ribes\": [\n        \"NNP\"\n    ], \n    \"surgically\": [\n        \"RB\"\n    ], \n    \"rhapsodizing\": [\n        \"VBG\"\n    ], \n    \"unexpected\": [\n        \"JJ\"\n    ], \n    \"Jacchia\": [\n        \"NNP\"\n    ], \n    \"Beefing\": [\n        \"VBG\"\n    ], \n    \"Jardine\": [\n        \"NNP\"\n    ], \n    \"Ath.\": [\n        \"NNP\"\n    ], \n    \"Lags\": [\n        \"VBZ\"\n    ], \n    \"Opus\": [\n        \"NNP\"\n    ], \n    \"Issuing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bombardment\": [\n        \"NN\"\n    ], \n    \"Niva\": [\n        \"NNP\"\n    ], \n    \"ravenous\": [\n        \"JJ\"\n    ], \n    \"circulars\": [\n        \"NNS\"\n    ], \n    \"Head\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"filler\": [\n        \"NN\"\n    ], \n    \"filles\": [\n        \"FW\"\n    ], \n    \"Orion\": [\n        \"NNP\"\n    ], \n    \"pound-DM\": [\n        \"JJ\"\n    ], \n    \"acquisitiveness\": [\n        \"NN\"\n    ], \n    \"Wrote\": [\n        \"VBD\"\n    ], \n    \"Heat\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"deficiencies\": [\n        \"NNS\"\n    ], \n    \"Hear\": [\n        \"VB\"\n    ], \n    \"Defensive\": [\n        \"JJ\"\n    ], \n    \"international\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Piller\": [\n        \"NNP\"\n    ], \n    \"Forever\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"impassiveness\": [\n        \"NN\"\n    ], \n    \"shutters\": [\n        \"NNS\"\n    ], \n    \"dwarf\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Cooperman\": [\n        \"NNP\"\n    ], \n    \"Fingerprints\": [\n        \"NNS\"\n    ], \n    \"high-protein\": [\n        \"JJ\"\n    ], \n    \"JCKC\": [\n        \"NNP\"\n    ], \n    \"Keeshond\": [\n        \"NN\"\n    ], \n    \"Goodwills\": [\n        \"NNPS\"\n    ], \n    \"wearily\": [\n        \"RB\"\n    ], \n    \"exemplified\": [\n        \"VBN\"\n    ], \n    \"Lotus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fleetest\": [\n        \"JJS\"\n    ], \n    \"Railroads\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"jungles\": [\n        \"NNS\"\n    ], \n    \"exemplifies\": [\n        \"VBZ\"\n    ], \n    \"Session\": [\n        \"NN\"\n    ], \n    \"redoubling\": [\n        \"VBG\"\n    ], \n    \"Glison\": [\n        \"NNP\"\n    ], \n    \"two-foot\": [\n        \"JJ\"\n    ], \n    \"slackened\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"recounting\": [\n        \"VBG\"\n    ], \n    \"insolent\": [\n        \"JJ\"\n    ], \n    \"statewide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"merely\": [\n        \"RB\"\n    ], \n    \"Ossad\": [\n        \"NNP\"\n    ], \n    \"sweating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fox-terrier\": [\n        \"NN\"\n    ], \n    \"spiffing\": [\n        \"JJ\"\n    ], \n    \"mid-1960s\": [\n        \"NNS\"\n    ], \n    \"Thrush\": [\n        \"NNP\"\n    ], \n    \"Beecham\": [\n        \"NNP\"\n    ], \n    \"lieutenants\": [\n        \"NNS\"\n    ], \n    \"visit\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"head-hunting\": [\n        \"NN\"\n    ], \n    \"disaffiliated\": [\n        \"JJ\"\n    ], \n    \"Pietism\": [\n        \"NNP\"\n    ], \n    \"Novell\": [\n        \"NNP\"\n    ], \n    \"Endless\": [\n        \"JJ\"\n    ], \n    \"Comment\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"preserving\": [\n        \"VBG\"\n    ], \n    \"Solid\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"unequaled\": [\n        \"JJ\"\n    ], \n    \"cancer-suppressors\": [\n        \"NNS\"\n    ], \n    \"Hayes\": [\n        \"NNP\"\n    ], \n    \"lovelier-than-life\": [\n        \"JJ\"\n    ], \n    \"Hayek\": [\n        \"NNP\"\n    ], \n    \"Rebels\": [\n        \"NNS\"\n    ], \n    \"real-estate-related\": [\n        \"JJ\"\n    ], \n    \"reelected\": [\n        \"VBN\"\n    ], \n    \"Cuatrecasas\": [\n        \"NNP\"\n    ], \n    \"premarital\": [\n        \"JJ\"\n    ], \n    \"birthrate\": [\n        \"NN\"\n    ], \n    \"Kappil\": [\n        \"NNP\"\n    ], \n    \"Improvements\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"making\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Archive\": [\n        \"NNP\"\n    ], \n    \"nearest\": [\n        \"JJS\", \n        \"RBS\", \n        \"IN\"\n    ], \n    \"Fundamentally\": [\n        \"RB\"\n    ], \n    \"frescoes\": [\n        \"NNS\"\n    ], \n    \"flouting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"greenest\": [\n        \"JJS\"\n    ], \n    \"Gulfstream\": [\n        \"NNP\"\n    ], \n    \"Yemens\": [\n        \"NNPS\"\n    ], \n    \"frescoed\": [\n        \"JJ\"\n    ], \n    \"voice-recognition\": [\n        \"NN\"\n    ], \n    \"burgeoning\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Tristan\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"overreacting\": [\n        \"VBG\"\n    ], \n    \"Arpanet\": [\n        \"NNP\"\n    ], \n    \"two-dozen\": [\n        \"JJ\"\n    ], \n    \"equipment-leasing\": [\n        \"JJ\"\n    ], \n    \"trollop\": [\n        \"NN\"\n    ], \n    \"Pretender\": [\n        \"NN\"\n    ], \n    \"Row\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"persuasion\": [\n        \"NN\"\n    ], \n    \"Shoppsers\": [\n        \"NNS\"\n    ], \n    \"testicle\": [\n        \"NN\"\n    ], \n    \"bond-price\": [\n        \"JJ\"\n    ], \n    \"Raymon\": [\n        \"NNP\"\n    ], \n    \"Kreditanstalt\": [\n        \"NNP\"\n    ], \n    \"Rapier\": [\n        \"NN\"\n    ], \n    \"Milenoff\": [\n        \"NNP\"\n    ], \n    \"deforestation\": [\n        \"NN\"\n    ], \n    \"COOKE\": [\n        \"NNP\"\n    ], \n    \"Sexton\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Succession\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Teatime\": [\n        \"NN\"\n    ], \n    \"noun\": [\n        \"NN\"\n    ], \n    \"CERA\": [\n        \"NNP\"\n    ], \n    \"basked\": [\n        \"VBD\"\n    ], \n    \"Series\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"purify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Magazine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Carliner\": [\n        \"NNP\"\n    ], \n    \"auto-limitation\": [\n        \"NN\"\n    ], \n    \"spray-dried\": [\n        \"JJ\"\n    ], \n    \"Kerby\": [\n        \"NNP\"\n    ], \n    \"HOPE\": [\n        \"VBP\"\n    ], \n    \"abuzz\": [\n        \"JJ\"\n    ], \n    \"basket\": [\n        \"NN\"\n    ], \n    \"nous\": [\n        \"FW\"\n    ], \n    \"non-call\": [\n        \"JJ\"\n    ], \n    \"Medicare-catastrophic-care\": [\n        \"JJ\"\n    ], \n    \"shoes\": [\n        \"NNS\"\n    ], \n    \"backs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Nutcracker\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"COMPUTERS\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Leshem\": [\n        \"NNP\"\n    ], \n    \"Mutual\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mediaevalist\": [\n        \"NN\"\n    ], \n    \"underpriced\": [\n        \"JJ\", \n        \"VBN\", \n        \"VBN|JJ\"\n    ], \n    \"Olvey\": [\n        \"NNP\"\n    ], \n    \"Asra\": [\n        \"NNP\"\n    ], \n    \"petrochemicals\": [\n        \"NNS\"\n    ], \n    \"equip\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"winger\": [\n        \"NN\"\n    ], \n    \"jock\": [\n        \"NN\"\n    ], \n    \"observational\": [\n        \"JJ\"\n    ], \n    \"Balkanizing\": [\n        \"VBG\"\n    ], \n    \"group\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"monitor\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"interesting\": [\n        \"JJ\"\n    ], \n    \"Pancoast\": [\n        \"NNP\"\n    ], \n    \"Uniroyal\": [\n        \"NNP\"\n    ], \n    \"FADA\": [\n        \"NNP\"\n    ], \n    \"Muslims\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"FADE\": [\n        \"VBP\"\n    ], \n    \"Listerine\": [\n        \"NNP\"\n    ], \n    \"Hanlon\": [\n        \"NNP\"\n    ], \n    \"Japanese-type\": [\n        \"JJ\"\n    ], \n    \"INGERSOLL-RAND\": [\n        \"NNP\"\n    ], \n    \"Fanny\": [\n        \"NNP\"\n    ], \n    \"repriced\": [\n        \"VBN\"\n    ], \n    \"resignedly\": [\n        \"RB\"\n    ], \n    \"Washington-area\": [\n        \"JJ\"\n    ], \n    \"Kyle\": [\n        \"NNP\"\n    ], \n    \"-ing\": [\n        \"JJ\"\n    ], \n    \"Jellyby\": [\n        \"NNP\"\n    ], \n    \"Vocational\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"MIG-2\": [\n        \"JJ\"\n    ], \n    \"leopards\": [\n        \"NNS\"\n    ], \n    \"Appalled\": [\n        \"JJ\"\n    ], \n    \"rattles\": [\n        \"VBZ\"\n    ], \n    \"rattler\": [\n        \"NN\"\n    ], \n    \"handbills\": [\n        \"NNS\"\n    ], \n    \"workload\": [\n        \"NN\"\n    ], \n    \"withholdings\": [\n        \"NNS\"\n    ], \n    \"feverish\": [\n        \"JJ\"\n    ], \n    \"Bertoli\": [\n        \"NNP\"\n    ], \n    \"thunder-purple\": [\n        \"JJ\"\n    ], \n    \"Purse\": [\n        \"NNP\"\n    ], \n    \"AIB.PR\": [\n        \"NNP\"\n    ], \n    \"wide-cut\": [\n        \"JJ\"\n    ], \n    \"Minimum\": [\n        \"NNP\"\n    ], \n    \"careless\": [\n        \"JJ\"\n    ], \n    \"seacoast\": [\n        \"NN\"\n    ], \n    \"Bertolt\": [\n        \"NNP\"\n    ], \n    \"Turnbull\": [\n        \"NNP\"\n    ], \n    \"Byzas\": [\n        \"NNP\"\n    ], \n    \"vogue\": [\n        \"NN\"\n    ], \n    \"brews\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Oczakov\": [\n        \"NNP\"\n    ], \n    \"Eritrea\": [\n        \"NNP\"\n    ], \n    \"Holdings\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Health-insurance\": [\n        \"NN\"\n    ], \n    \"treacherous\": [\n        \"JJ\"\n    ], \n    \"some...\": [\n        \":\"\n    ], \n    \"conventions\": [\n        \"NNS\"\n    ], \n    \"Saviour\": [\n        \"NNP\"\n    ], \n    \"speculators\": [\n        \"NNS\"\n    ], \n    \"fingertips\": [\n        \"NNS\"\n    ], \n    \"worried\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"shewe\": [\n        \"NN\"\n    ], \n    \"Keo\": [\n        \"NNP\"\n    ], \n    \"Pomham\": [\n        \"NNP\"\n    ], \n    \"Upham\": [\n        \"NNP\"\n    ], \n    \"Kel\": [\n        \"NNP\"\n    ], \n    \"stitch\": [\n        \"NN\"\n    ], \n    \"Keg\": [\n        \"NNP\"\n    ], \n    \"horoscope\": [\n        \"NN\"\n    ], \n    \"Gauloises\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"earlier-announced\": [\n        \"JJ\"\n    ], \n    \"condemns\": [\n        \"VBZ\"\n    ], \n    \"Formation\": [\n        \"NNP\"\n    ], \n    \"Aires\": [\n        \"NNP\"\n    ], \n    \"Key\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Luvs\": [\n        \"NNPS\"\n    ], \n    \"Cefiro\": [\n        \"NNP\"\n    ], \n    \"patenting\": [\n        \"NN\"\n    ], \n    \"brimming\": [\n        \"VBG\"\n    ], \n    \"Bloomingdale\": [\n        \"NNP\"\n    ], \n    \"Pro-life\": [\n        \"JJ\"\n    ], \n    \"Commerce\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Comrade\": [\n        \"NN\"\n    ], \n    \"earthquake-triggered\": [\n        \"JJ\"\n    ], \n    \"furtively\": [\n        \"RB\"\n    ], \n    \"semi-autonomous\": [\n        \"JJ\"\n    ], \n    \"bringing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Baudelaire\": [\n        \"NNP\"\n    ], \n    \"Gorshin\": [\n        \"NNP\"\n    ], \n    \"Afternoon\": [\n        \"UH\"\n    ], \n    \"intendants\": [\n        \"NNS\"\n    ], \n    \"attarcks\": [\n        \"NNS\"\n    ], \n    \"Baku\": [\n        \"NNP\"\n    ], \n    \"Installed\": [\n        \"VBN\"\n    ], \n    \"Gesell\": [\n        \"NNP\"\n    ], \n    \"registrar\": [\n        \"NN\"\n    ], \n    \"funks\": [\n        \"NNS\"\n    ], \n    \"Huntington\": [\n        \"NNP\"\n    ], \n    \"Bake\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Sherwin\": [\n        \"NNP\"\n    ], \n    \"remorseful\": [\n        \"JJ\"\n    ], \n    \"Epes\": [\n        \"NNP\"\n    ], \n    \"Humanities\": [\n        \"NNP\"\n    ], \n    \"tidying\": [\n        \"VBG\"\n    ], \n    \"nutritional\": [\n        \"JJ\"\n    ], \n    \"specificity\": [\n        \"NN\"\n    ], \n    \"Inflationary\": [\n        \"JJ\"\n    ], \n    \"methodological\": [\n        \"JJ\"\n    ], \n    \"Demands\": [\n        \"NNS\"\n    ], \n    \"Jalalabad\": [\n        \"NNP\"\n    ], \n    \"Posey\": [\n        \"NNP\"\n    ], \n    \"PVC\": [\n        \"NNP\"\n    ], \n    \"health-and-benefits\": [\n        \"JJ\"\n    ], \n    \"lambaste\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fiery\": [\n        \"JJ\"\n    ], \n    \"A[fj]\": [\n        \"SYM\"\n    ], \n    \"Teen-agers\": [\n        \"NNS\"\n    ], \n    \"foreign-led\": [\n        \"JJ\"\n    ], \n    \"meme\": [\n        \"FW\"\n    ], \n    \"gaudy\": [\n        \"JJ\"\n    ], \n    \"Oberweis\": [\n        \"NNP\"\n    ], \n    \"Sauerteig\": [\n        \"NNP\"\n    ], \n    \"adjourned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"allegedly\": [\n        \"RB\"\n    ], \n    \"lean-to\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"memo\": [\n        \"NN\"\n    ], \n    \"Deposits\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"LOOKING\": [\n        \"VBG\"\n    ], \n    \"Samurai\": [\n        \"NNP\"\n    ], \n    \"straw-colored\": [\n        \"JJ\"\n    ], \n    \"semiconductor-production\": [\n        \"NN\"\n    ], \n    \"illegality\": [\n        \"NN\"\n    ], \n    \"remora\": [\n        \"NNS\"\n    ], \n    \"scraping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"areosol\": [\n        \"NN\"\n    ], \n    \"Hendersonville\": [\n        \"NNP\"\n    ], \n    \"centigrade\": [\n        \"JJ\"\n    ], \n    \"Right-hander\": [\n        \"JJ\"\n    ], \n    \"Materialism\": [\n        \"NN\"\n    ], \n    \"strolls\": [\n        \"VBZ\"\n    ], \n    \"Subsistencias\": [\n        \"NNP\"\n    ], \n    \"lick\": [\n        \"VB\"\n    ], \n    \"Container\": [\n        \"NNP\"\n    ], \n    \"librarian-board\": [\n        \"NN\"\n    ], \n    \"lice\": [\n        \"NNS\"\n    ], \n    \"entombed\": [\n        \"VBN\"\n    ], \n    \"Tight\": [\n        \"JJ\"\n    ], \n    \"Karnes\": [\n        \"NNP\"\n    ], \n    \"pro-forma\": [\n        \"FW\"\n    ], \n    \"modality\": [\n        \"NN\"\n    ], \n    \"initiatiors\": [\n        \"NNS\"\n    ], \n    \"recreated\": [\n        \"VBN\"\n    ], \n    \"Pierre-Karl\": [\n        \"NNP\"\n    ], \n    \"vestments\": [\n        \"NNS\"\n    ], \n    \"Visitation\": [\n        \"NNP\"\n    ], \n    \"Murphy\": [\n        \"NNP\"\n    ], \n    \"Langley\": [\n        \"NNP\"\n    ], \n    \"recreates\": [\n        \"VBZ\"\n    ], \n    \"performance\": [\n        \"NN\"\n    ], \n    \"Francophone\": [\n        \"JJ\"\n    ], \n    \"store-front\": [\n        \"JJ\"\n    ], \n    \"bets\": [\n        \"NNS\"\n    ], \n    \"formulas\": [\n        \"NNS\"\n    ], \n    \"Thule\": [\n        \"NNP\"\n    ], \n    \"Dellwood\": [\n        \"NNP\"\n    ], \n    \"comings\": [\n        \"NNS\"\n    ], \n    \"Hatchet\": [\n        \"NNP\"\n    ], \n    \"incidence\": [\n        \"NN\"\n    ], \n    \"Tristano\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rehearsal\": [\n        \"NN\"\n    ], \n    \"assault\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"barrage\": [\n        \"NN\"\n    ], \n    \"bete\": [\n        \"JJ\"\n    ], \n    \"formulae\": [\n        \"NNS\"\n    ], \n    \"complaints\": [\n        \"NNS\"\n    ], \n    \"Dworkin\": [\n        \"NNP\"\n    ], \n    \"Hatched\": [\n        \"VBN\"\n    ], \n    \"proxies\": [\n        \"NNS\"\n    ], \n    \"spaced\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"queens\": [\n        \"NNS\"\n    ], \n    \"Beyond\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"radioactive\": [\n        \"JJ\"\n    ], \n    \"Littlepage\": [\n        \"NNP\"\n    ], \n    \"multi-product\": [\n        \"JJ\"\n    ], \n    \"Favored\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"creativeness\": [\n        \"NN\"\n    ], \n    \"cowpuncher\": [\n        \"NN\"\n    ], \n    \"scowl\": [\n        \"VBP\"\n    ], \n    \"voodoo\": [\n        \"NN\"\n    ], \n    \"Dominguez\": [\n        \"NNP\"\n    ], \n    \"Coogan\": [\n        \"NNP\"\n    ], \n    \"down-down\": [\n        \"JJ\"\n    ], \n    \"watered-down\": [\n        \"JJ\"\n    ], \n    \"rejoinder\": [\n        \"NN\"\n    ], \n    \"playoffs\": [\n        \"NNS\"\n    ], \n    \"newer\": [\n        \"JJR\"\n    ], \n    \"finger-sucking\": [\n        \"NN\"\n    ], \n    \"kwon\": [\n        \"FW\"\n    ], \n    \"voter\": [\n        \"NN\"\n    ], \n    \"Delloye\": [\n        \"NNP\"\n    ], \n    \"bank-teller\": [\n        \"NN\"\n    ], \n    \"Gabriela\": [\n        \"NNP\"\n    ], \n    \"tiredness\": [\n        \"NN\"\n    ], \n    \"Stephen\": [\n        \"NNP\"\n    ], \n    \"Condit\": [\n        \"NNP\"\n    ], \n    \"Health-Chem\": [\n        \"NNP\"\n    ], \n    \"Fosdick\": [\n        \"NNP\"\n    ], \n    \"Across\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"reek\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"despairingly\": [\n        \"RB\"\n    ], \n    \"stormy\": [\n        \"JJ\"\n    ], \n    \"reel\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"RIT\": [\n        \"NNP\"\n    ], \n    \"storms\": [\n        \"NNS\"\n    ], \n    \"non-dramas\": [\n        \"NNS\"\n    ], \n    \"analytic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"McKinzie\": [\n        \"NNP\"\n    ], \n    \"Israeli-born\": [\n        \"JJ\"\n    ], \n    \"ice-baggers\": [\n        \"NNS\"\n    ], \n    \"helix\": [\n        \"NN\"\n    ], \n    \"ostensible\": [\n        \"JJ\"\n    ], \n    \"RID\": [\n        \"VB\"\n    ], \n    \"McGwire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sensitivities\": [\n        \"NNS\"\n    ], \n    \"awareness\": [\n        \"NN\"\n    ], \n    \"Confrontation\": [\n        \"NN\"\n    ], \n    \"Organizations\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"geocentric\": [\n        \"JJ\"\n    ], \n    \"Large\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"steel-quota\": [\n        \"NN\"\n    ], \n    \"unimportant\": [\n        \"JJ\"\n    ], \n    \"a.k.a.\": [\n        \"JJ\"\n    ], \n    \"Largo\": [\n        \"NNP\"\n    ], \n    \"sociability\": [\n        \"NN\"\n    ], \n    \"blends\": [\n        \"NNS\"\n    ], \n    \"Triton\": [\n        \"NNP\"\n    ], \n    \"Gillian\": [\n        \"NNP\"\n    ], \n    \"biosynthesized\": [\n        \"VBN\"\n    ], \n    \"Striking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"moodily\": [\n        \"RB\"\n    ], \n    \"supply-demand\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"morning\": [\n        \"NN\"\n    ], \n    \"rotationally\": [\n        \"RB\"\n    ], \n    \"Straits\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"man.\": [\n        \"NN\"\n    ], \n    \"long-bubbling\": [\n        \"JJ\"\n    ], \n    \"Education\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"audited\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Shotwell\": [\n        \"NNP\"\n    ], \n    \"Visualize\": [\n        \"VB\"\n    ], \n    \"Connoisseur\": [\n        \"NNP\"\n    ], \n    \"sensitives\": [\n        \"NNS\"\n    ], \n    \"Vital\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"eliminating\": [\n        \"VBG\"\n    ], \n    \"contains\": [\n        \"VBZ\"\n    ], \n    \"Acrylic\": [\n        \"NNP\"\n    ], \n    \"penny-stock\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"impetigo\": [\n        \"NN\"\n    ], \n    \"radiates\": [\n        \"VBZ\"\n    ], \n    \"Itching\": [\n        \"VBG\"\n    ], \n    \"Socinianism\": [\n        \"NNP\"\n    ], \n    \"RECORDS\": [\n        \"NNS\"\n    ], \n    \"enough\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"radiated\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"J.M.\": [\n        \"NNP\", \n        \".\"\n    ], \n    \"luncheon-meat\": [\n        \"NN\"\n    ], \n    \"evensong\": [\n        \"NN\"\n    ], \n    \"approvals\": [\n        \"NNS\"\n    ], \n    \"Rescued\": [\n        \"VBN\"\n    ], \n    \"ascribed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"quarter-by-quarter\": [\n        \"JJ\"\n    ], \n    \"diverticulitis\": [\n        \"NN\"\n    ], \n    \"nationality\": [\n        \"NN\"\n    ], \n    \"pharmacists\": [\n        \"NNS\"\n    ], \n    \"Havens\": [\n        \"NNP\"\n    ], \n    \"coupons\": [\n        \"NNS\"\n    ], \n    \"Equally\": [\n        \"RB\"\n    ], \n    \"self-confessed\": [\n        \"JJ\"\n    ], \n    \"restroom\": [\n        \"NN\"\n    ], \n    \"cognizance\": [\n        \"NN\"\n    ], \n    \"guardians\": [\n        \"NNS\"\n    ], \n    \"Anfia\": [\n        \"NNP\"\n    ], \n    \"half-conscious\": [\n        \"JJ\"\n    ], \n    \"pacified\": [\n        \"VBD\"\n    ], \n    \"Lantos\": [\n        \"NNP\"\n    ], \n    \"Class-D\": [\n        \"NNP\"\n    ], \n    \"Pearl\": [\n        \"NNP\"\n    ], \n    \"pacifies\": [\n        \"VBZ\"\n    ], \n    \"pacifier\": [\n        \"NN\"\n    ], \n    \"Kohnstamm-negative\": [\n        \"JJ\"\n    ], \n    \"specialty-material\": [\n        \"JJ\"\n    ], \n    \"ascribes\": [\n        \"VBZ\"\n    ], \n    \"gear-sets\": [\n        \"NNS\"\n    ], \n    \"Anthropology\": [\n        \"NNP\"\n    ], \n    \"euphemisms\": [\n        \"NNS\"\n    ], \n    \"Southwood\": [\n        \"NNP\"\n    ], \n    \"Medicare-approved\": [\n        \"JJ\"\n    ], \n    \"tilts\": [\n        \"VBZ\"\n    ], \n    \"crossfire\": [\n        \"NN\"\n    ], \n    \"Constance\": [\n        \"NNP\"\n    ], \n    \"attaching\": [\n        \"VBG\"\n    ], \n    \"computer-oriented\": [\n        \"JJ\"\n    ], \n    \"judging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"oxyhydroxides\": [\n        \"NNS\"\n    ], \n    \"Getulio\": [\n        \"NNP\"\n    ], \n    \"finial\": [\n        \"NN\"\n    ], \n    \"fiftieth\": [\n        \"JJ\"\n    ], \n    \"Millbrae\": [\n        \"NNP\"\n    ], \n    \"Romulo\": [\n        \"NNP\"\n    ], \n    \"Rothmeier\": [\n        \"NNP\"\n    ], \n    \"Pointe\": [\n        \"NNP\"\n    ], \n    \"oust\": [\n        \"VB\"\n    ], \n    \"squash\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"laptops\": [\n        \"NNS\"\n    ], \n    \"Ackroyd\": [\n        \"NNP\"\n    ], \n    \"Points\": [\n        \"NNPS\"\n    ], \n    \"declaration\": [\n        \"NN\"\n    ], \n    \"Action\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"COME\": [\n        \"VBN\"\n    ], \n    \"Bamsi\": [\n        \"NNP\"\n    ], \n    \"sound\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"cocu\": [\n        \"NN\"\n    ], \n    \"Ambulances\": [\n        \"NNS\"\n    ], \n    \"Allegretti\": [\n        \"NNP\"\n    ], \n    \"epidermis\": [\n        \"NN\"\n    ], \n    \"inadequacies\": [\n        \"NNS\"\n    ], \n    \"troopships\": [\n        \"NNS\"\n    ], \n    \"abortion-funding\": [\n        \"JJ\"\n    ], \n    \"coca\": [\n        \"NN\"\n    ], \n    \"many\": [\n        \"JJ\", \n        \"DT\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"NNS\", \n        \"PDT\"\n    ], \n    \"cancelled\": [\n        \"VBN\"\n    ], \n    \"slapping\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"cock\": [\n        \"NN\"\n    ], \n    \"nonlinguistic\": [\n        \"JJ\"\n    ], \n    \"Factors\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Sudan\": [\n        \"NNP\"\n    ], \n    \"Lutz\": [\n        \"NNP\"\n    ], \n    \"Antonio-based\": [\n        \"JJ\"\n    ], \n    \"Factory\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"dynamos\": [\n        \"NNS\"\n    ], \n    \"sleeping\": [\n        \"VBG\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"strain\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chappaqua\": [\n        \"NNP\"\n    ], \n    \"releases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Monticciolo\": [\n        \"NNP\"\n    ], \n    \"primitives\": [\n        \"NNS\"\n    ], \n    \"Ovens\": [\n        \"NNS\"\n    ], \n    \"creaks\": [\n        \"NNS\"\n    ], \n    \"job-destroying\": [\n        \"JJ\"\n    ], \n    \"chromatography\": [\n        \"NN\"\n    ], \n    \"Grumble\": [\n        \"NNP\"\n    ], \n    \"belie\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"CD-4\": [\n        \"NNP\"\n    ], \n    \"Guignol\": [\n        \"NNP\"\n    ], \n    \"compiling\": [\n        \"VBG\"\n    ], \n    \"aerobics\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"clammy\": [\n        \"JJ\"\n    ], \n    \"safe-conduct\": [\n        \"NN\"\n    ], \n    \"unperceived\": [\n        \"VBN\"\n    ], \n    \"Hardwick\": [\n        \"NNP\"\n    ], \n    \"hypothalamic-cortical\": [\n        \"JJ\"\n    ], \n    \"pickoffs\": [\n        \"NNS\"\n    ], \n    \"Embedded\": [\n        \"VBN\"\n    ], \n    \"patrician\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"assist\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Waldman\": [\n        \"NNP\"\n    ], \n    \"nacho-crunching\": [\n        \"JJ\"\n    ], \n    \"CD-I\": [\n        \"NNP\"\n    ], \n    \"rough-hewn\": [\n        \"JJ\"\n    ], \n    \"more-open\": [\n        \"JJ\"\n    ], \n    \"motorcade\": [\n        \"NN\"\n    ], \n    \"gas-producing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tribes\": [\n        \"NNS\"\n    ], \n    \"shortwings\": [\n        \"NNS\"\n    ], \n    \"businesslike\": [\n        \"JJ\"\n    ], \n    \"Miller-Studds\": [\n        \"NNP\"\n    ], \n    \"biwa\": [\n        \"FW\"\n    ], \n    \"Motors\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"coming-of-age\": [\n        \"JJ\"\n    ], \n    \"Sweezey\": [\n        \"NNP\"\n    ], \n    \"A.K.C.\": [\n        \"NNP\"\n    ], \n    \"uncomplicated\": [\n        \"JJ\"\n    ], \n    \"cameramen\": [\n        \"NNS\"\n    ], \n    \"handouts\": [\n        \"NNS\"\n    ], \n    \"outdoor\": [\n        \"JJ\"\n    ], \n    \"sputters\": [\n        \"VBZ\"\n    ], \n    \"asset-backed\": [\n        \"JJ\"\n    ], \n    \"unionist\": [\n        \"NN\"\n    ], \n    \"sights\": [\n        \"NNS\"\n    ], \n    \"French-made\": [\n        \"JJ\"\n    ], \n    \"Plastic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"unofficial\": [\n        \"JJ\"\n    ], \n    \"Zaharah\": [\n        \"NNP\"\n    ], \n    \"thudding\": [\n        \"VBG\"\n    ], \n    \"despoiling\": [\n        \"VBG\"\n    ], \n    \"Git\": [\n        \"VB\"\n    ], \n    \"England-based\": [\n        \"JJ\"\n    ], \n    \"Rowland\": [\n        \"NNP\"\n    ], \n    \"Ramada\": [\n        \"NNP\"\n    ], \n    \"Taurus\": [\n        \"NNP\"\n    ], \n    \"Cezannes\": [\n        \"NNPS\"\n    ], \n    \"meteorite\": [\n        \"NN\"\n    ], \n    \"A5\": [\n        \"NN\"\n    ], \n    \"Soleil\": [\n        \"NNP\"\n    ], \n    \"atomisation\": [\n        \"NN\"\n    ], \n    \"Ulric\": [\n        \"NNP\"\n    ], \n    \"decentralization\": [\n        \"NN\"\n    ], \n    \"GROVE\": [\n        \"NNP\"\n    ], \n    \"PROSPER\": [\n        \"VBP\"\n    ], \n    \"Quadrille\": [\n        \"NNP\"\n    ], \n    \"nonconvertible\": [\n        \"JJ\"\n    ], \n    \"gnarled\": [\n        \"JJ\"\n    ], \n    \"remote-site\": [\n        \"NN\"\n    ], \n    \"credentials\": [\n        \"NNS\"\n    ], \n    \"Dolley\": [\n        \"NNP\"\n    ], \n    \"Operations\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\", \n        \"FW\"\n    ], \n    \"Raised\": [\n        \"VBN\"\n    ], \n    \"hydrated\": [\n        \"JJ\"\n    ], \n    \"newly-married\": [\n        \"JJ\"\n    ], \n    \"epicycles\": [\n        \"NNS\"\n    ], \n    \"Warrants\": [\n        \"NNS\"\n    ], \n    \"twittered\": [\n        \"VBD\"\n    ], \n    \"Biden\": [\n        \"NNP\"\n    ], \n    \"reimbursing\": [\n        \"VBG\"\n    ], \n    \"gratifyingly\": [\n        \"RB\"\n    ], \n    \"Heinrich\": [\n        \"NNP\"\n    ], \n    \"bewitched\": [\n        \"VBN\"\n    ], \n    \"worries\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"market-based\": [\n        \"JJ\"\n    ], \n    \"turtle-neck\": [\n        \"JJ\"\n    ], \n    \"Pressured\": [\n        \"VBN\"\n    ], \n    \"Entertainment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nurture...\": [\n        \":\"\n    ], \n    \"farm-engineering\": [\n        \"NN\"\n    ], \n    \"imaged\": [\n        \"VBN\"\n    ], \n    \"Pressures\": [\n        \"NNS\"\n    ], \n    \"AB\": [\n        \"NNP\"\n    ], \n    \"educator\": [\n        \"NN\"\n    ], \n    \"Kimberly-Clark\": [\n        \"NNP\"\n    ], \n    \"images\": [\n        \"NNS\"\n    ], \n    \"AIDS-infected\": [\n        \"JJ\"\n    ], \n    \"Assurance\": [\n        \"NNP\"\n    ], \n    \"AD\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"HOUSTON\": [\n        \"NNP\"\n    ], \n    \"Meg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"outs\": [\n        \"NNS\"\n    ], \n    \"food-importing\": [\n        \"JJ\"\n    ], \n    \"princely\": [\n        \"JJ\"\n    ], \n    \"Augustin\": [\n        \"NNP\"\n    ], \n    \"Kolberg\": [\n        \"NNP\"\n    ], \n    \"Mel\": [\n        \"NNP\"\n    ], \n    \"Men\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"mini-series\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"charlatans\": [\n        \"NNS\"\n    ], \n    \"Met\": [\n        \"NNP\", \n        \"FW\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Reliability\": [\n        \"NN\"\n    ], \n    \"Sponsored\": [\n        \"VBN\"\n    ], \n    \"schoolteachers\": [\n        \"NNS\"\n    ], \n    \"rough-cut\": [\n        \"JJ\"\n    ], \n    \"millidegrees\": [\n        \"NNS\"\n    ], \n    \"Chisholm\": [\n        \"NNP\"\n    ], \n    \"knife\": [\n        \"NN\"\n    ], \n    \"Gorski\": [\n        \"NNP\"\n    ], \n    \"worst-hit\": [\n        \"JJ\"\n    ], \n    \"good-by\": [\n        \"UH\", \n        \"RB\"\n    ], \n    \"Bendectin\": [\n        \"NNP\"\n    ], \n    \"dispensary\": [\n        \"NN\"\n    ], \n    \"Seabrook\": [\n        \"NNP\"\n    ], \n    \"Settle\": [\n        \"VB\"\n    ], \n    \"budget-priced\": [\n        \"JJ\"\n    ], \n    \"raptor\": [\n        \"NN\"\n    ], \n    \"ALQ-135\": [\n        \"NN\"\n    ], \n    \"Leigh\": [\n        \"NNP\"\n    ], \n    \"AP\": [\n        \"NNP\"\n    ], \n    \"Scared\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"AS\": [\n        \"NNP\", \n        \"IN\"\n    ], \n    \"Czeslaw\": [\n        \"NNP\"\n    ], \n    \"Sparcstation\": [\n        \"NNP\"\n    ], \n    \"ORTEGA\": [\n        \"NNP\"\n    ], \n    \"MacInnis\": [\n        \"NNP\"\n    ], \n    \"pockets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"fallacy\": [\n        \"NN\"\n    ], \n    \"consolidate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fanning\": [\n        \"NNP\"\n    ], \n    \"brainwashing\": [\n        \"NN\"\n    ], \n    \"unused\": [\n        \"JJ\"\n    ], \n    \"coupon\": [\n        \"NN\"\n    ], \n    \"skilled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"actuate\": [\n        \"VB\"\n    ], \n    \"harness\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Output\": [\n        \"NN\"\n    ], \n    \"skillet\": [\n        \"NN\"\n    ], \n    \"Banstar\": [\n        \"NNP\"\n    ], \n    \"acquiesced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rhine-Westphalia\": [\n        \"NNP\"\n    ], \n    \"telescoping\": [\n        \"NN\"\n    ], \n    \"paraphernalia\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"restrained\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"disfavored\": [\n        \"JJ\"\n    ], \n    \"railcars\": [\n        \"NNS\"\n    ], \n    \"Lynch\": [\n        \"NNP\"\n    ], \n    \"oxidised\": [\n        \"VBN\"\n    ], \n    \"fanatic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Guilin\": [\n        \"NNP\"\n    ], \n    \"motherly\": [\n        \"JJ\"\n    ], \n    \"Autocracies\": [\n        \"NNPS\"\n    ], \n    \"Stopped\": [\n        \"VBN\"\n    ], \n    \"hurricanes\": [\n        \"NNS\"\n    ], \n    \"Mac-Reynolds\": [\n        \"NNP\"\n    ], \n    \"arranged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Significantly\": [\n        \"RB\"\n    ], \n    \"lesson...\": [\n        \":\"\n    ], \n    \"practically\": [\n        \"RB\"\n    ], \n    \"Soviet-Israeli\": [\n        \"JJ\"\n    ], \n    \"relabeling\": [\n        \"VBG\"\n    ], \n    \"Gesangverein\": [\n        \"NNP\"\n    ], \n    \"arranges\": [\n        \"VBZ\"\n    ], \n    \"peeking\": [\n        \"VBG\"\n    ], \n    \"eschew\": [\n        \"VB\"\n    ], \n    \"Satoshi\": [\n        \"NNP\"\n    ], \n    \"Wickes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"imagination\": [\n        \"NN\"\n    ], \n    \"single-adjudicator\": [\n        \"JJ\"\n    ], \n    \"Broeg\": [\n        \"NNP\"\n    ], \n    \"Frail\": [\n        \"JJ\"\n    ], \n    \"Secutities\": [\n        \"NNPS\"\n    ], \n    \"Wicked\": [\n        \"NNP\"\n    ], \n    \"again\": [\n        \"RB\"\n    ], \n    \"Accardo\": [\n        \"NNP\"\n    ], \n    \"goddam\": [\n        \"JJ\"\n    ], \n    \"J.R.\": [\n        \"NNP\"\n    ], \n    \"mother-only\": [\n        \"JJ\"\n    ], \n    \"cross-promotion\": [\n        \"NN\"\n    ], \n    \"earth-shattering\": [\n        \"JJ\"\n    ], \n    \"revisions\": [\n        \"NNS\"\n    ], \n    \"crew-pairing\": [\n        \"JJ\"\n    ], \n    \"At\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"unthinkingly\": [\n        \"RB\"\n    ], \n    \"withdraw\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"demobilize\": [\n        \"VB\"\n    ], \n    \"academies\": [\n        \"NNS\"\n    ], \n    \"Dorothy\": [\n        \"NNP\"\n    ], \n    \"Bull\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"marshes\": [\n        \"NNS\"\n    ], \n    \"Mojave\": [\n        \"NNP\"\n    ], \n    \"Schafer\": [\n        \"NNP\"\n    ], \n    \"grudge\": [\n        \"NN\"\n    ], \n    \"P-7A\": [\n        \"NNP\"\n    ], \n    \"culture-Protestantism\": [\n        \"NN\"\n    ], \n    \"collegiate\": [\n        \"JJ\"\n    ], \n    \"Song-sam\": [\n        \"NNP\"\n    ], \n    \"Kahler-Craft\": [\n        \"NNP\"\n    ], \n    \"Warsaw\": [\n        \"NNP\"\n    ], \n    \"colleges\": [\n        \"NNS\"\n    ], \n    \"lapped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"founder\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Workers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"allergy\": [\n        \"NN\"\n    ], \n    \"founded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"commute\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"THANKS\": [\n        \"NNS\"\n    ], \n    \"expressions\": [\n        \"NNS\"\n    ], \n    \"briefcases\": [\n        \"NNS\"\n    ], \n    \"shattered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"preserves\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Byzantine\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Kazushige\": [\n        \"NNP\"\n    ], \n    \"Davenport\": [\n        \"NNP\"\n    ], \n    \"Bayonne\": [\n        \"NNP\"\n    ], \n    \"TAX\": [\n        \"NN\"\n    ], \n    \"Fleischmann\": [\n        \"NNP\"\n    ], \n    \"Devout\": [\n        \"JJ\"\n    ], \n    \"crimson\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Arenula\": [\n        \"NNP\"\n    ], \n    \"tycoon\": [\n        \"NN\"\n    ], \n    \"examiantion\": [\n        \"NN\"\n    ], \n    \"Training\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unabashed\": [\n        \"JJ\"\n    ], \n    \"sitting\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"NN\"\n    ], \n    \"authentications\": [\n        \"NNS\"\n    ], \n    \"Trikojus\": [\n        \"NNP\"\n    ], \n    \"Poussins\": [\n        \"NNS\"\n    ], \n    \"wiretap\": [\n        \"NN\"\n    ], \n    \"purrs\": [\n        \"VBZ\"\n    ], \n    \"Sebastian\": [\n        \"NNP\"\n    ], \n    \"Punishment\": [\n        \"NN\"\n    ], \n    \"elated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"washing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"whiskey-baritoned\": [\n        \"JJ\"\n    ], \n    \"drugged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Beaumont\": [\n        \"NNP\"\n    ], \n    \"blares\": [\n        \"VBZ\"\n    ], \n    \"Primaxin\": [\n        \"NNP\"\n    ], \n    \"big-money\": [\n        \"JJ\"\n    ], \n    \"bypassed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Uneasiness\": [\n        \"NN\"\n    ], \n    \"blared\": [\n        \"VBD\"\n    ], \n    \"tribal\": [\n        \"JJ\"\n    ], \n    \"Abiomed\": [\n        \"NNP\"\n    ], \n    \"McGlade\": [\n        \"NNP\"\n    ], \n    \"anti-abortionists\": [\n        \"NNS\"\n    ], \n    \"Mineralogies\": [\n        \"NNPS\"\n    ], \n    \"Westcom\": [\n        \"NNP\"\n    ], \n    \"perspective\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tandem-trainer\": [\n        \"NN\"\n    ], \n    \"MIPS\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"affable\": [\n        \"JJ\"\n    ], \n    \"Andris\": [\n        \"NNP\"\n    ], \n    \"creatures\": [\n        \"NNS\"\n    ], \n    \"residue\": [\n        \"NN\"\n    ], \n    \"swampy\": [\n        \"JJ\"\n    ], \n    \"sweetly\": [\n        \"RB\"\n    ], \n    \"brackets\": [\n        \"NNS\"\n    ], \n    \"swamps\": [\n        \"NNS\"\n    ], \n    \"industry-wide\": [\n        \"JJ\"\n    ], \n    \"typifying\": [\n        \"VBG\"\n    ], \n    \"caffeine\": [\n        \"NN\"\n    ], \n    \"Demisch\": [\n        \"NNP\"\n    ], \n    \"leafhopper\": [\n        \"JJR\"\n    ], \n    \"PR-wise\": [\n        \"JJ\"\n    ], \n    \"Isaly\": [\n        \"NNP\"\n    ], \n    \"MIPs\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"railway-based\": [\n        \"JJ\"\n    ], \n    \"Manalapan\": [\n        \"NNP\"\n    ], \n    \"Ahead\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Classified\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"anti-union\": [\n        \"JJ\"\n    ], \n    \"threads\": [\n        \"NNS\"\n    ], \n    \"lunch-hour\": [\n        \"NN\"\n    ], \n    \"furlongs\": [\n        \"NNS\"\n    ], \n    \"Apologia\": [\n        \"NN\"\n    ], \n    \"Apologie\": [\n        \"NNP\"\n    ], \n    \"frangipani\": [\n        \"NNS\"\n    ], \n    \"Returning\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"sofar\": [\n        \"RB\"\n    ], \n    \"sofas\": [\n        \"NNS\"\n    ], \n    \"shell-psychology\": [\n        \"NN\"\n    ], \n    \"uncharted\": [\n        \"JJ\"\n    ], \n    \"misery\": [\n        \"NN\"\n    ], \n    \"Ardent\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bizarre\": [\n        \"JJ\"\n    ], \n    \"Dehmelt\": [\n        \"NNP\"\n    ], \n    \"African-Americans\": [\n        \"NNPS\"\n    ], \n    \"mosque\": [\n        \"NN\"\n    ], \n    \"shareholder\\\\\": [\n        \"JJ\"\n    ], \n    \"America.\": [\n        \"NNP\"\n    ], \n    \"Charging\": [\n        \"VBG\"\n    ], \n    \"FHA-backed\": [\n        \"JJ\"\n    ], \n    \"Walla\": [\n        \"NNP\"\n    ], \n    \"shareholders\": [\n        \"NNS\"\n    ], \n    \"Walle\": [\n        \"NNP\"\n    ], \n    \"long-held\": [\n        \"JJ\"\n    ], \n    \"Kristiansen\": [\n        \"NNP\"\n    ], \n    \"Metschan\": [\n        \"NNP\"\n    ], \n    \"plastered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"governance\": [\n        \"NN\"\n    ], \n    \"Sonet-compatible\": [\n        \"JJ\"\n    ], \n    \"squires\": [\n        \"NNS\"\n    ], \n    \"subsumed\": [\n        \"VBN\"\n    ], \n    \"Wally\": [\n        \"NNP\"\n    ], \n    \"restraints\": [\n        \"NNS\"\n    ], \n    \"plasterer\": [\n        \"NN\"\n    ], \n    \"money-management\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Transtar\": [\n        \"NNP\"\n    ], \n    \"Alysia\": [\n        \"NNP\"\n    ], \n    \"landes\": [\n        \"NNS\"\n    ], \n    \"Sotheby\": [\n        \"NNP\"\n    ], \n    \"handsomely\": [\n        \"RB\"\n    ], \n    \"FOMC\": [\n        \"NNP\"\n    ], \n    \"collision-damage\": [\n        \"NN\"\n    ], \n    \"constructs\": [\n        \"VBZ\"\n    ], \n    \"Americas\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"necromantic\": [\n        \"JJ\"\n    ], \n    \"American\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Roger\": [\n        \"NNP\"\n    ], \n    \"McKeon\": [\n        \"NNP\"\n    ], \n    \"Chiang\": [\n        \"NNP\"\n    ], \n    \"Woburn\": [\n        \"NNP\"\n    ], \n    \"health-food\": [\n        \"NN\"\n    ], \n    \"Innocenti\": [\n        \"NNP\"\n    ], \n    \"barroom\": [\n        \"NN\"\n    ], \n    \"commercial-bank\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"specializes\": [\n        \"VBZ\"\n    ], \n    \"Hamlet\": [\n        \"NNP\"\n    ], \n    \"guards\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"patrols\": [\n        \"NNS\"\n    ], \n    \"Harnack\": [\n        \"NNP\"\n    ], \n    \"Razors\": [\n        \"NNS\"\n    ], \n    \"specialized\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hovels\": [\n        \"NNS\"\n    ], \n    \"half-straightened\": [\n        \"VBD\"\n    ], \n    \"deficit-cutting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Retirement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"junked\": [\n        \"VBN\"\n    ], \n    \"salesmen\": [\n        \"NNS\"\n    ], \n    \"onslaught\": [\n        \"NN\"\n    ], \n    \"Welty\": [\n        \"NNP\"\n    ], \n    \"Mfume\": [\n        \"NNP\"\n    ], \n    \"current-account\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ensnarled\": [\n        \"VBN\"\n    ], \n    \"numbers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"junket\": [\n        \"NN\"\n    ], \n    \"P.M.\": [\n        \"RB\", \n        \"NNP\", \n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cause\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"base-runner\": [\n        \"NN\"\n    ], \n    \"Seso\": [\n        \"NNP\"\n    ], \n    \"narrowly\": [\n        \"RB\"\n    ], \n    \"Autorapido\": [\n        \"NNP\"\n    ], \n    \"TIRED\": [\n        \"JJ\"\n    ], \n    \"rapport\": [\n        \"NN\"\n    ], \n    \"TIRES\": [\n        \"NNS\"\n    ], \n    \"Sparc\": [\n        \"NNP\"\n    ], \n    \"Declarative\": [\n        \"JJ\"\n    ], \n    \"Spare\": [\n        \"JJ\"\n    ], \n    \"BLOOD\": [\n        \"NN\"\n    ], \n    \"worst-performing\": [\n        \"JJ\"\n    ], \n    \"Spark\": [\n        \"NNP\"\n    ], \n    \"hamburgers\": [\n        \"NNS\"\n    ], \n    \"slackening\": [\n        \"VBG\"\n    ], \n    \"Producer-Price\": [\n        \"NNP\"\n    ], \n    \"redwood\": [\n        \"NN\"\n    ], \n    \"Schneider\": [\n        \"NNP\"\n    ], \n    \"Artemis\": [\n        \"NNP\"\n    ], \n    \"questioning\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"malediction\": [\n        \"NN\"\n    ], \n    \"tangere\": [\n        \"JJ\"\n    ], \n    \"fast-growing\": [\n        \"JJ\"\n    ], \n    \"Continue\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spectacularly\": [\n        \"RB\"\n    ], \n    \"coming\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Furious\": [\n        \"NNP\"\n    ], \n    \"Residents\": [\n        \"NNS\"\n    ], \n    \"Chair\": [\n        \"NNP\"\n    ], \n    \"Porretti\": [\n        \"NNP\"\n    ], \n    \"Counting\": [\n        \"VBG\"\n    ], \n    \"Japanese-made\": [\n        \"JJ\"\n    ], \n    \"Aristotelian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"toiletries\": [\n        \"NNS\"\n    ], \n    \"upholstered\": [\n        \"VBN\"\n    ], \n    \"retail-sales\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Perito\": [\n        \"NNP\"\n    ], \n    \"Dough\": [\n        \"NN\"\n    ], \n    \"skilful\": [\n        \"JJ\"\n    ], \n    \"cancer-ridden\": [\n        \"JJ\"\n    ], \n    \"Mazzera\": [\n        \"NNP\"\n    ], \n    \"Cocaine\": [\n        \"NN\"\n    ], \n    \"Afrikaner\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Forced\": [\n        \"VBN\"\n    ], \n    \"Nashville\": [\n        \"NNP\"\n    ], \n    \"Imported\": [\n        \"NNP\"\n    ], \n    \"ANCHORAGE\": [\n        \"NNP\"\n    ], \n    \"through\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Forces\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"FW\", \n        \"VBZ\"\n    ], \n    \"engineering-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wolcyrz\": [\n        \"NNP\"\n    ], \n    \"Pagans\": [\n        \"NNS\"\n    ], \n    \"golfing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Tomas\": [\n        \"NNP\"\n    ], \n    \"pests\": [\n        \"NNS\"\n    ], \n    \"bosom\": [\n        \"NN\"\n    ], \n    \"Notte\": [\n        \"NNP\"\n    ], \n    \"Elijah\": [\n        \"NNP\"\n    ], \n    \"forints\": [\n        \"NNS\"\n    ], \n    \"misunderstandings\": [\n        \"NNS\"\n    ], \n    \"Bidding\": [\n        \"NN\"\n    ], \n    \"researches\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"recollected\": [\n        \"VBD\"\n    ], \n    \"Toman\": [\n        \"NNP\"\n    ], \n    \"Tatzel\": [\n        \"NNP\"\n    ], \n    \"Jerrold\": [\n        \"NNP\"\n    ], \n    \"Schwengel\": [\n        \"NNP\"\n    ], \n    \"postwar\": [\n        \"JJ\"\n    ], \n    \"embezzler\": [\n        \"NN\"\n    ], \n    \"socially\": [\n        \"RB\"\n    ], \n    \"prejudices\": [\n        \"NNS\"\n    ], \n    \"Capitalism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"frigid\": [\n        \"JJ\"\n    ], \n    \"Capitalist\": [\n        \"NNP\"\n    ], \n    \"motioned\": [\n        \"VBD\"\n    ], \n    \"prejudiced\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"vacationed\": [\n        \"VBD\"\n    ], \n    \"Canastels\": [\n        \"NNP\"\n    ], \n    \"Taipei\": [\n        \"NNP\"\n    ], \n    \"church-goers\": [\n        \"NNS\"\n    ], \n    \"Interspec\": [\n        \"NNP\"\n    ], \n    \"fantasy\": [\n        \"NN\"\n    ], \n    \"hails\": [\n        \"VBZ\"\n    ], \n    \"Laptop\": [\n        \"NN\"\n    ], \n    \"supersensitive\": [\n        \"JJ\"\n    ], \n    \"Commoner\": [\n        \"NNP\"\n    ], \n    \"home-nursing\": [\n        \"JJ\"\n    ], \n    \"saloons\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"wrappers\": [\n        \"NNS\"\n    ], \n    \"Fiddles\": [\n        \"NNS\"\n    ], \n    \"Fiddler\": [\n        \"NNP\"\n    ], \n    \"Reverently\": [\n        \"RB\"\n    ], \n    \"winnow\": [\n        \"VB\"\n    ], \n    \"mm.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"marshaling\": [\n        \"VBG\"\n    ], \n    \"cynicism\": [\n        \"NN\"\n    ], \n    \"uninvited\": [\n        \"JJ\"\n    ], \n    \"Contel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"DC10-30\": [\n        \"NN\"\n    ], \n    \"Atkissons\": [\n        \"NNPS\"\n    ], \n    \"Collyer\": [\n        \"NNP\"\n    ], \n    \"pubescent\": [\n        \"JJ\"\n    ], \n    \"DiCara\": [\n        \"NNP\"\n    ], \n    \"Avant-garde\": [\n        \"NN\"\n    ], \n    \"burned-out\": [\n        \"JJ\"\n    ], \n    \"Sweeping\": [\n        \"VBG\"\n    ], \n    \"glass-like\": [\n        \"JJ\"\n    ], \n    \"intra-party\": [\n        \"JJ\"\n    ], \n    \"Mario\": [\n        \"NNP\"\n    ], \n    \"airframe\": [\n        \"NN\"\n    ], \n    \"Ogilvyspeak\": [\n        \"NNP\"\n    ], \n    \"Weaning\": [\n        \"NNP\"\n    ], \n    \"enforcing\": [\n        \"VBG\"\n    ], \n    \"pre-recorded\": [\n        \"JJ\"\n    ], \n    \"cockroach\": [\n        \"NN\"\n    ], \n    \"bombshell\": [\n        \"NN\"\n    ], \n    \"centerfold\": [\n        \"NN\"\n    ], \n    \"gobblers\": [\n        \"NNS\"\n    ], \n    \"impeached\": [\n        \"VBN\"\n    ], \n    \"reparations\": [\n        \"NNS\"\n    ], \n    \"beginning\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Deerfield\": [\n        \"NNP\"\n    ], \n    \"Badin\": [\n        \"NNP\"\n    ], \n    \"Jawaharlal\": [\n        \"NNP\"\n    ], \n    \"Lobbying\": [\n        \"NN\"\n    ], \n    \"Soil\": [\n        \"NN\"\n    ], \n    \"needing\": [\n        \"VBG\"\n    ], \n    \"hatchet-faced\": [\n        \"JJ\"\n    ], \n    \"Biggs\": [\n        \"NNP\"\n    ], \n    \"withes\": [\n        \"NNS\"\n    ], \n    \"NASA\": [\n        \"NNP\"\n    ], \n    \"NASD\": [\n        \"NNP\"\n    ], \n    \"Soir\": [\n        \"NNP\"\n    ], \n    \"Prodigy\": [\n        \"NNP\"\n    ], \n    \"mazurka\": [\n        \"NN\"\n    ], \n    \"raptors\": [\n        \"NNS\"\n    ], \n    \"wallboard\": [\n        \"NN\"\n    ], \n    \"embraces\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"stabs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"jabbed\": [\n        \"VBD\"\n    ], \n    \"embraced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"fiction\": [\n        \"NN\"\n    ], \n    \"three-and-a-half\": [\n        \"JJ\"\n    ], \n    \"unacquainted\": [\n        \"VBN\"\n    ], \n    \"X.\": [\n        \"NNP\"\n    ], \n    \"straight-out\": [\n        \"JJ\"\n    ], \n    \"bloodied\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Laventhol\": [\n        \"NNP\"\n    ], \n    \"anti-clotting\": [\n        \"JJ\"\n    ], \n    \"hollows\": [\n        \"NNS\"\n    ], \n    \"Littleboy\": [\n        \"NNP\"\n    ], \n    \"Germont\": [\n        \"NNP\"\n    ], \n    \"Scholastica\": [\n        \"NNP\"\n    ], \n    \"XL\": [\n        \"NNP\"\n    ], \n    \"Frenzel\": [\n        \"NNP\"\n    ], \n    \"Tsai\": [\n        \"NNP\"\n    ], \n    \"sales-loss\": [\n        \"JJ\"\n    ], \n    \"one-acters\": [\n        \"NNS\"\n    ], \n    \"powertrain\": [\n        \"NN\"\n    ], \n    \"Tsao\": [\n        \"NNP\"\n    ], \n    \"expressivness\": [\n        \"NN\"\n    ], \n    \"Tsar\": [\n        \"NNP\"\n    ], \n    \"tomato-red\": [\n        \"NN\"\n    ], \n    \"portfolio-maker\": [\n        \"NN\"\n    ], \n    \"obstructed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"trolls\": [\n        \"NNS\"\n    ], \n    \"dippy\": [\n        \"JJ\"\n    ], \n    \"CLAUSTROPHOBIC\": [\n        \"JJ\"\n    ], \n    \"Sooraji\": [\n        \"NNP\"\n    ], \n    \"conventionality\": [\n        \"NN\"\n    ], \n    \"Left-Wing\": [\n        \"NNP\"\n    ], \n    \"GEnie\": [\n        \"NNP\"\n    ], \n    \"Favor\": [\n        \"VB\"\n    ], \n    \"Physiology\": [\n        \"NNP\"\n    ], \n    \"EXAMINE\": [\n        \"VB\"\n    ], \n    \"substracting\": [\n        \"VBG\"\n    ], \n    \"orginally\": [\n        \"RB\"\n    ], \n    \"PLEASURE\": [\n        \"NN\"\n    ], \n    \"patient-interview\": [\n        \"JJ\"\n    ], \n    \"Xu\": [\n        \"NNP\"\n    ], \n    \"trudged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bassinet\": [\n        \"NN\"\n    ], \n    \"lilting\": [\n        \"JJ\", \n        \"JJ|VBG\", \n        \"VBG\"\n    ], \n    \"reroofing\": [\n        \"NN\"\n    ], \n    \"reparation\": [\n        \"NN\"\n    ], \n    \"Lagonda\": [\n        \"NNP\"\n    ], \n    \"Esprit\": [\n        \"NNP\"\n    ], \n    \"Son-of-DAT\": [\n        \"NNP\"\n    ], \n    \"Busey\": [\n        \"NNP\"\n    ], \n    \"hangout\": [\n        \"NN\"\n    ], \n    \"showers\": [\n        \"NNS\"\n    ], \n    \"POST-TRIAL\": [\n        \"NNP\"\n    ], \n    \"Troopers\": [\n        \"NNS\"\n    ], \n    \"cowman\": [\n        \"NN\"\n    ], \n    \"Doubleday\": [\n        \"NNP\"\n    ], \n    \"social-action\": [\n        \"NN\"\n    ], \n    \"Power\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"couch\": [\n        \"NN\"\n    ], \n    \"recondite\": [\n        \"JJ\"\n    ], \n    \"cholorfluorocarbons\": [\n        \"NNS\"\n    ], \n    \"Futter\": [\n        \"NNP\"\n    ], \n    \"Congel\": [\n        \"NNP\"\n    ], \n    \"Equitable\": [\n        \"NNP\"\n    ], \n    \"Teacher\": [\n        \"NN\"\n    ], \n    \"wows\": [\n        \"VBZ\"\n    ], \n    \"millenniums\": [\n        \"NNS\"\n    ], \n    \"programmers\": [\n        \"NNS\"\n    ], \n    \"underpinnings\": [\n        \"NNS\"\n    ], \n    \"unceremoniously\": [\n        \"RB\"\n    ], \n    \"loosens\": [\n        \"VBZ\"\n    ], \n    \"esse\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"officiated\": [\n        \"VBD\"\n    ], \n    \"off-key\": [\n        \"JJ\"\n    ], \n    \"Elecktra\": [\n        \"NNP\"\n    ], \n    \"inarticulate\": [\n        \"JJ\"\n    ], \n    \"MD-81\": [\n        \"NN\"\n    ], \n    \"MD-80\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"drifts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"soft-cookie\": [\n        \"NN\"\n    ], \n    \"suppleness\": [\n        \"NN\"\n    ], \n    \"reflections\": [\n        \"NNS\"\n    ], \n    \"sea-beach\": [\n        \"NN\"\n    ], \n    \"Pisces\": [\n        \"NNP\"\n    ], \n    \"Shrinking\": [\n        \"VBG\"\n    ], \n    \"clinician\": [\n        \"NN\"\n    ], \n    \"Popolare\": [\n        \"NNP\"\n    ], \n    \"Seiren\": [\n        \"NNP\"\n    ], \n    \"commissions\": [\n        \"NNS\", \n        \"VBZ\", \n        \"NN\"\n    ], \n    \"Langevin\": [\n        \"NNP\"\n    ], \n    \"noblest\": [\n        \"JJS\"\n    ], \n    \"converge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Krenz\": [\n        \"NNP\"\n    ], \n    \"unmeritorious\": [\n        \"JJ\"\n    ], \n    \"tough-talking\": [\n        \"NN\"\n    ], \n    \"Bonilla\": [\n        \"NNP\"\n    ], \n    \"immaturity\": [\n        \"NN\"\n    ], \n    \"Hanoverian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kathy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"chimes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Messiaen\": [\n        \"NNP\"\n    ], \n    \"merger\": [\n        \"NN\"\n    ], \n    \"merges\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Lessing\": [\n        \"NNP\"\n    ], \n    \"lawn-feeding\": [\n        \"JJ\"\n    ], \n    \"self-deprecating\": [\n        \"JJ\"\n    ], \n    \"idiots\": [\n        \"NNS\"\n    ], \n    \"chimed\": [\n        \"VBD\"\n    ], \n    \"night-coach\": [\n        \"JJ\"\n    ], \n    \"lathes\": [\n        \"NNS\"\n    ], \n    \"Kathe\": [\n        \"NNP\"\n    ], \n    \"Solidarity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"venture-capital\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fiat\": [\n        \"NNP\"\n    ], \n    \"intractable\": [\n        \"JJ\"\n    ], \n    \"Unify\": [\n        \"VB\"\n    ], \n    \"internists\": [\n        \"NNS\"\n    ], \n    \"express\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"analytical-instruments\": [\n        \"JJ\"\n    ], \n    \"zapped\": [\n        \"VBD\"\n    ], \n    \"breast\": [\n        \"NN\"\n    ], \n    \"autobiographic\": [\n        \"JJ\"\n    ], \n    \"Assiniboia\": [\n        \"NNP\"\n    ], \n    \"oil-recycling\": [\n        \"NN\"\n    ], \n    \"Pitcoff\": [\n        \"NNP\"\n    ], \n    \"STARTING\": [\n        \"NNP\"\n    ], \n    \"Tootsie\": [\n        \"NNP\"\n    ], \n    \"doubled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Unilab\": [\n        \"NNP\"\n    ], \n    \"logistic\": [\n        \"JJ\"\n    ], \n    \"doubles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"July-September\": [\n        \"JJ\"\n    ], \n    \"Larkins\": [\n        \"NNP\"\n    ], \n    \"Portland\": [\n        \"NNP\"\n    ], \n    \"natural-resources\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"threehour\": [\n        \"JJ\"\n    ], \n    \"Dismissing\": [\n        \"VBG\"\n    ], \n    \"business-judgment\": [\n        \"NN\"\n    ], \n    \"Spreads\": [\n        \"NNS\"\n    ], \n    \"deactivation\": [\n        \"NN\"\n    ], \n    \"biannual\": [\n        \"JJ\"\n    ], \n    \"nerly\": [\n        \"RB\"\n    ], \n    \"Citing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"SKF\": [\n        \"NNP\"\n    ], \n    \"manly\": [\n        \"JJ\"\n    ], \n    \"Volkenstein\": [\n        \"NNP\"\n    ], \n    \"Phoenixville\": [\n        \"NNP\"\n    ], \n    \"DeCicco\": [\n        \"NNP\"\n    ], \n    \"government-agency\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"playwright-director\": [\n        \"NN\"\n    ], \n    \"expert\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"embalmers\": [\n        \"NNS\"\n    ], \n    \"shatterproof\": [\n        \"JJ\"\n    ], \n    \"Punch\": [\n        \"VB\"\n    ], \n    \"vascular\": [\n        \"JJ\"\n    ], \n    \"Bushby\": [\n        \"NNP\"\n    ], \n    \"Cleopatra\": [\n        \"NNP\"\n    ], \n    \"encephalitis\": [\n        \"NN\"\n    ], \n    \"Cipher\": [\n        \"NNP\"\n    ], \n    \"beetling\": [\n        \"JJ\"\n    ], \n    \"intimidated\": [\n        \"VBN\"\n    ], \n    \"seventeenth-century\": [\n        \"JJ\"\n    ], \n    \"figurehead\": [\n        \"NN\"\n    ], \n    \"Off-price\": [\n        \"JJ\"\n    ], \n    \"conservationist\": [\n        \"NN\"\n    ], \n    \"INPS\": [\n        \"NNP\"\n    ], \n    \"Ionic\": [\n        \"JJ\"\n    ], \n    \"acidulous\": [\n        \"JJ\"\n    ], \n    \"substitute\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"symbolical\": [\n        \"JJ\"\n    ], \n    \"restaurant\": [\n        \"NN\"\n    ], \n    \"Dancers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"tempos\": [\n        \"NNS\"\n    ], \n    \"emergency-room\": [\n        \"NN\"\n    ], \n    \"Windham\": [\n        \"NNP\"\n    ], \n    \"sharp-focus\": [\n        \"JJ\"\n    ], \n    \"zilch\": [\n        \"NN|JJ\"\n    ], \n    \"re-run\": [\n        \"VBN\"\n    ], \n    \"esprit\": [\n        \"FW\"\n    ], \n    \"elaborating\": [\n        \"VBG\"\n    ], \n    \"Derck\": [\n        \"NNP\"\n    ], \n    \"tubules\": [\n        \"NNS\"\n    ], \n    \"profligate\": [\n        \"JJ\"\n    ], \n    \"ravages\": [\n        \"NNS\"\n    ], \n    \"gypsy\": [\n        \"NN\"\n    ], \n    \"DFS\\\\/Pacific\": [\n        \"NNP\"\n    ], \n    \"asserted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ravaged\": [\n        \"VBN\"\n    ], \n    \"civilize\": [\n        \"VB\"\n    ], \n    \"furthers\": [\n        \"VBZ\"\n    ], \n    \"weaving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Chinooks\": [\n        \"NNS\"\n    ], \n    \"Dineen\": [\n        \"NNP\"\n    ], \n    \"rivals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"omniscient\": [\n        \"JJ\"\n    ], \n    \"Floral\": [\n        \"NNP\"\n    ], \n    \"fly-by-nighters\": [\n        \"NNS\"\n    ], \n    \"chiseled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"tape-product\": [\n        \"NN\"\n    ], \n    \"TRUSTEE\": [\n        \"NN\"\n    ], \n    \"less-obvious\": [\n        \"JJ\"\n    ], \n    \"Daughter\": [\n        \"NN\"\n    ], \n    \"enchantingly\": [\n        \"RB\"\n    ], \n    \"dissension\": [\n        \"NN\"\n    ], \n    \"Syllabicity\": [\n        \"NN\"\n    ], \n    \"Rajiv\": [\n        \"NNP\"\n    ], \n    \"strictest\": [\n        \"JJS\"\n    ], \n    \"grains\": [\n        \"NNS\"\n    ], \n    \"grainy\": [\n        \"JJ\"\n    ], \n    \"elections\": [\n        \"NNS\"\n    ], \n    \"Schimmel\": [\n        \"NNP\"\n    ], \n    \"reopens\": [\n        \"VBZ\"\n    ], \n    \"denominations\": [\n        \"NNS\"\n    ], \n    \"coyly\": [\n        \"RB\"\n    ], \n    \"Robins\": [\n        \"NNP\"\n    ], \n    \"whimpers\": [\n        \"NNS\"\n    ], \n    \"ganging\": [\n        \"VBG\"\n    ], \n    \"unearned\": [\n        \"JJ\"\n    ], \n    \"computer-game\": [\n        \"NN\"\n    ], \n    \"DRDW\": [\n        \"NN\"\n    ], \n    \"Bluntly\": [\n        \"RB\"\n    ], \n    \"astound\": [\n        \"VB\"\n    ], \n    \"boat-rocker...\": [\n        \":\"\n    ], \n    \"Fuji-apple\": [\n        \"JJ\"\n    ], \n    \"Prison\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"aspects\": [\n        \"NNS\"\n    ], \n    \"Bonett\": [\n        \"NNP\"\n    ], \n    \"disillusioning\": [\n        \"JJ\"\n    ], \n    \"electromagnetic-test\": [\n        \"NN\"\n    ], \n    \"benevolence\": [\n        \"NN\"\n    ], \n    \"migraine\": [\n        \"NN\"\n    ], \n    \"perpetrator\": [\n        \"NN\"\n    ], \n    \"Glaris\": [\n        \"NNP\"\n    ], \n    \"Towle\": [\n        \"NNP\"\n    ], \n    \"antibody-based\": [\n        \"JJ\"\n    ], \n    \"corridor\": [\n        \"NN\"\n    ], \n    \"quick-frozen\": [\n        \"VBN\"\n    ], \n    \"fibrosis\": [\n        \"NN\"\n    ], \n    \"shortchanged\": [\n        \"VBN\"\n    ], \n    \"development\": [\n        \"NN\"\n    ], \n    \"Statute\": [\n        \"NN\"\n    ], \n    \"Statuto\": [\n        \"NN\"\n    ], \n    \"virility\": [\n        \"NN\"\n    ], \n    \"Intertrade\": [\n        \"NNP\"\n    ], \n    \"traditionally\": [\n        \"RB\"\n    ], \n    \"Banawan\": [\n        \"NNP\"\n    ], \n    \"Provisional\": [\n        \"NNP\"\n    ], \n    \"Zionists\": [\n        \"NNPS\"\n    ], \n    \"pre-refunded\": [\n        \"JJ\"\n    ], \n    \"task\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Al-Rowas\": [\n        \"NNP\"\n    ], \n    \"ExploiTech\": [\n        \"NNP\"\n    ], \n    \"purtiest\": [\n        \"JJS\"\n    ], \n    \"coachmen\": [\n        \"NNS\"\n    ], \n    \"snarl\": [\n        \"NN\"\n    ], \n    \"express...\": [\n        \":\"\n    ], \n    \"Quacks\": [\n        \"NNS\"\n    ], \n    \"Die-hard\": [\n        \"JJ\"\n    ], \n    \"year-on-year\": [\n        \"JJ\"\n    ], \n    \"Platonist\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"irritably\": [\n        \"RB\"\n    ], \n    \"maleness\": [\n        \"NN\"\n    ], \n    \"Platonism\": [\n        \"NN\"\n    ], \n    \"shape\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Frustration\": [\n        \"NN\"\n    ], \n    \"irritable\": [\n        \"JJ\"\n    ], \n    \"Yorkers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"alternative\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Kenyan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Forster\": [\n        \"NNP\"\n    ], \n    \"rundown\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cut\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Crovitz\": [\n        \"NNP\"\n    ], \n    \"cur\": [\n        \"NN\"\n    ], \n    \"cup\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"marrying\": [\n        \"VBG\"\n    ], \n    \"emigre\": [\n        \"NN\"\n    ], \n    \"Pae\": [\n        \"NNP\"\n    ], \n    \"source\": [\n        \"NN\"\n    ], \n    \"cue\": [\n        \"NN\"\n    ], \n    \"cud\": [\n        \"NN\"\n    ], \n    \"undistinguished\": [\n        \"JJ\"\n    ], \n    \"cub\": [\n        \"NN\"\n    ], \n    \"cul\": [\n        \"NN\"\n    ], \n    \"waxed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Air-traffic\": [\n        \"NN\"\n    ], \n    \"habeas\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"Opositora\": [\n        \"NNP\"\n    ], \n    \"Bette\": [\n        \"NNP\"\n    ], \n    \"Exploration\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"be....\": [\n        \":\"\n    ], \n    \"reliable\": [\n        \"JJ\"\n    ], \n    \"hallucinations\": [\n        \"NNS\"\n    ], \n    \"Christian\": [\n        \"NNP\", \n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Betts\": [\n        \"NNP\"\n    ], \n    \"maples\": [\n        \"NNS\"\n    ], \n    \"decisionmaking\": [\n        \"NN\"\n    ], \n    \"purveyor\": [\n        \"NN\"\n    ], \n    \"forcefulness\": [\n        \"NN\"\n    ], \n    \"recycled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"bockwurst\": [\n        \"NN\"\n    ], \n    \"cu.\": [\n        \"NN\"\n    ], \n    \"walrus\": [\n        \"NN\"\n    ], \n    \"irretrievably\": [\n        \"RB\"\n    ], \n    \"unhindered\": [\n        \"JJ\"\n    ], \n    \"one-inch\": [\n        \"JJ\"\n    ], \n    \"half-standard\": [\n        \"JJ\"\n    ], \n    \"absolutely\": [\n        \"RB\"\n    ], \n    \"commercial-free\": [\n        \"JJ\"\n    ], \n    \"redistributionism\": [\n        \"NN\"\n    ], \n    \"delegation\": [\n        \"NN\"\n    ], \n    \"split-finger\": [\n        \"NN\"\n    ], \n    \"redistributionist\": [\n        \"NN\"\n    ], \n    \"presences\": [\n        \"NNS\"\n    ], \n    \"Riverview\": [\n        \"NNP\"\n    ], \n    \"minefield\": [\n        \"NN\"\n    ], \n    \"over-allotments\": [\n        \"NNS\"\n    ], \n    \"culprit\": [\n        \"NN\"\n    ], \n    \"divestiture-related\": [\n        \"JJ\"\n    ], \n    \"Tieck\": [\n        \"NNP\"\n    ], \n    \"decision\": [\n        \"NN\"\n    ], \n    \"proficient\": [\n        \"JJ\"\n    ], \n    \"Modular\": [\n        \"NNP\"\n    ], \n    \"Illuminating\": [\n        \"NNP\"\n    ], \n    \"epic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Shultis\": [\n        \"NNP\"\n    ], \n    \"Box\": [\n        \"NNP\"\n    ], \n    \"Boy\": [\n        \"NN\", \n        \"NNP\", \n        \"UH\"\n    ], \n    \"Auto-Europe\": [\n        \"NNP\"\n    ], \n    \"Stempel\": [\n        \"NNP\"\n    ], \n    \"treasury-management\": [\n        \"NN\"\n    ], \n    \"Bow\": [\n        \"NNP\"\n    ], \n    \"Bol\": [\n        \"NNP\"\n    ], \n    \"Bon\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Medusa\": [\n        \"NN\"\n    ], \n    \"RELEASE\": [\n        \"NN\"\n    ], \n    \"Boa\": [\n        \"NN\"\n    ], \n    \"Bob\": [\n        \"NNP\"\n    ], \n    \"Frontieres\": [\n        \"FW\"\n    ], \n    \"Romania\": [\n        \"NNP\"\n    ], \n    \"Loyal\": [\n        \"JJ\"\n    ], \n    \"lower-than-planned\": [\n        \"JJ\"\n    ], \n    \"S.Grove\": [\n        \"NNP\"\n    ], \n    \"sweet-sour\": [\n        \"JJ\"\n    ], \n    \"submucosa\": [\n        \"NN\"\n    ], \n    \"Enhanced\": [\n        \"NNP\"\n    ], \n    \"delist\": [\n        \"VB\"\n    ], \n    \"Captain\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"XL\\\\/Datacomp\": [\n        \"NNP\"\n    ], \n    \"systematizing\": [\n        \"VBG\"\n    ], \n    \"fantods\": [\n        \"NNS\"\n    ], \n    \"depose\": [\n        \"VB\"\n    ], \n    \"Vt.-based\": [\n        \"JJ\"\n    ], \n    \"Strauss\": [\n        \"NNP\"\n    ], \n    \"Experiment\": [\n        \"NN\"\n    ], \n    \"Otterlo\": [\n        \"NNP\"\n    ], \n    \"Wash.-based\": [\n        \"JJ\"\n    ], \n    \"Accuracy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"birth-prevention\": [\n        \"NN\"\n    ], \n    \"single-foot\": [\n        \"JJ\"\n    ], \n    \"Oppressive\": [\n        \"JJ\"\n    ], \n    \"openers\": [\n        \"NNS\"\n    ], \n    \"Longest\": [\n        \"NNP\"\n    ], \n    \"Coverage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rexene\": [\n        \"NNP\"\n    ], \n    \"Mips\": [\n        \"NNP\"\n    ], \n    \"translate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"JROE\": [\n        \"NNP\"\n    ], \n    \"Professionals\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"motel-keepers\": [\n        \"NNS\"\n    ], \n    \"Hage\": [\n        \"NNP\"\n    ], \n    \"Splendide\": [\n        \"NNP\"\n    ], \n    \"Promises\": [\n        \"VBZ\"\n    ], \n    \"delighting\": [\n        \"VBG\"\n    ], \n    \"subsidiary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"behavior-modification\": [\n        \"NN\"\n    ], \n    \"planed\": [\n        \"VBN\"\n    ], \n    \"expressway\": [\n        \"NN\"\n    ], \n    \"homeownership\": [\n        \"NN\"\n    ], \n    \"casein\": [\n        \"NN\"\n    ], \n    \"W.C.\": [\n        \"NNP\"\n    ], \n    \"driveways\": [\n        \"NNS\"\n    ], \n    \"planet\": [\n        \"NN\"\n    ], \n    \"Salty\": [\n        \"NNP\"\n    ], \n    \"planer\": [\n        \"NN\"\n    ], \n    \"horse-trail\": [\n        \"NN\"\n    ], \n    \"Pasterns\": [\n        \"NNPS\"\n    ], \n    \"azalea\": [\n        \"NN\"\n    ], \n    \"Wildcat\": [\n        \"NNP\"\n    ], \n    \"cross-writing\": [\n        \"NN\"\n    ], \n    \"learning-curve\": [\n        \"JJ\"\n    ], \n    \"Babel\": [\n        \"NNP\"\n    ], \n    \"Secured\": [\n        \"JJ\"\n    ], \n    \"kola\": [\n        \"NN\"\n    ], \n    \"Nymark\": [\n        \"NNP\"\n    ], \n    \"deprive\": [\n        \"VB\"\n    ], \n    \"rarities\": [\n        \"NNS\"\n    ], \n    \"consulted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"revelatory\": [\n        \"JJ\"\n    ], \n    \"appetizing\": [\n        \"JJ\"\n    ], \n    \"organizational\": [\n        \"JJ\"\n    ], \n    \"CAMPEAU\": [\n        \"NNP\"\n    ], \n    \"cafe\": [\n        \"NN\"\n    ], \n    \"Presentation\": [\n        \"NN\"\n    ], \n    \"overfeed\": [\n        \"VB\"\n    ], \n    \"RC6280\": [\n        \"NN\"\n    ], \n    \"Red-Greens\": [\n        \"NNPS\"\n    ], \n    \"not-quite-perfect\": [\n        \"JJ\"\n    ], \n    \"Sailing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fidel\": [\n        \"NNP\"\n    ], \n    \"Chrissake\": [\n        \"UH\"\n    ], \n    \"adoring\": [\n        \"VBG\"\n    ], \n    \"composing\": [\n        \"VBG\"\n    ], \n    \"intensifying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Dallasites\": [\n        \"NNPS\"\n    ], \n    \"POINTS\": [\n        \"NNPS\"\n    ], \n    \"Israelis\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Student\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"emanated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"linkup\": [\n        \"NN\"\n    ], \n    \"Evangelista\": [\n        \"NNP\"\n    ], \n    \"Wade-Evans\": [\n        \"NNP\"\n    ], \n    \"Heel-Lotus\": [\n        \"NNP\"\n    ], \n    \"cellar\": [\n        \"NN\"\n    ], \n    \"intensifier\": [\n        \"NN\"\n    ], \n    \"dustjacket\": [\n        \"NN\"\n    ], \n    \"mismatch\": [\n        \"NN\"\n    ], \n    \"St-Laurent\": [\n        \"NNP\"\n    ], \n    \"admen\": [\n        \"NNS\"\n    ], \n    \"antiquities\": [\n        \"NNS\"\n    ], \n    \"reserve...\": [\n        \":\"\n    ], \n    \"intensified\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"restoration\": [\n        \"NN\"\n    ], \n    \"TELESIS\": [\n        \"NNP\"\n    ], \n    \"co-occurring\": [\n        \"JJ\"\n    ], \n    \"entertaining\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Garzarelli\": [\n        \"NNP\"\n    ], \n    \"scouting\": [\n        \"VBG\"\n    ], \n    \"deterrence\": [\n        \"NN\"\n    ], \n    \"Boulroud\": [\n        \"NNP\"\n    ], \n    \"overlooking\": [\n        \"VBG\"\n    ], \n    \"monic\": [\n        \"JJ\"\n    ], \n    \"wards\": [\n        \"NNS\"\n    ], \n    \"bankers\": [\n        \"NNS\"\n    ], \n    \"Pah\": [\n        \"NNP\"\n    ], \n    \"Sahara\": [\n        \"NNP\"\n    ], \n    \"presenting\": [\n        \"VBG\"\n    ], \n    \"ignoramus\": [\n        \"NN\"\n    ], \n    \"in-room\": [\n        \"JJ\"\n    ], \n    \"clear-cutting\": [\n        \"NN\"\n    ], \n    \"mix-up\": [\n        \"NN\"\n    ], \n    \"ready-made\": [\n        \"JJ\"\n    ], \n    \"caribou\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"magnetically\": [\n        \"RB\"\n    ], \n    \"time-zone\": [\n        \"JJ\"\n    ], \n    \"amplifier\": [\n        \"NN\"\n    ], \n    \"amplifies\": [\n        \"VBZ\"\n    ], \n    \"Baumgarten\": [\n        \"NNP\"\n    ], \n    \"Assuming\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"amplified\": [\n        \"VBN\"\n    ], \n    \"compose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"drive-in\": [\n        \"NN\"\n    ], \n    \"boom-or-bust\": [\n        \"JJ\"\n    ], \n    \"Jujo\": [\n        \"NNP\"\n    ], \n    \"suave\": [\n        \"JJ\"\n    ], \n    \"water-washed\": [\n        \"VBN\"\n    ], \n    \"compost\": [\n        \"NN\"\n    ], \n    \"tradesmen\": [\n        \"NNS\"\n    ], \n    \"be...\": [\n        \":\"\n    ], \n    \"bottomed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Democratic-style\": [\n        \"JJ\"\n    ], \n    \"unhurt\": [\n        \"JJ\"\n    ], \n    \"dessert\": [\n        \"NN\"\n    ], \n    \"Vollrath\": [\n        \"NNP\"\n    ], \n    \"Rearding\": [\n        \"VBG\"\n    ], \n    \"spider-leg\": [\n        \"JJ\"\n    ], \n    \"RIVER\": [\n        \"NNP\"\n    ], \n    \"refusers\": [\n        \"NNS\"\n    ], \n    \"companywide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"salad\": [\n        \"NN\"\n    ], \n    \"Alcoholic\": [\n        \"NNP\"\n    ], \n    \"Murai\": [\n        \"NNP\"\n    ], \n    \"Ty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eldon\": [\n        \"NNP\"\n    ], \n    \"Murat\": [\n        \"NNP\"\n    ], \n    \"Hersly\": [\n        \"NNP\"\n    ], \n    \"Caligula\": [\n        \"NNP\"\n    ], \n    \"McCloy\": [\n        \"NNP\"\n    ], \n    \"ceasefire\": [\n        \"NN\"\n    ], \n    \"charter-type\": [\n        \"JJ\"\n    ], \n    \"Roemer\": [\n        \"NNP\"\n    ], \n    \"vacillation\": [\n        \"NN\"\n    ], \n    \"mysticisms\": [\n        \"NNS\"\n    ], \n    \"rector\": [\n        \"NN\"\n    ], \n    \"Term\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Contra\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Annaud\": [\n        \"NNP\"\n    ], \n    \"Criteria\": [\n        \"NNP\"\n    ], \n    \"Tropic\": [\n        \"NNP\"\n    ], \n    \"Avocados\": [\n        \"NNS\"\n    ], \n    \"fros\": [\n        \"NNS\"\n    ], \n    \"analogue\": [\n        \"NN\"\n    ], \n    \"penalty-free\": [\n        \"JJ\"\n    ], \n    \"commercial-goods\": [\n        \"NNS\"\n    ], \n    \"Ogunjobi\": [\n        \"NNP\"\n    ], \n    \"dowdy\": [\n        \"JJ\"\n    ], \n    \"GIPPER\": [\n        \"NN\"\n    ], \n    \"Pornsen\": [\n        \"NNP\"\n    ], \n    \"assisted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"severalty\": [\n        \"NN\"\n    ], \n    \"pleading\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dahlia\": [\n        \"NNP\"\n    ], \n    \"phonemics\": [\n        \"NNS\"\n    ], \n    \"Schoder\": [\n        \"NNP\"\n    ], \n    \"non-linear\": [\n        \"JJ\"\n    ], \n    \"VacSYN\\\\\": [\n        \"NNP\"\n    ], \n    \"plunkers\": [\n        \"NNS\"\n    ], \n    \"beasts\": [\n        \"NNS\"\n    ], \n    \"Hasbro\": [\n        \"NNP\"\n    ], \n    \"licentiousness\": [\n        \"NN\"\n    ], \n    \"AGREES\": [\n        \"VBZ\"\n    ], \n    \"D.H.\": [\n        \"NNP\"\n    ], \n    \"talent\": [\n        \"NN\"\n    ], \n    \"warless\": [\n        \"JJ\"\n    ], \n    \"Burkina\": [\n        \"NNP\"\n    ], \n    \"MCorp\": [\n        \"NNP\"\n    ], \n    \"premiering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Menas\": [\n        \"NNP\"\n    ], \n    \"climb\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Proceeds\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Tareytown\": [\n        \"NNP\"\n    ], \n    \"composed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"decentralized\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Amtrak\": [\n        \"NNP\"\n    ], \n    \"Munster\": [\n        \"NNP\"\n    ], \n    \"Pisa\": [\n        \"NNP\"\n    ], \n    \"Emporium\": [\n        \"NNP\"\n    ], \n    \"Finger\": [\n        \"NNP\"\n    ], \n    \"composer\": [\n        \"NN\"\n    ], \n    \"composes\": [\n        \"VBZ\"\n    ], \n    \"corpuscular\": [\n        \"JJ\"\n    ], \n    \"belittling\": [\n        \"VBG\"\n    ], \n    \"Driver\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Driven\": [\n        \"VBN\"\n    ], \n    \"classically\": [\n        \"RB\"\n    ], \n    \"Congregational\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Gramm-Rudman-Hollings\": [\n        \"NNP\"\n    ], \n    \"penny-wise\": [\n        \"JJ\"\n    ], \n    \"reciprocity\": [\n        \"NN\"\n    ], \n    \"Propper\": [\n        \"NNP\"\n    ], \n    \"butler\": [\n        \"NN\"\n    ], \n    \"Rennell\": [\n        \"NNP\"\n    ], \n    \"co-inventors\": [\n        \"NNS\"\n    ], \n    \"Insurance-reform\": [\n        \"NN\"\n    ], \n    \"Lukassen\": [\n        \"NNP\"\n    ], \n    \"defendant\": [\n        \"NN\"\n    ], \n    \"Pty.\": [\n        \"NNP\"\n    ], \n    \"charcoal\": [\n        \"NN\"\n    ], \n    \"engender\": [\n        \"VB\"\n    ], \n    \"kiosk\": [\n        \"NN\"\n    ], \n    \"Wilfrid\": [\n        \"NNP\"\n    ], \n    \"Flakes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Radio-Television\": [\n        \"NNP\"\n    ], \n    \"dentistry\": [\n        \"NN\"\n    ], \n    \"Nash\": [\n        \"NNP\"\n    ], \n    \"Ultra\": [\n        \"NNP\"\n    ], \n    \"minions\": [\n        \"NNS\"\n    ], \n    \"Inspire\": [\n        \"NNP\"\n    ], \n    \"transmissible\": [\n        \"JJ\"\n    ], \n    \"anti-Nazi\": [\n        \"JJ\"\n    ], \n    \"Etruscan\": [\n        \"JJ\"\n    ], \n    \"gruff\": [\n        \"JJ\"\n    ], \n    \"rehabilitation\": [\n        \"NN\"\n    ], \n    \"ontologically\": [\n        \"RB\"\n    ], \n    \"syrupy\": [\n        \"JJ\"\n    ], \n    \"Cultures\": [\n        \"NNS\"\n    ], \n    \"Apogee\": [\n        \"NNP\"\n    ], \n    \"syrups\": [\n        \"NNS\"\n    ], \n    \"noises\": [\n        \"NNS\"\n    ], \n    \"midsts\": [\n        \"NNS\"\n    ], \n    \"prepreg\": [\n        \"NN\"\n    ], \n    \"differentiability\": [\n        \"NN\"\n    ], \n    \"unseasonable\": [\n        \"JJ\"\n    ], \n    \"formations\": [\n        \"NNS\"\n    ], \n    \"Farthing\": [\n        \"NNP\"\n    ], \n    \"aniline\": [\n        \"NN\"\n    ], \n    \"Three-year-old\": [\n        \"JJ\"\n    ], \n    \"Daewoo\": [\n        \"NNP\"\n    ], \n    \"Durocher\": [\n        \"NNP\"\n    ], \n    \"once-desirable\": [\n        \"JJ\"\n    ], \n    \"Superconcentrates\": [\n        \"NNS\"\n    ], \n    \"quisling\": [\n        \"NN\"\n    ], \n    \"Petrie\": [\n        \"NNP\"\n    ], \n    \"Conservatism\": [\n        \"NN\"\n    ], \n    \"Mainliner-Highland\": [\n        \"NNP\"\n    ], \n    \"delicately-textured\": [\n        \"JJ\"\n    ], \n    \"prostate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"necklace-like\": [\n        \"JJ\"\n    ], \n    \"Southey\": [\n        \"NNP\"\n    ], \n    \"lecher\": [\n        \"NN\"\n    ], \n    \"state-subsidized\": [\n        \"JJ\"\n    ], \n    \"HIV\": [\n        \"NNP\"\n    ], \n    \"Maplecrest\": [\n        \"NNP\"\n    ], \n    \"guilder\": [\n        \"NN\"\n    ], \n    \"RETREAT\": [\n        \"NN\"\n    ], \n    \"Tennessee\": [\n        \"NNP\"\n    ], \n    \"supranational\": [\n        \"JJ\"\n    ], \n    \"chambermaids\": [\n        \"NNS\"\n    ], \n    \"BHP\": [\n        \"NNP\"\n    ], \n    \"mustache\": [\n        \"NN\"\n    ], \n    \"eggplants\": [\n        \"NNS\"\n    ], \n    \"Dollar-yen\": [\n        \"JJ\"\n    ], \n    \"Kriz\": [\n        \"NNP\"\n    ], \n    \"contriving\": [\n        \"VBG\"\n    ], \n    \"Beside\": [\n        \"IN\"\n    ], \n    \"Creations\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"circumscribed\": [\n        \"JJ\"\n    ], \n    \"knocks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Krim\": [\n        \"NNP\"\n    ], \n    \"transborder\": [\n        \"JJ\"\n    ], \n    \"galaxy\": [\n        \"NN\"\n    ], \n    \"iguana\": [\n        \"JJ\"\n    ], \n    \"edematous\": [\n        \"JJ\"\n    ], \n    \"tsk\": [\n        \"UH\"\n    ], \n    \"tsh\": [\n        \"NN\"\n    ], \n    \"most-hazardous\": [\n        \"JJ\"\n    ], \n    \"undressed\": [\n        \"VBD\"\n    ], \n    \"itemize\": [\n        \"VB\"\n    ], \n    \"heroism\": [\n        \"NN\"\n    ], \n    \"godless\": [\n        \"JJ\"\n    ], \n    \"pugh\": [\n        \"JJ\"\n    ], \n    \"European-based\": [\n        \"JJ\"\n    ], \n    \"couplers\": [\n        \"NNS\"\n    ], \n    \"black-owned\": [\n        \"JJ\"\n    ], \n    \"steel-hulled\": [\n        \"JJ\"\n    ], \n    \"Slack\": [\n        \"NNP\"\n    ], \n    \"pangs\": [\n        \"NNS\"\n    ], \n    \"Yin-Yang\": [\n        \"NNP\"\n    ], \n    \"beads\": [\n        \"NNS\"\n    ], \n    \"denigrate\": [\n        \"VB\"\n    ], \n    \"Architect\": [\n        \"NNP\"\n    ], \n    \"squabbling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"preschool\": [\n        \"JJ\"\n    ], \n    \"applicants\": [\n        \"NNS\"\n    ], \n    \"straddling\": [\n        \"VBG\"\n    ], \n    \"Hollingshead\": [\n        \"NNP\"\n    ], \n    \"greenhouses\": [\n        \"NNS\"\n    ], \n    \"masterminding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Wurtzel\": [\n        \"NNP\"\n    ], \n    \"hisself\": [\n        \"PRP\"\n    ], \n    \"preclude\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dillard\": [\n        \"NNP\"\n    ], \n    \"oversubscribed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"E.O.\": [\n        \"NNP\"\n    ], \n    \"beady\": [\n        \"JJ\"\n    ], \n    \"Downside\": [\n        \"JJ\"\n    ], \n    \"McLish\": [\n        \"NNP\"\n    ], \n    \"tacticians\": [\n        \"NNS\"\n    ], \n    \"monumentally\": [\n        \"RB\"\n    ], \n    \"crackdowns\": [\n        \"NNS\"\n    ], \n    \"Jima\": [\n        \"NNP\"\n    ], \n    \"pastel-like\": [\n        \"JJ\"\n    ], \n    \"Dai-Ichi\\\\/Nippon\": [\n        \"NNP\"\n    ], \n    \"averred\": [\n        \"VBD\"\n    ], \n    \"Awad\": [\n        \"NNP\"\n    ], \n    \"drumroll\": [\n        \"NN\"\n    ], \n    \"barrel-vaulted\": [\n        \"JJ\"\n    ], \n    \"incensed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"popping\": [\n        \"VBG\"\n    ], \n    \"Unisys\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"eking\": [\n        \"VBG\"\n    ], \n    \"Permission\": [\n        \"NN\"\n    ], \n    \"enforceable\": [\n        \"JJ\"\n    ], \n    \"crazy-wonderful\": [\n        \"JJ\"\n    ], \n    \"Plee-Zing\": [\n        \"NNP\"\n    ], \n    \"invective\": [\n        \"NN\"\n    ], \n    \"scriptural\": [\n        \"JJ\"\n    ], \n    \"flushing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Mandle\": [\n        \"NNP\"\n    ], \n    \"Ural\": [\n        \"NNP\"\n    ], \n    \"Countering\": [\n        \"VBG\"\n    ], \n    \"peonies\": [\n        \"NNS\"\n    ], \n    \"vibrionic\": [\n        \"JJ\"\n    ], \n    \"Anti-Swapo\": [\n        \"JJ\"\n    ], \n    \"grunting\": [\n        \"VBG\"\n    ], \n    \"contrarian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"IRSAC\": [\n        \"NNP\"\n    ], \n    \"qua\": [\n        \"FW\"\n    ], \n    \"clarify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"approaches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"que\": [\n        \"FW\"\n    ], \n    \"British\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"qui\": [\n        \"FW\"\n    ], \n    \"Sanger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"quo\": [\n        \"FW\", \n        \"WDT\", \n        \"NN\"\n    ], \n    \"super-empirical\": [\n        \"JJ\"\n    ], \n    \"pokerfaced\": [\n        \"JJ\"\n    ], \n    \"backwards\": [\n        \"RB\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"allies\": [\n        \"NNS\"\n    ], \n    \"Flesh\": [\n        \"NN\"\n    ], \n    \"mortar\": [\n        \"NN\"\n    ], \n    \"battlefield-electronic\": [\n        \"JJ\"\n    ], \n    \"open-necked\": [\n        \"JJ\"\n    ], \n    \"Acey\": [\n        \"NNP\"\n    ], \n    \"allied\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"mortal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Aces\": [\n        \"NNS\"\n    ], \n    \"order-taking\": [\n        \"NN\"\n    ], \n    \"flat-rolled\": [\n        \"JJ\"\n    ], \n    \"less-effective\": [\n        \"JJ\"\n    ], \n    \"warys\": [\n        \"NNS\"\n    ], \n    \"domiciled\": [\n        \"VBN\"\n    ], \n    \"grandfather-father-to-son\": [\n        \"JJ\"\n    ], \n    \"elegiac\": [\n        \"JJ\"\n    ], \n    \"Sievers\": [\n        \"NNP\"\n    ], \n    \"Rubber\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"lagging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Significance\": [\n        \"NN\"\n    ], \n    \"Sventek\": [\n        \"NNP\"\n    ], \n    \"Kooks\": [\n        \"NNPS\"\n    ], \n    \"Durgin\": [\n        \"NNP\"\n    ], \n    \"tax-and-spending\": [\n        \"JJ\"\n    ], \n    \"Muncke\": [\n        \"NNP\"\n    ], \n    \"owning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Playboy\": [\n        \"NNP\"\n    ], \n    \"dextrous-fingered\": [\n        \"JJ\"\n    ], \n    \"Circuit-breaker\": [\n        \"JJ\"\n    ], \n    \"nebular\": [\n        \"JJ\"\n    ], \n    \"scant\": [\n        \"JJ\"\n    ], \n    \"Stocks\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"bargained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"scans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Fliers\": [\n        \"NNPS\"\n    ], \n    \"explanation\": [\n        \"NN\"\n    ], \n    \"acquire\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"foamy\": [\n        \"JJ\"\n    ], \n    \"two-game\": [\n        \"NN\"\n    ], \n    \"Burnett\": [\n        \"NNP\"\n    ], \n    \"Bordeaux\": [\n        \"NNP\"\n    ], \n    \"foams\": [\n        \"NNS\"\n    ], \n    \"Nearby\": [\n        \"RB\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Reds\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"bodyguard\": [\n        \"NN\"\n    ], \n    \"Accountemps\": [\n        \"NNP\"\n    ], \n    \"Ozagen\": [\n        \"NNP\"\n    ], \n    \"treatise\": [\n        \"NN\"\n    ], \n    \"smoothbore\": [\n        \"NN\"\n    ], \n    \"landholdings\": [\n        \"NNS\"\n    ], \n    \"bewilderedly\": [\n        \"RB\"\n    ], \n    \"Reda\": [\n        \"NNP\"\n    ], \n    \"off-field\": [\n        \"JJ\"\n    ], \n    \"assays\": [\n        \"NNS\"\n    ], \n    \"impersonations\": [\n        \"NNS\"\n    ], \n    \"Lastly\": [\n        \"RB\"\n    ], \n    \"Sutherland\": [\n        \"NNP\"\n    ], \n    \"Ragan\": [\n        \"NNP\"\n    ], \n    \"Hueglin\": [\n        \"NNP\"\n    ], \n    \"Lachica\": [\n        \"NNP\"\n    ], \n    \"Follow-through\": [\n        \"JJ\"\n    ], \n    \"Parmer\": [\n        \"NNP\"\n    ], \n    \"cavern\": [\n        \"NN\"\n    ], \n    \"outdoorsman\": [\n        \"NN\"\n    ], \n    \"throat\": [\n        \"NN\"\n    ], \n    \"Dilworth\": [\n        \"NNP\"\n    ], \n    \"Defuse\": [\n        \"VB\"\n    ], \n    \"Mueller\": [\n        \"NNP\"\n    ], \n    \"catapults\": [\n        \"VBZ\"\n    ], \n    \"attention-grabbing\": [\n        \"JJ\"\n    ], \n    \"Jacuzzis\": [\n        \"NNS\"\n    ], \n    \"incentive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ziraldo\": [\n        \"NNP\"\n    ], \n    \"schoolmaster\": [\n        \"NN\"\n    ], \n    \"concerns\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ticket\": [\n        \"NN\"\n    ], \n    \"Ticker\": [\n        \"NNP\"\n    ], \n    \"Glad\": [\n        \"JJ\"\n    ], \n    \"alienation\": [\n        \"NN\"\n    ], \n    \"WARS\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"deathless\": [\n        \"JJ\"\n    ], \n    \"Kiarti\": [\n        \"NNP\"\n    ], \n    \"Eritreans\": [\n        \"NNPS\"\n    ], \n    \"New-England\": [\n        \"NNP\"\n    ], \n    \"M-CSF\": [\n        \"NNP\"\n    ], \n    \"interning\": [\n        \"VBG\"\n    ], \n    \"Protege\": [\n        \"NNP\"\n    ], \n    \"Russes\": [\n        \"NNP\"\n    ], \n    \"Sankei\": [\n        \"NNP\"\n    ], \n    \"Inadequate\": [\n        \"JJ\"\n    ], \n    \"line-drying\": [\n        \"JJ\"\n    ], \n    \"McNamara\": [\n        \"NNP\"\n    ], \n    \"Joyce\": [\n        \"NNP\"\n    ], \n    \"Tartarughe\": [\n        \"NNP\"\n    ], \n    \"Afrikanerdom\": [\n        \"NNP\"\n    ], \n    \"Russel\": [\n        \"NNP\"\n    ], \n    \"thicken\": [\n        \"VB\"\n    ], \n    \"transaction-entry\": [\n        \"NN\"\n    ], \n    \"fascists\": [\n        \"NNS\"\n    ], \n    \"rotating\": [\n        \"VBG\"\n    ], \n    \"Religion\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"traitor\": [\n        \"NN\"\n    ], \n    \"Stumbles\": [\n        \"VBZ\"\n    ], \n    \"one-million-letter\": [\n        \"JJ\"\n    ], \n    \"unreliable\": [\n        \"JJ\"\n    ], \n    \"Regal\": [\n        \"NNP\"\n    ], \n    \"Regan\": [\n        \"NNP\"\n    ], \n    \"thicket\": [\n        \"NN\"\n    ], \n    \"communication-cluttered\": [\n        \"JJ\"\n    ], \n    \"Denison\": [\n        \"NNP\"\n    ], \n    \"communism\": [\n        \"NN\"\n    ], \n    \"sparks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Aycock\": [\n        \"NNP\"\n    ], \n    \"Superslim\": [\n        \"NNP\"\n    ], \n    \"Oei\": [\n        \"NNP\"\n    ], \n    \"no-nos\": [\n        \"NNS\"\n    ], \n    \"mothballs\": [\n        \"NNS\"\n    ], \n    \"president\\\\/chief\": [\n        \"NN\"\n    ], \n    \"prancing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Jacob\": [\n        \"NNP\"\n    ], \n    \"communist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shouldering\": [\n        \"VBG\"\n    ], \n    \"pitfall\": [\n        \"NN\"\n    ], \n    \"regularly\": [\n        \"RB\"\n    ], \n    \"presorting\": [\n        \"NN\"\n    ], \n    \"starch\": [\n        \"NN\"\n    ], \n    \"astigmatism\": [\n        \"NN\"\n    ], \n    \"pave\": [\n        \"VB\"\n    ], \n    \"associate-label\": [\n        \"JJ\"\n    ], \n    \"Stories\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"rebellious\": [\n        \"JJ\"\n    ], \n    \"overinsistent\": [\n        \"JJ\"\n    ], \n    \"pashas\": [\n        \"NNS\"\n    ], \n    \"sperm\": [\n        \"NN\"\n    ], \n    \"Endicott\": [\n        \"NNP\"\n    ], \n    \"Well-to-Do\": [\n        \"JJ\"\n    ], \n    \"Carlson\": [\n        \"NNP\"\n    ], \n    \"resultants\": [\n        \"NNS\"\n    ], \n    \"fixes\": [\n        \"NNS\"\n    ], \n    \"dispell\": [\n        \"VB\"\n    ], \n    \"tableland\": [\n        \"NN\"\n    ], \n    \"Desheng\": [\n        \"NNP\"\n    ], \n    \"fixed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"VBD|VBN\"\n    ], \n    \"Bearishness\": [\n        \"NN\"\n    ], \n    \"Guarantee\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Fungible\": [\n        \"JJ\"\n    ], \n    \"well-guarded\": [\n        \"JJ\"\n    ], \n    \"Courthouse\": [\n        \"NN\"\n    ], \n    \"turkeys\": [\n        \"NNS\"\n    ], \n    \"racked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"groggy\": [\n        \"JJ\"\n    ], \n    \"non-repetitious\": [\n        \"JJ\"\n    ], \n    \"reiterate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Orbiting\": [\n        \"NNP\"\n    ], \n    \"intensity\": [\n        \"NN\"\n    ], \n    \"racket\": [\n        \"NN\"\n    ], \n    \"liberalization\": [\n        \"NN\"\n    ], \n    \"Ochoa\": [\n        \"NNP\"\n    ], \n    \"easy-to-turn\": [\n        \"JJ\"\n    ], \n    \"indirectness\": [\n        \"NN\"\n    ], \n    \"Scrub\": [\n        \"VB\"\n    ], \n    \"reform\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"vignettes\": [\n        \"NNS\"\n    ], \n    \"criminalizing\": [\n        \"VBG\"\n    ], \n    \"canons\": [\n        \"NNS\"\n    ], \n    \"unscrewed\": [\n        \"VBD\"\n    ], \n    \"difficulties\": [\n        \"NNS\"\n    ], \n    \"boundary\": [\n        \"NN\"\n    ], \n    \"Heston\": [\n        \"NNP\"\n    ], \n    \"inflation-fuels-growth\": [\n        \"JJ\"\n    ], \n    \"Concerto\": [\n        \"NNP\"\n    ], \n    \"BE&K\": [\n        \"NNP\"\n    ], \n    \"months-long\": [\n        \"JJ\"\n    ], \n    \"GM-CSF\": [\n        \"NNP\"\n    ], \n    \"cauliflower\": [\n        \"NN\"\n    ], \n    \"operations\\\\\": [\n        \"NNP\"\n    ], \n    \"sorrow\": [\n        \"NN\"\n    ], \n    \"Mantegna\": [\n        \"NNP\"\n    ], \n    \"jewelled\": [\n        \"JJ\"\n    ], \n    \"Creedon\": [\n        \"NNP\"\n    ], \n    \"Gaelic\": [\n        \"JJ\"\n    ], \n    \"reproduces\": [\n        \"VBZ\"\n    ], \n    \"Well-Seasoned\": [\n        \"JJ\"\n    ], \n    \"mandamus\": [\n        \"NN\"\n    ], \n    \"book-flogging\": [\n        \"JJ\"\n    ], \n    \"Entirely\": [\n        \"RB\"\n    ], \n    \"Concerts\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Macintosh\": [\n        \"NNP\"\n    ], \n    \"commenting\": [\n        \"VBG\"\n    ], \n    \"Soldier\": [\n        \"NNP\"\n    ], \n    \"burnishing\": [\n        \"VBG\"\n    ], \n    \"metered\": [\n        \"VBN\"\n    ], \n    \"kosher\": [\n        \"JJ\"\n    ], \n    \"transplantation\": [\n        \"NN\"\n    ], \n    \"Lippens\": [\n        \"NNP\"\n    ], \n    \"Spinners\": [\n        \"NNPS\"\n    ], \n    \"wringing\": [\n        \"VBG\"\n    ], \n    \"property-tax-cutting\": [\n        \"JJ\"\n    ], \n    \"bayleefe\": [\n        \"NN\"\n    ], \n    \"Champassak\": [\n        \"NNP\"\n    ], \n    \"Mardon\": [\n        \"NNP\"\n    ], \n    \"two-tier\": [\n        \"JJ\"\n    ], \n    \"ambushed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"See-through\": [\n        \"JJ\"\n    ], \n    \"Squire\": [\n        \"NNP\"\n    ], \n    \"Ahsan\": [\n        \"NNP\"\n    ], \n    \"Bench\": [\n        \"NNP\"\n    ], \n    \"reborn\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"deflected\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"uninitiated\": [\n        \"JJ\"\n    ], \n    \"Sapp\": [\n        \"NNP\"\n    ], \n    \"Pending\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"long-necked\": [\n        \"JJ\"\n    ], \n    \"swimmer\": [\n        \"NN\"\n    ], \n    \"mouthpiece\": [\n        \"NN\"\n    ], \n    \"short-wave\": [\n        \"JJ\"\n    ], \n    \"newscast\": [\n        \"NN\"\n    ], \n    \"migrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"seasoned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"drowsy\": [\n        \"JJ\"\n    ], \n    \"rump\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"other-nation\": [\n        \"JJ\"\n    ], \n    \"iodinate\": [\n        \"VB\"\n    ], \n    \"anomaly\": [\n        \"NN\"\n    ], \n    \"drift-net\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"logic-rhetoric\": [\n        \"NN\"\n    ], \n    \"Carriages\": [\n        \"NNS\"\n    ], \n    \"Moonies\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Overbuilding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Norex\": [\n        \"NNP\"\n    ], \n    \"S-11\": [\n        \"NN\"\n    ], \n    \"S-10\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tense\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"riverfront\": [\n        \"NN\"\n    ], \n    \"assessments\": [\n        \"NNS\"\n    ], \n    \"locomotives\": [\n        \"NNS\"\n    ], \n    \"Roeser\": [\n        \"NNP\"\n    ], \n    \"distilleries\": [\n        \"NNS\"\n    ], \n    \"exhumations\": [\n        \"NNS\"\n    ], \n    \"caving\": [\n        \"NN\"\n    ], \n    \"Nalick\": [\n        \"NNP\"\n    ], \n    \"venomous\": [\n        \"JJ\"\n    ], \n    \"ordinarius\": [\n        \"NN\"\n    ], \n    \"commmon\": [\n        \"JJ\"\n    ], \n    \"hairpiece\": [\n        \"NN\"\n    ], \n    \"Centering\": [\n        \"VBG\"\n    ], \n    \"fumbling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"delusion\": [\n        \"NN\"\n    ], \n    \"Cineplex\": [\n        \"NNP\"\n    ], \n    \"LONDON\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Estes\": [\n        \"NNP\"\n    ], \n    \"Anti-Americanism\": [\n        \"NNP\"\n    ], \n    \"partner\": [\n        \"NN\"\n    ], \n    \"pedestal\": [\n        \"NN\"\n    ], \n    \"espousing\": [\n        \"VBG\"\n    ], \n    \"Yaqui\": [\n        \"NNP\"\n    ], \n    \")\": [\n        \")\"\n    ], \n    \"coronary\": [\n        \"JJ\"\n    ], \n    \"Accountants\": [\n        \"NNPS\"\n    ], \n    \"shoehorned\": [\n        \"VBN\"\n    ], \n    \"womb\": [\n        \"NN\"\n    ], \n    \"Panel\": [\n        \"NNP\"\n    ], \n    \"Avoiding\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"itemization\": [\n        \"NN\"\n    ], \n    \"code-related\": [\n        \"JJ\"\n    ], \n    \"sigue\": [\n        \"FW\"\n    ], \n    \"Surrendering\": [\n        \"VBG\"\n    ], \n    \"discredited\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"sisters\": [\n        \"NNS\"\n    ], \n    \"recourse\": [\n        \"NN\"\n    ], \n    \"drafts\": [\n        \"NNS\"\n    ], \n    \"neural\": [\n        \"JJ\"\n    ], \n    \"Resident\": [\n        \"NNP\"\n    ], \n    \"Spring\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"builder\": [\n        \"NN\"\n    ], \n    \"NOT-GUILTY\": [\n        \"JJ\"\n    ], \n    \"Sprint\": [\n        \"NNP\"\n    ], \n    \"Total\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Seventeenth\": [\n        \"JJ\"\n    ], \n    \"reintroduce\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Flute\": [\n        \"NN\"\n    ], \n    \"excise\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"nicknames\": [\n        \"NNS\"\n    ], \n    \"drafty\": [\n        \"JJ\"\n    ], \n    \"agrochemical\": [\n        \"NN\"\n    ], \n    \"inveigle\": [\n        \"VB\"\n    ], \n    \"nicknamed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"vocational\": [\n        \"JJ\"\n    ], \n    \"Fourth\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"streptokinase\": [\n        \"NNP\"\n    ], \n    \"Y.J.\": [\n        \"NNP\"\n    ], \n    \"Lutheran\": [\n        \"NNP\"\n    ], \n    \"Gundle\": [\n        \"NNP\"\n    ], \n    \"Shogun\": [\n        \"NNP\"\n    ], \n    \"one-sixth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Victoria\": [\n        \"NNP\"\n    ], \n    \"delegations\": [\n        \"NNS\"\n    ], \n    \"jackets\": [\n        \"NNS\"\n    ], \n    \"Dirksen\": [\n        \"NNP\"\n    ], \n    \"ought\": [\n        \"MD\"\n    ], \n    \"Pulkova\": [\n        \"NNP\"\n    ], \n    \"Toxics\": [\n        \"NNP\"\n    ], \n    \"elapsed\": [\n        \"VBN\"\n    ], \n    \"Krasnoyarsk\": [\n        \"NNP\"\n    ], \n    \"satin-covered\": [\n        \"JJ\"\n    ], \n    \"elapses\": [\n        \"VBZ\"\n    ], \n    \"Bromagen\": [\n        \"NNP\"\n    ], \n    \"ward-heelers\": [\n        \"NNS\"\n    ], \n    \"ad-free\": [\n        \"JJ\"\n    ], \n    \"displaced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gm.\": [\n        \"NN\"\n    ], \n    \"courtrooms\": [\n        \"NNS\"\n    ], \n    \"Isaacson\": [\n        \"NNP\"\n    ], \n    \"Durham\": [\n        \"NNP\"\n    ], \n    \"displaces\": [\n        \"VBZ\"\n    ], \n    \"ghosted\": [\n        \"VBD\"\n    ], \n    \"livelier\": [\n        \"JJR\"\n    ], \n    \"straightway\": [\n        \"RB\"\n    ], \n    \"classical\": [\n        \"JJ\"\n    ], \n    \"Signs\": [\n        \"NNS\"\n    ], \n    \"Olle\": [\n        \"NNP\"\n    ], \n    \"Grohowski\": [\n        \"NNP\"\n    ], \n    \"taskmaster\": [\n        \"NN\"\n    ], \n    \"righthander\": [\n        \"NN\"\n    ], \n    \"happens\": [\n        \"VBZ\"\n    ], \n    \"Option\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"best-hearted\": [\n        \"JJ\"\n    ], \n    \"eqn.\": [\n        \"NN\"\n    ], \n    \"electroplating\": [\n        \"NN\"\n    ], \n    \"screwed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"clean-top\": [\n        \"JJ\"\n    ], \n    \"Devcon\": [\n        \"NNP\"\n    ], \n    \"Heaven\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"Applying\": [\n        \"VBG\"\n    ], \n    \"lipid\": [\n        \"NN\"\n    ], \n    \"refurbishing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pedaling\": [\n        \"VBG\"\n    ], \n    \"topiary\": [\n        \"JJ\"\n    ], \n    \"unchangeable\": [\n        \"JJ\"\n    ], \n    \"U.N.C.L.E\": [\n        \"NNP\"\n    ], \n    \"urbanized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Jetway\": [\n        \"NNP\"\n    ], \n    \"class-biased\": [\n        \"JJ\"\n    ], \n    \"Lascivious\": [\n        \"NNP\"\n    ], \n    \"Rabaul\": [\n        \"NNP\"\n    ], \n    \"CASSETTE\": [\n        \"NN\"\n    ], \n    \"Guardino\": [\n        \"NNP\"\n    ], \n    \"central-district\": [\n        \"JJ\"\n    ], \n    \"Guardini\": [\n        \"NNP\"\n    ], \n    \"crudes\": [\n        \"NNS\"\n    ], \n    \"Billing\": [\n        \"NN\"\n    ], \n    \"backpackers\": [\n        \"NNS\"\n    ], \n    \"planners\": [\n        \"NNS\"\n    ], \n    \"FRICTION\": [\n        \"NN\"\n    ], \n    \"cancerous\": [\n        \"JJ\"\n    ], \n    \"interdependence\": [\n        \"NN\"\n    ], \n    \"Shinagawa\": [\n        \"NNP\"\n    ], \n    \"proteolysis\": [\n        \"NN\"\n    ], \n    \"earthenware\": [\n        \"NN\"\n    ], \n    \"unfashionable\": [\n        \"JJ\"\n    ], \n    \"meclofenamate\": [\n        \"NN\"\n    ], \n    \"knuckles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"PROSECUTIONS\": [\n        \"NNS\"\n    ], \n    \"Equipement\": [\n        \"NNP\"\n    ], \n    \"Quattro.\": [\n        \"NNP\"\n    ], \n    \"condense\": [\n        \"VB\"\n    ], \n    \"Twomey\": [\n        \"NNP\"\n    ], \n    \"hankerin\": [\n        \"VBG\"\n    ], \n    \"avowed\": [\n        \"JJ\"\n    ], \n    \"Therapy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"knuckled\": [\n        \"VBD\"\n    ], \n    \"crucially\": [\n        \"RB\"\n    ], \n    \"Fair-priced\": [\n        \"JJ\"\n    ], \n    \"November\": [\n        \"NNP\"\n    ], \n    \"Valmet\": [\n        \"NN\"\n    ], \n    \"banquet-hall\": [\n        \"NN\"\n    ], \n    \"Arbuckle\": [\n        \"NNP\"\n    ], \n    \"Tyne\": [\n        \"NNP\"\n    ], \n    \"Philanthropic\": [\n        \"NNP\"\n    ], \n    \"media-stock\": [\n        \"JJ\"\n    ], \n    \"crawled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Source:New\": [\n        \"NNP\"\n    ], \n    \"sequel\": [\n        \"NN\"\n    ], \n    \"Protons\": [\n        \"NNS\"\n    ], \n    \"unpartisan\": [\n        \"JJ\"\n    ], \n    \"knockdown\": [\n        \"NN\"\n    ], \n    \"fuddy-duddy\": [\n        \"JJ\"\n    ], \n    \"Harlan\": [\n        \"NNP\"\n    ], \n    \"kraft\": [\n        \"NN\"\n    ], \n    \"brouhaha\": [\n        \"NN\"\n    ], \n    \"versatile\": [\n        \"JJ\"\n    ], \n    \"Sekel\": [\n        \"NNP\"\n    ], \n    \"Guiseppe\": [\n        \"NNP\"\n    ], \n    \"HUD-backed\": [\n        \"JJ\"\n    ], \n    \"Graff\": [\n        \"NNP\"\n    ], \n    \"general-practitioner\": [\n        \"NN\"\n    ], \n    \"Crosby\": [\n        \"NNP\"\n    ], \n    \"Capetronic\": [\n        \"NNP\"\n    ], \n    \"Gauguin\": [\n        \"NNP\"\n    ], \n    \"Glaciology\": [\n        \"NNP\"\n    ], \n    \"Graft\": [\n        \"NN\"\n    ], \n    \"indiscriminating\": [\n        \"JJ\"\n    ], \n    \"domino\": [\n        \"NN\"\n    ], \n    \"exceeded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Surgeons\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"transfused\": [\n        \"VBN\"\n    ], \n    \"periods\": [\n        \"NNS\"\n    ], \n    \"AFL-CIO\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"loft\": [\n        \"NN\"\n    ], \n    \"tumor-suppressors\": [\n        \"NNS\"\n    ], \n    \"Tempe\": [\n        \"NNP\"\n    ], \n    \"overpurchase\": [\n        \"VB\"\n    ], \n    \"Babble\": [\n        \"NN\"\n    ], \n    \"corporation\": [\n        \"NN\"\n    ], \n    \"Tempo\": [\n        \"NNP\"\n    ], \n    \"duplications\": [\n        \"NNS\"\n    ], \n    \"Mcdonald\": [\n        \"NNP\"\n    ], \n    \"Centrum\": [\n        \"NNP\"\n    ], \n    \"Sylmar\": [\n        \"NNP\"\n    ], \n    \"Gitter\": [\n        \"NNP\"\n    ], \n    \"parallelism\": [\n        \"NN\"\n    ], \n    \"Blakes\": [\n        \"NNS\"\n    ], \n    \"conveys\": [\n        \"VBZ\"\n    ], \n    \"Interlocking\": [\n        \"VBG\"\n    ], \n    \"floppies\": [\n        \"NNS\"\n    ], \n    \"hard-liquor\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sabella\": [\n        \"NNP\"\n    ], \n    \"Deere\": [\n        \"NNP\"\n    ], \n    \"F-20\": [\n        \"NNP\"\n    ], \n    \"Elcotel\": [\n        \"NNP\"\n    ], \n    \"bankrupcy\": [\n        \"NN\"\n    ], \n    \"Alba\": [\n        \"NNP\"\n    ], \n    \"chemist-turned-entrepreneur\": [\n        \"NN\"\n    ], \n    \"Expenses\": [\n        \"NNS\"\n    ], \n    \"deregulated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Exterior\": [\n        \"NNP\"\n    ], \n    \"condiments\": [\n        \"NNS\"\n    ], \n    \"propsed\": [\n        \"VBN\"\n    ], \n    \"food-services\": [\n        \"NNS\"\n    ], \n    \"Pryor\": [\n        \"NNP\"\n    ], \n    \"Behringwerke\": [\n        \"NNP\"\n    ], \n    \"elegances\": [\n        \"NNS\"\n    ], \n    \"Juilliard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reprocess\": [\n        \"VB\"\n    ], \n    \"white-suited\": [\n        \"JJ\"\n    ], \n    \"Quackenbush\": [\n        \"NNP\"\n    ], \n    \"guard-room\": [\n        \"NN\"\n    ], \n    \"GROWING\": [\n        \"VBG\"\n    ], \n    \"Handzlik\": [\n        \"NNP\"\n    ], \n    \"Re-creating\": [\n        \"VBG\"\n    ], \n    \"rendezvoused\": [\n        \"VBD\"\n    ], \n    \"undisputed\": [\n        \"JJ\"\n    ], \n    \"computer-matching\": [\n        \"JJ\"\n    ], \n    \"Obey\": [\n        \"NNP\"\n    ], \n    \"Vinnicum\": [\n        \"NNP\"\n    ], \n    \"Minnelli\": [\n        \"NNP\"\n    ], \n    \"metamorphic\": [\n        \"JJ\"\n    ], \n    \"LeFrere\": [\n        \"NNP\"\n    ], \n    \"Mnemosyne\": [\n        \"NNP\"\n    ], \n    \"whipsaw\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"acoustically\": [\n        \"RB\"\n    ], \n    \"whatsoever\": [\n        \"RB\", \n        \"WP\"\n    ], \n    \"Pride-Venus\": [\n        \"NNP\"\n    ], \n    \"Redland\": [\n        \"NNP\"\n    ], \n    \"Nasty\": [\n        \"JJ\"\n    ], \n    \"Prescribed\": [\n        \"VBN\"\n    ], \n    \"arboreal\": [\n        \"JJ\"\n    ], \n    \"dispense\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"housecleaning\": [\n        \"NN\"\n    ], \n    \"Prieur\": [\n        \"NNP\"\n    ], \n    \"gratification\": [\n        \"NN\"\n    ], \n    \"vastly\": [\n        \"RB\"\n    ], \n    \"caliphs\": [\n        \"NNS\"\n    ], \n    \"Richter\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"anemic\": [\n        \"JJ\"\n    ], \n    \"anemia\": [\n        \"NN\"\n    ], \n    \"gluey\": [\n        \"JJ\"\n    ], \n    \"school\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"magnate\": [\n        \"NN\"\n    ], \n    \"Murtaugh\": [\n        \"NNP\"\n    ], \n    \"Ousley\": [\n        \"NNP\"\n    ], \n    \"conceive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"glues\": [\n        \"NNS\"\n    ], \n    \"cocoa-trading\": [\n        \"JJ\"\n    ], \n    \"apprehension\": [\n        \"NN\"\n    ], \n    \"MALAISE\": [\n        \"NNP\"\n    ], \n    \"Schweiker\": [\n        \"NNP\"\n    ], \n    \"Cowboys\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"delightfully\": [\n        \"RB\"\n    ], \n    \"glued\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"possiblity\": [\n        \"NN\"\n    ], \n    \"Haake\": [\n        \"NNP\"\n    ], \n    \"veritable\": [\n        \"JJ\"\n    ], \n    \"Ruffled\": [\n        \"VBN\"\n    ], \n    \"disciplines\": [\n        \"NNS\"\n    ], \n    \"Satoko\": [\n        \"NNP\"\n    ], \n    \"construed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"guidelines\": [\n        \"NNS\"\n    ], \n    \"disciplined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Palazzo\": [\n        \"NNP\"\n    ], \n    \"umbrella\": [\n        \"NN\"\n    ], \n    \"browsing.\": [\n        \"NN\"\n    ], \n    \"take-up\": [\n        \"JJ\"\n    ], \n    \"Saint-Saens\": [\n        \"NNP\"\n    ], \n    \"blue\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Z.\": [\n        \"NNP\"\n    ], \n    \"hide\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"cosmologists\": [\n        \"NNS\"\n    ], \n    \"supplied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"blur\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"supplier\": [\n        \"NN\"\n    ], \n    \"supplies\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Behrendt\": [\n        \"NNP\"\n    ], \n    \"non-violence\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"democratized\": [\n        \"VBN\"\n    ], \n    \"Niebuhr\": [\n        \"NNP\"\n    ], \n    \"governorship\": [\n        \"NN\"\n    ], \n    \"Strehler\": [\n        \"NNP\"\n    ], \n    \"state-appointed\": [\n        \"JJ\"\n    ], \n    \"Crispin\": [\n        \"NNP\"\n    ], \n    \"etching\": [\n        \"NN\"\n    ], \n    \"McAvity\": [\n        \"NNP\"\n    ], \n    \"MIDLANTIC\": [\n        \"NNP\"\n    ], \n    \"Wedgeworth\": [\n        \"NNP\"\n    ], \n    \"hideously\": [\n        \"RB\"\n    ], \n    \"Gradual\": [\n        \"JJ\"\n    ], \n    \"settler\": [\n        \"NN\"\n    ], \n    \"ridicule\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"culminate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"poshest\": [\n        \"JJS\"\n    ], \n    \"shinbone\": [\n        \"NN\"\n    ], \n    \"depreciated\": [\n        \"VBD\"\n    ], \n    \"proposition...\": [\n        \":\"\n    ], \n    \"Bayezit\": [\n        \"NNP\"\n    ], \n    \"murkily\": [\n        \"RB\"\n    ], \n    \"natives\": [\n        \"NNS\"\n    ], \n    \"settled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Panting\": [\n        \"VBG\"\n    ], \n    \"Group\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Destec\": [\n        \"NNP\"\n    ], \n    \"Yehhh\": [\n        \"UH\"\n    ], \n    \"grumbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"godmother\": [\n        \"NN\"\n    ], \n    \"Pedersen\": [\n        \"NNP\"\n    ], \n    \"Madagascar\": [\n        \"NNP\"\n    ], \n    \"patience\": [\n        \"NN\"\n    ], \n    \"Orville\": [\n        \"NNP\"\n    ], \n    \"Werdell\": [\n        \"NNP\"\n    ], \n    \"offi\": [\n        \"NNS\"\n    ], \n    \"Cat\": [\n        \"NNP\"\n    ], \n    \"grumbles\": [\n        \"VBZ\"\n    ], \n    \"would\": [\n        \"MD\"\n    ], \n    \"Laotians\": [\n        \"NNS\"\n    ], \n    \"fenoldopam\": [\n        \"NN\"\n    ], \n    \"tenders\": [\n        \"NNS\"\n    ], \n    \"Messiah\": [\n        \"NNP\"\n    ], \n    \"distributing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"throw-rug\": [\n        \"NN\"\n    ], \n    \"Whichever\": [\n        \"WDT\"\n    ], \n    \"quipping\": [\n        \"VBG\"\n    ], \n    \"Donuts\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Ezra\": [\n        \"NNP\"\n    ], \n    \"Beauregard\": [\n        \"NNP\"\n    ], \n    \"Gradison\": [\n        \"NNP\"\n    ], \n    \"excommunicated\": [\n        \"VBN\"\n    ], \n    \"black-body\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tenors\": [\n        \"NNS\"\n    ], \n    \"ferrying\": [\n        \"VBG\"\n    ], \n    \"poultices\": [\n        \"NNS\"\n    ], \n    \"Ramparts\": [\n        \"NNS\"\n    ], \n    \"Stronger\": [\n        \"JJR\", \n        \"NNP\"\n    ], \n    \"cheek-to-cheek\": [\n        \"JJ\"\n    ], \n    \"abundance\": [\n        \"NN\"\n    ], \n    \"Crowd\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Crowe\": [\n        \"NNP\"\n    ], \n    \"arterioles\": [\n        \"NNS\"\n    ], \n    \"Crown\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"advocacy\": [\n        \"NN\"\n    ], \n    \"Crows\": [\n        \"NNPS\"\n    ], \n    \"warmish\": [\n        \"JJ\"\n    ], \n    \"Spotlight\": [\n        \"NNP\"\n    ], \n    \"employee-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hobos\": [\n        \"NNS\"\n    ], \n    \"MAKING\": [\n        \"VBG\"\n    ], \n    \"guitar-twanging\": [\n        \"JJ\"\n    ], \n    \"financial-support\": [\n        \"JJ\"\n    ], \n    \"defile\": [\n        \"VB\"\n    ], \n    \"receivables\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"gasoline-powered\": [\n        \"JJ\"\n    ], \n    \"dolphin\": [\n        \"NN\"\n    ], \n    \"pyschiatrist\": [\n        \"NN\"\n    ], \n    \"powerfulness\": [\n        \"NN\"\n    ], \n    \"riskiest\": [\n        \"JJS\"\n    ], \n    \"Bunny\": [\n        \"NNP\"\n    ], \n    \"returned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"non-verbal\": [\n        \"JJ\"\n    ], \n    \"legislate\": [\n        \"VB\"\n    ], \n    \"Cordova\": [\n        \"NNP\"\n    ], \n    \"stand-off\": [\n        \"JJ\"\n    ], \n    \"non-elderly\": [\n        \"JJ\"\n    ], \n    \"creditworthiness\": [\n        \"NN\"\n    ], \n    \"mollycoddle\": [\n        \"NN\"\n    ], \n    \"toxic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"actuality\": [\n        \"NN\"\n    ], \n    \"Darla\": [\n        \"NNP\"\n    ], \n    \"Modzelewski\": [\n        \"NNP\"\n    ], \n    \"Yuzek\": [\n        \"NNP\"\n    ], \n    \"Commonweal\": [\n        \"NNP\"\n    ], \n    \"Mariam\": [\n        \"NNP\"\n    ], \n    \"Marian\": [\n        \"NNP\"\n    ], \n    \"pantomimic\": [\n        \"JJ\"\n    ], \n    \"imaginable\": [\n        \"JJ\"\n    ], \n    \"lump\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"airless\": [\n        \"JJ\"\n    ], \n    \"understandable\": [\n        \"JJ\"\n    ], \n    \"lances\": [\n        \"NNS\"\n    ], \n    \"girders\": [\n        \"NNS\"\n    ], \n    \"appropriateness\": [\n        \"NN\"\n    ], \n    \"splendid\": [\n        \"JJ\"\n    ], \n    \"Siegal\": [\n        \"NNP\"\n    ], \n    \"capacitors\": [\n        \"NNS\"\n    ], \n    \"quasi-monopolistic\": [\n        \"JJ\"\n    ], \n    \"ATTRACTS\": [\n        \"VBZ\"\n    ], \n    \"plumbing\": [\n        \"NN\"\n    ], \n    \"preventive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"name-plating\": [\n        \"JJ\"\n    ], \n    \"Unanimously\": [\n        \"RB\"\n    ], \n    \"Nonetheless\": [\n        \"RB\"\n    ], \n    \"Gabriele\": [\n        \"NNP\"\n    ], \n    \"Arlington\": [\n        \"NNP\"\n    ], \n    \"fiendish\": [\n        \"JJ\"\n    ], \n    \"non-staple\": [\n        \"JJ\"\n    ], \n    \"margining\": [\n        \"VBG\"\n    ], \n    \"fealty\": [\n        \"NN\"\n    ], \n    \"two-term\": [\n        \"JJ\"\n    ], \n    \"counterterrorism\": [\n        \"NN\"\n    ], \n    \"Nitsuko\": [\n        \"NNP\"\n    ], \n    \"R.I.\": [\n        \"NNP\"\n    ], \n    \"tilth\": [\n        \"NN\"\n    ], \n    \"howsomever\": [\n        \"RB\"\n    ], \n    \"signatory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gajda\": [\n        \"NNP\"\n    ], \n    \"mistreat\": [\n        \"VB\"\n    ], \n    \"HASTINGS\": [\n        \"NNP\"\n    ], \n    \"Goldin\": [\n        \"NNP\"\n    ], \n    \"litigious\": [\n        \"JJ\"\n    ], \n    \"Mobile\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"ripens\": [\n        \"VBZ\"\n    ], \n    \"Goldie\": [\n        \"NNP\"\n    ], \n    \"CHW\": [\n        \"NNP\"\n    ], \n    \"rental\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dwight\": [\n        \"NNP\"\n    ], \n    \"gluttony\": [\n        \"NN\"\n    ], \n    \"tootley-toot-tootled\": [\n        \"VBN\"\n    ], \n    \"community-development\": [\n        \"NN\"\n    ], \n    \"swaying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"gluttons\": [\n        \"NNS\"\n    ], \n    \"Lureen\": [\n        \"NNP\"\n    ], \n    \"Foul\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"herald\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Newsreel\": [\n        \"NNP\"\n    ], \n    \"minutiae\": [\n        \"NNS\"\n    ], \n    \"occupation-as\": [\n        \"NN|IN\"\n    ], \n    \"noncompliance\": [\n        \"NN\"\n    ], \n    \"chanteuse\": [\n        \"NN\"\n    ], \n    \"junkloads\": [\n        \"NNS\"\n    ], \n    \"Frankfort\": [\n        \"NNP\"\n    ], \n    \"Carrel\": [\n        \"NNP\"\n    ], \n    \"two-weeks\": [\n        \"JJ\"\n    ], \n    \"juggling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Frankford\": [\n        \"NNP\"\n    ], \n    \"Derivative\": [\n        \"JJ\"\n    ], \n    \"mega-issues\": [\n        \"NNS\"\n    ], \n    \"lugged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pounce\": [\n        \"VB\"\n    ], \n    \"large\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"mandrel\": [\n        \"NN\"\n    ], \n    \"psychic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"crisis-oriented\": [\n        \"JJ\"\n    ], \n    \"sighing\": [\n        \"VBG\"\n    ], \n    \"aloneness\": [\n        \"NN\"\n    ], \n    \"laid\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"DeGregorio\": [\n        \"NNP\"\n    ], \n    \"lain\": [\n        \"VBN\"\n    ], \n    \"decision-making\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"carcass\": [\n        \"NN\"\n    ], \n    \"gimcracks\": [\n        \"NNS\"\n    ], \n    \"aforesaid\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"worse\": [\n        \"JJR\", \n        \"JJ\", \n        \"RBR\"\n    ], \n    \"disk-read\": [\n        \"JJ\"\n    ], \n    \"W\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"boosting\": [\n        \"VBG\"\n    ], \n    \"peaky\": [\n        \"JJ\"\n    ], \n    \"immigrated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Minnesotans\": [\n        \"NNPS\"\n    ], \n    \"joiner\": [\n        \"NN\"\n    ], \n    \"sods\": [\n        \"NNS\"\n    ], \n    \"Chain\": [\n        \"NN\"\n    ], \n    \"Argonauts\": [\n        \"NNPS\"\n    ], \n    \"longterm\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"conceding\": [\n        \"VBG\"\n    ], \n    \"filter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"city-wide\": [\n        \"JJ\"\n    ], \n    \"heck\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"smokers\": [\n        \"NNS\"\n    ], \n    \"soda\": [\n        \"NN\"\n    ], \n    \"Carefully\": [\n        \"RB\"\n    ], \n    \"Antarctic\": [\n        \"NNP\"\n    ], \n    \"Saucony\": [\n        \"NNP\"\n    ], \n    \"separable\": [\n        \"JJ\"\n    ], \n    \"Hoyte\": [\n        \"NNP\"\n    ], \n    \"marriageables\": [\n        \"NNS\"\n    ], \n    \"trade-magazine\": [\n        \"JJ\"\n    ], \n    \"seldom-stolen\": [\n        \"JJ\"\n    ], \n    \"officious\": [\n        \"JJ\"\n    ], \n    \"researcher\": [\n        \"NN\"\n    ], \n    \"attractions\": [\n        \"NNS\"\n    ], \n    \"primary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pre-paid\": [\n        \"VBD\"\n    ], \n    \"Jinny\": [\n        \"NNP\"\n    ], \n    \"inharmonious\": [\n        \"JJ\"\n    ], \n    \"Welby\": [\n        \"NNP\"\n    ], \n    \"Sainte-Chapelle\": [\n        \"NNP\"\n    ], \n    \"insulation\": [\n        \"NN\"\n    ], \n    \"Kwek\": [\n        \"NNP\"\n    ], \n    \"Gyrocompass\": [\n        \"NN\"\n    ], \n    \"Wimpy\": [\n        \"NNP\"\n    ], \n    \"researched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"rechristening\": [\n        \"VBG\"\n    ], \n    \"Congress\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"long-awaited\": [\n        \"JJ\"\n    ], \n    \"heights\": [\n        \"NNS\"\n    ], \n    \"confirming\": [\n        \"VBG\"\n    ], \n    \"ScheringPlough\": [\n        \"NN\"\n    ], \n    \"corpus\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Chevenement\": [\n        \"NNP\"\n    ], \n    \"frailest\": [\n        \"JJS\"\n    ], \n    \"illiterate\": [\n        \"JJ\"\n    ], \n    \"leaking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Flanagan\": [\n        \"NNP\"\n    ], \n    \"kindest\": [\n        \"JJS\"\n    ], \n    \"Borg-Warner\": [\n        \"NNP\"\n    ], \n    \"SH-11\": [\n        \"NNP\"\n    ], \n    \"Tanzman\": [\n        \"NNP\"\n    ], \n    \"Managed\": [\n        \"VBN\"\n    ], \n    \"prefecture\": [\n        \"NN\"\n    ], \n    \"unsaid\": [\n        \"JJ\"\n    ], \n    \"Wilcher\": [\n        \"NNP\"\n    ], \n    \"lip-sucking\": [\n        \"NN\"\n    ], \n    \"immigrants\": [\n        \"NNS\"\n    ], \n    \"tourists\": [\n        \"NNS\"\n    ], \n    \"X-MP\": [\n        \"NNP\"\n    ], \n    \"Apprehensively\": [\n        \"RB\"\n    ], \n    \"pre-tested\": [\n        \"VBN\"\n    ], \n    \"MacSharry\": [\n        \"NNP\"\n    ], \n    \"Seveso\": [\n        \"NNP\"\n    ], \n    \"market-corporate\": [\n        \"JJ\"\n    ], \n    \"Escort\": [\n        \"NNP\"\n    ], \n    \"Guillermin\": [\n        \"NNP\"\n    ], \n    \"Farmington\": [\n        \"NNP\"\n    ], \n    \"half-man\": [\n        \"NN\"\n    ], \n    \"most-influential\": [\n        \"JJ\"\n    ], \n    \"Tampa-based\": [\n        \"JJ\"\n    ], \n    \"net-like\": [\n        \"JJ\"\n    ], \n    \"SRESERVE\": [\n        \"NN\"\n    ], \n    \"Off-season\": [\n        \"JJ\"\n    ], \n    \"puritanical\": [\n        \"JJ\"\n    ], \n    \"Linwood\": [\n        \"NNP\"\n    ], \n    \"Erle\": [\n        \"NNP\"\n    ], \n    \"overallotment\": [\n        \"NN|JJ\"\n    ], \n    \"Sylvie\": [\n        \"NNP\"\n    ], \n    \"rodents\": [\n        \"NNS\"\n    ], \n    \"hatch\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"geographers\": [\n        \"NNS\"\n    ], \n    \"Gibbons\": [\n        \"NNP\"\n    ], \n    \"Meigher\": [\n        \"NNP\"\n    ], \n    \"Lenygon\": [\n        \"NNP\"\n    ], \n    \"Shafer\": [\n        \"NNP\"\n    ], \n    \"ProBody\": [\n        \"NNP\"\n    ], \n    \"energy-adjusted\": [\n        \"JJ\"\n    ], \n    \"Grasslands\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Shooter\": [\n        \"NNP\"\n    ], \n    \"SPWL\": [\n        \"NNP\"\n    ], \n    \"diversifying\": [\n        \"VBG\"\n    ], \n    \"mayoralty\": [\n        \"NN\"\n    ], \n    \"Ceilings\": [\n        \"NNS\"\n    ], \n    \"pressure-volume-temperature\": [\n        \"NN\"\n    ], \n    \"structively\": [\n        \"RB\"\n    ], \n    \"feint\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Paced\": [\n        \"VBN\"\n    ], \n    \"Warrens\": [\n        \"NNS\"\n    ], \n    \"promotions\": [\n        \"NNS\"\n    ], \n    \"potency\": [\n        \"NN\"\n    ], \n    \"Saved\": [\n        \"NNP\"\n    ], \n    \"Bourbons\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Voices\": [\n        \"NNS\"\n    ], \n    \"I.A.\": [\n        \"NN\"\n    ], \n    \"back-room\": [\n        \"NN\"\n    ], \n    \"Burdened\": [\n        \"VBN\"\n    ], \n    \"Mexico-United\": [\n        \"NNP\"\n    ], \n    \"Declares\": [\n        \"VBZ\"\n    ], \n    \"Giovanni\": [\n        \"NNP\"\n    ], \n    \"phenomenally\": [\n        \"RB\"\n    ], \n    \"registrants\": [\n        \"NNS\"\n    ], \n    \"Loomis\": [\n        \"NNP\"\n    ], \n    \"output-restricting\": [\n        \"JJ\"\n    ], \n    \"bait\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"medley\": [\n        \"NN\"\n    ], \n    \"Pro-Family\": [\n        \"NNP\"\n    ], \n    \"alight\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"confabulations\": [\n        \"NNS\"\n    ], \n    \"wedging\": [\n        \"VBG\"\n    ], \n    \"insurance-claims\": [\n        \"NNS\"\n    ], \n    \"Martinelli\": [\n        \"NNP\"\n    ], \n    \"colors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Heyward\": [\n        \"NNP\"\n    ], \n    \"Lunday\": [\n        \"NNP\"\n    ], \n    \"self-indulgent\": [\n        \"JJ\"\n    ], \n    \"bail\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"graded\": [\n        \"VBN\"\n    ], \n    \"Edict\": [\n        \"NNP\"\n    ], \n    \"thumbs-down\": [\n        \"NN\"\n    ], \n    \"spite\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"orienting\": [\n        \"VBG\"\n    ], \n    \"spits\": [\n        \"VBZ\"\n    ], \n    \"knuckle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Racketeering\": [\n        \"NNP\"\n    ], \n    \"Inter-american\": [\n        \"NNP\"\n    ], \n    \"Bengals-Browns\": [\n        \"JJ\"\n    ], \n    \"Finals\": [\n        \"NNS\"\n    ], \n    \"leasable\": [\n        \"JJ\"\n    ], \n    \"Anxiety\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pillorying\": [\n        \"VBG\"\n    ], \n    \"trillion-plus\": [\n        \"NN\"\n    ], \n    \"unhurried\": [\n        \"JJ\"\n    ], \n    \"skin-perceptiveness\": [\n        \"NN\"\n    ], \n    \"twentieth-century\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"despite\": [\n        \"IN\"\n    ], \n    \"U.S.that\": [\n        \"NN\"\n    ], \n    \"botanical\": [\n        \"JJ\"\n    ], \n    \"Matilda\": [\n        \"NNP\"\n    ], \n    \"Clanahan\": [\n        \"NNP\"\n    ], \n    \"Kagakushi\": [\n        \"NNP\"\n    ], \n    \"Moore\": [\n        \"NNP\"\n    ], \n    \"Kaldahl\": [\n        \"NNP\"\n    ], \n    \"anxiously\": [\n        \"RB\"\n    ], \n    \"Schoenfeld\": [\n        \"NNP\"\n    ], \n    \"commercialization\": [\n        \"NN\"\n    ], \n    \"pro-choice\": [\n        \"JJ\"\n    ], \n    \"Moors\": [\n        \"NNPS\"\n    ], \n    \"NagyAntal\": [\n        \"NNP\"\n    ], \n    \"C13532\": [\n        \"NNP\"\n    ], \n    \"Lamson\": [\n        \"NNP\"\n    ], \n    \"inter-agency\": [\n        \"JJ\"\n    ], \n    \"Guilherme\": [\n        \"NNP\"\n    ], \n    \"penance\": [\n        \"NN\"\n    ], \n    \"BPCA\": [\n        \"NNP\"\n    ], \n    \"Vineyard\": [\n        \"NNP\"\n    ], \n    \"Textile\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Excuses\": [\n        \"NNPS\"\n    ], \n    \"Ants\": [\n        \"NNS\"\n    ], \n    \"Pitching\": [\n        \"VBG\"\n    ], \n    \"disturbing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"UniHealth\": [\n        \"NNP\"\n    ], \n    \"Mathilde\": [\n        \"NNP\"\n    ], \n    \"jet-black\": [\n        \"NN\"\n    ], \n    \"Jean-Marie\": [\n        \"NNP\"\n    ], \n    \"feline\": [\n        \"JJ\"\n    ], \n    \"Utilities\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"continually\": [\n        \"RB\"\n    ], \n    \"grandmother\": [\n        \"NN\"\n    ], \n    \"discovers\": [\n        \"VBZ\"\n    ], \n    \"Anti\": [\n        \"NNP\"\n    ], \n    \"empower\": [\n        \"VBP\"\n    ], \n    \"discovery\": [\n        \"NN\"\n    ], \n    \"Roundup\": [\n        \"NNP\"\n    ], \n    \"Trek\": [\n        \"NNP\"\n    ], \n    \"Colored\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wide-grip\": [\n        \"JJ\"\n    ], \n    \"Tree\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"however\": [\n        \"RB\", \n        \"RBR\", \n        \"WRB\"\n    ], \n    \"relatonship\": [\n        \"NN\"\n    ], \n    \"Sambuca\": [\n        \"NNP\"\n    ], \n    \"cashiers\": [\n        \"NNS\"\n    ], \n    \"newt\": [\n        \"NN\"\n    ], \n    \"absorbent\": [\n        \"JJ\"\n    ], \n    \"Among\": [\n        \"IN\"\n    ], \n    \"Cruiser\": [\n        \"NNP\"\n    ], \n    \"Bucay\": [\n        \"NNP\"\n    ], \n    \"Tennant\": [\n        \"NNP\"\n    ], \n    \"mildly\": [\n        \"RB\"\n    ], \n    \"Roads\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"behaviors\": [\n        \"NNS\"\n    ], \n    \"smuggled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gay-rights\": [\n        \"NNS\"\n    ], \n    \"single-A-minus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"agitators\": [\n        \"NNS\"\n    ], \n    \"wretched\": [\n        \"JJ\"\n    ], \n    \"mild-voiced\": [\n        \"JJ\"\n    ], \n    \"Hengesbach\": [\n        \"NNP\"\n    ], \n    \"smuggler\": [\n        \"NN\"\n    ], \n    \"dissipating\": [\n        \"VBG\"\n    ], \n    \"palamedes\": [\n        \"NN\"\n    ], \n    \"padlocked\": [\n        \"VBD\"\n    ], \n    \"subscribing\": [\n        \"VBG\"\n    ], \n    \"conference\": [\n        \"NN\"\n    ], \n    \"break-in\": [\n        \"NN\"\n    ], \n    \"Literature\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"financial-data\": [\n        \"JJ\"\n    ], \n    \"seein\": [\n        \"VBG\"\n    ], \n    \"tour\\\\/theme\": [\n        \"NN\"\n    ], \n    \"credit-ratings\": [\n        \"NNS\"\n    ], \n    \"schoolroom\": [\n        \"NN\"\n    ], \n    \"moneymaking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"captives\": [\n        \"NNS\"\n    ], \n    \"Amway\": [\n        \"NNP\"\n    ], \n    \"Sakowitz\": [\n        \"NNP\"\n    ], \n    \"stepladders\": [\n        \"NNS\"\n    ], \n    \"Stallings\": [\n        \"NNP\"\n    ], \n    \"anchors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Revitalization\": [\n        \"NNP\"\n    ], \n    \"Zingggg-O\": [\n        \"UH\"\n    ], \n    \"Javanese\": [\n        \"JJ\"\n    ], \n    \"Alexandra\": [\n        \"NNP\"\n    ], \n    \"Alexandre\": [\n        \"NNP\"\n    ], \n    \"touch-starved\": [\n        \"JJ\"\n    ], \n    \"Sartoris\": [\n        \"NNP\"\n    ], \n    \"combos\": [\n        \"NNS\"\n    ], \n    \"Analytic\": [\n        \"NNP\"\n    ], \n    \"Grinten\": [\n        \"NNP\"\n    ], \n    \"multi-million\": [\n        \"JJ\"\n    ], \n    \"legislating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"batterie\": [\n        \"NN\"\n    ], \n    \"NAREB\": [\n        \"NNP\"\n    ], \n    \"BLACK\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Constructions\": [\n        \"NNP\"\n    ], \n    \"planking\": [\n        \"NN\"\n    ], \n    \"broth\": [\n        \"NN\"\n    ], \n    \"half-brother\": [\n        \"NN\"\n    ], \n    \"Corp.:8.50\": [\n        \"NNP\"\n    ], \n    \"Spokesman\": [\n        \"NNP\"\n    ], \n    \"sidestepped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Horses\": [\n        \"NNS\"\n    ], \n    \"mettwurst\": [\n        \"NN\"\n    ], \n    \"Nazar\": [\n        \"NNP\"\n    ], \n    \"forehead\": [\n        \"NN\"\n    ], \n    \"acetominophen\": [\n        \"NN\"\n    ], \n    \"drawback\": [\n        \"NN\"\n    ], \n    \"usurping\": [\n        \"VBG\"\n    ], \n    \"Nazal\": [\n        \"NNP\"\n    ], \n    \"Development\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"screw\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Paglieri\": [\n        \"NNP\"\n    ], \n    \"numerical\": [\n        \"JJ\"\n    ], \n    \"buyback\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"capital-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Junkers\": [\n        \"NNPS\"\n    ], \n    \"Beckworth\": [\n        \"NNP\"\n    ], \n    \"HPB\": [\n        \"NNP\"\n    ], \n    \"gemsbok\": [\n        \"NNS\"\n    ], \n    \"loblolly\": [\n        \"NN\"\n    ], \n    \"possessed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"endorsements\": [\n        \"NNS\"\n    ], \n    \"impediment\": [\n        \"NN\"\n    ], \n    \"SAMOS\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"admiringly\": [\n        \"RB\"\n    ], \n    \"Clothing\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"possesses\": [\n        \"VBZ\"\n    ], \n    \"leaguer\": [\n        \"NN\"\n    ], \n    \"leagues\": [\n        \"NNS\"\n    ], \n    \"rubies\": [\n        \"NNS\"\n    ], \n    \"departed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"proposed\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBP\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"Thevenot\": [\n        \"NNP\"\n    ], \n    \"Thevenow\": [\n        \"NNP\"\n    ], \n    \"bruise\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Credito\": [\n        \"NNP\"\n    ], \n    \"Forms\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"proposes\": [\n        \"VBZ\"\n    ], \n    \"Hegelian\": [\n        \"NNP\"\n    ], \n    \"leagued\": [\n        \"VBN\"\n    ], \n    \"orgone\": [\n        \"NN\"\n    ], \n    \"rivulets\": [\n        \"NNS\"\n    ], \n    \"scattering\": [\n        \"VBG\"\n    ], \n    \"Nicosia\": [\n        \"NNP\"\n    ], \n    \"enlighten\": [\n        \"VB\"\n    ], \n    \"bargain-priced\": [\n        \"JJ\"\n    ], \n    \"cherry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Conspicuously\": [\n        \"RB\"\n    ], \n    \"sub-human\": [\n        \"JJ\"\n    ], \n    \"Moisture\": [\n        \"NN\"\n    ], \n    \"Keefe\": [\n        \"NNP\"\n    ], \n    \"Debt\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"flavorings\": [\n        \"NNS\"\n    ], \n    \"farmsteads\": [\n        \"NNS\"\n    ], \n    \"DeMeo\": [\n        \"NNP\"\n    ], \n    \"low-VAT\": [\n        \"JJ\"\n    ], \n    \"skeptics\": [\n        \"NNS\"\n    ], \n    \"metaphorical\": [\n        \"JJ\"\n    ], \n    \"i860\": [\n        \"NN\"\n    ], \n    \"Nadja\": [\n        \"NNP\"\n    ], \n    \"burne\": [\n        \"VB\"\n    ], \n    \"flattish\": [\n        \"JJ\"\n    ], \n    \"Factoring\": [\n        \"NN\"\n    ], \n    \"first-base\": [\n        \"JJ\"\n    ], \n    \"go-getters\": [\n        \"NNS\"\n    ], \n    \"mini-revolution\": [\n        \"NN\"\n    ], \n    \"burns\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"burnt\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"rumor\": [\n        \"NN\"\n    ], \n    \"Munsters\": [\n        \"NNPS\"\n    ], \n    \"Heart\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Relevant\": [\n        \"JJ\"\n    ], \n    \"peeved\": [\n        \"VBN\"\n    ], \n    \"mansions\": [\n        \"NNS\"\n    ], \n    \"zeal\": [\n        \"NN\"\n    ], \n    \"contradict\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Probhat\": [\n        \"NNP\"\n    ], \n    \"Topic\": [\n        \"NNP\"\n    ], \n    \"Heard\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"peeves\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"broadcaster\": [\n        \"NN\"\n    ], \n    \"pursues\": [\n        \"VBZ\"\n    ], \n    \"uninterruptable\": [\n        \"JJ\"\n    ], \n    \"Nelson-Atkins\": [\n        \"NNP\"\n    ], \n    \"reams\": [\n        \"NNS\"\n    ], \n    \"Hearn\": [\n        \"NNP\"\n    ], \n    \"nuclear-weapons\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Fitzwilliams\": [\n        \"NNP\"\n    ], \n    \"Again\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Merchants\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Topix\": [\n        \"NNP\"\n    ], \n    \"stringing\": [\n        \"VBG\"\n    ], \n    \"Quyney\": [\n        \"NN\"\n    ], \n    \"left-front\": [\n        \"JJ\"\n    ], \n    \"freer-spending\": [\n        \"JJ\"\n    ], \n    \"LaBella\": [\n        \"NNP\"\n    ], \n    \"clucks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Piovra\": [\n        \"FW\"\n    ], \n    \"usher\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Waertsilae\": [\n        \"NNP\"\n    ], \n    \"Plates\": [\n        \"NNS\"\n    ], \n    \"peacemaker\": [\n        \"NN\"\n    ], \n    \"contests\": [\n        \"NNS\"\n    ], \n    \"rapidity\": [\n        \"NN\"\n    ], \n    \"Luksik\": [\n        \"NNP\"\n    ], \n    \"Strokes\": [\n        \"NNS\"\n    ], \n    \"Biscayne\": [\n        \"NNP\"\n    ], \n    \"rhino\": [\n        \"NN\"\n    ], \n    \"newsprint\": [\n        \"NN\"\n    ], \n    \"Mankind\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kayoed\": [\n        \"VBN\"\n    ], \n    \"Burnside\": [\n        \"NNP\"\n    ], \n    \"Accepted\": [\n        \"JJ\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Stroked\": [\n        \"VBD\"\n    ], \n    \"deleted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"brawl\": [\n        \"NN\"\n    ], \n    \"Brodsky\": [\n        \"NNP\"\n    ], \n    \"newcomer\": [\n        \"NN\"\n    ], \n    \"Deposit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"menopause\": [\n        \"NN\"\n    ], \n    \"sangaree\": [\n        \"NN\"\n    ], \n    \"Mello\": [\n        \"NNP\"\n    ], \n    \"oversaturating\": [\n        \"VBG\"\n    ], \n    \"Dryer\": [\n        \"NN\"\n    ], \n    \"Hewlett-Packard\": [\n        \"NNP\"\n    ], \n    \"Hershhenson\": [\n        \"NNP\"\n    ], \n    \"choke\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"dinner\": [\n        \"NN\"\n    ], \n    \"ensure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"inveigh\": [\n        \"VBP\"\n    ], \n    \"ownself\": [\n        \"PRP\"\n    ], \n    \"Bolinder\": [\n        \"NNP\"\n    ], \n    \"Planters\": [\n        \"NNP\"\n    ], \n    \"dials\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Meryl\": [\n        \"NNP\"\n    ], \n    \"Diamanti\": [\n        \"NNP\"\n    ], \n    \"lavishly\": [\n        \"RB\"\n    ], \n    \"long-cherished\": [\n        \"JJ\"\n    ], \n    \"obscene\": [\n        \"JJ\"\n    ], \n    \"bath\": [\n        \"NN\"\n    ], \n    \"bats\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Steinbergs\": [\n        \"NNP\"\n    ], \n    \"aircraft-test\": [\n        \"JJ\"\n    ], \n    \"Gencor\": [\n        \"NNP\"\n    ], \n    \"pampers\": [\n        \"VBZ\"\n    ], \n    \"Confidently\": [\n        \"RB\"\n    ], \n    \"anorexia\": [\n        \"NN\"\n    ], \n    \"INDUSTRIES\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"infidelity\": [\n        \"NN\"\n    ], \n    \"Stotler\": [\n        \"NNP\"\n    ], \n    \"foisted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Amen\": [\n        \"UH\", \n        \"FW\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"fuel-injected\": [\n        \"JJ\"\n    ], \n    \"destabilize\": [\n        \"VB\"\n    ], \n    \"Amee\": [\n        \"NNP\"\n    ], \n    \"timelier\": [\n        \"JJR\"\n    ], \n    \"Amex\": [\n        \"NNP\"\n    ], \n    \"striding\": [\n        \"VBG\"\n    ], \n    \"JUMPING\": [\n        \"NNP\"\n    ], \n    \"pamphleteer\": [\n        \"NN\"\n    ], \n    \"Centoxin\": [\n        \"NNP\"\n    ], \n    \"Mantua\": [\n        \"NNP\"\n    ], \n    \"Ames\": [\n        \"NNP\"\n    ], \n    \"Amer\": [\n        \"NNP\"\n    ], \n    \"Infamous\": [\n        \"NNP\"\n    ], \n    \"amateur\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"GMC\": [\n        \"NNP\"\n    ], \n    \"excerpt\": [\n        \"NN\"\n    ], \n    \"GMA\": [\n        \"NNP\"\n    ], \n    \"bottlenecks\": [\n        \"NNS\"\n    ], \n    \"Lemuel\": [\n        \"NNP\"\n    ], \n    \"payable\": [\n        \"JJ\"\n    ], \n    \"Hardest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"liveliest\": [\n        \"JJS\"\n    ], \n    \"Outhwaite\": [\n        \"NNP\"\n    ], \n    \"housing-loan\": [\n        \"NN\"\n    ], \n    \"selectivity\": [\n        \"NN\"\n    ], \n    \"barrio\": [\n        \"NN\"\n    ], \n    \"animosity...\": [\n        \":\"\n    ], \n    \"Brevet\": [\n        \"NNP\"\n    ], \n    \"Observer\": [\n        \"NNP\"\n    ], \n    \"Vom\": [\n        \"NNP\"\n    ], \n    \"Von\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Tensing\": [\n        \"NNP\"\n    ], \n    \"Mikeen\": [\n        \"NNP\"\n    ], \n    \"loitering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"encumber\": [\n        \"VB\"\n    ], \n    \"Swissmade\": [\n        \"JJ\"\n    ], \n    \"GMr\": [\n        \"NN\"\n    ], \n    \"Westcoast\": [\n        \"NNP\"\n    ], \n    \"panicky\": [\n        \"JJ\"\n    ], \n    \"flame-throwers\": [\n        \"NNS\"\n    ], \n    \"Deseret\": [\n        \"NNP\"\n    ], \n    \"Maxus\": [\n        \"NNP\"\n    ], \n    \"levity\": [\n        \"NN\"\n    ], \n    \"liberalism\": [\n        \"NN\"\n    ], \n    \"Adios-Rena\": [\n        \"NNP\"\n    ], \n    \"no-new-taxes\": [\n        \"JJ\"\n    ], \n    \"self-protection\": [\n        \"NN\"\n    ], \n    \"pledging\": [\n        \"VBG\"\n    ], \n    \"innovators...\": [\n        \":\"\n    ], \n    \"anti-foreign\": [\n        \"JJ\"\n    ], \n    \"when\": [\n        \"WRB\", \n        \"IN\"\n    ], \n    \"oratio\": [\n        \"FW\"\n    ], \n    \"Blaise\": [\n        \"NNP\"\n    ], \n    \"suitably-loaded\": [\n        \"JJ\"\n    ], \n    \"Lamentation\": [\n        \"NNP\"\n    ], \n    \"soundly\": [\n        \"RB\"\n    ], \n    \"plumbed\": [\n        \"VBD\"\n    ], \n    \"government-backed\": [\n        \"JJ\"\n    ], \n    \"undeniably\": [\n        \"RB\"\n    ], \n    \"Blueprints\": [\n        \"VBZ\"\n    ], \n    \"Buber\": [\n        \"NNP\"\n    ], \n    \"tasteful\": [\n        \"JJ\"\n    ], \n    \"suppers\": [\n        \"NNS\"\n    ], \n    \"liquidate\": [\n        \"VB\"\n    ], \n    \"Part-time\": [\n        \"JJ\"\n    ], \n    \"Contrasted\": [\n        \"VBN\"\n    ], \n    \"top...\": [\n        \":\"\n    ], \n    \"mark-yen\": [\n        \"JJ\"\n    ], \n    \"after-run\": [\n        \"JJ\"\n    ], \n    \"sacks\": [\n        \"NNS\"\n    ], \n    \"Boorstyn\": [\n        \"NNP\"\n    ], \n    \"Barrah\": [\n        \"NNP\"\n    ], \n    \"domestic-demand\": [\n        \"JJ\"\n    ], \n    \"Sergiusz\": [\n        \"NNP\"\n    ], \n    \"forgoes\": [\n        \"VBZ\"\n    ], \n    \"ground-swell\": [\n        \"NN\"\n    ], \n    \"Crowntuft\": [\n        \"NNP\"\n    ], \n    \"Peoria\": [\n        \"NNP\"\n    ], \n    \"Welles\": [\n        \"NNP\"\n    ], \n    \"Weller\": [\n        \"NNP\"\n    ], \n    \"epicyclically\": [\n        \"RB\"\n    ], \n    \"trickle\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"resource-wasting\": [\n        \"JJ\"\n    ], \n    \"rooters\": [\n        \"NNS\"\n    ], \n    \"tripartite\": [\n        \"JJ\"\n    ], \n    \"Nazarova\": [\n        \"NNP\"\n    ], \n    \"microbiologist\": [\n        \"NN\"\n    ], \n    \"Schwarzenberger\": [\n        \"NNP\"\n    ], \n    \"contraventions\": [\n        \"NNS\"\n    ], \n    \"British-born\": [\n        \"JJ\"\n    ], \n    \"Fatima\": [\n        \"NNP\"\n    ], \n    \"clarification\": [\n        \"NN\"\n    ], \n    \"Truly\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"sequestered\": [\n        \"VBN\"\n    ], \n    \"Regrettably\": [\n        \"RB\"\n    ], \n    \"durable-goods\": [\n        \"NNS\"\n    ], \n    \"Flavell\": [\n        \"NNP\"\n    ], \n    \"MK-Ferguson\": [\n        \"NNP\"\n    ], \n    \"Bowdoin\": [\n        \"NNP\"\n    ], \n    \"airlift\": [\n        \"NN\"\n    ], \n    \"stake-out\": [\n        \"NN\"\n    ], \n    \"widthwise\": [\n        \"RB\"\n    ], \n    \"unfamiliar\": [\n        \"JJ\"\n    ], \n    \"Sonet\": [\n        \"NNP\"\n    ], \n    \"Keyes\": [\n        \"NNP\"\n    ], \n    \"Swiss-born\": [\n        \"JJ\"\n    ], \n    \"ritzy\": [\n        \"JJ\"\n    ], \n    \"Delia\": [\n        \"NNP\"\n    ], \n    \"Methuselahs\": [\n        \"NNPS\"\n    ], \n    \"well-experienced\": [\n        \"JJ\"\n    ], \n    \"clouds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"impressive\": [\n        \"JJ\"\n    ], \n    \"level\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Vrilium\": [\n        \"NNP\"\n    ], \n    \"posts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"likens\": [\n        \"VBZ\"\n    ], \n    \"Delio\": [\n        \"NNP\"\n    ], \n    \"Inspectorate-Adia\": [\n        \"NNP\"\n    ], \n    \"Purely\": [\n        \"RB\"\n    ], \n    \"domestically\": [\n        \"RB\"\n    ], \n    \"decorativeness\": [\n        \"NN\"\n    ], \n    \"bisque\": [\n        \"NN\"\n    ], \n    \"Debate\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"tenths\": [\n        \"NNS\"\n    ], \n    \"Enthusiast\": [\n        \"NNP\"\n    ], \n    \"pork\": [\n        \"NN\"\n    ], \n    \"Flaum\": [\n        \"NNP\"\n    ], \n    \"tougher\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"industrialists\": [\n        \"NNS\"\n    ], \n    \"injunction\": [\n        \"NN\"\n    ], \n    \"pore\": [\n        \"NN\"\n    ], \n    \"deflating\": [\n        \"VBG\"\n    ], \n    \"Carolinian\": [\n        \"NNP\"\n    ], \n    \"Ledyard\": [\n        \"NNP\"\n    ], \n    \"catapulted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Enthusiasm\": [\n        \"NN\"\n    ], \n    \"twin-engine\": [\n        \"JJ\"\n    ], \n    \"toughen\": [\n        \"VB\"\n    ], \n    \"bales\": [\n        \"NNS\"\n    ], \n    \"port\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"card-activated\": [\n        \"JJ\"\n    ], \n    \"Kunashir\": [\n        \"NNP\"\n    ], \n    \"Fathi\": [\n        \"NNP\"\n    ], \n    \"high-level\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"reelection\": [\n        \"NN\"\n    ], \n    \"stately\": [\n        \"JJ\"\n    ], \n    \"HEXCEL\": [\n        \"NNP\"\n    ], \n    \"self-pitying\": [\n        \"JJ\"\n    ], \n    \"Merigan\": [\n        \"NNP\"\n    ], \n    \"announcment\": [\n        \"NN\"\n    ], \n    \"Aprile\": [\n        \"NNP\"\n    ], \n    \"per-store\": [\n        \"JJ\"\n    ], \n    \"Apology\": [\n        \"NNP\"\n    ], \n    \"Senesac\": [\n        \"NNP\"\n    ], \n    \"EMPLOYEES\": [\n        \"NNS\"\n    ], \n    \"entertain\": [\n        \"VB\"\n    ], \n    \"three-round\": [\n        \"JJ\"\n    ], \n    \"WGP\": [\n        \"NNP\"\n    ], \n    \"mockups\": [\n        \"NNS\"\n    ], \n    \"Abbett\": [\n        \"NNP\"\n    ], \n    \"demolishing\": [\n        \"VBG\"\n    ], \n    \"pyorrhea\": [\n        \"NN\"\n    ], \n    \"upward-mobile\": [\n        \"JJ\"\n    ], \n    \"Hatfield\": [\n        \"NNP\"\n    ], \n    \"exams\": [\n        \"NNS\"\n    ], \n    \"Francesco\": [\n        \"NNP\"\n    ], \n    \"Francesca\": [\n        \"NNP\"\n    ], \n    \"hand-delivered\": [\n        \"JJ\"\n    ], \n    \"Trafficking\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"videocameras\": [\n        \"NNS\"\n    ], \n    \"CROWDED\": [\n        \"JJ\"\n    ], \n    \"tuxedo\": [\n        \"NN\"\n    ], \n    \"sympathique\": [\n        \"FW\"\n    ], \n    \"Languages\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"tax-payment\": [\n        \"NN\"\n    ], \n    \"bribery\": [\n        \"NN\"\n    ], \n    \"Therefore\": [\n        \"RB\", \n        \"CC\"\n    ], \n    \"bribers\": [\n        \"NNS\"\n    ], \n    \"scam\": [\n        \"NN\"\n    ], \n    \"Sanders\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Cupboard\": [\n        \"NN\"\n    ], \n    \"life-threatening\": [\n        \"JJ\"\n    ], \n    \"neuropsychiatric\": [\n        \"JJ\"\n    ], \n    \"Hoffa\": [\n        \"NNP\"\n    ], \n    \"Aktiengesellschaft\": [\n        \"NNP\"\n    ], \n    \"undersea\": [\n        \"JJ\"\n    ], \n    \"diagrams\": [\n        \"NNS\"\n    ], \n    \"roared\": [\n        \"VBD\"\n    ], \n    \"Hunterdon\": [\n        \"NNP\"\n    ], \n    \"survivalist\": [\n        \"NN\"\n    ], \n    \"diurnal\": [\n        \"JJ\"\n    ], \n    \"Opera\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Opere\": [\n        \"NNP\"\n    ], \n    \"turbine-generators\": [\n        \"NNS\"\n    ], \n    \"NKK\": [\n        \"NNP\"\n    ], \n    \"teaser\": [\n        \"NN\"\n    ], \n    \"power-plant\": [\n        \"NN\"\n    ], \n    \"Charter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ahrens\": [\n        \"NNP\"\n    ], \n    \"edible\": [\n        \"JJ\"\n    ], \n    \"Barter\": [\n        \"NN\"\n    ], \n    \"Dakin\": [\n        \"NNP\"\n    ], \n    \"Ameaux\": [\n        \"NNP\"\n    ], \n    \"Harford\": [\n        \"NNP\"\n    ], \n    \"Bannister\": [\n        \"NNP\"\n    ], \n    \"IBM-oriented\": [\n        \"JJ\"\n    ], \n    \"Wrap\": [\n        \"NNP\"\n    ], \n    \"druncke\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Nonfinancial\": [\n        \"JJ\"\n    ], \n    \"Ground\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pent-up\": [\n        \"JJ\"\n    ], \n    \"nursing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Integration\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Topton\": [\n        \"NNP\"\n    ], \n    \"avocation\": [\n        \"NN\"\n    ], \n    \"Plainfield\": [\n        \"NNP\"\n    ], \n    \"Felske\": [\n        \"NNP\"\n    ], \n    \"Noble\": [\n        \"NNP\"\n    ], \n    \"Acropolis\": [\n        \"NNP\"\n    ], \n    \"Grassley\": [\n        \"NNP\"\n    ], \n    \"sailboat\": [\n        \"NN\"\n    ], \n    \"co-market\": [\n        \"VB\"\n    ], \n    \"all-new\": [\n        \"JJ\"\n    ], \n    \"interference-like\": [\n        \"JJ\"\n    ], \n    \"vital\": [\n        \"JJ\"\n    ], \n    \"Blair\": [\n        \"NNP\"\n    ], \n    \"Aljian\": [\n        \"NNP\"\n    ], \n    \"vitae\": [\n        \"NN\"\n    ], \n    \"husbandry\": [\n        \"NN\"\n    ], \n    \"deification\": [\n        \"NN\"\n    ], \n    \"Tank\": [\n        \"NNP\"\n    ], \n    \"Macklin\": [\n        \"NNP\"\n    ], \n    \"big-stakes\": [\n        \"JJ\"\n    ], \n    \"Valeri\": [\n        \"NNP\"\n    ], \n    \"Valero\": [\n        \"NNP\"\n    ], \n    \"Tana\": [\n        \"NNP\"\n    ], \n    \"flattens\": [\n        \"VBZ\"\n    ], \n    \"Beesemyers\": [\n        \"NNP\"\n    ], \n    \"Carlucci\": [\n        \"NNP\"\n    ], \n    \"PRICES\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Bromfield\": [\n        \"NNP\"\n    ], \n    \"Olerichs\": [\n        \"NNPS\"\n    ], \n    \"Pinar\": [\n        \"NNP\"\n    ], \n    \"Gelbart\": [\n        \"NNP\"\n    ], \n    \"syndicates\": [\n        \"NNS\"\n    ], \n    \"reaped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Burning\": [\n        \"VBG\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"self-delusion\": [\n        \"NN\"\n    ], \n    \"value-investing\": [\n        \"JJ\"\n    ], \n    \"quarter-of-a-century\": [\n        \"JJ\"\n    ], \n    \"inform\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"reaper\": [\n        \"NN\"\n    ], \n    \"syndicated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Operating-system\": [\n        \"JJ\"\n    ], \n    \"representation\": [\n        \"NN\"\n    ], \n    \"Yankee-come-lately\": [\n        \"JJ\"\n    ], \n    \"lamented\": [\n        \"VBD\"\n    ], \n    \"hassled\": [\n        \"VBN\"\n    ], \n    \"Aros\": [\n        \"NNP\"\n    ], \n    \"fallout\": [\n        \"NN\"\n    ], \n    \"Hunting\": [\n        \"NN\"\n    ], \n    \"chicken-and-egg\": [\n        \"JJ\"\n    ], \n    \"magistrate\": [\n        \"NN\"\n    ], \n    \"retools\": [\n        \"VBZ\"\n    ], \n    \"CONTINENTAL\": [\n        \"NNP\"\n    ], \n    \"imitative\": [\n        \"JJ\"\n    ], \n    \"donates\": [\n        \"VBZ\"\n    ], \n    \"Klejna\": [\n        \"NNP\"\n    ], \n    \"Lopid\": [\n        \"NNP\"\n    ], \n    \"Higher\": [\n        \"JJR\", \n        \"NNP\"\n    ], \n    \"Selig\": [\n        \"NNP\"\n    ], \n    \"demeans\": [\n        \"VBZ\"\n    ], \n    \"intervenors\": [\n        \"NNS\"\n    ], \n    \"Hazardous\": [\n        \"JJ\"\n    ], \n    \"extremis\": [\n        \"FW\"\n    ], \n    \"Anson\": [\n        \"NN\"\n    ], \n    \"amelioration\": [\n        \"NN\"\n    ], \n    \"barristers\": [\n        \"NNS\"\n    ], \n    \"Augusto\": [\n        \"NNP\"\n    ], \n    \"qualifies\": [\n        \"VBZ\"\n    ], \n    \"bouffe\": [\n        \"NN\"\n    ], \n    \"Cyclades\": [\n        \"NNS\"\n    ], \n    \"turtlebacks\": [\n        \"NNS\"\n    ], \n    \"Augusta\": [\n        \"NNP\"\n    ], \n    \"Supermarkets\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Rome\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rivaling\": [\n        \"VBG\"\n    ], \n    \"refrigerated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Roma\": [\n        \"NNP\"\n    ], \n    \"A.V.\": [\n        \"NNP\"\n    ], \n    \"Romm\": [\n        \"NNP\"\n    ], \n    \"porters\": [\n        \"NNS\"\n    ], \n    \"gushing\": [\n        \"VBG\"\n    ], \n    \"escorting\": [\n        \"VBG\"\n    ], \n    \"Infant\": [\n        \"JJ\"\n    ], \n    \"stabilize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lindemann\": [\n        \"NNP\"\n    ], \n    \"debating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"donated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"eighties\": [\n        \"NNS\"\n    ], \n    \"wanting-to-be-alone\": [\n        \"JJ\"\n    ], \n    \"cornerstones\": [\n        \"NNS\"\n    ], \n    \"Flagg\": [\n        \"NNP\"\n    ], \n    \"dishing\": [\n        \"VBG\"\n    ], \n    \"busts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lambastes\": [\n        \"VBZ\"\n    ], \n    \"dissenting\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"tidily\": [\n        \"RB\"\n    ], \n    \"third-selling\": [\n        \"JJ\"\n    ], \n    \"lambasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Devine\": [\n        \"NNP\"\n    ], \n    \"Valais\": [\n        \"NNP\"\n    ], \n    \"unrestrictedly\": [\n        \"RB\"\n    ], \n    \"Finder\": [\n        \"NNP\"\n    ], \n    \"long-stemmed\": [\n        \"JJ\"\n    ], \n    \"Wheat\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"intercourse\": [\n        \"NN\"\n    ], \n    \"Gandy\": [\n        \"NNP\"\n    ], \n    \"uncannily\": [\n        \"RB\"\n    ], \n    \"liveliness\": [\n        \"NN\"\n    ], \n    \"Barbier-Mueller\": [\n        \"NNP\"\n    ], \n    \"Jager\": [\n        \"NNP\"\n    ], \n    \"landfilling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"committeemen\": [\n        \"NNS\"\n    ], \n    \"Five-O\": [\n        \"NNP\"\n    ], \n    \"Snedeker\": [\n        \"NNP\"\n    ], \n    \"Samsung\": [\n        \"NNP\"\n    ], \n    \"unsolder\": [\n        \"VB\"\n    ], \n    \"dispatched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"LaBoon\": [\n        \"NNP\"\n    ], \n    \"Babson\": [\n        \"NNP\"\n    ], \n    \"Felipe\": [\n        \"NNP\"\n    ], \n    \"Vocabularianism\": [\n        \"NNP\"\n    ], \n    \"telepathy\": [\n        \"NN\"\n    ], \n    \"dispatches\": [\n        \"NNS\"\n    ], \n    \"manikin\": [\n        \"NN\"\n    ], \n    \"Widen\": [\n        \"VB\"\n    ], \n    \"live-in\": [\n        \"JJ\"\n    ], \n    \"Spear\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"referent\": [\n        \"NN\"\n    ], \n    \"Franconia\": [\n        \"NNP\"\n    ], \n    \"pandemic\": [\n        \"NN\"\n    ], \n    \"Sign\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"turn\": [\n        \"VB\", \n        \"NN\", \n        \"RB\", \n        \"VBP\"\n    ], \n    \"handicrafts\": [\n        \"NNS\"\n    ], \n    \"Anticipating\": [\n        \"VBG\"\n    ], \n    \"cafes\": [\n        \"NNS\"\n    ], \n    \"Wider\": [\n        \"JJR\"\n    ], \n    \"turf\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gordan\": [\n        \"NNP\"\n    ], \n    \"Ferrero\": [\n        \"NNP\"\n    ], \n    \"Speak\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"BOD1,000\": [\n        \"NN\"\n    ], \n    \"market-driven\": [\n        \"JJ\"\n    ], \n    \"milk-supply\": [\n        \"NN\"\n    ], \n    \"spiralled\": [\n        \"VBD\"\n    ], \n    \"accruing\": [\n        \"VBG\"\n    ], \n    \"toughest-ever\": [\n        \"JJS\"\n    ], \n    \"Eubank\": [\n        \"NNP\"\n    ], \n    \"Horowitz\": [\n        \"NNP\"\n    ], \n    \"zinc-strip\": [\n        \"JJ\"\n    ], \n    \"Mon-Columbia\": [\n        \"NNP\"\n    ], \n    \"cheerfully\": [\n        \"RB\"\n    ], \n    \"Break\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Leach\": [\n        \"NNP\"\n    ], \n    \"action-packed\": [\n        \"JJ\"\n    ], \n    \"Bombeck\": [\n        \"NNP\"\n    ], \n    \"containerized-cargo\": [\n        \"NN\"\n    ], \n    \"Commercial\": [\n        \"NNP\", \n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"insulins\": [\n        \"NNS\"\n    ], \n    \"charge-offs...\": [\n        \":\"\n    ], \n    \"fortuitous\": [\n        \"JJ\"\n    ], \n    \"high-legged\": [\n        \"JJ\"\n    ], \n    \"Gauntley\": [\n        \"NNP\"\n    ], \n    \"Phoenician\": [\n        \"JJ\"\n    ], \n    \"HIGHER\": [\n        \"JJR\"\n    ], \n    \"IMA\": [\n        \"NNP\"\n    ], \n    \"Airpark\": [\n        \"NNP\"\n    ], \n    \"Upchurch\": [\n        \"NNP\"\n    ], \n    \"IMF\": [\n        \"NNP\"\n    ], \n    \"Brendan\": [\n        \"NNP\"\n    ], \n    \"IMO\": [\n        \"NNP\"\n    ], \n    \"Dowling\": [\n        \"NNP\"\n    ], \n    \"IMS\": [\n        \"NNP\"\n    ], \n    \"enigma\": [\n        \"NN\"\n    ], \n    \"Minister\": [\n        \"NNP\"\n    ], \n    \"affiliating\": [\n        \"VBG\"\n    ], \n    \"Five-Elements\": [\n        \"NNP\"\n    ], \n    \"Runtagh\": [\n        \"NNP\"\n    ], \n    \"reinforce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"branch-by-branch\": [\n        \"RB\"\n    ], \n    \"Sears\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"computer\": [\n        \"NN\"\n    ], \n    \"Brake\": [\n        \"NNP\"\n    ], \n    \"bigticket\": [\n        \"NN\"\n    ], \n    \"unsatisfactorily\": [\n        \"RB\"\n    ], \n    \"Jaross\": [\n        \"NNP\"\n    ], \n    \"Pottawatomie\": [\n        \"NNP\"\n    ], \n    \"technology-licensing\": [\n        \"JJ\"\n    ], \n    \"Fails\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"once-over\": [\n        \"NN\"\n    ], \n    \"Tora\": [\n        \"NNP\"\n    ], \n    \"Toro\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bolanos\": [\n        \"NNP\"\n    ], \n    \"Tort\": [\n        \"NNP\"\n    ], \n    \"pastime\": [\n        \"NN\"\n    ], \n    \"Fishman\": [\n        \"NNP\"\n    ], \n    \"Clurman\": [\n        \"NNP\"\n    ], \n    \"EMPIRE\": [\n        \"NNP\"\n    ], \n    \"Tory\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"astonishingly\": [\n        \"RB\"\n    ], \n    \"wanderer\": [\n        \"NN\"\n    ], \n    \"Drift\": [\n        \"NNP\"\n    ], \n    \"Bravado\": [\n        \"NNP\"\n    ], \n    \"Cattrall\": [\n        \"NNP\"\n    ], \n    \"wandered\": [\n        \"VBD\"\n    ], \n    \"X-Tru-Coat\": [\n        \"NNP\"\n    ], \n    \"animation\": [\n        \"NN\"\n    ], \n    \"Spaulding\": [\n        \"NNP\"\n    ], \n    \"resembling\": [\n        \"VBG\"\n    ], \n    \"tambourine\": [\n        \"NN\"\n    ], \n    \"improvisations\": [\n        \"NNS\"\n    ], \n    \"surf\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"sure\": [\n        \"JJ\", \n        \"PDT\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"Dealers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"adversities\": [\n        \"NNS\"\n    ], \n    \"indelible\": [\n        \"JJ\"\n    ], \n    \"Hebrew\": [\n        \"NNP\"\n    ], \n    \"donation\": [\n        \"NN\"\n    ], \n    \"Montfaucon\": [\n        \"NNP\"\n    ], \n    \"Francoisette\": [\n        \"NNP\"\n    ], \n    \"COVERAGE\": [\n        \"NNP\"\n    ], \n    \"surmised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Taxi\": [\n        \"NN\"\n    ], \n    \"autonomic-somatic\": [\n        \"JJ\"\n    ], \n    \"tax-overhaul\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"latex\": [\n        \"NN\"\n    ], \n    \"Antioquia\": [\n        \"NNP\"\n    ], \n    \"NRL\": [\n        \"NNP\"\n    ], \n    \"NRC\": [\n        \"NNP\"\n    ], \n    \"NRA\": [\n        \"NNP\"\n    ], \n    \"later\": [\n        \"RB\", \n        \"JJ\", \n        \"RP\", \n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Ventilation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"beaded\": [\n        \"VBN\"\n    ], \n    \"Prodded\": [\n        \"VBN\"\n    ], \n    \"Bolinas\": [\n        \"NNP\"\n    ], \n    \"Schick\": [\n        \"NNP\"\n    ], \n    \"Sportswear\": [\n        \"NNP\"\n    ], \n    \"uninterested\": [\n        \"JJ\"\n    ], \n    \"urge\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"often-ignored\": [\n        \"JJ\"\n    ], \n    \"bulked-up\": [\n        \"JJ\"\n    ], \n    \"reinvigorate\": [\n        \"VB\"\n    ], \n    \"pursuant\": [\n        \"JJ\"\n    ], \n    \"Vermont-based\": [\n        \"JJ\"\n    ], \n    \"dirge\": [\n        \"NN\"\n    ], \n    \"semi-literate\": [\n        \"JJ\"\n    ], \n    \"Anthropic\": [\n        \"NNP\"\n    ], \n    \"Cornish\": [\n        \"NNP\"\n    ], \n    \"Gaylord\": [\n        \"NNP\"\n    ], \n    \"nadir\": [\n        \"NN\"\n    ], \n    \"gulf\": [\n        \"NN\"\n    ], \n    \"Saddam\": [\n        \"NNP\"\n    ], \n    \"Convincing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"gulp\": [\n        \"NN\"\n    ], \n    \"crimps\": [\n        \"VBZ\"\n    ], \n    \"J/NNP.J/NNP.A.\": [\n        \"NN\"\n    ], \n    \"glandular\": [\n        \"JJ\"\n    ], \n    \"Non-``\": [\n        \"``\"\n    ], \n    \"Mass\\\\/Amherst\": [\n        \"NNP\"\n    ], \n    \"Gaja\": [\n        \"NNP\"\n    ], \n    \"wistful\": [\n        \"JJ\"\n    ], \n    \"Preliminary\": [\n        \"JJ\"\n    ], \n    \"Edythe\": [\n        \"NNP\"\n    ], \n    \"Techcorps\": [\n        \"NNP\"\n    ], \n    \"homestead\": [\n        \"NN\"\n    ], \n    \"Acclaim\": [\n        \"NNP\"\n    ], \n    \"closed-end\": [\n        \"JJ\"\n    ], \n    \"doble\": [\n        \"NN\"\n    ], \n    \"outperform\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"African-controlled\": [\n        \"JJ\"\n    ], \n    \"Denise\": [\n        \"NNP\"\n    ], \n    \"barbaric\": [\n        \"JJ\"\n    ], \n    \"Nell\": [\n        \"NNP\"\n    ], \n    \"commercial-loan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Clueless\": [\n        \"NNP\"\n    ], \n    \"artworks\": [\n        \"NNS\"\n    ], \n    \"egotism\": [\n        \"NN\"\n    ], \n    \"T-cell\": [\n        \"NN\"\n    ], \n    \"slashing\": [\n        \"VBG\"\n    ], \n    \"Taschereau\": [\n        \"NNP\"\n    ], \n    \"ball-carriers\": [\n        \"NNS\"\n    ], \n    \"back-end\": [\n        \"JJ\"\n    ], \n    \"Vigorous\": [\n        \"JJ\"\n    ], \n    \"voluntary\": [\n        \"JJ\"\n    ], \n    \"Tsitouris\": [\n        \"NNP\"\n    ], \n    \"illusionary\": [\n        \"JJ\"\n    ], \n    \"Portico\": [\n        \"NNP\"\n    ], \n    \"remote-controlled\": [\n        \"JJ\"\n    ], \n    \"Kenney\": [\n        \"NNP\"\n    ], \n    \"Smith-Hughes\": [\n        \"NNP\"\n    ], \n    \"historicism\": [\n        \"NN\"\n    ], \n    \"barging\": [\n        \"VBG\"\n    ], \n    \"smokestack\": [\n        \"NN\"\n    ], \n    \"ketosis\": [\n        \"NN\"\n    ], \n    \"Himalayas\": [\n        \"NNPS\"\n    ], \n    \"Vos\": [\n        \"NNP\"\n    ], \n    \"Yff\": [\n        \"IN\"\n    ], \n    \"guitar\": [\n        \"NN\"\n    ], \n    \"Zosen\": [\n        \"NNP\"\n    ], \n    \"Himalayan\": [\n        \"JJ\"\n    ], \n    \"car-development\": [\n        \"NN\"\n    ], \n    \"road-map\": [\n        \"NN\"\n    ], \n    \"acquiring\": [\n        \"VBG\"\n    ], \n    \"Irma\": [\n        \"NNP\"\n    ], \n    \"contract\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"officer\": [\n        \"NN\"\n    ], \n    \"Pantages\": [\n        \"NNS\"\n    ], \n    \"Rudman\": [\n        \"NNP\"\n    ], \n    \"designations\": [\n        \"NNS\"\n    ], \n    \"railway\": [\n        \"NN\"\n    ], \n    \"filtering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Michelin\": [\n        \"NNP\"\n    ], \n    \"billion-yen\": [\n        \"JJ\"\n    ], \n    \"HARD\": [\n        \"JJ\"\n    ], \n    \"Buechel\": [\n        \"NNP\"\n    ], \n    \"Widespread\": [\n        \"JJ\"\n    ], \n    \"opines\": [\n        \"VBZ\"\n    ], \n    \"two-story\": [\n        \"JJ\"\n    ], \n    \"enunciated\": [\n        \"VBD\"\n    ], \n    \"Foodmaker\": [\n        \"NNP\"\n    ], \n    \"consumptive\": [\n        \"JJ\"\n    ], \n    \"escalated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Negotiating\": [\n        \"VBG\"\n    ], \n    \"tonsils\": [\n        \"NNS\"\n    ], \n    \"salt-edged\": [\n        \"JJ\"\n    ], \n    \"featuring\": [\n        \"VBG\"\n    ], \n    \"squatters\": [\n        \"NNS\"\n    ], \n    \"Lawn\": [\n        \"NNP\"\n    ], \n    \"fishin\": [\n        \"VBG\"\n    ], \n    \"Madama\": [\n        \"NNP\"\n    ], \n    \"downwind\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Madame\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"repond\": [\n        \"VB\"\n    ], \n    \"coherently\": [\n        \"RB\"\n    ], \n    \"ophthalmic\": [\n        \"JJ\"\n    ], \n    \"Lidgerwood\": [\n        \"NNP\"\n    ], \n    \"ashtrays\": [\n        \"NNS\"\n    ], \n    \"spirit\": [\n        \"NN\"\n    ], \n    \"protocols\": [\n        \"NNS\"\n    ], \n    \"pilot\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Jean-Michel\": [\n        \"NNP\"\n    ], \n    \"Stern-faced\": [\n        \"JJ\"\n    ], \n    \"chromatographic\": [\n        \"JJ\"\n    ], \n    \"obligating\": [\n        \"VBG\"\n    ], \n    \"entractes\": [\n        \"NNS\"\n    ], \n    \"career\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"defunded\": [\n        \"VBN\"\n    ], \n    \"Open\": [\n        \"NNP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Kuan\": [\n        \"NNP\"\n    ], \n    \"Opel\": [\n        \"NNP\"\n    ], \n    \"trove\": [\n        \"NN\"\n    ], \n    \"non-insider\": [\n        \"NN\"\n    ], \n    \"fisted\": [\n        \"VBD\"\n    ], \n    \"AMEX\": [\n        \"NNP\"\n    ], \n    \"Politicians\": [\n        \"NNS\"\n    ], \n    \"minds\": [\n        \"NNS\"\n    ], \n    \"AMES\": [\n        \"NNP\"\n    ], \n    \"Salton\": [\n        \"NNP\"\n    ], \n    \"shopkeeper\": [\n        \"NN\"\n    ], \n    \"Mirella\": [\n        \"NNP\"\n    ], \n    \"economic-cooperation\": [\n        \"NN\"\n    ], \n    \"granted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"eggshell\": [\n        \"JJ\"\n    ], \n    \"Workforce\": [\n        \"NNP\"\n    ], \n    \"dining-room\": [\n        \"NN\"\n    ], \n    \"anti-opera\": [\n        \"NN\"\n    ], \n    \"sucker\": [\n        \"NN\"\n    ], \n    \"jazzmen\": [\n        \"NNS\"\n    ], \n    \"careen\": [\n        \"VB\"\n    ], \n    \"huzzahs\": [\n        \"NNS\"\n    ], \n    \"silliest\": [\n        \"JJS\"\n    ], \n    \"vintners\": [\n        \"NNS\"\n    ], \n    \"week\": [\n        \"NN\"\n    ], \n    \"studentled\": [\n        \"VBN\"\n    ], \n    \"slow-acting\": [\n        \"JJ\"\n    ], \n    \"Walkmen\": [\n        \"NNP\"\n    ], \n    \"Karan\": [\n        \"NNP\"\n    ], \n    \"weed\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"director\": [\n        \"NN\"\n    ], \n    \"Dread\": [\n        \"NNP\"\n    ], \n    \"Banks\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Sidewalk\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"weep\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Dream\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Insurrecto\": [\n        \"FW\"\n    ], \n    \"quantitive\": [\n        \"JJ\"\n    ], \n    \"Generic-industry\": [\n        \"JJ\"\n    ], \n    \"sinned\": [\n        \"VBN\"\n    ], \n    \"rupee\": [\n        \"NN\"\n    ], \n    \"maltreated\": [\n        \"VBN\"\n    ], \n    \"once-balkanized\": [\n        \"JJ\"\n    ], \n    \"without\": [\n        \"IN\"\n    ], \n    \"relief\": [\n        \"NN\"\n    ], \n    \"deflated\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"inability\": [\n        \"NN\"\n    ], \n    \"Romances\": [\n        \"NNP\"\n    ], \n    \"sinner\": [\n        \"NN\"\n    ], \n    \"coaxing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"ninth\": [\n        \"JJ\"\n    ], \n    \"twenty-page\": [\n        \"JJ\"\n    ], \n    \"DeBartolo\": [\n        \"NNP\"\n    ], \n    \"persiflage\": [\n        \"NN\"\n    ], \n    \"Belgian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"headhunters\": [\n        \"NNS\"\n    ], \n    \"wher\": [\n        \"WRB\"\n    ], \n    \"refrigerant\": [\n        \"NN\"\n    ], \n    \"cumara\": [\n        \"NN\"\n    ], \n    \"liters\": [\n        \"NNS\"\n    ], \n    \"cattle-lifter\": [\n        \"NN\"\n    ], \n    \"surprise...\": [\n        \":\"\n    ], \n    \"airfield\": [\n        \"NN\"\n    ], \n    \"emulsifiers\": [\n        \"NNS\"\n    ], \n    \"lets\": [\n        \"VBZ\"\n    ], \n    \"setting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bleats\": [\n        \"NNS\"\n    ], \n    \"flashing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"sucked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"\\\\*\": [\n        \"SYM\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"hot-water\": [\n        \"NN\"\n    ], \n    \"men-of-war\": [\n        \"NNS\"\n    ], \n    \"Deliberations\": [\n        \"NNP\"\n    ], \n    \"Tamarijn\": [\n        \"NNP\"\n    ], \n    \"Manu\": [\n        \"NNP\"\n    ], \n    \"omnipotence\": [\n        \"NN\"\n    ], \n    \"Many\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\", \n        \"PDT\", \n        \"DT\"\n    ], \n    \"inordinate\": [\n        \"JJ\"\n    ], \n    \"president\\\\/national-government\": [\n        \"NN\"\n    ], \n    \"Ortega\": [\n        \"NNP\"\n    ], \n    \"Mana\": [\n        \"NNP\"\n    ], \n    \"J.D.H.\": [\n        \"NNP\"\n    ], \n    \"mahua\": [\n        \"NN\"\n    ], \n    \"treehouse\": [\n        \"NN\"\n    ], \n    \"millidegree\": [\n        \"NN\"\n    ], \n    \"Mann\": [\n        \"NNP\"\n    ], \n    \"Brave\": [\n        \"NNP\"\n    ], \n    \"iron-handed\": [\n        \"JJ\"\n    ], \n    \"out-of-court\": [\n        \"JJ\"\n    ], \n    \"Hallett\": [\n        \"NNP\"\n    ], \n    \"Consul\": [\n        \"NNP\"\n    ], \n    \"gyms\": [\n        \"NNS\"\n    ], \n    \"Blaustein\": [\n        \"NNP\"\n    ], \n    \"Switches\": [\n        \"NNS\"\n    ], \n    \"AmeriTrust\": [\n        \"NNP\"\n    ], \n    \"run-ins\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"donations\": [\n        \"NNS\"\n    ], \n    \"wholly-owned\": [\n        \"JJ\"\n    ], \n    \"scientist\\\\/traders\": [\n        \"NNS\"\n    ], \n    \"Majestic\": [\n        \"NNP\"\n    ], \n    \"curriculums\": [\n        \"NNS\"\n    ], \n    \"just-concluded\": [\n        \"JJ\"\n    ], \n    \"picture\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Immanuel\": [\n        \"NNP\"\n    ], \n    \"LEVERAGED\": [\n        \"VBN\"\n    ], \n    \"Aschenbach\": [\n        \"NNP\"\n    ], \n    \"Reuben\": [\n        \"NNP\"\n    ], \n    \"competition\": [\n        \"NN\"\n    ], \n    \"Luft\": [\n        \"NNP\"\n    ], \n    \"Located\": [\n        \"VBN\"\n    ], \n    \"Kum\": [\n        \"NNP\"\n    ], \n    \"Ellen\": [\n        \"NNP\"\n    ], \n    \"lentils\": [\n        \"NNS\"\n    ], \n    \"developmental\": [\n        \"JJ\"\n    ], \n    \"mood\": [\n        \"NN\"\n    ], \n    \"Pechora-class\": [\n        \"JJ\"\n    ], \n    \"Sherrill\": [\n        \"NNP\"\n    ], \n    \"frees\": [\n        \"VBZ\"\n    ], \n    \"freer\": [\n        \"JJR\"\n    ], \n    \"West-German\": [\n        \"JJ\"\n    ], \n    \"rooming\": [\n        \"VBG\"\n    ], \n    \"depletion\": [\n        \"NN\"\n    ], \n    \"half-off\": [\n        \"JJ\"\n    ], \n    \"imputed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"tailin\": [\n        \"NN\"\n    ], \n    \"debt-to-assets\": [\n        \"JJ\"\n    ], \n    \"wristwatch\": [\n        \"NN\"\n    ], \n    \"porter\": [\n        \"NN\"\n    ], \n    \"freed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Schley\": [\n        \"NNP\"\n    ], \n    \"KUHN\": [\n        \"NNP\"\n    ], \n    \"unpegged\": [\n        \"JJ\"\n    ], \n    \"beached\": [\n        \"JJ\"\n    ], \n    \"stereotyped\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Schlek\": [\n        \"NNP\"\n    ], \n    \"parishioners\": [\n        \"NNS\"\n    ], \n    \"resurrection\": [\n        \"NN\"\n    ], \n    \"Billerica\": [\n        \"NNP\"\n    ], \n    \"Blush\": [\n        \"NNP\"\n    ], \n    \"stereotypes\": [\n        \"NNS\"\n    ], \n    \"Playing\": [\n        \"VBG\"\n    ], \n    \"beaches\": [\n        \"NNS\"\n    ], \n    \"Regaard\": [\n        \"NNP\"\n    ], \n    \"Goya\": [\n        \"NNP\"\n    ], \n    \"gendarme\": [\n        \"NN\"\n    ], \n    \"Schoolmarm\": [\n        \"NN\"\n    ], \n    \"reprisals\": [\n        \"NNS\"\n    ], \n    \"mega-deals\": [\n        \"NNS\"\n    ], \n    \"discussed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"decelerated\": [\n        \"VBN\"\n    ], \n    \"Quattro\": [\n        \"NNP\"\n    ], \n    \"discusses\": [\n        \"VBZ\"\n    ], \n    \"A300-600R\": [\n        \"NNP\"\n    ], \n    \"tribe\": [\n        \"NN\"\n    ], \n    \"Nunes\": [\n        \"NNP\"\n    ], \n    \"curses\": [\n        \"NNS\"\n    ], \n    \"instruments\": [\n        \"NNS\"\n    ], \n    \"Jidge\": [\n        \"NNP\"\n    ], \n    \"Rostagnos\": [\n        \"NNPS\"\n    ], \n    \"Sandinistas...\": [\n        \":\"\n    ], \n    \"cursed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Trivelpiece\": [\n        \"NNP\"\n    ], \n    \"flea-infested\": [\n        \"JJ\"\n    ], \n    \"SUES\": [\n        \"VBZ\"\n    ], \n    \"Rorer\": [\n        \"NNP\"\n    ], \n    \"Lubars\": [\n        \"NNP\"\n    ], \n    \"propeller-driven\": [\n        \"JJ\"\n    ], \n    \"Obelisk\": [\n        \"NNP\"\n    ], \n    \"there\": [\n        \"EX\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"relocation\": [\n        \"NN\"\n    ], \n    \"alleged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"junctures\": [\n        \"NNS\"\n    ], \n    \"knee-socked\": [\n        \"JJ\"\n    ], \n    \"Proclamation\": [\n        \"NNP\"\n    ], \n    \"nuclear-armed\": [\n        \"JJ\"\n    ], \n    \"alleges\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"fastball\": [\n        \"NN\"\n    ], \n    \"treat\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Utsunomiya\": [\n        \"NNP\"\n    ], \n    \"Singer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Compute\": [\n        \"VB\"\n    ], \n    \"Ordinarily\": [\n        \"RB\"\n    ], \n    \"staunchest\": [\n        \"JJS\"\n    ], \n    \"Water-soluble\": [\n        \"JJ\"\n    ], \n    \"crystallite\": [\n        \"NN\"\n    ], \n    \"rouse\": [\n        \"VB\"\n    ], \n    \"well-modulated\": [\n        \"JJ\"\n    ], \n    \"Narragansett\": [\n        \"NNP\"\n    ], \n    \"offical\": [\n        \"JJ\"\n    ], \n    \"wholesale\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"slumlord\": [\n        \"NN\"\n    ], \n    \"artisans\": [\n        \"NNS\"\n    ], \n    \"Abell\": [\n        \"NNP\"\n    ], \n    \"whupped\": [\n        \"VBD\"\n    ], \n    \"Billboard\": [\n        \"NNP\"\n    ], \n    \"flats\": [\n        \"NNS\"\n    ], \n    \"grass\": [\n        \"NN\"\n    ], \n    \"creeping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Lancaster\": [\n        \"NNP\"\n    ], \n    \"accentuated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Bhutan\": [\n        \"NNP\"\n    ], \n    \"taste\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"tri-colored\": [\n        \"JJ\"\n    ], \n    \"cockeyed\": [\n        \"JJ\"\n    ], \n    \"accentuates\": [\n        \"VBZ\"\n    ], \n    \"tasty\": [\n        \"JJ\"\n    ], \n    \"firebug\": [\n        \"NN\"\n    ], \n    \"uncovered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"onerous\": [\n        \"JJ\"\n    ], \n    \"piracy\": [\n        \"NN\"\n    ], \n    \"volley-ball\": [\n        \"NN\"\n    ], \n    \"roses\": [\n        \"NNS\"\n    ], \n    \"off-year\": [\n        \"JJ\"\n    ], \n    \"c-reflects\": [\n        \"VBZ\"\n    ], \n    \"lemon-lime\": [\n        \"JJ\"\n    ], \n    \"passenger-car\": [\n        \"NN\"\n    ], \n    \"proliferate\": [\n        \"VBP\"\n    ], \n    \"super-exciting\": [\n        \"JJ\"\n    ], \n    \"fuel-efficient\": [\n        \"JJ\"\n    ], \n    \"pillows\": [\n        \"NNS\"\n    ], \n    \"Modestly\": [\n        \"RB\"\n    ], \n    \"Carden\": [\n        \"NNP\"\n    ], \n    \"cordless\": [\n        \"JJ\"\n    ], \n    \"START\": [\n        \"NNP\"\n    ], \n    \"Faight\": [\n        \"NNP\"\n    ], \n    \"STARS\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Holguin\": [\n        \"NNP\"\n    ], \n    \"inroads\": [\n        \"NNS\"\n    ], \n    \"PFC\": [\n        \"NNP\"\n    ], \n    \"blacks\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Majesty\": [\n        \"NNP\"\n    ], \n    \"Quotrons\": [\n        \"NNPS\"\n    ], \n    \"Deegan\": [\n        \"NNP\"\n    ], \n    \"Darlene\": [\n        \"NNP\"\n    ], \n    \"platted\": [\n        \"VBN\"\n    ], \n    \"Textbook\": [\n        \"NN\"\n    ], \n    \"executive-model\": [\n        \"JJ\"\n    ], \n    \"Cleo\": [\n        \"NNP\"\n    ], \n    \"shortfall\": [\n        \"NN\"\n    ], \n    \"Hungarian-born\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Esnards\": [\n        \"NNPS\"\n    ], \n    \"roi\": [\n        \"FW\"\n    ], \n    \"ShareData\": [\n        \"NNP\"\n    ], \n    \"scrappy\": [\n        \"JJ\"\n    ], \n    \"off-road\": [\n        \"JJ\"\n    ], \n    \"wreath\": [\n        \"NN\"\n    ], \n    \"logarithms\": [\n        \"NNS\"\n    ], \n    \"no-fuss\": [\n        \"JJ\"\n    ], \n    \"Avnet\": [\n        \"NNP\"\n    ], \n    \"Avner\": [\n        \"NNP\"\n    ], \n    \"re-rescue\": [\n        \"VB\"\n    ], \n    \"SHOPS\": [\n        \"NNS\"\n    ], \n    \"child-development\": [\n        \"NN\"\n    ], \n    \"titter\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"facelifts\": [\n        \"NNS\"\n    ], \n    \"extraneous\": [\n        \"JJ\"\n    ], \n    \"Dramatic\": [\n        \"JJ\"\n    ], \n    \"dairy\": [\n        \"NN\", \n        \"JJ\", \n        \"NN|JJ\"\n    ], \n    \"Gardelin\": [\n        \"NNP\"\n    ], \n    \"Arakawa\": [\n        \"NNP\"\n    ], \n    \"lawmakers\": [\n        \"NNS\"\n    ], \n    \"blood-soaked\": [\n        \"JJ\"\n    ], \n    \"Axioms\": [\n        \"NNS\"\n    ], \n    \"tethered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"uptick\": [\n        \"NN\", \n        \"NN|JJ\", \n        \"VB\"\n    ], \n    \"Alaska\": [\n        \"NNP\"\n    ], \n    \"Baulieu\": [\n        \"NNP\"\n    ], \n    \"snapdragons\": [\n        \"NNS\"\n    ], \n    \"vacationing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"beefore\": [\n        \"IN\"\n    ], \n    \"Translink\": [\n        \"NNP\"\n    ], \n    \"Field-Fisher\": [\n        \"NNP\"\n    ], \n    \"Boom-city\": [\n        \"NNP\"\n    ], \n    \"Testing\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Fenner\": [\n        \"NNP\"\n    ], \n    \"Vendors\": [\n        \"NNS\"\n    ], \n    \"phonology\": [\n        \"NN\"\n    ], \n    \"butterfat-rich\": [\n        \"JJ\"\n    ], \n    \"Carla\": [\n        \"NNP\"\n    ], \n    \"limited-growth\": [\n        \"NN\"\n    ], \n    \"Marrie\": [\n        \"NNP\"\n    ], \n    \"liars\": [\n        \"NNS\"\n    ], \n    \"Carli\": [\n        \"NNP\"\n    ], \n    \"Carlo\": [\n        \"NNP\"\n    ], \n    \"lise\": [\n        \"NNS\"\n    ], \n    \"familiarly\": [\n        \"RB\"\n    ], \n    \"dessier\": [\n        \"VB\"\n    ], \n    \"Pepcid\": [\n        \"NNP\"\n    ], \n    \"escalation\": [\n        \"NN\"\n    ], \n    \"abstracted\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Kravis\": [\n        \"NNP\"\n    ], \n    \"slavered\": [\n        \"VBD\"\n    ], \n    \"breakers\": [\n        \"NNS\"\n    ], \n    \"butyrate\": [\n        \"NN\"\n    ], \n    \"invention\": [\n        \"NN\"\n    ], \n    \"regulus\": [\n        \"NN\"\n    ], \n    \"yokel\": [\n        \"NN\"\n    ], \n    \"Naganawa\": [\n        \"NNP\"\n    ], \n    \"hairspray\": [\n        \"NN\"\n    ], \n    \"stickpin\": [\n        \"NN\"\n    ], \n    \"chalk\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"risen\": [\n        \"VBN\"\n    ], \n    \"Quitslund\": [\n        \"NNP\"\n    ], \n    \"musts\": [\n        \"NNS\"\n    ], \n    \"wrongdoers\": [\n        \"NNS\"\n    ], \n    \"belied\": [\n        \"VBD\"\n    ], \n    \"rascal\": [\n        \"NN\"\n    ], \n    \"brief\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Milunovich\": [\n        \"NNP\"\n    ], \n    \"Drs.\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"version\": [\n        \"NN\"\n    ], \n    \"pulpit\": [\n        \"NN\"\n    ], \n    \"Nowhere\": [\n        \"RB\"\n    ], \n    \"CEOs\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Compound\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"information-processing\": [\n        \"NN\"\n    ], \n    \"Cinq\": [\n        \"NNP\"\n    ], \n    \"pre-penicillin\": [\n        \"JJ\"\n    ], \n    \"unquestioned\": [\n        \"JJ\"\n    ], \n    \"compresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ruffle\": [\n        \"VB\"\n    ], \n    \"Daimler-Benz\": [\n        \"NNP\"\n    ], \n    \"mayoral\": [\n        \"JJ\"\n    ], \n    \"drudgery\": [\n        \"NN\"\n    ], \n    \"compressed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kaltschmitt\": [\n        \"NNP\"\n    ], \n    \"Dumez\": [\n        \"NNP\"\n    ], \n    \"tragedy\": [\n        \"NN\"\n    ], \n    \"rocket-bombs\": [\n        \"NNS\"\n    ], \n    \"Winthrop\": [\n        \"NNP\"\n    ], \n    \"Absolutely\": [\n        \"RB\"\n    ], \n    \"pizzerias\": [\n        \"NNS\"\n    ], \n    \"bungled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"switchers\": [\n        \"NNS\"\n    ], \n    \"Kolb\": [\n        \"NNP\"\n    ], \n    \"horrified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Japanese-American\": [\n        \"JJ\"\n    ], \n    \"gyrated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tragedians\": [\n        \"NNS\"\n    ], \n    \"binders\": [\n        \"NNS\"\n    ], \n    \"Thoroughly\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"Smithsonian\": [\n        \"NNP\"\n    ], \n    \"Gisele\": [\n        \"NNP\"\n    ], \n    \"doggerel\": [\n        \"NN\"\n    ], \n    \"Artzt\": [\n        \"NNP\"\n    ], \n    \"Chien-Min\": [\n        \"NNP\"\n    ], \n    \"apprentices\": [\n        \"NNS\"\n    ], \n    \"Circumstance\": [\n        \"NNP\"\n    ], \n    \"Beatty\": [\n        \"NNP\"\n    ], \n    \"Mayor-elect\": [\n        \"NNP\"\n    ], \n    \"Supper\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Immediately\": [\n        \"RB\"\n    ], \n    \"affluence\": [\n        \"NN\"\n    ], \n    \"courthouses\": [\n        \"NNS\"\n    ], \n    \"Hammersmith\": [\n        \"NNP\"\n    ], \n    \"flat\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"flaw\": [\n        \"NN\"\n    ], \n    \"flap\": [\n        \"NN\"\n    ], \n    \"Erich\": [\n        \"NNP\"\n    ], \n    \"materiel\": [\n        \"NN\"\n    ], \n    \"mire\": [\n        \"NN\"\n    ], \n    \"maquiladora\": [\n        \"NN\"\n    ], \n    \"flay\": [\n        \"VB\"\n    ], \n    \"flax\": [\n        \"NN\"\n    ], \n    \"mutely\": [\n        \"RB\"\n    ], \n    \"Morocco\": [\n        \"NNP\"\n    ], \n    \"flag\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Mass\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fresenius\": [\n        \"NNP\"\n    ], \n    \"Nacchio\": [\n        \"NNP\"\n    ], \n    \"flak\": [\n        \"NN\"\n    ], \n    \"Lightly\": [\n        \"RB\"\n    ], \n    \"self-sacrifice\": [\n        \"NN\"\n    ], \n    \"Gymnasium\": [\n        \"NNP\"\n    ], \n    \"besides\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"Greaney\": [\n        \"NNP\"\n    ], \n    \"Finalists\": [\n        \"NNS\"\n    ], \n    \"yanked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"salted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"classified-ad\": [\n        \"NN\"\n    ], \n    \"Nepal\": [\n        \"NNP\"\n    ], \n    \"mid-1958\": [\n        \"NN\"\n    ], \n    \"quota-trained\": [\n        \"JJ\"\n    ], \n    \"S.P.C.A.\": [\n        \"NN\"\n    ], \n    \"libertarian\": [\n        \"JJ\"\n    ], \n    \"mortgage-banking\": [\n        \"NN\"\n    ], \n    \"Fortin\": [\n        \"NNP\"\n    ], \n    \"run-up\": [\n        \"NN\"\n    ], \n    \"pro-union\": [\n        \"JJ\"\n    ], \n    \"Quebecois\": [\n        \"NNP\"\n    ], \n    \"Defections\": [\n        \"NNS\"\n    ], \n    \"ordinance\": [\n        \"NN\"\n    ], \n    \"independent-contractor\": [\n        \"JJ\"\n    ], \n    \"toxic-waste-dump\": [\n        \"JJ\"\n    ], \n    \"Ahmiri\": [\n        \"NNP\"\n    ], \n    \"exalted\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"once-loyal\": [\n        \"JJ\"\n    ], \n    \"Shadow\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rebalance\": [\n        \"VB\"\n    ], \n    \"aahs\": [\n        \"NNS\"\n    ], \n    \"guttural\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"okay\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"abdicate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"estate...\": [\n        \":\"\n    ], \n    \"orbits\": [\n        \"NNS\"\n    ], \n    \"never-ending\": [\n        \"JJ\"\n    ], \n    \"sponsors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Epps\": [\n        \"NNP\"\n    ], \n    \"Interhash\": [\n        \"NNP\"\n    ], \n    \"lighting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"FAKE\": [\n        \"JJ\"\n    ], \n    \"holored\": [\n        \"VBN\"\n    ], \n    \"contingency\": [\n        \"NN\"\n    ], \n    \"proclaimed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"short\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Aiken\": [\n        \"NNP\"\n    ], \n    \"wallets\": [\n        \"NNS\"\n    ], \n    \"ring-around-a-rosy\": [\n        \"NN\"\n    ], \n    \"marching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"congregation\": [\n        \"NN\"\n    ], \n    \"supervision\": [\n        \"NN\"\n    ], \n    \"climaxed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"site-development\": [\n        \"NN\"\n    ], \n    \"Logan\": [\n        \"NNP\"\n    ], \n    \"extrapolation\": [\n        \"NN\"\n    ], \n    \"Playgirl\": [\n        \"NNP\"\n    ], \n    \"Democrats\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"climaxes\": [\n        \"NNS\"\n    ], \n    \"shorn\": [\n        \"VB\"\n    ], \n    \"pre-maquila\": [\n        \"JJ\"\n    ], \n    \"began\": [\n        \"VBD\"\n    ], \n    \"Yukon\": [\n        \"NNP\"\n    ], \n    \"lifeguards\": [\n        \"NNS\"\n    ], \n    \"tanks\": [\n        \"NNS\"\n    ], \n    \"unimaginative\": [\n        \"JJ\"\n    ], \n    \"Koffman\": [\n        \"NNP\"\n    ], \n    \"closeness\": [\n        \"NN\"\n    ], \n    \"Tarmac\": [\n        \"NNP\"\n    ], \n    \"Bianchi\": [\n        \"NNP\"\n    ], \n    \"chansons\": [\n        \"FW\"\n    ], \n    \"Confindustria\": [\n        \"NNP\"\n    ], \n    \"boun\": [\n        \"NN\"\n    ], \n    \"fourth-hand\": [\n        \"JJ\"\n    ], \n    \"millinery\": [\n        \"NN\"\n    ], \n    \"clashed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Clinics\": [\n        \"NNP\"\n    ], \n    \"Monticello\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mattress\": [\n        \"NN\"\n    ], \n    \"clashes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Binder\": [\n        \"NNP\"\n    ], \n    \"SUIT\": [\n        \"NN\"\n    ], \n    \"ebulliently\": [\n        \"RB\"\n    ], \n    \"bout\": [\n        \"NN\", \n        \"IN\"\n    ], \n    \"dimly\": [\n        \"RB\"\n    ], \n    \"oftentimes\": [\n        \"RB\"\n    ], \n    \"reappearance\": [\n        \"NN\"\n    ], \n    \"Safra\": [\n        \"NNP\"\n    ], \n    \"incitement\": [\n        \"NN\"\n    ], \n    \"Oxford\": [\n        \"NNP\"\n    ], \n    \"Pleasure\": [\n        \"NN\"\n    ], \n    \"hunted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Spain\": [\n        \"NNP\"\n    ], \n    \"Seward\": [\n        \"NNP\"\n    ], \n    \"adventurous\": [\n        \"JJ\"\n    ], \n    \"Halperin\": [\n        \"NNP\"\n    ], \n    \"schoolteacher\": [\n        \"NN\"\n    ], \n    \"Racquet\": [\n        \"NNP\"\n    ], \n    \"mathematician\": [\n        \"NN\"\n    ], \n    \"liniment\": [\n        \"NN\"\n    ], \n    \"philology\": [\n        \"NN\"\n    ], \n    \"policyholders\": [\n        \"NNS\"\n    ], \n    \"Consultants\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"mastered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Midwood\": [\n        \"NNP\"\n    ], \n    \"Hospitals\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Christian-dominated\": [\n        \"JJ\"\n    ], \n    \"Larson\": [\n        \"NNP\"\n    ], \n    \"bolstering\": [\n        \"VBG\"\n    ], \n    \"Castroism\": [\n        \"NNP\"\n    ], \n    \"weight\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Saints\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"greenmail\": [\n        \"NN\"\n    ], \n    \"Lothson\": [\n        \"NNP\"\n    ], \n    \"Debra\": [\n        \"NNP\"\n    ], \n    \"Mud\": [\n        \"NNP\"\n    ], \n    \"Cleota\": [\n        \"NNP\"\n    ], \n    \"transistors\": [\n        \"NNS\"\n    ], \n    \"cloudy\": [\n        \"JJ\"\n    ], \n    \"Passport\": [\n        \"NN\"\n    ], \n    \"SuperDot\": [\n        \"NNP\"\n    ], \n    \"standards\": [\n        \"NNS\"\n    ], \n    \"English-Dutch\": [\n        \"JJ\"\n    ], \n    \"Equifax\": [\n        \"NNP\"\n    ], \n    \"alcohol\": [\n        \"NN\"\n    ], \n    \"foolproof\": [\n        \"JJ\"\n    ], \n    \"frittering\": [\n        \"VBG\"\n    ], \n    \"chartroom\": [\n        \"NN\"\n    ], \n    \"commemorative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"said.``\": [\n        \"``\"\n    ], \n    \"see-lective\": [\n        \"JJ\"\n    ], \n    \"half-grown\": [\n        \"JJ\"\n    ], \n    \"guess\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Caprice\": [\n        \"NNP\"\n    ], \n    \"lever\": [\n        \"NN\"\n    ], \n    \"czars\": [\n        \"NNS\"\n    ], \n    \"Corvettes\": [\n        \"NNS\"\n    ], \n    \"Brestowe\": [\n        \"NNP\"\n    ], \n    \"echelons\": [\n        \"NNS\"\n    ], \n    \"jet\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"home-delivery\": [\n        \"NN\"\n    ], \n    \"seahorse\": [\n        \"NN\"\n    ], \n    \"Molding\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Polyphosphates\": [\n        \"NNS\"\n    ], \n    \"Eloy\": [\n        \"NNP\"\n    ], \n    \"clipboard-sized\": [\n        \"JJ\"\n    ], \n    \"fallen\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Eloi\": [\n        \"NNP\"\n    ], \n    \"connotation\": [\n        \"NN\"\n    ], \n    \"Ostpolitik\": [\n        \"NNP\"\n    ], \n    \"limestone\": [\n        \"NN\"\n    ], \n    \"enlarges\": [\n        \"VBZ\"\n    ], \n    \"Oklahoma\": [\n        \"NNP\"\n    ], \n    \"Keeps\": [\n        \"VBZ\"\n    ], \n    \"litany\": [\n        \"NN\"\n    ], \n    \"Territories\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"enlarged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"mine-hunting\": [\n        \"JJ\"\n    ], \n    \"hipline\": [\n        \"NN\"\n    ], \n    \"illustrating\": [\n        \"VBG\"\n    ], \n    \"Sinan\": [\n        \"NNP\"\n    ], \n    \"Shaver\": [\n        \"NNP\"\n    ], \n    \"Denver-area\": [\n        \"NN\"\n    ], \n    \"Tintoretto\": [\n        \"NNP\"\n    ], \n    \"rookies\": [\n        \"NNS\"\n    ], \n    \"Geman\": [\n        \"NNP\"\n    ], \n    \"interviews\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Fayette\": [\n        \"NNP\"\n    ], \n    \"Pleasant\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"trend\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Larry\": [\n        \"NNP\"\n    ], \n    \"transparent...\": [\n        \":\"\n    ], \n    \"fought\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Abroad\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"mainstay\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"serotonin\": [\n        \"NN\"\n    ], \n    \"rifle\": [\n        \"NN\"\n    ], \n    \"unmentioned\": [\n        \"VBN\"\n    ], \n    \"insolvencies\": [\n        \"NNS\"\n    ], \n    \"excitability\": [\n        \"NN\"\n    ], \n    \"scabbard\": [\n        \"NN\"\n    ], \n    \"Elementary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"scanners\": [\n        \"NNS\"\n    ], \n    \"McAuley\": [\n        \"NNP\"\n    ], \n    \"amass\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pre-emption\": [\n        \"JJ\"\n    ], \n    \"Borland\": [\n        \"NNP\"\n    ], \n    \"exert\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Zionist\": [\n        \"JJ\"\n    ], \n    \"Swisher\": [\n        \"NNP\"\n    ], \n    \"Zionism\": [\n        \"NNP\"\n    ], \n    \"Keio\": [\n        \"NNP\"\n    ], \n    \"J.B.\": [\n        \"NNP\"\n    ], \n    \"hopelessly\": [\n        \"RB\"\n    ], \n    \"Iceland\": [\n        \"NNP\"\n    ], \n    \"Relativism\": [\n        \"NN\"\n    ], \n    \"Romagnosi\": [\n        \"NNP\"\n    ], \n    \"Eppler\": [\n        \"NNP\"\n    ], \n    \"foamed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"banjo\": [\n        \"NN\"\n    ], \n    \"Hamey\": [\n        \"NNP\"\n    ], \n    \"Cities-ABC\": [\n        \"NNP\"\n    ], \n    \"electric\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"populate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hyperzeal\": [\n        \"NN\"\n    ], \n    \"Sternenberg\": [\n        \"NNP\"\n    ], \n    \"RBS\": [\n        \"NNP\"\n    ], \n    \"Arkhangelsk\": [\n        \"NNP\"\n    ], \n    \"Six-month\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"certificate-of-need\": [\n        \"NN\"\n    ], \n    \"Zhao\": [\n        \"NNP\"\n    ], \n    \"Bohemian\": [\n        \"NNP\"\n    ], \n    \"storefronts\": [\n        \"NNS\"\n    ], \n    \"defensible\": [\n        \"JJ\"\n    ], \n    \"RBC\": [\n        \"NNP\"\n    ], \n    \"Reeves-type\": [\n        \"JJ\"\n    ], \n    \"Marsam\": [\n        \"NNP\"\n    ], \n    \"diversifed\": [\n        \"VBN\"\n    ], \n    \"order-processing\": [\n        \"JJ\"\n    ], \n    \"chaga\": [\n        \"NN\"\n    ], \n    \"traditional\": [\n        \"JJ\"\n    ], \n    \"home-fashion\": [\n        \"NN\"\n    ], \n    \"obediently\": [\n        \"RB\"\n    ], \n    \"liberate\": [\n        \"VB\"\n    ], \n    \"Colfax\": [\n        \"NNP\"\n    ], \n    \"restore\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Profit\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Shack\": [\n        \"NNP\"\n    ], \n    \"Efficiencies\": [\n        \"NNS\"\n    ], \n    \"fining\": [\n        \"VBG\"\n    ], \n    \"gain.\": [\n        \"NN\"\n    ], \n    \"Haruki\": [\n        \"NNP\"\n    ], \n    \"emulsion\": [\n        \"NN\"\n    ], \n    \"Brumby\": [\n        \"NNP\"\n    ], \n    \"drumbeat\": [\n        \"NN\"\n    ], \n    \"grazed\": [\n        \"VBD\"\n    ], \n    \"witty\": [\n        \"JJ\"\n    ], \n    \"axial\": [\n        \"JJ\"\n    ], \n    \"grazer\": [\n        \"NN\"\n    ], \n    \"Hampster\": [\n        \"NNP\"\n    ], \n    \"pink-sheet\": [\n        \"JJ\"\n    ], \n    \"Sorecom\": [\n        \"NNP\"\n    ], \n    \"northerners\": [\n        \"NNS\"\n    ], \n    \"Homebuilders\": [\n        \"NNPS\"\n    ], \n    \"Specialties\": [\n        \"NNP\"\n    ], \n    \"levi-clad\": [\n        \"JJ\"\n    ], \n    \"Tavoy\": [\n        \"NNP\"\n    ], \n    \"grievances\": [\n        \"NNS\"\n    ], \n    \"adulthood\": [\n        \"NN\"\n    ], \n    \"white-spirit\": [\n        \"NN\"\n    ], \n    \"BW\": [\n        \"NNP\"\n    ], \n    \"Kandahar\": [\n        \"NNP\"\n    ], \n    \"Meselson\": [\n        \"NNP\"\n    ], \n    \"BP\": [\n        \"NNP\"\n    ], \n    \"cringe\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Alabamian\": [\n        \"NN\"\n    ], \n    \"Christopoulos\": [\n        \"NNP\"\n    ], \n    \"overhauling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"evangelist-industrialist\": [\n        \"NN\"\n    ], \n    \"Households\": [\n        \"NNS\"\n    ], \n    \"defense\": [\n        \"NN\"\n    ], \n    \"unflagging\": [\n        \"JJ\"\n    ], \n    \"six-cent-a-share\": [\n        \"JJ\"\n    ], \n    \"chambers\": [\n        \"NNS\"\n    ], \n    \"ex-Marine\": [\n        \"NN\"\n    ], \n    \"Reformed\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"more-stringent\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"threats\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Hinchliff\": [\n        \"NNP\"\n    ], \n    \"Miniscribe\": [\n        \"NNP\"\n    ], \n    \"fall-off\": [\n        \"NN\"\n    ], \n    \"Trego\": [\n        \"NNP\"\n    ], \n    \"upper-deck\": [\n        \"JJ\"\n    ], \n    \"viewership\": [\n        \"NN\"\n    ], \n    \"Mottram\": [\n        \"NNP\"\n    ], \n    \"tactically\": [\n        \"RB\"\n    ], \n    \"Buttacavoli\": [\n        \"NNP\"\n    ], \n    \"climbable\": [\n        \"JJ\"\n    ], \n    \"Blackburn\": [\n        \"NNP\"\n    ], \n    \"favorableness\": [\n        \"NN\"\n    ], \n    \"Could\": [\n        \"MD\"\n    ], \n    \"citya\": [\n        \"NN\"\n    ], \n    \"betrayer\": [\n        \"NN\"\n    ], \n    \"demon-ridden\": [\n        \"NN\"\n    ], \n    \"Khouja\": [\n        \"NNP\"\n    ], \n    \"baleful\": [\n        \"JJ\"\n    ], \n    \"bibs\": [\n        \"NNS\"\n    ], \n    \"Dhuu\": [\n        \"NNP\"\n    ], \n    \"Bonnor\": [\n        \"NNP\"\n    ], \n    \"Teenage\": [\n        \"NNP\"\n    ], \n    \"paradigms\": [\n        \"NNS\"\n    ], \n    \"Meadow\": [\n        \"NNP\"\n    ], \n    \"sheaths\": [\n        \"NNS\"\n    ], \n    \"renegotiable\": [\n        \"JJ\"\n    ], \n    \"bandit\": [\n        \"NN\"\n    ], \n    \"unincorporated\": [\n        \"JJ\"\n    ], \n    \"asceticism\": [\n        \"NN\"\n    ], \n    \"Counseling\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Spurdle\": [\n        \"NNP\"\n    ], \n    \"Trujillo\": [\n        \"NNP\"\n    ], \n    \"economy-lodging\": [\n        \"JJ\"\n    ], \n    \"Cheddi\": [\n        \"NNP\"\n    ], \n    \"Cotton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reside\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"limp-looking\": [\n        \"JJ\"\n    ], \n    \"regulates\": [\n        \"VBZ\"\n    ], \n    \"Maserati\": [\n        \"NNP\"\n    ], \n    \"previewing\": [\n        \"VBG\"\n    ], \n    \"sweet\": [\n        \"JJ\"\n    ], \n    \"wastebasket\": [\n        \"NN\"\n    ], \n    \"sweep\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"F.J.\": [\n        \"NNP\"\n    ], \n    \"pants-legs\": [\n        \"NN\"\n    ], \n    \"regulated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"village\": [\n        \"NN\"\n    ], \n    \"Post-Graduate\": [\n        \"NNP\"\n    ], \n    \"banditos\": [\n        \"NNS\"\n    ], \n    \"tepees\": [\n        \"NNS\"\n    ], \n    \"startling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Saftey\": [\n        \"NNP\"\n    ], \n    \"Reforms\": [\n        \"NNS\"\n    ], \n    \"Properties\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"adenomas\": [\n        \"NN\"\n    ], \n    \"flinty\": [\n        \"JJ\"\n    ], \n    \"softest\": [\n        \"JJS\"\n    ], \n    \"motion-pattern\": [\n        \"NN\"\n    ], \n    \"cinch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"demand\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"logger\": [\n        \"NN\"\n    ], \n    \"Booty\": [\n        \"NN\"\n    ], \n    \"Memoirs\": [\n        \"NNP\"\n    ], \n    \"Irian\": [\n        \"NNP\"\n    ], \n    \"frozen\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Boots\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Solemnis\": [\n        \"NNP\"\n    ], \n    \"Booth\": [\n        \"NNP\"\n    ], \n    \"Eckerd\": [\n        \"NNP\"\n    ], \n    \"insistently\": [\n        \"RB\"\n    ], \n    \"concurrently\": [\n        \"RB\"\n    ], \n    \"storage-case\": [\n        \"NN\"\n    ], \n    \"credence\": [\n        \"NN\"\n    ], \n    \"napped\": [\n        \"VBD\"\n    ], \n    \"Vicenza\": [\n        \"NNP\"\n    ], \n    \"demon\": [\n        \"NN\"\n    ], \n    \"Shrewd\": [\n        \"JJ\"\n    ], \n    \"Semiconductor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"obstacle\": [\n        \"NN\"\n    ], \n    \"Dominated\": [\n        \"VBN\"\n    ], \n    \"Harbors\": [\n        \"NNPS\"\n    ], \n    \"chestnuts\": [\n        \"NNS\"\n    ], \n    \"spell-binding\": [\n        \"JJ\"\n    ], \n    \"Pp.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"anti-cancer\": [\n        \"JJ\"\n    ], \n    \"cross-marketing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Adventure\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leyse\": [\n        \"NNP\"\n    ], \n    \"absentees\": [\n        \"NNS\"\n    ], \n    \"monolithic\": [\n        \"JJ\"\n    ], \n    \"Mo.-based\": [\n        \"JJ\"\n    ], \n    \"Itel\": [\n        \"NNP\"\n    ], \n    \"essences\": [\n        \"NNS\"\n    ], \n    \"peacemaking\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"impede\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"contractors\": [\n        \"NNS\"\n    ], \n    \"bronzy-green-gold\": [\n        \"JJ\"\n    ], \n    \"third-period\": [\n        \"JJ\"\n    ], \n    \"bourgeois\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"deflects\": [\n        \"VBZ\"\n    ], \n    \"overemphasized\": [\n        \"VBN\"\n    ], \n    \"Hoechst\": [\n        \"NNP\"\n    ], \n    \"Treasurys\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Miller\": [\n        \"NNP\"\n    ], \n    \"awaye\": [\n        \"RB\"\n    ], \n    \"Druin\": [\n        \"NNP\"\n    ], \n    \"Socialists\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Geology\": [\n        \"NNP\"\n    ], \n    \"WINDOW\": [\n        \"NN\"\n    ], \n    \"Stardust\": [\n        \"NN\"\n    ], \n    \"Millen\": [\n        \"NNP\"\n    ], \n    \"Cos.\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"dulling\": [\n        \"VBG\"\n    ], \n    \"spindled\": [\n        \"VBD\"\n    ], \n    \"chain-of-command\": [\n        \"NN\"\n    ], \n    \"unseen\": [\n        \"JJ\"\n    ], \n    \"Seems\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Sec.\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Madre\": [\n        \"NNP\"\n    ], \n    \"Bohlen\": [\n        \"NNP\"\n    ], \n    \"shootings\": [\n        \"NNS\"\n    ], \n    \"arrowed\": [\n        \"JJ\"\n    ], \n    \"continent\": [\n        \"NN\"\n    ], \n    \"Rainman\": [\n        \"NNP\"\n    ], \n    \"crusher\": [\n        \"NN\"\n    ], \n    \"Arnell\": [\n        \"NNP\"\n    ], \n    \"F16s\": [\n        \"NNS\"\n    ], \n    \"U.N.-supervised\": [\n        \"JJ\"\n    ], \n    \"grottoes\": [\n        \"NNS\"\n    ], \n    \"Matsu\": [\n        \"NNP\"\n    ], \n    \"Krumpp\": [\n        \"NNP\"\n    ], \n    \"tormented\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"acrobatics\": [\n        \"NNS\"\n    ], \n    \"Handy\": [\n        \"NNP\"\n    ], \n    \"Banoun\": [\n        \"NNP\"\n    ], \n    \"Performances\": [\n        \"NNPS\"\n    ], \n    \"Raghavan\": [\n        \"NNP\"\n    ], \n    \"doorbell\": [\n        \"NN\"\n    ], \n    \"Smedes\": [\n        \"NNP\"\n    ], \n    \"Seco\": [\n        \"NNP\"\n    ], \n    \"Fashion\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Landmark\": [\n        \"NNP\"\n    ], \n    \"Martoche\": [\n        \"NNP\"\n    ], \n    \"Penthouse\": [\n        \"NNP\"\n    ], \n    \"and\\\\\": [\n        \"CC\"\n    ], \n    \"systematically\": [\n        \"RB\"\n    ], \n    \"admittedly\": [\n        \"RB\"\n    ], \n    \"Candace\": [\n        \"NNP\"\n    ], \n    \"IBM-bashing\": [\n        \"NN\"\n    ], \n    \"collect\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Dearie\": [\n        \"NNP\"\n    ], \n    \"Bifutek-san\": [\n        \"FW\"\n    ], \n    \"Rinascimento\": [\n        \"NNP\"\n    ], \n    \"AirTran\": [\n        \"NNP\"\n    ], \n    \"Mulvoy\": [\n        \"NNP\"\n    ], \n    \"engravings\": [\n        \"NNS\"\n    ], \n    \"Lemon\": [\n        \"NNP\"\n    ], \n    \"arch-opponent\": [\n        \"NN\"\n    ], \n    \"proessional\": [\n        \"NN\"\n    ], \n    \"Sixties\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Dhofaris\": [\n        \"NNPS\"\n    ], \n    \"sauces\": [\n        \"NNS\"\n    ], \n    \"saucer\": [\n        \"NN\"\n    ], \n    \"documentary-type\": [\n        \"JJ\"\n    ], \n    \"Murfreesboro\": [\n        \"NNP\"\n    ], \n    \"retry\": [\n        \"VB\"\n    ], \n    \"Mareb\": [\n        \"NNP\"\n    ], \n    \"b-plane\": [\n        \"NN\"\n    ], \n    \"inoculate\": [\n        \"VB\"\n    ], \n    \"shamrocks\": [\n        \"NNS\"\n    ], \n    \"bankruptcy-law\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"retro\": [\n        \"JJ\"\n    ], \n    \"Marer\": [\n        \"NNP\"\n    ], \n    \"pegboard\": [\n        \"NN\"\n    ], \n    \"contrasting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"meretricious\": [\n        \"JJ\"\n    ], \n    \"Tennyson\": [\n        \"NNP\"\n    ], \n    \"Dreieich\": [\n        \"NNP\"\n    ], \n    \"Gospel-singer\": [\n        \"NN\"\n    ], \n    \"Market-leader\": [\n        \"NN\"\n    ], \n    \"Prejudice\": [\n        \"NNP\"\n    ], \n    \"elixir\": [\n        \"NN\"\n    ], \n    \"Lavelle\": [\n        \"NNP\"\n    ], \n    \"Govs.\": [\n        \"NNP\"\n    ], \n    \"GUIDE\": [\n        \"NNP\"\n    ], \n    \"vaccine\": [\n        \"NN\"\n    ], \n    \"Roh\": [\n        \"NNP\"\n    ], \n    \"cautious\": [\n        \"JJ\"\n    ], \n    \"Unleaded\": [\n        \"JJ\"\n    ], \n    \"runes\": [\n        \"NNS\"\n    ], \n    \"Ron\": [\n        \"NNP\"\n    ], \n    \"kitchenette\": [\n        \"NN\"\n    ], \n    \"Rob\": [\n        \"NNP\"\n    ], \n    \"glaucoma\": [\n        \"NN\"\n    ], \n    \"Rod\": [\n        \"NNP\"\n    ], \n    \"Roe\": [\n        \"NNP\"\n    ], \n    \"associaitons\": [\n        \"NNS\"\n    ], \n    \"Roy\": [\n        \"NNP\"\n    ], \n    \"double-glazed\": [\n        \"JJ\"\n    ], \n    \"quashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"complimentary\": [\n        \"JJ\"\n    ], \n    \"fluttering\": [\n        \"VBG\"\n    ], \n    \"Commission-controlled\": [\n        \"JJ\"\n    ], \n    \"fleets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Urbano\": [\n        \"NNP\"\n    ], \n    \"yearbook\": [\n        \"NN\"\n    ], \n    \"Senium\": [\n        \"FW\"\n    ], \n    \"purporting\": [\n        \"VBG\"\n    ], \n    \"Pavel\": [\n        \"NNP\"\n    ], \n    \"no-tax\": [\n        \"JJ\"\n    ], \n    \"Lee-based\": [\n        \"JJ\"\n    ], \n    \"Paved\": [\n        \"VBN\"\n    ], \n    \"burials\": [\n        \"NNS\"\n    ], \n    \"rows\": [\n        \"NNS\"\n    ], \n    \"entitlement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hildebrandt\": [\n        \"NNP\"\n    ], \n    \"PARTNERSHIP\": [\n        \"NNP\"\n    ], \n    \"Brut\": [\n        \"NNP\"\n    ], \n    \"summertime\": [\n        \"NN\"\n    ], \n    \"sleight\": [\n        \"NN\"\n    ], \n    \"upheld\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lao-tse\": [\n        \"NNP\"\n    ], \n    \"Launder-Ometer\": [\n        \"NNP\"\n    ], \n    \"Arianespace\": [\n        \"NNP\"\n    ], \n    \"Kanoff\": [\n        \"NNP\"\n    ], \n    \"Hrothgar\": [\n        \"NNP\"\n    ], \n    \"pterygia\": [\n        \"NN\"\n    ], \n    \"Familism\": [\n        \"NN\"\n    ], \n    \"goods-producing\": [\n        \"JJ\"\n    ], \n    \"gracefulness\": [\n        \"NN\"\n    ], \n    \"pumped-up\": [\n        \"JJ\"\n    ], \n    \"reassurance\": [\n        \"NN\"\n    ], \n    \"Malpractice\": [\n        \"NN\"\n    ], \n    \"raftered\": [\n        \"VBN\"\n    ], \n    \"Ashton\": [\n        \"NNP\"\n    ], \n    \"Franchisees\": [\n        \"NNS\"\n    ], \n    \"supinely\": [\n        \"RB\"\n    ], \n    \"Austin\": [\n        \"NNP\"\n    ], \n    \"enthusiam\": [\n        \"NN\"\n    ], \n    \"Petipa\": [\n        \"NNP\"\n    ], \n    \"Cassatt\": [\n        \"NNP\"\n    ], \n    \"remunerative\": [\n        \"JJ\"\n    ], \n    \"city-like\": [\n        \"JJ\"\n    ], \n    \"Commemorative\": [\n        \"NNP\"\n    ], \n    \"Lawrenceville\": [\n        \"NNP\"\n    ], \n    \"landscaped\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"capitalized\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Mignon\": [\n        \"NNP\"\n    ], \n    \"capitalizes\": [\n        \"VBZ\"\n    ], \n    \"clear-eyed\": [\n        \"JJ\"\n    ], \n    \"landscapes\": [\n        \"NNS\"\n    ], \n    \"Pitney\": [\n        \"NNP\"\n    ], \n    \"Talyzin\": [\n        \"NNP\"\n    ], \n    \"steeped\": [\n        \"VBN\"\n    ], \n    \"sepia\": [\n        \"JJ\"\n    ], \n    \"loan-management\": [\n        \"NN\"\n    ], \n    \"Attracted\": [\n        \"VBN\"\n    ], \n    \"Arguments\": [\n        \"NNS\"\n    ], \n    \"teased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"higher-quality\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Orbe\": [\n        \"NNP\"\n    ], \n    \"Indicating\": [\n        \"VBG\"\n    ], \n    \"steeper\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"boatyards\": [\n        \"NNS\"\n    ], \n    \"disappoints\": [\n        \"VBZ\"\n    ], \n    \"peach\": [\n        \"NN\"\n    ], \n    \"Fuster\": [\n        \"NNP\"\n    ], \n    \"Heberto\": [\n        \"NNP\"\n    ], \n    \"High-tension\": [\n        \"JJ\"\n    ], \n    \"peace\": [\n        \"NN\"\n    ], \n    \"These\": [\n        \"DT\"\n    ], \n    \"Gottesman\": [\n        \"NNP\"\n    ], \n    \"Fielder\": [\n        \"NNP\"\n    ], \n    \"Kolff\": [\n        \"NNP\"\n    ], \n    \"TNT\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mallet-Prevost\": [\n        \"NNP\"\n    ], \n    \"users\": [\n        \"NNS\"\n    ], \n    \"Walford\": [\n        \"NNP\"\n    ], \n    \"eighty-fifth\": [\n        \"JJ\"\n    ], \n    \"breasts\": [\n        \"NNS\"\n    ], \n    \"fertilized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"TNF\": [\n        \"NNP\"\n    ], \n    \"Ranyard\": [\n        \"NNP\"\n    ], \n    \"posters\": [\n        \"NNS\"\n    ], \n    \"TNN\": [\n        \"NNP\"\n    ], \n    \"California-backed\": [\n        \"JJ\"\n    ], \n    \"happier\": [\n        \"JJR\"\n    ], \n    \"Longstreet\": [\n        \"NNP\"\n    ], \n    \"Stansbery\": [\n        \"NNP\"\n    ], \n    \"curvaceously\": [\n        \"RB\"\n    ], \n    \"semi-rigid\": [\n        \"JJ\"\n    ], \n    \"foundry\": [\n        \"NN\"\n    ], \n    \"fat-tired\": [\n        \"JJ\"\n    ], \n    \"Deller\": [\n        \"NNP\"\n    ], \n    \"impatient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"private-banking\": [\n        \"JJ\"\n    ], \n    \"non-social\": [\n        \"JJ\"\n    ], \n    \"impatiens\": [\n        \"NNS\"\n    ], \n    \"vocally\": [\n        \"RB\"\n    ], \n    \"reined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"F.W.\": [\n        \"NNP\"\n    ], \n    \"Europeanish\": [\n        \"JJ\"\n    ], \n    \"vue\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"carnality\": [\n        \"NN\"\n    ], \n    \"clinical-products\": [\n        \"NNS\"\n    ], \n    \"Politizdat\": [\n        \"NNP\"\n    ], \n    \"Finsilver\": [\n        \"NNP\"\n    ], \n    \"Cooling\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"gang\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Department\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"C-130\": [\n        \"NN\"\n    ], \n    \"cases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"cat-like\": [\n        \"JJ\"\n    ], \n    \"theorist\": [\n        \"NN\"\n    ], \n    \"Monagan\": [\n        \"NNP\"\n    ], \n    \"Lithox\": [\n        \"NNP\"\n    ], \n    \"Lille\": [\n        \"NNP\"\n    ], \n    \"fortresses\": [\n        \"NNS\"\n    ], \n    \"metallurgy\": [\n        \"NN\"\n    ], \n    \"high-mileage\": [\n        \"JJ\"\n    ], \n    \"Paquin\": [\n        \"NNP\"\n    ], \n    \"breach\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"unsettling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Arroyo\": [\n        \"NNP\"\n    ], \n    \"overstraining\": [\n        \"NN\"\n    ], \n    \"confirmation\": [\n        \"NN\"\n    ], \n    \"re-animated\": [\n        \"JJ\"\n    ], \n    \"mainstream\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Amidst\": [\n        \"IN\"\n    ], \n    \"ladle\": [\n        \"NN\"\n    ], \n    \"Rhodes\": [\n        \"NNP\"\n    ], \n    \"Zenaida\": [\n        \"NNP\"\n    ], \n    \"P\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Allende\": [\n        \"NNP\"\n    ], \n    \"re-animates\": [\n        \"VBZ\"\n    ], \n    \"Jarmusch\": [\n        \"NNP\"\n    ], \n    \"downgradings\": [\n        \"NNS\"\n    ], \n    \"volume-wine\": [\n        \"JJ\"\n    ], \n    \"Tedi\": [\n        \"NNP\"\n    ], \n    \"Congdon\": [\n        \"NNP\"\n    ], \n    \"paternity\": [\n        \"NN\"\n    ], \n    \"bonds\": [\n        \"NNS\"\n    ], \n    \"Coletta\": [\n        \"NNP\"\n    ], \n    \"workouts\": [\n        \"NNS\"\n    ], \n    \"Vevey\": [\n        \"NNP\"\n    ], \n    \"friendliness\": [\n        \"NN\"\n    ], \n    \"Cygne\": [\n        \"NNP\"\n    ], \n    \"copper-based\": [\n        \"JJ\"\n    ], \n    \"Arseneault\": [\n        \"NNP\"\n    ], \n    \"Allentown\": [\n        \"NNP\"\n    ], \n    \"Skywalker\": [\n        \"NNP\"\n    ], \n    \"Spatiality\": [\n        \"NN\"\n    ], \n    \"Arrest\": [\n        \"NN\"\n    ], \n    \"Novaya\": [\n        \"NNP\"\n    ], \n    \"Suit\": [\n        \"NN\"\n    ], \n    \"thynke\": [\n        \"VBP\"\n    ], \n    \"life-time\": [\n        \"JJ\"\n    ], \n    \"folk\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Mekong\": [\n        \"NNP\"\n    ], \n    \"farm-policy\": [\n        \"NN\"\n    ], \n    \"robotism\": [\n        \"NN\"\n    ], \n    \"showcase\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"concessions\": [\n        \"NNS\"\n    ], \n    \"Formed\": [\n        \"VBN\"\n    ], \n    \"investable\": [\n        \"JJ\"\n    ], \n    \"nickel-iron\": [\n        \"NN\"\n    ], \n    \"Former\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"LENSES\": [\n        \"NNS\"\n    ], \n    \"St-story\": [\n        \"NN\"\n    ], \n    \"Billock\": [\n        \"NNP\"\n    ], \n    \"voluntarily\": [\n        \"RB\"\n    ], \n    \"degree\": [\n        \"NN\"\n    ], \n    \"re-arguing\": [\n        \"VBG\"\n    ], \n    \"monetary\": [\n        \"JJ\"\n    ], \n    \"youngest\": [\n        \"JJS\"\n    ], \n    \"gloat\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Enimont\": [\n        \"NNP\"\n    ], \n    \"adjoined\": [\n        \"VBD\"\n    ], \n    \"Chantal\": [\n        \"NNP\"\n    ], \n    \"Begley\": [\n        \"NNP\"\n    ], \n    \"INVESTMENT\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"survivor\": [\n        \"NN\"\n    ], \n    \"distressed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"pickle\": [\n        \"NN\"\n    ], \n    \"Haverfield\": [\n        \"NNP\"\n    ], \n    \"Insight\": [\n        \"NNP\"\n    ], \n    \"shades\": [\n        \"NNS\"\n    ], \n    \"leaving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bond-futures\": [\n        \"NNS\"\n    ], \n    \"Moross\": [\n        \"NNP\"\n    ], \n    \"submerged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pitchmen\": [\n        \"NNS\"\n    ], \n    \"lighthearted\": [\n        \"JJ\"\n    ], \n    \"writes\": [\n        \"VBZ\"\n    ], \n    \"distresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"up-to-date\": [\n        \"JJ\"\n    ], \n    \"falsity\": [\n        \"NN\"\n    ], \n    \"duct\": [\n        \"NN\"\n    ], \n    \"improbably\": [\n        \"RB\"\n    ], \n    \"apt\": [\n        \"JJ\"\n    ], \n    \"improbable\": [\n        \"JJ\"\n    ], \n    \"captaincy\": [\n        \"NN\"\n    ], \n    \"cheerleader\": [\n        \"NN\"\n    ], \n    \"walruses\": [\n        \"NNS\"\n    ], \n    \"Appraisers\": [\n        \"NNPS\"\n    ], \n    \"ape\": [\n        \"NN\"\n    ], \n    \"Clearance\": [\n        \"NN\"\n    ], \n    \"stream-of-consciousness\": [\n        \"NN\"\n    ], \n    \"hypothetically\": [\n        \"RB\"\n    ], \n    \"examination\": [\n        \"NN\"\n    ], \n    \"six-foot\": [\n        \"JJ\"\n    ], \n    \"brushwork\": [\n        \"NN\"\n    ], \n    \"constitutionally\": [\n        \"RB\"\n    ], \n    \"Arranging\": [\n        \"VBG\"\n    ], \n    \"eagles\": [\n        \"NNS\"\n    ], \n    \"freezers\": [\n        \"NNS\"\n    ], \n    \"grandest\": [\n        \"JJS\"\n    ], \n    \"clever\": [\n        \"JJ\"\n    ], \n    \"homopolymers\": [\n        \"NNS\"\n    ], \n    \"opiates\": [\n        \"NNS\"\n    ], \n    \"advertiser-programming\": [\n        \"NN\"\n    ], \n    \"antennae\": [\n        \"NNS\"\n    ], \n    \"clean-burning\": [\n        \"JJ\"\n    ], \n    \"Murmann\": [\n        \"NNP\"\n    ], \n    \"capitulated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"prepublication\": [\n        \"NN\"\n    ], \n    \"non-compliance\": [\n        \"NN\"\n    ], \n    \"antennas\": [\n        \"NNS\"\n    ], \n    \"verity\": [\n        \"NN\"\n    ], \n    \"fraternize\": [\n        \"VB\"\n    ], \n    \"disingenuous\": [\n        \"JJ\"\n    ], \n    \"Nucci\": [\n        \"NNP\"\n    ], \n    \"Hemming\": [\n        \"NNP\"\n    ], \n    \"mounded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"critic\": [\n        \"NN\"\n    ], \n    \"liquid-crystal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"profitting\": [\n        \"VBG\"\n    ], \n    \"cubists\": [\n        \"NNS\"\n    ], \n    \"Hemispheric\": [\n        \"NNP\"\n    ], \n    \"executor\": [\n        \"NN\"\n    ], \n    \"Vamp\": [\n        \"NNP\"\n    ], \n    \"palpitations\": [\n        \"NNS\"\n    ], \n    \"Varner\": [\n        \"NNP\"\n    ], \n    \"dissolve\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Dwyer\": [\n        \"NNP\"\n    ], \n    \"persuades\": [\n        \"VBZ\"\n    ], \n    \"Science\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"G.P.\": [\n        \"NNP\"\n    ], \n    \"Rimstalker\": [\n        \"NNP\"\n    ], \n    \"inaccessible\": [\n        \"JJ\"\n    ], \n    \"Forests\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Alistair\": [\n        \"NNP\"\n    ], \n    \"clomped\": [\n        \"VBD\"\n    ], \n    \"lessers\": [\n        \"NNS\"\n    ], \n    \"Buttavacoli\": [\n        \"NNP\"\n    ], \n    \"Guandong\": [\n        \"NNP\"\n    ], \n    \"Laidig\": [\n        \"NNP\"\n    ], \n    \"well-founded\": [\n        \"JJ\"\n    ], \n    \"mid-term\": [\n        \"JJ\"\n    ], \n    \"hinders\": [\n        \"VBZ\"\n    ], \n    \"justifiable\": [\n        \"JJ\"\n    ], \n    \"struggles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Afnasjev\": [\n        \"NNP\"\n    ], \n    \"fiscal-first-quarter\": [\n        \"JJ\"\n    ], \n    \"justifiably\": [\n        \"RB\"\n    ], \n    \"struggled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"toddler\": [\n        \"NN\"\n    ], \n    \"Montero\": [\n        \"NNP\"\n    ], \n    \"Campobello\": [\n        \"NNP\"\n    ], \n    \"fifth-inning\": [\n        \"NN\"\n    ], \n    \"Dorfman\": [\n        \"NNP\"\n    ], \n    \"Reading\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Soba\": [\n        \"FW\"\n    ], \n    \"Noranda\": [\n        \"NNP\"\n    ], \n    \"monthlong\": [\n        \"JJ\"\n    ], \n    \"tact\": [\n        \"NN\"\n    ], \n    \"militarist\": [\n        \"NN\"\n    ], \n    \"tack\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"wrist\": [\n        \"NN\"\n    ], \n    \"restructures\": [\n        \"VBZ\"\n    ], \n    \"Orchestration\": [\n        \"NNP\"\n    ], \n    \"militarism\": [\n        \"NN\"\n    ], \n    \"radio-station\": [\n        \"NN\"\n    ], \n    \"Dronk\": [\n        \"NNP\"\n    ], \n    \"Cognos\": [\n        \"NNP\"\n    ], \n    \"Vickery\": [\n        \"NNP\"\n    ], \n    \"majorities\": [\n        \"NNS\"\n    ], \n    \"Vickers\": [\n        \"NNP\"\n    ], \n    \"Anac\": [\n        \"NNP\"\n    ], \n    \"arduous\": [\n        \"JJ\"\n    ], \n    \"Demme\": [\n        \"NNP\"\n    ], \n    \"manganese\": [\n        \"NN\"\n    ], \n    \"softdrink\": [\n        \"NN\"\n    ], \n    \"Pamasu\": [\n        \"NNP\"\n    ], \n    \"six-year\": [\n        \"JJ\"\n    ], \n    \"Norgle\": [\n        \"NNP\"\n    ], \n    \"broad-scaled\": [\n        \"JJ\"\n    ], \n    \"colognes\": [\n        \"NNS\"\n    ], \n    \"beauties\": [\n        \"NNS\"\n    ], \n    \"Shellpot\": [\n        \"NNP\"\n    ], \n    \"goof-offs\": [\n        \"NNS\"\n    ], \n    \"reporters\": [\n        \"NNS\"\n    ], \n    \"meager\": [\n        \"JJ\"\n    ], \n    \"Sophomores\": [\n        \"NNS\"\n    ], \n    \"Shaevitz\": [\n        \"NNP\"\n    ], \n    \"bolognaise\": [\n        \"FW\"\n    ], \n    \"Cecilia\": [\n        \"NNP\"\n    ], \n    \"Elyria\": [\n        \"NNP\"\n    ], \n    \"flautist\": [\n        \"NN\"\n    ], \n    \"GENENTECH\": [\n        \"NNP\"\n    ], \n    \"Poszgay\": [\n        \"NNP\"\n    ], \n    \"holiday\": [\n        \"NN\"\n    ], \n    \"TransAmerican\": [\n        \"NNP\"\n    ], \n    \"campaigned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pan-national\": [\n        \"JJ\"\n    ], \n    \"idiomatic\": [\n        \"JJ\"\n    ], \n    \"latermaturing\": [\n        \"JJ\"\n    ], \n    \"interstellar\": [\n        \"JJ\"\n    ], \n    \"Eddies\": [\n        \"NNP\"\n    ], \n    \"land-based\": [\n        \"JJ\"\n    ], \n    \"Nederlandse\": [\n        \"NNP\"\n    ], \n    \"Estherson\": [\n        \"NNP\"\n    ], \n    \"leniency\": [\n        \"NN\"\n    ], \n    \"crystallographers\": [\n        \"NNS\"\n    ], \n    \"Turnover\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"landings\": [\n        \"NNS\"\n    ], \n    \"articles\": [\n        \"NNS\"\n    ], \n    \"E-2C\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"footstool\": [\n        \"NN\"\n    ], \n    \"Stanford-Idec\": [\n        \"NNP\"\n    ], \n    \"trimmer\": [\n        \"JJR\"\n    ], \n    \"Nogol\": [\n        \"NNP\"\n    ], \n    \"Slowing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"trimmed\": [\n        \"VBN\", \n        \"RBR\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"strike-bound\": [\n        \"JJ\"\n    ], \n    \"Calderon\": [\n        \"NNP\"\n    ], \n    \"hosses\": [\n        \"NNS\"\n    ], \n    \"dogmatic\": [\n        \"JJ\"\n    ], \n    \"cocoon\": [\n        \"NN\"\n    ], \n    \"oui\": [\n        \"FW\"\n    ], \n    \"Moiseyev\": [\n        \"NNP\"\n    ], \n    \"car-happy\": [\n        \"JJ\"\n    ], \n    \"whimsy\": [\n        \"NN\"\n    ], \n    \"oud\": [\n        \"NN\"\n    ], \n    \"Oryx\": [\n        \"NNP\"\n    ], \n    \"Ronnel\": [\n        \"NN\"\n    ], \n    \"Chaucer\": [\n        \"NNP\"\n    ], \n    \"PRIVILEGE\": [\n        \"NN\"\n    ], \n    \"our\": [\n        \"PRP$\"\n    ], \n    \"Structures\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"additions\": [\n        \"NNS\"\n    ], \n    \"out\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Borrowed\": [\n        \"VBN\"\n    ], \n    \"Genigraphics\": [\n        \"NNP\"\n    ], \n    \"southerly\": [\n        \"JJ\"\n    ], \n    \"hagglings\": [\n        \"NNS\"\n    ], \n    \"acknowledgment\": [\n        \"NN\"\n    ], \n    \"sentiment\": [\n        \"NN\"\n    ], \n    \"Warrenton\": [\n        \"NNP\"\n    ], \n    \"cerebral\": [\n        \"JJ\"\n    ], \n    \"Fabi\": [\n        \"NNP\"\n    ], \n    \"gossamer\": [\n        \"NN\"\n    ], \n    \"telemarketers\": [\n        \"NNS\"\n    ], \n    \"plaguing\": [\n        \"VBG\"\n    ], \n    \"Borrower\": [\n        \"NN\"\n    ], \n    \"Goldwyn\": [\n        \"NNP\"\n    ], \n    \"IDA\": [\n        \"NNP\"\n    ], \n    \"frankness\": [\n        \"NN\"\n    ], \n    \"fourth-consecutive\": [\n        \"JJ\"\n    ], \n    \"disclose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fists\": [\n        \"NNS\"\n    ], \n    \"insecurities\": [\n        \"NNS\"\n    ], \n    \"Dianne\": [\n        \"NNP\"\n    ], \n    \"BURBANK\": [\n        \"NNP\"\n    ], \n    \"Unconcerned\": [\n        \"JJ\"\n    ], \n    \"Azioni\": [\n        \"NNP\"\n    ], \n    \"tenement\": [\n        \"NN\"\n    ], \n    \"Verification\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"miscellanies\": [\n        \"NNS\"\n    ], \n    \"Agnew\": [\n        \"NNP\"\n    ], \n    \"tenant\": [\n        \"NN\"\n    ], \n    \"Agnes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"miscount\": [\n        \"NN\"\n    ], \n    \"informs\": [\n        \"VBZ\"\n    ], \n    \"Durante\": [\n        \"NNP\"\n    ], \n    \"grass-green\": [\n        \"JJ\"\n    ], \n    \"York-born\": [\n        \"NNP|VBN\"\n    ], \n    \"Hyde\": [\n        \"NNP\"\n    ], \n    \"Diving\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hallucigenia\": [\n        \"NNP\"\n    ], \n    \"Divine\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"museum\": [\n        \"NN\"\n    ], \n    \"Baldness\": [\n        \"NN\"\n    ], \n    \"recession-wary\": [\n        \"JJ\"\n    ], \n    \"Wadsworth\": [\n        \"NNP\"\n    ], \n    \"obscurity\": [\n        \"NN\"\n    ], \n    \"Bartholow\": [\n        \"NNP\"\n    ], \n    \"signboard\": [\n        \"NN\"\n    ], \n    \"realtors\": [\n        \"NNS\"\n    ], \n    \"bonnet\": [\n        \"NN\"\n    ], \n    \"little-noticed\": [\n        \"JJ\"\n    ], \n    \"galvanized\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"apprenticeship\": [\n        \"NN\"\n    ], \n    \"Gyp\": [\n        \"NNP\"\n    ], \n    \"outstate\": [\n        \"JJ\"\n    ], \n    \"umbrellas\": [\n        \"NNS\"\n    ], \n    \"Valery\": [\n        \"NNP\"\n    ], \n    \"M.D.-speak\": [\n        \"JJ\"\n    ], \n    \"Dickensian\": [\n        \"JJ\"\n    ], \n    \"wagging\": [\n        \"VBG\"\n    ], \n    \"Fitz\": [\n        \"NNP\"\n    ], \n    \"Brokers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Duston\": [\n        \"NNP\"\n    ], \n    \"Hawk\": [\n        \"NNP\"\n    ], \n    \"Moscone\": [\n        \"NNP\"\n    ], \n    \"Hawn\": [\n        \"NNP\"\n    ], \n    \"tidbit\": [\n        \"NN\"\n    ], \n    \"ombudsman\": [\n        \"NN\"\n    ], \n    \"Trader\": [\n        \"NNP\"\n    ], \n    \"Trades\": [\n        \"NNPS\"\n    ], \n    \"disheartening\": [\n        \"JJ\"\n    ], \n    \"insta-book\": [\n        \"NN\"\n    ], \n    \"Kirschner\": [\n        \"NNP\"\n    ], \n    \"Hauptman\": [\n        \"NNP\"\n    ], \n    \"mules\": [\n        \"NNS\"\n    ], \n    \"diminish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Koopman\": [\n        \"NNP\"\n    ], \n    \"Traded\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Reactions\": [\n        \"NNS\"\n    ], \n    \"U.S.-U.K.\": [\n        \"JJ\"\n    ], \n    \"succeeded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"monetary-policy\": [\n        \"NN\"\n    ], \n    \"objectionable\": [\n        \"JJ\"\n    ], \n    \"Petey\": [\n        \"NN\"\n    ], \n    \"wish-list\": [\n        \"NN\"\n    ], \n    \"Vessel\": [\n        \"NNP\"\n    ], \n    \"Lyme-disease\": [\n        \"JJ\"\n    ], \n    \"Peter\": [\n        \"NNP\"\n    ], \n    \"M&A\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tracts\": [\n        \"NNS\"\n    ], \n    \"clip\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"M&H\": [\n        \"NNP\"\n    ], \n    \"Anton\": [\n        \"NNP\"\n    ], \n    \"recyclable\": [\n        \"JJ\"\n    ], \n    \"coalesces\": [\n        \"VBZ\"\n    ], \n    \"Norborne\": [\n        \"NNP\"\n    ], \n    \"Jody\": [\n        \"NNP\"\n    ], \n    \"linked\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"ringed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"pallor\": [\n        \"NN\"\n    ], \n    \"Cheryl\": [\n        \"NNP\"\n    ], \n    \"pupils\": [\n        \"NNS\"\n    ], \n    \"bough\": [\n        \"NN\"\n    ], \n    \"Orlowski\": [\n        \"NNP\"\n    ], \n    \"Bayerische\": [\n        \"NNP\"\n    ], \n    \"Airfones\": [\n        \"NNS\"\n    ], \n    \"unbearably\": [\n        \"RB\"\n    ], \n    \"Dewey\": [\n        \"NNP\"\n    ], \n    \"energy-services\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"dollar-sign\": [\n        \"NN\"\n    ], \n    \"leakers\": [\n        \"NNS\"\n    ], \n    \"bellwethers\": [\n        \"NNS\"\n    ], \n    \"accountants\": [\n        \"NNS\"\n    ], \n    \"digestive\": [\n        \"JJ\"\n    ], \n    \"Klass\": [\n        \"NNP\"\n    ], \n    \"Panels\": [\n        \"NNS\"\n    ], \n    \"Cyprian\": [\n        \"NNP\"\n    ], \n    \"spirits\": [\n        \"NNS\"\n    ], \n    \"subjective\": [\n        \"JJ\"\n    ], \n    \"polyester\": [\n        \"NN\"\n    ], \n    \"Shoppes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"whipsawing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Slim\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"trounced\": [\n        \"VBD\"\n    ], \n    \"Actions\": [\n        \"NNS\"\n    ], \n    \"Atty.\": [\n        \"NNP\"\n    ], \n    \"open-handed\": [\n        \"JJ\"\n    ], \n    \"VeloBind\": [\n        \"NNP\"\n    ], \n    \"Huck\": [\n        \"NNP\"\n    ], \n    \"post-Revolutionary\": [\n        \"JJ\"\n    ], \n    \"agreed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"large-denomination\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"artfully\": [\n        \"RB\"\n    ], \n    \"longevity\": [\n        \"NN\"\n    ], \n    \"technician\": [\n        \"NN\"\n    ], \n    \"docilely\": [\n        \"RB\"\n    ], \n    \"Terral\": [\n        \"NNP\"\n    ], \n    \"fission\": [\n        \"NN\"\n    ], \n    \"weekly\": [\n        \"JJ\", \n        \"RB|JJ\", \n        \"NN|JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"fear\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"feat\": [\n        \"NN\"\n    ], \n    \"Genossenschafts\": [\n        \"NNP\"\n    ], \n    \"postulates\": [\n        \"NNS\"\n    ], \n    \"nearer\": [\n        \"JJR\", \n        \"IN\", \n        \"RBR\"\n    ], \n    \"put-option\": [\n        \"NN\"\n    ], \n    \"Sekisui\": [\n        \"NNP\"\n    ], \n    \"justitia\": [\n        \"NN\"\n    ], \n    \"postulated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"studded\": [\n        \"VBN\"\n    ], \n    \"local\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"not-yet-married\": [\n        \"JJ\"\n    ], \n    \"plazas\": [\n        \"NNS\"\n    ], \n    \"agree.\": [\n        \"VB\"\n    ], \n    \"symptom-free\": [\n        \"JJ\"\n    ], \n    \"monuments\": [\n        \"NNS\"\n    ], \n    \"Platzer\": [\n        \"NNP\"\n    ], \n    \"massacre\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Champagnes\": [\n        \"NNS\"\n    ], \n    \"burglars\": [\n        \"NNS\"\n    ], \n    \"malaise\": [\n        \"NN\"\n    ], \n    \"misbranded\": [\n        \"JJ\"\n    ], \n    \"post-attack\": [\n        \"JJ\"\n    ], \n    \"Providing\": [\n        \"VBG\"\n    ], \n    \"airman\": [\n        \"NN\"\n    ], \n    \"manye\": [\n        \"JJ\"\n    ], \n    \"differential\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nonracial\": [\n        \"JJ\"\n    ], \n    \"ITEL\": [\n        \"NNP\"\n    ], \n    \"leviathan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"avoidable\": [\n        \"JJ\"\n    ], \n    \"ascertain\": [\n        \"VB\"\n    ], \n    \"Sevigli\": [\n        \"NNP\"\n    ], \n    \"Draco\": [\n        \"NNP\"\n    ], \n    \"Kueneke\": [\n        \"NNP\"\n    ], \n    \"Einhorn\": [\n        \"NNP\"\n    ], \n    \"predictive\": [\n        \"JJ\"\n    ], \n    \"requirement\": [\n        \"NN\"\n    ], \n    \"Philco\": [\n        \"NNP\"\n    ], \n    \"State-controlled\": [\n        \"JJ\"\n    ], \n    \"humiliation\": [\n        \"NN\"\n    ], \n    \"Branching\": [\n        \"NNP\"\n    ], \n    \"Friedenwald\": [\n        \"NNP\"\n    ], \n    \"longer-lived\": [\n        \"JJ\"\n    ], \n    \"pigeon-holed\": [\n        \"JJ\"\n    ], \n    \"Over-chilling\": [\n        \"NN\"\n    ], \n    \"Bowls\": [\n        \"NNP\"\n    ], \n    \"buzzed\": [\n        \"VBD\"\n    ], \n    \"non-cyclical\": [\n        \"JJ\"\n    ], \n    \"luminous\": [\n        \"JJ\"\n    ], \n    \"Orben\": [\n        \"NNP\"\n    ], \n    \"Galatians\": [\n        \"NNPS\"\n    ], \n    \"drawling\": [\n        \"VBG\"\n    ], \n    \"droughts\": [\n        \"NNS\"\n    ], \n    \"favor\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"chairmanship\": [\n        \"NN\"\n    ], \n    \"doxepin\": [\n        \"NN\"\n    ], \n    \"boughs\": [\n        \"NNS\"\n    ], \n    \"Affect\": [\n        \"VB\"\n    ], \n    \"yellerish\": [\n        \"JJ\"\n    ], \n    \"bought\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Foerster\": [\n        \"NNP\"\n    ], \n    \"Conception\": [\n        \"NNP\"\n    ], \n    \"ability\": [\n        \"NN\"\n    ], \n    \"opening\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Smith-Kline\": [\n        \"NNP\"\n    ], \n    \"Hokey\": [\n        \"JJ\"\n    ], \n    \"Vector\": [\n        \"NNP\"\n    ], \n    \"fast-firing\": [\n        \"JJ\"\n    ], \n    \"Jury\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pretoria\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Retrieval\": [\n        \"NNP\"\n    ], \n    \"Kemper\": [\n        \"NNP\"\n    ], \n    \"Mets\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Peladeau\": [\n        \"NNP\"\n    ], \n    \"Metz\": [\n        \"NNP\"\n    ], \n    \"theoreticians\": [\n        \"NNS\"\n    ], \n    \"natural-foods\": [\n        \"NNS\"\n    ], \n    \"Meta\": [\n        \"NNP\"\n    ], \n    \"non-British\": [\n        \"JJ\"\n    ], \n    \"tactical\": [\n        \"JJ\"\n    ], \n    \"unclear\": [\n        \"JJ\"\n    ], \n    \"Lila\": [\n        \"NNP\"\n    ], \n    \"Harriman\": [\n        \"NNP\"\n    ], \n    \"MIDDLEMAN\": [\n        \"NN\"\n    ], \n    \"environments\": [\n        \"NNS\"\n    ], \n    \"Thieves\": [\n        \"NNS\"\n    ], \n    \"Lonsdale\": [\n        \"NNP\"\n    ], \n    \"connotes\": [\n        \"VBZ\"\n    ], \n    \"Lily\": [\n        \"NNP\"\n    ], \n    \"electrocardiogram\": [\n        \"NN\"\n    ], \n    \"unclean\": [\n        \"JJ\"\n    ], \n    \"Shoettle\": [\n        \"NNP\"\n    ], \n    \"occured\": [\n        \"VBD\"\n    ], \n    \"motorbike\": [\n        \"NN\"\n    ], \n    \"Mendes\": [\n        \"NNP\"\n    ], \n    \"platform\": [\n        \"NN\"\n    ], \n    \"choosier\": [\n        \"JJR\"\n    ], \n    \"Mendez\": [\n        \"NNP\"\n    ], \n    \"boatman\": [\n        \"NN\"\n    ], \n    \"reservations\": [\n        \"NNS\"\n    ], \n    \"No-Cal\": [\n        \"NNP\"\n    ], \n    \"symbolic-sounding\": [\n        \"JJ\"\n    ], \n    \"Guild\": [\n        \"NNP\"\n    ], \n    \"bedded\": [\n        \"VBN\"\n    ], \n    \"Pothier\": [\n        \"NNP\"\n    ], \n    \"scrutiny\": [\n        \"NN\"\n    ], \n    \"dressers\": [\n        \"NNS\"\n    ], \n    \"pageants\": [\n        \"NNS\"\n    ], \n    \"tangible\": [\n        \"JJ\"\n    ], \n    \"Ennis\": [\n        \"NNP\"\n    ], \n    \"Porsches\": [\n        \"NNPS\"\n    ], \n    \"verbenas\": [\n        \"NNS\"\n    ], \n    \"admonishments\": [\n        \"NNS\"\n    ], \n    \"management-led\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fearful\": [\n        \"JJ\"\n    ], \n    \"come-uppance\": [\n        \"NN\"\n    ], \n    \"speculator\": [\n        \"NN\"\n    ], \n    \"Concludes\": [\n        \"VBZ\"\n    ], \n    \"Preyss\": [\n        \"NNP\"\n    ], \n    \"black-crowned\": [\n        \"JJ\"\n    ], \n    \"motif\": [\n        \"NN\"\n    ], \n    \"ringing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Miner\": [\n        \"NNP\"\n    ], \n    \"Abernathys\": [\n        \"NNPS\"\n    ], \n    \"Sunlight\": [\n        \"NNP\"\n    ], \n    \"rooster\": [\n        \"NN\"\n    ], \n    \"thum\": [\n        \"PRP\"\n    ], \n    \"gunship\": [\n        \"NN\"\n    ], \n    \"thug\": [\n        \"NN\"\n    ], \n    \"co-edited\": [\n        \"JJ\"\n    ], \n    \"Troup\": [\n        \"NNP\"\n    ], \n    \"gyroscopes\": [\n        \"NNS\"\n    ], \n    \"weak-kneed\": [\n        \"JJ\"\n    ], \n    \"Trout\": [\n        \"NNP\"\n    ], \n    \"pilgrimages\": [\n        \"NNS\"\n    ], \n    \"twin-engined\": [\n        \"JJ\"\n    ], \n    \"PROPOSED\": [\n        \"VBD\"\n    ], \n    \"eight-week\": [\n        \"JJ\"\n    ], \n    \"subcontract\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"waitresses\": [\n        \"NNS\"\n    ], \n    \"Wishing\": [\n        \"VBG\"\n    ], \n    \"largess\": [\n        \"NN\"\n    ], \n    \"geographical\": [\n        \"JJ\"\n    ], \n    \"largest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"misogynist\": [\n        \"NN\"\n    ], \n    \"Communist-inspired\": [\n        \"JJ\"\n    ], \n    \"Insights\": [\n        \"NNPS\"\n    ], \n    \"clamors\": [\n        \"VBZ\"\n    ], \n    \"Billikens\": [\n        \"NNP\"\n    ], \n    \"hunting-gear\": [\n        \"JJ\"\n    ], \n    \"slave\": [\n        \"NN\"\n    ], \n    \"Purdue\": [\n        \"NNP\"\n    ], \n    \"conceived\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Axa-Midi\": [\n        \"NNP\"\n    ], \n    \"toxicology\": [\n        \"NN\"\n    ], \n    \"throngs\": [\n        \"NNS\"\n    ], \n    \"laborious\": [\n        \"JJ\"\n    ], \n    \"conceives\": [\n        \"VBZ\"\n    ], \n    \"conceiver\": [\n        \"NN\"\n    ], \n    \"PLO-backed\": [\n        \"JJ\"\n    ], \n    \"Janizsewski\": [\n        \"NNP\"\n    ], \n    \"undertakes\": [\n        \"VBZ\"\n    ], \n    \"undertaker\": [\n        \"NN\"\n    ], \n    \"Kopcke\": [\n        \"NNP\"\n    ], \n    \"DuCharme\": [\n        \"NNP\"\n    ], \n    \"banging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"catastrophically\": [\n        \"RB\"\n    ], \n    \"medium-duty\": [\n        \"JJ\"\n    ], \n    \"StatesWest\": [\n        \"NNP\", \n        \"JJS\"\n    ], \n    \"undertaken\": [\n        \"VBN\"\n    ], \n    \"decliners\": [\n        \"NNS\"\n    ], \n    \"excessive\": [\n        \"JJ\"\n    ], \n    \"Deliver\": [\n        \"VB\"\n    ], \n    \"once-vast\": [\n        \"JJ\"\n    ], \n    \"germanium\": [\n        \"NN\"\n    ], \n    \"reincorporated\": [\n        \"VBN\"\n    ], \n    \"Romo\": [\n        \"NNP\"\n    ], \n    \"Engrg\": [\n        \"NNP\"\n    ], \n    \"underperforming\": [\n        \"VBG\", \n        \"VBG|JJ\", \n        \"JJ\"\n    ], \n    \"Weeks\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"envisaged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"z-Not\": [\n        \"RB\"\n    ], \n    \"post-Vietnam\": [\n        \"JJ\"\n    ], \n    \"uncommonly\": [\n        \"RB\"\n    ], \n    \"arresting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"arylesterases\": [\n        \"NNS\"\n    ], \n    \"clothier\": [\n        \"NN\"\n    ], \n    \"Sacrestia\": [\n        \"NNP\"\n    ], \n    \"Genel\": [\n        \"NNP\"\n    ], \n    \"jars\": [\n        \"NNS\"\n    ], \n    \"more-powerful\": [\n        \"JJR\"\n    ], \n    \"Couch-potato\": [\n        \"NN\"\n    ], \n    \"astrological\": [\n        \"JJ\"\n    ], \n    \"MacWhorter\": [\n        \"NNP\"\n    ], \n    \"high-leverage\": [\n        \"JJ\"\n    ], \n    \"Lubkin\": [\n        \"NNP\"\n    ], \n    \"Adios-On\": [\n        \"NNP\"\n    ], \n    \"blueprints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"frighteningly\": [\n        \"RB\"\n    ], \n    \"envisages\": [\n        \"VBZ\"\n    ], \n    \"facial\": [\n        \"JJ\"\n    ], \n    \"Schumacher\": [\n        \"NNP\"\n    ], \n    \"press\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ethernet\": [\n        \"NNP\"\n    ], \n    \"chutzpah\": [\n        \"NN\"\n    ], \n    \"countervailing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"check-out\": [\n        \"NN\"\n    ], \n    \"Zurn\": [\n        \"NNP\"\n    ], \n    \"truck-parts\": [\n        \"NNS\"\n    ], \n    \"Tangible\": [\n        \"JJ\"\n    ], \n    \"Paranormal\": [\n        \"NNP\"\n    ], \n    \"Kenyon\": [\n        \"NNP\"\n    ], \n    \"wonders\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"darbuka\": [\n        \"NN\"\n    ], \n    \"Sue\": [\n        \"NNP\"\n    ], \n    \"Amdec\": [\n        \"NNP\"\n    ], \n    \"spot-news\": [\n        \"NNS\"\n    ], \n    \"Sun\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sum\": [\n        \"NNP\"\n    ], \n    \"flagrant\": [\n        \"JJ\"\n    ], \n    \"expositions\": [\n        \"NNS\"\n    ], \n    \"Saicheua\": [\n        \"NNP\"\n    ], \n    \"Suu\": [\n        \"NNP\"\n    ], \n    \"Sut\": [\n        \"NNP\"\n    ], \n    \"Sur\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"vicarious\": [\n        \"JJ\"\n    ], \n    \"synchotron\": [\n        \"JJ\"\n    ], \n    \"Nike-Zeus\": [\n        \"NNP\"\n    ], \n    \"employment\": [\n        \"NN\"\n    ], \n    \"text-ordered\": [\n        \"JJ\"\n    ], \n    \"breakthroughs\": [\n        \"NNS\"\n    ], \n    \"Sponsors\": [\n        \"NNS\"\n    ], \n    \"staccato\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"dipoles\": [\n        \"NNS\"\n    ], \n    \"vesting\": [\n        \"VBG\"\n    ], \n    \"mealynose\": [\n        \"NN\"\n    ], \n    \"Energized\": [\n        \"VBN\"\n    ], \n    \"Andee\": [\n        \"NNP\"\n    ], \n    \"acronym\": [\n        \"NN\"\n    ], \n    \"Penna.\": [\n        \"FW\"\n    ], \n    \"Jewel\": [\n        \"NNP\"\n    ], \n    \"Andel\": [\n        \"NNP\"\n    ], \n    \"Andes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Darlow\": [\n        \"NNP\"\n    ], \n    \"Remove\": [\n        \"VB\"\n    ], \n    \"item-veto\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"ECPA\": [\n        \"NNP\"\n    ], \n    \"Ellamae\": [\n        \"NNP\"\n    ], \n    \"non-Hispanic\": [\n        \"JJ\"\n    ], \n    \"inboards\": [\n        \"NNS\"\n    ], \n    \"Americana\": [\n        \"NNS\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Americano\": [\n        \"NNP\"\n    ], \n    \"Sheller-Globe\": [\n        \"NNP\"\n    ], \n    \"constructon\": [\n        \"NN\"\n    ], \n    \"Stigmata\": [\n        \"NNS\"\n    ], \n    \"dial-a-banker\": [\n        \"JJ\"\n    ], \n    \"futurist\": [\n        \"NN\"\n    ], \n    \"Hepker\": [\n        \"NNP\"\n    ], \n    \"Portrait\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Pointer\": [\n        \"NNP\"\n    ], \n    \"Pointes\": [\n        \"NNP\"\n    ], \n    \"converging\": [\n        \"VBG\"\n    ], \n    \"Morgan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wilderness\": [\n        \"NN\"\n    ], \n    \"previous-month\": [\n        \"JJ\"\n    ], \n    \"Juan\": [\n        \"NNP\"\n    ], \n    \"corporate-bond\": [\n        \"JJ\"\n    ], \n    \"F-series\": [\n        \"NNPS\", \n        \"JJ\"\n    ], \n    \"weather\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"promise\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"evoking\": [\n        \"VBG\"\n    ], \n    \"unrifled\": [\n        \"JJ\"\n    ], \n    \"pre-noon\": [\n        \"NN\"\n    ], \n    \"iron-clad\": [\n        \"JJ\"\n    ], \n    \"Lightstone\": [\n        \"NNP\"\n    ], \n    \"fawning\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"CH-47D\": [\n        \"NNP\"\n    ], \n    \"egalitarian\": [\n        \"JJ\"\n    ], \n    \"transfer\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Invitations\": [\n        \"NNS\"\n    ], \n    \"Amy\": [\n        \"NNP\"\n    ], \n    \"Brinsley\": [\n        \"NNP\"\n    ], \n    \"Stoic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"resists\": [\n        \"VBZ\"\n    ], \n    \"Amp\": [\n        \"NNP\"\n    ], \n    \"farm-product\": [\n        \"NN\"\n    ], \n    \"Amt\": [\n        \"FW\"\n    ], \n    \"Prominent\": [\n        \"JJ\"\n    ], \n    \"chalky\": [\n        \"JJ\"\n    ], \n    \"hilar\": [\n        \"JJ\"\n    ], \n    \"Gunton\": [\n        \"NNP\"\n    ], \n    \"Turandot\": [\n        \"NNP\"\n    ], \n    \"trimester\": [\n        \"NN\"\n    ], \n    \"assail\": [\n        \"VB\"\n    ], \n    \"Bangladesh\": [\n        \"NNP\"\n    ], \n    \"Fantasia\": [\n        \"NNP\"\n    ], \n    \"Consumer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"JoAnn\": [\n        \"NNP\"\n    ], \n    \"Lieut\": [\n        \"NN\"\n    ], \n    \"distract\": [\n        \"VB\"\n    ], \n    \"catching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"infusions\": [\n        \"NNS\"\n    ], \n    \"cake\": [\n        \"NN\"\n    ], \n    \"gullibility\": [\n        \"NN\"\n    ], \n    \"sympathizing\": [\n        \"VBG\"\n    ], \n    \"government-ordered\": [\n        \"JJ\"\n    ], \n    \"carborundum\": [\n        \"JJ\"\n    ], \n    \"cream-of-the-crop\": [\n        \"NN\"\n    ], \n    \"Horten\": [\n        \"NNP\"\n    ], \n    \"work-paralysis\": [\n        \"NN\"\n    ], \n    \"inquisitor\": [\n        \"NN\"\n    ], \n    \"sheered\": [\n        \"VBD\"\n    ], \n    \"Shanghai-born\": [\n        \"JJ\"\n    ], \n    \"Soichiro\": [\n        \"NNP\"\n    ], \n    \"duplicative\": [\n        \"JJ\"\n    ], \n    \"Corby\": [\n        \"NNP\"\n    ], \n    \"Cortland\": [\n        \"NNP\"\n    ], \n    \"not-so-rich\": [\n        \"NN\"\n    ], \n    \"gross-income\": [\n        \"NN\"\n    ], \n    \"Wines\": [\n        \"NNP\"\n    ], \n    \"Brundtland\": [\n        \"NNP\"\n    ], \n    \"curtained\": [\n        \"JJ\"\n    ], \n    \"Lufthansa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"complection\": [\n        \"NN\"\n    ], \n    \"COPE\": [\n        \"VB\"\n    ], \n    \"Merion\": [\n        \"NNP\"\n    ], \n    \"incredibly\": [\n        \"RB\"\n    ], \n    \"hot-pink\": [\n        \"JJ\"\n    ], \n    \"MD90\": [\n        \"NN\"\n    ], \n    \"shredded\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"nourishment\": [\n        \"NN\"\n    ], \n    \"Torrid-Mighty\": [\n        \"NNP\"\n    ], \n    \"Future\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"agrarian-reform\": [\n        \"JJ\"\n    ], \n    \"perfectionists\": [\n        \"NNS\"\n    ], \n    \"squeak\": [\n        \"NN\"\n    ], \n    \"exchangers\": [\n        \"NNS\"\n    ], \n    \"cliff\": [\n        \"NN\"\n    ], \n    \"pre-Punic\": [\n        \"JJ\"\n    ], \n    \"coupling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Omni\": [\n        \"NNP\"\n    ], \n    \"Lavaughn\": [\n        \"NNP\"\n    ], \n    \"seceding\": [\n        \"VBG\"\n    ], \n    \"Orders\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"riboflavin\": [\n        \"NN\"\n    ], \n    \"Bogart\": [\n        \"NNP\"\n    ], \n    \"smoke-filled\": [\n        \"JJ\"\n    ], \n    \"HIGHEST\": [\n        \"JJS\"\n    ], \n    \"Assurances\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"life-death\": [\n        \"JJ\"\n    ], \n    \"YORK\": [\n        \"NNP\"\n    ], \n    \"unscientific\": [\n        \"JJ\"\n    ], \n    \"writings\": [\n        \"NNS\"\n    ], \n    \"finessed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Killers\": [\n        \"NNPS\"\n    ], \n    \"Leaping\": [\n        \"VBG\"\n    ], \n    \"Abbas\": [\n        \"NNP\"\n    ], \n    \"rocketing\": [\n        \"VBG\"\n    ], \n    \"Sundance\": [\n        \"NNP\"\n    ], \n    \"aegis\": [\n        \"NN\"\n    ], \n    \"ornate\": [\n        \"JJ\"\n    ], \n    \"conjuring\": [\n        \"VBG\"\n    ], \n    \"Woodwards\": [\n        \"NNP\"\n    ], \n    \"conjure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Tiles\": [\n        \"NNS\"\n    ], \n    \"herpetologists\": [\n        \"NNS\"\n    ], \n    \"electricity\": [\n        \"NN\"\n    ], \n    \"bank-holding\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"IOCS\": [\n        \"NN\"\n    ], \n    \"Z-axis\": [\n        \"NN\"\n    ], \n    \"Efficiency\": [\n        \"NN\"\n    ], \n    \"farflung\": [\n        \"NN\"\n    ], \n    \"hardness\": [\n        \"NN\"\n    ], \n    \"kwashiorkor\": [\n        \"NN\"\n    ], \n    \"homemakers\": [\n        \"NNS\"\n    ], \n    \"corporate-tax\": [\n        \"JJ\"\n    ], \n    \"swivel\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Riegger\": [\n        \"NNP\"\n    ], \n    \"deli\": [\n        \"NNS\"\n    ], \n    \"test-fired\": [\n        \"VBN\"\n    ], \n    \"preceeded\": [\n        \"VBN\"\n    ], \n    \"dell\": [\n        \"NN\"\n    ], \n    \"Mayberry\": [\n        \"NNP\"\n    ], \n    \"synthesizers\": [\n        \"NNS\"\n    ], \n    \"seven-eighths\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"uncertain\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"active-player\": [\n        \"NN\"\n    ], \n    \"FLARE-OFF\": [\n        \"NN\"\n    ], \n    \"differentiated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"prize\": [\n        \"NN\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Publique\": [\n        \"NNP\"\n    ], \n    \"Tele-Communications\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Piccolino\": [\n        \"NNP\"\n    ], \n    \"tax-exempt\": [\n        \"JJ\"\n    ], \n    \"implanting\": [\n        \"VBG\"\n    ], \n    \"specialties\": [\n        \"NNS\"\n    ], \n    \"coolers\": [\n        \"NNS\"\n    ], \n    \"Desperate\": [\n        \"JJ\"\n    ], \n    \"succession\": [\n        \"NN\"\n    ], \n    \"green-brown\": [\n        \"JJ\"\n    ], \n    \"eye-popping\": [\n        \"JJ\"\n    ], \n    \"Evidently\": [\n        \"RB\"\n    ], \n    \"Screw\": [\n        \"NNP\"\n    ], \n    \"charter\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"BEI\": [\n        \"NNP\"\n    ], \n    \"daybed\": [\n        \"NN\"\n    ], \n    \"Lubberlanders\": [\n        \"NNS\"\n    ], \n    \"BEA\": [\n        \"NNP\"\n    ], \n    \"Kelly\\\\/David\": [\n        \"NNP\"\n    ], \n    \"stiffens\": [\n        \"VBZ\"\n    ], \n    \"pro-Communist\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"icebergs\": [\n        \"NNS\"\n    ], \n    \"charted\": [\n        \"VBN\"\n    ], \n    \"shrugging\": [\n        \"VBG\"\n    ], \n    \"sterile\": [\n        \"JJ\"\n    ], \n    \"BET\": [\n        \"NNP\"\n    ], \n    \"hilariously\": [\n        \"RB\"\n    ], \n    \"country...\": [\n        \":\"\n    ], \n    \"Appeal\": [\n        \"NNP\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"ruthless\": [\n        \"JJ\"\n    ], \n    \"Boley\": [\n        \"NNP\"\n    ], \n    \"dollar-cost\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"decry\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"OmniBank\": [\n        \"NNP\"\n    ], \n    \"Poltava\": [\n        \"NNP\"\n    ], \n    \"Hooper\": [\n        \"NNP\"\n    ], \n    \"Bedford-Stuyvesant...\": [\n        \":\"\n    ], \n    \"Presidential\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Goverman\": [\n        \"NNP\"\n    ], \n    \"off-again\": [\n        \"JJ\"\n    ], \n    \"intentioned\": [\n        \"JJ\"\n    ], \n    \"Church\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interdependent\": [\n        \"JJ\"\n    ], \n    \"dogwood\": [\n        \"NN\"\n    ], \n    \"dorm\": [\n        \"NN\"\n    ], \n    \"Varviso\": [\n        \"NNP\"\n    ], \n    \"pancreas\": [\n        \"NN\"\n    ], \n    \"silica-glass\": [\n        \"NN\"\n    ], \n    \"strewn\": [\n        \"VBN\"\n    ], \n    \"shareowners\": [\n        \"NNS\"\n    ], \n    \"sloshed\": [\n        \"VBD\"\n    ], \n    \"shmaltzy\": [\n        \"NN\"\n    ], \n    \"Gas-reactor\": [\n        \"JJ\"\n    ], \n    \"Elman\": [\n        \"NNP\"\n    ], \n    \"sale-purchases\": [\n        \"NNS\"\n    ], \n    \"Choosing\": [\n        \"VBG\"\n    ], \n    \"Rognoni\": [\n        \"NNP\"\n    ], \n    \"Alternative\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Goliath\": [\n        \"NNP\"\n    ], \n    \"Compared\": [\n        \"VBN\"\n    ], \n    \"divide\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Frist\": [\n        \"FW\"\n    ], \n    \"warrantless\": [\n        \"JJ\"\n    ], \n    \"Physique\": [\n        \"NN\"\n    ], \n    \"Gatlinburg\": [\n        \"NNP\"\n    ], \n    \"summons\": [\n        \"NN\"\n    ], \n    \"Reznichenko\": [\n        \"NNP\"\n    ], \n    \"remnant\": [\n        \"NN\"\n    ], \n    \"Skeptics\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"cheating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"tardiness\": [\n        \"NN\"\n    ], \n    \"best-selling\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Slate\": [\n        \"NNP\"\n    ], \n    \"Varity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"statesmanship\": [\n        \"NN\"\n    ], \n    \"non-Tories\": [\n        \"NNS\"\n    ], \n    \"five-person\": [\n        \"JJ\"\n    ], \n    \"highflying\": [\n        \"JJ\"\n    ], \n    \"CarCool\": [\n        \"NNP\"\n    ], \n    \"Stepanovich\": [\n        \"NNP\"\n    ], \n    \"Calves\": [\n        \"NNS\"\n    ], \n    \"snap-on\": [\n        \"JJ\"\n    ], \n    \"relay\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"relax\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Softsoap\": [\n        \"NNP\"\n    ], \n    \"Halma\": [\n        \"NNP\"\n    ], \n    \"tying\": [\n        \"VBG\"\n    ], \n    \"pontifical\": [\n        \"JJ\"\n    ], \n    \"epicyclical\": [\n        \"JJ\"\n    ], \n    \"unaffiliated\": [\n        \"JJ\"\n    ], \n    \"orney\": [\n        \"JJ\"\n    ], \n    \"famed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"blade\": [\n        \"NN\"\n    ], \n    \"nonbusiness\": [\n        \"NN\"\n    ], \n    \"afar\": [\n        \"RB\"\n    ], \n    \"Pursewarden\": [\n        \"NNP\"\n    ], \n    \"Enchaine\": [\n        \"NNP\"\n    ], \n    \"Richardot\": [\n        \"NNP\"\n    ], \n    \"fames\": [\n        \"NNS\"\n    ], \n    \"Golub\": [\n        \"NNP\"\n    ], \n    \"Cardiovascular\": [\n        \"NNP\"\n    ], \n    \"DPW\": [\n        \"NNP\"\n    ], \n    \"vanities\": [\n        \"NNS\"\n    ], \n    \"DPT\": [\n        \"NNP\"\n    ], \n    \"DPS\": [\n        \"NNP\"\n    ], \n    \"newsweekly\": [\n        \"RB\"\n    ], \n    \"co-pilot\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"organized\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Briar\": [\n        \"NNP\"\n    ], \n    \"dragons\": [\n        \"NNS\"\n    ], \n    \"Brian\": [\n        \"NNP\"\n    ], \n    \"Bike\": [\n        \"NNP\"\n    ], \n    \"DPC\": [\n        \"NNP\"\n    ], \n    \"cryostat\": [\n        \"NN\"\n    ], \n    \"Daze\": [\n        \"NNP\"\n    ], \n    \"organizer\": [\n        \"NN\"\n    ], \n    \"McClelland\": [\n        \"NNP\"\n    ], \n    \"McCurdy\": [\n        \"NNP\"\n    ], \n    \"Lloyds\": [\n        \"NNP\"\n    ], \n    \"Benoit\": [\n        \"NNP\"\n    ], \n    \"yuk\": [\n        \"NN\"\n    ], \n    \"cheetah\": [\n        \"NN\"\n    ], \n    \"nitrogen-mustard\": [\n        \"JJ\"\n    ], \n    \"Eagle-Picher\": [\n        \"NNP\"\n    ], \n    \"cheetal\": [\n        \"JJ\"\n    ], \n    \"Metabolite\": [\n        \"NN\"\n    ], \n    \"shored\": [\n        \"VBN\"\n    ], \n    \"modulation\": [\n        \"NN\"\n    ], \n    \"envied\": [\n        \"VBD\"\n    ], \n    \"fiber-coupled\": [\n        \"JJ\"\n    ], \n    \"Rattigan\": [\n        \"NNP\"\n    ], \n    \"overprotection\": [\n        \"NN\"\n    ], \n    \"diagram\": [\n        \"NN\"\n    ], \n    \"quips\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"destined\": [\n        \"VBN\"\n    ], \n    \"chump\": [\n        \"NN\"\n    ], \n    \"chums\": [\n        \"NNS\"\n    ], \n    \"Petersen\": [\n        \"NNP\"\n    ], \n    \"obscuring\": [\n        \"VBG\"\n    ], \n    \"Ormat\": [\n        \"NNP\"\n    ], \n    \"effective\": [\n        \"JJ\", \n        \"VBN\", \n        \"NN\"\n    ], \n    \"scourge\": [\n        \"NN\"\n    ], \n    \"Rensselaerwyck\": [\n        \"NNP\"\n    ], \n    \"well-ruled\": [\n        \"JJ\"\n    ], \n    \"luring\": [\n        \"VBG\"\n    ], \n    \"shocker\": [\n        \"NN\"\n    ], \n    \"snowballs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"specks\": [\n        \"NNS\"\n    ], \n    \"Another\": [\n        \"DT\", \n        \"NNP\"\n    ], \n    \"always-present\": [\n        \"JJ\"\n    ], \n    \"repatriated\": [\n        \"VBN\"\n    ], \n    \"pantheist\": [\n        \"NN\"\n    ], \n    \"Kenilworth\": [\n        \"NNP\"\n    ], \n    \"squint\": [\n        \"VBP\"\n    ], \n    \"evocations\": [\n        \"NNS\"\n    ], \n    \"Monterrey\": [\n        \"NNP\"\n    ], \n    \"Cuisinarts\": [\n        \"NNPS\"\n    ], \n    \"counterbidder\": [\n        \"NN\"\n    ], \n    \"Sigurd\": [\n        \"NNP\"\n    ], \n    \"USAir\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"CHALLENGED\": [\n        \"VBN\"\n    ], \n    \"OFFERED\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN|JJ\", \n        \"VBN\"\n    ], \n    \"CBOE\": [\n        \"NNP\"\n    ], \n    \"vary\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"nonpriority\": [\n        \"NN\"\n    ], \n    \"Brew\": [\n        \"NNP\"\n    ], \n    \"Ruffians\": [\n        \"NNS\"\n    ], \n    \"CBOT\": [\n        \"NNP\"\n    ], \n    \"antacid\": [\n        \"NN\"\n    ], \n    \"Decades\": [\n        \"NNS\"\n    ], \n    \"bread-and-butter\": [\n        \"JJ\"\n    ], \n    \"well-received\": [\n        \"JJ\"\n    ], \n    \"PARTNERS\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"all-exclusive\": [\n        \"JJ\"\n    ], \n    \"lovingly\": [\n        \"RB\"\n    ], \n    \"McDougall\": [\n        \"NNP\"\n    ], \n    \"directional\": [\n        \"JJ\"\n    ], \n    \"Offered\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"bewteen\": [\n        \"IN\"\n    ], \n    \"matured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hidden\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"in-crowd\": [\n        \"NN\"\n    ], \n    \"glorify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Volvo\": [\n        \"NNP\"\n    ], \n    \"slicing\": [\n        \"VBG\"\n    ], \n    \"detachment\": [\n        \"NN\"\n    ], \n    \"wholesalers\": [\n        \"NNS\"\n    ], \n    \"var.\": [\n        \"NN\"\n    ], \n    \"DuComb\": [\n        \"NNP\"\n    ], \n    \"non-absorbent\": [\n        \"JJ\"\n    ], \n    \"hyped-up\": [\n        \"JJ\"\n    ], \n    \"structural\": [\n        \"JJ\"\n    ], \n    \"video-game\": [\n        \"NN\"\n    ], \n    \"APS\": [\n        \"NNP\"\n    ], \n    \"APV\": [\n        \"NNP\"\n    ], \n    \"APT\": [\n        \"NNP\"\n    ], \n    \"LaLonde\": [\n        \"NNP\"\n    ], \n    \"API\": [\n        \"NNP\"\n    ], \n    \"APM\": [\n        \"NNP\"\n    ], \n    \"Thirty-three\": [\n        \"NNP\"\n    ], \n    \"interfering\": [\n        \"VBG\"\n    ], \n    \"Seidel\": [\n        \"NNP\"\n    ], \n    \"expectancy\": [\n        \"NN\"\n    ], \n    \"distillers\": [\n        \"NNS\"\n    ], \n    \"biopesticide\": [\n        \"NN\"\n    ], \n    \"Labothe\": [\n        \"NNP\"\n    ], \n    \"distillery\": [\n        \"NN\"\n    ], \n    \"displacement\": [\n        \"NN\"\n    ], \n    \"Balogh\": [\n        \"NNP\"\n    ], \n    \"blinded\": [\n        \"VBN\"\n    ], \n    \"smoked-ham\": [\n        \"NN\"\n    ], \n    \"Byrum\": [\n        \"NNP\"\n    ], \n    \"Alastor\": [\n        \"NNP\"\n    ], \n    \"Dexatrim\": [\n        \"NNP\"\n    ], \n    \"diction\": [\n        \"NN\"\n    ], \n    \"Lefebvre\": [\n        \"NNP\"\n    ], \n    \"waive\": [\n        \"VB\"\n    ], \n    \"semiconductor\": [\n        \"NN\"\n    ], \n    \"strategist\": [\n        \"NN\"\n    ], \n    \"Godfrey\": [\n        \"NNP\"\n    ], \n    \"phenolic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Almagest\": [\n        \"NNP\"\n    ], \n    \"Garanti\": [\n        \"NNP\"\n    ], \n    \"University\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Secesh\": [\n        \"NNP\"\n    ], \n    \"upbringing\": [\n        \"NN\"\n    ], \n    \"Frisco\": [\n        \"NNP\"\n    ], \n    \"Notarius\": [\n        \"NNP\"\n    ], \n    \"alert\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"knit\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Erdolversorgungs\": [\n        \"NNP\"\n    ], \n    \"tie-ins\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"enlist\": [\n        \"VB\"\n    ], \n    \"scruff\": [\n        \"NN\"\n    ], \n    \"his\\\\/her\": [\n        \"JJR\"\n    ], \n    \"Carolingian\": [\n        \"JJ\"\n    ], \n    \"bated\": [\n        \"JJ\"\n    ], \n    \"Delbert\": [\n        \"NNP\"\n    ], \n    \"Yamaguchi\": [\n        \"NNP\"\n    ], \n    \"waists\": [\n        \"NNS\"\n    ], \n    \"relentlessness\": [\n        \"NN\"\n    ], \n    \"mid-priced\": [\n        \"JJ\"\n    ], \n    \"Ponzi\": [\n        \"NNP\"\n    ], \n    \"carryover\": [\n        \"NN\"\n    ], \n    \"selection-rejection\": [\n        \"JJ\"\n    ], \n    \"Gurria\": [\n        \"NNP\"\n    ], \n    \"adepts\": [\n        \"NNS\"\n    ], \n    \"Yoknapatawpha\": [\n        \"NNP\"\n    ], \n    \"loss-making\": [\n        \"JJ\"\n    ], \n    \"Postelle\": [\n        \"NNP\"\n    ], \n    \"wash\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"instruct\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Rall\": [\n        \"NNP\"\n    ], \n    \"Cullowhee\": [\n        \"NNP\"\n    ], \n    \"Hesse-Darmstadt\": [\n        \"NNP\"\n    ], \n    \"POLITICS\": [\n        \"NNS\"\n    ], \n    \"niger\": [\n        \"NN\"\n    ], \n    \"Stringer\": [\n        \"NNP\"\n    ], \n    \"Proctor\": [\n        \"NNP\"\n    ], \n    \"Vauxhill\": [\n        \"NNP\"\n    ], \n    \"Muggeridge\": [\n        \"NNP\"\n    ], \n    \"two-bits\": [\n        \"NNS\"\n    ], \n    \"R-6th\": [\n        \"NNP\"\n    ], \n    \"touting\": [\n        \"VBG\"\n    ], \n    \"muscle-meat\": [\n        \"NN\"\n    ], \n    \"listed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"blossoms\": [\n        \"NNS\"\n    ], \n    \"underlie\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"mid-fifties\": [\n        \"NNS\"\n    ], \n    \"listen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"banister\": [\n        \"NN\"\n    ], \n    \"predictably\": [\n        \"RB\"\n    ], \n    \"predictable\": [\n        \"JJ\"\n    ], \n    \"hayfields\": [\n        \"NNS\"\n    ], \n    \"sulphur\": [\n        \"NN\"\n    ], \n    \"MIPS-based\": [\n        \"JJ\"\n    ], \n    \"Beautiful\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"attendent\": [\n        \"NN\"\n    ], \n    \"outlay\": [\n        \"NN\"\n    ], \n    \"Give\": [\n        \"VB\"\n    ], \n    \"outlaw\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"halogens\": [\n        \"NNS\"\n    ], \n    \"one-twentieth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Feess\": [\n        \"NNP\"\n    ], \n    \"seminars\": [\n        \"NNS\"\n    ], \n    \"Poussin\": [\n        \"NNP\"\n    ], \n    \"dressmaking\": [\n        \"NN\"\n    ], \n    \"Attitudes\": [\n        \"NNS\"\n    ], \n    \"seminary\": [\n        \"NN\"\n    ], \n    \"Irish-Soviet\": [\n        \"JJ\"\n    ], \n    \"Jarrodsville\": [\n        \"NNP\"\n    ], \n    \"Angelo\": [\n        \"NNP\"\n    ], \n    \"PENCIL\": [\n        \"NNP\"\n    ], \n    \"Gradually\": [\n        \"RB\"\n    ], \n    \"Angell\": [\n        \"NNP\"\n    ], \n    \"Bilanz\": [\n        \"NNP\"\n    ], \n    \"entail\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"privvy\": [\n        \"JJ\"\n    ], \n    \"Sumter\": [\n        \"NNP\"\n    ], \n    \"Angela\": [\n        \"NNP\"\n    ], \n    \"Wis.\": [\n        \"NNP\"\n    ], \n    \"side-stepping\": [\n        \"JJ\"\n    ], \n    \"non-AMT\": [\n        \"JJ\"\n    ], \n    \"Mnuchin\": [\n        \"NNP\"\n    ], \n    \"Goloven\": [\n        \"NNP\"\n    ], \n    \"Angels\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Williams\": [\n        \"NNP\"\n    ], \n    \"Flexural\": [\n        \"JJ\"\n    ], \n    \"ex-Gov\": [\n        \"NNP\"\n    ], \n    \"concrete\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Conlin\": [\n        \"NNP\"\n    ], \n    \"nagged\": [\n        \"VBD\"\n    ], \n    \"Schrage\": [\n        \"NNP\"\n    ], \n    \"Angel\\\\\": [\n        \"NNP\"\n    ], \n    \"agressive\": [\n        \"JJ\"\n    ], \n    \"Russo\": [\n        \"NNP\"\n    ], \n    \"Selway-Swift\": [\n        \"NNP\"\n    ], \n    \"Guglielmo\": [\n        \"NNP\"\n    ], \n    \"Wise\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"miscalculated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Stevric\": [\n        \"NNP\"\n    ], \n    \"doin\": [\n        \"VBG\"\n    ], \n    \"Direct-mail\": [\n        \"JJ\"\n    ], \n    \"letter\": [\n        \"NN\"\n    ], \n    \"counter-escalation\": [\n        \"NN\"\n    ], \n    \"drought\": [\n        \"NN\"\n    ], \n    \"ipso\": [\n        \"FW\"\n    ], \n    \"trapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Dyer\": [\n        \"NNP\"\n    ], \n    \"undamaged\": [\n        \"JJ\"\n    ], \n    \"episode\": [\n        \"NN\"\n    ], \n    \"infidel\": [\n        \"JJ\"\n    ], \n    \"regulative\": [\n        \"JJ\"\n    ], \n    \"Ragavan\": [\n        \"NNP\"\n    ], \n    \"rollickingly\": [\n        \"RB\"\n    ], \n    \"Meshulam\": [\n        \"NNP\"\n    ], \n    \"kingdom-wide\": [\n        \"JJ\"\n    ], \n    \"departing\": [\n        \"VBG\"\n    ], \n    \"magisterially\": [\n        \"RB\"\n    ], \n    \"Astrodome\": [\n        \"NNP\"\n    ], \n    \"Cockerel\": [\n        \"NNP\"\n    ], \n    \"SCHWAB\": [\n        \"NNP\"\n    ], \n    \"soluble\": [\n        \"JJ\"\n    ], \n    \"Confessions\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"recliner\": [\n        \"NN\"\n    ], \n    \"Battenkill\": [\n        \"NNP\"\n    ], \n    \"shuffling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cousins\": [\n        \"NNS\"\n    ], \n    \"wasting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"unreassuringly\": [\n        \"RB\"\n    ], \n    \"Scandalios\": [\n        \"NNP\"\n    ], \n    \"stropping\": [\n        \"VBG\"\n    ], \n    \"Scrambling\": [\n        \"VBG\"\n    ], \n    \"Millicom\": [\n        \"NNP\"\n    ], \n    \"Woman\\\\/McCall\": [\n        \"NNP\"\n    ], \n    \"Sweating\": [\n        \"VBG\"\n    ], \n    \"sniping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"ELSINORE\": [\n        \"NNP\"\n    ], \n    \"kittenish\": [\n        \"JJ\"\n    ], \n    \"Taviani\": [\n        \"NNP\"\n    ], \n    \"Labor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Teletrac\": [\n        \"NNP\"\n    ], \n    \"flanker\": [\n        \"NN\"\n    ], \n    \"on-board\": [\n        \"JJ\"\n    ], \n    \"Completions\": [\n        \"NNS\"\n    ], \n    \"off-farm\": [\n        \"JJ\"\n    ], \n    \"altruistically\": [\n        \"RB\"\n    ], \n    \"you-know-what\": [\n        \"NN\"\n    ], \n    \"Galen\": [\n        \"NNP\"\n    ], \n    \"flanked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Aricaras\": [\n        \"NNPS\"\n    ], \n    \"fait\": [\n        \"NN\"\n    ], \n    \"Bottling\": [\n        \"NNP\"\n    ], \n    \"blew\": [\n        \"VBD\"\n    ], \n    \"Adrar\": [\n        \"NNP\"\n    ], \n    \"mandatory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"disaster\": [\n        \"NN\"\n    ], \n    \"fair\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Hustead\": [\n        \"NNP\"\n    ], \n    \"Crawfordsville\": [\n        \"NNP\"\n    ], \n    \"exhanges\": [\n        \"NNS\"\n    ], \n    \"Daer\": [\n        \"NNP\"\n    ], \n    \"bled\": [\n        \"VBD\"\n    ], \n    \"blem\": [\n        \"NN\"\n    ], \n    \"faim\": [\n        \"FW\"\n    ], \n    \"essayists\": [\n        \"NNS\"\n    ], \n    \"Craddock\": [\n        \"NNP\"\n    ], \n    \"Shelter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hunker\": [\n        \"VB\"\n    ], \n    \"Convocation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Cusa\": [\n        \"NNP\"\n    ], \n    \"experimentalism\": [\n        \"NN\"\n    ], \n    \"unalterable\": [\n        \"JJ\"\n    ], \n    \"Peugeot\": [\n        \"NNP\"\n    ], \n    \"ooze\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"invigorated\": [\n        \"VBN\"\n    ], \n    \"Clarion\": [\n        \"NNP\"\n    ], \n    \"Hessians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"lefthanders\": [\n        \"NNS\"\n    ], \n    \"horseflesh\": [\n        \"NN\"\n    ], \n    \"Reproduction\": [\n        \"NNP\"\n    ], \n    \"Horsham\": [\n        \"NNP\"\n    ], \n    \"angling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Capello\": [\n        \"NNP\"\n    ], \n    \"anthropology\": [\n        \"NN\"\n    ], \n    \"federalist\": [\n        \"NN\"\n    ], \n    \"conclusions\": [\n        \"NNS\"\n    ], \n    \"Patients\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Stratford\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"up-front\": [\n        \"JJ\"\n    ], \n    \"dents\": [\n        \"NNS\"\n    ], \n    \"Leche\": [\n        \"NNP\"\n    ], \n    \"federalism\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Aberdeen\": [\n        \"NNP\"\n    ], \n    \"admission\": [\n        \"NN\"\n    ], \n    \"exogamy\": [\n        \"NN\"\n    ], \n    \"estragole\": [\n        \"NN\"\n    ], \n    \"vain\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Pelto\": [\n        \"NNP\"\n    ], \n    \"Axelrod\": [\n        \"NNP\"\n    ], \n    \"Telegraph\": [\n        \"NNP\"\n    ], \n    \"retelling\": [\n        \"NN\"\n    ], \n    \"Peltz\": [\n        \"NNP\"\n    ], \n    \"Holidays\": [\n        \"NNS\"\n    ], \n    \"EXPANDS\": [\n        \"VBZ\"\n    ], \n    \"BPD\": [\n        \"NNP\"\n    ], \n    \"penalize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"contestants\": [\n        \"NNS\"\n    ], \n    \"Kindertotenlieder\": [\n        \"FW\"\n    ], \n    \"provincially\": [\n        \"RB\"\n    ], \n    \"breathlessly\": [\n        \"RB\"\n    ], \n    \"startled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Deadwood\": [\n        \"NNP\"\n    ], \n    \"Hewlett\": [\n        \"NNP\"\n    ], \n    \"Flowers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Pipeline\": [\n        \"NNP\"\n    ], \n    \"Vida\": [\n        \"NNP\"\n    ], \n    \"Stuart-James\": [\n        \"NNP\"\n    ], \n    \"kilowatt-hour\": [\n        \"NN\"\n    ], \n    \"Confederations\": [\n        \"NNPS\"\n    ], \n    \"harangues\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mothers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Waban\": [\n        \"NNP\"\n    ], \n    \"Spanish-speaking\": [\n        \"JJ\"\n    ], \n    \"fast-forward\": [\n        \"JJ\"\n    ], \n    \"moneys\": [\n        \"NNS\"\n    ], \n    \"harangued\": [\n        \"VBD\"\n    ], \n    \"pandering\": [\n        \"VBG\"\n    ], \n    \"paralegals\": [\n        \"NNS\"\n    ], \n    \"Boulet\": [\n        \"NNP\"\n    ], \n    \"Boulez\": [\n        \"NNP\"\n    ], \n    \"diverted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"phobic-like\": [\n        \"JJ\"\n    ], \n    \"presidency\": [\n        \"NN\"\n    ], \n    \"ferreted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Peterhouse\": [\n        \"NNP\"\n    ], \n    \"gray-beard\": [\n        \"JJ\"\n    ], \n    \"harvesting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"skirts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"biotech\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gainers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"McGovern\": [\n        \"NNP\"\n    ], \n    \"gas-gathering\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"collectivization\": [\n        \"NN\"\n    ], \n    \"delicatessen\": [\n        \"NN\"\n    ], \n    \"FHA\": [\n        \"NNP\"\n    ], \n    \"Ealy\": [\n        \"NNP\"\n    ], \n    \"obeying\": [\n        \"VBG\"\n    ], \n    \"Domokous\": [\n        \"NNP\"\n    ], \n    \"Capitan\": [\n        \"NNP\"\n    ], \n    \"Capital\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"aqueducts\": [\n        \"NNS\"\n    ], \n    \"FHP\": [\n        \"NNP\"\n    ], \n    \"trusted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"trustee\": [\n        \"NN\"\n    ], \n    \"rapprochement\": [\n        \"NN\"\n    ], \n    \"Topping\": [\n        \"VBG\"\n    ], \n    \"Killingsworth\": [\n        \"NNP\"\n    ], \n    \"Ulyate\": [\n        \"NNP\"\n    ], \n    \"Understandably\": [\n        \"RB\"\n    ], \n    \"cumulative\": [\n        \"JJ\"\n    ], \n    \"Uncommon\": [\n        \"JJ\"\n    ], \n    \"haphazard\": [\n        \"JJ\"\n    ], \n    \"Eurocrat\": [\n        \"NN\"\n    ], \n    \"washouts\": [\n        \"NNS\"\n    ], \n    \"fairly\": [\n        \"RB\"\n    ], \n    \"Intech\": [\n        \"NNP\"\n    ], \n    \"Mandhata\": [\n        \"NNP\"\n    ], \n    \"typhoid\": [\n        \"NN\"\n    ], \n    \"tops\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"hackneyed\": [\n        \"JJ\"\n    ], \n    \"Matsing\": [\n        \"NNP\"\n    ], \n    \"Khomeni\": [\n        \"NNP\"\n    ], \n    \"Acala\": [\n        \"NNP\"\n    ], \n    \"gold-wire\": [\n        \"NN\"\n    ], \n    \"H2Owner\": [\n        \"NNP\"\n    ], \n    \"SENIOR\": [\n        \"JJ\"\n    ], \n    \"different-color\": [\n        \"JJ\"\n    ], \n    \"rescinded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dorgen\": [\n        \"NNP\"\n    ], \n    \"reconceptualization\": [\n        \"NN\"\n    ], \n    \"Brazelton\": [\n        \"NNP\"\n    ], \n    \"off-exchange\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pantyhose\": [\n        \"NN\"\n    ], \n    \"blackjack\": [\n        \"NN\"\n    ], \n    \"opinions\": [\n        \"NNS\"\n    ], \n    \"Russell\": [\n        \"NNP\"\n    ], \n    \"givin\": [\n        \"VBG\"\n    ], \n    \"already-identified\": [\n        \"JJ\"\n    ], \n    \"Notebooks\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"disguise\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"financially\": [\n        \"RB\"\n    ], \n    \"uncombed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Rebates\": [\n        \"NNS\"\n    ], \n    \"market-style\": [\n        \"JJ\"\n    ], \n    \"alum\": [\n        \"NN\"\n    ], \n    \"Discours\": [\n        \"NNP\"\n    ], \n    \"campaign\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bijouterie\": [\n        \"FW\"\n    ], \n    \"Lautenberg\": [\n        \"NNP\"\n    ], \n    \"middle-of-the-road\": [\n        \"JJ\"\n    ], \n    \"gooshey\": [\n        \"JJ\"\n    ], \n    \"St.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"DAMAGES\": [\n        \"NNS\"\n    ], \n    \"Apart\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"abashed\": [\n        \"JJ\"\n    ], \n    \"casually\": [\n        \"RB\"\n    ], \n    \"Trinitarian\": [\n        \"NNP\"\n    ], \n    \"possible\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"firmer\": [\n        \"JJR\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"Alamo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Length\": [\n        \"NN\"\n    ], \n    \"barnacles\": [\n        \"NNS\"\n    ], \n    \"gridlock\": [\n        \"NN\"\n    ], \n    \"Emilio\": [\n        \"NNP\"\n    ], \n    \"Byrd\": [\n        \"NNP\"\n    ], \n    \"firmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Grass\": [\n        \"NNP\"\n    ], \n    \"Lords\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Sheremetyevo\": [\n        \"NNP\"\n    ], \n    \"new-found\": [\n        \"JJ\"\n    ], \n    \"seaside\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"prepositioning\": [\n        \"JJ\"\n    ], \n    \"steps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Lorde\": [\n        \"NNP\"\n    ], \n    \"cross-selling\": [\n        \"NN\"\n    ], \n    \"bruited\": [\n        \"VBN\"\n    ], \n    \"bonkers\": [\n        \"JJ\"\n    ], \n    \"Mmes\": [\n        \"NNPS\"\n    ], \n    \"macabre\": [\n        \"JJ\"\n    ], \n    \"predominance\": [\n        \"NN\"\n    ], \n    \"broadcasters\": [\n        \"NNS\"\n    ], \n    \"lockstep\": [\n        \"NN\"\n    ], \n    \"specially-designated\": [\n        \"JJ\"\n    ], \n    \"equestrian\": [\n        \"JJ\"\n    ], \n    \"Ihor\": [\n        \"NNP\"\n    ], \n    \"comeuppance\": [\n        \"NN\"\n    ], \n    \"attendees\": [\n        \"NNS\"\n    ], \n    \"for\": [\n        \"IN\", \n        \"NNP\", \n        \"CC\", \n        \"JJ\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"arms-making\": [\n        \"NN\"\n    ], \n    \"fox\": [\n        \"NN\"\n    ], \n    \"foe\": [\n        \"NN\"\n    ], \n    \"Dunton\": [\n        \"NNP\"\n    ], \n    \"fog\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tapley\": [\n        \"NNP\"\n    ], \n    \"Armenia\": [\n        \"NNP\"\n    ], \n    \"H.R.\": [\n        \"NNP\"\n    ], \n    \"foh\": [\n        \"IN\"\n    ], \n    \"colles\": [\n        \"FW\"\n    ], \n    \"Lifestyle\": [\n        \"NNP\"\n    ], \n    \"dollar\\\\\": [\n        \"JJ\"\n    ], \n    \"Garbutt\": [\n        \"NNP\"\n    ], \n    \"By-word\": [\n        \"JJ\"\n    ], \n    \"unfixed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Burrillville\": [\n        \"NNP\"\n    ], \n    \"Czarship\": [\n        \"NNP\"\n    ], \n    \"Macon\": [\n        \"NNP\"\n    ], \n    \"insets\": [\n        \"NNS\"\n    ], \n    \"boycotts\": [\n        \"NNS\"\n    ], \n    \"dollars\": [\n        \"NNS\"\n    ], \n    \"citizens\": [\n        \"NNS\"\n    ], \n    \"turbinates\": [\n        \"NNS\"\n    ], \n    \"storeroom\": [\n        \"NN\"\n    ], \n    \"Slo-Flo\": [\n        \"NNP\"\n    ], \n    \"makersa\": [\n        \"NNS\"\n    ], \n    \"AG\": [\n        \"NNP\"\n    ], \n    \"homesteads\": [\n        \"NNS\"\n    ], \n    \"rebut\": [\n        \"VB\"\n    ], \n    \"extra-literary\": [\n        \"JJ\"\n    ], \n    \"shopkeepers\": [\n        \"NNS\"\n    ], \n    \"twirler\": [\n        \"NN\"\n    ], \n    \"nought\": [\n        \"NN\"\n    ], \n    \"Airgas\": [\n        \"NNP\"\n    ], \n    \"Fairfield\": [\n        \"NNP\"\n    ], \n    \"presenters\": [\n        \"NNS\"\n    ], \n    \"problematical\": [\n        \"JJ\"\n    ], \n    \"AF\": [\n        \"NNP\"\n    ], \n    \"stockholder\": [\n        \"NN\"\n    ], \n    \"spores\": [\n        \"NNS\"\n    ], \n    \"Cress\": [\n        \"NNP\"\n    ], \n    \"Crest\": [\n        \"NNP\"\n    ], \n    \"uneventfully\": [\n        \"RB\"\n    ], \n    \"Silent\": [\n        \"NNP\"\n    ], \n    \"unambiguous\": [\n        \"JJ\"\n    ], \n    \"Governor-General\": [\n        \"NNP\"\n    ], \n    \"Approached\": [\n        \"VBN\"\n    ], \n    \"Sabaneta\": [\n        \"NNP\"\n    ], \n    \"Elvis\": [\n        \"NNP\"\n    ], \n    \"Itsuo\": [\n        \"NNP\"\n    ], \n    \"stock-purchase\": [\n        \"JJ\"\n    ], \n    \"one-time\": [\n        \"JJ\"\n    ], \n    \"Sauter\": [\n        \"NNP\"\n    ], \n    \"late-payment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Approaches\": [\n        \"NNS\"\n    ], \n    \"ill-starred\": [\n        \"JJ\"\n    ], \n    \"physicists\": [\n        \"NNS\"\n    ], \n    \"step-by-step\": [\n        \"JJ\"\n    ], \n    \"call\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"benefits-services\": [\n        \"JJ\"\n    ], \n    \"halls\": [\n        \"NNS\"\n    ], \n    \"million-unit\": [\n        \"JJ\"\n    ], \n    \"therefrom\": [\n        \"RB\"\n    ], \n    \"manufacturers\": [\n        \"NNS\"\n    ], \n    \"Column\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"food-scare\": [\n        \"NN\"\n    ], \n    \"Tillery\": [\n        \"NNP\"\n    ], \n    \"demographically\": [\n        \"RB\"\n    ], \n    \"shrilly\": [\n        \"RB\"\n    ], \n    \"Bullion\": [\n        \"NNP\"\n    ], \n    \"udon\": [\n        \"FW\"\n    ], \n    \"Lyubov\": [\n        \"NNP\"\n    ], \n    \"once-promising\": [\n        \"JJ\"\n    ], \n    \"Tallarico\": [\n        \"NNP\"\n    ], \n    \"circumstantial\": [\n        \"JJ\"\n    ], \n    \"Lundy\": [\n        \"NNP\"\n    ], \n    \"ceteras\": [\n        \"FW\"\n    ], \n    \"cut-down\": [\n        \"JJ\"\n    ], \n    \"Whoever\": [\n        \"WP\", \n        \"NNP\"\n    ], \n    \"Waldorf-Astoria\": [\n        \"NNP\"\n    ], \n    \"Engineering\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Prab\": [\n        \"NNP\"\n    ], \n    \"Honiss\": [\n        \"NNP\"\n    ], \n    \"lays\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"palm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Enrique\": [\n        \"NNP\"\n    ], \n    \"Amsterdam-Rotterdam\": [\n        \"NNP\"\n    ], \n    \"looms\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"proved\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"S.J.\": [\n        \"NNP\"\n    ], \n    \"Informal\": [\n        \"JJ\"\n    ], \n    \"drovers\": [\n        \"NNS\"\n    ], \n    \"fattened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"proven\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"crumble\": [\n        \"VB\"\n    ], \n    \"soothe\": [\n        \"VB\"\n    ], \n    \"proves\": [\n        \"VBZ\"\n    ], \n    \"Bakker\": [\n        \"NNP\"\n    ], \n    \"usability\": [\n        \"NN\"\n    ], \n    \"Ab1,040\": [\n        \"NNP\"\n    ], \n    \"Knoll\": [\n        \"NNP\"\n    ], \n    \"McDaniel\": [\n        \"NNP\"\n    ], \n    \"protested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Weakness\": [\n        \"NN\"\n    ], \n    \"Leichtman\": [\n        \"NNP\"\n    ], \n    \"curiae\": [\n        \"FW\"\n    ], \n    \"school-leaving\": [\n        \"JJ\"\n    ], \n    \"conferring\": [\n        \"VBG\"\n    ], \n    \"Ojibwa\": [\n        \"NNP\"\n    ], \n    \"developers\": [\n        \"NNS\"\n    ], \n    \"Pork-barrel\": [\n        \"JJ\"\n    ], \n    \"directionally\": [\n        \"RB\"\n    ], \n    \"McNamar\": [\n        \"NNP\"\n    ], \n    \"maimed\": [\n        \"JJ\"\n    ], \n    \"free-speech\": [\n        \"NN\"\n    ], \n    \"deathbed\": [\n        \"NN\"\n    ], \n    \"literalism\": [\n        \"NN\"\n    ], \n    \"anti-wrinkling\": [\n        \"JJ\"\n    ], \n    \"toned-down\": [\n        \"JJ\"\n    ], \n    \"Ranke\": [\n        \"NNP\"\n    ], \n    \"Englander\": [\n        \"NNP\"\n    ], \n    \"asbestos-removal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"reorganization\": [\n        \"NN\"\n    ], \n    \"Yemenis\": [\n        \"NNPS\"\n    ], \n    \"Brought\": [\n        \"VBN\"\n    ], \n    \"Datapoint\": [\n        \"NNP\"\n    ], \n    \"prolixity\": [\n        \"NN\"\n    ], \n    \"thyroxine-binding\": [\n        \"JJ\"\n    ], \n    \"disorganization\": [\n        \"NN\"\n    ], \n    \"peacock\": [\n        \"NN\"\n    ], \n    \"Reporting\": [\n        \"NNP\"\n    ], \n    \"STORES\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Unanimity\": [\n        \"NN\"\n    ], \n    \"Stressed\": [\n        \"VBN\"\n    ], \n    \"Yusen\": [\n        \"NNP\"\n    ], \n    \"jarring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"forage\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Edisto\": [\n        \"NNP\"\n    ], \n    \"novel-in-progress\": [\n        \"NN\"\n    ], \n    \"RCA-Victor\": [\n        \"NNP\"\n    ], \n    \"Market-if-touched\": [\n        \"JJ\"\n    ], \n    \"core-jacket\": [\n        \"JJ\"\n    ], \n    \"suspending\": [\n        \"VBG\"\n    ], \n    \"de-facto\": [\n        \"JJ\"\n    ], \n    \"Patricof\": [\n        \"NNP\"\n    ], \n    \"Jumping\": [\n        \"VBG\", \n        \"UH\"\n    ], \n    \"shouldda\": [\n        \"MD|VB\"\n    ], \n    \"Iken\": [\n        \"NNP\"\n    ], \n    \"platitudes\": [\n        \"NNS\"\n    ], \n    \"Soft-drink\": [\n        \"NN\"\n    ], \n    \"Yusaku\": [\n        \"NNP\"\n    ], \n    \"Appointed\": [\n        \"VBN\"\n    ], \n    \"Mitsukoshi\": [\n        \"NNP\"\n    ], \n    \"cheap\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"two-way\": [\n        \"JJ\"\n    ], \n    \"merchandise-trade\": [\n        \"JJ\"\n    ], \n    \"ergotropic\": [\n        \"JJ\"\n    ], \n    \"cornflake-size\": [\n        \"JJ\"\n    ], \n    \"Bosley\": [\n        \"NNP\"\n    ], \n    \"pressure-sensing\": [\n        \"JJ\"\n    ], \n    \"trod\": [\n        \"VBN\"\n    ], \n    \"Bosler\": [\n        \"NNP\"\n    ], \n    \"Overwhelming\": [\n        \"JJ\"\n    ], \n    \"tear\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Kali\": [\n        \"VBP\"\n    ], \n    \"folk-dance\": [\n        \"NN\"\n    ], \n    \"unscripted\": [\n        \"JJ\"\n    ], \n    \"Lamy-Lutti\": [\n        \"NNP\"\n    ], \n    \"subway\": [\n        \"NN\"\n    ], \n    \"stockade\": [\n        \"NN\"\n    ], \n    \"team\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"inscribed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"outdrew\": [\n        \"VBD\"\n    ], \n    \"bonfire\": [\n        \"NN\"\n    ], \n    \"prevent\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"no-win\": [\n        \"JJ\"\n    ], \n    \"side-stepped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"attic\": [\n        \"NN\"\n    ], \n    \"soft-spoken\": [\n        \"JJ\"\n    ], \n    \"U.M.C.I.A.\": [\n        \"NNP\"\n    ], \n    \"attis\": [\n        \"NN\"\n    ], \n    \"Participation\": [\n        \"NN\"\n    ], \n    \"playpen\": [\n        \"NN\"\n    ], \n    \"educate\": [\n        \"VB\"\n    ], \n    \"trop\": [\n        \"FW\"\n    ], \n    \"Poppea\": [\n        \"FW\"\n    ], \n    \"Afford\": [\n        \"VB\"\n    ], \n    \"three-door\": [\n        \"JJ\"\n    ], \n    \"Haverhill\": [\n        \"NNP\"\n    ], \n    \"reminiscent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"necrotic\": [\n        \"JJ\"\n    ], \n    \"freaks\": [\n        \"NNS\"\n    ], \n    \"L.A.\": [\n        \"NNP\"\n    ], \n    \"True\": [\n        \"JJ\", \n        \"NNP\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"Trud\": [\n        \"NNP\"\n    ], \n    \"pre-reform\": [\n        \"JJ\"\n    ], \n    \"reread\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"palindromes\": [\n        \"NNS\"\n    ], \n    \"cribbing\": [\n        \"VBG\"\n    ], \n    \"memory-expansion\": [\n        \"JJ\"\n    ], \n    \"Warned\": [\n        \"VBD\"\n    ], \n    \"Traditionalists\": [\n        \"NNPS\"\n    ], \n    \"Selectives\": [\n        \"NNPS\"\n    ], \n    \"muskets\": [\n        \"NNS\"\n    ], \n    \"moisturizer\": [\n        \"NN\"\n    ], \n    \"Namibian\": [\n        \"JJ\"\n    ], \n    \"nitroglycerine\": [\n        \"NN\"\n    ], \n    \"assassinating\": [\n        \"VBG\"\n    ], \n    \"crumbles\": [\n        \"VBZ\"\n    ], \n    \"bunkered\": [\n        \"VBN\"\n    ], \n    \"vitiates\": [\n        \"VBZ\"\n    ], \n    \"thereunder\": [\n        \"RB\"\n    ], \n    \"four-inch\": [\n        \"JJ\"\n    ], \n    \"crumbled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Prize-winning\": [\n        \"JJ\"\n    ], \n    \"love\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bloods\": [\n        \"NNS\"\n    ], \n    \"Lie\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"D.D.S.\": [\n        \"NNP\"\n    ], \n    \"bloody\": [\n        \"JJ\"\n    ], \n    \"Friedrich\": [\n        \"NNP\"\n    ], \n    \"qualified\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"consderations\": [\n        \"NNS\"\n    ], \n    \"once-indomitable\": [\n        \"JJ\"\n    ], \n    \"traversing\": [\n        \"VBG\"\n    ], \n    \"forefront\": [\n        \"NN\"\n    ], \n    \"Ranging\": [\n        \"VBG\"\n    ], \n    \"Limbo\": [\n        \"NNP\"\n    ], \n    \"cherishes\": [\n        \"VBZ\"\n    ], \n    \"positive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"marketing-data\": [\n        \"NNS\"\n    ], \n    \"tightly\": [\n        \"RB\"\n    ], \n    \"imaginations\": [\n        \"NNS\"\n    ], \n    \"cherished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Binomial\": [\n        \"NN\"\n    ], \n    \"wondering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"German-French\": [\n        \"JJ\"\n    ], \n    \"Balmy\": [\n        \"JJ\"\n    ], \n    \"introducing\": [\n        \"VBG\"\n    ], \n    \"``\": [\n        \"``\"\n    ], \n    \"Syferd\": [\n        \"NNP\"\n    ], \n    \"Knogo\": [\n        \"NNP\"\n    ], \n    \"half-digested\": [\n        \"JJ\"\n    ], \n    \"odious\": [\n        \"JJ\"\n    ], \n    \"Streptococcus\": [\n        \"NN\"\n    ], \n    \"visual\": [\n        \"JJ\"\n    ], \n    \"degrade\": [\n        \"VB\"\n    ], \n    \"LDI\": [\n        \"NNP\"\n    ], \n    \"epitaph\": [\n        \"NN\"\n    ], \n    \"velour\": [\n        \"NN\"\n    ], \n    \"Blackwell\": [\n        \"NNP\"\n    ], \n    \"honey\": [\n        \"NN\", \n        \"VB\", \n        \"UH\", \n        \"JJ\"\n    ], \n    \"preponderance\": [\n        \"NN\"\n    ], \n    \"DISTRICT\": [\n        \"JJ\"\n    ], \n    \"child-bearing\": [\n        \"NN\"\n    ], \n    \"Conreid\": [\n        \"NNP\"\n    ], \n    \"Istel-type\": [\n        \"JJ\"\n    ], \n    \"reportage\": [\n        \"NN\"\n    ], \n    \"nether\": [\n        \"JJ\", \n        \"CC\"\n    ], \n    \"values\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"indolence\": [\n        \"NN\"\n    ], \n    \"stockroom\": [\n        \"NN\"\n    ], \n    \"toll-free\": [\n        \"JJ\"\n    ], \n    \"write-downs\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Federal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"catheters\": [\n        \"NNS\"\n    ], \n    \"understatement\": [\n        \"NN\"\n    ], \n    \"currency-market\": [\n        \"JJ\"\n    ], \n    \"Galahad\": [\n        \"NNP\"\n    ], \n    \"Drug-Treatment\": [\n        \"JJ\"\n    ], \n    \"Wha\": [\n        \"WP\"\n    ], \n    \"A\\\\\": [\n        \"JJ\"\n    ], \n    \"fatherly\": [\n        \"JJ\"\n    ], \n    \"grosses\": [\n        \"VBZ\"\n    ], \n    \"self-aggrandizement\": [\n        \"NN\"\n    ], \n    \"cost-transfer\": [\n        \"NN\"\n    ], \n    \"Liz\": [\n        \"NNP\"\n    ], \n    \"fps\": [\n        \"NNS\"\n    ], \n    \"PRISON\": [\n        \"NN\"\n    ], \n    \"grossed\": [\n        \"VBD\"\n    ], \n    \"pro-growth\": [\n        \"JJ\"\n    ], \n    \"four-to-one\": [\n        \"RB\"\n    ], \n    \"Why\": [\n        \"WRB\", \n        \"NNP\", \n        \"UH\"\n    ], \n    \"five-year\": [\n        \"JJ\"\n    ], \n    \"rubber-stamped\": [\n        \"JJ\"\n    ], \n    \"Sausalito\": [\n        \"NNP\"\n    ], \n    \"jazz\": [\n        \"NN\"\n    ], \n    \"Herrington\": [\n        \"NNP\"\n    ], \n    \"mortally\": [\n        \"RB\"\n    ], \n    \"spot\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pyzhyanov\": [\n        \"NNP\"\n    ], \n    \"applications\": [\n        \"NNS\"\n    ], \n    \"misshapen\": [\n        \"JJ\"\n    ], \n    \"Chiller\": [\n        \"NNP\"\n    ], \n    \"Greek-born\": [\n        \"JJ\"\n    ], \n    \"Magadan\": [\n        \"NNP\"\n    ], \n    \"acceptances\": [\n        \"NNS\"\n    ], \n    \"filthy\": [\n        \"JJ\"\n    ], \n    \"shockingly\": [\n        \"RB\"\n    ], \n    \"disagreeable\": [\n        \"JJ\"\n    ], \n    \"supersonic\": [\n        \"JJ\"\n    ], \n    \"News\\\\/Retrieval\": [\n        \"NNP\"\n    ], \n    \"wheelchair\": [\n        \"NN\"\n    ], \n    \"freestylers\": [\n        \"NNS\"\n    ], \n    \"razor-edged\": [\n        \"JJ\"\n    ], \n    \"Bedtime\": [\n        \"NN\"\n    ], \n    \"Ciba-Geigy\\\\\": [\n        \"JJ\"\n    ], \n    \"Teleport\": [\n        \"NNP\"\n    ], \n    \"Wrath\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"FICOs\": [\n        \"NNS\"\n    ], \n    \"epilepsy\": [\n        \"NN\"\n    ], \n    \"hiring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"maneuvered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Inflate\": [\n        \"VB\"\n    ], \n    \"multi-million-dollar\": [\n        \"JJ\"\n    ], \n    \"spewings\": [\n        \"NNS\"\n    ], \n    \"thoughtfulness\": [\n        \"NN\"\n    ], \n    \"mini-post\": [\n        \"JJ\"\n    ], \n    \"Direction\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"solace\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"protoplasmic\": [\n        \"JJ\"\n    ], \n    \"cleanest\": [\n        \"JJS\"\n    ], \n    \"Forney\": [\n        \"NNP\"\n    ], \n    \"value-boosting\": [\n        \"JJ\"\n    ], \n    \"Hispanics\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"hubbub\": [\n        \"NN\"\n    ], \n    \"Whitney\": [\n        \"NNP\"\n    ], \n    \"clothiers\": [\n        \"NNS\"\n    ], \n    \"Pitchers\": [\n        \"NNS\"\n    ], \n    \"Cahoon\": [\n        \"NNP\"\n    ], \n    \"embezzling\": [\n        \"VBG\"\n    ], \n    \"subordinates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"origination\": [\n        \"NN\"\n    ], \n    \"Folly\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Maximum\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Farouk\": [\n        \"NNP\"\n    ], \n    \"homebuilder\": [\n        \"NN\"\n    ], \n    \"epithets\": [\n        \"NNS\"\n    ], \n    \"Raceway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subordinated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Gadwani\": [\n        \"NNP\"\n    ], \n    \"Lullaby\": [\n        \"NN\"\n    ], \n    \"joked\": [\n        \"VBD\"\n    ], \n    \"foreign-trade\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"crushers\": [\n        \"NNS\"\n    ], \n    \"Pecos\": [\n        \"NNP\"\n    ], \n    \"shirtwaist\": [\n        \"NN\"\n    ], \n    \"magnetic-tape\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"opportuning\": [\n        \"NN\"\n    ], \n    \"breakthrough\": [\n        \"NN\"\n    ], \n    \"interferometer\": [\n        \"NN\"\n    ], \n    \"Bermuda\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Heresy\": [\n        \"NNP\"\n    ], \n    \"compulsives\": [\n        \"NNS\"\n    ], \n    \"NET\": [\n        \"JJ\"\n    ], \n    \"Vanguardia\": [\n        \"NNP\"\n    ], \n    \"briefcase\": [\n        \"NN\"\n    ], \n    \"Jos\": [\n        \"NNP\"\n    ], \n    \"container\": [\n        \"NN\"\n    ], \n    \"brags\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"reveled\": [\n        \"VBD\"\n    ], \n    \"Joy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Copie\": [\n        \"NNP\"\n    ], \n    \"collisions\": [\n        \"NNS\"\n    ], \n    \"contained\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"onrush\": [\n        \"NN\"\n    ], \n    \"Joe\": [\n        \"NNP\"\n    ], \n    \"better-than-thou\": [\n        \"JJ\"\n    ], \n    \"Detecting\": [\n        \"VBG\"\n    ], \n    \"Ivies\": [\n        \"NNPS\"\n    ], \n    \"Jon\": [\n        \"NNP\"\n    ], \n    \"Places\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Placer\": [\n        \"NNP\"\n    ], \n    \"ground-cargo\": [\n        \"NN\"\n    ], \n    \"near-perfect\": [\n        \"JJ\"\n    ], \n    \"I.L.\": [\n        \"NN\"\n    ], \n    \"Mixed\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Skippy\": [\n        \"NNP\"\n    ], \n    \"Averages\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"liberally\": [\n        \"RB\"\n    ], \n    \"disguised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"jetliners\": [\n        \"NNS\"\n    ], \n    \"Consent\": [\n        \"NNP\"\n    ], \n    \"collapsing\": [\n        \"VBG\"\n    ], \n    \"acutely\": [\n        \"RB\"\n    ], \n    \"disguises\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"recompense\": [\n        \"NN\"\n    ], \n    \"bothersome\": [\n        \"JJ\"\n    ], \n    \"Declinations\": [\n        \"NNS\"\n    ], \n    \"misused\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Heath\": [\n        \"NNP\"\n    ], \n    \"Synthetic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"intuition\": [\n        \"NN\"\n    ], \n    \"Wordsworth\": [\n        \"NNP\"\n    ], \n    \"potter\": [\n        \"NN\"\n    ], \n    \"walk-in\": [\n        \"JJ\"\n    ], \n    \"Lately\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"tooted\": [\n        \"VBD\"\n    ], \n    \"chubby\": [\n        \"JJ\"\n    ], \n    \"potted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"on-budget\": [\n        \"JJ\"\n    ], \n    \"aerospace-industry\": [\n        \"NN\"\n    ], \n    \"sayed\": [\n        \"VBD\"\n    ], \n    \"Gains\": [\n        \"NNS\"\n    ], \n    \"Jamieson\": [\n        \"NNP\"\n    ], \n    \"beer-industry\": [\n        \"NN\"\n    ], \n    \"indicate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"u.\": [\n        \"NN\"\n    ], \n    \"microscopical\": [\n        \"JJ\"\n    ], \n    \"typing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"full-banded\": [\n        \"JJ\"\n    ], \n    \"Repeal\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Pascale\": [\n        \"NNP\"\n    ], \n    \"Orangeburg\": [\n        \"NNP\"\n    ], \n    \"Katzenstein\": [\n        \"NNP\"\n    ], \n    \"blazon\": [\n        \"VB\"\n    ], \n    \"Litchfield\": [\n        \"NNP\"\n    ], \n    \"tuneful\": [\n        \"JJ\"\n    ], \n    \"meddling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Torrid\": [\n        \"NNP\"\n    ], \n    \"Appeals\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"simmered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Torrio\": [\n        \"NNP\"\n    ], \n    \"Isadora\": [\n        \"NNP\"\n    ], \n    \"photographic\": [\n        \"JJ\"\n    ], \n    \"Isadore\": [\n        \"NNP\"\n    ], \n    \"storehouses\": [\n        \"NNS\"\n    ], \n    \"quake-relief\": [\n        \"JJ\"\n    ], \n    \"clairvoyance\": [\n        \"NN\"\n    ], \n    \"Integra-A\": [\n        \"NNP\"\n    ], \n    \"Zalles\": [\n        \"NNP\"\n    ], \n    \"Alf\": [\n        \"NNP\"\n    ], \n    \"Cavett\": [\n        \"NNP\"\n    ], \n    \"HOMESTAKE\": [\n        \"NNP\"\n    ], \n    \"scuba\": [\n        \"NN\"\n    ], \n    \"too-rapid\": [\n        \"JJ\"\n    ], \n    \"Oratory\": [\n        \"NNP\"\n    ], \n    \"adjustablerate\": [\n        \"NN\"\n    ], \n    \"nicer\": [\n        \"JJR\"\n    ], \n    \"Congregational-Baptist\": [\n        \"NNP\"\n    ], \n    \"SALES\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Ala\": [\n        \"NNP\"\n    ], \n    \"L.A\": [\n        \"NNP\"\n    ], \n    \"Unsecured\": [\n        \"JJ\"\n    ], \n    \"Balinese\": [\n        \"NNP\"\n    ], \n    \"MacArthur\": [\n        \"NNP\"\n    ], \n    \"Jewish\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Servive\": [\n        \"NNP\"\n    ], \n    \"peace-keeping\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Kleenex\": [\n        \"NNP\"\n    ], \n    \"WORKERS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Smurfit\": [\n        \"NNP\"\n    ], \n    \"SMOKING\": [\n        \"NN\"\n    ], \n    \"McGinty\": [\n        \"NNP\"\n    ], \n    \"Daytonas\": [\n        \"NNP\"\n    ], \n    \"pagers\": [\n        \"NNS\"\n    ], \n    \"Ungrateful\": [\n        \"JJ\"\n    ], \n    \"maneuvering\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"tundra\": [\n        \"NN\"\n    ], \n    \"Defoe\": [\n        \"NNP\"\n    ], \n    \"Montserrat\": [\n        \"NNP\"\n    ], \n    \"microwaves\": [\n        \"NNS\"\n    ], \n    \"indentured\": [\n        \"VBN\"\n    ], \n    \"Separately\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"direct-line\": [\n        \"JJ\"\n    ], \n    \"hematologist\": [\n        \"NN\"\n    ], \n    \"microwaved\": [\n        \"VBN\"\n    ], \n    \"myne\": [\n        \"PRP$\"\n    ], \n    \"Trainer\": [\n        \"NNP\"\n    ], \n    \"bads\": [\n        \"NNS\"\n    ], \n    \"stilts\": [\n        \"NNS\"\n    ], \n    \"Ormstedt\": [\n        \"NNP\"\n    ], \n    \"Merit\": [\n        \"NNP\"\n    ], \n    \"crooked\": [\n        \"JJ\"\n    ], \n    \"bade\": [\n        \"VBD\"\n    ], \n    \"Trained\": [\n        \"VBN\"\n    ], \n    \"rim-fires\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Attrition\": [\n        \"NN\"\n    ], \n    \"forecasters\": [\n        \"NNS\"\n    ], \n    \"Coltsman\": [\n        \"NN\"\n    ], \n    \"mini-supercomputers\": [\n        \"NNS\"\n    ], \n    \"walking\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nines\": [\n        \"NNPS\"\n    ], \n    \"Lateran\": [\n        \"NNP\"\n    ], \n    \"Lateral\": [\n        \"NNP\"\n    ], \n    \"synchronous\": [\n        \"JJ\"\n    ], \n    \"Ferenc\": [\n        \"NNP\"\n    ], \n    \"lettered\": [\n        \"VBD\"\n    ], \n    \"Gelman\": [\n        \"NNP\"\n    ], \n    \"conduction\": [\n        \"NN\"\n    ], \n    \"Huntsman\": [\n        \"NNP\"\n    ], \n    \"Heel-Betty\": [\n        \"NNP\"\n    ], \n    \"Krishnaists\": [\n        \"NNS\"\n    ], \n    \"Balkanized\": [\n        \"JJ\"\n    ], \n    \"hockey\": [\n        \"NN\"\n    ], \n    \"entreaties\": [\n        \"NNS\"\n    ], \n    \"posted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Bluebird\": [\n        \"NNP\"\n    ], \n    \"Westview\": [\n        \"NNP\"\n    ], \n    \"Juarez\": [\n        \"NNP\"\n    ], \n    \"surfaced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"infallible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tune-belly\": [\n        \"NN\"\n    ], \n    \"Geraghty\": [\n        \"NNP\"\n    ], \n    \"intermixed\": [\n        \"VBD\"\n    ], \n    \"LeCompte\": [\n        \"NNP\"\n    ], \n    \"maniacal\": [\n        \"JJ\"\n    ], \n    \"Cohn\": [\n        \"NNP\"\n    ], \n    \"Linsey\": [\n        \"NNP\"\n    ], \n    \"Joviality\": [\n        \"NN\"\n    ], \n    \"bombs\": [\n        \"NNS\"\n    ], \n    \"COLGATE-PALMOLIVE\": [\n        \"NNP\"\n    ], \n    \"masseuses\": [\n        \"NNS\"\n    ], \n    \"WXRK\": [\n        \"NNP\"\n    ], \n    \"Dashwood\": [\n        \"NNP\"\n    ], \n    \"masseur\": [\n        \"NN\"\n    ], \n    \"All-American\": [\n        \"NNP\"\n    ], \n    \"Biggest\": [\n        \"JJS\", \n        \"NNP\"\n    ], \n    \"Cumbancheros\": [\n        \"NNP\"\n    ], \n    \"Olivetti\": [\n        \"NNP\"\n    ], \n    \"cash-raising\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"individual-retirement-account\": [\n        \"NN\"\n    ], \n    \"mecca\": [\n        \"NN\"\n    ], \n    \"enlightening\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"wielding\": [\n        \"VBG\"\n    ], \n    \"bootleg\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"broadcast-and-cable\": [\n        \"JJ\"\n    ], \n    \"testimonials\": [\n        \"NNS\"\n    ], \n    \"Quad\": [\n        \"NNP\"\n    ], \n    \"teens\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"presage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Debora\": [\n        \"NNP\"\n    ], \n    \"civ\": [\n        \"NN\"\n    ], \n    \"inappropriately\": [\n        \"RB\"\n    ], \n    \"McLean\": [\n        \"NNP\"\n    ], \n    \"aberration\": [\n        \"NN\"\n    ], \n    \"unpremeditated\": [\n        \"JJ\"\n    ], \n    \"Directors\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"reigns\": [\n        \"VBZ\"\n    ], \n    \"Tolentino\": [\n        \"NNP\"\n    ], \n    \"Directory\": [\n        \"NNP\"\n    ], \n    \"undermine\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Gisors\": [\n        \"NNP\"\n    ], \n    \"Kalison\": [\n        \"NNP\"\n    ], \n    \"twotiered\": [\n        \"JJ\"\n    ], \n    \"Schnacke\": [\n        \"NNP\"\n    ], \n    \"nomias\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"bare-armed\": [\n        \"JJ\"\n    ], \n    \"WWL\": [\n        \"NNP\"\n    ], \n    \"walkers\": [\n        \"NNS\"\n    ], \n    \"Virgilia\": [\n        \"NNP\"\n    ], \n    \"guesstimates\": [\n        \"NNS\"\n    ], \n    \"costcutting\": [\n        \"NN\"\n    ], \n    \"kingside\": [\n        \"NN\"\n    ], \n    \"Sudier\": [\n        \"NNP\"\n    ], \n    \"dislocation\": [\n        \"NN\"\n    ], \n    \"Deus\": [\n        \"FW\"\n    ], \n    \"throttled\": [\n        \"VBN\"\n    ], \n    \"Reames\": [\n        \"NNP\"\n    ], \n    \"breaking-out\": [\n        \"NN\"\n    ], \n    \"vacation\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"seven-year-old\": [\n        \"JJ\"\n    ], \n    \"needlessly\": [\n        \"RB\"\n    ], \n    \"Caravaggio.\": [\n        \"NNP\"\n    ], \n    \"daylong\": [\n        \"JJ\"\n    ], \n    \"start-up\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Depew\": [\n        \"NNP\"\n    ], \n    \"mischarges\": [\n        \"NNS\"\n    ], \n    \"Matra-Harris\": [\n        \"NNP\"\n    ], \n    \"Birth\": [\n        \"NNP\"\n    ], \n    \"Ellwood\": [\n        \"NNP\"\n    ], \n    \"rooftops\": [\n        \"NNS\"\n    ], \n    \"pass-through\": [\n        \"JJ\"\n    ], \n    \"Greatest\": [\n        \"JJS\", \n        \"NNP\"\n    ], \n    \"arbitration-eligibility\": [\n        \"NN\"\n    ], \n    \"felling\": [\n        \"VBG\"\n    ], \n    \"ALII\": [\n        \"NNP\"\n    ], \n    \"Chicago-Montreal\": [\n        \"NNP\"\n    ], \n    \"Grains\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"hypertrophy\": [\n        \"NN\"\n    ], \n    \"Quantum\": [\n        \"NNP\"\n    ], \n    \"perpetuate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"MX-6\": [\n        \"NNP\"\n    ], \n    \"Jihong\": [\n        \"NNP\"\n    ], \n    \"O-B\": [\n        \"NNP\"\n    ], \n    \"hard-edged\": [\n        \"JJ\"\n    ], \n    \"reliefs\": [\n        \"NNS\"\n    ], \n    \"RISC-based\": [\n        \"JJ\"\n    ], \n    \"Machado\": [\n        \"NNP\"\n    ], \n    \"graceful\": [\n        \"JJ\"\n    ], \n    \"pizazz\": [\n        \"NN\"\n    ], \n    \"Istiqlal-sponsored\": [\n        \"JJ\"\n    ], \n    \"Rios\": [\n        \"NNP\"\n    ], \n    \"Cedars\": [\n        \"NNPS\"\n    ], \n    \"Macrophages\": [\n        \"NNS\"\n    ], \n    \"Battalion-2000\": [\n        \"NN\"\n    ], \n    \"Thaxters\": [\n        \"NNPS\"\n    ], \n    \"coconuts\": [\n        \"NNS\"\n    ], \n    \"Granther\": [\n        \"NNP\"\n    ], \n    \"war-like\": [\n        \"JJ\"\n    ], \n    \"decertified\": [\n        \"VBN\"\n    ], \n    \"breakdown\": [\n        \"NN\"\n    ], \n    \"askin\": [\n        \"VBG\"\n    ], \n    \"oceanographic\": [\n        \"JJ\"\n    ], \n    \"knowhow\": [\n        \"NN\"\n    ], \n    \"Spoon\": [\n        \"NNP\"\n    ], \n    \"tomorrow,will\": [\n        \"NN\"\n    ], \n    \"Eakle\": [\n        \"NNP\"\n    ], \n    \"bulletproof\": [\n        \"JJ\"\n    ], \n    \"Iron\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Test-preparation\": [\n        \"JJ\"\n    ], \n    \"McCann-Erickson\": [\n        \"NNP\"\n    ], \n    \"psychiatrists\": [\n        \"NNS\"\n    ], \n    \"Fleisher\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"veering\": [\n        \"VBG\"\n    ], \n    \"vacant\": [\n        \"JJ\"\n    ], \n    \"pacing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"xylene\": [\n        \"NN\"\n    ], \n    \"dancelike\": [\n        \"JJ\"\n    ], \n    \"retrace\": [\n        \"VB\"\n    ], \n    \"Cuddihy\": [\n        \"NNP\"\n    ], \n    \"Abolitionists\": [\n        \"NNS\"\n    ], \n    \"Incarnation\": [\n        \"NNP\"\n    ], \n    \"truculent\": [\n        \"JJ\"\n    ], \n    \"exaggerating\": [\n        \"VBG\"\n    ], \n    \"pay-cable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Abend\": [\n        \"NNP\"\n    ], \n    \"snarled\": [\n        \"VBD\"\n    ], \n    \"Proceeding\": [\n        \"VBG\"\n    ], \n    \"Markets\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"underline\": [\n        \"VB\"\n    ], \n    \"underling\": [\n        \"NN\"\n    ], \n    \"much-smaller\": [\n        \"JJ\"\n    ], \n    \"Intertan\": [\n        \"NNP\"\n    ], \n    \"science-fiction\": [\n        \"NN\"\n    ], \n    \"wince\": [\n        \"NN\"\n    ], \n    \"prominently\": [\n        \"RB\"\n    ], \n    \"SKIDDED\": [\n        \"VBD\"\n    ], \n    \"Harvest\": [\n        \"NNP\"\n    ], \n    \"Decision\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"skies\": [\n        \"NNS\"\n    ], \n    \"skier\": [\n        \"NN\"\n    ], \n    \"Dammit\": [\n        \"UH\", \n        \"VB\"\n    ], \n    \"Shak.\": [\n        \"NNP\"\n    ], \n    \"Potato\": [\n        \"NN\"\n    ], \n    \"DeForest\": [\n        \"NNP\"\n    ], \n    \"retract\": [\n        \"VB\"\n    ], \n    \"Genocide\": [\n        \"NN\"\n    ], \n    \"Peck\": [\n        \"NNP\"\n    ], \n    \"signal-intensity\": [\n        \"NN\"\n    ], \n    \"fringed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"forms-processing\": [\n        \"NN\"\n    ], \n    \"fossils\": [\n        \"NNS\"\n    ], \n    \"amputation\": [\n        \"NN\"\n    ], \n    \"action-oriented\": [\n        \"JJ\"\n    ], \n    \"Synergistics\": [\n        \"NNP\"\n    ], \n    \"GLITTERS\": [\n        \"VBZ\"\n    ], \n    \"Artillery\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"souvenirs\": [\n        \"NNS\"\n    ], \n    \"undergirded\": [\n        \"VBD\"\n    ], \n    \"four-games-to-one\": [\n        \"JJ\"\n    ], \n    \"slings\": [\n        \"NNS\"\n    ], \n    \"grouping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Zur\": [\n        \"FW\"\n    ], \n    \"picnickers\": [\n        \"NNS\"\n    ], \n    \"thinke\": [\n        \"VBZ\", \n        \"VB\"\n    ], \n    \"monopoly\": [\n        \"NN\"\n    ], \n    \"Sloan\": [\n        \"NNP\"\n    ], \n    \"playin\": [\n        \"VBG\"\n    ], \n    \"racial\": [\n        \"JJ\"\n    ], \n    \"thinks\": [\n        \"VBZ\"\n    ], \n    \"belched\": [\n        \"VBD\"\n    ], \n    \"pollen-producing\": [\n        \"VBG\"\n    ], \n    \"authenticate\": [\n        \"VBP\"\n    ], \n    \"dimensions\": [\n        \"NNS\"\n    ], \n    \"Flannagan\": [\n        \"NNP\"\n    ], \n    \"last-place\": [\n        \"JJ\"\n    ], \n    \"two-year\": [\n        \"JJ\"\n    ], \n    \"tube\": [\n        \"NN\"\n    ], \n    \"pre-18th-century\": [\n        \"JJ\"\n    ], \n    \"Gershman\": [\n        \"NNP\"\n    ], \n    \"tuba\": [\n        \"NN\"\n    ], \n    \"stroking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"First-half\": [\n        \"JJ\"\n    ], \n    \"Planning\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Valladolid\": [\n        \"NNP\"\n    ], \n    \"ink-jet\": [\n        \"JJ\"\n    ], \n    \"retail-based\": [\n        \"JJ\"\n    ], \n    \"Ruby\": [\n        \"NNP\"\n    ], \n    \"Saint-Geours\": [\n        \"NNP\"\n    ], \n    \"armored-vehicle\": [\n        \"JJ\"\n    ], \n    \"leaned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"destroys\": [\n        \"VBZ\"\n    ], \n    \"anti-anemia\": [\n        \"NN\"\n    ], \n    \"malfunctioning\": [\n        \"NN\"\n    ], \n    \"dissection\": [\n        \"NN\"\n    ], \n    \"home-buying\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Neece\": [\n        \"NNP\"\n    ], \n    \"Thatcherism\": [\n        \"NNP\"\n    ], \n    \"ENTREPRENEURSHIP\": [\n        \"NN\"\n    ], \n    \"Albertville\": [\n        \"NNP\"\n    ], \n    \"Sammye\": [\n        \"NNP\"\n    ], \n    \"spotlights\": [\n        \"VBZ\"\n    ], \n    \"Degree\": [\n        \"NN\"\n    ], \n    \"Stunned\": [\n        \"VBN\"\n    ], \n    \"industry\": [\n        \"NN\"\n    ], \n    \"off-beat\": [\n        \"JJ\"\n    ], \n    \"realignments\": [\n        \"NNS\"\n    ], \n    \"dibs\": [\n        \"NNS\"\n    ], \n    \"Radius\": [\n        \"NNP\"\n    ], \n    \"practicable\": [\n        \"JJ\"\n    ], \n    \"ASSOCIATION-COLLEGE\": [\n        \"NNP\"\n    ], \n    \"gesturing\": [\n        \"VBG\"\n    ], \n    \"stressed-out\": [\n        \"JJ\"\n    ], \n    \"dilettante\": [\n        \"NN\"\n    ], \n    \"infielders\": [\n        \"NNS\"\n    ], \n    \"fundraising\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"flawed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"image\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"rectification\": [\n        \"NN\"\n    ], \n    \"woodcutters\": [\n        \"NNS\"\n    ], \n    \"dour\": [\n        \"JJ\"\n    ], \n    \"Least\": [\n        \"JJS\"\n    ], \n    \"new-share\": [\n        \"JJ\"\n    ], \n    \"freaked\": [\n        \"VBN\"\n    ], \n    \"Feralloys\": [\n        \"NNP\"\n    ], \n    \"fritters\": [\n        \"NNS\"\n    ], \n    \"widower\": [\n        \"NN\"\n    ], \n    \"SHOPPE\": [\n        \"NNP\"\n    ], \n    \"tie-breaking\": [\n        \"JJ\"\n    ], \n    \"tableware\": [\n        \"NN\"\n    ], \n    \"Ait-Laoussine\": [\n        \"NNP\"\n    ], \n    \"Empty\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Lease\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subscriber\": [\n        \"NN\"\n    ], \n    \"reinvigorated\": [\n        \"VBN\"\n    ], \n    \"bookcases\": [\n        \"NNS\"\n    ], \n    \"Hans-Peter\": [\n        \"NNP\"\n    ], \n    \"worshippers\": [\n        \"NNS\"\n    ], \n    \"Demler\": [\n        \"NNP\"\n    ], \n    \"springboard\": [\n        \"NN\"\n    ], \n    \"Reunification\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Gompachi\": [\n        \"NNP\"\n    ], \n    \"hookers\": [\n        \"NNS\"\n    ], \n    \"Harro\": [\n        \"UH\"\n    ], \n    \"EUROP\": [\n        \"NNP\"\n    ], \n    \"mandates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mahal\": [\n        \"NNP\"\n    ], \n    \"Mahan\": [\n        \"NNP\"\n    ], \n    \"Vosges\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"irredentism\": [\n        \"NN\"\n    ], \n    \"private-insurance\": [\n        \"NN\"\n    ], \n    \"Harry\": [\n        \"NNP\"\n    ], \n    \"antiquated\": [\n        \"JJ\"\n    ], \n    \"Caufield\": [\n        \"NNP\"\n    ], \n    \"oversoft\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"VAX\\\\\": [\n        \"NNP\"\n    ], \n    \"design-side\": [\n        \"JJ\"\n    ], \n    \"tebuthiuron\": [\n        \"NN\"\n    ], \n    \"sang-froid\": [\n        \"FW\"\n    ], \n    \"flatteringly\": [\n        \"RB\"\n    ], \n    \"unwaivering\": [\n        \"VBG\"\n    ], \n    \"Seminar\": [\n        \"NNP\"\n    ], \n    \"sackless\": [\n        \"JJ\"\n    ], \n    \"ignorant\": [\n        \"JJ\"\n    ], \n    \"well-molded\": [\n        \"JJ\"\n    ], \n    \"behest\": [\n        \"NN\"\n    ], \n    \"investment-house\": [\n        \"NN\"\n    ], \n    \"hobbies\": [\n        \"NNS\"\n    ], \n    \"Outfielder\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fifty-fifty\": [\n        \"JJ\"\n    ], \n    \"Sapio\": [\n        \"NNP\"\n    ], \n    \"Scoring\": [\n        \"NNP\"\n    ], \n    \"somnambulism\": [\n        \"NN\"\n    ], \n    \"beaming\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Payroll\": [\n        \"NNP\"\n    ], \n    \"Bancaire\": [\n        \"NNP\"\n    ], \n    \"supercollider\": [\n        \"NN\"\n    ], \n    \"Tandem\": [\n        \"NNP\"\n    ], \n    \"Linsley\": [\n        \"NNP\"\n    ], \n    \"administers\": [\n        \"VBZ\"\n    ], \n    \"MacDougall\": [\n        \"NNP\"\n    ], \n    \"near-luxury\": [\n        \"JJ\"\n    ], \n    \"Kurdish\": [\n        \"JJ\"\n    ], \n    \"Wickersham\": [\n        \"NNP\"\n    ], \n    \"lendable\": [\n        \"JJ\"\n    ], \n    \"clipboard\": [\n        \"NN\"\n    ], \n    \"congress\": [\n        \"NN\"\n    ], \n    \"enrolled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"retardation\": [\n        \"NN\"\n    ], \n    \"near-by\": [\n        \"IN\", \n        \"JJ\"\n    ], \n    \"Sino-U.S.\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Sandberg\": [\n        \"NNP\"\n    ], \n    \"restorers\": [\n        \"NNS\"\n    ], \n    \"Short-sellers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"gastric\": [\n        \"JJ\"\n    ], \n    \"Cici\": [\n        \"NNP\"\n    ], \n    \"Chengdu\": [\n        \"NNP\"\n    ], \n    \"neuter\": [\n        \"NN\"\n    ], \n    \"Korean-U.S.\": [\n        \"NNP\"\n    ], \n    \"fascimile-machine\": [\n        \"NN\"\n    ], \n    \"Party.\": [\n        \"NNP\"\n    ], \n    \"gravitates\": [\n        \"VBZ\"\n    ], \n    \"BRING\": [\n        \"VB\"\n    ], \n    \"restricted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"test-run\": [\n        \"NN\"\n    ], \n    \"original\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lefty\": [\n        \"NNP\"\n    ], \n    \"Caesar\": [\n        \"NNP\"\n    ], \n    \"index-futures\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"bran-processing\": [\n        \"JJ\"\n    ], \n    \"Transamerica\": [\n        \"NNP\"\n    ], \n    \"improperly\": [\n        \"RB\"\n    ], \n    \"content\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Ayob\": [\n        \"NNP\"\n    ], \n    \"Bietnar\": [\n        \"NNP\"\n    ], \n    \"Theft\": [\n        \"NN\"\n    ], \n    \"Laws\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"endogenous\": [\n        \"JJ\"\n    ], \n    \"undeserved\": [\n        \"JJ\"\n    ], \n    \"lawyering\": [\n        \"NN\"\n    ], \n    \"puzzled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Rhona\": [\n        \"NNP\"\n    ], \n    \"crestfallen\": [\n        \"JJ\"\n    ], \n    \"puzzler\": [\n        \"NN\"\n    ], \n    \"candid\": [\n        \"JJ\"\n    ], \n    \"Twenty-year-old\": [\n        \"JJ\"\n    ], \n    \"offal\": [\n        \"NN\"\n    ], \n    \"scapegoats\": [\n        \"NNS\"\n    ], \n    \"predominately\": [\n        \"RB\"\n    ], \n    \"price-supporting\": [\n        \"JJ\"\n    ], \n    \"cunningly\": [\n        \"RB\"\n    ], \n    \"Piet\": [\n        \"NNP\"\n    ], \n    \"ceding\": [\n        \"VBG\"\n    ], \n    \"Durney\": [\n        \"NNP\"\n    ], \n    \"LOOM\": [\n        \"VBZ\"\n    ], \n    \"gold-mining\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"EDUCATION\": [\n        \"NN\"\n    ], \n    \"ingratitude\": [\n        \"NN\"\n    ], \n    \"confederates\": [\n        \"NNS\"\n    ], \n    \"nonsystematic\": [\n        \"JJ\"\n    ], \n    \"Ismail\": [\n        \"NNP\"\n    ], \n    \"facsimile\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Vita\": [\n        \"NNP\"\n    ], \n    \"Claridge\": [\n        \"NNP\"\n    ], \n    \"penalties\": [\n        \"NNS\"\n    ], \n    \"sync\": [\n        \"NN\"\n    ], \n    \"Acoustical\": [\n        \"JJ\"\n    ], \n    \"canvass\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"turning\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"bottom-fishing\": [\n        \"NN\"\n    ], \n    \"situated\": [\n        \"VBN\"\n    ], \n    \"two-and-a-half\": [\n        \"JJ\"\n    ], \n    \"Ballestre\": [\n        \"NNP\"\n    ], \n    \"semi-skilled\": [\n        \"JJ\"\n    ], \n    \"Caesarean\": [\n        \"JJ\"\n    ], \n    \"TransCanada\": [\n        \"NNP\"\n    ], \n    \"excitatory\": [\n        \"JJ\"\n    ], \n    \"Toronto-Dominion\": [\n        \"NNP\"\n    ], \n    \"Callaway\": [\n        \"NNP\"\n    ], \n    \"semifinalists\": [\n        \"NNS\"\n    ], \n    \"nurse\": [\n        \"NN\"\n    ], \n    \"microchip\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"contrast\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Tracing\": [\n        \"VBG\"\n    ], \n    \"Compromises\": [\n        \"NNS\"\n    ], \n    \"Crescott\": [\n        \"NNP\"\n    ], \n    \"hours\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"smartest\": [\n        \"JJS\"\n    ], \n    \"Calvary\": [\n        \"NNP\"\n    ], \n    \"irrespective\": [\n        \"RB\"\n    ], \n    \"Bickford\": [\n        \"NNP\"\n    ], \n    \"yellowed\": [\n        \"VBN\"\n    ], \n    \"phrasings\": [\n        \"NNS\"\n    ], \n    \"still-mammoth\": [\n        \"JJ\"\n    ], \n    \"Lyons\": [\n        \"NNP\"\n    ], \n    \"reactionaries\": [\n        \"NNS\"\n    ], \n    \"iuvabit\": [\n        \"FW\"\n    ], \n    \"Palestine-General\": [\n        \"NNP\"\n    ], \n    \"pentamidine\": [\n        \"NN\"\n    ], \n    \"pico\": [\n        \"NN\"\n    ], \n    \"skyrocket\": [\n        \"VB\"\n    ], \n    \"pick\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"action\": [\n        \"NN\"\n    ], \n    \"undersize\": [\n        \"JJ\"\n    ], \n    \"smuggle\": [\n        \"VB\"\n    ], \n    \"multiple-use\": [\n        \"JJ\"\n    ], \n    \"Marne-la-Vallee\": [\n        \"NNP\"\n    ], \n    \"unaggressive\": [\n        \"JJ\"\n    ], \n    \"rattlesnakes\": [\n        \"NNS\"\n    ], \n    \"marriages\": [\n        \"NNS\"\n    ], \n    \"excellently\": [\n        \"RB\"\n    ], \n    \"indoors\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Servatius\": [\n        \"NNP\"\n    ], \n    \"coercion\": [\n        \"NN\"\n    ], \n    \"Lacey\": [\n        \"NNP\"\n    ], \n    \"Introducing\": [\n        \"VBG\"\n    ], \n    \"ridding\": [\n        \"VBG\"\n    ], \n    \"Marushita\": [\n        \"NNP\"\n    ], \n    \"one-half-point\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Balkan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"petroleum\": [\n        \"NN\"\n    ], \n    \"uniqueness\": [\n        \"NN\"\n    ], \n    \"implore\": [\n        \"VB\"\n    ], \n    \"magnification\": [\n        \"NN\"\n    ], \n    \"freest\": [\n        \"JJS\"\n    ], \n    \"pitching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"recouping\": [\n        \"VBG\"\n    ], \n    \"sanitaire\": [\n        \"FW\"\n    ], \n    \"reminiscing\": [\n        \"VBG\"\n    ], \n    \"inferential\": [\n        \"JJ\"\n    ], \n    \"Cruickshank\": [\n        \"NNP\"\n    ], \n    \"no-good\": [\n        \"JJ\"\n    ], \n    \"tightfisted\": [\n        \"JJ\"\n    ], \n    \"nonbanking\": [\n        \"JJ\"\n    ], \n    \"Eisler\": [\n        \"NNP\"\n    ], \n    \"super-charger\": [\n        \"NN\"\n    ], \n    \"casino-hotel\": [\n        \"NN\", \n        \"NN|JJ\"\n    ], \n    \"coyote\": [\n        \"NN\"\n    ], \n    \"super-charged\": [\n        \"JJ\"\n    ], \n    \"Ladbroke\": [\n        \"NNP\"\n    ], \n    \"cunning\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cheese\": [\n        \"NNP\"\n    ], \n    \"keeping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"disquietude\": [\n        \"NN\"\n    ], \n    \"apportion\": [\n        \"VB\"\n    ], \n    \"science\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fathers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bornholm\": [\n        \"NNP\"\n    ], \n    \"gesticulating\": [\n        \"VBG\"\n    ], \n    \"Omnicom\": [\n        \"NNP\"\n    ], \n    \"betties\": [\n        \"NNS\"\n    ], \n    \"professions\": [\n        \"NNS\"\n    ], \n    \"Conference\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dardalla\": [\n        \"NNP\"\n    ], \n    \"Hassenberg\": [\n        \"NNP\"\n    ], \n    \"gallop\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"poetizing\": [\n        \"VBG\"\n    ], \n    \"anti-fungal\": [\n        \"JJ\"\n    ], \n    \"STET\": [\n        \"NNP\"\n    ], \n    \"sense\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"gallon\": [\n        \"NN\"\n    ], \n    \"Mutsch\": [\n        \"NNP\"\n    ], \n    \"axis\": [\n        \"NN\"\n    ], \n    \"Shintaro\": [\n        \"NNP\"\n    ], \n    \"information\": [\n        \"NN\"\n    ], \n    \"dazzle\": [\n        \"VB\"\n    ], \n    \"interconnect\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"anti-abortionist\": [\n        \"NN\"\n    ], \n    \"Misunderstanding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Tacit\": [\n        \"NNP\"\n    ], \n    \"monopolistic\": [\n        \"JJ\"\n    ], \n    \"A.A.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Caisse\": [\n        \"NNP\"\n    ], \n    \"unattended\": [\n        \"JJ\"\n    ], \n    \"creature\": [\n        \"NN\"\n    ], \n    \"wiles\": [\n        \"NNS\"\n    ], \n    \"aplenty\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Doughnuttery\": [\n        \"NN\"\n    ], \n    \"countryside\": [\n        \"NN\"\n    ], \n    \"Snead\": [\n        \"NNP\"\n    ], \n    \"entrepreneurship\": [\n        \"NN\"\n    ], \n    \"Tacloban\": [\n        \"NNP\"\n    ], \n    \"Soundview\": [\n        \"NNP\"\n    ], \n    \"Swiss\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"evaluations\": [\n        \"NNS\"\n    ], \n    \"purled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bottega\": [\n        \"NNP\"\n    ], \n    \"Bongo\": [\n        \"NNP\"\n    ], \n    \"Arbs\": [\n        \"NNS\"\n    ], \n    \"Zacharias\": [\n        \"NNP\"\n    ], \n    \"premonitions\": [\n        \"NNS\"\n    ], \n    \"Steinkrauss\": [\n        \"NNP\"\n    ], \n    \"Arby\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gaechinger\": [\n        \"NNP\"\n    ], \n    \"wrench\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"deafening\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"reshape\": [\n        \"VB\"\n    ], \n    \"Bastin\": [\n        \"NNP\"\n    ], \n    \"Okla.\": [\n        \"NNP\"\n    ], \n    \"geographic\": [\n        \"JJ\"\n    ], \n    \"Multiples\": [\n        \"NNPS\"\n    ], \n    \"crouchin\": [\n        \"JJ\"\n    ], \n    \"cockiness\": [\n        \"NN\"\n    ], \n    \"radios\": [\n        \"NNS\"\n    ], \n    \"Torrid-Adios\": [\n        \"NNP\"\n    ], \n    \"Castparts\": [\n        \"NNP\"\n    ], \n    \"network-services\": [\n        \"JJ\"\n    ], \n    \"TRIPS\": [\n        \"NNS\"\n    ], \n    \"Benjamin\": [\n        \"NNP\"\n    ], \n    \"Hiltons\": [\n        \"NNPS\"\n    ], \n    \"unimposing\": [\n        \"JJ\"\n    ], \n    \"Kims\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"polarizing\": [\n        \"VBG\"\n    ], \n    \"grade\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Brookline\": [\n        \"NNP\"\n    ], \n    \"Nichols\": [\n        \"NNP\"\n    ], \n    \"Anyhow\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"pool...\": [\n        \":\"\n    ], \n    \"propose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"bank-director\": [\n        \"NN\"\n    ], \n    \"big-budget\": [\n        \"JJ\"\n    ], \n    \"Overly\": [\n        \"RB\"\n    ], \n    \"Alsthom\": [\n        \"NNP\"\n    ], \n    \"skipper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"misuse\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Hime\": [\n        \"NNP\"\n    ], \n    \"nighted\": [\n        \"JJ\"\n    ], \n    \"stewed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Christmas-like\": [\n        \"JJ\"\n    ], \n    \"likeness\": [\n        \"NN\"\n    ], \n    \"always\": [\n        \"RB\"\n    ], \n    \"IPO\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"IPM\": [\n        \"NNP\"\n    ], \n    \"Aftershocks\": [\n        \"NNS\"\n    ], \n    \"experiencing\": [\n        \"VBG\"\n    ], \n    \"primitivism\": [\n        \"NN\"\n    ], \n    \"Sounds\": [\n        \"VBZ\"\n    ], \n    \"errata\": [\n        \"NNS\"\n    ], \n    \"thimble-sized\": [\n        \"JJ\"\n    ], \n    \"Destinations\": [\n        \"NNS\"\n    ], \n    \"status\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Bryn\": [\n        \"NNP\"\n    ], \n    \"accelerator\": [\n        \"NN\"\n    ], \n    \"m&a\": [\n        \"JJ\"\n    ], \n    \"NGL\": [\n        \"NNP\"\n    ], \n    \"throwin\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ware\": [\n        \"NN\"\n    ], \n    \"high-living\": [\n        \"JJ\"\n    ], \n    \"clockwork\": [\n        \"NN\"\n    ], \n    \"Watkins-Johnson\": [\n        \"NNP\"\n    ], \n    \"bouquets\": [\n        \"NNS\"\n    ], \n    \"Erosion\": [\n        \"NN\"\n    ], \n    \"twitched\": [\n        \"VBD\"\n    ], \n    \"repressive\": [\n        \"JJ\"\n    ], \n    \"silky\": [\n        \"JJ\"\n    ], \n    \"package-tracing\": [\n        \"NN\"\n    ], \n    \"tipsy\": [\n        \"JJ\"\n    ], \n    \"Manning\": [\n        \"NNP\"\n    ], \n    \"sparingly\": [\n        \"RB\"\n    ], \n    \"SunGard\": [\n        \"NNP\"\n    ], \n    \"single-A2\": [\n        \"JJ\"\n    ], \n    \"holstered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Movie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"misses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"race\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Filtertek\": [\n        \"NNP\"\n    ], \n    \"Astronomy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"silke\": [\n        \"NN\"\n    ], \n    \"hard-pressed\": [\n        \"JJ\"\n    ], \n    \"attentions\": [\n        \"NNS\"\n    ], \n    \"stock-margin\": [\n        \"JJ\"\n    ], \n    \"single-A\\\\\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"reformulated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"localization\": [\n        \"NN\"\n    ], \n    \"trite\": [\n        \"JJ\"\n    ], \n    \"premediated\": [\n        \"JJ\"\n    ], \n    \"Dugdale\": [\n        \"NNP\"\n    ], \n    \"Maude\": [\n        \"NNP\"\n    ], \n    \"pro-sealed-records\": [\n        \"JJ\"\n    ], \n    \"well-nigh\": [\n        \"RB\"\n    ], \n    \"Inspection\": [\n        \"NNP\"\n    ], \n    \"prefab\": [\n        \"JJ\"\n    ], \n    \"bumped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"armful\": [\n        \"NN\"\n    ], \n    \"Wanger\": [\n        \"NNP\"\n    ], \n    \"rack\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cathay\": [\n        \"NNP\"\n    ], \n    \"w\": [\n        \"IN\"\n    ], \n    \"bumper\": [\n        \"NN\", \n        \"JJ\", \n        \"JJR\"\n    ], \n    \"volumetrically\": [\n        \"RB\"\n    ], \n    \"delicate\": [\n        \"JJ\"\n    ], \n    \"pay-hike\": [\n        \"JJ\"\n    ], \n    \"gazed\": [\n        \"VBD\"\n    ], \n    \"Winery\": [\n        \"NNP\"\n    ], \n    \"emblazoned\": [\n        \"VBN\"\n    ], \n    \"shantytowns\": [\n        \"NNS\"\n    ], \n    \"number\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"twisted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"superagent\": [\n        \"NN\"\n    ], \n    \"murmured\": [\n        \"VBD\"\n    ], \n    \"guar\": [\n        \"JJ\"\n    ], \n    \"ethereal\": [\n        \"JJ\"\n    ], \n    \"Revenue-short\": [\n        \"JJ\"\n    ], \n    \"numbed\": [\n        \"VBN\"\n    ], \n    \"Corruption\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"black-figured\": [\n        \"JJ\"\n    ], \n    \"Sprinkle\": [\n        \"VB\"\n    ], \n    \"R.A.F.\": [\n        \"NNP\"\n    ], \n    \"heads\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Paperweight\": [\n        \"NNP\"\n    ], \n    \"boating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"lease-back\": [\n        \"NN\"\n    ], \n    \"threatening\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"heady\": [\n        \"JJ\"\n    ], \n    \"heade\": [\n        \"NN\"\n    ], \n    \"SPLIT-UP\": [\n        \"NN\"\n    ], \n    \"Auger\": [\n        \"NNP\"\n    ], \n    \"fruitfully\": [\n        \"RB\"\n    ], \n    \"Rayburn-Johnson\": [\n        \"NNP\"\n    ], \n    \"relies\": [\n        \"VBZ\"\n    ], \n    \"sun-kissed\": [\n        \"JJ\"\n    ], \n    \"Milano\": [\n        \"NNP\"\n    ], \n    \"Allegany\": [\n        \"NNP\"\n    ], \n    \"Jane\\\\\": [\n        \"NNP\"\n    ], \n    \"Stannard\": [\n        \"NNP\"\n    ], \n    \"Nightshade\": [\n        \"NNP\"\n    ], \n    \"conjunctions\": [\n        \"NNS\"\n    ], \n    \"Gambit\": [\n        \"NNP\"\n    ], \n    \"grace\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Grabski\": [\n        \"NNP\"\n    ], \n    \"Hercule\": [\n        \"NNP\"\n    ], \n    \"diffusion\": [\n        \"NN\"\n    ], \n    \"critically\": [\n        \"RB\"\n    ], \n    \"Shortcuts\": [\n        \"NNS\"\n    ], \n    \"freighters\": [\n        \"NNS\"\n    ], \n    \"Toyo\": [\n        \"NNP\"\n    ], \n    \"Warner-Chilcott\": [\n        \"NNP\"\n    ], \n    \"detractor\": [\n        \"NN\"\n    ], \n    \"tablespoonfuls\": [\n        \"NNS\"\n    ], \n    \"determined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"marriage\": [\n        \"NN\"\n    ], \n    \"Atomic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"KEY\": [\n        \"JJ\"\n    ], \n    \"Toys\": [\n        \"NNPS\", \n        \"VBZ\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"corn-belt\": [\n        \"NN\"\n    ], \n    \"IndoSuez\": [\n        \"NNP\"\n    ], \n    \"Kasriel\": [\n        \"NNP\"\n    ], \n    \"remembers\": [\n        \"VBZ\"\n    ], \n    \"JUICE\": [\n        \"NN\"\n    ], \n    \"hi-graders\": [\n        \"NNS\"\n    ], \n    \"livers\": [\n        \"NNS\"\n    ], \n    \"Redfield\": [\n        \"NNP\"\n    ], \n    \"Projected\": [\n        \"VBN\"\n    ], \n    \"livery\": [\n        \"NN\"\n    ], \n    \"vitally\": [\n        \"RB\"\n    ], \n    \"Crude\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Stoneware\": [\n        \"JJ\"\n    ], \n    \"mawkish\": [\n        \"JJ\"\n    ], \n    \"Suggestions\": [\n        \"NNS\"\n    ], \n    \"basics\": [\n        \"NNS\"\n    ], \n    \"Aboff\": [\n        \"NNP\"\n    ], \n    \"Club\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pramual\": [\n        \"NNP\"\n    ], \n    \"Poltawa\": [\n        \"NNP\"\n    ], \n    \"commemorates\": [\n        \"VBZ\"\n    ], \n    \"bovines\": [\n        \"NNS\"\n    ], \n    \"dichondra\": [\n        \"NN\"\n    ], \n    \"Murville\": [\n        \"NNP\"\n    ], \n    \"commemorated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"play\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Mokae\": [\n        \"NNP\"\n    ], \n    \"pianist\\\\/bassoonist\\\\/composer\": [\n        \"NN\"\n    ], \n    \"relied\": [\n        \"VBN\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"yaws\": [\n        \"NNS\"\n    ], \n    \"Caere\": [\n        \"NNP\"\n    ], \n    \"yawn\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Octavia\": [\n        \"NNP\"\n    ], \n    \"yawl\": [\n        \"NN\"\n    ], \n    \"plan\": [\n        \"NN\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Jervase\": [\n        \"NNP\"\n    ], \n    \"defections\": [\n        \"NNS\"\n    ], \n    \"foreign-affairs\": [\n        \"NNS\"\n    ], \n    \"Cheerios-brand\": [\n        \"JJ\"\n    ], \n    \"directive\": [\n        \"NN\"\n    ], \n    \"Redhook\": [\n        \"NNP\"\n    ], \n    \"golden-share\": [\n        \"NN\"\n    ], \n    \"tensioning\": [\n        \"VBG\"\n    ], \n    \"Laidlaw\": [\n        \"NNP\"\n    ], \n    \"researchers\": [\n        \"NNS\"\n    ], \n    \"self-managing\": [\n        \"JJ\"\n    ], \n    \"smocks\": [\n        \"NNS\"\n    ], \n    \"strutted\": [\n        \"VBD\"\n    ], \n    \"Carolinas\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"end-user\": [\n        \"NN\"\n    ], \n    \"R/NNP.C/NNP.A.\": [\n        \"NN\"\n    ], \n    \"Explain\": [\n        \"VB\"\n    ], \n    \"Interviewing\": [\n        \"NN\"\n    ], \n    \"interceptors\": [\n        \"NNS\"\n    ], \n    \"session\": [\n        \"NN\"\n    ], \n    \"Ralphs\": [\n        \"NNP\"\n    ], \n    \"mothballing\": [\n        \"NN\"\n    ], \n    \"C.J.\": [\n        \"NNP\"\n    ], \n    \"aluminum-makers\": [\n        \"NNS\"\n    ], \n    \"hipper\": [\n        \"JJR\"\n    ], \n    \"impact\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Conferees\": [\n        \"NNS\"\n    ], \n    \"indicator\": [\n        \"NN\"\n    ], \n    \"Labe\": [\n        \"NNP\"\n    ], \n    \"Decimus\": [\n        \"NNP\"\n    ], \n    \"stockholders\": [\n        \"NNS\"\n    ], \n    \"Rhyme\": [\n        \"VB\"\n    ], \n    \"cut-glass\": [\n        \"JJ\"\n    ], \n    \"Harrah\": [\n        \"NNP\"\n    ], \n    \"failed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"fugual\": [\n        \"JJ\"\n    ], \n    \"Jelinski\": [\n        \"NNP\"\n    ], \n    \"medical-benefits\": [\n        \"NNS\"\n    ], \n    \"conservative-communist\": [\n        \"JJ\"\n    ], \n    \"arch-heretic\": [\n        \"NN\"\n    ], \n    \"five-star\": [\n        \"JJ\"\n    ], \n    \"Patriot\": [\n        \"NNP\"\n    ], \n    \"Pascagoula\": [\n        \"NNP\"\n    ], \n    \"Kunz\": [\n        \"NNP\"\n    ], \n    \"Frazee\": [\n        \"NNP\"\n    ], \n    \"Primo\": [\n        \"NNP\"\n    ], \n    \"impregnable\": [\n        \"JJ\"\n    ], \n    \"Rectangular\": [\n        \"JJ\"\n    ], \n    \"Niobe\": [\n        \"VB\"\n    ], \n    \"Cilcorp\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kung\": [\n        \"NN\"\n    ], \n    \"closely\": [\n        \"RB\"\n    ], \n    \"Vale\": [\n        \"NNP\"\n    ], \n    \"Hearts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"AUDITS\": [\n        \"NNS\"\n    ], \n    \"Frazer\": [\n        \"NNP\"\n    ], \n    \"COTTON\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kahan\": [\n        \"NNP\"\n    ], \n    \"Rabbits\": [\n        \"NNS\"\n    ], \n    \"Help\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"sleeve\": [\n        \"NN\"\n    ], \n    \"Chapelles\": [\n        \"NNPS\"\n    ], \n    \"stirling\": [\n        \"JJ\"\n    ], \n    \"Held\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lower-volume\": [\n        \"JJ\"\n    ], \n    \"tottering\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"aryl\": [\n        \"NN\"\n    ], \n    \"inductees\": [\n        \"NNS\"\n    ], \n    \"Helm\": [\n        \"NNP\"\n    ], \n    \"Hell\": [\n        \"UH\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"overdrawn\": [\n        \"JJ\"\n    ], \n    \"Graves\": [\n        \"NNP\"\n    ], \n    \"Adrienne\": [\n        \"NNP\"\n    ], \n    \"blood-letting\": [\n        \"NN\"\n    ], \n    \"Cyber\": [\n        \"NNP\"\n    ], \n    \"booklists\": [\n        \"NNS\"\n    ], \n    \"geologic\": [\n        \"JJ\"\n    ], \n    \"backstitch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Zeitgeist\": [\n        \"NNP\"\n    ], \n    \"Akita\": [\n        \"NNP\"\n    ], \n    \"muted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Advocate\": [\n        \"NNP\"\n    ], \n    \"hatcheries\": [\n        \"NNS\"\n    ], \n    \"Lauderdale\": [\n        \"NNP\"\n    ], \n    \"Redesign\": [\n        \"NN\"\n    ], \n    \"Drell\": [\n        \"NNP\"\n    ], \n    \"avoidance\": [\n        \"NN\"\n    ], \n    \"Florido\": [\n        \"NNP\"\n    ], \n    \"Cambria\": [\n        \"NNP\"\n    ], \n    \"Enzymatic\": [\n        \"JJ\"\n    ], \n    \"intolerant\": [\n        \"JJ\"\n    ], \n    \"Florida\": [\n        \"NNP\"\n    ], \n    \"Against\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"bedazzlement\": [\n        \"NN\"\n    ], \n    \"peacetime\": [\n        \"NN\"\n    ], \n    \"strikeout\": [\n        \"NN\"\n    ], \n    \"selectively\": [\n        \"RB\"\n    ], \n    \"Scholarship\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bostonians\": [\n        \"NNPS\"\n    ], \n    \"waffle-pattern\": [\n        \"NN\"\n    ], \n    \"Hayne\": [\n        \"NNP\"\n    ], \n    \"agriculteurs\": [\n        \"FW\"\n    ], \n    \"no-walls-no-doors\": [\n        \"JJ\"\n    ], \n    \"phosphorous\": [\n        \"JJ\"\n    ], \n    \"Kapnek\": [\n        \"NNP\"\n    ], \n    \"Vigreux\": [\n        \"NNP\"\n    ], \n    \"floor-to-ceiling\": [\n        \"JJ\"\n    ], \n    \"multi-colored\": [\n        \"JJ\"\n    ], \n    \"soddies\": [\n        \"NNS\"\n    ], \n    \"Nina\": [\n        \"NNP\"\n    ], \n    \"shortsighted\": [\n        \"JJ\"\n    ], \n    \"Most-recommended\": [\n        \"JJ\"\n    ], \n    \"Wrestlemania\": [\n        \"NNP\"\n    ], \n    \"Alokut\": [\n        \"NNP\"\n    ], \n    \"half-price\": [\n        \"NN\"\n    ], \n    \"smashing\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"corresponds\": [\n        \"VBZ\"\n    ], \n    \"Lounge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unrealism\": [\n        \"NN\"\n    ], \n    \"bayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"townhouse\": [\n        \"NN\"\n    ], \n    \"all-around\": [\n        \"JJ\"\n    ], \n    \"connexion\": [\n        \"NN\"\n    ], \n    \"roofing\": [\n        \"NN\"\n    ], \n    \"filth\": [\n        \"NN\"\n    ], \n    \"Gibson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"acceptance\": [\n        \"NN\"\n    ], \n    \"Robbins\": [\n        \"NNP\"\n    ], \n    \"Macy\": [\n        \"NNP\"\n    ], \n    \"Dwarfing\": [\n        \"VBG\"\n    ], \n    \"Mace\": [\n        \"NNP\"\n    ], \n    \"Hartmarx\": [\n        \"NNP\"\n    ], \n    \"Jennison\": [\n        \"NNP\"\n    ], \n    \"Hintz\": [\n        \"NNP\"\n    ], \n    \"assassinated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mack\": [\n        \"NNP\"\n    ], \n    \"Quezon\": [\n        \"NNP\"\n    ], \n    \"Hints\": [\n        \"NNS\"\n    ], \n    \"firm\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Otradovec\": [\n        \"NNP\"\n    ], \n    \"sobriety\": [\n        \"NN\"\n    ], \n    \"high-pitched\": [\n        \"JJ\"\n    ], \n    \"pseudosocialism\": [\n        \"NN\"\n    ], \n    \"fire\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"equestrians\": [\n        \"NNS\"\n    ], \n    \"Concert\": [\n        \"NNP\"\n    ], \n    \"all-time\": [\n        \"JJ\"\n    ], \n    \"next-to-last\": [\n        \"JJ\"\n    ], \n    \"roustabouts\": [\n        \"NNS\"\n    ], \n    \"beach-party\": [\n        \"NN\"\n    ], \n    \"Debt-free\": [\n        \"JJ\"\n    ], \n    \"Reinaldo\": [\n        \"NNP\"\n    ], \n    \"enterotoxemia\": [\n        \"NN\"\n    ], \n    \"Concern\": [\n        \"NN\"\n    ], \n    \"casino\": [\n        \"NN\"\n    ], \n    \"NAV:22.15\": [\n        \"NN\"\n    ], \n    \"un-advertisers\": [\n        \"NNS\"\n    ], \n    \"moth\": [\n        \"NN\"\n    ], \n    \"screech\": [\n        \"NN\"\n    ], \n    \"dotting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Strategy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Armond\": [\n        \"NNP\"\n    ], \n    \"mots\": [\n        \"FW\"\n    ], \n    \"Sunflowers\": [\n        \"NNS\"\n    ], \n    \"Pertschuk\": [\n        \"NNP\"\n    ], \n    \"vanish\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Armonk\": [\n        \"NNP\"\n    ], \n    \"funny\": [\n        \"JJ\"\n    ], \n    \"choking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"SESCO\": [\n        \"NNP\"\n    ], \n    \"elevated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"market-sensitive\": [\n        \"JJ\"\n    ], \n    \"pressure-measuring\": [\n        \"JJ\"\n    ], \n    \"great-great-grandfather\": [\n        \"NN\"\n    ], \n    \"Morimoto\": [\n        \"NNP\"\n    ], \n    \"ledgers\": [\n        \"NNS\"\n    ], \n    \"Bluff\": [\n        \"NNP\"\n    ], \n    \"longer-run\": [\n        \"JJ\"\n    ], \n    \"Segnar\": [\n        \"NNP\"\n    ], \n    \"elevates\": [\n        \"VBZ\"\n    ], \n    \"vote-getter\": [\n        \"NN\"\n    ], \n    \"Bierbower\": [\n        \"NNP\"\n    ], \n    \"smokable\": [\n        \"JJ\"\n    ], \n    \"Salive\": [\n        \"NNP\"\n    ], \n    \"Saliva\": [\n        \"NN\"\n    ], \n    \"expediting\": [\n        \"VBG\"\n    ], \n    \"Kimbell-Diamond\": [\n        \"NNP\"\n    ], \n    \"leapt\": [\n        \"VBD\"\n    ], \n    \"leaps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ishihara\": [\n        \"NNP\"\n    ], \n    \"focal\": [\n        \"JJ\"\n    ], \n    \"recent\": [\n        \"JJ\"\n    ], \n    \"canned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"whaddya\": [\n        \"WP\"\n    ], \n    \"visualizations\": [\n        \"NNS\"\n    ], \n    \"Ibsen\": [\n        \"NNP\"\n    ], \n    \"cognoscenti\": [\n        \"NNS\"\n    ], \n    \"DARPA\": [\n        \"NNP\"\n    ], \n    \"clearance\": [\n        \"NN\"\n    ], \n    \"Petroliam\": [\n        \"NNP\"\n    ], \n    \"plagues\": [\n        \"VBZ\"\n    ], \n    \"paymaster\": [\n        \"NN\"\n    ], \n    \"hotrod\": [\n        \"NN\"\n    ], \n    \"open-year\": [\n        \"JJ\"\n    ], \n    \"telegram\": [\n        \"NN\"\n    ], \n    \"moonlike\": [\n        \"JJ\"\n    ], \n    \"small-capitalization\": [\n        \"JJ\"\n    ], \n    \"Coulson\": [\n        \"NNP\"\n    ], \n    \"swinger\": [\n        \"NN\"\n    ], \n    \"anti-drug\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"co-ordinated\": [\n        \"JJ\"\n    ], \n    \"pillars\": [\n        \"NNS\"\n    ], \n    \"hues\": [\n        \"NNS\"\n    ], \n    \"Yuzuru\": [\n        \"NNP\"\n    ], \n    \"outcasts\": [\n        \"NNS\"\n    ], \n    \"Numb\": [\n        \"JJ\"\n    ], \n    \"prelate\": [\n        \"NN\"\n    ], \n    \"flowchart\": [\n        \"NN\"\n    ], \n    \"clutches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"spot-promoted\": [\n        \"NN\"\n    ], \n    \"demands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Impasse\": [\n        \"NNP\"\n    ], \n    \"teleconferences\": [\n        \"NNS\"\n    ], \n    \"Executive-branch\": [\n        \"JJ\"\n    ], \n    \"clutched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Probus\": [\n        \"NNP\"\n    ], \n    \"pouncing\": [\n        \"VBG\"\n    ], \n    \"Daily\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"pertinent\": [\n        \"JJ\"\n    ], \n    \"parliamentarians\": [\n        \"NNS\"\n    ], \n    \"empty-shelved\": [\n        \"JJ\"\n    ], \n    \"underway\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"shimmered\": [\n        \"VBD\"\n    ], \n    \"toxicant\": [\n        \"NN\"\n    ], \n    \"CRIMINAL\": [\n        \"JJ\"\n    ], \n    \"late-day\": [\n        \"JJ\"\n    ], \n    \"Motoyuki\": [\n        \"NNP\"\n    ], \n    \"Burmah\": [\n        \"NNP\"\n    ], \n    \"irresistibly\": [\n        \"RB\"\n    ], \n    \"Burman\": [\n        \"NNP\"\n    ], \n    \"Coyotes\": [\n        \"NNS\"\n    ], \n    \"unfazed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Hydraulic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Hawksley\": [\n        \"NNP\"\n    ], \n    \"indigent\": [\n        \"JJ\"\n    ], \n    \"irresistible\": [\n        \"JJ\"\n    ], \n    \"abandon\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"cortege\": [\n        \"NN\"\n    ], \n    \"soirees\": [\n        \"NNS\"\n    ], \n    \"Sufficient\": [\n        \"JJ\"\n    ], \n    \"sub-Christian\": [\n        \"JJ\"\n    ], \n    \"knuckleball\": [\n        \"NN\"\n    ], \n    \"jokingly\": [\n        \"RB\"\n    ], \n    \"prosecuted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Vacuum\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"jumping-off\": [\n        \"JJ\"\n    ], \n    \"Lubriderm\": [\n        \"NNP\"\n    ], \n    \"inclination\": [\n        \"NN\"\n    ], \n    \"Loon\": [\n        \"NNP\"\n    ], \n    \"Antonia\": [\n        \"NNP\"\n    ], \n    \"Szuros\": [\n        \"NNP\"\n    ], \n    \"Loom\": [\n        \"NNP\"\n    ], \n    \"Look\": [\n        \"VB\", \n        \"NN\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"Rosalie\": [\n        \"NNP\"\n    ], \n    \"STUDENTS\": [\n        \"NNS\"\n    ], \n    \"interpreters\": [\n        \"NNS\"\n    ], \n    \"Colossus\": [\n        \"NNP\"\n    ], \n    \"agreement\": [\n        \"NN\"\n    ], \n    \"Antonin\": [\n        \"NNP\"\n    ], \n    \"Antonio\": [\n        \"NNP\"\n    ], \n    \"Cervantes\": [\n        \"NNP\"\n    ], \n    \"Pinellas\": [\n        \"NNP\"\n    ], \n    \"tidal\": [\n        \"JJ\"\n    ], \n    \"by\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"RB|RP\"\n    ], \n    \"Loop\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"glorying\": [\n        \"VBG\"\n    ], \n    \"discontented\": [\n        \"JJ\"\n    ], \n    \"data\\\\\": [\n        \"JJ\"\n    ], \n    \"Espenhain\": [\n        \"NNP\"\n    ], \n    \"Papasan\": [\n        \"NNP\"\n    ], \n    \"hatchet\": [\n        \"NN\"\n    ], \n    \"sub-markets\": [\n        \"NNS\"\n    ], \n    \"stock-selection\": [\n        \"JJ\"\n    ], \n    \"forgave\": [\n        \"VBD\"\n    ], \n    \"book-breaking\": [\n        \"JJ\"\n    ], \n    \"hatched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"filagree\": [\n        \"NN\"\n    ], \n    \"non-swimmers\": [\n        \"NNS\"\n    ], \n    \"Hertz\": [\n        \"NNP\"\n    ], \n    \"fitfully\": [\n        \"RB\"\n    ], \n    \"glumly\": [\n        \"RB\"\n    ], \n    \"dubiously\": [\n        \"RB\"\n    ], \n    \"plainest\": [\n        \"JJS\"\n    ], \n    \"Pickard\": [\n        \"NNP\"\n    ], \n    \"doubters\": [\n        \"NNS\"\n    ], \n    \"bare-footed\": [\n        \"JJ\"\n    ], \n    \"Pollock\": [\n        \"NNP\"\n    ], \n    \"primarily\": [\n        \"RB\"\n    ], \n    \"insecticide\": [\n        \"NN\"\n    ], \n    \"Bosco\": [\n        \"NNP\"\n    ], \n    \"Bosch\": [\n        \"NNP\"\n    ], \n    \"Shantou\": [\n        \"NNP\"\n    ], \n    \"arcade\": [\n        \"NN\"\n    ], \n    \"chide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"shillings\": [\n        \"NNS\"\n    ], \n    \"life-bettering\": [\n        \"JJ\"\n    ], \n    \"knee-jerk\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Bernie\": [\n        \"NNP\"\n    ], \n    \"Giacometti\": [\n        \"NNP\"\n    ], \n    \"byzantine\": [\n        \"JJ\"\n    ], \n    \"polytonal\": [\n        \"JJ\"\n    ], \n    \"relaxed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"lint\": [\n        \"NN\"\n    ], \n    \"buttery\": [\n        \"JJ\"\n    ], \n    \"construction-related\": [\n        \"JJ\"\n    ], \n    \"archaic\": [\n        \"JJ\"\n    ], \n    \"link\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Trite\": [\n        \"JJ\"\n    ], \n    \"Turnpike\": [\n        \"NNP\"\n    ], \n    \"line\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Seasonally\": [\n        \"RB\"\n    ], \n    \"Caryl\": [\n        \"NNP\"\n    ], \n    \"relaxes\": [\n        \"VBZ\"\n    ], \n    \"gizmos\": [\n        \"NNS\"\n    ], \n    \"Bhutto\": [\n        \"NNP\"\n    ], \n    \"Jeff\": [\n        \"NNP\"\n    ], \n    \"thickeners\": [\n        \"NNS\"\n    ], \n    \"Buena\": [\n        \"NNP\"\n    ], \n    \"MEN\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"MEI\": [\n        \"NNP\"\n    ], \n    \"horned\": [\n        \"JJ\"\n    ], \n    \"below-investment\": [\n        \"JJ\"\n    ], \n    \"MET\": [\n        \"VBD\"\n    ], \n    \"skis\": [\n        \"NNS\"\n    ], \n    \"seekingly\": [\n        \"RB\"\n    ], \n    \"sublicense\": [\n        \"NN\"\n    ], \n    \"NonProfit\": [\n        \"NNP\"\n    ], \n    \"hornet\": [\n        \"NN\"\n    ], \n    \"industry-supported\": [\n        \"JJ\"\n    ], \n    \"Birdwhistell\": [\n        \"NNP\"\n    ], \n    \"Kellner\": [\n        \"NNP\"\n    ], \n    \"nationalist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"defined\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"more-than-$\": [\n        \"$\"\n    ], \n    \"anti-pesticide\": [\n        \"JJ\"\n    ], \n    \"Crop\": [\n        \"NNP\"\n    ], \n    \"non-pathogenic\": [\n        \"JJ\"\n    ], \n    \"rate-slashing\": [\n        \"JJ\"\n    ], \n    \"concealment\": [\n        \"NN\"\n    ], \n    \"Manhattan\": [\n        \"NNP\"\n    ], \n    \"defines\": [\n        \"VBZ\"\n    ], \n    \"phantom\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Comair\": [\n        \"NNP\"\n    ], \n    \"electronic-trading\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mulford\": [\n        \"NNP\"\n    ], \n    \"bullishness\": [\n        \"NN\"\n    ], \n    \"ILLINOIS\": [\n        \"NNP\"\n    ], \n    \"Litman\\\\/Gregory\": [\n        \"NNP\"\n    ], \n    \"Ownership\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"conditioners\": [\n        \"NNS\"\n    ], \n    \"swirl\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sails\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"European-American\": [\n        \"NNP\"\n    ], \n    \"all-weather\": [\n        \"JJ\"\n    ], \n    \"Abbe-Direct\": [\n        \"NNP\"\n    ], \n    \"Mambo\": [\n        \"NNP\"\n    ], \n    \"robots\": [\n        \"NNS\"\n    ], \n    \"proclamations\": [\n        \"NNS\"\n    ], \n    \"Centigrade\": [\n        \"NN\"\n    ], \n    \"mealy\": [\n        \"JJ\"\n    ], \n    \"hazardous-waste-site\": [\n        \"NN\"\n    ], \n    \"bodily\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"meals\": [\n        \"NNS\"\n    ], \n    \"effrontery\": [\n        \"NN\"\n    ], \n    \"hells\": [\n        \"NNS\"\n    ], \n    \"tailored\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Hoak\": [\n        \"NNP\"\n    ], \n    \"electromagnet\": [\n        \"NN\"\n    ], \n    \"Xuanping\": [\n        \"NNP\"\n    ], \n    \"metabolize\": [\n        \"VB\"\n    ], \n    \"reconditioning\": [\n        \"VBG\"\n    ], \n    \"Hoag\": [\n        \"NNP\"\n    ], \n    \"Aegis\": [\n        \"NNP\"\n    ], \n    \"Dong-A\": [\n        \"NNP\"\n    ], \n    \"hello\": [\n        \"UH\", \n        \"NN\"\n    ], \n    \"Leninism-Marxism\": [\n        \"NNP\"\n    ], \n    \"Guardia\": [\n        \"NNP\"\n    ], \n    \"code\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"guzzler\": [\n        \"NN\"\n    ], \n    \"guzzles\": [\n        \"VBZ\"\n    ], \n    \"sorrier\": [\n        \"JJR\"\n    ], \n    \"Contemplating\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Nissans\": [\n        \"NNPS\"\n    ], \n    \"playland\": [\n        \"NN\"\n    ], \n    \"renown\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Construcciones\": [\n        \"NNP\"\n    ], \n    \"mercenaries\": [\n        \"NNS\"\n    ], \n    \"guzzled\": [\n        \"VBD\"\n    ], \n    \"Giuffrida\": [\n        \"NNP\"\n    ], \n    \"Civil-rights\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"grandly\": [\n        \"RB\"\n    ], \n    \"non-monopolistic\": [\n        \"JJ\"\n    ], \n    \"Cares\": [\n        \"VBZ\"\n    ], \n    \"McAllister\": [\n        \"NNP\"\n    ], \n    \"Step\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"teardrop\": [\n        \"NN\"\n    ], \n    \"Sanatorium\": [\n        \"NNP\"\n    ], \n    \"hipster\": [\n        \"NN\"\n    ], \n    \"dislike\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"social-studies\": [\n        \"NN\"\n    ], \n    \"Beaux-Arts\": [\n        \"NNP\"\n    ], \n    \"moot\": [\n        \"JJ\"\n    ], \n    \"Racketeer\": [\n        \"NNP\"\n    ], \n    \"Truckee\": [\n        \"NNP\"\n    ], \n    \"self-will\": [\n        \"NN\"\n    ], \n    \"Noonan\": [\n        \"NNP\"\n    ], \n    \"rewrapped\": [\n        \"NN\"\n    ], \n    \"Glucksman\": [\n        \"NNP\"\n    ], \n    \"jist\": [\n        \"RB\"\n    ], \n    \"Varani\": [\n        \"NNP\"\n    ], \n    \"Lagoon\": [\n        \"NNP\"\n    ], \n    \"BANKS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Regardless\": [\n        \"RB\"\n    ], \n    \"second-round\": [\n        \"JJ\"\n    ], \n    \"atonally\": [\n        \"RB\"\n    ], \n    \"recit\": [\n        \"FW\"\n    ], \n    \"Hagen\": [\n        \"NNP\"\n    ], \n    \"Ste.\": [\n        \"NNP\"\n    ], \n    \"Hager\": [\n        \"NNP\"\n    ], \n    \"Directly\": [\n        \"RB\"\n    ], \n    \"Extreme\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"logistics\": [\n        \"NNS\"\n    ], \n    \"disordered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"besieging\": [\n        \"VBG\"\n    ], \n    \"Scully\": [\n        \"NNP\"\n    ], \n    \"Boy/NNP...\": [\n        \":\"\n    ], \n    \"Dreadnought\": [\n        \"NNP\"\n    ], \n    \"munitions\": [\n        \"NNS\"\n    ], \n    \"incidentally\": [\n        \"RB\"\n    ], \n    \"umpteenth\": [\n        \"JJ\"\n    ], \n    \"flag-stick\": [\n        \"NN\"\n    ], \n    \"twine\": [\n        \"NN\"\n    ], \n    \"time-line\": [\n        \"NN\"\n    ], \n    \"B\\\\/C\": [\n        \"NN\"\n    ], \n    \"vintages\": [\n        \"NNS\"\n    ], \n    \"price-reform\": [\n        \"JJ\"\n    ], \n    \"Provenza\": [\n        \"NNP\"\n    ], \n    \"inpatients\": [\n        \"NNS\"\n    ], \n    \"B\\\\/T\": [\n        \"NNP\"\n    ], \n    \"twins\": [\n        \"NNS\"\n    ], \n    \"proffer\": [\n        \"VB\"\n    ], \n    \"Bodenheim\": [\n        \"NNP\"\n    ], \n    \"bird\": [\n        \"NN\"\n    ], \n    \"Verbindungstechnik\": [\n        \"NNP\"\n    ], \n    \"unmask\": [\n        \"VB\"\n    ], \n    \"led\": [\n        \"VBN\", \n        \"VBD\", \n        \"VB\"\n    ], \n    \"eminently\": [\n        \"RB\"\n    ], \n    \"leg\": [\n        \"NN\"\n    ], \n    \"len\": [\n        \"NN\"\n    ], \n    \"les\": [\n        \"FW\"\n    ], \n    \"let\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"lex\": [\n        \"FW\"\n    ], \n    \"Nofzinger\": [\n        \"NNP\"\n    ], \n    \"Commonwealth\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"impressionism\": [\n        \"NN\"\n    ], \n    \"right-to-lifers\": [\n        \"NNS\"\n    ], \n    \"twin-deficit\": [\n        \"NN\"\n    ], \n    \"dried-out\": [\n        \"JJ\"\n    ], \n    \"non-strategic\": [\n        \"JJ\"\n    ], \n    \"Himmler\": [\n        \"NNP\"\n    ], \n    \"steel-rod\": [\n        \"NN\"\n    ], \n    \"insulin\": [\n        \"NN\"\n    ], \n    \"impressionist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"residents\": [\n        \"NNS\"\n    ], \n    \"Elbaz\": [\n        \"NNP\"\n    ], \n    \"Fiddlesticks\": [\n        \"NNS\"\n    ], \n    \"Anglo-Saxon\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Britannic\": [\n        \"JJ\"\n    ], \n    \"Britannia\": [\n        \"NNP\"\n    ], \n    \"complying\": [\n        \"VBG\"\n    ], \n    \"Distributed\": [\n        \"VBN\"\n    ], \n    \"Propertius\": [\n        \"NNP\"\n    ], \n    \"boxy\": [\n        \"JJ\"\n    ], \n    \"sensitize\": [\n        \"VB\"\n    ], \n    \"Year-ago\": [\n        \"JJ\"\n    ], \n    \"seatrout\": [\n        \"NN\"\n    ], \n    \"Falconry\": [\n        \"NNP\"\n    ], \n    \"Bretherick\": [\n        \"NNP\"\n    ], \n    \"standing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"sketchbook\": [\n        \"NN\"\n    ], \n    \"half-aloud\": [\n        \"RB\"\n    ], \n    \"pawn\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Seagram\": [\n        \"NNP\"\n    ], \n    \"recalling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Borneo\": [\n        \"NNP\"\n    ], \n    \"Vanderbilt\": [\n        \"NNP\"\n    ], \n    \"doubt\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Pignatelli\": [\n        \"NNP\"\n    ], \n    \"yardstick\": [\n        \"NN\"\n    ], \n    \"hot-buttons\": [\n        \"NNS\"\n    ], \n    \"Merchandise\": [\n        \"NNP\"\n    ], \n    \"confiscate\": [\n        \"VB\"\n    ], \n    \"Westin\": [\n        \"NNP\"\n    ], \n    \"Noskova\": [\n        \"NNP\"\n    ], \n    \"Burial\": [\n        \"NN\"\n    ], \n    \"queerer\": [\n        \"JJR\"\n    ], \n    \"occurred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"approached\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"deregulate\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Rogues\": [\n        \"NNPS\"\n    ], \n    \"winches\": [\n        \"NNS\"\n    ], \n    \"Interfinancial\": [\n        \"NNP\"\n    ], \n    \"CAC\": [\n        \"NNP\"\n    ], \n    \"Rifles\": [\n        \"NNS\"\n    ], \n    \"DISTRESSFUL\": [\n        \"JJ\"\n    ], \n    \"Heartburn\": [\n        \"NNP\"\n    ], \n    \"endearments\": [\n        \"NNS\"\n    ], \n    \"reproduce\": [\n        \"VB\"\n    ], \n    \"Midco\": [\n        \"NNP\"\n    ], \n    \"Linsenberg\": [\n        \"NNP\"\n    ], \n    \"drill\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"whodunnit-style\": [\n        \"JJ\"\n    ], \n    \"Haberle\": [\n        \"NNP\"\n    ], \n    \"wearing\": [\n        \"VBG\"\n    ], \n    \"streamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bent\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"firefighting\": [\n        \"NN\"\n    ], \n    \"disaster-contingency\": [\n        \"NN\"\n    ], \n    \"DOLLARS\": [\n        \"NNPS\"\n    ], \n    \"Banawans\": [\n        \"NNPS\"\n    ], \n    \"transpired\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cato\": [\n        \"NNP\"\n    ], \n    \"Cats\": [\n        \"NNP\"\n    ], \n    \"Catt\": [\n        \"NNP\"\n    ], \n    \"bend\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Catz\": [\n        \"NNP\"\n    ], \n    \"five-hundred-dollar\": [\n        \"JJ\"\n    ], \n    \"Korneyeva\": [\n        \"NNP\"\n    ], \n    \"tune-in\": [\n        \"JJ\"\n    ], \n    \"Claytor\": [\n        \"NNP\"\n    ], \n    \"Clayton\": [\n        \"NNP\"\n    ], \n    \"Nationalcar\": [\n        \"NNP\"\n    ], \n    \"McGill\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Prieska\": [\n        \"NNP\"\n    ], \n    \"good-living\": [\n        \"JJ\"\n    ], \n    \"Rental\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"luster\": [\n        \"NN\"\n    ], \n    \"value-problems\": [\n        \"NNS\"\n    ], \n    \"aspiring\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Araskog\": [\n        \"NNP\"\n    ], \n    \"await\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tactually\": [\n        \"RB\"\n    ], \n    \"Ximenez-Vargas\": [\n        \"NNP\"\n    ], \n    \"WCRS\\\\/Boston\": [\n        \"NNP\"\n    ], \n    \"intraepithelial\": [\n        \"JJ\"\n    ], \n    \"weevils\": [\n        \"NNS\"\n    ], \n    \"prawns\": [\n        \"NNS\"\n    ], \n    \"Community\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"acquitted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"allot\": [\n        \"VB\"\n    ], \n    \"allow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"lactate\": [\n        \"NN\"\n    ], \n    \"alloy\": [\n        \"NN\"\n    ], \n    \"sub-interval\": [\n        \"NN\"\n    ], \n    \"Raisa\": [\n        \"NNP\"\n    ], \n    \"Regina\": [\n        \"NNP\"\n    ], \n    \"Raise\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Regine\": [\n        \"NNP\"\n    ], \n    \"Toulouse-Lautrec\": [\n        \"NNP\"\n    ], \n    \"Vientiane\": [\n        \"NNP\"\n    ], \n    \"fine-tooth\": [\n        \"JJ\"\n    ], \n    \"snafus\": [\n        \"NNS\"\n    ], \n    \"Flumenophobe\": [\n        \"NNP\"\n    ], \n    \"Match\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"once-distinct\": [\n        \"JJ\"\n    ], \n    \"Secretariat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cycads\": [\n        \"NNS\"\n    ], \n    \"Slenczynka\": [\n        \"NNP\"\n    ], \n    \"Liberace\": [\n        \"NNP\"\n    ], \n    \"heart-rending\": [\n        \"JJ\"\n    ], \n    \"Traficant\": [\n        \"NNP\"\n    ], \n    \"Blamed\": [\n        \"VBN\"\n    ], \n    \"co-sponsor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"designs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Coudert\": [\n        \"NNP\"\n    ], \n    \"seatbelt\": [\n        \"NN\"\n    ], \n    \"Feverishly\": [\n        \"RB\"\n    ], \n    \"Senshukai\": [\n        \"NNP\"\n    ], \n    \"belch\": [\n        \"NN\"\n    ], \n    \"Ozone\": [\n        \"NN\"\n    ], \n    \"yen-denominated\": [\n        \"JJ\"\n    ], \n    \"billiard\": [\n        \"NN\"\n    ], \n    \"Soliz\": [\n        \"NNP\"\n    ], \n    \"Cholesterol\": [\n        \"NN\"\n    ], \n    \"earthlings\": [\n        \"NNS\"\n    ], \n    \"Melanesian\": [\n        \"NNP\"\n    ], \n    \"mysteries\": [\n        \"NNS\"\n    ], \n    \"traffic-safety\": [\n        \"NN\"\n    ], \n    \"Cristo\": [\n        \"NNP\"\n    ], \n    \"irks\": [\n        \"VBZ\"\n    ], \n    \"draftees\": [\n        \"NNS\"\n    ], \n    \"sufficiently\": [\n        \"RB\"\n    ], \n    \"delightful\": [\n        \"JJ\"\n    ], \n    \"contract-food\": [\n        \"NN\"\n    ], \n    \"Arkansas\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"hoodwinked\": [\n        \"VBN\"\n    ], \n    \"scants\": [\n        \"VBZ\"\n    ], \n    \"models-on-the-way-up\": [\n        \"JJ\"\n    ], \n    \"Paperin\": [\n        \"NNP\"\n    ], \n    \"habitually\": [\n        \"RB\"\n    ], \n    \"broad-appeal\": [\n        \"JJ\"\n    ], \n    \"Macneff\": [\n        \"NNP\"\n    ], \n    \"decays\": [\n        \"VBZ\"\n    ], \n    \"Marum\": [\n        \"NNP\"\n    ], \n    \"banal\": [\n        \"JJ\"\n    ], \n    \"registrant\": [\n        \"NN\"\n    ], \n    \"Multnomah\": [\n        \"NNP\"\n    ], \n    \"reformism\": [\n        \"NN\"\n    ], \n    \"populace\": [\n        \"NN\"\n    ], \n    \"bad\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Genentech\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mafias\": [\n        \"NNS\"\n    ], \n    \"not-A\": [\n        \"NN\"\n    ], \n    \"subdivisions\": [\n        \"NNS\"\n    ], \n    \"Snowball\": [\n        \"NN\"\n    ], \n    \"Giuliani\": [\n        \"NNP\"\n    ], \n    \"bunches\": [\n        \"NNS\"\n    ], \n    \"money-saving\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"reformist\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"oblong\": [\n        \"JJ\"\n    ], \n    \"APPLIED\": [\n        \"NNP\"\n    ], \n    \"Statesman\": [\n        \"NNP\"\n    ], \n    \"Grunnfeu\": [\n        \"NNP\"\n    ], \n    \"Misbegotten\": [\n        \"NNP\"\n    ], \n    \"incalculable\": [\n        \"JJ\"\n    ], \n    \"ban\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"tropical-fruit\": [\n        \"NN\"\n    ], \n    \"ignominious\": [\n        \"JJ\"\n    ], \n    \"P-20\": [\n        \"NN\"\n    ], \n    \"cofounder\": [\n        \"NN\"\n    ], \n    \"dismantled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"secants\": [\n        \"NNS\"\n    ], \n    \"looting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"retooling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"latches\": [\n        \"VBZ\"\n    ], \n    \"Summerfolk\": [\n        \"NNP\"\n    ], \n    \"Sammartini\": [\n        \"NNP\"\n    ], \n    \"dismantles\": [\n        \"VBZ\"\n    ], \n    \"shucks\": [\n        \"UH\", \n        \"NNS\"\n    ], \n    \"latched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"J.W.\": [\n        \"NNP\"\n    ], \n    \"Changyi\": [\n        \"NNP\"\n    ], \n    \"endowments\": [\n        \"NNS\"\n    ], \n    \"blown\": [\n        \"VBN\"\n    ], \n    \"Maccabee\": [\n        \"NNP\"\n    ], \n    \"Cleve\": [\n        \"NNP\"\n    ], \n    \"privies\": [\n        \"NNS\"\n    ], \n    \"BAY\": [\n        \"NNP\"\n    ], \n    \"victimless\": [\n        \"JJ\"\n    ], \n    \"Stabilizing\": [\n        \"VBG\"\n    ], \n    \"blows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"cabbage\": [\n        \"NN\"\n    ], \n    \"automated-trading\": [\n        \"NN\"\n    ], \n    \"Donnell\": [\n        \"NNP\"\n    ], \n    \"Peeping\": [\n        \"NNP\"\n    ], \n    \"HIGH-SCHOOL\": [\n        \"NN\"\n    ], \n    \"Ryzhkov\": [\n        \"NNP\"\n    ], \n    \"percussion\": [\n        \"NN\"\n    ], \n    \"Lazarus\": [\n        \"NNP\"\n    ], \n    \"Lintas:Campbell-Ewald\": [\n        \"NNP\"\n    ], \n    \"Shearn\": [\n        \"NNP\"\n    ], \n    \"world-amid\": [\n        \"IN\"\n    ], \n    \"adopts\": [\n        \"VBZ\"\n    ], \n    \"Evangelical\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"tomato\": [\n        \"NN\"\n    ], \n    \"Inquisitor-General\": [\n        \"NNP\"\n    ], \n    \"co-op\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Xiaoping\": [\n        \"NNP\"\n    ], \n    \"confectioner\": [\n        \"NN\"\n    ], \n    \"opalescent\": [\n        \"JJ\"\n    ], \n    \"rotunda\": [\n        \"NN\"\n    ], \n    \"non-authoritative\": [\n        \"JJ\"\n    ], \n    \"subliterary\": [\n        \"JJ\"\n    ], \n    \"Sector\": [\n        \"NNP\"\n    ], \n    \"Daiei\": [\n        \"NNP\"\n    ], \n    \"colleagues\": [\n        \"NNS\"\n    ], \n    \"Classical\": [\n        \"NNP\"\n    ], \n    \"Livshitz\": [\n        \"NNP\"\n    ], \n    \"tortured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Supremacy\": [\n        \"NN\"\n    ], \n    \"Kilduff\": [\n        \"NNP\"\n    ], \n    \"Anglicanism\": [\n        \"NN\"\n    ], \n    \"briefing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"misunderstand\": [\n        \"VB\"\n    ], \n    \"kissings\": [\n        \"NNS\"\n    ], \n    \"yrs.\": [\n        \"NNS\"\n    ], \n    \"Boom\": [\n        \"NNP\"\n    ], \n    \"stopovers\": [\n        \"NNS\"\n    ], \n    \"Bosque\": [\n        \"NNP\"\n    ], \n    \"Synod\": [\n        \"NNP\"\n    ], \n    \"Toornstra\": [\n        \"NNP\"\n    ], \n    \"mischief\": [\n        \"NN\"\n    ], \n    \"heeds\": [\n        \"VBZ\"\n    ], \n    \"commonstock\": [\n        \"NN\"\n    ], \n    \"Tobishima\": [\n        \"NNP\"\n    ], \n    \"patroness\": [\n        \"NN\"\n    ], \n    \"adjunct\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sharp-limbed\": [\n        \"JJ\"\n    ], \n    \"pre-conditions\": [\n        \"NNS\"\n    ], \n    \"Mayland\": [\n        \"NNP\"\n    ], \n    \"equaling\": [\n        \"VBG\"\n    ], \n    \"Mississippians\": [\n        \"NNS\"\n    ], \n    \"bloodsucking\": [\n        \"VBG\"\n    ], \n    \"Greece\": [\n        \"NNP\"\n    ], \n    \"show-down\": [\n        \"NN\"\n    ], \n    \"carcasses\": [\n        \"NNS\"\n    ], \n    \"flagellation\": [\n        \"NN\"\n    ], \n    \"rollout\": [\n        \"NN\"\n    ], \n    \"socializing\": [\n        \"VBG\"\n    ], \n    \"British-Dutch\": [\n        \"JJ\"\n    ], \n    \"un-American\": [\n        \"JJ\"\n    ], \n    \"industryas\": [\n        \"NNS\"\n    ], \n    \"ignited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"latecomers\": [\n        \"NNS\"\n    ], \n    \"unscramble\": [\n        \"VB\"\n    ], \n    \"self-reinsure\": [\n        \"VB\"\n    ], \n    \"Demery\": [\n        \"NNP\"\n    ], \n    \"noire\": [\n        \"NN\"\n    ], \n    \"Checked\": [\n        \"VBN\"\n    ], \n    \"pre-1967\": [\n        \"JJ\"\n    ], \n    \"pre-1960\": [\n        \"JJ\"\n    ], \n    \"Morristown\": [\n        \"NNP\"\n    ], \n    \"bikes\": [\n        \"NNS\"\n    ], \n    \"Turnaround\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Under\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"bayly\": [\n        \"NN\"\n    ], \n    \"Independence\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"resells\": [\n        \"VBZ\"\n    ], \n    \"Spraying\": [\n        \"VBG\"\n    ], \n    \"squirreled\": [\n        \"VBN\"\n    ], \n    \"enamelled\": [\n        \"JJ\"\n    ], \n    \"softens\": [\n        \"VBZ\"\n    ], \n    \"Tracks\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Gloomy\": [\n        \"JJ\"\n    ], \n    \"finger\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"flinch\": [\n        \"VB\"\n    ], \n    \"exchanged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rommel\": [\n        \"NNP\"\n    ], \n    \"move\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"meditative\": [\n        \"JJ\"\n    ], \n    \"Whether\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"information-seeking\": [\n        \"NN\"\n    ], \n    \"Linvure\": [\n        \"NNP\"\n    ], \n    \"exchanger\": [\n        \"NN\"\n    ], \n    \"exchanges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"baby-sitter\": [\n        \"NN\"\n    ], \n    \"committees\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"five-story\": [\n        \"JJ\"\n    ], \n    \"Danvers\": [\n        \"NNP\"\n    ], \n    \"drug-testing\": [\n        \"NN\"\n    ], \n    \"coalescence\": [\n        \"NN\"\n    ], \n    \"SLTI\": [\n        \"NNP\"\n    ], \n    \"stomachwise\": [\n        \"RB\"\n    ], \n    \"F.G.\": [\n        \"NNP\"\n    ], \n    \"inter-relation\": [\n        \"NN\"\n    ], \n    \"power-driven\": [\n        \"JJ\"\n    ], \n    \"rein\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"handstand\": [\n        \"NN\"\n    ], \n    \"four-wood\": [\n        \"JJ\"\n    ], \n    \"anomie\": [\n        \"FW\"\n    ], \n    \"hydrochemistry\": [\n        \"NN\"\n    ], \n    \"temporarily\": [\n        \"RB\"\n    ], \n    \"anomic\": [\n        \"JJ\"\n    ], \n    \"C\": [\n        \"NN\", \n        \"JJ\", \n        \"LS\", \n        \"NNP\"\n    ], \n    \"bipartisanship\": [\n        \"NN\"\n    ], \n    \"Handbook\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"generational\": [\n        \"JJ\"\n    ], \n    \"forepaws\": [\n        \"NNS\"\n    ], \n    \"Porterhouse\": [\n        \"NN\"\n    ], \n    \"crystal-lattice\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Feebly\": [\n        \"RB\"\n    ], \n    \"book-burning\": [\n        \"JJ\"\n    ], \n    \"Mellanby\": [\n        \"NNP\"\n    ], \n    \"Cadwalader\": [\n        \"NNP\"\n    ], \n    \"DeVillars\": [\n        \"NNP\"\n    ], \n    \"Korotich\": [\n        \"NNP\"\n    ], \n    \"Lazard\": [\n        \"NNP\"\n    ], \n    \"Lazare\": [\n        \"NNP\"\n    ], \n    \"environmental-impact\": [\n        \"JJ\"\n    ], \n    \"Intriguing\": [\n        \"JJ\"\n    ], \n    \"two-day-old\": [\n        \"JJ\"\n    ], \n    \"aspires\": [\n        \"VBZ\"\n    ], \n    \"vitamin\": [\n        \"NN\"\n    ], \n    \"grasp\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"advisability\": [\n        \"NN\"\n    ], \n    \"gnomes\": [\n        \"NNS\"\n    ], \n    \"historians\": [\n        \"NNS\"\n    ], \n    \"restrictions\": [\n        \"NNS\"\n    ], \n    \"tantrum\": [\n        \"NN\"\n    ], \n    \"figured\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"five-fold\": [\n        \"JJ\"\n    ], \n    \"Mikado\": [\n        \"NNP\"\n    ], \n    \"heretofore-accepted\": [\n        \"JJ\"\n    ], \n    \"Centennial\": [\n        \"NNP\"\n    ], \n    \"volley\": [\n        \"NN\"\n    ], \n    \"double-meaning\": [\n        \"NN\"\n    ], \n    \"Shayne\": [\n        \"NNP\"\n    ], \n    \"cold-war\": [\n        \"JJ\"\n    ], \n    \"crafter\": [\n        \"NN\"\n    ], \n    \"adjusted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"hinterlands\": [\n        \"NNS\"\n    ], \n    \"Alceste\": [\n        \"NNP\"\n    ], \n    \"Greenpeace\": [\n        \"NNP\"\n    ], \n    \"Hanoi\": [\n        \"NNP\"\n    ], \n    \"revamp\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"migrant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pratap\": [\n        \"NNP\"\n    ], \n    \"Bruhn\": [\n        \"NNP\"\n    ], \n    \"Garry\": [\n        \"NNP\"\n    ], \n    \"escudo\": [\n        \"NN\"\n    ], \n    \"crafted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Passos\": [\n        \"NNP\"\n    ], \n    \"ataxia\": [\n        \"NN\"\n    ], \n    \"chromium\": [\n        \"NN\"\n    ], \n    \"Interagency\": [\n        \"NNP\"\n    ], \n    \"neocortical-hypothalamic\": [\n        \"JJ\"\n    ], \n    \"Vivien\": [\n        \"NNP\"\n    ], \n    \"quotas\": [\n        \"NNS\"\n    ], \n    \"Franklin-Trout\": [\n        \"NNP\"\n    ], \n    \"Vivier\": [\n        \"NNP\"\n    ], \n    \"Clozaril\": [\n        \"NNP\"\n    ], \n    \"recurring\": [\n        \"VBG\"\n    ], \n    \"ballast\": [\n        \"NN\"\n    ], \n    \"U.S-based\": [\n        \"JJ\"\n    ], \n    \"psychotherapist\": [\n        \"NN\"\n    ], \n    \"Lukas\": [\n        \"NNP\"\n    ], \n    \"bayonet\": [\n        \"NN\"\n    ], \n    \"gunpowder\": [\n        \"NN\"\n    ], \n    \"junk-bonds\": [\n        \"NNS\"\n    ], \n    \"fine-boned\": [\n        \"JJ\"\n    ], \n    \"toothless\": [\n        \"JJ\"\n    ], \n    \"emphaticize\": [\n        \"VB\"\n    ], \n    \"Wilder\": [\n        \"NNP\"\n    ], \n    \"Presidents\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Heel-Kaola\": [\n        \"NNP\"\n    ], \n    \"poured-in-place\": [\n        \"VBN\"\n    ], \n    \"Choctaw\": [\n        \"NNP\"\n    ], \n    \"JOKE\": [\n        \"NN\"\n    ], \n    \"Hanover-Supermarket\": [\n        \"NNP\"\n    ], \n    \"Lancome\": [\n        \"NNP\"\n    ], \n    \"eyeball\": [\n        \"NN\"\n    ], \n    \"Tire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"globigii\": [\n        \"NNS\"\n    ], \n    \"Panorama\": [\n        \"NNP\"\n    ], \n    \"surprisingly\": [\n        \"RB\"\n    ], \n    \"sentencings\": [\n        \"NNS\"\n    ], \n    \"Sort\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Badly\": [\n        \"RB\"\n    ], \n    \"long-line\": [\n        \"JJ\"\n    ], \n    \"Menendez\": [\n        \"NNP\"\n    ], \n    \"cue-phrase\": [\n        \"NN\"\n    ], \n    \"Sore\": [\n        \"JJ\"\n    ], \n    \"Sutcliffe\": [\n        \"NNP\"\n    ], \n    \"order-imbalance\": [\n        \"NN\"\n    ], \n    \"Paints\": [\n        \"NNP\"\n    ], \n    \"soundness\": [\n        \"NN\"\n    ], \n    \"tollhouse\": [\n        \"NN\"\n    ], \n    \"fenugreek\": [\n        \"NN\"\n    ], \n    \"Handling\": [\n        \"VBG\"\n    ], \n    \"Tipton\": [\n        \"NNP\"\n    ], \n    \"Imprisoned\": [\n        \"VBN\"\n    ], \n    \"dusk\": [\n        \"NN\"\n    ], \n    \"elicits\": [\n        \"VBZ\"\n    ], \n    \"hangman\": [\n        \"NN\"\n    ], \n    \"paving\": [\n        \"VBG\"\n    ], \n    \"dust\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ardito\": [\n        \"NNP\"\n    ], \n    \"light-hearted\": [\n        \"JJ\"\n    ], \n    \"nurtured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"discounted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Escalation\": [\n        \"NN\"\n    ], \n    \"disrupted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"single-malt\": [\n        \"JJ\"\n    ], \n    \"confronted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"unceasingly\": [\n        \"RB\"\n    ], \n    \"Schoch\": [\n        \"NNP\"\n    ], \n    \"command\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Phrase\": [\n        \"NNP\"\n    ], \n    \"Blocked\": [\n        \"VBN\"\n    ], \n    \"bananas\": [\n        \"NNS\"\n    ], \n    \"CEO-designate\": [\n        \"NN\"\n    ], \n    \"rambled\": [\n        \"VBD\"\n    ], \n    \"LaserWriter\": [\n        \"NNP\"\n    ], \n    \"tansy\": [\n        \"NN\"\n    ], \n    \"repressers\": [\n        \"NNS\"\n    ], \n    \"Equivalents\": [\n        \"NNS\"\n    ], \n    \"Monitoring\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"rambles\": [\n        \"VBZ\"\n    ], \n    \"Myers\": [\n        \"NNP\"\n    ], \n    \"afflicted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Wearing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"LaMacchia\": [\n        \"NNP\"\n    ], \n    \"residential\": [\n        \"JJ\"\n    ], \n    \"anti-productive\": [\n        \"JJ\"\n    ], \n    \"sickened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Eduard\": [\n        \"NNP\"\n    ], \n    \"Wieland\": [\n        \"NNP\"\n    ], \n    \"innocents\": [\n        \"NNS\"\n    ], \n    \"U.S.-donated\": [\n        \"JJ\"\n    ], \n    \"concretistic\": [\n        \"JJ\"\n    ], \n    \"flat-panel\": [\n        \"JJ\"\n    ], \n    \"magnify\": [\n        \"VB\"\n    ], \n    \"complicity\": [\n        \"NN\"\n    ], \n    \"chancellor\": [\n        \"NN\"\n    ], \n    \"Reginald\": [\n        \"NNP\"\n    ], \n    \"Lavoisier\": [\n        \"NNP\"\n    ], \n    \"Syed\": [\n        \"NNP\"\n    ], \n    \"Norwegians\": [\n        \"NNPS\"\n    ], \n    \"Dinner\": [\n        \"NN\"\n    ], \n    \"heart-stopping\": [\n        \"JJ\"\n    ], \n    \"Booker\": [\n        \"NNP\"\n    ], \n    \"Lauer\": [\n        \"NNP\"\n    ], \n    \"Secomerica\": [\n        \"NNP\"\n    ], \n    \"susceptibilities\": [\n        \"NNS\"\n    ], \n    \"accelerating\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\"\n    ], \n    \"becomin\": [\n        \"VBG\"\n    ], \n    \"Gelles\": [\n        \"NNP\"\n    ], \n    \"Geller\": [\n        \"NNP\"\n    ], \n    \"war-torn\": [\n        \"JJ\"\n    ], \n    \"immunity\": [\n        \"NN\"\n    ], \n    \"reform-minded\": [\n        \"JJ\"\n    ], \n    \"Westwood\": [\n        \"NNP\"\n    ], \n    \"landscapers\": [\n        \"NNS\"\n    ], \n    \"replacement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"rumor-happy\": [\n        \"JJ\"\n    ], \n    \"habitat\": [\n        \"NN\"\n    ], \n    \"shuttling\": [\n        \"VBG\"\n    ], \n    \"Guaranteed\": [\n        \"VBN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"thief\": [\n        \"NN\"\n    ], \n    \"unaudited\": [\n        \"JJ\"\n    ], \n    \"Acton\": [\n        \"NNP\"\n    ], \n    \"recession-resistant\": [\n        \"JJ\"\n    ], \n    \"Comptroller\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"transport\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"headship\": [\n        \"NN\"\n    ], \n    \"disbelief\": [\n        \"NN\"\n    ], \n    \"agriproducts\": [\n        \"NNS\"\n    ], \n    \"avoid\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"environmental-services\": [\n        \"NNS\"\n    ], \n    \"apprehended\": [\n        \"VBN\"\n    ], \n    \"InvesTech\": [\n        \"NNP\"\n    ], \n    \"gummed\": [\n        \"VBN\"\n    ], \n    \"Gives\": [\n        \"VBZ\"\n    ], \n    \"stairway\": [\n        \"NN\"\n    ], \n    \"Hanauer\": [\n        \"NNP\"\n    ], \n    \"stags\": [\n        \"NNS\"\n    ], \n    \"Pence\": [\n        \"NNP\"\n    ], \n    \"Gelb\": [\n        \"NNP\"\n    ], \n    \"Geld\": [\n        \"NNP\"\n    ], \n    \"shortchanging\": [\n        \"VBG\"\n    ], \n    \"Gell\": [\n        \"NNP\"\n    ], \n    \"Refill\": [\n        \"VB\"\n    ], \n    \"stage\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"sister\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Co-author\": [\n        \"NN\"\n    ], \n    \"Boliden\": [\n        \"NNP\"\n    ], \n    \"recession-sensitive\": [\n        \"JJ\"\n    ], \n    \"Sacheverell\": [\n        \"NNP\"\n    ], \n    \"Yosi\": [\n        \"NNP\"\n    ], \n    \"Calgene\": [\n        \"NNP\"\n    ], \n    \"Shelley\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"diabolical\": [\n        \"JJ\"\n    ], \n    \"Chaves\": [\n        \"NNP\"\n    ], \n    \"Carder\": [\n        \"NNP\"\n    ], \n    \"Rosella\": [\n        \"NNP\"\n    ], \n    \"Pedro\": [\n        \"NNP\"\n    ], \n    \"Roselle\": [\n        \"NNP\"\n    ], \n    \"HansGeorg\": [\n        \"NNP\"\n    ], \n    \"booed\": [\n        \"VBD\"\n    ], \n    \"Hagerty\": [\n        \"NNP\"\n    ], \n    \"flailing\": [\n        \"VBG\"\n    ], \n    \"borers\": [\n        \"NNS\"\n    ], \n    \"Comus\": [\n        \"NNP\"\n    ], \n    \"federal-formula\": [\n        \"JJ\"\n    ], \n    \"Pavlovsky\": [\n        \"NNP\"\n    ], \n    \"disaffected\": [\n        \"JJ\"\n    ], \n    \"British-based\": [\n        \"JJ\"\n    ], \n    \"Perzio-Biroli\": [\n        \"NNP\"\n    ], \n    \"savings-deposit\": [\n        \"JJ\"\n    ], \n    \"Sudikoff\": [\n        \"NNP\"\n    ], \n    \"Tylenol-tampering\": [\n        \"JJ\"\n    ], \n    \"data-transmission\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dockside\": [\n        \"NN\"\n    ], \n    \"Gentiles\": [\n        \"NNPS\"\n    ], \n    \"justifying\": [\n        \"VBG\"\n    ], \n    \"disapproval\": [\n        \"NN\"\n    ], \n    \"Hambros\": [\n        \"NNP\"\n    ], \n    \"Lanvin-owned\": [\n        \"JJ\"\n    ], \n    \"imbibe\": [\n        \"VB\"\n    ], \n    \"hand-tool\": [\n        \"NN\"\n    ], \n    \"dog-rose\": [\n        \"NN\"\n    ], \n    \"pretax\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"naturally\": [\n        \"RB\"\n    ], \n    \"funnel\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Weld\": [\n        \"NNP\"\n    ], \n    \"perpetuation\": [\n        \"NN\"\n    ], \n    \"ambiance\": [\n        \"NN\"\n    ], \n    \"Interestingly\": [\n        \"RB\"\n    ], \n    \"Well\": [\n        \"UH\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"assassins\": [\n        \"NNS\"\n    ], \n    \"Welt\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"quasi-folk\": [\n        \"JJ\"\n    ], \n    \"un-advertising\": [\n        \"NN\"\n    ], \n    \"Orix\": [\n        \"NNP\"\n    ], \n    \"Telescope\": [\n        \"NNP\"\n    ], \n    \"behemoth\": [\n        \"NN\"\n    ], \n    \"Goldwin\": [\n        \"NNP\"\n    ], \n    \"wife\": [\n        \"NN\"\n    ], \n    \"smooth\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Hebron\": [\n        \"NNP\"\n    ], \n    \"Orin\": [\n        \"NNP\"\n    ], \n    \"Ottauquechee\": [\n        \"NNP\"\n    ], \n    \"on-and-off\": [\n        \"JJ\"\n    ], \n    \"discount-toy\": [\n        \"JJ\"\n    ], \n    \"coiffed\": [\n        \"JJ\"\n    ], \n    \"Mandolin\": [\n        \"NNP\"\n    ], \n    \"recognize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"orbit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"R.I\": [\n        \"NNP\"\n    ], \n    \"abaringe\": [\n        \"NN\"\n    ], \n    \"Clinical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"FEMA\": [\n        \"NNP\"\n    ], \n    \"backfield\": [\n        \"NN\"\n    ], \n    \"six-count\": [\n        \"JJ\"\n    ], \n    \"mushroom\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Whitehall\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"CL\": [\n        \"NNP\"\n    ], \n    \"non-accruing\": [\n        \"JJ\"\n    ], \n    \"Volume\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"PETS\": [\n        \"NNS\"\n    ], \n    \"Fagan\": [\n        \"NNP\"\n    ], \n    \"quartz\": [\n        \"NN\"\n    ], \n    \"four-cents-a-share\": [\n        \"JJ\"\n    ], \n    \"three-body\": [\n        \"JJ\"\n    ], \n    \"quarts\": [\n        \"NNS\"\n    ], \n    \"Covent\": [\n        \"NNP\"\n    ], \n    \"woes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Merited\": [\n        \"JJ\"\n    ], \n    \"Timony\": [\n        \"NNP\"\n    ], \n    \"Chronometer\": [\n        \"NNP\"\n    ], \n    \"uranium-recovery\": [\n        \"JJ\"\n    ], \n    \"South\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"consisently\": [\n        \"RB\"\n    ], \n    \"Girard\": [\n        \"NNP\"\n    ], \n    \"Unice\": [\n        \"NNP\"\n    ], \n    \"gearboxes\": [\n        \"NNS\"\n    ], \n    \"forthrightly\": [\n        \"RB\"\n    ], \n    \"Unico\": [\n        \"NNP\"\n    ], \n    \"Wm.\": [\n        \"NNP\"\n    ], \n    \"Dowex-2-chloride\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"extra-thick\": [\n        \"JJ\"\n    ], \n    \"questionnaires\": [\n        \"NNS\"\n    ], \n    \"rural\": [\n        \"JJ\"\n    ], \n    \"Komori\": [\n        \"NNP\"\n    ], \n    \"Overwhelmed\": [\n        \"VBN\"\n    ], \n    \"well-drilled\": [\n        \"JJ\"\n    ], \n    \"Parretti\": [\n        \"NNP\"\n    ], \n    \"Lucretius\": [\n        \"NNP\"\n    ], \n    \"dysplasia\": [\n        \"NN\"\n    ], \n    \"million-and-counting\": [\n        \"JJ\"\n    ], \n    \"Lodge\": [\n        \"NNP\"\n    ], \n    \"Cascaded\": [\n        \"VBN\"\n    ], \n    \"orthophosphate\": [\n        \"NN\"\n    ], \n    \"co-sponsored\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Pressman\": [\n        \"NNP\"\n    ], \n    \"Watch\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"PHILADELPHIA\": [\n        \"NNP\"\n    ], \n    \"CV\": [\n        \"NNP\"\n    ], \n    \"recording-company\": [\n        \"NN\"\n    ], \n    \"heavy-truck\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Changing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Martyrs\": [\n        \"NNP\"\n    ], \n    \"restock\": [\n        \"VB\"\n    ], \n    \"DMB&B\\\\/International\": [\n        \"JJ\"\n    ], \n    \"optimists\": [\n        \"NNS\"\n    ], \n    \"evacuation\": [\n        \"NN\"\n    ], \n    \"Greening\": [\n        \"NN\"\n    ], \n    \"Reasoner\": [\n        \"NNP\"\n    ], \n    \"here...\": [\n        \":\"\n    ], \n    \"D.s\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"wagons\": [\n        \"NNS\"\n    ], \n    \"Szolds\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"stocks-boosted\": [\n        \"NN\"\n    ], \n    \"bewildered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Lifecodes\": [\n        \"NNPS\"\n    ], \n    \"D.C\": [\n        \"NNP\"\n    ], \n    \"Attic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Sangetsu\": [\n        \"NNP\"\n    ], \n    \"Sufi\": [\n        \"JJ\"\n    ], \n    \"fogy\": [\n        \"NN\"\n    ], \n    \"D.K\": [\n        \"NNP\"\n    ], \n    \"SNP\": [\n        \"NN\"\n    ], \n    \"indices\": [\n        \"NNS\"\n    ], \n    \"Spahn\": [\n        \"NNP\"\n    ], \n    \"vacuous\": [\n        \"JJ\"\n    ], \n    \"pre-vision\": [\n        \"JJ\"\n    ], \n    \"diverting\": [\n        \"VBG\"\n    ], \n    \"occasioned\": [\n        \"VBN\"\n    ], \n    \"Golda\": [\n        \"NNP\"\n    ], \n    \"Staniszkis\": [\n        \"NNP\"\n    ], \n    \"VOLUME\": [\n        \"NN\"\n    ], \n    \"Godspeed\": [\n        \"NN\"\n    ], \n    \"Collins\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"flatus\": [\n        \"NN\"\n    ], \n    \"meditation\": [\n        \"NN\"\n    ], \n    \"letter-writing\": [\n        \"JJ\"\n    ], \n    \"Generating\": [\n        \"NNP\"\n    ], \n    \"Churchyard\": [\n        \"NNP\"\n    ], \n    \"self-sufficient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Feringa\": [\n        \"NNP\"\n    ], \n    \"Merner\": [\n        \"NNP\"\n    ], \n    \"above\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"churches\": [\n        \"NNS\"\n    ], \n    \"counters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cosmopulos\": [\n        \"NNP\"\n    ], \n    \"sinkt\": [\n        \"FW\"\n    ], \n    \"sinks\": [\n        \"VBZ\"\n    ], \n    \"low-crime\": [\n        \"JJ\"\n    ], \n    \"delicto\": [\n        \"FW\"\n    ], \n    \"H.P.R.\": [\n        \"NNP\"\n    ], \n    \"delicti\": [\n        \"FW\"\n    ], \n    \"self-exile\": [\n        \"NN\"\n    ], \n    \"Jean-Claude\": [\n        \"NNP\"\n    ], \n    \"McGrath\": [\n        \"NNP\"\n    ], \n    \"Emcee\": [\n        \"NNP\"\n    ], \n    \"studs\": [\n        \"NNS\"\n    ], \n    \"movie-like\": [\n        \"JJ\"\n    ], \n    \"balance\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Burkes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Labrador\": [\n        \"NNP\"\n    ], \n    \"pre-marital\": [\n        \"JJ\"\n    ], \n    \"study\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lambarene\": [\n        \"NNP\"\n    ], \n    \"mannerism\": [\n        \"NN\"\n    ], \n    \"STAR-STUDDED\": [\n        \"JJ\"\n    ], \n    \"Hush\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Delmont\": [\n        \"NNP\"\n    ], \n    \"Husk\": [\n        \"NNP\"\n    ], \n    \"arcus\": [\n        \"NN\"\n    ], \n    \"fifth-least\": [\n        \"JJ\"\n    ], \n    \"most-respected\": [\n        \"JJS\"\n    ], \n    \"think-alike\": [\n        \"JJ\"\n    ], \n    \"diameter\": [\n        \"NN\"\n    ], \n    \"Nac\": [\n        \"NNP\"\n    ], \n    \"Time-Life\": [\n        \"NNP\"\n    ], \n    \"Legislation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Figone\": [\n        \"NNP\"\n    ], \n    \"cheats\": [\n        \"VBZ\"\n    ], \n    \"Katmandu\": [\n        \"NNP\"\n    ], \n    \"glance\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"auditing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"highly-confident\": [\n        \"JJ\"\n    ], \n    \"Cornona\": [\n        \"NNP\"\n    ], \n    \"Drugs\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Psychotherapist\": [\n        \"NN\"\n    ], \n    \"chooses\": [\n        \"VBZ\"\n    ], \n    \"well-trained\": [\n        \"JJ\"\n    ], \n    \"circonscriptions\": [\n        \"NNS\"\n    ], \n    \"supercolliding\": [\n        \"VBG\"\n    ], \n    \"Steiners\": [\n        \"NNPS\"\n    ], \n    \"renovations\": [\n        \"NNS\"\n    ], \n    \"fractions\": [\n        \"NNS\"\n    ], \n    \"Horatio\": [\n        \"NNP\"\n    ], \n    \"Jonquieres\": [\n        \"NNP\"\n    ], \n    \"traceable\": [\n        \"JJ\"\n    ], \n    \"Robusta-producing\": [\n        \"JJ\"\n    ], \n    \"reign\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"escapist\": [\n        \"JJ\"\n    ], \n    \"Gould\": [\n        \"NNP\"\n    ], \n    \"continual\": [\n        \"JJ\"\n    ], \n    \"Krasnow\": [\n        \"NNP\"\n    ], \n    \"EUMMELIHS\": [\n        \"NNP\"\n    ], \n    \"bunnies\": [\n        \"NNS\"\n    ], \n    \"permits\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"bomb-detection\": [\n        \"JJ\"\n    ], \n    \"Rios-embryos\": [\n        \"NNS\"\n    ], \n    \"Nap\": [\n        \"NNP\"\n    ], \n    \"immutable\": [\n        \"JJ\"\n    ], \n    \"communist-led\": [\n        \"JJ\"\n    ], \n    \"Atrium\": [\n        \"NNP\"\n    ], \n    \"export-promotion\": [\n        \"JJ\"\n    ], \n    \"Laufenberg\": [\n        \"NNP\"\n    ], \n    \"agriculture-extension\": [\n        \"NN\"\n    ], \n    \"Marxist\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"bureaucraticized\": [\n        \"JJ\"\n    ], \n    \"Barbaud\": [\n        \"NNP\"\n    ], \n    \"Arfeen\": [\n        \"NNP\"\n    ], \n    \"non-affiliate\": [\n        \"NN\"\n    ], \n    \"thatched-roof\": [\n        \"JJ\"\n    ], \n    \"Stuckert\": [\n        \"NNP\"\n    ], \n    \"Marxism\": [\n        \"NNP\"\n    ], \n    \"Hogan\": [\n        \"NNP\"\n    ], \n    \"sweethearts\": [\n        \"NNS\"\n    ], \n    \"aerated\": [\n        \"VBN\"\n    ], \n    \"Purdew\": [\n        \"NNP\"\n    ], \n    \"photocopy\": [\n        \"VB\"\n    ], \n    \"debauchery\": [\n        \"NN\"\n    ], \n    \"Heidelberg\": [\n        \"NNP\"\n    ], \n    \"Corlopam\": [\n        \"NNP\"\n    ], \n    \"aerates\": [\n        \"VBZ\"\n    ], \n    \"boats\": [\n        \"NNS\"\n    ], \n    \"REACHED\": [\n        \"NNP\"\n    ], \n    \"ordinary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fudge\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"radio-show\": [\n        \"JJ\"\n    ], \n    \"RBSPr\": [\n        \"NNP\"\n    ], \n    \"classifying\": [\n        \"VBG\"\n    ], \n    \"Dylan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lotteries\": [\n        \"NNS\"\n    ], \n    \"Establishing\": [\n        \"VBG\"\n    ], \n    \"Anglo-Irish\": [\n        \"JJ\"\n    ], \n    \"b-Percent\": [\n        \"NN\"\n    ], \n    \"overdressed\": [\n        \"JJ\"\n    ], \n    \"Entwhistle\": [\n        \"NNP\"\n    ], \n    \"chilled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"last-second\": [\n        \"JJ\"\n    ], \n    \"Dryfoos\": [\n        \"NNP\"\n    ], \n    \"supermarkets\": [\n        \"NNS\"\n    ], \n    \"green\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"over-achievement\": [\n        \"NN\"\n    ], \n    \"block-trading\": [\n        \"NN\"\n    ], \n    \"remonstrate\": [\n        \"VB\"\n    ], \n    \"MegEcon\": [\n        \"NNP\"\n    ], \n    \"greed\": [\n        \"NN\"\n    ], \n    \"Wilmot\": [\n        \"NNP\"\n    ], \n    \"twelvefold\": [\n        \"JJ\"\n    ], \n    \"devote\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"consent\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"jabs\": [\n        \"NNS\"\n    ], \n    \"Huichol\": [\n        \"NNP\"\n    ], \n    \"Hazy\": [\n        \"NNP\"\n    ], \n    \"resonable\": [\n        \"JJ\"\n    ], \n    \"crimping\": [\n        \"VBG\"\n    ], \n    \"Nonsmokers\": [\n        \"NNP\"\n    ], \n    \"ASCAP\": [\n        \"NNP\"\n    ], \n    \"DeLuca\": [\n        \"NNP\"\n    ], \n    \"refectories\": [\n        \"NNS\"\n    ], \n    \"somnolence\": [\n        \"NN\"\n    ], \n    \"Finish\": [\n        \"VB\"\n    ], \n    \"videotapes\": [\n        \"NNS\"\n    ], \n    \"air-conditioner\": [\n        \"NN\"\n    ], \n    \"somewhere\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"air-conditioned\": [\n        \"JJ\"\n    ], \n    \"Volcker\": [\n        \"NNP\"\n    ], \n    \"Judge\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"precipitate\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Encare\": [\n        \"NNP\"\n    ], \n    \"interpretive\": [\n        \"JJ\"\n    ], \n    \"then\": [\n        \"RB\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"Mergens\": [\n        \"NNP\"\n    ], \n    \"affected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"JJ|VBN\"\n    ], \n    \"thei\": [\n        \"PRP\"\n    ], \n    \"locusts\": [\n        \"NNS\"\n    ], \n    \"amenable\": [\n        \"JJ\"\n    ], \n    \"tire-making\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Periodic\": [\n        \"JJ\"\n    ], \n    \"clogging\": [\n        \"VBG\"\n    ], \n    \"thet\": [\n        \"DT\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"ther\": [\n        \"RB\", \n        \"EX\", \n        \"JJR\", \n        \"PRP$\"\n    ], \n    \"seedcoat\": [\n        \"NN\"\n    ], \n    \"moneyed\": [\n        \"JJ\"\n    ], \n    \"Bearer\": [\n        \"NN\"\n    ], \n    \"gallows\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"relishes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"subpenas\": [\n        \"NNS\"\n    ], \n    \"JUDICIARY\": [\n        \"NNP\"\n    ], \n    \"presupposition\": [\n        \"NN\"\n    ], \n    \"grows\": [\n        \"VBZ\"\n    ], \n    \"Sforzt\": [\n        \"NNP\"\n    ], \n    \"seedlings\": [\n        \"NNS\"\n    ], \n    \"Armada\": [\n        \"NNP\"\n    ], \n    \"Vaclav\": [\n        \"NNP\"\n    ], \n    \"Rainbow\": [\n        \"NNP\"\n    ], \n    \"Zipperstein\": [\n        \"NNP\"\n    ], \n    \"monolith\": [\n        \"NN\"\n    ], \n    \"COURTS\": [\n        \"NNS\"\n    ], \n    \"list\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"crimes\": [\n        \"NNS\"\n    ], \n    \"cabanas\": [\n        \"NNS\"\n    ], \n    \"Bevmark\": [\n        \"NNP\"\n    ], \n    \"cascading\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"retied\": [\n        \"VBD\"\n    ], \n    \"Biographical\": [\n        \"NNP\"\n    ], \n    \"pigments\": [\n        \"NNS\"\n    ], \n    \"Myth\": [\n        \"NNP\"\n    ], \n    \"dialects\": [\n        \"NNS\"\n    ], \n    \"buy-backs\": [\n        \"NNS\"\n    ], \n    \"Neiman-Marcus\": [\n        \"NNP\"\n    ], \n    \"research-staff\": [\n        \"NN\"\n    ], \n    \"bacteria-based\": [\n        \"JJ\"\n    ], \n    \"fudging\": [\n        \"NN\"\n    ], \n    \"Eritrean\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Jakarta\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pool-owners\": [\n        \"NNS\"\n    ], \n    \"Contradictions\": [\n        \"NNP\"\n    ], \n    \"sliding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"disagreements\": [\n        \"NNS\"\n    ], \n    \"W.F.\": [\n        \"NNP\"\n    ], \n    \"marketwise\": [\n        \"RB\"\n    ], \n    \"Junk-fund\": [\n        \"NN\"\n    ], \n    \"troopship\": [\n        \"NN\"\n    ], \n    \"lawless\": [\n        \"JJ\"\n    ], \n    \"depots\": [\n        \"NNS\"\n    ], \n    \"drug-free\": [\n        \"JJ\"\n    ], \n    \"deceptive\": [\n        \"JJ\"\n    ], \n    \"indemnity\": [\n        \"NN\"\n    ], \n    \"Massage\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"incorporates\": [\n        \"VBZ\"\n    ], \n    \"unfulfilled\": [\n        \"JJ\"\n    ], \n    \"recovering\": [\n        \"VBG\"\n    ], \n    \"Certification\": [\n        \"NNP\"\n    ], \n    \"Tappets\": [\n        \"NNS\"\n    ], \n    \"Rothman\": [\n        \"NNP\"\n    ], \n    \"mental-illness\": [\n        \"NN\"\n    ], \n    \"Determined\": [\n        \"VBN\"\n    ], \n    \"aborning\": [\n        \"RB\"\n    ], \n    \"incorporated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"self-conceited\": [\n        \"JJ\"\n    ], \n    \"JAPAN\": [\n        \"NNP\"\n    ], \n    \"student-athletes\": [\n        \"NNS\"\n    ], \n    \"re-examining\": [\n        \"VBG\"\n    ], \n    \"Mediobanca\": [\n        \"NNP\"\n    ], \n    \"crooning\": [\n        \"VBG\"\n    ], \n    \"chopper\": [\n        \"NN\"\n    ], \n    \"fighter-plane\": [\n        \"NN\"\n    ], \n    \"AIDS\": [\n        \"NNP\"\n    ], \n    \"Nestor\": [\n        \"NNP\"\n    ], \n    \"Samper\": [\n        \"NNP\"\n    ], \n    \"adventitious\": [\n        \"JJ\"\n    ], \n    \"Jaycees\": [\n        \"NNPS\"\n    ], \n    \"self-policing\": [\n        \"JJ\"\n    ], \n    \"Yokich\": [\n        \"NNP\"\n    ], \n    \"plentiful\": [\n        \"JJ\"\n    ], \n    \"airs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Nintendo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"airy\": [\n        \"JJ\"\n    ], \n    \"inflate\": [\n        \"VB\"\n    ], \n    \"warded\": [\n        \"VBN\"\n    ], \n    \"Judgment\": [\n        \"NNP\"\n    ], \n    \"copper-producing\": [\n        \"JJ\"\n    ], \n    \"Clarcor\": [\n        \"NNP\"\n    ], \n    \"B\": [\n        \"NNP\", \n        \"JJ\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"Imposed\": [\n        \"VBN\"\n    ], \n    \"Hiroyuki\": [\n        \"NNP\"\n    ], \n    \"Rockville\": [\n        \"NNP\"\n    ], \n    \"fragility\": [\n        \"NN\"\n    ], \n    \"luncheon\": [\n        \"NN\"\n    ], \n    \"Cinnaminson\": [\n        \"NNP\"\n    ], \n    \"FREEZE\": [\n        \"VB\"\n    ], \n    \"exhilarating\": [\n        \"JJ\"\n    ], \n    \"surface-active\": [\n        \"JJ\"\n    ], \n    \"Improprieties\": [\n        \"NNS\"\n    ], \n    \"Sadakane\": [\n        \"NNP\"\n    ], \n    \"short-to-medium\": [\n        \"JJ\"\n    ], \n    \"Algemene\": [\n        \"NNP\"\n    ], \n    \"Dravo\": [\n        \"NNP\"\n    ], \n    \"Advisory\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Set\": [\n        \"VB\", \n        \"VBN\", \n        \"NNP\"\n    ], \n    \"glorified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Suresh\": [\n        \"NNP\"\n    ], \n    \"Advisors\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"negotiator\": [\n        \"NN\"\n    ], \n    \"Trittico\": [\n        \"FW\"\n    ], \n    \"Sex\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"binds\": [\n        \"VBZ\"\n    ], \n    \"black-bearded\": [\n        \"JJ\"\n    ], \n    \"Sea\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sen\": [\n        \"NNP\"\n    ], \n    \"solely\": [\n        \"RB\"\n    ], \n    \"Stuck-up\": [\n        \"NN\"\n    ], \n    \"Downers\": [\n        \"NNP\"\n    ], \n    \"manned\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"laboriously\": [\n        \"RB\"\n    ], \n    \"shoals\": [\n        \"NNS\"\n    ], \n    \"stooooomp\": [\n        \"VB\"\n    ], \n    \"manner\": [\n        \"NN\"\n    ], \n    \"Occupational-Urgent\": [\n        \"NNP\"\n    ], \n    \"Newcomb\": [\n        \"NNP\"\n    ], \n    \"Arnell\\\\/Bickford\": [\n        \"NNP\"\n    ], \n    \"strength\": [\n        \"NN\"\n    ], \n    \"Finot\": [\n        \"NNP\"\n    ], \n    \"Rosser\": [\n        \"NNP\"\n    ], \n    \"zest\": [\n        \"NN\"\n    ], \n    \"subduing\": [\n        \"VBG\"\n    ], \n    \"toursists\": [\n        \"NNS\"\n    ], \n    \"sign-language\": [\n        \"NN\"\n    ], \n    \"pianissimos\": [\n        \"NNS\"\n    ], \n    \"Brookfield\": [\n        \"NNP\"\n    ], \n    \"Nausea\": [\n        \"NN\"\n    ], \n    \"Liming\": [\n        \"NNP\"\n    ], \n    \"Bakersfield\": [\n        \"NNP\"\n    ], \n    \"Meat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eamonn\": [\n        \"NNP\"\n    ], \n    \"Conran\": [\n        \"NNP\"\n    ], \n    \"Boni\": [\n        \"NNP\"\n    ], \n    \"Bonn\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"BRAMALEA\": [\n        \"NNP\"\n    ], \n    \"Conrac\": [\n        \"NNP\"\n    ], \n    \"nutritive\": [\n        \"JJ\"\n    ], \n    \"Vision\": [\n        \"NNP\"\n    ], \n    \"Bond\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lindy\": [\n        \"NNP\"\n    ], \n    \"Bourke-White\": [\n        \"NNP\"\n    ], \n    \"Monetta\": [\n        \"NNP\"\n    ], \n    \"neighborhoods\": [\n        \"NNS\"\n    ], \n    \"emasculated\": [\n        \"VBD\"\n    ], \n    \"W-region\": [\n        \"NN\"\n    ], \n    \"producin\": [\n        \"VBG\"\n    ], \n    \"Lauderhill\": [\n        \"NNP\"\n    ], \n    \"accounted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"calmness\": [\n        \"NN\"\n    ], \n    \"briskly\": [\n        \"RB\"\n    ], \n    \"renting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"subtly\": [\n        \"RB\"\n    ], \n    \"Peduzzi\": [\n        \"NNP\"\n    ], \n    \"phosphide\": [\n        \"NN\"\n    ], \n    \"eminent\": [\n        \"JJ\"\n    ], \n    \"Amclyde\": [\n        \"NNP\"\n    ], \n    \"subtle\": [\n        \"JJ\"\n    ], \n    \"exclusivity\": [\n        \"NN\"\n    ], \n    \"blotting\": [\n        \"VBG\"\n    ], \n    \"resemblance\": [\n        \"NN\"\n    ], \n    \"alluded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Janeiro\": [\n        \"NNP\"\n    ], \n    \"Eiffel\": [\n        \"NNP\"\n    ], \n    \"alizarin\": [\n        \"NN\"\n    ], \n    \"Wastewater\": [\n        \"NNP\"\n    ], \n    \"electrophoresis\": [\n        \"NN\"\n    ], \n    \"ConAgra\": [\n        \"NNP\"\n    ], \n    \"German-speaking\": [\n        \"JJ\"\n    ], \n    \"Ebrahim\": [\n        \"NNP\"\n    ], \n    \"co-defendant\": [\n        \"NN\"\n    ], \n    \"musta\": [\n        \"MD\"\n    ], \n    \"Hoffmann-La\": [\n        \"NNP\"\n    ], \n    \"do\": [\n        \"VBP\", \n        \"FW\", \n        \"NN\", \n        \"VB\", \n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"seven-digit\": [\n        \"JJ\"\n    ], \n    \"intersect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Peepy\": [\n        \"NNP\"\n    ], \n    \"di\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Republican-governor\\\\\": [\n        \"JJ\"\n    ], \n    \"Hopson\": [\n        \"NNP\"\n    ], \n    \"dd\": [\n        \"VBD\"\n    ], \n    \"Souphanouvong\": [\n        \"NNP\"\n    ], \n    \"da\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"protectively\": [\n        \"RB\"\n    ], \n    \"Grinsfelder\": [\n        \"NNP\"\n    ], \n    \"statutorily\": [\n        \"RB\"\n    ], \n    \"side-step\": [\n        \"VBP\"\n    ], \n    \"du\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"UJB\": [\n        \"NNP\"\n    ], \n    \"Tordella\": [\n        \"NNP\"\n    ], \n    \"Corry\": [\n        \"NNP\"\n    ], \n    \"irregularities\": [\n        \"NNS\"\n    ], \n    \"Carrara\": [\n        \"NNP\"\n    ], \n    \"large-business\": [\n        \"JJ\"\n    ], \n    \"bondholdings\": [\n        \"NNS\"\n    ], \n    \"Rockport\": [\n        \"NNP\"\n    ], \n    \"squadron\": [\n        \"NN\"\n    ], \n    \"limited-substitution\": [\n        \"JJ\"\n    ], \n    \"PANDA\": [\n        \"NNP\"\n    ], \n    \"squeezed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"triumphed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lemonade\": [\n        \"NN\"\n    ], \n    \"bio-assay\": [\n        \"NN\"\n    ], \n    \"ANGELES\": [\n        \"NNP\"\n    ], \n    \"Murrin\": [\n        \"NNP\"\n    ], \n    \"depends\": [\n        \"VBZ\"\n    ], \n    \"Orissa\": [\n        \"NNP\"\n    ], \n    \"Toalster\": [\n        \"NNP\"\n    ], \n    \"Askin\": [\n        \"NNP\"\n    ], \n    \"jocose\": [\n        \"JJ\"\n    ], \n    \"Coulas\": [\n        \"NNP\"\n    ], \n    \"sourcing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"lightning-fast\": [\n        \"JJ\"\n    ], \n    \"tainted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"props\": [\n        \"NNS\"\n    ], \n    \"Caldera\": [\n        \"NNP\"\n    ], \n    \"zoooop\": [\n        \"NN\"\n    ], \n    \"Ratcliff\": [\n        \"NNP\"\n    ], \n    \"Minden\": [\n        \"NNP\"\n    ], \n    \"claims-processing\": [\n        \"NN\"\n    ], \n    \"accord\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"downgrades\": [\n        \"NNS\"\n    ], \n    \"Feelings\": [\n        \"NNS\"\n    ], \n    \"Doria\": [\n        \"NNP\"\n    ], \n    \"double-jeopardy\": [\n        \"NN\"\n    ], \n    \"Doric\": [\n        \"JJ\"\n    ], \n    \"Cochrane\": [\n        \"NNP\"\n    ], \n    \"postponement\": [\n        \"NN\"\n    ], \n    \"Abrupt\": [\n        \"JJ\"\n    ], \n    \"Teraoka\": [\n        \"NNP\"\n    ], \n    \"I.B.M.\": [\n        \"NNP\"\n    ], \n    \"packages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"downgraded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Doris\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"scribbling\": [\n        \"VBG\"\n    ], \n    \"added:``\": [\n        \"``\"\n    ], \n    \"penurious\": [\n        \"JJ\"\n    ], \n    \"parried\": [\n        \"VBD\"\n    ], \n    \"Custer\": [\n        \"NNP\"\n    ], \n    \"Kofanes\": [\n        \"NNS\"\n    ], \n    \"coy\": [\n        \"JJ\"\n    ], \n    \"open-collared\": [\n        \"JJ\"\n    ], \n    \"cod\": [\n        \"NN\"\n    ], \n    \"cog\": [\n        \"NN\"\n    ], \n    \"Navy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unverifiable\": [\n        \"JJ\"\n    ], \n    \"Langton\": [\n        \"NNP\"\n    ], \n    \"Ratliff\": [\n        \"NNP\"\n    ], \n    \"con\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"FW\", \n        \"IN\"\n    ], \n    \"Forty-second\": [\n        \"JJ\"\n    ], \n    \"Initial\": [\n        \"JJ\"\n    ], \n    \"Alamogordo\": [\n        \"NNP\"\n    ], \n    \"Board\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"TV-production\": [\n        \"JJ\"\n    ], \n    \"polynomial\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"beheaded\": [\n        \"VBD\"\n    ], \n    \"jays\": [\n        \"NNS\"\n    ], \n    \"broadens\": [\n        \"VBZ\"\n    ], \n    \"petty\": [\n        \"JJ\"\n    ], \n    \"five-column\": [\n        \"JJ\"\n    ], \n    \"buffets\": [\n        \"NNS\"\n    ], \n    \"margin-the\": [\n        \"NN|DT\"\n    ], \n    \"corollaries\": [\n        \"NNS\"\n    ], \n    \"nonverbally\": [\n        \"RB\"\n    ], \n    \"print-out\": [\n        \"JJ\"\n    ], \n    \"search-and-seizure\": [\n        \"JJ\"\n    ], \n    \"crashlet\": [\n        \"NN\"\n    ], \n    \"Wedbush\": [\n        \"NNP\"\n    ], \n    \"Riverboat\": [\n        \"NNP\"\n    ], \n    \"injury-prone\": [\n        \"JJ\"\n    ], \n    \"Air-freight\": [\n        \"NN\"\n    ], \n    \"surreptitious\": [\n        \"JJ\"\n    ], \n    \"Long-term\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Fin-syn\": [\n        \"JJ\"\n    ], \n    \"naval\": [\n        \"JJ\"\n    ], \n    \"convening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"merchantbanking\": [\n        \"NN\"\n    ], \n    \"MAJOR\": [\n        \"JJ\"\n    ], \n    \"chorines\": [\n        \"NNS\"\n    ], \n    \"trigger-happy\": [\n        \"JJ\"\n    ], \n    \"high-up\": [\n        \"JJ\"\n    ], \n    \"anti-cigarette\": [\n        \"JJ\"\n    ], \n    \"non-ideological\": [\n        \"JJ\"\n    ], \n    \"Worcester\": [\n        \"NNP\"\n    ], \n    \"iodide-concentrating\": [\n        \"JJ\"\n    ], \n    \"Immigrant\": [\n        \"JJ\"\n    ], \n    \"Bettencourt\": [\n        \"NNP\"\n    ], \n    \"OFFICIALS\": [\n        \"NNS\"\n    ], \n    \"vernal\": [\n        \"JJ\"\n    ], \n    \"voice\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"overtaking\": [\n        \"VBG\"\n    ], \n    \"JAILED\": [\n        \"VBN\"\n    ], \n    \"receptionist\": [\n        \"NN\"\n    ], \n    \"encyclopedias\": [\n        \"NNS\"\n    ], \n    \"Wallenberg\": [\n        \"NNP\"\n    ], \n    \"Rubio\": [\n        \"NNP\"\n    ], \n    \"Rubin\": [\n        \"NNP\"\n    ], \n    \"Kizzie\": [\n        \"NNP\"\n    ], \n    \"Rubik\": [\n        \"NNP\"\n    ], \n    \"Disk\\\\/Trend\": [\n        \"NNP\"\n    ], \n    \"recurrent\": [\n        \"JJ\"\n    ], \n    \"plated\": [\n        \"VBN\"\n    ], \n    \"utopias\": [\n        \"NNS\"\n    ], \n    \"Canny\": [\n        \"NNP\"\n    ], \n    \"E.R.\": [\n        \"NNP\"\n    ], \n    \"Thai-Cambodian\": [\n        \"JJ\"\n    ], \n    \"bifocal\": [\n        \"JJ\"\n    ], \n    \"Frick\": [\n        \"NNP\"\n    ], \n    \"Alisarda\": [\n        \"NNP\"\n    ], \n    \"evil\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Spinola\": [\n        \"NNP\"\n    ], \n    \"pubs\": [\n        \"NNS\"\n    ], \n    \"CRESTMONT\": [\n        \"NNP\"\n    ], \n    \"elucidative\": [\n        \"JJ\"\n    ], \n    \"Austins\": [\n        \"NNPS\"\n    ], \n    \"Minh\": [\n        \"NNP\"\n    ], \n    \"Clarice\": [\n        \"NNP\"\n    ], \n    \"CalComp\": [\n        \"NNP\"\n    ], \n    \"thy\": [\n        \"JJ\", \n        \"PRP$\", \n        \"PRP\"\n    ], \n    \"Ishii\": [\n        \"NNP\"\n    ], \n    \"AAb\": [\n        \"NNP\"\n    ], \n    \"Mind\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mine\": [\n        \"NNP\", \n        \"PRP\", \n        \"JJ\"\n    ], \n    \"resettlement\": [\n        \"NN\"\n    ], \n    \"Ming\": [\n        \"NNP\"\n    ], \n    \"tho\": [\n        \"NN\"\n    ], \n    \"the\": [\n        \"DT\", \n        \"VBD\", \n        \"VBP\", \n        \"NN|DT\", \n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"NNP\", \n        \"PDT\"\n    ], \n    \"cataract\": [\n        \"NN\"\n    ], \n    \"Mint\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pete\": [\n        \"NNP\"\n    ], \n    \"Fanuc\": [\n        \"NNP\"\n    ], \n    \"Wellcome\": [\n        \"NNP\"\n    ], \n    \"Storyteller\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"printing-systems\": [\n        \"NNS\"\n    ], \n    \"cap.\": [\n        \"NN\"\n    ], \n    \"Pets\": [\n        \"NNS\"\n    ], \n    \"shuttle-busing\": [\n        \"NN\"\n    ], \n    \"Non-callable\": [\n        \"JJ\"\n    ], \n    \"cross-border\": [\n        \"JJ\"\n    ], \n    \"T.J.\": [\n        \"NNP\"\n    ], \n    \"Ballwin\": [\n        \"NNP\"\n    ], \n    \"hills\": [\n        \"NNS\"\n    ], \n    \"flooring\": [\n        \"NN\"\n    ], \n    \"cost-conscious\": [\n        \"JJ\"\n    ], \n    \"reuniting\": [\n        \"VBG\"\n    ], \n    \"hilly\": [\n        \"JJ\"\n    ], \n    \"passive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"alchemy\": [\n        \"NN\"\n    ], \n    \"anti-Communists\": [\n        \"NNPS\"\n    ], \n    \"cranberries\": [\n        \"NNS\"\n    ], \n    \"Barclay\": [\n        \"NNP\"\n    ], \n    \"orzae\": [\n        \"NNS\"\n    ], \n    \"behind-the-scenes\": [\n        \"JJ\"\n    ], \n    \"Wagon\": [\n        \"NNP\"\n    ], \n    \"mocked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ashore\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"million-to-$\": [\n        \"$\"\n    ], \n    \"Athlete\": [\n        \"NNP\"\n    ], \n    \"apostates\": [\n        \"NNS\"\n    ], \n    \"caps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"first-person\": [\n        \"NN\"\n    ], \n    \"capo\": [\n        \"NN\"\n    ], \n    \"barge\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Gerard\": [\n        \"NNP\"\n    ], \n    \"cape\": [\n        \"NN\"\n    ], \n    \"commission...\": [\n        \":\"\n    ], \n    \"Niedermaier\": [\n        \"NNP\"\n    ], \n    \"Amabile\": [\n        \"NNP\"\n    ], \n    \"lily\": [\n        \"NN\"\n    ], \n    \"grizzly\": [\n        \"NN\"\n    ], \n    \"Grocer\": [\n        \"NNP\"\n    ], \n    \"gas-cooled\": [\n        \"JJ\"\n    ], \n    \"Northland\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Styka\": [\n        \"NNP\"\n    ], \n    \"security\": [\n        \"NN\"\n    ], \n    \"Compiler\": [\n        \"NN\"\n    ], \n    \"antique\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"warily\": [\n        \"RB\"\n    ], \n    \"once-prestigious\": [\n        \"JJ\"\n    ], \n    \"collarbone\": [\n        \"NN\"\n    ], \n    \"productions\": [\n        \"NNS\"\n    ], \n    \"constables\": [\n        \"NNS\"\n    ], \n    \"critique\": [\n        \"NN\"\n    ], \n    \"Bisiewicz\": [\n        \"NNP\"\n    ], \n    \"archetype\": [\n        \"NN\"\n    ], \n    \"one-percentage\": [\n        \"JJ\"\n    ], \n    \"Poker\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Relationship\": [\n        \"NNP\"\n    ], \n    \"ransacked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"purple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bullyboys\": [\n        \"NNS\"\n    ], \n    \"poor-mouth\": [\n        \"JJ\"\n    ], \n    \"black-balled\": [\n        \"VBN\"\n    ], \n    \"effeminate\": [\n        \"JJ\"\n    ], \n    \"colloquy\": [\n        \"NN\"\n    ], \n    \"Wilpers\": [\n        \"NNP\"\n    ], \n    \"Voiture\": [\n        \"NNP\"\n    ], \n    \"Fel-Pro\": [\n        \"NNP\"\n    ], \n    \"Chairs\": [\n        \"NNS\"\n    ], \n    \"confluent\": [\n        \"JJ\"\n    ], \n    \"angering\": [\n        \"VBG\"\n    ], \n    \"Place\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"gangsterish\": [\n        \"JJ\"\n    ], \n    \"Packwood-Roth\": [\n        \"NNP\"\n    ], \n    \"Eileen\": [\n        \"NNP\"\n    ], \n    \"Renzas\": [\n        \"NNP\"\n    ], \n    \"Image\": [\n        \"NN\"\n    ], \n    \"routings\": [\n        \"NNS\"\n    ], \n    \"Baim\": [\n        \"NNP\"\n    ], \n    \"writers\": [\n        \"NNS\"\n    ], \n    \"Democratic-led\": [\n        \"JJ\"\n    ], \n    \"Westinghouse-Mitsubishi\": [\n        \"NNP\"\n    ], \n    \"Verreau\": [\n        \"NNP\"\n    ], \n    \"Cut\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"dilemma\": [\n        \"NN\"\n    ], \n    \"Kelleher\": [\n        \"NNP\"\n    ], \n    \"Cup\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pays\": [\n        \"VBZ\"\n    ], \n    \"Dadaism\": [\n        \"NNP\"\n    ], \n    \"Snecma\": [\n        \"NNP\"\n    ], \n    \"back-to-back\": [\n        \"JJ\"\n    ], \n    \"Discretion\": [\n        \"NN\"\n    ], \n    \"Cub\": [\n        \"NNP\"\n    ], \n    \"formidable\": [\n        \"JJ\", \n        \"FW\"\n    ], \n    \"Maryann\": [\n        \"NNP\"\n    ], \n    \"renovating\": [\n        \"VBG\"\n    ], \n    \"workbooks\": [\n        \"NNS\"\n    ], \n    \"counter-efforts\": [\n        \"NNS\"\n    ], \n    \"wailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"USOM\": [\n        \"NNP\"\n    ], \n    \"Existentialism\": [\n        \"NNP\"\n    ], \n    \"unchanging\": [\n        \"JJ\"\n    ], \n    \"Jackson-Vanick\": [\n        \"JJ\"\n    ], \n    \"causative\": [\n        \"JJ\"\n    ], \n    \"fight\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chiuchow\": [\n        \"NNP\"\n    ], \n    \"firm...\": [\n        \":\"\n    ], \n    \"accordingly\": [\n        \"RB\"\n    ], \n    \"pre-register\": [\n        \"VB\"\n    ], \n    \"CuK\": [\n        \"JJ\"\n    ], \n    \"Carberry\": [\n        \"NNP\"\n    ], \n    \"Barnabas\": [\n        \"NNP\"\n    ], \n    \"helio-copter\": [\n        \"NN\"\n    ], \n    \"interest-rate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sagging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBG|JJ\"\n    ], \n    \"Weinbach\": [\n        \"NNP\"\n    ], \n    \"Stacked\": [\n        \"JJ\"\n    ], \n    \"president\\\\/public\": [\n        \"JJ\"\n    ], \n    \"Impose\": [\n        \"VB\"\n    ], \n    \"Aqua\": [\n        \"NNP\"\n    ], \n    \"guppies\": [\n        \"NNS\"\n    ], \n    \"wood-encased\": [\n        \"JJ\"\n    ], \n    \"prepayments\": [\n        \"NNS\"\n    ], \n    \"Woven\": [\n        \"VBN\"\n    ], \n    \"PROFIT-SHARING\": [\n        \"NN\"\n    ], \n    \"garnish\": [\n        \"NN\"\n    ], \n    \"dowry\": [\n        \"NN\"\n    ], \n    \"Armuelles\": [\n        \"NNP\"\n    ], \n    \"hurrah\": [\n        \"NN\"\n    ], \n    \"strongrooms\": [\n        \"NNS\"\n    ], \n    \"Ferreira\": [\n        \"NNP\"\n    ], \n    \"veterinarian\": [\n        \"NN\"\n    ], \n    \"Fairness\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Punching\": [\n        \"VBG\"\n    ], \n    \"Tarkeshian\": [\n        \"NNP\"\n    ], \n    \"City-type\": [\n        \"JJ\"\n    ], \n    \"mails\": [\n        \"NNS\"\n    ], \n    \"non-traders\": [\n        \"NNS\"\n    ], \n    \"MCC\": [\n        \"NNP\"\n    ], \n    \"paragraphs\": [\n        \"NNS\"\n    ], \n    \"bell-ringing\": [\n        \"JJ\"\n    ], \n    \"Malta\": [\n        \"NNP\"\n    ], \n    \"evidence\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"manure\": [\n        \"NN\"\n    ], \n    \"Steppel\": [\n        \"NNP\"\n    ], \n    \"Valin\": [\n        \"NNP\"\n    ], \n    \"newlyweds\": [\n        \"NNS\"\n    ], \n    \"PageMaker\": [\n        \"NNP\"\n    ], \n    \"Gustafsson\": [\n        \"NNP\"\n    ], \n    \"disputable\": [\n        \"JJ\"\n    ], \n    \"bourgeois-bashing\": [\n        \"JJ\"\n    ], \n    \"system-specific\": [\n        \"JJ\"\n    ], \n    \"presumes\": [\n        \"VBZ\"\n    ], \n    \"Running\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"interested\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Asteroidal\": [\n        \"JJ\"\n    ], \n    \"pro-rated\": [\n        \"JJ\"\n    ], \n    \"Trucks\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Mask\": [\n        \"NNP\"\n    ], \n    \"Kornfield\": [\n        \"NNP\"\n    ], \n    \"polite\": [\n        \"JJ\"\n    ], \n    \"mightily\": [\n        \"RB\"\n    ], \n    \"polity\": [\n        \"NN\"\n    ], \n    \"Airline\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"MCV\": [\n        \"NNP\"\n    ], \n    \"Bankler\": [\n        \"NNP\"\n    ], \n    \"two-to-three\": [\n        \"JJ\"\n    ], \n    \"Lumumba\": [\n        \"NNP\"\n    ], \n    \"Haut-Brion\": [\n        \"NNP\"\n    ], \n    \"Safi\": [\n        \"NNP\"\n    ], \n    \"doctrinally\": [\n        \"RB\"\n    ], \n    \"Masu\": [\n        \"NNP\"\n    ], \n    \"videocassette\": [\n        \"NN\"\n    ], \n    \"fact\": [\n        \"NN\"\n    ], \n    \"TRANSAMERICA\": [\n        \"NNP\"\n    ], \n    \"Sandalwood\": [\n        \"NNP\"\n    ], \n    \"Safe\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"fulcrum\": [\n        \"NN\"\n    ], \n    \"datum\": [\n        \"NN\"\n    ], \n    \"wakeful\": [\n        \"JJ\"\n    ], \n    \"drop-off\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"medical-leave\": [\n        \"JJ\"\n    ], \n    \"Elephant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Maughan\": [\n        \"NNP\"\n    ], \n    \"Maugham\": [\n        \"NNP\"\n    ], \n    \"rectangles\": [\n        \"NNS\"\n    ], \n    \"lactating\": [\n        \"VBG\"\n    ], \n    \"non-amortizing\": [\n        \"JJ\"\n    ], \n    \"honoring\": [\n        \"VBG\"\n    ], \n    \"Lupatkin\": [\n        \"NNP\"\n    ], \n    \"health-oriented\": [\n        \"JJ\"\n    ], \n    \"outplayed\": [\n        \"VBD\"\n    ], \n    \"Dominick\": [\n        \"NNP\"\n    ], \n    \"atrophied\": [\n        \"VBN\"\n    ], \n    \"Dominici\": [\n        \"NNP\"\n    ], \n    \"Hedge\": [\n        \"NNP\"\n    ], \n    \"presumed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Westside\": [\n        \"NNP\"\n    ], \n    \"Mercedes-Benzes\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Dominica\": [\n        \"NNP\"\n    ], \n    \"Winterhalder\": [\n        \"NNP\"\n    ], \n    \"alumnae\": [\n        \"NNS\"\n    ], \n    \"Economique\": [\n        \"NNP\"\n    ], \n    \"Recapitulation\": [\n        \"NNP\"\n    ], \n    \"bone-weary\": [\n        \"JJ\"\n    ], \n    \"aldermen\": [\n        \"NNS\"\n    ], \n    \"blase\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tascher\": [\n        \"NNP\"\n    ], \n    \"liability\": [\n        \"NN\"\n    ], \n    \"microprocessors\": [\n        \"NNS\"\n    ], \n    \"Zycher\": [\n        \"NNP\"\n    ], \n    \"federalized\": [\n        \"JJ\"\n    ], \n    \"blast\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"index-trading\": [\n        \"NN\"\n    ], \n    \"pull-down\": [\n        \"JJ\"\n    ], \n    \"Middlebury\": [\n        \"NNP\"\n    ], \n    \"alcoholic-beverage\": [\n        \"NN\"\n    ], \n    \"helm\": [\n        \"NN\"\n    ], \n    \"bring\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"basophilic\": [\n        \"JJ\"\n    ], \n    \"Fricke\": [\n        \"NNP\"\n    ], \n    \"Global\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Slivka\": [\n        \"NNP\"\n    ], \n    \"p\": [\n        \"NN\"\n    ], \n    \"liposomes\": [\n        \"NNS\"\n    ], \n    \"Ping-pong\": [\n        \"NN\"\n    ], \n    \"Friday-the-13th\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hondas\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"distasteful\": [\n        \"JJ\"\n    ], \n    \"Firestone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"revolution\": [\n        \"NN\"\n    ], \n    \"Quotable\": [\n        \"NNP\"\n    ], \n    \"Euroissues\": [\n        \"NNS\"\n    ], \n    \"McCann\": [\n        \"NNP\"\n    ], \n    \"niggardly\": [\n        \"JJ\"\n    ], \n    \"professionalism\": [\n        \"NN\"\n    ], \n    \"thinker\": [\n        \"NN\"\n    ], \n    \"Campeau\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"free-for-all\": [\n        \"NN\"\n    ], \n    \"acrimonious\": [\n        \"JJ\"\n    ], \n    \"materials-related\": [\n        \"JJ\"\n    ], \n    \"continence\": [\n        \"NN\"\n    ], \n    \"Lederer\": [\n        \"NNP\"\n    ], \n    \"Notable\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"rapeseeds\": [\n        \"NNS\"\n    ], \n    \"TIPS\": [\n        \"NNS\"\n    ], \n    \"Notably\": [\n        \"RB\"\n    ], \n    \"generalpurpose\": [\n        \"JJ\"\n    ], \n    \"WORLDLY\": [\n        \"JJ\"\n    ], \n    \"satisfy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"collateral\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Snatchers\": [\n        \"NNPS\"\n    ], \n    \"interfacial\": [\n        \"JJ\"\n    ], \n    \"Benny\": [\n        \"NNP\"\n    ], \n    \"Guarana\": [\n        \"NNP\"\n    ], \n    \"Delegate\": [\n        \"NNP\"\n    ], \n    \"Sunnyvale\": [\n        \"NNP\"\n    ], \n    \"Saud\": [\n        \"NNP\"\n    ], \n    \"Benno\": [\n        \"NNP\"\n    ], \n    \"hoops\": [\n        \"NNS\"\n    ], \n    \"no-new-tax\": [\n        \"JJ\"\n    ], \n    \"Saul\": [\n        \"NNP\"\n    ], \n    \"Lobsenz\": [\n        \"NNP\"\n    ], \n    \"Portwatchers\": [\n        \"NNPS\"\n    ], \n    \"Antolini\": [\n        \"NNP\"\n    ], \n    \"precursor\": [\n        \"NN\"\n    ], \n    \"eke\": [\n        \"VB\"\n    ], \n    \"Cynthia\": [\n        \"NNP\"\n    ], \n    \"vibrating\": [\n        \"VBG\"\n    ], \n    \"exiting\": [\n        \"VBG\"\n    ], \n    \"anti-Sandinista\": [\n        \"JJ\"\n    ], \n    \"Greenhill\": [\n        \"NNP\"\n    ], \n    \"airline-financed\": [\n        \"JJ\"\n    ], \n    \"matrimonial\": [\n        \"JJ\"\n    ], \n    \"computerrelated\": [\n        \"JJ\"\n    ], \n    \"hiking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Nitze\": [\n        \"NNP\"\n    ], \n    \"T.W.\": [\n        \"NNP\"\n    ], \n    \"Angry\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Kellmer\": [\n        \"NNP\"\n    ], \n    \"Mackey\": [\n        \"NNP\"\n    ], \n    \"anti-Semitism\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"seashore\": [\n        \"NN\"\n    ], \n    \"illumination\": [\n        \"NN\"\n    ], \n    \"rarely\": [\n        \"RB\"\n    ], \n    \"Caucus\": [\n        \"NNP\"\n    ], \n    \"senile\": [\n        \"JJ\"\n    ], \n    \"ASLACTON\": [\n        \"NNP\"\n    ], \n    \"waterline\": [\n        \"NN\"\n    ], \n    \"Washizu\": [\n        \"NNP\"\n    ], \n    \"matador\": [\n        \"NN\"\n    ], \n    \"entrance\": [\n        \"NN\"\n    ], \n    \"Shalom\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"minimum-wage\": [\n        \"NN\"\n    ], \n    \"well-trampled\": [\n        \"JJ\"\n    ], \n    \"child-face\": [\n        \"NN\"\n    ], \n    \"conspire\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Dharma\": [\n        \"NNP\"\n    ], \n    \"Huntz\": [\n        \"NNP\"\n    ], \n    \"Shalov\": [\n        \"NNP\"\n    ], \n    \"jabberings\": [\n        \"NNS\"\n    ], \n    \"Sturge\": [\n        \"NNP\"\n    ], \n    \"wretchedness\": [\n        \"NN\"\n    ], \n    \"Kuttner\": [\n        \"NNP\"\n    ], \n    \"high-octane\": [\n        \"JJ\"\n    ], \n    \"redecoration\": [\n        \"NN\"\n    ], \n    \"Brill\": [\n        \"NNP\"\n    ], \n    \"innuendo\": [\n        \"NN\"\n    ], \n    \"labeled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Underlying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"slumbering\": [\n        \"VBG\"\n    ], \n    \"lubricant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ninety-Eight\": [\n        \"NNP\"\n    ], \n    \"spy\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"centenarians\": [\n        \"NNS\"\n    ], \n    \"subsidies\": [\n        \"NNS\"\n    ], \n    \"fortunes\": [\n        \"NNS\"\n    ], \n    \"canned-foods\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"baddebt\": [\n        \"JJ\"\n    ], \n    \"union-management\": [\n        \"JJ\"\n    ], \n    \"spa\": [\n        \"NN\"\n    ], \n    \"distinguishable\": [\n        \"JJ\"\n    ], \n    \"risk-taking\": [\n        \"NN\"\n    ], \n    \"hull-first\": [\n        \"RB\"\n    ], \n    \"wornout\": [\n        \"NN\"\n    ], \n    \"productive\": [\n        \"JJ\"\n    ], \n    \"bankrupt\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"evil-looking\": [\n        \"JJ\"\n    ], \n    \"malevolence\": [\n        \"NN\"\n    ], \n    \"chateaux\": [\n        \"NN\"\n    ], \n    \"Howsabout\": [\n        \"RB\"\n    ], \n    \"nihilism\": [\n        \"NN\"\n    ], \n    \"nowhere\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"criterion\": [\n        \"NN\"\n    ], \n    \"nihilist\": [\n        \"NN\"\n    ], \n    \"Lyaki\": [\n        \"NNP\"\n    ], \n    \"allowable\": [\n        \"JJ\"\n    ], \n    \"re-enactment\": [\n        \"NN\"\n    ], \n    \"Disquisition\": [\n        \"NNP\"\n    ], \n    \"Decentralization\": [\n        \"NN\"\n    ], \n    \"BankTexas\": [\n        \"NNP\"\n    ], \n    \"CANCER\": [\n        \"NNP\"\n    ], \n    \"Tupelev-144\": [\n        \"NNP\"\n    ], \n    \"glass-strewn\": [\n        \"JJ\"\n    ], \n    \"averted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"brazen\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"non-trade-related\": [\n        \"JJ\"\n    ], \n    \"Cavalier\": [\n        \"NNP\"\n    ], \n    \"flourish\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"compatibility\": [\n        \"NN\"\n    ], \n    \"Donohoo\": [\n        \"NNP\"\n    ], \n    \"Detente\": [\n        \"NN\"\n    ], \n    \"Quietly\": [\n        \"RB\"\n    ], \n    \"nationalistic\": [\n        \"JJ\"\n    ], \n    \"explicit\": [\n        \"JJ\"\n    ], \n    \"Rumania\": [\n        \"NNP\"\n    ], \n    \"rather\": [\n        \"RB\", \n        \"IN\"\n    ], \n    \"progressively\": [\n        \"RB\"\n    ], \n    \"Tambrands\": [\n        \"NNP\"\n    ], \n    \"Crest-Colgate\": [\n        \"JJ\"\n    ], \n    \"fireball\": [\n        \"NN\"\n    ], \n    \"Polyconomics\": [\n        \"NNP\"\n    ], \n    \"idiosyncratic\": [\n        \"JJ\"\n    ], \n    \"bumptious\": [\n        \"JJ\"\n    ], \n    \"Che\": [\n        \"NNP\"\n    ], \n    \"Chg\": [\n        \"NN\"\n    ], \n    \"Chi\": [\n        \"NNP\"\n    ], \n    \"forfeit\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"haircut\": [\n        \"NN\"\n    ], \n    \"affectingly\": [\n        \"RB\"\n    ], \n    \"spurning\": [\n        \"VBG\"\n    ], \n    \"Nika\": [\n        \"NNP\"\n    ], \n    \"Chu\": [\n        \"NNP\"\n    ], \n    \"Swartz\": [\n        \"NNP\"\n    ], \n    \"Divers\": [\n        \"NNP\"\n    ], \n    \"revivalism\": [\n        \"NN\"\n    ], \n    \"air-to-air\": [\n        \"JJ\"\n    ], \n    \"Sympathy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"hungrier\": [\n        \"JJR\"\n    ], \n    \"acknowledge\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"terminations\": [\n        \"NNS\"\n    ], \n    \"Greenall\": [\n        \"NNP\"\n    ], \n    \"reaping\": [\n        \"VBG\"\n    ], \n    \"inflicted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Chemicals\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"suffocate\": [\n        \"VB\"\n    ], \n    \"Lockhart\": [\n        \"NNP\"\n    ], \n    \"Avon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Grace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Atkins\": [\n        \"NNP\"\n    ], \n    \"centenary\": [\n        \"JJ\"\n    ], \n    \"Vishwanath\": [\n        \"NNP\"\n    ], \n    \"Kutak\": [\n        \"NNP\"\n    ], \n    \"fling\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"chimp\": [\n        \"NN\"\n    ], \n    \"relativism\": [\n        \"NN\"\n    ], \n    \"natured\": [\n        \"JJ\"\n    ], \n    \"Ch.\": [\n        \"NN\"\n    ], \n    \"Registrations\": [\n        \"NNS\"\n    ], \n    \"relativist\": [\n        \"NN\"\n    ], \n    \"equidistant\": [\n        \"JJ\"\n    ], \n    \"cascaded\": [\n        \"VBD\"\n    ], \n    \"highyield\": [\n        \"JJ\"\n    ], \n    \"brigadier\": [\n        \"NN\"\n    ], \n    \"interrogator\": [\n        \"NN\"\n    ], \n    \"barrow\": [\n        \"NN\"\n    ], \n    \"wont\": [\n        \"JJ\"\n    ], \n    \"equalizers\": [\n        \"NNS\"\n    ], \n    \"streaks\": [\n        \"NNS\"\n    ], \n    \"concerti\": [\n        \"NNS\"\n    ], \n    \"servant\": [\n        \"NN\"\n    ], \n    \"victuals\": [\n        \"NNS\"\n    ], \n    \"five-judge\": [\n        \"JJ\"\n    ], \n    \"phonic\": [\n        \"JJ\"\n    ], \n    \"ceremonially\": [\n        \"RB\"\n    ], \n    \"detonation\": [\n        \"NN\"\n    ], \n    \"redactions\": [\n        \"NNS\"\n    ], \n    \"handsomer\": [\n        \"JJR\"\n    ], \n    \"entirely\": [\n        \"RB\"\n    ], \n    \"concerts\": [\n        \"NNS\"\n    ], \n    \"poetically\": [\n        \"RB\"\n    ], \n    \"significantly\": [\n        \"RB\"\n    ], \n    \"Maricopa\": [\n        \"NNP\"\n    ], \n    \"Implementation\": [\n        \"NN\"\n    ], \n    \"provocateurs\": [\n        \"NNS\"\n    ], \n    \"Swed\": [\n        \"NNP\"\n    ], \n    \"Hepatitis\": [\n        \"NNP\"\n    ], \n    \"Kamel\": [\n        \"NNP\"\n    ], \n    \"familarity\": [\n        \"NN\"\n    ], \n    \"avidity\": [\n        \"NN\"\n    ], \n    \"fires\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Hurter\": [\n        \"NNP\"\n    ], \n    \"ubiquitous\": [\n        \"JJ\"\n    ], \n    \"Caroline\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Chip-o\": [\n        \"NNP\"\n    ], \n    \"FINAL\": [\n        \"JJ\"\n    ], \n    \"third-worst\": [\n        \"JJ\"\n    ], \n    \"Carolina\": [\n        \"NNP\"\n    ], \n    \"unsupportable\": [\n        \"JJ\"\n    ], \n    \"Journey\": [\n        \"NNP\"\n    ], \n    \"receiving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"viable\": [\n        \"JJ\"\n    ], \n    \"inevitably\": [\n        \"RB\"\n    ], \n    \"Creston\": [\n        \"NNP\"\n    ], \n    \"Callas\": [\n        \"NNP\"\n    ], \n    \"five-mile\": [\n        \"JJ\"\n    ], \n    \"Hafif\": [\n        \"NNP\"\n    ], \n    \"proofread\": [\n        \"VBD\"\n    ], \n    \"rights-of-way\": [\n        \"JJ\"\n    ], \n    \"Ervin\": [\n        \"NNP\"\n    ], \n    \"Callan\": [\n        \"NNP\"\n    ], \n    \"Grannon\": [\n        \"NNP\"\n    ], \n    \"prospector\": [\n        \"NN\"\n    ], \n    \"Urging\": [\n        \"NNP\"\n    ], \n    \"waxy\": [\n        \"JJ\"\n    ], \n    \"milestones\": [\n        \"NNS\"\n    ], \n    \"Sibaral\": [\n        \"NNP\"\n    ], \n    \"Ramfis\": [\n        \"NNP\"\n    ], \n    \"privatization-consulting\": [\n        \"JJ\"\n    ], \n    \"shouders\": [\n        \"NNS\"\n    ], \n    \"Gaspard\": [\n        \"NNP\"\n    ], \n    \"palaces\": [\n        \"NNS\"\n    ], \n    \"Cooperative\": [\n        \"NNP\"\n    ], \n    \"promotion\": [\n        \"NN\"\n    ], \n    \"passenger-miles\": [\n        \"NNS\"\n    ], \n    \"flat-headed\": [\n        \"JJ\"\n    ], \n    \"Rated\": [\n        \"VBN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"striking\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Aguirre\": [\n        \"NNP\"\n    ], \n    \"omitted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"comprised\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rates\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"low-sulfur\": [\n        \"JJ\"\n    ], \n    \"comprises\": [\n        \"VBZ\"\n    ], \n    \"smelters\": [\n        \"NNS\"\n    ], \n    \"size\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Kristol\": [\n        \"NNP\"\n    ], \n    \"Burry\": [\n        \"NNP\"\n    ], \n    \"categorical\": [\n        \"JJ\"\n    ], \n    \"callous\": [\n        \"JJ\"\n    ], \n    \"households\": [\n        \"NNS\"\n    ], \n    \"government-leaked\": [\n        \"JJ\"\n    ], \n    \"Burro\": [\n        \"NNP\"\n    ], \n    \"Defying\": [\n        \"VBG\"\n    ], \n    \"carousel\": [\n        \"NN\"\n    ], \n    \"pomologist\": [\n        \"NN\"\n    ], \n    \"cost-effective\": [\n        \"JJ\"\n    ], \n    \"RACKS\": [\n        \"NNS\"\n    ], \n    \"friend\": [\n        \"NN\"\n    ], \n    \"comprise.\": [\n        \"NN\"\n    ], \n    \"mostly\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Cominform\": [\n        \"NNP\"\n    ], \n    \"Unseasonably\": [\n        \"RB\"\n    ], \n    \"expanse\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Feshbach\": [\n        \"NNP\"\n    ], \n    \"Cretaceous\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"social-political-economical\": [\n        \"JJ\"\n    ], \n    \"post-Barre\": [\n        \"JJ\"\n    ], \n    \"lunched\": [\n        \"VBN\"\n    ], \n    \"optimism\": [\n        \"NN\"\n    ], \n    \"CRA\": [\n        \"NNP\"\n    ], \n    \"receptionists\": [\n        \"NNS\"\n    ], \n    \"optimist\": [\n        \"NN\"\n    ], \n    \"Rockabye\": [\n        \"NNP\"\n    ], \n    \"yesteryear\": [\n        \"NN\"\n    ], \n    \"start-ups\": [\n        \"NNS\"\n    ], \n    \"fruity\": [\n        \"JJ\"\n    ], \n    \"anatomic\": [\n        \"JJ\"\n    ], \n    \"lunches\": [\n        \"NNS\"\n    ], \n    \"physiotherapist\": [\n        \"NN\"\n    ], \n    \"hairline\": [\n        \"NN\"\n    ], \n    \"intrauterine\": [\n        \"JJ\"\n    ], \n    \"Enlargement\": [\n        \"NN\"\n    ], \n    \"angel\": [\n        \"NN\"\n    ], \n    \"Fernald\": [\n        \"NNP\"\n    ], \n    \"anastomotic\": [\n        \"JJ\"\n    ], \n    \"Kohlberg\": [\n        \"NNP\"\n    ], \n    \"MOVES\": [\n        \"VBZ\"\n    ], \n    \"Waffen\": [\n        \"NNP\"\n    ], \n    \"sompin\": [\n        \"NN\"\n    ], \n    \"BBDO\": [\n        \"NNP\"\n    ], \n    \"Combined\": [\n        \"VBN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"anger\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"self-scrutiny\": [\n        \"NN\"\n    ], \n    \"insatiable\": [\n        \"JJ\"\n    ], \n    \"Branchburg\": [\n        \"NNP\"\n    ], \n    \"Sprite\": [\n        \"NNP\"\n    ], \n    \"Ingram\": [\n        \"NNP\"\n    ], \n    \"veteran\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"S.A\": [\n        \"NNP\"\n    ], \n    \"Pasoan\": [\n        \"NNP\"\n    ], \n    \"shore\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Blame\": [\n        \"VB\"\n    ], \n    \"Olsen\": [\n        \"NNP\"\n    ], \n    \"Legitimate\": [\n        \"JJ\"\n    ], \n    \"palazzo\": [\n        \"NN\"\n    ], \n    \"translatorfor\": [\n        \"NN|IN\"\n    ], \n    \"impairment\": [\n        \"NN\"\n    ], \n    \"INTERBANK\": [\n        \"NNP\", \n        \"NN|JJ\", \n        \"JJ\", \n        \"NN|JJ|RB\", \n        \"NN\", \n        \"RB\", \n        \"RB|NN|JJ\"\n    ], \n    \"palazzi\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"four-speed\": [\n        \"JJ\"\n    ], \n    \"takeaways\": [\n        \"NNS\"\n    ], \n    \"Forensic\": [\n        \"NNP\"\n    ], \n    \"tax-supported\": [\n        \"JJ\"\n    ], \n    \"hostelries\": [\n        \"NNS\"\n    ], \n    \"directmail\": [\n        \"NN\"\n    ], \n    \"plainer\": [\n        \"JJR\"\n    ], \n    \"undertakings\": [\n        \"NNS\"\n    ], \n    \"foothold\": [\n        \"NN\"\n    ], \n    \"spraining\": [\n        \"VBG\"\n    ], \n    \"death-locked\": [\n        \"JJ\"\n    ], \n    \"newly-scrubbed\": [\n        \"JJ\"\n    ], \n    \"encased\": [\n        \"VBD\"\n    ], \n    \"Letitia\": [\n        \"NNP\"\n    ], \n    \"pokeneu\": [\n        \"FW\"\n    ], \n    \"GLASNOST\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"wreaked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"conservatively\": [\n        \"RB\"\n    ], \n    \"Engles\": [\n        \"NNP\"\n    ], \n    \"Engler\": [\n        \"NNP\"\n    ], \n    \"Weldwood\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"good-night\": [\n        \"JJ\"\n    ], \n    \"Northeast\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Querecho\": [\n        \"NNP\"\n    ], \n    \"foaming\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"A.M\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Machine-tool\": [\n        \"JJ\"\n    ], \n    \"octagonal\": [\n        \"JJ\"\n    ], \n    \"middle-market\": [\n        \"JJ\"\n    ], \n    \"Turnock\": [\n        \"NNP\"\n    ], \n    \"blindness\": [\n        \"NN\"\n    ], \n    \"Incredibly\": [\n        \"RB\"\n    ], \n    \"geography\": [\n        \"NN\"\n    ], \n    \"Liter\": [\n        \"NN\"\n    ], \n    \"deep-pocket\": [\n        \"JJ\"\n    ], \n    \"productivity\": [\n        \"NN\"\n    ], \n    \"prepositional\": [\n        \"JJ\"\n    ], \n    \"Shakya\": [\n        \"NNP\"\n    ], \n    \"texture\": [\n        \"NN\"\n    ], \n    \"DNX\": [\n        \"NNP\"\n    ], \n    \"Mahzeer\": [\n        \"NNP\"\n    ], \n    \"Tassel\": [\n        \"NNP\"\n    ], \n    \"sufficent\": [\n        \"JJ\"\n    ], \n    \"ENTEL\": [\n        \"NNP\"\n    ], \n    \"Ahmad\": [\n        \"NNP\"\n    ], \n    \"immodesty\": [\n        \"NN\"\n    ], \n    \"back-to-school\": [\n        \"JJ\"\n    ], \n    \"SCHOOL\": [\n        \"NN\"\n    ], \n    \"Cudmore\": [\n        \"NNP\"\n    ], \n    \"breeches\": [\n        \"NNS\"\n    ], \n    \"capital-boosting\": [\n        \"JJ\"\n    ], \n    \"red-frocked\": [\n        \"JJ\"\n    ], \n    \"Florentine\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"sonar\": [\n        \"NN\"\n    ], \n    \"bid-wanted\": [\n        \"JJ\"\n    ], \n    \"Bellwood\": [\n        \"NNP\"\n    ], \n    \"husband\": [\n        \"NN\"\n    ], \n    \"concert\": [\n        \"NN\"\n    ], \n    \"Estimates\": [\n        \"NNS\"\n    ], \n    \"Knutz\": [\n        \"NNP\"\n    ], \n    \"Inaugural\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Supercomputers\": [\n        \"NNPS\"\n    ], \n    \"Knute\": [\n        \"NNP\"\n    ], \n    \"Location\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pretext\": [\n        \"NN\"\n    ], \n    \"Markowitz\": [\n        \"NNP\"\n    ], \n    \"nonstandard\": [\n        \"JJ\"\n    ], \n    \"concern\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Bolsheviks\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Reactionary\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Johnson-Merck\": [\n        \"NNP\"\n    ], \n    \"seekers\": [\n        \"NNS\"\n    ], \n    \"justifies\": [\n        \"VBZ\"\n    ], \n    \"justified\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VBN|JJ\"\n    ], \n    \"anti-Colmer\": [\n        \"JJ\"\n    ], \n    \"thirtieth\": [\n        \"JJ\"\n    ], \n    \"S.p\": [\n        \"NNP\"\n    ], \n    \"connoisseurs\": [\n        \"NNS\"\n    ], \n    \"Stenton\": [\n        \"NNP\"\n    ], \n    \"micro-electronic\": [\n        \"JJ\"\n    ], \n    \"BERNARD\": [\n        \"NNP\"\n    ], \n    \"indefiniteness\": [\n        \"NN\"\n    ], \n    \"free-standing\": [\n        \"JJ\"\n    ], \n    \"article\": [\n        \"NN\"\n    ], \n    \"fawn-colored\": [\n        \"JJ\"\n    ], \n    \"attaches\": [\n        \"VBZ\"\n    ], \n    \"talented\": [\n        \"JJ\"\n    ], \n    \"drug-fighting\": [\n        \"JJ\"\n    ], \n    \"ballpark\": [\n        \"NN\"\n    ], \n    \"Wholesalers\": [\n        \"NNS\"\n    ], \n    \"eight-inch\": [\n        \"JJ\"\n    ], \n    \"Wassily\": [\n        \"NNP\"\n    ], \n    \"Interair\": [\n        \"NNP\"\n    ], \n    \"fresh-faced\": [\n        \"JJ\"\n    ], \n    \"autions\": [\n        \"NNS\"\n    ], \n    \"comet\": [\n        \"NN\"\n    ], \n    \"AIDS-drug\": [\n        \"JJ\"\n    ], \n    \"comes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"comer\": [\n        \"NN\"\n    ], \n    \"inkblots\": [\n        \"NNS\"\n    ], \n    \"Torpetius\": [\n        \"NNP\"\n    ], \n    \"occluded\": [\n        \"VBN\"\n    ], \n    \"double-A-minus\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Isgur\": [\n        \"NNP\"\n    ], \n    \"COB\": [\n        \"NNP\"\n    ], \n    \"repackaging\": [\n        \"VBG\"\n    ], \n    \"COM\": [\n        \"NNP\"\n    ], \n    \"Leader\": [\n        \"NNP\"\n    ], \n    \"Vencor\": [\n        \"NNP\"\n    ], \n    \"Mutuelles\": [\n        \"NNP\"\n    ], \n    \"punishes\": [\n        \"VBZ\"\n    ], \n    \"dyslexia\": [\n        \"NN\"\n    ], \n    \"agreed-to\": [\n        \"JJ\"\n    ], \n    \"wall-to-wall\": [\n        \"JJ\"\n    ], \n    \"punished\": [\n        \"VBN\"\n    ], \n    \"Known\": [\n        \"VBN\"\n    ], \n    \"diclosed\": [\n        \"VBN\"\n    ], \n    \"import-screening\": [\n        \"NN\"\n    ], \n    \"reprice\": [\n        \"VB\"\n    ], \n    \"Claiborne\": [\n        \"NNP\"\n    ], \n    \"hell-fire\": [\n        \"NN\"\n    ], \n    \"Leval\": [\n        \"NNP\"\n    ], \n    \"stems\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"scrupulously\": [\n        \"RB\"\n    ], \n    \"KTXL\": [\n        \"NNP\"\n    ], \n    \"sedition\": [\n        \"NN\"\n    ], \n    \"ghost-busting\": [\n        \"NN\"\n    ], \n    \"TELV\": [\n        \"NNP\"\n    ], \n    \"two-system\": [\n        \"JJ\"\n    ], \n    \"expropriated\": [\n        \"JJ\"\n    ], \n    \"Afif\": [\n        \"NNP\"\n    ], \n    \"unbelievably\": [\n        \"RB\"\n    ], \n    \"Faulder\": [\n        \"NNP\"\n    ], \n    \"editorial\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"R.N.\": [\n        \"NNP\"\n    ], \n    \"Cable-system\": [\n        \"NN\"\n    ], \n    \"sorghum\": [\n        \"NN\"\n    ], \n    \"U.S.based\": [\n        \"JJ\"\n    ], \n    \"exercisable\": [\n        \"JJ\"\n    ], \n    \"CO.\": [\n        \"NNP\"\n    ], \n    \"Shahrabani\": [\n        \"NNP\"\n    ], \n    \"H.G.\": [\n        \"NNP\"\n    ], \n    \"soil\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Fenn\": [\n        \"NNP\"\n    ], \n    \"UNFLUORIDATED\": [\n        \"JJ\"\n    ], \n    \"Charge\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"specialist-credit\": [\n        \"JJ\"\n    ], \n    \"hens\": [\n        \"NNS\"\n    ], \n    \"indebtedness\": [\n        \"NN\"\n    ], \n    \"Mingus\": [\n        \"NNP\"\n    ], \n    \"toll-road\": [\n        \"NN\"\n    ], \n    \"court-ordered\": [\n        \"JJ\"\n    ], \n    \"Chart\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Charm\": [\n        \"NNP\"\n    ], \n    \"coworkers\": [\n        \"NNS\"\n    ], \n    \"Wildhack\": [\n        \"NNP\"\n    ], \n    \"Nassau\": [\n        \"NNP\"\n    ], \n    \"moth-eaten\": [\n        \"VBN\"\n    ], \n    \"document\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"contouring\": [\n        \"VBG\"\n    ], \n    \"Carlta\": [\n        \"NNP\"\n    ], \n    \"edifying\": [\n        \"JJ\"\n    ], \n    \"Mid-Continent\": [\n        \"NNP\"\n    ], \n    \"Lorenz\": [\n        \"NNP\"\n    ], \n    \"fruit\": [\n        \"NN\"\n    ], \n    \"Harvie\": [\n        \"NNP\"\n    ], \n    \"trawler\": [\n        \"NN\"\n    ], \n    \"Reaganites\": [\n        \"NNPS\"\n    ], \n    \"Longfellow\": [\n        \"NNP\"\n    ], \n    \"mentally\": [\n        \"RB\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"Gadhafi\": [\n        \"NNP\"\n    ], \n    \"traps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"over-hand\": [\n        \"JJ\"\n    ], \n    \"locality\": [\n        \"NN\"\n    ], \n    \"Campus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hillstrom\": [\n        \"NNP\"\n    ], \n    \"toadies\": [\n        \"NNS\"\n    ], \n    \"PROMISE\": [\n        \"NN\"\n    ], \n    \"underachiever\": [\n        \"NN\"\n    ], \n    \"Nilsen\": [\n        \"NNP\"\n    ], \n    \"Playhouse\": [\n        \"NNP\"\n    ], \n    \"Bluthenzweig\": [\n        \"NNP\"\n    ], \n    \"A330-300s\": [\n        \"NNS\"\n    ], \n    \"Creditor\": [\n        \"NN\"\n    ], \n    \"Izvestia\": [\n        \"NNP\"\n    ], \n    \"PARK\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SEVEN-UP\": [\n        \"NNP\"\n    ], \n    \"Ameritas\": [\n        \"NNP\"\n    ], \n    \"EPO\": [\n        \"NNP\"\n    ], \n    \"civilized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"PARS\": [\n        \"NNP\"\n    ], \n    \"storming\": [\n        \"VBG\"\n    ], \n    \"Tractebel\": [\n        \"NNP\"\n    ], \n    \"speed\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"EPC\": [\n        \"NNP\"\n    ], \n    \"EPA\": [\n        \"NNP\"\n    ], \n    \"Sterling\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"angiotensin\": [\n        \"NN\"\n    ], \n    \"desktop\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Toshiyuki\": [\n        \"NNP\"\n    ], \n    \"gloating\": [\n        \"VBG\"\n    ], \n    \"Othon\": [\n        \"NNP\"\n    ], \n    \"mournful\": [\n        \"JJ\"\n    ], \n    \"momentum\": [\n        \"NN\"\n    ], \n    \"hover\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"frown\": [\n        \"VBP\"\n    ], \n    \"specimen\": [\n        \"NN\"\n    ], \n    \"wheelbases\": [\n        \"NNS\"\n    ], \n    \"Eclipse\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"absorptive\": [\n        \"JJ\"\n    ], \n    \"usefully\": [\n        \"RB\"\n    ], \n    \"MV40000\": [\n        \"NN\"\n    ], \n    \"Celtics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"pre-Freudian\": [\n        \"JJ\"\n    ], \n    \"Hez\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lads\": [\n        \"NNS\"\n    ], \n    \"execution\": [\n        \"NN\"\n    ], \n    \"lady\": [\n        \"NN\"\n    ], \n    \"hovel\": [\n        \"NN\"\n    ], \n    \"Shop\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"QuesTech\": [\n        \"NNP\"\n    ], \n    \"Shot\": [\n        \"VBN\"\n    ], \n    \"burdock\": [\n        \"NN\"\n    ], \n    \"pounds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"postcard\": [\n        \"NN\"\n    ], \n    \"slower-than-anticipated\": [\n        \"JJ\"\n    ], \n    \"Squatting\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Gates-Warren\": [\n        \"NNP\"\n    ], \n    \"Shoe\": [\n        \"NNP\"\n    ], \n    \"white-washed\": [\n        \"JJ\"\n    ], \n    \"dirtier\": [\n        \"JJR\"\n    ], \n    \"Suntrust\": [\n        \"NNP\"\n    ], \n    \"Nobrega\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Before\": [\n        \"IN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"meringues\": [\n        \"NNS\"\n    ], \n    \"homicides\": [\n        \"NNS\"\n    ], \n    \"densest\": [\n        \"JJS\"\n    ], \n    \"Wholesome\": [\n        \"JJ\"\n    ], \n    \"Steinbecks\": [\n        \"NNPS\"\n    ], \n    \"wastrel\": [\n        \"NN\"\n    ], \n    \"Elavil\": [\n        \"NNP\"\n    ], \n    \"auto-repair\": [\n        \"JJ\"\n    ], \n    \"strangulation\": [\n        \"NN\"\n    ], \n    \"perverse\": [\n        \"JJ\"\n    ], \n    \"Zeme\": [\n        \"NNP\"\n    ], \n    \"white-majority\": [\n        \"JJ\"\n    ], \n    \"junk-mail\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"deficit\": [\n        \"NN\"\n    ], \n    \"Ai\": [\n        \"VBP\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Interface\": [\n        \"NNP\"\n    ], \n    \"Ainus\": [\n        \"NNPS\"\n    ], \n    \"necessitating\": [\n        \"VBG\"\n    ], \n    \"IPOs\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Wooded\": [\n        \"JJ\"\n    ], \n    \"post-surgery\": [\n        \"JJ\"\n    ], \n    \"ovulation\": [\n        \"NN\"\n    ], \n    \"Wooden\": [\n        \"JJ\"\n    ], \n    \"tuition\": [\n        \"NN\"\n    ], \n    \"Tinseltown\": [\n        \"NNP\"\n    ], \n    \"meets\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"cottonmouth\": [\n        \"NN\"\n    ], \n    \"mini-Prohibition\": [\n        \"NNP\"\n    ], \n    \"containerboard\": [\n        \"NN\"\n    ], \n    \"underselling\": [\n        \"VBG\"\n    ], \n    \"interrogators\": [\n        \"NNS\"\n    ], \n    \"aeon\": [\n        \"NN\"\n    ], \n    \"reexamine\": [\n        \"VB\"\n    ], \n    \"placard\": [\n        \"NN\"\n    ], \n    \"pastness\": [\n        \"NN\"\n    ], \n    \"S.A.\": [\n        \"NNP\"\n    ], \n    \"Bookshop\": [\n        \"NNP\"\n    ], \n    \"hiatus\": [\n        \"NN\"\n    ], \n    \"chop\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Solutions\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"over-corrected\": [\n        \"VBD\"\n    ], \n    \"chow\": [\n        \"NN\"\n    ], \n    \"tweety-bird\": [\n        \"JJ\"\n    ], \n    \"deranged\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"folklike\": [\n        \"JJ\"\n    ], \n    \"researching\": [\n        \"VBG\"\n    ], \n    \"protests\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"alveolus\": [\n        \"NN\"\n    ], \n    \"tritium\": [\n        \"NN\"\n    ], \n    \"Schmidlin\": [\n        \"NNP\"\n    ], \n    \"fruitlessly\": [\n        \"RB\"\n    ], \n    \"reipublicae\": [\n        \"FW\"\n    ], \n    \"bathtubs\": [\n        \"NNS\"\n    ], \n    \"renovate\": [\n        \"VB\"\n    ], \n    \"electrosurgical\": [\n        \"JJ\"\n    ], \n    \"shipbuilding\": [\n        \"NN\"\n    ], \n    \"operator\": [\n        \"NN\"\n    ], \n    \"tilted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Meeting\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ulrich\": [\n        \"NNP\"\n    ], \n    \"actuarially\": [\n        \"RB\"\n    ], \n    \"Moon-faced\": [\n        \"JJ\"\n    ], \n    \"Lyceum\": [\n        \"NNP\"\n    ], \n    \"Wachovia\": [\n        \"NNP\"\n    ], \n    \"Hellinger\": [\n        \"NNP\"\n    ], \n    \"cold-blooded\": [\n        \"JJ\"\n    ], \n    \"A.I.R.\": [\n        \"NNP\"\n    ], \n    \"four-mile\": [\n        \"JJ\"\n    ], \n    \"Fending\": [\n        \"VBG\"\n    ], \n    \"Olathe\": [\n        \"NNP\"\n    ], \n    \"Prestige\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"immaculate\": [\n        \"JJ\"\n    ], \n    \"overpaid\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"side-rack\": [\n        \"NN\"\n    ], \n    \"Simak\": [\n        \"NNP\"\n    ], \n    \"immemorial\": [\n        \"JJ\"\n    ], \n    \"curiously\": [\n        \"RB\"\n    ], \n    \"McKnight\": [\n        \"NNP\"\n    ], \n    \"Simai\": [\n        \"NNP\"\n    ], \n    \"cottage\": [\n        \"NN\"\n    ], \n    \"caryatides\": [\n        \"NNS\"\n    ], \n    \"bad-news\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"corduroy\": [\n        \"NN\"\n    ], \n    \"hire\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Theorists\": [\n        \"NNS\"\n    ], \n    \"proof-of-purchases\": [\n        \"NNS\"\n    ], \n    \"circulation\": [\n        \"NN\"\n    ], \n    \"art-filled\": [\n        \"JJ\"\n    ], \n    \"bucket\": [\n        \"NN\"\n    ], \n    \"dabbling\": [\n        \"VBG\"\n    ], \n    \"bucked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"popularize\": [\n        \"VB\"\n    ], \n    \"Moise\": [\n        \"NNP\"\n    ], \n    \"momentarily\": [\n        \"RB\"\n    ], \n    \"describe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"moved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"aftershocks\": [\n        \"NNS\"\n    ], \n    \"bawled\": [\n        \"VBD\"\n    ], \n    \"precrash\": [\n        \"JJ\"\n    ], \n    \"Lennie\": [\n        \"NNP\"\n    ], \n    \"L.J.\": [\n        \"NNP\"\n    ], \n    \"Citic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mover\": [\n        \"NN\"\n    ], \n    \"moves\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"nerd\": [\n        \"NN\"\n    ], \n    \"judicially\": [\n        \"RB\"\n    ], \n    \"Jake\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"completeness\": [\n        \"NN\"\n    ], \n    \"antenna\": [\n        \"NN\"\n    ], \n    \"administered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"foothills\": [\n        \"NNS\"\n    ], \n    \"Heinbockel\": [\n        \"NNP\"\n    ], \n    \"intercontinental\": [\n        \"JJ\"\n    ], \n    \"Fascists\": [\n        \"NNPS\"\n    ], \n    \"evenings\": [\n        \"NNS\"\n    ], \n    \"relegating\": [\n        \"VBG\"\n    ], \n    \"houseboat\": [\n        \"NN\"\n    ], \n    \"S*/NNP&L\": [\n        \"NN\"\n    ], \n    \"polar\": [\n        \"JJ\"\n    ], \n    \"Dogberry\": [\n        \"NNP\"\n    ], \n    \"punditry\": [\n        \"NN\"\n    ], \n    \"mudguard\": [\n        \"NN\"\n    ], \n    \"overreact\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Excitement\": [\n        \"NN\"\n    ], \n    \"overreach\": [\n        \"VB\"\n    ], \n    \"Estates\": [\n        \"NNP\"\n    ], \n    \"coverage\": [\n        \"NN\"\n    ], \n    \"torches\": [\n        \"NNS\"\n    ], \n    \"laudatory\": [\n        \"JJ\"\n    ], \n    \"S*/NNP&P\": [\n        \"NN\"\n    ], \n    \"resealed\": [\n        \"VBN\"\n    ], \n    \"doubter\": [\n        \"NN\"\n    ], \n    \"connotations\": [\n        \"NNS\"\n    ], \n    \"turf-hungry\": [\n        \"JJ\"\n    ], \n    \"Untouchables\": [\n        \"NNPS\"\n    ], \n    \"dedifferentiated\": [\n        \"JJ\"\n    ], \n    \"Spalsbury\": [\n        \"NNP\"\n    ], \n    \"Exchangeable\": [\n        \"NNP\"\n    ], \n    \"Investment-grade\": [\n        \"JJ\"\n    ], \n    \"doubted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"stringy\": [\n        \"JJ\"\n    ], \n    \"Academically\": [\n        \"RB\"\n    ], \n    \"strings\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Pepperell\": [\n        \"NNP\"\n    ], \n    \"Internationalist\": [\n        \"NNP\"\n    ], \n    \"Fetzer\": [\n        \"NNP\"\n    ], \n    \"Frankel\": [\n        \"NNP\"\n    ], \n    \"Exxon-owned\": [\n        \"JJ\"\n    ], \n    \"Domeier\": [\n        \"NNP\"\n    ], \n    \"Wayland\": [\n        \"NNP\"\n    ], \n    \"Capri\": [\n        \"NNP\"\n    ], \n    \"inflating\": [\n        \"VBG\"\n    ], \n    \"Moses\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"batches\": [\n        \"NNS\"\n    ], \n    \"referring\": [\n        \"VBG\"\n    ], \n    \"headsman\": [\n        \"NN\"\n    ], \n    \"trudging\": [\n        \"VBG\"\n    ], \n    \"Hodosh\": [\n        \"NNP\"\n    ], \n    \"substantively\": [\n        \"RB\"\n    ], \n    \"dinnertime\": [\n        \"NN\"\n    ], \n    \"solicit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"high-fiber\": [\n        \"JJ\"\n    ], \n    \"clerics\": [\n        \"NNS\"\n    ], \n    \"nodes\": [\n        \"NNS\"\n    ], \n    \"subtleties\": [\n        \"NNS\"\n    ], \n    \"Aysshom\": [\n        \"NNP\"\n    ], \n    \"clairaudiently\": [\n        \"RB\"\n    ], \n    \"clubbed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"robes\": [\n        \"NNS\"\n    ], \n    \"parry\": [\n        \"VB\"\n    ], \n    \"Hypnosis\": [\n        \"NN\"\n    ], \n    \"matriculated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"enciphered\": [\n        \"VBN\"\n    ], \n    \"vasorum\": [\n        \"NN\"\n    ], \n    \"robed\": [\n        \"VBN\"\n    ], \n    \"Situs\": [\n        \"NN\"\n    ], \n    \"Enzo\": [\n        \"NNP\"\n    ], \n    \"retrial\": [\n        \"NN\"\n    ], \n    \"organizationally\": [\n        \"RB\"\n    ], \n    \"effluvium\": [\n        \"NN\"\n    ], \n    \"first-eight\": [\n        \"JJ\"\n    ], \n    \"Kline\": [\n        \"NNP\"\n    ], \n    \"mild\": [\n        \"JJ\"\n    ], \n    \"Knead\": [\n        \"VB\"\n    ], \n    \"Breakfast\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Esteban\": [\n        \"NNP\"\n    ], \n    \"Seidman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hobson\": [\n        \"NNP\"\n    ], \n    \"Nimbus-7\": [\n        \"NNP\"\n    ], \n    \"opting\": [\n        \"VBG\"\n    ], \n    \"nearing\": [\n        \"VBG\"\n    ], \n    \"Inasmuch\": [\n        \"RB\"\n    ], \n    \"Cerise\": [\n        \"NNP\"\n    ], \n    \"family-centered\": [\n        \"JJ\"\n    ], \n    \"AVON\": [\n        \"NNP\"\n    ], \n    \"conscience\": [\n        \"NN\"\n    ], \n    \"Latin\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Ayala\": [\n        \"NNP\"\n    ], \n    \"Tolley\": [\n        \"NNP\"\n    ], \n    \"Dalbar\": [\n        \"NNP\"\n    ], \n    \"fractional\": [\n        \"JJ\"\n    ], \n    \"unicycle\": [\n        \"NN\"\n    ], \n    \"blundered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Alltel\": [\n        \"NNP\"\n    ], \n    \"moisturizers\": [\n        \"NNS\"\n    ], \n    \"flocculated\": [\n        \"VBN\"\n    ], \n    \"strong\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Italian-style\": [\n        \"JJ\"\n    ], \n    \"addictions\": [\n        \"NNS\"\n    ], \n    \"ultra\": [\n        \"JJ\"\n    ], \n    \"colored\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"twice-a-day\": [\n        \"JJ\"\n    ], \n    \"Tommie\": [\n        \"NNP\"\n    ], \n    \"Itself\": [\n        \"PRP\"\n    ], \n    \"victimized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"re-creation\": [\n        \"NN\"\n    ], \n    \"unharmonious\": [\n        \"JJ\"\n    ], \n    \"Bohemians\": [\n        \"NNPS\"\n    ], \n    \"toughness\": [\n        \"NN\"\n    ], \n    \"Parish\": [\n        \"NNP\"\n    ], \n    \"impiety\": [\n        \"NN\"\n    ], \n    \"Warfield\": [\n        \"NNP\"\n    ], \n    \"hogs\": [\n        \"NNS\"\n    ], \n    \"chunky\": [\n        \"JJ\"\n    ], \n    \"merger-law\": [\n        \"NN\"\n    ], \n    \"pro-neutralist\": [\n        \"JJ\"\n    ], \n    \"chunks\": [\n        \"NNS\"\n    ], \n    \"Schnabelian\": [\n        \"JJ\"\n    ], \n    \"spawned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"minifying\": [\n        \"VBG\"\n    ], \n    \"Benchley\": [\n        \"NNP\"\n    ], \n    \"Brooding\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Automobiles\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"userfriendly\": [\n        \"JJ\"\n    ], \n    \"Standard-Times\": [\n        \"NNP\"\n    ], \n    \"polyps\": [\n        \"NNS\"\n    ], \n    \"automated-pit-trading\": [\n        \"NN\"\n    ], \n    \"abridged\": [\n        \"VBN\"\n    ], \n    \"shvartze\": [\n        \"NN\"\n    ], \n    \"weapons-acquisition\": [\n        \"NN\"\n    ], \n    \"bio-medical\": [\n        \"JJ\"\n    ], \n    \"site\": [\n        \"NN\"\n    ], \n    \"Kochaneks\": [\n        \"NNPS\"\n    ], \n    \"abridges\": [\n        \"VBZ\"\n    ], \n    \"rangelands\": [\n        \"NNS\"\n    ], \n    \"broke\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"browned\": [\n        \"VBN\"\n    ], \n    \"underwrites\": [\n        \"VBZ\"\n    ], \n    \"hurry\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Literary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Cautions\": [\n        \"NNPS\"\n    ], \n    \"stone-gray\": [\n        \"JJ\"\n    ], \n    \"addle-brained\": [\n        \"JJ\"\n    ], \n    \"Freudian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Chatterji\": [\n        \"NNP\"\n    ], \n    \"subtends\": [\n        \"VBZ\"\n    ], \n    \"Easterbrook\": [\n        \"NNP\"\n    ], \n    \"compound-engine\": [\n        \"JJ\"\n    ], \n    \"thumped\": [\n        \"VBD\"\n    ], \n    \"spontaneous\": [\n        \"JJ\"\n    ], \n    \"Inflows\": [\n        \"NNS\"\n    ], \n    \"wine-dark\": [\n        \"JJ\"\n    ], \n    \"high-density\": [\n        \"JJ\"\n    ], \n    \"pushes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"courtesies\": [\n        \"NNS\"\n    ], \n    \"Galbani\": [\n        \"NNP\"\n    ], \n    \"pushed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"revelry\": [\n        \"NN\"\n    ], \n    \"best-seller\": [\n        \"NN\"\n    ], \n    \"lacks\": [\n        \"VBZ\"\n    ], \n    \"Paos\": [\n        \"NNPS\"\n    ], \n    \"arteriolar-pulmonary\": [\n        \"JJ\"\n    ], \n    \"chops\": [\n        \"NNS\"\n    ], \n    \"warhead\": [\n        \"NN\"\n    ], \n    \"ratified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"foreseen\": [\n        \"VBN\"\n    ], \n    \"foresees\": [\n        \"VBZ\"\n    ], \n    \"Foreign-registered\": [\n        \"JJ\"\n    ], \n    \"biopharmaceutical\": [\n        \"JJ\"\n    ], \n    \"Kouji\": [\n        \"NNP\"\n    ], \n    \"ratifies\": [\n        \"VBZ\"\n    ], \n    \"centimeters\": [\n        \"NNS\"\n    ], \n    \"unearthly\": [\n        \"JJ\"\n    ], \n    \"heavy-electrical-goods\": [\n        \"JJ\"\n    ], \n    \"rapists\": [\n        \"NNS\"\n    ], \n    \"ft\": [\n        \"NN\"\n    ], \n    \"fy\": [\n        \"VBP\"\n    ], \n    \"Pansies\": [\n        \"NNS\"\n    ], \n    \"Blank\": [\n        \"NNP\"\n    ], \n    \"dwarfed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"screenwriters\": [\n        \"NNS\"\n    ], \n    \"Conseco\": [\n        \"NNP\"\n    ], \n    \"biennium\": [\n        \"NN\"\n    ], \n    \"pre-primary\": [\n        \"JJ\"\n    ], \n    \"outdistanced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Syria\": [\n        \"NNP\"\n    ], \n    \"WFAA\": [\n        \"NNP\"\n    ], \n    \"co-authored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stressed-out\": [\n        \"JJ\"\n    ], \n    \"Kopstein\": [\n        \"NNP\"\n    ], \n    \"morphine\": [\n        \"NN\"\n    ], \n    \"PUBLISHING\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"frictions\": [\n        \"NNS\"\n    ], \n    \"laminate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"documentation\": [\n        \"NN\"\n    ], \n    \"Deer\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"bugs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lesser-rank\": [\n        \"JJR\"\n    ], \n    \"slacking\": [\n        \"VBG\"\n    ], \n    \"colonels\": [\n        \"NNS\"\n    ], \n    \"Sometime\": [\n        \"RB\"\n    ], \n    \"one-word\": [\n        \"JJ\"\n    ], \n    \"scaring\": [\n        \"VBG\"\n    ], \n    \"Deed\": [\n        \"NNP\"\n    ], \n    \"A.R.A.\": [\n        \"NNP\"\n    ], \n    \"Grisha-class\": [\n        \"JJ\"\n    ], \n    \"Sandwiched\": [\n        \"VBN\"\n    ], \n    \"GHR\": [\n        \"NNP\"\n    ], \n    \"GHS\": [\n        \"NNP\"\n    ], \n    \"rhinos\": [\n        \"NNS\"\n    ], \n    \"indigestion\": [\n        \"NN\"\n    ], \n    \"cyclists\": [\n        \"NNS\"\n    ], \n    \"auburn\": [\n        \"JJ\"\n    ], \n    \"Birkelund\": [\n        \"NNP\"\n    ], \n    \"perceptive\": [\n        \"JJ\"\n    ], \n    \"Sandwiches\": [\n        \"NNS\"\n    ], \n    \"Neb.-based\": [\n        \"JJ\"\n    ], \n    \"staunch\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"atrun\": [\n        \"JJ\"\n    ], \n    \"Arseny\": [\n        \"NNP\"\n    ], \n    \"co-chairmen\": [\n        \"NNS\"\n    ], \n    \"environmentally\": [\n        \"RB\"\n    ], \n    \"fog-free\": [\n        \"JJ\"\n    ], \n    \"FII\": [\n        \"NNP\"\n    ], \n    \"Habsburg\": [\n        \"NNP\"\n    ], \n    \"Bankverein\": [\n        \"NNP\"\n    ], \n    \"Bee-Hunter\": [\n        \"NNP\"\n    ], \n    \"Keep\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"I.W.\": [\n        \"NNP\"\n    ], \n    \"Moods\": [\n        \"NNP\"\n    ], \n    \"pretty-good-rated\": [\n        \"JJ\"\n    ], \n    \"Kreditkasse\": [\n        \"NNP\"\n    ], \n    \"Reichmann\": [\n        \"NNP\"\n    ], \n    \"animism\": [\n        \"NN\"\n    ], \n    \"railbed\": [\n        \"NN\"\n    ], \n    \"Reaction\": [\n        \"NN\"\n    ], \n    \"much-craved\": [\n        \"JJ\"\n    ], \n    \"seminarians\": [\n        \"NNS\"\n    ], \n    \"chartings\": [\n        \"NNS\"\n    ], \n    \"Palmetto\": [\n        \"NNP\"\n    ], \n    \"offensives\": [\n        \"NNS\"\n    ], \n    \"sweeping\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"intranasal\": [\n        \"JJ\"\n    ], \n    \"C-12\": [\n        \"NN\"\n    ], \n    \"C-17\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"trailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Loans\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"transplanting\": [\n        \"VBG\"\n    ], \n    \"s.r.l.\": [\n        \"NNP\"\n    ], \n    \"capability\": [\n        \"NN\"\n    ], \n    \"Bovenzi\": [\n        \"NNP\"\n    ], \n    \"Hickman\": [\n        \"NNP\"\n    ], \n    \"Gayle\": [\n        \"NNP\"\n    ], \n    \"abortion-rights\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"trailer\": [\n        \"NN\"\n    ], \n    \"pamper\": [\n        \"VB\"\n    ], \n    \"nein\": [\n        \"FW\"\n    ], \n    \"dichotomy\": [\n        \"NN\"\n    ], \n    \"Falcons\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"thirteenth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Zelda\": [\n        \"NNP\"\n    ], \n    \"bickering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Peaceful\": [\n        \"JJ\"\n    ], \n    \"totalitarianism\": [\n        \"NN\"\n    ], \n    \"taunted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bikers\": [\n        \"NNS\"\n    ], \n    \"expense-paid\": [\n        \"JJ\"\n    ], \n    \"juniors\": [\n        \"NNS\"\n    ], \n    \"blue-chip\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sinai\": [\n        \"NNP\"\n    ], \n    \"half-way\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Ledford\": [\n        \"NNP\"\n    ], \n    \"pouty-looking\": [\n        \"JJ\"\n    ], \n    \"trade-processing\": [\n        \"NN\"\n    ], \n    \"ARTICLE\": [\n        \"NN\"\n    ], \n    \"smock\": [\n        \"NN\"\n    ], \n    \"in-plant\": [\n        \"JJ\"\n    ], \n    \"inert\": [\n        \"JJ\"\n    ], \n    \"protruding\": [\n        \"VBG\"\n    ], \n    \"dirt\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Butowsky\": [\n        \"NNP\"\n    ], \n    \"Grey\": [\n        \"NNP\"\n    ], \n    \"Campground\": [\n        \"NNP\"\n    ], \n    \"base\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"coastline\": [\n        \"NN\"\n    ], \n    \"dire\": [\n        \"JJ\", \n        \"FW\"\n    ], \n    \"Webern\": [\n        \"NNP\"\n    ], \n    \"bash\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Godot\": [\n        \"NNP\"\n    ], \n    \"liquidities\": [\n        \"NNS\"\n    ], \n    \"uprooted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"spot-television\": [\n        \"JJ\"\n    ], \n    \"Josephine\": [\n        \"NNP\"\n    ], \n    \"banker-editor\": [\n        \"NN\"\n    ], \n    \"sheiks\": [\n        \"NNS\"\n    ], \n    \"Dixons\": [\n        \"NNP\"\n    ], \n    \"tainted-meat\": [\n        \"NN\"\n    ], \n    \"schemata\": [\n        \"NN\"\n    ], \n    \"Disputado\": [\n        \"NNP\"\n    ], \n    \"scouts\": [\n        \"NNS\"\n    ], \n    \"Disputada\": [\n        \"NNP\"\n    ], \n    \"Faraday\": [\n        \"NNP\"\n    ], \n    \"Lexus\": [\n        \"NNP\"\n    ], \n    \"Bang-Jensen\": [\n        \"NNP\"\n    ], \n    \"Methylene\": [\n        \"NN\"\n    ], \n    \"partnerships\": [\n        \"NNS\"\n    ], \n    \"knots\": [\n        \"NNS\"\n    ], \n    \"Mecca\": [\n        \"NNP\"\n    ], \n    \"Watanabe\": [\n        \"NNP\"\n    ], \n    \"Panther\": [\n        \"NNP\"\n    ], \n    \"quarreled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bread\": [\n        \"NN\"\n    ], \n    \"dabbing\": [\n        \"VBG\"\n    ], \n    \"Imo\": [\n        \"NNP\"\n    ], \n    \"antiquity\": [\n        \"NN\"\n    ], \n    \"elder\": [\n        \"JJR\", \n        \"JJ\", \n        \"NN\", \n        \"JJ|JJR\"\n    ], \n    \"typefaces\": [\n        \"NNS\"\n    ], \n    \"legitimating\": [\n        \"VBG\"\n    ], \n    \"Durable-goods\": [\n        \"JJ\"\n    ], \n    \"ednedayose\": [\n        \"NN\"\n    ], \n    \"odds-on\": [\n        \"JJ\"\n    ], \n    \"Samford\": [\n        \"NNP\"\n    ], \n    \"Orestes\": [\n        \"NNP\"\n    ], \n    \"obedience\": [\n        \"NN\"\n    ], \n    \"airborne\": [\n        \"JJ\"\n    ], \n    \"Steinbeck\": [\n        \"NNP\"\n    ], \n    \"light-reflecting\": [\n        \"JJ\"\n    ], \n    \"Ghez\": [\n        \"NNP\"\n    ], \n    \"Delta\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"ladylike\": [\n        \"JJ\"\n    ], \n    \"lawman\": [\n        \"NN\"\n    ], \n    \"storm\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bullwhackers\": [\n        \"NNS\"\n    ], \n    \"two-hit\": [\n        \"JJ\"\n    ], \n    \"Vaska\": [\n        \"NNP\"\n    ], \n    \"CULPA\": [\n        \"NNP\"\n    ], \n    \"Oddly\": [\n        \"RB\"\n    ], \n    \"flatters\": [\n        \"VBZ\"\n    ], \n    \"cartridges\": [\n        \"NNS\"\n    ], \n    \"ventricle\": [\n        \"NN\"\n    ], \n    \"Patricelli\": [\n        \"NNP\"\n    ], \n    \"Lancashire\": [\n        \"NNP\"\n    ], \n    \"viaducts\": [\n        \"NNS\"\n    ], \n    \"Feldene\": [\n        \"NNP\"\n    ], \n    \"kindly\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"performers\": [\n        \"NNS\"\n    ], \n    \"carriage-step\": [\n        \"NN\"\n    ], \n    \"Matthies\": [\n        \"NNP\"\n    ], \n    \"impersonal\": [\n        \"JJ\"\n    ], \n    \"McClellan\": [\n        \"NNP\"\n    ], \n    \"haddock\": [\n        \"NN\"\n    ], \n    \"Serafin\": [\n        \"NNP\"\n    ], \n    \"dealer-led\": [\n        \"JJ\"\n    ], \n    \"kindle\": [\n        \"VB\"\n    ], \n    \"Rossini\": [\n        \"NNP\"\n    ], \n    \"Elisa\": [\n        \"NNP\"\n    ], \n    \"newborns\": [\n        \"NNS\"\n    ], \n    \"deciding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Defence\": [\n        \"NN\"\n    ], \n    \"macaw\": [\n        \"NN\"\n    ], \n    \"Fossett\": [\n        \"NNP\"\n    ], \n    \"presentlye\": [\n        \"NN\"\n    ], \n    \"WBZ\": [\n        \"NNP\"\n    ], \n    \"Douglas\": [\n        \"NNP\"\n    ], \n    \"Current\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"substantial\": [\n        \"JJ\"\n    ], \n    \"post-1997\": [\n        \"JJ\"\n    ], \n    \"Stoecker\": [\n        \"NNP\"\n    ], \n    \"CAPITAL-GAINS\": [\n        \"NNP\"\n    ], \n    \"Wolkind\": [\n        \"NNP\"\n    ], \n    \"Sutra\": [\n        \"NN\"\n    ], \n    \"Fendi\": [\n        \"NNP\"\n    ], \n    \"stranglehold\": [\n        \"NN\"\n    ], \n    \"Sutro\": [\n        \"NNP\"\n    ], \n    \"auctioneer\": [\n        \"NN\"\n    ], \n    \"Vineyards\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"CoastAmerica\": [\n        \"NNP\"\n    ], \n    \"pesticide-reform\": [\n        \"NN\"\n    ], \n    \"unique-ingrown-screwedup\": [\n        \"JJ\"\n    ], \n    \"Kennan\": [\n        \"NNP\"\n    ], \n    \"Charcoal\": [\n        \"NN\"\n    ], \n    \"BEAT\": [\n        \"NN\"\n    ], \n    \"quote\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Installing\": [\n        \"VBG\"\n    ], \n    \"exempted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"BEAM\": [\n        \"NNP\"\n    ], \n    \"under-funded\": [\n        \"JJ\"\n    ], \n    \"eaten\": [\n        \"VBN\"\n    ], \n    \"Guyana\": [\n        \"NNP\"\n    ], \n    \"hallucinatory\": [\n        \"JJ\"\n    ], \n    \"Remic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"short-cutting\": [\n        \"JJ\"\n    ], \n    \"mineral-rich\": [\n        \"JJ\"\n    ], \n    \"aberrations\": [\n        \"NNS\"\n    ], \n    \"salary\": [\n        \"NN\"\n    ], \n    \"Muzak\": [\n        \"NNP\"\n    ], \n    \"prettiness\": [\n        \"NN\"\n    ], \n    \"Quizzical\": [\n        \"NNP\"\n    ], \n    \"crudities\": [\n        \"NNS\"\n    ], \n    \"luckily\": [\n        \"RB\"\n    ], \n    \"Wolfgang\": [\n        \"NNP\"\n    ], \n    \"beach-drift\": [\n        \"NN\"\n    ], \n    \"skein\": [\n        \"NN\"\n    ], \n    \"blend\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Yavapai\": [\n        \"NNP\"\n    ], \n    \"Fulke\": [\n        \"NNP\"\n    ], \n    \"Bartha\": [\n        \"NNP\"\n    ], \n    \"Norris\": [\n        \"NNP\"\n    ], \n    \"aglimmering\": [\n        \"VBG\"\n    ], \n    \"Thirdly\": [\n        \"RB\"\n    ], \n    \"Squires\": [\n        \"NNP\"\n    ], \n    \"Wyden\": [\n        \"NNP\"\n    ], \n    \"sheepskin\": [\n        \"NN\"\n    ], \n    \"Nalcor\": [\n        \"NNP\"\n    ], \n    \"completion\": [\n        \"NN\"\n    ], \n    \"express-delivery\": [\n        \"NN\"\n    ], \n    \"absoluteness\": [\n        \"NN\"\n    ], \n    \"DEAL\": [\n        \"NNP\"\n    ], \n    \"Shahn\": [\n        \"NNP\"\n    ], \n    \"Sailors\": [\n        \"NNS\"\n    ], \n    \"aflatoxin-related\": [\n        \"JJ\"\n    ], \n    \"Traffic\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"central\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"entrepreneurism\": [\n        \"NN\"\n    ], \n    \"pressure-measurement\": [\n        \"NN\"\n    ], \n    \"C.C.N.Y.\": [\n        \"NNP\"\n    ], \n    \"believeth\": [\n        \"VBZ\"\n    ], \n    \"Scholey\": [\n        \"NNP\"\n    ], \n    \"Revisited\": [\n        \"NNP\"\n    ], \n    \"upstanding\": [\n        \"JJ\"\n    ], \n    \"meanwhile\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"famous\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Ditmars\": [\n        \"NNP\"\n    ], \n    \"drunkard\": [\n        \"NN\"\n    ], \n    \"during\": [\n        \"IN\"\n    ], \n    \"DEAE\": [\n        \"NNP\"\n    ], \n    \"half-drunk\": [\n        \"JJ\"\n    ], \n    \"wheezes\": [\n        \"NNS\"\n    ], \n    \"PerkinElmer\": [\n        \"NNP\"\n    ], \n    \"left-wing\": [\n        \"JJ\"\n    ], \n    \"Fletch\": [\n        \"NNP\"\n    ], \n    \"faxing\": [\n        \"VBG\"\n    ], \n    \"E&P\": [\n        \"NNP\"\n    ], \n    \"perfume\": [\n        \"NN\"\n    ], \n    \"E&J\": [\n        \"NNP\"\n    ], \n    \"Telford\": [\n        \"NNP\"\n    ], \n    \"Fatso\": [\n        \"NN\"\n    ], \n    \"wheezed\": [\n        \"VBD\"\n    ], \n    \"mis-reading\": [\n        \"VBG\"\n    ], \n    \"once-powerful\": [\n        \"JJ\"\n    ], \n    \"reminisced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"expanding-profit\": [\n        \"JJ\"\n    ], \n    \"undergoes\": [\n        \"VBZ\"\n    ], \n    \"Stoops\": [\n        \"NNP\"\n    ], \n    \"nitrocellulose\": [\n        \"NN\"\n    ], \n    \"nostalgically\": [\n        \"RB\"\n    ], \n    \"plough\": [\n        \"VB\"\n    ], \n    \"Verne\": [\n        \"NNP\"\n    ], \n    \"reminisces\": [\n        \"VBZ\"\n    ], \n    \"descriptions\": [\n        \"NNS\"\n    ], \n    \"Taif\": [\n        \"NNP\"\n    ], \n    \"Belletch\": [\n        \"NNP\"\n    ], \n    \"Neither\": [\n        \"CC\", \n        \"DT\", \n        \"IN\", \n        \"RB\"\n    ], \n    \"deploying\": [\n        \"VBG\"\n    ], \n    \"Subroto\": [\n        \"NNP\"\n    ], \n    \"Parc\": [\n        \"NNP\"\n    ], \n    \"plasticity\": [\n        \"NN\"\n    ], \n    \"Park\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"wop\": [\n        \"VB\"\n    ], \n    \"shipsets\": [\n        \"NNS\"\n    ], \n    \"marine-shipping\": [\n        \"JJ\"\n    ], \n    \"Part\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"McLauchlan\": [\n        \"NNP\"\n    ], \n    \"woe\": [\n        \"NN\"\n    ], \n    \"assistants\": [\n        \"NNS\"\n    ], \n    \"piss\": [\n        \"VB\"\n    ], \n    \"catalogs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"FDA-approved\": [\n        \"JJ\"\n    ], \n    \"notoriously\": [\n        \"RB\"\n    ], \n    \"Despina\": [\n        \"NNP\"\n    ], \n    \"appetites\": [\n        \"NNS\"\n    ], \n    \"precision-materials\": [\n        \"NNS\"\n    ], \n    \"nut-like\": [\n        \"JJ\"\n    ], \n    \"stairways\": [\n        \"NNS\"\n    ], \n    \"poorer\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Sanity\": [\n        \"NN\"\n    ], \n    \"readying\": [\n        \"VBG\"\n    ], \n    \"useable\": [\n        \"JJ\"\n    ], \n    \"adores\": [\n        \"VBZ\"\n    ], \n    \"grief-stricken\": [\n        \"JJ\"\n    ], \n    \"Satisfied\": [\n        \"VBN\"\n    ], \n    \"wage-floor\": [\n        \"JJ\"\n    ], \n    \"Genzyme\": [\n        \"NNP\"\n    ], \n    \"adored\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"anti-inflation\": [\n        \"JJ\"\n    ], \n    \"Huxtable\": [\n        \"NNP\"\n    ], \n    \"buzz\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"shortcake\": [\n        \"NN\"\n    ], \n    \"Studwell\": [\n        \"NNP\"\n    ], \n    \"unrelenting\": [\n        \"JJ\"\n    ], \n    \"Certainly\": [\n        \"RB\"\n    ], \n    \"Dickman\": [\n        \"NNP\"\n    ], \n    \"Prucker\": [\n        \"NNP\"\n    ], \n    \"motivation\": [\n        \"NN\"\n    ], \n    \"awnings\": [\n        \"NNS\"\n    ], \n    \"Reeboks\": [\n        \"NNPS\"\n    ], \n    \"body-numbing\": [\n        \"JJ\"\n    ], \n    \"fixedrate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sterba\": [\n        \"NNP\"\n    ], \n    \"Melancholy\": [\n        \"JJ\"\n    ], \n    \"victimizes\": [\n        \"VBZ\"\n    ], \n    \"forseeable\": [\n        \"JJ\"\n    ], \n    \"Grannies\": [\n        \"NNPS\"\n    ], \n    \"post-modernism\": [\n        \"NN\"\n    ], \n    \"HNSX\": [\n        \"NNP\"\n    ], \n    \"mockingly\": [\n        \"RB\"\n    ], \n    \"wait\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Preamble\": [\n        \"NN\"\n    ], \n    \"travelrestrictions\": [\n        \"NNS\"\n    ], \n    \"partly\": [\n        \"RB\"\n    ], \n    \"Reichmann-controlled\": [\n        \"JJ\"\n    ], \n    \"packs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"narration\": [\n        \"NN\"\n    ], \n    \"higher-level\": [\n        \"JJ\"\n    ], \n    \"Diehl\": [\n        \"NNP\"\n    ], \n    \"low-caliber\": [\n        \"NN\"\n    ], \n    \"doggedly\": [\n        \"RB\"\n    ], \n    \"Jeroboam\": [\n        \"NN\"\n    ], \n    \"Basket\": [\n        \"NNP\"\n    ], \n    \"corporate-finance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pfeiffer\": [\n        \"NNP\"\n    ], \n    \"child-abuse\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pilgrim\": [\n        \"NN\"\n    ], \n    \"mumbling\": [\n        \"VBG\"\n    ], \n    \"overran\": [\n        \"VBD\"\n    ], \n    \"Dona\": [\n        \"NNP\"\n    ], \n    \"Alacrity\": [\n        \"NNP\"\n    ], \n    \"INDIAN\": [\n        \"JJ\"\n    ], \n    \"Done\": [\n        \"VBN\"\n    ], \n    \"Dong\": [\n        \"NNP\"\n    ], \n    \"Soft-Sell\": [\n        \"JJ\"\n    ], \n    \"transcripts\": [\n        \"NNS\"\n    ], \n    \"most-active\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Issues\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"herein\": [\n        \"RB\"\n    ], \n    \"geologists\": [\n        \"NNS\"\n    ], \n    \"rulers\": [\n        \"NNS\"\n    ], \n    \"race-based\": [\n        \"JJ\"\n    ], \n    \"PennCorp\": [\n        \"NNP\"\n    ], \n    \"Nidal\": [\n        \"NNP\"\n    ], \n    \"Ruiz\": [\n        \"NNP\"\n    ], \n    \"debt-financed\": [\n        \"JJ\"\n    ], \n    \"salons\": [\n        \"NNS\"\n    ], \n    \"clerical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"anymore\": [\n        \"RB\"\n    ], \n    \"belong\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Alert\": [\n        \"NNP\"\n    ], \n    \"unfenced\": [\n        \"JJ\"\n    ], \n    \"shackle\": [\n        \"VB\"\n    ], \n    \"modification\": [\n        \"NN\"\n    ], \n    \"Silk\": [\n        \"NNP\"\n    ], \n    \"Sill\": [\n        \"NNP\"\n    ], \n    \"Shine\": [\n        \"NNP\"\n    ], \n    \"Philippoff\": [\n        \"NNP\"\n    ], \n    \"Shing\": [\n        \"NNP\"\n    ], \n    \"optic\": [\n        \"JJ\"\n    ], \n    \"dime\": [\n        \"NN\"\n    ], \n    \"anorthic\": [\n        \"JJ\"\n    ], \n    \"Shinn\": [\n        \"NNP\"\n    ], \n    \"Publications\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"H.S.\": [\n        \"NNP\"\n    ], \n    \"haunting\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Robinowitz\": [\n        \"NNP\"\n    ], \n    \"Shiny\": [\n        \"NNP\"\n    ], \n    \"Klipstein\": [\n        \"NNP\"\n    ], \n    \"luminescence\": [\n        \"NN\"\n    ], \n    \"mega-crashes\": [\n        \"NNS\"\n    ], \n    \"Mevalotin\": [\n        \"NN\"\n    ], \n    \"jogs\": [\n        \"VBZ\"\n    ], \n    \"underlies\": [\n        \"VBZ\"\n    ], \n    \"chronicles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"chronicler\": [\n        \"NN\"\n    ], \n    \"clears\": [\n        \"VBZ\"\n    ], \n    \"Lousiness\": [\n        \"NN\"\n    ], \n    \"calinda\": [\n        \"NN\"\n    ], \n    \"Fang\": [\n        \"NNP\"\n    ], \n    \"blockhouse\": [\n        \"NN\"\n    ], \n    \"unco-operative\": [\n        \"JJ\"\n    ], \n    \"Salazar\": [\n        \"NNP\"\n    ], \n    \"incongruity\": [\n        \"NN\"\n    ], \n    \"pseudo-questions\": [\n        \"NNS\"\n    ], \n    \"Aloha\": [\n        \"NNP\"\n    ], \n    \"quarters\": [\n        \"NNS\"\n    ], \n    \"Fans\": [\n        \"NNS\"\n    ], \n    \"Pamela\": [\n        \"NNP\"\n    ], \n    \"pyrotechnic\": [\n        \"JJ\"\n    ], \n    \"useful\": [\n        \"JJ\"\n    ], \n    \"Lindamood\": [\n        \"NNP\"\n    ], \n    \"lieutenant-governor\": [\n        \"NN\"\n    ], \n    \"panaceas\": [\n        \"NNS\"\n    ], \n    \"Harel\": [\n        \"NNP\"\n    ], \n    \"throaty\": [\n        \"JJ\"\n    ], \n    \"Rorschach\": [\n        \"NNP\"\n    ], \n    \"yttrium-containing\": [\n        \"JJ\"\n    ], \n    \"canisters\": [\n        \"NNS\"\n    ], \n    \"throats\": [\n        \"NNS\"\n    ], \n    \"Brown-Forman\": [\n        \"NNP\"\n    ], \n    \"daylights\": [\n        \"NNS\"\n    ], \n    \"Koppers\": [\n        \"NNP\"\n    ], \n    \"transformation\": [\n        \"NN\"\n    ], \n    \"S.O.B\": [\n        \"NNP\"\n    ], \n    \"COLLAPSE\": [\n        \"NN\"\n    ], \n    \"Handlers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"evaluate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Beatlemania\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"tiring\": [\n        \"VBG\"\n    ], \n    \"enthusiastically\": [\n        \"RB\"\n    ], \n    \"Billy\": [\n        \"NNP\"\n    ], \n    \"Hittner\": [\n        \"NNP\"\n    ], \n    \"Eppner\": [\n        \"NNP\"\n    ], \n    \"co-chaired\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Ruoff\": [\n        \"NNP\"\n    ], \n    \"tinkered\": [\n        \"VBN\"\n    ], \n    \"moire\": [\n        \"JJ\"\n    ], \n    \"submission\": [\n        \"NN\"\n    ], \n    \"Shikotan\": [\n        \"NNP\"\n    ], \n    \"signal\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"resorted\": [\n        \"VBN\"\n    ], \n    \"flexibility\": [\n        \"NN\"\n    ], \n    \"actives\": [\n        \"NNS\"\n    ], \n    \"strife\": [\n        \"NN\"\n    ], \n    \"linen-covered\": [\n        \"JJ\"\n    ], \n    \"donna\": [\n        \"NN\"\n    ], \n    \"minced\": [\n        \"VBN\"\n    ], \n    \"communications-technology\": [\n        \"NN\"\n    ], \n    \"Schiff\": [\n        \"NNP\"\n    ], \n    \"wombs\": [\n        \"NNS\"\n    ], \n    \"major-medical\": [\n        \"JJ\"\n    ], \n    \"lathe\": [\n        \"NN\"\n    ], \n    \"outnumber\": [\n        \"VBP\"\n    ], \n    \"showgrounds\": [\n        \"NNS\"\n    ], \n    \"ultra-thin\": [\n        \"JJ\"\n    ], \n    \"Martineau\": [\n        \"NNP\"\n    ], \n    \"trendy\": [\n        \"JJ\"\n    ], \n    \"transversely\": [\n        \"RB\"\n    ], \n    \"Greenback\": [\n        \"NNP\"\n    ], \n    \"beneficially\": [\n        \"RB\"\n    ], \n    \"exec\": [\n        \"NN\"\n    ], \n    \"dialyzed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pounding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"NWA\": [\n        \"NNP\"\n    ], \n    \"Disposition\": [\n        \"NNP\"\n    ], \n    \"pushers\": [\n        \"NNS\"\n    ], \n    \"Kredietbank\": [\n        \"NNP\"\n    ], \n    \"hypocritical\": [\n        \"JJ\"\n    ], \n    \"pfennigs\": [\n        \"NNS\"\n    ], \n    \"Outgoing\": [\n        \"JJ\"\n    ], \n    \"rebates\": [\n        \"NNS\"\n    ], \n    \"Aetna\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dilating\": [\n        \"VBG\"\n    ], \n    \"Fudosan\": [\n        \"NNP\"\n    ], \n    \"rebated\": [\n        \"VBN\"\n    ], \n    \"pitchers\": [\n        \"NNS\"\n    ], \n    \"abroad\": [\n        \"RB\"\n    ], \n    \"Rhodesia\": [\n        \"NNP\"\n    ], \n    \"faith\": [\n        \"NN\"\n    ], \n    \"Impediments\": [\n        \"NNP\"\n    ], \n    \"PASOK\": [\n        \"NNP\"\n    ], \n    \"grease-removal\": [\n        \"JJ\"\n    ], \n    \"beefsteak\": [\n        \"NN\"\n    ], \n    \"portico\": [\n        \"NN\"\n    ], \n    \"Scudder\": [\n        \"NNP\"\n    ], \n    \"Catherine\": [\n        \"NNP\"\n    ], \n    \"trucking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Chateauvallon\": [\n        \"NNP\"\n    ], \n    \"allotment\": [\n        \"NN\"\n    ], \n    \"Quake\": [\n        \"NN\"\n    ], \n    \"tax-avoidance\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Domitian\": [\n        \"NNP\"\n    ], \n    \"Leale\": [\n        \"NNP\"\n    ], \n    \"Rolnick\": [\n        \"NNP\"\n    ], \n    \"seeing\": [\n        \"VBG\"\n    ], \n    \"baboons\": [\n        \"NNS\"\n    ], \n    \"shipshape\": [\n        \"JJ\"\n    ], \n    \"quasisports\": [\n        \"NNS\"\n    ], \n    \"two-seaters\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"caretaker\": [\n        \"NN\"\n    ], \n    \"birches\": [\n        \"NNS\"\n    ], \n    \"ensue\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Their\": [\n        \"PRP$\", \n        \"NNP\"\n    ], \n    \"Boursault\": [\n        \"NNP\"\n    ], \n    \"conscientious\": [\n        \"JJ\"\n    ], \n    \"Quebecor\": [\n        \"NNP\"\n    ], \n    \"Brady-type\": [\n        \"JJ\"\n    ], \n    \"Vitale\": [\n        \"NNP\"\n    ], \n    \"caressed\": [\n        \"VBD\"\n    ], \n    \"Composite\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"small-company\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"besieged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"gruesomeness\": [\n        \"NN\"\n    ], \n    \"Portman\": [\n        \"NNP\"\n    ], \n    \"consultation\": [\n        \"NN\"\n    ], \n    \"caresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Vitaly\": [\n        \"NNP\"\n    ], \n    \"Toit\": [\n        \"NNP\"\n    ], \n    \"confessing\": [\n        \"VBG\"\n    ], \n    \"disaster-recovery\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hummocks\": [\n        \"NNS\"\n    ], \n    \"Severs\": [\n        \"NNP\"\n    ], \n    \"trade-allocating\": [\n        \"NN\"\n    ], \n    \"theatergoer\": [\n        \"NN\"\n    ], \n    \"pedestals\": [\n        \"NNS\"\n    ], \n    \"Attorneys-at-Large\": [\n        \"NNP\"\n    ], \n    \"vendor\": [\n        \"NN\"\n    ], \n    \"Severe\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"gas-tax-increasing\": [\n        \"JJ\"\n    ], \n    \"earlier-expressed\": [\n        \"JJ\"\n    ], \n    \"Severa\": [\n        \"NNP\"\n    ], \n    \"Toil\": [\n        \"NN\"\n    ], \n    \"college-bound\": [\n        \"JJ\"\n    ], \n    \"ceremonies\": [\n        \"NNS\"\n    ], \n    \"Rufenacht\": [\n        \"NNP\"\n    ], \n    \"clubhouses\": [\n        \"NNS\"\n    ], \n    \"Casson\": [\n        \"NNP\"\n    ], \n    \"noradrenalin\": [\n        \"NN\"\n    ], \n    \"circuits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chromed\": [\n        \"JJ\"\n    ], \n    \"Svenska\": [\n        \"NNP\"\n    ], \n    \"Brit\": [\n        \"NNP\"\n    ], \n    \"fringe-benefit\": [\n        \"NN\"\n    ], \n    \"heterogeneous\": [\n        \"JJ\"\n    ], \n    \"d-Percent\": [\n        \"LS|NN\"\n    ], \n    \"Wage\": [\n        \"NN\"\n    ], \n    \"Wagg\": [\n        \"NNP\"\n    ], \n    \"Stop-limit\": [\n        \"JJ\"\n    ], \n    \"adults\": [\n        \"NNS\"\n    ], \n    \"Stormy\": [\n        \"NNP\"\n    ], \n    \"do-or-die\": [\n        \"JJ\"\n    ], \n    \"Tate\": [\n        \"NNP\"\n    ], \n    \"willed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Tata\": [\n        \"NNP\"\n    ], \n    \"precept\": [\n        \"NN\"\n    ], \n    \"languishing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"sharing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"seethe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"oxidized\": [\n        \"JJ\"\n    ], \n    \"Above\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"Minpeco-Manufacturers\": [\n        \"NNPS\"\n    ], \n    \"cotton\": [\n        \"NN\"\n    ], \n    \"four-lane\": [\n        \"JJ\"\n    ], \n    \"analyticity\": [\n        \"NN\"\n    ], \n    \"Calculating\": [\n        \"VBG\"\n    ], \n    \"Complicity\": [\n        \"NN\"\n    ], \n    \"condescension\": [\n        \"NN\"\n    ], \n    \"politicians\": [\n        \"NNS\"\n    ], \n    \"dept.\": [\n        \"NN\"\n    ], \n    \"enquired\": [\n        \"VBD\"\n    ], \n    \"tits\": [\n        \"NNS\"\n    ], \n    \"forge\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Hammacher\": [\n        \"NNP\"\n    ], \n    \"Gerry\": [\n        \"NNP\"\n    ], \n    \"bravado\": [\n        \"NN\"\n    ], \n    \"Panetta\": [\n        \"NNP\"\n    ], \n    \"co-sponsors\": [\n        \"NNS\"\n    ], \n    \"revamped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Lovenberg\": [\n        \"NNP\"\n    ], \n    \"Powicke\": [\n        \"NNP\"\n    ], \n    \"Cheval\": [\n        \"NNP\"\n    ], \n    \"clenched\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"heath\": [\n        \"NN\"\n    ], \n    \"perishables\": [\n        \"NNS\"\n    ], \n    \"depth\": [\n        \"NN\"\n    ], \n    \"heats\": [\n        \"VBZ\"\n    ], \n    \"Geiger\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"clenches\": [\n        \"VBZ\"\n    ], \n    \"Unger\": [\n        \"NNP\"\n    ], \n    \"Watkins\": [\n        \"NNP\"\n    ], \n    \"multipactor\": [\n        \"NN\"\n    ], \n    \"Lars\": [\n        \"NNP\"\n    ], \n    \"mores\": [\n        \"NNS\"\n    ], \n    \"Wall-Tex\": [\n        \"NN\"\n    ], \n    \"Zeffirelli\": [\n        \"NNP\"\n    ], \n    \"Lara\": [\n        \"NNP\"\n    ], \n    \"price-slashing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"elution\": [\n        \"NN\"\n    ], \n    \"Swadesh\": [\n        \"NNP\"\n    ], \n    \"corporate-law\": [\n        \"NN\"\n    ], \n    \"Lark\": [\n        \"NNP\"\n    ], \n    \"mercer\": [\n        \"NN\"\n    ], \n    \"instrumentally\": [\n        \"RB\"\n    ], \n    \"Combat\": [\n        \"NNP\"\n    ], \n    \"Alcan\": [\n        \"NNP\"\n    ], \n    \"aria\": [\n        \"NN\"\n    ], \n    \"arid\": [\n        \"JJ\"\n    ], \n    \"ripened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hallador\": [\n        \"NNP\"\n    ], \n    \"relocated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"highbrow-furrowing\": [\n        \"NN\"\n    ], \n    \"fly\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"P&C\": [\n        \"NNP\"\n    ], \n    \"products...\": [\n        \":\"\n    ], \n    \"P&G\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"portfolios\": [\n        \"NNS\"\n    ], \n    \"Two-thirds\": [\n        \"NNS\"\n    ], \n    \"prudence\": [\n        \"NN\"\n    ], \n    \"child-cloud\": [\n        \"NN\"\n    ], \n    \"Muong\": [\n        \"NNP\"\n    ], \n    \"squeaked\": [\n        \"VBD\"\n    ], \n    \"P&S\": [\n        \"NNP\"\n    ], \n    \"Chica\": [\n        \"NNP\"\n    ], \n    \"enslaved\": [\n        \"VBN\"\n    ], \n    \"frigates\": [\n        \"NNS\"\n    ], \n    \"discouragement\": [\n        \"NN\"\n    ], \n    \"polymeric\": [\n        \"JJ\"\n    ], \n    \"Chico\": [\n        \"NNP\"\n    ], \n    \"multipleuser\": [\n        \"JJ\"\n    ], \n    \"asparagus\": [\n        \"NN\"\n    ], \n    \"insuperable\": [\n        \"JJ\"\n    ], \n    \"Bodmer\": [\n        \"NNP\"\n    ], \n    \"non-equity\": [\n        \"JJ\"\n    ], \n    \"flickered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"unexciting\": [\n        \"JJ\"\n    ], \n    \"insuperably\": [\n        \"RB\"\n    ], \n    \"deleting\": [\n        \"VBG\"\n    ], \n    \"dilute\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"manliness\": [\n        \"NN\"\n    ], \n    \"howls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Teaching\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"vilified\": [\n        \"VBN\"\n    ], \n    \"edifice\": [\n        \"NN\"\n    ], \n    \"valet\": [\n        \"NN\"\n    ], \n    \"experiment\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"ARRIVED\": [\n        \"VBD\"\n    ], \n    \"selecting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"self-defeating\": [\n        \"JJ\"\n    ], \n    \";\": [\n        \";\"\n    ], \n    \"Winfrey\": [\n        \"NNP\"\n    ], \n    \"Swift\": [\n        \"NNP\"\n    ], \n    \"saps\": [\n        \"VBZ\"\n    ], \n    \"GOLDEN\": [\n        \"NNP\"\n    ], \n    \"melancholy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"focuses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Cunningham\": [\n        \"NNP\"\n    ], \n    \"Kerrville\": [\n        \"NNP\"\n    ], \n    \"Greer\": [\n        \"NNP\"\n    ], \n    \"Appearance\": [\n        \"NN\"\n    ], \n    \"Debating\": [\n        \"NNP\"\n    ], \n    \"Sagos\": [\n        \"NNS\"\n    ], \n    \"Greek\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Green\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Volumes\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"artificial-heart\": [\n        \"JJ\"\n    ], \n    \"Greed\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"spellers\": [\n        \"NNS\"\n    ], \n    \"noisily\": [\n        \"RB\"\n    ], \n    \"bites\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"coddling\": [\n        \"NN\"\n    ], \n    \"Jean-Louis\": [\n        \"NNP\"\n    ], \n    \"antecedents\": [\n        \"NNS\"\n    ], \n    \"Emory\": [\n        \"NNP\"\n    ], \n    \"Hindu\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"juries\": [\n        \"NNS\"\n    ], \n    \"pariahs\": [\n        \"NNS\"\n    ], \n    \"Kirk\": [\n        \"NNP\"\n    ], \n    \"highly-leveraged\": [\n        \"JJ\"\n    ], \n    \"Utopian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"filde\": [\n        \"VBN\"\n    ], \n    \"Kira\": [\n        \"NNP\"\n    ], \n    \"N-no\": [\n        \"UH\"\n    ], \n    \"Harmless\": [\n        \"JJ\"\n    ], \n    \"role-experimentation\": [\n        \"NN\"\n    ], \n    \"Explaining\": [\n        \"VBG\"\n    ], \n    \"REMEMBER\": [\n        \"VB\"\n    ], \n    \"R-Warren\": [\n        \"NNP\"\n    ], \n    \"vs.\": [\n        \"IN\", \n        \"CC\", \n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Taxable\": [\n        \"NNP\"\n    ], \n    \"reregulate\": [\n        \"VB\"\n    ], \n    \"Ruberg\": [\n        \"NNP\"\n    ], \n    \"simpliciter\": [\n        \"FW\"\n    ], \n    \"reflects\": [\n        \"VBZ\"\n    ], \n    \"stirups\": [\n        \"NNS\"\n    ], \n    \"optimizing\": [\n        \"VBG\"\n    ], \n    \"McWhinney\": [\n        \"NNP\"\n    ], \n    \"imprisons\": [\n        \"VBZ\"\n    ], \n    \"Denmark\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gardened\": [\n        \"VBD\"\n    ], \n    \"darting\": [\n        \"VBG\"\n    ], \n    \"Calhoun\": [\n        \"NNP\"\n    ], \n    \"Skylark\": [\n        \"NNP\"\n    ], \n    \"Claire\": [\n        \"NNP\"\n    ], \n    \"S-K-I\": [\n        \"NNP\"\n    ], \n    \"six-inch\": [\n        \"JJ\"\n    ], \n    \"LARGEST\": [\n        \"JJS\"\n    ], \n    \"inattentive\": [\n        \"JJ\"\n    ], \n    \"Leisure\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"arched\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Khrushchev\": [\n        \"NNP\"\n    ], \n    \"mostaccioli\": [\n        \"NN\"\n    ], \n    \"videodiscs\": [\n        \"NNS\"\n    ], \n    \"UCLA\": [\n        \"NNP\"\n    ], \n    \"Esplanade\": [\n        \"NNP\"\n    ], \n    \"Choreographed\": [\n        \"VBN\"\n    ], \n    \"donut\": [\n        \"NN\"\n    ], \n    \"arches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"infinitesimal\": [\n        \"JJ\"\n    ], \n    \"Baltimore-based\": [\n        \"JJ\"\n    ], \n    \"Defenders\": [\n        \"NNS\"\n    ], \n    \"TRUCK\": [\n        \"NNP\"\n    ], \n    \"intitiative\": [\n        \"NN\"\n    ], \n    \"Grunberg\": [\n        \"NNP\"\n    ], \n    \"Heidegger\": [\n        \"NNP\"\n    ], \n    \"Quelle\": [\n        \"NNP\"\n    ], \n    \"escapes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"escaped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Damon\": [\n        \"NNP\"\n    ], \n    \"color-printing\": [\n        \"JJ\"\n    ], \n    \"Homemade\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"suds\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"triangle\": [\n        \"NN\"\n    ], \n    \"darkening\": [\n        \"VBG\"\n    ], \n    \"cots\": [\n        \"NNS\"\n    ], \n    \"boasting\": [\n        \"VBG\"\n    ], \n    \"jails\": [\n        \"NNS\"\n    ], \n    \"mortaring\": [\n        \"NN\"\n    ], \n    \"NHL\": [\n        \"NNP\"\n    ], \n    \"semitropical\": [\n        \"JJ\"\n    ], \n    \"NHI\": [\n        \"NNP\"\n    ], \n    \"Camino\": [\n        \"NNP\"\n    ], \n    \"neurotic\": [\n        \"JJ\"\n    ], \n    \"solidifying\": [\n        \"VBG\"\n    ], \n    \"located\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Gord\": [\n        \"NNP\"\n    ], \n    \"Gore\": [\n        \"NNP\"\n    ], \n    \"Urich\": [\n        \"NNP\"\n    ], \n    \"elliptical\": [\n        \"JJ\"\n    ], \n    \"Coriolanus\": [\n        \"NNP\"\n    ], \n    \"deplore\": [\n        \"VB\"\n    ], \n    \"Lobby\": [\n        \"NNP\"\n    ], \n    \"Philips\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"cobwebs\": [\n        \"NNS\"\n    ], \n    \"furiously\": [\n        \"RB\"\n    ], \n    \"billows\": [\n        \"NNS\"\n    ], \n    \"colonnaded\": [\n        \"JJ\"\n    ], \n    \"lift-ticket\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"chiefs\": [\n        \"NNS\"\n    ], \n    \"Blackberry\": [\n        \"NNP\"\n    ], \n    \"Lifetime\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"spelling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"hasher\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"flagrantly\": [\n        \"RB\"\n    ], \n    \"flashier\": [\n        \"JJR\"\n    ], \n    \"Eigen\": [\n        \"NNP\"\n    ], \n    \"SAME\": [\n        \"JJ\"\n    ], \n    \"corral\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Accudyne\": [\n        \"NNP\"\n    ], \n    \"crematoriums\": [\n        \"NNS\"\n    ], \n    \"healthcare\": [\n        \"NN\"\n    ], \n    \"LONG-TERM\": [\n        \"JJ\"\n    ], \n    \"fund-research\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Keidanren\": [\n        \"NNP\"\n    ], \n    \"bathing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Addington\": [\n        \"NNP\"\n    ], \n    \"Cycling\": [\n        \"NNP\"\n    ], \n    \"Brandeis\": [\n        \"NNP\"\n    ], \n    \"Gonzales\": [\n        \"NNP\"\n    ], \n    \"Carnevale\": [\n        \"NNP\"\n    ], \n    \"Smith\": [\n        \"NNP\"\n    ], \n    \"higher-paying\": [\n        \"JJ\"\n    ], \n    \"less-developed\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"bumblebee\": [\n        \"NN\"\n    ], \n    \"brittle\": [\n        \"JJ\"\n    ], \n    \"subversive\": [\n        \"JJ\"\n    ], \n    \"Paperwork\": [\n        \"NNP\"\n    ], \n    \"e-In\": [\n        \"IN\"\n    ], \n    \"consumer-goods\": [\n        \"NNS\"\n    ], \n    \"sinecure\": [\n        \"NN\"\n    ], \n    \"Athanassiades\": [\n        \"NNP\"\n    ], \n    \"youngster\": [\n        \"NN\"\n    ], \n    \"Anti-Communist\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Luis\": [\n        \"NNP\"\n    ], \n    \"Eyke\": [\n        \"NNP\"\n    ], \n    \"sardonically\": [\n        \"RB\"\n    ], \n    \"Schulman\": [\n        \"NNP\"\n    ], \n    \"communicator\": [\n        \"NN\"\n    ], \n    \"Aaa-ee\": [\n        \"UH\"\n    ], \n    \"administration-Fed\": [\n        \"JJ\"\n    ], \n    \"Margolis\": [\n        \"NNP\"\n    ], \n    \"Miami\": [\n        \"NNP\"\n    ], \n    \"Pyo\": [\n        \"NNP\"\n    ], \n    \"Brother\": [\n        \"NNP\"\n    ], \n    \"Confair\": [\n        \"NNP\"\n    ], \n    \"modernistic\": [\n        \"JJ\"\n    ], \n    \"watch-spring\": [\n        \"JJ\"\n    ], \n    \"parent-teacher\": [\n        \"JJ\"\n    ], \n    \"seat-belt\": [\n        \"NN\"\n    ], \n    \"ex-hurler\": [\n        \"NN\"\n    ], \n    \"adjournment\": [\n        \"NN\"\n    ], \n    \"Celsius\": [\n        \"NNP\"\n    ], \n    \"mode\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"commonwealth\": [\n        \"NN\"\n    ], \n    \"engraves\": [\n        \"VBZ\"\n    ], \n    \"CODE,DTF\": [\n        \"NN\"\n    ], \n    \"Administrators\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"paid-for\": [\n        \"IN\"\n    ], \n    \"prorated\": [\n        \"VBN\"\n    ], \n    \"inverted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"climatic\": [\n        \"JJ\"\n    ], \n    \"turnkey\": [\n        \"NN\"\n    ], \n    \"Spatial\": [\n        \"JJ\"\n    ], \n    \"Avenues\": [\n        \"NNP\"\n    ], \n    \"ticket-writing\": [\n        \"NN\"\n    ], \n    \"secretly\": [\n        \"RB\"\n    ], \n    \"activism\": [\n        \"NN\"\n    ], \n    \"criminally\": [\n        \"RB\"\n    ], \n    \"protoplasm\": [\n        \"NN\"\n    ], \n    \"Fence-line\": [\n        \"JJ\"\n    ], \n    \"Bebear\": [\n        \"NNP\"\n    ], \n    \"pre-Sterling\": [\n        \"JJ\"\n    ], \n    \"Proust\": [\n        \"NNP\"\n    ], \n    \"wick\": [\n        \"NN\"\n    ], \n    \"underpinned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Beginning\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rosalyn\": [\n        \"NNP\"\n    ], \n    \"influent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"achievements\": [\n        \"NNS\"\n    ], \n    \"reacts\": [\n        \"VBZ\"\n    ], \n    \"stepped-up\": [\n        \"JJ\"\n    ], \n    \"diagonal\": [\n        \"JJ\"\n    ], \n    \"Substantive\": [\n        \"NNP\"\n    ], \n    \"Not-Held\": [\n        \"NNP\"\n    ], \n    \"ancestry\": [\n        \"NN\"\n    ], \n    \"Sweat\": [\n        \"NN\"\n    ], \n    \"advisor\": [\n        \"NN\"\n    ], \n    \"Agrobacterium\": [\n        \"NN\"\n    ], \n    \"drowning\": [\n        \"VBG\"\n    ], \n    \"precaution\": [\n        \"NN\"\n    ], \n    \"route\": [\n        \"NN\", \n        \"VBP\", \n        \"FW\", \n        \"IN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"diminished\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"relentless\": [\n        \"JJ\"\n    ], \n    \"keen\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"keel\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Aspencade\": [\n        \"NNP\"\n    ], \n    \"diminishes\": [\n        \"VBZ\"\n    ], \n    \"Lamb\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Reckitt\": [\n        \"NNP\"\n    ], \n    \"incarnate\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Lama\": [\n        \"NNP\"\n    ], \n    \"succeeds\": [\n        \"VBZ\"\n    ], \n    \"zero-sum\": [\n        \"JJ\"\n    ], \n    \"Nipe\": [\n        \"NNP\"\n    ], \n    \"decribed\": [\n        \"VBD\"\n    ], \n    \"forego\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lamm\": [\n        \"NNP\"\n    ], \n    \"Massell\": [\n        \"NNP\"\n    ], \n    \"filigree\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sucker-rolling\": [\n        \"JJ\"\n    ], \n    \"ice-cream\": [\n        \"NN\"\n    ], \n    \"Lamy\": [\n        \"NNP\"\n    ], \n    \"Nipp\": [\n        \"NNP\"\n    ], \n    \"Mobilia\": [\n        \"NNP\"\n    ], \n    \"Slavic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Peerless\": [\n        \"NNP\"\n    ], \n    \"Slavin\": [\n        \"NNP\"\n    ], \n    \"perinatally\": [\n        \"RB\"\n    ], \n    \"tremblor\": [\n        \"NN\"\n    ], \n    \"prouder\": [\n        \"RBR\"\n    ], \n    \"unambiguously\": [\n        \"RB\"\n    ], \n    \"circulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pervaporation\": [\n        \"NN\"\n    ], \n    \"home-ownership\": [\n        \"NN\"\n    ], \n    \"lighters\": [\n        \"NNS\"\n    ], \n    \"earmarked\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\"\n    ], \n    \"suitability\": [\n        \"NN\"\n    ], \n    \"love-in-action\": [\n        \"NN\"\n    ], \n    \"Searles\": [\n        \"NNP\"\n    ], \n    \"synergistic\": [\n        \"JJ\"\n    ], \n    \"herself\": [\n        \"PRP\"\n    ], \n    \"Combellack\": [\n        \"NNP\"\n    ], \n    \"photograph\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"spurn\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Allure\": [\n        \"NN\"\n    ], \n    \"English-dialogue\": [\n        \"JJ\"\n    ], \n    \"two...\": [\n        \":\"\n    ], \n    \"transgression\": [\n        \"NN\"\n    ], \n    \"buggers\": [\n        \"NNS\"\n    ], \n    \"spurt\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"providing\": [\n        \"VBG\", \n        \"IN\"\n    ], \n    \"supplanting\": [\n        \"VBG\"\n    ], \n    \"Rumford\": [\n        \"NNP\"\n    ], \n    \"Information\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Guderian\": [\n        \"NNP\"\n    ], \n    \"gratingly\": [\n        \"RB\"\n    ], \n    \"dogmatically\": [\n        \"RB\"\n    ], \n    \"government-supported\": [\n        \"JJ\"\n    ], \n    \"Highlights\": [\n        \"NNS\"\n    ], \n    \"dewdrops\": [\n        \"NNS\"\n    ], \n    \"beefs\": [\n        \"VBZ\"\n    ], \n    \"thereto\": [\n        \"RB\"\n    ], \n    \"p.m\": [\n        \"RB\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"mycobacteria\": [\n        \"NN\"\n    ], \n    \"beefy\": [\n        \"JJ\"\n    ], \n    \"border\": [\n        \"NN\"\n    ], \n    \"prior-review\": [\n        \"JJ\"\n    ], \n    \"hot-dipped\": [\n        \"JJ\"\n    ], \n    \"Coffee-House\": [\n        \"NNP\"\n    ], \n    \"sprinkles\": [\n        \"VBZ\"\n    ], \n    \"sprinkler\": [\n        \"NN\"\n    ], \n    \"unadulterated\": [\n        \"JJ\"\n    ], \n    \"gunner\": [\n        \"NN\"\n    ], \n    \"Photos\": [\n        \"NNS\"\n    ], \n    \"sprinkled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"medical-airlift\": [\n        \"NN\"\n    ], \n    \"gunned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Underwriting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Cotman\": [\n        \"NNP\"\n    ], \n    \"adieu\": [\n        \"FW\"\n    ], \n    \"Unamused\": [\n        \"JJ\"\n    ], \n    \"Bremner\": [\n        \"NNP\"\n    ], \n    \"disgorge\": [\n        \"VB\"\n    ], \n    \"little-publicized\": [\n        \"JJ\"\n    ], \n    \"Sharkey\": [\n        \"NNP\"\n    ], \n    \"resplendent\": [\n        \"JJ\"\n    ], \n    \"liturgical\": [\n        \"JJ\"\n    ], \n    \"flip-flopped\": [\n        \"JJ\"\n    ], \n    \"crossroading\": [\n        \"VBG\"\n    ], \n    \"sippers\": [\n        \"NNS\"\n    ], \n    \"Heidi\": [\n        \"NNP\"\n    ], \n    \"olive-green\": [\n        \"JJ\"\n    ], \n    \"snow-fence\": [\n        \"NN\"\n    ], \n    \"Toomey\": [\n        \"NNP\"\n    ], \n    \"spring-brake\": [\n        \"NN\"\n    ], \n    \"gentleladies\": [\n        \"NNS\"\n    ], \n    \"Eastate\": [\n        \"NNP\"\n    ], \n    \"Loney\": [\n        \"NNP\"\n    ], \n    \"harmonization\": [\n        \"NN\"\n    ], \n    \"Expects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"blurt\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"proceedings\": [\n        \"NNS\"\n    ], \n    \"propels\": [\n        \"VBZ\"\n    ], \n    \"profit-taking\": [\n        \"NN\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"businessman\": [\n        \"NN\"\n    ], \n    \"Cioffi\": [\n        \"NNP\"\n    ], \n    \"Jorndt\": [\n        \"NNP\"\n    ], \n    \"Provincial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Matt\": [\n        \"NNP\"\n    ], \n    \"Mascarita\": [\n        \"NNP\"\n    ], \n    \"Matz\": [\n        \"NNP\"\n    ], \n    \"unfathomable\": [\n        \"JJ\"\n    ], \n    \"reclaiming\": [\n        \"VBG\"\n    ], \n    \"Math\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"envy\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"transfer-pricing\": [\n        \"JJ\"\n    ], \n    \"valuation\": [\n        \"NN\"\n    ], \n    \"idiocies\": [\n        \"NNS\"\n    ], \n    \"hadd\": [\n        \"VBN\"\n    ], \n    \"re-evaluate\": [\n        \"VB\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Brauer\": [\n        \"NNP\"\n    ], \n    \"Dinsa\": [\n        \"NNP\"\n    ], \n    \"stableman\": [\n        \"NN\"\n    ], \n    \"equivalents\": [\n        \"NNS\"\n    ], \n    \"slows\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"crumbling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Oestreich\": [\n        \"NNP\"\n    ], \n    \"FiberCom\": [\n        \"NNP\"\n    ], \n    \"Hague\": [\n        \"NNP\"\n    ], \n    \"desecrated\": [\n        \"VBN\"\n    ], \n    \"drug-approval\": [\n        \"JJ\"\n    ], \n    \"marvels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Domicilium\": [\n        \"NNP\"\n    ], \n    \"anti-crime\": [\n        \"JJ\"\n    ], \n    \"wincing\": [\n        \"VBG\"\n    ], \n    \"parlors\": [\n        \"NNS\"\n    ], \n    \"Jerseyite\": [\n        \"NNP\"\n    ], \n    \"shrillness\": [\n        \"NN\"\n    ], \n    \"Takaezu\": [\n        \"NNP\"\n    ], \n    \"Uncontrolled\": [\n        \"JJ\"\n    ], \n    \"Diana\": [\n        \"NNP\"\n    ], \n    \"preach\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Driving\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"burying\": [\n        \"VBG\"\n    ], \n    \"capitalists\": [\n        \"NNS\"\n    ], \n    \"legacy\": [\n        \"NN\"\n    ], \n    \"theocracy\": [\n        \"NN\"\n    ], \n    \"Jenkins\": [\n        \"NNP\"\n    ], \n    \"SBCI\": [\n        \"NNP\"\n    ], \n    \"forgo\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unearth\": [\n        \"VB\"\n    ], \n    \"furbishing\": [\n        \"NN\"\n    ], \n    \"cents\": [\n        \"NNS\"\n    ], \n    \"Protective\": [\n        \"JJ\"\n    ], \n    \"Sosuke\": [\n        \"NNP\"\n    ], \n    \"joys\": [\n        \"NNS\"\n    ], \n    \"tabula\": [\n        \"NN\"\n    ], \n    \"high-gloss\": [\n        \"JJ\"\n    ], \n    \"correctly\": [\n        \"RB\"\n    ], \n    \"lug\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"lui\": [\n        \"FW\"\n    ], \n    \"flicks\": [\n        \"NNS\"\n    ], \n    \"sold\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Beaufort\": [\n        \"NNP\"\n    ], \n    \"nutritious\": [\n        \"JJ\"\n    ], \n    \"franchiser\": [\n        \"NN\"\n    ], \n    \"barreling\": [\n        \"VBG\"\n    ], \n    \"munching\": [\n        \"VBG\"\n    ], \n    \"Cuban-American\": [\n        \"NNP\"\n    ], \n    \"Petrograd\": [\n        \"NNP\"\n    ], \n    \"foreshadow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"squads\": [\n        \"NNS\"\n    ], \n    \"disproportionately\": [\n        \"RB\"\n    ], \n    \"Home-keeping\": [\n        \"JJ\"\n    ], \n    \"pilgrims\": [\n        \"NNS\"\n    ], \n    \"interpretations\": [\n        \"NNS\"\n    ], \n    \"Belzbergs\": [\n        \"NNPS\"\n    ], \n    \"Devereux\": [\n        \"NNP\"\n    ], \n    \"disobeyed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Jihad\": [\n        \"NNP\"\n    ], \n    \"Mazilo\": [\n        \"NNP\"\n    ], \n    \"lobster-backed\": [\n        \"JJ\"\n    ], \n    \"jersey\": [\n        \"NN\"\n    ], \n    \"habitual\": [\n        \"JJ\"\n    ], \n    \"CIA\": [\n        \"NNP\"\n    ], \n    \"Karolinerna\": [\n        \"NNP\"\n    ], \n    \"individuation\": [\n        \"NN\"\n    ], \n    \"betrayed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"temperamental\": [\n        \"JJ\"\n    ], \n    \"cohere\": [\n        \"VB\"\n    ], \n    \"crystalline\": [\n        \"JJ\"\n    ], \n    \"alternates\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Garber\": [\n        \"NNP\"\n    ], \n    \"disintegrate\": [\n        \"VB\"\n    ], \n    \"Incident\": [\n        \"NN\"\n    ], \n    \"computer-systems\": [\n        \"NNS\"\n    ], \n    \"inertia\": [\n        \"NN\"\n    ], \n    \"office-product\": [\n        \"NN\"\n    ], \n    \"volunteerism\": [\n        \"NN\"\n    ], \n    \"N.F.\": [\n        \"NNP\"\n    ], \n    \"Indo-German\": [\n        \"NNP\"\n    ], \n    \"Careful\": [\n        \"JJ\"\n    ], \n    \"cocotte\": [\n        \"NN\"\n    ], \n    \"darkling\": [\n        \"JJ\"\n    ], \n    \"Meador\": [\n        \"NNP\"\n    ], \n    \"Cuban-assisted\": [\n        \"JJ\"\n    ], \n    \"Ignazio\": [\n        \"NNP\"\n    ], \n    \"Sandinista\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"June.\": [\n        \"NN\"\n    ], \n    \"kicks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"boxcars\": [\n        \"NNS\"\n    ], \n    \"Duty-Free\": [\n        \"NNP\"\n    ], \n    \"digger\": [\n        \"NN\"\n    ], \n    \"novel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"principal-only\": [\n        \"JJ\"\n    ], \n    \"Unsinkable\": [\n        \"NNP\"\n    ], \n    \"wth\": [\n        \"IN\"\n    ], \n    \"Elbe\": [\n        \"NNP\"\n    ], \n    \"Elba\": [\n        \"NNP\"\n    ], \n    \"resident\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"CIT\": [\n        \"NNP\"\n    ], \n    \"WNYC-FM\": [\n        \"NNP\"\n    ], \n    \"despues\": [\n        \"FW\"\n    ], \n    \"battle-cry\": [\n        \"NN\"\n    ], \n    \"Pushkin\": [\n        \"NNP\"\n    ], \n    \"Briggs\": [\n        \"NNP\"\n    ], \n    \"Hinduism\": [\n        \"NNP\"\n    ], \n    \"lambs\": [\n        \"NNS\"\n    ], \n    \"Hinduish\": [\n        \"JJ\"\n    ], \n    \"Lobl\": [\n        \"NNP\"\n    ], \n    \"Melamine\": [\n        \"JJ\"\n    ], \n    \"PPG\": [\n        \"NNP\"\n    ], \n    \"consumer-credit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"anachronism\": [\n        \"NN\"\n    ], \n    \"operas\": [\n        \"NNS\"\n    ], \n    \"Underneath\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"chants\": [\n        \"NNS\"\n    ], \n    \"PPP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"high-interest-rate\": [\n        \"JJ\"\n    ], \n    \"Containers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"helium\": [\n        \"NN\"\n    ], \n    \"haranguing\": [\n        \"VBG\"\n    ], \n    \"Exocet\": [\n        \"NNP\"\n    ], \n    \"Uniate\": [\n        \"NNP\"\n    ], \n    \"absorb\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"raw-sugar\": [\n        \"JJ\"\n    ], \n    \"recommendatons\": [\n        \"NNS\"\n    ], \n    \"Freeway\": [\n        \"NNP\"\n    ], \n    \"dissidents.\": [\n        \"NN\"\n    ], \n    \"Families\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"sore-ridden\": [\n        \"JJ\"\n    ], \n    \"stay-at-home\": [\n        \"JJ\"\n    ], \n    \"Whittington\": [\n        \"NNP\"\n    ], \n    \"energized\": [\n        \"VBN\"\n    ], \n    \"paycheck\": [\n        \"NN\"\n    ], \n    \"Wallingford\": [\n        \"NNP\"\n    ], \n    \"Wieslawa\": [\n        \"NNP\"\n    ], \n    \"i\": [\n        \"NN\", \n        \"FW\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"modeled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"stirrup-guard\": [\n        \"NN\"\n    ], \n    \"long-rumored\": [\n        \"JJ\"\n    ], \n    \"rink\": [\n        \"NN\"\n    ], \n    \"home-acquisition\": [\n        \"JJ\"\n    ], \n    \"flexing\": [\n        \"VBG\"\n    ], \n    \"Heywood\": [\n        \"NNP\"\n    ], \n    \"energizes\": [\n        \"VBZ\"\n    ], \n    \"Remembrance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"]*\": [\n        \"NN\", \n        \"DT\", \n        \"JJ\", \n        \"RB\", \n        \"UH\", \n        \"NNP\", \n        \"NNS\", \n        \"NN|POS\", \n        \",\", \n        \"VBG\", \n        \"VBP\"\n    ], \n    \"jurisconsults\": [\n        \"NNS\"\n    ], \n    \"Provinces\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Peaceable\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"underdog\": [\n        \"NN\"\n    ], \n    \"accurate\": [\n        \"JJ\"\n    ], \n    \"resiliently\": [\n        \"RB\"\n    ], \n    \"Sunday\": [\n        \"NNP\"\n    ], \n    \"office-supplies\": [\n        \"NNS\"\n    ], \n    \"matter-of-factness\": [\n        \"NN\"\n    ], \n    \"low-level\": [\n        \"JJ\"\n    ], \n    \"altruists\": [\n        \"NNS\"\n    ], \n    \"bequests\": [\n        \"NNS\"\n    ], \n    \"surfaces\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Helmut\": [\n        \"NNP\"\n    ], \n    \"extends\": [\n        \"VBZ\"\n    ], \n    \"Beaux\": [\n        \"NNP\"\n    ], \n    \"W.H.\": [\n        \"NNP\"\n    ], \n    \"intimated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Continuum\": [\n        \"NN\"\n    ], \n    \"AFRICAN-AMERICAN\": [\n        \"JJ\"\n    ], \n    \"open-face\": [\n        \"JJ\"\n    ], \n    \"Winston-Salem\": [\n        \"NNP\"\n    ], \n    \"pro-cut\": [\n        \"JJ\"\n    ], \n    \"avant-garde\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rebelliously\": [\n        \"RB\"\n    ], \n    \"reproducibilities\": [\n        \"NNS\"\n    ], \n    \"labor-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"prominent\": [\n        \"JJ\"\n    ], \n    \"Priddy\": [\n        \"NNP\"\n    ], \n    \"alternatively\": [\n        \"RB\"\n    ], \n    \"assault-weapons\": [\n        \"JJ\"\n    ], \n    \"LAMBERT\": [\n        \"NNP\"\n    ], \n    \"head-cold\": [\n        \"NN\"\n    ], \n    \"clarinetist\": [\n        \"NN\"\n    ], \n    \"low-maintenance\": [\n        \"JJ\"\n    ], \n    \"Tranportation\": [\n        \"NNP\"\n    ], \n    \"full-on\": [\n        \"JJ\"\n    ], \n    \"Roxani\": [\n        \"NNP\"\n    ], \n    \"backlog\": [\n        \"NN\"\n    ], \n    \"Wheeling-Pittsburgh\": [\n        \"NNP\"\n    ], \n    \"benzene\": [\n        \"NN\"\n    ], \n    \"drug-infested\": [\n        \"JJ\"\n    ], \n    \"cognate\": [\n        \"JJ\"\n    ], \n    \"ZENITH\": [\n        \"NNP\"\n    ], \n    \"Wagner\": [\n        \"NNP\"\n    ], \n    \"Curragh\": [\n        \"NNP\"\n    ], \n    \"incubus\": [\n        \"NN\"\n    ], \n    \"copra\": [\n        \"NN\"\n    ], \n    \"liking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Shahal\": [\n        \"NNP\"\n    ], \n    \"Larkin\": [\n        \"NNP\"\n    ], \n    \"imitation-caning\": [\n        \"JJ\"\n    ], \n    \"Monsieur\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"sweepingly\": [\n        \"RB\"\n    ], \n    \"Killer\": [\n        \"NNP\"\n    ], \n    \"public-television\": [\n        \"NN\"\n    ], \n    \"ROY\": [\n        \"NNP\"\n    ], \n    \"increasing-rate\": [\n        \"JJ\"\n    ], \n    \"fretted\": [\n        \"VBD\"\n    ], \n    \"computer-and-semiconductor\": [\n        \"JJ\"\n    ], \n    \"over-occupied\": [\n        \"JJ\"\n    ], \n    \"exerpts\": [\n        \"NNS\"\n    ], \n    \"Houston-area\": [\n        \"JJ\"\n    ], \n    \"Measurement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gypsum\": [\n        \"NN\"\n    ], \n    \"processed-meat\": [\n        \"JJ\"\n    ], \n    \"misrepresentation\": [\n        \"NN\"\n    ], \n    \"life-style\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"exacerbation\": [\n        \"NN\"\n    ], \n    \"Soloviev-Sedoi\": [\n        \"NNP\"\n    ], \n    \"sinister\": [\n        \"JJ\"\n    ], \n    \"Ages\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"recognized\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"epitomize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"recognizes\": [\n        \"VBZ\"\n    ], \n    \"Agee\": [\n        \"NNP\"\n    ], \n    \"U.K.-based\": [\n        \"JJ\"\n    ], \n    \"Tobin\": [\n        \"NNP\"\n    ], \n    \"enacts\": [\n        \"VBZ\"\n    ], \n    \"squarefoot\": [\n        \"JJ\"\n    ], \n    \"Democratic-sounding\": [\n        \"JJ\"\n    ], \n    \"congregate\": [\n        \"VB\"\n    ], \n    \"particularistic-seeming\": [\n        \"JJ\"\n    ], \n    \"Dukes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"backups\": [\n        \"NNS\"\n    ], \n    \"lower-priority\": [\n        \"JJ\"\n    ], \n    \"Sarti\": [\n        \"NNP\"\n    ], \n    \"rejoice\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"impatience\": [\n        \"NN\"\n    ], \n    \"Zhang\": [\n        \"NNP\"\n    ], \n    \"mastermind\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"canting\": [\n        \"JJ\"\n    ], \n    \"noticed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Holzman\": [\n        \"NNP\"\n    ], \n    \"vein\": [\n        \"NN\"\n    ], \n    \"notices\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"jinx\": [\n        \"NN\"\n    ], \n    \"unexamined\": [\n        \"JJ\"\n    ], \n    \"hr\": [\n        \"NN\"\n    ], \n    \"mucked\": [\n        \"VBN\"\n    ], \n    \"hp\": [\n        \"NN\"\n    ], \n    \"Edelson\": [\n        \"NNP\"\n    ], \n    \"Navistar\": [\n        \"NNP\"\n    ], \n    \"Drifts\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"escrow\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"prophecies\": [\n        \"NNS\"\n    ], \n    \"hierarchical\": [\n        \"JJ\"\n    ], \n    \"spigots\": [\n        \"NNS\"\n    ], \n    \"ho\": [\n        \"UH\"\n    ], \n    \"overflow\": [\n        \"NN\"\n    ], \n    \"ha\": [\n        \"UH\"\n    ], \n    \"mucker\": [\n        \"NN\"\n    ], \n    \"modifiers\": [\n        \"NNS\"\n    ], \n    \"Appalachian\": [\n        \"NNP\"\n    ], \n    \"Luang\": [\n        \"NNP\"\n    ], \n    \"Rapids\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Merieux\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Resentment\": [\n        \"NN\"\n    ], \n    \"show-offy\": [\n        \"JJ\"\n    ], \n    \"carriage\": [\n        \"NN\"\n    ], \n    \"Gillis\": [\n        \"NNP\"\n    ], \n    \"offstage\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Dodds\": [\n        \"NNP\"\n    ], \n    \"Smirnoff\": [\n        \"NNP\"\n    ], \n    \"twise\": [\n        \"RB\"\n    ], \n    \"affectionate\": [\n        \"JJ\"\n    ], \n    \"redeems\": [\n        \"VBZ\"\n    ], \n    \"Springdale\": [\n        \"NNP\"\n    ], \n    \"urns\": [\n        \"NNS\"\n    ], \n    \"M\\\\*A\\\\*S\\\\*H\": [\n        \"NNP\"\n    ], \n    \"twist\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"anti-semite\": [\n        \"NN\"\n    ], \n    \"lobes\": [\n        \"NNS\"\n    ], \n    \"matricide\": [\n        \"NN\"\n    ], \n    \"Bankers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"vociferously\": [\n        \"RB\"\n    ], \n    \"balcony\": [\n        \"NN\"\n    ], \n    \"discount...\": [\n        \":\"\n    ], \n    \"Shall\": [\n        \"MD\", \n        \"NNP\"\n    ], \n    \"Paynes\": [\n        \"NNPS\"\n    ], \n    \"Byzantium\": [\n        \"NNP\"\n    ], \n    \"Shale\": [\n        \"NNP\"\n    ], \n    \"Fridays\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"crummy\": [\n        \"JJ\"\n    ], \n    \"fledgling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"disposing\": [\n        \"VBG\"\n    ], \n    \"Parichy\": [\n        \"NNP\"\n    ], \n    \"Euroflics\": [\n        \"NNPS\"\n    ], \n    \"expressible\": [\n        \"JJ\"\n    ], \n    \"Rests\": [\n        \"VBZ\"\n    ], \n    \"COKE\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gradations\": [\n        \"NNS\"\n    ], \n    \"insults\": [\n        \"NNS\"\n    ], \n    \"inescapably\": [\n        \"RB\"\n    ], \n    \"handymen\": [\n        \"NNS\"\n    ], \n    \"Oberhausen\": [\n        \"NNP\"\n    ], \n    \"pathways\": [\n        \"NNS\"\n    ], \n    \"precise-sounding\": [\n        \"JJ\"\n    ], \n    \"curbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Andromache\": [\n        \"NNP\"\n    ], \n    \"Avianca\": [\n        \"NNP\"\n    ], \n    \"RTC\": [\n        \"NNP\"\n    ], \n    \"Harken\": [\n        \"NNP\"\n    ], \n    \"Betting\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Georgia-based\": [\n        \"JJ\"\n    ], \n    \"Clairol\": [\n        \"NNP\"\n    ], \n    \"Proposition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"floor-level\": [\n        \"JJ\"\n    ], \n    \"Blendax\": [\n        \"NNP\"\n    ], \n    \"Oncogene\": [\n        \"NNP\"\n    ], \n    \"zillions\": [\n        \"NNS\"\n    ], \n    \"dynamic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Outpatient\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"straws\": [\n        \"NNS\"\n    ], \n    \"mental-health\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"neoplasia\": [\n        \"FW\"\n    ], \n    \"reunion-Halloween\": [\n        \"JJ\"\n    ], \n    \"Hombrecher\": [\n        \"NNP\"\n    ], \n    \"re-establishment\": [\n        \"NN\"\n    ], \n    \"Descendants\": [\n        \"NNS\"\n    ], \n    \"remodeled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Parenthood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"yield-hungry\": [\n        \"JJ\"\n    ], \n    \"Addict\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"executive-only\": [\n        \"JJ\"\n    ], \n    \"nourishes\": [\n        \"VBZ\"\n    ], \n    \"Sulzberger\": [\n        \"NNP\"\n    ], \n    \"Tulane\": [\n        \"NNP\"\n    ], \n    \"downstream\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"desirable\": [\n        \"JJ\"\n    ], \n    \"railways\": [\n        \"NNS\"\n    ], \n    \"flashpoint\": [\n        \"NN\"\n    ], \n    \"Wilks\": [\n        \"NNP\"\n    ], \n    \"entitlements\": [\n        \"NNS\"\n    ], \n    \"nourished\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"reforms\": [\n        \"NNS\"\n    ], \n    \"Wilke\": [\n        \"NNP\"\n    ], \n    \"low-key\": [\n        \"JJ\"\n    ], \n    \"hit-and-miss\": [\n        \"JJ\"\n    ], \n    \"operetta\": [\n        \"NN\"\n    ], \n    \"post-season\": [\n        \"NN\"\n    ], \n    \"molesting\": [\n        \"VBG\"\n    ], \n    \"naturalist\": [\n        \"NN\"\n    ], \n    \"Tillet\": [\n        \"NNP\"\n    ], \n    \"first-term\": [\n        \"JJ\"\n    ], \n    \"companies\": [\n        \"NNS\"\n    ], \n    \"solution\": [\n        \"NN\"\n    ], \n    \"correct\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"LaRiviere\": [\n        \"NNP\"\n    ], \n    \"vector\": [\n        \"NN\"\n    ], \n    \"mopped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"McCanna\": [\n        \"NNP\"\n    ], \n    \"cholesterol\": [\n        \"NN\"\n    ], \n    \"Goering\": [\n        \"NNP\"\n    ], \n    \"RTZ\": [\n        \"NNP\"\n    ], \n    \"reshuffling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"run-on\": [\n        \"NN\"\n    ], \n    \"build-up\": [\n        \"NN\"\n    ], \n    \"Occupation\": [\n        \"NNP\"\n    ], \n    \"worriers\": [\n        \"NNS\"\n    ], \n    \"Joann\": [\n        \"NNP\"\n    ], \n    \"Shupe\": [\n        \"NNP\"\n    ], \n    \"lustre\": [\n        \"NN\"\n    ], \n    \"isocyanate-labeled\": [\n        \"NN\"\n    ], \n    \"form-creating\": [\n        \"JJ\"\n    ], \n    \"gray-backs\": [\n        \"NNS\"\n    ], \n    \"lavender\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"orifices\": [\n        \"NNS\"\n    ], \n    \"anti-smoking\": [\n        \"JJ\"\n    ], \n    \"Poles\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Agreements\": [\n        \"NNS\"\n    ], \n    \"neo\": [\n        \"JJ\"\n    ], \n    \"spouses\": [\n        \"NNS\"\n    ], \n    \"Clemence\": [\n        \"NN\"\n    ], \n    \"chemcial\": [\n        \"JJ\"\n    ], \n    \"shamefacedly\": [\n        \"RB\"\n    ], \n    \"Mosbacher\": [\n        \"NNP\"\n    ], \n    \"Pewabic\": [\n        \"NNP\"\n    ], \n    \"Kinkaid\": [\n        \"NNP\"\n    ], \n    \"Put\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"new\": [\n        \"JJ\"\n    ], \n    \"net\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"harbors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"healthily\": [\n        \"RB\"\n    ], \n    \"unasked\": [\n        \"JJ\"\n    ], \n    \"screams\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"filbert\": [\n        \"JJ\"\n    ], \n    \"Burbank\": [\n        \"NNP\"\n    ], \n    \"Federated\": [\n        \"NNP\"\n    ], \n    \"price-cutting\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"interpret\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"remittances\": [\n        \"NNS\"\n    ], \n    \"Sharecropping\": [\n        \"NN\"\n    ], \n    \"three-piece\": [\n        \"JJ\"\n    ], \n    \"Correction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"piroghi\": [\n        \"NNS\"\n    ], \n    \"floorboards\": [\n        \"NNS\"\n    ], \n    \"speeded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"seed-pods\": [\n        \"NNS\"\n    ], \n    \"adolescents\": [\n        \"NNS\"\n    ], \n    \"reschedulable\": [\n        \"JJ\"\n    ], \n    \"Claus\": [\n        \"NNP\"\n    ], \n    \"Privacy\": [\n        \"NN\"\n    ], \n    \"revenue-raising\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"possessing\": [\n        \"VBG\"\n    ], \n    \"Bennett-Bloom\": [\n        \"NNP\"\n    ], \n    \"spurted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Methanol\": [\n        \"NN\"\n    ], \n    \"busses\": [\n        \"NNS\"\n    ], \n    \"carinii\": [\n        \"NN\"\n    ], \n    \"Romain\": [\n        \"NNP\"\n    ], \n    \"counts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Offshore\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"workday\": [\n        \"NN\"\n    ], \n    \"self-administration\": [\n        \"NN\"\n    ], \n    \"chest-swelling\": [\n        \"JJ\"\n    ], \n    \"ratty\": [\n        \"JJ\"\n    ], \n    \"Subpoenas\": [\n        \"NNS\"\n    ], \n    \"Wilkins\": [\n        \"NNP\"\n    ], \n    \"IRS-HHS\": [\n        \"JJ\"\n    ], \n    \"recommend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"N.J.\": [\n        \"NNP\"\n    ], \n    \"Johanna\": [\n        \"NNP\"\n    ], \n    \"gilding\": [\n        \"NN\"\n    ], \n    \"type\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"made-up\": [\n        \"JJ\"\n    ], \n    \"Trent\": [\n        \"NNP\"\n    ], \n    \"Manet\": [\n        \"NNP\"\n    ], \n    \"churchyard\": [\n        \"NN\"\n    ], \n    \"posting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Raitt\": [\n        \"NNP\"\n    ], \n    \"DiMaggio\": [\n        \"NNP\"\n    ], \n    \"shoulder-high\": [\n        \"JJ\"\n    ], \n    \"surrealistic\": [\n        \"JJ\"\n    ], \n    \"hotel-management\": [\n        \"NN\"\n    ], \n    \"rimless\": [\n        \"JJ\"\n    ], \n    \"Nordic\": [\n        \"JJ\"\n    ], \n    \"trend-setter\": [\n        \"NN\"\n    ], \n    \"glottochronology\": [\n        \"NN\"\n    ], \n    \"McKim\": [\n        \"NNP\"\n    ], \n    \"sped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bombardier\": [\n        \"NNP\"\n    ], \n    \"Eiji\": [\n        \"NNP\"\n    ], \n    \"freemail\": [\n        \"NN\"\n    ], \n    \"credulousness\": [\n        \"NN\"\n    ], \n    \"sizzled\": [\n        \"VBD\"\n    ], \n    \"suggestive\": [\n        \"JJ\"\n    ], \n    \"Petrini\": [\n        \"NNP\"\n    ], \n    \"ONEZIE\": [\n        \"NNP\"\n    ], \n    \"sizzles\": [\n        \"VBZ\"\n    ], \n    \"Montvale\": [\n        \"NNP\"\n    ], \n    \"better-selling\": [\n        \"JJ\"\n    ], \n    \"stagnated\": [\n        \"VBD\"\n    ], \n    \"blips\": [\n        \"NNS\"\n    ], \n    \"keratitis\": [\n        \"NN\"\n    ], \n    \"assent\": [\n        \"NN\"\n    ], \n    \"Keynesians\": [\n        \"NNPS\"\n    ], \n    \"babbiting\": [\n        \"NN\"\n    ], \n    \"Illustrations\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"counterespionage\": [\n        \"NN\"\n    ], \n    \"freescrip\": [\n        \"NN\"\n    ], \n    \"Tillie\": [\n        \"NNP\"\n    ], \n    \"Tankers\": [\n        \"NNS\"\n    ], \n    \"Habeas\": [\n        \"FW\"\n    ], \n    \"Edmond\": [\n        \"NNP\"\n    ], \n    \"CBS-TV\": [\n        \"NNP\"\n    ], \n    \"globalization\": [\n        \"NN\"\n    ], \n    \"Chimie\": [\n        \"NNP\"\n    ], \n    \"EEOC\": [\n        \"NNP\"\n    ], \n    \"poltically\": [\n        \"RB\"\n    ], \n    \"Laurance\": [\n        \"NNP\"\n    ], \n    \"McGhie\": [\n        \"NNP\"\n    ], \n    \"skindive\": [\n        \"VB\"\n    ], \n    \"reconciled\": [\n        \"VBN\"\n    ], \n    \"Rill\": [\n        \"NNP\"\n    ], \n    \"Howell\": [\n        \"NNP\"\n    ], \n    \"sickroom\": [\n        \"NN\"\n    ], \n    \"Ebensburg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reconciles\": [\n        \"VBZ\"\n    ], \n    \"national-treasure\": [\n        \"JJ\"\n    ], \n    \"loyalists\": [\n        \"NNS\"\n    ], \n    \"ablation\": [\n        \"NN\"\n    ], \n    \"Regius\": [\n        \"NNP\"\n    ], \n    \"riffing\": [\n        \"VBG\"\n    ], \n    \"Werther\": [\n        \"NNP\"\n    ], \n    \"Loughman\": [\n        \"NNP\"\n    ], \n    \"citrated\": [\n        \"VBN\"\n    ], \n    \"Fialkow\": [\n        \"NNP\"\n    ], \n    \"pianos\": [\n        \"NNS\"\n    ], \n    \"ensnare\": [\n        \"VB\"\n    ], \n    \"Brook\": [\n        \"NNP\"\n    ], \n    \"Comprecin\": [\n        \"NNP\"\n    ], \n    \"Laurence\": [\n        \"NNP\"\n    ], \n    \"Simonds\": [\n        \"NNP\"\n    ], \n    \"keyboard\": [\n        \"NN\"\n    ], \n    \"toady\": [\n        \"NN\"\n    ], \n    \"Hitlers\": [\n        \"NNPS\"\n    ], \n    \"one-quarter\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fun-loving\": [\n        \"JJ\"\n    ], \n    \"Anti-Semitic\": [\n        \"JJ\"\n    ], \n    \"Helen\": [\n        \"NNP\"\n    ], \n    \"surcharges\": [\n        \"NNS\"\n    ], \n    \"Pamour\": [\n        \"NNP\"\n    ], \n    \"Vidal\": [\n        \"NNP\"\n    ], \n    \"ghouls\": [\n        \"NNS\"\n    ], \n    \"Oxy\": [\n        \"NNP\"\n    ], \n    \"sterilization\": [\n        \"NN\"\n    ], \n    \"Alternatively\": [\n        \"RB\"\n    ], \n    \"price-to-earnings\": [\n        \"JJ\"\n    ], \n    \"academics\": [\n        \"NNS\"\n    ], \n    \"bankroll\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Battelle\": [\n        \"NNP\"\n    ], \n    \"aborted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"indulge\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Toros\": [\n        \"NNP\"\n    ], \n    \"cashflow\": [\n        \"NN\"\n    ], \n    \"high-capacity\": [\n        \"JJ\"\n    ], \n    \"rhetoric\": [\n        \"NN\"\n    ], \n    \"pollution-control\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Economists\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"palm-fringed\": [\n        \"JJ\"\n    ], \n    \"tracery\": [\n        \"NN\"\n    ], \n    \"Cariaga\": [\n        \"NNP\"\n    ], \n    \"musicians\": [\n        \"NNS\"\n    ], \n    \"Pettigrew\": [\n        \"NNP\"\n    ], \n    \"faraway\": [\n        \"JJ\"\n    ], \n    \"non-violently\": [\n        \"RB\"\n    ], \n    \"prerequisite\": [\n        \"NN\"\n    ], \n    \"Dataquest\": [\n        \"NNP\"\n    ], \n    \"acoustic\": [\n        \"JJ\"\n    ], \n    \"calibrations\": [\n        \"NNS\"\n    ], \n    \"interruption\": [\n        \"NN\"\n    ], \n    \"interministerial\": [\n        \"JJ\"\n    ], \n    \"sonatas\": [\n        \"NNS\"\n    ], \n    \"Couve\": [\n        \"NNP\"\n    ], \n    \"Police-man\": [\n        \"NNP\"\n    ], \n    \"Glasnost\": [\n        \"FW\"\n    ], \n    \"all-American-boy\": [\n        \"NN\"\n    ], \n    \"escrowed\": [\n        \"VBN\"\n    ], \n    \"caustic\": [\n        \"JJ\"\n    ], \n    \"exigencies\": [\n        \"NNS\"\n    ], \n    \"dawn\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"publically\": [\n        \"RB\"\n    ], \n    \"collector\": [\n        \"NN\"\n    ], \n    \"Dorsch\": [\n        \"NNP\"\n    ], \n    \"Goodwin\": [\n        \"NNP\"\n    ], \n    \"Litigants\": [\n        \"NNS\"\n    ], \n    \"ever-expanding\": [\n        \"JJ\"\n    ], \n    \"Expansion\": [\n        \"NN\"\n    ], \n    \"adhesion\": [\n        \"NN\"\n    ], \n    \"unromantic\": [\n        \"JJ\"\n    ], \n    \"surprise\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"school-desegregation\": [\n        \"NN\"\n    ], \n    \"sluggish\": [\n        \"JJ\"\n    ], \n    \"rock-steady\": [\n        \"NN\"\n    ], \n    \"thirty-mile\": [\n        \"JJ\"\n    ], \n    \"Antitrust\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hangers-on\": [\n        \"NNS\"\n    ], \n    \"telescoped\": [\n        \"VBN\"\n    ], \n    \"revenge\": [\n        \"NN\"\n    ], \n    \"Watertown\": [\n        \"NNP\"\n    ], \n    \"bestow\": [\n        \"VB\"\n    ], \n    \"cement\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Planes\": [\n        \"NNS\"\n    ], \n    \"telescopes\": [\n        \"NNS\"\n    ], \n    \"Sarmi\": [\n        \"NNP\"\n    ], \n    \"Criticism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"aisle\": [\n        \"NN\"\n    ], \n    \"Lucien\": [\n        \"NNP\"\n    ], \n    \"Gumpel\": [\n        \"NNP\"\n    ], \n    \"red-rimmed\": [\n        \"JJ\"\n    ], \n    \"messages\": [\n        \"NNS\"\n    ], \n    \"wry-faced\": [\n        \"JJ\"\n    ], \n    \"Ukrainians\": [\n        \"NNPS\"\n    ], \n    \"Sandinistas\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"liquids\": [\n        \"NNS\"\n    ], \n    \"diggers\": [\n        \"NNS\"\n    ], \n    \"Bowlers\": [\n        \"NNPS\"\n    ], \n    \"second-guessing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"enrollees\": [\n        \"NNS\"\n    ], \n    \"playwright\": [\n        \"NN\"\n    ], \n    \"economists\": [\n        \"NNS\"\n    ], \n    \"Stadiums\": [\n        \"NNS\"\n    ], \n    \"workingmen\": [\n        \"NNS\"\n    ], \n    \"Frondel\": [\n        \"NNP\"\n    ], \n    \"Lincoln-Mercury\": [\n        \"NNP\"\n    ], \n    \"BroadBeach\": [\n        \"NNP\"\n    ], \n    \"synthesize\": [\n        \"VB\"\n    ], \n    \"Wainwright\": [\n        \"NNP\"\n    ], \n    \"Morarji\": [\n        \"NNP\"\n    ], \n    \"NASA-Air\": [\n        \"NNP\"\n    ], \n    \"property-management\": [\n        \"NN\"\n    ], \n    \"neutralization\": [\n        \"NN\"\n    ], \n    \"girls\": [\n        \"NNS\"\n    ], \n    \"interlude\": [\n        \"NN\"\n    ], \n    \"Claude\": [\n        \"NNP\"\n    ], \n    \"overstating\": [\n        \"VBG\"\n    ], \n    \"non-drug\": [\n        \"JJ\"\n    ], \n    \"monicker\": [\n        \"JJR\"\n    ], \n    \"Valium\": [\n        \"NNP\"\n    ], \n    \"exposures\": [\n        \"NNS\"\n    ], \n    \"dilated\": [\n        \"VBN\"\n    ], \n    \"Boucher\": [\n        \"NNP\"\n    ], \n    \"escort\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dramatized\": [\n        \"VBN\"\n    ], \n    \"Corners\": [\n        \"NNPS\"\n    ], \n    \"villager\": [\n        \"NN\"\n    ], \n    \"Mid-State\": [\n        \"NNP\"\n    ], \n    \"objecting\": [\n        \"VBG\"\n    ], \n    \"dramatizes\": [\n        \"VBZ\"\n    ], \n    \"Discs\": [\n        \"NNP\"\n    ], \n    \"No.3\": [\n        \"JJ\"\n    ], \n    \"dilates\": [\n        \"VBZ\"\n    ], \n    \"stocking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"firehouses\": [\n        \"NNS\"\n    ], \n    \"soonest\": [\n        \"JJS\"\n    ], \n    \"legalize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Gifford\": [\n        \"NNP\"\n    ], \n    \"N.M.\": [\n        \"NNP\"\n    ], \n    \"threadbare\": [\n        \"JJ\"\n    ], \n    \"bidder\": [\n        \"NN\"\n    ], \n    \"thills\": [\n        \"NNS\"\n    ], \n    \"coltish\": [\n        \"JJ\"\n    ], \n    \"Heumann\": [\n        \"NNP\"\n    ], \n    \"steelmaker\": [\n        \"NN\"\n    ], \n    \"fluoropolymer\": [\n        \"NN\"\n    ], \n    \"extorting\": [\n        \"VBG\"\n    ], \n    \"seamstress\": [\n        \"NN\"\n    ], \n    \"Roleplaying\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"alibi\": [\n        \"NN\"\n    ], \n    \"Canaveral\": [\n        \"NNP\"\n    ], \n    \"Compiegne\": [\n        \"NNP\"\n    ], \n    \"impotent\": [\n        \"JJ\"\n    ], \n    \"fishing-boat\": [\n        \"NN\"\n    ], \n    \"niece\": [\n        \"NN\"\n    ], \n    \"hebephrenic\": [\n        \"JJ\"\n    ], \n    \"sneered\": [\n        \"VBD\"\n    ], \n    \"Kakuei\": [\n        \"NNP\"\n    ], \n    \"Algerian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Refunds\": [\n        \"NNS\"\n    ], \n    \"buggies\": [\n        \"NNS\"\n    ], \n    \"Trotter\": [\n        \"NNP\"\n    ], \n    \"cassettes\": [\n        \"NNS\"\n    ], \n    \"Comex\": [\n        \"NNP\"\n    ], \n    \"Comet\": [\n        \"NNP\"\n    ], \n    \"Lalaurie\": [\n        \"NNP\"\n    ], \n    \"exonerate\": [\n        \"VB\"\n    ], \n    \"Comer\": [\n        \"NNP\"\n    ], \n    \"Bakhtiari\": [\n        \"NNP\"\n    ], \n    \"pointe\": [\n        \"FW\"\n    ], \n    \"W-2s\": [\n        \"NNS\"\n    ], \n    \"medical\": [\n        \"JJ\"\n    ], \n    \"impudently\": [\n        \"RB\"\n    ], \n    \"Philippine\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"unmated\": [\n        \"VBN\"\n    ], \n    \"Diaghilev\": [\n        \"NNP\"\n    ], \n    \"digress\": [\n        \"VB\"\n    ], \n    \"points\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"falconers\": [\n        \"NNS\"\n    ], \n    \"paterollers\": [\n        \"NNS\"\n    ], \n    \"pointy\": [\n        \"JJ\"\n    ], \n    \"doves\": [\n        \"NNS\"\n    ], \n    \"discontent\": [\n        \"NN\"\n    ], \n    \"MINORITY\": [\n        \"NN\"\n    ], \n    \"Gold-oriented\": [\n        \"JJ\"\n    ], \n    \"rapture\": [\n        \"NN\"\n    ], \n    \"incoherently\": [\n        \"RB\"\n    ], \n    \"Samson\": [\n        \"NNP\"\n    ], \n    \"well-publicized\": [\n        \"JJ\"\n    ], \n    \"thirds\": [\n        \"NNS\"\n    ], \n    \"wide-shouldered\": [\n        \"JJ\"\n    ], \n    \"judges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Byelorussia\": [\n        \"NNP\"\n    ], \n    \"Angellism\": [\n        \"NNP\"\n    ], \n    \"undoubtedly\": [\n        \"RB\"\n    ], \n    \"insecticides\": [\n        \"NNS\"\n    ], \n    \"Visual\": [\n        \"JJ\"\n    ], \n    \"judged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"palisades\": [\n        \"NNS\"\n    ], \n    \"Prexy\": [\n        \"NNP\"\n    ], \n    \"Greedily\": [\n        \"RB\"\n    ], \n    \"Explosions\": [\n        \"NNS\"\n    ], \n    \"Pembroke\": [\n        \"NNP\"\n    ], \n    \"third*\": [\n        \"JJS\"\n    ], \n    \"Sperandeo\": [\n        \"NNP\"\n    ], \n    \"seventy-odd\": [\n        \"JJ\"\n    ], \n    \"super-fast\": [\n        \"JJ\"\n    ], \n    \"smug\": [\n        \"JJ\"\n    ], \n    \"Organization\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Palestinians\": [\n        \"NNPS\"\n    ], \n    \"autonavigator\": [\n        \"NN\"\n    ], \n    \"Johnstone\": [\n        \"NNP\"\n    ], \n    \"out...\": [\n        \":\"\n    ], \n    \"fields\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"repealing\": [\n        \"VBG\"\n    ], \n    \"Miraflores\": [\n        \"NNP\"\n    ], \n    \"Anatoly\": [\n        \"NNP\"\n    ], \n    \"Anatole\": [\n        \"NNP\"\n    ], \n    \"Sacre\": [\n        \"NNP\"\n    ], \n    \"linguist\": [\n        \"NN\"\n    ], \n    \"attest\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Bello\": [\n        \"NNP\"\n    ], \n    \"Sogo\": [\n        \"NNP\"\n    ], \n    \"Belli\": [\n        \"NNP\"\n    ], \n    \"zoned\": [\n        \"VBN\"\n    ], \n    \"Belle\": [\n        \"NNP\"\n    ], \n    \"Bella\": [\n        \"NNP\"\n    ], \n    \"contract-drilling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"zones\": [\n        \"NNS\"\n    ], \n    \"Debbie\": [\n        \"NNP\"\n    ], \n    \"Patrimony\": [\n        \"NNP\"\n    ], \n    \"Butler\": [\n        \"NNP\"\n    ], \n    \"Rexinger\": [\n        \"NNP\"\n    ], \n    \"Macropathological\": [\n        \"NNP\"\n    ], \n    \"hydrocarbon\": [\n        \"NN\"\n    ], \n    \"Bells\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"pebbles\": [\n        \"NNS\"\n    ], \n    \"Bearman\": [\n        \"NNP\"\n    ], \n    \"Biology\": [\n        \"NNP\"\n    ], \n    \"Run\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Rum\": [\n        \"NNP\"\n    ], \n    \"scrap\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Hassenfelt\": [\n        \"NNP\"\n    ], \n    \"Petro-Canada\": [\n        \"NNP\"\n    ], \n    \"prince\": [\n        \"NN\"\n    ], \n    \"Rus\": [\n        \"NNP\"\n    ], \n    \"sorts\": [\n        \"NNS\"\n    ], \n    \"drug-sensing\": [\n        \"JJ\"\n    ], \n    \"RULING\": [\n        \"NN\"\n    ], \n    \"Leverage\": [\n        \"NN\"\n    ], \n    \"pyrophosphate\": [\n        \"NN\"\n    ], \n    \"Toshimitsu\": [\n        \"NNP\"\n    ], \n    \"dumber\": [\n        \"JJR\"\n    ], \n    \"sulfur-dioxide\": [\n        \"NN\"\n    ], \n    \"laureates\": [\n        \"NNS\"\n    ], \n    \"virtuosity\": [\n        \"NN\"\n    ], \n    \"G.W.\": [\n        \"NNP\"\n    ], \n    \"wedge-shaped\": [\n        \"JJ\"\n    ], \n    \"carnivorous\": [\n        \"JJ\"\n    ], \n    \"uncreative\": [\n        \"JJ\"\n    ], \n    \"excavate\": [\n        \"VB\"\n    ], \n    \"father-confessor\": [\n        \"NN\"\n    ], \n    \"earthquake-stricken\": [\n        \"JJ\"\n    ], \n    \"unusally\": [\n        \"RB\"\n    ], \n    \"Moreton\": [\n        \"NNP\"\n    ], \n    \"opportunities\": [\n        \"NNS\"\n    ], \n    \"MARCHED\": [\n        \"VBD\"\n    ], \n    \"Brush\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Amerada\": [\n        \"NNP\"\n    ], \n    \"Mayhap\": [\n        \"RB\"\n    ], \n    \"gaming-card\": [\n        \"NN\"\n    ], \n    \"vex\": [\n        \"VBP\"\n    ], \n    \"Machinery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mc.\": [\n        \"NN\"\n    ], \n    \"tightest-fitting\": [\n        \"JJS\"\n    ], \n    \"Cuyahoga\": [\n        \"NNP\"\n    ], \n    \"Petroleum\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"whisper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"ballparks\": [\n        \"NNS\"\n    ], \n    \"BULL\": [\n        \"NNP\"\n    ], \n    \"springs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"speedily\": [\n        \"RB\"\n    ], \n    \"Papermate\": [\n        \"NNP\"\n    ], \n    \"easy-to-spot\": [\n        \"JJ\"\n    ], \n    \"play-girl\": [\n        \"NN\"\n    ], \n    \"brassy\": [\n        \"JJ\"\n    ], \n    \"Claimants\": [\n        \"NNPS\"\n    ], \n    \"proceeded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"eradication\": [\n        \"NN\"\n    ], \n    \"missile-engineering\": [\n        \"JJ\"\n    ], \n    \"formalizes\": [\n        \"VBZ\"\n    ], \n    \"cuttings\": [\n        \"NNS\"\n    ], \n    \"glamorized\": [\n        \"VBN\"\n    ], \n    \"fog-enshrouded\": [\n        \"JJ\"\n    ], \n    \"taxi-ways\": [\n        \"NNS\"\n    ], \n    \"Ratcliffe\": [\n        \"NNP\"\n    ], \n    \"X-ray\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sentencing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Wyckoff\": [\n        \"NNP\"\n    ], \n    \"formalized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Sandhills\": [\n        \"NNP\"\n    ], \n    \"non-Communist\": [\n        \"JJ\"\n    ], \n    \"Georgia\": [\n        \"NNP\"\n    ], \n    \"Hands\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"re-runs\": [\n        \"NNS\"\n    ], \n    \"crane-safety\": [\n        \"NN\"\n    ], \n    \"crew-rest\": [\n        \"NN\"\n    ], \n    \"strictures\": [\n        \"NNS\"\n    ], \n    \"Yang\": [\n        \"NNP\"\n    ], \n    \"Lars-Erik\": [\n        \"NNP\"\n    ], \n    \"Chappell\": [\n        \"NNP\"\n    ], \n    \"egg-breaking\": [\n        \"NN\"\n    ], \n    \"demobilizing\": [\n        \"VBG\"\n    ], \n    \"exception\": [\n        \"NN\"\n    ], \n    \"shovels\": [\n        \"NNS\"\n    ], \n    \"tank\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"oboist\": [\n        \"NN\"\n    ], \n    \"Turkmenia\": [\n        \"NNP\"\n    ], \n    \"homebound\": [\n        \"JJ\"\n    ], \n    \"lizard\": [\n        \"NN\"\n    ], \n    \"finder\": [\n        \"NN\"\n    ], \n    \"tans\": [\n        \"NNS\"\n    ], \n    \"chilling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Corrigan\": [\n        \"NNP\"\n    ], \n    \"metropolitan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Thompson-CSF\": [\n        \"NNP\"\n    ], \n    \"semper\": [\n        \"FW\"\n    ], \n    \"alternative-fueled\": [\n        \"JJ\"\n    ], \n    \"encamped\": [\n        \"VBN\"\n    ], \n    \"Lyme\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sequined\": [\n        \"JJ\"\n    ], \n    \"shame\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Southdown\": [\n        \"NNP\"\n    ], \n    \"hardscrabble\": [\n        \"JJ\"\n    ], \n    \"Jenks\": [\n        \"NNP\"\n    ], \n    \"clinging\": [\n        \"VBG\"\n    ], \n    \"anastomosis\": [\n        \"NN\"\n    ], \n    \"pathfinder\": [\n        \"NN\"\n    ], \n    \"Gear\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cools\": [\n        \"VBZ\"\n    ], \n    \"Tornado\": [\n        \"NNP\"\n    ], \n    \"non-Indian\": [\n        \"JJ\"\n    ], \n    \"away-from-home\": [\n        \"JJ\"\n    ], \n    \"sidelined\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"cooly\": [\n        \"RB\"\n    ], \n    \"forklifts\": [\n        \"NNS\"\n    ], \n    \"chin-wagging\": [\n        \"JJ\"\n    ], \n    \"sidelines\": [\n        \"NNS\"\n    ], \n    \"IMF-approved\": [\n        \"JJ\"\n    ], \n    \"Stalinism\": [\n        \"NNP\"\n    ], \n    \"discriminatory\": [\n        \"JJ\"\n    ], \n    \"Framingham\": [\n        \"NNP\"\n    ], \n    \"blandly\": [\n        \"RB\"\n    ], \n    \"Faust\": [\n        \"NNP\"\n    ], \n    \"jealous\": [\n        \"JJ\"\n    ], \n    \"technology-transfer\": [\n        \"NN\"\n    ], \n    \"Builders\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Kerich\": [\n        \"NNP\"\n    ], \n    \"romp\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"near-absence\": [\n        \"NN\"\n    ], \n    \"unemotional\": [\n        \"JJ\"\n    ], \n    \"Duration\": [\n        \"NN\"\n    ], \n    \"Bantus\": [\n        \"NNPS\"\n    ], \n    \"SunTrust\": [\n        \"NNP\"\n    ], \n    \"entanglements\": [\n        \"NNS\"\n    ], \n    \"De\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"clemency\": [\n        \"NN\"\n    ], \n    \"Kaitaia\": [\n        \"NNP\"\n    ], \n    \"Defamation\": [\n        \"NNP\"\n    ], \n    \"rebellions\": [\n        \"NNS\"\n    ], \n    \"Kohut\": [\n        \"NNP\"\n    ], \n    \"Raich\": [\n        \"NNP\"\n    ], \n    \"Leadbetter\": [\n        \"NNP\"\n    ], \n    \"new-styled\": [\n        \"JJ\"\n    ], \n    \"biggest-selling\": [\n        \"JJ\"\n    ], \n    \"Unhappily\": [\n        \"RB\"\n    ], \n    \"balletic\": [\n        \"JJ\"\n    ], \n    \"catalytic\": [\n        \"JJ\"\n    ], \n    \"satisfactions\": [\n        \"NNS\"\n    ], \n    \"low-to-no-fat\": [\n        \"JJ\"\n    ], \n    \"Weak\": [\n        \"JJ\"\n    ], \n    \"more-pressing\": [\n        \"JJ\"\n    ], \n    \"greensward\": [\n        \"NN\"\n    ], \n    \"Wear\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Chancery\": [\n        \"NNP\"\n    ], \n    \"designate\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"opt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ligget\": [\n        \"NNP\"\n    ], \n    \"unfitting\": [\n        \"JJ\"\n    ], \n    \"ducts\": [\n        \"NNS\"\n    ], \n    \"recession-oriented\": [\n        \"JJ\"\n    ], \n    \"depicts\": [\n        \"VBZ\"\n    ], \n    \"Onegin\": [\n        \"NNP\"\n    ], \n    \"dogcatcher\": [\n        \"NN\"\n    ], \n    \"technology-related\": [\n        \"JJ\"\n    ], \n    \"money-making\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Barker\": [\n        \"NNP\"\n    ], \n    \"banshee\": [\n        \"NN\"\n    ], \n    \"Brawls\": [\n        \"NNS\"\n    ], \n    \"Keihin\": [\n        \"NNP\"\n    ], \n    \"Anglo-Protestant\": [\n        \"JJ\"\n    ], \n    \"Acourse\": [\n        \"NN\"\n    ], \n    \"over-optimistic\": [\n        \"JJ\"\n    ], \n    \"curtness\": [\n        \"NN\"\n    ], \n    \"indium\": [\n        \"NN\"\n    ], \n    \"post-hurricane\": [\n        \"JJ\"\n    ], \n    \"working-class\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"assimilating\": [\n        \"VBG\"\n    ], \n    \"Chevrolet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"poolside\": [\n        \"NN\"\n    ], \n    \"swab\": [\n        \"VB\"\n    ], \n    \"meekest\": [\n        \"JJS\"\n    ], \n    \"W.Va\": [\n        \"NNP\"\n    ], \n    \"sprawl\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Pay-Per-View\": [\n        \"NNP\"\n    ], \n    \"total\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"tracked\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"undisturbed\": [\n        \"JJ\"\n    ], \n    \"Nobody\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"oleophobic\": [\n        \"JJ\"\n    ], \n    \"Soucy\": [\n        \"NNP\"\n    ], \n    \"councilor\": [\n        \"NN\"\n    ], \n    \"flounder\": [\n        \"VB\"\n    ], \n    \"beget\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Souci\": [\n        \"NNP\"\n    ], \n    \"backhoe\": [\n        \"NN\"\n    ], \n    \"Dunne\": [\n        \"NNP\"\n    ], \n    \"pupates\": [\n        \"VBZ\"\n    ], \n    \"unwholesome\": [\n        \"JJ\"\n    ], \n    \"jester\": [\n        \"NN\"\n    ], \n    \"managament\": [\n        \"NN\"\n    ], \n    \"divining\": [\n        \"VBG\"\n    ], \n    \"Rodeo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"land-idling\": [\n        \"JJ\"\n    ], \n    \"far-ranging\": [\n        \"JJ\"\n    ], \n    \"astir\": [\n        \"JJ\"\n    ], \n    \"denuded\": [\n        \"VBN\"\n    ], \n    \"DECstation\": [\n        \"NNP\"\n    ], \n    \"Motorcars\": [\n        \"NNPS\"\n    ], \n    \"Cheat\": [\n        \"NNP\"\n    ], \n    \"Innesfree\": [\n        \"NNP\"\n    ], \n    \"metrical\": [\n        \"JJ\"\n    ], \n    \"Cheap\": [\n        \"JJ\"\n    ], \n    \"Austria\": [\n        \"NNP\"\n    ], \n    \"office-products\": [\n        \"NNS\"\n    ], \n    \"craftsman\": [\n        \"NN\"\n    ], \n    \"azure\": [\n        \"JJ\"\n    ], \n    \"islands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Deity\": [\n        \"NN\"\n    ], \n    \"boors\": [\n        \"NNS\"\n    ], \n    \"long-canceled\": [\n        \"JJ\"\n    ], \n    \"nerve\": [\n        \"NN\"\n    ], \n    \"gloss\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"castanets\": [\n        \"NNS\"\n    ], \n    \"SUN\": [\n        \"NNP\"\n    ], \n    \"tract\": [\n        \"NN\"\n    ], \n    \"odd-looking\": [\n        \"JJ\"\n    ], \n    \"rearview\": [\n        \"NN\"\n    ], \n    \"Gruberova\": [\n        \"NNP\"\n    ], \n    \"containable\": [\n        \"JJ\"\n    ], \n    \"Draft\": [\n        \"NNP\"\n    ], \n    \"Guigal\": [\n        \"NNP\"\n    ], \n    \"supremely\": [\n        \"RB\"\n    ], \n    \"rant\": [\n        \"VBP\"\n    ], \n    \"soft-shoe\": [\n        \"JJ\"\n    ], \n    \"unseal\": [\n        \"VB\"\n    ], \n    \"Feng-hsiung\": [\n        \"NNP\"\n    ], \n    \"host-specific\": [\n        \"JJ\"\n    ], \n    \"Paschi\": [\n        \"NNP\"\n    ], \n    \"not-too-distant\": [\n        \"JJ\"\n    ], \n    \"Bebey\": [\n        \"NNP\"\n    ], \n    \"Brockman\": [\n        \"NNP\"\n    ], \n    \"Fortman\": [\n        \"NNP\"\n    ], \n    \"unseat\": [\n        \"VB\"\n    ], \n    \"fork\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Rte.\": [\n        \"NNP\"\n    ], \n    \"dogmatism\": [\n        \"NN\"\n    ], \n    \"form\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Assume\": [\n        \"VB\"\n    ], \n    \"sweatsuit\": [\n        \"NN\"\n    ], \n    \"year-long\": [\n        \"JJ\"\n    ], \n    \"Eighty-seventh\": [\n        \"NNP\"\n    ], \n    \"Carmack\": [\n        \"NNP\"\n    ], \n    \"fore\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"penned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"syndicate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Biochemical\": [\n        \"NNP\"\n    ], \n    \"Felec\": [\n        \"NNP\"\n    ], \n    \"Chatha\": [\n        \"NNP\"\n    ], \n    \"Joon\": [\n        \"NNP\"\n    ], \n    \"fort\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Maguires\": [\n        \"NNPS\"\n    ], \n    \"pavilion\": [\n        \"NN\"\n    ], \n    \"tempeh\": [\n        \"NN\"\n    ], \n    \"dollops\": [\n        \"NNS\"\n    ], \n    \"occupancies\": [\n        \"NNS\"\n    ], \n    \"cosmos\": [\n        \"NN\"\n    ], \n    \"DeGroot\": [\n        \"NNP\"\n    ], \n    \"temper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"delete\": [\n        \"VB\"\n    ], \n    \"shin\": [\n        \"NN\"\n    ], \n    \"Publishing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"exerting\": [\n        \"VBG\"\n    ], \n    \"shim\": [\n        \"VB\"\n    ], \n    \"Kell\": [\n        \"NNP\"\n    ], \n    \"Romanian\": [\n        \"JJ\"\n    ], \n    \"Walbridge\": [\n        \"NNP\"\n    ], \n    \"Forebearing\": [\n        \"NNP\"\n    ], \n    \"revitalize\": [\n        \"VB\"\n    ], \n    \"ship\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"pernicious\": [\n        \"JJ\"\n    ], \n    \"shit\": [\n        \"NN\"\n    ], \n    \"Tipasa\": [\n        \"NNP\"\n    ], \n    \"Starch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"far-away\": [\n        \"JJ\"\n    ], \n    \"butadiene-emulsions\": [\n        \"NNS\"\n    ], \n    \"venison\": [\n        \"NN\"\n    ], \n    \"Stennis\": [\n        \"NNP\"\n    ], \n    \"digital\": [\n        \"JJ\"\n    ], \n    \"Paget\": [\n        \"NNP\"\n    ], \n    \"hangin\": [\n        \"VBG\"\n    ], \n    \"Pages\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"exporter\": [\n        \"NN\"\n    ], \n    \"alleviates\": [\n        \"VBZ\"\n    ], \n    \"Chemex\": [\n        \"NNP\"\n    ], \n    \"Vous\": [\n        \"FW\"\n    ], \n    \"coning\": [\n        \"NN\"\n    ], \n    \"felt\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ammonium\": [\n        \"NN\"\n    ], \n    \"fell\": [\n        \"VBD\", \n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"paraoxon\": [\n        \"NN\"\n    ], \n    \"exported\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"authorities\": [\n        \"NNS\"\n    ], \n    \"Hund\": [\n        \"FW\"\n    ], \n    \"Moravcsik\": [\n        \"NNP\"\n    ], \n    \"Eastchester\": [\n        \"NNP\"\n    ], \n    \"blushing\": [\n        \"VBG\"\n    ], \n    \"Devitt\": [\n        \"NNP\"\n    ], \n    \"Second\": [\n        \"JJ\", \n        \"LS\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"month-to-month\": [\n        \"JJ\"\n    ], \n    \"Throat\": [\n        \"NNP\"\n    ], \n    \"Black-and-white\": [\n        \"JJ\"\n    ], \n    \"gay-bashing\": [\n        \"JJ\"\n    ], \n    \"aftertax\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"woodwork\": [\n        \"NN\"\n    ], \n    \"precipices\": [\n        \"NNS\"\n    ], \n    \"primed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Minwax\": [\n        \"NNP\"\n    ], \n    \"Torrio-Capone\": [\n        \"JJ\"\n    ], \n    \"Susumu\": [\n        \"NNP\"\n    ], \n    \"primes\": [\n        \"NNS\"\n    ], \n    \"medium-haul\": [\n        \"JJ\"\n    ], \n    \"targeted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Nederlanden\": [\n        \"NNP\"\n    ], \n    \"Hitler\": [\n        \"NNP\", \n        \"NN\", \n        \"JJR\"\n    ], \n    \"misread\": [\n        \"VBD\"\n    ], \n    \"U.LLO\": [\n        \"NNP\"\n    ], \n    \"Horsehead\": [\n        \"NNP\"\n    ], \n    \"Mechanisms\": [\n        \"NNPS\"\n    ], \n    \"editors\": [\n        \"NNS\"\n    ], \n    \"Ridley\": [\n        \"NNP\"\n    ], \n    \"unruffled\": [\n        \"JJ\"\n    ], \n    \"marks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cardoso\": [\n        \"NNP\"\n    ], \n    \"smoke-choked\": [\n        \"JJ\"\n    ], \n    \"Atlanta\": [\n        \"NNP\"\n    ], \n    \"Easton\": [\n        \"NNP\"\n    ], \n    \"Chieftains\": [\n        \"NNP\"\n    ], \n    \"ballooning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"PipeLines\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"scarcest\": [\n        \"JJS\"\n    ], \n    \"one-dumbbell\": [\n        \"JJ\"\n    ], \n    \"yeast\": [\n        \"NN\"\n    ], \n    \"penniless\": [\n        \"JJ\"\n    ], \n    \"billionaire\": [\n        \"NN\"\n    ], \n    \"bed-hopped\": [\n        \"VBD\"\n    ], \n    \"pathologist\": [\n        \"NN\"\n    ], \n    \"silver-blue\": [\n        \"JJ\"\n    ], \n    \"Plus\": [\n        \"NNP\", \n        \"CC\"\n    ], \n    \"Athabascan\": [\n        \"NNP\"\n    ], \n    \"three-day\": [\n        \"JJ\"\n    ], \n    \"rebelling\": [\n        \"VBG\"\n    ], \n    \"Medecine\": [\n        \"NNP\"\n    ], \n    \"travels\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Tabit\": [\n        \"NNP\"\n    ], \n    \"brownish\": [\n        \"JJ\"\n    ], \n    \"rectitude\": [\n        \"NN\"\n    ], \n    \"Unsuccessful\": [\n        \"JJ\"\n    ], \n    \"Collier\": [\n        \"NNP\"\n    ], \n    \"putains\": [\n        \"FW\"\n    ], \n    \"Bankshares\": [\n        \"NNPS\"\n    ], \n    \"Viruscan\": [\n        \"NNP\"\n    ], \n    \"shave\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"oscillation\": [\n        \"NN\"\n    ], \n    \"stock-watch\": [\n        \"JJ\"\n    ], \n    \"PLASTIC\": [\n        \"NN\"\n    ], \n    \"draping\": [\n        \"VBG\"\n    ], \n    \"Detroit-based\": [\n        \"JJ\"\n    ], \n    \"vehicle-suspension\": [\n        \"NN\"\n    ], \n    \"commercial-industrial\": [\n        \"JJ\"\n    ], \n    \"soured\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Tuxapoka\": [\n        \"NNP\"\n    ], \n    \"Beverages\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Spenser\": [\n        \"NNP\"\n    ], \n    \"landslides\": [\n        \"NNS\"\n    ], \n    \"Trofeo\": [\n        \"NNP\"\n    ], \n    \"Ferrer\": [\n        \"NNP\"\n    ], \n    \"waggled\": [\n        \"VBD\"\n    ], \n    \"template\": [\n        \"NN\"\n    ], \n    \"hand-to-hand\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tess\": [\n        \"NNP\"\n    ], \n    \"Rodney-The\": [\n        \"NNP\"\n    ], \n    \"growls\": [\n        \"VBZ\"\n    ], \n    \"Colonus\": [\n        \"NNP\"\n    ], \n    \"carbon-halogen\": [\n        \"NN\"\n    ], \n    \"briquette\": [\n        \"NN\"\n    ], \n    \"lash-up\": [\n        \"JJ\"\n    ], \n    \"handmaiden\": [\n        \"NN\"\n    ], \n    \"detest\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"vestibules\": [\n        \"NNS\"\n    ], \n    \"hummed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Chateau\": [\n        \"NNP\"\n    ], \n    \"account-churning\": [\n        \"NN\"\n    ], \n    \"environs\": [\n        \"NNS\"\n    ], \n    \"Sleeping\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"forages\": [\n        \"NNS\"\n    ], \n    \"Stockholder\": [\n        \"NN\"\n    ], \n    \"contingency-fee\": [\n        \"JJ\"\n    ], \n    \"rediscover\": [\n        \"VB\"\n    ], \n    \"SKIRTS\": [\n        \"NNP\"\n    ], \n    \"genuinely\": [\n        \"RB\"\n    ], \n    \"Makoto\": [\n        \"NNP\"\n    ], \n    \"rheumatic\": [\n        \"JJ\"\n    ], \n    \"DISASTER\": [\n        \"NN\"\n    ], \n    \"colloquial\": [\n        \"JJ\"\n    ], \n    \"councilors\": [\n        \"NNS\"\n    ], \n    \"enticements\": [\n        \"NNS\"\n    ], \n    \"regeneration\": [\n        \"NN\"\n    ], \n    \"testily\": [\n        \"RB\"\n    ], \n    \"modus\": [\n        \"FW\"\n    ], \n    \"Bolar\": [\n        \"NNP\"\n    ], \n    \"Reichmanns\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Frawley\": [\n        \"NNP\"\n    ], \n    \"Lanes\": [\n        \"NNS\"\n    ], \n    \"troops\": [\n        \"NNS\"\n    ], \n    \"Freiburghouse\": [\n        \"NNP\"\n    ], \n    \"Hacche\": [\n        \"NNP\"\n    ], \n    \"Plexiglas\": [\n        \"NN\"\n    ], \n    \"insides\": [\n        \"NNS\"\n    ], \n    \"insider\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Allowing\": [\n        \"VBG\"\n    ], \n    \"tachycardia\": [\n        \"NN\"\n    ], \n    \"thru\": [\n        \"NN\", \n        \"IN\"\n    ], \n    \"Finerman\": [\n        \"NNP\"\n    ], \n    \"effectinge\": [\n        \"VBG\"\n    ], \n    \"outweighs\": [\n        \"VBZ\"\n    ], \n    \"PRIMERICA\": [\n        \"NNP\"\n    ], \n    \"Ben\": [\n        \"NNP\"\n    ], \n    \"dissembling\": [\n        \"VBG\"\n    ], \n    \"Bel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Fromstein\": [\n        \"NNP\"\n    ], \n    \"Bea\": [\n        \"NNP\"\n    ], \n    \"Orlando\": [\n        \"NNP\"\n    ], \n    \"Bed\": [\n        \"NN\"\n    ], \n    \"Bee\": [\n        \"NNP\"\n    ], \n    \"Bey\": [\n        \"NNP\"\n    ], \n    \"rigid\": [\n        \"JJ\"\n    ], \n    \"Processed\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"savior\": [\n        \"NN\"\n    ], \n    \"calorimeter\": [\n        \"NN\"\n    ], \n    \"effort\": [\n        \"NN\"\n    ], \n    \"Bew\": [\n        \"NNP\"\n    ], \n    \"capturing\": [\n        \"VBG\"\n    ], \n    \"eight-member\": [\n        \"JJ\"\n    ], \n    \"walled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"pageant\": [\n        \"NN\"\n    ], \n    \"transferral\": [\n        \"JJ\"\n    ], \n    \"inertial\": [\n        \"JJ\"\n    ], \n    \"new-house\": [\n        \"JJ\"\n    ], \n    \"hubris\": [\n        \"NN\"\n    ], \n    \"wallet\": [\n        \"NN\"\n    ], \n    \"incarcerated\": [\n        \"VBN\"\n    ], \n    \"Prosecutorial\": [\n        \"JJ\"\n    ], \n    \"grained\": [\n        \"JJ\"\n    ], \n    \"crazy\": [\n        \"JJ\"\n    ], \n    \"monoclinic\": [\n        \"JJ\"\n    ], \n    \"egg-sized\": [\n        \"JJ\"\n    ], \n    \"Sandusky\": [\n        \"NNP\"\n    ], \n    \"Democratic-sponsored\": [\n        \"JJ\"\n    ], \n    \"overzealous\": [\n        \"JJ\"\n    ], \n    \"remanded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"birdbath\": [\n        \"NN\"\n    ], \n    \"justness\": [\n        \"NN\"\n    ], \n    \"HAL\": [\n        \"NNP\"\n    ], \n    \"Sweepstakes\": [\n        \"NNP\"\n    ], \n    \"cause-and-effect\": [\n        \"JJ\"\n    ], \n    \"craze\": [\n        \"NN\"\n    ], \n    \"inflows\": [\n        \"NNS\"\n    ], \n    \"Apocalyptic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wheezing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"inundated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"range\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"agonizing\": [\n        \"JJ\"\n    ], \n    \"scornfully\": [\n        \"RB\"\n    ], \n    \"sword\": [\n        \"NN\"\n    ], \n    \"swore\": [\n        \"VBD\"\n    ], \n    \"sworn\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pathway\": [\n        \"NN\"\n    ], \n    \"grok\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Eichler\": [\n        \"NNP\"\n    ], \n    \"Bodenseewerk\": [\n        \"NNP\"\n    ], \n    \"HAD\": [\n        \"VBD\"\n    ], \n    \"misrepresented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Trifari\": [\n        \"NNP\"\n    ], \n    \"praiseworthy\": [\n        \"JJ\"\n    ], \n    \"perfidy\": [\n        \"NN\"\n    ], \n    \"gelatin\": [\n        \"NN\"\n    ], \n    \"COMPUTER\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Apaches\": [\n        \"NNPS\"\n    ], \n    \"half-acceptance\": [\n        \"NN\"\n    ], \n    \"relinquish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"aimless\": [\n        \"JJ\"\n    ], \n    \"outline\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"facile\": [\n        \"JJ\"\n    ], \n    \"chef\": [\n        \"NN\"\n    ], \n    \"Brinkman\": [\n        \"NNP\"\n    ], \n    \"public-accommodation\": [\n        \"NN\"\n    ], \n    \"ionized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"jail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sitcoms\": [\n        \"NNS\"\n    ], \n    \"Hama\": [\n        \"NNP\"\n    ], \n    \"biplane\": [\n        \"NN\"\n    ], \n    \"Hamm\": [\n        \"NNP\"\n    ], \n    \"trichloroacetic\": [\n        \"JJ\"\n    ], \n    \"walkie-talkies\": [\n        \"NNS\"\n    ], \n    \"recrimination\": [\n        \"NN\"\n    ], \n    \"rabbi\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"pointed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Hills-Hollywood\": [\n        \"JJ\"\n    ], \n    \"terrace\": [\n        \"NN\"\n    ], \n    \"arabesque\": [\n        \"NN\"\n    ], \n    \"marshmallows\": [\n        \"NNS\"\n    ], \n    \"consolidating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"pointer\": [\n        \"NN\"\n    ], \n    \"Administration-insured\": [\n        \"JJ\"\n    ], \n    \"Resting\": [\n        \"VBG\"\n    ], \n    \"conjunction\": [\n        \"NN\"\n    ], \n    \"Applebaum\": [\n        \"NNP\"\n    ], \n    \"oil-production\": [\n        \"NN\"\n    ], \n    \"encompasses\": [\n        \"VBZ\"\n    ], \n    \"Weckel\": [\n        \"NNP\"\n    ], \n    \"encompassed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"folkish\": [\n        \"JJ\"\n    ], \n    \"Galligan\": [\n        \"NNP\"\n    ], \n    \"Purchase\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mismatches\": [\n        \"NNS\"\n    ], \n    \"Urbana\": [\n        \"NNP\"\n    ], \n    \"industry-financed\": [\n        \"JJ\"\n    ], \n    \"Shu\": [\n        \"NNP\"\n    ], \n    \"Boston-area\": [\n        \"JJ\"\n    ], \n    \"Shy\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Spengler\": [\n        \"NNP\"\n    ], \n    \"heedless\": [\n        \"JJ\"\n    ], \n    \"hostler\": [\n        \"NN\"\n    ], \n    \"Bowsher\": [\n        \"NNP\"\n    ], \n    \"mismatched\": [\n        \"VBN\"\n    ], \n    \"Shh\": [\n        \"UH\"\n    ], \n    \"bullshit\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Floridian\": [\n        \"NN\"\n    ], \n    \"Mittag\": [\n        \"NNP\"\n    ], \n    \"Rotonda\": [\n        \"NNP\"\n    ], \n    \"Weekend\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rotondo\": [\n        \"NNP\"\n    ], \n    \"peered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Woong\": [\n        \"NNP\"\n    ], \n    \"Hesiometer\": [\n        \"NN\"\n    ], \n    \"brokerage-house\": [\n        \"NN\"\n    ], \n    \"disproving\": [\n        \"VBG\"\n    ], \n    \"Resignedly\": [\n        \"RB\"\n    ], \n    \"speculative-grade\": [\n        \"JJ\"\n    ], \n    \"fever\": [\n        \"NN\"\n    ], \n    \"Split\": [\n        \"VBN\"\n    ], \n    \"preaching\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|JJ\"\n    ], \n    \"Biondi\": [\n        \"NNP\"\n    ], \n    \"helmeted\": [\n        \"JJ\"\n    ], \n    \"rosettes\": [\n        \"NNS\"\n    ], \n    \"Laredo\": [\n        \"NNP\"\n    ], \n    \"torrents\": [\n        \"NNS\"\n    ], \n    \"d-NAV\": [\n        \"NNP\"\n    ], \n    \"inventories\": [\n        \"NNS\"\n    ], \n    \"nonogenarian\": [\n        \"NN\"\n    ], \n    \"Medicus\": [\n        \"NNP\"\n    ], \n    \"interference\": [\n        \"NN\"\n    ], \n    \"intermarket\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Schweicker\": [\n        \"NNP\"\n    ], \n    \"imperative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Omsk\": [\n        \"NNP\"\n    ], \n    \"objectivity\": [\n        \"NN\"\n    ], \n    \"unifying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Hambrecht\": [\n        \"NNP\"\n    ], \n    \"Judi\": [\n        \"NNP\"\n    ], \n    \"Cicero\": [\n        \"NNP\"\n    ], \n    \"monster\": [\n        \"NN\"\n    ], \n    \"Newmont\": [\n        \"NNP\"\n    ], \n    \"hefty\": [\n        \"JJ\"\n    ], \n    \"mechanisms\": [\n        \"NNS\"\n    ], \n    \"Jude\": [\n        \"NNP\"\n    ], \n    \"walnuts\": [\n        \"NNS\"\n    ], \n    \"Tumor\": [\n        \"NNP\"\n    ], \n    \"Judy\": [\n        \"NNP\"\n    ], \n    \"finishing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Stony\": [\n        \"NNP\"\n    ], \n    \"private-detective\": [\n        \"NN\"\n    ], \n    \"jakes\": [\n        \"NN\"\n    ], \n    \"grist\": [\n        \"NN\"\n    ], \n    \"nufs\": [\n        \"NNS\"\n    ], \n    \"App\": [\n        \"NNP\"\n    ], \n    \"Apt\": [\n        \"JJ\"\n    ], \n    \"Elder\": [\n        \"NNP\"\n    ], \n    \"Hapgood\": [\n        \"NNP\"\n    ], \n    \"Enersen\": [\n        \"NNP\"\n    ], \n    \"Ape\": [\n        \"NNP\"\n    ], \n    \"Eric\": [\n        \"NNP\"\n    ], \n    \"dwelling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"question\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"W/NNP.A.\": [\n        \"NN\"\n    ], \n    \"weekly-average\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ICBMs\": [\n        \"NNPS\"\n    ], \n    \"Stardel\": [\n        \"NNP\"\n    ], \n    \"Pankowski\": [\n        \"NNP\"\n    ], \n    \"D.N.\": [\n        \"NNP\"\n    ], \n    \"Masaryk\": [\n        \"NNP\"\n    ], \n    \"carry\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"cloture\": [\n        \"NN\"\n    ], \n    \"unpublished\": [\n        \"JJ\"\n    ], \n    \"oohs\": [\n        \"UH\", \n        \"NNS\"\n    ], \n    \"Stackup\": [\n        \"NNP\"\n    ], \n    \"evermounting\": [\n        \"VBG\"\n    ], \n    \"Posh\": [\n        \"JJ\"\n    ], \n    \"unduly\": [\n        \"RB\"\n    ], \n    \"autocrat\": [\n        \"NN\"\n    ], \n    \"psychotic\": [\n        \"JJ\"\n    ], \n    \"childishness\": [\n        \"NN\"\n    ], \n    \"entertainers\": [\n        \"NNS\"\n    ], \n    \"Polytechnic\": [\n        \"NNP\"\n    ], \n    \"Stiritz\": [\n        \"NNP\"\n    ], \n    \"Post\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"continuous\": [\n        \"JJ\"\n    ], \n    \"buy-now\": [\n        \"JJ\"\n    ], \n    \"Petitioner\": [\n        \"NN\"\n    ], \n    \"salarymen\": [\n        \"NNS\"\n    ], \n    \"Urethane\": [\n        \"NN\"\n    ], \n    \"cavity-fighting\": [\n        \"JJ\"\n    ], \n    \"Floradora\": [\n        \"NNP\"\n    ], \n    \"Berkely\": [\n        \"NNP\"\n    ], \n    \"once-cozy\": [\n        \"JJ\"\n    ], \n    \"infiltrate\": [\n        \"VB\"\n    ], \n    \"Tele1st\": [\n        \"NNP\"\n    ], \n    \"Ridiculing\": [\n        \"VBG\"\n    ], \n    \"Pascataqua\": [\n        \"NNP\"\n    ], \n    \"cross-connect\": [\n        \"JJ\"\n    ], \n    \"browning\": [\n        \"VBG\"\n    ], \n    \"Tenderloin\": [\n        \"NNP\"\n    ], \n    \"full-fledged\": [\n        \"JJ\"\n    ], \n    \"knives\": [\n        \"NNS\"\n    ], \n    \"gigantic\": [\n        \"JJ\"\n    ], \n    \"lowest-priced\": [\n        \"JJ\"\n    ], \n    \"tractor\": [\n        \"NN\"\n    ], \n    \"coconut\": [\n        \"NN\"\n    ], \n    \"camouflaged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"kingmaker\": [\n        \"NN\"\n    ], \n    \"Rankings\": [\n        \"NNS\"\n    ], \n    \"briefs\": [\n        \"NNS\"\n    ], \n    \"reaccelerate\": [\n        \"VB\"\n    ], \n    \"conspiracy\": [\n        \"NN\"\n    ], \n    \"pulping\": [\n        \"VBG\"\n    ], \n    \"Celebes\": [\n        \"NNPS\"\n    ], \n    \"Minerals\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"abdomens\": [\n        \"NNS\"\n    ], \n    \"Rulers\": [\n        \"NNPS\"\n    ], \n    \"metalized\": [\n        \"VBN\"\n    ], \n    \"rupturing\": [\n        \"VBG\"\n    ], \n    \"rehearsals\": [\n        \"NNS\"\n    ], \n    \"firehoops\": [\n        \"NNS\"\n    ], \n    \"case-hardened\": [\n        \"JJ\"\n    ], \n    \"creatively\": [\n        \"RB\"\n    ], \n    \"Turbulence\": [\n        \"NN\"\n    ], \n    \"glassware\": [\n        \"NN\"\n    ], \n    \"Inventors\": [\n        \"NNS\"\n    ], \n    \"Wickliffe\": [\n        \"NNP\"\n    ], \n    \"radiosterilization\": [\n        \"NN\"\n    ], \n    \"solidity\": [\n        \"NN\"\n    ], \n    \"pain\": [\n        \"NN\"\n    ], \n    \"Name\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"pail\": [\n        \"NN\"\n    ], \n    \"tallies\": [\n        \"NNS\"\n    ], \n    \"semi-professional\": [\n        \"JJ\"\n    ], \n    \"wood-and-brass\": [\n        \"NN\"\n    ], \n    \"paid\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"paie\": [\n        \"VB\"\n    ], \n    \"ordinates\": [\n        \"NNS\"\n    ], \n    \"rigidly\": [\n        \"RB\"\n    ], \n    \"corporate-entertainment\": [\n        \"JJ\"\n    ], \n    \"pair\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"Toscanini\": [\n        \"NNP\"\n    ], \n    \"mettle\": [\n        \"NN\"\n    ], \n    \"NBC-owned\": [\n        \"JJ\"\n    ], \n    \"weapons-systems\": [\n        \"NNS\"\n    ], \n    \"Pagliuca\": [\n        \"NNP\"\n    ], \n    \"Domina\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"staff-cutting\": [\n        \"VBG\"\n    ], \n    \"Domino\": [\n        \"NNP\"\n    ], \n    \"napkin\": [\n        \"NN\"\n    ], \n    \"kick-off\": [\n        \"NN\"\n    ], \n    \"Windmere\": [\n        \"NNP\"\n    ], \n    \"Marmon\": [\n        \"NNP\"\n    ], \n    \"Franklin\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"BART\": [\n        \"NNP\"\n    ], \n    \"sandy-haired\": [\n        \"JJ\"\n    ], \n    \"Basie\": [\n        \"NNP\"\n    ], \n    \"salon\": [\n        \"NN\"\n    ], \n    \"veranda\": [\n        \"NN\"\n    ], \n    \"legalization\": [\n        \"NN\"\n    ], \n    \"Peapack\": [\n        \"NNP\"\n    ], \n    \"curled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Woollcott\": [\n        \"NNP\"\n    ], \n    \"cultural-reform\": [\n        \"NN\"\n    ], \n    \"worker-owned\": [\n        \"JJ\"\n    ], \n    \"country-development\": [\n        \"NN\"\n    ], \n    \"Ephron\": [\n        \"NNP\"\n    ], \n    \"re-create\": [\n        \"VB\"\n    ], \n    \"black\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"fundamantalist\": [\n        \"NN\"\n    ], \n    \"defenders\": [\n        \"NNS\"\n    ], \n    \"Fisher\": [\n        \"NNP\"\n    ], \n    \"Epicurus\": [\n        \"NNP\"\n    ], \n    \"Walinsky-Rubinstein\": [\n        \"NNP\"\n    ], \n    \"pro-life\": [\n        \"JJ\"\n    ], \n    \"PG&E\": [\n        \"NNP\"\n    ], \n    \"West-Point\": [\n        \"NNP\"\n    ], \n    \"BNP\": [\n        \"NNP\"\n    ], \n    \"tamper-resistant\": [\n        \"JJ\"\n    ], \n    \"slyness\": [\n        \"NN\"\n    ], \n    \"procreation\": [\n        \"NN\"\n    ], \n    \"BNL\": [\n        \"NNP\"\n    ], \n    \"unethical\": [\n        \"JJ\"\n    ], \n    \"Tateishi\": [\n        \"NNP\"\n    ], \n    \"corticotropin\": [\n        \"NN\"\n    ], \n    \"Jewelers\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"doubloon\": [\n        \"NN\"\n    ], \n    \"encroached\": [\n        \"VBD\"\n    ], \n    \"Tougher\": [\n        \"JJR\"\n    ], \n    \"Jewelery\": [\n        \"NNP\"\n    ], \n    \"Ullman\": [\n        \"NNP\"\n    ], \n    \"summary\": [\n        \"NN\"\n    ], \n    \"Folsom\": [\n        \"NNP\"\n    ], \n    \"Eicher\": [\n        \"NNP\"\n    ], \n    \"Toccata\": [\n        \"NNP\"\n    ], \n    \"Druggan-Lake\": [\n        \"NNP\"\n    ], \n    \"communicated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Killebrew\": [\n        \"NNP\"\n    ], \n    \"Cavalry\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Heitschmidt\": [\n        \"NNP\"\n    ], \n    \"Beechnut\": [\n        \"NNP\"\n    ], \n    \"Credibility\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Weltanschauung\": [\n        \"NN\"\n    ], \n    \"eighteenth\": [\n        \"JJ\"\n    ], \n    \"blurred\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"doings\": [\n        \"NNS\"\n    ], \n    \"Cloudcroft\": [\n        \"NNP\"\n    ], \n    \"Taney\": [\n        \"NNP\"\n    ], \n    \"Screwed\": [\n        \"JJ\"\n    ], \n    \"Lysle\": [\n        \"NNP\"\n    ], \n    \"whooosh\": [\n        \"JJ\"\n    ], \n    \"Perfumes\": [\n        \"NNPS\"\n    ], \n    \"Messner\": [\n        \"NNP\"\n    ], \n    \"patronized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Pray\": [\n        \"NNP\"\n    ], \n    \"machetes\": [\n        \"NNS\"\n    ], \n    \"pump\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"chews\": [\n        \"NNS\"\n    ], \n    \"Bernet\": [\n        \"NNP\"\n    ], \n    \"Navajo\": [\n        \"NNP\"\n    ], \n    \"Berner\": [\n        \"NNP\"\n    ], \n    \"Basic\": [\n        \"NNP\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"HEAVY\": [\n        \"JJ\"\n    ], \n    \"loped\": [\n        \"VBD\"\n    ], \n    \"foreword\": [\n        \"NN\"\n    ], \n    \"Oats\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"scanning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"couplets\": [\n        \"NNS\"\n    ], \n    \"Impersonal\": [\n        \"JJ\"\n    ], \n    \"handbooks\": [\n        \"NNS\"\n    ], \n    \"reconnaissanace\": [\n        \"NN\"\n    ], \n    \"Calabrese\": [\n        \"NNP\"\n    ], \n    \"lopes\": [\n        \"VBZ\"\n    ], \n    \"je\": [\n        \"FW\"\n    ], \n    \"tub\": [\n        \"NN\"\n    ], \n    \"Pechora\": [\n        \"NNP\"\n    ], \n    \"tug\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"parentheses\": [\n        \"NNS\"\n    ], \n    \"Pritzkers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Melodious\": [\n        \"JJ\"\n    ], \n    \"Cho-Liang\": [\n        \"NNP\"\n    ], \n    \"bald-faced\": [\n        \"JJ\"\n    ], \n    \"multicolor\": [\n        \"JJ\"\n    ], \n    \"dated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"stone-blind\": [\n        \"JJ\"\n    ], \n    \"dwellers\": [\n        \"NNS\"\n    ], \n    \"Employment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rehabilitated\": [\n        \"VBN\"\n    ], \n    \"Burgeoning\": [\n        \"VBG\"\n    ], \n    \"cancer\": [\n        \"NN\"\n    ], \n    \"yearall\": [\n        \"NN\"\n    ], \n    \"extendibles\": [\n        \"NNS\"\n    ], \n    \"team-mate\": [\n        \"NN\"\n    ], \n    \"Mistsubishi\": [\n        \"NNP\"\n    ], \n    \"Spontaneity\": [\n        \"NN\"\n    ], \n    \"scherzo\": [\n        \"NN\"\n    ], \n    \"Dominus\": [\n        \"NNP\"\n    ], \n    \"cancel\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Wasserstein\": [\n        \"NNP\"\n    ], \n    \"Basin\": [\n        \"NNP\"\n    ], \n    \"mortification\": [\n        \"NN\"\n    ], \n    \"tiniest\": [\n        \"JJS\"\n    ], \n    \"CASE\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Urge\": [\n        \"VB\"\n    ], \n    \"cervical\": [\n        \"JJ\"\n    ], \n    \"Prevot\": [\n        \"NNP\"\n    ], \n    \"analogies\": [\n        \"NNS\"\n    ], \n    \"certify\": [\n        \"VB\"\n    ], \n    \"Escudome\": [\n        \"NNP\"\n    ], \n    \"unconsolidated\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tone-generating\": [\n        \"JJ\"\n    ], \n    \"Reporters\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"rancher\": [\n        \"NN\"\n    ], \n    \"ranches\": [\n        \"NNS\"\n    ], \n    \"borders\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Waterman\": [\n        \"NNP\"\n    ], \n    \"corduroys\": [\n        \"NNS\"\n    ], \n    \"hodgepodge\": [\n        \"NN\"\n    ], \n    \"Saxons\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"offered\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"VBN|JJ\"\n    ], \n    \"Gottfried\": [\n        \"NNP\"\n    ], \n    \"self-respecting\": [\n        \"JJ\"\n    ], \n    \"acupuncture\": [\n        \"NN\"\n    ], \n    \"Condominium\": [\n        \"NNP\"\n    ], \n    \"Sprouted\": [\n        \"VBN\"\n    ], \n    \"vents\": [\n        \"NNS\"\n    ], \n    \"Sansome\": [\n        \"NNP\"\n    ], \n    \"Braintree\": [\n        \"NNP\"\n    ], \n    \"captivity\": [\n        \"NN\"\n    ], \n    \"Week-e\": [\n        \"NN\"\n    ], \n    \"fountain-head\": [\n        \"NN\"\n    ], \n    \"Campeau-owned\": [\n        \"JJ\"\n    ], \n    \"Marshall\": [\n        \"NNP\"\n    ], \n    \"yearling\": [\n        \"JJ\"\n    ], \n    \"compile\": [\n        \"VB\"\n    ], \n    \"terrestial\": [\n        \"JJ\"\n    ], \n    \"Sloane\": [\n        \"NNP\"\n    ], \n    \"antipathies\": [\n        \"NNS\"\n    ], \n    \"Week-r\": [\n        \"NN\"\n    ], \n    \"paper-and-crayon\": [\n        \"JJ\"\n    ], \n    \"margin\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Leser\": [\n        \"NNP\"\n    ], \n    \"McCutchen\": [\n        \"NNP\"\n    ], \n    \"Gutermann\": [\n        \"NNP\"\n    ], \n    \"wish-lists\": [\n        \"NNS\"\n    ], \n    \"Petery\": [\n        \"NNP\"\n    ], \n    \"Amounts\": [\n        \"NNS\"\n    ], \n    \"Carrington\": [\n        \"NNP\"\n    ], \n    \"sincere\": [\n        \"JJ\"\n    ], \n    \"expensive-to-produce\": [\n        \"JJ\"\n    ], \n    \"Caskey\": [\n        \"NNP\"\n    ], \n    \"Peters\": [\n        \"NNP\"\n    ], \n    \"Petronas\": [\n        \"NNP\"\n    ], \n    \"baths\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Valencia\": [\n        \"NNP\"\n    ], \n    \"single-minded\": [\n        \"JJ\"\n    ], \n    \"receptacle\": [\n        \"NN\"\n    ], \n    \"Plant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gliedman\": [\n        \"NNP\"\n    ], \n    \"vagaries\": [\n        \"NNS\"\n    ], \n    \"Plans\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\", \n        \"VBZ\"\n    ], \n    \"Lakshmipura\": [\n        \"NNP\"\n    ], \n    \"ultra-right\": [\n        \"JJ\"\n    ], \n    \"Napolitan\": [\n        \"NNP\"\n    ], \n    \"Tonka\": [\n        \"NNP\"\n    ], \n    \"authentication\": [\n        \"NN\"\n    ], \n    \"Plane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"flageolet\": [\n        \"NN\"\n    ], \n    \"afflicts\": [\n        \"VBZ\"\n    ], \n    \"Plano\": [\n        \"NNP\"\n    ], \n    \"Hewitt\": [\n        \"NNP\"\n    ], \n    \"Plank\": [\n        \"VB\"\n    ], \n    \"buy-outs\": [\n        \"NNS\"\n    ], \n    \"SciMed\": [\n        \"NNP\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Salvador\": [\n        \"NNP\"\n    ], \n    \"independents\": [\n        \"NNS\"\n    ], \n    \"Humanism\": [\n        \"NNP\"\n    ], \n    \"Drawers\": [\n        \"NNS\"\n    ], \n    \"Humanist\": [\n        \"NNP\"\n    ], \n    \"stop-overs\": [\n        \"NNS\"\n    ], \n    \"Patil\": [\n        \"NNP\"\n    ], \n    \"Maritain\": [\n        \"NNP\"\n    ], \n    \"drain\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Rene\": [\n        \"NNP\"\n    ], \n    \"Coats\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"pressure-formed\": [\n        \"JJ\"\n    ], \n    \"Renk\": [\n        \"NNP\"\n    ], \n    \"Reno\": [\n        \"NNP\"\n    ], \n    \"Waggoner\": [\n        \"NNP\"\n    ], \n    \"Misubishi\": [\n        \"NNP\"\n    ], \n    \"Rent\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Britto\": [\n        \"NNP\"\n    ], \n    \"Britta\": [\n        \"NNP\"\n    ], \n    \"Burkette\": [\n        \"NNP\"\n    ], \n    \"amazed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"breakfasts\": [\n        \"NNS\"\n    ], \n    \"lumbered\": [\n        \"VBD\"\n    ], \n    \"wheat-growing\": [\n        \"JJ\"\n    ], \n    \"Eliot-or-Martin\": [\n        \"NNP|CC|NP\"\n    ], \n    \"laudably\": [\n        \"RB\"\n    ], \n    \"buzz-buzz-buzz\": [\n        \"NN\"\n    ], \n    \"Gabelli\": [\n        \"NNP\"\n    ], \n    \"Gambling\": [\n        \"NN\"\n    ], \n    \"abstractors\": [\n        \"NNS\"\n    ], \n    \"asthma\": [\n        \"NN\"\n    ], \n    \"comradeship\": [\n        \"NN\"\n    ], \n    \"property-price\": [\n        \"JJ\"\n    ], \n    \"Ingham\": [\n        \"NNP\"\n    ], \n    \"trespasses\": [\n        \"NNS\"\n    ], \n    \"out-reaching\": [\n        \"JJ\"\n    ], \n    \"Although\": [\n        \"IN\"\n    ], \n    \"eviscerate\": [\n        \"VB\"\n    ], \n    \"self-energizing\": [\n        \"JJ\"\n    ], \n    \"Glow\": [\n        \"NNP\"\n    ], \n    \"epsiode\": [\n        \"NN\"\n    ], \n    \"newsmen\": [\n        \"NNS\"\n    ], \n    \"price-determination\": [\n        \"JJ\"\n    ], \n    \"dissected\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Faulknerian\": [\n        \"JJ\"\n    ], \n    \"inhibition\": [\n        \"NN\"\n    ], \n    \"venues\": [\n        \"NNS\"\n    ], \n    \"Jeanene\": [\n        \"NNP\"\n    ], \n    \"Ups\": [\n        \"VBZ\"\n    ], \n    \"Henney\": [\n        \"NNP\"\n    ], \n    \"bulletin-board\": [\n        \"NN\"\n    ], \n    \"terrorize\": [\n        \"VB\"\n    ], \n    \"Kayabashi-san\": [\n        \"NNP\"\n    ], \n    \"Uncomfortably\": [\n        \"RB\"\n    ], \n    \"Collagen\": [\n        \"NNP\"\n    ], \n    \"macrocrystals\": [\n        \"NNS\"\n    ], \n    \"Curiae\": [\n        \"FW\"\n    ], \n    \"thighs\": [\n        \"NNS\"\n    ], \n    \"drainage\": [\n        \"NN\"\n    ], \n    \"in-groups\": [\n        \"NN\"\n    ], \n    \"dictating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"doll\": [\n        \"NN\"\n    ], \n    \"civil-liberties\": [\n        \"NNS\"\n    ], \n    \"Stinky\": [\n        \"NNP\"\n    ], \n    \"dole\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"slavery\": [\n        \"NN\"\n    ], \n    \"Kravitz\": [\n        \"NNP\"\n    ], \n    \"a-coming\": [\n        \"VBG\"\n    ], \n    \"Schutz\": [\n        \"NNP\"\n    ], \n    \"booming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Kenton\": [\n        \"NNP\"\n    ], \n    \"gapped\": [\n        \"VBD\"\n    ], \n    \"Rake\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Medea\": [\n        \"NNP\"\n    ], \n    \"MD-80s\": [\n        \"NNS\"\n    ], \n    \"tailor-made\": [\n        \"JJ\"\n    ], \n    \"unitized\": [\n        \"VBN\"\n    ], \n    \"lunar\": [\n        \"JJ\"\n    ], \n    \"charge-a-plate\": [\n        \"NN\"\n    ], \n    \"low-lifes\": [\n        \"NNS\"\n    ], \n    \"earnings-limit\": [\n        \"JJ\"\n    ], \n    \"USDA\": [\n        \"NNP\"\n    ], \n    \"seconds\": [\n        \"NNS\"\n    ], \n    \"IOUs\": [\n        \"NNS\"\n    ], \n    \"snivelings\": [\n        \"NNS\"\n    ], \n    \"Bashing\": [\n        \"VBG\"\n    ], \n    \"government-imposed\": [\n        \"JJ\"\n    ], \n    \"drums\": [\n        \"NNS\"\n    ], \n    \"Horner\": [\n        \"NNP\"\n    ], \n    \"Termination\": [\n        \"NN\"\n    ], \n    \"Dionysus\": [\n        \"NNP\"\n    ], \n    \"refers\": [\n        \"VBZ\"\n    ], \n    \"Sci-Med\": [\n        \"NNP\"\n    ], \n    \"Hornet\": [\n        \"NNP\"\n    ], \n    \"giggle\": [\n        \"NN\"\n    ], \n    \"stations\": [\n        \"NNS\"\n    ], \n    \"island\": [\n        \"NN\"\n    ], \n    \"Jee-sus\": [\n        \"UH\"\n    ], \n    \"soulmates\": [\n        \"NNS\"\n    ], \n    \"meaning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"smattering\": [\n        \"NN\"\n    ], \n    \"Trade\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"COCOA\": [\n        \"NN\"\n    ], \n    \"Suspecting\": [\n        \"VBG\"\n    ], \n    \"metaphors\": [\n        \"NNS\"\n    ], \n    \"shunts\": [\n        \"NNS\"\n    ], \n    \"base-wage\": [\n        \"JJ\"\n    ], \n    \"decimated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Capacity\": [\n        \"NN\"\n    ], \n    \"sinners\\\\/Who\": [\n        \"NN\"\n    ], \n    \"Poachers\": [\n        \"NNS\"\n    ], \n    \"scholar-businessman\": [\n        \"NN\"\n    ], \n    \"W-2\": [\n        \"NN\"\n    ], \n    \"point-blank\": [\n        \"JJ\"\n    ], \n    \"Getrudis\": [\n        \"NNP\"\n    ], \n    \"Tenders\": [\n        \"NNS\"\n    ], \n    \"Wetzel\": [\n        \"NNP\"\n    ], \n    \"fertilizer\": [\n        \"NN\"\n    ], \n    \"pharmaceutical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wrinkle\": [\n        \"NN\"\n    ], \n    \"Second-tier\": [\n        \"JJ\"\n    ], \n    \"higher-grade\": [\n        \"JJ\"\n    ], \n    \"handcuffed\": [\n        \"VBN\"\n    ], \n    \"Masius\": [\n        \"NNP\"\n    ], \n    \"iambic\": [\n        \"JJ\"\n    ], \n    \"passports\": [\n        \"NNS\"\n    ], \n    \"non-political\": [\n        \"JJ\"\n    ], \n    \"sorrel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lunchroom\": [\n        \"NN\"\n    ], \n    \"Hovis\": [\n        \"NNP\"\n    ], \n    \"fast-track\": [\n        \"JJ\"\n    ], \n    \"buggy\": [\n        \"NN\"\n    ], \n    \"bookstore\": [\n        \"NN\"\n    ], \n    \"announcement\": [\n        \"NN\"\n    ], \n    \"Duty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"take-out\": [\n        \"NN\"\n    ], \n    \"Sistemas\": [\n        \"NNP\"\n    ], \n    \"drills\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"passenger-loading\": [\n        \"JJ\"\n    ], \n    \"Frazzano\": [\n        \"NNP\"\n    ], \n    \"Outraged\": [\n        \"JJ\"\n    ], \n    \"Attitude\": [\n        \"NN\"\n    ], \n    \"non-Jews\": [\n        \"NNS\"\n    ], \n    \"netting\": [\n        \"VBG\"\n    ], \n    \"organize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pathlogy\": [\n        \"NN\"\n    ], \n    \"Alamos\": [\n        \"NNP\"\n    ], \n    \"diffusers\": [\n        \"NNS\"\n    ], \n    \"wildness\": [\n        \"NN\"\n    ], \n    \"Stenexport\": [\n        \"NNP\"\n    ], \n    \"Milan-based\": [\n        \"JJ\"\n    ], \n    \"force-level\": [\n        \"JJ\"\n    ], \n    \"Valen\": [\n        \"NNP\"\n    ], \n    \"garrulous\": [\n        \"JJ\"\n    ], \n    \"importing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Prescription\": [\n        \"NNP\"\n    ], \n    \"neurotransmitters\": [\n        \"NNS\"\n    ], \n    \"Djakarta\": [\n        \"NNP\"\n    ], \n    \"Springfield\": [\n        \"NNP\"\n    ], \n    \"Benet\": [\n        \"NNP\"\n    ], \n    \"Daggs\": [\n        \"NNP\"\n    ], \n    \"Benes\": [\n        \"NNP\"\n    ], \n    \"Vale\\\\\": [\n        \"IN\"\n    ], \n    \"Wrangling\": [\n        \"VBG\"\n    ], \n    \"Montreal-based\": [\n        \"JJ\"\n    ], \n    \"hybrid\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"creditcard\": [\n        \"NN\"\n    ], \n    \"Blue-chips\": [\n        \"NNS\"\n    ], \n    \"Dienbienphu\": [\n        \"NNP\"\n    ], \n    \"raucously\": [\n        \"RB\"\n    ], \n    \"Petrocorp\": [\n        \"NNP\"\n    ], \n    \"self-reliance\": [\n        \"NN\"\n    ], \n    \"privatized\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"lapel\": [\n        \"NN\"\n    ], \n    \"shelter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"durations\": [\n        \"NNS\"\n    ], \n    \"colicky\": [\n        \"JJ\"\n    ], \n    \"brandy\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Biosciences\": [\n        \"NNP\"\n    ], \n    \"democratize\": [\n        \"VB\"\n    ], \n    \"brands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"RECEIVED\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Major\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"local-government\": [\n        \"JJ\"\n    ], \n    \"disabilities\": [\n        \"NNS\"\n    ], \n    \"Culligan\": [\n        \"NNP\"\n    ], \n    \"Geologists\": [\n        \"NNS\"\n    ], \n    \"roams\": [\n        \"VBZ\"\n    ], \n    \"gangway\": [\n        \"NN\"\n    ], \n    \"Nagorno-Karabakh\": [\n        \"NNP\"\n    ], \n    \"looped\": [\n        \"VBD\"\n    ], \n    \"pheasant\": [\n        \"NN\"\n    ], \n    \"long-haul\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fly-by-night\": [\n        \"JJ\"\n    ], \n    \"invariable\": [\n        \"JJ\"\n    ], \n    \"Bears-Cleveland\": [\n        \"NNP\"\n    ], \n    \"bravest\": [\n        \"JJS\"\n    ], \n    \"talky\": [\n        \"JJ\"\n    ], \n    \"anti-Communist\": [\n        \"JJ\"\n    ], \n    \"invariably\": [\n        \"RB\"\n    ], \n    \"talks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Deducting\": [\n        \"VBG\"\n    ], \n    \"Kellar\": [\n        \"NNP\"\n    ], \n    \"BONDS\": [\n        \"NNS\"\n    ], \n    \"Adios-Direct\": [\n        \"NNP\"\n    ], \n    \"field-flattening\": [\n        \"JJ\"\n    ], \n    \"tranquillity\": [\n        \"NN\"\n    ], \n    \"on-ramps\": [\n        \"NNS\"\n    ], \n    \"chucking\": [\n        \"VBG\"\n    ], \n    \"Leuzzi\": [\n        \"NNP\"\n    ], \n    \"Westchester\": [\n        \"NNP\"\n    ], \n    \"heterogeneity\": [\n        \"NN\"\n    ], \n    \"Indecon\": [\n        \"NNP\"\n    ], \n    \"Glick\": [\n        \"NNP\"\n    ], \n    \"subsidiarity\": [\n        \"NN\"\n    ], \n    \"Yellowknife\": [\n        \"NNP\"\n    ], \n    \"carefree\": [\n        \"JJ\"\n    ], \n    \"Standards\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"fall\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Recherches\": [\n        \"FW\"\n    ], \n    \"Adella\": [\n        \"NNP\"\n    ], \n    \"Yamatane\": [\n        \"NNP\"\n    ], \n    \"Araby\": [\n        \"NNP\"\n    ], \n    \"alien\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"neurological\": [\n        \"JJ\"\n    ], \n    \"dispel\": [\n        \"VB\"\n    ], \n    \"grand-jury\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Arabs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Sowell\": [\n        \"NNP\"\n    ], \n    \"windy\": [\n        \"JJ\"\n    ], \n    \"retargeting\": [\n        \"VBG\"\n    ], \n    \"brewing-assets\": [\n        \"NNS\"\n    ], \n    \"controlled-circulation\": [\n        \"JJ\"\n    ], \n    \"romping\": [\n        \"VBG\"\n    ], \n    \"economically\": [\n        \"RB\"\n    ], \n    \"infatuation\": [\n        \"NN\"\n    ], \n    \"species-dependent\": [\n        \"JJ\"\n    ], \n    \"Shotguns\": [\n        \"NNS\"\n    ], \n    \"Only\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"congressional-item\": [\n        \"JJ\"\n    ], \n    \"misrepresent\": [\n        \"VB\"\n    ], \n    \"Malpede\": [\n        \"NNP\"\n    ], \n    \"stood\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"stool\": [\n        \"NN\"\n    ], \n    \"Awarding\": [\n        \"VBG\"\n    ], \n    \"stoop\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"traineeships\": [\n        \"NNS\"\n    ], \n    \"outgoing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"cross-striations\": [\n        \"NNS\"\n    ], \n    \"anchoritism\": [\n        \"NN\"\n    ], \n    \"ingratiate\": [\n        \"VB\"\n    ], \n    \"Patti\": [\n        \"NNP\"\n    ], \n    \"inconsiderable\": [\n        \"JJ\"\n    ], \n    \"operating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"fifth-generation\": [\n        \"JJ\"\n    ], \n    \"auto-assembly\": [\n        \"NN\"\n    ], \n    \"prosoma\": [\n        \"NN\"\n    ], \n    \"Patty\": [\n        \"NNP\"\n    ], \n    \"prosecutors\": [\n        \"NNS\"\n    ], \n    \"Chicago-style\": [\n        \"JJ\"\n    ], \n    \"Bromwich\": [\n        \"NNP\"\n    ], \n    \"airport\": [\n        \"NN\"\n    ], \n    \"milky\": [\n        \"JJ\"\n    ], \n    \"jingle\": [\n        \"NN\"\n    ], \n    \"Colleen\": [\n        \"NNP\"\n    ], \n    \"narrow\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"milks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"nose-to-nose\": [\n        \"JJ\"\n    ], \n    \"Y-Teen\": [\n        \"NNP\"\n    ], \n    \"Lighthouse\": [\n        \"NNP\"\n    ], \n    \"self-imposed\": [\n        \"JJ\"\n    ], \n    \"Sandlund\": [\n        \"NNP\"\n    ], \n    \"extinction\": [\n        \"NN\"\n    ], \n    \"armed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Tariffs\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"bountyhunters\": [\n        \"NNS\"\n    ], \n    \"suspensions\": [\n        \"NNS\"\n    ], \n    \"doll-sized\": [\n        \"JJ\"\n    ], \n    \"arctic\": [\n        \"JJ\"\n    ], \n    \"ex-truck\": [\n        \"JJ\"\n    ], \n    \"Alumina\": [\n        \"NNP\"\n    ], \n    \"aperture\": [\n        \"NN\"\n    ], \n    \"dirt-catcher\": [\n        \"NN\"\n    ], \n    \"quashing\": [\n        \"VBG\"\n    ], \n    \"Fraumeni\": [\n        \"NNP\"\n    ], \n    \"much-needed\": [\n        \"JJ\"\n    ], \n    \"formality\": [\n        \"NN\"\n    ], \n    \"Vienot\": [\n        \"NNP\"\n    ], \n    \"patrolmen\": [\n        \"NNS\"\n    ], \n    \"FMR\": [\n        \"NNP\"\n    ], \n    \"Nimitz\": [\n        \"NNP\"\n    ], \n    \"admissions\": [\n        \"NNS\"\n    ], \n    \"Lizhi\": [\n        \"NNP\"\n    ], \n    \"controlling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"FMI\": [\n        \"NNP\"\n    ], \n    \"Rudkoebing\": [\n        \"NNP\"\n    ], \n    \"projective\": [\n        \"JJ\"\n    ], \n    \"Harcourt\": [\n        \"NNP\"\n    ], \n    \"FMC\": [\n        \"NNP\"\n    ], \n    \"town\": [\n        \"NN\"\n    ], \n    \"dey\": [\n        \"PRP\"\n    ], \n    \"Shrontz\": [\n        \"NNP\"\n    ], \n    \"der\": [\n        \"NNP\", \n        \"JJR\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"des\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"solenoid\": [\n        \"NN\"\n    ], \n    \"Byron\": [\n        \"NNP\"\n    ], \n    \"dew\": [\n        \"NN\"\n    ], \n    \"dei\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"del\": [\n        \"NNP\", \n        \"DT\", \n        \"FW\"\n    ], \n    \"head-in-the-clouds\": [\n        \"JJ\"\n    ], \n    \"den\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ProCyte\": [\n        \"NNP\"\n    ], \n    \"strategies\": [\n        \"NNS\"\n    ], \n    \"aspirant\": [\n        \"NN\"\n    ], \n    \"tows\": [\n        \"NNS\"\n    ], \n    \"def\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"wails\": [\n        \"NNS\"\n    ], \n    \"purchaser\": [\n        \"NN\"\n    ], \n    \"purchases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dandy\": [\n        \"JJ\"\n    ], \n    \"Rilke\": [\n        \"NNP\"\n    ], \n    \"sound-alike\": [\n        \"JJ\"\n    ], \n    \"galleries\": [\n        \"NNS\"\n    ], \n    \"Aldo\": [\n        \"NNP\"\n    ], \n    \"Schwarzwaldklinik\": [\n        \"NNP\"\n    ], \n    \"purchased\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"KCRA\": [\n        \"NNP\"\n    ], \n    \"Injury\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Alda\": [\n        \"NNP\"\n    ], \n    \"Kerkorian-owned\": [\n        \"JJ\"\n    ], \n    \"maturing\": [\n        \"VBG\"\n    ], \n    \"EC-made\": [\n        \"JJ\"\n    ], \n    \"drained\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"sec.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"showmanship\": [\n        \"NN\"\n    ], \n    \"automatic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"self-control\": [\n        \"NN\"\n    ], \n    \"unclothed\": [\n        \"JJ\"\n    ], \n    \"Vinegar\": [\n        \"NNP\"\n    ], \n    \"big-risk\": [\n        \"JJ\"\n    ], \n    \"Subdivision\": [\n        \"NNP\"\n    ], \n    \"Hip-pocket\": [\n        \"JJ\"\n    ], \n    \"soutane\": [\n        \"NN\"\n    ], \n    \"revolutionizing\": [\n        \"VBG\"\n    ], \n    \"blacker\": [\n        \"JJR\"\n    ], \n    \"surfactants\": [\n        \"NNS\"\n    ], \n    \"Eurobonds\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"disquieting\": [\n        \"JJ\"\n    ], \n    \"red-cheeked\": [\n        \"JJ\"\n    ], \n    \"Collecting\": [\n        \"NNP\"\n    ], \n    \"Protectionist\": [\n        \"JJ\"\n    ], \n    \"Dillon\": [\n        \"NNP\"\n    ], \n    \"Shivering\": [\n        \"VBG\"\n    ], \n    \"Rhythmic\": [\n        \"JJ\"\n    ], \n    \"mass-merchandise\": [\n        \"NN\"\n    ], \n    \"IBC\\\\/Donoghue\": [\n        \"NN\"\n    ], \n    \"Dillow\": [\n        \"NNP\"\n    ], \n    \"nonshifters\": [\n        \"NNS\"\n    ], \n    \"foretell\": [\n        \"VB\"\n    ], \n    \"Candice\": [\n        \"NNP\"\n    ], \n    \"H.W.\": [\n        \"NNP\"\n    ], \n    \"methadone\": [\n        \"NN\"\n    ], \n    \"pay\": [\n        \"VB\", \n        \"VBD\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"pleasure\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"four-wheel-drive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Jazz\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stains\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"co-chairperson\": [\n        \"NN\"\n    ], \n    \"carousing\": [\n        \"NN\"\n    ], \n    \"remade\": [\n        \"VBN\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Richmond-Watson\": [\n        \"NNP\"\n    ], \n    \"Bisque\": [\n        \"NN\"\n    ], \n    \"Demoiselles\": [\n        \"NNP\"\n    ], \n    \"lats\": [\n        \"NNS\"\n    ], \n    \"iodinated\": [\n        \"VBN\"\n    ], \n    \"FLYING\": [\n        \"VBG\"\n    ], \n    \"Covitz\": [\n        \"NNP\"\n    ], \n    \"handheld\": [\n        \"JJ\"\n    ], \n    \"late\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Quest\": [\n        \"NNP\"\n    ], \n    \"PABA\": [\n        \"NN\"\n    ], \n    \"compilation\": [\n        \"NN\"\n    ], \n    \"jostled\": [\n        \"VBD\"\n    ], \n    \"lath\": [\n        \"NN\"\n    ], \n    \"dolls\": [\n        \"NNS\"\n    ], \n    \"seeking\": [\n        \"VBG\"\n    ], \n    \"Barbarians\": [\n        \"NNP\"\n    ], \n    \"Reagan-like\": [\n        \"JJ\"\n    ], \n    \"Vatican\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"unauthentic\": [\n        \"JJ\"\n    ], \n    \"Cruzan\": [\n        \"NNP\"\n    ], \n    \"Oil-tool\": [\n        \"NN\"\n    ], \n    \"crispness\": [\n        \"NN\"\n    ], \n    \"too-large\": [\n        \"JJ\"\n    ], \n    \"right-hand\": [\n        \"JJ\"\n    ], \n    \"Siedenburg\": [\n        \"NNP\"\n    ], \n    \"boisterous\": [\n        \"JJ\"\n    ], \n    \"monsoon\": [\n        \"NN\"\n    ], \n    \"harboring\": [\n        \"VBG\"\n    ], \n    \"Edmonton\": [\n        \"NNP\"\n    ], \n    \"Hmmm\": [\n        \"UH\"\n    ], \n    \"Skase\": [\n        \"NNP\"\n    ], \n    \"dumbbells\": [\n        \"NNS\"\n    ], \n    \"Strictly\": [\n        \"RB\"\n    ], \n    \"foxes\": [\n        \"NNS\"\n    ], \n    \"deployable\": [\n        \"JJ\"\n    ], \n    \"Waiting\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Plaumann\": [\n        \"NNP\"\n    ], \n    \"antibody-making\": [\n        \"JJ\"\n    ], \n    \"dignitaries\": [\n        \"NNS\"\n    ], \n    \"peltry\": [\n        \"NN\"\n    ], \n    \"Wires\": [\n        \"NNS\"\n    ], \n    \"funding\": [\n        \"NN\", \n        \"VBG\", \n        \"NN|JJ\"\n    ], \n    \"trade-preparatory\": [\n        \"NN\"\n    ], \n    \"Victrola\": [\n        \"NN\"\n    ], \n    \"Rathbone\": [\n        \"NNP\"\n    ], \n    \"pigeon\": [\n        \"NN\"\n    ], \n    \"projected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Sweathouse\": [\n        \"NN\"\n    ], \n    \"hundred-odd\": [\n        \"JJ\"\n    ], \n    \"sub-Saharan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"KC-135s\": [\n        \"NNS\"\n    ], \n    \"Bushell\": [\n        \"NNP\"\n    ], \n    \"stewards\": [\n        \"NNS\"\n    ], \n    \"arclike\": [\n        \"JJ\"\n    ], \n    \"pathetic\": [\n        \"JJ\"\n    ], \n    \"propfans\": [\n        \"NNS\"\n    ], \n    \"pleasant\": [\n        \"JJ\"\n    ], \n    \"melodies\": [\n        \"NNS\"\n    ], \n    \"contrivance\": [\n        \"NN\"\n    ], \n    \"Arkabutla\": [\n        \"NNP\"\n    ], \n    \"Tax-exempt\": [\n        \"JJ\"\n    ], \n    \"Rumack\": [\n        \"NNP\"\n    ], \n    \"dribbled\": [\n        \"VBD\"\n    ], \n    \"MVestment\": [\n        \"NNP\"\n    ], \n    \"co-operated\": [\n        \"VBD\"\n    ], \n    \"six-months\": [\n        \"NNS\"\n    ], \n    \"lotions\": [\n        \"NNS\"\n    ], \n    \"Over-50\": [\n        \"JJ\"\n    ], \n    \"disclaimer\": [\n        \"NN\"\n    ], \n    \"drawing-room\": [\n        \"NN\"\n    ], \n    \"co-operates\": [\n        \"VBZ\"\n    ], \n    \"Rover\": [\n        \"NNP\"\n    ], \n    \"FH-77B\": [\n        \"NNP\"\n    ], \n    \"Syndrome\": [\n        \"NNP\"\n    ], \n    \"netted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"waged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"non-volatile\": [\n        \"JJ\"\n    ], \n    \"Participants\": [\n        \"NNS\"\n    ], \n    \"Lithe\": [\n        \"JJ\"\n    ], \n    \"Ethan\": [\n        \"NNP\"\n    ], \n    \"campground\": [\n        \"NN\"\n    ], \n    \"gripping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"wages\": [\n        \"NNS\"\n    ], \n    \"wager\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"modish\": [\n        \"JJ\"\n    ], \n    \"joint-venture\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"near-at-hand\": [\n        \"JJ\"\n    ], \n    \"Algeria\": [\n        \"NNP\"\n    ], \n    \"SAATCHI\": [\n        \"NNP\"\n    ], \n    \"Anti-dumping\": [\n        \"JJ\"\n    ], \n    \"construct\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"obligatory\": [\n        \"JJ\"\n    ], \n    \"paint\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pyxis\": [\n        \"NNP\"\n    ], \n    \"mama\": [\n        \"NN\"\n    ], \n    \"almost-industry\": [\n        \"NN\"\n    ], \n    \"Durkheim\": [\n        \"NNP\"\n    ], \n    \"STERLING\": [\n        \"NNP\"\n    ], \n    \"Modifications\": [\n        \"NNS\"\n    ], \n    \"darkroom\": [\n        \"NN\"\n    ], \n    \"Deltec\": [\n        \"NNP\"\n    ], \n    \"needle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"defused\": [\n        \"VBN\"\n    ], \n    \"glycerin\": [\n        \"NN\"\n    ], \n    \"jaggedly\": [\n        \"RB\"\n    ], \n    \"bunter\": [\n        \"NN\"\n    ], \n    \"anti-China\": [\n        \"JJ\"\n    ], \n    \"gruesome\": [\n        \"JJ\"\n    ], \n    \"stirs\": [\n        \"VBZ\"\n    ], \n    \"Microphones\": [\n        \"NNS\"\n    ], \n    \"Thiebaud\": [\n        \"NNP\"\n    ], \n    \"b\": [\n        \"NN\", \n        \"LS\"\n    ], \n    \"Berland\": [\n        \"NNP\"\n    ], \n    \"three-day-old\": [\n        \"JJ\"\n    ], \n    \"Commercializing\": [\n        \"VBG\"\n    ], \n    \"spirited\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"tensionless\": [\n        \"JJ\"\n    ], \n    \"bohemian\": [\n        \"JJ\"\n    ], \n    \"Accounting-profession\": [\n        \"NN\"\n    ], \n    \"polishing\": [\n        \"VBG\", \n        \"NN\", \n        \"VBG|NN\"\n    ], \n    \"Tabernacle\": [\n        \"NNP\"\n    ], \n    \"U.S.-dominated\": [\n        \"JJ\"\n    ], \n    \"Ito\": [\n        \"NNP\"\n    ], \n    \"Henrietta\": [\n        \"NNP\"\n    ], \n    \"disunion\": [\n        \"NN\"\n    ], \n    \"concludes\": [\n        \"VBZ\"\n    ], \n    \"confirms\": [\n        \"VBZ\"\n    ], \n    \"paths\": [\n        \"NNS\"\n    ], \n    \"providers\": [\n        \"NNS\"\n    ], \n    \"escapades\": [\n        \"NNS\"\n    ], \n    \"trip\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"assails\": [\n        \"VBZ\"\n    ], \n    \"aniseikonic\": [\n        \"JJ\"\n    ], \n    \"Derwin\": [\n        \"NNP\"\n    ], \n    \"Mayoral\": [\n        \"JJ\"\n    ], \n    \"iself\": [\n        \"NN\"\n    ], \n    \"Constantinople\": [\n        \"NNP\"\n    ], \n    \"Aventino\": [\n        \"NNP\"\n    ], \n    \"bull-sessions\": [\n        \"NNS\"\n    ], \n    \"townhouses\": [\n        \"NNS\"\n    ], \n    \"Amityville\": [\n        \"NNP\"\n    ], \n    \"Greenmoss\": [\n        \"NNP\"\n    ], \n    \"Revolutionary\": [\n        \"NNP\"\n    ], \n    \"N-acetylcysteine\": [\n        \"NNP\"\n    ], \n    \"bottle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"most-strident\": [\n        \"JJ\"\n    ], \n    \"uncommunicative\": [\n        \"JJ\"\n    ], \n    \"Eriskay\": [\n        \"NNP\"\n    ], \n    \"Governor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"inexact\": [\n        \"JJ\"\n    ], \n    \"single-premium\": [\n        \"JJ\"\n    ], \n    \"significant\": [\n        \"JJ\"\n    ], \n    \"farces\": [\n        \"NNS\"\n    ], \n    \"kiddies\": [\n        \"NNS\"\n    ], \n    \"unavailable\": [\n        \"JJ\"\n    ], \n    \"First-round\": [\n        \"JJ\"\n    ], \n    \"Egypt\": [\n        \"NNP\"\n    ], \n    \"Consistent\": [\n        \"JJ\"\n    ], \n    \"charitably\": [\n        \"RB\"\n    ], \n    \"Levitt\": [\n        \"NNP\"\n    ], \n    \"charitable\": [\n        \"JJ\"\n    ], \n    \"cramped\": [\n        \"JJ\"\n    ], \n    \"V-6-equipped\": [\n        \"JJ\"\n    ], \n    \"Robinson\": [\n        \"NNP\"\n    ], \n    \"founds\": [\n        \"VBZ\"\n    ], \n    \"FLORIDA\": [\n        \"NNP\"\n    ], \n    \"health-care-product\": [\n        \"NN\"\n    ], \n    \"carefully\": [\n        \"RB\"\n    ], \n    \"Francois\": [\n        \"NNP\"\n    ], \n    \"Aleksei\": [\n        \"NNP\"\n    ], \n    \"one-yen\": [\n        \"JJ\"\n    ], \n    \"Furlaud\": [\n        \"NNP\"\n    ], \n    \"rebuttals\": [\n        \"NNS\"\n    ], \n    \"worthy\": [\n        \"JJ\"\n    ], \n    \"up-and-coming\": [\n        \"JJ\"\n    ], \n    \"Granges\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Granger\": [\n        \"NNP\"\n    ], \n    \"suspensor\": [\n        \"NN\"\n    ], \n    \"Zbigniew\": [\n        \"NNP\"\n    ], \n    \"Coldwater\": [\n        \"NNP\"\n    ], \n    \"gun-shot\": [\n        \"NN\"\n    ], \n    \"Maggetto\": [\n        \"NNP\"\n    ], \n    \"batted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"batten\": [\n        \"NN\"\n    ], \n    \"sepulchred\": [\n        \"VBN\"\n    ], \n    \"high-handed\": [\n        \"JJ\"\n    ], \n    \"courage\": [\n        \"NN\"\n    ], \n    \"hereabout\": [\n        \"JJ\"\n    ], \n    \"Janice\": [\n        \"NNP\"\n    ], \n    \"restart\": [\n        \"VB\"\n    ], \n    \"Laenderbank\": [\n        \"NNP\"\n    ], \n    \"Saying\": [\n        \"VBG\"\n    ], \n    \"Rightly\": [\n        \"RB\"\n    ], \n    \"Campbell-Mithun-Esty\": [\n        \"NNP\"\n    ], \n    \"Lifting\": [\n        \"VBG\"\n    ], \n    \"Floridabanc\": [\n        \"NNP\"\n    ], \n    \"crabmeat\": [\n        \"NN\"\n    ], \n    \"six-month\": [\n        \"JJ\"\n    ], \n    \"Marion\": [\n        \"NNP\"\n    ], \n    \"supercede\": [\n        \"VBP\"\n    ], \n    \"child-parent\": [\n        \"JJ\"\n    ], \n    \"improvisatory\": [\n        \"JJ\"\n    ], \n    \"animized\": [\n        \"VBN\"\n    ], \n    \"Create\": [\n        \"VB\"\n    ], \n    \"double-crosser\": [\n        \"JJ\"\n    ], \n    \"Linter\": [\n        \"NNP\"\n    ], \n    \"Chaos\": [\n        \"NNP\"\n    ], \n    \"arouse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"large-capitalization\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hinton\": [\n        \"NNP\"\n    ], \n    \"Lolly\": [\n        \"NNP\"\n    ], \n    \"feared\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Witkin\": [\n        \"NNP\"\n    ], \n    \"sleep-deprived\": [\n        \"JJ\"\n    ], \n    \"Requiem\": [\n        \"NNP\"\n    ], \n    \"LONGS\": [\n        \"NNP\"\n    ], \n    \"Indexing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Osborne\": [\n        \"NNP\"\n    ], \n    \"CTAs\": [\n        \"NNS\"\n    ], \n    \"Accepting\": [\n        \"VBG\"\n    ], \n    \"ultra-fast\": [\n        \"JJ\"\n    ], \n    \"alimony\": [\n        \"NN\"\n    ], \n    \"slow-growth\": [\n        \"NN\"\n    ], \n    \"Monopoly\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"rubbin\": [\n        \"VBG\"\n    ], \n    \"Programming\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Malinovsky\": [\n        \"NNP\"\n    ], \n    \"Unprovable\": [\n        \"JJ\"\n    ], \n    \"pagoda\": [\n        \"NN\"\n    ], \n    \"fripperies\": [\n        \"NNS\"\n    ], \n    \"Kolakowski\": [\n        \"NNP\"\n    ], \n    \"endows\": [\n        \"VBZ\"\n    ], \n    \"Costello\": [\n        \"NNP\"\n    ], \n    \"dualism\": [\n        \"NN\"\n    ], \n    \"Unexpected\": [\n        \"JJ\"\n    ], \n    \"journeyed\": [\n        \"VBD\"\n    ], \n    \"Buckman\": [\n        \"NNP\"\n    ], \n    \"LaBow\": [\n        \"NNP\"\n    ], \n    \"tightens\": [\n        \"VBZ\"\n    ], \n    \"share...\": [\n        \":\"\n    ], \n    \"Telford-made\": [\n        \"JJ\"\n    ], \n    \"conversion-by-renovation\": [\n        \"JJ\"\n    ], \n    \"McGehee\": [\n        \"NNP\"\n    ], \n    \"Inventories\": [\n        \"NNS\"\n    ], \n    \"telegraphing\": [\n        \"VBG\"\n    ], \n    \"best-laid\": [\n        \"JJ\"\n    ], \n    \"Temperature\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"dwindle\": [\n        \"VB\"\n    ], \n    \"recycling\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"smother\": [\n        \"VB\"\n    ], \n    \"newborn\": [\n        \"JJ\"\n    ], \n    \"shutdown\": [\n        \"NN\"\n    ], \n    \"Taber\": [\n        \"NNP\"\n    ], \n    \"esophagus\": [\n        \"NN\"\n    ], \n    \"Disney\": [\n        \"NNP\"\n    ], \n    \"Thyroglobulin\": [\n        \"NN\"\n    ], \n    \"platinum\": [\n        \"NN\"\n    ], \n    \"Laicos\": [\n        \"NNP\"\n    ], \n    \"Gilley\": [\n        \"NNP\"\n    ], \n    \"dovetail\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Gardiner\": [\n        \"NNP\"\n    ], \n    \"life-of-contract\": [\n        \"JJ\"\n    ], \n    \"Edmunston\": [\n        \"NNP\"\n    ], \n    \"Gilles\": [\n        \"NNP\"\n    ], \n    \"Etablissements\": [\n        \"NNP\"\n    ], \n    \"Sssshoo\": [\n        \"NN\"\n    ], \n    \"secret\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"navigate\": [\n        \"VB\"\n    ], \n    \"Bancorp\": [\n        \"NNP\"\n    ], \n    \"NEEDS\": [\n        \"NNS\"\n    ], \n    \"Rashid\": [\n        \"NNP\"\n    ], \n    \"Bally\": [\n        \"NNP\"\n    ], \n    \"cruelty\": [\n        \"NN\"\n    ], \n    \"priced\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Kupcinet\": [\n        \"NNP\"\n    ], \n    \"Connaught\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"AMR-Delta\": [\n        \"NNP\"\n    ], \n    \"motion-picture\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"neckties\": [\n        \"NNS\"\n    ], \n    \"HEI\": [\n        \"NNP\"\n    ], \n    \"Feed\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Kelseyville\": [\n        \"NNP\"\n    ], \n    \"thermoelectric\": [\n        \"JJ\"\n    ], \n    \"classifications\": [\n        \"NNS\"\n    ], \n    \"Charls\": [\n        \"NNP\"\n    ], \n    \"crutch\": [\n        \"NN\"\n    ], \n    \"Image-processing\": [\n        \"NN\"\n    ], \n    \"sexuality\": [\n        \"NN\"\n    ], \n    \"careers\": [\n        \"NNS\"\n    ], \n    \"Fees\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"fun\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Clapp\": [\n        \"NNP\"\n    ], \n    \"irised\": [\n        \"VBN\"\n    ], \n    \"guarantor\": [\n        \"NN\"\n    ], \n    \"pertinence\": [\n        \"NN\"\n    ], \n    \"larger\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Khan\": [\n        \"NNP\"\n    ], \n    \"Price-Fleming\": [\n        \"NNP\"\n    ], \n    \"shapeless\": [\n        \"JJ\"\n    ], \n    \"Bismarck\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Clandestine\": [\n        \"JJ\"\n    ], \n    \"encountered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"seven-volume\": [\n        \"JJ\"\n    ], \n    \"November\\\\\": [\n        \"JJ\"\n    ], \n    \"ICBM\": [\n        \"NNP\"\n    ], \n    \"at-bats\": [\n        \"NNS\"\n    ], \n    \"defined-contribution\": [\n        \"NN\"\n    ], \n    \"facetiously\": [\n        \"RB\"\n    ], \n    \"anaesthesia\": [\n        \"NN\"\n    ], \n    \"Bleaching\": [\n        \"VBG\"\n    ], \n    \"low-slung\": [\n        \"JJ\"\n    ], \n    \"emphasize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"nosebag\": [\n        \"NN\"\n    ], \n    \"Follows\": [\n        \"NNP\"\n    ], \n    \"Jerritts\": [\n        \"NNP\"\n    ], \n    \"Filmakers\": [\n        \"NNPS\"\n    ], \n    \"sapiens\": [\n        \"JJ\"\n    ], \n    \"belfry\": [\n        \"NN\"\n    ], \n    \"assignment\": [\n        \"NN\"\n    ], \n    \"bed-liner\": [\n        \"NN\"\n    ], \n    \"countersued\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"heliports\": [\n        \"NNS\"\n    ], \n    \"newscasts\": [\n        \"NNS\"\n    ], \n    \"Adjust\": [\n        \"VB\"\n    ], \n    \"Marinas\": [\n        \"NNS\"\n    ], \n    \"exerts\": [\n        \"VBZ\"\n    ], \n    \"aggregate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Flight\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"considerately\": [\n        \"RB\"\n    ], \n    \"Reding\": [\n        \"NN\"\n    ], \n    \"Cutlass\": [\n        \"NNP\"\n    ], \n    \"shaded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"rearm\": [\n        \"VB\"\n    ], \n    \"halve\": [\n        \"VB\"\n    ], \n    \"Toole\": [\n        \"NNP\"\n    ], \n    \"spent\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"unannounced\": [\n        \"JJ\"\n    ], \n    \"howe\": [\n        \"WRB\"\n    ], \n    \"rears\": [\n        \"VBZ\"\n    ], \n    \"sulking\": [\n        \"VBG\"\n    ], \n    \"Tools\": [\n        \"NNPS\"\n    ], \n    \"spend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kumble\": [\n        \"NNP\"\n    ], \n    \"singlehandedly\": [\n        \"RB\"\n    ], \n    \"resistive\": [\n        \"JJ\"\n    ], \n    \"Farnell\": [\n        \"NNP\"\n    ], \n    \"untrammeled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Cabana\": [\n        \"NNP\"\n    ], \n    \"soft-headed\": [\n        \"JJ\"\n    ], \n    \"atomic\": [\n        \"JJ\"\n    ], \n    \"diaphragmic\": [\n        \"JJ\"\n    ], \n    \"mob\": [\n        \"NN\"\n    ], \n    \"Include\": [\n        \"VB\"\n    ], \n    \"injuries\": [\n        \"NNS\"\n    ], \n    \"punted\": [\n        \"VBD\"\n    ], \n    \"GREW\": [\n        \"VBD\"\n    ], \n    \"Lavity\": [\n        \"NNP\"\n    ], \n    \"Jungho\": [\n        \"NNP\"\n    ], \n    \"GREY\": [\n        \"NNP\"\n    ], \n    \"Sheraton-Dallas\": [\n        \"NNP\"\n    ], \n    \"regimented\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"impoverished\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"animosities\": [\n        \"NNS\"\n    ], \n    \"hates\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"luxury\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"adversaries\": [\n        \"NNS\"\n    ], \n    \"Loews\": [\n        \"NNP\"\n    ], \n    \"Jiffy-Couch-a-Bed\": [\n        \"NNP\"\n    ], \n    \"rebound\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"jerked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Loewy\": [\n        \"NNP\"\n    ], \n    \"Loewe\": [\n        \"NNP\"\n    ], \n    \"expecially\": [\n        \"RB\"\n    ], \n    \"Euroconsumer\": [\n        \"NN\"\n    ], \n    \"messengers\": [\n        \"NNS\"\n    ], \n    \"Brierley\": [\n        \"NNP\"\n    ], \n    \"Classy\": [\n        \"NNP\"\n    ], \n    \"goldstock\": [\n        \"NN\"\n    ], \n    \"Dali-esque\": [\n        \"JJ\"\n    ], \n    \"Loewi\": [\n        \"NNP\"\n    ], \n    \"Laudably\": [\n        \"RB\"\n    ], \n    \"darling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"besiegers\": [\n        \"NNS\"\n    ], \n    \"coarsened\": [\n        \"VBN\"\n    ], \n    \"indication\": [\n        \"NN\"\n    ], \n    \"moccasins\": [\n        \"NNS\"\n    ], \n    \"Guber-Peter\": [\n        \"NNP\"\n    ], \n    \"Java\": [\n        \"NNP\"\n    ], \n    \"Athearn\": [\n        \"NNP\"\n    ], \n    \"MinisPort\": [\n        \"NNP\"\n    ], \n    \"inching\": [\n        \"VBG\"\n    ], \n    \"back\": [\n        \"RB\", \n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RP\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"baci\": [\n        \"NNS\"\n    ], \n    \"Kerosene\": [\n        \"NN\"\n    ], \n    \"samplings\": [\n        \"NNS\"\n    ], \n    \"De-Kooning\": [\n        \"NNP\"\n    ], \n    \"sneakers\": [\n        \"NNS\"\n    ], \n    \"bogus\": [\n        \"JJ\"\n    ], \n    \"monthsit\": [\n        \"NN\"\n    ], \n    \"Unificationists\": [\n        \"NNS\"\n    ], \n    \"segregating\": [\n        \"VBG\"\n    ], \n    \"invade\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"resolutely\": [\n        \"RB\"\n    ], \n    \"Bausch\": [\n        \"NNP\"\n    ], \n    \"viscosity\": [\n        \"NN\"\n    ], \n    \"lasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mettlesome\": [\n        \"JJ\"\n    ], \n    \"Syndication\": [\n        \"NNP\"\n    ], \n    \"effusive\": [\n        \"JJ\"\n    ], \n    \"most-admired\": [\n        \"JJ\"\n    ], \n    \"racetracks\": [\n        \"NNS\"\n    ], \n    \"newsprints\": [\n        \"NNS\"\n    ], \n    \"Motivated\": [\n        \"VBN\"\n    ], \n    \"crone\": [\n        \"NN\"\n    ], \n    \"Strippers\": [\n        \"NNS\"\n    ], \n    \"Buckles\": [\n        \"NNP\"\n    ], \n    \"Alvin\": [\n        \"NNP\"\n    ], \n    \"Voters\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Forbidden\": [\n        \"NNP\"\n    ], \n    \"stockholdings\": [\n        \"NNS\"\n    ], \n    \"offshoot\": [\n        \"NN\"\n    ], \n    \"telegraphers\": [\n        \"NNS\"\n    ], \n    \"Waste-management\": [\n        \"NN\"\n    ], \n    \"bore\\\\\": [\n        \"VBP\"\n    ], \n    \"Photofinishing\": [\n        \"NNP\"\n    ], \n    \"Shares\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Sharer\": [\n        \"NNP\"\n    ], \n    \"Work-outs\": [\n        \"NNS\"\n    ], \n    \"Drybred\": [\n        \"NNP\"\n    ], \n    \"ministrations\": [\n        \"NNS\"\n    ], \n    \"Hydra-matic\": [\n        \"JJ\"\n    ], \n    \"Buckley\": [\n        \"NNP\"\n    ], \n    \"Mehta\": [\n        \"NNP\"\n    ], \n    \"jockey\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"conduits\": [\n        \"NNS\"\n    ], \n    \"bores\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"borer\": [\n        \"NN\"\n    ], \n    \"junk-yard\": [\n        \"NN\"\n    ], \n    \"pared\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Unification\": [\n        \"NNP\"\n    ], \n    \"re-introduction\": [\n        \"NN\"\n    ], \n    \"Payback\": [\n        \"NN\"\n    ], \n    \"bored\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Come\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\", \n        \"NNP\"\n    ], \n    \"Tatian\": [\n        \"NNP\"\n    ], \n    \"Aqua-Ban\": [\n        \"NNP\"\n    ], \n    \"anti-lobbyist\": [\n        \"NN\"\n    ], \n    \"Slavery\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"timetable\": [\n        \"NN\"\n    ], \n    \"Mudge\": [\n        \"NNP\"\n    ], \n    \"Psalm\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Bostitch\": [\n        \"NNP\"\n    ], \n    \"Risques\": [\n        \"NNP\"\n    ], \n    \"nutshell\": [\n        \"NN\"\n    ], \n    \"excision\": [\n        \"NN\"\n    ], \n    \"Norville\": [\n        \"NNP\"\n    ], \n    \"rejection\": [\n        \"NN\"\n    ], \n    \"divans\": [\n        \"NNS\"\n    ], \n    \"Streets\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Knudson\": [\n        \"NNP\"\n    ], \n    \"HAWLEY\": [\n        \"NNP\"\n    ], \n    \"skittish\": [\n        \"JJ\"\n    ], \n    \"nepotism\": [\n        \"NN\"\n    ], \n    \"Mon-Goddess\": [\n        \"NNP\"\n    ], \n    \"possessor\": [\n        \"NN\"\n    ], \n    \"engineering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"secretions\": [\n        \"NNS\"\n    ], \n    \"free-burning\": [\n        \"JJ\"\n    ], \n    \"organdy\": [\n        \"NN\"\n    ], \n    \"denying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hydrous\": [\n        \"JJ\"\n    ], \n    \"commonest\": [\n        \"JJS\"\n    ], \n    \"dimmed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Crafton-Preyer\": [\n        \"NNP\"\n    ], \n    \"Shelters\": [\n        \"NNPS\"\n    ], \n    \"dimmer\": [\n        \"RB\", \n        \"JJR\"\n    ], \n    \"Solvay\": [\n        \"NNP\"\n    ], \n    \"toy-making\": [\n        \"JJ\"\n    ], \n    \"cartoonists\": [\n        \"NNS\"\n    ], \n    \"gulag\": [\n        \"NN\"\n    ], \n    \"SITE\": [\n        \"NN\"\n    ], \n    \"LeBaron\": [\n        \"NNP\"\n    ], \n    \"stockmarket\": [\n        \"NN\"\n    ], \n    \"Cindy\": [\n        \"NNP\"\n    ], \n    \"Rupert\": [\n        \"NNP\"\n    ], \n    \"Comanche\": [\n        \"NNP\"\n    ], \n    \"Gus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"theopylline\": [\n        \"NN\"\n    ], \n    \"voting\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Gur\": [\n        \"NNP\"\n    ], \n    \"strolled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"admiring\": [\n        \"VBG\"\n    ], \n    \"parrots\": [\n        \"NNS\"\n    ], \n    \"Roots\": [\n        \"NNPS\"\n    ], \n    \"minors\": [\n        \"NNS\"\n    ], \n    \"Surprises\": [\n        \"NNS\"\n    ], \n    \"satellite-TV\": [\n        \"JJ\"\n    ], \n    \"golfed\": [\n        \"VBN\"\n    ], \n    \"overly\": [\n        \"RB\"\n    ], \n    \"turnarounds\": [\n        \"NNS\"\n    ], \n    \"Corp.:8.30\": [\n        \"NNP\"\n    ], \n    \"golfer\": [\n        \"NN\"\n    ], \n    \"disintegration\": [\n        \"NN\"\n    ], \n    \"FortressEurope\": [\n        \"NN\"\n    ], \n    \"Surprised\": [\n        \"VBN\"\n    ], \n    \"company-wide\": [\n        \"JJ\"\n    ], \n    \"graves\": [\n        \"NNS\"\n    ], \n    \"graver\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Business\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Directionality\": [\n        \"NN\"\n    ], \n    \"peanut\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Lucky\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Kartalia\": [\n        \"NNP\"\n    ], \n    \"Siemens\": [\n        \"NNP\"\n    ], \n    \"chaps\": [\n        \"NNS\"\n    ], \n    \"Exchanges\": [\n        \"NNS\"\n    ], \n    \"graven\": [\n        \"JJ\"\n    ], \n    \"gravel\": [\n        \"NN\"\n    ], \n    \"low-boiling\": [\n        \"JJ\"\n    ], \n    \"ISTAT\": [\n        \"NNP\"\n    ], \n    \"Erdmann\": [\n        \"NN\"\n    ], \n    \"Hoses\": [\n        \"NNS\"\n    ], \n    \"assay\": [\n        \"NN\"\n    ], \n    \"WRC\": [\n        \"NNP\"\n    ], \n    \"product-inspection\": [\n        \"JJ\"\n    ], \n    \"Ptachia\": [\n        \"NNP\"\n    ], \n    \"furloughed\": [\n        \"VBN\"\n    ], \n    \"Hosea\": [\n        \"NNP\"\n    ], \n    \"assai\": [\n        \"FW\"\n    ], \n    \"reverberate\": [\n        \"VB\"\n    ], \n    \"dial-tone\": [\n        \"NN\"\n    ], \n    \"string-of-pearls\": [\n        \"JJ\"\n    ], \n    \"severely\": [\n        \"RB\"\n    ], \n    \"Margaretville\": [\n        \"NN\"\n    ], \n    \"staffs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"respectful\": [\n        \"JJ\"\n    ], \n    \"chap.\": [\n        \"NN\"\n    ], \n    \"Azucena\": [\n        \"NNP\"\n    ], \n    \"midterm\": [\n        \"JJ\"\n    ], \n    \"anachronistic\": [\n        \"JJ\"\n    ], \n    \"mottled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"disbursements\": [\n        \"NNS\"\n    ], \n    \"choppy\": [\n        \"JJ\"\n    ], \n    \"optics\": [\n        \"NNS\"\n    ], \n    \"dimes\": [\n        \"NNS\"\n    ], \n    \"HANOVER\": [\n        \"NNP\"\n    ], \n    \"first-degree\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"quakes\": [\n        \"NNS\"\n    ], \n    \"Maryinsky\": [\n        \"NN\"\n    ], \n    \"HANDICAPPED\": [\n        \"VBN\"\n    ], \n    \"cash-squeeze\": [\n        \"NN\"\n    ], \n    \"egocentric\": [\n        \"JJ\"\n    ], \n    \"Ghadiali\": [\n        \"NNP\"\n    ], \n    \"nests\": [\n        \"NNS\"\n    ], \n    \"Anne\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"suzerainty\": [\n        \"NN\"\n    ], \n    \"skeet\": [\n        \"NN\"\n    ], \n    \"doctrines\": [\n        \"NNS\"\n    ], \n    \"unshelled\": [\n        \"VBN\"\n    ], \n    \"good-faith\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"giving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"worshipping\": [\n        \"VBG\"\n    ], \n    \"Warner-Lambart\": [\n        \"NNP\"\n    ], \n    \"Third-Quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rescheduling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"eatings\": [\n        \"NNS\"\n    ], \n    \"secant\": [\n        \"NN\"\n    ], \n    \"Herford\": [\n        \"NNP\"\n    ], \n    \"group-identities\": [\n        \"NNS\"\n    ], \n    \"Suggested\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"baring\": [\n        \"VBG\"\n    ], \n    \"Housewares\": [\n        \"NNPS\"\n    ], \n    \"corporate-image\": [\n        \"JJ\"\n    ], \n    \"C.J.B.\": [\n        \"NNP\"\n    ], \n    \"Hussein\": [\n        \"NNP\"\n    ], \n    \"Midmorning\": [\n        \"NN\"\n    ], \n    \"remark\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Grammophon\": [\n        \"NNP\"\n    ], \n    \"stalks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"biographies\": [\n        \"NNS\"\n    ], \n    \"McKibben\": [\n        \"NNP\"\n    ], \n    \"aromas\": [\n        \"NNS\"\n    ], \n    \"transpiring\": [\n        \"VBG\"\n    ], \n    \"Open-adoption\": [\n        \"NN\"\n    ], \n    \"rueful\": [\n        \"JJ\"\n    ], \n    \"birthed\": [\n        \"VBN\"\n    ], \n    \"non-disabled\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"named\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Oases\": [\n        \"NNS\"\n    ], \n    \"Specific-Time\": [\n        \"NNP\"\n    ], \n    \"Aerospace-Thomson\": [\n        \"NNP\"\n    ], \n    \"liqueur\": [\n        \"NN\"\n    ], \n    \"trachea\": [\n        \"NN\"\n    ], \n    \"private\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"factory-like\": [\n        \"JJ\"\n    ], \n    \"shoulder-to-shoulder\": [\n        \"JJ\"\n    ], \n    \"names\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Covell\": [\n        \"NNP\"\n    ], \n    \"staple\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"McKeever\": [\n        \"NNP\"\n    ], \n    \"Stancs\": [\n        \"NNP\"\n    ], \n    \"highrises\": [\n        \"NNS\"\n    ], \n    \"Martians\": [\n        \"NNP\"\n    ], \n    \"seamless\": [\n        \"JJ\"\n    ], \n    \"Analyzer\": [\n        \"NNP\"\n    ], \n    \"manufactures\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"oils\": [\n        \"NNS\"\n    ], \n    \"themselves\": [\n        \"PRP\"\n    ], \n    \"Lockheed\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"oily\": [\n        \"JJ\"\n    ], \n    \"assailed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sampson\": [\n        \"NNP\"\n    ], \n    \"WHICH\": [\n        \"WDT\"\n    ], \n    \"pre-Han\": [\n        \"NNP\"\n    ], \n    \"evacuant\": [\n        \"NN\"\n    ], \n    \"Agriculture-ministry\": [\n        \"NN\"\n    ], \n    \"Relief\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Espanol\": [\n        \"NNP\"\n    ], \n    \"arranging\": [\n        \"VBG\"\n    ], \n    \"Australian-Chinese\": [\n        \"JJ\"\n    ], \n    \"harvest\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pathos\": [\n        \"NN\"\n    ], \n    \"free-enterprise\": [\n        \"NN\"\n    ], \n    \"extrapolated\": [\n        \"VBN\"\n    ], \n    \"Lordstown\": [\n        \"NNP\"\n    ], \n    \"Calif.-based\": [\n        \"JJ\"\n    ], \n    \"Managers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Nationalist\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"crocked\": [\n        \"JJ\"\n    ], \n    \"high-class\": [\n        \"JJ\"\n    ], \n    \"instantaneously\": [\n        \"RB\"\n    ], \n    \"unreal\": [\n        \"JJ\"\n    ], \n    \"Nicolo\": [\n        \"NNP\"\n    ], \n    \"praise\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"suttee\": [\n        \"NN\"\n    ], \n    \"unread\": [\n        \"JJ\"\n    ], \n    \"Nationalism\": [\n        \"NN\"\n    ], \n    \"Nicole\": [\n        \"NNP\"\n    ], \n    \"prohibiting\": [\n        \"VBG\"\n    ], \n    \"proportions\": [\n        \"NNS\"\n    ], \n    \"reconstructed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dogtown\": [\n        \"NNP\"\n    ], \n    \"PINDLING\": [\n        \"NNP\"\n    ], \n    \"justifications\": [\n        \"NNS\"\n    ], \n    \"Kerouac\": [\n        \"NNP\"\n    ], \n    \"Moline\": [\n        \"NNP\"\n    ], \n    \"maturities\": [\n        \"NNS\"\n    ], \n    \"daring\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"maitres\": [\n        \"FW\"\n    ], \n    \"Clemenceau\": [\n        \"NNP\"\n    ], \n    \"says.\": [\n        \"VBZ\"\n    ], \n    \"high-art\": [\n        \"JJ\"\n    ], \n    \"Proves\": [\n        \"VBZ\"\n    ], \n    \"Dayan\": [\n        \"NNP\"\n    ], \n    \"airline\": [\n        \"NN\"\n    ], \n    \"buildings\": [\n        \"NNS\"\n    ], \n    \"El-Sadr\": [\n        \"NNP\"\n    ], \n    \"specifications\": [\n        \"NNS\"\n    ], \n    \"Videotron\": [\n        \"NNP\"\n    ], \n    \"philosophy\": [\n        \"NN\"\n    ], \n    \"bothered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nullify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Cynwyd\": [\n        \"NNP\"\n    ], \n    \"frau\": [\n        \"FW\"\n    ], \n    \"unmasks\": [\n        \"VBZ\"\n    ], \n    \"Macrodantin\": [\n        \"NNP\"\n    ], \n    \"Orwell\": [\n        \"NNP\"\n    ], \n    \"Amca\": [\n        \"NNP\"\n    ], \n    \"syndrome\": [\n        \"NN\"\n    ], \n    \"scurvy\": [\n        \"NN\"\n    ], \n    \"Deployment\": [\n        \"NNP\"\n    ], \n    \"Maanen\": [\n        \"NNP\"\n    ], \n    \"one-acter\": [\n        \"JJ\"\n    ], \n    \"vehicle-marketing\": [\n        \"JJ\"\n    ], \n    \"Huffman\": [\n        \"NNP\"\n    ], \n    \"ignite\": [\n        \"VB\"\n    ], \n    \"resurgent\": [\n        \"JJ\"\n    ], \n    \"Molly\": [\n        \"NNP\"\n    ], \n    \"Collor\": [\n        \"NNP\"\n    ], \n    \"non-dividend-bearing\": [\n        \"JJ\"\n    ], \n    \"telephoning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Haruo\": [\n        \"NNP\"\n    ], \n    \"ALLIANCE\": [\n        \"NNP\"\n    ], \n    \"Buddha\": [\n        \"NNP\"\n    ], \n    \"Delco\": [\n        \"NNP\"\n    ], \n    \"roughness\": [\n        \"NN\"\n    ], \n    \"bunch\": [\n        \"NN\"\n    ], \n    \"industries\": [\n        \"NNS\"\n    ], \n    \"revived\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"le\": [\n        \"FW\", \n        \"DT\"\n    ], \n    \"lb\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"unstained\": [\n        \"JJ\"\n    ], \n    \"la\": [\n        \"FW\", \n        \"NNP\", \n        \"DT\", \n        \"NN\"\n    ], \n    \"closely-packed\": [\n        \"JJ\"\n    ], \n    \"lo\": [\n        \"UH\"\n    ], \n    \"Cove\": [\n        \"NNP\"\n    ], \n    \"poeple\": [\n        \"NN\"\n    ], \n    \"Gripped\": [\n        \"VBN\"\n    ], \n    \"Cutbush\": [\n        \"NNP\"\n    ], \n    \"Unfriendly\": [\n        \"JJ\"\n    ], \n    \"revives\": [\n        \"VBZ\"\n    ], \n    \"extinguishers\": [\n        \"NNS\"\n    ], \n    \"criminal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"spreading\": [\n        \"VBG\"\n    ], \n    \"Guinness\": [\n        \"NNP\"\n    ], \n    \"Porto\": [\n        \"NNP\"\n    ], \n    \"PepsiCola\": [\n        \"NNP\"\n    ], \n    \"Colton\": [\n        \"NNP\"\n    ], \n    \"questions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"budget-strapped\": [\n        \"JJ\"\n    ], \n    \"swordfish\": [\n        \"NN\"\n    ], \n    \"muddle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Porta\": [\n        \"NNP\"\n    ], \n    \"Filling\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"LPL\": [\n        \"NNP\"\n    ], \n    \"Kooten\": [\n        \"NNP\"\n    ], \n    \"mandate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Dynascan\": [\n        \"NNP\"\n    ], \n    \"Ports\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"strive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"commmercial\": [\n        \"JJ\"\n    ], \n    \"snowdrift\": [\n        \"NN\"\n    ], \n    \"Stonestown\": [\n        \"NNP\"\n    ], \n    \"turn-out\": [\n        \"JJ\"\n    ], \n    \"Laurentian\": [\n        \"NNP\"\n    ], \n    \"l.\": [\n        \"DT\", \n        \"NN\"\n    ], \n    \"Popularism\": [\n        \"NN\"\n    ], \n    \"handiest\": [\n        \"JJS\"\n    ], \n    \"Honfed\": [\n        \"NNP\"\n    ], \n    \"lingerie\": [\n        \"NN\"\n    ], \n    \"Slickers\": [\n        \"NNPS\"\n    ], \n    \"Weber-controlled\": [\n        \"JJ\"\n    ], \n    \"typewriter\": [\n        \"NN\"\n    ], \n    \"Spaghetti\": [\n        \"NNP\"\n    ], \n    \"fairy-land\": [\n        \"NN\"\n    ], \n    \"Gorky\": [\n        \"NNP\"\n    ], \n    \"clay-like\": [\n        \"JJ\"\n    ], \n    \"Balloon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"restructured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"shriveled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"standardizing\": [\n        \"VBG\"\n    ], \n    \"FDA-defined\": [\n        \"JJ\"\n    ], \n    \"attend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Polyurethane\": [\n        \"NN\"\n    ], \n    \"announcer\": [\n        \"NN\"\n    ], \n    \"announces\": [\n        \"VBZ\"\n    ], \n    \"Boardwalk\": [\n        \"NNP\"\n    ], \n    \"wholly\": [\n        \"RB\"\n    ], \n    \"hr.\": [\n        \"NN\"\n    ], \n    \"insolvent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Avondale\": [\n        \"NNP\"\n    ], \n    \"fondly\": [\n        \"RB\"\n    ], \n    \"marvelled\": [\n        \"VBD\"\n    ], \n    \"Sholom\": [\n        \"NNP\"\n    ], \n    \"hedged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Reimbursement\": [\n        \"NN\"\n    ], \n    \"paramagnet\": [\n        \"NN\"\n    ], \n    \"a-drinking\": [\n        \"NN\"\n    ], \n    \"Kangas\": [\n        \"NNP\"\n    ], \n    \"Greener\": [\n        \"JJR\"\n    ], \n    \"payroll\": [\n        \"NN\"\n    ], \n    \"Minnery\": [\n        \"NNP\"\n    ], \n    \"salami\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"confirmations\": [\n        \"NNS\"\n    ], \n    \"Kinsley\": [\n        \"NNP\"\n    ], \n    \"Amoco-led\": [\n        \"JJ\"\n    ], \n    \"Iberian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"direct-marketing\": [\n        \"NN\"\n    ], \n    \"bleed\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Krzysztof\": [\n        \"NNP\"\n    ], \n    \"Kaixi\": [\n        \"NNP\"\n    ], \n    \"deprived\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"poorer-quality\": [\n        \"JJR\"\n    ], \n    \"Ochs\": [\n        \"NNP\"\n    ], \n    \"overweening\": [\n        \"JJ\"\n    ], \n    \"volens\": [\n        \"FW\"\n    ], \n    \"noncorrosive\": [\n        \"JJ\"\n    ], \n    \"Hanging\": [\n        \"VBG\"\n    ], \n    \"retain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"retail\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"trapeze\": [\n        \"NN\"\n    ], \n    \"deprives\": [\n        \"VBZ\"\n    ], \n    \"Nettleton\": [\n        \"NNP\"\n    ], \n    \"rudely\": [\n        \"RB\"\n    ], \n    \"finest\": [\n        \"JJS\"\n    ], \n    \"fancy-free\": [\n        \"JJ\"\n    ], \n    \"unnaturally\": [\n        \"RB\"\n    ], \n    \"Modrow\": [\n        \"NNP\"\n    ], \n    \"notes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Administration\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Carisbrook\": [\n        \"NNP\"\n    ], \n    \"Yeats\": [\n        \"NNP\"\n    ], \n    \"Unionized\": [\n        \"VBN\"\n    ], \n    \"alleys\": [\n        \"NNS\"\n    ], \n    \"barn-burner\": [\n        \"NN\"\n    ], \n    \"foreclosures\": [\n        \"NNS\"\n    ], \n    \"Careers\": [\n        \"NNS\"\n    ], \n    \"miserably\": [\n        \"RB\"\n    ], \n    \"monkey\": [\n        \"NN\"\n    ], \n    \"air-tickets\": [\n        \"NNS\"\n    ], \n    \"CDBG\": [\n        \"NNP\"\n    ], \n    \"Wives\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Lippincott\": [\n        \"NNP\"\n    ], \n    \"Street-inspired\": [\n        \"JJ\"\n    ], \n    \"messing\": [\n        \"VBG\"\n    ], \n    \"Farmland\": [\n        \"NNP\"\n    ], \n    \"galvanize\": [\n        \"VB\"\n    ], \n    \"Stevenson\": [\n        \"NNP\"\n    ], \n    \"wildest\": [\n        \"JJS\"\n    ], \n    \"Stoic-patristic\": [\n        \"JJ\"\n    ], \n    \"DeVille\": [\n        \"NNP\"\n    ], \n    \"highlands\": [\n        \"NNS\"\n    ], \n    \"AZT-resistant\": [\n        \"JJ\"\n    ], \n    \"Knox-like\": [\n        \"JJ\"\n    ], \n    \"Vogelstein\": [\n        \"NNP\"\n    ], \n    \"Universal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"co-production\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Grevile\": [\n        \"NNP\"\n    ], \n    \"Burton\": [\n        \"NNP\"\n    ], \n    \"Bayne\": [\n        \"NNP\"\n    ], \n    \"T-1000\": [\n        \"NNP\"\n    ], \n    \"Lovingly\": [\n        \"RB\"\n    ], \n    \"teaspoonfuls\": [\n        \"NNS\"\n    ], \n    \"wakes\": [\n        \"VBZ\"\n    ], \n    \"jinks\": [\n        \"NNS\"\n    ], \n    \"bisexual\": [\n        \"JJ\"\n    ], \n    \"tidy\": [\n        \"JJ\"\n    ], \n    \"allotments\": [\n        \"NNS\"\n    ], \n    \"comfortable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tide\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Filming\": [\n        \"NN\"\n    ], \n    \"comfortably\": [\n        \"RB\"\n    ], \n    \"miserable\": [\n        \"JJ\"\n    ], \n    \"countryman\": [\n        \"NN\"\n    ], \n    \"keener\": [\n        \"JJR\"\n    ], \n    \"Grammys\": [\n        \"NNS\"\n    ], \n    \"regenerates\": [\n        \"VBZ\"\n    ], \n    \"microeconomy\": [\n        \"NN\"\n    ], \n    \"Activities\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Uptick\": [\n        \"NN\"\n    ], \n    \"tire-maker\": [\n        \"NN\"\n    ], \n    \"saponins\": [\n        \"NNS\"\n    ], \n    \"Thousand\": [\n        \"NNP\"\n    ], \n    \"billiards\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Disagreement\": [\n        \"NN\"\n    ], \n    \"gravity\": [\n        \"NN\"\n    ], \n    \"provokes\": [\n        \"VBZ\"\n    ], \n    \"referenda\": [\n        \"NN\"\n    ], \n    \"corporate-coverage\": [\n        \"JJ\"\n    ], \n    \"unsettled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"provoked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"underlings\": [\n        \"NNS\"\n    ], \n    \"reciting\": [\n        \"VBG\"\n    ], \n    \"Sheridan\": [\n        \"NNP\"\n    ], \n    \"less-toxic\": [\n        \"JJ\"\n    ], \n    \"tenure\": [\n        \"NN\"\n    ], \n    \"Without\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"once-dry\": [\n        \"JJ\"\n    ], \n    \"handbag\": [\n        \"NN\"\n    ], \n    \"Becker\": [\n        \"NNP\"\n    ], \n    \"LOSES\": [\n        \"VBZ\"\n    ], \n    \"Becket\": [\n        \"NNP\"\n    ], \n    \"third-ranked\": [\n        \"JJ\"\n    ], \n    \"Jensen\": [\n        \"NNP\"\n    ], \n    \"Unified\": [\n        \"NNP\"\n    ], \n    \"Estuary\": [\n        \"NNP\"\n    ], \n    \"enthusiastic\": [\n        \"JJ\"\n    ], \n    \"Landesbank\": [\n        \"NNP\"\n    ], \n    \"Shoals\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Landrum-Griffin\": [\n        \"NNP\"\n    ], \n    \"callers\": [\n        \"NNS\"\n    ], \n    \"Gargantuan\": [\n        \"JJ\"\n    ], \n    \"Honolulu\": [\n        \"NNP\"\n    ], \n    \"improprieties\": [\n        \"NNS\"\n    ], \n    \"verso\": [\n        \"NN\"\n    ], \n    \"supported\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"cruzado\": [\n        \"NN\"\n    ], \n    \"postdoctoral\": [\n        \"JJ\"\n    ], \n    \"chairwoman\": [\n        \"NN\"\n    ], \n    \"misclassified\": [\n        \"VBN\"\n    ], \n    \"Mengitsu\": [\n        \"NNP\"\n    ], \n    \"supporter\": [\n        \"NN\"\n    ], \n    \"Divergent\": [\n        \"JJ\"\n    ], \n    \"reeling\": [\n        \"VBG\"\n    ], \n    \"Reviglio\": [\n        \"NNP\"\n    ], \n    \"ossify\": [\n        \"VB\"\n    ], \n    \"loafers\": [\n        \"NNS\"\n    ], \n    \"computer-maker\": [\n        \"NN\"\n    ], \n    \"VNR\": [\n        \"NNP\"\n    ], \n    \"ambiguity\": [\n        \"NN\"\n    ], \n    \"WENT\": [\n        \"VBD\"\n    ], \n    \"Dieux\": [\n        \"NNP\"\n    ], \n    \"pharmacology\": [\n        \"NN\"\n    ], \n    \"demonstators\": [\n        \"NNS\"\n    ], \n    \"MC68030\": [\n        \"NNP\"\n    ], \n    \"A.M.A\": [\n        \"NNP\"\n    ], \n    \"aforementioned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Combatting\": [\n        \"VBG\"\n    ], \n    \"Organizers\": [\n        \"NNS\"\n    ], \n    \"manhours\": [\n        \"NNS\"\n    ], \n    \"bedsprings\": [\n        \"NNS\"\n    ], \n    \"Bringing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Verey\": [\n        \"NNP\"\n    ], \n    \"Zones\": [\n        \"NNS\"\n    ], \n    \"motherhood\": [\n        \"NN\"\n    ], \n    \"Thaddeus\": [\n        \"NNP\"\n    ], \n    \"cachet\": [\n        \"NN\"\n    ], \n    \"roll-out\": [\n        \"NN\"\n    ], \n    \"pertains\": [\n        \"VBZ\"\n    ], \n    \"caches\": [\n        \"NNS\"\n    ], \n    \"hydrocarbons\": [\n        \"NNS\"\n    ], \n    \"conform\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Area\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"puddle\": [\n        \"NN\"\n    ], \n    \"Hurray\": [\n        \"NNP\"\n    ], \n    \"RATE\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Siad\": [\n        \"NNP\"\n    ], \n    \"Ares\": [\n        \"NNP\"\n    ], \n    \"Justices\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"tax-understatement\": [\n        \"JJ\"\n    ], \n    \"Siam\": [\n        \"NNP\"\n    ], \n    \"Hurrah\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"pedigree\": [\n        \"NN\"\n    ], \n    \"Hawaiian\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Commander-in-Chief...\": [\n        \":\"\n    ], \n    \"literate\": [\n        \"JJ\"\n    ], \n    \"DeWitt\": [\n        \"NNP\"\n    ], \n    \"Wenberg\": [\n        \"NNP\"\n    ], \n    \"discounts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"gemstone\": [\n        \"NN\"\n    ], \n    \"overestimates\": [\n        \"VBZ\"\n    ], \n    \"half-closed\": [\n        \"JJ\"\n    ], \n    \"glen\": [\n        \"NN\"\n    ], \n    \"Kenner\": [\n        \"NNP\"\n    ], \n    \"superior\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"junkies\": [\n        \"NNS\"\n    ], \n    \"A.L.\": [\n        \"NNP\"\n    ], \n    \"implementing\": [\n        \"VBG\"\n    ], \n    \"UNIX\": [\n        \"NNP\"\n    ], \n    \"benefit-seeking\": [\n        \"NN\"\n    ], \n    \"Cities\\\\/ABC\": [\n        \"NNP\"\n    ], \n    \"Krakow\": [\n        \"NNP\"\n    ], \n    \"buster\": [\n        \"NN\"\n    ], \n    \"non-objects\": [\n        \"NNS\"\n    ], \n    \"morphologic\": [\n        \"JJ\"\n    ], \n    \"fulfilled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"assure\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"insidious\": [\n        \"JJ\"\n    ], \n    \"busted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Delicious\": [\n        \"NNP\"\n    ], \n    \"longhaired\": [\n        \"JJ\"\n    ], \n    \"overstaff\": [\n        \"VB\"\n    ], \n    \"Tacoma\": [\n        \"NNP\"\n    ], \n    \"Sverdlovsk\": [\n        \"NNP\"\n    ], \n    \"Conscience\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"nonsuccessful\": [\n        \"JJ\"\n    ], \n    \"equal-opportunity\": [\n        \"NN\"\n    ], \n    \"overcoat\": [\n        \"NN\"\n    ], \n    \"teasing\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Refcorp\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deckhands\": [\n        \"NNS\"\n    ], \n    \"line-centered\": [\n        \"NN\"\n    ], \n    \"Holiday\": [\n        \"NNP\"\n    ], \n    \"freeholders\": [\n        \"NNS\"\n    ], \n    \"Temple\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pratfalls\": [\n        \"NNS\"\n    ], \n    \"pouring\": [\n        \"VBG\"\n    ], \n    \"Berlioz\": [\n        \"NNP\"\n    ], \n    \"Rewards\": [\n        \"NNS\"\n    ], \n    \"muddy\": [\n        \"JJ\"\n    ], \n    \"unstrung\": [\n        \"JJ\"\n    ], \n    \"rocket-like\": [\n        \"JJ\"\n    ], \n    \"paratroops\": [\n        \"NNS\"\n    ], \n    \"chauffeurs\": [\n        \"NNS\"\n    ], \n    \"Acceptance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Center\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"neck-and-neck\": [\n        \"JJ\"\n    ], \n    \"GERMAN\": [\n        \"JJ\"\n    ], \n    \"Marlon\": [\n        \"NNP\"\n    ], \n    \"airplanes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"capital-spending\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Korneyev\": [\n        \"NNP\"\n    ], \n    \"Marlow\": [\n        \"NNP\"\n    ], \n    \"axle\": [\n        \"NN\"\n    ], \n    \"Centel\": [\n        \"NNP\"\n    ], \n    \"splits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"SELF-DESTROYED\": [\n        \"VBN\"\n    ], \n    \"drapers\": [\n        \"NNS\"\n    ], \n    \"Elderly\": [\n        \"JJ\"\n    ], \n    \"Ferrell\": [\n        \"NNP\"\n    ], \n    \"instigated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pneumocystis\": [\n        \"NN\"\n    ], \n    \"Levamisole\": [\n        \"NN\"\n    ], \n    \"CHIPPING\": [\n        \"VBG\"\n    ], \n    \"backslapping\": [\n        \"VBG\"\n    ], \n    \"Farnham\": [\n        \"NNP\"\n    ], \n    \"permeate\": [\n        \"VB\"\n    ], \n    \"Confidence\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Tannhaeuser\": [\n        \"NNP\"\n    ], \n    \"audiocassettes\": [\n        \"NNS\"\n    ], \n    \"Shrum\": [\n        \"NNP\"\n    ], \n    \"Uniform\": [\n        \"JJ\"\n    ], \n    \"respected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Coroner\": [\n        \"NN\"\n    ], \n    \"Volstead\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"arabic\": [\n        \"JJ\"\n    ], \n    \"fusiform\": [\n        \"JJ\"\n    ], \n    \"InfoCorp.\": [\n        \"NNP\"\n    ], \n    \"Astin\": [\n        \"NNP\"\n    ], \n    \"Eloise\": [\n        \"NNP\"\n    ], \n    \"brightener\": [\n        \"NN\"\n    ], \n    \"navy-blue\": [\n        \"JJ\"\n    ], \n    \"Hunter\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"defiant\": [\n        \"JJ\"\n    ], \n    \"Excelsior\": [\n        \"NNP\"\n    ], \n    \"brightened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"McCabe\": [\n        \"NNP\"\n    ], \n    \"matinals\": [\n        \"FW\"\n    ], \n    \"tumbling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Rhythm-Wily\": [\n        \"NNP\"\n    ], \n    \"DOE-site\": [\n        \"NN\"\n    ], \n    \"reshuffled\": [\n        \"VBD\"\n    ], \n    \"Bearings\": [\n        \"NNP\"\n    ], \n    \"ground-handling\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Convex\": [\n        \"NNP\"\n    ], \n    \"visa-free\": [\n        \"JJ\"\n    ], \n    \"man-hours\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"exceeds\": [\n        \"VBZ\"\n    ], \n    \"hearest\": [\n        \"VBP\"\n    ], \n    \"Biotechnology\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"buttonholes\": [\n        \"NNS\"\n    ], \n    \"Caspi\": [\n        \"NNP\"\n    ], \n    \"retard\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Halva-Neubauer\": [\n        \"NNP\"\n    ], \n    \"Palmatier\": [\n        \"NNP\"\n    ], \n    \"musuem\": [\n        \"NN\"\n    ], \n    \"procurement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nondemocratic\": [\n        \"JJ\"\n    ], \n    \"creators\": [\n        \"NNS\"\n    ], \n    \"Porres\": [\n        \"NNP\"\n    ], \n    \"fetal\": [\n        \"JJ\"\n    ], \n    \"coaster\": [\n        \"NN\"\n    ], \n    \"tripods\": [\n        \"NNS\"\n    ], \n    \"CW-capable\": [\n        \"JJ\"\n    ], \n    \"business-promotion\": [\n        \"NN\"\n    ], \n    \"Hyundai\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"coasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"underlying\": [\n        \"VBG\", \n        \"JJ\", \n        \"VBG|JJ\"\n    ], \n    \"Averell\": [\n        \"NNP\"\n    ], \n    \"credit-backing\": [\n        \"NN\"\n    ], \n    \"Makinac\": [\n        \"NNP\"\n    ], \n    \"Gamble\": [\n        \"NNP\"\n    ], \n    \"Brigade\": [\n        \"NNP\"\n    ], \n    \"Inquisition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"republican\": [\n        \"JJ\"\n    ], \n    \"Rabies\": [\n        \"NN\"\n    ], \n    \"Montle\": [\n        \"NNP\"\n    ], \n    \"dilutive\": [\n        \"JJ\"\n    ], \n    \"Friday\": [\n        \"NNP\"\n    ], \n    \"nastier\": [\n        \"JJR\"\n    ], \n    \"Groggins\": [\n        \"NNP\"\n    ], \n    \"underscored\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"franking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"evidence...\": [\n        \":\"\n    ], \n    \"Dearborn\": [\n        \"NNP\"\n    ], \n    \"successor\": [\n        \"NN\"\n    ], \n    \"out-of-the-way\": [\n        \"JJ\"\n    ], \n    \"incarnations\": [\n        \"NNS\"\n    ], \n    \"petrochemical\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"barbed-wire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"judiciary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"HUD-subsidized\": [\n        \"JJ\"\n    ], \n    \"arbitration.\": [\n        \"NN\"\n    ], \n    \"corporeality\": [\n        \"NN\"\n    ], \n    \"impugned\": [\n        \"VBN\"\n    ], \n    \"INTERNATIONAL\": [\n        \"NNP\"\n    ], \n    \"Fallen\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Searby\": [\n        \"NNP\"\n    ], \n    \"subjectivist\": [\n        \"NN\"\n    ], \n    \"phrasemaking\": [\n        \"NN\"\n    ], \n    \"Mauch\": [\n        \"NNP\"\n    ], \n    \"two-seat\": [\n        \"JJ\"\n    ], \n    \"Nagrin\": [\n        \"NNP\"\n    ], \n    \"downplaying\": [\n        \"VBG\"\n    ], \n    \"Gossip\": [\n        \"NN\"\n    ], \n    \"profoundity\": [\n        \"NN\"\n    ], \n    \"decease\": [\n        \"NN\"\n    ], \n    \"Scale\": [\n        \"NNP\"\n    ], \n    \"Scala\": [\n        \"NNP\"\n    ], \n    \"interludes\": [\n        \"NNS\"\n    ], \n    \"holies\": [\n        \"NNS\"\n    ], \n    \"Pirandello\": [\n        \"NNP\"\n    ], \n    \"Scali\": [\n        \"NNP\"\n    ], \n    \"paternalistic\": [\n        \"JJ\"\n    ], \n    \"corroborate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"infiltrated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Copley\": [\n        \"NNP\"\n    ], \n    \"interment\": [\n        \"NN\"\n    ], \n    \"Sheehan\": [\n        \"NNP\"\n    ], \n    \"paddock\": [\n        \"NN\"\n    ], \n    \"supportive\": [\n        \"JJ\"\n    ], \n    \"frenetic\": [\n        \"JJ\"\n    ], \n    \"attactive\": [\n        \"JJ\"\n    ], \n    \"Lompoc\": [\n        \"NNP\"\n    ], \n    \"Maurine\": [\n        \"NNP\"\n    ], \n    \"Avions\": [\n        \"NNP\"\n    ], \n    \"wittingly\": [\n        \"RB\"\n    ], \n    \"ritiuality\": [\n        \"NN\"\n    ], \n    \"Gaslight\": [\n        \"NN\"\n    ], \n    \"Xylogics\": [\n        \"NNP\"\n    ], \n    \"microcassette\": [\n        \"NN\"\n    ], \n    \"discorporate\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Hearings\": [\n        \"NNS\"\n    ], \n    \"noteholder\": [\n        \"NN\"\n    ], \n    \"enviably\": [\n        \"RB\"\n    ], \n    \"slight\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"puppeteers\": [\n        \"NNS\"\n    ], \n    \"Robot\": [\n        \"NN\"\n    ], \n    \"hospitable\": [\n        \"JJ\"\n    ], \n    \"periodically\": [\n        \"RB\"\n    ], \n    \"simples\": [\n        \"NNS\"\n    ], \n    \"simpler\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"retribution\": [\n        \"NN\"\n    ], \n    \"rationing\": [\n        \"NN\"\n    ], \n    \"Tilted\": [\n        \"NNP\"\n    ], \n    \"Weight\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"schmoozing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"follies\": [\n        \"NNS\"\n    ], \n    \"thuds\": [\n        \"NNS\"\n    ], \n    \"Cheer\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"keelson\": [\n        \"NN\"\n    ], \n    \"Gale\": [\n        \"NNP\"\n    ], \n    \"flaky\": [\n        \"JJ\"\n    ], \n    \"unidirectional\": [\n        \"JJ\"\n    ], \n    \"Gala\": [\n        \"NNP\"\n    ], \n    \"reincarcerated\": [\n        \"VBN\"\n    ], \n    \"conducted...\": [\n        \":\"\n    ], \n    \"whisky-on-the-rocks\": [\n        \"NN\"\n    ], \n    \"now-Rep\": [\n        \"JJ\"\n    ], \n    \"pro-business\": [\n        \"JJ\"\n    ], \n    \"Pirrie\": [\n        \"NNP\"\n    ], \n    \"submits\": [\n        \"VBZ\"\n    ], \n    \"demonstrable\": [\n        \"JJ\"\n    ], \n    \"demonstrably\": [\n        \"RB\"\n    ], \n    \"Free-trade\": [\n        \"JJ\"\n    ], \n    \"oughta\": [\n        \"MD\", \n        \"NN\"\n    ], \n    \"Foamed\": [\n        \"NNP\"\n    ], \n    \"Freshwater\": [\n        \"NNP\"\n    ], \n    \"Atra\": [\n        \"NNP\"\n    ], \n    \"Steinman\": [\n        \"NNP\"\n    ], \n    \"Evolving\": [\n        \"VBG\"\n    ], \n    \"Cellars\": [\n        \"NNP\"\n    ], \n    \"legends\": [\n        \"NNS\"\n    ], \n    \"Bailit\": [\n        \"NNP\"\n    ], \n    \"flustered\": [\n        \"VBN\"\n    ], \n    \"firefighter\": [\n        \"NN\"\n    ], \n    \"Uphoff\": [\n        \"NNP\"\n    ], \n    \"Chile\": [\n        \"NNP\"\n    ], \n    \"Child\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Chili\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gutzon\": [\n        \"NNP\"\n    ], \n    \"GAMBLE\": [\n        \"NNP\"\n    ], \n    \"Chill\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"two-by-fours\": [\n        \"NNS\"\n    ], \n    \"Ukranians\": [\n        \"NNPS\"\n    ], \n    \"crutches\": [\n        \"NNS\"\n    ], \n    \"solicitors\": [\n        \"NNS\"\n    ], \n    \"auction-fee\": [\n        \"JJ\"\n    ], \n    \"bookshelf\": [\n        \"NN\"\n    ], \n    \"backstop\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"partially\": [\n        \"RB\"\n    ], \n    \"Refund\": [\n        \"NN\"\n    ], \n    \"wise\": [\n        \"JJ\"\n    ], \n    \"Wall\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"wish\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"variations\": [\n        \"NNS\"\n    ], \n    \"Walk\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Walt\": [\n        \"NNP\"\n    ], \n    \"wisp\": [\n        \"NN\"\n    ], \n    \"Asher\\\\/Gould\": [\n        \"NNP\"\n    ], \n    \"whenever\": [\n        \"WRB\"\n    ], \n    \"Insurance\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Desiring\": [\n        \"VBG\"\n    ], \n    \"penetrating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"rabbits\": [\n        \"NNS\"\n    ], \n    \"veiling\": [\n        \"NN\"\n    ], \n    \"brochures\": [\n        \"NNS\"\n    ], \n    \"Pulova\": [\n        \"NNP\"\n    ], \n    \"enlists\": [\n        \"VBZ\"\n    ], \n    \"Instrument\": [\n        \"NNP\"\n    ], \n    \"unpicturesque\": [\n        \"JJ\"\n    ], \n    \"finite-dimensional\": [\n        \"JJ\"\n    ], \n    \"Carruthers\": [\n        \"NNP\"\n    ], \n    \"mysteriously\": [\n        \"RB\"\n    ], \n    \"Colombian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"redder\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Whipsawed\": [\n        \"JJ\"\n    ], \n    \"Turning\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Storehouse\": [\n        \"NNP\"\n    ], \n    \"postmen\": [\n        \"NNS\"\n    ], \n    \"sleepwalking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Leigh-Pemberton\": [\n        \"NNP\"\n    ], \n    \"case-history\": [\n        \"NN\"\n    ], \n    \"assesment\": [\n        \"NN\"\n    ], \n    \"non-God\": [\n        \"NN\"\n    ], \n    \"industrial-property\": [\n        \"NN\"\n    ], \n    \"puzzlement\": [\n        \"NN\"\n    ], \n    \"traumatic\": [\n        \"JJ\"\n    ], \n    \"draught\": [\n        \"NN\"\n    ], \n    \"detractors\": [\n        \"NNS\"\n    ], \n    \"Farmaco\": [\n        \"NNP\"\n    ], \n    \"bundle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"spreader\": [\n        \"NN\"\n    ], \n    \"shrank\": [\n        \"VBD\"\n    ], \n    \"thumping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"inboard\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"seismic\": [\n        \"JJ\"\n    ], \n    \"mediocrities\": [\n        \"NNS\"\n    ], \n    \"Senate-House\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hiked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Begelman\": [\n        \"NNP\"\n    ], \n    \"dispersants\": [\n        \"NNS\"\n    ], \n    \"baker\": [\n        \"NN\"\n    ], \n    \"Greekfest\": [\n        \"NNP\"\n    ], \n    \"Hoenemeyer\": [\n        \"NNP\"\n    ], \n    \"hiker\": [\n        \"NN\"\n    ], \n    \"hikes\": [\n        \"NNS\"\n    ], \n    \"wryly\": [\n        \"RB\"\n    ], \n    \"Myerson\": [\n        \"NNP\"\n    ], \n    \"baked\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fess\": [\n        \"NN\"\n    ], \n    \"Seattlite\": [\n        \"NNP\"\n    ], \n    \"bagpipe\": [\n        \"NN\"\n    ], \n    \"sufficed\": [\n        \"VBD\"\n    ], \n    \"Louis-based\": [\n        \"JJ\"\n    ], \n    \"hats\": [\n        \"NNS\"\n    ], \n    \"anti-foreigner\": [\n        \"NN\"\n    ], \n    \"Christophers\": [\n        \"NNPS\"\n    ], \n    \"Continental\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Dining\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"interprovincial\": [\n        \"JJ\"\n    ], \n    \"slogs\": [\n        \"VBZ\"\n    ], \n    \"thrice-monthly\": [\n        \"JJ\"\n    ], \n    \"hate\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"apparel-maker\": [\n        \"NN\"\n    ], \n    \"trolley\": [\n        \"NN\"\n    ], \n    \"home-shopping\": [\n        \"NN\"\n    ], \n    \"Isetan\": [\n        \"NNP\"\n    ], \n    \"thinnest\": [\n        \"JJS\"\n    ], \n    \"thinness\": [\n        \"NN\"\n    ], \n    \"informality\": [\n        \"NN\"\n    ], \n    \"Tallchief\": [\n        \"NNP\"\n    ], \n    \"warred\": [\n        \"VBD\"\n    ], \n    \"Truffaut\": [\n        \"NNP\"\n    ], \n    \"Ledoux\": [\n        \"NNP\"\n    ], \n    \"Bandit\": [\n        \"NN\"\n    ], \n    \"fishbowl\": [\n        \"NN\"\n    ], \n    \"efficaciously\": [\n        \"RB\"\n    ], \n    \"iliac\": [\n        \"JJ\"\n    ], \n    \"honorable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Esmarch\": [\n        \"NNP\"\n    ], \n    \"missionary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Restaurants\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"end-zone\": [\n        \"NN\"\n    ], \n    \"Tunica\": [\n        \"NNP\"\n    ], \n    \"Templeton\": [\n        \"NNP\"\n    ], \n    \"vitriolic\": [\n        \"JJ\"\n    ], \n    \"Conway\": [\n        \"NNP\"\n    ], \n    \"Smerdyakov\": [\n        \"NNP\"\n    ], \n    \"Guarini\": [\n        \"NNP\"\n    ], \n    \"relict\": [\n        \"NN\"\n    ], \n    \"clime\": [\n        \"NN\"\n    ], \n    \"Bigger\": [\n        \"JJR\"\n    ], \n    \"pagodas\": [\n        \"NNS\"\n    ], \n    \"Director\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"AMCA\": [\n        \"NNP\"\n    ], \n    \"degeneracy\": [\n        \"NN\"\n    ], \n    \"enjoy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"high-technological\": [\n        \"JJ\"\n    ], \n    \"strivings\": [\n        \"NNS\"\n    ], \n    \"news-division\": [\n        \"NN\"\n    ], \n    \"Rapport\": [\n        \"NNP\"\n    ], \n    \"guardedly\": [\n        \"RB\"\n    ], \n    \"scribbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"resin-saturated\": [\n        \"JJ\"\n    ], \n    \"pseudo-capitalism\": [\n        \"NN\"\n    ], \n    \"RESIGNATIONS\": [\n        \"NNS\"\n    ], \n    \"emptiness\": [\n        \"NN\"\n    ], \n    \"perestrokia\": [\n        \"NN\"\n    ], \n    \"flat-topped\": [\n        \"JJ\"\n    ], \n    \"ransack\": [\n        \"VB\"\n    ], \n    \"shining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"behooves\": [\n        \"VBZ\"\n    ], \n    \"filibusters\": [\n        \"NNS\"\n    ], \n    \"Train\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"beaten\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unreality\": [\n        \"NN\"\n    ], \n    \"abides\": [\n        \"VBZ\"\n    ], \n    \"Castleman\": [\n        \"NNP\"\n    ], \n    \"inter-American\": [\n        \"JJ\"\n    ], \n    \"chambre\": [\n        \"FW\"\n    ], \n    \"Chaplain\": [\n        \"NNP\"\n    ], \n    \"A.L/NNP.S/NNP.A.C.\": [\n        \"NNP\"\n    ], \n    \"Made\": [\n        \"VBN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"limited-partner\": [\n        \"JJ\"\n    ], \n    \"forint\": [\n        \"NN\"\n    ], \n    \"Sutpen\": [\n        \"NNP\"\n    ], \n    \"Filene\": [\n        \"NNP\"\n    ], \n    \"corralled\": [\n        \"VBN\"\n    ], \n    \"ad-lib\": [\n        \"NN\"\n    ], \n    \"beauty-care\": [\n        \"JJ\"\n    ], \n    \"asymmetry\": [\n        \"NN\"\n    ], \n    \"studio\": [\n        \"NN\"\n    ], \n    \"Willett\": [\n        \"NNP\"\n    ], \n    \"morosely\": [\n        \"RB\"\n    ], \n    \"shortness\": [\n        \"NN\"\n    ], \n    \"SHEARSON\": [\n        \"NNP\"\n    ], \n    \"masseurs\": [\n        \"NNS\"\n    ], \n    \"electrolysis\": [\n        \"NN\"\n    ], \n    \"Beatrice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Marksmanship\": [\n        \"NN\"\n    ], \n    \"Remic-related\": [\n        \"JJ\"\n    ], \n    \"Furnishes\": [\n        \"VBZ\"\n    ], \n    \"WON\": [\n        \"VBP\"\n    ], \n    \"abolition\": [\n        \"NN\"\n    ], \n    \"chateau\": [\n        \"NN\"\n    ], \n    \"mantic\": [\n        \"JJ\"\n    ], \n    \"Koh\": [\n        \"NNP\"\n    ], \n    \"Kok\": [\n        \"NNP\"\n    ], \n    \"ridiculed\": [\n        \"VBN\"\n    ], \n    \"resurrected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Kon\": [\n        \"NNP\"\n    ], \n    \"Koa\": [\n        \"NNP\"\n    ], \n    \"M-1\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nicodemus\": [\n        \"NNP\"\n    ], \n    \"Technodyne\": [\n        \"NNP\"\n    ], \n    \"feelings\": [\n        \"NNS\"\n    ], \n    \"sorrows\": [\n        \"NNS\"\n    ], \n    \"viscera\": [\n        \"NNS\"\n    ], \n    \"Hakim\": [\n        \"NNP\"\n    ], \n    \"gallonage\": [\n        \"NN\"\n    ], \n    \"wars\": [\n        \"NNS\"\n    ], \n    \"cholesterol-rich\": [\n        \"JJ\"\n    ], \n    \"Kos\": [\n        \"NNP\"\n    ], \n    \"water-submersion\": [\n        \"JJ\"\n    ], \n    \"quasi-tax\": [\n        \"JJ\"\n    ], \n    \"Circular\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"spread-eagled\": [\n        \"VBN\"\n    ], \n    \"yellows\": [\n        \"NNS\"\n    ], \n    \"B.S.\": [\n        \"NNP\"\n    ], \n    \"Australia-wide\": [\n        \"JJ\"\n    ], \n    \"Thermedics\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"lessening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Instruments\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"sobered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"raids\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bragged\": [\n        \"VBD\"\n    ], \n    \"horseshoers\": [\n        \"NNS\"\n    ], \n    \"boomed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ibias\": [\n        \"NNP\"\n    ], \n    \"Blume\": [\n        \"NNP\"\n    ], \n    \"non-pipeline\": [\n        \"NN\"\n    ], \n    \"Incidents\": [\n        \"NNS\"\n    ], \n    \"Gaspee\": [\n        \"NNP\"\n    ], \n    \"breaths\": [\n        \"NNS\"\n    ], \n    \"real-time\": [\n        \"JJ\"\n    ], \n    \"robbing\": [\n        \"VBG\"\n    ], \n    \"Hacking\": [\n        \"VBG\"\n    ], \n    \"outdated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Salomon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Crazy\": [\n        \"NNP\"\n    ], \n    \"money-manager\": [\n        \"NN\"\n    ], \n    \"join\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"pre-cooked\": [\n        \"JJ\"\n    ], \n    \"self-regulating\": [\n        \"JJ\"\n    ], \n    \"clubby\": [\n        \"JJ\"\n    ], \n    \"entertained\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"joie\": [\n        \"FW\"\n    ], \n    \"warn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"McManus\": [\n        \"NNP\"\n    ], \n    \"house-cleaning\": [\n        \"NN\"\n    ], \n    \"OIF\": [\n        \"NNP\"\n    ], \n    \"entertainer\": [\n        \"NN\"\n    ], \n    \"dither\": [\n        \"NN\"\n    ], \n    \"shook\": [\n        \"VBD\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"loosen\": [\n        \"VB\"\n    ], \n    \"Paschal\": [\n        \"NNP\"\n    ], \n    \"generically\": [\n        \"RB\"\n    ], \n    \"Musial\": [\n        \"NNP\"\n    ], \n    \"Lori\": [\n        \"NNP\"\n    ], \n    \"Lord\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"Lora\": [\n        \"NNP\"\n    ], \n    \"looser\": [\n        \"JJR\"\n    ], \n    \"collude\": [\n        \"VB\"\n    ], \n    \"Sidhpur\": [\n        \"NNP\"\n    ], \n    \"trill\": [\n        \"NN\"\n    ], \n    \"rhinoceros\": [\n        \"NN\"\n    ], \n    \"traditionalists\": [\n        \"NNS\"\n    ], \n    \"Karlsruhe\": [\n        \"NNP\"\n    ], \n    \"High-Tech\": [\n        \"JJ\"\n    ], \n    \"bobby-sox\": [\n        \"NN\"\n    ], \n    \"ancestor\": [\n        \"NN\"\n    ], \n    \"Preparation-Inquirers\": [\n        \"NNP\"\n    ], \n    \"Paying\": [\n        \"VBG\"\n    ], \n    \"Grist\": [\n        \"NNP\"\n    ], \n    \"Caucasians\": [\n        \"NNS\"\n    ], \n    \"claptrap\": [\n        \"NN\"\n    ], \n    \"mess\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Chesapeake\": [\n        \"NNP\"\n    ], \n    \"Disregarding\": [\n        \"VBG\"\n    ], \n    \"Chapman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"demanding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"mesh\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Mamma\": [\n        \"NNP\"\n    ], \n    \"Unreported\": [\n        \"JJ\"\n    ], \n    \"biting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"sparkles\": [\n        \"VBZ\"\n    ], \n    \"mortgages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Sewage\": [\n        \"NNP\"\n    ], \n    \"risible\": [\n        \"JJ\"\n    ], \n    \"Etudes\": [\n        \"NNP\"\n    ], \n    \"gentlemanly\": [\n        \"JJ\"\n    ], \n    \"Avena\": [\n        \"NNP\"\n    ], \n    \"Varalli\": [\n        \"NNP\"\n    ], \n    \"spout\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"criss-crossed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"mucking\": [\n        \"VBG\"\n    ], \n    \"Greetings\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"record-tying\": [\n        \"JJ\"\n    ], \n    \"Yorkshire-based\": [\n        \"JJ\"\n    ], \n    \"unglued\": [\n        \"JJ\"\n    ], \n    \"flippers\": [\n        \"NNS\"\n    ], \n    \"drachma\": [\n        \"NN\"\n    ], \n    \"monde\": [\n        \"FW\"\n    ], \n    \"Shifte\": [\n        \"NNP\"\n    ], \n    \"Weiss\": [\n        \"NNP\"\n    ], \n    \"Kodyke\": [\n        \"NNP\"\n    ], \n    \"thesis\": [\n        \"NN\"\n    ], \n    \"Hichens\": [\n        \"NNP\"\n    ], \n    \"transferor\": [\n        \"NN\"\n    ], \n    \"comandancia\": [\n        \"FW\"\n    ], \n    \"Urban\": [\n        \"NNP\"\n    ], \n    \"conflict-ridden\": [\n        \"JJ\"\n    ], \n    \"Hero\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Willkie\": [\n        \"NNP\"\n    ], \n    \"alveoli\": [\n        \"NNS\"\n    ], \n    \"theologian\": [\n        \"NN\"\n    ], \n    \"Herb\": [\n        \"NNP\"\n    ], \n    \"Kelsey\": [\n        \"NNP\"\n    ], \n    \"exhibits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"comprehend\": [\n        \"VB\"\n    ], \n    \"smaller-than-expected\": [\n        \"JJ\"\n    ], \n    \"Emerald\": [\n        \"NNP\"\n    ], \n    \"Hers\": [\n        \"JJ\", \n        \"PRP\"\n    ], \n    \"Hillerich\": [\n        \"NNP\"\n    ], \n    \"Continued\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"BIRDS\": [\n        \"NNS\"\n    ], \n    \"absolutism\": [\n        \"NN\"\n    ], \n    \"Branches\": [\n        \"NNS\"\n    ], \n    \"Anti-Wrinkle\": [\n        \"NNP\"\n    ], \n    \"revelations\": [\n        \"NNS\"\n    ], \n    \"new-issues\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Haughton\": [\n        \"NNP\"\n    ], \n    \"paralanguage\": [\n        \"NN\"\n    ], \n    \"persuaders\": [\n        \"NNS\"\n    ], \n    \"notified\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"vacillated\": [\n        \"VBD\"\n    ], \n    \"imperiously\": [\n        \"RB\"\n    ], \n    \"Pankki\": [\n        \"NNP\"\n    ], \n    \"dollar-denominated\": [\n        \"JJ\"\n    ], \n    \"loan-production\": [\n        \"NN\"\n    ], \n    \"demand-supply\": [\n        \"JJ\"\n    ], \n    \"unlinked\": [\n        \"JJ\"\n    ], \n    \"hawk-hunting\": [\n        \"JJ\"\n    ], \n    \"notifies\": [\n        \"VBZ\"\n    ], \n    \"lacerations\": [\n        \"NNS\"\n    ], \n    \"geldings\": [\n        \"NNS\"\n    ], \n    \"Humor\": [\n        \"NN\"\n    ], \n    \"W&D\": [\n        \"NNP\"\n    ], \n    \"Lippman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"decedent\": [\n        \"NN\"\n    ], \n    \"winsome\": [\n        \"JJ\"\n    ], \n    \"share-buying\": [\n        \"NN\"\n    ], \n    \"combining\": [\n        \"VBG\"\n    ], \n    \"damped\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"lebensraum\": [\n        \"NN\"\n    ], \n    \"Drafted\": [\n        \"VBN\"\n    ], \n    \"Pillsbury\": [\n        \"NNP\"\n    ], \n    \"overcame\": [\n        \"VBD\"\n    ], \n    \"Holz\": [\n        \"NNP\"\n    ], \n    \"Holy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"fevers\": [\n        \"NNS\"\n    ], \n    \"stringed\": [\n        \"JJ\"\n    ], \n    \"Holt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"washed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Agua\": [\n        \"NNP\"\n    ], \n    \"Institute\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ryusenji\": [\n        \"NNP\"\n    ], \n    \"unspectacular\": [\n        \"JJ\"\n    ], \n    \"Ginnie\": [\n        \"NNP\"\n    ], \n    \"Hole\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hold\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"underwrite\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Holderbank\": [\n        \"NNP\"\n    ], \n    \"merchandising\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"slivered\": [\n        \"VBN\"\n    ], \n    \"addiction-treatment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"streamline\": [\n        \"VB\"\n    ], \n    \"Absenteeism\": [\n        \"NN\"\n    ], \n    \"biological\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Idje\": [\n        \"NNP\"\n    ], \n    \"Aragon\": [\n        \"NNP\"\n    ], \n    \"acrobat\": [\n        \"NN\"\n    ], \n    \"alarmingly\": [\n        \"RB\"\n    ], \n    \"jubilant\": [\n        \"JJ\"\n    ], \n    \"Esselte\": [\n        \"NNP\"\n    ], \n    \"soft-rock\": [\n        \"JJ\"\n    ], \n    \"Carre\": [\n        \"NNP\"\n    ], \n    \"blackmailing\": [\n        \"VBG\"\n    ], \n    \"suburbia\": [\n        \"NN\"\n    ], \n    \"syndication\": [\n        \"NN\"\n    ], \n    \"wheelbase\": [\n        \"NN\"\n    ], \n    \"TIME\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Carry\": [\n        \"NNP\"\n    ], \n    \"Murderers\": [\n        \"NNS\"\n    ], \n    \"Darnell\": [\n        \"NNP\"\n    ], \n    \"Gennaro\": [\n        \"NNP\"\n    ], \n    \"trilled\": [\n        \"VBD\"\n    ], \n    \"Marcoses\": [\n        \"NNPS\"\n    ], \n    \"coding\": [\n        \"NN\"\n    ], \n    \"Kehl\": [\n        \"NNP\"\n    ], \n    \"anchorages\": [\n        \"NNS\"\n    ], \n    \"priority\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bruges\": [\n        \"NNP\"\n    ], \n    \"AREA\": [\n        \"NN\"\n    ], \n    \"Academy\": [\n        \"NNP\"\n    ], \n    \"Lindskog\": [\n        \"NNP\"\n    ], \n    \"Racie\": [\n        \"NNP\"\n    ], \n    \"teacher-cadet\": [\n        \"JJ\"\n    ], \n    \"Racin\": [\n        \"NNP\"\n    ], \n    \"Afghan\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Rebecca\": [\n        \"NNP\"\n    ], \n    \"beat-up\": [\n        \"JJ\"\n    ], \n    \"glucose\": [\n        \"NN\"\n    ], \n    \"ceiling\": [\n        \"NN\"\n    ], \n    \"Condensation\": [\n        \"NN\"\n    ], \n    \"Splendid\": [\n        \"JJ\"\n    ], \n    \"brushes\": [\n        \"NNS\"\n    ], \n    \"compressor\": [\n        \"NN\"\n    ], \n    \"Ethocyn\": [\n        \"NNP\"\n    ], \n    \"Actually\": [\n        \"RB\"\n    ], \n    \"Indulgers\": [\n        \"NNS\"\n    ], \n    \"ClothesTime\": [\n        \"NNP\"\n    ], \n    \"Diego-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Ash-Can\": [\n        \"NNP\"\n    ], \n    \"Drye\": [\n        \"NNP\"\n    ], \n    \"singleness\": [\n        \"NN\"\n    ], \n    \"Koji\": [\n        \"NNP\"\n    ], \n    \"Unix\": [\n        \"NNP\"\n    ], \n    \"expo\": [\n        \"NN\"\n    ], \n    \"LaWare\": [\n        \"NNP\"\n    ], \n    \"genders\": [\n        \"NNS\"\n    ], \n    \"Unit\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"lbs\": [\n        \"NNS\"\n    ], \n    \"acetylene\": [\n        \"NN\"\n    ], \n    \"Mitsuoka\": [\n        \"NNP\"\n    ], \n    \"staphylococcal\": [\n        \"JJ\"\n    ], \n    \"New-Waver\": [\n        \"NNP\"\n    ], \n    \"torque\": [\n        \"NN\"\n    ], \n    \"Offutt\": [\n        \"NNP\"\n    ], \n    \"Estimating\": [\n        \"VBG\"\n    ], \n    \"McEachern\": [\n        \"NNP\"\n    ], \n    \"BIOTECHNOLOGY\": [\n        \"NN\"\n    ], \n    \"regulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"leafy\": [\n        \"JJ\"\n    ], \n    \"NBC\": [\n        \"NNP\"\n    ], \n    \"spade\": [\n        \"NN\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"unceasing\": [\n        \"JJ\"\n    ], \n    \"Pressler\": [\n        \"NNP\"\n    ], \n    \"teakettle\": [\n        \"NN\"\n    ], \n    \"steamboat\": [\n        \"NN\"\n    ], \n    \"-\": [\n        \":\"\n    ], \n    \"oriented\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Yeager\": [\n        \"NNP\"\n    ], \n    \"retinoblastoma\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"once-rich\": [\n        \"JJ\"\n    ], \n    \"cleft\": [\n        \"NN\", \n        \"VBN\"\n    ], \n    \"Carbide\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Omega\": [\n        \"NNP\"\n    ], \n    \"harped\": [\n        \"VBD\"\n    ], \n    \"low-tax\": [\n        \"NN\"\n    ], \n    \"Davidowitz.\": [\n        \"NNP\"\n    ], \n    \"Rizzello\": [\n        \"NNP\"\n    ], \n    \"one-thirty\": [\n        \"RB\"\n    ], \n    \"cilia\": [\n        \"NNS\"\n    ], \n    \"carcinoma\": [\n        \"NN\"\n    ], \n    \"mannerisms\": [\n        \"NNS\"\n    ], \n    \"Dairy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interjects\": [\n        \"VBZ\"\n    ], \n    \"coin\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"unorthodox\": [\n        \"JJ\"\n    ], \n    \"lb.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"soupy\": [\n        \"JJ\"\n    ], \n    \"treats\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"bullied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"soups\": [\n        \"NNS\"\n    ], \n    \"Rubenstein\": [\n        \"NNP\"\n    ], \n    \"flow\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"treaty\": [\n        \"NN\"\n    ], \n    \"Goodison\": [\n        \"NNP\"\n    ], \n    \"orderly\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"reemerged\": [\n        \"VBD\"\n    ], \n    \"non-person\": [\n        \"NN\"\n    ], \n    \"floc\": [\n        \"NN\"\n    ], \n    \"flog\": [\n        \"VB\"\n    ], \n    \"untapped\": [\n        \"JJ\"\n    ], \n    \"Howley\": [\n        \"NNP\"\n    ], \n    \"cortico-fugal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Koenig\": [\n        \"NNP\"\n    ], \n    \"Addiss\": [\n        \"NNP\"\n    ], \n    \"Neff\": [\n        \"NNP\"\n    ], \n    \"inspire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Scanlon\": [\n        \"NNP\"\n    ], \n    \"random\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ndola\": [\n        \"NNP\"\n    ], \n    \"Joseph-Daniel\": [\n        \"NNP\"\n    ], \n    \"tacitly\": [\n        \"RB\"\n    ], \n    \"substituting\": [\n        \"VBG\"\n    ], \n    \"Espana\": [\n        \"NNP\"\n    ], \n    \"Extremadura\": [\n        \"NNP\"\n    ], \n    \"Gollust\": [\n        \"NNP\"\n    ], \n    \"Simultaneously\": [\n        \"RB\"\n    ], \n    \"Palcy\": [\n        \"NNP\"\n    ], \n    \"peasants\": [\n        \"NNS\"\n    ], \n    \"soft-hearted\": [\n        \"JJ\"\n    ], \n    \"fore-play\": [\n        \"NN\"\n    ], \n    \"stock-in-trade\": [\n        \"NN\"\n    ], \n    \"anti-intellectualism\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Michelin\\\\\": [\n        \"NNP\"\n    ], \n    \"gods\": [\n        \"NNS\"\n    ], \n    \"Tribou\": [\n        \"NNP\"\n    ], \n    \"Netherlands\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"sunglasses\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"unassisted\": [\n        \"JJ\"\n    ], \n    \"Larger\": [\n        \"JJR\"\n    ], \n    \"Shades\": [\n        \"NNP\"\n    ], \n    \"systems-integration\": [\n        \"NN\"\n    ], \n    \"goons\": [\n        \"NNS\"\n    ], \n    \"shutting\": [\n        \"VBG\"\n    ], \n    \"tuberculosis\": [\n        \"NN\"\n    ], \n    \"Shizue\": [\n        \"NNP\"\n    ], \n    \"interrogated\": [\n        \"VBN\"\n    ], \n    \"Quarter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Downham\": [\n        \"NNP\"\n    ], \n    \"spinoffs\": [\n        \"NNS\"\n    ], \n    \"oil-based\": [\n        \"JJ\"\n    ], \n    \"Hildegard\": [\n        \"NNP\"\n    ], \n    \"Sancken\": [\n        \"NNP\"\n    ], \n    \"authorizations\": [\n        \"NNS\"\n    ], \n    \"twice\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"shots\": [\n        \"NNS\"\n    ], \n    \"pacifist\": [\n        \"NN\"\n    ], \n    \"death-benefit\": [\n        \"JJ\"\n    ], \n    \"cufflinks\": [\n        \"NNS\"\n    ], \n    \"adapters\": [\n        \"NNS\"\n    ], \n    \"farther\": [\n        \"RB\", \n        \"RBR\"\n    ], \n    \"duck\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Caribbean\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"nux\": [\n        \"NN\"\n    ], \n    \"Pet\": [\n        \"NNP\"\n    ], \n    \"liquor\": [\n        \"NN\"\n    ], \n    \"Pew\": [\n        \"NNP\"\n    ], \n    \"Per\": [\n        \"IN\"\n    ], \n    \"cheekbone\": [\n        \"NN\"\n    ], \n    \"resist\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pei\": [\n        \"NNP\"\n    ], \n    \"alkalis\": [\n        \"NNS\"\n    ], \n    \"Taurog\": [\n        \"NNP\"\n    ], \n    \"Pee\": [\n        \"NNP\"\n    ], \n    \"Optic-Electronic\": [\n        \"NNP\"\n    ], \n    \"rain-slick\": [\n        \"JJ\"\n    ], \n    \"Macedon\": [\n        \"NNP\"\n    ], \n    \"double-glaze\": [\n        \"VB\"\n    ], \n    \"micro-liquidity\": [\n        \"NN\"\n    ], \n    \"McDermott\": [\n        \"NNP\"\n    ], \n    \"Philippines-backed\": [\n        \"JJ\"\n    ], \n    \"Nagelvoort\": [\n        \"NNP\"\n    ], \n    \"slotted\": [\n        \"VBN\"\n    ], \n    \"joyride\": [\n        \"NN\"\n    ], \n    \"propulsion\": [\n        \"NN\"\n    ], \n    \"round-tipped\": [\n        \"JJ\"\n    ], \n    \"McVay\": [\n        \"NNP\"\n    ], \n    \"Shearman\": [\n        \"NNP\"\n    ], \n    \"deceptively\": [\n        \"RB\"\n    ], \n    \"bashes\": [\n        \"NNS\"\n    ], \n    \"one-parent\": [\n        \"JJ\"\n    ], \n    \"handwritten\": [\n        \"JJ\"\n    ], \n    \"gravestone\": [\n        \"NN\"\n    ], \n    \"BAHAMIAN\": [\n        \"JJ\"\n    ], \n    \"million-ton\": [\n        \"JJ\"\n    ], \n    \"husky-voiced\": [\n        \"JJ\"\n    ], \n    \"confusion\": [\n        \"NN\"\n    ], \n    \"fired...\": [\n        \":\"\n    ], \n    \"boss\": [\n        \"NN\"\n    ], \n    \"Buick-Oldsmobile-Cadillac\": [\n        \"NNP\"\n    ], \n    \"phoning\": [\n        \"VBG\"\n    ], \n    \"Icelandic-speaking\": [\n        \"JJ\"\n    ], \n    \"aristocrats\": [\n        \"NNS\"\n    ], \n    \"censorship\": [\n        \"NN\"\n    ], \n    \"nonfat\": [\n        \"JJ\"\n    ], \n    \"Revenues\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"rabbit-test\": [\n        \"JJ\"\n    ], \n    \"blasted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lineman\": [\n        \"NN\"\n    ], \n    \"indistinct\": [\n        \"JJ\"\n    ], \n    \"sanitation\": [\n        \"NN\"\n    ], \n    \"Whig\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"biologically\": [\n        \"RB\"\n    ], \n    \"inter-governmental\": [\n        \"JJ\"\n    ], \n    \"Arens\": [\n        \"NNP\"\n    ], \n    \"precipitous\": [\n        \"JJ\"\n    ], \n    \"two-billion-Australian-dollar\": [\n        \"JJ\"\n    ], \n    \"participating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"merging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"debt-to-equity\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Whiz\": [\n        \"NNP\"\n    ], \n    \"encore\": [\n        \"NN\"\n    ], \n    \"rhetoricians\": [\n        \"NNS\"\n    ], \n    \"Whit\": [\n        \"NNP\"\n    ], \n    \"compilations\": [\n        \"NNS\"\n    ], \n    \"Makers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Whip\": [\n        \"NNP\"\n    ], \n    \"Gro-Lites\": [\n        \"NNPS\"\n    ], \n    \"Celgar\": [\n        \"NNP\"\n    ], \n    \"J/NNP.A.C.\": [\n        \"NNP\"\n    ], \n    \"elfin\": [\n        \"JJ\"\n    ], \n    \"kwh\": [\n        \"NNS\"\n    ], \n    \"Bozicevich\": [\n        \"NNP\"\n    ], \n    \"epidemic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"student-physicists\": [\n        \"NNS\"\n    ], \n    \"herbaceous\": [\n        \"JJ\"\n    ], \n    \"intimal\": [\n        \"JJ\"\n    ], \n    \"viruses\": [\n        \"NNS\"\n    ], \n    \"maudlin\": [\n        \"JJ\"\n    ], \n    \"Putt\": [\n        \"NNP\"\n    ], \n    \"Katims\": [\n        \"NNP\"\n    ], \n    \"coalesced\": [\n        \"VBN\"\n    ], \n    \"beef\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"open-mouthed\": [\n        \"JJ\"\n    ], \n    \"bikinis\": [\n        \"NNS\"\n    ], \n    \"Ebbutt\": [\n        \"NNP\"\n    ], \n    \"ropes\": [\n        \"NNS\"\n    ], \n    \"tilt-top\": [\n        \"JJ\"\n    ], \n    \"Southern\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"been\": [\n        \"VBN\", \n        \"VBP\"\n    ], \n    \"beep\": [\n        \"NN\"\n    ], \n    \"Bertie\": [\n        \"NNP\"\n    ], \n    \"beer\": [\n        \"NN\"\n    ], \n    \"bees\": [\n        \"NNS\"\n    ], \n    \"beet\": [\n        \"NN\"\n    ], \n    \"miraculously\": [\n        \"RB\"\n    ], \n    \"Bertin\": [\n        \"NNP\"\n    ], \n    \"roped\": [\n        \"VBD\"\n    ], \n    \"dia.\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Canestrani\": [\n        \"NNP\"\n    ], \n    \"Herold\": [\n        \"NNP\"\n    ], \n    \"publisher\": [\n        \"NN\"\n    ], \n    \"davits\": [\n        \"NNS\"\n    ], \n    \"anthropological-religious\": [\n        \"JJ\"\n    ], \n    \"Dingell\": [\n        \"NNP\"\n    ], \n    \"Carrion\": [\n        \"NNP\"\n    ], \n    \"sweet-throated\": [\n        \"JJ\"\n    ], \n    \"Cain\": [\n        \"NNP\"\n    ], \n    \"USED-CAR\": [\n        \"NN\"\n    ], \n    \"Countach\": [\n        \"NNP\"\n    ], \n    \"Elie\": [\n        \"NNP\"\n    ], \n    \"berms\": [\n        \"NNS\"\n    ], \n    \"Wiesenthal\": [\n        \"NNP\"\n    ], \n    \"Educators\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fallow\": [\n        \"JJ\"\n    ], \n    \"unchristian\": [\n        \"JJ\"\n    ], \n    \"Upped\": [\n        \"VBN\"\n    ], \n    \"PUBLIC\": [\n        \"JJ\"\n    ], \n    \"decanted\": [\n        \"VBN\"\n    ], \n    \"Beghin-Say\": [\n        \"NNP\"\n    ], \n    \"push-button\": [\n        \"JJ\"\n    ], \n    \"coupes\": [\n        \"NNS\"\n    ], \n    \"Wolder\": [\n        \"NNP\"\n    ], \n    \"Driskill\": [\n        \"NNP\"\n    ], \n    \"Eckart\": [\n        \"NNP\"\n    ], \n    \"Bush\": [\n        \"NNP\"\n    ], \n    \"half-transparent\": [\n        \"JJ\"\n    ], \n    \"bull-headed\": [\n        \"JJ\"\n    ], \n    \"ramifications\": [\n        \"NNS\"\n    ], \n    \"unservile\": [\n        \"JJ\"\n    ], \n    \"Quirinal\": [\n        \"NNP\"\n    ], \n    \"Jacqueline\": [\n        \"NNP\"\n    ], \n    \"dull-gray\": [\n        \"JJ\"\n    ], \n    \"Camaret\": [\n        \"NNP\"\n    ], \n    \"self-mastery\": [\n        \"NN\"\n    ], \n    \"Zimmerman\": [\n        \"NNP\"\n    ], \n    \"inventory\": [\n        \"NN\"\n    ], \n    \"Eligio\": [\n        \"NNP\"\n    ], \n    \"inventors\": [\n        \"NNS\"\n    ], \n    \"unbearable\": [\n        \"JJ\"\n    ], \n    \"troika\": [\n        \"NN\"\n    ], \n    \"non-biodegradable\": [\n        \"JJ\"\n    ], \n    \"A320\": [\n        \"NN\"\n    ], \n    \"riffs\": [\n        \"NNS\"\n    ], \n    \"deadwood\": [\n        \"NN\"\n    ], \n    \"rose-pink\": [\n        \"JJ\"\n    ], \n    \"Morning\": [\n        \"NNP\", \n        \"UH\", \n        \"NN\"\n    ], \n    \"BCED\": [\n        \"NNP\"\n    ], \n    \"Kearton\": [\n        \"NNP\"\n    ], \n    \"junior-philosophical\": [\n        \"JJ\"\n    ], \n    \"embarrassments\": [\n        \"NNS\"\n    ], \n    \"forceful\": [\n        \"JJ\"\n    ], \n    \"recalculations\": [\n        \"NNS\"\n    ], \n    \"werewolves\": [\n        \"NNS\"\n    ], \n    \"boxer\": [\n        \"NN\"\n    ], \n    \"greatest\": [\n        \"JJS\"\n    ], \n    \"business-to-business\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shadowed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Sarah\": [\n        \"NNP\"\n    ], \n    \"PARKER\": [\n        \"NNP\"\n    ], \n    \"stenography\": [\n        \"NN\"\n    ], \n    \"Saran\": [\n        \"NNP\"\n    ], \n    \"Sinton\": [\n        \"NN\"\n    ], \n    \"Gouge\": [\n        \"VB\"\n    ], \n    \"subsidization\": [\n        \"NN\"\n    ], \n    \"Arabian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Pawleys\": [\n        \"NNP\"\n    ], \n    \"playtime\": [\n        \"NN\"\n    ], \n    \"Constitution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"higher-margin\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"U.S.-Japan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"transgressed\": [\n        \"VBD\"\n    ], \n    \"Krakatoa\": [\n        \"NNP\"\n    ], \n    \"Astoria\": [\n        \"NNP\"\n    ], \n    \"Deriving\": [\n        \"VBG\"\n    ], \n    \"Figgie\": [\n        \"NNP\"\n    ], \n    \"retreat\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"technological\": [\n        \"JJ\"\n    ], \n    \"Crossair\": [\n        \"NNP\"\n    ], \n    \"anticoagulants\": [\n        \"NNS\"\n    ], \n    \"lower-level\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"turquoise\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Notre-Dame\": [\n        \"NNP\"\n    ], \n    \"Pincus\": [\n        \"NNP\"\n    ], \n    \"Asimov\": [\n        \"NNP\"\n    ], \n    \"Teagarden\": [\n        \"NNP\"\n    ], \n    \"James\": [\n        \"NNP\"\n    ], \n    \"Taking\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Diabetic\": [\n        \"NNP\"\n    ], \n    \"non-financial\": [\n        \"JJ\"\n    ], \n    \"Owls\": [\n        \"NNS\"\n    ], \n    \"Hollander\": [\n        \"NNP\"\n    ], \n    \"Titles\": [\n        \"NNPS\"\n    ], \n    \"racketeers\": [\n        \"NNS\"\n    ], \n    \"Vadies\": [\n        \"NNP\"\n    ], \n    \"sanitary\": [\n        \"JJ\"\n    ], \n    \"antiredeposition\": [\n        \"NN\"\n    ], \n    \"amok\": [\n        \"RB\"\n    ], \n    \"forefinger\": [\n        \"NN\"\n    ], \n    \"disinclination\": [\n        \"NN\"\n    ], \n    \"Contrarily\": [\n        \"RB\"\n    ], \n    \"Assyriology\": [\n        \"NN\"\n    ], \n    \"mystically\": [\n        \"RB\"\n    ], \n    \"specific\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sticky-fingered\": [\n        \"JJ\"\n    ], \n    \"Hackett\": [\n        \"NNP\"\n    ], \n    \"mosquito\": [\n        \"NN\"\n    ], \n    \"amor\": [\n        \"FW\"\n    ], \n    \"Pasternack\": [\n        \"NNP\"\n    ], \n    \"biomedical-products\": [\n        \"NNS\"\n    ], \n    \"Species\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"rustling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"clubs\": [\n        \"NNS\"\n    ], \n    \"clawed\": [\n        \"VBN\"\n    ], \n    \"displeasure\": [\n        \"NN\"\n    ], \n    \"escape\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Shays\": [\n        \"NNP\"\n    ], \n    \"post-nuptial\": [\n        \"JJ\"\n    ], \n    \"Motherwell\": [\n        \"NNP\"\n    ], \n    \"research-and-development\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"prechlorination\": [\n        \"NN\"\n    ], \n    \"Island-based\": [\n        \"JJ\"\n    ], \n    \"self-consciousness\": [\n        \"NN\"\n    ], \n    \"Insiders\": [\n        \"NNS\"\n    ], \n    \"collaboration\": [\n        \"NN\"\n    ], \n    \"Metronic\": [\n        \"NNP\"\n    ], \n    \"cord\": [\n        \"NN\"\n    ], \n    \"core\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Subdued\": [\n        \"JJ\"\n    ], \n    \"Divorced\": [\n        \"NNP\"\n    ], \n    \"McCaffrey\": [\n        \"NNP\"\n    ], \n    \"Glasswork\": [\n        \"NNP\"\n    ], \n    \"Yacht\": [\n        \"NNP\"\n    ], \n    \"Lucius\": [\n        \"NNP\"\n    ], \n    \"Bambi\": [\n        \"NNP\"\n    ], \n    \"watchings\": [\n        \"NNS\"\n    ], \n    \"cancer-related\": [\n        \"JJ\"\n    ], \n    \"Emperor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Vitro\": [\n        \"NNP\"\n    ], \n    \"surround\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"misleading\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"genocide\": [\n        \"NN\"\n    ], \n    \"logistical\": [\n        \"JJ\"\n    ], \n    \"Machines\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"knight-errant\": [\n        \"NN\"\n    ], \n    \"discharging\": [\n        \"VBG\"\n    ], \n    \"Pupils\": [\n        \"NNS\"\n    ], \n    \"low-cost\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"JAMES\": [\n        \"NNP\"\n    ], \n    \"Bartlett\": [\n        \"NNP\"\n    ], \n    \"accommodate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Noschese\": [\n        \"NNP\"\n    ], \n    \"computer-power-supply\": [\n        \"NN\"\n    ], \n    \"Twentieth-Century\": [\n        \"NNP\"\n    ], \n    \"Martha\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"emigrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"tranquilizers\": [\n        \"NNS\"\n    ], \n    \"Marthe\": [\n        \"NNP\"\n    ], \n    \"rely\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Selling\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"unaware\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Cloth\": [\n        \"NNP\"\n    ], \n    \"scamper\": [\n        \"VBP\"\n    ], \n    \"nonthreatening\": [\n        \"VBG\"\n    ], \n    \"drowsed\": [\n        \"VBN\"\n    ], \n    \"Competing\": [\n        \"VBG\"\n    ], \n    \"Burghley\": [\n        \"NNP\"\n    ], \n    \"Olsson\": [\n        \"NNP\"\n    ], \n    \"Ambrose\": [\n        \"NNP\"\n    ], \n    \"high-vitamin\": [\n        \"JJ\"\n    ], \n    \"Tune\": [\n        \"NNP\"\n    ], \n    \"IranU.S\": [\n        \"NNP\"\n    ], \n    \"atom-smashing\": [\n        \"NN\"\n    ], \n    \"realer\": [\n        \"JJR\"\n    ], \n    \"steam-generating\": [\n        \"NN\"\n    ], \n    \"Neuharth\": [\n        \"NNP\"\n    ], \n    \"furor\": [\n        \"NN\"\n    ], \n    \"High-tech\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Amusements\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"backbeat\": [\n        \"NN\"\n    ], \n    \"Interpretation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ROGERS\": [\n        \"NNP\"\n    ], \n    \"slo-mo\": [\n        \"JJ\"\n    ], \n    \"Meaden\": [\n        \"NNP\"\n    ], \n    \"rankled\": [\n        \"VBN\"\n    ], \n    \"Domestic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Cotten\": [\n        \"NNP\"\n    ], \n    \"Bonnet\": [\n        \"NNP\"\n    ], \n    \"Cotter\": [\n        \"NNP\"\n    ], \n    \"Shippers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Bonner\": [\n        \"NNP\"\n    ], \n    \"Diff\": [\n        \"NN\"\n    ], \n    \"bide\": [\n        \"VB\"\n    ], \n    \"Pro-forma\": [\n        \"JJ\"\n    ], \n    \"brightly\": [\n        \"RB\"\n    ], \n    \"F.L.\": [\n        \"NNP\"\n    ], \n    \"atypical\": [\n        \"JJ\"\n    ], \n    \"tool-kit\": [\n        \"NN\"\n    ], \n    \"second-most-conservative\": [\n        \"JJ\"\n    ], \n    \"prisoners.\": [\n        \"NNS\"\n    ], \n    \"Carson\": [\n        \"NNP\"\n    ], \n    \"diamond\": [\n        \"NN\"\n    ], \n    \"voluntary-control\": [\n        \"JJ\"\n    ], \n    \"Lumpe\": [\n        \"NNP\"\n    ], \n    \"Begin\": [\n        \"VB\"\n    ], \n    \"boobify\": [\n        \"VB\"\n    ], \n    \"outstretched\": [\n        \"VBN\"\n    ], \n    \"no\": [\n        \"DT\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"na\": [\n        \"TO\", \n        \"VBG\"\n    ], \n    \"commercials\": [\n        \"NNS\"\n    ], \n    \"nd\": [\n        \"CC\"\n    ], \n    \"ne\": [\n        \"FW\"\n    ], \n    \"junta\": [\n        \"NN\"\n    ], \n    \"Scarlatti\": [\n        \"NNP\"\n    ], \n    \"Patagonia\": [\n        \"NNP\"\n    ], \n    \"criminalized\": [\n        \"JJ\"\n    ], \n    \"market-allocation\": [\n        \"JJ\"\n    ], \n    \"quite-literal\": [\n        \"JJ\"\n    ], \n    \"pseudonym\": [\n        \"NN\"\n    ], \n    \"evergreen\": [\n        \"NN\"\n    ], \n    \"Costa\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"reconsider\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"insure...\": [\n        \":\"\n    ], \n    \"impounded\": [\n        \"VBN\"\n    ], \n    \"geneticist\": [\n        \"NN\"\n    ], \n    \"trailers\": [\n        \"NNS\"\n    ], \n    \"Odakyu\": [\n        \"NNP\"\n    ], \n    \"Costs\": [\n        \"NNS\"\n    ], \n    \"corporations\": [\n        \"NNS\"\n    ], \n    \"ribbing\": [\n        \"NN\"\n    ], \n    \"dappled\": [\n        \"JJ\"\n    ], \n    \"parities\": [\n        \"NNS\"\n    ], \n    \"Geza\": [\n        \"NNP\"\n    ], \n    \"a-wing\": [\n        \"NN\"\n    ], \n    \"saxophonist\": [\n        \"NN\"\n    ], \n    \"BANKAMERICA\": [\n        \"NNP\"\n    ], \n    \"to-day\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"swarming\": [\n        \"VBG\"\n    ], \n    \"Zellers\": [\n        \"NNP\"\n    ], \n    \"plastically\": [\n        \"RB\"\n    ], \n    \"anxiety-free\": [\n        \"JJ\"\n    ], \n    \"Clothestime\": [\n        \"NNP\"\n    ], \n    \"hydroxymethyl\": [\n        \"NN\"\n    ], \n    \"Franco-Irishman\": [\n        \"NNP\"\n    ], \n    \"Title\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"varying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"unregulated\": [\n        \"JJ\"\n    ], \n    \"livelihood\": [\n        \"NN\"\n    ], \n    \"ACCOUNTS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"ventilator\": [\n        \"NN\"\n    ], \n    \"PrudentialBache\": [\n        \"NNP\"\n    ], \n    \"reaccelerating\": [\n        \"VBG\"\n    ], \n    \"cathodes\": [\n        \"NNS\"\n    ], \n    \"telemarketing\": [\n        \"NN\"\n    ], \n    \"Conflict\": [\n        \"NN\"\n    ], \n    \"recharge\": [\n        \"NN\"\n    ], \n    \"Columbia\": [\n        \"NNP\"\n    ], \n    \"operina\": [\n        \"NN\"\n    ], \n    \"geo-political\": [\n        \"JJ\"\n    ], \n    \"scrawny\": [\n        \"JJ\"\n    ], \n    \"reassemble\": [\n        \"VB\"\n    ], \n    \"flanged\": [\n        \"VBN\"\n    ], \n    \"Infocorp.\": [\n        \"NNP\"\n    ], \n    \"Anything\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Centralia\": [\n        \"NNP\"\n    ], \n    \"Itoh\": [\n        \"NNP\"\n    ], \n    \"decreeing\": [\n        \"VBG\"\n    ], \n    \"sloppy\": [\n        \"JJ\"\n    ], \n    \"sowered\": [\n        \"VBD\"\n    ], \n    \"d-Percentage\": [\n        \"NN\"\n    ], \n    \"Viceroy\": [\n        \"NNP\"\n    ], \n    \"carting\": [\n        \"VBG\"\n    ], \n    \"Reels\": [\n        \"NNPS\"\n    ], \n    \"slow-baked\": [\n        \"JJ\"\n    ], \n    \"sighed\": [\n        \"VBD\"\n    ], \n    \"REVIEW\": [\n        \"NNP\"\n    ], \n    \"sorting-out\": [\n        \"NN\"\n    ], \n    \"Vilaplana\": [\n        \"NNP\"\n    ], \n    \"inauspicious\": [\n        \"JJ\"\n    ], \n    \"intangibles\": [\n        \"NNS\"\n    ], \n    \"Market-research\": [\n        \"NN\"\n    ], \n    \"accumulation\": [\n        \"NN\"\n    ], \n    \"Rex\": [\n        \"NNP\"\n    ], \n    \"Rey\": [\n        \"NNP\"\n    ], \n    \"Schone\": [\n        \"NNP\"\n    ], \n    \"Tomkin\": [\n        \"NNP\"\n    ], \n    \"Rep\": [\n        \"NNP\"\n    ], \n    \"Rev\": [\n        \"NNP\"\n    ], \n    \"Ret\": [\n        \"NNP\"\n    ], \n    \"Culbertson\": [\n        \"NNP\"\n    ], \n    \"bid-asked\": [\n        \"JJ\"\n    ], \n    \"Northwest\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Hard-Line\": [\n        \"JJ\"\n    ], \n    \"Reb\": [\n        \"NN\"\n    ], \n    \"supertankers\": [\n        \"NNS\"\n    ], \n    \"Reg\": [\n        \"NNP\"\n    ], \n    \"Red\": [\n        \"NNP\", \n        \"JJ|NP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Lupton\": [\n        \"NNP\"\n    ], \n    \"distaste\": [\n        \"NN\"\n    ], \n    \"Newsom\": [\n        \"NNP\"\n    ], \n    \"rerouting\": [\n        \"VBG\"\n    ], \n    \"Bruck\": [\n        \"NNP\"\n    ], \n    \"Bruce\": [\n        \"NNP\"\n    ], \n    \"Oedipus\": [\n        \"NNP\"\n    ], \n    \"noncontroversial\": [\n        \"JJ\"\n    ], \n    \"agrees\": [\n        \"VBZ\"\n    ], \n    \"tarmac\": [\n        \"NN\"\n    ], \n    \"Hartwell\": [\n        \"NNP\"\n    ], \n    \"hairy\": [\n        \"JJ\"\n    ], \n    \"replays\": [\n        \"NNS\"\n    ], \n    \"Hopkins\": [\n        \"NNP\"\n    ], \n    \"higher-than-expected\": [\n        \"JJ\"\n    ], \n    \"Laptev\": [\n        \"NNP\"\n    ], \n    \"accountable\": [\n        \"JJ\"\n    ], \n    \"piezoelectricity\": [\n        \"NN\"\n    ], \n    \"twentieth\": [\n        \"JJ\"\n    ], \n    \"Amorim\": [\n        \"NNP\"\n    ], \n    \"Coldwell\": [\n        \"NNP\"\n    ], \n    \"houseboats\": [\n        \"NNS\"\n    ], \n    \"Sees\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"decadelong\": [\n        \"JJ\"\n    ], \n    \"united\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"machine-vision\": [\n        \"NN\"\n    ], \n    \"ENTERPRISES\": [\n        \"NNP\"\n    ], \n    \"sharpening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Seed\": [\n        \"NN\"\n    ], \n    \"descended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"editorialists\": [\n        \"NNS\"\n    ], \n    \"Seen\": [\n        \"VBN\"\n    ], \n    \"weird\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Caruso\": [\n        \"NNP\"\n    ], \n    \"Seek\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Crutcher\": [\n        \"NNP\"\n    ], \n    \"washes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"shelled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"sevenfold\": [\n        \"RB\"\n    ], \n    \"threes\": [\n        \"NNS\"\n    ], \n    \"Etzioni\": [\n        \"NNP\"\n    ], \n    \"smallish\": [\n        \"JJ\"\n    ], \n    \"self-definition\": [\n        \"NN\"\n    ], \n    \"concoct\": [\n        \"VB\"\n    ], \n    \"Hostage\": [\n        \"NNP\"\n    ], \n    \"Differences\": [\n        \"NNS\"\n    ], \n    \"Florican-My\": [\n        \"NNP\"\n    ], \n    \"Automation\": [\n        \"NNP\"\n    ], \n    \"wrongs\": [\n        \"NNS\"\n    ], \n    \"Foggs\": [\n        \"NNP\"\n    ], \n    \"name-dropper\": [\n        \"NN\"\n    ], \n    \"two-timing\": [\n        \"JJ\"\n    ], \n    \"Foggy\": [\n        \"NNP\"\n    ], \n    \"Slackened\": [\n        \"VBN\"\n    ], \n    \"Elizabethans\": [\n        \"NNS\"\n    ], \n    \"barkeep\": [\n        \"NN\"\n    ], \n    \"Tims\": [\n        \"NNP\"\n    ], \n    \"signboards\": [\n        \"NNS\"\n    ], \n    \"riot\": [\n        \"NN\"\n    ], \n    \"neared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"demonized\": [\n        \"VBN\"\n    ], \n    \"Calling\": [\n        \"VBG\"\n    ], \n    \"progressivism\": [\n        \"NN\"\n    ], \n    \"Calabasas\": [\n        \"NNP\"\n    ], \n    \"Time\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"prefectural\": [\n        \"JJ\"\n    ], \n    \"Weidman\": [\n        \"NNP\"\n    ], \n    \"Pascutto\": [\n        \"NNP\"\n    ], \n    \"inhabit\": [\n        \"VBP\"\n    ], \n    \"Fredonia\": [\n        \"NNP\"\n    ], \n    \"Scania\": [\n        \"NNP\"\n    ], \n    \"German\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"humly\": [\n        \"RB\"\n    ], \n    \"Teatro\": [\n        \"NNP\"\n    ], \n    \"Gorillas\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fauna\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Areas\": [\n        \"NNS\"\n    ], \n    \"laughter\": [\n        \"NN\"\n    ], \n    \"coral\": [\n        \"JJ\"\n    ], \n    \"Polyanka\": [\n        \"NNP\"\n    ], \n    \"performer\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"now-repentant\": [\n        \"JJ\"\n    ], \n    \"Skubal\": [\n        \"NNP\"\n    ], \n    \"McCarthyite\": [\n        \"JJ\"\n    ], \n    \"Uniqueness\": [\n        \"NNP\"\n    ], \n    \"theistic\": [\n        \"JJ\"\n    ], \n    \"slugging\": [\n        \"VBG\"\n    ], \n    \"performed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"viewless\": [\n        \"JJ\"\n    ], \n    \"serendipity\": [\n        \"NN\"\n    ], \n    \"government-operated\": [\n        \"JJ\"\n    ], \n    \"Moluccas\": [\n        \"NNP\"\n    ], \n    \"Scambio\": [\n        \"NNP\"\n    ], \n    \"harmed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"FROG-7B\": [\n        \"NN\"\n    ], \n    \"infringements\": [\n        \"NNS\"\n    ], \n    \"monopolization\": [\n        \"NN\"\n    ], \n    \"used-equipment\": [\n        \"NN\"\n    ], \n    \"Hormel\": [\n        \"NNP\"\n    ], \n    \"flavored\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"unutterably\": [\n        \"RB\"\n    ], \n    \"epigrammatic\": [\n        \"JJ\"\n    ], \n    \"Prospects\": [\n        \"NNS\"\n    ], \n    \"Natalie\": [\n        \"NNP\"\n    ], \n    \"Natalia\": [\n        \"NNP\"\n    ], \n    \"granddaughter\": [\n        \"NN\"\n    ], \n    \"unawares\": [\n        \"RB\"\n    ], \n    \"Chinchon\": [\n        \"NNP\"\n    ], \n    \"peacemakers\": [\n        \"NNS\"\n    ], \n    \"over-produce\": [\n        \"VB\"\n    ], \n    \"WD-40\": [\n        \"NNP\"\n    ], \n    \"Fortress\": [\n        \"NNP\"\n    ], \n    \"Machida\": [\n        \"NNP\"\n    ], \n    \"Fantastico\": [\n        \"NNP\"\n    ], \n    \"Guaranty\": [\n        \"NNP\"\n    ], \n    \"lemmas\": [\n        \"NNS\"\n    ], \n    \"overreached\": [\n        \"VBD\"\n    ], \n    \"infidels\": [\n        \"NNS\"\n    ], \n    \"Wyly\": [\n        \"NNP\"\n    ], \n    \"Batten\": [\n        \"NNP\"\n    ], \n    \"Unusual\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"third-inning\": [\n        \"NN\"\n    ], \n    \"pressed-paper\": [\n        \"JJ\"\n    ], \n    \"vinyl-products\": [\n        \"NNS\"\n    ], \n    \"burglary\": [\n        \"NN\"\n    ], \n    \"Journal\\\\\": [\n        \"NNP\"\n    ], \n    \"stock-index\": [\n        \"NN\", \n        \"JJ\", \n        \"NNS\"\n    ], \n    \"Ghana\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"self-portrait\": [\n        \"NN\"\n    ], \n    \"abusers\": [\n        \"NNS\"\n    ], \n    \"courthouse\": [\n        \"NN\"\n    ], \n    \"apex\": [\n        \"NN\"\n    ], \n    \"cheerleaders\": [\n        \"NNS\"\n    ], \n    \"company-arranged\": [\n        \"JJ\"\n    ], \n    \"varicolored\": [\n        \"JJ\"\n    ], \n    \"Burgher\": [\n        \"NNP\"\n    ], \n    \"Jianying\": [\n        \"NNP\"\n    ], \n    \"Journals\": [\n        \"NNPS\"\n    ], \n    \"washload\": [\n        \"NN\"\n    ], \n    \"TPA\": [\n        \"NNP\"\n    ], \n    \"Riefenstahl\": [\n        \"NNP\"\n    ], \n    \"Yamatake-Honeywell\": [\n        \"NNP\"\n    ], \n    \"Parisien\": [\n        \"NNP\"\n    ], \n    \"Maher\": [\n        \"NNP\"\n    ], \n    \"countrywide\": [\n        \"JJ\"\n    ], \n    \"TPS\": [\n        \"NNP\"\n    ], \n    \"Broughton\": [\n        \"NNP\"\n    ], \n    \"producing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"car-parts\": [\n        \"JJ\"\n    ], \n    \"acetone\": [\n        \"NN\"\n    ], \n    \"equality\": [\n        \"NN\"\n    ], \n    \"Stephens\": [\n        \"NNP\"\n    ], \n    \"Cal-Neva\": [\n        \"NNP\"\n    ], \n    \"Watches\": [\n        \"NNS\"\n    ], \n    \"possibilities\": [\n        \"NNS\"\n    ], \n    \"Scotia-McLeod\": [\n        \"NNP\"\n    ], \n    \"nodding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Concordes\": [\n        \"NNP\"\n    ], \n    \"association...\": [\n        \":\"\n    ], \n    \"dabs\": [\n        \"VBZ\"\n    ], \n    \"Worry\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"a-Totals\": [\n        \"NNS\", \n        \"LS|NNS\"\n    ], \n    \"Move\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"unproductive\": [\n        \"JJ\"\n    ], \n    \"Easily\": [\n        \"RB\"\n    ], \n    \"convention-goers\": [\n        \"NNS\"\n    ], \n    \"markups\": [\n        \"NNS\"\n    ], \n    \"approximates\": [\n        \"VBZ\"\n    ], \n    \"gaps\": [\n        \"NNS\"\n    ], \n    \"gapt\": [\n        \"NN\"\n    ], \n    \"begun\": [\n        \"VBN\"\n    ], \n    \"Leppard\": [\n        \"NNP\"\n    ], \n    \"approximated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"save-the-earth\": [\n        \"JJ\"\n    ], \n    \"adequately\": [\n        \"RB\"\n    ], \n    \"splashy\": [\n        \"JJ\"\n    ], \n    \"Spielberg\": [\n        \"NNP\"\n    ], \n    \"costliest\": [\n        \"JJS\"\n    ], \n    \"Feyer\": [\n        \"NNP\"\n    ], \n    \"reasearch\": [\n        \"NN\"\n    ], \n    \"infuriated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"profit\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"privatizations\": [\n        \"NNS\"\n    ], \n    \"Fike\": [\n        \"NNP\"\n    ], \n    \"dehydrated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"attracted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"phase-in\": [\n        \"NN\"\n    ], \n    \"delight\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bugging\": [\n        \"NN\"\n    ], \n    \"juror\": [\n        \"NN\"\n    ], \n    \"theory\": [\n        \"NN\"\n    ], \n    \"booby\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bicarbonate\": [\n        \"NN\"\n    ], \n    \"commonwealths\": [\n        \"NNS\"\n    ], \n    \"high-gain\": [\n        \"JJ\"\n    ], \n    \"technocrats\": [\n        \"NNS\"\n    ], \n    \"counterforce\": [\n        \"NN\"\n    ], \n    \"subzero\": [\n        \"JJ\"\n    ], \n    \"marries\": [\n        \"VBZ\"\n    ], \n    \"disillusionment\": [\n        \"NN\"\n    ], \n    \"impose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"high-tax\": [\n        \"JJ\"\n    ], \n    \"deep-set\": [\n        \"JJ\"\n    ], \n    \"Moscow-based\": [\n        \"JJ\"\n    ], \n    \"deliberated\": [\n        \"VBD\"\n    ], \n    \"five-foot-wide\": [\n        \"JJ\"\n    ], \n    \"deep-sea\": [\n        \"JJ\"\n    ], \n    \"unborn\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mungus\": [\n        \"NN\"\n    ], \n    \"Sinopoli\": [\n        \"NNP\"\n    ], \n    \"origin\": [\n        \"NN\"\n    ], \n    \"buzzer\": [\n        \"NN\"\n    ], \n    \"simplifies\": [\n        \"VBZ\"\n    ], \n    \"buzzes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"green-bugs\": [\n        \"NN\"\n    ], \n    \"pencil-and-sepia\": [\n        \"JJ\"\n    ], \n    \"incongruous\": [\n        \"JJ\"\n    ], \n    \"Sochi\": [\n        \"NNP\"\n    ], \n    \"satellite-transmission\": [\n        \"NN\"\n    ], \n    \"Crozier\": [\n        \"NNP\"\n    ], \n    \"simplified\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"alike\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"nursing-home\": [\n        \"NN\"\n    ], \n    \"Onstage\": [\n        \"RB\"\n    ], \n    \"SEi\": [\n        \"NNP\"\n    ], \n    \"SET\": [\n        \"VBD\"\n    ], \n    \"Juarez-area\": [\n        \"NN\"\n    ], \n    \"Electrolux\": [\n        \"NNP\"\n    ], \n    \"Fed-bashing\": [\n        \"NN\"\n    ], \n    \"stimulation\": [\n        \"NN\"\n    ], \n    \"SEE\": [\n        \"VBP\"\n    ], \n    \"SEC\": [\n        \"NNP\"\n    ], \n    \"chastity\": [\n        \"NN\"\n    ], \n    \"Such\": [\n        \"JJ\", \n        \"DT\", \n        \"NNP\", \n        \"PDT\"\n    ], \n    \"SEM\": [\n        \"NNP\"\n    ], \n    \"anesthetized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"SEI\": [\n        \"NNP\"\n    ], \n    \"unfaltering\": [\n        \"VBG\"\n    ], \n    \"wax\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"anti-ulcer\": [\n        \"JJ\"\n    ], \n    \"Rent-A-Car\": [\n        \"NNP\"\n    ], \n    \"bounty-hunting\": [\n        \"NN\"\n    ], \n    \"taketh\": [\n        \"VB\"\n    ], \n    \"intrinsically\": [\n        \"RB\"\n    ], \n    \"Clothes\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Carney\": [\n        \"NNP\"\n    ], \n    \"Pantera\": [\n        \"NNP\"\n    ], \n    \"Sousa\": [\n        \"NNP\"\n    ], \n    \"require\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Drunk\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Drovers\": [\n        \"NNS\"\n    ], \n    \"CONCORDE\": [\n        \"NNP\"\n    ], \n    \"blood-clotting\": [\n        \"JJ\"\n    ], \n    \"Roederer\": [\n        \"NNP\"\n    ], \n    \"all-inclusive\": [\n        \"JJ\"\n    ], \n    \"Atlanta-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"J.NTT\": [\n        \"NNP\"\n    ], \n    \"thyrotrophic\": [\n        \"JJ\"\n    ], \n    \"and\": [\n        \"CC\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"mated\": [\n        \"VBN\"\n    ], \n    \"Clint\": [\n        \"NNP\"\n    ], \n    \"blitzing\": [\n        \"VBG\"\n    ], \n    \"pro\": [\n        \"FW\", \n        \"IN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"ani\": [\n        \"JJ\"\n    ], \n    \"prostitution\": [\n        \"NN\"\n    ], \n    \"ant\": [\n        \"NN\"\n    ], \n    \"slick-headed\": [\n        \"JJ\"\n    ], \n    \"mater\": [\n        \"NN\"\n    ], \n    \"Aylesbury\": [\n        \"NNP\"\n    ], \n    \"Cline\": [\n        \"NNP\"\n    ], \n    \"commissioning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"pry\": [\n        \"VB\"\n    ], \n    \"Gildas\": [\n        \"NNP\"\n    ], \n    \"foundered\": [\n        \"VBD\"\n    ], \n    \"calisthenics\": [\n        \"NNS\"\n    ], \n    \"Uh-huh\": [\n        \"UH\"\n    ], \n    \"Lipstein\": [\n        \"NNP\"\n    ], \n    \"Famous\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Goldang\": [\n        \"UH\"\n    ], \n    \"Precinct\": [\n        \"NNP\"\n    ], \n    \"Kang\": [\n        \"NNP\"\n    ], \n    \"Fudomae\": [\n        \"NNP\"\n    ], \n    \"invasions\": [\n        \"NNS\"\n    ], \n    \"Customized\": [\n        \"JJ\"\n    ], \n    \"clatter\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Hardis\": [\n        \"NNP\"\n    ], \n    \"Zachrisson\": [\n        \"NNP\"\n    ], \n    \"computer-servicing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drug-bill\": [\n        \"NN\"\n    ], \n    \"yelped\": [\n        \"VBD\"\n    ], \n    \"unwisely\": [\n        \"RB\"\n    ], \n    \"peptides\": [\n        \"NNS\"\n    ], \n    \"brushfire\": [\n        \"NN\"\n    ], \n    \"seafarers\": [\n        \"NNS\"\n    ], \n    \"Cafeteria\": [\n        \"NNP\"\n    ], \n    \"perpetrated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"position-building\": [\n        \"NN\"\n    ], \n    \"non-building\": [\n        \"JJ\"\n    ], \n    \"Renewal\": [\n        \"NNP\"\n    ], \n    \"ginseng\": [\n        \"NN\"\n    ], \n    \"applauding\": [\n        \"VBG\"\n    ], \n    \"recipe\": [\n        \"NN\"\n    ], \n    \"Sakura\": [\n        \"NNP\"\n    ], \n    \"Cavallinis\": [\n        \"NNS\"\n    ], \n    \"fish-processing\": [\n        \"JJ\"\n    ], \n    \"Raffaello\": [\n        \"NNP\"\n    ], \n    \"protrusion\": [\n        \"NN\"\n    ], \n    \"BUSY\": [\n        \"JJ\"\n    ], \n    \"toxicologists\": [\n        \"NNS\"\n    ], \n    \"Locker-room\": [\n        \"NN\"\n    ], \n    \"piranha\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"overage\": [\n        \"JJ\"\n    ], \n    \"BUSH\": [\n        \"NNP\"\n    ], \n    \"explicitly\": [\n        \"RB\"\n    ], \n    \"close-mouthed\": [\n        \"JJ\"\n    ], \n    \"Plea\": [\n        \"NN\"\n    ], \n    \"identification\": [\n        \"NN\"\n    ], \n    \"centrally\": [\n        \"RB\"\n    ], \n    \"Shoichiro\": [\n        \"NNP\"\n    ], \n    \"chillier\": [\n        \"NN\"\n    ], \n    \"outguess\": [\n        \"VB\"\n    ], \n    \"begging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"crude\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"microchannel\": [\n        \"JJ\"\n    ], \n    \"high-quality\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Theo-Dur\": [\n        \"NNP\"\n    ], \n    \"Adalbert\": [\n        \"NNP\"\n    ], \n    \"closure\": [\n        \"NN\"\n    ], \n    \"Buchenwald\": [\n        \"NNP\"\n    ], \n    \"regarding\": [\n        \"VBG\"\n    ], \n    \"floods\": [\n        \"NNS\"\n    ], \n    \"preliminarily\": [\n        \"RB\"\n    ], \n    \"cumin\": [\n        \"NN\"\n    ], \n    \"Rhineland\": [\n        \"NN\"\n    ], \n    \"Bailly\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"CELTICS\": [\n        \"NNPS\"\n    ], \n    \"Cognex\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"adventure-based\": [\n        \"JJ\"\n    ], \n    \"reveals\": [\n        \"VBZ\"\n    ], \n    \"pummeled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"picnic\": [\n        \"NN\"\n    ], \n    \"Colonel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"labors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"innards\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Mosher\": [\n        \"NNP\"\n    ], \n    \"sorest\": [\n        \"JJS\"\n    ], \n    \"Geva\": [\n        \"NNP\"\n    ], \n    \"college-bowl\": [\n        \"NN\"\n    ], \n    \"catapulting\": [\n        \"VBG\"\n    ], \n    \"underpaid\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"B.A.T\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"insuring\": [\n        \"VBG\"\n    ], \n    \"Jesuit\": [\n        \"NNP\"\n    ], \n    \"detect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"commutation\": [\n        \"NN\"\n    ], \n    \"gastronomes\": [\n        \"NNS\"\n    ], \n    \"Gagliardini\": [\n        \"NNP\"\n    ], \n    \"flop\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"belittled\": [\n        \"JJ\"\n    ], \n    \"materials-handling\": [\n        \"JJ\"\n    ], \n    \"invokes\": [\n        \"VBZ\"\n    ], \n    \"Texas\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"BLOCKBUSTER\": [\n        \"NNP\"\n    ], \n    \"Gilsbar\": [\n        \"NNP\"\n    ], \n    \"caucus\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lilian\": [\n        \"NNP\"\n    ], \n    \"good-looking\": [\n        \"JJ\"\n    ], \n    \"painters\": [\n        \"NNS\"\n    ], \n    \"Webster\\\\/Eagle\": [\n        \"NNP\"\n    ], \n    \"thyratron\": [\n        \"NN\"\n    ], \n    \"grieved\": [\n        \"VBN\"\n    ], \n    \"TODAY\": [\n        \"NNP\"\n    ], \n    \"Messa\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"bite-sized\": [\n        \"JJ\"\n    ], \n    \"Sterile\": [\n        \"NNP\"\n    ], \n    \"Parkshore\": [\n        \"NNP\"\n    ], \n    \"Filmworks\": [\n        \"NNP\"\n    ], \n    \"stupidest\": [\n        \"JJS\"\n    ], \n    \"non-crisis\": [\n        \"JJ\"\n    ], \n    \"Macwhyte\": [\n        \"NNP\"\n    ], \n    \"Rosencrants\": [\n        \"NNP\"\n    ], \n    \"Saracens\": [\n        \"NNPS\"\n    ], \n    \"takeover\": [\n        \"NN\"\n    ], \n    \"senator\": [\n        \"NN\"\n    ], \n    \"Investment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"deported\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cutlass\": [\n        \"NN\"\n    ], \n    \"Nott\": [\n        \"NNP\"\n    ], \n    \"checkbooks\": [\n        \"NNS\"\n    ], \n    \"frequency-independent\": [\n        \"JJ\"\n    ], \n    \"kalega\": [\n        \"NN\"\n    ], \n    \"loose-leaf\": [\n        \"JJ\"\n    ], \n    \"resentment\": [\n        \"NN\"\n    ], \n    \"Note\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Wisman\": [\n        \"NNP\"\n    ], \n    \"Dupps\": [\n        \"NNP\"\n    ], \n    \"blasphemers\": [\n        \"NNS\"\n    ], \n    \"Lundeen\": [\n        \"NNP\"\n    ], \n    \"Crumlish\": [\n        \"NNP\"\n    ], \n    \"mezzo\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Buy\": [\n        \"VB\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Carlzon\": [\n        \"NNP\"\n    ], \n    \"Bus\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"computing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"But\": [\n        \"CC\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"Slated\": [\n        \"VBN\"\n    ], \n    \"votive\": [\n        \"JJ\"\n    ], \n    \"four-story\": [\n        \"JJ\"\n    ], \n    \"Bun\": [\n        \"NN\"\n    ], \n    \"market-system\": [\n        \"NN\"\n    ], \n    \"Slater\": [\n        \"NNP\"\n    ], \n    \"archrival\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bud\": [\n        \"NNP\"\n    ], \n    \"schoolboy\": [\n        \"NN\"\n    ], \n    \"non-alcohol\": [\n        \"JJ\"\n    ], \n    \"Grappely\": [\n        \"NNP\"\n    ], \n    \"robbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"black-on-black\": [\n        \"JJ\"\n    ], \n    \"Farra\": [\n        \"NNP\"\n    ], \n    \"diamond-studded\": [\n        \"NN\"\n    ], \n    \"Communist-designed\": [\n        \"JJ\"\n    ], \n    \"Anacomp\": [\n        \"NNP\"\n    ], \n    \"robber\": [\n        \"NN\"\n    ], \n    \"Cursing\": [\n        \"VBG\"\n    ], \n    \"shaft\": [\n        \"NN\"\n    ], \n    \"Divide\": [\n        \"VB\"\n    ], \n    \"Indentical\": [\n        \"JJ\"\n    ], \n    \"Cents\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Churning\": [\n        \"NN\"\n    ], \n    \"embodying\": [\n        \"VBG\"\n    ], \n    \"nothingness\": [\n        \"NN\"\n    ], \n    \"Bradsher\": [\n        \"NNP\"\n    ], \n    \"lifeboat\": [\n        \"NN\"\n    ], \n    \"Crusade\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Interleaf\": [\n        \"NNP\"\n    ], \n    \"still-punishing\": [\n        \"JJ\"\n    ], \n    \"prescriptive\": [\n        \"JJ\"\n    ], \n    \"puncher\": [\n        \"NN\"\n    ], \n    \"Slow\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"crusades\": [\n        \"NNS\"\n    ], \n    \"crusader\": [\n        \"NN\"\n    ], \n    \"clerk-turned\": [\n        \"JJ\"\n    ], \n    \"yachtsmen\": [\n        \"NNS\"\n    ], \n    \"ice-chest\": [\n        \"NN\"\n    ], \n    \"hurting\": [\n        \"VBG\"\n    ], \n    \"CRAF-Cassini\": [\n        \"NNP\"\n    ], \n    \"crusaded\": [\n        \"VBN\"\n    ], \n    \"converts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"whimpering\": [\n        \"VBG\"\n    ], \n    \"Hidden\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"pruning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bonnell\": [\n        \"NNP\"\n    ], \n    \"perhaps\": [\n        \"RB\"\n    ], \n    \"Protesters\": [\n        \"NNS\"\n    ], \n    \"farmhands\": [\n        \"NNS\"\n    ], \n    \"Excuse\": [\n        \"VB\"\n    ], \n    \"Heinhold\": [\n        \"NNP\"\n    ], \n    \"takeover-related\": [\n        \"JJ\"\n    ], \n    \"agitated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"resuspension\": [\n        \"NN\"\n    ], \n    \"events\": [\n        \"NNS\"\n    ], \n    \"TRIMMING\": [\n        \"VBG\"\n    ], \n    \"applaud\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Signal\": [\n        \"NNP\"\n    ], \n    \"retrograde\": [\n        \"JJ\"\n    ], \n    \"W.M.\": [\n        \"NNP\"\n    ], \n    \"devoid\": [\n        \"JJ\"\n    ], \n    \"prospered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"smatterings\": [\n        \"NNS\"\n    ], \n    \"arose\": [\n        \"VBD\"\n    ], \n    \"changing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"high-paying\": [\n        \"JJ\"\n    ], \n    \"Langner\": [\n        \"NNP\"\n    ], \n    \"implements\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"vantage\": [\n        \"NN\"\n    ], \n    \"gibes\": [\n        \"NNS\"\n    ], \n    \"modes\": [\n        \"NNS\"\n    ], \n    \"Bedminster\": [\n        \"NNP\"\n    ], \n    \"purposeful\": [\n        \"JJ\"\n    ], \n    \"recital\": [\n        \"NN\"\n    ], \n    \"Sonates\": [\n        \"NNPS\"\n    ], \n    \"melodramatic\": [\n        \"JJ\"\n    ], \n    \"Bucking\": [\n        \"VBG\"\n    ], \n    \"termination\": [\n        \"NN\"\n    ], \n    \"model\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"modem\": [\n        \"NN\"\n    ], \n    \"clod\": [\n        \"NN\"\n    ], \n    \"United\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"softwood\": [\n        \"JJ\"\n    ], \n    \"Nawbo\": [\n        \"NNP\"\n    ], \n    \"Unitel\": [\n        \"NNP\"\n    ], \n    \"stiffnecked\": [\n        \"JJ\"\n    ], \n    \"clot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"entrusting\": [\n        \"VBG\"\n    ], \n    \"manse\": [\n        \"NN\"\n    ], \n    \"laminating\": [\n        \"VBG\"\n    ], \n    \"perilous\": [\n        \"JJ\"\n    ], \n    \"Lombard\": [\n        \"NNP\"\n    ], \n    \"Bam\": [\n        \"UH\"\n    ], \n    \"Jobs\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"MacPherson\": [\n        \"NNP\"\n    ], \n    \"anchorwoman\": [\n        \"NN\"\n    ], \n    \"Zurek\": [\n        \"NNP\"\n    ], \n    \"poises\": [\n        \"NNS\"\n    ], \n    \"EC-1\": [\n        \"NN\"\n    ], \n    \"textile-trade\": [\n        \"JJ\"\n    ], \n    \"pallet\": [\n        \"NN\"\n    ], \n    \"decompression\": [\n        \"NN\"\n    ], \n    \"prettily\": [\n        \"RB\"\n    ], \n    \"engulfed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"poised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"a-Ex-dividend\": [\n        \"NN\"\n    ], \n    \"CONFRONTATIONS\": [\n        \"NNS\"\n    ], \n    \"kingdom\": [\n        \"NN\"\n    ], \n    \"Amendment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lyricist\": [\n        \"NN\"\n    ], \n    \"Rosenblatt\": [\n        \"NNP\"\n    ], \n    \"Sophomore\": [\n        \"NN\"\n    ], \n    \"Virginian\": [\n        \"NNP\"\n    ], \n    \"Lili\": [\n        \"NNP\"\n    ], \n    \"Terrible\": [\n        \"NNP\"\n    ], \n    \"mini-cars\": [\n        \"NNS\"\n    ], \n    \"predetermined\": [\n        \"VBN\"\n    ], \n    \"Runkel\": [\n        \"NNP\"\n    ], \n    \"Alito\": [\n        \"NNP\"\n    ], \n    \"glitches\": [\n        \"NNS\"\n    ], \n    \"Hingorani\": [\n        \"NNP\"\n    ], \n    \"Nikolai\": [\n        \"NNP\"\n    ], \n    \"standstill\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kellwood\": [\n        \"NNP\"\n    ], \n    \"lyricism\": [\n        \"NN\"\n    ], \n    \"ill-timed\": [\n        \"JJ\"\n    ], \n    \"Subjects\": [\n        \"NNS\"\n    ], \n    \"national-policy\": [\n        \"NN\"\n    ], \n    \"Grimaldi\": [\n        \"NNP\"\n    ], \n    \"Gunmen\": [\n        \"NNS\"\n    ], \n    \"upside\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"meaninglessness\": [\n        \"NN\"\n    ], \n    \"oilman-rancher\": [\n        \"NN\"\n    ], \n    \"Lister\": [\n        \"NNP\"\n    ], \n    \"Symms\": [\n        \"NNP\"\n    ], \n    \"Million-dollar\": [\n        \"JJ\"\n    ], \n    \"Tizard\": [\n        \"NNP\"\n    ], \n    \"Tatsuhara\": [\n        \"NNP\"\n    ], \n    \"pacific\": [\n        \"JJ\"\n    ], \n    \"unhocked\": [\n        \"VBN\"\n    ], \n    \"Afrikaaner\": [\n        \"NNP\"\n    ], \n    \"Listed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"bylaws\": [\n        \"NNS\"\n    ], \n    \"Pechman\": [\n        \"NNP\"\n    ], \n    \"Terror\": [\n        \"NN\"\n    ], \n    \"canteen\": [\n        \"NN\"\n    ], \n    \"Safeguards\": [\n        \"NNS\"\n    ], \n    \"Listen\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Sully\": [\n        \"NNP\"\n    ], \n    \"Danish\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"colloidal\": [\n        \"JJ\"\n    ], \n    \"Invite\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"prolific\": [\n        \"JJ\"\n    ], \n    \"non-energy\": [\n        \"JJ\"\n    ], \n    \"shirtless\": [\n        \"JJ\"\n    ], \n    \"Appian\": [\n        \"NNP\"\n    ], \n    \"legal\": [\n        \"JJ\"\n    ], \n    \"Blowers\": [\n        \"NNS\"\n    ], \n    \"above-water\": [\n        \"JJ\"\n    ], \n    \"provides\": [\n        \"VBZ\"\n    ], \n    \"provider\": [\n        \"NN\"\n    ], \n    \"chapel-like\": [\n        \"JJ\"\n    ], \n    \"extra-musical\": [\n        \"JJ\"\n    ], \n    \"Jute\": [\n        \"NN\"\n    ], \n    \"terrifies\": [\n        \"VBZ\"\n    ], \n    \"broom\": [\n        \"NN\"\n    ], \n    \"Zama\": [\n        \"NNP\"\n    ], \n    \"white-collar\": [\n        \"JJ\"\n    ], \n    \"Hakuhodo\": [\n        \"NNP\"\n    ], \n    \"multi-column\": [\n        \"JJ\"\n    ], \n    \"weirdest\": [\n        \"JJS\"\n    ], \n    \"ethanol-powered\": [\n        \"JJ\"\n    ], \n    \"LaGow\": [\n        \"NNP\"\n    ], \n    \"fit-looking\": [\n        \"JJ\"\n    ], \n    \"tintype\": [\n        \"NN\"\n    ], \n    \"rearranging\": [\n        \"VBG\"\n    ], \n    \"Korda\": [\n        \"NNP\"\n    ], \n    \"zealous\": [\n        \"JJ\"\n    ], \n    \"paralysis\": [\n        \"NN\"\n    ], \n    \"good-til-canceled\": [\n        \"JJ\"\n    ], \n    \"medicare\": [\n        \"NN\"\n    ], \n    \"waded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"vicar\": [\n        \"NN\"\n    ], \n    \"grindstone\": [\n        \"NN\"\n    ], \n    \"Costley\": [\n        \"NNP\"\n    ], \n    \"Small-lot\": [\n        \"JJ\"\n    ], \n    \"wasteful\": [\n        \"JJ\"\n    ], \n    \"top-tier\": [\n        \"JJ\"\n    ], \n    \"speculates\": [\n        \"VBZ\"\n    ], \n    \"Lovington\": [\n        \"NNP\"\n    ], \n    \"Inject\": [\n        \"VB\"\n    ], \n    \"Saxon\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"speculated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sloshing\": [\n        \"VBG\"\n    ], \n    \"refinements\": [\n        \"NNS\"\n    ], \n    \"Red-prone\": [\n        \"JJ\"\n    ], \n    \"Luxor\": [\n        \"NNP\"\n    ], \n    \"Assam\": [\n        \"NNP\"\n    ], \n    \"Bachelor\": [\n        \"NNP\"\n    ], \n    \"Mifepristone\": [\n        \"NNP\"\n    ], \n    \"outward-looking\": [\n        \"JJ\"\n    ], \n    \"Letter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"desirability\": [\n        \"NN\"\n    ], \n    \"Conservative-Communist\": [\n        \"JJ\"\n    ], \n    \"unpolished\": [\n        \"JJ\"\n    ], \n    \"Princeton\\\\\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"UEP\": [\n        \"NNP\"\n    ], \n    \"Assab\": [\n        \"NNP\"\n    ], \n    \"Comfort\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"illuminated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Cowboy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"A.A.U.\": [\n        \"NNP\"\n    ], \n    \"illuminates\": [\n        \"VBZ\"\n    ], \n    \"swathed\": [\n        \"VBN\"\n    ], \n    \"Heidenstam\": [\n        \"NNP\"\n    ], \n    \"Assign\": [\n        \"VB\"\n    ], \n    \"L.P.V\": [\n        \"NNP\"\n    ], \n    \"Boal\": [\n        \"NNP\"\n    ], \n    \"mortals\": [\n        \"NNS\"\n    ], \n    \"multiplicity\": [\n        \"NN\"\n    ], \n    \"Okuma\": [\n        \"NNP\"\n    ], \n    \"turbines\": [\n        \"NNS\"\n    ], \n    \"Boaz\": [\n        \"NNP\"\n    ], \n    \"preside\": [\n        \"VB\"\n    ], \n    \"WEST\": [\n        \"NNP\"\n    ], \n    \"g-p\": [\n        \"NN\"\n    ], \n    \"zinc-consuming\": [\n        \"JJ\"\n    ], \n    \"Boat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"remedies\": [\n        \"NNS\"\n    ], \n    \"Vasotec\": [\n        \"NNP\"\n    ], \n    \"tubercular\": [\n        \"JJ\"\n    ], \n    \"Pharmacia\": [\n        \"NNP\"\n    ], \n    \"headwaters\": [\n        \"NNS\"\n    ], \n    \"MINISTER\": [\n        \"NN\"\n    ], \n    \"Homeland\": [\n        \"NN\"\n    ], \n    \"clamshells\": [\n        \"NNS\"\n    ], \n    \"pudding-faced\": [\n        \"JJ\"\n    ], \n    \"Finnsburg\": [\n        \"NNP\"\n    ], \n    \"gram\": [\n        \"NN\"\n    ], \n    \"amours\": [\n        \"FW\"\n    ], \n    \"stumbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Criminal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"miscarriages\": [\n        \"NNS\"\n    ], \n    \"idiot\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"post-split\": [\n        \"JJ\"\n    ], \n    \"diarrhea\": [\n        \"NN\"\n    ], \n    \"McQueen\": [\n        \"NNP\"\n    ], \n    \"Armentieres\": [\n        \"NNP\"\n    ], \n    \"idiom\": [\n        \"NN\"\n    ], \n    \"regents\": [\n        \"NNS\"\n    ], \n    \"kerchiefed\": [\n        \"JJ\"\n    ], \n    \"stumbles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Cleaver\": [\n        \"NNP\"\n    ], \n    \"Viroqua\": [\n        \"NNP\"\n    ], \n    \"infighting\": [\n        \"NN\"\n    ], \n    \"tax-aided\": [\n        \"JJ\"\n    ], \n    \"Tougas\": [\n        \"NNP\"\n    ], \n    \"includes\": [\n        \"VBZ\"\n    ], \n    \"Tyrannosaurus\": [\n        \"NNP\"\n    ], \n    \"Miro\": [\n        \"NNP\"\n    ], \n    \"bounded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"included\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"includee\": [\n        \"VBP\"\n    ], \n    \"spouse\": [\n        \"NN\"\n    ], \n    \"applicators\": [\n        \"NNS\"\n    ], \n    \"Bagneaux\": [\n        \"NNP\"\n    ], \n    \"Rosman\": [\n        \"NNP\"\n    ], \n    \"based.\": [\n        \"VBN\"\n    ], \n    \"bilateral\": [\n        \"JJ\"\n    ], \n    \"invest\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"uglier\": [\n        \"JJR\"\n    ], \n    \"wayward-looking\": [\n        \"JJ\"\n    ], \n    \"curve\": [\n        \"NN\"\n    ], \n    \"curvy\": [\n        \"JJ\"\n    ], \n    \"Tancred\": [\n        \"NNP\"\n    ], \n    \"ensuring\": [\n        \"VBG\"\n    ], \n    \"Lauritz\": [\n        \"NNP\"\n    ], \n    \"Rowell\": [\n        \"NNP\"\n    ], \n    \"Juneau\": [\n        \"NNP\"\n    ], \n    \"Analog\": [\n        \"NNP\"\n    ], \n    \"confers\": [\n        \"VBZ\"\n    ], \n    \"Lumina\": [\n        \"NNP\"\n    ], \n    \"Wigglesworth\": [\n        \"NNP\"\n    ], \n    \"Noon\": [\n        \"NNP\"\n    ], \n    \"remedied\": [\n        \"VBN\"\n    ], \n    \"scattered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"seals\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Parents\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Mareham\": [\n        \"NNP\"\n    ], \n    \"Minot\": [\n        \"NNP\"\n    ], \n    \"co-editor\": [\n        \"NN\"\n    ], \n    \"settlement\": [\n        \"NN\"\n    ], \n    \"voids\": [\n        \"VBZ\"\n    ], \n    \"Minor\": [\n        \"NNP\"\n    ], \n    \"polarity\": [\n        \"NN\"\n    ], \n    \"Eluard\": [\n        \"NNP\"\n    ], \n    \"Nederland\": [\n        \"NNP\"\n    ], \n    \"H&Q\": [\n        \"NNP\"\n    ], \n    \"Lind-Waldock\": [\n        \"NNP\"\n    ], \n    \"subjected\": [\n        \"VBN\"\n    ], \n    \"H&R\": [\n        \"NNP\"\n    ], \n    \"safeties\": [\n        \"NNS\"\n    ], \n    \"prostaglandin\": [\n        \"NN\"\n    ], \n    \"burger-heavy\": [\n        \"JJ\"\n    ], \n    \"Construction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Soren\": [\n        \"NNP\"\n    ], \n    \"self-esteem\": [\n        \"NN\"\n    ], \n    \"belonging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Nogales\": [\n        \"NNP\"\n    ], \n    \"Airedales\": [\n        \"NNPS\"\n    ], \n    \"vassal\": [\n        \"NN\"\n    ], \n    \"bubbled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cadaver\": [\n        \"NN\"\n    ], \n    \"Pomicino\": [\n        \"NNP\"\n    ], \n    \"Dillingham\": [\n        \"NNP\"\n    ], \n    \"Southon\": [\n        \"NNP\"\n    ], \n    \"worst\": [\n        \"JJS\", \n        \"RBS\", \n        \"JJ\"\n    ], \n    \"hatching\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"jacketed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"bubbles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"wilting\": [\n        \"VBG\"\n    ], \n    \"learners\": [\n        \"NNS\"\n    ], \n    \"Joshua\": [\n        \"NNP\"\n    ], \n    \"Enthusiasts\": [\n        \"NNS\"\n    ], \n    \"Momentarily\": [\n        \"RB\"\n    ], \n    \"Melamed\": [\n        \"NNP\"\n    ], \n    \"Fixit\": [\n        \"NNP\"\n    ], \n    \"Germain\": [\n        \"NNP\"\n    ], \n    \"Nonperforming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"undone\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"saxophone\": [\n        \"NN\"\n    ], \n    \"MasterCard\": [\n        \"NNP\"\n    ], \n    \"epicurean\": [\n        \"NN\"\n    ], \n    \"Rackmil\": [\n        \"NNP\"\n    ], \n    \"exit-load\": [\n        \"JJ\"\n    ], \n    \"Filmed\": [\n        \"VBN\"\n    ], \n    \"grateful\": [\n        \"JJ\"\n    ], \n    \"tea\": [\n        \"NN\"\n    ], \n    \"built-in\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tee\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Rashomon\": [\n        \"NNP\"\n    ], \n    \"Oversized\": [\n        \"JJ\"\n    ], \n    \"Seminario\": [\n        \"NNP\"\n    ], \n    \"Well-stretched\": [\n        \"JJ\"\n    ], \n    \"I.C.H\": [\n        \"NNP\"\n    ], \n    \"offsets\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"paralegal\": [\n        \"NN\"\n    ], \n    \"ovarian\": [\n        \"JJ\"\n    ], \n    \"stramonium\": [\n        \"NN\"\n    ], \n    \"Mick\": [\n        \"NNP\"\n    ], \n    \"Camarillo\": [\n        \"NNP\"\n    ], \n    \"Mich\": [\n        \"NNP\"\n    ], \n    \"Mice\": [\n        \"NNS\"\n    ], \n    \"Helion\": [\n        \"NNP\"\n    ], \n    \"Folgers\": [\n        \"NNP\"\n    ], \n    \"midrange\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Australians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"communicable\": [\n        \"JJ\"\n    ], \n    \"eventuate\": [\n        \"VBP\"\n    ], \n    \"underwiters\": [\n        \"NNS\"\n    ], \n    \"foreshortened\": [\n        \"VBN\"\n    ], \n    \"absurdist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"EC\": [\n        \"NNP\"\n    ], \n    \"law-unto-itself\": [\n        \"JJ\"\n    ], \n    \"directions\": [\n        \"NNS\"\n    ], \n    \"epitome\": [\n        \"NN\"\n    ], \n    \"bulls\": [\n        \"NNS\"\n    ], \n    \"increments\": [\n        \"NNS\"\n    ], \n    \"diming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"barrier-free\": [\n        \"JJ\"\n    ], \n    \"deities\": [\n        \"NNS\"\n    ], \n    \"transponder\": [\n        \"NN\"\n    ], \n    \"sophisticate\": [\n        \"NN\"\n    ], \n    \"Importance\": [\n        \"NN\"\n    ], \n    \"gray-blue\": [\n        \"JJ\"\n    ], \n    \"Cranston-Mitchell\": [\n        \"NNP\"\n    ], \n    \"Congolese\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mini-mafia\": [\n        \"NN\"\n    ], \n    \"options\": [\n        \"NNS\"\n    ], \n    \"Style\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Avrett\": [\n        \"NNP\"\n    ], \n    \"Videoway\": [\n        \"NNP\"\n    ], \n    \"tablecloths\": [\n        \"NNS\"\n    ], \n    \"snug\": [\n        \"JJ\"\n    ], \n    \"snub\": [\n        \"VB\"\n    ], \n    \"interior-construction\": [\n        \"NN\"\n    ], \n    \"Nigeria\": [\n        \"NNP\"\n    ], \n    \"Open-end\": [\n        \"JJ\"\n    ], \n    \"USACafes\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Chiggers\": [\n        \"NNS\"\n    ], \n    \"Montedison\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"socialization\": [\n        \"NN\"\n    ], \n    \"watchmen\": [\n        \"NNS\"\n    ], \n    \"Baseball\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"MUST-SIGN\": [\n        \"JJ\"\n    ], \n    \"market-jarring\": [\n        \"JJ\"\n    ], \n    \"Melling\": [\n        \"NNP\"\n    ], \n    \"Sicilians\": [\n        \"NNS\"\n    ], \n    \"Manville\": [\n        \"NNP\"\n    ], \n    \"El\": [\n        \"NNP\"\n    ], \n    \"thus\": [\n        \"RB\"\n    ], \n    \"tusk\": [\n        \"NN\"\n    ], \n    \"Mines\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"taragon\": [\n        \"NN\"\n    ], \n    \"pectorals\": [\n        \"NNS\"\n    ], \n    \"Fleet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Steeves\": [\n        \"NNP\"\n    ], \n    \"Ek\": [\n        \"NNP\"\n    ], \n    \"ability...\": [\n        \":\"\n    ], \n    \"sentry\": [\n        \"NN\"\n    ], \n    \"Westerns\": [\n        \"NNS\"\n    ], \n    \"trauma\": [\n        \"NN\"\n    ], \n    \"Mideast\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"smoggiest\": [\n        \"JJS\"\n    ], \n    \"Darlin\": [\n        \"NNP\"\n    ], \n    \"precociously\": [\n        \"RB\"\n    ], \n    \"refractive\": [\n        \"JJ\"\n    ], \n    \"protestors\": [\n        \"NNS\"\n    ], \n    \"vaguer\": [\n        \"JJR\"\n    ], \n    \"Tomorrow\": [\n        \"NN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"enfant\": [\n        \"FW\"\n    ], \n    \"epics\": [\n        \"NNS\"\n    ], \n    \"Uranium\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Microwave\": [\n        \"NNP\"\n    ], \n    \"coerce\": [\n        \"VB\"\n    ], \n    \"UDAG\": [\n        \"NNP\"\n    ], \n    \"hourlong\": [\n        \"JJ\"\n    ], \n    \"airplane\": [\n        \"NN\"\n    ], \n    \"extinguisher\": [\n        \"NN\"\n    ], \n    \"thud\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Higgins\": [\n        \"NNP\"\n    ], \n    \"breaking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"satellite-launching\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Docherty\": [\n        \"NNP\"\n    ], \n    \"extinguished\": [\n        \"VBN\"\n    ], \n    \"floor-length\": [\n        \"JJ\"\n    ], \n    \"SOVIET\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"hundred-and-fifty\": [\n        \"JJ\"\n    ], \n    \"tonnages\": [\n        \"NNS\"\n    ], \n    \"Broberg\": [\n        \"NNP\"\n    ], \n    \"pertained\": [\n        \"VBP\"\n    ], \n    \"Scandia\": [\n        \"NNP\"\n    ], \n    \"preoccupy\": [\n        \"VBP\"\n    ], \n    \"hoisting\": [\n        \"NN\"\n    ], \n    \"fungus\": [\n        \"NN\"\n    ], \n    \"panoramic\": [\n        \"JJ\"\n    ], \n    \"absentmindedly\": [\n        \"RB\"\n    ], \n    \"numb\": [\n        \"JJ\"\n    ], \n    \"CACI\": [\n        \"NNP\"\n    ], \n    \"Ake\": [\n        \"NNP\"\n    ], \n    \"non-literary\": [\n        \"JJ\"\n    ], \n    \"INSURERS\": [\n        \"NNS\"\n    ], \n    \"Tegner\": [\n        \"NNP\"\n    ], \n    \"cooperatives\": [\n        \"NNS\"\n    ], \n    \"Lieberthal\": [\n        \"NNP\"\n    ], \n    \"Marvelous\": [\n        \"JJ\"\n    ], \n    \"barbs\": [\n        \"NNS\"\n    ], \n    \"bridge-lending\": [\n        \"JJ\"\n    ], \n    \"Eccles\": [\n        \"NNP\"\n    ], \n    \"dollar-yen\": [\n        \"JJ\"\n    ], \n    \"mission\": [\n        \"NN\"\n    ], \n    \"proverbial\": [\n        \"JJ\"\n    ], \n    \"thought-out\": [\n        \"JJ\"\n    ], \n    \"koinonia\": [\n        \"NN\"\n    ], \n    \"interpersonal\": [\n        \"JJ\"\n    ], \n    \"Alternating\": [\n        \"VBG\"\n    ], \n    \"flounce\": [\n        \"VBP\"\n    ], \n    \"airworthiness\": [\n        \"NN\"\n    ], \n    \"unleashing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Stein\": [\n        \"NNP\"\n    ], \n    \"pusillanimity\": [\n        \"NN\"\n    ], \n    \"susceptible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dental\": [\n        \"NNP\"\n    ], \n    \"co-ordinate\": [\n        \"VB\"\n    ], \n    \"acoustical\": [\n        \"JJ\"\n    ], \n    \"dross\": [\n        \"NN\"\n    ], \n    \"Heyman\": [\n        \"NNP\"\n    ], \n    \"might\": [\n        \"MD\", \n        \"NN\"\n    ], \n    \"alter\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Veslefrikk\": [\n        \"NNP\"\n    ], \n    \"easy-going\": [\n        \"JJ\"\n    ], \n    \"asbestosis\": [\n        \"NN\"\n    ], \n    \"incompleteness\": [\n        \"NN\"\n    ], \n    \"Badlands\": [\n        \"NNS\"\n    ], \n    \"intensive-care\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"predator\": [\n        \"NN\"\n    ], \n    \"barrel-chested\": [\n        \"JJ\"\n    ], \n    \"FOILED\": [\n        \"VBD\"\n    ], \n    \"Metallgesellschaft\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"three-year-old\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"smoothness\": [\n        \"NN\"\n    ], \n    \"Westheimer\": [\n        \"NNP\"\n    ], \n    \"unreasoning\": [\n        \"JJ\"\n    ], \n    \"Cohodes\": [\n        \"NNP\"\n    ], \n    \"nephews\": [\n        \"NNS\"\n    ], \n    \"Anybody\": [\n        \"NN\"\n    ], \n    \"Gauntlett\": [\n        \"NNP\"\n    ], \n    \"Phoenicians\": [\n        \"NNS\"\n    ], \n    \"inequality\": [\n        \"NN\"\n    ], \n    \"ODDITIES\": [\n        \"NNS\"\n    ], \n    \"athletics\": [\n        \"NNS\"\n    ], \n    \"hammering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Tiphook\": [\n        \"NNP\"\n    ], \n    \"then-City\": [\n        \"JJ\"\n    ], \n    \"formulate\": [\n        \"VB\"\n    ], \n    \"incumbency\": [\n        \"NN\"\n    ], \n    \"recapitulate\": [\n        \"VB\"\n    ], \n    \"Sporto\": [\n        \"NNP\"\n    ], \n    \"Pile\": [\n        \"NNP\"\n    ], \n    \"age-bias\": [\n        \"JJ\"\n    ], \n    \"sliver-like\": [\n        \"JJ\"\n    ], \n    \"braided\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"chiefdom\": [\n        \"NN\"\n    ], \n    \"Funston\": [\n        \"NNP\"\n    ], \n    \"consonance\": [\n        \"NN\"\n    ], \n    \"discrete\": [\n        \"JJ\"\n    ], \n    \"Tigers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Practice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Tigert\": [\n        \"NNP\"\n    ], \n    \"imploring\": [\n        \"VBG\"\n    ], \n    \"eyeteeth\": [\n        \"NNS\"\n    ], \n    \"health\": [\n        \"NN\"\n    ], \n    \"solvent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ersatz\": [\n        \"JJ\"\n    ], \n    \"blaring\": [\n        \"VBG\"\n    ], \n    \"mountainously\": [\n        \"RB\"\n    ], \n    \"alleviating\": [\n        \"VBG\"\n    ], \n    \"Littlefield\": [\n        \"NNP\"\n    ], \n    \"Webster\\\\\": [\n        \"NNP\"\n    ], \n    \"generate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kirgizia\": [\n        \"NNP\"\n    ], \n    \"thrown\": [\n        \"VBN\"\n    ], \n    \"down-home\": [\n        \"JJ\"\n    ], \n    \"scratchy\": [\n        \"JJ\"\n    ], \n    \"Dietary\": [\n        \"JJ\"\n    ], \n    \"low*/JJ-tech\": [\n        \"NN\"\n    ], \n    \"circuit\": [\n        \"NN\"\n    ], \n    \"NEWSPAPERS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"throws\": [\n        \"VBZ\"\n    ], \n    \"Paulah\": [\n        \"NNP\"\n    ], \n    \"Embarcaderothe\": [\n        \"NNP\"\n    ], \n    \"flood\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"linking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Longtime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"blank\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"bland\": [\n        \"JJ\"\n    ], \n    \"Playhouses\": [\n        \"NNP\"\n    ], \n    \"Mondschein\": [\n        \"NNP\"\n    ], \n    \"corporal\": [\n        \"NN\"\n    ], \n    \"pensioner\": [\n        \"NN\"\n    ], \n    \"temperature\": [\n        \"NN\"\n    ], \n    \"Cavaliers\": [\n        \"NNS\"\n    ], \n    \"swart\": [\n        \"JJ\"\n    ], \n    \"HOTEL\": [\n        \"NNP\"\n    ], \n    \"AIMO\": [\n        \"NNP\"\n    ], \n    \"Cavaliere\": [\n        \"NNP\"\n    ], \n    \"Yaohan\": [\n        \"NNP\"\n    ], \n    \"on-site\": [\n        \"JJ\"\n    ], \n    \"Packages\": [\n        \"NNS\"\n    ], \n    \"three-story\": [\n        \"JJ\"\n    ], \n    \"attendants\": [\n        \"NNS\"\n    ], \n    \"highly-touted\": [\n        \"JJ\"\n    ], \n    \"Heisbourg\": [\n        \"NNP\"\n    ], \n    \"Whiteboard\": [\n        \"NNP\"\n    ], \n    \"imprinted\": [\n        \"VBN\"\n    ], \n    \"Malin\": [\n        \"NNP\"\n    ], \n    \"air-traffic-control\": [\n        \"NN\"\n    ], \n    \"Malik\": [\n        \"NNP\"\n    ], \n    \"Malia\": [\n        \"NNP\"\n    ], \n    \"uncut\": [\n        \"JJ\"\n    ], \n    \"rigidities\": [\n        \"NNS\"\n    ], \n    \"wonderfulness\": [\n        \"NN\"\n    ], \n    \"instruction\": [\n        \"NN\"\n    ], \n    \"dispensed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"impersonally\": [\n        \"RB\"\n    ], \n    \"Talbot\": [\n        \"NNP\"\n    ], \n    \"skylarking\": [\n        \"VBG\"\n    ], \n    \"dispenser\": [\n        \"NN\"\n    ], \n    \"dispenses\": [\n        \"VBZ\"\n    ], \n    \"munificence\": [\n        \"NN\"\n    ], \n    \"uniforms\": [\n        \"NNS\"\n    ], \n    \"non-priority\": [\n        \"JJ\"\n    ], \n    \"inappropriateness\": [\n        \"NN\"\n    ], \n    \"strengthen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"narcokleptocrat\": [\n        \"NN\"\n    ], \n    \"Newkirk\": [\n        \"NNP\"\n    ], \n    \"Jovi\": [\n        \"NNP\"\n    ], \n    \"Ebury\": [\n        \"NNP\"\n    ], \n    \"Nagasaki\": [\n        \"NNP\"\n    ], \n    \"rugs\": [\n        \"NNS\"\n    ], \n    \"heightening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"anti-drug-law\": [\n        \"NN\"\n    ], \n    \"Hilboldt\": [\n        \"NNP\"\n    ], \n    \"freight-hauling\": [\n        \"JJ\"\n    ], \n    \"febrile\": [\n        \"JJ\"\n    ], \n    \"middlemen\": [\n        \"NNS\"\n    ], \n    \"comportment\": [\n        \"NN\"\n    ], \n    \"Anglophobia\": [\n        \"NN\"\n    ], \n    \"operating-room\": [\n        \"NN\"\n    ], \n    \"Ordnance\": [\n        \"NNP\"\n    ], \n    \"added\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"beribboned\": [\n        \"JJ\"\n    ], \n    \"Nachmany\": [\n        \"NNP\"\n    ], \n    \"Assyrian\": [\n        \"NNP\"\n    ], \n    \"odd-sounding\": [\n        \"JJ\"\n    ], \n    \"shareholder\": [\n        \"NN\"\n    ], \n    \"Kuvin\": [\n        \"NNP\"\n    ], \n    \"enduring\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"well-chronicled\": [\n        \"JJ\"\n    ], \n    \"Zeiger\": [\n        \"NNP\"\n    ], \n    \"Drinker\": [\n        \"NN\"\n    ], \n    \"value\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"mineral\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"visrhanik\": [\n        \"FW\"\n    ], \n    \"Bourassa\": [\n        \"NNP\"\n    ], \n    \"devalue\": [\n        \"VB\"\n    ], \n    \"retardants\": [\n        \"NNS\"\n    ], \n    \"pay-and-benefit\": [\n        \"JJ\"\n    ], \n    \"Chevrolets\": [\n        \"NNPS\"\n    ], \n    \"Interpublic\": [\n        \"NNP\"\n    ], \n    \"Reynolds\": [\n        \"NNP\"\n    ], \n    \"institutions\": [\n        \"NNS\", \n        \",\"\n    ], \n    \"stones\": [\n        \"NNS\"\n    ], \n    \"memorandum\": [\n        \"NN\"\n    ], \n    \"white-topped\": [\n        \"JJ\"\n    ], \n    \"felon\": [\n        \"NN\"\n    ], \n    \"Dartmouth\": [\n        \"NNP\"\n    ], \n    \"Keating\": [\n        \"NNP\"\n    ], \n    \"awakens\": [\n        \"VBZ\"\n    ], \n    \"post-game\": [\n        \"JJ\"\n    ], \n    \"deserts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"securing\": [\n        \"VBG\"\n    ], \n    \"heavily\": [\n        \"RB\"\n    ], \n    \"Waymire\": [\n        \"NNP\"\n    ], \n    \"abiding\": [\n        \"JJ\"\n    ], \n    \"Galindez\": [\n        \"NNP\"\n    ], \n    \"transcendental\": [\n        \"JJ\"\n    ], \n    \"Chong-sik\": [\n        \"NNP\"\n    ], \n    \"D.S.\": [\n        \"NNP\"\n    ], \n    \"root-canal\": [\n        \"NN\"\n    ], \n    \"clarifying\": [\n        \"VBG\"\n    ], \n    \"Brig.\": [\n        \"NNP\"\n    ], \n    \"tariff-free\": [\n        \"JJ\"\n    ], \n    \"Stiff\": [\n        \"JJ\"\n    ], \n    \"bambino\": [\n        \"NN\"\n    ], \n    \"Value\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Alone\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Miullo\": [\n        \"NNP\"\n    ], \n    \"Incorporated\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"industrywide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"beards\": [\n        \"NNS\"\n    ], \n    \"Carausius\": [\n        \"NNP\"\n    ], \n    \"environmentalist-developer\": [\n        \"JJ\"\n    ], \n    \"Olympia\": [\n        \"NNP\"\n    ], \n    \"Olympic\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Bern\": [\n        \"NNP\"\n    ], \n    \"Phillippe-Francois\": [\n        \"NNP\"\n    ], \n    \"Riccardo\": [\n        \"NNP\"\n    ], \n    \"macropathological\": [\n        \"JJ\"\n    ], \n    \"western-style\": [\n        \"JJ\"\n    ], \n    \"statism\": [\n        \"NN\"\n    ], \n    \"marinas\": [\n        \"NNS\"\n    ], \n    \"Digges\": [\n        \"NNP\"\n    ], \n    \"seminarian\": [\n        \"NN\"\n    ], \n    \"treeless\": [\n        \"JJ\"\n    ], \n    \"Also...\": [\n        \":\"\n    ], \n    \"horse-trading\": [\n        \"NN\"\n    ], \n    \"sustainable\": [\n        \"JJ\"\n    ], \n    \"blood-filled\": [\n        \"JJ\"\n    ], \n    \"thrift-institution\": [\n        \"NN\"\n    ], \n    \"Networks\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"seven-day\": [\n        \"JJ\"\n    ], \n    \"life-long\": [\n        \"JJ\"\n    ], \n    \"Aromatiques\": [\n        \"NNP\"\n    ], \n    \"Plays\": [\n        \"NNP\", \n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"power-surge\": [\n        \"NN\"\n    ], \n    \"injecting\": [\n        \"VBG\"\n    ], \n    \"reverberations\": [\n        \"NNS\"\n    ], \n    \"Playa\": [\n        \"NNP\"\n    ], \n    \"fine-drawn\": [\n        \"JJ\"\n    ], \n    \"Rooseveltian\": [\n        \"JJ\"\n    ], \n    \"jettisoning\": [\n        \"VBG\"\n    ], \n    \"crunching\": [\n        \"VBG\"\n    ], \n    \"youth\": [\n        \"NN\"\n    ], \n    \"druggists\": [\n        \"NNS\"\n    ], \n    \"Faustus\": [\n        \"NNP\"\n    ], \n    \"supressor\": [\n        \"NN\"\n    ], \n    \"Zorro\": [\n        \"NNP\"\n    ], \n    \"engine-assembly\": [\n        \"NN\"\n    ], \n    \"Magurno\": [\n        \"NNP\"\n    ], \n    \"fat-soluble\": [\n        \"JJ\"\n    ], \n    \"spectrophotometer\": [\n        \"NN\"\n    ], \n    \"corruption\": [\n        \"NN\"\n    ], \n    \"sharkskin\": [\n        \"NN\"\n    ], \n    \"Mitsotakis\": [\n        \"NNP\"\n    ], \n    \"recently\": [\n        \"RB\"\n    ], \n    \"more-established\": [\n        \"JJR\"\n    ], \n    \"one-penny\": [\n        \"JJ\"\n    ], \n    \"Hammack\": [\n        \"NNP\"\n    ], \n    \"go-ahead\": [\n        \"NN\"\n    ], \n    \"rarer\": [\n        \"JJR\"\n    ], \n    \"stereos\": [\n        \"NNS\"\n    ], \n    \"Horry\": [\n        \"NNP\"\n    ], \n    \"condo\": [\n        \"NN\"\n    ], \n    \"lyrical\": [\n        \"JJ\"\n    ], \n    \"bronze\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"AND\": [\n        \"CC\", \n        \"NNP\"\n    ], \n    \"ANF\": [\n        \"NNP\"\n    ], \n    \"ANB\": [\n        \"NNP\"\n    ], \n    \"ANC\": [\n        \"NNP\"\n    ], \n    \"ANN\": [\n        \"NNP\"\n    ], \n    \"breakin\": [\n        \"VBG\"\n    ], \n    \"Harco\": [\n        \"NNP\"\n    ], \n    \"mimimum\": [\n        \"NN\"\n    ], \n    \"ritualized\": [\n        \"VBN\"\n    ], \n    \"Farms\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Volpe\": [\n        \"NNP\"\n    ], \n    \"ANP\": [\n        \"NNP\"\n    ], \n    \"chairman-elect\": [\n        \"NN\"\n    ], \n    \"company-managed\": [\n        \"JJ\"\n    ], \n    \"ANZ\": [\n        \"NNP\"\n    ], \n    \"flies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"flier\": [\n        \"NN\"\n    ], \n    \"Fabricius\": [\n        \"NNP\"\n    ], \n    \"ranchers\": [\n        \"NNS\"\n    ], \n    \"reasons\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Quintana\": [\n        \"NNP\"\n    ], \n    \"Willis\": [\n        \"NNP\"\n    ], \n    \"flied\": [\n        \"VBD\"\n    ], \n    \"McHenry\": [\n        \"NNP\"\n    ], \n    \"pH\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Willie\": [\n        \"NNP\"\n    ], \n    \"pr\": [\n        \"NN\"\n    ], \n    \"complication\": [\n        \"NN\"\n    ], \n    \"roaring\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Stomach\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dun\": [\n        \"NN\"\n    ], \n    \"duo\": [\n        \"NN\"\n    ], \n    \"dud\": [\n        \"NN\"\n    ], \n    \"blue-uniformed\": [\n        \"JJ\"\n    ], \n    \"dug\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Computerized\": [\n        \"JJ\"\n    ], \n    \"ecologists\": [\n        \"NNS\"\n    ], \n    \"pa\": [\n        \"NN\"\n    ], \n    \"Pincian\": [\n        \"NNP\"\n    ], \n    \"Massenet\": [\n        \"NNP\"\n    ], \n    \"bureauracy\": [\n        \"NN\"\n    ], \n    \"convertible-bond\": [\n        \"JJ\"\n    ], \n    \"dropout\": [\n        \"NN\"\n    ], \n    \"togs\": [\n        \"NNS\"\n    ], \n    \"maneuverings\": [\n        \"NNS\"\n    ], \n    \"Operationally\": [\n        \"RB\"\n    ], \n    \"temperament\": [\n        \"NN\"\n    ], \n    \"condoms\": [\n        \"NNS\"\n    ], \n    \"apocalyptics\": [\n        \"NNS\"\n    ], \n    \"toga\": [\n        \"NN\"\n    ], \n    \"anticult\": [\n        \"NN\"\n    ], \n    \"coerced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"batch\": [\n        \"NN\"\n    ], \n    \"Gastronomie\": [\n        \"NNP\"\n    ], \n    \"bachelors\": [\n        \"NNS\"\n    ], \n    \"writeoffs\": [\n        \"NNS\"\n    ], \n    \"intercepts\": [\n        \"NNS\"\n    ], \n    \"p.\": [\n        \"NN\"\n    ], \n    \"Bigfoot\": [\n        \"NNP\"\n    ], \n    \"anti-Moscow\": [\n        \"JJ\"\n    ], \n    \"drunkenly\": [\n        \"RB\"\n    ], \n    \"Rafi\": [\n        \"NNP\"\n    ], \n    \"enriching\": [\n        \"VBG\"\n    ], \n    \"trumped-up\": [\n        \"JJ\"\n    ], \n    \"Sinatra\": [\n        \"NNP\"\n    ], \n    \"Bacharach\": [\n        \"NNP\"\n    ], \n    \"cross-subsidies\": [\n        \"NNS\"\n    ], \n    \"SHUN\": [\n        \"VBP\"\n    ], \n    \"Raft\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"INS\": [\n        \"NNP\"\n    ], \n    \"Co.\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"chauffeur\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"one-restaurant\": [\n        \"NN\"\n    ], \n    \"aged\": [\n        \"VBN\", \n        \"JJ\", \n        \"NNS\", \n        \"VBD\"\n    ], \n    \"coerces\": [\n        \"VBZ\"\n    ], \n    \"Intra-European\": [\n        \"JJ\"\n    ], \n    \"arch-rival\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"intrinsic\": [\n        \"JJ\"\n    ], \n    \"fellowfeeling\": [\n        \"NN\"\n    ], \n    \"reasserts\": [\n        \"VBZ\"\n    ], \n    \"Allied-Signal\": [\n        \"NNP\"\n    ], \n    \"Cop\": [\n        \"NNP\"\n    ], \n    \"Cross-margining\": [\n        \"NN\"\n    ], \n    \"dairyland\": [\n        \"NN\"\n    ], \n    \"Operating-profit\": [\n        \"NN\"\n    ], \n    \"Cow\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cox\": [\n        \"NNP\"\n    ], \n    \"nonism\": [\n        \"NN\"\n    ], \n    \"unspoken\": [\n        \"JJ\"\n    ], \n    \"usually\": [\n        \"RB\"\n    ], \n    \"Coe\": [\n        \"NNP\"\n    ], \n    \"Sokol\": [\n        \"NNP\"\n    ], \n    \"brocade\": [\n        \"NN\"\n    ], \n    \"knack\": [\n        \"NN\"\n    ], \n    \"Com\": [\n        \"NNP\"\n    ], \n    \"Con\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"earmark\": [\n        \"VB\"\n    ], \n    \"Jelenic\": [\n        \"NNP\"\n    ], \n    \"Lintas:New\": [\n        \"NNP\"\n    ], \n    \"dancing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Brittany\": [\n        \"NNP\"\n    ], \n    \"INA\": [\n        \"NNP\"\n    ], \n    \"Wartburgs\": [\n        \"NNPS\"\n    ], \n    \"Reinforcements\": [\n        \"NNS\"\n    ], \n    \"Examples\": [\n        \"NNS\"\n    ], \n    \"riffle\": [\n        \"VB\"\n    ], \n    \"steeled\": [\n        \"VBN\"\n    ], \n    \"space-science\": [\n        \"NN\"\n    ], \n    \"abilities\": [\n        \"NNS\"\n    ], \n    \"catkin\": [\n        \"NN\"\n    ], \n    \"Helmuth\": [\n        \"NNP\"\n    ], \n    \"altruistic\": [\n        \"JJ\"\n    ], \n    \"Shtern\": [\n        \"NNP\"\n    ], \n    \"Permanent\": [\n        \"JJ\"\n    ], \n    \"Bernhard\": [\n        \"NNP\"\n    ], \n    \"ORDER\": [\n        \"NNP\"\n    ], \n    \"Mynheer\": [\n        \"NNP\"\n    ], \n    \"gems\": [\n        \"NNS\"\n    ], \n    \"loading\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"salt-fractionation\": [\n        \"NN\"\n    ], \n    \"plateau\": [\n        \"NN\"\n    ], \n    \"Front\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"build\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Alto\": [\n        \"NNP\"\n    ], \n    \"shoot-down\": [\n        \"NN\"\n    ], \n    \"deadened\": [\n        \"VBN\"\n    ], \n    \"supply-side\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"condemnation\": [\n        \"NN\"\n    ], \n    \"hoste\": [\n        \"NN\"\n    ], \n    \"Alta\": [\n        \"NNP\"\n    ], \n    \"lovin\": [\n        \"JJ\"\n    ], \n    \"toothpastes\": [\n        \"NNS\"\n    ], \n    \"anthems\": [\n        \"NNS\"\n    ], \n    \"integer\": [\n        \"NN\"\n    ], \n    \"Pakistan\": [\n        \"NNP\"\n    ], \n    \"Wharf\": [\n        \"NNP\"\n    ], \n    \"falconry\": [\n        \"NN\"\n    ], \n    \"Weitzel\": [\n        \"NNP\"\n    ], \n    \"Colony\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ASK\": [\n        \"NNP\"\n    ], \n    \"safest\": [\n        \"JJS\"\n    ], \n    \"jelled\": [\n        \"VBD\"\n    ], \n    \"Mondays\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Macmillan\\\\/McGraw-Hill\": [\n        \"NNP\"\n    ], \n    \"Within\": [\n        \"IN\"\n    ], \n    \"Galleria\": [\n        \"NNP\"\n    ], \n    \"understood\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Avowed\": [\n        \"JJ\"\n    ], \n    \"Deaver\": [\n        \"NNP\"\n    ], \n    \"uppercut\": [\n        \"NN\"\n    ], \n    \"Typing\": [\n        \"NN\"\n    ], \n    \"EDI\": [\n        \"NNP\"\n    ], \n    \"tumor-suppressing\": [\n        \"JJ\"\n    ], \n    \"unreimbursed\": [\n        \"VBN\"\n    ], \n    \"gradually\": [\n        \"RB\"\n    ], \n    \"Vermont-Slauson\": [\n        \"NNP\"\n    ], \n    \"roundly\": [\n        \"RB\"\n    ], \n    \"tends\": [\n        \"VBZ\"\n    ], \n    \"university-trained\": [\n        \"JJ\"\n    ], \n    \"fragments\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Staring\": [\n        \"VBG\"\n    ], \n    \"sagebrush\": [\n        \"NN\"\n    ], \n    \"Bogacheva\": [\n        \"NNP\"\n    ], \n    \"bookshelves\": [\n        \"NNS\"\n    ], \n    \"misanthrope\": [\n        \"NN\"\n    ], \n    \"Epp\": [\n        \"NNP\"\n    ], \n    \"straw-man\": [\n        \"NN\"\n    ], \n    \"tinker\": [\n        \"VB\"\n    ], \n    \"Eph\": [\n        \"NNP\"\n    ], \n    \"Proponents\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"unhusked\": [\n        \"VBN\"\n    ], \n    \"Rumasa\": [\n        \"NNP\"\n    ], \n    \"NYSE\": [\n        \"NNP\"\n    ], \n    \"Beddall\": [\n        \"NNP\"\n    ], \n    \"Prospective\": [\n        \"JJ\"\n    ], \n    \"mingled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"deathwatch\": [\n        \"NN\"\n    ], \n    \"Senate-passed\": [\n        \"JJ\"\n    ], \n    \"stricken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"mingles\": [\n        \"VBZ\"\n    ], \n    \"Keough\": [\n        \"NNP\"\n    ], \n    \"minibars\": [\n        \"NNS\"\n    ], \n    \"doltish\": [\n        \"JJ\"\n    ], \n    \"gospel\": [\n        \"NN\"\n    ], \n    \"clubhouse\": [\n        \"NN\"\n    ], \n    \"Simon\": [\n        \"NNP\"\n    ], \n    \"Feversham\": [\n        \"NNP\"\n    ], \n    \"Midland\": [\n        \"NNP\"\n    ], \n    \"exhaustively\": [\n        \"RB\"\n    ], \n    \"charge-card\": [\n        \"JJ\"\n    ], \n    \"elasticity\": [\n        \"NN\"\n    ], \n    \"OPEC\": [\n        \"NNP\"\n    ], \n    \"he-goes-or-I-go\": [\n        \"JJ\"\n    ], \n    \"OPEN\": [\n        \"JJ\"\n    ], \n    \"Sub\": [\n        \"NNP\"\n    ], \n    \"Murilo\": [\n        \"NNP\"\n    ], \n    \"sonny\": [\n        \"NN\"\n    ], \n    \"voice-response\": [\n        \"NN\"\n    ], \n    \"conceivably\": [\n        \"RB\"\n    ], \n    \"aborigine\": [\n        \"NN\"\n    ], \n    \"Nobuyuki\": [\n        \"NNP\"\n    ], \n    \"Farren\": [\n        \"NNP\"\n    ], \n    \"Haagen-Dazs\": [\n        \"NNP\"\n    ], \n    \"bottled-water\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"inter-plant\": [\n        \"JJ\"\n    ], \n    \"fast\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\", \n        \"RP\"\n    ], \n    \"ward-personnel\": [\n        \"NNS\"\n    ], \n    \"vendors\": [\n        \"NNS\"\n    ], \n    \"Brownings\": [\n        \"NNP\"\n    ], \n    \"conceivable\": [\n        \"JJ\"\n    ], \n    \"Barfield\": [\n        \"NNP\"\n    ], \n    \"melodic\": [\n        \"JJ\"\n    ], \n    \"Bryan\": [\n        \"NNP\"\n    ], \n    \"nnuolapertar-it-vuh-karti-birifw\": [\n        \"FW\"\n    ], \n    \"Corolla\": [\n        \"NNP\"\n    ], \n    \"Malaysian\": [\n        \"JJ\"\n    ], \n    \"panelization\": [\n        \"NN\"\n    ], \n    \"applicable\": [\n        \"JJ\"\n    ], \n    \"forbidding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Twenty-second\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Contribution\": [\n        \"NNP\"\n    ], \n    \"Suh\": [\n        \"NNP\"\n    ], \n    \"beadsman\": [\n        \"NN\"\n    ], \n    \"groupings\": [\n        \"NNS\"\n    ], \n    \"gravitating\": [\n        \"VBG\"\n    ], \n    \"fries\": [\n        \"NNS\"\n    ], \n    \"interventionist\": [\n        \"JJ\"\n    ], \n    \"Brumley\": [\n        \"NNP\"\n    ], \n    \"fried\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Equitec\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Psychologists\": [\n        \"NNS\"\n    ], \n    \"Filmdom\": [\n        \"NNP\"\n    ], \n    \"quantification\": [\n        \"NN\"\n    ], \n    \"freight-rate\": [\n        \"JJ\"\n    ], \n    \"Donohue\": [\n        \"NNP\"\n    ], \n    \"bicep\": [\n        \"NN\"\n    ], \n    \"Lecture\": [\n        \"NNP\"\n    ], \n    \"Establishment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sandalwood\": [\n        \"NN\"\n    ], \n    \"stand-ins\": [\n        \"NNS\"\n    ], \n    \"scrutinized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"overseeing\": [\n        \"VBG\"\n    ], \n    \"scrutinizes\": [\n        \"VBZ\"\n    ], \n    \"Airless\": [\n        \"JJ\"\n    ], \n    \"non-deductible\": [\n        \"JJ\"\n    ], \n    \"Mises\": [\n        \"NNP\"\n    ], \n    \"Miser\": [\n        \"NNP\"\n    ], \n    \"perusal\": [\n        \"NN\"\n    ], \n    \"vaulting\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Green-labeled\": [\n        \"JJ\"\n    ], \n    \"Freebies\": [\n        \"NNS\"\n    ], \n    \"Windle\": [\n        \"NNP\"\n    ], \n    \"Pitt\": [\n        \"NNP\"\n    ], \n    \"time-shares\": [\n        \"NNS\"\n    ], \n    \"frozen-foods\": [\n        \"NNS\"\n    ], \n    \"low-grossing\": [\n        \"JJ\"\n    ], \n    \"suffers\": [\n        \"VBZ\"\n    ], \n    \"Hooks\": [\n        \"NNP\"\n    ], \n    \"OPA-LOCKA\": [\n        \"NNP\"\n    ], \n    \"Amram\": [\n        \"NNP\"\n    ], \n    \"sufferd\": [\n        \"VBN\"\n    ], \n    \"Peeking\": [\n        \"VBG\"\n    ], \n    \"war-ridden\": [\n        \"JJ\"\n    ], \n    \"BROADCASTING\": [\n        \"NNP\"\n    ], \n    \"severable\": [\n        \"JJ\"\n    ], \n    \"Adcock\": [\n        \"NNP\"\n    ], \n    \"issued\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Darby\": [\n        \"NNP\"\n    ], \n    \"besetting\": [\n        \"VBG\"\n    ], \n    \"acquiesence\": [\n        \"NN\"\n    ], \n    \"rooftree\": [\n        \"NN\"\n    ], \n    \"newissue\": [\n        \"NN\"\n    ], \n    \"Hitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Pita\": [\n        \"NNP\"\n    ], \n    \"PC-magazine\": [\n        \"JJ\"\n    ], \n    \"Chavanne-Ketin\": [\n        \"NNP\"\n    ], \n    \"tumours\": [\n        \"NNS\"\n    ], \n    \"top-to-bottom\": [\n        \"JJ\"\n    ], \n    \"issues\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"issuer\": [\n        \"NN\"\n    ], \n    \"nationalization\": [\n        \"NN\"\n    ], \n    \"Marvin\": [\n        \"NNP\"\n    ], \n    \"peering\": [\n        \"VBG\"\n    ], \n    \"dissidents\": [\n        \"NNS\"\n    ], \n    \"Catalog\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Noxell\": [\n        \"NNP\"\n    ], \n    \"Joint\": [\n        \"NNP\"\n    ], \n    \"Marvis\": [\n        \"NNP\"\n    ], \n    \"concomitantly\": [\n        \"RB\"\n    ], \n    \"CASES\": [\n        \"NNS\"\n    ], \n    \"waiters\": [\n        \"NNS\"\n    ], \n    \"Crisp\": [\n        \"NNP\"\n    ], \n    \"misinterpretation\": [\n        \"NN\"\n    ], \n    \"graphic\": [\n        \"JJ\"\n    ], \n    \"gins\": [\n        \"NNS\"\n    ], \n    \"product-related\": [\n        \"JJ\"\n    ], \n    \"Gorney\": [\n        \"NNP\"\n    ], \n    \"Enjoy\": [\n        \"VB\"\n    ], \n    \"Dubnow\": [\n        \"NNP\"\n    ], \n    \"Emerging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Loveless\": [\n        \"NNP\"\n    ], \n    \"Competition\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Anti-abortion\": [\n        \"JJ\"\n    ], \n    \"Cofide\": [\n        \"NNP\"\n    ], \n    \"Y-regions\": [\n        \"NNS\"\n    ], \n    \"Barsacs\": [\n        \"NNPS\"\n    ], \n    \"moulding\": [\n        \"NN\"\n    ], \n    \"FFA\": [\n        \"NNP\"\n    ], \n    \"Hill\": [\n        \"NNP\"\n    ], \n    \"Weisner\": [\n        \"NNP\"\n    ], \n    \"politicking\": [\n        \"NN\"\n    ], \n    \"folds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"R.C.\": [\n        \"NNP\"\n    ], \n    \"flaunts\": [\n        \"VBZ\"\n    ], \n    \"amnesty.\": [\n        \"NN\"\n    ], \n    \"WYSE\": [\n        \"NNP\"\n    ], \n    \"protrude\": [\n        \"VB\"\n    ], \n    \"Mme\": [\n        \"NNP\"\n    ], \n    \"growers\": [\n        \"NNS\"\n    ], \n    \"Bermuda-registered\": [\n        \"JJ\"\n    ], \n    \"Zion\": [\n        \"NNP\"\n    ], \n    \"Tucked\": [\n        \"VBN\"\n    ], \n    \"RCA\\\\/Ariola\": [\n        \"NNP\"\n    ], \n    \"RICHMOND\": [\n        \"NNP\"\n    ], \n    \"Cornell-Dubilier\": [\n        \"NNP\"\n    ], \n    \"Licenses\": [\n        \"NNP\"\n    ], \n    \"cubbyhole\": [\n        \"NN\"\n    ], \n    \"Soviet-supplied\": [\n        \"JJ\"\n    ], \n    \"refilled\": [\n        \"VBN\"\n    ], \n    \"counterarguments\": [\n        \"NNS\"\n    ], \n    \"Knopf\": [\n        \"NNP\"\n    ], \n    \"MORGAN\": [\n        \"NNP\"\n    ], \n    \"desires\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Cuddles\": [\n        \"NNP\"\n    ], \n    \"Missoula\": [\n        \"NNP\"\n    ], \n    \"desired\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"H.H.\": [\n        \"NNP\"\n    ], \n    \"sforzando\": [\n        \"NN\"\n    ], \n    \"separation\": [\n        \"NN\"\n    ], \n    \"bugeyed\": [\n        \"JJ\"\n    ], \n    \"sexy\": [\n        \"JJ\"\n    ], \n    \"ghilianii\": [\n        \"FW\"\n    ], \n    \"Ind.-based\": [\n        \"JJ\"\n    ], \n    \"Confederation\": [\n        \"NNP\"\n    ], \n    \"Lorna\": [\n        \"NNP\"\n    ], \n    \"Yasutomi\": [\n        \"NNP\"\n    ], \n    \"Lorne\": [\n        \"NNP\"\n    ], \n    \"CBI\": [\n        \"NNP\"\n    ], \n    \"CBO\": [\n        \"NNP\"\n    ], \n    \"CBS\": [\n        \"NNP\"\n    ], \n    \"Shrubs\": [\n        \"NNS\"\n    ], \n    \"olive-flushed\": [\n        \"JJ\"\n    ], \n    \"locutions\": [\n        \"NNS\"\n    ], \n    \"celebrants\": [\n        \"NNS\"\n    ], \n    \"High-level\": [\n        \"JJ\"\n    ], \n    \"continuities\": [\n        \"NNS\"\n    ], \n    \"chaste\": [\n        \"JJ\"\n    ], \n    \"disposals\": [\n        \"NNS\"\n    ], \n    \"more-entrenched\": [\n        \"JJ\"\n    ], \n    \"corn-seed\": [\n        \"NN\"\n    ], \n    \"digestibility\": [\n        \"NN\"\n    ], \n    \"leguminous\": [\n        \"JJ\"\n    ], \n    \"upper-middle-class\": [\n        \"JJ\"\n    ], \n    \"lodging\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"summation\": [\n        \"NN\"\n    ], \n    \"boasts\": [\n        \"VBZ\"\n    ], \n    \"Hue\": [\n        \"NN\"\n    ], \n    \"fed\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VBD\"\n    ], \n    \"Indianapolis\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Females\": [\n        \"NNPS\"\n    ], \n    \"Hua\": [\n        \"NNP\"\n    ], \n    \"Hub\": [\n        \"NNP\"\n    ], \n    \"&\": [\n        \"CC\", \n        \"NNP\", \n        \"SYM\"\n    ], \n    \"storekeepers\": [\n        \"NNS\"\n    ], \n    \"Hun\": [\n        \"NNP\"\n    ], \n    \"Rotelli\": [\n        \"NNP\"\n    ], \n    \"germ\": [\n        \"NN\"\n    ], \n    \"Hut\": [\n        \"NNP\"\n    ], \n    \"few\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"NNS\"\n    ], \n    \"depicted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"fer\": [\n        \"IN\"\n    ], \n    \"swaggered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bitterly\": [\n        \"RB\"\n    ], \n    \"Hux\": [\n        \"NNP\"\n    ], \n    \"Huy\": [\n        \"NNP\"\n    ], \n    \"commiserating\": [\n        \"VBG\"\n    ], \n    \"sort\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"parliament\": [\n        \"NN\"\n    ], \n    \"journalists\": [\n        \"NNS\"\n    ], \n    \"musician\": [\n        \"NN\"\n    ], \n    \"heir\": [\n        \"NN\"\n    ], \n    \"infection\": [\n        \"NN\"\n    ], \n    \"Feud\": [\n        \"NN\"\n    ], \n    \"sore\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lidless\": [\n        \"JJ\"\n    ], \n    \"Keerist\": [\n        \"UH\"\n    ], \n    \"hand-knit\": [\n        \"JJ\"\n    ], \n    \"topic\": [\n        \"NN\"\n    ], \n    \"nixed\": [\n        \"VBD\"\n    ], \n    \"augment\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"foppish\": [\n        \"JJ\"\n    ], \n    \"terroristic\": [\n        \"JJ\"\n    ], \n    \"misfits\": [\n        \"NNS\"\n    ], \n    \"Hartselle\": [\n        \"NNP\"\n    ], \n    \"Rifenburgh\": [\n        \"NNP\"\n    ], \n    \"Replogle\": [\n        \"NNP\"\n    ], \n    \"lower-class\": [\n        \"JJ\"\n    ], \n    \"abstinence\": [\n        \"NN\"\n    ], \n    \"Hattiesburg\": [\n        \"NNP\"\n    ], \n    \"payroll-tax\": [\n        \"NN\"\n    ], \n    \"impedes\": [\n        \"VBZ\"\n    ], \n    \"distractions\": [\n        \"NNS\"\n    ], \n    \"proprietary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kathleen\": [\n        \"NNP\"\n    ], \n    \"Non-Proliferation\": [\n        \"NNP\"\n    ], \n    \"dripping\": [\n        \"VBG\"\n    ], \n    \"Pinned\": [\n        \"VBN\"\n    ], \n    \"pragmatists\": [\n        \"NNS\"\n    ], \n    \"Matchbox\": [\n        \"NNP\"\n    ], \n    \"televangelism\": [\n        \"NN\"\n    ], \n    \"Details\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"IRAN\": [\n        \"NNP\"\n    ], \n    \"scrounging\": [\n        \"VBG\"\n    ], \n    \"Hackman\": [\n        \"NNP\"\n    ], \n    \"galls\": [\n        \"NNS\"\n    ], \n    \"Williamson\": [\n        \"NNP\"\n    ], \n    \"Lexington-based\": [\n        \"JJ\"\n    ], \n    \"memorize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"SKILLED\": [\n        \"JJ\"\n    ], \n    \"carries\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"age-specific\": [\n        \"JJ\"\n    ], \n    \"Grande-Bretagne\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"dismissing\": [\n        \"VBG\"\n    ], \n    \"Americans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"grudgingly\": [\n        \"RB\"\n    ], \n    \"ever-present\": [\n        \"JJ\"\n    ], \n    \"Mohammad\": [\n        \"NNP\"\n    ], \n    \"LaBonte\": [\n        \"NNP\"\n    ], \n    \"puppets\": [\n        \"NNS\"\n    ], \n    \"lesion\": [\n        \"NN\"\n    ], \n    \"Virology\": [\n        \"NNP\"\n    ], \n    \"unforgivable\": [\n        \"JJ\"\n    ], \n    \"barricades\": [\n        \"NNS\"\n    ], \n    \"redundancy\": [\n        \"NN\"\n    ], \n    \"grovelike\": [\n        \"JJ\"\n    ], \n    \"desecrates\": [\n        \"VBZ\"\n    ], \n    \"PAUL\": [\n        \"NNP\"\n    ], \n    \"gluts\": [\n        \"NNS\"\n    ], \n    \"place-kicker\": [\n        \"NN\"\n    ], \n    \"Letters\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"fuming\": [\n        \"VBG\"\n    ], \n    \"sillier\": [\n        \"JJR\"\n    ], \n    \"heroics\": [\n        \"NNS\"\n    ], \n    \"SIGNAL\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"swearinge\": [\n        \"VBG\"\n    ], \n    \"Sun-3\\\\/50\": [\n        \"NNP\"\n    ], \n    \"Selassie\": [\n        \"NNP\"\n    ], \n    \"gardenias\": [\n        \"NNS\"\n    ], \n    \"nit-picky\": [\n        \"JJ\"\n    ], \n    \"flapper\": [\n        \"NN\"\n    ], \n    \"dirtiest\": [\n        \"JJS\"\n    ], \n    \"Disapproval\": [\n        \"NN\"\n    ], \n    \"reponsibility\": [\n        \"NN\"\n    ], \n    \"looks\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"flapped\": [\n        \"VBD\"\n    ], \n    \"indignantly\": [\n        \"RB\"\n    ], \n    \"Braddock-against-the-Indians\": [\n        \"NNP\"\n    ], \n    \"boosts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"intra-company\": [\n        \"JJ\"\n    ], \n    \"linguistics\": [\n        \"NNS\"\n    ], \n    \"strangeness\": [\n        \"NN\"\n    ], \n    \"Longshoremen\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"double-deck\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Kershbaum\": [\n        \"NNP\"\n    ], \n    \"ships\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"septation\": [\n        \"NN\"\n    ], \n    \"Callable\": [\n        \"JJ\"\n    ], \n    \"primordial\": [\n        \"JJ\"\n    ], \n    \"Hypothesis\": [\n        \"NN\"\n    ], \n    \"turban\": [\n        \"NN\"\n    ], \n    \"AmBrit\": [\n        \"NNP\"\n    ], \n    \"kick-starting\": [\n        \"VBG\"\n    ], \n    \"indispensable...\": [\n        \":\"\n    ], \n    \"Hugoton\": [\n        \"NNP\"\n    ], \n    \"orthodox\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cooperatives\": [\n        \"NNP\"\n    ], \n    \"indexing\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"movie-quality\": [\n        \"JJ\"\n    ], \n    \"Aztec\": [\n        \"JJ\"\n    ], \n    \"Berlack\": [\n        \"NNP\"\n    ], \n    \"negligent\": [\n        \"JJ\"\n    ], \n    \"tiptoeing\": [\n        \"VBG\"\n    ], \n    \"emerald\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nurturing\": [\n        \"VBG\"\n    ], \n    \"Steffens\": [\n        \"NNP\"\n    ], \n    \"insurance-reform\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nabokov\": [\n        \"NNP\"\n    ], \n    \"unwarrantable\": [\n        \"JJ\"\n    ], \n    \"bewilderment\": [\n        \"NN\"\n    ], \n    \"sternum\": [\n        \"NN\"\n    ], \n    \"Llosa\": [\n        \"NNP\"\n    ], \n    \"capacity-controlled\": [\n        \"JJ\"\n    ], \n    \"all-over\": [\n        \"IN\"\n    ], \n    \"unpredictable\": [\n        \"JJ\"\n    ], \n    \"tire-industry\": [\n        \"NN\"\n    ], \n    \"Michio\": [\n        \"NNP\"\n    ], \n    \"Darien\": [\n        \"NNP\"\n    ], \n    \"Weekly\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"market-weighted\": [\n        \"JJ\"\n    ], \n    \"Consumers\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Bonaparte\": [\n        \"NNP\"\n    ], \n    \"most-sold\": [\n        \"JJ\"\n    ], \n    \"bogey\": [\n        \"NN\"\n    ], \n    \"Geddes\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Rumanian\": [\n        \"JJ\"\n    ], \n    \"Playmates\": [\n        \"NNPS\"\n    ], \n    \"Rinat\": [\n        \"NNP\"\n    ], \n    \"Donahue\": [\n        \"NNP\"\n    ], \n    \"WNYC\": [\n        \"NNP\"\n    ], \n    \"urban-development\": [\n        \"NN\"\n    ], \n    \"Torts\": [\n        \"NNP\"\n    ], \n    \"tabloid\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"loquacious\": [\n        \"JJ\"\n    ], \n    \"integrates\": [\n        \"VBZ\"\n    ], \n    \"disarray\": [\n        \"NN\"\n    ], \n    \"transcript\": [\n        \"NN\"\n    ], \n    \"Brechtian\": [\n        \"JJ\"\n    ], \n    \"redefined\": [\n        \"VBD\"\n    ], \n    \"thrifty\": [\n        \"JJ\"\n    ], \n    \"performs\": [\n        \"VBZ\"\n    ], \n    \"shortsightedness\": [\n        \"NN\"\n    ], \n    \"induction\": [\n        \"NN\"\n    ], \n    \"integrated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"despairing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"thrifts\": [\n        \"NNS\"\n    ], \n    \"rewrote\": [\n        \"VBD\"\n    ], \n    \"Megarians\": [\n        \"NNPS\"\n    ], \n    \"This\": [\n        \"DT\", \n        \"NNP\"\n    ], \n    \"Poong\": [\n        \"NNP\"\n    ], \n    \"recession-free\": [\n        \"JJ\"\n    ], \n    \"Shippey\": [\n        \"NNP\"\n    ], \n    \"Vogtle\": [\n        \"NNP\"\n    ], \n    \"Thin\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"IRAs\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"overtake\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"gray-flannel\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"musculature\": [\n        \"NN\"\n    ], \n    \"DRI\\\\/McGraw-Hill\": [\n        \"NNP\"\n    ], \n    \"navies\": [\n        \"NNS\"\n    ], \n    \"crystallization\": [\n        \"NN\"\n    ], \n    \"uproot\": [\n        \"VB\"\n    ], \n    \"phrased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"commercial-jetliner\": [\n        \"JJ\"\n    ], \n    \"bouquet\": [\n        \"NN\"\n    ], \n    \"Decanting\": [\n        \"VBG\"\n    ], \n    \"Sashimi\": [\n        \"FW\"\n    ], \n    \"codifying\": [\n        \"VBG\"\n    ], \n    \"nasaled\": [\n        \"VBD\"\n    ], \n    \"Financo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"salutary\": [\n        \"JJ\"\n    ], \n    \"Increased\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"retreats\": [\n        \"NNS\"\n    ], \n    \"Increases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Coates\": [\n        \"NNP\"\n    ], \n    \"Edwardes\": [\n        \"NNP\"\n    ], \n    \"chemotherapy\": [\n        \"NN\"\n    ], \n    \"Palermo\": [\n        \"NNP\"\n    ], \n    \"Limitation\": [\n        \"NNP\"\n    ], \n    \"Refinancing\": [\n        \"NN\"\n    ], \n    \"medium-term\": [\n        \"JJ\"\n    ], \n    \"blind-folded\": [\n        \"JJ\"\n    ], \n    \"academy\": [\n        \"NN\"\n    ], \n    \"transistor\": [\n        \"NN\"\n    ], \n    \"slides\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Vaseretic\": [\n        \"NNP\"\n    ], \n    \"regards\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"academe\": [\n        \"NN\"\n    ], \n    \"Taliesin\": [\n        \"NNP\"\n    ], \n    \"intonation\": [\n        \"NN\"\n    ], \n    \"Unitika\": [\n        \"NNP\"\n    ], \n    \"roadbed\": [\n        \"NN\"\n    ], \n    \"Italiana\": [\n        \"NNP\"\n    ], \n    \"beamed\": [\n        \"VBN\"\n    ], \n    \"cash-flush\": [\n        \"JJ\"\n    ], \n    \"kelly\\\\\": [\n        \"NNP\"\n    ], \n    \"Edition\": [\n        \"NNP\"\n    ], \n    \"patients\": [\n        \"NNS\"\n    ], \n    \"Italians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"grander\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Capping\": [\n        \"VBG\"\n    ], \n    \"Bergen\": [\n        \"NNP\"\n    ], \n    \"Thrifty\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"unaccountable\": [\n        \"JJ\"\n    ], \n    \"Sirota\": [\n        \"NNP\"\n    ], \n    \"PaineWebber-involved\": [\n        \"JJ\"\n    ], \n    \"provdied\": [\n        \"VBD\"\n    ], \n    \"low-heeled\": [\n        \"JJ\"\n    ], \n    \"Revolving\": [\n        \"VBG\"\n    ], \n    \"unremittingly\": [\n        \"RB\"\n    ], \n    \"levelled\": [\n        \"VBN\"\n    ], \n    \"unaccountably\": [\n        \"RB\"\n    ], \n    \"fourthquarter\": [\n        \"NN\"\n    ], \n    \"Relieved\": [\n        \"JJ\"\n    ], \n    \"etes\": [\n        \"FW\"\n    ], \n    \"olfactory\": [\n        \"JJ\"\n    ], \n    \"admittance\": [\n        \"NN\"\n    ], \n    \"Duane\": [\n        \"NNP\"\n    ], \n    \"lope\": [\n        \"NN\"\n    ], \n    \"towboats\": [\n        \"NNS\"\n    ], \n    \"contrary-to-reality\": [\n        \"JJ\"\n    ], \n    \"Thrifts\": [\n        \"NNS\"\n    ], \n    \"Appendixes\": [\n        \"NNS\"\n    ], \n    \"combat\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"plague-sized\": [\n        \"JJ\"\n    ], \n    \"Shepperd\": [\n        \"NNP\"\n    ], \n    \"Delchamps\": [\n        \"NNP\"\n    ], \n    \"spacesuit\": [\n        \"NN\"\n    ], \n    \"Moshe\": [\n        \"NNP\"\n    ], \n    \"Proximate\": [\n        \"JJ\"\n    ], \n    \"realtor\": [\n        \"NN\"\n    ], \n    \"volume\": [\n        \"NN\"\n    ], \n    \"discourage\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"refreshing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"night-watchman\": [\n        \"NN\"\n    ], \n    \"Spycket\": [\n        \"NNP\"\n    ], \n    \"handhold\": [\n        \"NN\"\n    ], \n    \"Prague\": [\n        \"NNP\"\n    ], \n    \"visiting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"looked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"two-engine\": [\n        \"JJ\"\n    ], \n    \"undimmed\": [\n        \"VBN\"\n    ], \n    \"Salyer\": [\n        \"NNP\"\n    ], \n    \"Zigarlick\": [\n        \"NNP\"\n    ], \n    \"Ore.-based\": [\n        \"JJ\"\n    ], \n    \"insulators\": [\n        \"NNS\"\n    ], \n    \"Melinda\": [\n        \"NNP\"\n    ], \n    \"automated\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Centaur\": [\n        \"NNP\"\n    ], \n    \"pseudo-sophistication\": [\n        \"NN\"\n    ], \n    \"brutalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Coordinated\": [\n        \"VBN\"\n    ], \n    \"spindle\": [\n        \"NN\"\n    ], \n    \"Document\": [\n        \"NNP\"\n    ], \n    \"Invercon\": [\n        \"NNP\"\n    ], \n    \"spurring\": [\n        \"VBG\"\n    ], \n    \"Shut\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"anti-personality\": [\n        \"JJ\"\n    ], \n    \"mugs\": [\n        \"NNS\"\n    ], \n    \"McCartin\": [\n        \"NNP\"\n    ], \n    \"Shuz\": [\n        \"NNP\"\n    ], \n    \"Gatoil\": [\n        \"NNP\"\n    ], \n    \"Failure\": [\n        \"NN\"\n    ], \n    \"tribulation\": [\n        \"NN\"\n    ], \n    \"Shun\": [\n        \"NNP\"\n    ], \n    \"undermining\": [\n        \"VBG\"\n    ], \n    \"Shui\": [\n        \"NNP\"\n    ], \n    \"spun\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"prosecute\": [\n        \"VB\"\n    ], \n    \"Loraine\": [\n        \"NNP\"\n    ], \n    \"Willings\": [\n        \"NNP\"\n    ], \n    \"well-springs\": [\n        \"JJ\"\n    ], \n    \"B-As\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Regulative\": [\n        \"JJ\"\n    ], \n    \"inheres\": [\n        \"VBZ\"\n    ], \n    \"sub-chiefs\": [\n        \"NN\"\n    ], \n    \"spur\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"father-and-son\": [\n        \"JJ\"\n    ], \n    \"less-than-diffident\": [\n        \"JJ\"\n    ], \n    \"CONELRAD\": [\n        \"NNP\"\n    ], \n    \"deep-tendon\": [\n        \"NN\"\n    ], \n    \"Nissho-Iwai\": [\n        \"NNP\"\n    ], \n    \"counterguarantee\": [\n        \"NN\"\n    ], \n    \"futuristic\": [\n        \"JJ\"\n    ], \n    \"Ratings\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"shedding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"ServiceMaster\": [\n        \"NNP\"\n    ], \n    \"dreariness\": [\n        \"NN\"\n    ], \n    \"fossilized\": [\n        \"JJ\"\n    ], \n    \"Shensi\": [\n        \"NNP\"\n    ], \n    \"admonition\": [\n        \"NN\"\n    ], \n    \"Kal\": [\n        \"NNP\"\n    ], \n    \"Cabrera\": [\n        \"NNP\"\n    ], \n    \"Merc\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"invulnerable\": [\n        \"JJ\"\n    ], \n    \"M.L.\": [\n        \"NNP\"\n    ], \n    \"Cleveland-based\": [\n        \"JJ\"\n    ], \n    \"Govern\": [\n        \"VB\"\n    ], \n    \"cousin-wife\": [\n        \"NN\"\n    ], \n    \"torpedo\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"reactor\": [\n        \"NN\"\n    ], \n    \"environmentalists\": [\n        \"NNS\"\n    ], \n    \"culmination\": [\n        \"NN\"\n    ], \n    \"hypothesis\": [\n        \"NN\"\n    ], \n    \"thoroughfares\": [\n        \"NNS\"\n    ], \n    \"hobo\": [\n        \"NN\"\n    ], \n    \"bronc\": [\n        \"NN\"\n    ], \n    \"Korea-basher\": [\n        \"NN\"\n    ], \n    \"vanishing\": [\n        \"VBG\"\n    ], \n    \"Camrys\": [\n        \"NNPS\"\n    ], \n    \"Cairns\": [\n        \"NNP\"\n    ], \n    \"Toufexis\": [\n        \"NNP\"\n    ], \n    \"Marskmen\": [\n        \"NNP\"\n    ], \n    \"disenfranchised\": [\n        \"VBN\"\n    ], \n    \"Fredericton\": [\n        \"NNP\"\n    ], \n    \"ploys\": [\n        \"NNS\"\n    ], \n    \"high-echelon\": [\n        \"JJ\"\n    ], \n    \"subscribe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"due-diligence\": [\n        \"JJ\"\n    ], \n    \"physician-owned\": [\n        \"JJ\"\n    ], \n    \"coddle\": [\n        \"VBP\"\n    ], \n    \"Posner\": [\n        \"NNP\"\n    ], \n    \"Officially\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Regrets\": [\n        \"VBZ\"\n    ], \n    \"hypermarkets\": [\n        \"NNS\"\n    ], \n    \"amigo\": [\n        \"FW\"\n    ], \n    \"provinces\": [\n        \"NNS\"\n    ], \n    \"Pacta\": [\n        \"FW\"\n    ], \n    \"Perrin\": [\n        \"NNP\"\n    ], \n    \"intimidating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"tutor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"outflow\": [\n        \"NN\"\n    ], \n    \"shims\": [\n        \"NNS\"\n    ], \n    \"Cennini\": [\n        \"NNP\"\n    ], \n    \"capital-equipment\": [\n        \"NN\"\n    ], \n    \"proudest\": [\n        \"JJS\"\n    ], \n    \"Cennino\": [\n        \"NNP\"\n    ], \n    \"alkaloids\": [\n        \"NNS\"\n    ], \n    \"Islamabad\": [\n        \"NNP\"\n    ], \n    \"cypress\": [\n        \"NN\"\n    ], \n    \"meritorious\": [\n        \"JJ\"\n    ], \n    \"Trim-your-own-franks\": [\n        \"VB\"\n    ], \n    \"Imre\": [\n        \"NNP\"\n    ], \n    \"overproducers\": [\n        \"NNS\"\n    ], \n    \"Richardson\": [\n        \"NNP\"\n    ], \n    \"Saloon\": [\n        \"NNP\"\n    ], \n    \"Flory\": [\n        \"NNP\"\n    ], \n    \"pool-equipped\": [\n        \"JJ\"\n    ], \n    \"eyelashes\": [\n        \"NNS\"\n    ], \n    \"Force\": [\n        \"NNP\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"corset\": [\n        \"NN\"\n    ], \n    \"Deaths\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"A.I.D.\": [\n        \"NN\"\n    ], \n    \"persevered\": [\n        \"VBD\"\n    ], \n    \"Takashima\": [\n        \"NNP\"\n    ], \n    \"carelessness\": [\n        \"NN\"\n    ], \n    \"Wait\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"primacy\": [\n        \"NN\"\n    ], \n    \"sobriquet\": [\n        \"NN\"\n    ], \n    \"capital-gains-tax\": [\n        \"JJ\"\n    ], \n    \"Skolkau\": [\n        \"NNP\"\n    ], \n    \"Barstow\": [\n        \"NNP\"\n    ], \n    \"baldish\": [\n        \"JJ\"\n    ], \n    \"maladaptive\": [\n        \"JJ\"\n    ], \n    \"imprudently\": [\n        \"RB\"\n    ], \n    \"brandished\": [\n        \"VBD\"\n    ], \n    \"kneaded\": [\n        \"VBN\"\n    ], \n    \"units-Texas\": [\n        \"NNP\"\n    ], \n    \"Ladgham\": [\n        \"NNP\"\n    ], \n    \"Huntsville\": [\n        \"NNP\"\n    ], \n    \"Taxation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"clinked\": [\n        \"VBD\"\n    ], \n    \"radiation\": [\n        \"NN\"\n    ], \n    \"cross\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VBP\"\n    ], \n    \"brandishes\": [\n        \"VBZ\"\n    ], \n    \"Delinquency\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"residing\": [\n        \"VBG\"\n    ], \n    \"ball-bearing\": [\n        \"NN\"\n    ], \n    \"Vue\": [\n        \"NNP\"\n    ], \n    \"reinterpretation\": [\n        \"NN\"\n    ], \n    \"ultra-low-tar\": [\n        \"JJ\"\n    ], \n    \"cinematographer\": [\n        \"NN\"\n    ], \n    \"anti-war\": [\n        \"JJ\"\n    ], \n    \"Computer-guided\": [\n        \"JJ\"\n    ], \n    \"screenland\": [\n        \"NN\"\n    ], \n    \"Fascio-Communist\": [\n        \"JJ\"\n    ], \n    \"incredible\": [\n        \"JJ\"\n    ], \n    \"Pierre\": [\n        \"NNP\"\n    ], \n    \"fighting\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"SPORTS\": [\n        \"NNS\"\n    ], \n    \"Oxidation\": [\n        \"NN\"\n    ], \n    \"Moral\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Moran\": [\n        \"NNP\"\n    ], \n    \"inter-office\": [\n        \"JJ\"\n    ], \n    \"unbridled\": [\n        \"JJ\"\n    ], \n    \"cried\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dressings\": [\n        \"NNS\"\n    ], \n    \"Kingstown\": [\n        \"NNP\"\n    ], \n    \"high-rise\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"home-care\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Insilco\": [\n        \"NNP\"\n    ], \n    \"replenish\": [\n        \"VB\"\n    ], \n    \"fibrin\": [\n        \"NN\"\n    ], \n    \"cries\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"leveraged-buy-out\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Argentina\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"methylglyoxal\": [\n        \"NN\"\n    ], \n    \"Argentine\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"penchant\": [\n        \"NN\"\n    ], \n    \"Tracers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"BALLOT\": [\n        \"NN\"\n    ], \n    \"clock-stopped\": [\n        \"VBN\"\n    ], \n    \"Overweight\": [\n        \"JJ\"\n    ], \n    \"capabilities\": [\n        \"NNS\"\n    ], \n    \"son-of-exchange\": [\n        \"JJ\"\n    ], \n    \"lymphocytes\": [\n        \"NNS\"\n    ], \n    \"stop-motion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Appert\": [\n        \"NNP\"\n    ], \n    \"Nujoma\": [\n        \"NNP\"\n    ], \n    \"HUNTING\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Populares\": [\n        \"NNP\"\n    ], \n    \"T\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"presume\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"raincoats\": [\n        \"NNS\"\n    ], \n    \"Marylanders\": [\n        \"NNPS\"\n    ], \n    \"underwrote\": [\n        \"VBD\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"black-tie\": [\n        \"JJ\"\n    ], \n    \"Elephants\": [\n        \"NNS\"\n    ], \n    \"Mersa\": [\n        \"NNP\"\n    ], \n    \"raffish\": [\n        \"JJ\"\n    ], \n    \"rituals\": [\n        \"NNS\"\n    ], \n    \"Co-operative\": [\n        \"NNP\"\n    ], \n    \"Kirghiz\": [\n        \"NNP\"\n    ], \n    \"virginity\": [\n        \"NN\"\n    ], \n    \"nondiscrimination\": [\n        \"NN\"\n    ], \n    \"Rottger\": [\n        \"NNP\"\n    ], \n    \"Section\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"unsuccessful\": [\n        \"JJ\"\n    ], \n    \"Barrington\": [\n        \"NNP\"\n    ], \n    \"Affirmative\": [\n        \"JJ\"\n    ], \n    \"cutters\": [\n        \"NNS\"\n    ], \n    \"Bellows\": [\n        \"NNP\"\n    ], \n    \"STODGY\": [\n        \"JJ\"\n    ], \n    \"bossed\": [\n        \"VBN\"\n    ], \n    \"manipulations\": [\n        \"NNS\"\n    ], \n    \"courtyards\": [\n        \"NNS\"\n    ], \n    \"bosses\": [\n        \"NNS\"\n    ], \n    \"Moriarty\": [\n        \"NNP\"\n    ], \n    \"Nosebleed\": [\n        \"NN\"\n    ], \n    \"on-level\": [\n        \"NN\"\n    ], \n    \"Matchbook-sized\": [\n        \"JJ\"\n    ], \n    \"inking\": [\n        \"NN\"\n    ], \n    \"conveyed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fray\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"gentians\": [\n        \"NNS\"\n    ], \n    \"Changyong\": [\n        \"NNP\"\n    ], \n    \"Generalizations\": [\n        \"NNS\"\n    ], \n    \"furtive\": [\n        \"JJ\"\n    ], \n    \"perspectives\": [\n        \"NNS\"\n    ], \n    \"Kendall\": [\n        \"NNP\"\n    ], \n    \"smaller-capital\": [\n        \"JJ\"\n    ], \n    \"takover\": [\n        \"NN\"\n    ], \n    \"Autodesk\": [\n        \"NNP\"\n    ], \n    \"column\": [\n        \"NN\"\n    ], \n    \"urged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Boggs\": [\n        \"NNP\"\n    ], \n    \"perks\": [\n        \"NNS\"\n    ], \n    \"vocationally\": [\n        \"RB\"\n    ], \n    \"low-back\": [\n        \"JJ\"\n    ], \n    \"perky\": [\n        \"JJ\"\n    ], \n    \"urges\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"emperor\": [\n        \"NN\"\n    ], \n    \"Yippies\": [\n        \"NNPS\"\n    ], \n    \"PLAN\": [\n        \"NN\"\n    ], \n    \"kinda\": [\n        \"RB\"\n    ], \n    \"Palamara\": [\n        \"NNP\"\n    ], \n    \"besmirched\": [\n        \"VBD\"\n    ], \n    \"Takoma\": [\n        \"NNP\"\n    ], \n    \"champ\": [\n        \"NN\"\n    ], \n    \"negate\": [\n        \"VB\"\n    ], \n    \"Employee-owned\": [\n        \"JJ\"\n    ], \n    \"desertification\": [\n        \"NN\"\n    ], \n    \"Upon\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"groomed\": [\n        \"VBN\"\n    ], \n    \"continental\": [\n        \"JJ\"\n    ], \n    \"preapproved\": [\n        \"VBN\"\n    ], \n    \"Ramsey\": [\n        \"NNP\"\n    ], \n    \"commercial-products\": [\n        \"JJ\"\n    ], \n    \"shredder\": [\n        \"NN\"\n    ], \n    \"Condition\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ginning\": [\n        \"NNP\"\n    ], \n    \"Chrysler-Plymouth\": [\n        \"NNP\"\n    ], \n    \"triggered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Seahorse\": [\n        \"NNP\"\n    ], \n    \"tinged\": [\n        \"VBN\"\n    ], \n    \"thievin\": [\n        \"VBG\"\n    ], \n    \"Yuppies\": [\n        \"NNS\"\n    ], \n    \"whole-milk\": [\n        \"NN\"\n    ], \n    \"Kanaday\": [\n        \"NNP\"\n    ], \n    \"Stops\": [\n        \"NNP\"\n    ], \n    \"Miscellany\": [\n        \"NNP\"\n    ], \n    \"Sills\": [\n        \"NNP\"\n    ], \n    \"ComputerWorld\": [\n        \"NNP\"\n    ], \n    \"WIC\": [\n        \"NNP\"\n    ], \n    \"altitude-azimuth-mounted\": [\n        \"JJ\"\n    ], \n    \"Panam\": [\n        \"NNP\"\n    ], \n    \"mispronunciation\": [\n        \"NN\"\n    ], \n    \"infants\": [\n        \"NNS\"\n    ], \n    \"Chromium\": [\n        \"NN\"\n    ], \n    \"Oceanography\": [\n        \"NNP\"\n    ], \n    \"humbling\": [\n        \"JJ\"\n    ], \n    \"stuck-up\": [\n        \"JJ\"\n    ], \n    \"sexpot\": [\n        \"NN\"\n    ], \n    \"Site\": [\n        \"NNP\"\n    ], \n    \"resumption\": [\n        \"NN\"\n    ], \n    \"Kimba\": [\n        \"NNP\"\n    ], \n    \"Physicists\": [\n        \"NNS\"\n    ], \n    \"Berrigan\": [\n        \"NNP\"\n    ], \n    \"sympathizers\": [\n        \"NNS\"\n    ], \n    \"Wiedemann\": [\n        \"NNP\"\n    ], \n    \"budget-reconciliation\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"downtalking\": [\n        \"JJ\"\n    ], \n    \"guitarist\": [\n        \"NN\"\n    ], \n    \"Potowomut\": [\n        \"NNP\"\n    ], \n    \"Fuji\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Islamic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"other\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Desk\": [\n        \"NNP\"\n    ], \n    \"ventilating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Dese\": [\n        \"NNP\"\n    ], \n    \"Fontainbleau\": [\n        \"NNP\"\n    ], \n    \"Rothamsted\": [\n        \"NNP\"\n    ], \n    \"CenTrust\": [\n        \"NNP\"\n    ], \n    \"contacting\": [\n        \"VBG\"\n    ], \n    \"sloping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"album\": [\n        \"NN\"\n    ], \n    \"inherently\": [\n        \"RB\"\n    ], \n    \"non-military\": [\n        \"JJ\"\n    ], \n    \"Komatsu\": [\n        \"NNP\"\n    ], \n    \"earthly\": [\n        \"JJ\"\n    ], \n    \"Messerschmitt-Boelkow-Blohm\": [\n        \"NNP\"\n    ], \n    \"Smaller-stock\": [\n        \"JJR\"\n    ], \n    \"Draconian\": [\n        \"JJ\"\n    ], \n    \"upwards\": [\n        \"RB\", \n        \"NNS\"\n    ], \n    \"Abingdon\": [\n        \"NNP\"\n    ], \n    \"Ditch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"all-nighters\": [\n        \"NNS\"\n    ], \n    \"resublimed\": [\n        \"VBN\"\n    ], \n    \"Roswell\": [\n        \"NNP\"\n    ], \n    \"well-oriented\": [\n        \"JJ\"\n    ], \n    \"necrosis\": [\n        \"NN\"\n    ], \n    \"Dorenzo\": [\n        \"NNP\"\n    ], \n    \"Livery\": [\n        \"JJ\"\n    ], \n    \"gynecologist\": [\n        \"NN\"\n    ], \n    \"pods\": [\n        \"NNS\"\n    ], \n    \"Kensetsu\": [\n        \"NNP\"\n    ], \n    \"PARS-Datas\": [\n        \"NNP\"\n    ], \n    \"white-walled\": [\n        \"JJ\"\n    ], \n    \"Artkino\": [\n        \"NNP\"\n    ], \n    \"Does\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"Olympics\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"DEMAND\": [\n        \"NN\"\n    ], \n    \"ringlets\": [\n        \"NNS\"\n    ], \n    \"vassals\": [\n        \"NNS\"\n    ], \n    \"blot-appearance\": [\n        \"NN\"\n    ], \n    \"Spectators\": [\n        \"NNS\"\n    ], \n    \"Rayle\": [\n        \"NNP\"\n    ], \n    \"salesgirl\": [\n        \"NN\"\n    ], \n    \"Sewell\": [\n        \"NNP\"\n    ], \n    \"sputter\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"immature\": [\n        \"JJ\"\n    ], \n    \"meadows\": [\n        \"NNS\"\n    ], \n    \"Beantown\": [\n        \"NNP\"\n    ], \n    \"oceans\": [\n        \"NNS\"\n    ], \n    \"Eberly\": [\n        \"NNP\"\n    ], \n    \"Charitable\": [\n        \"JJ\"\n    ], \n    \"sideline-business\": [\n        \"JJ\"\n    ], \n    \"leisurely\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"stabbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"interlocking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"JNR\": [\n        \"NNP\"\n    ], \n    \"disturb\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Palache\": [\n        \"NNP\"\n    ], \n    \"down-payment\": [\n        \"NN\"\n    ], \n    \"Bacon\": [\n        \"NNP\"\n    ], \n    \"new-issue\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"persisted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"wavered\": [\n        \"VBD\"\n    ], \n    \"Paul\": [\n        \"NNP\"\n    ], \n    \"Convair\": [\n        \"NNP\"\n    ], \n    \"Rachel\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"specially\": [\n        \"RB\"\n    ], \n    \"Off-Track\": [\n        \"NNP\"\n    ], \n    \"eclipsed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sailed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"loathing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"McQuillan\": [\n        \"NNP\"\n    ], \n    \"photofinishing\": [\n        \"NN\"\n    ], \n    \"enroute\": [\n        \"RB\"\n    ], \n    \"jocular\": [\n        \"JJ\"\n    ], \n    \"Boise\": [\n        \"NNP\"\n    ], \n    \"sales.\": [\n        \"NNS\"\n    ], \n    \"Olivares\": [\n        \"NNP\"\n    ], \n    \"truck-building\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fossil\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"resilient\": [\n        \"JJ\"\n    ], \n    \"payoff\": [\n        \"NN\"\n    ], \n    \"cull\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mid-watch\": [\n        \"JJ\"\n    ], \n    \"Lovering\": [\n        \"NNP\"\n    ], \n    \"GRP\": [\n        \"NNP\"\n    ], \n    \"Gadsden\": [\n        \"NNP\"\n    ], \n    \"Munoz\": [\n        \"NNP\"\n    ], \n    \"GRX\": [\n        \"NNP\"\n    ], \n    \"atoms\": [\n        \"NNS\"\n    ], \n    \"GRE\": [\n        \"NNP\"\n    ], \n    \"cart\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"cult\": [\n        \"NN\"\n    ], \n    \"ACCOUNTING\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Stephanie\": [\n        \"NNP\"\n    ], \n    \"eclipses\": [\n        \"NNS\"\n    ], \n    \"Nurseries\": [\n        \"NNPS\"\n    ], \n    \"cyclical\": [\n        \"JJ\"\n    ], \n    \"Crossland\": [\n        \"NNP\"\n    ], \n    \"Propriety\": [\n        \"NN\"\n    ], \n    \"elaborate\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"gene-copying\": [\n        \"JJ\"\n    ], \n    \"Hydrogen\": [\n        \"NN\"\n    ], \n    \"criticism\": [\n        \"NN\"\n    ], \n    \"roadrunner\": [\n        \"NN\"\n    ], \n    \"Rul.\": [\n        \"NNP\"\n    ], \n    \"birthright\": [\n        \"NN\"\n    ], \n    \"anti-Semitic\": [\n        \"JJ\"\n    ], \n    \"Kee-reist\": [\n        \"UH\"\n    ], \n    \"replace\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"smolders\": [\n        \"VBZ\"\n    ], \n    \"beneficiaries\": [\n        \"NNS\"\n    ], \n    \"IFAR\": [\n        \"NNP\"\n    ], \n    \"unanswered\": [\n        \"JJ\"\n    ], \n    \"anions\": [\n        \"NNS\"\n    ], \n    \"PROMOTION\": [\n        \"NNP\"\n    ], \n    \"Gabele\": [\n        \"NNP\"\n    ], \n    \"USF&G\": [\n        \"NNP\"\n    ], \n    \"apportionment\": [\n        \"NN\"\n    ], \n    \"Porch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Diprivan\": [\n        \"NNP\"\n    ], \n    \"pompons\": [\n        \"NNS\"\n    ], \n    \"coordinators\": [\n        \"NNS\"\n    ], \n    \"symphony\": [\n        \"NN\"\n    ], \n    \"strike\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"marchers\": [\n        \"NNS\"\n    ], \n    \"Recent\": [\n        \"JJ\"\n    ], \n    \"cutbacks\": [\n        \"NNS\"\n    ], \n    \"Hart-Scott\": [\n        \"NNP\"\n    ], \n    \"paperwork\": [\n        \"NN\"\n    ], \n    \"hereby\": [\n        \"RB\"\n    ], \n    \"sortie\": [\n        \"NN\"\n    ], \n    \"Rule\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"EXPENSES\": [\n        \"NNS\"\n    ], \n    \"focused-factory\": [\n        \"JJ\"\n    ], \n    \"reversible\": [\n        \"JJ\"\n    ], \n    \"Cathryn\": [\n        \"NNP\"\n    ], \n    \"Doskocil\": [\n        \"NNP\"\n    ], \n    \"Chinook\": [\n        \"NNP\"\n    ], \n    \"already-sizable\": [\n        \"JJ\"\n    ], \n    \"Widow\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Selman\": [\n        \"NNP\"\n    ], \n    \"flicking\": [\n        \"VBG\"\n    ], \n    \"Synbiotics\": [\n        \"NNP\"\n    ], \n    \"Imports\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"contract-steering\": [\n        \"JJ\"\n    ], \n    \"rulings\": [\n        \"NNS\"\n    ], \n    \"Professors\": [\n        \"NNP\"\n    ], \n    \"Beebe\": [\n        \"NNP\"\n    ], \n    \"imperialism\": [\n        \"NN\"\n    ], \n    \"shelve\": [\n        \"VB\"\n    ], \n    \"WNYW-TV\": [\n        \"NNP\"\n    ], \n    \"food-industry\": [\n        \"NN\"\n    ], \n    \"brand-name\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"omelets\": [\n        \"NNS\"\n    ], \n    \"conservatorship\": [\n        \"NN\"\n    ], \n    \"Socialist-led\": [\n        \"JJ\"\n    ], \n    \"leotards\": [\n        \"NNS\"\n    ], \n    \"Quant\": [\n        \"NN\"\n    ], \n    \"Franny\": [\n        \"NNP\"\n    ], \n    \"Easier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"truckdriver\": [\n        \"NN\"\n    ], \n    \"Dreisers\": [\n        \"NNPS\"\n    ], \n    \"groaned\": [\n        \"VBD\"\n    ], \n    \"dignifies\": [\n        \"VBZ\"\n    ], \n    \"feature\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Maritime\": [\n        \"NNP\"\n    ], \n    \"dignified\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"primping\": [\n        \"VBG\"\n    ], \n    \"abstraction\": [\n        \"NN\"\n    ], \n    \"Hydroxides\": [\n        \"NNS\"\n    ], \n    \"minimized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"adoptions\": [\n        \"NNS\"\n    ], \n    \"vocalization\": [\n        \"NN\"\n    ], \n    \"rock-strewn\": [\n        \"NN\"\n    ], \n    \"reassess\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Bailard\": [\n        \"NNP\"\n    ], \n    \"LIFETIME\": [\n        \"NNP\"\n    ], \n    \"minimizes\": [\n        \"VBZ\"\n    ], \n    \"unselfish\": [\n        \"JJ\"\n    ], \n    \"first-strike\": [\n        \"JJ\"\n    ], \n    \"Bananas\": [\n        \"NNS\"\n    ], \n    \"glow-in-the-dark\": [\n        \"JJ\"\n    ], \n    \"would-be\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"nympho\": [\n        \"NN\"\n    ], \n    \"fictional\": [\n        \"JJ\"\n    ], \n    \"nymphs\": [\n        \"NNS\"\n    ], \n    \"orally\": [\n        \"RB\"\n    ], \n    \"infertile\": [\n        \"JJ\"\n    ], \n    \"overhauls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"stockpiled\": [\n        \"VBN\"\n    ], \n    \"semiconductor-coating\": [\n        \"NN\"\n    ], \n    \"Bryner\": [\n        \"NNP\"\n    ], \n    \"loss-expense\": [\n        \"JJ\"\n    ], \n    \"foodstuff\": [\n        \"NN\"\n    ], \n    \"Ludwin\": [\n        \"NNP\"\n    ], \n    \"stockpiles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ludwig\": [\n        \"NNP\"\n    ], \n    \"Commies\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Told\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"exit-poll\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Guofeng\": [\n        \"NNP\"\n    ], \n    \"VLSI\": [\n        \"NNP\"\n    ], \n    \"fairest\": [\n        \"JJS\"\n    ], \n    \"heretofore\": [\n        \"RB\"\n    ], \n    \"charmers\": [\n        \"NNS\"\n    ], \n    \"fanciest\": [\n        \"JJS\"\n    ], \n    \"Barber\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rowse\": [\n        \"NNP\"\n    ], \n    \"Palsy\": [\n        \"NNP\"\n    ], \n    \"YALE\": [\n        \"NNP\"\n    ], \n    \"put-upon\": [\n        \"JJ\"\n    ], \n    \"Beresford\": [\n        \"NNP\"\n    ], \n    \"doghouse\": [\n        \"NN\"\n    ], \n    \"better-safe-than\": [\n        \"JJ\"\n    ], \n    \"mispriced\": [\n        \"VBD\"\n    ], \n    \"AutoWorld\": [\n        \"NNP\"\n    ], \n    \"RULERS\": [\n        \"NNS\"\n    ], \n    \"Danforth\": [\n        \"NNP\"\n    ], \n    \"interrupt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"man-made\": [\n        \"JJ\"\n    ], \n    \"mimicking\": [\n        \"VBG\"\n    ], \n    \"PROPERTIES\": [\n        \"NNPS\"\n    ], \n    \"Habitat\": [\n        \"NNP\"\n    ], \n    \"Siedlungs\": [\n        \"NNP\"\n    ], \n    \"Yank-oriented\": [\n        \"JJ\"\n    ], \n    \"yachting\": [\n        \"NN\"\n    ], \n    \"Gustavus\": [\n        \"NNP\"\n    ], \n    \"Hackney\": [\n        \"NNP\"\n    ], \n    \"shrewder\": [\n        \"JJR\"\n    ], \n    \"two-bit\": [\n        \"JJ\"\n    ], \n    \"volcano\": [\n        \"NN\"\n    ], \n    \"one-hour\": [\n        \"JJ\"\n    ], \n    \"Millions\": [\n        \"NNS\"\n    ], \n    \"powerlessness\": [\n        \"NN\"\n    ], \n    \"pre-``\": [\n        \"``\"\n    ], \n    \"reputedly\": [\n        \"RB\"\n    ], \n    \"archetypes\": [\n        \"NNS\"\n    ], \n    \"Superstation\": [\n        \"NNP\"\n    ], \n    \"Winner\": [\n        \"NNP\"\n    ], \n    \"long-running\": [\n        \"JJ\"\n    ], \n    \"Schroer\": [\n        \"NNP\"\n    ], \n    \"unlawfully\": [\n        \"RB\"\n    ], \n    \"raw-materials\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"tragicomic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"McCovey\": [\n        \"NNP\"\n    ], \n    \"AGIP\": [\n        \"NNP\"\n    ], \n    \"Foreseeing\": [\n        \"VBG\"\n    ], \n    \"PROFIT\": [\n        \"NN\"\n    ], \n    \"Huber\": [\n        \"NNP\"\n    ], \n    \"Burnison\": [\n        \"NNP\"\n    ], \n    \"re\": [\n        \"NN\"\n    ], \n    \"rf\": [\n        \"NN\"\n    ], \n    \"transmission-product\": [\n        \"NN\"\n    ], \n    \"for-profit\": [\n        \"JJ\"\n    ], \n    \"Hubel\": [\n        \"NNP\"\n    ], \n    \"Stuttgart-based\": [\n        \"JJ\"\n    ], \n    \"differentiates\": [\n        \"VBZ\"\n    ], \n    \"Josiah\": [\n        \"NNP\"\n    ], \n    \"Prebon\": [\n        \"NNP\"\n    ], \n    \"Word\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Amcast\": [\n        \"NNP\"\n    ], \n    \"Extension\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sifco\": [\n        \"NNP\"\n    ], \n    \"rateable\": [\n        \"JJ\"\n    ], \n    \"Work\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"threatened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Worn\": [\n        \"VBN\"\n    ], \n    \"attributions\": [\n        \"NNS\"\n    ], \n    \"sunbonnets\": [\n        \"NNS\"\n    ], \n    \"tinkled\": [\n        \"VBD\"\n    ], \n    \"crowned\": [\n        \"VBN\"\n    ], \n    \"estrogen-replacement\": [\n        \"NN\"\n    ], \n    \"obstructing\": [\n        \"VBG\"\n    ], \n    \"incentive-buoyed\": [\n        \"JJ\"\n    ], \n    \"enormous\": [\n        \"JJ\"\n    ], \n    \"birdie\": [\n        \"NN\"\n    ], \n    \"eared\": [\n        \"JJ\"\n    ], \n    \"scrupulosity\": [\n        \"NN\"\n    ], \n    \"Separate\": [\n        \"JJ\"\n    ], \n    \"tempting\": [\n        \"JJ\"\n    ], \n    \"Gianni\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"government-orchestrated\": [\n        \"JJ\"\n    ], \n    \"symbolize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"appreciable\": [\n        \"JJ\"\n    ], \n    \"CSC\": [\n        \"NNP\"\n    ], \n    \"Chihuahua\": [\n        \"NNP\"\n    ], \n    \"athlete-s\": [\n        \"NN\"\n    ], \n    \"hearsay\": [\n        \"NN\"\n    ], \n    \"steroids\": [\n        \"NNS\"\n    ], \n    \"Tasurinchi\": [\n        \"NNP\"\n    ], \n    \"Harbert\": [\n        \"NNP\"\n    ], \n    \"vitro\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"procreate\": [\n        \"VB\"\n    ], \n    \"glassy\": [\n        \"JJ\"\n    ], \n    \"infringed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hama-style\": [\n        \"JJ\"\n    ], \n    \"open-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"promise...\": [\n        \":\"\n    ], \n    \"lawsuits\": [\n        \"NNS\"\n    ], \n    \"think-tanks\": [\n        \"JJ\"\n    ], \n    \"Effect\": [\n        \"NN\"\n    ], \n    \"perturbations\": [\n        \"NNS\"\n    ], \n    \"clot-reducing\": [\n        \"JJ\"\n    ], \n    \"rectifier\": [\n        \"NN\"\n    ], \n    \"earthquake-ravaged\": [\n        \"JJ\"\n    ], \n    \"counter-offensive\": [\n        \"NN\"\n    ], \n    \"unplowed\": [\n        \"JJ\"\n    ], \n    \"Backbends\": [\n        \"NNS\"\n    ], \n    \"REPORTED\": [\n        \"VBN\"\n    ], \n    \"rectified\": [\n        \"VBN\"\n    ], \n    \"supertitles\": [\n        \"NNS\"\n    ], \n    \"defaulted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"legatee\": [\n        \"NN\"\n    ], \n    \"wod\": [\n        \"MD\"\n    ], \n    \"Adm.\": [\n        \"NNP\"\n    ], \n    \"requesters\": [\n        \"NNS\"\n    ], \n    \"icicle\": [\n        \"NN\"\n    ], \n    \"illiquidity\": [\n        \"NN\"\n    ], \n    \"hibachi\": [\n        \"NN\"\n    ], \n    \"durin\": [\n        \"NN\", \n        \"IN\"\n    ], \n    \"krautheads\": [\n        \"NNS\"\n    ], \n    \"Abramson\": [\n        \"NNP\"\n    ], \n    \"Mohandas\": [\n        \"NNP\"\n    ], \n    \"skimmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Volgograd\": [\n        \"NNP\"\n    ], \n    \"issuable\": [\n        \"JJ\"\n    ], \n    \"Weigle\": [\n        \"NNP\"\n    ], \n    \"Automobili\": [\n        \"NNP\"\n    ], \n    \"willingness\": [\n        \"NN\"\n    ], \n    \"hop-skipped\": [\n        \"VBN\"\n    ], \n    \"shyly\": [\n        \"RB\"\n    ], \n    \"Mullenax\": [\n        \"NNP\"\n    ], \n    \"motets\": [\n        \"NNS\"\n    ], \n    \"constricted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"benighted\": [\n        \"JJ\"\n    ], \n    \"unmelodic\": [\n        \"JJ\"\n    ], \n    \"gift-giving\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"push-ups\": [\n        \"NNS\"\n    ], \n    \"Lincolnshire\": [\n        \"NNP\"\n    ], \n    \"bleachers\": [\n        \"NNS\"\n    ], \n    \"soaked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"self-flagellation\": [\n        \"NN\"\n    ], \n    \"promenades\": [\n        \"NNS\"\n    ], \n    \"instructs\": [\n        \"VBZ\"\n    ], \n    \"amusing\": [\n        \"JJ\"\n    ], \n    \"Hornaday\": [\n        \"NNP\"\n    ], \n    \"Drastic\": [\n        \"JJ\"\n    ], \n    \"second-leading\": [\n        \"JJ\"\n    ], \n    \"imprudent\": [\n        \"JJ\"\n    ], \n    \"floorshow\": [\n        \"NN\"\n    ], \n    \"Stertz\": [\n        \"NNP\"\n    ], \n    \"thrilled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"twin-blade\": [\n        \"JJ\"\n    ], \n    \"unmindful\": [\n        \"JJ\"\n    ], \n    \"automaker\": [\n        \"NN\"\n    ], \n    \"VCR\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"addict\": [\n        \"NN\"\n    ], \n    \"vaccinia\": [\n        \"NN\"\n    ], \n    \"organization\": [\n        \"NN\"\n    ], \n    \"demonstrativeness\": [\n        \"NN\"\n    ], \n    \"thriller\": [\n        \"NN\"\n    ], \n    \"Galveston\": [\n        \"NNP\"\n    ], \n    \"dummy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jerusalem\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"no-goal\": [\n        \"NN\"\n    ], \n    \"snooping\": [\n        \"VBG\"\n    ], \n    \"Nonsexist\": [\n        \"NNP\"\n    ], \n    \"Chardon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Poxon\": [\n        \"NNP\"\n    ], \n    \"Deactivation\": [\n        \"NN\"\n    ], \n    \"detriment\": [\n        \"NN\"\n    ], \n    \"Worthington\": [\n        \"NNP\"\n    ], \n    \"catastrophic-health\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"incorporate\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"MONITORED\": [\n        \"VBD\"\n    ], \n    \"HANNIFIN\": [\n        \"NNP\"\n    ], \n    \"insects\": [\n        \"NNS\"\n    ], \n    \"meetings\": [\n        \"NNS\"\n    ], \n    \"people-oriented\": [\n        \"JJ\"\n    ], \n    \"Nyiregyhaza\": [\n        \"NNP\"\n    ], \n    \"PLC.\": [\n        \"NNP\"\n    ], \n    \"Twain\": [\n        \"NNP\"\n    ], \n    \"third-shift\": [\n        \"JJ\"\n    ], \n    \"lethal\": [\n        \"JJ\"\n    ], \n    \"abreast\": [\n        \"RB\"\n    ], \n    \"Timon\": [\n        \"NNP\"\n    ], \n    \"Beech-Nut\": [\n        \"NNP\"\n    ], \n    \"Strips\": [\n        \"NNS\"\n    ], \n    \"itinerant\": [\n        \"JJ\"\n    ], \n    \"Shahrokh\": [\n        \"NNP\"\n    ], \n    \"Microwaves\": [\n        \"NNS\"\n    ], \n    \"crossways\": [\n        \"RB\"\n    ], \n    \"figgered\": [\n        \"VBD\"\n    ], \n    \"maturation\": [\n        \"NN\"\n    ], \n    \"Non-actors\": [\n        \"NNS\"\n    ], \n    \"non-monetary\": [\n        \"JJ\"\n    ], \n    \"Timor\": [\n        \"NNP\"\n    ], \n    \"salespeople\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"enemy-Jew\": [\n        \"NN\"\n    ], \n    \"rosebuds\": [\n        \"NNS\"\n    ], \n    \"Barberis\": [\n        \"NNP\"\n    ], \n    \"Permits\": [\n        \"NNS\"\n    ], \n    \"Nevertheless\": [\n        \"RB\"\n    ], \n    \"remarry\": [\n        \"VB\"\n    ], \n    \"inoperative\": [\n        \"JJ\"\n    ], \n    \"pocket\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Wastrel\": [\n        \"NN\"\n    ], \n    \"Gitano\": [\n        \"NNP\"\n    ], \n    \"relish\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"societies\": [\n        \"NNS\"\n    ], \n    \"Bens\": [\n        \"NNP\"\n    ], \n    \"sub-assemblies\": [\n        \"NNS\"\n    ], \n    \"spilling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Squats\": [\n        \"NNS\"\n    ], \n    \"Prayers\": [\n        \"NNS\"\n    ], \n    \"stunningly\": [\n        \"RB\"\n    ], \n    \"Siva\": [\n        \"NNP\"\n    ], \n    \"adherence\": [\n        \"NN\"\n    ], \n    \"Pasture\": [\n        \"NNP\"\n    ], \n    \"hasten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"defense-oriented\": [\n        \"JJ\"\n    ], \n    \"trade-school\": [\n        \"NN\"\n    ], \n    \"Taxpayer\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"festival-oriented\": [\n        \"JJ\"\n    ], \n    \"peripheral\": [\n        \"JJ\"\n    ], \n    \"insinuation\": [\n        \"NN\"\n    ], \n    \"flaxen\": [\n        \"JJ\"\n    ], \n    \"Brevard\": [\n        \"NNP\"\n    ], \n    \"radius\": [\n        \"NN\"\n    ], \n    \"Szelenyi\": [\n        \"NNP\"\n    ], \n    \"to-the-death\": [\n        \"NN\"\n    ], \n    \"well-educated\": [\n        \"JJ\"\n    ], \n    \"seventh-consecutive\": [\n        \"JJ\"\n    ], \n    \"avert\": [\n        \"VB\"\n    ], \n    \"dimethylglyoxime\": [\n        \"NN\"\n    ], \n    \"Comedy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eprex\": [\n        \"NNP\"\n    ], \n    \"Ginandjar\": [\n        \"NNP\"\n    ], \n    \"card-holder\": [\n        \"NN\"\n    ], \n    \"cosmologies\": [\n        \"NNS\"\n    ], \n    \"SABH\": [\n        \"NNP\"\n    ], \n    \"humankind\": [\n        \"NN\"\n    ], \n    \"pro-selected\": [\n        \"JJ\"\n    ], \n    \"propagated\": [\n        \"VBN\"\n    ], \n    \"magnesium\": [\n        \"NN\"\n    ], \n    \"Schottenstein\": [\n        \"NNP\"\n    ], \n    \"smelled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"authorizing\": [\n        \"VBG\"\n    ], \n    \"self-congratulatory\": [\n        \"JJ\"\n    ], \n    \"Carothers\": [\n        \"NNP\"\n    ], \n    \"nonregulated\": [\n        \"JJ\"\n    ], \n    \"well-lighted\": [\n        \"JJ\"\n    ], \n    \"heavy-hitter\": [\n        \"NN\"\n    ], \n    \"GSD&M\": [\n        \"NNP\"\n    ], \n    \"chirped\": [\n        \"VBD\"\n    ], \n    \"fallacious\": [\n        \"JJ\"\n    ], \n    \"RECRUITING\": [\n        \"NN\"\n    ], \n    \"decompose\": [\n        \"VB\"\n    ], \n    \"logic\": [\n        \"NN\"\n    ], \n    \"meting\": [\n        \"VBG\"\n    ], \n    \"Stover\": [\n        \"NNP\"\n    ], \n    \"argue\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"absent-mindedly\": [\n        \"RB\"\n    ], \n    \"Chatterton\": [\n        \"NNP\"\n    ], \n    \"applause-happy\": [\n        \"JJ\"\n    ], \n    \"EGA-VGA\": [\n        \"JJ\"\n    ], \n    \"Millard\": [\n        \"NNP\"\n    ], \n    \"Korman\": [\n        \"NNP\"\n    ], \n    \"nitrogen-based\": [\n        \"JJ\"\n    ], \n    \"pregnancy\": [\n        \"NN\"\n    ], \n    \"Bernstein\": [\n        \"NNP\"\n    ], \n    \"Rotie\": [\n        \"NNP\"\n    ], \n    \"jog\": [\n        \"VB\"\n    ], \n    \"Movement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Perception\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mais\": [\n        \"FW\"\n    ], \n    \"adverb\": [\n        \"NN\"\n    ], \n    \"particle-board\": [\n        \"NN\"\n    ], \n    \"well-rehearsed\": [\n        \"JJ\"\n    ], \n    \"monosodium\": [\n        \"NN\"\n    ], \n    \"subside\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"subsidy\": [\n        \"NN\"\n    ], \n    \"stadium\": [\n        \"NN\"\n    ], \n    \"Insofar\": [\n        \"RB\"\n    ], \n    \"song-writing\": [\n        \"NN\"\n    ], \n    \"phyla\": [\n        \"NN\"\n    ], \n    \"superhuman\": [\n        \"JJ\"\n    ], \n    \"adroitly\": [\n        \"RB\"\n    ], \n    \"Moneyed\": [\n        \"NNP\"\n    ], \n    \"graphical\": [\n        \"JJ\"\n    ], \n    \"technologically-improved\": [\n        \"JJ\"\n    ], \n    \"Tokyo\": [\n        \"NNP\"\n    ], \n    \"Compulsive\": [\n        \"JJ\"\n    ], \n    \"onyx\": [\n        \"NN\"\n    ], \n    \"light-weight\": [\n        \"JJ\"\n    ], \n    \"Bougainville\": [\n        \"NNP\"\n    ], \n    \"Rachael\": [\n        \"NNP\"\n    ], \n    \"evasions\": [\n        \"NNS\"\n    ], \n    \"Fayetteville\": [\n        \"NNP\"\n    ], \n    \"haters\": [\n        \"NNS\"\n    ], \n    \"excorciate\": [\n        \"VB\"\n    ], \n    \"semi-statist\": [\n        \"JJ\"\n    ], \n    \"Miantonomi\": [\n        \"NNP\"\n    ], \n    \"Cessna\": [\n        \"NNP\"\n    ], \n    \"NMR\": [\n        \"NNP\"\n    ], \n    \"NMS\": [\n        \"NNP\"\n    ], \n    \"contemplated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Maid\": [\n        \"NNP\"\n    ], \n    \"flood-insurance\": [\n        \"NN\"\n    ], \n    \"Kezziah\": [\n        \"NNP\"\n    ], \n    \"Pancrazio\": [\n        \"NNP\"\n    ], \n    \"contemplates\": [\n        \"VBZ\"\n    ], \n    \"NME\": [\n        \"NNP\"\n    ], \n    \"NMB\": [\n        \"NNP\"\n    ], \n    \"Harrison\": [\n        \"NNP\"\n    ], \n    \"vascular-lesion\": [\n        \"NN\"\n    ], \n    \"Goddard\": [\n        \"NNP\"\n    ], \n    \"bin\": [\n        \"NN\"\n    ], \n    \"Dim\": [\n        \"VBP\"\n    ], \n    \"Lackluster\": [\n        \"JJ\"\n    ], \n    \"Neisse\": [\n        \"NNP\"\n    ], \n    \"Thermometer\": [\n        \"NNP\"\n    ], \n    \"Tossing\": [\n        \"VBG\"\n    ], \n    \"elicit\": [\n        \"VB\"\n    ], \n    \"Sitter\": [\n        \"NNP\"\n    ], \n    \"anticipating\": [\n        \"VBG\"\n    ], \n    \"Mail\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Puerto\": [\n        \"NNP\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"smoothest\": [\n        \"JJS\"\n    ], \n    \"F100-PW-200\": [\n        \"NNP\"\n    ], \n    \"Python\": [\n        \"NNP\"\n    ], \n    \"per-year\": [\n        \"JJ\"\n    ], \n    \"yellow\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Intecom\": [\n        \"NNP\"\n    ], \n    \"Fatimata\": [\n        \"NNP\"\n    ], \n    \"clucking\": [\n        \"VBG\"\n    ], \n    \"gateways\": [\n        \"NNS\"\n    ], \n    \"Die\": [\n        \"NNP\", \n        \"FW\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"text-lookup\": [\n        \"NN\"\n    ], \n    \"pre-school\": [\n        \"JJ\"\n    ], \n    \"Sloanaker\": [\n        \"NNP\"\n    ], \n    \"latter-day\": [\n        \"JJ\"\n    ], \n    \"rent-control\": [\n        \"NN\"\n    ], \n    \"EFFECT\": [\n        \"NN\"\n    ], \n    \"photographers\": [\n        \"NNS\"\n    ], \n    \"sobbing\": [\n        \"VBG\"\n    ], \n    \"Apples\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"military\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gays\": [\n        \"NNS\"\n    ], \n    \"Weigel\": [\n        \"NNP\"\n    ], \n    \"Tijuana\": [\n        \"NNP\"\n    ], \n    \"maximizing\": [\n        \"VBG\"\n    ], \n    \"reoffering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"holdups\": [\n        \"NNS\"\n    ], \n    \"detracted\": [\n        \"VBN\"\n    ], \n    \"raindrops\": [\n        \"NNS\"\n    ], \n    \"backhanded\": [\n        \"JJ\"\n    ], \n    \"scissoring\": [\n        \"VBG\"\n    ], \n    \"capitol\": [\n        \"NN\"\n    ], \n    \"sleeps\": [\n        \"VBZ\"\n    ], \n    \"misconstruction\": [\n        \"NN\"\n    ], \n    \"MOVE\": [\n        \"NN\"\n    ], \n    \"sleepy\": [\n        \"JJ\"\n    ], \n    \"rotates\": [\n        \"VBZ\"\n    ], \n    \"divination\": [\n        \"NN\"\n    ], \n    \"amusingly\": [\n        \"RB\"\n    ], \n    \"town-house\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"U.S.-about\": [\n        \"IN\"\n    ], \n    \"Beit\": [\n        \"NNP\"\n    ], \n    \"spectacles\": [\n        \"NNS\"\n    ], \n    \"craning\": [\n        \"VBG\"\n    ], \n    \"olefins\": [\n        \"NNS\"\n    ], \n    \"computer-accessory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Preferred-dividend\": [\n        \"JJ\"\n    ], \n    \"Leonard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"disparity\": [\n        \"NN\"\n    ], \n    \"Berson\": [\n        \"NNP\"\n    ], \n    \"obedient\": [\n        \"JJ\"\n    ], \n    \"Spiegel\": [\n        \"NNP\"\n    ], \n    \"semi-annually\": [\n        \"RB\"\n    ], \n    \"Doerflinger\": [\n        \"NNP\"\n    ], \n    \"weeklies\": [\n        \"NNS\"\n    ], \n    \"elevation\": [\n        \"NN\"\n    ], \n    \"Fontainebleau\": [\n        \"NNP\"\n    ], \n    \"perking\": [\n        \"VBG\"\n    ], \n    \"precincts\": [\n        \"NNS\"\n    ], \n    \"Reisert\": [\n        \"NNP\"\n    ], \n    \"Shucks\": [\n        \"UH\"\n    ], \n    \"desire\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ryukichi\": [\n        \"NNP\"\n    ], \n    \"Aristotle\": [\n        \"NNP\"\n    ], \n    \"floppy-disk\": [\n        \"NN\"\n    ], \n    \"marinating\": [\n        \"VBG\"\n    ], \n    \"withing\": [\n        \"IN\"\n    ], \n    \"grotesquely\": [\n        \"RB\"\n    ], \n    \"continuation\": [\n        \"NN\"\n    ], \n    \"creek\": [\n        \"NN\"\n    ], \n    \"Idiot\": [\n        \"NN\"\n    ], \n    \"creed\": [\n        \"NN\"\n    ], \n    \"metabolic\": [\n        \"JJ\"\n    ], \n    \"Neo-Paganism\": [\n        \"NNP\"\n    ], \n    \"pre-existence\": [\n        \"JJ\"\n    ], \n    \"trombone\": [\n        \"NN\"\n    ], \n    \"prick\": [\n        \"NN\"\n    ], \n    \"harassment\": [\n        \"NN\"\n    ], \n    \"Haydn\": [\n        \"NNP\"\n    ], \n    \"creep\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Abbe\": [\n        \"NNP\"\n    ], \n    \"Abba\": [\n        \"NNP\"\n    ], \n    \"Upsala\": [\n        \"NNP\"\n    ], \n    \"Harrow\": [\n        \"NNP\"\n    ], \n    \"Abby\": [\n        \"NNP\"\n    ], \n    \"palatable\": [\n        \"JJ\"\n    ], \n    \"Weici\": [\n        \"NNP\"\n    ], \n    \"Origins\": [\n        \"NNP\"\n    ], \n    \"MPl\": [\n        \"NNP\"\n    ], \n    \"Showrooms\": [\n        \"NNS\"\n    ], \n    \"Tigre\": [\n        \"NNP\"\n    ], \n    \"unfrozen\": [\n        \"JJ\"\n    ], \n    \"chin-up\": [\n        \"IN\", \n        \"VB\"\n    ], \n    \"substituted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"yoke\": [\n        \"NN\"\n    ], \n    \"MPs\": [\n        \"NNS\"\n    ], \n    \"OUTRAGE\": [\n        \"NN\"\n    ], \n    \"memorable\": [\n        \"JJ\"\n    ], \n    \"unhealthily\": [\n        \"RB\"\n    ], \n    \"MPD\": [\n        \"NNP\"\n    ], \n    \"Caneli\": [\n        \"NNP\"\n    ], \n    \"Sasser\": [\n        \"NNP\"\n    ], \n    \"globetrotter\": [\n        \"NN\"\n    ], \n    \"MPH\": [\n        \"NNP\"\n    ], \n    \"MPI\": [\n        \"NNP\"\n    ], \n    \"sightseers\": [\n        \"NNS\"\n    ], \n    \"costive\": [\n        \"JJ\"\n    ], \n    \"brain-wracking\": [\n        \"JJ\"\n    ], \n    \"iguanas\": [\n        \"NNS\"\n    ], \n    \"Boulevard\": [\n        \"NNP\"\n    ], \n    \"Knowledge\": [\n        \"NN\"\n    ], \n    \"Hybrid\": [\n        \"NNP\"\n    ], \n    \"well-suited\": [\n        \"JJ\"\n    ], \n    \"respectable\": [\n        \"JJ\"\n    ], \n    \"magazines\": [\n        \"NNS\"\n    ], \n    \"furnishing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"hospice\": [\n        \"NN\"\n    ], \n    \"octogenarians\": [\n        \"NNS\"\n    ], \n    \"Kroller-Muller\": [\n        \"NNP\"\n    ], \n    \"novo\": [\n        \"FW\"\n    ], \n    \"abjectly\": [\n        \"RB\"\n    ], \n    \"Mentz\": [\n        \"NNP\"\n    ], \n    \"Belief\": [\n        \"NN\"\n    ], \n    \"Shawomet\": [\n        \"NNP\"\n    ], \n    \"abstractions\": [\n        \"NNS\"\n    ], \n    \"Belier\": [\n        \"NNP\"\n    ], \n    \"resulted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"on-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"launching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Homestead\": [\n        \"NNP\"\n    ], \n    \"slow-selling\": [\n        \"JJ\"\n    ], \n    \"magnificent\": [\n        \"JJ\"\n    ], \n    \"Karpa\": [\n        \"NNP\"\n    ], \n    \"beech\": [\n        \"NN\"\n    ], \n    \"seven-tenths\": [\n        \"NNS\"\n    ], \n    \"sprinting\": [\n        \"VBG\"\n    ], \n    \"underdeveloped\": [\n        \"JJ\"\n    ], \n    \"handily\": [\n        \"RB\"\n    ], \n    \"Hagura\": [\n        \"NNP\"\n    ], \n    \"Ozagenians\": [\n        \"NNS\"\n    ], \n    \"alone...\": [\n        \":\"\n    ], \n    \"Schubert\": [\n        \"NNP\"\n    ], \n    \"c.i.f\": [\n        \"JJ\"\n    ], \n    \"insincere\": [\n        \"JJ\"\n    ], \n    \"productivity-based\": [\n        \"JJ\"\n    ], \n    \"Biotechnical\": [\n        \"NNP\"\n    ], \n    \"Weinshienk\": [\n        \"NNP\"\n    ], \n    \"megakaryocytic\": [\n        \"JJ\"\n    ], \n    \"hurley\": [\n        \"NN\"\n    ], \n    \"Develop\": [\n        \"VB\"\n    ], \n    \"Ranzer\": [\n        \"NNP\"\n    ], \n    \"senilis\": [\n        \"NNS\"\n    ], \n    \"Calvet\": [\n        \"NNP\"\n    ], \n    \"Salvadorans\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"splotch\": [\n        \"NN\"\n    ], \n    \"sprouts\": [\n        \"NNS\"\n    ], \n    \"whites\": [\n        \"NNS\"\n    ], \n    \"Maya\": [\n        \"FW\"\n    ], \n    \"glacier\": [\n        \"NN\"\n    ], \n    \"Mayo\": [\n        \"NNP\"\n    ], \n    \"Zambrano\": [\n        \"NNP\"\n    ], \n    \"Possible\": [\n        \"JJ\"\n    ], \n    \"Possibly\": [\n        \"RB\"\n    ], \n    \"chauvinists\": [\n        \"NNS\"\n    ], \n    \"anti-nausea\": [\n        \"JJ\"\n    ], \n    \"Mays\": [\n        \"NNP\"\n    ], \n    \"E.B.\": [\n        \"NNP\"\n    ], \n    \"productivity-share\": [\n        \"NN\"\n    ], \n    \"reggae\": [\n        \"NN\"\n    ], \n    \"computer-science\": [\n        \"NN\"\n    ], \n    \"teats\": [\n        \"NNS\"\n    ], \n    \"postmarks\": [\n        \"NNS\"\n    ], \n    \"cleaved\": [\n        \"VBN\"\n    ], \n    \"reruns\": [\n        \"NNS\"\n    ], \n    \"cleaver\": [\n        \"NN\"\n    ], \n    \"entrust\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hygienic\": [\n        \"JJ\"\n    ], \n    \"withstands\": [\n        \"VBZ\"\n    ], \n    \"clattery\": [\n        \"JJ\"\n    ], \n    \"fastened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"highness\": [\n        \"NN\"\n    ], \n    \"rockers\": [\n        \"NNS\"\n    ], \n    \"Gupta\": [\n        \"NNP\"\n    ], \n    \"Colzani\": [\n        \"NNP\"\n    ], \n    \"Reduce\": [\n        \"VB\"\n    ], \n    \"fastener\": [\n        \"NN\"\n    ], \n    \"ironfist\": [\n        \"NN\"\n    ], \n    \"cautioning\": [\n        \"VBG\"\n    ], \n    \"Fossan\": [\n        \"NNP\"\n    ], \n    \"treatises\": [\n        \"NNS\"\n    ], \n    \"breadth\": [\n        \"NN\"\n    ], \n    \"Confectionery\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Castor\": [\n        \"JJ\"\n    ], \n    \"finger-pointing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"incurred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Buffett\": [\n        \"NNP\"\n    ], \n    \"activated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"theaters\": [\n        \"NNS\", \n        \"VBD\"\n    ], \n    \"burgomaster\": [\n        \"NN\"\n    ], \n    \"skiing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Films\": [\n        \"NNS\"\n    ], \n    \"Radio-transmitter\": [\n        \"NN\"\n    ], \n    \"Mafia-tainted\": [\n        \"JJ\"\n    ], \n    \"retrofit\": [\n        \"VB\"\n    ], \n    \"Warranties\": [\n        \"NNS\"\n    ], \n    \"non-enzymatic\": [\n        \"JJ\"\n    ], \n    \"Bahr\": [\n        \"NNP\"\n    ], \n    \"uneven\": [\n        \"JJ\"\n    ], \n    \"methodically\": [\n        \"RB\"\n    ], \n    \"prolonging\": [\n        \"VBG\"\n    ], \n    \"Rosenmueller\": [\n        \"NNP\"\n    ], \n    \"Bahi\": [\n        \"NNP\"\n    ], \n    \"Believe\": [\n        \"VB\"\n    ], \n    \"agnomen\": [\n        \"NN\"\n    ], \n    \"not-less-deadly\": [\n        \"JJ\"\n    ], \n    \"Federalist\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Goncharov\": [\n        \"NNP\"\n    ], \n    \"spate\": [\n        \"NN\"\n    ], \n    \"cataclysmic\": [\n        \"JJ\"\n    ], \n    \"spats\": [\n        \"NNS\"\n    ], \n    \"Heel-Miracle\": [\n        \"NNP\"\n    ], \n    \"Windheim\": [\n        \"NNP\"\n    ], \n    \"Rents\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Recognize\": [\n        \"VB\"\n    ], \n    \"bilges\": [\n        \"NNS\"\n    ], \n    \"leave\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"engrossing\": [\n        \"JJ\"\n    ], \n    \"Xyvision\": [\n        \"NNP\"\n    ], \n    \"eosinophilic\": [\n        \"JJ\"\n    ], \n    \"Renta\": [\n        \"NNP\"\n    ], \n    \"abstrusenesses\": [\n        \"NNS\"\n    ], \n    \"loads\": [\n        \"NNS\"\n    ], \n    \"Suzanne\": [\n        \"NNP\"\n    ], \n    \"spiritual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Loveways\": [\n        \"NNP\"\n    ], \n    \"lounged\": [\n        \"VBD\"\n    ], \n    \"Quotas\": [\n        \"NNS\"\n    ], \n    \"Governmental\": [\n        \"NNP\"\n    ], \n    \"Unspeakable\": [\n        \"JJ\"\n    ], \n    \"Monarch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sigman\": [\n        \"NNP\"\n    ], \n    \"behaviorally\": [\n        \"RB\"\n    ], \n    \"thyroglobulin\": [\n        \"NN\"\n    ], \n    \"Francie\": [\n        \"NNP\"\n    ], \n    \"melt\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Cruz\": [\n        \"NNP\"\n    ], \n    \"lazily\": [\n        \"RB\"\n    ], \n    \"toxic-waste\": [\n        \"NN\"\n    ], \n    \"Francis\": [\n        \"NNP\"\n    ], \n    \"S.O.B.s\": [\n        \"NNS\"\n    ], \n    \"Neusteter\": [\n        \"NNP\"\n    ], \n    \"meld\": [\n        \"VB\"\n    ], \n    \"less-than-dazzling\": [\n        \"JJ\"\n    ], \n    \"jury\": [\n        \"NN\"\n    ], \n    \"Crosson\": [\n        \"NNP\"\n    ], \n    \"virtues\": [\n        \"NNS\"\n    ], \n    \"magnetism\": [\n        \"NN\"\n    ], \n    \"Bargerter\": [\n        \"NNP\"\n    ], \n    \"Veeck\": [\n        \"NNP\"\n    ], \n    \"jure\": [\n        \"FW\"\n    ], \n    \"drug-treatment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"momentous\": [\n        \"JJ\"\n    ], \n    \"systemwide\": [\n        \"JJ\"\n    ], \n    \"passengers\": [\n        \"NNS\"\n    ], \n    \"hurtling\": [\n        \"VBG\"\n    ], \n    \"redemption\": [\n        \"NN\"\n    ], \n    \"fomented\": [\n        \"VBD\"\n    ], \n    \"brilliant\": [\n        \"JJ\"\n    ], \n    \"Thierry\": [\n        \"NNP\"\n    ], \n    \"lighter-than-normal\": [\n        \"JJ\"\n    ], \n    \"absenteeism\": [\n        \"NN\"\n    ], \n    \"Scratching\": [\n        \"VBG\"\n    ], \n    \"Pickman\": [\n        \"NNP\"\n    ], \n    \"misfortunes\": [\n        \"NNS\"\n    ], \n    \"D-marks\": [\n        \"NNS\"\n    ], \n    \"tasks\": [\n        \"NNS\"\n    ], \n    \"WDB\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hagner\": [\n        \"NNP\"\n    ], \n    \"curtailing\": [\n        \"VBG\"\n    ], \n    \"oak-log\": [\n        \"NN\"\n    ], \n    \"Asteria\": [\n        \"NNP\"\n    ], \n    \"overarching\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"raking\": [\n        \"VBG\"\n    ], \n    \"logically\": [\n        \"RB\"\n    ], \n    \"Kroc\": [\n        \"NNP\"\n    ], \n    \"Nennius\": [\n        \"NNP\"\n    ], \n    \"unshirted\": [\n        \"JJ\"\n    ], \n    \"Egon\": [\n        \"NNP\"\n    ], \n    \"Ecuador\": [\n        \"NNP\"\n    ], \n    \"Fractions\": [\n        \"NNS\"\n    ], \n    \"NAEBM\": [\n        \"NNP\"\n    ], \n    \"hoosegow\": [\n        \"NN\"\n    ], \n    \"Billionaire\": [\n        \"NN\"\n    ], \n    \"Unconstitutional\": [\n        \"JJ\"\n    ], \n    \"scops\": [\n        \"NNS\"\n    ], \n    \"papal\": [\n        \"JJ\"\n    ], \n    \"Respectability\": [\n        \"NN\"\n    ], \n    \"Gleeson\": [\n        \"NNP\"\n    ], \n    \"citywide\": [\n        \"JJ\"\n    ], \n    \"scope\": [\n        \"NN\"\n    ], \n    \"Machineries\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"theoretical\": [\n        \"JJ\"\n    ], \n    \"prosecutor\": [\n        \"NN\"\n    ], \n    \"Yuri\": [\n        \"NNP\"\n    ], \n    \"Iwai\": [\n        \"NNP\"\n    ], \n    \"artillery\": [\n        \"NN\"\n    ], \n    \"wallcoverings\": [\n        \"NNS\"\n    ], \n    \"everywhere\": [\n        \"RB\"\n    ], \n    \"Bechhofer\": [\n        \"NNP\"\n    ], \n    \"Achaeans\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Yedisan\": [\n        \"NNP\"\n    ], \n    \"power-sharing\": [\n        \"JJ\"\n    ], \n    \"mascot\": [\n        \"NN\"\n    ], \n    \"Seelbinder\": [\n        \"NNP\"\n    ], \n    \"incited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"caseload\": [\n        \"NN\"\n    ], \n    \"uninsurable\": [\n        \"JJ\"\n    ], \n    \"facilitating\": [\n        \"VBG\"\n    ], \n    \"Stovall\": [\n        \"NNP\"\n    ], \n    \"Lois\": [\n        \"NNP\"\n    ], \n    \"Wizards\": [\n        \"NNPS\"\n    ], \n    \"oversupplied\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"stock-options\": [\n        \"NNS\"\n    ], \n    \"stature\": [\n        \"NN\"\n    ], \n    \"self-censorship\": [\n        \"NN\"\n    ], \n    \"detached\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"gunfire\": [\n        \"NN\"\n    ], \n    \"remitted\": [\n        \"VBN\"\n    ], \n    \"parishes\": [\n        \"NNS\"\n    ], \n    \"Holding\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"highway-safety\": [\n        \"NN\"\n    ], \n    \"Tentative\": [\n        \"JJ\"\n    ], \n    \"capital-assets\": [\n        \"NNS\"\n    ], \n    \"re-establish\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"unanticipated\": [\n        \"JJ\"\n    ], \n    \"Aegon\": [\n        \"NNP\"\n    ], \n    \"gimmickry\": [\n        \"NN\"\n    ], \n    \"DPL\": [\n        \"NNP\"\n    ], \n    \"monitoring\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"grousing\": [\n        \"VBG\"\n    ], \n    \"aide-de-camp\": [\n        \"NN\"\n    ], \n    \"Reuther\": [\n        \"NNP\"\n    ], \n    \"optimal\": [\n        \"JJ\"\n    ], \n    \"GP\": [\n        \"NNP\"\n    ], \n    \"Darwinism\": [\n        \"NNP\"\n    ], \n    \"intergenerational\": [\n        \"JJ\"\n    ], \n    \"Acura\": [\n        \"NNP\"\n    ], \n    \"chaplains\": [\n        \"NNS\"\n    ], \n    \"Buchner\": [\n        \"NNP\"\n    ], \n    \"convoluted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Discussed\": [\n        \"VBN\"\n    ], \n    \"high-energy\": [\n        \"JJ\"\n    ], \n    \"Sensitive\": [\n        \"JJ\"\n    ], \n    \"unclaimed\": [\n        \"JJ\"\n    ], \n    \"jet-engine\": [\n        \"NN\"\n    ], \n    \"improving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"spouted\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"lids\": [\n        \"NNS\"\n    ], \n    \"equilibriums\": [\n        \"NNS\"\n    ], \n    \"natural\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"correlate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"nakedly\": [\n        \"RB\"\n    ], \n    \"biographical\": [\n        \"JJ\"\n    ], \n    \"Connors\": [\n        \"NNP\"\n    ], \n    \"Narver\": [\n        \"NNP\"\n    ], \n    \"basting\": [\n        \"NN\"\n    ], \n    \"Inland\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"media-related\": [\n        \"JJ\"\n    ], \n    \"handguns\": [\n        \"NNS\"\n    ], \n    \"Samuelson\": [\n        \"NNP\"\n    ], \n    \"Islam\": [\n        \"NNP\"\n    ], \n    \"air-defense\": [\n        \"JJ\"\n    ], \n    \"innocuous\": [\n        \"JJ\"\n    ], \n    \"non-bearing\": [\n        \"JJ\"\n    ], \n    \"footstep\": [\n        \"NN\"\n    ], \n    \"Wyoming\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Kulongoski\": [\n        \"NNP\"\n    ], \n    \"pavement-performance\": [\n        \"NN\"\n    ], \n    \"years...\": [\n        \":\"\n    ], \n    \"tendency\": [\n        \"NN\"\n    ], \n    \"middle-management\": [\n        \"JJ\"\n    ], \n    \"splurge\": [\n        \"NN\"\n    ], \n    \"overhaul\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"muses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"nearsighted\": [\n        \"JJ\"\n    ], \n    \"disconcertingly\": [\n        \"RB\"\n    ], \n    \"collegians\": [\n        \"NNS\"\n    ], \n    \"Zhok\": [\n        \"NNP\"\n    ], \n    \"swastika\": [\n        \"NN\"\n    ], \n    \"Marcmann\": [\n        \"NNP\"\n    ], \n    \"renaming\": [\n        \"VBG\"\n    ], \n    \"Buck\": [\n        \"NNP\"\n    ], \n    \"Sister\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"thereby\": [\n        \"RB\"\n    ], \n    \"Gute\": [\n        \"FW\"\n    ], \n    \"nation\": [\n        \"NN\"\n    ], \n    \"amulet\": [\n        \"NN\"\n    ], \n    \"Bucs\": [\n        \"NNP\"\n    ], \n    \"fumed-oak\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MH-60K\": [\n        \"NN\"\n    ], \n    \"twilight\": [\n        \"NN\"\n    ], \n    \"Argyll\": [\n        \"NNP\"\n    ], \n    \"Erfurt\": [\n        \"NNP\"\n    ], \n    \"establishing\": [\n        \"VBG\"\n    ], \n    \"legume\": [\n        \"NN\"\n    ], \n    \"Pruett\": [\n        \"NNP\"\n    ], \n    \"mass-murderer\": [\n        \"NN\"\n    ], \n    \"game-show\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Stanley\": [\n        \"NNP\"\n    ], \n    \"amnesty\": [\n        \"NN\"\n    ], \n    \"roleplayed\": [\n        \"VBN\"\n    ], \n    \"J.L.\": [\n        \"NNP\"\n    ], \n    \"more-selective\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"stalling\": [\n        \"VBG\"\n    ], \n    \"coneheads\": [\n        \"NNS\"\n    ], \n    \"sit-ins\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"gaming\": [\n        \"NN\"\n    ], \n    \"variability\": [\n        \"NN\"\n    ], \n    \"crushing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"freight-bums\": [\n        \"NNS\"\n    ], \n    \"owing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"COLH\": [\n        \"NNP\"\n    ], \n    \"beetle\": [\n        \"NN\"\n    ], \n    \"propitiate\": [\n        \"VB\"\n    ], \n    \"neighbourhood\": [\n        \"NN\"\n    ], \n    \"craftsmanship\": [\n        \"NN\"\n    ], \n    \"Added\": [\n        \"VBD\", \n        \"NNP\", \n        \"VBN\"\n    ], \n    \"barometric\": [\n        \"JJ\"\n    ], \n    \"biochemicals\": [\n        \"NNS\"\n    ], \n    \"Plessey\": [\n        \"NNP\"\n    ], \n    \"commissar\": [\n        \"NN\"\n    ], \n    \"astray\": [\n        \"RB\"\n    ], \n    \"Furnaces\": [\n        \"NNP\"\n    ], \n    \"fourth-largest\": [\n        \"JJ\"\n    ], \n    \"astral\": [\n        \"JJ\"\n    ], \n    \"Holloway\": [\n        \"NNP\"\n    ], \n    \"Barnevik\": [\n        \"NNP\"\n    ], \n    \"siege\": [\n        \"NN\"\n    ], \n    \"secessionists\": [\n        \"NNS\"\n    ], \n    \"instrumentalists\": [\n        \"NNS\"\n    ], \n    \"facsimiles\": [\n        \"NNS\"\n    ], \n    \"disrespect\": [\n        \"NN\"\n    ], \n    \"Arcata\": [\n        \"NNP\"\n    ], \n    \"matchless\": [\n        \"JJ\"\n    ], \n    \"pimps\": [\n        \"NNS\"\n    ], \n    \"backside\": [\n        \"NN\"\n    ], \n    \"undesirably\": [\n        \"RB\"\n    ], \n    \"wanderers\": [\n        \"NNS\"\n    ], \n    \"Brantford\": [\n        \"NNP\"\n    ], \n    \"war-rationed\": [\n        \"JJ\"\n    ], \n    \"Lehmann\": [\n        \"NNP\"\n    ], \n    \"Brazil\": [\n        \"NNP\"\n    ], \n    \"uncommitted\": [\n        \"JJ\"\n    ], \n    \"Ontario\": [\n        \"NNP\"\n    ], \n    \"distal\": [\n        \"JJ\"\n    ], \n    \"Poorest\": [\n        \"JJS\"\n    ], \n    \"Royal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"recusant\": [\n        \"NN\"\n    ], \n    \"Chekhovian\": [\n        \"JJ\"\n    ], \n    \"loss-plagued\": [\n        \"JJ\"\n    ], \n    \"disbelieving\": [\n        \"VBG\"\n    ], \n    \"Gilbraltar\": [\n        \"NNP\"\n    ], \n    \"intermediaries\": [\n        \"NNS\"\n    ], \n    \"Salembier\": [\n        \"NNP\"\n    ], \n    \"Nattily\": [\n        \"RB\"\n    ], \n    \"operable\": [\n        \"JJ\"\n    ], \n    \"Divi\": [\n        \"NNP\"\n    ], \n    \"Patrolman\": [\n        \"NNP\"\n    ], \n    \"restorability\": [\n        \"NN\"\n    ], \n    \"bite\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Mencken\": [\n        \"NNP\"\n    ], \n    \"DieHard\": [\n        \"JJ\"\n    ], \n    \"stuffed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"cito\": [\n        \"FW\"\n    ], \n    \"Anglo\\\\\": [\n        \"JJ\"\n    ], \n    \"bits\": [\n        \"NNS\"\n    ], \n    \"cite\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"slashes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"slasher\": [\n        \"NN\"\n    ], \n    \"sentinels\": [\n        \"NNS\"\n    ], \n    \"Megat\": [\n        \"NNP\"\n    ], \n    \"gratuities\": [\n        \"NNS\"\n    ], \n    \"southbound\": [\n        \"JJ\"\n    ], \n    \"reclaims\": [\n        \"VBZ\"\n    ], \n    \"antic\": [\n        \"JJ\"\n    ], \n    \"slashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kalamazoo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Runcie\": [\n        \"NNP\"\n    ], \n    \"impractical\": [\n        \"JJ\"\n    ], \n    \"bank-debt\": [\n        \"NN\"\n    ], \n    \"depressed\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"yelping\": [\n        \"VBG\"\n    ], \n    \"FAXM\": [\n        \"NNP\"\n    ], \n    \"corruptible\": [\n        \"JJ\"\n    ], \n    \"meat-hungry\": [\n        \"JJ\"\n    ], \n    \"liftoffs\": [\n        \"NNS\"\n    ], \n    \"Businesses\": [\n        \"NNS\"\n    ], \n    \"insurance-industry\": [\n        \"NN\"\n    ], \n    \"counselor\": [\n        \"NN\"\n    ], \n    \"drywall\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"damned\": [\n        \"JJ\", \n        \"VBN\", \n        \"RB\"\n    ], \n    \"depresses\": [\n        \"VBZ\"\n    ], \n    \"dutifully\": [\n        \"RB\"\n    ], \n    \"consumer-price-index\": [\n        \"JJ\"\n    ], \n    \"wheeler-dealers\": [\n        \"NNS\"\n    ], \n    \"alley\": [\n        \"NN\"\n    ], \n    \"Environmentalism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"buried\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"pornography\": [\n        \"NN\"\n    ], \n    \"Spycatcher\": [\n        \"NN\"\n    ], \n    \"Aguiar\": [\n        \"NNP\"\n    ], \n    \"dewars\": [\n        \"NNS\"\n    ], \n    \"peacekeeping\": [\n        \"JJ\"\n    ], \n    \"masse\": [\n        \"FW\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"rumination\": [\n        \"NN\"\n    ], \n    \"beeping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Comstock\": [\n        \"NNP\"\n    ], \n    \"Wagons\": [\n        \"NNS\"\n    ], \n    \"Leemans\": [\n        \"NNP\"\n    ], \n    \"Impressionism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Getting\": [\n        \"VBG\"\n    ], \n    \"syllable\": [\n        \"NN\"\n    ], \n    \"two-run\": [\n        \"JJ\"\n    ], \n    \"compress\": [\n        \"VB\"\n    ], \n    \"rosins\": [\n        \"NNS\"\n    ], \n    \"Boone\": [\n        \"NNP\"\n    ], \n    \"Impressionist\": [\n        \"JJ\"\n    ], \n    \"pro-investment\": [\n        \"JJ\"\n    ], \n    \"inserted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Totalitarianism\": [\n        \"NNP\"\n    ], \n    \"adaptability\": [\n        \"NN\"\n    ], \n    \"byway\": [\n        \"NN\"\n    ], \n    \"pageantry\": [\n        \"NN\"\n    ], \n    \"drive\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Weston\": [\n        \"NNP\"\n    ], \n    \"self-unloading\": [\n        \"JJ\"\n    ], \n    \"Intelsat\": [\n        \"NNP\"\n    ], \n    \"Moonie\": [\n        \"NN\"\n    ], \n    \"liquidity\": [\n        \"NN\"\n    ], \n    \"Dietisa\": [\n        \"NNP\"\n    ], \n    \"honeymooned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"marshalled\": [\n        \"VBD\"\n    ], \n    \"lotus\": [\n        \"NN\"\n    ], \n    \"cross-investing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"peaches\": [\n        \"NNS\"\n    ], \n    \"swathings\": [\n        \"NNS\"\n    ], \n    \"bright\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"north-flowing\": [\n        \"JJ\"\n    ], \n    \"Matsushita-owned\": [\n        \"JJ\"\n    ], \n    \"Deloitte\": [\n        \"NNP\"\n    ], \n    \"scarce\": [\n        \"JJ\"\n    ], \n    \"self-assertive\": [\n        \"JJ\"\n    ], \n    \"kisha-club\": [\n        \"JJ\"\n    ], \n    \"punchy\": [\n        \"JJ\"\n    ], \n    \"journalese\": [\n        \"NN\"\n    ], \n    \"liberation\": [\n        \"NN\"\n    ], \n    \"more-active\": [\n        \"JJ\"\n    ], \n    \"takeoff-warning\": [\n        \"JJ\"\n    ], \n    \"Applied\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"misdemeanor\": [\n        \"NN\"\n    ], \n    \"holdovers\": [\n        \"NNS\"\n    ], \n    \"clang\": [\n        \"NN\"\n    ], \n    \"battalions\": [\n        \"NNS\"\n    ], \n    \"submerge\": [\n        \"VB\"\n    ], \n    \"Fauntleroy\": [\n        \"NNP\"\n    ], \n    \"Menell\": [\n        \"NNP\"\n    ], \n    \"Having\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"burnt-orange\": [\n        \"JJ\"\n    ], \n    \"Churchilliana\": [\n        \"NNPS\"\n    ], \n    \"middle-class\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"workweek\": [\n        \"NN\"\n    ], \n    \"fenders\": [\n        \"NNS\"\n    ], \n    \"success-oriented\": [\n        \"JJ\"\n    ], \n    \"resins\": [\n        \"NNS\"\n    ], \n    \"McCauliffe\": [\n        \"NNP\"\n    ], \n    \"anti-Stalinist\": [\n        \"JJ\"\n    ], \n    \"uncover\": [\n        \"VB\"\n    ], \n    \"Trichieri\": [\n        \"NNP\"\n    ], \n    \"snapback\": [\n        \"NN\"\n    ], \n    \"resiny\": [\n        \"JJ\"\n    ], \n    \"Cecconi\": [\n        \"NNP\"\n    ], \n    \"tibialis\": [\n        \"NNS\"\n    ], \n    \"temperance\": [\n        \"NN\"\n    ], \n    \"softies\": [\n        \"NNS\"\n    ], \n    \"arouses\": [\n        \"VBZ\"\n    ], \n    \"Bocas\": [\n        \"NNP\"\n    ], \n    \"Fraction\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"overflowed\": [\n        \"VBD\"\n    ], \n    \"Anti-American\": [\n        \"JJ\"\n    ], \n    \"aroused\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"N.Y.U.\": [\n        \"NNP\"\n    ], \n    \"Gluck\": [\n        \"NNP\"\n    ], \n    \"appellate-court\": [\n        \"NN\"\n    ], \n    \"mutton\": [\n        \"NN\"\n    ], \n    \"inequalities\": [\n        \"NNS\"\n    ], \n    \"basileis\": [\n        \"NNS\"\n    ], \n    \"compounds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"TRUE\": [\n        \"JJ\"\n    ], \n    \"less-developed-country\": [\n        \"JJ\"\n    ], \n    \"representatives\": [\n        \"NNS\"\n    ], \n    \"Allstate\": [\n        \"NNP\"\n    ], \n    \"sable\": [\n        \"NN\"\n    ], \n    \"Instructor\": [\n        \"NNP\"\n    ], \n    \"dark-brown\": [\n        \"JJ\"\n    ], \n    \"pitiless\": [\n        \"JJ\"\n    ], \n    \"screed\": [\n        \"NN\"\n    ], \n    \"screen\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"half-turned\": [\n        \"JJ\"\n    ], \n    \"steroid\": [\n        \"JJ\"\n    ], \n    \"matures\": [\n        \"VBZ\"\n    ], \n    \"Xiang\": [\n        \"NNP\"\n    ], \n    \"Southmark-sponsored\": [\n        \"JJ\"\n    ], \n    \"small-boat\": [\n        \"NN\"\n    ], \n    \"coolheaded\": [\n        \"JJ\"\n    ], \n    \"puerile\": [\n        \"JJ\"\n    ], \n    \"Spangled\": [\n        \"NNP\"\n    ], \n    \"parapet\": [\n        \"NN\"\n    ], \n    \"Spider\": [\n        \"NNP\"\n    ], \n    \"best-managed\": [\n        \"JJ\"\n    ], \n    \"Ortegas\": [\n        \"NNPS\"\n    ], \n    \"Orleans-based\": [\n        \"JJ\"\n    ], \n    \"riddle\": [\n        \"NN\"\n    ], \n    \"politico-plaintiffs\": [\n        \"NNS\"\n    ], \n    \"pastimes\": [\n        \"NNS\"\n    ], \n    \"extravagantly\": [\n        \"RB\"\n    ], \n    \"Maroc\": [\n        \"NNP\"\n    ], \n    \"Maroy\": [\n        \"NNP\"\n    ], \n    \"amateurishness\": [\n        \"NN\"\n    ], \n    \"Hagoshrim\": [\n        \"NNP\"\n    ], \n    \"Riverside\": [\n        \"NNP\"\n    ], \n    \"considers\": [\n        \"VBZ\"\n    ], \n    \"panics\": [\n        \"NNS\"\n    ], \n    \"RECENT\": [\n        \"JJ\"\n    ], \n    \"cramps\": [\n        \"NNS\"\n    ], \n    \"Humberto\": [\n        \"NNP\"\n    ], \n    \"commission-driven\": [\n        \"JJ\"\n    ], \n    \"go-go-go\": [\n        \"NN\"\n    ], \n    \"Allumettes\": [\n        \"NNP\"\n    ], \n    \"Sherblom\": [\n        \"NNP\"\n    ], \n    \"fiveyear\": [\n        \"JJ\"\n    ], \n    \"receded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"braving\": [\n        \"VBG\"\n    ], \n    \"DANIEL\": [\n        \"NNP\"\n    ], \n    \"mutilating\": [\n        \"VBG\"\n    ], \n    \"needlelike\": [\n        \"JJ\"\n    ], \n    \"Thirty-fourth\": [\n        \"NNP\"\n    ], \n    \"Dai-ichi\": [\n        \"NNP\"\n    ], \n    \"luxury-suite\": [\n        \"NN\"\n    ], \n    \"curbing\": [\n        \"VBG\"\n    ], \n    \"Districts\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"communique\": [\n        \"NN\"\n    ], \n    \"Wailbri\": [\n        \"NNP\"\n    ], \n    \"psychotherapy\": [\n        \"NN\"\n    ], \n    \"calligraphy\": [\n        \"NN\"\n    ], \n    \"dropouts\": [\n        \"NNS\"\n    ], \n    \"Round\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Walther\": [\n        \"NNP\"\n    ], \n    \"wherewithal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"RUN\": [\n        \"NNP\"\n    ], \n    \"Goodrich\": [\n        \"NNP\"\n    ], \n    \"MORTGAGE\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"consultant\": [\n        \"NN\"\n    ], \n    \"pettiness\": [\n        \"NN\"\n    ], \n    \"Ziff-Davis\": [\n        \"NNP\"\n    ], \n    \"vis-a-vis\": [\n        \"FW\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"endures\": [\n        \"VBZ\"\n    ], \n    \"conveyance\": [\n        \"NN\"\n    ], \n    \"policies\": [\n        \"NNS\"\n    ], \n    \"mono\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"endured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"seepage\": [\n        \"NN\"\n    ], \n    \"cartelized\": [\n        \"VBN\"\n    ], \n    \"croaked\": [\n        \"VBD\"\n    ], \n    \"gay-student\": [\n        \"JJ\"\n    ], \n    \"purse\": [\n        \"NN\"\n    ], \n    \"croaker\": [\n        \"NN\"\n    ], \n    \"Calculations\": [\n        \"NNS\"\n    ], \n    \"S.C.-based\": [\n        \"JJ\"\n    ], \n    \"spooked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cost-sharing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hanley\": [\n        \"NNP\"\n    ], \n    \"research-based\": [\n        \"JJ\"\n    ], \n    \"PageAmerica\": [\n        \"NNP\"\n    ], \n    \"Pocklington\": [\n        \"NNP\"\n    ], \n    \"perpetually\": [\n        \"RB\"\n    ], \n    \"essayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"day-even\": [\n        \"NN\"\n    ], \n    \"enrich\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"stoneware\": [\n        \"NN\"\n    ], \n    \"nonminority\": [\n        \"NN\"\n    ], \n    \"homophobia\": [\n        \"NN\"\n    ], \n    \"homophobic\": [\n        \"JJ\"\n    ], \n    \"sterling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Arsenio\": [\n        \"NNP\"\n    ], \n    \"Geraldine\": [\n        \"NNP\"\n    ], \n    \"structurally\": [\n        \"RB\"\n    ], \n    \"Dockweiler\": [\n        \"NNP\"\n    ], \n    \"organization-position\": [\n        \"JJ\"\n    ], \n    \"around...\": [\n        \":\"\n    ], \n    \"Public-spirited\": [\n        \"JJ\"\n    ], \n    \"%\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"SYM\"\n    ], \n    \"Eichof\": [\n        \"NNP\"\n    ], \n    \"Vroman\": [\n        \"NNP\"\n    ], \n    \"Physics\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Owl\": [\n        \"NN\"\n    ], \n    \"Own\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Superintendent\": [\n        \"NNP\"\n    ], \n    \"volcanoes\": [\n        \"NNS\"\n    ], \n    \"Raynal\": [\n        \"NNP\"\n    ], \n    \"idiotically\": [\n        \"RB\"\n    ], \n    \"Countrymen\": [\n        \"NNPS\"\n    ], \n    \"Markovitz\": [\n        \"NNP\"\n    ], \n    \"Slims\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"automotive-industry\": [\n        \"NN\"\n    ], \n    \"big-ticket\": [\n        \"JJ\"\n    ], \n    \"Ostentatious\": [\n        \"JJ\"\n    ], \n    \"rest\": [\n        \"NN\", \n        \"VBP\", \n        \"VB|NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Zhongshan\": [\n        \"NNP\"\n    ], \n    \"Jingoism\": [\n        \"NN\"\n    ], \n    \"city-owned\": [\n        \"JJ\"\n    ], \n    \"BUELL\": [\n        \"NNP\"\n    ], \n    \"Jacksonian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rolled\": [\n        \"VBN\"\n    ], \n    \"Advice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dame-Michigan\": [\n        \"NNP\"\n    ], \n    \"Mulberry\": [\n        \"NNP\"\n    ], \n    \"silver\": [\n        \"NN\", \n        \"JJ\", \n        \"JJR\"\n    ], \n    \"contesting\": [\n        \"VBG\"\n    ], \n    \"dryly\": [\n        \"RB\"\n    ], \n    \"usurious\": [\n        \"JJ\"\n    ], \n    \"stopwatch\": [\n        \"NN\"\n    ], \n    \"potash\": [\n        \"NN\"\n    ], \n    \"ebullient\": [\n        \"JJ\"\n    ], \n    \"Roller\": [\n        \"NNP\"\n    ], \n    \"transmuted\": [\n        \"VBN\"\n    ], \n    \"tunelessly\": [\n        \"RB\"\n    ], \n    \"crusty\": [\n        \"JJ\"\n    ], \n    \"counteracting\": [\n        \"VBG\"\n    ], \n    \"Aung\": [\n        \"NNP\"\n    ], \n    \"bobby-soxer\": [\n        \"NN\"\n    ], \n    \"crusts\": [\n        \"NNS\"\n    ], \n    \"dart\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"dark\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Verstandig\": [\n        \"NNP\"\n    ], \n    \"Aunt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"darn\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"vacuum\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"snare\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"dare\": [\n        \"VB\", \n        \"VBP\", \n        \"MD\", \n        \"NN\"\n    ], \n    \"Shari\": [\n        \"NNP\"\n    ], \n    \"parent-child\": [\n        \"JJ\"\n    ], \n    \"agents-in-training\": [\n        \"NNS\"\n    ], \n    \"malignancy\": [\n        \"NN\"\n    ], \n    \"Share\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"Contemporary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ruckdeschel\": [\n        \"NNP\"\n    ], \n    \"Zicklin\": [\n        \"NNP\"\n    ], \n    \"Riese\": [\n        \"NNP\"\n    ], \n    \"expository\": [\n        \"JJ\"\n    ], \n    \"Sharp\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"intestinal\": [\n        \"JJ\"\n    ], \n    \"Ter.\": [\n        \"NN\"\n    ], \n    \"landowner\": [\n        \"NN\"\n    ], \n    \"crabbed\": [\n        \"JJ\"\n    ], \n    \"Oafid\": [\n        \"NNP\"\n    ], \n    \"pickled\": [\n        \"JJ\"\n    ], \n    \"Controls\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"supplementary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Geoffrey\": [\n        \"NNP\"\n    ], \n    \"malposed\": [\n        \"JJ\"\n    ], \n    \"Troeltsch\": [\n        \"NNP\"\n    ], \n    \"pickles\": [\n        \"NNS\"\n    ], \n    \"Apar\": [\n        \"NNP\"\n    ], \n    \"scholarships\": [\n        \"NNS\"\n    ], \n    \"Bully\": [\n        \"VB\"\n    ], \n    \"symbiotic\": [\n        \"JJ\"\n    ], \n    \"Answers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Bulls\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"premium-priced\": [\n        \"JJ\"\n    ], \n    \"full-page\": [\n        \"JJ\"\n    ], \n    \"lockout\": [\n        \"NN\"\n    ], \n    \"Refugee\": [\n        \"NNP\"\n    ], \n    \"refer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Mochida\": [\n        \"NNP\"\n    ], \n    \"biased\": [\n        \"VBN\"\n    ], \n    \"Moccasin\": [\n        \"NNP\"\n    ], \n    \"industrialized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Gimpy\": [\n        \"NNP\"\n    ], \n    \"acquisition...\": [\n        \":\"\n    ], \n    \"biases\": [\n        \"NNS\"\n    ], \n    \"marchin\": [\n        \"NN\"\n    ], \n    \"throwback\": [\n        \"NN\"\n    ], \n    \"punishments\": [\n        \"NNS\"\n    ], \n    \"slatted\": [\n        \"JJ\"\n    ], \n    \"Hazell\": [\n        \"NNP\"\n    ], \n    \"Fighter\": [\n        \"NNP\"\n    ], \n    \"package\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Stena-Tiphook\": [\n        \"NNP\"\n    ], \n    \"person-to-person\": [\n        \"JJ\"\n    ], \n    \"Dorrance\": [\n        \"NNP\"\n    ], \n    \"fraying\": [\n        \"VBG\"\n    ], \n    \"Regretfully\": [\n        \"RB\"\n    ], \n    \"Stalker\": [\n        \"NNP\"\n    ], \n    \"Xerox\": [\n        \"NNP\"\n    ], \n    \"Meharry\": [\n        \"NNP\"\n    ], \n    \"hard-liners\": [\n        \"NNS\"\n    ], \n    \"Matchett\": [\n        \"NNP\"\n    ], \n    \"Duplicate\": [\n        \"NN\"\n    ], \n    \"extramarital\": [\n        \"JJ\"\n    ], \n    \"apologize\": [\n        \"VB\"\n    ], \n    \"portrayal\": [\n        \"NN\"\n    ], \n    \"incanted\": [\n        \"VBD\"\n    ], \n    \"Flaxseed\": [\n        \"NN\"\n    ], \n    \"married-couple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bond-rating\": [\n        \"JJ\"\n    ], \n    \"Ogallala\": [\n        \"NNP\"\n    ], \n    \"X-rays\": [\n        \"NNS\"\n    ], \n    \"Malraux\": [\n        \"NNP\"\n    ], \n    \"flash-cubes\": [\n        \"NNS\"\n    ], \n    \"betrays\": [\n        \"VBZ\"\n    ], \n    \"lapsing\": [\n        \"VBG\"\n    ], \n    \"garment\": [\n        \"NN\"\n    ], \n    \"espousal\": [\n        \"NN\"\n    ], \n    \"slopes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"tireless\": [\n        \"JJ\"\n    ], \n    \"masquerades\": [\n        \"VBZ\"\n    ], \n    \"survives\": [\n        \"VBZ\"\n    ], \n    \"death-backed\": [\n        \"JJ\"\n    ], \n    \"Stevie\": [\n        \"NNP\"\n    ], \n    \"Breweries\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Eastwick\": [\n        \"NNP\"\n    ], \n    \"beginners\": [\n        \"NNS\"\n    ], \n    \"follicular\": [\n        \"JJ\"\n    ], \n    \"Microamerica\": [\n        \"NNP\"\n    ], \n    \"survived\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Breasted\": [\n        \"NNP\"\n    ], \n    \"French-English\": [\n        \"NNP\"\n    ], \n    \"housewives\": [\n        \"NNS\"\n    ], \n    \"Greensboro\": [\n        \"NNP\"\n    ], \n    \"amplify\": [\n        \"VB\"\n    ], \n    \"anti-infective\": [\n        \"JJ\"\n    ], \n    \"robustness\": [\n        \"NN\"\n    ], \n    \"Cabria\": [\n        \"NNP\"\n    ], \n    \"impute\": [\n        \"VBP\"\n    ], \n    \"hydrochlorothiazide\": [\n        \"NN\"\n    ], \n    \"in-kind\": [\n        \"JJ\"\n    ], \n    \"blinks\": [\n        \"VBZ\"\n    ], \n    \"Klauer\": [\n        \"NNP\"\n    ], \n    \"citizenship\": [\n        \"NN\"\n    ], \n    \"fright\": [\n        \"NN\"\n    ], \n    \"pinpointed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"turf-care\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hatters\": [\n        \"NNP\"\n    ], \n    \"straightens\": [\n        \"VBZ\"\n    ], \n    \"Camille\": [\n        \"NNP\"\n    ], \n    \"catchup\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Camilla\": [\n        \"NNP\"\n    ], \n    \"Accept\": [\n        \"VB\"\n    ], \n    \"Rahill\": [\n        \"NNP\"\n    ], \n    \"Camillo\": [\n        \"NNP\"\n    ], \n    \"Camilli\": [\n        \"NNP\"\n    ], \n    \"angelica\": [\n        \"NN\"\n    ], \n    \"Eurocom\": [\n        \"NNP\"\n    ], \n    \"Atlantis\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"long-tenured\": [\n        \"JJ\"\n    ], \n    \"Readily\": [\n        \"RB\"\n    ], \n    \"sanguine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"aromatic\": [\n        \"JJ\"\n    ], \n    \"tight\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Watson\": [\n        \"NNP\"\n    ], \n    \"Atlantic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"incomprehensible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"engineering-design\": [\n        \"JJ\"\n    ], \n    \"Wainaina\": [\n        \"NNP\"\n    ], \n    \"Walcott\": [\n        \"NNP\"\n    ], \n    \"narco\": [\n        \"NN\"\n    ], \n    \"Welko\": [\n        \"NNP\"\n    ], \n    \"remounting\": [\n        \"VBG\"\n    ], \n    \"terra\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Certus\": [\n        \"NNP\"\n    ], \n    \"Luehrs\": [\n        \"NNP\"\n    ], \n    \"terry\": [\n        \"NN\"\n    ], \n    \"unanimous\": [\n        \"JJ\"\n    ], \n    \"KSI\": [\n        \"NNP\"\n    ], \n    \"eight-time\": [\n        \"JJ\"\n    ], \n    \"partitioned\": [\n        \"VBN\"\n    ], \n    \"waived\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Degas\": [\n        \"NNP\"\n    ], \n    \"Direct\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Diasonics\": [\n        \"NNP\"\n    ], \n    \"sawing\": [\n        \"NN\"\n    ], \n    \"sensibility\": [\n        \"NN\"\n    ], \n    \"waiver\": [\n        \"NN\"\n    ], \n    \"waives\": [\n        \"VBZ\"\n    ], \n    \"retch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"gingham\": [\n        \"NN\"\n    ], \n    \"large-volume\": [\n        \"JJ\"\n    ], \n    \"eight-page\": [\n        \"JJ\"\n    ], \n    \"vertical-restraint\": [\n        \"JJ\"\n    ], \n    \"debris\": [\n        \"NN\"\n    ], \n    \"Villard\": [\n        \"NNP\"\n    ], \n    \"restated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"directorship\": [\n        \"NN\"\n    ], \n    \"policeman-murderer\": [\n        \"NN\"\n    ], \n    \"two-record\": [\n        \"JJ\"\n    ], \n    \"stored-up\": [\n        \"JJ\"\n    ], \n    \"tinsel\": [\n        \"NN\"\n    ], \n    \"squeal\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"tv\": [\n        \"NN\"\n    ], \n    \"Kuparuk\": [\n        \"NNP\"\n    ], \n    \"borderlands\": [\n        \"NNS\"\n    ], \n    \"Non-bank\": [\n        \"JJ\"\n    ], \n    \"to\": [\n        \"TO\", \n        \"RB\"\n    ], \n    \"tail\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"th\": [\n        \"DT\", \n        \"NN\"\n    ], \n    \"shipload\": [\n        \"NN\"\n    ], \n    \"Arturo\": [\n        \"NNP\"\n    ], \n    \"Garvey\": [\n        \"NNP\"\n    ], \n    \"Morikawa\": [\n        \"NNP\"\n    ], \n    \"zapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Beebes\": [\n        \"NNPS\"\n    ], \n    \"blockade\": [\n        \"NN\"\n    ], \n    \"corollary\": [\n        \"NN\"\n    ], \n    \"FAA\": [\n        \"NNP\"\n    ], \n    \"Sohn\": [\n        \"NNP\"\n    ], \n    \"Soho\": [\n        \"NNP\"\n    ], \n    \"Belge\": [\n        \"NNP\"\n    ], \n    \"falsifying\": [\n        \"VBG\"\n    ], \n    \"Frequent\": [\n        \"JJ\"\n    ], \n    \"Cogen\": [\n        \"NNP\"\n    ], \n    \"Copper\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"parliaments\": [\n        \"NNS\"\n    ], \n    \"hooking\": [\n        \"VBG\"\n    ], \n    \"cable\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"rusting\": [\n        \"JJ\"\n    ], \n    \"heist\": [\n        \"NN\"\n    ], \n    \"rosy-fingered\": [\n        \"JJ\"\n    ], \n    \"joined\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"art-historian\": [\n        \"NN\"\n    ], \n    \"millimeters\": [\n        \"NNS\"\n    ], \n    \"drahve\": [\n        \"VB\"\n    ], \n    \"fifty-odd\": [\n        \"JJ\"\n    ], \n    \"methodical\": [\n        \"JJ\"\n    ], \n    \"Reagan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Inamori\": [\n        \"NNP\"\n    ], \n    \"Flatiron\": [\n        \"NN\"\n    ], \n    \"supression\": [\n        \"NN\"\n    ], \n    \"Lawrenson\": [\n        \"NNP\"\n    ], \n    \"crystallography\": [\n        \"NN\"\n    ], \n    \"half-understood\": [\n        \"JJ\"\n    ], \n    \"Drury\": [\n        \"NNP\"\n    ], \n    \"assured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Crockett\": [\n        \"NNP\"\n    ], \n    \"trend-setters\": [\n        \"NNS\"\n    ], \n    \"Euronotes\": [\n        \"NNS\"\n    ], \n    \"Commission.\": [\n        \"NNP\"\n    ], \n    \"Ferguson\": [\n        \"NNP\"\n    ], \n    \"scientists\": [\n        \"NNS\"\n    ], \n    \"Jodi\": [\n        \"NNP\"\n    ], \n    \"frequency,``\": [\n        \"``\"\n    ], \n    \"Chans\": [\n        \"NNS\"\n    ], \n    \"Broyd\": [\n        \"NNP\"\n    ], \n    \"attractant\": [\n        \"NN\"\n    ], \n    \"Tartuffe\": [\n        \"NNP\"\n    ], \n    \"midpoint\": [\n        \"NN\"\n    ], \n    \"implantable\": [\n        \"JJ\"\n    ], \n    \"Finland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"lobbyist\": [\n        \"NN\"\n    ], \n    \"corniest\": [\n        \"JJS\"\n    ], \n    \"legend\": [\n        \"NN\"\n    ], \n    \"Silence\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"world-view\": [\n        \"NN\"\n    ], \n    \"bulged\": [\n        \"VBD\"\n    ], \n    \"trailblazing\": [\n        \"VBG\"\n    ], \n    \"Commissions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Gruss\": [\n        \"NNP\"\n    ], \n    \"travails\": [\n        \"NNS\"\n    ], \n    \"emulator\": [\n        \"NN\"\n    ], \n    \"Seeley\": [\n        \"NNP\"\n    ], \n    \"murdering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"rummaging\": [\n        \"JJ\"\n    ], \n    \"Nemeth\": [\n        \"NNP\"\n    ], \n    \"funds-management\": [\n        \"NN\"\n    ], \n    \"all-victorious\": [\n        \"JJ\"\n    ], \n    \"triple-tank\": [\n        \"JJ\"\n    ], \n    \"directionlessness\": [\n        \"NN\"\n    ], \n    \"numerology\": [\n        \"NN\"\n    ], \n    \"sherbet\": [\n        \"NN\"\n    ], \n    \"Placing\": [\n        \"VBG\"\n    ], \n    \"Canton\": [\n        \"NNP\"\n    ], \n    \"Cantor\": [\n        \"NNP\"\n    ], \n    \"compact-car\": [\n        \"NN\"\n    ], \n    \"gosh\": [\n        \"UH\"\n    ], \n    \"Willmott\": [\n        \"NNP\"\n    ], \n    \"Shiite\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Willoughby\": [\n        \"NNP\"\n    ], \n    \"casket\": [\n        \"NN\"\n    ], \n    \"hassles\": [\n        \"NNS\"\n    ], \n    \"Parisina\": [\n        \"NNP\"\n    ], \n    \"Director-General\": [\n        \"NNP\"\n    ], \n    \"moon-drenched\": [\n        \"JJ\"\n    ], \n    \"Hoe-Down\": [\n        \"NNP\"\n    ], \n    \"pears\": [\n        \"NNS\"\n    ], \n    \"pearl\": [\n        \"NN\"\n    ], \n    \"zappers\": [\n        \"NNS\"\n    ], \n    \"breaches\": [\n        \"NNS\"\n    ], \n    \"quickstep\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"gorgeous\": [\n        \"JJ\"\n    ], \n    \"whalesized\": [\n        \"JJ\"\n    ], \n    \"multi-lingual\": [\n        \"JJ\"\n    ], \n    \"befitting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"portrayals\": [\n        \"NNS\"\n    ], \n    \"batsman\": [\n        \"NN\"\n    ], \n    \"Congregationalists\": [\n        \"NNS\"\n    ], \n    \"big-name\": [\n        \"JJ\"\n    ], \n    \"spoon-fed\": [\n        \"JJ\"\n    ], \n    \"Timbuktu\": [\n        \"NNP\"\n    ], \n    \"Aghanistan\": [\n        \"NNP\"\n    ], \n    \"CRIME\": [\n        \"NN\"\n    ], \n    \"eatable\": [\n        \"JJ\"\n    ], \n    \"Integra\": [\n        \"NNP\"\n    ], \n    \"sizing\": [\n        \"NN\"\n    ], \n    \"fleece\": [\n        \"NN\"\n    ], \n    \"enlightenment\": [\n        \"NN\"\n    ], \n    \"caliche-topped\": [\n        \"JJ\"\n    ], \n    \"Cathedral\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ingredient\": [\n        \"NN\"\n    ], \n    \"Your\": [\n        \"PRP$\", \n        \"NNP\"\n    ], \n    \"seismological\": [\n        \"JJ\"\n    ], \n    \"eardrums\": [\n        \"NNS\"\n    ], \n    \"antagonists\": [\n        \"NNS\"\n    ], \n    \"scan\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Mouchet\": [\n        \"NNP\"\n    ], \n    \"scab\": [\n        \"NN\"\n    ], \n    \"suggestions\": [\n        \"NNS\"\n    ], \n    \"unbiased\": [\n        \"JJ\"\n    ], \n    \"fiercely\": [\n        \"RB\"\n    ], \n    \"Dylan-influenced\": [\n        \"JJ\"\n    ], \n    \"birch-paneled\": [\n        \"JJ\"\n    ], \n    \"commanded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"schoolgirl\": [\n        \"NN\"\n    ], \n    \"bided\": [\n        \"VBN\"\n    ], \n    \"Paisley\": [\n        \"NNP\"\n    ], \n    \"scoundrels\": [\n        \"NNS\"\n    ], \n    \"imminent\": [\n        \"JJ\"\n    ], \n    \"deal-making\": [\n        \"NN\"\n    ], \n    \"conventioners\": [\n        \"NNS\"\n    ], \n    \"cajole\": [\n        \"VB\"\n    ], \n    \"All-Union\": [\n        \"NNP\"\n    ], \n    \"AIB\": [\n        \"NNP\"\n    ], \n    \"docudramas\": [\n        \"NNS\"\n    ], \n    \"secularist\": [\n        \"NN\"\n    ], \n    \"Orondo\": [\n        \"NNP\"\n    ], \n    \"Isis\": [\n        \"NNP\"\n    ], \n    \"treatments\": [\n        \"NNS\"\n    ], \n    \"unsound\": [\n        \"JJ\"\n    ], \n    \"Gilchrist\": [\n        \"NNP\"\n    ], \n    \"authentic\": [\n        \"JJ\"\n    ], \n    \"Orso\": [\n        \"NNP\"\n    ], \n    \"knockoffs\": [\n        \"NNS\"\n    ], \n    \"scoreboards\": [\n        \"NNS\"\n    ], \n    \"register\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"volleyball\": [\n        \"NN\"\n    ], \n    \"open-checkbook\": [\n        \"NN\"\n    ], \n    \"blacklisting\": [\n        \"NN\"\n    ], \n    \"fundamental\": [\n        \"JJ\"\n    ], \n    \"saccharin\": [\n        \"NN\"\n    ], \n    \"anti-Negro\": [\n        \"JJ\"\n    ], \n    \"adorned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Creek-Turn\": [\n        \"JJ\"\n    ], \n    \"Purple\": [\n        \"NNP\"\n    ], \n    \"staginess\": [\n        \"NN\"\n    ], \n    \"Appalachia\": [\n        \"NNP\"\n    ], \n    \"Aeschbacher\": [\n        \"NNP\"\n    ], \n    \"brim\": [\n        \"NN\"\n    ], \n    \"levamisole\": [\n        \"NN\"\n    ], \n    \"turbine\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"brig\": [\n        \"NN\"\n    ], \n    \"brie\": [\n        \"NN\"\n    ], \n    \"Egils\": [\n        \"NNP\"\n    ], \n    \"Transatlantic\": [\n        \"NNP\"\n    ], \n    \"get-tough\": [\n        \"JJ\"\n    ], \n    \"nifty\": [\n        \"JJ\"\n    ], \n    \"scribes\": [\n        \"NNS\"\n    ], \n    \"Sound\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBZ\"\n    ], \n    \"Resolve\": [\n        \"NNP\"\n    ], \n    \"Pawtuxet\": [\n        \"NNP\"\n    ], \n    \"subtitled\": [\n        \"VBN\"\n    ], \n    \"Fifield\": [\n        \"NNP\"\n    ], \n    \"high-strung\": [\n        \"JJ\"\n    ], \n    \"subtitles\": [\n        \"NNS\"\n    ], \n    \"cash-interest\": [\n        \"JJ\"\n    ], \n    \"Elliot\": [\n        \"NNP\"\n    ], \n    \"nugget\": [\n        \"NN\"\n    ], \n    \"ocean-thermal\": [\n        \"JJ\"\n    ], \n    \"assemblies\": [\n        \"NNS\"\n    ], \n    \"Katow\": [\n        \"NNP\"\n    ], \n    \"vitriol\": [\n        \"NN\"\n    ], \n    \"Prodigall\": [\n        \"NNP\"\n    ], \n    \"Silverstein\": [\n        \"NNP\"\n    ], \n    \"aggrieved\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"impersonation\": [\n        \"NN\"\n    ], \n    \"flaxseed\": [\n        \"NN\"\n    ], \n    \"energetically\": [\n        \"RB\"\n    ], \n    \"Osaka\": [\n        \"NNP\"\n    ], \n    \"investigators\": [\n        \"NNS\"\n    ], \n    \"Amperex\": [\n        \"NNP\"\n    ], \n    \"upstairs\": [\n        \"NN\", \n        \"RB\", \n        \"JJ\"\n    ], \n    \"noble\": [\n        \"JJ\", \n        \"FW\"\n    ], \n    \"slowdown\": [\n        \"NN\"\n    ], \n    \"composer-in-residence\": [\n        \"NN\"\n    ], \n    \"hemispheric\": [\n        \"JJ\"\n    ], \n    \"lease-rental\": [\n        \"JJ\"\n    ], \n    \"measurement\": [\n        \"NN\"\n    ], \n    \"megaquestions\": [\n        \"NNS\"\n    ], \n    \"ATS\\\\\": [\n        \"NNP\"\n    ], \n    \"Crossman\": [\n        \"NNP\"\n    ], \n    \"morale-damaging\": [\n        \"JJ\"\n    ], \n    \"candlelight\": [\n        \"NN\"\n    ], \n    \"revisionists\": [\n        \"NNS\"\n    ], \n    \"Sunbury\": [\n        \"NNP\"\n    ], \n    \"sociological\": [\n        \"JJ\"\n    ], \n    \"finned\": [\n        \"VBN\"\n    ], \n    \"punches\": [\n        \"NNS\"\n    ], \n    \"tensional\": [\n        \"JJ\"\n    ], \n    \"plotting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"patent-sharing\": [\n        \"JJ\"\n    ], \n    \"Manion\": [\n        \"NNP\"\n    ], \n    \"Bandler\": [\n        \"NNP\"\n    ], \n    \"SHV\": [\n        \"NNP\"\n    ], \n    \"calumniated\": [\n        \"VBN\"\n    ], \n    \"Thirty-month\": [\n        \"NNP\"\n    ], \n    \"eighty-year-old\": [\n        \"JJ\"\n    ], \n    \"no-no\": [\n        \"NN\"\n    ], \n    \"Beseler\": [\n        \"NNP\"\n    ], \n    \"Historical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"rises\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Strings\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"surface-to-air\": [\n        \"JJ\"\n    ], \n    \"Stingers\": [\n        \"NNPS\"\n    ], \n    \"albatross\": [\n        \"NN\"\n    ], \n    \"Dai-Ichi\": [\n        \"NNP\"\n    ], \n    \"paper-clip\": [\n        \"NN\"\n    ], \n    \"sicker\": [\n        \"JJR\"\n    ], \n    \"Bozell\": [\n        \"NNP\"\n    ], \n    \"elective\": [\n        \"JJ\"\n    ], \n    \"macrocrystalline\": [\n        \"NN\"\n    ], \n    \"advertiser-bankrolled\": [\n        \"JJ\"\n    ], \n    \"engagement\": [\n        \"NN\"\n    ], \n    \"willies\": [\n        \"NNS\"\n    ], \n    \"Panny\": [\n        \"NNP\"\n    ], \n    \"unusable\": [\n        \"JJ\"\n    ], \n    \"feeder\": [\n        \"NN\"\n    ], \n    \"equity-like\": [\n        \"JJ\"\n    ], \n    \"spiritually\": [\n        \"RB\"\n    ], \n    \"housewares\": [\n        \"NNS\"\n    ], \n    \"anonymity\": [\n        \"NN\"\n    ], \n    \"glitter\": [\n        \"NN\"\n    ], \n    \"Consisting\": [\n        \"VBG\"\n    ], \n    \"treament\": [\n        \"NN\"\n    ], \n    \"inapplicable\": [\n        \"JJ\"\n    ], \n    \"Alun-Jones\": [\n        \"NNP\"\n    ], \n    \"telecines\": [\n        \"NNS\"\n    ], \n    \"introduction\": [\n        \"NN\"\n    ], \n    \"Plaude\": [\n        \"NNP\"\n    ], \n    \"Vladilen\": [\n        \"NNP\"\n    ], \n    \"Cabernet\": [\n        \"NNP\"\n    ], \n    \"uncomfortably\": [\n        \"RB\"\n    ], \n    \"elaboration\": [\n        \"NN\"\n    ], \n    \"gnash\": [\n        \"VB\"\n    ], \n    \"oil-service\": [\n        \"NN\"\n    ], \n    \"broad-brimmed\": [\n        \"JJ\"\n    ], \n    \"Heilman\": [\n        \"NNP\"\n    ], \n    \"Gallitzin\": [\n        \"NNP\"\n    ], \n    \"Hijet\": [\n        \"NNP\"\n    ], \n    \"Ansley\": [\n        \"NNP\"\n    ], \n    \"reverential\": [\n        \"JJ\"\n    ], \n    \"Often\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"pre-registered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"spavined\": [\n        \"JJ\"\n    ], \n    \"Lyford\": [\n        \"NNP\"\n    ], \n    \"derailing\": [\n        \"VBG\"\n    ], \n    \"fishermen\": [\n        \"NNS\"\n    ], \n    \"Brunello\": [\n        \"NNP\"\n    ], \n    \"seamlessly\": [\n        \"RB\"\n    ], \n    \"heat-using\": [\n        \"JJ\"\n    ], \n    \"Alcohol\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"bimolecular\": [\n        \"JJ\"\n    ], \n    \"millenarianism\": [\n        \"NN\"\n    ], \n    \"defect\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"hard-come-by\": [\n        \"JJ\"\n    ], \n    \"caress\": [\n        \"VB\"\n    ], \n    \"Liro\": [\n        \"NNP\"\n    ], \n    \"Hazelwood\": [\n        \"NNP\"\n    ], \n    \"Aide\": [\n        \"NNP\"\n    ], \n    \"computer-industry\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"half-measure\": [\n        \"NN\"\n    ], \n    \"cement-makers\": [\n        \"NNS\"\n    ], \n    \"scrawled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"jeopardize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"commotion\": [\n        \"NN\"\n    ], \n    \"Druid\": [\n        \"NN\"\n    ], \n    \"reliance\": [\n        \"NN\"\n    ], \n    \"internal\": [\n        \"JJ\"\n    ], \n    \"generalized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"frail\": [\n        \"JJ\"\n    ], \n    \"BANCORP\": [\n        \"NNP\"\n    ], \n    \"picture-taking\": [\n        \"NN\"\n    ], \n    \"Logically\": [\n        \"RB\"\n    ], \n    \"frowned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hardwicke\": [\n        \"NNP\"\n    ], \n    \"M\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Utopians\": [\n        \"NNPS\"\n    ], \n    \"Annicchino\": [\n        \"NNP\"\n    ], \n    \"wedded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Aftereffects\": [\n        \"NNS\"\n    ], \n    \"accepting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"chancery\": [\n        \"NN\"\n    ], \n    \"Petroleos\": [\n        \"NNP\"\n    ], \n    \"Famcorp\": [\n        \"NNP\"\n    ], \n    \"mystical\": [\n        \"JJ\"\n    ], \n    \"Attopeu\": [\n        \"NNP\"\n    ], \n    \"Arenberg\": [\n        \"NNP\"\n    ], \n    \"WHEC-TV\": [\n        \"NNP\"\n    ], \n    \"five-gallon\": [\n        \"JJ\"\n    ], \n    \"Balzac\": [\n        \"NNP\"\n    ], \n    \"anthem\": [\n        \"NN\"\n    ], \n    \"tete-a-tete\": [\n        \"NN\"\n    ], \n    \"high-profitability\": [\n        \"NN\"\n    ], \n    \"Cloud\": [\n        \"NNP\"\n    ], \n    \"golf\": [\n        \"NN\"\n    ], \n    \"Traxler\": [\n        \"NNP\"\n    ], \n    \"gold\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Lawn-Boy\": [\n        \"NNP\"\n    ], \n    \"Pharmacuetica\": [\n        \"NNP\"\n    ], \n    \"Lillo\": [\n        \"NNP\"\n    ], \n    \"Amiga\": [\n        \"NNP\"\n    ], \n    \"evaporation\": [\n        \"NN\"\n    ], \n    \"Meidinger\": [\n        \"NNP\"\n    ], \n    \"export-oriented\": [\n        \"JJ\"\n    ], \n    \"Simpkins\": [\n        \"NNP\"\n    ], \n    \"Agius\": [\n        \"NNP\"\n    ], \n    \"degraded\": [\n        \"JJ\"\n    ], \n    \"dog-pin\": [\n        \"JJ\"\n    ], \n    \"Kyushu\": [\n        \"NNP\"\n    ], \n    \"standeth\": [\n        \"VBP\"\n    ], \n    \"Creswell\": [\n        \"NNP\"\n    ], \n    \"ho-hum\": [\n        \"JJ\"\n    ], \n    \"detaining\": [\n        \"VBG\"\n    ], \n    \"mailmen\": [\n        \"NNS\"\n    ], \n    \"blood-in-the-streets\": [\n        \"NNS\"\n    ], \n    \"REFUSED\": [\n        \"VBD\"\n    ], \n    \"Aquitaine\": [\n        \"NNP\"\n    ], \n    \"surcease\": [\n        \"NN\"\n    ], \n    \"poodles\": [\n        \"NNS\"\n    ], \n    \"Carolinians\": [\n        \"NNPS\"\n    ], \n    \"factor\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Olivia\": [\n        \"NNP\"\n    ], \n    \"ordained\": [\n        \"VBN\"\n    ], \n    \"cost-plus\": [\n        \"JJ\"\n    ], \n    \"Lakers\": [\n        \"NNP\"\n    ], \n    \"Bangkok-based\": [\n        \"JJ\"\n    ], \n    \"accretions\": [\n        \"NNS\"\n    ], \n    \"charmingly\": [\n        \"RB\"\n    ], \n    \"Massicotte\": [\n        \"NNP\"\n    ], \n    \"Tigris\": [\n        \"NNP\"\n    ], \n    \"progressive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cry\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Westlake\": [\n        \"NNP\"\n    ], \n    \"Vicon\": [\n        \"NNP\"\n    ], \n    \"banking\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"dismounted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Dignitaries\": [\n        \"NNS\"\n    ], \n    \"Piersee\": [\n        \"NNP\"\n    ], \n    \"Telemedia\": [\n        \"NNP\"\n    ], \n    \"bulky\": [\n        \"JJ\"\n    ], \n    \"Komsomolskaya\": [\n        \"NNP\"\n    ], \n    \"JenMar\": [\n        \"NNP\"\n    ], \n    \"debt-relief\": [\n        \"NN\"\n    ], \n    \"Advisers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"jade\": [\n        \"NN\"\n    ], \n    \"India-Pakistan\": [\n        \"NNP\"\n    ], \n    \"TVSM\": [\n        \"NNP\"\n    ], \n    \"Southerners\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Denko\": [\n        \"NNP\"\n    ], \n    \"European-branch\": [\n        \"JJ\"\n    ], \n    \"cement-making\": [\n        \"JJ\"\n    ], \n    \"unmeshed\": [\n        \"JJ\"\n    ], \n    \"resonantly\": [\n        \"RB\"\n    ], \n    \"Towers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Kader\": [\n        \"NNP\"\n    ], \n    \"Hadhazy\": [\n        \"NNP\"\n    ], \n    \"pickup\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Slosberg\": [\n        \"NNP\"\n    ], \n    \"Dresylon\": [\n        \"NNP\"\n    ], \n    \"Prussin\": [\n        \"NNP\"\n    ], \n    \"monsters\": [\n        \"NNS\"\n    ], \n    \"compliment\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"available\": [\n        \"JJ\"\n    ], \n    \"Globaliztion\": [\n        \"NN\"\n    ], \n    \"premises\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Ceecee\": [\n        \"NNP\"\n    ], \n    \"one-in-a-million\": [\n        \"JJ\"\n    ], \n    \"mailboat\": [\n        \"NN\"\n    ], \n    \"three-party\": [\n        \"JJ\"\n    ], \n    \"incident\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"rudderless\": [\n        \"JJ\"\n    ], \n    \"tramp\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Annie\": [\n        \"NNP\"\n    ], \n    \"Keynes\": [\n        \"NNP\"\n    ], \n    \"dividend\": [\n        \"NN\"\n    ], \n    \"Cosmology\": [\n        \"NNP\"\n    ], \n    \"legislature\": [\n        \"NN\"\n    ], \n    \"unapologetic\": [\n        \"JJ\"\n    ], \n    \"cryptic\": [\n        \"JJ\"\n    ], \n    \"earnings-forecast\": [\n        \"JJ\"\n    ], \n    \"Intercable\": [\n        \"NNP\"\n    ], \n    \"thou\": [\n        \"PRP\"\n    ], \n    \"teen-ager\": [\n        \"NN\"\n    ], \n    \"Chip\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Donning\": [\n        \"VBG\"\n    ], \n    \"Strategic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Chin\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Chim\": [\n        \"NNP\"\n    ], \n    \"tangibly\": [\n        \"RB\"\n    ], \n    \"accomodations\": [\n        \"NNS\"\n    ], \n    \"visionaries\": [\n        \"NNS\"\n    ], \n    \"Jour\": [\n        \"NNP\"\n    ], \n    \"composting\": [\n        \"NN\"\n    ], \n    \"allegiance\": [\n        \"NN\"\n    ], \n    \"dimensional\": [\n        \"JJ\"\n    ], \n    \"dissuade\": [\n        \"VB\"\n    ], \n    \"acclaim\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"adjoining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"church\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"third-highest\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"quake-shocked\": [\n        \"JJ\"\n    ], \n    \"moldboard\": [\n        \"NN\"\n    ], \n    \"SCHMIDT\": [\n        \"NNP\"\n    ], \n    \"Mariana\": [\n        \"NNP\"\n    ], \n    \"Mariano\": [\n        \"NNP\"\n    ], \n    \"Quesadas\": [\n        \"NNPS\"\n    ], \n    \"Ramey\": [\n        \"NNP\"\n    ], \n    \"traipsing\": [\n        \"VBG\"\n    ], \n    \"ITT\": [\n        \"NNP\"\n    ], \n    \"rocket-bomb\": [\n        \"NN\"\n    ], \n    \"contentedly\": [\n        \"RB\"\n    ], \n    \"toughing\": [\n        \"VBG\"\n    ], \n    \"tax-collection\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"veneer\": [\n        \"NN\"\n    ], \n    \"Hockney\": [\n        \"NNP\"\n    ], \n    \"resting\": [\n        \"VBG\"\n    ], \n    \"Gracias\": [\n        \"FW\"\n    ], \n    \"squirrel\": [\n        \"NN\"\n    ], \n    \"basketball-playing\": [\n        \"NN\"\n    ], \n    \"Matheson\": [\n        \"NNP\"\n    ], \n    \"Telenet\": [\n        \"NNP\"\n    ], \n    \"stockholding\": [\n        \"VBG\"\n    ], \n    \"reticence\": [\n        \"NN\"\n    ], \n    \"bottlers\": [\n        \"NNS\"\n    ], \n    \"Bewitched\": [\n        \"NNP\"\n    ], \n    \"deport\": [\n        \"VB\"\n    ], \n    \"Fairfax\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Myra\": [\n        \"NNP\"\n    ], \n    \"inclement\": [\n        \"JJ\"\n    ], \n    \"Eliades\": [\n        \"NNP\"\n    ], \n    \"Ducky\": [\n        \"NNP\"\n    ], \n    \"hostess\": [\n        \"NN\"\n    ], \n    \"stupefyingly\": [\n        \"RB\"\n    ], \n    \"straight\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Misa\": [\n        \"NNP\"\n    ], \n    \"reliably\": [\n        \"RB\"\n    ], \n    \"error\": [\n        \"NN\"\n    ], \n    \"Mist\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Miss\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Petrarchan\": [\n        \"JJ\"\n    ], \n    \"Corazon\": [\n        \"NNP\"\n    ], \n    \"comport\": [\n        \"VB\"\n    ], \n    \"Biosource\": [\n        \"NNP\"\n    ], \n    \"Towing\": [\n        \"NNP\"\n    ], \n    \"Viola\": [\n        \"NNP\"\n    ], \n    \"McFadden\": [\n        \"NNP\"\n    ], \n    \"Stock\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"welts\": [\n        \"NNS\"\n    ], \n    \"Associate\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"fetching\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Satanic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"medical-assistance\": [\n        \"NN\"\n    ], \n    \"Nunn-McCurdy\": [\n        \"NNP\"\n    ], \n    \"Address\": [\n        \"NNP\"\n    ], \n    \"Waukesha\": [\n        \"NNP\"\n    ], \n    \"Blodgett\": [\n        \"NNP\"\n    ], \n    \"co-star\": [\n        \"NN\"\n    ], \n    \"tower\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Chardonnay\": [\n        \"NNP\"\n    ], \n    \"comprehensive\": [\n        \"JJ\"\n    ], \n    \"videotape\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lucisano\": [\n        \"NNP\"\n    ], \n    \"rabid\": [\n        \"JJ\"\n    ], \n    \"necessity\": [\n        \"NN\"\n    ], \n    \"Lukuklu\": [\n        \"NNP\"\n    ], \n    \"Reston\": [\n        \"NNP\"\n    ], \n    \"expend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"front-runners\": [\n        \"NNS\"\n    ], \n    \"surrogate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Nobels\": [\n        \"NNPS\"\n    ], \n    \"Sol\": [\n        \"NNP\"\n    ], \n    \"Soo\": [\n        \"NNP\"\n    ], \n    \"Son\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hatchery\": [\n        \"NN\"\n    ], \n    \"person\": [\n        \"NN\"\n    ], \n    \"Congo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"inflations\": [\n        \"NNS\"\n    ], \n    \"Sox\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"FDA-NIH-industry\": [\n        \"JJ\"\n    ], \n    \"cabins\": [\n        \"NNS\"\n    ], \n    \"Tones\": [\n        \"NNPS\"\n    ], \n    \"Riserva\": [\n        \"NNP\"\n    ], \n    \"floating-rate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Labow\": [\n        \"NNP\"\n    ], \n    \"Oilwell\": [\n        \"NNP\"\n    ], \n    \"abbreviation\": [\n        \"NN\"\n    ], \n    \"J.P\": [\n        \"NNP\"\n    ], \n    \"ousting\": [\n        \"VBG\"\n    ], \n    \"eagerly\": [\n        \"RB\"\n    ], \n    \"Papers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Euro-factories\": [\n        \"NNS\"\n    ], \n    \"FT\": [\n        \"NNP\"\n    ], \n    \"Everglades\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"readers\": [\n        \"NNS\"\n    ], \n    \"below-average\": [\n        \"JJ\"\n    ], \n    \"advertisements\": [\n        \"NNS\"\n    ], \n    \"eager\": [\n        \"JJ\"\n    ], \n    \"post-Civil\": [\n        \"NNP\"\n    ], \n    \"Washoe\": [\n        \"NNP\"\n    ], \n    \"semimonthly\": [\n        \"JJ\", \n        \"RB|JJ\"\n    ], \n    \"hysteron-proteron\": [\n        \"NN\"\n    ], \n    \"wrongdoer\": [\n        \"NN\"\n    ], \n    \"Mulroney\": [\n        \"NNP\"\n    ], \n    \"ruled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"herculean\": [\n        \"JJ\"\n    ], \n    \"Keatingland\": [\n        \"NNP\"\n    ], \n    \"Both\": [\n        \"DT\", \n        \"CC\", \n        \"PDT\"\n    ], \n    \"Tracking\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Faster\": [\n        \"JJR\"\n    ], \n    \"Mega\": [\n        \"JJ\"\n    ], \n    \"five-session\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"responsibly\": [\n        \"RB\"\n    ], \n    \"hitters\": [\n        \"NNS\"\n    ], \n    \"cuteness\": [\n        \"NN\"\n    ], \n    \"shading\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"buyout\": [\n        \"NN\"\n    ], \n    \"formal\": [\n        \"JJ\"\n    ], \n    \"Mallory\": [\n        \"NNP\"\n    ], \n    \"sorting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"anthers\": [\n        \"NNS\"\n    ], \n    \"Nick\": [\n        \"NNP\"\n    ], \n    \"ambuscade\": [\n        \"NN\"\n    ], \n    \"facets\": [\n        \"NNS\"\n    ], \n    \"MacDonald\": [\n        \"NNP\"\n    ], \n    \"paintbrush\": [\n        \"NN\"\n    ], \n    \"scape\": [\n        \"VB\"\n    ], \n    \"Dakota\": [\n        \"NNP\"\n    ], \n    \"Bergamaschi\": [\n        \"NNP\"\n    ], \n    \"limo\": [\n        \"NN\"\n    ], \n    \"disdainfully\": [\n        \"RB\"\n    ], \n    \"clipping\": [\n        \"NN\"\n    ], \n    \"Koskotas\": [\n        \"NNP\"\n    ], \n    \"plant-wide\": [\n        \"JJ\"\n    ], \n    \"pals\": [\n        \"NNS\"\n    ], \n    \"mighta\": [\n        \"MD|VB\"\n    ], \n    \"beckon\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"felonious\": [\n        \"JJ\"\n    ], \n    \"mighty\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"pall\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Napa\": [\n        \"NNP\"\n    ], \n    \"hard-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cleburne\": [\n        \"NNP\"\n    ], \n    \"pale\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Friend\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kashing\": [\n        \"NNP\"\n    ], \n    \"stirrup\": [\n        \"NN\"\n    ], \n    \"Mostly\": [\n        \"RB\"\n    ], \n    \"Rutan\": [\n        \"NNP\"\n    ], \n    \"margins...\": [\n        \":\"\n    ], \n    \"D.K.\": [\n        \"NNP\"\n    ], \n    \"rehabilitating\": [\n        \"VBG\"\n    ], \n    \"wood-oil\": [\n        \"NN\"\n    ], \n    \"masculinity\": [\n        \"NN\"\n    ], \n    \"re-legalization\": [\n        \"VB\"\n    ], \n    \"Wish\": [\n        \"VB\", \n        \"VBP\", \n        \"NNP\"\n    ], \n    \"phosphine\": [\n        \"NN\"\n    ], \n    \"dating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"night-sight\": [\n        \"NN\"\n    ], \n    \"shooters\": [\n        \"NNS\"\n    ], \n    \"tinkers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bureacracy\": [\n        \"NN\"\n    ], \n    \"eclectically\": [\n        \"RB\"\n    ], \n    \"redoing\": [\n        \"VBG\"\n    ], \n    \"FNMA\": [\n        \"NNP\"\n    ], \n    \"impotency\": [\n        \"NN\"\n    ], \n    \"carob\": [\n        \"NN\"\n    ], \n    \"anhemolyticus\": [\n        \"NN\"\n    ], \n    \"UPS\": [\n        \"NNP\"\n    ], \n    \"wood-burning\": [\n        \"JJ\"\n    ], \n    \"Attica\": [\n        \"NNP\"\n    ], \n    \"city-dweller\": [\n        \"NN\"\n    ], \n    \"Pony\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ajinomoto\": [\n        \"NNP\"\n    ], \n    \"Pont\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Splenomegaly\": [\n        \"NN\"\n    ], \n    \"Pons\": [\n        \"NNP\"\n    ], \n    \"Halting\": [\n        \"VBG\"\n    ], \n    \"unintentional\": [\n        \"JJ\"\n    ], \n    \"Baffin\": [\n        \"NNP\"\n    ], \n    \"non-U.S.\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Pond\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Pong\": [\n        \"NNP\"\n    ], \n    \"benefactors\": [\n        \"NNS\"\n    ], \n    \"anterior\": [\n        \"JJ\"\n    ], \n    \"cheap-to-make\": [\n        \"JJ\"\n    ], \n    \"beefed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"muddleheaded\": [\n        \"JJ\"\n    ], \n    \"hometown\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Grosvenor\": [\n        \"NNP\"\n    ], \n    \"Goldline\": [\n        \"NNP\"\n    ], \n    \"Indochina\": [\n        \"NNP\"\n    ], \n    \"awaited\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"heat-denatured\": [\n        \"JJ\"\n    ], \n    \"dairy-oh\": [\n        \"NN\"\n    ], \n    \"poaching\": [\n        \"VBG\"\n    ], \n    \"Esher\": [\n        \"NNP\"\n    ], \n    \"gleans\": [\n        \"VBZ\"\n    ], \n    \"Typical\": [\n        \"JJ\"\n    ], \n    \"Basically\": [\n        \"RB\"\n    ], \n    \"perplex\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"poster\": [\n        \"NN\"\n    ], \n    \"Holocaust\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gucci\": [\n        \"NNP\"\n    ], \n    \"campmate\": [\n        \"NN\"\n    ], \n    \"pretty-much\": [\n        \"JJ\"\n    ], \n    \"swarm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Takasago\": [\n        \"NNP\"\n    ], \n    \"anteriors\": [\n        \"NNS\"\n    ], \n    \"Marv\": [\n        \"NNP\"\n    ], \n    \"differentiable\": [\n        \"JJ\"\n    ], \n    \"CREDITS\": [\n        \"NNS\"\n    ], \n    \"perfectability\": [\n        \"NN\"\n    ], \n    \"spectroscopy\": [\n        \"NN\"\n    ], \n    \"payola\": [\n        \"NN\"\n    ], \n    \"Giaour\": [\n        \"NN\"\n    ], \n    \"genial\": [\n        \"JJ\"\n    ], \n    \"Jobson\": [\n        \"NNP\"\n    ], \n    \"un-Westernizable\": [\n        \"JJ\"\n    ], \n    \"once-stately\": [\n        \"JJ\"\n    ], \n    \"Blackman\": [\n        \"NNP\"\n    ], \n    \"presided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"kimpap\": [\n        \"FW\"\n    ], \n    \"McAlister\": [\n        \"NNP\"\n    ], \n    \"nautical\": [\n        \"JJ\"\n    ], \n    \"presides\": [\n        \"VBZ\"\n    ], \n    \"full-size\": [\n        \"JJ\"\n    ], \n    \"declaimed\": [\n        \"VBD\"\n    ], \n    \"Obernauer\": [\n        \"NNP\"\n    ], \n    \"rekindling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"stiffly\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"Haines\": [\n        \"NNP\"\n    ], \n    \"paradox\": [\n        \"NN\"\n    ], \n    \"Portfolios\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"realest\": [\n        \"JJS\"\n    ], \n    \"hot-cold\": [\n        \"JJ\"\n    ], \n    \"Mary\": [\n        \"NNP\"\n    ], \n    \"Grandma\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"freighter\": [\n        \"NN\"\n    ], \n    \"desynchronizing\": [\n        \"VBG\"\n    ], \n    \"Cuoco\": [\n        \"NNP\"\n    ], \n    \"footfall\": [\n        \"NN\"\n    ], \n    \"scapegoat\": [\n        \"NN\"\n    ], \n    \"besiege\": [\n        \"VB\"\n    ], \n    \"hemophiliacs\": [\n        \"NNS\"\n    ], \n    \"Shakarchi\": [\n        \"NNP\"\n    ], \n    \"Maoists\": [\n        \"NNPS\"\n    ], \n    \"badge-toter\": [\n        \"NN\"\n    ], \n    \"Bromley\": [\n        \"NNP\"\n    ], \n    \"pedestrians\": [\n        \"NNS\"\n    ], \n    \"diffraction\": [\n        \"NN\"\n    ], \n    \"Golovanov\": [\n        \"NNP\"\n    ], \n    \"Voroshilov\": [\n        \"NNP\"\n    ], \n    \"Sawalisch\": [\n        \"NN\"\n    ], \n    \"menace\": [\n        \"NN\"\n    ], \n    \"magnanimous\": [\n        \"JJ\"\n    ], \n    \"advisory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"scratch\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kleiber\": [\n        \"NNP\"\n    ], \n    \"astronauts\": [\n        \"NNS\"\n    ], \n    \"enjoyable\": [\n        \"JJ\"\n    ], \n    \"Ambiguity\": [\n        \"NN\"\n    ], \n    \"limousine\": [\n        \"NN\"\n    ], \n    \"Progress\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"householders\": [\n        \"NNS\"\n    ], \n    \"luxuries\": [\n        \"NNS\"\n    ], \n    \"Skidmore\": [\n        \"NNP\"\n    ], \n    \"non-merger\": [\n        \"JJ\"\n    ], \n    \"E.H.\": [\n        \"NNP\"\n    ], \n    \"young\": [\n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"noncallable\": [\n        \"JJ\"\n    ], \n    \"lustrious\": [\n        \"JJ\"\n    ], \n    \"slave-laborers\": [\n        \"NNS\"\n    ], \n    \"Rhythm\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"TREASURY\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Salaam\": [\n        \"FW\"\n    ], \n    \"double-header\": [\n        \"NN\"\n    ], \n    \"Shipley\": [\n        \"NNP\"\n    ], \n    \"factory-modernization\": [\n        \"NN\"\n    ], \n    \"Tories\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Hanukkah\": [\n        \"NNP\"\n    ], \n    \"cerebrated\": [\n        \"VBN\"\n    ], \n    \"high-beta\": [\n        \"JJ\"\n    ], \n    \"larger-than-anticipated\": [\n        \"JJ\"\n    ], \n    \"reopened\": [\n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"Candy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Vnet\": [\n        \"NNP\"\n    ], \n    \"nominated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mixing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"precinct\": [\n        \"NN\"\n    ], \n    \"Sweaty\": [\n        \"JJ\"\n    ], \n    \"goggle-eyed\": [\n        \"JJ\"\n    ], \n    \"Foglio\": [\n        \"NNP\"\n    ], \n    \"northwestern\": [\n        \"JJ\"\n    ], \n    \"magic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"stodgy\": [\n        \"JJ\"\n    ], \n    \"Offering\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"eva\": [\n        \"NN\"\n    ], \n    \"hard-bitten\": [\n        \"JJ\"\n    ], \n    \"Surface\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"anxious\": [\n        \"JJ\"\n    ], \n    \"whittling\": [\n        \"VBG\"\n    ], \n    \"poster-sized\": [\n        \"JJ\"\n    ], \n    \"insolence\": [\n        \"NN\"\n    ], \n    \"Gilman\": [\n        \"NNP\"\n    ], \n    \"Hinckley\": [\n        \"NNP\"\n    ], \n    \"sickish\": [\n        \"JJ\"\n    ], \n    \"Turks\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"ex-manager\": [\n        \"NN\"\n    ], \n    \"seventies\": [\n        \"NNS\"\n    ], \n    \"Woronoff\": [\n        \"NNP\"\n    ], \n    \"Farmer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ruttenbur\": [\n        \"NNP\"\n    ], \n    \"wheat\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Nickle\": [\n        \"NNP\"\n    ], \n    \"foals\": [\n        \"NNS\"\n    ], \n    \"ungallant\": [\n        \"JJ\"\n    ], \n    \"desegregation-from-court-order\": [\n        \"NN\"\n    ], \n    \"Rees\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"sauerkraut\": [\n        \"NN\"\n    ], \n    \"drugstores\": [\n        \"NNS\"\n    ], \n    \"hunky-dory\": [\n        \"JJ\"\n    ], \n    \"epsom\": [\n        \"NN\"\n    ], \n    \"health-products\": [\n        \"NNS\"\n    ], \n    \"expressed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Reed\": [\n        \"NNP\"\n    ], \n    \"oration\": [\n        \"NN\"\n    ], \n    \"Reef\": [\n        \"NNP\"\n    ], \n    \"expresses\": [\n        \"VBZ\"\n    ], \n    \"delving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Udvar-Hazy\": [\n        \"NNP\"\n    ], \n    \"Tibetan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Mar.\": [\n        \"NNP\"\n    ], \n    \"caper\": [\n        \"NN\"\n    ], \n    \"scepticism\": [\n        \"NN\"\n    ], \n    \"Combining\": [\n        \"VBG\"\n    ], \n    \"punch\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"puckish\": [\n        \"JJ\"\n    ], \n    \"poverty\": [\n        \"NN\"\n    ], \n    \"invented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Magnetics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Aquino\": [\n        \"NNP\"\n    ], \n    \"computer-literate\": [\n        \"JJ\"\n    ], \n    \"AEI\": [\n        \"NNP\"\n    ], \n    \"Charities\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Elisha\": [\n        \"NNP\"\n    ], \n    \"F.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contaminants\": [\n        \"NNS\"\n    ], \n    \"{\": [\n        \"(\"\n    ], \n    \"altho\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"mid-April\": [\n        \"NN\"\n    ], \n    \"Rilling\": [\n        \"NNP\"\n    ], \n    \"Leading\": [\n        \"VBG\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Thakhek\": [\n        \"NNP\"\n    ], \n    \"sienna\": [\n        \"JJ\"\n    ], \n    \"cupid\": [\n        \"NN\"\n    ], \n    \"Rhine-Main\": [\n        \"NNP\"\n    ], \n    \"Explains\": [\n        \"VBZ\"\n    ], \n    \"runabout\": [\n        \"NN\"\n    ], \n    \"slug-kebab\": [\n        \"NN\"\n    ], \n    \"asymptotic\": [\n        \"JJ\"\n    ], \n    \"chocolates\": [\n        \"NNS\"\n    ], \n    \"SEAGATE\": [\n        \"NNP\"\n    ], \n    \"bleacher-type\": [\n        \"JJ\"\n    ], \n    \"instrumentation\": [\n        \"NN\"\n    ], \n    \"Eskimo\": [\n        \"NNP\"\n    ], \n    \"Commack\": [\n        \"NNP\"\n    ], \n    \"Heretic\": [\n        \"NN\"\n    ], \n    \"low-polluting\": [\n        \"JJ\"\n    ], \n    \"Plain\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"disarming\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ADMAN\": [\n        \"NN\"\n    ], \n    \"submarine-ball\": [\n        \"NN\"\n    ], \n    \"federally\": [\n        \"RB\"\n    ], \n    \"lowliest\": [\n        \"JJS\"\n    ], \n    \"shoelaces\": [\n        \"NNS\"\n    ], \n    \"Pilots\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"bobbins\": [\n        \"NNS\"\n    ], \n    \"Berlusconi\": [\n        \"NNP\"\n    ], \n    \"Albion\": [\n        \"NNP\"\n    ], \n    \"codfish\": [\n        \"NN\"\n    ], \n    \"practicing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bankholding\": [\n        \"VBG\"\n    ], \n    \"challenge\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dequindre\": [\n        \"NNP\"\n    ], \n    \"Written\": [\n        \"VBN\"\n    ], \n    \"Berthelier\": [\n        \"NNP\"\n    ], \n    \"hydrolysis\": [\n        \"NN\"\n    ], \n    \"governmentset\": [\n        \"VBN\"\n    ], \n    \"publications\": [\n        \"NNS\"\n    ], \n    \"fomenting\": [\n        \"VBG\"\n    ], \n    \"enlivening\": [\n        \"VBG\"\n    ], \n    \"ethane\": [\n        \"NN\"\n    ], \n    \"Seligman\": [\n        \"NNP\"\n    ], \n    \"Police\": [\n        \"NNP\", \n        \"NNS\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"stress-provoking\": [\n        \"JJ\"\n    ], \n    \"Greisler\": [\n        \"NNP\"\n    ], \n    \"USAA\": [\n        \"NNP\"\n    ], \n    \"USAF\": [\n        \"NNP\"\n    ], \n    \"Steinkerque\": [\n        \"NNP\"\n    ], \n    \"Ethiopians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Policy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Borner\": [\n        \"NNP\"\n    ], \n    \"paws\": [\n        \"NNS\"\n    ], \n    \"Boursin\": [\n        \"NNP\"\n    ], \n    \"clogs\": [\n        \"VBZ\"\n    ], \n    \"shuffled\": [\n        \"VBD\"\n    ], \n    \"c-Domestic\": [\n        \"JJ\", \n        \"LS|JJ\"\n    ], \n    \"mumbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Selavo\": [\n        \"NNP\"\n    ], \n    \"occipital\": [\n        \"JJ\"\n    ], \n    \"motivating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"wolf\": [\n        \"NN\"\n    ], \n    \"mumbles\": [\n        \"VBZ\"\n    ], \n    \"mop-up\": [\n        \"NN\"\n    ], \n    \"Kemps\": [\n        \"NNP\"\n    ], \n    \"non-recurring\": [\n        \"JJ\"\n    ], \n    \"Kempe\": [\n        \"NNP\"\n    ], \n    \"Nisshinbo\": [\n        \"NNP\"\n    ], \n    \"Badrawi\": [\n        \"NNP\"\n    ], \n    \"redeeming\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"misappropriation\": [\n        \"NN\"\n    ], \n    \"Walkman-style\": [\n        \"JJ\"\n    ], \n    \"Presidio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sprue\": [\n        \"NN\"\n    ], \n    \"counter\": [\n        \"NN\", \n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"IN|RB\", \n        \"VBP\"\n    ], \n    \"reminders\": [\n        \"NNS\"\n    ], \n    \"element\": [\n        \"NN\"\n    ], \n    \"Breuners\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"re-supplied\": [\n        \"VBN\"\n    ], \n    \"Blackpool\": [\n        \"NNP\"\n    ], \n    \"massages\": [\n        \"NNS\"\n    ], \n    \"writ\": [\n        \"NN\", \n        \"VBN\"\n    ], \n    \"asserts\": [\n        \"VBZ\"\n    ], \n    \"classy\": [\n        \"JJ\"\n    ], \n    \"well-managed\": [\n        \"JJ\"\n    ], \n    \"counted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Schramm\": [\n        \"NNP\"\n    ], \n    \"HIV-infected\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"stratagem\": [\n        \"NN\"\n    ], \n    \"interlocutor\": [\n        \"NN\"\n    ], \n    \"Washed\": [\n        \"VBN\"\n    ], \n    \"emissaries\": [\n        \"NNS\"\n    ], \n    \"Polychemicals\": [\n        \"NNP\"\n    ], \n    \"artichoke\": [\n        \"NN\"\n    ], \n    \"cheek-by-jowl\": [\n        \"JJ\"\n    ], \n    \"Weaving\": [\n        \"VBG\"\n    ], \n    \"warren\": [\n        \"NN\"\n    ], \n    \"Himself\": [\n        \"PRP\"\n    ], \n    \"decay\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"compulsions\": [\n        \"NNS\"\n    ], \n    \"dispose\": [\n        \"VB\"\n    ], \n    \"imperfection\": [\n        \"NN\"\n    ], \n    \"fiscal-year\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"decal\": [\n        \"NN\"\n    ], \n    \"degrees\": [\n        \"NNS\"\n    ], \n    \"misapprehension\": [\n        \"NN\"\n    ], \n    \"Sappho\": [\n        \"NNP\"\n    ], \n    \"laggards\": [\n        \"NNS\"\n    ], \n    \"therefor\": [\n        \"RB\"\n    ], \n    \"Haven\": [\n        \"NNP\"\n    ], \n    \"Havel\": [\n        \"NNP\"\n    ], \n    \"stop-loss\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Toussie\": [\n        \"NNP\"\n    ], \n    \"Attorneys\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"SHEA\": [\n        \"NNP\"\n    ], \n    \"Herbert\": [\n        \"NNP\"\n    ], \n    \"dock\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"heavy-handed\": [\n        \"JJ\"\n    ], \n    \"sandpaper\": [\n        \"NN\"\n    ], \n    \"rotation\": [\n        \"NN\"\n    ], \n    \"Aluminium\": [\n        \"NNP\"\n    ], \n    \"Q45\": [\n        \"NNP\"\n    ], \n    \"Swelling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"sniffing\": [\n        \"VBG\"\n    ], \n    \"wrangled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rourke\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"onlookers\": [\n        \"NNS\"\n    ], \n    \"well-stated\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"tents\": [\n        \"NNS\"\n    ], \n    \"Kiyoi\": [\n        \"NNP\"\n    ], \n    \"UNIFIRST\": [\n        \"NNP\"\n    ], \n    \"sportsman\": [\n        \"NN\"\n    ], \n    \"Overriding\": [\n        \"NN\"\n    ], \n    \"co-major\": [\n        \"NN\"\n    ], \n    \"irritation\": [\n        \"NN\"\n    ], \n    \"jagged\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Cassite\": [\n        \"NNP\"\n    ], \n    \"tenth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dropouts\": [\n        \"NNS\"\n    ], \n    \"borderline\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"gyro-stabilized\": [\n        \"JJ\"\n    ], \n    \"Material\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"much-larger\": [\n        \"JJ\"\n    ], \n    \"mediated\": [\n        \"VBN\"\n    ], \n    \"superbly\": [\n        \"RB\"\n    ], \n    \"Trying\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"waters\": [\n        \"NNS\"\n    ], \n    \"MRI-type\": [\n        \"JJ\"\n    ], \n    \"realigning\": [\n        \"VBG\"\n    ], \n    \"classification\": [\n        \"NN\"\n    ], \n    \"Once-only\": [\n        \"JJ\"\n    ], \n    \"wall-stabilized\": [\n        \"JJ\"\n    ], \n    \"DIGS\": [\n        \"NNS\"\n    ], \n    \"internal-external\": [\n        \"JJ\"\n    ], \n    \"regulators\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ffortescue\": [\n        \"NNP\"\n    ], \n    \"sanatorium\": [\n        \"NN\"\n    ], \n    \"regulatory\": [\n        \"JJ\"\n    ], \n    \"jowl\": [\n        \"NN\"\n    ], \n    \"rowdiness\": [\n        \"NN\"\n    ], \n    \"minstrel\": [\n        \"NN\"\n    ], \n    \"Extricating\": [\n        \"VBG\"\n    ], \n    \"Debenture\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"dubbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"junk-fund\": [\n        \"NN\"\n    ], \n    \"Celebrities\": [\n        \"NNS\"\n    ], \n    \"telephone-access\": [\n        \"JJ\"\n    ], \n    \"serenity\": [\n        \"NN\"\n    ], \n    \"Berteros\": [\n        \"NNPS\"\n    ], \n    \"Cummins\": [\n        \"NNP\"\n    ], \n    \"respond\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"retching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"rescinding\": [\n        \"VBG\"\n    ], \n    \"collagen\": [\n        \"NN\"\n    ], \n    \"metering\": [\n        \"VBG\"\n    ], \n    \"feasts\": [\n        \"NNS\"\n    ], \n    \"Program\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"occurrences\": [\n        \"NNS\"\n    ], \n    \"collages\": [\n        \"NNS\"\n    ], \n    \"hand-carried\": [\n        \"VBN\"\n    ], \n    \"car-industry\": [\n        \"NN\"\n    ], \n    \"opportune\": [\n        \"JJ\"\n    ], \n    \"Dyerear\": [\n        \"NNP\"\n    ], \n    \"Volker\": [\n        \"NNP\"\n    ], \n    \"Happily\": [\n        \"RB\"\n    ], \n    \"lengthily\": [\n        \"RB\"\n    ], \n    \"Spokespersons\": [\n        \"NNS\"\n    ], \n    \"vaginal\": [\n        \"JJ\"\n    ], \n    \"accretion\": [\n        \"NN\"\n    ], \n    \"nosediving\": [\n        \"VBG\"\n    ], \n    \"large-computer\": [\n        \"NN\"\n    ], \n    \"tie-ups\": [\n        \"NNS\"\n    ], \n    \"Indo-China\": [\n        \"NNP\"\n    ], \n    \"Kersley\": [\n        \"NNP\"\n    ], \n    \"evacuated\": [\n        \"VBN\"\n    ], \n    \"gummy\": [\n        \"JJ\"\n    ], \n    \"Qing\": [\n        \"NNP\"\n    ], \n    \"aerate\": [\n        \"VB\"\n    ], \n    \"shorts\": [\n        \"NNS\"\n    ], \n    \"Complicating\": [\n        \"VBG\"\n    ], \n    \"Chalmers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Casanova\": [\n        \"NNP\"\n    ], \n    \"depressing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"crosswise\": [\n        \"RB\"\n    ], \n    \"bombers\": [\n        \"NNS\"\n    ], \n    \"accompaniment\": [\n        \"NN\"\n    ], \n    \"unexpended\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Democratic\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"InterMarket\": [\n        \"NNP\"\n    ], \n    \"original-instrument\": [\n        \"JJ\"\n    ], \n    \"unamused\": [\n        \"VBN\"\n    ], \n    \"top-loaders\": [\n        \"NNS\"\n    ], \n    \"unblushing\": [\n        \"JJ\"\n    ], \n    \"Whirpool\": [\n        \"NNP\"\n    ], \n    \"splayed\": [\n        \"VBD\"\n    ], \n    \"philologists\": [\n        \"NNS\"\n    ], \n    \"listeners\": [\n        \"NNS\"\n    ], \n    \"reproduction\": [\n        \"NN\"\n    ], \n    \"dissensions\": [\n        \"NNS\"\n    ], \n    \"Zaire\": [\n        \"NNP\"\n    ], \n    \"pre-arranged\": [\n        \"JJ\"\n    ], \n    \"downpayments\": [\n        \"NNS\"\n    ], \n    \"highest-quality\": [\n        \"JJ\", \n        \"JJS\", \n        \"NN\"\n    ], \n    \"accusing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"AAA\": [\n        \"NNP\"\n    ], \n    \"unbelieving\": [\n        \"JJ\"\n    ], \n    \"pull-backs\": [\n        \"NNS\"\n    ], \n    \"freshened\": [\n        \"VBN\"\n    ], \n    \"Patsy\": [\n        \"NNP\"\n    ], \n    \"correspond\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Messerschmitt-Bolkow\": [\n        \"NNP\"\n    ], \n    \"HonFed\": [\n        \"NNP\"\n    ], \n    \"Smithtown\": [\n        \"NNP\"\n    ], \n    \"intertwining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"accenting\": [\n        \"NN\"\n    ], \n    \"epicenter\": [\n        \"NN\"\n    ], \n    \"amphibious\": [\n        \"JJ\"\n    ], \n    \"hypothalamic\": [\n        \"JJ\"\n    ], \n    \"babel\": [\n        \"NN\"\n    ], \n    \"therewith\": [\n        \"RB\"\n    ], \n    \"mills\": [\n        \"NNS\"\n    ], \n    \"Loyalty\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Dak.\": [\n        \"NNP\"\n    ], \n    \"mesenteric\": [\n        \"JJ\"\n    ], \n    \"Funny\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"Quarterback\": [\n        \"NNP\"\n    ], \n    \"babes\": [\n        \"NNS\"\n    ], \n    \"gray-bearded\": [\n        \"JJ\"\n    ], \n    \"souled\": [\n        \"JJ\"\n    ], \n    \"Decatur\": [\n        \"NNP\"\n    ], \n    \"walkover\": [\n        \"NN\"\n    ], \n    \"Weinstein\": [\n        \"NNP\"\n    ], \n    \"HEADED\": [\n        \"VBD\"\n    ], \n    \"Stals\": [\n        \"NNP\"\n    ], \n    \"courtesy\": [\n        \"NN\"\n    ], \n    \"Volga\": [\n        \"NNP\"\n    ], \n    \"segment\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"hypocrite\": [\n        \"NN\"\n    ], \n    \"lined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"WXRK-FM\": [\n        \"NNP\"\n    ], \n    \"media-linked\": [\n        \"JJ\"\n    ], \n    \"Neanderthals\": [\n        \"NNS\"\n    ], \n    \"socialistic\": [\n        \"JJ\"\n    ], \n    \"Suliman\": [\n        \"NNP\"\n    ], \n    \"face\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"screechy\": [\n        \"JJ\"\n    ], \n    \"colonnade\": [\n        \"NN\"\n    ], \n    \"Jackets\": [\n        \"NNS\"\n    ], \n    \"Ruger\": [\n        \"NNP\"\n    ], \n    \"Technically\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Kitaro\": [\n        \"NNP\"\n    ], \n    \"Paris\": [\n        \"NNP\"\n    ], \n    \"Claiming\": [\n        \"VBG\"\n    ], \n    \"disbanded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"MIG-1\\\\\": [\n        \"JJ\"\n    ], \n    \"inflammations\": [\n        \"NNS\"\n    ], \n    \"WANT\": [\n        \"VBP\"\n    ], \n    \"water-pollution\": [\n        \"NN\"\n    ], \n    \"ripoff\": [\n        \"NN\"\n    ], \n    \"attributes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Grandeur\": [\n        \"NN\"\n    ], \n    \"redirect\": [\n        \"VB\"\n    ], \n    \"Meanwhile\": [\n        \"RB\"\n    ], \n    \"conciliate\": [\n        \"VB\"\n    ], \n    \"lethargies\": [\n        \"NNS\"\n    ], \n    \"scurrilous\": [\n        \"JJ\"\n    ], \n    \"Dutch-based\": [\n        \"JJ\"\n    ], \n    \"Strong\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"One-Cancels-The-Other\": [\n        \"NNP\"\n    ], \n    \"handle\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"listened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"muttering\": [\n        \"VBG\", \n        \"NN|VBG\"\n    ], \n    \"reconvention\": [\n        \"NN\"\n    ], \n    \"listener\": [\n        \"NN\"\n    ], \n    \"scorn\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Evarsito\": [\n        \"NNP\"\n    ], \n    \"Coelho\": [\n        \"NNP\"\n    ], \n    \"postured\": [\n        \"VBD\"\n    ], \n    \"defenseless\": [\n        \"JJ\"\n    ], \n    \"generalist\": [\n        \"NN\"\n    ], \n    \"Once\": [\n        \"RB\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"smash\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"M.B.A.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"fieldwork\": [\n        \"NN\"\n    ], \n    \"Connally\": [\n        \"NNP\"\n    ], \n    \"summon\": [\n        \"VB\"\n    ], \n    \"allegation\": [\n        \"NN\"\n    ], \n    \"basking\": [\n        \"VBG\"\n    ], \n    \"Ryland\": [\n        \"NNP\"\n    ], \n    \"Anglian\": [\n        \"JJ\"\n    ], \n    \"receptive\": [\n        \"JJ\"\n    ], \n    \"superstars\": [\n        \"NNS\"\n    ], \n    \"CRS\": [\n        \"NNP\"\n    ], \n    \"CRT\": [\n        \"NNP\"\n    ], \n    \"Uppsala\": [\n        \"NNP\"\n    ], \n    \"CRX\": [\n        \"NNP\"\n    ], \n    \"Atonio\": [\n        \"NNP\"\n    ], \n    \"Palmtops\": [\n        \"NNS\"\n    ], \n    \"paperbacks\": [\n        \"NNS\"\n    ], \n    \"Tamiris-Daniel\": [\n        \"NNP\"\n    ], \n    \"CRI\": [\n        \"NNP\"\n    ], \n    \"Angkor\": [\n        \"NNP\"\n    ], \n    \"CRs\": [\n        \"NNS\"\n    ], \n    \"Kohrs\": [\n        \"NNP\"\n    ], \n    \"yardwork\": [\n        \"NN\"\n    ], \n    \"migrations\": [\n        \"NNS\"\n    ], \n    \"distressingly\": [\n        \"RB\"\n    ], \n    \"Kerson\": [\n        \"NNP\"\n    ], \n    \"Gallup\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nominees\": [\n        \"NNS\"\n    ], \n    \"disgruntled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"ABM.\": [\n        \"NNP\"\n    ], \n    \"Optima\": [\n        \"NNP\"\n    ], \n    \"pseudo-willing\": [\n        \"NN\"\n    ], \n    \"Frucher\": [\n        \"NNP\"\n    ], \n    \"Coronets\": [\n        \"NNPS\"\n    ], \n    \"strides\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"grow\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"configuration\": [\n        \"NN\"\n    ], \n    \"absented\": [\n        \"VBD\"\n    ], \n    \"absentee\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sausage-meat\": [\n        \"NN\"\n    ], \n    \"memory-images\": [\n        \"NNS\"\n    ], \n    \"Alsing\": [\n        \"NNP\"\n    ], \n    \"baubles\": [\n        \"NNS\"\n    ], \n    \"Hadassah\": [\n        \"NNP\"\n    ], \n    \"challengeable\": [\n        \"JJ\"\n    ], \n    \"dissident-shareholder\": [\n        \"NN\"\n    ], \n    \"seven-course\": [\n        \"JJ\"\n    ], \n    \"streams\": [\n        \"NNS\"\n    ], \n    \"Dillmann\": [\n        \"NNP\"\n    ], \n    \"cinder\": [\n        \"NN\"\n    ], \n    \"R.S.\": [\n        \"NNP\"\n    ], \n    \"Kimbark\": [\n        \"NNP\"\n    ], \n    \"nonmetallic\": [\n        \"JJ\"\n    ], \n    \"Smitty\": [\n        \"NNP\"\n    ], \n    \"wrestlers\": [\n        \"NNS\"\n    ], \n    \"R.,Iowa\": [\n        \"NNP\"\n    ], \n    \"rockbound\": [\n        \"JJ\"\n    ], \n    \"Her\": [\n        \"PRP$\", \n        \"PRP\", \n        \"PRP$R\"\n    ], \n    \"Announcement\": [\n        \"NN\"\n    ], \n    \"under-the-table\": [\n        \"JJ\"\n    ], \n    \"countertenor\": [\n        \"NN\"\n    ], \n    \"Hey\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"snowfall\": [\n        \"NN\"\n    ], \n    \"Eskridge\": [\n        \"NNP\"\n    ], \n    \"Hee\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"Yankeefication\": [\n        \"NNP\"\n    ], \n    \"heavy-machine\": [\n        \"JJ\"\n    ], \n    \"Hen\": [\n        \"NN\"\n    ], \n    \"winning\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBG|JJ\"\n    ], \n    \"Glemp\": [\n        \"NNP\"\n    ], \n    \"Alco\": [\n        \"NNP\"\n    ], \n    \"outsider\": [\n        \"NN\"\n    ], \n    \"adjective\": [\n        \"NN\"\n    ], \n    \"Seattle-Northwest\": [\n        \"NNP\"\n    ], \n    \"Capoten\": [\n        \"NNP\"\n    ], \n    \"Samuels\": [\n        \"NNP\"\n    ], \n    \"Kinda\": [\n        \"RB\"\n    ], \n    \"compensating\": [\n        \"VBG\"\n    ], \n    \"utilizing\": [\n        \"VBG\"\n    ], \n    \"negotiates\": [\n        \"VBZ\"\n    ], \n    \"melamine\": [\n        \"NN\"\n    ], \n    \"Stations\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"acclamation\": [\n        \"NN\"\n    ], \n    \"Whence\": [\n        \"WRB\"\n    ], \n    \"tobacco-ad\": [\n        \"JJ\"\n    ], \n    \"Diman\": [\n        \"NNP\"\n    ], \n    \"Irrigation\": [\n        \"NN\"\n    ], \n    \"coals\": [\n        \"NNS\"\n    ], \n    \"runway\": [\n        \"NN\"\n    ], \n    \"less-advanced\": [\n        \"JJ|JJR\"\n    ], \n    \"sentimentalize\": [\n        \"VB\"\n    ], \n    \"bombproof\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"unself-conscious\": [\n        \"JJ\"\n    ], \n    \"Waldron\": [\n        \"NNP\"\n    ], \n    \"bathtub\": [\n        \"NN\"\n    ], \n    \"unpaired\": [\n        \"VBN\"\n    ], \n    \"Prieta\": [\n        \"NNP\"\n    ], \n    \"Gorgeous\": [\n        \"NNP\"\n    ], \n    \"retarding\": [\n        \"VBG\"\n    ], \n    \"hardware\": [\n        \"NN\"\n    ], \n    \"enoxacin\": [\n        \"NN\"\n    ], \n    \"vs\": [\n        \"NNP\", \n        \"IN\"\n    ], \n    \"overleveraged\": [\n        \"JJ\"\n    ], \n    \"vu\": [\n        \"NN\"\n    ], \n    \"adultery\": [\n        \"NN\"\n    ], \n    \"tenor\": [\n        \"NN\"\n    ], \n    \"sits\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"waivers\": [\n        \"NNS\"\n    ], \n    \"situ\": [\n        \"FW\"\n    ], \n    \"descriptive\": [\n        \"JJ\"\n    ], \n    \"Burle\": [\n        \"NNP\"\n    ], \n    \"self-declared\": [\n        \"JJ\"\n    ], \n    \"fashioning\": [\n        \"VBG\"\n    ], \n    \"consortium-ownership\": [\n        \"NN\"\n    ], \n    \"showerhead\": [\n        \"NN\"\n    ], \n    \"Antinomians\": [\n        \"NNS\"\n    ], \n    \"Stepanian\": [\n        \"NNP\"\n    ], \n    \"wafer\": [\n        \"NN\"\n    ], \n    \"Burly\": [\n        \"JJ\"\n    ], \n    \"Danny\": [\n        \"NNP\"\n    ], \n    \"infinity\": [\n        \"NN\"\n    ], \n    \"tri-jet\": [\n        \"NN\"\n    ], \n    \"emotionally\": [\n        \"RB\"\n    ], \n    \"Amcore\": [\n        \"NNP\"\n    ], \n    \"birthcontrol\": [\n        \"NN\"\n    ], \n    \"v.\": [\n        \"CC\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"architectures\": [\n        \"NNS\"\n    ], \n    \"infinite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kristen\": [\n        \"NNP\"\n    ], \n    \"C.M.\": [\n        \"NNP\"\n    ], \n    \"Garland\": [\n        \"NNP\"\n    ], \n    \"reinforced-fiberglass\": [\n        \"JJ\"\n    ], \n    \"enrage\": [\n        \"NN\"\n    ], \n    \"Burts\": [\n        \"NNPS\"\n    ], \n    \"fail\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"drawing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"enunciation\": [\n        \"NN\"\n    ], \n    \"restructure\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"flesh\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Retiring\": [\n        \"VBG\"\n    ], \n    \"shirt-pocket\": [\n        \"NN\"\n    ], \n    \"footbridge\": [\n        \"NN\"\n    ], \n    \"rooms\": [\n        \"NNS\"\n    ], \n    \"insisting\": [\n        \"VBG\"\n    ], \n    \"Carneigie\": [\n        \"NNP\"\n    ], \n    \"roomy\": [\n        \"JJ\"\n    ], \n    \"extempore\": [\n        \"RB\"\n    ], \n    \"bibliography\": [\n        \"NN\"\n    ], \n    \"Babylonians\": [\n        \"NNPS\"\n    ], \n    \"Company\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"live-haulers\": [\n        \"NNS\"\n    ], \n    \"Darius\": [\n        \"NNP\"\n    ], \n    \"Vegans\": [\n        \"NNPS\"\n    ], \n    \"Plunge\": [\n        \"NN\"\n    ], \n    \"Bridgeville\": [\n        \"NNP\"\n    ], \n    \"securities-turnover\": [\n        \"JJ\"\n    ], \n    \"grand-slam\": [\n        \"JJ\"\n    ], \n    \"big-company\": [\n        \"JJ\"\n    ], \n    \"amputations\": [\n        \"NNS\"\n    ], \n    \"Second-quarter\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Amadeus\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Hardiman\": [\n        \"NNP\"\n    ], \n    \"rednecks\": [\n        \"NNS\"\n    ], \n    \"snitched\": [\n        \"VBN\"\n    ], \n    \"government\": [\n        \"NN\"\n    ], \n    \"unbalance\": [\n        \"NN\"\n    ], \n    \"one-digit\": [\n        \"JJ\"\n    ], \n    \"pre-quake\": [\n        \"JJ\"\n    ], \n    \"Sallie\": [\n        \"NNP\"\n    ], \n    \"blockages\": [\n        \"NNS\"\n    ], \n    \"Engineers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"di-iodotyrosine\": [\n        \"NN\"\n    ], \n    \"Creek\": [\n        \"NNP\"\n    ], \n    \"Schwartz\": [\n        \"NNP\"\n    ], \n    \"chairs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Creed\": [\n        \"NNP\"\n    ], \n    \"Gornto\": [\n        \"NNP\"\n    ], \n    \"consumer-advocacy\": [\n        \"JJ\"\n    ], \n    \"erasable\": [\n        \"JJ\"\n    ], \n    \"suffocation\": [\n        \"NN\"\n    ], \n    \"imprison\": [\n        \"VB\"\n    ], \n    \"sell-offs\": [\n        \"NNS\"\n    ], \n    \"Valdiserri\": [\n        \"NNP\"\n    ], \n    \"pretest\": [\n        \"NN\"\n    ], \n    \"therapeutic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"amendment\": [\n        \"NN\"\n    ], \n    \"Low-interest-rate\": [\n        \"JJ\"\n    ], \n    \"repartee\": [\n        \"NN\"\n    ], \n    \"misperceives\": [\n        \"VBZ\"\n    ], \n    \"bargain-hunt\": [\n        \"VB\"\n    ], \n    \"darlin\": [\n        \"NN\"\n    ], \n    \"daylight\": [\n        \"NN\"\n    ], \n    \"beach-house\": [\n        \"NN\"\n    ], \n    \"fantasist\": [\n        \"NN\"\n    ], \n    \"open-ended\": [\n        \"JJ\"\n    ], \n    \"pork-barreling\": [\n        \"NN\"\n    ], \n    \"Trupin-related\": [\n        \"JJ\"\n    ], \n    \"fontanel\": [\n        \"NN\"\n    ], \n    \"sketching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"stores.\": [\n        \"NN\"\n    ], \n    \"demonstrators\": [\n        \"NNS\"\n    ], \n    \"anguished\": [\n        \"JJ\"\n    ], \n    \"Montana\": [\n        \"NNP\"\n    ], \n    \"therapists\": [\n        \"NNS\"\n    ], \n    \"Bronner\": [\n        \"NNP\"\n    ], \n    \"Eurokitsch\": [\n        \"NN\"\n    ], \n    \"SQUIBB\": [\n        \"NNP\"\n    ], \n    \"voluptuous\": [\n        \"JJ\"\n    ], \n    \"drift\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"tidewater\": [\n        \"NN\"\n    ], \n    \"asbestos-disease\": [\n        \"NN\"\n    ], \n    \"Bathurst\": [\n        \"NNP\"\n    ], \n    \"adversary\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"counties\": [\n        \"NNS\"\n    ], \n    \"Optical-storage\": [\n        \"JJ\"\n    ], \n    \"PanAm\": [\n        \"NNP\"\n    ], \n    \"p-aminobenzoic\": [\n        \"JJ\"\n    ], \n    \"Plymouth\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"merited\": [\n        \"VBD\"\n    ], \n    \"Pampel\": [\n        \"NNP\"\n    ], \n    \"third-leading\": [\n        \"JJ\"\n    ], \n    \"spoilables\": [\n        \"NNS\"\n    ], \n    \"Rotarians\": [\n        \"NNPS\"\n    ], \n    \"intermediates\": [\n        \"NNS\"\n    ], \n    \"Leninist\": [\n        \"NNP\"\n    ], \n    \"pussy\": [\n        \"NN\"\n    ], \n    \"screamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"activate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"lung\": [\n        \"NN\"\n    ], \n    \"Calgary\": [\n        \"NNP\"\n    ], \n    \"From\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Creole\": [\n        \"NNP\"\n    ], \n    \"Summerland\": [\n        \"NNP\"\n    ], \n    \"interest-deferred\": [\n        \"JJ\"\n    ], \n    \"MGM-UA\": [\n        \"NNP\"\n    ], \n    \"Dangling\": [\n        \"VBG\"\n    ], \n    \"Deardorff\": [\n        \"NNP\"\n    ], \n    \"kooky\": [\n        \"JJ\"\n    ], \n    \"restricts\": [\n        \"VBZ\"\n    ], \n    \"Listening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"kooks\": [\n        \"NNS\"\n    ], \n    \"Epitaph\": [\n        \"NNP\"\n    ], \n    \"stop-payment\": [\n        \"NN\"\n    ], \n    \"Groth\": [\n        \"NNP\"\n    ], \n    \"disengaged\": [\n        \"VBN\"\n    ], \n    \"HEALTHDYNE\": [\n        \"NNP\"\n    ], \n    \"More-detailed\": [\n        \"JJR\"\n    ], \n    \"fly-fishing\": [\n        \"NN\"\n    ], \n    \"Grote\": [\n        \"NNP\"\n    ], \n    \"vine-embowered\": [\n        \"JJ\"\n    ], \n    \"CF680C2\": [\n        \"NNP\"\n    ], \n    \"past-fantasy\": [\n        \"JJ\"\n    ], \n    \"proverbs\": [\n        \"NNS\"\n    ], \n    \"agro-chemicals\": [\n        \"NNS\"\n    ], \n    \"interwar\": [\n        \"JJ\"\n    ], \n    \"Hussman\": [\n        \"NNP\"\n    ], \n    \"government-subsidized\": [\n        \"JJ\"\n    ], \n    \"Diane\": [\n        \"NNP\"\n    ], \n    \"triumphant\": [\n        \"JJ\"\n    ], \n    \"counterattack\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"convince\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"leashes\": [\n        \"NNS\"\n    ], \n    \"distribution\": [\n        \"NN\"\n    ], \n    \"baptism\": [\n        \"NN\"\n    ], \n    \"AnaMor\": [\n        \"NNP\"\n    ], \n    \"rightly\": [\n        \"RB\"\n    ], \n    \"morning-glory\": [\n        \"NN\"\n    ], \n    \"rubble\": [\n        \"NN\"\n    ], \n    \"three-ton\": [\n        \"JJ\"\n    ], \n    \"CIM\": [\n        \"NNP\"\n    ], \n    \"CIR\": [\n        \"NNP\"\n    ], \n    \"inn\": [\n        \"NN\"\n    ], \n    \"Statehouse\": [\n        \"NN\"\n    ], \n    \"ink\": [\n        \"NN\"\n    ], \n    \"Sunburst\": [\n        \"NNP\"\n    ], \n    \"Rustin\": [\n        \"NNP\"\n    ], \n    \"againt\": [\n        \"NN\"\n    ], \n    \"in\\\\\": [\n        \"JJ\"\n    ], \n    \"renowned\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"low-voltage\": [\n        \"JJ\"\n    ], \n    \"compressive\": [\n        \"JJ\"\n    ], \n    \"agreed-upon\": [\n        \"IN\", \n        \"JJ\"\n    ], \n    \"hobbling\": [\n        \"VBG\"\n    ], \n    \"trials\": [\n        \"NNS\"\n    ], \n    \"power-switching\": [\n        \"JJ\"\n    ], \n    \"Confectioner\": [\n        \"NNP\"\n    ], \n    \"lookup\": [\n        \"NN\"\n    ], \n    \"Luechtefeld\": [\n        \"NNP\"\n    ], \n    \"incorrigible\": [\n        \"JJ\"\n    ], \n    \"oviform\": [\n        \"JJ\"\n    ], \n    \"semblance\": [\n        \"NN\"\n    ], \n    \"neuroblastoma\": [\n        \"NN\"\n    ], \n    \"dealer-manager\": [\n        \"NN\"\n    ], \n    \"Prager\": [\n        \"NNP\"\n    ], \n    \"MACY\": [\n        \"NNP\"\n    ], \n    \"Polyvinyl\": [\n        \"NN\"\n    ], \n    \"Maturity\": [\n        \"NN\"\n    ], \n    \"in.\": [\n        \"NN\"\n    ], \n    \"Kasiva\": [\n        \"NNP\"\n    ], \n    \"Congressman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"capers\": [\n        \"NNS\"\n    ], \n    \"faculty-hiring\": [\n        \"JJ\"\n    ], \n    \"coloration\": [\n        \"NN\"\n    ], \n    \"ghost\": [\n        \"NN\"\n    ], \n    \"Gargle\": [\n        \"NNP\"\n    ], \n    \"Boland\": [\n        \"NNP\"\n    ], \n    \"non-scientific\": [\n        \"JJ\"\n    ], \n    \"Attractions\": [\n        \"NNPS\"\n    ], \n    \"R.H.\": [\n        \"NNP\"\n    ], \n    \"tinkling\": [\n        \"VBG\"\n    ], \n    \"corporate-related\": [\n        \"JJ\"\n    ], \n    \"garbage-out\": [\n        \"JJ\"\n    ], \n    \"confinement\": [\n        \"NN\"\n    ], \n    \"Waugh\": [\n        \"NNP\"\n    ], \n    \"shipping-rate\": [\n        \"JJ\"\n    ], \n    \"unspeakable\": [\n        \"JJ\"\n    ], \n    \"frolics\": [\n        \"NNS\"\n    ], \n    \"small-to-medium-sized\": [\n        \"JJ\"\n    ], \n    \"nonstrategic\": [\n        \"JJ\"\n    ], \n    \"reactants\": [\n        \"NNS\"\n    ], \n    \"blisters\": [\n        \"NNS\"\n    ], \n    \"extrapolates\": [\n        \"VBZ\"\n    ], \n    \"mansion\": [\n        \"NN\"\n    ], \n    \"DataTimes\": [\n        \"NNP\"\n    ], \n    \"ebbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rabia\": [\n        \"NNP\"\n    ], \n    \"codification\": [\n        \"NN\"\n    ], \n    \"Payouts\": [\n        \"NNS\"\n    ], \n    \"spew\": [\n        \"VBP\"\n    ], \n    \"excoriate\": [\n        \"VB\"\n    ], \n    \"four-game\": [\n        \"JJ\"\n    ], \n    \"Langford\": [\n        \"NNP\"\n    ], \n    \"aftereffects\": [\n        \"NNS\"\n    ], \n    \"invaders\": [\n        \"NNS\"\n    ], \n    \"fiberoptic\": [\n        \"JJ\"\n    ], \n    \"regal\": [\n        \"JJ\"\n    ], \n    \"OVERSEAS\": [\n        \"JJ\"\n    ], \n    \"McKennon\": [\n        \"NNP\"\n    ], \n    \"whack\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Salvesen\": [\n        \"NNP\"\n    ], \n    \"Castlegar\": [\n        \"NNP\"\n    ], \n    \"disease-fighting\": [\n        \"JJ\"\n    ], \n    \"LYONs\": [\n        \"NNS\"\n    ], \n    \"Wierton\": [\n        \"NNP\"\n    ], \n    \"business-venture\": [\n        \"JJ\"\n    ], \n    \"yanking\": [\n        \"VBG\"\n    ], \n    \"waterlogged\": [\n        \"JJ\"\n    ], \n    \"undergarment\": [\n        \"NN\"\n    ], \n    \"Entrenched\": [\n        \"VBN\"\n    ], \n    \"porpoises\": [\n        \"NNS\"\n    ], \n    \"Ejaculated\": [\n        \"VBD\"\n    ], \n    \"pinch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"inter-relationships\": [\n        \"NNS\"\n    ], \n    \"Gauer\": [\n        \"NNP\"\n    ], \n    \"nigger\": [\n        \"NN\"\n    ], \n    \"Glayre\": [\n        \"NNP\"\n    ], \n    \"reinvent\": [\n        \"VB\"\n    ], \n    \"Sermon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"chew\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"speck\": [\n        \"NN\"\n    ], \n    \"preached\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hundreds\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"blasphemy\": [\n        \"NN\"\n    ], \n    \"two-time\": [\n        \"JJ\"\n    ], \n    \"surmounting\": [\n        \"VBG\"\n    ], \n    \"horn\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"preacher\": [\n        \"NN\"\n    ], \n    \"preaches\": [\n        \"VBZ\"\n    ], \n    \"hors\": [\n        \"FW\"\n    ], \n    \"dogtrot\": [\n        \"NN\"\n    ], \n    \"unsurpassed\": [\n        \"JJ\"\n    ], \n    \"specs\": [\n        \"NNS\"\n    ], \n    \"decadence\": [\n        \"NN\"\n    ], \n    \"Pindling\": [\n        \"NNP\"\n    ], \n    \"Partly\": [\n        \"RB\"\n    ], \n    \"deliberate\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Mayne\": [\n        \"NNP\"\n    ], \n    \"consequent\": [\n        \"JJ\"\n    ], \n    \"Amazon\": [\n        \"NNP\"\n    ], \n    \"glaciers\": [\n        \"NNS\"\n    ], \n    \"zoomed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"officially\": [\n        \"RB\"\n    ], \n    \"Faced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"crunch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Kandemir\": [\n        \"NNP\"\n    ], \n    \"fall-outs\": [\n        \"NNS\"\n    ], \n    \"Shaw-Walker\": [\n        \"NNP\"\n    ], \n    \"Cricket\": [\n        \"NNP\"\n    ], \n    \"leitmotif\": [\n        \"NN\"\n    ], \n    \"thrombosed\": [\n        \"VBN\"\n    ], \n    \"Accustomed\": [\n        \"JJ\"\n    ], \n    \"Nourishing\": [\n        \"JJ\"\n    ], \n    \"Faces\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"underrepresented\": [\n        \"VBN\"\n    ], \n    \"leitmotiv\": [\n        \"FW\"\n    ], \n    \"Schabowski\": [\n        \"NNP\"\n    ], \n    \"Shea\": [\n        \"NNP\"\n    ], \n    \"items\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Queen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Blanchard\": [\n        \"NNP\"\n    ], \n    \"BLUES\": [\n        \"NNPS\"\n    ], \n    \"reappraise\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Shep\": [\n        \"NNP\"\n    ], \n    \"cross-pollination\": [\n        \"NN\"\n    ], \n    \"calculators\": [\n        \"NNS\"\n    ], \n    \"anarchist\": [\n        \"NN\"\n    ], \n    \"Floridians\": [\n        \"NNP\"\n    ], \n    \"doleful\": [\n        \"JJ\"\n    ], \n    \"glittering\": [\n        \"VBG\"\n    ], \n    \"Orleans\": [\n        \"NNP\"\n    ], \n    \"Jew\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Abderahmane\": [\n        \"NNP\"\n    ], \n    \"graders\": [\n        \"NNS\"\n    ], \n    \"highly\": [\n        \"RB\"\n    ], \n    \"Jeb\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"encountering\": [\n        \"VBG\"\n    ], \n    \"Jed\": [\n        \"NNP\"\n    ], \n    \"Inferno\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"cholla\": [\n        \"NN\"\n    ], \n    \"Jen\": [\n        \"NNP\"\n    ], \n    \"Zarett\": [\n        \"NNP\"\n    ], \n    \"Helsinki\": [\n        \"NNP\"\n    ], \n    \"Cresson\": [\n        \"NNP\"\n    ], \n    \"retaking\": [\n        \"VBG\"\n    ], \n    \"rank-and-file\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Maywood\": [\n        \"NNP\"\n    ], \n    \"hunkered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"plows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"anti-debt\": [\n        \"JJ\"\n    ], \n    \"plagiarize\": [\n        \"VB\"\n    ], \n    \"Chemcat\": [\n        \"NNP\"\n    ], \n    \"Forst\": [\n        \"NNP\"\n    ], \n    \"Vanden\": [\n        \"NNP\"\n    ], \n    \"pre-drilled\": [\n        \"JJ\"\n    ], \n    \"Vander\": [\n        \"NNP\"\n    ], \n    \"zeroed\": [\n        \"VBN\"\n    ], \n    \"ineptness\": [\n        \"NN\"\n    ], \n    \"wellplaced\": [\n        \"JJ\"\n    ], \n    \"Cosmetic\": [\n        \"NNP\"\n    ], \n    \"tecum\": [\n        \"FW\"\n    ], \n    \"Groopman\": [\n        \"NNP\"\n    ], \n    \"Chambre\": [\n        \"NNP\"\n    ], \n    \"Developed\": [\n        \"VBN\"\n    ], \n    \"daises\": [\n        \"NNS\"\n    ], \n    \"Street-style\": [\n        \"JJ\"\n    ], \n    \"unshackled\": [\n        \"JJ\"\n    ], \n    \"overvaulting\": [\n        \"JJ\"\n    ], \n    \"circuit-board\": [\n        \"NN\"\n    ], \n    \"Jimbo\": [\n        \"NNP\"\n    ], \n    \"nozzle\": [\n        \"NN\"\n    ], \n    \"Lehar\": [\n        \"NNP\"\n    ], \n    \"growth-stock\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Super-Set\": [\n        \"NNP\"\n    ], \n    \"lobscouse\": [\n        \"NN\"\n    ], \n    \"antislavery\": [\n        \"JJ\"\n    ], \n    \"Balfour\": [\n        \"NNP\"\n    ], \n    \"white-minority\": [\n        \"JJ\"\n    ], \n    \"unsubordinated\": [\n        \"JJ\"\n    ], \n    \"tornadoes\": [\n        \"NNS\"\n    ], \n    \"farce\": [\n        \"NN\"\n    ], \n    \"Arequipa\": [\n        \"NNP\"\n    ], \n    \"specter\": [\n        \"NN\"\n    ], \n    \"methanol\": [\n        \"NN\"\n    ], \n    \"Bankruptcy-court\": [\n        \"NN\"\n    ], \n    \"foulest\": [\n        \"JJS\"\n    ], \n    \"automobile-manufacturing\": [\n        \"JJ\"\n    ], \n    \"operatic\": [\n        \"JJ\"\n    ], \n    \"gamble\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pizza\": [\n        \"NN\"\n    ], \n    \"Tyranny\": [\n        \"NNP\"\n    ], \n    \"ASARCO\": [\n        \"NNP\"\n    ], \n    \"coined\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Petrofina\": [\n        \"NNP\"\n    ], \n    \"movable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fat-free\": [\n        \"JJ\"\n    ], \n    \"Thamnophis\": [\n        \"NNS\"\n    ], \n    \"austere\": [\n        \"JJ\"\n    ], \n    \"stick-and-carrot\": [\n        \"NN\"\n    ], \n    \"interlining\": [\n        \"NN\"\n    ], \n    \"Erma\": [\n        \"NNP\"\n    ], \n    \"less-than-truckload\": [\n        \"JJ\"\n    ], \n    \"AutoPacific\": [\n        \"NNP\"\n    ], \n    \"thrift-bailout\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"encompassing\": [\n        \"VBG\"\n    ], \n    \"aboveground\": [\n        \"JJ\"\n    ], \n    \"hummable\": [\n        \"JJ\"\n    ], \n    \"Year-earlier\": [\n        \"JJ\"\n    ], \n    \"anti-outsider\": [\n        \"NN\"\n    ], \n    \"L.P.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Space-net\": [\n        \"NNP\"\n    ], \n    \"Glasow\": [\n        \"NNP\"\n    ], \n    \"tiffs\": [\n        \"NNS\"\n    ], \n    \"specially-designed\": [\n        \"JJ\"\n    ], \n    \"Strassner\": [\n        \"NNP\"\n    ], \n    \"large-enough\": [\n        \"JJ\"\n    ], \n    \"nets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"cost-data\": [\n        \"JJ\"\n    ], \n    \"befallen\": [\n        \"VBN\"\n    ], \n    \"Salu\": [\n        \"NNP\"\n    ], \n    \"savors\": [\n        \"NNS\"\n    ], \n    \"feuding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Squint\": [\n        \"NN\"\n    ], \n    \"PAPERS\": [\n        \"NNS\"\n    ], \n    \"discomfited\": [\n        \"JJ\"\n    ], \n    \"Orcutt\": [\n        \"NNP\"\n    ], \n    \"carton\": [\n        \"NN\"\n    ], \n    \"Tsvetkov\": [\n        \"NNP\"\n    ], \n    \"Thermogravimetric\": [\n        \"JJ\"\n    ], \n    \"noncash\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mercy\": [\n        \"NNP\"\n    ], \n    \"bans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Manpower\": [\n        \"NNP\"\n    ], \n    \"Analysis\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bane\": [\n        \"NN\"\n    ], \n    \"band\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bang\": [\n        \"NN\", \n        \"VB\", \n        \"UH\", \n        \"VBP\"\n    ], \n    \"Merck\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Homemaster\": [\n        \"JJ\"\n    ], \n    \"payback\": [\n        \"NN\"\n    ], \n    \"Merce\": [\n        \"NNP\"\n    ], \n    \"bank\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"MBIA\": [\n        \"NNP\"\n    ], \n    \"Medvedev\": [\n        \"NNP\"\n    ], \n    \"demotion\": [\n        \"NN\"\n    ], \n    \"Bar-H\": [\n        \"NNP\"\n    ], \n    \"reguli\": [\n        \"NNS\"\n    ], \n    \"automobile\": [\n        \"NN\"\n    ], \n    \"once-troubled\": [\n        \"JJ\"\n    ], \n    \"Occasionally\": [\n        \"RB\"\n    ], \n    \"Toot-toot\": [\n        \"UH\"\n    ], \n    \"pied-a-terre\": [\n        \"FW\"\n    ], \n    \"profusely\": [\n        \"RB\"\n    ], \n    \"Frankfurter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tax-and-budget\": [\n        \"JJ\"\n    ], \n    \"ologies\": [\n        \"NNS\"\n    ], \n    \"summarily\": [\n        \"RB\"\n    ], \n    \"corpsman\": [\n        \"NN\"\n    ], \n    \"back-of-the-envelope\": [\n        \"JJ\"\n    ], \n    \"logs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mangled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"REFLECTIONS\": [\n        \"NNP\"\n    ], \n    \"logo\": [\n        \"NN\"\n    ], \n    \"Goldsmith\": [\n        \"NNP\"\n    ], \n    \"loaders\": [\n        \"NNS\"\n    ], \n    \"company-operated\": [\n        \"JJ\"\n    ], \n    \"whining\": [\n        \"VBG\"\n    ], \n    \"burlap\": [\n        \"NN\"\n    ], \n    \"hooked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Newbury\": [\n        \"NNP\"\n    ], \n    \"remorse\": [\n        \"NN\"\n    ], \n    \"Complementing\": [\n        \"VBG\"\n    ], \n    \"medicine\": [\n        \"NN\"\n    ], \n    \"hooker\": [\n        \"NN\"\n    ], \n    \"imperialists\": [\n        \"NNS\"\n    ], \n    \"Nasional\": [\n        \"NNP\"\n    ], \n    \"too-shiny\": [\n        \"JJ\"\n    ], \n    \"standard\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ecliptic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Cautiously\": [\n        \"RB\"\n    ], \n    \"horn-rim\": [\n        \"JJ\"\n    ], \n    \"morass\": [\n        \"NN\"\n    ], \n    \"Angeles\": [\n        \"NNP\"\n    ], \n    \"Saklad\": [\n        \"NNP\"\n    ], \n    \"watercolorist\": [\n        \"NN\"\n    ], \n    \"under-represented\": [\n        \"JJ\"\n    ], \n    \"spoonbills\": [\n        \"NNS\"\n    ], \n    \"Flexicokers\": [\n        \"NNS\"\n    ], \n    \"Audits\": [\n        \"NNPS\"\n    ], \n    \"Pervanas\": [\n        \"NNP\"\n    ], \n    \"meshed\": [\n        \"VBN\"\n    ], \n    \"lexicostatistic\": [\n        \"JJ\"\n    ], \n    \"saddling\": [\n        \"VBG\"\n    ], \n    \"delicious\": [\n        \"JJ\"\n    ], \n    \"Quod\": [\n        \"FW\"\n    ], \n    \"thoughtfully\": [\n        \"RB\"\n    ], \n    \"navigator\": [\n        \"NN\"\n    ], \n    \"Committeemen\": [\n        \"NNS\"\n    ], \n    \"Cormack\": [\n        \"NNP\"\n    ], \n    \"centrifuge\": [\n        \"NN\"\n    ], \n    \"Barris\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"omnipresence\": [\n        \"NN\"\n    ], \n    \"low-life\": [\n        \"JJ\"\n    ], \n    \"mergers-and-acquisitions\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"sedans\": [\n        \"NNS\"\n    ], \n    \"crunches\": [\n        \"NNS\"\n    ], \n    \"Unease\": [\n        \"NN\"\n    ], \n    \"Barrie\": [\n        \"NNP\"\n    ], \n    \"Medicaid\": [\n        \"NNP\"\n    ], \n    \"farming\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"crunched\": [\n        \"VBD\"\n    ], \n    \"Barrio\": [\n        \"NNP\"\n    ], \n    \"Bushels\": [\n        \"NNS\"\n    ], \n    \"Masonic\": [\n        \"NNP\"\n    ], \n    \"decentralize\": [\n        \"VB\"\n    ], \n    \"refraining\": [\n        \"VBG\"\n    ], \n    \"grandchildren\": [\n        \"NNS\"\n    ], \n    \"pro-labor\": [\n        \"JJ\"\n    ], \n    \"Quoting\": [\n        \"VBG\"\n    ], \n    \"diversified\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Vanderbilts\": [\n        \"NNS\"\n    ], \n    \"sale-purchase\": [\n        \"NN\"\n    ], \n    \"maxim\": [\n        \"NN\"\n    ], \n    \"five-month-old\": [\n        \"JJ\"\n    ], \n    \"Escalante\": [\n        \"NNP\"\n    ], \n    \"hazelnut\": [\n        \"NN\"\n    ], \n    \"corresponded\": [\n        \"VBD\"\n    ], \n    \"dependent-care\": [\n        \"JJ\"\n    ], \n    \"air-traffic\": [\n        \"NN\"\n    ], \n    \"intrusion\": [\n        \"NN\"\n    ], \n    \"unblinking\": [\n        \"JJ\"\n    ], \n    \"computer-store\": [\n        \"NN\"\n    ], \n    \"seated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"FriedrichsInc.\": [\n        \"NNP\"\n    ], \n    \"badmen\": [\n        \"NNS\"\n    ], \n    \"rationalization\": [\n        \"NN\"\n    ], \n    \"Name-dropping\": [\n        \"NN\"\n    ], \n    \"checkout-stand\": [\n        \"NN\"\n    ], \n    \"M.W.\": [\n        \"NNP\"\n    ], \n    \"SIGNALED\": [\n        \"VBN\"\n    ], \n    \"stalls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Depot\": [\n        \"NNP\"\n    ], \n    \"Multimate\": [\n        \"NNP\"\n    ], \n    \"vocational-advancement\": [\n        \"JJ\"\n    ], \n    \"Cosmopolitan\": [\n        \"NNP\"\n    ], \n    \"second-time\": [\n        \"JJ\"\n    ], \n    \"widen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"property-claim\": [\n        \"NN\"\n    ], \n    \"latter\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"crinkles\": [\n        \"NNS\"\n    ], \n    \"Ridder\": [\n        \"NNP\"\n    ], \n    \"unhook\": [\n        \"VB\"\n    ], \n    \"coldness\": [\n        \"NN\"\n    ], \n    \"frictionless\": [\n        \"JJ\"\n    ], \n    \"anti-bike\": [\n        \"JJ\"\n    ], \n    \"curfew\": [\n        \"NN\"\n    ], \n    \"insulated\": [\n        \"VBN\", \n        \".\", \n        \"JJ\"\n    ], \n    \"Year-End\": [\n        \"JJ\"\n    ], \n    \"maiden\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"timidity\": [\n        \"NN\"\n    ], \n    \"boxcar\": [\n        \"NN\"\n    ], \n    \"injection-molded\": [\n        \"JJ\"\n    ], \n    \"involving\": [\n        \"VBG\"\n    ], \n    \"negro\": [\n        \"NNP\"\n    ], \n    \"autopsy\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Lifland\": [\n        \"NNP\"\n    ], \n    \"demoralizes\": [\n        \"VBZ\"\n    ], \n    \"intergroup\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"herpetological\": [\n        \"JJ\"\n    ], \n    \"Hosni\": [\n        \"NNP\"\n    ], \n    \"calculated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Schlumberger\": [\n        \"NNP\"\n    ], \n    \"Dynamic\": [\n        \"NNP\"\n    ], \n    \"scavenging\": [\n        \"VBG\"\n    ], \n    \"Emperors\": [\n        \"NNS\"\n    ], \n    \"leaflet\": [\n        \"NN\"\n    ], \n    \"judgmental\": [\n        \"JJ\"\n    ], \n    \"demoralized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Frostbite\": [\n        \"NN\"\n    ], \n    \"responded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"nonporous\": [\n        \"JJ\"\n    ], \n    \"Missiles\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Morison\": [\n        \"NNP\"\n    ], \n    \"religions\": [\n        \"NNS\"\n    ], \n    \"Riad\": [\n        \"NNP\"\n    ], \n    \"word-for-word\": [\n        \"JJ\"\n    ], \n    \"unattached\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"enjoyed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"SanAntonio\": [\n        \"NNP\"\n    ], \n    \"Dec.\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"foraging\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"painfully\": [\n        \"RB\"\n    ], \n    \"Mixte\": [\n        \"NNP\"\n    ], \n    \"thin-slab\": [\n        \"JJ\"\n    ], \n    \"implementation\": [\n        \"NN\"\n    ], \n    \"layman\": [\n        \"NN\"\n    ], \n    \"Solicitor\": [\n        \"NNP\"\n    ], \n    \"Paev\": [\n        \"NNP\"\n    ], \n    \"adequate\": [\n        \"JJ\"\n    ], \n    \"Irec\": [\n        \"NNP\"\n    ], \n    \"Marseillaise\": [\n        \"NNP\"\n    ], \n    \"Omnicare\": [\n        \"NNP\"\n    ], \n    \"masons\": [\n        \"NNS\"\n    ], \n    \"day-by-day\": [\n        \"JJ\"\n    ], \n    \"backed-up\": [\n        \"JJ\"\n    ], \n    \"vowels\": [\n        \"NNS\"\n    ], \n    \"Ladies\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Taxes\": [\n        \"NNS\"\n    ], \n    \"pierced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fagershein\": [\n        \"NNP\"\n    ], \n    \"nasty\": [\n        \"JJ\"\n    ], \n    \"headlong\": [\n        \"RB\"\n    ], \n    \"furnishings\": [\n        \"NNS\"\n    ], \n    \"billion-a\": [\n        \"JJ\"\n    ], \n    \"gunslinging\": [\n        \"VBG\"\n    ], \n    \"Deck\": [\n        \"NNP\"\n    ], \n    \"Unfilled\": [\n        \"JJ\"\n    ], \n    \"unmet\": [\n        \"JJ\"\n    ], \n    \"Strangelove\": [\n        \"NNP\"\n    ], \n    \"Frankfurt-based\": [\n        \"JJ\"\n    ], \n    \"unshakeable\": [\n        \"JJ\"\n    ], \n    \"reviewed\\\\/designed\": [\n        \"VBN\"\n    ], \n    \"Ad-Unit\": [\n        \"NN\"\n    ], \n    \"de-stocking\": [\n        \"NN\"\n    ], \n    \"complimenting\": [\n        \"VBG\"\n    ], \n    \"Kezar\": [\n        \"NNP\"\n    ], \n    \"Astonishingly\": [\n        \"RB\"\n    ], \n    \"scours\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"GBL\": [\n        \"NNP\"\n    ], \n    \"initialed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Thief\": [\n        \"NN\"\n    ], \n    \"projections\": [\n        \"NNS\"\n    ], \n    \"damnation\": [\n        \"NN\"\n    ], \n    \"Cesare\": [\n        \"NNP\"\n    ], \n    \"Tension\": [\n        \"NN\"\n    ], \n    \"appellate-litigation\": [\n        \"NN|JJ\"\n    ], \n    \"tongue-twister\": [\n        \"NN\"\n    ], \n    \"afloat\": [\n        \"RB\"\n    ], \n    \"Wiegers\": [\n        \"NNP\"\n    ], \n    \"unable\": [\n        \"JJ\"\n    ], \n    \"Quindlen\": [\n        \"NNP\"\n    ], \n    \"contraband\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Moderating\": [\n        \"VBG\"\n    ], \n    \"Sinkula\": [\n        \"NNP\"\n    ], \n    \"Huxley\": [\n        \"NNP\"\n    ], \n    \"Kohnstamm\": [\n        \"NNP\"\n    ], \n    \"Duck\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Reavey\": [\n        \"NNP\"\n    ], \n    \"uncataloged\": [\n        \"VBN\"\n    ], \n    \"lurching\": [\n        \"VBG\"\n    ], \n    \"megabillion\": [\n        \"NN\"\n    ], \n    \"Bouvardier\": [\n        \"NNP\"\n    ], \n    \"Judson\": [\n        \"NNP\"\n    ], \n    \"linkage\": [\n        \"NN\"\n    ], \n    \"homo-hatred\": [\n        \"NN\"\n    ], \n    \"hatchings\": [\n        \"NNS\"\n    ], \n    \"reduced-instruction-set-computer\": [\n        \"JJ\"\n    ], \n    \"Aggregate\": [\n        \"JJ\"\n    ], \n    \"Heavily\": [\n        \"RB\"\n    ], \n    \"Credit-Card\": [\n        \"NN\"\n    ], \n    \"Amhowitz\": [\n        \"NNP\"\n    ], \n    \"gasped\": [\n        \"VBD\"\n    ], \n    \"Doug\": [\n        \"NNP\"\n    ], \n    \"germinated\": [\n        \"JJ\"\n    ], \n    \"homesickness\": [\n        \"NN\"\n    ], \n    \"Conversely\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Sistine\": [\n        \"NNP\"\n    ], \n    \"pulleys\": [\n        \"NNS\"\n    ], \n    \"freakish\": [\n        \"JJ\"\n    ], \n    \"seizure\": [\n        \"NN\"\n    ], \n    \"arms-kickback\": [\n        \"NN\"\n    ], \n    \"Colmans\": [\n        \"NNPS\"\n    ], \n    \"refile\": [\n        \"VB\"\n    ], \n    \"Genscher\": [\n        \"NNP\"\n    ], \n    \"interrelations\": [\n        \"NNS\"\n    ], \n    \"constructively\": [\n        \"RB\"\n    ], \n    \"oblivious\": [\n        \"JJ\"\n    ], \n    \"refill\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"zigzagging\": [\n        \"VBG\"\n    ], \n    \"Treasury-Fed\": [\n        \"NNP\"\n    ], \n    \"highpoint\": [\n        \"NN\"\n    ], \n    \"Erhart\": [\n        \"NNP\"\n    ], \n    \"high-visibility\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unhappily\": [\n        \"RB\"\n    ], \n    \"Paw\": [\n        \"NN\"\n    ], \n    \"selloff\": [\n        \"NN\"\n    ], \n    \"drafting\": [\n        \"VBG\", \n        \"NN\", \n        \"NN|VBG\"\n    ], \n    \"accentuate\": [\n        \"VB\"\n    ], \n    \"Beers\": [\n        \"NNP\"\n    ], \n    \"ransacking\": [\n        \"VBG\"\n    ], \n    \"Smoot-Hawley\": [\n        \"NNP\"\n    ], \n    \"thoughtprovoking\": [\n        \"JJ\"\n    ], \n    \"warmth\": [\n        \"NN\"\n    ], \n    \"duties\": [\n        \"NNS\"\n    ], \n    \"poring\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"cosmetology\": [\n        \"NN\"\n    ], \n    \"Teodorani\": [\n        \"NNP\"\n    ], \n    \"Coronado\": [\n        \"NNP\"\n    ], \n    \"Unincorporated\": [\n        \"NNP\"\n    ], \n    \"pejorative\": [\n        \"JJ\"\n    ], \n    \"high-yields\": [\n        \"NNS\"\n    ], \n    \"skinheads\": [\n        \"NNS\"\n    ], \n    \"applied\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBD|VBN\", \n        \"JJ\"\n    ], \n    \"chicanery\": [\n        \"NN\"\n    ], \n    \"harms\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"publicly\": [\n        \"RB\"\n    ], \n    \"Tenn.\": [\n        \"NNP\"\n    ], \n    \"Sicily\": [\n        \"NNP\"\n    ], \n    \"blue-green\": [\n        \"JJ\"\n    ], \n    \"unavailability\": [\n        \"NN\"\n    ], \n    \"Messengers\": [\n        \"NNPS\"\n    ], \n    \"Mechanicsburg\": [\n        \"NNP\"\n    ], \n    \"applies\": [\n        \"VBZ\"\n    ], \n    \"Wattenberg\": [\n        \"NNP\"\n    ], \n    \"hard-fought\": [\n        \"JJ\"\n    ], \n    \"soon-to-expire\": [\n        \"JJ\"\n    ], \n    \"Grinevsky\": [\n        \"NNP\"\n    ], \n    \"H.M.S.\": [\n        \"NNP\"\n    ], \n    \"Folmar\": [\n        \"NNP\"\n    ], \n    \"skipping\": [\n        \"VBG\"\n    ], \n    \"Virtually\": [\n        \"RB\"\n    ], \n    \"unproved\": [\n        \"JJ\"\n    ], \n    \"Ronkonkoma\": [\n        \"NNP\"\n    ], \n    \"grandiose\": [\n        \"JJ\"\n    ], \n    \"off-flavors\": [\n        \"NNS\"\n    ], \n    \"perform\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"trashing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"above-noted\": [\n        \"JJ\"\n    ], \n    \"Revenge\": [\n        \"NN\"\n    ], \n    \"Harrisburg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leming\": [\n        \"NNP\"\n    ], \n    \"sheltered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Ike\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"incorrectly\": [\n        \"RB\"\n    ], \n    \"anti-Turkish\": [\n        \"JJ\"\n    ], \n    \"bunny\": [\n        \"NN\"\n    ], \n    \"crevices\": [\n        \"NNS\"\n    ], \n    \"Distance\": [\n        \"NNP\"\n    ], \n    \"Instituto\": [\n        \"NNP\"\n    ], \n    \"springing\": [\n        \"VBG\"\n    ], \n    \"Tichenor\": [\n        \"NNP\"\n    ], \n    \"non-poetry\": [\n        \"NN\"\n    ], \n    \"confiding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Network-access\": [\n        \"JJ\"\n    ], \n    \"Prism\": [\n        \"NNP\"\n    ], \n    \"higher-than-anticipated\": [\n        \"JJ\"\n    ], \n    \"knockoff\": [\n        \"NN\"\n    ], \n    \"possibly\": [\n        \"RB\"\n    ], \n    \"burbles\": [\n        \"VBZ\"\n    ], \n    \"DeGeurin\": [\n        \"NNP\"\n    ], \n    \"FRANCHISE\": [\n        \"NN\"\n    ], \n    \"self-deceptions\": [\n        \"NNS\"\n    ], \n    \"unified\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"macaque\": [\n        \"JJ\"\n    ], \n    \"stringent\": [\n        \"JJ\"\n    ], \n    \"enslaving\": [\n        \"NN\"\n    ], \n    \"invalidate\": [\n        \"VB\"\n    ], \n    \"athletic\": [\n        \"JJ\"\n    ], \n    \"interrogatives\": [\n        \"NNS\"\n    ], \n    \"Missouri\": [\n        \"NNP\"\n    ], \n    \"ozonedepletion\": [\n        \"NN\"\n    ], \n    \"short-cut\": [\n        \"JJ\"\n    ], \n    \"Consistently\": [\n        \"RB\"\n    ], \n    \"quintessential\": [\n        \"JJ\"\n    ], \n    \"unifies\": [\n        \"VBZ\"\n    ], \n    \"Spike\": [\n        \"NNP\"\n    ], \n    \"crookery\": [\n        \"NN\"\n    ], \n    \"Nicos\": [\n        \"NNP\"\n    ], \n    \"Wanniski\": [\n        \"NNP\"\n    ], \n    \"Philippe\": [\n        \"NNP\"\n    ], \n    \"unique\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Istanbul\": [\n        \"NNP\"\n    ], \n    \"Bismarckian\": [\n        \"JJ\"\n    ], \n    \"Philippi\": [\n        \"NNP\"\n    ], \n    \"exalt\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"multi-crystal\": [\n        \"JJ\"\n    ], \n    \"Bartoli\": [\n        \"NNP\"\n    ], \n    \"Castrol\": [\n        \"NNP\"\n    ], \n    \"Nail\": [\n        \"NNP\"\n    ], \n    \"Biologicals\": [\n        \"NNP\"\n    ], \n    \"Cima\": [\n        \"NNP\"\n    ], \n    \"editorials\": [\n        \"NNS\"\n    ], \n    \"boxed\": [\n        \"VBN\"\n    ], \n    \"sloganeering\": [\n        \"VBG\"\n    ], \n    \"Tampering\": [\n        \"VBG\"\n    ], \n    \"Britannica\": [\n        \"NNP\"\n    ], \n    \"boxes\": [\n        \"NNS\"\n    ], \n    \"ginnin\": [\n        \"VBG\"\n    ], \n    \"bastards\": [\n        \"NNS\"\n    ], \n    \"lymphoma\": [\n        \"NN\"\n    ], \n    \"Liverpudlians\": [\n        \"NNPS\"\n    ], \n    \"Trump\": [\n        \"NNP\"\n    ], \n    \"LeVecke\": [\n        \"NNP\"\n    ], \n    \"non-Catholic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"summer\\\\\": [\n        \"JJ\"\n    ], \n    \"proofreading\": [\n        \"VBG\"\n    ], \n    \"individual-investor\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"aimed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sybil\": [\n        \"NNP\"\n    ], \n    \"Caldwell\": [\n        \"NNP\"\n    ], \n    \"Ayer\": [\n        \"NNP\"\n    ], \n    \"Datsuns\": [\n        \"NNPS\"\n    ], \n    \"affied\": [\n        \"VBD\"\n    ], \n    \"Banque\": [\n        \"NNP\"\n    ], \n    \"criminology\": [\n        \"NN\"\n    ], \n    \"denies\": [\n        \"VBZ\"\n    ], \n    \"do-it-yourself\": [\n        \"JJ\"\n    ], \n    \"conservationists\": [\n        \"NNS\"\n    ], \n    \"Ex-Premier\": [\n        \"NNP\"\n    ], \n    \"Palmero\": [\n        \"NNP\"\n    ], \n    \"filming\": [\n        \"VBG\"\n    ], \n    \"indoctrination\": [\n        \"NN\"\n    ], \n    \"Tragically\": [\n        \"RB\"\n    ], \n    \"denied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"wineries\": [\n        \"NNS\"\n    ], \n    \"Mitsuru\": [\n        \"NNP\"\n    ], \n    \"sign-off\": [\n        \"NN\"\n    ], \n    \"Cross\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sensationalism\": [\n        \"NN\"\n    ], \n    \"posh\": [\n        \"JJ\"\n    ], \n    \"copiously\": [\n        \"RB\"\n    ], \n    \"pose\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"confer\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"illustration\": [\n        \"NN\"\n    ], \n    \"Methuselah\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"sporting-goods\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"post\": [\n        \"NN\", \n        \"FW\", \n        \"IN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"Poyner\": [\n        \"NNP\"\n    ], \n    \"chafe\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"rearrange\": [\n        \"VB\"\n    ], \n    \"environmentalist-actor\": [\n        \"NN\"\n    ], \n    \"chaff\": [\n        \"NN\"\n    ], \n    \"rallying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Einar\": [\n        \"NNP\"\n    ], \n    \"integrated-technologies\": [\n        \"NNS\"\n    ], \n    \"Malmros\": [\n        \"NNP\"\n    ], \n    \"months\": [\n        \"NNS\"\n    ], \n    \"accepts\": [\n        \"VBZ\"\n    ], \n    \"sizzling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Cheetham\": [\n        \"NNP\"\n    ], \n    \"incur\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"octopus\": [\n        \"NN\"\n    ], \n    \"extrusions\": [\n        \"NNS\"\n    ], \n    \"soldiering\": [\n        \"NN\"\n    ], \n    \"military-service\": [\n        \"JJ\"\n    ], \n    \"non-books\": [\n        \"NNS\"\n    ], \n    \"ruefulness\": [\n        \"NN\"\n    ], \n    \"float\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"gearing\": [\n        \"VBG\"\n    ], \n    \"PUNITIVE\": [\n        \"JJ\"\n    ], \n    \"Bidard\": [\n        \"NNP\"\n    ], \n    \"zero-coupon\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"retrenching\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Taos\": [\n        \"NNP\"\n    ], \n    \"strangely\": [\n        \"RB\"\n    ], \n    \"wan\": [\n        \"JJ\"\n    ], \n    \"Postels\": [\n        \"NNPS\"\n    ], \n    \"Specifications\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Grubman\": [\n        \"NNP\"\n    ], \n    \"truncated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Africaine\": [\n        \"NNP\"\n    ], \n    \"Pa.\": [\n        \"NNP\"\n    ], \n    \"way\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"fulminations\": [\n        \"NNS\"\n    ], \n    \"Elena\": [\n        \"NNP\"\n    ], \n    \"innovators\": [\n        \"NNS\"\n    ], \n    \"was\": [\n        \"VBD\", \n        \":\"\n    ], \n    \"Landowners\": [\n        \"NNS\"\n    ], \n    \"risk-benefited\": [\n        \"NN\"\n    ], \n    \"top-grade\": [\n        \"JJ\"\n    ], \n    \"broad-nibbed\": [\n        \"JJ\"\n    ], \n    \"pirouette\": [\n        \"NN\"\n    ], \n    \"Nalbone\": [\n        \"NNP\"\n    ], \n    \"becoming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"sundry\": [\n        \"JJ\"\n    ], \n    \"forgetful\": [\n        \"JJ\"\n    ], \n    \"ring-around-the-rosie\": [\n        \"NN\"\n    ], \n    \"mysterious\": [\n        \"JJ\"\n    ], \n    \"Belleville\": [\n        \"NNP\"\n    ], \n    \"frost-bitten\": [\n        \"JJ\"\n    ], \n    \"secretary-treasurer\": [\n        \"NN\"\n    ], \n    \"comprehending\": [\n        \"VBG\"\n    ], \n    \"bypassing\": [\n        \"VBG\"\n    ], \n    \"plenitude\": [\n        \"NN\"\n    ], \n    \"Reykjavik\": [\n        \"NNP\"\n    ], \n    \"anti-hypertensive\": [\n        \"JJ\"\n    ], \n    \"invincible\": [\n        \"JJ\"\n    ], \n    \"Witherspoon\": [\n        \"NNP\"\n    ], \n    \"flirtatious\": [\n        \"JJ\"\n    ], \n    \"Seisakusho\": [\n        \"NNP\"\n    ], \n    \"attuned\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"gulley\": [\n        \"NN\"\n    ], \n    \"winery\": [\n        \"NN\"\n    ], \n    \"Lautner\": [\n        \"NNP\"\n    ], \n    \"emit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"renaturation\": [\n        \"NN\"\n    ], \n    \"promises\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Mfg.\": [\n        \"NNP\"\n    ], \n    \"nudity\": [\n        \"NN\"\n    ], \n    \"Rona\": [\n        \"NNP\"\n    ], \n    \"Rong\": [\n        \"NNP\"\n    ], \n    \"muscular\": [\n        \"JJ\"\n    ], \n    \"assassinations\": [\n        \"NNS\"\n    ], \n    \"moors\": [\n        \"NNS\"\n    ], \n    \"promised\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Milacron\": [\n        \"NNP\"\n    ], \n    \"Bendix\\\\/King\": [\n        \"NNP\"\n    ], \n    \"Fledgling\": [\n        \"NN\"\n    ], \n    \"incursion\": [\n        \"NN\"\n    ], \n    \"non-economists\": [\n        \"NNS\"\n    ], \n    \"loan-defaulters\": [\n        \"NNS\"\n    ], \n    \"Donald\": [\n        \"NNP\"\n    ], \n    \"corporate-settlement\": [\n        \"NN\"\n    ], \n    \"horse-chestnut\": [\n        \"NN\"\n    ], \n    \"fair-sized\": [\n        \"JJ\"\n    ], \n    \"hero-worship\": [\n        \"NN\"\n    ], \n    \"autonomic\": [\n        \"JJ\"\n    ], \n    \"brothers\": [\n        \"NNS\"\n    ], \n    \"multiple-choice\": [\n        \"JJ\"\n    ], \n    \"juices\": [\n        \"NNS\"\n    ], \n    \"Hillsdale\": [\n        \"NNP\"\n    ], \n    \"remarrying\": [\n        \"NN\"\n    ], \n    \"Pre-trial\": [\n        \"JJ\"\n    ], \n    \"reflexes\": [\n        \"NNS\"\n    ], \n    \"Morishita\": [\n        \"NNP\"\n    ], \n    \"red-tailed\": [\n        \"JJ\"\n    ], \n    \"Dalian\": [\n        \"NNP\"\n    ], \n    \"pacer\": [\n        \"NN\"\n    ], \n    \"paces\": [\n        \"NNS\"\n    ], \n    \"necessitates\": [\n        \"VBZ\"\n    ], \n    \"Rachwalski\": [\n        \"NNP\"\n    ], \n    \"classmate\": [\n        \"NN\"\n    ], \n    \"pacem\": [\n        \"FW\"\n    ], \n    \"necessitated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"longshoreman\": [\n        \"NN\"\n    ], \n    \"precedent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"paced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Goldome\": [\n        \"NNP\"\n    ], \n    \"anti-state\": [\n        \"JJ\"\n    ], \n    \"Gotham\": [\n        \"VB\"\n    ], \n    \"Gevergeyev\": [\n        \"NNP\"\n    ], \n    \"thrift-fraud\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Disclosed\": [\n        \"VBN\"\n    ], \n    \"reigniting\": [\n        \"VBG\"\n    ], \n    \"small-diameter\": [\n        \"JJ\"\n    ], \n    \"A.W.\": [\n        \"NNP\"\n    ], \n    \"Cadiz\": [\n        \"NNP\"\n    ], \n    \"certainly\": [\n        \"RB\"\n    ], \n    \"factories\": [\n        \"NNS\"\n    ], \n    \"mail-processing\": [\n        \"JJ\"\n    ], \n    \"kennings\": [\n        \"NNS\"\n    ], \n    \"Solna\": [\n        \"NNP\"\n    ], \n    \"seven-shot\": [\n        \"JJ\"\n    ], \n    \"compensate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unhappiest\": [\n        \"JJS\"\n    ], \n    \"gelatin-like\": [\n        \"JJ\"\n    ], \n    \"text\": [\n        \"NN\"\n    ], \n    \"southwest\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\", \n        \"JJS\"\n    ], \n    \"division\": [\n        \"NN\"\n    ], \n    \"Segundo\": [\n        \"NNP\"\n    ], \n    \"Arbitraging\": [\n        \"VBG\"\n    ], \n    \"diddling\": [\n        \"VBG\"\n    ], \n    \"high-water\": [\n        \"JJ\"\n    ], \n    \"ferociously\": [\n        \"RB\"\n    ], \n    \"videocassettes\": [\n        \"NNS\"\n    ], \n    \"kitten\": [\n        \"NN\"\n    ], \n    \"hotly\": [\n        \"RB\"\n    ], \n    \"stolid-looking\": [\n        \"JJ\"\n    ], \n    \"Jersey\": [\n        \"NNP\"\n    ], \n    \"Rak\": [\n        \"NNP\"\n    ], \n    \"pinhead\": [\n        \"NN\"\n    ], \n    \"consorted\": [\n        \"VBD\"\n    ], \n    \"respiratory\": [\n        \"JJ\"\n    ], \n    \"Leningrad\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"presented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"respirators\": [\n        \"NNS\"\n    ], \n    \"offender\": [\n        \"NN\"\n    ], \n    \"Nakajima\": [\n        \"NNP\"\n    ], \n    \"Duchess\": [\n        \"NNP\"\n    ], \n    \"presenter\": [\n        \"NN\"\n    ], \n    \"insider-selling\": [\n        \"NN\"\n    ], \n    \"Lobbyists\": [\n        \"NNS\"\n    ], \n    \"full-grown\": [\n        \"JJ\"\n    ], \n    \"Trempler\": [\n        \"NNP\"\n    ], \n    \"car-care\": [\n        \"JJ\"\n    ], \n    \"affiliation\": [\n        \"NN\"\n    ], \n    \"self-insure\": [\n        \"VBP\"\n    ], \n    \"Croissier\": [\n        \"NNP\"\n    ], \n    \"Finding\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"helpless\": [\n        \"JJ\"\n    ], \n    \"perusing\": [\n        \"VBG\"\n    ], \n    \"Teito\": [\n        \"NNP\"\n    ], \n    \"enticing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"LEADERS\": [\n        \"NNS\"\n    ], \n    \"three-page\": [\n        \"JJ\"\n    ], \n    \"COMPANY\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Wherefore\": [\n        \"NN\", \n        \"IN\"\n    ], \n    \"uniform\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Fahd\": [\n        \"NNP\"\n    ], \n    \"Prizes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Demonstrating\": [\n        \"VBG\"\n    ], \n    \"illustrations\": [\n        \"NNS\"\n    ], \n    \"time-consuming\": [\n        \"JJ\"\n    ], \n    \"Along\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"dental\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Minorco\": [\n        \"NNP\"\n    ], \n    \"Molten\": [\n        \"JJ\"\n    ], \n    \"frothing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Summa\": [\n        \"NNP\"\n    ], \n    \"Experiencing\": [\n        \"VBG\"\n    ], \n    \"mellifluous\": [\n        \"JJ\"\n    ], \n    \"Yucatan\": [\n        \"NNP\"\n    ], \n    \"Harch\": [\n        \"NNP\"\n    ], \n    \"Raw\": [\n        \"JJ\"\n    ], \n    \"re-examine\": [\n        \"VB\"\n    ], \n    \"Slope\": [\n        \"NNP\"\n    ], \n    \"Alix\": [\n        \"NNP\"\n    ], \n    \"exemption\": [\n        \"NN\"\n    ], \n    \"concurred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"flames\": [\n        \"NNS\"\n    ], \n    \"sold-out\": [\n        \"JJ\"\n    ], \n    \"Rivers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"flamed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"single-crystal\": [\n        \"NN\"\n    ], \n    \"Blackboard\": [\n        \"NNP\"\n    ], \n    \"IND\": [\n        \"NNP\"\n    ], \n    \"Rivera\": [\n        \"NNP\"\n    ], \n    \"INB\": [\n        \"NNP\"\n    ], \n    \"INC\": [\n        \"NNP\"\n    ], \n    \"snatching\": [\n        \"VBG\"\n    ], \n    \"fundamentalist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bar-staged\": [\n        \"JJ\"\n    ], \n    \"die-dead\": [\n        \"NN\"\n    ], \n    \"paragon\": [\n        \"NN\"\n    ], \n    \"Tic-Tac-Toe\": [\n        \"NNP\"\n    ], \n    \"sufferers\": [\n        \"NNS\"\n    ], \n    \"capacious\": [\n        \"JJ\"\n    ], \n    \"plastic-products\": [\n        \"NNS\"\n    ], \n    \"Orchestre\": [\n        \"NNP\"\n    ], \n    \"Maung\": [\n        \"NNP\"\n    ], \n    \"bluffing\": [\n        \"VBG\"\n    ], \n    \"Tokio\": [\n        \"NNP\"\n    ], \n    \"ripening\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Belorussian\": [\n        \"NNP\"\n    ], \n    \"balking\": [\n        \"VBG\"\n    ], \n    \"selects\": [\n        \"VBZ\"\n    ], \n    \"auto-sales\": [\n        \"NNS\"\n    ], \n    \"dramatizing\": [\n        \"VBG\"\n    ], \n    \"F\": [\n        \"NN\", \n        \"LS\", \n        \"NNP\"\n    ], \n    \"Orchestra\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Inspired\": [\n        \"VBN\"\n    ], \n    \"Hachiya\": [\n        \"NNP\"\n    ], \n    \"throbbed\": [\n        \"VBD\"\n    ], \n    \"mass-production\": [\n        \"NN\"\n    ], \n    \"CAT\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"SARK\": [\n        \"NNP\"\n    ], \n    \"PIPELINE\": [\n        \"NNP\"\n    ], \n    \"migrants\": [\n        \"NNS\"\n    ], \n    \"Prix\": [\n        \"NNP\"\n    ], \n    \"Moe\": [\n        \"NNP\"\n    ], \n    \"pink-cheeked\": [\n        \"JJ\"\n    ], \n    \"heart\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"hears\": [\n        \"VBZ\"\n    ], \n    \"attribute\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"stoutly\": [\n        \"RB\"\n    ], \n    \"heare\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"heard\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stephane\": [\n        \"NNP\"\n    ], \n    \"Sasea\": [\n        \"NNP\"\n    ], \n    \"wardroom\": [\n        \"NN\"\n    ], \n    \"restitution\": [\n        \"NN\"\n    ], \n    \"Multinational\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"war-time\": [\n        \"JJ\"\n    ], \n    \"scrimmaged\": [\n        \"VBD\"\n    ], \n    \"White-collar\": [\n        \"JJ\"\n    ], \n    \"dispositions\": [\n        \"NNS\"\n    ], \n    \"SONG\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"unwritten\": [\n        \"JJ\"\n    ], \n    \"Lillian\": [\n        \"NNP\"\n    ], \n    \"flank\": [\n        \"NN\"\n    ], \n    \"Gain\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Radio-television\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Gail\": [\n        \"NNP\"\n    ], \n    \"upper-management\": [\n        \"NN\"\n    ], \n    \"over-magazined\": [\n        \"VBN\"\n    ], \n    \"dominance\": [\n        \"NN\"\n    ], \n    \"nonstop\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"post-fray\": [\n        \"RB\"\n    ], \n    \"whacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"shooter\": [\n        \"NN\"\n    ], \n    \"Always\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"bi-polar\": [\n        \"JJ\"\n    ], \n    \"residues\": [\n        \"NNS\"\n    ], \n    \"whacker\": [\n        \"NN\"\n    ], \n    \"pasting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Robles\": [\n        \"NNP\"\n    ], \n    \"betel-stained\": [\n        \"JJ\"\n    ], \n    \"Viet\": [\n        \"NNP\"\n    ], \n    \"non-toxic\": [\n        \"JJ\"\n    ], \n    \"View\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"High-Grade\": [\n        \"NNP\"\n    ], \n    \"affronting\": [\n        \"VBG\"\n    ], \n    \"accelerates\": [\n        \"VBZ\"\n    ], \n    \"beam\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Toss\": [\n        \"VB\"\n    ], \n    \"trumpets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"MultiMedia\": [\n        \"NNP\"\n    ], \n    \"accelerated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"reaffirmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"LeSourd\": [\n        \"NNP\"\n    ], \n    \"worsens\": [\n        \"VBZ\"\n    ], \n    \"Tose\": [\n        \"NNP\"\n    ], \n    \"Impressed\": [\n        \"VBN\"\n    ], \n    \"Recovery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"misapplication\": [\n        \"NN\"\n    ], \n    \"non-subsidized\": [\n        \"JJ\"\n    ], \n    \"Texoma\": [\n        \"NNP\"\n    ], \n    \"displayed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Acushnet\": [\n        \"NNP\"\n    ], \n    \"bewitching\": [\n        \"VBG\"\n    ], \n    \"playful\": [\n        \"JJ\"\n    ], \n    \"cotter\": [\n        \"NN\"\n    ], \n    \"Genetic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"gauze\": [\n        \"NN\"\n    ], \n    \"statistical\": [\n        \"JJ\"\n    ], \n    \"Combses\": [\n        \"NNPS\"\n    ], \n    \"vocation\": [\n        \"NN\"\n    ], \n    \"forma\": [\n        \"FW\"\n    ], \n    \"DEBT\": [\n        \"NN\"\n    ], \n    \"Wain\": [\n        \"NNP\"\n    ], \n    \"willow\": [\n        \"NN\"\n    ], \n    \"homogenization\": [\n        \"NN\"\n    ], \n    \"hewed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"forms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"exacerbates\": [\n        \"VBZ\"\n    ], \n    \"gaging\": [\n        \"NN\"\n    ], \n    \"unlovely\": [\n        \"JJ\"\n    ], \n    \"Yizi\": [\n        \"NNP\"\n    ], \n    \"explains.\": [\n        \"VBZ\"\n    ], \n    \"newspaper-industry\": [\n        \"JJ\"\n    ], \n    \"chattering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pruned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"risk-fraught\": [\n        \"JJ\"\n    ], \n    \"Vasquez\": [\n        \"NNP\"\n    ], \n    \"rake\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"fuzzy\": [\n        \"JJ\"\n    ], \n    \"brutes\": [\n        \"NNS\"\n    ], \n    \"transmissions\": [\n        \"NNS\"\n    ], \n    \"prunes\": [\n        \"NNS\"\n    ], \n    \"unimpressive\": [\n        \"JJ\"\n    ], \n    \"slippage\": [\n        \"NN\"\n    ], \n    \"ex-gambler\": [\n        \"NN\"\n    ], \n    \"Pacwest\": [\n        \"NNP\"\n    ], \n    \"raku\": [\n        \"NN\"\n    ], \n    \"balance-of-payments\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"enacted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"done-unto\": [\n        \"JJ\"\n    ], \n    \"Musicale\": [\n        \"NNP\"\n    ], \n    \"ENGLAND\": [\n        \"NNP\"\n    ], \n    \"Uhles\": [\n        \"NNP\"\n    ], \n    \"now-infamous\": [\n        \"JJ\"\n    ], \n    \"bursts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Robby\": [\n        \"NNP\"\n    ], \n    \"price-valuation\": [\n        \"NN\"\n    ], \n    \"INTERPUBLIC\": [\n        \"NNP\"\n    ], \n    \"anti-morning-sickness\": [\n        \"JJ\"\n    ], \n    \"flood-ravaged\": [\n        \"JJ\"\n    ], \n    \"License\": [\n        \"NN\"\n    ], \n    \"Victoire\": [\n        \"NNP\"\n    ], \n    \"carryovers\": [\n        \"NNS\"\n    ], \n    \"brown-black\": [\n        \"JJ\"\n    ], \n    \"Abra\": [\n        \"NNP\"\n    ], \n    \"pills\": [\n        \"NNS\"\n    ], \n    \"Sedona\": [\n        \"NNP\"\n    ], \n    \"hand-held\": [\n        \"JJ\"\n    ], \n    \"higher-caffeine\": [\n        \"JJ\"\n    ], \n    \"defendants\": [\n        \"NNS\"\n    ], \n    \"Masque\": [\n        \"NNP\"\n    ], \n    \"whitewalled\": [\n        \"JJ\"\n    ], \n    \"looking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"navigating\": [\n        \"VBG\"\n    ], \n    \"Corbehem\": [\n        \"NNP\"\n    ], \n    \"Mo.\": [\n        \"NNP\"\n    ], \n    \"dreamin\": [\n        \"NN\"\n    ], \n    \"Spitler\": [\n        \"NNP\"\n    ], \n    \"thong\": [\n        \"NN\"\n    ], \n    \"VAXstation\": [\n        \"NNP\"\n    ], \n    \"Alcoa\": [\n        \"NNP\"\n    ], \n    \"Menahem\": [\n        \"NNP\"\n    ], \n    \"Chinese-American-Canadian\": [\n        \"JJ\"\n    ], \n    \"Boxwood\": [\n        \"NNP\"\n    ], \n    \"Broadway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"repurchase\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"obligation\": [\n        \"NN\"\n    ], \n    \"plodded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"zig-zag\": [\n        \"VBP\"\n    ], \n    \"Calloused\": [\n        \"JJ\"\n    ], \n    \"Hillhaven\": [\n        \"NNP\"\n    ], \n    \"PIPELINES\": [\n        \"NNPS\"\n    ], \n    \"snakestrike\": [\n        \"NN\"\n    ], \n    \"selections\": [\n        \"NNS\"\n    ], \n    \"trade-clearing\": [\n        \"JJ\"\n    ], \n    \"deprivation\": [\n        \"NN\"\n    ], \n    \"Herbig\": [\n        \"NNP\"\n    ], \n    \"double-edged\": [\n        \"JJ\"\n    ], \n    \"Likins\": [\n        \"NNP\"\n    ], \n    \"Detailed\": [\n        \"VBN\"\n    ], \n    \"rum-tum-tum\": [\n        \"JJ\"\n    ], \n    \"Hungary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"profess\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"warning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Tregnums\": [\n        \"NNPS\"\n    ], \n    \"sarcastically\": [\n        \"RB\"\n    ], \n    \"Lojack\": [\n        \"NNP\"\n    ], \n    \"under-secretary\": [\n        \"NN\"\n    ], \n    \"KLM-controlled\": [\n        \"JJ\"\n    ], \n    \"wage-earning\": [\n        \"JJ\"\n    ], \n    \"enjoining\": [\n        \"VBG\"\n    ], \n    \"Dares\": [\n        \"NNP\"\n    ], \n    \"directly\": [\n        \"RB\"\n    ], \n    \"Bentleys\": [\n        \"NNPS\"\n    ], \n    \"deadlocked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"weds\": [\n        \"VBZ\"\n    ], \n    \"slaked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"avail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Millipore\": [\n        \"NNP\"\n    ], \n    \"Investigations\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"cortically\": [\n        \"RB\"\n    ], \n    \"collimated\": [\n        \"VBN\"\n    ], \n    \"Prepared\": [\n        \"JJ\"\n    ], \n    \"solstice\": [\n        \"NN\"\n    ], \n    \"Hachette\": [\n        \"NNP\"\n    ], \n    \"tragic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"yip\": [\n        \"NN\"\n    ], \n    \"expounding\": [\n        \"VBG\"\n    ], \n    \"taxation\": [\n        \"NN\"\n    ], \n    \"workstation\": [\n        \"NN\"\n    ], \n    \"prescribers\": [\n        \"NNS\"\n    ], \n    \"Shutter\": [\n        \"NNP\"\n    ], \n    \"Osterman\": [\n        \"NNP\"\n    ], \n    \"patriarch\": [\n        \"NN\"\n    ], \n    \"stratospheric\": [\n        \"JJ\"\n    ], \n    \"Coors\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Euphoria\": [\n        \"NNP\"\n    ], \n    \"indisputable\": [\n        \"JJ\"\n    ], \n    \"tokenish\": [\n        \"JJ\"\n    ], \n    \"Mears\": [\n        \"NNP\"\n    ], \n    \"index-related\": [\n        \"JJ\"\n    ], \n    \"Toyko\": [\n        \"NNP\"\n    ], \n    \"Wambui\": [\n        \"NNP\"\n    ], \n    \"Commissary\": [\n        \"NNP\"\n    ], \n    \"Perot\": [\n        \"NNP\"\n    ], \n    \"Ginghams\": [\n        \"NNS\"\n    ], \n    \"punched-card\": [\n        \"JJ\"\n    ], \n    \"movingly\": [\n        \"RB\"\n    ], \n    \"Kingsville\": [\n        \"NNP\"\n    ], \n    \"Therapeutics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"surfeited\": [\n        \"VBN\"\n    ], \n    \"Purdy\": [\n        \"NNP\"\n    ], \n    \"investors\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"aspersion\": [\n        \"NN\"\n    ], \n    \"slaw\": [\n        \"NN\"\n    ], \n    \"slat\": [\n        \"NN\"\n    ], \n    \"Philadelphia\": [\n        \"NNP\"\n    ], \n    \"slap\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Perella\": [\n        \"NNP\"\n    ], \n    \"TRIAL\": [\n        \"NN\"\n    ], \n    \"ideologists\": [\n        \"NNS\"\n    ], \n    \"slam\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"slag\": [\n        \"NN\"\n    ], \n    \"Main\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"slab\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Naples\": [\n        \"NNP\"\n    ], \n    \"SEEKING\": [\n        \"VBG\"\n    ], \n    \"LOSSES\": [\n        \"NNS\"\n    ], \n    \"overcoming\": [\n        \"VBG\"\n    ], \n    \"wassail\": [\n        \"NN\"\n    ], \n    \"fiber-reinforced\": [\n        \"JJ\"\n    ], \n    \"hide-out\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tigers\": [\n        \"NNS\"\n    ], \n    \"Garpian\": [\n        \"JJ\"\n    ], \n    \"Wappinger\": [\n        \"NNP\"\n    ], \n    \"plaster\": [\n        \"NN\"\n    ], \n    \"Pachyderms\": [\n        \"NNPS\"\n    ], \n    \"Mackinack\": [\n        \"NNP\"\n    ], \n    \"common-sensical\": [\n        \"JJ\"\n    ], \n    \"Constantine\": [\n        \"NNP\"\n    ], \n    \"three-times\": [\n        \"JJ\"\n    ], \n    \"underemployed\": [\n        \"JJ\"\n    ], \n    \"Constantino\": [\n        \"NNP\"\n    ], \n    \"hurler\": [\n        \"NN\"\n    ], \n    \"Truman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Steamed\": [\n        \"VBN\"\n    ], \n    \"renal\": [\n        \"JJ\"\n    ], \n    \"appraisals\": [\n        \"NNS\"\n    ], \n    \"sidekick\": [\n        \"NN\"\n    ], \n    \"polyvinyl\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Vader\": [\n        \"NNP\"\n    ], \n    \"stop-shipment\": [\n        \"JJ\"\n    ], \n    \"Goldberg\": [\n        \"NNP\"\n    ], \n    \"hurled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Preface\": [\n        \"NNP\"\n    ], \n    \"typically\": [\n        \"RB\"\n    ], \n    \"jewelers\": [\n        \"NNS\"\n    ], \n    \"jewelery\": [\n        \"NN\"\n    ], \n    \"resurrecting\": [\n        \"VBG\"\n    ], \n    \"nuclear-bomb\": [\n        \"NN\"\n    ], \n    \"earthworm\": [\n        \"NN\"\n    ], \n    \"molars\": [\n        \"NNS\"\n    ], \n    \"Femmes\": [\n        \"NNP\"\n    ], \n    \"Pascal\": [\n        \"NNP\"\n    ], \n    \"fifth\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"upgrade\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"scatterbrained\": [\n        \"JJ\"\n    ], \n    \"stained\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"jolt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"overruns\": [\n        \"NNS\"\n    ], \n    \"Majdanek\": [\n        \"NNP\"\n    ], \n    \"only\": [\n        \"RB\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"Inuit\": [\n        \"NNP\"\n    ], \n    \"blockading\": [\n        \"VBG\"\n    ], \n    \"Fuhrmann\": [\n        \"NNP\"\n    ], \n    \"malcontent\": [\n        \"NN\"\n    ], \n    \"phased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"televisions\": [\n        \"NNS\"\n    ], \n    \"Camp\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"recuperation\": [\n        \"NN\"\n    ], \n    \"Evident\": [\n        \"JJ\"\n    ], \n    \"cannon\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"rehear\": [\n        \"VB\"\n    ], \n    \"Pauson\": [\n        \"NNP\"\n    ], \n    \"truly\": [\n        \"RB\"\n    ], \n    \"loath\": [\n        \"JJ\"\n    ], \n    \"cannot\": [\n        \"MD\"\n    ], \n    \"symmetrically\": [\n        \"RB\"\n    ], \n    \"unfastened\": [\n        \"VBD\"\n    ], \n    \"manuscripts\": [\n        \"NNS\"\n    ], \n    \"celebrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"disentangling\": [\n        \"VBG\"\n    ], \n    \"Fehr\": [\n        \"NNP\"\n    ], \n    \"morphophonemics\": [\n        \"NNS\"\n    ], \n    \"Kanter\": [\n        \"NNP\"\n    ], \n    \"imbecile\": [\n        \"NN\"\n    ], \n    \"preempt\": [\n        \"VB\"\n    ], \n    \"Encouragement\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"keyed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"overworked\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"losers\": [\n        \"NNS\"\n    ], \n    \"pre-cast\": [\n        \"JJ\"\n    ], \n    \"Clarinet\": [\n        \"NN\"\n    ], \n    \"S.A.F.E.\": [\n        \"NNP\"\n    ], \n    \"Arbor\": [\n        \"NNP\"\n    ], \n    \"Hauer\": [\n        \"NNP\"\n    ], \n    \"WPPSS\": [\n        \"NNP\"\n    ], \n    \"Crew\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"elected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Naiman\": [\n        \"NNP\"\n    ], \n    \"afoul\": [\n        \"RB\"\n    ], \n    \"hell\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"culpable\": [\n        \"JJ\"\n    ], \n    \"Veilleux\": [\n        \"NNP\"\n    ], \n    \"sport\": [\n        \"NN\", \n        \"JJ\", \n        \"VBP\"\n    ], \n    \"Cree\": [\n        \"NNP\"\n    ], \n    \"loudspeaker\": [\n        \"NN\"\n    ], \n    \"symbolists\": [\n        \"NNS\"\n    ], \n    \"palette\": [\n        \"NN\"\n    ], \n    \"swankier\": [\n        \"JJR\"\n    ], \n    \"disppointed\": [\n        \"JJ\"\n    ], \n    \"vanguard\": [\n        \"NN\"\n    ], \n    \"momentoes\": [\n        \"NNS\"\n    ], \n    \"Mikhail\": [\n        \"NNP\"\n    ], \n    \"Minero\": [\n        \"NNP\"\n    ], \n    \"between\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"snuffboxes\": [\n        \"NNS\"\n    ], \n    \"H.E.\": [\n        \"NNP\"\n    ], \n    \"Minera\": [\n        \"NNP\"\n    ], \n    \"government-insured\": [\n        \"JJ\"\n    ], \n    \"import-restricting\": [\n        \"JJ\"\n    ], \n    \"Target\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Roulet\": [\n        \"NNP\"\n    ], \n    \"queerest\": [\n        \"JJS\"\n    ], \n    \"Burmese\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"re-educate\": [\n        \"VB\"\n    ], \n    \"comeback\": [\n        \"NN\"\n    ], \n    \"perceptions\": [\n        \"NNS\"\n    ], \n    \"installation\": [\n        \"NN\"\n    ], \n    \"taxpayer\": [\n        \"NN\"\n    ], \n    \"crisper\": [\n        \"NN\"\n    ], \n    \"reinterpreted\": [\n        \"VBN\"\n    ], \n    \"hypoglycemic\": [\n        \"JJ\"\n    ], \n    \"hypoglycemia\": [\n        \"NN\"\n    ], \n    \"monk\": [\n        \"NN\"\n    ], \n    \"enabling\": [\n        \"VBG\"\n    ], \n    \"trichloroethylene\": [\n        \"NN\"\n    ], \n    \"Okasan\": [\n        \"NNP\"\n    ], \n    \"buy-back\": [\n        \"NN\", \n        \"NN|JJ\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"home-produced\": [\n        \"JJ\"\n    ], \n    \"underwritings\": [\n        \"NNS\"\n    ], \n    \"Viale\": [\n        \"NNP\"\n    ], \n    \"Englishman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"overview\": [\n        \"NN\"\n    ], \n    \"Viall\": [\n        \"NNP\"\n    ], \n    \"Eager\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"mini-flap\": [\n        \"NN\"\n    ], \n    \"Journalist\": [\n        \"NNP\"\n    ], \n    \"Midwest\": [\n        \"NNP\", \n        \"JJS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Anatol\": [\n        \"NNP\"\n    ], \n    \"reliables\": [\n        \"NNS\"\n    ], \n    \"Depending\": [\n        \"VBG\"\n    ], \n    \"informed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"markedly\": [\n        \"RB\"\n    ], \n    \"maladroit\": [\n        \"JJ\"\n    ], \n    \"Melanie\": [\n        \"NNP\"\n    ], \n    \"Schools\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"informer\": [\n        \"JJ\"\n    ], \n    \"Gortari\": [\n        \"NNP\"\n    ], \n    \"patriarchal\": [\n        \"JJ\"\n    ], \n    \"Berth\": [\n        \"NNP\"\n    ], \n    \"Berto\": [\n        \"NNP\"\n    ], \n    \"Posts\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"coccidiosis\": [\n        \"NN\"\n    ], \n    \"budget-hotel\": [\n        \"NN\"\n    ], \n    \"Berte\": [\n        \"NNP\"\n    ], \n    \"abridging\": [\n        \"VBG\"\n    ], \n    \"pilot-dominated\": [\n        \"JJ\"\n    ], \n    \"realities\": [\n        \"NNS\"\n    ], \n    \"Arterial\": [\n        \"JJ\"\n    ], \n    \"Arbitrary\": [\n        \"NNP\"\n    ], \n    \"prehistoric\": [\n        \"JJ\"\n    ], \n    \"LEHMAN\": [\n        \"NNP\"\n    ], \n    \"these\": [\n        \"DT\"\n    ], \n    \"wealthiest\": [\n        \"JJS\"\n    ], \n    \"accommodating\": [\n        \"VBG\"\n    ], \n    \"trick\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Scorecard\": [\n        \"NNP\"\n    ], \n    \"notoriety\": [\n        \"NN\"\n    ], \n    \"crumbly\": [\n        \"JJ\"\n    ], \n    \"jaywalkers\": [\n        \"NNS\"\n    ], \n    \"Bussey\": [\n        \"NNP\"\n    ], \n    \"chain-reaction\": [\n        \"NN\"\n    ], \n    \"orientation\": [\n        \"NN\"\n    ], \n    \"erned\": [\n        \"VBD\"\n    ], \n    \"Middleman\": [\n        \"NN\"\n    ], \n    \"MKI\": [\n        \"NNP\"\n    ], \n    \"Heigh-ho\": [\n        \"UH\"\n    ], \n    \"canceled\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"Nissho\": [\n        \"NNP\"\n    ], \n    \"eras\": [\n        \"NNS\"\n    ], \n    \"Gyula\": [\n        \"NNP\"\n    ], \n    \"Flugel\": [\n        \"NNP\"\n    ], \n    \"thrills\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"short-sell\": [\n        \"VB\"\n    ], \n    \"remote-control\": [\n        \"JJ\"\n    ], \n    \"unshakable\": [\n        \"JJ\"\n    ], \n    \"Muni\": [\n        \"JJ\"\n    ], \n    \"Whiteleaf\": [\n        \"NNP\"\n    ], \n    \"Munk\": [\n        \"NNP\"\n    ], \n    \"dead-eyed\": [\n        \"JJ\"\n    ], \n    \"intelligently\": [\n        \"RB\"\n    ], \n    \"figuring\": [\n        \"VBG\"\n    ], \n    \"Caron\": [\n        \"NNP\"\n    ], \n    \"Carol\": [\n        \"NNP\"\n    ], \n    \"Meriwether\": [\n        \"NNP\"\n    ], \n    \"extravaganza\": [\n        \"NN\"\n    ], \n    \"numerals\": [\n        \"NNS\"\n    ], \n    \"ominously\": [\n        \"RB\"\n    ], \n    \"closest\": [\n        \"JJS\"\n    ], \n    \"salmon-colored\": [\n        \"JJ\"\n    ], \n    \"universe-shaking\": [\n        \"JJ\"\n    ], \n    \"ELECTIONS\": [\n        \"NNS\"\n    ], \n    \"favorites\": [\n        \"NNS\"\n    ], \n    \"Dasibi\": [\n        \"NNP\"\n    ], \n    \"Enoch\": [\n        \"NNP\"\n    ], \n    \"racketeering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"mistrials\": [\n        \"NNS\"\n    ], \n    \"vertical-restraints\": [\n        \"NNS\"\n    ], \n    \"nobly\": [\n        \"RB\"\n    ], \n    \"complained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Makro\": [\n        \"NNP\"\n    ], \n    \"AVOIDED\": [\n        \"VBD\"\n    ], \n    \"cockier\": [\n        \"JJR\"\n    ], \n    \"alfresco\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"bondage\": [\n        \"NN\"\n    ], \n    \"Aida\": [\n        \"NNP\"\n    ], \n    \"recurrently\": [\n        \"RB\"\n    ], \n    \"Tektronix\": [\n        \"NNP\"\n    ], \n    \"severe\": [\n        \"JJ\"\n    ], \n    \"take-or-pay\": [\n        \"JJ\"\n    ], \n    \"miscellany\": [\n        \"NN\"\n    ], \n    \"peripherals\": [\n        \"NNS\"\n    ], \n    \"Aids\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"yellow-gray\": [\n        \"JJ\"\n    ], \n    \"Premner\": [\n        \"NNP\"\n    ], \n    \"schoolers\": [\n        \"NNS\"\n    ], \n    \"household-type\": [\n        \"JJ\"\n    ], \n    \"entertainments\": [\n        \"NNS\"\n    ], \n    \"Nassau-Suffolk\": [\n        \"NNP\"\n    ], \n    \"transmitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"shouts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Reuven\": [\n        \"NNP\"\n    ], \n    \"Examination\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"imparting\": [\n        \"VBG\"\n    ], \n    \"Liang\": [\n        \"NNP\"\n    ], \n    \"ounces\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"crimsoning\": [\n        \"VBG\"\n    ], \n    \"crime-ridden\": [\n        \"JJ\"\n    ], \n    \"Asilone\": [\n        \"NNP\"\n    ], \n    \"Davidow\": [\n        \"NNP\"\n    ], \n    \"domicile\": [\n        \"NN\"\n    ], \n    \"mirrored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Adriatic\": [\n        \"NNP\"\n    ], \n    \"Technik\": [\n        \"NNP\"\n    ], \n    \"Koor\": [\n        \"NNP\"\n    ], \n    \"Spielvogel\": [\n        \"NNP\"\n    ], \n    \"Koop\": [\n        \"NNP\"\n    ], \n    \"Abruptly\": [\n        \"RB\"\n    ], \n    \"Knuettel\": [\n        \"NNP\"\n    ], \n    \"spectacular\": [\n        \"JJ\"\n    ], \n    \"dollar-priced\": [\n        \"JJ\"\n    ], \n    \"repetitions\": [\n        \"NNS\"\n    ], \n    \"Headquarters\": [\n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"stools\": [\n        \"NNS\"\n    ], \n    \"Project\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bakery\": [\n        \"NNP\"\n    ], \n    \"overlooks\": [\n        \"VBZ\"\n    ], \n    \"SHOWY\": [\n        \"JJ\"\n    ], \n    \"coolants\": [\n        \"NNS\"\n    ], \n    \"capital-formation\": [\n        \"NN\"\n    ], \n    \"recipient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Creditors\": [\n        \"NNS\"\n    ], \n    \"Photek\": [\n        \"NNP\"\n    ], \n    \"Lubell\": [\n        \"NNP\"\n    ], \n    \"proponent\": [\n        \"NN\"\n    ], \n    \"Smaller\": [\n        \"JJR\"\n    ], \n    \"Southhampton\": [\n        \"NNP\"\n    ], \n    \"utterances\": [\n        \"NNS\"\n    ], \n    \"Forecaster\": [\n        \"NNP\"\n    ], \n    \"collective\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Langeland\": [\n        \"NNP\"\n    ], \n    \"miracle\": [\n        \"NN\"\n    ], \n    \"Agro\": [\n        \"NNP\"\n    ], \n    \"t\": [\n        \"NN\"\n    ], \n    \"Agri\": [\n        \"NNP\"\n    ], \n    \"crooner\": [\n        \"NN\"\n    ], \n    \"parental-leave\": [\n        \"JJ\"\n    ], \n    \"Mare\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Schmotter\": [\n        \"NNP\"\n    ], \n    \"Mara\": [\n        \"NNP\"\n    ], \n    \"circumscribing\": [\n        \"VBG\"\n    ], \n    \"Marc\": [\n        \"NNP\"\n    ], \n    \"Sokolsky\": [\n        \"NNP\"\n    ], \n    \"Mark\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Mart\": [\n        \"NNP\"\n    ], \n    \"floating-load\": [\n        \"JJ\"\n    ], \n    \"Comdisco\": [\n        \"NNP\"\n    ], \n    \"Kleissas\": [\n        \"NNP\"\n    ], \n    \"Marr\": [\n        \"NNP\"\n    ], \n    \"Mars\": [\n        \"NNP\"\n    ], \n    \"Marx\": [\n        \"NNP\"\n    ], \n    \"enacting\": [\n        \"VBG\"\n    ], \n    \"DHAWK\": [\n        \"NNP\"\n    ], \n    \"government-approved\": [\n        \"JJ\"\n    ], \n    \"passions\": [\n        \"NNS\"\n    ], \n    \"Fiber\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Khrush\": [\n        \"NNP\"\n    ], \n    \"Lilliputian\": [\n        \"JJ\"\n    ], \n    \"Yakima\": [\n        \"NNP\"\n    ], \n    \"rubfests\": [\n        \"NNS\"\n    ], \n    \"On-Target\": [\n        \"NNP\"\n    ], \n    \"business-telephone\": [\n        \"JJ\"\n    ], \n    \"Ranks\": [\n        \"NNP\"\n    ], \n    \"reverberating\": [\n        \"VBG\"\n    ], \n    \"Smart\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Pincavage\": [\n        \"NNP\"\n    ], \n    \"ethos\": [\n        \"NN\"\n    ], \n    \"Ricci\": [\n        \"NNP\"\n    ], \n    \"unplumbed\": [\n        \"JJ\"\n    ], \n    \"Spokane\": [\n        \"NNP\"\n    ], \n    \"Stranger\": [\n        \"JJR\"\n    ], \n    \"equivalent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ponchielli\": [\n        \"NNP\"\n    ], \n    \"balked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lateiner\": [\n        \"NNP\"\n    ], \n    \"leftover\": [\n        \"JJ\"\n    ], \n    \"habe\": [\n        \"FW\"\n    ], \n    \"electric-utility\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"confederations\": [\n        \"NNS\"\n    ], \n    \"Marcellus\": [\n        \"NNP\"\n    ], \n    \"NBC-TV\": [\n        \"NNP\"\n    ], \n    \"sabers-along\": [\n        \"IN\"\n    ], \n    \"tremendous\": [\n        \"JJ\"\n    ], \n    \"escalating\": [\n        \"VBG\"\n    ], \n    \"Spogli\": [\n        \"NNP\"\n    ], \n    \"Salesman\": [\n        \"NN\"\n    ], \n    \"Rushforth\": [\n        \"NNP\"\n    ], \n    \"Bags\": [\n        \"NNS\"\n    ], \n    \"inclusion\": [\n        \"NN\"\n    ], \n    \"sedulously\": [\n        \"RB\"\n    ], \n    \"Ferrofluidics\": [\n        \"NNP\"\n    ], \n    \"Bagh\": [\n        \"NNP\"\n    ], \n    \"lob\": [\n        \"VB\"\n    ], \n    \"supervising\": [\n        \"VBG\"\n    ], \n    \"log\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"ChemPlus\": [\n        \"NNP\"\n    ], \n    \"GOVERNMENT\": [\n        \"NN\"\n    ], \n    \"by-laws\": [\n        \"NNS\"\n    ], \n    \"Soyuzgoscirk\": [\n        \"NNP\"\n    ], \n    \"Philosophies\": [\n        \"NNP\"\n    ], \n    \"lop\": [\n        \"JJ\"\n    ], \n    \"Cookie\": [\n        \"NNP\"\n    ], \n    \"NUMBERS\": [\n        \"NNS\"\n    ], \n    \"lot\": [\n        \"NN\", \n        \"RB\", \n        \"JJ\"\n    ], \n    \"Shribman\": [\n        \"NNP\"\n    ], \n    \"focus-group\": [\n        \"JJ\"\n    ], \n    \"Tsarism\": [\n        \"NNP\"\n    ], \n    \"seismographic\": [\n        \"JJ\"\n    ], \n    \"axioms\": [\n        \"NNS\"\n    ], \n    \"groan\": [\n        \"NN\"\n    ], \n    \"drains\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Slovenian\": [\n        \"JJ\"\n    ], \n    \"Booz-Allen\": [\n        \"NNP\"\n    ], \n    \"Tillich\": [\n        \"NNP\"\n    ], \n    \"Deposits-a\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\", \n        \"NNS|LS\"\n    ], \n    \"Ragged\": [\n        \"JJ\"\n    ], \n    \"Rence\": [\n        \"NNP\"\n    ], \n    \"Stall\": [\n        \"NN\"\n    ], \n    \"Stalk\": [\n        \"NNP\"\n    ], \n    \"proclivities\": [\n        \"NNS\"\n    ], \n    \"Stale\": [\n        \"JJ\"\n    ], \n    \"Renck\": [\n        \"NNP\"\n    ], \n    \"Kornick\": [\n        \"NNP\"\n    ], \n    \"bellows\": [\n        \"VBZ\", \n        \"NN\"\n    ], \n    \"Coal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Century\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interiors\": [\n        \"NNS\"\n    ], \n    \"Airlie\": [\n        \"NNP\"\n    ], \n    \"Pogue\": [\n        \"NNP\"\n    ], \n    \"McCarthy\": [\n        \"NNP\"\n    ], \n    \"second-consecutive\": [\n        \"JJ\"\n    ], \n    \"Boarts\": [\n        \"NNP\"\n    ], \n    \"Confuted\": [\n        \"NNP\"\n    ], \n    \"Williamsesque\": [\n        \"JJ\"\n    ], \n    \"beliefs\": [\n        \"NNS\"\n    ], \n    \"mioxidil\": [\n        \"NN\"\n    ], \n    \"RU-486\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"illnesses\": [\n        \"NNS\"\n    ], \n    \"Judges\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Asks\": [\n        \"VBZ\"\n    ], \n    \"statesmanlike\": [\n        \"JJ\"\n    ], \n    \"alternative...\": [\n        \":\"\n    ], \n    \"Seaborg\": [\n        \"NNP\"\n    ], \n    \"Ponkob\": [\n        \"NNP\"\n    ], \n    \"Junor\": [\n        \"NNP\"\n    ], \n    \"Aska\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"trickled\": [\n        \"VBN\"\n    ], \n    \"inclusiveness\": [\n        \"NN\"\n    ], \n    \"N.E.\": [\n        \"NNP\"\n    ], \n    \"home-city\": [\n        \"NN\"\n    ], \n    \"corporatewide\": [\n        \"JJ\"\n    ], \n    \"Adonis\": [\n        \"NNP\"\n    ], \n    \"masers\": [\n        \"NNS\"\n    ], \n    \"Nazi-minded\": [\n        \"JJ\"\n    ], \n    \"milking\": [\n        \"VBG\"\n    ], \n    \"woeful\": [\n        \"JJ\"\n    ], \n    \"Intense\": [\n        \"JJ\"\n    ], \n    \"Tegretol\": [\n        \"NNP\"\n    ], \n    \"COPPER\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"non-direct\": [\n        \"JJ\"\n    ], \n    \"Country\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"pear\": [\n        \"NN\"\n    ], \n    \"peas\": [\n        \"NNS\"\n    ], \n    \"Hyena\": [\n        \"NN\"\n    ], \n    \"peal\": [\n        \"NN\"\n    ], \n    \"preconditions\": [\n        \"NNS\"\n    ], \n    \"peak\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"turnaround\\\\/takeover\": [\n        \"JJR\"\n    ], \n    \"single-B-plus\": [\n        \"JJ\"\n    ], \n    \"Pharmacies\": [\n        \"NNS\"\n    ], \n    \"tendencies\": [\n        \"NNS\"\n    ], \n    \"fiscal\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"assert\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"inevitability\": [\n        \"NN\"\n    ], \n    \"Tropics\": [\n        \"NNPS\"\n    ], \n    \"bystander\": [\n        \"NN\"\n    ], \n    \"requisition\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Jimenez\": [\n        \"NNP\"\n    ], \n    \"chauffeur-driven\": [\n        \"JJ\"\n    ], \n    \"Tugaru\": [\n        \"NN\"\n    ], \n    \"Gorshek\": [\n        \"NNP\"\n    ], \n    \"detonating\": [\n        \"VBG\"\n    ], \n    \"side-crash\": [\n        \"JJ\"\n    ], \n    \"precondition\": [\n        \"NN\"\n    ], \n    \"November-December\": [\n        \"NNP\"\n    ], \n    \"Damage\": [\n        \"NN\"\n    ], \n    \"quake-related\": [\n        \"JJ\"\n    ], \n    \"publish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"copyrighted\": [\n        \"VBN\"\n    ], \n    \"rectlinearly\": [\n        \"RB\"\n    ], \n    \"Renton\": [\n        \"NNP\"\n    ], \n    \"Potpourri\": [\n        \"NNS\"\n    ], \n    \"victoriously\": [\n        \"RB\"\n    ], \n    \"missile-type\": [\n        \"JJ\"\n    ], \n    \"fizzles\": [\n        \"VBZ\"\n    ], \n    \"glitzy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"backpedaling\": [\n        \"VBG\"\n    ], \n    \"Marie-Louise\": [\n        \"NNP\"\n    ], \n    \"Nowacki\": [\n        \"NNP\"\n    ], \n    \"pretreatment\": [\n        \"NN|JJ\"\n    ], \n    \"Ella\": [\n        \"NNP\"\n    ], \n    \"Elle\": [\n        \"NNP\"\n    ], \n    \"foster\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"erects\": [\n        \"VBZ\"\n    ], \n    \"fizzled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fervor\": [\n        \"NN\"\n    ], \n    \"Costar\": [\n        \"NNP\"\n    ], \n    \"dominated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Passavant\": [\n        \"NNP\"\n    ], \n    \"viaduct\": [\n        \"NN\"\n    ], \n    \"Alligood\": [\n        \"NNP\"\n    ], \n    \"sub-surface\": [\n        \"NN\"\n    ], \n    \"supercomputer\": [\n        \"NN\"\n    ], \n    \"screwdriver\": [\n        \"NN\"\n    ], \n    \"Appealing\": [\n        \"VBG\"\n    ], \n    \"Posix\": [\n        \"NNP\"\n    ], \n    \"Bowling\": [\n        \"NNP\"\n    ], \n    \"rehearing\": [\n        \"NN\"\n    ], \n    \"crocodile\": [\n        \"NN\"\n    ], \n    \"deficient\": [\n        \"JJ\"\n    ], \n    \"Barnett\": [\n        \"NNP\"\n    ], \n    \"Waltana\": [\n        \"NNP\"\n    ], \n    \"Oakes\": [\n        \"NNP\"\n    ], \n    \"father-brother\": [\n        \"NN\"\n    ], \n    \"Reyes-Requena\": [\n        \"NNP\"\n    ], \n    \"gardener\": [\n        \"NN\"\n    ], \n    \"libeled\": [\n        \"VBN\"\n    ], \n    \"relenting\": [\n        \"VBG\"\n    ], \n    \"neoprene\": [\n        \"NN\"\n    ], \n    \"trumpeting\": [\n        \"VBG\"\n    ], \n    \"vulpine\": [\n        \"JJ\"\n    ], \n    \"cookies\": [\n        \"NNS\"\n    ], \n    \"code-named\": [\n        \"VBN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"palazzos\": [\n        \"NNS\"\n    ], \n    \"somberly\": [\n        \"RB\"\n    ], \n    \"WHOOPS\": [\n        \"NNP\"\n    ], \n    \"unheard\": [\n        \"JJ\"\n    ], \n    \"microsurgery\": [\n        \"NN\"\n    ], \n    \"decriminalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"above-normal\": [\n        \"JJ\"\n    ], \n    \"promotes\": [\n        \"VBZ\"\n    ], \n    \"MARKET\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rator\": [\n        \"NN\"\n    ], \n    \"gether\": [\n        \"VB\"\n    ], \n    \"insomniacs\": [\n        \"NNS\"\n    ], \n    \"Totally\": [\n        \"RB\"\n    ], \n    \"acknowledgments\": [\n        \"NNS\"\n    ], \n    \"Cambrian\": [\n        \"NNP\"\n    ], \n    \"dolledup\": [\n        \"JJ\"\n    ], \n    \"vet\": [\n        \"NN\"\n    ], \n    \"tholins\": [\n        \"NNS\"\n    ], \n    \"determinism\": [\n        \"NN\"\n    ], \n    \"white-knight\": [\n        \"NN\"\n    ], \n    \"Rowman\": [\n        \"NNP\"\n    ], \n    \"handwriting\": [\n        \"NN\"\n    ], \n    \"round-table\": [\n        \"JJ\"\n    ], \n    \"invitational\": [\n        \"JJ\"\n    ], \n    \"Cane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jews\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Cano\": [\n        \"NNP\"\n    ], \n    \"vegetarian\": [\n        \"JJ\"\n    ], \n    \"Podgers\": [\n        \"NNS\"\n    ], \n    \"whine\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Tucson\": [\n        \"NNP\"\n    ], \n    \"pro-Gorbachev\": [\n        \"JJ\"\n    ], \n    \"threemonth\": [\n        \"JJ\"\n    ], \n    \"Milledgeville\": [\n        \"NNP\"\n    ], \n    \"Nelms\": [\n        \"NNP\"\n    ], \n    \"Madding\": [\n        \"NNP\"\n    ], \n    \"Gantry\": [\n        \"NNP\"\n    ], \n    \"family\": [\n        \"NN\"\n    ], \n    \"mini-slip\": [\n        \"NN\"\n    ], \n    \"courtier\": [\n        \"NN\"\n    ], \n    \"fatuous\": [\n        \"JJ\"\n    ], \n    \"REN\": [\n        \"NNP\"\n    ], \n    \"lurked\": [\n        \"VBD\"\n    ], \n    \"Animal\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"gunmen\": [\n        \"NNS\"\n    ], \n    \"Studebaker\": [\n        \"NNP\"\n    ], \n    \"taker\": [\n        \"NN\"\n    ], \n    \"takes\": [\n        \"VBZ\"\n    ], \n    \"relegated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"one-day\": [\n        \"JJ\"\n    ], \n    \"gunflint\": [\n        \"NN\"\n    ], \n    \"slants\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"abstaining\": [\n        \"VBG\"\n    ], \n    \"shotguns\": [\n        \"NNS\"\n    ], \n    \"non-objective\": [\n        \"JJ\"\n    ], \n    \"oil-producing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ozark\": [\n        \"NNP\"\n    ], \n    \"Shahon\": [\n        \"NNP\"\n    ], \n    \"taken\": [\n        \"VBN\", \n        \"VBG\"\n    ], \n    \"Korando\": [\n        \"NNP\"\n    ], \n    \"theatregoer\": [\n        \"NN\"\n    ], \n    \"chestnut\": [\n        \"NN\"\n    ], \n    \"holier-than-thou\": [\n        \"JJ\"\n    ], \n    \"overbuilt\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"excuse\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Castings\": [\n        \"NNP\"\n    ], \n    \"J.A.\": [\n        \"NNP\"\n    ], \n    \"slouchy\": [\n        \"JJ\"\n    ], \n    \"RFM\": [\n        \"NNP\"\n    ], \n    \"gauche\": [\n        \"JJ\"\n    ], \n    \"Australian-American\": [\n        \"JJ\"\n    ], \n    \"Diocese\": [\n        \"NNP\"\n    ], \n    \"gaucho\": [\n        \"NN\"\n    ], \n    \"latching\": [\n        \"VBG\"\n    ], \n    \"dromozoa\": [\n        \"NNS\"\n    ], \n    \"Privatization\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Comfortably\": [\n        \"RB\"\n    ], \n    \"geologically\": [\n        \"RB\"\n    ], \n    \"Pentecostal\": [\n        \"NNP\"\n    ], \n    \"Hoexum\": [\n        \"NNP\"\n    ], \n    \"visage\": [\n        \"NN\"\n    ], \n    \"anti-pollution\": [\n        \"JJ\"\n    ], \n    \"Munger\": [\n        \"NNP\"\n    ], \n    \"stinging\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"brazenly\": [\n        \"RB\"\n    ], \n    \"Liberated\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"three-sectioned\": [\n        \"JJ\"\n    ], \n    \"ectoplasmic\": [\n        \"JJ\"\n    ], \n    \"cows\": [\n        \"NNS\"\n    ], \n    \"magenta\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"species\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"gaffes\": [\n        \"NNS\"\n    ], \n    \"Federation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"grammar-school\": [\n        \"NN\"\n    ], \n    \"Polaris\": [\n        \"NNP\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"exponentially\": [\n        \"RB\"\n    ], \n    \"Dismay\": [\n        \"NN\"\n    ], \n    \"finality\": [\n        \"NN\"\n    ], \n    \"Daisy\": [\n        \"NNP\"\n    ], \n    \"remediation\": [\n        \"NN\"\n    ], \n    \"non-religious\": [\n        \"JJ\"\n    ], \n    \"Staunton\": [\n        \"NNP\"\n    ], \n    \"informants\": [\n        \"NNS\"\n    ], \n    \"Hanfsaengl\": [\n        \"NNP\"\n    ], \n    \"racetrack\": [\n        \"NN\"\n    ], \n    \"coated-magnetic\": [\n        \"JJ\"\n    ], \n    \"beardless\": [\n        \"JJ\"\n    ], \n    \"dread\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"microseconds\": [\n        \"NNS\"\n    ], \n    \"banks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"dispersing\": [\n        \"VBG\"\n    ], \n    \"redcoat\": [\n        \"NN\"\n    ], \n    \"dream\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dian\": [\n        \"NNP\"\n    ], \n    \"Dial\": [\n        \"NNP\"\n    ], \n    \"woomera\": [\n        \"NN\"\n    ], \n    \"materialistic\": [\n        \"JJ\"\n    ], \n    \"Cartagena\": [\n        \"NNP\"\n    ], \n    \"bich\": [\n        \"NN\"\n    ], \n    \"urine\": [\n        \"NN\"\n    ], \n    \"skinning\": [\n        \"NN\"\n    ], \n    \"out-of-state\": [\n        \"JJ\"\n    ], \n    \"ascetics\": [\n        \"NNS\"\n    ], \n    \"Diaz\": [\n        \"NNP\"\n    ], \n    \"lasers\": [\n        \"NNS\"\n    ], \n    \"Century-Fox\": [\n        \"NNP\"\n    ], \n    \"Advise\": [\n        \"NNP\"\n    ], \n    \"flimsies\": [\n        \"NNS\"\n    ], \n    \"O.P.\": [\n        \"NNP\"\n    ], \n    \"Werkstell\": [\n        \"NNP\"\n    ], \n    \"Copyright\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"carpeted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dunkin\": [\n        \"NNP\"\n    ], \n    \"flirted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"LOBSTERS\": [\n        \"NNS\"\n    ], \n    \"undedicated\": [\n        \"VBN\"\n    ], \n    \"averts\": [\n        \"VBZ\"\n    ], \n    \"Jeffersons\": [\n        \"NNPS\"\n    ], \n    \"Italian-based\": [\n        \"JJ\"\n    ], \n    \"Giacomo\": [\n        \"NNP\"\n    ], \n    \"deformation\": [\n        \"NN\"\n    ], \n    \"Pilot\": [\n        \"NN\"\n    ], \n    \"groping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Desolation\": [\n        \"NNP\"\n    ], \n    \"HERITAGE\": [\n        \"NNP\"\n    ], \n    \"PG-13\": [\n        \"NN\"\n    ], \n    \"geopolitical\": [\n        \"JJ\"\n    ], \n    \"Grants-in-aid\": [\n        \"NNS\"\n    ], \n    \"Thygerson\": [\n        \"NNP\"\n    ], \n    \"Senior\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"profit-motivated\": [\n        \"JJ\"\n    ], \n    \"cadenza\": [\n        \"NN\"\n    ], \n    \"three-man\": [\n        \"JJ\"\n    ], \n    \"finite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Thomajan\": [\n        \"NNP\"\n    ], \n    \"rots\": [\n        \"VBZ\"\n    ], \n    \"imprisoned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"camping-out\": [\n        \"JJ\"\n    ], \n    \"occasions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Swenson\": [\n        \"NNP\"\n    ], \n    \"intervene\": [\n        \"VB\"\n    ], \n    \"Astronauts\": [\n        \"NNS\"\n    ], \n    \"teas\": [\n        \"NNS\"\n    ], \n    \"Foreclosures\": [\n        \"NNS\"\n    ], \n    \"nonbinding\": [\n        \"JJ\"\n    ], \n    \"de-worse-ification\": [\n        \"NN\"\n    ], \n    \"sketches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Aspe\": [\n        \"NNP\"\n    ], \n    \"Towson\": [\n        \"NNP\"\n    ], \n    \"outguessing\": [\n        \"VBG\"\n    ], \n    \"Peasants\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"undetectable\": [\n        \"JJ\"\n    ], \n    \"historicized\": [\n        \"VBN\"\n    ], \n    \"fetal-tissue\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sketched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"handless\": [\n        \"JJ\"\n    ], \n    \"Martek\": [\n        \"NNP\"\n    ], \n    \"Clabir\": [\n        \"NNP\"\n    ], \n    \"unnatural\": [\n        \"JJ\"\n    ], \n    \"preserve\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Chenevix-Trench\": [\n        \"NNP\"\n    ], \n    \"Packing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Martex\": [\n        \"NNP\"\n    ], \n    \"outrun\": [\n        \"VB\", \n        \"VBN\"\n    ], \n    \"Zeon\": [\n        \"NNP\"\n    ], \n    \"Auxiliary\": [\n        \"NNP\"\n    ], \n    \"ciphers\": [\n        \"NNS\"\n    ], \n    \"Cleveland-Cliffs\": [\n        \"NNP\"\n    ], \n    \"algae\": [\n        \"NNS\"\n    ], \n    \"curtailed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"charcoal-broiled\": [\n        \"JJ\"\n    ], \n    \"perceptible\": [\n        \"JJ\"\n    ], \n    \"Batavia\": [\n        \"NNP\"\n    ], \n    \"concessionaires\": [\n        \"NNS\"\n    ], \n    \"whitetail\": [\n        \"NN\"\n    ], \n    \"maht\": [\n        \"MD\"\n    ], \n    \"wiretaps\": [\n        \"NNS\"\n    ], \n    \"heartiest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"blush\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"assign\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Apollinaire\": [\n        \"NNP\"\n    ], \n    \"IIGS\": [\n        \"NNP\"\n    ], \n    \"buffaloes\": [\n        \"NNS\"\n    ], \n    \"heritages\": [\n        \"NNS\"\n    ], \n    \"Leish\": [\n        \"NNP\"\n    ], \n    \"knocking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"arsenal\": [\n        \"NN\"\n    ], \n    \"IDEC\": [\n        \"NNP\"\n    ], \n    \"Judaism\": [\n        \"NNP\"\n    ], \n    \"full-power\": [\n        \"JJ\"\n    ], \n    \"buffing\": [\n        \"VBG\"\n    ], \n    \"Reply\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Centrally\": [\n        \"RB\"\n    ], \n    \"Felons\": [\n        \"NNS\"\n    ], \n    \"Chilmark\": [\n        \"NNP\"\n    ], \n    \"guaranteeing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Europhoria\": [\n        \"NN\"\n    ], \n    \"LOS\": [\n        \"NNP\"\n    ], \n    \"under-researched\": [\n        \"JJ\"\n    ], \n    \"airlock\": [\n        \"NN\"\n    ], \n    \"Goddammit\": [\n        \"UH\"\n    ], \n    \"Transparent\": [\n        \"JJ\"\n    ], \n    \"selling\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"Lummus\": [\n        \"NNP\"\n    ], \n    \"Marques\": [\n        \"NNP\"\n    ], \n    \"abdominis\": [\n        \"NN\"\n    ], \n    \"less-ambitious\": [\n        \"JJR\"\n    ], \n    \"Marquet\": [\n        \"NNP\"\n    ], \n    \"authors\": [\n        \"NNS\"\n    ], \n    \"Marquez\": [\n        \"NNP\"\n    ], \n    \"Algol\": [\n        \"NNP\"\n    ], \n    \"most-livable\": [\n        \"JJS\"\n    ], \n    \"Brannigan\": [\n        \"NNP\"\n    ], \n    \"transistor-radio-sized\": [\n        \"JJ\"\n    ], \n    \"oyabun\": [\n        \"NN\"\n    ], \n    \"anticipate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ricoh\": [\n        \"NNP\"\n    ], \n    \"oystchers\": [\n        \"NNS\"\n    ], \n    \"Tendered\": [\n        \"JJ\"\n    ], \n    \"Skittish\": [\n        \"JJ\"\n    ], \n    \"obfuscate\": [\n        \"VB\"\n    ], \n    \"anti-Kennedy\": [\n        \"JJ\"\n    ], \n    \"Defendants\": [\n        \"NNS\"\n    ], \n    \"udders\": [\n        \"NNS\"\n    ], \n    \"Haney\": [\n        \"NNP\"\n    ], \n    \"Regains\": [\n        \"VBZ\"\n    ], \n    \"Hanes\": [\n        \"NNP\"\n    ], \n    \"coolant\": [\n        \"NN\"\n    ], \n    \"urgently\": [\n        \"RB\"\n    ], \n    \"back-yard\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"towardes\": [\n        \"IN\"\n    ], \n    \"Catch-22\": [\n        \"NN\"\n    ], \n    \"Transcendentalists\": [\n        \"NNPS\"\n    ], \n    \"fluting\": [\n        \"NN\"\n    ], \n    \"trading-a\": [\n        \"NN\"\n    ], \n    \"cumbersome\": [\n        \"JJ\"\n    ], \n    \"unfocussed\": [\n        \"VBN\"\n    ], \n    \"Rushmore\": [\n        \"NNP\"\n    ], \n    \"constructions\": [\n        \"NNS\"\n    ], \n    \"Pamphili\": [\n        \"NNP\"\n    ], \n    \"Milbankes\": [\n        \"NNPS\"\n    ], \n    \"N.L.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Allons\": [\n        \"FW\"\n    ], \n    \"expansionist\": [\n        \"JJ\"\n    ], \n    \"camouflage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Venusians\": [\n        \"NNPS\"\n    ], \n    \"expansionism\": [\n        \"NN\"\n    ], \n    \"Saison\": [\n        \"NNP\"\n    ], \n    \"LLerena\": [\n        \"NNP\"\n    ], \n    \"hell-bent\": [\n        \"JJ\"\n    ], \n    \"Developments\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Klineberg\": [\n        \"NNP\"\n    ], \n    \"flotation-type\": [\n        \"JJ\"\n    ], \n    \"promiscuous\": [\n        \"JJ\"\n    ], \n    \"unifications\": [\n        \"NNS\"\n    ], \n    \"double-billing\": [\n        \"VBG\"\n    ], \n    \"plunder\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bridle\": [\n        \"NN\"\n    ], \n    \"Evaluating\": [\n        \"VBG\"\n    ], \n    \"Concepts\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"hands-on\": [\n        \"JJ\"\n    ], \n    \"Barnhill\": [\n        \"NNP\"\n    ], \n    \"Bridge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"puddings\": [\n        \"NNS\"\n    ], \n    \"self-tilth\": [\n        \"NN\"\n    ], \n    \"Schreibman\": [\n        \"NNP\"\n    ], \n    \"Institutional\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"exempts\": [\n        \"VBZ\"\n    ], \n    \"carry-forward\": [\n        \"NN\"\n    ], \n    \"Sheik\": [\n        \"NNP\"\n    ], \n    \"contradictorily\": [\n        \"RB\"\n    ], \n    \"prettier\": [\n        \"JJR\"\n    ], \n    \"reground\": [\n        \"JJ\"\n    ], \n    \"Springs\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Fredrick\": [\n        \"NNP\"\n    ], \n    \"Fredrico\": [\n        \"NNP\"\n    ], \n    \"cross-ownership\": [\n        \"NN\"\n    ], \n    \"Blondes\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"humid\": [\n        \"JJ\"\n    ], \n    \"gnomon\": [\n        \"NN\"\n    ], \n    \"Gignoux\": [\n        \"NNP\"\n    ], \n    \"first-period\": [\n        \"JJ\"\n    ], \n    \"test-market\": [\n        \"NN\"\n    ], \n    \"registers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"renegotiate\": [\n        \"VB\"\n    ], \n    \"pocketed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"self-funding\": [\n        \"NN\"\n    ], \n    \"Postbank\": [\n        \"NNP\"\n    ], \n    \"MIG-2\\\\\": [\n        \"NN\"\n    ], \n    \"Algom\": [\n        \"NNP\"\n    ], \n    \"Surcliffe\": [\n        \"NNP\"\n    ], \n    \"northern\": [\n        \"JJ\"\n    ], \n    \"scrimped\": [\n        \"VBD\"\n    ], \n    \"scooter\": [\n        \"NN\"\n    ], \n    \"tack-solder\": [\n        \"VB\"\n    ], \n    \"Caravans\": [\n        \"NNPS\"\n    ], \n    \"grandiloquent\": [\n        \"JJ\"\n    ], \n    \"log-house\": [\n        \"NN\"\n    ], \n    \"Lyonnais\": [\n        \"NNP\"\n    ], \n    \"resourcefulness\": [\n        \"NN\"\n    ], \n    \"scooted\": [\n        \"VBD\"\n    ], \n    \"hardbake\": [\n        \"NN\"\n    ], \n    \"policing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"dominant\": [\n        \"JJ\"\n    ], \n    \"Notes\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"brink\": [\n        \"NN\"\n    ], \n    \"imparted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"speckled\": [\n        \"JJ\"\n    ], \n    \"consecration\": [\n        \"NN\"\n    ], \n    \"reneged\": [\n        \"VBD\"\n    ], \n    \"conflict-of-interest\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"speckles\": [\n        \"NNS\"\n    ], \n    \"G.J.\": [\n        \"NNP\"\n    ], \n    \"Noted\": [\n        \"JJ\"\n    ], \n    \"chimney\": [\n        \"NN\"\n    ], \n    \"Abdallah\": [\n        \"NNP\"\n    ], \n    \"catches\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"catcher\": [\n        \"NN\"\n    ], \n    \"Matra\": [\n        \"NNP\"\n    ], \n    \"toothbrushes\": [\n        \"NNS\"\n    ], \n    \"Arnault\": [\n        \"NNP\"\n    ], \n    \"nightshirt\": [\n        \"NN\"\n    ], \n    \"alteration\": [\n        \"NN\"\n    ], \n    \"palatability\": [\n        \"NN\"\n    ], \n    \"key-punched\": [\n        \"JJ\"\n    ], \n    \"catchee\": [\n        \"VB\"\n    ], \n    \"recommendations\": [\n        \"NNS\"\n    ], \n    \"Noteware\": [\n        \"NNP\"\n    ], \n    \"overtaxed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Limerick\": [\n        \"NNP\"\n    ], \n    \"slavishly\": [\n        \"RB\"\n    ], \n    \"cavorted\": [\n        \"VBD\"\n    ], \n    \"irredeemably\": [\n        \"RB\"\n    ], \n    \"Rosen\": [\n        \"NNP\"\n    ], \n    \"schizophrenic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Roses\": [\n        \"NNPS\"\n    ], \n    \"schizophrenia\": [\n        \"NN\"\n    ], \n    \"Mutinies\": [\n        \"NNS\"\n    ], \n    \"Cheyenne\": [\n        \"NNP\"\n    ], \n    \"plummeted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"precursors\": [\n        \"NNS\"\n    ], \n    \"lynched\": [\n        \"VBN\"\n    ], \n    \"embarking\": [\n        \"VBG\"\n    ], \n    \"McSorley\": [\n        \"NNP\"\n    ], \n    \"introject\": [\n        \"NN\"\n    ], \n    \"Papa-san\": [\n        \"NNP\"\n    ], \n    \"plush\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"assertive\": [\n        \"JJ\"\n    ], \n    \"Lisbeth\": [\n        \"NNP\"\n    ], \n    \"TeleCable\": [\n        \"NNP\"\n    ], \n    \"conditions\": [\n        \"NNS\"\n    ], \n    \"Aristech\": [\n        \"NNP\"\n    ], \n    \"Golfers\": [\n        \"NNP\"\n    ], \n    \"statistically\": [\n        \"RB\"\n    ], \n    \"unconscious\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"high-mindedness\": [\n        \"NN\"\n    ], \n    \"eluates\": [\n        \"NNS\"\n    ], \n    \"endogamous\": [\n        \"JJ\"\n    ], \n    \"F-A-18\": [\n        \"NN\"\n    ], \n    \"Althaus\": [\n        \"NNP\"\n    ], \n    \"LIMB\": [\n        \"NN\"\n    ], \n    \"dally\": [\n        \"VB\"\n    ], \n    \"Muench\": [\n        \"NNP\"\n    ], \n    \"hardline\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"LDCs\": [\n        \"NNPS\"\n    ], \n    \"Mardi\": [\n        \"NNP\"\n    ], \n    \"AMVISC\": [\n        \"NNP\"\n    ], \n    \"prepubescent\": [\n        \"JJ\"\n    ], \n    \"Fireside\": [\n        \"NNP\"\n    ], \n    \"Program-Trading\": [\n        \"JJ\"\n    ], \n    \"Fogle\": [\n        \"NNP\"\n    ], \n    \"Sherlock\": [\n        \"NNP\"\n    ], \n    \"undigested\": [\n        \"JJ\"\n    ], \n    \"PlanEcon\": [\n        \"NNP\"\n    ], \n    \"puritan\": [\n        \"JJ\"\n    ], \n    \"format\": [\n        \"NN\"\n    ], \n    \"longerterm\": [\n        \"JJ\"\n    ], \n    \"cavalrymen\": [\n        \"NNS\"\n    ], \n    \"Consortium\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"religiousness\": [\n        \"NN\"\n    ], \n    \"Diggers\\\\/Noise\": [\n        \"NNP\"\n    ], \n    \"Riesman\": [\n        \"NNP\"\n    ], \n    \"customer-inventory\": [\n        \"JJ\"\n    ], \n    \"TML\": [\n        \"NNP\"\n    ], \n    \"persecuted\": [\n        \"VBN\"\n    ], \n    \"Moulins\": [\n        \"NNP\"\n    ], \n    \"stamp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dams\": [\n        \"NNS\"\n    ], \n    \"damp\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Henrik\": [\n        \"NNP\"\n    ], \n    \"Ajax\": [\n        \"NNP\"\n    ], \n    \"damn\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"Royale\": [\n        \"NNP\"\n    ], \n    \"Warner\": [\n        \"NNP\"\n    ], \n    \"Takashi\": [\n        \"NNP\"\n    ], \n    \"TALK\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dame\": [\n        \"NN\"\n    ], \n    \"generating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Koninklijke\": [\n        \"NNP\"\n    ], \n    \"regroup\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"co-sponsoring\": [\n        \"JJ\"\n    ], \n    \"squabbled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"storylines\": [\n        \"NNS\"\n    ], \n    \"heute\": [\n        \"FW\"\n    ], \n    \"squabbles\": [\n        \"NNS\"\n    ], \n    \"assigning\": [\n        \"VBG\"\n    ], \n    \"dialing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Yunian\": [\n        \"NNP\"\n    ], \n    \"wrongness\": [\n        \"NN\"\n    ], \n    \"Taste\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"socialist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"megawatts\": [\n        \"NNS\"\n    ], \n    \"rope\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"bikini\": [\n        \"NN\"\n    ], \n    \"socialism\": [\n        \"NN\"\n    ], \n    \"Alfonso\": [\n        \"NNP\"\n    ], \n    \"equityholders\": [\n        \"NNS\"\n    ], \n    \"biking\": [\n        \"NN\"\n    ], \n    \"Planck\": [\n        \"NNP\"\n    ], \n    \"Alfonse\": [\n        \"NNP\"\n    ], \n    \"Celestino\": [\n        \"NNP\"\n    ], \n    \"wherever\": [\n        \"WRB\"\n    ], \n    \"Frog-marched\": [\n        \"JJ\"\n    ], \n    \"requisitioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hamlin\": [\n        \"NNP\"\n    ], \n    \"commonly\": [\n        \"RB\"\n    ], \n    \"Esquire\": [\n        \"NNP\"\n    ], \n    \"highest-paid\": [\n        \"JJ\"\n    ], \n    \"Cosby\": [\n        \"NNP\"\n    ], \n    \"Teen\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"double-coupon\": [\n        \"NN\"\n    ], \n    \"K.J.P.\": [\n        \"NNP\"\n    ], \n    \"flatcars\": [\n        \"NNS\"\n    ], \n    \"predominated\": [\n        \"VBD\"\n    ], \n    \"hocking\": [\n        \"VBG\"\n    ], \n    \"solarheated\": [\n        \"JJ\"\n    ], \n    \"Philharmonique\": [\n        \"NNP\"\n    ], \n    \"conflict\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Treating\": [\n        \"VBG\"\n    ], \n    \"covetous\": [\n        \"JJ\"\n    ], \n    \"Polimotor\": [\n        \"NNP\"\n    ], \n    \"censure\": [\n        \"NN\"\n    ], \n    \"jackbooted\": [\n        \"JJ\"\n    ], \n    \"Indication\": [\n        \"NN\"\n    ], \n    \"Glendale\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"C-141\": [\n        \"NNP\"\n    ], \n    \"idling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"herewith\": [\n        \"RB\"\n    ], \n    \"older\": [\n        \"JJR\", \n        \"RBR\", \n        \"JJ\"\n    ], \n    \"docked\": [\n        \"VBN\"\n    ], \n    \"tooth-straightening\": [\n        \"NN\"\n    ], \n    \"royalty\": [\n        \"NN\"\n    ], \n    \"reclaim\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"trance\": [\n        \"NN\"\n    ], \n    \"secession\": [\n        \"NN\"\n    ], \n    \"olden\": [\n        \"JJ\"\n    ], \n    \"docket\": [\n        \"NN\"\n    ], \n    \"half-smile\": [\n        \"NN\"\n    ], \n    \"weakest\": [\n        \"JJS\"\n    ], \n    \"returns\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"bondholders\": [\n        \"NNS\"\n    ], \n    \"Pedigree\": [\n        \"NNP\"\n    ], \n    \"Reeve\": [\n        \"NNP\"\n    ], \n    \"Groused\": [\n        \"VBD\"\n    ], \n    \"SYDNEY-Qintex\": [\n        \"NNP\"\n    ], \n    \"marque\": [\n        \"NN\"\n    ], \n    \"fertilizing\": [\n        \"VBG\"\n    ], \n    \"cocky\": [\n        \"JJ\"\n    ], \n    \"Deputies\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Prenatal\": [\n        \"JJ\"\n    ], \n    \"uselessly\": [\n        \"RB\"\n    ], \n    \"Citadel\": [\n        \"NNP\"\n    ], \n    \"Hosokawa\": [\n        \"NNP\"\n    ], \n    \"retirement\": [\n        \"NN\"\n    ], \n    \"red-brick\": [\n        \"JJ\"\n    ], \n    \"drug-law\": [\n        \"NN\"\n    ], \n    \"ASKS\": [\n        \"VBZ\"\n    ], \n    \"swallowing\": [\n        \"VBG\"\n    ], \n    \"Hoelzer\": [\n        \"NNP\"\n    ], \n    \"middle-ground\": [\n        \"JJ\"\n    ], \n    \"exercising\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"lobstermen\": [\n        \"NNS\"\n    ], \n    \"Large-screen\": [\n        \"JJ\"\n    ], \n    \"Treasures\": [\n        \"NNS\"\n    ], \n    \"Bancshares\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"ballots\": [\n        \"NNS\"\n    ], \n    \"remaining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Meritor\": [\n        \"NNP\"\n    ], \n    \"tax-revenue\": [\n        \"NN\"\n    ], \n    \"Boehringer\": [\n        \"NNP\"\n    ], \n    \"Coplandesque\": [\n        \"JJ\"\n    ], \n    \"lacking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Apostolakis\": [\n        \"NNP\"\n    ], \n    \"over-subscribed\": [\n        \"JJ\"\n    ], \n    \"reptilian\": [\n        \"JJ\"\n    ], \n    \"Stretching\": [\n        \"VBG\"\n    ], \n    \"Suisse\": [\n        \"NNP\"\n    ], \n    \"Copernican\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"game\": [\n        \"NN\"\n    ], \n    \"K.G.\": [\n        \"NNP\"\n    ], \n    \"wiser\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Hulings\": [\n        \"NNP\"\n    ], \n    \"wings\": [\n        \"NNS\"\n    ], \n    \"Kelsey-Hayes\": [\n        \"NNP\"\n    ], \n    \"industrial-equipment\": [\n        \"NN\"\n    ], \n    \"marvelous\": [\n        \"JJ\"\n    ], \n    \"stimulatory\": [\n        \"JJ\"\n    ], \n    \"day-care\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Rodent\": [\n        \"NN\"\n    ], \n    \"Sportsmen\": [\n        \"NNS\"\n    ], \n    \"Finn\": [\n        \"NNP\"\n    ], \n    \"Fina\": [\n        \"NNP\"\n    ], \n    \"higher-priced\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Fine\": [\n        \"NNP\", \n        \"JJ\", \n        \"NNPS\"\n    ], \n    \"Find\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Fing\": [\n        \"NNP\"\n    ], \n    \"Harkess\": [\n        \"NNP\"\n    ], \n    \"dizzily\": [\n        \"RB\"\n    ], \n    \"scriptwriter\": [\n        \"NN\"\n    ], \n    \"skimpy\": [\n        \"JJ\"\n    ], \n    \"software-development\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"markka\": [\n        \"FW\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Suominen\": [\n        \"NNP\"\n    ], \n    \"BLOCK\": [\n        \"NNP\"\n    ], \n    \"distributable\": [\n        \"JJ\"\n    ], \n    \"providence\": [\n        \"NN\"\n    ], \n    \"garroting\": [\n        \"VBG\"\n    ], \n    \"funnels\": [\n        \"NNS\"\n    ], \n    \"Winters\": [\n        \"NNP\"\n    ], \n    \"Lynchburg\": [\n        \"NNP\"\n    ], \n    \"Kupelian\": [\n        \"NNP\"\n    ], \n    \"Eminase\": [\n        \"NNP\"\n    ], \n    \"Performers\": [\n        \"NNS\"\n    ], \n    \"Neill\": [\n        \"NNP\"\n    ], \n    \"infra\": [\n        \"FW\"\n    ], \n    \"interpretative\": [\n        \"JJ\"\n    ], \n    \"Northerner\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Neils\": [\n        \"NNP\"\n    ], \n    \"taboo\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"sometimes-aggressive\": [\n        \"JJ\"\n    ], \n    \"uppon\": [\n        \"IN\", \n        \"NN\"\n    ], \n    \"letup\": [\n        \"NN\"\n    ], \n    \"birch\": [\n        \"NN\"\n    ], \n    \"misspent\": [\n        \"VBN\"\n    ], \n    \"bourses\": [\n        \"NNS\"\n    ], \n    \"Amusement\": [\n        \"NN\"\n    ], \n    \"whittled\": [\n        \"VBN\"\n    ], \n    \"congressman\": [\n        \"NN\"\n    ], \n    \"Macfadden\": [\n        \"NNP\"\n    ], \n    \"one-term\": [\n        \"JJ\"\n    ], \n    \"on-the-scene\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"miracles\": [\n        \"NNS\"\n    ], \n    \"DiLuzio\": [\n        \"NNP\"\n    ], \n    \"water-use\": [\n        \"NN\"\n    ], \n    \"dangle\": [\n        \"VB\"\n    ], \n    \"misbehavior\": [\n        \"NN\"\n    ], \n    \"panders\": [\n        \"NNS\"\n    ], \n    \"within\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"smelly\": [\n        \"JJ\"\n    ], \n    \"brow-beating\": [\n        \"NN\"\n    ], \n    \"convulsion\": [\n        \"NN\"\n    ], \n    \"smells\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"behaving\": [\n        \"VBG\"\n    ], \n    \"one-horse\": [\n        \"JJ\"\n    ], \n    \"renewal\": [\n        \"NN\"\n    ], \n    \"Keys\": [\n        \"NNP\"\n    ], \n    \"liniments\": [\n        \"NNS\"\n    ], \n    \"deodorant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Trovatore\": [\n        \"NNP\"\n    ], \n    \"Pennsauken\": [\n        \"NNP\"\n    ], \n    \"Gigot\": [\n        \"NNP\"\n    ], \n    \"motors.\": [\n        \"NNS\"\n    ], \n    \"Katharine\": [\n        \"NNP\"\n    ], \n    \"Katharina\": [\n        \"NNP\"\n    ], \n    \"Hudbay\": [\n        \"NNP\"\n    ], \n    \"Stepanova\": [\n        \"NNP\"\n    ], \n    \"rummage\": [\n        \"VB\"\n    ], \n    \"branchline\": [\n        \"JJ\"\n    ], \n    \"duly\": [\n        \"RB\"\n    ], \n    \"collapsed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Napkin\": [\n        \"NN\"\n    ], \n    \"hairyknuckled\": [\n        \"JJ\"\n    ], \n    \"Tommy\": [\n        \"NNP\"\n    ], \n    \"ginkgo\": [\n        \"NN\"\n    ], \n    \"properly\": [\n        \"RB\"\n    ], \n    \"photo-offset\": [\n        \"JJ\"\n    ], \n    \"segregation\": [\n        \"NN\"\n    ], \n    \"Switzerland\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Quixote\": [\n        \"NNP\"\n    ], \n    \"Schott\": [\n        \"NNP\"\n    ], \n    \"Hartford-based\": [\n        \"JJ\"\n    ], \n    \"Imreg\": [\n        \"NNP\"\n    ], \n    \"low-quality\": [\n        \"JJ\"\n    ], \n    \"Haigler\": [\n        \"NNP\"\n    ], \n    \"foreign-sounding\": [\n        \"JJ\"\n    ], \n    \"crack-user\": [\n        \"NN\"\n    ], \n    \"coast-to-coast\": [\n        \"JJ\"\n    ], \n    \"tube-nosed\": [\n        \"JJ\"\n    ], \n    \"responsively\": [\n        \"RB\"\n    ], \n    \"Florence\": [\n        \"NNP\"\n    ], \n    \"Siano\": [\n        \"NNP\"\n    ], \n    \"reveille\": [\n        \"NN\"\n    ], \n    \"intermodal\": [\n        \"JJ\"\n    ], \n    \"Nickel-iron\": [\n        \"JJ\"\n    ], \n    \"Viennese\": [\n        \"JJ\"\n    ], \n    \"Nuovo\": [\n        \"NNP\"\n    ], \n    \"Daralee\": [\n        \"NNP\"\n    ], \n    \"higher-ranking\": [\n        \"JJ\"\n    ], \n    \"proteges\": [\n        \"NNS\"\n    ], \n    \"national-priority\": [\n        \"JJ\"\n    ], \n    \"unwise\": [\n        \"JJ\"\n    ], \n    \"kidney\": [\n        \"NN\"\n    ], \n    \"upended\": [\n        \"JJ\"\n    ], \n    \"Spartan\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"dynodes\": [\n        \"NNS\"\n    ], \n    \"spokesmen\": [\n        \"NNS\"\n    ], \n    \"resistances\": [\n        \"NNS\"\n    ], \n    \"nabbed\": [\n        \"VBN\"\n    ], \n    \"Yehuda\": [\n        \"NNP\"\n    ], \n    \"Pottery\": [\n        \"NNP\"\n    ], \n    \"hoopla\": [\n        \"NN\"\n    ], \n    \"Snapped\": [\n        \"VBD\"\n    ], \n    \"Yehudi\": [\n        \"NNP\"\n    ], \n    \"jesting\": [\n        \"VBG\"\n    ], \n    \"gay\\\\/bisexual\": [\n        \"JJ\"\n    ], \n    \"current-delivery\": [\n        \"NN\"\n    ], \n    \"Underperform\": [\n        \"NNP\"\n    ], \n    \"Italics\": [\n        \"NNS\"\n    ], \n    \"lawn-mower\": [\n        \"NN\"\n    ], \n    \"Peterman\": [\n        \"NNP\"\n    ], \n    \"potentialities\": [\n        \"NNS\"\n    ], \n    \"constitutions\": [\n        \"NNS\"\n    ], \n    \"no-fault\": [\n        \"JJ\"\n    ], \n    \"ruthlessly\": [\n        \"RB\"\n    ], \n    \"reservation\": [\n        \"NN\"\n    ], \n    \"chameleon\": [\n        \"NN\"\n    ], \n    \"Automatically\": [\n        \"RB\"\n    ], \n    \"independently\": [\n        \"RB\"\n    ], \n    \"Statues\": [\n        \"NNS\"\n    ], \n    \"Makepeace\": [\n        \"NNP\"\n    ], \n    \"horseplay\": [\n        \"NN\"\n    ], \n    \"sedative\": [\n        \"NN\"\n    ], \n    \"face-off\": [\n        \"NN\"\n    ], \n    \"Wissahickon\": [\n        \"NNP\"\n    ], \n    \"Gabrielle\": [\n        \"NNP\"\n    ], \n    \"banishing\": [\n        \"VBG\"\n    ], \n    \"Village\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"payables\": [\n        \"NNS\"\n    ], \n    \"dermatological\": [\n        \"JJ\"\n    ], \n    \"Sunkist\": [\n        \"NNP\"\n    ], \n    \"F-108\": [\n        \"NN\"\n    ], \n    \"hyaline\": [\n        \"JJ\"\n    ], \n    \"fixed-rate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"underbrush\": [\n        \"NN\"\n    ], \n    \"Gerraughty\": [\n        \"NNP\"\n    ], \n    \"Dortch\": [\n        \"NNP\"\n    ], \n    \"Molinaro\": [\n        \"NNP\"\n    ], \n    \"McEnany\": [\n        \"NNP\"\n    ], \n    \"Conforming\": [\n        \"NN\"\n    ], \n    \"desserts\": [\n        \"NNS\"\n    ], \n    \"Crandall\": [\n        \"NNP\"\n    ], \n    \"Houston-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"IMREG\": [\n        \"NNP\"\n    ], \n    \"excludes\": [\n        \"VBZ\"\n    ], \n    \"Kraemer\": [\n        \"NN\"\n    ], \n    \"aerator\": [\n        \"NN\"\n    ], \n    \"stave\": [\n        \"VB\"\n    ], \n    \"President-elect\": [\n        \"NNP\"\n    ], \n    \"shack\": [\n        \"NN\"\n    ], \n    \"Plazek\": [\n        \"NNP\"\n    ], \n    \"Registry\": [\n        \"NNP\"\n    ], \n    \"excluded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rifle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cluttered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Herridge\": [\n        \"NNP\"\n    ], \n    \"Euroconvertible\": [\n        \"JJ\"\n    ], \n    \"Irvin\": [\n        \"NNP\"\n    ], \n    \"flicker\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Reorganization\": [\n        \"NNP\"\n    ], \n    \"murderous\": [\n        \"JJ\"\n    ], \n    \"jinxed\": [\n        \"VBN\"\n    ], \n    \"Histories\": [\n        \"NNP\"\n    ], \n    \"valued\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"muzzled\": [\n        \"VBN\"\n    ], \n    \"now-vacant\": [\n        \"JJ\"\n    ], \n    \"polyphosphate\": [\n        \"NN\"\n    ], \n    \"Argumenty\": [\n        \"NNP\"\n    ], \n    \"Peony\": [\n        \"NNP\"\n    ], \n    \"mercurial\": [\n        \"JJ\"\n    ], \n    \"Blitz\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"laundries\": [\n        \"NNS\"\n    ], \n    \"assignments\": [\n        \"NNS\"\n    ], \n    \"writer-turned-painter\": [\n        \"NN\"\n    ], \n    \"Rosburg\": [\n        \"NNP\"\n    ], \n    \"Amcap\": [\n        \"NNP\"\n    ], \n    \"picker\": [\n        \"NN\"\n    ], \n    \"booty\": [\n        \"NN\"\n    ], \n    \"Babies\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"picket\": [\n        \"NN\"\n    ], \n    \"oz.\": [\n        \"NN\"\n    ], \n    \"regummed\": [\n        \"VBD\"\n    ], \n    \"Hoylake\\\\\": [\n        \"JJ\"\n    ], \n    \"boots\": [\n        \"NNS\"\n    ], \n    \"waking\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Steinbrenner\": [\n        \"NNP\"\n    ], \n    \"VOLUNTARISM\": [\n        \"NN\"\n    ], \n    \"booth\": [\n        \"NN\"\n    ], \n    \"picked\": [\n        \"VBD\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"zu\": [\n        \"FW\"\n    ], \n    \"Solesmes\": [\n        \"NNP\"\n    ], \n    \"zq\": [\n        \"NN\"\n    ], \n    \"brokered\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Davila\": [\n        \"NNP\"\n    ], \n    \"Fueloil\": [\n        \"NNP\"\n    ], \n    \"paintings\": [\n        \"NNS\"\n    ], \n    \"Cordoba\": [\n        \"NNP\"\n    ], \n    \"Ligachev\": [\n        \"NNP\"\n    ], \n    \"flicked\": [\n        \"VBD\"\n    ], \n    \"Nishima\": [\n        \"NNP\"\n    ], \n    \"Goldfein\": [\n        \"NNP\"\n    ], \n    \"graybeard\": [\n        \"NN\"\n    ], \n    \"Saudi-American\": [\n        \"NNP\"\n    ], \n    \"Nishimo\": [\n        \"NNP\"\n    ], \n    \"levelheadedness\": [\n        \"NN\"\n    ], \n    \"pediatrics\": [\n        \"NN\"\n    ], \n    \"slowness\": [\n        \"NN\"\n    ], \n    \"knobby-knuckled\": [\n        \"JJ\"\n    ], \n    \"Consonantal\": [\n        \"JJ\"\n    ], \n    \"defector\": [\n        \"NN\"\n    ], \n    \"Armani\": [\n        \"NNP\"\n    ], \n    \"Our\": [\n        \"PRP$\", \n        \"NNP\"\n    ], \n    \"Margin\": [\n        \"NN\"\n    ], \n    \"Bateman\": [\n        \"NNP\"\n    ], \n    \"redrawn\": [\n        \"JJ\"\n    ], \n    \"Armand\": [\n        \"NNP\"\n    ], \n    \"thermocouples\": [\n        \"NNS\"\n    ], \n    \"lorries\": [\n        \"NNS\"\n    ], \n    \"indivisible\": [\n        \"JJ\"\n    ], \n    \"Likewise\": [\n        \"RB\"\n    ], \n    \"haunts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"McCartney\": [\n        \"NNP\"\n    ], \n    \"buckwheat\": [\n        \"NN\"\n    ], \n    \"nameless\": [\n        \"JJ\"\n    ], \n    \"Out\": [\n        \"IN\", \n        \"RB\", \n        \"RP\", \n        \"NNP\"\n    ], \n    \"Planned\": [\n        \"NNP\"\n    ], \n    \"deterrents\": [\n        \"NNS\"\n    ], \n    \"felled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Exclusion\": [\n        \"NN\"\n    ], \n    \"terrorizing\": [\n        \"VBG\"\n    ], \n    \"collaborating\": [\n        \"VBG\"\n    ], \n    \"paranoia\": [\n        \"NN\"\n    ], \n    \"oil-lease\": [\n        \"JJ\"\n    ], \n    \"countermove\": [\n        \"NN\"\n    ], \n    \"Consulate-General\": [\n        \"NNP\"\n    ], \n    \"surpluses\": [\n        \"NNS\"\n    ], \n    \"feller\": [\n        \"NN\"\n    ], \n    \"Henning\": [\n        \"NNP\"\n    ], \n    \"truckloads\": [\n        \"NNS\"\n    ], \n    \"hitwoman\": [\n        \"NN\"\n    ], \n    \"announced\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unpleasantly\": [\n        \"RB\"\n    ], \n    \"Cash-strapped\": [\n        \"JJ\"\n    ], \n    \"Breathing\": [\n        \"NN\"\n    ], \n    \"Leng\": [\n        \"NNP\"\n    ], \n    \"agreeably\": [\n        \"RB\"\n    ], \n    \"Lend\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Autozam\": [\n        \"NNP\"\n    ], \n    \"all-expenses-paid\": [\n        \"JJ\"\n    ], \n    \"muscle-shaping\": [\n        \"JJ\"\n    ], \n    \"Leno\": [\n        \"NNP\"\n    ], \n    \"Sonntag\": [\n        \"FW\"\n    ], \n    \"Lens\": [\n        \"NNP\"\n    ], \n    \"frogs\": [\n        \"NNS\"\n    ], \n    \"Membership\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cheeky\": [\n        \"JJ\"\n    ], \n    \"ASPR\": [\n        \"NNP\"\n    ], \n    \"Lent\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"agreeable\": [\n        \"JJ\"\n    ], \n    \"Leny\": [\n        \"NNP\"\n    ], \n    \"cheeks\": [\n        \"NNS\"\n    ], \n    \"Lubar\": [\n        \"NNP\"\n    ], \n    \"Chill.``\": [\n        \"``\"\n    ], \n    \"quality-improvement\": [\n        \"NN\"\n    ], \n    \"Semple-Lisle\": [\n        \"NNP\"\n    ], \n    \"Legs\": [\n        \"NNS\"\n    ], \n    \"stylemark\": [\n        \"NN\"\n    ], \n    \"aerosal\": [\n        \"NN\"\n    ], \n    \"disabling\": [\n        \"VBG\"\n    ], \n    \"rear-seat\": [\n        \"NN\"\n    ], \n    \"Princeton\\\\/Newport\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"northers\": [\n        \"NNS\"\n    ], \n    \"well-intended\": [\n        \"JJ\"\n    ], \n    \"Wilmer\": [\n        \"NNP\"\n    ], \n    \"semi-precious\": [\n        \"JJ\"\n    ], \n    \"Free-Will\": [\n        \"NNP\"\n    ], \n    \"gross-profit\": [\n        \"NN\"\n    ], \n    \"m.p.h\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Valrico\": [\n        \"NNP\"\n    ], \n    \"painkiller\": [\n        \"NN\"\n    ], \n    \"TURNS\": [\n        \"VBZ\"\n    ], \n    \"Trizec\": [\n        \"NNP\"\n    ], \n    \"Grazie\": [\n        \"NNP\"\n    ], \n    \"antithetical\": [\n        \"JJ\"\n    ], \n    \"still-dark\": [\n        \"JJ\"\n    ], \n    \"Kropp\": [\n        \"NNP\"\n    ], \n    \"Godfather\": [\n        \"NNP\"\n    ], \n    \"Astros\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"arrangement\": [\n        \"NN\"\n    ], \n    \"titre\": [\n        \"FW\"\n    ], \n    \"Moises\": [\n        \"NNP\"\n    ], \n    \"reestablish\": [\n        \"VB\"\n    ], \n    \"circular\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Widuri\": [\n        \"NNP\"\n    ], \n    \"anti-organization\": [\n        \"JJ\"\n    ], \n    \"Joel\": [\n        \"NNP\"\n    ], \n    \"yogurts\": [\n        \"NNS\"\n    ], \n    \"real-estate-asset\": [\n        \"JJ\"\n    ], \n    \"Joes\": [\n        \"NNS\"\n    ], \n    \"heat-resistant\": [\n        \"JJ\"\n    ], \n    \"Gosplan\": [\n        \"NNP\"\n    ], \n    \"Eckersley\": [\n        \"NNP\"\n    ], \n    \"Isola\": [\n        \"NNP\"\n    ], \n    \"day-today\": [\n        \"JJ\"\n    ], \n    \"fixed-income\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"briskness\": [\n        \"NN\"\n    ], \n    \"xenophobia\": [\n        \"NN\"\n    ], \n    \"While\": [\n        \"IN\"\n    ], \n    \"lordly\": [\n        \"JJ\"\n    ], \n    \"contraceptives\": [\n        \"NNS\"\n    ], \n    \"Politics\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"Who\": [\n        \"WP\", \n        \"NNP\", \n        \"PRP\"\n    ], \n    \"fracases\": [\n        \"NNS\"\n    ], \n    \"epidemiologist\": [\n        \"NN\"\n    ], \n    \"Aerobacter\": [\n        \"NN\"\n    ], \n    \"anticoagulant\": [\n        \"NN\"\n    ], \n    \"Ceylon\": [\n        \"NNP\"\n    ], \n    \"slickers\": [\n        \"NNS\"\n    ], \n    \"Crewmembers\": [\n        \"NNP\"\n    ], \n    \"tax-compliance\": [\n        \"NN\"\n    ], \n    \"Final\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Lewelleyn\": [\n        \"NNP\"\n    ], \n    \"Finan\": [\n        \"NNP\"\n    ], \n    \"Body\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"leprae\": [\n        \"NNS\"\n    ], \n    \"outer\": [\n        \"JJ\"\n    ], \n    \"Saatchi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"guerrilla\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"downgrading\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Conroe\": [\n        \"NNP\"\n    ], \n    \"Quintus\": [\n        \"NNP\"\n    ], \n    \"Freshman\": [\n        \"NN\"\n    ], \n    \"write-offs\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"yeterday\": [\n        \"NN\"\n    ], \n    \"Bode\": [\n        \"NNP\"\n    ], \n    \"video-cassette\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hande\": [\n        \"NN\"\n    ], \n    \"Celtic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"belatedly\": [\n        \"RB\"\n    ], \n    \"Primate\": [\n        \"NNP\"\n    ], \n    \"enshrouds\": [\n        \"VBZ\"\n    ], \n    \"Dissect\": [\n        \"VB\"\n    ], \n    \"loose-jointed\": [\n        \"JJ\"\n    ], \n    \"back-lighted\": [\n        \"JJ\"\n    ], \n    \"MiG-29s\": [\n        \"NNS\"\n    ], \n    \"index-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tupper\": [\n        \"NNP\"\n    ], \n    \"hands\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"documented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"AC-130U\": [\n        \"NN\"\n    ], \n    \"handy\": [\n        \"JJ\"\n    ], \n    \"Tiernan\": [\n        \"NNP\"\n    ], \n    \"Marginal\": [\n        \"JJ\"\n    ], \n    \"Accessories\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"write-down\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Plantago\": [\n        \"NN\"\n    ], \n    \"crossing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"uncaring\": [\n        \"JJ\"\n    ], \n    \"noneconomic\": [\n        \"JJ\"\n    ], \n    \"illuminate\": [\n        \"VB\"\n    ], \n    \"voyageurs\": [\n        \"NNS\"\n    ], \n    \"Lewellen\": [\n        \"NNP\"\n    ], \n    \"Representatives\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Liberty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Marijuana\": [\n        \"NN\"\n    ], \n    \"Santacruz\": [\n        \"NNP\"\n    ], \n    \"Matlowsky\": [\n        \"NNP\"\n    ], \n    \"margins\": [\n        \"NNS\"\n    ], \n    \"steadier\": [\n        \"JJR\"\n    ], \n    \"offsetting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Gubers\": [\n        \"NNP\"\n    ], \n    \"Whitford\": [\n        \"NNP\"\n    ], \n    \"Straszheim\": [\n        \"NNP\"\n    ], \n    \"Adolph\": [\n        \"NNP\"\n    ], \n    \"Corzine\": [\n        \"NNP\"\n    ], \n    \"remiss\": [\n        \"JJ\"\n    ], \n    \"wondrous\": [\n        \"JJ\"\n    ], \n    \"Jameses\": [\n        \"NNP\"\n    ], \n    \"Umberto\": [\n        \"NNP\"\n    ], \n    \"L.S.U.\": [\n        \"NNP\"\n    ], \n    \"chitchat\": [\n        \"NN\"\n    ], \n    \"liquidity-enhancing\": [\n        \"JJ\"\n    ], \n    \"humiliating\": [\n        \"JJ\"\n    ], \n    \"brainpower\": [\n        \"NN\"\n    ], \n    \"Museums\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Lobularity\": [\n        \"NN\"\n    ], \n    \"Carmelites\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"unliterary\": [\n        \"JJ\"\n    ], \n    \"banking-related\": [\n        \"JJ\"\n    ], \n    \"Summerdale\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"farmland\": [\n        \"NN\"\n    ], \n    \"hostile\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"PLAYER\": [\n        \"NNP\"\n    ], \n    \"Euro-watches\": [\n        \"NNS\"\n    ], \n    \"counterpart\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"intoxicated\": [\n        \"JJ\"\n    ], \n    \"Finanziario\": [\n        \"NNP\"\n    ], \n    \"Finanziaria\": [\n        \"NNP\"\n    ], \n    \"Reider\": [\n        \"NNP\"\n    ], \n    \"Maize\": [\n        \"NNP\"\n    ], \n    \"swapped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"disembodied\": [\n        \"JJ\"\n    ], \n    \"manure-scented\": [\n        \"JJ\"\n    ], \n    \"stultifying\": [\n        \"JJ\"\n    ], \n    \"Chewing\": [\n        \"VBG\"\n    ], \n    \"eminence\": [\n        \"NN\"\n    ], \n    \"Parfums\": [\n        \"NNP\"\n    ], \n    \"Hines\": [\n        \"NNP\"\n    ], \n    \"Eurodollar\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"practitioners\": [\n        \"NNS\"\n    ], \n    \"paves\": [\n        \"VBZ\"\n    ], \n    \"Inauguration\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Nichol\": [\n        \"NNP\"\n    ], \n    \"Tomilson\": [\n        \"NNP\"\n    ], \n    \"emergency.\": [\n        \"NN\"\n    ], \n    \"futurist\\\\/director\": [\n        \"NN\"\n    ], \n    \"Spelling\": [\n        \"NNP\"\n    ], \n    \"perfectly\": [\n        \"RB\"\n    ], \n    \"Fitzsimmons\": [\n        \"NNP\"\n    ], \n    \"paved\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lundberg\": [\n        \"NNP\"\n    ], \n    \"Profit-taking\": [\n        \"NN\"\n    ], \n    \"a-crowing\": [\n        \"VBG\"\n    ], \n    \"Panama-based\": [\n        \"JJ\"\n    ], \n    \"approachable\": [\n        \"JJ\"\n    ], \n    \"Hydroxazine\": [\n        \"NN\"\n    ], \n    \"jauntily\": [\n        \"RB\"\n    ], \n    \"manipulation\": [\n        \"NN\"\n    ], \n    \"reunification\": [\n        \"NN\"\n    ], \n    \"comported\": [\n        \"VBD\"\n    ], \n    \"acceptable\": [\n        \"JJ\"\n    ], \n    \"precursory\": [\n        \"JJ\"\n    ], \n    \"Mishkin\": [\n        \"NNP\"\n    ], \n    \"Piscopo\": [\n        \"NNP\"\n    ], \n    \"cash*/NN-flow\": [\n        \"JJ\"\n    ], \n    \"cartoonist\": [\n        \"NN\"\n    ], \n    \"Guzman\": [\n        \"NNP\"\n    ], \n    \"soviets\": [\n        \"NNS\"\n    ], \n    \"Mattausch\": [\n        \"NNP\"\n    ], \n    \"baby-boomers\": [\n        \"NNS\"\n    ], \n    \"Reviewing\": [\n        \"VBG\"\n    ], \n    \"Casper\": [\n        \"NNP\"\n    ], \n    \"Lima\": [\n        \"NNP\"\n    ], \n    \"Joban\": [\n        \"NNP\"\n    ], \n    \"Franciscans\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Lime\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Libyans\": [\n        \"NNPS\"\n    ], \n    \"Kahiltna\": [\n        \"NNP\"\n    ], \n    \"Drummer\": [\n        \"NN\"\n    ], \n    \"BAII\": [\n        \"NNP\"\n    ], \n    \"emptying\": [\n        \"VBG\"\n    ], \n    \"Lance\": [\n        \"NNP\"\n    ], \n    \"saintly\": [\n        \"JJ\"\n    ], \n    \"real-analytic\": [\n        \"JJ\"\n    ], \n    \"arrogate\": [\n        \"VB\"\n    ], \n    \"ephemeral\": [\n        \"JJ\"\n    ], \n    \"lung-cancer\": [\n        \"NN\"\n    ], \n    \"Billie\": [\n        \"NNP\"\n    ], \n    \"Jaworski\": [\n        \"NNP\"\n    ], \n    \"clodhoppers\": [\n        \"NNS\"\n    ], \n    \"legislatively\": [\n        \"RB\"\n    ], \n    \"Provident\": [\n        \"NNP\"\n    ], \n    \"Granny\": [\n        \"NNP\"\n    ], \n    \"Decorating\": [\n        \"VBG\"\n    ], \n    \"lecturer\": [\n        \"NN\"\n    ], \n    \"lectures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mileage\": [\n        \"NN\"\n    ], \n    \"Mindy\": [\n        \"NNP\"\n    ], \n    \"spine-chilling\": [\n        \"JJ\"\n    ], \n    \"Minds\": [\n        \"NNPS\"\n    ], \n    \"intentions\": [\n        \"NNS\"\n    ], \n    \"moths\": [\n        \"NNS\"\n    ], \n    \"rigor\": [\n        \"NN\"\n    ], \n    \"lectured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Enter\": [\n        \"VB\"\n    ], \n    \"Jenrette\": [\n        \"NNP\"\n    ], \n    \"memory-picture\": [\n        \"NN\"\n    ], \n    \"Hypotheses\": [\n        \"NNPS\"\n    ], \n    \"Bugle\": [\n        \"NNP\"\n    ], \n    \"Pummeled\": [\n        \"VBN\"\n    ], \n    \"isotopic\": [\n        \"JJ\"\n    ], \n    \"Boatmen\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bruxelles\": [\n        \"NNP\"\n    ], \n    \"Nantucket\": [\n        \"NNP\"\n    ], \n    \"Punitive\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Larimer\": [\n        \"NNP\"\n    ], \n    \"wealthier\": [\n        \"JJR\"\n    ], \n    \"transportation-where\": [\n        \"NN|WRB\"\n    ], \n    \"violation\": [\n        \"NN\"\n    ], \n    \"Acts\": [\n        \"NNPS\"\n    ], \n    \"crate\": [\n        \"NN\"\n    ], \n    \"brewers\": [\n        \"NNS\"\n    ], \n    \"excursus\": [\n        \"NN\"\n    ], \n    \"halfbacks\": [\n        \"NNS\"\n    ], \n    \"requsting\": [\n        \"VBG\"\n    ], \n    \"partners\": [\n        \"NNS\"\n    ], \n    \"Evershed\": [\n        \"NNP\"\n    ], \n    \"dramatize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"chromatics\": [\n        \"NNS\"\n    ], \n    \"hopeful\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"debt-ridden\": [\n        \"JJ\"\n    ], \n    \"quadrennial\": [\n        \"JJ\"\n    ], \n    \"craving\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"dreamers\": [\n        \"NNS\"\n    ], \n    \"Checkrobot\": [\n        \"NNP\"\n    ], \n    \"infernal\": [\n        \"JJ\"\n    ], \n    \"billion-pound\": [\n        \"JJ\"\n    ], \n    \"Insinuations\": [\n        \"NNS\"\n    ], \n    \"eulogizers\": [\n        \"NNS\"\n    ], \n    \"Midi\": [\n        \"NNP\"\n    ], \n    \"sprouting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Burckhardt\": [\n        \"NNP\"\n    ], \n    \"Broil\": [\n        \"VB\"\n    ], \n    \"Brodbeck\": [\n        \"NNP\"\n    ], \n    \"parlance\": [\n        \"NN\"\n    ], \n    \"Narrow\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Italo-American\": [\n        \"NNP\"\n    ], \n    \"circumvents\": [\n        \"VBZ\"\n    ], \n    \"endless\": [\n        \"JJ\"\n    ], \n    \"gray\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"processes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Eurocommercial\": [\n        \"JJ\"\n    ], \n    \"wart-hog\": [\n        \"NN\"\n    ], \n    \"Jiri\": [\n        \"NNP\"\n    ], \n    \"wheel-making\": [\n        \"JJ\"\n    ], \n    \"quarantine\": [\n        \"VB\"\n    ], \n    \"single-home\": [\n        \"JJ\"\n    ], \n    \"Margenau\": [\n        \"NNP\"\n    ], \n    \"evaders\": [\n        \"NNS\"\n    ], \n    \"nutmeg\": [\n        \"NN\"\n    ], \n    \"overflowing\": [\n        \"VBG\"\n    ], \n    \"Impossible\": [\n        \"JJ\"\n    ], \n    \"grab\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"grad\": [\n        \"NN\"\n    ], \n    \"urinary-tract\": [\n        \"NN\"\n    ], \n    \"Gnu-Emacs\": [\n        \"NNP\"\n    ], \n    \"pen-and-pencil\": [\n        \"JJ\"\n    ], \n    \"sensuality\": [\n        \"NN\"\n    ], \n    \"trilateral\": [\n        \"JJ\"\n    ], \n    \"terrain\": [\n        \"NN\"\n    ], \n    \"Banning\": [\n        \"VBG\"\n    ], \n    \"humane\": [\n        \"JJ\"\n    ], \n    \"Interior\": [\n        \"NNP\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"Seconds\": [\n        \"NNS\"\n    ], \n    \"pre-Vatican\": [\n        \"NNP\"\n    ], \n    \"Magnetism\": [\n        \"NNP\"\n    ], \n    \"allotted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Technician\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Isthmus\": [\n        \"NN\"\n    ], \n    \"Monogram\": [\n        \"NNP\"\n    ], \n    \"three-sevenths\": [\n        \"NNS\"\n    ], \n    \"buckets\": [\n        \"NNS\"\n    ], \n    \"Sri\": [\n        \"NNP\"\n    ], \n    \"Spethmann\": [\n        \"NNP\"\n    ], \n    \"recessions\": [\n        \"NNS\"\n    ], \n    \"Ring\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stygian\": [\n        \"JJ\"\n    ], \n    \"surrogacy\": [\n        \"NN\"\n    ], \n    \"Flock\": [\n        \"NNP\"\n    ], \n    \"psychotherapeutic\": [\n        \"JJ\"\n    ], \n    \"Isaacs\": [\n        \"NNP\"\n    ], \n    \"above-average\": [\n        \"JJ\"\n    ], \n    \"Strolling\": [\n        \"VBG\"\n    ], \n    \"presentations\": [\n        \"NNS\"\n    ], \n    \"admit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Egerton\": [\n        \"NNP\"\n    ], \n    \"skindiving\": [\n        \"VBG\"\n    ], \n    \"Foncier\": [\n        \"NNP\"\n    ], \n    \"Woody\": [\n        \"NNP\"\n    ], \n    \"surface-declaring\": [\n        \"JJ\"\n    ], \n    \"vielleicht\": [\n        \"FW\"\n    ], \n    \"spewed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"re-instated\": [\n        \"VBN\"\n    ], \n    \"Pap-pap-pap-hey\": [\n        \"UH\"\n    ], \n    \"distinguish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Acquirers\": [\n        \"NNS\"\n    ], \n    \"unselfishly\": [\n        \"RB\"\n    ], \n    \"quit\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"quip\": [\n        \"NN\"\n    ], \n    \"attraction\": [\n        \"NN\"\n    ], \n    \"speakin\": [\n        \"VBG\"\n    ], \n    \"preregistration\": [\n        \"NN\"\n    ], \n    \"Legittino\": [\n        \"NNP\"\n    ], \n    \"overthrowing\": [\n        \"VBG\"\n    ], \n    \"quiz\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"quid\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"dwarfs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Quesada\": [\n        \"NNP\"\n    ], \n    \"corresponding\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"negligently\": [\n        \"RB\"\n    ], \n    \"schoolgirls\": [\n        \"NNS\"\n    ], \n    \"pie\": [\n        \"NN\", \n        \"RP\"\n    ], \n    \"spaniel\": [\n        \"NN\"\n    ], \n    \"gouged\": [\n        \"VBD\"\n    ], \n    \"And\": [\n        \"CC\", \n        \"NNP\"\n    ], \n    \"encircles\": [\n        \"VBZ\"\n    ], \n    \"DRAMs\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"uncertified\": [\n        \"JJ\"\n    ], \n    \"Ana\": [\n        \"NNP\"\n    ], \n    \"Brasstown\": [\n        \"NNP\"\n    ], \n    \"intimidate\": [\n        \"VB\"\n    ], \n    \"Fonda\": [\n        \"NNP\"\n    ], \n    \"Ann\": [\n        \"NNP\"\n    ], \n    \"Schiffs\": [\n        \"NNPS\"\n    ], \n    \"Ant\": [\n        \"NN\"\n    ], \n    \"two-career\": [\n        \"JJ\"\n    ], \n    \"Delmed\": [\n        \"NNP\"\n    ], \n    \"encircled\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"service-sector\": [\n        \"JJ\"\n    ], \n    \"Fonds\": [\n        \"NNP\"\n    ], \n    \"Any\": [\n        \"DT\"\n    ], \n    \"coddled\": [\n        \"VBN\"\n    ], \n    \"Beyer\": [\n        \"NNP\"\n    ], \n    \"demo\": [\n        \"NN\"\n    ], \n    \"D.D.\": [\n        \"NNP\"\n    ], \n    \"unsheathing\": [\n        \"VBG\"\n    ], \n    \"second-largest\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Europe-based\": [\n        \"JJ\"\n    ], \n    \"sarcoma\": [\n        \"NN\"\n    ], \n    \"specialty-cheese\": [\n        \"JJ\"\n    ], \n    \"capture\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Hoenlein\": [\n        \"NNP\"\n    ], \n    \"Husbandry\": [\n        \"NN\"\n    ], \n    \"Autocamiones\": [\n        \"NNP\"\n    ], \n    \"Beat\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Beau\": [\n        \"NNP\"\n    ], \n    \"Sukarno\": [\n        \"NNP\"\n    ], \n    \"Bear\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"sex-change\": [\n        \"JJ\"\n    ], \n    \"Beal\": [\n        \"NNP\"\n    ], \n    \"infant-mortality\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Bean\": [\n        \"NNP\"\n    ], \n    \"widowhood\": [\n        \"NN\"\n    ], \n    \"Bead\": [\n        \"NN\"\n    ], \n    \"pushover\": [\n        \"NN\"\n    ], \n    \"unit-price\": [\n        \"NN\"\n    ], \n    \"Attila\": [\n        \"NNP\"\n    ], \n    \"experimented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"eccentric\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Coral\": [\n        \"NNP\"\n    ], \n    \"retail-volume\": [\n        \"NN\"\n    ], \n    \"Pour\": [\n        \"NNP\"\n    ], \n    \"Poul\": [\n        \"NNP\"\n    ], \n    \"privations\": [\n        \"NNS\"\n    ], \n    \"Unckle\": [\n        \"NNP\"\n    ], \n    \"Menlo\": [\n        \"NNP\"\n    ], \n    \"suborbital\": [\n        \"JJ\"\n    ], \n    \"frequently\": [\n        \"RB\"\n    ], \n    \"spree\": [\n        \"NN\"\n    ], \n    \"endearing\": [\n        \"JJ\"\n    ], \n    \"Nyheter\": [\n        \"NNP\"\n    ], \n    \"progess\": [\n        \"NN\"\n    ], \n    \"stretchers\": [\n        \"NNS\"\n    ], \n    \"nebulous\": [\n        \"JJ\"\n    ], \n    \"Windy\": [\n        \"NNP\"\n    ], \n    \"drone\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mixers\": [\n        \"NNS\"\n    ], \n    \"trust..\": [\n        \"NN\"\n    ], \n    \"Stern\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Winds\": [\n        \"NNP\"\n    ], \n    \"risk-free\": [\n        \"JJ\"\n    ], \n    \"information-cell\": [\n        \"NN\"\n    ], \n    \"housepaint\": [\n        \"NN\"\n    ], \n    \"quavered\": [\n        \"VBD\"\n    ], \n    \"Patiently\": [\n        \"RB\"\n    ], \n    \"enormously\": [\n        \"RB\"\n    ], \n    \"Innuendos\": [\n        \"NNS\"\n    ], \n    \"insurability\": [\n        \"NN\"\n    ], \n    \"HEALTH-CARE\": [\n        \"NN\"\n    ], \n    \"Erskine\": [\n        \"NNP\"\n    ], \n    \"mistaken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"dose\": [\n        \"NN\"\n    ], \n    \"steprelationship\": [\n        \"NN\"\n    ], \n    \"Dalles\": [\n        \"NNP\"\n    ], \n    \"non-resident\": [\n        \"JJ\"\n    ], \n    \"B-70\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"foxholes\": [\n        \"NNS\"\n    ], \n    \"dost\": [\n        \"VBP\"\n    ], \n    \"high-grade\": [\n        \"JJ\"\n    ], \n    \"Jacopo\": [\n        \"NNP\"\n    ], \n    \"Budgetary\": [\n        \"NNP\"\n    ], \n    \"Eggs\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Turkish\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Turbyfill\": [\n        \"NNP\"\n    ], \n    \"Pigs\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Hombre\": [\n        \"NNP\"\n    ], \n    \"Aoun\": [\n        \"NNP\"\n    ], \n    \"clouded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Diego-area\": [\n        \"JJ\"\n    ], \n    \"woodsmoke\": [\n        \"NN\"\n    ], \n    \"livin\": [\n        \"NN\"\n    ], \n    \"criticality\": [\n        \"NN\"\n    ], \n    \"Programs\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"all-female\": [\n        \"JJ\"\n    ], \n    \"Buckingham\": [\n        \"NNP\"\n    ], \n    \"Chipello\": [\n        \"NNP\"\n    ], \n    \"livid\": [\n        \"JJ\"\n    ], \n    \"Lithograph\": [\n        \"NNP\"\n    ], \n    \"formulaic\": [\n        \"JJ\"\n    ], \n    \"scale-down\": [\n        \"JJ\"\n    ], \n    \"immediately\": [\n        \"RB\"\n    ], \n    \"baptisms\": [\n        \"NNS\"\n    ], \n    \"sublimate\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Evensen\": [\n        \"NNP\"\n    ], \n    \"pared-down\": [\n        \"JJ\"\n    ], \n    \"Hyatt\": [\n        \"NNP\"\n    ], \n    \"politely\": [\n        \"RB\"\n    ], \n    \"fingerprints\": [\n        \"NNS\"\n    ], \n    \"clown\": [\n        \"NN\"\n    ], \n    \"Nagy\": [\n        \"NNP\"\n    ], \n    \"right-angling\": [\n        \"NN\"\n    ], \n    \"starre\": [\n        \"NN\"\n    ], \n    \"Naga\": [\n        \"NNPS\"\n    ], \n    \"Polish\": [\n        \"JJ\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"district-by-district\": [\n        \"RB\"\n    ], \n    \"refugees\": [\n        \"NNS\"\n    ], \n    \"page\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"ART\\\\/artifact\": [\n        \"NN\"\n    ], \n    \"Takimura\": [\n        \"NNP\"\n    ], \n    \"uttermost\": [\n        \"JJ\"\n    ], \n    \"Californians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"arbitrage\": [\n        \"NN\"\n    ], \n    \"ground-level\": [\n        \"NN\"\n    ], \n    \"pie-in-the-sky\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"explicit.\": [\n        \"JJ\"\n    ], \n    \"scuffle\": [\n        \"NN\"\n    ], \n    \"URGED\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rebellion\": [\n        \"NN\"\n    ], \n    \"Helicopter\": [\n        \"NNP\"\n    ], \n    \"peter\": [\n        \"VB\"\n    ], \n    \"assisting\": [\n        \"VBG\"\n    ], \n    \"helplessness\": [\n        \"NN\"\n    ], \n    \"competitor\": [\n        \"NN\"\n    ], \n    \"airspeed\": [\n        \"NN\"\n    ], \n    \"Colvin\": [\n        \"NNP\"\n    ], \n    \"weeknights\": [\n        \"NNS\"\n    ], \n    \"?\": [\n        \".\"\n    ], \n    \"hinder\": [\n        \"VB\"\n    ], \n    \"Angers\": [\n        \"NNP\"\n    ], \n    \"coated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"BDO\": [\n        \"NNP\"\n    ], \n    \"centaur\": [\n        \"NN\"\n    ], \n    \"Pfaff\": [\n        \"NNP\"\n    ], \n    \"grant-in-aid\": [\n        \"NN\"\n    ], \n    \"Revitalized\": [\n        \"VBN\"\n    ], \n    \"Thackeray\": [\n        \"NNP\"\n    ], \n    \"Tarboro\": [\n        \"NNP\"\n    ], \n    \"sheriffs\": [\n        \"NNS\"\n    ], \n    \"explicity\": [\n        \"NN\"\n    ], \n    \"Clubhouse\": [\n        \"NNP\"\n    ], \n    \"repaired\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Akiva\": [\n        \"NNP\"\n    ], \n    \"Presupposed\": [\n        \"VBN\"\n    ], \n    \"Pawley\": [\n        \"NNP\"\n    ], \n    \"well-grooved\": [\n        \"JJ\"\n    ], \n    \"Drabble\": [\n        \"NNP\"\n    ], \n    \"Scarcity\": [\n        \"NN\"\n    ], \n    \"U-Save\": [\n        \"NNP\"\n    ], \n    \"simplicitude\": [\n        \"NN\"\n    ], \n    \"eloquently\": [\n        \"RB\"\n    ], \n    \"Flavio\": [\n        \"NNP\"\n    ], \n    \"LITORIGIN\": [\n        \"NN\"\n    ], \n    \"equally\": [\n        \"RB\"\n    ], \n    \"adopters\": [\n        \"NNS\"\n    ], \n    \"Pencil\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"E.C.\": [\n        \"NNP\"\n    ], \n    \"autonomous\": [\n        \"JJ\"\n    ], \n    \"articulate\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"withholds\": [\n        \"VBZ\"\n    ], \n    \"globalized\": [\n        \"JJ\"\n    ], \n    \"Keystone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"finalizing\": [\n        \"VBG\"\n    ], \n    \"managing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Approach\": [\n        \"NNP\"\n    ], \n    \"Skiway\": [\n        \"NNP\"\n    ], \n    \"serfs\": [\n        \"NNS\"\n    ], \n    \"Enviropact\": [\n        \"NNP\"\n    ], \n    \"Toagosei\": [\n        \"NNP\"\n    ], \n    \"delusions\": [\n        \"NNS\"\n    ], \n    \"Hoffmann-LaRoche\": [\n        \"NNP\"\n    ], \n    \"incompetents\": [\n        \"NNS\"\n    ], \n    \"California\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"hoofs\": [\n        \"NNS\"\n    ], \n    \"perfect-attendance\": [\n        \"NN\"\n    ], \n    \"Bradford\": [\n        \"NNP\"\n    ], \n    \"panhandler\": [\n        \"NN\"\n    ], \n    \"revised\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Rejection\": [\n        \"NN\"\n    ], \n    \"invent\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"chinning\": [\n        \"NN\"\n    ], \n    \"Clozapine\": [\n        \"NNP\"\n    ], \n    \"collected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rutgers\": [\n        \"NNP\"\n    ], \n    \"Magnier\": [\n        \"NNP\"\n    ], \n    \"Larish\": [\n        \"NNP\"\n    ], \n    \"courts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ear\": [\n        \"NN\"\n    ], \n    \"Larisa\": [\n        \"NNP\"\n    ], \n    \"eat\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Re-Birth\": [\n        \"NNP\"\n    ], \n    \"upwardly\": [\n        \"RB\"\n    ], \n    \"Mylanta\": [\n        \"NNP\"\n    ], \n    \"Coughlin\": [\n        \"NNP\"\n    ], \n    \"Knesset\": [\n        \"NNP\"\n    ], \n    \"brown-tobacco\": [\n        \"JJ\"\n    ], \n    \"tetrachloride\": [\n        \"NN\"\n    ], \n    \"Sharfman\": [\n        \"NNP\"\n    ], \n    \"pansy\": [\n        \"NN\"\n    ], \n    \"Kristine\": [\n        \"NNP\"\n    ], \n    \"Barrymores\": [\n        \"NNPS\"\n    ], \n    \"dibenzofurans\": [\n        \"NNS\"\n    ], \n    \"heiress\": [\n        \"NN\"\n    ], \n    \"Euro-playing\": [\n        \"JJ\"\n    ], \n    \"Women\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"strengthens\": [\n        \"VBZ\"\n    ], \n    \"flecked\": [\n        \"VBN\"\n    ], \n    \"Spirits\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Hymen\": [\n        \"NN\"\n    ], \n    \"Missett\": [\n        \"NNP\"\n    ], \n    \"tissues\": [\n        \"NNS\"\n    ], \n    \"upsets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"utensils\": [\n        \"NNS\"\n    ], \n    \"piker\": [\n        \"NN\"\n    ], \n    \"Spirito\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Non-steel\": [\n        \"JJ\"\n    ], \n    \"BethForge\": [\n        \"NNP\"\n    ], \n    \"Orchestral\": [\n        \"NNP\"\n    ], \n    \"class-action\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"RAVAGES\": [\n        \"NNS\"\n    ], \n    \"three-to-five-year-olds\": [\n        \"NNS\"\n    ], \n    \"Gynecologists\": [\n        \"NNS\"\n    ], \n    \"little-feared\": [\n        \"JJ\"\n    ], \n    \"onwards\": [\n        \"RB\"\n    ], \n    \"Shales\": [\n        \"NNP\"\n    ], \n    \"Chevrolet-Pontiac-GM\": [\n        \"NNP\"\n    ], \n    \"Fingered\": [\n        \"NNP\"\n    ], \n    \"stonework\": [\n        \"NN\"\n    ], \n    \"acrylic\": [\n        \"NN\"\n    ], \n    \"Cheeseheads\": [\n        \"NNS\"\n    ], \n    \"talkin\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"prepaying\": [\n        \"VBG\"\n    ], \n    \"wouldbe\": [\n        \"JJ\"\n    ], \n    \"Neurosciences\": [\n        \"NNP\"\n    ], \n    \"astounding\": [\n        \"JJ\"\n    ], \n    \"whisperings\": [\n        \"NNS\"\n    ], \n    \"Toonker\": [\n        \"NNP\"\n    ], \n    \"dragoon\": [\n        \"VBP\"\n    ], \n    \"dew-sodden\": [\n        \"JJ\"\n    ], \n    \"Thorne\": [\n        \"NNP\"\n    ], \n    \"tissue.\": [\n        \"NN\"\n    ], \n    \"Bribe\": [\n        \"NN\"\n    ], \n    \"undelivered\": [\n        \"JJ\"\n    ], \n    \"friends\": [\n        \"NNS\"\n    ], \n    \"yell\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"grunted\": [\n        \"VBD\"\n    ], \n    \"anacondas\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Bockius\": [\n        \"NNP\"\n    ], \n    \"Rayburn\": [\n        \"NNP\"\n    ], \n    \"travelogues\": [\n        \"NNS\"\n    ], \n    \"rounding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"inset\": [\n        \"NN\"\n    ], \n    \"Suchard\": [\n        \"NNP\"\n    ], \n    \"theretofore\": [\n        \"RB\"\n    ], \n    \"diagnosis\": [\n        \"NN\"\n    ], \n    \"Leftovers\": [\n        \"NNP\"\n    ], \n    \"validation\": [\n        \"NN\"\n    ], \n    \"Weingarten\": [\n        \"NNP\"\n    ], \n    \"commencement\": [\n        \"NN\"\n    ], \n    \"disruptive\": [\n        \"JJ\"\n    ], \n    \"Corbin\": [\n        \"NN\"\n    ], \n    \"powdery\": [\n        \"JJ\"\n    ], \n    \"incantation\": [\n        \"NN\"\n    ], \n    \"dissolution\": [\n        \"NN\"\n    ], \n    \"four-year\": [\n        \"JJ\"\n    ], \n    \"chelicerates\": [\n        \"NNS\"\n    ], \n    \"powders\": [\n        \"NNS\"\n    ], \n    \"alders\": [\n        \"NNS\"\n    ], \n    \"transversally\": [\n        \"RB\"\n    ], \n    \"knight-errantry\": [\n        \"NN\"\n    ], \n    \"battleground\": [\n        \"NN\"\n    ], \n    \"Plate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gamut\": [\n        \"NN\"\n    ], \n    \"Alesio\": [\n        \"NNP\"\n    ], \n    \"Plato\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Plath\": [\n        \"NNP\"\n    ], \n    \"Job\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Platt\": [\n        \"NNP\"\n    ], \n    \"fine-grained\": [\n        \"JJ\"\n    ], \n    \"teaspoon\": [\n        \"NN\"\n    ], \n    \"Apache\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Software\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"comparatively\": [\n        \"RB\"\n    ], \n    \"Anaheim-Santa\": [\n        \"NNP\"\n    ], \n    \"aparently\": [\n        \"RB\"\n    ], \n    \"Montrose\": [\n        \"NNP\"\n    ], \n    \"vasa\": [\n        \"NN\"\n    ], \n    \"Patch\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"smack\": [\n        \"RB\", \n        \"VB\", \n        \"UH\", \n        \"VBP\"\n    ], \n    \"govern\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Outsiders\": [\n        \"NNS\"\n    ], \n    \"Discovision\": [\n        \"NNP\"\n    ], \n    \"RTC-appointed\": [\n        \"JJ\"\n    ], \n    \"school-district\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"vast\": [\n        \"JJ\"\n    ], \n    \"Ignatius\": [\n        \"NNP\"\n    ], \n    \"baking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"strayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Maggot\": [\n        \"NNP\"\n    ], \n    \"Mascotte\": [\n        \"NNP\"\n    ], \n    \"Thomae\": [\n        \"NNP\"\n    ], \n    \"panelized\": [\n        \"VBN\"\n    ], \n    \"epigraph\": [\n        \"NN\"\n    ], \n    \"Branson\": [\n        \"NNP\"\n    ], \n    \"martinis\": [\n        \"NNS\"\n    ], \n    \"Established\": [\n        \"VBN\"\n    ], \n    \"Caygill\": [\n        \"NNP\"\n    ], \n    \"Excellency\": [\n        \"NNP\"\n    ], \n    \"Galles\": [\n        \"NNP\"\n    ], \n    \"Saffer\": [\n        \"NNP\"\n    ], \n    \"implementer\": [\n        \"NN\"\n    ], \n    \"Roehm\": [\n        \"NNP\"\n    ], \n    \"Newbridge\": [\n        \"NNP\"\n    ], \n    \"Ragalyi\": [\n        \"NNP\"\n    ], \n    \"implemented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cinemax\": [\n        \"NNP\"\n    ], \n    \"Eventually\": [\n        \"RB\"\n    ], \n    \"gawky\": [\n        \"JJ\"\n    ], \n    \"Mannington\": [\n        \"NNP\"\n    ], \n    \"inordinately\": [\n        \"RB\"\n    ], \n    \"tirelessly\": [\n        \"RB\"\n    ], \n    \"orchestra\": [\n        \"NN\"\n    ], \n    \"Minuteman\": [\n        \"NNP\"\n    ], \n    \"Wempner\": [\n        \"NNP\"\n    ], \n    \"Binghamton\": [\n        \"NNP\"\n    ], \n    \"Treybig\": [\n        \"NNP\"\n    ], \n    \"Pachinko\": [\n        \"NN\"\n    ], \n    \"Ave.\": [\n        \"NNP\"\n    ], \n    \"Greens\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fueling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Greene\": [\n        \"NNP\"\n    ], \n    \"Bhirud\": [\n        \"NNP\"\n    ], \n    \"outer-space\": [\n        \"NN\"\n    ], \n    \"metaphosphate\": [\n        \"NN\"\n    ], \n    \"rods\": [\n        \"NNS\"\n    ], \n    \"brackish\": [\n        \"JJ\"\n    ], \n    \"dry\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"intra-administration\": [\n        \"JJ\"\n    ], \n    \"Yooee\": [\n        \"UH\"\n    ], \n    \"stiffing\": [\n        \"VBG\"\n    ], \n    \"suitably\": [\n        \"RB\"\n    ], \n    \"taxis\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ignoring\": [\n        \"VBG\"\n    ], \n    \"hokey\": [\n        \"JJ\"\n    ], \n    \"harass\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Xtra\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"diagrammed\": [\n        \"VBN\"\n    ], \n    \"adopting\": [\n        \"VBG\"\n    ], \n    \"suitable\": [\n        \"JJ\"\n    ], \n    \"processional\": [\n        \"NN\"\n    ], \n    \"Tillinghast\": [\n        \"NNP\"\n    ], \n    \"reckoned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Wire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"constrictions\": [\n        \"NNS\"\n    ], \n    \"flurried\": [\n        \"VBD\"\n    ], \n    \"Relations\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Also\": [\n        \"RB\"\n    ], \n    \"grade-constructed\": [\n        \"JJ\"\n    ], \n    \"Microscopic\": [\n        \"JJ\"\n    ], \n    \"soybean\": [\n        \"NN\"\n    ], \n    \"JUMBO\": [\n        \"JJ\"\n    ], \n    \"gorillas\": [\n        \"NNS\"\n    ], \n    \"Wiry\": [\n        \"JJ\"\n    ], \n    \"Journalists\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"multipronged\": [\n        \"VBN\"\n    ], \n    \"Crested\": [\n        \"NNP\"\n    ], \n    \"Downs\": [\n        \"NNP\"\n    ], \n    \"watering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"mass-audience\": [\n        \"JJ\"\n    ], \n    \"moored\": [\n        \"VBN\"\n    ], \n    \"social-affairs\": [\n        \"NNS\"\n    ], \n    \"negativism\": [\n        \"NN\"\n    ], \n    \"Bronfman\": [\n        \"NNP\"\n    ], \n    \"Chekhov\": [\n        \"NNP\"\n    ], \n    \"breeders\": [\n        \"NNS\"\n    ], \n    \"wary\": [\n        \"JJ\"\n    ], \n    \"Outing\": [\n        \"NNP\"\n    ], \n    \"well-heeled\": [\n        \"JJ\"\n    ], \n    \"Tiananmen\": [\n        \"NNP\"\n    ], \n    \"warp\": [\n        \"NN\"\n    ], \n    \"lunge\": [\n        \"VB\"\n    ], \n    \"quibbling\": [\n        \"VBG\"\n    ], \n    \"Ramo\": [\n        \"NNP\"\n    ], \n    \"G.\": [\n        \"NNP\"\n    ], \n    \"flotilla\": [\n        \"NN\"\n    ], \n    \"ward\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"three-power\": [\n        \"JJ\"\n    ], \n    \"Kurosaki\": [\n        \"NNP\"\n    ], \n    \"fabricators\": [\n        \"NNS\"\n    ], \n    \"candies\": [\n        \"NNS\"\n    ], \n    \"kraut\": [\n        \"NN\"\n    ], \n    \"Fellowships\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"setup\": [\n        \"NN\"\n    ], \n    \"barrister\": [\n        \"NN\"\n    ], \n    \"guise\": [\n        \"NN\"\n    ], \n    \"home-trading\": [\n        \"NN\"\n    ], \n    \"Alcatraz\": [\n        \"NNP\"\n    ], \n    \"Antwerp\": [\n        \"NNP\"\n    ], \n    \"full-length\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ready\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Homosexuals\": [\n        \"NNS\"\n    ], \n    \"ostrich\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"people...\": [\n        \":\"\n    ], \n    \"unforgettable\": [\n        \"JJ\"\n    ], \n    \"SLORC\": [\n        \"NNP\"\n    ], \n    \"aging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"GQ\": [\n        \"NNP\"\n    ], \n    \"Truell\": [\n        \"NNP\"\n    ], \n    \"Nykvist\": [\n        \"NNP\"\n    ], \n    \"belying\": [\n        \"VBG\"\n    ], \n    \"fielders\": [\n        \"NNS\"\n    ], \n    \"faults\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"faulty\": [\n        \"JJ\"\n    ], \n    \"prefectures\": [\n        \"NNS\"\n    ], \n    \"needle-nosed\": [\n        \"JJ\"\n    ], \n    \"Greenock\": [\n        \"NNP\"\n    ], \n    \"replacing\": [\n        \"VBG\"\n    ], \n    \"postal-business\": [\n        \"JJ\"\n    ], \n    \"indignity\": [\n        \"NN\"\n    ], \n    \"Richer\": [\n        \"NNP\", \n        \"JJR\"\n    ], \n    \"predominates\": [\n        \"VBZ\"\n    ], \n    \"natch\": [\n        \"UH\"\n    ], \n    \"plant-science\": [\n        \"NN\"\n    ], \n    \"THACHER\": [\n        \"NNP\"\n    ], \n    \"attempt\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"NORIEGA\": [\n        \"NNP\"\n    ], \n    \"vegetables\": [\n        \"NNS\"\n    ], \n    \"owls\": [\n        \"NNS\"\n    ], \n    \"fraudulently\": [\n        \"RB\"\n    ], \n    \"Monroe\": [\n        \"NNP\"\n    ], \n    \"Clendenin\": [\n        \"NNP\"\n    ], \n    \"Ancient\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ptolemy\": [\n        \"NNP\"\n    ], \n    \"Javert\": [\n        \"NNP\"\n    ], \n    \"retirement-savings\": [\n        \"JJ\"\n    ], \n    \"Lethcoe\": [\n        \"NNP\"\n    ], \n    \"Surveillance\": [\n        \"NN\"\n    ], \n    \"Florican-Inverness\": [\n        \"NNP\"\n    ], \n    \"befall\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"eavesdropping\": [\n        \"NN\"\n    ], \n    \"scorers\": [\n        \"NNS\"\n    ], \n    \"underenforces\": [\n        \"VBZ\"\n    ], \n    \"GM\": [\n        \"NNP\"\n    ], \n    \"Karlheinz\": [\n        \"NNP\"\n    ], \n    \"experientially\": [\n        \"RB\"\n    ], \n    \"frisky\": [\n        \"JJ\"\n    ], \n    \"policy-oriented\": [\n        \"JJ\"\n    ], \n    \"Conversations\": [\n        \"NNS\"\n    ], \n    \"unexercised\": [\n        \"JJ\"\n    ], \n    \"credit-quality\": [\n        \"JJ\"\n    ], \n    \"low-profit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"plantation\": [\n        \"NN\"\n    ], \n    \"symptomless\": [\n        \"JJ\"\n    ], \n    \"persist\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"weeks\": [\n        \"NNS\"\n    ], \n    \"petulant\": [\n        \"JJ\"\n    ], \n    \"vivre\": [\n        \"FW\"\n    ], \n    \"Pfizer\": [\n        \"NNP\"\n    ], \n    \"duodenal\": [\n        \"JJ\"\n    ], \n    \"unstylish\": [\n        \"JJ\"\n    ], \n    \"tentacle\": [\n        \"NN\"\n    ], \n    \"bronchial\": [\n        \"JJ\"\n    ], \n    \"color-glutted\": [\n        \"JJ\"\n    ], \n    \"foot-dragging\": [\n        \"NN\"\n    ], \n    \"niches\": [\n        \"NNS\"\n    ], \n    \"Indio\": [\n        \"NNP\"\n    ], \n    \"cloth-of-gold\": [\n        \"NN\"\n    ], \n    \"prophetically\": [\n        \"RB\"\n    ], \n    \"sleepless\": [\n        \"JJ\"\n    ], \n    \"India\": [\n        \"NNP\"\n    ], \n    \"pre-crash\": [\n        \"JJ\"\n    ], \n    \"Claeson\": [\n        \"NNP\"\n    ], \n    \"crosswalk\": [\n        \"NN\"\n    ], \n    \"mounts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Curious\": [\n        \"JJ\"\n    ], \n    \"bootleggers\": [\n        \"NNS\"\n    ], \n    \"operatives\": [\n        \"NNS\"\n    ], \n    \"messianic\": [\n        \"JJ\"\n    ], \n    \"objectors\": [\n        \"NNS\"\n    ], \n    \"EISA\": [\n        \"NNP\"\n    ], \n    \"bouanahsha\": [\n        \"FW\"\n    ], \n    \"marital\": [\n        \"JJ\"\n    ], \n    \"worker-safety\": [\n        \"NN\"\n    ], \n    \"glinting\": [\n        \"VBG\"\n    ], \n    \"stealing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"happenstance\": [\n        \"NN\"\n    ], \n    \"shirking\": [\n        \"VBG\"\n    ], \n    \"first-class\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Saundra\": [\n        \"NNP\"\n    ], \n    \"Marvellee\": [\n        \"NNP\"\n    ], \n    \"typology\": [\n        \"NN\"\n    ], \n    \"velvet\": [\n        \"NN\"\n    ], \n    \"typecast\": [\n        \"VB\"\n    ], \n    \"non-scheduled\": [\n        \"JJ\"\n    ], \n    \"gradient\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tales\": [\n        \"NNS\"\n    ], \n    \"secretary-general\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Phedre\": [\n        \"NNP\"\n    ], \n    \"reader\": [\n        \"NN\"\n    ], \n    \"Jenkinson\": [\n        \"NNP\"\n    ], \n    \"revolving\": [\n        \"VBG\", \n        \"JJ\", \n        \"VBG|JJ\"\n    ], \n    \"DLC\": [\n        \"NNP\"\n    ], \n    \"Comstron\": [\n        \"NNP\"\n    ], \n    \"guiding\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"cutest\": [\n        \"JJS\"\n    ], \n    \"Halkett\": [\n        \"NNP\"\n    ], \n    \"DLJ\": [\n        \"NNP\"\n    ], \n    \"enclosing\": [\n        \"VBG\"\n    ], \n    \"Izquierda\": [\n        \"NNP\"\n    ], \n    \"aboriginal\": [\n        \"JJ\"\n    ], \n    \"Repeat\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Bache\": [\n        \"NNP\"\n    ], \n    \"struggle\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"earth-tone\": [\n        \"NN\"\n    ], \n    \"inadequately\": [\n        \"RB\"\n    ], \n    \"DLX\": [\n        \"NNP\"\n    ], \n    \"unconditioned\": [\n        \"JJ\"\n    ], \n    \"Curt\": [\n        \"NNP\"\n    ], \n    \"cookbooks\": [\n        \"NNS\"\n    ], \n    \"Clinton\": [\n        \"NNP\"\n    ], \n    \"Beaulieu\": [\n        \"NNP\"\n    ], \n    \"science-watchers\": [\n        \"NNS\"\n    ], \n    \"scrounge\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Cury\": [\n        \"NNP\"\n    ], \n    \"fleck\": [\n        \"NN\"\n    ], \n    \"half-blood\": [\n        \"JJ\"\n    ], \n    \"Curl\": [\n        \"NNP\"\n    ], \n    \"Homicide\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gems\": [\n        \"NNS\"\n    ], \n    \"naughty\": [\n        \"JJ\"\n    ], \n    \"decency\": [\n        \"NN\"\n    ], \n    \"reassure\": [\n        \"VB\"\n    ], \n    \"unlit\": [\n        \"NN\"\n    ], \n    \"Sobibor\": [\n        \"NNP\"\n    ], \n    \"Christmas-season\": [\n        \"NN\"\n    ], \n    \"MATERIALS\": [\n        \"NNP\"\n    ], \n    \"radiate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Hoare\": [\n        \"NNP\"\n    ], \n    \"ditch\": [\n        \"NN\"\n    ], \n    \"runways\": [\n        \"NNS\"\n    ], \n    \"peggin\": [\n        \"NN\"\n    ], \n    \"neuromuscular\": [\n        \"JJ\"\n    ], \n    \"Pirko\": [\n        \"NNP\"\n    ], \n    \"dumbfounded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Liability\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Nuttall\": [\n        \"NNP\"\n    ], \n    \"halted\": [\n        \"VBN\", \n        \"NN\", \n        \"VBD\"\n    ], \n    \"Press\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"dwell\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Producing\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"invalids\": [\n        \"NNS\"\n    ], \n    \"outputting\": [\n        \"VBG\"\n    ], \n    \"ruthenium\": [\n        \"NN\"\n    ], \n    \"bouncing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"gym\": [\n        \"NN\"\n    ], \n    \"gambled\": [\n        \"VBN\"\n    ], \n    \"soul-searching\": [\n        \"NN\"\n    ], \n    \"gambles\": [\n        \"NNS\"\n    ], \n    \"gambler\": [\n        \"NN\"\n    ], \n    \"boarding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"affront\": [\n        \"NN\"\n    ], \n    \"ex-Tory\": [\n        \"NN\"\n    ], \n    \"exorcist\": [\n        \"NN\"\n    ], \n    \"Eddy\": [\n        \"NNP\"\n    ], \n    \"imputation\": [\n        \"NN\"\n    ], \n    \"exorcism\": [\n        \"NN\"\n    ], \n    \"Heredity\": [\n        \"NN\"\n    ], \n    \"Thoughts\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"laypersons\": [\n        \"NNS\"\n    ], \n    \"exorcise\": [\n        \"VB\"\n    ], \n    \"Movements\": [\n        \"NNS\"\n    ], \n    \"sees\": [\n        \"VBZ\"\n    ], \n    \"seer\": [\n        \"NN\"\n    ], \n    \"seep\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"quench\": [\n        \"VB\"\n    ], \n    \"rechristens\": [\n        \"VBZ\"\n    ], \n    \"Billiards\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"longer-term\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"pantheon\": [\n        \"NN\"\n    ], \n    \"seed\": [\n        \"NN\", \n        \"VBN\"\n    ], \n    \"ergonomics\": [\n        \"NNS\"\n    ], \n    \"seen\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"seem\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"exchange-rate\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"seek\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"ACQUISITION\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"rangy\": [\n        \"JJ\"\n    ], \n    \"bogies\": [\n        \"NNS\"\n    ], \n    \"Lorex\": [\n        \"NNP\"\n    ], \n    \"Dunlap\": [\n        \"NNP\"\n    ], \n    \"floppy\": [\n        \"JJ\"\n    ], \n    \"Jaguars\": [\n        \"NNPS\"\n    ], \n    \"Nationalists\": [\n        \"NNPS\"\n    ], \n    \"re-scheduled\": [\n        \"VBN\"\n    ], \n    \"Wozzek\": [\n        \"NNP\"\n    ], \n    \"transnational\": [\n        \"JJ\"\n    ], \n    \"Shrugs\": [\n        \"NNP\"\n    ], \n    \"Treadway\": [\n        \"NNP\"\n    ], \n    \"Ark.-based\": [\n        \"JJ\"\n    ], \n    \"Loren\": [\n        \"NNP\"\n    ], \n    \"Studds-Miller\": [\n        \"NNP\"\n    ], \n    \"Scheetz\": [\n        \"NNP\"\n    ], \n    \"clonazepam\": [\n        \"NN\"\n    ], \n    \"Journalism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"mashed\": [\n        \"VBN\"\n    ], \n    \"Incidentally\": [\n        \"RB\"\n    ], \n    \"Roommates\": [\n        \"NNS\"\n    ], \n    \"mid-August\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Brusca\": [\n        \"NNP\"\n    ], \n    \"Reached\": [\n        \"VBN\"\n    ], \n    \"crescendo\": [\n        \"NN\"\n    ], \n    \"Optics\": [\n        \"NNP\"\n    ], \n    \"treasonous\": [\n        \"JJ\"\n    ], \n    \"Attorney\": [\n        \"NNP\"\n    ], \n    \"doi\": [\n        \"FW\"\n    ], \n    \"don\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"doo\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"doc\": [\n        \"NN\"\n    ], \n    \"alarm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"m\": [\n        \"NN\"\n    ], \n    \"dog\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"doe\": [\n        \"NN\"\n    ], \n    \"orthophosphates\": [\n        \"NNS\"\n    ], \n    \"Erskin\": [\n        \"NNP\"\n    ], \n    \"dot\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Orrick\": [\n        \"NNP\"\n    ], \n    \"planetary\": [\n        \"JJ\"\n    ], \n    \"amending\": [\n        \"VBG\"\n    ], \n    \"hunger\": [\n        \"NN\"\n    ], \n    \"sows\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"jurisdiction\": [\n        \"NN\"\n    ], \n    \"Colbert\": [\n        \"NNP\"\n    ], \n    \"speedup\": [\n        \"NN\"\n    ], \n    \"syntax\": [\n        \"NN\"\n    ], \n    \"recollectivization\": [\n        \"NN\"\n    ], \n    \"sown\": [\n        \"VBN\"\n    ], \n    \"sneaking\": [\n        \"VBG\"\n    ], \n    \"Macho\": [\n        \"FW\"\n    ], \n    \"clannish\": [\n        \"JJ\"\n    ], \n    \"long-considered\": [\n        \"JJ\"\n    ], \n    \"representing\": [\n        \"VBG\"\n    ], \n    \"ingloriously\": [\n        \"RB\"\n    ], \n    \"Deductions\": [\n        \"NNS\"\n    ], \n    \"variable-rate\": [\n        \"JJ\"\n    ], \n    \"folks\": [\n        \"NNS\"\n    ], \n    \"Eurotempo\": [\n        \"NNP\"\n    ], \n    \"Duvalier\": [\n        \"NNP\"\n    ], \n    \"disconnecting\": [\n        \"VBG\"\n    ], \n    \"hollers\": [\n        \"VBZ\"\n    ], \n    \"Mainland\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Carnival\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rejoicing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"overflows\": [\n        \"NNS\"\n    ], \n    \"convulsed\": [\n        \"VBD\"\n    ], \n    \"coast\": [\n        \"NN\"\n    ], \n    \"Umberson\": [\n        \"NNP\"\n    ], \n    \"nearly-30\": [\n        \"JJ\"\n    ], \n    \"tiled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"slanderous\": [\n        \"JJ\"\n    ], \n    \"Nilson\": [\n        \"NNP\"\n    ], \n    \"Voting\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"scudding\": [\n        \"VBG\"\n    ], \n    \"Torbjoern\": [\n        \"NNP\"\n    ], \n    \"leveraged-takeover\": [\n        \"NN\"\n    ], \n    \"H.M.\": [\n        \"NNP\"\n    ], \n    \"Over\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"internationalized\": [\n        \"VBN\"\n    ], \n    \"reawakening\": [\n        \"VBG\"\n    ], \n    \"far-right\": [\n        \"JJ\"\n    ], \n    \"Egg-industry\": [\n        \"NN\"\n    ], \n    \"LeBow\": [\n        \"NNP\"\n    ], \n    \"rival\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"BancNewEngland\": [\n        \"NNP\"\n    ], \n    \"Inspects\": [\n        \"VBZ\"\n    ], \n    \"Bovin\": [\n        \"NNP\"\n    ], \n    \"Warnock\": [\n        \"NNP\"\n    ], \n    \"universalization\": [\n        \"NN\"\n    ], \n    \"podiatrist\": [\n        \"NN\"\n    ], \n    \"Hospital\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Burch\": [\n        \"NNP\"\n    ], \n    \"exhibitors\": [\n        \"NNS\"\n    ], \n    \"Playwrights\": [\n        \"NNP\"\n    ], \n    \"civilizing\": [\n        \"VBG\"\n    ], \n    \"Putnam\": [\n        \"NNP\"\n    ], \n    \"underarm\": [\n        \"NN\"\n    ], \n    \"Monier\": [\n        \"NNP\"\n    ], \n    \"drawn-back\": [\n        \"NN\"\n    ], \n    \"Hewlitt\": [\n        \"NNP\"\n    ], \n    \"Baraclough\": [\n        \"NNP\"\n    ], \n    \"embroidery\": [\n        \"NN\"\n    ], \n    \"simplest\": [\n        \"JJS\"\n    ], \n    \"stoking\": [\n        \"VBG\"\n    ], \n    \"baboon\": [\n        \"NN\"\n    ], \n    \"Bourke\": [\n        \"NNP\"\n    ], \n    \"pectoral-ribcage\": [\n        \"NN\"\n    ], \n    \"crayons\": [\n        \"NNS\"\n    ], \n    \"Central\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"tooth-paste\": [\n        \"NN\"\n    ], \n    \"Ex-Oriole\": [\n        \"NNP\"\n    ], \n    \"Luftwaffe\": [\n        \"NNP\"\n    ], \n    \"Arpino\": [\n        \"NNP\"\n    ], \n    \"scaled-back\": [\n        \"JJ\"\n    ], \n    \"once-a-day\": [\n        \"JJ\"\n    ], \n    \"worksheets\": [\n        \"NNS\"\n    ], \n    \"laze\": [\n        \"VB\"\n    ], \n    \"maneuvers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"swoops\": [\n        \"NN\", \n        \"VBZ\"\n    ], \n    \"Supported\": [\n        \"VBN\"\n    ], \n    \"und\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"une\": [\n        \"FW\"\n    ], \n    \"once-popular\": [\n        \"JJ\"\n    ], \n    \"Syrian\": [\n        \"JJ\"\n    ], \n    \"Carlisle\": [\n        \"NNP\"\n    ], \n    \"Compact\": [\n        \"NNP\"\n    ], \n    \"Corelli\": [\n        \"NNP\"\n    ], \n    \"Indicted\": [\n        \"VBN\"\n    ], \n    \"ethanol\": [\n        \"NN\"\n    ], \n    \"otherworldliness\": [\n        \"NN\"\n    ], \n    \"non-mega\": [\n        \"JJ\"\n    ], \n    \"fluorescein\": [\n        \"NN\"\n    ], \n    \"humility\": [\n        \"NN\"\n    ], \n    \"COMMERCIAL\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"height\": [\n        \"NN\"\n    ], \n    \"offerings\": [\n        \"NNS\"\n    ], \n    \"Though\": [\n        \"IN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"nilly\": [\n        \"RB\"\n    ], \n    \"Confabulation\": [\n        \"NN\"\n    ], \n    \"Monster\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"paralyze\": [\n        \"VB\"\n    ], \n    \"Treasurer\": [\n        \"NNP\"\n    ], \n    \"Acreage\": [\n        \"NN\"\n    ], \n    \"Woolsey\": [\n        \"NNP\"\n    ], \n    \"replicate\": [\n        \"VB\"\n    ], \n    \"Schweiz\": [\n        \"NNP\"\n    ], \n    \"weightlessness\": [\n        \"NN\"\n    ], \n    \"Interbank\": [\n        \"NNP\"\n    ], \n    \"S.K.\": [\n        \"NNP\"\n    ], \n    \"chug\": [\n        \"VBP\"\n    ], \n    \"arbitrage-related\": [\n        \"JJ\"\n    ], \n    \"lightning-quick\": [\n        \"JJ\"\n    ], \n    \"efficacy\": [\n        \"NN\"\n    ], \n    \"chum\": [\n        \"NN\"\n    ], \n    \"Espinosa\": [\n        \"NNP\"\n    ], \n    \"L.P\": [\n        \"NNP\"\n    ], \n    \"spherules\": [\n        \"NNS\"\n    ], \n    \"block-grant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"personally\": [\n        \"RB\"\n    ], \n    \"NCNB\": [\n        \"NNP\"\n    ], \n    \"majuh\": [\n        \"NN\"\n    ], \n    \"ASKO\": [\n        \"NNP\"\n    ], \n    \"homeequity\": [\n        \"NN\"\n    ], \n    \"Advertiser\": [\n        \"NNP\"\n    ], \n    \"sanctum\": [\n        \"FW\"\n    ], \n    \"Sushi\": [\n        \"NN\"\n    ], \n    \"styrenes\": [\n        \"NNS\"\n    ], \n    \"Isodine\": [\n        \"NNP\"\n    ], \n    \"bloomed\": [\n        \"VBD\"\n    ], \n    \"Tearle\": [\n        \"NNP\"\n    ], \n    \"singsonged\": [\n        \"VBD\"\n    ], \n    \"long-overdue\": [\n        \"JJ\"\n    ], \n    \"Rickards\": [\n        \"NNP\"\n    ], \n    \"ritorno\": [\n        \"FW\"\n    ], \n    \"Ilyushin\": [\n        \"NN\"\n    ], \n    \"diaphragm\": [\n        \"NN\"\n    ], \n    \"small-incision\": [\n        \"NN\"\n    ], \n    \"lever-action\": [\n        \"JJ\"\n    ], \n    \"Jeffrey\": [\n        \"NNP\"\n    ], \n    \"Paxson\": [\n        \"NNP\"\n    ], \n    \"Ruthann\": [\n        \"NNP\"\n    ], \n    \"Hodgepodge\": [\n        \"NN\"\n    ], \n    \"make\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Voorhees\": [\n        \"NNP\"\n    ], \n    \"Shorting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Puente\": [\n        \"NNP\"\n    ], \n    \"showmen\": [\n        \"NNS\"\n    ], \n    \"unfortunate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"get-out-of-my-way\": [\n        \"JJ\"\n    ], \n    \"Cibula\": [\n        \"NNP\"\n    ], \n    \"filtered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"maku\": [\n        \"FW\"\n    ], \n    \"Dappertutto\": [\n        \"NNP\"\n    ], \n    \"sodden\": [\n        \"JJ\"\n    ], \n    \"sanitationists\": [\n        \"NNS\"\n    ], \n    \"harbored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"human-rights\": [\n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"managment\": [\n        \"NN\"\n    ], \n    \"Domaine\": [\n        \"NNP\"\n    ], \n    \"Englund\": [\n        \"NNP\"\n    ], \n    \"amicus\": [\n        \"NN\"\n    ], \n    \"vibrated\": [\n        \"VBD\"\n    ], \n    \"OVERHAUL\": [\n        \"NN\"\n    ], \n    \"bequest\": [\n        \"NN\"\n    ], \n    \"butter\": [\n        \"NN\"\n    ], \n    \"shot-up\": [\n        \"JJ\"\n    ], \n    \"waggishly\": [\n        \"RB\"\n    ], \n    \"not-for-profit\": [\n        \"JJ\"\n    ], \n    \"glimmers\": [\n        \"NNS\"\n    ], \n    \"trouble-shooting\": [\n        \"NN\"\n    ], \n    \"materials\": [\n        \"NNS\"\n    ], \n    \"butted\": [\n        \"VBN\"\n    ], \n    \"ballgowns\": [\n        \"NNS\"\n    ], \n    \"unglamorous\": [\n        \"JJ\"\n    ], \n    \"clothesbrush\": [\n        \"NN\"\n    ], \n    \"Hypothalamic\": [\n        \"JJ\"\n    ], \n    \"Hedges\": [\n        \"NNP\"\n    ], \n    \"plasm\": [\n        \"NN\"\n    ], \n    \"Pastor\": [\n        \"NNP\"\n    ], \n    \"Immune\": [\n        \"NNP\"\n    ], \n    \"Skywave\": [\n        \"NNP\"\n    ], \n    \"Fininvest\": [\n        \"NNP\"\n    ], \n    \"transforms\": [\n        \"VBZ\"\n    ], \n    \"fullness\": [\n        \"NN\"\n    ], \n    \"Corinthians\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"tattooed\": [\n        \"VBN\"\n    ], \n    \"Exponents\": [\n        \"NNS\"\n    ], \n    \"impending\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"buyers\": [\n        \"NNS\"\n    ], \n    \"legion\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"tagline\": [\n        \"NN\"\n    ], \n    \"assassination\": [\n        \"NN\"\n    ], \n    \"Judiciary\": [\n        \"NNP\"\n    ], \n    \"far-from-conciliatory\": [\n        \"JJ\"\n    ], \n    \"magistrates\": [\n        \"NNS\"\n    ], \n    \"Condliffe\": [\n        \"NNP\"\n    ], \n    \"Foxboro\": [\n        \"NNP\"\n    ], \n    \"Jersey-Salem\": [\n        \"NNP\"\n    ], \n    \"Langstaff\": [\n        \"NNP\"\n    ], \n    \"leading-edge\": [\n        \"JJ\"\n    ], \n    \"Panet-Raymond\": [\n        \"NNP\"\n    ], \n    \"Calvinist\": [\n        \"NNP\"\n    ], \n    \"Support\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stimulators\": [\n        \"NNS\"\n    ], \n    \"Roberta\": [\n        \"NNP\"\n    ], \n    \"reuse\": [\n        \"VB\"\n    ], \n    \"unreeling\": [\n        \"VBG\"\n    ], \n    \"knock-off\": [\n        \"NN\"\n    ], \n    \"Roberti\": [\n        \"NNP\"\n    ], \n    \"Roberto\": [\n        \"NNP\"\n    ], \n    \"Governed\": [\n        \"JJ\"\n    ], \n    \"Oppenheimer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"perfunctory\": [\n        \"JJ\"\n    ], \n    \"gyrating\": [\n        \"VBG\"\n    ], \n    \"dreamy\": [\n        \"JJ\"\n    ], \n    \"diapiace\": [\n        \"FW\"\n    ], \n    \"other-directed\": [\n        \"JJ\"\n    ], \n    \"Governer\": [\n        \"NNP\"\n    ], \n    \"dreamt\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dreams\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"shoulder\": [\n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"dignity\": [\n        \"NN\"\n    ], \n    \"Metallurgical\": [\n        \"NNP\"\n    ], \n    \"Helibor\": [\n        \"NN\"\n    ], \n    \"high-technology\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Capitalists\": [\n        \"NNPS\"\n    ], \n    \"Throneberry\": [\n        \"NNP\"\n    ], \n    \"arrivals\": [\n        \"NNS\"\n    ], \n    \"Welland\": [\n        \"NNP\"\n    ], \n    \"intermittently\": [\n        \"RB\"\n    ], \n    \"aluminum-hulled\": [\n        \"JJ\"\n    ], \n    \"Eljer\": [\n        \"NNP\"\n    ], \n    \"Non-executive\": [\n        \"JJ\"\n    ], \n    \"entertainment-law\": [\n        \"NN\"\n    ], \n    \"out-of-staters\": [\n        \"NNS\"\n    ], \n    \"On-Broadway\": [\n        \"NNP\"\n    ], \n    \"compulsivity\": [\n        \"NN\"\n    ], \n    \"coziness\": [\n        \"NN\"\n    ], \n    \"Catfish\": [\n        \"NNP\"\n    ], \n    \"short-term\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"Saintsbury\": [\n        \"NNP\"\n    ], \n    \"participations\": [\n        \"NNS\"\n    ], \n    \"grading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Fink\": [\n        \"NNP\"\n    ], \n    \"Sanka\": [\n        \"NNP\"\n    ], \n    \"Kilpatrick\": [\n        \"NNP\"\n    ], \n    \"Surmanek\": [\n        \"NNP\"\n    ], \n    \"trunks\": [\n        \"NNS\"\n    ], \n    \"Toying\": [\n        \"VBG\"\n    ], \n    \"levitation\": [\n        \"NN\"\n    ], \n    \"Konheim\": [\n        \"NNP\"\n    ], \n    \"Youngish\": [\n        \"JJ\"\n    ], \n    \"videoconferencing\": [\n        \"NN\"\n    ], \n    \"meanings\": [\n        \"NNS\"\n    ], \n    \"capabilities.\": [\n        \"NN\"\n    ], \n    \"dowdy-looking\": [\n        \"JJ\"\n    ], \n    \"Participating\": [\n        \"VBG\"\n    ], \n    \"Leibler\": [\n        \"NNP\"\n    ], \n    \"nightgown-clad\": [\n        \"JJ\"\n    ], \n    \"one-of-a-kind\": [\n        \"JJ\"\n    ], \n    \"Cunin\": [\n        \"NNP\"\n    ], \n    \"Scollard\": [\n        \"NNP\"\n    ], \n    \"M-Whatever\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ungratified\": [\n        \"JJ\"\n    ], \n    \"conceal\": [\n        \"VB\"\n    ], \n    \"lathered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gallium\": [\n        \"NN\"\n    ], \n    \"fasciculations\": [\n        \"NNS\"\n    ], \n    \"Lynne\": [\n        \"NNP\"\n    ], \n    \"crucifix\": [\n        \"NN\"\n    ], \n    \"idyll\": [\n        \"NN\"\n    ], \n    \"Anchorite\": [\n        \"NN\"\n    ], \n    \"restate\": [\n        \"VB\"\n    ], \n    \"monetary-damage\": [\n        \"NN|JJ\"\n    ], \n    \"Asada\": [\n        \"NNP\"\n    ], \n    \"fatalists\": [\n        \"NNS\"\n    ], \n    \"Handguns\": [\n        \"NNS\"\n    ], \n    \"shippers\": [\n        \"NNS\"\n    ], \n    \"diabetics\": [\n        \"NNS\"\n    ], \n    \"oilman\": [\n        \"NN\"\n    ], \n    \"washboard\": [\n        \"NN\"\n    ], \n    \"Barbariccia\": [\n        \"NNP\"\n    ], \n    \"Extended\": [\n        \"NNP\", \n        \"VBN\"\n    ], \n    \"Eckhard\": [\n        \"NNP\"\n    ], \n    \"illustrious\": [\n        \"JJ\"\n    ], \n    \"catalysts\": [\n        \"NNS\"\n    ], \n    \"inspected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lampoon\": [\n        \"VB\"\n    ], \n    \"roof-crush\": [\n        \"JJ\"\n    ], \n    \"counterproductive\": [\n        \"JJ\"\n    ], \n    \"educationalist\": [\n        \"NN\"\n    ], \n    \"communication-service\": [\n        \"JJ\"\n    ], \n    \"Tidewatch\": [\n        \"NNP\"\n    ], \n    \"teletype\": [\n        \"NN\"\n    ], \n    \"asset-forfeiture\": [\n        \"NN\"\n    ], \n    \"immorality\": [\n        \"NN\"\n    ], \n    \"disarmingly\": [\n        \"RB\"\n    ], \n    \"Nagano\": [\n        \"NNP\"\n    ], \n    \"Brascade\": [\n        \"NNP\"\n    ], \n    \"Theology\": [\n        \"NNP\"\n    ], \n    \"cutlets\": [\n        \"NNS\"\n    ], \n    \"readmit\": [\n        \"VB\"\n    ], \n    \"lows\": [\n        \"NNS\"\n    ], \n    \"surrender\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Interactive\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Golden\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"benchmarks\": [\n        \"NNS\"\n    ], \n    \"Suffer\": [\n        \"VB\"\n    ], \n    \"propaganda\": [\n        \"NN\"\n    ], \n    \"originating\": [\n        \"VBG\"\n    ], \n    \"morphogenetic\": [\n        \"JJ\"\n    ], \n    \"Bullish\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"infections\": [\n        \"NNS\"\n    ], \n    \"lingers\": [\n        \"VBZ\"\n    ], \n    \"bloodstained\": [\n        \"JJ\"\n    ], \n    \"Stratagene\": [\n        \"NNP\"\n    ], \n    \"claimants\": [\n        \"NNS\"\n    ], \n    \"Mayer\": [\n        \"NNP\"\n    ], \n    \"hot-air\": [\n        \"JJ\"\n    ], \n    \"Jolas\": [\n        \"NNP\"\n    ], \n    \"discriminate\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"clingy\": [\n        \"JJ\"\n    ], \n    \"offputting\": [\n        \"JJ\"\n    ], \n    \"EAC\": [\n        \"NNP\"\n    ], \n    \"preconditioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"clings\": [\n        \"VBZ\"\n    ], \n    \"eco-evangelists\": [\n        \"NNS\"\n    ], \n    \"golden-parachute\": [\n        \"JJ\"\n    ], \n    \"Colo.\": [\n        \"NNP\"\n    ], \n    \"matriarchal\": [\n        \"JJ\"\n    ], \n    \"Township\": [\n        \"NNP\"\n    ], \n    \"voltaic\": [\n        \"JJ\"\n    ], \n    \"Samaritans\": [\n        \"NNS\"\n    ], \n    \"refining\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"insolvency\": [\n        \"NN\"\n    ], \n    \"delivered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"axe\": [\n        \"NN\"\n    ], \n    \"aurally\": [\n        \"RB\"\n    ], \n    \"outback\": [\n        \"NN\"\n    ], \n    \"Rensselaer\": [\n        \"NNP\"\n    ], \n    \"Glossy\": [\n        \"JJ\"\n    ], \n    \"coat...\": [\n        \":\"\n    ], \n    \"investment-tax\": [\n        \"JJ\"\n    ], \n    \"Yoshiro\": [\n        \"NNP\"\n    ], \n    \"describing\": [\n        \"VBG\"\n    ], \n    \"grapevines\": [\n        \"NNS\"\n    ], \n    \"Paprika\": [\n        \"NN\"\n    ], \n    \"slayings\": [\n        \"NNS\"\n    ], \n    \"diathesis\": [\n        \"NN\"\n    ], \n    \"Fairmount\": [\n        \"NNP\"\n    ], \n    \"outskirts\": [\n        \"NNS\"\n    ], \n    \"boondoggles\": [\n        \"NNS\"\n    ], \n    \"non-credit\": [\n        \"JJ\"\n    ], \n    \"Color\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Win\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"gorilla\": [\n        \"NN\"\n    ], \n    \"amniotic\": [\n        \"JJ\"\n    ], \n    \"Trotsky\": [\n        \"NNP\"\n    ], \n    \"Halfway\": [\n        \"RB\"\n    ], \n    \"ABIOMED\": [\n        \"NNP\"\n    ], \n    \"unimpressed\": [\n        \"JJ\"\n    ], \n    \"auspiciously\": [\n        \"RB\"\n    ], \n    \"managed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Empire-Berol\": [\n        \"NNP\"\n    ], \n    \"Maddox\": [\n        \"NNP\"\n    ], \n    \"eldest\": [\n        \"JJS\"\n    ], \n    \"manager\": [\n        \"NN\"\n    ], \n    \"manages\": [\n        \"VBZ\"\n    ], \n    \"claret\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"micrometeorites\": [\n        \"NNS\"\n    ], \n    \"quasi-federal\": [\n        \"JJ\"\n    ], \n    \"Readings\": [\n        \"NNS\"\n    ], \n    \"Nutritious\": [\n        \"JJ\"\n    ], \n    \"Oberman\": [\n        \"NNP\"\n    ], \n    \"retroactivity\": [\n        \"NN\"\n    ], \n    \"depend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"unassailable\": [\n        \"JJ\"\n    ], \n    \"Painting\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"micrometers\": [\n        \"NNS\"\n    ], \n    \"Imperials\": [\n        \"NNPS\"\n    ], \n    \"countdown\": [\n        \"NN\"\n    ], \n    \"mackintosh\": [\n        \"NN\"\n    ], \n    \"Insureres\": [\n        \"NNS\"\n    ], \n    \"Fly\": [\n        \"VB\"\n    ], \n    \"management-trained\": [\n        \"JJ\"\n    ], \n    \"Courtis\": [\n        \"NNP\"\n    ], \n    \"full-range\": [\n        \"JJ\"\n    ], \n    \"Massachusetts\": [\n        \"NNP\"\n    ], \n    \"Lieutenant-Governor\": [\n        \"NNP\"\n    ], \n    \"Weingarten-Siegel\": [\n        \"NNP\"\n    ], \n    \"Adventures\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Candlestick\": [\n        \"NNP\"\n    ], \n    \"tacos\": [\n        \"NNS\"\n    ], \n    \"soapy\": [\n        \"JJ\"\n    ], \n    \"Oneupmanship\": [\n        \"NN\"\n    ], \n    \"forked\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"far-reaching\": [\n        \"JJ\"\n    ], \n    \"jettison\": [\n        \"VB\"\n    ], \n    \"freemarket\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"acquisition-proof\": [\n        \"JJ\"\n    ], \n    \"Clause\": [\n        \"NN\"\n    ], \n    \"luxuriance\": [\n        \"NN\"\n    ], \n    \"democrat\": [\n        \"NN\"\n    ], \n    \"Walk-in\": [\n        \"JJ\"\n    ], \n    \"Nevah\": [\n        \"NNP\"\n    ], \n    \"third-largest\": [\n        \"JJ\"\n    ], \n    \"Gassee\": [\n        \"NNP\"\n    ], \n    \"whiz-bang\": [\n        \"UH\"\n    ], \n    \"attracting\": [\n        \"VBG\"\n    ], \n    \"ill-conceived\": [\n        \"JJ\"\n    ], \n    \"Shiites\": [\n        \"NNPS\"\n    ], \n    \"carpal\": [\n        \"NN\"\n    ], \n    \"Nusbaum\": [\n        \"NNP\"\n    ], \n    \"Heritage\": [\n        \"NNP\"\n    ], \n    \"Gro\": [\n        \"NNP\"\n    ], \n    \"Percentage\": [\n        \"NN\"\n    ], \n    \"I.M.\": [\n        \"NNP\"\n    ], \n    \"drought-inspired\": [\n        \"JJ\"\n    ], \n    \"sacral\": [\n        \"JJ\"\n    ], \n    \"Orthodox\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"phonographs\": [\n        \"NNS\"\n    ], \n    \"Brewing\": [\n        \"NNP\"\n    ], \n    \"near-mutiny\": [\n        \"NN\"\n    ], \n    \"reunite\": [\n        \"VB\"\n    ], \n    \"externalization\": [\n        \"NN\"\n    ], \n    \"sixfold\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Traveling\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"scampering\": [\n        \"VBG\"\n    ], \n    \"promissory\": [\n        \"JJ\"\n    ], \n    \"work-space\": [\n        \"NN\"\n    ], \n    \"unobserved\": [\n        \"JJ\"\n    ], \n    \"Buckra\": [\n        \"NNP\"\n    ], \n    \"transferee\": [\n        \"NN\"\n    ], \n    \"FLAG\": [\n        \"NN\"\n    ], \n    \"Pulliam\": [\n        \"NNP\"\n    ], \n    \"Magnascreen\": [\n        \"NNP\"\n    ], \n    \"schooldays\": [\n        \"NNS\"\n    ], \n    \"superconductor\": [\n        \"NN\"\n    ], \n    \"first-ever\": [\n        \"JJ\"\n    ], \n    \"grade-equivalents\": [\n        \"NNS\"\n    ], \n    \"cuckoo\": [\n        \"NN\"\n    ], \n    \"NMTBA\": [\n        \"NNP\"\n    ], \n    \"shift\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dantchik\": [\n        \"NNP\"\n    ], \n    \"sniggeringly\": [\n        \"RB\"\n    ], \n    \"Aimed\": [\n        \"VBN\"\n    ], \n    \"Sacramento\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jno\": [\n        \"NNP\"\n    ], \n    \"Clipper\": [\n        \"NNP\"\n    ], \n    \"ALAMCO\": [\n        \"NNP\"\n    ], \n    \"adjustable\": [\n        \"JJ\"\n    ], \n    \"absorbers\": [\n        \"NNS\"\n    ], \n    \"Alphonsus\": [\n        \"NNP\"\n    ], \n    \"Feltes\": [\n        \"NNP\"\n    ], \n    \"hardier\": [\n        \"JJR\"\n    ], \n    \"meal-to-meal\": [\n        \"JJ\"\n    ], \n    \"Felten\": [\n        \"NNP\"\n    ], \n    \"moraine\": [\n        \"NN\"\n    ], \n    \"Joshual\": [\n        \"NNP\"\n    ], \n    \"Wallop\": [\n        \"NNP\"\n    ], \n    \"Wetherill\": [\n        \"NNP\"\n    ], \n    \"Tiempo\": [\n        \"NNP\"\n    ], \n    \"salting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"million-plus\": [\n        \"JJ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"CHRISTMAS\": [\n        \"NNP\"\n    ], \n    \"connector\": [\n        \"NN\"\n    ], \n    \"pelts\": [\n        \"NNS\"\n    ], \n    \"photomicrography\": [\n        \"NN\"\n    ], \n    \"compactly\": [\n        \"RB\"\n    ], \n    \"lessened\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Sultan\": [\n        \"NNP\"\n    ], \n    \"Peronist\": [\n        \"NNP\"\n    ], \n    \"equipped\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"plantations\": [\n        \"NNS\"\n    ], \n    \"multitudinous\": [\n        \"JJ\"\n    ], \n    \"archaeologists\": [\n        \"NNS\"\n    ], \n    \"orator\": [\n        \"NN\"\n    ], \n    \"non-mining\": [\n        \"JJ\"\n    ], \n    \"Montreal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Latest\": [\n        \"JJS\"\n    ], \n    \"Samovar\": [\n        \"NNP\"\n    ], \n    \"harder-line\": [\n        \"JJ\"\n    ], \n    \"melodrama\": [\n        \"NN\"\n    ], \n    \"out-of-date\": [\n        \"JJ\"\n    ], \n    \"Earthquake\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"reappear\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"hard-riding\": [\n        \"JJ\"\n    ], \n    \"IBM-based\": [\n        \"JJ\"\n    ], \n    \"Rolls-Royces\": [\n        \"NNPS\"\n    ], \n    \"Sharon\": [\n        \"NNP\"\n    ], \n    \"classrooms\": [\n        \"NNS\"\n    ], \n    \"Bogle\": [\n        \"NNP\"\n    ], \n    \"concocted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Soviet-Korean\": [\n        \"JJ\"\n    ], \n    \"Forbes\": [\n        \"NNP\"\n    ], \n    \"battered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Brewers\": [\n        \"NNS\"\n    ], \n    \"BEAVER\": [\n        \"NNP\"\n    ], \n    \"spanning\": [\n        \"VBG\"\n    ], \n    \"Niciporuk\": [\n        \"NNP\"\n    ], \n    \"McCombs\": [\n        \"NNP\"\n    ], \n    \"parental-consent\": [\n        \"JJ\"\n    ], \n    \"free-choice\": [\n        \"JJ\"\n    ], \n    \"penny-brokerage\": [\n        \"JJ\"\n    ], \n    \"traipse\": [\n        \"VB\"\n    ], \n    \"Kalman\": [\n        \"NNP\"\n    ], \n    \"Maeda\": [\n        \"NNP\"\n    ], \n    \"Coke\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ginsburg\": [\n        \"NNP\"\n    ], \n    \"Akzo\": [\n        \"NNP\"\n    ], \n    \"Banana\": [\n        \"NNP\"\n    ], \n    \"propagandistic\": [\n        \"JJ\"\n    ], \n    \"Ludwick\": [\n        \"NNP\"\n    ], \n    \"periscopes\": [\n        \"NNS\"\n    ], \n    \"tatters\": [\n        \"NNS\"\n    ], \n    \"adamant\": [\n        \"JJ\"\n    ], \n    \"drapery\": [\n        \"NN\"\n    ], \n    \"Thurber\": [\n        \"NNP\"\n    ], \n    \"McFarlan\": [\n        \"NNP\"\n    ], \n    \"Trojan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Schmitt\": [\n        \"NNP\"\n    ], \n    \"long-deferred\": [\n        \"JJ\"\n    ], \n    \"L-P\": [\n        \"NNP\"\n    ], \n    \"ee-faket\": [\n        \"NN\"\n    ], \n    \"sustainability\": [\n        \"NN\"\n    ], \n    \"Graceful\": [\n        \"JJ\"\n    ], \n    \"BALLOTS\": [\n        \"NNS\"\n    ], \n    \"destructive\": [\n        \"JJ\"\n    ], \n    \"Adolescents\": [\n        \"NNS\"\n    ], \n    \"Trim\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Viphakone\": [\n        \"NNP\"\n    ], \n    \"Trio\": [\n        \"NNP\"\n    ], \n    \"neck\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"pulsations\": [\n        \"NNS\"\n    ], \n    \"Trig\": [\n        \"NNP\"\n    ], \n    \"Trib\": [\n        \"NNP\"\n    ], \n    \"rarified\": [\n        \"JJ\"\n    ], \n    \"Hackstaff\": [\n        \"NNP\"\n    ], \n    \"dry-dock\": [\n        \"NN\"\n    ], \n    \"Speedy\": [\n        \"NNP\"\n    ], \n    \"Tris\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"esters\": [\n        \"NNS\"\n    ], \n    \"Moeller\": [\n        \"NNP\"\n    ], \n    \"shield\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Microsystems\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"availing\": [\n        \"VBG\"\n    ], \n    \"antifundamentalist\": [\n        \"JJ\"\n    ], \n    \"Dell\": [\n        \"NNP\"\n    ], \n    \"Savin\": [\n        \"NNP\"\n    ], \n    \"Believing\": [\n        \"VBG\"\n    ], \n    \"lucidity\": [\n        \"NN\"\n    ], \n    \"Covered\": [\n        \"JJ\"\n    ], \n    \"tax-driven\": [\n        \"JJ\"\n    ], \n    \"fiction-writer\": [\n        \"NN\"\n    ], \n    \"moderate-rehabilitation\": [\n        \"NN\"\n    ], \n    \"Shtromas\": [\n        \"NNP\"\n    ], \n    \"WTV\": [\n        \"NNP\"\n    ], \n    \"gold-card-carrying\": [\n        \"JJ\"\n    ], \n    \"recession-proof\": [\n        \"JJ\"\n    ], \n    \"imbedded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"clearest\": [\n        \"JJS\"\n    ], \n    \"WTD\": [\n        \"NNP\"\n    ], \n    \"Worthy\": [\n        \"NNP\"\n    ], \n    \"WTI\": [\n        \"NNP\"\n    ], \n    \"sensitized\": [\n        \"VBN\"\n    ], \n    \"thump-thump\": [\n        \"NN\"\n    ], \n    \"Gascony\": [\n        \"NNP\"\n    ], \n    \"accusations\": [\n        \"NNS\"\n    ], \n    \"undisclosed\": [\n        \"JJ\"\n    ], \n    \"rent-controlled\": [\n        \"JJ\"\n    ], \n    \"safari\": [\n        \"NN\"\n    ], \n    \"gate\": [\n        \"NN\"\n    ], \n    \"Lonesome\": [\n        \"JJ\"\n    ], \n    \"widespread\": [\n        \"JJ\"\n    ], \n    \"Investigators\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Authorities\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"intertitles\": [\n        \"NNS\"\n    ], \n    \"Armored\": [\n        \"NNP\"\n    ], \n    \"Giancarlo\": [\n        \"NNP\"\n    ], \n    \"misgivings\": [\n        \"NNS\"\n    ], \n    \"five-home\": [\n        \"JJ\"\n    ], \n    \"apprehensions\": [\n        \"NNS\"\n    ], \n    \"LAWSON\": [\n        \"NNP\"\n    ], \n    \"Asian-Americans\": [\n        \"NNPS\"\n    ], \n    \"sing-song\": [\n        \"NN\"\n    ], \n    \"noncombatant\": [\n        \"JJ\"\n    ], \n    \"Announces\": [\n        \"VBZ\"\n    ], \n    \"Barilla\": [\n        \"NNP\"\n    ], \n    \"Common-law\": [\n        \"JJ\"\n    ], \n    \"thousand-fold\": [\n        \"JJ\"\n    ], \n    \"unlock\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"high-set\": [\n        \"JJ\"\n    ], \n    \"befell\": [\n        \"VBD\"\n    ], \n    \"tempore\": [\n        \"NN\"\n    ], \n    \"HiPro\": [\n        \"NNP\"\n    ], \n    \"Mayors\": [\n        \"NNS\"\n    ], \n    \"Announced\": [\n        \"JJ\"\n    ], \n    \"thoroughness\": [\n        \"NN\"\n    ], \n    \"emerges\": [\n        \"VBZ\"\n    ], \n    \"foodservice\": [\n        \"NN\"\n    ], \n    \"car-leasing\": [\n        \"NN\"\n    ], \n    \"Abrahamson\": [\n        \"NNP\"\n    ], \n    \"midfield\": [\n        \"NN\"\n    ], \n    \"drunk-driving\": [\n        \"JJ\"\n    ], \n    \"Overreach\": [\n        \"NNP\"\n    ], \n    \"Everest\": [\n        \"NNP\"\n    ], \n    \"militarily\": [\n        \"RB\"\n    ], \n    \"emerged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"narrow-casting\": [\n        \"NN\"\n    ], \n    \"wider-than-expected\": [\n        \"JJ\"\n    ], \n    \"telegraphy\": [\n        \"NN\"\n    ], \n    \"smudge\": [\n        \"NN\"\n    ], \n    \"Tokuyama\": [\n        \"NNP\"\n    ], \n    \"Fiering\": [\n        \"NNP\"\n    ], \n    \"trademarks\": [\n        \"NNS\"\n    ], \n    \"Bamboo\": [\n        \"JJ\"\n    ], \n    \"Licht\": [\n        \"NNP\"\n    ], \n    \"Solarz\": [\n        \"NNP\"\n    ], \n    \"whittle\": [\n        \"VBP\"\n    ], \n    \"Traverse\": [\n        \"NNP\"\n    ], \n    \"Being\": [\n        \"VBG\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Parris\": [\n        \"NNP\"\n    ], \n    \"headphones\": [\n        \"NNS\"\n    ], \n    \"rapid-transit\": [\n        \"JJ\"\n    ], \n    \"Fairlawn\": [\n        \"NNP\"\n    ], \n    \"production-ceiling\": [\n        \"NN\"\n    ], \n    \"Orwellian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"suspender\": [\n        \"NN\"\n    ], \n    \"Referring\": [\n        \"VBG\"\n    ], \n    \"likelier\": [\n        \"JJR\"\n    ], \n    \"Allstates-Zenith\": [\n        \"NNP\"\n    ], \n    \"commercialize\": [\n        \"VB\"\n    ], \n    \"whippings\": [\n        \"NNS\"\n    ], \n    \"Grantor\": [\n        \"NNP\"\n    ], \n    \"Lyondell\": [\n        \"NNP\"\n    ], \n    \"shipyard\": [\n        \"NN\"\n    ], \n    \"Yan\": [\n        \"NNP\"\n    ], \n    \"Yak\": [\n        \"NNP\"\n    ], \n    \"magnetic-tape-coating\": [\n        \"JJ\"\n    ], \n    \"brynge\": [\n        \"VBP\"\n    ], \n    \"singling\": [\n        \"VBG\"\n    ], \n    \"tailor-make\": [\n        \"VB\"\n    ], \n    \"employee-incentive\": [\n        \"NN\"\n    ], \n    \"mouthpieces\": [\n        \"NNS\"\n    ], \n    \"participates\": [\n        \"VBZ\"\n    ], \n    \"Bundle\": [\n        \"NN\"\n    ], \n    \"modernism\": [\n        \"NN\"\n    ], \n    \"anyone\": [\n        \"NN\"\n    ], \n    \"cable-television-equipped\": [\n        \"JJ\"\n    ], \n    \"modernist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"JKD\": [\n        \"NNP\"\n    ], \n    \"Poldowski\": [\n        \"NNP\"\n    ], \n    \"participated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sharecropper\": [\n        \"NN\"\n    ], \n    \"Councilwoman\": [\n        \"NNP\"\n    ], \n    \"COLOGNE\": [\n        \"NNP\"\n    ], \n    \"broadcast\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"senioritatis\": [\n        \"FW\"\n    ], \n    \"ambulatory\": [\n        \"JJ\"\n    ], \n    \"HMSS\": [\n        \"NNP\"\n    ], \n    \"satirically\": [\n        \"RB\"\n    ], \n    \"Dirty\": [\n        \"JJ\"\n    ], \n    \"court-length\": [\n        \"JJ\"\n    ], \n    \"butt\": [\n        \"NN\", \n        \"CC\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"ceramics\": [\n        \"NNS\"\n    ], \n    \"vacating\": [\n        \"VBG\"\n    ], \n    \"Backing\": [\n        \"VBG\"\n    ], \n    \"efficient-in\": [\n        \"JJ|IN\"\n    ], \n    \"Teresa\": [\n        \"NNP\"\n    ], \n    \"around-the-world\": [\n        \"JJ\"\n    ], \n    \"encomiums\": [\n        \"NNS\"\n    ], \n    \"booted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Ayub\": [\n        \"NNP\"\n    ], \n    \"Ekonomicheskaya\": [\n        \"NNP\"\n    ], \n    \"Protectorate\": [\n        \"NNP\"\n    ], \n    \"predicator\": [\n        \"NN\"\n    ], \n    \"overenforced\": [\n        \"VBN\"\n    ], \n    \"gathering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"topics\": [\n        \"NNS\"\n    ], \n    \"seventh-largest\": [\n        \"JJ\"\n    ], \n    \"nuisances\": [\n        \"NNS\"\n    ], \n    \"Meissner\": [\n        \"NNP\"\n    ], \n    \"earth-orbiting\": [\n        \"JJ\"\n    ], \n    \"parts-engineering\": [\n        \"JJ\"\n    ], \n    \"castor\": [\n        \"NN\"\n    ], \n    \"efficient\": [\n        \"JJ\"\n    ], \n    \"bawhs\": [\n        \"NNS\"\n    ], \n    \"Sugarman-led\": [\n        \"JJ\"\n    ], \n    \"isolate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"endangered\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"potential\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Perfection\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Investor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"frolicked\": [\n        \"VBN\"\n    ], \n    \"egg-hatching\": [\n        \"JJ\"\n    ], \n    \"poly-unsaturated\": [\n        \"JJ\"\n    ], \n    \"gloomier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Jungian\": [\n        \"NNP\"\n    ], \n    \"Thorn\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"correlation\": [\n        \"NN\"\n    ], \n    \"highrisk\": [\n        \"NN\"\n    ], \n    \"vitiate\": [\n        \"VB\"\n    ], \n    \"Thorp\": [\n        \"NNP\"\n    ], \n    \"psychoactive\": [\n        \"JJ\"\n    ], \n    \"nonmythological\": [\n        \"JJ\"\n    ], \n    \"befouled\": [\n        \"VBN\"\n    ], \n    \"Hispanoil\": [\n        \"NNP\"\n    ], \n    \"Kolman\": [\n        \"NNP\"\n    ], \n    \"Amityvilles\": [\n        \"NNPS\"\n    ], \n    \"Elmira\": [\n        \"NNP\"\n    ], \n    \"Statehood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Enclosed\": [\n        \"VBN\"\n    ], \n    \"stockings\": [\n        \"NNS\"\n    ], \n    \"Resuming\": [\n        \"VBG\"\n    ], \n    \"Mendelssohn\": [\n        \"NNP\"\n    ], \n    \"Herring\": [\n        \"NNP\"\n    ], \n    \"Parkhaji\": [\n        \"NNP\"\n    ], \n    \"dissecting\": [\n        \"VBG\"\n    ], \n    \"investment-holding\": [\n        \"JJ\"\n    ], \n    \"navigated\": [\n        \"VBN\"\n    ], \n    \"Lespinasse\": [\n        \"NNP\"\n    ], \n    \"untold\": [\n        \"JJ\"\n    ], \n    \"rate-mortgages\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Hills\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"deportation\": [\n        \"NN\"\n    ], \n    \"long-known\": [\n        \"JJ\"\n    ], \n    \"safekeeping\": [\n        \"NN\"\n    ], \n    \"Souths\": [\n        \"NNPS\"\n    ], \n    \"dice\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"hares\": [\n        \"NNS\"\n    ], \n    \"SIBV-MS\": [\n        \"NNP\"\n    ], \n    \"Splinting\": [\n        \"NNP\"\n    ], \n    \"Kiwanis\": [\n        \"NNP\"\n    ], \n    \"Studio\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Campbelll\": [\n        \"NNP\"\n    ], \n    \"K.L.\": [\n        \"NNP\"\n    ], \n    \"Services\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"hand-squeeze\": [\n        \"JJ\"\n    ], \n    \"patient-physician\": [\n        \"JJ\"\n    ], \n    \"ComFed\": [\n        \"NNP\"\n    ], \n    \"steel-edged\": [\n        \"JJ\"\n    ], \n    \"white-dominated\": [\n        \"JJ\"\n    ], \n    \"longest-standing\": [\n        \"JJS\"\n    ], \n    \"exaggeration\": [\n        \"NN\"\n    ], \n    \"bevel\": [\n        \"VB\"\n    ], \n    \"Alusik\": [\n        \"NNP\"\n    ], \n    \"Amid\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"out-of-pocket\": [\n        \"JJ\"\n    ], \n    \"Irish\": [\n        \"JJ\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Fighting\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"employers\": [\n        \"NNS\"\n    ], \n    \"Voronezh\": [\n        \"NNP\"\n    ], \n    \"chillingly\": [\n        \"RB\"\n    ], \n    \"Rodney\": [\n        \"NNP\"\n    ], \n    \"gibbet\": [\n        \"NN\"\n    ], \n    \"straggled\": [\n        \"VBD\"\n    ], \n    \"Executives\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Kanto\": [\n        \"NNP\"\n    ], \n    \"harbinger\": [\n        \"NN\"\n    ], \n    \"intuitive\": [\n        \"JJ\"\n    ], \n    \"frolicking\": [\n        \"VBG\"\n    ], \n    \"Cornel\": [\n        \"NNP\"\n    ], \n    \"businesswoman\": [\n        \"NN\"\n    ], \n    \"Dookiyoon\": [\n        \"NNP\"\n    ], \n    \"Mundo\": [\n        \"NNP\"\n    ], \n    \"Corney\": [\n        \"NNP\"\n    ], \n    \"limited-production\": [\n        \"JJ\"\n    ], \n    \"Mundt\": [\n        \"NNP\"\n    ], \n    \"Corner\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lesson\": [\n        \"NN\"\n    ], \n    \"well-dressed\": [\n        \"JJ\"\n    ], \n    \"silently\": [\n        \"RB\"\n    ], \n    \"verities\": [\n        \"NNS\"\n    ], \n    \"Utsumi\": [\n        \"NNP\"\n    ], \n    \"re-emerge\": [\n        \"VB\"\n    ], \n    \"cantaloupe\": [\n        \"NN\"\n    ], \n    \"sifting\": [\n        \"NN\"\n    ], \n    \"single-B-3\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ohkuma\": [\n        \"NNP\"\n    ], \n    \"Stanislas\": [\n        \"NNP\"\n    ], \n    \"Stanislav\": [\n        \"NNP\"\n    ], \n    \"Stanislaw\": [\n        \"NNP\"\n    ], \n    \"Jovanovich\": [\n        \"NNP\"\n    ], \n    \"ornament\": [\n        \"NN\"\n    ], \n    \"klieg\": [\n        \"NN\"\n    ], \n    \"chimpanzees\": [\n        \"NNS\"\n    ], \n    \"Heber\": [\n        \"NNP\"\n    ], \n    \"policyholder\": [\n        \"NN\"\n    ], \n    \"ruptured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"affordable\": [\n        \"JJ\"\n    ], \n    \"LJH\": [\n        \"NNP\"\n    ], \n    \"co-signers\": [\n        \"NN\"\n    ], \n    \"Montesano\": [\n        \"NNP\"\n    ], \n    \"Mabellini\": [\n        \"NNP\"\n    ], \n    \"Symbolist\": [\n        \"NNP\"\n    ], \n    \"legitimacy\": [\n        \"NN\"\n    ], \n    \"loonies\": [\n        \"NNS\"\n    ], \n    \"Quartermaster\": [\n        \"NNP\"\n    ], \n    \"Civilian\": [\n        \"NNP\"\n    ], \n    \"Karipo\": [\n        \"NNP\"\n    ], \n    \"Skolman\": [\n        \"NNP\"\n    ], \n    \"Graduate-student\": [\n        \"NN\"\n    ], \n    \"Abortion-rights\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"bedraggled\": [\n        \"JJ\"\n    ], \n    \"SAN\": [\n        \"NNP\"\n    ], \n    \"motivations\": [\n        \"NNS\"\n    ], \n    \"Carolyn\": [\n        \"NNP\"\n    ], \n    \"tuck\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"brinksmanship\": [\n        \"NN\"\n    ], \n    \"employee-bonus\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"home-office\": [\n        \"JJ\"\n    ], \n    \"food-color\": [\n        \"NN\"\n    ], \n    \"thrift-overhaul\": [\n        \"NN\"\n    ], \n    \"Felice\": [\n        \"NNP\"\n    ], \n    \"instant-credit\": [\n        \"NN\"\n    ], \n    \"slow-startup\": [\n        \"JJ\"\n    ], \n    \"all-day\": [\n        \"JJ\"\n    ], \n    \"Borak\": [\n        \"NNP\"\n    ], \n    \"Silva\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"catbird\": [\n        \"JJ\"\n    ], \n    \"Paddle\": [\n        \"VB\"\n    ], \n    \"accusation\": [\n        \"NN\"\n    ], \n    \"jets\": [\n        \"NNS\"\n    ], \n    \"dereliction\": [\n        \"NN\"\n    ], \n    \"Crombie\": [\n        \"NNP\"\n    ], \n    \"unassuming\": [\n        \"JJ\"\n    ], \n    \"technicalities\": [\n        \"NNS\"\n    ], \n    \"half-reached\": [\n        \"VBD\"\n    ], \n    \"abruptness\": [\n        \"NN\"\n    ], \n    \"slenderer\": [\n        \"JJR\"\n    ], \n    \"Ciba\": [\n        \"NNP\"\n    ], \n    \"Pavarotti\": [\n        \"NNP\"\n    ], \n    \"jaunty\": [\n        \"JJ\"\n    ], \n    \"athletic-shoe\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Luckily\": [\n        \"RB\"\n    ], \n    \"elbowing\": [\n        \"VBG\"\n    ], \n    \"Newsday\": [\n        \"NNP\"\n    ], \n    \"shakers\": [\n        \"NNS\"\n    ], \n    \"Catheter\": [\n        \"NNP\"\n    ], \n    \"Leary\": [\n        \"NNP\"\n    ], \n    \"Gholamreza\": [\n        \"NNP\"\n    ], \n    \"educated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Siecle\": [\n        \"NNP\"\n    ], \n    \"Angolan\": [\n        \"JJ\"\n    ], \n    \"SAS\": [\n        \"NNP\"\n    ], \n    \"Ice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Learn\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Kieran\": [\n        \"NNP\"\n    ], \n    \"Thiokol\": [\n        \"NNP\"\n    ], \n    \"Hydrochlorothiazides\": [\n        \"NNS\"\n    ], \n    \"brockle\": [\n        \"NN\"\n    ], \n    \"Undergraduates\": [\n        \"NNS\"\n    ], \n    \"TAKEOVER\": [\n        \"NN\"\n    ], \n    \"eave\": [\n        \"NN\"\n    ], \n    \"huckster\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Flashlight\": [\n        \"NN\"\n    ], \n    \"love-making\": [\n        \"NN\"\n    ], \n    \"sales...\": [\n        \":\"\n    ], \n    \"drug-dealing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Woos\": [\n        \"VBZ\"\n    ], \n    \"conferences\": [\n        \"NNS\"\n    ], \n    \"ethically\": [\n        \"RB\"\n    ], \n    \"winding-clothes\": [\n        \"NNS\"\n    ], \n    \"relying\": [\n        \"VBG\"\n    ], \n    \"pressing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Palomino\": [\n        \"NNP\"\n    ], \n    \"Yurek\": [\n        \"NNP\"\n    ], \n    \"incubate\": [\n        \"VB\"\n    ], \n    \"Ferembal\": [\n        \"NNP\"\n    ], \n    \"deduction\": [\n        \"NN\"\n    ], \n    \"Toch\": [\n        \"NNP\"\n    ], \n    \"POLICE\": [\n        \"NN\"\n    ], \n    \"Acustar\": [\n        \"NNP\"\n    ], \n    \"government-dominated\": [\n        \"JJ\"\n    ], \n    \"cabana\": [\n        \"NN\"\n    ], \n    \"Nellies\": [\n        \"NNPS\"\n    ], \n    \"twenty-eighth\": [\n        \"JJ\"\n    ], \n    \"ashare\": [\n        \"NN\"\n    ], \n    \"Chernobyl-type\": [\n        \"JJ\"\n    ], \n    \"straitjacket\": [\n        \"NN\"\n    ], \n    \"dishonorable\": [\n        \"JJ\"\n    ], \n    \"N-W\": [\n        \"NNP\"\n    ], \n    \"finagled\": [\n        \"VBN\"\n    ], \n    \"non-English\": [\n        \"NN\"\n    ], \n    \"foundling\": [\n        \"NN\"\n    ], \n    \"Dunkelberg\": [\n        \"NNP\"\n    ], \n    \"McCrady\": [\n        \"NNP\"\n    ], \n    \"JAS\": [\n        \"NNP\"\n    ], \n    \"diversion\": [\n        \"NN\"\n    ], \n    \"Softly\": [\n        \"RB\"\n    ], \n    \"graduate-student\": [\n        \"NN\"\n    ], \n    \"Lumbera\": [\n        \"NNP\"\n    ], \n    \"Richmond-San\": [\n        \"NNP\"\n    ], \n    \"consumer-protection\": [\n        \"NN\"\n    ], \n    \"rivalled\": [\n        \"VBD\"\n    ], \n    \"Dedham\": [\n        \"NNP\"\n    ], \n    \"Naren\": [\n        \"NNP\"\n    ], \n    \"Workplaces\": [\n        \"NNS\"\n    ], \n    \"substantive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"solve\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pliny\": [\n        \"NN\"\n    ], \n    \"intima\": [\n        \"NN\"\n    ], \n    \"Kogan\": [\n        \"NNP\"\n    ], \n    \"Ways\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Pohlad\": [\n        \"NNP\"\n    ], \n    \"racehorse\": [\n        \"NN\"\n    ], \n    \"proximal\": [\n        \"JJ\"\n    ], \n    \"half-reluctant\": [\n        \"JJ\"\n    ], \n    \"Sandwich\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"barnyard\": [\n        \"NN\"\n    ], \n    \"transformer\": [\n        \"NN\"\n    ], \n    \"outranks\": [\n        \"VBZ\"\n    ], \n    \"property-claims-service\": [\n        \"NN\"\n    ], \n    \"pile\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"FELA\": [\n        \"NNP\"\n    ], \n    \"Newcastle\": [\n        \"NNP\"\n    ], \n    \"Silverman\": [\n        \"NNP\"\n    ], \n    \"fifteenfold\": [\n        \"RB\"\n    ], \n    \"heavies\": [\n        \"NNS\"\n    ], \n    \"heavier\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"pill\": [\n        \"NN\"\n    ], \n    \"homelands\": [\n        \"NNS\"\n    ], \n    \"Givaudan\": [\n        \"NNP\"\n    ], \n    \"princpal\": [\n        \"NN\"\n    ], \n    \"gloom\": [\n        \"NN\"\n    ], \n    \"Napoleonic\": [\n        \"JJ\"\n    ], \n    \"Wherever\": [\n        \"WRB\"\n    ], \n    \"ire\": [\n        \"NN\"\n    ], \n    \"acid-fast\": [\n        \"JJ\"\n    ], \n    \"well-to-do\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Schemes\": [\n        \"NNS\"\n    ], \n    \"Lyrics\": [\n        \"NNS\"\n    ], \n    \"Characteristics\": [\n        \"NNS\"\n    ], \n    \"twin\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"serves\": [\n        \"VBZ\"\n    ], \n    \"server\": [\n        \"NN\"\n    ], \n    \"indisputably\": [\n        \"RB\"\n    ], \n    \"Henze\": [\n        \"NNP\"\n    ], \n    \"either\": [\n        \"DT\", \n        \"CC\", \n        \"IN\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"Thesis\": [\n        \"NN\"\n    ], \n    \"served\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"tooke\": [\n        \"VBD\"\n    ], \n    \"in-person\": [\n        \"JJ\"\n    ], \n    \"sneaker\": [\n        \"NN\"\n    ], \n    \"Citizen\\\\/Labor\": [\n        \"NNP\"\n    ], \n    \"Fisons\": [\n        \"NNP\"\n    ], \n    \"BRIEFS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"sentinel\": [\n        \"NN\"\n    ], \n    \"erase\": [\n        \"VB\"\n    ], \n    \"sneaked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Telefunken\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"lackeys\": [\n        \"NNS\"\n    ], \n    \"pasture\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"matching\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"choir\": [\n        \"NN\"\n    ], \n    \"half-faced\": [\n        \"JJ\"\n    ], \n    \"confirm\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"allegiances\": [\n        \"NNS\"\n    ], \n    \"mousetrap\": [\n        \"NN\"\n    ], \n    \"infallibility\": [\n        \"NN\"\n    ], \n    \"decomposition\": [\n        \"NN\"\n    ], \n    \"Grusin\": [\n        \"NNP\"\n    ], \n    \"atheromatous\": [\n        \"JJ\"\n    ], \n    \"impurity-doped\": [\n        \"JJ\"\n    ], \n    \"apocalyptic\": [\n        \"JJ\"\n    ], \n    \"apprentice\": [\n        \"NN\"\n    ], \n    \"Sakharov\": [\n        \"NNP\"\n    ], \n    \"manservant\": [\n        \"NN\"\n    ], \n    \"Neo-Popularism\": [\n        \"NNP\"\n    ], \n    \"out-of-kilter\": [\n        \"JJ\"\n    ], \n    \"pretended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"VISUALIZING\": [\n        \"VBG\"\n    ], \n    \"Payola\": [\n        \"NN\"\n    ], \n    \"untamed\": [\n        \"JJ\"\n    ], \n    \"crafting\": [\n        \"VBG\"\n    ], \n    \"toymakers\": [\n        \"NNS\"\n    ], \n    \"Zenith\": [\n        \"NNP\"\n    ], \n    \"smear\": [\n        \"NN\"\n    ], \n    \"mixer\": [\n        \"NN\"\n    ], \n    \"mixes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Pickett\": [\n        \"NNP\"\n    ], \n    \"freespender\": [\n        \"NN\"\n    ], \n    \"Yvette\": [\n        \"NNP\"\n    ], \n    \"toothpaste\": [\n        \"NN\"\n    ], \n    \"mixed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"vincit\": [\n        \"FW\"\n    ], \n    \"Mousie\": [\n        \"NNP\"\n    ], \n    \"provisional\": [\n        \"JJ\"\n    ], \n    \"eight-bit\": [\n        \"JJ\"\n    ], \n    \"Branigan\": [\n        \"NNP\"\n    ], \n    \"RAND\": [\n        \"NNP\"\n    ], \n    \"Navajos\": [\n        \"NNPS\"\n    ], \n    \"franchising\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Meinung\": [\n        \"FW\"\n    ], \n    \"short-run\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Isotechnologies\": [\n        \"NNPS\"\n    ], \n    \"U.S.-produced\": [\n        \"JJ\"\n    ], \n    \"Kokusai\": [\n        \"NNP\"\n    ], \n    \"coal-miners\": [\n        \"NNS\"\n    ], \n    \"shells\": [\n        \"NNS\"\n    ], \n    \"anise\": [\n        \"NN\"\n    ], \n    \"prescriber\": [\n        \"NN\"\n    ], \n    \"Sagan\": [\n        \"NNP\"\n    ], \n    \"Malaysian-based\": [\n        \"JJ\"\n    ], \n    \"Schweizer\": [\n        \"NNP\"\n    ], \n    \"Simpson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Arco\": [\n        \"NNP\"\n    ], \n    \"Arch\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"pretends\": [\n        \"VBZ\"\n    ], \n    \"purgatory\": [\n        \"NN\"\n    ], \n    \"Artesia\": [\n        \"NNP\"\n    ], \n    \"Airport\": [\n        \"NNP\"\n    ], \n    \"dampers\": [\n        \"NNS\"\n    ], \n    \"storytellers\": [\n        \"NNS\"\n    ], \n    \"international-money-markets\": [\n        \"NN\"\n    ], \n    \"Treaty\": [\n        \"NNP\"\n    ], \n    \"hiccup\": [\n        \"NN\"\n    ], \n    \"Evanston\": [\n        \"NNP\"\n    ], \n    \"maskers\": [\n        \"NNS\"\n    ], \n    \"form-dictionary\": [\n        \"NN\"\n    ], \n    \"A.B.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Kirkendall\": [\n        \"NNP\"\n    ], \n    \"pitting\": [\n        \"VBG\"\n    ], \n    \"Societa\": [\n        \"NNP\"\n    ], \n    \"Soviet-accredited\": [\n        \"JJ\"\n    ], \n    \"plant-vaccine\": [\n        \"JJ\"\n    ], \n    \"Societe\": [\n        \"NNP\"\n    ], \n    \"Curteis\": [\n        \"NNP\"\n    ], \n    \"Society\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uninhabitable\": [\n        \"JJ\"\n    ], \n    \"parisology\": [\n        \"NN\"\n    ], \n    \"Pollak\": [\n        \"NNP\"\n    ], \n    \"palate\": [\n        \"NN\"\n    ], \n    \"hated\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Hint\": [\n        \"NN\"\n    ], \n    \"conundrum\": [\n        \"NN\"\n    ], \n    \"race-car\": [\n        \"NN\"\n    ], \n    \"surimi\": [\n        \"FW\"\n    ], \n    \"acetate\": [\n        \"NN\"\n    ], \n    \"Bragg\": [\n        \"NNP\"\n    ], \n    \"mimesis\": [\n        \"NN\"\n    ], \n    \"planets\": [\n        \"NNS\"\n    ], \n    \"ever-vigilant\": [\n        \"JJ\"\n    ], \n    \"metier\": [\n        \"NN\"\n    ], \n    \"film\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"fill\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"tedious\": [\n        \"JJ\"\n    ], \n    \"wieners\": [\n        \"NNS\"\n    ], \n    \"amendments\": [\n        \"NNS\"\n    ], \n    \"Metruh\": [\n        \"NNP\"\n    ], \n    \"keynote\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"personnel\": [\n        \"NNS\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Toyotas\": [\n        \"NNS\"\n    ], \n    \"repent\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sogo-shosha\": [\n        \"NN\"\n    ], \n    \"supplementing\": [\n        \"VBG\"\n    ], \n    \"Resolves\": [\n        \"NNPS\"\n    ], \n    \"Landesco\": [\n        \"NNP\"\n    ], \n    \"Riders\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"color-TV\": [\n        \"NN\"\n    ], \n    \"computer-generated\": [\n        \"JJ\"\n    ], \n    \"hemorrhages\": [\n        \"NNS\"\n    ], \n    \"Townes\": [\n        \"NNP\"\n    ], \n    \"cloudburst\": [\n        \"NN\"\n    ], \n    \"forbidding-looking\": [\n        \"JJ\"\n    ], \n    \"Nordstrom\": [\n        \"NNP\"\n    ], \n    \"important\": [\n        \"JJ\"\n    ], \n    \"Brudzinski\": [\n        \"NNP\"\n    ], \n    \"Marwick\": [\n        \"NNP\"\n    ], \n    \"Rehabilitation\": [\n        \"NNP\"\n    ], \n    \"barometers\": [\n        \"NNS\"\n    ], \n    \"hemorrhaged\": [\n        \"VBN\"\n    ], \n    \"Newsletter\": [\n        \"NNP\"\n    ], \n    \"Crusades\": [\n        \"NNPS\"\n    ], \n    \"Crusader\": [\n        \"NNP\"\n    ], \n    \"international-defense\": [\n        \"NN\"\n    ], \n    \"human-resources\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"a-Average\": [\n        \"JJ\", \n        \"LS|JJ\"\n    ], \n    \"wets\": [\n        \"NNS\"\n    ], \n    \"recklessness\": [\n        \"NN\"\n    ], \n    \"landfill\": [\n        \"NN\"\n    ], \n    \"Thermal\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"husks\": [\n        \"NNS\"\n    ], \n    \"incubating\": [\n        \"VBG\"\n    ], \n    \"Davies\": [\n        \"NNP\"\n    ], \n    \"Tache\": [\n        \"NNP\"\n    ], \n    \"mischarged\": [\n        \"VBD\"\n    ], \n    \"Ziyang\": [\n        \"NNP\"\n    ], \n    \"Yewaisis\": [\n        \"NNP\"\n    ], \n    \"Satterfield\": [\n        \"NNP\"\n    ], \n    \"suns\": [\n        \"NNS\"\n    ], \n    \"forbidden\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"quinolone\": [\n        \"NN\"\n    ], \n    \"dollar\": [\n        \"NN\"\n    ], \n    \"fixtured\": [\n        \"VBD\"\n    ], \n    \"sunt\": [\n        \"FW\"\n    ], \n    \"postponing\": [\n        \"VBG\"\n    ], \n    \"slung\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Azem\": [\n        \"NNP\"\n    ], \n    \"zinc\": [\n        \"NN\"\n    ], \n    \"Secretion\": [\n        \"NN\"\n    ], \n    \"fixtures\": [\n        \"NNS\"\n    ], \n    \"sung\": [\n        \"VBN\"\n    ], \n    \"milliamperes\": [\n        \"NNS\"\n    ], \n    \"toniest\": [\n        \"JJS\"\n    ], \n    \"Tartar\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"pinioned\": [\n        \"VBN\"\n    ], \n    \"prefixes\": [\n        \"NNS\"\n    ], \n    \"shredding\": [\n        \"VBG\"\n    ], \n    \"destroyers\": [\n        \"NNS\"\n    ], \n    \"Tartan\": [\n        \"NNP\"\n    ], \n    \"overdoing\": [\n        \"VBG\"\n    ], \n    \"nibblers\": [\n        \"NNS\"\n    ], \n    \"Burdens\": [\n        \"NNS\"\n    ], \n    \"Physician\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"returning\": [\n        \"VBG\"\n    ], \n    \"counterproposal\": [\n        \"NN\"\n    ], \n    \"Molinari\": [\n        \"NNP\"\n    ], \n    \"Goizueta\": [\n        \"NNP\"\n    ], \n    \"interglacial\": [\n        \"JJ\"\n    ], \n    \"ad-supported\": [\n        \"JJ\"\n    ], \n    \"Huitotoes\": [\n        \"NNS\"\n    ], \n    \"difference\": [\n        \"NN\"\n    ], \n    \"Airedale\": [\n        \"NNP\"\n    ], \n    \"cheerful\": [\n        \"JJ\"\n    ], \n    \"photographic-paper\": [\n        \"NN\"\n    ], \n    \"Weizsacker\": [\n        \"NNP\"\n    ], \n    \"Goodfriend\": [\n        \"NNP\"\n    ], \n    \"fiber-optics\": [\n        \"NN\"\n    ], \n    \"Prandtl\": [\n        \"NNP\"\n    ], \n    \"nonwhite\": [\n        \"JJ\"\n    ], \n    \"intricately\": [\n        \"RB\"\n    ], \n    \"juxtaposition\": [\n        \"NN\"\n    ], \n    \"Kill\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Luzon\": [\n        \"NNP\"\n    ], \n    \"thermocouple\": [\n        \"NN\"\n    ], \n    \"becometh\": [\n        \"VBZ\"\n    ], \n    \"Dax-Pontonx\": [\n        \"NNP\"\n    ], \n    \"Zvi\": [\n        \"NNP\"\n    ], \n    \"airliners\": [\n        \"NNS\"\n    ], \n    \"CLASHED\": [\n        \"VBD\"\n    ], \n    \"grabs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Denver\": [\n        \"NNP\"\n    ], \n    \"embodies\": [\n        \"VBZ\"\n    ], \n    \"white-bearded\": [\n        \"JJ\"\n    ], \n    \"Disney\\\\/MGM\": [\n        \"NNP\"\n    ], \n    \"appreciating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cigars\": [\n        \"NNS\"\n    ], \n    \"Giants\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"ruminate\": [\n        \"VB\"\n    ], \n    \"mobilizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"diffusing\": [\n        \"VBG\"\n    ], \n    \"astonishment\": [\n        \"NN\"\n    ], \n    \"Websterville\": [\n        \"NNP\"\n    ], \n    \"exasperation\": [\n        \"NN\"\n    ], \n    \"ambled\": [\n        \"VBD\"\n    ], \n    \"public\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Bleak\": [\n        \"NNP\"\n    ], \n    \"bloodbath\": [\n        \"NN\"\n    ], \n    \"Hersant\": [\n        \"NNP\"\n    ], \n    \"NFC\": [\n        \"NNP\"\n    ], \n    \"NFA\": [\n        \"NNP\"\n    ], \n    \"mini-studio\": [\n        \"NN\"\n    ], \n    \"scanty\": [\n        \"JJ\"\n    ], \n    \"NFL\": [\n        \"NNP\"\n    ], \n    \"dabbled\": [\n        \"VBD\"\n    ], \n    \"Elector\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Archer\": [\n        \"NNP\"\n    ], \n    \"free\": [\n        \"JJ\", \n        \",\", \n        \"JJ|RB\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"eutectic\": [\n        \"NN\"\n    ], \n    \"I-880\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Archey\": [\n        \"NNP\"\n    ], \n    \"Reichstag\": [\n        \"NNP\"\n    ], \n    \"Canandaigua\": [\n        \"NNP\"\n    ], \n    \"oleomargarine\": [\n        \"NN\"\n    ], \n    \"bakeries\": [\n        \"NNS\"\n    ], \n    \"A40-AjK\": [\n        \"NN\"\n    ], \n    \"Berliner\": [\n        \"NNP\"\n    ], \n    \"Bush-Salinas\": [\n        \"NNP\"\n    ], \n    \"Liquor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Yuba\": [\n        \"NNP\"\n    ], \n    \"Resorts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"non-success\": [\n        \"NN\"\n    ], \n    \"lubricants\": [\n        \"NNS\"\n    ], \n    \"Naomi\": [\n        \"NNP\"\n    ], \n    \"franchisers\": [\n        \"NNS\"\n    ], \n    \"Mannerhouse\": [\n        \"NNP\"\n    ], \n    \"Britisher\": [\n        \"NNP\"\n    ], \n    \"proscription\": [\n        \"NN\"\n    ], \n    \"cowardly\": [\n        \"JJ\"\n    ], \n    \"abortionist\": [\n        \"NN\"\n    ], \n    \"usurpation\": [\n        \"NN\"\n    ], \n    \"unapproved\": [\n        \"JJ\"\n    ], \n    \"Grahams\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"arrogance\": [\n        \"NN\"\n    ], \n    \"deeming\": [\n        \"VBG\"\n    ], \n    \"Europe\": [\n        \"NNP\"\n    ], \n    \"LEBANESE\": [\n        \"JJ\"\n    ], \n    \"Geren\": [\n        \"NNP\"\n    ], \n    \"annunciated\": [\n        \"VBN\"\n    ], \n    \"Europa\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"culinary\": [\n        \"JJ\"\n    ], \n    \"wiped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"paraphrases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Zemin\": [\n        \"NNP\"\n    ], \n    \"minus\\\\\": [\n        \"JJ\"\n    ], \n    \"Tobias\": [\n        \"NNP\"\n    ], \n    \"abroade\": [\n        \"RB\"\n    ], \n    \"Forsythe\": [\n        \"NNP\"\n    ], \n    \"non-economical\": [\n        \"JJ\"\n    ], \n    \"raft\": [\n        \"NN\"\n    ], \n    \"Apprentice\": [\n        \"NNP\"\n    ], \n    \"hegemony\": [\n        \"NN\"\n    ], \n    \"Adagio\": [\n        \"NNP\"\n    ], \n    \"awards\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Brasil\": [\n        \"JJ\"\n    ], \n    \"FLARE\": [\n        \"VBP\"\n    ], \n    \"corporate-raider\": [\n        \"JJ\"\n    ], \n    \"strife-free\": [\n        \"JJ\"\n    ], \n    \"lemons\": [\n        \"NNS\"\n    ], \n    \"Vif\": [\n        \"NNP\"\n    ], \n    \"unnumbered\": [\n        \"JJ\"\n    ], \n    \"Abstracts\": [\n        \"NNP\"\n    ], \n    \"phase-out\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Disclosure\": [\n        \"NN\"\n    ], \n    \"Ribas\": [\n        \"NNP\"\n    ], \n    \"overhand\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Receivables\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Trager\": [\n        \"NNP\"\n    ], \n    \"Skrunda\": [\n        \"NNP\"\n    ], \n    \"management-pilot\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lefthander\": [\n        \"NN\"\n    ], \n    \"subterfuge\": [\n        \"NN\"\n    ], \n    \"mediums\": [\n        \"NNS\"\n    ], \n    \"Hessian\": [\n        \"JJ\"\n    ], \n    \"Featherbed\": [\n        \"NN\"\n    ], \n    \"sleuth\": [\n        \"NN\"\n    ], \n    \"muzzles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"seventeen-year-old\": [\n        \"JJ\"\n    ], \n    \"sphere\": [\n        \"NN\"\n    ], \n    \"Kume\": [\n        \"NNP\"\n    ], \n    \"neo-Nazis\": [\n        \"NNPS\"\n    ], \n    \"Compromise\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"airline-landing\": [\n        \"JJ\"\n    ], \n    \"Djangology\": [\n        \"NNP\"\n    ], \n    \"Victor-brand\": [\n        \"JJ\"\n    ], \n    \"Teens\": [\n        \"NNS\"\n    ], \n    \"Hearst\": [\n        \"NNP\"\n    ], \n    \"reliving\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"fillip\": [\n        \"NN\"\n    ], \n    \"Raymond\": [\n        \"NNP\"\n    ], \n    \"awkward\": [\n        \"JJ\"\n    ], \n    \"fullback\": [\n        \"NN\"\n    ], \n    \"Dragnet\": [\n        \"NNP\"\n    ], \n    \"Meaning\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"thout\": [\n        \"VBD\"\n    ], \n    \"profiting\": [\n        \"VBG\"\n    ], \n    \"acts...\": [\n        \":\"\n    ], \n    \"options-trading\": [\n        \"JJ\"\n    ], \n    \"Attu\": [\n        \"NNP\"\n    ], \n    \"CABLE\": [\n        \"NN\"\n    ], \n    \"advice\": [\n        \"NN\"\n    ], \n    \"intones\": [\n        \"VBZ\"\n    ], \n    \"C.K.\": [\n        \"NNP\"\n    ], \n    \"Nebraska\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"BMWs\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Atta\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"Tasti-Freeze\": [\n        \"NNP\"\n    ], \n    \"intoned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Hamakua\": [\n        \"NN\"\n    ], \n    \"Finkelsteins\": [\n        \"NNPS\"\n    ], \n    \"bloating\": [\n        \"NN\"\n    ], \n    \"Lipps\": [\n        \"NNP\"\n    ], \n    \"narcissistically\": [\n        \"RB\"\n    ], \n    \"Stanwick\": [\n        \"NNP\"\n    ], \n    \"rooting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"crippling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"blunder\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"deserted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"responsibility\": [\n        \"NN\"\n    ], \n    \"agenda-setter\": [\n        \"NN\"\n    ], \n    \"Odean\": [\n        \"NNP\"\n    ], \n    \"redirecting\": [\n        \"VBG\"\n    ], \n    \"Menomonee\": [\n        \"NNP\"\n    ], \n    \"Altron\": [\n        \"NNP\"\n    ], \n    \"graunt\": [\n        \"VB\"\n    ], \n    \"Heel-Beryl\": [\n        \"NNP\"\n    ], \n    \"picture-tube\": [\n        \"JJ\"\n    ], \n    \"Renewed\": [\n        \"VBN\"\n    ], \n    \"Ozon\": [\n        \"NN\"\n    ], \n    \"Cashiering\": [\n        \"VBG\"\n    ], \n    \"lashings\": [\n        \"NNS\"\n    ], \n    \"controllable\": [\n        \"JJ\"\n    ], \n    \"WORKING\": [\n        \"VBG\"\n    ], \n    \"calluses\": [\n        \"NNS\"\n    ], \n    \"Philosophy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"thirty-year\": [\n        \"JJ\"\n    ], \n    \"oxalate\": [\n        \"NN\"\n    ], \n    \"heartstopping\": [\n        \"JJ\"\n    ], \n    \"jejunum\": [\n        \"NN\"\n    ], \n    \"arias\": [\n        \"NNS\"\n    ], \n    \"wharves\": [\n        \"NNS\"\n    ], \n    \"Installation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Mortals\": [\n        \"NNS\"\n    ], \n    \"Ondaatje\": [\n        \"NNP\"\n    ], \n    \"two-evening\": [\n        \"JJ\"\n    ], \n    \"limped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"obeyed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Youngblood\": [\n        \"NNP\"\n    ], \n    \"capriciousness\": [\n        \"NN\"\n    ], \n    \"Tebuthiuron\": [\n        \"NN\"\n    ], \n    \"inception\": [\n        \"NN\"\n    ], \n    \"formulating\": [\n        \"VBG\"\n    ], \n    \"Allied-Lyons\": [\n        \"NNP\"\n    ], \n    \"association\": [\n        \"NN\"\n    ], \n    \"life-cycle\": [\n        \"JJ\"\n    ], \n    \"deteriorates\": [\n        \"VBZ\"\n    ], \n    \"Saving\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"excruciating\": [\n        \"JJ\"\n    ], \n    \"over-populated\": [\n        \"JJ\"\n    ], \n    \"Holbrook\": [\n        \"NNP\"\n    ], \n    \"Lack\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ashen\": [\n        \"JJ\"\n    ], \n    \"Benigno\": [\n        \"NNP\"\n    ], \n    \"rigueur\": [\n        \"FW\"\n    ], \n    \"ashes\": [\n        \"NNS\"\n    ], \n    \"Boveri\": [\n        \"NNP\"\n    ], \n    \"deteriorated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"writing-like\": [\n        \"JJ\"\n    ], \n    \"Lacy\": [\n        \"NNP\"\n    ], \n    \"Abel\": [\n        \"NNP\"\n    ], \n    \"forthright\": [\n        \"JJ\"\n    ], \n    \"harm\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"hark\": [\n        \"VBP\"\n    ], \n    \"Built\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"ornately\": [\n        \"RB\"\n    ], \n    \"hare\": [\n        \"NN\"\n    ], \n    \"hard\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Tredegar\": [\n        \"NNP\"\n    ], \n    \"nine-cent\": [\n        \"JJ\"\n    ], \n    \"Meyle\": [\n        \"NNP\"\n    ], \n    \"Presse\": [\n        \"NNP\"\n    ], \n    \"Build\": [\n        \"VB\"\n    ], \n    \"fist\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"belt-driven\": [\n        \"JJ\"\n    ], \n    \"schoolmate\": [\n        \"NN\"\n    ], \n    \"Panisse\": [\n        \"NNP\"\n    ], \n    \"bascially\": [\n        \"RB\"\n    ], \n    \"harp\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"mustered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Collision\": [\n        \"NNP\"\n    ], \n    \"fermentations\": [\n        \"NNS\"\n    ], \n    \"Coesfeld\": [\n        \"NNP\"\n    ], \n    \"childish\": [\n        \"JJ\"\n    ], \n    \"discouraging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"seaport\": [\n        \"NN\"\n    ], \n    \"firstround\": [\n        \"JJ\"\n    ], \n    \"Ridgefield\": [\n        \"NNP\"\n    ], \n    \"non-working\": [\n        \"JJ\"\n    ], \n    \"pension-tax\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"trusteth\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"overindulged\": [\n        \"VBD\"\n    ], \n    \"electronic-communications\": [\n        \"NNS\"\n    ], \n    \"unidentifiable\": [\n        \"JJ\"\n    ], \n    \"computer\\\\\": [\n        \"JJ\"\n    ], \n    \"crouched\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Estella\": [\n        \"NNP\"\n    ], \n    \"foreign-currency\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"crouches\": [\n        \"VBZ\"\n    ], \n    \"Architecture\": [\n        \"NNP\"\n    ], \n    \"Reception\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ruined\": [\n        \"VBN\"\n    ], \n    \"allocation\": [\n        \"NN\"\n    ], \n    \"Zodiacal\": [\n        \"JJ\"\n    ], \n    \"Lescaut\": [\n        \"NNP\"\n    ], \n    \"overbuilding\": [\n        \"NN\"\n    ], \n    \"reinforces\": [\n        \"VBZ\"\n    ], \n    \"computers\": [\n        \"NNS\"\n    ], \n    \"ended...\": [\n        \":\"\n    ], \n    \"misunderstanders\": [\n        \"NNS\"\n    ], \n    \"UCSF\": [\n        \"NNP\"\n    ], \n    \"Bandon\": [\n        \"NNP\"\n    ], \n    \"reinforced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"said:``\": [\n        \"``\"\n    ], \n    \"copper\": [\n        \"NN\"\n    ], \n    \"Cyril\": [\n        \"NNP\"\n    ], \n    \"lemon-meringue\": [\n        \"NN\"\n    ], \n    \"long-yardage\": [\n        \"JJ\"\n    ], \n    \"plow\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"service-connected\": [\n        \"JJ\"\n    ], \n    \"inhibits\": [\n        \"VBZ\"\n    ], \n    \"neglects\": [\n        \"VBZ\"\n    ], \n    \"Goes\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"Dangers\": [\n        \"NNS\"\n    ], \n    \"disown\": [\n        \"VB\"\n    ], \n    \"management-union\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"air-to-surface\": [\n        \"JJ\"\n    ], \n    \"watchmaker\": [\n        \"NN\"\n    ], \n    \"purposive\": [\n        \"JJ\"\n    ], \n    \"Precision\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"least\": [\n        \"JJS\", \n        \"RBS\", \n        \"JJ\"\n    ], \n    \"leash\": [\n        \"NN\"\n    ], \n    \"Parrott\": [\n        \"NNP\"\n    ], \n    \"Belgium\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rumpelstiltskin\": [\n        \"NNP\"\n    ], \n    \"lease\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"zg\": [\n        \"NN\"\n    ], \n    \"travail\": [\n        \"NN\"\n    ], \n    \"Boards\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Meyerson\": [\n        \"NNP\"\n    ], \n    \"leaderless\": [\n        \"JJ\"\n    ], \n    \"doctors\": [\n        \"NNS\"\n    ], \n    \"believe\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Haiti\": [\n        \"NNP\"\n    ], \n    \"four-room\": [\n        \"JJ\"\n    ], \n    \"supposes\": [\n        \"VBZ\"\n    ], \n    \"Willowbridge\": [\n        \"NNP\"\n    ], \n    \"preconscious\": [\n        \"JJ\"\n    ], \n    \"Dispersals\": [\n        \"NNS\"\n    ], \n    \"referred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ungodly\": [\n        \"JJ\"\n    ], \n    \"Wilhelm\": [\n        \"NNP\"\n    ], \n    \"supposed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"sedate\": [\n        \"JJ\"\n    ], \n    \"Reunion\": [\n        \"NNP\"\n    ], \n    \"Tisch\": [\n        \"NNP\"\n    ], \n    \"low-price\": [\n        \"JJ\"\n    ], \n    \"semi-obscure\": [\n        \"JJ\"\n    ], \n    \"ordere\": [\n        \"VBN\"\n    ], \n    \"intravenously\": [\n        \"RB\"\n    ], \n    \"creases\": [\n        \"NNS\"\n    ], \n    \"denims\": [\n        \"NNS\"\n    ], \n    \"Empirically\": [\n        \"RB\"\n    ], \n    \"categorized\": [\n        \"VBN\"\n    ], \n    \"creased\": [\n        \"VBN\"\n    ], \n    \"self-sacrificing\": [\n        \"JJ\"\n    ], \n    \"orders\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rollbacks\": [\n        \"NNS\"\n    ], \n    \"Kiz\": [\n        \"NNP\"\n    ], \n    \"Diseases\": [\n        \"NNPS\"\n    ], \n    \"flared\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Kis\": [\n        \"NNP\"\n    ], \n    \"Confusion\": [\n        \"NN\"\n    ], \n    \"Kip\": [\n        \"NNP\"\n    ], \n    \"Clearer\": [\n        \"JJR\"\n    ], \n    \"fiscal-third\": [\n        \"JJ\"\n    ], \n    \"honors\": [\n        \"NNS\", \n        \"VBZ\", \n        \"JJ\"\n    ], \n    \"flares\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"costs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Goulding\": [\n        \"NNP\"\n    ], \n    \"Kim\": [\n        \"NNP\"\n    ], \n    \"deepening\": [\n        \"VBG\"\n    ], \n    \"Alpha\": [\n        \"NNP\"\n    ], \n    \"big-chested\": [\n        \"JJ\"\n    ], \n    \"Kid\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"small-arms\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"fundamantal\": [\n        \"JJ\"\n    ], \n    \"state-of-the-art\": [\n        \"JJ\"\n    ], \n    \"Common\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"moss\": [\n        \"NN\"\n    ], \n    \"ileum\": [\n        \"NN\"\n    ], \n    \"Ainsworth\": [\n        \"NNP\"\n    ], \n    \"Oceanside\": [\n        \"NNP\"\n    ], \n    \"corrupts\": [\n        \"VBZ\"\n    ], \n    \"goodwill\": [\n        \"NN\"\n    ], \n    \"Rapture\": [\n        \"NN\"\n    ], \n    \"pressure-cooker\": [\n        \"NN\"\n    ], \n    \"whetted\": [\n        \"VBN\"\n    ], \n    \"money-supply\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Muncie-Peru\": [\n        \"NNP\"\n    ], \n    \"colonel\": [\n        \"NN\"\n    ], \n    \"Blandings\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"standoff\": [\n        \"NN\"\n    ], \n    \"Lola\": [\n        \"NNP\"\n    ], \n    \"saxophonists\": [\n        \"NNS\"\n    ], \n    \"Catastrophe\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Patent\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stature\": [\n        \"NN\"\n    ], \n    \"athlete-payoff\": [\n        \"JJ\"\n    ], \n    \"blue-ribbon\": [\n        \"JJ\"\n    ], \n    \"minimizing\": [\n        \"VBG\"\n    ], \n    \"poor-quality\": [\n        \"JJ\"\n    ], \n    \"co-operative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"contorted\": [\n        \"JJ\"\n    ], \n    \"perfuses\": [\n        \"VBZ\"\n    ], \n    \"Chye\": [\n        \"NNP\"\n    ], \n    \"networks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"NURSING\": [\n        \"NN\"\n    ], \n    \"distributed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"roughshod\": [\n        \"JJ\"\n    ], \n    \"fiend\": [\n        \"NN\"\n    ], \n    \"override\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"distributer\": [\n        \"NN\"\n    ], \n    \"distributes\": [\n        \"VBZ\"\n    ], \n    \"Crucible\": [\n        \"NNP\"\n    ], \n    \"Snoozing\": [\n        \"VBG\"\n    ], \n    \"Brethen\": [\n        \"NNP\"\n    ], \n    \"revolts\": [\n        \"NNS\"\n    ], \n    \"Dublin\": [\n        \"NNP\"\n    ], \n    \"Thanksgiving\": [\n        \"NNP\"\n    ], \n    \"Anania\": [\n        \"NNP\"\n    ], \n    \"infuse\": [\n        \"VB\"\n    ], \n    \"Rescues\": [\n        \"NNS\"\n    ], \n    \"Aniskovich\": [\n        \"NNP\"\n    ], \n    \"Responsibility\": [\n        \"NNP\"\n    ], \n    \"theft\": [\n        \"NN\"\n    ], \n    \"Monaco\": [\n        \"NNP\"\n    ], \n    \"Switzerland-based\": [\n        \"JJ\"\n    ], \n    \"direct-selling\": [\n        \"JJ\"\n    ], \n    \"urinary\": [\n        \"JJ\"\n    ], \n    \"two-floor\": [\n        \"JJ\"\n    ], \n    \"remove\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Rifkind\": [\n        \"NNP\"\n    ], \n    \"laches\": [\n        \"NN\"\n    ], \n    \"unfettered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"outdoor-maintenance\": [\n        \"NN\"\n    ], \n    \"thermometry\": [\n        \"NN\"\n    ], \n    \"Pennzoil\\\\/Texaco\": [\n        \"NNP\"\n    ], \n    \"still-undeveloped\": [\n        \"JJ\"\n    ], \n    \"potentiality\": [\n        \"NN\"\n    ], \n    \"cynical\": [\n        \"JJ\"\n    ], \n    \"Knoxville\": [\n        \"NNP\"\n    ], \n    \"Mough\": [\n        \"NN\"\n    ], \n    \"lion\": [\n        \"NN\"\n    ], \n    \"denunciations\": [\n        \"NNS\"\n    ], \n    \"Scorpios\": [\n        \"NNPS\"\n    ], \n    \"Majesties\": [\n        \"NNPS\"\n    ], \n    \"Toepfer\": [\n        \"NNP\"\n    ], \n    \"forthcoming\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"materially\": [\n        \"RB\"\n    ], \n    \"drought-induced\": [\n        \"JJ\"\n    ], \n    \"MFA\": [\n        \"NNP\"\n    ], \n    \"Staircase\": [\n        \"NN\"\n    ], \n    \"Judith\": [\n        \"NNP\"\n    ], \n    \"launch-vehicle\": [\n        \"NN\"\n    ], \n    \"political-corruption\": [\n        \"NN\"\n    ], \n    \"powerhouse\": [\n        \"NN\"\n    ], \n    \"MFS\": [\n        \"NNP\"\n    ], \n    \"Printed\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"de-iodinate\": [\n        \"VB\"\n    ], \n    \"wave-length\": [\n        \"NN\"\n    ], \n    \"Krist\": [\n        \"UH\"\n    ], \n    \"burned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Postal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"transfered\": [\n        \"VBN\"\n    ], \n    \"RANDELL\": [\n        \"NNP\"\n    ], \n    \"Kriss\": [\n        \"NNP\"\n    ], \n    \"windswept\": [\n        \"JJ\"\n    ], \n    \"seeded\": [\n        \"VBN\"\n    ], \n    \"queers\": [\n        \"NNS\"\n    ], \n    \"egotist\": [\n        \"NN\"\n    ], \n    \"alarmist\": [\n        \"JJ\"\n    ], \n    \"dividends\": [\n        \"NNS\"\n    ], \n    \"complement\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"sheepe\": [\n        \"NNS\"\n    ], \n    \"barrack\": [\n        \"NN\"\n    ], \n    \"weaker-than-expected\": [\n        \"JJ\"\n    ], \n    \"bank-owned\": [\n        \"JJ\"\n    ], \n    \"Maker\": [\n        \"NN\"\n    ], \n    \"prams\": [\n        \"NNS\"\n    ], \n    \"folding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"reverse\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VBP\"\n    ], \n    \"state-law\": [\n        \"NN\"\n    ], \n    \"clamps\": [\n        \"NNS\"\n    ], \n    \"tapered\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"bonzes\": [\n        \"NNS\"\n    ], \n    \"transportation-services\": [\n        \"JJ\"\n    ], \n    \"Grass-roots\": [\n        \"JJ\"\n    ], \n    \"Bloedel\": [\n        \"NNP\"\n    ], \n    \"Taras-Tchaikovsky\": [\n        \"NNP\"\n    ], \n    \"J.J.G.M.\": [\n        \"NNP\"\n    ], \n    \"spume\": [\n        \"NN\"\n    ], \n    \"lesser-developed\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"bongo\": [\n        \"NN\"\n    ], \n    \"shrines\": [\n        \"NNS\"\n    ], \n    \"seven-week\": [\n        \"JJ\"\n    ], \n    \"simple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Two-Head\": [\n        \"NNP\"\n    ], \n    \"Margie\": [\n        \"NNP\"\n    ], \n    \"Killow\": [\n        \"NNP\"\n    ], \n    \"simply\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"busters\": [\n        \"NNS\"\n    ], \n    \"consuming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Heiwa\": [\n        \"NNP\"\n    ], \n    \"longsuffering\": [\n        \"JJ\"\n    ], \n    \"Hoff\": [\n        \"NNP\"\n    ], \n    \"Revere\": [\n        \"NNP\"\n    ], \n    \"taxfree\": [\n        \"JJ\"\n    ], \n    \"toe-tips\": [\n        \"NNS\"\n    ], \n    \"HealthVest\": [\n        \"NNP\", \n        \"JJS\"\n    ], \n    \"slips\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"blurting\": [\n        \"VBG\"\n    ], \n    \"Artificer\": [\n        \"NN\"\n    ], \n    \"presale\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Offensive\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Double-digit\": [\n        \"JJ\"\n    ], \n    \"Craven\": [\n        \"NNP\"\n    ], \n    \"Isquith\": [\n        \"NNP\"\n    ], \n    \"Bayer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Academicianship\": [\n        \"NN\"\n    ], \n    \"smoking-related\": [\n        \"JJ\"\n    ], \n    \"Sitwell\": [\n        \"NNP\"\n    ], \n    \"unnecessarily\": [\n        \"RB\"\n    ], \n    \"misunderstands\": [\n        \"VBZ\"\n    ], \n    \"history-reenactment\": [\n        \"NN\"\n    ], \n    \"Ferris\": [\n        \"NNP\"\n    ], \n    \"capsicum\": [\n        \"NN\"\n    ], \n    \"Lowery\": [\n        \"NNP\"\n    ], \n    \"rat\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"joyful\": [\n        \"JJ\"\n    ], \n    \"Niagara\": [\n        \"NNP\"\n    ], \n    \"exachanges\": [\n        \"NNS\"\n    ], \n    \"lingo\": [\n        \"NN\"\n    ], \n    \"Caspita-brand\": [\n        \"JJ\"\n    ], \n    \"Divinity\": [\n        \"NNP\"\n    ], \n    \"pegging\": [\n        \"VBG\"\n    ], \n    \"heroically\": [\n        \"RB\"\n    ], \n    \"vulcanized\": [\n        \"VBN\"\n    ], \n    \"Cheney\": [\n        \"NNP\"\n    ], \n    \"bedstraw\": [\n        \"NN\"\n    ], \n    \"transom\": [\n        \"NN\"\n    ], \n    \"stubbornly\": [\n        \"RB\"\n    ], \n    \"facade\": [\n        \"NN\"\n    ], \n    \"ARCO\": [\n        \"NNP\"\n    ], \n    \"unaffected\": [\n        \"JJ\"\n    ], \n    \"OWI\": [\n        \"NNP\"\n    ], \n    \"prognosticator\": [\n        \"NN\"\n    ], \n    \"more-realistic\": [\n        \"JJ\"\n    ], \n    \"dishonor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"butcher\": [\n        \"NN\"\n    ], \n    \"Servanda\": [\n        \"FW\"\n    ], \n    \"relatively\": [\n        \"RB\"\n    ], \n    \"non-trade\": [\n        \"JJ\"\n    ], \n    \"passwords\": [\n        \"NNS\"\n    ], \n    \"neuroses\": [\n        \"NNS\"\n    ], \n    \"paddleball\": [\n        \"NN\"\n    ], \n    \"Asia-Pacific\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Grinned\": [\n        \"VBD\"\n    ], \n    \"expressiveness\": [\n        \"NN\"\n    ], \n    \"timid\": [\n        \"JJ\"\n    ], \n    \"predecessors\": [\n        \"NNS\"\n    ], \n    \"chieftains\": [\n        \"NNS\"\n    ], \n    \"nolo\": [\n        \"FW\"\n    ], \n    \"Ratican\": [\n        \"NNP\"\n    ], \n    \"noli\": [\n        \"NNS\"\n    ], \n    \"peppered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"energy-efficient\": [\n        \"JJ\"\n    ], \n    \"vilifying\": [\n        \"VBG\"\n    ], \n    \"nineteenth-century\": [\n        \"JJ\"\n    ], \n    \"Yokohama\": [\n        \"NNP\"\n    ], \n    \"Harpoon\": [\n        \"NNP\"\n    ], \n    \"covets\": [\n        \"VBZ\"\n    ], \n    \"amps\": [\n        \"NNS\"\n    ], \n    \"signalled\": [\n        \"VBD\"\n    ], \n    \"DiVall\": [\n        \"NNP\"\n    ], \n    \"musicologists\": [\n        \"NNS\"\n    ], \n    \"junk-bond\": [\n        \"NN\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Mitchells\": [\n        \"NNP\"\n    ], \n    \"population...\": [\n        \":\"\n    ], \n    \"Burgundy\": [\n        \"NNP\"\n    ], \n    \"distracting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Takakura\": [\n        \"NNP\"\n    ], \n    \"openly\": [\n        \"RB\"\n    ], \n    \"re-used\": [\n        \"VBN\"\n    ], \n    \"stirrin\": [\n        \"VBG\"\n    ], \n    \"double-crossing\": [\n        \"NN\"\n    ], \n    \"letting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"law-enforcement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"dynastic\": [\n        \"JJ\"\n    ], \n    \"Theory\": [\n        \"NNP\"\n    ], \n    \"newsies\": [\n        \"NNS\"\n    ], \n    \"Staar\": [\n        \"NNP\"\n    ], \n    \"thyronine\": [\n        \"NN\"\n    ], \n    \"deliberately\": [\n        \"RB\"\n    ], \n    \"Snake\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"homier\": [\n        \"JJR\"\n    ], \n    \"voltmeter\": [\n        \"NN\"\n    ], \n    \"squawk\": [\n        \"VB\"\n    ], \n    \"Sommers\": [\n        \"NNP\"\n    ], \n    \"microcomputers\": [\n        \"NNS\"\n    ], \n    \"Atalanta\\\\/Sosnoff\": [\n        \"NNP\"\n    ], \n    \"Married\": [\n        \"VBN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"judgement\": [\n        \"NN\"\n    ], \n    \"foreigners\": [\n        \"NNS\"\n    ], \n    \"salutes\": [\n        \"NNS\"\n    ], \n    \"precompetitive\": [\n        \"JJ\"\n    ], \n    \"trail-blazing\": [\n        \"JJ\"\n    ], \n    \"tonalities\": [\n        \"NNS\"\n    ], \n    \"degenerated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"heftier\": [\n        \"JJR\"\n    ], \n    \"M.D.C.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cogs\": [\n        \"NNS\"\n    ], \n    \"Cohen\": [\n        \"NNP\"\n    ], \n    \"disks\": [\n        \"NNS\"\n    ], \n    \"demographiques\": [\n        \"FW\"\n    ], \n    \"shareholder\\\\/management\": [\n        \"NN\"\n    ], \n    \"Whatever\": [\n        \"WDT\"\n    ], \n    \"reharmonization\": [\n        \"NN\"\n    ], \n    \"Thankful\": [\n        \"JJ\"\n    ], \n    \"Einsteinian\": [\n        \"JJ\"\n    ], \n    \"depositary\": [\n        \"NN\", \n        \"JJ\", \n        \"NN|JJ\"\n    ], \n    \"neatest\": [\n        \"JJS\"\n    ], \n    \"composites\": [\n        \"NNS\"\n    ], \n    \"jibes\": [\n        \"NNS\"\n    ], \n    \"humorous\": [\n        \"JJ\"\n    ], \n    \"Tevye\": [\n        \"NNP\"\n    ], \n    \"martial\": [\n        \"JJ\"\n    ], \n    \"doorkeeper\": [\n        \"NN\"\n    ], \n    \"ornaments\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Whoa\": [\n        \"UH\"\n    ], \n    \"Gotshal\": [\n        \"NNP\"\n    ], \n    \"Cinegrill\": [\n        \"NNP\"\n    ], \n    \"jewelry\": [\n        \"NN\"\n    ], \n    \"Psychologically\": [\n        \"RB\"\n    ], \n    \"pre-planning\": [\n        \"NN\"\n    ], \n    \"Nehf\": [\n        \"NNP\"\n    ], \n    \"pudding\": [\n        \"NN\"\n    ], \n    \"Macheski\": [\n        \"NNP\"\n    ], \n    \"Fault\": [\n        \"NNP\"\n    ], \n    \"nondestructive\": [\n        \"JJ\"\n    ], \n    \"aflame\": [\n        \"JJ\"\n    ], \n    \"dismally\": [\n        \"RB\"\n    ], \n    \"cameraman\": [\n        \"NN\"\n    ], \n    \"patient\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"integrals\": [\n        \"NNS\"\n    ], \n    \"taxing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"P-5-39\": [\n        \"NNP\"\n    ], \n    \"Lena\": [\n        \"NNP\"\n    ], \n    \"subconscious\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Praisegod\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"crap\": [\n        \"NN\", \n        \"UH\"\n    ], \n    \"uptrend\": [\n        \"NN\"\n    ], \n    \"Polsky\": [\n        \"NNP\"\n    ], \n    \"constrains\": [\n        \"VBZ\"\n    ], \n    \"megaton\": [\n        \"NN\"\n    ], \n    \"goods\": [\n        \"NNS\"\n    ], \n    \"Bart\": [\n        \"NNP\"\n    ], \n    \"juste\": [\n        \"FW\"\n    ], \n    \"constraint\": [\n        \"NN\"\n    ], \n    \"goody\": [\n        \"UH\"\n    ], \n    \"oatmeal\": [\n        \"NN\"\n    ], \n    \"Linking\": [\n        \"VBG\"\n    ], \n    \"Bare\": [\n        \"JJ\"\n    ], \n    \"Beauclerk\": [\n        \"NNP\"\n    ], \n    \"Bari\": [\n        \"NNP\"\n    ], \n    \"Leni\": [\n        \"NNP\"\n    ], \n    \"Barn\": [\n        \"NNP\"\n    ], \n    \"Merksamer\": [\n        \"NNP\"\n    ], \n    \"Cantwell\": [\n        \"NNP\"\n    ], \n    \"Meltnomah\": [\n        \"NNP\"\n    ], \n    \"commanding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"nonperformers\": [\n        \"NNS\"\n    ], \n    \"Lattimer\": [\n        \"NNP\"\n    ], \n    \"Millennium\": [\n        \"NN\"\n    ], \n    \"buffetting\": [\n        \"NN\"\n    ], \n    \"remembrance\": [\n        \"NN\"\n    ], \n    \"adequacy\": [\n        \"NN\"\n    ], \n    \"pathologic\": [\n        \"JJ\"\n    ], \n    \"Hermitage\": [\n        \"NNP\"\n    ], \n    \"pharmaceuticals\": [\n        \"NNS\"\n    ], \n    \"Departures\": [\n        \"NNP\"\n    ], \n    \"HOPES\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"glow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Sens.\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"opponent\": [\n        \"NN\"\n    ], \n    \"groomsmen\": [\n        \"NNS\"\n    ], \n    \"V-22\": [\n        \"NNP\"\n    ], \n    \"frenzied\": [\n        \"JJ\"\n    ], \n    \"pounded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Watergate\": [\n        \"NNP\"\n    ], \n    \"anti-dumping\": [\n        \"JJ\"\n    ], \n    \"impure\": [\n        \"JJ\"\n    ], \n    \"Shock\": [\n        \"NN\"\n    ], \n    \"gauss\": [\n        \"NN\"\n    ], \n    \"Collegiate\": [\n        \"NNP\"\n    ], \n    \"crumminess\": [\n        \"NN\"\n    ], \n    \"boys\": [\n        \"NNS\"\n    ], \n    \"sideshow\": [\n        \"NN\"\n    ], \n    \"cram\": [\n        \"JJ\"\n    ], \n    \"Terrell\": [\n        \"NNP\"\n    ], \n    \"cathedra\": [\n        \"FW\"\n    ], \n    \"saddlebags\": [\n        \"NNS\"\n    ], \n    \"Mattathias\": [\n        \"NNP\"\n    ], \n    \"billion-peso\": [\n        \"JJ\"\n    ], \n    \"Kurabo\": [\n        \"NNP\"\n    ], \n    \"Toyobo\": [\n        \"NNP\"\n    ], \n    \"cookie-and-cracker\": [\n        \"JJ\"\n    ], \n    \"Theaters\": [\n        \"NNS\"\n    ], \n    \"Books\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"exploration\": [\n        \"NN\"\n    ], \n    \"aversion\": [\n        \"NN\"\n    ], \n    \"jumbo\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"drinking-water\": [\n        \"NN\"\n    ], \n    \"precipitated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Colgate\": [\n        \"NNP\"\n    ], \n    \"widowers\": [\n        \"NNS\"\n    ], \n    \"geese\": [\n        \"NNS\"\n    ], \n    \"prevented\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"mealynosed\": [\n        \"JJ\"\n    ], \n    \"singly\": [\n        \"RB\"\n    ], \n    \"Terminal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"single\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Sprinkled\": [\n        \"VBN\"\n    ], \n    \"necks\": [\n        \"NNS\"\n    ], \n    \"well-house\": [\n        \"JJ\"\n    ], \n    \"triglycerides\": [\n        \"NNS\"\n    ], \n    \"chance\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"gametes\": [\n        \"NNS\"\n    ], \n    \"Mar\": [\n        \"NNP\"\n    ], \n    \"Manor\": [\n        \"NNP\"\n    ], \n    \"Manos\": [\n        \"NNP\"\n    ], \n    \"Berton\": [\n        \"NNP\"\n    ], \n    \"Max\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cohesive\": [\n        \"JJ\"\n    ], \n    \"Oh-Hyun\": [\n        \"NNP\"\n    ], \n    \"excuses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mobcaps\": [\n        \"NNS\"\n    ], \n    \"Mae\": [\n        \"NNP\"\n    ], \n    \"Mad\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Mag\": [\n        \"NNP\"\n    ], \n    \"Mai\": [\n        \"NNP\"\n    ], \n    \"assassinate\": [\n        \"VB\"\n    ], \n    \"Reinstatement\": [\n        \"NN\"\n    ], \n    \"Mal\": [\n        \"NNP\"\n    ], \n    \"Achievement\": [\n        \"NNP\"\n    ], \n    \"Man\": [\n        \"NN\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"brushing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Rube\": [\n        \"NNP\"\n    ], \n    \"ultra-modern\": [\n        \"JJ\"\n    ], \n    \"importunities\": [\n        \"NNS\"\n    ], \n    \"Casa\": [\n        \"NNP\"\n    ], \n    \"Carried\": [\n        \"VBN\"\n    ], \n    \"Asia\\\\\": [\n        \"JJ\"\n    ], \n    \"advanced-materials\": [\n        \"JJ\"\n    ], \n    \"Gaieties\": [\n        \"NNPS\"\n    ], \n    \"Cash\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cask\": [\n        \"NNP\"\n    ], \n    \"prepared\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"miscarried\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Cast\": [\n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Nigger\": [\n        \"NN\"\n    ], \n    \"Carrier\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cass\": [\n        \"NNP\"\n    ], \n    \"prepares\": [\n        \"VBZ\"\n    ], \n    \"stoppages\": [\n        \"NNS\"\n    ], \n    \"freeways\": [\n        \"NNS\"\n    ], \n    \"rallied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cross-party\": [\n        \"JJ\"\n    ], \n    \"policewoman\": [\n        \"NN\"\n    ], \n    \"Kotman\": [\n        \"NNP\"\n    ], \n    \"Elkin\": [\n        \"NNP\"\n    ], \n    \"m.p.h.\": [\n        \"NN\"\n    ], \n    \"Tunisia\": [\n        \"NNP\"\n    ], \n    \"horizontal-restraints\": [\n        \"NNS\"\n    ], \n    \"speculations\": [\n        \"NNS\"\n    ], \n    \"Its\": [\n        \"PRP$\", \n        \"NNP\"\n    ], \n    \"dispassionate\": [\n        \"JJ\"\n    ], \n    \"competitveness\": [\n        \"NN\"\n    ], \n    \"Leica\": [\n        \"NNP\"\n    ], \n    \"bergs\": [\n        \"NNS\"\n    ], \n    \"Asian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"rallies\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"enrichment\": [\n        \"NN\"\n    ], \n    \"initiating\": [\n        \"VBG\"\n    ], \n    \"potboiler\": [\n        \"NN\"\n    ], \n    \"competition-enhancers\": [\n        \"NNS\"\n    ], \n    \"arkylbenzene\": [\n        \"NN\"\n    ], \n    \"Sterlings\": [\n        \"NNPS\"\n    ], \n    \"commoner\": [\n        \"JJR\"\n    ], \n    \"Y.M.C.A.\": [\n        \"NNP\"\n    ], \n    \"fecund\": [\n        \"JJ\"\n    ], \n    \"ozone-forming\": [\n        \"JJ\"\n    ], \n    \"Delegations\": [\n        \"NNS\"\n    ], \n    \"unfaithful\": [\n        \"JJ\"\n    ], \n    \"Yvon\": [\n        \"NNP\"\n    ], \n    \"Drifting\": [\n        \"VBG\"\n    ], \n    \"Generales\": [\n        \"NNP\"\n    ], \n    \"monolithically\": [\n        \"RB\"\n    ], \n    \"Camaros\": [\n        \"NNS\"\n    ], \n    \"helps\": [\n        \"VBZ\", \n        \"VBP\", \n        \"NNS\"\n    ], \n    \"Aborted\": [\n        \"JJ\"\n    ], \n    \"pianistic\": [\n        \"JJ\"\n    ], \n    \"anti-shoplifting\": [\n        \"JJ\"\n    ], \n    \"Seduction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"economic-policy\": [\n        \"NN\"\n    ], \n    \"Region\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rhyme\": [\n        \"NN\"\n    ], \n    \"agitating\": [\n        \"VBG\"\n    ], \n    \"huddled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"PrimeTime\": [\n        \"NNP\"\n    ], \n    \"micelles\": [\n        \"NNS\"\n    ], \n    \"huddles\": [\n        \"NNS\"\n    ], \n    \"Mussolinis\": [\n        \"NNPS\"\n    ], \n    \"slave-owners\": [\n        \"NNS\"\n    ], \n    \"Folcroft\": [\n        \"NNP\"\n    ], \n    \"non-Jew\": [\n        \"NN\"\n    ], \n    \"aromatick\": [\n        \"JJ\"\n    ], \n    \"second-by-second\": [\n        \"JJ\"\n    ], \n    \"False\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"tubs\": [\n        \"NNS\"\n    ], \n    \"prototypes\": [\n        \"NNS\"\n    ], \n    \"married\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"prototyped\": [\n        \"VBN\"\n    ], \n    \"investor-owned\": [\n        \"JJ\"\n    ], \n    \"Griffith\": [\n        \"NNP\"\n    ], \n    \"sewage\": [\n        \"NN\"\n    ], \n    \"sun-drenched\": [\n        \"JJ\"\n    ], \n    \"Vehicle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sulfide\": [\n        \"NN\"\n    ], \n    \"synergism\": [\n        \"NN\"\n    ], \n    \"Dauphin\": [\n        \"NNP\"\n    ], \n    \"giblet\": [\n        \"NN\"\n    ], \n    \"Alemagna\": [\n        \"NNP\"\n    ], \n    \"under-developed\": [\n        \"JJ\"\n    ], \n    \"restates\": [\n        \"VBZ\"\n    ], \n    \"clean-cut\": [\n        \"JJ\"\n    ], \n    \"Sanga\": [\n        \"NNP\"\n    ], \n    \"Ory\": [\n        \"NNP\"\n    ], \n    \"discount-brokerage\": [\n        \"NN\"\n    ], \n    \"anti-virus\": [\n        \"JJ\"\n    ], \n    \"Orr\": [\n        \"NNP\"\n    ], \n    \"Admarketing\": [\n        \"NNP\"\n    ], \n    \"J.V.\": [\n        \"NNP\"\n    ], \n    \"crossed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ord\": [\n        \"NNP\"\n    ], \n    \"Ore\": [\n        \"NNP\"\n    ], \n    \"exercise\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Marty\": [\n        \"NNP\"\n    ], \n    \"misdeeds\": [\n        \"NNS\"\n    ], \n    \"personification\": [\n        \"NN\"\n    ], \n    \"exchange\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"leveraging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pomaded\": [\n        \"VBN\"\n    ], \n    \"nimbly\": [\n        \"RB\"\n    ], \n    \"jointly\": [\n        \"RB\"\n    ], \n    \"outlying\": [\n        \"JJ\"\n    ], \n    \"nimble\": [\n        \"JJ\"\n    ], \n    \"objects\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"HOUSTON-CALGARY\": [\n        \"NNP\"\n    ], \n    \"begonia\": [\n        \"NN\"\n    ], \n    \"implicit\": [\n        \"JJ\"\n    ], \n    \"Boyer\": [\n        \"NNP\"\n    ], \n    \"design\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Chinese\": [\n        \"JJ\", \n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"numbness\": [\n        \"NN\"\n    ], \n    \"many-faced\": [\n        \"JJ\"\n    ], \n    \"paperboard\": [\n        \"NN\"\n    ], \n    \"Gantos\": [\n        \"NNP\"\n    ], \n    \"next-door\": [\n        \"JJ\"\n    ], \n    \"non-college\": [\n        \"JJ\"\n    ], \n    \"Ishtar\": [\n        \"NNP\"\n    ], \n    \"weekday\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"existent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"courting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"O.G.\": [\n        \"NNP\"\n    ], \n    \"lummox\": [\n        \"NN\"\n    ], \n    \"formulated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Passive\": [\n        \"NNP\"\n    ], \n    \"State-capitol\": [\n        \"NN\"\n    ], \n    \"reassignments\": [\n        \"NNS\"\n    ], \n    \"findings.\": [\n        \"NNS\"\n    ], \n    \"formulates\": [\n        \"VBZ\"\n    ], \n    \"privately\": [\n        \"RB\"\n    ], \n    \"resales\": [\n        \"NNS\"\n    ], \n    \"sewers\": [\n        \"NNS\"\n    ], \n    \"festivals\": [\n        \"NNS\"\n    ], \n    \"Ferdinando\": [\n        \"NNP\"\n    ], \n    \"gateway\": [\n        \"NN\"\n    ], \n    \"Y.S.\": [\n        \"NNP\"\n    ], \n    \"menarches\": [\n        \"NNS\"\n    ], \n    \"Bynoe\": [\n        \"NNP\"\n    ], \n    \"bested\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nauseated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"than...\": [\n        \":\"\n    ], \n    \"Forty-seven\": [\n        \"JJ\"\n    ], \n    \"wind-driven\": [\n        \"JJ\"\n    ], \n    \"Rabinowitz\": [\n        \"NNP\"\n    ], \n    \"bestes\": [\n        \"NNS\"\n    ], \n    \"Iran\\\\\": [\n        \"NNP\"\n    ], \n    \"Seven-Eleven\": [\n        \"NNP\"\n    ], \n    \"upcoming\": [\n        \"JJ\"\n    ], \n    \"endurable\": [\n        \"JJ\"\n    ], \n    \"dupes\": [\n        \"VBZ\"\n    ], \n    \"capitalizing\": [\n        \"VBG\"\n    ], \n    \"apprenticed\": [\n        \"VBN\"\n    ], \n    \"enviously\": [\n        \"RB\"\n    ], \n    \"unforgiving\": [\n        \"JJ\"\n    ], \n    \"duped\": [\n        \"VBN\"\n    ], \n    \"Lambda\": [\n        \"NNP\"\n    ], \n    \"atone\": [\n        \"VB\"\n    ], \n    \"Kazuo\": [\n        \"NNP\"\n    ], \n    \"foreign-exchange-rate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ace\": [\n        \"NN\"\n    ], \n    \"f\": [\n        \"NN\"\n    ], \n    \"scripture\": [\n        \"NN\"\n    ], \n    \"Frame\": [\n        \"NN\"\n    ], \n    \"misfired\": [\n        \"VBN\"\n    ], \n    \"Nadeau\": [\n        \"NNP\"\n    ], \n    \"Comtes\": [\n        \"NNP\"\n    ], \n    \"Icterus\": [\n        \"FW\"\n    ], \n    \"soon-to-be\": [\n        \"JJ\"\n    ], \n    \"state-court\": [\n        \"NN\"\n    ], \n    \"reserved\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Mobilization\": [\n        \"NNP\"\n    ], \n    \"Fenwick\": [\n        \"NNP\"\n    ], \n    \"Regent\": [\n        \"NNP\"\n    ], \n    \"P.I.\": [\n        \"NN\"\n    ], \n    \"exclaims\": [\n        \"VBZ\"\n    ], \n    \"prize-fight\": [\n        \"JJ\"\n    ], \n    \"MITI\": [\n        \"NNP\"\n    ], \n    \"built-detergent\": [\n        \"JJ\"\n    ], \n    \"Phonemes\": [\n        \"NNS\"\n    ], \n    \"magnificently\": [\n        \"RB\"\n    ], \n    \"isopleths\": [\n        \"NNS\"\n    ], \n    \"curving\": [\n        \"VBG\"\n    ], \n    \"Pfohl\": [\n        \"NNP\"\n    ], \n    \"democracy\": [\n        \"NN\"\n    ], \n    \"awkwardness\": [\n        \"NN\"\n    ], \n    \"timetables\": [\n        \"NNS\"\n    ], \n    \"boxing\": [\n        \"NN\"\n    ], \n    \"grimaces\": [\n        \"NNS\"\n    ], \n    \"sketchiest\": [\n        \"JJS\"\n    ], \n    \"First-section\": [\n        \"JJ\"\n    ], \n    \"Devesa\": [\n        \"NNP\"\n    ], \n    \"revs\": [\n        \"VBZ\"\n    ], \n    \"PacifiCare\": [\n        \"NNP\"\n    ], \n    \"Tutu\": [\n        \"NNP\"\n    ], \n    \"Chiefly\": [\n        \"RB\"\n    ], \n    \"masterpieces\": [\n        \"NNS\"\n    ], \n    \"pre-1917\": [\n        \"JJ\"\n    ], \n    \"twelve-year\": [\n        \"JJ\"\n    ], \n    \"Knightes\": [\n        \"NNP\"\n    ], \n    \"legality\": [\n        \"NN\"\n    ], \n    \"bluff\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"terrier\": [\n        \"NN\"\n    ], \n    \"trifling\": [\n        \"JJ\"\n    ], \n    \"ambiguous\": [\n        \"JJ\"\n    ], \n    \"counterbalanced\": [\n        \"VBN\"\n    ], \n    \"Dili\": [\n        \"NNP\"\n    ], \n    \"confiscatory\": [\n        \"JJ\"\n    ], \n    \"bind\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"bond-financed\": [\n        \"JJ\"\n    ], \n    \"Highlander\": [\n        \"NNP\"\n    ], \n    \"Oshinsky\": [\n        \"NNP\"\n    ], \n    \"test-drive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"poaches\": [\n        \"VBZ\"\n    ], \n    \"re-open\": [\n        \"VB\"\n    ], \n    \"oil-finding\": [\n        \"JJ\"\n    ], \n    \"bins\": [\n        \"NNS\"\n    ], \n    \"Capable\": [\n        \"JJ\"\n    ], \n    \"institutional\": [\n        \"JJ\"\n    ], \n    \"Millis\": [\n        \"NNP\"\n    ], \n    \"widowed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Cecelia\": [\n        \"NNP\"\n    ], \n    \"kidney-stone\": [\n        \"NN\"\n    ], \n    \"death-penalty\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"agricultural\": [\n        \"JJ\"\n    ], \n    \"Millie\": [\n        \"NNP\"\n    ], \n    \"delineating\": [\n        \"VBG\"\n    ], \n    \"Swiss-based\": [\n        \"JJ\"\n    ], \n    \"McLoughlin\": [\n        \"NNP\"\n    ], \n    \"decorum\": [\n        \"NN\"\n    ], \n    \"Benefactor\": [\n        \"NNP\"\n    ], \n    \"Negro\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Bolovens\": [\n        \"NNP\"\n    ], \n    \"Pressure\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"GALAXY\": [\n        \"NN\"\n    ], \n    \"cardholder\": [\n        \"NN\"\n    ], \n    \"machinations\": [\n        \"NNS\"\n    ], \n    \"extradition\": [\n        \"NN\"\n    ], \n    \"Bardell\": [\n        \"NNP\"\n    ], \n    \"outbid\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"impervious\": [\n        \"JJ\"\n    ], \n    \"Huggies\": [\n        \"NNPS\"\n    ], \n    \"Bulge\": [\n        \"NNP\"\n    ], \n    \"frontiers\": [\n        \"NNS\"\n    ], \n    \"self-satisfaction\": [\n        \"NN\"\n    ], \n    \"landau\": [\n        \"NN\"\n    ], \n    \"seven-iron\": [\n        \"NN\"\n    ], \n    \"Zwelakhe\": [\n        \"NNP\"\n    ], \n    \"Vancouver-based\": [\n        \"JJ\"\n    ], \n    \"fast-selling\": [\n        \"JJ\"\n    ], \n    \"Seagull\": [\n        \"NNP\"\n    ], \n    \"pre-bankruptcy\": [\n        \"NN\"\n    ], \n    \"Daybreak\": [\n        \"NNP\"\n    ], \n    \"thrill\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Wuer\": [\n        \"NNP\"\n    ], \n    \"Aureomycin\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"blazing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"SUNDSTRAND\": [\n        \"NNP\"\n    ], \n    \"Viper\": [\n        \"NNP\"\n    ], \n    \"ROSS\": [\n        \"NNP\"\n    ], \n    \"Fonz\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interlayer\": [\n        \"NN\"\n    ], \n    \"Tewksbury\": [\n        \"NNP\"\n    ], \n    \"junkie\": [\n        \"NN\"\n    ], \n    \"casuistry\": [\n        \"NN\"\n    ], \n    \"Chaffey\": [\n        \"NNP\"\n    ], \n    \"salesman\": [\n        \"NN\"\n    ], \n    \"unoriginal\": [\n        \"JJ\"\n    ], \n    \"Scotia\": [\n        \"NNP\"\n    ], \n    \"Molvar\": [\n        \"NNP\"\n    ], \n    \"relinquishing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Chestman\": [\n        \"NNP\"\n    ], \n    \"milk-chocolate\": [\n        \"JJ\"\n    ], \n    \"Hallwood\": [\n        \"NNP\"\n    ], \n    \"Hirzy\": [\n        \"NNP\"\n    ], \n    \"deras\": [\n        \"FW\"\n    ], \n    \"smog\": [\n        \"NN\"\n    ], \n    \"technically\": [\n        \"RB\"\n    ], \n    \"Vallfart\": [\n        \"NNP\"\n    ], \n    \"Douce\": [\n        \"NNP\"\n    ], \n    \"roughened\": [\n        \"VBN\"\n    ], \n    \"Judicial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ashcroft\": [\n        \"NNP\"\n    ], \n    \"ill-prepared\": [\n        \"JJ\"\n    ], \n    \"pony-tailed\": [\n        \"JJ\"\n    ], \n    \"Senator\": [\n        \"NNP\"\n    ], \n    \"semi-independent\": [\n        \"JJ\"\n    ], \n    \"afterward\": [\n        \"RB\"\n    ], \n    \"Reefs\": [\n        \"NNS\"\n    ], \n    \"interaction\": [\n        \"NN\"\n    ], \n    \"Morrell\": [\n        \"NNP\"\n    ], \n    \"Nikkei\": [\n        \"NNP\"\n    ], \n    \"orations\": [\n        \"NNS\"\n    ], \n    \"Outokumpu\": [\n        \"NNP\"\n    ], \n    \"Pleasantville\": [\n        \"NNP\"\n    ], \n    \"Welton\": [\n        \"NNP\"\n    ], \n    \"Coincident\": [\n        \"JJ\"\n    ], \n    \"Hermione\": [\n        \"NNP\"\n    ], \n    \"scalding\": [\n        \"VBG\"\n    ], \n    \"fast-spreading\": [\n        \"JJ\"\n    ], \n    \"sprawled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"tributes\": [\n        \"NNS\"\n    ], \n    \"strategic\": [\n        \"JJ\"\n    ], \n    \"microscopes\": [\n        \"NNS\"\n    ], \n    \"Winfield\": [\n        \"NNP\"\n    ], \n    \"Solar-powered\": [\n        \"JJ\"\n    ], \n    \"ESTABLISHMENT\": [\n        \"NN\"\n    ], \n    \"sockets\": [\n        \"NNS\"\n    ], \n    \"out-group\": [\n        \"NN\"\n    ], \n    \"multilayered\": [\n        \"JJ\"\n    ], \n    \"ancient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Excalibur\": [\n        \"NNP\"\n    ], \n    \"spurting\": [\n        \"VBG\"\n    ], \n    \"Stoppard\": [\n        \"NNP\"\n    ], \n    \"anti-Christian\": [\n        \"JJ\"\n    ], \n    \"pedigreed\": [\n        \"VBN\"\n    ], \n    \"unspecified\": [\n        \"JJ\"\n    ], \n    \"Coast\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Wackenhut\": [\n        \"NNP\"\n    ], \n    \"Joey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Vargas\": [\n        \"NNP\"\n    ], \n    \"cabin\": [\n        \"NN\"\n    ], \n    \"plantings\": [\n        \"NNS\"\n    ], \n    \"free-thinkers\": [\n        \"NNS\"\n    ], \n    \"Javier\": [\n        \"NNP\"\n    ], \n    \"MIServer\": [\n        \"NNP\"\n    ], \n    \"Rapunzel\": [\n        \"NNP\"\n    ], \n    \"Harmon\": [\n        \"NNP\"\n    ], \n    \"Legg\": [\n        \"NNP\"\n    ], \n    \"MacGyver\": [\n        \"NNP\"\n    ], \n    \"bindle\": [\n        \"NN\"\n    ], \n    \"sub-underwriting\": [\n        \"VBG\"\n    ], \n    \"bullet-riddled\": [\n        \"JJ\"\n    ], \n    \"home-computer\": [\n        \"NN\"\n    ], \n    \"flashed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"humped\": [\n        \"NN\"\n    ], \n    \"McAuliffe\": [\n        \"NNP\"\n    ], \n    \"mid-conversation\": [\n        \"NN\"\n    ], \n    \"xenophobic\": [\n        \"JJ\"\n    ], \n    \"flasher\": [\n        \"NN\"\n    ], \n    \"flashes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"abolished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"athleticism\": [\n        \"NN\"\n    ], \n    \"imaginative\": [\n        \"JJ\"\n    ], \n    \"neutralize\": [\n        \"VB\"\n    ], \n    \"underpricing\": [\n        \"VBG\"\n    ], \n    \"Mintel\": [\n        \"NNP\"\n    ], \n    \"Nonperformers\": [\n        \"NNS\"\n    ], \n    \"Machine\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Goodman\": [\n        \"NNP\"\n    ], \n    \"Minter\": [\n        \"NNP\"\n    ], \n    \"habitable\": [\n        \"JJ\"\n    ], \n    \"Gladden\": [\n        \"NNP\"\n    ], \n    \"Sphinx\": [\n        \"NNP\"\n    ], \n    \"apparently\": [\n        \"RB\"\n    ], \n    \"acceleration\": [\n        \"NN\"\n    ], \n    \"Oil\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"newfangled\": [\n        \"JJ\"\n    ], \n    \"mio\": [\n        \"FW\"\n    ], \n    \"min\": [\n        \"NN\"\n    ], \n    \"skillful\": [\n        \"JJ\"\n    ], \n    \"auctioning\": [\n        \"NN\"\n    ], \n    \"mid\": [\n        \"JJ\"\n    ], \n    \"royalty-free\": [\n        \"JJ\"\n    ], \n    \"mix\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Stidger\": [\n        \"NNP\"\n    ], \n    \"shipyards\": [\n        \"NNS\"\n    ], \n    \"Knapp\": [\n        \"NNP\"\n    ], \n    \"autocratic\": [\n        \"JJ\"\n    ], \n    \"Siberia\": [\n        \"NNP\"\n    ], \n    \"Hanoi-backed\": [\n        \"JJ\"\n    ], \n    \"Robbie\": [\n        \"NNP\"\n    ], \n    \"computer-dependent\": [\n        \"JJ\"\n    ], \n    \"disappointments\": [\n        \"NNS\"\n    ], \n    \"oilseed\": [\n        \"NN\"\n    ], \n    \"Pharmacal\": [\n        \"NNP\"\n    ], \n    \"Printing\": [\n        \"NNP\"\n    ], \n    \"propagate\": [\n        \"VB\"\n    ], \n    \"Musically\": [\n        \"RB\"\n    ], \n    \"Moertel\": [\n        \"NNP\"\n    ], \n    \"sedan\": [\n        \"NN\"\n    ], \n    \"sally\": [\n        \"VB\"\n    ], \n    \"Kiyotaka\": [\n        \"NNP\"\n    ], \n    \"Trustco\": [\n        \"NNP\"\n    ], \n    \"Dukakis\": [\n        \"NNP\"\n    ], \n    \"request\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"crediting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"graphs\": [\n        \"NNS\"\n    ], \n    \"Comrades\": [\n        \"NNPS\"\n    ], \n    \"artificially\": [\n        \"RB\"\n    ], \n    \"rendezvous\": [\n        \"NN\"\n    ], \n    \"near-market\": [\n        \"JJ\"\n    ], \n    \"skinny\": [\n        \"JJ\"\n    ], \n    \"INTEL\": [\n        \"NNP\"\n    ], \n    \"Masssachusetts\": [\n        \"NNP\"\n    ], \n    \"Invitation\": [\n        \"NNP\"\n    ], \n    \"Cordell\": [\n        \"NNP\"\n    ], \n    \"homeowner\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"cutting-and-pasting\": [\n        \"NN\"\n    ], \n    \"new-product\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sidetrack\": [\n        \"VB\"\n    ], \n    \"interpeople\": [\n        \"JJ\"\n    ], \n    \"paternal\": [\n        \"JJ\"\n    ], \n    \"gasping\": [\n        \"VBG\"\n    ], \n    \"Worth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"staff\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Hengeler\": [\n        \"NNP\"\n    ], \n    \"grabbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pipgras\": [\n        \"NNP\"\n    ], \n    \"controls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"coloreds\": [\n        \"NNS\"\n    ], \n    \"Rushall\": [\n        \"NNP\"\n    ], \n    \"York\": [\n        \"NNP\"\n    ], \n    \"fumbled\": [\n        \"VBD\"\n    ], \n    \"regional\": [\n        \"JJ\"\n    ], \n    \"fire-engine\": [\n        \"JJ\"\n    ], \n    \"Freshbake\": [\n        \"NNP\"\n    ], \n    \"inferior\": [\n        \"JJ\"\n    ], \n    \"re-assumed\": [\n        \"VBN\"\n    ], \n    \"Homes\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"unsustainable\": [\n        \"JJ\"\n    ], \n    \"polyurethane\": [\n        \"NN\"\n    ], \n    \"Marubeni\": [\n        \"NNP\"\n    ], \n    \"weaker-performing\": [\n        \"JJ\"\n    ], \n    \"byproducts\": [\n        \"NNS\"\n    ], \n    \"swiftest\": [\n        \"JJS\"\n    ], \n    \"Malpass\": [\n        \"NNP\"\n    ], \n    \"Sterbas\": [\n        \"NNPS\"\n    ], \n    \"kilts\": [\n        \"NNS\"\n    ], \n    \"Laurents\": [\n        \"NNP\"\n    ], \n    \"command-and-control\": [\n        \"JJ\"\n    ], \n    \"Peebles\": [\n        \"NNP\"\n    ], \n    \"Geocryology\": [\n        \"NNP\"\n    ], \n    \"filleted\": [\n        \"VBN\"\n    ], \n    \"Christer\": [\n        \"NNP\"\n    ], \n    \"monochromatic\": [\n        \"JJ\"\n    ], \n    \"enhances\": [\n        \"VBZ\"\n    ], \n    \"constructing\": [\n        \"VBG\"\n    ], \n    \"condominiums\": [\n        \"NNS\"\n    ], \n    \"embezzle\": [\n        \"VB\"\n    ], \n    \"Petro\": [\n        \"NNP\"\n    ], \n    \"enhanced\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"psychical\": [\n        \"JJ\"\n    ], \n    \"inward-looking\": [\n        \"JJ\"\n    ], \n    \"awaits\": [\n        \"VBZ\"\n    ], \n    \"airline-interior\": [\n        \"JJ\"\n    ], \n    \"uncollectable\": [\n        \"JJ\"\n    ], \n    \"takeover-defense\": [\n        \"JJ\"\n    ], \n    \"school-age\": [\n        \"JJ\"\n    ], \n    \"Nakoma\": [\n        \"NNP\"\n    ], \n    \"rapers\": [\n        \"NNS\"\n    ], \n    \"Olaf\": [\n        \"NNP\"\n    ], \n    \"Yates\": [\n        \"NNP\"\n    ], \n    \"Daffynition\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"consentual\": [\n        \"JJ\"\n    ], \n    \"Lamarche\": [\n        \"NNP\"\n    ], \n    \"Olav\": [\n        \"NNP\"\n    ], \n    \"firmness\": [\n        \"NN\"\n    ], \n    \"Charlemagne\": [\n        \"NNP\"\n    ], \n    \"aeromedical\": [\n        \"JJ\"\n    ], \n    \"Islands\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Olay\": [\n        \"NNP\"\n    ], \n    \"health-conscious\": [\n        \"JJ\"\n    ], \n    \"toothbrush\": [\n        \"NN\"\n    ], \n    \"exclaim\": [\n        \"VB\"\n    ], \n    \"joint-implants\": [\n        \"NNS\"\n    ], \n    \"Synchronized\": [\n        \"VBN\"\n    ], \n    \"Procurement\": [\n        \"NN\"\n    ], \n    \"TechDesign\": [\n        \"NNP\"\n    ], \n    \"taking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Woodwell\": [\n        \"NNP\"\n    ], \n    \"Conroy\": [\n        \"NNP\"\n    ], \n    \"devour\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"afraid\": [\n        \"JJ\"\n    ], \n    \"R/NNP.I.\": [\n        \"NN\"\n    ], \n    \"inflammatory\": [\n        \"JJ\"\n    ], \n    \"Marinvest\": [\n        \"NNP\"\n    ], \n    \"basins\": [\n        \"NNS\"\n    ], \n    \"backers\": [\n        \"NNS\"\n    ], \n    \"Maersk\": [\n        \"NNP\"\n    ], \n    \"keine\": [\n        \"FW\"\n    ], \n    \"basing\": [\n        \"VBG\"\n    ], \n    \"Rifkin\": [\n        \"NNP\"\n    ], \n    \"technocratic\": [\n        \"JJ\"\n    ], \n    \"Dunde\": [\n        \"NNP\"\n    ], \n    \"three-inch-wide\": [\n        \"JJ\"\n    ], \n    \"Hoelterhoff\": [\n        \"NNP\"\n    ], \n    \"restless\": [\n        \"JJ\"\n    ], \n    \"non-Manpower\": [\n        \"JJ\"\n    ], \n    \"highball\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"elects\": [\n        \"VBZ\"\n    ], \n    \"Bulgarians\": [\n        \"NNPS\"\n    ], \n    \"spellbound\": [\n        \"VBN\"\n    ], \n    \"Periodically\": [\n        \"RB\"\n    ], \n    \"divvied\": [\n        \"VBN\"\n    ], \n    \"Blackjack\": [\n        \"NNP\"\n    ], \n    \"adapting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"finisher\": [\n        \"NN\"\n    ], \n    \"self-locking\": [\n        \"JJ\"\n    ], \n    \"stationed\": [\n        \"VBN\"\n    ], \n    \"right-angle\": [\n        \"NN\"\n    ], \n    \"Magee\": [\n        \"NNP\"\n    ], \n    \"Maged\": [\n        \"NNP\"\n    ], \n    \"Betrayed\": [\n        \"NNP\"\n    ], \n    \"finished\": [\n        \"VBD\", \n        \"JJ\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"Ethane\": [\n        \"NN\"\n    ], \n    \"sausages\": [\n        \"NNS\"\n    ], \n    \"DIRECTORY\": [\n        \"NN\"\n    ], \n    \"Mager\": [\n        \"NNP\"\n    ], \n    \"an\": [\n        \"DT\", \n        \"CC\", \n        \"JJ\", \n        \"NNP\", \n        \",\"\n    ], \n    \"Low-paying\": [\n        \"JJ\"\n    ], \n    \"multi\": [\n        \"NNS\"\n    ], \n    \"LBJ\": [\n        \"NNP\"\n    ], \n    \"well-administered\": [\n        \"JJ\"\n    ], \n    \"wellknown\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jurisdiction\": [\n        \"NNP\"\n    ], \n    \"smokeless\": [\n        \"JJ\"\n    ], \n    \"liquid-fuel\": [\n        \"NN\"\n    ], \n    \"deloused\": [\n        \"VBN\"\n    ], \n    \"energy-producing\": [\n        \"JJ\"\n    ], \n    \"Melton\": [\n        \"NNP\"\n    ], \n    \"hampering\": [\n        \"VBG\"\n    ], \n    \"deadness\": [\n        \"NN\"\n    ], \n    \"kinfolk\": [\n        \"NNS\"\n    ], \n    \"aw\": [\n        \"UH\"\n    ], \n    \"manually\": [\n        \"RB\"\n    ], \n    \"almost\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"dissent\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"micrometer\": [\n        \"NN\"\n    ], \n    \"Imperial\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"pluck\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Yamanouchi\": [\n        \"NNP\"\n    ], \n    \"regression\": [\n        \"NN\"\n    ], \n    \"Bebop\": [\n        \"NNP\"\n    ], \n    \"incautiously\": [\n        \"RB\"\n    ], \n    \"drug-related\": [\n        \"JJ\"\n    ], \n    \"Stilts\": [\n        \"NNP\"\n    ], \n    \"SOS\": [\n        \"NNP\"\n    ], \n    \"Piggybacking\": [\n        \"VBG\"\n    ], \n    \"Heatwole\": [\n        \"NNP\"\n    ], \n    \"Glycerinated\": [\n        \"JJ\"\n    ], \n    \"Flatley\": [\n        \"NNP\"\n    ], \n    \"infer\": [\n        \"VB\"\n    ], \n    \"guises\": [\n        \"NNS\"\n    ], \n    \"Transitional\": [\n        \"JJ\"\n    ], \n    \"reporting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sacco\": [\n        \"NNP\"\n    ], \n    \"Malloy\": [\n        \"NNP\"\n    ], \n    \"grandstand\": [\n        \"NN\"\n    ], \n    \"Reflections\": [\n        \"NNP\"\n    ], \n    \"takers\": [\n        \"NNS\"\n    ], \n    \"sunburn\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Reichhart\": [\n        \"NNP\"\n    ], \n    \"dickered\": [\n        \"VBD\"\n    ], \n    \"numbered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bluesy\": [\n        \"JJ\"\n    ], \n    \"Beregevoy\": [\n        \"NNP\"\n    ], \n    \"Cowper\": [\n        \"NNP\"\n    ], \n    \"pickpocket\": [\n        \"NN\"\n    ], \n    \"bluest\": [\n        \"JJS\"\n    ], \n    \"Sequester\": [\n        \"NN\"\n    ], \n    \"McGlynn\": [\n        \"NNP\"\n    ], \n    \"Hornbeck\": [\n        \"NNP\"\n    ], \n    \"Washburn\": [\n        \"NNP\"\n    ], \n    \"muscle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"soviet\": [\n        \"JJ\"\n    ], \n    \"Montaigne\": [\n        \"NNP\"\n    ], \n    \"LICENSE\": [\n        \"NN\"\n    ], \n    \"ratify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"rebuffing\": [\n        \"VBG\"\n    ], \n    \"consumer-price\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"breezier\": [\n        \"JJR\"\n    ], \n    \"restively\": [\n        \"RB\"\n    ], \n    \"miasmal\": [\n        \"JJ\"\n    ], \n    \"givebacks\": [\n        \"NNS\"\n    ], \n    \"dissuaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Solaia\": [\n        \"NNP\"\n    ], \n    \"Gill\": [\n        \"NNP\"\n    ], \n    \"more-personal\": [\n        \"JJ\"\n    ], \n    \"ads\": [\n        \"NNS\"\n    ], \n    \"desperadoes\": [\n        \"NNS\"\n    ], \n    \"Danilo\": [\n        \"NNP\"\n    ], \n    \"mathematically\": [\n        \"RB\"\n    ], \n    \"add\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spirals\": [\n        \"NNS\"\n    ], \n    \"short-skirted\": [\n        \"JJ\"\n    ], \n    \"propositions\": [\n        \"NNS\"\n    ], \n    \"Smoldering\": [\n        \"VBG\"\n    ], \n    \"ado\": [\n        \"NN\"\n    ], \n    \"forays\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"match\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"unicorns\": [\n        \"NNS\"\n    ], \n    \"dimers\": [\n        \"NNS\"\n    ], \n    \"knee-length\": [\n        \"JJ\"\n    ], \n    \"molding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"thoughtlessly\": [\n        \"RB\"\n    ], \n    \"Offices\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Officer\": [\n        \"NNP\"\n    ], \n    \"Benazir\": [\n        \"NNP\"\n    ], \n    \"more-than-average\": [\n        \"RB\"\n    ], \n    \"Throws\": [\n        \"VBZ\"\n    ], \n    \"four-part\": [\n        \"JJ\"\n    ], \n    \"GENERIC-DRUG\": [\n        \"NN\"\n    ], \n    \"ozone\": [\n        \"NN\"\n    ], \n    \"Scarlet\": [\n        \"NNP\"\n    ], \n    \"honeycombed\": [\n        \"JJ\"\n    ], \n    \"positionsthat\": [\n        \"NN\"\n    ], \n    \"Gotlieb\": [\n        \"NNP\"\n    ], \n    \"accessible\": [\n        \"JJ\"\n    ], \n    \"Oceanic\": [\n        \"NNP\"\n    ], \n    \"Oceania\": [\n        \"NNP\"\n    ], \n    \"propel\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"horselike\": [\n        \"JJ\"\n    ], \n    \"perfectionism\": [\n        \"NN\"\n    ], \n    \"proper\": [\n        \"JJ\"\n    ], \n    \"imagnation\": [\n        \"NN\"\n    ], \n    \"Givens\": [\n        \"NNP\"\n    ], \n    \"Coulomb\": [\n        \"NNP\"\n    ], \n    \"Lafontant\": [\n        \"NNP\"\n    ], \n    \"rattlesnake\": [\n        \"NN\"\n    ], \n    \"Gerdes\": [\n        \"NNP\"\n    ], \n    \"masked\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"bustling\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"direct-sum\": [\n        \"NN\"\n    ], \n    \"ripped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"six-county\": [\n        \"JJ\"\n    ], \n    \"unprocurable\": [\n        \"JJ\"\n    ], \n    \"parentis\": [\n        \"FW\"\n    ], \n    \"pepper\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Prepulsid\": [\n        \"NN\"\n    ], \n    \"Yarrow\": [\n        \"NNP\"\n    ], \n    \"lessens\": [\n        \"VBZ\"\n    ], \n    \"Futures\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"stellar\": [\n        \"JJ\"\n    ], \n    \"unevenly\": [\n        \"RB\"\n    ], \n    \"Investment-Grade\": [\n        \"NNP\"\n    ], \n    \"Fakty\": [\n        \"NNP\"\n    ], \n    \"ground-launched\": [\n        \"JJ\"\n    ], \n    \"book-entry\": [\n        \"JJ\"\n    ], \n    \"Gunthrop-Warren\": [\n        \"NNP\"\n    ], \n    \"about\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"RP\", \n        \"RBR\", \n        \"IN|RB\"\n    ], \n    \"brooded\": [\n        \"VBD\"\n    ], \n    \"mastiff\": [\n        \"NN\"\n    ], \n    \"Bouquet\": [\n        \"NNP\"\n    ], \n    \"nationals\": [\n        \"NNS\"\n    ], \n    \"boy-manager\": [\n        \"NN\"\n    ], \n    \"Domtar\": [\n        \"NNP\"\n    ], \n    \"coachman\": [\n        \"NN\"\n    ], \n    \"VICTORIES\": [\n        \"NNS\"\n    ], \n    \"fleshy\": [\n        \"JJ\"\n    ], \n    \"unreleased\": [\n        \"JJ\"\n    ], \n    \"Salinger\": [\n        \"NNP\"\n    ], \n    \"Comedie\": [\n        \"NNP\"\n    ], \n    \"unwind\": [\n        \"VB\"\n    ], \n    \"Zhong\": [\n        \"NNP\"\n    ], \n    \"Nomia\": [\n        \"NNP\"\n    ], \n    \"functional\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unquestioningly\": [\n        \"RB\"\n    ], \n    \"Paternelle\": [\n        \"NNP\"\n    ], \n    \"boringly\": [\n        \"RB\"\n    ], \n    \"Vichy\": [\n        \"NNP\"\n    ], \n    \"gleaned\": [\n        \"VBN\"\n    ], \n    \"annee\": [\n        \"FW\"\n    ], \n    \"Sawhill\": [\n        \"NNP\"\n    ], \n    \"dizzying\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Yoon\": [\n        \"NNP\"\n    ], \n    \"stairwells\": [\n        \"NNS\"\n    ], \n    \"stainless\": [\n        \"JJ\"\n    ], \n    \"Single-color\": [\n        \"JJ\"\n    ], \n    \"contracts\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"damn-the-torpedoes\": [\n        \"JJ\"\n    ], \n    \"Vecchio\": [\n        \"NNP\"\n    ], \n    \"Adirondack\": [\n        \"NNP\"\n    ], \n    \"slang\": [\n        \"NN\"\n    ], \n    \"Ferron\": [\n        \"NNP\"\n    ], \n    \"Haying\": [\n        \"NN\"\n    ], \n    \"anti-androgens\": [\n        \"NNS\"\n    ], \n    \"rococo\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dieters\": [\n        \"NNS\"\n    ], \n    \"repeater\": [\n        \"NN\"\n    ], \n    \"chatting\": [\n        \"VBG\"\n    ], \n    \"Arabians\": [\n        \"NNPS\"\n    ], \n    \"Legislating\": [\n        \"VBG\"\n    ], \n    \"tilled\": [\n        \"JJ\"\n    ], \n    \"steadied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Unpaid\": [\n        \"JJ\"\n    ], \n    \"besmirching\": [\n        \"VBG\"\n    ], \n    \"vaguely-imagined\": [\n        \"JJ\"\n    ], \n    \"tiller\": [\n        \"NN\"\n    ], \n    \"multicolored\": [\n        \"JJ\"\n    ], \n    \"stratagems\": [\n        \"NNS\"\n    ], \n    \"Leasing\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"non-management\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Prisca\": [\n        \"NNP\"\n    ], \n    \"Kirin\": [\n        \"NNP\"\n    ], \n    \"hardware-store\": [\n        \"NN\"\n    ], \n    \"alliteration\": [\n        \"NN\"\n    ], \n    \"Mulrooney\": [\n        \"NNP\"\n    ], \n    \"Newbiggin\": [\n        \"NNP\"\n    ], \n    \"Harmony\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"skating\": [\n        \"VBG\"\n    ], \n    \"Caspita\": [\n        \"NNP\"\n    ], \n    \"RESIDENTIAL\": [\n        \"NNP\"\n    ], \n    \"topless\": [\n        \"JJ\"\n    ], \n    \"Bauhaus\": [\n        \"NNP\"\n    ], \n    \"Vegas-based\": [\n        \"JJ\"\n    ], \n    \"Witold\": [\n        \"NNP\"\n    ], \n    \"Mintz\": [\n        \"NNP\"\n    ], \n    \"DiFilippo\": [\n        \"NNP\"\n    ], \n    \"autism\": [\n        \"NN\"\n    ], \n    \"Mints\": [\n        \"NNS\"\n    ], \n    \"Conn.\": [\n        \"NNP\"\n    ], \n    \"commander-in-chief\": [\n        \"NN\"\n    ], \n    \"oaf\": [\n        \"NN\"\n    ], \n    \"Chai\": [\n        \"NNP\"\n    ], \n    \"oak\": [\n        \"NN\"\n    ], \n    \"Violent\": [\n        \"JJ\"\n    ], \n    \"oat\": [\n        \"NN\"\n    ], \n    \"overpopulation\": [\n        \"NN\"\n    ], \n    \"satirist\": [\n        \"NN\"\n    ], \n    \"Cronin\": [\n        \"NNP\"\n    ], \n    \"Xanadu\": [\n        \"NNP\"\n    ], \n    \"electrocardiograph\": [\n        \"NN\"\n    ], \n    \"Sainsbury\": [\n        \"NNP\"\n    ], \n    \"wallow\": [\n        \"VB\"\n    ], \n    \"Collingwood\": [\n        \"NNP\"\n    ], \n    \"wallop\": [\n        \"NN\"\n    ], \n    \"gloriously\": [\n        \"RB\"\n    ], \n    \"Diversify\": [\n        \"VB\"\n    ], \n    \"enterprises\": [\n        \"NNS\"\n    ], \n    \"goin\": [\n        \"VBG\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"ear-piercing\": [\n        \"JJ\"\n    ], \n    \"Wander\": [\n        \"VB\"\n    ], \n    \"entreat\": [\n        \"VB\"\n    ], \n    \"al-Assad\": [\n        \"NNP\"\n    ], \n    \"lorded\": [\n        \"VBD\"\n    ], \n    \"Cattlemen\": [\n        \"NNPS\"\n    ], \n    \"parole\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Techniques\": [\n        \"NNPS\"\n    ], \n    \"Leaf\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Lead\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Vaudois\": [\n        \"NNP\"\n    ], \n    \"traumas\": [\n        \"NNS\"\n    ], \n    \"Lean\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"suspenseful\": [\n        \"JJ\"\n    ], \n    \"hitch\": [\n        \"NN\"\n    ], \n    \"Lear\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"facilities\": [\n        \"NNS\"\n    ], \n    \"Leap\": [\n        \"NNP\"\n    ], \n    \"heelsthe\": [\n        \"DT\"\n    ], \n    \"Burgess\": [\n        \"NNP\"\n    ], \n    \"Ceartaine\": [\n        \"JJ\"\n    ], \n    \"zombie\": [\n        \"NN\"\n    ], \n    \"Hoover\": [\n        \"NNP\"\n    ], \n    \"cracker-box\": [\n        \"JJ\"\n    ], \n    \"violate\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Beltway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"crises\": [\n        \"NNS\"\n    ], \n    \"surfaceness\": [\n        \"NN\"\n    ], \n    \"snack-food\": [\n        \"NN\"\n    ], \n    \"agitator\": [\n        \"NN\"\n    ], \n    \"Knock\": [\n        \"VB\"\n    ], \n    \"under\": [\n        \"IN\", \n        \"JJ\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"honorific\": [\n        \"NN\"\n    ], \n    \"rightist\": [\n        \"JJ\"\n    ], \n    \"Mite\": [\n        \"NNP\"\n    ], \n    \"MAILINGS\": [\n        \"NNS\"\n    ], \n    \"Popeye\": [\n        \"NNP\"\n    ], \n    \"Mita\": [\n        \"NNP\"\n    ], \n    \"conjecture\": [\n        \"NN\"\n    ], \n    \"legislators\": [\n        \"NNS\"\n    ], \n    \"B-movie\": [\n        \"NN\"\n    ], \n    \"tampons\": [\n        \"NNS\"\n    ], \n    \"Krupp\": [\n        \"NNP\"\n    ], \n    \"Ollari\": [\n        \"NNP\"\n    ], \n    \"Chilly\": [\n        \"JJ\"\n    ], \n    \"jack\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Krupa\": [\n        \"NNP\"\n    ], \n    \"freethinkers\": [\n        \"NNS\"\n    ], \n    \"monkeys\": [\n        \"NNS\"\n    ], \n    \"Stones\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Stoner\": [\n        \"NNP\"\n    ], \n    \"Reupke\": [\n        \"NNP\"\n    ], \n    \"gas-pipeline\": [\n        \"JJ\"\n    ], \n    \"Gotaas-Larsen\": [\n        \"NNP\"\n    ], \n    \"remoteness\": [\n        \"NN\"\n    ], \n    \"W.G.\": [\n        \"NNP\"\n    ], \n    \"Europeans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Chiharu\": [\n        \"NNP\"\n    ], \n    \"bicycle\": [\n        \"NN\"\n    ], \n    \"faintest\": [\n        \"JJS\"\n    ], \n    \"Creamery\": [\n        \"NNP\"\n    ], \n    \"consistent\": [\n        \"JJ\"\n    ], \n    \"almond\": [\n        \"NN\"\n    ], \n    \"frosted\": [\n        \"VBD\"\n    ], \n    \"landmark\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"single-payment\": [\n        \"JJ\"\n    ], \n    \"Drawn\": [\n        \"VBN\"\n    ], \n    \"Delano\": [\n        \"NNP\"\n    ], \n    \"union-company\": [\n        \"JJ\"\n    ], \n    \"Gossage\": [\n        \"NNP\"\n    ], \n    \"pro-Western\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"solemn\": [\n        \"JJ\"\n    ], \n    \"web-printing\": [\n        \"JJ\"\n    ], \n    \"griped\": [\n        \"VBD\"\n    ], \n    \"question...\": [\n        \":\"\n    ], \n    \"parched\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"PROPOSAL\": [\n        \"NN\"\n    ], \n    \"most-recommended\": [\n        \"JJ\"\n    ], \n    \"busload\": [\n        \"NN\"\n    ], \n    \"Ethicist\": [\n        \"NN\"\n    ], \n    \"suable\": [\n        \"JJ\"\n    ], \n    \"undressing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Scarsdale\": [\n        \"NNP\"\n    ], \n    \"Encylopedia\": [\n        \"NN\"\n    ], \n    \"Ernest\": [\n        \"NNP\"\n    ], \n    \"aural\": [\n        \"JJ\"\n    ], \n    \"ventures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"federal-right\": [\n        \"JJ\"\n    ], \n    \"Elisabeth\": [\n        \"NNP\"\n    ], \n    \"Andre\": [\n        \"NNP\"\n    ], \n    \"Malmud\": [\n        \"NNP\"\n    ], \n    \"well-bred\": [\n        \"JJ\"\n    ], \n    \"Katcher\": [\n        \"NNP\"\n    ], \n    \"Lefevre\": [\n        \"NNP\"\n    ], \n    \"punishment\": [\n        \"NN\"\n    ], \n    \"ventured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pensupreme\": [\n        \"NNP\"\n    ], \n    \"Ciceronian\": [\n        \"JJ\"\n    ], \n    \"Booz\": [\n        \"NNP\"\n    ], \n    \"Nemesis\": [\n        \"NNP\"\n    ], \n    \"stray\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"straw\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"non-supervisory\": [\n        \"JJ\"\n    ], \n    \"Boot\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Liston\": [\n        \"NNP\"\n    ], \n    \"strap\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"unofficially\": [\n        \"RB\"\n    ], \n    \"Wake-Up\": [\n        \"NNP\"\n    ], \n    \"Book\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tolylene\": [\n        \"NN\"\n    ], \n    \"slicker\": [\n        \"NN\"\n    ], \n    \"Boon\": [\n        \"NNP\"\n    ], \n    \"mares\": [\n        \"NNS\"\n    ], \n    \"asset-trading\": [\n        \"NN\"\n    ], \n    \"power-transmission\": [\n        \"JJ\"\n    ], \n    \"swings\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"cawing\": [\n        \"VBG\"\n    ], \n    \"swingy\": [\n        \"JJ\"\n    ], \n    \"Physiologist\": [\n        \"NNP\"\n    ], \n    \"June\": [\n        \"NNP\"\n    ], \n    \"Jung\": [\n        \"NNP\"\n    ], \n    \"Ment\": [\n        \"NNP\"\n    ], \n    \"Diners\": [\n        \"NNP\"\n    ], \n    \"love-hate\": [\n        \"JJ\"\n    ], \n    \"Cowessett\": [\n        \"NNP\"\n    ], \n    \"Plutarch\": [\n        \"NNP\"\n    ], \n    \"billowing\": [\n        \"VBG\"\n    ], \n    \"grief\": [\n        \"NN\"\n    ], \n    \"Crowley\": [\n        \"NNP\"\n    ], \n    \"ardently\": [\n        \"RB\"\n    ], \n    \"Newsote\": [\n        \"NNP\"\n    ], \n    \"Fonta\": [\n        \"NNP\"\n    ], \n    \"four-year-old\": [\n        \"JJ\"\n    ], \n    \"Kirsch\": [\n        \"NNP\"\n    ], \n    \"hutch\": [\n        \"NN\"\n    ], \n    \"Financial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Self-expression\": [\n        \"NN\"\n    ], \n    \"brandishing\": [\n        \"VBG\"\n    ], \n    \"tremendously\": [\n        \"RB\"\n    ], \n    \"overgeneralization\": [\n        \"NN\"\n    ], \n    \"boldest\": [\n        \"JJS\"\n    ], \n    \"Euro-consumers\": [\n        \"NNPS\"\n    ], \n    \"install\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Warring\": [\n        \"NNP\"\n    ], \n    \"smoking-cessation\": [\n        \"NN\"\n    ], \n    \"finger-held\": [\n        \"JJ\"\n    ], \n    \"machinist\": [\n        \"NN\"\n    ], \n    \"addictive\": [\n        \"JJ\"\n    ], \n    \"earth-touching\": [\n        \"JJ\"\n    ], \n    \"whizzes\": [\n        \"NNS\"\n    ], \n    \"chainlike\": [\n        \"JJ\"\n    ], \n    \"Whippet\": [\n        \"NNP\"\n    ], \n    \"Polymerization\": [\n        \"NN\"\n    ], \n    \"mayhem\": [\n        \"NN\"\n    ], \n    \"U.S.-U.S.S.R.\": [\n        \"NNP\"\n    ], \n    \"camellias\": [\n        \"NNS\"\n    ], \n    \"jetliner\": [\n        \"NN\"\n    ], \n    \"Poet\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mortages\": [\n        \"NNS\"\n    ], \n    \"slower-than-expected\": [\n        \"JJ\"\n    ], \n    \"undisciplined\": [\n        \"JJ\"\n    ], \n    \"CF66\": [\n        \"NN\"\n    ], \n    \"vagrant\": [\n        \"JJ\"\n    ], \n    \"help-wanted\": [\n        \"JJ\"\n    ], \n    \"Felicity\": [\n        \"NNP\"\n    ], \n    \"Hartford\": [\n        \"NNP\"\n    ], \n    \"low\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"Gretchen\": [\n        \"NNP\"\n    ], \n    \"aconte\": [\n        \"NN\"\n    ], \n    \"mimetically\": [\n        \"RB\"\n    ], \n    \"eyeballs\": [\n        \"NNS\"\n    ], \n    \"Spoilage\": [\n        \"NN\"\n    ], \n    \"badly\": [\n        \"RB\"\n    ], \n    \"kilowatt\": [\n        \"NN\"\n    ], \n    \"Diamandis\": [\n        \"NNP\"\n    ], \n    \"Vinogradoff\": [\n        \"NNP\"\n    ], \n    \"unwrinkled\": [\n        \"JJ\"\n    ], \n    \"jumping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"benediction\": [\n        \"NN\"\n    ], \n    \"Lithuanians\": [\n        \"NNPS\"\n    ], \n    \"Etc.\": [\n        \"NNP\"\n    ], \n    \"puzzles\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"criminalization\": [\n        \"NN\"\n    ], \n    \"intermeshed\": [\n        \"VBN\"\n    ], \n    \"optioned\": [\n        \"VBN\"\n    ], \n    \"poppyseed\": [\n        \"NN\"\n    ], \n    \"trillions\": [\n        \"NNS\"\n    ], \n    \"Lloyd\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sibyls\": [\n        \"NNPS\"\n    ], \n    \"roused\": [\n        \"VBD\"\n    ], \n    \"Wolf\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vapor\": [\n        \"NN\"\n    ], \n    \"D.T.\": [\n        \"NNP\"\n    ], \n    \"shadier\": [\n        \"JJR\"\n    ], \n    \"interpreting\": [\n        \"VBG\"\n    ], \n    \"constatation\": [\n        \"NN\"\n    ], \n    \"alternation\": [\n        \"NN\"\n    ], \n    \"biomedical\": [\n        \"JJ\"\n    ], \n    \"underside\": [\n        \"NN\"\n    ], \n    \"MACPOST\": [\n        \"NNP\"\n    ], \n    \"synonyms\": [\n        \"NNS\"\n    ], \n    \"synonymy\": [\n        \"NN\"\n    ], \n    \"Flow-Mole\": [\n        \"NNP\"\n    ], \n    \"replicating\": [\n        \"VBG\"\n    ], \n    \"video\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fittings\": [\n        \"NNS\"\n    ], \n    \"Devlin\": [\n        \"NNP\"\n    ], \n    \"Tinker\": [\n        \"NNP\"\n    ], \n    \"condition\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Syndicate\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wholesale-price\": [\n        \"JJ\"\n    ], \n    \"tourist\": [\n        \"NN\"\n    ], \n    \"sport-utility\": [\n        \"JJ\"\n    ], \n    \"Schueler\": [\n        \"NNP\"\n    ], \n    \"eye-beamings\": [\n        \"NNS\"\n    ], \n    \"wobbling\": [\n        \"VBG\"\n    ], \n    \"Maintain\": [\n        \"VBP\"\n    ], \n    \"disreputable\": [\n        \"JJ\"\n    ], \n    \"bitterest\": [\n        \"JJS\"\n    ], \n    \"shadows\": [\n        \"NNS\"\n    ], \n    \"interrelationship\": [\n        \"NN\"\n    ], \n    \"superintendents\": [\n        \"NNS\"\n    ], \n    \"Giardini\\\\/Russell\": [\n        \"NNP\"\n    ], \n    \"erotically\": [\n        \"RB\"\n    ], \n    \"shadowy\": [\n        \"JJ\"\n    ], \n    \"most-jingoistic\": [\n        \"JJ\"\n    ], \n    \"Dizzy\": [\n        \"NNP\"\n    ], \n    \"Tropez\": [\n        \"NNP\"\n    ], \n    \"York-Pennsylvania\": [\n        \"NNP\"\n    ], \n    \"Khasi\": [\n        \"NNP\"\n    ], \n    \"beta-thalassemia\": [\n        \"NN\"\n    ], \n    \"Mastro\": [\n        \"NNP\"\n    ], \n    \"waffle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Damascus\": [\n        \"NNP\"\n    ], \n    \"global-funds\": [\n        \"JJ\"\n    ], \n    \"practising\": [\n        \"VBG\"\n    ], \n    \"weather-related\": [\n        \"JJ\"\n    ], \n    \"Single-cell\": [\n        \"JJ\"\n    ], \n    \"depress\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"islanders\": [\n        \"NNS\"\n    ], \n    \"collaborates\": [\n        \"VBZ\"\n    ], \n    \"motel\": [\n        \"NN\"\n    ], \n    \"tonsil\": [\n        \"NN\"\n    ], \n    \"collaborated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"motet\": [\n        \"NN\"\n    ], \n    \"choreographic\": [\n        \"JJ\"\n    ], \n    \"reappraisals\": [\n        \"NNS\"\n    ], \n    \"heavenly\": [\n        \"JJ\"\n    ], \n    \"Robinson-Humphrey\": [\n        \"NNP\"\n    ], \n    \"creole\": [\n        \"NN\"\n    ], \n    \"dusky\": [\n        \"JJ\"\n    ], \n    \"calmest\": [\n        \"JJS\"\n    ], \n    \"bitingly\": [\n        \"RB\"\n    ], \n    \"Bardall\": [\n        \"NNP\"\n    ], \n    \"pre-fund\": [\n        \"VB\"\n    ], \n    \"Metal\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"east-to-west\": [\n        \"RB\"\n    ], \n    \"ever\": [\n        \"RB\", \n        \"RBR\", \n        \"RP\"\n    ], \n    \"polarize\": [\n        \"VB\"\n    ], \n    \"accidental-war\": [\n        \"NN\"\n    ], \n    \"Wheatfield\": [\n        \"NNP\"\n    ], \n    \"trances\": [\n        \"NNS\"\n    ], \n    \"speechwriting\": [\n        \"NN\"\n    ], \n    \"Studies\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"BTU\": [\n        \"NNP\"\n    ], \n    \"pulpits\": [\n        \"NNS\"\n    ], \n    \"silicate\": [\n        \"NN\"\n    ], \n    \"companies...\": [\n        \":\"\n    ], \n    \"BTR\": [\n        \"NNP\"\n    ], \n    \"Broughten\": [\n        \"NNP\"\n    ], \n    \"correctness\": [\n        \"NN\"\n    ], \n    \"Rittenhouse\": [\n        \"NNP\"\n    ], \n    \"pence\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Creditbanken\": [\n        \"NNP\"\n    ], \n    \"hopeless\": [\n        \"JJ\"\n    ], \n    \"BTL\": [\n        \"NNP\"\n    ], \n    \"shootin\": [\n        \"VBG\"\n    ], \n    \"highways\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Tensions\": [\n        \"NNPS\"\n    ], \n    \"Two-Way\": [\n        \"NNP\"\n    ], \n    \"loose-loaded\": [\n        \"JJ\"\n    ], \n    \"accidentally\": [\n        \"RB\"\n    ], \n    \"restrict\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"awoke\": [\n        \"VBD\"\n    ], \n    \"manumission\": [\n        \"NN\"\n    ], \n    \"Ammunition\": [\n        \"NNP\"\n    ], \n    \"dysfunction\": [\n        \"NN\"\n    ], \n    \"typists\": [\n        \"NNS\"\n    ], \n    \"Garrison\": [\n        \"NNP\"\n    ], \n    \"Heintze\": [\n        \"NNP\"\n    ], \n    \"lecturing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"porno-inspired\": [\n        \"JJ\"\n    ], \n    \"tos\": [\n        \"NNS\"\n    ], \n    \"top\": [\n        \"JJ\", \n        \"NN\", \n        \"VBP\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Beman\": [\n        \"NNP\"\n    ], \n    \"tow\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"tot\": [\n        \"NN\"\n    ], \n    \"Devario\": [\n        \"NNP\"\n    ], \n    \"ton\": [\n        \"NN\"\n    ], \n    \"too\": [\n        \"RB\"\n    ], \n    \"flippant\": [\n        \"JJ\"\n    ], \n    \"family-business\": [\n        \"NN\"\n    ], \n    \"inconvenient\": [\n        \"JJ\"\n    ], \n    \"leach\": [\n        \"VB\"\n    ], \n    \"toe\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"curtains\": [\n        \"NNS\"\n    ], \n    \"murder\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"indiscreet\": [\n        \"JJ\"\n    ], \n    \"outdistancing\": [\n        \"VBG\"\n    ], \n    \"not-so-trivial\": [\n        \"JJ\"\n    ], \n    \"hammerlock\": [\n        \"NN\"\n    ], \n    \"Joneses\": [\n        \"NNPS\"\n    ], \n    \"pondering\": [\n        \"VBG\"\n    ], \n    \"solicitor\": [\n        \"NN\"\n    ], \n    \"flimflam\": [\n        \"NN\"\n    ], \n    \"Forerunner\": [\n        \"NNP\"\n    ], \n    \"nudging\": [\n        \"VBG\"\n    ], \n    \"various-sized\": [\n        \"JJ\"\n    ], \n    \"garlanded\": [\n        \"VBD\"\n    ], \n    \"cogently\": [\n        \"RB\"\n    ], \n    \"pyramidal\": [\n        \"JJ\"\n    ], \n    \"separatist\": [\n        \"JJ\"\n    ], \n    \"bulletins\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"roles\": [\n        \"NNS\"\n    ], \n    \"wide-body\": [\n        \"JJ\"\n    ], \n    \"Monahan\": [\n        \"NNP\"\n    ], \n    \"precocious\": [\n        \"JJ\"\n    ], \n    \"TRADING\": [\n        \"NN\"\n    ], \n    \"Solis-Cohen\": [\n        \"NNP\"\n    ], \n    \"prone\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"rear-guard\": [\n        \"JJ\"\n    ], \n    \"Zinser\": [\n        \"NNP\"\n    ], \n    \"Sausage\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bards\": [\n        \"NNS\"\n    ], \n    \"Shires\": [\n        \"NNP\"\n    ], \n    \"Homerun\": [\n        \"NN\"\n    ], \n    \"far-left\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"overstrained\": [\n        \"VBN\"\n    ], \n    \"careening\": [\n        \"VBG\"\n    ], \n    \"Chases\": [\n        \"NNPS\"\n    ], \n    \"Syb\": [\n        \"NNP\"\n    ], \n    \"scriptures\": [\n        \"NNS\"\n    ], \n    \"homesteaders\": [\n        \"NNS\"\n    ], \n    \"snow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Appendix\": [\n        \"NN\"\n    ], \n    \"Haementeria\": [\n        \"FW\"\n    ], \n    \"snob\": [\n        \"NN\"\n    ], \n    \"DePauw\": [\n        \"NNP\"\n    ], \n    \"inured\": [\n        \"VBN\"\n    ], \n    \"Bermudez\": [\n        \"NNP\"\n    ], \n    \"mammary\": [\n        \"JJ\"\n    ], \n    \"capitalization\": [\n        \"NN\"\n    ], \n    \"though\": [\n        \"IN\", \n        \"RB\", \n        \"VBD\"\n    ], \n    \"direct-seller\": [\n        \"NN\"\n    ], \n    \"outscoring\": [\n        \"VBG\"\n    ], \n    \"excelling\": [\n        \"VBG\"\n    ], \n    \"preset\": [\n        \"JJ\"\n    ], \n    \"plenty\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"Beallsville\": [\n        \"NNP\"\n    ], \n    \"disarmed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Hargrove\": [\n        \"NNP\"\n    ], \n    \"late-night\": [\n        \"JJ\"\n    ], \n    \"interject\": [\n        \"VBP\"\n    ], \n    \"prevails\": [\n        \"VBZ\"\n    ], \n    \"devastating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"uncomplainingly\": [\n        \"RB\"\n    ], \n    \"Garfield\": [\n        \"NNP\"\n    ], \n    \"reputation\": [\n        \"NN\"\n    ], \n    \"Laval\": [\n        \"NNP\"\n    ], \n    \"rupees\": [\n        \"NNS\"\n    ], \n    \"attorney-disciplinary\": [\n        \"JJ\"\n    ], \n    \"prevaile\": [\n        \"VB\"\n    ], \n    \"section\": [\n        \"NN\", \n        \",\", \n        \"NNP\"\n    ], \n    \"capital-markets\": [\n        \"JJ\"\n    ], \n    \"v.d\": [\n        \"NNP\"\n    ], \n    \"uncompetitive\": [\n        \"JJ\"\n    ], \n    \"intelligence-briefing\": [\n        \"NN\"\n    ], \n    \"radii\": [\n        \"NNS\"\n    ], \n    \"radio\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Hartman\": [\n        \"NNP\"\n    ], \n    \"Saltonstall\": [\n        \"NNP\"\n    ], \n    \"sunsets\": [\n        \"NNS\"\n    ], \n    \"carbine\": [\n        \"NN\"\n    ], \n    \"symphonic\": [\n        \"JJ\"\n    ], \n    \"Alphametrics\": [\n        \"NNP\"\n    ], \n    \"Gilmartin\": [\n        \"NNP\"\n    ], \n    \"Records\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"ozone-damaging\": [\n        \"JJ\"\n    ], \n    \"printouts\": [\n        \"NNS\"\n    ], \n    \"lodge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"announce\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fourth-down\": [\n        \"NN\"\n    ], \n    \"cast-proof\": [\n        \"JJ\"\n    ], \n    \"continuity\": [\n        \"NN\"\n    ], \n    \"Crosser\": [\n        \"NNP\"\n    ], \n    \"Aaa\": [\n        \"JJ\"\n    ], \n    \"Pepsi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Turns\": [\n        \"VBZ\"\n    ], \n    \"hostility\": [\n        \"NN\"\n    ], \n    \"watch\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Aah\": [\n        \"UH\"\n    ], \n    \"intereference\": [\n        \"NN\"\n    ], \n    \"frying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Kirnan\": [\n        \"NNP\"\n    ], \n    \"reinstall\": [\n        \"VB\"\n    ], \n    \"Saturdays\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"overbearing\": [\n        \"JJ\"\n    ], \n    \"unlatch\": [\n        \"VB\"\n    ], \n    \"Hastening\": [\n        \"VBG\"\n    ], \n    \"nawth\": [\n        \"NN\"\n    ], \n    \"erupt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cozier\": [\n        \"JJR\"\n    ], \n    \"Glen\": [\n        \"NNP\"\n    ], \n    \"Revco\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"above-mentioned\": [\n        \"JJ\"\n    ], \n    \"car-crash\": [\n        \"JJ\"\n    ], \n    \"inhabitation\": [\n        \"NN\"\n    ], \n    \"Glee\": [\n        \"NN\"\n    ], \n    \"Heenan\": [\n        \"NNP\"\n    ], \n    \"Abide\": [\n        \"NNP\"\n    ], \n    \"share-purchase\": [\n        \"NN\"\n    ], \n    \"McCarver\": [\n        \"NNP\"\n    ], \n    \"wood-grained\": [\n        \"JJ\"\n    ], \n    \"antifreeze\": [\n        \"NN\"\n    ], \n    \"recoverable\": [\n        \"JJ\"\n    ], \n    \"cartoonish\": [\n        \"JJ\"\n    ], \n    \"gentility\": [\n        \"NN\"\n    ], \n    \"Joiners\": [\n        \"NNPS\"\n    ], \n    \"unalienable\": [\n        \"JJ\"\n    ], \n    \"catalogue\": [\n        \"NN\"\n    ], \n    \"bellowing\": [\n        \"VBG\"\n    ], \n    \"approach\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"pee-wee\": [\n        \"JJ\"\n    ], \n    \"Batibot\": [\n        \"NNP\"\n    ], \n    \"Wanders\": [\n        \"NNP\"\n    ], \n    \"indecision\": [\n        \"NN\"\n    ], \n    \"southeast\": [\n        \"RB\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Manila-based\": [\n        \"JJ\"\n    ], \n    \"orange-and-blue\": [\n        \"JJ\"\n    ], \n    \"vomiting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"predates\": [\n        \"VBZ\"\n    ], \n    \"fragrance\": [\n        \"NN\"\n    ], \n    \"irregular\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chances\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"credit-card\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Thomson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Computer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"games\": [\n        \"NNS\"\n    ], \n    \"variance\": [\n        \"NN\"\n    ], \n    \"evenutally\": [\n        \"RB\"\n    ], \n    \"Sankyo\": [\n        \"NNP\"\n    ], \n    \"oleophilic\": [\n        \"JJ\"\n    ], \n    \"Barrick\": [\n        \"NNP\"\n    ], \n    \"Rhinoceros\": [\n        \"NNP\"\n    ], \n    \"semi-liquefied\": [\n        \"JJ\"\n    ], \n    \"litigant\": [\n        \"NN\"\n    ], \n    \"round-trip\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"casters\": [\n        \"NNS\"\n    ], \n    \"Publicity\": [\n        \"NN\"\n    ], \n    \"Udayan\": [\n        \"NNP\"\n    ], \n    \"re-examined\": [\n        \"VBD\"\n    ], \n    \"Theon\": [\n        \"NNP\"\n    ], \n    \"transparencies\": [\n        \"NNS\"\n    ], \n    \"Sandman\": [\n        \"NNP\"\n    ], \n    \"Hazard\": [\n        \"NNP\"\n    ], \n    \"quickly\": [\n        \"RB\"\n    ], \n    \"universals\": [\n        \"NNS\"\n    ], \n    \"communion\": [\n        \"NN\"\n    ], \n    \"expected\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Relating\": [\n        \"VBG\"\n    ], \n    \"over-land\": [\n        \"JJ\"\n    ], \n    \"sloppiness\": [\n        \"NN\"\n    ], \n    \"shrewdest\": [\n        \"JJS\"\n    ], \n    \"Kartasasmita\": [\n        \"NNP\"\n    ], \n    \"Kasai\": [\n        \"NNP\"\n    ], \n    \"Cru\": [\n        \"NNP\"\n    ], \n    \"drugs\": [\n        \"NNS\"\n    ], \n    \"steamroller\": [\n        \"NN\"\n    ], \n    \"per-subscriber\": [\n        \"NN\"\n    ], \n    \"nomenklatura\": [\n        \"FW\"\n    ], \n    \"Anaheim\": [\n        \"NNP\"\n    ], \n    \"Scituate\": [\n        \"NNP\"\n    ], \n    \"Trans\": [\n        \"NNP\"\n    ], \n    \"Conklin\": [\n        \"NNP\"\n    ], \n    \"deeps\": [\n        \"NNS\"\n    ], \n    \"extruded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"safety-seat\": [\n        \"NN\"\n    ], \n    \"Anti-Christ\": [\n        \"NNP\"\n    ], \n    \"home-video\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Saturday-night\": [\n        \"JJ\"\n    ], \n    \"stopping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Souper\": [\n        \"NNP\"\n    ], \n    \"air-to-ground\": [\n        \"JJ\"\n    ], \n    \"extruder\": [\n        \"NN\"\n    ], \n    \"subnormal\": [\n        \"JJ\"\n    ], \n    \"Giulietta\": [\n        \"NNP\"\n    ], \n    \"pre-transfer\": [\n        \"JJ\"\n    ], \n    \"pyocanea\": [\n        \"NN\"\n    ], \n    \"five-a-week\": [\n        \"JJ\"\n    ], \n    \"expenses\": [\n        \"NNS\"\n    ], \n    \"Principle\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"exterior\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bumper-sticker\": [\n        \"NN\"\n    ], \n    \"drug-industry\": [\n        \"NN\"\n    ], \n    \"Golan\": [\n        \"NNP\"\n    ], \n    \"leaches\": [\n        \"NNS\"\n    ], \n    \"anti-oil\": [\n        \"JJ\"\n    ], \n    \"Dracula\": [\n        \"NNP\"\n    ], \n    \"labor-backed\": [\n        \"JJ\"\n    ], \n    \"repudiating\": [\n        \"VBG\"\n    ], \n    \"blood-alcohol\": [\n        \"NN\"\n    ], \n    \"bifocals\": [\n        \"NNS\"\n    ], \n    \"grocery-products\": [\n        \"NNS\"\n    ], \n    \"Inventor\": [\n        \"NNP\"\n    ], \n    \"Schweitzers\": [\n        \"NNPS\"\n    ], \n    \"Lebanese\": [\n        \"JJ\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Skanska\": [\n        \"NNP\"\n    ], \n    \"macaroni-and-cheese\": [\n        \"NN\"\n    ], \n    \"Thunderbird\": [\n        \"NNP\"\n    ], \n    \"springtime\": [\n        \"NN\"\n    ], \n    \"Steffes\": [\n        \"NNP\"\n    ], \n    \"non-Hungarians\": [\n        \"NNPS\"\n    ], \n    \"Bristol\": [\n        \"NNP\"\n    ], \n    \"town-watching\": [\n        \"JJ\"\n    ], \n    \"McConnell\": [\n        \"NNP\"\n    ], \n    \"mustiness\": [\n        \"NN\"\n    ], \n    \"Upholds\": [\n        \"VBZ\"\n    ], \n    \"mother\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"alarms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"seasonal\": [\n        \"JJ\"\n    ], \n    \"six-shooter\": [\n        \"NN\"\n    ], \n    \"Fifty-three\": [\n        \"JJ\"\n    ], \n    \"Consolo\": [\n        \"NNP\"\n    ], \n    \"steel-flanged\": [\n        \"JJ\"\n    ], \n    \"Aerojet\": [\n        \"NNP\"\n    ], \n    \"thumbs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rhythmically\": [\n        \"RB\"\n    ], \n    \"periphrastic\": [\n        \"JJ\"\n    ], \n    \"elk\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Koussevitzky\": [\n        \"NNP\"\n    ], \n    \"collars\": [\n        \"NNS\"\n    ], \n    \"ell\": [\n        \"NN\"\n    ], \n    \"elm\": [\n        \"NN\"\n    ], \n    \"niggers\": [\n        \"NNS\"\n    ], \n    \"educrats\": [\n        \"NNS\"\n    ], \n    \"Microlog\": [\n        \"NNP\"\n    ], \n    \"issuing\": [\n        \"VBG\"\n    ], \n    \"strolling\": [\n        \"VBG\"\n    ], \n    \"pivotal\": [\n        \"JJ\"\n    ], \n    \"Uhlmann\": [\n        \"NNP\"\n    ], \n    \"xylophones\": [\n        \"NNS\"\n    ], \n    \"bewhiskered\": [\n        \"JJ\"\n    ], \n    \"mounds\": [\n        \"NNS\"\n    ], \n    \"Reduces\": [\n        \"VBZ\"\n    ], \n    \"addicts\": [\n        \"NNS\"\n    ], \n    \"full-point\": [\n        \"JJ\"\n    ], \n    \"cultural\": [\n        \"JJ\"\n    ], \n    \"quicksand\": [\n        \"NN\"\n    ], \n    \"judge\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Brownstein\": [\n        \"NNP\"\n    ], \n    \"roach\": [\n        \"NN\"\n    ], \n    \"Rembrandt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Reduced\": [\n        \"NNP\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"sycophantishness\": [\n        \"NN\"\n    ], \n    \"Mazza\": [\n        \"NNP\"\n    ], \n    \"personal-income-tax\": [\n        \"JJ\"\n    ], \n    \"dishonest\": [\n        \"JJ\"\n    ], \n    \"comparability\": [\n        \"NN\"\n    ], \n    \"Hedda\": [\n        \"NNP\"\n    ], \n    \"arbitrary\": [\n        \"JJ\"\n    ], \n    \"trail-setters\": [\n        \"NNS\"\n    ], \n    \"non-firm\": [\n        \"JJ\"\n    ], \n    \"Robotics\": [\n        \"NNP\"\n    ], \n    \"Enhancements\": [\n        \"NNP\"\n    ], \n    \"frustrations\": [\n        \"NNS\"\n    ], \n    \"reinsured\": [\n        \"VBN\"\n    ], \n    \"successfully\": [\n        \"RB\"\n    ], \n    \"Kelly\\\\\": [\n        \"NNP\"\n    ], \n    \"PostScript\": [\n        \"NNP\"\n    ], \n    \"encumbrances\": [\n        \"NNS\"\n    ], \n    \"Francoise\": [\n        \"NNP\"\n    ], \n    \"roamed\": [\n        \"VBD\"\n    ], \n    \"Meurer\": [\n        \"NNP\"\n    ], \n    \"reinsurer\": [\n        \"JJR\"\n    ], \n    \"doorstep\": [\n        \"NN\"\n    ], \n    \"Cube\": [\n        \"NNP\"\n    ], \n    \"proceeding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Cuba\": [\n        \"NNP\"\n    ], \n    \"bargain-buying\": [\n        \"JJ\"\n    ], \n    \"Davy\": [\n        \"NNP\"\n    ], \n    \"Lasco\": [\n        \"NNP\"\n    ], \n    \"everything\": [\n        \"NN\"\n    ], \n    \"Dave\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Cubs\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Chris\": [\n        \"NNP\"\n    ], \n    \"buildin\": [\n        \"VBG\"\n    ], \n    \"sewing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"T.V.\": [\n        \"NNP\"\n    ], \n    \"enunciate\": [\n        \"VB\"\n    ], \n    \"blooper\": [\n        \"NN\"\n    ], \n    \"pens\": [\n        \"NNS\"\n    ], \n    \"discount\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"areaways\": [\n        \"NNS\"\n    ], \n    \"motor-industry\": [\n        \"NN\"\n    ], \n    \"NBC-Sears\": [\n        \"NNP\"\n    ], \n    \"permitted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"mechanized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"chapter\": [\n        \"NN\"\n    ], \n    \"Knitwear\": [\n        \"NNP\"\n    ], \n    \"Madison\": [\n        \"NNP\"\n    ], \n    \"Niccolo\": [\n        \"NNP\"\n    ], \n    \"Grassy\": [\n        \"NNP\"\n    ], \n    \"Episcopalians\": [\n        \"NNPS\"\n    ], \n    \"cowboy\": [\n        \"NN\"\n    ], \n    \"trustworthy\": [\n        \"JJ\"\n    ], \n    \"non-itemized\": [\n        \"JJ\"\n    ], \n    \"Grasso\": [\n        \"NNP\"\n    ], \n    \"liquidity-short-selling\": [\n        \"NN\"\n    ], \n    \"Still\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"rotations\": [\n        \"NNS\"\n    ], \n    \"Faberge\": [\n        \"NNP\"\n    ], \n    \"civic\": [\n        \"JJ\"\n    ], \n    \"Zajick\": [\n        \"NNP\"\n    ], \n    \"obtaining\": [\n        \"VBG\"\n    ], \n    \"naturalized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"inclusive\": [\n        \"JJ\"\n    ], \n    \"Venit\": [\n        \"NNP\"\n    ], \n    \"Hodel\": [\n        \"NNP\"\n    ], \n    \"Chains\": [\n        \"NNS\"\n    ], \n    \"classiest\": [\n        \"JJS\"\n    ], \n    \"Trastevere\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"git\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Palicka\": [\n        \"NNP\"\n    ], \n    \"bootlegging\": [\n        \"NN\"\n    ], \n    \"counter-revolutionary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"kryptonite\": [\n        \"NN\"\n    ], \n    \"Traditionalist\": [\n        \"NN\"\n    ], \n    \"transform\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Epinal\": [\n        \"NNP\"\n    ], \n    \"gig\": [\n        \"NN\"\n    ], \n    \"virgin\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Traditionalism\": [\n        \"NN\"\n    ], \n    \"seeker\": [\n        \"NN\"\n    ], \n    \"Kudlow\": [\n        \"NNP\"\n    ], \n    \"naught\": [\n        \"NN\"\n    ], \n    \"gim\": [\n        \"VB\"\n    ], \n    \"archives\": [\n        \"NNS\"\n    ], \n    \"ADV\": [\n        \"NNP\"\n    ], \n    \"intolerance\": [\n        \"NN\"\n    ], \n    \"ADT\": [\n        \"NNP\"\n    ], \n    \"steers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Norwood\": [\n        \"NNP\"\n    ], \n    \"Underclass\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"attempted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"AD\\\\\": [\n        \"NNP\"\n    ], \n    \"refashioning\": [\n        \"VBG\"\n    ], \n    \"illuminating\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"ADB\": [\n        \"NNP\"\n    ], \n    \"ADC\": [\n        \"NNP\"\n    ], \n    \"ADN\": [\n        \"NNP\"\n    ], \n    \"Emotional\": [\n        \"JJ\"\n    ], \n    \"attesting\": [\n        \"VBG\"\n    ], \n    \"disharmony\": [\n        \"NN\"\n    ], \n    \"nesters\": [\n        \"NNS\"\n    ], \n    \"Ouellette\": [\n        \"NNP\"\n    ], \n    \"spleen\": [\n        \"NN\"\n    ], \n    \"ruined\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"most-polluted\": [\n        \"JJS\"\n    ], \n    \"quicksilver\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"simplifying\": [\n        \"VBG\"\n    ], \n    \"decorate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"submitting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Horta\": [\n        \"NNP\"\n    ], \n    \"Surgery\": [\n        \"NNP\"\n    ], \n    \"JUNK\": [\n        \"NN\"\n    ], \n    \"shopping-center\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fury\": [\n        \"NN\"\n    ], \n    \"Viator\": [\n        \"NNP\"\n    ], \n    \"Cambridgeport\": [\n        \"NNP\"\n    ], \n    \"Ashikaga\": [\n        \"NNP\"\n    ], \n    \"one-person\": [\n        \"NN\"\n    ], \n    \"sq.\": [\n        \"JJ\"\n    ], \n    \"acclaimed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"shines\": [\n        \"VBZ\"\n    ], \n    \"petition\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Acuvue\": [\n        \"NNP\"\n    ], \n    \"Gladdy\": [\n        \"NNP\"\n    ], \n    \"faithful\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fragment\": [\n        \"NN\"\n    ], \n    \"Lorinda\": [\n        \"NNP\"\n    ], \n    \"whereas\": [\n        \"IN\"\n    ], \n    \"nemeses\": [\n        \"NNS\"\n    ], \n    \"loosening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"HG\": [\n        \"NNP\"\n    ], \n    \"tablemodel\": [\n        \"NN\"\n    ], \n    \"Cadnetix\": [\n        \"NNP\"\n    ], \n    \"Barbra\": [\n        \"NNP\"\n    ], \n    \"housing-related\": [\n        \"JJ\"\n    ], \n    \"bunkmate\": [\n        \"NN\"\n    ], \n    \"formalize\": [\n        \"VB\"\n    ], \n    \"Export\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ACCEPTANCES\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"subsidize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"writedowns\": [\n        \"NNS\"\n    ], \n    \"toad\": [\n        \"NN\"\n    ], \n    \"Francisco-Oakland\": [\n        \"NNP\"\n    ], \n    \"Life\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Privy\": [\n        \"NNP\"\n    ], \n    \"Liaison\": [\n        \"NNP\"\n    ], \n    \"Chariots\": [\n        \"NNS\"\n    ], \n    \"longrun\": [\n        \"JJ\"\n    ], \n    \"PROSPECTORS\": [\n        \"NNS\"\n    ], \n    \"patterned\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"old-style\": [\n        \"JJ\"\n    ], \n    \"Adens\": [\n        \"NNP\"\n    ], \n    \"BRISTOL-MYERS\": [\n        \"NNP\"\n    ], \n    \"vehicle-loan\": [\n        \"JJ\"\n    ], \n    \"palladium\": [\n        \"NN\"\n    ], \n    \"Nights\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"melodically\": [\n        \"RB\"\n    ], \n    \"Vyas\": [\n        \"NNP\"\n    ], \n    \"sympathetic\": [\n        \"JJ\"\n    ], \n    \"sound-truck\": [\n        \"JJ\"\n    ], \n    \"Pegler\": [\n        \"NNP\"\n    ], \n    \"price-jarring\": [\n        \"JJ\"\n    ], \n    \"discern\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"HYATT\": [\n        \"NNP\"\n    ], \n    \"click\": [\n        \"NN\"\n    ], \n    \"glittered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lift\": [\n        \"VB\"\n    ], \n    \"promoting\": [\n        \"VBG\"\n    ], \n    \"Leisurely\": [\n        \"RB\"\n    ], \n    \"weakening\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"outmoded\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Semegran\": [\n        \"NNP\"\n    ], \n    \"large-ticket\": [\n        \"JJ\"\n    ], \n    \"Wanda\": [\n        \"NNP\"\n    ], \n    \"Cif\": [\n        \"NNP\"\n    ], \n    \"Cie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Maquet\": [\n        \"NNP\"\n    ], \n    \"shibboleths\": [\n        \"NNS\"\n    ], \n    \"coosie\": [\n        \"NN\"\n    ], \n    \"Cir\": [\n        \"NNP\"\n    ], \n    \"junkbond\": [\n        \"NN\"\n    ], \n    \"nesting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"N.Y.-based\": [\n        \"JJ\"\n    ], \n    \"Nightwatch\": [\n        \"NNP\"\n    ], \n    \"Spotted\": [\n        \"VBN\"\n    ], \n    \"methodsm\": [\n        \"NN\"\n    ], \n    \"beseiged\": [\n        \"VBN\"\n    ], \n    \"couches\": [\n        \"NNS\"\n    ], \n    \"year-to-year\": [\n        \"JJ\"\n    ], \n    \"Diller\": [\n        \"NNP\"\n    ], \n    \"couched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"nisf-i-jahan\": [\n        \"NNP\"\n    ], \n    \"Allowed\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"Hereford\": [\n        \"NNP\"\n    ], \n    \"Grabe\": [\n        \"NNP\"\n    ], \n    \"propellant\": [\n        \"NN\"\n    ], \n    \"guzzling\": [\n        \"NN\"\n    ], \n    \"data-capture\": [\n        \"JJ\"\n    ], \n    \"invader\": [\n        \"NN\"\n    ], \n    \"invades\": [\n        \"VBZ\"\n    ], \n    \"consent-decree\": [\n        \"JJ\"\n    ], \n    \"Brigham\": [\n        \"NNP\"\n    ], \n    \"unmaterialized\": [\n        \"VBN\"\n    ], \n    \"Guth\": [\n        \"NNP\"\n    ], \n    \"invaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"voucher\": [\n        \"NN\"\n    ], \n    \"bacteria\": [\n        \"NNS\"\n    ], \n    \"government-appointed\": [\n        \"JJ\"\n    ], \n    \"slumbered\": [\n        \"VBD\"\n    ], \n    \"endangering\": [\n        \"VBG\"\n    ], \n    \"life...\": [\n        \":\"\n    ], \n    \"Hurrican\": [\n        \"NNP\"\n    ], \n    \"Birney\": [\n        \"NNP\"\n    ], \n    \"looted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Beardens\": [\n        \"NNPS\"\n    ], \n    \"Hurts\": [\n        \"VBZ\"\n    ], \n    \"Nanofilm\": [\n        \"NNP\"\n    ], \n    \"High-speed\": [\n        \"JJ\"\n    ], \n    \"Duel\": [\n        \"NNP\"\n    ], \n    \"Titian\": [\n        \"NNP\"\n    ], \n    \"pathless\": [\n        \"JJ\"\n    ], \n    \"channeled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Borten\": [\n        \"NNP\"\n    ], \n    \"Bortel\": [\n        \"NNP\"\n    ], \n    \"Theories\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Tawana\": [\n        \"NNP\"\n    ], \n    \"awe-inspiring\": [\n        \"JJ\"\n    ], \n    \"Richter-Haaser\": [\n        \"NNP\"\n    ], \n    \"noticeable\": [\n        \"JJ\"\n    ], \n    \"Armas\": [\n        \"NNP\"\n    ], \n    \"overrides\": [\n        \"VBZ\"\n    ], \n    \"scooping\": [\n        \"VBG\"\n    ], \n    \"guilty\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"stomachs\": [\n        \"NNS\"\n    ], \n    \"pediatric\": [\n        \"JJ\"\n    ], \n    \"hospitality\": [\n        \"NN\"\n    ], \n    \"noticeably\": [\n        \"RB\"\n    ], \n    \"vicissitudes\": [\n        \"NNS\"\n    ], \n    \"paralyzes\": [\n        \"VBZ\"\n    ], \n    \"Said\": [\n        \"VBD\", \n        \"VBN\", \n        \"NNP\"\n    ], \n    \"somersaults\": [\n        \"NNS\"\n    ], \n    \"Adios\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"soybeans\": [\n        \"NNS\"\n    ], \n    \"erudite\": [\n        \"JJ\"\n    ], \n    \"dioxin\": [\n        \"NN\"\n    ], \n    \"connivance\": [\n        \"NN\"\n    ], \n    \"Goodchild\": [\n        \"NNP\"\n    ], \n    \"Baines\": [\n        \"NNP\"\n    ], \n    \"paralyzed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"ballets\": [\n        \"NNS\"\n    ], \n    \"red-visored\": [\n        \"JJ\"\n    ], \n    \"sanitizing\": [\n        \"NN\"\n    ], \n    \"Forty-nine\": [\n        \"JJ\"\n    ], \n    \"Greenery\": [\n        \"NNP\"\n    ], \n    \"sporty\": [\n        \"JJ\"\n    ], \n    \"noncombat\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jemima\": [\n        \"NNP\"\n    ], \n    \"baser\": [\n        \"JJR\"\n    ], \n    \"sports\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"tinplated\": [\n        \"VBN\"\n    ], \n    \"Attwood\": [\n        \"NNP\"\n    ], \n    \"intra-uterine\": [\n        \"JJ\"\n    ], \n    \"Pestle\": [\n        \"NNP\"\n    ], \n    \"MEDICINE\": [\n        \"NNP\"\n    ], \n    \"law-governed\": [\n        \"JJ\"\n    ], \n    \"crocidolite\": [\n        \"NN\"\n    ], \n    \"reorganizing\": [\n        \"VBG\"\n    ], \n    \"bombastic\": [\n        \"JJ\"\n    ], \n    \"neglected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Eve\": [\n        \"NNP\"\n    ], \n    \"offing\": [\n        \"NN\"\n    ], \n    \"academician\": [\n        \"NN\"\n    ], \n    \"one-two-three\": [\n        \"NN\"\n    ], \n    \"flapping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"co-educational\": [\n        \"JJ\"\n    ], \n    \"prophecy\": [\n        \"NN\"\n    ], \n    \"misdemeanants\": [\n        \"NNS\"\n    ], \n    \"Spaull\": [\n        \"NNP\"\n    ], \n    \"Procedure\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"haole\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"states\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Family\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Burst\": [\n        \"VBD\"\n    ], \n    \"unruly\": [\n        \"JJ\"\n    ], \n    \"moonlit\": [\n        \"JJ\"\n    ], \n    \"impracticality\": [\n        \"NN\"\n    ], \n    \"overpass\": [\n        \"NN\"\n    ], \n    \"Danbury\": [\n        \"NNP\"\n    ], \n    \"iodine\": [\n        \"NN\"\n    ], \n    \"photojournalism\": [\n        \"NN\"\n    ], \n    \"nexus\": [\n        \"NN\"\n    ], \n    \"NavforJapan\": [\n        \"NNP\"\n    ], \n    \"emblematic\": [\n        \"JJ\"\n    ], \n    \"high-crime\": [\n        \"JJ\"\n    ], \n    \"ex-prize\": [\n        \"JJ\"\n    ], \n    \"unarmed\": [\n        \"JJ\"\n    ], \n    \"Spitalnick\": [\n        \"NNP\"\n    ], \n    \"prize-winning\": [\n        \"JJ\"\n    ], \n    \"provoke\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Simes\": [\n        \"NNP\"\n    ], \n    \"lipoproteins\": [\n        \"NNS\"\n    ], \n    \"disliked\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"improvisers\": [\n        \"NNS\"\n    ], \n    \"sweetish\": [\n        \"JJ\"\n    ], \n    \"Persian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Underwood\": [\n        \"NNP\"\n    ], \n    \"chrysotile\": [\n        \"NN\"\n    ], \n    \"micro-microcurie\": [\n        \"NN\"\n    ], \n    \"Frowning\": [\n        \"VBG\"\n    ], \n    \"Flocks\": [\n        \"NNS\"\n    ], \n    \"tapestry\": [\n        \"NN\"\n    ], \n    \"coiled\": [\n        \"VBD\"\n    ], \n    \"subsidiaries\": [\n        \"NNS\"\n    ], \n    \"Chanel\": [\n        \"NNP\"\n    ], \n    \"paide\": [\n        \"VBN\"\n    ], \n    \"invitees\": [\n        \"NNS\"\n    ], \n    \"micrometeorite\": [\n        \"NN\"\n    ], \n    \"paramount\": [\n        \"JJ\"\n    ], \n    \"clattered\": [\n        \"VBD\"\n    ], \n    \"impartial\": [\n        \"JJ\"\n    ], \n    \"Average\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"distastefully\": [\n        \"RB\"\n    ], \n    \"Fail\": [\n        \"NNP\"\n    ], \n    \"Lawson\": [\n        \"NNP\"\n    ], \n    \"DIGITAL\": [\n        \"NNP\"\n    ], \n    \"receptivity\": [\n        \"NN\"\n    ], \n    \"curing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Luette\": [\n        \"NNP\"\n    ], \n    \"dynamical\": [\n        \"JJ\"\n    ], \n    \"commodity\": [\n        \"NN\"\n    ], \n    \"purportedly\": [\n        \"RB\"\n    ], \n    \"cosmology\": [\n        \"NN\"\n    ], \n    \"homebuilders\": [\n        \"NNS\"\n    ], \n    \"Nursery\": [\n        \"NNP\"\n    ], \n    \"computer-services\": [\n        \"NNS\"\n    ], \n    \"Trinitarians\": [\n        \"NNP\"\n    ], \n    \"Parties\": [\n        \"NNS\"\n    ], \n    \"Morton\": [\n        \"NNP\"\n    ], \n    \"once-profitable\": [\n        \"JJ\"\n    ], \n    \"company-paid\": [\n        \"JJ\"\n    ], \n    \"computerize\": [\n        \"VB\"\n    ], \n    \"Microchannel\": [\n        \"NNP\"\n    ], \n    \"mecum\": [\n        \"FW\"\n    ], \n    \"Kursk\": [\n        \"NNP\"\n    ], \n    \"Smoak\": [\n        \"NNP\"\n    ], \n    \"Views\": [\n        \"NNS\"\n    ], \n    \"procedures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Kangaroo\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"gabbling\": [\n        \"VBG\"\n    ], \n    \"Huston\": [\n        \"NNP\"\n    ], \n    \"Oasis\": [\n        \"NNP\"\n    ], \n    \"Laptops\": [\n        \"NNS\"\n    ], \n    \"Zarnowitz\": [\n        \"NNP\"\n    ], \n    \"offers\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"rim-fire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rationality\": [\n        \"NN\"\n    ], \n    \"happened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kuehler\": [\n        \"NNP\"\n    ], \n    \"FAMILY\": [\n        \"NN\"\n    ], \n    \"Next-Most-Remarkable\": [\n        \"JJ\"\n    ], \n    \"Stinger\": [\n        \"NNP\"\n    ], \n    \"boozing\": [\n        \"VBG\"\n    ], \n    \"Glasser\": [\n        \"NNP\"\n    ], \n    \"non-code\": [\n        \"JJ\"\n    ], \n    \"superlatives\": [\n        \"NNS\"\n    ], \n    \"execute\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"clannishness\": [\n        \"NN\"\n    ], \n    \"arteriolar\": [\n        \"JJ\"\n    ], \n    \"plain-out\": [\n        \"RB\"\n    ], \n    \"clutch\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"aquam\": [\n        \"FW\"\n    ], \n    \"TOPIC\": [\n        \"NN\"\n    ], \n    \"receivership\": [\n        \"NN\"\n    ], \n    \"picnics\": [\n        \"NNS\"\n    ], \n    \"accomplishments\": [\n        \"NNS\"\n    ], \n    \"ters\": [\n        \"NNS\"\n    ], \n    \"Bataan\": [\n        \"NNP\"\n    ], \n    \"gold-mining-company\": [\n        \"JJ\"\n    ], \n    \"individually\": [\n        \"RB\"\n    ], \n    \"unburdened\": [\n        \"JJ\"\n    ], \n    \"Dervish\": [\n        \"NN\"\n    ], \n    \"ailment\": [\n        \"NN\"\n    ], \n    \"asbestos-related\": [\n        \"JJ\"\n    ], \n    \"Fredericksburg\": [\n        \"NNP\"\n    ], \n    \"third-grade\": [\n        \"NN\"\n    ], \n    \"apothecary\": [\n        \"NN\"\n    ], \n    \"MADD\": [\n        \"NNP\"\n    ], \n    \"seven-yen\": [\n        \"JJ\"\n    ], \n    \"Prop.\": [\n        \"NNP\"\n    ], \n    \"depersonalized\": [\n        \"VBN\"\n    ], \n    \"inadequacy\": [\n        \"NN\"\n    ], \n    \"cancels\": [\n        \"VBZ\"\n    ], \n    \"equines\": [\n        \"NNS\"\n    ], \n    \"tilt-rotor\": [\n        \"JJ\"\n    ], \n    \"walkway\": [\n        \"NN\"\n    ], \n    \"valeur\": [\n        \"FW\"\n    ], \n    \"scapegoating\": [\n        \"NN\"\n    ], \n    \"kidnaped\": [\n        \"VBN\"\n    ], \n    \"processed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"simile\": [\n        \"NN\"\n    ], \n    \"lawmaker\": [\n        \"NN\"\n    ], \n    \"Yeutter\": [\n        \"NNP\"\n    ], \n    \"mapping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Mariel\": [\n        \"NNP\"\n    ], \n    \"oasis\": [\n        \"NN\"\n    ], \n    \"flyer\": [\n        \"NN\"\n    ], \n    \"bumblebees\": [\n        \"NNS\"\n    ], \n    \"Southlake\": [\n        \"NNP\"\n    ], \n    \"non-wage\": [\n        \"JJ\"\n    ], \n    \"limps\": [\n        \"VBZ\"\n    ], \n    \"uniformed\": [\n        \"JJ\"\n    ], \n    \"Houdaille\": [\n        \"NNP\"\n    ], \n    \"best-known\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"Comedian\": [\n        \"NN\"\n    ], \n    \"broached\": [\n        \"VBN\"\n    ], \n    \"HealthCare\": [\n        \"NNP\"\n    ], \n    \"Hospice\": [\n        \"NNP\"\n    ], \n    \"win-win\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bowden\": [\n        \"NNP\"\n    ], \n    \"Schapiro\": [\n        \"NNP\"\n    ], \n    \"knoweth\": [\n        \"VBP\"\n    ], \n    \"engineering-services\": [\n        \"NNS\"\n    ], \n    \"parkish\": [\n        \"JJ\"\n    ], \n    \"Bigness\": [\n        \"NN\"\n    ], \n    \"Bowder\": [\n        \"NNP\"\n    ], \n    \"Ilminster\": [\n        \"NNP\"\n    ], \n    \"Privileged\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"petered\": [\n        \"VBN\"\n    ], \n    \"engineer\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tingling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"clanking\": [\n        \"VBG\"\n    ], \n    \"given\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"necessarily\": [\n        \"RB\"\n    ], \n    \"district\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bernoulli\": [\n        \"NNP\"\n    ], \n    \"provenance\": [\n        \"NN\"\n    ], \n    \"Fiorello\": [\n        \"NNP\"\n    ], \n    \"cooling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"renter\": [\n        \"NN\"\n    ], \n    \"welfare\": [\n        \"NN\"\n    ], \n    \"legally\": [\n        \"RB\"\n    ], \n    \"independant\": [\n        \"JJ\"\n    ], \n    \"giver\": [\n        \"NN\"\n    ], \n    \"gives\": [\n        \"VBZ\"\n    ], \n    \"acquisitions\": [\n        \"NNS\"\n    ], \n    \"we-Japanese\": [\n        \"JJ\"\n    ], \n    \"Circulation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"CLK\": [\n        \"NNP\"\n    ], \n    \"Sr.\": [\n        \"NNP\"\n    ], \n    \"Reavis\": [\n        \"NNP\"\n    ], \n    \"Siddo\": [\n        \"NNP\"\n    ], \n    \"cheerleading\": [\n        \"NN\"\n    ], \n    \"battery-driven\": [\n        \"JJ\"\n    ], \n    \"lockhold\": [\n        \"NN\"\n    ], \n    \"imagery\": [\n        \"NN\"\n    ], \n    \"girded\": [\n        \"VBD\"\n    ], \n    \"CITIC\": [\n        \"NNP\"\n    ], \n    \"portend\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"population\": [\n        \"NN\"\n    ], \n    \"Concord\": [\n        \"NNP\"\n    ], \n    \"return.\": [\n        \"NN\"\n    ], \n    \"Coleridge\": [\n        \"NNP\"\n    ], \n    \"Dooleys\": [\n        \"NNPS\"\n    ], \n    \"sera\": [\n        \"NNS\"\n    ], \n    \"Nicaragua\": [\n        \"NNP\"\n    ], \n    \"Litigation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"searchers\": [\n        \"NNS\"\n    ], \n    \"courteously\": [\n        \"RB\"\n    ], \n    \"Radha\": [\n        \"NNP\"\n    ], \n    \"froth\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Prussia\": [\n        \"NNP\"\n    ], \n    \"insinuendo\": [\n        \"NN\"\n    ], \n    \"generalization\": [\n        \"NN\"\n    ], \n    \"straddles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"syndications\": [\n        \"NNS\"\n    ], \n    \"scorecard\": [\n        \"NN\"\n    ], \n    \"noteholders\": [\n        \"NNS\"\n    ], \n    \"straddled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sells\": [\n        \"VBZ\"\n    ], \n    \"Brennan\": [\n        \"NNP\"\n    ], \n    \"Venezuela\": [\n        \"NNP\"\n    ], \n    \"hard-drinking\": [\n        \"JJ\"\n    ], \n    \"nonflammable\": [\n        \"JJ\"\n    ], \n    \"Oceans\": [\n        \"NNS\"\n    ], \n    \"Government-blessed\": [\n        \"JJ\"\n    ], \n    \"Helsinki-based\": [\n        \"JJ\"\n    ], \n    \"Operating\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"sorority\": [\n        \"NN\"\n    ], \n    \"resifted\": [\n        \"VBN\"\n    ], \n    \"portent\": [\n        \"NN\"\n    ], \n    \"Liggett\": [\n        \"NNP\"\n    ], \n    \"announced.\": [\n        \"VBN\"\n    ], \n    \"nonevent\": [\n        \"NN\"\n    ], \n    \"Littman\": [\n        \"NNP\"\n    ], \n    \"probed\": [\n        \"VBD\"\n    ], \n    \"clearer\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Supervision\": [\n        \"NNP\"\n    ], \n    \"rematch\": [\n        \"NN\"\n    ], \n    \"rock-scored\": [\n        \"JJ\"\n    ], \n    \"Wyo\": [\n        \"NNP\"\n    ], \n    \"Wyn\": [\n        \"NNP\"\n    ], \n    \"Magnusson\": [\n        \"NNP\"\n    ], \n    \"cleared\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"saunter\": [\n        \"NN\"\n    ], \n    \"probes\": [\n        \"NNS\"\n    ], \n    \"Shakshuki\": [\n        \"NNP\"\n    ], \n    \"Littau\": [\n        \"NNP\"\n    ], \n    \"prepaid-tuition\": [\n        \"JJ\"\n    ], \n    \"Gontran\": [\n        \"NNP\"\n    ], \n    \"cross-investment\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"adopt\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hungry\": [\n        \"JJ\"\n    ], \n    \"one-newspaper\": [\n        \"JJ\"\n    ], \n    \"Pattisson\": [\n        \"NNP\"\n    ], \n    \"bawling\": [\n        \"VBG\"\n    ], \n    \"casebook\": [\n        \"NN\"\n    ], \n    \"EXTEND\": [\n        \"VB\"\n    ], \n    \"motor-drive\": [\n        \"JJ\"\n    ], \n    \"misted\": [\n        \"VBD\"\n    ], \n    \"workshops\": [\n        \"NNS\"\n    ], \n    \"Putzi\": [\n        \"NNP\"\n    ], \n    \"Comments\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"now-deceased\": [\n        \"JJ\"\n    ], \n    \"trespass\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"dealerships\": [\n        \"NNS\"\n    ], \n    \"insider-trading\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Seven-Up\": [\n        \"NNP\"\n    ], \n    \"mister\": [\n        \"NN\"\n    ], \n    \"Gorboduc\": [\n        \"NNP\"\n    ], \n    \"line-fragments\": [\n        \"NN\"\n    ], \n    \"performance-capacity\": [\n        \"NN\"\n    ], \n    \"Bagnoli\": [\n        \"NNP\"\n    ], \n    \"contract-negotiation\": [\n        \"NN\"\n    ], \n    \"rebalanced\": [\n        \"VBN\"\n    ], \n    \"Pegasus\": [\n        \"NNP\"\n    ], \n    \"Drunkenness\": [\n        \"NN\"\n    ], \n    \"Stenholm\": [\n        \"NNP\"\n    ], \n    \"partake\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"harelips\": [\n        \"NNS\"\n    ], \n    \"Fujita\": [\n        \"NNP\"\n    ], \n    \"slimly\": [\n        \"RB\"\n    ], \n    \"icebox\": [\n        \"NN\"\n    ], \n    \"unsaddling\": [\n        \"VBG\"\n    ], \n    \"quirking\": [\n        \"VBG\"\n    ], \n    \"diamond-polishing\": [\n        \"NN\"\n    ], \n    \"debt...\": [\n        \":\"\n    ], \n    \"hedge\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"needle-sharp\": [\n        \"JJ\"\n    ], \n    \"Arkla\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sabotage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dramas\": [\n        \"NN\"\n    ], \n    \"obliterate\": [\n        \"VB\"\n    ], \n    \"doctor-originated\": [\n        \"JJ\"\n    ], \n    \"BAKKER\": [\n        \"NNP\"\n    ], \n    \"full-sisters\": [\n        \"NNS\"\n    ], \n    \"discussing\": [\n        \"VBG\"\n    ], \n    \"Ornette\": [\n        \"NNP\"\n    ], \n    \"microphones\": [\n        \"NNS\"\n    ], \n    \"imposing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"self-multilation\": [\n        \"NN\"\n    ], \n    \"bunko-forgery\": [\n        \"NN\"\n    ], \n    \"closures\": [\n        \"NNS\"\n    ], \n    \"baseball-loving\": [\n        \"JJ\"\n    ], \n    \"connections\": [\n        \"NNS\"\n    ], \n    \"turntable\": [\n        \"NN\"\n    ], \n    \"disarranged\": [\n        \"VBN\"\n    ], \n    \"stepson\": [\n        \"NN\"\n    ], \n    \"farmers\": [\n        \"NNS\"\n    ], \n    \"Ouedraogo\": [\n        \"NNP\"\n    ], \n    \"subsequent\": [\n        \"JJ\"\n    ], \n    \"Unoccupied\": [\n        \"JJ\"\n    ], \n    \"circulating\": [\n        \"VBG\"\n    ], \n    \"outside\": [\n        \"IN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Virtue\": [\n        \"NNP\"\n    ], \n    \"hiss\": [\n        \"NNS\"\n    ], \n    \"topgrade\": [\n        \"JJ\"\n    ], \n    \"near-hysteria\": [\n        \"NN\"\n    ], \n    \"synthetics\": [\n        \"NNS\"\n    ], \n    \"Natural\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Naturam\": [\n        \"FW\"\n    ], \n    \"daggerman\": [\n        \"NN\"\n    ], \n    \"Thaler\": [\n        \"NNP\"\n    ], \n    \"Bradstreet\": [\n        \"NNP\"\n    ], \n    \"anti-discriminatory\": [\n        \"JJ\"\n    ], \n    \"Pautsch\": [\n        \"NNP\"\n    ], \n    \"Bank-America\": [\n        \"NNP\"\n    ], \n    \"densely\": [\n        \"RB\"\n    ], \n    \"three-button\": [\n        \"JJ\"\n    ], \n    \"rumor-driven\": [\n        \"JJ\"\n    ], \n    \"Willman\": [\n        \"NNP\"\n    ], \n    \"co-edits\": [\n        \"VBZ\"\n    ], \n    \"Buckeridge\": [\n        \"NNP\"\n    ], \n    \"Kokoschka\": [\n        \"NNP\"\n    ], \n    \"priests\": [\n        \"NNS\"\n    ], \n    \"blinked\": [\n        \"VBD\"\n    ], \n    \"Kwik\": [\n        \"NNP\"\n    ], \n    \"pronto\": [\n        \"RB\"\n    ], \n    \"Individual\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Abernathy\": [\n        \"NNP\"\n    ], \n    \"wittily\": [\n        \"RB\"\n    ], \n    \"CLEARS\": [\n        \"VBZ\"\n    ], \n    \"Barbecued\": [\n        \"JJ\"\n    ], \n    \"Smokers\": [\n        \"NNS\"\n    ], \n    \"Guess\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"afterwards\": [\n        \"RB\"\n    ], \n    \"Nehru\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bricks\": [\n        \"NNS\"\n    ], \n    \"Jahr\": [\n        \"FW\"\n    ], \n    \"novices\": [\n        \"NNS\"\n    ], \n    \"colony\": [\n        \"NN\"\n    ], \n    \"teen-age\": [\n        \"JJ\"\n    ], \n    \"satisfaction\": [\n        \"NN\"\n    ], \n    \"atrociously\": [\n        \"RB\"\n    ], \n    \"jammed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Jahn\": [\n        \"NNP\"\n    ], \n    \"glutaric\": [\n        \"JJ\"\n    ], \n    \"discrepency\": [\n        \"NN\"\n    ], \n    \"proverty\": [\n        \"NN\"\n    ], \n    \"currency-options\": [\n        \"NNS\"\n    ], \n    \"Amschel\": [\n        \"NNP\"\n    ], \n    \"Rossoff\": [\n        \"NNP\"\n    ], \n    \"Worldwatch\": [\n        \"NNP\"\n    ], \n    \"helicopter\": [\n        \"NN\"\n    ], \n    \"psychics\": [\n        \"NNS\"\n    ], \n    \"Padres\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Riordan\": [\n        \"NNP\"\n    ], \n    \"Killington\": [\n        \"NNP\"\n    ], \n    \"Hellenic\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"traffic-systems\": [\n        \"NNS\"\n    ], \n    \"Phil\": [\n        \"NNP\"\n    ], \n    \"Together\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"L.M.\": [\n        \"NNP\"\n    ], \n    \"Elysees\": [\n        \"NNP\"\n    ], \n    \"Byers\": [\n        \"NNP\"\n    ], \n    \"travelling\": [\n        \"VBG\"\n    ], \n    \"Ruderman\": [\n        \"NNP\"\n    ], \n    \"myself\": [\n        \"PRP\"\n    ], \n    \"macromolecules\": [\n        \"NNS\"\n    ], \n    \"subconferences\": [\n        \"NNS\"\n    ], \n    \"neon-lit\": [\n        \"JJ\"\n    ], \n    \"DMB&B\\\\/New\": [\n        \"NNP\"\n    ], \n    \"Balances\": [\n        \"NNP\"\n    ], \n    \"Ciudad\": [\n        \"NNP\"\n    ], \n    \"Potential\": [\n        \"JJ\"\n    ], \n    \"slippery\": [\n        \"JJ\"\n    ], \n    \"Balanced\": [\n        \"VBN\"\n    ], \n    \"plug-in\": [\n        \"JJ\"\n    ], \n    \"hunts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Kroening\": [\n        \"NNP\"\n    ], \n    \"slippers\": [\n        \"NNS\"\n    ], \n    \"Kurile\": [\n        \"NNP\"\n    ], \n    \"discrepancy\": [\n        \"NN\"\n    ], \n    \"pre-try\": [\n        \"VB\"\n    ], \n    \"recounted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"skipped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Linguistic\": [\n        \"JJ\"\n    ], \n    \"straw-and-mud\": [\n        \"JJ\"\n    ], \n    \"Factions\": [\n        \"NNS\"\n    ], \n    \"unhelpfully\": [\n        \"RB\"\n    ], \n    \"shelf-stable\": [\n        \"JJ\"\n    ], \n    \"quarreling\": [\n        \"VBG\"\n    ], \n    \"moratorium\": [\n        \"NN\"\n    ], \n    \"Amarillo\": [\n        \"NNP\"\n    ], \n    \"drug...\": [\n        \":\"\n    ], \n    \"hevin\": [\n        \"VBG\"\n    ], \n    \"free-blown\": [\n        \"JJ\"\n    ], \n    \"Tannenbaum\": [\n        \"NNP\"\n    ], \n    \"insurers\": [\n        \"NNS\"\n    ], \n    \"Aggressively\": [\n        \"RB\"\n    ], \n    \"Goods\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Schubert-Beethoven-Mozart\": [\n        \"JJ\"\n    ], \n    \"Halsted\": [\n        \"NNP\"\n    ], \n    \"Goody\": [\n        \"UH\"\n    ], \n    \"nest\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"refusal\": [\n        \"NN\"\n    ], \n    \"green-lipped\": [\n        \"JJ\"\n    ], \n    \"Rockefeller\": [\n        \"NNP\"\n    ], \n    \"excavated\": [\n        \"VBN\"\n    ], \n    \"lute\": [\n        \"NN\"\n    ], \n    \"Goode\": [\n        \"NNP\"\n    ], \n    \"Detrex\": [\n        \"NNP\"\n    ], \n    \"Zainuddin\": [\n        \"NNP\"\n    ], \n    \"footprint\": [\n        \"NN\"\n    ], \n    \"collective-bargaining\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"vowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"overzealousness\": [\n        \"NN\"\n    ], \n    \"antibodies\": [\n        \"NNS\"\n    ], \n    \"renters\": [\n        \"NNS\"\n    ], \n    \"magical\": [\n        \"JJ\"\n    ], \n    \"sculptors\": [\n        \"NNS\"\n    ], \n    \"reward\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"flinging\": [\n        \"VBG\"\n    ], \n    \"burglarproof\": [\n        \"JJ\"\n    ], \n    \"Richland\": [\n        \"NNP\"\n    ], \n    \"ya\": [\n        \"NN\", \n        \"PRP\"\n    ], \n    \"Oslo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"actions\": [\n        \"NNS\"\n    ], \n    \"cockles\": [\n        \"NNS\"\n    ], \n    \"Haight\": [\n        \"NNP\"\n    ], \n    \"fineness\": [\n        \"NN\"\n    ], \n    \"incurring\": [\n        \"VBG\"\n    ], \n    \"fastness\": [\n        \"NN\"\n    ], \n    \"action\\\\\": [\n        \"JJ\"\n    ], \n    \"alphabetical\": [\n        \"JJ\"\n    ], \n    \"widest\": [\n        \"JJS\"\n    ], \n    \"seems\": [\n        \"VBZ\"\n    ], \n    \"empiricism\": [\n        \"NN\"\n    ], \n    \"yachtel\": [\n        \"NN\"\n    ], \n    \"thimble\": [\n        \"NN\"\n    ], \n    \"dully\": [\n        \"RB\"\n    ], \n    \"bloops\": [\n        \"NNS\"\n    ], \n    \"re-creating\": [\n        \"NN\"\n    ], \n    \"hotdogs\": [\n        \"NNS\"\n    ], \n    \"Navcom\": [\n        \"NNP\"\n    ], \n    \"dulls\": [\n        \"VBZ\"\n    ], \n    \"impound\": [\n        \"VB\"\n    ], \n    \"buyouts\": [\n        \"NNS\"\n    ], \n    \"anchovy\": [\n        \"NN\"\n    ], \n    \"wellhead\": [\n        \"NN\"\n    ], \n    \"blowout\": [\n        \"NN\"\n    ], \n    \"watercolorists\": [\n        \"NNS\"\n    ], \n    \"inflation\": [\n        \"NN\"\n    ], \n    \"Grace-Sierra\": [\n        \"NNP\"\n    ], \n    \"painteresque\": [\n        \"JJ\"\n    ], \n    \"accepted\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"wainscoted\": [\n        \"JJ\"\n    ], \n    \"furniture\": [\n        \"NN\"\n    ], \n    \"warmup\": [\n        \"NN\"\n    ], \n    \"cranelike\": [\n        \"JJ\"\n    ], \n    \"Harassed\": [\n        \"JJ\"\n    ], \n    \"bracelet\": [\n        \"NN\"\n    ], \n    \"OCCIDENTAL\": [\n        \"NNP\"\n    ], \n    \"Sylvania\": [\n        \"NNP\"\n    ], \n    \"Congresses\": [\n        \"NNS\"\n    ], \n    \"subcommittees\": [\n        \"NNS\"\n    ], \n    \"cone\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"call-backs\": [\n        \"NNS\"\n    ], \n    \"shoe-string\": [\n        \"NN\"\n    ], \n    \"Argentines\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Remaking\": [\n        \"VBG\"\n    ], \n    \"joking\": [\n        \"VBG\"\n    ], \n    \"steamier\": [\n        \"JJR\"\n    ], \n    \"straight-backed\": [\n        \"JJ\"\n    ], \n    \"Lou\": [\n        \"NNP\"\n    ], \n    \"overheated\": [\n        \"VBN\"\n    ], \n    \"pre-cooled\": [\n        \"JJ\"\n    ], \n    \"Jolly\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"restricted-entry\": [\n        \"JJ\"\n    ], \n    \"shortcoming\": [\n        \"NN\"\n    ], \n    \"Agreeable\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ours\": [\n        \"PRP\"\n    ], \n    \"oftener\": [\n        \"RBR\"\n    ], \n    \"swimsuit\": [\n        \"NN\"\n    ], \n    \"portables\": [\n        \"NNS\"\n    ], \n    \"Luxemburg\": [\n        \"NNP\"\n    ], \n    \"olive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Loy\": [\n        \"NNP\"\n    ], \n    \"sharp-leafed\": [\n        \"JJ\"\n    ], \n    \"Add\": [\n        \"VB\"\n    ], \n    \"Nazer\": [\n        \"NNP\"\n    ], \n    \"Nazem\": [\n        \"NNP\"\n    ], \n    \"Europeanized\": [\n        \"VBN\"\n    ], \n    \"Discouraged\": [\n        \"VBN\"\n    ], \n    \"aloes\": [\n        \"NN\"\n    ], \n    \"undreamt\": [\n        \"VBN\"\n    ], \n    \"bodacious\": [\n        \"JJ\"\n    ], \n    \"attests\": [\n        \"VBZ\"\n    ], \n    \"Protesting\": [\n        \"VBG\"\n    ], \n    \"nails\": [\n        \"NNS\"\n    ], \n    \"optimo\": [\n        \"FW\"\n    ], \n    \"Interspersed\": [\n        \"VBN\"\n    ], \n    \"home-for-the-night\": [\n        \"NN\"\n    ], \n    \"anatomicals\": [\n        \"NNS\"\n    ], \n    \"M.J.\": [\n        \"NNP\"\n    ], \n    \"Pikeville\": [\n        \"NNP\"\n    ], \n    \"E.G.T.\": [\n        \"NNP\"\n    ], \n    \"KLERK\": [\n        \"NNP\"\n    ], \n    \"jeep\": [\n        \"NN\"\n    ], \n    \"disorganized\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Foreign-exchange\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"water-tank\": [\n        \"NN\"\n    ], \n    \"obeys\": [\n        \"VBZ\"\n    ], \n    \"determinable\": [\n        \"JJ\"\n    ], \n    \"Prayer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Guangdong\": [\n        \"NNP\"\n    ], \n    \"computer-maintenance\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"warningly\": [\n        \"RB\"\n    ], \n    \"annoyances\": [\n        \"NNS\"\n    ], \n    \"cosmopolitanism\": [\n        \"NN\"\n    ], \n    \"engorgement\": [\n        \"NN\"\n    ], \n    \"skippers\": [\n        \"NNS\"\n    ], \n    \"gravel-chewing\": [\n        \"JJ\"\n    ], \n    \"breakwater\": [\n        \"NN\"\n    ], \n    \"overinclusion\": [\n        \"NN\"\n    ], \n    \"low-power\": [\n        \"JJ\"\n    ], \n    \"Identification\": [\n        \"NNP\"\n    ], \n    \"empathetic\": [\n        \"JJ\"\n    ], \n    \"buds\": [\n        \"NNS\"\n    ], \n    \"adjustables\": [\n        \"NNS\"\n    ], \n    \"Bultmann\": [\n        \"NNP\"\n    ], \n    \"stickler\": [\n        \"NN\"\n    ], \n    \"Feick\": [\n        \"NNP\"\n    ], \n    \"light-activated\": [\n        \"JJ\"\n    ], \n    \"overstaffed\": [\n        \"JJ\"\n    ], \n    \"dislocated\": [\n        \"JJ\"\n    ], \n    \"cadet\": [\n        \"NN\"\n    ], \n    \"potpourri\": [\n        \"NN\"\n    ], \n    \"forbade\": [\n        \"VBD\"\n    ], \n    \"conciseness\": [\n        \"NN\"\n    ], \n    \"marketeers\": [\n        \"NNS\"\n    ], \n    \"kittens\": [\n        \"NNS\"\n    ], \n    \"shamelessly\": [\n        \"RB\"\n    ], \n    \"lapidary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"edified\": [\n        \"VBD\"\n    ], \n    \"international\\\\\": [\n        \"JJ\"\n    ], \n    \"burrs\": [\n        \"NNS\"\n    ], \n    \"quadrupeds\": [\n        \"NNS\"\n    ], \n    \"Namibia\": [\n        \"NNP\"\n    ], \n    \"Hadera\": [\n        \"NNP\"\n    ], \n    \"Sub-Saharan\": [\n        \"NNP\"\n    ], \n    \"promote\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sensationalizing\": [\n        \"VBG\"\n    ], \n    \"Heavy\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"semi-special\": [\n        \"JJ\"\n    ], \n    \"Chadwick\": [\n        \"NNP\"\n    ], \n    \"plastics-industry\": [\n        \"NN\"\n    ], \n    \"self-interested\": [\n        \"JJ\"\n    ], \n    \"ennui\": [\n        \"NN\"\n    ], \n    \"Heave\": [\n        \"VB\"\n    ], \n    \"Amundsen\": [\n        \"NNP\"\n    ], \n    \"ruffian\": [\n        \"NN\"\n    ], \n    \"bleakly\": [\n        \"RB\"\n    ], \n    \"Reacting\": [\n        \"VBG\"\n    ], \n    \"Consultation\": [\n        \"NN\"\n    ], \n    \"accusingly\": [\n        \"RB\"\n    ], \n    \"aces\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Haagen\": [\n        \"NNP\"\n    ], \n    \"Ciavarella\": [\n        \"NNP\"\n    ], \n    \"protruded\": [\n        \"VBD\"\n    ], \n    \"biochemistry\": [\n        \"NN\"\n    ], \n    \"Bradbury\": [\n        \"NNP\"\n    ], \n    \"compel\": [\n        \"VB\"\n    ], \n    \"Helping\": [\n        \"VBG\"\n    ], \n    \"Symons\": [\n        \"NNP\"\n    ], \n    \"starkly\": [\n        \"RB\"\n    ], \n    \"sun-tan\": [\n        \"JJ\"\n    ], \n    \"brash\": [\n        \"JJ\"\n    ], \n    \"briefly\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"winking\": [\n        \"VBG\"\n    ], \n    \"conspiracies\": [\n        \"NNS\"\n    ], \n    \"Picture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kickers\": [\n        \"NNS\"\n    ], \n    \"Gator\": [\n        \"JJ\"\n    ], \n    \"Andersen-Price\": [\n        \"NNP\"\n    ], \n    \"de-emphasis\": [\n        \"NN\"\n    ], \n    \"Testimony\": [\n        \"NN\"\n    ], \n    \"brass\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"post-World\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"psychology\": [\n        \"NN\"\n    ], \n    \"thematic\": [\n        \"JJ\"\n    ], \n    \"proboscis\": [\n        \"NN\"\n    ], \n    \"Agamemnon\": [\n        \"NNP\"\n    ], \n    \"Chajet\": [\n        \"NNP\"\n    ], \n    \"lynch-mob\": [\n        \"JJ\"\n    ], \n    \"variegated\": [\n        \"JJ\"\n    ], \n    \"Magazines\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"r.p.m.\": [\n        \"NN\"\n    ], \n    \"apparel\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"stephanotis\": [\n        \"NN\"\n    ], \n    \"Equipped\": [\n        \"VBN\"\n    ], \n    \"neighbors\": [\n        \"NNS\"\n    ], \n    \"swirls\": [\n        \"NNS\"\n    ], \n    \"high-stakes\": [\n        \"JJ\"\n    ], \n    \"stained-glass\": [\n        \"NN\"\n    ], \n    \"eschewed\": [\n        \"VBN\"\n    ], \n    \"earners\": [\n        \"NNS\"\n    ], \n    \"spacecraft\": [\n        \"NN\"\n    ], \n    \"disc\": [\n        \"NN\"\n    ], \n    \"Sabinas\": [\n        \"FW\"\n    ], \n    \"dish\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"call-ups\": [\n        \"NNS\"\n    ], \n    \"nursing-homes\\\\/retirement-living\": [\n        \"JJ\"\n    ], \n    \"Alameda\": [\n        \"NNP\"\n    ], \n    \"Ensemble\": [\n        \"NNP\"\n    ], \n    \"wakened\": [\n        \"VBN\"\n    ], \n    \"Ritschl\": [\n        \"NNP\"\n    ], \n    \"Hospitalization\": [\n        \"NN\"\n    ], \n    \"homage\": [\n        \"NN\"\n    ], \n    \"pickier\": [\n        \"JJR\"\n    ], \n    \"agro-industry\": [\n        \"JJ\"\n    ], \n    \"Chiat\\\\/Day\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rexroth\": [\n        \"NNP\"\n    ], \n    \"Boily\": [\n        \"NNP\"\n    ], \n    \"Ariz.-based\": [\n        \"JJ\"\n    ], \n    \"Boils\": [\n        \"NNS\"\n    ], \n    \"Lvov\": [\n        \"NNP\"\n    ], \n    \"Vs.\": [\n        \"FW\"\n    ], \n    \"activities\": [\n        \"NNS\"\n    ], \n    \"liter\": [\n        \"NN\"\n    ], \n    \"GIS\": [\n        \"NNP\"\n    ], \n    \"ministerial\": [\n        \"JJ\"\n    ], \n    \"Missouri-Illinois\": [\n        \"NNP\"\n    ], \n    \"Calculated\": [\n        \"VBN\"\n    ], \n    \"Wakako\": [\n        \"NNP\"\n    ], \n    \"Erwin\": [\n        \"NNP\"\n    ], \n    \"clonic\": [\n        \"JJ\"\n    ], \n    \"overturning\": [\n        \"VBG\"\n    ], \n    \"unlined\": [\n        \"JJ\"\n    ], \n    \"lower-middle-class\": [\n        \"JJ\"\n    ], \n    \"dispute-settlement\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"becase\": [\n        \"IN\"\n    ], \n    \"defensiveness\": [\n        \"NN\"\n    ], \n    \"Neglected\": [\n        \"NNP\"\n    ], \n    \"S.S.\": [\n        \"NNP\"\n    ], \n    \"highway\": [\n        \"NN\"\n    ], \n    \"Nitrogen\": [\n        \"NN\"\n    ], \n    \"Backstitching\": [\n        \"VBG\"\n    ], \n    \"Lethal\": [\n        \"NNP\"\n    ], \n    \"most-contentious\": [\n        \"RBS|JJ\"\n    ], \n    \"Ngoc\": [\n        \"NNP\"\n    ], \n    \"BVIslanders\": [\n        \"NNS\"\n    ], \n    \"wage-rate\": [\n        \"JJ\"\n    ], \n    \"Lehner\": [\n        \"NNP\"\n    ], \n    \"Third-quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cannibal\": [\n        \"NNP\"\n    ], \n    \"Tolls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Moonachie\": [\n        \"NNP\"\n    ], \n    \"short-time\": [\n        \"JJ\"\n    ], \n    \"runner-up\": [\n        \"NN\"\n    ], \n    \"Curdling\": [\n        \"NNP\"\n    ], \n    \"enthalpy\": [\n        \"NN\"\n    ], \n    \"extremities\": [\n        \"NNS\"\n    ], \n    \"cheeses\": [\n        \"NNS\"\n    ], \n    \"what\": [\n        \"WP\", \n        \"WDT\", \n        \"WP|IN\"\n    ], \n    \"snow-covered\": [\n        \"JJ\"\n    ], \n    \"magnolia\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"ticks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"overload\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Hibernia\": [\n        \"NNP\"\n    ], \n    \"flag-wavers\": [\n        \"NNS\"\n    ], \n    \"Conservatives\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"racing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"wood-treating\": [\n        \"JJ\"\n    ], \n    \"cash-only\": [\n        \"JJ\"\n    ], \n    \"Rusk\": [\n        \"NNP\"\n    ], \n    \"Rush\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sparked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"more-mundane\": [\n        \"JJ\"\n    ], \n    \"much-watched\": [\n        \"JJ\"\n    ], \n    \"Baylor\": [\n        \"NNP\"\n    ], \n    \"borates\": [\n        \"NNS\"\n    ], \n    \"Russ\": [\n        \"NNP\"\n    ], \n    \"steamships\": [\n        \"NNS\"\n    ], \n    \"Pulp\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Braves\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"mythology\": [\n        \"NN\"\n    ], \n    \"identifiable\": [\n        \"JJ\"\n    ], \n    \"boded\": [\n        \"VBD\"\n    ], \n    \"pulverizing\": [\n        \"VBG\"\n    ], \n    \"fiber-photocathode\": [\n        \"NN\"\n    ], \n    \"infringe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"extremes\": [\n        \"NNS\"\n    ], \n    \"discontinuation\": [\n        \"NN\"\n    ], \n    \"Mildner\": [\n        \"NNP\"\n    ], \n    \"pulmonary\": [\n        \"JJ\"\n    ], \n    \"Medtronics\": [\n        \"NNP\"\n    ], \n    \"bridge-loan\": [\n        \"JJ\"\n    ], \n    \"elongated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"imaging\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Delamuraz\": [\n        \"NNP\"\n    ], \n    \"fernery\": [\n        \"NN\"\n    ], \n    \"counterrevolutionaries\": [\n        \"NNS\"\n    ], \n    \"choring\": [\n        \"NN|VBG\"\n    ], \n    \"Noyon-la-Sainte\": [\n        \"NNP\"\n    ], \n    \"semester\": [\n        \"NN\"\n    ], \n    \"refitting\": [\n        \"VBG\"\n    ], \n    \"Poulin\": [\n        \"NNP\"\n    ], \n    \"coatings\": [\n        \"NNS\"\n    ], \n    \"potboilers\": [\n        \"NNS\"\n    ], \n    \"proceed\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"warship\": [\n        \"NN\"\n    ], \n    \"Tesoro\": [\n        \"NNP\"\n    ], \n    \"faint\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"irritate\": [\n        \"VB\"\n    ], \n    \"Sipping\": [\n        \"VBG\"\n    ], \n    \"widens\": [\n        \"VBZ\"\n    ], \n    \"underprivileged\": [\n        \"JJ\"\n    ], \n    \"knows\": [\n        \"VBZ\"\n    ], \n    \"fun-filled\": [\n        \"JJ\"\n    ], \n    \"Quarterly\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Braidwood\": [\n        \"NNP\"\n    ], \n    \"Newspapers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"taming\": [\n        \"VBG\"\n    ], \n    \"Sonar\": [\n        \"NN\"\n    ], \n    \"mellow\": [\n        \"JJ\"\n    ], \n    \"Cir.\": [\n        \"NNP\"\n    ], \n    \"glad\": [\n        \"JJ\"\n    ], \n    \"parable\": [\n        \"NN\"\n    ], \n    \"Inx\": [\n        \"NNP\"\n    ], \n    \"Messerschmitt\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"irritations\": [\n        \"NNS\"\n    ], \n    \"tamper-proof\": [\n        \"JJ\"\n    ], \n    \"Inn\": [\n        \"NNP\"\n    ], \n    \"Oneita\": [\n        \"NNP\"\n    ], \n    \"wrestler\": [\n        \"NN\"\n    ], \n    \"wrestles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Ind\": [\n        \"NNP\"\n    ], \n    \"co-host\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Ing\": [\n        \"NNP\"\n    ], \n    \"tabernacles\": [\n        \"NNS\"\n    ], \n    \"Inc\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"pony\": [\n        \"NN\"\n    ], \n    \"chromium-substituted\": [\n        \"JJ\"\n    ], \n    \"Jeancourt-Galignani\": [\n        \"NNP\"\n    ], \n    \"three-inch-long\": [\n        \"JJ\"\n    ], \n    \"pond\": [\n        \"NN\"\n    ], \n    \"Coleman\": [\n        \"NNP\"\n    ], \n    \"swung\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"allege\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Caucasian\": [\n        \"NNP\"\n    ], \n    \"Parliament\": [\n        \"NNP\"\n    ], \n    \"acrimony\": [\n        \"NN\"\n    ], \n    \"obverse\": [\n        \"NN\"\n    ], \n    \"bridgehead\": [\n        \"NN\"\n    ], \n    \"nonexecutive\": [\n        \"JJ\"\n    ], \n    \"Holty\": [\n        \"NNP\"\n    ], \n    \"Holtz\": [\n        \"NNP\"\n    ], \n    \"explains\": [\n        \"VBZ\"\n    ], \n    \"acknowledging\": [\n        \"VBG\"\n    ], \n    \"Elusive\": [\n        \"NNP\"\n    ], \n    \"headrest\": [\n        \"NN\"\n    ], \n    \"STUDY\": [\n        \"NN\"\n    ], \n    \"expedient\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Shiseido\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Mattel\": [\n        \"NNP\"\n    ], \n    \"Mattes\": [\n        \"NNP\"\n    ], \n    \"Matter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"catalog\": [\n        \"NN\"\n    ], \n    \"Tropidoclonion\": [\n        \"NNP\"\n    ], \n    \"Incapable\": [\n        \"JJ\"\n    ], \n    \"WCI\": [\n        \"NNP\"\n    ], \n    \"chiefly\": [\n        \"RB\"\n    ], \n    \"queenside\": [\n        \"NN\"\n    ], \n    \"artful\": [\n        \"JJ\"\n    ], \n    \"generic\": [\n        \"JJ\"\n    ], \n    \"Friedreich\": [\n        \"NNP\"\n    ], \n    \"Lopatnikoff\": [\n        \"NNP\"\n    ], \n    \"twenty-mile\": [\n        \"JJ\"\n    ], \n    \"escritoire\": [\n        \"NN\"\n    ], \n    \"romancers\": [\n        \"NNS\"\n    ], \n    \"Relationships\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"earlier-the\": [\n        \"IN\"\n    ], \n    \"Viking\\\\/Penguin\": [\n        \"NN\"\n    ], \n    \"ever-greater\": [\n        \"JJ\"\n    ], \n    \"developed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Intar\": [\n        \"NNP\"\n    ], \n    \"doorknob\": [\n        \"NN\"\n    ], \n    \"reversing\": [\n        \"VBG\"\n    ], \n    \"Per-share\": [\n        \"JJ\"\n    ], \n    \"Dingwall\": [\n        \"NNP\"\n    ], \n    \"bartering\": [\n        \"NN\"\n    ], \n    \"Recessions\": [\n        \"NNS\"\n    ], \n    \"Gen\": [\n        \"NNP\"\n    ], \n    \"underplayed\": [\n        \"VBN\"\n    ], \n    \"scholar-in-residence\": [\n        \"NN\"\n    ], \n    \"developer\": [\n        \"NN\"\n    ], \n    \"Full\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"slipped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Beam\": [\n        \"NNP\"\n    ], \n    \"misspelled\": [\n        \"VBN\"\n    ], \n    \"social-economic\": [\n        \"JJ\"\n    ], \n    \"Fuld\": [\n        \"NNP\"\n    ], \n    \"Deyo\": [\n        \"NNP\"\n    ], \n    \"abbey\": [\n        \"NN\"\n    ], \n    \"jailing\": [\n        \"VBG\"\n    ], \n    \"resort\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"interleukin-2\": [\n        \"NN\"\n    ], \n    \"interleukin-3\": [\n        \"NN\"\n    ], \n    \"interleukin-4\": [\n        \"NN\"\n    ], \n    \"corner-posts\": [\n        \"NNS\"\n    ], \n    \"Losing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"accompli\": [\n        \"NN\"\n    ], \n    \"no-drinking\": [\n        \"JJ\"\n    ], \n    \"dispatchers\": [\n        \"NNS\"\n    ], \n    \"market-basket\": [\n        \"JJ\"\n    ], \n    \"immobility\": [\n        \"NN\"\n    ], \n    \"underground\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Trudeau\": [\n        \"NNP\"\n    ], \n    \"Tiveden\": [\n        \"NNP\"\n    ], \n    \"communities\": [\n        \"NNS\"\n    ], \n    \"Obesity\": [\n        \"NN\"\n    ], \n    \"asbestos-containing\": [\n        \"JJ\"\n    ], \n    \"ruthlessness\": [\n        \"NN\"\n    ], \n    \"overused\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Hutchins\": [\n        \"NNP\"\n    ], \n    \"characterizes\": [\n        \"VBZ\"\n    ], \n    \"gazer\": [\n        \"NN\"\n    ], \n    \"debacle\": [\n        \"NN\"\n    ], \n    \"air-freight\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"characterized\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"wrong\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RB|JJ\"\n    ], \n    \"say-because\": [\n        \"IN\"\n    ], \n    \"colder\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Distracted\": [\n        \"VBN\"\n    ], \n    \"short-to-medium-range\": [\n        \"JJ\"\n    ], \n    \"brother\": [\n        \"NN\"\n    ], \n    \"coolnesses\": [\n        \"NNS\"\n    ], \n    \"stagflation\": [\n        \"NN\"\n    ], \n    \"rhinotracheitis\": [\n        \"NN\"\n    ], \n    \"organised\": [\n        \"VBD\"\n    ], \n    \"scot-free\": [\n        \"JJ\"\n    ], \n    \"Were\": [\n        \"VBD\", \n        \"VB\"\n    ], \n    \"Door\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"X-region\": [\n        \"NN\"\n    ], \n    \"Weathers\": [\n        \"NNPS\"\n    ], \n    \"lionesses\": [\n        \"NNS\"\n    ], \n    \"sure-fire\": [\n        \"JJ\"\n    ], \n    \"all-purpose\": [\n        \"JJ\"\n    ], \n    \"Culturally\": [\n        \"RB\"\n    ], \n    \"appearances\": [\n        \"NNS\"\n    ], \n    \"relisting\": [\n        \"NN\"\n    ], \n    \"reinman\": [\n        \"NN\"\n    ], \n    \"Perennian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"monotone\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Howser\": [\n        \"NNP\"\n    ], \n    \"seizin\": [\n        \"VBG\"\n    ], \n    \"Papua\": [\n        \"NNP\"\n    ], \n    \"cookie\": [\n        \"NN\"\n    ], \n    \"monotony\": [\n        \"NN\"\n    ], \n    \"reconfigure\": [\n        \"NN\"\n    ], \n    \"job-rating\": [\n        \"JJ\"\n    ], \n    \"Systems\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Malone\": [\n        \"NNP\"\n    ], \n    \"Mutant\": [\n        \"NNP\"\n    ], \n    \"Flemish\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"outstripping\": [\n        \"VBG\"\n    ], \n    \"Paso\": [\n        \"NNP\"\n    ], \n    \"Broadbeach\": [\n        \"NNP\"\n    ], \n    \"Past\": [\n        \"JJ\", \n        \"IN\", \n        \"NN\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"task-force\": [\n        \"NN\"\n    ], \n    \"Expect\": [\n        \"VB\"\n    ], \n    \"disincentive\": [\n        \"NN\"\n    ], \n    \"experimenter\": [\n        \"NN\"\n    ], \n    \"Zelig\": [\n        \"NNP\"\n    ], \n    \"``...\": [\n        \":\"\n    ], \n    \"Redondo\": [\n        \"NNP\"\n    ], \n    \"well-known\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"knick-knacks\": [\n        \"NNS\"\n    ], \n    \"notify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Microprocessor\": [\n        \"NNP\"\n    ], \n    \"says\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"pleasin\": [\n        \"VBG\"\n    ], \n    \"air-interdiction\": [\n        \"NN\"\n    ], \n    \"over-achievers\": [\n        \"NNS\"\n    ], \n    \"conventionalized\": [\n        \"VBN\"\n    ], \n    \"diagonally\": [\n        \"RB\"\n    ], \n    \"recombinant-DNA\": [\n        \"NN\"\n    ], \n    \"flimsy\": [\n        \"JJ\"\n    ], \n    \"end-of-the-season\": [\n        \"JJ\"\n    ], \n    \"orthopedics\": [\n        \"NNS\"\n    ], \n    \"Schwarzman\": [\n        \"NNP\"\n    ], \n    \"MD-80-series\": [\n        \"NN\"\n    ], \n    \"Evangelism\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"aristocracy\": [\n        \"NN\"\n    ], \n    \"disqualification\": [\n        \"NN\"\n    ], \n    \"VTC\": [\n        \"NNP\"\n    ], \n    \"electrochemicals\": [\n        \"NNS\"\n    ], \n    \"GTG\": [\n        \"NNP\"\n    ], \n    \"more-affordable\": [\n        \"JJ\"\n    ], \n    \"trade-group\": [\n        \"NN\"\n    ], \n    \"Gravity\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"calf\": [\n        \"NN\"\n    ], \n    \"A.R.\": [\n        \"NNP\"\n    ], \n    \"VTX\": [\n        \"NNP\"\n    ], \n    \"inaugurated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Road\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"nagging\": [\n        \"JJ\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"professeur\": [\n        \"NN\"\n    ], \n    \"over-committed\": [\n        \"JJ\"\n    ], \n    \"exponents\": [\n        \"NNS\"\n    ], \n    \"harping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cuff\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"MEATS\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"outdoors\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"book-buying\": [\n        \"JJ\"\n    ], \n    \"restful\": [\n        \"JJ\"\n    ], \n    \"breakeven\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mecaniques\": [\n        \"NNP\"\n    ], \n    \"liabilities\": [\n        \"NNS\", \n        \".\"\n    ], \n    \"comforting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Chopin\": [\n        \"NNP\"\n    ], \n    \"Giveaways\": [\n        \"NNS\"\n    ], \n    \"engulf\": [\n        \"VB\"\n    ], \n    \"long-format\": [\n        \"JJ\"\n    ], \n    \"Athenaeum\": [\n        \"NNP\"\n    ], \n    \"Kasparov\": [\n        \"NNP\"\n    ], \n    \"Odessa\": [\n        \"NNP\"\n    ], \n    \"brokerage-by-brokerage\": [\n        \"JJ\"\n    ], \n    \"securitization\": [\n        \"NN\"\n    ], \n    \"Jagan\": [\n        \"NNP\"\n    ], \n    \"Prostitutes\": [\n        \"NNS\"\n    ], \n    \"rhapsodic\": [\n        \"JJ\"\n    ], \n    \"displacing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Allendale\": [\n        \"NNP\"\n    ], \n    \"fender-benders\": [\n        \"NNS\"\n    ], \n    \"punchers\": [\n        \"NNS\"\n    ], \n    \"finding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"donor\": [\n        \"NN\"\n    ], \n    \"Decorated\": [\n        \"VBN\"\n    ], \n    \"stigmatizes\": [\n        \"VBZ\"\n    ], \n    \"Germans\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"seedless\": [\n        \"JJ\"\n    ], \n    \"unremarkable\": [\n        \"JJ\"\n    ], \n    \"instigator\": [\n        \"NN\"\n    ], \n    \"Humulin\": [\n        \"NNP\"\n    ], \n    \"biggest-ever\": [\n        \"JJ\"\n    ], \n    \"Priviet\": [\n        \"NNP\"\n    ], \n    \"Attacks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"screenings\": [\n        \"NNS\"\n    ], \n    \"me\": [\n        \"PRP\", \n        \"FW\"\n    ], \n    \"Braunreuther\": [\n        \"NNP\"\n    ], \n    \"Vega\": [\n        \"NNP\"\n    ], \n    \"half-dressed\": [\n        \"JJ\"\n    ], \n    \"nothing\": [\n        \"NN\"\n    ], \n    \"chuck-a-luck\": [\n        \"NN\"\n    ], \n    \"Liquidity\": [\n        \"NN\"\n    ], \n    \"convoy\": [\n        \"NN\"\n    ], \n    \"strikebreakers\": [\n        \"NNS\"\n    ], \n    \"Speer\": [\n        \"NNP\"\n    ], \n    \"behynde\": [\n        \"IN\"\n    ], \n    \"Aero-Space\": [\n        \"NNP\"\n    ], \n    \"Interpersonal\": [\n        \"JJ\"\n    ], \n    \"deans\": [\n        \"NNS\"\n    ], \n    \"Peterbroeck\": [\n        \"NNP\"\n    ], \n    \"saloon\": [\n        \"NN\"\n    ], \n    \"Speed\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Sikh\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Backseat\": [\n        \"NN\"\n    ], \n    \"Yankee-hatred\": [\n        \"NN\"\n    ], \n    \"pennies\": [\n        \"NNS\"\n    ], \n    \"Lung-cancer\": [\n        \"NN\"\n    ], \n    \"readjustment\": [\n        \"NN\"\n    ], \n    \"you\": [\n        \"PRP\", \n        \"VBP\", \n        \"RP\"\n    ], \n    \"Garret\": [\n        \"NNP\"\n    ], \n    \"Rational\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"oil-price\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cholesterol-fearing\": [\n        \"JJ\"\n    ], \n    \"dilation\": [\n        \"NN\"\n    ], \n    \"outrigger\": [\n        \"NN\"\n    ], \n    \"podium\": [\n        \"NN\"\n    ], \n    \"gilded\": [\n        \"JJ\"\n    ], \n    \"delinquent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rampant\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"God-forsaken\": [\n        \"JJ\"\n    ], \n    \"inflection\": [\n        \"NN\"\n    ], \n    \"mosey\": [\n        \"VB\"\n    ], \n    \"congestive\": [\n        \"JJ\"\n    ], \n    \"shepherd\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"boardings\": [\n        \"NNS\"\n    ], \n    \"deader\": [\n        \"JJR\"\n    ], \n    \"strongholds\": [\n        \"NNS\"\n    ], \n    \"outdoorsman\\\\\": [\n        \"NN\"\n    ], \n    \"meditations\": [\n        \"NNS\"\n    ], \n    \"sligthly\": [\n        \"RB\"\n    ], \n    \"multimillionaire\": [\n        \"NN\"\n    ], \n    \"frumpy\": [\n        \"JJ\"\n    ], \n    \"morphophonemic\": [\n        \"JJ\"\n    ], \n    \"Recommendations\": [\n        \"NNS\"\n    ], \n    \"determines\": [\n        \"VBZ\"\n    ], \n    \"unaddressed\": [\n        \"JJ\"\n    ], \n    \"Fiske\": [\n        \"NNP\"\n    ], \n    \"medicines\": [\n        \"NNS\"\n    ], \n    \"business-machines\": [\n        \"NNS\"\n    ], \n    \"already-reluctant\": [\n        \"JJ\"\n    ], \n    \"investigate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mistakes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Itasca\": [\n        \"NNP\"\n    ], \n    \"antihero\": [\n        \"NN\"\n    ], \n    \"heaping\": [\n        \"VBG\"\n    ], \n    \"Paint\": [\n        \"NN\"\n    ], \n    \"s-values\": [\n        \"NNS\"\n    ], \n    \"Chairman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"place-name\": [\n        \"JJ\"\n    ], \n    \"SEPT.\": [\n        \"NNP\"\n    ], \n    \"choreographer\": [\n        \"NN\"\n    ], \n    \"achieved\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"achieves\": [\n        \"VBZ\"\n    ], \n    \"lump-sum\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"non-Ford\": [\n        \"JJ\"\n    ], \n    \"sportswear\": [\n        \"NN\"\n    ], \n    \"Vahid\": [\n        \"NNP\"\n    ], \n    \"Buildings\": [\n        \"NNS\"\n    ], \n    \"mechanically\": [\n        \"RB\"\n    ], \n    \"merry-go-round\": [\n        \"NN\"\n    ], \n    \"BEING\": [\n        \"VBG\"\n    ], \n    \"Veniamin\": [\n        \"NNP\"\n    ], \n    \"Zamya\": [\n        \"NNP\"\n    ], \n    \"degrading\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"wrinkling\": [\n        \"VBG\"\n    ], \n    \"playmates\": [\n        \"NNS\"\n    ], \n    \"downturn\": [\n        \"NN\"\n    ], \n    \"atolls\": [\n        \"NNS\"\n    ], \n    \"artery-clogging\": [\n        \"NN\"\n    ], \n    \"Mahayana\": [\n        \"NNP\"\n    ], \n    \"profiling\": [\n        \"VBG\"\n    ], \n    \"creating\": [\n        \"VBG\"\n    ], \n    \"Dolora\": [\n        \"NNP\"\n    ], \n    \"pinch-hit\": [\n        \"VB\"\n    ], \n    \"Kitcat\": [\n        \"NNP\"\n    ], \n    \"nonionic\": [\n        \"JJ\"\n    ], \n    \"arteriosclerosis\": [\n        \"NN\"\n    ], \n    \"printable\": [\n        \"JJ\"\n    ], \n    \"competent\": [\n        \"JJ\"\n    ], \n    \"tumbledown\": [\n        \"JJ\"\n    ], \n    \"Accumulation\": [\n        \"NNP\"\n    ], \n    \"WESLEY\": [\n        \"NNP\"\n    ], \n    \"Heifetz\": [\n        \"NNP\"\n    ], \n    \"Reinhard\": [\n        \"NNP\"\n    ], \n    \"distinctively\": [\n        \"RB\"\n    ], \n    \"bludgeoned\": [\n        \"VBN\"\n    ], \n    \"cleanly\": [\n        \"RB\"\n    ], \n    \"Callers\": [\n        \"NNS\"\n    ], \n    \"pre-college\": [\n        \"JJ\"\n    ], \n    \"context\": [\n        \"NN\"\n    ], \n    \"nine-year-old\": [\n        \"JJ\"\n    ], \n    \"rollers\": [\n        \"NNS\"\n    ], \n    \"blissfully\": [\n        \"RB\"\n    ], \n    \"Happiness\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"suability\": [\n        \"NN\"\n    ], \n    \"professorial\": [\n        \"JJ\"\n    ], \n    \"chaperon\": [\n        \"NN\"\n    ], \n    \"share-price\": [\n        \"JJ\"\n    ], \n    \"Tateisi\": [\n        \"NNP\"\n    ], \n    \"Updike\": [\n        \"NNP\"\n    ], \n    \"rave\": [\n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Testament-style\": [\n        \"JJ\"\n    ], \n    \"decline\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"deprecatory\": [\n        \"JJ\"\n    ], \n    \"political\": [\n        \"JJ\"\n    ], \n    \"middle-brow\": [\n        \"JJ\"\n    ], \n    \"Sasha\": [\n        \"NNP\"\n    ], \n    \"small-investor\": [\n        \"NN\"\n    ], \n    \"checkbook\": [\n        \"NN\"\n    ], \n    \"make-up\": [\n        \"NN\"\n    ], \n    \"Robec\": [\n        \"NNP\"\n    ], \n    \"Galt\": [\n        \"NNP\"\n    ], \n    \"low-frequency\": [\n        \"JJ\"\n    ], \n    \"out-trade\": [\n        \"VB\"\n    ], \n    \"fatiegued\": [\n        \"JJ\"\n    ], \n    \"siting\": [\n        \"NN\"\n    ], \n    \"Lohman\": [\n        \"NNP\"\n    ], \n    \"orchestral\": [\n        \"JJ\"\n    ], \n    \"Despite\": [\n        \"IN\"\n    ], \n    \"mitre\": [\n        \"NN\"\n    ], \n    \"brokers\": [\n        \"NNS\"\n    ], \n    \"orchestras\": [\n        \"NNS\"\n    ], \n    \"escapees\": [\n        \"NNS\"\n    ], \n    \"KRC\": [\n        \"NNP\"\n    ], \n    \"rocking\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"unflattering\": [\n        \"JJ\"\n    ], \n    \"Andreassen\": [\n        \"NNP\"\n    ], \n    \"Allegiance\": [\n        \"NNP\"\n    ], \n    \"nameplates\": [\n        \"NNS\"\n    ], \n    \"stumbling-block\": [\n        \"NN\"\n    ], \n    \"water-line\": [\n        \"NN\"\n    ], \n    \"ENTERTAINMENT\": [\n        \"NNP\"\n    ], \n    \"orthography\": [\n        \"NN\"\n    ], \n    \"epicycle\": [\n        \"NN\"\n    ], \n    \"Chiba\": [\n        \"NNP\"\n    ], \n    \"awakening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"headway\": [\n        \"NN\"\n    ], \n    \"alliances\": [\n        \"NNS\"\n    ], \n    \"school-board\": [\n        \"NN\"\n    ], \n    \"producer-price\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"santos\": [\n        \"FW\"\n    ], \n    \"longer-range\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"rosy\": [\n        \"JJ\"\n    ], \n    \"Nation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Frederic\": [\n        \"NNP\"\n    ], \n    \"kimono\": [\n        \"FW\"\n    ], \n    \"nonconformists\": [\n        \"NNS\"\n    ], \n    \"firearms\": [\n        \"NNS\"\n    ], \n    \"deletion\": [\n        \"NN\"\n    ], \n    \"peoples\": [\n        \"NNS\"\n    ], \n    \"esteemed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"advise\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"YOM\": [\n        \"NNP\"\n    ], \n    \"literature\": [\n        \"NN\"\n    ], \n    \"selle\": [\n        \"VB\"\n    ], \n    \"Taui\": [\n        \"NNP\"\n    ], \n    \"flows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Traditional\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"flown\": [\n        \"VBN\"\n    ], \n    \"then-Socialist\": [\n        \"JJ\"\n    ], \n    \"unrestrained\": [\n        \"JJ\"\n    ], \n    \"YOU\": [\n        \"PRP\"\n    ], \n    \"Ex-Im\": [\n        \"NNP\"\n    ], \n    \"Samar\": [\n        \"NNP\"\n    ], \n    \"Newspapermen\": [\n        \"NNS\"\n    ], \n    \"stateless\": [\n        \"JJ\"\n    ], \n    \"congregated\": [\n        \"VBD\"\n    ], \n    \"Carter\": [\n        \"NNP\"\n    ], \n    \"Trevelyan\": [\n        \"NNP\"\n    ], \n    \"chickens\": [\n        \"NNS\"\n    ], \n    \"underreported\": [\n        \"VBN\"\n    ], \n    \"Cartel\": [\n        \"NNP\"\n    ], \n    \"motorscooters\": [\n        \"NNS\"\n    ], \n    \"bureaucracies\": [\n        \"NNS\"\n    ], \n    \"pollen\": [\n        \"NN\"\n    ], \n    \"gorgeously\": [\n        \"RB\"\n    ], \n    \"Planter\": [\n        \"NNP\"\n    ], \n    \"sex-discrimination\": [\n        \"NN\"\n    ], \n    \"polled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Drying\": [\n        \"NN\"\n    ], \n    \"pre-margin\": [\n        \"JJ\"\n    ], \n    \"Bonso\": [\n        \"NNP\"\n    ], \n    \"pre-World\": [\n        \"NNP\"\n    ], \n    \"Soconoco\": [\n        \"NNP\"\n    ], \n    \"bestubbled\": [\n        \"JJ\"\n    ], \n    \"Bourbon\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Clue\": [\n        \"NNP\"\n    ], \n    \"tables\": [\n        \"NNS\"\n    ], \n    \"tablet\": [\n        \"NN\"\n    ], \n    \"workers\": [\n        \"NNS\"\n    ], \n    \"Diversified\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"drooped\": [\n        \"VBD\"\n    ], \n    \"be-that\": [\n        \"VB\"\n    ], \n    \"national-security\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Glocester\": [\n        \"NNP\"\n    ], \n    \"tabled\": [\n        \"VBN\"\n    ], \n    \"Teaneck\": [\n        \"NNP\"\n    ], \n    \"associations\": [\n        \"NNS\"\n    ], \n    \"customers\": [\n        \"NNS\"\n    ], \n    \"Lass\": [\n        \"NNP\"\n    ], \n    \"crude-steel\": [\n        \"NN\"\n    ], \n    \"amended\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Jamaica\": [\n        \"NNP\"\n    ], \n    \"Secondary\": [\n        \"JJ\"\n    ], \n    \"spires\": [\n        \"NNS\"\n    ], \n    \"DataComm\": [\n        \"NNP\"\n    ], \n    \"moods\": [\n        \"NNS\"\n    ], \n    \"awaken\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Opax\": [\n        \"NNP\"\n    ], \n    \"Marmee\": [\n        \"NNP\"\n    ], \n    \"plundering\": [\n        \"NN\"\n    ], \n    \"Filmstar\": [\n        \"NNP\"\n    ], \n    \"Tomlin\": [\n        \"NNP\"\n    ], \n    \"Links\": [\n        \"NNP\"\n    ], \n    \"shaped\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Tacitus\": [\n        \"NNP\"\n    ], \n    \"nearsightedly\": [\n        \"RB\"\n    ], \n    \"commanders\": [\n        \"NNS\"\n    ], \n    \"digitalized\": [\n        \"JJ\"\n    ], \n    \"shapes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Stains\": [\n        \"NNS\"\n    ], \n    \"distrust\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"entice\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hand-hewn\": [\n        \"JJ\"\n    ], \n    \"essential\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"grocery-store\": [\n        \"JJ\"\n    ], \n    \"Butch\": [\n        \"NNP\"\n    ], \n    \"hallmark\": [\n        \"NN\"\n    ], \n    \"front-runner\": [\n        \"NN\"\n    ], \n    \"Simplification\": [\n        \"NN\"\n    ], \n    \"billets\": [\n        \"NNS\"\n    ], \n    \"sages\": [\n        \"NNS\"\n    ], \n    \"Siena\": [\n        \"NNP\"\n    ], \n    \"sprightly\": [\n        \"JJ\"\n    ], \n    \"accomplishment\": [\n        \"NN\"\n    ], \n    \"you-know\": [\n        \"NN\"\n    ], \n    \"aptitudes\": [\n        \"NNS\"\n    ], \n    \"SmithKline\": [\n        \"NNP\"\n    ], \n    \"String\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Tully\": [\n        \"NNP\"\n    ], \n    \"Tulln\": [\n        \"NNP\"\n    ], \n    \"Hemisphere\": [\n        \"NNP\"\n    ], \n    \"orthodontists\": [\n        \"NNS\"\n    ], \n    \"Cloquet\": [\n        \"NNP\"\n    ], \n    \"deadbeats\": [\n        \"NNS\"\n    ], \n    \"Sheeran\": [\n        \"NNP\"\n    ], \n    \"mutts\": [\n        \"NNS\"\n    ], \n    \"McToxics\": [\n        \"NNP\"\n    ], \n    \"Timex\": [\n        \"NNP\"\n    ], \n    \"senior-level\": [\n        \"JJ\"\n    ], \n    \"Walkman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"understanded\": [\n        \"VBN\"\n    ], \n    \"raided\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Times\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"UTLs\": [\n        \"NNS\"\n    ], \n    \"aloft\": [\n        \"RB\"\n    ], \n    \"Timen\": [\n        \"NNP\"\n    ], \n    \"PLEA\": [\n        \"NN\"\n    ], \n    \"divest\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"informatics\": [\n        \"NNS\"\n    ], \n    \"raider\": [\n        \"NN\"\n    ], \n    \"Damned\": [\n        \"JJ\", \n        \"RB\", \n        \"UH\"\n    ], \n    \"dormant\": [\n        \"JJ\"\n    ], \n    \"Square\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"firing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"NN|VBG\"\n    ], \n    \"full-strength\": [\n        \"JJ\"\n    ], \n    \"frightful\": [\n        \"JJ\"\n    ], \n    \"militia\": [\n        \"NN\"\n    ], \n    \"adversity\": [\n        \"NN\"\n    ], \n    \"purists\": [\n        \"NNS\"\n    ], \n    \"Wolcott\": [\n        \"NNP\"\n    ], \n    \"One-time\": [\n        \"JJ\"\n    ], \n    \"near-doubling\": [\n        \"NN\"\n    ], \n    \"greenfield\": [\n        \"NN\"\n    ], \n    \"plethora\": [\n        \"NN\"\n    ], \n    \"wive\": [\n        \"NNS\"\n    ], \n    \"nerveless\": [\n        \"JJ\"\n    ], \n    \"Earth-weeks\": [\n        \"NNS\"\n    ], \n    \"Joaquin\": [\n        \"NNP\"\n    ], \n    \"Grigoli\": [\n        \"NNP\"\n    ], \n    \"diameters\": [\n        \"NNS\"\n    ], \n    \"Geico\": [\n        \"NNP\"\n    ], \n    \"SALE\": [\n        \"NN\"\n    ], \n    \"baggy\": [\n        \"JJ\"\n    ], \n    \"capacitance\": [\n        \"NN\"\n    ], \n    \"disinflation\": [\n        \"NN\"\n    ], \n    \"Smorgon\": [\n        \"NNP\"\n    ], \n    \"second-floor\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fast-closing\": [\n        \"JJ\"\n    ], \n    \"oilseeds\": [\n        \"NNS\"\n    ], \n    \"austerely\": [\n        \"RB\"\n    ], \n    \"files\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"forlornly\": [\n        \"RB\"\n    ], \n    \"Poelker\": [\n        \"NNP\"\n    ], \n    \"filet\": [\n        \"NN\"\n    ], \n    \"beriberi\": [\n        \"NN\"\n    ], \n    \"High-yield\": [\n        \"JJ\"\n    ], \n    \"Stems\": [\n        \"NNS\"\n    ], \n    \"Deals\": [\n        \"NNS\"\n    ], \n    \"fisheries\": [\n        \"NNS\"\n    ], \n    \"usurp\": [\n        \"VB\"\n    ], \n    \"delta\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Helane\": [\n        \"NNP\"\n    ], \n    \"junior\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"raising\": [\n        \"VBG\", \n        \"NN\", \n        \"RP\"\n    ], \n    \"hush\": [\n        \"JJ\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"property-casualty\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"pliable\": [\n        \"JJ\"\n    ], \n    \"businessmen-authors\": [\n        \"NN\"\n    ], \n    \"Mumford\": [\n        \"NNP\"\n    ], \n    \"apricot\": [\n        \"NN\"\n    ], \n    \"Preston\": [\n        \"NNP\"\n    ], \n    \"elide\": [\n        \"VBP\"\n    ], \n    \"railbikers\": [\n        \"NNS\"\n    ], \n    \"Cruise\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"freshly-ground\": [\n        \"JJ\"\n    ], \n    \"strands\": [\n        \"NNS\"\n    ], \n    \"circuses\": [\n        \"NNS\"\n    ], \n    \"unwarranted\": [\n        \"JJ\"\n    ], \n    \"individuality\": [\n        \"NN\"\n    ], \n    \"Hubbard\": [\n        \"NNP\"\n    ], \n    \"freak\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"export-applications\": [\n        \"NNS\"\n    ], \n    \"allayed\": [\n        \"VBN\"\n    ], \n    \"Adirondacks\": [\n        \"NNPS\"\n    ], \n    \"enduringly\": [\n        \"RB\"\n    ], \n    \"mid-season\": [\n        \"NN\"\n    ], \n    \"non-Indonesian\": [\n        \"JJ\"\n    ], \n    \"puttering\": [\n        \"VBG\"\n    ], \n    \"ringings\": [\n        \"NNS\"\n    ], \n    \"Blazer\": [\n        \"NNP\"\n    ], \n    \"Anglo-Saxons\": [\n        \"NNS\"\n    ], \n    \"Gerby\": [\n        \"NNP\"\n    ], \n    \"rainy\": [\n        \"JJ\"\n    ], \n    \"Curtis\": [\n        \"NNP\"\n    ], \n    \"rains\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"endurance\": [\n        \"NN\"\n    ], \n    \"Annuities\": [\n        \"NNS\"\n    ], \n    \"democratically\": [\n        \"RB\"\n    ], \n    \"B.M.\": [\n        \"NNP\"\n    ], \n    \"altar\": [\n        \"NN\"\n    ], \n    \"Curtin\": [\n        \"NNP\"\n    ], \n    \"Macmillan\\\\/McGraw\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mock\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"profit-sharing\": [\n        \"NN\", \n        \"JJ\", \n        \"NNS\"\n    ], \n    \"muddled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Baking\": [\n        \"NNP\"\n    ], \n    \"generates\": [\n        \"VBZ\"\n    ], \n    \"trade-deficit\": [\n        \"NN\"\n    ], \n    \"return-printing\": [\n        \"JJ\"\n    ], \n    \"hideouts\": [\n        \"NNS\"\n    ], \n    \"shrouding\": [\n        \"VBG\"\n    ], \n    \"generated\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBG\"\n    ], \n    \"Functionalism\": [\n        \"NN\"\n    ], \n    \"vigil\": [\n        \"NN\"\n    ], \n    \"Union.\": [\n        \"NNP\"\n    ], \n    \"counterpointing\": [\n        \"VBG\"\n    ], \n    \"Buries\": [\n        \"VBZ\"\n    ], \n    \"dead-weight\": [\n        \"JJ\"\n    ], \n    \"Birdpark\": [\n        \"NNP\"\n    ], \n    \"NKF\": [\n        \"NNP\"\n    ], \n    \"vice\": [\n        \"NN\", \n        \"FW\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"initiation\": [\n        \"NN\"\n    ], \n    \"Malcolm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"prayer-requests\": [\n        \"NN\"\n    ], \n    \"onct\": [\n        \"IN\", \n        \"JJ\"\n    ], \n    \"attacking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"NOTE\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Espy\": [\n        \"NNP\"\n    ], \n    \"Buried\": [\n        \"VBN\"\n    ], \n    \"Fund-Raisers\": [\n        \"NNS\"\n    ], \n    \"beers\": [\n        \"NNS\"\n    ], \n    \"Screvane\": [\n        \"NNP\"\n    ], \n    \"once\": [\n        \"RB\", \n        \"IN\"\n    ], \n    \"Pontiac\": [\n        \"NNP\"\n    ], \n    \"epitomizes\": [\n        \"VBZ\"\n    ], \n    \"Midwesterners\": [\n        \"NNS\"\n    ], \n    \"Baskin-Robbins\": [\n        \"NNP\"\n    ], \n    \"sluggishness\": [\n        \"NN\"\n    ], \n    \"alleyways\": [\n        \"NNS\"\n    ], \n    \"Goldston\": [\n        \"NNP\"\n    ], \n    \"resistance\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"B-58\": [\n        \"NN\"\n    ], \n    \"eyesore\": [\n        \"NN\"\n    ], \n    \"Boating\": [\n        \"NNP\", \n        \"NN\", \n        \"VBG\"\n    ], \n    \"Draftula\": [\n        \"NNP\"\n    ], \n    \"epitomized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Yasushige\": [\n        \"NNP\"\n    ], \n    \"acclimatized\": [\n        \"VBN\"\n    ], \n    \"worrisome\": [\n        \"JJ\"\n    ], \n    \"rigidity\": [\n        \"NN\"\n    ], \n    \"middle-school\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ky.\": [\n        \"NNP\"\n    ], \n    \"liquor-crazed\": [\n        \"JJ\"\n    ], \n    \"Object\": [\n        \"NN\"\n    ], \n    \"Texas-based\": [\n        \"JJ\"\n    ], \n    \"Canon\": [\n        \"NNP\"\n    ], \n    \"KuwAm\": [\n        \"NNP\"\n    ], \n    \"micoprocessors\": [\n        \"NNS\"\n    ], \n    \"Familia\": [\n        \"NNP\"\n    ], \n    \"Grien\": [\n        \"NNP\"\n    ], \n    \"breathing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"seized\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"Whitman\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"aftershock-resistant\": [\n        \"JJ\"\n    ], \n    \"photocopying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"egotistic\": [\n        \"JJ\"\n    ], \n    \"spoon\": [\n        \"NN\"\n    ], \n    \"seizes\": [\n        \"VBZ\"\n    ], \n    \"un-English\": [\n        \"NNP\"\n    ], \n    \"high-voltage\": [\n        \"JJ\"\n    ], \n    \"spook\": [\n        \"VBP\"\n    ], \n    \"artery\": [\n        \"NN\"\n    ], \n    \"spoof\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Irishman\": [\n        \"NN\"\n    ], \n    \"Kyi\": [\n        \"NNP\"\n    ], \n    \"Kyo\": [\n        \"NNP\"\n    ], \n    \"well-placed\": [\n        \"JJ\"\n    ], \n    \"Kosovo\": [\n        \"NNP\"\n    ], \n    \"gullible\": [\n        \"JJ\"\n    ], \n    \"warranties\": [\n        \"NNS\"\n    ], \n    \"polling\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Clinique\": [\n        \"NNP\"\n    ], \n    \"right-wingers\": [\n        \"NNS\"\n    ], \n    \"snails\": [\n        \"NNS\"\n    ], \n    \"Kyu\": [\n        \"NNP\"\n    ], \n    \"relives\": [\n        \"VBZ\"\n    ], \n    \"summiteers\": [\n        \"NNS\"\n    ], \n    \"someday\": [\n        \"RB\"\n    ], \n    \"Hashers\": [\n        \"NNS\"\n    ], \n    \"Gustavo\": [\n        \"NNP\"\n    ], \n    \"goodies\": [\n        \"NNS\"\n    ], \n    \"Discrimination\": [\n        \"NNP\"\n    ], \n    \"Vegetables\": [\n        \"NNS\"\n    ], \n    \"A.M.E.\": [\n        \"NNP\"\n    ], \n    \"lightest\": [\n        \"JJS\"\n    ], \n    \"Gustave\": [\n        \"NNP\"\n    ], \n    \"traveling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Krick\": [\n        \"NNP\"\n    ], \n    \"Staffing\": [\n        \"NNP\"\n    ], \n    \"inaccurate\": [\n        \"JJ\"\n    ], \n    \"Gleason\": [\n        \"NNP\"\n    ], \n    \"highly-regarded\": [\n        \"JJ\"\n    ], \n    \"gainers\": [\n        \"NNS\"\n    ], \n    \"appeased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"familiarization\": [\n        \"NN\"\n    ], \n    \"sables\": [\n        \"NNS\"\n    ], \n    \"capital\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Atco\": [\n        \"NNP\"\n    ], \n    \"Clan\": [\n        \"NNP\"\n    ], \n    \"Clad\": [\n        \"VBN\"\n    ], \n    \"canary-colored\": [\n        \"JJ\"\n    ], \n    \"sideboard\": [\n        \"NN\"\n    ], \n    \"myosin\": [\n        \"NN\"\n    ], \n    \"Leonato\": [\n        \"NNP\"\n    ], \n    \"Hawaiian-Americans\": [\n        \"NNPS\"\n    ], \n    \"Clay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Rummaging\": [\n        \"VBG\"\n    ], \n    \"Seikosha\": [\n        \"NNP\"\n    ], \n    \"Moments\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"incriminating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"poignant\": [\n        \"JJ\"\n    ], \n    \"chevaux\": [\n        \"FW\"\n    ], \n    \"Novosti\": [\n        \"NNP\"\n    ], \n    \"bookstores\": [\n        \"NNS\"\n    ], \n    \"unsuitability\": [\n        \"NN\"\n    ], \n    \"boyars\": [\n        \"NNS\"\n    ], \n    \"fox-hounds\": [\n        \"NNS\"\n    ], \n    \"funn-ih\": [\n        \"JJ\"\n    ], \n    \"Readers\": [\n        \"NNS\"\n    ], \n    \"Boardrooms\": [\n        \"NNS\"\n    ], \n    \"Schnitzer\": [\n        \"NNP\"\n    ], \n    \"deciphered\": [\n        \"VBD\"\n    ], \n    \"Safety\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"once-lucrative\": [\n        \"JJ\"\n    ], \n    \"wil\": [\n        \"MD\"\n    ], \n    \"copybooks\": [\n        \"NNS\"\n    ], \n    \"combustion\": [\n        \"NN\"\n    ], \n    \"Labs\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Sukle\": [\n        \"NNP\"\n    ], \n    \"hippie\": [\n        \"NN\"\n    ], \n    \"consumption\": [\n        \"NN\"\n    ], \n    \"Calgary-based\": [\n        \"JJ\"\n    ], \n    \"Manlove\": [\n        \"NNP\"\n    ], \n    \"Amador\": [\n        \"NNP\"\n    ], \n    \"bottomless\": [\n        \"JJ\"\n    ], \n    \"Trans-Alaska\": [\n        \"NNP\"\n    ], \n    \"WOMEN\": [\n        \"NNS\"\n    ], \n    \"possession\": [\n        \"NN\"\n    ], \n    \"Lane\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Land\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"cobalt-60\": [\n        \"NN\"\n    ], \n    \"Lana\": [\n        \"NNP\"\n    ], \n    \"Monilia\": [\n        \"NN\"\n    ], \n    \"Francisco-based\": [\n        \"JJ\"\n    ], \n    \"red-clay\": [\n        \"NN\"\n    ], \n    \"Opa-Locka\": [\n        \"NNP\"\n    ], \n    \"posturing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"MVL\": [\n        \"NNP\"\n    ], \n    \"stabilized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"panted\": [\n        \"VBD\"\n    ], \n    \"impressionistically\": [\n        \"RB\"\n    ], \n    \"Pappas\": [\n        \"NNP\"\n    ], \n    \"undecorated\": [\n        \"JJ\"\n    ], \n    \"gyros\": [\n        \"NNS\"\n    ], \n    \"anywhere\": [\n        \"RB\"\n    ], \n    \"stabilizes\": [\n        \"VBZ\"\n    ], \n    \"stabilizer\": [\n        \"NN\"\n    ], \n    \"freedom\": [\n        \"NN\"\n    ], \n    \"Muki\": [\n        \"NNP\"\n    ], \n    \"Penguin\": [\n        \"NNP\"\n    ], \n    \"Prime\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"confidante\": [\n        \"NN\"\n    ], \n    \"patrol\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"patron\": [\n        \"NN\"\n    ], \n    \"Hammer.``\": [\n        \"``\"\n    ], \n    \"Groben\": [\n        \"NNP\"\n    ], \n    \"Europe-wide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Pioneer\": [\n        \"NNP\"\n    ], \n    \"confidants\": [\n        \"NNS\"\n    ], \n    \"publishable\": [\n        \"JJ\"\n    ], \n    \"Ct.\": [\n        \"NNP\"\n    ], \n    \"counterfeit\": [\n        \"JJ\"\n    ], \n    \"Marciano\": [\n        \"NNP\"\n    ], \n    \"compatible\": [\n        \"JJ\"\n    ], \n    \"long-banned\": [\n        \"JJ\"\n    ], \n    \"authorship\": [\n        \"NN\"\n    ], \n    \"Polysar\": [\n        \"NNP\"\n    ], \n    \"tamper\": [\n        \"VB\"\n    ], \n    \"dandelion\": [\n        \"NN\"\n    ], \n    \"unquestionable\": [\n        \"JJ\"\n    ], \n    \"Lynden\": [\n        \"NNP\"\n    ], \n    \"child-protection\": [\n        \"NN\"\n    ], \n    \"unquestionably\": [\n        \"RB\"\n    ], \n    \"slamming\": [\n        \"VBG\"\n    ], \n    \"instead\": [\n        \"RB\"\n    ], \n    \"WKRP\": [\n        \"NNP\"\n    ], \n    \"betwen\": [\n        \"NN\"\n    ], \n    \"dominion\": [\n        \"NN\"\n    ], \n    \"blustery\": [\n        \"JJ\"\n    ], \n    \"demonstrates\": [\n        \"VBZ\"\n    ], \n    \"abuse\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lescaze\": [\n        \"NNP\"\n    ], \n    \"Newquist\": [\n        \"NNP\"\n    ], \n    \"improviser\": [\n        \"NN\"\n    ], \n    \"improvises\": [\n        \"VBZ\"\n    ], \n    \"Ratified\": [\n        \"VBN\"\n    ], \n    \"Seeming\": [\n        \"VBG\"\n    ], \n    \"NORTHERN\": [\n        \"NNP\"\n    ], \n    \"light\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Missing\": [\n        \"JJ\"\n    ], \n    \"Herald-Post\": [\n        \"NNP\"\n    ], \n    \"honestly\": [\n        \"RB\"\n    ], \n    \"improvised\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"necklace\": [\n        \"NN\"\n    ], \n    \"pastries\": [\n        \"NNS\"\n    ], \n    \"Hammer\": [\n        \"NNP\"\n    ], \n    \"preparing\": [\n        \"VBG\"\n    ], \n    \"stamped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Susquehanna\": [\n        \"NNP\"\n    ], \n    \"coolly\": [\n        \"RB\"\n    ], \n    \"tropics\": [\n        \"NNS\"\n    ], \n    \"Chris-Craft\": [\n        \"NNP\"\n    ], \n    \"damsel\": [\n        \"NN\"\n    ], \n    \"Orpheus\": [\n        \"NNP\"\n    ], \n    \"travel-leisure\": [\n        \"JJ\"\n    ], \n    \"quake\": [\n        \"NN\"\n    ], \n    \"Kchessinska\": [\n        \"NNP\"\n    ], \n    \"Beirut\": [\n        \"NNP\"\n    ], \n    \"self-discipline\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"badges\": [\n        \"NNS\"\n    ], \n    \"depcreciation\": [\n        \"NN\"\n    ], \n    \"horizontally\": [\n        \"RB\"\n    ], \n    \"longitudinal\": [\n        \"JJ\"\n    ], \n    \"Mukachevo\": [\n        \"NNP\"\n    ], \n    \"Noxzema\": [\n        \"NNP\"\n    ], \n    \"less-polluting\": [\n        \"JJ\"\n    ], \n    \"restrain\": [\n        \"VB\"\n    ], \n    \"underpin\": [\n        \"VB\"\n    ], \n    \"redhead\": [\n        \"NN\"\n    ], \n    \"troubleshooter\": [\n        \"NN\"\n    ], \n    \"Chilver\": [\n        \"NNP\"\n    ], \n    \"Testifies\": [\n        \"VBZ\"\n    ], \n    \"belted\": [\n        \"VBD\"\n    ], \n    \"originator\": [\n        \"NN\"\n    ], \n    \"flex\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"CalFed\": [\n        \"NNP\"\n    ], \n    \"Padgett\": [\n        \"NNP\"\n    ], \n    \"re-enter\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Pollack\": [\n        \"NNP\"\n    ], \n    \"Suppliers\": [\n        \"NNS\"\n    ], \n    \"ozone-exposed\": [\n        \"JJ\"\n    ], \n    \"leisure\": [\n        \"NN\"\n    ], \n    \"oranges\": [\n        \"NNS\"\n    ], \n    \"topsoil\": [\n        \"NN\"\n    ], \n    \"Island\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Lavato\": [\n        \"NNP\"\n    ], \n    \"flea\": [\n        \"NN\"\n    ], \n    \"Mawr\": [\n        \"NNP\"\n    ], \n    \"hot-blooded\": [\n        \"JJ\"\n    ], \n    \"flee\": [\n        \"VB\"\n    ], \n    \"fled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bick\": [\n        \"NNP\"\n    ], \n    \"Datas\": [\n        \"NNP\"\n    ], \n    \"feast\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"haec\": [\n        \"FW\"\n    ], \n    \"Rubens\": [\n        \"NNP\"\n    ], \n    \"rockets\": [\n        \"NNS\"\n    ], \n    \"photofloodlights\": [\n        \"NNS\"\n    ], \n    \"bills\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Chicagoan\": [\n        \"NNP\"\n    ], \n    \"extended-body\": [\n        \"JJ\"\n    ], \n    \"related\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"JJ|VBN\"\n    ], \n    \"Next\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"depositor\": [\n        \"NN\"\n    ], \n    \"HIRING\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"eye-machine\": [\n        \"NN\"\n    ], \n    \"interplay\": [\n        \"NN\"\n    ], \n    \"relates\": [\n        \"VBZ\"\n    ], \n    \"irritability\": [\n        \"NN\"\n    ], \n    \"Junction\": [\n        \"NNP\"\n    ], \n    \"Trapp\": [\n        \"FW\"\n    ], \n    \"Lueger\": [\n        \"NNP\"\n    ], \n    \"refugee-assistance\": [\n        \"NN\"\n    ], \n    \"whooped\": [\n        \"VBD\"\n    ], \n    \"breadbox\": [\n        \"NN\"\n    ], \n    \"Jastrow\": [\n        \"NNP\"\n    ], \n    \"not-ace\": [\n        \"NN\"\n    ], \n    \"Baby\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"whooper\": [\n        \"NN\"\n    ], \n    \"attentively\": [\n        \"RB\"\n    ], \n    \"Linwick\": [\n        \"NNP\"\n    ], \n    \"Advent\": [\n        \"NNP\"\n    ], \n    \"to...\": [\n        \":\"\n    ], \n    \"maintains\": [\n        \"VBZ\"\n    ], \n    \"Rubendall\": [\n        \"NNP\"\n    ], \n    \"scandal-tossed\": [\n        \"JJ\"\n    ], \n    \"couriers\": [\n        \"NNS\"\n    ], \n    \"faulting\": [\n        \"VBG\"\n    ], \n    \"Sawnders\": [\n        \"NNP\"\n    ], \n    \"repairing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Gone\": [\n        \"VBN\"\n    ], \n    \"Gong\": [\n        \"NNP\"\n    ], \n    \"Ugly\": [\n        \"JJ\"\n    ], \n    \"via\": [\n        \"IN\"\n    ], \n    \"bluebush\": [\n        \"NN\"\n    ], \n    \"old-world\": [\n        \"JJ\"\n    ], \n    \"self-prescribed\": [\n        \"JJ\"\n    ], \n    \"shutout\": [\n        \"NN\"\n    ], \n    \"homelessness\": [\n        \"NN\"\n    ], \n    \"Sonni\": [\n        \"NNP\"\n    ], \n    \"non-telephone\": [\n        \"JJ\"\n    ], \n    \"surrealists\": [\n        \"NNS\"\n    ], \n    \"tacked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"co-founded\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"scattershot\": [\n        \"JJ\"\n    ], \n    \"wakening\": [\n        \"VBG\"\n    ], \n    \"baby-faced\": [\n        \"JJ\"\n    ], \n    \"felicitous\": [\n        \"JJ\"\n    ], \n    \"intuitively\": [\n        \"RB\"\n    ], \n    \"set\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBP\", \n        \"VBD|VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Scypher\": [\n        \"NNP\"\n    ], \n    \"protectors\": [\n        \"NNS\"\n    ], \n    \"co-founder\": [\n        \"NN\"\n    ], \n    \"outfits\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"bois\": [\n        \"FW\"\n    ], \n    \"For\": [\n        \"IN\", \n        \"CC\", \n        \"NNP\"\n    ], \n    \"LeClair\": [\n        \"NNP\"\n    ], \n    \"Eduardo\": [\n        \"NNP\"\n    ], \n    \"their\": [\n        \"PRP$\", \n        \"PRP\"\n    ], \n    \"Bindal\": [\n        \"NNP\"\n    ], \n    \"boil\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"fumpered\": [\n        \"VBD\"\n    ], \n    \"shell\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Grapes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"sexology\": [\n        \"NN\"\n    ], \n    \"reversed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"instituted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Departmentstore\": [\n        \"NNP\"\n    ], \n    \"baptized\": [\n        \"VBN\"\n    ], \n    \"districting\": [\n        \"NN\"\n    ], \n    \"Nuys\": [\n        \"NNP\"\n    ], \n    \"reverses\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"congenital\": [\n        \"JJ\"\n    ], \n    \"pro-mark\": [\n        \"JJ\"\n    ], \n    \"Explonaft\": [\n        \"NNP\"\n    ], \n    \"non-seamen\": [\n        \"NNS\"\n    ], \n    \"limiting\": [\n        \"VBG\"\n    ], \n    \"back-door\": [\n        \"JJ\"\n    ], \n    \"squealing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"elongate\": [\n        \"VB\"\n    ], \n    \"Deterrent\": [\n        \"NN\"\n    ], \n    \"success...\": [\n        \":\"\n    ], \n    \"ex-brother-in-law\": [\n        \"NN\"\n    ], \n    \"laughingstock\": [\n        \"NN\"\n    ], \n    \"Slough\": [\n        \"NNP\"\n    ], \n    \"violets\": [\n        \"NNS\"\n    ], \n    \"DESIGNATING\": [\n        \"VBG\"\n    ], \n    \"alerted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kinnard\": [\n        \"NNP\"\n    ], \n    \"Agone\": [\n        \"NNP\"\n    ], \n    \"Berrellez\": [\n        \"NNP\"\n    ], \n    \"Cipriano\": [\n        \"NNP\"\n    ], \n    \"have...\": [\n        \":\"\n    ], \n    \"Elliman\": [\n        \"NNP\"\n    ], \n    \"Cipriani\": [\n        \"NNP\"\n    ], \n    \"diazepam\": [\n        \"NN\"\n    ], \n    \"re-emphasis\": [\n        \"NN\"\n    ], \n    \"Sources\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"After\": [\n        \"IN\", \n        \"NNP\", \n        \"RB\", \n        \"IN|JJ\"\n    ], \n    \"outward\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"which\": [\n        \"WDT\", \n        \"WP\"\n    ], \n    \"Fluorescent\": [\n        \"JJ\"\n    ], \n    \"leisure-services\": [\n        \"JJ\"\n    ], \n    \"exegesis\": [\n        \"NN\"\n    ], \n    \"sign-carrying\": [\n        \"JJ\"\n    ], \n    \"Todt\": [\n        \"NNP\"\n    ], \n    \"Watling\": [\n        \"NNP\"\n    ], \n    \"first-quarter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"gorged\": [\n        \"VBD\"\n    ], \n    \"clash\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Gamel\": [\n        \"NNP\"\n    ], \n    \"Family-owned\": [\n        \"JJ\"\n    ], \n    \"Joined\": [\n        \"VBN\"\n    ], \n    \"Coalition\": [\n        \"NNP\"\n    ], \n    \"Supermatic\": [\n        \"JJ\"\n    ], \n    \"Games\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"cracking\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"hydroxyl-rich\": [\n        \"JJ\"\n    ], \n    \"class\": [\n        \"NN\"\n    ], \n    \"statute\": [\n        \"NN\"\n    ], \n    \"evergreens\": [\n        \"NNS\"\n    ], \n    \"Costly\": [\n        \"JJ\"\n    ], \n    \"jubilation\": [\n        \"NN\"\n    ], \n    \"slop-bucket\": [\n        \"NN\"\n    ], \n    \"Pot\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Jarrett\": [\n        \"NNP\"\n    ], \n    \"mishaps\": [\n        \"NNS\"\n    ], \n    \"Loco\": [\n        \"NNP\"\n    ], \n    \"Pop\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"neatness\": [\n        \"NN\"\n    ], \n    \"Pol\": [\n        \"NNP\"\n    ], \n    \"vernacular\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Elco\": [\n        \"NNP\"\n    ], \n    \"OFFICES\": [\n        \"NNS\"\n    ], \n    \"Pod\": [\n        \"NNP\"\n    ], \n    \"Poe\": [\n        \"NNP\"\n    ], \n    \"rejections\": [\n        \"NNS\"\n    ], \n    \"OFFICER\": [\n        \"NN\"\n    ], \n    \"inspirations\": [\n        \"NNS\"\n    ], \n    \"exclusive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"chances\": [\n        \"NNS\"\n    ], \n    \"Dumpty\": [\n        \"NNP\"\n    ], \n    \"Lessening\": [\n        \"VBG\"\n    ], \n    \"Figuring\": [\n        \"VBG\"\n    ], \n    \"Territorial\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"parliamentary\": [\n        \"JJ\"\n    ], \n    \"chancel\": [\n        \"NN\"\n    ], \n    \"Sorbus\": [\n        \"NNP\"\n    ], \n    \"chanced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"old-timers\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Nguyen\": [\n        \"NNP\"\n    ], \n    \"EniChem\": [\n        \"NNP\"\n    ], \n    \"naturalistic\": [\n        \"JJ\"\n    ], \n    \"exacerbating\": [\n        \"VBG\"\n    ], \n    \"gouging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Schloss\": [\n        \"NNP\"\n    ], \n    \"surroundings\": [\n        \"NNS\"\n    ], \n    \"politicized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Org\": [\n        \"NNP\"\n    ], \n    \"artemisia\": [\n        \"NN\"\n    ], \n    \"Denenchofu\": [\n        \"NNP\"\n    ], \n    \"piano\": [\n        \"NN\"\n    ], \n    \"Legend\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Eurydice\": [\n        \"NNP\"\n    ], \n    \"enthrones\": [\n        \"VBZ\"\n    ], \n    \"plaintiff\": [\n        \"NN\"\n    ], \n    \"mainly\": [\n        \"RB\"\n    ], \n    \"voided\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"checkpoints\": [\n        \"NNS\"\n    ], \n    \"theatricals\": [\n        \"NNS\"\n    ], \n    \"Abandon\": [\n        \"VB\"\n    ], \n    \"Gobain\": [\n        \"NNP\"\n    ], \n    \"chips\": [\n        \"NNS\"\n    ], \n    \"Magnavox\": [\n        \"NNP\"\n    ], \n    \"clothbound\": [\n        \"JJ\"\n    ], \n    \"queried\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Newswire\": [\n        \"NNP\"\n    ], \n    \"AIRCOA\": [\n        \"NNP\"\n    ], \n    \"affluent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hester\": [\n        \"NNP\"\n    ], \n    \"queries\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"infesting\": [\n        \"VBG\"\n    ], \n    \"Spooked\": [\n        \"VBN\"\n    ], \n    \"saucers\": [\n        \"NNS\"\n    ], \n    \"inventive\": [\n        \"JJ\"\n    ], \n    \"Aladdin\": [\n        \"NNP\"\n    ], \n    \"acquired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"arborists\": [\n        \"NNS\"\n    ], \n    \"artsy\": [\n        \"JJ\"\n    ], \n    \"doormen\": [\n        \"NNS\"\n    ], \n    \"Shearon\": [\n        \"NNP\"\n    ], \n    \"Pitted\": [\n        \"VBN\"\n    ], \n    \"acquirer\": [\n        \"NN\"\n    ], \n    \"acquires\": [\n        \"VBZ\"\n    ], \n    \"Huntingtons\": [\n        \"NNPS\"\n    ], \n    \"Garstung\": [\n        \"NNP\"\n    ], \n    \"Demanding\": [\n        \"VBG\"\n    ], \n    \"broach\": [\n        \"VB\"\n    ], \n    \"radar-controlled\": [\n        \"JJ\"\n    ], \n    \"pure-voiced\": [\n        \"JJ\"\n    ], \n    \"Fleece\": [\n        \"NNP\"\n    ], \n    \"exam\": [\n        \"NN\"\n    ], \n    \"amen\": [\n        \"UH\"\n    ], \n    \"a.m\": [\n        \"RB\", \n        \"NN\"\n    ], \n    \"agencies\": [\n        \"NNS\"\n    ], \n    \"Zabel\": [\n        \"NNP\"\n    ], \n    \"stropped\": [\n        \"VBD\"\n    ], \n    \"launderings\": [\n        \"NNS\"\n    ], \n    \"refurnished\": [\n        \"VBN\"\n    ], \n    \"Volkswagens\": [\n        \"NNPS\"\n    ], \n    \"swift\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"more-discriminating\": [\n        \"JJ\"\n    ], \n    \"Gospels\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"undrinkable\": [\n        \"JJ\"\n    ], \n    \"Oana\": [\n        \"NNP\"\n    ], \n    \"epidemics\": [\n        \"NNS\"\n    ], \n    \"RNA\": [\n        \"NNP\"\n    ], \n    \"Bums\": [\n        \"NNS\"\n    ], \n    \"highbrows\": [\n        \"NNS\"\n    ], \n    \"dismemberment\": [\n        \"NN\"\n    ], \n    \"diehard\": [\n        \"JJ\"\n    ], \n    \"efficient-market\": [\n        \"NN\"\n    ], \n    \"Enasa\": [\n        \"NNP\"\n    ], \n    \"metal-cleaning\": [\n        \"JJ\"\n    ], \n    \"Jascha\": [\n        \"NNP\"\n    ], \n    \"poems-in-drawing-and-type\": [\n        \"JJ\"\n    ], \n    \"open-meeting\": [\n        \"JJ\"\n    ], \n    \"Legionnaire\": [\n        \"NNP\"\n    ], \n    \"unlamented\": [\n        \"JJ\"\n    ], \n    \"pottage\": [\n        \"NN\"\n    ], \n    \"Bravo\": [\n        \"NNP\", \n        \"UH\"\n    ], \n    \"submarine-based\": [\n        \"JJ\"\n    ], \n    \"CommerceBancorp\": [\n        \"NNP\"\n    ], \n    \"Preserve\": [\n        \"NNP\"\n    ], \n    \"well-fitted\": [\n        \"JJ\"\n    ], \n    \"Kirkpatrick\": [\n        \"NNP\"\n    ], \n    \"charts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Active\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"bewildering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"counterchallenge\": [\n        \"VB\"\n    ], \n    \"off-Broadway\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Merry-Go-Round\": [\n        \"NNP\"\n    ], \n    \"strong-jawed\": [\n        \"JJ\"\n    ], \n    \"twinge\": [\n        \"NN\"\n    ], \n    \"DEFECTOR\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Vouillemont\": [\n        \"NNP\"\n    ], \n    \"BizMart\": [\n        \"NNP\"\n    ], \n    \"vanity\": [\n        \"NN\"\n    ], \n    \"present\": [\n        \"JJ\", \n        \"VBP\", \n        \"RB|JJ\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"inconspicuous\": [\n        \"JJ\"\n    ], \n    \"voter-registration\": [\n        \"JJ\"\n    ], \n    \"abandoned\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Pengally\": [\n        \"NNP\"\n    ], \n    \"Sintel\": [\n        \"NNP\"\n    ], \n    \"GM-10\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Periods\": [\n        \"NNS\"\n    ], \n    \"Kynikos\": [\n        \"NNP\"\n    ], \n    \"Distributive\": [\n        \"NNP\"\n    ], \n    \"whirlpool\": [\n        \"NN\"\n    ], \n    \"decongestant\": [\n        \"NN\"\n    ], \n    \"rename\": [\n        \"VB\"\n    ], \n    \"journalistically\": [\n        \"RB\"\n    ], \n    \"apprehend\": [\n        \"VB\"\n    ], \n    \"disapprove\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"encouragement\": [\n        \"NN\"\n    ], \n    \"pews\": [\n        \"NNS\"\n    ], \n    \"Rymer\": [\n        \"NNP\"\n    ], \n    \"no.\": [\n        \"NN\"\n    ], \n    \"Blauberman\": [\n        \"NNP\"\n    ], \n    \"audiences\": [\n        \"NNS\"\n    ], \n    \"SWAPO\": [\n        \"NNP\"\n    ], \n    \"conceptuality\": [\n        \"NN\"\n    ], \n    \"Stooges\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"church-supported\": [\n        \"JJ\"\n    ], \n    \"disapprovingly\": [\n        \"RB\"\n    ], \n    \"Violetta\": [\n        \"NNP\"\n    ], \n    \"Kornreich\": [\n        \"NNP\"\n    ], \n    \"enumeration\": [\n        \"NN\"\n    ], \n    \"electro-magnetic\": [\n        \"JJ\"\n    ], \n    \"besting\": [\n        \"VBG\"\n    ], \n    \"unity\": [\n        \"NN\"\n    ], \n    \"Schwarzen\": [\n        \"FW\"\n    ], \n    \"Suppression\": [\n        \"NN\"\n    ], \n    \"inch\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"chlorofluorocarbons\": [\n        \"NNS\"\n    ], \n    \"cinq\": [\n        \"FW\"\n    ], \n    \"Ridpath\": [\n        \"NNP\"\n    ], \n    \"coached\": [\n        \"VBN\"\n    ], \n    \"Violet\": [\n        \"NNP\"\n    ], \n    \"convocation\": [\n        \"NN\"\n    ], \n    \"outcast\": [\n        \"NN\"\n    ], \n    \"automation\": [\n        \"NN\"\n    ], \n    \"goverment\": [\n        \"NN\"\n    ], \n    \"APPELLATE\": [\n        \"NN\"\n    ], \n    \"Maluf\": [\n        \"NNP\"\n    ], \n    \"student\": [\n        \"NN\"\n    ], \n    \"lopsided\": [\n        \"JJ\"\n    ], \n    \"Gansevoort\": [\n        \"NNP\"\n    ], \n    \"supersafe\": [\n        \"NN\"\n    ], \n    \"lobby\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"antsy\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"plowed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"whole\": [\n        \"JJ\", \n        \"NN\", \n        \"RP\"\n    ], \n    \"banded\": [\n        \"VBN\"\n    ], \n    \"YEARS\": [\n        \"NNS\"\n    ], \n    \"Dutchess\": [\n        \"NNP\"\n    ], \n    \"poetry-and-jazz\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ringers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Kleinwort\": [\n        \"NNP\"\n    ], \n    \"well-stocked\": [\n        \"JJ\"\n    ], \n    \"inc.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Takako\": [\n        \"NNP\"\n    ], \n    \"Gables\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Gabler\": [\n        \"NNP\"\n    ], \n    \"RICHARD\": [\n        \"NNP\"\n    ], \n    \"PARENTAL\": [\n        \"JJ\"\n    ], \n    \"tendering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fancying\": [\n        \"VBG\"\n    ], \n    \"school-financing\": [\n        \"JJ\"\n    ], \n    \"biologist\": [\n        \"NN\"\n    ], \n    \"console\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"superstrong\": [\n        \"JJ\"\n    ], \n    \"Datatech\": [\n        \"NNP\"\n    ], \n    \"hastening\": [\n        \"VBG\"\n    ], \n    \"Forstmann\": [\n        \"NNP\"\n    ], \n    \"Emlyn\": [\n        \"NNP\"\n    ], \n    \"cruisers\": [\n        \"NNS\"\n    ], \n    \"sparking\": [\n        \"VBG\"\n    ], \n    \"earnestly\": [\n        \"RB\"\n    ], \n    \"back-office\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"MINING\": [\n        \"NNP\"\n    ], \n    \"Besides\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"putative\": [\n        \"JJ\"\n    ], \n    \"Goodkind\": [\n        \"NNP\"\n    ], \n    \"Soviet-Chinese\": [\n        \"NNP\"\n    ], \n    \"Bonacquist\": [\n        \"NNP\"\n    ], \n    \"Deluxe\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"racists\": [\n        \"NNS\"\n    ], \n    \"Fearing\": [\n        \"VBG\"\n    ], \n    \"counteroffer\": [\n        \"NN\"\n    ], \n    \"tax-exempts\": [\n        \"NNS\"\n    ], \n    \"mother-in-law\": [\n        \"NN\"\n    ], \n    \"Anarcho-Syndicalists\": [\n        \"NNPS\"\n    ], \n    \"Inspector\": [\n        \"NNP\"\n    ], \n    \"Pillay\": [\n        \"NNP\"\n    ], \n    \"lady-bugs\": [\n        \"NNS\"\n    ], \n    \"scared\": [\n        \"VBN\", \n        \"JJ\", \n        \"RB\", \n        \"VBD\"\n    ], \n    \"Mandy\": [\n        \"NNP\"\n    ], \n    \"socialists\": [\n        \"NNS\"\n    ], \n    \"demeanor\": [\n        \"NN\"\n    ], \n    \"Rwanda\": [\n        \"NNP\"\n    ], \n    \"twirling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"racking\": [\n        \"VBG\"\n    ], \n    \"ablaze\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Mando\": [\n        \"NNP\"\n    ], \n    \"scares\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Pt.\": [\n        \"NN\"\n    ], \n    \"cheap-money\": [\n        \"NN\"\n    ], \n    \"Statutes\": [\n        \"NNS\"\n    ], \n    \"computer-based\": [\n        \"JJ\"\n    ], \n    \"Schwab\": [\n        \"NNP\"\n    ], \n    \"Taubman\": [\n        \"NNP\"\n    ], \n    \"sickly-tolerant\": [\n        \"JJ\"\n    ], \n    \"detergent\": [\n        \"NN\"\n    ], \n    \"campfire\": [\n        \"NN\"\n    ], \n    \"noose\": [\n        \"NN\"\n    ], \n    \"Sheri\": [\n        \"NNP\"\n    ], \n    \"mailed-fist-in-velvet-glove\": [\n        \"JJ\"\n    ], \n    \"curtseyed\": [\n        \"VBD\"\n    ], \n    \"apostolic\": [\n        \"JJ\"\n    ], \n    \"dangling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"dollar-related\": [\n        \"JJ\"\n    ], \n    \"Aero\": [\n        \"NNP\"\n    ], \n    \"five-volume\": [\n        \"JJ\"\n    ], \n    \"Leila\": [\n        \"NNP\"\n    ], \n    \"proprieter\": [\n        \"NN\"\n    ], \n    \"Heller\\\\\": [\n        \"NNP\"\n    ], \n    \"professedly\": [\n        \"RB\"\n    ], \n    \"testosterone\": [\n        \"NN\"\n    ], \n    \"Pte\": [\n        \"NNP\"\n    ], \n    \"AIRLINES\": [\n        \"NNPS\"\n    ], \n    \"U.S.-owned\": [\n        \"JJ\"\n    ], \n    \"swear\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sweat\": [\n        \"NN\", \n        \"VBD\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Fable\": [\n        \"NNP\"\n    ], \n    \"pratakku\": [\n        \"FW\"\n    ], \n    \"Take-up\": [\n        \"JJ\"\n    ], \n    \"hot-formed\": [\n        \"JJ\"\n    ], \n    \"air-injection\": [\n        \"NN\"\n    ], \n    \"Sasaki\": [\n        \"NNP\"\n    ], \n    \"DWG\": [\n        \"NNP\"\n    ], \n    \"tailgate\": [\n        \"NN\"\n    ], \n    \"loner\": [\n        \"NN\"\n    ], \n    \"hotline\": [\n        \"NN\"\n    ], \n    \"estimators\": [\n        \"NNS\"\n    ], \n    \"Toughest\": [\n        \"NNP\"\n    ], \n    \"Brunei\": [\n        \"NNP\"\n    ], \n    \"Lillehammer\": [\n        \"NNP\"\n    ], \n    \"sabre\": [\n        \"NN\"\n    ], \n    \"unpatriotic\": [\n        \"JJ\"\n    ], \n    \"artifacts\": [\n        \"NNS\"\n    ], \n    \"*\": [\n        \"SYM\", \n        \",\", \n        \":\"\n    ], \n    \"omnia\": [\n        \"FW\"\n    ], \n    \"slant-wise\": [\n        \"JJ\"\n    ], \n    \"citations\": [\n        \"NNS\"\n    ], \n    \"dynamite\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Bruner\": [\n        \"NNP\"\n    ], \n    \"lost-profits\": [\n        \"JJ\"\n    ], \n    \"stymied\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"baffling\": [\n        \"JJ\"\n    ], \n    \"mutter\": [\n        \"VB\"\n    ], \n    \"unfalteringly\": [\n        \"RB\"\n    ], \n    \"NASDAQ\": [\n        \"NNP\"\n    ], \n    \"mailed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"state-mandated\": [\n        \"JJ\"\n    ], \n    \"teaming\": [\n        \"VBG\"\n    ], \n    \"Med-Chemical\": [\n        \"NNP\"\n    ], \n    \"Neblett\": [\n        \"NNP\"\n    ], \n    \"MEMOS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"non-GM\": [\n        \"JJ\"\n    ], \n    \"market-watchers\": [\n        \"NNS\"\n    ], \n    \"unpolarizing\": [\n        \"VBG\"\n    ], \n    \"Pemberton\": [\n        \"NNP\"\n    ], \n    \"below\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"ruling\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Engages\": [\n        \"NNS\"\n    ], \n    \"fulllength\": [\n        \"JJ\"\n    ], \n    \"stirring\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dennehy\": [\n        \"NNP\"\n    ], \n    \"Sibylla\": [\n        \"NNP\"\n    ], \n    \"eagerness\": [\n        \"NN\"\n    ], \n    \"authenticity\": [\n        \"NN\"\n    ], \n    \"fertilizers\": [\n        \"NNS\"\n    ], \n    \"Fortunate\": [\n        \"JJ\"\n    ], \n    \"mud-beplastered\": [\n        \"JJ\"\n    ], \n    \"myn\": [\n        \"PRP$\"\n    ], \n    \"Sakellariadis\": [\n        \"NNP\"\n    ], \n    \"narrator\": [\n        \"NN\"\n    ], \n    \"trailing\": [\n        \"VBG\"\n    ], \n    \"Transmation\": [\n        \"NNP\"\n    ], \n    \"Lodley\": [\n        \"NNP\"\n    ], \n    \"editorial-page\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Yum-Yum\": [\n        \"NNP\"\n    ], \n    \"pickings\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Maris\": [\n        \"NNP\"\n    ], \n    \"overdeveloped\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sheinberg\": [\n        \"NNP\"\n    ], \n    \"Textbooks\": [\n        \"NNS\"\n    ], \n    \"extras\": [\n        \"NNS\"\n    ], \n    \"U.S.-South\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"heartless\": [\n        \"JJ\"\n    ], \n    \"threetranche\": [\n        \"JJ\"\n    ], \n    \"Marie\": [\n        \"NNP\"\n    ], \n    \"clicks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"pantomime\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"exclamation\": [\n        \"NN\"\n    ], \n    \"wood-processing\": [\n        \"JJ\"\n    ], \n    \"union-industry\": [\n        \"NN\"\n    ], \n    \"Route\": [\n        \"NNP\", \n        \"IN\", \n        \"NN\"\n    ], \n    \"Spanish\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"frustrate\": [\n        \"VB\"\n    ], \n    \"risked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Market-based\": [\n        \"JJ\"\n    ], \n    \"earth-moving\": [\n        \"JJ\"\n    ], \n    \"Marble\": [\n        \"NNP\"\n    ], \n    \"XRELEASE\": [\n        \"NN\"\n    ], \n    \"alienated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Coach\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"devlopments\": [\n        \"NNS\"\n    ], \n    \"ranks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"securities-industry\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Cambodian\": [\n        \"JJ\"\n    ], \n    \"firestorm\": [\n        \"NN\"\n    ], \n    \"alienates\": [\n        \"VBZ\"\n    ], \n    \"Shooting\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"sopping\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"voluble\": [\n        \"JJ\"\n    ], \n    \"Andreas\": [\n        \"NNP\"\n    ], \n    \"Yokum\": [\n        \"NNP\"\n    ], \n    \"sunbonnet\": [\n        \"NN\"\n    ], \n    \"business-development\": [\n        \"NN\"\n    ], \n    \"woo\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dockray\": [\n        \"NNP\"\n    ], \n    \"narcotic\": [\n        \"JJ\"\n    ], \n    \"Survivability\": [\n        \"NN\"\n    ], \n    \"OmegaSource\": [\n        \"NNP\"\n    ], \n    \"jihad\": [\n        \"NN\"\n    ], \n    \"spearheaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fruit-concentrate\": [\n        \"JJ\"\n    ], \n    \"self-pity\": [\n        \"NN\"\n    ], \n    \"pardon\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"divan-like\": [\n        \"JJ\"\n    ], \n    \"eligible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"snowing\": [\n        \"VBG\"\n    ], \n    \"pre-eminence\": [\n        \"NN\"\n    ], \n    \"Dallas-Barcelona\": [\n        \"NNP\"\n    ], \n    \"wheeled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"superficially\": [\n        \"RB\"\n    ], \n    \"IBM-compatible\": [\n        \"JJ\"\n    ], \n    \"herbicide\": [\n        \"NN\"\n    ], \n    \"general-interest\": [\n        \"JJ\"\n    ], \n    \"ostinato\": [\n        \"NN\"\n    ], \n    \"Wallach\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"rearguard\": [\n        \"NN\"\n    ], \n    \"Torrington\": [\n        \"NNP\"\n    ], \n    \"Reprimand\": [\n        \"NN\"\n    ], \n    \"microbe\": [\n        \"NN\"\n    ], \n    \"experimentally\": [\n        \"RB\"\n    ], \n    \"Unsolved\": [\n        \"NNP\"\n    ], \n    \"O.J.\": [\n        \"NNP\"\n    ], \n    \"Mossberg\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"scholar\": [\n        \"NN\"\n    ], \n    \"clientele\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"jarringly\": [\n        \"RB\"\n    ], \n    \"piling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"lime\": [\n        \"NN\"\n    ], \n    \"Nasdaq\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"NATO-Warsaw\": [\n        \"NNP\"\n    ], \n    \"this....\": [\n        \":\"\n    ], \n    \"jacking\": [\n        \"VBG\"\n    ], \n    \"Bavaria\": [\n        \"NNP\"\n    ], \n    \"Middleness\": [\n        \"NN\"\n    ], \n    \"aeterna\": [\n        \"FW\"\n    ], \n    \"cow-man\": [\n        \"NN\"\n    ], \n    \"contretemps\": [\n        \"NN\"\n    ], \n    \"transmogrified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"ANACOMP\": [\n        \"NNP\"\n    ], \n    \"haughtily\": [\n        \"RB\"\n    ], \n    \"agro-industrial\": [\n        \"JJ\"\n    ], \n    \"Potts\": [\n        \"NNP\"\n    ], \n    \"Kennedyesque\": [\n        \"JJ\"\n    ], \n    \"Lucille\": [\n        \"NNP\"\n    ], \n    \"Mehrens\": [\n        \"NNP\"\n    ], \n    \"Alcoholics\": [\n        \"NNPS\"\n    ], \n    \"Arboretum\": [\n        \"NNP\"\n    ], \n    \"single-B\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"single-A\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"sittings\": [\n        \"NNS\"\n    ], \n    \"single-D\": [\n        \"JJ\"\n    ], \n    \"interrupting\": [\n        \"VBG\"\n    ], \n    \"platitudinous\": [\n        \"JJ\"\n    ], \n    \"Scientific-Atlanta\": [\n        \"NNP\"\n    ], \n    \"Yankelovich\": [\n        \"NNP\"\n    ], \n    \"chassis\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"auctioned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"dollar-convertible\": [\n        \"JJ\"\n    ], \n    \"previews\": [\n        \"NNS\"\n    ], \n    \"shriek\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Descriptive\": [\n        \"JJ\"\n    ], \n    \"Precise\": [\n        \"JJ\"\n    ], \n    \"Raheem\": [\n        \"NNP\"\n    ], \n    \"culling\": [\n        \"VBG\"\n    ], \n    \"chlorides\": [\n        \"NNS\"\n    ], \n    \"pretensions\": [\n        \"NNS\"\n    ], \n    \"reactivated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"reports\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"P.R.\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"deal-blocker\": [\n        \"NN\"\n    ], \n    \"Buy-Back\": [\n        \"NNP\"\n    ], \n    \"catalyzed\": [\n        \"VBN\"\n    ], \n    \"cancellation\": [\n        \"NN\"\n    ], \n    \"Audi\": [\n        \"NNP\"\n    ], \n    \"recession-inspired\": [\n        \"JJ\"\n    ], \n    \"secluded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"ground\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"best-of-seven\": [\n        \"JJ\"\n    ], \n    \"bauble\": [\n        \"NN\"\n    ], \n    \"a-GM\": [\n        \"NNP\"\n    ], \n    \"nicotine-choked\": [\n        \"JJ\"\n    ], \n    \"psychological\": [\n        \"JJ\"\n    ], \n    \"N.J.-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"well-braced\": [\n        \"JJ\"\n    ], \n    \"Geraetetechnik\": [\n        \"NNP\"\n    ], \n    \"Wales\": [\n        \"NNP\"\n    ], \n    \"disaster-prone\": [\n        \"JJ\"\n    ], \n    \"buckskin\": [\n        \"NN\"\n    ], \n    \"Richebourg\": [\n        \"NNP\"\n    ], \n    \"cherishing\": [\n        \"VBG\"\n    ], \n    \"marketers\": [\n        \"NNS\"\n    ], \n    \"Shioya\": [\n        \"NNP\"\n    ], \n    \"racial-minority\": [\n        \"JJ\"\n    ], \n    \"exhort\": [\n        \"VB\"\n    ], \n    \"Supervisors\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Admitting\": [\n        \"VBG\"\n    ], \n    \"occupying\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Lynch-led\": [\n        \"JJ\"\n    ], \n    \"panoply\": [\n        \"NN\"\n    ], \n    \"Tex.\": [\n        \"NNP\"\n    ], \n    \"untie\": [\n        \"VB\"\n    ], \n    \"passport\": [\n        \"NN\"\n    ], \n    \"Blvd.\": [\n        \"NNP\"\n    ], \n    \"until\": [\n        \"IN\"\n    ], \n    \"icebound\": [\n        \"JJ\"\n    ], \n    \"suffocated\": [\n        \"VBN\"\n    ], \n    \"Tudor\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Christina\": [\n        \"NNP\"\n    ], \n    \"playboy\": [\n        \"NN\"\n    ], \n    \"Necessary\": [\n        \"JJ\"\n    ], \n    \"Christine\": [\n        \"NNP\"\n    ], \n    \"downward\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"brings\": [\n        \"VBZ\"\n    ], \n    \"canonized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"glass\": [\n        \"NN\"\n    ], \n    \"Redeemable\": [\n        \"NNP\"\n    ], \n    \"Boykins\": [\n        \"NNP\"\n    ], \n    \"midst\": [\n        \"NN\"\n    ], \n    \"flubbed\": [\n        \"VBD\"\n    ], \n    \"Reagan-Bush\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Praxis\": [\n        \"NNP\"\n    ], \n    \"editorship\": [\n        \"NN\"\n    ], \n    \"self-styled\": [\n        \"JJ\"\n    ], \n    \"sweeten\": [\n        \"VB\"\n    ], \n    \"ruckus\": [\n        \"NN\"\n    ], \n    \"SHIPPING\": [\n        \"NNP\"\n    ], \n    \"Ending\": [\n        \"VBG\"\n    ], \n    \"aloofness\": [\n        \"NN\"\n    ], \n    \"pinholes\": [\n        \"NNS\"\n    ], \n    \"nationalizing\": [\n        \"VBG\"\n    ], \n    \"sweeter\": [\n        \"JJR\"\n    ], \n    \"concepts\": [\n        \"NNS\"\n    ], \n    \"denyin\": [\n        \"VBG\"\n    ], \n    \"FERC\": [\n        \"NNP\"\n    ], \n    \"business...\": [\n        \":\"\n    ], \n    \"Zoellick\": [\n        \"NNP\"\n    ], \n    \"Shidler\": [\n        \"NNP\"\n    ], \n    \"drop-block\": [\n        \"NN\"\n    ], \n    \"promulgated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"reviewing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"vitiated\": [\n        \"VBN\"\n    ], \n    \"gargantuan\": [\n        \"JJ\"\n    ], \n    \"Meets\": [\n        \"NNP\"\n    ], \n    \"Venerable\": [\n        \"NNP\"\n    ], \n    \"Bush-supported\": [\n        \"JJ\"\n    ], \n    \"syntactic\": [\n        \"JJ\"\n    ], \n    \"leaguers\": [\n        \"NNS\"\n    ], \n    \"revisit\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"retooled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Forman\": [\n        \"NNP\"\n    ], \n    \"credential\": [\n        \"NN\"\n    ], \n    \"LeCarre\": [\n        \"NNP\"\n    ], \n    \"outlawed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Reese\": [\n        \"NNP\"\n    ], \n    \"fourteen-team\": [\n        \"JJ\"\n    ], \n    \"vase\": [\n        \"NN\"\n    ], \n    \"pearl-handled\": [\n        \"JJ\"\n    ], \n    \"extortion\": [\n        \"NN\"\n    ], \n    \"Mailson\": [\n        \"NNP\"\n    ], \n    \"K.B.\": [\n        \"NNP\"\n    ], \n    \"youths\": [\n        \"NNS\"\n    ], \n    \"revolt\": [\n        \"NN\"\n    ], \n    \"scoffs\": [\n        \"VBZ\"\n    ], \n    \"Earning\": [\n        \"NN\"\n    ], \n    \"alias\": [\n        \"NN\"\n    ], \n    \"wild-sounding\": [\n        \"JJ\"\n    ], \n    \"Reuss\": [\n        \"NNP\"\n    ], \n    \"maids\": [\n        \"NNS\"\n    ], \n    \"aping\": [\n        \"VBG\"\n    ], \n    \"Quina\": [\n        \"NNP\"\n    ], \n    \"rewards\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"artistas\": [\n        \"NNS\"\n    ], \n    \"senators\": [\n        \"NNS\"\n    ], \n    \"Resistol\": [\n        \"NNP\"\n    ], \n    \"tranquilizing\": [\n        \"JJ\"\n    ], \n    \"feedback\": [\n        \"NN\"\n    ], \n    \"Half-year\": [\n        \"JJ\"\n    ], \n    \"telecom\": [\n        \"NN\"\n    ], \n    \"hallelujahs\": [\n        \"NNS\"\n    ], \n    \"kickoff\": [\n        \"NN\"\n    ], \n    \"Smolensk\": [\n        \"NNP\"\n    ], \n    \"Hogue\": [\n        \"NNP\"\n    ], \n    \"conned\": [\n        \"VBN\"\n    ], \n    \"self-appointed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"backpack\": [\n        \"NN\"\n    ], \n    \"welling\": [\n        \"VBG\"\n    ], \n    \"nonpublic\": [\n        \"JJ\"\n    ], \n    \"mouth-up\": [\n        \"JJ\"\n    ], \n    \"gymnasium-sized\": [\n        \"JJ\"\n    ], \n    \"in...\": [\n        \":\"\n    ], \n    \"county-wide\": [\n        \"JJ\"\n    ], \n    \"undercut\": [\n        \"VB\", \n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Cosgrove-Meurer\": [\n        \"NNP\"\n    ], \n    \"programed\": [\n        \"VBN\"\n    ], \n    \"IBM\\\\\": [\n        \"NNP\"\n    ], \n    \"McClements\": [\n        \"NNP\"\n    ], \n    \"Seth\": [\n        \"NNP\"\n    ], \n    \"Thomas\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"SeaFest\\\\/JAC\": [\n        \"NNP\"\n    ], \n    \"educating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sets\": [\n        \"NNS\"\n    ], \n    \"braised\": [\n        \"VBN\"\n    ], \n    \"headboard\": [\n        \"NN\"\n    ], \n    \"haphazardly\": [\n        \"RB\"\n    ], \n    \"clumsy\": [\n        \"JJ\"\n    ], \n    \"blushes\": [\n        \"NNS\"\n    ], \n    \"debut\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"flamboyantly\": [\n        \"RB\"\n    ], \n    \"addicted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Siewert\": [\n        \"NNP\"\n    ], \n    \"gung-ho\": [\n        \"JJ\"\n    ], \n    \"blushed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"obdurate\": [\n        \"JJ\"\n    ], \n    \"Plot\": [\n        \"NN\"\n    ], \n    \"Plow\": [\n        \"NNP\"\n    ], \n    \"snakes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mid-Century\": [\n        \"NNP\"\n    ], \n    \"concord\": [\n        \"NN\"\n    ], \n    \"chinoiserie\": [\n        \"NN\"\n    ], \n    \"spider\": [\n        \"NN\"\n    ], \n    \"Mongolia\": [\n        \"NNP\"\n    ], \n    \"snaked\": [\n        \"VBD\"\n    ], \n    \"cathedral\": [\n        \"NN\"\n    ], \n    \"misfortune\": [\n        \"NN\"\n    ], \n    \"no-waste\": [\n        \"JJ\"\n    ], \n    \"Dominant\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"cattle-car\": [\n        \"NN\"\n    ], \n    \"rubberstamp\": [\n        \"NN\"\n    ], \n    \"excepting\": [\n        \"VBG\"\n    ], \n    \"inplace\": [\n        \"NN\"\n    ], \n    \"copolymers\": [\n        \"NNS\"\n    ], \n    \"Hercules\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"no-growth\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"hangouts\": [\n        \"NNS\"\n    ], \n    \"Vanity\": [\n        \"NNP\"\n    ], \n    \"air-service\": [\n        \"NN\"\n    ], \n    \"money-center\": [\n        \"JJ\"\n    ], \n    \"J&J\": [\n        \"NNP\"\n    ], \n    \"epithet\": [\n        \"NN\"\n    ], \n    \"Loneliness\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mah-jongg\": [\n        \"FW\"\n    ], \n    \"department\\\\/office\": [\n        \"NN\"\n    ], \n    \"Olestra\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Volokhs\": [\n        \"NNPS\"\n    ], \n    \"grapes\": [\n        \"NNS\"\n    ], \n    \"muscling\": [\n        \"VBG\"\n    ], \n    \"Soft\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"ate\": [\n        \"VBD\"\n    ], \n    \"market-sharing\": [\n        \"JJ\"\n    ], \n    \"shelves\": [\n        \"NNS\"\n    ], \n    \"atm\": [\n        \"NN\"\n    ], \n    \"no-o\": [\n        \"UH\"\n    ], \n    \"shelved\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"now-troubled\": [\n        \"JJ\"\n    ], \n    \"Weksel\": [\n        \"NNP\"\n    ], \n    \"Mighty\": [\n        \"NNP\"\n    ], \n    \"grassers\": [\n        \"NNS\"\n    ], \n    \"dosage\": [\n        \"NN\"\n    ], \n    \"air-conditioning\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hemorrhage\": [\n        \"NNP\"\n    ], \n    \"earthy\": [\n        \"JJ\"\n    ], \n    \"angelic\": [\n        \"JJ\"\n    ], \n    \"Arianist\": [\n        \"NNP\"\n    ], \n    \"NATIONWIDE\": [\n        \"NNP\"\n    ], \n    \"Courter\": [\n        \"NNP\"\n    ], \n    \"unfilled\": [\n        \"JJ\"\n    ], \n    \"playfully\": [\n        \"RB\"\n    ], \n    \"Blish\": [\n        \"NNP\"\n    ], \n    \"semifinished\": [\n        \"VBN\"\n    ], \n    \"Koizumi\": [\n        \"NNP\"\n    ], \n    \"customization\": [\n        \"NN\"\n    ], \n    \"Arianism\": [\n        \"NNP\"\n    ], \n    \"renderings\": [\n        \"NNS\"\n    ], \n    \"OKing\": [\n        \"NNP\"\n    ], \n    \"salary-pool\": [\n        \"NN\"\n    ], \n    \"reportorial\": [\n        \"JJ\"\n    ], \n    \"similarly\": [\n        \"RB\"\n    ], \n    \"vaccine-related\": [\n        \"JJ\"\n    ], \n    \"defaulting\": [\n        \"VBG\"\n    ], \n    \"tango\": [\n        \"NN\"\n    ], \n    \"Motion-picture\": [\n        \"JJ\"\n    ], \n    \"tangy\": [\n        \"JJ\"\n    ], \n    \"Invasion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"old-timer\": [\n        \"NN\"\n    ], \n    \"ranging\": [\n        \"VBG\"\n    ], \n    \"Vesoft\": [\n        \"NNP\"\n    ], \n    \"librettists\": [\n        \"NNS\"\n    ], \n    \"scaled-down\": [\n        \"JJ\"\n    ], \n    \"Francois-Poncet\": [\n        \"NNP\"\n    ], \n    \"n-trial\": [\n        \"NN\"\n    ], \n    \"strike-outs\": [\n        \"NNS\"\n    ], \n    \"Urmstom\": [\n        \"NNP\"\n    ], \n    \"Prevent\": [\n        \"VB\"\n    ], \n    \"loan-restructuring\": [\n        \"JJ\"\n    ], \n    \"unifier\": [\n        \"NN\"\n    ], \n    \"unguided\": [\n        \"JJ\"\n    ], \n    \"small-office\": [\n        \"JJ\"\n    ], \n    \"Chequers\": [\n        \"NNP\"\n    ], \n    \"Rats\": [\n        \"NNP\"\n    ], \n    \"Wyss\": [\n        \"NNP\"\n    ], \n    \"Moldavia\": [\n        \"NNP\"\n    ], \n    \"Data\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNP|NPS\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"coward\": [\n        \"NN\"\n    ], \n    \"Schein\": [\n        \"NNP\"\n    ], \n    \"walloped\": [\n        \"VBD\"\n    ], \n    \"most-owned\": [\n        \"JJ\"\n    ], \n    \"Compson\": [\n        \"NNP\"\n    ], \n    \"uninjectable\": [\n        \"JJ\"\n    ], \n    \"readjusted\": [\n        \"VBN\"\n    ], \n    \"Wyse\": [\n        \"NNP\"\n    ], \n    \"zounds\": [\n        \"UH\"\n    ], \n    \"seven-month\": [\n        \"JJ\"\n    ], \n    \"unintended\": [\n        \"JJ\"\n    ], \n    \"gulped\": [\n        \"VBD\"\n    ], \n    \"Sulfaquinoxaline\": [\n        \"NN\"\n    ], \n    \"spacious\": [\n        \"JJ\"\n    ], \n    \"loathsome\": [\n        \"JJ\"\n    ], \n    \"selflessness\": [\n        \"NN\"\n    ], \n    \"Japanese-managed\": [\n        \"JJ\"\n    ], \n    \"local-content\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"relaunched\": [\n        \"VBN\"\n    ], \n    \"kayo\": [\n        \"VB\"\n    ], \n    \"Canter\": [\n        \"NNP\"\n    ], \n    \"absorber\": [\n        \"NN\"\n    ], \n    \"Duesseldorf\": [\n        \"NNP\"\n    ], \n    \"ex-officers\": [\n        \"NNS\"\n    ], \n    \"Unicorp\": [\n        \"NNP\"\n    ], \n    \"hastily-summoned\": [\n        \"JJ\"\n    ], \n    \"unperformed\": [\n        \"JJ\"\n    ], \n    \"Placido\": [\n        \"NNP\"\n    ], \n    \"absorbed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"divan\": [\n        \"NN\"\n    ], \n    \"MYERSON\": [\n        \"NNP\"\n    ], \n    \"layoffs\": [\n        \"NNS\"\n    ], \n    \"Mathis\": [\n        \"NNP\"\n    ], \n    \"Lynn\": [\n        \"NNP\"\n    ], \n    \"blackmailer\": [\n        \"NN\"\n    ], \n    \"matriarch\": [\n        \"NN\"\n    ], \n    \"shall\": [\n        \"MD\"\n    ], \n    \"misdirectors\": [\n        \"NNS\"\n    ], \n    \"figger\": [\n        \"VBP\"\n    ], \n    \"Birgitta\": [\n        \"NNP\"\n    ], \n    \"Talcott\": [\n        \"NNP\"\n    ], \n    \"Chablis\": [\n        \"NNPS\"\n    ], \n    \"Unsuspecting\": [\n        \"JJ\"\n    ], \n    \"blackmailed\": [\n        \"VBN\"\n    ], \n    \"Lynx\": [\n        \"NNP\"\n    ], \n    \"non-Canadian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kikiyus\": [\n        \"NNPS\"\n    ], \n    \"shalt\": [\n        \"VB\"\n    ], \n    \"trigonal\": [\n        \"JJ\"\n    ], \n    \"Texans\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Quality\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Lending\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"bodybuilder\": [\n        \"NN\"\n    ], \n    \"drunks\": [\n        \"NNS\"\n    ], \n    \"comprise\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Mansion\": [\n        \"NNP\"\n    ], \n    \"nineteenth\": [\n        \"JJ\"\n    ], \n    \"TARP\": [\n        \"NNP\"\n    ], \n    \"signatures\": [\n        \"NNS\"\n    ], \n    \"prim\": [\n        \"JJ\"\n    ], \n    \"Union\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"droppings\": [\n        \"NNS\"\n    ], \n    \"sexist\": [\n        \"JJ\"\n    ], \n    \"Vitamin\": [\n        \"NN\"\n    ], \n    \"undue\": [\n        \"JJ\"\n    ], \n    \"plutocratic\": [\n        \"JJ\"\n    ], \n    \"Softletter\": [\n        \"NNP\"\n    ], \n    \"judgeship\": [\n        \"NN\"\n    ], \n    \"Paradise\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Private-property\": [\n        \"NN\"\n    ], \n    \"rough-and-tumble\": [\n        \"JJ\"\n    ], \n    \"pastoral\": [\n        \"JJ\"\n    ], \n    \"die-hard\": [\n        \"JJ\"\n    ], \n    \"parodies\": [\n        \"NNS\"\n    ], \n    \"non-smokers\": [\n        \"NNS\"\n    ], \n    \"third-place\": [\n        \"JJ\"\n    ], \n    \"Fixx\": [\n        \"NNP\"\n    ], \n    \"Moller\": [\n        \"NNP\"\n    ], \n    \"overgrazing\": [\n        \"NN\"\n    ], \n    \"pragmatism\": [\n        \"NN\"\n    ], \n    \"gweilos\": [\n        \"FW\"\n    ], \n    \"parodied\": [\n        \"VBD\"\n    ], \n    \"heartily\": [\n        \"RB\"\n    ], \n    \"niche-itis,``\": [\n        \"``\"\n    ], \n    \"Turbinen-Union\": [\n        \"NNP\"\n    ], \n    \"Account\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cartwheels\": [\n        \"NNS\"\n    ], \n    \"tramped\": [\n        \"VBD\"\n    ], \n    \"stammered\": [\n        \"VBD\"\n    ], \n    \"nonobservant\": [\n        \"JJ\"\n    ], \n    \"Inderbinen\": [\n        \"NNP\"\n    ], \n    \"sales-incentive\": [\n        \"JJ\"\n    ], \n    \"tungsten\": [\n        \"NN\"\n    ], \n    \"X\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Yell\": [\n        \"NNP\"\n    ], \n    \"publicity-conscious\": [\n        \"JJ\"\n    ], \n    \"volatility\": [\n        \"NN\"\n    ], \n    \"Alternate\": [\n        \"JJ\"\n    ], \n    \"Savageau\": [\n        \"NNP\"\n    ], \n    \"Arleigh\": [\n        \"NNP\"\n    ], \n    \"greens\": [\n        \"NNS\"\n    ], \n    \"BLIP\": [\n        \"NNP\"\n    ], \n    \"textbooks\": [\n        \"NNS\"\n    ], \n    \"Petit\": [\n        \"NNP\"\n    ], \n    \"Insurance-related\": [\n        \"JJ\"\n    ], \n    \"Oakland-Berkeley\": [\n        \"NNP\"\n    ], \n    \"thirtysomething\": [\n        \"NN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"sassing\": [\n        \"NN\"\n    ], \n    \"sanctioning\": [\n        \"VBG\"\n    ], \n    \"plagued\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"expediency\": [\n        \"NN\"\n    ], \n    \"annual-income\": [\n        \"NN\"\n    ], \n    \"Erjun\": [\n        \"NNP\"\n    ], \n    \"nolle\": [\n        \"FW\"\n    ], \n    \"unexpectedly\": [\n        \"RB\"\n    ], \n    \"goodnight\": [\n        \"NN\"\n    ], \n    \"largely-silent\": [\n        \"JJ\"\n    ], \n    \"four-man\": [\n        \"JJ\"\n    ], \n    \"press-ganged\": [\n        \"JJ\"\n    ], \n    \"John\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"skulls\": [\n        \"NNS\"\n    ], \n    \"Veatch\": [\n        \"NNP\"\n    ], \n    \"Heydrich\": [\n        \"NNP\"\n    ], \n    \"truth-packed\": [\n        \"NN\"\n    ], \n    \"credit-worthy\": [\n        \"JJ\"\n    ], \n    \"campaigners\": [\n        \"NNS\"\n    ], \n    \"W.W.\": [\n        \"NNP\"\n    ], \n    \"thees\": [\n        \"DT\"\n    ], \n    \"stamps\": [\n        \"NNS\"\n    ], \n    \"example\": [\n        \"NN\"\n    ], \n    \"Dewar\": [\n        \"NNP\"\n    ], \n    \"pilloried\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"corn-farmers\": [\n        \"NNS\"\n    ], \n    \"Bowers\": [\n        \"NNP\"\n    ], \n    \"rolled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Rebaja\": [\n        \"NNP\"\n    ], \n    \"world-scale\": [\n        \"JJ\"\n    ], \n    \"personalize\": [\n        \"VB\"\n    ], \n    \"Kelts\": [\n        \"NNP\"\n    ], \n    \"symbolizes\": [\n        \"VBZ\"\n    ], \n    \"possum-hunting\": [\n        \"NN\"\n    ], \n    \"undependable\": [\n        \"JJ\"\n    ], \n    \"Peterson\": [\n        \"NNP\"\n    ], \n    \"roller\": [\n        \"NN\"\n    ], \n    \"knot-tying\": [\n        \"JJ\"\n    ], \n    \"Phenix-Transmission\": [\n        \"NNP\"\n    ], \n    \"sacrificing\": [\n        \"VBG\"\n    ], \n    \"triggers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Covert\": [\n        \"NNP\"\n    ], \n    \"Vacancy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"plutonium-handling\": [\n        \"NN\"\n    ], \n    \"linguist-anthropologist\": [\n        \"NN\"\n    ], \n    \"reconfirmation\": [\n        \"NN\"\n    ], \n    \"Masaaki\": [\n        \"NNP\"\n    ], \n    \"installments\": [\n        \"NNS\"\n    ], \n    \"genus\": [\n        \"NN\"\n    ], \n    \"comparable-store\": [\n        \"JJ\"\n    ], \n    \"post-surgical\": [\n        \"JJ\"\n    ], \n    \"Closes\": [\n        \"VBZ\"\n    ], \n    \"Ukiah\": [\n        \"NNP\"\n    ], \n    \"Mehitabel\": [\n        \"NNP\"\n    ], \n    \"Locally\": [\n        \"RB\"\n    ], \n    \"Afghanistan\\\\/Southwest\": [\n        \"NNP\"\n    ], \n    \"non-utility\": [\n        \"JJ\"\n    ], \n    \"matte\": [\n        \"NN\"\n    ], \n    \"Willing\": [\n        \"JJ\"\n    ], \n    \"Closed\": [\n        \"VBN\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"trucked\": [\n        \"VBN\"\n    ], \n    \"Nostradamus\": [\n        \"NNP\"\n    ], \n    \"Closen\": [\n        \"NNP\"\n    ], \n    \"Method\": [\n        \"NN\"\n    ], \n    \"sponged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"self-confidence\": [\n        \"NN\"\n    ], \n    \"roofer\": [\n        \"NN\"\n    ], \n    \"billing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"holdings\": [\n        \"NNS\"\n    ], \n    \"sauterne\": [\n        \"JJ\"\n    ], \n    \"high-interest\": [\n        \"JJ\"\n    ], \n    \"perchlorate\": [\n        \"NN\"\n    ], \n    \"roofed\": [\n        \"VBN\"\n    ], \n    \"chucked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sponges\": [\n        \"NNS\"\n    ], \n    \"jackass\": [\n        \"NN\"\n    ], \n    \"Shuman\": [\n        \"NNP\"\n    ], \n    \"Enormous\": [\n        \"JJ\"\n    ], \n    \"homeland\": [\n        \"NN\"\n    ], \n    \"eastern\": [\n        \"JJ\"\n    ], \n    \"Drago\": [\n        \"NNP\"\n    ], \n    \"Niels\": [\n        \"NNP\"\n    ], \n    \"tumor-suppressor\": [\n        \"JJ\"\n    ], \n    \"Platoons\": [\n        \"NNS\"\n    ], \n    \"Safeway\": [\n        \"NNP\"\n    ], \n    \"Gloriana\": [\n        \"NNP\"\n    ], \n    \"Hygene\": [\n        \"NNP\"\n    ], \n    \"commerce\": [\n        \"NN\"\n    ], \n    \"Schaeffer\": [\n        \"NNP\"\n    ], \n    \"Tyson-Spinks\": [\n        \"JJ\"\n    ], \n    \"Kaufman\": [\n        \"NNP\"\n    ], \n    \"calcium\": [\n        \"NN\"\n    ], \n    \"symbolically\": [\n        \"RB\"\n    ], \n    \"opulence\": [\n        \"NN\"\n    ], \n    \"flooding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"vows\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Maccabeus\": [\n        \"NNP\"\n    ], \n    \"remembering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"swindlers\": [\n        \"NNS\"\n    ], \n    \"Kornevey\": [\n        \"NNP\"\n    ], \n    \"manipulators\": [\n        \"NNS\"\n    ], \n    \"anti-polio\": [\n        \"JJ\"\n    ], \n    \"short-selling\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"outfitted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Lebow\": [\n        \"NNP\"\n    ], \n    \"Eishi\": [\n        \"NNP\"\n    ], \n    \"campaigning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"blood-and-guts\": [\n        \"JJ\"\n    ], \n    \"Morever\": [\n        \"RB\"\n    ], \n    \"Diefenbach\": [\n        \"NNP\"\n    ], \n    \"confesses\": [\n        \"VBZ\"\n    ], \n    \"shipwrecked\": [\n        \"JJ\"\n    ], \n    \"rebellion\": [\n        \"NN\"\n    ], \n    \"harmony\": [\n        \"NN\"\n    ], \n    \"Wholesaler-Distributors\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Amelia\": [\n        \"NNP\"\n    ], \n    \"Orban\": [\n        \"NNP\"\n    ], \n    \"exertion\": [\n        \"NN\"\n    ], \n    \"kitchen-table\": [\n        \"JJ\"\n    ], \n    \"middle-aged\": [\n        \"JJ\"\n    ], \n    \"Caltrans\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Presiding\": [\n        \"NNP\"\n    ], \n    \"hectares\": [\n        \"NNS\"\n    ], \n    \"Meps\": [\n        \"NNP\"\n    ], \n    \"ownership\": [\n        \"NN\"\n    ], \n    \"personifying\": [\n        \"VBG\"\n    ], \n    \"subgroups\": [\n        \"NNS\"\n    ], \n    \"Villanueva\": [\n        \"NNP\"\n    ], \n    \"off-the-shelf\": [\n        \"JJ\"\n    ], \n    \"high-ranking\": [\n        \"JJ\"\n    ], \n    \"Terree\": [\n        \"NNP\"\n    ], \n    \"Vellante\": [\n        \"NNP\"\n    ], \n    \"disseminated\": [\n        \"VBN\"\n    ], \n    \"maxims\": [\n        \"NNS\"\n    ], \n    \"wavy-haired\": [\n        \"JJ\"\n    ], \n    \"chafing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"leg-split\": [\n        \"JJ\"\n    ], \n    \"disseminates\": [\n        \"VBZ\"\n    ], \n    \"honky-tonk\": [\n        \"NN\"\n    ], \n    \"luminously\": [\n        \"RB\"\n    ], \n    \"PHYSICIANS\": [\n        \"NNS\"\n    ], \n    \"distribute\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"overemphasis\": [\n        \"NN\"\n    ], \n    \"beset\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"false-fronted\": [\n        \"JJ\"\n    ], \n    \"Rigoletto\": [\n        \"NNP\"\n    ], \n    \"eleventh-floor\": [\n        \"JJ\"\n    ], \n    \"exclaiming\": [\n        \"VBG\"\n    ], \n    \"long-dated\": [\n        \"JJ\"\n    ], \n    \"rushing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"succeeding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"collectibles\": [\n        \"NNS\"\n    ], \n    \"keeled\": [\n        \"VBD\"\n    ], \n    \"remedial\": [\n        \"JJ\"\n    ], \n    \"butchering\": [\n        \"NN\"\n    ], \n    \"deters\": [\n        \"VBZ\"\n    ], \n    \"girding\": [\n        \"VBG\"\n    ], \n    \"prison\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"shoemaker\": [\n        \"NN\"\n    ], \n    \"liberal-led\": [\n        \"JJ\"\n    ], \n    \"nutritionists\": [\n        \"NNS\"\n    ], \n    \"grandstander\": [\n        \"NN\"\n    ], \n    \"Dubbed\": [\n        \"VBN\"\n    ], \n    \"Johns-Manville\": [\n        \"NNP\"\n    ], \n    \"PENALTY\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hindus\": [\n        \"NNP\"\n    ], \n    \"merger-acquisition\": [\n        \"JJ\"\n    ], \n    \"pothos\": [\n        \"NN\"\n    ], \n    \"return-preparer\": [\n        \"NN\"\n    ], \n    \"datadex\": [\n        \"NN\"\n    ], \n    \"tolerable\": [\n        \"JJ\"\n    ], \n    \"primaries\": [\n        \"NNS\"\n    ], \n    \"Midshipman\": [\n        \"NNP\"\n    ], \n    \"unimpassioned\": [\n        \"JJ\"\n    ], \n    \"remind\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"misled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"cavin\": [\n        \"VBG\"\n    ], \n    \"groundwater\": [\n        \"NN\"\n    ], \n    \"malnutrition\": [\n        \"NN\"\n    ], \n    \"tomblike\": [\n        \"JJ\"\n    ], \n    \"Further\": [\n        \"RB\", \n        \"JJ\", \n        \"JJR\", \n        \"NNP\", \n        \"RBR\"\n    ], \n    \"Ithaca\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Warren\": [\n        \"NNP\"\n    ], \n    \"battlefield\": [\n        \"NN\"\n    ], \n    \"right\": [\n        \"NN\", \n        \"RB\", \n        \"VB\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"old\": [\n        \"JJ\"\n    ], \n    \"ole\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"PREDAWN\": [\n        \"NN\"\n    ], \n    \"landfall\": [\n        \"NN\"\n    ], \n    \"Soros\": [\n        \"NNP\"\n    ], \n    \"System\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"NS-X\": [\n        \"NNP\"\n    ], \n    \"Application\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Conservation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Noel\": [\n        \"NNP\"\n    ], \n    \"rate...\": [\n        \":\"\n    ], \n    \"Mossman\": [\n        \"NNP\"\n    ], \n    \"animate\": [\n        \"JJ\"\n    ], \n    \"knifelike\": [\n        \"JJ\"\n    ], \n    \"NutraSweet\": [\n        \"NNP\"\n    ], \n    \"dog-powered\": [\n        \"JJ\"\n    ], \n    \"ruffled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"whitens\": [\n        \"VBZ\"\n    ], \n    \"sowed\": [\n        \"VBD\"\n    ], \n    \"Naguib\": [\n        \"NNP\"\n    ], \n    \"prefund\": [\n        \"VB\"\n    ], \n    \"ruffles\": [\n        \"VBZ\"\n    ], \n    \"summoned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sharrock\": [\n        \"NNP\"\n    ], \n    \"stints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"stepgrandmother\": [\n        \"NN\"\n    ], \n    \"Bregman\": [\n        \"NNP\"\n    ], \n    \"Valentin\": [\n        \"NNP\"\n    ], \n    \"Nicholson\": [\n        \"NNP\"\n    ], \n    \"Purdie\": [\n        \"NNP\"\n    ], \n    \"bowing\": [\n        \"VBG\"\n    ], \n    \"PENTAGON\": [\n        \"NNP\"\n    ], \n    \"emits\": [\n        \"VBZ\"\n    ], \n    \"hardliners\": [\n        \"NNS\"\n    ], \n    \"First\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\", \n        \"LS\", \n        \"RB\"\n    ], \n    \"Duquesne\": [\n        \"NNP\"\n    ], \n    \"instructed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"predisposition\": [\n        \"NN\"\n    ], \n    \"sun-parched\": [\n        \"JJ\"\n    ], \n    \"recollect\": [\n        \"VBP\"\n    ], \n    \"Chafin\": [\n        \"NNP\"\n    ], \n    \"Upjohn\": [\n        \"NNP\"\n    ], \n    \"case-law\": [\n        \"NN\"\n    ], \n    \"Chafic\": [\n        \"NNP\"\n    ], \n    \"Devastation\": [\n        \"NN\"\n    ], \n    \"acquisition-hungry\": [\n        \"JJ\"\n    ], \n    \"statements\": [\n        \"NNS\"\n    ], \n    \"Ainu\": [\n        \"NNP\"\n    ], \n    \"Betancourt\": [\n        \"NNP\"\n    ], \n    \"Scotland\": [\n        \"NNP\"\n    ], \n    \"mid-July\": [\n        \"NN\"\n    ], \n    \"premium-brand\": [\n        \"JJ\"\n    ], \n    \"Korean\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Hank\": [\n        \"NNP\"\n    ], \n    \"Overhanging\": [\n        \"VBG\"\n    ], \n    \"Hani\": [\n        \"NNP\"\n    ], \n    \"un-Christian\": [\n        \"JJ\"\n    ], \n    \"frazzled\": [\n        \"VBN\"\n    ], \n    \"Hann\": [\n        \"NNP\"\n    ], \n    \"Hang\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Neuharths\": [\n        \"NNPS\"\n    ], \n    \"beach-head\": [\n        \"NN\"\n    ], \n    \"Hand\": [\n        \"NN\", \n        \"VB\", \n        \"NNP\"\n    ], \n    \"Submarines\": [\n        \"NNS\"\n    ], \n    \"gyration\": [\n        \"NN\"\n    ], \n    \"triplets\": [\n        \"NNS\"\n    ], \n    \"Hans\": [\n        \"NNP\"\n    ], \n    \"kerosene\": [\n        \"NN\"\n    ], \n    \"Bodhisattva\": [\n        \"NNP\"\n    ], \n    \"unfree\": [\n        \"JJ\"\n    ], \n    \"regenerating\": [\n        \"VBG\"\n    ], \n    \"Invest\": [\n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"followthrough\": [\n        \"JJ\"\n    ], \n    \"JAPANESE\": [\n        \"JJ\"\n    ], \n    \"Superstate\": [\n        \"NNP\"\n    ], \n    \"stone-age\": [\n        \"JJ\"\n    ], \n    \"peppermints\": [\n        \"NNS\"\n    ], \n    \"toy-market\": [\n        \"NN\"\n    ], \n    \"onlooker\": [\n        \"NN\"\n    ], \n    \"upgrades\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sighs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"prosecutions\": [\n        \"NNS\"\n    ], \n    \"socially-oriented\": [\n        \"JJ\"\n    ], \n    \"Guests\": [\n        \"NNS\"\n    ], \n    \"drive-yourself\": [\n        \"JJ\"\n    ], \n    \"bateau\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sis\": [\n        \"NNP\"\n    ], \n    \"Sir\": [\n        \"NNP\", \n        \"NN\", \n        \"UH\"\n    ], \n    \"developing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sit\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"homogenous\": [\n        \"JJ\"\n    ], \n    \"bigger-than-expected\": [\n        \"JJ\"\n    ], \n    \"Josh\": [\n        \"NNP\"\n    ], \n    \"restorative\": [\n        \"JJ\"\n    ], \n    \"Sic\": [\n        \"FW\"\n    ], \n    \"Squad\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Sie\": [\n        \"FW\"\n    ], \n    \"Sid\": [\n        \"NNP\"\n    ], \n    \"Sik\": [\n        \"NNP\"\n    ], \n    \"York-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"black-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"acacia\": [\n        \"NN\"\n    ], \n    \"Sin\": [\n        \"NNP\"\n    ], \n    \"Sim\": [\n        \"NNP\"\n    ], \n    \"brown-coal\": [\n        \"NN\"\n    ], \n    \"battalion\": [\n        \"NN\"\n    ], \n    \"Handle\": [\n        \"VB\"\n    ], \n    \"lungs\": [\n        \"NNS\"\n    ], \n    \"Gradmann\": [\n        \"NNP\"\n    ], \n    \"Czechs\": [\n        \"NNPS\"\n    ], \n    \"Ramon\": [\n        \"NNP\"\n    ], \n    \"Ramos\": [\n        \"NNP\"\n    ], \n    \"tax-preparation\": [\n        \"NN\"\n    ], \n    \"momentary\": [\n        \"JJ\"\n    ], \n    \"wart\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"steamship\": [\n        \"NN\"\n    ], \n    \"Situations\": [\n        \"NNS\"\n    ], \n    \"Tiptonville\": [\n        \"NNP\"\n    ], \n    \"get-together\": [\n        \"NN\"\n    ], \n    \"CFM56\": [\n        \"NN\"\n    ], \n    \"round-the-world\": [\n        \"JJ\"\n    ], \n    \"Nymagic\": [\n        \"NNP\"\n    ], \n    \"malnourishment\": [\n        \"NN\"\n    ], \n    \"barrel-a-day\": [\n        \"JJ\"\n    ], \n    \"Voutila\": [\n        \"NNP\"\n    ], \n    \"Morrow\": [\n        \"NNP\"\n    ], \n    \"madrigaling\": [\n        \"NN\"\n    ], \n    \"BOEING\": [\n        \"NNP\"\n    ], \n    \"cottonseed\": [\n        \"NN\"\n    ], \n    \"twinkle\": [\n        \"NN\"\n    ], \n    \"ASPIS\": [\n        \"FW\"\n    ], \n    \"good-natured\": [\n        \"JJ\"\n    ], \n    \"Cristini\": [\n        \"NNP\"\n    ], \n    \"Creusot\": [\n        \"NNP\"\n    ], \n    \"push\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"combat-inflicted\": [\n        \"JJ\"\n    ], \n    \"Wallstreet\": [\n        \"NNP\"\n    ], \n    \"equalizer\": [\n        \"NN\"\n    ], \n    \"automated-quotation\": [\n        \"NN\"\n    ], \n    \"front-loads\": [\n        \"VBZ\"\n    ], \n    \"inter-bank\": [\n        \"JJ\"\n    ], \n    \"shimmy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Headrests\": [\n        \"NNS\"\n    ], \n    \"Juet\": [\n        \"NNP\"\n    ], \n    \"Metropolis\": [\n        \"NNP\"\n    ], \n    \"Backward\": [\n        \"NNP\"\n    ], \n    \"Peel\": [\n        \"NNP\"\n    ], \n    \"serloin\": [\n        \"NN\"\n    ], \n    \"Rama\": [\n        \"NNP\"\n    ], \n    \"before-and-after\": [\n        \"JJ\"\n    ], \n    \"efficiencies\": [\n        \"NNS\"\n    ], \n    \"carpenters\": [\n        \"NNS\"\n    ], \n    \"Peer\": [\n        \"NNP\"\n    ], \n    \"Peep\": [\n        \"NNP\"\n    ], \n    \"thick-walled\": [\n        \"JJ\"\n    ], \n    \"accelerometers\": [\n        \"NNS\"\n    ], \n    \"Henson\": [\n        \"NNP\"\n    ], \n    \"fatigues\": [\n        \"NNS\"\n    ], \n    \"Redgrave\": [\n        \"NNP\"\n    ], \n    \"shepherds\": [\n        \"NNS\"\n    ], \n    \"navigable\": [\n        \"JJ\"\n    ], \n    \"smalltime\": [\n        \"JJ\"\n    ], \n    \"consolidation\": [\n        \"NN\"\n    ], \n    \"Solihull\": [\n        \"NNP\"\n    ], \n    \"Darryl\": [\n        \"NNP\"\n    ], \n    \"alcoholics\": [\n        \"NNS\"\n    ], \n    \"REIGNS\": [\n        \"VBZ\"\n    ], \n    \"fatigued\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"fault-tolerant\": [\n        \"JJ\"\n    ], \n    \"launchers\": [\n        \"NNS\"\n    ], \n    \"whole-house\": [\n        \"JJ\"\n    ], \n    \"Champion\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uncourageous\": [\n        \"JJ\"\n    ], \n    \"Overpriced\": [\n        \"NNP\"\n    ], \n    \"hemetin\": [\n        \"NN\"\n    ], \n    \"somersault\": [\n        \"NN\"\n    ], \n    \"liabilty\": [\n        \"NN\"\n    ], \n    \"Most-Remarkable\": [\n        \"JJS\"\n    ], \n    \"depository\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"LePatner\": [\n        \"NNP\"\n    ], \n    \"world-shaking\": [\n        \"JJ\"\n    ], \n    \"Kevin\": [\n        \"NNP\"\n    ], \n    \"social-climbing\": [\n        \"JJ\"\n    ], \n    \"bulldozer\": [\n        \"NN\"\n    ], \n    \"thinkers\": [\n        \"NNS\"\n    ], \n    \"findings\": [\n        \"NNS\"\n    ], \n    \"insignificant\": [\n        \"JJ\"\n    ], \n    \"prediction\": [\n        \"NN\"\n    ], \n    \"milligram\": [\n        \"NN\"\n    ], \n    \"bulldozed\": [\n        \"VBN\"\n    ], \n    \"crescent\": [\n        \"NN\"\n    ], \n    \"frankfurter\": [\n        \"NN\"\n    ], \n    \"nuclear-plant\": [\n        \"JJ\"\n    ], \n    \"credit-softening\": [\n        \"NN\"\n    ], \n    \"repeaters\": [\n        \"NNS\"\n    ], \n    \"Boyden\": [\n        \"NNP\"\n    ], \n    \"random-walk\": [\n        \"JJ\"\n    ], \n    \"coppery\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"work-satisfaction\": [\n        \"NN\"\n    ], \n    \"post-merger\": [\n        \"JJ\"\n    ], \n    \"Irenaeus\": [\n        \"NNP\"\n    ], \n    \"Formosa\": [\n        \"NNP\"\n    ], \n    \"crooks\": [\n        \"NNS\"\n    ], \n    \"falling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"badge\": [\n        \"NN\"\n    ], \n    \"often-fatal\": [\n        \"JJ\"\n    ], \n    \"totalling\": [\n        \"VBG\"\n    ], \n    \"ramming\": [\n        \"VBG\"\n    ], \n    \"by-products\": [\n        \"NNS\"\n    ], \n    \"bi\": [\n        \"IN\"\n    ], \n    \"shortened\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"contemplate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kid-Isoletta\": [\n        \"NNP\"\n    ], \n    \"island-hopping\": [\n        \"JJ\"\n    ], \n    \"D.A.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"back-pain\": [\n        \"NN\"\n    ], \n    \"Associated\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"counter-claims\": [\n        \"NNS\"\n    ], \n    \"Preservation\": [\n        \"NNP\"\n    ], \n    \"fourfold\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"de-linkage\": [\n        \"NN\"\n    ], \n    \"Travis\": [\n        \"NNP\"\n    ], \n    \"big-stock\": [\n        \"JJ\"\n    ], \n    \"Associates\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Bork\": [\n        \"NNP\"\n    ], \n    \"Slugger\": [\n        \"NNP\"\n    ], \n    \"IRNA\": [\n        \"NNP\"\n    ], \n    \"Malson\": [\n        \"NNP\"\n    ], \n    \"internationalizing\": [\n        \"VBG\"\n    ], \n    \"confidentiality\": [\n        \"NN\"\n    ], \n    \"Dauntless\": [\n        \"NNP\"\n    ], \n    \"Naji\": [\n        \"NNP\"\n    ], \n    \"Abbey\": [\n        \"NNP\"\n    ], \n    \"leopard-trimmed\": [\n        \"JJ\"\n    ], \n    \"Lisle\": [\n        \"NNP\"\n    ], \n    \"Stealth\": [\n        \"NNP\"\n    ], \n    \"Hyon-hui\": [\n        \"NNP\"\n    ], \n    \"ironical\": [\n        \"JJ\"\n    ], \n    \"McNeill\": [\n        \"NNP\"\n    ], \n    \"shipmates\": [\n        \"NNS\"\n    ], \n    \"single-parent\": [\n        \"JJ\"\n    ], \n    \"Altar\": [\n        \"NNP\"\n    ], \n    \"distancing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"anatomical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Danaher\": [\n        \"NNP\"\n    ], \n    \"Ultraviolet\": [\n        \"NN\"\n    ], \n    \"Gilgore\": [\n        \"NNP\"\n    ], \n    \"ORANGE\": [\n        \"NN\"\n    ], \n    \"anti-shock\": [\n        \"JJ\"\n    ], \n    \"electrolytic\": [\n        \"JJ\"\n    ], \n    \"resuscitation\": [\n        \"NN\"\n    ], \n    \"loving\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"high-speed\": [\n        \"JJ\"\n    ], \n    \"one-two\": [\n        \"JJ\"\n    ], \n    \"Elegies\": [\n        \"NNP\"\n    ], \n    \"leeches\": [\n        \"NNS\"\n    ], \n    \"refrain\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"militated\": [\n        \"VBN\"\n    ], \n    \"Senate\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"earnigs\": [\n        \"NNS\"\n    ], \n    \"less-junky\": [\n        \"JJR\"\n    ], \n    \"low-loss\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Constraints\": [\n        \"NNS\"\n    ], \n    \"Top-of-the-Line\": [\n        \"JJ\"\n    ], \n    \"Pope\": [\n        \"NNP\"\n    ], \n    \"Locke\": [\n        \"NNP\"\n    ], \n    \"jewel-bright\": [\n        \"RB\"\n    ], \n    \"time-proven\": [\n        \"JJ\"\n    ], \n    \"privy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pops\": [\n        \"NNP\"\n    ], \n    \"impasse\": [\n        \"NN\"\n    ], \n    \"printing\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"multi-family\": [\n        \"JJ\"\n    ], \n    \"Anglo-Americans\": [\n        \"NNPS\"\n    ], \n    \"Glue\": [\n        \"NN\"\n    ], \n    \"Yinger\": [\n        \"NNP\"\n    ], \n    \"nosebleed\": [\n        \"NN\"\n    ], \n    \"sheeting\": [\n        \"NN\"\n    ], \n    \"Bremsstrahlung\": [\n        \"NN\"\n    ], \n    \"good-humoredly\": [\n        \"RB\"\n    ], \n    \"Scrap\": [\n        \"NN\"\n    ], \n    \"romanticism\": [\n        \"NN\"\n    ], \n    \"greatcoat\": [\n        \"NN\"\n    ], \n    \"unequalled\": [\n        \"JJ\"\n    ], \n    \"uncomforted\": [\n        \"JJ\"\n    ], \n    \"hard-to-please\": [\n        \"JJ\"\n    ], \n    \"offense\": [\n        \"NN\"\n    ], \n    \"BAM\": [\n        \"NNP\"\n    ], \n    \"rhythm-and-blues\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"recentralizing\": [\n        \"VBG\"\n    ], \n    \"coyotes\": [\n        \"NNS\"\n    ], \n    \"divided\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Alagoas\": [\n        \"NNP\"\n    ], \n    \"bad-fitting\": [\n        \"JJ\"\n    ], \n    \"immune\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"BAe\": [\n        \"NNP\"\n    ], \n    \"advancing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"divider\": [\n        \"NN\"\n    ], \n    \"revolted\": [\n        \"VBD\"\n    ], \n    \"lilacs\": [\n        \"NNS\"\n    ], \n    \"bottom-dwelling\": [\n        \"JJ\"\n    ], \n    \"salicylates\": [\n        \"NNS\"\n    ], \n    \"Mesnil\": [\n        \"NNP\"\n    ], \n    \"rigors\": [\n        \"NNS\"\n    ], \n    \"Beckman\": [\n        \"NNP\"\n    ], \n    \"Burgundian\": [\n        \"JJ\"\n    ], \n    \"Griffin-Byrd\": [\n        \"NNP\"\n    ], \n    \"cardiac\": [\n        \"JJ\"\n    ], \n    \"dove\": [\n        \"NN\", \n        \"VBD\"\n    ], \n    \"stress\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Lura\": [\n        \"NNP\"\n    ], \n    \"Constructeurs\": [\n        \"NNP\"\n    ], \n    \"castings\": [\n        \"NNS\"\n    ], \n    \"Waigel\": [\n        \"NNP\"\n    ], \n    \"pre-suspension\": [\n        \"JJ\"\n    ], \n    \"bush\": [\n        \"NN\"\n    ], \n    \"lighter\": [\n        \"JJR\", \n        \"RBR\", \n        \"NN\"\n    ], \n    \"insurgency\": [\n        \"NN\"\n    ], \n    \"monocrotophos\": [\n        \"NNS\"\n    ], \n    \"Edwina\": [\n        \"NNP\"\n    ], \n    \"Barnet\": [\n        \"NNP\"\n    ], \n    \"Kan\": [\n        \"NNP\"\n    ], \n    \"public-limit\": [\n        \"JJ\"\n    ], \n    \"incapacity\": [\n        \"NN\"\n    ], \n    \"shuddery\": [\n        \"NN\"\n    ], \n    \"Teagan\": [\n        \"NNP\"\n    ], \n    \"stampeded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Oaks\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"insurgence\": [\n        \"NN\"\n    ], \n    \"Lesutis\": [\n        \"NNP\"\n    ], \n    \"shudders\": [\n        \"NNS\"\n    ], \n    \"Lecturer\": [\n        \"NNP\"\n    ], \n    \"Lectures\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"derive\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Nymphomaniacs\": [\n        \"NNS\"\n    ], \n    \"haughty\": [\n        \"JJ\"\n    ], \n    \"babbino\": [\n        \"FW\"\n    ], \n    \"upper-crust\": [\n        \"JJ\"\n    ], \n    \"Argyros\": [\n        \"NNP\"\n    ], \n    \"paraded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"decreases\": [\n        \"NNS\", \n        \"VBP\", \n        \"VBZ\"\n    ], \n    \"Nando\": [\n        \"NNP\"\n    ], \n    \"Tojos\": [\n        \"NNPS\"\n    ], \n    \"Vroom\": [\n        \"NNP\"\n    ], \n    \"lethality\": [\n        \"NN\"\n    ], \n    \"decreased\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"bipartisan\": [\n        \"JJ\"\n    ], \n    \"parades\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Greek-Danish\": [\n        \"NNP\"\n    ], \n    \"instantly\": [\n        \"RB\"\n    ], \n    \"pleasance\": [\n        \"NN\"\n    ], \n    \"Halis\": [\n        \"NNP\"\n    ], \n    \"retails\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"E.F.\": [\n        \"NNP\"\n    ], \n    \"smarter\": [\n        \"RBR\", \n        \"JJR\", \n        \"RB\"\n    ], \n    \"outgained\": [\n        \"VBD\"\n    ], \n    \"withdrawal\": [\n        \"NN\"\n    ], \n    \"BASF\": [\n        \"NNP\"\n    ], \n    \"compelled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"subscribers\": [\n        \"NNS\"\n    ], \n    \"Bissett\": [\n        \"NNP\"\n    ], \n    \"ketchup\": [\n        \"NN\", \n        \"VB|IN\"\n    ], \n    \"smarted\": [\n        \"VBD\"\n    ], \n    \"Baluchis\": [\n        \"NNPS\"\n    ], \n    \"withdrew\": [\n        \"VBD\"\n    ], \n    \"Open-flame\": [\n        \"JJ\"\n    ], \n    \"internationalists\": [\n        \"NNS\"\n    ], \n    \"Grants\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"suspends\": [\n        \"VBZ\"\n    ], \n    \"veins\": [\n        \"NNS\"\n    ], \n    \"hexametaphosphate\": [\n        \"NN\"\n    ], \n    \"school-bus\": [\n        \"NN\"\n    ], \n    \"facsiport\": [\n        \"NN\"\n    ], \n    \"concertina\": [\n        \"NN\"\n    ], \n    \"expectedly\": [\n        \"RB\"\n    ], \n    \"fluted\": [\n        \"VBN\"\n    ], \n    \"mother-introject\": [\n        \"NN\"\n    ], \n    \"topnotch\": [\n        \"JJ\"\n    ], \n    \"Mandel\": [\n        \"NNP\"\n    ], \n    \"paling\": [\n        \"VBG\"\n    ], \n    \"Landerbank\": [\n        \"NNP\"\n    ], \n    \"Bigg\": [\n        \"NNP\"\n    ], \n    \"flutes\": [\n        \"NNS\"\n    ], \n    \"Roper\": [\n        \"NNP\"\n    ], \n    \"Satellite\": [\n        \"NNP\"\n    ], \n    \"Ryskamp\": [\n        \"NNP\"\n    ], \n    \"novice\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"post-operative\": [\n        \"JJ\"\n    ], \n    \"gyro-platform-servo\": [\n        \"JJ\"\n    ], \n    \"boundless\": [\n        \"JJ\"\n    ], \n    \"exploding\": [\n        \"VBG\"\n    ], \n    \"Tolubeyev\": [\n        \"NNP\"\n    ], \n    \"bison\": [\n        \"NN\"\n    ], \n    \"OBE\": [\n        \"NNP\"\n    ], \n    \"reexamination\": [\n        \"NN\"\n    ], \n    \"complimented\": [\n        \"VBN\"\n    ], \n    \"English-born\": [\n        \"JJ\"\n    ], \n    \"Valerie\": [\n        \"NNP\"\n    ], \n    \"worthiness\": [\n        \"NN\"\n    ], \n    \"prostitutes\": [\n        \"NNS\"\n    ], \n    \"fellow-creatures\": [\n        \"NN\"\n    ], \n    \"poltergeists\": [\n        \"NNS\"\n    ], \n    \"quite\": [\n        \"RB\", \n        \"PDT\"\n    ], \n    \"Ostroff\": [\n        \"NNP\"\n    ], \n    \"vegetarians\": [\n        \"NNS\"\n    ], \n    \"quits\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"sin-ned\": [\n        \"VB\"\n    ], \n    \"remainder\": [\n        \"NN\"\n    ], \n    \"SPRINGFIELD\": [\n        \"NNP\"\n    ], \n    \"training\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"late-summer\": [\n        \"JJ\"\n    ], \n    \"potting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unlicensed\": [\n        \"JJ\"\n    ], \n    \"punk\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"squibs\": [\n        \"NNS\"\n    ], \n    \"Sheraton-Pan\": [\n        \"NNP\"\n    ], \n    \"Layton\": [\n        \"NNP\"\n    ], \n    \"punt\": [\n        \"NN\"\n    ], \n    \"puns\": [\n        \"NNS\"\n    ], \n    \"massive\": [\n        \"JJ\"\n    ], \n    \"Triple\": [\n        \"NNP\"\n    ], \n    \"Bargain-hunting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Brodie\": [\n        \"NNP\"\n    ], \n    \"hooch\": [\n        \"NN\"\n    ], \n    \"globe-girdling\": [\n        \"JJ\"\n    ], \n    \"puny\": [\n        \"JJ\"\n    ], \n    \"Acheson\": [\n        \"NNP\"\n    ], \n    \"U.S.-Canada\": [\n        \"NNP\"\n    ], \n    \"architecturally\": [\n        \"RB\"\n    ], \n    \"clause\": [\n        \"NN\"\n    ], \n    \"ATM\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Isolated\": [\n        \"JJ\"\n    ], \n    \"CBS\\\\\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"ATI\": [\n        \"NNP\"\n    ], \n    \"reopen\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fund-raiser\": [\n        \"NN\"\n    ], \n    \"specifically\": [\n        \"RB\"\n    ], \n    \"Miriani\": [\n        \"NNP\"\n    ], \n    \"Alvero-Cruz\": [\n        \"NNP\"\n    ], \n    \"A.M.A.\": [\n        \"NNP\"\n    ], \n    \"quasi-parliamentary\\\\/judicial\": [\n        \"JJ\"\n    ], \n    \"excursions\": [\n        \"NNS\"\n    ], \n    \"BellSouth\\\\\": [\n        \"JJ\"\n    ], \n    \"structured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Salesmanship\": [\n        \"NN\"\n    ], \n    \"Observers\": [\n        \"NNS\"\n    ], \n    \"self-extinguishing\": [\n        \"JJ\"\n    ], \n    \"draft\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Laing\": [\n        \"NNP\"\n    ], \n    \"shoppers\": [\n        \"NNS\"\n    ], \n    \"T.F.\": [\n        \"NNP\"\n    ], \n    \"structures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Socola\": [\n        \"NNP\"\n    ], \n    \"plies\": [\n        \"VBZ\"\n    ], \n    \"Mozart\": [\n        \"NNP\"\n    ], \n    \"artifact\": [\n        \"NN\"\n    ], \n    \"uneconomical\": [\n        \"JJ\"\n    ], \n    \"veers\": [\n        \"VBZ\"\n    ], \n    \"simulators\": [\n        \"NNS\"\n    ], \n    \"anti-diarrheal\": [\n        \"JJ\"\n    ], \n    \"suit-and-tie\": [\n        \"JJ\"\n    ], \n    \"Approval\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Durk\": [\n        \"NNP\"\n    ], \n    \"Bruegel\": [\n        \"NNP\"\n    ], \n    \"pheasants\": [\n        \"NNS\"\n    ], \n    \"inventor\": [\n        \"NN\"\n    ], \n    \"price-value\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fledglings\": [\n        \"NNS\"\n    ], \n    \"AT*\": [\n        \"NNP\"\n    ], \n    \"feler\": [\n        \"NN\"\n    ], \n    \"Deliveries\": [\n        \"NNS\"\n    ], \n    \"estancias\": [\n        \"NNS\"\n    ], \n    \"siding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"rainbow-hued\": [\n        \"JJ\"\n    ], \n    \"glossy\": [\n        \"JJ\"\n    ], \n    \"Fraternal\": [\n        \"NNP\"\n    ], \n    \"companionable\": [\n        \"JJ\"\n    ], \n    \"thousandths\": [\n        \"NNS\"\n    ], \n    \"fern-like\": [\n        \"JJ\"\n    ], \n    \"sac\": [\n        \"NN\"\n    ], \n    \"Regarded\": [\n        \"VBN\"\n    ], \n    \"N/NNP.Y.C.\": [\n        \"NNP\"\n    ], \n    \"sag\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"afternoons\": [\n        \"NNS\", \n        \"RB\"\n    ], \n    \"sad\": [\n        \"JJ\"\n    ], \n    \"prestigious\": [\n        \"JJ\"\n    ], \n    \"stratosphere\": [\n        \"NN\"\n    ], \n    \"sax\": [\n        \"NN\"\n    ], \n    \"flatness\": [\n        \"NN\"\n    ], \n    \"inhibiting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"bewilderingly\": [\n        \"RB\"\n    ], \n    \"sap\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"saw\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"window-washing\": [\n        \"NN\"\n    ], \n    \"sat\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"toughest-guy-in-the-old-days\": [\n        \"JJ\"\n    ], \n    \"dollars-and-cents\": [\n        \"NNS\"\n    ], \n    \"Murakami\": [\n        \"NNP\"\n    ], \n    \"aside\": [\n        \"RB\", \n        \"RP\"\n    ], \n    \"Touche\": [\n        \"NNP\"\n    ], \n    \"Important\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"transcribed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"property-loan\": [\n        \"JJ\"\n    ], \n    \"surfacing\": [\n        \"VBG\"\n    ], \n    \"roadside\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"destroy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Third-period\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"time-honored\": [\n        \"JJ\"\n    ], \n    \"Steady\": [\n        \"JJ\"\n    ], \n    \"knew\": [\n        \"VBD\"\n    ], \n    \"pastor\": [\n        \"NN\"\n    ], \n    \"Tanqueray\": [\n        \"NNP\"\n    ], \n    \"verifiers\": [\n        \"NNS\"\n    ], \n    \"knee\": [\n        \"NN\"\n    ], \n    \"pager\": [\n        \"NN\"\n    ], \n    \"pages\": [\n        \"NNS\"\n    ], \n    \"non-service\": [\n        \"JJ\"\n    ], \n    \"MILEAGE\": [\n        \"NN\"\n    ], \n    \"Schaaf\": [\n        \"NNP\"\n    ], \n    \"defeating\": [\n        \"VBG\"\n    ], \n    \"sodas\": [\n        \"NNS\"\n    ], \n    \"Antarctica\": [\n        \"NNP\"\n    ], \n    \"butchered\": [\n        \"VBN\"\n    ], \n    \"Indignantly\": [\n        \"RB\"\n    ], \n    \"accented\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"flaunted\": [\n        \"VBD\"\n    ], \n    \"cobra\": [\n        \"NN\"\n    ], \n    \"oncogenes\": [\n        \"NNS\"\n    ], \n    \"homespun\": [\n        \"JJ\"\n    ], \n    \"Outbreaks\": [\n        \"NNS\"\n    ], \n    \"hustings\": [\n        \"NN\"\n    ], \n    \"commissary\": [\n        \"NN\"\n    ], \n    \"urgings\": [\n        \"NNS\"\n    ], \n    \"Wants\": [\n        \"VBZ\"\n    ], \n    \"Cyr\": [\n        \"NNP\"\n    ], \n    \"gourd\": [\n        \"NN\"\n    ], \n    \"relaxer\": [\n        \"NN\"\n    ], \n    \"cloak\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"foward\": [\n        \"JJ\"\n    ], \n    \"Batterymarch\": [\n        \"NNP\"\n    ], \n    \"Unconsciously\": [\n        \"RB\"\n    ], \n    \"home-comings\": [\n        \"NNS\"\n    ], \n    \"Cyd\": [\n        \"NNP\"\n    ], \n    \"uppermost\": [\n        \"JJS\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"blinds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"congressional\": [\n        \"JJ\"\n    ], \n    \"dispute\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Korean-Americans\": [\n        \"NNPS\"\n    ], \n    \"sheltering\": [\n        \"VBG\"\n    ], \n    \"Guns\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"dissimilar\": [\n        \"JJ\"\n    ], \n    \"genera\": [\n        \"NN\"\n    ], \n    \"incubation\": [\n        \"NN\"\n    ], \n    \"Aprotinine\": [\n        \"NNP\"\n    ], \n    \"sidestepping\": [\n        \"VBG\"\n    ], \n    \"outlet\": [\n        \"NN\"\n    ], \n    \"supergiants\": [\n        \"NNS\"\n    ], \n    \"MEA\": [\n        \"NNP\"\n    ], \n    \"prime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"red-carpet\": [\n        \"JJ\"\n    ], \n    \"shallow-water\": [\n        \"NN\"\n    ], \n    \"prima\": [\n        \"NN\"\n    ], \n    \"Housings\": [\n        \"NNS\"\n    ], \n    \"Scrupulous\": [\n        \"JJ\"\n    ], \n    \"snowsuit\": [\n        \"NN\"\n    ], \n    \"Yamamoto\": [\n        \"NNP\"\n    ], \n    \"sick-building\": [\n        \"JJ\"\n    ], \n    \"ghastly\": [\n        \"JJ\"\n    ], \n    \"Bronston\": [\n        \"NNP\"\n    ], \n    \"Olson\": [\n        \"NNP\"\n    ], \n    \"subversives\": [\n        \"NNS\"\n    ], \n    \"Farooquee\": [\n        \"NNP\"\n    ], \n    \"revitalizing\": [\n        \"VBG\"\n    ], \n    \"price-stability\": [\n        \"NN\"\n    ], \n    \"appropriating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"top-level\": [\n        \"JJ\"\n    ], \n    \"groundball\": [\n        \"NN\"\n    ], \n    \"corsage\": [\n        \"NN\"\n    ], \n    \"Sternbach\": [\n        \"NNP\"\n    ], \n    \"once-strong\": [\n        \"JJ\"\n    ], \n    \"plummet\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Procter\": [\n        \"NNP\"\n    ], \n    \"sixth-sense\": [\n        \"NN\"\n    ], \n    \"jumped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Sportscreme\": [\n        \"NNP\"\n    ], \n    \"Sweeney\": [\n        \"NNP\"\n    ], \n    \"dormitory\": [\n        \"NN\"\n    ], \n    \"second-place\": [\n        \"JJ\"\n    ], \n    \"bureau\": [\n        \"NN\"\n    ], \n    \"churchgoing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fearless\": [\n        \"JJ\"\n    ], \n    \"Paree\": [\n        \"NNP\"\n    ], \n    \"Hotham\": [\n        \"NNP\"\n    ], \n    \"forsake\": [\n        \"VB\"\n    ], \n    \"decks\": [\n        \"NNS\"\n    ], \n    \"domi\": [\n        \"FW\"\n    ], \n    \"Beaujolais\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"lettin\": [\n        \"VBG\"\n    ], \n    \"Facilitatory\": [\n        \"JJ\"\n    ], \n    \"nightmarish\": [\n        \"JJ\"\n    ], \n    \"dome\": [\n        \"NN\"\n    ], \n    \"wash-outs\": [\n        \"NNS\"\n    ], \n    \"Buchheister\": [\n        \"NNP\"\n    ], \n    \"losses...\": [\n        \":\"\n    ], \n    \"new-country\": [\n        \"JJ\"\n    ], \n    \"half-light\": [\n        \"NN\"\n    ], \n    \"precipitin\": [\n        \"NN\"\n    ], \n    \"congregations\": [\n        \"NNS\"\n    ], \n    \"Religione\": [\n        \"NNP\"\n    ], \n    \"adept\": [\n        \"JJ\"\n    ], \n    \"ineptly\": [\n        \"RB\"\n    ], \n    \"thickly\": [\n        \"RB\"\n    ], \n    \"designees\": [\n        \"NNS\"\n    ], \n    \"madcap\": [\n        \"JJ\"\n    ], \n    \"Medstone\": [\n        \"NNP\"\n    ], \n    \"Greatly\": [\n        \"RB\"\n    ], \n    \"Advocates\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"governmentally\": [\n        \"RB\"\n    ], \n    \"receipts\": [\n        \"NNS\"\n    ], \n    \"setters\": [\n        \"NNS\"\n    ], \n    \"NDN\": [\n        \"NNP\"\n    ], \n    \"Schumann\": [\n        \"NNP\"\n    ], \n    \"Strohman\": [\n        \"NNP\"\n    ], \n    \"girl-san\": [\n        \"NN\"\n    ], \n    \"furthered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fly-boy\": [\n        \"NN\"\n    ], \n    \"pharmacy\": [\n        \"NN\"\n    ], \n    \"frizzling\": [\n        \"VBG\"\n    ], \n    \"cities\": [\n        \"NNS\"\n    ], \n    \"Desir\": [\n        \"NNP\"\n    ], \n    \"companionship\": [\n        \"NN\"\n    ], \n    \"testimonial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"airliner\": [\n        \"NN\"\n    ], \n    \"airlines\": [\n        \"NNS\"\n    ], \n    \"overland\": [\n        \"RB\"\n    ], \n    \"reflective\": [\n        \"JJ\"\n    ], \n    \"originates\": [\n        \"VBZ\"\n    ], \n    \"Princess\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"column-shaped\": [\n        \"JJ\"\n    ], \n    \"Marcilio\": [\n        \"NNP\"\n    ], \n    \"lanes\": [\n        \"NNS\"\n    ], \n    \"enlisted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"rekindles\": [\n        \"VBZ\"\n    ], \n    \"Tishman\": [\n        \"NNP\"\n    ], \n    \"coughing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Catalysts\": [\n        \"NNS\"\n    ], \n    \"Sucks\": [\n        \"NNS\"\n    ], \n    \"rekindled\": [\n        \"VBN\"\n    ], \n    \"observe\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dominion\": [\n        \"NNP\"\n    ], \n    \"N.M.-based\": [\n        \"JJ\"\n    ], \n    \"spillover\": [\n        \"NN\"\n    ], \n    \"reissue\": [\n        \"NN\"\n    ], \n    \"Mussett\": [\n        \"NNP\"\n    ], \n    \"Formerly\": [\n        \"RB\"\n    ], \n    \"Rydell\": [\n        \"NNP\"\n    ], \n    \"spanking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"corporatism\": [\n        \"NN\"\n    ], \n    \"intimately\": [\n        \"RB\"\n    ], \n    \"invoking\": [\n        \"VBG\"\n    ], \n    \"canoes\": [\n        \"NNS\"\n    ], \n    \"coextrude\": [\n        \"VBP\"\n    ], \n    \"corporatist\": [\n        \"NN\"\n    ], \n    \"monkey-gland\": [\n        \"NN\"\n    ], \n    \"chamois\": [\n        \"NN\"\n    ], \n    \"twisty\": [\n        \"JJ\"\n    ], \n    \"maximal\": [\n        \"JJ\"\n    ], \n    \"Rennie\": [\n        \"NNP\"\n    ], \n    \"canoe\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"creamier\": [\n        \"JJR\"\n    ], \n    \"DIG\": [\n        \"NNP\"\n    ], \n    \"canon\": [\n        \"NN\"\n    ], \n    \"advanced-technology\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Eddyman\": [\n        \"NNP\"\n    ], \n    \"Looking\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"regularity\": [\n        \"NN\"\n    ], \n    \"hand-level\": [\n        \"JJ\"\n    ], \n    \"joint-return\": [\n        \"JJ\"\n    ], \n    \"redeemin\": [\n        \"VBG\"\n    ], \n    \"casings\": [\n        \"NNS\"\n    ], \n    \"fame\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"plastic-covered\": [\n        \"JJ\"\n    ], \n    \"Leubert\": [\n        \"NNP\"\n    ], \n    \"Merchandising\": [\n        \"NNP\"\n    ], \n    \"nationalism\": [\n        \"NN\"\n    ], \n    \"thinkin\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"helpfully\": [\n        \"RB\"\n    ], \n    \"mobster\": [\n        \"NN\"\n    ], \n    \"vandalism\": [\n        \"NN\"\n    ], \n    \"Nedelman\": [\n        \"NNP\"\n    ], \n    \"design-conscious\": [\n        \"JJ\"\n    ], \n    \"high-salaried\": [\n        \"JJ\"\n    ], \n    \"codes\": [\n        \"NNS\"\n    ], \n    \"Johnson-era\": [\n        \"NN\"\n    ], \n    \"entanglement\": [\n        \"NN\"\n    ], \n    \"squeamishness\": [\n        \"NN\"\n    ], \n    \"renewable\": [\n        \"JJ\"\n    ], \n    \"Conant\": [\n        \"NNP\"\n    ], \n    \"colorblind\": [\n        \"JJ\"\n    ], \n    \"Skilled\": [\n        \"JJ\"\n    ], \n    \"Zaita\": [\n        \"NNP\"\n    ], \n    \"Neapolitan\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Roasters\": [\n        \"NNS\"\n    ], \n    \"pewter\": [\n        \"NN\"\n    ], \n    \"scholarship\": [\n        \"NN\"\n    ], \n    \"summer\": [\n        \"NN\"\n    ], \n    \"manifold\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sleepwalking\": [\n        \"NN\"\n    ], \n    \"Missa\": [\n        \"NNP\"\n    ], \n    \"west-to-east\": [\n        \"RB\"\n    ], \n    \"Mich.-based\": [\n        \"JJ\"\n    ], \n    \"Missy\": [\n        \"NNP\"\n    ], \n    \"disperse\": [\n        \"VB\"\n    ], \n    \"Trockenbeerenauslesen\": [\n        \"NNP\"\n    ], \n    \"semiquantitative\": [\n        \"JJ\"\n    ], \n    \"Rummel\": [\n        \"NNP\"\n    ], \n    \"Sung-il\": [\n        \"NNP\"\n    ], \n    \"trimmings\": [\n        \"NNS\"\n    ], \n    \"vice-chancellor\": [\n        \"NN\"\n    ], \n    \"preventing\": [\n        \"VBG\"\n    ], \n    \"deceiving\": [\n        \"VBG\"\n    ], \n    \"interstitial\": [\n        \"JJ\"\n    ], \n    \"retinue\": [\n        \"NN\"\n    ], \n    \"straight-A\": [\n        \"JJ\"\n    ], \n    \"Sary-Shagan\": [\n        \"NNP\"\n    ], \n    \"civil\": [\n        \"JJ\"\n    ], \n    \"instrument\": [\n        \"NN\"\n    ], \n    \"nymphomaniac\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Rigid\": [\n        \"JJ\"\n    ], \n    \"LUXURY\": [\n        \"NN\"\n    ], \n    \"Anonymous\": [\n        \"NNP\"\n    ], \n    \"ghostly\": [\n        \"JJ\"\n    ], \n    \"Olive\": [\n        \"NNP\"\n    ], \n    \"coded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Approved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"defection\": [\n        \"NN\"\n    ], \n    \"Miss.\": [\n        \"NNP\"\n    ], \n    \"Washing\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"SHIELD\": [\n        \"NNP\"\n    ], \n    \"Radiant\": [\n        \"JJ\"\n    ], \n    \"in-patient\": [\n        \"JJ\"\n    ], \n    \"petulance\": [\n        \"NN\"\n    ], \n    \"Micro\": [\n        \"NNP\"\n    ], \n    \"Shoichi\": [\n        \"NNP\"\n    ], \n    \"structuring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"bandage\": [\n        \"NN\"\n    ], \n    \"open-interest\": [\n        \"JJ\"\n    ], \n    \"Walloons\": [\n        \"NNPS\"\n    ], \n    \"warped\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"forecaster\": [\n        \"NN\"\n    ], \n    \"broken-backed\": [\n        \"JJ\"\n    ], \n    \"stranger\": [\n        \"NN\", \n        \"JJR\"\n    ], \n    \"wide-door\": [\n        \"JJ\"\n    ], \n    \"Belmont\": [\n        \"NNP\"\n    ], \n    \"Boeskys\": [\n        \"NNP\"\n    ], \n    \"white-haired\": [\n        \"JJ\"\n    ], \n    \"Indeed\": [\n        \"RB\", \n        \"UH\"\n    ], \n    \"stationary\": [\n        \"JJ\"\n    ], \n    \"Abatuno\": [\n        \"NNP\"\n    ], \n    \"landscaping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Perry\": [\n        \"NNP\"\n    ], \n    \"combat-trained\": [\n        \"JJ\"\n    ], \n    \"pushy\": [\n        \"JJ\"\n    ], \n    \"gaggle\": [\n        \"NN\"\n    ], \n    \"Myung\": [\n        \"NNP\"\n    ], \n    \"Novametrix\": [\n        \"NNP\"\n    ], \n    \"Perro\": [\n        \"NNP\"\n    ], \n    \"FLN\": [\n        \"NNP\"\n    ], \n    \"Vienne\": [\n        \"NNP\"\n    ], \n    \"bizarre\": [\n        \"JJ\"\n    ], \n    \"reigning\": [\n        \"VBG\"\n    ], \n    \"Vienna\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"scandals\": [\n        \"NNS\"\n    ], \n    \"dialectical\": [\n        \"JJ\"\n    ], \n    \"tote\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"toto\": [\n        \"FW\"\n    ], \n    \"Merton\": [\n        \"NNP\"\n    ], \n    \"pathogenesis\": [\n        \"NN\"\n    ], \n    \"Brawley\": [\n        \"NNP\"\n    ], \n    \"Samakow\": [\n        \"NNP\"\n    ], \n    \"Equus\": [\n        \"NNP\"\n    ], \n    \"roast\": [\n        \"NN\", \n        \"VB\", \n        \"VBN\"\n    ], \n    \"pellagra\": [\n        \"NN\"\n    ], \n    \"exultantly\": [\n        \"RB\"\n    ], \n    \"forgetfulness\": [\n        \"NN\"\n    ], \n    \"run-from-above\": [\n        \"JJ\"\n    ], \n    \"senora\": [\n        \"NN\"\n    ], \n    \"momentwhen\": [\n        \"NN|WRB\"\n    ], \n    \"stone\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"cobblestone\": [\n        \"NN\"\n    ], \n    \"side\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"tumor\": [\n        \"NN\"\n    ], \n    \"Jordanian\": [\n        \"JJ\"\n    ], \n    \"amusedly\": [\n        \"RB\"\n    ], \n    \"neighbor\": [\n        \"NN\"\n    ], \n    \"Macquarie\": [\n        \"NNP\"\n    ], \n    \"bond\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"stony\": [\n        \"JJ\"\n    ], \n    \"marshmallow\": [\n        \"NN\"\n    ], \n    \"Latter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Polaroid\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wads\": [\n        \"NNS\"\n    ], \n    \"sneering\": [\n        \"VBG\"\n    ], \n    \"Jetta\": [\n        \"NNP\"\n    ], \n    \"Accords\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"wade\": [\n        \"VB\"\n    ], \n    \"fluorine\": [\n        \"NN\"\n    ], \n    \"old-maid\": [\n        \"NN\"\n    ], \n    \"burglar\": [\n        \"NN\"\n    ], \n    \"Maiden\": [\n        \"NNP\"\n    ], \n    \"Japanese-style\": [\n        \"JJ\"\n    ], \n    \"Alain\": [\n        \"NNP\"\n    ], \n    \"Collection\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"seesawing\": [\n        \"VBG\"\n    ], \n    \"myths\": [\n        \"NNS\"\n    ], \n    \"secretion\": [\n        \"NN\"\n    ], \n    \"Tadashi\": [\n        \"NNP\"\n    ], \n    \"typecasting\": [\n        \"VBG\"\n    ], \n    \"mourns\": [\n        \"VBZ\"\n    ], \n    \"Sandburg\": [\n        \"NNP\"\n    ], \n    \"gliding\": [\n        \"VBG\"\n    ], \n    \"natural-gas-pricing\": [\n        \"JJ\"\n    ], \n    \"anti-ballistic-missile\": [\n        \"JJ\"\n    ], \n    \"Smale\": [\n        \"NNP\"\n    ], \n    \"Reshaping\": [\n        \"VBG\"\n    ], \n    \"keepsakes\": [\n        \"NNS\"\n    ], \n    \"Small\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"technologies\": [\n        \"NNS\"\n    ], \n    \"plucky\": [\n        \"JJ\"\n    ], \n    \"regimen\": [\n        \"NN\"\n    ], \n    \"Hurry\": [\n        \"VB\"\n    ], \n    \"Court-awarded\": [\n        \"JJ\"\n    ], \n    \"expressionless\": [\n        \"JJ\"\n    ], \n    \"unveils\": [\n        \"VBZ\"\n    ], \n    \"flirt\": [\n        \"VBP\"\n    ], \n    \"U.S.S.R.\": [\n        \"NNP\"\n    ], \n    \"office-equipment\": [\n        \"NN\"\n    ], \n    \"dispensing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"mopping\": [\n        \"VBG\"\n    ], \n    \"inferable\": [\n        \"JJ\"\n    ], \n    \"dependents\": [\n        \"NNS\"\n    ], \n    \"rescued\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"regimes\": [\n        \"NNS\"\n    ], \n    \"Hof\": [\n        \"NNP\"\n    ], \n    \"Hog\": [\n        \"NN\"\n    ], \n    \"deferent\": [\n        \"NN\"\n    ], \n    \"escaping\": [\n        \"VBG\"\n    ], \n    \"Hoc\": [\n        \"NNP\"\n    ], \n    \"Hoa\": [\n        \"NNP\"\n    ], \n    \"Hon\": [\n        \"NNP\"\n    ], \n    \"galleys\": [\n        \"NNS\"\n    ], \n    \"Layman\": [\n        \"NNP\"\n    ], \n    \"laminated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"adventure-loving\": [\n        \"JJ\"\n    ], \n    \"How\": [\n        \"WRB\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"Hot\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"walked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"interchangable\": [\n        \"JJ\"\n    ], \n    \"unhesitatingly\": [\n        \"RB\"\n    ], \n    \"Farmer-in-the-Dell\": [\n        \"NNP\"\n    ], \n    \"Hoy\": [\n        \"NNP\"\n    ], \n    \"Swim\": [\n        \"NNP\"\n    ], \n    \"collie\": [\n        \"NN\"\n    ], \n    \"Beltway-itis\": [\n        \"NN\"\n    ], \n    \"tasteless\": [\n        \"JJ\"\n    ], \n    \"graduate\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Scottish-born\": [\n        \"JJ\"\n    ], \n    \"Northgate\": [\n        \"NNP\"\n    ], \n    \"H.V.\": [\n        \"NNP\"\n    ], \n    \"decimating\": [\n        \"VBG\"\n    ], \n    \"Osprey\": [\n        \"NNP\"\n    ], \n    \"disgraceful\": [\n        \"JJ\"\n    ], \n    \"bloodroot\": [\n        \"NN\"\n    ], \n    \"perspired\": [\n        \"VBD\"\n    ], \n    \"Alex\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Wrangham\": [\n        \"NNP\"\n    ], \n    \"Kentucky\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"realismo\": [\n        \"FW\"\n    ], \n    \"dented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"gifts\": [\n        \"NNS\"\n    ], \n    \"Sandalphon\": [\n        \"NNP\"\n    ], \n    \"Laboring\": [\n        \"VBG\"\n    ], \n    \"imminently\": [\n        \"RB\"\n    ], \n    \"Alec\": [\n        \"NNP\"\n    ], \n    \"misleadingly\": [\n        \"RB\"\n    ], \n    \"noninflationary\": [\n        \"JJ\"\n    ], \n    \"Callum\": [\n        \"NNP\"\n    ], \n    \"minefields\": [\n        \"NNS\"\n    ], \n    \"Riflery\": [\n        \"NN\"\n    ], \n    \"preppy\": [\n        \"JJ\"\n    ], \n    \"rescues\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Hafer\": [\n        \"NNP\"\n    ], \n    \"Street\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Streep\": [\n        \"NNP\"\n    ], \n    \"Hafez\": [\n        \"NNP\"\n    ], \n    \"cross-state\": [\n        \"JJ\"\n    ], \n    \"full-commission\": [\n        \"JJ\"\n    ], \n    \"Setsuo\": [\n        \"NNP\"\n    ], \n    \"warm-weather\": [\n        \"JJ\"\n    ], \n    \"Creon\": [\n        \"NNP\"\n    ], \n    \"Unable\": [\n        \"JJ\"\n    ], \n    \"Mogavero\": [\n        \"NNP\"\n    ], \n    \"Eurostat\": [\n        \"NNP\"\n    ], \n    \"Romeo\": [\n        \"NNP\"\n    ], \n    \"Mae-backed\": [\n        \"JJ\"\n    ], \n    \"strips\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Boesel\": [\n        \"NNP\"\n    ], \n    \"hunting\": [\n        \"NN\", \n        \"NN|VBG\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"NCAA\": [\n        \"NNP\"\n    ], \n    \"overlying\": [\n        \"JJ\"\n    ], \n    \"prophets\": [\n        \"NNS\"\n    ], \n    \"bilked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"company-run\": [\n        \"JJ\"\n    ], \n    \"rate-making\": [\n        \"JJ\"\n    ], \n    \"CPB\": [\n        \"NNP\"\n    ], \n    \"mufti\": [\n        \"NN\"\n    ], \n    \"Cossiga\": [\n        \"NNP\"\n    ], \n    \"Kutzke\": [\n        \"NNP\"\n    ], \n    \"generics\": [\n        \"NNS\"\n    ], \n    \"PACs\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Pageants\": [\n        \"NNS\"\n    ], \n    \"swallows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"friers\": [\n        \"NNS\"\n    ], \n    \"seedbed\": [\n        \"NN\"\n    ], \n    \"salesperson\": [\n        \"NN\"\n    ], \n    \"Kretchmer\": [\n        \"NNP\"\n    ], \n    \"long-simmering\": [\n        \"JJ\"\n    ], \n    \"mammas\": [\n        \"NN\"\n    ], \n    \"Wilmouth\": [\n        \"NNP\"\n    ], \n    \"lawnmower\": [\n        \"NN\"\n    ], \n    \"natural-gas-pipeline\": [\n        \"JJ\"\n    ], \n    \"instigate\": [\n        \"VB\"\n    ], \n    \"unabatingly\": [\n        \"RB\"\n    ], \n    \"mammal\": [\n        \"NN\"\n    ], \n    \"Rainwater\": [\n        \"NNP\"\n    ], \n    \"ninetieth\": [\n        \"JJ\"\n    ], \n    \"poise\": [\n        \"NN\"\n    ], \n    \"waste-treatment\": [\n        \"NN\"\n    ], \n    \"quaintly\": [\n        \"RB\"\n    ], \n    \"carriages\": [\n        \"NNS\"\n    ], \n    \"Howmet\": [\n        \"NNP\"\n    ], \n    \"Bumiputra\": [\n        \"NNP\"\n    ], \n    \"theatergoers\": [\n        \"NNS\"\n    ], \n    \"hick\": [\n        \"NN\"\n    ], \n    \"Feldberg\": [\n        \"NNP\"\n    ], \n    \"shrugged\": [\n        \"VBD\"\n    ], \n    \"McNamee\": [\n        \"NNP\"\n    ], \n    \"Patrician\": [\n        \"NN\"\n    ], \n    \"forestall\": [\n        \"VB\"\n    ], \n    \"imperceptible\": [\n        \"JJ\"\n    ], \n    \"whiff\": [\n        \"NN\"\n    ], \n    \"fucks\": [\n        \"NNS\"\n    ], \n    \"Wolohan\": [\n        \"NNP\"\n    ], \n    \"Conestoga\": [\n        \"NNP\"\n    ], \n    \"Abuse\": [\n        \"NNP\"\n    ], \n    \"Unloading\": [\n        \"VBG\"\n    ], \n    \"Pan-Alberta\": [\n        \"NNP\"\n    ], \n    \"sarcasm\": [\n        \"NN\"\n    ], \n    \"Mega-hits\": [\n        \"NNS\"\n    ], \n    \"accessions\": [\n        \"NNS\"\n    ], \n    \"horse-packing\": [\n        \"JJ\"\n    ], \n    \"Prettyman\": [\n        \"NNP\"\n    ], \n    \"murkier\": [\n        \"JJR\"\n    ], \n    \"multifigure\": [\n        \"NN\"\n    ], \n    \"cost-shifting\": [\n        \"NN\"\n    ], \n    \"timberlands\": [\n        \"NNS\"\n    ], \n    \"Bankrolled\": [\n        \"VBN\"\n    ], \n    \"archdiocese\": [\n        \"NN\"\n    ], \n    \"buzzing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Gap\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"discolors\": [\n        \"VBZ\"\n    ], \n    \"electroluminescence\": [\n        \"NN\"\n    ], \n    \"introductory\": [\n        \"JJ\"\n    ], \n    \"brutal\": [\n        \"JJ\"\n    ], \n    \"defectors\": [\n        \"NNS\"\n    ], \n    \"bank-looting\": [\n        \"JJ\"\n    ], \n    \"much-maligned\": [\n        \"JJ\"\n    ], \n    \"vacuum-packed\": [\n        \"JJ\"\n    ], \n    \"shorthand\": [\n        \"NN\"\n    ], \n    \"sugar-cane\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unsatisfactory\": [\n        \"JJ\"\n    ], \n    \"resort-casino\": [\n        \"NN\"\n    ], \n    \"integrator\": [\n        \"NN\"\n    ], \n    \"enactment\": [\n        \"NN\"\n    ], \n    \"no-bunkum\": [\n        \"JJ\"\n    ], \n    \"half-intensity\": [\n        \"JJ\"\n    ], \n    \"purveyors\": [\n        \"NNS\"\n    ], \n    \"SP-44007\": [\n        \"LS\"\n    ], \n    \"Corp.\\\\/Europe\": [\n        \"NNP\"\n    ], \n    \"whammo\": [\n        \"UH\"\n    ], \n    \"letterhead\": [\n        \"NN\"\n    ], \n    \"estate-tax\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"select\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Additional\": [\n        \"JJ\"\n    ], \n    \"triple-witching\": [\n        \"JJ\"\n    ], \n    \"Lecheria\": [\n        \"NNP\"\n    ], \n    \"hothouses\": [\n        \"NNS\"\n    ], \n    \"O.S.K.\": [\n        \"NNP\"\n    ], \n    \"passenger-transportation\": [\n        \"JJ\"\n    ], \n    \"one-month-old\": [\n        \"JJ\"\n    ], \n    \"citing\": [\n        \"VBG\"\n    ], \n    \"Belgique\": [\n        \"NNP\"\n    ], \n    \"wavering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"impoundments\": [\n        \"NNS\"\n    ], \n    \"Russian\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"toll-tele-phone\": [\n        \"JJ\"\n    ], \n    \"refueling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"teen\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cyclicals\": [\n        \"NNS\"\n    ], \n    \"U.S.-Canadian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"signpost\": [\n        \"NN\"\n    ], \n    \"teed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"foregone\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"worn-faced\": [\n        \"JJ\"\n    ], \n    \"drug-enforcement\": [\n        \"JJ\"\n    ], \n    \"Lang\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"pursuers\": [\n        \"NNS\"\n    ], \n    \"Takeshi\": [\n        \"NNP\"\n    ], \n    \"rudeness\": [\n        \"NN\"\n    ], \n    \"objections\": [\n        \"NNS\"\n    ], \n    \"Caffrey\": [\n        \"NNP\"\n    ], \n    \"blemishes\": [\n        \"NNS\"\n    ], \n    \"Greenfield\": [\n        \"NNP\"\n    ], \n    \"Guzewich\": [\n        \"NNP\"\n    ], \n    \"diGenova\": [\n        \"NNP\"\n    ], \n    \"over-rewarding\": [\n        \"JJ\"\n    ], \n    \"malt\": [\n        \"NN\"\n    ], \n    \"bromides\": [\n        \"NNS\"\n    ], \n    \"Austro-Hungarian\": [\n        \"JJ\"\n    ], \n    \"mall\": [\n        \"NN\"\n    ], \n    \"chairing\": [\n        \"NN\"\n    ], \n    \"blarney\": [\n        \"NN\"\n    ], \n    \"supercilious\": [\n        \"JJ\"\n    ], \n    \"Debevoise\": [\n        \"NNP\"\n    ], \n    \"Unanalyzed\": [\n        \"JJ\"\n    ], \n    \"price-adjusted\": [\n        \"JJ\"\n    ], \n    \"Katsive\": [\n        \"NNP\"\n    ], \n    \"Stockholders\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"shirt-sleeved\": [\n        \"JJ\"\n    ], \n    \"obliquely\": [\n        \"RB\"\n    ], \n    \"Banxquote\": [\n        \"NNP\"\n    ], \n    \"nonintervention\": [\n        \"NN\"\n    ], \n    \"Shemiatenkov\": [\n        \"NNP\"\n    ], \n    \"Jacobsen\": [\n        \"NNP\"\n    ], \n    \"relationship-building\": [\n        \"NN\"\n    ], \n    \"garden\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"outfitting\": [\n        \"VBG\"\n    ], \n    \"Chandler\": [\n        \"NNP\"\n    ], \n    \"Jekyll\": [\n        \"NNP\"\n    ], \n    \"earworm\": [\n        \"NN\"\n    ], \n    \"freshly\": [\n        \"RB\"\n    ], \n    \"Bouton\": [\n        \"NNP\"\n    ], \n    \"Gelly\": [\n        \"NNP\"\n    ], \n    \"strong-made\": [\n        \"JJ\"\n    ], \n    \"stock-for-debt\": [\n        \"JJ\"\n    ], \n    \"two-track\": [\n        \"JJ\"\n    ], \n    \"Tarrytown\": [\n        \"NNP\"\n    ], \n    \"plant\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Stockbrokers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Division\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sleepers\": [\n        \"NNP\"\n    ], \n    \"pleader\": [\n        \"NN\"\n    ], \n    \"soundtrack\": [\n        \"NN\"\n    ], \n    \"D.O.A.\": [\n        \"JJ\"\n    ], \n    \"plane\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"conveniences\": [\n        \"NNS\"\n    ], \n    \"Atzez\": [\n        \"NNP\"\n    ], \n    \"pleaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Adaptec\": [\n        \"NNP\"\n    ], \n    \"Adapted\": [\n        \"VBN\"\n    ], \n    \"plank\": [\n        \"NN\"\n    ], \n    \"executions\": [\n        \"NNS\"\n    ], \n    \"Churchill\": [\n        \"NNP\"\n    ], \n    \"rowdy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"denude\": [\n        \"VB\"\n    ], \n    \"hot-ticket\": [\n        \"JJ\"\n    ], \n    \"Voroba\": [\n        \"NNP\"\n    ], \n    \"broadcasting\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"tentacles\": [\n        \"NNS\"\n    ], \n    \"eversteadier\": [\n        \"JJ\"\n    ], \n    \"helplessly\": [\n        \"RB\"\n    ], \n    \"patio\": [\n        \"NN\"\n    ], \n    \"greats\": [\n        \"NNS\"\n    ], \n    \"more-hazardous\": [\n        \"JJ\"\n    ], \n    \"meek-mannered\": [\n        \"JJ\"\n    ], \n    \"passages\": [\n        \"NNS\"\n    ], \n    \"clarifications\": [\n        \"NNS\"\n    ], \n    \"reminded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ruston\": [\n        \"NNP\"\n    ], \n    \"Tortorello\": [\n        \"NNP\"\n    ], \n    \"SA-12\": [\n        \"NN\"\n    ], \n    \"trade\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"he-man\": [\n        \"NN\"\n    ], \n    \"embassy\": [\n        \"NN\"\n    ], \n    \"questioningly\": [\n        \"RB\"\n    ], \n    \"greate\": [\n        \"NN\"\n    ], \n    \"ity\": [\n        \"NN\"\n    ], \n    \"intensifiers\": [\n        \"NNS\"\n    ], \n    \"Androgyny\": [\n        \"NN\"\n    ], \n    \"its\": [\n        \"PRP$\"\n    ], \n    \"Bund\": [\n        \"NN\"\n    ], \n    \"imaginings\": [\n        \"NNS\"\n    ], \n    \"licks\": [\n        \"VBZ\"\n    ], \n    \"CTBS\": [\n        \"NNP\"\n    ], \n    \"DGAULT\": [\n        \"NNP\"\n    ], \n    \"epileptic\": [\n        \"JJ\"\n    ], \n    \"blurring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Ingalls\": [\n        \"NNP\"\n    ], \n    \"Dorney\": [\n        \"NNP\"\n    ], \n    \"bobbles\": [\n        \"NNS\"\n    ], \n    \"ally\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"rapier\": [\n        \"NN\"\n    ], \n    \"pre-signed\": [\n        \"VBN\"\n    ], \n    \"motley\": [\n        \"JJ\"\n    ], \n    \"pathologically\": [\n        \"RB\"\n    ], \n    \"I.\": [\n        \"NNP\", \n        \"FW\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"imperil\": [\n        \"VB\"\n    ], \n    \"thereof\": [\n        \"RB\"\n    ], \n    \"ever-more\": [\n        \"JJ\"\n    ], \n    \"Correlatively\": [\n        \"RB\"\n    ], \n    \"Waggin\": [\n        \"NNP\"\n    ], \n    \"Dassault-Breguet\": [\n        \"NNP\"\n    ], \n    \"designation\": [\n        \"NN\"\n    ], \n    \"Savannah\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"loosely\": [\n        \"RB\"\n    ], \n    \"featured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"production-cost\": [\n        \"NN\"\n    ], \n    \"rough-housing\": [\n        \"NN\"\n    ], \n    \"ATTACK\": [\n        \"NN\"\n    ], \n    \"revenge-seeking\": [\n        \"JJ\"\n    ], \n    \"Busch\": [\n        \"NNP\"\n    ], \n    \"lantern\": [\n        \"NN\"\n    ], \n    \"Zone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contiguous\": [\n        \"JJ\"\n    ], \n    \"six-bottle\": [\n        \"JJ\"\n    ], \n    \"critters\": [\n        \"NNS\"\n    ], \n    \"reappointed\": [\n        \"VBN\"\n    ], \n    \"girlish\": [\n        \"JJ\"\n    ], \n    \"eviscerating\": [\n        \"VBG\"\n    ], \n    \"ruminated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Patmore\": [\n        \"NNP\"\n    ], \n    \"vocalism\": [\n        \"NN\"\n    ], \n    \"HDM\": [\n        \"NNP\"\n    ], \n    \"HDI\": [\n        \"NNP\"\n    ], \n    \"vis\": [\n        \"FW\"\n    ], \n    \"by-passing\": [\n        \"VBG\"\n    ], \n    \"Allianz\": [\n        \"NNP\"\n    ], \n    \"Auction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"armaments\": [\n        \"NNS\"\n    ], \n    \"indexation\": [\n        \"NN\"\n    ], \n    \"flyaway\": [\n        \"JJ\"\n    ], \n    \"hangers\": [\n        \"NNS\"\n    ], \n    \"Yugoslav\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Class\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bloody-minded\": [\n        \"JJ\"\n    ], \n    \"dwelt\": [\n        \"VBD\"\n    ], \n    \"Chant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Penniman\": [\n        \"NNP\"\n    ], \n    \"Yorba\": [\n        \"NNP\"\n    ], \n    \"Imasco\": [\n        \"NNP\"\n    ], \n    \"murmur\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Chane\": [\n        \"NNP\"\n    ], \n    \"Chang\": [\n        \"NNP\"\n    ], \n    \"Guttmacher\": [\n        \"NNP\"\n    ], \n    \"disadvantaged\": [\n        \"JJ\"\n    ], \n    \"Rosenbaum\": [\n        \"NNP\"\n    ], \n    \"bargen\": [\n        \"VBP\"\n    ], \n    \"Heffernan\": [\n        \"NNP\"\n    ], \n    \"big-city\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Chairman-Elect\": [\n        \"NNP\"\n    ], \n    \"anecdote\": [\n        \"NN\"\n    ], \n    \"truck-fleet\": [\n        \"JJ\"\n    ], \n    \"ft.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"sidewinder\": [\n        \"NN\"\n    ], \n    \"thespian\": [\n        \"JJ\"\n    ], \n    \"Mueslix\": [\n        \"NNP\"\n    ], \n    \"forwards\": [\n        \"RB\"\n    ], \n    \"Marvelon\": [\n        \"NNP\"\n    ], \n    \"contender\": [\n        \"NN\"\n    ], \n    \"Repression\": [\n        \"NN\"\n    ], \n    \"florist\": [\n        \"NN\"\n    ], \n    \"fluxes\": [\n        \"NNS\"\n    ], \n    \"contended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"complaint-resolution\": [\n        \"NN\"\n    ], \n    \"economizing\": [\n        \"VBG\"\n    ], \n    \"ripoffs\": [\n        \"NNS\"\n    ], \n    \"sidle\": [\n        \"VB\"\n    ], \n    \"differ\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"brick-and-mortar\": [\n        \"JJ\"\n    ], \n    \"RMC\": [\n        \"NNP\"\n    ], \n    \"tar-soaked\": [\n        \"JJ\"\n    ], \n    \"Sunny\": [\n        \"NNP\"\n    ], \n    \"Regulators\": [\n        \"NNS\"\n    ], \n    \"zealot\": [\n        \"NN\"\n    ], \n    \"name-brand\": [\n        \"JJ\"\n    ], \n    \"Regulatory\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"syllables\": [\n        \"NNS\"\n    ], \n    \"molecular\": [\n        \"JJ\"\n    ], \n    \"Sunni\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"gassings\": [\n        \"NNS\"\n    ], \n    \"Ingrassia\": [\n        \"NNP\"\n    ], \n    \"Top-20\": [\n        \"JJ\"\n    ], \n    \"Rival\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wire-fraud\": [\n        \"NN\"\n    ], \n    \"breakdowns\": [\n        \"NNS\"\n    ], \n    \"dwindling-sales\": [\n        \"JJ\"\n    ], \n    \"Geech\": [\n        \"NNP\"\n    ], \n    \"spacings\": [\n        \"NNS\"\n    ], \n    \"stairs\": [\n        \"NNS\"\n    ], \n    \"secretarial\": [\n        \"JJ\"\n    ], \n    \"inhalation\": [\n        \"NN\"\n    ], \n    \"Port-au-Prince\": [\n        \"NNP\"\n    ], \n    \"frock\": [\n        \"NN\"\n    ], \n    \"parenthetically\": [\n        \"RB\"\n    ], \n    \"Catskill\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"swiveling\": [\n        \"VBG\"\n    ], \n    \"vocal\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"minimize\": [\n        \"VB\"\n    ], \n    \"ultra-efficient\": [\n        \"JJ\"\n    ], \n    \"assume\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"beneficial\": [\n        \"JJ\"\n    ], \n    \"Mottice\": [\n        \"NNP\"\n    ], \n    \"metal-products\": [\n        \"NNS\"\n    ], \n    \"Is\": [\n        \"VBZ\", \n        \"NNP\"\n    ], \n    \"fur-production\": [\n        \"JJ\"\n    ], \n    \"Jeep-like\": [\n        \"JJ\"\n    ], \n    \"multipurpose\": [\n        \"JJ\"\n    ], \n    \"electrodynamics\": [\n        \"NNS\"\n    ], \n    \"Pecks\": [\n        \"NNPS\"\n    ], \n    \"Cyanocitta\": [\n        \"FW\"\n    ], \n    \"Tercel\": [\n        \"NNP\"\n    ], \n    \"disenchanted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"bad-debt\": [\n        \"JJ\"\n    ], \n    \"status-conscious\": [\n        \"JJ\"\n    ], \n    \"NORTH\": [\n        \"NNP\"\n    ], \n    \"Hannah\": [\n        \"NNP\"\n    ], \n    \"prima-facie\": [\n        \"FW\", \n        \"JJ\"\n    ], \n    \"synchronizers\": [\n        \"NNS\"\n    ], \n    \"Hannam\": [\n        \"NNP\"\n    ], \n    \"partings\": [\n        \"NNS\"\n    ], \n    \"auditions\": [\n        \"NNS\"\n    ], \n    \"Overturf\": [\n        \"NNP\"\n    ], \n    \"severly\": [\n        \"RB\"\n    ], \n    \"ancillary\": [\n        \"JJ\"\n    ], \n    \"KEISHI\": [\n        \"NNP\"\n    ], \n    \"brace\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Reproductive\": [\n        \"NNP\"\n    ], \n    \"big-town\": [\n        \"JJ\"\n    ], \n    \"index\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Zeal\": [\n        \"NNP\"\n    ], \n    \"blackboard\": [\n        \"NN\"\n    ], \n    \"retablos\": [\n        \"FW\"\n    ], \n    \"nasal\": [\n        \"JJ\"\n    ], \n    \"paleontologically\": [\n        \"RB\"\n    ], \n    \"confluence\": [\n        \"NN\"\n    ], \n    \"pulled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"oyster\": [\n        \"NN\"\n    ], \n    \"FROM\": [\n        \"IN\"\n    ], \n    \"pre-Fair\": [\n        \"JJ\"\n    ], \n    \"three-month\": [\n        \"JJ\"\n    ], \n    \"Deacons\": [\n        \"NNS\"\n    ], \n    \"fashions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"If\": [\n        \"IN\"\n    ], \n    \"totemic\": [\n        \"JJ\"\n    ], \n    \"systems-strategies\": [\n        \"NNS\"\n    ], \n    \"desklegs\": [\n        \"NNS\"\n    ], \n    \"despise\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"shivers\": [\n        \"NNS\"\n    ], \n    \"walk-up\": [\n        \"NN\"\n    ], \n    \"Luxembourg-registered\": [\n        \"JJ\"\n    ], \n    \"defended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Eggum\": [\n        \"NNP\"\n    ], \n    \"decentralizing\": [\n        \"VBG\"\n    ], \n    \"Stumpf\": [\n        \"NNP\"\n    ], \n    \"parochial\": [\n        \"JJ\"\n    ], \n    \"Palestine\": [\n        \"NNP\"\n    ], \n    \"defender\": [\n        \"NN\"\n    ], \n    \"dockets\": [\n        \"NNS\"\n    ], \n    \"Semra\": [\n        \"NNP\"\n    ], \n    \"Skepticism\": [\n        \"NN\"\n    ], \n    \"stepwise\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"fade-in\": [\n        \"JJ\"\n    ], \n    \"keychain\": [\n        \"NN\"\n    ], \n    \"sayin\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Gyi\": [\n        \"NNP\"\n    ], \n    \"sacrilege\": [\n        \"NN\"\n    ], \n    \"unjustly\": [\n        \"RB\"\n    ], \n    \"Balkans\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"equity\": [\n        \"NN\"\n    ], \n    \"Alurralde\": [\n        \"NNP\"\n    ], \n    \"giants\": [\n        \"NNS\"\n    ], \n    \"Close-up\": [\n        \"NNP\"\n    ], \n    \"addresss\": [\n        \"NNS\"\n    ], \n    \"scuff\": [\n        \"VB\"\n    ], \n    \"dependent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gribin\": [\n        \"NNP\"\n    ], \n    \"understudied\": [\n        \"VBD\"\n    ], \n    \"resent\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"out-dated\": [\n        \"JJ\"\n    ], \n    \"breast-cancer\": [\n        \"NN\"\n    ], \n    \"Smithson\": [\n        \"NNP\"\n    ], \n    \"belled\": [\n        \"JJ\"\n    ], \n    \"debt-equity\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"roughest\": [\n        \"JJS\"\n    ], \n    \"belles\": [\n        \"NNS\"\n    ], \n    \"surrendering\": [\n        \"VBG\"\n    ], \n    \"Dalton\": [\n        \"NNP\"\n    ], \n    \"kill\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"approaching\": [\n        \"VBG\"\n    ], \n    \"manger\": [\n        \"NN\"\n    ], \n    \"balance-wise\": [\n        \"JJ\"\n    ], \n    \"Sleepinal\": [\n        \"NNP\"\n    ], \n    \"building-products\": [\n        \"NNS\"\n    ], \n    \"Liberman\": [\n        \"NNP\"\n    ], \n    \"pro-Noriega\": [\n        \"JJ\"\n    ], \n    \"Glaser\": [\n        \"NNP\"\n    ], \n    \"hoarsely\": [\n        \"RB\"\n    ], \n    \"Tippett\": [\n        \"NNP\"\n    ], \n    \"Stolichnaya\": [\n        \"NNP\"\n    ], \n    \"Pitman\": [\n        \"NNP\"\n    ], \n    \"knees\": [\n        \"NNS\"\n    ], \n    \"#\": [\n        \"#\"\n    ], \n    \"movie\": [\n        \"NN\"\n    ], \n    \"Fuhrer\": [\n        \"NNP\"\n    ], \n    \"worth-while\": [\n        \"JJ\"\n    ], \n    \"diluted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"sweetheart-secretary\": [\n        \"NN\"\n    ], \n    \"rejecting\": [\n        \"VBG\"\n    ], \n    \"heading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Pettit\": [\n        \"NNP\"\n    ], \n    \"Arithmetic\": [\n        \"NNP\"\n    ], \n    \"Confiding\": [\n        \"VBG\"\n    ], \n    \"Pettis\": [\n        \"NNP\"\n    ], \n    \"Bangemann\": [\n        \"NNP\"\n    ], \n    \"Discouragement\": [\n        \"NN\"\n    ], \n    \"dilutes\": [\n        \"VBZ\"\n    ], \n    \"kneel\": [\n        \"VB\"\n    ], \n    \"performance-related\": [\n        \"JJ\"\n    ], \n    \"milder\": [\n        \"JJR\"\n    ], \n    \"mildew\": [\n        \"NN\"\n    ], \n    \"hardship\": [\n        \"NN\"\n    ], \n    \"sections\": [\n        \"NNS\"\n    ], \n    \"brewing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Intecknings\": [\n        \"NNP\"\n    ], \n    \"disallow\": [\n        \"VB\"\n    ], \n    \"three-week\": [\n        \"JJ\"\n    ], \n    \"smoldering\": [\n        \"VBG\"\n    ], \n    \"chenille\": [\n        \"NN\"\n    ], \n    \"Packers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"body-and-assembly\": [\n        \"JJ\"\n    ], \n    \"adagio\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"enables\": [\n        \"VBZ\"\n    ], \n    \"improved\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"tobacco-growing\": [\n        \"JJ\"\n    ], \n    \"Jaws\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"barely\": [\n        \"RB\"\n    ], \n    \"harpy\": [\n        \"JJ\"\n    ], \n    \"timorous\": [\n        \"JJ\"\n    ], \n    \"Southern-Republican\": [\n        \"NNP\"\n    ], \n    \"fuel-storage\": [\n        \"NN\"\n    ], \n    \"turrets\": [\n        \"NNS\"\n    ], \n    \"Trinidad\": [\n        \"NNP\"\n    ], \n    \"Junius\": [\n        \"NNP\"\n    ], \n    \"load\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"loaf\": [\n        \"NN\"\n    ], \n    \"markdown\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pendulum\": [\n        \"NN\"\n    ], \n    \"indefinity\": [\n        \"NN\"\n    ], \n    \"Heavy-coated\": [\n        \"JJ\"\n    ], \n    \"loan\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"northeastern\": [\n        \"JJ\"\n    ], \n    \"coincidence\": [\n        \"NN\"\n    ], \n    \"second-rate\": [\n        \"JJ\"\n    ], \n    \"hollyhock\": [\n        \"NN\"\n    ], \n    \"jowls\": [\n        \"NNS\"\n    ], \n    \"upper-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"indefinite\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"jowly\": [\n        \"JJ\"\n    ], \n    \"big-stage\": [\n        \"JJ\"\n    ], \n    \"stop-gap\": [\n        \"JJ\"\n    ], \n    \"Persians\": [\n        \"NNPS\"\n    ], \n    \"Students\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"anti-aircraft\": [\n        \"JJ\"\n    ], \n    \"intricacies\": [\n        \"NNS\"\n    ], \n    \"Col.\": [\n        \"NNP\"\n    ], \n    \"unraveling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"involuntary-control\": [\n        \"JJ\"\n    ], \n    \"Attanasio\": [\n        \"NNP\"\n    ], \n    \"Jansky\": [\n        \"NNP\"\n    ], \n    \"modern\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"CARTER\": [\n        \"NNP\"\n    ], \n    \"Boslego\": [\n        \"NNP\"\n    ], \n    \"upstart\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"hind\": [\n        \"JJ\"\n    ], \n    \"mine\": [\n        \"NN\", \n        \"PRP$\", \n        \"JJ\", \n        \"VB\", \n        \"PRP\", \n        \"VBP\"\n    ], \n    \"clergymen\": [\n        \"NNS\"\n    ], \n    \"high-mounted\": [\n        \"JJ\"\n    ], \n    \"Steinberg\": [\n        \"NNP\"\n    ], \n    \"yachts\": [\n        \"NNS\"\n    ], \n    \"Urdis\": [\n        \"NNP\"\n    ], \n    \"Starting\": [\n        \"VBG\"\n    ], \n    \"Fetch\": [\n        \"VB\"\n    ], \n    \"Ministry\": [\n        \"NNP\"\n    ], \n    \"mid-to-late\": [\n        \"JJ\"\n    ], \n    \"Vinnin\": [\n        \"NNP\"\n    ], \n    \"Colt\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Carrots\": [\n        \"NNPS\"\n    ], \n    \"Cols\": [\n        \"NNP\"\n    ], \n    \"forgetting\": [\n        \"VBG\"\n    ], \n    \"optimization\": [\n        \"NN\"\n    ], \n    \"Change\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"evaluating\": [\n        \"VBG\"\n    ], \n    \"communal\": [\n        \"JJ\"\n    ], \n    \"industrialist\": [\n        \"NN\"\n    ], \n    \"Samnick\": [\n        \"NNP\"\n    ], \n    \"outskirt\": [\n        \"NN\"\n    ], \n    \"Rukeyser\": [\n        \"NNP\"\n    ], \n    \"sizeable\": [\n        \"JJ\"\n    ], \n    \"arching\": [\n        \"VBG\"\n    ], \n    \"backing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"chirping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"calculator\": [\n        \"NN\"\n    ], \n    \"WSJ\": [\n        \"NNP\"\n    ], \n    \"picocassette\": [\n        \"NN\"\n    ], \n    \"E-mail\": [\n        \"NN\"\n    ], \n    \"Rochelle\": [\n        \"NNP\"\n    ], \n    \"chasm\": [\n        \"NN\"\n    ], \n    \"WSY\": [\n        \"NNP\"\n    ], \n    \"Reagan-Republican\": [\n        \"JJ\"\n    ], \n    \"Charlayne\": [\n        \"NNP\"\n    ], \n    \"Yamashita\": [\n        \"NNP\"\n    ], \n    \"chase\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"price-support\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sounding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Emmaus\": [\n        \"NNP\"\n    ], \n    \"severest\": [\n        \"JJS\"\n    ], \n    \"results-oriented\": [\n        \"JJ\"\n    ], \n    \"Favorites\": [\n        \"NNPS\", \n        \"JJ\"\n    ], \n    \"Fully\": [\n        \"RB\"\n    ], \n    \"Beise\": [\n        \"NNP\"\n    ], \n    \"Lillard\": [\n        \"NNP\"\n    ], \n    \"displeased\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unlabeled\": [\n        \"JJ\"\n    ], \n    \"Charges\": [\n        \"NNS\"\n    ], \n    \"LIN-BellSouth\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"henchmen\": [\n        \"NNS\"\n    ], \n    \"Rammin\": [\n        \"VBG\"\n    ], \n    \"viewing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"displeases\": [\n        \"VBZ\"\n    ], \n    \"grappling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"picky\": [\n        \"JJ\"\n    ], \n    \"infertility\": [\n        \"NN\"\n    ], \n    \"commoners\": [\n        \"NNS\"\n    ], \n    \"Cami\": [\n        \"NNP\"\n    ], \n    \"Norwitz\": [\n        \"NNP\"\n    ], \n    \"picks\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Aerospatiale\": [\n        \"NNP\"\n    ], \n    \"strobe\": [\n        \"NN\"\n    ], \n    \"Talks\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Staff\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"oft-repeated\": [\n        \"JJ\"\n    ], \n    \"customer-cost\": [\n        \"NN\"\n    ], \n    \"Roanoke\": [\n        \"NNP\"\n    ], \n    \"lower-growth\": [\n        \"JJ\"\n    ], \n    \"behind\": [\n        \"IN\", \n        \"NN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"unto\": [\n        \"IN\", \n        \"RP\"\n    ], \n    \"Lieutenant-Colonel\": [\n        \"NNP\"\n    ], \n    \"Hollandale\": [\n        \"NNP\"\n    ], \n    \"Emigration\": [\n        \"NN\"\n    ], \n    \"fingerlings\": [\n        \"NNS\"\n    ], \n    \"sputnik\": [\n        \"NN\"\n    ], \n    \"crying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Topps\": [\n        \"NNP\"\n    ], \n    \"disulfide\": [\n        \"NN\"\n    ], \n    \"commodity-swap\": [\n        \"NN\"\n    ], \n    \"out-and-out\": [\n        \"JJ\"\n    ], \n    \"reverted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"massuh\": [\n        \"NN\"\n    ], \n    \"intra-mural\": [\n        \"JJ\"\n    ], \n    \"Shawmut\": [\n        \"NNP\"\n    ], \n    \"quest\": [\n        \"NN\"\n    ], \n    \"stock-option\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Requests\": [\n        \"NNS\"\n    ], \n    \"Atlantica\": [\n        \"NNP\"\n    ], \n    \"Flair\": [\n        \"NNP\"\n    ], \n    \"form-letter\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"imposed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"McCullers\": [\n        \"NNP\"\n    ], \n    \"pigeonhole\": [\n        \"NN\"\n    ], \n    \"Columnists\": [\n        \"NNS\"\n    ], \n    \"Race-drivers\": [\n        \"NNS\"\n    ], \n    \"disorder\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"interbreeding\": [\n        \"VBG\"\n    ], \n    \"sahibs\": [\n        \"NNS\"\n    ], \n    \"expansionary\": [\n        \"JJ\"\n    ], \n    \"Va.\": [\n        \"NNP\"\n    ], \n    \"pertaining\": [\n        \"VBG\"\n    ], \n    \"gargle\": [\n        \"NN\"\n    ], \n    \"consomme\": [\n        \"NN\"\n    ], \n    \"third-consecutive\": [\n        \"JJ\"\n    ], \n    \"morocco-bound\": [\n        \"JJ\"\n    ], \n    \"Townsend\": [\n        \"NNP\"\n    ], \n    \"FIGHT\": [\n        \"NNP\"\n    ], \n    \"Customer-access\": [\n        \"NN\"\n    ], \n    \"goutte\": [\n        \"FW\"\n    ], \n    \"eclat\": [\n        \"NN\"\n    ], \n    \"Gibault\": [\n        \"NNP\"\n    ], \n    \"Brodsly\": [\n        \"NNP\"\n    ], \n    \"seisho\": [\n        \"FW\"\n    ], \n    \"CREDIT\": [\n        \"NNP\"\n    ], \n    \"mummy\": [\n        \"NN\"\n    ], \n    \"veterinary\": [\n        \"JJ\"\n    ], \n    \"Hindenburg\": [\n        \"NNP\"\n    ], \n    \"Whittle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"religion\": [\n        \"NN\"\n    ], \n    \"Furman\": [\n        \"NNP\"\n    ], \n    \"Tuttle\": [\n        \"NNP\"\n    ], \n    \"bearings\": [\n        \"NNS\"\n    ], \n    \"MB-339\": [\n        \"NNP\"\n    ], \n    \"Pact\": [\n        \"NNP\"\n    ], \n    \"smithy\": [\n        \"NN\"\n    ], \n    \"idealistic\": [\n        \"JJ\"\n    ], \n    \"Benton\": [\n        \"NNP\"\n    ], \n    \"dictates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"fish...\": [\n        \":\"\n    ], \n    \"Pace\": [\n        \"NNP\"\n    ], \n    \"Ciera\": [\n        \"NNP\"\n    ], \n    \"Slender\": [\n        \"JJ\"\n    ], \n    \"Walgreen\": [\n        \"NNP\"\n    ], \n    \"chole\": [\n        \"NN\"\n    ], \n    \"Inoue\": [\n        \"NNP\"\n    ], \n    \"dictated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Pack\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"thirty-fourth\": [\n        \"JJ\"\n    ], \n    \"Loring\": [\n        \"NNP\"\n    ], \n    \"Lessner\": [\n        \"NNP\"\n    ], \n    \"modernity\": [\n        \"NN\"\n    ], \n    \"Crisanti\": [\n        \"NNP\"\n    ], \n    \"snowballed\": [\n        \"VBD\"\n    ], \n    \"Caffedrine\": [\n        \"NNP\"\n    ], \n    \"biennial\": [\n        \"JJ\"\n    ], \n    \"progressions\": [\n        \"NNS\"\n    ], \n    \"irked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"third-year\": [\n        \"JJ\"\n    ], \n    \"belfries\": [\n        \"NNS\"\n    ], \n    \"vocalize\": [\n        \"VB\"\n    ], \n    \"encumbrance\": [\n        \"NN\"\n    ], \n    \"Overreacting\": [\n        \"VBG\"\n    ], \n    \"servers\": [\n        \"NNS\"\n    ], \n    \"appropriate\": [\n        \"JJ\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"deduct\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Exposition\": [\n        \"NNP\"\n    ], \n    \"selected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"traduce\": [\n        \"VB\"\n    ], \n    \"herringbone\": [\n        \"NN\"\n    ], \n    \"Metamorphose\": [\n        \"NNP\"\n    ], \n    \"lithe\": [\n        \"JJ\"\n    ], \n    \"bosons\": [\n        \"NNS\"\n    ], \n    \"immunological\": [\n        \"JJ\"\n    ], \n    \"royalties\": [\n        \"NNS\"\n    ], \n    \"insensitivity\": [\n        \"NN\"\n    ], \n    \"Disabilities\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Hurley\": [\n        \"NNP\"\n    ], \n    \"instalments\": [\n        \"NNS\"\n    ], \n    \"Yale-Army\": [\n        \"NNP\"\n    ], \n    \"microfilm\": [\n        \"NN\"\n    ], \n    \"legation\": [\n        \"NN\"\n    ], \n    \"first-nine-month\": [\n        \"JJ\"\n    ], \n    \"GDP\": [\n        \"NNP\"\n    ], \n    \"GDR\": [\n        \"NNP\"\n    ], \n    \"Dixie\": [\n        \"NNP\"\n    ], \n    \"Office\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"coal-fire\": [\n        \"JJ\"\n    ], \n    \"lodgment\": [\n        \"NN\"\n    ], \n    \"Kwame\": [\n        \"NNP\"\n    ], \n    \"coal-seam-gas\": [\n        \"JJ\"\n    ], \n    \"Half-man\": [\n        \"JJ\"\n    ], \n    \"Scratch\": [\n        \"NN\"\n    ], \n    \"GDL\": [\n        \"NNP\"\n    ], \n    \"consumed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Orbital\": [\n        \"NNP\"\n    ], \n    \"Supposedly\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"boomers\": [\n        \"NNS\"\n    ], \n    \"reconcile\": [\n        \"VB\"\n    ], \n    \"oddity\": [\n        \"NN\"\n    ], \n    \"raging\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"likewise\": [\n        \"RB\"\n    ], \n    \"ibuprofen\": [\n        \"NN\"\n    ], \n    \"surpassing\": [\n        \"VBG\", \n        \"RB\"\n    ], \n    \"skimming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"nondiscriminatory\": [\n        \"JJ\"\n    ], \n    \"Rolfe\": [\n        \"NNP\"\n    ], \n    \"overconfident\": [\n        \"JJ\"\n    ], \n    \"self-destruction\": [\n        \"NN\"\n    ], \n    \"Ramone\": [\n        \"NNP\"\n    ], \n    \"Ramona\": [\n        \"NNP\"\n    ], \n    \"frambesia\": [\n        \"NN\"\n    ], \n    \"scrape\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ruff\": [\n        \"NNP\"\n    ], \n    \"stepchild\": [\n        \"NN\"\n    ], \n    \"parakeet\": [\n        \"NN\"\n    ], \n    \"Background\": [\n        \"NN\"\n    ], \n    \"scraps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"reimburses\": [\n        \"VBZ\"\n    ], \n    \"degenerative\": [\n        \"JJ\"\n    ], \n    \"hustling\": [\n        \"VBG\"\n    ], \n    \"principle\": [\n        \"NN\"\n    ], \n    \"tedium\": [\n        \"NN\"\n    ], \n    \"potion\": [\n        \"NN\"\n    ], \n    \"energetic\": [\n        \"JJ\"\n    ], \n    \"Sethness\": [\n        \"NNP\"\n    ], \n    \"lashing\": [\n        \"VBG\", \n        \"NN|VBG\"\n    ], \n    \"balkiness\": [\n        \"NN\"\n    ], \n    \"STANDARDS\": [\n        \"NNPS\"\n    ], \n    \"Concetta\": [\n        \"NNP\"\n    ], \n    \"rise\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Canonie\": [\n        \"NNP\"\n    ], \n    \"Consequence\": [\n        \"NN\"\n    ], \n    \"Greensville\": [\n        \"NNP\"\n    ], \n    \"Rosenau\": [\n        \"NNP\"\n    ], \n    \"DEVELOPMENT\": [\n        \"NNP\"\n    ], \n    \"destinies\": [\n        \"NNS\"\n    ], \n    \"discounter\": [\n        \"NN\"\n    ], \n    \"Yarnell\": [\n        \"NNP\"\n    ], \n    \"napping\": [\n        \"VBG\"\n    ], \n    \"Alamein\": [\n        \"NNP\"\n    ], \n    \"prestidigitator\": [\n        \"NN\"\n    ], \n    \"half-clad\": [\n        \"JJ\"\n    ], \n    \"fair-looking\": [\n        \"JJ\"\n    ], \n    \"labelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"emblem\": [\n        \"NN\"\n    ], \n    \"Lonnie\": [\n        \"NNP\"\n    ], \n    \"illustrates\": [\n        \"VBZ\"\n    ], \n    \"scooped\": [\n        \"VBD\"\n    ], \n    \"Austrian-Argentine\": [\n        \"JJ\"\n    ], \n    \"Blaydon\": [\n        \"NNP\"\n    ], \n    \"Ecumenical\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"existing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Andalusians\": [\n        \"NNPS\"\n    ], \n    \"grazers\": [\n        \"NNS\"\n    ], \n    \"exorcisms\": [\n        \"NNS\"\n    ], \n    \"unmatched\": [\n        \"JJ\"\n    ], \n    \"Califano\": [\n        \"NNP\"\n    ], \n    \"lambasting\": [\n        \"VBG\"\n    ], \n    \"centers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Supporting\": [\n        \"VBG\"\n    ], \n    \"McLaughlin\": [\n        \"NNP\"\n    ], \n    \"Japanese-owned\": [\n        \"JJ\"\n    ], \n    \"Tippet\": [\n        \"NNP\"\n    ], \n    \"Bessemer\": [\n        \"NNP\"\n    ], \n    \"concerned\": [\n        \"VBN\", \n        \"JJ\", \n        \"VB\", \n        \"VBD\"\n    ], \n    \"Becoming\": [\n        \"VBG\"\n    ], \n    \"student-loan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Glass\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"subcontracting\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"battle-ax\": [\n        \"NN\"\n    ], \n    \"Superconductor\": [\n        \"NNP\"\n    ], \n    \"manipulates\": [\n        \"VBZ\"\n    ], \n    \"Holland\": [\n        \"NNP\"\n    ], \n    \"Bordens\": [\n        \"NNPS\"\n    ], \n    \"Railbikes\": [\n        \"NNS\"\n    ], \n    \"one-woman\": [\n        \"JJ\"\n    ], \n    \"Gather\": [\n        \"VB\"\n    ], \n    \"fence-line\": [\n        \"JJ\"\n    ], \n    \"public-employee\": [\n        \"NN\"\n    ], \n    \"Harve\": [\n        \"NNP\"\n    ], \n    \"discombobulation\": [\n        \"NN\"\n    ], \n    \"jettisoned\": [\n        \"VBN\"\n    ], \n    \"pledge\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Morals\": [\n        \"NNS\"\n    ], \n    \"Schnabel-Pro\": [\n        \"NNP\"\n    ], \n    \"gettin\": [\n        \"VBG\"\n    ], \n    \"pullback\": [\n        \"NN\"\n    ], \n    \"Ehrlich\": [\n        \"NNP\"\n    ], \n    \"encloses\": [\n        \"VBZ\"\n    ], \n    \"Assessors\": [\n        \"NNS\"\n    ], \n    \"debt-burdened\": [\n        \"JJ\"\n    ], \n    \"thirty-eighth\": [\n        \"JJ\"\n    ], \n    \"Mainly\": [\n        \"RB\"\n    ], \n    \"overshadows\": [\n        \"VBZ\"\n    ], \n    \"Currently\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"apparency\": [\n        \"NN\"\n    ], \n    \"revocable\": [\n        \"JJ\"\n    ], \n    \"recruitment\": [\n        \"NN\"\n    ], \n    \"fables\": [\n        \"NNS\"\n    ], \n    \"Paley\": [\n        \"NNP\"\n    ], \n    \"enclosed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hutment\": [\n        \"NN\"\n    ], \n    \"university-educated\": [\n        \"JJ\"\n    ], \n    \"Sirinjani\": [\n        \"NNP\"\n    ], \n    \"apparatus\": [\n        \"NN\"\n    ], \n    \"kibbutzim\": [\n        \"NNS\", \n        \"FW\"\n    ], \n    \"Walls\": [\n        \"NNS\"\n    ], \n    \"re-injecting\": [\n        \"JJ\"\n    ], \n    \"decolletage\": [\n        \"NN\"\n    ], \n    \"Easthampton\": [\n        \"NNP\"\n    ], \n    \"Falin\": [\n        \"NNP\"\n    ], \n    \"Grudges\": [\n        \"NNS\"\n    ], \n    \"Goldschmidt\": [\n        \"NNP\"\n    ], \n    \"protein-bound\": [\n        \"JJ\"\n    ], \n    \"profit-staggering\": [\n        \"JJ\"\n    ], \n    \"scenery\": [\n        \"NN\"\n    ], \n    \"a-tall\": [\n        \"JJ\"\n    ], \n    \"Vance\": [\n        \"NNP\"\n    ], \n    \"Jersey-based\": [\n        \"JJ\"\n    ], \n    \"single-spaced\": [\n        \"JJ\"\n    ], \n    \"deduces\": [\n        \"VBZ\"\n    ], \n    \"allying\": [\n        \"VBG\"\n    ], \n    \"Cargill\": [\n        \"NNP\"\n    ], \n    \"Internationale\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"consideration\": [\n        \"NN\"\n    ], \n    \"subgross\": [\n        \"JJ\"\n    ], \n    \"deduced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Drabinsky\": [\n        \"NNP\"\n    ], \n    \"Collett\": [\n        \"NNP\"\n    ], \n    \"involved\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\", \n        \"VB\", \n        \"VBN|JJ\"\n    ], \n    \"polystyrene\": [\n        \"NN\"\n    ], \n    \"Remus\": [\n        \"NNP\"\n    ], \n    \"Landesbank-Girozentrale\": [\n        \"NNP\"\n    ], \n    \"time-delay\": [\n        \"JJ\"\n    ], \n    \"Winger\": [\n        \"NNP\"\n    ], \n    \"grandchild\": [\n        \"NN\"\n    ], \n    \"way-out\": [\n        \"JJ\"\n    ], \n    \"Organizing\": [\n        \"NNP\"\n    ], \n    \"involves\": [\n        \"VBZ\"\n    ], \n    \"Davidowitz\": [\n        \"NNP\"\n    ], \n    \"consciousness-raising\": [\n        \"NN\"\n    ], \n    \"anti-militarists\": [\n        \"NNS\"\n    ], \n    \"counsels\": [\n        \"VBZ\"\n    ], \n    \"Jean-Jacques\": [\n        \"NNP\"\n    ], \n    \"dollies\": [\n        \"NNS\"\n    ], \n    \"sugar\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tools\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"inconveniently\": [\n        \"RB\"\n    ], \n    \"Cate\": [\n        \"NNP\"\n    ], \n    \"Dashiell\": [\n        \"NNP\"\n    ], \n    \"affording\": [\n        \"VBG\"\n    ], \n    \"zip\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"anticoagulation\": [\n        \"NN\"\n    ], \n    \"illegal\": [\n        \"JJ\"\n    ], \n    \"capriciously\": [\n        \"RB\"\n    ], \n    \"afforded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"toy\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"doubling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"zim\": [\n        \"UH\"\n    ], \n    \"infamy\": [\n        \"NN\"\n    ], \n    \"Tribe\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gigue-like\": [\n        \"JJ\"\n    ], \n    \"Nernst\": [\n        \"NNP\"\n    ], \n    \"indpendent\": [\n        \"JJ\"\n    ], \n    \"finery\": [\n        \"NN\"\n    ], \n    \"opposing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Zollinger-Ellison\": [\n        \"NNP\"\n    ], \n    \"Halfback\": [\n        \"NNP\"\n    ], \n    \"public-owned\": [\n        \"JJ\"\n    ], \n    \"unawareness\": [\n        \"NN\"\n    ], \n    \"high\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"balls\": [\n        \"NNS\"\n    ], \n    \"portability\": [\n        \"NN\"\n    ], \n    \"retreated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pout\": [\n        \"NN\"\n    ], \n    \"dynasties\": [\n        \"NNS\"\n    ], \n    \"athlete\": [\n        \"NN\"\n    ], \n    \"Nucor-like\": [\n        \"JJ\"\n    ], \n    \"pour\": [\n        \"VB\", \n        \"FW\", \n        \"IN\", \n        \"VBP\"\n    ], \n    \"rubberized\": [\n        \"VBN\"\n    ], \n    \"Barclays\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"worksheet\": [\n        \"NN\"\n    ], \n    \"fulfill\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"VISystems\": [\n        \"NNPS\"\n    ], \n    \"voice-activated\": [\n        \"JJ\"\n    ], \n    \"intimidations\": [\n        \"NNS\"\n    ], \n    \"streamer\": [\n        \"NN\"\n    ], \n    \"Dietz\": [\n        \"NNP\"\n    ], \n    \"Diety\": [\n        \"NNP\"\n    ], \n    \"Diets\": [\n        \"NNS\"\n    ], \n    \"tiles\": [\n        \"NNS\"\n    ], \n    \"signers\": [\n        \"NNS\"\n    ], \n    \"pieces\": [\n        \"NNS\"\n    ], \n    \"Dodson\": [\n        \"NNP\"\n    ], \n    \"Excluded\": [\n        \"VBN\"\n    ], \n    \"pieced\": [\n        \"VBN\"\n    ], \n    \"purposed\": [\n        \"VBN\"\n    ], \n    \"Christmas\": [\n        \"NNP\"\n    ], \n    \"Auto-parts\": [\n        \"JJ\"\n    ], \n    \"pretexts\": [\n        \"NNS\"\n    ], \n    \"swished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"destroying\": [\n        \"VBG\"\n    ], \n    \"Sooner\": [\n        \"RB\", \n        \"RBR\"\n    ], \n    \"Wave\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bodegas\": [\n        \"NNS\"\n    ], \n    \"Wavy\": [\n        \"JJ\"\n    ], \n    \"Emeritus\": [\n        \"NNP\"\n    ], \n    \"Taek\": [\n        \"NNP\"\n    ], \n    \"establishment\": [\n        \"NN\"\n    ], \n    \"puckered\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"market-timing\": [\n        \"JJ\"\n    ], \n    \"contraption\": [\n        \"NN\"\n    ], \n    \"abrasive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Godown\": [\n        \"NNP\"\n    ], \n    \"pump-action\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"overridden\": [\n        \"VBN\"\n    ], \n    \"Ryan\": [\n        \"NNP\"\n    ], \n    \"Q\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Kloves\": [\n        \"NNP\"\n    ], \n    \"hitched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"ontological\": [\n        \"JJ\"\n    ], \n    \"tier\": [\n        \"NN\"\n    ], \n    \"ties\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"atune\": [\n        \"NN\"\n    ], \n    \"racks\": [\n        \"NNS\"\n    ], \n    \"autograph\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"air-waybill\": [\n        \"JJ\"\n    ], \n    \"Annenberg\": [\n        \"NNP\"\n    ], \n    \"Uncertain\": [\n        \"NNP\"\n    ], \n    \"microbial\": [\n        \"JJ\"\n    ], \n    \"redundant\": [\n        \"JJ\"\n    ], \n    \"Risking\": [\n        \"NNP\"\n    ], \n    \"John-Henry\": [\n        \"NNP\"\n    ], \n    \"Tortola\": [\n        \"NNP\"\n    ], \n    \"Defects\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"pyramids\": [\n        \"NNS\"\n    ], \n    \"racehorses\": [\n        \"NNS\"\n    ], \n    \"Financials\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Millkens\": [\n        \"NNP\"\n    ], \n    \"erasing\": [\n        \"VBG\"\n    ], \n    \"Reconciliation\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"infelicitous\": [\n        \"JJ\"\n    ], \n    \"Jeopardy\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Computer-peripherals\": [\n        \"NNS\"\n    ], \n    \"negation\": [\n        \"NN\"\n    ], \n    \"Chesly\": [\n        \"NNP\"\n    ], \n    \"Evangeline\": [\n        \"NNP\"\n    ], \n    \"flopped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nuclepore\": [\n        \"NNP\"\n    ], \n    \"then-GOP\": [\n        \"NNP\"\n    ], \n    \"crabby\": [\n        \"JJ\"\n    ], \n    \"reinstated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"mistletoe\": [\n        \"NN\"\n    ], \n    \"surgeons\": [\n        \"NNS\"\n    ], \n    \"Blaggs\": [\n        \"NNP\"\n    ], \n    \"remorseless\": [\n        \"JJ\"\n    ], \n    \"Ganessa\": [\n        \"NNP\"\n    ], \n    \"anti-growth\": [\n        \"JJ\"\n    ], \n    \"Doyle\": [\n        \"NNP\"\n    ], \n    \"derelict\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"archival\": [\n        \"JJ\"\n    ], \n    \"cusp\": [\n        \"NN\"\n    ], \n    \"Dubai\": [\n        \"NNP\"\n    ], \n    \"animal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"peseta\": [\n        \"NN\"\n    ], \n    \"separators\": [\n        \"NNS\"\n    ], \n    \"chronological\": [\n        \"JJ\"\n    ], \n    \"transparent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sarkees\": [\n        \"NNP\"\n    ], \n    \"coriander\": [\n        \"NN\"\n    ], \n    \"going\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"shantung-like\": [\n        \"JJ\"\n    ], \n    \"VII\": [\n        \"NNP\"\n    ], \n    \"Baskin\": [\n        \"NNP\"\n    ], \n    \"VIP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kroner\": [\n        \"NN\"\n    ], \n    \"Kluckhohn\": [\n        \"NNP\"\n    ], \n    \"importunately\": [\n        \"RB\"\n    ], \n    \"Garnett\": [\n        \"NNP\"\n    ], \n    \"Woolen\": [\n        \"NNP\"\n    ], \n    \"STAR\": [\n        \"NN\"\n    ], \n    \"minehunter\": [\n        \"NN\"\n    ], \n    \"DeMontez\": [\n        \"NNP\"\n    ], \n    \"Gregorius\": [\n        \"NNP\"\n    ], \n    \"Wolverine\": [\n        \"NNP\"\n    ], \n    \"society\": [\n        \"NN\"\n    ], \n    \"idiosyncrasies\": [\n        \"NNS\"\n    ], \n    \"food-poisoning\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Very\": [\n        \"RB\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"valve\": [\n        \"NN\"\n    ], \n    \"Miscellaneous\": [\n        \"JJ\"\n    ], \n    \"Vera\": [\n        \"NNP\"\n    ], \n    \"perversions\": [\n        \"NNS\"\n    ], \n    \"Bloody\": [\n        \"NNP\"\n    ], \n    \"A.M.\": [\n        \"NNP\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"father-son\": [\n        \"NN\"\n    ], \n    \"low-tension\": [\n        \"JJ\"\n    ], \n    \"tiredly\": [\n        \"RB\"\n    ], \n    \"Vero\": [\n        \"NNP\"\n    ], \n    \"theater-going\": [\n        \"NN\"\n    ], \n    \"Francesville\": [\n        \"NNP\"\n    ], \n    \"self-examination\": [\n        \"NN\"\n    ], \n    \"non-Swedish\": [\n        \"JJ\"\n    ], \n    \"recoverability\": [\n        \"NN\"\n    ], \n    \"Byer-Rolnick\": [\n        \"NNP\"\n    ], \n    \"Mytton\": [\n        \"NNP\"\n    ], \n    \"thrust\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VB\"\n    ], \n    \"Spend\": [\n        \"VB\"\n    ], \n    \"geographer\": [\n        \"NN\"\n    ], \n    \"Brenner\": [\n        \"NNP\"\n    ], \n    \"compulsive\": [\n        \"JJ\"\n    ], \n    \"Dugan\\\\/Farley\": [\n        \"NNP\"\n    ], \n    \"hindering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"distinctions\": [\n        \"NNS\"\n    ], \n    \"nationalisms\": [\n        \"NNS\"\n    ], \n    \"troublemakers\": [\n        \"NNS\"\n    ], \n    \"Figger\": [\n        \"VB\"\n    ], \n    \"coming-out\": [\n        \"JJ\"\n    ], \n    \"Kian\": [\n        \"NNP\"\n    ], \n    \"Kiam\": [\n        \"NNP\"\n    ], \n    \"Jamie\": [\n        \"NNP\"\n    ], \n    \"anti-democratic\": [\n        \"JJ\"\n    ], \n    \"Ornament\": [\n        \"NN\"\n    ], \n    \"Inquisitors\": [\n        \"NNS\"\n    ], \n    \"takeover-driven\": [\n        \"JJ\"\n    ], \n    \"Prop\": [\n        \"NN\"\n    ], \n    \"gatherings\": [\n        \"NNS\"\n    ], \n    \"Prof\": [\n        \"NNP\"\n    ], \n    \"Fare\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"Gimbel\": [\n        \"NNP\"\n    ], \n    \"brimful\": [\n        \"JJ\"\n    ], \n    \"fascinating\": [\n        \"JJ\"\n    ], \n    \"ODI\": [\n        \"NNP\"\n    ], \n    \"Farm\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"behaves\": [\n        \"VBZ\"\n    ], \n    \"detailing\": [\n        \"VBG\"\n    ], \n    \"courted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Adult\": [\n        \"NN\"\n    ], \n    \"price-increase\": [\n        \"NN\"\n    ], \n    \"Farr\": [\n        \"NNP\"\n    ], \n    \"prevision\": [\n        \"NN\"\n    ], \n    \"behaved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"fluffy\": [\n        \"JJ\"\n    ], \n    \"closed-door\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sloppily\": [\n        \"RB\"\n    ], \n    \"thermopile\": [\n        \"NN\"\n    ], \n    \"argot\": [\n        \"NN\"\n    ], \n    \"unoccupied\": [\n        \"JJ\"\n    ], \n    \"Tempos\": [\n        \"NNS\"\n    ], \n    \"argon\": [\n        \"NN\"\n    ], \n    \"over-40\": [\n        \"JJ\"\n    ], \n    \"Connectables\": [\n        \"NNP\"\n    ], \n    \"Auctions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Jaycee\": [\n        \"NNP\"\n    ], \n    \"elite\": [\n        \"NN\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Siddeley\": [\n        \"NNP\"\n    ], \n    \"bodyweight\": [\n        \"NN\"\n    ], \n    \"carboxy-labeled\": [\n        \"JJ\"\n    ], \n    \"Burma-Shave\": [\n        \"NNP\"\n    ], \n    \"ITO\": [\n        \"NNP\"\n    ], \n    \"bowl-shaped\": [\n        \"JJ\"\n    ], \n    \"ITG\": [\n        \"NNP\"\n    ], \n    \"ITC\": [\n        \"NNP\"\n    ], \n    \"extraordinarily\": [\n        \"RB\"\n    ], \n    \"appealing\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"psalm\": [\n        \"NN\"\n    ], \n    \"stricter\": [\n        \"JJR\"\n    ], \n    \"amble\": [\n        \"VB\"\n    ], \n    \"ITS\": [\n        \"PRP$\"\n    ], \n    \"ingenious\": [\n        \"JJ\"\n    ], \n    \"chromic\": [\n        \"JJ\"\n    ], \n    \"Pursuing\": [\n        \"VBG\"\n    ], \n    \"abomination\": [\n        \"NN\"\n    ], \n    \"RDW\": [\n        \"NN\"\n    ], \n    \"Asides\": [\n        \"NNP\"\n    ], \n    \"MiG-23\": [\n        \"NNP\"\n    ], \n    \"Ahold\": [\n        \"NNP\"\n    ], \n    \"MiG-26\": [\n        \"NNP\"\n    ], \n    \"Electra\": [\n        \"NNP\"\n    ], \n    \"Inventions\": [\n        \"NNS\"\n    ], \n    \"Electro\": [\n        \"NNP\"\n    ], \n    \"ski-industry\": [\n        \"NN\"\n    ], \n    \"Coupling\": [\n        \"VBG\"\n    ], \n    \"persistency\": [\n        \"NN\"\n    ], \n    \"Maksoud\": [\n        \"NNP\"\n    ], \n    \"leather-bound\": [\n        \"JJ\"\n    ], \n    \"Tokoi\": [\n        \"NNP\"\n    ], \n    \"sand-mining\": [\n        \"NN\"\n    ], \n    \"Reflex\": [\n        \"NN\"\n    ], \n    \"reloaded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"infractions\": [\n        \"NNS\"\n    ], \n    \"Fujitsu\": [\n        \"NNP\"\n    ], \n    \"Particular\": [\n        \"JJ\"\n    ], \n    \"subject\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"NN|JJ\"\n    ], \n    \"persistence\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"tyrannical\": [\n        \"JJ\"\n    ], \n    \"Hughes\": [\n        \"NNP\"\n    ], \n    \"biplanes\": [\n        \"NNS\"\n    ], \n    \"Hughey\": [\n        \"NNP\"\n    ], \n    \"congregational\": [\n        \"JJ\"\n    ], \n    \"Horace\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vise\": [\n        \"NN\"\n    ], \n    \"cabinet\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fervent\": [\n        \"JJ\"\n    ], \n    \"unerringly\": [\n        \"RB\"\n    ], \n    \"TELEVISION\": [\n        \"NN\"\n    ], \n    \"amortize\": [\n        \"VB\"\n    ], \n    \"more-distinctive\": [\n        \"JJR\"\n    ], \n    \"leafiest\": [\n        \"JJS\"\n    ], \n    \"Prisoners\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"metaphysical\": [\n        \"JJ\"\n    ], \n    \"Leaseway\": [\n        \"NNP\"\n    ], \n    \"Time-servers\": [\n        \"NNS\"\n    ], \n    \"Hexen\": [\n        \"FW\"\n    ], \n    \"Masahiro\": [\n        \"NNP\"\n    ], \n    \"Adelos\": [\n        \"NNP\"\n    ], \n    \"ex-husband\": [\n        \"NN\"\n    ], \n    \"penning\": [\n        \"VBG\"\n    ], \n    \"growing-waiting\": [\n        \"NN\"\n    ], \n    \"perversion\": [\n        \"NN\"\n    ], \n    \"Moorish\": [\n        \"JJ\"\n    ], \n    \"standin\": [\n        \"NN\"\n    ], \n    \"vacancy\": [\n        \"NN\"\n    ], \n    \"touching\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"acid-rain\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"connective\": [\n        \"JJ\"\n    ], \n    \"inviolability\": [\n        \"NN\"\n    ], \n    \"rouge\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"Trouble-free\": [\n        \"JJ\"\n    ], \n    \"rough\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"trivial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"B.A.T...\": [\n        \":\"\n    ], \n    \"pause\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Booths\": [\n        \"NNS\"\n    ], \n    \"foreknowledge\": [\n        \"NN\"\n    ], \n    \"Husker\": [\n        \"NNP\"\n    ], \n    \"entry-limit\": [\n        \"JJ\"\n    ], \n    \"spiffy\": [\n        \"JJ\"\n    ], \n    \"Campion\": [\n        \"NNP\"\n    ], \n    \"Pischinger\": [\n        \"NNP\"\n    ], \n    \"pay-later\": [\n        \"JJ\"\n    ], \n    \"cranks\": [\n        \"NNS\"\n    ], \n    \"lucks\": [\n        \"NNS\"\n    ], \n    \"cigar-chomping\": [\n        \"JJ\"\n    ], \n    \"familiar\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"light-mindedness\": [\n        \"JJ\"\n    ], \n    \"hypnotically\": [\n        \"RB\"\n    ], \n    \"lucky\": [\n        \"JJ\"\n    ], \n    \"autos\": [\n        \"NNS\"\n    ], \n    \"Zsa\": [\n        \"NNP\"\n    ], \n    \"familial\": [\n        \"JJ\"\n    ], \n    \"thiouracil\": [\n        \"NN\"\n    ], \n    \"steepness\": [\n        \"NN\"\n    ], \n    \"Corp.-USA\": [\n        \"NNP\"\n    ], \n    \"hoses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Sinclair\": [\n        \"NNP\"\n    ], \n    \"Barings\": [\n        \"NNPS\"\n    ], \n    \"Maidenform\": [\n        \"NNP\"\n    ], \n    \"U.S.-Soviet\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Szabad\": [\n        \"NNP\"\n    ], \n    \"skylight\": [\n        \"NN\"\n    ], \n    \"extremists\": [\n        \"NNS\"\n    ], \n    \"Werner\": [\n        \"NNP\"\n    ], \n    \"Gilmore\": [\n        \"NNP\"\n    ], \n    \"KIM\": [\n        \"NNP\"\n    ], \n    \"Registration\": [\n        \"NN\"\n    ], \n    \"KID\": [\n        \"NNP\"\n    ], \n    \"intervening\": [\n        \"VBG\"\n    ], \n    \"summits\": [\n        \"NNS\"\n    ], \n    \"Chiusano\": [\n        \"NNP\"\n    ], \n    \"warrior\": [\n        \"NN\"\n    ], \n    \"Guidance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"lazy\": [\n        \"JJ\"\n    ], \n    \"Paulo\": [\n        \"NNP\"\n    ], \n    \"Source\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"aerogenes\": [\n        \"NNS\"\n    ], \n    \"Teen-age\": [\n        \"JJ\"\n    ], \n    \"Oilgram\": [\n        \"NNP\"\n    ], \n    \"triples\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"ROUND\": [\n        \"NN\"\n    ], \n    \"Paula\": [\n        \"NNP\"\n    ], \n    \"coils\": [\n        \"NNS\"\n    ], \n    \"wire\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dispensable\": [\n        \"JJ\"\n    ], \n    \"mass-building\": [\n        \"JJ\"\n    ], \n    \"coily\": [\n        \"RB\"\n    ], \n    \"perpetration\": [\n        \"NN\"\n    ], \n    \"quickest\": [\n        \"JJS\"\n    ], \n    \"Rickshaw\": [\n        \"NNP\"\n    ], \n    \"crack-ridden\": [\n        \"JJ\"\n    ], \n    \"Sanderoff\": [\n        \"NNP\"\n    ], \n    \"Tribal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"wiry\": [\n        \"JJ\"\n    ], \n    \"Rockford\": [\n        \"NNP\"\n    ], \n    \"Berko\": [\n        \"NNP\"\n    ], \n    \"scrolls\": [\n        \"NNS\"\n    ], \n    \"scolds\": [\n        \"NNS\"\n    ], \n    \"large-package\": [\n        \"JJ\"\n    ], \n    \"specious\": [\n        \"JJ\"\n    ], \n    \"blitzes\": [\n        \"NNS\"\n    ], \n    \"Scams\": [\n        \"NNS\"\n    ], \n    \"Berks\": [\n        \"NNP\"\n    ], \n    \"interchangeable\": [\n        \"JJ\"\n    ], \n    \"FBI\": [\n        \"NNP\"\n    ], \n    \"Feruzzi\": [\n        \"NNP\"\n    ], \n    \"Fielding\": [\n        \"NN\"\n    ], \n    \"phonetic\": [\n        \"JJ\"\n    ], \n    \"Preserving\": [\n        \"VBG\"\n    ], \n    \"computer-making\": [\n        \"JJ\"\n    ], \n    \"deficits\": [\n        \"NNS\"\n    ], \n    \"dollar-mark\": [\n        \"NN\"\n    ], \n    \"innocently\": [\n        \"RB\"\n    ], \n    \"tripled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"boot-stomping\": [\n        \"JJ\"\n    ], \n    \"Vagabonds\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Chriss\": [\n        \"NNP\"\n    ], \n    \"light-industrial\": [\n        \"JJ\"\n    ], \n    \"author\": [\n        \"NN\"\n    ], \n    \"Transvaal\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Forgoing\": [\n        \"VBG\"\n    ], \n    \"Louisa\": [\n        \"NNP\"\n    ], \n    \"staved\": [\n        \"VBN\"\n    ], \n    \"coercive\": [\n        \"JJ\"\n    ], \n    \"Stapf\": [\n        \"NNP\"\n    ], \n    \"glowered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"SRELEASE\": [\n        \"NN\"\n    ], \n    \"Diligence\": [\n        \"NNP\"\n    ], \n    \"Industriels\": [\n        \"NNPS\"\n    ], \n    \"quaver\": [\n        \"NN\"\n    ], \n    \"Soyuz\": [\n        \"NNP\"\n    ], \n    \"waste\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Durer\": [\n        \"NNP\"\n    ], \n    \"Interfaith\": [\n        \"JJ\"\n    ], \n    \"homosexual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Sayers\": [\n        \"NNP\"\n    ], \n    \"revoltingly\": [\n        \"RB\"\n    ], \n    \"slumping\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"arrearage\": [\n        \"NN\"\n    ], \n    \"Airborne\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"pro-active\": [\n        \"JJ\"\n    ], \n    \"graphics\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"lumbar\": [\n        \"JJ\"\n    ], \n    \"Slightly\": [\n        \"RB\"\n    ], \n    \"Honduras\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Mistake\": [\n        \"NNP\"\n    ], \n    \"intradepartmental\": [\n        \"JJ\"\n    ], \n    \"wearied\": [\n        \"VBD\"\n    ], \n    \"Afrikaners\": [\n        \"NNPS\"\n    ], \n    \"loathed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"history-making\": [\n        \"JJ\"\n    ], \n    \"pretentious\": [\n        \"JJ\"\n    ], \n    \"Interpoint\": [\n        \"NNP\"\n    ], \n    \"Adios-Trustful\": [\n        \"NNP\"\n    ], \n    \"Chion\": [\n        \"NNP\"\n    ], \n    \"loathes\": [\n        \"VBZ\"\n    ], \n    \"portwatchers\": [\n        \"NNS\"\n    ], \n    \"rollovers\": [\n        \"NNS\"\n    ], \n    \"notebook-sized\": [\n        \"JJ\"\n    ], \n    \"G.m.b\": [\n        \"NNP\"\n    ], \n    \"diversification\": [\n        \"NN\"\n    ], \n    \"bourbons\": [\n        \"NNS\"\n    ], \n    \"AGENCIES\": [\n        \"NNS\"\n    ], \n    \"Strict\": [\n        \"JJ\"\n    ], \n    \"excessively\": [\n        \"RB\"\n    ], \n    \"Inflow\": [\n        \"NN\"\n    ], \n    \"inquest\": [\n        \"NN\"\n    ], \n    \"prefabricated\": [\n        \"VBN\"\n    ], \n    \"justiciable\": [\n        \"JJ\"\n    ], \n    \"eventshahleh\": [\n        \"RB\"\n    ], \n    \"python\": [\n        \"NN\"\n    ], \n    \"overcoats\": [\n        \"NNS\"\n    ], \n    \"Good-bye\": [\n        \"UH\", \n        \"NN\"\n    ], \n    \"Kopp\": [\n        \"NNP\"\n    ], \n    \"glaring\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"joyously\": [\n        \"RB\"\n    ], \n    \"covenant\": [\n        \"NN\"\n    ], \n    \"conflicting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Porum\": [\n        \"NNP\"\n    ], \n    \"pumas\": [\n        \"NNS\"\n    ], \n    \"abyss\": [\n        \"NN\"\n    ], \n    \"golden-crusted\": [\n        \"JJ\"\n    ], \n    \"billion-share\": [\n        \"JJ\"\n    ], \n    \"interconnections\": [\n        \"NNS\"\n    ], \n    \"cutsie\": [\n        \"JJ\"\n    ], \n    \"adherents\": [\n        \"NNS\"\n    ], \n    \"broccoli\": [\n        \"NNS\"\n    ], \n    \"expand\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"extradited\": [\n        \"VBN\"\n    ], \n    \"retardant\": [\n        \"NN\"\n    ], \n    \"acknowledgement\": [\n        \"NN\"\n    ], \n    \"overcast\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"McGee\": [\n        \"NNP\"\n    ], \n    \"Challenges\": [\n        \"NNPS\", \n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Challenger\": [\n        \"NNP\"\n    ], \n    \"Meats\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"fiscal-agent\": [\n        \"NN\"\n    ], \n    \"prospering\": [\n        \"VBG\"\n    ], \n    \"Matching\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Gannett\": [\n        \"NNP\"\n    ], \n    \"Thyroid\": [\n        \"NN\"\n    ], \n    \"Seventy-seven\": [\n        \"JJ\"\n    ], \n    \"kiss\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"softening\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"less\": [\n        \"JJR\", \n        \"JJS\", \n        \"CC\", \n        \"RB\", \n        \"RBR\", \n        \"RBS\", \n        \"RBR|JJR\"\n    ], \n    \"Gourmet\": [\n        \"NNP\"\n    ], \n    \"Atreus\": [\n        \"NNP\"\n    ], \n    \"XR4Ti\": [\n        \"NNP\"\n    ], \n    \"off-line\": [\n        \"JJ\"\n    ], \n    \"Quota\": [\n        \"NNP\"\n    ], \n    \"Access\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Howda\": [\n        \"WRB\"\n    ], \n    \"predicts\": [\n        \"VBZ\"\n    ], \n    \"hauled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"commandeered\": [\n        \"VBN\"\n    ], \n    \"Remaining\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Milford\": [\n        \"NNP\"\n    ], \n    \"Post-Dispatch\": [\n        \"NNP\"\n    ], \n    \"Puddingstone\": [\n        \"NNP\"\n    ], \n    \"Broken\": [\n        \"NNP\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"off-limits\": [\n        \"JJ\"\n    ], \n    \"combine\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"cosmetics\": [\n        \"NNS\"\n    ], \n    \"combing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Gleacher\": [\n        \"NNP\"\n    ], \n    \"mannered\": [\n        \"JJ\"\n    ], \n    \"predict\\\\\": [\n        \"VBP\"\n    ], \n    \"rectilinear\": [\n        \"JJ\"\n    ], \n    \"scoundrel\": [\n        \"NN\"\n    ], \n    \"beryllium\": [\n        \"NN\"\n    ], \n    \"Hits\": [\n        \"NNS\"\n    ], \n    \"Katy\": [\n        \"NNP\"\n    ], \n    \"single-dose\": [\n        \"JJ\"\n    ], \n    \"ultramarine\": [\n        \"NN\"\n    ], \n    \"Ferlenghetti\": [\n        \"NNP\"\n    ], \n    \"criminalize\": [\n        \"VB\"\n    ], \n    \"dark-gray\": [\n        \"JJ\"\n    ], \n    \"Kunste\": [\n        \"NNP\"\n    ], \n    \"Tartikoff\": [\n        \"NNP\"\n    ], \n    \"goings\": [\n        \"NNS\"\n    ], \n    \"Snopes\": [\n        \"NNP\"\n    ], \n    \"overdosed\": [\n        \"VBN\"\n    ], \n    \"Metaphysics\": [\n        \"NNS\"\n    ], \n    \"Roebuck\": [\n        \"NNP\"\n    ], \n    \"epiphyseal-diaphyseal\": [\n        \"JJ\"\n    ], \n    \"molting\": [\n        \"VBG\"\n    ], \n    \"resin\": [\n        \"NN\"\n    ], \n    \"alkali\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Warning\": [\n        \"NNP\"\n    ], \n    \"Pawlowski\": [\n        \"NNP\"\n    ], \n    \"Windhoek\": [\n        \"NNP\"\n    ], \n    \"Lasers\": [\n        \"NNS\"\n    ], \n    \"thinners\": [\n        \"NNS\"\n    ], \n    \"handspikes\": [\n        \"NNS\"\n    ], \n    \"carcinogens\": [\n        \"NNS\"\n    ], \n    \"go-between\": [\n        \"NN\", \n        \"IN\"\n    ], \n    \"liquidation\": [\n        \"NN\"\n    ], \n    \"persecuting\": [\n        \"VBG\"\n    ], \n    \"CNW\": [\n        \"NNP\"\n    ], \n    \"portly\": [\n        \"JJ\"\n    ], \n    \"Bankrupty\": [\n        \"NNP\"\n    ], \n    \"Blenheim\": [\n        \"NNP\"\n    ], \n    \"Lavoro\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"front-loaders\": [\n        \"NNS\"\n    ], \n    \"devaluations\": [\n        \"NNS\"\n    ], \n    \"Newly\": [\n        \"RB\"\n    ], \n    \"wisecrack\": [\n        \"NN\"\n    ], \n    \"long-dormant\": [\n        \"JJ\"\n    ], \n    \"Chronicle\": [\n        \"NNP\"\n    ], \n    \"Fundidora\": [\n        \"NNP\"\n    ], \n    \"shone\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"legato\": [\n        \"JJ\"\n    ], \n    \"keystone\": [\n        \"NN\"\n    ], \n    \"reimbursements\": [\n        \"NNS\"\n    ], \n    \"crack-addicted\": [\n        \"JJ\"\n    ], \n    \"schedule\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"peep\": [\n        \"NN\"\n    ], \n    \"whiskers\": [\n        \"NNS\"\n    ], \n    \"sweet-sounding\": [\n        \"JJ\"\n    ], \n    \"SKr205\": [\n        \"NNS\"\n    ], \n    \"maven\": [\n        \"NN\"\n    ], \n    \"briefly-illumed\": [\n        \"VBN\"\n    ], \n    \"abdominal\": [\n        \"JJ\"\n    ], \n    \"surname\": [\n        \"NN\"\n    ], \n    \"loans\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"financial-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bromphenol\": [\n        \"NN\"\n    ], \n    \"hiding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"dirtier-running\": [\n        \"JJ\"\n    ], \n    \"mammoths\": [\n        \"NNS\"\n    ], \n    \"drumming\": [\n        \"VBG\"\n    ], \n    \"alginates\": [\n        \"NNS\"\n    ], \n    \"Corsia\": [\n        \"NNP\"\n    ], \n    \"character-recognition\": [\n        \"NN\"\n    ], \n    \"Gibbon\": [\n        \"NNP\"\n    ], \n    \"Wallace\": [\n        \"NNP\"\n    ], \n    \"debutante\": [\n        \"NN\"\n    ], \n    \"privatizing\": [\n        \"VBG\"\n    ], \n    \"Anadarko\": [\n        \"NNP\"\n    ], \n    \"Mil-Spec\": [\n        \"NNP\"\n    ], \n    \"hard-to-fill\": [\n        \"JJ\"\n    ], \n    \"Ordinaries\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"gallstone\": [\n        \"NN\"\n    ], \n    \"anti-NATO\": [\n        \"JJ\"\n    ], \n    \"Filtered\": [\n        \"VBN\"\n    ], \n    \"Megane\": [\n        \"NNP\"\n    ], \n    \"afoot\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"mere\": [\n        \"JJ\"\n    ], \n    \"beginner\": [\n        \"NN\"\n    ], \n    \"alreadeh\": [\n        \"RB\"\n    ], \n    \"Bashaw\": [\n        \"NNP\"\n    ], \n    \"Nuit\": [\n        \"NNP\"\n    ], \n    \"spots\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"mid-80s\": [\n        \"NNS\"\n    ], \n    \"misguided\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"frustration\": [\n        \"NN\"\n    ], \n    \"tractor-semitrailer\": [\n        \"NN\"\n    ], \n    \"Societies\": [\n        \"NNS\"\n    ], \n    \"Talent\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bacchus\": [\n        \"NNP\"\n    ], \n    \"suits\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"frise\": [\n        \"FW\"\n    ], \n    \"Infrequently\": [\n        \"RB\"\n    ], \n    \"grate\": [\n        \"NN\"\n    ], \n    \"clinically\": [\n        \"RB\"\n    ], \n    \"de-leverage\": [\n        \"VB\"\n    ], \n    \"lithographs\": [\n        \"NNS\"\n    ], \n    \"championship-team\": [\n        \"JJ\"\n    ], \n    \"detestable\": [\n        \"JJ\"\n    ], \n    \"Castel\": [\n        \"NNP\"\n    ], \n    \"chained\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"soreness\": [\n        \"NN\"\n    ], \n    \"telesystems\": [\n        \"NNS\"\n    ], \n    \"whole-wheat\": [\n        \"JJ\"\n    ], \n    \"corpses\": [\n        \"NNS\"\n    ], \n    \"Tom-and-Jerry\": [\n        \"NNP\"\n    ], \n    \"frequency\": [\n        \"NN\"\n    ], \n    \"monument\": [\n        \"NN\"\n    ], \n    \"harrassment\": [\n        \"NN\"\n    ], \n    \"informational\": [\n        \"JJ\"\n    ], \n    \"profusion\": [\n        \"NN\"\n    ], \n    \"cordial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Definition\": [\n        \"NN\"\n    ], \n    \"Synthelabo\": [\n        \"NNP\"\n    ], \n    \"slowing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"all-terrain\": [\n        \"JJ\"\n    ], \n    \"proposed...\": [\n        \":\"\n    ], \n    \"father-in-law\": [\n        \"NN\"\n    ], \n    \"lithography\": [\n        \"NN\"\n    ], \n    \"Shycon\": [\n        \"NNP\"\n    ], \n    \"planting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"radiomen\": [\n        \"NNS\"\n    ], \n    \"torch\": [\n        \"NN\"\n    ], \n    \"agriculture\": [\n        \"NN\"\n    ], \n    \"Buckets\": [\n        \"NNS\"\n    ], \n    \"Elsa\": [\n        \"NNP\"\n    ], \n    \"forests\": [\n        \"NNS\"\n    ], \n    \"Else\": [\n        \"RB\"\n    ], \n    \"Yugoslavia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"specimentalia\": [\n        \"NN\"\n    ], \n    \"bond-equivalent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Prelude\": [\n        \"NNP\"\n    ], \n    \"Loss\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ikegai-Goss\": [\n        \"NNP\"\n    ], \n    \"Lost\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"tides\": [\n        \"NNS\"\n    ], \n    \"elitists\": [\n        \"NNS\"\n    ], \n    \"dismantle\": [\n        \"VB\"\n    ], \n    \"bunched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Grecian\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"titanate\": [\n        \"NN\"\n    ], \n    \"Superposed\": [\n        \"VBD\"\n    ], \n    \"best-preserved\": [\n        \"JJ\"\n    ], \n    \"metal-benders\": [\n        \"NNS\"\n    ], \n    \"ambidextrous\": [\n        \"JJ\"\n    ], \n    \"inspiration\": [\n        \"NN\"\n    ], \n    \"reprovingly\": [\n        \"RB\"\n    ], \n    \"Weissman\": [\n        \"NNP\"\n    ], \n    \"preoccupations\": [\n        \"NNS\"\n    ], \n    \"mercenary\": [\n        \"JJ\"\n    ], \n    \"Hygiene\": [\n        \"NNP\"\n    ], \n    \"Pyongyang\": [\n        \"NNP\"\n    ], \n    \"stomach-belly\": [\n        \"NN\"\n    ], \n    \"high-value\": [\n        \"JJ\"\n    ], \n    \"A.T.B.\": [\n        \"NNP\"\n    ], \n    \"inning\": [\n        \"NN\"\n    ], \n    \"wetlands\": [\n        \"NNS\"\n    ], \n    \"suicidal\": [\n        \"JJ\"\n    ], \n    \"Residential\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"encouragingly\": [\n        \"RB\"\n    ], \n    \"Touting\": [\n        \"VBG\"\n    ], \n    \"Organic\": [\n        \"NNP\"\n    ], \n    \"Foont\": [\n        \"NNP\"\n    ], \n    \"smooth-speaking\": [\n        \"JJ\"\n    ], \n    \"Buenos\": [\n        \"NNP\"\n    ], \n    \"multimillion-pound-per-year\": [\n        \"JJ\"\n    ], \n    \"commandos\": [\n        \"NNS\"\n    ], \n    \"admixed\": [\n        \"VBN\"\n    ], \n    \"syndicating\": [\n        \"VBG\"\n    ], \n    \"Freeholder\": [\n        \"NNP\"\n    ], \n    \"etymology\": [\n        \"NN\"\n    ], \n    \"bludgeon\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Enforce\": [\n        \"VB\"\n    ], \n    \"Bangkok-Rangoon\": [\n        \"NNP\"\n    ], \n    \"clones\": [\n        \"NNS\"\n    ], \n    \"health-care-services\": [\n        \"JJ\"\n    ], \n    \"McMillen\": [\n        \"NNP\"\n    ], \n    \"raillery\": [\n        \"NN\"\n    ], \n    \"no-hitters\": [\n        \"NNS\"\n    ], \n    \"regalia\": [\n        \"NNS\"\n    ], \n    \"Streetspeak\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Beads\": [\n        \"NNPS\"\n    ], \n    \"kick-up\": [\n        \"NN\"\n    ], \n    \"capital-improvement\": [\n        \"NN\"\n    ], \n    \"Beady\": [\n        \"JJ\"\n    ], \n    \"Intangibles\": [\n        \"NNS\"\n    ], \n    \"closeup\": [\n        \"JJ\"\n    ], \n    \"Mudd\": [\n        \"NNP\"\n    ], \n    \"Infants\": [\n        \"NNS\"\n    ], \n    \"viral\": [\n        \"JJ\"\n    ], \n    \"Duffield\": [\n        \"NNP\"\n    ], \n    \"Parametric\": [\n        \"NNP\"\n    ], \n    \"low-concept\": [\n        \"JJ\"\n    ], \n    \"pachinko\": [\n        \"NN\"\n    ], \n    \"MAT\": [\n        \"NNP\"\n    ], \n    \"Spaeth\": [\n        \"NNP\"\n    ], \n    \"MAY\": [\n        \"MD\", \n        \"NNP\"\n    ], \n    \"sonorities\": [\n        \"NNS\"\n    ], \n    \"P.GA\": [\n        \"NNP\"\n    ], \n    \"handout\": [\n        \"NN\"\n    ], \n    \"optical-fiber\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MAC\": [\n        \"NNP\"\n    ], \n    \"carry-in\": [\n        \"JJ\"\n    ], \n    \"demage\": [\n        \"NN\"\n    ], \n    \"MAI\": [\n        \"NNP\"\n    ], \n    \"poppy\": [\n        \"NN\"\n    ], \n    \"Hess\": [\n        \"NNP\"\n    ], \n    \"Genova\": [\n        \"NNP\"\n    ], \n    \"Zairean\": [\n        \"JJ\"\n    ], \n    \"Sunrise\": [\n        \"NNP\"\n    ], \n    \"MAN\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"paperback\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"travel-service\": [\n        \"NN\"\n    ], \n    \"Paintings\": [\n        \"NNS\"\n    ], \n    \"prolong\": [\n        \"VB\"\n    ], \n    \"Sighing\": [\n        \"VBG\"\n    ], \n    \"Daytime\": [\n        \"NNP\"\n    ], \n    \"rigorous\": [\n        \"JJ\"\n    ], \n    \"Metrically\": [\n        \"RB\"\n    ], \n    \"planters\": [\n        \"NNS\"\n    ], \n    \"colonialism\": [\n        \"NN\"\n    ], \n    \"irrevocably\": [\n        \"RB\"\n    ], \n    \"S.S.R.\": [\n        \"NNP\"\n    ], \n    \"Southwide\": [\n        \"NNP\"\n    ], \n    \"irrevocable\": [\n        \"JJ\"\n    ], \n    \"garden...\": [\n        \":\"\n    ], \n    \"colonialist\": [\n        \"NN\"\n    ], \n    \"Dumbo\": [\n        \"NNP\"\n    ], \n    \"consisting\": [\n        \"VBG\"\n    ], \n    \"Kayton\": [\n        \"NNP\"\n    ], \n    \"Proverbs\": [\n        \"NNS\"\n    ], \n    \"minority-owned\": [\n        \"JJ\"\n    ], \n    \"waddlers\": [\n        \"NNS\"\n    ], \n    \"KC-10\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"interns\": [\n        \"NNS\"\n    ], \n    \"chowders\": [\n        \"NNS\"\n    ], \n    \"Jamaican\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"SYSTEMS\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"UNDER\": [\n        \"IN\"\n    ], \n    \"Belway\": [\n        \"NNP\"\n    ], \n    \"primary-election\": [\n        \"NN\"\n    ], \n    \"interne\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"inhaling\": [\n        \"VBG\"\n    ], \n    \"Safeco\": [\n        \"NNP\"\n    ], \n    \"Solomonic\": [\n        \"JJ\"\n    ], \n    \"envoy\": [\n        \"NN\"\n    ], \n    \"foolishness\": [\n        \"NN\"\n    ], \n    \"up-jutting\": [\n        \"JJ\"\n    ], \n    \"pinning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"pooling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Homo\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"far-off\": [\n        \"JJ\"\n    ], \n    \"Subtitled\": [\n        \"VBN\"\n    ], \n    \"surely\": [\n        \"RB\"\n    ], \n    \"chlorine-carbon\": [\n        \"NN\"\n    ], \n    \"Sameness\": [\n        \"NN\"\n    ], \n    \"Schwerin\": [\n        \"NNP\"\n    ], \n    \"spooks\": [\n        \"NNS\"\n    ], \n    \"in-migrants\": [\n        \"NNS\"\n    ], \n    \"discontinuous\": [\n        \"JJ\"\n    ], \n    \"spooky\": [\n        \"JJ\"\n    ], \n    \"loophole...\": [\n        \":\"\n    ], \n    \"neutrons\": [\n        \"NNS\"\n    ], \n    \"sparkling\": [\n        \"JJ\", \n        \"RB\", \n        \"VBG\"\n    ], \n    \"achievable\": [\n        \"JJ\"\n    ], \n    \"concomitant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fixable\": [\n        \"JJ\"\n    ], \n    \"Lighted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Star\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"liftoff\": [\n        \"NN\"\n    ], \n    \"Mailings\": [\n        \"NNS\"\n    ], \n    \"insult\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Stag\": [\n        \"NNP\"\n    ], \n    \"Lighter\": [\n        \"JJR\"\n    ], \n    \"Stan\": [\n        \"NNP\"\n    ], \n    \"beeswax\": [\n        \"NN\"\n    ], \n    \"blueberry\": [\n        \"NN\"\n    ], \n    \"flng\": [\n        \"VB\"\n    ], \n    \"tolerated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"bilge\": [\n        \"NN\"\n    ], \n    \"hereditary\": [\n        \"JJ\"\n    ], \n    \"slightly-smoking\": [\n        \"JJ\"\n    ], \n    \"faker\": [\n        \"NN\"\n    ], \n    \"tolerates\": [\n        \"VBZ\"\n    ], \n    \"fakes\": [\n        \"NNS\"\n    ], \n    \"striving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Torquato\": [\n        \"NNP\"\n    ], \n    \"overrun\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"spill\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"ORGANIZED\": [\n        \"VBN\"\n    ], \n    \"refusing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"residential-real-estate\": [\n        \"JJ\"\n    ], \n    \"blooming\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"crackers\": [\n        \"NNS\"\n    ], \n    \"Mussolini\": [\n        \"NNP\"\n    ], \n    \"Aiden\": [\n        \"NNP\"\n    ], \n    \"Standing\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"radiance\": [\n        \"NN\"\n    ], \n    \"zoot\": [\n        \"NN\"\n    ], \n    \"FARM\": [\n        \"NN\"\n    ], \n    \"Blechman\": [\n        \"NNP\"\n    ], \n    \"mingling\": [\n        \"VBG\"\n    ], \n    \"Bays\": [\n        \"NNP\"\n    ], \n    \"fanciful\": [\n        \"JJ\"\n    ], \n    \"overheard\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Lengthening\": [\n        \"VBG\"\n    ], \n    \"betide\": [\n        \"VB\"\n    ], \n    \"present-day\": [\n        \"JJ\"\n    ], \n    \"cites\": [\n        \"VBZ\"\n    ], \n    \"as-it-were\": [\n        \"RB\"\n    ], \n    \"Wittenberg\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"gaped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Allwaste\": [\n        \"NNP\"\n    ], \n    \"song\": [\n        \"NN\"\n    ], \n    \"Peake\": [\n        \"NNP\"\n    ], \n    \"toehold\": [\n        \"NN\"\n    ], \n    \"eye-blink\": [\n        \"NN\"\n    ], \n    \"p.m.-conclusion\": [\n        \"NN\"\n    ], \n    \"Renee\": [\n        \"NNP\"\n    ], \n    \"Kashpirovsky\": [\n        \"NNP\"\n    ], \n    \"subpenaed\": [\n        \"VBN\"\n    ], \n    \"abscess\": [\n        \"NN\"\n    ], \n    \"Television-Electronics\": [\n        \"NNP\"\n    ], \n    \"Covia\": [\n        \"NNP\"\n    ], \n    \"Mustain\": [\n        \"NNP\"\n    ], \n    \"lab\": [\n        \"NN\"\n    ], \n    \"Ocean\": [\n        \"NNP\"\n    ], \n    \"lax\": [\n        \"JJ\"\n    ], \n    \"lay\": [\n        \"VBD\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"outbursts\": [\n        \"NNS\"\n    ], \n    \"Weiner\": [\n        \"NNP\"\n    ], \n    \"law\": [\n        \"NN\"\n    ], \n    \"clean-bank\": [\n        \"JJ\"\n    ], \n    \"revved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"egged\": [\n        \"VBN\"\n    ], \n    \"coursing\": [\n        \"VBG\"\n    ], \n    \"stimulate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"counseled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"open-work\": [\n        \"JJ\"\n    ], \n    \"boatswain\": [\n        \"NN\"\n    ], \n    \"baying\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"triggering\": [\n        \"VBG\"\n    ], \n    \"Exteriors\": [\n        \"NNS\"\n    ], \n    \"Regional\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"freights\": [\n        \"NNS\"\n    ], \n    \"satisfied\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|JJ\", \n        \"JJ\"\n    ], \n    \"wrathful\": [\n        \"JJ\"\n    ], \n    \"deducted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pension-industry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"satisfies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"dapper\": [\n        \"JJ\"\n    ], \n    \"adolescence\": [\n        \"NN\"\n    ], \n    \"Broke\": [\n        \"NNP\"\n    ], \n    \"money-broking\": [\n        \"JJ\"\n    ], \n    \"sheaf\": [\n        \"NN\"\n    ], \n    \"BRUT\": [\n        \"NNP\"\n    ], \n    \"clearances\": [\n        \"NNS\"\n    ], \n    \"Evan\": [\n        \"NNP\"\n    ], \n    \"insolently\": [\n        \"RB\"\n    ], \n    \"strafe\": [\n        \"FW\", \n        \"VB\"\n    ], \n    \"Asea\": [\n        \"NNP\"\n    ], \n    \"unacknowledged\": [\n        \"JJ\"\n    ], \n    \"shear\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"eventually\": [\n        \"RB\"\n    ], \n    \"Hackensack\": [\n        \"NNP\"\n    ], \n    \"Calmat\": [\n        \"NNP\"\n    ], \n    \"satellite-launch\": [\n        \"JJ\"\n    ], \n    \"Midge\": [\n        \"NNP\"\n    ], \n    \"liras\": [\n        \"NNS\"\n    ], \n    \"Ignoring\": [\n        \"VBG\"\n    ], \n    \"break\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"repulsive\": [\n        \"JJ\"\n    ], \n    \"pastdue\": [\n        \"JJ\"\n    ], \n    \"Arrow\": [\n        \"NNP\"\n    ], \n    \"President\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"divesting\": [\n        \"VBG\"\n    ], \n    \"pegs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Control\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Calpers\": [\n        \"NNP\"\n    ], \n    \"Feldemuehle\": [\n        \"NNP\"\n    ], \n    \"alternately\": [\n        \"RB\"\n    ], \n    \"non-interference\": [\n        \"NN\"\n    ], \n    \"class-based\": [\n        \"JJ\"\n    ], \n    \"class-warrior\": [\n        \"NN\"\n    ], \n    \"end-to-end\": [\n        \"JJ\"\n    ], \n    \"entitled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Agriculture\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"overpopulated\": [\n        \"VBN\"\n    ], \n    \"Sparky\": [\n        \"NNP\"\n    ], \n    \"observance\": [\n        \"NN\"\n    ], \n    \"Candlelight\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sparks\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Mythological\": [\n        \"JJ\"\n    ], \n    \"GASB\": [\n        \"NNP\"\n    ], \n    \"Aside\": [\n        \"RB\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"Churchillian\": [\n        \"JJ\"\n    ], \n    \"Bonnie\": [\n        \"NNP\"\n    ], \n    \"War-related\": [\n        \"JJ\"\n    ], \n    \"Manufacture\": [\n        \"NN\"\n    ], \n    \"Cahn\": [\n        \"NNP\"\n    ], \n    \"all-Spanish\": [\n        \"JJ\"\n    ], \n    \"spicing\": [\n        \"VBG\"\n    ], \n    \"network\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Juice\": [\n        \"NN\"\n    ], \n    \"gridded\": [\n        \"JJ\"\n    ], \n    \"beefing\": [\n        \"VBG\"\n    ], \n    \"diesel\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"fellows\": [\n        \"NNS\"\n    ], \n    \"buoyed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"unkempt\": [\n        \"JJ\"\n    ], \n    \"Oeschger\": [\n        \"NNP\"\n    ], \n    \"hyper-competitive\": [\n        \"JJ\"\n    ], \n    \"Jeanne\": [\n        \"NNP\"\n    ], \n    \"seventh-most-admired\": [\n        \"JJ\"\n    ], \n    \"Committees\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Originally\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Transcat\": [\n        \"NNP\"\n    ], \n    \"coldhearted\": [\n        \"JJ\"\n    ], \n    \"commercially\": [\n        \"RB\"\n    ], \n    \"smacking\": [\n        \"VBG\"\n    ], \n    \"fervid\": [\n        \"NN\"\n    ], \n    \"Medi-Mail\": [\n        \"NNP\"\n    ], \n    \"N.Y.\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"amazement\": [\n        \"NN\"\n    ], \n    \"delver\": [\n        \"NN\"\n    ], \n    \"delves\": [\n        \"VBZ\"\n    ], \n    \"writhing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"National\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\"\n    ], \n    \"dispersal\": [\n        \"NN\"\n    ], \n    \"Titanium\": [\n        \"NNP\"\n    ], \n    \"licked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"processed-meats\": [\n        \"NNS\"\n    ], \n    \"delved\": [\n        \"VBN\"\n    ], \n    \"guesswork\": [\n        \"NN\"\n    ], \n    \"alcohol-producing\": [\n        \"JJ\"\n    ], \n    \"Depression\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"NORDSTROM\": [\n        \"NNP\"\n    ], \n    \"world-currency\": [\n        \"NN\"\n    ], \n    \"cockatoo\": [\n        \"NN\"\n    ], \n    \"Cherokee\": [\n        \"NNP\"\n    ], \n    \"Y-gyro\": [\n        \"NN\"\n    ], \n    \"SECTION\": [\n        \"NN\"\n    ], \n    \"Butter\": [\n        \"NN\"\n    ], \n    \"radionic\": [\n        \"JJ\"\n    ], \n    \"wallflower\": [\n        \"NN\"\n    ], \n    \"Kushnick\": [\n        \"NNP\"\n    ], \n    \"Guatemalan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"pan-European\": [\n        \"JJ\"\n    ], \n    \"tangle\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Secretaries\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Whirlpool\": [\n        \"NNP\"\n    ], \n    \"irredeemable\": [\n        \"JJ\"\n    ], \n    \"street...\": [\n        \":\"\n    ], \n    \"rated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"president-marketing\": [\n        \"JJ\"\n    ], \n    \"reimbursed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"armata\": [\n        \"NNP\"\n    ], \n    \"opportunity\": [\n        \"NN\"\n    ], \n    \"Sorrow\": [\n        \"NNP\"\n    ], \n    \"coccidioidomycosis\": [\n        \"NN\"\n    ], \n    \"vibrate\": [\n        \"VB\"\n    ], \n    \"interrelationships\": [\n        \"NNS\"\n    ], \n    \"immodest\": [\n        \"JJ\"\n    ], \n    \"rates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Federal-Mogul\": [\n        \"NNP\"\n    ], \n    \"purposefully\": [\n        \"RB\"\n    ], \n    \"aberrantly\": [\n        \"RB\"\n    ], \n    \"Moulinex\": [\n        \"NNP\"\n    ], \n    \"indigation\": [\n        \"NN\"\n    ], \n    \"insurance-holding\": [\n        \"JJ\"\n    ], \n    \"oil-consuming\": [\n        \"JJ\"\n    ], \n    \"Boesky\": [\n        \"NNP\"\n    ], \n    \"rebuff\": [\n        \"NN\"\n    ], \n    \"self-governing\": [\n        \"JJ\"\n    ], \n    \"Da-da-da-dum\": [\n        \"JJ\"\n    ], \n    \"tabloid-style\": [\n        \"JJ\"\n    ], \n    \"target\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"unexplainable\": [\n        \"JJ\"\n    ], \n    \"Dornan\": [\n        \"NNP\"\n    ], \n    \"turbo-charged\": [\n        \"JJ\"\n    ], \n    \"Allah\": [\n        \"NNP\"\n    ], \n    \"Allan\": [\n        \"NNP\"\n    ], \n    \"tackles\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"iota\": [\n        \"NN\"\n    ], \n    \"twin-rotor\": [\n        \"JJ\"\n    ], \n    \"unmistakably\": [\n        \"RB\"\n    ], \n    \"iron\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Browder\": [\n        \"NNP\"\n    ], \n    \"tackled\": [\n        \"VBN\"\n    ], \n    \"Allay\": [\n        \"NN\"\n    ], \n    \"contrasted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"tipping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Setter\": [\n        \"NN\"\n    ], \n    \"Ghiberti\": [\n        \"NNP\"\n    ], \n    \"malady\": [\n        \"NN\"\n    ], \n    \"self-confident\": [\n        \"JJ\"\n    ], \n    \"EXBT\": [\n        \"NNP\"\n    ], \n    \"horribles\": [\n        \"NNS\"\n    ], \n    \"longitudes\": [\n        \"NNS\"\n    ], \n    \"paving-equipment\": [\n        \"NN\"\n    ], \n    \"Sorrentino\": [\n        \"NNP\"\n    ], \n    \"Reaganomics\": [\n        \"NNP\"\n    ], \n    \"numenous\": [\n        \"JJ\"\n    ], \n    \"touch-screen\": [\n        \"JJ\"\n    ], \n    \"overlays\": [\n        \"VBZ\"\n    ], \n    \"Compania\": [\n        \"NNP\"\n    ], \n    \"Sorrentine\": [\n        \"NNP\"\n    ], \n    \"Bjerre\": [\n        \"NNP\"\n    ], \n    \"forced\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"self-served\": [\n        \"VBD\"\n    ], \n    \"bedspread\": [\n        \"NN\"\n    ], \n    \"pleural\": [\n        \"JJ\"\n    ], \n    \"rate-of-return\": [\n        \"JJ\"\n    ], \n    \"Declaring\": [\n        \"VBG\"\n    ], \n    \"self-defense\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"indexer\": [\n        \"NN\"\n    ], \n    \"indexes\": [\n        \"NNS\"\n    ], \n    \"elation\": [\n        \"NN\"\n    ], \n    \"facet-plane\": [\n        \"NN\"\n    ], \n    \"confabulated\": [\n        \"VBN\"\n    ], \n    \"F.H.\": [\n        \"NNP\"\n    ], \n    \"forces\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"indexed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"swims\": [\n        \"VBZ\"\n    ], \n    \"isotonic\": [\n        \"JJ\"\n    ], \n    \"KEEPING\": [\n        \"VBG\"\n    ], \n    \"extending\": [\n        \"VBG\"\n    ], \n    \"anti-Rh\": [\n        \"NNP\"\n    ], \n    \"Cobra\": [\n        \"NNP\"\n    ], \n    \"Colavito\": [\n        \"NNP\"\n    ], \n    \"gray-market\": [\n        \"JJ\"\n    ], \n    \"inferred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"revenue-producing\": [\n        \"JJ\"\n    ], \n    \"Lewin\": [\n        \"NNP\"\n    ], \n    \"Battered\": [\n        \"VBN\"\n    ], \n    \"Thayer\": [\n        \"NNP\"\n    ], \n    \"dioceses\": [\n        \"NNS\"\n    ], \n    \"fitted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Bhabani\": [\n        \"NNP\"\n    ], \n    \"precarious\": [\n        \"JJ\"\n    ], \n    \"debt-portfolio\": [\n        \"NN\"\n    ], \n    \"HERS\": [\n        \"NNP\"\n    ], \n    \"respectfully\": [\n        \"RB\"\n    ], \n    \"protocol\": [\n        \"NN\"\n    ], \n    \"Armistice\": [\n        \"NNP\"\n    ], \n    \"toast\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Prairie\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"crewel\": [\n        \"NN\"\n    ], \n    \"Soupy\": [\n        \"JJ\"\n    ], \n    \"versed\": [\n        \"VBN\"\n    ], \n    \"booing\": [\n        \"VBG\"\n    ], \n    \"gas-glass\": [\n        \"NN\"\n    ], \n    \"blighted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"squirmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"protein-making\": [\n        \"JJ\"\n    ], \n    \"geologist\": [\n        \"NN\"\n    ], \n    \"screening\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"columbines\": [\n        \"NNS\"\n    ], \n    \"herded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"explorations\": [\n        \"NNS\"\n    ], \n    \"Pilipino\": [\n        \"NN\"\n    ], \n    \"Rolodex\": [\n        \"NNP\"\n    ], \n    \"OMB\": [\n        \"NNP\"\n    ], \n    \"ardor\": [\n        \"NN\"\n    ], \n    \"Wakefield\": [\n        \"NNP\"\n    ], \n    \"CHIEF\": [\n        \"JJ\"\n    ], \n    \"Muzyka\": [\n        \"NNP\"\n    ], \n    \"minarets\": [\n        \"NNS\"\n    ], \n    \"conservator\": [\n        \"NN\"\n    ], \n    \"congealed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"happiest\": [\n        \"JJS\"\n    ], \n    \"Crime\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"industrial-production\": [\n        \"JJ\"\n    ], \n    \"rebirth\": [\n        \"NN\"\n    ], \n    \"OIL\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"OME\": [\n        \"NNP\"\n    ], \n    \"sealants\": [\n        \"NNS\"\n    ], \n    \"half-chapter\": [\n        \"NN\"\n    ], \n    \"quietness\": [\n        \"NN\"\n    ], \n    \"implication\": [\n        \"NN\"\n    ], \n    \"explanations\": [\n        \"NNS\"\n    ], \n    \"de-Americanization\": [\n        \"NN\"\n    ], \n    \"non-Catholics\": [\n        \"NNPS\"\n    ], \n    \"liberalizations\": [\n        \"NNS\"\n    ], \n    \"inns\": [\n        \"NNS\"\n    ], \n    \"human\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"rocket-propelled\": [\n        \"JJ\"\n    ], \n    \"work-success\": [\n        \"NN\"\n    ], \n    \"reproductions\": [\n        \"NNS\"\n    ], \n    \"once-closed\": [\n        \"JJ\"\n    ], \n    \"Incumbent\": [\n        \"NNP\"\n    ], \n    \"terrine\": [\n        \"NN\"\n    ], \n    \"Assiniboine\": [\n        \"NNP\"\n    ], \n    \"invoicing\": [\n        \"NN\"\n    ], \n    \"obsoleted\": [\n        \"VBN\"\n    ], \n    \"MEXICAN\": [\n        \"JJ\"\n    ], \n    \"Auto\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"INTER-TEL\": [\n        \"NNP\"\n    ], \n    \"caved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Sardi\": [\n        \"NNP\"\n    ], \n    \"plummeting\": [\n        \"VBG\"\n    ], \n    \"bien\": [\n        \"FW\"\n    ], \n    \"Digi\": [\n        \"NNP\"\n    ], \n    \"a-reflects\": [\n        \"VBZ\"\n    ], \n    \"Takuro\": [\n        \"NNP\"\n    ], \n    \"caves\": [\n        \"NNS\"\n    ], \n    \"Amylin\": [\n        \"NNP\"\n    ], \n    \"Leamington\": [\n        \"NNP\"\n    ], \n    \"Inglewood\": [\n        \"NNP\"\n    ], \n    \"Simonelli\": [\n        \"NNP\"\n    ], \n    \"husky\": [\n        \"JJ\"\n    ], \n    \"Dousman\": [\n        \"NNP\"\n    ], \n    \"Shiu-Lok\": [\n        \"NNP\"\n    ], \n    \"clues\": [\n        \"NNS\"\n    ], \n    \"intelligent\": [\n        \"JJ\"\n    ], \n    \"matrimony\": [\n        \"NN\"\n    ], \n    \"scrutin\": [\n        \"FW\"\n    ], \n    \"Speedway\": [\n        \"NNP\"\n    ], \n    \"Waking\": [\n        \"VBG\"\n    ], \n    \"economic-crime\": [\n        \"JJ\"\n    ], \n    \"forty-year\": [\n        \"JJ\"\n    ], \n    \"searchings\": [\n        \"NNS\"\n    ], \n    \"Milkens\": [\n        \"NNPS\"\n    ], \n    \"Harrell\": [\n        \"NNP\"\n    ], \n    \"highwayman\": [\n        \"NN\"\n    ], \n    \"private-management\": [\n        \"NN\"\n    ], \n    \"tough\": [\n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"best-tempered\": [\n        \"JJ\"\n    ], \n    \"bestows\": [\n        \"VBZ\"\n    ], \n    \"dimwitted\": [\n        \"JJ\"\n    ], \n    \"turbine-engine\": [\n        \"JJ\"\n    ], \n    \"Wuon\": [\n        \"NNP\"\n    ], \n    \"Galantuomo\": [\n        \"NNP\"\n    ], \n    \"Shout\": [\n        \"VB\"\n    ], \n    \"Bulba\": [\n        \"NNP\"\n    ], \n    \"Shoup\": [\n        \"NNP\"\n    ], \n    \"headdress\": [\n        \"NN\"\n    ], \n    \"Alfons\": [\n        \"NNP\"\n    ], \n    \"wakefulness\": [\n        \"NN\"\n    ], \n    \"Hernandez\": [\n        \"NNP\"\n    ], \n    \"knowns\": [\n        \"NNS\"\n    ], \n    \"Herrman\": [\n        \"NNP\"\n    ], \n    \"untarnished\": [\n        \"JJ\"\n    ], \n    \"Womack\": [\n        \"NNP\"\n    ], \n    \"refurbished\": [\n        \"VBN\"\n    ], \n    \"Issuance\": [\n        \"NN\"\n    ], \n    \"intriguingly\": [\n        \"RB\"\n    ], \n    \"index-arbitrage-related\": [\n        \"JJ\"\n    ], \n    \"thrice\": [\n        \"RB\"\n    ], \n    \"repelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"relaxing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"millionth\": [\n        \"JJ\"\n    ], \n    \"hoist\": [\n        \"VB\"\n    ], \n    \"spelled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"VanSant\": [\n        \"NNP\"\n    ], \n    \"two-stroke\": [\n        \"JJ\"\n    ], \n    \"McIver\": [\n        \"NNP\"\n    ], \n    \"inhibit\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"stomped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"thenceforth\": [\n        \"CC\"\n    ], \n    \"Trend\": [\n        \"NNP\"\n    ], \n    \"Groat\": [\n        \"NNP\"\n    ], \n    \"super-rich\": [\n        \"JJ\"\n    ], \n    \"pungent\": [\n        \"JJ\"\n    ], \n    \"B.V\": [\n        \"NNP\"\n    ], \n    \"Billions\": [\n        \"NNS\"\n    ], \n    \"entertains\": [\n        \"VBZ\"\n    ], \n    \"mega-deal\": [\n        \"NN\"\n    ], \n    \"Guggenheim\": [\n        \"NNP\"\n    ], \n    \"Hopedale\": [\n        \"NNP\"\n    ], \n    \"weakens\": [\n        \"VBZ\"\n    ], \n    \"pinochle\": [\n        \"NN\"\n    ], \n    \"tax-deductions\": [\n        \"NNS\"\n    ], \n    \"crowning\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"sticker\": [\n        \"NN\"\n    ], \n    \"straits\": [\n        \"NNS\"\n    ], \n    \"exile\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"import-export\": [\n        \"JJ\"\n    ], \n    \"Underberg\": [\n        \"NNP\"\n    ], \n    \"post-quake\": [\n        \"JJ\"\n    ], \n    \"outclassed\": [\n        \"VBN\"\n    ], \n    \"Christmas-tree\": [\n        \"JJ\"\n    ], \n    \"non-Castilians\": [\n        \"NNPS\"\n    ], \n    \"grapple\": [\n        \"VB\"\n    ], \n    \"accumulating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"course-correction\": [\n        \"NN\"\n    ], \n    \"unlaundered\": [\n        \"VBN\"\n    ], \n    \"convictions\": [\n        \"NNS\"\n    ], \n    \"Perskys\": [\n        \"NNPS\"\n    ], \n    \"necessities\": [\n        \"NNS\"\n    ], \n    \"nil\": [\n        \"JJ\"\n    ], \n    \"inheritor\": [\n        \"NN\"\n    ], \n    \"exuded\": [\n        \"VBD\"\n    ], \n    \"swell\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Svenskarna\": [\n        \"FW\"\n    ], \n    \"heft\": [\n        \"NN\"\n    ], \n    \"devalued\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hyperbolically\": [\n        \"RB\"\n    ], \n    \"outmaneuvered\": [\n        \"VBN\"\n    ], \n    \"catheter\": [\n        \"NN\"\n    ], \n    \"curd\": [\n        \"NN\"\n    ], \n    \"Roberts\": [\n        \"NNP\"\n    ], \n    \"wispy\": [\n        \"JJ\"\n    ], \n    \"Emotionally\": [\n        \"RB\"\n    ], \n    \"hopping\": [\n        \"VBG\"\n    ], \n    \"figural\": [\n        \"JJ\"\n    ], \n    \"Skulls\": [\n        \"NNS\"\n    ], \n    \"huddling\": [\n        \"VBG\"\n    ], \n    \"ragged\": [\n        \"JJ\"\n    ], \n    \"goals\": [\n        \"NNS\"\n    ], \n    \"studying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"securities-firm\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Emmons\": [\n        \"NNP\"\n    ], \n    \"Randolph\": [\n        \"NNP\"\n    ], \n    \"Memorial\": [\n        \"NNP\"\n    ], \n    \"mingle\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"quoted\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"shell-shocked\": [\n        \"JJ\"\n    ], \n    \"Passage\": [\n        \"NN\"\n    ], \n    \"quotes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"victim\": [\n        \"NN\"\n    ], \n    \"SLIPPAGE\": [\n        \"NN\"\n    ], \n    \"late-in-the-day\": [\n        \"JJ\"\n    ], \n    \"tightness\": [\n        \"NN\"\n    ], \n    \"curb\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"one-minute\": [\n        \"JJ\"\n    ], \n    \"clamped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Rumanians\": [\n        \"NNPS\"\n    ], \n    \"Certificate\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Reifenrath\": [\n        \"NNP\"\n    ], \n    \"Vivian\": [\n        \"NNP\"\n    ], \n    \"party-giving\": [\n        \"NN\"\n    ], \n    \"Cluggish\": [\n        \"NNP\"\n    ], \n    \"evidences\": [\n        \"NNS\"\n    ], \n    \"Pendleton\": [\n        \"NNP\"\n    ], \n    \"pre-dawn\": [\n        \"JJ\"\n    ], \n    \"chides\": [\n        \"VBZ\"\n    ], \n    \"yesteday\": [\n        \"NN\"\n    ], \n    \"LaMore\": [\n        \"NNP\"\n    ], \n    \"demolished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Bougie\": [\n        \"NNP\"\n    ], \n    \"Alice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hate-mongering\": [\n        \"NN\"\n    ], \n    \"schematically\": [\n        \"RB\"\n    ], \n    \"WATKINS-JOHNSON\": [\n        \"NNP\"\n    ], \n    \"high-pressure\": [\n        \"JJ\"\n    ], \n    \"realm\": [\n        \"NN\"\n    ], \n    \"reusable\": [\n        \"JJ\"\n    ], \n    \"Scotts\": [\n        \"NNP\"\n    ], \n    \"Scotty\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"competence\": [\n        \"NN\"\n    ], \n    \"McKee\": [\n        \"NNP\"\n    ], \n    \"consumer-warning\": [\n        \"NN\"\n    ], \n    \"slouches\": [\n        \"VBZ\"\n    ], \n    \"Scotto\": [\n        \"NNP\"\n    ], \n    \"soar\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Flumenbaum\": [\n        \"NNP\"\n    ], \n    \"Heretofore\": [\n        \"RB\"\n    ], \n    \"Brandenburg\": [\n        \"NNP\"\n    ], \n    \"Tiny\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Ting\": [\n        \"NNP\"\n    ], \n    \"rile\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"fulminating\": [\n        \"VBG\"\n    ], \n    \"Tina\": [\n        \"NNP\"\n    ], \n    \"pl.\": [\n        \"NNP\"\n    ], \n    \"Cartwright\": [\n        \"NNP\"\n    ], \n    \"unrivaled\": [\n        \"JJ\"\n    ], \n    \"cede\": [\n        \"VB\"\n    ], \n    \"humor\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sinking-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"reflexively\": [\n        \"RB\"\n    ], \n    \"unavoidable\": [\n        \"JJ\"\n    ], \n    \"Guilford\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"leered\": [\n        \"VBD\"\n    ], \n    \"Gifts\": [\n        \"NNS\"\n    ], \n    \"Restructuring\": [\n        \"NN\"\n    ], \n    \"disillusioned\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"honoured\": [\n        \"VBN\"\n    ], \n    \"enticingly\": [\n        \"RB\"\n    ], \n    \"unavoidably\": [\n        \"RB\"\n    ], \n    \"singed\": [\n        \"VBD\"\n    ], \n    \"School\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Obstacles\": [\n        \"NNS\"\n    ], \n    \"Tandler\": [\n        \"NNP\"\n    ], \n    \"marketing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\", \n        \"VBG|NN\"\n    ], \n    \"conformation\": [\n        \"NN\"\n    ], \n    \"ply\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Geodetic\": [\n        \"NNP\"\n    ], \n    \"Seeds\": [\n        \"NNS\"\n    ], \n    \"Evegeni\": [\n        \"NNP\"\n    ], \n    \"Holders\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"descendent\": [\n        \"NN\"\n    ], \n    \"properties\": [\n        \"NNS\"\n    ], \n    \"Ostrovsky\": [\n        \"NNP\"\n    ], \n    \"trophy\": [\n        \"NN\"\n    ], \n    \"aerosols\": [\n        \"NNS\"\n    ], \n    \"W.S.\": [\n        \"NNP\"\n    ], \n    \"Griffith-Joyner\": [\n        \"NNP\"\n    ], \n    \"newspapers\": [\n        \"NNS\"\n    ], \n    \"Packs\": [\n        \"NNPS\"\n    ], \n    \"Ladislav\": [\n        \"NNP\"\n    ], \n    \"Conrades\": [\n        \"NNP\"\n    ], \n    \"Prince\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"G.D.\": [\n        \"NNP\"\n    ], \n    \"tropho\": [\n        \"JJ\"\n    ], \n    \"Eighteenth-century\": [\n        \"JJ\"\n    ], \n    \"Essen\": [\n        \"NNP\"\n    ], \n    \"treble\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"considerations\": [\n        \"NNS\"\n    ], \n    \"Donaldsonville\": [\n        \"NNP\"\n    ], \n    \"indecency\": [\n        \"NN\"\n    ], \n    \"Qintex-MGM\\\\/UA\": [\n        \"NNP\"\n    ], \n    \"weaponsmaking\": [\n        \"NN\"\n    ], \n    \"car-owners\": [\n        \"NNS\"\n    ], \n    \"prisoners\": [\n        \"NNS\"\n    ], \n    \"overbilling\": [\n        \"VBG\"\n    ], \n    \"FORGN\": [\n        \"NNP\"\n    ], \n    \"Bros.\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Sault\": [\n        \"NNP\"\n    ], \n    \"dry-ice\": [\n        \"JJ\"\n    ], \n    \"Rosow\": [\n        \"NNP\"\n    ], \n    \"Vol.\": [\n        \"NNP\"\n    ], \n    \"character-education\": [\n        \"NN\"\n    ], \n    \"derision\": [\n        \"NN\"\n    ], \n    \"quirks\": [\n        \"NNS\"\n    ], \n    \"Barsky\": [\n        \"NNP\"\n    ], \n    \"accords\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Non-performing\": [\n        \"JJ\"\n    ], \n    \"Finkbiner\": [\n        \"NNP\"\n    ], \n    \"lowest\": [\n        \"JJS\", \n        \"JJ\"\n    ], \n    \"emulated\": [\n        \"VBN\"\n    ], \n    \"COMMITTEE\": [\n        \"NNP\"\n    ], \n    \"backrooms\": [\n        \"NNS\"\n    ], \n    \"snowy\": [\n        \"JJ\"\n    ], \n    \"Stubblefields\": [\n        \"NNPS\"\n    ], \n    \"navigational\": [\n        \"JJ\"\n    ], \n    \"snows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"peninsula\": [\n        \"NN\"\n    ], \n    \"McClave\": [\n        \"NNP\"\n    ], \n    \"NEWHALL\": [\n        \"NNP\"\n    ], \n    \"astonished\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"pre-set\": [\n        \"JJ\"\n    ], \n    \"overrules\": [\n        \"VBZ\"\n    ], \n    \"Torch\": [\n        \"NNP\"\n    ], \n    \"detribalize\": [\n        \"VB\"\n    ], \n    \"braved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"overruled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Greenspan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"perpetuity\": [\n        \"NN\"\n    ], \n    \"economic-restructuring\": [\n        \"JJ\"\n    ], \n    \"emotional\": [\n        \"JJ\"\n    ], \n    \"Odd\": [\n        \"NNP\"\n    ], \n    \"Volz\": [\n        \"NNP\"\n    ], \n    \"ocean-pollution\": [\n        \"NN\"\n    ], \n    \"female-headed\": [\n        \"JJ\"\n    ], \n    \"Olds\": [\n        \"NNP\"\n    ], \n    \"TWA\": [\n        \"NNP\"\n    ], \n    \"Californication\": [\n        \"NN\"\n    ], \n    \"conserves\": [\n        \"VBZ\"\n    ], \n    \"scandalous\": [\n        \"JJ\"\n    ], \n    \"abstract\": [\n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"opportunistic\": [\n        \"JJ\"\n    ], \n    \"born-again\": [\n        \"JJ\"\n    ], \n    \"howling\": [\n        \"VBG\"\n    ], \n    \"conserved\": [\n        \"VBN\"\n    ], \n    \"apoplectic\": [\n        \"JJ\"\n    ], \n    \"medical-instrument\": [\n        \"JJ\"\n    ], \n    \"TWX\": [\n        \"NNP\"\n    ], \n    \"wintry\": [\n        \"JJ\"\n    ], \n    \"poark\": [\n        \"NN\"\n    ], \n    \"bioherbicide\": [\n        \"NN\"\n    ], \n    \"well-advised\": [\n        \"JJ\"\n    ], \n    \"newsstands\": [\n        \"NNS\"\n    ], \n    \"Piedmont\": [\n        \"NNP\"\n    ], \n    \"castorbean\": [\n        \"NN\"\n    ], \n    \"stake\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"parklike\": [\n        \"JJ\"\n    ], \n    \"shrine\": [\n        \"NN\"\n    ], \n    \"bill-introduced\": [\n        \"NN\"\n    ], \n    \"holding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"animal-protection\": [\n        \"NN\"\n    ], \n    \"shrink\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"heyday\": [\n        \"NN\"\n    ], \n    \"scored\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\", \n        \"JJ|VBN\"\n    ], \n    \"rent-free\": [\n        \"JJ\"\n    ], \n    \"PROFESSOR\": [\n        \"NN\"\n    ], \n    \"pressman\": [\n        \"NN\"\n    ], \n    \"illogic\": [\n        \"NN\"\n    ], \n    \"spectrally\": [\n        \"RB\"\n    ], \n    \"non-operating\": [\n        \"JJ\"\n    ], \n    \"scorer\": [\n        \"NN\"\n    ], \n    \"scores\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"scedule\": [\n        \"NN\"\n    ], \n    \"coup-proof\": [\n        \"JJ\"\n    ], \n    \"inkstand\": [\n        \"NN\"\n    ], \n    \"Hirohito\": [\n        \"NNP\"\n    ], \n    \"Branchville\": [\n        \"NNP\"\n    ], \n    \"maddeningly\": [\n        \"RB\"\n    ], \n    \"bestowed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"telescopic\": [\n        \"JJ\"\n    ], \n    \"Printout\": [\n        \"NNP\"\n    ], \n    \"Oopsie\": [\n        \"NNP\"\n    ], \n    \"McMeel\": [\n        \"NNP\"\n    ], \n    \"Andrena\": [\n        \"NNP\"\n    ], \n    \"gyrate\": [\n        \"VB\"\n    ], \n    \"functionalism\": [\n        \"NN\"\n    ], \n    \"Cheerios\": [\n        \"NNPS\"\n    ], \n    \"Weisel\": [\n        \"NNP\"\n    ], \n    \"Arbitration\": [\n        \"NN\"\n    ], \n    \"Ore.\": [\n        \"NNP\"\n    ], \n    \"MD-11\": [\n        \"NNP\"\n    ], \n    \"wrested\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nakagawa\": [\n        \"NNP\"\n    ], \n    \"patina\": [\n        \"NN\"\n    ], \n    \"Cosmair\": [\n        \"NNP\"\n    ], \n    \"%...\": [\n        \":\"\n    ], \n    \"switches\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"good-till-canceled\": [\n        \"JJ\"\n    ], \n    \"recluse\": [\n        \"NN\"\n    ], \n    \"superpower\": [\n        \"NN\"\n    ], \n    \"devoted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"devotee\": [\n        \"NN\"\n    ], \n    \"hovers\": [\n        \"VBZ\"\n    ], \n    \"disapproves\": [\n        \"VBZ\"\n    ], \n    \"Eromonga\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"released\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"SANTA\": [\n        \"NNP\"\n    ], \n    \"devotes\": [\n        \"VBZ\"\n    ], \n    \"disapproved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"memorialization\": [\n        \"NN\"\n    ], \n    \"donned\": [\n        \"VBD\"\n    ], \n    \"Orel\": [\n        \"NNP\"\n    ], \n    \"Brouwer\": [\n        \"NNP\"\n    ], \n    \"tradition-minded\": [\n        \"JJ\"\n    ], \n    \"Policeman\": [\n        \"NNP\"\n    ], \n    \"NEATNESS\": [\n        \"NN\"\n    ], \n    \"bilinear\": [\n        \"JJ\"\n    ], \n    \"seemingly\": [\n        \"RB\"\n    ], \n    \"Joker\": [\n        \"NNP\"\n    ], \n    \"Jokes\": [\n        \"NNS\"\n    ], \n    \"unblemished\": [\n        \"JJ\"\n    ], \n    \"Proler\": [\n        \"NNP\"\n    ], \n    \"Teck\": [\n        \"NNP\"\n    ], \n    \"unbundled\": [\n        \"VBN\"\n    ], \n    \"T-45\": [\n        \"NNP\"\n    ], \n    \"movie-distribution\": [\n        \"NN\"\n    ], \n    \"Erlenborn\": [\n        \"NNP\"\n    ], \n    \"capitalist-democratic\": [\n        \"JJ\"\n    ], \n    \"steeply\": [\n        \"RB\"\n    ], \n    \"smooching\": [\n        \"VBG\"\n    ], \n    \"biker\": [\n        \"NN\"\n    ], \n    \"Contracting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Armitage\": [\n        \"NNP\"\n    ], \n    \"guitars\": [\n        \"NNS\"\n    ], \n    \"Innovative\": [\n        \"JJ\"\n    ], \n    \"hypophysectomised\": [\n        \"VBN\"\n    ], \n    \"sidewalk\": [\n        \"NN\"\n    ], \n    \"disqualify\": [\n        \"VB\"\n    ], \n    \"Hartley\": [\n        \"NNP\"\n    ], \n    \"diarrhoea\": [\n        \"NN\"\n    ], \n    \"upper\": [\n        \"JJ\", \n        \"JJR\", \n        \"RB\"\n    ], \n    \"tempts\": [\n        \"VBZ\"\n    ], \n    \"temples\": [\n        \"NNS\"\n    ], \n    \"Wilton\": [\n        \"NNP\"\n    ], \n    \"Okura\": [\n        \"NNP\"\n    ], \n    \"discover\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"federal-local\": [\n        \"JJ\"\n    ], \n    \"upped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Orange\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"ASEA\": [\n        \"NNP\"\n    ], \n    \"penetrated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Nickles\": [\n        \"NNP\"\n    ], \n    \"sleepwalker\": [\n        \"NN\"\n    ], \n    \"blotches\": [\n        \"NNS\"\n    ], \n    \"rollup\": [\n        \"NN\"\n    ], \n    \"cryptographers\": [\n        \"NNS\"\n    ], \n    \"Charming\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Delight\": [\n        \"NNP\"\n    ], \n    \"nonequivalence\": [\n        \"NN\"\n    ], \n    \"saluting\": [\n        \"VBG\"\n    ], \n    \"mincemeat\": [\n        \"NN\"\n    ], \n    \"cocao\": [\n        \"NN\"\n    ], \n    \"Weisbrod\": [\n        \"NNP\"\n    ], \n    \"sleepwalked\": [\n        \"VBD\"\n    ], \n    \"Jericho\": [\n        \"NNP\"\n    ], \n    \"jocularly\": [\n        \"RB\"\n    ], \n    \"Soups\": [\n        \"NNP\"\n    ], \n    \"genes\": [\n        \"NNS\"\n    ], \n    \"Treitel\": [\n        \"NNP\"\n    ], \n    \"Quiet\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"non-meat\": [\n        \"NN\"\n    ], \n    \"rodeos\": [\n        \"NNS\"\n    ], \n    \"Marlo\": [\n        \"NNP\"\n    ], \n    \"Underserved\": [\n        \"NNP\"\n    ], \n    \"leisure-related\": [\n        \"JJ\"\n    ], \n    \"gorge\": [\n        \"NN\"\n    ], \n    \"Wis\": [\n        \"NNP\"\n    ], \n    \"merriment\": [\n        \"NN\"\n    ], \n    \"theorize\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"satellite-delivered\": [\n        \"JJ\"\n    ], \n    \"petitioner\": [\n        \"NN\"\n    ], \n    \"hydrostatic\": [\n        \"JJ\"\n    ], \n    \"hops\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"patriotic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"petitioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"tippling\": [\n        \"JJ\"\n    ], \n    \"portfolio...\": [\n        \":\"\n    ], \n    \"homeward\": [\n        \"RB\"\n    ], \n    \"capital-gains-cut\": [\n        \"JJ\"\n    ], \n    \"Seung\": [\n        \"NNP\"\n    ], \n    \"Neitzbohr\": [\n        \"NNP\"\n    ], \n    \"Different\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"marked\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"immunized\": [\n        \"VBN\"\n    ], \n    \"sincerely\": [\n        \"RB\"\n    ], \n    \"seaports\": [\n        \"NNS\"\n    ], \n    \"marker\": [\n        \"NN\"\n    ], \n    \"Greenspon\": [\n        \"NNP\"\n    ], \n    \"market\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\", \n        \"NN|VB\"\n    ], \n    \"Bonita\": [\n        \"NNP\"\n    ], \n    \"flavors\": [\n        \"NNS\"\n    ], \n    \"super-status\": [\n        \"JJ\"\n    ], \n    \"Paris-based\": [\n        \"JJ\"\n    ], \n    \"Thuggee\": [\n        \"NNP\"\n    ], \n    \"Retrace\": [\n        \"VB\"\n    ], \n    \"Cities\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"angels\": [\n        \"NNS\"\n    ], \n    \"uncountered\": [\n        \"JJ\"\n    ], \n    \"menstrual\": [\n        \"JJ\"\n    ], \n    \"acquisitions.s\": [\n        \"NNS\"\n    ], \n    \"molecules\": [\n        \"NNS\"\n    ], \n    \"philodendron\": [\n        \"NN\"\n    ], \n    \"half-share\": [\n        \"NN\"\n    ], \n    \"club\": [\n        \"NN\"\n    ], \n    \"Lorelei\": [\n        \"NNPS\"\n    ], \n    \"Required\": [\n        \"VBN\"\n    ], \n    \"envelope\": [\n        \"NN\"\n    ], \n    \"Twinsburg\": [\n        \"NNP\"\n    ], \n    \"clue\": [\n        \"NN\"\n    ], \n    \"breathed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"year-over-year\": [\n        \"JJ\"\n    ], \n    \"Unmanned\": [\n        \"JJ\"\n    ], \n    \"beluga\": [\n        \"NN\"\n    ], \n    \"intrapulmonary\": [\n        \"JJ\"\n    ], \n    \"midsession\": [\n        \"NN\"\n    ], \n    \"Spady\": [\n        \"NNP\"\n    ], \n    \"catechism\": [\n        \"NN\"\n    ], \n    \"Subs\": [\n        \"NNP\"\n    ], \n    \"Halle\": [\n        \"NNP\"\n    ], \n    \"mayors\": [\n        \"NNS\"\n    ], \n    \"foci\": [\n        \"NNS\"\n    ], \n    \"SBA\": [\n        \"NNP\"\n    ], \n    \"hope\": [\n        \"NN\", \n        \"VB\", \n        \"VBD\", \n        \"VBP\"\n    ], \n    \"OBERMAIER\": [\n        \"NNP\"\n    ], \n    \"toccata\": [\n        \"NN\"\n    ], \n    \"Spada\": [\n        \"NNP\"\n    ], \n    \"miscalculations\": [\n        \"NNS\"\n    ], \n    \"stimulating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"metallurgical\": [\n        \"JJ\"\n    ], \n    \"relaying\": [\n        \"VBG\"\n    ], \n    \"Angier\": [\n        \"NNP\"\n    ], \n    \"nomenclatural\": [\n        \"JJ\"\n    ], \n    \"Resort\": [\n        \"NNP\"\n    ], \n    \"bluebook\": [\n        \"NN\"\n    ], \n    \"posing\": [\n        \"VBG\"\n    ], \n    \"instant-replay\": [\n        \"NN\"\n    ], \n    \"Britons\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Effie\": [\n        \"NNP\"\n    ], \n    \"matinees\": [\n        \"NNS\"\n    ], \n    \"Keck\": [\n        \"NNP\"\n    ], \n    \"infantile\": [\n        \"JJ\"\n    ], \n    \"writs\": [\n        \"NNS\"\n    ], \n    \"DATA\": [\n        \"NNP\"\n    ], \n    \"home-service\": [\n        \"JJ\"\n    ], \n    \"buttoned-up\": [\n        \"JJ\"\n    ], \n    \"flourishes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"amputated\": [\n        \"VBN\"\n    ], \n    \"Spic\": [\n        \"NNP\"\n    ], \n    \"Addabbo\": [\n        \"NNP\"\n    ], \n    \"Kieffer\": [\n        \"NNP\"\n    ], \n    \"Spin\": [\n        \"NNP\"\n    ], \n    \"gobbling\": [\n        \"VBG\"\n    ], \n    \"Powder\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"applicability\": [\n        \"NN\"\n    ], \n    \"teahouses\": [\n        \"NNS\"\n    ], \n    \"staffers\": [\n        \"NNS\"\n    ], \n    \"kitchen-sink\": [\n        \"JJ\"\n    ], \n    \"soil-removal\": [\n        \"JJ\"\n    ], \n    \"Bargain\": [\n        \"NN\"\n    ], \n    \"Krysalis\": [\n        \"NNP\"\n    ], \n    \"Malenkov\": [\n        \"NNP\"\n    ], \n    \"ADVERTISERS\": [\n        \"NNS\"\n    ], \n    \"heroes\": [\n        \"NNS\"\n    ], \n    \"Shagan\": [\n        \"NNP\"\n    ], \n    \"Wilhite\": [\n        \"NNP\"\n    ], \n    \"center-vented\": [\n        \"JJ\"\n    ], \n    \"bid-rigging\": [\n        \"NN\"\n    ], \n    \"emotionality\": [\n        \"NN\"\n    ], \n    \"futures\": [\n        \"NNS\"\n    ], \n    \"voce\": [\n        \"NN\"\n    ], \n    \"Chayefsky\": [\n        \"NNP\"\n    ], \n    \"big-tube\": [\n        \"JJ\"\n    ], \n    \"Hamburgers\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"fortuitously\": [\n        \"RB\"\n    ], \n    \"STRUCK\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Exporting\": [\n        \"NNP\"\n    ], \n    \"space-time\": [\n        \"JJ\"\n    ], \n    \"Phnom\": [\n        \"NNP\"\n    ], \n    \"risk-takers\": [\n        \"NNS\"\n    ], \n    \"curiosities\": [\n        \"NNS\"\n    ], \n    \"F-4\": [\n        \"NNP\"\n    ], \n    \"Amcor\": [\n        \"NNP\"\n    ], \n    \"aiding\": [\n        \"VBG\"\n    ], \n    \"working-capital\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fund-raising\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"bartered\": [\n        \"VBN\"\n    ], \n    \"Hindes\": [\n        \"NNP\"\n    ], \n    \"tending\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Pravo\": [\n        \"NNP\"\n    ], \n    \"Mesta\": [\n        \"NNP\"\n    ], \n    \"curly\": [\n        \"JJ\"\n    ], \n    \"confessor\": [\n        \"NN\"\n    ], \n    \"birthdays\": [\n        \"NNS\"\n    ], \n    \"curls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"unuttered\": [\n        \"JJ\"\n    ], \n    \"student-athlete\": [\n        \"NN\"\n    ], \n    \"portraiture\": [\n        \"NN\"\n    ], \n    \"distortable\": [\n        \"JJ\"\n    ], \n    \"basis-point\": [\n        \"NN\"\n    ], \n    \"analeptic\": [\n        \"JJ\"\n    ], \n    \"mid-shimmy\": [\n        \"NN\"\n    ], \n    \"incumbencies\": [\n        \"NNS\"\n    ], \n    \"inefficiency\": [\n        \"NN\"\n    ], \n    \"expansiveness\": [\n        \"NN\"\n    ], \n    \"Grubb\": [\n        \"NNP\"\n    ], \n    \"Norfolk\": [\n        \"NNP\"\n    ], \n    \"disparate\": [\n        \"JJ\"\n    ], \n    \"lumbering\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dynoriders\": [\n        \"NNP\"\n    ], \n    \"Salinity\": [\n        \"NN\"\n    ], \n    \"gouverne\": [\n        \"FW\"\n    ], \n    \"thin-tired\": [\n        \"JJ\"\n    ], \n    \"streamliner\": [\n        \"NN\"\n    ], \n    \"Kenosha\": [\n        \"NNP\"\n    ], \n    \"age-discrimination\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"go-around\": [\n        \"NN\"\n    ], \n    \"shoplifters\": [\n        \"NNS\"\n    ], \n    \"Ludwigshafen\": [\n        \"NNP\"\n    ], \n    \"discuss\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"expedite\": [\n        \"VB\"\n    ], \n    \"calipers\": [\n        \"NNS\"\n    ], \n    \"commercialized\": [\n        \"VBN\"\n    ], \n    \"Mountaineering\": [\n        \"NNP\"\n    ], \n    \"prospers\": [\n        \"VBZ\"\n    ], \n    \"Regulations\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"cliffs\": [\n        \"NNS\"\n    ], \n    \"bas-reliefs\": [\n        \"NNS\"\n    ], \n    \"uncoiling\": [\n        \"VBG\"\n    ], \n    \"Swaps\": [\n        \"NNS\"\n    ], \n    \"woolens\": [\n        \"NNS\"\n    ], \n    \"oppposes\": [\n        \"VBZ\"\n    ], \n    \"Barkin\": [\n        \"NNP\"\n    ], \n    \"coil\": [\n        \"NN\"\n    ], \n    \"supplant\": [\n        \"VB\"\n    ], \n    \"Tumazos\": [\n        \"NNP\"\n    ], \n    \"appointee\": [\n        \"NN\"\n    ], \n    \"Swapo\": [\n        \"NNP\"\n    ], \n    \"counteract\": [\n        \"VB\"\n    ], \n    \"avoided\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Verloop\": [\n        \"NNP\"\n    ], \n    \"prepayment\": [\n        \"NN\"\n    ], \n    \"Krohley\": [\n        \"NNP\"\n    ], \n    \"Oskar\": [\n        \"NNP\"\n    ], \n    \"accomplish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Substances\": [\n        \"NNS\"\n    ], \n    \"Vermouth\": [\n        \"NNP\"\n    ], \n    \"per-day\": [\n        \"JJ\"\n    ], \n    \"snidely\": [\n        \"RB\"\n    ], \n    \"tunefulness\": [\n        \"NN\"\n    ], \n    \"showroom\": [\n        \"NN\"\n    ], \n    \"rebuilding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cross-cultural\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Uncertainty\": [\n        \"NN\"\n    ], \n    \"Pierson\": [\n        \"NNP\"\n    ], \n    \"most-prestigious\": [\n        \"JJ\"\n    ], \n    \"offhandedly\": [\n        \"RB\"\n    ], \n    \"riskier\": [\n        \"JJR\", \n        \"RBR\", \n        \"NN\"\n    ], \n    \"Blind\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"white-columned\": [\n        \"JJ\"\n    ], \n    \"Shelbyville\": [\n        \"NNP\"\n    ], \n    \"Tournament\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"kingdoms\": [\n        \"NNS\"\n    ], \n    \"discount-store\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Shawn\": [\n        \"NNP\"\n    ], \n    \"blue-black\": [\n        \"JJ\"\n    ], \n    \"Swiss-German\": [\n        \"JJ\"\n    ], \n    \"travel-related\": [\n        \"JJ\"\n    ], \n    \"inevitabilities\": [\n        \"NNS\"\n    ], \n    \"Tsunozaki\": [\n        \"NNP\"\n    ], \n    \"Almanac\": [\n        \"NNP\"\n    ], \n    \"hurricane-ravaged\": [\n        \"JJ\"\n    ], \n    \"TED\": [\n        \"NNP\"\n    ], \n    \"Landry\": [\n        \"NNP\"\n    ], \n    \"mountainside\": [\n        \"NN\"\n    ], \n    \"yourself\": [\n        \"PRP\"\n    ], \n    \"pornographer\": [\n        \"NN\"\n    ], \n    \"intelligence-sharing\": [\n        \"NN\"\n    ], \n    \"Hollywood\": [\n        \"NNP\"\n    ], \n    \"monopolizing\": [\n        \"VBG\"\n    ], \n    \"Briksa\": [\n        \"NNP\"\n    ], \n    \"Sparta\": [\n        \"NNP\"\n    ], \n    \"dawns\": [\n        \"VBZ\"\n    ], \n    \"foreign-movie\": [\n        \"NN\"\n    ], \n    \"victorious\": [\n        \"JJ\"\n    ], \n    \"Schorr\": [\n        \"NNP\"\n    ], \n    \"grimness\": [\n        \"NN\"\n    ], \n    \"artless\": [\n        \"JJ\"\n    ], \n    \"thar\": [\n        \"RB\"\n    ], \n    \"thaw\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Standardization\": [\n        \"NN\"\n    ], \n    \"that\": [\n        \"IN\", \n        \"DT\", \n        \"NN\", \n        \"RB\", \n        \"RP\", \n        \"UH\", \n        \"WP\", \n        \"VBP\", \n        \"WDT\"\n    ], \n    \"inmates\": [\n        \"NNS\"\n    ], \n    \"flowers\": [\n        \"NNS\"\n    ], \n    \"than\": [\n        \"IN\", \n        \"RB\", \n        \"IN|RB\", \n        \"RBR\"\n    ], \n    \"Conferences\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"REVISED\": [\n        \"VBN\"\n    ], \n    \"reconvened\": [\n        \"VBN\"\n    ], \n    \"Fogelman\": [\n        \"NNP\"\n    ], \n    \"not-quite-mainstream\": [\n        \"JJ\"\n    ], \n    \"DeMunn\": [\n        \"NNP\"\n    ], \n    \"gobble\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"reconvenes\": [\n        \"VBZ\"\n    ], \n    \"non-traditional\": [\n        \"JJ\"\n    ], \n    \"Veronique\": [\n        \"NNP\"\n    ], \n    \"Vallee\": [\n        \"NNP\"\n    ], \n    \"Leverkusen\": [\n        \"NNP\"\n    ], \n    \"Cherry\": [\n        \"NNP\"\n    ], \n    \"W.J.\": [\n        \"NNP\"\n    ], \n    \"FXTV\": [\n        \"NNP\"\n    ], \n    \"crossover\": [\n        \"NN\"\n    ], \n    \"Dynapert\": [\n        \"NNP\"\n    ], \n    \"less-sweeping\": [\n        \"JJ\"\n    ], \n    \"just-completed\": [\n        \"JJ\"\n    ], \n    \"Valley\": [\n        \"NNP\"\n    ], \n    \"Playes\": [\n        \"NNP\"\n    ], \n    \"lumpy\": [\n        \"JJ\"\n    ], \n    \"nervy\": [\n        \"JJ\"\n    ], \n    \"lumps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"technicality\": [\n        \"NN\"\n    ], \n    \"terrific\": [\n        \"JJ\"\n    ], \n    \"Hoyle\": [\n        \"NNP\"\n    ], \n    \"nuances\": [\n        \"NNS\"\n    ], \n    \"siesta\": [\n        \"NN\"\n    ], \n    \"similiar\": [\n        \"JJ\"\n    ], \n    \"swelled\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Sean\": [\n        \"NNP\"\n    ], \n    \"Dingell-Waxman\": [\n        \"NNP\"\n    ], \n    \"Kimmelman\": [\n        \"NNP\"\n    ], \n    \"heaters\": [\n        \"NNS\"\n    ], \n    \"winless\": [\n        \"JJ\"\n    ], \n    \"Sleep-disorder\": [\n        \"JJ\"\n    ], \n    \"Bahre\": [\n        \"NNP\"\n    ], \n    \"man-bites-dog\": [\n        \"JJ\"\n    ], \n    \"expertly\": [\n        \"RB\"\n    ], \n    \"analytically\": [\n        \"RB\"\n    ], \n    \"Wound-tumor\": [\n        \"NN\"\n    ], \n    \"hot-shot\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"interacting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"storm-damaged\": [\n        \"JJ\"\n    ], \n    \"bicycle-auto\": [\n        \"JJ\"\n    ], \n    \"Bursting\": [\n        \"VBG\"\n    ], \n    \"failure\": [\n        \"NN\"\n    ], \n    \"Akademie\": [\n        \"NNP\"\n    ], \n    \"McArthur\": [\n        \"NNP\"\n    ], \n    \"aerosol\": [\n        \"NN\"\n    ], \n    \"Gidwani\": [\n        \"NNP\"\n    ], \n    \"growth-oriented\": [\n        \"JJ\"\n    ], \n    \"see-through\": [\n        \"JJ\"\n    ], \n    \"well-stuffed\": [\n        \"JJ\"\n    ], \n    \"erred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"overregulation\": [\n        \"NN\"\n    ], \n    \"Ghazel\": [\n        \"NNP\"\n    ], \n    \"concurs\": [\n        \"VBZ\"\n    ], \n    \"work-release\": [\n        \"NN\"\n    ], \n    \"excerpts\": [\n        \"NNS\"\n    ], \n    \"battens\": [\n        \"NNS\"\n    ], \n    \"nemesis\": [\n        \"NN\"\n    ], \n    \"title\": [\n        \"NN\"\n    ], \n    \"proclamation\": [\n        \"NN\"\n    ], \n    \"Maoist-style\": [\n        \"JJ\"\n    ], \n    \"Proskauer\": [\n        \"NNP\"\n    ], \n    \"geochemistry\": [\n        \"NN\"\n    ], \n    \"watching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"MSX-run\": [\n        \"JJ\"\n    ], \n    \"alcoholism\": [\n        \"NN\"\n    ], \n    \"pastrami\": [\n        \"NNS\"\n    ], \n    \"MARCUS\": [\n        \"NNP\"\n    ], \n    \"trenchant\": [\n        \"JJ\"\n    ], \n    \"beatnik\": [\n        \"NN\"\n    ], \n    \"antithyroid\": [\n        \"JJ\"\n    ], \n    \"Northfield\": [\n        \"NNP\"\n    ], \n    \"moxie\": [\n        \"NN\"\n    ], \n    \"clearnace\": [\n        \"NN\"\n    ], \n    \"roadster\": [\n        \"NN\"\n    ], \n    \"Okla\": [\n        \"NNP\"\n    ], \n    \"leather\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Felix\": [\n        \"NNP\"\n    ], \n    \"Buker\": [\n        \"NNP\"\n    ], \n    \"reorganized\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"long-opposed\": [\n        \"JJ\"\n    ], \n    \"Pro-Iranian\": [\n        \"NNP\"\n    ], \n    \"Invariably\": [\n        \"RB\"\n    ], \n    \"reorganizes\": [\n        \"VBZ\"\n    ], \n    \"Jock\": [\n        \"NNP\"\n    ], \n    \"Yugolsavia\": [\n        \"NNP\"\n    ], \n    \"tax-advantaged\": [\n        \"JJ\"\n    ], \n    \"derogatory\": [\n        \"JJ\"\n    ], \n    \"examinin\": [\n        \"VBG\"\n    ], \n    \"Mandarin\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Finks\": [\n        \"NNP\"\n    ], \n    \"flatly\": [\n        \"RB\"\n    ], \n    \"hypodermic\": [\n        \"JJ\"\n    ], \n    \"mom-and-pop\": [\n        \"JJ\"\n    ], \n    \"Bobo\": [\n        \"NNP\"\n    ], \n    \"feuds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Varitronic\": [\n        \"NNP\"\n    ], \n    \"skyscraper\": [\n        \"NN\"\n    ], \n    \"non-consumer\": [\n        \"NN\"\n    ], \n    \"airline-deregulation\": [\n        \"NN\"\n    ], \n    \"Maneuvers\": [\n        \"NNS\"\n    ], \n    \"garde\": [\n        \"FW\"\n    ], \n    \"analyzer\": [\n        \"NN\"\n    ], \n    \"analyzes\": [\n        \"VBZ\"\n    ], \n    \"Matritech\": [\n        \"NNP\"\n    ], \n    \"Marco\": [\n        \"NNP\"\n    ], \n    \"analyzed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Squadron\": [\n        \"NNP\"\n    ], \n    \"vrai\": [\n        \"FW\"\n    ], \n    \"stipends\": [\n        \"NNS\"\n    ], \n    \"revellings\": [\n        \"NNS\"\n    ], \n    \"Mayor-nominate\": [\n        \"NNP\"\n    ], \n    \"Cinema\": [\n        \"NNP\"\n    ], \n    \"tutors\": [\n        \"NNS\"\n    ], \n    \"Primary\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"electronic-warfare\": [\n        \"NN\"\n    ], \n    \"Moraine\": [\n        \"NNP\"\n    ], \n    \"segmental\": [\n        \"JJ\"\n    ], \n    \"assaulting\": [\n        \"VBG\"\n    ], \n    \"reluctantly\": [\n        \"RB\"\n    ], \n    \"wheels\": [\n        \"NNS\"\n    ], \n    \"Sulka\": [\n        \"NNP\"\n    ], \n    \"nearby\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Feenberg\": [\n        \"NNP\"\n    ], \n    \"monochromes\": [\n        \"NNS\"\n    ], \n    \"fungicides\": [\n        \"NNS\"\n    ], \n    \"KLM-Northwest\": [\n        \"NNP\"\n    ], \n    \"SHORTAGE\": [\n        \"NN\"\n    ], \n    \"Bourguiba\": [\n        \"NNP\"\n    ], \n    \"Holzfaster\": [\n        \"NNP\"\n    ], \n    \"no-smoking\": [\n        \"JJ\"\n    ], \n    \"no-load\": [\n        \"JJ\"\n    ], \n    \"pulverized\": [\n        \"VBN\"\n    ], \n    \"Bets\": [\n        \"NNS\"\n    ], \n    \"olives\": [\n        \"NNS\"\n    ], \n    \"cycling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Frohock\": [\n        \"NNP\"\n    ], \n    \"cares\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"low-class\": [\n        \"JJ\"\n    ], \n    \"invert\": [\n        \"VB\"\n    ], \n    \"package-sorting\": [\n        \"NN\"\n    ], \n    \"Six-Day\": [\n        \"NNP\"\n    ], \n    \"cared\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Beta\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"credit-financed\": [\n        \"JJ\"\n    ], \n    \"wolde\": [\n        \"MD\"\n    ], \n    \"two-mark\": [\n        \"JJ\"\n    ], \n    \"outweighed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Beth\": [\n        \"NNP\"\n    ], \n    \"Assn.\": [\n        \"NNP\"\n    ], \n    \"Marcy\": [\n        \"NNP\"\n    ], \n    \"avian\": [\n        \"JJ\"\n    ], \n    \"magnetics\": [\n        \"NNS\"\n    ], \n    \"Kozintsev\": [\n        \"NNP\"\n    ], \n    \"favoritism\": [\n        \"NN\"\n    ], \n    \"Yokuts\": [\n        \"NNP\"\n    ], \n    \"homely\": [\n        \"JJ\"\n    ], \n    \"quartzite-quarrying\": [\n        \"NN\"\n    ], \n    \"file\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"foggy\": [\n        \"JJ\"\n    ], \n    \"cost-prohibitive\": [\n        \"JJ\"\n    ], \n    \"electric-generating\": [\n        \"NN\"\n    ], \n    \"Flick\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ex-furniture\": [\n        \"JJ\"\n    ], \n    \"Yamada\": [\n        \"NNP\"\n    ], \n    \"rustlin\": [\n        \"NN\"\n    ], \n    \"UFO\": [\n        \"NNP\"\n    ], \n    \"Northington\": [\n        \"NNP\"\n    ], \n    \"grevouselye\": [\n        \"RB\"\n    ], \n    \"shirtfront\": [\n        \"NN\"\n    ], \n    \"OWNER\": [\n        \"NNP\"\n    ], \n    \"Alaska-based\": [\n        \"JJ\"\n    ], \n    \"care.\": [\n        \"NN\"\n    ], \n    \"trade-up\": [\n        \"JJ\"\n    ], \n    \"oligopoly\": [\n        \"NN\"\n    ], \n    \"legislation-delaying\": [\n        \"JJ\"\n    ], \n    \"political-reform\": [\n        \"JJ\"\n    ], \n    \"two-fisted\": [\n        \"JJ\"\n    ], \n    \"pileup\": [\n        \"NN\"\n    ], \n    \"Flexible\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Hitch\": [\n        \"NNP\"\n    ], \n    \"co-managers\": [\n        \"NNS\"\n    ], \n    \"worry\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"Gritten\": [\n        \"NNP\"\n    ], \n    \"widows\": [\n        \"NNS\"\n    ], \n    \"Complete\": [\n        \"JJ\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"Sixth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Moira\": [\n        \"NNP\"\n    ], \n    \"hartes\": [\n        \"NNS\"\n    ], \n    \"Lannon\": [\n        \"NNP\"\n    ], \n    \"poetic\": [\n        \"JJ\"\n    ], \n    \"cc.\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"NSPA\": [\n        \"NNP\"\n    ], \n    \"figures\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"outmaneuver\": [\n        \"VB\"\n    ], \n    \"centuries\": [\n        \"NNS\"\n    ], \n    \"enjoyment\": [\n        \"NN\"\n    ], \n    \"BIO-RAD\": [\n        \"NNP\"\n    ], \n    \"nestled\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Rafter\": [\n        \"NNP\"\n    ], \n    \"radio-cassette\": [\n        \"NN\"\n    ], \n    \"truck-bed\": [\n        \"NN\"\n    ], \n    \"Lightning\": [\n        \"NN\"\n    ], \n    \"framework\": [\n        \"NN\"\n    ], \n    \"patchwork\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"immeasurably\": [\n        \"RB\"\n    ], \n    \"Outboard\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"agreeing\": [\n        \"VBG\"\n    ], \n    \"poplar\": [\n        \"NN\"\n    ], \n    \"immeasurable\": [\n        \"JJ\"\n    ], \n    \"Andres\": [\n        \"NNP\"\n    ], \n    \"coordinate\": [\n        \"VB\", \n        \"JJ\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"defers\": [\n        \"VBZ\"\n    ], \n    \"Nazi\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"charged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"rail-mobile\": [\n        \"JJ\"\n    ], \n    \"Jimmie\": [\n        \"NNP\"\n    ], \n    \"Biagi\": [\n        \"NNP\"\n    ], \n    \"Kool-Aid\": [\n        \"NNP\"\n    ], \n    \"Zen-like\": [\n        \"JJ\"\n    ], \n    \"Poseidon\": [\n        \"NNP\"\n    ], \n    \"dancers\": [\n        \"NNS\"\n    ], \n    \"beveling\": [\n        \"VBG\"\n    ], \n    \"Minn.\": [\n        \"NNP\"\n    ], \n    \"spots...\": [\n        \":\"\n    ], \n    \"wrecks\": [\n        \"NNS\"\n    ], \n    \"Maruzen\": [\n        \"NNP\"\n    ], \n    \"Loudspeakers\": [\n        \"NNS\"\n    ], \n    \"Swissair\": [\n        \"NNP\"\n    ], \n    \"Nueva\": [\n        \"NNP\"\n    ], \n    \"thinking\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Tailin\": [\n        \"NN\"\n    ], \n    \"conveyor\": [\n        \"NN\"\n    ], \n    \"ketches\": [\n        \"NNS\"\n    ], \n    \"improvement\": [\n        \"NN\"\n    ], \n    \"Winchell\": [\n        \"NNP\"\n    ], \n    \"Kolpakova\": [\n        \"NNP\"\n    ], \n    \"market-revision\": [\n        \"NN\"\n    ], \n    \"congeal\": [\n        \"VB\"\n    ], \n    \"seams\": [\n        \"NNS\"\n    ], \n    \"conferees\": [\n        \"NNS\"\n    ], \n    \"Minna\": [\n        \"NNP\"\n    ], \n    \"Grands\": [\n        \"NNP\"\n    ], \n    \"seamy\": [\n        \"JJ\"\n    ], \n    \"typographic\": [\n        \"JJ\"\n    ], \n    \"allocates\": [\n        \"VBZ\"\n    ], \n    \"Occidental\": [\n        \"NNP\"\n    ], \n    \"warehouse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Grande\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"Fishermen\": [\n        \"NNS\"\n    ], \n    \"Minny\": [\n        \"NNP\"\n    ], \n    \"Andrea\": [\n        \"NNP\"\n    ], \n    \"dumpy\": [\n        \"JJ\"\n    ], \n    \"burrowing\": [\n        \"VBG\"\n    ], \n    \"outcrops\": [\n        \"NNS\"\n    ], \n    \"streamers\": [\n        \"NNS\"\n    ], \n    \"Effectively\": [\n        \"RB\"\n    ], \n    \"Raskolnikov\": [\n        \"NNP\"\n    ], \n    \"adjuster\": [\n        \"NN\"\n    ], \n    \"Aroused\": [\n        \"VBN\"\n    ], \n    \"apologists\": [\n        \"NNS\"\n    ], \n    \"counter-cyclical\": [\n        \"JJ\"\n    ], \n    \"orgiastic\": [\n        \"JJ\"\n    ], \n    \"ghostlike\": [\n        \"JJ\"\n    ], \n    \"Telephone\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"privatization\": [\n        \"NN\"\n    ], \n    \"Howzit\": [\n        \"NN\"\n    ], \n    \"questionnaire\": [\n        \"NN\"\n    ], \n    \"USSR\": [\n        \"NNP\"\n    ], \n    \"Squat-style\": [\n        \"JJ\"\n    ], \n    \"garland\": [\n        \"NN\"\n    ], \n    \"Scrimgeour\": [\n        \"NNP\"\n    ], \n    \"Hoa-whup\": [\n        \"UH\"\n    ], \n    \"Asbestos\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"squire\": [\n        \"NN\"\n    ], \n    \"Woodrow\": [\n        \"NNP\"\n    ], \n    \"Cressidas\": [\n        \"NNPS\"\n    ], \n    \"on-set\": [\n        \"JJ\"\n    ], \n    \"Luger\": [\n        \"NNP\"\n    ], \n    \"copings\": [\n        \"NNS\"\n    ], \n    \"hustle\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Rimanelli\": [\n        \"NNP\"\n    ], \n    \"uncorrected\": [\n        \"JJ\"\n    ], \n    \"chefs\": [\n        \"NNS\"\n    ], \n    \"flinched\": [\n        \"VBD\"\n    ], \n    \"still-ticking\": [\n        \"JJ\"\n    ], \n    \"business-credit\": [\n        \"NN\"\n    ], \n    \"sniffs\": [\n        \"VBZ\"\n    ], \n    \"Trans-Mediterranean\": [\n        \"NNP\"\n    ], \n    \"seat-back\": [\n        \"JJ\"\n    ], \n    \"sniffy\": [\n        \"JJ\"\n    ], \n    \"comparison\": [\n        \"NN\"\n    ], \n    \"vacillate\": [\n        \"VB\"\n    ], \n    \"hampers\": [\n        \"VBZ\"\n    ], \n    \"just-announced\": [\n        \"JJ\"\n    ], \n    \"HOT\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"stake-holding\": [\n        \"JJ\"\n    ], \n    \"testimony\": [\n        \"NN\"\n    ], \n    \"Ventures\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Galecke\": [\n        \"NNP\"\n    ], \n    \"processor\": [\n        \"NN\"\n    ], \n    \"D.,Texas\": [\n        \"NNS\"\n    ], \n    \"Story\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"less-than-carload\": [\n        \"JJ\"\n    ], \n    \"teamwork\": [\n        \"NN\"\n    ], \n    \"unbounded\": [\n        \"JJ\"\n    ], \n    \"russe\": [\n        \"NN\"\n    ], \n    \"color-coded\": [\n        \"VBN\"\n    ], \n    \"Stork\": [\n        \"NNP\"\n    ], \n    \"organics\": [\n        \"NNS\"\n    ], \n    \"Ade\": [\n        \"NNP\"\n    ], \n    \"involvement\": [\n        \"NN\"\n    ], \n    \"bedtime\": [\n        \"NN\"\n    ], \n    \"Storm\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ada\": [\n        \"NNP\"\n    ], \n    \"elementary\": [\n        \"JJ\"\n    ], \n    \"Ado\": [\n        \"NNP\"\n    ], \n    \"garrisoned\": [\n        \"VBN\"\n    ], \n    \"nowadays\": [\n        \"RB\"\n    ], \n    \"Store\": [\n        \"NNP\"\n    ], \n    \"Adi\": [\n        \"NNP\"\n    ], \n    \"Tactically\": [\n        \"RB\"\n    ], \n    \"grates\": [\n        \"NNS\"\n    ], \n    \"Chiappa\": [\n        \"NNP\"\n    ], \n    \"forwarded\": [\n        \"VBN\"\n    ], \n    \"orange-and-white\": [\n        \"JJ\"\n    ], \n    \"exonerated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Gendron\": [\n        \"NNP\"\n    ], \n    \"technolology\": [\n        \"NN\"\n    ], \n    \"mellowed\": [\n        \"VBN\"\n    ], \n    \"premix\": [\n        \"NN\"\n    ], \n    \"cats\": [\n        \"NNS\"\n    ], \n    \"reintegrated\": [\n        \"VBN\"\n    ], \n    \"anti-Japanese\": [\n        \"JJ\"\n    ], \n    \"computer-assisted\": [\n        \"JJ\"\n    ], \n    \"burnings\": [\n        \"NNS\"\n    ], \n    \"tabulations\": [\n        \"NNS\"\n    ], \n    \"marimba\": [\n        \"NN\"\n    ], \n    \"Mushkat\": [\n        \"NNP\"\n    ], \n    \"Mollusks\": [\n        \"NNS\"\n    ], \n    \"Richey\": [\n        \"NNP\"\n    ], \n    \"mud-logger\": [\n        \"NN\"\n    ], \n    \"J\": [\n        \"NNP\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"gunners\": [\n        \"NNS\"\n    ], \n    \"posterior\": [\n        \"JJ\"\n    ], \n    \"multitasking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"attainable\": [\n        \"JJ\"\n    ], \n    \"Ruskin\": [\n        \"NNP\"\n    ], \n    \"on-sure\": [\n        \"JJ\"\n    ], \n    \"whirring\": [\n        \"VBG\"\n    ], \n    \"middle-sized\": [\n        \"JJ\"\n    ], \n    \"communitarians\": [\n        \"NNS\"\n    ], \n    \"Geo\": [\n        \"NNP\"\n    ], \n    \"U.S.-backed\": [\n        \"JJ\"\n    ], \n    \"potato\": [\n        \"NN\"\n    ], \n    \"lawfully\": [\n        \"RB\"\n    ], \n    \"disbanding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"doweling\": [\n        \"NN\"\n    ], \n    \"farrowings\": [\n        \"NNS\"\n    ], \n    \"Respecting\": [\n        \"VBG\"\n    ], \n    \"overpay\": [\n        \"VB\"\n    ], \n    \"Shochiku\": [\n        \"NNP\"\n    ], \n    \"tones\": [\n        \"NNS\"\n    ], \n    \"sallying\": [\n        \"VBG\"\n    ], \n    \"gibberish\": [\n        \"NN\"\n    ], \n    \"cowbirds\": [\n        \"NNS\"\n    ], \n    \"Satoh\": [\n        \"NNP\"\n    ], \n    \"Biomet\": [\n        \"NNP\"\n    ], \n    \"Labans\": [\n        \"NNP\"\n    ], \n    \"falseness\": [\n        \"NN\"\n    ], \n    \"remembrances\": [\n        \"NNS\"\n    ], \n    \"Yonkers\": [\n        \"NNP\"\n    ], \n    \"equity-to-asset\": [\n        \"NN\"\n    ], \n    \"Coasts\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Duque\": [\n        \"NNP\"\n    ], \n    \"restores\": [\n        \"VBZ\"\n    ], \n    \"midweek\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"godamit\": [\n        \"VB\"\n    ], \n    \"gradients\": [\n        \"NNS\"\n    ], \n    \"Monica\": [\n        \"NNP\"\n    ], \n    \"tariff-cutting\": [\n        \"NN\"\n    ], \n    \"elemental\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"million-dollar-a-year\": [\n        \"JJ\"\n    ], \n    \"afflicting\": [\n        \"VBG\"\n    ], \n    \"semiarid\": [\n        \"JJ\"\n    ], \n    \"Colon\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Malvern\": [\n        \"NNP\"\n    ], \n    \"Baldrige\": [\n        \"NNP\"\n    ], \n    \"authoritarian\": [\n        \"JJ\"\n    ], \n    \"perils\": [\n        \"NNS\"\n    ], \n    \"Roscoe\": [\n        \"NNP\"\n    ], \n    \"teeth\": [\n        \"NNS\", \n        \"RP\"\n    ], \n    \"carpenter\": [\n        \"NN\"\n    ], \n    \"NewVector\": [\n        \"NNP\"\n    ], \n    \"unattractive\": [\n        \"JJ\"\n    ], \n    \"Mexican\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Modern\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"homered\": [\n        \"VBD\"\n    ], \n    \"merchant-banking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"repay\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"M.G.\": [\n        \"NNP\"\n    ], \n    \"Soybean\": [\n        \"NN\"\n    ], \n    \"embracing\": [\n        \"VBG\"\n    ], \n    \"optical-products\": [\n        \"NNS\"\n    ], \n    \"Prideaux\": [\n        \"NNP\"\n    ], \n    \"home-market\": [\n        \"JJ\"\n    ], \n    \"PANHANDLER\": [\n        \"NN\"\n    ], \n    \"Tilly\": [\n        \"NNP\"\n    ], \n    \"alleviation\": [\n        \"NN\"\n    ], \n    \"infestations\": [\n        \"NNS\"\n    ], \n    \"twigged\": [\n        \"VBD\"\n    ], \n    \"upholds\": [\n        \"VBZ\"\n    ], \n    \"renege\": [\n        \"VB\"\n    ], \n    \"messy\": [\n        \"JJ\"\n    ], \n    \"revoke\": [\n        \"VB\"\n    ], \n    \"duty-free\": [\n        \"JJ\"\n    ], \n    \"brunettes\": [\n        \"NNS\"\n    ], \n    \"Abreaction\": [\n        \"NN\"\n    ], \n    \"carpet\": [\n        \"NN\"\n    ], \n    \"dreadful\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mating\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Lipsky\": [\n        \"NNP\"\n    ], \n    \"icons\": [\n        \"NNS\"\n    ], \n    \"gymnast\": [\n        \"NN\"\n    ], \n    \"phenothiazine\": [\n        \"NN\"\n    ], \n    \"eventfully\": [\n        \"RB\"\n    ], \n    \"deep-rooted\": [\n        \"JJ\"\n    ], \n    \"Pilate\": [\n        \"NNP\"\n    ], \n    \"azaleas\": [\n        \"NNS\"\n    ], \n    \"lifters\": [\n        \"NNS\"\n    ], \n    \"single-job\": [\n        \"JJ\"\n    ], \n    \"transducers\": [\n        \"NNS\"\n    ], \n    \"agglomeration\": [\n        \"NN\"\n    ], \n    \"voicing\": [\n        \"VBG\"\n    ], \n    \"Ashkhabad\": [\n        \"NNP\"\n    ], \n    \"coups\": [\n        \"NNS\"\n    ], \n    \"Prechter\": [\n        \"NNP\"\n    ], \n    \"alternative-fuels\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"nuclear-powered\": [\n        \"JJ\"\n    ], \n    \"single-A-plus\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"Undertaken\": [\n        \"VBN\"\n    ], \n    \"securely\": [\n        \"RB\"\n    ], \n    \"common-share\": [\n        \"JJ\"\n    ], \n    \"heaven\": [\n        \"NN\"\n    ], \n    \"Bentley\": [\n        \"NNP\"\n    ], \n    \"heaved\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"kolkhoz\": [\n        \"NN\"\n    ], \n    \"knott\": [\n        \"NN\"\n    ], \n    \"Price-earnings\": [\n        \"JJ\"\n    ], \n    \"steakhouse\": [\n        \"NN\"\n    ], \n    \"En-lai\": [\n        \"NNP\"\n    ], \n    \"inversions\": [\n        \"NNS\"\n    ], \n    \"heaves\": [\n        \"NN\", \n        \"VBD\"\n    ], \n    \"defense-related\": [\n        \"JJ\"\n    ], \n    \"Schlesinger\": [\n        \"NNP\"\n    ], \n    \"cost-cutting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"three-spoked\": [\n        \"JJ\"\n    ], \n    \"Goliaths\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"rigger\": [\n        \"NN\"\n    ], \n    \"excitements\": [\n        \"NNS\"\n    ], \n    \"attributable\": [\n        \"JJ\"\n    ], \n    \"Egan\": [\n        \"NNP\"\n    ], \n    \"forward-rate\": [\n        \"JJ\"\n    ], \n    \"Egad\": [\n        \"UH\"\n    ], \n    \"Bratislava\": [\n        \"NNP\"\n    ], \n    \"Lumiere\": [\n        \"NNP\"\n    ], \n    \"belching\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Takayama\": [\n        \"NNP\"\n    ], \n    \"amatory\": [\n        \"JJ\"\n    ], \n    \"certificates\": [\n        \"NNS\"\n    ], \n    \"highest-volume\": [\n        \"JJ\"\n    ], \n    \"bit-like\": [\n        \"JJ\"\n    ], \n    \"peptidases\": [\n        \"NNS\"\n    ], \n    \"rutabagas\": [\n        \"NNS\"\n    ], \n    \"expiration\": [\n        \"NN\"\n    ], \n    \"edited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Stokely\": [\n        \"NNP\"\n    ], \n    \"postage-stamp\": [\n        \"NN\"\n    ], \n    \"Rabbi\": [\n        \"NNP\"\n    ], \n    \"modular\": [\n        \"JJ\"\n    ], \n    \"B-1B\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"grudges\": [\n        \"NNS\"\n    ], \n    \"Hatchett\": [\n        \"NNP\"\n    ], \n    \"Jerald\": [\n        \"NNP\"\n    ], \n    \"Azara\": [\n        \"NNP\"\n    ], \n    \"ommission\": [\n        \"NN\"\n    ], \n    \"multipartisan\": [\n        \"JJ\"\n    ], \n    \"B-1s\": [\n        \"NNPS\"\n    ], \n    \"Northampton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"exceptionally\": [\n        \"RB\"\n    ], \n    \"Pothitos\": [\n        \"NNP\"\n    ], \n    \"creepy\": [\n        \"JJ\"\n    ], \n    \"SIDE\": [\n        \"NNP\"\n    ], \n    \"Zappa\": [\n        \"NNP\"\n    ], \n    \"amount\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"fancier\": [\n        \"JJR\"\n    ], \n    \"refined-petroleum-products\": [\n        \"JJ\"\n    ], \n    \"Sharp-witted\": [\n        \"JJ\"\n    ], \n    \"trainer\": [\n        \"NN\"\n    ], \n    \"shuffle\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"mediator\": [\n        \"NN\"\n    ], \n    \"word-of-mouth\": [\n        \"NN\"\n    ], \n    \"Plateadas\": [\n        \"NNP\"\n    ], \n    \"Sparkling\": [\n        \"NNP\"\n    ], \n    \"Boake\": [\n        \"NNP\"\n    ], \n    \"locates\": [\n        \"VBZ\"\n    ], \n    \"analyzing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"trained\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"pulverize\": [\n        \"VB\"\n    ], \n    \"Dinkins\": [\n        \"NNP\"\n    ], \n    \"ripe\": [\n        \"JJ\"\n    ], \n    \"Asarco\": [\n        \"NNP\"\n    ], \n    \"drought-ravaged\": [\n        \"JJ\"\n    ], \n    \"watersheds\": [\n        \"NNS\"\n    ], \n    \"bilking\": [\n        \"VBG\"\n    ], \n    \"whole-word\": [\n        \"JJ\"\n    ], \n    \"autographs\": [\n        \"NNS\"\n    ], \n    \"linden\": [\n        \"NN\"\n    ], \n    \"swiped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Maximizing\": [\n        \"VBG\"\n    ], \n    \"ejected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"regrettable\": [\n        \"JJ\"\n    ], \n    \"tri-state\": [\n        \"JJ\"\n    ], \n    \"Australian-based\": [\n        \"JJ\"\n    ], \n    \"Fastenal\": [\n        \"NNP\"\n    ], \n    \"commenced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"moistened\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"regrettably\": [\n        \"RB\"\n    ], \n    \"Blackhawk\": [\n        \"NNP\"\n    ], \n    \"Justinian\": [\n        \"NNP\"\n    ], \n    \"alderman\": [\n        \"NN\"\n    ], \n    \"weathering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"jackhammers\": [\n        \"NNS\"\n    ], \n    \"take-off\": [\n        \"NN\"\n    ], \n    \"synthetical\": [\n        \"JJ\"\n    ], \n    \"Steppan\": [\n        \"NNP\"\n    ], \n    \"Calverley\": [\n        \"NNP\"\n    ], \n    \"polysiloxanes\": [\n        \"NNS\"\n    ], \n    \"Globex\": [\n        \"NNP\"\n    ], \n    \"hairdos\": [\n        \"NNS\"\n    ], \n    \"playable\": [\n        \"JJ\"\n    ], \n    \"fancied\": [\n        \"VBD\"\n    ], \n    \"velociter\": [\n        \"FW\"\n    ], \n    \"pre-consumption\": [\n        \"NN\"\n    ], \n    \"biographers\": [\n        \"NNS\"\n    ], \n    \"Buyers\": [\n        \"NNS\"\n    ], \n    \"thermostatics\": [\n        \"NNS\"\n    ], \n    \"Legion\": [\n        \"NNP\"\n    ], \n    \"Sync\": [\n        \"NN\"\n    ], \n    \"COHERENT\": [\n        \"NNP\"\n    ], \n    \"fillies\": [\n        \"NNS\"\n    ], \n    \"no-mistakes\": [\n        \"JJ\"\n    ], \n    \"oratory\": [\n        \"NN\"\n    ], \n    \"diffrunce\": [\n        \"NN\"\n    ], \n    \"orators\": [\n        \"NNS\"\n    ], \n    \"Tanii\": [\n        \"NNP\"\n    ], \n    \"ledges\": [\n        \"NNS\"\n    ], \n    \"ledger\": [\n        \"NN\"\n    ], \n    \"biographer\\\\\": [\n        \"NN\"\n    ], \n    \"one-ship\": [\n        \"JJ\"\n    ], \n    \"woodsy\": [\n        \"JJ\"\n    ], \n    \"extended-payment\": [\n        \"NN\"\n    ], \n    \"Barrett\": [\n        \"NNP\"\n    ], \n    \"Kaminski\": [\n        \"NNP\"\n    ], \n    \"board-level\": [\n        \"JJ\"\n    ], \n    \"three-boiler\": [\n        \"JJ\"\n    ], \n    \"Birgit\": [\n        \"NNP\"\n    ], \n    \"Japan-U.S.\": [\n        \"JJ\"\n    ], \n    \"Lestoil\": [\n        \"NNP\"\n    ], \n    \"headquartered\": [\n        \"VBN\"\n    ], \n    \"Recruit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"beyond-normal\": [\n        \"JJ\"\n    ], \n    \"Kaminsky\": [\n        \"NNP\"\n    ], \n    \"malnourished\": [\n        \"JJ\"\n    ], \n    \"UNVEILED\": [\n        \"VBD\"\n    ], \n    \"Matisse\": [\n        \"NNP\"\n    ], \n    \"hooliganism\": [\n        \"NN\"\n    ], \n    \"contrived\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Researching\": [\n        \"VBG\"\n    ], \n    \"index-arbitrage\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"snazzier\": [\n        \"JJR\"\n    ], \n    \"microinjection\": [\n        \"NN\"\n    ], \n    \"wingbeat\": [\n        \"NN\"\n    ], \n    \"ego\": [\n        \"NN\"\n    ], \n    \"McKENZIE\": [\n        \"NNP\"\n    ], \n    \"Existence\": [\n        \"NN\"\n    ], \n    \"methanol-gasoline\": [\n        \"JJ\"\n    ], \n    \"egg\": [\n        \"NN\"\n    ], \n    \"Domenici\": [\n        \"NNP\"\n    ], \n    \"T.S.\": [\n        \"NNP\"\n    ], \n    \"reservoir\": [\n        \"NN\"\n    ], \n    \"mucosa\": [\n        \"NN\"\n    ], \n    \"Illinois\": [\n        \"NNP\"\n    ], \n    \"brown-edged\": [\n        \"JJ\"\n    ], \n    \"Horst\": [\n        \"NNP\"\n    ], \n    \"unfertilized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"estancieros\": [\n        \"NNS\"\n    ], \n    \"Dresbach\": [\n        \"NNP\"\n    ], \n    \"reminiscences\": [\n        \"NNS\"\n    ], \n    \"dummies\": [\n        \"NNS\"\n    ], \n    \"benefits-for-all\": [\n        \"JJ\"\n    ], \n    \"romance\": [\n        \"NN\"\n    ], \n    \"Vizas\": [\n        \"NNP\"\n    ], \n    \"AON\": [\n        \"NNP\"\n    ], \n    \"lateral\": [\n        \"JJ\"\n    ], \n    \"solving\": [\n        \"VBG\"\n    ], \n    \"interloping\": [\n        \"VBG\"\n    ], \n    \"Ahlerich\": [\n        \"NNP\"\n    ], \n    \"followeth\": [\n        \"VBZ\"\n    ], \n    \"relate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"peanuts\": [\n        \"NNS\"\n    ], \n    \"Surgeon\": [\n        \"NNP\"\n    ], \n    \"Zayed\": [\n        \"NNP\"\n    ], \n    \"Macari\": [\n        \"NNP\"\n    ], \n    \"temperatures\": [\n        \"NNS\"\n    ], \n    \"roomful\": [\n        \"NN\"\n    ], \n    \"repatriating\": [\n        \"VBG\"\n    ], \n    \"BROAD\": [\n        \"NNP\"\n    ], \n    \"demographics\": [\n        \"NNS\"\n    ], \n    \"Bulow\": [\n        \"NNP\"\n    ], \n    \"Macare\": [\n        \"NNP\"\n    ], \n    \"motivates\": [\n        \"VBZ\"\n    ], \n    \"moaning\": [\n        \"VBG\"\n    ], \n    \"ADVERTISING\": [\n        \"NNP\"\n    ], \n    \"training-wage\": [\n        \"JJ\"\n    ], \n    \"belt-tightening\": [\n        \"NNS\"\n    ], \n    \"towering\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"Dominic\": [\n        \"NNP\"\n    ], \n    \"Sturch\": [\n        \"NNP\"\n    ], \n    \"Allemands\": [\n        \"NNP\"\n    ], \n    \"payer\": [\n        \"NN\"\n    ], \n    \"dulled\": [\n        \"VBN\"\n    ], \n    \"boiler-burner\": [\n        \"NN\"\n    ], \n    \"attacks\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"out-of-synch\": [\n        \"JJ\"\n    ], \n    \"cleaners\": [\n        \"NNS\"\n    ], \n    \"duller\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"stickman\": [\n        \"NN\"\n    ], \n    \"yearningly\": [\n        \"RB\"\n    ], \n    \"middle-priced\": [\n        \"JJ\"\n    ], \n    \"base-metal\": [\n        \"NN\"\n    ], \n    \"Threadgill\": [\n        \"NNP\"\n    ], \n    \"Exhibition\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tode\": [\n        \"VBN\"\n    ], \n    \"quantum\": [\n        \"NN\"\n    ], \n    \"inspections\": [\n        \"NNS\"\n    ], \n    \"event\": [\n        \"NN\"\n    ], \n    \"steered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Pagong\": [\n        \"NNP\"\n    ], \n    \"viability\": [\n        \"NN\"\n    ], \n    \"Mangino\": [\n        \"NNP\"\n    ], \n    \"cave-like\": [\n        \"JJ\"\n    ], \n    \"cigaret\": [\n        \"NN\"\n    ], \n    \"bale\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"grimace\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"meteoric\": [\n        \"JJ\"\n    ], \n    \"Locate\": [\n        \"VB\"\n    ], \n    \"expansive\": [\n        \"JJ\"\n    ], \n    \"bald\": [\n        \"JJ\"\n    ], \n    \"wine-making\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Plaza\": [\n        \"NNP\"\n    ], \n    \"According\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"MediVision\": [\n        \"NNP\"\n    ], \n    \"vigorous\": [\n        \"JJ\"\n    ], \n    \"touchstones\": [\n        \"NNS\"\n    ], \n    \"resettle\": [\n        \"VB\"\n    ], \n    \"earliest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"Researchers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"poultry-loving\": [\n        \"JJ\"\n    ], \n    \"revolutionary\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Front-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Pater\": [\n        \"NNP\"\n    ], \n    \"incipiency\": [\n        \"NN\"\n    ], \n    \"liaison\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"incipience\": [\n        \"NN\"\n    ], \n    \"Patel\": [\n        \"NNP\"\n    ], \n    \"Euro-ashtrays\": [\n        \"NNS\"\n    ], \n    \"corrupting\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"financed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"cut-and-dried\": [\n        \"JJ\"\n    ], \n    \"cetera\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"booboos\": [\n        \"NNS\"\n    ], \n    \"Manson\": [\n        \"NNP\"\n    ], \n    \"Durable\": [\n        \"JJ\"\n    ], \n    \"whirling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"industrially\": [\n        \"RB\"\n    ], \n    \"Detroit-area\": [\n        \"JJ\"\n    ], \n    \"loadings\": [\n        \"NNS\"\n    ], \n    \"Callender\": [\n        \"NNP\"\n    ], \n    \"Waksman\": [\n        \"NNP\"\n    ], \n    \"wingman\": [\n        \"NN\"\n    ], \n    \"perturbation\": [\n        \"NN\"\n    ], \n    \"harmlessly\": [\n        \"RB\"\n    ], \n    \"SHAREDATA\": [\n        \"NNP\"\n    ], \n    \"generalities\": [\n        \"NNS\"\n    ], \n    \"video-store\": [\n        \"NN\"\n    ], \n    \"line-hand-wired\": [\n        \"JJ\"\n    ], \n    \"Feels\": [\n        \"VBZ\"\n    ], \n    \"LaCroix\": [\n        \"NNP\"\n    ], \n    \"Threaded\": [\n        \"VBN\"\n    ], \n    \"antibacterial\": [\n        \"JJ\"\n    ], \n    \"biochemists\": [\n        \"NNS\"\n    ], \n    \"blindly\": [\n        \"RB\"\n    ], \n    \"taxable\": [\n        \"JJ\"\n    ], \n    \"Prosser\": [\n        \"NNP\"\n    ], \n    \"Parkway\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Athalie\": [\n        \"NNP\"\n    ], \n    \"Gravelle\": [\n        \"NNP\"\n    ], \n    \"debt-happy\": [\n        \"JJ\"\n    ], \n    \"lament\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Winn-Dixie\": [\n        \"NNP\"\n    ], \n    \"McKellar\": [\n        \"NNP\"\n    ], \n    \"trudge\": [\n        \"NN\"\n    ], \n    \"derriere\": [\n        \"NN\"\n    ], \n    \"Stiling\": [\n        \"NNP\"\n    ], \n    \"Turchin\": [\n        \"NNP\"\n    ], \n    \"Officials\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Mimesis\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Guillermo\": [\n        \"NNP\"\n    ], \n    \"wonderment\": [\n        \"NN\"\n    ], \n    \"quacked\": [\n        \"VBD\"\n    ], \n    \"sentenced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"forensics\": [\n        \"NNS\"\n    ], \n    \"Selkin\": [\n        \"NNP\"\n    ], \n    \"Regions\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Kimberly\": [\n        \"NNP\"\n    ], \n    \"political-action\": [\n        \"JJ\"\n    ], \n    \"Kasper\": [\n        \"NNP\"\n    ], \n    \"policymakers\": [\n        \"NNS\"\n    ], \n    \"sentences\": [\n        \"NNS\"\n    ], \n    \"congresssional\": [\n        \"JJ\"\n    ], \n    \"Kaman\": [\n        \"NNP\"\n    ], \n    \"concentration\": [\n        \"NN\"\n    ], \n    \"Kamal\": [\n        \"NNP\"\n    ], \n    \"Corporate\\\\/investor\": [\n        \"NN\"\n    ], \n    \"soubriquet\": [\n        \"FW\"\n    ], \n    \"Witt\": [\n        \"NNP\"\n    ], \n    \"curbside\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"anti-U.S.\": [\n        \"JJ\"\n    ], \n    \"suddenness\": [\n        \"NN\"\n    ], \n    \"Stram\": [\n        \"NNP\"\n    ], \n    \"Galilee\": [\n        \"NNP\"\n    ], \n    \"Drogerias\": [\n        \"NNP\"\n    ], \n    \"comprehended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"showcases\": [\n        \"NNS\"\n    ], \n    \"Galileo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Forked\": [\n        \"NNP\"\n    ], \n    \"industralization\": [\n        \"NN\"\n    ], \n    \"With\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"Spirit\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"natural-law\": [\n        \"NN\"\n    ], \n    \"Obligingly\": [\n        \"RB\"\n    ], \n    \"Celtona\": [\n        \"NNP\"\n    ], \n    \"Zalubice\": [\n        \"NNP\"\n    ], \n    \"Rage\": [\n        \"NN\"\n    ], \n    \"Permanente\": [\n        \"NNP\"\n    ], \n    \"approves\": [\n        \"VBZ\"\n    ], \n    \"Optimism\": [\n        \"NN\"\n    ], \n    \"mega-stadium\": [\n        \"NN\"\n    ], \n    \"silver-conspiracy\": [\n        \"NN\"\n    ], \n    \"Chagall\": [\n        \"NNP\"\n    ], \n    \"Ragu\": [\n        \"NNP\"\n    ], \n    \"watt\": [\n        \"NN\"\n    ], \n    \"Economically\": [\n        \"RB\"\n    ], \n    \"mobile\": [\n        \"JJ\"\n    ], \n    \"performances\": [\n        \"NNS\"\n    ], \n    \"Brachfeld\": [\n        \"NNP\"\n    ], \n    \"snapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Melodramatic\": [\n        \"JJ\"\n    ], \n    \"Seagle\": [\n        \"NNP\"\n    ], \n    \"outhouse\": [\n        \"NN\"\n    ], \n    \"triphenylphosphine\": [\n        \"NN\"\n    ], \n    \"hints\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"succor\": [\n        \"NN\"\n    ], \n    \"gunman\": [\n        \"NN\"\n    ], \n    \"nonspecific\": [\n        \"JJ\"\n    ], \n    \"lordship\": [\n        \"NN\"\n    ], \n    \"Colgate-Palmolive\": [\n        \"NNP\"\n    ], \n    \"Etsuko\": [\n        \"NNP\"\n    ], \n    \"Zuckerman\": [\n        \"NNP\"\n    ], \n    \"stunned\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"vindication\": [\n        \"NN\"\n    ], \n    \"celebrities\": [\n        \"NNS\"\n    ], \n    \"tenet\": [\n        \"NN\"\n    ], \n    \"plastic-body\": [\n        \"JJ\"\n    ], \n    \"impressively\": [\n        \"RB\"\n    ], \n    \"multilateral\": [\n        \"JJ\"\n    ], \n    \"octaves\": [\n        \"NNS\"\n    ], \n    \"dimension\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Dandy\": [\n        \"NNP\"\n    ], \n    \"grafted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Populaires\": [\n        \"NNP\"\n    ], \n    \"parameters\": [\n        \"NNS\"\n    ], \n    \"Braathens\": [\n        \"NNP\"\n    ], \n    \"working-girl\": [\n        \"NN\"\n    ], \n    \"Transports\": [\n        \"NNS\"\n    ], \n    \"pooling-of-interests\": [\n        \"JJ\"\n    ], \n    \"SENATE\": [\n        \"NNP\"\n    ], \n    \"flights\": [\n        \"NNS\"\n    ], \n    \"prior-notice\": [\n        \"JJ\"\n    ], \n    \"beauteous\": [\n        \"JJ\"\n    ], \n    \"inadvisable\": [\n        \"JJ\"\n    ], \n    \"flighty\": [\n        \"JJ\"\n    ], \n    \"Guys\": [\n        \"NNS\"\n    ], \n    \"frogmen\": [\n        \"NNS\"\n    ], \n    \"Hypotheekkas\": [\n        \"NNP\"\n    ], \n    \"quibusdam\": [\n        \"FW\"\n    ], \n    \"once-sleepy\": [\n        \"JJ\"\n    ], \n    \"albeit\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"blood-flow\": [\n        \"NNS\"\n    ], \n    \"dealings\": [\n        \"NNS\"\n    ], \n    \"capsule\": [\n        \"NN\"\n    ], \n    \"Pesticide\": [\n        \"NNP\"\n    ], \n    \"Jefferies\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Eq.\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"blutwurst\": [\n        \"NN\"\n    ], \n    \"Bottorff\": [\n        \"NNP\"\n    ], \n    \"intensify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"representives\": [\n        \"NNS\"\n    ], \n    \"Brecht\": [\n        \"NNP\"\n    ], \n    \"gels\": [\n        \"VBZ\"\n    ], \n    \"transgenic\": [\n        \"JJ\"\n    ], \n    \"vanquish\": [\n        \"VB\"\n    ], \n    \"hobbles\": [\n        \"VBZ\"\n    ], \n    \"Ying-shek\": [\n        \"NNP\"\n    ], \n    \"Lorentz\": [\n        \"NNP\"\n    ], \n    \"double\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"hobbled\": [\n        \"VBN\"\n    ], \n    \"Huron\": [\n        \"NNP\"\n    ], \n    \"Hurok\": [\n        \"NNP\"\n    ], \n    \"Wustman\": [\n        \"NNP\"\n    ], \n    \"throwing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"plausibly\": [\n        \"RB\"\n    ], \n    \"plausible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"accelerators\": [\n        \"NNS\"\n    ], \n    \"baldness\": [\n        \"NN\"\n    ], \n    \"auction-house\": [\n        \"NN\"\n    ], \n    \"gravitation\": [\n        \"NN\"\n    ], \n    \"probable\": [\n        \"JJ\"\n    ], \n    \"JEDEC\": [\n        \"NN\"\n    ], \n    \"Brains\": [\n        \"NNS\"\n    ], \n    \"Minato-Mirai\": [\n        \"NNP\"\n    ], \n    \"Wirth\": [\n        \"NNP\"\n    ], \n    \"news-release\": [\n        \"NN\"\n    ], \n    \"Blain\": [\n        \"NNP\"\n    ], \n    \"probably\": [\n        \"RB\"\n    ], \n    \"cautions\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"tax-software\": [\n        \"NN\"\n    ], \n    \"Wirtz\": [\n        \"NNP\"\n    ], \n    \"bigots\": [\n        \"NNS\"\n    ], \n    \"Sant\": [\n        \"NNP\"\n    ], \n    \"less-binding\": [\n        \"JJ\"\n    ], \n    \"unserious\": [\n        \"JJ\"\n    ], \n    \"Prandini\": [\n        \"NNP\"\n    ], \n    \"subnational\": [\n        \"JJ\"\n    ], \n    \"civilian-aircraft\": [\n        \"NN\"\n    ], \n    \"Constable\": [\n        \"NNP\"\n    ], \n    \"generous\": [\n        \"JJ\"\n    ], \n    \"Conceding\": [\n        \"VBG\"\n    ], \n    \"Sang\": [\n        \"NNP\", \n        \"VBD\"\n    ], \n    \"Sand\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Sane\": [\n        \"NNP\"\n    ], \n    \"Chemfix\": [\n        \"NNP\"\n    ], \n    \"Sann\": [\n        \"NNP\"\n    ], \n    \"pinstripe-suited\": [\n        \"JJ\"\n    ], \n    \"JUDGES\": [\n        \"NNS\"\n    ], \n    \"delimit\": [\n        \"VB\"\n    ], \n    \"Pte.\": [\n        \"NNP\"\n    ], \n    \"fiance\": [\n        \"NN\"\n    ], \n    \"polyrhythms\": [\n        \"NNS\"\n    ], \n    \"Playboy-at-Night\": [\n        \"NNP\"\n    ], \n    \"truck-rental\": [\n        \"JJ\"\n    ], \n    \"vaster\": [\n        \"JJR\"\n    ], \n    \"Keegan\": [\n        \"NNP\"\n    ], \n    \"Wooten\": [\n        \"NNP\"\n    ], \n    \"super-condamine\": [\n        \"NN\"\n    ], \n    \"breakneck\": [\n        \"JJ\"\n    ], \n    \"parakeets\": [\n        \"NNS\"\n    ], \n    \"whatever\": [\n        \"WDT\", \n        \"RB\", \n        \"WP\"\n    ], \n    \"steely\": [\n        \"JJ\"\n    ], \n    \"monumentality\": [\n        \"NN\"\n    ], \n    \"homogeneously\": [\n        \"RB\"\n    ], \n    \"Love\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"steels\": [\n        \"NNS\"\n    ], \n    \"mumble\": [\n        \"NN\"\n    ], \n    \"Hanover-Justitia\": [\n        \"NNP\"\n    ], \n    \"horticulture\": [\n        \"NN\"\n    ], \n    \"Shaker\": [\n        \"NNP\"\n    ], \n    \"primetime\": [\n        \"NN\"\n    ], \n    \"Khartoum\": [\n        \"NNP\"\n    ], \n    \"hirelings\": [\n        \"NNS\"\n    ], \n    \"Shaken\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"collectible\": [\n        \"JJ\"\n    ], \n    \"art-acquisition\": [\n        \"JJ\"\n    ], \n    \"Metronome\": [\n        \"NNP\"\n    ], \n    \"ruble\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"investigative-reporting\": [\n        \"NN\"\n    ], \n    \"deter\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"logjam\": [\n        \"NN\"\n    ], \n    \"end-run\": [\n        \"NN\"\n    ], \n    \"Universal-Rundle\": [\n        \"NNP\"\n    ], \n    \"folklore\": [\n        \"NN\"\n    ], \n    \"VaxSyn\": [\n        \"NNP\"\n    ], \n    \"tactual\": [\n        \"JJ\"\n    ], \n    \"Todays\": [\n        \"NNP\"\n    ], \n    \"drugstore\": [\n        \"NN\"\n    ], \n    \"battling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"animates\": [\n        \"VBZ\"\n    ], \n    \"vagabondage\": [\n        \"NN\"\n    ], \n    \"Cursed\": [\n        \"VBN\"\n    ], \n    \"shop-by-catalog\": [\n        \"JJ\"\n    ], \n    \"fleas\": [\n        \"NNS\"\n    ], \n    \"product-testing\": [\n        \"NN\"\n    ], \n    \"fleet\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"animated\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"debt-restructuring\": [\n        \"JJ\"\n    ], \n    \"flees\": [\n        \"VBZ\"\n    ], \n    \"gala\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"clobbers\": [\n        \"VBZ\"\n    ], \n    \"topof-the-line\": [\n        \"JJ\"\n    ], \n    \"Bauernfeind\": [\n        \"NNP\"\n    ], \n    \"copiers\": [\n        \"NNS\"\n    ], \n    \"bellowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"steel-recycling\": [\n        \"JJ\"\n    ], \n    \"loosened\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"simian\": [\n        \"JJ\"\n    ], \n    \"Mysteries\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"barrier-island\": [\n        \"NN\"\n    ], \n    \"faires\": [\n        \"NNS\"\n    ], \n    \"fairer\": [\n        \"JJR\"\n    ], \n    \"riotous\": [\n        \"JJ\"\n    ], \n    \"Industriel\": [\n        \"FW\"\n    ], \n    \"autopsied\": [\n        \"VBN\"\n    ], \n    \"FAX\": [\n        \"NNP\"\n    ], \n    \"counterclaims\": [\n        \"NNS\"\n    ], \n    \"seismographs\": [\n        \"NNS\"\n    ], \n    \"FAR\": [\n        \"RB\"\n    ], \n    \"Understanding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"subliminal\": [\n        \"JJ\"\n    ], \n    \"unpromising\": [\n        \"JJ\"\n    ], \n    \"FAI\": [\n        \"NNP\"\n    ], \n    \"FAN\": [\n        \"NN\"\n    ], \n    \"autopsies\": [\n        \"NNS\"\n    ], \n    \"mid-November\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"FAC\": [\n        \"NNP\"\n    ], \n    \"Schimberg\": [\n        \"NNP\"\n    ], \n    \"distrubition\": [\n        \"NN\"\n    ], \n    \"lawyers\": [\n        \"NNS\"\n    ], \n    \"Testaments\": [\n        \"NNP\"\n    ], \n    \"fulfilment\": [\n        \"NN\"\n    ], \n    \"robustly\": [\n        \"RB\"\n    ], \n    \"cleaning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"ENFIELD\": [\n        \"NNP\"\n    ], \n    \"tiering\": [\n        \"NN\"\n    ], \n    \"bull-market\": [\n        \"NN\"\n    ], \n    \"Payco\": [\n        \"NNP\"\n    ], \n    \"Standardized\": [\n        \"JJ\"\n    ], \n    \"indefinable\": [\n        \"JJ\"\n    ], \n    \"Distances\": [\n        \"NNS\"\n    ], \n    \"comas\": [\n        \"NNS\"\n    ], \n    \"Kurtz\": [\n        \"NNP\"\n    ], \n    \"database\": [\n        \"NN\"\n    ], \n    \"bank-embezzlement\": [\n        \"JJ\"\n    ], \n    \"shoe-horned\": [\n        \"VBN\"\n    ], \n    \"headlining\": [\n        \"VBG\"\n    ], \n    \"Savimbi\": [\n        \"NNP\"\n    ], \n    \"Kurth\": [\n        \"NNP\"\n    ], \n    \"savvy\": [\n        \"JJ\", \n        \"VB\", \n        \"NN\"\n    ], \n    \"Interama\": [\n        \"NNP\"\n    ], \n    \"ambassador\": [\n        \"NN\"\n    ], \n    \"abstain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Exchequer\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"judgments\": [\n        \"NNS\"\n    ], \n    \"derring\": [\n        \"NN\"\n    ], \n    \"CCT\": [\n        \"NNP\"\n    ], \n    \"game-shows\": [\n        \"NNS\"\n    ], \n    \"Bernard\": [\n        \"NNP\"\n    ], \n    \"CCK\": [\n        \"NNP\"\n    ], \n    \"CCD\": [\n        \"NNP\"\n    ], \n    \"CCC\": [\n        \"NNP\"\n    ], \n    \"Middle-South\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"cast-iron\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"over-the-counter\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"fiancee\": [\n        \"NN\"\n    ], \n    \"Gratt\": [\n        \"NNP\"\n    ], \n    \"Proving\": [\n        \"NNP\"\n    ], \n    \"Pimen\": [\n        \"NNP\"\n    ], \n    \"buckboards\": [\n        \"NNS\"\n    ], \n    \"Rafael\": [\n        \"NNP\"\n    ], \n    \"schoolwork\": [\n        \"NN\"\n    ], \n    \"heavy-faced\": [\n        \"JJ\"\n    ], \n    \"Cerinvest\": [\n        \"NNP\"\n    ], \n    \"fabulously\": [\n        \"RB\"\n    ], \n    \"stein\": [\n        \"NN\"\n    ], \n    \"defies\": [\n        \"VBZ\"\n    ], \n    \"Shimson\": [\n        \"NNP\"\n    ], \n    \"Arkoma\": [\n        \"NNP\"\n    ], \n    \"LASHED\": [\n        \"VBD\"\n    ], \n    \"Messrs.\": [\n        \"NNPS\", \n        \"NN\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"overthrown\": [\n        \"VBN\"\n    ], \n    \"defied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Cincinnati\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"outselling\": [\n        \"VBG\"\n    ], \n    \"roughneck\": [\n        \"NN\"\n    ], \n    \"manifest\": [\n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Surgical\": [\n        \"NNP\"\n    ], \n    \"R.B.\": [\n        \"NNP\"\n    ], \n    \"Celimene\": [\n        \"NNP\"\n    ], \n    \"ingratiating\": [\n        \"JJ\"\n    ], \n    \"Britain-dominated\": [\n        \"JJ\"\n    ], \n    \"mouth-to-mouth\": [\n        \"JJ\"\n    ], \n    \"G-24\": [\n        \"NNP\"\n    ], \n    \"refracted\": [\n        \"VBD\"\n    ], \n    \"saddled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"centralize\": [\n        \"VB\"\n    ], \n    \"Little\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"economic-development\": [\n        \"NN\"\n    ], \n    \"parade\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"soma\": [\n        \"NN\"\n    ], \n    \"fathers\": [\n        \"NNS\"\n    ], \n    \"some\": [\n        \"DT\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"undress\": [\n        \"NN\"\n    ], \n    \"wohaws\": [\n        \"NNS\"\n    ], \n    \"one-way\": [\n        \"JJ\"\n    ], \n    \"saddles\": [\n        \"NNS\"\n    ], \n    \"Boddington\": [\n        \"NNP\"\n    ], \n    \"lifelike\": [\n        \"JJ\"\n    ], \n    \"Momentum\": [\n        \"NN\"\n    ], \n    \"Donors\": [\n        \"NNS\"\n    ], \n    \"Ultracentrifugation\": [\n        \"NN\"\n    ], \n    \"Moscow\": [\n        \"NNP\"\n    ], \n    \"stagger\": [\n        \"VB\"\n    ], \n    \"Moscom\": [\n        \"NNP\"\n    ], \n    \"sophomores\": [\n        \"NNS\"\n    ], \n    \"Bonasorte\": [\n        \"NNP\"\n    ], \n    \"Arriving\": [\n        \"VBG\"\n    ], \n    \"slapstick\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"boy-furiendo\": [\n        \"NN\"\n    ], \n    \"dehydrate\": [\n        \"VB\"\n    ], \n    \"Cygnus\": [\n        \"NNP\"\n    ], \n    \"Schelling\": [\n        \"NNP\"\n    ], \n    \"fibrocalcific\": [\n        \"JJ\"\n    ], \n    \"raspberry\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"neutrophils\": [\n        \"NNS\"\n    ], \n    \"lower-house\": [\n        \"NN\"\n    ], \n    \"react\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"good-humored\": [\n        \"JJ\"\n    ], \n    \"gnome\": [\n        \"NN\"\n    ], \n    \"concretely\": [\n        \"RB\"\n    ], \n    \"tracing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"re-emergence\": [\n        \"NN\"\n    ], \n    \"in-depth\": [\n        \"JJ\"\n    ], \n    \"Dyncorp.\": [\n        \"NNP\"\n    ], \n    \"Sandor\": [\n        \"NNP\"\n    ], \n    \"Committee\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Committed\": [\n        \"VBN\"\n    ], \n    \"Sandoz\": [\n        \"NNP\"\n    ], \n    \"Trans-illuminated\": [\n        \"JJ\"\n    ], \n    \"Silone\": [\n        \"NNP\"\n    ], \n    \"diisocyanate\": [\n        \"NN\"\n    ], \n    \"wall-switch\": [\n        \"NN\"\n    ], \n    \"Eli\": [\n        \"NNP\"\n    ], \n    \"Elm\": [\n        \"NNP\"\n    ], \n    \"Rascal\": [\n        \"NN\"\n    ], \n    \"encircling\": [\n        \"VBG\"\n    ], \n    \"Turgut\": [\n        \"NNP\"\n    ], \n    \"supra-personal\": [\n        \"JJ\"\n    ], \n    \"Ely\": [\n        \"NNP\"\n    ], \n    \"half-swamped\": [\n        \"JJ\"\n    ], \n    \"Marlboros\": [\n        \"NNPS\"\n    ], \n    \"pentagon\": [\n        \"NN\"\n    ], \n    \"Kamieniec\": [\n        \"NNP\"\n    ], \n    \"revealing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Designs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"statistics\": [\n        \"NNS\"\n    ], \n    \"innate\": [\n        \"JJ\"\n    ], \n    \"pavian\": [\n        \"FW\"\n    ], \n    \"Gathered\": [\n        \"VBN\"\n    ], \n    \"sub-chiefdom\": [\n        \"NN\"\n    ], \n    \"bantering\": [\n        \"VBG\"\n    ], \n    \"bear-like\": [\n        \"JJ\"\n    ], \n    \"Gatherer\": [\n        \"NNP\"\n    ], \n    \"newsworthy\": [\n        \"JJ\"\n    ], \n    \"Needham\": [\n        \"NNP\"\n    ], \n    \"Sutton\": [\n        \"NNP\"\n    ], \n    \"three-member\": [\n        \"JJ\"\n    ], \n    \"Pathet\": [\n        \"NNP\"\n    ], \n    \"approvingly\": [\n        \"RB\"\n    ], \n    \"Peacocks\": [\n        \"NNS\"\n    ], \n    \"frost\": [\n        \"NN\"\n    ], \n    \"Klinico\": [\n        \"NNP\"\n    ], \n    \"reiterated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Microbiological\": [\n        \"NNP\"\n    ], \n    \"get-rich-quick\": [\n        \"JJ\"\n    ], \n    \"women-trodden\": [\n        \"JJ\"\n    ], \n    \"reiterates\": [\n        \"VBZ\"\n    ], \n    \"Tampa.\": [\n        \"NNP\"\n    ], \n    \"Lewiston\": [\n        \"NNP\"\n    ], \n    \"facilites\": [\n        \"NNS\"\n    ], \n    \"duds\": [\n        \"NNS\"\n    ], \n    \"swagger\": [\n        \"NN\"\n    ], \n    \"microorganisms\": [\n        \"NNS\"\n    ], \n    \"restarted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"stumbling\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Packards\": [\n        \"NNPS\"\n    ], \n    \"Helena\": [\n        \"NNP\"\n    ], \n    \"cautiously\": [\n        \"RB\"\n    ], \n    \"Helene\": [\n        \"NNP\"\n    ], \n    \"Straub\": [\n        \"NNP\"\n    ], \n    \"Cremonie\": [\n        \"NNP\"\n    ], \n    \"GOLF\": [\n        \"NN\"\n    ], \n    \"GOLD\": [\n        \"NN\"\n    ], \n    \"Personnel\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Elrick\": [\n        \"NNP\"\n    ], \n    \"overweighted\": [\n        \"VBN\"\n    ], \n    \"metals\": [\n        \"NNS\"\n    ], \n    \"estrangement\": [\n        \"NN\"\n    ], \n    \"Mahatma\": [\n        \"NNP\"\n    ], \n    \"non-horticultural\": [\n        \"JJ\"\n    ], \n    \"A$\": [\n        \"$\"\n    ], \n    \"objection\": [\n        \"NN\"\n    ], \n    \"deconstructed\": [\n        \"JJ\"\n    ], \n    \"prerogative\": [\n        \"NN\"\n    ], \n    \"Promenade\": [\n        \"NNP\"\n    ], \n    \"federation\": [\n        \"NN\"\n    ], \n    \"contenting\": [\n        \"VBG\"\n    ], \n    \"preflight\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pronouns\": [\n        \"NNS\"\n    ], \n    \"Oncotech\": [\n        \"NNP\"\n    ], \n    \"indecipherable\": [\n        \"JJ\"\n    ], \n    \"Siebel\": [\n        \"NNP\"\n    ], \n    \"Weapon\": [\n        \"NNP\"\n    ], \n    \"order-matching\": [\n        \"NNS\"\n    ], \n    \"AA\": [\n        \"JJ\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"draw\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Lutte\": [\n        \"NNP\"\n    ], \n    \"Reverse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Putas\": [\n        \"NNP\"\n    ], \n    \"crouching\": [\n        \"VBG\"\n    ], \n    \"NCTA\": [\n        \"NNP\"\n    ], \n    \"AM\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"AL\": [\n        \"NNP\"\n    ], \n    \"AN\": [\n        \"DT\"\n    ], \n    \"william\": [\n        \"NN\"\n    ], \n    \"Ziffren\": [\n        \"NNP\"\n    ], \n    \"drag\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"AT\": [\n        \"IN\", \n        \"NNP\"\n    ], \n    \"drab\": [\n        \"JJ\"\n    ], \n    \"dram\": [\n        \"NN\"\n    ], \n    \"henchman\": [\n        \"NN\"\n    ], \n    \"Coronation\": [\n        \"NNP\"\n    ], \n    \"Silvercrest\": [\n        \"NNP\"\n    ], \n    \"structure\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"sun-warmed\": [\n        \"JJ\"\n    ], \n    \"Ad\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Taunton\": [\n        \"NNP\"\n    ], \n    \"Ah\": [\n        \"UH\", \n        \"PRP\"\n    ], \n    \"outing\": [\n        \"NN\"\n    ], \n    \"Am\": [\n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Al\": [\n        \"NNP\"\n    ], \n    \"An\": [\n        \"DT\", \n        \"NNP\", \n        \"CC\"\n    ], \n    \"pamphlets\": [\n        \"NNS\"\n    ], \n    \"As\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"tandem\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Au\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"genetic-engineering\": [\n        \"JJ\"\n    ], \n    \"Aw\": [\n        \"UH\", \n        \"RB\"\n    ], \n    \"Av\": [\n        \"NNP\"\n    ], \n    \"Crete\": [\n        \"NNP\"\n    ], \n    \"Ax\": [\n        \"NNP\"\n    ], \n    \"bogging\": [\n        \"VBG\"\n    ], \n    \"Establish\": [\n        \"VB\"\n    ], \n    \"co-author\": [\n        \"NN\"\n    ], \n    \"BRAINTRUSTERS\": [\n        \"NNS\"\n    ], \n    \"Gie\": [\n        \"NNP\"\n    ], \n    \"proposition\": [\n        \"NN\"\n    ], \n    \"newsworthiness\": [\n        \"NN\"\n    ], \n    \"Gin\": [\n        \"NNP\"\n    ], \n    \"Gil\": [\n        \"NNP\"\n    ], \n    \"ammonia\": [\n        \"NN\"\n    ], \n    \"Revision\": [\n        \"NNP\"\n    ], \n    \"hemosiderin\": [\n        \"NN\"\n    ], \n    \"Anti-union\": [\n        \"JJ\"\n    ], \n    \"obedience-trained\": [\n        \"JJ\"\n    ], \n    \"Benchmark\": [\n        \"JJ\"\n    ], \n    \"attackers\": [\n        \"NNS\"\n    ], \n    \"geranium\": [\n        \"NN\"\n    ], \n    \"Garine\": [\n        \"NNP\"\n    ], \n    \"small-town\": [\n        \"JJ\"\n    ], \n    \"wayside\": [\n        \"NN\"\n    ], \n    \"bedrock\": [\n        \"NN\"\n    ], \n    \"moribund\": [\n        \"JJ\"\n    ], \n    \"Kaysersberg\": [\n        \"NNP\"\n    ], \n    \"liberality\": [\n        \"NN\"\n    ], \n    \"drab-haired\": [\n        \"JJ\"\n    ], \n    \"Xavier\": [\n        \"NNP\"\n    ], \n    \"Strieber\": [\n        \"NNP\"\n    ], \n    \"Feeling\": [\n        \"VBG\"\n    ], \n    \"slopped\": [\n        \"VBD\"\n    ], \n    \"Decoma\": [\n        \"NNP\"\n    ], \n    \"Wallachs\": [\n        \"NNP\"\n    ], \n    \"Christiania\": [\n        \"NNP\"\n    ], \n    \"homicidal\": [\n        \"JJ\"\n    ], \n    \"stiff\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Brisbane\": [\n        \"NNP\"\n    ], \n    \"gender\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"button\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"hive\": [\n        \"NN\"\n    ], \n    \"Bizet\": [\n        \"NNP\"\n    ], \n    \"catastrophes\": [\n        \"NNS\"\n    ], \n    \"shish\": [\n        \"NN\"\n    ], \n    \"Scotch-Irish-Scandinavian\": [\n        \"NNP\"\n    ], \n    \"comforts\": [\n        \"NNS\"\n    ], \n    \"drag-down\": [\n        \"JJ\"\n    ], \n    \"pater\": [\n        \"NN\"\n    ], \n    \"Euro-Communist\": [\n        \"NNP\"\n    ], \n    \"Marist\": [\n        \"NNP\"\n    ], \n    \"anti-development\": [\n        \"JJ\"\n    ], \n    \"FOREIGN\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"naggings\": [\n        \"NNS\"\n    ], \n    \"carted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"imbecility\": [\n        \"NN\"\n    ], \n    \"cartel\": [\n        \"NN\"\n    ], \n    \"plays\": [\n        \"VBZ\", \n        \"NNS\", \n        \"VBP\"\n    ], \n    \"Celebrating\": [\n        \"NNP\"\n    ], \n    \"ribald\": [\n        \"JJ\"\n    ], \n    \"Bronislaw\": [\n        \"NNP\"\n    ], \n    \"SLOGANS\": [\n        \"NNS\"\n    ], \n    \"Properly\": [\n        \"RB\"\n    ], \n    \"poles\": [\n        \"NNS\"\n    ], \n    \"pristine\": [\n        \"JJ\"\n    ], \n    \"more-mainstream\": [\n        \"JJ\"\n    ], \n    \"Jagt\": [\n        \"NNP\"\n    ], \n    \"Volatility\": [\n        \"NN\"\n    ], \n    \"Tipoff\": [\n        \"NNP\"\n    ], \n    \"Sealtest\": [\n        \"NNP\"\n    ], \n    \"shoreline\": [\n        \"NN\"\n    ], \n    \"filings\": [\n        \"NNS\"\n    ], \n    \"playwriting\": [\n        \"NN\"\n    ], \n    \"ventilates\": [\n        \"VBZ\"\n    ], \n    \"adulterate\": [\n        \"VB\"\n    ], \n    \"then-chairman\": [\n        \"NN\"\n    ], \n    \"Egger\": [\n        \"NNP\"\n    ], \n    \"L.F.\": [\n        \"NNP\"\n    ], \n    \"news-oriented\": [\n        \"JJ\"\n    ], \n    \"Verde\": [\n        \"NNP\"\n    ], \n    \"Psyllium\": [\n        \"NN\"\n    ], \n    \"withdrawing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"art-world\": [\n        \"NN\"\n    ], \n    \"bookkeeper\": [\n        \"NN\"\n    ], \n    \"non-defense\": [\n        \"JJ\"\n    ], \n    \"maneuverability\": [\n        \"NN\"\n    ], \n    \"Utter\": [\n        \"NNP\"\n    ], \n    \"commendable\": [\n        \"JJ\"\n    ], \n    \"daybreak\": [\n        \"NN\"\n    ], \n    \"stabilization\": [\n        \"NN\"\n    ], \n    \"addresses\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"lords\": [\n        \"NNS\"\n    ], \n    \"C&D\": [\n        \"NNP\"\n    ], \n    \"Kurigalzu\": [\n        \"NNP\"\n    ], \n    \"iced-tea\": [\n        \"NN\"\n    ], \n    \"Avantor\": [\n        \"NNP\"\n    ], \n    \"Genius\": [\n        \"NN\"\n    ], \n    \"addressed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"addressee\": [\n        \"NN\"\n    ], \n    \"drugtrafficking\": [\n        \"NN\"\n    ], \n    \"C&W\": [\n        \"NNP\"\n    ], \n    \"gimmick\": [\n        \"NN\"\n    ], \n    \"News-American\": [\n        \"NNP\"\n    ], \n    \"C&P\": [\n        \"NNP\"\n    ], \n    \"inhumanities\": [\n        \"NNS\"\n    ], \n    \"metaphor\": [\n        \"NN\"\n    ], \n    \"one-point\": [\n        \"JJ\"\n    ], \n    \"recused\": [\n        \"VBN\"\n    ], \n    \"SALARIES\": [\n        \"NNS\"\n    ], \n    \"distinctiveness\": [\n        \"NN\"\n    ], \n    \"experimental-theater\": [\n        \"JJ\"\n    ], \n    \"housing-construction\": [\n        \"NN\"\n    ], \n    \"popped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Disorderly\": [\n        \"JJ\"\n    ], \n    \"dentists\": [\n        \"NNS\"\n    ], \n    \"Junk-Bond\": [\n        \"NN\"\n    ], \n    \"carvings\": [\n        \"NNS\"\n    ], \n    \"testified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Wednesday\": [\n        \"NNP\"\n    ], \n    \"Priorities\": [\n        \"NNPS\"\n    ], \n    \"paraquat\": [\n        \"NN\"\n    ], \n    \"whisks\": [\n        \"VBZ\"\n    ], \n    \"cackly\": [\n        \"RB\"\n    ], \n    \"testifies\": [\n        \"VBZ\"\n    ], \n    \"Sanaa\": [\n        \"NNP\"\n    ], \n    \"Mahwah\": [\n        \"NNP\"\n    ], \n    \"whisky\": [\n        \"NN\"\n    ], \n    \"corpuscular-radiation\": [\n        \"NN\"\n    ], \n    \"Panicked\": [\n        \"JJ\"\n    ], \n    \"inflation\\\\/deflation\": [\n        \"NN\"\n    ], \n    \"life-contracts\": [\n        \"JJ\"\n    ], \n    \"dipotassium\": [\n        \"NN\"\n    ], \n    \"fiction-writing\": [\n        \"NN\"\n    ], \n    \"Cited\": [\n        \"VBN\"\n    ], \n    \"MARK\": [\n        \"NNP\"\n    ], \n    \"junkless\": [\n        \"JJ\"\n    ], \n    \"retried\": [\n        \"VBN\"\n    ], \n    \"Nevada\": [\n        \"NNP\"\n    ], \n    \"conformity\": [\n        \"NN\"\n    ], \n    \"Cites\": [\n        \"VBZ\"\n    ], \n    \"control\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"wharf\": [\n        \"NN\"\n    ], \n    \"speciality\": [\n        \"NN\"\n    ], \n    \"business-oriented\": [\n        \"JJ\"\n    ], \n    \"Kenya\": [\n        \"NNP\"\n    ], \n    \"rejoining\": [\n        \"VBG\"\n    ], \n    \"thermally\": [\n        \"RB\"\n    ], \n    \"Yost\": [\n        \"NNP\"\n    ], \n    \"dictation\": [\n        \"NN\"\n    ], \n    \"hit\": [\n        \"VBD\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"Sesshu\": [\n        \"NNP\"\n    ], \n    \"fearsome\": [\n        \"JJ\"\n    ], \n    \"stemmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"HIS\": [\n        \"NNP\", \n        \"JJ\", \n        \"PRP$\"\n    ], \n    \"falls\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Jell-O\": [\n        \"NNP\"\n    ], \n    \"Tidewater\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"HIB\": [\n        \"NNP\"\n    ], \n    \"allrightniks\": [\n        \"NNS\"\n    ], \n    \"FICO\": [\n        \"NNP\"\n    ], \n    \"Rarer\": [\n        \"JJR\"\n    ], \n    \"re-use\": [\n        \"VB\"\n    ], \n    \"immoral\": [\n        \"JJ\"\n    ], \n    \"hafta\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hypocellularity\": [\n        \"NN\"\n    ], \n    \"Jeyes\": [\n        \"NNP\"\n    ], \n    \"Nationalistic\": [\n        \"JJ\"\n    ], \n    \"Alaskan\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"aureus\": [\n        \"NN\"\n    ], \n    \"Campania\": [\n        \"NNP\"\n    ], \n    \"canker\": [\n        \"NN\"\n    ], \n    \"afterburners\": [\n        \"NNS\"\n    ], \n    \"Thorpe\": [\n        \"NNP\"\n    ], \n    \"Figures\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Perdue\": [\n        \"NNP\"\n    ], \n    \"determinability\": [\n        \"NN\"\n    ], \n    \"laudanum\": [\n        \"NN\"\n    ], \n    \"Disaster\": [\n        \"NN\"\n    ], \n    \"whistle\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Suez-Hungary\": [\n        \"NNP\"\n    ], \n    \"gulps\": [\n        \"NNS\"\n    ], \n    \"cutlery\": [\n        \"NN\"\n    ], \n    \"Marcel\": [\n        \"NNP\"\n    ], \n    \"tendentious\": [\n        \"JJ\"\n    ], \n    \"hid\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"uni-directional\": [\n        \"JJ\"\n    ], \n    \"Wilson\": [\n        \"NNP\"\n    ], \n    \"soggy\": [\n        \"JJ\"\n    ], \n    \"Phillipe\": [\n        \"NNP\"\n    ], \n    \"mass-distribution\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Scannell\": [\n        \"NNP\"\n    ], \n    \"Phillips\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Holleran\": [\n        \"NNP\"\n    ], \n    \"death-trap\": [\n        \"NN\"\n    ], \n    \"drug-seeking\": [\n        \"JJ\"\n    ], \n    \"cruise\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"tiptoed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"EGA\": [\n        \"NNP\"\n    ], \n    \"Developers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"WITH\": [\n        \"IN\"\n    ], \n    \"hock\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"batmobile\": [\n        \"NN\"\n    ], \n    \"brood\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Stanton\": [\n        \"NNP\"\n    ], \n    \"pyramid-shaped\": [\n        \"JJ\"\n    ], \n    \"Exchange\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"masses\": [\n        \"NNS\"\n    ], \n    \"notebooks\": [\n        \"NNS\"\n    ], \n    \"brook\": [\n        \"NN\"\n    ], \n    \"back-offices\": [\n        \"NNS\"\n    ], \n    \"gash\": [\n        \"NN\"\n    ], \n    \"coachwork\": [\n        \"NN\"\n    ], \n    \"paperclip\": [\n        \"NN\"\n    ], \n    \"insulator\": [\n        \"NN\"\n    ], \n    \"pensioners\": [\n        \"NNS\"\n    ], \n    \"Bullets\": [\n        \"NNS\"\n    ], \n    \"judge-made\": [\n        \"JJ\"\n    ], \n    \"massed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"demoralize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"surrounds\": [\n        \"VBZ\"\n    ], \n    \"Dresbachs\": [\n        \"NNPS\"\n    ], \n    \"Cowrtiers\": [\n        \"NNS\"\n    ], \n    \"commitment\": [\n        \"NN\"\n    ], \n    \"maestro\": [\n        \"NN\"\n    ], \n    \"nibs\": [\n        \"NNS\"\n    ], \n    \"front\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"announcers\": [\n        \"NNS\"\n    ], \n    \"refuel\": [\n        \"VB\"\n    ], \n    \"Guber-Peters\": [\n        \"NNP\", \n        \"NNS\", \n        \"JJ\"\n    ], \n    \"impresario\": [\n        \"NN\"\n    ], \n    \"entitling\": [\n        \"VBG\"\n    ], \n    \"Linage\": [\n        \"NN\"\n    ], \n    \"testings\": [\n        \"NNS\"\n    ], \n    \"muff\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Alpharetta\": [\n        \"NNP\"\n    ], \n    \"seniors\": [\n        \"NNS\"\n    ], \n    \"showering\": [\n        \"VBG\"\n    ], \n    \"TRANSPORTATION\": [\n        \"NNP\"\n    ], \n    \"partner-notification\": [\n        \"NN\"\n    ], \n    \"despots\": [\n        \"NNS\"\n    ], \n    \"flunked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Madden\": [\n        \"NNP\"\n    ], \n    \"crest\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"local-control\": [\n        \"JJ\"\n    ], \n    \"Floss\": [\n        \"NNP\"\n    ], \n    \"ill-disposed\": [\n        \"JJ\"\n    ], \n    \"corticosteroids\": [\n        \"NNS\"\n    ], \n    \"stimulants\": [\n        \"NNS\"\n    ], \n    \"Decimalists\": [\n        \"NNPS\"\n    ], \n    \"shambled\": [\n        \"VBD\"\n    ], \n    \"swimmers\": [\n        \"NNS\"\n    ], \n    \"Vyquest\": [\n        \"NNP\"\n    ], \n    \"maw\": [\n        \"NN\"\n    ], \n    \"edentulous\": [\n        \"JJ\"\n    ], \n    \"Castile\": [\n        \"NNP\"\n    ], \n    \"Selecting\": [\n        \"VBG\"\n    ], \n    \"may\": [\n        \"MD\", \n        \"NNP\"\n    ], \n    \"shambles\": [\n        \"NN\"\n    ], \n    \"Fords\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"depreciating\": [\n        \"VBG\"\n    ], \n    \"peace-loving\": [\n        \"JJ\"\n    ], \n    \"Philistines\": [\n        \"NNPS\"\n    ], \n    \"Housewives\": [\n        \"NNS\"\n    ], \n    \"VisionQuest\": [\n        \"NNP\"\n    ], \n    \"Diron\": [\n        \"NNP\"\n    ], \n    \"Iberia\": [\n        \"NNP\"\n    ], \n    \"JOINS\": [\n        \"VBZ\"\n    ], \n    \"discontinuity\": [\n        \"NN\"\n    ], \n    \"undo\": [\n        \"VB\"\n    ], \n    \"Outrageous\": [\n        \"NNP\"\n    ], \n    \"investment-advisory\": [\n        \"NN\"\n    ], \n    \"care-free\": [\n        \"JJ\"\n    ], \n    \"twenty-five-dollar\": [\n        \"JJ\"\n    ], \n    \"princess\": [\n        \"NN\"\n    ], \n    \"Traxel\": [\n        \"NNP\"\n    ], \n    \"corrosion\": [\n        \"NN\"\n    ], \n    \"lanced\": [\n        \"VBN\"\n    ], \n    \"tailpipe-emission\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Gilberto\": [\n        \"NNP\"\n    ], \n    \"avenue\": [\n        \"NN\"\n    ], \n    \"chivalry\": [\n        \"NN\"\n    ], \n    \"globulins\": [\n        \"NNS\"\n    ], \n    \"strapping\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Strindberg\": [\n        \"NNP\"\n    ], \n    \"mankind\": [\n        \"NN\"\n    ], \n    \"prospective\": [\n        \"JJ\"\n    ], \n    \"Murjani\": [\n        \"NNP\"\n    ], \n    \"Mor-ee-air-teeeee\": [\n        \"NNP\"\n    ], \n    \"pitied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"poignancy\": [\n        \"NN\"\n    ], \n    \"I.S.\": [\n        \"NNP\"\n    ], \n    \"drinker\": [\n        \"NN\"\n    ], \n    \"art\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"quality\": [\n        \"NN\", \n        \"JJ\", \n        \"JJ|NN\"\n    ], \n    \"horseman\": [\n        \"NN\"\n    ], \n    \"Thalbergs\": [\n        \"NNPS\"\n    ], \n    \"overestimate\": [\n        \"VB\"\n    ], \n    \"privacy\": [\n        \"NN\"\n    ], \n    \"Burroughs-Wellcome\": [\n        \"NNP\"\n    ], \n    \"journals\": [\n        \"NNS\"\n    ], \n    \"unequivocal\": [\n        \"JJ\"\n    ], \n    \"occupancy\": [\n        \"NN\"\n    ], \n    \"Employers\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"forgery\": [\n        \"NN\"\n    ], \n    \"non-network\": [\n        \"JJ\"\n    ], \n    \"pro-ALPA\": [\n        \"JJ\"\n    ], \n    \"turbogenerator\": [\n        \"NN\"\n    ], \n    \"certin\": [\n        \"NN\"\n    ], \n    \"thriftiness\": [\n        \"NN\"\n    ], \n    \"man\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"UH\"\n    ], \n    \"net-profits\": [\n        \"JJ\"\n    ], \n    \"fine-tuning\": [\n        \"NN\", \n        \"VBG\", \n        \"VB\"\n    ], \n    \"nine-chambered\": [\n        \"JJ\"\n    ], \n    \"punish\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Pharmacopoeia\": [\n        \"NN\"\n    ], \n    \"close-up\": [\n        \"NN\"\n    ], \n    \"Vt.\": [\n        \"NNP\"\n    ], \n    \"Lacroix\": [\n        \"NNP\"\n    ], \n    \"Leaning\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"Argive\": [\n        \"NNP\"\n    ], \n    \"morbidity\": [\n        \"NN\"\n    ], \n    \"Sauter\\\\/Piller\\\\/Percelay\": [\n        \"NNP\"\n    ], \n    \"extended-wear\": [\n        \"JJ\"\n    ], \n    \"Dormitory\": [\n        \"NNP\"\n    ], \n    \"amide\": [\n        \"NN\"\n    ], \n    \"specimens\": [\n        \"NNS\"\n    ], \n    \"aspiration\": [\n        \"NN\"\n    ], \n    \"shill\": [\n        \"NN\"\n    ], \n    \"Waddell\": [\n        \"NNP\"\n    ], \n    \"protester\": [\n        \"NN\"\n    ], \n    \"function\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"elections-an\": [\n        \"JJ\"\n    ], \n    \"Tenda\": [\n        \"NNP\"\n    ], \n    \"Richard\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"pampas\": [\n        \"NNS\"\n    ], \n    \"small...\": [\n        \":\"\n    ], \n    \"\\\\*\\\\*\\\\*\": [\n        \"SYM\"\n    ], \n    \"handyman-carpenter\": [\n        \"NN\"\n    ], \n    \"recessed\": [\n        \"VBN\"\n    ], \n    \"Pugo\": [\n        \"NNP\"\n    ], \n    \"Pugh\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"need\": [\n        \"NN\", \n        \"VBP\", \n        \"MD\", \n        \"VB\"\n    ], \n    \"cosmopolitan\": [\n        \"JJ\"\n    ], \n    \"Caves\": [\n        \"NNP\"\n    ], \n    \"assurances\": [\n        \"NNS\"\n    ], \n    \"rotor\": [\n        \"NN\"\n    ], \n    \"microphone\": [\n        \"NN\"\n    ], \n    \"pursued\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Vowels\": [\n        \"NNS\"\n    ], \n    \"aftermarket\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"purchasing\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Shirl\": [\n        \"NNP\"\n    ], \n    \"Rabble-rousing\": [\n        \"JJ\"\n    ], \n    \"Merry\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"sufficiency\": [\n        \"NN\"\n    ], \n    \"Carboloy\": [\n        \"NNP\"\n    ], \n    \"combat-tested\": [\n        \"JJ\"\n    ], \n    \"Steinhager\": [\n        \"NNP\"\n    ], \n    \"silicates\": [\n        \"NNS\"\n    ], \n    \"pursuer\": [\n        \"NN\"\n    ], \n    \"goddamned\": [\n        \"JJ\"\n    ], \n    \"refocusing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Amro\": [\n        \"NNP\"\n    ], \n    \"Builds\": [\n        \"VBZ\"\n    ], \n    \"on-campus\": [\n        \"JJ\"\n    ], \n    \"Amra\": [\n        \"NN\"\n    ], \n    \"isocyanate\": [\n        \"NN\"\n    ], \n    \"parenting\": [\n        \"NN\"\n    ], \n    \"connected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Mississippian\": [\n        \"NNP\"\n    ], \n    \"misjudgment\": [\n        \"NN\"\n    ], \n    \"unfrocking\": [\n        \"NN\"\n    ], \n    \"co-chairman\": [\n        \"NN\"\n    ], \n    \"stereo\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"topographic\": [\n        \"JJ\"\n    ], \n    \"scrambles\": [\n        \"NNS\"\n    ], \n    \"radiating\": [\n        \"VBG\"\n    ], \n    \"undeniable\": [\n        \"JJ\"\n    ], \n    \"military-electronics\": [\n        \"NNS\"\n    ], \n    \"upset\": [\n        \"VBN\", \n        \"NN\", \n        \"VB\", \n        \"VBD\", \n        \"VBP\", \n        \"JJ\"\n    ], \n    \"Richardson-Merrell\": [\n        \"NNP\"\n    ], \n    \"scrambled\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"construction\": [\n        \"NN\"\n    ], \n    \"officialdom\": [\n        \"NN\"\n    ], \n    \"Kurtwood\": [\n        \"NNP\"\n    ], \n    \"Yujobo\": [\n        \"NNP\"\n    ], \n    \"impression\": [\n        \"NN\"\n    ], \n    \"Sonny\": [\n        \"NNP\"\n    ], \n    \"Ian\": [\n        \"NNP\"\n    ], \n    \"unmethodical\": [\n        \"JJ\"\n    ], \n    \"SERVE\": [\n        \"VBP\"\n    ], \n    \"retouching\": [\n        \"NN\"\n    ], \n    \"Shakespearean\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"soldiery\": [\n        \"NN\"\n    ], \n    \"well-being\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"C-20\": [\n        \"NNP\"\n    ], \n    \"Stallone\": [\n        \"NNP\"\n    ], \n    \"soldiers\": [\n        \"NNS\"\n    ], \n    \"low-sudsing\": [\n        \"JJ\"\n    ], \n    \"Public\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"self-absorbed\": [\n        \"JJ\"\n    ], \n    \"creamed\": [\n        \"VBN\"\n    ], \n    \"CHARIOT\": [\n        \"NNP\"\n    ], \n    \"cavort\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Underwriters\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"outflank\": [\n        \"VB\"\n    ], \n    \"Aouelloul\": [\n        \"NNP\"\n    ], \n    \"expensive\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"creamer\": [\n        \"NN\"\n    ], \n    \"thunderous\": [\n        \"JJ\"\n    ], \n    \"Elimination\": [\n        \"NN\"\n    ], \n    \"Specialists\": [\n        \"NNS\"\n    ], \n    \"vice-chairman\": [\n        \"NN\"\n    ], \n    \"thresholds\": [\n        \"NNS\"\n    ], \n    \"post-electoral\": [\n        \"JJ\"\n    ], \n    \"gratify\": [\n        \"VB\"\n    ], \n    \"righteousness\": [\n        \"NN\"\n    ], \n    \"Finney\": [\n        \"NNP\"\n    ], \n    \"improvident\": [\n        \"JJ\"\n    ], \n    \"Packard\": [\n        \"NNP\"\n    ], \n    \"all-student\": [\n        \"JJ\"\n    ], \n    \"Coat\": [\n        \"NNP\"\n    ], \n    \"non-New\": [\n        \"JJ\"\n    ], \n    \"Haber\": [\n        \"NNP\"\n    ], \n    \"manholes\": [\n        \"NNS\"\n    ], \n    \"joint\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Coan\": [\n        \"NNP\"\n    ], \n    \"legitimate\": [\n        \"JJ\"\n    ], \n    \"joins\": [\n        \"VBZ\"\n    ], \n    \"Rangoon-Bangkok\": [\n        \"NNP\"\n    ], \n    \"sassy\": [\n        \"JJ\"\n    ], \n    \"conservatory\": [\n        \"NN\"\n    ], \n    \"Matthias\": [\n        \"NNP\"\n    ], \n    \"Zimbalist\": [\n        \"NNP\"\n    ], \n    \"conservators\": [\n        \"NNS\"\n    ], \n    \"incubi\": [\n        \"NNS\"\n    ], \n    \"Aramis\": [\n        \"NNP\"\n    ], \n    \"trammel\": [\n        \"VB\"\n    ], \n    \"lyric\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cleland\": [\n        \"NNP\"\n    ], \n    \"computed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Wolfes\": [\n        \"NNPS\"\n    ], \n    \"Zinman\": [\n        \"NNP\"\n    ], \n    \"pension-fund\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"three-to-five-page\": [\n        \"JJ\"\n    ], \n    \"Mysterious\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Marunouchi\": [\n        \"NNP\"\n    ], \n    \"health-expenditure\": [\n        \"JJ\"\n    ], \n    \"tabacs\": [\n        \"NNS\"\n    ], \n    \"Western-Mobile\": [\n        \"NNP\"\n    ], \n    \"catecholamines\": [\n        \"NNS\"\n    ], \n    \"French-language\": [\n        \"JJ\"\n    ], \n    \"Ticonderoga\": [\n        \"NNP\"\n    ], \n    \"Saitoti\": [\n        \"NNP\"\n    ], \n    \"realign\": [\n        \"VB\"\n    ], \n    \"Harvard\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"masking\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"malocclusion\": [\n        \"NN\"\n    ], \n    \"juggle\": [\n        \"VB\"\n    ], \n    \"SWIFT\": [\n        \"NNP\"\n    ], \n    \"Transgenic\": [\n        \"NNP\"\n    ], \n    \"castoff\": [\n        \"JJ\"\n    ], \n    \"importance\": [\n        \"NN\"\n    ], \n    \"Mitsu\": [\n        \"NNP\"\n    ], \n    \"simple-minded\": [\n        \"JJ\"\n    ], \n    \"Manganese\": [\n        \"NNP\"\n    ], \n    \"efficiency\": [\n        \"NN\"\n    ], \n    \"Thereafter\": [\n        \"RB\"\n    ], \n    \"Land-O-Sun\": [\n        \"NNP\"\n    ], \n    \"Kennel\": [\n        \"NNP\"\n    ], \n    \"eulogize\": [\n        \"VB\"\n    ], \n    \"paraphrasing\": [\n        \"VBG\"\n    ], \n    \"American-China\": [\n        \"NNP\"\n    ], \n    \"histrionics\": [\n        \"NNS\"\n    ], \n    \"BEEN\": [\n        \"VBN\"\n    ], \n    \"middles\": [\n        \"NNS\"\n    ], \n    \"BEER\": [\n        \"NN\"\n    ], \n    \"a.m.\": [\n        \"NN\", \n        \"FW\", \n        \"RB\"\n    ], \n    \"publicized\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"undermined\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"misquotation\": [\n        \"NN\"\n    ], \n    \"bearing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Matthew\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Leeward\": [\n        \"NNP\"\n    ], \n    \"preparedness\": [\n        \"NN\"\n    ], \n    \"maximize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"MAKERS\": [\n        \"NNS\"\n    ], \n    \"Goodson\": [\n        \"NNP\"\n    ], \n    \"poem\": [\n        \"NN\"\n    ], \n    \"non-Tagalog\": [\n        \"JJ\"\n    ], \n    \"industrials\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Malesherbes\": [\n        \"NNP\"\n    ], \n    \"Mired\": [\n        \"NNP\"\n    ], \n    \"Nourbakhsh\": [\n        \"NNP\"\n    ], \n    \"Rockfork\": [\n        \"NNP\"\n    ], \n    \"Develops\": [\n        \"NNPS\"\n    ], \n    \"Ursuline\": [\n        \"NNP\"\n    ], \n    \"offshore-rig\": [\n        \"NN\"\n    ], \n    \"poet\": [\n        \"NN\"\n    ], \n    \"Schmidl-Seeberg\": [\n        \"NNP\"\n    ], \n    \"Pre-refunded\": [\n        \"JJ\"\n    ], \n    \"diversity\": [\n        \"NN\"\n    ], \n    \"Invercalt\": [\n        \"NNP\"\n    ], \n    \"listing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"subspace\": [\n        \"NN\"\n    ], \n    \"c\": [\n        \"NN\", \n        \"LS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Livingston\": [\n        \"NNP\"\n    ], \n    \"A12\": [\n        \"NN\"\n    ], \n    \"Pasztor\": [\n        \"NNP\"\n    ], \n    \"corks\": [\n        \"NNS\"\n    ], \n    \"Aviacion\": [\n        \"NNP\"\n    ], \n    \"infestation\": [\n        \"NN\"\n    ], \n    \"Masonry\": [\n        \"NNP\"\n    ], \n    \"shameless\": [\n        \"JJ\"\n    ], \n    \"Cartons\": [\n        \"NNS\"\n    ], \n    \"riddles\": [\n        \"NNS\"\n    ], \n    \"undermines\": [\n        \"VBZ\"\n    ], \n    \"bumper-to-bumper\": [\n        \"JJ\"\n    ], \n    \"harder\": [\n        \"JJR\", \n        \"RBR\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"three-fold\": [\n        \"JJ\"\n    ], \n    \"much-thumbed\": [\n        \"JJ\"\n    ], \n    \"harden\": [\n        \"VB\"\n    ], \n    \"negotiations...\": [\n        \":\"\n    ], \n    \"Resrve\": [\n        \"NNP\"\n    ], \n    \"Second-highest\": [\n        \"JJ\"\n    ], \n    \"Yom\": [\n        \"NNP\"\n    ], \n    \"Stickler\": [\n        \"NN\"\n    ], \n    \"Granted\": [\n        \"VBN\"\n    ], \n    \"Shanghai\": [\n        \"NNP\"\n    ], \n    \"management...\": [\n        \":\"\n    ], \n    \"law-breaking\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Rottosei\": [\n        \"NNP\"\n    ], \n    \"You\": [\n        \"PRP\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ringenbach\": [\n        \"NNP\"\n    ], \n    \"Upping\": [\n        \"VBG\"\n    ], \n    \"Hackettstown\": [\n        \"NNP\"\n    ], \n    \"Viking\": [\n        \"NNP\"\n    ], \n    \"Freund\": [\n        \"NNP\"\n    ], \n    \"hard-cover\": [\n        \"NN\"\n    ], \n    \"midpriced\": [\n        \"JJ\"\n    ], \n    \"riddled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Palacio\": [\n        \"NNP\"\n    ], \n    \"embodiments\": [\n        \"NNS\"\n    ], \n    \"Ironside\": [\n        \"NNP\"\n    ], \n    \"EDMOV\": [\n        \"NN\"\n    ], \n    \"KARL\": [\n        \"NNP\"\n    ], \n    \"schematic\": [\n        \"JJ\"\n    ], \n    \"habitats\": [\n        \"NNS\"\n    ], \n    \"prophesies\": [\n        \"VBZ\"\n    ], \n    \"Raymont\": [\n        \"NNP\"\n    ], \n    \"classification-angle\": [\n        \"JJ\"\n    ], \n    \"fireman\": [\n        \"NN\"\n    ], \n    \"prodigiously\": [\n        \"RB\"\n    ], \n    \"forgings\": [\n        \"NNS\"\n    ], \n    \"market-share\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sagged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"super-high\": [\n        \"JJ\"\n    ], \n    \"prophesied\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pipedreams\": [\n        \"NNS\"\n    ], \n    \"homecomings\": [\n        \"NNS\"\n    ], \n    \"scourges\": [\n        \"NNS\"\n    ], \n    \"Mitchell\": [\n        \"NNP\"\n    ], \n    \"Kimco\": [\n        \"NNP\"\n    ], \n    \"compendium\": [\n        \"NN\"\n    ], \n    \"Alabama-Coushatta\": [\n        \"JJ\"\n    ], \n    \"obstacles\": [\n        \"NNS\"\n    ], \n    \"Idea\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"position...\": [\n        \":\"\n    ], \n    \"Idec\": [\n        \"NNP\"\n    ], \n    \"Idex\": [\n        \"NNP\"\n    ], \n    \"Entering\": [\n        \"NNP\"\n    ], \n    \"prodded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tullio\": [\n        \"NNP\"\n    ], \n    \"glowed\": [\n        \"VBD\"\n    ], \n    \"Saucer\": [\n        \"NNP\"\n    ], \n    \"GSP\": [\n        \"NNP\"\n    ], \n    \"Normandy\": [\n        \"NNP\"\n    ], \n    \"evenhanded\": [\n        \"JJ\"\n    ], \n    \"GSX\": [\n        \"NNP\"\n    ], \n    \"Sargent\": [\n        \"NNP\"\n    ], \n    \"GSA\": [\n        \"NNP\"\n    ], \n    \"sources\": [\n        \"NNS\"\n    ], \n    \"GSI\": [\n        \"NNP\"\n    ], \n    \"Bloomington\": [\n        \"NNP\"\n    ], \n    \"skill\": [\n        \"NN\"\n    ], \n    \"coordination\": [\n        \"NN\"\n    ], \n    \"clashing\": [\n        \"VBG\"\n    ], \n    \"lures\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"brothels\": [\n        \"NNS\"\n    ], \n    \"eclairs\": [\n        \"NNS\"\n    ], \n    \"apple-industry\": [\n        \"NN\"\n    ], \n    \"barefooted\": [\n        \"JJ\"\n    ], \n    \"Chlorothiazide\": [\n        \"NN\"\n    ], \n    \"lured\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"curdling\": [\n        \"VBG\"\n    ], \n    \"impassable\": [\n        \"JJ\"\n    ], \n    \"pooh-poohed\": [\n        \"VB\"\n    ], \n    \"Dobi\": [\n        \"NNP\"\n    ], \n    \"crushed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"breach-of-contract\": [\n        \"JJ\"\n    ], \n    \"conquete\": [\n        \"FW\"\n    ], \n    \"tarnish\": [\n        \"VB\"\n    ], \n    \"contingents\": [\n        \"NNS\"\n    ], \n    \"Doordarshan\": [\n        \"NNP\"\n    ], \n    \"progandist\": [\n        \"NN\"\n    ], \n    \"Milling-Stanley\": [\n        \"NNP\"\n    ], \n    \"HUSBANDS\": [\n        \"NNS\"\n    ], \n    \"Poupin\": [\n        \"NNP\"\n    ], \n    \"doorways\": [\n        \"NNS\"\n    ], \n    \"Smetek\": [\n        \"NNP\"\n    ], \n    \"chain-smoking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Alcinous\": [\n        \"JJ\"\n    ], \n    \"taping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Cheung\": [\n        \"NNP\"\n    ], \n    \"underestimation\": [\n        \"NN\"\n    ], \n    \"memory-chip\": [\n        \"NN\"\n    ], \n    \"Beckett\": [\n        \"NNP\"\n    ], \n    \"Gouvernement\": [\n        \"NNP\"\n    ], \n    \"warmed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"carreer\": [\n        \"NN\"\n    ], \n    \"Thatcherite\": [\n        \"JJ\"\n    ], \n    \"warmer\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"archenemy\": [\n        \"NN\"\n    ], \n    \"Transcendental\": [\n        \"JJ\"\n    ], \n    \"CHAMBERS\": [\n        \"NNP\"\n    ], \n    \"Horrigan\": [\n        \"NNP\"\n    ], \n    \"Clever\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Roseland\": [\n        \"NNP\"\n    ], \n    \"solicits\": [\n        \"VBZ\"\n    ], \n    \"boggled\": [\n        \"VBD\"\n    ], \n    \"Attending\": [\n        \"VBG\"\n    ], \n    \"rewarding\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"coloratura\": [\n        \"NN\"\n    ], \n    \"Connie\": [\n        \"NNP\"\n    ], \n    \"allegory\": [\n        \"NN\"\n    ], \n    \"weighs\": [\n        \"VBZ\"\n    ], \n    \"filers\": [\n        \"NNS\"\n    ], \n    \"intersections\": [\n        \"NNS\"\n    ], \n    \"test-marketing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"A.L.A.M.\": [\n        \"NNP\"\n    ], \n    \"Maitres\": [\n        \"NNP\"\n    ], \n    \"questioners\": [\n        \"NNS\"\n    ], \n    \"Zipser\": [\n        \"NNP\"\n    ], \n    \"shrilled\": [\n        \"VBD\"\n    ], \n    \"Rochdale\": [\n        \"NNP\"\n    ], \n    \"narrowness\": [\n        \"NN\"\n    ], \n    \"sugar-growing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"offset\": [\n        \"VB\", \n        \"JJ\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"instinct\": [\n        \"NN\"\n    ], \n    \"Seminary\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"multiversity\": [\n        \"NN\"\n    ], \n    \"shakily\": [\n        \"RB\"\n    ], \n    \"Microsoft\": [\n        \"NNP\"\n    ], \n    \"Characterizing\": [\n        \"VBG\"\n    ], \n    \"enhancements\": [\n        \"NNS\"\n    ], \n    \"Junk-bond\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Johnny\": [\n        \"NNP\"\n    ], \n    \"light-transmitting\": [\n        \"JJ\"\n    ], \n    \"cleans\": [\n        \"VBZ\"\n    ], \n    \"Longevity\": [\n        \"NN\"\n    ], \n    \"rodeo\": [\n        \"NN\"\n    ], \n    \"early-retirement\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"jawboning\": [\n        \"NN\"\n    ], \n    \"persuaded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"overlook\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Waslic\": [\n        \"NNP\"\n    ], \n    \"IDS\": [\n        \"NNP\"\n    ], \n    \"legitimizes\": [\n        \"VBZ\"\n    ], \n    \"drug-funding\": [\n        \"NN\"\n    ], \n    \"artists\": [\n        \"NNS\"\n    ], \n    \"legitimized\": [\n        \"VBN\"\n    ], \n    \"IDD\": [\n        \"NNP\"\n    ], \n    \"Industrikredit\": [\n        \"NNP\"\n    ], \n    \"IDB\": [\n        \"NNP\"\n    ], \n    \"late-comers\": [\n        \"NNS\"\n    ], \n    \"doubtless\": [\n        \"RB\"\n    ], \n    \"second-guess\": [\n        \"VB\", \n        \"JJ\"\n    ], \n    \"tidied\": [\n        \"VBD\"\n    ], \n    \"mufflers\": [\n        \"NNS\"\n    ], \n    \"Assistant\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"recruiter\": [\n        \"NN\"\n    ], \n    \"IDs\": [\n        \"NNS\"\n    ], \n    \"Kansas-Nebraska\": [\n        \"NNP\"\n    ], \n    \"compartments\": [\n        \"NNS\"\n    ], \n    \"business-partners\": [\n        \"NNS\"\n    ], \n    \"recruited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Sakata\": [\n        \"NNP\"\n    ], \n    \"Picassos\": [\n        \"NNPS\"\n    ], \n    \"Boisbriant\": [\n        \"NNP\"\n    ], \n    \"gluten\": [\n        \"NN\"\n    ], \n    \"Ekco\": [\n        \"NNP\"\n    ], \n    \"inroad\": [\n        \"NN\"\n    ], \n    \"hazardous\": [\n        \"JJ\"\n    ], \n    \"Trucking\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Recession\": [\n        \"NN\"\n    ], \n    \"Bosphorus\": [\n        \"NNP\"\n    ], \n    \"tapers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Maslyukov\": [\n        \"NNP\"\n    ], \n    \"green-tinted\": [\n        \"JJ\"\n    ], \n    \"trade-liberalizing\": [\n        \"JJ\"\n    ], \n    \"Examiner\": [\n        \"NNP\"\n    ], \n    \"Veba\": [\n        \"NNP\"\n    ], \n    \"one-in-four\": [\n        \"JJ\"\n    ], \n    \"converter\": [\n        \"NN\"\n    ], \n    \"head-and-shoulders\": [\n        \"NN\"\n    ], \n    \"air-launched\": [\n        \"JJ\"\n    ], \n    \"businesspeople\": [\n        \"NN\"\n    ], \n    \"signed\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Fitzroy\": [\n        \"NNP\"\n    ], \n    \"converted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"leathers\": [\n        \"NNS\"\n    ], \n    \"pumped\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"signer\": [\n        \"NN\"\n    ], \n    \"U.S.-Mexico\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"piece\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"leathery\": [\n        \"JJ\"\n    ], \n    \"chip\": [\n        \"NN\"\n    ], \n    \"Chestnuts\": [\n        \"NNS\"\n    ], \n    \"Birinyi\": [\n        \"NNP\"\n    ], \n    \"enquetes\": [\n        \"FW\"\n    ], \n    \"kanji\": [\n        \"FW\"\n    ], \n    \"Seacomb\": [\n        \"NNP\"\n    ], \n    \"full-year\": [\n        \"JJ\"\n    ], \n    \"NEWS\": [\n        \"NN\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"media-conscious\": [\n        \"JJ\"\n    ], \n    \"Defining\": [\n        \"VBG\"\n    ], \n    \"second-highest\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"NEWT\": [\n        \"NN\"\n    ], \n    \"Measuring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cavalry\": [\n        \"NN\"\n    ], \n    \"contest\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"NLRDA\": [\n        \"NNP\"\n    ], \n    \"free-agent\": [\n        \"NN\"\n    ], \n    \"offensive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"chocks\": [\n        \"NNS\"\n    ], \n    \"Gilels\": [\n        \"NNP\"\n    ], \n    \"athletically\": [\n        \"RB\"\n    ], \n    \"Boron\": [\n        \"NNP\"\n    ], \n    \"suspiciously\": [\n        \"RB\"\n    ], \n    \"Parapsychology\": [\n        \"NNP\"\n    ], \n    \"hp.\": [\n        \"NN\"\n    ], \n    \"fodder\": [\n        \"NN\"\n    ], \n    \"Infertility\": [\n        \"NNP\"\n    ], \n    \"Suarez\": [\n        \"NNP\"\n    ], \n    \"Schindler\": [\n        \"NNP\"\n    ], \n    \"Tracinda\": [\n        \"NNP\"\n    ], \n    \"Dingman\": [\n        \"NNP\"\n    ], \n    \"changes...\": [\n        \":\"\n    ], \n    \"animosity\": [\n        \"NN\"\n    ], \n    \"cut-off\": [\n        \"JJ\"\n    ], \n    \"non-European\": [\n        \"JJ\"\n    ], \n    \"Melville\": [\n        \"NNP\"\n    ], \n    \"paraxial\": [\n        \"JJ\"\n    ], \n    \"portion\": [\n        \"NN\"\n    ], \n    \"Yearbook\": [\n        \"NNP\"\n    ], \n    \"flightiness\": [\n        \"NN\"\n    ], \n    \"Pauletta\": [\n        \"NNP\"\n    ], \n    \"Vitamins\": [\n        \"NNS\"\n    ], \n    \"similarity\": [\n        \"NN\"\n    ], \n    \"Bordel\": [\n        \"NNP\"\n    ], \n    \"Burnet\": [\n        \"NNP\"\n    ], \n    \"Burnes\": [\n        \"NNP\"\n    ], \n    \"Oshry\": [\n        \"NNP\"\n    ], \n    \"obstruction\": [\n        \"NN\"\n    ], \n    \"Otaiba\": [\n        \"NNP\"\n    ], \n    \"post-minimalist\": [\n        \"JJ\"\n    ], \n    \"bright-looking\": [\n        \"JJ\"\n    ], \n    \"rampart\": [\n        \"NN\"\n    ], \n    \"apparatchiks\": [\n        \"FW\"\n    ], \n    \"Burned\": [\n        \"VBN\"\n    ], \n    \"characterless\": [\n        \"JJ\"\n    ], \n    \"AirMalta\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"expatriates\": [\n        \"NNS\"\n    ], \n    \"lower-rated\": [\n        \"JJ\"\n    ], \n    \"segments\": [\n        \"NNS\"\n    ], \n    \"blacking\": [\n        \"NN\"\n    ], \n    \"unroll\": [\n        \"VBP\"\n    ], \n    \"extenuate\": [\n        \"VB\"\n    ], \n    \"ad-rate\": [\n        \"NN\"\n    ], \n    \"teaching\": [\n        \"NN\", \n        \"NN|VBG\", \n        \"VBG\"\n    ], \n    \"blitzkrieg\": [\n        \"NN\"\n    ], \n    \"updated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Toms\": [\n        \"NNP\"\n    ], \n    \"misunderstanding\": [\n        \"NN\"\n    ], \n    \"Brea\": [\n        \"NNP\"\n    ], \n    \"country-club\": [\n        \"NN\"\n    ], \n    \"updates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"betters\": [\n        \"NNS\"\n    ], \n    \"Tenure\": [\n        \"NN\"\n    ], \n    \"overcomes\": [\n        \"VBZ\"\n    ], \n    \"higher-income\": [\n        \"JJ\"\n    ], \n    \"accentual\": [\n        \"JJ\"\n    ], \n    \"soulfully\": [\n        \"RB\"\n    ], \n    \"skills\": [\n        \"NNS\"\n    ], \n    \"decorators\": [\n        \"NNS\"\n    ], \n    \"MIG-1\": [\n        \"JJ\"\n    ], \n    \"yellow-brown\": [\n        \"JJ\"\n    ], \n    \"commons\": [\n        \"NN\"\n    ], \n    \"pardons\": [\n        \"NNS\"\n    ], \n    \"Matisses\": [\n        \"NNPS\"\n    ], \n    \"hard-charging\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"franchisees\": [\n        \"NNS\"\n    ], \n    \"Taps\": [\n        \"VBZ\"\n    ], \n    \"Honan\": [\n        \"NNP\"\n    ], \n    \"force\": [\n        \"NN\", \n        \"FW\", \n        \"VB\", \n        \"NNP\", \n        \"VBP\"\n    ], \n    \"Waco\": [\n        \"NNP\"\n    ], \n    \"pleura\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"Demon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"semi-processed\": [\n        \"JJ\"\n    ], \n    \"Version\": [\n        \"NNP\"\n    ], \n    \"Tape\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"MBOs\": [\n        \"NNPS\"\n    ], \n    \"Lamar\": [\n        \"NNP\"\n    ], \n    \"self-determination\": [\n        \"NN\"\n    ], \n    \"prisons\": [\n        \"NNS\"\n    ], \n    \"wrinkle-fighting\": [\n        \"JJ\"\n    ], \n    \"Merkel\": [\n        \"NNP\"\n    ], \n    \"Moscow-Shannon\": [\n        \"JJ\"\n    ], \n    \"palm-tree\": [\n        \"NN\"\n    ], \n    \"lights\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"yellow-bellied\": [\n        \"JJ\"\n    ], \n    \"sunder\": [\n        \"VB\"\n    ], \n    \"Caribe\": [\n        \"NNP\"\n    ], \n    \"Chyron\": [\n        \"NNP\"\n    ], \n    \"tips\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Gregorio\": [\n        \"NNP\"\n    ], \n    \"deemed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"barometer\": [\n        \"NN\"\n    ], \n    \"ramrod-stiff\": [\n        \"JJ\"\n    ], \n    \"ten-year\": [\n        \"JJ\"\n    ], \n    \"pancakes\": [\n        \"NNS\"\n    ], \n    \"military-spending\": [\n        \"NN\"\n    ], \n    \"cadres\": [\n        \"NNS\"\n    ], \n    \"inner-city\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"active\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"demandingly\": [\n        \"RB\"\n    ], \n    \"Ziggy\": [\n        \"NNP\"\n    ], \n    \"SWUNG\": [\n        \"VBD\"\n    ], \n    \"POWER\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tapes\": [\n        \"NNS\"\n    ], \n    \"taper\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"large-typeface\": [\n        \"NN\"\n    ], \n    \"taped\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"felonies\": [\n        \"NNS\"\n    ], \n    \"truck-refrigeration\": [\n        \"NN\"\n    ], \n    \"Advancing\": [\n        \"VBG\"\n    ], \n    \"appliance-controls\": [\n        \"NN\"\n    ], \n    \"Continent\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bottineau\": [\n        \"NNP\"\n    ], \n    \"eyebrows\": [\n        \"NNS\"\n    ], \n    \"chaperoned\": [\n        \"JJ\"\n    ], \n    \"fragrances\": [\n        \"NNS\"\n    ], \n    \"Tiger-turned-Federal\": [\n        \"JJ\"\n    ], \n    \"COLLATERAL\": [\n        \"NN\"\n    ], \n    \"silk-stocking\": [\n        \"JJ\"\n    ], \n    \"Joerg\": [\n        \"NNP\"\n    ], \n    \"moral\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"suburbanites\": [\n        \"NNS\"\n    ], \n    \"bargelike\": [\n        \"JJ\"\n    ], \n    \"value-judgments\": [\n        \"NNS\"\n    ], \n    \"Cattleguard\": [\n        \"NNP\"\n    ], \n    \"receivable\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ore\": [\n        \"NN\"\n    ], \n    \"Accidental\": [\n        \"JJ\"\n    ], \n    \"army\": [\n        \"NN\"\n    ], \n    \"Alcee\": [\n        \"NNP\"\n    ], \n    \"PACIFIC\": [\n        \"NNP\"\n    ], \n    \"tabulated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"DIALING\": [\n        \"VBG\", \n        \"NNP\"\n    ], \n    \"feed-lot\": [\n        \"JJ\"\n    ], \n    \"Greenberg\": [\n        \"NNP\"\n    ], \n    \"peeping\": [\n        \"VBG\"\n    ], \n    \"transversus\": [\n        \"NN\"\n    ], \n    \"decencies\": [\n        \"NNS\"\n    ], \n    \"Spumoni\": [\n        \"NNS\"\n    ], \n    \"Norcross\": [\n        \"NNP\"\n    ], \n    \"Franciso\": [\n        \"NNP\"\n    ], \n    \"pecan\": [\n        \"NN\"\n    ], \n    \"inter-species\": [\n        \"JJ\"\n    ], \n    \"burglaries\": [\n        \"NNS\"\n    ], \n    \"eternally\": [\n        \"RB\"\n    ], \n    \"Crupi\": [\n        \"NNP\"\n    ], \n    \"pacts\": [\n        \"NNS\"\n    ], \n    \"arms-export\": [\n        \"JJ\"\n    ], \n    \"blindfold\": [\n        \"NN\"\n    ], \n    \"flora\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"pivoting\": [\n        \"VBG\"\n    ], \n    \"Breslin\": [\n        \"NNP\"\n    ], \n    \"Tim\": [\n        \"NNP\"\n    ], \n    \"Blinder\": [\n        \"NNP\"\n    ], \n    \"superstructure\": [\n        \"NN\"\n    ], \n    \"Traverso\": [\n        \"NNP\"\n    ], \n    \"bungalow\": [\n        \"NN\"\n    ], \n    \"Ramsperger\": [\n        \"NNP\"\n    ], \n    \"Borough\": [\n        \"NNP\"\n    ], \n    \"mountainsides\": [\n        \"NNS\"\n    ], \n    \"Pre-shaped\": [\n        \"JJ\"\n    ], \n    \"defer\": [\n        \"VB\"\n    ], \n    \"vodka\": [\n        \"NN\"\n    ], \n    \"baseball-watching\": [\n        \"JJ\"\n    ], \n    \"Keebler\": [\n        \"NNP\"\n    ], \n    \"Lil\": [\n        \"NNP\"\n    ], \n    \"Lim\": [\n        \"NNP\"\n    ], \n    \"Lin\": [\n        \"NNP\"\n    ], \n    \"Benedick\": [\n        \"NNP\"\n    ], \n    \"Visher\": [\n        \"NNP\"\n    ], \n    \"Liu\": [\n        \"NNP\"\n    ], \n    \"blistering\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Chauncey\": [\n        \"NNP\"\n    ], \n    \"degenerate\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Tie\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"Neurotron\": [\n        \"NNP\"\n    ], \n    \"cursory\": [\n        \"JJ\"\n    ], \n    \"three-to-five\": [\n        \"JJ\"\n    ], \n    \"mail-room\": [\n        \"NN\"\n    ], \n    \"sideline\": [\n        \"NN\"\n    ], \n    \"Greif\": [\n        \"NNP\"\n    ], \n    \"Josef\": [\n        \"NNP\"\n    ], \n    \"Siegler\": [\n        \"NNP\"\n    ], \n    \"currents\": [\n        \"NNS\"\n    ], \n    \"Hargett\": [\n        \"NNP\"\n    ], \n    \"heat-and-eat\": [\n        \"JJ\"\n    ], \n    \"answer\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"prohibits\": [\n        \"VBZ\"\n    ], \n    \"personal-income\": [\n        \"JJ\"\n    ], \n    \"crowding\": [\n        \"VBG\"\n    ], \n    \"undergoing\": [\n        \"VBG\"\n    ], \n    \"Stehelin\": [\n        \"NNP\"\n    ], \n    \"Bonne\": [\n        \"NNP\"\n    ], \n    \"word-weary\": [\n        \"JJ\"\n    ], \n    \"Hattie\": [\n        \"NNP\"\n    ], \n    \"trader\": [\n        \"NN\"\n    ], \n    \"hospitalizations\": [\n        \"NNS\"\n    ], \n    \"inactivity\": [\n        \"NN\"\n    ], \n    \"guerilla\": [\n        \"NN\"\n    ], \n    \"toilsome\": [\n        \"JJ\"\n    ], \n    \"tri-motor\": [\n        \"NN\"\n    ], \n    \"manic\": [\n        \"JJ\"\n    ], \n    \"labor-funded\": [\n        \"JJ\"\n    ], \n    \"capitalism\": [\n        \"NN\"\n    ], \n    \"maintain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"capitalist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Festivals\": [\n        \"NNS\"\n    ], \n    \"Blue\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Faye\": [\n        \"NNP\"\n    ], \n    \"cession\": [\n        \"NN\"\n    ], \n    \"fetus\": [\n        \"NN\"\n    ], \n    \"imbruing\": [\n        \"VBG\"\n    ], \n    \"cheese\": [\n        \"NN\"\n    ], \n    \"Blum\": [\n        \"NNP\"\n    ], \n    \"CROSS-BRED\": [\n        \"VBD\"\n    ], \n    \"pre-strike\": [\n        \"JJ\"\n    ], \n    \"coco\": [\n        \"NN\"\n    ], \n    \"fiber-producing\": [\n        \"JJ\"\n    ], \n    \"sycophantically\": [\n        \"RB\"\n    ], \n    \"neutered\": [\n        \"VBN\"\n    ], \n    \"ECONOMY\": [\n        \"NN\"\n    ], \n    \"scoring\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Campeau-unit\": [\n        \"JJ\"\n    ], \n    \"RENAISSANCE\": [\n        \"NNP\"\n    ], \n    \"non-dealer\": [\n        \"JJ\"\n    ], \n    \"better\": [\n        \"JJR\", \n        \"JJR|RBR\", \n        \"RBR|JJR\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"RBR\"\n    ], \n    \"differently\": [\n        \"RB\"\n    ], \n    \"accusatory\": [\n        \"JJ\"\n    ], \n    \"Ahoy\": [\n        \"NNP\"\n    ], \n    \"Homart\": [\n        \"NNP\"\n    ], \n    \"inhibitor\": [\n        \"NN\"\n    ], \n    \"overcome\": [\n        \"VB\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"pleasurable\": [\n        \"JJ\"\n    ], \n    \"regrouped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"S&Ls\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"fixation\": [\n        \"NN\"\n    ], \n    \"weakness\": [\n        \"NN\"\n    ], \n    \"workout\": [\n        \"NN\"\n    ], \n    \"Ditmar\": [\n        \"NNP\"\n    ], \n    \"intimidation\": [\n        \"NN\"\n    ], \n    \"chicken-wire\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"dejeuner\": [\n        \"FW\"\n    ], \n    \"DeConcini\": [\n        \"NNP\"\n    ], \n    \"singularity\": [\n        \"NN\"\n    ], \n    \"ISSUE\": [\n        \"NN\"\n    ], \n    \"Spahr\": [\n        \"NNP\"\n    ], \n    \"mamalian\": [\n        \"JJ\"\n    ], \n    \"unregistered\": [\n        \"JJ\"\n    ], \n    \"AMRO\": [\n        \"NNP\"\n    ], \n    \"grammar\": [\n        \"NN\"\n    ], \n    \"Graeme\": [\n        \"NNP\"\n    ], \n    \"Cairo\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Agreed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Harkins\": [\n        \"NNP\"\n    ], \n    \"Timna\": [\n        \"NNP\"\n    ], \n    \"placards\": [\n        \"NNS\"\n    ], \n    \"fringes\": [\n        \"NNS\"\n    ], \n    \"Trabold\": [\n        \"NNP\"\n    ], \n    \"went\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sulphured\": [\n        \"VBN\"\n    ], \n    \"OUSTED\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Agrees\": [\n        \"VBZ\"\n    ], \n    \"successively\": [\n        \"RB\"\n    ], \n    \"suspended\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Research-and-development\": [\n        \"NN\"\n    ], \n    \"Hulks\": [\n        \"NNS\"\n    ], \n    \"upstaged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"subjectivists\": [\n        \"NNS\"\n    ], \n    \"best-gaited\": [\n        \"JJ\"\n    ], \n    \"principles\": [\n        \"NNS\"\n    ], \n    \"relentlessly\": [\n        \"RB\"\n    ], \n    \"downplayed\": [\n        \"VBD\"\n    ], \n    \"hoteliers\": [\n        \"NNS\"\n    ], \n    \"projectiles\": [\n        \"NNS\"\n    ], \n    \"mandated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"contend\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"TRS-80\": [\n        \"NNP\"\n    ], \n    \"Lafarge\": [\n        \"NNP\"\n    ], \n    \"Karnsund\": [\n        \"NNP\"\n    ], \n    \"government-funded\": [\n        \"JJ\"\n    ], \n    \"particles\": [\n        \"NNS\"\n    ], \n    \"Rhone\": [\n        \"NNP\"\n    ], \n    \"Snaresbrook\": [\n        \"NNP\"\n    ], \n    \"NLD\": [\n        \"NNP\"\n    ], \n    \"locatin\": [\n        \"NN\"\n    ], \n    \"Ill\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"NLO\": [\n        \"NNP\"\n    ], \n    \"post-Hugo\": [\n        \"JJ\"\n    ], \n    \"B.B.\": [\n        \"NNP\"\n    ], \n    \"linear\": [\n        \"JJ\"\n    ], \n    \"PENNEY\": [\n        \"NNP\"\n    ], \n    \"Denshi\": [\n        \"NNP\"\n    ], \n    \"aborting\": [\n        \"VBG\"\n    ], \n    \"subtended\": [\n        \"JJ\"\n    ], \n    \"lineal\": [\n        \"JJ\"\n    ], \n    \"warmhearted\": [\n        \"JJ\"\n    ], \n    \"NL.\": [\n        \"NNP\"\n    ], \n    \"five-home-run\": [\n        \"JJ\"\n    ], \n    \"lacerated\": [\n        \"VBN\"\n    ], \n    \"Berthold\": [\n        \"NNP\"\n    ], \n    \"microchips\": [\n        \"NNS\"\n    ], \n    \"Diametric\": [\n        \"JJ\"\n    ], \n    \"signature\": [\n        \"NN\"\n    ], \n    \"swiping\": [\n        \"VBG\"\n    ], \n    \"Kivu\": [\n        \"NNP\"\n    ], \n    \"R/NNP.A.\": [\n        \"NN\"\n    ], \n    \"Kofcoh\": [\n        \"NNP\"\n    ], \n    \"Baldry\": [\n        \"NNP\"\n    ], \n    \"chronologically\": [\n        \"RB\"\n    ], \n    \"knitwear\": [\n        \"NN\"\n    ], \n    \"gas-saving\": [\n        \"JJ\"\n    ], \n    \"pre-Civil\": [\n        \"NNP\"\n    ], \n    \"deplete\": [\n        \"VB\"\n    ], \n    \"Commentary\": [\n        \"NNP\"\n    ], \n    \"myelogenous\": [\n        \"JJ\"\n    ], \n    \"take-it-or-leave\": [\n        \"JJ\"\n    ], \n    \"MIGHT\": [\n        \"MD\"\n    ], \n    \"masterfully\": [\n        \"RB\"\n    ], \n    \"grads\": [\n        \"NNS\"\n    ], \n    \"Ketelsen\": [\n        \"NNP\"\n    ], \n    \"Fortenbaugh\": [\n        \"NNP\"\n    ], \n    \"historian\": [\n        \"NN\"\n    ], \n    \"Levi\": [\n        \"NNP\"\n    ], \n    \"oriented-polypropylene\": [\n        \"JJ\"\n    ], \n    \"bleat\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"witnessing\": [\n        \"VBG\"\n    ], \n    \"clattering\": [\n        \"VBG\"\n    ], \n    \"pier-table\": [\n        \"NN\"\n    ], \n    \"Mariotta\": [\n        \"NNP\"\n    ], \n    \"somewhat\": [\n        \"RB\"\n    ], \n    \"WORLD\": [\n        \"NN\"\n    ], \n    \"Crain\": [\n        \"NNP\"\n    ], \n    \"spoiler\": [\n        \"NN\"\n    ], \n    \"Cybex\": [\n        \"NNP\"\n    ], \n    \"cold-bloodedly\": [\n        \"RB\"\n    ], \n    \"prongs\": [\n        \"NNS\"\n    ], \n    \"Grizzlies\": [\n        \"NNS\"\n    ], \n    \"frog-eating\": [\n        \"JJ\"\n    ], \n    \"mythic\": [\n        \"JJ\"\n    ], \n    \"thousand-legged\": [\n        \"JJ\"\n    ], \n    \"Almost\": [\n        \"RB\", \n        \"NNP\", \n        \"IN\"\n    ], \n    \"silly\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"deserving\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"spoiled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Disasters\": [\n        \"NNS\"\n    ], \n    \"usages\": [\n        \"NNS\"\n    ], \n    \"Houlian\": [\n        \"NNP\"\n    ], \n    \"demand...\": [\n        \":\"\n    ], \n    \"video-viewing\": [\n        \"JJ\"\n    ], \n    \"Dingy-looking\": [\n        \"JJ\"\n    ], \n    \"elevating\": [\n        \"VBG\"\n    ], \n    \"Pickering\": [\n        \"NNP\"\n    ], \n    \"Odeon\": [\n        \"NNP\"\n    ], \n    \"emphasizing\": [\n        \"VBG\"\n    ], \n    \"Mineworkers\": [\n        \"NNPS\"\n    ], \n    \"THROUGHOUT\": [\n        \"IN\"\n    ], \n    \"Government-mandated\": [\n        \"JJ\"\n    ], \n    \"closeted\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Byronism\": [\n        \"NN\"\n    ], \n    \"GRAINS\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Berardi\": [\n        \"NNP\"\n    ], \n    \"POW\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"private-school\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"POP\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"desist\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Grossner\": [\n        \"NNP\"\n    ], \n    \"payloads\": [\n        \"NNS\"\n    ], \n    \"panties\": [\n        \"NNS\"\n    ], \n    \"TWO-A-DAY\": [\n        \"JJ\"\n    ], \n    \"one-industry\": [\n        \"JJ\"\n    ], \n    \"Western-Central\": [\n        \"JJ\"\n    ], \n    \"Confederates\": [\n        \"NNS\"\n    ], \n    \"phonograph\": [\n        \"NN\"\n    ], \n    \"Gim-\": [\n        \"NNP\"\n    ], \n    \"Emshwiller\": [\n        \"NNP\"\n    ], \n    \"Vanguard\": [\n        \"NNP\"\n    ], \n    \"Lint\": [\n        \"NNP\"\n    ], \n    \"Alabama\": [\n        \"NNP\"\n    ], \n    \"Zeller\": [\n        \"NNP\"\n    ], \n    \"buts\": [\n        \"NNS\"\n    ], \n    \"Meson\": [\n        \"NNP\"\n    ], \n    \"Crow\": [\n        \"NNP\"\n    ], \n    \"nighttime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Meltzer\": [\n        \"NNP\"\n    ], \n    \"Single\": [\n        \"NNP\"\n    ], \n    \"definitely\": [\n        \"RB\"\n    ], \n    \"iodination\": [\n        \"NN\"\n    ], \n    \"Steelmakers\": [\n        \"NNS\"\n    ], \n    \"LSO\": [\n        \"NNP\"\n    ], \n    \"Copenhagen\": [\n        \"NNP\"\n    ], \n    \"Harnick\": [\n        \"NNP\"\n    ], \n    \"mailing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"urgency\": [\n        \"NN\"\n    ], \n    \"Carew\": [\n        \"NNP\"\n    ], \n    \"oft-quoted\": [\n        \"JJ\"\n    ], \n    \"secondbiggest\": [\n        \"JJS\"\n    ], \n    \"lyrics\": [\n        \"NNS\"\n    ], \n    \"Taussig\": [\n        \"NNP\"\n    ], \n    \"Weill\": [\n        \"NNP\"\n    ], \n    \"Carey\": [\n        \"NNP\"\n    ], \n    \"ballfields\": [\n        \"NNS\"\n    ], \n    \"ending\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\", \n        \"VBN\"\n    ], \n    \"attempts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chartered\": [\n        \"JJ\", \n        \"JJ|VBN\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Nite\": [\n        \"NNP\"\n    ], \n    \"Huhmun\": [\n        \"NNP\"\n    ], \n    \"Tamar\": [\n        \"NNP\"\n    ], \n    \"alcohols\": [\n        \"NNS\"\n    ], \n    \"hodge-podge\": [\n        \"NN\"\n    ], \n    \"acquit\": [\n        \"VB\"\n    ], \n    \"Teikoku\": [\n        \"NNP\"\n    ], \n    \"Jackson-Cross\": [\n        \"NNP\"\n    ], \n    \"coefficients\": [\n        \"NNS\"\n    ], \n    \"above-target\": [\n        \"JJ\"\n    ], \n    \"scrubbing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Taconic\": [\n        \"NNP\"\n    ], \n    \"exports\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Porsche\": [\n        \"NNP\"\n    ], \n    \"Crumb\": [\n        \"NNP\"\n    ], \n    \"establishes\": [\n        \"VBZ\"\n    ], \n    \"compounded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Realist\": [\n        \"NNP\"\n    ], \n    \"retaliating\": [\n        \"VBG\"\n    ], \n    \"Albanian\": [\n        \"NNP\"\n    ], \n    \"perceive\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Oneida\": [\n        \"NNP\"\n    ], \n    \"Sydney-based\": [\n        \"JJ\"\n    ], \n    \"Heck\": [\n        \"NNP\"\n    ], \n    \"equity-purchase\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Stober\": [\n        \"NNP\"\n    ], \n    \"Crump\": [\n        \"NNP\"\n    ], \n    \"thoroughbreds\": [\n        \"NNS\"\n    ], \n    \"FARMING\": [\n        \"NNP\"\n    ], \n    \"Realism\": [\n        \"NNP\"\n    ], \n    \"Disaffiliation\": [\n        \"NN\"\n    ], \n    \"Whitey\": [\n        \"NNP\"\n    ], \n    \"McMahon\": [\n        \"NNP\"\n    ], \n    \"cleanups\": [\n        \"NNS\"\n    ], \n    \"sallow\": [\n        \"JJ\"\n    ], \n    \"microscopy\": [\n        \"NN\"\n    ], \n    \"agglutinating\": [\n        \"VBG\"\n    ], \n    \"microscope\": [\n        \"NN\"\n    ], \n    \"softly\": [\n        \"RB\"\n    ], \n    \"Hippodrome\": [\n        \"NNP\"\n    ], \n    \"brotherism\": [\n        \"NN\"\n    ], \n    \"fresh-fruit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"THYSELF\": [\n        \"PRP\"\n    ], \n    \"flagged\": [\n        \"VBD\"\n    ], \n    \"Al-Chalabi\": [\n        \"NNP\"\n    ], \n    \"Underwater\": [\n        \"NNP\"\n    ], \n    \"Ozal\": [\n        \"NNP\"\n    ], \n    \"District\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"serratus\": [\n        \"NN\"\n    ], \n    \"Neurological\": [\n        \"NNP\"\n    ], \n    \"Christianity\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"vigilant\": [\n        \"JJ\"\n    ], \n    \"Huang-ti\": [\n        \"NNP\"\n    ], \n    \"half-an-hour\": [\n        \"NN\"\n    ], \n    \"notions\": [\n        \"NNS\"\n    ], \n    \"said\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"shaven\": [\n        \"JJ\"\n    ], \n    \"rightfield\": [\n        \"NN\"\n    ], \n    \"Hideous\": [\n        \"NNP\"\n    ], \n    \"Registered\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"sail\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"shaved\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"reassigned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Ngo\": [\n        \"NNP\"\n    ], \n    \"Negro-appeal\": [\n        \"JJ\"\n    ], \n    \"omeprazole\": [\n        \"NN\"\n    ], \n    \"ex-officio\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"shaves\": [\n        \"VBZ\"\n    ], \n    \"shaver\": [\n        \"NN\"\n    ], \n    \"tolerance\": [\n        \"NN\"\n    ], \n    \"sea-blessed\": [\n        \"JJ\"\n    ], \n    \"credo\": [\n        \"NN\"\n    ], \n    \"unsettlement\": [\n        \"NN\"\n    ], \n    \"HALT\": [\n        \"NNP\"\n    ], \n    \"Asset-Backed\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"restricting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Tenneco\": [\n        \"NNP\"\n    ], \n    \"split-bamboo\": [\n        \"JJ\"\n    ], \n    \"fifth-biggest\": [\n        \"JJ\"\n    ], \n    \"old-time\": [\n        \"JJ\"\n    ], \n    \"HALE\": [\n        \"NNP\"\n    ], \n    \"orthodontist\": [\n        \"NN\"\n    ], \n    \"ethnography\": [\n        \"NN\"\n    ], \n    \"gentry\": [\n        \"NN\"\n    ], \n    \"Lindbergh\": [\n        \"NN\"\n    ], \n    \"chemicals-industry\": [\n        \"NN\"\n    ], \n    \"Chipping\": [\n        \"VBG\"\n    ], \n    \"solid-fueled\": [\n        \"JJ\"\n    ], \n    \"Brazen\": [\n        \"NNP\"\n    ], \n    \"disinfected\": [\n        \"VBN\"\n    ], \n    \"cartilage\": [\n        \"NN\"\n    ], \n    \"Donating\": [\n        \"VBG\"\n    ], \n    \"power-grid\": [\n        \"NN\"\n    ], \n    \"Worship\": [\n        \"NNP\"\n    ], \n    \"pursuit\": [\n        \"NN\"\n    ], \n    \"archetypical\": [\n        \"JJ\"\n    ], \n    \"Trecker\": [\n        \"NNP\"\n    ], \n    \"repertory\": [\n        \"NN\"\n    ], \n    \"peyote\": [\n        \"NN\"\n    ], \n    \"hardworking\": [\n        \"JJ\"\n    ], \n    \"ACCO\": [\n        \"NNP\"\n    ], \n    \"lowly\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"CHECKOFF\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"fine-chiseled\": [\n        \"JJ\"\n    ], \n    \"line-item\": [\n        \"JJ\"\n    ], \n    \"fur-making\": [\n        \"JJ\"\n    ], \n    \"recut\": [\n        \"JJ\"\n    ], \n    \"Chavez\": [\n        \"NNP\"\n    ], \n    \"targeting\": [\n        \"VBG\", \n        \"VBG|NN\", \n        \"NN\"\n    ], \n    \"C.\": [\n        \"NNP\", \n        \"FW\", \n        \"LS\", \n        \"NN\"\n    ], \n    \"recur\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"mythological\": [\n        \"JJ\"\n    ], \n    \"low-sulphur\": [\n        \"JJ\"\n    ], \n    \"C$\": [\n        \"$\"\n    ], \n    \"cash-flow\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Telemetries\": [\n        \"NNPS\"\n    ], \n    \"Coxon\": [\n        \"NNP\"\n    ], \n    \"C1\": [\n        \"NNP\"\n    ], \n    \"half-educated\": [\n        \"JJ\"\n    ], \n    \"hearer\": [\n        \"NN\"\n    ], \n    \"CO\": [\n        \"NNP\"\n    ], \n    \"prosperous\": [\n        \"JJ\"\n    ], \n    \"boardroom\": [\n        \"NN\"\n    ], \n    \"CB\": [\n        \"NNP\"\n    ], \n    \"inattention\": [\n        \"NN\"\n    ], \n    \"CG\": [\n        \"NNP\"\n    ], \n    \"Ruding\": [\n        \"NNP\"\n    ], \n    \"CD\": [\n        \"NNP\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"tapping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"CS\": [\n        \"NNP\"\n    ], \n    \"Claims\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"CP\": [\n        \"NNP\"\n    ], \n    \"CW\": [\n        \"NNP\"\n    ], \n    \"calcified\": [\n        \"VBD\"\n    ], \n    \"half-swimming\": [\n        \"JJ\"\n    ], \n    \"CT\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"distorts\": [\n        \"VBZ\"\n    ], \n    \"Trupin\": [\n        \"NNP\"\n    ], \n    \"Ch\": [\n        \"NNP\"\n    ], \n    \"Co\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reddish\": [\n        \"JJ\"\n    ], \n    \"wrondgoing\": [\n        \"NN\"\n    ], \n    \"Ca\": [\n        \"MD\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"economies\": [\n        \"NNS\"\n    ], \n    \"Cy\": [\n        \"NNP\"\n    ], \n    \"itinerary\": [\n        \"NN\"\n    ], \n    \"Agoglia\": [\n        \"NNP\"\n    ], \n    \"Cr\": [\n        \"NNP\"\n    ], \n    \"employees\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Ct\": [\n        \"NNP\"\n    ], \n    \"spawn\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"second-grader\": [\n        \"NN\"\n    ], \n    \"Nae\": [\n        \"UH\"\n    ], \n    \"Nan\": [\n        \"NNP\"\n    ], \n    \"Ideas\": [\n        \"NNS\"\n    ], \n    \"Nam\": [\n        \"NNP\"\n    ], \n    \"Ideal\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"aku\": [\n        \"FW\"\n    ], \n    \"Nat\": [\n        \"NNP\"\n    ], \n    \"McAbee\": [\n        \"NNP\"\n    ], \n    \"grown\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"growl\": [\n        \"NN\"\n    ], \n    \"unfamiliarity\": [\n        \"NN\"\n    ], \n    \"tucking\": [\n        \"VBG\"\n    ], \n    \"Connectors\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"speculating\": [\n        \"VBG\"\n    ], \n    \"Zimbabwe\": [\n        \"NNP\"\n    ], \n    \"Wattie\": [\n        \"NNP\"\n    ], \n    \"vegetable\": [\n        \"NN\"\n    ], \n    \"Britton\": [\n        \"NNP\"\n    ], \n    \"confronting\": [\n        \"VBG\"\n    ], \n    \"Puccio\": [\n        \"NNP\"\n    ], \n    \"Umschlagplatz\": [\n        \"NNP\"\n    ], \n    \"then-biggest\": [\n        \"JJ\"\n    ], \n    \"waste-to-energy\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Raytheon\": [\n        \"NNP\"\n    ], \n    \"Morris\": [\n        \"NNP\"\n    ], \n    \"declarative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sacraments\": [\n        \"NNS\"\n    ], \n    \"Gasch\": [\n        \"NNP\"\n    ], \n    \"Schoeneman\": [\n        \"NNP\"\n    ], \n    \"overt\": [\n        \"JJ\"\n    ], \n    \"thoughts\": [\n        \"NNS\"\n    ], \n    \"purple-black\": [\n        \"JJ\"\n    ], \n    \"yongst\": [\n        \"JJS\"\n    ], \n    \"Multi-Income\": [\n        \"NNP\"\n    ], \n    \"Fulcrum\": [\n        \"NNP\"\n    ], \n    \"Caning\": [\n        \"NNP\"\n    ], \n    \"drubbing\": [\n        \"NN\"\n    ], \n    \"paradigm\": [\n        \"NN\"\n    ], \n    \"Vandiver\": [\n        \"NNP\"\n    ], \n    \"left\": [\n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"VBD\"\n    ], \n    \"Offsetting\": [\n        \"VBG\"\n    ], \n    \"just\": [\n        \"RB\", \n        \"JJ\", \n        \"RP\"\n    ], \n    \"Fixing\": [\n        \"VBG\"\n    ], \n    \"abstained\": [\n        \"VBD\"\n    ], \n    \"Nutt\": [\n        \"NNP\"\n    ], \n    \"longish\": [\n        \"JJ\"\n    ], \n    \"sequestration\": [\n        \"NN\"\n    ], \n    \"habitues\": [\n        \"NNS\"\n    ], \n    \"alludes\": [\n        \"VBZ\"\n    ], \n    \"propionate\": [\n        \"NN\"\n    ], \n    \"Sedgwick\": [\n        \"NNP\"\n    ], \n    \"trestles\": [\n        \"NNS\"\n    ], \n    \"Lupo\": [\n        \"NNP\"\n    ], \n    \"Yemen\": [\n        \"NNP\"\n    ], \n    \"six-man\": [\n        \"JJ\"\n    ], \n    \"construction-industry\": [\n        \"NN\"\n    ], \n    \"Lupe\": [\n        \"NNP\"\n    ], \n    \"devaluation\": [\n        \"NN\"\n    ], \n    \"jeweler\": [\n        \"NN\"\n    ], \n    \"clampdowns\": [\n        \"NNS\"\n    ], \n    \"wretch\": [\n        \"NN\"\n    ], \n    \"affinity\": [\n        \"NN\"\n    ], \n    \"News\": [\n        \"NNP\", \n        \"NN\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"spasms\": [\n        \"NNS\"\n    ], \n    \"Newt\": [\n        \"NNP\"\n    ], \n    \"Westhampton\": [\n        \"NNP\"\n    ], \n    \"Building\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"chives\": [\n        \"NNS\"\n    ], \n    \"Empedocles\": [\n        \"NNP\"\n    ], \n    \"hard-surface\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"relating\": [\n        \"VBG\"\n    ], \n    \"toxin\": [\n        \"NN\"\n    ], \n    \"Carraway\": [\n        \"NNP\"\n    ], \n    \"flatulence\": [\n        \"NN\"\n    ], \n    \"background\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"gastrocnemius\": [\n        \"NN\"\n    ], \n    \"farms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"downtrodden\": [\n        \"JJ\"\n    ], \n    \"afire\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Bait\": [\n        \"NNP\"\n    ], \n    \"Vogel\": [\n        \"NNP\"\n    ], \n    \"uncivil\": [\n        \"JJ\"\n    ], \n    \"Armour\": [\n        \"NNP\"\n    ], \n    \"Colonsville\": [\n        \"NNP\"\n    ], \n    \"intercollegiate\": [\n        \"JJ\"\n    ], \n    \"notorious\": [\n        \"JJ\"\n    ], \n    \"prepping\": [\n        \"VBG\"\n    ], \n    \"Bain\": [\n        \"NNP\"\n    ], \n    \"repudiate\": [\n        \"VB\"\n    ], \n    \"Beloved\": [\n        \"NNP\"\n    ], \n    \"atrium\": [\n        \"NN\"\n    ], \n    \"Moynihan\": [\n        \"NNP\"\n    ], \n    \"now-evident\": [\n        \"JJ\"\n    ], \n    \"district-court\": [\n        \"NN\"\n    ], \n    \"statistic\": [\n        \"NN\"\n    ], \n    \"amiable\": [\n        \"JJ\"\n    ], \n    \"repelling\": [\n        \"VBG\"\n    ], \n    \"PTL\": [\n        \"NNP\"\n    ], \n    \"Rolaids\": [\n        \"NNP\"\n    ], \n    \"sticker-shock\": [\n        \"NN\"\n    ], \n    \"PTC\": [\n        \"NNP\"\n    ], \n    \"PTA\": [\n        \"NNP\"\n    ], \n    \"Moneyletter\": [\n        \"NNP\"\n    ], \n    \"container-ship\": [\n        \"NN\"\n    ], \n    \"maitre\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"SCRAMBLE\": [\n        \"VBP\"\n    ], \n    \"ironworks\": [\n        \"NN\"\n    ], \n    \"bold\": [\n        \"JJ\"\n    ], \n    \"ballerinas\": [\n        \"NNS\"\n    ], \n    \"statistician\": [\n        \"NN\"\n    ], \n    \"Paramount-MCA\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"boll\": [\n        \"NN\"\n    ], \n    \"bolo\": [\n        \"NN\"\n    ], \n    \"blue-chips\": [\n        \"NNS\"\n    ], \n    \"animal-human\": [\n        \"NN\"\n    ], \n    \"Slippery\": [\n        \"NNP\"\n    ], \n    \"bolt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tartan\": [\n        \"NN\"\n    ], \n    \"insanity\": [\n        \"NN\"\n    ], \n    \"Noyes\": [\n        \"NNP\"\n    ], \n    \"Milties\": [\n        \"NNP\"\n    ], \n    \"richly\": [\n        \"RB\"\n    ], \n    \"Lolotte\": [\n        \"NNP\"\n    ], \n    \"Currie\": [\n        \"NNP\"\n    ], \n    \"status.\": [\n        \"NN\"\n    ], \n    \"C.D.s\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"rhyming\": [\n        \"VBG\"\n    ], \n    \"lied\": [\n        \"VBD\"\n    ], \n    \"Nike\": [\n        \"NNP\"\n    ], \n    \"Vickie\": [\n        \"NNP\"\n    ], \n    \"lien\": [\n        \"NN\"\n    ], \n    \"commuters\": [\n        \"NNS\"\n    ], \n    \"lies\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"mega-stardom\": [\n        \"NN\"\n    ], \n    \"lieu\": [\n        \"NN\", \n        \"FW\", \n        \"IN\"\n    ], \n    \"errs\": [\n        \"VBZ\"\n    ], \n    \"Louisianan\": [\n        \"NN\"\n    ], \n    \"Euro-housewife\": [\n        \"NN\"\n    ], \n    \"Arnold-Foster\": [\n        \"NNP\"\n    ], \n    \"Laphroaig\": [\n        \"NNP\"\n    ], \n    \"well-intentioned\": [\n        \"JJ\"\n    ], \n    \"dealer-community\": [\n        \"JJ\"\n    ], \n    \"approximate\": [\n        \"JJ\", \n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"influencing\": [\n        \"VBG\"\n    ], \n    \"remained\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Swearingen\": [\n        \"NNP\"\n    ], \n    \"impassioned\": [\n        \"JJ\"\n    ], \n    \"Chekovian\": [\n        \"JJ\"\n    ], \n    \"multiscreen\": [\n        \"JJ\"\n    ], \n    \"Passengers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"battery\": [\n        \"NN\"\n    ], \n    \"secondhand\": [\n        \"JJ\"\n    ], \n    \"ownership...\": [\n        \":\"\n    ], \n    \"possemen\": [\n        \"NNS\"\n    ], \n    \"Gemayel\": [\n        \"NNP\"\n    ], \n    \"overburden\": [\n        \"VB\"\n    ], \n    \"Jean\": [\n        \"NNP\"\n    ], \n    \"FFr27.68\": [\n        \"NN\"\n    ], \n    \"Melisande\": [\n        \"NNP\"\n    ], \n    \"continuance\": [\n        \"NN\"\n    ], \n    \"Cinerama\": [\n        \"NN\"\n    ], \n    \"Southfield\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"mega-welfare\": [\n        \"JJ\"\n    ], \n    \"attached\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Stoneman\": [\n        \"NNP\"\n    ], \n    \"boomerang\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Marxist-dominated\": [\n        \"JJ\"\n    ], \n    \"Aiwa\": [\n        \"NNP\"\n    ], \n    \"Cyanamid\": [\n        \"NNP\"\n    ], \n    \"Three-fourths\": [\n        \"NNS\"\n    ], \n    \"hypertrophied\": [\n        \"VBN\"\n    ], \n    \"covert\": [\n        \"JJ\"\n    ], \n    \"covers\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"vacate\": [\n        \"VB\"\n    ], \n    \"epiphysis\": [\n        \"NN\"\n    ], \n    \"purchase-and-lease\": [\n        \"JJ\"\n    ], \n    \"unholy\": [\n        \"JJ\"\n    ], \n    \"vista\": [\n        \"NN\"\n    ], \n    \"Worcestershire\": [\n        \"JJ\"\n    ], \n    \"Description\": [\n        \"NNP\"\n    ], \n    \"Balmer\": [\n        \"NNP\"\n    ], \n    \"interst\": [\n        \"NN\"\n    ], \n    \"Ruffo\": [\n        \"NNP\"\n    ], \n    \"excel\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"ex-Yankee\": [\n        \"NN\"\n    ], \n    \"get-along\": [\n        \"JJ\"\n    ], \n    \"adjourning\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"misinterpreted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Cobbs\": [\n        \"NNS\"\n    ], \n    \"Firm\": [\n        \"NN\", \n        \"JJ\", \n        \"NNP\"\n    ], \n    \"fork-lift\": [\n        \"NN\"\n    ], \n    \"sling\": [\n        \"NN\"\n    ], \n    \"Eben\": [\n        \"NNP\"\n    ], \n    \"Ebel\": [\n        \"NNP\"\n    ], \n    \"Eber\": [\n        \"NNP\"\n    ], \n    \"Accounting\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Falwell-like\": [\n        \"JJ\"\n    ], \n    \"unlocking\": [\n        \"VBG\"\n    ], \n    \"Skolovsky\": [\n        \"NNP\"\n    ], \n    \"Gatwick\": [\n        \"NNP\"\n    ], \n    \"militias\": [\n        \"NNS\"\n    ], \n    \"Line-item\": [\n        \"JJ\"\n    ], \n    \"Exabyte\": [\n        \"NNP\"\n    ], \n    \"Departing\": [\n        \"VBG\"\n    ], \n    \"microcosm\": [\n        \"NN\"\n    ], \n    \"daily\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Fire\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"premiums\": [\n        \"NNS\"\n    ], \n    \"Invest\\\\\": [\n        \"NNP\"\n    ], \n    \"Pilevsky\": [\n        \"NNP\"\n    ], \n    \"nonreactivity\": [\n        \"NN\"\n    ], \n    \"pellets\": [\n        \"NNS\"\n    ], \n    \"G.S.\": [\n        \"NNP\"\n    ], \n    \"overdue\": [\n        \"JJ\"\n    ], \n    \"Fibre\": [\n        \"NNP\"\n    ], \n    \"pan-nationalism\": [\n        \"NN\"\n    ], \n    \"Imposition\": [\n        \"NN\"\n    ], \n    \"Shelby\": [\n        \"NNP\"\n    ], \n    \"deputized\": [\n        \"VBN\"\n    ], \n    \"peruse\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"souls\": [\n        \"NNS\"\n    ], \n    \"three-stage\": [\n        \"JJ\"\n    ], \n    \"mile\": [\n        \"NN\"\n    ], \n    \"Scriptural\": [\n        \"JJ\"\n    ], \n    \"mafia\": [\n        \"NN\"\n    ], \n    \"mill\": [\n        \"NN\"\n    ], \n    \"bomber\": [\n        \"NN\"\n    ], \n    \"Linsert\": [\n        \"NNP\"\n    ], \n    \"milk\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"microprocessor\": [\n        \"NN\"\n    ], \n    \"Enviro-Gro\": [\n        \"NNP\"\n    ], \n    \"agleam\": [\n        \"JJ\"\n    ], \n    \"Zantac\": [\n        \"NNP\"\n    ], \n    \"single-most-needed\": [\n        \"JJ\"\n    ], \n    \"disgusting\": [\n        \"JJ\"\n    ], \n    \"blood-stained\": [\n        \"JJ\"\n    ], \n    \"Apple-Microsoft\": [\n        \"NNP\"\n    ], \n    \"amaze\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Boeings\": [\n        \"NNPS\"\n    ], \n    \"unpleasant\": [\n        \"JJ\"\n    ], \n    \"harnessing\": [\n        \"VBG\"\n    ], \n    \"overproduce\": [\n        \"VB\"\n    ], \n    \"J.K.\": [\n        \"NNP\"\n    ], \n    \"misstatements\": [\n        \"NNS\"\n    ], \n    \"encircle\": [\n        \"VB\"\n    ], \n    \"record-keeping\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"inciting\": [\n        \"VBG\"\n    ], \n    \"permissive\": [\n        \"JJ\"\n    ], \n    \"Annamorena\": [\n        \"NNP\"\n    ], \n    \"defense-authorization\": [\n        \"NN\"\n    ], \n    \"nationalize\": [\n        \"VB\"\n    ], \n    \"Sinemet\": [\n        \"NNP\"\n    ], \n    \"acetylene-fueled\": [\n        \"JJ\"\n    ], \n    \"case-by-case\": [\n        \"JJ\"\n    ], \n    \"Trumka\": [\n        \"NNP\"\n    ], \n    \"Rejoins\": [\n        \"VBZ\"\n    ], \n    \"mil.\": [\n        \"NN\"\n    ], \n    \"Recalls\": [\n        \"VBZ\"\n    ], \n    \"pious\": [\n        \"JJ\"\n    ], \n    \"Evian\": [\n        \"NNP\"\n    ], \n    \"governments\": [\n        \"NNS\"\n    ], \n    \"materialize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Protocol\": [\n        \"NNP\"\n    ], \n    \"apartheid\": [\n        \"NN\"\n    ], \n    \"economize\": [\n        \"VB\"\n    ], \n    \"involution\": [\n        \"NN\"\n    ], \n    \"Belanger\": [\n        \"NNP\"\n    ], \n    \"semi-major\": [\n        \"JJ\"\n    ], \n    \"shod\": [\n        \"JJ\"\n    ], \n    \"overlaid\": [\n        \"VBN\"\n    ], \n    \"drawings\": [\n        \"NNS\"\n    ], \n    \"system\": [\n        \"NN\"\n    ], \n    \"Faustian\": [\n        \"JJ\"\n    ], \n    \"Epidemiological\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"fearing\": [\n        \"VBG\"\n    ], \n    \"seasoning\": [\n        \"NN\"\n    ], \n    \"business-automation\": [\n        \"NN\"\n    ], \n    \"hobbyist\": [\n        \"NN\"\n    ], \n    \"Slovakia\": [\n        \"NNP\"\n    ], \n    \"threshed\": [\n        \"VBD\"\n    ], \n    \"outpouring\": [\n        \"NN\"\n    ], \n    \"resurgence\": [\n        \"NN\"\n    ], \n    \"buncha\": [\n        \"NN\"\n    ], \n    \"casks\": [\n        \"NNS\"\n    ], \n    \"dishonored\": [\n        \"VBN\"\n    ], \n    \"Toxicology\": [\n        \"NNP\"\n    ], \n    \"Bartok\": [\n        \"NNP\"\n    ], \n    \"price-skirmishing\": [\n        \"JJ\"\n    ], \n    \"deerskins\": [\n        \"NNS\"\n    ], \n    \"Colquitt\": [\n        \"NNP\"\n    ], \n    \"wage-price\": [\n        \"JJ\"\n    ], \n    \"MYSTERY\": [\n        \"NNP\"\n    ], \n    \"mechanic\": [\n        \"NN\"\n    ], \n    \"Raesz\": [\n        \"NNP\"\n    ], \n    \"bloke\": [\n        \"NN\"\n    ], \n    \"guardian\": [\n        \"NN\"\n    ], \n    \"clerk\": [\n        \"NN\"\n    ], \n    \"unsmilingly\": [\n        \"RB\"\n    ], \n    \"stallion\": [\n        \"NN\"\n    ], \n    \"french\": [\n        \"JJ\", \n        \"NN\", \n        \"NNS\"\n    ], \n    \"Eurodebt\": [\n        \"NNP\"\n    ], \n    \"Signed\": [\n        \"VBN\"\n    ], \n    \"brownouts\": [\n        \"NNS\"\n    ], \n    \"enjoinder\": [\n        \"NN\"\n    ], \n    \"Changes\": [\n        \"NNS\", \n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"elegantly\": [\n        \"RB\"\n    ], \n    \"trenchermen\": [\n        \"NNS\"\n    ], \n    \"vintner\": [\n        \"NN\"\n    ], \n    \"Harkin\": [\n        \"NNP\"\n    ], \n    \"dual-career\": [\n        \"JJ\"\n    ], \n    \"Hull\": [\n        \"NNP\"\n    ], \n    \"high-tech\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"biopsies\": [\n        \"NNS\"\n    ], \n    \"Baldwin\": [\n        \"NNP\"\n    ], \n    \"non-recourse\": [\n        \"JJ\"\n    ], \n    \"massage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"validate\": [\n        \"VB\"\n    ], \n    \"breathtaking\": [\n        \"JJ\"\n    ], \n    \"spatially\": [\n        \"RB\"\n    ], \n    \"Whee\": [\n        \"NNP\"\n    ], \n    \"one-night\": [\n        \"JJ\"\n    ], \n    \"Admission\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Villalobos\": [\n        \"NNP\"\n    ], \n    \"When\": [\n        \"WRB\", \n        \"NNP\"\n    ], \n    \"Stopping\": [\n        \"VBG\"\n    ], \n    \"stiletto\": [\n        \"NN\"\n    ], \n    \"Holabird\": [\n        \"NNP\"\n    ], \n    \"Fountain\": [\n        \"NNP\"\n    ], \n    \"licensing\": [\n        \"NN\", \n        \"VBG\", \n        \"JJ\"\n    ], \n    \"ailing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Toyoda\": [\n        \"NNP\"\n    ], \n    \"sported\": [\n        \"VBD\"\n    ], \n    \"Specialist\": [\n        \"NNP\"\n    ], \n    \"Australia\": [\n        \"NNP\"\n    ], \n    \"serpent\": [\n        \"NN\"\n    ], \n    \"weeklong\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"intensively\": [\n        \"RB\"\n    ], \n    \"perk\": [\n        \"JJ\", \n        \"VB\"\n    ], \n    \"Giselle\": [\n        \"NNP\"\n    ], \n    \"franca\": [\n        \"FW\"\n    ], \n    \"Kleber\": [\n        \"NNP\"\n    ], \n    \"creamy\": [\n        \"JJ\"\n    ], \n    \"Conchita\": [\n        \"NNP\"\n    ], \n    \"pert\": [\n        \"JJ\"\n    ], \n    \"francs\": [\n        \"NNS\"\n    ], \n    \"mushroom-processing\": [\n        \"JJ\"\n    ], \n    \"creams\": [\n        \"NNS\"\n    ], \n    \"checkout\": [\n        \"NN\"\n    ], \n    \"Turtle\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"MicroBilt\": [\n        \"NNP\"\n    ], \n    \"drinkable\": [\n        \"JJ\"\n    ], \n    \"cremate\": [\n        \"VB\"\n    ], \n    \"hurlers\": [\n        \"NNS\"\n    ], \n    \"fine-tuned\": [\n        \"JJ\"\n    ], \n    \"obelisk\": [\n        \"NN\"\n    ], \n    \"beholder\": [\n        \"NN\"\n    ], \n    \"Lusignan\": [\n        \"NNP\"\n    ], \n    \"mouthing\": [\n        \"VBG\"\n    ], \n    \"superhighways\": [\n        \"NNS\"\n    ], \n    \"Dependency\": [\n        \"NNP\"\n    ], \n    \"beholden\": [\n        \"JJ\"\n    ], \n    \"realty\": [\n        \"NN\"\n    ], \n    \"ex-liberals\": [\n        \"NNS\"\n    ], \n    \"Pyramid\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"recites\": [\n        \"VBZ\"\n    ], \n    \"gassy\": [\n        \"JJ\"\n    ], \n    \"armpits\": [\n        \"NNS\"\n    ], \n    \"deformed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"bitee\": [\n        \"NN\"\n    ], \n    \"Bath\": [\n        \"NNP\"\n    ], \n    \"quivers\": [\n        \"NNS\"\n    ], \n    \"farmer-type\": [\n        \"JJ\"\n    ], \n    \"armhole\": [\n        \"NN\"\n    ], \n    \"supportable\": [\n        \"JJ\"\n    ], \n    \"Basing\": [\n        \"VBG\"\n    ], \n    \"biter\": [\n        \"NN\"\n    ], \n    \"claim\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Voluntary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Jurisprudence\": [\n        \"NN\"\n    ], \n    \"Headline\": [\n        \"NNP\"\n    ], \n    \"photofinishers\": [\n        \"NNS\"\n    ], \n    \"agent\": [\n        \"NN\"\n    ], \n    \"Commenting\": [\n        \"VBG\"\n    ], \n    \"page-composition\": [\n        \"NN\"\n    ], \n    \"Ohio-chartered\": [\n        \"JJ\"\n    ], \n    \"Dilzem\": [\n        \"NNP\"\n    ], \n    \"arsenide\": [\n        \"NN\"\n    ], \n    \"Alger\": [\n        \"NNP\"\n    ], \n    \"recited\": [\n        \"VBD\"\n    ], \n    \"Everhart\": [\n        \"NNP\"\n    ], \n    \"Sa-Duk\": [\n        \"NNP\"\n    ], \n    \"Prometheus\": [\n        \"NNP\"\n    ], \n    \"Whiteman\": [\n        \"NNP\"\n    ], \n    \"marbleized\": [\n        \"VBN\"\n    ], \n    \"mandatory-retirement\": [\n        \"JJ\"\n    ], \n    \"Pye\": [\n        \"NNP\"\n    ], \n    \"employee-owned\": [\n        \"JJ\"\n    ], \n    \"staying\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"budget-wise\": [\n        \"JJ\"\n    ], \n    \"accessory\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Versicherungs\": [\n        \"NNP\"\n    ], \n    \"epileptics\": [\n        \"NNS\"\n    ], \n    \"aisles\": [\n        \"NNS\"\n    ], \n    \"REMICs\": [\n        \"NNS\"\n    ], \n    \"omen\": [\n        \"NN\"\n    ], \n    \"Junsheng\": [\n        \"NNP\"\n    ], \n    \"holdouts\": [\n        \"NNS\"\n    ], \n    \"Ribozymes\": [\n        \"NNS\"\n    ], \n    \"instills\": [\n        \"VBZ\"\n    ], \n    \"switch\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"downsized\": [\n        \"VBN\"\n    ], \n    \"longhand\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Commentators\": [\n        \"NNS\"\n    ], \n    \"granary\": [\n        \"NN\"\n    ], \n    \"Masket\": [\n        \"NNP\"\n    ], \n    \"technophiliac\": [\n        \"JJ\"\n    ], \n    \"Fella\": [\n        \"UH\"\n    ], \n    \"frittered\": [\n        \"VBN\"\n    ], \n    \"seizing\": [\n        \"VBG\"\n    ], \n    \"Suburbs\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Covington\": [\n        \"NNP\"\n    ], \n    \"Coconuts\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"sculpts\": [\n        \"VBZ\"\n    ], \n    \"spinoff\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"irresolute\": [\n        \"JJ\"\n    ], \n    \"Elsewhere\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"process-server\": [\n        \"NN\"\n    ], \n    \"Hokuriku\": [\n        \"NNP\"\n    ], \n    \"Nintendos\": [\n        \"NNPS\"\n    ], \n    \"Psychiatric\": [\n        \"NNP\"\n    ], \n    \"Lugosi\": [\n        \"NNP\"\n    ], \n    \"Snacking\": [\n        \"NN\"\n    ], \n    \"credit-enhancement\": [\n        \"NN\"\n    ], \n    \"Amis\": [\n        \"NNP\"\n    ], \n    \"ours\": [\n        \"PRP\", \n        \"JJ\", \n        \"PRP$\"\n    ], \n    \"secondary\": [\n        \"JJ\"\n    ], \n    \"multi-billion-dollar\": [\n        \"JJ\"\n    ], \n    \"re-export\": [\n        \"NN\"\n    ], \n    \"Scenario\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Manas\": [\n        \"NNP\"\n    ], \n    \"bein\": [\n        \"VBG\", \n        \"FW\"\n    ], \n    \"drowsing\": [\n        \"VBG\"\n    ], \n    \"sarcastic\": [\n        \"JJ\"\n    ], \n    \"cross-shareholdings\": [\n        \"NNS\"\n    ], \n    \"Mussorgsky\": [\n        \"NNP\"\n    ], \n    \"Retailers\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"no-muss\": [\n        \"JJ\"\n    ], \n    \"Manac\": [\n        \"NNP\"\n    ], \n    \"Tyson\": [\n        \"NNP\"\n    ], \n    \"developments\": [\n        \"NNS\"\n    ], \n    \"Everything\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"chockfull\": [\n        \"JJ\"\n    ], \n    \"unvisited\": [\n        \"VBN\"\n    ], \n    \"Monteverdi\": [\n        \"NNP\"\n    ], \n    \"Francaises\": [\n        \"NNP\"\n    ], \n    \"discourages\": [\n        \"VBZ\"\n    ], \n    \"post-Black\": [\n        \"JJ\"\n    ], \n    \"Affliction\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dowguard\": [\n        \"NNP\"\n    ], \n    \"Event\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"liberating\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Zealand\": [\n        \"NNP\"\n    ], \n    \"non-institutionalized\": [\n        \"JJ\"\n    ], \n    \"pre-merger\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"slaughters\": [\n        \"VBZ\"\n    ], \n    \"shack-up\": [\n        \"JJ\"\n    ], \n    \"dainty-legged\": [\n        \"JJ\"\n    ], \n    \"judicial-bypass\": [\n        \"JJ\"\n    ], \n    \"Unitas\": [\n        \"NNP\"\n    ], \n    \"Badder\": [\n        \"NNP\"\n    ], \n    \"electro-optics\": [\n        \"NNS\"\n    ], \n    \"Rieslings\": [\n        \"NNPS\"\n    ], \n    \"McGuigan\": [\n        \"NNP\"\n    ], \n    \"many-fold\": [\n        \"RB\"\n    ], \n    \"self-deceiving\": [\n        \"JJ\"\n    ], \n    \"Strangler\": [\n        \"NNP\"\n    ], \n    \"Riverfront\": [\n        \"NNP\"\n    ], \n    \"RTS\": [\n        \"NNP\"\n    ], \n    \"blubber\": [\n        \"NN\"\n    ], \n    \"dominate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"stock-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ethicists\": [\n        \"NNS\"\n    ], \n    \"Yves\": [\n        \"NNP\"\n    ], \n    \"Responding\": [\n        \"VBG\"\n    ], \n    \"Malizia\": [\n        \"NNP\"\n    ], \n    \"bootlegged\": [\n        \"VBN\"\n    ], \n    \"therefores\": [\n        \"NNS\"\n    ], \n    \"Channel-type\": [\n        \"NN\"\n    ], \n    \"mortared\": [\n        \"VBN\"\n    ], \n    \"musing\": [\n        \"VBG\"\n    ], \n    \"home-sharing\": [\n        \"NN\"\n    ], \n    \"bootlegger\": [\n        \"NN\"\n    ], \n    \"forbids\": [\n        \"VBZ\"\n    ], \n    \"Misdemeanors\": [\n        \"NNS\"\n    ], \n    \"Remics\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Walking\": [\n        \"VBG\"\n    ], \n    \"Kimpton\": [\n        \"NNP\"\n    ], \n    \"ministry\": [\n        \"NN\"\n    ], \n    \"standby\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"exhaustingly\": [\n        \"RB\"\n    ], \n    \"Yogi\": [\n        \"NNP\"\n    ], \n    \"trans-political\": [\n        \"JJ\"\n    ], \n    \"Dubinin\": [\n        \"NNP\"\n    ], \n    \"physicals\": [\n        \"NNS\"\n    ], \n    \"Brock\": [\n        \"NNP\"\n    ], \n    \"remuneration\": [\n        \"NN\"\n    ], \n    \"mid-air\": [\n        \"NN\"\n    ], \n    \"oafs\": [\n        \"NNS\"\n    ], \n    \"philosophized\": [\n        \"VBD\"\n    ], \n    \"Helix\": [\n        \"NNP\"\n    ], \n    \"extrovert\": [\n        \"NN\"\n    ], \n    \"Gestapo\": [\n        \"NNP\"\n    ], \n    \"HealthAmerica\": [\n        \"NNP\"\n    ], \n    \"Hefner\": [\n        \"NNP\"\n    ], \n    \"personalities\": [\n        \"NNS\"\n    ], \n    \"Huaqiong\": [\n        \"NNP\"\n    ], \n    \"trisodium\": [\n        \"NN\"\n    ], \n    \"J.P.\": [\n        \"NNP\"\n    ], \n    \"Terra\": [\n        \"NNP\"\n    ], \n    \"inflight\": [\n        \"JJ\"\n    ], \n    \"mare-COOR\": [\n        \"NNP\"\n    ], \n    \"masquers\": [\n        \"NNS\"\n    ], \n    \"amphetamines\": [\n        \"NNS\"\n    ], \n    \"mining\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Marni\": [\n        \"NNP\"\n    ], \n    \"Talton\": [\n        \"NNP\"\n    ], \n    \"Bioanalytical\": [\n        \"NNP\"\n    ], \n    \"loneliest\": [\n        \"JJS\"\n    ], \n    \"Doak\": [\n        \"NNP\"\n    ], \n    \"sequels\": [\n        \"NNS\"\n    ], \n    \"Trumps\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Santamaria\": [\n        \"NNP\"\n    ], \n    \"Toffenetti\": [\n        \"NNP\"\n    ], \n    \"Martens\": [\n        \"NNP\"\n    ], \n    \"Replacement\": [\n        \"NN\"\n    ], \n    \"relative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"exclusionary\": [\n        \"JJ\"\n    ], \n    \"Horicon\": [\n        \"NNP\"\n    ], \n    \"WordStar\": [\n        \"NNP\"\n    ], \n    \"Maloney\": [\n        \"NNP\"\n    ], \n    \"bulk-mail\": [\n        \"NN\"\n    ], \n    \"mutilation\": [\n        \"NN\"\n    ], \n    \"CHINA\": [\n        \"NNP\"\n    ], \n    \"scaffoldings\": [\n        \"NNS\"\n    ], \n    \"LISA\": [\n        \"NNP\"\n    ], \n    \"Rampell\": [\n        \"NNP\"\n    ], \n    \"Crashing\": [\n        \"VBG\"\n    ], \n    \"Kuehn\": [\n        \"NNP\"\n    ], \n    \"Tunisian\": [\n        \"NNP\"\n    ], \n    \"Court\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Wrecking\": [\n        \"NN\"\n    ], \n    \"state-local\": [\n        \"JJ\"\n    ], \n    \"occupies\": [\n        \"VBZ\"\n    ], \n    \"dash\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Respiratory\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"greet\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"spectacle\": [\n        \"NN\"\n    ], \n    \"Animals\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"occupied\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"TGS\": [\n        \"NNP\"\n    ], \n    \"clung\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"stopgap\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Zambia\": [\n        \"NNP\"\n    ], \n    \"upgrading\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Clothiers\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Corvus\": [\n        \"NNP\"\n    ], \n    \"attitudinizing\": [\n        \"NN\"\n    ], \n    \"Pilferage\": [\n        \"NN\"\n    ], \n    \"Wish-List\": [\n        \"NN\"\n    ], \n    \"strengtened\": [\n        \"VBN\"\n    ], \n    \"cooing\": [\n        \"VBG\"\n    ], \n    \"theatre\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"normal\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"blackest\": [\n        \"JJS\"\n    ], \n    \"McColl\": [\n        \"NNP\"\n    ], \n    \"McColm\": [\n        \"NNP\"\n    ], \n    \"halvah\": [\n        \"NN\"\n    ], \n    \"Tredding\": [\n        \"NNP\"\n    ], \n    \"hardships\": [\n        \"NNS\"\n    ], \n    \"atrocity\": [\n        \"NN\"\n    ], \n    \"Courtney\": [\n        \"NNP\"\n    ], \n    \"especially\": [\n        \"RB\"\n    ], \n    \"hand-picked\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"three-snake\": [\n        \"JJ\"\n    ], \n    \"Double-Figure\": [\n        \"NNP\"\n    ], \n    \"gimmick-ridden\": [\n        \"JJ\"\n    ], \n    \"Amsterdam\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"withdrawals\": [\n        \"NNS\"\n    ], \n    \"precise\": [\n        \"JJ\"\n    ], \n    \"Germeten\": [\n        \"NNP\"\n    ], \n    \"medalist\": [\n        \"NN\"\n    ], \n    \"redactor\": [\n        \"NN\"\n    ], \n    \"Tese\": [\n        \"NNP\"\n    ], \n    \"Demographie\": [\n        \"NNP\"\n    ], \n    \"Assassination\": [\n        \"NNP\"\n    ], \n    \"moderator\": [\n        \"NN\"\n    ], \n    \"Mazzoni\": [\n        \"NNP\"\n    ], \n    \"habeas-corpus\": [\n        \"JJ\"\n    ], \n    \"therapist\": [\n        \"NN\"\n    ], \n    \"Wondering\": [\n        \"VBG\"\n    ], \n    \"Test\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Chamberlain\": [\n        \"NNP\"\n    ], \n    \"K-9\": [\n        \"NNP\"\n    ], \n    \"climber\": [\n        \"NN\"\n    ], \n    \"objector\": [\n        \"NN\"\n    ], \n    \"re-emerged\": [\n        \"VBD\"\n    ], \n    \"committee...\": [\n        \":\"\n    ], \n    \"soliciting\": [\n        \"VBG\"\n    ], \n    \"Overbuilt\": [\n        \"JJ\"\n    ], \n    \"lauded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Unresolved\": [\n        \"JJ\"\n    ], \n    \"montgolfing\": [\n        \"NN\"\n    ], \n    \"empty-handed\": [\n        \"JJ\"\n    ], \n    \"RISE\": [\n        \"NN\"\n    ], \n    \"reps\": [\n        \"NNS\"\n    ], \n    \"RISC\": [\n        \"NNP\"\n    ], \n    \"milkshakes\": [\n        \"NNS\"\n    ], \n    \"Turn\": [\n        \"VB\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"killers\": [\n        \"NNS\"\n    ], \n    \"Turk\": [\n        \"NNP\"\n    ], \n    \"Turf\": [\n        \"NNP\"\n    ], \n    \"marooned\": [\n        \"VBD\"\n    ], \n    \"astounds\": [\n        \"VBZ\"\n    ], \n    \"conceived...\": [\n        \":\"\n    ], \n    \"timepiece\": [\n        \"NN\"\n    ], \n    \"Alliance\": [\n        \"NNP\"\n    ], \n    \"order-delivery\": [\n        \"JJ\"\n    ], \n    \"K-H\": [\n        \"NNP\"\n    ], \n    \"Fiala\": [\n        \"NNP\"\n    ], \n    \"subtype\": [\n        \"NN\"\n    ], \n    \"panjandrums\": [\n        \"NNS\"\n    ], \n    \"photographically\": [\n        \"RB\"\n    ], \n    \"Murata\": [\n        \"NNP\"\n    ], \n    \"Educational\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"declarations\": [\n        \"NNS\"\n    ], \n    \"milling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"heavier-than-normal\": [\n        \"JJ\"\n    ], \n    \"Hotel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Goddess\": [\n        \"NNP\"\n    ], \n    \"workweeks\": [\n        \"NNS\"\n    ], \n    \"cologne\": [\n        \"NN\"\n    ], \n    \"seven-point\": [\n        \"JJ\"\n    ], \n    \"salutation\": [\n        \"NN\"\n    ], \n    \"pebble\": [\n        \"NN\"\n    ], \n    \"sameness\": [\n        \"NN\"\n    ], \n    \"envisioning\": [\n        \"VBG\"\n    ], \n    \"gantlet\": [\n        \"NN\"\n    ], \n    \"chronically\": [\n        \"RB\"\n    ], \n    \"AHEAD\": [\n        \"RB\"\n    ], \n    \"gags\": [\n        \"NNS\"\n    ], \n    \"price-gouging\": [\n        \"NN\"\n    ], \n    \"get-out-the-vote\": [\n        \"JJ\"\n    ], \n    \"LJN\": [\n        \"NNP\"\n    ], \n    \"gage\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"calfskin\": [\n        \"NN\"\n    ], \n    \"enumerated\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"SCIENTISTS\": [\n        \"NNS\"\n    ], \n    \"moaned\": [\n        \"VBD\"\n    ], \n    \"brokenly\": [\n        \"RB\"\n    ], \n    \"whispered\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Ballinger\": [\n        \"NNP\"\n    ], \n    \"parent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Visually\": [\n        \"RB\"\n    ], \n    \"FOOD\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"preferred-dividend\": [\n        \"JJ\"\n    ], \n    \"pained\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Overnight\": [\n        \"RB\"\n    ], \n    \"Merryman\": [\n        \"NNP\"\n    ], \n    \"countenance\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"unanalyzed\": [\n        \"JJ\"\n    ], \n    \"harpsichordist\": [\n        \"NN\"\n    ], \n    \"singers\": [\n        \"NNS\"\n    ], \n    \"wounds\": [\n        \"NNS\"\n    ], \n    \"childbirth\": [\n        \"NN\"\n    ], \n    \"under-performing\": [\n        \"JJ\"\n    ], \n    \"ringleader\": [\n        \"NN\"\n    ], \n    \"Corrective\": [\n        \"JJ\"\n    ], \n    \"lbs.\": [\n        \"NNS\"\n    ], \n    \"Brockway\": [\n        \"NNP\"\n    ], \n    \"trades\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"typify\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"dedicate\": [\n        \"VB\"\n    ], \n    \"patrons\": [\n        \"NNS\"\n    ], \n    \"orchestration\": [\n        \"NN\"\n    ], \n    \"traded\": [\n        \"VBN\", \n        \"VBD\", \n        \"VBN|VBD\", \n        \"JJ\"\n    ], \n    \"Kan.-based\": [\n        \"JJ\"\n    ], \n    \"arcaded\": [\n        \"JJ\"\n    ], \n    \"Good-faith\": [\n        \"NN\"\n    ], \n    \"terse\": [\n        \"JJ\"\n    ], \n    \"flim-flam\": [\n        \"NN\"\n    ], \n    \"Fulmar\": [\n        \"NNP\"\n    ], \n    \"Ouray\": [\n        \"NNP\"\n    ], \n    \"maintained\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"grants\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"arcades\": [\n        \"NNS\"\n    ], \n    \"disciplinary\": [\n        \"JJ\"\n    ], \n    \"Poconos\": [\n        \"NNPS\"\n    ], \n    \"unopened\": [\n        \"JJ\"\n    ], \n    \"Sure\": [\n        \"RB\", \n        \"NNP\", \n        \"NNS\", \n        \"JJ\", \n        \"UH\"\n    ], \n    \"Comission\": [\n        \"NNP\"\n    ], \n    \"undertake\": [\n        \"VB\"\n    ], \n    \"employee-contributed\": [\n        \"JJ\"\n    ], \n    \"Schiele\": [\n        \"NNP\"\n    ], \n    \"Bohrer\": [\n        \"NNP\"\n    ], \n    \"employments\": [\n        \"NNS\"\n    ], \n    \"easement\": [\n        \"NN\"\n    ], \n    \"Expressions\": [\n        \"NNS\"\n    ], \n    \"devilish\": [\n        \"JJ\"\n    ], \n    \"base-rate\": [\n        \"JJ\"\n    ], \n    \"gander\": [\n        \"NN\"\n    ], \n    \"gripped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"referrin\": [\n        \"VBG\"\n    ], \n    \"optimality\": [\n        \"NN\"\n    ], \n    \"upper-middle-income\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"fear-filled\": [\n        \"JJ\"\n    ], \n    \"Provato\": [\n        \"NNP\"\n    ], \n    \"wasteful-racist-savagery\": [\n        \"NN\"\n    ], \n    \"Scotch\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"stacked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"turtles\": [\n        \"NNS\"\n    ], \n    \"outspends\": [\n        \"VBZ\"\n    ], \n    \"Caused\": [\n        \"VBN\"\n    ], \n    \"sobbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Ruark\": [\n        \"NNP\"\n    ], \n    \"stacker\": [\n        \"NN\"\n    ], \n    \"steel-exporting\": [\n        \"JJ\"\n    ], \n    \"Hessan\": [\n        \"NNP\"\n    ], \n    \"Causes\": [\n        \"NNP\"\n    ], \n    \"Muzzling\": [\n        \"JJ\"\n    ], \n    \"U.S.-Israel-Egyptian\": [\n        \"JJ\"\n    ], \n    \"bathrooms\": [\n        \"NNS\"\n    ], \n    \"tirades\": [\n        \"NNS\"\n    ], \n    \"characteristics\": [\n        \"NNS\"\n    ], \n    \"Honjo\": [\n        \"NNP\"\n    ], \n    \"them\": [\n        \"PRP\", \n        \"DT\"\n    ], \n    \"reignited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sprained\": [\n        \"VBN\"\n    ], \n    \"cluster\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"defense-equipment\": [\n        \"JJ\"\n    ], \n    \"dangerously\": [\n        \"RB\"\n    ], \n    \"Alasdair\": [\n        \"NNP\"\n    ], \n    \"underweighted\": [\n        \"VBN\"\n    ], \n    \"traffickers\": [\n        \"NNS\"\n    ], \n    \"obnoxious\": [\n        \"JJ\"\n    ], \n    \"everyday\": [\n        \"JJ\"\n    ], \n    \"overshoes\": [\n        \"NNS\"\n    ], \n    \"pap\": [\n        \"NN\"\n    ], \n    \"uneconomic\": [\n        \"JJ\"\n    ], \n    \"par\": [\n        \"NN\", \n        \"FW\", \n        \"IN\", \n        \"JJ\"\n    ], \n    \"pas\": [\n        \"FW\"\n    ], \n    \"pat\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"paw\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"cotton-ginning\": [\n        \"JJ\"\n    ], \n    \"Notre\": [\n        \"NNP\"\n    ], \n    \"steppes\": [\n        \"NNS\"\n    ], \n    \"heirs\": [\n        \"NNS\"\n    ], \n    \"Bucaramanga\": [\n        \"NNP\"\n    ], \n    \"thinning\": [\n        \"VBG\"\n    ], \n    \"pad\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Muskegon\": [\n        \"NNP\"\n    ], \n    \"stepped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Fretting\": [\n        \"VBG\"\n    ], \n    \"pal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"thee\": [\n        \"PRP\"\n    ], \n    \"pan\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"telephone-company\": [\n        \"NN\"\n    ], \n    \"McDermid\": [\n        \"NNP\"\n    ], \n    \"claps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Commanders\": [\n        \"NNPS\"\n    ], \n    \"seagulls\": [\n        \"NNS\"\n    ], \n    \"sub-headlines\": [\n        \"NNS\"\n    ], \n    \"one-paragraph\": [\n        \"JJ\"\n    ], \n    \"Divestiture\": [\n        \"NN\"\n    ], \n    \"running\": [\n        \"VBG\", \n        \"NN|VBG\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Ill.-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"goal-values\": [\n        \"NNS\"\n    ], \n    \"beer-belly\": [\n        \"NN\"\n    ], \n    \"mortgaged\": [\n        \"VBN\"\n    ], \n    \"haint\": [\n        \"VBZ\"\n    ], \n    \"markup\": [\n        \"NN\"\n    ], \n    \"Knight-Ridder\": [\n        \"NNP\"\n    ], \n    \"twin-jets\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"spoonful\": [\n        \"NN\"\n    ], \n    \"four-page\": [\n        \"JJ\"\n    ], \n    \"gates\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"they\": [\n        \"PRP\"\n    ], \n    \"Meyers\": [\n        \"NNP\"\n    ], \n    \"Paramedics\": [\n        \"NNS\"\n    ], \n    \"OVER\": [\n        \"IN\"\n    ], \n    \"SETSW\": [\n        \"NN\"\n    ], \n    \"dehydration\": [\n        \"NN\"\n    ], \n    \"Scopo\": [\n        \"NNP\"\n    ], \n    \"aspect\": [\n        \"NN\"\n    ], \n    \"mutual-assured\": [\n        \"JJ\"\n    ], \n    \"Pershing\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Hadrian\": [\n        \"NNP\"\n    ], \n    \"shying\": [\n        \"VBG\"\n    ], \n    \"doctoral\": [\n        \"JJ\"\n    ], \n    \"Inefficient\": [\n        \"JJ\"\n    ], \n    \"Criticality\": [\n        \"NN\"\n    ], \n    \"Symbolizing\": [\n        \"VBG\"\n    ], \n    \"Wolpe\": [\n        \"NNP\"\n    ], \n    \"recopied\": [\n        \"VBN\"\n    ], \n    \"extensive\": [\n        \"JJ\"\n    ], \n    \"Inflation-adjusted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"garden-variety\": [\n        \"NN\"\n    ], \n    \"safeguarded\": [\n        \"VBN\"\n    ], \n    \"McCarran\": [\n        \"NNP\"\n    ], \n    \"defected\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"off-level\": [\n        \"JJ\"\n    ], \n    \"Schicchi\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"Georges\": [\n        \"NNP\"\n    ], \n    \"mos\": [\n        \"NNS\"\n    ], \n    \"mor\": [\n        \"JJR\"\n    ], \n    \"Paxus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"mop\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"mow\": [\n        \"VB\"\n    ], \n    \"mot\": [\n        \"FW\"\n    ], \n    \"moi\": [\n        \"FW\"\n    ], \n    \"mon\": [\n        \"FW\"\n    ], \n    \"mom\": [\n        \"NN\"\n    ], \n    \"Bleacher\": [\n        \"NN\"\n    ], \n    \"intracompany\": [\n        \"JJ\"\n    ], \n    \"underwriting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"aiming\": [\n        \"VBG\"\n    ], \n    \"disappointed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"scrounged\": [\n        \"VBD\"\n    ], \n    \"Stabat\": [\n        \"NNP\"\n    ], \n    \"self-observation\": [\n        \"NN\"\n    ], \n    \"gossipy\": [\n        \"JJ\"\n    ], \n    \"Kampen\": [\n        \"NNP\"\n    ], \n    \"gossips\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"acidly\": [\n        \"RB\"\n    ], \n    \"English-speakers\": [\n        \"NNS\"\n    ], \n    \"Satisfaction\": [\n        \"NN\"\n    ], \n    \"Thynnes\": [\n        \"NNPS\"\n    ], \n    \"Borax\": [\n        \"NNP\"\n    ], \n    \"miraculous\": [\n        \"JJ\"\n    ], \n    \"laughing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"mulatto\": [\n        \"NN\"\n    ], \n    \"undifferentiated\": [\n        \"JJ\"\n    ], \n    \"interstage\": [\n        \"NN\"\n    ], \n    \"Somalis\": [\n        \"NNPS\"\n    ], \n    \"Texaco\": [\n        \"NNP\"\n    ], \n    \"payroll-reduction\": [\n        \"NN\"\n    ], \n    \"Somalia\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Convict\": [\n        \"NNP\"\n    ], \n    \"organizing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Bubba\": [\n        \"NNP\"\n    ], \n    \"jobs-tears\": [\n        \"NNS\"\n    ], \n    \"Stearns\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Receave\": [\n        \"VBP\"\n    ], \n    \"relished\": [\n        \"VBD\"\n    ], \n    \"Geer\": [\n        \"NNP\"\n    ], \n    \"listener-supported\": [\n        \"JJ\"\n    ], \n    \"fluids\": [\n        \"NNS\"\n    ], \n    \"Kissak\": [\n        \"NNP\"\n    ], \n    \"Bridgeview\": [\n        \"NNP\"\n    ], \n    \"expressing\": [\n        \"VBG\"\n    ], \n    \"larger-capitalization\": [\n        \"JJ\"\n    ], \n    \"Sonora\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"oil-transport\": [\n        \"JJ\"\n    ], \n    \"dimensionally\": [\n        \"RB\"\n    ], \n    \"Ferber\": [\n        \"NNP\"\n    ], \n    \"Seattle-First\": [\n        \"NNP\"\n    ], \n    \"manufactured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"notable\": [\n        \"JJ\"\n    ], \n    \"vinyl-laminated\": [\n        \"JJ\"\n    ], \n    \"notably\": [\n        \"RB\"\n    ], \n    \"plastisols\": [\n        \"NNS\"\n    ], \n    \"Klondike\": [\n        \"NNP\"\n    ], \n    \"Berkley\": [\n        \"NNP\"\n    ], \n    \"pinnings\": [\n        \"NNS\"\n    ], \n    \"manufacturer\": [\n        \"NN\"\n    ], \n    \"preoccupied\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"unissued\": [\n        \"JJ\"\n    ], \n    \"contagion\": [\n        \"NN\"\n    ], \n    \"roar\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"classifies\": [\n        \"VBZ\"\n    ], \n    \"Kumagai\": [\n        \"NNP\"\n    ], \n    \"unclassified\": [\n        \"JJ\"\n    ], \n    \"preoccupies\": [\n        \"VBZ\"\n    ], \n    \"Commissioners\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"solidify\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"roam\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sadistic\": [\n        \"JJ\"\n    ], \n    \"wittiness\": [\n        \"NN\"\n    ], \n    \"Underhill\": [\n        \"NNP\"\n    ], \n    \"nonessential\": [\n        \"JJ\"\n    ], \n    \"road\": [\n        \"NN\"\n    ], \n    \"detente\": [\n        \"NN\"\n    ], \n    \"Hooghli\": [\n        \"NNP\"\n    ], \n    \"quietly\": [\n        \"RB\"\n    ], \n    \"conceptualization\": [\n        \"NN\"\n    ], \n    \"erythropoietin\": [\n        \"NN\"\n    ], \n    \"shoplifting\": [\n        \"NN\"\n    ], \n    \"Hermanovski\": [\n        \"NNP\"\n    ], \n    \"industrial-gases\": [\n        \"JJ\"\n    ], \n    \"amasses\": [\n        \"VBZ\"\n    ], \n    \"Dist.\": [\n        \"NN\"\n    ], \n    \"uptown\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"amassed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Week\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Islandia\": [\n        \"NN\"\n    ], \n    \"stock-ownership\": [\n        \"JJ\"\n    ], \n    \"downed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"styling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"compliant\": [\n        \"JJ\"\n    ], \n    \"workshop\": [\n        \"NN\"\n    ], \n    \"lions\": [\n        \"NNS\"\n    ], \n    \"Plenty\": [\n        \"NN\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"suject\": [\n        \"JJ\"\n    ], \n    \"decisive\": [\n        \"JJ\"\n    ], \n    \"Weep\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"hysterical\": [\n        \"JJ\"\n    ], \n    \"downer\": [\n        \"NN\"\n    ], \n    \"agricole\": [\n        \"FW\"\n    ], \n    \"granules\": [\n        \"NNS\"\n    ], \n    \"BOAST\": [\n        \"VB\"\n    ], \n    \"gory\": [\n        \"JJ\"\n    ], \n    \"improvising\": [\n        \"NN\"\n    ], \n    \"Bashers\": [\n        \"NNP\"\n    ], \n    \"tripod\": [\n        \"NN\"\n    ], \n    \"four-stock\": [\n        \"JJ\"\n    ], \n    \"quarter-million-dollar\": [\n        \"JJ\"\n    ], \n    \"gore\": [\n        \"VB\"\n    ], \n    \"Chartwell\": [\n        \"NNP\"\n    ], \n    \"DeSio\": [\n        \"NNP\"\n    ], \n    \"porches\": [\n        \"NNS\"\n    ], \n    \"Trailer\": [\n        \"NNP\"\n    ], \n    \"offering-price\": [\n        \"JJ\"\n    ], \n    \"flamboyant\": [\n        \"JJ\"\n    ], \n    \"v.B.\": [\n        \"NNP\"\n    ], \n    \"proceeds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Kajar\": [\n        \"NNP\"\n    ], \n    \"grudging\": [\n        \"JJ\"\n    ], \n    \"midsized-car\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cirino\": [\n        \"NNP\"\n    ], \n    \"CRRES\": [\n        \"NNP\"\n    ], \n    \"minimum-capital\": [\n        \"JJ\"\n    ], \n    \"emissions\": [\n        \"NNS\"\n    ], \n    \"Thistle\": [\n        \"NNP\"\n    ], \n    \"subskill\": [\n        \"NN\"\n    ], \n    \"half-expressed\": [\n        \"JJ\"\n    ], \n    \"affection\": [\n        \"NN\"\n    ], \n    \"celestial\": [\n        \"JJ\"\n    ], \n    \"Farmers\": [\n        \"NNP\", \n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"cabled\": [\n        \"VBD\"\n    ], \n    \"Stanza\": [\n        \"NNP\"\n    ], \n    \"fellow\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Percussive\": [\n        \"NNP\"\n    ], \n    \"allocating\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Moto\": [\n        \"NNP\"\n    ], \n    \"less-than-expected\": [\n        \"JJ\"\n    ], \n    \"flock\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"fee-producing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"WHEN\": [\n        \"WRB\"\n    ], \n    \"job-seekers\": [\n        \"NNS\"\n    ], \n    \"KLUC\": [\n        \"NNP\"\n    ], \n    \"Najarian\": [\n        \"NNP\"\n    ], \n    \"cleanup\": [\n        \"NN\"\n    ], \n    \"steel-import\": [\n        \"JJ\"\n    ], \n    \"outfield\": [\n        \"NN\"\n    ], \n    \"unturned\": [\n        \"JJ\"\n    ], \n    \"profet\": [\n        \"NN\"\n    ], \n    \"textile-exporting\": [\n        \"JJ\"\n    ], \n    \"PERKS\": [\n        \"NNS\"\n    ], \n    \"princesse\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"financial-aid\": [\n        \"NN\"\n    ], \n    \"dunked\": [\n        \"VBD\"\n    ], \n    \"Cheez\": [\n        \"NNP\"\n    ], \n    \"prudent\": [\n        \"JJ\"\n    ], \n    \"resource-intensive\": [\n        \"JJ\"\n    ], \n    \"low-growth\": [\n        \"JJ\"\n    ], \n    \"Baeyenses\": [\n        \"NNP\"\n    ], \n    \"demonstratively\": [\n        \"RB\"\n    ], \n    \"consternation\": [\n        \"NN\"\n    ], \n    \"casts\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"forts\": [\n        \"NNS\"\n    ], \n    \"Rica\": [\n        \"NNP\"\n    ], \n    \"Yeah\": [\n        \"UH\", \n        \"NNP\", \n        \"RB\"\n    ], \n    \"ingestion\": [\n        \"NN\"\n    ], \n    \"Year\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"craftsmen\": [\n        \"NNS\"\n    ], \n    \"corporeal\": [\n        \"JJ\"\n    ], \n    \"Klinsky\": [\n        \"NNP\"\n    ], \n    \"caste\": [\n        \"NN\"\n    ], \n    \"forges\": [\n        \"VBZ\"\n    ], \n    \"forger\": [\n        \"NN\"\n    ], \n    \"forget\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Moog\": [\n        \"NNP\"\n    ], \n    \"disassembled\": [\n        \"VBD\"\n    ], \n    \"Moon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"SIA\": [\n        \"NNP\"\n    ], \n    \"goofy\": [\n        \"JJ\"\n    ], \n    \"Amenities\": [\n        \"NNS\"\n    ], \n    \"forged\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"nonreactors\": [\n        \"NNS\"\n    ], \n    \"huggings\": [\n        \"NNS\"\n    ], \n    \"M-4\": [\n        \"NNP\"\n    ], \n    \"Gizenga\": [\n        \"NNP\"\n    ], \n    \"Tertre\": [\n        \"NNP\"\n    ], \n    \"servings\": [\n        \"NNS\"\n    ], \n    \"Skipper\": [\n        \"NNP\"\n    ], \n    \"Vernava\": [\n        \"NNP\"\n    ], \n    \"test-coaching\": [\n        \"JJ\"\n    ], \n    \"medical-support\": [\n        \"JJ\"\n    ], \n    \"INRA\": [\n        \"NNP\"\n    ], \n    \"parcel\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"predicament\": [\n        \"NN\"\n    ], \n    \"translations\": [\n        \"NNS\"\n    ], \n    \"varityping\": [\n        \"NN\"\n    ], \n    \"M-K\": [\n        \"NNP\"\n    ], \n    \"Mannheim\": [\n        \"NNP\"\n    ], \n    \"Ware\": [\n        \"NNP\"\n    ], \n    \"celebrity\": [\n        \"NN\"\n    ], \n    \"worded\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"invigorate\": [\n        \"VB\"\n    ], \n    \"Owing\": [\n        \"RB\"\n    ], \n    \"disused\": [\n        \"JJ\"\n    ], \n    \"exemptions\": [\n        \"NNS\"\n    ], \n    \"hoped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"neighborhood\": [\n        \"NN\"\n    ], \n    \"short-haul\": [\n        \"JJ\"\n    ], \n    \"Riunitie\": [\n        \"NNP\"\n    ], \n    \"Autumnal\": [\n        \"JJ\"\n    ], \n    \"grand-prize\": [\n        \"NN\"\n    ], \n    \"preordained\": [\n        \"VBN\"\n    ], \n    \"Valuable\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Brevetti\": [\n        \"NNP\"\n    ], \n    \"further\": [\n        \"JJ\", \n        \"RB|RBR\", \n        \"JJR\", \n        \"RBR\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Salhany\": [\n        \"NNP\"\n    ], \n    \"adjustment\": [\n        \"NN\"\n    ], \n    \"short-lived\": [\n        \"JJ\"\n    ], \n    \"decoction\": [\n        \"NN\"\n    ], \n    \"overshot\": [\n        \"VBD\"\n    ], \n    \"magnifying\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"face-to-wall\": [\n        \"RB\"\n    ], \n    \"coroner\": [\n        \"NN\"\n    ], \n    \"faded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"judicious\": [\n        \"JJ\"\n    ], \n    \"House-passed\": [\n        \"JJ\"\n    ], \n    \"tribute\": [\n        \"NN\"\n    ], \n    \"Pagan\": [\n        \"NNP\"\n    ], \n    \"doting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Arena\": [\n        \"NNP\"\n    ], \n    \"entry-level\": [\n        \"JJ\"\n    ], \n    \"Ruthlessness\": [\n        \"NN\"\n    ], \n    \"Gift\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"image-building\": [\n        \"JJ\"\n    ], \n    \"wrangling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Sylvester\": [\n        \"NNP\"\n    ], \n    \"puddles\": [\n        \"NNS\"\n    ], \n    \"long-successful\": [\n        \"JJ\"\n    ], \n    \"cylindrical\": [\n        \"JJ\"\n    ], \n    \"one-upsmanship\": [\n        \"NN\"\n    ], \n    \"Nazarene\": [\n        \"NNP\"\n    ], \n    \"minber\": [\n        \"NN\"\n    ], \n    \"Greases\": [\n        \"NNS\"\n    ], \n    \"speeches\": [\n        \"NNS\"\n    ], \n    \"free-world\": [\n        \"JJ\"\n    ], \n    \"leveling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Kawecki\": [\n        \"NNP\"\n    ], \n    \"fee-forfeiture\": [\n        \"NN\"\n    ], \n    \"storefront\": [\n        \"NN\"\n    ], \n    \"Grayhound\": [\n        \"NNP\"\n    ], \n    \"chipper\": [\n        \"JJ\"\n    ], \n    \"Radiosterilization\": [\n        \"NN\"\n    ], \n    \"copycats\": [\n        \"NNS\"\n    ], \n    \"chieftain\": [\n        \"NN\"\n    ], \n    \"toxicity\": [\n        \"NN\"\n    ], \n    \"Nyckeln\": [\n        \"NNP\"\n    ], \n    \"Kirov\": [\n        \"NNP\"\n    ], \n    \"fifth-grade\": [\n        \"NN\"\n    ], \n    \"sentence-structure\": [\n        \"JJ\"\n    ], \n    \"wine-buying\": [\n        \"JJ\"\n    ], \n    \"Jameson\": [\n        \"NNP\"\n    ], \n    \"inadvertence\": [\n        \"NN\"\n    ], \n    \"Gough\": [\n        \"NNP\"\n    ], \n    \"Macaroni\": [\n        \"NNP\"\n    ], \n    \"aptitude\": [\n        \"NN\"\n    ], \n    \"rollover\": [\n        \"NN\"\n    ], \n    \"helmsman\": [\n        \"NN\"\n    ], \n    \"non-nonsense\": [\n        \"NN\"\n    ], \n    \"score\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"nothings\": [\n        \"NNS\"\n    ], \n    \"distinct\": [\n        \"JJ\"\n    ], \n    \"Towne\": [\n        \"NNP\"\n    ], \n    \"dispatching\": [\n        \"VBG\"\n    ], \n    \"Picasso\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Towns\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"wood-grain\": [\n        \"JJ\"\n    ], \n    \"Promazine\": [\n        \"JJ\"\n    ], \n    \"staggering\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"reeked\": [\n        \"VBD\"\n    ], \n    \"Yamata\": [\n        \"NNP\"\n    ], \n    \"particular\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Haile\": [\n        \"NNP\"\n    ], \n    \"UAE\": [\n        \"NNP\"\n    ], \n    \"post-Oct\": [\n        \"NNP\"\n    ], \n    \"Tonight\": [\n        \"NNP\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"unindicted\": [\n        \"JJ\"\n    ], \n    \"categorizing\": [\n        \"VBG\"\n    ], \n    \"Wood\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"taut\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"appendages\": [\n        \"NNS\"\n    ], \n    \"Trans-Pacific\": [\n        \"NNP\"\n    ], \n    \"flight-control\": [\n        \"NN\"\n    ], \n    \"shark\": [\n        \"NN\"\n    ], \n    \"Tessler\": [\n        \"NNP\"\n    ], \n    \"hamburger\": [\n        \"NN\"\n    ], \n    \"unrevealing\": [\n        \"VBG\"\n    ], \n    \"Kossuth\": [\n        \"NNP\"\n    ], \n    \"stacking\": [\n        \"VBG\"\n    ], \n    \"expeditiously\": [\n        \"RB\"\n    ], \n    \"prods\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"share\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"best-financed\": [\n        \"JJ\"\n    ], \n    \"Sable\": [\n        \"NNP\"\n    ], \n    \"sharp\": [\n        \"JJ\"\n    ], \n    \"Valdemar\": [\n        \"NNP\"\n    ], \n    \"siren\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Paramount\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sired\": [\n        \"VBN\"\n    ], \n    \"Furlett\": [\n        \"NNP\"\n    ], \n    \"turnpikes\": [\n        \"NNS\"\n    ], \n    \"rye\": [\n        \"NN\"\n    ], \n    \"Outlays\": [\n        \"NNS\"\n    ], \n    \"newsgathering\": [\n        \"NN\"\n    ], \n    \"D*/NNP&B\": [\n        \"NN\"\n    ], \n    \"dramatists\": [\n        \"NNS\"\n    ], \n    \"Liss\": [\n        \"NNP\"\n    ], \n    \"List\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Lish\": [\n        \"NNP\"\n    ], \n    \"Petaluma\": [\n        \"NNP\"\n    ], \n    \"uninspired\": [\n        \"JJ\"\n    ], \n    \"Blier\": [\n        \"NNP\"\n    ], \n    \"Lisa\": [\n        \"NNP\"\n    ], \n    \"Ozzie\": [\n        \"NNP\"\n    ], \n    \"hedgehogs\": [\n        \"NNS\"\n    ], \n    \"uncongenial\": [\n        \"JJ\"\n    ], \n    \"orchard\": [\n        \"NN\"\n    ], \n    \"Stevens\": [\n        \"NNP\"\n    ], \n    \"sunshield\": [\n        \"NN\"\n    ], \n    \"bathed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"blandness\": [\n        \"NN\"\n    ], \n    \"federal-state-local\": [\n        \"JJ\"\n    ], \n    \"porticoes\": [\n        \"NNS\"\n    ], \n    \"turnpike\": [\n        \"NN\"\n    ], \n    \"morning-frightened\": [\n        \"JJ\"\n    ], \n    \"retrieval\": [\n        \"NN\"\n    ], \n    \"chopped\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Texan\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Ba2\": [\n        \"JJ\"\n    ], \n    \"Ba3\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"puttered\": [\n        \"VBD\"\n    ], \n    \"eye-deceiving\": [\n        \"NN\"\n    ], \n    \"hyaluronic\": [\n        \"JJ\"\n    ], \n    \"minincomputer\": [\n        \"JJR\"\n    ], \n    \"Warnaco\": [\n        \"NNP\"\n    ], \n    \"deterring\": [\n        \"VBG\"\n    ], \n    \"Roxanne\": [\n        \"NNP\"\n    ], \n    \"Income\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cooper\": [\n        \"NNP\"\n    ], \n    \"arrogant\": [\n        \"JJ\"\n    ], \n    \"pro-consumption\": [\n        \"NN\"\n    ], \n    \"Vilgrain\": [\n        \"NNP\"\n    ], \n    \"arteries\": [\n        \"NNS\"\n    ], \n    \"surtout\": [\n        \"NN\"\n    ], \n    \"possessions\": [\n        \"NNS\"\n    ], \n    \"forthwith\": [\n        \"RB\"\n    ], \n    \"Wechsler\": [\n        \"NNP\"\n    ], \n    \"Lanin\": [\n        \"NNP\"\n    ], \n    \"speech\": [\n        \"NN\"\n    ], \n    \"crawls\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"triumphantly\": [\n        \"RB\"\n    ], \n    \"lookout\": [\n        \"NN\"\n    ], \n    \"oks\": [\n        \"VBZ\"\n    ], \n    \"good\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Bar\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Bas\": [\n        \"NNP\"\n    ], \n    \"Interiors\": [\n        \"NNS\"\n    ], \n    \"Baz\": [\n        \"NNP\"\n    ], \n    \"detour\": [\n        \"NN\"\n    ], \n    \"pinafores\": [\n        \"NNS\"\n    ], \n    \"Bay\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bag\": [\n        \"NN\"\n    ], \n    \"Bad\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"DePaul\": [\n        \"NNP\"\n    ], \n    \"nonwhites\": [\n        \"NNS\"\n    ], \n    \"Lautenbach\": [\n        \"NNP\"\n    ], \n    \"declamatory\": [\n        \"JJ\"\n    ], \n    \"Bal\": [\n        \"NNP\"\n    ], \n    \"nine-point\": [\n        \"JJ\"\n    ], \n    \"conspires\": [\n        \"VBZ\"\n    ], \n    \"Bah\": [\n        \"UH\"\n    ], \n    \"easily\": [\n        \"RB\"\n    ], \n    \"three-hundred-foot\": [\n        \"JJ\"\n    ], \n    \"celerity\": [\n        \"NN\"\n    ], \n    \"side-arm\": [\n        \"NN\"\n    ], \n    \"pregnant\": [\n        \"JJ\"\n    ], \n    \"Potter\": [\n        \"NNP\"\n    ], \n    \"FINANCES\": [\n        \"NNS\"\n    ], \n    \"CRASHED\": [\n        \"VBD\"\n    ], \n    \"turbofan\": [\n        \"NN\"\n    ], \n    \"ports\": [\n        \"NNS\"\n    ], \n    \"obtaine\": [\n        \"VB\"\n    ], \n    \"sun-suit\": [\n        \"NN\"\n    ], \n    \"rule-making\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"budget-reduction\": [\n        \"JJ\"\n    ], \n    \"mistreatment\": [\n        \"NN\"\n    ], \n    \"anti-Phnom\": [\n        \"NNP\"\n    ], \n    \"monks\": [\n        \"NNS\"\n    ], \n    \"recreational\": [\n        \"JJ\"\n    ], \n    \"wiggling\": [\n        \"VBG\"\n    ], \n    \"deluged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Mauve-colored\": [\n        \"JJ\"\n    ], \n    \"samovars\": [\n        \"NNS\"\n    ], \n    \"Flat\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"lovers\": [\n        \"NNS\"\n    ], \n    \"creditor\": [\n        \"NN\"\n    ], \n    \"effete\": [\n        \"JJ\"\n    ], \n    \"Poyne\": [\n        \"NNP\"\n    ], \n    \"trundling\": [\n        \"VBG\"\n    ], \n    \"Mira\": [\n        \"NNP\"\n    ], \n    \"byinge\": [\n        \"VBG\"\n    ], \n    \"Flag\": [\n        \"NN\"\n    ], \n    \"roughnecks\": [\n        \"NNS\"\n    ], \n    \"rankest\": [\n        \"JJS\"\n    ], \n    \"stage-plays\": [\n        \"NNS\"\n    ], \n    \"E5\": [\n        \"NNP\"\n    ], \n    \"three-quarter\": [\n        \"JJ\"\n    ], \n    \"pre-natal\": [\n        \"JJ\"\n    ], \n    \"Erickson\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bully\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"EK\": [\n        \"NNP\"\n    ], \n    \"decision-makers\": [\n        \"NNS\"\n    ], \n    \"Junkins\": [\n        \"NNP\"\n    ], \n    \"Lenaghan\": [\n        \"NNP\"\n    ], \n    \"hosted\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"V-2500\": [\n        \"NN\"\n    ], \n    \"recoveries\": [\n        \"NNS\"\n    ], \n    \"wanting\": [\n        \"VBG\"\n    ], \n    \"Windfall\": [\n        \"NN\"\n    ], \n    \"terminals\": [\n        \"NNS\"\n    ], \n    \"EX\": [\n        \"NNP\"\n    ], \n    \"EZ\": [\n        \"NNP\"\n    ], \n    \"ET\": [\n        \"NNP\"\n    ], \n    \"Propaganda\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ES\": [\n        \"NNP\"\n    ], \n    \"launderers\": [\n        \"NNS\"\n    ], \n    \"Belding\": [\n        \"NNP\"\n    ], \n    \"En\": [\n        \"NNP\", \n        \"IN\"\n    ], \n    \"Eh\": [\n        \"UH\", \n        \"NNP\"\n    ], \n    \"Evans\": [\n        \"NNP\"\n    ], \n    \"Gunlocke\": [\n        \"NNP\"\n    ], \n    \"Ed\": [\n        \"NNP\"\n    ], \n    \"W.A.\": [\n        \"NNP\"\n    ], \n    \"Haan\": [\n        \"NNP\"\n    ], \n    \"Bickel\": [\n        \"NNP\"\n    ], \n    \"Fla.\": [\n        \"NNP\"\n    ], \n    \"Hornets\": [\n        \"NNPS\"\n    ], \n    \"Haag\": [\n        \"NNP\"\n    ], \n    \"Contempt\": [\n        \"NN\"\n    ], \n    \"Stengel\": [\n        \"NNP\"\n    ], \n    \"meat-wagon\": [\n        \"NN\"\n    ], \n    \"Prattville\": [\n        \"NNP\"\n    ], \n    \"James-the-Less\": [\n        \"NNP\"\n    ], \n    \"disregarded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Vandervoort\": [\n        \"NNP\"\n    ], \n    \"slithers\": [\n        \"VBZ\"\n    ], \n    \"Melbourne-based\": [\n        \"JJ\"\n    ], \n    \"canneries\": [\n        \"NNS\"\n    ], \n    \"precariously\": [\n        \"RB\"\n    ], \n    \"curtly\": [\n        \"RB\"\n    ], \n    \"Okay\": [\n        \"UH\", \n        \"JJ\"\n    ], \n    \"Murderous\": [\n        \"JJ\"\n    ], \n    \"divorce\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Lapointe\": [\n        \"NNP\"\n    ], \n    \"Airplanes\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Incentives\": [\n        \"NNS\"\n    ], \n    \"Sven\": [\n        \"NNP\"\n    ], \n    \"Shangkun\": [\n        \"NNP\"\n    ], \n    \"statement\": [\n        \"NN\"\n    ], \n    \"weave\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"VISTA\": [\n        \"NNP\"\n    ], \n    \"muscles\": [\n        \"NNS\"\n    ], \n    \"voyeurism\": [\n        \"NN\"\n    ], \n    \"free-fall\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"muscled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"drunkenness\": [\n        \"NN\"\n    ], \n    \"Problem\": [\n        \"NNP\"\n    ], \n    \"tacking\": [\n        \"VBG\"\n    ], \n    \"Lenin\": [\n        \"NNP\"\n    ], \n    \"horizons\": [\n        \"NNS\"\n    ], \n    \"gotten\": [\n        \"VBN\"\n    ], \n    \"cross-pollinated\": [\n        \"VBN\"\n    ], \n    \"Caulfield\": [\n        \"NNP\"\n    ], \n    \"damaging\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"sole\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"falsification\": [\n        \"NN\"\n    ], \n    \"Coatings\": [\n        \"NNP\"\n    ], \n    \"Boun\": [\n        \"NNP\"\n    ], \n    \"totter\": [\n        \"VB\"\n    ], \n    \"outta\": [\n        \"IN\"\n    ], \n    \"Kuniji\": [\n        \"NNP\"\n    ], \n    \"non-polygynous\": [\n        \"JJ\"\n    ], \n    \"ages\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Washington-Oregon\": [\n        \"NNP\"\n    ], \n    \"roughly\": [\n        \"RB\"\n    ], \n    \"trend-setting\": [\n        \"JJ\"\n    ], \n    \"D/NNP.A.\": [\n        \"NN\"\n    ], \n    \"headings\": [\n        \"NNS\"\n    ], \n    \"manipulating\": [\n        \"VBG\"\n    ], \n    \"meltdown\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"dismember\": [\n        \"VB\"\n    ], \n    \"Gollich\": [\n        \"NNP\"\n    ], \n    \"mountain\": [\n        \"NN\"\n    ], \n    \"folk-tale\": [\n        \"NN\"\n    ], \n    \"Menenendez\": [\n        \"NNP\"\n    ], \n    \"Pausing\": [\n        \"VBG\"\n    ], \n    \"reconciliations\": [\n        \"NNS\"\n    ], \n    \"appellate\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"keypads\": [\n        \"NNS\"\n    ], \n    \"Sider\": [\n        \"NNP\"\n    ], \n    \"Sides\": [\n        \"NNP\"\n    ], \n    \"Teller\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ate\": [\n        \"VBD\"\n    ], \n    \"vibration\": [\n        \"NN\"\n    ], \n    \"style-cramper\": [\n        \"NN\"\n    ], \n    \"short-barrel\": [\n        \"NN\"\n    ], \n    \"Tracy-Locke\": [\n        \"NNP\"\n    ], \n    \"soldierly\": [\n        \"RB\"\n    ], \n    \"engagements\": [\n        \"NNS\"\n    ], \n    \"fluctuate\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Martini\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Linz\": [\n        \"NNP\"\n    ], \n    \"esterases\": [\n        \"NNS\"\n    ], \n    \"Shlenker\": [\n        \"NNP\"\n    ], \n    \"organist\": [\n        \"NN\"\n    ], \n    \"Jonni\": [\n        \"NNP\"\n    ], \n    \"Poach\": [\n        \"VB\"\n    ], \n    \"consanguinity\": [\n        \"NN\"\n    ], \n    \"a-stoopin\": [\n        \"VBG\"\n    ], \n    \"Sample\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Anti-recession\": [\n        \"NN\"\n    ], \n    \"Canteloube\": [\n        \"NNP\"\n    ], \n    \"directness\": [\n        \"NN\"\n    ], \n    \"organism\": [\n        \"NN\"\n    ], \n    \"nobility\": [\n        \"NN\"\n    ], \n    \"dodging\": [\n        \"VBG\"\n    ], \n    \"SNIA\": [\n        \"NNP\"\n    ], \n    \"deep-eyed\": [\n        \"JJ\"\n    ], \n    \"Canadian-owned\": [\n        \"JJ\"\n    ], \n    \"FORMERLY\": [\n        \"RB\"\n    ], \n    \"wailing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"hopper\": [\n        \"NN\"\n    ], \n    \"toxics\": [\n        \"NNS\"\n    ], \n    \"carne\": [\n        \"FW\"\n    ], \n    \"socalled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"relation\": [\n        \"NN\"\n    ], \n    \"Hedquist\": [\n        \"NNP\"\n    ], \n    \"perched\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"hopped\": [\n        \"VBD\"\n    ], \n    \"cellular-telephone\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"multichannel\": [\n        \"JJ\"\n    ], \n    \"giant\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"depended\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"dividing\": [\n        \"VBG\", \n        \"VBG|NN|JJ\"\n    ], \n    \"soldier-masters\": [\n        \"NNS\"\n    ], \n    \"Victor-Butler\": [\n        \"NNP\"\n    ], \n    \"center-right\": [\n        \"JJ\"\n    ], \n    \"garment-industry\": [\n        \"NN\"\n    ], \n    \"money\": [\n        \"NN\"\n    ], \n    \"Pooh\": [\n        \"NNP\"\n    ], \n    \"WCVB\": [\n        \"NNP\"\n    ], \n    \"Pool\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cyriac\": [\n        \"NNP\"\n    ], \n    \"adjustments\": [\n        \"NNS\"\n    ], \n    \"hand-in-glove\": [\n        \"JJ\"\n    ], \n    \"Omani\": [\n        \"JJ\"\n    ], \n    \"pre-determined\": [\n        \"JJ\"\n    ], \n    \"non-durable\": [\n        \"JJ\"\n    ], \n    \"jailhouse\": [\n        \"NN\"\n    ], \n    \"relocate\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"elapse\": [\n        \"VB\"\n    ], \n    \"Lind\": [\n        \"NNP\"\n    ], \n    \"Renville\": [\n        \"NNP\"\n    ], \n    \"paydirt\": [\n        \"NN\"\n    ], \n    \"ovata\": [\n        \"NN\"\n    ], \n    \"Bouillaire\": [\n        \"NNP\"\n    ], \n    \"Seimei\": [\n        \"NNP\"\n    ], \n    \"Harmonia\": [\n        \"NNP\"\n    ], \n    \"brooken\": [\n        \"VBN\"\n    ], \n    \"Solder\": [\n        \"VB\"\n    ], \n    \"Assessment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"crude-oil\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Tempest\": [\n        \"NNP\"\n    ], \n    \"semiannually\": [\n        \"RB\"\n    ], \n    \"wrongfully\": [\n        \"RB\"\n    ], \n    \"pneumatic\": [\n        \"JJ\"\n    ], \n    \"devils\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"oil-bearing\": [\n        \"JJ\"\n    ], \n    \"printout\": [\n        \"NN\"\n    ], \n    \"Sez\": [\n        \"NNP\"\n    ], \n    \"glottal\": [\n        \"JJ\"\n    ], \n    \"Berniece\": [\n        \"NNP\"\n    ], \n    \"surrendered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Bewkes\": [\n        \"NNP\"\n    ], \n    \"IGS\": [\n        \"NNP\"\n    ], \n    \"Firms\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"noninstitutionalized\": [\n        \"JJ\"\n    ], \n    \"much-awaited\": [\n        \"JJ\"\n    ], \n    \"tunneled\": [\n        \"VBD\"\n    ], \n    \"glorifies\": [\n        \"VBZ\"\n    ], \n    \"See\": [\n        \"VB\", \n        \"UH\", \n        \"NNP\"\n    ], \n    \"per-pupil\": [\n        \"JJ\"\n    ], \n    \"Ohbayashi\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"multiples\": [\n        \"NNS\"\n    ], \n    \"Terry\": [\n        \"NNP\"\n    ], \n    \"feasted\": [\n        \"VBN\"\n    ], \n    \"donate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"consonants\": [\n        \"NNS\"\n    ], \n    \"financial-industrial\": [\n        \"JJ\"\n    ], \n    \"Azabu\": [\n        \"NNP\"\n    ], \n    \"Weede\": [\n        \"NNP\"\n    ], \n    \"declaratory\": [\n        \"JJ\"\n    ], \n    \"Limiting\": [\n        \"VBG\"\n    ], \n    \"renews\": [\n        \"VBZ\"\n    ], \n    \"Calamity\": [\n        \"NNP\"\n    ], \n    \"tuitions\": [\n        \"NNS\"\n    ], \n    \"quiet-spoken\": [\n        \"JJ\"\n    ], \n    \"lightness\": [\n        \"NN\"\n    ], \n    \"alters\": [\n        \"VBZ\"\n    ], \n    \"cubes\": [\n        \"NNS\"\n    ], \n    \"health-benefits\": [\n        \"JJ\"\n    ], \n    \"peel-off\": [\n        \"JJ\"\n    ], \n    \"annual\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mistrusted\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"cubed\": [\n        \"VBN\"\n    ], \n    \"spiritless\": [\n        \"JJ\"\n    ], \n    \"fin-syn\": [\n        \"JJ\"\n    ], \n    \"fail-safe\": [\n        \"JJ\"\n    ], \n    \"recyclability\": [\n        \"NN\"\n    ], \n    \"octane\": [\n        \"NN\"\n    ], \n    \"consume\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Phillipines\": [\n        \"NNS\"\n    ], \n    \"cayenne\": [\n        \"NN\"\n    ], \n    \"Tahse\": [\n        \"NNP\"\n    ], \n    \"unremitting\": [\n        \"JJ\"\n    ], \n    \"jerks\": [\n        \"NNS\"\n    ], \n    \"alumnus\": [\n        \"NN\"\n    ], \n    \"U.S.-European\": [\n        \"JJ\"\n    ], \n    \"volunteered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"computer-integrated-manufacturing\": [\n        \"JJ\"\n    ], \n    \"GHKM\": [\n        \"NNP\"\n    ], \n    \"headaches\": [\n        \"NNS\"\n    ], \n    \"Belatedly\": [\n        \"RB\"\n    ], \n    \"Esteli\": [\n        \"NNP\"\n    ], \n    \"Cicognani\": [\n        \"NNP\"\n    ], \n    \"Angelenos\": [\n        \"NNP\"\n    ], \n    \"devouring\": [\n        \"VBG\"\n    ], \n    \"trilogy\": [\n        \"NN\"\n    ], \n    \"non-state\": [\n        \"JJ\"\n    ], \n    \"abortifacient\": [\n        \"NN\"\n    ], \n    \"collaborator\": [\n        \"NN\"\n    ], \n    \"Ripper\": [\n        \"NNP\"\n    ], \n    \"meeting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"subfigures\": [\n        \"NNS\"\n    ], \n    \"machinery-trading\": [\n        \"JJ\"\n    ], \n    \"MacNeil\\\\/Lehrer\": [\n        \"NNP\"\n    ], \n    \"acolyte\": [\n        \"NN\"\n    ], \n    \"nihilistic\": [\n        \"JJ\"\n    ], \n    \"fending\": [\n        \"VBG\"\n    ], \n    \"rupture\": [\n        \"NN\"\n    ], \n    \"Studios\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Nu-Med\": [\n        \"NNP\"\n    ], \n    \"Logica\": [\n        \"NNP\"\n    ], \n    \"foreshadowed\": [\n        \"VBN\"\n    ], \n    \"warehousing\": [\n        \"NN\"\n    ], \n    \"schmumpered\": [\n        \"VBD\"\n    ], \n    \"soloist\": [\n        \"NN\"\n    ], \n    \"interposing\": [\n        \"VBG\"\n    ], \n    \"Hating\": [\n        \"VBG\"\n    ], \n    \"tape-recorded\": [\n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Walters\": [\n        \"NNP\"\n    ], \n    \"thrift-related\": [\n        \"JJ\"\n    ], \n    \"adjusts\": [\n        \"VBZ\"\n    ], \n    \"elucidation\": [\n        \"NN\"\n    ], \n    \"pre-packed\": [\n        \"JJ\"\n    ], \n    \"Uhhu\": [\n        \"UH\"\n    ], \n    \"embarks\": [\n        \"VBZ\"\n    ], \n    \"moralistic\": [\n        \"JJ\"\n    ], \n    \"imperialist\": [\n        \"NN\"\n    ], \n    \"drawbacks\": [\n        \"NNS\"\n    ], \n    \"itself\": [\n        \"PRP\"\n    ], \n    \"ruts\": [\n        \"NNS\"\n    ], \n    \"monsoon-shrouded\": [\n        \"JJ\"\n    ], \n    \"parroting\": [\n        \"VBG\"\n    ], \n    \"Inspect\": [\n        \"VB\"\n    ], \n    \"sit-in\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"unregisterd\": [\n        \"JJ\"\n    ], \n    \"Candid\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"cost-accounting\": [\n        \"JJ\"\n    ], \n    \"Beatitudes\": [\n        \"NNPS\"\n    ], \n    \"Ludmilla\": [\n        \"NNP\"\n    ], \n    \"definitional\": [\n        \"JJ\"\n    ], \n    \"last-named\": [\n        \"JJ\"\n    ], \n    \"Embry\": [\n        \"NNP\"\n    ], \n    \"Ago\": [\n        \"RB\"\n    ], \n    \"yesterday\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"Connick\": [\n        \"NNP\"\n    ], \n    \"solicited\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"retrenchment\": [\n        \"NN\"\n    ], \n    \"flurry\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"Nancy\": [\n        \"NNP\"\n    ], \n    \"NAACP\": [\n        \"NNP\"\n    ], \n    \"CUTTY\": [\n        \"NNP\"\n    ], \n    \"Teheran\": [\n        \"NNP\"\n    ], \n    \"Vetere\": [\n        \"NNP\"\n    ], \n    \"finesse\": [\n        \"NN\"\n    ], \n    \"entre\": [\n        \"NN\"\n    ], \n    \"axiomatic\": [\n        \"JJ\"\n    ], \n    \"plinking\": [\n        \"JJ\"\n    ], \n    \"Veteri\": [\n        \"NNP\"\n    ], \n    \"Spitzenburg\": [\n        \"NNP\"\n    ], \n    \"orthopedic\": [\n        \"JJ\"\n    ], \n    \"Farneses\": [\n        \"NNPS\"\n    ], \n    \"entry\": [\n        \"NN\"\n    ], \n    \"Racial\": [\n        \"JJ\"\n    ], \n    \"One-Step\": [\n        \"NNP\"\n    ], \n    \"parametric\": [\n        \"JJ\"\n    ], \n    \"Gruber\": [\n        \"NNP\"\n    ], \n    \"one-year\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"mind\": [\n        \"NN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"lottery\": [\n        \"NN\"\n    ], \n    \"Darrow\": [\n        \"NNP\"\n    ], \n    \"Klux\": [\n        \"NNP\"\n    ], \n    \"patent-infringement\": [\n        \"NN\"\n    ], \n    \"fundamentalists\": [\n        \"NNS\"\n    ], \n    \"LaBerge\": [\n        \"NNP\"\n    ], \n    \"earth-colored\": [\n        \"JJ\"\n    ], \n    \"itty-bitty\": [\n        \"JJ\"\n    ], \n    \"anti-assignment\": [\n        \"JJ\"\n    ], \n    \"Wilmette\": [\n        \"NNP\"\n    ], \n    \"Bibb\": [\n        \"NNP\"\n    ], \n    \"snag\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"makers\": [\n        \"NNS\"\n    ], \n    \"snap\": [\n        \"VB\", \n        \"VBP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"shoring\": [\n        \"VBG\"\n    ], \n    \"ridiculously\": [\n        \"RB\"\n    ], \n    \"bio\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"confession\": [\n        \"NN\"\n    ], \n    \"Did\": [\n        \"VBD\"\n    ], \n    \"big\": [\n        \"JJ\", \n        \"RB|JJ\"\n    ], \n    \"bid\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Dig\": [\n        \"VB\"\n    ], \n    \"bib\": [\n        \"NN\"\n    ], \n    \"redeem\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Ekaterinoslav\": [\n        \"NNP\"\n    ], \n    \"biz\": [\n        \"NN\"\n    ], \n    \"tiremaker\": [\n        \"NN\"\n    ], \n    \"bit\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"Lesko\": [\n        \"NNP\"\n    ], \n    \"Dip\": [\n        \"VB\"\n    ], \n    \"pollinate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Kyowa\": [\n        \"NNP\"\n    ], \n    \"blemish\": [\n        \"NN\"\n    ], \n    \"subsidence\": [\n        \"NN\"\n    ], \n    \"run-of-the-mill\": [\n        \"JJ\"\n    ], \n    \"freeze-drying\": [\n        \"NN\"\n    ], \n    \"Gonzaga\": [\n        \"NNP\"\n    ], \n    \"conducive\": [\n        \"JJ\"\n    ], \n    \"Keeeerist\": [\n        \"UH\"\n    ], \n    \"often\": [\n        \"RB\"\n    ], \n    \"Falconer\": [\n        \"NNP\"\n    ], \n    \"passage\": [\n        \"NN\"\n    ], \n    \"pay-as-you-go\": [\n        \"JJ\"\n    ], \n    \"Commercials\": [\n        \"NNS\"\n    ], \n    \"Istituto\": [\n        \"NNP\"\n    ], \n    \"abundantly\": [\n        \"RB\"\n    ], \n    \"extremist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Friesen\": [\n        \"NNP\"\n    ], \n    \"Origen\": [\n        \"NNP\"\n    ], \n    \"accelerate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Nagle\": [\n        \"NNP\"\n    ], \n    \"Muncie\": [\n        \"NNP\"\n    ], \n    \"Commerciale\": [\n        \"NNP\"\n    ], \n    \"ourselves\": [\n        \"PRP\"\n    ], \n    \"fought-for\": [\n        \"JJ\"\n    ], \n    \"brown-paper\": [\n        \"JJ\"\n    ], \n    \"social-welfare\": [\n        \"JJ\"\n    ], \n    \"scald\": [\n        \"VB\"\n    ], \n    \"scale\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Merritt\": [\n        \"NNP\"\n    ], \n    \"jitterbug\": [\n        \"NN\"\n    ], \n    \"defamation\": [\n        \"NN\"\n    ], \n    \"resonances\": [\n        \"NNS\"\n    ], \n    \"Reitman\": [\n        \"NNP\"\n    ], \n    \"eliminate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"scalp\": [\n        \"NN\"\n    ], \n    \"Nothing\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"defined-benefit\": [\n        \"JJ\"\n    ], \n    \"seventy-eight\": [\n        \"JJ\"\n    ], \n    \"depressions\": [\n        \"NNS\"\n    ], \n    \"squalls\": [\n        \"NNS\"\n    ], \n    \"Tempesst\": [\n        \"NNP\"\n    ], \n    \"continuing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"costumes\": [\n        \"NNS\"\n    ], \n    \"Hisaya\": [\n        \"NNP\"\n    ], \n    \"blockbusters\": [\n        \"NNS\"\n    ], \n    \"alternative-energy\": [\n        \"JJ\"\n    ], \n    \"lounges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"PERFORMANCE\": [\n        \"NN\"\n    ], \n    \"costumed\": [\n        \"VBN\"\n    ], \n    \"carbide\": [\n        \"NN\"\n    ], \n    \"Stendler\": [\n        \"NNP\"\n    ], \n    \"gynecologic\": [\n        \"JJ\"\n    ], \n    \"Pauling\": [\n        \"NNP\"\n    ], \n    \"seriousness\": [\n        \"NN\"\n    ], \n    \"Rebs\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"fairgoers\": [\n        \"NNS\"\n    ], \n    \"deductibles\": [\n        \"NNS\"\n    ], \n    \"drama\": [\n        \"NN\"\n    ], \n    \"belting\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Bueky\": [\n        \"NNP\"\n    ], \n    \"Flyer-Castle\": [\n        \"NNP\"\n    ], \n    \"Stadtisches\": [\n        \"NNP\"\n    ], \n    \"daisies\": [\n        \"NNS\"\n    ], \n    \"Mead\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hunters\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"auto\\\\/homeowners\": [\n        \"NNS\"\n    ], \n    \"Literal\": [\n        \"JJ\"\n    ], \n    \"Sanderson\": [\n        \"NNP\"\n    ], \n    \"subversion\": [\n        \"NN\"\n    ], \n    \"Paulus\": [\n        \"NNP\"\n    ], \n    \"proportional\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Deidre\": [\n        \"NNP\"\n    ], \n    \"downhill\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"Rabkin\": [\n        \"NNP\"\n    ], \n    \"after-duty\": [\n        \"JJ\"\n    ], \n    \"Conrad\": [\n        \"NNP\"\n    ], \n    \"multilayer\": [\n        \"JJ\"\n    ], \n    \"Bong\": [\n        \"UH\"\n    ], \n    \"solar-cell\": [\n        \"JJ\"\n    ], \n    \"Auckland\": [\n        \"NNP\"\n    ], \n    \"Caporale\": [\n        \"NNP\"\n    ], \n    \"misappropriating\": [\n        \"VBG\"\n    ], \n    \"overpower\": [\n        \"VB\"\n    ], \n    \"pronunciation\": [\n        \"NN\"\n    ], \n    \"garbage-disposal\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"handbook\": [\n        \"NN\"\n    ], \n    \"grillwork\": [\n        \"NN\"\n    ], \n    \"Wanted\": [\n        \"VBN\", \n        \"NNP\"\n    ], \n    \"Pavlova\": [\n        \"NNP\"\n    ], \n    \"Painter\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Steel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Steen\": [\n        \"NNP\"\n    ], \n    \"newsman\": [\n        \"NN\"\n    ], \n    \"PharmaKinetics\": [\n        \"NNP\"\n    ], \n    \"Itagaki\": [\n        \"NNP\"\n    ], \n    \"investment-bank\": [\n        \"JJ\"\n    ], \n    \"tree-lined\": [\n        \"JJ\"\n    ], \n    \"quiescent\": [\n        \"JJ\"\n    ], \n    \"unstimulated\": [\n        \"JJ\"\n    ], \n    \"Alusuisse\": [\n        \"NNP\"\n    ], \n    \"Fla\": [\n        \"NNP\"\n    ], \n    \"migrating\": [\n        \"VBG\"\n    ], \n    \"Steep\": [\n        \"NNP\"\n    ], \n    \"calico\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Steer\": [\n        \"VB\"\n    ], \n    \"presentments\": [\n        \"NNS\"\n    ], \n    \"Untold\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"originals\": [\n        \"NNS\"\n    ], \n    \"mavericks\": [\n        \"NNS\"\n    ], \n    \"clips\": [\n        \"NNS\"\n    ], \n    \"tax-sheltered\": [\n        \"JJ\"\n    ], \n    \"Kringle\": [\n        \"NNP\"\n    ], \n    \"information-system\": [\n        \"JJ\"\n    ], \n    \"Dreman\": [\n        \"NNP\"\n    ], \n    \"McCaskey\": [\n        \"NNP\"\n    ], \n    \"mid-sized\": [\n        \"JJ\"\n    ], \n    \"Huo-Shan\": [\n        \"NNP\"\n    ], \n    \"female\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Overhead\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"cabs\": [\n        \"NNS\"\n    ], \n    \"dragging\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fluency\": [\n        \"NN\"\n    ], \n    \"Ragnar\": [\n        \"NNP\"\n    ], \n    \"Rowland-Molina\": [\n        \"NNP\"\n    ], \n    \"streamlining\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Barrier\": [\n        \"NNP\"\n    ], \n    \"humanities\": [\n        \"NNS\"\n    ], \n    \"Mormon\": [\n        \"NNP\"\n    ], \n    \"tactlessness\": [\n        \"NN\"\n    ], \n    \"post-earthquake\": [\n        \"JJ\"\n    ], \n    \"sterilize\": [\n        \"VB\"\n    ], \n    \"at-large\": [\n        \"JJ\"\n    ], \n    \"log-rolled\": [\n        \"VBD\"\n    ], \n    \"pesticides\": [\n        \"NNS\"\n    ], \n    \"Rises\": [\n        \"NNP\", \n        \"VBZ\"\n    ], \n    \"Medal\": [\n        \"NNP\"\n    ], \n    \"Relying\": [\n        \"VBG\"\n    ], \n    \"Rawl\": [\n        \"NNP\"\n    ], \n    \"announcing\": [\n        \"VBG\"\n    ], \n    \"IMELDA\": [\n        \"NNP\"\n    ], \n    \"wood-chip\": [\n        \"NN\"\n    ], \n    \"likeliest\": [\n        \"JJS\"\n    ], \n    \"ORGAN-TRANSPLANT\": [\n        \"JJ\"\n    ], \n    \"flowerpot\": [\n        \"NN\"\n    ], \n    \"Pierpont\": [\n        \"NNP\"\n    ], \n    \"tradeoff\": [\n        \"NN\"\n    ], \n    \"regionals\": [\n        \"NNS\"\n    ], \n    \"Gallon\": [\n        \"NNP\"\n    ], \n    \"Boutwell\": [\n        \"NNP\"\n    ], \n    \"rinse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"provincialism\": [\n        \"NN\"\n    ], \n    \"thirty-sixth\": [\n        \"JJ\"\n    ], \n    \"treaty-negotiating\": [\n        \"JJ\"\n    ], \n    \"crofters\": [\n        \"NNS\"\n    ], \n    \"angriest\": [\n        \"JJS\"\n    ], \n    \"high-rise-project\": [\n        \"JJ\"\n    ], \n    \"pulsing\": [\n        \"VBG\"\n    ], \n    \"Sumatra\": [\n        \"NNP\"\n    ], \n    \"Sentiments\": [\n        \"NNS\"\n    ], \n    \"intricate\": [\n        \"JJ\"\n    ], \n    \"FHA-insured\": [\n        \"JJ\"\n    ], \n    \"fact-finder\": [\n        \"NN\"\n    ], \n    \"breached\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Mosnier\": [\n        \"NN\"\n    ], \n    \"mower\": [\n        \"NN\"\n    ], \n    \"intensive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Barbee\": [\n        \"NNP\"\n    ], \n    \"CRITICAL\": [\n        \"NNP\"\n    ], \n    \"blaze\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"quarterly\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"mowed\": [\n        \"VBN\"\n    ], \n    \"staffing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"brigade\": [\n        \"NN\"\n    ], \n    \"UBS-Phillips\": [\n        \"NNP\"\n    ], \n    \"annoy\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"discount-borrowing\": [\n        \"NN\"\n    ], \n    \"short-sale\": [\n        \"JJ\"\n    ], \n    \"Gar-Dene\": [\n        \"NNP\"\n    ], \n    \"Obedience\": [\n        \"NN\"\n    ], \n    \"Tenite\": [\n        \"NNP\"\n    ], \n    \"right-hander\": [\n        \"NN\"\n    ], \n    \"tire-patching\": [\n        \"JJ\"\n    ], \n    \"Chaplin\": [\n        \"NNP\"\n    ], \n    \"understandings\": [\n        \"NNS\"\n    ], \n    \"gaming-industry\": [\n        \"NN\"\n    ], \n    \"profligacy\": [\n        \"NN\"\n    ], \n    \"uncovering\": [\n        \"VBG\"\n    ], \n    \"Dumping\": [\n        \"NN\"\n    ], \n    \"populist\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Crumble\": [\n        \"NNP\"\n    ], \n    \"fragmentations\": [\n        \"NNS\"\n    ], \n    \"state-funded\": [\n        \"JJ\"\n    ], \n    \"populism\": [\n        \"NN\"\n    ], \n    \"and...\": [\n        \":\"\n    ], \n    \"Pride-Starlette\": [\n        \"NNP\"\n    ], \n    \"thruway\": [\n        \"NN\"\n    ], \n    \"Chapter\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"low-profitmargin\": [\n        \"NN\"\n    ], \n    \"other.\": [\n        \"NN\"\n    ], \n    \"grooved\": [\n        \"VBN\"\n    ], \n    \"NTT\": [\n        \"NNP\"\n    ], \n    \"post-bellum\": [\n        \"FW\"\n    ], \n    \"uncomfortable\": [\n        \"JJ\"\n    ], \n    \"replicated\": [\n        \"VBN\"\n    ], \n    \"grooves\": [\n        \"NNS\"\n    ], \n    \"lower-priced\": [\n        \"JJ\"\n    ], \n    \"depression\": [\n        \"NN\"\n    ], \n    \"reconciliation\": [\n        \"NN\"\n    ], \n    \"formats\": [\n        \"NNS\"\n    ], \n    \"transplanted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"advertised\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"falcons\": [\n        \"NNS\"\n    ], \n    \"Hammond\": [\n        \"NNP\"\n    ], \n    \"condominium\": [\n        \"NN\"\n    ], \n    \"Hammons\": [\n        \"NNP\"\n    ], \n    \"Barnhardt\": [\n        \"NNP\"\n    ], \n    \"chasers\": [\n        \"NNS\"\n    ], \n    \"material-formal\": [\n        \"JJ\"\n    ], \n    \"mega-lawyer\": [\n        \"NN\"\n    ], \n    \"casualty-insurance\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Cassius\": [\n        \"NNP\"\n    ], \n    \"sins\": [\n        \"NNS\"\n    ], \n    \"Brandywine\": [\n        \"NNP\"\n    ], \n    \"Norge\": [\n        \"NNP\"\n    ], \n    \"sink\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"miasma\": [\n        \"NN\"\n    ], \n    \"others\": [\n        \"NNS\"\n    ], \n    \"non-Socialist\": [\n        \"JJ\"\n    ], \n    \"sing\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"sind\": [\n        \"FW\"\n    ], \n    \"sine\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"irritating\": [\n        \"JJ\"\n    ], \n    \"widening\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"PIERCE\": [\n        \"NNP\"\n    ], \n    \"employee-benefits\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"dispensers\": [\n        \"NNS\"\n    ], \n    \"contradiction\": [\n        \"NN\"\n    ], \n    \"ground-truck\": [\n        \"NN\"\n    ], \n    \"triskaidekaphobia\": [\n        \"NN\"\n    ], \n    \"guidance\": [\n        \"NN\"\n    ], \n    \"tat\": [\n        \"VB\"\n    ], \n    \"appended\": [\n        \"VBN\"\n    ], \n    \"J.V\": [\n        \"NNP\"\n    ], \n    \"presidents\": [\n        \"NNS\"\n    ], \n    \"Doberman\": [\n        \"NN\"\n    ], \n    \"diagonalizable\": [\n        \"JJ\"\n    ], \n    \"silkily\": [\n        \"RB\"\n    ], \n    \"grade-A\": [\n        \"JJ\"\n    ], \n    \"J.J\": [\n        \"NNP\"\n    ], \n    \"clockwise\": [\n        \"RB\"\n    ], \n    \"Weber\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Dale\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"taxiing\": [\n        \"VBG\"\n    ], \n    \"Jackstadt\": [\n        \"NNP\"\n    ], \n    \"clocking\": [\n        \"NN\"\n    ], \n    \"glasnost\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"breakup\": [\n        \"NN\"\n    ], \n    \"Brisk\": [\n        \"JJ\"\n    ], \n    \"determining\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Dali\": [\n        \"NNP\"\n    ], \n    \"Daly\": [\n        \"NNP\"\n    ], \n    \"matinee\": [\n        \"JJ\"\n    ], \n    \"impotence\": [\n        \"NN\"\n    ], \n    \"Laser\": [\n        \"NNP\"\n    ], \n    \"airlifted\": [\n        \"VBN\"\n    ], \n    \"Credit-card\": [\n        \"NN\"\n    ], \n    \"billet\": [\n        \"NN\"\n    ], \n    \"S&P\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"emigration\": [\n        \"NN\"\n    ], \n    \"S&L\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Flanders\": [\n        \"NNP\"\n    ], \n    \"hailstorm\": [\n        \"NN\"\n    ], \n    \"Lieppe\": [\n        \"NNP\"\n    ], \n    \"strategic-planning\": [\n        \"JJ\"\n    ], \n    \"high-inflation\": [\n        \"JJ\"\n    ], \n    \"debtors\": [\n        \"NNS\"\n    ], \n    \"Tharp\": [\n        \"NNP\"\n    ], \n    \"Reward\": [\n        \"VB\"\n    ], \n    \"DFC\": [\n        \"NNP\"\n    ], \n    \"Weems\": [\n        \"NNP\"\n    ], \n    \"Marketplace\": [\n        \"NNP\"\n    ], \n    \"inclinations\": [\n        \"NNS\"\n    ], \n    \"MacLellan\": [\n        \"NNP\"\n    ], \n    \"tunnel\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"thiocyanate-perchlorate-fluoro\": [\n        \"NN\"\n    ], \n    \"exhilaration\": [\n        \"NN\"\n    ], \n    \"crickets\": [\n        \"NNS\"\n    ], \n    \"parquet\": [\n        \"NN\"\n    ], \n    \"industrial\": [\n        \"JJ\"\n    ], \n    \"Chadbourne\": [\n        \"NNP\"\n    ], \n    \"unpacking\": [\n        \"VBG\"\n    ], \n    \"drug-financed\": [\n        \"JJ\"\n    ], \n    \"Seizin\": [\n        \"VBG\"\n    ], \n    \"e.g.\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"higher-technology\": [\n        \"JJR\"\n    ], \n    \"Grosset\": [\n        \"NNP\"\n    ], \n    \"Indira\": [\n        \"NNP\"\n    ], \n    \"Halsmuseum\": [\n        \"NNP\"\n    ], \n    \"sanding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Artificial\": [\n        \"JJ\"\n    ], \n    \"recklessly\": [\n        \"RB\"\n    ], \n    \"expandable\": [\n        \"JJ\"\n    ], \n    \"patisseries\": [\n        \"NNS\"\n    ], \n    \"serial\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"SynOptics\": [\n        \"NNPS\"\n    ], \n    \"dinners\": [\n        \"NNS\"\n    ], \n    \"trazadone\": [\n        \"NN\"\n    ], \n    \"thrall\": [\n        \"NN\"\n    ], \n    \"Krause\": [\n        \"NNP\"\n    ], \n    \"Paper\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Ohls\": [\n        \"NNP\"\n    ], \n    \"Krauss\": [\n        \"NNP\"\n    ], \n    \"Alarmed\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"meditated\": [\n        \"VBD\"\n    ], \n    \"stock\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"Adenauer\": [\n        \"NNP\"\n    ], \n    \"ABB\": [\n        \"NNP\"\n    ], \n    \"railings\": [\n        \"NNS\"\n    ], \n    \"Dionigi\": [\n        \"NNP\"\n    ], \n    \"car-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Index-related\": [\n        \"JJ\"\n    ], \n    \"cardamom\": [\n        \"NN\"\n    ], \n    \"Outperform\": [\n        \"NNP\"\n    ], \n    \"ABM\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ABO\": [\n        \"NNP\"\n    ], \n    \"ABS\": [\n        \"NNP\"\n    ], \n    \"Sparkman\": [\n        \"NNP\"\n    ], \n    \"Depositary\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"multiplication\": [\n        \"NN\"\n    ], \n    \"yielded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Reye\": [\n        \"NNP\"\n    ], \n    \"drape\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Carews\": [\n        \"NNPS\"\n    ], \n    \"Principia\": [\n        \"NNP\"\n    ], \n    \"separations\": [\n        \"NNS\"\n    ], \n    \"Salisbury\": [\n        \"NNP\"\n    ], \n    \"Horns\": [\n        \"NNS\"\n    ], \n    \"demi-monde\": [\n        \"FW\"\n    ], \n    \"anionic\": [\n        \"JJ\"\n    ], \n    \"Yonehara\": [\n        \"NNP\"\n    ], \n    \"Ruettgers\": [\n        \"NNP\"\n    ], \n    \"languorous\": [\n        \"JJ\"\n    ], \n    \"credit-data\": [\n        \"NN|NNS\"\n    ], \n    \"Dudley\": [\n        \"NNP\"\n    ], \n    \"razor-thin\": [\n        \"JJ\"\n    ], \n    \"preclinical\": [\n        \"JJ\"\n    ], \n    \"repentant\": [\n        \"JJ\"\n    ], \n    \"split-fingered\": [\n        \"JJ\"\n    ], \n    \"Prielipp\": [\n        \"NNP\"\n    ], \n    \"shreds\": [\n        \"NNS\"\n    ], \n    \"subpoenaed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Gospelers\": [\n        \"NNS\"\n    ], \n    \"fortunate\": [\n        \"JJ\"\n    ], \n    \"envisage\": [\n        \"VB\"\n    ], \n    \"followership\": [\n        \"NN\"\n    ], \n    \"bridges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"negotiated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"whereon\": [\n        \"NN\"\n    ], \n    \"relativity\": [\n        \"NN\"\n    ], \n    \"Disposable\": [\n        \"JJ\"\n    ], \n    \"whereof\": [\n        \"RB\", \n        \"WRB\"\n    ], \n    \"mill-wheel\": [\n        \"NN\"\n    ], \n    \"labor\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"squatting\": [\n        \"VBG\"\n    ], \n    \"junior-senior\": [\n        \"JJ\"\n    ], \n    \"NCAAs\": [\n        \"NNS\"\n    ], \n    \"<\": [\n        \"SYM\"\n    ], \n    \"dad\": [\n        \"NN\"\n    ], \n    \"junction\": [\n        \"NN\"\n    ], \n    \"lunatic\": [\n        \"JJ\"\n    ], \n    \"infrequent\": [\n        \"JJ\"\n    ], \n    \"dam\": [\n        \"NN\", \n        \"JJ\", \n        \"UH\"\n    ], \n    \"Repnin\": [\n        \"NNP\"\n    ], \n    \"gauging\": [\n        \"VBG\"\n    ], \n    \"COMPANIES\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Concorde\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"wiggier\": [\n        \"JJR\"\n    ], \n    \"rebel\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"w-i-d-e\": [\n        \"NN\"\n    ], \n    \"Heitman\": [\n        \"NNP\"\n    ], \n    \"sonata\": [\n        \"NN\"\n    ], \n    \"das\": [\n        \"NNS\"\n    ], \n    \"day\": [\n        \"NN\"\n    ], \n    \"serpentine\": [\n        \"JJ\"\n    ], \n    \"Crampton\": [\n        \"NNP\"\n    ], \n    \"slacken\": [\n        \"VB\"\n    ], \n    \"Poor\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"verifying\": [\n        \"VBG\"\n    ], \n    \"warned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"radiant\": [\n        \"JJ\"\n    ], \n    \"incineration\": [\n        \"NN\"\n    ], \n    \"Oerlikon-Buehrle\": [\n        \"NNP\"\n    ], \n    \"constraints\": [\n        \"NNS\"\n    ], \n    \"beween\": [\n        \"NN\"\n    ], \n    \"federalists\": [\n        \"NNS\"\n    ], \n    \"Injuns\": [\n        \"NNPS\"\n    ], \n    \"Armor\": [\n        \"NNP\"\n    ], \n    \"strip\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"four-star\": [\n        \"JJ\"\n    ], \n    \"Roaring\": [\n        \"NNP\"\n    ], \n    \"Bonuses\": [\n        \"NNS\"\n    ], \n    \"exodus\": [\n        \"NN\"\n    ], \n    \"Africanist\": [\n        \"NNP\"\n    ], \n    \"wolfishly\": [\n        \"RB\"\n    ], \n    \"slumped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Comissioner\": [\n        \"NNP\"\n    ], \n    \"unstuck\": [\n        \"JJ\"\n    ], \n    \"thermoplastic\": [\n        \"JJ\"\n    ], \n    \"byplay\": [\n        \"NN\"\n    ], \n    \"R.R.\": [\n        \"NNP\"\n    ], \n    \"labile\": [\n        \"JJ\"\n    ], \n    \"Delbridge\": [\n        \"NNP\"\n    ], \n    \"Stalag\": [\n        \"NNP\"\n    ], \n    \"bullfighter\": [\n        \"NN\"\n    ], \n    \"postpone\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Bidermann\": [\n        \"NNP\"\n    ], \n    \"fringed-wrapped\": [\n        \"JJ\"\n    ], \n    \"affirming\": [\n        \"VBG\"\n    ], \n    \"centrifuging\": [\n        \"VBG\"\n    ], \n    \"CSO\": [\n        \"NNP\"\n    ], \n    \"CSI\": [\n        \"NNP\"\n    ], \n    \"CSK\": [\n        \"NNP\"\n    ], \n    \"CSF\": [\n        \"NNP\"\n    ], \n    \"majority-held\": [\n        \"JJ\"\n    ], \n    \"CSX\": [\n        \"NNP\"\n    ], \n    \"CST\": [\n        \"NNP\"\n    ], \n    \"CSV\": [\n        \"NNP\"\n    ], \n    \"Vries\": [\n        \"NNP\"\n    ], \n    \"CSS\": [\n        \"NNP\"\n    ], \n    \"CSR\": [\n        \"NNP\"\n    ], \n    \"acre\": [\n        \"NN\"\n    ], \n    \"turbans\": [\n        \"NNS\"\n    ], \n    \"wagged\": [\n        \"VBD\"\n    ], \n    \"Grade\": [\n        \"NNP\"\n    ], \n    \"pervasiveness\": [\n        \"NN\"\n    ], \n    \"discomfort\": [\n        \"NN\"\n    ], \n    \"Tex-Mex\": [\n        \"NNP\"\n    ], \n    \"Fold\": [\n        \"VB\"\n    ], \n    \"Grady\": [\n        \"NNP\"\n    ], \n    \"Flatness\": [\n        \"NN\"\n    ], \n    \"sorrowful\": [\n        \"JJ\"\n    ], \n    \"Folk\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Developer\": [\n        \"NNP\"\n    ], \n    \"jigsaw\": [\n        \"NN\"\n    ], \n    \"Whinney\": [\n        \"NNP\"\n    ], \n    \"microprocessor-based\": [\n        \"JJ\"\n    ], \n    \"bleeps\": [\n        \"NNS\"\n    ], \n    \"improvements\": [\n        \"NNS\"\n    ], \n    \"puppet\": [\n        \"NN\"\n    ], \n    \"Bethesda\": [\n        \"NNP\"\n    ], \n    \"beer-related\": [\n        \"JJ\"\n    ], \n    \"pauper\": [\n        \"NN\"\n    ], \n    \"Exercise\": [\n        \"NN\"\n    ], \n    \"commendations\": [\n        \"NNS\"\n    ], \n    \"expressionistic\": [\n        \"JJ\"\n    ], \n    \"covenants\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"sadly\": [\n        \"RB\"\n    ], \n    \"laps\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"chased\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Tbond\": [\n        \"JJ\"\n    ], \n    \"establishments\": [\n        \"NNS\"\n    ], \n    \"blow-up\": [\n        \"NN\"\n    ], \n    \"non-encapsulating\": [\n        \"JJ\"\n    ], \n    \"time\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"ferocity\": [\n        \"NN\"\n    ], \n    \"natty\": [\n        \"JJ\"\n    ], \n    \"Spegititgninino\": [\n        \"NNP\"\n    ], \n    \"INTEREST-RATE\": [\n        \"NN\"\n    ], \n    \"Canned\": [\n        \"JJ\"\n    ], \n    \"gear\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"unscrupulous\": [\n        \"JJ\"\n    ], \n    \"Huppert\": [\n        \"NNP\"\n    ], \n    \"retrench\": [\n        \"VBP\"\n    ], \n    \"chemical-and-resource\": [\n        \"JJ\"\n    ], \n    \"forethought\": [\n        \"NN\"\n    ], \n    \"unending\": [\n        \"JJ\"\n    ], \n    \"Cannes\": [\n        \"NNP\"\n    ], \n    \"Canner\": [\n        \"NNP\"\n    ], \n    \"min.\": [\n        \"NN\"\n    ], \n    \"stumping\": [\n        \"NN\"\n    ], \n    \"loved\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"glamorous\": [\n        \"JJ\"\n    ], \n    \"Alakshak\": [\n        \"NNP\"\n    ], \n    \"BellSouth\": [\n        \"NNP\"\n    ], \n    \"Vacaville\": [\n        \"NNP\"\n    ], \n    \"spookiest\": [\n        \"JJS\"\n    ], \n    \"compensation\": [\n        \"NN\"\n    ], \n    \"halcyon\": [\n        \"JJ\"\n    ], \n    \"railroad-holding\": [\n        \"JJ\"\n    ], \n    \"propagandize\": [\n        \"VB\"\n    ], \n    \"loves\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"lover\": [\n        \"NN\"\n    ], \n    \"Bolker\": [\n        \"NNP\"\n    ], \n    \"seventy-fifth\": [\n        \"JJ\"\n    ], \n    \"tax-writers\": [\n        \"NNS\"\n    ], \n    \"Perrier\": [\n        \"NNP\"\n    ], \n    \"export-related\": [\n        \"JJ\"\n    ], \n    \"Blatz\": [\n        \"NNP\"\n    ], \n    \"cytoplasm\": [\n        \"NN\"\n    ], \n    \"sublunary\": [\n        \"JJ\"\n    ], \n    \"connectors\": [\n        \"NNS\"\n    ], \n    \"fifty-ninth\": [\n        \"JJ\"\n    ], \n    \"ethnically\": [\n        \"RB\"\n    ], \n    \"mass-faxing\": [\n        \"JJ\"\n    ], \n    \"dementia\": [\n        \"NN\"\n    ], \n    \"demonstration\": [\n        \"NN\"\n    ], \n    \"sayings\": [\n        \"NNS\"\n    ], \n    \"Credo\": [\n        \"NN\"\n    ], \n    \"papiers\": [\n        \"FW\"\n    ], \n    \"minimally\": [\n        \"RB\"\n    ], \n    \"Dostoevsky\": [\n        \"NNP\"\n    ], \n    \"Enthusiastically\": [\n        \"RB\"\n    ], \n    \"builtin\": [\n        \"JJ\"\n    ], \n    \"replanted\": [\n        \"VBN\"\n    ], \n    \"chaise\": [\n        \"NN\"\n    ], \n    \"rediscovered\": [\n        \"VBN\"\n    ], \n    \"scimitars\": [\n        \"NNS\"\n    ], \n    \"literalness\": [\n        \"NN\"\n    ], \n    \"prednisone\": [\n        \"NN\"\n    ], \n    \"trundles\": [\n        \"VBZ\"\n    ], \n    \"DOLLAR\": [\n        \"NN\"\n    ], \n    \"trundled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Baggage\": [\n        \"NN\"\n    ], \n    \"Priest\": [\n        \"NNP\"\n    ], \n    \"Ernst\": [\n        \"NNP\"\n    ], \n    \"reveling\": [\n        \"VBG\"\n    ], \n    \"profoundest\": [\n        \"JJS\"\n    ], \n    \"YEEECH\": [\n        \"UH\"\n    ], \n    \"Burma\": [\n        \"NNP\"\n    ], \n    \"gullet\": [\n        \"NN\"\n    ], \n    \"allegorical\": [\n        \"JJ\"\n    ], \n    \"Co-Renitec\": [\n        \"NNP\"\n    ], \n    \"hostesses\": [\n        \"NNS\"\n    ], \n    \"gather\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Movietime\\\\/Alfalfa\": [\n        \"NNP\"\n    ], \n    \"capita\": [\n        \"NNS\", \n        \"FW\", \n        \"NN\"\n    ], \n    \"gulled\": [\n        \"VBN\"\n    ], \n    \"Ashok\": [\n        \"NNP\"\n    ], \n    \"Government-Sponsored\": [\n        \"NNP\"\n    ], \n    \"selection\": [\n        \"NN\"\n    ], \n    \"kite\": [\n        \"NN\"\n    ], \n    \"gentleman\": [\n        \"NN\"\n    ], \n    \"physique\": [\n        \"NN\"\n    ], \n    \"humanizing\": [\n        \"VBG\"\n    ], \n    \"kits\": [\n        \"NNS\"\n    ], \n    \"Jerr-Dan\": [\n        \"NNP\"\n    ], \n    \"portfolio\": [\n        \"NN\"\n    ], \n    \"Banvel\": [\n        \"NNP\"\n    ], \n    \"shrugs\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"camping\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"circumpolar\": [\n        \"JJ\"\n    ], \n    \"dealer-to-dealer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"NEC-compatible\": [\n        \"JJ\"\n    ], \n    \"Chanos\": [\n        \"NNP\"\n    ], \n    \"scuttling\": [\n        \"VBG\"\n    ], \n    \"resubmit\": [\n        \"VB\"\n    ], \n    \"Bogartian\": [\n        \"JJ\"\n    ], \n    \"iodide\": [\n        \"NN\"\n    ], \n    \"Kaul\": [\n        \"NNP\"\n    ], \n    \"computer-printer\": [\n        \"NN\"\n    ], \n    \"spirit-gum\": [\n        \"NN\"\n    ], \n    \"exceptional\": [\n        \"JJ\"\n    ], \n    \"Brezhnevite\": [\n        \"NNP\"\n    ], \n    \"photography\": [\n        \"NN\"\n    ], \n    \"Kishimoto\": [\n        \"NNP\"\n    ], \n    \"stripes\": [\n        \"NNS\"\n    ], \n    \"enunciating\": [\n        \"VBG\"\n    ], \n    \"accrue\": [\n        \"VB\"\n    ], \n    \"occupant\": [\n        \"NN\"\n    ], \n    \"deputies\": [\n        \"NNS\"\n    ], \n    \"humanely\": [\n        \"RB\"\n    ], \n    \"striped\": [\n        \"JJ\"\n    ], \n    \"Stockton\": [\n        \"NNP\"\n    ], \n    \"Provincetown\": [\n        \"NNP\"\n    ], \n    \"Cleaner\": [\n        \"NNP\"\n    ], \n    \"substrate\": [\n        \"NN\"\n    ], \n    \"densities\": [\n        \"NNS\"\n    ], \n    \"defoliation\": [\n        \"NN\"\n    ], \n    \"Buchanan\": [\n        \"NNP\"\n    ], \n    \"Transpiration\": [\n        \"NN\"\n    ], \n    \"plumpness\": [\n        \"NN\"\n    ], \n    \"calling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"serviettes\": [\n        \"NNS\"\n    ], \n    \"overexploitation\": [\n        \"NN\"\n    ], \n    \"Cleaned\": [\n        \"VBN\"\n    ], \n    \"ballplayers\": [\n        \"NNS\"\n    ], \n    \"execuitive\": [\n        \"NN\"\n    ], \n    \"yard-line\": [\n        \"NN\"\n    ], \n    \"outfielder\": [\n        \"NN\"\n    ], \n    \"Traders\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"dislodge\": [\n        \"VB\"\n    ], \n    \"Constar\": [\n        \"NNP\"\n    ], \n    \"co-director\": [\n        \"NN\"\n    ], \n    \"Parrillo\": [\n        \"NNP\"\n    ], \n    \"front-seat\": [\n        \"NN\"\n    ], \n    \"Grows\": [\n        \"VBZ\"\n    ], \n    \"Chemists\": [\n        \"NNS\"\n    ], \n    \"phases\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mellon\": [\n        \"NNP\"\n    ], \n    \"current-year\": [\n        \"JJ\"\n    ], \n    \"clearing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Aurora\": [\n        \"NNP\"\n    ], \n    \"nebula\": [\n        \"NN\"\n    ], \n    \"peripherally\": [\n        \"RB\"\n    ], \n    \"routing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"derisively\": [\n        \"RB\"\n    ], \n    \"routine\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Mellow\": [\n        \"JJ\"\n    ], \n    \"Mellor\": [\n        \"NNP\"\n    ], \n    \"alveolar\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"nudged\": [\n        \"VBD\"\n    ], \n    \"Canadian-U.S.\": [\n        \"JJ\"\n    ], \n    \"Kittler\": [\n        \"NNP\"\n    ], \n    \"packaged\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Smoky\": [\n        \"NNP\"\n    ], \n    \"manometer\": [\n        \"NN\"\n    ], \n    \"Silicon\": [\n        \"NNP\"\n    ], \n    \"Edgar\": [\n        \"NNP\"\n    ], \n    \"Smoke\": [\n        \"NNP\"\n    ], \n    \"Ave\": [\n        \"NNP\"\n    ], \n    \"health-club\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"sou\": [\n        \"FW\"\n    ], \n    \"straights\": [\n        \"NNS\"\n    ], \n    \"Bontempo\": [\n        \"NNP\"\n    ], \n    \"corroborees\": [\n        \"NNS\"\n    ], \n    \"Concurrently\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Ethel\": [\n        \"NNP\"\n    ], \n    \"Ambrosiano\": [\n        \"NNP\"\n    ], \n    \"Louvre\": [\n        \"NNP\"\n    ], \n    \"wiederum\": [\n        \"FW\"\n    ], \n    \"credit-easing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"electronic-systems\": [\n        \"NNS\"\n    ], \n    \"embryos\": [\n        \"NNS\"\n    ], \n    \"sexes\": [\n        \"NNS\"\n    ], \n    \"vantage-points\": [\n        \"NNS\"\n    ], \n    \"highland\": [\n        \"NN\"\n    ], \n    \"otherwise\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"fester\": [\n        \"VB\"\n    ], \n    \"make-overs\": [\n        \"NNS\"\n    ], \n    \"invasive\": [\n        \"JJ\"\n    ], \n    \"fostering\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hashidate\": [\n        \"NNP\"\n    ], \n    \"ASEAN\": [\n        \"NNP\"\n    ], \n    \"Blot\": [\n        \"NNP\"\n    ], \n    \"Segovia\": [\n        \"NNP\"\n    ], \n    \"monstrosity\": [\n        \"NN\"\n    ], \n    \"technologist\": [\n        \"NN\"\n    ], \n    \"glassless\": [\n        \"JJ\"\n    ], \n    \"Tocqueville\": [\n        \"NNP\"\n    ], \n    \"tryst\": [\n        \"NN\"\n    ], \n    \"Muramatsu\": [\n        \"NNP\"\n    ], \n    \"LOTUS\": [\n        \"NNP\"\n    ], \n    \"crassest\": [\n        \"JJS\"\n    ], \n    \"Oranges\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"USO\": [\n        \"NNP\"\n    ], \n    \"Radiation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"most-indebted\": [\n        \"JJS\"\n    ], \n    \"Goldinger\": [\n        \"NNP\"\n    ], \n    \"upbeat\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Hoskyns\": [\n        \"NNP\"\n    ], \n    \"Germantown\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"define\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Taito\": [\n        \"NNP\"\n    ], \n    \"Marico\": [\n        \"NNP\"\n    ], \n    \"citation\": [\n        \"NN\"\n    ], \n    \"Winkler\": [\n        \"NNP\"\n    ], \n    \"Barell\": [\n        \"NNP\"\n    ], \n    \"Lynde\": [\n        \"NNP\"\n    ], \n    \"rock-carved\": [\n        \"JJ\"\n    ], \n    \"USI\": [\n        \"NNP\"\n    ], \n    \"general\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cot\": [\n        \"NN\"\n    ], \n    \"plaid\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Glumly\": [\n        \"RB\"\n    ], \n    \"cow\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"plain\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"promoter\": [\n        \"NN\"\n    ], \n    \"rectangular\": [\n        \"JJ\"\n    ], \n    \"Uzbekistan\": [\n        \"NNP\"\n    ], \n    \"high-ticket\": [\n        \"JJ\"\n    ], \n    \"deem\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"promoted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Bloc\": [\n        \"NNP\"\n    ], \n    \"revisited\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Somerville\": [\n        \"NNP\"\n    ], \n    \"late-afternoon\": [\n        \"JJ\"\n    ], \n    \"Tash\": [\n        \"NNP\"\n    ], \n    \"cereals\": [\n        \"NNS\"\n    ], \n    \"Hine\": [\n        \"NNP\"\n    ], \n    \"helper\": [\n        \"NN\"\n    ], \n    \"Rudolph\": [\n        \"NNP\"\n    ], \n    \"helped\": [\n        \"VBD\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"preconference\": [\n        \"JJ\"\n    ], \n    \"landfills\": [\n        \"NNS\"\n    ], \n    \"tampered\": [\n        \"VBD\"\n    ], \n    \"aggressiveness\": [\n        \"NN\"\n    ], \n    \"claimed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Kerlone\": [\n        \"NNP\"\n    ], \n    \"inspector\": [\n        \"NN\"\n    ], \n    \"exogamous\": [\n        \"JJ\"\n    ], \n    \"watchful\": [\n        \"JJ\"\n    ], \n    \"Winking\": [\n        \"VBG\"\n    ], \n    \"Kongsberg\": [\n        \"NNP\"\n    ], \n    \"absinthe\": [\n        \"NN\"\n    ], \n    \"Hino\": [\n        \"NNP\"\n    ], \n    \"Lenobel\": [\n        \"NNP\"\n    ], \n    \"administration\": [\n        \"NN\"\n    ], \n    \"cabinetmakers\": [\n        \"NNS\"\n    ], \n    \"BetaWest\": [\n        \"NNP\"\n    ], \n    \"Persianesque\": [\n        \"JJ\"\n    ], \n    \"sweet-faced\": [\n        \"JJ\"\n    ], \n    \"blooms\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"injured\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Resolved\": [\n        \"VBN\"\n    ], \n    \"tighten\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"taverns\": [\n        \"NNS\"\n    ], \n    \"sensed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"extra-caffeine\": [\n        \"JJ\"\n    ], \n    \"genres\": [\n        \"NNS\"\n    ], \n    \"ion\": [\n        \"NN\"\n    ], \n    \"Doppler\": [\n        \"NNP\"\n    ], \n    \"Teachers\": [\n        \"NNPS\", \n        \"NNP\", \n        \"NNS\"\n    ], \n    \"injures\": [\n        \"VBZ\"\n    ], \n    \"judgment\": [\n        \"NN\"\n    ], \n    \"tighter\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Bashir\": [\n        \"NNP\"\n    ], \n    \"raping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Eurobond\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"com\": [\n        \"NN\"\n    ], \n    \"Start-up\": [\n        \"JJ\"\n    ], \n    \"Nonconformist\": [\n        \"NNP\"\n    ], \n    \"alky\": [\n        \"NN\"\n    ], \n    \"Kihei\": [\n        \"NNP\"\n    ], \n    \"sets\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Chimanbhai\": [\n        \"NNP\"\n    ], \n    \"position\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"arming\": [\n        \"NN\"\n    ], \n    \"intransigence\": [\n        \"NN\"\n    ], \n    \"Serbantian\": [\n        \"NNP\"\n    ], \n    \"Rattzhenfuut\": [\n        \"NNP\"\n    ], \n    \"gas-fired\": [\n        \"JJ\"\n    ], \n    \"proximity\": [\n        \"NN\"\n    ], \n    \"executive\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"hoped-for\": [\n        \"JJ\"\n    ], \n    \"clinic\": [\n        \"NN\"\n    ], \n    \"Tabak\": [\n        \"NNP\"\n    ], \n    \"voltage\": [\n        \"NN\"\n    ], \n    \"Furuta\": [\n        \"NNP\"\n    ], \n    \"DePugh\": [\n        \"NNP\"\n    ], \n    \"topping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Instrumental\": [\n        \"NNP\"\n    ], \n    \"Teflon\": [\n        \"NNP\"\n    ], \n    \"Tass\": [\n        \"NNP\"\n    ], \n    \"absorption\": [\n        \"NN\"\n    ], \n    \"terrorized\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"lake\": [\n        \"NN\"\n    ], \n    \"Amvest\": [\n        \"NNP\"\n    ], \n    \"Crus\": [\n        \"NNP\"\n    ], \n    \"Kraft\": [\n        \"NNP\"\n    ], \n    \"sex-education\": [\n        \"NN\"\n    ], \n    \"Itzhak\": [\n        \"NNP\"\n    ], \n    \"Coles\": [\n        \"NNP\"\n    ], \n    \"newsstand\": [\n        \"NN\"\n    ], \n    \"easel\": [\n        \"NN\"\n    ], \n    \"roofers\": [\n        \"NNS\"\n    ], \n    \"audibly\": [\n        \"RB\"\n    ], \n    \"diehards\": [\n        \"NNS\"\n    ], \n    \"drugless\": [\n        \"JJ\"\n    ], \n    \"inviting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"sofa\": [\n        \"NN\"\n    ], \n    \"qualitative\": [\n        \"JJ\"\n    ], \n    \"Lintas\": [\n        \"NNP\"\n    ], \n    \"heed\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Fear\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"soft\": [\n        \"JJ\", \n        \"NNS\", \n        \"RB\"\n    ], \n    \"audible\": [\n        \"JJ\"\n    ], \n    \"heel\": [\n        \"NN\"\n    ], \n    \"Castillo\": [\n        \"NNP\"\n    ], \n    \"Gargery\": [\n        \"NNP\"\n    ], \n    \"cellists\": [\n        \"NNS\"\n    ], \n    \"Villamiel\": [\n        \"NNP\"\n    ], \n    \"Excel\": [\n        \"NNP\"\n    ], \n    \"Irina\": [\n        \"NNP\"\n    ], \n    \"swimsuits\": [\n        \"NNS\"\n    ], \n    \"Forte\": [\n        \"NNP\"\n    ], \n    \"Darvon\": [\n        \"NNP\"\n    ], \n    \"abolitionist\": [\n        \"NN\"\n    ], \n    \"Zayadi\": [\n        \"NNP\"\n    ], \n    \"Oedipal\": [\n        \"JJ\"\n    ], \n    \"stuffy\": [\n        \"JJ\"\n    ], \n    \"debate...\": [\n        \":\"\n    ], \n    \"highlighting\": [\n        \"VBG\"\n    ], \n    \"treacheries\": [\n        \"NNS\"\n    ], \n    \"parallel-computing\": [\n        \"JJ\"\n    ], \n    \"Euro-cigarette\": [\n        \"NN\"\n    ], \n    \"corpse\": [\n        \"NN\"\n    ], \n    \"then-pending\": [\n        \"JJ\"\n    ], \n    \"Putty\": [\n        \"NN\"\n    ], \n    \"countersuit\": [\n        \"NN\"\n    ], \n    \"technology-based\": [\n        \"JJ\"\n    ], \n    \"chains\": [\n        \"NNS\"\n    ], \n    \"great-grandfather\": [\n        \"NN\"\n    ], \n    \"regain\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"plumped\": [\n        \"VBD\"\n    ], \n    \"hose\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"lower-tech\": [\n        \"JJ\"\n    ], \n    \"EWC\": [\n        \"NN\"\n    ], \n    \"Lokey\": [\n        \"NNP\"\n    ], \n    \"unflaggingly\": [\n        \"RB\"\n    ], \n    \"Maronite\": [\n        \"JJ\"\n    ], \n    \"host\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"expire\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"hoss\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Deterioration\": [\n        \"NN\"\n    ], \n    \"whacky\": [\n        \"JJ\"\n    ], \n    \"christened\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"beaker\": [\n        \"NN\"\n    ], \n    \"KinderCare\": [\n        \"NNP\"\n    ], \n    \"Igor\": [\n        \"NNP\"\n    ], \n    \"tray\": [\n        \"NN\"\n    ], \n    \"greedier\": [\n        \"JJR\"\n    ], \n    \"preemployment\": [\n        \"NN\"\n    ], \n    \"blessings\": [\n        \"NNS\"\n    ], \n    \"lower-than-forecast\": [\n        \"JJ\"\n    ], \n    \"foldability\": [\n        \"NN\"\n    ], \n    \"Mayor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Giggey\": [\n        \"NNP\"\n    ], \n    \"triple-A\\\\\": [\n        \"JJ\"\n    ], \n    \"cha-chas\": [\n        \"NNS\"\n    ], \n    \"over-arranged\": [\n        \"JJ\"\n    ], \n    \"chronic\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"lobbies\": [\n        \"NNS\"\n    ], \n    \"vampirism\": [\n        \"NN\"\n    ], \n    \"non-callable\": [\n        \"JJ\"\n    ], \n    \"styrene\": [\n        \"NN\"\n    ], \n    \"buckle\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"adversarial\": [\n        \"JJ\"\n    ], \n    \"awarded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Gaon\": [\n        \"NNP\"\n    ], \n    \"utopian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"line-pairs\": [\n        \"NN\"\n    ], \n    \"maze\": [\n        \"NN\"\n    ], \n    \"GRAB\": [\n        \"NNP\"\n    ], \n    \"conclusive\": [\n        \"JJ\"\n    ], \n    \"relishing\": [\n        \"VBG\"\n    ], \n    \"Queried\": [\n        \"VBN\"\n    ], \n    \"ivory\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Duro-Test\": [\n        \"NNP\"\n    ], \n    \"enchantment\": [\n        \"NN\"\n    ], \n    \"brand\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"amity\": [\n        \"NN\"\n    ], \n    \"Cavin-Morris\": [\n        \"NNP\"\n    ], \n    \"reminds\": [\n        \"VBZ\"\n    ], \n    \"Cmdr.\": [\n        \"NNP\"\n    ], \n    \"money-fund\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"flexible\": [\n        \"JJ\"\n    ], \n    \"editing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Aquifers\": [\n        \"NNS\"\n    ], \n    \"Krepon\": [\n        \"NNP\"\n    ], \n    \"Compare\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"dozens\": [\n        \"NNS\"\n    ], \n    \"dangerous\": [\n        \"JJ\"\n    ], \n    \"j\": [\n        \"NN\"\n    ], \n    \"annoying\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"backfires\": [\n        \"VBZ\"\n    ], \n    \"contadini\": [\n        \"NNS\"\n    ], \n    \"superieure\": [\n        \"NN\"\n    ], \n    \"avaliable\": [\n        \"JJ\"\n    ], \n    \"judiciaries\": [\n        \"NNS\"\n    ], \n    \"Gazeta\": [\n        \"NNP\"\n    ], \n    \"chouise\": [\n        \"NN\"\n    ], \n    \"Arcadian\": [\n        \"NNP\"\n    ], \n    \"Arte\": [\n        \"NNP\"\n    ], \n    \"backfired\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"plutonium\": [\n        \"NN\"\n    ], \n    \"cooperative-care\": [\n        \"JJ\"\n    ], \n    \"coverall\": [\n        \"NN\"\n    ], \n    \"rhenium\": [\n        \"NN\"\n    ], \n    \"deaths\": [\n        \"NNS\"\n    ], \n    \"boyish-looking\": [\n        \"JJ\"\n    ], \n    \"handset\": [\n        \"NN\"\n    ], \n    \"Ihmsen\": [\n        \"NNP\"\n    ], \n    \"crusade\": [\n        \"NN\"\n    ], \n    \"barnyards\": [\n        \"NNS\"\n    ], \n    \"Jars\": [\n        \"NNS\"\n    ], \n    \"shooting\": [\n        \"NN\", \n        \"VBG\", \n        \"VBG|NN\"\n    ], \n    \"glutamate\": [\n        \"NN\"\n    ], \n    \"tarpaulins\": [\n        \"NNS\"\n    ], \n    \"misstated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"unintelligible\": [\n        \"JJ\"\n    ], \n    \"Hawes\": [\n        \"NNP\"\n    ], \n    \"Vice\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"individuate\": [\n        \"VB\"\n    ], \n    \"patsy\": [\n        \"NN\"\n    ], \n    \"surreal\": [\n        \"JJ\"\n    ], \n    \"poor-performing\": [\n        \"JJ\"\n    ], \n    \"misstates\": [\n        \"VBZ\"\n    ], \n    \"Posterity\": [\n        \"NN\"\n    ], \n    \"Honeysuckle\": [\n        \"NNP\"\n    ], \n    \"Varo\": [\n        \"NNP\"\n    ], \n    \"handcrafted\": [\n        \"VBN\"\n    ], \n    \"category\": [\n        \"NN\"\n    ], \n    \"insupportable\": [\n        \"JJ\"\n    ], \n    \"Yankees-Mets\": [\n        \"JJ\"\n    ], \n    \"eight-mile-long\": [\n        \"JJ\"\n    ], \n    \"regular-season\": [\n        \"JJ\"\n    ], \n    \"flange\": [\n        \"NN\"\n    ], \n    \"nozzles\": [\n        \"NNS\"\n    ], \n    \"enlargement\": [\n        \"NN\"\n    ], \n    \"zero-gravity\": [\n        \"JJ\"\n    ], \n    \"Rooney\": [\n        \"NNP\"\n    ], \n    \"misgauged\": [\n        \"VBN\"\n    ], \n    \"Shatilov\": [\n        \"NNP\"\n    ], \n    \"astronomy\": [\n        \"NN\"\n    ], \n    \"Softer-than-expected\": [\n        \"JJ\"\n    ], \n    \"prevalent\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bulwark\": [\n        \"NN\"\n    ], \n    \"oral\": [\n        \"JJ\"\n    ], \n    \"Thus\": [\n        \"RB\"\n    ], \n    \"Acting-President\": [\n        \"NNP\"\n    ], \n    \"Thun\": [\n        \"NNP\"\n    ], \n    \"Munchen\": [\n        \"NNP\"\n    ], \n    \"meteoritic\": [\n        \"JJ\"\n    ], \n    \"Marinaro\": [\n        \"NNP\"\n    ], \n    \"Zero-coupon\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"thunderstorms\": [\n        \"NNS\"\n    ], \n    \"sweetening\": [\n        \"NN\"\n    ], \n    \"Packwood\": [\n        \"NNP\"\n    ], \n    \"legacies\": [\n        \"NNS\"\n    ], \n    \"levers\": [\n        \"NNS\"\n    ], \n    \"Coincidentally\": [\n        \"RB\"\n    ], \n    \"Mandina\": [\n        \"NNP\"\n    ], \n    \"assembles\": [\n        \"VBZ\"\n    ], \n    \"all-cash\": [\n        \"JJ\"\n    ], \n    \"yenta\": [\n        \"NN\"\n    ], \n    \"sleek\": [\n        \"JJ\"\n    ], \n    \"sleet\": [\n        \"NN\"\n    ], \n    \"sleep\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"winningest\": [\n        \"JJS\"\n    ], \n    \"assembled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"G7\": [\n        \"NNP\"\n    ], \n    \"feeding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"vile\": [\n        \"JJ\"\n    ], \n    \"expedients\": [\n        \"NNS\"\n    ], \n    \"Connoisseurs\": [\n        \"NNS\"\n    ], \n    \"Heimbold\": [\n        \"NNP\"\n    ], \n    \"Vernier\": [\n        \"NNP\"\n    ], \n    \"C-V\": [\n        \"NNP\"\n    ], \n    \"C-S\": [\n        \"NNP\"\n    ], \n    \"juice-storage\": [\n        \"JJ\"\n    ], \n    \"ordnance\": [\n        \"NN\"\n    ], \n    \"lure\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"GT\": [\n        \"NNP\"\n    ], \n    \"GS\": [\n        \"NNP\"\n    ], \n    \"Fremantle\": [\n        \"NNP\"\n    ], \n    \"incurs\": [\n        \"VBZ\"\n    ], \n    \"physician\": [\n        \"NN\"\n    ], \n    \"lurk\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"amorphous\": [\n        \"JJ\"\n    ], \n    \"Withhold\": [\n        \"VB\"\n    ], \n    \"GF\": [\n        \"NNP\"\n    ], \n    \"GE\": [\n        \"NNP\"\n    ], \n    \"GD\": [\n        \"NNP\"\n    ], \n    \"Willamette\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"GA\": [\n        \"NNP\"\n    ], \n    \"GO\": [\n        \"VB\"\n    ], \n    \"Scrooge-like\": [\n        \"JJ\"\n    ], \n    \"GL\": [\n        \"NNP\"\n    ], \n    \"fireplace\": [\n        \"NN\"\n    ], \n    \"GI\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"get-togethers\": [\n        \"NNS\"\n    ], \n    \"program-bashing\": [\n        \"JJ\"\n    ], \n    \"Campaign\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"sunk\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"water-proof\": [\n        \"JJ\"\n    ], \n    \"venue\": [\n        \"NN\"\n    ], \n    \"zing\": [\n        \"NNP\"\n    ], \n    \"admissible\": [\n        \"JJ\"\n    ], \n    \"Station\": [\n        \"NNP\"\n    ], \n    \"boy-name\": [\n        \"NN\"\n    ], \n    \"mid-March\": [\n        \"NNP\"\n    ], \n    \"Go\": [\n        \"VB\", \n        \"NNP\"\n    ], \n    \"smoky\": [\n        \"JJ\"\n    ], \n    \"Allegheny\": [\n        \"NNP\"\n    ], \n    \"Tenth\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Windsor\": [\n        \"NNP\"\n    ], \n    \"methane\": [\n        \"NN\"\n    ], \n    \"osmotic\": [\n        \"JJ\"\n    ], \n    \"in-and-outer\": [\n        \"NN\"\n    ], \n    \"Mitch\": [\n        \"NNP\"\n    ], \n    \"infancy\": [\n        \"NN\"\n    ], \n    \"razed\": [\n        \"VBN\"\n    ], \n    \"Taffner\": [\n        \"NNP\"\n    ], \n    \"Skypak\": [\n        \"NNP\"\n    ], \n    \"scrutinize\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"borrowings\": [\n        \"NNS\"\n    ], \n    \"Claude-Eric\": [\n        \"NNP\"\n    ], \n    \"voluminous\": [\n        \"JJ\"\n    ], \n    \"Harrington\": [\n        \"NNP\"\n    ], \n    \"profitability\": [\n        \"NN\"\n    ], \n    \"sulphurous\": [\n        \"JJ\"\n    ], \n    \"steriles\": [\n        \"NNS\"\n    ], \n    \"Barenholtz\": [\n        \"NNP\"\n    ], \n    \"tile-roofed\": [\n        \"JJ\"\n    ], \n    \"frizzled\": [\n        \"JJ\"\n    ], \n    \"seeks\": [\n        \"VBZ\"\n    ], \n    \"Marche\": [\n        \"NNP\"\n    ], \n    \"Barbanell\": [\n        \"NNP\"\n    ], \n    \"six-gallon\": [\n        \"JJ\"\n    ], \n    \"digits\": [\n        \"NNS\"\n    ], \n    \"Wortham\": [\n        \"NNP\"\n    ], \n    \"davenport\": [\n        \"NN\"\n    ], \n    \"changed\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"nut-house\": [\n        \"NN\"\n    ], \n    \"Rendering\": [\n        \"VBG\"\n    ], \n    \"donning\": [\n        \"VBG\"\n    ], \n    \"gastro-intestinal\": [\n        \"JJ\"\n    ], \n    \"card-member\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"changes\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Peeter\": [\n        \"NNP\"\n    ], \n    \"glinted\": [\n        \"VBD\"\n    ], \n    \"blowtorch\": [\n        \"NN\"\n    ], \n    \"yukked\": [\n        \"VBD\"\n    ], \n    \"iconoclasm\": [\n        \"NN\"\n    ], \n    \"Boxes\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Decrying\": [\n        \"VBG\"\n    ], \n    \"iconoclast\": [\n        \"NN\"\n    ], \n    \"Baily\": [\n        \"NNP\"\n    ], \n    \"joint-research\": [\n        \"JJ\"\n    ], \n    \"punching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Cole\": [\n        \"NNP\"\n    ], \n    \"forums\": [\n        \"NNS\"\n    ], \n    \"anyhow\": [\n        \"RB\"\n    ], \n    \"ebony\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mini-doll\": [\n        \"NN\"\n    ], \n    \"L-5-vinyl-2-thio-oxazolidone\": [\n        \"NN\"\n    ], \n    \"fire-fighting\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"omits\": [\n        \"VBZ\"\n    ], \n    \"scaffolding\": [\n        \"NN\"\n    ], \n    \"oil-poor\": [\n        \"JJ\"\n    ], \n    \"wordplay\": [\n        \"NN\"\n    ], \n    \"phenomenological\": [\n        \"JJ\"\n    ], \n    \"asses\": [\n        \"NNS\"\n    ], \n    \"racketeer\": [\n        \"NN\"\n    ], \n    \"asset\": [\n        \"NN\"\n    ], \n    \"slaughtered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"musk\": [\n        \"NN\"\n    ], \n    \"mush\": [\n        \"NN\"\n    ], \n    \"ensnared\": [\n        \"VBN\"\n    ], \n    \"naive\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"M.P.\": [\n        \"NNP\"\n    ], \n    \"Askington\": [\n        \"NNP\"\n    ], \n    \"muse\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"brushy\": [\n        \"JJ\"\n    ], \n    \"committeewoman\": [\n        \"NN\"\n    ], \n    \"Pasatieri\": [\n        \"NNP\"\n    ], \n    \"pinching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"arms\": [\n        \"NNS\"\n    ], \n    \"Fernandes\": [\n        \"NNP\"\n    ], \n    \"adjourn\": [\n        \"VB\"\n    ], \n    \"pouch\": [\n        \"NN\"\n    ], \n    \"Fernandez\": [\n        \"NNP\"\n    ], \n    \"must\": [\n        \"MD\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Claim\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Oakbrook\": [\n        \"NNP\"\n    ], \n    \"ratifiers\": [\n        \"NNS\"\n    ], \n    \"cancellations\": [\n        \"NNS\"\n    ], \n    \"Cichan\": [\n        \"NNP\"\n    ], \n    \"counterflow\": [\n        \"NN\"\n    ], \n    \"Muhammad\": [\n        \"NNP\"\n    ], \n    \"Baptists\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"hypermarket\": [\n        \"NN\"\n    ], \n    \"pavements\": [\n        \"NNS\"\n    ], \n    \"appraisal\": [\n        \"NN\"\n    ], \n    \"Clair\": [\n        \"NNP\"\n    ], \n    \"tugged\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"turnips\": [\n        \"NNS\"\n    ], \n    \"Liberty-and-Union\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"scheduling\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Huey\": [\n        \"NNP\"\n    ], \n    \"quick-fired\": [\n        \"VBN\"\n    ], \n    \"unmeasurable\": [\n        \"JJ\"\n    ], \n    \"thoriated\": [\n        \"VBN\"\n    ], \n    \"Deli\": [\n        \"NNP\"\n    ], \n    \"bunk\": [\n        \"NN\"\n    ], \n    \"intruders\": [\n        \"NNS\"\n    ], \n    \"gentian\": [\n        \"NN\"\n    ], \n    \"grammatically\": [\n        \"RB\"\n    ], \n    \"bunt\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"adjacent\": [\n        \"JJ\"\n    ], \n    \"iconoclastic\": [\n        \"JJ\"\n    ], \n    \"swiftness\": [\n        \"NN\"\n    ], \n    \"nonsingular\": [\n        \"JJ\"\n    ], \n    \"pre-approved\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"predicated\": [\n        \"VBN\"\n    ], \n    \"Oooo\": [\n        \"UH\"\n    ], \n    \"Yorker\": [\n        \"NNP\"\n    ], \n    \"predicates\": [\n        \"NNS\"\n    ], \n    \"spectrometer\": [\n        \"NN\"\n    ], \n    \"burly\": [\n        \"JJ\"\n    ], \n    \"rummy\": [\n        \"NN\"\n    ], \n    \"mourned\": [\n        \"VBD\"\n    ], \n    \"self-ordained\": [\n        \"JJ\"\n    ], \n    \"Gradco\": [\n        \"NNP\"\n    ], \n    \"transcultural\": [\n        \"JJ\"\n    ], \n    \"hypnotic\": [\n        \"JJ\"\n    ], \n    \"Del.\": [\n        \"NNP\"\n    ], \n    \"hypotheses\": [\n        \"NNS\"\n    ], \n    \"spun-off\": [\n        \"JJ\"\n    ], \n    \"narcos\": [\n        \"NNS\"\n    ], \n    \"Podell\": [\n        \"NNP\"\n    ], \n    \"air-frame\": [\n        \"NN\"\n    ], \n    \"Sterilized\": [\n        \"JJ\"\n    ], \n    \"Irene\": [\n        \"NNP\"\n    ], \n    \"post-census\": [\n        \"NN\"\n    ], \n    \"heart-warming\": [\n        \"JJ\"\n    ], \n    \"Zapata\": [\n        \"NNP\"\n    ], \n    \"bricklaying\": [\n        \"NN\"\n    ], \n    \"bleach\": [\n        \"NN\"\n    ], \n    \"tapdance\": [\n        \"NN\"\n    ], \n    \"expects\": [\n        \"VBZ\"\n    ], \n    \"Montgomery\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"reorient\": [\n        \"VB\"\n    ], \n    \"Publicis\": [\n        \"NNP\"\n    ], \n    \"SharesBase\": [\n        \"NNP\"\n    ], \n    \"frightfully\": [\n        \"RB\"\n    ], \n    \"carnal\": [\n        \"JJ\"\n    ], \n    \"caster\": [\n        \"NN\"\n    ], \n    \"talkative\": [\n        \"JJ\"\n    ], \n    \"digest\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Addison\": [\n        \"NNP\"\n    ], \n    \"Simplesse\": [\n        \"NNP\"\n    ], \n    \"Dorr\": [\n        \"NNP\"\n    ], \n    \"fairway\": [\n        \"NN\"\n    ], \n    \"writing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"replay\": [\n        \"NN\"\n    ], \n    \"edits\": [\n        \"VBZ\"\n    ], \n    \"Dora\": [\n        \"NNP\"\n    ], \n    \"internal-security\": [\n        \"NN\"\n    ], \n    \"stifling\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Institutional-type\": [\n        \"JJ\"\n    ], \n    \"tantalized\": [\n        \"VBN\"\n    ], \n    \"appoint\": [\n        \"VB\"\n    ], \n    \"Reveals\": [\n        \"VBZ\"\n    ], \n    \"ten-day\": [\n        \"JJ\"\n    ], \n    \"Strasser\": [\n        \"NNP\"\n    ], \n    \"Reserves\": [\n        \"NNS\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"JAL\": [\n        \"NNP\"\n    ], \n    \"publicizing\": [\n        \"VBG\"\n    ], \n    \"plates\": [\n        \"NNS\"\n    ], \n    \"Carballo\": [\n        \"NNP\"\n    ], \n    \"flight-attendant\": [\n        \"NN\"\n    ], \n    \"JAC\": [\n        \"NNP\"\n    ], \n    \"Winsett\": [\n        \"NNP\"\n    ], \n    \"obligingly\": [\n        \"RB\"\n    ], \n    \"indictment\": [\n        \"NN\"\n    ], \n    \"indeed\": [\n        \"RB\", \n        \"UH\"\n    ], \n    \"privileging\": [\n        \"VBG\"\n    ], \n    \"Radnor\": [\n        \"NNP\"\n    ], \n    \"explode\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"holdin\": [\n        \"VBG\"\n    ], \n    \"Adjustment\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Transport\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"factory-automation\": [\n        \"NN\"\n    ], \n    \"USDA-sponsored\": [\n        \"JJ\"\n    ], \n    \"constipation\": [\n        \"NN\"\n    ], \n    \"Duncan\": [\n        \"NNP\"\n    ], \n    \"Advil\": [\n        \"NNP\"\n    ], \n    \"unscrew\": [\n        \"VB\"\n    ], \n    \"production-rate\": [\n        \"JJ\"\n    ], \n    \"Anyone\": [\n        \"NN\"\n    ], \n    \"celebrating\": [\n        \"VBG\"\n    ], \n    \"Copying\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Hatch\": [\n        \"NNP\"\n    ], \n    \"Duchenne\": [\n        \"NNP\"\n    ], \n    \"COCA-COLA\": [\n        \"NNP\"\n    ], \n    \"hand-painted\": [\n        \"NN\"\n    ], \n    \"reused\": [\n        \"VBN\"\n    ], \n    \"Netherland\": [\n        \"NNP\"\n    ], \n    \"iodothyronines\": [\n        \"NNS\"\n    ], \n    \"driving\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Marguerite\": [\n        \"NNP\"\n    ], \n    \"emphysema\": [\n        \"NN\"\n    ], \n    \"bonnets\": [\n        \"NNS\"\n    ], \n    \"horsehair\": [\n        \"NN\"\n    ], \n    \"knock-offs\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"abortion-related\": [\n        \"JJ\"\n    ], \n    \"Toasting\": [\n        \"VBG\"\n    ], \n    \"Junior\": [\n        \"JJ\", \n        \"NNP\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"perception\": [\n        \"NN\"\n    ], \n    \"hemorrhaging\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"rail\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Carreon\": [\n        \"NNP\"\n    ], \n    \"Gothicism\": [\n        \"NNP\"\n    ], \n    \"Roth\": [\n        \"NNP\"\n    ], \n    \"untruth\": [\n        \"NN\"\n    ], \n    \"whereupon\": [\n        \"IN\"\n    ], \n    \"non-airline\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"weeked\": [\n        \"NN\"\n    ], \n    \"superimpose\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Carleton\": [\n        \"NNP\"\n    ], \n    \"fret\": [\n        \"VBP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Mickey\": [\n        \"NNP\"\n    ], \n    \"Vic\": [\n        \"NNP\"\n    ], \n    \"Via\": [\n        \"NNP\"\n    ], \n    \"anthropomorphic\": [\n        \"JJ\"\n    ], \n    \"equine\": [\n        \"NN\"\n    ], \n    \"non-color\": [\n        \"NN\"\n    ], \n    \"Vie\": [\n        \"NNP\"\n    ], \n    \"imperfectability\": [\n        \"NN\"\n    ], \n    \"mega-hit\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Centre\": [\n        \"NNP\"\n    ], \n    \"foibles\": [\n        \"NNS\"\n    ], \n    \"Hotline\": [\n        \"NNP\"\n    ], \n    \"stabilizing-conserving\": [\n        \"JJ\"\n    ], \n    \"corrections\": [\n        \"NNS\"\n    ], \n    \"out-of-repair\": [\n        \"NN\"\n    ], \n    \"inspectors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"narratives\": [\n        \"NNS\"\n    ], \n    \"tetrasodium\": [\n        \"NN\"\n    ], \n    \"gazelle\": [\n        \"NN\"\n    ], \n    \"Rheinholdt\": [\n        \"NNP\"\n    ], \n    \"Borghese\": [\n        \"NNP\"\n    ], \n    \"Outreach\": [\n        \"NNP\"\n    ], \n    \"philosophical\": [\n        \"JJ\"\n    ], \n    \"decorticated\": [\n        \"VBN\"\n    ], \n    \"Delon\": [\n        \"NNP\"\n    ], \n    \"Haworth\": [\n        \"NNP\"\n    ], \n    \"scissors\": [\n        \"NNS\"\n    ], \n    \"Poorer\": [\n        \"JJR\"\n    ], \n    \"blunts\": [\n        \"VBZ\"\n    ], \n    \"withheld\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"minaces\": [\n        \"NNS\"\n    ], \n    \"revival\": [\n        \"NN\"\n    ], \n    \"Pitcher\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"greedily\": [\n        \"RB\"\n    ], \n    \"staminate\": [\n        \"JJ\"\n    ], \n    \"kinder\": [\n        \"JJR\"\n    ], \n    \"meanders\": [\n        \"VBZ\"\n    ], \n    \"militancy\": [\n        \"NN\"\n    ], \n    \"duress\": [\n        \"NN\"\n    ], \n    \"consented\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"montmorillonites\": [\n        \"NNS\"\n    ], \n    \"centered\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"conspicuously\": [\n        \"RB\"\n    ], \n    \"cross-fertilized\": [\n        \"VBN\"\n    ], \n    \"baroreceptor\": [\n        \"NN\"\n    ], \n    \"injected\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"kept\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Georg\": [\n        \"NNP\"\n    ], \n    \"mercifully\": [\n        \"RB\"\n    ], \n    \"expressionists\": [\n        \"NNS\"\n    ], \n    \"Minn\": [\n        \"NNP\"\n    ], \n    \"Previewing\": [\n        \"VBG\"\n    ], \n    \"nonperforming\": [\n        \"JJ\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"nominate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Confession\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"reconstructing\": [\n        \"VBG\"\n    ], \n    \"preceeding\": [\n        \"VBG\"\n    ], \n    \"diuretic\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"screenplay\": [\n        \"NN\"\n    ], \n    \"peace-treaty\": [\n        \"NN\"\n    ], \n    \"Pierluigi\": [\n        \"NNP\"\n    ], \n    \"skinless\": [\n        \"JJ\"\n    ], \n    \"taint\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"interest-rate-type\": [\n        \"JJ\"\n    ], \n    \"laugher\": [\n        \"NN\"\n    ], \n    \"catastrophic-illness\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Asians\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"relayed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"reminding\": [\n        \"VBG\"\n    ], \n    \"isolated\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Self-criticism\": [\n        \"NN\"\n    ], \n    \"cotillion\": [\n        \"NN\"\n    ], \n    \"laughed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"isolates\": [\n        \"VBZ\"\n    ], \n    \"Gave\": [\n        \"VBD\"\n    ], \n    \"rides\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rider\": [\n        \"NN\"\n    ], \n    \"go-to-war\": [\n        \"JJ\"\n    ], \n    \"married-put\": [\n        \"JJ\"\n    ], \n    \"Burling\": [\n        \"NNP\"\n    ], \n    \"Reports\": [\n        \"NNS\", \n        \"VBZ\", \n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"Prototypes\": [\n        \"NNS\"\n    ], \n    \"Ashley\": [\n        \"NNP\"\n    ], \n    \"absentee-ballot\": [\n        \"NN\"\n    ], \n    \"delousing\": [\n        \"VBG\"\n    ], \n    \"glop\": [\n        \"NN\"\n    ], \n    \"genital\": [\n        \"JJ\"\n    ], \n    \"inexcusable\": [\n        \"JJ\"\n    ], \n    \"illogical\": [\n        \"JJ\"\n    ], \n    \"radical-moderate\": [\n        \"JJ\"\n    ], \n    \"crazing\": [\n        \"VBG\"\n    ], \n    \"Gerstner\": [\n        \"NNP\"\n    ], \n    \"WFAA-TV\": [\n        \"NNP\"\n    ], \n    \"stale-cigarette\": [\n        \"NN\"\n    ], \n    \"tool-and-die\": [\n        \"JJ\"\n    ], \n    \"Cleary\": [\n        \"NNP\"\n    ], \n    \"freeway\": [\n        \"NN\"\n    ], \n    \"Rooms\": [\n        \"NNS\"\n    ], \n    \"after-tax\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Aeritalia\": [\n        \"NNP\"\n    ], \n    \"Dyke\": [\n        \"NNP\"\n    ], \n    \"Ku\": [\n        \"NNP\"\n    ], \n    \"pope\": [\n        \"NN\"\n    ], \n    \"seven-fold\": [\n        \"JJ\"\n    ], \n    \"aromatics\": [\n        \"NNS\"\n    ], \n    \"mishandling\": [\n        \"VBG\"\n    ], \n    \"queen\": [\n        \"NN\"\n    ], \n    \"pops\": [\n        \"VBZ\"\n    ], \n    \"little-understood\": [\n        \"JJ\"\n    ], \n    \"worthiest\": [\n        \"JJS\"\n    ], \n    \"queer\": [\n        \"JJ\"\n    ], \n    \"Saxton\": [\n        \"NNP\"\n    ], \n    \"earth\": [\n        \"NN\"\n    ], \n    \"circumvent...\": [\n        \":\"\n    ], \n    \"Flushing-Main\": [\n        \"NNP\"\n    ], \n    \"curricular\": [\n        \"JJ\"\n    ], \n    \"square\": [\n        \"NN\", \n        \"JJ\", \n        \"RB\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"commence\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"commandment\": [\n        \"NN\"\n    ], \n    \"carbon-monoxide\": [\n        \"NN\"\n    ], \n    \"Piepsam\": [\n        \"NNP\"\n    ], \n    \"enslave\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"Knit\": [\n        \"VB\"\n    ], \n    \"E-Z\": [\n        \"JJ\"\n    ], \n    \"squeaking\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Chiodo\": [\n        \"NNP\"\n    ], \n    \"Molson\": [\n        \"NNP\"\n    ], \n    \"Wendler\": [\n        \"NNP\"\n    ], \n    \"Kiefferm\": [\n        \"NNP\"\n    ], \n    \"amusement\\\\/theme\": [\n        \"NN\"\n    ], \n    \"Grauer\": [\n        \"NNP\"\n    ], \n    \"uhhu\": [\n        \"UH\"\n    ], \n    \"hobbing\": [\n        \"VBG\"\n    ], \n    \"dumpsters\": [\n        \"NNS\"\n    ], \n    \"CalMat\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hochiminh\": [\n        \"NNP\"\n    ], \n    \"rowing\": [\n        \"NN\"\n    ], \n    \"collusion\": [\n        \"NN\"\n    ], \n    \"licking\": [\n        \"VBG\"\n    ], \n    \"Duarte\": [\n        \"NNP\"\n    ], \n    \"CLAIMANTS\": [\n        \"NNS\"\n    ], \n    \"DeShano\": [\n        \"NNP\"\n    ], \n    \"large-scale\": [\n        \"JJ\"\n    ], \n    \"Merkur\": [\n        \"NNP\"\n    ], \n    \"Hanaspur\": [\n        \"NNP\"\n    ], \n    \"SS-20s\": [\n        \"NNPS\"\n    ], \n    \"Hammett\": [\n        \"NNP\"\n    ], \n    \"two-family\": [\n        \"JJ\"\n    ], \n    \"Duracell\": [\n        \"NNP\"\n    ], \n    \"Esquivel\": [\n        \"NNP\"\n    ], \n    \"sectionalized\": [\n        \"JJ\"\n    ], \n    \"richer\": [\n        \"JJR\"\n    ], \n    \"gigolo\": [\n        \"NN\"\n    ], \n    \"sporadic\": [\n        \"JJ\"\n    ], \n    \"performing-arts\": [\n        \"NNS\"\n    ], \n    \"temptation\": [\n        \"NN\"\n    ], \n    \"Radarange\": [\n        \"NN\"\n    ], \n    \"tongue-thrusting\": [\n        \"NN\"\n    ], \n    \"Lotteries\": [\n        \"NNS\"\n    ], \n    \"machinists\": [\n        \"NNS\"\n    ], \n    \"price-weakening\": [\n        \"NN\"\n    ], \n    \"startle\": [\n        \"VB\"\n    ], \n    \"Fallon\": [\n        \"NNP\"\n    ], \n    \"ground-support\": [\n        \"JJ\"\n    ], \n    \"abstractionists\": [\n        \"NNS\"\n    ], \n    \"cajun\": [\n        \"JJ\"\n    ], \n    \"Pinnacle\": [\n        \"NNP\"\n    ], \n    \"bargains\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"oxidation\": [\n        \"NN\"\n    ], \n    \"Seaquarium\": [\n        \"NNP\"\n    ], \n    \"pegboards\": [\n        \"NNS\"\n    ], \n    \"brooked\": [\n        \"VBD\"\n    ], \n    \"dedication\": [\n        \"NN\"\n    ], \n    \"Weidenfeld\": [\n        \"NNP\"\n    ], \n    \"yearago\": [\n        \"JJ\"\n    ], \n    \"faced\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"alter-parents\": [\n        \"NNS\"\n    ], \n    \"abasement\": [\n        \"NN\"\n    ], \n    \"Workstations\": [\n        \"NNS\"\n    ], \n    \"rightward\": [\n        \"JJ\"\n    ], \n    \"Contribute\": [\n        \"VB\"\n    ], \n    \"jelly\": [\n        \"NN\"\n    ], \n    \"facet\": [\n        \"NN\"\n    ], \n    \"players\": [\n        \"NNS\"\n    ], \n    \"Contact\": [\n        \"NN\", \n        \"NNP\", \n        \"VB\"\n    ], \n    \"straw-hat\": [\n        \"JJ\"\n    ], \n    \"faces\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"hypocrites\": [\n        \"NNS\"\n    ], \n    \"indoctrinating\": [\n        \"NN\"\n    ], \n    \"nook\": [\n        \"NN\"\n    ], \n    \"Freeport-McMoRan\": [\n        \"NNP\"\n    ], \n    \"pay-for-performance\": [\n        \"JJ\"\n    ], \n    \"luncheon-table\": [\n        \"JJ\"\n    ], \n    \"confide\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"betting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"governmental-affairs\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"dabbles\": [\n        \"VBZ\"\n    ], \n    \"cholelithiasis\": [\n        \"NN\"\n    ], \n    \"Samples\": [\n        \"NNS\"\n    ], \n    \"dabbler\": [\n        \"NN\"\n    ], \n    \"Geatish\": [\n        \"JJ\"\n    ], \n    \"redistributive\": [\n        \"JJ\"\n    ], \n    \"comical\": [\n        \"JJ\"\n    ], \n    \"bathroom\": [\n        \"NN\"\n    ], \n    \"Jack-an-Apes\": [\n        \"NN\"\n    ], \n    \"jobless\": [\n        \"JJ\"\n    ], \n    \"Predicting\": [\n        \"VBG\"\n    ], \n    \"Renfrew\": [\n        \"NNP\"\n    ], \n    \"John-and-Linda\": [\n        \"NNP\"\n    ], \n    \"confident\": [\n        \"JJ\"\n    ], \n    \"spread\": [\n        \"NN\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"hillbilly\": [\n        \"NN\"\n    ], \n    \"Minneapolis-based\": [\n        \"JJ\"\n    ], \n    \"Shegog\": [\n        \"NNP\"\n    ], \n    \"Glenbrook\": [\n        \"NNP\"\n    ], \n    \"Nationale\": [\n        \"NNP\"\n    ], \n    \"affixed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"bible\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Cowen\": [\n        \"NNP\"\n    ], \n    \"catch\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Johanson\": [\n        \"NNP\"\n    ], \n    \"Cross-border\": [\n        \"JJ\"\n    ], \n    \"Klaus\": [\n        \"NNP\"\n    ], \n    \"greeters\": [\n        \"NNS\"\n    ], \n    \"Deland\": [\n        \"NNP\"\n    ], \n    \"bingo-like\": [\n        \"JJ\"\n    ], \n    \"yellin\": [\n        \"NN\"\n    ], \n    \"cracker\": [\n        \"NN\"\n    ], \n    \"inviolable\": [\n        \"JJ\"\n    ], \n    \"Schoeppner\": [\n        \"NNP\"\n    ], \n    \"strangest\": [\n        \"JJS\"\n    ], \n    \"Wash\": [\n        \"NNP\"\n    ], \n    \"subjugate\": [\n        \"VB\"\n    ], \n    \"cracked\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"transfering\": [\n        \"VBG\"\n    ], \n    \"precede\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"horse-meat\": [\n        \"NN\"\n    ], \n    \"Aril\": [\n        \"NNP\"\n    ], \n    \"Edelstein\": [\n        \"NNP\"\n    ], \n    \"Outplacement\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Ariz\": [\n        \"NNP\"\n    ], \n    \"lasciviously\": [\n        \"RB\"\n    ], \n    \"Chipmunks\": [\n        \"NNPS\"\n    ], \n    \"Historically\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"Schultz\": [\n        \"NNP\"\n    ], \n    \"balletomane\": [\n        \"NN\"\n    ], \n    \"profiteers\": [\n        \"NNS\"\n    ], \n    \"Obermaier\": [\n        \"NNP\"\n    ], \n    \"Har-Lev\": [\n        \"NNP\"\n    ], \n    \"outface\": [\n        \"VB\"\n    ], \n    \"Snoopy\": [\n        \"NNP\"\n    ], \n    \"intercom\": [\n        \"NN\"\n    ], \n    \"forefeet\": [\n        \"NN\"\n    ], \n    \"heeded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Vacancies\": [\n        \"NNS\"\n    ], \n    \"Schulte\": [\n        \"NNP\"\n    ], \n    \"Sweet-scented\": [\n        \"JJ\"\n    ], \n    \"Room\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"A.H.\": [\n        \"NNP\"\n    ], \n    \"purposely\": [\n        \"RB\"\n    ], \n    \"Petrossian\": [\n        \"NNP\"\n    ], \n    \"Casca\": [\n        \"NN\"\n    ], \n    \"Roof\": [\n        \"NNP\"\n    ], \n    \"Latvia\": [\n        \"NNP\"\n    ], \n    \"Audubon\": [\n        \"NNP\"\n    ], \n    \"Roos\": [\n        \"NNP\"\n    ], \n    \"Root\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"cycle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"censures\": [\n        \"NNS\"\n    ], \n    \"Gates\": [\n        \"NNP\"\n    ], \n    \"hearth\": [\n        \"NN\"\n    ], \n    \"Patrol\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"incredulity\": [\n        \"NN\"\n    ], \n    \"neurologists\": [\n        \"NNS\"\n    ], \n    \"Apartments\": [\n        \"NNP\"\n    ], \n    \"Alton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"frankest\": [\n        \"JJS\"\n    ], \n    \"Lockian\": [\n        \"JJ\"\n    ], \n    \"hearty\": [\n        \"JJ\"\n    ], \n    \"detained\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"censured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"hearts\": [\n        \"NNS\"\n    ], \n    \"Mobil\": [\n        \"NNP\"\n    ], \n    \"guitar-strumming\": [\n        \"VBG\"\n    ], \n    \"outnumbered\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"whimsical\": [\n        \"JJ\"\n    ], \n    \"Angleterre\": [\n        \"FW\"\n    ], \n    \"beggar-thy-neighbor\": [\n        \"JJ\"\n    ], \n    \"motherless\": [\n        \"JJ\"\n    ], \n    \"stand-by\": [\n        \"JJ\"\n    ], \n    \"non-Federal\": [\n        \"JJ\"\n    ], \n    \"pyknotic\": [\n        \"JJ\"\n    ], \n    \"Janus-faced\": [\n        \"JJ\"\n    ], \n    \"pseudo-Kennedyism\": [\n        \"NN\"\n    ], \n    \"tattle-tale\": [\n        \"NN\"\n    ], \n    \"Spec.\": [\n        \"NN\"\n    ], \n    \"bagel\": [\n        \"NN\"\n    ], \n    \"Kryuchkov\": [\n        \"NNP\"\n    ], \n    \"IOU\": [\n        \"NNP\"\n    ], \n    \"Krug\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"IOS\": [\n        \"NNP\"\n    ], \n    \"exempting\": [\n        \"VBG\"\n    ], \n    \"guidepost\": [\n        \"NN\"\n    ], \n    \"NICHOLS\": [\n        \"NNP\"\n    ], \n    \"conjur\": [\n        \"NN\"\n    ], \n    \"pitiful\": [\n        \"JJ\"\n    ], \n    \"reversal\": [\n        \"NN\"\n    ], \n    \"EXPENSIVE\": [\n        \"JJ\"\n    ], \n    \"Krishna\": [\n        \"NNP\"\n    ], \n    \"submissive\": [\n        \"JJ\"\n    ], \n    \"blood-lust\": [\n        \"NN\"\n    ], \n    \"casting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"accede\": [\n        \"VB\"\n    ], \n    \"Handstands\": [\n        \"NNS\"\n    ], \n    \"advancer\": [\n        \"NN\"\n    ], \n    \"advances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"right-wing\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"bungling\": [\n        \"VBG\"\n    ], \n    \"wrong-o\": [\n        \"NN\"\n    ], \n    \"toadying\": [\n        \"JJ\"\n    ], \n    \"slanders\": [\n        \"NNS\"\n    ], \n    \"defense-suppression\": [\n        \"NN\"\n    ], \n    \"convalescing\": [\n        \"VBG\"\n    ], \n    \"spawns\": [\n        \"VBZ\"\n    ], \n    \"advanced\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"VBN|VBD\"\n    ], \n    \"executive-office\": [\n        \"NN\"\n    ], \n    \"when-issued\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Garrick-Aug\": [\n        \"NNP\"\n    ], \n    \"Wilberforce\": [\n        \"NNP\"\n    ], \n    \"Lys\": [\n        \"NNP\"\n    ], \n    \"Kenmore\": [\n        \"NNP\"\n    ], \n    \"gifted\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"near-equivalents\": [\n        \"NNS\"\n    ], \n    \"unsuspecting\": [\n        \"JJ\"\n    ], \n    \"informative\": [\n        \"JJ\"\n    ], \n    \"liquid-nitrogen\": [\n        \"NN\"\n    ], \n    \"Shemona\": [\n        \"NNP\"\n    ], \n    \"diaphanous\": [\n        \"JJ\"\n    ], \n    \"Cascades\": [\n        \"NNP\"\n    ], \n    \"Lyn\": [\n        \"NNP\"\n    ], \n    \"nuclear-arms\": [\n        \"NNS\"\n    ], \n    \"Badges\": [\n        \"NNS\"\n    ], \n    \"Horsely\": [\n        \"NNP\"\n    ], \n    \"rodding\": [\n        \"NN\"\n    ], \n    \"deWindt\": [\n        \"NNP\"\n    ], \n    \"headlinese\": [\n        \"NN\"\n    ], \n    \"Casassa\": [\n        \"NNP\"\n    ], \n    \"Euro-caps\": [\n        \"NNS\"\n    ], \n    \"intellect\": [\n        \"NN\"\n    ], \n    \"op-ed\": [\n        \"JJ\"\n    ], \n    \"Malignant\": [\n        \"NN\"\n    ], \n    \"tristate\": [\n        \"JJ\"\n    ], \n    \"exhausts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"FIRST-TIME\": [\n        \"JJ\"\n    ], \n    \"centre\": [\n        \"NN\"\n    ], \n    \"skinnin\": [\n        \"NN\"\n    ], \n    \"Namibian-independence\": [\n        \"NN\"\n    ], \n    \"jalopy\": [\n        \"NN\"\n    ], \n    \"precedent-based\": [\n        \"JJ\"\n    ], \n    \"polyisobutylene\": [\n        \"NN\"\n    ], \n    \"Somay\": [\n        \"NNP\"\n    ], \n    \"convict\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"baklava\": [\n        \"NN\"\n    ], \n    \"Astec\": [\n        \"NNP\"\n    ], \n    \"Scull\": [\n        \"NNP\"\n    ], \n    \"Syracuse\": [\n        \"NNP\"\n    ], \n    \"Yiren\": [\n        \"NNP\"\n    ], \n    \"arbitrated\": [\n        \"VBN\"\n    ], \n    \"feted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"jejune\": [\n        \"JJ\"\n    ], \n    \"dropped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Greenstein\": [\n        \"NNP\"\n    ], \n    \"Titanic\": [\n        \"NNP\"\n    ], \n    \"Monieson\": [\n        \"NNP\"\n    ], \n    \"reassign\": [\n        \"VB\"\n    ], \n    \"Revell\": [\n        \"NNP\"\n    ], \n    \"fetes\": [\n        \"NNS\"\n    ], \n    \"arbitrates\": [\n        \"VBZ\"\n    ], \n    \"mooncursers\": [\n        \"NNS\"\n    ], \n    \"endorsing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"playroom\": [\n        \"NN\"\n    ], \n    \"Fair\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Castro-held\": [\n        \"JJ\"\n    ], \n    \"Seats\": [\n        \"NNS\"\n    ], \n    \"calculating\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Fain\": [\n        \"NNP\"\n    ], \n    \"Birds\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"respondent\": [\n        \"NN\"\n    ], \n    \"puzzle\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Messaggero\": [\n        \"NNP\"\n    ], \n    \"uncontrolled\": [\n        \"JJ\"\n    ], \n    \"entrepreneur\": [\n        \"NN\"\n    ], \n    \"finely\": [\n        \"RB\"\n    ], \n    \"Meriden\": [\n        \"NNP\"\n    ], \n    \"fuselage\": [\n        \"NN\"\n    ], \n    \"Profitt\": [\n        \"NNP\"\n    ], \n    \"impartiality\": [\n        \"NN\"\n    ], \n    \"rounds\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"EWDB\": [\n        \"NNP\"\n    ], \n    \"Abraham\": [\n        \"NNP\"\n    ], \n    \"Karpov\": [\n        \"NNP\"\n    ], \n    \"Jew-baiter\": [\n        \"NN\"\n    ], \n    \"Puttnam\": [\n        \"NNP\"\n    ], \n    \"forbad\": [\n        \"VBD\"\n    ], \n    \"Herberet\": [\n        \"NNP\"\n    ], \n    \"Horne\": [\n        \"NNP\"\n    ], \n    \"prayerbooks\": [\n        \"NNS\"\n    ], \n    \"dank\": [\n        \"JJ\"\n    ], \n    \"Todman\": [\n        \"NNP\"\n    ], \n    \"of...\": [\n        \":\"\n    ], \n    \"Maryville\": [\n        \"NNP\"\n    ], \n    \"visitation\": [\n        \"NN\"\n    ], \n    \"Pauley\": [\n        \"NNP\"\n    ], \n    \"underperformance\": [\n        \"NN\"\n    ], \n    \"triple-B-plus\": [\n        \"JJ\", \n        \"NNP\", \n        \"NN\"\n    ], \n    \"underreacting\": [\n        \"VBG\"\n    ], \n    \"solar\": [\n        \"JJ\"\n    ], \n    \"boogieman\": [\n        \"NN\"\n    ], \n    \"widgets\": [\n        \"NNS\"\n    ], \n    \"plumps\": [\n        \"VBZ\"\n    ], \n    \"Salted\": [\n        \"JJ\"\n    ], \n    \"viva\": [\n        \"FW\", \n        \"NN\"\n    ], \n    \"admiration\": [\n        \"NN\"\n    ], \n    \"Negligence\": [\n        \"NN\"\n    ], \n    \"Interlink\": [\n        \"NNP\"\n    ], \n    \"Gosset\": [\n        \"NNP\"\n    ], \n    \"vivo\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"wipes\": [\n        \"VBZ\"\n    ], \n    \"prematurely\": [\n        \"RB\"\n    ], \n    \"latch\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"over-capacity\": [\n        \"NN\"\n    ], \n    \"Indonesians\": [\n        \"NNPS\"\n    ], \n    \"Shriver\": [\n        \"NNP\"\n    ], \n    \"impropriety\": [\n        \"NN\"\n    ], \n    \"front-line\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Introduction\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Caught\": [\n        \"VBN\"\n    ], \n    \"cop\": [\n        \"NN\"\n    ], \n    \"Furukawa\": [\n        \"NNP\"\n    ], \n    \"pawing\": [\n        \"VBG\"\n    ], \n    \"per-capita\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"despotism\": [\n        \"NN\"\n    ], \n    \"Micron\": [\n        \"NNP\"\n    ], \n    \"Melissa\": [\n        \"NNP\"\n    ], \n    \"Berne\": [\n        \"NNP\"\n    ], \n    \"blatantly\": [\n        \"RB\"\n    ], \n    \"radioed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"radically\": [\n        \"RB\"\n    ], \n    \"upheaval\": [\n        \"NN\"\n    ], \n    \"Tatras\": [\n        \"NNS\"\n    ], \n    \"right-angled\": [\n        \"JJ\"\n    ], \n    \"vanishes\": [\n        \"VBZ\"\n    ], \n    \"signal-to-noise\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"luscious\": [\n        \"JJ\"\n    ], \n    \"Thalmann\": [\n        \"NNP\"\n    ], \n    \"Colorado-Ute\": [\n        \"NNP\"\n    ], \n    \"vanished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"depot\": [\n        \"NN\"\n    ], \n    \"hand-filed\": [\n        \"JJ\"\n    ], \n    \"anti-extortion\": [\n        \"NN\"\n    ], \n    \"eternity\": [\n        \"NN\"\n    ], \n    \"permitting\": [\n        \"VBG\"\n    ], \n    \"nuance\": [\n        \"NN\"\n    ], \n    \"KLA\": [\n        \"NNP\"\n    ], \n    \"Scandanavian\": [\n        \"JJ\"\n    ], \n    \"Double\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"gallants\": [\n        \"NNS\"\n    ], \n    \"propelling\": [\n        \"VBG\"\n    ], \n    \"cookie-cutter\": [\n        \"NN\"\n    ], \n    \"endorsers\": [\n        \"NNS\"\n    ], \n    \"stinkin\": [\n        \"JJ\"\n    ], \n    \"Permian\": [\n        \"NNP\"\n    ], \n    \"younger\": [\n        \"JJR\"\n    ], \n    \"apologizing\": [\n        \"VBG\"\n    ], \n    \"ineluctable\": [\n        \"JJ\"\n    ], \n    \"twotiming\": [\n        \"VBG\"\n    ], \n    \"serious\": [\n        \"JJ\"\n    ], \n    \"stacks\": [\n        \"NNS\"\n    ], \n    \"remarkable\": [\n        \"JJ\"\n    ], \n    \"Edge\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"alternatives\": [\n        \"NNS\"\n    ], \n    \"obviate\": [\n        \"VB\"\n    ], \n    \"PRO-CHOICE\": [\n        \"JJ\"\n    ], \n    \"Zagros\": [\n        \"NNP\"\n    ], \n    \"comments\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"remarkably\": [\n        \"RB\"\n    ], \n    \"Pride\": [\n        \"NNP\"\n    ], \n    \"violinist\": [\n        \"NN\"\n    ], \n    \"prescription-drug\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"lisping\": [\n        \"VBG\"\n    ], \n    \"Reuschel\": [\n        \"NNP\"\n    ], \n    \"PepsiCo\": [\n        \"NNP\"\n    ], \n    \"price-based\": [\n        \"JJ\"\n    ], \n    \"mistook\": [\n        \"VBD\"\n    ], \n    \"Mourning\": [\n        \"VBG\"\n    ], \n    \"abhorrent\": [\n        \"JJ\"\n    ], \n    \"Gevergeyeva\": [\n        \"NNP\"\n    ], \n    \"desk-legs\": [\n        \"NN\"\n    ], \n    \"Jiotto\": [\n        \"NNP\"\n    ], \n    \"melon\": [\n        \"NN\"\n    ], \n    \"Seebohm\": [\n        \"NNP\"\n    ], \n    \"overwrought\": [\n        \"JJ\"\n    ], \n    \"frequency-modulation\": [\n        \"NN\"\n    ], \n    \"more-general\": [\n        \"JJ\"\n    ], \n    \"Intan\": [\n        \"NNP\"\n    ], \n    \"Eleanor\": [\n        \"NNP\"\n    ], \n    \"ex-trucking\": [\n        \"JJ\"\n    ], \n    \"leathered\": [\n        \"JJ\"\n    ], \n    \"artwork\": [\n        \"NN\"\n    ], \n    \"Athletics\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Tractor\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"tortillas\": [\n        \"NNS\"\n    ], \n    \"Mycenae\": [\n        \"NNP\"\n    ], \n    \"policeman\": [\n        \"NN\"\n    ], \n    \"unlaced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"kingpins\": [\n        \"NNS\"\n    ], \n    \"Wycliffe\": [\n        \"NNP\"\n    ], \n    \"Unofficial\": [\n        \"JJ\"\n    ], \n    \"brothel\": [\n        \"NN\"\n    ], \n    \"red-faced\": [\n        \"JJ\"\n    ], \n    \"svelte\": [\n        \"JJ\"\n    ], \n    \"GLITTER\": [\n        \"NN\"\n    ], \n    \"tree-farming\": [\n        \"JJ\"\n    ], \n    \"slower\": [\n        \"JJR\", \n        \"RBR\"\n    ], \n    \"Coosa\": [\n        \"NNP\"\n    ], \n    \"Baptiste\": [\n        \"NNP\"\n    ], \n    \"common-position\": [\n        \"JJ\"\n    ], \n    \"less-than-exacting\": [\n        \"JJ\"\n    ], \n    \"steppingstone\": [\n        \"NN\"\n    ], \n    \"slowed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"f-Includes\": [\n        \"VBZ\"\n    ], \n    \"Midgetman\": [\n        \"NNP\"\n    ], \n    \"shulde\": [\n        \"MD\"\n    ], \n    \"Schering-Plough\": [\n        \"NNP\"\n    ], \n    \"spin-off\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"heavy-framed\": [\n        \"JJ\"\n    ], \n    \"hymn\": [\n        \"NN\"\n    ], \n    \"Cocktails\": [\n        \"NNS\"\n    ], \n    \"orthodontics\": [\n        \"NNS\"\n    ], \n    \"stressful\": [\n        \"JJ\"\n    ], \n    \"postman\": [\n        \"NN\"\n    ], \n    \"Finmeccanica\": [\n        \"NNP\"\n    ], \n    \"Automotive\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"tax-paying\": [\n        \"JJ\"\n    ], \n    \"Schulof\": [\n        \"NNP\"\n    ], \n    \"Streeters\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Manzanec\": [\n        \"NNP\"\n    ], \n    \"one-page\": [\n        \"JJ\"\n    ], \n    \"amounting\": [\n        \"VBG\"\n    ], \n    \"smokehouse\": [\n        \"NN\"\n    ], \n    \"fortune-cookie\": [\n        \"NN\"\n    ], \n    \"multi-valued\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"Glennon\": [\n        \"NNP\"\n    ], \n    \"SUSPENDED\": [\n        \"VBD\"\n    ], \n    \"Translant\": [\n        \"NNP\"\n    ], \n    \"push-offs\": [\n        \"NNS\"\n    ], \n    \"cost-recovery\": [\n        \"JJ\"\n    ], \n    \"KLM\": [\n        \"NNP\"\n    ], \n    \"crippled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"hoarse\": [\n        \"JJ\"\n    ], \n    \"tallying\": [\n        \"VBG\"\n    ], \n    \"Helmsley\": [\n        \"NNP\"\n    ], \n    \"Postipankki\": [\n        \"NNP\"\n    ], \n    \"Hart-Scott-Rodino\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"snubbed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Crimes\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"law-abiding\": [\n        \"JJ\"\n    ], \n    \"resonance\": [\n        \"NN\"\n    ], \n    \"automaton\": [\n        \"NN\"\n    ], \n    \"navigation\": [\n        \"NN\"\n    ], \n    \"Pumblechook\": [\n        \"NNP\"\n    ], \n    \"mutters\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"rededicate\": [\n        \"VB\"\n    ], \n    \"ribcage\": [\n        \"NN\"\n    ], \n    \"socio-structural\": [\n        \"JJ\"\n    ], \n    \"sawed-off\": [\n        \"JJ\"\n    ], \n    \"Ariel\": [\n        \"NNP\"\n    ], \n    \"chaired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"pro-shareholder\": [\n        \"NN\"\n    ], \n    \"modifying\": [\n        \"VBG\"\n    ], \n    \"pax-ordo\": [\n        \"NN\"\n    ], \n    \"graduated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"light-colored\": [\n        \"JJ\"\n    ], \n    \"maelstrom\": [\n        \"NN\"\n    ], \n    \"Bengals\": [\n        \"NNPS\"\n    ], \n    \"not-so-favorite\": [\n        \"JJ\"\n    ], \n    \"dervishes\": [\n        \"NNS\"\n    ], \n    \"XFI\": [\n        \"NNP\"\n    ], \n    \"post-midnight\": [\n        \"JJ\"\n    ], \n    \"dolphins\": [\n        \"NNS\"\n    ], \n    \"Gallet\": [\n        \"NN\"\n    ], \n    \"confounded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"middle-age\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Owasso\": [\n        \"NNP\"\n    ], \n    \"Ninety-Two\": [\n        \"NNP\"\n    ], \n    \"hawkish\": [\n        \"JJ\"\n    ], \n    \"Bengali\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"dismay\": [\n        \"NN\"\n    ], \n    \"vaguest\": [\n        \"JJS\"\n    ], \n    \"Benefits\": [\n        \"NNS\"\n    ], \n    \"Ramble\": [\n        \"NNP\"\n    ], \n    \"two-tail\": [\n        \"JJ\"\n    ], \n    \"ex-convicts\": [\n        \"NNS\"\n    ], \n    \"steel-hungry\": [\n        \"JJ\"\n    ], \n    \"election-law\": [\n        \"NN\"\n    ], \n    \"Summary\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stride\": [\n        \"NNP\"\n    ], \n    \"dismal\": [\n        \"JJ\"\n    ], \n    \"shafts\": [\n        \"NNS\"\n    ], \n    \"Apocalypse\": [\n        \"NNP\"\n    ], \n    \"Sarney\": [\n        \"NNP\"\n    ], \n    \"all-too-brief\": [\n        \"JJ\"\n    ], \n    \"contradicts\": [\n        \"VBZ\"\n    ], \n    \"butterfat\": [\n        \"NN\"\n    ], \n    \"third-rate\": [\n        \"JJ\"\n    ], \n    \"modified\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"longitude\": [\n        \"NN\"\n    ], \n    \"resembles\": [\n        \"VBZ\"\n    ], \n    \"ferry\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"modifies\": [\n        \"VBZ\"\n    ], \n    \"modifier\": [\n        \"NN\"\n    ], \n    \"semi-automatic\": [\n        \"JJ\"\n    ], \n    \"vigor\": [\n        \"NN\"\n    ], \n    \"multiple-column\": [\n        \"JJ\"\n    ], \n    \"trump\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"railbike\": [\n        \"NN\"\n    ], \n    \"distillation\": [\n        \"NN\"\n    ], \n    \"intimating\": [\n        \"VBG\"\n    ], \n    \"tinted\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"debt-free\": [\n        \"JJ\"\n    ], \n    \"Buxton\": [\n        \"NNP\"\n    ], \n    \"Farvel-Topsy\": [\n        \"NNP\"\n    ], \n    \"inclosed\": [\n        \"VBN\"\n    ], \n    \"multiplexer\": [\n        \"NN\"\n    ], \n    \"recuperating\": [\n        \"VBG\"\n    ], \n    \"endorsement\": [\n        \"NN\"\n    ], \n    \"bleary\": [\n        \"JJ\"\n    ], \n    \"non-annualized\": [\n        \"JJ\"\n    ], \n    \"procurer\": [\n        \"NN\"\n    ], \n    \"critcism\": [\n        \"NN\"\n    ], \n    \"levy\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"Soviet-made\": [\n        \"JJ\"\n    ], \n    \"Mahe\": [\n        \"NNP\"\n    ], \n    \"bonfires\": [\n        \"NNS\"\n    ], \n    \"filmstrips\": [\n        \"NNS\"\n    ], \n    \"heartbreaking\": [\n        \"JJ\"\n    ], \n    \"typewritten\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"doggone\": [\n        \"JJ\", \n        \"UH\"\n    ], \n    \"Mid\": [\n        \"NNP\"\n    ], \n    \"classroom\": [\n        \"NN\"\n    ], \n    \"COMPARE\": [\n        \"VB\"\n    ], \n    \"branches\": [\n        \"NNS\"\n    ], \n    \"stupidly\": [\n        \"RB\"\n    ], \n    \"warehouse-type\": [\n        \"NN\"\n    ], \n    \"branched\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"lagoon\": [\n        \"NN\"\n    ], \n    \"public-fund\": [\n        \"JJ\"\n    ], \n    \"imagining\": [\n        \"VBG\"\n    ], \n    \"snorkle\": [\n        \"NN\"\n    ], \n    \"scammers\": [\n        \"NNS\"\n    ], \n    \"taut-nerved\": [\n        \"JJ\"\n    ], \n    \"constituents\": [\n        \"NNS\"\n    ], \n    \"preening\": [\n        \"VBG\"\n    ], \n    \"motions\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Zia\": [\n        \"NNP\"\n    ], \n    \"Wardwell\": [\n        \"NNP\"\n    ], \n    \"Folkerts\": [\n        \"NNP\"\n    ], \n    \"tetanus\": [\n        \"NN\"\n    ], \n    \"Glickman\": [\n        \"NNP\"\n    ], \n    \"Rinsing\": [\n        \"VBG\"\n    ], \n    \"LUTHER\": [\n        \"NNP\"\n    ], \n    \"paradoxically\": [\n        \"RB\"\n    ], \n    \"redheaded\": [\n        \"JJ\"\n    ], \n    \"duplex\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"ICL-GE\": [\n        \"NNP\"\n    ], \n    \"redheader\": [\n        \"NN\"\n    ], \n    \"Effects\": [\n        \"NNPS\"\n    ], \n    \"millon\": [\n        \"NN\"\n    ], \n    \"Barristers\": [\n        \"NNS\"\n    ], \n    \"decametrina\": [\n        \"NN\"\n    ], \n    \"ex-Cubs\": [\n        \"NNS\"\n    ], \n    \"hotel-motel\": [\n        \"NN\"\n    ], \n    \"Voyles\": [\n        \"NNP\"\n    ], \n    \"work-study\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"formidably\": [\n        \"RB\"\n    ], \n    \"devastated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Odetics\": [\n        \"NNP\"\n    ], \n    \"LINTAS\": [\n        \"NNP\"\n    ], \n    \"Vogue\": [\n        \"NNP\"\n    ], \n    \"Tokuo\": [\n        \"NNP\"\n    ], \n    \"Platonic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Beutel\": [\n        \"NNP\"\n    ], \n    \"frequency-control\": [\n        \"JJ\"\n    ], \n    \"open-end\": [\n        \"JJ\"\n    ], \n    \"advent\": [\n        \"NN\"\n    ], \n    \"realistic\": [\n        \"JJ\"\n    ], \n    \"rangers\": [\n        \"NNS\"\n    ], \n    \"Heels\": [\n        \"NNS\"\n    ], \n    \"Brokaw\": [\n        \"NNP\"\n    ], \n    \"friendlily\": [\n        \"RB\"\n    ], \n    \"oratorio\": [\n        \"NN\"\n    ], \n    \"reconnaissance\": [\n        \"NN\"\n    ], \n    \"rethinking\": [\n        \"VBG\"\n    ], \n    \"wearisome\": [\n        \"JJ\"\n    ], \n    \"most-recent\": [\n        \"JJ\", \n        \"JJS\"\n    ], \n    \"footing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Exploratory\": [\n        \"JJ\"\n    ], \n    \"Abstractions\": [\n        \"NNS\"\n    ], \n    \"Miraculously\": [\n        \"RB\"\n    ], \n    \"distributor\": [\n        \"NN\"\n    ], \n    \"self-government\": [\n        \"NN\"\n    ], \n    \"sunrise\": [\n        \"NN\"\n    ], \n    \"flaccid\": [\n        \"JJ\"\n    ], \n    \"Rosenwald\": [\n        \"NNP\"\n    ], \n    \"export-subsidy\": [\n        \"NN\"\n    ], \n    \"keno\": [\n        \"JJ\"\n    ], \n    \"pollen-inhibiting\": [\n        \"JJ\"\n    ], \n    \"securites\": [\n        \"NNS\"\n    ], \n    \"opportunists\": [\n        \"NNS\"\n    ], \n    \"Cominco\": [\n        \"NNP\"\n    ], \n    \"Experts\": [\n        \"NNS\"\n    ], \n    \"drib-drool\": [\n        \"NN\"\n    ], \n    \"Currys\": [\n        \"NNP\"\n    ], \n    \"money-lending\": [\n        \"JJ\"\n    ], \n    \"pound-deutsche\": [\n        \"JJ\"\n    ], \n    \"hula\": [\n        \"NN\"\n    ], \n    \"hull\": [\n        \"NN\"\n    ], \n    \"Nude\": [\n        \"NNP\"\n    ], \n    \"electrified\": [\n        \"VBN\"\n    ], \n    \"hulk\": [\n        \"NN\"\n    ], \n    \"cleavage\": [\n        \"NN\"\n    ], \n    \"unfriendly\": [\n        \"JJ\"\n    ], \n    \"Musicians\": [\n        \"NNS\", \n        \"NNPS\"\n    ], \n    \"Ruling\": [\n        \"NN\", \n        \"NNP\", \n        \"VBG\"\n    ], \n    \"Cattolica\": [\n        \"NNP\"\n    ], \n    \"accommodation\": [\n        \"NN\"\n    ], \n    \"delude\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"fair-use\": [\n        \"JJ\"\n    ], \n    \"Worriers\": [\n        \"NNS\"\n    ], \n    \"roosters\": [\n        \"NNS\"\n    ], \n    \"flare\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"peppering\": [\n        \"VBG\"\n    ], \n    \"econometric\": [\n        \"JJ\"\n    ], \n    \"motion\": [\n        \"NN\"\n    ], \n    \"hypnosis\": [\n        \"NN\"\n    ], \n    \"Folkston\": [\n        \"NNP\"\n    ], \n    \"Welfare\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Touch\": [\n        \"NNP\"\n    ], \n    \"Griselda\": [\n        \"NNP\"\n    ], \n    \"view\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"weakling\": [\n        \"NN\"\n    ], \n    \"discontinued\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"programing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Muskoka\": [\n        \"NNP\"\n    ], \n    \"Giant\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"surviving\": [\n        \"VBG\"\n    ], \n    \"Dietrich\": [\n        \"NNP\"\n    ], \n    \"symbolic\": [\n        \"JJ\"\n    ], \n    \"exhaustible\": [\n        \"JJ\"\n    ], \n    \"retainers\": [\n        \"NNS\"\n    ], \n    \"co-head\": [\n        \"NN\"\n    ], \n    \"Citizen\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"W/NNP.R.G.\": [\n        \"NNP\"\n    ], \n    \"non-packaging\": [\n        \"JJ\"\n    ], \n    \"Sonuvabitch\": [\n        \"UH\"\n    ], \n    \"lootings\": [\n        \"NNS\"\n    ], \n    \"statuary\": [\n        \"NN\"\n    ], \n    \"anti-men\": [\n        \"JJ\"\n    ], \n    \"Saperstein\": [\n        \"NNP\"\n    ], \n    \"Capcom\": [\n        \"NNP\"\n    ], \n    \"Stegemeier\": [\n        \"NNP\"\n    ], \n    \"persuasions\": [\n        \"NNS\"\n    ], \n    \"fifteen-sixteenths\": [\n        \"NNS\"\n    ], \n    \"EARNINGS\": [\n        \"NNS\"\n    ], \n    \"lobbyists\": [\n        \"NNS\"\n    ], \n    \"socialites\": [\n        \"NNS\"\n    ], \n    \"white\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"question-and-answer\": [\n        \"JJ\"\n    ], \n    \"accounting-rules\": [\n        \"JJ\"\n    ], \n    \"appointees\": [\n        \"NNS\"\n    ], \n    \"reverie\": [\n        \"NN\"\n    ], \n    \"PDT\": [\n        \"NNP\"\n    ], \n    \"anti-vivisectionists\": [\n        \"NNS\"\n    ], \n    \"PDN\": [\n        \"NNP\"\n    ], \n    \"down-and-out\": [\n        \"JJ\"\n    ], \n    \"deceleration\": [\n        \"NN\"\n    ], \n    \"PDI\": [\n        \"NNP\"\n    ], \n    \"Indelicato\": [\n        \"NNP\"\n    ], \n    \"Disclosures\": [\n        \"NNS\"\n    ], \n    \"wide\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"DiGiorgio\": [\n        \"NNP\"\n    ], \n    \"survivals\": [\n        \"NNS\"\n    ], \n    \"crowded\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"spokeswoman\": [\n        \"NN\"\n    ], \n    \"poisoning\": [\n        \"NN\", \n        \"VBG|NN\", \n        \"VBG\"\n    ], \n    \"recreational-vehicle\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"cross-buying\": [\n        \"NN\"\n    ], \n    \"Caucasus\": [\n        \"NN\"\n    ], \n    \"Victimization\": [\n        \"NN\"\n    ], \n    \"Thorstein\": [\n        \"NNP\"\n    ], \n    \"pompousness\": [\n        \"NN\"\n    ], \n    \"confessed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"pre-Gorbachev\": [\n        \"JJ\"\n    ], \n    \"Lavin\": [\n        \"NNP\"\n    ], \n    \"tanning\": [\n        \"NN\"\n    ], \n    \"downdraft\": [\n        \"NN\"\n    ], \n    \"dryness\": [\n        \"NN\"\n    ], \n    \"prosperity\": [\n        \"NN\"\n    ], \n    \"Consumer-electronics\": [\n        \"NNS\"\n    ], \n    \"Cartridge\": [\n        \"NNP\"\n    ], \n    \"balance-sheet\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Yankton\": [\n        \"NNP\"\n    ], \n    \"fondest\": [\n        \"JJS\"\n    ], \n    \"product-monoclonal\": [\n        \"JJ\"\n    ], \n    \"keynotes\": [\n        \"NNS\"\n    ], \n    \"strengths\": [\n        \"NNS\"\n    ], \n    \"dynamited\": [\n        \"VBN\"\n    ], \n    \"hyperfine\": [\n        \"JJ\"\n    ], \n    \"Vuitton\": [\n        \"NNP\"\n    ], \n    \"multiple\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"MLD\": [\n        \"NNP\"\n    ], \n    \"tornado\": [\n        \"NN\"\n    ], \n    \"MLR\": [\n        \"NNP\"\n    ], \n    \"boiling\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Nissin\": [\n        \"NNP\"\n    ], \n    \"moldy\": [\n        \"JJ\"\n    ], \n    \"preferrance\": [\n        \"NN\"\n    ], \n    \"multiply\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"MLX\": [\n        \"NNP\"\n    ], \n    \"encoder\": [\n        \"NN\"\n    ], \n    \"dried-up\": [\n        \"JJ\"\n    ], \n    \"Maize-Products\": [\n        \"NNPS\"\n    ], \n    \"nonaddictive\": [\n        \"JJ\"\n    ], \n    \"thigh-bone\": [\n        \"NN\"\n    ], \n    \"Verbal\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Salads\": [\n        \"NNS\"\n    ], \n    \"seafood\": [\n        \"NN\"\n    ], \n    \"Corabi\": [\n        \"NNP\"\n    ], \n    \"playing\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"mountainous\": [\n        \"JJ\"\n    ], \n    \"hairtonic\": [\n        \"NN\"\n    ], \n    \"Beadles\": [\n        \"NNP\"\n    ], \n    \"readjust\": [\n        \"VB\"\n    ], \n    \"cuddled\": [\n        \"VBD\"\n    ], \n    \"quantity\": [\n        \"NN\"\n    ], \n    \"slope\": [\n        \"NN\"\n    ], \n    \"Lukman\": [\n        \"NNP\"\n    ], \n    \"Sorenson\": [\n        \"NNP\"\n    ], \n    \"idealisms\": [\n        \"NNS\"\n    ], \n    \"hack\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pre-emptive\": [\n        \"JJ\"\n    ], \n    \"blue-eyed\": [\n        \"JJ\"\n    ], \n    \"polyisocyanate\": [\n        \"NN\"\n    ], \n    \"multiplexers\": [\n        \"NNS\"\n    ], \n    \"crimped\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Lyndon\": [\n        \"NNP\"\n    ], \n    \"well-wishers\": [\n        \"NNS\"\n    ], \n    \"Concurrent\": [\n        \"JJ\"\n    ], \n    \"fickle\": [\n        \"JJ\"\n    ], \n    \"Jordan\\\\/Zalaznick\": [\n        \"NNP\"\n    ], \n    \"Gallen\": [\n        \"NNP\"\n    ], \n    \"blue-eyes\": [\n        \"NNS\"\n    ], \n    \"Telling\": [\n        \"VBG\"\n    ], \n    \"cautioned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"subjugated\": [\n        \"JJ\"\n    ], \n    \"welled\": [\n        \"VBD\"\n    ], \n    \"lighted\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"mistrial\": [\n        \"NN\"\n    ], \n    \"viewpoint\": [\n        \"NN\"\n    ], \n    \"Loewenson\": [\n        \"NNP\"\n    ], \n    \"lighten\": [\n        \"VB\"\n    ], \n    \"Violence\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Athenian\": [\n        \"JJ\"\n    ], \n    \"Sieux\": [\n        \"NNP\"\n    ], \n    \"Gwendolyn\": [\n        \"NNP\"\n    ], \n    \"radiations\": [\n        \"NNS\"\n    ], \n    \"clerks\": [\n        \"NNS\"\n    ], \n    \"Eleazar\": [\n        \"NNP\"\n    ], \n    \"Similar\": [\n        \"JJ\"\n    ], \n    \"veiled\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"aluminum\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Sankai\": [\n        \"NNP\"\n    ], \n    \"Kona\": [\n        \"NNP\"\n    ], \n    \"impolite\": [\n        \"JJ\"\n    ], \n    \"Kong\": [\n        \"NNP\"\n    ], \n    \"naked\": [\n        \"JJ\"\n    ], \n    \"Minute\": [\n        \"NNP\"\n    ], \n    \"Cycle\": [\n        \"NNP\"\n    ], \n    \"Collector\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ignored\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"head-butting\": [\n        \"JJ\"\n    ], \n    \"music-entertainment\": [\n        \"NN\"\n    ], \n    \"encourages\": [\n        \"VBZ\"\n    ], \n    \"professes\": [\n        \"VBZ\"\n    ], \n    \"emote\": [\n        \"VB\"\n    ], \n    \"Westford\": [\n        \"NNP\"\n    ], \n    \"downfall...\": [\n        \":\"\n    ], \n    \"Ettore\": [\n        \"NNP\"\n    ], \n    \"ignores\": [\n        \"VBZ\"\n    ], \n    \"state-federal\": [\n        \"JJ\"\n    ], \n    \"bluntness\": [\n        \"NN\"\n    ], \n    \"professed\": [\n        \"VBD\", \n        \"VBN\", \n        \"JJ\"\n    ], \n    \"encouraged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"non-systematic\": [\n        \"JJ\"\n    ], \n    \"visceral\": [\n        \"JJ\"\n    ], \n    \"pemmican\": [\n        \"NN\"\n    ], \n    \"addled\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"truck-manufacturing\": [\n        \"JJ\"\n    ], \n    \"spoons\": [\n        \"NNS\"\n    ], \n    \"husband-wife\": [\n        \"JJ\"\n    ], \n    \"Quennell\": [\n        \"NNP\"\n    ], \n    \"unappealing\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"arrival\": [\n        \"NN\"\n    ], \n    \"Differential\": [\n        \"JJ\"\n    ], \n    \"Frampton\": [\n        \"NNP\"\n    ], \n    \"thunderstruck\": [\n        \"JJ\"\n    ], \n    \"originated\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\", \n        \"VBP\"\n    ], \n    \"scavengers\": [\n        \"NNS\"\n    ], \n    \"George-Barden\": [\n        \"NNP\"\n    ], \n    \"Renchard\": [\n        \"NNP\"\n    ], \n    \"fiddling\": [\n        \"NN\", \n        \"JJ\", \n        \"VBG\"\n    ], \n    \"overcharge\": [\n        \"NN\"\n    ], \n    \"nuclear-industry\": [\n        \"NN\"\n    ], \n    \"Reasonable\": [\n        \"JJ\"\n    ], \n    \"uncircumcision\": [\n        \"NN\"\n    ], \n    \"coma\": [\n        \"NN\"\n    ], \n    \"comb\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"come\": [\n        \"VB\", \n        \"VBD\", \n        \"VBN\", \n        \"VBP\", \n        \"VBZ\", \n        \"JJ\"\n    ], \n    \"interdicting\": [\n        \"VBG\"\n    ], \n    \"Muffin\": [\n        \"NNP\"\n    ], \n    \"reaction\": [\n        \"NN\"\n    ], \n    \"Freedman\": [\n        \"NNP\"\n    ], \n    \"reappraisal\": [\n        \"NN\"\n    ], \n    \"superstar\": [\n        \"NN\"\n    ], \n    \"Winterthur-based\": [\n        \"JJ\"\n    ], \n    \"columnist\": [\n        \"NN\"\n    ], \n    \"reverberation\": [\n        \"NN\"\n    ], \n    \"non-oil\": [\n        \"JJ\"\n    ], \n    \"power-generation\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"mid-1970\": [\n        \"NN\"\n    ], \n    \"provocation\": [\n        \"NN\"\n    ], \n    \"swaggering\": [\n        \"VBG\"\n    ], \n    \"mid-1979\": [\n        \"NN\"\n    ], \n    \"sale\\\\/leaseback\": [\n        \"NN\"\n    ], \n    \"single-season\": [\n        \"JJ\"\n    ], \n    \"dispatch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Futotsu\": [\n        \"FW\"\n    ], \n    \"Retails\": [\n        \"NNS\"\n    ], \n    \"ZBB\": [\n        \"NNP\"\n    ], \n    \"Morcott\": [\n        \"NNP\"\n    ], \n    \"Teodulo\": [\n        \"NNP\"\n    ], \n    \"desktop-computer\": [\n        \"NN\"\n    ], \n    \"Bicycling\": [\n        \"NNP\"\n    ], \n    \"immunodeficiency\": [\n        \"NN\"\n    ], \n    \"TRUSTS\": [\n        \"NNS\"\n    ], \n    \"finger-tips\": [\n        \"NNS\"\n    ], \n    \"deposited\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"declining\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Herscu\": [\n        \"NNP\"\n    ], \n    \"Excess\": [\n        \"JJ\"\n    ], \n    \"enraptured\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"co-existence\": [\n        \"NN\"\n    ], \n    \"Peale\": [\n        \"NNP\"\n    ], \n    \"religiously\": [\n        \"RB\"\n    ], \n    \"Neb.\": [\n        \"NNP\"\n    ], \n    \"taffeta\": [\n        \"NN\"\n    ], \n    \"Rosemont\": [\n        \"NNP\"\n    ], \n    \"Deanna\": [\n        \"NNP\"\n    ], \n    \"Mass.-based\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Inouye\": [\n        \"NNP\"\n    ], \n    \"Yukio\": [\n        \"NNP\"\n    ], \n    \"twigs\": [\n        \"NNS\"\n    ], \n    \"assessories\": [\n        \"NNS\"\n    ], \n    \"WEIRTON\": [\n        \"NNP\"\n    ], \n    \"allnight\": [\n        \"JJ\"\n    ], \n    \"Al-Faqih\": [\n        \"NNP\"\n    ], \n    \"movie-production\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"shops\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"war-damaged\": [\n        \"JJ\"\n    ], \n    \"Alexander\": [\n        \"NNP\"\n    ], \n    \"Brosterman\": [\n        \"NNP\"\n    ], \n    \"bunters\": [\n        \"NNS\"\n    ], \n    \"Zendo\": [\n        \"NNP\"\n    ], \n    \"systemization\": [\n        \"NN\"\n    ], \n    \"pull-out\": [\n        \"NN\"\n    ], \n    \"capping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Jacinto\": [\n        \"NNP\"\n    ], \n    \"Followin\": [\n        \"VBG\"\n    ], \n    \"whirred\": [\n        \"VBD\"\n    ], \n    \"about-faced\": [\n        \"VBD\"\n    ], \n    \"employment-tax\": [\n        \"JJ\"\n    ], \n    \"mold\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"locking\": [\n        \"JJ\", \n        \"VBG\"\n    ], \n    \"confidant\": [\n        \"NN\"\n    ], \n    \"attributing\": [\n        \"VBG\"\n    ], \n    \"bows\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"less-experienced\": [\n        \"JJ\"\n    ], \n    \"Hazards\": [\n        \"NNS\"\n    ], \n    \"soggier\": [\n        \"NN\"\n    ], \n    \"physical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"cost-to-benefit\": [\n        \"JJ\"\n    ], \n    \"circulatory\": [\n        \"JJ\"\n    ], \n    \"high-production\": [\n        \"JJ\"\n    ], \n    \"I\\\\\": [\n        \"NNP\"\n    ], \n    \"mockery\": [\n        \"NN\"\n    ], \n    \"passenger-reservation\": [\n        \"NN\"\n    ], \n    \"IS\": [\n        \"VBZ\"\n    ], \n    \"barges\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"IT\": [\n        \"PRP\"\n    ], \n    \"muffled\": [\n        \"JJ\", \n        \"VBD\", \n        \"VBN\"\n    ], \n    \"IV\": [\n        \"NNP\"\n    ], \n    \"octahedron\": [\n        \"NN\"\n    ], \n    \"macroeconomic\": [\n        \"JJ\"\n    ], \n    \"canister\": [\n        \"NN\"\n    ], \n    \"IN\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"muffler\": [\n        \"NN\"\n    ], \n    \"IC\": [\n        \"NNP\"\n    ], \n    \"barged\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Dynamics\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"IG\": [\n        \"NNP\"\n    ], \n    \"IF\": [\n        \"IN\"\n    ], \n    \"longing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"gerrymandering\": [\n        \"NN\"\n    ], \n    \"sed\": [\n        \"VBD\"\n    ], \n    \"perennial\": [\n        \"JJ\"\n    ], \n    \"swatches\": [\n        \"NNS\"\n    ], \n    \"caressing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"It\": [\n        \"PRP\", \n        \"NNP\"\n    ], \n    \"flexicoker\": [\n        \"NN\"\n    ], \n    \"Yakovlevich\": [\n        \"NNP\"\n    ], \n    \"Il\": [\n        \"FW\", \n        \"NNP\"\n    ], \n    \"Io\": [\n        \"NNP\"\n    ], \n    \"In\": [\n        \"IN\", \n        \"RBR\", \n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"foyer\": [\n        \"NN\"\n    ], \n    \"Id\": [\n        \"NN\"\n    ], \n    \"Philmont\": [\n        \"NNP\"\n    ], \n    \"tweedy\": [\n        \"JJ\"\n    ], \n    \"desolate\": [\n        \"JJ\"\n    ], \n    \"tweeds\": [\n        \"NNS\"\n    ], \n    \"captures\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"drafters\": [\n        \"NNS\"\n    ], \n    \"Woodland\": [\n        \"NNP\"\n    ], \n    \"violent\": [\n        \"JJ\"\n    ], \n    \"Farnworth\": [\n        \"NNP\"\n    ], \n    \"cable-TV\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"kneeling\": [\n        \"VBG\"\n    ], \n    \"captured\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\"\n    ], \n    \"gentleness\": [\n        \"NN\"\n    ], \n    \"Broadly\": [\n        \"RB\"\n    ], \n    \"Lanham\": [\n        \"NNP\"\n    ], \n    \"tourist-advertising\": [\n        \"NN\"\n    ], \n    \"MacLean\": [\n        \"NNP\"\n    ], \n    \"worthier\": [\n        \"JJR\"\n    ], \n    \"Jets\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"scrapbook\": [\n        \"NN\"\n    ], \n    \"styles\": [\n        \"NNS\"\n    ], \n    \"carpeting\": [\n        \"NN\"\n    ], \n    \"mugged\": [\n        \"VBN\"\n    ], \n    \"Terminaling\": [\n        \"NNP\"\n    ], \n    \"fridge\": [\n        \"NN\"\n    ], \n    \"Solomon\": [\n        \"NNP\"\n    ], \n    \"styled\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Aber\": [\n        \"FW\"\n    ], \n    \"correcting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"unwilling\": [\n        \"JJ\"\n    ], \n    \"Came\": [\n        \"VBD\"\n    ], \n    \"romanticizing\": [\n        \"NN\"\n    ], \n    \"championing\": [\n        \"VBG\"\n    ], \n    \"N.V.\": [\n        \"NNP\"\n    ], \n    \"Thermopylae\": [\n        \"NNP\"\n    ], \n    \"Pin\": [\n        \"VB\"\n    ], \n    \"Pia\": [\n        \"NNP\"\n    ], \n    \"Pic\": [\n        \"NNP\"\n    ], \n    \"Turbulent\": [\n        \"JJ\"\n    ], \n    \"Pie\": [\n        \"NNP\"\n    ], \n    \"clays\": [\n        \"NNS\"\n    ], \n    \"Spoken\": [\n        \"NNP\"\n    ], \n    \"Hafner\": [\n        \"NNP\"\n    ], \n    \"most-likely-successor\": [\n        \"JJ\"\n    ], \n    \"Pip\": [\n        \"NNP\"\n    ], \n    \"Pit\": [\n        \"NN\"\n    ], \n    \"costume-jewelry\": [\n        \"NN\"\n    ], \n    \"shunned\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Chapin\": [\n        \"NNP\"\n    ], \n    \"Since\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"divestment\": [\n        \"NN\"\n    ], \n    \"hell-kitten\": [\n        \"NN\"\n    ], \n    \"perspiration\": [\n        \"NN\"\n    ], \n    \"value-added\": [\n        \"JJ\"\n    ], \n    \"Abex\": [\n        \"NNP\"\n    ], \n    \"multimillion-dollar\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Destroy\": [\n        \"NNP\"\n    ], \n    \"Three-part\": [\n        \"JJ\"\n    ], \n    \"pre-Hugo\": [\n        \"JJ\"\n    ], \n    \"slice\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"Dulaney\": [\n        \"NNP\"\n    ], \n    \"slick\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Visibility\": [\n        \"NN\"\n    ], \n    \"Creditanstalt\": [\n        \"NNP\"\n    ], \n    \"Right-to-Die\": [\n        \"JJ\"\n    ], \n    \"Perennial\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Castellanos\": [\n        \"NNP\"\n    ], \n    \"self-chosen\": [\n        \"JJ\"\n    ], \n    \"Raether\": [\n        \"NNP\"\n    ], \n    \"foreign-loan\": [\n        \"JJ\"\n    ], \n    \"sensitive-area\": [\n        \"NN\"\n    ], \n    \"itching\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"inspect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"loudest\": [\n        \"JJS\", \n        \"RBS\"\n    ], \n    \"voracious\": [\n        \"JJ\"\n    ], \n    \"seven-year\": [\n        \"JJ\"\n    ], \n    \"fabled\": [\n        \"JJ\"\n    ], \n    \"VOTED\": [\n        \"VBD\"\n    ], \n    \"videocam\": [\n        \"NN\"\n    ], \n    \"healthiest\": [\n        \"JJS\"\n    ], \n    \"insurance-rate\": [\n        \"JJ\"\n    ], \n    \"earlier\": [\n        \"RBR\", \n        \"JJR\", \n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"baffled\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Cubist\": [\n        \"NN\"\n    ], \n    \"Snakes\": [\n        \"NNS\"\n    ], \n    \"knite\": [\n        \"NN\"\n    ], \n    \"non-productive\": [\n        \"JJ\"\n    ], \n    \"self-fulfilling\": [\n        \"JJ\"\n    ], \n    \"Bufton\": [\n        \"NNP\"\n    ], \n    \"scornful\": [\n        \"JJ\"\n    ], \n    \"chive\": [\n        \"NN\"\n    ], \n    \"Datacrime\": [\n        \"NNP\"\n    ], \n    \"Cubism\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Eddington\": [\n        \"NNP\"\n    ], \n    \"Dairl\": [\n        \"NNP\"\n    ], \n    \"modernists\": [\n        \"NNS\"\n    ], \n    \"industry-funded\": [\n        \"JJ\"\n    ], \n    \"revolutionaries\": [\n        \"NNS\"\n    ], \n    \"scoffed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Coykendall\": [\n        \"NNP\"\n    ], \n    \"determing\": [\n        \"VBG\"\n    ], \n    \"determine\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"inadvertent\": [\n        \"JJ\"\n    ], \n    \"Stoyer\": [\n        \"NNP\"\n    ], \n    \"backwater\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"calamities\": [\n        \"NNS\"\n    ], \n    \"funerals\": [\n        \"NNS\"\n    ], \n    \"hoarding\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Dutch-elm-disease\": [\n        \"NN\"\n    ], \n    \"disposed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"dispersion\": [\n        \"NN\"\n    ], \n    \"ferris\": [\n        \"JJ\"\n    ], \n    \"Hanover-Chalidale\": [\n        \"NNP\"\n    ], \n    \"expatriate\": [\n        \"JJ\"\n    ], \n    \"disposes\": [\n        \"VBZ\"\n    ], \n    \"valley\": [\n        \"NN\"\n    ], \n    \"energy\": [\n        \"NN\"\n    ], \n    \"municipalities\": [\n        \"NNS\"\n    ], \n    \"rainless\": [\n        \"JJ\"\n    ], \n    \"vested\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"fundamentals\": [\n        \"NNS\"\n    ], \n    \"tranquility\": [\n        \"NN\"\n    ], \n    \"first-phase\": [\n        \"JJ\"\n    ], \n    \"docks\": [\n        \"NNS\"\n    ], \n    \"RDF\": [\n        \"NNP\"\n    ], \n    \"OOH\": [\n        \"NNP\"\n    ], \n    \"fabricate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"temperaments\": [\n        \"NNS\"\n    ], \n    \"Brinker\": [\n        \"NNP\"\n    ], \n    \"Wacky\": [\n        \"NNP\"\n    ], \n    \"tiptoe\": [\n        \"VB\"\n    ], \n    \"Koepf\": [\n        \"NNP\"\n    ], \n    \"sure-enough\": [\n        \"JJ\"\n    ], \n    \"life-insurance\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"POWERS\": [\n        \"NNS\"\n    ], \n    \"Special\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"toilet\": [\n        \"NN\"\n    ], \n    \"personal-injury\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"surly\": [\n        \"JJ\"\n    ], \n    \"contributors\": [\n        \"NNS\"\n    ], \n    \"cinema\": [\n        \"NN\"\n    ], \n    \"modules\": [\n        \"NNS\"\n    ], \n    \"Herry\": [\n        \"NNP\"\n    ], \n    \"contributory\": [\n        \"JJ\"\n    ], \n    \"Merrimack\": [\n        \"NNP\"\n    ], \n    \"Mission\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"high-spirited\": [\n        \"JJ\"\n    ], \n    \"toiled\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"trundle\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"together\": [\n        \"RB\", \n        \"IN\", \n        \"RP\"\n    ], \n    \"ingeniously\": [\n        \"RB\"\n    ], \n    \"Shimizu\": [\n        \"NNP\"\n    ], \n    \"spends\": [\n        \"VBZ\"\n    ], \n    \"tracings\": [\n        \"NNS\"\n    ], \n    \"Golomb\": [\n        \"NNP\"\n    ], \n    \"area-code\": [\n        \"JJ\"\n    ], \n    \"swords\": [\n        \"NNS\"\n    ], \n    \"Avalon\": [\n        \"NNP\"\n    ], \n    \"tax-deferred\": [\n        \"JJ\"\n    ], \n    \"sworde\": [\n        \"NN\"\n    ], \n    \"Motoren-und\": [\n        \"NNP\"\n    ], \n    \"championship\": [\n        \"NN\"\n    ], \n    \"Plessis\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Naval\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"whiskery\": [\n        \"JJ\"\n    ], \n    \"anylabel\": [\n        \"NN\"\n    ], \n    \"symbol\": [\n        \"NN\"\n    ], \n    \"midair\": [\n        \"NN\"\n    ], \n    \"cove\": [\n        \"NN\"\n    ], \n    \"Ghormley\": [\n        \"NNP\"\n    ], \n    \"Poduska\": [\n        \"NNP\"\n    ], \n    \"staunchly\": [\n        \"RB\"\n    ], \n    \"Refiners\": [\n        \"NNS\"\n    ], \n    \"hawk-hatching\": [\n        \"JJ\"\n    ], \n    \"Additives\": [\n        \"NNPS\"\n    ], \n    \"booked\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"calls\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"synergies\": [\n        \"NNS\"\n    ], \n    \"associatively\": [\n        \"RB\"\n    ], \n    \"thirty-caliber\": [\n        \"JJ\"\n    ], \n    \"exhausting\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"arm-elevation\": [\n        \"NN\"\n    ], \n    \"booker\": [\n        \"NN\"\n    ], \n    \"Republican-controlled\": [\n        \"JJ\"\n    ], \n    \"endangered-species\": [\n        \"NNS\"\n    ], \n    \"Gateway\": [\n        \"NNP\"\n    ], \n    \"death-wish\": [\n        \"NN\"\n    ], \n    \"nurseries\": [\n        \"NNS\"\n    ], \n    \"small-car\": [\n        \"NN\"\n    ], \n    \"Tube\": [\n        \"NNP\"\n    ], \n    \"small-cap\": [\n        \"JJ\"\n    ], \n    \"outpacing\": [\n        \"VBG\"\n    ], \n    \"Pharmical\": [\n        \"NNP\"\n    ], \n    \"lower-court\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Evansville\": [\n        \"NNP\"\n    ], \n    \"propagandizes\": [\n        \"VBZ\"\n    ], \n    \"long-deprived\": [\n        \"JJ\"\n    ], \n    \"sh-ts\": [\n        \"NN\"\n    ], \n    \"Jutting\": [\n        \"VBG\"\n    ], \n    \"Major-League\": [\n        \"NNP\"\n    ], \n    \"Baytos\": [\n        \"NNP\"\n    ], \n    \"desktop-presentation\": [\n        \"JJ\"\n    ], \n    \"high-security\": [\n        \"JJ\"\n    ], \n    \"Japanese-supplied\": [\n        \"JJ\"\n    ], \n    \"Trees\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"infirmary\": [\n        \"NN\"\n    ], \n    \"longtime\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"St.-Pol\": [\n        \"NNP\"\n    ], \n    \"urea\": [\n        \"NN\"\n    ], \n    \"Iowa-based\": [\n        \"JJ\"\n    ], \n    \"grinds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Choong\": [\n        \"NNP\"\n    ], \n    \"howlers\": [\n        \"NNS\"\n    ], \n    \"ultraviolet\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"reordering\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Distiller\": [\n        \"NN\"\n    ], \n    \"salmonella\": [\n        \"NN\"\n    ], \n    \"Bawer\": [\n        \"NNP\"\n    ], \n    \"prolonged\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Trimble\": [\n        \"NNP\"\n    ], \n    \"RICO\": [\n        \"NNP\"\n    ], \n    \"cement-mixing\": [\n        \"JJ\"\n    ], \n    \"quipped\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"Rarely\": [\n        \"RB\"\n    ], \n    \"Lathouris\": [\n        \"NNP\"\n    ], \n    \"vanilla\": [\n        \"NN\"\n    ], \n    \"Hellfire\": [\n        \"NNP\"\n    ], \n    \"dexterity\": [\n        \"NN\"\n    ], \n    \"Rancho\": [\n        \"NNP\"\n    ], \n    \"Bridgestone\": [\n        \"NNP\"\n    ], \n    \"professing\": [\n        \"VBG\"\n    ], \n    \"Corp.-Toyota\": [\n        \"JJ\"\n    ], \n    \"busing\": [\n        \"VBG\"\n    ], \n    \"Shopping\": [\n        \"NNP\", \n        \"VBG\", \n        \"NN\"\n    ], \n    \"Hilliard\": [\n        \"NNP\"\n    ], \n    \"disobedience\": [\n        \"NN\"\n    ], \n    \"resettled\": [\n        \"VBN\"\n    ], \n    \"aptly\": [\n        \"RB\"\n    ], \n    \"Theological\": [\n        \"NNP\"\n    ], \n    \"Subsidiaries\": [\n        \"NNS\"\n    ], \n    \"well-prepared\": [\n        \"JJ\"\n    ], \n    \"Gilborn\": [\n        \"NNP\"\n    ], \n    \"oncoming\": [\n        \"JJ\"\n    ], \n    \"Brigadoon\": [\n        \"NNP\"\n    ], \n    \"anniversary\": [\n        \"NN\"\n    ], \n    \"disburses\": [\n        \"VBZ\"\n    ], \n    \"Neo-Ecclesiasticism\": [\n        \"NNP\"\n    ], \n    \"disbursed\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"frightens\": [\n        \"VBZ\"\n    ], \n    \"Zermatt\": [\n        \"NNP\"\n    ], \n    \"Pauline\": [\n        \"NNP\"\n    ], \n    \"Short\": [\n        \"JJ\", \n        \"RB\", \n        \"NNP\"\n    ], \n    \"lacquer\": [\n        \"NN\"\n    ], \n    \"prognoses\": [\n        \"NNS\"\n    ], \n    \"Helpern\": [\n        \"NNP\"\n    ], \n    \"overstatement\": [\n        \"NN\"\n    ], \n    \"supposedly\": [\n        \"RB\"\n    ], \n    \"wild\": [\n        \"JJ\", \n        \"RB\"\n    ], \n    \"Shore\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"hopelessness\": [\n        \"NN\"\n    ], \n    \"relaxation\": [\n        \"NN\"\n    ], \n    \"Ankeny\": [\n        \"NNP\"\n    ], \n    \"Shorn\": [\n        \"VBN\"\n    ], \n    \"somewheres\": [\n        \"RB\"\n    ], \n    \"skidded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"observing\": [\n        \"VBG\"\n    ], \n    \"thrift\": [\n        \"NN\"\n    ], \n    \"handlers\": [\n        \"NNS\"\n    ], \n    \"Richardson-Vicks\": [\n        \"NNP\"\n    ], \n    \"allows\": [\n        \"VBZ\"\n    ], \n    \"Halleck\": [\n        \"NNP\"\n    ], \n    \"Sponge\": [\n        \"NNP\"\n    ], \n    \"TEAMSTERS\": [\n        \"NNPS\"\n    ], \n    \"graph\": [\n        \"NN\"\n    ], \n    \"MORE\": [\n        \"JJR\", \n        \"RBR\", \n        \"RB\"\n    ], \n    \"stand-in\": [\n        \"NN\"\n    ], \n    \"hump\": [\n        \"NN\"\n    ], \n    \"Sheriff\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"suddenly\": [\n        \"RB\"\n    ], \n    \"semiconductors\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"vertebral\": [\n        \"JJ\"\n    ], \n    \"genealogies\": [\n        \"NNS\"\n    ], \n    \"fearfully\": [\n        \"RB\"\n    ], \n    \"Gant\": [\n        \"NNP\"\n    ], \n    \"much-revised\": [\n        \"JJ\"\n    ], \n    \"vertebrae\": [\n        \"NNS\"\n    ], \n    \"Evaluation\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"acumen\": [\n        \"NN\"\n    ], \n    \"Columbus\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Comerica\": [\n        \"NNP\"\n    ], \n    \"wield\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"T-shirt\": [\n        \"NN\", \n        \"NNS\"\n    ], \n    \"Sovietologist\": [\n        \"NN\"\n    ], \n    \"demeaned\": [\n        \"VBN\"\n    ], \n    \"permanently\": [\n        \"RB\"\n    ], \n    \"pausing\": [\n        \"VBG\"\n    ], \n    \"Tobacco\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Bandow\": [\n        \"NNP\"\n    ], \n    \"re-elected\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Ten-year-old\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Shropshire\": [\n        \"NNP\"\n    ], \n    \"outlawry\": [\n        \"NN\"\n    ], \n    \"stethoscope\": [\n        \"NN\"\n    ], \n    \"Francisco-area\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Barriers\": [\n        \"NNS\"\n    ], \n    \"MobiTel\": [\n        \"NNP\"\n    ], \n    \"three-masted\": [\n        \"JJ\"\n    ], \n    \"soloists\": [\n        \"NNS\"\n    ], \n    \"Approaching\": [\n        \"VBG\"\n    ], \n    \"undreamed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"Kabul\": [\n        \"NNP\"\n    ], \n    \"berth\": [\n        \"NN\"\n    ], \n    \"Toulouse\": [\n        \"NNP\"\n    ], \n    \"trappings\": [\n        \"NNS\"\n    ], \n    \"location-minded\": [\n        \"JJ\"\n    ], \n    \"instrumental-reward\": [\n        \"JJ\"\n    ], \n    \"shielded\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"infests\": [\n        \"VBZ\"\n    ], \n    \"mainframe-manufacturing\": [\n        \"NN\"\n    ], \n    \"Goldwater\": [\n        \"NNP\"\n    ], \n    \"tapioca\": [\n        \"NN\"\n    ], \n    \"oat-based\": [\n        \"JJ\"\n    ], \n    \"cross-react\": [\n        \"VBP\"\n    ], \n    \"Sows\": [\n        \"NNS\"\n    ], \n    \"CARE\": [\n        \"NNP\"\n    ], \n    \"palest\": [\n        \"JJS\"\n    ], \n    \"Brahmsian\": [\n        \"JJ\"\n    ], \n    \"prompting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"joints\": [\n        \"NNS\"\n    ], \n    \"Cresswell\": [\n        \"NNP\"\n    ], \n    \"super-strict\": [\n        \"JJ\"\n    ], \n    \"Lyphomed\": [\n        \"NNP\"\n    ], \n    \"trading-house\": [\n        \"JJ\"\n    ], \n    \"Speaker\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"urinals\": [\n        \"NNS\"\n    ], \n    \"Paterson\": [\n        \"NNP\"\n    ], \n    \"drug-consuming\": [\n        \"JJ\"\n    ], \n    \"more-efficient\": [\n        \"JJ\"\n    ], \n    \"chores\": [\n        \"NNS\"\n    ], \n    \"Dresden\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"benzodiazepines\": [\n        \"NNS\"\n    ], \n    \"Electron\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"stemming\": [\n        \"VBG\"\n    ], \n    \"whore\": [\n        \"NN\"\n    ], \n    \"toxicologist\": [\n        \"NN\"\n    ], \n    \"buzzword\": [\n        \"NN\"\n    ], \n    \"hoaxes\": [\n        \"NNS\"\n    ], \n    \"Improve\": [\n        \"VB\"\n    ], \n    \"mould\": [\n        \"VB\"\n    ], \n    \"simplicity\": [\n        \"NN\"\n    ], \n    \"tollgate\": [\n        \"NN\"\n    ], \n    \"three-lawyer\": [\n        \"JJ\"\n    ], \n    \"Lowell\": [\n        \"NNP\"\n    ], \n    \"Metzenbaums\": [\n        \"NNPS\"\n    ], \n    \"Hanft\": [\n        \"NNP\"\n    ], \n    \"reflect\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Etch-a-Sketch\": [\n        \"NNP\"\n    ], \n    \"cowpony\": [\n        \"NN\"\n    ], \n    \"Mackinac\": [\n        \"NNP\"\n    ], \n    \"ballads\": [\n        \"NNS\"\n    ], \n    \"equivalent-choice\": [\n        \"JJ\"\n    ], \n    \"replete\": [\n        \"JJ\"\n    ], \n    \"shortcomings\": [\n        \"NNS\"\n    ], \n    \"Fairbrothers\": [\n        \"NNP\"\n    ], \n    \"Seas\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Sear\": [\n        \"VB\"\n    ], \n    \"counter-intelligence\": [\n        \"JJ\"\n    ], \n    \"departure\": [\n        \"NN\"\n    ], \n    \"Seat\": [\n        \"NN\"\n    ], \n    \"groundless\": [\n        \"JJ\"\n    ], \n    \"funeral-accessories\": [\n        \"NNS\"\n    ], \n    \"cross-legged\": [\n        \"JJ\"\n    ], \n    \"Seal\": [\n        \"NNP\"\n    ], \n    \"Psithyrus\": [\n        \"NNP\"\n    ], \n    \"Witman\": [\n        \"NNP\"\n    ], \n    \"Describing\": [\n        \"VBG\"\n    ], \n    \"magnanimity\": [\n        \"NN\"\n    ], \n    \"best-case\": [\n        \"JJ\"\n    ], \n    \"Oce\": [\n        \"NNP\"\n    ], \n    \"Weizsaecker\": [\n        \"NNP\"\n    ], \n    \"dissolving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"quarrels\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"unusually\": [\n        \"RB\"\n    ], \n    \"Shillong\": [\n        \"NNP\"\n    ], \n    \"Asian-American\": [\n        \"JJ\"\n    ], \n    \"Brunswick\": [\n        \"NNP\"\n    ], \n    \"forgiving\": [\n        \"VBG\", \n        \"JJ\"\n    ], \n    \"Polyakova\": [\n        \"NNP\"\n    ], \n    \"March\": [\n        \"NNP\"\n    ], \n    \"reference-points\": [\n        \"NNS\"\n    ], \n    \"bridged-T\": [\n        \"NNP\"\n    ], \n    \"inward\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"appeals.\": [\n        \"NNS\"\n    ], \n    \"prodigy\": [\n        \"NN\"\n    ], \n    \"harmless\": [\n        \"JJ\"\n    ], \n    \"verifiably\": [\n        \"RB\"\n    ], \n    \"HOCKEY\": [\n        \"NN\"\n    ], \n    \"Opposition\": [\n        \"NN\"\n    ], \n    \"self-willed\": [\n        \"JJ\"\n    ], \n    \"Bowing\": [\n        \"VBG\"\n    ], \n    \"Shaiken\": [\n        \"NNP\"\n    ], \n    \"public...\": [\n        \":\"\n    ], \n    \"cantons\": [\n        \"NNS\"\n    ], \n    \"MGM\\\\/UA\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"return\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"racoons\": [\n        \"NNS\"\n    ], \n    \"Downbeat\": [\n        \"NNP\"\n    ], \n    \"Mephistopheles\": [\n        \"NNP\"\n    ], \n    \"arbitrageur\": [\n        \"NN\"\n    ], \n    \"state-of-the-market\": [\n        \"JJ\"\n    ], \n    \"Complexity\": [\n        \"NN\"\n    ], \n    \"cigarettes\": [\n        \"NNS\"\n    ], \n    \"corpocrat\": [\n        \"NN\"\n    ], \n    \"milestone\": [\n        \"NN\"\n    ], \n    \"Rotenberg\": [\n        \"NNP\"\n    ], \n    \"dividend-related\": [\n        \"JJ\"\n    ], \n    \"SURGED\": [\n        \"VBD\"\n    ], \n    \"ginning\": [\n        \"NN\"\n    ], \n    \"Rag\": [\n        \"NNP\"\n    ], \n    \"Rae\": [\n        \"NNP\"\n    ], \n    \"Ran\": [\n        \"VBD\"\n    ], \n    \"penalty-lending\": [\n        \"JJ\"\n    ], \n    \"Ram\": [\n        \"NNP\"\n    ], \n    \"Raj\": [\n        \"NNP\"\n    ], \n    \"reservists\": [\n        \"NNS\"\n    ], \n    \"Eight-foot-tall\": [\n        \"JJ\"\n    ], \n    \"cobblestones\": [\n        \"NNS\"\n    ], \n    \"Rat\": [\n        \"NNP\"\n    ], \n    \"streamside\": [\n        \"NN\"\n    ], \n    \"Rap\": [\n        \"NN\"\n    ], \n    \"self-acceptance\": [\n        \"NN\"\n    ], \n    \"Sport\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"McNeil\": [\n        \"NNP\"\n    ], \n    \"Rax\": [\n        \"NNP\"\n    ], \n    \"Ray\": [\n        \"NNP\", \n        \"NNPS\", \n        \"NN\"\n    ], \n    \"pirates\": [\n        \"NNS\"\n    ], \n    \"assemblage\": [\n        \"NN\"\n    ], \n    \"needless\": [\n        \"JJ\"\n    ], \n    \"generation\": [\n        \"NN\"\n    ], \n    \"Fichte\": [\n        \"NNP\"\n    ], \n    \"Foothills\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"Burke-Rostagno\": [\n        \"NNP\"\n    ], \n    \"pirated\": [\n        \"VBN\"\n    ], \n    \"Complex\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"are...\": [\n        \":\"\n    ], \n    \"Warehouse\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Vappenfabrikk\": [\n        \"NNP\"\n    ], \n    \"wangled\": [\n        \"VBD\"\n    ], \n    \"platform-controller\": [\n        \"NN\"\n    ], \n    \"theologians\": [\n        \"NNS\"\n    ], \n    \"Fiap\": [\n        \"NNP\"\n    ], \n    \"Cinemactor\": [\n        \"NNP\"\n    ], \n    \"Lakes\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"sea-turtle-saving\": [\n        \"JJ\"\n    ], \n    \"Pullover\": [\n        \"NNP\"\n    ], \n    \"Prophet\": [\n        \"NNP\"\n    ], \n    \"mildewy\": [\n        \"JJ\"\n    ], \n    \"paleoexplosion\": [\n        \"NN\"\n    ], \n    \"kilns\": [\n        \"NNS\"\n    ], \n    \"Univest\": [\n        \"NNP\"\n    ], \n    \"fiber\": [\n        \"NN\"\n    ], \n    \"gimbaled\": [\n        \"JJ\"\n    ], \n    \"causally\": [\n        \"RB\"\n    ], \n    \"Camerino\": [\n        \"NNP\"\n    ], \n    \"enveloping\": [\n        \"VBG\"\n    ], \n    \"big-deposit\": [\n        \"JJ\"\n    ], \n    \"Tambo\": [\n        \"NNP\"\n    ], \n    \"pullbacks\": [\n        \"NNS\"\n    ], \n    \"MTU\": [\n        \"NNP\"\n    ], \n    \"stage-managing\": [\n        \"NN\"\n    ], \n    \"Playworld\": [\n        \"NNP\"\n    ], \n    \"Wingback\": [\n        \"NNP\"\n    ], \n    \"thread\": [\n        \"NN\"\n    ], \n    \"success\": [\n        \"NN\"\n    ], \n    \"Breakthrough\": [\n        \"NNP\"\n    ], \n    \"Dorian\": [\n        \"NNP\"\n    ], \n    \"Scherer\": [\n        \"NNP\"\n    ], \n    \"threat\": [\n        \"NN\"\n    ], \n    \"WGBH\": [\n        \"NNP\"\n    ], \n    \"Praises\": [\n        \"VBZ\"\n    ], \n    \"wide-scale\": [\n        \"JJ\"\n    ], \n    \"radical\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"churning\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"cloddishness\": [\n        \"NN\"\n    ], \n    \"Westdeutsche\": [\n        \"NNP\"\n    ], \n    \"unredeemed\": [\n        \"JJ\"\n    ], \n    \"desegregation\": [\n        \"NN\"\n    ], \n    \"Jacky\": [\n        \"NNP\"\n    ], \n    \"abrogated\": [\n        \"VBN\"\n    ], \n    \"output-axis\": [\n        \"NN\"\n    ], \n    \"semi-minor\": [\n        \"JJ\"\n    ], \n    \"Olof\": [\n        \"NNP\"\n    ], \n    \"script\": [\n        \"NN\"\n    ], \n    \"interact\": [\n        \"VBP\", \n        \"VB\"\n    ], \n    \"coasts\": [\n        \"NNS\"\n    ], \n    \"Clancy\": [\n        \"NNP\"\n    ], \n    \"doomsday\": [\n        \"NN\"\n    ], \n    \"Aircraft\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"ever-so-Oxonian\": [\n        \"JJ\"\n    ], \n    \"Rubbish\": [\n        \"NN\"\n    ], \n    \"pitted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"financer\": [\n        \"NN\"\n    ], \n    \"finances\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"imperfect\": [\n        \"JJ\"\n    ], \n    \"Rollie\": [\n        \"NNP\"\n    ], \n    \"boilerplate\": [\n        \"NN\"\n    ], \n    \"gagwriters\": [\n        \"NNS\"\n    ], \n    \"dethroned\": [\n        \"VBN\"\n    ], \n    \"exploded\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"litigated\": [\n        \"VBN\"\n    ], \n    \"convinces\": [\n        \"VBZ\"\n    ], \n    \"Boston-based\": [\n        \"JJ\"\n    ], \n    \"Rollin\": [\n        \"NNP\"\n    ], \n    \"intergrated-steel\": [\n        \"NN\"\n    ], \n    \"indecisively\": [\n        \"RB\"\n    ], \n    \"non-competitive\": [\n        \"JJ\"\n    ], \n    \"Unifil\": [\n        \"NNP\"\n    ], \n    \"convinced\": [\n        \"VBN\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"explodes\": [\n        \"VBZ\"\n    ], \n    \"time-servers\": [\n        \"NNS\"\n    ], \n    \"throttle\": [\n        \"NN\"\n    ], \n    \"dans\": [\n        \"FW\"\n    ], \n    \"stall\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"stalk\": [\n        \"VBP\"\n    ], \n    \"consumer-finance\": [\n        \"JJ\"\n    ], \n    \"cradle-to-grave\": [\n        \"JJ\"\n    ], \n    \"dang\": [\n        \"JJ\"\n    ], \n    \"Winthrop-University\": [\n        \"NNP\"\n    ], \n    \"stale\": [\n        \"JJ\"\n    ], \n    \"MD-82s\": [\n        \"NNPS\"\n    ], \n    \"cleaner\": [\n        \"JJR\", \n        \"NN\"\n    ], \n    \"depletes\": [\n        \"VBZ\"\n    ], \n    \"IIcx\": [\n        \"NNP\"\n    ], \n    \"gals\": [\n        \"NNS\"\n    ], \n    \"globulin\": [\n        \"NN\"\n    ], \n    \"imports\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Reilly\": [\n        \"NNP\"\n    ], \n    \"decadent\": [\n        \"JJ\"\n    ], \n    \"needs\": [\n        \"VBZ\", \n        \"NNS\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"gale\": [\n        \"NN\"\n    ], \n    \"IIci\": [\n        \"NNP\"\n    ], \n    \"oaken\": [\n        \"JJ\"\n    ], \n    \"depleted\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"cleaned\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"gall\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Steinkuehler\": [\n        \"NNP\"\n    ], \n    \"federal-state\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Perkins\": [\n        \"NNP\"\n    ], \n    \"Agoeng\": [\n        \"NNP\"\n    ], \n    \"seven-story\": [\n        \"JJ\"\n    ], \n    \"Bullet\": [\n        \"NNP\"\n    ], \n    \"thiamin\": [\n        \"NN\"\n    ], \n    \"cropped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"sherry\": [\n        \"NN\"\n    ], \n    \"gains\": [\n        \"NNS\", \n        \"NN\", \n        \"VBZ\"\n    ], \n    \"unperturbed\": [\n        \"JJ\"\n    ], \n    \"re-sharpening\": [\n        \"NN\"\n    ], \n    \"broadcastings\": [\n        \"NNS\"\n    ], \n    \"ARF\": [\n        \"NNP\"\n    ], \n    \"headstones\": [\n        \"NNS\"\n    ], \n    \"park\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Klopfenstein\": [\n        \"NNP\"\n    ], \n    \"fresco\": [\n        \"NN\"\n    ], \n    \"Benzes\": [\n        \"NNP\"\n    ], \n    \"Meltex\": [\n        \"NNP\"\n    ], \n    \"little-girl\": [\n        \"JJ\"\n    ], \n    \"coastal\": [\n        \"JJ\"\n    ], \n    \"Melted\": [\n        \"VBN\"\n    ], \n    \"Gotschall\": [\n        \"NNP\"\n    ], \n    \"Tabarro\": [\n        \"FW\"\n    ], \n    \"explicable\": [\n        \"JJ\"\n    ], \n    \"seasons\": [\n        \"NNS\"\n    ], \n    \"machete\": [\n        \"NN\"\n    ], \n    \"infrastructures\": [\n        \"NNS\"\n    ], \n    \"polyethylene\": [\n        \"NN\"\n    ], \n    \"Volta\": [\n        \"NNP\"\n    ], \n    \"doggie\": [\n        \"JJ\"\n    ], \n    \"Creation\": [\n        \"NN\"\n    ], \n    \"lowest-paying\": [\n        \"JJ\"\n    ], \n    \"Straus\": [\n        \"NNP\"\n    ], \n    \"unheralded\": [\n        \"JJ\"\n    ], \n    \"Gracie\": [\n        \"NNP\"\n    ], \n    \"pizzazz\": [\n        \"NN\"\n    ], \n    \"spiralis\": [\n        \"NNS\"\n    ], \n    \"pottery\": [\n        \"NN\"\n    ], \n    \"wree\": [\n        \"NN\"\n    ], \n    \"health-coverage\": [\n        \"NN\"\n    ], \n    \"fond\": [\n        \"JJ\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"changed...\": [\n        \":\"\n    ], \n    \"antilock\": [\n        \"JJ\"\n    ], \n    \"Suor\": [\n        \"FW\"\n    ], \n    \"font\": [\n        \"NN\"\n    ], \n    \"feedstock\": [\n        \"NN\"\n    ], \n    \"endocrinologists\": [\n        \"NNS\"\n    ], \n    \"Launder\": [\n        \"NNP\"\n    ], \n    \"Reaganauts\": [\n        \"NNS\"\n    ], \n    \"technologically\": [\n        \"RB\"\n    ], \n    \"ground-based\": [\n        \"JJ\"\n    ], \n    \"Masato\": [\n        \"NNP\"\n    ], \n    \"reconnoiter\": [\n        \"VBP\"\n    ], \n    \"Highest\": [\n        \"JJS\"\n    ], \n    \"arrowheads\": [\n        \"NNS\"\n    ], \n    \"sacking\": [\n        \"VBG\"\n    ], \n    \"mudwagon\": [\n        \"NN\"\n    ], \n    \"Antinori\": [\n        \"NNP\"\n    ], \n    \"Haijac\": [\n        \"NNP\"\n    ], \n    \"better-off\": [\n        \"JJR\", \n        \"JJ\"\n    ], \n    \"citybred\": [\n        \"JJ\"\n    ], \n    \"Russian-language\": [\n        \"JJ\"\n    ], \n    \"bug-free\": [\n        \"JJ\"\n    ], \n    \"concededly\": [\n        \"RB\"\n    ], \n    \"relational\": [\n        \"JJ\"\n    ], \n    \"instinctive\": [\n        \"JJ\"\n    ], \n    \"Yorkshire\": [\n        \"NNP\"\n    ], \n    \"Institutions\": [\n        \"NNS\", \n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Passenger\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Bible-loving\": [\n        \"JJ\"\n    ], \n    \"crucifying\": [\n        \"VBG\"\n    ], \n    \"Marchers\": [\n        \"NNPS\"\n    ], \n    \"noncustomer\": [\n        \"NN\"\n    ], \n    \"Chamorro\": [\n        \"NNP\"\n    ], \n    \"sacrificium\": [\n        \"FW\"\n    ], \n    \"cartoons\": [\n        \"NNS\"\n    ], \n    \"Litvack\": [\n        \"NNP\"\n    ], \n    \"baroque\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Jellison\": [\n        \"NNP\"\n    ], \n    \"tourney\": [\n        \"NN\"\n    ], \n    \"rainout\": [\n        \"NN\"\n    ], \n    \"stump\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"pvt\": [\n        \"NN\"\n    ], \n    \"dump\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"CITIZEN\": [\n        \"NNP\"\n    ], \n    \"boulders\": [\n        \"NNS\"\n    ], \n    \"Negotiators\": [\n        \"NNS\"\n    ], \n    \"arb\": [\n        \"NN\"\n    ], \n    \"arc\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"dumb\": [\n        \"JJ\"\n    ], \n    \"are\": [\n        \"VBP\", \n        \"NNP\"\n    ], \n    \"facings\": [\n        \"NNS\"\n    ], \n    \"cleverly\": [\n        \"RB\"\n    ], \n    \"unsure\": [\n        \"JJ\"\n    ], \n    \"arm\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Mineral\": [\n        \"NNP\"\n    ], \n    \"Pavlov\": [\n        \"NNP\"\n    ], \n    \"book-publishing\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"EP-3E\": [\n        \"NNP\"\n    ], \n    \"roundhead\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"freshmen\": [\n        \"NNS\"\n    ], \n    \"unpaved\": [\n        \"JJ\"\n    ], \n    \"drooping\": [\n        \"VBG\"\n    ], \n    \"Dongen\": [\n        \"NNP\"\n    ], \n    \"unions\": [\n        \"NNS\"\n    ], \n    \"plywood\": [\n        \"NN\"\n    ], \n    \"banalities\": [\n        \"NNS\"\n    ], \n    \"file-those\": [\n        \"NN\"\n    ], \n    \"Finders\": [\n        \"NNP\"\n    ], \n    \"Commerzbank\": [\n        \"NNP\"\n    ], \n    \"conqueror\": [\n        \"NN\"\n    ], \n    \"Streisand\": [\n        \"NNP\"\n    ], \n    \"ulcerative\": [\n        \"JJ\"\n    ], \n    \"Fax\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"dandily\": [\n        \"RB\"\n    ], \n    \"Fay\": [\n        \"NNP\"\n    ], \n    \"importers\": [\n        \"NNS\"\n    ], \n    \"opposition\": [\n        \"NN\"\n    ], \n    \"fetchingly\": [\n        \"RB\"\n    ], \n    \"Zara\": [\n        \"NNP\"\n    ], \n    \"Hardee\": [\n        \"NNP\"\n    ], \n    \"clods\": [\n        \"NNS\"\n    ], \n    \"MINOR\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"orphanage\": [\n        \"NN\"\n    ], \n    \"movers\": [\n        \"NNS\"\n    ], \n    \"fascicles\": [\n        \"NNS\"\n    ], \n    \"textile-producing\": [\n        \"JJ\"\n    ], \n    \"no-fat\": [\n        \"JJ\"\n    ], \n    \"Appropriate\": [\n        \"JJ\"\n    ], \n    \"Cornfield\": [\n        \"NNP\"\n    ], \n    \"trouble-shooter\": [\n        \"NN\"\n    ], \n    \"fraternity\": [\n        \"NN\"\n    ], \n    \"axiological\": [\n        \"JJ\"\n    ], \n    \"reassessed\": [\n        \"VBD\"\n    ], \n    \"enchained\": [\n        \"VBN\"\n    ], \n    \"finds\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Hallowell\": [\n        \"NNP\"\n    ], \n    \"Birch\": [\n        \"NNP\"\n    ], \n    \"unsigned\": [\n        \"JJ\"\n    ], \n    \"renationalize\": [\n        \"VB\"\n    ], \n    \"incandescent\": [\n        \"JJ\"\n    ], \n    \"untracked\": [\n        \"JJ\"\n    ], \n    \"pursue\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"semipublic\": [\n        \"JJ\"\n    ], \n    \"acrid\": [\n        \"JJ\"\n    ], \n    \"eyewitness\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"sever\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"suspenders\": [\n        \"NNS\"\n    ], \n    \"thermodynamics\": [\n        \"NNS\"\n    ], \n    \"AT&T-sponsored\": [\n        \"JJ\"\n    ], \n    \"Indocin\": [\n        \"NNP\"\n    ], \n    \"Kompakt\": [\n        \"NNP\"\n    ], \n    \"watchword\": [\n        \"NN\"\n    ], \n    \"Plan\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"per-sale\": [\n        \"JJ\"\n    ], \n    \"Fan\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"waypoint\": [\n        \"NN\"\n    ], \n    \"debasing\": [\n        \"VBG\"\n    ], \n    \"super-secret\": [\n        \"JJ\"\n    ], \n    \"AP600\": [\n        \"NN\"\n    ], \n    \"loan-by-phone\": [\n        \"JJ\"\n    ], \n    \"ten-hour\": [\n        \"JJ\"\n    ], \n    \"misbehaving\": [\n        \"VBG\"\n    ], \n    \"heighten\": [\n        \"VB\"\n    ], \n    \"Mindscape\": [\n        \"NNP\"\n    ], \n    \"Motsoaledi\": [\n        \"NNP\"\n    ], \n    \"civility\": [\n        \"NN\"\n    ], \n    \"churchly\": [\n        \"JJ\"\n    ], \n    \"pitchfork\": [\n        \"NN\"\n    ], \n    \"behavior\": [\n        \"NN\"\n    ], \n    \"long-hoped-for\": [\n        \"JJ\"\n    ], \n    \"moustache\": [\n        \"NN\"\n    ], \n    \"Examiners\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"all-black\": [\n        \"JJ\"\n    ], \n    \"Jaguar-GM\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Colonia\": [\n        \"NNP\"\n    ], \n    \"Affaire\": [\n        \"NNP\"\n    ], \n    \"Tip\": [\n        \"NNP\"\n    ], \n    \"micromanagement\": [\n        \"NN\"\n    ], \n    \"rip\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"shamrock\": [\n        \"NN\"\n    ], \n    \"ecstasy\": [\n        \"NN\"\n    ], \n    \"Tin\": [\n        \"NNP\"\n    ], \n    \"rim\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"TRACY-LOCKE\": [\n        \"NNP\"\n    ], \n    \"rig\": [\n        \"NN\", \n        \"VBP\", \n        \"VB\"\n    ], \n    \"rid\": [\n        \"JJ\", \n        \"VBN|JJ\", \n        \"VBD\", \n        \"VBN\", \n        \"RB\", \n        \"VB\"\n    ], \n    \"earnings-related\": [\n        \"JJ\"\n    ], \n    \"rib\": [\n        \"NN\"\n    ], \n    \"ethnicity\": [\n        \"NN\"\n    ], \n    \"Interest-rate\": [\n        \"JJ\"\n    ], \n    \"lengthy\": [\n        \"JJ\"\n    ], \n    \"Bipartisan\": [\n        \"JJ\"\n    ], \n    \"minin\": [\n        \"VBG\"\n    ], \n    \"U.S.-based\": [\n        \"JJ\"\n    ], \n    \"lengths\": [\n        \"NNS\"\n    ], \n    \"debt-riddled\": [\n        \"JJ\"\n    ], \n    \"ideologies\": [\n        \"NNS\"\n    ], \n    \"propping\": [\n        \"VBG\"\n    ], \n    \"Jiffy\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"farm-state\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"theologian-philosophers\": [\n        \"NN\"\n    ], \n    \"time-&-motion\": [\n        \"JJ\"\n    ], \n    \"Schroders\": [\n        \"NNP\"\n    ], \n    \"prosodies\": [\n        \"NNS\"\n    ], \n    \"radicalism\": [\n        \"NN\"\n    ], \n    \"fastens\": [\n        \"VBZ\"\n    ], \n    \"Blyth\": [\n        \"NNP\"\n    ], \n    \"one-gee\": [\n        \"JJ\"\n    ], \n    \"brooding\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Kipling\": [\n        \"NNP\", \n        \"VBG\"\n    ], \n    \"moving\": [\n        \"VBG\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"Drug\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"uneasily\": [\n        \"RB\"\n    ], \n    \"deluding\": [\n        \"VBG\"\n    ], \n    \"Duzan\": [\n        \"NNP\"\n    ], \n    \"Lilien\": [\n        \"NNP\"\n    ], \n    \"castigates\": [\n        \"VBZ\"\n    ], \n    \"solemnity\": [\n        \"NN\"\n    ], \n    \"junk-market\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Harbor\\\\/Save\": [\n        \"NNP\"\n    ], \n    \"metis\": [\n        \"NNS\"\n    ], \n    \"Smyrna\": [\n        \"NNP\"\n    ], \n    \"analysis\": [\n        \"NN\"\n    ], \n    \"thermostated\": [\n        \"VBN\"\n    ], \n    \"two-edged\": [\n        \"JJ\"\n    ], \n    \"solids\": [\n        \"NNS\"\n    ], \n    \"castigated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"broods\": [\n        \"NNS\"\n    ], \n    \"Myrdal\": [\n        \"NNP\"\n    ], \n    \"starved\": [\n        \"VBN\"\n    ], \n    \"information-products\": [\n        \"NNS\"\n    ], \n    \"two-step\": [\n        \"JJ\"\n    ], \n    \"Takes\": [\n        \"VBZ\"\n    ], \n    \"Measurements\": [\n        \"NNS\", \n        \"NNP\"\n    ], \n    \"Kochola\": [\n        \"NNP\"\n    ], \n    \"reincarnated\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Everly\": [\n        \"NNP\"\n    ], \n    \"Taken\": [\n        \"VBN\"\n    ], \n    \"retired\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"cabaret\": [\n        \"NN\"\n    ], \n    \"Nope\": [\n        \"UH\"\n    ], \n    \"retiree\": [\n        \"NN\"\n    ], \n    \"Triomphe\": [\n        \"NNP\"\n    ], \n    \"old-name\": [\n        \"JJ\"\n    ], \n    \"Adventurers\": [\n        \"NNS\"\n    ], \n    \"Sundance-based\": [\n        \"JJ\"\n    ], \n    \"crack-cocaine\": [\n        \"NN\"\n    ], \n    \"violations\": [\n        \"NNS\"\n    ], \n    \"incomes\": [\n        \"NNS\"\n    ], \n    \"non-algebraically\": [\n        \"JJ\"\n    ], \n    \"joyless\": [\n        \"JJ\"\n    ], \n    \"Desprez\": [\n        \"NNP\"\n    ], \n    \"aggregation\": [\n        \"NN\"\n    ], \n    \"Arapacis\": [\n        \"NNP\"\n    ], \n    \"Continential\": [\n        \"NNP\"\n    ], \n    \"bullock\": [\n        \"NN\"\n    ], \n    \"off-network\": [\n        \"JJ\"\n    ], \n    \"Kia\": [\n        \"NNP\"\n    ], \n    \"glittery\": [\n        \"NN\"\n    ], \n    \"Jehovah\": [\n        \"NNP\"\n    ], \n    \"pithy\": [\n        \"JJ\"\n    ], \n    \"recond\": [\n        \"VBD\"\n    ], \n    \"Brealey\": [\n        \"NNP\"\n    ], \n    \"incidental\": [\n        \"JJ\"\n    ], \n    \"Manthey\": [\n        \"NNP\"\n    ], \n    \"breeder\": [\n        \"NN\"\n    ], \n    \"chin-ups\": [\n        \"NNS\"\n    ], \n    \"hawk-faced\": [\n        \"JJ\"\n    ], \n    \"jumpsuits\": [\n        \"NN\"\n    ], \n    \"PATOIS\": [\n        \"NNP\"\n    ], \n    \"resourcefully\": [\n        \"RB\"\n    ], \n    \"descent\": [\n        \"NN\"\n    ], \n    \"anti-heroes\": [\n        \"NNS\"\n    ], \n    \"eluding\": [\n        \"VBG\"\n    ], \n    \"traits\": [\n        \"NNS\"\n    ], \n    \"marmalade\": [\n        \"NN\"\n    ], \n    \"Libor\": [\n        \"NNP\"\n    ], \n    \"yachtsman\": [\n        \"NN\"\n    ], \n    \"Channel\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Milgrim\": [\n        \"NNP\"\n    ], \n    \"Discovered\": [\n        \"VBN\"\n    ], \n    \"Fledermaus\": [\n        \"NNP\"\n    ], \n    \"prow\": [\n        \"NN\"\n    ], \n    \"compressors\": [\n        \"NNS\"\n    ], \n    \"nosing\": [\n        \"VBG\"\n    ], \n    \"pros\": [\n        \"NNS\"\n    ], \n    \"Albuquerque\": [\n        \"NNP\"\n    ], \n    \"prop\": [\n        \"VB\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"prom\": [\n        \"NN\"\n    ], \n    \"Reflecting\": [\n        \"VBG\"\n    ], \n    \"Comiskey\": [\n        \"NNP\"\n    ], \n    \"Adelman\": [\n        \"NNP\"\n    ], \n    \"prof\": [\n        \"NN\"\n    ], \n    \"business....\": [\n        \":\"\n    ], \n    \"prod\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"red-handed\": [\n        \"JJ\"\n    ], \n    \"apathetic\": [\n        \"JJ\"\n    ], \n    \"Aspilia\": [\n        \"NN\"\n    ], \n    \"Substance\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"ecumenicists\": [\n        \"NNS\"\n    ], \n    \"scalawags\": [\n        \"NNS\"\n    ], \n    \"horse-radish\": [\n        \"NN\"\n    ], \n    \"firebombed\": [\n        \"VBN\"\n    ], \n    \"denationalizations\": [\n        \"NNS\"\n    ], \n    \"Dreiser\": [\n        \"NNP\"\n    ], \n    \"Lackland\": [\n        \"NNP\"\n    ], \n    \"price-level\": [\n        \"JJ\"\n    ], \n    \"Translated\": [\n        \"VBN\"\n    ], \n    \"corn\": [\n        \"NN\"\n    ], \n    \"Edley\": [\n        \"NNP\"\n    ], \n    \"intense\": [\n        \"JJ\"\n    ], \n    \"Signet\": [\n        \"NNP\"\n    ], \n    \"Catastrophic-health\": [\n        \"NN\"\n    ], \n    \"Malamud\": [\n        \"NNP\"\n    ], \n    \"Lanyi\": [\n        \"NNP\"\n    ], \n    \"bleeders\": [\n        \"NNS\"\n    ], \n    \"seeped\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"most\": [\n        \"RBS\", \n        \"JJ\", \n        \"NN\", \n        \"RB\", \n        \"RBS|JJS\", \n        \"JJS\"\n    ], \n    \"tortuous\": [\n        \"JJ\"\n    ], \n    \"Liqueur\": [\n        \"NNP\"\n    ], \n    \"Trachea\": [\n        \"NN\"\n    ], \n    \"Petco\": [\n        \"NNP\"\n    ], \n    \"subvert\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"greets\": [\n        \"VBZ\"\n    ], \n    \"Azalea\": [\n        \"NNP\"\n    ], \n    \"modal\": [\n        \"JJ\"\n    ], \n    \"Dittamore\": [\n        \"NNP\"\n    ], \n    \"Wood-products\": [\n        \"NNS\"\n    ], \n    \"credible\": [\n        \"JJ\"\n    ], \n    \"cutoff\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Hawkins\": [\n        \"NNP\"\n    ], \n    \"Robards\": [\n        \"NNP\"\n    ], \n    \"hoodle\": [\n        \"UH\"\n    ], \n    \"incoherence\": [\n        \"NN\"\n    ], \n    \"free-marketer\": [\n        \"NN\"\n    ], \n    \"resigns\": [\n        \"VBZ\"\n    ], \n    \"Approximately\": [\n        \"RB\"\n    ], \n    \"piteous\": [\n        \"JJ\"\n    ], \n    \"non-interest-bearing\": [\n        \"JJ\"\n    ], \n    \"Hawking\": [\n        \"NNP\"\n    ], \n    \"paradigmatic\": [\n        \"JJ\"\n    ], \n    \"pleasure-seeking\": [\n        \"NN\"\n    ], \n    \"credibly\": [\n        \"RB\"\n    ], \n    \"Speidel\": [\n        \"NNP\"\n    ], \n    \"MACHINES\": [\n        \"NNP\"\n    ], \n    \"Shulman\": [\n        \"NNP\"\n    ], \n    \"securities-trading\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"unstructured\": [\n        \"JJ\"\n    ], \n    \"osseous\": [\n        \"JJ\"\n    ], \n    \"computer-trading\": [\n        \"NN\"\n    ], \n    \"pallid\": [\n        \"JJ\"\n    ], \n    \"signifies\": [\n        \"VBZ\"\n    ], \n    \"unadorned\": [\n        \"JJ\"\n    ], \n    \"oxidizer\": [\n        \"NN\"\n    ], \n    \"signified\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Thermoforming\": [\n        \"VBG\"\n    ], \n    \"Povich\": [\n        \"NNP\"\n    ], \n    \"Shape\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"cash-value\": [\n        \"JJ\"\n    ], \n    \"perplexing\": [\n        \"JJ\"\n    ], \n    \"Compeyson\": [\n        \"NNP\"\n    ], \n    \"Backstitch\": [\n        \"VB\"\n    ], \n    \"girlfriends\": [\n        \"NNS\"\n    ], \n    \"tasting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"crank\": [\n        \"VB\", \n        \"NN\"\n    ], \n    \"Chesaning\": [\n        \"NNP\"\n    ], \n    \"in-accord-with-nature\": [\n        \"JJ\"\n    ], \n    \"crane\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"billed\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Roto-Rooter\": [\n        \"NNP\"\n    ], \n    \"then-senior\": [\n        \"JJ\"\n    ], \n    \"REIT\": [\n        \"NNP\"\n    ], \n    \"gallantry\": [\n        \"NN\"\n    ], \n    \"preposition\": [\n        \"NN\"\n    ], \n    \"caller\": [\n        \"NN\"\n    ], \n    \"Partlow\": [\n        \"NNP\"\n    ], \n    \"good-cop\": [\n        \"JJ\"\n    ], \n    \"Leon\": [\n        \"NNP\"\n    ], \n    \"Thatcher\": [\n        \"NNP\"\n    ], \n    \"torpedoing\": [\n        \"VBG\"\n    ], \n    \"Mirabella\": [\n        \"NNP\"\n    ], \n    \"Rabb\": [\n        \"NNP\"\n    ], \n    \"interestrate\": [\n        \"NN\"\n    ], \n    \"Mirabello\": [\n        \"NNP\"\n    ], \n    \"called\": [\n        \"VBN\", \n        \"VBD\", \n        \"VB\"\n    ], \n    \"single-domain\": [\n        \"JJ\"\n    ], \n    \"Cooperation\": [\n        \"NNP\"\n    ], \n    \"soars\": [\n        \"NNS\"\n    ], \n    \"bluechip\": [\n        \"JJ\"\n    ], \n    \"long-established\": [\n        \"JJ\"\n    ], \n    \"ether\": [\n        \"NN\", \n        \"CC\"\n    ], \n    \"Pagni\": [\n        \"NNP\"\n    ], \n    \"Faxes\": [\n        \"NNS\"\n    ], \n    \"empire\": [\n        \"NN\"\n    ], \n    \"tentative\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"ulcerations\": [\n        \"NNS\"\n    ], \n    \"Nyers\": [\n        \"NNP\"\n    ], \n    \"towers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Mount\": [\n        \"NNP\", \n        \"NN\", \n        \"VB\"\n    ], \n    \"Saylor\": [\n        \"NNP\"\n    ], \n    \"Junkerdom\": [\n        \"NNP\"\n    ], \n    \"WITHHELD\": [\n        \"VBN\"\n    ], \n    \"Bahamian\": [\n        \"JJ\"\n    ], \n    \"Skills\": [\n        \"NNS\"\n    ], \n    \"six-cent\": [\n        \"JJ\"\n    ], \n    \"cannister\": [\n        \"NN\"\n    ], \n    \"auto-safety\": [\n        \"JJ\"\n    ], \n    \"inflame\": [\n        \"VB\"\n    ], \n    \"Arbeitskommando\": [\n        \"NNP\"\n    ], \n    \"Meekison\": [\n        \"NNP\"\n    ], \n    \"subindustry\": [\n        \"NN\"\n    ], \n    \"Discussing\": [\n        \"VBG\"\n    ], \n    \"Nautilus\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"delineation\": [\n        \"NN\"\n    ], \n    \"Kanab\": [\n        \"NNP\"\n    ], \n    \"we\": [\n        \"PRP\", \n        \"VBP\"\n    ], \n    \"Kanan\": [\n        \"NNP\"\n    ], \n    \"Sevigny\": [\n        \"NNP\"\n    ], \n    \"Piccadilly\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Rawson\": [\n        \"NNP\"\n    ], \n    \"reproaches\": [\n        \"VBZ\"\n    ], \n    \"extruding\": [\n        \"VBG\"\n    ], \n    \"Mott\": [\n        \"NNP\"\n    ], \n    \"Rugeroni\": [\n        \"NNP\"\n    ], \n    \"farm-equipment\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"pur-poises\": [\n        \"NNS\"\n    ], \n    \"Casualty\": [\n        \"NNP\"\n    ], \n    \"sale-lease-back\": [\n        \"JJ\"\n    ], \n    \"politico-sociological\": [\n        \"JJ\"\n    ], \n    \"Monthly\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"Wagnerian\": [\n        \"JJ\"\n    ], \n    \"locating\": [\n        \"VBG\"\n    ], \n    \"Asses\": [\n        \"NNS\"\n    ], \n    \"Asser\": [\n        \"NNP\"\n    ], \n    \"Bureau\": [\n        \"NNP\"\n    ], \n    \"Asset\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contributions\": [\n        \"NNS\"\n    ], \n    \"Mound\": [\n        \"NNP\"\n    ], \n    \"cupboards\": [\n        \"NNS\"\n    ], \n    \"Howry\": [\n        \"NNP\"\n    ], \n    \"pax\": [\n        \"FW\"\n    ], \n    \"Leber\": [\n        \"NNP\"\n    ], \n    \"sniped\": [\n        \"VBD\", \n        \"NN\"\n    ], \n    \"fenced\": [\n        \"JJ\", \n        \"VBN\"\n    ], \n    \"McQuown\": [\n        \"NNP\"\n    ], \n    \"UAW\": [\n        \"NNP\"\n    ], \n    \"mEq\": [\n        \"NNP\"\n    ], \n    \"UAL\": [\n        \"NNP\"\n    ], \n    \"sowbelly\": [\n        \"NN\"\n    ], \n    \"bullet-proof\": [\n        \"JJ\"\n    ], \n    \"fences\": [\n        \"NNS\"\n    ], \n    \"snipes\": [\n        \"VBZ\"\n    ], \n    \"sniper\": [\n        \"NN\"\n    ], \n    \"abode\": [\n        \"NN\"\n    ], \n    \"wished\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"lynch\": [\n        \"VB\"\n    ], \n    \"ague\": [\n        \"NN\"\n    ], \n    \"bedrooms\": [\n        \"NNS\"\n    ], \n    \"melding\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"wisher\": [\n        \"NN\"\n    ], \n    \"wishes\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Masterpieces\": [\n        \"NNPS\"\n    ], \n    \"traveler\": [\n        \"NN\"\n    ], \n    \"Giraldi\": [\n        \"NNP\"\n    ], \n    \"Flattau\": [\n        \"NNP\"\n    ], \n    \"Oliveira\": [\n        \"NNP\"\n    ], \n    \"fast-paced\": [\n        \"JJ\"\n    ], \n    \"descend\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"quintuple\": [\n        \"RB\", \n        \"VB\"\n    ], \n    \"Retailer\": [\n        \"NN\"\n    ], \n    \"BCE\": [\n        \"NNP\"\n    ], \n    \"electronic-publishing\": [\n        \"JJ\"\n    ], \n    \"CFC-12\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"outdo\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"CFC-11\": [\n        \"NN\"\n    ], \n    \"noted\": [\n        \"VBD\", \n        \"JJ\", \n        \"VBN\"\n    ], \n    \"Gevurtz\": [\n        \"NNP\"\n    ], \n    \"Teletypes\": [\n        \"NNS\"\n    ], \n    \"Pyle\": [\n        \"NNP\"\n    ], \n    \"malignant\": [\n        \"JJ\"\n    ], \n    \"REALLY\": [\n        \"NNP\"\n    ], \n    \"procession\": [\n        \"NN\"\n    ], \n    \"Upper\": [\n        \"NNP\", \n        \"JJ\"\n    ], \n    \"pro-Republican\": [\n        \"JJ\"\n    ], \n    \"sciatica\": [\n        \"NN\"\n    ], \n    \"fermenting\": [\n        \"VBG\"\n    ], \n    \"Sections\": [\n        \"NNS\"\n    ], \n    \"reclassification\": [\n        \"NN\"\n    ], \n    \"Morgenzon\": [\n        \"NNP\"\n    ], \n    \"Responses\": [\n        \"NNS\"\n    ], \n    \"astounded\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"discontinuance\": [\n        \"NN\"\n    ], \n    \"food-preservation\": [\n        \"NN\"\n    ], \n    \"Antwerpsche\": [\n        \"NNP\"\n    ], \n    \"waiting\": [\n        \"VBG\", \n        \"NN\", \n        \"JJ\"\n    ], \n    \"personal-property\": [\n        \"NN\"\n    ], \n    \"Link\": [\n        \"NNP\", \n        \"VBP\", \n        \"NN\"\n    ], \n    \"Linh\": [\n        \"NNP\"\n    ], \n    \"half-seriously\": [\n        \"RB\"\n    ], \n    \"Line\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"ammunition\": [\n        \"NN\"\n    ], \n    \"fastenings\": [\n        \"NNS\"\n    ], \n    \"Moxley\": [\n        \"NNP\"\n    ], \n    \"cf.\": [\n        \"NN\", \n        \"FW\"\n    ], \n    \"Affaires\": [\n        \"NNP\"\n    ], \n    \"Wiess\": [\n        \"NNP\"\n    ], \n    \"Dotson\": [\n        \"NNP\"\n    ], \n    \"Reebok\": [\n        \"NNP\"\n    ], \n    \"anti-homosexual\": [\n        \"JJ\"\n    ], \n    \"Dictionaries\": [\n        \"NNS\"\n    ], \n    \"rosaries\": [\n        \"NNS\"\n    ], \n    \"elimination\": [\n        \"NN\"\n    ], \n    \"far-afield\": [\n        \"JJ\"\n    ], \n    \"tarred\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"non-public\": [\n        \"JJ\"\n    ], \n    \"insouciance\": [\n        \"NN\"\n    ], \n    \"debtor-nation\": [\n        \"NN\"\n    ], \n    \"non-conformists\": [\n        \"NNS\"\n    ], \n    \"Walinsky\": [\n        \"NNP\"\n    ], \n    \"MMG\": [\n        \"NNP\"\n    ], \n    \"cyclist\": [\n        \"NN\"\n    ], \n    \"Bathing\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"horse-breeding\": [\n        \"NN\"\n    ], \n    \"jeweled\": [\n        \"JJ\"\n    ], \n    \"metro\": [\n        \"NN\"\n    ], \n    \"skyrocketed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Almond\": [\n        \"NN\"\n    ], \n    \"spiced\": [\n        \"JJ\"\n    ], \n    \"e-Ames\": [\n        \"NNP\"\n    ], \n    \"evading\": [\n        \"VBG\"\n    ], \n    \"territoire\": [\n        \"FW\"\n    ], \n    \"Nowak\": [\n        \"NNP\"\n    ], \n    \"simpleton\": [\n        \"NN\"\n    ], \n    \"spices\": [\n        \"NNS\"\n    ], \n    \"initials\": [\n        \"NNS\"\n    ], \n    \"Copeland\": [\n        \"NNP\"\n    ], \n    \"Beneficiaries\": [\n        \"NNS\"\n    ], \n    \"Minks\": [\n        \"NNP\"\n    ], \n    \"apple\": [\n        \"NN\"\n    ], \n    \"miscreant\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Robert\": [\n        \"NNP\"\n    ], \n    \"endotoxins\": [\n        \"NNS\"\n    ], \n    \"self-crimination\": [\n        \"NN\"\n    ], \n    \"offends\": [\n        \"VBZ\"\n    ], \n    \"Soria\": [\n        \"NNP\"\n    ], \n    \"Pyszkiewicz\": [\n        \"NNP\"\n    ], \n    \"Survanta\": [\n        \"NNP\"\n    ], \n    \"unhappy\": [\n        \"JJ\"\n    ], \n    \"motor\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"apply\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"cross-purposes\": [\n        \"NNS\"\n    ], \n    \"Accounts-a\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"bucking-up\": [\n        \"NN\"\n    ], \n    \"discerns\": [\n        \"VBZ\"\n    ], \n    \"Chemistry\": [\n        \"NNP\"\n    ], \n    \"carcinogenic\": [\n        \"JJ\"\n    ], \n    \"iced\": [\n        \"JJ\"\n    ], \n    \"Maxell\": [\n        \"NNP\"\n    ], \n    \"Guiftes\": [\n        \"NNS\"\n    ], \n    \"Curiously\": [\n        \"RB\", \n        \"NNP\"\n    ], \n    \"weeping\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Secrecy\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"Rocco\": [\n        \"NNP\"\n    ], \n    \"Willem\": [\n        \"NNP\"\n    ], \n    \"Feis\": [\n        \"NNP\"\n    ], \n    \"porch\": [\n        \"NN\"\n    ], \n    \"credulous\": [\n        \"JJ\"\n    ], \n    \"Wilcke\": [\n        \"NNP\"\n    ], \n    \"cooperate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Choir\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"archangels\": [\n        \"NNS\"\n    ], \n    \"faultless\": [\n        \"JJ\"\n    ], \n    \"Scouts\": [\n        \"NNPS\"\n    ], \n    \"benignant\": [\n        \"JJ\"\n    ], \n    \"Creighton\": [\n        \"NNP\"\n    ], \n    \"Whirlwind\": [\n        \"NNP\"\n    ], \n    \"paralleled\": [\n        \"VBN\"\n    ], \n    \"wtih\": [\n        \"NN\"\n    ], \n    \"do-gooders\": [\n        \"NNS\"\n    ], \n    \"thwack\": [\n        \"NN\"\n    ], \n    \"slaps\": [\n        \"VBZ\", \n        \"NNS\"\n    ], \n    \"Fonseca\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Balaguer\": [\n        \"NNP\"\n    ], \n    \"instrumentalities\": [\n        \"NNS\"\n    ], \n    \"founder-conductor\": [\n        \"NN\"\n    ], \n    \"splinters\": [\n        \"NNS\"\n    ], \n    \"Bis\": [\n        \"NNP\"\n    ], \n    \"splintery\": [\n        \"NN\"\n    ], \n    \"Northeners\": [\n        \"NNP\"\n    ], \n    \"Dishonesty\": [\n        \"NN\"\n    ], \n    \"biscuit\": [\n        \"NN\"\n    ], \n    \"tour\": [\n        \"NN\", \n        \"FW\", \n        \"VB\"\n    ], \n    \"proof\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"brightening\": [\n        \"VBG\"\n    ], \n    \"Nielson\": [\n        \"NNP\"\n    ], \n    \"tap\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"tar\": [\n        \"NN\"\n    ], \n    \"earnestness\": [\n        \"NN\"\n    ], \n    \"immediacies\": [\n        \"NNS\"\n    ], \n    \"Photoprotective\": [\n        \"NNP\"\n    ], \n    \"Czerny\": [\n        \"NNP\"\n    ], \n    \"tax\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"tad\": [\n        \"NN\", \n        \"RB\"\n    ], \n    \"tae\": [\n        \"FW\"\n    ], \n    \"tag\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tab\": [\n        \"NN\"\n    ], \n    \"tam\": [\n        \"FW\"\n    ], \n    \"tan\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"onions\": [\n        \"NNS\"\n    ], \n    \"commonness\": [\n        \"NN\"\n    ], \n    \"hyacinths\": [\n        \"NNS\"\n    ], \n    \"Sixty-eighth\": [\n        \"NNP\"\n    ], \n    \"decorating\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Middle-aged\": [\n        \"JJ\"\n    ], \n    \"inaugural\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"serum\": [\n        \"NN\"\n    ], \n    \"actualities\": [\n        \"NNS\"\n    ], \n    \"Jist\": [\n        \"RB\"\n    ], \n    \"end-product\": [\n        \"NN\"\n    ], \n    \"Second-half\": [\n        \"JJ\"\n    ], \n    \"base-metals\": [\n        \"NNS\"\n    ], \n    \"panic\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"trusses\": [\n        \"NNS\"\n    ], \n    \"E.Y.\": [\n        \"NNP\"\n    ], \n    \"Ringwood\": [\n        \"NNP\"\n    ], \n    \"Fossey\": [\n        \"NNP\"\n    ], \n    \"perjury\": [\n        \"NN\"\n    ], \n    \"general-management\": [\n        \"NN\"\n    ], \n    \"Groot\": [\n        \"NNP\"\n    ], \n    \"footpath\": [\n        \"NN\"\n    ], \n    \"BANK\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Cadet\": [\n        \"NNP\"\n    ], \n    \"Tallahassee\": [\n        \"NNP\"\n    ], \n    \"wt\": [\n        \"NN\"\n    ], \n    \"semi-conscious\": [\n        \"JJ\"\n    ], \n    \"Repertory\": [\n        \"NNP\"\n    ], \n    \"drought-stunted\": [\n        \"JJ\"\n    ], \n    \"Texts\": [\n        \"NNS\"\n    ], \n    \"bunco\": [\n        \"NN\"\n    ], \n    \"crawling\": [\n        \"VBG\"\n    ], \n    \"pharamaceuticals\": [\n        \"NNS\"\n    ], \n    \"sweetens\": [\n        \"VBZ\"\n    ], \n    \"Wrightson\": [\n        \"NNP\"\n    ], \n    \"demonstrations\": [\n        \"NNS\"\n    ], \n    \"Birr\": [\n        \"NNP\"\n    ], \n    \"unjustified\": [\n        \"JJ\"\n    ], \n    \"Walpole\": [\n        \"NNP\"\n    ], \n    \"Birk\": [\n        \"NNP\"\n    ], \n    \"accompanist\": [\n        \"NN\"\n    ], \n    \"Ursa\": [\n        \"NNP\"\n    ], \n    \"Santovenia\": [\n        \"NNP\"\n    ], \n    \"Bird\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"underwater\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"gunslinger\": [\n        \"NN\"\n    ], \n    \"voiceless\": [\n        \"JJ\"\n    ], \n    \"terriers\": [\n        \"NNS\"\n    ], \n    \"Grandsire\": [\n        \"NNP\"\n    ], \n    \"unpaintable\": [\n        \"JJ\"\n    ], \n    \"merchandise\": [\n        \"NN\"\n    ], \n    \"Dyk\": [\n        \"NNP\"\n    ], \n    \"Margler\": [\n        \"NNP\"\n    ], \n    \"Salary\": [\n        \"NN\"\n    ], \n    \"violating\": [\n        \"VBG\"\n    ], \n    \"crash\": [\n        \"NN\", \n        \"VBP\", \n        \"JJ\", \n        \"VB\"\n    ], \n    \"multibillion-dollar\": [\n        \"JJ\"\n    ], \n    \"Ilotycin\": [\n        \"NNP\"\n    ], \n    \"flotillas\": [\n        \"NNS\"\n    ], \n    \"two-inch-square\": [\n        \"JJ\"\n    ], \n    \"practice\": [\n        \"NN\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"socio-archaeological\": [\n        \"JJ\"\n    ], \n    \"commended\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"CRSS\": [\n        \"NNP\"\n    ], \n    \"emanations\": [\n        \"NNS\"\n    ], \n    \"draft-resistance\": [\n        \"NN\"\n    ], \n    \"Successors\": [\n        \"NNS\"\n    ], \n    \"sinners\": [\n        \"NNS\"\n    ], \n    \"Summer\": [\n        \"NNP\", \n        \"NN\", \n        \"NNPS\"\n    ], \n    \"transmitter\": [\n        \"NN\"\n    ], \n    \"entrench\": [\n        \"VB\"\n    ], \n    \"recorded-music\": [\n        \"JJ\"\n    ], \n    \"auto\": [\n        \"NN\"\n    ], \n    \"Arbitragers\": [\n        \"NNS\"\n    ], \n    \"tallied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Accurate\": [\n        \"JJ\"\n    ], \n    \"eased\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"Unloved\": [\n        \"NNP\"\n    ], \n    \"building-related\": [\n        \"JJ\"\n    ], \n    \"paleocortical\": [\n        \"JJ\"\n    ], \n    \"flag-burning\": [\n        \"NN\"\n    ], \n    \"trap\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"tax-reduction\": [\n        \"NN\"\n    ], \n    \"eases\": [\n        \"VBZ\"\n    ], \n    \"upheavals\": [\n        \"NNS\"\n    ], \n    \"Bobbie\": [\n        \"NNP\"\n    ], \n    \"Edson\": [\n        \"NNP\"\n    ], \n    \"eloquent\": [\n        \"JJ\"\n    ], \n    \"Auditors\": [\n        \"NNS\"\n    ], \n    \"Sidra\": [\n        \"NNP\"\n    ], \n    \"Narcotics\": [\n        \"NNPS\", \n        \"NNP\"\n    ], \n    \"jollying\": [\n        \"VBG\"\n    ], \n    \"Owings\": [\n        \"NNP\"\n    ], \n    \"Partisanship\": [\n        \"NN\"\n    ], \n    \"semi-isolated\": [\n        \"JJ\"\n    ], \n    \"Lamborghini\": [\n        \"NNP\"\n    ], \n    \"semen\": [\n        \"NN\"\n    ], \n    \"RUSH\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Festiva\": [\n        \"NNP\"\n    ], \n    \"Frantisek\": [\n        \"NNP\"\n    ], \n    \"contradictions\": [\n        \"NNS\"\n    ], \n    \"Aon\": [\n        \"NNP\"\n    ], \n    \"WAVE\": [\n        \"NNP\"\n    ], \n    \"Stowe\": [\n        \"NNP\"\n    ], \n    \"janglers\": [\n        \"NNS\"\n    ], \n    \"outings\": [\n        \"NNS\"\n    ], \n    \"apple-pie\": [\n        \"NN\"\n    ], \n    \"Nearly\": [\n        \"RB\"\n    ], \n    \"grits\": [\n        \"NNS\"\n    ], \n    \"brilliantly\": [\n        \"RB\"\n    ], \n    \"Vice-president\": [\n        \"NN\"\n    ], \n    \"four-foot-high\": [\n        \"JJ\"\n    ], \n    \"adhesives\": [\n        \"NNS\"\n    ], \n    \"once-staid\": [\n        \"JJ\"\n    ], \n    \"unenunciated\": [\n        \"JJ\"\n    ], \n    \"dictionary\": [\n        \"NN\"\n    ], \n    \"Older\": [\n        \"JJR\", \n        \"NNP\", \n        \"JJ\"\n    ], \n    \"dusts\": [\n        \"NNS\"\n    ], \n    \"pleas\": [\n        \"NNS\"\n    ], \n    \"Hyatt-Clark\": [\n        \"NNP\"\n    ], \n    \"Entree\": [\n        \"NNP\"\n    ], \n    \"K-resin\": [\n        \"NN\"\n    ], \n    \"obliteration\": [\n        \"NN\"\n    ], \n    \"bedazzled\": [\n        \"VBN\"\n    ], \n    \"tyrannis\": [\n        \"FW\"\n    ], \n    \"dormitories\": [\n        \"NNS\"\n    ], \n    \"flotations\": [\n        \"NNS\"\n    ], \n    \"segregated\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"barns\": [\n        \"NNS\"\n    ], \n    \"substantiate\": [\n        \"VB\"\n    ], \n    \"Americanized\": [\n        \"VBD\"\n    ], \n    \"Currency\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"German-language\": [\n        \"JJ\"\n    ], \n    \"cain\": [\n        \"MD\"\n    ], \n    \"ionic\": [\n        \"JJ\"\n    ], \n    \"precepts\": [\n        \"NNS\"\n    ], \n    \"timbers\": [\n        \"NNS\"\n    ], \n    \"Prussian\": [\n        \"NNP\"\n    ], \n    \"money-granting\": [\n        \"NN\"\n    ], \n    \"McNally\": [\n        \"NNP\", \n        \"RB\"\n    ], \n    \"K.\": [\n        \"NNP\"\n    ], \n    \"hitherto\": [\n        \"RB\"\n    ], \n    \"lace\": [\n        \"NN\"\n    ], \n    \"Cradle\": [\n        \"NNP\"\n    ], \n    \"gratuitously\": [\n        \"RB\"\n    ], \n    \"harmlessness\": [\n        \"NN\"\n    ], \n    \"probation\": [\n        \"NN\"\n    ], \n    \"homers\": [\n        \"NNS\"\n    ], \n    \"Local\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"destinations\": [\n        \"NNS\"\n    ], \n    \"Wised\": [\n        \"NNP\"\n    ], \n    \"individualizing\": [\n        \"VBG\"\n    ], \n    \"droop\": [\n        \"VBP\", \n        \"NN\"\n    ], \n    \"top-ranking\": [\n        \"JJ\"\n    ], \n    \"meningioma\": [\n        \"NN\"\n    ], \n    \"nomination\": [\n        \"NN\"\n    ], \n    \"accent\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Rankin\": [\n        \"NNP\"\n    ], \n    \"Exhibited\": [\n        \"VBN\"\n    ], \n    \"triumvirate\": [\n        \"NN\"\n    ], \n    \"chamberpot\": [\n        \"NN\"\n    ], \n    \"Illingworth\": [\n        \"NNP\"\n    ], \n    \"long-dollar\": [\n        \"JJ\"\n    ], \n    \"Wings\": [\n        \"NNPS\", \n        \"NNS\"\n    ], \n    \"Ke\": [\n        \"NNP\"\n    ], \n    \"Ko\": [\n        \"NNP\"\n    ], \n    \"Swiveling\": [\n        \"VBG\"\n    ], \n    \"resurrects\": [\n        \"VBZ\"\n    ], \n    \"skip-a-month\": [\n        \"JJ\"\n    ], \n    \"sherbet-colored\": [\n        \"JJ\"\n    ], \n    \"low-ability\": [\n        \"JJ\"\n    ], \n    \"constituent\": [\n        \"NN\", \n        \"JJ\"\n    ], \n    \"Ky\": [\n        \"NNP\"\n    ], \n    \"KC\": [\n        \"NNP\"\n    ], \n    \"KB\": [\n        \"NNP\"\n    ], \n    \"Maxine\": [\n        \"NNP\"\n    ], \n    \"Outstanding\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"KK\": [\n        \"NNP\"\n    ], \n    \"KN\": [\n        \"NNP\"\n    ], \n    \"Boxy\": [\n        \"JJ\"\n    ], \n    \"Strekel\": [\n        \"NNP\"\n    ], \n    \"sculpture\": [\n        \"NN\"\n    ], \n    \"bodice\": [\n        \"NN\"\n    ], \n    \"long-shanked\": [\n        \"JJ\"\n    ], \n    \"Italianate\": [\n        \"JJ\"\n    ], \n    \"Harrold\": [\n        \"NNP\"\n    ], \n    \"outsmarted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"U.Cal-Davis\": [\n        \"NNP\"\n    ], \n    \"woebegone\": [\n        \"JJ\"\n    ], \n    \"Veteran\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"U.S.concerns\": [\n        \"NNS\"\n    ], \n    \"outstrip\": [\n        \"VB\"\n    ], \n    \"Terex\": [\n        \"NNP\"\n    ], \n    \"Soccer\": [\n        \"NNP\"\n    ], \n    \"clove\": [\n        \"NN\"\n    ], \n    \"excusable\": [\n        \"JJ\"\n    ], \n    \"non-defense-related\": [\n        \"JJ\"\n    ], \n    \"florid\": [\n        \"JJ\"\n    ], \n    \"allergies\": [\n        \"NNS\"\n    ], \n    \"oozing\": [\n        \"VBG\"\n    ], \n    \"agency\": [\n        \"NN\"\n    ], \n    \"Southmark\\\\/Envicon\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"bankrupty-law\": [\n        \"NN\"\n    ], \n    \"co-ordinator\": [\n        \"NN\"\n    ], \n    \"divert\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"divers\": [\n        \"NNS\", \n        \"JJ\"\n    ], \n    \"standup\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"McGuire\": [\n        \"NNP\"\n    ], \n    \"repairs\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Bedfellows\": [\n        \"NNS\"\n    ], \n    \"McGuirk\": [\n        \"NNP\"\n    ], \n    \"Solution\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"offend\": [\n        \"VB\"\n    ], \n    \"Zilligen\": [\n        \"NNP\"\n    ], \n    \"specialty-metals\": [\n        \"NNS\"\n    ], \n    \"Lappenburg-Kemble\": [\n        \"NNP\"\n    ], \n    \"Whimsey\": [\n        \"NNP\"\n    ], \n    \"deny\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"Customary\": [\n        \"NNP\"\n    ], \n    \"Bent\": [\n        \"NNP\"\n    ], \n    \"neoconservative\": [\n        \"JJ\"\n    ], \n    \"dens\": [\n        \"NNS\"\n    ], \n    \"Hazeltine\": [\n        \"NNP\"\n    ], \n    \"Benz\": [\n        \"NNP\"\n    ], \n    \"B-47\": [\n        \"NN\"\n    ], \n    \"dent\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Bend\": [\n        \"NNP\", \n        \"VB\"\n    ], \n    \"Beng\": [\n        \"NNP\"\n    ], \n    \"Earth\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Benj\": [\n        \"NNP\"\n    ], \n    \"inane\": [\n        \"JJ\"\n    ], \n    \"Carlyle\": [\n        \"NNP\"\n    ], \n    \"illuminations\": [\n        \"NNS\"\n    ], \n    \"burner\": [\n        \"NN\"\n    ], \n    \"bratwurst\": [\n        \"NN\"\n    ], \n    \"upright\": [\n        \"RB\", \n        \"JJ\"\n    ], \n    \"BGS\": [\n        \"NNP\"\n    ], \n    \"pell-mell\": [\n        \"NN\"\n    ], \n    \"Stoddard\": [\n        \"NNP\"\n    ], \n    \"Anastasio\": [\n        \"NNP\"\n    ], \n    \"narcotraficantes\": [\n        \"FW\"\n    ], \n    \"wry\": [\n        \"JJ\"\n    ], \n    \"holistic\": [\n        \"JJ\"\n    ], \n    \"Fibreboard\": [\n        \"NNP\"\n    ], \n    \"ex-mayor\": [\n        \"NN\"\n    ], \n    \"Inaugurates\": [\n        \"VBZ\"\n    ], \n    \"snick\": [\n        \"NN\"\n    ], \n    \"humanitarian\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"Karl-Birger\": [\n        \"NNP\"\n    ], \n    \"candidates\": [\n        \"NNS\"\n    ], \n    \"procreative\": [\n        \"JJ\"\n    ], \n    \"kapok-filled\": [\n        \"JJ\"\n    ], \n    \"Catch\": [\n        \"NN\"\n    ], \n    \"Textron\": [\n        \"NNP\"\n    ], \n    \"hurricane-related\": [\n        \"JJ\"\n    ], \n    \"horns\": [\n        \"NNS\"\n    ], \n    \"Baringer\": [\n        \"NNP\"\n    ], \n    \"workin\": [\n        \"VBG\"\n    ], \n    \"Folklore\": [\n        \"NN\", \n        \"NNP\"\n    ], \n    \"dope\": [\n        \"NN\"\n    ], \n    \"diagnosing\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"fronting\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"Parodi\": [\n        \"NNP\"\n    ], \n    \"Whiskey\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Paragraph\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Gladius\": [\n        \"NNP\", \n        \"FW\"\n    ], \n    \"words\": [\n        \"NNS\"\n    ], \n    \"merchandised\": [\n        \"VBN\"\n    ], \n    \"self-evident\": [\n        \"JJ\"\n    ], \n    \"penetrate\": [\n        \"VB\", \n        \"VBP\"\n    ], \n    \"wordy\": [\n        \"JJ\"\n    ], \n    \"ghetto\": [\n        \"NN\"\n    ], \n    \"Humboldt\": [\n        \"NNP\"\n    ], \n    \"Nikita\": [\n        \"NNP\"\n    ], \n    \"Derchin\": [\n        \"NNP\"\n    ], \n    \"Lieber\": [\n        \"NNP\"\n    ], \n    \"waterfalls\": [\n        \"NNS\"\n    ], \n    \"prepolymer\": [\n        \"NN\"\n    ], \n    \"generations\": [\n        \"NNS\"\n    ], \n    \"Wiggins\": [\n        \"NNP\"\n    ], \n    \"investment-area\": [\n        \"JJ\"\n    ], \n    \"nitrogen\": [\n        \"NN\"\n    ], \n    \"ebb\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"Thinking\": [\n        \"VBG\", \n        \"NN\", \n        \"NNP\"\n    ], \n    \"Irvine\": [\n        \"NNP\"\n    ], \n    \"Nanook\": [\n        \"NNP\"\n    ], \n    \"violet\": [\n        \"NN\"\n    ], \n    \"gutters\": [\n        \"NNS\"\n    ], \n    \"scoured\": [\n        \"VBN\", \n        \"JJ\", \n        \"VBD\"\n    ], \n    \"recanted\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"closer\": [\n        \"JJR\", \n        \"JJ\", \n        \"RB\", \n        \"RBR\"\n    ], \n    \"closes\": [\n        \"VBZ\", \n        \"NNS\", \n        \"NN\"\n    ], \n    \"Olissa\": [\n        \"NNP\"\n    ], \n    \"Ravitch\": [\n        \"NNP\"\n    ], \n    \"gliders\": [\n        \"NNS\"\n    ], \n    \"closet\": [\n        \"NN\"\n    ], \n    \"congressionally\": [\n        \"RB\"\n    ], \n    \"complementary\": [\n        \"JJ\"\n    ], \n    \"proteases\": [\n        \"NNS\"\n    ], \n    \"genius\": [\n        \"NN\"\n    ], \n    \"Slavs\": [\n        \"NNPS\"\n    ], \n    \"rumblings\": [\n        \"NNS\"\n    ], \n    \"closed\": [\n        \"VBD\", \n        \"VBN|VBD\", \n        \"VBN\", \n        \"JJ\", \n        \"NN\", \n        \"VB\", \n        \"VBN|JJ\"\n    ], \n    \"cinders\": [\n        \"NNS\"\n    ], \n    \"linebacker\": [\n        \"NN\"\n    ], \n    \"masterful\": [\n        \"JJ\"\n    ], \n    \"pants\": [\n        \"NNS\", \n        \"NN\"\n    ], \n    \"energy-cogeneration\": [\n        \"NN\"\n    ], \n    \"ethic\": [\n        \"NN\"\n    ], \n    \"high-society\": [\n        \"NN\"\n    ], \n    \"audiovisual\": [\n        \"JJ\"\n    ], \n    \"ribonucleic\": [\n        \"JJ\"\n    ], \n    \"beverages\": [\n        \"NNS\"\n    ], \n    \"Minnie\": [\n        \"NNP\"\n    ], \n    \"snap-in\": [\n        \"JJ\"\n    ], \n    \"Facing\": [\n        \"VBG\"\n    ], \n    \"once-over-lightly\": [\n        \"NN\"\n    ], \n    \"memento\": [\n        \"NN\"\n    ], \n    \"shashlik\": [\n        \"NN\"\n    ], \n    \"tiers\": [\n        \"NNS\"\n    ], \n    \"soapbox\": [\n        \"NN\"\n    ], \n    \"Self-designated\": [\n        \"JJ\"\n    ], \n    \"profanity\": [\n        \"NN\"\n    ], \n    \"beautifully-built\": [\n        \"JJ\"\n    ], \n    \"broadside\": [\n        \"JJ\", \n        \"NN\", \n        \"RB\"\n    ], \n    \"Modesto\": [\n        \"NNP\"\n    ], \n    \"Sprecher\": [\n        \"NNP\"\n    ], \n    \"blackbirds\": [\n        \"NNS\"\n    ], \n    \"canopy\": [\n        \"NN\"\n    ], \n    \"safely\": [\n        \"RB\"\n    ], \n    \"withdraws\": [\n        \"VBZ\"\n    ], \n    \"Schockler\": [\n        \"NNP\"\n    ], \n    \"Satisfying\": [\n        \"VBG\"\n    ], \n    \"Podufaly\": [\n        \"NNP\"\n    ], \n    \"shoving\": [\n        \"VBG\"\n    ], \n    \"CD-ROM\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"VA-backed\": [\n        \"JJ\"\n    ], \n    \"RICOed\": [\n        \"JJ\", \n        \"VBD\"\n    ], \n    \"Earlham\": [\n        \"NNP\"\n    ], \n    \"Brice\": [\n        \"NNP\"\n    ], \n    \"Zapotec\": [\n        \"JJ\"\n    ], \n    \"Brick\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"neighborliness\": [\n        \"NN\"\n    ], \n    \"withdrawn\": [\n        \"VBN\"\n    ], \n    \"bumble-bee\": [\n        \"NN\"\n    ], \n    \"three-fourths\": [\n        \"JJ\", \n        \"NNS\"\n    ], \n    \"freedmen\": [\n        \"NNS\"\n    ], \n    \"unable-to-locate\": [\n        \"JJ\"\n    ], \n    \"BiiN\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Makes\": [\n        \"VBZ\"\n    ], \n    \"thumbed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"broadcasts\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"swabbed\": [\n        \"VBD\"\n    ], \n    \"corporate-securities\": [\n        \"JJ\"\n    ], \n    \"validating\": [\n        \"VBG\"\n    ], \n    \"Heflin\": [\n        \"NNP\"\n    ], \n    \"agreements\": [\n        \"NNS\"\n    ], \n    \"monoclonal\": [\n        \"JJ\"\n    ], \n    \"butchers\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"property-and-casualty\": [\n        \"JJ\"\n    ], \n    \"yff\": [\n        \"IN\"\n    ], \n    \"merrily\": [\n        \"RB\"\n    ], \n    \"Masada\": [\n        \"NNP\"\n    ], \n    \"butchery\": [\n        \"NN\"\n    ], \n    \"Gerrard\": [\n        \"NNP\"\n    ], \n    \"time-sensitive\": [\n        \"JJ\"\n    ], \n    \"saner\": [\n        \"JJR\"\n    ], \n    \"Mortgage-Backed\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Wreckage\": [\n        \"NN\"\n    ], \n    \"Castles\": [\n        \"NNS\"\n    ], \n    \"Motif\": [\n        \"NN\"\n    ], \n    \"readied\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Fogler\": [\n        \"NNP\"\n    ], \n    \"Halloween\": [\n        \"NNP\"\n    ], \n    \"Nonsense\": [\n        \"NN\"\n    ], \n    \"irate\": [\n        \"JJ\"\n    ], \n    \"Sanchez\": [\n        \"NNP\"\n    ], \n    \"Shylockian\": [\n        \"JJ\"\n    ], \n    \"Greenberger\": [\n        \"NNP\"\n    ], \n    \"Targets\": [\n        \"VBZ\"\n    ], \n    \"Quieter\": [\n        \"JJR\"\n    ], \n    \"Gypsum\": [\n        \"NNP\"\n    ], \n    \"Arnott\": [\n        \"NNP\"\n    ], \n    \"smashed-out\": [\n        \"JJ\"\n    ], \n    \"chanter\": [\n        \"FW\"\n    ], \n    \"Yokosuka\": [\n        \"NNP\"\n    ], \n    \"Gaveston\": [\n        \"NNP\"\n    ], \n    \"Lingo\": [\n        \"NN\"\n    ], \n    \"Anti-apartheid\": [\n        \"JJ\"\n    ], \n    \"fourth-fifths\": [\n        \"NNS\"\n    ], \n    \"Stock-Index\": [\n        \"NN\"\n    ], \n    \"gassing\": [\n        \"NN\"\n    ], \n    \"capitalist-exploiters-greedy-American-consumers-global\": [\n        \"JJ\"\n    ], \n    \"Bellomo-McGee\": [\n        \"NNP\"\n    ], \n    \"Briton\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"credit-services\": [\n        \"NNS\"\n    ], \n    \"stadiums\": [\n        \"NNS\"\n    ], \n    \"vintage\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"English-speaking\": [\n        \"JJ\"\n    ], \n    \"fusillades\": [\n        \"NNS\"\n    ], \n    \"adverse\": [\n        \"JJ\"\n    ], \n    \"Ponchartrain\": [\n        \"NNP\"\n    ], \n    \"down-the-line\": [\n        \"JJ\"\n    ], \n    \"merciful\": [\n        \"JJ\"\n    ], \n    \"panning\": [\n        \"VBG\"\n    ], \n    \"Olick\": [\n        \"NNP\"\n    ], \n    \"last-ditch\": [\n        \"JJ\"\n    ], \n    \"sweetened\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"Resource\": [\n        \"NNP\"\n    ], \n    \"tactful\": [\n        \"JJ\"\n    ], \n    \"Reis\": [\n        \"NNP\"\n    ], \n    \"Entex\": [\n        \"NNP\"\n    ], \n    \"Terrours\": [\n        \"NNS\"\n    ], \n    \"coalfields\": [\n        \"NNS\"\n    ], \n    \"issuance\": [\n        \"NN\"\n    ], \n    \"Rein\": [\n        \"NNP\"\n    ], \n    \"soldout\": [\n        \"NN\"\n    ], \n    \"Euroyen\": [\n        \"NNP\"\n    ], \n    \"Reik\": [\n        \"NNP\"\n    ], \n    \"appropriated\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"Adults\": [\n        \"NNS\"\n    ], \n    \"contendere\": [\n        \"FW\"\n    ], \n    \"superconcentrates\": [\n        \"NNS\"\n    ], \n    \"light-blue\": [\n        \"JJ\"\n    ], \n    \"ARA\": [\n        \"NNP\"\n    ], \n    \"fourteen-year-old\": [\n        \"JJ\"\n    ], \n    \"appropriates\": [\n        \"VBZ\"\n    ], \n    \"ARE\": [\n        \"VBP\"\n    ], \n    \"Ancinec\": [\n        \"NNP\"\n    ], \n    \"Piraeus\": [\n        \"NNP\"\n    ], \n    \"flint\": [\n        \"NN\"\n    ], \n    \"outgrow\": [\n        \"VB\"\n    ], \n    \"breaker\": [\n        \"NN\"\n    ], \n    \"superconcentrated\": [\n        \"JJ\"\n    ], \n    \"ARM\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"contenders\": [\n        \"NNS\"\n    ], \n    \"rocker\": [\n        \"NN\"\n    ], \n    \"Eaux\": [\n        \"NNP\"\n    ], \n    \"boos\": [\n        \"NNS\"\n    ], \n    \"rocket\": [\n        \"NN\"\n    ], \n    \"boot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"cloaks\": [\n        \"NNS\"\n    ], \n    \"me/PRP\": [\n        \"NNP\"\n    ], \n    \"hard-to-get\": [\n        \"JJ\"\n    ], \n    \"Aruba\": [\n        \"NNP\"\n    ], \n    \"rocked\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"danced\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"every-day\": [\n        \"JJ\"\n    ], \n    \"pro-consumer\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"disturbance\": [\n        \"NN\"\n    ], \n    \"InfoCorp\": [\n        \"NNP\"\n    ], \n    \"Far\": [\n        \"NNP\", \n        \"JJ\", \n        \"RB\"\n    ], \n    \"sky\": [\n        \"NN\"\n    ], \n    \"overspending\": [\n        \"NN\", \n        \"VBG\"\n    ], \n    \"Fat\": [\n        \"NNP\", \n        \"JJ\", \n        \"NN\"\n    ], \n    \"sweetener\": [\n        \"NN\"\n    ], \n    \"Stalins\": [\n        \"NNPS\"\n    ], \n    \"adoption\": [\n        \"NN\"\n    ], \n    \"Fab\": [\n        \"NNP\"\n    ], \n    \"Mokhiber\": [\n        \"NNP\"\n    ], \n    \"ski\": [\n        \"NN\", \n        \"JJ\", \n        \"VB\", \n        \"VBP\"\n    ], \n    \"knob\": [\n        \"NN\"\n    ], \n    \"Joynt\": [\n        \"NNP\"\n    ], \n    \"saturation\": [\n        \"NN\"\n    ], \n    \"branch\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"knoe\": [\n        \"VB\"\n    ], \n    \"monetarists\": [\n        \"NNS\"\n    ], \n    \"tawny\": [\n        \"JJ\"\n    ], \n    \"jocund\": [\n        \"JJ\"\n    ], \n    \"protesters\": [\n        \"NNS\"\n    ], \n    \"Grundfest\": [\n        \"NNP\"\n    ], \n    \"Recording\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"KerrMcGee\": [\n        \"NNP\"\n    ], \n    \"know\": [\n        \"VB\", \n        \"NN\", \n        \"VBP\"\n    ], \n    \"knot\": [\n        \"NN\", \n        \"VB\"\n    ], \n    \"food-aid\": [\n        \"JJ\"\n    ], \n    \"Newspaper\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Hesperus\": [\n        \"NNP\"\n    ], \n    \"variants\": [\n        \"NNS\"\n    ], \n    \"anti-terrorism\": [\n        \"JJ\"\n    ], \n    \"LIMITED\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Compromising\": [\n        \"VBG\"\n    ], \n    \"bedfellows\": [\n        \"NNS\"\n    ], \n    \"Reuveni\": [\n        \"NNP\"\n    ], \n    \"taxpayers\": [\n        \"NNS\"\n    ], \n    \"most-desired\": [\n        \"JJ\"\n    ], \n    \"mid-December\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Stephan\": [\n        \"NNP\"\n    ], \n    \"starred\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"majesterial\": [\n        \"JJ\"\n    ], \n    \"Gibraltar\": [\n        \"NNP\"\n    ], \n    \"JONES\": [\n        \"NNP\"\n    ], \n    \"traitors\": [\n        \"NNS\"\n    ], \n    \"because\": [\n        \"IN\", \n        \"RB\"\n    ], \n    \"shabby\": [\n        \"JJ\"\n    ], \n    \"sequence\": [\n        \"NN\"\n    ], \n    \"dispossession\": [\n        \"NN\"\n    ], \n    \"birthmark\": [\n        \"NN\"\n    ], \n    \"mosquitoes\": [\n        \"NNS\"\n    ], \n    \"Boucheron\": [\n        \"NNP\"\n    ], \n    \"libretto\": [\n        \"NN\"\n    ], \n    \"shorter-term\": [\n        \"JJ\", \n        \"JJR\"\n    ], \n    \"Wishart\": [\n        \"NNP\"\n    ], \n    \"holler\": [\n        \"VB\"\n    ], \n    \"price-to-book\": [\n        \"JJ\"\n    ], \n    \"leaden\": [\n        \"JJ\"\n    ], \n    \"first-six\": [\n        \"JJ\"\n    ], \n    \"Singapore\": [\n        \"NNP\"\n    ], \n    \"Manaifatturiera\": [\n        \"NNP\"\n    ], \n    \"leaded\": [\n        \"JJ\"\n    ], \n    \"Pickfair\": [\n        \"NNP\"\n    ], \n    \"Glazes\": [\n        \"NNS\"\n    ], \n    \"Glazer\": [\n        \"NNP\"\n    ], \n    \"outrageously\": [\n        \"RB\"\n    ], \n    \"scalpels\": [\n        \"NNS\"\n    ], \n    \"Mosettig\": [\n        \"NNP\"\n    ], \n    \"Glazed\": [\n        \"VBN\"\n    ], \n    \"Stairs\": [\n        \"NNP\"\n    ], \n    \"leader\": [\n        \"NN\"\n    ], \n    \"rip-off\": [\n        \"NN\"\n    ], \n    \"Population\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"STANLEY\": [\n        \"NNP\"\n    ], \n    \"poets\": [\n        \"NNS\"\n    ], \n    \"miniskirts\": [\n        \"NNS\"\n    ], \n    \"codetermines\": [\n        \"VBZ\"\n    ], \n    \"idlers\": [\n        \"NNS\"\n    ], \n    \"thoroughfare\": [\n        \"NN\"\n    ], \n    \"kernels\": [\n        \"NNS\"\n    ], \n    \"Ptolemaic\": [\n        \"JJ\", \n        \"NNP\"\n    ], \n    \"Mediation\": [\n        \"NNP\"\n    ], \n    \"Rothschild\": [\n        \"NNP\"\n    ], \n    \"leased\": [\n        \"VBN\", \n        \"VBD\", \n        \"JJ\"\n    ], \n    \"guffaws\": [\n        \"NNS\"\n    ], \n    \"Large-deposit\": [\n        \"JJ\"\n    ], \n    \"nationalities\": [\n        \"NNS\"\n    ], \n    \"Acoustic\": [\n        \"NNP\"\n    ], \n    \"Canning\": [\n        \"NNP\"\n    ], \n    \"after\": [\n        \"IN\", \n        \"RB\", \n        \"RP\"\n    ], \n    \"throne\": [\n        \"NN\"\n    ], \n    \"throng\": [\n        \"NN\", \n        \"VBP\"\n    ], \n    \"squealed\": [\n        \"VBD\", \n        \"VBN\"\n    ], \n    \"getting\": [\n        \"VBG\"\n    ], \n    \"high-end\": [\n        \"JJ\"\n    ], \n    \"let-the-locals-decide\": [\n        \"JJ\"\n    ], \n    \"dependence\": [\n        \"NN\"\n    ], \n    \"dependency\": [\n        \"NN\"\n    ], \n    \"epiphany\": [\n        \"NN\"\n    ], \n    \"owl-shaped\": [\n        \"JJ\"\n    ], \n    \"bugle\": [\n        \"NN\"\n    ], \n    \"Outer\": [\n        \"NNP\", \n        \"NNPS\", \n        \"JJ\"\n    ], \n    \"Suffice\": [\n        \"VB\"\n    ], \n    \"Gelder\": [\n        \"NNP\"\n    ], \n    \"corralling\": [\n        \"VBG\"\n    ], \n    \"Wildwater\": [\n        \"NNP\"\n    ], \n    \"registration\": [\n        \"NN\"\n    ], \n    \"computer-integrated\": [\n        \"JJ\"\n    ], \n    \"flower-bordered\": [\n        \"JJ\"\n    ], \n    \"dispossessed\": [\n        \"VBN\", \n        \"JJ\"\n    ], \n    \"knife-men\": [\n        \"NNS\"\n    ], \n    \"Weaver\": [\n        \"NNP\"\n    ], \n    \"fired\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"centurions\": [\n        \"NNS\"\n    ], \n    \"dagers\": [\n        \"NNS\"\n    ], \n    \"best-educated\": [\n        \"JJ\"\n    ], \n    \"noxious\": [\n        \"JJ\"\n    ], \n    \"Duse\": [\n        \"NNP\"\n    ], \n    \"indictments\": [\n        \"NNS\"\n    ], \n    \"preferment\": [\n        \"NN\"\n    ], \n    \"Flavus\": [\n        \"NNP\"\n    ], \n    \"Dust\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"CLOSE\": [\n        \"NN\"\n    ], \n    \"uncontrollable\": [\n        \"JJ\"\n    ], \n    \"Alps\": [\n        \"NNP\", \n        \"NNPS\"\n    ], \n    \"Lezovich\": [\n        \"NNP\"\n    ], \n    \"footwork\": [\n        \"NN\"\n    ], \n    \"concision\": [\n        \"NN\"\n    ], \n    \"sweatband\": [\n        \"NN\"\n    ], \n    \"Skybolt\": [\n        \"NN\"\n    ], \n    \"clampdown\": [\n        \"NN\"\n    ], \n    \"piously\": [\n        \"RB\"\n    ], \n    \"contradictory\": [\n        \"JJ\", \n        \"NN\"\n    ], \n    \"percentage-point\": [\n        \"JJ\"\n    ], \n    \"policy-setting\": [\n        \"JJ\"\n    ], \n    \"Hans-Dietrich\": [\n        \"NNP\"\n    ], \n    \"Alpo\": [\n        \"NNP\"\n    ], \n    \"hearing-impaired\": [\n        \"VBN\"\n    ], \n    \"goose\": [\n        \"NN\"\n    ], \n    \"Topography\": [\n        \"NN\"\n    ], \n    \"instructive\": [\n        \"JJ\"\n    ], \n    \"Ruysch\": [\n        \"NNP\"\n    ], \n    \"windfall\": [\n        \"NN\"\n    ], \n    \"Dowie\": [\n        \"NNP\"\n    ], \n    \"lubricated\": [\n        \"VBN\"\n    ], \n    \"McMoRan\": [\n        \"NNP\"\n    ], \n    \"non-existent\": [\n        \"JJ\"\n    ], \n    \"heralding\": [\n        \"VBG\"\n    ], \n    \"no-driving\": [\n        \"JJ\"\n    ], \n    \"Kankakee\": [\n        \"NNP\"\n    ], \n    \"meaningless\": [\n        \"JJ\"\n    ], \n    \"gnawing\": [\n        \"NN\"\n    ], \n    \"Bailout\": [\n        \"NNP\"\n    ], \n    \"dives\": [\n        \"NNS\", \n        \"VBZ\"\n    ], \n    \"Josephson\": [\n        \"NNP\"\n    ], \n    \"Sessions\": [\n        \"NNP\", \n        \"NNS\"\n    ], \n    \"cut-to-a-familiar-pattern\": [\n        \"JJ\"\n    ], \n    \"scandal-tripped\": [\n        \"JJ\"\n    ], \n    \"percent\": [\n        \"NN\"\n    ], \n    \"immobilized\": [\n        \"VBN\"\n    ], \n    \"Kalikow\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"roars\": [\n        \"VBZ\"\n    ], \n    \"sick\": [\n        \"JJ\"\n    ], \n    \"Improving\": [\n        \"VBG\", \n        \"NN\"\n    ], \n    \"long-time\": [\n        \"JJ\"\n    ], \n    \"Manufacturing\": [\n        \"NNP\", \n        \"NN\"\n    ], \n    \"Milburn\": [\n        \"NNP\"\n    ], \n    \"Literacy\": [\n        \"NN\"\n    ], \n    \"lance\": [\n        \"NN\"\n    ], \n    \"peanut-butter\": [\n        \"NN\"\n    ], \n    \"Applebee\": [\n        \"NNP\"\n    ], \n    \"Sandifer\": [\n        \"NNP\"\n    ], \n    \"Attlee\": [\n        \"NNP\"\n    ], \n    \"shown\": [\n        \"VBN\", \n        \"VBD\"\n    ], \n    \"contends\": [\n        \"VBZ\"\n    ], \n    \"near-disaster\": [\n        \"NN\"\n    ], \n    \"interventionists\": [\n        \"NNS\"\n    ], \n    \"supple\": [\n        \"JJ\"\n    ], \n    \"geysers\": [\n        \"NNS\"\n    ], \n    \"SELL\": [\n        \"VB\"\n    ], \n    \"Riyadh\": [\n        \"NNP\"\n    ], \n    \"pigen\": [\n        \"NN\"\n    ], \n    \"mosaics\": [\n        \"NNS\"\n    ], \n    \"outslugged\": [\n        \"VBN\"\n    ], \n    \"problematics\": [\n        \"NNS\"\n    ], \n    \"expands\": [\n        \"VBZ\"\n    ], \n    \"footloose\": [\n        \"JJ\"\n    ], \n    \"jawbone\": [\n        \"NN\"\n    ]\n}"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/tr_from_brill_paper.json",
    "content": "{\n  \"rules\": [\n    \"TO IN NEXT-TAG AT\",\n    \"VBN VBD PREV-WORD-IS-CAP YES\",\n    \"VBD VBN PREV-1-OR-2-OR-3-TAG HVD\",\n    \"VB NN PREV-1-OR-2-TAG AT\",\n    \"NN VB PREV-TAG TO\",\n    \"TO IN NEXT-WORD-IS-CAP YES\",\n    \"NN VB PREV-TAG MD\",\n    \"PPS PPO NEXT-TAG .\",\n    \"VBN VBD PREV-TAG PPS\",\n    \"NP NN CURRENT-WORD-IS-CAP NO\"\n  ]\n}"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/tr_from_brill_paper.txt",
    "content": "TO IN NEXT-TAG AT\nVBN VBD PREV-WORD-IS-CAP YES\nVBD VBN PREV-1-OR-2-OR-3-TAG HVD\nVB NN PREV-1-OR-2-TAG AT\nNN VB PREV-TAG TO\nTO IN NEXT-WORD-IS-CAP YES\nNN VB PREV-TAG MD\nPPS PPO NEXT-TAG .\nVBN VBD PREV-TAG PPS\nNP NN CURRENT-WORD-IS-CAP NO"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/tr_from_posjs.json",
    "content": "{\n  \"rules\": [\n    \"VBD NN PREV-TAG DT\",\n    \"VBP NN PREV-TAG DT\",\n    \"VB NN PREV-TAG DT\",\n    \"NN CD CURRENT-WORD-IS-NUMBER YES\",\n    \"NNP CD CURRENT-WORD-IS-NUMBER YES\",\n    \"NNS CD CURRENT-WORD-IS-NUMBER YES\",\n    \"NNPS CD CURRENT-WORD-IS-NUMBER YES\",\n    \"NN URL CURRENT-WORD-IS-URL YES\",\n    \"NNS URL CURRENT-WORD-IS-URL YES\",\n    \"NNP URL CURRENT-WORD-IS-URL YES\",\n    \"NNPS URL CURRENT-WORD-IS-URL YES\",\n    \"NN VBN CURRENT-WORD-ENDS-WITH ed\",\n    \"* RB CURRENT-WORD-ENDS-WITH ly\",\n    \"NN JJ CURRENT-WORD-ENDS-WITH al\",\n    \"NNS JJ CURRENT-WORD-ENDS-WITH al\",\n    \"NN VB PREV-WORD-IS would\",\n    \"NN NNS CURRENT-WORD-ENDS-WITH s\",\n    \"NN VBG CURRENT-WORD-ENDS-WITH ing\"\n  ]\n}"
  },
  {
    "path": "lib/natural/brill_pos_tagger/data/English/tr_from_posjs.txt",
    "content": "VBD NN PREV-TAG DT\nVBP NN PREV-TAG DT\nVB NN PREV-TAG DT\nNN CD CURRENT-WORD-IS-NUMBER YES\nNNP CD CURRENT-WORD-IS-NUMBER YES\nNNS CD CURRENT-WORD-IS-NUMBER YES\nNNPS CD CURRENT-WORD-IS-NUMBER YES\nNN URL CURRENT-WORD-IS-URL YES\nNNS URL CURRENT-WORD-IS-URL YES\nNNP URL CURRENT-WORD-IS-URL YES\nNNPS URL CURRENT-WORD-IS-URL YES\nNN VBN CURRENT-WORD-ENDS-WITH ed\n* RB CURRENT-WORD-ENDS-WITH ly\nNN JJ CURRENT-WORD-ENDS-WITH al\nNNS JJ CURRENT-WORD-ENDS-WITH al\nNN VB PREV-WORD-IS would\nNN NNS CURRENT-WORD-ENDS-WITH s\nNN VBG CURRENT-WORD-ENDS-WITH ing"
  },
  {
    "path": "lib/natural/brill_pos_tagger/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nDylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport type { Feature } from '../classifiers'\n\ndeclare interface RuleTemplatesItem {\n  function: (sentence: Sentence, i: number, parameter1?: string, parameter2?: string) => boolean\n  window: number[]\n  nrParameters: number\n  parameter1Values?: (sentence: Sentence, i: number) => string[]\n  parameter2Values?: (sentence: Sentence, i: number) => string[]\n}\n\nexport type RuleTemplates = Record<string, RuleTemplatesItem>\nexport let ruleTemplates: RuleTemplates\n\nexport class RuleTemplate {\n  constructor (templateName: string, metadata: RuleTemplatesItem)\n  windowFitsSite (sentence: Sentence, i: number): void\n}\n\ndeclare class Predicate {\n  constructor (name: string, parameter1: string, parameter2?: string)\n  name: string\n  parameter1: string\n  parameter2: string | undefined\n  meta: RuleTemplatesItem\n  evaluate (sentence: Sentence, position: number): boolean\n}\n\ndeclare class TransformationRule {\n  constructor (c1: string, c2: string, predicate: string, parameter1: string, parameter2?: string)\n  literal: string[]\n  predicate: Predicate\n  old_category: string\n  new_category: string\n  neutral: number\n  positive: number\n  negative: number\n  hasBeenSelectedAsHighRuleBefore: boolean\n  key (): string\n  apply (sentence: Sentence, position: number): void\n  isApplicableAt (sentence: Sentence, taggedSentence: Sentence, i: number): boolean\n  prettyPrint (): string\n  applyAt (sentence: Sentence, position: number): void\n  score (): number\n}\n\nexport class RuleSet {\n  constructor (language: string)\n  rules: TransformationRule[]\n  addRule (rule: TransformationRule): boolean\n  removeRule (rule: TransformationRule): void\n  getRules (): TransformationRule[]\n  nrRules (): number\n  hasRule (rule: TransformationRule): boolean\n  prettyPrint (): string\n}\n\nexport class Lexicon {\n  constructor (language: string, defaultCategory: string, defaultCategoryCapitalised?: string)\n  lexicon: Record<string, string[] | undefined>\n  defaultCategory: string\n  defaultCategoryCapitalised: string | undefined\n  parseLexicon (data: string): void\n  tagWordWithDefaults (word: string): string\n  tagWord (word: string): string[]\n  addWord (word: string, categories: string[]): void\n  prettyPrint (): string\n  nrEntries (): number\n  size (): number\n  setDefaultCategories (category: string, categoryCapitalised: string): void\n}\n\ndeclare class Corpus {\n  constructor (data: string | TaggedCorpus, typeOfCorpus: number, SentenceClass: typeof Sentence)\n  private readonly wordCount: number\n  private readonly sentences: Sentence[]\n  private readonly tagFrequencies: Record<string, Record<string, number> | undefined>\n  private readonly posTags: Record<string, boolean | undefined>\n  parseBrownCorpus (data: string, SentenceClass: typeof Sentence): void\n  getTags (): string[]\n  splitInTrainAndTest (percentageTrain: number): [Corpus, Corpus]\n  analyse (): void\n  buildLexicon (): Lexicon\n  tag (lexicon: Lexicon): void\n  nrSentences (): number\n  nrWords (): number\n  private generateFeatures (): Feature[]\n  // Incomplete method:\n  // prettyPrint\n}\n\ndeclare interface BrillPOSTaggedWord {\n  token: string\n  tag: string\n}\n\ndeclare interface BrillPOSTaggedSentence {\n  taggedWords: BrillPOSTaggedWord[]\n}\n\ndeclare interface TaggedCorpus {\n  wordCount: number\n  sentences: BrillPOSTaggedSentence[]\n}\n\nexport class Sentence {\n  constructor (data?: string[])\n  taggedWords: BrillPOSTaggedWord[]\n  addTaggedWord (token: string, tag: string): void\n  clone (): Sentence\n}\n\nexport class BrillPOSTagger {\n  constructor (lexicon: Lexicon, ruleSet: RuleSet)\n  private readonly lexicon: Lexicon\n  private readonly ruleSet: RuleSet\n  tag (sentence: string[]): Sentence\n  tagWithLexicon (sentence: string[]): Sentence\n  applyRules (sentence: Sentence): Sentence\n}\n\nexport class BrillPOSTester {\n  test (corpus: Corpus, tagger: BrillPOSTagger): [number, number]\n}\n\nexport class BrillPOSTrainer {\n  constructor (ruleScoreThreshold: number)\n  private readonly ruleScoreThreshold: number\n  private readonly corpus: Corpus\n  private readonly templates: RuleTemplates\n  private readonly positiveRules: RuleSet\n  private readonly mapRuleToSites: Record<string, Record<number, Record< number, boolean | undefined> | undefined> | undefined>\n  private readonly mapSiteToRules: Record<number, Record<number, Record<string, boolean | undefined> | undefined> | undefined>\n  private selectHighRule (): TransformationRule\n  private mapRuleToSite (rule: TransformationRule, i: number, j: number): void\n  private mapSiteToRule (i: number, j: number, rule: TransformationRule): void\n  private associateSiteWithRule (i: number, j: number, rule: TransformationRule): void\n  private siteIsAssociatedWithRule (i: number, j: number, rule: TransformationRule): boolean\n  private getSites (rule: TransformationRule): Array<[number, number]>\n  private getRules (i: number, j: number): TransformationRule[]\n  private disconnectSiteFromRule (i: number, j: number, rule: TransformationRule): void\n  private scoreRule (rule: TransformationRule, i: number, j: number): void\n  private generatePositiveRules (i: number, j: number): RuleSet\n  private scanForPositiveRules (): void\n  private scanForSites (): void\n  private neighbourhood (i: number, j: number): Array<[number, number]>\n  train (corpus: Corpus, templates: RuleTemplate[], lexicon: Lexicon): RuleSet\n  printRulesWithScores (): string\n}\n\nexport interface TagResults {\n  results: string[][][]\n}\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.BrillPOSTagger = require('./lib/Brill_POS_Tagger')\nexports.BrillPOSTrainer = require('./lib/Brill_POS_Trainer')\nexports.BrillPOSTester = require('./lib/Brill_POS_Tester')\nexports.Lexicon = require('./lib/Lexicon')\nexports.RuleSet = require('./lib/RuleSet')\nexports.ruleTemplates = require('./lib/RuleTemplates')\nexports.RuleTemplate = require('./lib/RuleTemplate')\nexports.Corpus = require('./lib/Corpus')\nexports.Sentence = require('./lib/Sentence')\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Brill_POS_Tagger.js",
    "content": "/*\n  Brill's POS Tagger\n  Copyright (C) 2019 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst Sentence = require('./Sentence')\n\nconst DEBUG = false\n\nclass BrillPOSTagger {\n  constructor (lexicon, ruleSet) {\n    this.lexicon = lexicon\n    this.ruleSet = ruleSet\n  }\n\n  // Tags a sentence, sentence is an array of words\n  // Returns an array of tagged words; a tagged words is an array consisting of\n  // the word itself followed by its lexical category\n  tag (sentence) {\n    const taggedSentence = this.tagWithLexicon(sentence)\n    DEBUG && console.log(taggedSentence)\n    return this.applyRules(taggedSentence)\n  }\n\n  tagWithLexicon (sentence) {\n    const taggedSentence = new Sentence()\n\n    const that = this\n    sentence.forEach(function (word, index) {\n      const categories = that.lexicon.tagWord(word)\n      taggedSentence.addTaggedWord(word, categories[0])\n    })\n    return (taggedSentence)\n  }\n\n  // Applies the transformation rules to an initially tagged sentence.\n  // taggedSentence is an array of tagged words.\n  // A tagged word is an array consisting of the word itself followed by its lexical category.\n  // Returns an array of tagged words as well\n  applyRules (sentence) {\n    for (let i = 0, size = sentence.taggedWords.length; i < size; i++) {\n      this.ruleSet.getRules().forEach(function (rule) {\n        rule.apply(sentence, i)\n      })\n    }\n    return sentence\n  }\n}\n\nmodule.exports = BrillPOSTagger\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Brill_POS_Tester.js",
    "content": "/*\n  Brill's POS Testing class\n  Copyright (C) 2017 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nclass BrillPOSTester {\n  test (corpus, tagger) {\n    let totalWords = 0\n    let correctTagsLexicon = 0\n    let correctTagsAfterRules = 0\n\n    // Tag the corpus using the tagger\n    corpus.sentences.forEach(function (sentence) {\n      const s = sentence.taggedWords.map(function (token) {\n        return token.token\n      })\n\n      // Use the lexicon to tag the sentence\n      const taggedSentence = tagger.tagWithLexicon(s)\n      // Count the right tags\n      sentence.taggedWords.forEach(function (token, i) {\n        totalWords++\n        if (token.tag === taggedSentence.taggedWords[i].tag) {\n          correctTagsLexicon++\n        }\n      })\n\n      // Use the rule set to tag the sentence\n      const taggedSentenceAfterRules = tagger.applyRules(taggedSentence)\n      // Count the right tags\n      sentence.taggedWords.forEach(function (token, i) {\n        if (token.tag === taggedSentenceAfterRules.taggedWords[i].tag) {\n          correctTagsAfterRules++\n        }\n      })\n    })\n\n    // Return percentage right\n    return [100 * correctTagsLexicon / totalWords, 100 * correctTagsAfterRules / totalWords]\n  }\n}\n\nmodule.exports = BrillPOSTester\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Brill_POS_Trainer.js",
    "content": "/*\n  Brill POS Trainer class\n  Copyright (C) 2017 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n// Algorithm is based on:\n// Exploring the Statistical Derivation of Transformational Rule Sequences\n// for Part-of-Speech Tagging, Lance A. Ramshaw and Mitchell P. Marcus\n// http://acl-arc.comp.nus.edu.sg/archives/acl-arc-090501d4/data/pdf/anthology-PDF/W/W94/W94-0111.pdf\n\n'use strict'\n\nconst TransformationRule = require('./TransformationRule')\nconst RuleSet = require('./RuleSet')\nconst Sentence = require('./Sentence')\n\n// Training continues as long as there are rules with a positive score\n// that have not been selected before\nconst minScore = 0\n// After training rules with a score below scoreThreshold are pruned\n\nclass BrillPOSTrainer {\n  constructor (ruleScoreThreshold) {\n    if (ruleScoreThreshold) {\n      this.ruleScoreThreshold = ruleScoreThreshold\n    } else {\n      this.ruleScoreThreshold = 1\n    }\n  }\n\n  // Return the highest scoring rule from the rule set\n  selectHighRule () {\n    let highestRule = null\n\n    // Walk through the map and find the rule with highest score\n    this.positiveRules.getRules().forEach(function (rule) {\n      if (highestRule === null) {\n        if (!rule.hasBeenSelectedAsHighRuleBefore) {\n          highestRule = rule\n        }\n      } else {\n        if ((rule.score() > highestRule.score()) &&\n          !rule.hasBeenSelectedAsHighRuleBefore) {\n          highestRule = rule\n        }\n      }\n    })\n\n    if (highestRule !== null) {\n      highestRule.hasBeenSelectedAsHighRuleBefore = true\n    }\n    // Return the rule with the highest score\n    return highestRule\n  }\n\n  mapRuleToSite (rule, i, j) {\n    if (!this.mapRuleToSites[rule.key()]) {\n      this.mapRuleToSites[rule.key()] = {}\n    }\n    if (!this.mapRuleToSites[rule.key()][i]) {\n      this.mapRuleToSites[rule.key()][i] = {}\n    }\n    this.mapRuleToSites[rule.key()][i][j] = true\n  }\n\n  mapSiteToRule (i, j, rule) {\n    if (!this.mapSiteToRules[i]) {\n      this.mapSiteToRules[i] = {}\n    }\n    if (!this.mapSiteToRules[i][j]) {\n      this.mapSiteToRules[i][j] = {}\n    }\n    this.mapSiteToRules[i][j][rule.key()] = rule\n  }\n\n  associateSiteWithRule (i, j, rule) {\n    this.mapRuleToSite(rule, i, j)\n    this.mapSiteToRule(i, j, rule)\n  }\n\n  siteIsAssociatedWithRule (i, j, rule) {\n    if (this.mapSiteToRules[i]) {\n      if (this.mapSiteToRules[i][j]) {\n        if (this.mapSiteToRules[i][j][rule.key()]) {\n          return true\n        }\n      }\n    }\n    return false\n  }\n\n  // Returns an array of all sites associated with rule\n  getSites (rule) {\n    const that = this\n    const result = []\n    Object.keys(this.mapRuleToSites[rule.key()]).forEach(function (i) {\n      Object.keys(that.mapRuleToSites[rule.key()][i]).forEach(function (j) {\n        // Unary plus the convert hash keys i and j to integer\n        result.push([+i, +j])\n      })\n    })\n    // logger.debug(\"BrillPOSTrainer.prototype.getSites: sites \" + JSON.stringify(result));\n    return (result)\n  }\n\n  // Returns an array of all rules associated with the site\n  getRules (i, j) {\n    let result = []\n    const that = this\n\n    if (this.mapSiteToRules[i]) {\n      if (this.mapSiteToRules[i][j]) {\n        result = Object.keys(this.mapSiteToRules[i][j]).map(function (key) {\n          return that.mapSiteToRules[i][j][key]\n        })\n      }\n    }\n    return result\n  }\n\n  disconnectSiteFromRule (i, j, rule) {\n    // mapRuleToSites\n    if (this.mapRuleToSites[rule.key()]) {\n      if (this.mapRuleToSites[rule.key()][i]) {\n        if (this.mapRuleToSites[rule.key()][i][j]) {\n          delete this.mapRuleToSites[rule.key()][i][j]\n        }\n      }\n    }\n\n    // mapSiteToRules\n    if (this.mapSiteToRules[i]) {\n      if (this.mapSiteToRules[i][j]) {\n        if (this.mapSiteToRules[i][j][rule.key()]) {\n          delete this.mapSiteToRules[i][j][rule.key()]\n        }\n      }\n    }\n  }\n\n  // Adjusts the score of the rule at position i, j of the corpus\n  scoreRule (rule, i, j) {\n    // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: entry\");\n    const token = this.corpus.sentences[i].taggedWords[j]\n    const rightTag = token.tag\n    const oldTag = token.testTag\n    const newTag = token.newTag\n    if (rightTag !== oldTag) {\n      // Old tag is wrong\n      if (newTag === rightTag) {\n        // New tag is right\n        rule.positive++\n        // If the score changes, it may be selected again as highest scoring rule\n        rule.hasBeenSelectedAsHighRuleBefore = false\n        // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: positive: \" + rule.key() + \"\\t score: \" + rule.positive);\n      } else {\n        // New tag is wrong as well --> neutral\n        rule.neutral++\n        // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: neutral: \" + rule.key() + \"\\t score: \" + rule.neutral);\n      }\n    } else {\n      // Old tag is right\n      if (newTag === rightTag) {\n        // New tag is right --> neutral\n        rule.neutral++\n        // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: neutral: \" + rule.key() + \"\\t score: \" + rule.neutral);\n      } else {\n        // New tag is false\n        rule.negative++\n        // If the score changes, it may be selected again as highest scoring rule\n        rule.hasBeenSelectedAsHighRuleBefore = false\n        // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: negative: \" + rule.key() + \"\\t score: \" + rule.negative);\n      }\n    }\n    // logger.debug(\"BrillPOSTrainer.prototype.scoreRule: exit\");\n  }\n\n  // Generate positive rules for this given site using templates\n  generatePositiveRules (i, j) {\n    const sentence = this.corpus.sentences[i]\n    const token = sentence.taggedWords[j]\n    // A positive rule should trigger on the currently assigned testTag\n    const oldTag = token.testTag\n    // logger.debug(\"BrillPOSTrainer.prototype.generatePositiveRules: oldTag \" + oldTag);\n    // It should assign the right tag as given by the corpus\n    const newTag = token.tag\n    // logger.debug(\"BrillPOSTrainer.prototype.generatePositiveRules: newTag \" + newTag);\n\n    const newRules = new RuleSet()\n    // Exit if testTag already is the right tag --> will not result in positive rules\n    if (oldTag === newTag) {\n      return newRules\n    }\n\n    this.templates.forEach(function (template) {\n      if (template.windowFitsSite(sentence, j)) {\n        if (template.meta.nrParameters === 1) {\n          template.meta.parameter1Values(sentence, j).forEach(function (value) {\n            newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName, value))\n          })\n        } else {\n          if (template.meta.nrParameters === 2) {\n            template.meta.parameter1Values(sentence, j).forEach(function (value1) {\n              template.meta.parameter2Values(sentence, j).forEach(function (value2) {\n                newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName, value1, value2))\n              })\n            })\n          } else {\n            // 0 paramaters\n            newRules.addRule(new TransformationRule(oldTag, newTag, template.predicateName))\n          }\n        }\n      }\n    })\n    return newRules\n  }\n\n  // Finds all rules that are applicable at some site\n  scanForPositiveRules () {\n    // logger.debug(\"BrillPOSTrainer.prototype.scanForPositiveRules: entry\");\n    const that = this\n    this.corpus.sentences.forEach(function (sentence, i) {\n      sentence.taggedWords.forEach(function (token, j) {\n        // logger.debug(\"BrillPOSTrainer.prototype.scanForPositiveRules: sentence no \" + i);\n        const newRules = that.generatePositiveRules(i, j)\n        newRules.getRules().forEach(function (rule) {\n          that.positiveRules.addRule(rule)\n          // logger.debug(\"BrillPOSTrainer.prototype.scanForPositiveRules: nrRules \" + that.positiveRules.nrRules());\n        })\n      })\n    })\n    // logger.debug(\"BrillPOSTrainer.prototype.scanForPositiveRules: exit, number of rules: \" + this.positiveRules.nrRules());\n  }\n\n  // Find all sites where the rules can be applied, register these sites and\n  // update the scores\n  scanForSites () {\n    // logger.debug(\"BrillPOSTrainer.prototype.scanForSites: entry\");\n    const that = this\n\n    // Scan the corpus\n    this.corpus.sentences.forEach(function (sentence, i) {\n      if (i % 100 === 0) {\n        // logger.info(\"BrillPOSTrainer.prototype.scanForSites: sentence \" + i);\n      }\n\n      const taggedSentence = new Sentence()\n      sentence.taggedWords.forEach(function (wordObject) {\n        taggedSentence.addTaggedWord(wordObject.token, wordObject.testTag)\n      })\n\n      sentence.taggedWords.forEach(function (token, j) {\n        that.positiveRules.getRules().forEach(function (rule) {\n          if (rule.isApplicableAt(sentence, taggedSentence, j)) {\n            that.associateSiteWithRule(i, j, rule)\n            that.scoreRule(rule, i, j)\n            // logger.debug(\"BrillPOSTrainer.prototype.scanForSites: (sentence, token, rule): (\" + i + \", \" + j + \", \" + rule.prettyPrint() + \")\");\n          }\n        })\n      })\n    })\n\n    // logger.debug(\"BrillPOSTrainer.prototype.scanForSites: exit\");\n  }\n\n  // Returns a list of sites that may have been touched by a changing tag\n  neighbourhood (i, j) {\n    const sentenceLength = this.corpus.sentences[i].length\n    const list = []\n\n    if (this.index > 2) {\n      list.push([i, j - 3])\n    }\n    if (this.index > 1) {\n      list.push([i, j - 2])\n    }\n    if (this.index > 0) {\n      list.push([i, j - 1])\n    }\n    if (this.index < sentenceLength - 1) {\n      list.push([i, j + 1])\n    }\n    if (this.index < sentenceLength - 2) {\n      list.push([i, j + 2])\n    }\n    if (this.index > sentenceLength - 3) {\n      list.push([i, j + 3])\n    }\n    return list\n  }\n\n  // corpus: an array of token arrays\n  // templates: an array of rule templates\n  // lexicon: lexicon that provides method tagWord(word)\n  train (corpus, templates, lexicon) {\n    this.corpus = corpus\n    this.templates = templates\n    this.positiveRules = new RuleSet()\n    this.mapRuleToSites = {}\n    this.mapSiteToRules = {}\n\n    // logger.debug(\"BrillPOSTrainer.prototype.train: entry\");\n    this.corpus.tag(lexicon)\n    this.scanForPositiveRules()\n    // logger.info(\"BrillPOSTrainer.prototype.train: initial number of rules: \" + this.positiveRules.nrRules());\n    this.scanForSites()\n\n    let highRule = this.selectHighRule()\n    let iterationNumber = 0\n    const that = this\n    while ((highRule !== null) && (highRule.score() > minScore)) {\n      if ((iterationNumber % 5) === 0) {\n        // logger.info(\"BrillPOSTrainer.prototype.train: training iteration: \" + iterationNumber);\n      }\n      // logger.debug(\"BrillPOSTrainer.prototype.train: highRule selected: \" + highRule.key());\n      // logger.debug(\"BrillPOSTrainer.prototype.train: number of rules: \" + this.positiveRules.nrRules());\n      // logger.debug(\"BrillPOSTrainer.prototype.train: score of highRule: \" + highRule.score());\n\n      // Apply the high rule to each change site on its site list\n      this.getSites(highRule).forEach(function (site) {\n        // logger.debug(\"BrillPOSTrainer.prototype.train: apply highRule to: \" + site);\n        // logger.debug(\"BrillPOSTrainer.prototype.train: sentence length: \" + that.corpus.sentences[site[0]].length);\n        highRule.applyAt(that.corpus.sentences[site[0]], site[1])\n      })\n\n      const unseenRules = new RuleSet()\n      this.getSites(highRule).forEach(function (site) {\n        that.neighbourhood(site[0], site[1]).forEach(function (testSite) {\n          // Generate positive rules for testSite\n          const newRules = that.generatePositiveRules(testSite[0], testSite[1])\n\n          // Disconnect test site from its rules\n          // because highrule has been applied\n          that.getRules(testSite[0], testSite[1]).forEach(function (rule) {\n            if (!newRules.hasRule(rule)) {\n              that.disconnectSiteFromRule(testSite[0], testSite[1], rule)\n            }\n          })\n\n          // Connect new rules not already connected to the test site\n          newRules.getRules().forEach(function (rule) {\n            if (!that.siteIsAssociatedWithRule(testSite[0].testSite[1], rule)) {\n              if (that.positiveRules.hasRule(rule)) {\n                that.associateSiteWithRule(testSite[0], testSite[1], rule)\n              } else {\n                unseenRules.addRule(rule)\n              }\n            }\n          })\n\n          // Process unseen rules\n          if (unseenRules.nrRules() > 0) {\n            unseenRules.getRules().forEach(function (rule) {\n              that.positiveRules.addRule(rule)\n            })\n            that.corpus.sentences.forEach(function (sentence, i) {\n              const taggedSentence = sentence.map(function (token) {\n                return [token.token, token.testTag]\n              })\n              sentence.forEach(function (token, j) {\n                unseenRules.getRules().forEach(function (rule) {\n                  if (rule.isApplicableAt(sentence, taggedSentence, j)) {\n                    that.associateSiteWithRule(i, j, rule)\n                    that.scoreRule(rule, i, j)\n                  }\n                })\n              })\n            })\n          }\n        })\n      })\n\n      // Select next highest scoring rule\n      highRule = this.selectHighRule()\n      iterationNumber++\n    }\n    // logger.info(\"BrillPOSTrainer.prototype.train: number of iterations: \" + iterationNumber);\n    // logger.info(\"BrillPOSTrainer.prototype.train: number of rules: \" + this.positiveRules.nrRules());\n\n    // Remove rules having a non-positive score\n    this.positiveRules.getRules().forEach(function (rule) {\n      if (rule.score() < that.ruleScoreThreshold) {\n        that.positiveRules.removeRule(rule)\n      }\n    })\n\n    // logger.info(\"BrillPOSTrainer.prototype.train: number of rules after pruning: \" + this.positiveRules.nrRules());\n    // logger.debug(\"BrillPOSTrainer.prototype.train: exit\");\n    return this.positiveRules\n  }\n\n  printRulesWithScores () {\n    let result = ''\n\n    function compareRules (a, b) {\n      if (a.score() > b.score()) {\n        return -1\n      } else {\n        if (a.score() < b.score()) {\n          return 1\n        } else {\n          return 0\n        }\n      }\n    }\n\n    const rules = this.positiveRules.getRules()\n    const sortedRules = rules.sort(compareRules)\n\n    sortedRules.forEach(function (rule) {\n      // if (rule.score() > 0) {\n      result += rule.score() + '\\t' + rule.positive + '\\t' + rule.negative + '\\t' + rule.neutral + '\\t' + rule.prettyPrint() + '\\n'\n      // }\n    })\n    return result\n  }\n}\n\nmodule.exports = BrillPOSTrainer\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Corpus.js",
    "content": "/*\n  Corpus class for parsing and analysing corpora\n  Copyright (C) 2019 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst Lexicon = require('./Lexicon')\n\nconst BROWN = 1\nconst JSON = 2\n\n// sentences: an array of annotated sentences\n// A sentence is an array of annotated tokens\n// A token is an object with (token, tag, testTag, ruleList)\nclass Corpus {\n  constructor (data, typeOfCorpus, SentenceClass) {\n    this.wordCount = 0\n    this.sentences = []\n    const that = this\n    if (data) {\n      // For other types of corpora add a case here and supply a parsing method\n      switch (typeOfCorpus) {\n        case BROWN:\n          this.parseBrownCorpus(data, SentenceClass)\n          break\n        case JSON:\n          // Assume it is a JSON object of a corpus\n          data.sentences.forEach(function (s) {\n            const taggedSentence = new SentenceClass(s.taggedWords)\n            that.sentences.push(taggedSentence)\n            that.wordCount += s.taggedWords.length\n          })\n          break\n      }\n    }\n  }\n\n  // data is raw text\n  // A corpus parsing method should split the corpus in sentences each of which\n  // consist of an array of tokens.\n  parseBrownCorpus (data, SentenceClass) {\n    const that = this\n\n    const lines = data.split('\\n')\n    lines.forEach(function (line) {\n      const trimmedLine = line.trim()\n      // Only parse lines that contain characters\n      if (trimmedLine !== '') {\n        const taggedSentence = new SentenceClass()\n        const tokens = line.trim().split(/\\s+/)\n        tokens.forEach(function (token) {\n          that.wordCount++\n          // Create a tagged sentences consisting of tokens\n          const wordPlusTag = token.split('_')\n          taggedSentence.addTaggedWord(wordPlusTag[0], wordPlusTag[1])\n        })\n\n        // Add the sentence to the corpus\n        that.sentences.push(taggedSentence)\n      }\n    })\n  }\n\n  // Returns an array of all POS tags used in the corpus\n  getTags () {\n    return Object.keys(this.posTags)\n  }\n\n  // Splits the corpus in a training and testing set.\n  // percentageTrain is the size of the training corpus in percent\n  // Returns an array with two elements: training corpus, testing corpus\n  splitInTrainAndTest (percentageTrain) {\n    const corpusTrain = new Corpus()\n    const corpusTest = new Corpus()\n\n    const p = percentageTrain / 100\n    this.sentences.forEach(function (sentence, i) {\n      if (Math.random() < p) {\n        corpusTrain.sentences.push(sentence)\n      } else {\n        corpusTest.sentences.push(sentence)\n      }\n    })\n    return [corpusTrain, corpusTest]\n  }\n\n  // Analyses the corpus:\n  // - registers used POS tags\n  // - records the frequency of POS tag for each word\n  analyse () {\n    this.tagFrequencies = {}\n    this.posTags = {}\n    this.wordCount = 0\n\n    const that = this\n    this.sentences.forEach(function (sentence) {\n      sentence.taggedWords.forEach(function (token) {\n        that.wordCount++\n\n        // Register the tags used in the corpus\n        that.posTags[token.tag] = true\n\n        // Register the frequency of the tag\n        if (!that.tagFrequencies[token.token]) {\n          that.tagFrequencies[token.token] = {}\n        }\n        if (!that.tagFrequencies[token.token][token.tag]) {\n          that.tagFrequencies[token.token][token.tag] = 0\n        }\n        that.tagFrequencies[token.token][token.tag]++\n      })\n    })\n  }\n\n  // Creates a lexicon by taking the most frequently occurring tag of a word\n  // as the right tag\n  buildLexicon () {\n    const lexicon = new Lexicon()\n    const that = this\n\n    this.analyse()\n    Object.keys(this.tagFrequencies).forEach(function (token) {\n      const catToFreq = that.tagFrequencies[token]\n      const categories = Object.keys(catToFreq)\n\n      function compareByFrequency (a, b) {\n        if (catToFreq[a] > catToFreq[b]) {\n          return -1\n        } else {\n          if (catToFreq[a] < catToFreq[b]) {\n            return 1\n          } else {\n            return 0\n          }\n        }\n      }\n\n      const sortedCategories = categories.sort(compareByFrequency)\n      lexicon.addWord(token, sortedCategories)\n    })\n    return lexicon\n  }\n\n  tag (lexicon) {\n    this.sentences.forEach(function (sentence) {\n      sentence.taggedWords.forEach(function (token) {\n        // tagWord returns a list of categories, take the first category\n        token.testTag = lexicon.tagWord(token.token)[0]\n      })\n    })\n  }\n\n  nrSentences () {\n    return this.sentences.length\n  }\n\n  nrWords () {\n    return this.wordCount\n  }\n\n  generateFeatures () {\n    let features = []\n    this.sentences.forEach(function (sentence) {\n      features = sentence.generateFeatures(features)\n    })\n    // console.log(JSON.stringify(features));\n    return features\n  }\n\n  prettyPrint () {\n    this.sentences.forEach(function (sentence, index) {\n      // logger.debug(\"sentence no \" + index + \"\\n\" +\n      //  JSON.stringify(sentence, null, 2));\n    })\n  }\n}\n\nmodule.exports = Corpus\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Lexicon.js",
    "content": "/*\n  Lexicon class\n  Copyright (C) 2019 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst englishLexicon = require('../data/English/lexicon_from_posjs.json')\nconst dutchLexicon = require('../data/Dutch/brill_Lexicon.json')\n\nconst DEBUG = false\n\nclass Lexicon {\n  // Constructor creates a Lexicon for language\n  constructor (language, defaultCategory, defaultCategoryCapitalised, extendedLexicon) {\n    const lexicon = (() => {\n      switch (language) {\n        case 'EN':\n          return englishLexicon\n        case 'DU':\n          return dutchLexicon\n        default:\n          return dutchLexicon\n      }\n    })()\n\n    this.lexicon = Object.assign(lexicon, extendedLexicon || {})\n\n    if (defaultCategory) {\n      this.defaultCategory = defaultCategory\n      if (defaultCategoryCapitalised) {\n        this.defaultCategoryCapitalised = defaultCategoryCapitalised\n      }\n    }\n  }\n\n  // Parses a lexicon in text format: word cat1 cat2 ... catn\n  parseLexicon (data) {\n    // Split into an array of non-empty lines\n    const arrayOfLines = data.match(/[^\\r\\n]+/g)\n    this.lexicon = {} // Object.create(null);\n    const that = this\n    arrayOfLines.forEach(function (line) {\n      // Split line by whitespace\n      const elements = line.trim().split(/\\s+/)\n      if (elements.length > 0) {\n        that.lexicon[elements[0]] = elements.slice(1)\n      }\n    })\n  }\n\n  tagWordWithDefaults (word) {\n    if (/[A-Z]/.test(word[0]) && this.defaultCategoryCapitalised) {\n      // Capitalised\n      return this.defaultCategoryCapitalised\n    } else {\n      // If not found assign default_category\n      return this.defaultCategory\n    }\n  }\n\n  // Returns a list of categories for word\n  tagWord (word) {\n    let categories = this.lexicon[word]\n    DEBUG && console.log(categories)\n    if (!categories || (typeof categories === 'function')) {\n      categories = this.lexicon[word.toLowerCase()]\n    }\n    if (!categories || (typeof categories === 'function')) {\n      categories = [this.tagWordWithDefaults(word)]\n    }\n    return (categories)\n  }\n\n  // Adds a word to the lexicon. NB simply replaces the entry\n  addWord (word, categories) {\n    this.lexicon[word] = categories\n  }\n\n  prettyPrint () {\n    let result = ''\n    const that = this\n    Object.keys(this.lexicon).forEach(function (token) {\n      result += token + '\\t'\n      that.lexicon[token].forEach(function (cat) {\n        result += cat + '\\t'\n      })\n      result += '\\n'\n    })\n    return result\n  }\n\n  nrEntries () {\n    return Object.keys(this.lexicon).length\n  }\n\n  size () {\n    return this.nrEntries()\n  }\n\n  setDefaultCategories (category, categoryCapitalised) {\n    this.defaultCategory = category\n    if (categoryCapitalised) {\n      this.defaultCategoryCapitalised = categoryCapitalised\n    }\n  }\n}\n\nmodule.exports = Lexicon\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Predicate.js",
    "content": "/*\n  Predicates for the Brill tagger\n  Copyright (C) 2019 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst DEBUG = false\n\nconst predicates = require('./RuleTemplates')\nDEBUG && console.log('RuleSet loaded predicates: ' + predicates)\n\nclass Predicate {\n  constructor (name, parameter1, parameter2) {\n    this.name = name\n    this.meta = predicates[name]\n    if (!this.meta) {\n      this.meta = predicates.DEFAULT\n    }\n    // if (this.meta.nrParameters > 0) {\n    this.parameter1 = parameter1\n    // }\n    // if (this.meta.nrParameters > 1) {\n    this.parameter2 = parameter2\n    // }\n    DEBUG && console.log('Predicate\\n' + JSON.toString(this.meta, null, 2))\n  }\n\n  evaluate (sentence, position) {\n    DEBUG && console.log('Predicate.evalute: ' + this.name)\n    const predicate = this.meta.function\n    return (predicate(sentence, position, this.parameter1, this.parameter2))\n  }\n}\n\nmodule.exports = Predicate\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/RuleSet.js",
    "content": "/*\n   Set of transformation rules\n   Copyright (C) 2019 Hugo W.L. ter Doest\n\n   This program is free software: you can redistribute it and/or modify\n   it under the terms of the GNU General Public License as published by\n   the Free Software Foundation, either version 3 of the License, or\n   (at your option) any later version.\n\n   This program is distributed in the hope that it will be useful,\n   but WITHOUT ANY WARRANTY; without even the implied warranty of\n   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n   GNU General Public License for more details.\n\n   You should have received a copy of the GNU General Public License\n   along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict '\n\nconst TFParser = require('./TF_Parser')\n\nconst dutchRuleSet = require('../data/Dutch/brill_CONTEXTRULES.json')\nconst englishRuleSet = require('../data/English/tr_from_posjs.json')\n\nconst DEBUG = false\n\nclass RuleSet {\n  // Constructor takes a language abbreviation and loads the right rule set\n  constructor (language) {\n    let data = englishRuleSet\n    DEBUG && console.log(data)\n    switch (language) {\n      case 'EN':\n        data = englishRuleSet\n        break\n      case 'DU':\n        data = dutchRuleSet\n        break\n    }\n    if (data.rules) {\n      this.rules = {}\n      const that = this\n      data.rules.forEach(function (ruleString) {\n        that.addRule(TFParser.parse(ruleString))\n      })\n    }\n    DEBUG && console.log(this.rules)\n    DEBUG && console.log('Brill_POS_Tagger.read_transformation_rules: number of transformation rules read: ' + Object.keys(this.rules).length)\n  }\n\n  addRule (rule) {\n    // this.rules.push(rule);\n    if (!this.rules[rule.key()]) {\n      this.rules[rule.key()] = rule\n      return true\n    } else {\n      return false\n    }\n  }\n\n  removeRule (rule) {\n    if (this.rules[rule.key()]) {\n      delete this.rules[rule.key()]\n    }\n  }\n\n  getRules () {\n    const that = this\n    return Object.keys(this.rules).map(function (key) {\n      return that.rules[key]\n    })\n  }\n\n  nrRules () {\n    return Object.keys(this.rules).length\n  }\n\n  hasRule (rule) {\n    if (this.rules[rule.key()]) {\n      return true\n    } else {\n      return false\n    }\n  }\n\n  prettyPrint () {\n    let result = ''\n    const that = this\n    Object.keys(this.rules).forEach(function (key) {\n      const rule = that.rules[key]\n      result += rule.prettyPrint() + '\\n'\n    })\n    return result\n  }\n}\n\nmodule.exports = RuleSet\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/RuleTemplate.js",
    "content": "/*\n  Rule Template class for deriving transformation rules.\n  Copyright (C) 2017 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\nclass RuleTemplate {\n  constructor (templateName, metadata) {\n    this.predicateName = templateName\n    this.meta = metadata\n  }\n\n  windowFitsSite (sentence, i) {\n    return ((i + this.meta.window[0] >= 0) &&\n      (i + this.meta.window[0] < sentence.taggedWords.length) &&\n      (i + this.meta.window[1] >= 0) &&\n      (i + this.meta.window[1] < sentence.taggedWords.length))\n  }\n}\n\nmodule.exports = RuleTemplate\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/RuleTemplates.js",
    "content": "/*\n  Rule templates that provide metadata for generating transformation rules\n  Copyright (C) 2017 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst ruleTemplates = {\n  // Predicates as used in the English rules in data/English/tr_from_posjs.txt\n  'NEXT-TAG': {\n    // maps to the predicate function\n    function: nextTagIs,\n    // Minimum required space before or after current position to be a relevant predicate\n    window: [0, 1],\n    // The number of parameters the predicate takes\n    nrParameters: 1,\n    // Function that returns relevant values for parameter 1\n    parameter1Values: nextTagParameterValues\n  },\n  'NEXT-WORD-IS-CAP': {\n    function: nextWordIsCap,\n    window: [0, 1],\n    nrParameters: 0\n  },\n  'PREV-1-OR-2-OR-3-TAG': {\n    function: prev1Or2Or3Tag,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prev1Or2Or3TagParameterValues\n  },\n  'PREV-1-OR-2-TAG': {\n    function: prev1Or2Tag,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prev1Or2TagParameterValues\n  },\n  'NEXT-WORD-IS-TAG': {\n    function: nextTagIs,\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: nextTagParameterValues\n  },\n  'PREV-TAG': {\n    function: prevTagIs,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prevTagParameterValues\n  },\n  /*\n \"CURRENT-WORD-IS-TAG\": {\n   \"function\": current_word_is_tag,\n   \"window\": [0],\n   \"nrParameter\": 1,\n   \"parameter1Values\": currentTagParameterValues\n   },\n  */\n  'PREV-WORD-IS-CAP': {\n    function: prevWordIsCap,\n    window: [-1, 0],\n    nrParameters: 0\n  },\n  'CURRENT-WORD-IS-CAP': {\n    function: currentWordIsCap,\n    window: [0, 0],\n    nrParameters: 0\n  },\n  'CURRENT-WORD-IS-NUMBER': {\n    function: currentWordIsNumber,\n    window: [0, 0],\n    nrParameters: 0\n  },\n  'CURRENT-WORD-IS-URL': {\n    function: currentWordIsURL,\n    window: [0, 0],\n    nrParameters: 0\n  },\n  'CURRENT-WORD-ENDS-WITH': {\n    function: currentWordEndsWith,\n    window: [0, 0],\n    nrParameters: 1,\n    parameter1Values: currentWordEndsWithParameterValues\n  },\n  'PREV-WORD-IS': {\n    function: prevWordIs,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prevWordParameterValues\n  },\n\n  // Predicates as used in the Dutch rules in data/Dutch/brill_CONTEXTRULES.jg\n  PREVTAG: {\n    function: prevTagIs,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prevTagParameterValues\n  },\n  NEXT1OR2TAG: {\n    function: next1Or2TagIs,\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: next1Or2TagIsParameterValues\n  },\n  NEXTTAG: {\n    function: nextTagIs,\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: nextTagParameterValues\n  },\n  PREV1OR2TAG: {\n    function: prev1Or2Tag,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prev1Or2TagParameterValues\n  },\n  WDAND2TAGAFT: {\n    function: currentWordAnd2TagAfterAre,\n    window: [0, 2],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: twoTagAfterParameterValues\n  },\n  NEXT1OR2OR3TAG: {\n    function: next1Or2Or3Tag,\n    // Minimum required window to apply this template is one tag to the right\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: next1Or2Or3TagParameterValues\n  },\n  CURWD: {\n    function: currentWordIs,\n    window: [0, 0],\n    nrParameters: 1,\n    parameter1Values: currentWordParameterValues\n  },\n  SURROUNDTAG: {\n    function: surroundedByTags,\n    window: [-1, 1],\n    nrParameters: 2,\n    parameter1Values: prevTagParameterValues,\n    parameter2Values: nextTagParameterValues\n  },\n  PREV1OR2OR3TAG: {\n    function: prev1Or2Or3Tag,\n    // Minimum required window to apply this template is one tag to the left\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prev1Or2Or3TagParameterValues\n  },\n  WDNEXTTAG: {\n    function: currentWordAndNextTagAre,\n    window: [0, 1],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: nextTagParameterValues\n  },\n  PREV1OR2WD: {\n    function: prev1Or2WordIs,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prev1Or2WordParameterValues\n  },\n  NEXTWD: {\n    function: nextWordIs,\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: nextWordParameterValues\n  },\n  PREVWD: {\n    function: prevWordIs,\n    window: [-1, 0],\n    nrParameters: 1,\n    parameter1Values: prevWordParameterValues\n  },\n  NEXT2TAG: {\n    function: next2TagIs,\n    window: [0, 2],\n    nrParameters: 1,\n    parameter1Values: next2TagParameterValues\n  },\n  WDAND2TAGBFR: {\n    function: currentWordAnd2TagBeforeAre,\n    window: [-2, 0],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: twoTagBeforeParameterValues\n  },\n  WDAND2AFT: {\n    function: currentWordAnd2AfterAre,\n    window: [0, 2],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: twoTagAfterParameterValues\n  },\n  WDPREVTAG: {\n    function: currentWordAndPrevTagAre,\n    window: [-1, 0],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: prevTagParameterValues\n  },\n  RBIGRAM: {\n    function: rightBigramIs,\n    window: [0, 1],\n    nrParameters: 2,\n    parameter1Values: currentWordParameterValues,\n    parameter2Values: nextWordParameterValues\n  },\n  LBIGRAM: {\n    function: leftBigramIs,\n    window: [-1, 0],\n    nrParameters: 2,\n    parameter1Values: prevWordParameterValues,\n    parameter2Values: currentWordParameterValues\n  },\n  NEXTBIGRAM: {\n    function: nextBigramIs,\n    window: [0, 2],\n    nrParameters: 2,\n    parameter1Values: nextWordParameterValues,\n    parameter2Values: twoWordAfterParameterValues\n  },\n  PREVBIGRAM: {\n    function: prevBigramIs,\n    window: [-2, 0],\n    nrParameters: 2,\n    parameter1Values: twoWordBeforeParameterValues,\n    parameter2Values: prevWordParameterValues\n  },\n  PREV2TAG: {\n    function: prev2TagIs,\n    window: [-2, 0],\n    nrParameters: 2,\n    parameter1Values: twoTagBeforeParameterValues,\n    parameter2Values: prevTagParameterValues\n  },\n  NEXT1OR2WD: {\n    function: next1Or2WordIs,\n    window: [0, 1],\n    nrParameters: 1,\n    parameter1Values: next1Or2WordParameterValues\n  },\n  DEFAULT: {\n    function: defaultPredicate,\n    window: [0, 0],\n    nrParameters: 0\n  }\n}\n\n// ==================================\n// Predicates that start with words\n// ==================================\nfunction nextWordIsCap (sentence, i, parameter) {\n  if (i < sentence.taggedWords.length - 1) {\n    const nextWord = sentence.taggedWords[i + 1].token\n    return (nextWord[0] === nextWord[0].toUpperCase())\n  }\n  return (false)\n}\n\nfunction nextWordIs (sentence, i, parameter) {\n  if (i < sentence.taggedWords.length - 1) {\n    return (sentence.taggedWords[i + 1].token === parameter)\n  }\n}\n\nfunction nextWordParameterValues (sentence, i) {\n  if (i < sentence.taggedWords.length - 1) {\n    return [sentence.taggedWords[i + 1].token]\n  } else {\n    return []\n  }\n}\n\nfunction prevWordIsCap (sentence, i, parameter) {\n  let prevWord = null\n  if (i > 0) {\n    prevWord = sentence.taggedWords[i - 1].token\n    return (prevWord[0] === prevWord[0].toUpperCase())\n  }\n  return (false)\n}\n\nfunction currentWordIsCap (sentence, i, parameter) {\n  const currentWord = sentence.taggedWords[i].token\n  return (currentWord[0] === currentWord[0].toUpperCase())\n}\n\nfunction currentWordParameterValues (sentence, i) {\n  return [sentence[i].token]\n}\n\nfunction currentWordIs (sentence, i, parameter) {\n  return (sentence.taggedWords[i].token === parameter)\n}\n\nfunction isNumeric (num) {\n  return (!isNaN(num))\n}\n\nfunction currentWordIsNumber (sentence, i, parameter) {\n  let isNumber = isNumeric(sentence.taggedWords[i].token)\n  // Attempt to parse it as a float\n  if (!isNumber) {\n    isNumber = parseFloat(sentence.taggedWords[i].token)\n  }\n  return ((parameter === 'YES') ? isNumber : !isNumber)\n}\n\n// Checks if the current word is a url\n// Adapted from the original Javascript Brill tagger\nfunction currentWordIsURL (sentence, i, parameter) {\n  let isURL = false\n  if (sentence.taggedWords[i].token.indexOf('.') > -1) {\n    // url if there are two contiguous alpha characters\n    if (/[a-zA-Z]{2}/.test(sentence.taggedWords[i].token)) {\n      isURL = true\n    }\n  }\n  return ((parameter === 'YES') ? isURL : !isURL)\n}\n\nfunction currentWordAnd2TagAfterAre (sentence, i, parameter1, parameter2) {\n  if (i < sentence.taggedWords.length - 2) {\n    if (sentence.taggedWords[i + 2][1] === parameter2) {\n      return (sentence.taggedWords[i].token === parameter1)\n    } else {\n      return (false)\n    }\n  } else {\n    return (false)\n  }\n}\n\nfunction twoTagAfterParameterValues (sentence, i) {\n  if (i < sentence.taggedWords.length - 2) {\n    return [sentence.taggedWords[i + 2].tag]\n  } else {\n    return []\n  }\n}\n\nfunction currentWordAndNextTagAre (sentence, i, parameter1, parameter2) {\n  let nextTag = false\n  // check current word\n  const currentWord = (sentence.taggedWords[i].token === parameter1)\n  // check next tag\n  if (i < sentence.taggedWords.length - 1) {\n    nextTag = (sentence.taggedWords[i + 1].tag === parameter2)\n  }\n  return (currentWord && nextTag)\n}\n\nfunction currentWordAndPrevTagAre (sentence, i, parameter1, parameter2) {\n  let prevTag = false\n  // check current word\n  const currentWord = (sentence.taggedWords[i].token === parameter2)\n  // check prev tag\n  if (i > 0) {\n    prevTag = (sentence.taggedWords[i - 1].tag === parameter1)\n  }\n  return (currentWord && prevTag)\n}\n\nfunction currentWordAnd2TagBeforeAre (sentence, i, parameter1, parameter2) {\n  let twoTagsBefore = false\n  // check current word\n  const currentWord = (sentence.taggedWords[i].token === parameter2)\n  if (i > 1) {\n    // check two tags before\n    twoTagsBefore = (sentence.taggedWords[i - 2].tag === parameter1)\n  }\n  return (currentWord && twoTagsBefore)\n}\n\nfunction twoTagBeforeParameterValues (sentence, i) {\n  if (i > 1) {\n    return [sentence.taggedWords[i - 2].tag]\n  } else {\n    return []\n  }\n}\n\nfunction currentWordAnd2AfterAre (sentence, i, parameter1, parameter2) {\n  let twoWordsAfter = false\n  // check current word\n  const currentWord = (sentence.taggedWords[i].token === parameter1)\n  if (i < sentence.taggedWords.length - 2) {\n    twoWordsAfter = (sentence.taggedWords[i + 2].token === parameter2)\n  }\n  return (currentWord && twoWordsAfter)\n}\n\nfunction prevWordIs (sentence, i, parameter) {\n  if (i > 0) {\n    return (sentence.taggedWords[i - 1].token.toLowerCase() === parameter.toLowerCase())\n  } else {\n    return (false)\n  }\n}\n\n// Returns the right value for parameter 1 of prevWordIs\nfunction prevWordParameterValues (sentence, i) {\n  if (i > 0) {\n    return [sentence.taggedWords[i - 1].token]\n  } else {\n    return []\n  }\n}\n\nfunction prev1Or2WordIs (sentence, i, parameter) {\n  let prev1 = false\n  let prev2 = false\n  if (i > 0) {\n    prev1 = (sentence.taggedWords[i - 1].token.toLowerCase() === parameter.toLowerCase())\n  }\n  if (i > 1) {\n    prev2 = (sentence.taggedWords[i - 2].token.toLowerCase() === parameter.toLowerCase())\n  }\n  return (prev1 || prev2)\n}\n\nfunction prev1Or2WordParameterValues (sentence, i) {\n  const values = []\n  if (i > 0) {\n    values.push(sentence[i - 1].token)\n  }\n  if (i > 1) {\n    values.push(sentence[i - 2].token)\n  }\n  return values\n}\n\n// Indicates whether or not this string ends with the specified string.\n// Adapted from the original Javascript Brill tagger\nfunction currentWordEndsWith (sentence, i, parameter) {\n  const word = sentence.taggedWords[i].token\n  if (!parameter || (parameter.length > word.length)) {\n    return false\n  }\n  return (word.indexOf(parameter) === (word.length - parameter.length))\n}\n\n// sentence is an array of token records\nfunction currentWordEndsWithParameterValues (sentence, i) {\n  const values = ['ing']\n\n  return values\n}\n\nfunction rightBigramIs (sentence, i, parameter1, parameter2) {\n  const word1 = (sentence.taggedWords[i].token === parameter1)\n  let word2 = false\n  if (i < sentence.taggedWords.length - 1) {\n    word2 = (sentence.taggedWords[i + 1].token === parameter2)\n  }\n  return (word1 && word2)\n}\n\nfunction leftBigramIs (sentence, i, parameter1, parameter2) {\n  let word1 = false\n  const word2 = (sentence.taggedWords[i].token === parameter2)\n  if (i > 0) {\n    word1 = (sentence.taggedWords[i - 1].token === parameter1)\n  }\n  return (word1 && word2)\n}\n\nfunction nextBigramIs (sentence, i, parameter1, parameter2) {\n  let word1 = false\n  let word2 = false\n  if (i < sentence.taggedWords.length - 1) {\n    word1 = (sentence.taggedWords[i + 1].token === parameter1)\n  }\n  if (i < sentence.taggedWords.length - 2) {\n    word2 = (sentence.taggedWords[i + 2].token === parameter2)\n  }\n  return (word1 && word2)\n}\n\nfunction twoWordAfterParameterValues (sentence, i) {\n  if (i < sentence.taggedWords.length - 2) {\n    return [sentence.taggedWords[i + 2].token]\n  } else {\n    return []\n  }\n}\n\nfunction prevBigramIs (sentence, i, parameter1, parameter2) {\n  let word1 = false\n  let word2 = false\n  if (i > 1) {\n    word1 = (sentence.taggedWords[i - 2].token === parameter1)\n  }\n  if (i > 0) {\n    word2 = (sentence.taggedWords[i - 1].token === parameter2)\n  }\n  return (word1 && word2)\n}\n\nfunction twoWordBeforeParameterValues (sentence, i) {\n  if (i > 1) {\n    return [sentence.taggedWords[i - 2].token]\n  } else {\n    return []\n  }\n}\n\nfunction next1Or2WordIs (sentence, i, parameter1, parameter2) {\n  let next1 = false\n  let next2 = false\n  if (i < sentence.taggedWords.length - 1) {\n    next1 = (sentence.taggedWords[i + 1].token === parameter1)\n  }\n  if (i < sentence.taggedWords.length - 2) {\n    next2 = (sentence.taggedWords[i + 2].token === parameter2)\n  }\n  return (next1 || next2)\n}\n\nfunction next1Or2WordParameterValues (sentence, i) {\n  const values = []\n  if (i < sentence.taggedWords.length - 1) {\n    values.push(sentence.taggedWords[i + 1].token)\n  }\n  if (i < sentence.taggedWords.length - 2) {\n    values.push(sentence.taggedWords[i + 2].token)\n  }\n  return values\n}\n\n// ==================================\n// Predicates about tags\n// ==================================\nfunction nextTagIs (sentence, i, parameter) {\n  if (i < sentence.taggedWords.length - 1) {\n    return (sentence.taggedWords[i + 1].tag === parameter)\n  } else {\n    return (false)\n  }\n}\n\nfunction nextTagParameterValues (sentence, i) {\n  if (i < sentence.taggedWords.length - 1) {\n    return [sentence.taggedWords[i + 1].tag]\n  } else {\n    return []\n  }\n}\n\nfunction next2TagIs (sentence, i, parameter) {\n  if (i < sentence.taggedWords.length - 2) {\n    return (sentence.taggedWords[i + 2].tag === parameter)\n  } else {\n    return (false)\n  }\n}\n\nfunction next2TagParameterValues (sentence, i) {\n  if (i < sentence.taggedWords.length - 2) {\n    return [sentence.taggedWords[i + 2].tag]\n  } else {\n    return []\n  }\n}\n\nfunction next1Or2TagIs (sentence, i, parameter) {\n  let next1 = false\n  let next2 = false\n  if (i < sentence.taggedWords.length - 1) {\n    next1 = (sentence.taggedWords[i + 1].tag === parameter)\n  }\n  if (i < sentence.taggedWords.length - 2) {\n    next2 = (sentence.taggedWords[i + 2].tag === parameter)\n  }\n  return (next1 || next2)\n}\n\nfunction next1Or2TagIsParameterValues (sentence, i) {\n  const values = []\n  if (i < sentence.taggedWords.length - 1) {\n    values.push(sentence.taggedWords[i + 1].tag)\n  }\n  if (i < sentence.taggedWords.length - 2) {\n    values.push(sentence.taggedWords[i + 2].tag)\n  }\n  return values\n}\n\nfunction next1Or2Or3Tag (sentence, i, parameter) {\n  let next3 = false\n  if (i < sentence.taggedWords.length - 3) {\n    next3 = (sentence.taggedWords[i + 3].tag === parameter)\n  }\n  return (next1Or2TagIs(sentence, i, parameter) || next3)\n}\n\nfunction next1Or2Or3TagParameterValues (sentence, i) {\n  const values = next1Or2TagIsParameterValues(sentence, i)\n  if (i < sentence.taggedWords.length - 3) {\n    values.push(sentence.taggedWords[i + 3].tag)\n  }\n  return values\n}\n\nfunction surroundedByTags (sentence, i, parameter1, parameter2) {\n  if (i < sentence.taggedWords.length - 1) {\n    // check next tag\n    if (sentence.taggedWords[i + 1].tag === parameter2) {\n      // check previous tag\n      if (i > 0) {\n        return (sentence.taggedWords[i - 1].tag === parameter1)\n      } else {\n        return (false)\n      }\n    } else {\n      return (false)\n    }\n  } else {\n    return (false)\n  }\n}\n\nfunction prev1Or2Or3Tag (sentence, i, parameter) {\n  let prev3 = null\n  if (i > 2) {\n    prev3 = sentence.taggedWords[i - 3].tag\n  }\n  return (prev1Or2Tag(sentence, i, parameter) || (prev3 === parameter))\n}\n\nfunction prev1Or2Or3TagParameterValues (sentence, i) {\n  const values = prev1Or2TagParameterValues(sentence, i)\n  if (i > 2) {\n    values.push(sentence.taggedWords[i - 3].tag)\n  }\n  return values\n}\n\nfunction prev1Or2Tag (sentence, i, parameter) {\n  let prev1 = null\n  if (i > 0) {\n    prev1 = sentence.taggedWords[i - 1].tag\n  }\n  let prev2 = null\n  if (i > 1) {\n    prev2 = sentence.taggedWords[i - 2].tag\n  }\n  return ((prev1 === parameter) || (prev2 === parameter))\n}\n\nfunction prev1Or2TagParameterValues (sentence, i) {\n  const values = []\n  if (i > 0) {\n    values.push(sentence.taggedWords[i - 1].tag)\n  }\n  if (i > 1) {\n    values.push(sentence.taggedWords[i - 2].tag)\n  }\n  return values\n}\n\nfunction prevTagIs (sentence, i, parameter) {\n  let prev = false\n  if (i > 0) {\n    prev = (sentence.taggedWords[i - 1].tag === parameter)\n  }\n  return (prev)\n}\n\nfunction prevTagParameterValues (sentence, i) {\n  if (i > 0) {\n    return [sentence.taggedWords[i - 1].tag]\n  } else {\n    return []\n  }\n}\n\n// Looks like a useless predicate because transformation already take the\n// current tag into account\n/*\nfunction currentWordIsTag (sentence, i, parameter) {\n  return (sentence.taggedWords[i].tag === parameter)\n}\n*/\n\nfunction prev2TagIs (sentence, i, parameter) {\n  let prev2 = false\n  if (i > 1) {\n    prev2 = (sentence.taggedWords[i - 2].tag === parameter)\n  }\n  return (prev2)\n}\n\nfunction defaultPredicate (sentence, i, parameter) {\n  return (false)\n}\n\nmodule.exports = ruleTemplates\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/Sentence.js",
    "content": "/*\n  Sentence class that generates sample elements from sentences\n  Copyright (C) 2018 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nclass Sentence {\n  constructor (data) {\n    this.taggedWords = []\n    if (data) {\n      this.taggedWords = data\n    }\n  }\n\n  addTaggedWord (token, tag) {\n    this.taggedWords.push({\n      token: token,\n      tag: tag\n    })\n  }\n\n  clone () {\n    const s = new Sentence()\n    this.taggedWords.forEach(function (wordObject) {\n      s.addTaggedWord(wordObject.token, wordObject.tag)\n    })\n    return s\n  }\n}\nmodule.exports = Sentence\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/TF_Parser.js",
    "content": "/* jscpd:ignore-start */\n\n/*\n * Generated by PEG.js 0.10.0.\n *\n * http://pegjs.org/\n */\n'use strict'\n\nfunction peg$subclass (child, parent) {\n  function ctor () { this.constructor = child }\n  ctor.prototype = parent.prototype\n  child.prototype = new ctor()\n}\n\nfunction peg$SyntaxError (message, expected, found, location) {\n  this.message = message\n  this.expected = expected\n  this.found = found\n  this.location = location\n  this.name = 'SyntaxError'\n\n  if (typeof Error.captureStackTrace === 'function') {\n    Error.captureStackTrace(this, peg$SyntaxError)\n  }\n}\n\npeg$subclass(peg$SyntaxError, Error)\n\npeg$SyntaxError.buildMessage = function (expected, found) {\n  const DESCRIBE_EXPECTATION_FNS = {\n    literal: function (expectation) {\n      return '\"' + literalEscape(expectation.text) + '\"'\n    },\n\n    class: function (expectation) {\n      let escapedParts = ''\n      let i\n\n      for (i = 0; i < expectation.parts.length; i++) {\n        escapedParts += expectation.parts[i] instanceof Array\n          ? classEscape(expectation.parts[i][0]) + '-' + classEscape(expectation.parts[i][1])\n          : classEscape(expectation.parts[i])\n      }\n\n      return '[' + (expectation.inverted ? '^' : '') + escapedParts + ']'\n    },\n\n    any: function (expectation) {\n      return 'any character'\n    },\n\n    end: function (expectation) {\n      return 'end of input'\n    },\n\n    other: function (expectation) {\n      return expectation.description\n    }\n  }\n\n  function hex (ch) {\n    return ch.charCodeAt(0).toString(16).toUpperCase()\n  }\n\n  function literalEscape (s) {\n    return s\n      .replace(/\\\\/g, '\\\\\\\\')\n      .replace(/\"/g, '\\\\\"')\n      .replace(/\\0/g, '\\\\0')\n      .replace(/\\t/g, '\\\\t')\n      .replace(/\\n/g, '\\\\n')\n      .replace(/\\r/g, '\\\\r')\n      .replace(/[\\x00-\\x0F]/g, function (ch) { return '\\\\x0' + hex(ch) })\n      .replace(/[\\x10-\\x1F\\x7F-\\x9F]/g, function (ch) { return '\\\\x' + hex(ch) })\n  }\n\n  function classEscape (s) {\n    return s\n      .replace(/\\\\/g, '\\\\\\\\')\n      .replace(/\\]/g, '\\\\]')\n      .replace(/\\^/g, '\\\\^')\n      .replace(/-/g, '\\\\-')\n      .replace(/\\0/g, '\\\\0')\n      .replace(/\\t/g, '\\\\t')\n      .replace(/\\n/g, '\\\\n')\n      .replace(/\\r/g, '\\\\r')\n      .replace(/[\\x00-\\x0F]/g, function (ch) { return '\\\\x0' + hex(ch) })\n      .replace(/[\\x10-\\x1F\\x7F-\\x9F]/g, function (ch) { return '\\\\x' + hex(ch) })\n  }\n\n  function describeExpectation (expectation) {\n    return DESCRIBE_EXPECTATION_FNS[expectation.type](expectation)\n  }\n\n  function describeExpected (expected) {\n    const descriptions = new Array(expected.length)\n    let i; let j\n\n    for (i = 0; i < expected.length; i++) {\n      descriptions[i] = describeExpectation(expected[i])\n    }\n\n    descriptions.sort()\n\n    if (descriptions.length > 0) {\n      for (i = 1, j = 1; i < descriptions.length; i++) {\n        if (descriptions[i - 1] !== descriptions[i]) {\n          descriptions[j] = descriptions[i]\n          j++\n        }\n      }\n      descriptions.length = j\n    }\n\n    switch (descriptions.length) {\n      case 1:\n        return descriptions[0]\n\n      case 2:\n        return descriptions[0] + ' or ' + descriptions[1]\n\n      default:\n        return descriptions.slice(0, -1).join(', ') +\n          ', or ' +\n          descriptions[descriptions.length - 1]\n    }\n  }\n\n  function describeFound (found) {\n    return found ? '\"' + literalEscape(found) + '\"' : 'end of input'\n  }\n\n  return 'Expected ' + describeExpected(expected) + ' but ' + describeFound(found) + ' found.'\n}\n\nfunction peg$parse (input, options) {\n  options = options !== void 0 ? options : {}\n\n  const peg$FAILED = {}\n\n  const peg$startRuleFunctions = { transformation_rule: peg$parsetransformation_rule }\n  let peg$startRuleFunction = peg$parsetransformation_rule\n\n  const peg$c0 = function (c1, c2, pred, pars) {\n    let result = null\n\n    // Construct rule\n    if (pars.length === 1) {\n      result = new TransformationRule(c1, c2, pred, pars[0])\n    } else {\n      if (pars.length === 2) {\n        result = new TransformationRule(c1, c2, pred, pars[0], pars[1])\n      } else {\n        result = new TransformationRule(c1, c2, pred)\n      }\n    }\n    return (result)\n  }\n  const peg$c1 = /^[!-~\\xA1-\\xFF]/\n  const peg$c2 = peg$classExpectation([['!', '~'], ['\\xA1', '\\xFF']], false, false)\n  const peg$c3 = function (characters) {\n    let s = ''\n    for (let i = 0; i < characters.length; i++) {\n      s += characters[i]\n    }\n    return (s)\n  }\n  const peg$c4 = '*'\n  const peg$c5 = peg$literalExpectation('*', false)\n  const peg$c6 = function (wc) {\n    return (wc)\n  }\n  const peg$c7 = '\\r\\n'\n  const peg$c8 = peg$literalExpectation('\\r\\n', false)\n  const peg$c9 = '\\n'\n  const peg$c10 = peg$literalExpectation('\\n', false)\n  const peg$c11 = '\\r'\n  const peg$c12 = peg$literalExpectation('\\r', false)\n  const peg$c13 = '//'\n  const peg$c14 = peg$literalExpectation('//', false)\n  const peg$c15 = peg$anyExpectation()\n  const peg$c16 = ' '\n  const peg$c17 = peg$literalExpectation(' ', false)\n  const peg$c18 = '\\t'\n  const peg$c19 = peg$literalExpectation('\\t', false)\n\n  let peg$currPos = 0\n  let peg$savedPos = 0\n  const peg$posDetailsCache = [{ line: 1, column: 1 }]\n  let peg$maxFailPos = 0\n  let peg$maxFailExpected = []\n  let peg$silentFails = 0\n\n  let peg$result\n\n  if ('startRule' in options) {\n    if (!(options.startRule in peg$startRuleFunctions)) {\n      throw new Error(\"Can't start parsing from rule \\\"\" + options.startRule + '\".')\n    }\n\n    peg$startRuleFunction = peg$startRuleFunctions[options.startRule]\n  }\n\n  function text () {\n    return input.substring(peg$savedPos, peg$currPos)\n  }\n\n  function location () {\n    return peg$computeLocation(peg$savedPos, peg$currPos)\n  }\n\n  function expected (description, location) {\n    location = location !== void 0 ? location : peg$computeLocation(peg$savedPos, peg$currPos)\n\n    throw peg$buildStructuredError(\n      [peg$otherExpectation(description)],\n      input.substring(peg$savedPos, peg$currPos),\n      location\n    )\n  }\n\n  function error (message, location) {\n    location = location !== void 0 ? location : peg$computeLocation(peg$savedPos, peg$currPos)\n\n    throw peg$buildSimpleError(message, location)\n  }\n\n  function peg$literalExpectation (text, ignoreCase) {\n    return { type: 'literal', text: text, ignoreCase: ignoreCase }\n  }\n\n  function peg$classExpectation (parts, inverted, ignoreCase) {\n    return { type: 'class', parts: parts, inverted: inverted, ignoreCase: ignoreCase }\n  }\n\n  function peg$anyExpectation () {\n    return { type: 'any' }\n  }\n\n  function peg$endExpectation () {\n    return { type: 'end' }\n  }\n\n  function peg$otherExpectation (description) {\n    return { type: 'other', description: description }\n  }\n\n  function peg$computePosDetails (pos) {\n    let details = peg$posDetailsCache[pos]; let p\n\n    if (details) {\n      return details\n    } else {\n      p = pos - 1\n      while (!peg$posDetailsCache[p]) {\n        p--\n      }\n\n      details = peg$posDetailsCache[p]\n      details = {\n        line: details.line,\n        column: details.column\n      }\n\n      while (p < pos) {\n        if (input.charCodeAt(p) === 10) {\n          details.line++\n          details.column = 1\n        } else {\n          details.column++\n        }\n\n        p++\n      }\n\n      peg$posDetailsCache[pos] = details\n      return details\n    }\n  }\n\n  function peg$computeLocation (startPos, endPos) {\n    const startPosDetails = peg$computePosDetails(startPos)\n    const endPosDetails = peg$computePosDetails(endPos)\n\n    return {\n      start: {\n        offset: startPos,\n        line: startPosDetails.line,\n        column: startPosDetails.column\n      },\n      end: {\n        offset: endPos,\n        line: endPosDetails.line,\n        column: endPosDetails.column\n      }\n    }\n  }\n\n  function peg$fail (expected) {\n    if (peg$currPos < peg$maxFailPos) { return }\n\n    if (peg$currPos > peg$maxFailPos) {\n      peg$maxFailPos = peg$currPos\n      peg$maxFailExpected = []\n    }\n\n    peg$maxFailExpected.push(expected)\n  }\n\n  function peg$buildSimpleError (message, location) {\n    return new peg$SyntaxError(message, null, null, location)\n  }\n\n  function peg$buildStructuredError (expected, found, location) {\n    return new peg$SyntaxError(\n      peg$SyntaxError.buildMessage(expected, found),\n      expected,\n      found,\n      location\n    )\n  }\n\n  function peg$parsetransformation_rule () {\n    let s0, s1, s2, s3, s4, s5\n\n    s0 = peg$currPos\n    s1 = peg$parsecategory1()\n    if (s1 !== peg$FAILED) {\n      s2 = peg$parseidentifier()\n      if (s2 !== peg$FAILED) {\n        s3 = peg$parseidentifier()\n        if (s3 !== peg$FAILED) {\n          s4 = []\n          s5 = peg$parseidentifier()\n          while (s5 !== peg$FAILED) {\n            s4.push(s5)\n            s5 = peg$parseidentifier()\n          }\n          if (s4 !== peg$FAILED) {\n            peg$savedPos = s0\n            s1 = peg$c0(s1, s2, s3, s4)\n            s0 = s1\n          } else {\n            peg$currPos = s0\n            s0 = peg$FAILED\n          }\n        } else {\n          peg$currPos = s0\n          s0 = peg$FAILED\n        }\n      } else {\n        peg$currPos = s0\n        s0 = peg$FAILED\n      }\n    } else {\n      peg$currPos = s0\n      s0 = peg$FAILED\n    }\n\n    return s0\n  }\n\n  function peg$parsecategory1 () {\n    let s0\n\n    s0 = peg$parsewild_card()\n    if (s0 === peg$FAILED) {\n      s0 = peg$parseidentifier()\n    }\n\n    return s0\n  }\n\n  function peg$parseidentifier () {\n    let s0, s1, s2\n\n    s0 = peg$currPos\n    s1 = []\n    if (peg$c1.test(input.charAt(peg$currPos))) {\n      s2 = input.charAt(peg$currPos)\n      peg$currPos++\n    } else {\n      s2 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c2) }\n    }\n    if (s2 !== peg$FAILED) {\n      while (s2 !== peg$FAILED) {\n        s1.push(s2)\n        if (peg$c1.test(input.charAt(peg$currPos))) {\n          s2 = input.charAt(peg$currPos)\n          peg$currPos++\n        } else {\n          s2 = peg$FAILED\n          if (peg$silentFails === 0) { peg$fail(peg$c2) }\n        }\n      }\n    } else {\n      s1 = peg$FAILED\n    }\n    if (s1 !== peg$FAILED) {\n      s2 = peg$parseS_no_eol()\n      if (s2 !== peg$FAILED) {\n        peg$savedPos = s0\n        s1 = peg$c3(s1)\n        s0 = s1\n      } else {\n        peg$currPos = s0\n        s0 = peg$FAILED\n      }\n    } else {\n      peg$currPos = s0\n      s0 = peg$FAILED\n    }\n\n    return s0\n  }\n\n  function peg$parsewild_card () {\n    let s0, s1, s2\n\n    s0 = peg$currPos\n    if (input.charCodeAt(peg$currPos) === 42) {\n      s1 = peg$c4\n      peg$currPos++\n    } else {\n      s1 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c5) }\n    }\n    if (s1 !== peg$FAILED) {\n      s2 = peg$parseS_no_eol()\n      if (s2 !== peg$FAILED) {\n        peg$savedPos = s0\n        s1 = peg$c6(s1)\n        s0 = s1\n      } else {\n        peg$currPos = s0\n        s0 = peg$FAILED\n      }\n    } else {\n      peg$currPos = s0\n      s0 = peg$FAILED\n    }\n\n    return s0\n  }\n\n  function peg$parseEOL () {\n    let s0\n\n    if (input.substr(peg$currPos, 2) === peg$c7) {\n      s0 = peg$c7\n      peg$currPos += 2\n    } else {\n      s0 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c8) }\n    }\n    if (s0 === peg$FAILED) {\n      if (input.charCodeAt(peg$currPos) === 10) {\n        s0 = peg$c9\n        peg$currPos++\n      } else {\n        s0 = peg$FAILED\n        if (peg$silentFails === 0) { peg$fail(peg$c10) }\n      }\n      if (s0 === peg$FAILED) {\n        if (input.charCodeAt(peg$currPos) === 13) {\n          s0 = peg$c11\n          peg$currPos++\n        } else {\n          s0 = peg$FAILED\n          if (peg$silentFails === 0) { peg$fail(peg$c12) }\n        }\n      }\n    }\n\n    return s0\n  }\n\n  function peg$parseComment () {\n    let s0, s1, s2, s3, s4, s5\n\n    s0 = peg$currPos\n    if (input.substr(peg$currPos, 2) === peg$c13) {\n      s1 = peg$c13\n      peg$currPos += 2\n    } else {\n      s1 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c14) }\n    }\n    if (s1 !== peg$FAILED) {\n      s2 = []\n      s3 = peg$currPos\n      s4 = peg$currPos\n      peg$silentFails++\n      s5 = peg$parseEOL()\n      peg$silentFails--\n      if (s5 === peg$FAILED) {\n        s4 = void 0\n      } else {\n        peg$currPos = s4\n        s4 = peg$FAILED\n      }\n      if (s4 !== peg$FAILED) {\n        if (input.length > peg$currPos) {\n          s5 = input.charAt(peg$currPos)\n          peg$currPos++\n        } else {\n          s5 = peg$FAILED\n          if (peg$silentFails === 0) { peg$fail(peg$c15) }\n        }\n        if (s5 !== peg$FAILED) {\n          s4 = [s4, s5]\n          s3 = s4\n        } else {\n          peg$currPos = s3\n          s3 = peg$FAILED\n        }\n      } else {\n        peg$currPos = s3\n        s3 = peg$FAILED\n      }\n      while (s3 !== peg$FAILED) {\n        s2.push(s3)\n        s3 = peg$currPos\n        s4 = peg$currPos\n        peg$silentFails++\n        s5 = peg$parseEOL()\n        peg$silentFails--\n        if (s5 === peg$FAILED) {\n          s4 = void 0\n        } else {\n          peg$currPos = s4\n          s4 = peg$FAILED\n        }\n        if (s4 !== peg$FAILED) {\n          if (input.length > peg$currPos) {\n            s5 = input.charAt(peg$currPos)\n            peg$currPos++\n          } else {\n            s5 = peg$FAILED\n            if (peg$silentFails === 0) { peg$fail(peg$c15) }\n          }\n          if (s5 !== peg$FAILED) {\n            s4 = [s4, s5]\n            s3 = s4\n          } else {\n            peg$currPos = s3\n            s3 = peg$FAILED\n          }\n        } else {\n          peg$currPos = s3\n          s3 = peg$FAILED\n        }\n      }\n      if (s2 !== peg$FAILED) {\n        s3 = peg$parseEOL()\n        if (s3 === peg$FAILED) {\n          s3 = peg$parseEOI()\n        }\n        if (s3 !== peg$FAILED) {\n          s1 = [s1, s2, s3]\n          s0 = s1\n        } else {\n          peg$currPos = s0\n          s0 = peg$FAILED\n        }\n      } else {\n        peg$currPos = s0\n        s0 = peg$FAILED\n      }\n    } else {\n      peg$currPos = s0\n      s0 = peg$FAILED\n    }\n\n    return s0\n  }\n\n  function peg$parseS () {\n    let s0, s1\n\n    s0 = []\n    if (input.charCodeAt(peg$currPos) === 32) {\n      s1 = peg$c16\n      peg$currPos++\n    } else {\n      s1 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c17) }\n    }\n    if (s1 === peg$FAILED) {\n      if (input.charCodeAt(peg$currPos) === 9) {\n        s1 = peg$c18\n        peg$currPos++\n      } else {\n        s1 = peg$FAILED\n        if (peg$silentFails === 0) { peg$fail(peg$c19) }\n      }\n      if (s1 === peg$FAILED) {\n        s1 = peg$parseEOL()\n        if (s1 === peg$FAILED) {\n          s1 = peg$parseComment()\n        }\n      }\n    }\n    while (s1 !== peg$FAILED) {\n      s0.push(s1)\n      if (input.charCodeAt(peg$currPos) === 32) {\n        s1 = peg$c16\n        peg$currPos++\n      } else {\n        s1 = peg$FAILED\n        if (peg$silentFails === 0) { peg$fail(peg$c17) }\n      }\n      if (s1 === peg$FAILED) {\n        if (input.charCodeAt(peg$currPos) === 9) {\n          s1 = peg$c18\n          peg$currPos++\n        } else {\n          s1 = peg$FAILED\n          if (peg$silentFails === 0) { peg$fail(peg$c19) }\n        }\n        if (s1 === peg$FAILED) {\n          s1 = peg$parseEOL()\n          if (s1 === peg$FAILED) {\n            s1 = peg$parseComment()\n          }\n        }\n      }\n    }\n\n    return s0\n  }\n\n  function peg$parseS_no_eol () {\n    let s0, s1\n\n    s0 = []\n    if (input.charCodeAt(peg$currPos) === 32) {\n      s1 = peg$c16\n      peg$currPos++\n    } else {\n      s1 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c17) }\n    }\n    if (s1 === peg$FAILED) {\n      if (input.charCodeAt(peg$currPos) === 9) {\n        s1 = peg$c18\n        peg$currPos++\n      } else {\n        s1 = peg$FAILED\n        if (peg$silentFails === 0) { peg$fail(peg$c19) }\n      }\n      if (s1 === peg$FAILED) {\n        s1 = peg$parseComment()\n      }\n    }\n    while (s1 !== peg$FAILED) {\n      s0.push(s1)\n      if (input.charCodeAt(peg$currPos) === 32) {\n        s1 = peg$c16\n        peg$currPos++\n      } else {\n        s1 = peg$FAILED\n        if (peg$silentFails === 0) { peg$fail(peg$c17) }\n      }\n      if (s1 === peg$FAILED) {\n        if (input.charCodeAt(peg$currPos) === 9) {\n          s1 = peg$c18\n          peg$currPos++\n        } else {\n          s1 = peg$FAILED\n          if (peg$silentFails === 0) { peg$fail(peg$c19) }\n        }\n        if (s1 === peg$FAILED) {\n          s1 = peg$parseComment()\n        }\n      }\n    }\n\n    return s0\n  }\n\n  function peg$parseEOI () {\n    let s0, s1\n\n    s0 = peg$currPos\n    peg$silentFails++\n    if (input.length > peg$currPos) {\n      s1 = input.charAt(peg$currPos)\n      peg$currPos++\n    } else {\n      s1 = peg$FAILED\n      if (peg$silentFails === 0) { peg$fail(peg$c15) }\n    }\n    peg$silentFails--\n    if (s1 === peg$FAILED) {\n      s0 = void 0\n    } else {\n      peg$currPos = s0\n      s0 = peg$FAILED\n    }\n\n    return s0\n  }\n\n  var TransformationRule = require('./TransformationRule')\n\n  peg$result = peg$startRuleFunction()\n\n  if (peg$result !== peg$FAILED && peg$currPos === input.length) {\n    return peg$result\n  } else {\n    if (peg$result !== peg$FAILED && peg$currPos < input.length) {\n      peg$fail(peg$endExpectation())\n    }\n\n    throw peg$buildStructuredError(\n      peg$maxFailExpected,\n      peg$maxFailPos < input.length ? input.charAt(peg$maxFailPos) : null,\n      peg$maxFailPos < input.length\n        ? peg$computeLocation(peg$maxFailPos, peg$maxFailPos + 1)\n        : peg$computeLocation(peg$maxFailPos, peg$maxFailPos)\n    )\n  }\n}\n\nmodule.exports = {\n  SyntaxError: peg$SyntaxError,\n  parse: peg$parse\n}\n/* jscpd:ignore-end */\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/TF_Parser.pegjs",
    "content": "{\n  var TransformationRule = require(\"./TransformationRule\");\n}\n\ntransformation_rule = c1: category1 c2: category2 pred: predicate pars: parameter *\n{\n  var result = null;\n\n  // Construct rule\n  if (pars.length === 1) {\n    result = new TransformationRule(c1, c2, pred, pars[0]);\n  }\n  else {\n    if (pars.length === 2) {\n      result = new TransformationRule(c1, c2, pred, pars[0], pars[1]);\n    }\n    else {\n      result = new TransformationRule(c1, c2, pred);\n    }\n  }\n  return(result);\n}\n\ncategory1 = wild_card / identifier\n\ncategory2 = identifier\n\npredicate = identifier\n\nparameter = identifier\n\nidentifier =\n//  characters: [a-zA-Z_0-9_\\-\\.,()]+ S_no_eol\n// https://en.wikipedia.org/wiki/List_of_Unicode_characters\n// Ranges supported: U+0021\t- U+007E plus U+00A1 - U+00FF\n  characters: [!-~¡-ÿ]+ S_no_eol\n  {\n   var s = \"\";\n   for (var i = 0; i < characters.length; i++) {\n     s += characters[i];\n   }\n   return(s);\n  }\n\nwild_card = wc: \"*\" S_no_eol\n  {\n   return(wc)\n  }\n\n// Blanks\nEOL =\n  '\\r\\n' / '\\n' / '\\r'\nComment =\n  \"\\/\\/\" (!EOL .)* (EOL/EOI)\nS =\n  (' ' / '\\t' / EOL / Comment)*\nS_no_eol =\n  (' ' / '\\t' / Comment)*\nEOI=\n  !.\n"
  },
  {
    "path": "lib/natural/brill_pos_tagger/lib/TransformationRule.js",
    "content": "/*\n  Transformation rules for the Brill tagger\n  Copyright (C) 2017 Hugo W.L. ter Doest\n\n  This program is free software: you can redistribute it and/or modify\n  it under the terms of the GNU General Public License as published by\n  the Free Software Foundation, either version 3 of the License, or\n  (at your option) any later version.\n\n  This program is distributed in the hope that it will be useful,\n  but WITHOUT ANY WARRANTY; without even the implied warranty of\n  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\n  GNU General Public License for more details.\n\n  You should have received a copy of the GNU General Public License\n  along with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nconst Predicate = require('./Predicate')\n\nconst categoryWildCard = '*'\n\nclass TransformationRule {\n  constructor (c1, c2, predicate, parameter1, parameter2) {\n    this.literal = [c1, c2, predicate, parameter1, parameter2]\n    this.predicate = new Predicate(predicate, parameter1, parameter2)\n    this.oldCategory = c1\n    this.newCategory = c2\n    // These members are for the learning algorithm\n    this.neutral = 0\n    this.negative = 0\n    this.positive = 0\n    this.hasBeenSelectedAsHighRuleBefore = false\n  }\n\n  key () {\n    return (this.literal.toString())\n  }\n\n  apply (sentence, position) {\n    if ((sentence.taggedWords[position].tag === this.oldCategory) ||\n        (this.oldCategory === categoryWildCard)) {\n      if (this.predicate.evaluate(sentence, position)) {\n        sentence.taggedWords[position].tag = this.newCategory\n      }\n    }\n  }\n\n  //\n  // Methods for processing sentences from a corpus that consist of an array of tokens\n  //\n\n  // Returns true if the rule applies at site. As a side effect it assigns the new\n  // category to newTag\n  isApplicableAt (sentence, taggedSentence, i) {\n    const applies = (taggedSentence.taggedWords[i].tag === this.oldCategory) &&\n      this.predicate.evaluate(taggedSentence, i)\n\n    // Set newTag to let the trainer know what the new tag would become\n    if (applies) {\n      sentence.taggedWords[i].newTag = this.newCategory\n    }\n    return (applies)\n  }\n\n  prettyPrint () {\n    let result = ''\n    // Old category and new category\n    result += this.oldCategory + ' ' + this.newCategory\n    // Predicate name\n    result += ' ' + this.predicate.name\n    // Parameter 1 and 2\n    if (this.predicate.parameter1) {\n      result += ' ' + this.predicate.parameter1\n      if (this.predicate.parameter2) {\n        result += ' ' + this.predicate.parameter2\n      }\n    }\n    return result\n  }\n\n  // Applies the rule the given location (if it applies)\n  applyAt (sentence, i) {\n    const taggedSentence = sentence.clone()\n\n    this.apply(sentence, i)\n    // Assign the new tag to the corpus site\n    sentence.taggedWords[i].testTag = taggedSentence.taggedWords[i].tag\n  }\n\n  // Calculate the net score of this rule\n  score () {\n    return (this.positive - this.negative)\n  }\n}\n\nmodule.exports = TransformationRule\n"
  },
  {
    "path": "lib/natural/classifiers/bayes_classifier.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Classifier = require('./classifier')\nconst ApparatusBayesClassifier = require('apparatus').BayesClassifier\n\nclass BayesClassifier extends Classifier {\n  constructor (stemmer, smoothing) {\n    let abc = new ApparatusBayesClassifier()\n    if (smoothing && isFinite(smoothing)) {\n      abc = new ApparatusBayesClassifier(smoothing)\n    }\n    super(abc, stemmer)\n  }\n\n  static restore (classifier, stemmer) {\n    classifier = Classifier.restore(classifier, stemmer)\n    // __proto__ is deprecated\n    // classifier.__proto__ = BayesClassifier.prototype\n    Object.setPrototypeOf(classifier, BayesClassifier.prototype)\n    classifier.classifier = ApparatusBayesClassifier.restore(classifier.classifier)\n    return classifier\n  }\n\n  static load (filename, stemmer, callback) {\n    Classifier.load(filename, stemmer, function (err, classifier) {\n      if (err) {\n        return callback(err)\n      } else {\n        callback(err, BayesClassifier.restore(classifier, stemmer))\n      }\n    })\n  }\n\n  static async loadFrom (key, stemmer, storageBackend) {\n    const classifier = await Classifier.loadFrom(key, storageBackend)\n    return BayesClassifier.restore(classifier, stemmer)\n  }\n}\n\nmodule.exports = BayesClassifier\n"
  },
  {
    "path": "lib/natural/classifiers/classifier.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\nconst fs = require('fs')\n\nconst EventEmitter = require('events')\nconst PorterStemmer = require('../stemmers/porter_stemmer')\nconst parallelTrainer = require('./classifier_train_parallel')\n\nclass Classifier extends EventEmitter {\n  constructor (classifier, stemmer) {\n    super()\n    this.classifier = classifier\n    this.docs = []\n    this.features = {}\n    this.stemmer = stemmer || PorterStemmer\n    this.lastAdded = 0\n\n    // Add methods for parallel training\n    this.Threads = parallelTrainer.Threads\n    this.trainParallel = parallelTrainer.trainParallel\n    this.retrainParallel = parallelTrainer.retrainParallel\n    this.trainParallelBatches = parallelTrainer.trainParallelBatches\n  }\n\n  addDocument (text, classification) {\n    // Ignore further processing if classification is undefined\n    if (typeof classification === 'undefined') return\n\n    // If classification is type of string then make sure it's dosen't have blank space at both end\n    if (typeof classification === 'string') {\n      classification = classification.trim()\n    }\n\n    if (typeof text === 'string') { text = this.stemmer.tokenizeAndStem(text, this.keepStops) }\n\n    if (text.length === 0) {\n      // ignore empty documents\n      return\n    }\n\n    this.docs.push({\n      label: classification,\n      text\n    })\n\n    for (let i = 0; i < text.length; i++) {\n      const token = text[i]\n      this.features[token] = (this.features[token] || 0) + 1\n    }\n  }\n\n  removeDocument (text, classification) {\n    const docs = this.docs\n    let doc\n    let pos\n\n    if (typeof text === 'string') {\n      text = this.stemmer.tokenizeAndStem(text, this.keepStops)\n    }\n\n    for (let i = 0, ii = docs.length; i < ii; i++) {\n      doc = docs[i]\n      if (doc.text.join(' ') === text.join(' ') &&\n          doc.label === classification) {\n        pos = i\n      }\n    }\n\n    // Remove if there's a match\n    if (!isNaN(pos)) {\n      this.docs.splice(pos, 1)\n\n      for (let i = 0, ii = text.length; i < ii; i++) {\n        delete this.features[text[i]]\n      }\n    }\n  }\n\n  textToFeatures (observation) {\n    const features = []\n\n    if (typeof observation === 'string') { observation = this.stemmer.tokenizeAndStem(observation, this.keepStops) }\n\n    for (const feature in this.features) {\n      if (observation.indexOf(feature) > -1) {\n        features.push(1)\n      } else {\n        features.push(0)\n      }\n    }\n\n    return features\n  }\n\n  train () {\n    const totalDocs = this.docs.length\n    for (let i = this.lastAdded; i < totalDocs; i++) {\n      const features = this.textToFeatures(this.docs[i].text)\n      this.classifier.addExample(features, this.docs[i].label)\n      this.emit('trainedWithDocument', { index: i, total: totalDocs, doc: this.docs[i] })\n      this.lastAdded++\n    }\n    this.classifier.train()\n    this.emit('doneTraining', true)\n  }\n\n  retrain () {\n    this.classifier = new (this.classifier.constructor)()\n    this.lastAdded = 0\n    this.train()\n  }\n\n  getClassifications (observation) {\n    return this.classifier.getClassifications(this.textToFeatures(observation))\n  }\n\n  classify (observation) {\n    return this.classifier.classify(this.textToFeatures(observation))\n  }\n\n  static restore (classifier, stemmer) {\n    classifier.stemmer = stemmer || PorterStemmer\n    return classifier\n  }\n\n  save (filename, callback) {\n    const data = JSON.stringify(this)\n    const classifier = this\n    fs.writeFile(filename, data, 'utf8', function (err) {\n      if (callback) {\n        callback(err, err ? null : classifier)\n      }\n    })\n  }\n\n  static load (filename, stemmer, callback) {\n    if (!callback) {\n      return\n    }\n    fs.readFile(filename, 'utf8', function (err, data) {\n      if (err) {\n        callback(err, null)\n      } else {\n        const classifier = JSON.parse(data)\n        callback(err, Classifier.restore(classifier, stemmer))\n      }\n    })\n  }\n\n  async saveTo (storageBackend) {\n    return await storageBackend.store(this)\n  }\n\n  static async loadFrom (key, storageBackend) {\n    const obj = await storageBackend.retrieve(key)\n    Object.setPrototypeOf(obj, Classifier.prototype)\n    return obj\n  }\n\n  setOptions (options) {\n    this.keepStops = !!(options.keepStops)\n  }\n}\n\nmodule.exports = Classifier\n"
  },
  {
    "path": "lib/natural/classifiers/classifier_train_parallel.js",
    "content": "const os = require('os')\n\nlet Threads = null\n\ntry {\n  Threads = require('webworker-threads')\n} catch (e) {\n  // Silently set Threads to null\n  Threads = null\n}\n\nfunction checkThreadSupport () {\n  if (typeof Threads === 'undefined') {\n    throw new Error('parallel classification requires the optional dependency webworker-threads')\n  }\n}\n\nfunction docsToFeatures (docs) {\n  const parsedDocs = []\n\n  for (let i = 0; i < docs.length; i++) {\n    const features = []\n\n    for (const feature in FEATURES) { // eslint-disable-line\n      if (docs[i].observation.indexOf(feature) > -1) { features.push(1) } else { features.push(0) }\n    }\n\n    parsedDocs.push({\n      index: docs[i].index,\n      features\n    })\n  }\n\n  return JSON.stringify(parsedDocs)\n}\n\n// Convert docs to observation objects\nfunction docsToObs (docs, lastAdded, stemmer, keepStops) {\n  const obsDocs = []\n  for (let i = lastAdded; i < docs.length; i++) {\n    let observation = this.docs[i].text\n    if (typeof observation === 'string') {\n      observation = stemmer.tokenizeAndStem(observation, keepStops)\n    }\n    obsDocs.push({\n      index: i,\n      observation\n    })\n  }\n  return obsDocs\n}\n\nfunction emitEvents (self, docFeatures, totalDocs) {\n  for (let j = self.lastAdded; j < totalDocs; j++) {\n    self.classifier.addExample(docFeatures[j], self.docs[j].label)\n    self.events.emit('trainedWithDocument', {\n      index: j,\n      total: totalDocs,\n      doc: self.docs[j]\n    })\n    self.lastAdded++\n  }\n}\n\nfunction trainParallel (numThreads, callback) {\n  checkThreadSupport()\n\n  if (!callback) {\n    callback = numThreads\n    numThreads = undefined\n  }\n\n  if (isNaN(numThreads)) {\n    numThreads = os.cpus().length\n  }\n\n  const totalDocs = this.docs.length\n  const threadPool = Threads.createPool(numThreads)\n  const docFeatures = {}\n  let finished = 0\n  const self = this\n\n  // Init pool; send the features array and the parsing function\n  threadPool.all.eval('var FEATURES = ' + JSON.stringify(this.features))\n  threadPool.all.eval(docsToFeatures)\n\n  const obsDocs = docsToObs(this.docs, this.lastAdded, this.stemmer, this.keepStops)\n\n  // Called when a batch completes processing\n  const onFeaturesResult = function (docs) {\n    setTimeout(function () {\n      self.events.emit('processedBatch', {\n        size: docs.length,\n        docs: totalDocs,\n        batches: numThreads,\n        index: finished\n      })\n    })\n\n    for (let j = 0; j < docs.length; j++) {\n      docFeatures[docs[j].index] = docs[j].features\n    }\n  }\n\n  // Called when all batches finish processing\n  const onFinished = function (err) {\n    if (err) {\n      threadPool.destroy()\n      return callback(err)\n    }\n\n    emitEvents(self, docFeatures, totalDocs)\n    self.events.emit('doneTraining', true)\n    self.classifier.train()\n\n    threadPool.destroy()\n    callback(null)\n  }\n\n  // Split the docs and start processing\n  const batchSize = Math.ceil(obsDocs.length / numThreads)\n  let lastError\n\n  for (let i = 0; i < numThreads; i++) {\n    const batchDocs = obsDocs.slice(i * batchSize, (i + 1) * batchSize)\n    const batchJson = JSON.stringify(batchDocs)\n\n    threadPool.any.eval('docsToFeatures(' + batchJson + ')', function (err, docs) {\n      lastError = err || lastError\n      finished++\n\n      if (docs) {\n        docs = JSON.parse(docs)\n        onFeaturesResult(docs)\n      }\n\n      if (finished >= numThreads) {\n        onFinished(lastError)\n      }\n    })\n  }\n}\n\nfunction trainParallelBatches (options) {\n  checkThreadSupport()\n\n  let numThreads = options && options.numThreads\n  let batchSize = options && options.batchSize\n\n  if (isNaN(numThreads)) {\n    numThreads = os.cpus().length\n  }\n\n  if (isNaN(batchSize)) {\n    batchSize = 2500\n  }\n\n  const totalDocs = this.docs.length\n  const threadPool = Threads.createPool(numThreads)\n  const docFeatures = {}\n  let finished = 0\n  const self = this\n\n  let abort = false\n  const onError = function (err) {\n    if (!err || abort) return\n    abort = true\n    threadPool.destroy(true)\n    self.events.emit('doneTrainingError', err)\n  }\n\n  // Init pool; send the features array and the parsing function\n  const str = JSON.stringify(this.features)\n  threadPool.all.eval('var FEATURES = ' + str + ';', onError)\n  threadPool.all.eval(docsToFeatures, onError)\n\n  // Convert docs to observation objects\n  let obsDocs = []\n  for (let i = this.lastAdded; i < totalDocs; i++) {\n    let observation = this.docs[i].text\n    if (typeof observation === 'string') { observation = this.stemmer.tokenizeAndStem(observation, this.keepStops) }\n    obsDocs.push({\n      index: i,\n      observation\n    })\n  }\n\n  // Split the docs in batches\n  const obsBatches = []\n  let i = 0\n  while (true) {\n    const batch = obsDocs.slice(i * batchSize, (i + 1) * batchSize)\n    if (!batch || !batch.length) break\n    obsBatches.push(batch)\n    i++\n  }\n  obsDocs = null\n  self.events.emit('startedTraining', {\n    docs: totalDocs,\n    batches: obsBatches.length\n  })\n\n  // Called when a batch completes processing\n  const onFeaturesResult = function (docs) {\n    self.events.emit('processedBatch', {\n      size: docs.length,\n      docs: totalDocs,\n      batches: obsBatches.length,\n      index: finished\n    })\n\n    for (let j = 0; j < docs.length; j++) {\n      docFeatures[docs[j].index] = docs[j].features\n    }\n  }\n\n  // Called when all batches finish processing\n  const onFinished = function () {\n    threadPool.destroy(true)\n    abort = true\n\n    emitEvents(self, docFeatures, totalDocs)\n    self.events.emit('doneTraining', true)\n    self.classifier.train()\n  }\n\n  // Called to send the next batch to be processed\n  let batchIndex = 0\n  const sendNext = function () {\n    if (abort) return\n    if (batchIndex >= obsBatches.length) {\n      return\n    }\n\n    sendBatch(JSON.stringify(obsBatches[batchIndex]))\n    batchIndex++\n  }\n\n  // Called to send a batch of docs to the threads\n  const sendBatch = function (batchJson) {\n    if (abort) return\n    threadPool.any.eval('docsToFeatures(' + batchJson + ');', function (err, docs) {\n      if (err) {\n        return onError(err)\n      }\n\n      finished++\n\n      if (docs) {\n        docs = JSON.parse(docs)\n        setTimeout(onFeaturesResult.bind(null, docs))\n      }\n\n      if (finished >= obsBatches.length) {\n        setTimeout(onFinished)\n      }\n\n      setTimeout(sendNext)\n    })\n  }\n\n  // Start processing\n  for (let i = 0; i < numThreads; i++) {\n    sendNext()\n  }\n}\n\nfunction retrainParallel (numThreads, callback) {\n  checkThreadSupport()\n\n  this.classifier = new (this.classifier.constructor)()\n  this.lastAdded = 0\n  this.trainParallel(numThreads, callback)\n}\n\nmodule.exports = {\n  Threads,\n  trainParallel,\n  trainParallelBatches,\n  retrainParallel\n}\n"
  },
  {
    "path": "lib/natural/classifiers/index.d.ts",
    "content": "import events from 'events'\nimport type { Corpus, Sentence } from '../brill_pos_tagger'\nimport type { Stemmer } from '../stemmers'\nimport type { StorageBackend } from '../util'\n\n// Start apparatus declarations\n\n// TODO: Once TS declarations are available in NaturalNode/apparatus,\n// replace local definitions with imports:\n// import {\n//   BayesClassifier as ApparatusBayesClassifier,\n//   Classification as ApparatusClassification,\n//   Classifier as ApparatusClassifier,\n//   LogisticRegressionClassifier as ApparatusLogisticRegressionClassifier,\n//   Observation as ApparatusObservation,\n// } from 'apparatus'\n\ndeclare interface ApparatusClassification {\n  label: string\n  value: number\n}\n\n// Observations are either array of numbers or a sparse vector in the form of a map\ndeclare type ApparatusObservation = number[] | Record<string, number | string | boolean>\n\ndeclare class ApparatusClassifier {\n  addExample (observation: ApparatusObservation, label: string): void\n  classify (observation: ApparatusObservation): string\n  train (): void\n  static restore (classifier: string | ApparatusClassifier): ApparatusClassifier\n}\n\n// TODO: Not needed for natural repository, but could be moved to\n// aparatus repository. Temporarily leaving here for copypasta.\ndeclare class ApparatusBayesClassifier extends ApparatusClassifier {\n  classFeatures: Record<string, Record<number, number>>\n  classTotals: Record<string, number>\n  totalExamples: number\n  smoothing: number\n\n  constructor (smoothing?: number)\n  getClassifications (observation: ApparatusObservation): ApparatusClassification[]\n  probabilityOfClass (observation: ApparatusObservation, label: string): number\n  static restore (classifier: string | ApparatusBayesClassifier): ApparatusBayesClassifier\n}\n\n// TODO: Not needed for natural repository, but could be moved to\n// aparatus repository. Temporarily leaving here for copypasta.\ndeclare class ApparatusLogisticRegressionClassifier extends ApparatusClassifier {\n  examples: Record<string, ApparatusObservation>\n  // TODO: These appear unused\n  // features: any[]\n  // featurePositions: { [key: string]: any | undefined }\n  maxFeaturePosition: number\n  classifications: string[]\n  exampleCount: number\n\n  createClassifications (): number[][]\n  addExample (data: number[], classification: string): void\n  getClassifications (observation: number[]): ApparatusClassification[]\n  static restore (classifier: string | ApparatusLogisticRegressionClassifier): ApparatusLogisticRegressionClassifier\n}\n\n// End apparatus declarations\n\ndeclare interface ClassifierDoc {\n  label: string\n  text: string\n}\n\ndeclare interface ClassifierOptions {\n  keepStops?: boolean\n}\n\ndeclare type ClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: ClassifierBase) => void\ndeclare type ParallelTrainerCallback = (err: NodeJS.ErrnoException | null) => void\n\ndeclare class ClassifierBase extends events.EventEmitter {\n  classifier: ApparatusClassifier\n  docs: ClassifierDoc[]\n  features: Record<string, number>\n  stemmer: Stemmer\n  lastAdded: number\n\n  constructor (classifier: ApparatusClassifier, stemmer?: Stemmer)\n  addDocument (text: string | string[], classification: string): void\n  removeDocument (text: string | string[], classification: string): void\n  textToFeatures (observation: string | string[]): number[]\n  train (): void\n  retrain (): void\n  getClassifications (observation: string | string[]): ApparatusClassification[]\n  classify (observation: string | string[]): string\n  setOptions (options: ClassifierOptions): void\n  save (filename: string, callback?: ClassifierCallback): void\n  static load (filename: string, stemmer: Stemmer | null | undefined, callback: ClassifierCallback): void\n  saveTo (storage: StorageBackend): string\n  static loadFrom (storage: StorageBackend): ClassifierBase\n\n  Threads: any\n  trainParallel (numThreads: number, callback: ParallelTrainerCallback): void\n  trainParallelBatches (options: { numThreads: number, batchSize: number }): void\n  retrainParallel (numThreads: number, callback: ParallelTrainerCallback): void\n}\n\ndeclare type BayesClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: BayesClassifier) => void\n\nexport class BayesClassifier extends ClassifierBase {\n  classifier: ApparatusBayesClassifier\n\n  constructor (stemmer?: Stemmer, smoothing?: number)\n  static load (filename: string, stemmer: Stemmer | null | undefined, callback: BayesClassifierCallback): void\n  static restore (classifier: Record<string, unknown>, stemmer?: Stemmer): BayesClassifier\n  saveTo (storage: StorageBackend): string\n  static loadFrom (storage: StorageBackend): ClassifierBase\n}\n\ndeclare type LogisticRegressionClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: LogisticRegressionClassifier) => void\n\nexport class LogisticRegressionClassifier extends ClassifierBase {\n  constructor (stemmer?: Stemmer)\n  static load (filename: string, stemmer: Stemmer | null | undefined, callback: LogisticRegressionClassifierCallback): void\n  static restore (classifier: Record<string, unknown>, stemmer?: Stemmer): LogisticRegressionClassifier\n  saveTo (storage: StorageBackend): string\n  static loadFrom (storage: StorageBackend): ClassifierBase\n}\n\ndeclare type MaxEntClassifierCallback = (err: NodeJS.ErrnoException | null, classifier?: MaxEntClassifier) => void\n\nexport class MaxEntClassifier {\n  sample: Sample\n  features: FeatureSet\n  scaler: GISScaler\n\n  constructor (features: FeatureSet, sample: Sample)\n  addElement (x: Element): void\n  addDocument (context: Context, classification: string, elementClass: Element): void\n  train (maxIterations: number, minImprovement: number): void\n  getClassifications (b: Context): ApparatusClassification[]\n  classify (b: Context): string\n  // These are not static like in other Classifier classes\n  save (filename: string, callback: MaxEntClassifierCallback): void\n  load (filename: string, elementClass: Element, callback: MaxEntClassifierCallback): void\n}\n\ndeclare class Distribution {\n  alpha: number[]\n  featureSet: FeatureSet\n  sample: Sample\n\n  constructor (alpha: number[], featureSet: FeatureSet, sample: Sample)\n  toString (): string\n  weight (x: Element): number\n  calculateAPriori (x: Element): number\n  prepareWeights (): void\n  calculateAPosteriori (x: Element): number\n  aPosterioriNormalisation (b: Context): number\n  prepareAPosterioris (): void\n  prepare (): void\n  KullbackLieblerDistance (): number\n  logLikelihood (): number\n  entropy (): number\n  checkSum (): number\n}\n\ndeclare type FeatureFunction = (x: Element) => number\n\nexport class Feature {\n  evaluate: FeatureFunction\n  name: string\n  parameters: string[]\n\n  constructor (f: FeatureFunction, name: string, parameters: string[])\n  apply (x: Element): number\n  expectationApprox (p: Distribution, sample: Sample): number\n  expectation (p: Distribution, A: string[], B: Context[]): number\n  observedExpectation (sample: Sample): number\n}\n\nexport class FeatureSet {\n  features: Feature[]\n  map: Record<string, boolean>\n\n  addFeature (feature: Feature): boolean\n  featureExists (feature: Feature): boolean\n  getFeatures (): Feature[]\n  size (): number\n  prettyPrint (): string\n}\n\ndeclare type SampleCallback = (err: NodeJS.ErrnoException | null, sample?: Sample | null) => void\n\nexport class Sample {\n  frequencyOfContext: Record<string, number>\n  frequency: Record<string, number>\n  classes: string[]\n\n  constructor (elements?: Element[])\n  analyse (): void\n  addElement (x: Element): void\n  observedProbabilityOfContext (context: Context): number\n  observedProbability (x: Element): number\n  size (): number\n  getClasses (): string[]\n  generateFeatures (featureSet: FeatureSet): void\n  save (filename: string, callback: SampleCallback): void\n  load (filename: string, elementClass: typeof Element, callback: SampleCallback): void\n}\n\nexport class Context {\n  key: string | undefined\n\n  constructor (data: any)\n  toString (): string\n}\n\nexport class Element {\n  a: string\n  b: Context\n  key: string | undefined\n\n  constructor (a: string, b: Context)\n  toString (): string\n}\n\nexport class SEElement extends Element {\n  constructor (a: string, b: Context)\n  generateFeatures (featureSet: FeatureSet): void\n}\n\nexport class POSElement extends Element {\n  constructor (a: string, b: Context)\n  generateFeatures (featureSet: FeatureSet): void\n}\n\nexport class GISScaler {\n  iteration: number\n  improvement: number\n\n  constructor (featureSet: FeatureSet, sample: Sample)\n  calculateMaxSumOfFeatures (): boolean\n  addCorrectionFeature (): void\n  run (maxIterations: number, minImprovement: number): Distribution\n}\n\nexport class MESentence {\n  constructor (data?: string[])\n  generateSampleElements (sample: Sample): void\n}\n\nexport class MECorpus {\n  constructor (data: string | Corpus, BROWN: number, SentenceClass: typeof Sentence)\n  generateSample (): Sample\n  splitInTrainAndTest (percentageTrain: number): [MECorpus, MECorpus]\n}\n"
  },
  {
    "path": "lib/natural/classifiers/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.BayesClassifier = require('./bayes_classifier')\nexports.LogisticRegressionClassifier = require('./logistic_regression_classifier')\n\nexports.MaxEntClassifier = require('./maxent/Classifier')\nexports.Context = require('./maxent/Context')\nexports.Feature = require('./maxent/Feature')\nexports.FeatureSet = require('./maxent/FeatureSet')\nexports.Sample = require('./maxent/Sample')\nexports.Element = require('./maxent/Element')\nexports.SEElement = require('./maxent/SimpleExample/SE_Element')\nexports.GISScaler = require('./maxent/GISScaler')\nexports.POSElement = require('./maxent/POS/POS_Element')\nexports.MESentence = require('./maxent/POS/ME_Sentence')\nexports.MECorpus = require('./maxent/POS/ME_Corpus')\n"
  },
  {
    "path": "lib/natural/classifiers/logistic_regression_classifier.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Classifier = require('./classifier')\nconst ApparatusLogisticRegressionClassifier = require('apparatus').LogisticRegressionClassifier\n\nclass LogisticRegressionClassifier extends Classifier {\n  constructor (stemmer) {\n    const abc = new ApparatusLogisticRegressionClassifier()\n    super(abc, stemmer)\n  }\n\n  static restore (classifier, stemmer) {\n    classifier = Classifier.restore(classifier, stemmer)\n    // Using ___proto__ is deprecated\n    // classifier.__proto__ = LogisticRegressionClassifier.prototype\n    Object.setPrototypeOf(classifier, LogisticRegressionClassifier.prototype)\n    classifier.classifier = ApparatusLogisticRegressionClassifier.restore(classifier.classifier)\n\n    return classifier\n  }\n\n  static load (filename, stemmer, callback) {\n    Classifier.load(filename, stemmer, (err, classifier) => {\n      if (err) {\n        callback(err)\n      } else {\n        callback(err, LogisticRegressionClassifier.restore(classifier, stemmer))\n      }\n    })\n  }\n\n  static async loadFrom (key, stemmer, storageBackend) {\n    const classifier = await Classifier.loadFrom(key, storageBackend)\n    return LogisticRegressionClassifier.restore(classifier, stemmer)\n  }\n\n  train () {\n    // we need to reset the training state because logistic regression\n    // needs its matricies to have their widths synced, etc.\n    this.lastAdded = 0\n    this.classifier = new ApparatusLogisticRegressionClassifier()\n    super.train()\n  }\n}\n\nmodule.exports = LogisticRegressionClassifier\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Classifier.js",
    "content": "/*\nClassifier class that provides functionality for training and\nclassification\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst fs = require('fs')\n\nconst Context = require('./Context')\nconst Element = require('./Element')\nconst Sample = require('./Sample')\nconst Scaler = require('./GISScaler')\nconst FeatureSet = require('./FeatureSet')\n\nconst DEBUG = false\n\nclass Classifier {\n  constructor (features, sample) {\n    if (features) {\n      this.features = features\n    } else {\n      this.features = new FeatureSet()\n    }\n    this.features = features\n    if (sample) {\n      this.sample = sample\n    } else {\n      this.sample = new Sample()\n    }\n  }\n\n  // Loads a classifier from file.\n  // Caveat: feature functions are generated from the sample elements. You need\n  // to create your own specialisation of the Element class that can generate\n  // your own specific feature functions\n  load (filename, ElementClass, callback) {\n    fs.readFile(filename, 'utf8', function (err, data) {\n      if (!err) {\n        const classifierData = JSON.parse(data)\n        const sample = new Sample()\n        classifierData.sample.elements.forEach(function (elementData) {\n          const elt = new ElementClass(elementData.a, new Context(elementData.b.data))\n          sample.addElement(elt)\n        })\n        const featureSet = new FeatureSet()\n        sample.generateFeatures(featureSet)\n        const classifier = new Classifier(featureSet, sample)\n        callback(err, classifier)\n      } else {\n        if (callback) {\n          callback(err)\n        }\n      }\n    })\n  }\n\n  save (filename, callback) {\n    const data = JSON.stringify(this, null, 2)\n    const classifier = this\n    fs.writeFile(filename, data, 'utf8', function (err) {\n      if (callback) {\n        DEBUG && console.log('Saved classifier to ' + filename)\n        callback(err, err ? null : classifier)\n      }\n    })\n  }\n\n  addElement (x) {\n    this.sample.addElement(x)\n  }\n\n  addDocument (context, classification, ElementClass) {\n    Classifier.prototype.addElement(new ElementClass(classification, context))\n  }\n\n  train (maxIterations, minImprovement) {\n    this.scaler = new Scaler(this.features, this.sample)\n    this.p = this.scaler.run(maxIterations, minImprovement)\n  }\n\n  getClassifications (b) {\n    const scores = []\n    const that = this\n    this.sample.getClasses().forEach(function (a) {\n      const x = new Element(a, b)\n      scores.push({\n        label: a,\n        value: that.p.calculateAPriori(x)\n      })\n    })\n    return scores\n  }\n\n  classify (b) {\n    const scores = this.getClassifications(b)\n    // Sort the scores in an array\n    scores.sort(function (a, b) {\n      return b.value - a.value\n    })\n    // Check if the classifier discriminates\n    const min = scores[scores.length - 1].value\n    const max = scores[0].value\n    if (min === max) {\n      return ''\n    } else {\n      // Return the highest scoring classes\n      return scores[0].label\n    }\n  }\n}\n\nmodule.exports = Classifier\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Context.js",
    "content": "/*\nContext class\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stringify = require('safe-stable-stringify')\n\nclass Context {\n  constructor (data) {\n    this.data = data\n  }\n\n  // Create a predictable key string for looking up in a hash\n  toString () {\n    if (!this.key) {\n      this.key = stringify(this.data)\n    }\n    return this.key\n  }\n}\n\nmodule.exports = Context\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Distribution.js",
    "content": "/*\nDistribution class for probability distributions\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Element = require('./Element')\n\nclass Distribution {\n  constructor (alpha, featureSet, sample) {\n    this.alpha = alpha\n    this.featureSet = featureSet\n    this.sample = sample\n  }\n\n  // Returns the distribution as a string that can be stored for later usage\n  toString () {\n\n  }\n\n  weight (x) {\n    let product = 1\n    const that = this\n\n    this.alpha.forEach(function (alphaj, j) {\n      product *= Math.pow(alphaj, that.featureSet.getFeatures()[j].apply(x))\n    })\n    return product\n  }\n\n  calculateAPriori (x) {\n    if (!this.aPriorisBeforeNormalisation[x.toString()]) {\n      this.aPriorisBeforeNormalisation[x.toString()] = this.weight(x)\n    }\n    return this.aPriorisBeforeNormalisation[x.toString()]// / this.aPrioriNormalisationConstant;\n  }\n\n  // Memoize a priori probabilities of sample elements\n  prepareWeights () {\n    this.aPriorisBeforeNormalisation = {}\n    this.aPrioriNormalisationConstant = 0\n    let sum = 0\n    const that = this\n    this.sample.elements.forEach(function (x) {\n      that.aPriorisBeforeNormalisation[x.toString()] = that.weight(x)\n      sum += that.aPriorisBeforeNormalisation[x.toString()]\n    })\n    this.aPrioriNormalisationConstant = sum\n  }\n\n  calculateAPosteriori (x) {\n    if (!this.aPriorisBeforeNormalisation[x.toString()]) {\n      this.aPriorisBeforeNormalisation[x.toString()] = this.weight(x)\n    }\n    if (!this.aPosterioriNormalisationConstants[x.b.toString()]) {\n      this.aPosterioriNormalisationConstants[x.b.toString()] = this.aPosterioriNormalisation(x.b)\n    }\n    return this.aPriorisBeforeNormalisation[x] / this.aPosterioriNormalisationConstants[x.b.toString()]\n  }\n\n  aPosterioriNormalisation (b) {\n    let sum = 0\n\n    const that = this\n    this.sample.getClasses().forEach(function (a) {\n      sum += that.weight(new Element(a, b))\n    })\n\n    return (sum)\n  }\n\n  // Memoize a posteriori probabilities of sample elements\n  prepareAPosterioris () {\n    this.aPosterioriNormalisationConstants = {}\n\n    const contextSeen = {}\n    const that = this\n    this.sample.elements.forEach(function (sampleElement) {\n      const context = sampleElement.b\n      if (!contextSeen[context]) {\n        contextSeen[context] = true\n        that.aPosterioriNormalisationConstants[context] =\n          that.aPosterioriNormalisation(context)\n      }\n    })\n  }\n\n  // Memoize all probabilities of sample elements\n  prepare () {\n    this.prepareWeights()\n    // console.log(\"Weights prepared\");\n    this.prepareAPosterioris()\n  }\n\n  // Relative entropy between observered distribution and derived distribution\n  KullbackLieblerDistance () {\n    let sum = 0\n    const that = this\n    this.sample.elements.forEach(function (x) {\n      sum += that.sample.observedProbability(x) * Math.log(that.sample.observedProbability(x) / that.calculateAPriori(x))\n    })\n    return sum\n  }\n\n  logLikelihood () {\n    let sum = 0\n    const that = this\n    this.sample.elements.forEach(function (x) {\n      sum += that.sample.observedProbability(x) * Math.log(that.calculateAPriori(x))\n    })\n    return sum\n  }\n\n  entropy () {\n    let sum = 0\n    const that = this\n    this.sample.elements.forEach(function (x) {\n      const p = that.calculateAPriori(x)\n      sum += p * Math.log(p)\n    })\n    return sum\n  }\n\n  checkSum () {\n    let sum = 0\n    const that = this\n    this.sample.elements.forEach(function (x) {\n      sum += that.calculateAPriori(x)\n    })\n    // console.log(\"Distribution.checkSum is \" + sum);\n    return sum\n  }\n}\n\nmodule.exports = Distribution\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Element.js",
    "content": "/*\nElement class for elements in the event space\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nclass Element {\n  // a is class and b is context\n  constructor (a, b) {\n    this.a = a\n    this.b = b\n  }\n\n  toString () {\n    if (!this.key) {\n      this.key = this.a + this.b.toString()\n    }\n    return this.key\n  }\n}\n\nmodule.exports = Element\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Feature.js",
    "content": "/*\nFeature class for features that fire (or don't) on combinations of context\nand class\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Element = require('./Element')\n\nclass Feature {\n  constructor (f, name, parameters) {\n    this.evaluate = f\n    this.name = name\n    this.parameters = parameters\n\n    let tmp = ''\n    parameters.forEach(function (par) {\n      tmp += par + '|'\n    })\n    this.parametersKey = tmp.substr(0, tmp.length - 1)\n  }\n\n  apply (x) {\n    return this.evaluate(x)\n  }\n\n  expectationApprox (p, sample) {\n    const that = this\n    let sum = 0\n    const seen = {}\n    const A = sample.getClasses()\n    sample.elements.forEach(function (sampleElement) {\n      const bi = sampleElement.b\n\n      if (!seen[bi.toString()]) {\n        seen[bi.toString()] = true\n\n        A.forEach(function (a) {\n          const x = new Element(a, bi)\n          sum += sample.observedProbabilityOfContext(bi) * p.calculateAPosteriori(x) * that.apply(x)\n        })\n      }\n    })\n    return sum\n  }\n\n  // Direct calculation of expected value of this feature according to distribution p\n  // In real-life applications with a lot of features this is not tractable\n  expectation (p, A, B) {\n    let sum = 0\n    const that = this\n    A.forEach(function (a) {\n      B.forEach(function (b) {\n        const x = new Element(a, b)\n        sum += (p.calculateAPriori(x) * that.apply(x))\n      })\n    })\n    return sum\n  }\n\n  // Observed expectation of this feature in the sample\n  observedExpectation (sample) {\n    if (this.observedExpect) {\n      return this.observedExpect\n    }\n    const N = sample.size()\n    let sum = 0\n    const that = this\n    sample.elements.forEach(function (x) {\n      sum += that.apply(x)\n    })\n    this.observedExpect = sum / N\n    return this.observedExpect\n  }\n}\n\nmodule.exports = Feature\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/FeatureSet.js",
    "content": "/*\nFeature set class for administrating a set of unique features\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nclass FeatureSet {\n  constructor () {\n    this.features = []\n    this.map = {}\n  }\n\n  // Returns true if the feature did not exist and was added\n  addFeature (feature) {\n    if (!this.featureExists(feature)) {\n      this.map[feature.name + ' | ' + feature.parametersKey] = true\n      this.features.push(feature)\n      // console.log(\"FeatureSet.addFeature: feature added: \" + feature.name + \" - \" + feature.parametersKey);\n      return true\n    } else {\n      return false\n    }\n  }\n\n  featureExists (feature) {\n    if (this.map[feature.name + ' | ' + feature.parametersKey]) {\n      // console.log(\"FeatureSet.featureExists: feature already exists: \" +\n      //  feature.name + \" - \" + feature.parameters);\n      return true\n    } else {\n      return false\n    }\n  }\n\n  // Returns an array of features\n  // If the available array this.features is up to date it is returned immediately\n  getFeatures () {\n    return this.features\n  }\n\n  size () {\n    return this.features.length\n  }\n\n  prettyPrint () {\n    let s = ''\n    Object.keys(this.map).forEach(function (key) {\n      s += key + '\\n'\n    })\n    return s\n  }\n}\n\nmodule.exports = FeatureSet\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/GISScaler.js",
    "content": "/*\nGISScaler class that finds parameters of features\nCopyright (C) 2017, 2023 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Feature = require('./Feature')\nconst Distribution = require('./Distribution')\n\nclass GISScaler {\n  // features is an array of feature functions\n  constructor (featureSet, sample) {\n    this.featureSet = featureSet\n    this.sample = sample\n  }\n\n  // Returns true if a correction feature is necessary\n  calculateMaxSumOfFeatures () {\n    const that = this\n    this.C = 0\n    this.featureSums = {}\n    const listOfSumValues = []\n\n    // Since feature functions are derived from the sample\n    // we can use the sample to calculate the max sum\n    // We look at each sample element only once\n    this.sample.elements.forEach(function (x) {\n      if (!that.featureSums[x.toString()]) {\n        let sum = 0\n        that.featureSet.getFeatures().forEach(function (f) {\n          sum += f.apply(x)\n        })\n        if (sum > that.C) {\n          that.C = sum\n        }\n        that.featureSums[x.toString()] = sum\n        listOfSumValues.push(sum)\n      }\n    })\n    // console.log(\"GISScaler:calculateMaxSumOfFeatures:maxSum is \" + this.C);\n\n    // Check if a correction feature is necessary\n    listOfSumValues.sort(function (a, b) {\n      return a - b\n    })\n    return (listOfSumValues[0] !== listOfSumValues[listOfSumValues.length - 1])\n  }\n\n  addCorrectionFeature () {\n    if (this.calculateMaxSumOfFeatures()) {\n      // console.log(\"GISScaler:addCorrectionFeature:C is \" + this.C);\n      const that = this\n\n      function f (x) {\n        if (that.featureSums[x.toString()] !== undefined) {\n          return that.C - that.featureSums[x.toString()]\n        }\n        return 0\n      }\n\n      const correctionFeature = new Feature(f, 'Correction feature', [])\n      // console.log(\"GISScaler:addCorrectionFeature:correctionFeature \" + JSON.stringify(correctionFeature));\n      this.featureSet.addFeature(correctionFeature)\n    } else {\n      // console.log(\"Correction feature not needed\");\n    }\n  }\n\n  // This is the Generalised Iterative Scaling algorithm\n  // It ends if the improvement in likelihood of the distribution does not\n  // improve more than minImprovement or if the maximum number of iterations is\n  // reached.\n  run (maxIterations, minImprovement) {\n    this.iteration = 0\n    this.improvement = 0\n\n    this.addCorrectionFeature()\n    // Build up the distribution p\n    const alpha = new Array(this.featureSet.size())\n    for (let i = 0; i < alpha.length; i++) {\n      alpha[i] = 1\n    }\n    const p = new Distribution(alpha, this.featureSet, this.sample)\n    // console.log(\"Distribution created\");\n    p.prepare()\n    // console.log(\"Distribution prepared\");\n    let KLDistance = p.KullbackLieblerDistance()\n\n    const newAlpha = new Array(this.featureSet.size())\n    let observedExpectation = 0\n    let expectationApprox = 0\n    do {\n      // console.log(\"Iteration \" + this.iteration + \" - Log likelihood of sample: \" + likelihood + \" - Entropy: \" + p.entropy());\n      for (let i = 0; i < this.featureSet.size(); i++) {\n        observedExpectation = this.featureSet.getFeatures()[i].observedExpectation(this.sample)\n        expectationApprox = this.featureSet.getFeatures()[i].expectationApprox(p, this.sample)\n        // console.log(\"Iteration \" + this.iteration + \" - Feature \" + i);\n        newAlpha[i] = p.alpha[i] * Math.pow(observedExpectation / expectationApprox, 1 / this.C)\n\n        // console.log(\"GISScaler.run: old alpha[\" + i + \"]: \" + p.alpha[i]);\n        // console.log(\"GISScaler.run: new alpha[\" + i + \"]: \" + newAlpha[i]);\n      }\n\n      // Make the newly calculated parameters current parameters\n      newAlpha.forEach(function (newAlphaj, j) {\n        p.alpha[j] = newAlphaj\n      })\n      // Recalculate a priori and a posteriori probabilities\n      p.prepare()\n\n      this.iteration++\n      const newKLDistance = p.KullbackLieblerDistance()\n      this.improvement = KLDistance - newKLDistance\n      // console.log(\"Iteration \" + this.iteration + \" - Old likelihood: \" + likelihood + \" - New likelihood: \" + newLikelihood);\n      // console.log(\"Iteration \" + this.iteration + \" - Old KL: \" + KLDistance + \" - New KL: \" + newKLDistance);\n\n      KLDistance = newKLDistance\n    } while ((this.iteration < maxIterations) && (this.improvement > minImprovement))\n    // } while (iteration < maxIterations);\n    /*\n    var that = this;\n    this.featureSet.getFeatures().forEach(function(f, j) {\n      console.log(\"Observed expectation of feature \" + j + \": \" + f.observedExpectation(that.sample) +\n        \" - Expectation of feature according to p: \" + f.expectationApprox(p, that.sample));\n    });\n    */\n\n    return p\n  }\n}\n\nmodule.exports = GISScaler\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/POS/ME_Corpus.js",
    "content": "/*\nCorpus class specific for MaxEnt modeling\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Sample = require('../Sample')\nconst Corpus = require('../../../brill_pos_tagger/lib/Corpus')\n\nclass MECorpus extends Corpus {\n  generateSample () {\n    const sample = new Sample([])\n    this.sentences.forEach(function (sentence) {\n      sentence.generateSampleElements(sample)\n    })\n    return sample\n  }\n\n  // Splits the corpus in a training and testing set.\n  // percentageTrain is the size of the training corpus in percent\n  // Returns an array with two elements: training corpus, testing corpus\n  splitInTrainAndTest (percentageTrain) {\n    const corpusTrain = new MECorpus()\n    const corpusTest = new MECorpus()\n\n    const p = percentageTrain / 100\n    this.sentences.forEach(function (sentence, i) {\n      if (Math.random() < p) {\n        corpusTrain.sentences.push(sentence)\n      } else {\n        corpusTest.sentences.push(sentence)\n      }\n    })\n    return [corpusTrain, corpusTest]\n  }\n}\n\nmodule.exports = MECorpus\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/POS/ME_Sentence.js",
    "content": "/*\nSentence class specific for MaxEnt modeling\nCopyright (C) 2019 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Context = require('../Context')\nconst Sentence = require('../../../brill_pos_tagger/lib/Sentence')\nconst Element = require('./POS_Element')\n\nclass MESentence extends Sentence {\n  generateSampleElements (sample) {\n    const sentence = this.taggedWords\n    sentence.forEach(function (token, index) {\n      const x = new Element(\n        token.tag,\n        new Context({\n          wordWindow: {},\n          tagWindow: {}\n        })\n      )\n\n      // Current word and tag\n      x.b.data.wordWindow['0'] = token.token\n      x.b.data.tagWindow['0'] = sentence[index].tag\n\n      // Previous bigram\n      if (index > 1) {\n        x.b.data.tagWindow['-2'] = sentence[index - 2].tag\n        x.b.data.wordWindow['-2'] = sentence[index - 2].token\n      }\n\n      // Left bigram\n      if (index > 0) {\n        x.b.data.tagWindow['-1'] = sentence[index - 1].tag\n        x.b.data.wordWindow['-1'] = sentence[index - 1].token\n      }\n\n      // Right bigram\n      if (index < sentence.length - 1) {\n        x.b.data.tagWindow['1'] = sentence[index + 1].tag\n        x.b.data.wordWindow['1'] = sentence[index + 1].token\n      }\n\n      // Next bigram\n      if (index < sentence.length - 2) {\n        x.b.data.tagWindow['2'] = sentence[index + 2].tag\n        x.b.data.wordWindow['2'] = sentence[index + 2].token\n      }\n\n      sample.addElement(x)\n    })\n  }\n}\n\nmodule.exports = MESentence\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/POS/POS_Element.js",
    "content": "/*\nElement class for POS tagging\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n  THE SOFTWARE.\n*/\n\n'use strict'\n\nconst Element = require('../Element')\nconst Feature = require('../Feature')\n\nclass POSElement extends Element {\n  generateFeatures (featureSet) {\n    const context = this.b.data\n    const tag = this.a\n    const token = context.wordWindow['0']\n\n    // Feature for the current word\n    function currentWord (x) {\n      if ((x.b.data.wordWindow['0'] === token) &&\n          (x.a === tag)) {\n        return 1\n      }\n      return 0\n    }\n    featureSet.addFeature(new Feature(currentWord, 'wordFeature', ['0', token, '0', tag]))\n\n    // Feature for previous bigram (previous two tags), positions -2, -1\n    if (context.tagWindow['-2']) {\n      const prevPrevTag = context.tagWindow['-2']\n      const prevTag = context.tagWindow['-1']\n      function prevBigram (x) {\n        if ((x.a === tag) &&\n            (x.b.data.tagWindow['-2'] === prevPrevTag) &&\n            (x.b.data.tagWindow['-1'] === prevTag)) {\n          return 1\n        }\n        return 0\n      }\n      featureSet.addFeature(new Feature(prevBigram, 'prevBigram', ['0', tag, '-2', prevPrevTag, '-1', prevTag]))\n    }\n\n    /*\n    // Feature for left bigram, positions -1, 0\n    if (context.tagWindow[\"-1\"]) {\n      var prevTag = context.tagWindow[\"-1\"];\n      function leftBigram(x) {\n        if ((x.b.data.tagWindow[\"-1\"] === prevTag) &&\n            (x.a === tag)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(leftBigram, \"leftBigram\", [\"0\", tag, \"-1\", prevTag]));\n    }\n  */\n\n    /*\n\n    // Feature for right bigram, positions 0, 1\n    if (context.tagWindow[\"1\"]) {\n      var nextTag = context.tagWindow[\"1\"];\n      function rightBigram(x) {\n        if ((x.a === tag) &&\n            (x.b.data.tagWindow[\"1\"] === nextTag)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(rightBigram, \"rightBigram\", [\"0\", tag, \"1\", nextTag]));\n    }\n  */\n    /*\n    // Feature for next bigram (next two tags), positions 1 and 2\n    if (context.tagWindow[\"2\"]) {\n      var nextTag = context.tagWindow[\"1\"];\n      var nextNextTag = context.tagWindow[\"2\"];\n      function nextBigram(x) {\n        if ((x.a === tag) &&\n            (x.b.data.tagWindow[\"1\"] === nextTag) &&\n            (x.b.data.tagWindow[\"2\"] === nextNextTag)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(nextBigram, \"nextBigram\", [\"0\", tag, \"1\", nextTag, \"2\", nextNextTag]));\n    }\n\n    // Feature that looks at the left bigram words\n    if (context.wordWindow[\"-1\"]) {\n      var prevWord = context.wordWindow[\"-1\"];\n      function leftBigramWords(x) {\n        if ((x.a === tag) &&\n            (x.b.data.wordWindow[\"0\"] === token) &&\n            (x.b.data.wordWindow[\"-1\"] === prevWord)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(leftBigramWords, \"leftBigramWords\", [\"0\", tag, \"0\", token, \"-1\", prevWord]));\n    }\n\n    // Feature that looks at the right bigram words\n    if (context.wordWindow[\"1\"]) {\n      var nextWord = context.wordWindow[\"1\"];\n      function rightBigramWords(x) {\n        if ((x.a === tag) &&\n            (x.b.data.wordWindow[\"0\"] === token) &&\n            (x.b.data.wordWindow[\"1\"] === nextWord)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(rightBigramWords, \"rightBigramWords\", [\"0\", tag, \"0\", token, \"1\", nextWord]));\n    }\n  */\n\n    // Feature that looks at the previous word and its category\n    if (context.wordWindow['-1']) {\n      const prevWord = context.wordWindow['-1']\n      const prevTag = context.tagWindow['-1']\n      function prevWordAndCat (x) {\n        if ((x.a === tag) &&\n            (x.b.data.wordWindow['-1'] === prevWord) &&\n            (x.b.data.tagWindow['-1'] === prevTag)) {\n          return 1\n        }\n        return 0\n      }\n      featureSet.addFeature(new Feature(prevWordAndCat, 'prevWordAndCat', ['0', tag, '-1', prevWord, '-1', prevTag]))\n    }\n\n  /*\n    // Feature that looks at the next word and its category\n    if (context.wordWindow[\"1\"]) {\n      var nextWord = context.wordWindow[\"1\"];\n      var nextTag = context.tagWindow[\"1\"];\n      function nextWordAndCat(x) {\n        if ((x.a === tag) &&\n            (x.b.data.wordWindow[\"1\"] === nextWord) &&\n            (x.b.data.tagWindow[\"1\"] === nextTag)) {\n            return 1;\n          }\n        return 0;\n      }\n      featureSet.addFeature(new Feature(nextWordAndCat, \"nextWordAndCat\", [\"0\", tag, \"1\", nextWord, \"1\", nextTag]));\n    }\n  */\n  }\n}\n\nmodule.exports = POSElement\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/Sample.js",
    "content": "/*\nSample space of observed events\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Context = require('./Context')\n\nconst fs = require('fs')\n\nclass Sample {\n  constructor (elements) {\n    this.frequencyOfContext = {}\n    this.frequency = {}\n    this.classes = []\n    if (elements) {\n      this.elements = elements\n      this.analyse()\n    } else {\n      this.elements = []\n    }\n  }\n\n  // Extracts classes and frequencies\n  analyse () {\n    const that = this\n    this.elements.forEach(function (x) {\n      if (this.classes.indexOf(x.a) === -1) {\n        this.classes.push(x.a)\n      }\n      if (!that.frequencyOfContext[x.b.toString()]) {\n        that.frequencyOfContext[x.b.toString()] = 0\n      }\n      that.frequencyOfContext[x.b.toString()]++\n      if (!that.frequency[x.toString()]) {\n        that.frequency[x.toString()] = 0\n      }\n      that.frequency[x.toString()]++\n    })\n  }\n\n  addElement (x) {\n    this.elements.push(x)\n    // Update frequencies\n    if (!this.frequencyOfContext[x.b.toString()]) {\n      this.frequencyOfContext[x.b.toString()] = 0\n    }\n    this.frequencyOfContext[x.b.toString()]++\n    if (!this.frequency[x.toString()]) {\n      this.frequency[x.toString()] = 0\n    }\n    this.frequency[x.toString()]++\n    // Update classes\n    if (this.classes.indexOf(x.a) === -1) {\n      this.classes.push(x.a)\n    }\n  }\n\n  observedProbabilityOfContext (context) {\n    if (this.frequencyOfContext[context.toString()]) {\n      return this.frequencyOfContext[context.toString()] / this.elements.length\n    } else {\n      return 0\n    }\n  }\n\n  observedProbability (x) {\n    if (this.frequency[x.toString()]) {\n      return this.frequency[x.toString()] / this.elements.length\n    } else {\n      return 0\n    }\n  }\n\n  size () {\n    return this.elements.length\n  }\n\n  getClasses () {\n    return this.classes\n  }\n\n  generateFeatures (featureSet) {\n    this.elements.forEach(function (x) {\n      x.generateFeatures(featureSet)\n    })\n  }\n\n  save (filename, callback) {\n    const sample = this\n    const data = JSON.stringify(this, null, 2)\n    fs.writeFile(filename, data, 'utf8', function (err) {\n      // console.log('Sample written')\n      if (callback) {\n        callback(err, err ? null : sample)\n      }\n    })\n  }\n\n  // Loads a sample from file and revives the right classes, i.e. Sample and\n  // Element classes.\n  load (filename, ElementClass, callback) {\n    fs.readFile(filename, 'utf8', function (err, data) {\n      if (!err) {\n        const sampleData = JSON.parse(data)\n        const sample = new Sample()\n        sampleData.elements.forEach(function (elementData) {\n          const elt = new ElementClass(elementData.a, new Context(elementData.b.data))\n          sample.addElement(elt)\n        })\n        if (!sample.frequency || !sample.frequencyOfContext) {\n          sample.analyse()\n        }\n        if (callback) {\n          callback(err, sample)\n        }\n      } else {\n        if (callback) {\n          callback(err)\n        }\n      }\n    })\n  }\n}\n\nmodule.exports = Sample\n"
  },
  {
    "path": "lib/natural/classifiers/maxent/SimpleExample/SE_Element.js",
    "content": "/*\nSimple Example Element class\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Element = require('../Element')\nconst Feature = require('../Feature')\n\nclass SEElement extends Element {\n  generateFeatures (featureSet) {\n    function isZero (x) {\n      if ((x.a === 'x') && (x.b.data === '0')) {\n        return 1\n      }\n      return 0\n    }\n    featureSet.addFeature(new Feature(isZero, 'isZero', ['0']))\n\n    function isOne (x) {\n      if ((x.a === 'y') && (x.b.data === '1')) {\n        return 1\n      }\n      return 0\n    }\n    featureSet.addFeature(new Feature(isOne, 'isOne', ['1']))\n  }\n}\n\nmodule.exports = SEElement\n"
  },
  {
    "path": "lib/natural/distance/dice_coefficient.js",
    "content": "/*\nCopyright (c) 2021, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nfunction getBigrams (str) {\n  let str1 = str\n  // pad with a space if str consists of one character\n  if (str.length === 1) {\n    str1 = str + ' '\n  }\n  const bigrams = new Set()\n  const length = str1.length\n  for (let i = 0; i < length - 1; i++) {\n    const bigram = str1.slice(i, i + 2)\n    bigrams.add(bigram)\n  }\n  return bigrams\n}\n\nfunction intersect (set1, set2) {\n  const intersection = new Set()\n  set1.forEach(value => {\n    if (set2.has(value)) {\n      intersection.add(value)\n    }\n  })\n  return intersection\n}\n\n// Perform some sanitization steps\nfunction sanitize (str) {\n  // Turn characters to lower string, remove space at the beginning and end,\n  // replace multiple spaces in the middle by single spaces\n  return str.toLowerCase().replace(/\\s+/g, ' ').replace(/^\\s+|\\s+$/g, '')\n}\n\nfunction diceCoefficient (str1, str2) {\n  const sanitizedStr1 = sanitize(str1)\n  const sanitizedStr2 = sanitize(str2)\n  const bigrams1 = getBigrams(sanitizedStr1)\n  const bigrams2 = getBigrams(sanitizedStr2)\n  return (2 * intersect(bigrams1, bigrams2).size) / (bigrams1.size + bigrams2.size)\n}\n\nmodule.exports = diceCoefficient\n"
  },
  {
    "path": "lib/natural/distance/hamming_distance.js",
    "content": "/*\nCopyright (c) 2018, Shane Caldwell, Hugo ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// Computes the Hamming distance between two string -- intrepreted from:\n// https://en.wikipedia.org/wiki/Hamming_distance\n// s1 is the first string to compare\n// s2 is the second string to compare\n// Strings should have equal length\nfunction HammingDistance (s1, s2, ignoreCase) {\n  // Return -1 if one of the parameters is not a string\n  if (typeof (s1) !== 'string' || typeof (s2) !== 'string') {\n    return -1\n  }\n  // Return -1 the lengths of the strings differ\n  if (s1.length !== s2.length) {\n    return -1\n  }\n\n  if (ignoreCase) {\n    s1 = s1.toLowerCase()\n    s2 = s2.toLowerCase()\n  }\n\n  let diffs = 0\n  for (let i = 0; i < s1.length; i++) {\n    if (s1[i] !== s2[i]) {\n      diffs++\n    }\n  }\n  return diffs\n}\n\nmodule.exports = HammingDistance\n"
  },
  {
    "path": "lib/natural/distance/index.d.ts",
    "content": "/*\nCopyright (c) 2023,\n  Dylan R. E. Moonfire <https://github.com/dmoonfire>,\n  Emily Marigold Klassen <https://github.com/forivall>,\n  Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\ndeclare interface JaroWinklerOptions {\n  dj?: number\n  /** @default false */\n  ignoreCase?: boolean\n}\n\nexport function JaroWinklerDistance (s1: string, s2: string, options?: JaroWinklerOptions): number\n\ndeclare interface DamerauLevenshteinDistanceOptions {\n  /** @default 1 */\n  insertion_cost?: number\n  /** @default 1 */\n  deletion_cost?: number\n  /** @default 1 */\n  substitution_cost?: number\n  /** @default 1 */\n  transposition_cost?: number\n  /** @default false */\n  restricted?: boolean\n}\n\ndeclare interface SubstringDistanceResult {\n  substring: string\n  distance: number\n  offset: number\n}\n\nexport function LevenshteinDistance (\n  source: string,\n  target: string,\n  options?: DamerauLevenshteinDistanceOptions\n): number\n\n/**\n * Returns the Damerau-Levenshtein distance between strings. Counts the distance\n * between two strings by returning the number of edit operations required to\n * convert `source` into `target`.\n *\n * Valid edit operations are:\n *  - transposition, insertion, deletion, and substitution\n */\nexport function LevenshteinDistanceSearch (\n  source: string,\n  target: string,\n  options?: DamerauLevenshteinDistanceOptions\n): SubstringDistanceResult\n\nexport function DamerauLevenshteinDistance (\n  source: string,\n  target: string,\n  options?: DamerauLevenshteinDistanceOptions\n): number\n\nexport function DamerauLevenshteinDistanceSearch (\n  source: string,\n  target: string,\n  options?: DamerauLevenshteinDistanceOptions\n): SubstringDistanceResult\n\nexport function DiceCoefficient (str1: string, str2: string): number\n\nexport function HammingDistance (str1: string, str2: string, ignoreCase: boolean): number\n"
  },
  {
    "path": "lib/natural/distance/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.JaroWinklerDistance = require('./jaro-winkler_distance')\nexports.LevenshteinDistance = require('./levenshtein_distance').LevenshteinDistance\nexports.DamerauLevenshteinDistance = require('./levenshtein_distance').DamerauLevenshteinDistance\nexports.LevenshteinDistanceSearch = require('./levenshtein_distance').LevenshteinDistanceSearch\nexports.DamerauLevenshteinDistanceSearch = require('./levenshtein_distance').DamerauLevenshteinDistanceSearch\nexports.DiceCoefficient = require('./dice_coefficient')\nexports.HammingDistance = require('./hamming_distance')\n"
  },
  {
    "path": "lib/natural/distance/jaro-winkler_distance.js",
    "content": "/*\r\nCopyright (c) 2012, Adam Phillabaum, Chris Umbel\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nUnless otherwise stated by a specific section of code\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\n// Computes the Jaro distance between two string -- intrepreted from:\r\n// http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance\r\n// s1 is the first string to compare\r\n// s2 is the second string to compare\r\nfunction distance (s1, s2) {\r\n  if (typeof (s1) !== 'string' || typeof (s2) !== 'string') {\r\n    return 0\r\n  }\r\n\r\n  if (s1.length === 0 || s2.length === 0) {\r\n    return 0\r\n  }\r\n\r\n  const matchWindow = (Math.floor(Math.max(s1.length, s2.length) / 2.0)) - 1\r\n  const matches1 = new Array(s1.length)\r\n  const matches2 = new Array(s2.length)\r\n  let m = 0 // number of matches\r\n  let t = 0 // number of transpositions\r\n  let i = 0 // index for string 1\r\n  let k = 0 // index for string 2\r\n\r\n  // debug helpers\r\n  // console.log(\"s1: \" + s1 + \"; s2: \" + s2);\r\n  // console.log(\" - matchWindow: \" + matchWindow);\r\n\r\n  for (i = 0; i < s1.length; i++) { // loop to find matched characters\r\n    const start = Math.max(0, (i - matchWindow)) // use the higher of the window diff\r\n    const end = Math.min((i + matchWindow + 1), s2.length) // use the min of the window and string 2 length\r\n\r\n    for (k = start; k < end; k++) { // iterate second string index\r\n      if (matches2[k]) { // if second string character already matched\r\n        continue\r\n      }\r\n      if (s1[i] !== s2[k]) { // characters don't match\r\n        continue\r\n      }\r\n\r\n      // assume match if the above 2 checks don't continue\r\n      matches1[i] = true\r\n      matches2[k] = true\r\n      m++\r\n      break\r\n    }\r\n  }\r\n\r\n  // nothing matched\r\n  if (m === 0) {\r\n    return 0.0\r\n  }\r\n\r\n  k = 0 // reset string 2 index\r\n  for (i = 0; i < s1.length; i++) { // loop to find transpositions\r\n    if (!matches1[i]) { // non-matching character\r\n      continue\r\n    }\r\n    while (!matches2[k]) { // move k index to the next match\r\n      k++\r\n    }\r\n    if (s1[i] !== s2[k]) { // if the characters don't match, increase transposition\r\n      // HtD: t is always less than the number of matches m, because transpositions are a subset of matches\r\n      t++\r\n    }\r\n    k++ // iterate k index normally\r\n  }\r\n\r\n  // transpositions divided by 2\r\n  t = t / 2.0\r\n\r\n  return ((m / s1.length) + (m / s2.length) + ((m - t) / m)) / 3.0 // HtD: therefore, m - t > 0, and m - t < m\r\n  // HtD: => return value is between 0 and 1\r\n}\r\n\r\n// Computes the Winkler distance between two string -- intrepreted from:\r\n// http://en.wikipedia.org/wiki/Jaro%E2%80%93Winkler_distance\r\n// s1 is the first string to compare\r\n// s2 is the second string to compare\r\n// dj is the Jaro Distance (if you've already computed it), leave blank and the method handles it\r\n// ignoreCase: if true strings are first converted to lower case before comparison\r\nfunction JaroWinklerDistance (s1, s2, options = {}) {\r\n  if (s1 === s2) {\r\n    return 1\r\n  } else {\r\n    if (options.ignoreCase) {\r\n      s1 = s1.toLowerCase()\r\n      s2 = s2.toLowerCase()\r\n    }\r\n\r\n    // Use the  Jaro distance provided by the client if present\r\n    const jaro = (options.dj === undefined) ? distance(s1, s2) : options.dj\r\n    const p = 0.1 // default scaling factor\r\n    let l = 0 // length of the matching prefix\r\n    while (s1[l] === s2[l] && l < 4) {\r\n      l++\r\n    }\r\n\r\n    // HtD: 1 - jaro >= 0\r\n    return jaro + l * p * (1 - jaro)\r\n  }\r\n}\r\n\r\nmodule.exports = JaroWinklerDistance\r\n"
  },
  {
    "path": "lib/natural/distance/levenshtein_distance.js",
    "content": "/*\nCopyright (c) 2012, Sid Nallu, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/*\n * contribution by sidred123\n */\n\n/*\n * Compute the Levenshtein distance between two strings.\n * Algorithm based from Speech and Language Processing - Daniel Jurafsky and James H. Martin.\n */\n\nconst _ = require('underscore')\n\n// Walk the path back from the matchEnd to the beginning of the match.\n// Do this by traversing the distanceMatrix as you would a linked list,\n// following going from cell child to parent until reach row 0.\nfunction _getMatchStart (distanceMatrix, matchEnd, sourceLength) {\n  let row = sourceLength\n  let column = matchEnd\n  let tmpRow\n  let tmpColumn\n\n  // match will be empty string\n  if (matchEnd === 0) { return 0 }\n\n  while (row > 1 && column > 1) {\n    tmpRow = row\n    tmpColumn = column\n    row = distanceMatrix[tmpRow][tmpColumn].parentCell.row\n    column = distanceMatrix[tmpRow][tmpColumn].parentCell.column\n  }\n\n  return column - 1\n}\n\nfunction getMinCostSubstring (distanceMatrix, source, target) {\n  const sourceLength = source.length\n  const targetLength = target.length\n  let minDistance = sourceLength + targetLength\n  let matchEnd = targetLength\n\n  // Find minimum value in last row of the cost matrix. This cell marks the\n  // end of the match string.\n  for (let column = 0; column <= targetLength; column++) {\n    if (minDistance > distanceMatrix[sourceLength][column].cost) {\n      minDistance = distanceMatrix[sourceLength][column].cost\n      matchEnd = column\n    }\n  }\n\n  const matchStart = _getMatchStart(distanceMatrix, matchEnd, sourceLength)\n  return { substring: target.slice(matchStart, matchEnd), distance: minDistance, offset: matchStart }\n}\n\n/*\n* Returns the Damerau-Levenshtein distance between strings. Counts the distance\n* between two strings by returning the number of edit operations required to\n* convert `source` into `target`.\n*\n* Valid edit operations are:\n*  - transposition, insertion, deletion, and substitution\n*\n* Options:\n*  insertion_cost: (default: 1)\n*  deletion_cost: number (default: 1)\n*  substitution_cost: number (default: 1)\n*  transposition_cost: number (default: 1)\n*  search: boolean (default: false)\n*  restricted: boolean (default: false)\n*  damerau: boolean (depends on the function called)\n*/\nfunction DamerauLevenshteinDistance (source, target, options) {\n  const damLevOptions = _.extend(\n    { transposition_cost: 1, restricted: false },\n    options || {},\n    { damerau: true, search: false }\n  )\n  return levenshteinDistance(source, target, damLevOptions)\n}\n\nfunction DamerauLevenshteinDistanceSearch (source, target, options) {\n  const damLevOptions = _.extend(\n    { transposition_cost: 1, restricted: false },\n    options || {},\n    { damerau: true, search: true }\n  )\n  return levenshteinDistance(source, target, damLevOptions)\n}\n\nfunction LevenshteinDistanceSearch (source, target, options) {\n  const levOptions = _.extend({}, options || {}, { damerau: false, search: true })\n  return levenshteinDistance(source, target, levOptions)\n}\n\nfunction LevenshteinDistance (source, target, options) {\n  const levOptions = _.extend({}, options || {}, { damerau: false, search: false })\n  return levenshteinDistance(source, target, levOptions)\n}\n\nfunction levenshteinDistance (source, target, options) {\n  if (isNaN(options.insertion_cost)) options.insertion_cost = 1\n  if (isNaN(options.deletion_cost)) options.deletion_cost = 1\n  if (isNaN(options.substitution_cost)) options.substitution_cost = 1\n\n  if (typeof options.search !== 'boolean') options.search = false\n\n  const isUnrestrictedDamerau = options.damerau && !options.restricted\n  const isRestrictedDamerau = options.damerau && options.restricted\n\n  let lastRowMap = null\n  if (isUnrestrictedDamerau) {\n    lastRowMap = {}\n  }\n\n  const sourceLength = source.length\n  const targetLength = target.length\n  const distanceMatrix = [[{ cost: 0 }]] // the root, has no parent cell\n\n  for (let row = 1; row <= sourceLength; row++) {\n    distanceMatrix[row] = []\n    distanceMatrix[row][0] = { cost: distanceMatrix[row - 1][0].cost + options.deletion_cost, parentCell: { row: row - 1, column: 0 } }\n  }\n\n  for (let column = 1; column <= targetLength; column++) {\n    if (options.search) {\n      distanceMatrix[0][column] = { cost: 0 }\n    } else {\n      distanceMatrix[0][column] = { cost: distanceMatrix[0][column - 1].cost + options.insertion_cost, parentCell: { row: 0, column: column - 1 } }\n    }\n  }\n\n  let lastColMatch = null\n  for (let row = 1; row <= sourceLength; row++) {\n    if (isUnrestrictedDamerau) {\n      lastColMatch = null\n    }\n    for (let column = 1; column <= targetLength; column++) {\n      const costToInsert = distanceMatrix[row][column - 1].cost + options.insertion_cost\n      const costToDelete = distanceMatrix[row - 1][column].cost + options.deletion_cost\n\n      const sourceElement = source[row - 1]\n      const targetElement = target[column - 1]\n      let costToSubstitute = distanceMatrix[row - 1][column - 1].cost\n      if (sourceElement !== targetElement) {\n        costToSubstitute = costToSubstitute + options.substitution_cost\n      }\n\n      const possibleParents = [\n        { cost: costToInsert, coordinates: { row: row, column: column - 1 } },\n        { cost: costToDelete, coordinates: { row: row - 1, column: column } },\n        { cost: costToSubstitute, coordinates: { row: row - 1, column: column - 1 } }\n      ]\n\n      // We can add damerau to the possibleParents if the current\n      // target-letter has been encountered in our lastRowMap,\n      // and if there exists a previous column in this row where the\n      // row & column letters matched\n      const canDamerau = isUnrestrictedDamerau &&\n                row > 1 && column > 1 &&\n                lastColMatch &&\n                targetElement in lastRowMap\n\n      let costBeforeTransposition = null\n      if (canDamerau) {\n        const lastRowMatch = lastRowMap[targetElement]\n        costBeforeTransposition =\n                    distanceMatrix[lastRowMatch - 1][lastColMatch - 1].cost\n        const costToTranspose = costBeforeTransposition +\n                    ((row - lastRowMatch - 1) * options.deletion_cost) +\n                    ((column - lastColMatch - 1) * options.insertion_cost) +\n                    options.transposition_cost\n        possibleParents.push({\n          cost: costToTranspose,\n          coordinates: {\n            row: lastRowMatch - 1,\n            column: lastColMatch - 1\n          }\n        })\n      }\n      // Source and target chars are 1-indexed in the distanceMatrix so previous\n      // source/target element is (col/row - 2)\n      const canDoRestrictedDamerau = isRestrictedDamerau &&\n                row > 1 && column > 1 &&\n                sourceElement === target[column - 2] &&\n                source[row - 2] === targetElement\n\n      if (canDoRestrictedDamerau) {\n        costBeforeTransposition = distanceMatrix[row - 2][column - 2].cost\n        possibleParents.push({\n          cost: costBeforeTransposition + options.transposition_cost,\n          coordinates: { row: row - 2, column: column - 2 }\n        })\n      }\n\n      const minCostParent = _.min(possibleParents, function (p) { return p.cost })\n\n      distanceMatrix[row][column] = { cost: minCostParent.cost, parentCell: minCostParent.coordinates }\n\n      if (isUnrestrictedDamerau) {\n        lastRowMap[sourceElement] = row\n        if (sourceElement === targetElement) {\n          lastColMatch = column\n        }\n      }\n    }\n  }\n\n  if (!options.search) {\n    return distanceMatrix[sourceLength][targetLength].cost\n  }\n\n  return getMinCostSubstring(distanceMatrix, source, target)\n}\n\nmodule.exports = {\n  LevenshteinDistance: LevenshteinDistance,\n  LevenshteinDistanceSearch: LevenshteinDistanceSearch,\n  DamerauLevenshteinDistance: DamerauLevenshteinDistance,\n  DamerauLevenshteinDistanceSearch: DamerauLevenshteinDistanceSearch\n}\n"
  },
  {
    "path": "lib/natural/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport * from './analyzers'\nexport * from './brill_pos_tagger'\nexport * from './classifiers'\nexport * from './distance'\nexport * from './inflectors'\nexport * from './ngrams'\nexport * from './normalizers'\nexport * from './phonetics'\nexport * from './sentiment'\nexport * from './spellcheck'\nexport * from './stemmers'\nexport * from './tfidf'\nexport * from './tokenizers'\nexport * from './transliterators'\nexport * from './trie'\nexport * from './util'\nexport * from './wordnet'\n"
  },
  {
    "path": "lib/natural/index.js",
    "content": "/*\nCopyright (c) 2021, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nfunction buildExportMap (modules) {\n  const result = {}\n  modules.forEach(module => {\n    Object.keys(module).forEach(key => {\n      result[key] = module[key]\n    })\n  })\n  return result\n}\n\nmodule.exports = buildExportMap([\n  require('./brill_pos_tagger'),\n  require('./classifiers'),\n  require('./distance'),\n  require('./inflectors'),\n  require('./ngrams'),\n  require('./normalizers'),\n  require('./phonetics'),\n  require('./analyzers'),\n  require('./sentiment'),\n  require('./spellcheck'),\n  require('./stemmers'),\n  require('./tfidf'),\n  require('./tokenizers'),\n  require('./transliterators'),\n  require('./trie'),\n  require('./util'),\n  require('./wordnet')\n])\n"
  },
  {
    "path": "lib/natural/inflectors/count_inflector.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nclass CountInflector {\n  nthForm (i) {\n    const teenth = (i % 100)\n\n    if (teenth > 10 && teenth < 14) { return 'th' } else {\n      switch (i % 10) {\n        case 1:\n          return 'st'\n        case 2:\n          return 'nd'\n        case 3:\n          return 'rd'\n        default:\n          return 'th'\n      }\n    }\n  }\n\n  nth (i) {\n    return i.toString() + this.nthForm(i)\n  }\n}\n\nmodule.exports = CountInflector\n"
  },
  {
    "path": "lib/natural/inflectors/form_set.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst FormSet = function () {\n  this.regularForms = []\n  this.irregularForms = Object.create(null)\n}\n\nmodule.exports = FormSet\n"
  },
  {
    "path": "lib/natural/inflectors/fr/count_inflector.js",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/**\n * Numeral inflector for French.\n * @see http://fr.wikipedia.org/wiki/Ier_si%C3%A8cle\n *\n * Also handles roman numerals as a bonus. The rules are the same as for their\n * arabic numerals equivalent.\n *\n * \\@todo Add inflector for gender and number. Ex:\n *   * CountInflector(1, MASCULINE, SINGULAR); // \"1er\" (Default)\n *   * CountInflector(1, MASCULINE, PLURAL);   // \"1ers\"\n *   * CountInflector(1, FEMINIE, SINGULAR);   // \"1re\"\n *   * CountInflector(1, FEMINIE, PLURAL);     // \"1res\"\n * \\@todo add alternative form for 2. Ex:\n *   * CountInflector(2, undefined, undefined, ALTERNATIVE); // \"2nd\"\n */\n\nclass CountInflectorFr {\n  /**\n   * @param {number|string} i\n   * @return {string}\n   */\n  nth (i) {\n    return i.toString() + this.nthForm(i)\n  }\n\n  /**\n   * @param {number|string} i\n   * @return {string}\n   */\n  nthForm (i) {\n    if (i === 1 || i === 'I') {\n      return 'er'\n    }\n\n    return 'e'\n  }\n}\n\nmodule.exports = CountInflectorFr\n"
  },
  {
    "path": "lib/natural/inflectors/fr/noun_inflector.js",
    "content": "/*\n Copyright (c) 2012, Guillaume Marty\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n/**\n * A noun inflector for French.\n * Compiled from:\n * \\@see http://fr.wiktionary.org/wiki/Annexe:Pluriels_irr%C3%A9guliers_en_fran%C3%A7ais\n * \\@see http://fr.wikipedia.org/wiki/Pluriels_irr%C3%A9guliers_en_fran%C3%A7ais\n *\n * \\@todo Take compounded noun into account (eaux-fortes, pique-nique...).\n * \\@todo General note: French also requires AdjectiveInflector (femininize...).\n */\n\nconst SingularPluralInflector = require('../singular_plural_inflector')\nconst FormSet = require('../form_set')\n\nclass NounInflector extends SingularPluralInflector {\n  constructor () {\n    super()\n    // Ambiguous a.k.a. invariant.\n    // \\@todo Expand this list to be as comprehensive as possible.\n    this.ambiguous = [\n      // Nouns ending by -s\n      'à-peu-près', 'à-propos', 'abattis', 'abcès', 'abois', 'abribus', 'abus',\n      'accès', 'acquis', 'adénovirus', 'adonis', 'ados', 'agrès', 'aguets',\n      'ailleurs', 'ais', 'albatros', 'albinos', 'alias', 'aloès', 'amaryllis',\n      'amas', 'ampélopsis', 'ananas', 'anchois', 'angélus', 'anis', 'anticorps',\n      'antihéros', 'antirides', 'anus', 'appas', 'appentis', 'appui-bras',\n      'appuie-bras', 'arcanes', 'argus', 'arrérages', 'arrière-pays', 'as',\n      'ascaris', 'asparagus', 'atlas', 'atours', 'aurochs', 'autobus',\n      'autofocus', 'avant-bras', 'avant-corps', 'avant-propos', 'avers', 'avis',\n      'axis', 'barbouillis', 'bas', 'beaujolais', 'beaux-arts', 'biais',\n      'bibliobus', 'biceps', 'bicross', 'bien-fonds', 'bloc-notes', 'blockhaus',\n      'blocus', 'blues', 'bois', 'bonus', 'bout-dehors', 'bouts-rimés',\n      'branle-bas', 'bras', 'brebis', 'bris', 'brise-lames', 'brise-mottes',\n      'brûlis', 'buis', 'burnous', 'bus', 'business', 'cabas', 'cacatoès',\n      'cacatois', 'cactus', 'cadenas', 'cafouillis', 'caillebotis', 'calvados',\n      'cambouis', 'campus', 'canevas', 'cannabis', 'carquois', 'cas',\n      'casse-noisettes', 'casse-pieds', 'cassis', 'caucus', 'cens', 'cervelas',\n      'chablis', 'chamois', 'chaos', 'chas', 'chasselas', 'châssis',\n      'chatouillis', 'chauffe-assiettes', 'chauve-souris', 'chorus', 'choucas',\n      'circoncis', 'cirrus', 'clafoutis', 'clapotis', 'cliquetis', 'clos',\n      'cochylis', 'colis', 'coloris', 'commis', 'compas', 'compromis',\n      'compte-chèques', 'compte-gouttes', 'compte-tours', 'concours', 'confins',\n      'congrès', 'consensus', 'contrepoids', 'contresens', 'contretemps',\n      'corn flakes', 'corps', 'corps-à-corps', 'corpus', 'cosinus', 'cosmos',\n      'coulis', 'coupe-ongles', 'cours', 'court-jus', 'couscous', 'coutelas',\n      'crocus', 'croquis', 'cross', 'cubitus', 'cumulus', 'cure-dents',\n      'cure-ongles', 'cure-pipes', 'cursus', 'cyclo-cross', 'cyprès', 'dais',\n      'damas', 'débarras', 'débours', 'débris', 'décès', 'dedans', 'dehors',\n      'delirium tremens', 'demi-gros', 'dépens', 'dessous', 'dessus', 'détritus',\n      'deux-mâts', 'deux-pièces', 'deux-points', 'deux-roues', 'deux-temps',\n      'dévers', 'devis', 'diplodocus', 'discours', 'dos', 'ébats', 'éboulis',\n      'échalas', 'edelweiss', 'élaeis', 'éleis', 'éléphantiasis', 'embarras',\n      'empois', 'en-cas', 'encens', 'enclos', 'endos', 'engrais', 'entrelacs',\n      'entremets', 'envers', 'épluche-légumes', 'ers', 'espace-temps',\n      'essuie-mains', 'eucalyptus', 'ex-libris', 'excès', 'express', 'extrados',\n      'faciès', 'fait-divers', 'fatras', 'faux-sens', 'favoris', 'ficus',\n      'fier-à-bras', 'finnois', 'florès', 'focus', 'fœtus', 'fois', 'forceps',\n      'fouillis', 'fracas', 'frais', 'français', 'franglais', 'frimas',\n      'friselis', 'frisottis', 'froncis', 'frottis', 'fucus', 'gâchis', 'galetas',\n      'galimatias', 'garde-à-vous', 'garde-corps', 'gargouillis', 'gars',\n      'gâte-bois', 'gazouillis', 'génois', 'gibus', 'glacis', 'glas', 'gneiss',\n      'gobe-mouches', 'grès', 'gribouillis', 'guet-apens', 'habeas corpus',\n      'hachis', 'haras', 'hardes', 'harnais', 'haut-le-corps', 'hautbois',\n      'herbe-aux-chats', 'héros', 'herpès', 'hiatus', 'hibiscus', 'hors-concours',\n      'hors-pistes', 'hourdis', 'huis-clos', 'humérus', 'humus', 'ibis', 'iléus',\n      'indique-fuites', 'infarctus', 'inlandsis', 'insuccès', 'intercours',\n      'intrados', 'intrus', 'iris', 'isatis', 'jais', 'jars', 'jeans',\n      'jeuconcours', 'judas', 'juliénas', 'jus', 'justaucorps', 'kakatoès',\n      'kermès', 'kriss', 'lacis', 'laïus', 'lambris', 'lapis', 'laps', 'lapsus',\n      'laquais', 'las', 'lattis', 'lave-mains', 'lavis', 'lèche-bottes',\n      'lèche-vitrines', 'legs', 'lias', 'liégeois', 'lilas', 'lis', 'lœss',\n      'logis', 'loris', 'lotus', 'louis', 'lupus', 'lys', 'mâchicoulis', 'madras',\n      'maïs', 'malappris', 'malus', 'mânes', 'maquis', 'marais', 'maroilles',\n      'marquis', 'mas', 'mass-médias', 'matelas', 'matois', 'médius', 'mépris',\n      'mérinos', 'mess', 'mets', 'mi-bas', 'micro-ondes', 'mille-pattes',\n      'millepertuis', 'minibus', 'minois', 'minus', 'mirabilis', 'mois',\n      'monocorps', 'monte-plats', 'mors', 'motocross', 'mots-croisés', 'motus',\n      'mouchetis', 'mucus', 'myosotis', 'nævus', 'négus', 'niais',\n      'nimbo-stratus', 'nimbus', 'norois', 'nounours', 'nu-pieds', 'oasis',\n      'obus', 'olibrius', 'omnibus', 'opus', 'os', 'ours', 'ouvre-boîtes',\n      'ouvre-bouteilles', 'palais', 'palis', 'palmarès', 'palus', 'panais',\n      'panaris', 'pancréas', 'papyrus', 'par-dehors', 'paradis', 'parcours',\n      'pardessus', 'pare-balles', 'pare-chocs', 'parvis', 'pas', 'passe-temps',\n      'pataquès', 'pathos', 'patois', 'pavois', 'pays', 'permis',\n      'petit-bourgeois', 'petit-gris', 'petit-pois', 'phallus', 'phimosis',\n      'pickles', 'pilotis', 'pique-fleurs', 'pis', 'pithiviers', 'pityriasis',\n      'plateau-repas', 'plâtras', 'plein-temps', 'plexiglas', 'plexus', 'plus',\n      'poids', 'pois', 'pont-levis', 'porte-avions', 'porte-bagages',\n      'porte-billets', 'porte-bouteilles', 'porte-clés', 'porte-hélicoptères',\n      'porte-jarretelles', 'porte-revues', 'pouls', 'préavis', 'presse-fruits',\n      'presse-papiers', 'princeps', 'printemps', 'procès', 'processus', 'progrès',\n      'propos', 'prospectus', 'protège-dents', 'psoriasis', 'pubis', 'puits',\n      'pus', 'putois', 'quatre-épices', 'quatre-feuilles', 'quatre-heures',\n      'quatre-mâts', 'quatre-quarts', 'quatre-temps', 'quitus', 'rabais',\n      'rachis', 'radis', 'radius', 'raïs', 'ramassis', 'rébus', 'reclus',\n      'recours', 'refus', 'relais', 'remords', 'remous', 'remue-méninges',\n      'rendez-vous', 'repas', 'répons', 'repos', 'repris', 'reps', 'rétrovirus',\n      'revers', 'rhinocéros', 'rictus', 'rince-doigts', 'ris', 'rollmops',\n      'rosé-des-prés', 'roulis', 'rubis', 'salmigondis', 'salsifis', 'sans-logis',\n      'sas', 'sassafras', 'sauternes', 'schnaps', 'schuss', 'secours', 'semis',\n      'sens', 'serre-fils', 'serre-livres', 'sévices', 'sinus', 'skunks',\n      'souris', 'sournois', 'sous-bois', 'stradivarius', 'stras', 'strass',\n      'strato-cumulus', 'stratus', 'stress', 'succès', 'surdos', 'surplus',\n      'surpoids', 'sursis', 'suspens', 'synopsis', 'syphilis', 'taffetas',\n      'taillis', 'talus', 'tamaris', 'tamis', 'tapis', 'tas', 'taudis', 'temps',\n      'tennis', 'terminus', 'terre-neuvas', 'tétanos', 'tétras', 'thalamus',\n      'thermos', 'thesaurus', 'thésaurus', 'thymus', 'tire-fesses', 'tonus',\n      'torchis', 'torticolis', 'tournedos', 'tournevis', 'tournis', 'tracas',\n      'traîne-savates', 'travers', 'tréfonds', 'treillis', 'trépas', 'trias',\n      'triceps', 'trichomonas', 'trois-étoiles', 'trois-mâts', 'trois-quarts',\n      'trolleybus', 'tumulus', 'typhus', 'univers', 'us', 'utérus', 'vasistas',\n      'vélocross', 'velours', 'verglas', 'verjus', 'vernis', 'vers',\n      'vert-de-gris', 'vide-ordures', 'vide-poches', 'villageois', 'virus',\n      'vis-à-vis', 'volubilis', 'vulgum pecus', 'waters', 'williams', 'xérès',\n\n      // Nouns ending by -x\n      'abat-voix', 'afflux', 'alpax', 'anthrax', 'apex', 'aptéryx',\n      'archéoptéryx', 'arrière-faix', 'bombyx', 'borax', 'bordeaux', 'bouseux',\n      'box', 'carex', 'casse-noix', 'cedex', 'céphalothorax', 'cérambyx', 'chaux',\n      'choix', 'coccyx', 'codex', 'contumax', 'coqueleux', 'cortex', 'courroux',\n      'croix', 'crucifix', 'culex', 'demodex', 'duplex', 'entre-deux', 'époux',\n      'équivaux', 'eux', 'ex', 'faix', 'faucheux', 'faux', 'fax', 'ferreux',\n      'flux', 'fox', 'freux', 'furax', 'hapax', 'harengueux', 'hélix',\n      'horse-pox', 'houx', 'index', 'influx', 'inox', 'juke-box', 'kleenex',\n      'lagothrix', 'larynx', 'lastex', 'latex', 'lux', 'lynx', 'macareux', 'max',\n      'mésothorax', 'mi-voix', 'mirepoix', 'motteux', 'multiplex', 'murex',\n      'narthex', 'noix', 'onyx', 'opopanax', 'oropharynx', 'paix', 'panax',\n      'perdrix', 'pharynx', 'phénix', 'phlox', 'phoenix', 'pneumothorax', 'poix',\n      'portefaix', 'pousse-cailloux', 'preux', 'prix', 'prothorax', 'pucheux',\n      'pyrex', 'pyroligneux', 'quadruplex', 'queux', 'redoux', 'reflex', 'reflux',\n      'relax', 'rhinopharynx', 'rose-croix', 'rouvieux', 'roux', 'rumex',\n      'saindoux', 'sardonyx', 'scolex', 'sèche-cheveux', 'silex', 'simplex',\n      'sioux', 'sirex', 'smilax', 'solex', 'songe-creux', 'spalax', 'sphex',\n      'sphinx', 'storax', 'strix', 'styrax', 'surfaix', 'surtaux', 'syrinx',\n      'tamarix', 'taux', 'télex', 'thorax', 'tord-boyaux', 'toux', 'trionyx',\n      'tripoux', 'tubifex', 'vertex', 'vidéotex', 'vielleux', 'vieux',\n      'violoneux', 'voix', 'volvox', 'vortex',\n\n      // Nouns ending by -z\n      'allume-gaz', 'assez', 'biogaz', 'cache-nez', 'camping-gaz', 'chez',\n      'chintz', 'ersatz', 'fez', 'free-jazz', 'fritz', 'gaz', 'gin-fizz', 'hertz',\n      'jazz', 'jerez', 'kibboutz', 'kilohertz', 'kolkhoz', 'kronprinz', 'lapiaz',\n      'lez', 'mégahertz', 'merguez', 'nez', 'pince-nez', 'quartz', 'quiz', 'ranz',\n      'raz', 'recez', 'rémiz', 'rez', 'riz', 'ruolz', 'seltz', 'serre-nez'\n    ]\n\n    this.customPluralForms = []\n    this.customSingularForms = []\n    this.singularForms = new FormSet()\n    this.pluralForms = new FormSet()\n\n    // this.attach = attach\n\n    this.addIrregular('ail', 'aulx')\n    this.addIrregular('bétail', 'bestiaux')\n    this.addIrregular('bonhomme', 'bonshommes')\n    this.addIrregular('ciel', 'cieux')\n    this.addIrregular('monsieur', 'messieurs')\n    this.addIrregular('mafioso', 'mafiosi')\n    this.addIrregular('œil', 'yeux')\n    this.addIrregular('putto', 'putti')\n    this.addIrregular('targui', 'touareg') // touareg -> touaregs is also OK.\n\n    // Pluralize\n    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'])\n    this.pluralForms.regularForms.push([/^(aspir|b|cor|ém|ferm|gemm|soupir|trav|vant|vent|vitr)ail$/i, '$1aux'])\n    this.pluralForms.regularForms.push([/^(bij|caill|ch|gen|hib|jouj|p|rip|chouch)ou$/i, '$1oux'])\n    this.pluralForms.regularForms.push([/^(gr|berimb|don|karb|land|pil|rest|sarr|un)au$/i, '$1aus'])\n    this.pluralForms.regularForms.push([/^(bl|ém|enf|pn)eu$/i, '$1eus'])\n    this.pluralForms.regularForms.push([/(au|eau|eu|œu)$/i, '$1x'])\n    this.pluralForms.regularForms.push([/al$/i, 'aux'])\n    this.pluralForms.regularForms.push([/(s|x)$/i, '$1'])\n    this.pluralForms.regularForms.push([/(.*)$/i, '$1s'])\n\n    // Singularize\n    this.singularForms.regularForms.push([/^(aspir|b|cor|ém|ferm|gemm|soupir|trav|vant|vent|vitr)aux$/i, '$1ail'])\n    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'])\n    this.singularForms.regularForms.push([/^(bij|caill|ch|gen|hib|jouj|p|rip|chouch)oux$/i, '$1ou'])\n    this.singularForms.regularForms.push([/^(bis)?aïeux$/i, '$1aïeul'])\n    this.singularForms.regularForms.push([/^apparaux$/i, 'appareil']) // One way transform, don't put on irregular list.\n    this.singularForms.regularForms.push([/^ciels$/i, 'ciel'])\n    this.singularForms.regularForms.push([/^œils$/i, 'œil'])\n    this.singularForms.regularForms.push([/(eau|eu|œu)x$/i, '$1'])\n    this.singularForms.regularForms.push([/aux$/i, 'al'])\n    this.singularForms.regularForms.push([/(.*)s$/i, '$1'])\n\n    this.pluralize = function (token) {\n      return this.ize(token, this.pluralForms, this.customPluralForms)\n    }\n\n    this.singularize = function (token) {\n      return this.ize(token, this.singularForms, this.customSingularForms)\n    }\n  }\n}\n\nmodule.exports = NounInflector\n"
  },
  {
    "path": "lib/natural/inflectors/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>, Emily Marigold Klassen <https://github.com/forivall>, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport class SingularPluralInflector {\n  singularize (token: string): string\n  pluralize (token: string): string\n  addSingular (pattern: RegExp, replacement: string): void\n  addPlural (pattern: RegExp, replacement: string): void\n}\n\nexport class NounInflector extends SingularPluralInflector {\n  pluralize (token: string): string\n  singularize (token: string): string\n}\n\nexport class NounInflectorFr extends NounInflector {}\nexport class NounInflectorJa extends NounInflector {}\n\nexport class CountInflector {\n  nth: (i: number | string) => string\n}\n\nexport class CountInflectorFr extends CountInflector {}\n\nexport class PresentVerbInflector {\n  pluralize (token: string): string\n  singularize (token: string): string\n}\n"
  },
  {
    "path": "lib/natural/inflectors/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.NounInflector = require('./noun_inflector')\nexports.NounInflectorFr = require('./fr/noun_inflector')\nexports.NounInflectorJa = require('./ja/noun_inflector')\n\nexports.PresentVerbInflector = require('./present_verb_inflector')\n\nexports.CountInflector = require('./count_inflector')\nexports.CountInflectorFr = require('./fr/count_inflector')\n"
  },
  {
    "path": "lib/natural/inflectors/ja/noun_inflector.js",
    "content": "/*\n Copyright (c) 2012, Guillaume Marty\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n/**\n * A noun inflector for Japanese.\n * Compiled from several sources including:\n * \\@see http://answers.yahoo.com/question/index?qid=20080528201740AASBWy6\n * \\@see http://www.excite.co.jp/dictionary/english_japanese/\n *\n * This script assumes input is normalized using normalizer_ja().\n * Pluralizing Japanese has a very limited interest.\n * Japanese don't usually distinct plural from singular, so even a word looking\n * like a singular might actually be a plural.\n *\n * Singularization of nouns ending by -tachi or -ra is achieved using a\n * comprehensive black list, while nouns ending by -domo or -gata use a white\n * list because there are too many exceptions.\n *\n * \\@todo Singularize nouns ending by -ら, but there are too many exceptions.\n * \\@todo Expand the list of common plurals ending by -domo and -gata.\n */\n\nconst SingularPluralInflector = require('../singular_plural_inflector')\nconst FormSet = require('../form_set')\n\nclass NounInflector extends SingularPluralInflector {\n  constructor () {\n    super()\n    // Ambiguous a.k.a. invariant.\n    this.ambiguous = [\n      'ともだち', '友だち', '友達', '遊び友達', '飲み友達', '酒飲み友達', '茶飲み友達',\n      '学校友達', '女友達', '男友達', '幼友達'\n    ]\n\n    this.customPluralForms = []\n    this.customSingularForms = []\n    this.singularForms = new FormSet()\n    this.pluralForms = new FormSet()\n\n    // this.attach = attach\n\n    this.addIrregular('神', '神神')\n    this.addIrregular('人', '人人')\n    this.addIrregular('年', '年年')\n    this.addIrregular('月', '月月')\n    this.addIrregular('日', '日日')\n    this.addIrregular('星', '星星')\n    this.addIrregular('島', '島島')\n    this.addIrregular('我', '我我')\n    this.addIrregular('山', '山山')\n    this.addIrregular('国', '国国')\n    this.addIrregular('所', '所所')\n    this.addIrregular('隅', '隅隅')\n\n    /**\n     * Notes:\n     * -たち exceptions: いたち, おいたち, ついたち, かたち, かおかたち, なりかたち, いでたち, はたち, からたち, なりたち\n     * -達 exceptions: 伊達, 男伊達, 栄達, 上意下達, 熟達, 上達, 下意上達, 先達, 送達, 速達, 即日速達, 書留速達, 調達, 通達, 伝達, 到達, 配達, 牛乳配達, 新聞配達, 無料配達, 四通八達, 発達, 未発達, 御用達, 宮内庁御用達, 練達, 闊達\n     * -等 exceptions: 一等, 下等, 何等, 均等, 勲等, 高等, 三等, 初等, 上等, 親等, 二親等, 数等, 対等, 中等, 同等, 特等, 二等, 品等, 不等, 平等, 悪平等, 男女平等, 不平等, 優等, 劣等\n     */\n\n    // Pluralize\n    this.pluralForms.regularForms.push([/^(.+)$/i, '$1たち'])\n\n    // Singularize\n    this.singularForms.regularForms.push([/^(.+)たち$/i, function (a, mask) {\n      if (['い', 'おい', 'つい', 'か', 'かおか', 'なりか', 'いで', 'は', 'から',\n        'なり'].indexOf(mask) >= 0) { return mask + 'たち' }\n      return mask\n    }])\n    this.singularForms.regularForms.push([/^(.+)達$/i, function (a, mask) {\n      if (['伊', '伊', '栄', '上意下', '熟', '上', '下意上', '先', '送', '速',\n        '即日速', '書留速', '調', '通', '伝', '到', '配', '牛乳配', '新聞配', '無料配',\n        '四通八', '発', '未発', '御用', '宮内庁御用', '練', '闊'].indexOf(mask) >= 0) { return mask + '達' }\n      return mask\n    }]) // Singularize nouns ending by -等, but not exceptions.\n    this.singularForms.regularForms.push([/^(.+)等$/i, function (a, mask) {\n      if (['一', '下', '何', '均', '勲', '高', '三', '初', '親', '二親', '数', '対',\n        '中', '同', '特', '二', '品', '不', '平', '悪平', '男女平', '不平', '優',\n        '劣'].indexOf(mask) >= 0) { return mask + '等' }\n      return mask\n    }])\n    this.singularForms.regularForms.push([/^(人間|わたくし|私|てまえ|手前|野郎|やろう|勇者|がき|ガキ|餓鬼|あくとう|悪党|猫|家来)(共|ども)$/i, '$1'])\n    this.singularForms.regularForms.push([/^(神様|先生|あなた|大名|女中|奥様)(方|がた)$/i, '$1'])\n\n    this.pluralize = function (token) {\n      return this.ize(token, this.pluralForms, this.customPluralForms)\n    }\n\n    this.singularize = function (token) {\n      return this.ize(token, this.singularForms, this.customSingularForms)\n    }\n  }\n}\n\nmodule.exports = NounInflector\n"
  },
  {
    "path": "lib/natural/inflectors/noun_inflector.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst SingularPluralInflector = require('./singular_plural_inflector')\nconst FormSet = require('./form_set')\n\nclass NounInflector extends SingularPluralInflector {\n  constructor () {\n    super()\n    this.ambiguous = [\n      'bison', 'bream', 'carp', 'chassis', 'christmas', 'cod', 'corps', 'debris', 'deer',\n      'diabetes', 'equipment', 'elk', 'fish', 'flounder', 'gallows', 'graffiti',\n      'headquarters', 'herpes', 'highjinks', 'homework', 'information',\n      'mackerel', 'mews', 'money', 'news', 'rice', 'rabies', 'salmon', 'series',\n      'sheep', 'shrimp', 'species', 'swine', 'tennis', 'trout', 'tuna', 'whiting', 'wildebeest'\n    ]\n\n    this.customPluralForms = []\n    this.customSingularForms = []\n    this.singularForms = new FormSet()\n    this.pluralForms = new FormSet()\n\n    // this.attach = attach\n\n    this.addIrregular('child', 'children')\n    this.addIrregular('man', 'men')\n    this.addIrregular('person', 'people')\n    this.addIrregular('sex', 'sexes')\n    this.addIrregular('mouse', 'mice')\n    this.addIrregular('ox', 'oxen')\n    this.addIrregular('foot', 'feet')\n    this.addIrregular('tooth', 'teeth')\n    this.addIrregular('goose', 'geese')\n    this.addIrregular('ephemeris', 'ephemerides')\n    this.addIrregular('cloth', 'clothes')\n    this.addIrregular('hero', 'heroes')\n    this.addIrregular('torso', 'torsi')\n\n    // see if it is possible to unify the creation of both the singular and\n    // plural regexes or maybe even just have one list. with a complete list\n    // of rules it may only be possible for some regular forms, but worth a shot\n    this.pluralForms.regularForms.push([/([aeiou]y)$/i, '$1s'])\n    this.pluralForms.regularForms.push([/y$/i, 'ies'])\n    this.pluralForms.regularForms.push([/ife$/i, 'ives'])\n    this.pluralForms.regularForms.push([/(antenn|formul|nebul|vertebr|vit)a$/i, '$1ae'])\n    this.pluralForms.regularForms.push([/(octop|vir|radi|nucle|fung|cact|stimul|alumn|calcul|hippopotam|macrofung|phoet|syllab|troph)us$/i, '$1i'])\n    this.pluralForms.regularForms.push([/(buffal|tomat|tornad)o$/i, '$1oes'])\n    this.pluralForms.regularForms.push([/(sis)$/i, 'ses'])\n    this.pluralForms.regularForms.push([/(matr|vert|ind|cort)(ix|ex)$/i, '$1ices'])\n    this.pluralForms.regularForms.push([/sses$/i, 'sses'])\n    this.pluralForms.regularForms.push([/(x|ch|ss|sh|s|z)$/i, '$1es'])\n    this.pluralForms.regularForms.push([/^(?!talis|.*hu)(.*)man$/i, '$1men'])\n    this.pluralForms.regularForms.push([/(.*)/i, '$1s'])\n\n    // Words ending in -ff or -ffe you just add s to make the plural.\n    // Sheriffs | Giraffes\n    // this.pluralForms.regularForms.push([/(.+ffe?)$/i, '$1s'])\n\n    // words ending in f that just add s:\n    // roof - roofs\n    // chief - chiefs\n    // oaf -oafs\n    // this.pluralForms.regularForms.push([/([^f]+f)$/i, '$1s'])\n\n    // Example of words using the -f / -fe to -ves rule\n    // leaf - leaves\n    // wolf - wolves\n    // calf - calves\n    // half - halves\n    // knife - knives\n    // loaf - loaves\n    // life - lives\n    // wife - wives\n    // shelf - shelves\n    // thief - thieves\n    // yourself - yourselves\n    this.addIrregular('leaf', 'leaves')\n    this.addIrregular('wolf', 'wolves')\n    this.addIrregular('calf', 'calves')\n    this.addIrregular('half', 'halves')\n    this.addIrregular('knife', 'knives')\n    this.addIrregular('loaf', 'loaves')\n    this.addIrregular('life', 'lives')\n    this.addIrregular('wife', 'wives')\n    this.addIrregular('shelf', 'shelves')\n    this.addIrregular('thief', 'thieves')\n    this.addIrregular('yourself', 'yourselves')\n\n    // Some words have multiple valid plural forms endings with -ves or -s:\n    // scarf - scarfs/scarves\n    // dwarf - dwarfs / dwarves\n    // wharf - wharfs / wharves\n    // handkerchief - handkerchiefs / handkerchieves\n    // this.pluralForms.regularForms.push([/(.*r)f/i, '$1ves'])\n\n    // Singular inflections\n\n    // Some words have multiple valid plural forms endings with -ves or -s:\n    // scarf - scarfs/scarves\n    // dwarf - dwarfs / dwarves\n    // wharf - wharfs / wharves\n    // handkerchief - handkerchiefs / handkerchieves\n    this.singularForms.regularForms.push([/(.*)ves$/i, '$1f'])\n\n    // expenses - expense\n    // defenses - defense\n    this.singularForms.regularForms.push([/(.*)nses$/i, '$1nse'])\n\n    this.singularForms.regularForms.push([/([^v])ies$/i, '$1y'])\n    this.singularForms.regularForms.push([/ives$/i, 'ife'])\n    this.singularForms.regularForms.push([/(antenn|formul|nebul|vertebr|vit)ae$/i, '$1a'])\n    this.singularForms.regularForms.push([/(octop|vir|radi|nucle|fung|cact|stimul|alumn|calcul|hippopotam|macrofung|phoet|syllab|troph)(i)$/i, '$1us'])\n    this.singularForms.regularForms.push([/(buffal|tomat|tornad)(oes)$/i, '$1o'])\n    this.singularForms.regularForms.push([/(analy|naly|synop|parenthe|diagno|the)ses$/i, '$1sis'])\n    this.singularForms.regularForms.push([/(vert|ind|cort)(ices)$/i, '$1ex'])\n    // our pluralizer won''t cause this form of appendix (appendicies)\n    // but we should handle it\n    this.singularForms.regularForms.push([/(matr|append)(ices)$/i, '$1ix'])\n    this.singularForms.regularForms.push([/(x|ch|ss|sh|s|z)es$/i, '$1'])\n    this.singularForms.regularForms.push([/men$/i, 'man'])\n    this.singularForms.regularForms.push([/ss$/i, 'ss'])\n    this.singularForms.regularForms.push([/s$/i, ''])\n\n    this.pluralize = function (token) {\n      return this.ize(token, this.pluralForms, this.customPluralForms)\n    }\n\n    this.singularize = function (token) {\n      return this.ize(token, this.singularForms, this.customSingularForms)\n    }\n  }\n}\n\nmodule.exports = NounInflector\n"
  },
  {
    "path": "lib/natural/inflectors/present_verb_inflector.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst SingularPluralInflector = require('./singular_plural_inflector')\nconst FormSet = require('./form_set')\n\nclass VerbInflector extends SingularPluralInflector {\n  constructor () {\n    super()\n    this.ambiguous = [\n      'will'\n    ]\n\n    // this.attach = attach\n\n    this.customPluralForms = []\n    this.customSingularForms = []\n    this.singularForms = new FormSet()\n    this.pluralForms = new FormSet()\n\n    this.addIrregular('am', 'are')\n    this.addIrregular('is', 'are')\n    this.addIrregular('was', 'were')\n    this.addIrregular('has', 'have')\n\n    this.singularForms.regularForms.push([/ed$/i, 'ed'])\n    this.singularForms.regularForms.push([/ss$/i, 'sses'])\n    this.singularForms.regularForms.push([/x$/i, 'xes'])\n    this.singularForms.regularForms.push([/(h|z|o)$/i, '$1es'])\n    this.singularForms.regularForms.push([/$zz/i, 'zzes'])\n    this.singularForms.regularForms.push([/([^a|e|i|o|u])y$/i, '$1ies'])\n    this.singularForms.regularForms.push([/$/i, 's'])\n\n    this.pluralForms.regularForms.push([/sses$/i, 'ss'])\n    this.pluralForms.regularForms.push([/xes$/i, 'x'])\n    this.pluralForms.regularForms.push([/([cs])hes$/i, '$1h'])\n    this.pluralForms.regularForms.push([/zzes$/i, 'zz'])\n    this.pluralForms.regularForms.push([/([^h|z|o|i])es$/i, '$1e'])\n    this.pluralForms.regularForms.push([/ies$/i, 'y'])// flies->fly\n    this.pluralForms.regularForms.push([/e?s$/i, ''])\n  }\n}\n\nmodule.exports = VerbInflector\n"
  },
  {
    "path": "lib/natural/inflectors/singular_plural_inflector.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst uppercaseify = (token) => {\n  return token.toUpperCase()\n}\n\nconst capitalize = (token) => {\n  return token[0].toUpperCase() + token.slice(1)\n}\n\nconst lowercaseify = (token) => {\n  return token.toLowerCase()\n}\n\nclass TenseInflector {\n  addSingular (pattern, replacement) {\n    this.customSingularForms.push([pattern, replacement])\n  }\n\n  addPlural (pattern, replacement) {\n    this.customPluralForms.push([pattern, replacement])\n  }\n\n  ize (token, formSet, customForms) {\n    const restoreCase = this.restoreCase(token)\n    return restoreCase(this.izeRegExps(token, customForms) || this.izeAbiguous(token) ||\n          this.izeRegulars(token, formSet) || this.izeRegExps(token, formSet.regularForms) ||\n          token)\n  }\n\n  izeAbiguous (token) {\n    if (this.ambiguous.indexOf(token.toLowerCase()) > -1) { return token.toLowerCase() }\n\n    return false\n  }\n\n  pluralize (token) {\n    return this.ize(token, this.pluralForms, this.customPluralForms)\n  }\n\n  singularize (token) {\n    return this.ize(token, this.singularForms, this.customSingularForms)\n  }\n\n  restoreCase (token) {\n    if (token[0] === token[0].toUpperCase()) {\n      if (token[1] && token[1] === token[1].toLowerCase()) {\n        return capitalize\n      } else {\n        return uppercaseify\n      }\n    } else {\n      return lowercaseify\n    }\n  }\n\n  izeRegulars (token, formSet) {\n    token = token.toLowerCase()\n    // if (formSet.irregularForms.hasOwnProperty(token) && formSet.irregularForms[token]) {\n    if (formSet.irregularForms[token]) {\n      return formSet.irregularForms[token]\n    }\n\n    return false\n  }\n\n  addForm (singularTable, pluralTable, singular, plural) {\n    singular = singular.toLowerCase()\n    plural = plural.toLowerCase()\n    pluralTable[singular] = plural\n    singularTable[plural] = singular\n  }\n\n  addIrregular (singular, plural) {\n    this.addForm(this.singularForms.irregularForms, this.pluralForms.irregularForms, singular, plural)\n  }\n\n  izeRegExps (token, forms) {\n    let i, form\n    for (i = 0; i < forms.length; i++) {\n      form = forms[i]\n\n      if (token.match(form[0])) { return token.replace(form[0], form[1]) }\n    }\n\n    return false\n  }\n}\n\nmodule.exports = TenseInflector\n"
  },
  {
    "path": "lib/natural/ngrams/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport type { Tokenizer } from '../tokenizers'\n\ndeclare interface NGramsStats {\n  ngrams: string[][]\n  frequencies: Record<string, number>\n  Nr: Record<number, number>\n  numberOfNgrams: number\n}\n\ndeclare interface NGramsFunctions {\n  // To support function overloads where the return type can differ depending on a parameter\n  // value, method signatures are necessary. Key collisions occur with property signatures.\n  /* eslint-disable @typescript-eslint/method-signature-style */\n  setTokenizer (t: Tokenizer): void\n  ngrams (sequence: string | string[], n: number, startSymbol: string | undefined | null, endSymbol: string | undefined | null, stats: true): NGramsStats\n  ngrams (sequence: string | string[], n: number, startSymbol?: string | undefined | null, endSymbol?: string, stats?: boolean): string[][]\n  bigrams (sequence: string | string[], startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats\n  bigrams (sequence: string | string[], startSymbol?: string, endSymbol?: string, stats?: boolean): string[][]\n  trigrams (sequence: string | string[], startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats\n  trigrams (sequence: string | string[], startSymbol?: string, endSymbol?: string, stats?: boolean): string[][]\n  multrigrams (sequence: string | string[], n: number, startSymbol: string | undefined, endSymbol: string | undefined, stats: true): NGramsStats\n  multrigrams (sequence: string | string[], n: number, startSymbol?: string, endSymbol?: string, stats?: boolean): string[][]\n  /* eslint-enable @typescript-eslint/method-signature-style */\n}\n\nexport let NGrams: NGramsFunctions\nexport let NGramsZH: NGramsFunctions\n"
  },
  {
    "path": "lib/natural/ngrams/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.NGrams = require('./ngrams')\nexports.NGramsZH = require('./ngrams_zh')\n"
  },
  {
    "path": "lib/natural/ngrams/ngrams.js",
    "content": "/*\nCopyright (c) 2011, 2018 Rob Ellis, Chris Umbel, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst _ = require('underscore')\nconst Tokenizer = require('../tokenizers/regexp_tokenizer').WordTokenizer\nlet tokenizer = new Tokenizer()\nlet frequencies = {}\nlet nrOfNgrams = 0\n\nexports.setTokenizer = function (t) {\n  if (!_.isFunction(t.tokenize)) { throw new Error('Expected a valid Tokenizer') }\n  tokenizer = t\n}\n\nexports.ngrams = function (sequence, n, startSymbol, endSymbol, stats) {\n  return ngrams(sequence, n, startSymbol, endSymbol, stats)\n}\n\nexports.bigrams = function (sequence, startSymbol, endSymbol, stats) {\n  return ngrams(sequence, 2, startSymbol, endSymbol, stats)\n}\n\nexports.trigrams = function (sequence, startSymbol, endSymbol, stats) {\n  return ngrams(sequence, 3, startSymbol, endSymbol, stats)\n}\n\nexports.multrigrams = function (sequence, n, startSymbol, endSymbol, stats) {\n  return ngrams(sequence, n, startSymbol, endSymbol, stats)\n}\n\n// Calculates a key (string) that can be used for a map\nfunction arrayToKey (arr) {\n  let result = '('\n  arr.forEach(function (x) {\n    result += x + ', '\n  })\n  result = result.substr(0, result.length - 2) + ')'\n  return result\n};\n\n// Updates the statistics for the new ngram\nfunction countNgrams (ngram) {\n  nrOfNgrams++\n  const key = arrayToKey(ngram)\n  if (!frequencies[key]) {\n    frequencies[key] = 0\n  }\n  frequencies[key]++\n}\n\n// If stats is true, statistics will be returned\nconst ngrams = function (sequence, n, startSymbol, endSymbol, stats) {\n  const result = []\n  frequencies = {}\n  nrOfNgrams = 0\n\n  if (!_.isArray(sequence)) {\n    sequence = tokenizer.tokenize(sequence)\n  }\n\n  const count = _.max([0, sequence.length - n + 1])\n\n  // Check for left padding\n  if (typeof startSymbol !== 'undefined' && startSymbol !== null) {\n    // Create an array of (n) start symbols\n    const blanks = []\n    for (let i = 0; i < n; i++) {\n      blanks.push(startSymbol)\n    }\n\n    // Create the left padding\n    for (let p = n - 1; p > 0; p--) {\n      // Create a tuple of (p) start symbols and (n - p) words\n      const ngram = blanks.slice(0, p).concat(sequence.slice(0, n - p))\n      result.push(ngram)\n      if (stats) {\n        countNgrams(ngram)\n      }\n    }\n  }\n\n  // Build the complete ngrams\n  for (let i = 0; i < count; i++) {\n    const ngram = sequence.slice(i, i + n)\n    result.push(ngram)\n    if (stats) {\n      countNgrams(ngram)\n    }\n  }\n\n  // Check for right padding\n  if (typeof endSymbol !== 'undefined' && endSymbol !== null) {\n    // Create an array of (n) end symbols\n    const blanks = []\n    for (let i = 0; i < n; i++) {\n      blanks.push(endSymbol)\n    }\n\n    // create the right padding\n    for (let p = n - 1; p > 0; p--) {\n      // Create a tuple of (p) start symbols and (n - p) words\n      const ngram = sequence.slice(sequence.length - p, sequence.length).concat(blanks.slice(0, n - p))\n      result.push(ngram)\n      if (stats) {\n        countNgrams(ngram)\n      }\n    }\n  }\n\n  if (stats) {\n    // Count frequencies\n    const Nr = {}\n    Object.keys(frequencies).forEach(function (key) {\n      if (!Nr[frequencies[key]]) {\n        Nr[frequencies[key]] = 0\n      }\n      Nr[frequencies[key]]++\n    })\n\n    // Return the ngrams AND statistics\n    return {\n      ngrams: result,\n      frequencies: frequencies,\n      Nr: Nr,\n      numberOfNgrams: nrOfNgrams\n    }\n  } else { // Do not break existing API of this module\n    return result\n  }\n}\n"
  },
  {
    "path": "lib/natural/ngrams/ngrams_zh.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst _ = require('underscore')\n\nexports.ngrams = function (sequence, n, startSymbol, endSymbol) {\n  return ngrams(sequence, n, startSymbol, endSymbol)\n}\n\nexports.bigrams = function (sequence, startSymbol, endSymbol) {\n  return ngrams(sequence, 2, startSymbol, endSymbol)\n}\n\nexports.trigrams = function (sequence, startSymbol, endSymbol) {\n  return ngrams(sequence, 3, startSymbol, endSymbol)\n}\n\nconst ngrams = function (sequence, n, startSymbol, endSymbol) {\n  const result = []\n\n  if (!_.isArray(sequence)) {\n    sequence = sequence.split('')\n  }\n\n  const count = _.max([0, sequence.length - n + 1])\n\n  // Check for left padding\n  if (typeof startSymbol !== 'undefined' && startSymbol !== null) {\n    // Create an array of (n) start symbols\n    const blanks = []\n    for (let i = 0; i < n; i++) {\n      blanks.push(startSymbol)\n    }\n\n    // Create the left padding\n    for (let p = n - 1; p > 0; p--) {\n      // Create a tuple of (p) start symbols and (n - p) words\n      result.push(blanks.slice(0, p).concat(sequence.slice(0, n - p)))\n    }\n  }\n\n  // Build the complete ngrams\n  for (let i = 0; i < count; i++) {\n    result.push(sequence.slice(i, i + n))\n  }\n\n  // Check for right padding\n  if (typeof endSymbol !== 'undefined' && endSymbol !== null) {\n    // Create an array of (n) end symbols\n    const blanks = []\n    for (let i = 0; i < n; i++) {\n      blanks.push(endSymbol)\n    }\n\n    // create the right padding\n    for (let p = n - 1; p > 0; p--) {\n      // Create a tuple of (p) start symbols and (n - p) words\n      result.push(sequence.slice(sequence.length - p, sequence.length).concat(blanks.slice(0, n - p)))\n    }\n  }\n\n  return result\n}\n"
  },
  {
    "path": "lib/natural/normalizers/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport function normalize (tokens: string | string[]): string[]\n// eslint-disable-next-line @typescript-eslint/naming-convention\nexport function normalizeJa (str: string): string\nexport function normalizeNo (str: string): string\nexport function normalizeSv (str: string): string\nexport function removeDiacritics (str: string): string\n\nexport class Converters {\n  alphabetFH: (str: string) => string\n  alphabetHF: (str: string) => string\n  numbersFH: (str: string) => string\n  numbersHF: (str: string) => string\n  punctuationFH: (str: string) => string\n  punctuationHF: (str: string) => string\n  symbolFH: (str: string) => string\n  symbolHF: (str: string) => string\n  purePunctuationFH: (str: string) => string\n  purePunctuationHF: (str: string) => string\n  katakanaFH: (str: string) => string\n  katakanaHF: (str: string) => string\n  static fixFullwidthKana: (str: string) => string\n  static normalize: (str: string) => string\n  hiraganaToKatakana (str: string): string\n  katakanaToHiragana (str: string): string\n}\n\ntype FixCompositeSymbolsTable = Record<string, string>\n"
  },
  {
    "path": "lib/natural/normalizers/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.normalize = require('./normalizer').normalizeTokens\nexports.normalizeJa = require('./normalizer_ja').normalizeJa\nexports.normalizeNo = require('./normalizer_no').removeDiacritics\nexports.normalizeSv = require('./normalizer_sv')\nexports.Converters = require('./normalizer_ja').Converters\nexports.removeDiacritics = require('./remove_diacritics')\n"
  },
  {
    "path": "lib/natural/normalizers/normalizer.js",
    "content": "/*\n Copyright (c) 2013, Kenneth Koch\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * The english normalizer will create a string in which all contractions are expanded to their\n * full meaning (i.e. \"we'll\" becomes \"we will\").\n *\n * It currently works off a conversion table and falls back to a set of rules.\n * Since it is applied first, the conversion table provides an \"override\" for the rules.\n **/\n// const replacer = require('../util/utils').replacer\n\nconst conversionTable = {\n  \"can't\": 'can not',\n  \"won't\": 'will not',\n  \"couldn't've\": 'could not have',\n  \"i'm\": 'I am',\n  \"how'd\": 'how did'\n}\n\nconst rules = [\n  { regex: /([azAZ]*)n'[tT]/g, output: '$1 not' },\n  { regex: /([azAZ]*)'[sS]/g, output: '$1 is' },\n  { regex: /([azAZ]*)'[lL][lL]/g, output: '$1 will' },\n  { regex: /([azAZ]*)'[rR][eE]/g, output: '$1 are' },\n  { regex: /([azAZ]*)'[vV][eE]/g, output: '$1 have' },\n  { regex: /([azAZ]*)'[dD]/g, output: '$1 would' }\n]\n\n// Accepts a list of tokens to expand.\nconst normalizeTokens = function (tokens) {\n  if (typeof tokens === 'string') {\n    tokens = [tokens]\n  }\n  let results = []\n  const ruleCount = rules.length\n  const numTokens = tokens.length\n  let i, token, r, rule\n\n  for (i = 0; i < numTokens; i++) {\n    token = tokens[i]\n    // Check the conversion table\n    if (conversionTable[token.toLowerCase()]) {\n      results = results.concat(conversionTable[token.toLowerCase()].split(/\\W+/))\n    } else { // Apply the rules\n      let matched = false\n      for (r = 0; r < ruleCount; r++) {\n        rule = rules[r]\n        if (token.match(rule.regex)) {\n          results = results.concat(token.replace(rule.regex, rule.output).split(/\\W+/))\n          matched = true\n          break\n        }\n      }\n      if (!matched) {\n        results.push(token)\n      }\n    }\n  }\n\n  return results\n}\n\n// export the relevant stuff.\nexports.normalizeTokens = normalizeTokens\n"
  },
  {
    "path": "lib/natural/normalizers/normalizer_ja.js",
    "content": "/*\n Copyright (c) 2012, Guillaume Marty\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * Normalize Japanese inputs and expose function to perform several conversions.\n *\n * Note: The space character is treated like a roman character as it usually\n *   has the same width as them in Japanese texts.\n *\n * \\@todo Replace characters range from ㈠ to ㉃, ㊀ to ㊰ and ㇰ to ㇿ.\n * \\@todo Lazy initializations of conversionTables and converters.\n * \\@todo Would fixHalfwidthKana be useful?\n *\n * Descriptions of functions exposed:\n * normalizeJapanese 「全角」英字・数字を「半角」、「半角」記・カタカナを「全角」に変換\n * converters.fullwidthToHalfwidth.alphabet    「全角」英字を「半角」に変換\n * converters.halfwidthToFullwidth.alphabet    「半角」英字を「全角」に変換\n * converters.fullwidthToHalfwidth.numbers     「全角」数字を「半角」に変換\n * converters.halfwidthToFullwidth.numbers     「半角」数字を「全角」に変換 「全角」スペースを「半角」\n * converters.fullwidthToHalfwidth.punctuation 「全角」記号を「半角」に変換 「半角」スペースを「全角」\n * converters.halfwidthToFullwidth.punctuation 「半角」記号を「全角」に変換\n * converters.fullwidthToHalfwidth.katakana    「全角カタカナ」を「半角カタカナ」に変換\n * converters.halfwidthToFullwidth.katakana    「半角カタカナ」を「全角カタカナ」に変換\n * converters.hiraganaToKatakana               「カタカナ」を「ひらがな」に変換\n * converters.katakanaToHiragana               「ひらがな」を「カタカナ」に変換\n */\n\nconst flip = require('../util/utils.js').flip\nconst merge = require('../util/utils.js').merge\nconst replacer = require('../util/utils.js').replacer\n\n// From http://fernweh.jp/b/mb_convert_kana_js/\nconst conversionTables = {\n  fullwidthToHalfwidth: {\n    alphabet: {\n      ａ: 'a',\n      ｂ: 'b',\n      ｃ: 'c',\n      ｄ: 'd',\n      ｅ: 'e',\n      ｆ: 'f',\n      ｇ: 'g',\n      ｈ: 'h',\n      ｉ: 'i',\n      ｊ: 'j',\n      ｋ: 'k',\n      ｌ: 'l',\n      ｍ: 'm',\n      ｎ: 'n',\n      ｏ: 'o',\n      ｐ: 'p',\n      ｑ: 'q',\n      ｒ: 'r',\n      ｓ: 's',\n      ｔ: 't',\n      ｕ: 'u',\n      ｖ: 'v',\n      ｗ: 'w',\n      ｘ: 'x',\n      ｙ: 'y',\n      ｚ: 'z',\n      Ａ: 'A',\n      Ｂ: 'B',\n      Ｃ: 'C',\n      Ｄ: 'D',\n      Ｅ: 'E',\n      Ｆ: 'F',\n      Ｇ: 'G',\n      Ｈ: 'H',\n      Ｉ: 'I',\n      Ｊ: 'J',\n      Ｋ: 'K',\n      Ｌ: 'L',\n      Ｍ: 'M',\n      Ｎ: 'N',\n      Ｏ: 'O',\n      Ｐ: 'P',\n      Ｑ: 'Q',\n      Ｒ: 'R',\n      Ｓ: 'S',\n      Ｔ: 'T',\n      Ｕ: 'U',\n      Ｖ: 'V',\n      Ｗ: 'W',\n      Ｘ: 'X',\n      Ｙ: 'Y',\n      Ｚ: 'Z',\n      '　': ' ' // Fullwidth space\n    },\n\n    numbers: {\n      '０': '0',\n      '１': '1',\n      '２': '2',\n      '３': '3',\n      '４': '4',\n      '５': '5',\n      '６': '6',\n      '７': '7',\n      '８': '8',\n      '９': '9'\n    },\n\n    symbol: {\n      '＿': '_',\n      '－': '-',\n      '，': ',',\n      '；': ';',\n      '：': ':',\n      '！': '!',\n      '？': '?',\n      '．': '.',\n      '（': '(',\n      '）': ')',\n      '［': '[',\n      '］': ']',\n      '｛': '{',\n      '｝': '}',\n      '＠': '@',\n      '＊': '*',\n      '＼': '\\\\',\n      '／': '/',\n      '＆': '&',\n      '＃': '#',\n      '％': '%',\n      '｀': '`',\n      '＾': '^',\n      '＋': '+',\n      '＜': '<',\n      '＝': '=',\n      '＞': '>',\n      '｜': '|',\n      // Never converted: '～': '~',\n      '≪': '«',\n      '≫': '»',\n      '─': '-',\n      '＄': '$',\n      '＂': '\"'\n    },\n\n    purePunctuation: {\n      '、': '､',\n      '。': '｡',\n      '・': '･',\n      '「': '｢',\n      '」': '｣'\n    },\n\n    punctuation: {},\n\n    katakana: {\n      ゛: 'ﾞ',\n      ゜: 'ﾟ',\n      ー: 'ｰ',\n\n      ヴ: 'ｳﾞ',\n      ガ: 'ｶﾞ',\n      ギ: 'ｷﾞ',\n      グ: 'ｸﾞ',\n      ゲ: 'ｹﾞ',\n      ゴ: 'ｺﾞ',\n      ザ: 'ｻﾞ',\n      ジ: 'ｼﾞ',\n      ズ: 'ｽﾞ',\n      ゼ: 'ｾﾞ',\n      ゾ: 'ｿﾞ',\n      ダ: 'ﾀﾞ',\n      ヂ: 'ﾁﾞ',\n      ヅ: 'ﾂﾞ',\n      デ: 'ﾃﾞ',\n      ド: 'ﾄﾞ',\n      バ: 'ﾊﾞ',\n      パ: 'ﾊﾟ',\n      ビ: 'ﾋﾞ',\n      ピ: 'ﾋﾟ',\n      ブ: 'ﾌﾞ',\n      プ: 'ﾌﾟ',\n      ベ: 'ﾍﾞ',\n      ペ: 'ﾍﾟ',\n      ボ: 'ﾎﾞ',\n      ポ: 'ﾎﾟ',\n\n      ァ: 'ｧ',\n      ア: 'ｱ',\n      ィ: 'ｨ',\n      イ: 'ｲ',\n      ゥ: 'ｩ',\n      ウ: 'ｳ',\n      ェ: 'ｪ',\n      エ: 'ｴ',\n      ォ: 'ｫ',\n      オ: 'ｵ',\n      カ: 'ｶ',\n      キ: 'ｷ',\n      ク: 'ｸ',\n      ケ: 'ｹ',\n      コ: 'ｺ',\n      サ: 'ｻ',\n      シ: 'ｼ',\n      ス: 'ｽ',\n      セ: 'ｾ',\n      ソ: 'ｿ',\n      タ: 'ﾀ',\n      チ: 'ﾁ',\n      ッ: 'ｯ',\n      ツ: 'ﾂ',\n      テ: 'ﾃ',\n      ト: 'ﾄ',\n      ナ: 'ﾅ',\n      ニ: 'ﾆ',\n      ヌ: 'ﾇ',\n      ネ: 'ﾈ',\n      ノ: 'ﾉ',\n      ハ: 'ﾊ',\n      ヒ: 'ﾋ',\n      フ: 'ﾌ',\n      ヘ: 'ﾍ',\n      ホ: 'ﾎ',\n      マ: 'ﾏ',\n      ミ: 'ﾐ',\n      ム: 'ﾑ',\n      メ: 'ﾒ',\n      モ: 'ﾓ',\n      ャ: 'ｬ',\n      ヤ: 'ﾔ',\n      ュ: 'ｭ',\n      ユ: 'ﾕ',\n      ョ: 'ｮ',\n      ヨ: 'ﾖ',\n      ラ: 'ﾗ',\n      リ: 'ﾘ',\n      ル: 'ﾙ',\n      レ: 'ﾚ',\n      ロ: 'ﾛ',\n      ワ: 'ﾜ',\n      ヲ: 'ｦ',\n      ン: 'ﾝ'\n    }\n  },\n\n  halfwidthToFullwidth: {}\n}\n\nconst fixFullwidthKana = {\n  ゝ゛: 'ゞ',\n  ヽ゛: 'ヾ',\n\n  う゛: 'ゔ',\n  か゛: 'が',\n  き゛: 'ぎ',\n  く゛: 'ぐ',\n  け゛: 'げ',\n  こ゛: 'ご',\n  さ゛: 'ざ',\n  し゛: 'じ',\n  す゛: 'ず',\n  せ゛: 'ぜ',\n  そ゛: 'ぞ',\n  た゛: 'だ',\n  ち゛: 'ぢ',\n  つ゛: 'づ',\n  て゛: 'で',\n  と゛: 'ど',\n  は゛: 'ば',\n  は゜: 'ぱ',\n  ひ゛: 'び',\n  ひ゜: 'ぴ',\n  ふ゛: 'ぶ',\n  ふ゜: 'ぷ',\n  へ゛: 'べ',\n  へ゜: 'ぺ',\n  ほ゛: 'ぼ',\n  ほ゜: 'ぽ',\n  っな: 'んな',\n  っに: 'んに',\n  っぬ: 'んぬ',\n  っね: 'んね',\n  っの: 'んの',\n\n  ウ゛: 'ヴ',\n  カ゛: 'ガ',\n  キ゛: 'ギ',\n  ク゛: 'グ',\n  ケ゛: 'ゲ',\n  コ゛: 'ゴ',\n  サ゛: 'ザ',\n  シ゛: 'ジ',\n  ス゛: 'ズ',\n  セ゛: 'ゼ',\n  ソ゛: 'ゾ',\n  タ゛: 'ダ',\n  チ゛: 'ヂ',\n  ツ゛: 'ヅ',\n  テ゛: 'デ',\n  ト゛: 'ド',\n  ハ゛: 'バ',\n  ハ゜: 'パ',\n  ヒ゛: 'ビ',\n  ヒ゜: 'ピ',\n  フ゛: 'ブ',\n  フ゜: 'プ',\n  ヘ゛: 'ベ',\n  ヘ゜: 'ペ',\n  ホ゛: 'ボ',\n  ホ゜: 'ポ',\n  ッナ: 'ンナ',\n  ッニ: 'ンニ',\n  ッヌ: 'ンヌ',\n  ッネ: 'ンネ',\n  ッノ: 'ンノ'\n}\n\nconst fixCompositeSymbolsTable = {\n  '㋀': '1月',\n  '㋁': '2月',\n  '㋂': '3月',\n  '㋃': '4月',\n  '㋄': '5月',\n  '㋅': '6月',\n  '㋆': '7月',\n  '㋇': '8月',\n  '㋈': '9月',\n  '㋉': '10月',\n  '㋊': '11月',\n  '㋋': '12月',\n\n  '㏠': '1日',\n  '㏡': '2日',\n  '㏢': '3日',\n  '㏣': '4日',\n  '㏤': '5日',\n  '㏥': '6日',\n  '㏦': '7日',\n  '㏧': '8日',\n  '㏨': '9日',\n  '㏩': '10日',\n  '㏪': '11日',\n  '㏫': '12日',\n  '㏬': '13日',\n  '㏭': '14日',\n  '㏮': '15日',\n  '㏯': '16日',\n  '㏰': '17日',\n  '㏱': '18日',\n  '㏲': '19日',\n  '㏳': '20日',\n  '㏴': '21日',\n  '㏵': '22日',\n  '㏶': '23日',\n  '㏷': '24日',\n  '㏸': '25日',\n  '㏹': '26日',\n  '㏺': '27日',\n  '㏻': '28日',\n  '㏼': '29日',\n  '㏽': '30日',\n  '㏾': '31日',\n\n  '㍘': '0点',\n  '㍙': '1点',\n  '㍚': '2点',\n  '㍛': '3点',\n  '㍜': '4点',\n  '㍝': '5点',\n  '㍞': '6点',\n  '㍟': '7点',\n  '㍠': '8点',\n  '㍡': '9点',\n  '㍢': '10点',\n  '㍣': '11点',\n  '㍤': '12点',\n  '㍥': '13点',\n  '㍦': '14点',\n  '㍧': '15点',\n  '㍨': '16点',\n  '㍩': '17点',\n  '㍪': '18点',\n  '㍫': '19点',\n  '㍬': '20点',\n  '㍭': '21点',\n  '㍮': '22点',\n  '㍯': '23点',\n  '㍰': '24点',\n\n  '㍻': '平成',\n  '㍼': '昭和',\n  '㍽': '大正',\n  '㍾': '明治',\n  '㍿': '株式会社',\n\n  '㌀': 'アパート',\n  '㌁': 'アルファ',\n  '㌂': 'アンペア',\n  '㌃': 'アール',\n  '㌄': 'イニング',\n  '㌅': 'インチ',\n  '㌆': 'ウオン',\n  '㌇': 'エスクード',\n  '㌈': 'エーカー',\n  '㌉': 'オンス',\n  '㌊': 'オーム',\n  '㌋': 'カイリ', // 海里\n  '㌌': 'カラット',\n  '㌍': 'カロリー',\n  '㌎': 'ガロン',\n  '㌏': 'ガンマ',\n  '㌐': 'ギガ',\n  '㌑': 'ギニー',\n  '㌒': 'キュリー',\n  '㌓': 'ギルダー',\n  '㌔': 'キロ',\n  '㌕': 'キログラム',\n  '㌖': 'キロメートル',\n  '㌗': 'キロワット',\n  '㌘': 'グラム',\n  '㌙': 'グラムトン',\n  '㌚': 'クルゼイロ',\n  '㌛': 'クローネ',\n  '㌜': 'ケース',\n  '㌝': 'コルナ',\n  '㌞': 'コーポ',\n  '㌟': 'サイクル',\n  '㌠': 'サンチーム',\n  '㌡': 'シリング',\n  '㌢': 'センチ',\n  '㌣': 'セント',\n  '㌤': 'ダース',\n  '㌥': 'デシ',\n  '㌦': 'ドル',\n  '㌧': 'トン',\n  '㌨': 'ナノ',\n  '㌩': 'ノット',\n  '㌪': 'ハイツ',\n  '㌫': 'パーセント',\n  '㌬': 'パーツ',\n  '㌭': 'バーレル',\n  '㌮': 'ピアストル',\n  '㌯': 'ピクル',\n  '㌰': 'ピコ',\n  '㌱': 'ビル',\n  '㌲': 'ファラッド',\n  '㌳': 'フィート',\n  '㌴': 'ブッシェル',\n  '㌵': 'フラン',\n  '㌶': 'ヘクタール',\n  '㌷': 'ペソ',\n  '㌸': 'ペニヒ',\n  '㌹': 'ヘルツ',\n  '㌺': 'ペンス',\n  '㌻': 'ページ',\n  '㌼': 'ベータ',\n  '㌽': 'ポイント',\n  '㌾': 'ボルト',\n  '㌿': 'ホン',\n  '㍀': 'ポンド',\n  '㍁': 'ホール',\n  '㍂': 'ホーン',\n  '㍃': 'マイクロ',\n  '㍄': 'マイル',\n  '㍅': 'マッハ',\n  '㍆': 'マルク',\n  '㍇': 'マンション',\n  '㍈': 'ミクロン',\n  '㍉': 'ミリ',\n  '㍊': 'ミリバール',\n  '㍋': 'メガ',\n  '㍌': 'メガトン',\n  '㍍': 'メートル',\n  '㍎': 'ヤード',\n  '㍏': 'ヤール',\n  '㍐': 'ユアン',\n  '㍑': 'リットル',\n  '㍒': 'リラ',\n  '㍓': 'ルピー',\n  '㍔': 'ルーブル',\n  '㍕': 'レム',\n  '㍖': 'レントゲン',\n  '㍗': 'ワット'\n}\n\n// punctuation is pure_punctuation\nconversionTables.fullwidthToHalfwidth.punctuation = merge(\n  conversionTables.fullwidthToHalfwidth.symbol,\n  conversionTables.fullwidthToHalfwidth.purePunctuation\n)\n\n// Fill in the conversion tables with the flipped tables.\nconversionTables.halfwidthToFullwidth.alphabet = flip(conversionTables.fullwidthToHalfwidth.alphabet)\nconversionTables.halfwidthToFullwidth.numbers = flip(conversionTables.fullwidthToHalfwidth.numbers)\nconversionTables.halfwidthToFullwidth.symbol = flip(conversionTables.fullwidthToHalfwidth.symbol)\nconversionTables.halfwidthToFullwidth.purePunctuation = flip(conversionTables.fullwidthToHalfwidth.purePunctuation)\nconversionTables.halfwidthToFullwidth.punctuation = flip(conversionTables.fullwidthToHalfwidth.punctuation)\nconversionTables.halfwidthToFullwidth.katakana = flip(conversionTables.fullwidthToHalfwidth.katakana)\n\n// Build the normalization table.\nconversionTables.normalize = merge(\n  conversionTables.fullwidthToHalfwidth.alphabet,\n  conversionTables.fullwidthToHalfwidth.numbers,\n  conversionTables.fullwidthToHalfwidth.symbol,\n  conversionTables.halfwidthToFullwidth.purePunctuation,\n  conversionTables.halfwidthToFullwidth.katakana\n)\n\nclass Converters {\n  alphabetFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.alphabet)(str)\n  }\n\n  numbersFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.numbers)(str)\n  }\n\n  symbolFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.symbol)(str)\n  }\n\n  purePunctuationFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.purePunctuation)(str)\n  }\n\n  punctuationFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.punctuation)(str)\n  }\n\n  katakanaFH (str) {\n    return replacer(conversionTables.fullwidthToHalfwidth.katakana)(str)\n  }\n\n  static fixFullwidthKana (str) {\n    return replacer(fixFullwidthKana)(str)\n  }\n\n  static normalize (str) {\n    return replacer(conversionTables.normalize)(str)\n  }\n\n  alphabetHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.alphabet)(str)\n  }\n\n  numbersHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.numbers)(str)\n  }\n\n  symbolHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.symbol)(str)\n  }\n\n  purePunctuationHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.purePunctuation)(str)\n  }\n\n  punctuationHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.punctuation)(str)\n  }\n\n  katakanaHF (str) {\n    return replacer(conversionTables.halfwidthToFullwidth.katakana)(str)\n  }\n\n  static fixCompositeSymbols (str) {\n    return replacer(fixCompositeSymbolsTable)(str)\n  }\n\n  /**\n   * Convert hiragana to fullwidth katakana.\n   * According to http://jsperf.com/converting-japanese, these implementations are\n   * faster than using lookup tables.\n   *\n   * @param {string} str A string.\n   * @return {string} A string not containing hiragana.\n   */\n  hiraganaToKatakana (str) {\n    str = this.katakanaHF(str)\n    str = Converters.fixFullwidthKana(str)\n\n    str = str.replace(/ゝ/g, 'ヽ')\n    str = str.replace(/ゞ/g, 'ヾ')\n    // str = str.replace(/?/g, '𛀀'); // Letter archaic E\n\n    str = str.replace(/[ぁ-ゖ]/g, function (str) {\n      return String.fromCharCode(str.charCodeAt(0) + 96)\n    })\n\n    return str\n  }\n\n  /**\n   * Convert katakana to hiragana.\n   *\n   * @param {string} str A string.\n   * @return {string} A string not containing katakana.\n   */\n  katakanaToHiragana (str) {\n    str = this.katakanaHF(str)\n    str = Converters.fixFullwidthKana(str)\n\n    str = str.replace(/ヽ/g, 'ゝ')\n    str = str.replace(/ヾ/g, 'ゞ')\n    // str = str.replace(/?/g, '𛀁'); // Letter archaic E\n\n    str = str.replace(/[ァ-ヶ]/g, function (str) {\n      return String.fromCharCode(str.charCodeAt(0) - 96)\n    })\n\n    return str\n  }\n}\n\n/**\n * Fix kana and apply the following processes;\n * * Replace repeat characters\n * * Alphabet to halfwidth\n * * Numbers to halfwidth\n * * Punctuation to fullwidth\n * * Katakana to fullwidth\n * * Fix fullwidth kana\n * * Replace composite symbols\n *\n * @param {string} str\n * @return {string}\n */\nconst normalizeJa = function (str) {\n  // Replace repeat characters.\n  str = str\n    .replace(/(..)々々/g, '$1$1')\n    .replace(/(.)々/g, '$1$1')\n\n  str = Converters.normalize(str)\n  str = Converters.fixFullwidthKana(str)\n\n  // Replace composite symbols.\n  str = Converters.fixCompositeSymbols(str)\n\n  return str\n}\n\nexports.normalizeJa = normalizeJa\nexports.Converters = Converters\n"
  },
  {
    "path": "lib/natural/normalizers/normalizer_no.js",
    "content": "/*\n Copyright (c) 2014, Kristoffer Brabrand\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * Remove commonly used diacritic marks from a string as these\n * are not used in a consistent manner. Leave only ä, ö, ü.\n */\nconst removeDiacritics = function (text) {\n  text = text.replace('à', 'a')\n  text = text.replace('À', 'A')\n  text = text.replace('á', 'a')\n  text = text.replace('Á', 'A')\n  text = text.replace('â', 'a')\n  text = text.replace('Â', 'A')\n  text = text.replace('ç', 'c')\n  text = text.replace('Ç', 'C')\n  text = text.replace('è', 'e')\n  text = text.replace('È', 'E')\n  text = text.replace('é', 'e')\n  text = text.replace('É', 'E')\n  text = text.replace('ê', 'e')\n  text = text.replace('Ê', 'E')\n  text = text.replace('î', 'i')\n  text = text.replace('Î', 'I')\n  text = text.replace('ñ', 'n')\n  text = text.replace('Ñ', 'N')\n  text = text.replace('ó', 'o')\n  text = text.replace('Ó', 'O')\n  text = text.replace('ô', 'o')\n  text = text.replace('Ô', 'O')\n  text = text.replace('û', 'u')\n  text = text.replace('Û', 'U')\n  text = text.replace('š', 's')\n  text = text.replace('Š', 'S')\n\n  return text\n}\n\n// export the relevant stuff.\nexports.removeDiacritics = removeDiacritics\n"
  },
  {
    "path": "lib/natural/normalizers/normalizer_sv.js",
    "content": "/*\n Copyright (c) 2017, Dogan Yazar\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * Remove commonly used diacritic marks from a string as these\n * are not used in a consistent manner. Leave only ä, ö, å.\n */\nconst removeDiacritics = function (text) {\n  text = text.replace('à', 'a')\n  text = text.replace('À', 'A')\n  text = text.replace('á', 'a')\n  text = text.replace('Á', 'A')\n  text = text.replace('è', 'e')\n  text = text.replace('È', 'E')\n  text = text.replace('é', 'e')\n  text = text.replace('É', 'E')\n\n  return text\n}\n\n// export the relevant stuff.\nexports.removeDiacritics = removeDiacritics\n"
  },
  {
    "path": "lib/natural/normalizers/remove_diacritics.js",
    "content": "/*\n Copyright (c) 2012, Alexy Maslennikov\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * Script to remove diacritics. Original source was taken from\n * http://lehelk.com/2011/05/06/script-to-remove-diacritics/\n */\nconst diacriticsRemovalMap = [\n  { 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 },\n  { base: 'AA', letters: /[\\uA732]/g },\n  { base: 'AE', letters: /[\\u00C6\\u01FC\\u01E2]/g },\n  { base: 'AO', letters: /[\\uA734]/g },\n  { base: 'AU', letters: /[\\uA736]/g },\n  { base: 'AV', letters: /[\\uA738\\uA73A]/g },\n  { base: 'AY', letters: /[\\uA73C]/g },\n  { base: 'B', letters: /[\\u0042\\u24B7\\uFF22\\u1E02\\u1E04\\u1E06\\u0243\\u0182\\u0181]/g },\n  { base: 'C', letters: /[\\u0043\\u24B8\\uFF23\\u0106\\u0108\\u010A\\u010C\\u00C7\\u1E08\\u0187\\u023B\\uA73E]/g },\n  { base: 'D', letters: /[\\u0044\\u24B9\\uFF24\\u1E0A\\u010E\\u1E0C\\u1E10\\u1E12\\u1E0E\\u0110\\u018B\\u018A\\u0189\\uA779]/g },\n  { base: 'DZ', letters: /[\\u01F1\\u01C4]/g },\n  { base: 'Dz', letters: /[\\u01F2\\u01C5]/g },\n  { 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 },\n  { base: 'F', letters: /[\\u0046\\u24BB\\uFF26\\u1E1E\\u0191\\uA77B]/g },\n  { base: 'G', letters: /[\\u0047\\u24BC\\uFF27\\u01F4\\u011C\\u1E20\\u011E\\u0120\\u01E6\\u0122\\u01E4\\u0193\\uA7A0\\uA77D\\uA77E]/g },\n  { base: 'H', letters: /[\\u0048\\u24BD\\uFF28\\u0124\\u1E22\\u1E26\\u021E\\u1E24\\u1E28\\u1E2A\\u0126\\u2C67\\u2C75\\uA78D]/g },\n  { base: 'I', letters: /[\\u0049\\u24BE\\uFF29\\u00CC\\u00CD\\u00CE\\u0128\\u012A\\u012C\\u0130\\u00CF\\u1E2E\\u1EC8\\u01CF\\u0208\\u020A\\u1ECA\\u012E\\u1E2C\\u0197]/g },\n  { base: 'J', letters: /[\\u004A\\u24BF\\uFF2A\\u0134\\u0248]/g },\n  { base: 'K', letters: /[\\u004B\\u24C0\\uFF2B\\u1E30\\u01E8\\u1E32\\u0136\\u1E34\\u0198\\u2C69\\uA740\\uA742\\uA744\\uA7A2]/g },\n  { base: 'L', letters: /[\\u004C\\u24C1\\uFF2C\\u013F\\u0139\\u013D\\u1E36\\u1E38\\u013B\\u1E3C\\u1E3A\\u0141\\u023D\\u2C62\\u2C60\\uA748\\uA746\\uA780]/g },\n  { base: 'LJ', letters: /[\\u01C7]/g },\n  { base: 'Lj', letters: /[\\u01C8]/g },\n  { base: 'M', letters: /[\\u004D\\u24C2\\uFF2D\\u1E3E\\u1E40\\u1E42\\u2C6E\\u019C]/g },\n  { base: 'N', letters: /[\\u004E\\u24C3\\uFF2E\\u01F8\\u0143\\u00D1\\u1E44\\u0147\\u1E46\\u0145\\u1E4A\\u1E48\\u0220\\u019D\\uA790\\uA7A4]/g },\n  { base: 'NJ', letters: /[\\u01CA]/g },\n  { base: 'Nj', letters: /[\\u01CB]/g },\n  { 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 },\n  { base: 'OE', letters: /[\\u0152]/g },\n  { base: 'OI', letters: /[\\u01A2]/g },\n  { base: 'OO', letters: /[\\uA74E]/g },\n  { base: 'OU', letters: /[\\u0222]/g },\n  { base: 'P', letters: /[\\u0050\\u24C5\\uFF30\\u1E54\\u1E56\\u01A4\\u2C63\\uA750\\uA752\\uA754]/g },\n  { base: 'Q', letters: /[\\u0051\\u24C6\\uFF31\\uA756\\uA758\\u024A]/g },\n  { base: 'R', letters: /[\\u0052\\u24C7\\uFF32\\u0154\\u1E58\\u0158\\u0210\\u0212\\u1E5A\\u1E5C\\u0156\\u1E5E\\u024C\\u2C64\\uA75A\\uA7A6\\uA782]/g },\n  { base: 'S', letters: /[\\u0053\\u24C8\\uFF33\\u1E9E\\u015A\\u1E64\\u015C\\u1E60\\u0160\\u1E66\\u1E62\\u1E68\\u0218\\u015E\\u2C7E\\uA7A8\\uA784]/g },\n  { base: 'T', letters: /[\\u0054\\u24C9\\uFF34\\u1E6A\\u0164\\u1E6C\\u021A\\u0162\\u1E70\\u1E6E\\u0166\\u01AC\\u01AE\\u023E\\uA786]/g },\n  { base: 'TZ', letters: /[\\uA728]/g },\n  { 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 },\n  { base: 'V', letters: /[\\u0056\\u24CB\\uFF36\\u1E7C\\u1E7E\\u01B2\\uA75E\\u0245]/g },\n  { base: 'VY', letters: /[\\uA760]/g },\n  { base: 'W', letters: /[\\u0057\\u24CC\\uFF37\\u1E80\\u1E82\\u0174\\u1E86\\u1E84\\u1E88\\u2C72]/g },\n  { base: 'X', letters: /[\\u0058\\u24CD\\uFF38\\u1E8A\\u1E8C]/g },\n  { base: 'Y', letters: /[\\u0059\\u24CE\\uFF39\\u1EF2\\u00DD\\u0176\\u1EF8\\u0232\\u1E8E\\u0178\\u1EF6\\u1EF4\\u01B3\\u024E\\u1EFE]/g },\n  { base: 'Z', letters: /[\\u005A\\u24CF\\uFF3A\\u0179\\u1E90\\u017B\\u017D\\u1E92\\u1E94\\u01B5\\u0224\\u2C7F\\u2C6B\\uA762]/g },\n  { 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 },\n  { base: 'aa', letters: /[\\uA733]/g },\n  { base: 'ae', letters: /[\\u00E6\\u01FD\\u01E3]/g },\n  { base: 'ao', letters: /[\\uA735]/g },\n  { base: 'au', letters: /[\\uA737]/g },\n  { base: 'av', letters: /[\\uA739\\uA73B]/g },\n  { base: 'ay', letters: /[\\uA73D]/g },\n  { base: 'b', letters: /[\\u0062\\u24D1\\uFF42\\u1E03\\u1E05\\u1E07\\u0180\\u0183\\u0253]/g },\n  { base: 'c', letters: /[\\u0063\\u24D2\\uFF43\\u0107\\u0109\\u010B\\u010D\\u00E7\\u1E09\\u0188\\u023C\\uA73F\\u2184]/g },\n  { base: 'd', letters: /[\\u0064\\u24D3\\uFF44\\u1E0B\\u010F\\u1E0D\\u1E11\\u1E13\\u1E0F\\u0111\\u018C\\u0256\\u0257\\uA77A]/g },\n  { base: 'dz', letters: /[\\u01F3\\u01C6]/g },\n  { 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 },\n  { base: 'f', letters: /[\\u0066\\u24D5\\uFF46\\u1E1F\\u0192\\uA77C]/g },\n  { base: 'g', letters: /[\\u0067\\u24D6\\uFF47\\u01F5\\u011D\\u1E21\\u011F\\u0121\\u01E7\\u0123\\u01E5\\u0260\\uA7A1\\u1D79\\uA77F]/g },\n  { base: 'h', letters: /[\\u0068\\u24D7\\uFF48\\u0125\\u1E23\\u1E27\\u021F\\u1E25\\u1E29\\u1E2B\\u1E96\\u0127\\u2C68\\u2C76\\u0265]/g },\n  { base: 'hv', letters: /[\\u0195]/g },\n  { base: 'i', letters: /[\\u0069\\u24D8\\uFF49\\u00EC\\u00ED\\u00EE\\u0129\\u012B\\u012D\\u00EF\\u1E2F\\u1EC9\\u01D0\\u0209\\u020B\\u1ECB\\u012F\\u1E2D\\u0268\\u0131]/g },\n  { base: 'j', letters: /[\\u006A\\u24D9\\uFF4A\\u0135\\u01F0\\u0249]/g },\n  { base: 'k', letters: /[\\u006B\\u24DA\\uFF4B\\u1E31\\u01E9\\u1E33\\u0137\\u1E35\\u0199\\u2C6A\\uA741\\uA743\\uA745\\uA7A3]/g },\n  { base: 'l', letters: /[\\u006C\\u24DB\\uFF4C\\u0140\\u013A\\u013E\\u1E37\\u1E39\\u013C\\u1E3D\\u1E3B\\u017F\\u0142\\u019A\\u026B\\u2C61\\uA749\\uA781\\uA747]/g },\n  { base: 'lj', letters: /[\\u01C9]/g },\n  { base: 'm', letters: /[\\u006D\\u24DC\\uFF4D\\u1E3F\\u1E41\\u1E43\\u0271\\u026F]/g },\n  { base: 'n', letters: /[\\u006E\\u24DD\\uFF4E\\u01F9\\u0144\\u00F1\\u1E45\\u0148\\u1E47\\u0146\\u1E4B\\u1E49\\u019E\\u0272\\u0149\\uA791\\uA7A5]/g },\n  { base: 'nj', letters: /[\\u01CC]/g },\n  { 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 },\n  { base: 'oe', letters: /[\\u0153]/g },\n  { base: 'oi', letters: /[\\u01A3]/g },\n  { base: 'ou', letters: /[\\u0223]/g },\n  { base: 'oo', letters: /[\\uA74F]/g },\n  { base: 'p', letters: /[\\u0070\\u24DF\\uFF50\\u1E55\\u1E57\\u01A5\\u1D7D\\uA751\\uA753\\uA755]/g },\n  { base: 'q', letters: /[\\u0071\\u24E0\\uFF51\\u024B\\uA757\\uA759]/g },\n  { base: 'r', letters: /[\\u0072\\u24E1\\uFF52\\u0155\\u1E59\\u0159\\u0211\\u0213\\u1E5B\\u1E5D\\u0157\\u1E5F\\u024D\\u027D\\uA75B\\uA7A7\\uA783]/g },\n  { base: 's', letters: /[\\u0073\\u24E2\\uFF53\\u00DF\\u015B\\u1E65\\u015D\\u1E61\\u0161\\u1E67\\u1E63\\u1E69\\u0219\\u015F\\u023F\\uA7A9\\uA785\\u1E9B]/g },\n  { base: 't', letters: /[\\u0074\\u24E3\\uFF54\\u1E6B\\u1E97\\u0165\\u1E6D\\u021B\\u0163\\u1E71\\u1E6F\\u0167\\u01AD\\u0288\\u2C66\\uA787]/g },\n  { base: 'tz', letters: /[\\uA729]/g },\n  { 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 },\n  { base: 'v', letters: /[\\u0076\\u24E5\\uFF56\\u1E7D\\u1E7F\\u028B\\uA75F\\u028C]/g },\n  { base: 'vy', letters: /[\\uA761]/g },\n  { base: 'w', letters: /[\\u0077\\u24E6\\uFF57\\u1E81\\u1E83\\u0175\\u1E87\\u1E85\\u1E98\\u1E89\\u2C73]/g },\n  { base: 'x', letters: /[\\u0078\\u24E7\\uFF58\\u1E8B\\u1E8D]/g },\n  { base: 'y', letters: /[\\u0079\\u24E8\\uFF59\\u1EF3\\u00FD\\u0177\\u1EF9\\u0233\\u1E8F\\u00FF\\u1EF7\\u1E99\\u1EF5\\u01B4\\u024F\\u1EFF]/g },\n  { base: 'z', letters: /[\\u007A\\u24E9\\uFF5A\\u017A\\u1E91\\u017C\\u017E\\u1E93\\u1E95\\u01B6\\u0225\\u0240\\u2C6C\\uA763]/g }\n]\n\nmodule.exports = function (str) {\n  const rules = diacriticsRemovalMap\n  for (let i = 0; i < rules.length; i++) {\n    str = str.replace(rules[i].letters, rules[i].base)\n  }\n  return str\n}\n"
  },
  {
    "path": "lib/natural/phonetics/dm_soundex.js",
    "content": "/*\nCopyright (c) 2012, Alexy Maslenninkov\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Phonetic = require('./phonetic')\n\n/*\n * Daitch-Mokotoff Soundex Coding\n *\n * The Daitch-Mokotoff Soundex System was created by Randy Daitch and Gary\n * Mokotoff of the Jewish Genealogical Society because they concluded the system\n * developed by Robert Russell in 1918, and in use today by the U.S. National\n * Archives and Records Administration (NARA) does not apply well to many Slavic\n * and Yiddish surnames.  It also includes refinements that are independent of\n * ethnic considerations.\n *\n * The rules for converting surnames into D-M Code numbers are listed below.\n * They are followed by the coding chart.\n *\n * 1. Names are coded to six digits, each digit representing a sound listed in\n * the coding chart (below).\n *\n * 2. When a name lacks enough coded sounds for six digits, use zeros to fill to\n * six digits. GOLDEN which has only four coded sounds [G-L-D-N] is coded as\n * 583600.\n *\n * 3. The letters A, E, I, O, U, J, and Y are always coded at the beginning of a\n * name as in Alpert 087930. In any other situation, they are ignored except\n * when two of them form a pair and the pair comes before a vowel, as in Breuer\n * 791900 but not Freud.\n *\n * 4. The letter H is coded at the beginning of a name, as in Haber 579000, or\n * preceding a vowel, as in Manheim 665600, otherwise it is not coded.\n *\n * 5. When adjacent sounds can combine to form a larger sound, they are given\n * the code number of the larger sound.  Mintz which is not coded MIN-T-Z but\n * MIN-TZ 664000.\n *\n * 6. When adjacent letters have the same code number, they are coded as one\n * sound, as in TOPF, which is not coded TO-P-F 377000 but TO-PF 370000.\n * Exceptions to this rule are the letter combinations MN and NM, whose letters\n * are coded separately, as in Kleinman, which is coded 586660 not 586600.\n *\n * 7. When a surname consists or more than one word, it is coded as if one word,\n * such as Ben Aron which is treated as Benaron.\n *\n * 8. Several letter and letter combinations pose the problem that they may\n * sound in one of two ways.  The letter and letter combinations CH, CK, C, J,\n * and RS are assigned two possible code numbers.\n *\n * For more info, see http://www.jewishgen.org/InfoFiles/soundex.html\n */\n\n/**\n * D-M transformation table in the form of finite-state machine.\n * Every element of the table having member with zero index represents\n * legal FSM state; every non-zero key is the transition rule.\n *\n * Every legal state comprises tree values chosen according to the position\n * of the letter combination in the word:\n *   0: start of a word;\n *   1: before a vowel;\n *   2: any other situation.\n */\n\n/* jscpd:ignore-start */\nconst codes = {\n  A: {\n    0: [0, -1, -1],\n    I: [[0, 1, -1]],\n    J: [[0, 1, -1]],\n    Y: [[0, 1, -1]],\n    U: [[0, 7, -1]]\n  },\n  B: [[7, 7, 7]],\n  C: {\n    0: [5, 5, 5],\n    Z: { 0: [4, 4, 4], S: [[4, 4, 4]] },\n    S: { 0: [4, 4, 4], Z: [[4, 4, 4]] },\n    K: [[5, 5, 5], [45, 45, 45]],\n    H: { 0: [5, 5, 5], S: [[5, 54, 54]] }\n  },\n  D: {\n    0: [3, 3, 3],\n    T: [[3, 3, 3]],\n    Z: { 0: [4, 4, 4], H: [[4, 4, 4]], S: [[4, 4, 4]] },\n    S: { 0: [4, 4, 4], H: [[4, 4, 4]], Z: [[4, 4, 4]] },\n    R: { S: [[4, 4, 4]], Z: [[4, 4, 4]] }\n  },\n  E: {\n    0: [0, -1, -1],\n    I: [[0, 1, -1]],\n    J: [[0, 1, -1]],\n    Y: [[0, 1, -1]],\n    U: [[1, 1, -1]],\n    W: [[1, 1, -1]]\n  },\n  F: {\n    0: [7, 7, 7],\n    B: [[7, 7, 7]]\n  },\n  G: [[5, 5, 5]],\n  H: [[5, 5, -1]],\n  I: {\n    0: [0, -1, -1],\n    A: [[1, -1, -1]],\n    E: [[1, -1, -1]],\n    O: [[1, -1, -1]],\n    U: [[1, -1, -1]]\n  },\n  J: [[4, 4, 4]],\n  K: {\n    0: [5, 5, 5],\n    H: [[5, 5, 5]],\n    S: [[5, 54, 54]]\n  },\n  L: [[8, 8, 8]],\n  M: {\n    0: [6, 6, 6],\n    N: [[66, 66, 66]]\n  },\n  N: {\n    0: [6, 6, 6],\n    M: [[66, 66, 66]]\n  },\n  O: {\n    0: [0, -1, -1],\n    I: [[0, 1, -1]],\n    J: [[0, 1, -1]],\n    Y: [[0, 1, -1]]\n  },\n  P: {\n    0: [7, 7, 7],\n    F: [[7, 7, 7]],\n    H: [[7, 7, 7]]\n  },\n  Q: [[5, 5, 5]],\n  R: {\n    0: [9, 9, 9],\n    Z: [[94, 94, 94], [94, 94, 94]],\n    S: [[94, 94, 94], [94, 94, 94]]\n  },\n  S: {\n    0: [4, 4, 4],\n    Z: { 0: [4, 4, 4], T: [[2, 43, 43]], C: { Z: [[2, 4, 4]], S: [[2, 4, 4]] }, D: [[2, 43, 43]] },\n    D: [[2, 43, 43]],\n    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]] } } },\n    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]] } },\n    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]] }\n  },\n  T: {\n    0: [3, 3, 3],\n    C: { 0: [4, 4, 4], H: [[4, 4, 4]] },\n    Z: { 0: [4, 4, 4], S: [[4, 4, 4]] },\n    S: { 0: [4, 4, 4], Z: [[4, 4, 4]], H: [[4, 4, 4]], C: { H: [[4, 4, 4]] } },\n    T: { S: { 0: [4, 4, 4], Z: [[4, 4, 4]], C: { H: [[4, 4, 4]] } }, C: { H: [[4, 4, 4]] }, Z: [[4, 4, 4]] },\n    H: [[3, 3, 3]],\n    R: { Z: [[4, 4, 4]], S: [[4, 4, 4]] }\n  },\n  U: {\n    0: [0, -1, -1],\n    E: [[0, -1, -1]],\n    I: [[0, 1, -1]],\n    J: [[0, 1, -1]],\n    Y: [[0, 1, -1]]\n  },\n  V: [[7, 7, 7]],\n  W: [[7, 7, 7]],\n  X: [[5, 54, 54]],\n  Y: [[1, -1, -1]],\n  Z: {\n    0: [4, 4, 4],\n    D: { 0: [2, 43, 43], Z: { 0: [2, 4, 4], H: [[2, 4, 4]] } },\n    H: { 0: [4, 4, 4], D: { 0: [2, 43, 43], Z: { H: [[2, 4, 4]] } } },\n    S: { 0: [4, 4, 4], H: [[4, 4, 4]], C: { H: [[4, 4, 4]] } }\n  }\n}\n/* jscpd:ignore-end */\n\nclass SoundExDM extends Phonetic {\n  process (word, codeLength) {\n    codeLength = codeLength || 6\n    word = word.toUpperCase()\n    let output = ''\n\n    let pos = 0; let lastCode = -1\n    while (pos < word.length) {\n      const substr = word.slice(pos)\n      const rules = this.findRules(substr)\n\n      let code\n      if (pos === 0) {\n        // at the beginning of the word\n        code = rules.mapping[0]\n      } else if (substr[rules.length] && this.findRules(substr[rules.length]).mapping[0] === 0) {\n        // before a vowel\n        code = rules.mapping[1]\n      } else {\n        // any other situation\n        code = rules.mapping[2]\n      }\n\n      if ((code !== -1) && (code !== lastCode)) output += code\n      lastCode = code\n      pos += rules.length\n    }\n\n    return this.normalizeLength(output, codeLength)\n  }\n\n  findRules (str) {\n    let state = codes[str[0]]\n    let legalState = state || [[-1, -1, -1]]\n    let charsInvolved = 1\n\n    for (let offs = 1; offs < str.length; offs++) {\n      if (!state || !state[str[offs]]) break\n\n      state = state[str[offs]]\n      if (state[0]) {\n        legalState = state\n        charsInvolved = offs + 1\n      }\n    }\n\n    return {\n      length: charsInvolved,\n      mapping: legalState[0]\n    }\n  }\n\n  /**\n   * Pad right with zeroes or cut excess symbols to fit length\n   */\n  normalizeLength (token, length) {\n    length = length || 6\n    if (token.length < length) {\n      token += (new Array(length - token.length + 1)).join('0')\n    }\n    return token.slice(0, length)\n  }\n}\n\nmodule.exports = SoundExDM\n"
  },
  {
    "path": "lib/natural/phonetics/double_metaphone.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Phonetic = require('./phonetic')\n\nclass DoubleMetaphone extends Phonetic {\n  isVowel (c) {\n    return c && c.match(/[aeiouy]/i)\n  }\n\n  process (token, maxLength) {\n    // For the functions that live here in the process method\n    const self = this\n\n    token = token.toUpperCase()\n    let primary = ''; let secondary = ''\n    let pos = 0\n    maxLength = maxLength || 32\n\n    const san = (token.substring(0, 3) === 'SAN')\n    const startsWithVowel = this.isVowel(token[0])\n    const slavoGermanic = token.match(/(W|K|CZ|WITZ)/)\n\n    if (subMatch(0, 2, ['GN', 'KN', 'PN', 'WR', 'PS'])) {\n      pos++\n    }\n\n    while (pos < token.length) {\n      switch (token[pos]) {\n        case 'A': case 'E': case 'I': case 'O': case 'U': case 'Y':\n        case 'Ê': case 'É': case 'À':\n          if (pos === 0) { add('A') }\n          break\n        case 'B':\n          addCompressedDouble('B', 'P')\n          break\n        case 'C':\n          handleC()\n          break\n        case 'Ç':\n          add('S')\n          break\n        case 'D':\n          handleD()\n          break\n        case 'F': case 'K': case 'N':\n          addCompressedDouble(token[pos])\n          break\n        case 'G':\n          handleG()\n          break\n        case 'H':\n          handleH()\n          break\n        case 'J':\n          handleJ()\n          break\n        case 'L':\n          handleL()\n          break\n        case 'M':\n          handleM()\n          break\n        case 'Ñ':\n          add('N')\n          break\n        case 'P':\n          handleP()\n          break\n        case 'Q':\n          addCompressedDouble('Q', 'K')\n          break\n        case 'R':\n          handleR()\n          break\n        case 'S':\n          handleS()\n          break\n        case 'T':\n          handleT()\n          break\n        case 'V':\n          addCompressedDouble('V', 'F')\n          break\n        case 'W':\n          handleW()\n          break\n        case 'X':\n          handleX()\n          break\n        case 'Z':\n          handleZ()\n          break\n      }\n\n      if (primary.length >= maxLength && secondary.length >= maxLength) {\n        break\n      }\n\n      pos++\n    }\n\n    return [truncate(primary, maxLength), truncate(secondary, maxLength)]\n\n    function subMatch (startOffset, stopOffset, terms) {\n      return subMatchAbsolute(pos + startOffset, pos + stopOffset, terms)\n    }\n\n    function subMatchAbsolute (startOffset, stopOffset, terms) {\n      return terms.indexOf(token.substring(startOffset, stopOffset)) > -1\n    }\n\n    function truncate (string, length) {\n      if (string.length >= length) { string = string.substring(0, length) }\n\n      return string\n    }\n\n    function addSecondary (primaryAppendage, secondaryAppendage) {\n      primary += primaryAppendage\n      secondary += secondaryAppendage\n    }\n\n    function add (primaryAppendage) {\n      addSecondary(primaryAppendage, primaryAppendage)\n    }\n\n    function addCompressedDouble (c, encoded) {\n      if (token[pos + 1] === c) {\n        pos++\n      }\n      add(encoded || c)\n    }\n\n    function handleC () {\n      if ((pos >= 1 && !self.isVowel(token[pos - 2]) &&\n        token[pos - 1] === 'A' && token[pos + 1] === 'H' &&\n        token[pos + 2] !== 'I') ||\n        subMatch(-2, 4, ['BACHER', 'MACHER'])) {\n        add('K')\n        pos++\n      } else if (pos === 0 && token.substring(1, 6) === 'EASAR') {\n        add('S')\n        add('S')\n        add('R')\n        pos += 6\n      } else if (token.substring(pos + 1, pos + 4) === 'HIA') {\n        add('K')\n        pos++\n      } else if (token[pos + 1] === 'H') {\n        if (pos > 0 && token.substring(pos + 2, pos + 4) === 'AE') {\n          addSecondary('K', 'X')\n          pos++\n        } else if (pos === 0 &&\n                          (subMatch(1, 6, ['HARAC', 'HARIS']) ||\n                              subMatch(1, 4, ['HOR', 'HUM', 'HIA', 'HEM'])) &&\n                          token.substring(pos + 1, pos + 5) !== 'HORE') {\n          add('K')\n          pos++\n        } else {\n          if ((subMatchAbsolute(0, 3, ['VAN', 'VON']) || token.substring(0, 3) === 'SCH') ||\n                      subMatch(-2, 4, ['ORCHES', 'ARCHIT', 'ORCHID']) ||\n                      subMatch(2, 3, ['T', 'S']) ||\n                      ((subMatch(-1, 0, ['A', 'O', 'U', 'E']) || pos === 0) &&\n                          subMatch(2, 3, ['B', 'F', 'H', 'L', 'M', 'N', 'R', 'V', 'W']))) {\n            add('K')\n          } else if (pos > 0) {\n            if (token.substring(0, 2) === 'MC') {\n              add('K')\n            } else {\n              addSecondary('X', 'K')\n            }\n          } else {\n            add('X')\n          }\n          pos++\n        }\n      } else if (token.substring(pos, pos + 2) === 'CZ' &&\n                  token.substring(pos - 2, pos + 1) !== 'WICZ') {\n        addSecondary('S', 'X')\n        pos++\n      } else if (token.substring(pos, pos + 3) === 'CIA') {\n        add('X')\n        pos += 2\n      } else if (token[pos + 1] === 'C' && pos !== 1 && token[0] !== 'M') {\n        if (['I', 'E', 'H'].indexOf(token[pos + 2]) > -1 &&\n                      token.substring(pos + 2, pos + 4) !== 'HU') {\n          if ((pos === 1 && token[pos - 1] === 'A') ||\n                subMatch(-1, 4, ['UCCEE', 'UCCES'])) {\n            add('KS')\n          } else {\n            add('X')\n          }\n          pos += 2\n        } else {\n          add('K')\n          pos++\n        }\n      } else if (['K', 'G', 'Q'].indexOf(token[pos + 1]) > -1) {\n        add('K')\n        pos++\n      } else if (['E', 'I', 'Y'].indexOf(token[pos + 1]) > -1) {\n        if (subMatch(1, 3, ['IA', 'IE', 'IO'])) {\n          addSecondary('S', 'X')\n        } else {\n          add('S')\n        }\n        pos++\n      } else {\n        add('K')\n        if (token[pos + 1] === ' ' && ['C', 'Q', 'G'].indexOf(token[pos + 2])) {\n          pos += 2\n        } else if (['C', 'K', 'Q'].indexOf(token[pos + 1]) > -1 &&\n                      !subMatch(1, 3, ['CE', 'CI'])) {\n          pos++\n        }\n      }\n    }\n\n    function handleD () {\n      if (token[pos + 1] === 'G') {\n        if (['I', 'E', 'Y'].indexOf(token[pos + 2]) > -1) {\n          add('J')\n          pos += 2\n        } else {\n          add('TK')\n          pos++\n        }\n      } else if (token[pos + 1] === 'T') {\n        add('T')\n        pos++\n      } else { addCompressedDouble('D', 'T') }\n    }\n\n    function handleG () {\n      if (token[pos + 1] === 'H') {\n        if (pos > 0 && !self.isVowel(token[pos - 1])) {\n          add('K')\n          pos++\n        } else if (pos === 0) {\n          if (token[pos + 2] === 'I') {\n            add('J')\n          } else {\n            add('K')\n          }\n          pos++\n        } else if (pos > 1 &&\n                  (['B', 'H', 'D'].indexOf(token[pos - 2]) > -1 ||\n                      ['B', 'H', 'D'].indexOf(token[pos - 3]) > -1 ||\n                      ['B', 'H'].indexOf(token[pos - 4]) > -1)) {\n          pos++\n        } else {\n          if (pos > 2 &&\n                          token[pos - 1] === 'U' &&\n                          ['C', 'G', 'L', 'R', 'T'].indexOf(token[pos - 3]) > -1) {\n            add('F')\n          } else if (token[pos - 1] !== 'I') {\n            add('K')\n          }\n\n          pos++\n        }\n      } else if (token[pos + 1] === 'N') {\n        if (pos === 1 && startsWithVowel && !slavoGermanic) {\n          addSecondary('KN', 'N')\n        } else {\n          if (token.substring(pos + 2, pos + 4) !== 'EY' &&\n                          (token[pos + 1] !== 'Y' &&\n                              !slavoGermanic)) {\n            addSecondary('N', 'KN')\n          } else { add('KN') }\n        }\n        pos++\n      } else if (token.substring(pos + 1, pos + 3) === 'LI' && !slavoGermanic) {\n        addSecondary('KL', 'L')\n        pos++\n      } else if (pos === 0 && (token[pos + 1] === 'Y' ||\n                  subMatch(1, 3, ['ES', 'EP', 'EB', 'EL', 'EY', 'IB', 'IL', 'IN', 'IE', 'EI', 'ER']))) {\n        addSecondary('K', 'J')\n      } else {\n        addCompressedDouble('G', 'K')\n      }\n    }\n\n    function handleH () {\n      // keep if starts a word or is surrounded by vowels\n      if ((pos === 0 || self.isVowel(token[pos - 1])) && self.isVowel(token[pos + 1])) {\n        add('H')\n        pos++\n      }\n    }\n\n    function handleJ () {\n      const jose = (token.substring(pos + 1, pos + 4) === 'OSE')\n\n      if (san || jose) {\n        if ((pos === 0 && token[pos + 4] === ' ') ||\n                      san) {\n          add('H')\n        } else { add('J', 'H') }\n      } else {\n        if (pos === 0/* && !jose */) {\n          addSecondary('J', 'A')\n        } else if (self.isVowel(token[pos - 1]) && !slavoGermanic &&\n                      (token[pos + 1] === 'A' || token[pos + 1] === 'O')) {\n          addSecondary('J', 'H')\n        } else if (pos === token.length - 1) {\n          addSecondary('J', ' ')\n        } else { addCompressedDouble('J') }\n      }\n    }\n\n    function handleL () {\n      if (token[pos + 1] === 'L') {\n        if (pos === token.length - 3 && (\n          subMatch(-1, 3, ['ILLO', 'ILLA', 'ALLE']) || (\n            token.substring(pos - 1, pos + 3) === 'ALLE' &&\n            (subMatch(-2, -1, ['AS', 'OS']) > -1 ||\n            ['A', 'O'].indexOf(token[token.length - 1]) > -1)))) {\n          addSecondary('L', '')\n          pos++\n          return\n        }\n        pos++\n      }\n      add('L')\n    }\n\n    function handleM () {\n      addCompressedDouble('M')\n      if (token[pos - 1] === 'U' && token[pos + 1] === 'B' &&\n        ((pos === token.length - 2 || token.substring(pos + 2, pos + 4) === 'ER'))) { pos++ }\n    }\n\n    function handleP () {\n      if (token[pos + 1] === 'H') {\n        add('F')\n        pos++\n      } else {\n        addCompressedDouble('P')\n        if (token[pos + 1] === 'B') {\n          pos++\n        }\n      }\n    }\n\n    function handleR () {\n      if (pos === token.length - 1 && !slavoGermanic &&\n        token.substring(pos - 2, pos) === 'IE' &&\n        !subMatch(-4, -3, ['ME', 'MA'])) {\n        addSecondary('', 'R')\n      } else {\n        addCompressedDouble('R')\n      }\n    }\n\n    function handleS () {\n      if (pos === 0 && token.substring(0, 5) === 'SUGAR') {\n        addSecondary('X', 'S')\n      } else if (token[pos + 1] === 'H') {\n        if (subMatch(2, 5, ['EIM', 'OEK', 'OLM', 'OLZ'])) {\n          add('S')\n        } else {\n          add('X')\n        }\n        pos++\n      } else if (subMatch(1, 3, ['IO', 'IA'])) {\n        if (slavoGermanic) {\n          add('S')\n        } else {\n          addSecondary('S', 'X')\n        }\n        pos++\n      } else if ((pos === 0 && ['M', 'N', 'L', 'W'].indexOf(token[pos + 1]) > -1) ||\n                  token[pos + 1] === 'Z') {\n        addSecondary('S', 'X')\n        if (token[pos + 1] === 'Z') { pos++ }\n      } else if (token.substring(pos, pos + 2) === 'SC') {\n        if (token[pos + 2] === 'H') {\n          if (subMatch(3, 5, ['ER', 'EN'])) {\n            addSecondary('X', 'SK')\n          } else if (subMatch(3, 5, ['OO', 'UY', 'ED', 'EM'])) {\n            add('SK')\n          } else if (pos === 0 && !self.isVowel(token[3]) && token[3] !== 'W') {\n            addSecondary('X', 'S')\n          } else {\n            add('X')\n          }\n        } else if (['I', 'E', 'Y'].indexOf(token[pos + 2]) > -1) {\n          add('S')\n        } else {\n          add('SK')\n        }\n\n        pos += 2\n      } else if (pos === token.length - 1 &&\n                  subMatch(-2, 0, ['AI', 'OI'])) {\n        addSecondary('', 'S')\n      } else if (token[pos + 1] !== 'L' && (\n        token[pos - 1] !== 'A' && token[pos - 1] !== 'I')) {\n        addCompressedDouble('S')\n        if (token[pos + 1] === 'Z') { pos++ }\n      }\n    }\n\n    function handleT () {\n      if (token.substring(pos + 1, pos + 4) === 'ION') {\n        add('XN')\n        pos += 3\n      } else if (subMatch(1, 3, ['IA', 'CH'])) {\n        add('X')\n        pos += 2\n      } else if (token[pos + 1] === 'H' ||\n                  token.substring(1, 2) === 'TH') {\n        if (subMatch(2, 4, ['OM', 'AM']) ||\n                      ['VAN ', 'VON '].indexOf(token.substring(0, 4)) > -1 ||\n                      token.substring(0, 3) === 'SCH') {\n          add('T')\n        } else { addSecondary('0', 'T') }\n        pos++\n      } else {\n        addCompressedDouble('T')\n\n        if (token[pos + 1] === 'D') { pos++ }\n      }\n    }\n\n    function handleX () {\n      if (pos === 0) {\n        add('S')\n      } else if (!(pos === token.length - 1 &&\n        (['IAU', 'EAU', 'IEU'].indexOf(token.substring(pos - 3, pos)) > -1 ||\n        ['AU', 'OU'].indexOf(token.substring(pos - 2, pos)) > -1))) {\n        add('KS')\n      }\n    }\n\n    function handleW () {\n      if (pos === 0) {\n        if (token[1] === 'H') {\n          add('A')\n        } else if (self.isVowel(token[1])) {\n          addSecondary('A', 'F')\n        }\n      } else if (subMatch(-1, 4, ['EWSKI', 'EWSKY', 'OWSKI', 'OWSKY']) ||\n        token.substring(0, 3) === 'SCH' ||\n        (pos === token.length - 1 && self.isVowel(token[pos - 1]))) {\n        addSecondary('', 'F')\n        pos++\n      } else if (['ICZ', 'ITZ'].indexOf(token.substring(pos + 1, pos + 4)) > -1) {\n        addSecondary('TS', 'FX')\n        pos += 3\n      }\n    }\n\n    function handleZ () {\n      if (token[pos + 1] === 'H') {\n        add('J')\n        pos++\n      } else if (subMatch(1, 3, ['ZO', 'ZI', 'ZA']) ||\n        (slavoGermanic && pos > 0 && token[pos - 1] !== 'T')) {\n        addSecondary('S', 'TS')\n        pos++\n      } else { addCompressedDouble('Z', 'S') }\n    }\n  }\n\n  compare (stringA, stringB) {\n    const encodingsA = this.process(stringA)\n    const encodingsB = this.process(stringB)\n\n    return encodingsA[0] === encodingsB[0] ||\n      encodingsA[1] === encodingsB[1]\n  }\n}\n\nmodule.exports = DoubleMetaphone\n"
  },
  {
    "path": "lib/natural/phonetics/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>, Emily Marigold Klassen <https://github.com/forivall>, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport class Phonetic<T> {\n  compare (stringA: string, stringB: string): boolean\n  tokenizeAndPhoneticize (str: string, phoneticsProcessor: Phonetic<T>, keepStops: boolean): T\n}\n\nexport class Metaphone extends Phonetic<string> {\n  dedup (token: string): string\n  dropInitialLetters (token: string): string\n  dropBafterMAtEnd (token: string): string\n  cTransform (token: string): string\n  dTransform (token: string): string\n  dropG (token: string): string\n  transformG (token: string): string\n  dropH (token: string): string\n  transformCK (token: string): string\n  transformPH (token: string): string\n  transformQ (token: string): string\n  transformS (token: string): string\n  transformT (token: string): string\n  dropT (token: string): string\n  transformV (token: string): string\n  transformWH (token: string): string\n  dropW (token: string): string\n  transformX (token: string): string\n  dropY (token: string): string\n  transformZ (token: string): string\n  dropVowels (token: string): string\n  process (token: string, maxLength?: number): string\n}\n\nexport class SoundEx extends Phonetic<string> {\n  process (token: string, maxLength?: number): string\n  transformLipps (token: string): string\n  transformThroats (token: string): string\n  transformToungue (token: string): string\n  transformL (token: string): string\n  transformHum (token: string): string\n  transformR (token: string): string\n  condense (token: string): string\n  padRight0 (token: string): string\n  transform (token: string): string\n}\n\nexport class DoubleMetaphone extends Phonetic<string[]> {\n  process (token: string, maxLength?: number): string[]\n  isVowel (c: string): string | RegExpMatchArray | null\n}\n\nexport class SoundExDM extends Phonetic<string> {\n  process (word: string, codeLength?: number): string\n}\n"
  },
  {
    "path": "lib/natural/phonetics/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.SoundEx = require('./soundex')\nexports.Metaphone = require('./metaphone')\nexports.DoubleMetaphone = require('./double_metaphone')\nexports.SoundExDM = require('./dm_soundex')\n"
  },
  {
    "path": "lib/natural/phonetics/metaphone.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Phonetic = require('./phonetic')\n\nclass Metaphone extends Phonetic {\n  dedup (token) {\n    return token.replace(/([^c])\\1/g, '$1')\n  }\n\n  dropInitialLetters (token) {\n    if (token.match(/^(kn|gn|pn|ae|wr)/)) { return token.substr(1, token.length - 1) }\n\n    return token\n  }\n\n  dropBafterMAtEnd (token) {\n    return token.replace(/mb$/, 'm')\n  }\n\n  cTransform (token) {\n    token = token.replace(/([^s]|^)(c)(h)/g, '$1x$3').trim()\n\n    token = token.replace(/cia/g, 'xia')\n    token = token.replace(/c(i|e|y)/g, 's$1')\n    token = token.replace(/c/g, 'k')\n\n    return token\n  }\n\n  dTransform (token) {\n    token = token.replace(/d(ge|gy|gi)/g, 'j$1')\n    token = token.replace(/d/g, 't')\n\n    return token\n  }\n\n  dropG (token) {\n    token = token.replace(/gh(^$|[^aeiou])/g, 'h$1')\n    token = token.replace(/g(n|ned)$/g, '$1')\n\n    return token\n  }\n\n  transformG (token) {\n    token = token.replace(/gh/g, 'f')\n    token = token.replace(/([^g]|^)(g)(i|e|y)/g, '$1j$3')\n    token = token.replace(/gg/g, 'g')\n    token = token.replace(/g/g, 'k')\n\n    return token\n  }\n\n  dropH (token) {\n    return token.replace(/([aeiou])h([^aeiou]|$)/g, '$1$2')\n  }\n\n  transformCK (token) {\n    return token.replace(/ck/g, 'k')\n  }\n\n  transformPH (token) {\n    return token.replace(/ph/g, 'f')\n  }\n\n  transformQ (token) {\n    return token.replace(/q/g, 'k')\n  }\n\n  transformS (token) {\n    return token.replace(/s(h|io|ia)/g, 'x$1')\n  }\n\n  transformT (token) {\n    token = token.replace(/t(ia|io)/g, 'x$1')\n    token = token.replace(/th/, '0')\n\n    return token\n  }\n\n  dropT (token) {\n    return token.replace(/tch/g, 'ch')\n  }\n\n  transformV (token) {\n    return token.replace(/v/g, 'f')\n  }\n\n  transformWH (token) {\n    return token.replace(/^wh/, 'w')\n  }\n\n  dropW (token) {\n    return token.replace(/w([^aeiou]|$)/g, '$1')\n  }\n\n  transformX (token) {\n    token = token.replace(/^x/, 's')\n    token = token.replace(/x/g, 'ks')\n    return token\n  }\n\n  dropY (token) {\n    return token.replace(/y([^aeiou]|$)/g, '$1')\n  }\n\n  transformZ (token) {\n    return token.replace(/z/, 's')\n  }\n\n  dropVowels (token) {\n    return token.charAt(0) + token.substr(1, token.length).replace(/[aeiou]/g, '')\n  }\n\n  process (token, maxLength) {\n    const maxLengthNew = maxLength || 32\n    token = token.toLowerCase()\n    token = this.dedup(token)\n    token = this.dropInitialLetters(token)\n    token = this.dropBafterMAtEnd(token)\n    token = this.transformCK(token)\n    token = this.cTransform(token)\n    token = this.dTransform(token)\n    token = this.dropG(token)\n    token = this.transformG(token)\n    token = this.dropH(token)\n    token = this.transformPH(token)\n    token = this.transformQ(token)\n    token = this.transformS(token)\n    token = this.transformX(token)\n    token = this.transformT(token)\n    token = this.dropT(token)\n    token = this.transformV(token)\n    token = this.transformWH(token)\n    token = this.dropW(token)\n    token = this.dropY(token)\n    token = this.transformZ(token)\n    token = this.dropVowels(token)\n\n    token.toUpperCase()\n    if (token.length >= maxLengthNew) { token = token.substring(0, maxLengthNew) }\n\n    return token.toUpperCase()\n  }\n}\n\nmodule.exports = Metaphone\n"
  },
  {
    "path": "lib/natural/phonetics/phonetic.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer')\nconst tokenizer = new Tokenizer()\n\nclass Phonetic {\n  compare (stringA, stringB) {\n    return this.process(stringA) === this.process(stringB)\n  }\n\n  tokenizeAndPhoneticize (str, phoneticsProcessor, keepStops) {\n    const phoneticizedTokens = []\n\n    tokenizer.tokenize(str).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) < 0) {\n        phoneticizedTokens.push(phoneticsProcessor.process(token))\n      }\n    })\n\n    return phoneticizedTokens\n  }\n}\n\nmodule.exports = Phonetic\n"
  },
  {
    "path": "lib/natural/phonetics/soundex.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Phonetic = require('./phonetic')\n\nclass SoundEx extends Phonetic {\n  process (token, maxLength) {\n    token = token.toLowerCase()\n    let transformed = this.condense(this.transform(token.substr(1, token.length - 1))) // anything that isn't a digit goes\n    // deal with duplicate INITIAL consonant SOUNDS\n    transformed = transformed.replace(new RegExp('^' + this.transform(token.charAt(0))), '')\n    return token.charAt(0).toUpperCase() + this.padRight0(transformed.replace(/\\D/g, '')).substr(0, (maxLength && maxLength - 1) || 3)\n  }\n\n  transformLipps (token) {\n    return token.replace(/[bfpv]/g, '1')\n  }\n\n  transformThroats (token) {\n    return token.replace(/[cgjkqsxz]/g, '2')\n  }\n\n  transformToungue (token) {\n    return token.replace(/[dt]/g, '3')\n  }\n\n  transformL (token) {\n    return token.replace(/l/g, '4')\n  }\n\n  transformHum (token) {\n    return token.replace(/[mn]/g, '5')\n  }\n\n  transformR (token) {\n    return token.replace(/r/g, '6')\n  }\n\n  condense (token) {\n    return token.replace(/(\\d)?\\1+/g, '$1')\n  }\n\n  padRight0 (token) {\n    if (token.length < 4) { return token + Array(4 - token.length).join('0') } else { return token }\n  }\n\n  transform (token) {\n    return this.transformLipps(this.transformThroats(\n      this.transformToungue(this.transformL(this.transformHum(this.transformR(token))))))\n  }\n}\n\nmodule.exports = SoundEx\n"
  },
  {
    "path": "lib/natural/sentiment/Basque/senticon_eu.json",
    "content": "{\n  \"adeitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.447\",\n    \"std\": \"0.216\"\n  },\n  \"adorea eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.24\"\n  },\n  \"adoretu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.24\"\n  },\n  \"alaitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.236\"\n  },\n  \"alaitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.575\",\n    \"std\": \"0.257\"\n  },\n  \"alegeratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.725\",\n    \"std\": \"0.224\"\n  },\n  \"arindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.338\",\n    \"std\": \"0.334\"\n  },\n  \"ase\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.357\"\n  },\n  \"asebete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.357\"\n  },\n  \"atsegin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.222\"\n  },\n  \"atsegintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.243\"\n  },\n  \"baikortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"begirune\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.431\",\n    \"std\": \"0.203\"\n  },\n  \"berotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.32\"\n  },\n  \"bihotz eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.161\"\n  },\n  \"borondate on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.217\"\n  },\n  \"bozkariatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"bozkario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"bozkariotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"ederretsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.259\"\n  },\n  \"erosotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.112\"\n  },\n  \"estimu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"gogobete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.265\"\n  },\n  \"gozamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.211\"\n  },\n  \"gozatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.336\",\n    \"std\": \"0.344\"\n  },\n  \"grazia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.143\"\n  },\n  \"gurtza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.185\"\n  },\n  \"konfiantza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.429\",\n    \"std\": \"0.257\"\n  },\n  \"lilura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.134\"\n  },\n  \"maitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.177\"\n  },\n  \"maitatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"maite izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.298\"\n  },\n  \"maite ukan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"mira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.27\"\n  },\n  \"mirespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.24\"\n  },\n  \"miretsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.344\"\n  },\n  \"on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.42\"\n  },\n  \"onura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.381\"\n  },\n  \"oparotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.371\"\n  },\n  \"optimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pagutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.239\"\n  },\n  \"poz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.228\"\n  },\n  \"poz eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.331\"\n  },\n  \"poz hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.8\",\n    \"std\": \"0.274\"\n  },\n  \"poztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.237\"\n  },\n  \"poztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.641\",\n    \"std\": \"0.267\"\n  },\n  \"segurantza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.315\"\n  },\n  \"txalotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.2\"\n  },\n  \"ugaritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.337\",\n    \"std\": \"0.342\"\n  },\n  \"zaletasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.348\"\n  },\n  \"zorion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.259\"\n  },\n  \"agresibitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.072\"\n  },\n  \"aiher izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"akitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.112\"\n  },\n  \"amorratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.068\"\n  },\n  \"ankerkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.112\"\n  },\n  \"arbuiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.365\",\n    \"std\": \"0.129\"\n  },\n  \"artegatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"asaldatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.084\"\n  },\n  \"atsekabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"atsekabetu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aurkakotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"ausiki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.105\"\n  },\n  \"aztoramen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.172\"\n  },\n  \"beldur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.177\"\n  },\n  \"bihozgabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.134\"\n  },\n  \"bihozmin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.102\"\n  },\n  \"damu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"damutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"depresio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.088\"\n  },\n  \"destaina egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.163\"\n  },\n  \"eraso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.295\",\n    \"std\": \"0.088\"\n  },\n  \"erdeinatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.168\"\n  },\n  \"ernegatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.088\"\n  },\n  \"erresumin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.125\"\n  },\n  \"erru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.65\",\n    \"std\": \"0.068\"\n  },\n  \"erruki izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"errukitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"etsaitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"etsiarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"ezinikusi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"gaitzetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.361\",\n    \"std\": \"0.116\"\n  },\n  \"gogait egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.072\"\n  },\n  \"gogait eragin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.161\"\n  },\n  \"gogaitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.306\",\n    \"std\": \"0.167\"\n  },\n  \"goibeldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.12\"\n  },\n  \"goibeltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.202\"\n  },\n  \"gorrotatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"gorroto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.112\"\n  },\n  \"gorroto izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"gupida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.102\"\n  },\n  \"gupidatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"gutxietsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.604\",\n    \"std\": \"0.153\"\n  },\n  \"haserrealdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.079\"\n  },\n  \"haserretu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.099\"\n  },\n  \"higuin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"higuin izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"hoztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.137\"\n  },\n  \"iraindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.144\"\n  },\n  \"kezkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.099\"\n  },\n  \"kikildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"koldarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.19\"\n  },\n  \"krudelkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.063\"\n  },\n  \"laidoztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.112\"\n  },\n  \"larritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.138\"\n  },\n  \"lotsarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"mespretxu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"mesprezatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.0\"\n  },\n  \"mesprezu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.2\"\n  },\n  \"min\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.473\",\n    \"std\": \"0.104\"\n  },\n  \"mindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.197\"\n  },\n  \"molestatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"nahigabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.452\",\n    \"std\": \"0.116\"\n  },\n  \"nahigabetu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"nardatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"nazka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"nazka eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.063\"\n  },\n  \"nazkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.123\"\n  },\n  \"nekatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.105\"\n  },\n  \"neke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.125\"\n  },\n  \"pena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.518\",\n    \"std\": \"0.112\"\n  },\n  \"samin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.063\"\n  },\n  \"samindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.536\",\n    \"std\": \"0.191\"\n  },\n  \"samindura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.12\"\n  },\n  \"sufrimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.102\"\n  },\n  \"sumin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.339\",\n    \"std\": \"0.139\"\n  },\n  \"sumindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.384\",\n    \"std\": \"0.094\"\n  },\n  \"sumindura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.116\"\n  },\n  \"traba egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.125\"\n  },\n  \"tristura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.277\"\n  },\n  \"umore txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.12\"\n  },\n  \"urduritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.088\"\n  },\n  \"urrikaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"urrikitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"zauri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"zorigaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"zoritxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.065\"\n  },\n  \"adorazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amodio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"arnasa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"atsegin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atsegin eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"atsegin izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"barregarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"barrez lehertu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"benefizentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.439\"\n  },\n  \"bihotzean ukitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"bozkariatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bozkarioz jauzi egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burua berotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"erasan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"errealizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"esker on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.375\"\n  },\n  \"eskuzartak jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euforia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"gogo bizi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"gogoa berotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.315\"\n  },\n  \"gogobetetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"gogoko izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gustuko izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irrikortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"joritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.958\",\n    \"std\": \"0.072\"\n  },\n  \"kemendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"laguntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laket izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ongi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"onginahi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"ongintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.439\"\n  },\n  \"ongura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"ontasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"poz handi\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"printze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"txaloak jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"zoratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zoriontasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.26\"\n  },\n  \"adore falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"adoregabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ahalke izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ahalketu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aiherkunde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aintzat ez hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"ala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"aldaratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alertatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alhadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"antipatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"areriotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"aztoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babesgabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"beligerantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bihozgabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"burtzoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buruan eduki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"buruan erabili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"buruan ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"damu izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"damutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"dolutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"durduzatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enbarazu egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"erne jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erruduntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"eskatima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"esker gaizto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"esker txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"eskergabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"espantu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estiratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"etsimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"ezin ikusi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"frustrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"gaizkinahi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gizagabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"gogo falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gogoa kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gogogabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goragalea izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goralarria izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harri eta zur utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"haserrekortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higuina eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"higuindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"higuingarri gertatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"iaurri txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"izu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"izu-ikara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izualdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jasanezin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"jelosia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jeloskortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kasketaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kontrizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laidotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"laztura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lotsa izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lotsatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"lur jotze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maite-damu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malenkonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melankolia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"misantropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"misoginia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"muturtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"narda eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"negarraldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nor bere onetik irten\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"odolberotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oinaze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"oldarkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"onezko damu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oztopo egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pazientziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pesimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segurtasun-gabezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"segurtasun-gabezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"segurtasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"sukar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"suminaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"suminkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"susto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"toleatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tormentatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tormentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tristatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"tristezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.331\"\n  },\n  \"unatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"uxatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uzkurkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"ziurtasun-gabezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ziurtasun-gabezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ziurtasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"zorabiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"zur eta lur utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"zurbiltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"agurgarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"aldarte on\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"animatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"errespetagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"errugabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gauza miragarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"interesatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"maula-egile\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ondra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"abaildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"alegia egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"alegiak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"arbindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"argalgune\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"argalune\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"arretarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atmosferiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"atrofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"atzeratasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atzipetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bekozko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"beltzuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dolumin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"egoismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"elastikotasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"enerbazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"eraginik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"eraile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"errekerimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"erreskatatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gehiegizko erabilera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gogogabezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"infernu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.85\",\n    \"std\": \"0.0\"\n  },\n  \"inkario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inkonformismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"istripu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"itxura egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"itxurak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"jarraitasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"jota egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"kontrabandista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malkoak isuri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"narrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"negar egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"nerbio-krisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"parasito atmosferiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"plantak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"plantak egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"putakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tronpatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ziria sartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"barre egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"begira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"burlatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desilusionatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"etekina atera\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"etekina lortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gorteiatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gozarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"iludioa galdu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ilusioa galarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"konformismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"kongruentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"meritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.191\"\n  },\n  \"oparoaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"pekamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plastikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trufatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"utopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abortatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amorrua eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"astakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bakuntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"baldarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"basatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"baxua egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bereak eta asto beltzarenak esan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"biziki nahi izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bortizki eraso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desondratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desoreka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"duineztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"duintasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"eri egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"eri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"eskizofreniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"etorkizun-sen gabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ez eduki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ez ukan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"falta ukan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fedegabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gaixo egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gaixo izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gaixorik egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gaixorik izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gogor eraso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gogorkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gogorki eraso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gogorkiro eraso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"haurra galdu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"heldugabe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hilaurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hipokondria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hondagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"itsutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"kaudimen-gabezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"kaudimenik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"lehor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"moldakaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"munstrokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"ohorea kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"onarpen ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ondoezik egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ondoezik izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ondugabe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ospe-galtze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pasibotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"punitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"suntsigarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tamaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.072\"\n  },\n  \"tentelkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tolerantziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"toxikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"umatu gabe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"umildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"zuriak eta beltzak esan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abegitsua izate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abilezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.213\"\n  },\n  \"adikortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"baikor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"begiramen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.259\"\n  },\n  \"begirati\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"betegingarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disoziatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"egiatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"egokitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.124\"\n  },\n  \"erremedio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"errepresentatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"famatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.331\"\n  },\n  \"gai izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gainditze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gaitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"garaipen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garaitza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"goraipatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.277\"\n  },\n  \"gorteiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hobegarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hobetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inportantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"laketasuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"merezimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.313\"\n  },\n  \"mira egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"miragarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"optimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"osasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pertsona on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"probetxu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"sormen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"trebezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.289\"\n  },\n  \"txartatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.382\"\n  },\n  \"txiste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zori on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adiakatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.6\",\n    \"std\": \"0.068\"\n  },\n  \"agira egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agirakatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"ahidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aho zabalik utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aleatoriotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amarrukeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"asimetria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"atelekatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atrofiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atzera egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atzeraka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"auhendatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.072\"\n  },\n  \"axolagabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.144\"\n  },\n  \"azpigarapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"baliogabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bazter-nahasle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"beheititu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.144\"\n  },\n  \"beligerante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"beteezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bihozgabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"deboilatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.051\"\n  },\n  \"deitoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.163\"\n  },\n  \"demanda egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dialektismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dismenorrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dolu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.144\"\n  },\n  \"egonkortasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ekaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"elegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enboskada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"endredatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"erremin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eskandalizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estuasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ez-ezagutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ezatsegintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"ezegokitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.072\"\n  },\n  \"ezjakintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gaitasuna galdu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galtzagorri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garaikar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gatazkati\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gauzaez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"gerra hotz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gogogabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gosete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gris ilun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"haluzinazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"harrapagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hiltzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"histerismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ilegaltzat jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"indarrik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inki-manka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inperfekzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"ipurtats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"iskanbila-sortzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"istilu-sortzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"itsumen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"jalkin erradioaktibo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jasankortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kabroi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"kirats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.0\"\n  },\n  \"kolpe batez itxi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"konorte-gabezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kriminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lapurreta egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"legez kanpo utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"legez kanpokotzat jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"leporatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lur jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.0\"\n  },\n  \"mikaztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"min emaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"min hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"muzin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"nagitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"narraskeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.0\"\n  },\n  \"ondoezik jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pairamendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"purrustada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"sasikume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"sentikortasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"sufritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.0\"\n  },\n  \"tiranizidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"trauskilkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"txistuka hasi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zailtasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.604\",\n    \"std\": \"0.151\"\n  },\n  \"zailtasunez adierazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zailtasunez erran\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zailtasunez esan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zirrimarra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adimen-osasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adiskidetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"aprobetxatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"araupetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atsegin hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"balioa handitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"balioa igoarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"barneko gaixo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"barneko paziente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bedeinkatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bere burua eskaini\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bizi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dohaintza egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"edertasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"erregularizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esgrima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espezializazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espiritualtasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"etekin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"eufonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eugenesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fama eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fede eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"garrantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gehiagotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gogatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gorakari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goranzko espekulatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goreneko puntu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goresle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goretsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.286\"\n  },\n  \"grapaz lotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"herri-\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hezte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"integratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"integrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"interesa izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"interesgarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"interesgarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"izenemaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jakin-min\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jakin-nahi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jakingura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kalitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"komedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"komenentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"konplimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kontsakratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"koordinazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"kreditatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"krisketaz lotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laudatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legeztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"libertario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"limurtze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"liserigarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maileguz eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mantenimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moldagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nartzisismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nautika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"normaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"onaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"onestasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ongizate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.27\"\n  },\n  \"osasun mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osasungarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"ospea eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"probetxu atera\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"produktibitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sagaratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seriotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.259\"\n  },\n  \"sinestarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sinetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"talotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tinkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"tonizitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ustekabeko irabazi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ustelkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilitarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xarmantasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xelebrekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"zaharberritze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zaharberrizte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ahitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ahots zakar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ahozabalik egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aipua belztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aipua kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aipua zikindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"akusatuen aulki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarmismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"albo-ondorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"aldarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alderdi errekurtsogile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aldi baterako polizia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alprojeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amodio propio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amuzki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"analfabetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anarkia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anatematizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ankilosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apelatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arautegi-greba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardi galdu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arretazko greba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arriskua egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"artralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asasinatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"astakaiku\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astenosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aurpegira bota\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aurpegira eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aurretik juzgatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aurrez juzgatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autokrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"auzitegi nagusi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"azpimundu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bake-eza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"basapizti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bataila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"behartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beltz-beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beluritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beriberi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bermut gozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"betiko lo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bihotzerre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bihozgabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bihurritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bluff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"borgoina-kolore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buruzaletasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"derrigortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desorientazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diatriba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"disonantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"distiragabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"doluzko besoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"doluzko jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dorretzar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enbolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entzungor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entzutea belztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entzutea kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entzutea zikindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"epelkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eragozpenak jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"erail\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"erosta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"errakitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"errespetu falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"errugabetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"errukigabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esatekoak izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eskarmenturik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"esklerosi anitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esklerosi anizkoitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eskumikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esperientziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"estratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"etze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exekuzio-ordena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ez-emankortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ez abegitsu izate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ezaxolakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ezjakite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fida izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fidantza izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fio izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gaitasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.25\"\n  },\n  \"gaizki eratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gaizki itzultze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gaizkile gazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"galdua\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"garbitasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gerra-kalte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gerrako kalte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gerrillari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"giltzatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gizabide ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gizalege ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gizon jator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gizon leial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gizon zintzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gogaikarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gogatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gorreri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"gortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"graffiti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grina izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"guanako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gupidagabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"haize egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hanpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"harmoniarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"harroaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hatsa jariatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hazpizar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hazteri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hebaindu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heiagoera egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heriotza-zigor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"herren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterogeneotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hildakoaren adiskide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hildakoaren ahaide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hiletari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hiltzeko agindu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipermetropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipogluzemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hodei beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hondamendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.134\"\n  },\n  \"ikonoklasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ilaundu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ilun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"indarrez sartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inguruko mendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inmolatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irregulartasun geometriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irritsa izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"isekari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"itsas urdin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"itsukeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"itzulpen oker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"izena belztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"izena kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"izena zikindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jakatxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"juramento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kakofonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kalanbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kalte egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kaltetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"karie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"karrak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"karrakatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"karranpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kleptomano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"konfesatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"konkordun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kontsolagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"krudel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"kupera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kuxkuxean ibiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lagunkoitasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"larderiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.068\"\n  },\n  \"larri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lohitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lotu-jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lutu-besoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maingu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"men ez egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mendi-adar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mesprezusko irribiarrea egin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mihiztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"milikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"min eragile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mokorreria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mukitsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"muturrekoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nahasia egote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nahastua egote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"niktalopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ninbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ninfomano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odolgabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oftalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oihumin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oparia erskaini\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osagabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oso txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ospea belztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ospea kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ospea zikindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osteoporosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oztopoak jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paralogismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pirosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"polizia-indar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poltergeist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"presioa egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"putakume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"putz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sabotaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sakrilegio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"samurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sheriffen talde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sikario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sineskeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sinfisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sona belztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sona kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sona zikindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soraiotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sorgortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sosik gabeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suntsidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suntsiezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrakota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tirano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trauskiltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"trebetasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"txantxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"txapeldunorde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"txilio egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"txukuntasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ubeldu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"udizioko hagin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ukabilkada eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"umiliatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"urka-bilur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ustea izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zainbihurtu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zaintiratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zaporerik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zarpailkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zigorgabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zirtzilkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zorian egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zorian izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zuhurragin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zuhurtzia falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"zurbildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zurdunpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zuzenbide penal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zuzentasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abadesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abegi ona egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"aberastasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.302\"\n  },\n  \"abil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.12\"\n  },\n  \"adigai\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiskidetsu agurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adore emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.331\"\n  },\n  \"ados egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ados jartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"adostasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"ahalbidetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ahalmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"aholku-emaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aintzat hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.277\"\n  },\n  \"aintzatetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"akustika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alabatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alarma jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldebakarreko kontratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alimaleko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allegro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altruista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ama gehiena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amarrutsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anakoreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anbibalentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"animazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.259\"\n  },\n  \"antropofagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antzerki-izaera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apain-apain jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aparteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"arauzko denbora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.433\"\n  },\n  \"aristotelismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrakasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"arrandiartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrazionalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrazionaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"arte-kreazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artefaktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artegintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asistentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aske\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"askitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"aurrerakuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.433\"\n  },\n  \"autobus-txartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azidotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azken hitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azpijale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azpimarratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baiezkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baimena eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.271\"\n  },\n  \"baimendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.271\"\n  },\n  \"baketu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baketze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balakatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balentria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"baliogarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baliokidetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baloia pasatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.4\"\n  },\n  \"bat etorri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.297\",\n    \"std\": \"0.283\"\n  },\n  \"bateragarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"batzartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bazkaleku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"begiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"beharrezko guztia hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benerazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"berealdiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"berretsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"besta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"besteren lepotik bizi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"besteren lepotik edan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"besteren lepotik jan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bideragarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"bidezkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"biltzar ebangelista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bilurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biokimikari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"birtuosismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bizitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.327\",\n    \"std\": \"0.231\"\n  },\n  \"blokeoa kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boleibol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boluntario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"bularra eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burlesko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buruan sartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"burujabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burujabetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burujabetza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"degeneratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demagogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desblokeatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desizoztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dialisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dibertsio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"doitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.171\"\n  },\n  \"done\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dorukoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dotoretasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.313\"\n  },\n  \"dotrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"duelu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.26\"\n  },\n  \"durundi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edateko ur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edateko ur on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edoskiarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.26\"\n  },\n  \"egiazkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.24\"\n  },\n  \"egiaztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.139\"\n  },\n  \"egibide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egiztapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egokiera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egonkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"egun-argi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"egundoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eguraldi on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"ekitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elitista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elizkizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elkarganatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elkarrengana bildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elkarte ongile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"emankortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.227\"\n  },\n  \"emantzipatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enbalditu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endekatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"energia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.267\"\n  },\n  \"engaiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enpatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entretenitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"entzunarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entzungarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entzute\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"entzute handiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epelaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epikurear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erabilgarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.094\"\n  },\n  \"erabilkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"eradoski\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eraginkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.4\"\n  },\n  \"erakargarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.19\"\n  },\n  \"erdibokal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erlaxatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"erlazionatuta egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erraz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erreferendum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erregulartasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erregutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errekisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erreklamatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errespetu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.446\",\n    \"std\": \"0.21\"\n  },\n  \"erritolari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"eskas hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eskertu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"eskuburdinak ipini\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eskueste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espezialitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.373\"\n  },\n  \"esprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esterilizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"estimatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"estrabertitu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eta abar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"etxeratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezaguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"ezagumendu praktiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezagutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.331\"\n  },\n  \"ezagutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.289\"\n  },\n  \"ezagutza-arlo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezeri garrantzia emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezezko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezkon-hitza eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezkontzeko hitza eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezkutuko bidaiari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezkutuko bidazti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezpatazorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eztabaida-leku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fartsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenomeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"fidagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.402\"\n  },\n  \"fideikomisodun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filantropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filosofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"finkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.329\"\n  },\n  \"fintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.286\"\n  },\n  \"fintze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freskatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.25\"\n  },\n  \"funtzionatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gabon-kanta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"gailendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"gaita-soinu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaitaren soinu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.26\"\n  },\n  \"gaitzeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gandutsua egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gardentasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.137\"\n  },\n  \"garrantzi handiko aurkikuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastronomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genealogista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gizabide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.2\"\n  },\n  \"gizalege\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.224\"\n  },\n  \"gizatiar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gogoeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"gogokoen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goi-fidelitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gomendatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"gomendio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"goraipamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"goratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.325\"\n  },\n  \"goratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gorazarre egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.228\"\n  },\n  \"gorespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.129\"\n  },\n  \"gourmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gustukoen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gutun-lagun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guztien adostasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handiespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handietsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hapax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harmonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.329\"\n  },\n  \"harpide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harpidedun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"harpidetza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"harrera ona egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"haur harrigarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haur prodijio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"haurtzaintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.288\",\n    \"std\": \"0.282\"\n  },\n  \"hegaztizale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heldutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"hezi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.157\"\n  },\n  \"heziketa-programa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hi-fi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hitzeman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hobby\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.619\"\n  },\n  \"hobekuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.312\"\n  },\n  \"hoberena dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hobetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"hondatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iaiotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.24\"\n  },\n  \"ikasnahai\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ikastegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ikusgarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iltzeztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ilustrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"inauteri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"indar moral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indarrik gabe utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"independentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"industriari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"influentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inoren lepotik bizi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inoren lepotik jan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inpartzialtasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interes bakun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irakaskuntza-erakunde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ireki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irekiera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irribarre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isileko bidazti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isurpen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"izatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"izate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"izorratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"izpiritualizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"izugarrizko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaialdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"jainkojale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"jakak egiteko ehuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jakin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"jakin-nahia eragin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jakinmina eragin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jakintza-arlo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"janaria egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"janaria preztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"janzki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jarduera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"jendetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.271\"\n  },\n  \"jolasaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.056\"\n  },\n  \"jostatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"jubileu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kakara\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"kaligrafia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kamioi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kanibalkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kanporakoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"karisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"karitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.143\"\n  },\n  \"kasuistika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kateaz lotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"katekesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"kaudimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"kitatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"klasiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"koherentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kojinete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"komenientzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"konbentzitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"konbentzitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"konformista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"konpromisoa hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kontsumitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kontzeptu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"korner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kortesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.122\"\n  },\n  \"kriskitin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"kristau-ikasbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kulturista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laburrago egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lakrez itxi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lantzen duen lurraren jabe dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"larru bizirik\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"larrugorrian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lasterraldi azkar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laudagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laudatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.217\"\n  },\n  \"laudorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.146\"\n  },\n  \"lausengatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"legezko kuota\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legezkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"lehen-sendabide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leundu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.359\"\n  },\n  \"likidatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"limurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"lirain\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lizentziatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"logika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.293\"\n  },\n  \"loria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"losentxatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"lotuta egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lsaitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lukurreria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"madarikatu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mailan izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maiteminduen egun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malapartatu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malgutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.298\"\n  },\n  \"manikura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mantenu-pentsio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"mardultasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"marraka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mediku-ardura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medikuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"megalomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mendebaldeko ohiturak hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.375\"\n  },\n  \"metodismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mezako ardo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"milurteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"mirari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.389\"\n  },\n  \"miraz egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"moderazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morroiloz itxi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortasatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"munta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musika klasiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nagusitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"nahimen libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naretu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"natural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.264\"\n  },\n  \"naturalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nazkagarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nazkante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurri hartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obedientzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"objektibotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"ofizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"oharrarazle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ohoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"ohore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.332\"\n  },\n  \"oihartzuna izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"olgatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"olgeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"omen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.204\"\n  },\n  \"on egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"onargarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"onarpen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.327\",\n    \"std\": \"0.231\"\n  },\n  \"ondasun-administratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ondo erantzun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ondo ihardetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ondratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"onena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onera egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"onespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.301\",\n    \"std\": \"0.22\"\n  },\n  \"ongi erantzun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ongi ihardetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ongi pasatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oniritzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.422\",\n    \"std\": \"0.163\"\n  },\n  \"onomatopeia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"opor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordenaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"originaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ospakizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.12\"\n  },\n  \"ospe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.219\"\n  },\n  \"ozentasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pagu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pailazokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panegirista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panoplia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paregabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"partxis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paternalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pentsaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perbertitu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfekzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"perigeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pigmentazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pinpirindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"pitxartxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"playboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plazer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"pluralismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polizoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pop musika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positibismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"positibista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pragmatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prebentzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"prestigio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preziatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"probabilitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prodijio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promes egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promestu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prometatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"protokolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"puntazorroztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puntuak irabazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puritano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"roastbeef\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sagar-makatz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saindu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saindu egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salbamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"salbamendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"salmenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"santa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"santutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"santutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarrera garbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sendakuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sendatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.26\"\n  },\n  \"serendipia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexu-atsegin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"simetria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sinalefa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sirena jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonstengatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tamainan izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taoismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teatro-izaera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teknikari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"tekniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"tentatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"terapia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiki-taka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"titia eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toccata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trankildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"tratamendua eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"tratamendua jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"tratatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.217\"\n  },\n  \"trebetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.433\",\n    \"std\": \"0.233\"\n  },\n  \"tren-txartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tropismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trukagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turuta jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.12\"\n  },\n  \"txaloaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.12\"\n  },\n  \"txangolari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txiki\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txinpartaka aritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txintxin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txistu-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txistukari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txukuntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.137\"\n  },\n  \"udatiar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ugalkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.258\"\n  },\n  \"ulergarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"urgatzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urguritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"urri eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xehe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.24\"\n  },\n  \"xelebretasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerretan moztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zalbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zalutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"zapuztaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zarrasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zarrasta-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zentzu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.283\"\n  },\n  \"zentzutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.347\",\n    \"std\": \"0.273\"\n  },\n  \"zerbitzu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.112\"\n  },\n  \"zigiluz itxi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zilegitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"zin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"zintzotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.193\"\n  },\n  \"zirriborrotsua egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zirtakatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zirto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ziurtagiri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"zizpuru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ziztu bizian mugitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zonalde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zorionak eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"zoriondu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"zorte on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"zuhurtzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.342\"\n  },\n  \"zurikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zurrukutun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zuzen erantzun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zuzen ihardetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zuzenatsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zuzentasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.277\"\n  },\n  \"abandonatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.051\"\n  },\n  \"abentura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abisatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abusatzen duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adeigabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"adia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"adia egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"adipositate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adore ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agiraka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.112\"\n  },\n  \"ahalkegabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"ahalkeizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahanztura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahazkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahazmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aho-korapilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahuleria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.479\",\n    \"std\": \"0.123\"\n  },\n  \"aiene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.063\"\n  },\n  \"aintzat ez hartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aipu txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aire-eraso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aita hiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"akats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.146\"\n  },\n  \"akromegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alborengo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldagoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldarapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldaratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldarri egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"alexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alferkerian ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"aliatuak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ama hiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amorerik ez emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amorrazioa eragin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anestesiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anosmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiprotoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antrazita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apaingarritxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apelazioko auzitegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apoplexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.393\",\n    \"std\": \"0.112\"\n  },\n  \"arbuio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.112\"\n  },\n  \"ardo-kolore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arduragabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.287\",\n    \"std\": \"0.145\"\n  },\n  \"arinkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.259\",\n    \"std\": \"0.142\"\n  },\n  \"arnasestuka jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"arnegari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"arrailatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrakalatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrangura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"arranguratsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrastatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"arriskugarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.125\"\n  },\n  \"arritmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arroka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artaldekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artifizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artobero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asbestosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asmazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astakirten\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"astenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atorra hertsagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atsogizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atxikipen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atzaparkadaka aritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atzera pauso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audiofono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auhen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"aurpegi eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"aurre eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"autopsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azabatxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azalgorri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azaluts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azken une\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azkura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"azpiko jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"babatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"babo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.177\"\n  },\n  \"bakteriolisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bakteriologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baldar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.065\"\n  },\n  \"baldintzapeko askatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baldreskeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barneko motz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barnerakoitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"barrabas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"barregarri utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"barruko arropa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barruko jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"basabide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"basakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"basalore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"basati\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"basatikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"baztanga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"begi eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"behar izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"behatz-puntetan ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"behazun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"behe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"behe-glumela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"behe-presio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"behea jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.0\"\n  },\n  \"beherakari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beheranzko espekulatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beheratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.393\",\n    \"std\": \"0.098\"\n  },\n  \"bekatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"beltzaran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"beluritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"bemol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bendaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"berreskuratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"besoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.056\"\n  },\n  \"bestondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bidar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biharamun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bihotz-gutxiegitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bihurri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bihurrikada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biktima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biolentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"birika-enfisema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biriketako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"birrindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.265\",\n    \"std\": \"0.064\"\n  },\n  \"bizirik atera dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"bizirik dirauena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"bizirik irten dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"blastakoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bonbardatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrokan egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrokatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"bortizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"bortxa-atorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"botaka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burla egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"buru-hezur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"buruiritzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buruko blokeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buruko min\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danba egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deabru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"deabrutxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"deiadarkari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deitore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dekolorazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delitu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"denborale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desadostasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.065\"\n  },\n  \"desagertu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"desakordio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"desbideraketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desegokitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.263\",\n    \"std\": \"0.132\"\n  },\n  \"desgobernu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"deskalifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deskortesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"desmen-egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmineralizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desohore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.168\"\n  },\n  \"diabetiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dibagazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difamazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.056\"\n  },\n  \"difteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diru xahutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disidentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doilorkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"doitasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"doministiku egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogazale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogen menpeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ebano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"edema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egia erdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egoera natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egur-ikatz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egurra eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"ekaitzaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ekimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"elikagai min\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elkarren aurka egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"elkartasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emagizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfisema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engainu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.188\"\n  },\n  \"entzefalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enuresi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epelak eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epidemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"eraginkortasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"erantzuki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"erantzuki egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erasoaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.094\"\n  },\n  \"erauntsi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"erdipurdiko idazle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ergel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.287\",\n    \"std\": \"0.119\"\n  },\n  \"ergelkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.11\"\n  },\n  \"erlakizten\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ernalmin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.065\"\n  },\n  \"errauste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errebelatu eskas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errebelatu txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erredura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"erremuskada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errepresio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"erreskatea ordaindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erresumindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"erretxin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erreuma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erreumadun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erreumatiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errieta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.403\",\n    \"std\": \"0.108\"\n  },\n  \"errieta egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.056\"\n  },\n  \"errua bota\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esfortzurik gabe mugitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eskerrak emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eskirol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esklabotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esku-sartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eskumuturreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"eskuturreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estalkia jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esterilitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esternoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"estira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"estrabismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estualdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.278\",\n    \"std\": \"0.116\"\n  },\n  \"estutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.144\"\n  },\n  \"etsai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.188\"\n  },\n  \"etxeko lapurreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eunuko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ez-betetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ez agertze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ez gustatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezbehar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.056\"\n  },\n  \"ezdeus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ezegonkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.389\",\n    \"std\": \"0.185\"\n  },\n  \"ezegonkortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ezgaitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.239\"\n  },\n  \"ezilkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ezkor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ezkutuko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"eztabaida gogor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eztabaidagai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eztanda eginarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faltsutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenomeno natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fosgeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"franbesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fratrizidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"gaitzeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaitzuste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaizki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.105\"\n  },\n  \"gaizki saldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"galdekatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ganberro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garagardo beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gardingadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garezur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"garratz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garraztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.065\"\n  },\n  \"gazta parmesano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gehiegizko gastu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gelaska zikin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gelaska ziztrin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"geldo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"geldotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"gerla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gernu-ihes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gernu-inkontinentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gerra-lege\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gerrari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gerrate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gertakari natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gezurkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"gezurti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"gibelatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"gizahilketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gizatxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.061\"\n  },\n  \"gizatzxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gizon-antzeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glaukoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gogogabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"gogor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gogor kritikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gogorki kritikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gogorkiro kritikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goitika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goitika egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goitikin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golardo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gonbito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gor-mututasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gora jotzeko auzitegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goraka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gorde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"gorputegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gorputz-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gorrotatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gozakaizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grabitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grabitazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greaseball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greba-hausle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gudamutil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gudu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"gudukatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"gurutzefikapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"gurutziltzaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"gustura ez dagoena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gutxieneko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gutxitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"habia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"haizete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.134\"\n  },\n  \"hanka-puntetan ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hanka-sartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hantuste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.105\"\n  },\n  \"haratustel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"haserrekor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hatsanditu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hatsantu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hebain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"hemorroide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herbal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herdoil-onddo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heriotza-epaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herren egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herrenka ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hezueri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hezueria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higuintzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.111\"\n  },\n  \"hilezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hilezkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"hilketa-arazoetarako epaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertrofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipokondriako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipokrisia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiponimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"histu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"hizpide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hoben\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"hondamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.358\",\n    \"std\": \"0.114\"\n  },\n  \"hondar  une\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hondatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.145\"\n  },\n  \"hotz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hozmintze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hurretasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ilaurtze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ilundu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.093\"\n  },\n  \"ilunpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"iluntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.062\"\n  },\n  \"ilusio faltsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impromptu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inbaditzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inertzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inki-minki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inkongruentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inkubazio-aldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmolazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inozokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"interdiktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intolerantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.26\"\n  },\n  \"intoxikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inuzente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"ipurterre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.422\",\n    \"std\": \"0.141\"\n  },\n  \"irakasle lagun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iratxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iraulaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iraulkatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irelu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrigarri utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"irrika izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"iruzurkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.112\"\n  },\n  \"iruzurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"iseka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isileko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isileko jakituria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iskanbilari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"itsas-ekaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"itsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"itsualdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"itsuskeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.072\"\n  },\n  \"itsustasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.26\"\n  },\n  \"itxura egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"itxura izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"itxurati\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"izen txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"izorratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"izumen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"janari-zuntz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaraunspen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jarki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jasan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.166\"\n  },\n  \"jende pila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jipoitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"joputasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juanikote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junkie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kaka zahar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kaltedun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"kalumnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"karrakagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kaskarro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kasuista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kasulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"katalepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"katalintzar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kazkabar-erauntsi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.112\"\n  },\n  \"kexatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"kikilkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"kiratsa jario\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kitsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"klitozibe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"koarentena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"kokots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kolaborazionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kolekta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kondenatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"kongestio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kongruentziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"konmozio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"konmutazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"konorte-galera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"konplexutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"kontenplatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"kontentagaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kontraeraso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"kontrakotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kopatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"krimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kritikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"kritikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kulero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"kulpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kurbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kurrinka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"kutsatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lahar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"laino-adar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"lakartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"langilezain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lapurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.264\",\n    \"std\": \"0.055\"\n  },\n  \"lardats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"larrua egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"larrudura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"larrutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"latz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lauso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.337\",\n    \"std\": \"0.053\"\n  },\n  \"laztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"lege-hauste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legenar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lera izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"lesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"libelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"libre utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"linimentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lintxamendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liskarrean ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liskartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.0\"\n  },\n  \"lizuntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"lohikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.131\"\n  },\n  \"lotsabide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lotsagabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lotsagabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.273\",\n    \"std\": \"0.128\"\n  },\n  \"lurralde ezezagun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lurrustel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"madarikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"makaltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"makula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.105\"\n  },\n  \"malformazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"maniako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mari-gizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mari-mutiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maritxu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marmario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"marmarrean ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"martirio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martirizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"mastagain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masterdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalomano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mehatxu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"menderaezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"menderakaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mendi-bide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merkeegi saldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meza-otoitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"migraina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mildiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"min-sastada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"min-ziztada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"min eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.161\"\n  },\n  \"mintzagai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"minusbalio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miseria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"moldakaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"mufloi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mutiri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muturka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nafarreri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nagikerian ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"nahasmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.153\"\n  },\n  \"nahastuta egote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"narras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"naturaleza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naturaz gaindiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nazkagarrikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.105\"\n  },\n  \"neuralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurasteniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurotiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neutraltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"ninfomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"norberekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"odol-piko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ogro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"oihuak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"oihuka eraso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"oihukari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oihukatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"oihukatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"oihulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oin puntetan ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oinarrizko ezagutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"okaztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"oldartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"onartezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"onddo pozoitsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordain sari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.217\"\n  },\n  \"orroka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osasun-arazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"osmio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ospe txar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"osteomalazia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ozar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ozarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"pairamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.19\"\n  },\n  \"pairatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.168\"\n  },\n  \"paparo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralitiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paranoiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paresia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paroxismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pello\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"pesimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pijama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pikante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piraña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pitzatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plater-jaurtigailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleonasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleurako min\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleurodinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pneumonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polemika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polizia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polizia sekretu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poluitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pozik ez dagoena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pozoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"presionatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primitibismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"problema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.105\"\n  },\n  \"prodromo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psikopata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psikosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psikotiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"purrust egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"purrustaka ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"purrustaka egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putzontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sagutegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sakailatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sakrifikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarramuska\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarraski\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"sarraskitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sarrats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sasiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"sastako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"satan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scullery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senide-hilketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"setiatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sikomoro pikondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silikosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinesbera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sineskor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"sinkope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"so egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"soberna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sufrimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sukaldeondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suminkor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sumundu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suntsipen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.0\"\n  },\n  \"suntsitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.287\",\n    \"std\": \"0.062\"\n  },\n  \"suntsitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tabarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"talka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.0\"\n  },\n  \"talkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taupadak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teilatu-hegal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenkatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinko ibiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tiroz hil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toke egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toleskeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tontokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"tortikoli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"torturatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"toteltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxikomano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tragedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.125\"\n  },\n  \"trakestasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.125\"\n  },\n  \"trakets\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.068\"\n  },\n  \"transmigrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trantze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"trauskil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"triki-traka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"triskantza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.072\"\n  },\n  \"tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tupust egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"txapin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txerren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txikitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.064\"\n  },\n  \"txikizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"txistualdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"txoke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txondor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"txoriburu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"txotxolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"ubeldura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"ukabilkada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ukabilkada-saio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"umore txarreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urakan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uredinale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urkamendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urkatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urrako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usain txarra izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ustekabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ustelezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usteljale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ustelkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.119\"\n  },\n  \"usteltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"usteltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"utzikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"xake-mate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xaxatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zabar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"zakarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.33\",\n    \"std\": \"0.113\"\n  },\n  \"zakartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zanpatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zapalkuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"zapaltzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"zapore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"zaratatsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zartakoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zartatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zazpiki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zehatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.051\"\n  },\n  \"zehaztugabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.143\"\n  },\n  \"zekenkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"zentsura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.072\"\n  },\n  \"zerri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.051\"\n  },\n  \"zezidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zigortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.044\"\n  },\n  \"zikin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"zikinkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.328\",\n    \"std\": \"0.16\"\n  },\n  \"zikintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.194\"\n  },\n  \"zikintze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zikiratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ziklotimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zikoizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.137\"\n  },\n  \"zilizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zipristin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zipristin-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zirikaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"zital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.129\"\n  },\n  \"zitazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"zonbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zorigaizto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.065\"\n  },\n  \"zorrotz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zoster herpes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zuhurkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"zuhurtziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"zurdatz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zurmindura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zurruntasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.163\"\n  },\n  \"ñabardura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"abantaila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"aberrazio optiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abertzaletasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abioi-txartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abonu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrakadabra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absortzio-faktore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adierazi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adierazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"administrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adoleszente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adoratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ados jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adoste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adrenalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afektu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afiliatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ageri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agerian utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agortze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguardient\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agurgarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahal izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahalbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahogozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aholkulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ailegatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aingerutxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aintzat hatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aitzur luze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akademia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akordio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akreditazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akziodunen batzar nagusi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akziodunen batzar orokor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alanbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alara\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldapan gora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alde izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldez aurretik pentsatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldi berean egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldi bereko izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ale berezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alegazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algoritmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"almaiz-kirten\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amarratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amharera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabaptismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabolismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anbizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antigoalekoen merkatari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antigoalekoen saltzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antikuario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antolatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzekotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzerki grekoko korua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzezlan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzinako\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzinakoen merkatari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antzinakoen saltzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apaingarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apezpikutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apo-hontz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apogeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apokope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aproposa izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"araknido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ararteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arduratasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argi-indarra eta ura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.175\"\n  },\n  \"argudio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ariete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ariketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aritmetika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arkulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aro historiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrailari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrakasta handia den\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arratoi-katu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arraun luze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrautza-suspilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrazionalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arrazista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrimatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arropa egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"artisau-lan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aseguru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"asepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"askatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspaldiko\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspaldiko egia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aterpea eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atletismo-lehiaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atoiontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atsotitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atzazaletako eskuila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atzea eman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atzerakoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atzetik emandako golpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aukera eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aukeratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurkeztu dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurpegialde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurpegian jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrea hartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurreproiektu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrerakoitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrerapauso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"aurresuposatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurretiko joera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrez ezagutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrezagutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrezki-kutxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurrezki-libreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auto-bidaiari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auzi-gela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axiologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azeleratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azkar igaro\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azkar pasa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azkartasun \": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azken judizioko egun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azken kontuetako egun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpijoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"azpikontinente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babesa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bahi-denda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bahitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baiespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.143\"\n  },\n  \"baliagarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baliagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baliogutxitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balore-merkatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balore bihurgarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baloreen merkatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banakako mahai-tresneria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banakotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banatzaile automatiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baregarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barietate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"barizentro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barneko mediku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barneragarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barnerakoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"basailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baso-soiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bat-etortze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bateatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batera existitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beatifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begi-estalki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begi-globo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begi-keinu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begi keinu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begiespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begirada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"begiraldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"begiratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"behar egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beheko su\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behera bota\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behin-behineko neurri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behin-betikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beilari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belar puska\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belaxkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beneratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berberetxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berdatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berdintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"berehala igaro\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bereizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bermatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berme-emaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berokuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berregin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berreskuragailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berrespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"berrikatan ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berriro argudiatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berriro arrazoitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berriro sinatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berriro zabaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berriz ireki\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"besaulki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"besaulki-barla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"besaulki-patio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"besaurre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beste erlijio bat hartu duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betazal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betearazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bibliotekonomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bidali\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bihotz-handitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bihotz-zabaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bihurgarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biltoki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biosaiakuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biraogile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biraolari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biribildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.391\"\n  },\n  \"birsortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bisa ipini\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bisa jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizialdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizigai\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biziraun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bizirik iraun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bizitza-luzera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizkar-makur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizkar eman \": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bokalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonba su-eragile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botila-berde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boto-eskubide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bozina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brahmanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brinbel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brozel-kamioi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulartsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burdin hari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burtsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burtsa-merkatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buru-irudikapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burura etorri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burusi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burutik ezin kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buztingintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cephalopoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicerone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cross-country\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dadaismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"definitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defizit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deforestazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delineante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denboraldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"despenalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despentsari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"determinatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diakritiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialektikari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialektiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibertimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibortziatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibortzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difusore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diminuendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diploma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diptongo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diru-etorri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diru-laguntza eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disekzionatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diskriminazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distiratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disziplinario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dohatsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doktrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dorretxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dosifikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dotoretze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drama musikal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"e\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebaketa-puntu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebanjelizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebazpide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"edateko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"edertasun-produktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"editore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edukazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edulkoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"egiaztagiri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"eginkizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egiteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"egokia izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egokigailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egonkortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"egonkortzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egozketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eguberri-kanta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egutegi gregoriotar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekidite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eklektiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eklektizismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekonomilari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekonomista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekosistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekumenismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elektrifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elektroforesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.161\"\n  },\n  \"elite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eliz-dei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elizain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elizkizuna egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkar aditze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkar hartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkar ulertze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkargokide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkarri egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkarte erlijioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eltzeitsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endogamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"endosatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endosu-emaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enpirismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enpresa erasotzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entretenimendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entziklopedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entziklopedista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entzumen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"epaiketa-gela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epaitza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epigrama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinefrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epistemologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erabilgarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erabiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eragina izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eragozpenak gainditu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erakarle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erakusbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erantzunbehar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erietxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eritegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlastar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlijioso-elkarte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlijioz aldatu dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlijiozko musika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlikitegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlojugintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ernagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ernetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"erosi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erostetxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erratz-makila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreakzionario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreberberazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errebindikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errebisionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreformatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreformatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreformista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errefrau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erregalatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errege-sagar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erregulatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errentadun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errepaso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreskate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.449\"\n  },\n  \"erretore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errezelak jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errinoplastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erritmo sinkopatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errokari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errotzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ertzeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esaera zahar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esanezina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esgrimalari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskailera-maila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskaintza egiten duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskarmentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eskas eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskoba-makila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskubaloi-pilota\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskuburdinak jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskuduntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskupekoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"eskuzabal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskuzabaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.15\"\n  },\n  \"esleitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"espazio-ontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espazio topologiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espektrofotometro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esplikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"esposatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espresio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estalpea eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estepa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilo libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estiloa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"estimulatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimulu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"etnologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnozentrismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etortze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etxe-abere\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etxe handi eta dotorea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etxejabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etxejaun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etxekotze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"etxetresna elektriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euskarri egitura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euskarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euste-puntu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exigitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existentzialismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezagun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezagutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezatsegin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezetza eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezizena eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezizena jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkon-hitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ezkon-neba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkonanaia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkondei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkondu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkontza-ahaidetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkontza hautsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkontzeko mandatu egin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezkutuko begirada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezpata-buru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezpatari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztanda txiki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztialdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faetoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.311\"\n  },\n  \"fede-aldaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fededun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"fededun berri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festa egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetitxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetix\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fidelitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"fideltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"finketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluoreszente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fonologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forma-aldaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forma eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formalitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fortuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotokimika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotometro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraseologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"froga-harri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gailentasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gainbeheratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gaineakatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gainezkatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaizkile-talde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galde-perpaus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galdekatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galderazko perpaus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galeper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"galtzak egiteko ehun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gapirio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garbikuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gargara\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gargara-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garranga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasolina-zerbitzugune\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasolindegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gatzari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gauza bitxi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gauza ziur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaztetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gehiegizko esposizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gehiengo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geografo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geopolitika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerra-egoera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gertaera gogoangarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gezal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gibelkari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gihar-indar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"giltzaz zabaldu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"giristino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizabanako\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizon-emakume\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizon-puska\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizonkote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glamour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go-joko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gogo handi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goi-klase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"goi-mailako irakaskuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goiko klase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"goitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golardatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golardoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golegile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gora joan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gordetzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gortinak jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gotzaintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradu-beherapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradu-kentze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gramofono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gurtzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gurutz-ontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haborokin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"haizutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handipuzkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handizaletasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handizkako denda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haraindikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harlandu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harlauza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harlax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harmonizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.153\"\n  },\n  \"harrera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"harri zabal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haur eder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hautagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hautakortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hautatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hautemanarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hautespen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazibide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazitoki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazkurri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hedatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hegazkin-txartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hegazti-abeslari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hegazti-kantari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heuristika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezibide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heziera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezkuntza berezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezur eta azal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezur eta larru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezur huts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higikortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hil-kapera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hinduismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipergluzemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipnotizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiruhortz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"histrionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitzarmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitzartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"hitzartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hobea dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hockey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hodi fluoreszente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"homosexualitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hondeaitzur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hortz-eskuila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hortz-sustrai\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hortzetako eskuila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hozte-sistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hunkiberatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hurbileko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hustutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hustutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"huts egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hutsezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iguriki\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ihes egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikaraio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikasketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ikaskuntza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ikastaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikastaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikusbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikusmen zoli\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikuzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"inboluzionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrak neurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"informatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingeniari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inguruko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhibitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injineru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inkubatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inkubazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inmobilista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inpaktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inposaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inpresionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intuizionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intzestu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ipurtondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irabazi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irabazkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iragazgaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irakasbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iraulki-kamioi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iris\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iritsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irizpide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irri-eragile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrintzi egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irteera-marra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irteerako marra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irudikapen-prozesu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irudikapen mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irudikatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"irudizko leku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irudizko mundu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"isilik egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"isilmandatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itsulapiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itxaro izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itxi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itxuratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itzulgarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izadi-zaintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izengoitia eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izengoitia jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izenpetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izenpetzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izotz-hausteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jai aldakor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jai egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jai erlijioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"jaikigarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaki-zatitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jakinduria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"jakitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jakituria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"jan-edan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"janari-hornitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"janari-prestatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jangarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jankide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jantzi-erantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jantziak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jarduera ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jardute\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jauresle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaurtigairik gabeko kartutxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jendarteratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"jesarleku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jokatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jolas egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jolaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"jolastu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.345\"\n  },\n  \"jostailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kafesne\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kalamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kale-agerraldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kale egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaligrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kalistenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kamera-plataforma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kanon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kanonista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kanonizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kanpai-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"kanpo utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"kantadera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kantata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kantitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kapitulazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karabina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karamelu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karikatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karitatezko erakunde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kastitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"katastro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"katedra-askatasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kea jario\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kementsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratoplastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kerubin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kidekotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kirika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kizkurtasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koadernaketa-lantegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koadernatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kohesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koinatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kokaina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kolka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komediante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komentsal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konbentzionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"konbertitu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konduktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konfidentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konkistatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konklabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konpainia bateratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konpainiako animalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontabilitateko egoera-orri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontrol-baldintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontseilari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"kontserbadore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontsumitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koordinakunde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"korta-mutil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koskak berdindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kosmetiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kriket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"krisketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kristalino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kristau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kristau-jakinbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"kros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kualitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kudeaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kuku-erloju\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kulata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kultua eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurruka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurtsore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lagunarteko festa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laikotza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laizismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lan-harreman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanabes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landare-sare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"langile-mugimendua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanordu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanpostu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lasaiera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lasaitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lateralitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legea atera\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legea egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legeak atera\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legeak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legeztapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leheneratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"lehengoratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"lehian ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leku ezagun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lekukotasuna egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lekukotasuna eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leunketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leuntzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libreganbio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liburu-euskarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liburu-sitsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liburuei eusteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"likantropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limnologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literatur genero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literatura-konposizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lizentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"loezin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"logale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"logura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loka\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lorbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"losentxari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lurrera bota\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luzaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luzaroan iraun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luzatze-ariketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luze iraun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madarikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mahai-tenis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mahainguru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mahaizain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maila goren\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mailegari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mailegatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mailegu-emaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mailegu-hartzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitemindu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"makina sinple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldan gora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maneiakaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manifestazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maraztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"markagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"markagailuaren arduradun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"markazain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marralari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marrazo muturluze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maskulinitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"maskulinotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"masokista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materialtasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mediana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"men egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendi-lepo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendi-tontor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mentura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merenge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metafisika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metakarpo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metronomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezadun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezako\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mintz tinpaniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mintzamolde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miresle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"misio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misiolaritza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitologo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modaren industria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mokolodi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moldagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moneta-aldaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoteismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monsinore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monumentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"moraltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"motibazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motrizitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mozkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugikortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugimendu ekumeniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musika erlijioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutil-puska\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutil katxarro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mututu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"nabari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nabariarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nabarituarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturaren kontserbazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nazionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negu-muga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neguburu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neoklasizismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurririk ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nomada-talde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"norgehiagoka ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nork bere buruari galdetu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"offset\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ogi-opil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohar-taula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oharmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ohe estalki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohorezko aipamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oin sendagintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oinarrizko ezagutza-prozesu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oinezkoentzako zubi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oliatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omenaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ondo egoki\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oneratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onetsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.167\"\n  },\n  \"ontzi izotz-hausle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opari egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oratorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordaintzaile berankor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orgasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orojakintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orojakite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oso gozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oso zahar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ospetsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ospitale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ospitalizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostatatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostatu eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostatu emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ostatu hartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"osteopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostertz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otargin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otarregile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otarregintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otoitz-orduen liburu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otoiztegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otzaragile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozen berba egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pagoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parada eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paradisu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"paraje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pase sakon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patronal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patruilatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patruilatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediatra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelegrino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pellokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pentsio-plan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perihelio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perkusio-instrumentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perkusiozko instrumentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertsonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petrolio-zurrusta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ping-pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pisu baliokide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piztien etxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planifikatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plankton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plast egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plataforma birakari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"platuxa latz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pluralista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"podologo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poema sinfoniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polaroid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polisindeton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portzelana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"positibismo logiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posta elektronikoz igorri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postmodernismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prediku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"preso politiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probokazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"produktu-lerro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"profesionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa berezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programazio logiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostituzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prototipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"publiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"publizitate-agentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punta-puntakoa den\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punteatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puntu geografiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puntua egin duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pusla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puzzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rapport\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rep\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saiheste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saindutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakalari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakea-ateratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakoneko pase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakristau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salketarako abilezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saltegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saltoki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanskrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"sariketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"saskigile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saskiratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segida ekologiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segurtasun-sistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sekretismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sekta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sendategi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serbomekanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sesto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex-appeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexu-jarduera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"silarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinesbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sineste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"sinistarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinkronia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinkronismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sintonizatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sintonizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sofistikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"soineko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"soinua sortu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solasean ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solastu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soldatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sorospen-postu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sozialki nabarmena dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjektibismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjektibotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subkultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufragio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfonamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumatuarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"takimetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talde-lan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talentu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"tapaki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tapoi-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarrotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"taxutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"te-etxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teknologo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telefono-etxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tentaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teosofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tesina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"test psikometriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testigantza eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testigutza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tinpano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tintin egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tiuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tokoferol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topaleku\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tradizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tragikomedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traktu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transfer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transistore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transzendentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triforio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tripode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trufagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turuta-dei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txabalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txalo jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txilin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txinta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txistu egiten duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txistua jotzen duena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txistuka ari dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txonta arrunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txotxolokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uda-muga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"udaburu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uhara\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uhindura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulermen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ultra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultraeskuindar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umegaltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umore-sen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"une garrantzitsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urpean gelditu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urri hartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urruma egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"usaimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usain gozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usta izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utrikulu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veld\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xake mate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xarmakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerografia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xixel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yeti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yoga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zabaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaharkitu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zahartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"zain egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zapatila\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zapla jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaplastakoa eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zefalopodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zehaztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.197\"\n  },\n  \"zelaidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zenbaki erromatar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zenbakia jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zenbakitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zenbaterainoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zenotafio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zerbitzu-sari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zerbitzuak\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zeregin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"zeremonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"zerrenda-buru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zerrenda beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zeru\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"zeru-urdin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zerumuga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zientifiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zientzialari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zilegitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zinpeko aitorpen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zintzarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zipriztin-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zirikada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zirkunflexu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziurtapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziurtatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.171\"\n  },\n  \"zolitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.098\"\n  },\n  \"zooide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zor izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorretan izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorrozkailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorrozteko makina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zubi-pilare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaitzak bota\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaitzak ebaki\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaitzak moztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaitzak pikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaitzak zatitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zulo beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurgagailuarekin garbitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurkaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zutiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuzpertze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aberaspide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abitaminosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absentismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolutista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adarra jotzen ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adierazgarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adimen-elbarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aglomeratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguazil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahaldun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ahapaldi egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahapeka esan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aho-burdin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahopetik esan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahotik ahora ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahoz aho ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahozapi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahuendatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahulezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.094\"\n  },\n  \"ainguratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aipagabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aireko armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"akabatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alaba zaharren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alargun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldarriak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldarrikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alde batetara utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alderdi politiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldez aurreko baldintza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aldigaizto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alditxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alferkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.094\"\n  },\n  \"alkandora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alkoholismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"almez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"almiranteorde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alopezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alproja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.056\"\n  },\n  \"altxaprima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amaurosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amiralorde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amorrazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"analgesiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"andrezale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anglofobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anioi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipiretiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisemitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitermiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antrax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antxeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apartamentu-etxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apentzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apurketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apustu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"arazo tekniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbitratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcitro-lanak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ardatz-bertute\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ardatzeko bertute\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arduragabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ariotar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arkakarats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma-fabrikatzailea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma arin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma eramangarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armarekiko lapurreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armazko lapurreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrandia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arrantzan egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrantzatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrastaka eraman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arraza beltzeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriskatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arropa-sits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrotz gertatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artezilari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asaldu mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asaldura mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aseguru flotatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspergarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astakilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"astakume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astanafarreri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astapotro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atabal-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atabal joaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atzeraezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"aurora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurpegi-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurre egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aurretik jakin ezin den\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ausarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"autismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auto-aseguru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autu-mautu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auzitaratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auzizale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axolagabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.163\"\n  },\n  \"azalkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"azalpen luze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"azoka txiki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpijokoa egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.116\"\n  },\n  \"azpiko gona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpikotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpilana egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azpimarra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aztergai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bahitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bainu-bata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bainu-txabusina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bainu-txano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bainujantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bakun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baldartasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balioztapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bandalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barizela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basabaratxuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basabazter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basahate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basaka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basasto asiar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bat batean ireki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bata bestearen aurka egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bateaz jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baxutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bazterrera eraman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bazterrera utzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begirunerik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behatxulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behaztopa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beherako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beheramendu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bekaizkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bekokiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belaunpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beneditar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bentrilokia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berilio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berna-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berrautaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berrautatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berrerorle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berset\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bertute kardinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berunki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betaurreko babesle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betiko bizitza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bidagabe eralki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.086\"\n  },\n  \"bitan adarkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitan banatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitsadera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitter alkoholdun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biziraupen sena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizitasuna galdu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blokeatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-jeans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolo-bolo ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borondate ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borroka izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrokaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrokan ibili\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bortxakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boska\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxeo-eskularru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brometan aritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bularraldeko angina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bularreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bularreko angina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulkada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"bulkanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumeran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burdin hesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burdinaga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buru-estalki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buru-nahaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buru eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burubero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buruhauste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"buztan-motz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buztin erre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheviot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chinaman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croup aizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deformazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"demeritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"dendrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desertu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desfalkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desilusio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desinfekzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desodorante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desoreka mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deuseztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"difamatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difrakzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digestio-etendura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"din-dan ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dingo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diputatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"diru-xahuketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disenteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distira kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ditiranbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domingotar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doministiku\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"droga-saltzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebakuatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebakuazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebatsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.093\"\n  },\n  \"ebonita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edankuia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eguraldi-gizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eguraldiaren berriemaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eguzkitako perretxiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ehiza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.056\"\n  },\n  \"ehiza-hegazkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ehorzketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekaitz gogor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ekologista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ele-mele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elektrokuzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elkar-jotze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"emagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emakumezale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emazurtz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endokarpo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endredatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energia erradiatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enpatxu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epileptiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eramandako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erasoa jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"erbesteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erbinude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ereinotz-koroa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eremu elektriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eremu magnetiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erlats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erloju-kate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ernegu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erosio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eroska\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errabino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erraitsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erramu-koroa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erran-merran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erraz estutzen dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erraz larritzen dena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreberentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreflexu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errege-hilketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreginorde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erreprimitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erretasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erretolika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erroseta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errubeola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskalar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskandaloso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskapulario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskatologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"eskuadroi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eskuraezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmeril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esne pasteurizatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esnobismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esparatrapu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espazio-jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esperientzia sentsorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espoliazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estafilokoko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estatu-kolpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estremismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estropezu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etorkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etsigarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etsikor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euri-erauntsi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutanasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exekutatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exortzismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ez betetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ez fio izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ez gainditze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ez obeditze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezartze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezaugarri izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezezkotasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezeztatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ezinegon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.26\"\n  },\n  \"ezmoraltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ezpain-zapi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztanda egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztenkada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eztenkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eztul egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fakzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faltsutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"febrifugo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fenilamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fidagaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fidagaiztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figura erretoriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fistula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fitopatologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flotagarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folklore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fox-trot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frantziskotar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frogaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frotis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gai zerrenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gainbehera etorri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaingona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gainkargatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaitasun ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaitzerran\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaixotasun kardiobaskular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaizpide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galbeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galtzari-eusteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galzori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gammaglobulina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garaiezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrasiak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrotez erail\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas-garbigailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasaren aurkako maskara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasaren kontrako maskara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gehiegi kargatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerezi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gerra-toki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerrako krimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerraontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"giza baliabide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizadi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizatxarkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gizotso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gladiadore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gliptika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gogaitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goldatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goldelari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonazale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonazpiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonokozia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goraki berba egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorpu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorrotagarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gostua izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grabitazio-eremu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graduz jaiste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grebalari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guduska izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gurutziltzatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutuntxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutxiegitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haize-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haize-bolada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"haize-parrasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haize-pirrinta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haize gozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haize leun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haizekada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haratusteljale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harmen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"harpajole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harria landu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harzuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hastandu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hatz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haur-hilketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haustutze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazizurri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazkura egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebefrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hegazkin-pista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hekatonbe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"helburu jakinik gabe hitz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hematuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"heresia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herpes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"herrestan eraman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrestatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"herri-musika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hertsapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heziera txarreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezigabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hezigaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higitzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higuingarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hileta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hileta-elizkizun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hilgarritasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hilkortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hilotz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitzaldi luze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitzez hitz hartutako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiztunkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hobiratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hodeitasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hodeitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hondakindegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hondarpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hotz-hotz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hurbilgaiztasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ibilgetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idoro\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idorreri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"igeritako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ihes-indar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iheskortasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikaragaitz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikatz-paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikusgaitz bihurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikuskari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikustezin bihurtu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ikustezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilinti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imitatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indar-eremu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indar kanporakoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrak bildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrez banandu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrez banatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrez bereizi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indarrez ebaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indigestio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inguraketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inguratze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhalagailu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inkoherentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inmigrante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmigratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inpresio sentsorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interprete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intriga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intsektizida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intxaur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intxaur muskatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intziri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"iparrekialdeko haize\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ipurkoloka ibiltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irabazte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iragazkaizteko gai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iraintzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irentsi nahi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrati-faro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrazionaltasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iruzur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.17\"\n  },\n  \"iruzur fiskal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iskanbilatsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isometria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"istilu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.152\"\n  },\n  \"itsas-bataila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itsas zuzenbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itsasneska\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itxuragabetze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"itzalgaiztu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itzalpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itzulezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itzultze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izotzaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izozketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izoztu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izter-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izterreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iztezain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jainko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jantzi-sits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazarle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazarpen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"jeans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jelatu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jipoialdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodilin-dalan ari izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kabala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kafeina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaftan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaio beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"kalkulatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kalumniatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kamisoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kapital-ihes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karbono-beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karmelita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kartzelari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaskarin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kasula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"katramilatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"katu siamdar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kazka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keinu egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keskatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kexu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kinina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kinka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"kirimikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kitzikari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kixotismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"klaustrofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kleenex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kleptomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kobalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koentzima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koherentziarik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"kokospeko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kokoteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koliko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kolonizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kolonizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kolore marroi-gorri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"komenigarritasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"konjurio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konplementuaren finkapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konplizitate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konponketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konspiratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"konstituzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontakizun luze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontralmirante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontrario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.157\"\n  },\n  \"kontserbazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"kontsolazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kontzertina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kopeteko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"korindoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kretinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kriogenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kriptograma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kuartzita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kukutxeztul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kuluxka bat egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurrunka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kutsapen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kutsatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laido egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lainotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lan bortxatuen esparru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landare basatitu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landatzeko tresna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanuzte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapurreta armatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lardekitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larrantzi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larrua kendu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lauzkitu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lazeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lege-urratzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lehen alaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lehen seme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lehergailu-teknikari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leherrarazi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leiar elektroniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lekatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lelokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente elektroniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lepiota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leuzemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lexington-bataila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"librea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liskarra izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liskartsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"litxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lizuntze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lo egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lodi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lotsagabetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lotsagarrikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lotuuztartu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugorri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lupulu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lur emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lurpeko babestoki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lurreratzeko pista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magia beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mainak egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"makur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"malaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malenkoniatsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malgutasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malnutrizio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manganeso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"margo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marikoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"marka egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marruma egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marsala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"martir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"martiri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maskarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mehatsatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melankoliko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melenga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendekatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menderatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mendizain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meridiano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesfidatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metanol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meza-jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"milika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minbizi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mindulinkeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minkentzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miserable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misogino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mixomatosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"momifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monarkia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongolismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moralitaterik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moraltasunik ez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordoilotu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moteltze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muin luzanga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muki-jariaketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nagusikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nahasle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nahi-gabeko gizahilketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nardagarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narkotrafikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narkotrafiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narras eraman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negar-ontzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negar egile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negartsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negatibismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nekealdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nekrofilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nekromantzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nekrosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurastenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurrigabekeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.129\"\n  },\n  \"neutral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nirvana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obedientzia ukatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objekzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"obsesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"obskurantista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odol ahulezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odol hotz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odolkoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odolzale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofentsiba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ogen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ogi beltz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohatila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohe-txano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ohondikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oihal bustigaitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oihuka hitz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oilo-ipurdi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oin-aulki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oinarrizko partikula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"okada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"okerrera egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oktopodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onartzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onddo-kapela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ondoez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.153\"\n  },\n  \"onetik atera\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onkogene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operazio-base\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordainbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordezkarien ganbera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orientatzeko sen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orrolari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ospitale-laguntzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostikatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.093\"\n  },\n  \"otoruntza egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozen hitz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paddy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palpitatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paludismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paperezko zapi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paranoia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partidu politiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastel txiki bete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurizazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelagra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelbis-gerriko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertsekuzio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pestizida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petrifikazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petrikilokeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pikaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pikorta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pikortsutasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pila-galbaniko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilpiratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piper egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"piraterian aritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pizar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piztien parkea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planimetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plutokrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pobretze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polarizatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polizi agente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polizia-agente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pospolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postilioi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postulazio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pozgarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pozoidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pozoitze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"premu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prentsa idatzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presozain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestuez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probokatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"produktu akastun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propultsio-sistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prusiera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psikoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requiem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"sagarmin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sakondu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salaketa-egile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salakot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"samintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarekada egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarkoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarong\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarraila hautsi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarraskijale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sartu-atera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sasiarte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sasieskola egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sasipintore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sastatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segmentutan banatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segurtasun-uhal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seinale izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selenio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seme zaharren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septizemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinoti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinposium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soildu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soinu zuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solidotze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorbalda-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorgin-baratxuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorgortze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sotana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"su-emate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"su arriskurako aseguru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"su artifizial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"su eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sudur-babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suge-belar pikart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suizidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sukar tifoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sukarkontrako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suntsiketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"surrealismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sutan egon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sutan jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taberna-zulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taloi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarantula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarratatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tatuatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tematu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tente jarri\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tentel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"teratologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testu mekanografiatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tie-break\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tifoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tintausain argi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tira egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirabira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tiradera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiroketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"titanio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tolesgabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tontakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tpustean ireki\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trafikatzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tripako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triunbiratu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trufa egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tunante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turbulentzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tutu-hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txabusina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txaleko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txankro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txanoa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txanpongile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txantxetan aritu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txaradi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txarratel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txatal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txeke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txikarra egite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txilaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tximatsu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txinel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txingor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txirotze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txonta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txorakeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"txorimalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"txoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txungo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"txurroz jo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"udaltzain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ukondoko babes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulertezintasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.158\"\n  },\n  \"umezurtz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniformetasun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unilateralismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ur-zikin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urdindu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urkatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uroilanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urpean igeri egiteko jantzi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usain-kengarri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usain-kentzaile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usurpatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uxatze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uzkur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uzkurdura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"xehe-xehe egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaflada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zakartegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaldiketari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zango-bizkarreko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zantar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zapalketa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaplastako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zaporea izan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zarrastatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zarratatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zatai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zauritu ezin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zehaztasunik gabe hitz egin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zelata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"zepategi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zerena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zikloi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"zimeldura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zinematika\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zinkurin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zirkunstante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zirrosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zirtzil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zokolu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoologiko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorigabe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zornadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorrikeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorrotz begiratu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zubi-buru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhaixka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zuhamuxka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zukutu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurdaki\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurru eta purru jan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurrul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurrungatu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurrutari eman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurtz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/Catalan/senticon_ca.json",
    "content": "{\n  \"acontentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"admiració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.331\"\n  },\n  \"admirar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.382\"\n  },\n  \"adorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.293\"\n  },\n  \"afavorir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.258\"\n  },\n  \"afecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.139\"\n  },\n  \"afectuositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afectuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.157\"\n  },\n  \"afició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.289\"\n  },\n  \"afortunat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"agradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.661\",\n    \"std\": \"0.269\"\n  },\n  \"alegrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.271\"\n  },\n  \"alegrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.37\"\n  },\n  \"alegre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.214\"\n  },\n  \"alegria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.292\"\n  },\n  \"alleugerir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.405\"\n  },\n  \"amar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"amor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.297\",\n    \"std\": \"0.174\"\n  },\n  \"amorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"anhel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"animar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.282\"\n  },\n  \"animat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.282\"\n  },\n  \"apassionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"apreci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aprovat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aprovatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ardent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.25\"\n  },\n  \"assossegat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"autosatisfacció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"avidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benefactor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"benefici\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.339\"\n  },\n  \"beneficiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.088\"\n  },\n  \"beneficència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.439\"\n  },\n  \"benevolència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"benèfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"bo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.857\",\n    \"std\": \"0.152\"\n  },\n  \"bondat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.298\"\n  },\n  \"bonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.19\"\n  },\n  \"bé\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"calmat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"captivador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.438\"\n  },\n  \"complaença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"complagut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"confiança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.272\"\n  },\n  \"confortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"content\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"contentació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"convençut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"correcte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.821\",\n    \"std\": \"0.094\"\n  },\n  \"càlid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.25\"\n  },\n  \"delectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"destre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.844\",\n    \"std\": \"0.12\"\n  },\n  \"divertir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"dolç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.447\"\n  },\n  \"embriagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"emoció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.402\"\n  },\n  \"enamorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encertat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.149\"\n  },\n  \"encisador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.391\"\n  },\n  \"encoratjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.544\"\n  },\n  \"engatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"enginyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.19\"\n  },\n  \"engrescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ensopiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"entusiasme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.604\",\n    \"std\": \"0.292\"\n  },\n  \"entusiasta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"envalentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"eròtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.163\"\n  },\n  \"estimació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.19\"\n  },\n  \"estimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.33\",\n    \"std\": \"0.326\"\n  },\n  \"estimulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"estimulant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eufòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.161\"\n  },\n  \"eufòric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"excel·lent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"excitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"exhuberància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"expert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extasiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exultació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fascinant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.413\"\n  },\n  \"favorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.844\",\n    \"std\": \"0.188\"\n  },\n  \"felicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"feliç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"fervent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.12\"\n  },\n  \"fervorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fratern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"gaubança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"gaudir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"grat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"gratitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.375\"\n  },\n  \"hilarant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hilaritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"honrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"honrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.679\",\n    \"std\": \"0.197\"\n  },\n  \"hàbil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.844\",\n    \"std\": \"0.12\"\n  },\n  \"ideal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.306\"\n  },\n  \"idoni\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.705\",\n    \"std\": \"0.146\"\n  },\n  \"interès\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.439\"\n  },\n  \"intoxicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"jocunditat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jocós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"joia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.607\",\n    \"std\": \"0.2\"\n  },\n  \"jovial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"jovialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.25\"\n  },\n  \"just\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.163\"\n  },\n  \"languiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llangor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lleialtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"magnífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.804\",\n    \"std\": \"0.159\"\n  },\n  \"manyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.844\",\n    \"std\": \"0.12\"\n  },\n  \"optimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"optimístic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"plaure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.244\"\n  },\n  \"plàcid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"positiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.26\"\n  },\n  \"preferència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"prometedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"proper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.211\"\n  },\n  \"reanimar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.505\"\n  },\n  \"recte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.297\"\n  },\n  \"rialler\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"satisfer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"satisfet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satisfet de si mateix\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"seductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"seduir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.137\"\n  },\n  \"serè\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.068\"\n  },\n  \"simpatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.292\"\n  },\n  \"solaçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"somrient\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"tendre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.315\"\n  },\n  \"tendresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"tranquil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"tranquil·litzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquil·litzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"tranquil·litzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traçut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.833\",\n    \"std\": \"0.144\"\n  },\n  \"triomfador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"triomfant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ufanós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"utilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.331\"\n  },\n  \"victoriós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vigoritzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vigoritzant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"àvid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"íntim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"útil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.143\"\n  },\n  \"abatiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"abatut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"abominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"aflicció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.534\",\n    \"std\": \"0.113\"\n  },\n  \"aflictiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"afligidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"afligiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afligir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.0\"\n  },\n  \"afligir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.105\"\n  },\n  \"afligit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.079\"\n  },\n  \"agravi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agressivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"agreujat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alacaigut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"alarmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alarmat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alinear-se amb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"alterat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"amargor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"amoïnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.109\"\n  },\n  \"amoïnar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.094\"\n  },\n  \"angoixa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"angoixar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"angoixat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.125\"\n  },\n  \"animadversió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.051\"\n  },\n  \"ansietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antipatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.102\"\n  },\n  \"apenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"apesarat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"apocament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.217\"\n  },\n  \"apocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"aprensiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"aprensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apurar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"atabalar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"atabuixar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atac de pànic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aterridor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"aterrit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"atroç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.675\",\n    \"std\": \"0.163\"\n  },\n  \"autocompassió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.217\"\n  },\n  \"avariciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.217\"\n  },\n  \"avergonyiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avergonyir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"avergonyir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"avergonyit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aversió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.08\"\n  },\n  \"avorrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.157\"\n  },\n  \"aïrament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aïrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aïrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"basarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bel·ligerància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"calamitós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"capbaix\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"capmoix\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"colèric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"commiseració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"compadir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compassió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.161\"\n  },\n  \"compassió de si mateix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compunció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consternació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contrarietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.656\",\n    \"std\": \"0.188\"\n  },\n  \"contrició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cremor d'estòmac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cruel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"crueltat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.0\"\n  },\n  \"culpabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cínic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"decaigut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"defalliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"defraudat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demolidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"denigrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"deplorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.177\"\n  },\n  \"depre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"depriment\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deprimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"deprimit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desagradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desagradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"desagraïment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desanimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.6\",\n    \"std\": \"0.056\"\n  },\n  \"desanimat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desaprovar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.191\"\n  },\n  \"desassossec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"desassossegat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desconfortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desconsol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desconsolació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desconsolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"descontentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descoratjador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"descoratjament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"descoratjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.105\"\n  },\n  \"desdeny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.102\"\n  },\n  \"desdenyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desemparament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desemparança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desesperançat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desgrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.125\"\n  },\n  \"desgràcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.083\"\n  },\n  \"deshonorant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desil·lusionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desitjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.137\"\n  },\n  \"desmoralitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.0\"\n  },\n  \"desmoralitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despietat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"despit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desplaure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destructiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"desànim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"detestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"dificultós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"difícil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.125\"\n  },\n  \"disgust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"disgustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disgustat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"dissort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.6\",\n    \"std\": \"0.056\"\n  },\n  \"dissuadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doldre's\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dolgut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dolor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.488\",\n    \"std\": \"0.102\"\n  },\n  \"dolorit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"dolorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.131\"\n  },\n  \"emmurriament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empaitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.055\"\n  },\n  \"empegueïment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empipador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"empipament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empipat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"emprenyador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"emprenyat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encalçament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encolerir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"encolerir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encongiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"enfadar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"enfadat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"enfadós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"enfellonir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enfredorir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfuriament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfuriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfurir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"enfurir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enrabiada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"enrabiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entristir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entristir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.072\"\n  },\n  \"entristit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enutjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"enutjar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enutjat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enutjós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"esborronant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.19\"\n  },\n  \"escàs\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.133\"\n  },\n  \"esfereïdor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"esgarrifós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.19\"\n  },\n  \"esglaiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espantat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espantós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.151\"\n  },\n  \"esparverador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"esquira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estremidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exacerbació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"exasperació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"exasperant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"exasperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"execració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.051\"\n  },\n  \"execrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"fart\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fastidiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.098\"\n  },\n  \"fastiguejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.347\",\n    \"std\": \"0.083\"\n  },\n  \"fastiguejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fastigós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"fatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"fatigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.112\"\n  },\n  \"fellonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fer fàstic\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"forassenyat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frustració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"furibund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"furiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"fàstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.079\"\n  },\n  \"fúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"geniüt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"histèria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"horrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.55\",\n    \"std\": \"0.168\"\n  },\n  \"horripilant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.184\"\n  },\n  \"horror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.151\"\n  },\n  \"horroritzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"horroritzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"horrorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.604\",\n    \"std\": \"0.129\"\n  },\n  \"hostilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"humiliar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"hòrrid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.191\"\n  },\n  \"ignominiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inclement\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.289\"\n  },\n  \"incomodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.063\"\n  },\n  \"indignant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infelicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"ingratitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inhumanitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"inoportú\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.188\"\n  },\n  \"inquiet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.161\"\n  },\n  \"inquietar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"inquietud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.126\"\n  },\n  \"insatisfet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"insegur\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.072\"\n  },\n  \"inseguretat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.188\"\n  },\n  \"inspirar aversió\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insuficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insídia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"intimidat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"intolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"intranquil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"intranquil·litat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"iracúndia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irascibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irascible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"irat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irritació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.42\",\n    \"std\": \"0.081\"\n  },\n  \"irritant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.185\"\n  },\n  \"irritar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.391\",\n    \"std\": \"0.093\"\n  },\n  \"irritat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"lamentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.191\"\n  },\n  \"llòbrec\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"lúgubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"macabre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"mal caràcter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"mal humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.125\"\n  },\n  \"mala llet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maleficència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malenconia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malenconiós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maliciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.185\"\n  },\n  \"maligne\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.161\"\n  },\n  \"malignitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"malvat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malvolença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"malèfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"malèvol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.775\",\n    \"std\": \"0.137\"\n  },\n  \"malícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"melancòlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menyspreança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"menysprear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.168\"\n  },\n  \"menyspreu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.108\"\n  },\n  \"misantropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misantròpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"miserable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.323\",\n    \"std\": \"0.152\"\n  },\n  \"misogínia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misoneisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moix\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"molest\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.7\",\n    \"std\": \"0.137\"\n  },\n  \"molestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.443\",\n    \"std\": \"0.084\"\n  },\n  \"monstruós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.191\"\n  },\n  \"monòton\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"mortificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"mortificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosquejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"míser\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"múrria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"nauseabund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"negre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.391\",\n    \"std\": \"0.17\"\n  },\n  \"neguit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"nerviós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"obscur\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.484\",\n    \"std\": \"0.164\"\n  },\n  \"odi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"ofendre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.125\"\n  },\n  \"ofenós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"opressió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"oprobiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.404\",\n    \"std\": \"0.104\"\n  },\n  \"penediment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penedit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"penós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.163\"\n  },\n  \"perjudicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.224\"\n  },\n  \"pertorbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.093\"\n  },\n  \"pesar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.112\"\n  },\n  \"pesarós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"pesat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.188\"\n  },\n  \"pessimisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"pessimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"petrificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poruc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"preocupat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pressentiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pudor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pànic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"rabiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rancor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.086\"\n  },\n  \"rancúnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.072\"\n  },\n  \"rebequeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"recança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reguard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remordiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repel·lir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repugnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.157\"\n  },\n  \"repugnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"repugnància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.422\",\n    \"std\": \"0.08\"\n  },\n  \"repulsiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"repulsió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"repulsori\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resignació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressentiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ressignat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ràbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.112\"\n  },\n  \"sentiment de classe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentiment de culpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"simpatitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"simpatitzar amb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sortir de polleguera\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sufocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temerós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"temor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"temorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tenir ganes de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"terrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.137\"\n  },\n  \"terrorífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"terrífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tribulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"trist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.155\"\n  },\n  \"tristesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.258\"\n  },\n  \"tristor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.056\"\n  },\n  \"turmentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"témer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tírria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"ultratjant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"vergonya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.102\"\n  },\n  \"vergonyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.21\"\n  },\n  \"vexació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vexador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"vexant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"vexar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"vexatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"vilipendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"vomitiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altruista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apacible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"benèvol\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complaure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.25\"\n  },\n  \"delectar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"esperançador\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"maco\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"satisfactori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sortós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"asquerós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"culpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"desolador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"devastedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equívoc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impropi\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenir por\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acollidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"afable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"agradós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amenitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"animós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atractiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"avantatjós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bell\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"benigne\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bon estat físic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bona forma física\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"clamorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"clavat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cèlebre\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"delectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"delitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"delitós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"destacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dispost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"en forma\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"encantador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"esbargir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"espaterrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"esplendorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"esplèndid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.771\",\n    \"std\": \"0.205\"\n  },\n  \"estupend\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"estètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.177\"\n  },\n  \"exculpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"famós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fenomenal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.361\"\n  },\n  \"filàntrop\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"finíssim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"forma física\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"formós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.917\",\n    \"std\": \"0.072\"\n  },\n  \"genial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.781\",\n    \"std\": \"0.295\"\n  },\n  \"gloriós\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"goig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"harmoniós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"heroisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"honorabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"incitament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"magneficència\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"meravellós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.958\",\n    \"std\": \"0.072\"\n  },\n  \"millor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modèlic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"notable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"pacífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"partidari\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"passatemps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"preciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.781\",\n    \"std\": \"0.157\"\n  },\n  \"preferencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"preferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"prosperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"prosperitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"respectabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"respectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rubicund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"salubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"saludable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"salvament\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sancionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"seràfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"òptim\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adolorir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"adulterí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adustesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"agarrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"anguniejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"aparençar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"assassí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atròfia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"avern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bastard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.063\"\n  },\n  \"bord\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"brutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bàratre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"calumniador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calumniós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"carregar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"castigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.0\"\n  },\n  \"censurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.0\"\n  },\n  \"condemnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cretí\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"crisi nerviosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"declarar culpable\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deixar-la anar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"denigrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"denigratori\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desaparegut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desconèixer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desemparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desesperançar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"desgana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desharmonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deshonra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"desprestigiador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deteriorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"difamador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difamatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disconformitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"eixut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"enfosquir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"esfumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"espuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"expenses\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"faltar al respecte\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fer rabiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fill il·legítim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fill natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fingir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fracassar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fètid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"garrepa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gasiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"homicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"idiota\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.144\"\n  },\n  \"imbècil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"immoderat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inadmissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"incompetència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.833\",\n    \"std\": \"0.0\"\n  },\n  \"incriminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inelasticitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"infern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"infidel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inhabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"injunció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"injuriós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inobservació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inobservança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"insultant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"irrespectuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"llibertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mal ús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mala disposició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malifeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"manca de tacte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mentider\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no qualificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"oblidat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"obscurir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"orc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pestilent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pispar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"punir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.0\"\n  },\n  \"punt dèbil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"putada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"puteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"putrescible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"recriminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reialme de les tenebres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"reprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reprotxable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reprovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"retard mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sense amor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sinistre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"tacany\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tanoca\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"treure de'n mig\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"veleïtós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"acceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"adoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alabar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"alcista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.144\"\n  },\n  \"amè\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aprofitar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aprofitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ben fet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"benaurança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"benaventurança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"beneficiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"benvingut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bona voluntat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bufonejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"carismàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"complaent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.125\"\n  },\n  \"conformisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"congruència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"constructiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"consumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"covenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"curatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"decor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"decòrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desil·lusionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"diví\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"escrupolositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"esponerós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exalçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"experimentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"falaguer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fastuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"festeig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fidedigne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"flòrid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fotogènic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"galanteig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gallard\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ganes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gratificant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"guaridor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.25\"\n  },\n  \"idoneïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"informat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"judiciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.265\"\n  },\n  \"lloar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"mal·leabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"manipulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mesurat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nutritiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"oportunista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"panoràmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plaent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plasticitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plaïble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"polifacètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prosperós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"puixant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pèrit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reconstructor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rectitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sanatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sublim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"substanciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"venturós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"veterà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abaixar el to\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"algofòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ampul·lositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ampulós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"anar en vaixell de vapor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"antiestètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"antipatriòtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aparatositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"apurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"autoinculpació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"barroeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brau\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bravada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"burlaner\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"butzinaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ceguesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"condemnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cruesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"culpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deficiència profunda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desaconsellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desagradós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desagraït\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desequilibri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"deshonrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despreciat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"destructivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"detestat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dispèptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enfosquit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enganyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.072\"\n  },\n  \"envilanir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"envilir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"esquizofrènic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"estar malalt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fer greu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ferum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fetor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fictici\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fortor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grosseria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hipocondria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"immatur\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imperdonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impetuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impopularitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imprevisió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incumpliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indigerible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indigestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ineficàcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inexacte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ingrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inobservància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"intransferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"linxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mala olor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malhumorat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malhumorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"manca d'amabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"misofòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"odiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"passivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pestilència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ploricó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pompositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rabiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rabiüt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"renyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"retreure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rondinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rondinaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sacrificar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"somicó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sordesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tenir un col·lapse nerviós\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tenir una pèrdua\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tita molla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tonteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tosquedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trampós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trastornat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"traumatitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trifulga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tuf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"venjatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vilania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"volàtil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xenòfob\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"absort\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.129\"\n  },\n  \"abundós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"acceptabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"accessible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.609\",\n    \"std\": \"0.104\"\n  },\n  \"aconsellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adequació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adequat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.149\"\n  },\n  \"adient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.653\",\n    \"std\": \"0.141\"\n  },\n  \"admirable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adornat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afirmatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.181\"\n  },\n  \"ajogassat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"angelical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.545\"\n  },\n  \"angèlic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.545\"\n  },\n  \"apaivagament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.072\"\n  },\n  \"apropiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.125\"\n  },\n  \"aprovar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.315\"\n  },\n  \"apte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.588\",\n    \"std\": \"0.257\"\n  },\n  \"artístic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"assequible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atraient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.213\"\n  },\n  \"auxiliar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.217\"\n  },\n  \"beneficiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"bergant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"bona persona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bona salut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bona sort\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bufó\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.157\"\n  },\n  \"campió\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"capaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.606\",\n    \"std\": \"0.249\"\n  },\n  \"caràcter agradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.105\"\n  },\n  \"cautelós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.536\",\n    \"std\": \"0.086\"\n  },\n  \"cavaller\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cavallerós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"circumspecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conciliador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conegut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conspirador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"continuitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"convenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.141\"\n  },\n  \"copiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"correctiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cortejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creativitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cristià\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"càndid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"decorat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"defendre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deliciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"delitar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"desenterrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"destresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.277\"\n  },\n  \"detallat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"digne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.217\"\n  },\n  \"dissociar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"distingit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.144\"\n  },\n  \"divertir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"divertit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.12\"\n  },\n  \"docte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"educable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"educat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.163\"\n  },\n  \"eficiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elaborat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elegant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"elogiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.331\"\n  },\n  \"embadalit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enjogassat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entreteniment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"entretingut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"entusiasmat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"epicuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erudit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"escaient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.149\"\n  },\n  \"especialitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"específic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estalvi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estimat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"eufònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"evident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.102\"\n  },\n  \"exacte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.125\"\n  },\n  \"exemplar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"explícit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"extrafí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"factible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fascinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.53\"\n  },\n  \"fecund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fer la cort\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"festejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"fidel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"formatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fortitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fèrtil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"galant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galantejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"generós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"graciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"grotesc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"guai\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"guanyador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"guapo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hospitalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"identificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"il·luminar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"il·lustrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"il·lès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imaginatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imponent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.442\"\n  },\n  \"indemne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"indicat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.149\"\n  },\n  \"inferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ingeniós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"instruït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"intel·lectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.191\"\n  },\n  \"intel·ligent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.143\"\n  },\n  \"intencionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"interessant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"interessar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.442\"\n  },\n  \"inventiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irreprotxable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"jogasser\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"juganer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"liberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"lleial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"lletrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"llorejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"lògic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"majestuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.315\"\n  },\n  \"maquinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meravella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.306\"\n  },\n  \"mereixedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meritori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"màxim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"noble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.303\"\n  },\n  \"observable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"observança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ocurrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oportú\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.105\"\n  },\n  \"ostensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"parlant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.143\"\n  },\n  \"perseverant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"pertinent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"petitó\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pintoresc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"pletòric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"popularitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"posar bé\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"potable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"practicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"precaució\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"precís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.139\"\n  },\n  \"preeminent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preponderant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"productor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"progressar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"prolífer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"prolífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"propici\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.213\"\n  },\n  \"propiciació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.072\"\n  },\n  \"prudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.146\"\n  },\n  \"pròsper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.125\"\n  },\n  \"purificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"qualitat superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"raonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"realitzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"reanimat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconegut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.237\"\n  },\n  \"reconeixedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"refinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.382\"\n  },\n  \"refrescant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"rehabilitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"remei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"remirat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"respectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"respecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"reverend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revivificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"sagaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"sant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"savi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"selecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"sensacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"sensat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.725\",\n    \"std\": \"0.163\"\n  },\n  \"sensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"senyorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seriositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.072\"\n  },\n  \"servicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sibarític\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"significant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"simpàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sobreabundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sorneguer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"suficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"superabundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"sà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"súper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"tatxonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"temptador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"venerat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"viable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"victòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vitalitzant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluptuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acabat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"advers\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"advertència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"afusellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"agreujament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"aleatorietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amenaçador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"anguniós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"anèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"assassinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.112\"\n  },\n  \"assassinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.0\"\n  },\n  \"assolador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atrofiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aturament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"badomeries\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"badomies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"beneit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.217\"\n  },\n  \"busca-bregues\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"camperol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"campestre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cansament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cerca-bregues\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"citació a dia cert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"colpir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.0\"\n  },\n  \"combatre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conflicte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.656\",\n    \"std\": \"0.063\"\n  },\n  \"consumptiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"contrasentit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"contreure's\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"coïssor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cremor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"criminal desesperat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crisi d'identitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"defallença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"defecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.7\",\n    \"std\": \"0.056\"\n  },\n  \"deficiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.65\",\n    \"std\": \"0.068\"\n  },\n  \"degradar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"descabdellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descaradura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"descortés\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desenredar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"desesperat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.144\"\n  },\n  \"desgavellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deshonor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.072\"\n  },\n  \"desobeir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"desproporcionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"destret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"destructor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"detriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"devastador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"discòrdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"dismenorrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"doldre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.188\"\n  },\n  \"elegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"embosca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"emboscada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enfadar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enfrontament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"enganyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.144\"\n  },\n  \"ensulsir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enterrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"epilèpsia generalitzada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"escandalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"escurat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esllavissar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"esmorteir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"esquerp\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.123\"\n  },\n  \"esquiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.144\"\n  },\n  \"estàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estúpid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.609\",\n    \"std\": \"0.188\"\n  },\n  \"evasiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fallada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.072\"\n  },\n  \"fal·làcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"farfolla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fatigació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fer mal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"fer miques\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"fill de puta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"fosc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.729\",\n    \"std\": \"0.051\"\n  },\n  \"fràgil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"furó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gamarús\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garbuix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"gargot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gilipollas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"gilipolles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"grosser\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"guixada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hipotiroïdisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"immodificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"immutabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imperfecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.151\"\n  },\n  \"impersuasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imprecació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"improperi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impropietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.12\"\n  },\n  \"inacceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.217\"\n  },\n  \"inalienable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inanició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inanimat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.0\"\n  },\n  \"inconcebible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inconscient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.072\"\n  },\n  \"increpació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"incriminació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inculpació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"indigest\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"intransigent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"invectiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"iracund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"lata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lleig\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.125\"\n  },\n  \"maledicció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.094\"\n  },\n  \"maleducat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"malparit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"mancança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"mancat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"matança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"menyspreable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.144\"\n  },\n  \"màcula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"nyap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ordinariesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"pallús\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraulota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"penalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"perduda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perdulària\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"pluja radioactiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pocavergonya\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"precarietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"principiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"problema de salut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pusil·lanimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ranci\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.125\"\n  },\n  \"recular\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"renec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprotxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ressentir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ronyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.125\"\n  },\n  \"roí\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"rude\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"sofisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sofriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.578\",\n    \"std\": \"0.093\"\n  },\n  \"sollevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"superficialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.063\"\n  },\n  \"tempesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"tipus estrany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tiranicidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tocat del bolet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"torturador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tosc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"traficant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tísic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vituperi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"volubilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"acabalat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aclamació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acomodat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aconsellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acreditat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"activat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"actualitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adinerat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adreçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"afalagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"aglomerat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agraït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"al dia\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amonedat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antisèptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anunciar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplaudiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplicat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"après\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assenyat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"associable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asèptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bajà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bastant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ben definits\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ben educat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"benestant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"benestar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.315\"\n  },\n  \"benparlant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"benvolença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bestial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.331\"\n  },\n  \"bon gust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bon temps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calibre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cansat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canviat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"característic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caritatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"casador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"casat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"causant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"centellejant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"centralitzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"civilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"combustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compassiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compatibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.25\"\n  },\n  \"complir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compromès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comèdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condicionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"congratulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"connivència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conradís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consentiment tàcit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constructivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"controvertit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"convincent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coordinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"corporal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corregible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corregit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cultivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cultivat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"còmode\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"decidit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"declarable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"declarat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dedicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"dedicat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"definitiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"democràtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desafectat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desencantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"desmuntable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dirigit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discrecional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disposat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distingible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"documentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dúctil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"economitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"efectivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eloqüent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embergadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emocionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"encadenat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enhorabona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enjoiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entapissat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entenimentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entretenir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"entès\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envellir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"equilibri mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esclatant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esmaltat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esmenable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"especialització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espiritualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esquerra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"estipular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estratègic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estudiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eufonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eugenèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exaltar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excitant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhaust\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhaustiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"existencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"existent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"expeditiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"explicitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extensíssim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extenuat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"facècia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fascinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatigat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fer apropiat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fer donació de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fertilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"fiabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"finor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fogositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graciositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"grandiositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.402\"\n  },\n  \"grapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gruixut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"habilitat social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honestedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immodest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inapreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incorrupció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"increïble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"incrustat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"individualitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"influenciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intencional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intensiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intercanviable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invaluable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"joc de saló\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jovenívol\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"llauradís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"meditat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misericordiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"niellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nítid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"núbil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"objectiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obligació sense garantía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obligació simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obtenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obvi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.102\"\n  },\n  \"ocupar-se de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ocurrència oportuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opcional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"optimisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pacient intern\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paper de regal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parlat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"passable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"permissivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"permutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persuasiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persuasió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petulant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plegable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preparat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"previngut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"probable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"procedència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"profús\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"programa de rehabilitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prompte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"promès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propiciatorietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"protagonisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pròdig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quadern d'escriptura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ratificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"realçament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rectificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reemplaçable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rendibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"resolt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"revelador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revellir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revellir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ribetejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rivalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rosaci\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rosadenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rumbós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rumiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saber fer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"salut mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sensualisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sentit comú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"septicèmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ser apropiat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"ser igual a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"significatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"somàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subjectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sublimació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"submergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"substancialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"summe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tenir cura de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tonicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torrencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tracta\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tècnic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"usabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"usual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilitarisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"validar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"validat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"verisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"víctor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abrasador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"absolta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"acidesa d'estómac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acrimonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acromàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"acràcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afeblit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agents\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"albuminúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"algòmetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"altercació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amnèsia retrògrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"analfabetisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anarquia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anatematitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anestèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"angoixós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anihilació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aniquilació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anodí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorreament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ansiolític\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antihigiènic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antineoplàstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aparat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apel·lant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocalipsi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apoquir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arrufar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arterós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"artràlgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"as de pics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astenosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.259\"\n  },\n  \"astuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atac sobtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avarícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"avitaminosi B1\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"baríton\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"batussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beri-beri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bibos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blau fosc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blau marí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bluf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bragues\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"branta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"braçal de dol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brivall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bronquític\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"burleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacofonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacofònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadaverina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cagaferro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cagar-la\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calces\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calcetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canotier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cant fúnebre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"capficar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"capgirament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"carnisseria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"casa de boigs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"casa de bojos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cataclísmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cavall roig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caòtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceguetat diürna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clamor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cleptòman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"colló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"commoció cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"condemnació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confessar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contrafaïment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coragre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coragror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corcadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corrossiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cosa indispensable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crepuscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"creu pontifical\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crèdul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crítica dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crítica feridora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deixament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deleteri\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"derrotat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"desaprensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desatenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descamisat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descoloriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desconcertant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descortès\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"descurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desdenyable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desembullat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desendreçament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desequilibri emocional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deslluïment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmaiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"desmillorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desnutrit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desorganitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despersonalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despoliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desprestigiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destrossar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.058\"\n  },\n  \"devastar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diabètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diputada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diputat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discordància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dissonància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"disúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dolor agut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eixalabrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empal·lidir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enderiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enemic mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enlletgir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enverinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enviliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eritema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esblaimar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esbojarrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esbronc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"esclerosi múltiple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esfereït\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esguerrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espasme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"especiositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espifiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esporàdic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esquívol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estratus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estressant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estridor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estridència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estrèpid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exasperat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excrescència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extremat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extremista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falsejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falsificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"fantasiador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fantasiaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fer barroerament\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fer podor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiasco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fingiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.12\"\n  },\n  \"forces de l'ordre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"forces de l'ordre públic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"forces policials\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"formigueig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fracturar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gangrenós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"garneu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"garrular\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gemegor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus bibos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus branta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus sivapithecus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"geperut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gori-gori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gosat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grafitti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graneua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"granític\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"groller\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.157\"\n  },\n  \"grolleria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"guanac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerriller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guillat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gàbia de boigs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hampa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemosiderosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterogeneïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipermetropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipoglucèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"horrífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iconoclàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ignorant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignorància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"imbecil·litat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immortal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunodeficiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impaciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imperatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impertinència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"impietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"implacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inaplicabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inatenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incompleció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconstitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indecorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indegut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indeterminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indigne\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inelegància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexcusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inexperiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inexplicació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"informal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infrangible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"innoble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inquebrantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inquietar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insensat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"insensibilitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insustancialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intimidatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intrincat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"investigació judicial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inviolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irreflexiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"ixòdids\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeremiada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"licopè\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"llanguir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"mala fe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malaltia de la sang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malastrugança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"maledicència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malendreç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malmesclar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mamarratxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maníacodepressiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mascarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maximalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"menester\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"merder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"microsporidis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mirar bocabadat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mixosporidis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mofador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mofaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mofeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moléstia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mordaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moreno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"morè\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.061\"\n  },\n  \"mujahidí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mutilat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"món del crim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcotisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neguitejar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neutre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"nictalopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nimbus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nimfòmana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nuvolot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obsessionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obsessiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obsés\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odiositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oftalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ordre d'execució\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osteoporosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"part inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patetisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pejoratiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pena capital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pena de mort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perillositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perillós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pertorbador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pessigada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petaner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petit burgès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"picardiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"picardiós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plomís\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poeta elegíac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poltergeist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"polvorització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posar en perill\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prevariació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"producció insuficient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"professor agregat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propens\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puntimirat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punyada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punyeter\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pàlid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"queixal del seny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quixotesc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rampinyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rancorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"rebaixinc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recurrent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remor sorda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repel·lent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repeló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reprimenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"reprotxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"requeriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"roba de dol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"romàntic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ronya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruboritzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rutinari\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"sabotatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saltar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scratch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sembrar la zitzània\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"simbòlic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonsada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonsesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sord\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorrut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subalimentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subcampió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sufocador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sòrdid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taciturn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"tallarol de casquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taral·lirot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taverna clandestina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tensar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tentineig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tentines\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tesar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tibar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tocat de l'ala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torbador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torrapipes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"toxicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"tractament inhumà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traumàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"tribunal superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tràngol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"turmentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"turtledove\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vacunat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vençut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vermut dolç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vermut negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vilesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"voluntarietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"víctima mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xerrotejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zona perillosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abadessa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abanderar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abastir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abillat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"absorbible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absurd\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"acadèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"acceptació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.184\"\n  },\n  \"acceptat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"accessibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"acidificant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acollir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"acolorit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"acomodació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"acomodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.157\"\n  },\n  \"acord escrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acordat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acostumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"acreditar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"activació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.237\"\n  },\n  \"acumulatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"acídic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acústica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adaptabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"adaptar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.344\"\n  },\n  \"adherent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adhesió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"admetre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.155\"\n  },\n  \"admirador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"admès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"adorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"adquirible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"adult\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aeròbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"afalac\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"afegible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afilat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"afinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.368\"\n  },\n  \"afluixar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.707\"\n  },\n  \"afuat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agosarat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"agregat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.239\"\n  },\n  \"aigua potable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"airositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"ajuntat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ajustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.286\",\n    \"std\": \"0.277\"\n  },\n  \"ajut financer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfabetitzacio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alletar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.102\"\n  },\n  \"alta fidelitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"al·licient\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"amabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.22\"\n  },\n  \"amagat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambidextre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ametista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amfipròstil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amfípode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amfòter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amor fraternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amorosir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"amplada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"ampli\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.139\"\n  },\n  \"anacoreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaeròbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anfipròtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"annex\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.237\"\n  },\n  \"annexat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"anomenada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antheraea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiaeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiàcid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antropofàgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anunciat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anàleg\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"apaivagar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apassionant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"apegalós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"apetitós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.072\"\n  },\n  \"aplaudir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"aplicabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apocàrpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"aprofitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprovació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.157\"\n  },\n  \"aptitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"arbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arcà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aristotelisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"arreglar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.125\"\n  },\n  \"arrodonir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.364\"\n  },\n  \"artefacte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesanal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesania\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"arts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ascendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"asimptomàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assaciar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assessor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assessora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assimilatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"assimilatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"associat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"associatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assolellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assuaujar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"assuavir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"astronòmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataronjat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataràctic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.328\",\n    \"std\": \"0.149\"\n  },\n  \"atipar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atractivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"atreure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.545\"\n  },\n  \"atribuïble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auri\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auspici\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autoadhesiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"automatitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autoritari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"autoritzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.437\",\n    \"std\": \"0.129\"\n  },\n  \"avantatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.357\",\n    \"std\": \"0.202\"\n  },\n  \"avançar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.389\"\n  },\n  \"avançat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.278\",\n    \"std\": \"0.235\"\n  },\n  \"bactericida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"basificar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beatificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"begut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beguí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beneficis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beneir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benignitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benintencionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benparlat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bescanviabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bhakti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biologisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bioquímic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bipolar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bitllet d'autobús\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bitllet de tren\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blasonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blindat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"bocabadat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boirós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bonança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"bones notícies\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borlat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borni\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bravo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brillant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.099\"\n  },\n  \"brillantor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.52\"\n  },\n  \"brocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bromós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brutal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.32\"\n  },\n  \"burlesque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabalístic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calculat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caldejar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"calent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"cal·ligrafia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cal”ligrafia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camí de bast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camí de ferradura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canibalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canonitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canviant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cançó religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capacitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"capacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.242\"\n  },\n  \"capital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.277\"\n  },\n  \"cara-rodó\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carambola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"carmesí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carmí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casolà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"casuística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catequesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"cautela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"cavallerositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celebració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"celebritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centralitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrípet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerimònia religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cicatritzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"circumstancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"cirera\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"civil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"clandestí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.347\",\n    \"std\": \"0.188\"\n  },\n  \"claredat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.185\"\n  },\n  \"classista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clavetejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clement\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"clàssic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"coactiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coercitiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coextensiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coherent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.144\"\n  },\n  \"coherència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"coixinet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colltort\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colorat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colossal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"columnat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"col·lectiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"combinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"combinatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comburent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"començar a treballar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commemoració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commensurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comoditat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.331\"\n  },\n  \"compensació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"competent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"complet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.484\",\n    \"std\": \"0.17\"\n  },\n  \"complimentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"comprensibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"comprometre's\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comunicatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"concepte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concert benèfic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concertació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concomitant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concordança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condecorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"coneixedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coneixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.306\"\n  },\n  \"coneixement pràctic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confiabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"confidencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.243\"\n  },\n  \"confirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"confluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conformista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confort\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confucionisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congeniar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjunt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"connectat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"consagrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"consagrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"conscienciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conscient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"consciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.188\"\n  },\n  \"conseqüent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.315\"\n  },\n  \"consideració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.247\"\n  },\n  \"considerat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.102\"\n  },\n  \"considereació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consolidador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consonant sibilant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.319\"\n  },\n  \"constatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"constitutiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"contagiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contemporitzador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contigu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"contracte unilateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"control de qualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convencionalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"conveniència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"convent de monges\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"convingut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convèncer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.102\"\n  },\n  \"coordinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.473\"\n  },\n  \"cop d'efecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cornut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"correcció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.297\",\n    \"std\": \"0.337\"\n  },\n  \"corredís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corregir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.323\"\n  },\n  \"corresponent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.171\"\n  },\n  \"cortesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.153\"\n  },\n  \"cortès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"cosmètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creació artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"crestat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criticaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"crònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"cuidar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuidat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuirassat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"culte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.063\"\n  },\n  \"culturista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"curiositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"cànon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"cíclic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cívic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"còmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"córner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dansa ceremonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dansa ritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daurat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"declamatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decreixent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"dedicar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.315\"\n  },\n  \"definit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"degenerat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deixar parat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deliberat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delirant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"demagog\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depassar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depravat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desblocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desbordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descendent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"descentralitzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descompressió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desconnectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"descontrolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desembors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desemborsament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desentelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desglaçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshumanització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desinfectant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desitjabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despenalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"despert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desprès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desvetllat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desvitalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devessall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"dia dels enamorats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"dicinodont\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dieta equilibrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diligent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.072\"\n  },\n  \"dinàmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"diplomàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.505\"\n  },\n  \"directe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.278\",\n    \"std\": \"0.182\"\n  },\n  \"dirigent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discreció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.068\"\n  },\n  \"discriminador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discriminatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"disminuït\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disponible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.112\"\n  },\n  \"disposar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disputador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"distret\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"divinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"divulgat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divulgatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diàlisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolçàs\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"domesticació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"domesticar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"domesticat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"domèstic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dona de pes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donar fruits\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donar hostalatge\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donar suport\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.163\"\n  },\n  \"doula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dramàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dreçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"dringadera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dringadissa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ebri\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"econòmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.335\"\n  },\n  \"edèn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"eficàcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"efusiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eixerit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"elasticitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"electritzant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"elegància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.259\"\n  },\n  \"elevat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.258\"\n  },\n  \"elisió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elitista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elogi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elogiador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elàstic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.063\"\n  },\n  \"emblemàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embriac\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrollaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emfàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"eminent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.0\"\n  },\n  \"emmanillar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"emmoquetat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emocionant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"empatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empedreït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emplomallat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empolainar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.264\",\n    \"std\": \"0.165\"\n  },\n  \"enaltir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.31\"\n  },\n  \"encaixat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"encobert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"encoixinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encriptat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encís\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"endevinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"endreçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"energia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.202\"\n  },\n  \"engrillonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engrossir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enllaçable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enllaçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enorme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensinistrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensinistrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entremaliat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrenat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entreteniment educatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envermellit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envoltant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enèrgic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.124\"\n  },\n  \"equanimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equilibrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equipar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equivalent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.25\"\n  },\n  \"equivalència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"esbargiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escalfar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"escarlata\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escatimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escola parroquial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"escola religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"escollit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escórrer-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esgarriacries\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espaiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.12\"\n  },\n  \"espaterrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espavilat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.361\",\n    \"std\": \"0.121\"\n  },\n  \"especial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.274\"\n  },\n  \"especialitzar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espectacular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espiritualització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esplendor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.433\"\n  },\n  \"espollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esponera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esquerrà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"estabilitzar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"estable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.19\"\n  },\n  \"estar d'acord\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"esteorofònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estiuejador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estiuejant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estudis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estèreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esvelt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"evocador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evocatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exactitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"exactitut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excel·lir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"excepcional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.32\"\n  },\n  \"excitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"expectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"experiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"expressiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"exquisit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"extens\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.357\",\n    \"std\": \"0.152\"\n  },\n  \"extraordinari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.269\"\n  },\n  \"extrovertit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exuberant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.331\"\n  },\n  \"exuberància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fantàstic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.402\"\n  },\n  \"farcit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"farisaic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fariseu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"favor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"favorit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"fecundar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"felicitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"felicitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"fenomen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"fer mutis\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fer sonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ferm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.263\"\n  },\n  \"feta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"fi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.306\"\n  },\n  \"filantrop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filosofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"finesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"fingit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.217\"\n  },\n  \"florent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"florescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"fluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluorescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.072\"\n  },\n  \"folgança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.304\"\n  },\n  \"foment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.063\"\n  },\n  \"formalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.168\"\n  },\n  \"formalitats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"fornit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"fort\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.264\",\n    \"std\": \"0.174\"\n  },\n  \"fortalesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"forçut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fosforescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"franc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"franquesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.286\",\n    \"std\": \"0.202\"\n  },\n  \"fructífer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fruïció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furgoneta de repartiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fàcil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"galanxó\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"galàctic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garratibat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gasela persa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastrònom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaudi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"genealogista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"generositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gentilesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.277\"\n  },\n  \"genus antheraea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus gobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"germicida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamourós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"global\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.213\"\n  },\n  \"gloc-gloc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glorificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glutinós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"glòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"gobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gomós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"gorrejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gourmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"governant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gran\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.285\",\n    \"std\": \"0.206\"\n  },\n  \"grana\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gregari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"groc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"gràcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.264\",\n    \"std\": \"0.192\"\n  },\n  \"gràcil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"gràfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guanys\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guariment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guarir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.213\"\n  },\n  \"guarir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gustós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"habilitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.315\"\n  },\n  \"habilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.221\"\n  },\n  \"habitual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.286\",\n    \"std\": \"0.144\"\n  },\n  \"habituat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hedonisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hermètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heterosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidròfob\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hifi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higiènic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperactiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertiroïdisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipnotitzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"home de pes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogeni\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honradesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"hosanna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hostatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanitari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanitats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humorada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"illustracio grafica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imbricat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immaculat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.063\"\n  },\n  \"immanent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"immeculat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imparcialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impecable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.161\"\n  },\n  \"impertorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impol·lut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"important\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.125\"\n  },\n  \"importància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.166\"\n  },\n  \"impregnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impressionant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"impressionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impressionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impune\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incandescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"incansable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"inconfusible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"incontrolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"independent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.166\"\n  },\n  \"indicatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"individual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"individualista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indreïble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indubtable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"inductiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"indulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"inequívoc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"inestimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"infatigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"infectat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflamable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"influenciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"informatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infrasònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ingeni\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ingerir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inigualat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"innocent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"innovador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.168\"\n  },\n  \"institució docent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"integrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"integritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"intercanviabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interessar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.545\"\n  },\n  \"intermig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.185\"\n  },\n  \"internar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"interpretació literal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interès personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"intrigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intrínsec\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inversemblant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ioga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"irrebatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"irrompible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isòtrop\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jardí terrenal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jesuític\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jesuïta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jubileu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jurament hipocràtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juvenil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.072\"\n  },\n  \"lacrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lacònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"latitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"legitimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"legítim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"lent anastigmàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lila\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liliaci\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liquidador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lladruc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llagotejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"llarg\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.157\"\n  },\n  \"llaç blau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.144\"\n  },\n  \"llevat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llibertari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"llicenciar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lliscant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lliurement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lloc d'interès turístic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lloctinent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.056\"\n  },\n  \"lluir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lluminositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"lluminós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.0\"\n  },\n  \"llunyà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.105\"\n  },\n  \"llustrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"longanimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"lucratiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"luminescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"luxós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.361\"\n  },\n  \"lívid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lògica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.281\"\n  },\n  \"lúcid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"madur\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.112\"\n  },\n  \"magenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnànim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"malva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manejabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"manicura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manifest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"manualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"manumetre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"mare superiora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marginat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marrameu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marronós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marró\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"massís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.395\"\n  },\n  \"maximitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"megalomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melindrós\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melodiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"menut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"menystenir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meritocràcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"merèixer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"mestria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"mesures\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meticulós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.373\"\n  },\n  \"metodisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metàl·lic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"millorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.173\"\n  },\n  \"minuciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.28\"\n  },\n  \"minvant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miracle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.389\"\n  },\n  \"mitjà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.189\"\n  },\n  \"moderno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modèstia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"momentani\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monosèmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"moralitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"motivador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mucilaginós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"mugit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mundial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.209\"\n  },\n  \"muntat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musculat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musculós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mèrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"mòbil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"música clàssica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"música pop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nadala\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"natural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.263\"\n  },\n  \"nebulós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoclàssic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"net\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"netedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"no\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"normal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.137\"\n  },\n  \"normalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"objectivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"observador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"occidentalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ociós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocult\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oferir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.227\"\n  },\n  \"ofertori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ofici\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"oficina d'ocupació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"olivaci\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ometre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"onomatopeia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"or\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordenat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orgànic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.282\"\n  },\n  \"orientació religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orientador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"originalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ornament arquitectònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ortodòxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ovació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"oxidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pacient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pacificació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pacte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.072\"\n  },\n  \"pacte de cavallers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"pampa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panegirista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panegíric\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panxut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"paper ceba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parar atanció\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parcial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.339\"\n  },\n  \"participar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"participar d'una qualitat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"particular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.52\"\n  },\n  \"parxís\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"passar el forrellat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"passiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"passiva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pastiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pastós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"patent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"paternalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pensar a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pentecostalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"percepció del so\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfeccionament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfeccionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"perigeu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"periòdic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"permís\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.213\"\n  },\n  \"perpicaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persona a càrrec\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"perspicu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicüitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pervertit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.088\"\n  },\n  \"piano de mitja cua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"ping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plaer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"planúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plausibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"playboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.137\"\n  },\n  \"plus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polemista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.42\"\n  },\n  \"polit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"pols (partícules)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poma borda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"popular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.29\"\n  },\n  \"popularitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posar a punt\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positivista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"possible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"postada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posturer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"pragmatisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precipitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"precisió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"predilecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predilecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predisposat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predominant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"preeminència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"preferit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pregon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preliterari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"premeditat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"prescrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevaler\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"prevenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"previsible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"primera qualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primers auxilis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"principal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.123\"\n  },\n  \"principi del plaer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"priora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prismàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"privat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"producció artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"productiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.072\"\n  },\n  \"profecia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"professió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"profusió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"programa d'educació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"programació orientada a objectes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"progresista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"progressista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proliferació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.415\"\n  },\n  \"prolongat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prometre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prometre's\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronom personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proveir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proverbial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proves indirectes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prudència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.227\"\n  },\n  \"pràctic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"pròstil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puericultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulcre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"pulcritut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puntualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pur\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.429\",\n    \"std\": \"0.086\"\n  },\n  \"purulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"públic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.072\"\n  },\n  \"qi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quirúrgic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"qüestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racionalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racionalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"racista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.204\"\n  },\n  \"raonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"ratificació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"real\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.105\"\n  },\n  \"reanimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.385\"\n  },\n  \"recelós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recolzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.187\"\n  },\n  \"recomanació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"recomanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"recompensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"reconciliar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recordar-se de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"redreçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"redreçar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"referèndum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refinament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.326\"\n  },\n  \"reforma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reformista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refrescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.204\"\n  },\n  \"refulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"reglar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regularitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"reincident\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relacionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"relaxant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rellevant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rellevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rellevància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rememorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.161\"\n  },\n  \"reminiscent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repentí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repujat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requerit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requisició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rescalfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"rescalfar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"reservat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resolut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"respectes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respectuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"restablert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retrotreure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retrunyiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reunir en un centre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revoltós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revolucionari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.072\"\n  },\n  \"ritu religiós\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"robust\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.105\"\n  },\n  \"rogenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"rosat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"rosbif\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rosegaaltars\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ràpid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"saborós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.068\"\n  },\n  \"sagrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saltiró\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.198\"\n  },\n  \"sanitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"santificació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"satinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saturat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"saturnals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sedant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"segellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"segur\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.23\"\n  },\n  \"selecció natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semblant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.063\"\n  },\n  \"semiautomàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"semidespullat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semivocal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sencer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.244\"\n  },\n  \"senil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensatesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.105\"\n  },\n  \"sensitiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"sentit del bé i del mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seny\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.171\"\n  },\n  \"separable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ser digne de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"serietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.424\"\n  },\n  \"sibilant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sibil·lí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sibil·lític\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"significació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"simetria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"similar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"simulat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinalefa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sincer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinceritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.227\"\n  },\n  \"sistema de gravació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema del gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"so vocàlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobrecarregat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobreexplotació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.157\"\n  },\n  \"social\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"socialitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solemne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"solemnitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.289\"\n  },\n  \"solemnització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solvència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sol·licitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.26\"\n  },\n  \"sol·lícit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"somnolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"somriure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"somrís\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonar l'alarma\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sorollós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"sostractiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subjectiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"subsònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subtractiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"succint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suculent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"suggestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suggestiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superb\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"superioritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.429\",\n    \"std\": \"0.2\"\n  },\n  \"supositiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suprem\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"suprimit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suspicaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sustància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sòlid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.337\",\n    \"std\": \"0.346\"\n  },\n  \"sònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"talent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.451\"\n  },\n  \"tallar a filets\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tallar el vent\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tangible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tapa d'objectiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tapadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taronja\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"telescòpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temperar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"temporada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temprar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temps reglamentari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenir fe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenir present\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenir trets d'una qualitat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terapèutic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"terminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terra promesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"tipicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"titulat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tocata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tolerància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.177\"\n  },\n  \"torrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trafica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquil·litzant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquil·litzar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transcendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transcendental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transcendència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"transformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transformat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transparència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.277\"\n  },\n  \"tremend\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.361\"\n  },\n  \"trepig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trisecar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tritlleig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"triunfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tropisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"típic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.213\"\n  },\n  \"ultrasònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unanimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.0\"\n  },\n  \"universal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.209\"\n  },\n  \"unió duanera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urbanitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"usdefruit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"utopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.237\"\n  },\n  \"vacances\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"validació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"validesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.402\"\n  },\n  \"vast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vaticini\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"veloç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"venerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veneració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"verdader\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verge\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"veritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"veritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.274\"\n  },\n  \"vermellenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vermellós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vescós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"vestit de campanya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vi de missa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vigorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"vinculat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"virtual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"visar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"viscós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"visible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"vist i plau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vistós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"vital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.137\"\n  },\n  \"vitalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.402\"\n  },\n  \"vitalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"viu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.288\",\n    \"std\": \"0.189\"\n  },\n  \"vivacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"vivent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"vivificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"vivor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"voleibol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluminós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluntari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"vàlid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"víctors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warfarina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"workflow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xarlotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerracar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àgil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"àngel custodi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àngel de la guarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àrea de coneixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ègida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"èxit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.143\"\n  },\n  \"índex de preus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"únic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"abaixar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.105\"\n  },\n  \"abandonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"abaratir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abominable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"abusador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abusar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"acaballes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acatarrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accident\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"accident vascular cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acer damasquinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acer damasquí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acerbitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acondroplàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromegàlia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adust\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"adversitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.143\"\n  },\n  \"advertiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.125\"\n  },\n  \"advocar per\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afartar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"afòtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agalla (botànica)\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"agressió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"agreujar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"agulla de pit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agutzil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aiguat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alarmant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"aldarull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.116\"\n  },\n  \"alfil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"algutzir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"alienació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"alliberar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altercat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altisonància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"al·lucinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alèxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambliopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amenaça\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.102\"\n  },\n  \"amenaçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"amiloïdosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amortallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amotinar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"andanada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"andesita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anestèsic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angines\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anormalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anticipador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antilop negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiprotó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antipàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antracita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antracosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anèmia maligna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.12\"\n  },\n  \"apocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"apunyegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arduïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arguments especiosos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrecerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrogant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arruïnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arsenat de plom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arsina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artèria alveolar inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artèria labial inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asbestosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aspergil·losi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"aspre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.411\",\n    \"std\": \"0.157\"\n  },\n  \"aspror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"assassí a sou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assertivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assetjador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assetjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.068\"\n  },\n  \"astilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atac aeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atac de cor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aterrossar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atordiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"atorrollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atrocitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.112\"\n  },\n  \"atzabeja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atàxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atípic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"audaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"autoflagel·lació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"autòpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"avalot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.102\"\n  },\n  \"avís\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"babutxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacanal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriòlisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bafarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baixes pressions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baixesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"baixista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baldat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bandit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"banshee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banteng\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banyeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"banús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"baralla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"barbaritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"barbeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbàrie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"barbó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barroer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"batalla campal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"batibull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"batusser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"bavera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"betegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bo porqueria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bombar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrascós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braquidactil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bravesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"bravura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"braçalet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.0\"\n  },\n  \"braçalet de turmell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brega\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"breguista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"bronzejar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"brot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brufolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"brutalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"brutícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.19\"\n  },\n  \"brètol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"budisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bullanga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"burgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burlar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"burro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"bàrbar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"bòfia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"búnker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"búnquer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabró\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.061\"\n  },\n  \"cacera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"cagat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"calamarsada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calamitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.429\",\n    \"std\": \"0.112\"\n  },\n  \"calavera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"calcitonina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calfred\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calumnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calvari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"calúmnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"caminar de puntetes\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.056\"\n  },\n  \"candelilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canellera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"canós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capatàs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capgirar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital de les Vanuatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caponat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbonat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbur de ferro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbó vegetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiomegàlia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cariat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carnús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caràcter de mentider\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cassiterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataclisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"catastròfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"catàstrofe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"caçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"cefalea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cefalàlgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cementita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cendrosenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cendrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"censurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"cercabregues\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cervesa negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chupa-chups\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ciberpunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cicló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cifosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cilici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citolisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"classificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"clatellot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clinopodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coadjuvar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"columbiforme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"col·laboracionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"col·laborar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"complexe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"complexitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"complicat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condemnat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coneixement superficial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confrontació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.056\"\n  },\n  \"congestió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consolva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constipar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.188\"\n  },\n  \"contaminant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"contraatac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"contratemps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.19\"\n  },\n  \"contusió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convicte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cooperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cop de gràcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copejar fort\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cops de puny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corn anglès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"covard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.143\"\n  },\n  \"crema agra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crema agrejada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cremació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creu de Lorena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creuat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criminal de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"crucifixió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"càries\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"càstig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"càstig corporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daltabaix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"dama-joana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dansa de la mort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.112\"\n  },\n  \"darreria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decaure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.177\"\n  },\n  \"deficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"degenerar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.289\"\n  },\n  \"degradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.112\"\n  },\n  \"deixadesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"deixar aclaparat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deixat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delicte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delinqüència juvenil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"denigració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"depressiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaconsellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"desaconsellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desacostumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desafiament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"desarranjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.094\"\n  },\n  \"desatès\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desbaratar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"descarament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descendir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"descoloració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"descompondre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.056\"\n  },\n  \"desconsideració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"descontaminar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descortesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.12\"\n  },\n  \"descreure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"desembrollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"desembullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"desencertat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desenredar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"desertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"desesperança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desestabilitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desestabilitzar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"deshonestedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"desigualtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"desinformació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desllustrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmanyotat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desnivell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desobligar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desolació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.153\"\n  },\n  \"desordenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"desordenat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.125\"\n  },\n  \"despectiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"despreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desprevingut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"destrossar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"destruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.068\"\n  },\n  \"desventura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"desvergonyiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"desviament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deterioració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.065\"\n  },\n  \"deteriorar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.2\"\n  },\n  \"detritus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"devastació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.142\"\n  },\n  \"diabló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difamació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"dificultat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.123\"\n  },\n  \"diftèria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"digressió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dilema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"dipòsit de cadàvers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disbauxat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disc dur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disc dur extraïble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disfressa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disfàgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dispendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disputa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dissensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dissentiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissidència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disturbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"dolença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolor de pit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolors del part\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donar cops de puny\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donar urpadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dosi letal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"droga de disseny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogoaddicte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogodependent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duplicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"duresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"dèficit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"edema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el més dolent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el·lèbor marxívol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embaladir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embalsamar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embenat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrocació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embruix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrutiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emfisema pulmonar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"empetitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"empipar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"empudegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enagos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encalçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"encarbonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encarbonar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encarregar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encefalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encefalopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endarreriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"enderrocs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endevinalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endometriosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enemic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"enfarfec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfebrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.134\"\n  },\n  \"engrevir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"ennegrir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enrenou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.125\"\n  },\n  \"enrevessat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"ensorrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"ensorrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensulsiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"entrebanc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"entumiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enxiquir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epidèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilèpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilèpsia jacksoniana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equivocar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"ergotisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eriçar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"error\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.277\",\n    \"std\": \"0.072\"\n  },\n  \"erwínia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esborronador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"escacat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escaquejat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escarnidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"escarniment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"escassesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escassetat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"esclatada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escoliosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escrofulós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escàndol públic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"esfondrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"esfumar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"esguerrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"esnob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espatllar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.183\"\n  },\n  \"esperit maligne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"esplenomegàlia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espoliació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"espàstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esquer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"estaquirot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estat natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estat salvatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"estavellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"estavellar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esteatopígia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esternudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estira i arronsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estrabisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esvair-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.067\"\n  },\n  \"esvalotador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"eunuc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exculpació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"excusar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exoneració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"expòsit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"exterminador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"fam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"fanguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"fanguissar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"feble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.112\"\n  },\n  \"febre reumàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feinada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenomen natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fer cas omís\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fer espetegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fer la guitza\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"fer pudor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ferida accidental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ferit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"ferotge\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"feroç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"filariosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"finta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flacciditat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flor salvatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flor silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluix\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.112\"\n  },\n  \"foll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"follet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"fonofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formaldehid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formatge ratllat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"fosca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"foscor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.058\"\n  },\n  \"fosgen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fotofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fotre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"fragor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"frambèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fred\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"fredor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"fretura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"frevolesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulminació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funest\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"fura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"furtar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"furóncol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fàbula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"galindó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gallina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"gallofejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"garrafa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gavatx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gemec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.072\"\n  },\n  \"genus acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus clinopodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus neurospora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glumel·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gosadia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"grandiloqüència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"granellut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"gratuït\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"gravetat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"gregarisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.153\"\n  },\n  \"gris cendra\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guerra freda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"halitosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemorroide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herpes genital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herpes zòster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrobàtids\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.125\"\n  },\n  \"hidropesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipercolesterolèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperplàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertròfia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipocondríac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotensió arterial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipòcrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histerisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"huracà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"idèntic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignomínia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.188\"\n  },\n  \"illetrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"il·legalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"immadur\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"imminència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immolació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immortalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperceptiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperfecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"impertorbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"impostura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"impotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprecisió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"imprecís\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.161\"\n  },\n  \"imprevisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"improcedència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impromptu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.151\"\n  },\n  \"impulsiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"impuresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"inabastable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inacceptabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inacostumat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadequació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"inadoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incapacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.464\",\n    \"std\": \"0.191\"\n  },\n  \"incapaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.112\"\n  },\n  \"incomoditat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"incompliment de contracte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incongruència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconnex\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconsciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconsistència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"inconstant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.217\"\n  },\n  \"inconstància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inconvenient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"inconvertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incorruptibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inculte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"incursió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"indecència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"indefens\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"indefinible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indelicadesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"indescriptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indicible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indiferència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.125\"\n  },\n  \"indiscreció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"indistingible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"indolència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inefable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ineficaç\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.284\",\n    \"std\": \"0.123\"\n  },\n  \"inenarrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inepte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.284\",\n    \"std\": \"0.131\"\n  },\n  \"inexorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inexpert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexplorat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexpressable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexprimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infal·lible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infernal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"infertilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflexibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.161\"\n  },\n  \"inflexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"informar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infortuni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"infàmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"ingenu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inhabitual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inidentificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"innecessari\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"inoportunitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"insatisfacció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"insidiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insignificància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"insocial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insolent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insolència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"insospitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instintiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"insuficiència cardíaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiència coronària\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insult\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"insuportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"insígnia de grau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insígnia de rang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insòlit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"intransigència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intricat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inutilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"invasor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inútil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"irresistible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"irreverència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"irritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaqueta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joc brut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joies de la corona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judici (dret)\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kitsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knockout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"l'altra vida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactoflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"lamentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.065\"\n  },\n  \"lassitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"lemma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lepra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lesió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"letal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"letargia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"letífer\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liniment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linxament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llagostera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llei de Dalton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llei marcial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llibertí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloriguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lluitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.051\"\n  },\n  \"llunàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"línia de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.088\"\n  },\n  \"mal de cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mala memòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malabsorció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malaltia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"malaltia de la pell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malaltia genètica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malbaratament de diners\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maldecap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"malevolència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malvendre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"marica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martiri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"massa inercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mastegot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"matiné\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matricidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matusser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mecanisme de defensa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalòman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mentida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.102\"\n  },\n  \"mentó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mesquí\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.188\"\n  },\n  \"mestís\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"metzina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mildiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"minso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miocardiopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirada desafiant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirada fulminant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"missió impossible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misèria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"mitja veritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mocós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modus vivendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monstruositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"monya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monzón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moribund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mormoleig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mort cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mort vivent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"mortífer\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"mostela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"mufló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.125\"\n  },\n  \"mà d'obra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"món de la fantasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"nafrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"nata tallada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necròpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negligència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.105\"\n  },\n  \"negre carbó\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"negret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nen emmarat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurastènic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurospora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuràlgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuròtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"niu de rates\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no identificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no important\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no letal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nocions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nyicris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"número atòmic 76\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"objecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"objectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"obligació moral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oblit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"obscuritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.422\",\n    \"std\": \"0.08\"\n  },\n  \"obscè\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obsidiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obstinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"oca grisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocultisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ofendre's\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oli d'absenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oli de bacallà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ombriu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"ombrívol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.157\"\n  },\n  \"ominós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"opressor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"organitzador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ortiga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osmi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"otosclerosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papil·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralític\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paranoic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parkinson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parlar tallant\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parmesà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parsimònia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paràsit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.068\"\n  },\n  \"parèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasteuritzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.339\",\n    \"std\": \"0.067\"\n  },\n  \"pecador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pecaminós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pedregada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pedregós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"penúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"perbocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perdició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.177\"\n  },\n  \"perjudici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.137\"\n  },\n  \"perniciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"perpertu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"període d'incubació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.067\"\n  },\n  \"picada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"piga postissa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pijama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pira funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piranya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piruleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pirulí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pit de bou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pit de vedella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleonasme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleurodínia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plexe aòrtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"ploriqueig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pneumoconiosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"policia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"policia secreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polimiositis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poliúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polsera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"polvorització catòdica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"porc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porfíria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posada en pràctica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posar aspre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potinejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potiner\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presumptuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.375\"\n  },\n  \"pretensió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"priapisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primitivisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"problema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.188\"\n  },\n  \"procacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"professor adjunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"professor associat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promiscu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronúncia anòmala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proscriure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"príncep de les tenebres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pròdrom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicòpata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicòtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psoriasi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pudir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"pujar a\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punxada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.068\"\n  },\n  \"pusil·lànime\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"putrefacció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.068\"\n  },\n  \"pífia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quarantena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"queixar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.056\"\n  },\n  \"quequeig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queratitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raig-x\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ranciesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ranquejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raquitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raquitisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raspós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"ratera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rebentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"recaure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"reclam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"reclamar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"recriminació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"recusant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"redoblant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regateig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regeneració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relació de malalts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"renegat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"reny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renyina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"reprovació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"reprovar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"repulsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requisit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"reracuina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rescatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"reticència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"retirar del servei\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"retrocedir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.0\"\n  },\n  \"reuma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumatisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumatisme articular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revocació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"revolt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"riboflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ridiculitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"rocós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rodòfits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"romeguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rompre´s\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rondinejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"rudesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"rufià\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rugós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"ruinós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"runam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ràfec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ràtzia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sabatilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saber greu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"sabotejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sacrificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sacrifici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salvador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"salvatgeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"salvatjada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sanglot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sangtraït\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sapròfag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarcoptes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sempitern\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sempreviva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sense importància\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sentència condemnatòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulcre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sever\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.278\",\n    \"std\": \"0.088\"\n  },\n  \"severitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.163\"\n  },\n  \"sicari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silicosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"simulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.143\"\n  },\n  \"simular\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"sistema sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobtar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"socors\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofística\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sollament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sortilegi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subdesenvolupat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subexposició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"subgenus chen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subjugació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subjugar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"subvertir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"supervivent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"suplici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.056\"\n  },\n  \"supèrbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"síndromes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sòmines\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tabard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tacat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.125\"\n  },\n  \"tafanera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"tanatori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tarantisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tartamudeig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temerari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temeritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"tempesta de pluja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tempestuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.188\"\n  },\n  \"tempestívol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"tempestós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"temporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"tenir basques\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terra verge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terregall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terregam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tifus exantemàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiroteig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tomentós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tonto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"topar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"tossar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tossuderia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tova volcanica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxicòman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxina antitoxina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tragèdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"trapella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasbalsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"trasto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"trastorn nerviós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trastorn neurològic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traumatisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trencable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trencadís\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"trontollós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"trossejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trèmul\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumultuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbulència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tèrbol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"túixec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ultratge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"ultratge \": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"uretritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"va\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.284\",\n    \"std\": \"0.131\"\n  },\n  \"vacil·lació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ventejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ventoler\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ventós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"verd botella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veritat a mitges\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"versar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"vidre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violació de domicili\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"virulència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"visó americà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina B2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volcànic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"vomitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgarisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgaritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.068\"\n  },\n  \"vulneració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"víctima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xafardera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"ximple\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.072\"\n  },\n  \"ximplet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.217\"\n  },\n  \"xinel·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.298\",\n    \"std\": \"0.047\"\n  },\n  \"xurriaques\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yakuza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zombi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zona pantanosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"àcar de la sarna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àcid butíric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àcid carbàmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àcid hidrazoic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ànec collverd\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ànec de bosc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"àntrax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"òxid nítric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abarrotat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"abastador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abdominal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abismal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abissal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ablamar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abnegat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abracadabra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbefaent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acaparador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accedir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accionador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acondicionament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acreditació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrobàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"acrídids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acròmion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.148\"\n  },\n  \"activa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activitat social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acudir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acudit visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ad hoc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adagi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"additiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adequar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"adhesiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adjacent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"admissibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adolescent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adonar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adonar-se de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adopció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"adorador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adrenalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adscrit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adúlter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerobi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afartar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"afeccionat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"afermar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afiliat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"africada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agent de l'FBI\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aguantallibres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agudesa visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agulla de cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agència de publicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aigua de foc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aixecat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ajudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"albada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albirament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohòlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alimentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alineat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alliberador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"altern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"altivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al·lucinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al·lucinogen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambiciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"amistositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amniocentesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amo de la casa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amonestacions\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amotinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabaptisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabolisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabòlic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analgèsic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analitzador diferencial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anamorfisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anderson luis de souza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal domèstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal en captivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticipació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticipar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiguitat (objecte)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antimalarina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiquari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antroposofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antílop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antípoda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antítesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"anul·lat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anvers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anàclisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anàlisi metodològica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anàlisi volumètrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apadrinament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apel·lable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aplegar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aplicar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apreciació crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprenentatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"apàtrida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apòcope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aquarterar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aridesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aritmètica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arquitectura paisatgística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrapament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artèria comunicant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artèria intestinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aràcnid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascendir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.285\"\n  },\n  \"aspirant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"assessor en la direcció d'empreses\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assessorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assistent social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assolidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astronau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ataràxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atebrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atles lingüístic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atlètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"atorgar la llicència\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrassat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atuït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atès\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"au\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoadulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autobombo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autocinema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodeterminació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodidacte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoengany\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotròfica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avantatge fiscal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avantbraç\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avenir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avenç\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.068\"\n  },\n  \"avesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avinença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"avituallador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avortiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avuncular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axiologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aïnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacanals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balneari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bamba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banyera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrera lingüística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beatificació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beix\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bentos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benzinera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bescanvi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bestialitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beutat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biblioteconomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bifurcat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilateral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"bilocació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bimensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioassaig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioscopi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitllet d'avió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizantinisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blasfem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blasfemador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blau\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"blau cel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blavenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"blavís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"blavós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"boda civil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bodhisatwa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bossa de colofònia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bot de regates\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botzina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bramanisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breviari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brindis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brioix\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronzí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bràmids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufet d'advocats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufetejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufònids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bugonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bífid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadira de braços\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafè amb llet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caixa alta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caixa de jubilacions\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caixa de pensions\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calefacció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calidoscòpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"callista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calmant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calorífer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cal·lígraf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambra d'hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camforar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camforat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"camió de trabuc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camió de tres eixos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp d'estudi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancel·lat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"candent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cant espiritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cant espiritual negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cantata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canviable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"canyella\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cançó espiritual negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cançó nadalenca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cap de sèrie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cap nuclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capacitància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capella ardent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capgirada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital d'Espanya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capítols matrimonials\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carallarg\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caricatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnaval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnestoltes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carrabina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartel (economia)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa flotant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castany\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castany vermellós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catamita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catedral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cavallet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"cefalòpode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cenotafi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censurat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centre comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centre docent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrífug\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ceremoniós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cerimonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerimoniositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"certificat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cessión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"científic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cimal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cimalada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciment armat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinta d'àudio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cisteller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciutat pròspera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civilitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ciència-ficció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciència aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciència biomèdica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciència mèdica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classe alta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"clásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clímax sexual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"codi secret\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coetani\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coexistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cohesió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color crema\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"col·locat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"comercialitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comerciant de pornografia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comerç d'armes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comitè ètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commovedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compacte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"company de l'ànima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"companyonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"compareixença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compartimentat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compenetració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"competició atlètica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complement agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complement indirecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complementari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"composició literària\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comprar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compte d'estalvis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compte inactiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comunitari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"comunitat escolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comunitat religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comèdia de situació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concebible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concentrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"concurs atlètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concèntric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condensat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coneguda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coneixement científic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coneixença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confabular-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conferir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confessat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confidència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confirmació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.094\"\n  },\n  \"confitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"confós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"conseller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"consellera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"consens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservatori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"considerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consolador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consolda major\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consonant africada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conte popular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contemplació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contendir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contendre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"continu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.285\"\n  },\n  \"contorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"contracte aleatori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracte bilateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracte condicional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracte d'adhesió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracte matrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracte prematrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraexemple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contramesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contramesures\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrarestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"contrasubversió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contreure matrimoni\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contribuir a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conveni\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"convenir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copinya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coqueteig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cor (música)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corb\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corbat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"corporatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"corporativisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correccional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corriola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corroborar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"corà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosmetòleg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosmonau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creença\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"creient practicant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creixen bord\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crescuda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptogràfic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptòfit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cristal·lí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crocodilians\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cronògraf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuca de llum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cunqueria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cunyat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"curat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"curculiònids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursa de fons\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursa de gossos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custodi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"càmera polaroid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"càpsula espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cíclops\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cúspide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dadaisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dalt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dansa de la pluja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dansa del sol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dansa interpretativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decantació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decisiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"deco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decoratiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deductiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deduir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deferència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"defugiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delimitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deliqui\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deliqüescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delmes de Sant Pere\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denominador comú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"densimetria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"departament de serveis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depilat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derivacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbordat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descarregar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descodificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descolonitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descomprimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"descontentament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"desembruixar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desendollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desenganxat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"desentortolligar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desesper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desforestació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desglossar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desheretar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deshidratat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desinfectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deslluir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmobilització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despeses\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desplaçar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destroçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destruït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desviar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvincular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detergent de rentadora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detergent per al rentaplats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"determinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deure noble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dia solar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacrític\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diagnòstic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialèctic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diapir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diccionari electrònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dictamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dietista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diftong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difusor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinamitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"diploma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispersor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disposar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disseccionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disseny assistit per ordinador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissertació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distribuïdor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diversió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"divinitat hindú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divorci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doble negació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"doctrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrina religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrina teològica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"documentació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"domini absolut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"donar empenta\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"donar estil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"donar gust\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doo-wop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dotació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doxologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dracunculoïdeus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drama musical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dret\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drets\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drets civils\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drets de propietat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dretà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dreçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"droga dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"durbec\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"déu del Mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dòcil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eclecticisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclesiàstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclèctic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecosistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"educació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.123\"\n  },\n  \"edulcorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"eferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eguinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eixamplador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eixordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrodomèstic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electroforesi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eligibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elitisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elucidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"emancipar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"embatuament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emocional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"emotivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empantanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empantanegar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emparrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empatitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empenyorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empetitit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empresa de contabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empresa de subhastes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empíric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encanyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encegador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopedista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopèdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encomanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"encoratjament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encorbat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endogàmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"endossant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endret\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfaristolament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfortiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enginyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enginyera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engualdrapat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enlluernador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ennuvolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"enquadernar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enraonament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enredada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enrigidir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enriquir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"enrollat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensenya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensenyament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"ensenyança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"enteresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entitat física\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrenador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrenadora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrevia estàndard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enverdir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enverdir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enviar per correu electrònic\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enyor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enyorança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinòfil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epigrama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinefrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epistemologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equip de radioteràpia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ergotropisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erinacèids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erogació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error de hardware\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escampat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escanvi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esclarir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"escola de ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escola de música\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escola de pensament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escola pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escopinya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escopinya de gallet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escorpins\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escot imperi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escriptura fiduciària\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escrivà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esculpit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"escuraflascons\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esdeveniment social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esgraonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espadatxí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espavilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especialista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"especialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especialitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esperit afí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esperit d'equip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espetec\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esponjós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esport de pista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquellot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquerdat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquerres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquifit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estabilitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estamordit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar-se'n\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar promès\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.258\"\n  },\n  \"estat de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estel guia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estendard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estepa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esterilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estil lliure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimació crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimador estadístic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estipendi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estomatòpode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrella supergegant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrep (os)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estructurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estudis literaris\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estuf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estàndard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eteri\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnocentrisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evidenciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclamatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclusivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excomunicació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exhalar baf\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existencialisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.198\"\n  },\n  \"exlamatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experimentalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exposímetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expressionisme abstracte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expurgat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exquisidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"exquisitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"externalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extramatrimonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faceta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factura del telèfon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facultatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facultats\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faetó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsificar les eleccions\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falçó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fanga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasiós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farmacocinètica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fastiguejar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fasuositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatuïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fedelline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"felicitat absoluta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feligresos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer autostop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer descarrilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer efectiu\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer percebre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer prospeccions\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer recordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer un tour\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer una gira\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festa religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festivitat cristiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetiller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetitxisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figuració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"finançar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finestreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finitut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fixesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flassada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flexional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flipat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flirteig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flonjo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fonologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fons de retirs\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forat negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forces de seguretat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formigó armat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"força motriu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forçós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fotoquímica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotòmetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foxterrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franquícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraseologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraternitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraternització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freqüent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frifrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fronterís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funcionari públic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fundamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gafet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gafeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galeta de panses i nous\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganivet automàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganoïdeus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasolinera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gegantí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"generador de números aleatoris\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"generalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"generar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"generatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gentil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bacillus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus pezophaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phthirius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phthirus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus rattus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geometria no euclidiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geopolítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germanisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gestió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geògraf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimcana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnàstic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"glamour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globulós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globus de l'ull\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golejador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorgolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gramòfon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gravat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gremi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grimpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"groguenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"gronxador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grunyit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grupal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guant de golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guany\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.298\"\n  },\n  \"guardia de seguretat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"guarició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"guerxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"guiatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guitarra elèctrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gunats de cabritilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harmonitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"hebreu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemostàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herculi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrerasaure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterosexisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterotròfia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hialí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrogenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidròfil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hinduisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiosciamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperglucèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"històric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home de neandertal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homo sapiens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocèntric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"homosexualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homòleg\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"honorari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horitzó sensible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanitarisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humidificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hípica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"iconoscopi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idea original\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"identificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idioma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"il·lusionisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"imitatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immens\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immesurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immovilista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imparcial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeabilitzant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imploració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impost\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impressionisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impressora d'injecció de bombolla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inapel·labilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incomplert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incompliment del deure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incomptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconformista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inculcació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indagació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indret\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"induït\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indústria de la moda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineducable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineluctable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inesgotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"inexpressiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infantil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"influenciat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"influent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infraroig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infructuositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhibidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iniciador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inigualable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inmencionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innombrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innumerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquantificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insignificànça\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instal·lacions recreatives\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instal·lació esportiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrument de percussió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrument òptic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insumís\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurrecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intacte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"integració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"intelectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inteligibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercalar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercanvi de favors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intermediari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"interrelacionar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"interrogació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intersecar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intocable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"introvertit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intuir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intuïcionisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inundar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inundat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ionosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrefutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"irremeiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irremissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"islamisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaç\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"joc de taula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jornada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"jornades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judaisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"jueu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juntar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justificant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juxtaposat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karaoke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"l'abominable home de les neus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanceolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanuginós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laïcisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lectura pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legendari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lent convexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesbiana\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licantropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licitador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lil·liputenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limnologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limítrof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llampurnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llanut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llegible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llei del tot o res\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llengua natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llengua sànscrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llenguatge burocràtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llenguatge natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lleno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lleonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lletra cursiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lletra majúscula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llevapedres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llibre de coneixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llista negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lliurador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloc avantatjós\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloc de primers auxilis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloc de socors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloc estratègic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloc imaginari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lloca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llostra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llostre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llum d'Aladí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"localitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longitud (geografia)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lucidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"làbil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lèsbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lícit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"límpid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"línia de sortida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"machmetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macroscòpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macró\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magarrufes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnanimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"maitre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"major d'edat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"majoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"majúscula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malencolia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandarina\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maneguí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mansió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mansuetud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maqueta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marca distintiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marqueting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marrà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marxa militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masclista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masculinitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"masoquista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masturbació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matinada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maximització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"medicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"melangia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memòria volàtil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menció honorífica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercadeig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercantil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercat borsari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mereixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merenga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mestratge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"mesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"metacarp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metafísica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metode dalcroze\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metodologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrònom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miasmàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microfotòmetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mig relleu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"millorat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mimetitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mimètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mina d'or\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"ministeri d'assumptes estrangers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miofibril·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mirallet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missió religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misticisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitologista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitòleg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mnemotècnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mobilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"model a escala\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.163\"\n  },\n  \"moderantisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"molsós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoteisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monsenyor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monument commemoratiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"monument nacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morritort d'aigua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosso-d'establa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosso de quadra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mostreig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"motet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motricitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment ecumènic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment gay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment juvenil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment llibertari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment obrer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moviment religiós\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mundà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munífic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"museu científic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màquina de diàlisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màquina de raigs X\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màrqueting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mínim\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"míssil balístic intercontinental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"míster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"místic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"música religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naixent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"nan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nau espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"navalla automàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"navegabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neandertal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negociació comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negroide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neoclassicisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurolèptic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihilista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nit de sant joan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no catòlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nodrir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nodós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"nostàlgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nota musical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noves\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nucli amigdaloide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nudista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutricionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obagós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obediència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"objecte indirecte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objector de consciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obligació noble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obra de consulta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obrir el pany\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstaculitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"obstructiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obtenidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell cantaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell pelàgic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oferta de matrimoni\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oferta publica d'adquisicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficinista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ombrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ombrejat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnisciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opalí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oportunitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.215\"\n  },\n  \"opulència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opuscle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oració interrogativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oratori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orbicular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organitzat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orgasme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamentador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscil·latori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteopatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostracoderms\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pa d'àngel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pa eucarístic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pagoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal d'escombra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palanca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"paleoantropologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal·lidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panxarrut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pany de combinació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paratge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paraula d'honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"parlada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paroleria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parpella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"participar en\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"participi passat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partidària\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parts iguals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paròdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pas de ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passar l'estona\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passar l´aspiradora\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passarel”la\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasturatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"patrioter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paulatí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pavimentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"país dels somnis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pebrot verd\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedac ocular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"pediatre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedicur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedicura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedra de toc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelegrinatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pel·lícula amateur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensament sintètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penyorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perciformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"periheli\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona grata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"personalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perspicacitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perspicàcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"persuasibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"període històric\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pes equivalent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pescahereus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pescapubilles\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pessebre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petició de mà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petitet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pezophaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phthirius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phthirus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picar de mans\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilota de ping-pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilota de platja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilota de tennis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilota medicinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ping-pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinsà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pipa de la pau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirotècnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pistola de joguina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"plantofejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plataforma giratòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"platea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plaça pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plebeu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plexe cardíac\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plàncton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poc\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poder-se comparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poder de resolució\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"podòleg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poema simfònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polaroid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polisíndeton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"politja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poltrona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"político\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poma camosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poma camosina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poma reineta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pont de vianants\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pontó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porcellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posar-se d'acord\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posar en marxa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posició militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postmodernisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prec\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precinte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precipitant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precognició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precoç\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"predestinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predeterminat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predicaciò\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predicible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preguerra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"premiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"prendre part en\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pres polític\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescindir de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presciència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"present\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pressió osmòtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"prestatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestidigitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primmirat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.288\"\n  },\n  \"principiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"principis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"probiòtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procreació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procés geològic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prodigi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producte de bellesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producte farmacèutic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"productivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"professionalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.274\"\n  },\n  \"profund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"programa d'instrucció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa de lectura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa vocacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progrés\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"prolix\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"promulgat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.228\"\n  },\n  \"proporcionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proposar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prorrateig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostitució\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protanòpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protèrvia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proveir de personal\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"proverbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proveïdor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provisor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pruna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"prènsil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"préstec a baix interès\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicologia aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicologia industrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulcritud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulverulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt celeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt d'intersecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt destacat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt final\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt geogràfic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt prominent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punta de l'agulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punxent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"púrpura\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"qualitat maternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"qualitat paternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"querubí\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quimèric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinacrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radioactiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"randa aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ranura d'expansió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raonament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rascle davanter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raspall de dents\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rastafarianisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rata de biblioteca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratificat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rattus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reaccionari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"readmissió\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reafirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reajustar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realpolitik\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebaixa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recautxutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recerca empírica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recluit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconfortant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recordança\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"records\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recursos minerals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recórrer món\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reduplicació (lingüística)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"referendar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"reformatori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrany\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrescament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regularitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"regularitzar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"relacions sexuals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reliquiari\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reliquier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relliscós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rellisquent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rellotge de cucut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remolcador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remunerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renaixement espiritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rendista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renillar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reobrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repartició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repartidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"replantejar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reputació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"requisit acadèmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residència religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resplendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respondre de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"retrassat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverdir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reversibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revinguda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revisat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"revisionisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rinoplàstia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritualisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riuada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roba de carrer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roca volcànica vítria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rumb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rutilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rutina recursiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rècord mundial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ròssa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saber\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.233\"\n  },\n  \"saber diví\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacsejada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safata del te\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.306\"\n  },\n  \"salsir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saló de te\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"samba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sancionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sangonent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sangonós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"santoral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sapastre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapiència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saures\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secret\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"secta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sector d'ocupació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sector ocupacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secundar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sega del fenc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicircular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semitransparent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sentir empatia\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentit de l'humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seqüencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser aplicable\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serpentí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sertralina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servei de paquets postals\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servei públic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"servo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servomecanisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex-appeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"significat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultaneïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultani\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinclinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"sintonització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sistema de refrigeració\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de ventilació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sistema de vigilància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistemàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"so consonant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"so consonàntic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobreexposició\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrehumà\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrevalorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobtat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soldar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"solèid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somiador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnolència\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sopa de lletres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorteig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spa (salut)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprechgesang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starets\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suavitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subcontinent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subcultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjectivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublimitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subordinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subscripció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"substancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"substitut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subtil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"subtracció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suc digestiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"successió ecològica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufragi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suma total\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumatori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumptuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"superabundància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superdotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superdotat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suplementari\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"suplent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suport logístic integrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suport logístic internacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"susceptibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sustentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"sustentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sàfic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sànscrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sèpids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sèptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síncron\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taller d'enquadernació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taoisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tapar sots\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecnòleg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecnòloga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teixit de punt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telecomèdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telefonada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.119\"\n  },\n  \"temperatura ambient\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temps d'oci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"temps sincopat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendenciositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenir a veure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tenir en compte\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenir en consideració\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenir la intenció\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenir un deute\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tennis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tennis de taula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teoria de conjunts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teosofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tertúlia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teràpia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"teràpia ocupacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tesina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testimoniatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"timpà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tinença d'accions\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titànic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocar i parar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocoferol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonsurat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortuga babaua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortuós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torçat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tractat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tractat de pau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tractat equitatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tracte equitatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragicomèdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tramitació\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transcendir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitivitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treball en equip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treballador qualificat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treballadora qualificada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trencaglaç\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tribunal de justícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tribut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tricot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trident\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifori\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trilobit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trineu de vela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triomfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"trobada multitudinària\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trossa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truc de màgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trucada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trucada telefònica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tràfic d'armes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tràveling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trípode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"títol convertible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"títol cupó zero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"títol hipotecàri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulls\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultraconservador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultradretà\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultravioleta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unció\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unitat de conductància\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urilitzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utilitzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utricle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utòpic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaivé\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valor no cotitzat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valoració crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vegada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vellut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventrut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verbós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verdejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vespertiliònids\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"via ampla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"via estreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vida real\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidre de Murano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidriós\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vinculant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"virtut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.19\"\n  },\n  \"visca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina E\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina e\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vivesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vocalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"voltants\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voltar món\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voltímetre electrònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voluminositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voyeurisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vàgil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vòltmetre electrònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerografia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xifra romana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xifrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xip de memòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xou\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xovinista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoeci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zooide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid gàstric\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àrea temàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àudio-visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"èlit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ésser consignat/-ada\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ídol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ínfules\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"òpera bufa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"òpera còmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ócorrer-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abaixar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aberrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abjecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abjecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absentisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolutista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstrusitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acadèmia de l'aire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acalorar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accident fatal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acció reflexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acer de tungstè\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acer de volfram\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetat de plom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aciditat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acovardit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"acrofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrofòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acte de compareixença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acte de terrorisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acte reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acudit de mal gust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acudit groller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acusació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"acusador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"addicció a la cafeïna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adoloriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advocat del diable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aelurofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afaneta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affenpinscher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afront\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agenciar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agent de policia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aglomerat de fusta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agorafòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agorafòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agàric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aiguardent de poma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aigües residuals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ajuda pròpia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ajusticiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albinisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alfabetització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alfac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alienació mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alleugerir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allitar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alta traïció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alteritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amargat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amorf\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amsinckia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anacantins\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anar en iot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ancorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"andròmina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anell de prometatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anella del nas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anestèsic total\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angioplàstia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anglòfob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhímid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorèxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antagònic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipapa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiparàsit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipirètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisemitisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitètic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anur\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anòmal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apallissar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoptosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arginina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma de foc portàtil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma nuclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma portàtil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriscar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrià\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrogància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"art minimalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"artritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arxiu mestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asafétida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asclar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"ase africà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asexualitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asfixiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"asma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assafètida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assalt a mà armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assaltador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assaltament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assaltament a mà armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assaltant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"assassina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assassí en sèrie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assegurança d'incendis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assegurança del cotxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assentar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assetjament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"assotar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atac per terra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atacant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aterrament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"atracament a mà armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atreviment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"autisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoconservació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodescobriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autopreservació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autòcrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avalotador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aventurisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avitaminosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azidotimidina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babirussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"badomeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bagatel·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"bagel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baixà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bajanades\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"bala de mosquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bala dumdum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banc de sorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banya de sègol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banyador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbacana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barnús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barret d'ala ampla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barret de cowboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barret fort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barri baix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrina elèctrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrina mecànica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basalt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"base d'operacions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastoneig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Marató\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bauhinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bec de tisora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"becaina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bel·licorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bel·licositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bel·líger\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beril·li\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bessó\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bifurcar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioremediació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitllet de banc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blanc de plom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blau de Prússia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloc de notes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boca de l'estómac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boca del cor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bogeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"boja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bola de foc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bomba centrífuga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bombardeig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"borm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrasca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boscam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boscatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botes camperes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brachystegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bradicàrdia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brandir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"braquiürs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"braçal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brogit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bromur de metil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brostejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bruixeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brusar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bruxisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bulb raquidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumerang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"busca-raons\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bàlsam del Perú\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bàmbol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadena de rellotge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafetera exprés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeïna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caftà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calaix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calar-se foc\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calbot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caldera volcanica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calor de condensació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calorós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambra de tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisa de dormir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"camp de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp elèctric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp gravitacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp magnètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camperes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canyellera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capcinada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capell d'ala ampla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capell de teula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capell fort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capfluix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital del Tíbet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cara de pòquer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcerari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careta antigàs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carmelita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carmelità\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carraca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carronyaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carronyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartilaginós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"caràcter desagradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa de ranxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casanova\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casc de batedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casc de punta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cassiope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cavall de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caça bombarder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caçadots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caçatorpediner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"cep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cercosporella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chesterfield\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinemàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinturó salvavides\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cintó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumstant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirera cruixalenca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrosi hepàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cistercenc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"citació de compareixença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classe baixa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classificar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clatellada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claustrofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claustrofòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleptomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clivellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobalt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocodril del Nil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coenzim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color acromàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color de puça\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"col·lisionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combustió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common arrowhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competidora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complements de la casa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complicitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compondre-se-les\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concernir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concertina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condemnada a cadena perpètua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condemnat a cadena perpètua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confutació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquerir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conspiració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consternat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contar enrere\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraalmirall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrabalançar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandista de licors\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraintel·ligència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrapesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraproductiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrincant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controlar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controvèrsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"conèixer-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cop de colze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copiat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coptis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coquinesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corbata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corindó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cornella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corona de llorer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corroir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotxe esport\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotxe esportiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crassitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crescentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cridadissa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crim de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criogènia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptograma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"criticar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"crom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromoestèsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crucialitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crucificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crítica textual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cua tallada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuixal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuixera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cullerada sopera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curt de gambals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custodiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"càrrega negativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cèl·lula adiposa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cèl·lula de Golgi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"còlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"davallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"debilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"decés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dedicatòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deformat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defunció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"degradació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"degustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deixar estupefacte\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delicte informàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delinqüent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"delinqüent habitual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demanaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demandar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demèrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"dendrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dendroctonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dental\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentari\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"departament de química\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depreciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"derrota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derruir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desacatament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafecte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaplicat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaprofitament de material\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desastrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbotonat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbridat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descabellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconeixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"desconfiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconnectat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descontent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descurança\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.188\"\n  },\n  \"desdenyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desemparat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desenredat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desequilibri mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desert\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.161\"\n  },\n  \"desescalada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desfer-se\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desferra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"desfeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desfigurat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desgastar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desgavell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"desgraciat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desinfecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmillorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmèrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desnutrició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desodorant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desordre gastrointestinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.123\"\n  },\n  \"despanyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despatxar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despentinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despentinat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desprestigi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.217\"\n  },\n  \"desproporció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despullament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"desqualificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"dessaborit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dessagnar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destraler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destrer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destruit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desventurat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvitalitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deteriorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"devantera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devolució\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diableria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diarrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dicranals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difracció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difús\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dimoni necròfag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinamitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dingo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dir verbalment\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disenteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfemisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disparar un canó\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"displàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispèpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissipar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"distanciació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distorsionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distès\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distímia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diòxid de nitrogen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dogal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dongle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dormir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dret marítim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dubitatiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"durar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ebonita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecologista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edentats\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"efectisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ejecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"el pitjor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"electrocutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emancipador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embargament de nòmina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embargar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emboirar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embolic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.137\"\n  },\n  \"embravit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embrollat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embrunir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"empatx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empelt cutani\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empitjorament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empitjorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.129\"\n  },\n  \"encanudir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encastament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encefalitis letàrgica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encrostar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encruiximent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endergues\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endiablat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endimoniat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endocarpi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endreçar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energia cinètica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energia eòlica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energia radiant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfrontar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engalipada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"engalipador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"engrunar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enjudiciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enormitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enrojolat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensarronador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensibornador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ensopir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entabanada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entabanador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"enterbolir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entoloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entossudit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrecot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entremetedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envalentit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envanit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enverinament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enyorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epilèpsia postraumàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epilèptic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epònim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eradicació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erosiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error informàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erupció volcànica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esbirro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esbucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escabellat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escabrositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"escafandre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapulari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escarabat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escaramussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escaramussar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escassedat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escatologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"escorxar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"escridadissa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escura pisos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esferocarpals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esfondrament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"esgarrapada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esgarrifament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esgarrinxada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esgrunar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmeril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmorteïment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esnobisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espanyar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esparadrap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espatllàs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esperitat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritualisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espontaneïtat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espècie humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquadró\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esqueix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esqueixar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquirol de terra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquirolatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquivesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estacionari\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estafilococ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estannita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar amagat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"estar atent\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esternut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estomacar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrenyecaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrident\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.205\"\n  },\n  \"estrucioniformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estructura defensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esventar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eurilaimid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutanàsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutrofització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excedir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excentricitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excesiu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exorcisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experiència sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extrema pobresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extremisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facoquer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor decisiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor determinant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falcó sagrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faldellí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fals\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.197\"\n  },\n  \"fanfarroneria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantotxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"farrigo-farrago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farsaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"farsant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febre paratifoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febre tifoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febril\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febrífug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feina monòtona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer-se borrós\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer-se malbé\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer abaixar el preu\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer atenció\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer befa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fer cruixir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fer escarni\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fer una reverència\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferida de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferro número cinc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetilleria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figura retòrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fimosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"final de copa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fintar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flagel·lar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"florit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foc antiaeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foc preparat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"focs artificials\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"focs d'artifici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folgat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folklore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"follia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formatge suís\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"força centrífuga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foscam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foscúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foxtrot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franciscà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenesí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frigorífic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fringíl·lid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fruir de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frívol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fuetejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fulla trifoliada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furtador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusta d'auró\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusta de sicòmor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fímic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fúcsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galeta per gossos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galifardeu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galteres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gambuix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gammaglobulina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gandul\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrena\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangsterisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garantia de bon fi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garantia de compliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garreperia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrotar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrotejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasiveria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis crònica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gat del desert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gat maltès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gat siamès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gatamoixeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaudir de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gavinot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gavià\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gel·laba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gemegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"gemir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"genollera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus amsinckia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anchusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bauhinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus brachystegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cassiope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cercosporella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cocculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus coptis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus crescentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus dendroctonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus entoloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus latrodectus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus lepiota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus limenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus monarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus physostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phytophthora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus pythium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus reticulitermes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus rosellinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus tussilago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus veratrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gilbert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gipó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gitar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gladiador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glàndula submaxil·lar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonorrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorgera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorra de dutxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorra de mariner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorrer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorrista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"govern titella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grampilló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granuloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratis\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greix poliinsaturat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.213\"\n  },\n  \"grisejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisenc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guant de boxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardabraç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardafrens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guillada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guilladura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guinder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gàlban\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gàngster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gènere humà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haiku\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harpía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebefrènia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hecatombe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hematúria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hemiplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemoptisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heretgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrocefàlia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofòbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hijab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipoclorit de sodi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipocàpnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipopotassèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"historiador de l'art\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"història de misteri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home del temps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home llop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homicidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idiòcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignífug\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"il·legal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"il·legibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imatges predissenyades\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imbecil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immigrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immigrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immundícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impenetrabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"imperceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impracticabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impredictible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impressió sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprevist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"improductivitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"improperis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprudència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.112\"\n  },\n  \"inaccessibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadmissibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inaguantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"incaut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.26\"\n  },\n  \"incendi forestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendi intencionat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incoherència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"incolor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incompetent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"incompliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incumbir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indecent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"indecís\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"indefensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefinició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indesxifrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indigestió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indiscret\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inelegibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inerme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inestabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.21\"\n  },\n  \"infactible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infamador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infanticidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infeliç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infiltrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inflamació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inflamar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inhalador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhumació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhumà\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injuriar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innocu\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoculació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inositol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquietant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"inquisició\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insalubritat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insensibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"insipidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"insofrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"insonoritzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspector general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrument de tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiència renal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insuls\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"insurreción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insània\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insígnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insígnies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insípid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"interdicció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interí\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intimidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intoxicació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intranquil·litzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intrepidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intromissió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"invalidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inverosimilitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inviable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invisibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inèdit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irracionalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrealitzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreversibilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrupció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"ivori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"janot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jarret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jeans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kiang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kleenex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapidació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larvicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latitud lunar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latrodectus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laurèola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legionella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lenitiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lent d'electrons\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lent de gran angular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leptospira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesa majestat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leucèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licàntrop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limfoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"listeriosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lladre de pisos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lladregot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llaga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llardós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lledó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llei islàmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llençar la tovallola\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llet pasteuritzada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llicenciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lligon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lliurea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lliça\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lluita lliure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llum de neó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llumí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llàstima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macassar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maculació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magistratura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala administració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala sort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malalt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malalt crònic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malalt incurable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malapropisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malbaratament d'energia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldiença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"males maneres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malfaent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malfiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malformat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malguany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"malintencionat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malversar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malware\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malària\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manca d'educació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manca de forma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manefla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manganès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mangui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantellina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maníac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maquinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marró vermellenc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marsala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mascara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masclet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masmorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"massacre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material bèl·lic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materialisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matoll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matollar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mediocre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"medul·la oblonga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memòria no volàtil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metalepsi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metanol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metge de capçalera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metilfenidat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metzinós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metàstasi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"micronutrient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"migranya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"militància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"milà negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineral de plom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minúcia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miscel·lània\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitjà de comunicació escrit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mixomatosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mocador de cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mocador de coll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mocador de paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mod\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mofar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"monarquia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongolisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoaural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monòxid de carboni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morbositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"mossegar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"motada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"moviment reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mullena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munt d'escòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muntanyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murmuri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"musclera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustiar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màgia negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màmiga raglan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màmpara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"màrtir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nacrat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nanisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcolèpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotraficant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotràfic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naufragi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrofília\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrosi\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necròtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negrós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurastènia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neutral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nevera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nigromància\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nirvana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrobenzè\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nivi\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no-metall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no metàlic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noble vitalici\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noguer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noticiari cinematogràfic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novaparla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novel·la curta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nul\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 22\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 24\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 25\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 27\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 34\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 4\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atòmic 73\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objector\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obliqüitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oboè d'amor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obscurantista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obsequiositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obtús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obès\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell de presa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell rapaç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocell rapinyaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octòpode\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficial de la llei\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onagre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oncogen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operació d'intel·ligència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oportunidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oposar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"oprobi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oratge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order phallales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordre d'animals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordre de detenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordre del dia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oreig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orella interna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ortopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmosi inversa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostentós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.26\"\n  },\n  \"ovella negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"oxímoron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pa negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pacificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paixà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatòsquisi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleopatologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paludisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal·liació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal·liatiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pancreatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pansir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pantalons de muntar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pantalons texans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panxada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paper carbó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paper de cartes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"paracetamol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paral·lel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paranoia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paravent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parc zoològic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parotiditis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parpallejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parrac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parricidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partit polític\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partícula beta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partícula elemental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paràlisi cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parèsic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passamà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passatger\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurel·losi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastisset farcit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patellida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patologia vegetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pega\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelacanyes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"pell de gallina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pel·lagra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penalització\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensió de mala mort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penumbra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"percaç\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perdre força\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peridotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periodontitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perlí\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanganat de potassa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perpetració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perplexitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persitent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona de color\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertorbació mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pervers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesta septicèmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pestanya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peu forcat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peça d'escacs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peça de vestir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phallales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phytophthora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picardies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"pidolaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"pilota de golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pintor de pa sucat amb oli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pintora de pa sucat amb oli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinça de corbata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirata informàtic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"piridina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirotècnica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitjora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitjoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plantador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planxada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planímetre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plasenteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"ploracossos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ploramorts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ploranera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ploriquejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plutòcrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poca-pena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poca-vergonya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polemitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"policia montada de Canadà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polèmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pompó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porqueria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"port de muntanya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portar mala sort\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posar atenció\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posar barricades\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posseït\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"possés\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postilló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postulació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poti-poti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pre-eclàmpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pre-requisit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pregunta difícil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preocupant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"presbícia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presumpte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pretenciós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"previsió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primogènit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problema difícil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problemes de visió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problemàtic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procurar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producte perible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proferir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"professar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressió geomètrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolixitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protector del coll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protestació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prova de foc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prova decisiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pruna de Damasc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudofloema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicologia clínica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psiquiatria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"psitacosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psocòpters\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pteridosperma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pteridospermòpsid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pugilisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pujol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punt mort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrescina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrescència\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pòlissa flotant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pòlissa oberta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarsita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quedar-se en blanc\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"queratocon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"querella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"quimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quixotisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramipril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raons\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"rapinyaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raptar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ras\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rauc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raça humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reaparèixer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebeldia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebentada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconeixement d'empremtes dactilars\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconsideració\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconvenció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"recursos humans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recursos laborals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redeterminació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reelecció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"referir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"referència anatòmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflex\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflex instintiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regicidi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reglamentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relat d'aventures\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remugar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rendir-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"renglera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renoc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renocat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reposapeus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repàs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"requisit previ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisitòria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"res adjudicata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residu tòxic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressentit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressonar com metall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressonància nuclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressorgir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ressucitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restrenyiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reticulitermes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revolta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"rigatoni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rigidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"rinoceront negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rival\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roba de feina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roba interior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"robador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rogallós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rondador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rondaire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rosellinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotenona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rovellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubials\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubèola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rudimentari\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rufianeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ràfega\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"règim titella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rèquiem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"salacot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicilat de fenil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicilat de metil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saltamarges\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanció pragmàtica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saprobi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapròfit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saquejador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarcoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarong malai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saturnisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secobarbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segona llei de la termodinàmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segrestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seleni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semblança mútua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensació de pressió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentir enyorança de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentit de l'orientació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentit del deure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"senzillesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"sepeli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septicèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sepulcral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sepultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serracaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servei militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shorts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"siamès\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sicofant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"similor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simposi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincretitzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sirena de boira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sirte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema auditiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de pesos i mesures\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de propulsió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenaturalitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socarrar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solcar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solidificació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soltura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sordidesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospitós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospitós d'assesinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sotana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sotragar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"status asmaticus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"streptopelia turtur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subordinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"subproletariat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"succionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suor freda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superar en estratègia\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suposat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrealisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sutge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sègol banyut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sèpsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sèu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome de down\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca d'oli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca de fang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca de llot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca de naixement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca de naixença\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taca de rovell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tacada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tacar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talidomida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taquineria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarpan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarquim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taràntula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tatuar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taujà\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teatralitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperatura baixa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"teratologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terra erma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teròpodes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testarut\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"texans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thriller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tie-break\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tinyeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tinyós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titani\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tombac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortuositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tos ferina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tossir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tovalló\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxèmia gravídica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tractant en cavalls\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tractar-se\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traficant d'armas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trampa per a rates\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastorn mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastornar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traïció\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"treball feixuc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricloroetilè\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricomonosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triscadecafòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triumvir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trobat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trànsit religiós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tsunami\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tuberculós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tularèmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumor benigne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turmentador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tussilago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tàntal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tàrtar emètic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"túmid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"udolament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulleres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulleres protectores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ullerós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniformitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unilateralisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untuositat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usurpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacil·lant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"vacunació\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"vaga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaixell de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vandalisme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"variabilitat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"varicel·la\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vell arrosinat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vell xaruc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venjador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventijol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventolina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventrellada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veratrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verinós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vernís\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"versicle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestigial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestit de bany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestit de feina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestit de vol d'una sola peça\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestit espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestits de platja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vesània\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"via de servei\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"via morta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"via secundària\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vicealmirall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vilipendiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viltat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viuda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vividor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulgar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.123\"\n  },\n  \"vídua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xacó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xancle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xapatge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xec\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xeviot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xiu-xiueig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xoc anafilàctic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xoriçada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xulo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zidovudina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zona humida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoofòbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoològic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoonosi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid bròmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid cròmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid fumàric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid hipoclorós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid maleic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid nitrós\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"àcid permangànic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ésser mític\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"òbit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"òpal negre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/Dutch/negations_du.json",
    "content": "{\n  \"words\": [\"niet\", \"nooit\", \"niemand\", \"niets\", \"nee\", \"neen\"]\n}\n"
  },
  {
    "path": "lib/natural/sentiment/Dutch/pattern-sentiment-nl.json",
    "content": "{\n  \"Amsterdams\": {\n    \"form\": \"Amsterdams\",\n    \"cornetto_id\": \"r_a-16677\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Amsterdam\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Angelsaksisch\": {\n    \"form\": \"Angelsaksisch\",\n    \"cornetto_id\": \"r_a-8929\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"Engels\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Arabisch\": {\n    \"form\": \"Arabisch\",\n    \"cornetto_id\": \"r_a-16693\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Arabië\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Ardens\": {\n    \"form\": \"Ardens\",\n    \"cornetto_id\": \"r_a-17252\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de Ardennen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Arnhems\": {\n    \"form\": \"Arnhems\",\n    \"cornetto_id\": \"r_a-16698\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Arnhem\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Assens\": {\n    \"form\": \"Assens\",\n    \"cornetto_id\": \"r_a-16700\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Assen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Boedapests\": {\n    \"form\": \"Boedapests\",\n    \"cornetto_id\": \"r_a-16745\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Boedapest\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Bourgondisch\": {\n    \"form\": \"Bourgondisch\",\n    \"cornetto_id\": \"r_a-17258\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitbundig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Brussels\": {\n    \"form\": \"Brussels\",\n    \"cornetto_id\": \"r_a-17261\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Brussel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Byzantijns\": {\n    \"form\": \"Byzantijns\",\n    \"cornetto_id\": \"r_a-9514\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit Byzantium\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Eindhovens\": {\n    \"form\": \"Eindhovens\",\n    \"cornetto_id\": \"r_a-16807\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Eindhoven\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Emmens\": {\n    \"form\": \"Emmens\",\n    \"cornetto_id\": \"r_a-16810\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Emmen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Enschedees\": {\n    \"form\": \"Enschedees\",\n    \"cornetto_id\": \"r_a-16811\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Enschede\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Flevolands\": {\n    \"form\": \"Flevolands\",\n    \"cornetto_id\": \"r_a-16825\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Flevoland\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Gronings\": {\n    \"form\": \"Gronings\",\n    \"cornetto_id\": \"r_a-16844\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Groningen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Hollands\": {\n    \"form\": \"Hollands\",\n    \"cornetto_id\": \"r_a-17274\",\n    \"cornetto_synset_id\": \"n_a-500463\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Holland\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"IJslands\": {\n    \"form\": \"IJslands\",\n    \"cornetto_id\": \"r_a-16869\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van IJsland\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Jakartaans\": {\n    \"form\": \"Jakartaans\",\n    \"cornetto_id\": \"r_a-16881\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Jakarta\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Lelystads\": {\n    \"form\": \"Lelystads\",\n    \"cornetto_id\": \"r_a-16945\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Lelystad\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Londens\": {\n    \"form\": \"Londens\",\n    \"cornetto_id\": \"r_a-16963\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Londen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Macaus\": {\n    \"form\": \"Macaus\",\n    \"cornetto_id\": \"r_a-16972\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Macau\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Moskous\": {\n    \"form\": \"Moskous\",\n    \"cornetto_id\": \"r_a-17018\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Moskou\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Nederlandstalig\": {\n    \"form\": \"Nederlandstalig\",\n    \"cornetto_id\": \"r_a-13099\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"Nederlands als moeder- of voertaal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Neurenbergs\": {\n    \"form\": \"Neurenbergs\",\n    \"cornetto_id\": \"r_a-17036\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Neurenberg\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Oost-Europees\": {\n    \"form\": \"Oost-Europees\",\n    \"cornetto_id\": \"r_a-17063\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Oost-Europa\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"Romaans\": {\n    \"form\": \"Romaans\",\n    \"cornetto_id\": \"r_a-14618\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan het Latijn verwant\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Romeins\": {\n    \"form\": \"Romeins\",\n    \"cornetto_id\": \"r_a-17285\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Rome\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Sanmarinees\": {\n    \"form\": \"Sanmarinees\",\n    \"cornetto_id\": \"r_a-17121\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van San Marino\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Siciliaans\": {\n    \"form\": \"Siciliaans\",\n    \"cornetto_id\": \"r_a-17138\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Sicilië\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Transsylvanisch\": {\n    \"form\": \"Transsylvanisch\",\n    \"cornetto_id\": \"r_a-17186\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Transsylvanië\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Trojaans\": {\n    \"form\": \"Trojaans\",\n    \"cornetto_id\": \"r_a-15517\",\n    \"cornetto_synset_id\": \"n_a-501018\",\n    \"wordnet_id\": \"a-03126638\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Troje\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Utrechts\": {\n    \"form\": \"Utrechts\",\n    \"cornetto_id\": \"r_a-17204\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van Utrecht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"Victoriaans\": {\n    \"form\": \"Victoriaans\",\n    \"cornetto_id\": \"r_a-16293\",\n    \"cornetto_synset_id\": \"n_a-532975\",\n    \"wordnet_id\": \"a-03027793\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. 19de-eeuwse Engeland\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanbevelenswaardig\": {\n    \"form\": \"aanbevelenswaardig\",\n    \"cornetto_id\": \"r_a-8843\",\n    \"cornetto_synset_id\": \"n_a-524889\",\n    \"wordnet_id\": \"a-00067038\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanbeveling verdienend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanbiddelijk\": {\n    \"form\": \"aanbiddelijk\",\n    \"cornetto_id\": \"r_a-8959\",\n    \"cornetto_synset_id\": \"n_a-521695\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg bekoorlijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aandachtig\": {\n    \"form\": \"aandachtig\",\n    \"cornetto_id\": \"r_a-8844\",\n    \"cornetto_synset_id\": \"n_a-501199\",\n    \"wordnet_id\": \"a-00164308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oplettend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aandoenlijk\": {\n    \"form\": \"aandoenlijk\",\n    \"cornetto_id\": \"r_a-8651\",\n    \"cornetto_synset_id\": \"n_a-512118\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vertederend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"aangebrand\": {\n    \"form\": \"aangebrand\",\n    \"cornetto_id\": \"r_a-8961\",\n    \"cornetto_synset_id\": \"c_59\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan de pan vastgebrand\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"aangelegd\": {\n    \"form\": \"aangelegd\",\n    \"cornetto_id\": \"r_a-9028\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanleg hebbend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aangenaam\": {\n    \"form\": \"aangenaam\",\n    \"cornetto_id\": \"r_a-8654\",\n    \"cornetto_synset_id\": \"c_644\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prettig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aangeschoten\": {\n    \"form\": \"aangeschoten\",\n    \"cornetto_id\": \"r_a-8655\",\n    \"cornetto_synset_id\": \"n_a-501224\",\n    \"wordnet_id\": \"a-00798103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje dronken\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aangeslagen\": {\n    \"form\": \"aangeslagen\",\n    \"cornetto_id\": \"r_a-8656\",\n    \"cornetto_synset_id\": \"d_v-1231\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit evenwicht gebracht\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aangrijpend\": {\n    \"form\": \"aangrijpend\",\n    \"cornetto_id\": \"r_a-8660\",\n    \"cornetto_synset_id\": \"n_a-501243\",\n    \"wordnet_id\": \"a-01344171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg ontroerend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanhoudend\": {\n    \"form\": \"aanhoudend\",\n    \"cornetto_id\": \"r_a-8664\",\n    \"cornetto_synset_id\": \"n_a-533706\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortdurend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanlokkelijk\": {\n    \"form\": \"aanlokkelijk\",\n    \"cornetto_id\": \"r_a-8853\",\n    \"cornetto_synset_id\": \"n_a-501309\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aantrekkelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanmatigend\": {\n    \"form\": \"aanmatigend\",\n    \"cornetto_id\": \"r_a-8668\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arrogant\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanmerkelijk\": {\n    \"form\": \"aanmerkelijk\",\n    \"cornetto_id\": \"r_a-8669\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanzienlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"aannemelijk\": {\n    \"form\": \"aannemelijk\",\n    \"cornetto_id\": \"r_a-8670\",\n    \"cornetto_synset_id\": \"d_a-9295\",\n    \"wordnet_id\": \"a-00644839\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plausibel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanraden\": {\n    \"form\": \"aanraden\",\n    \"cornetto_id\": \"r_v-184\",\n    \"cornetto_synset_id\": \"d_v-145\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aanrader\": {\n    \"form\": \"aanrader\",\n    \"cornetto_id\": \"r_n-2294\",\n    \"cornetto_synset_id\": \"d_n-37964\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aanschouwelijk\": {\n    \"form\": \"aanschouwelijk\",\n    \"cornetto_id\": \"r_a-8672\",\n    \"cornetto_synset_id\": \"n_a-501282\",\n    \"wordnet_id\": \"a-00428404\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zo dat je het voor je ziet\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aansprakelijk\": {\n    \"form\": \"aansprakelijk\",\n    \"cornetto_id\": \"r_a-8854\",\n    \"cornetto_synset_id\": \"n_a-532262\",\n    \"wordnet_id\": \"a-00324878\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verantwoordelijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanstekelijk\": {\n    \"form\": \"aanstekelijk\",\n    \"cornetto_id\": \"r_a-8675\",\n    \"cornetto_synset_id\": \"n_a-501301\",\n    \"wordnet_id\": \"a-01303042\",\n    \"pos\": \"JJ\",\n    \"sense\": \"navolging opwekkend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanstellerig\": {\n    \"form\": \"aanstellerig\",\n    \"cornetto_id\": \"r_a-16566\",\n    \"cornetto_synset_id\": \"n_a-501302\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneigd tot aanstellen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aantoonbaar\": {\n    \"form\": \"aantoonbaar\",\n    \"cornetto_id\": \"r_a-8857\",\n    \"cornetto_synset_id\": \"n_a-501335\",\n    \"wordnet_id\": \"a-00093556\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan te tonen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"aantrekkelijk\": {\n    \"form\": \"aantrekkelijk\",\n    \"cornetto_id\": \"r_a-8677\",\n    \"cornetto_synset_id\": \"n_a-501309\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"attractief\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanvaardbaar\": {\n    \"form\": \"aanvaardbaar\",\n    \"cornetto_id\": \"r_a-8858\",\n    \"cornetto_synset_id\": \"n_a-501312\",\n    \"wordnet_id\": \"a-01761871\",\n    \"pos\": \"JJ\",\n    \"sense\": \"acceptabel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanvallig\": {\n    \"form\": \"aanvallig\",\n    \"cornetto_id\": \"r_a-8967\",\n    \"cornetto_synset_id\": \"n_a-505496\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bekoorlijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanvankelijk\": {\n    \"form\": \"aanvankelijk\",\n    \"cornetto_id\": \"r_a-8678\",\n    \"cornetto_synset_id\": \"n_a-501322\",\n    \"wordnet_id\": \"a-01009865\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bij aanvang\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanvechtbaar\": {\n    \"form\": \"aanvechtbaar\",\n    \"cornetto_id\": \"r_a-8679\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betwistbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanverwant\": {\n    \"form\": \"aanverwant\",\n    \"cornetto_id\": \"r_a-8680\",\n    \"cornetto_synset_id\": \"n_a-501232\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"soortgelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanwezig\": {\n    \"form\": \"aanwezig\",\n    \"cornetto_id\": \"r_a-8683\",\n    \"cornetto_synset_id\": \"n_a-533683\",\n    \"wordnet_id\": \"a-00184543\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorhanden\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aanwijsbaar\": {\n    \"form\": \"aanwijsbaar\",\n    \"cornetto_id\": \"r_a-8860\",\n    \"cornetto_synset_id\": \"n_a-501335\",\n    \"wordnet_id\": \"a-00093556\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aantoonbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aanzienlijk\": {\n    \"form\": \"aanzienlijk\",\n    \"cornetto_id\": \"r_a-9034\",\n    \"cornetto_synset_id\": \"n_a-533659\",\n    \"wordnet_id\": \"a-01590484\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel aanzien\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"aardig\": {\n    \"form\": \"aardig\",\n    \"cornetto_id\": \"r_a-9035\",\n    \"cornetto_synset_id\": \"c_175\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sympathiek\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aardrijkskundig\": {\n    \"form\": \"aardrijkskundig\",\n    \"cornetto_id\": \"r_a-8862\",\n    \"cornetto_synset_id\": \"n_a-501399\",\n    \"wordnet_id\": \"a-01470496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geografisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aards\": {\n    \"form\": \"aards\",\n    \"cornetto_id\": \"r_a-8689\",\n    \"cornetto_synset_id\": \"n_a-501400\",\n    \"wordnet_id\": \"a-00124918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan de aarde gebonden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"aartslui\": {\n    \"form\": \"aartslui\",\n    \"cornetto_id\": \"r_a-8969\",\n    \"cornetto_synset_id\": \"n_a-501421\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel lui\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abnormaal\": {\n    \"form\": \"abnormaal\",\n    \"cornetto_id\": \"r_a-8867\",\n    \"cornetto_synset_id\": \"n_a-521201\",\n    \"wordnet_id\": \"a-00287275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afwijkend\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abominabel\": {\n    \"form\": \"abominabel\",\n    \"cornetto_id\": \"r_a-8690\",\n    \"cornetto_synset_id\": \"n_a-534085\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afschuwelijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abrupt\": {\n    \"form\": \"abrupt\",\n    \"cornetto_id\": \"r_a-8868\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plotseling\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"absolutistisch\": {\n    \"form\": \"absolutistisch\",\n    \"cornetto_id\": \"r_a-8970\",\n    \"cornetto_synset_id\": \"n_a-501458\",\n    \"wordnet_id\": \"a-03139045\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als van een absolutist\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absoluut\": {\n    \"form\": \"absoluut\",\n    \"cornetto_id\": \"r_a-8691\",\n    \"cornetto_synset_id\": \"n_a-501460\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volstrekt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"abstract\": {\n    \"form\": \"abstract\",\n    \"cornetto_id\": \"r_a-9038\",\n    \"cornetto_synset_id\": \"n_a-501465\",\n    \"wordnet_id\": \"a-00005205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bepaalde kunstvorm\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absurd\": {\n    \"form\": \"absurd\",\n    \"cornetto_id\": \"r_a-8693\",\n    \"cornetto_synset_id\": \"n_a-501466\",\n    \"wordnet_id\": \"a-02074929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onzinnig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"absurdistisch\": {\n    \"form\": \"absurdistisch\",\n    \"cornetto_id\": \"r_a-8870\",\n    \"cornetto_synset_id\": \"n_a-501468\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in het absurdisme\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"acceptabel\": {\n    \"form\": \"acceptabel\",\n    \"cornetto_id\": \"r_a-8697\",\n    \"cornetto_synset_id\": \"n_a-501312\",\n    \"wordnet_id\": \"a-01761871\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanvaardbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"accuraat\": {\n    \"form\": \"accuraat\",\n    \"cornetto_id\": \"r_a-9045\",\n    \"cornetto_synset_id\": \"n_a-534096\",\n    \"wordnet_id\": \"a-02460502\",\n    \"pos\": \"JJ\",\n    \"sense\": \"juist\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"achteloos\": {\n    \"form\": \"achteloos\",\n    \"cornetto_id\": \"r_a-9043\",\n    \"cornetto_synset_id\": \"n_a-520762\",\n    \"wordnet_id\": \"a-00545746\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbekommerd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"achterbaks\": {\n    \"form\": \"achterbaks\",\n    \"cornetto_id\": \"r_a-8700\",\n    \"cornetto_synset_id\": \"n_a-529326\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geniepig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"achterdochtig\": {\n    \"form\": \"achterdochtig\",\n    \"cornetto_id\": \"r_a-8701\",\n    \"cornetto_synset_id\": \"n_a-534218\",\n    \"wordnet_id\": \"a-00325619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wantrouwig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"achterhaald\": {\n    \"form\": \"achterhaald\",\n    \"cornetto_id\": \"r_a-8702\",\n    \"cornetto_synset_id\": \"n_a-501544\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verouderd\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"actueel\": {\n    \"form\": \"actueel\",\n    \"cornetto_id\": \"r_a-9050\",\n    \"cornetto_synset_id\": \"n_a-513031\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"huidig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"acuut\": {\n    \"form\": \"acuut\",\n    \"cornetto_id\": \"r_a-8709\",\n    \"cornetto_synset_id\": \"n_a-501630\",\n    \"wordnet_id\": \"a-00650900\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plotseling en hevig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"additioneel\": {\n    \"form\": \"additioneel\",\n    \"cornetto_id\": \"r_a-8878\",\n    \"cornetto_synset_id\": \"d_a-9187\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toegevoegd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"adembenemend\": {\n    \"form\": \"adembenemend\",\n    \"cornetto_id\": \"r_a-8711\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg spannend of mooi\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ademloos\": {\n    \"form\": \"ademloos\",\n    \"cornetto_id\": \"r_a-8712\",\n    \"cornetto_synset_id\": \"n_a-509723\",\n    \"wordnet_id\": \"a-00163948\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met ingehouden adem\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"adequaat\": {\n    \"form\": \"adequaat\",\n    \"cornetto_id\": \"r_a-8713\",\n    \"cornetto_synset_id\": \"d_a-9306\",\n    \"wordnet_id\": \"a-01020885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"passend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"administratiefrechtelijk\": {\n    \"form\": \"administratiefrechtelijk\",\n    \"cornetto_id\": \"r_a-8880\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bestuursrechtelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afbreekbaar\": {\n    \"form\": \"afbreekbaar\",\n    \"cornetto_id\": \"r_a-8975\",\n    \"cornetto_synset_id\": \"n_a-501723\",\n    \"wordnet_id\": \"a-01753652\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mogelijk om af te breken\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"affectief\": {\n    \"form\": \"affectief\",\n    \"cornetto_id\": \"r_a-8881\",\n    \"cornetto_synset_id\": \"n_a-508279\",\n    \"wordnet_id\": \"a-00853776\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verband houdend met het gevoel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgedraaid\": {\n    \"form\": \"afgedraaid\",\n    \"cornetto_id\": \"r_a-8718\",\n    \"cornetto_synset_id\": \"n_a-531701\",\n    \"wordnet_id\": \"a-02433451\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer moe\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgeladen\": {\n    \"form\": \"afgeladen\",\n    \"cornetto_id\": \"r_a-8719\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal vol mensen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"afgeleefd\": {\n    \"form\": \"afgeleefd\",\n    \"cornetto_id\": \"r_a-8976\",\n    \"cornetto_synset_id\": \"n_a-501747\",\n    \"wordnet_id\": \"a-02040233\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(sterk) verzwakt door ouderdom\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgepast\": {\n    \"form\": \"afgepast\",\n    \"cornetto_id\": \"r_a-8978\",\n    \"cornetto_synset_id\": \"c_66\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"juist afgemeten\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgetrapt\": {\n    \"form\": \"afgetrapt\",\n    \"cornetto_id\": \"r_a-8980\",\n    \"cornetto_synset_id\": \"n_a-501774\",\n    \"wordnet_id\": \"a-02582873\",\n    \"pos\": \"JJ\",\n    \"sense\": \"versleten\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgezaagd\": {\n    \"form\": \"afgezaagd\",\n    \"cornetto_id\": \"r_a-8723\",\n    \"cornetto_synset_id\": \"n_a-501778\",\n    \"wordnet_id\": \"a-01688757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overbekend en saai\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afgrijselijk\": {\n    \"form\": \"afgrijselijk\",\n    \"cornetto_id\": \"r_a-8724\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afschuwelijk\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"afgunstig\": {\n    \"form\": \"afgunstig\",\n    \"cornetto_id\": \"r_a-8726\",\n    \"cornetto_synset_id\": \"d_a-9356\",\n    \"wordnet_id\": \"a-01113636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"jaloers\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"afhankelijk\": {\n    \"form\": \"afhankelijk\",\n    \"cornetto_id\": \"r_a-8729\",\n    \"cornetto_synset_id\": \"n_a-501791\",\n    \"wordnet_id\": \"a-00725772\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zelfstandig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"afkerig\": {\n    \"form\": \"afkerig\",\n    \"cornetto_id\": \"r_a-8730\",\n    \"cornetto_synset_id\": \"n_a-502064\",\n    \"wordnet_id\": \"a-02360944\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een afkeer hebbend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afknapper\": {\n    \"form\": \"afknapper\",\n    \"cornetto_id\": \"r_n-2890\",\n    \"cornetto_synset_id\": \"d_n-24193\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"afkomstig\": {\n    \"form\": \"afkomstig\",\n    \"cornetto_id\": \"r_a-9063\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"komend van\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"afschaffen\": {\n    \"form\": \"afschaffen\",\n    \"cornetto_id\": \"r_v-689\",\n    \"cornetto_synset_id\": \"d_v-617\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"afschepen\": {\n    \"form\": \"afschepen\",\n    \"cornetto_id\": \"r_v-697\",\n    \"cornetto_synset_id\": \"d_v-624\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"afschrikwekkend\": {\n    \"form\": \"afschrikwekkend\",\n    \"cornetto_id\": \"r_a-8889\",\n    \"cornetto_synset_id\": \"n_a-502271\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afkeer inboezemend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afschuwelijk\": {\n    \"form\": \"afschuwelijk\",\n    \"cornetto_id\": \"c_545491\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel lelijk of heel vervelend\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"afschuwwekkend\": {\n    \"form\": \"afschuwwekkend\",\n    \"cornetto_id\": \"r_a-8985\",\n    \"cornetto_synset_id\": \"n_a-534469\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afschuw verwekkend\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"afstandelijk\": {\n    \"form\": \"afstandelijk\",\n    \"cornetto_id\": \"r_a-8734\",\n    \"cornetto_synset_id\": \"n_a-515500\",\n    \"wordnet_id\": \"a-01257612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"afstotelijk\": {\n    \"form\": \"afstotelijk\",\n    \"cornetto_id\": \"r_a-8987\",\n    \"cornetto_synset_id\": \"n_a-534469\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afkeer inboezemend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aftands\": {\n    \"form\": \"aftands\",\n    \"cornetto_id\": \"r_a-8890\",\n    \"cornetto_synset_id\": \"n_a-501876\",\n    \"wordnet_id\": \"a-00679717\",\n    \"pos\": \"JJ\",\n    \"sense\": \"versleten\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afzienbaar\": {\n    \"form\": \"afzienbaar\",\n    \"cornetto_id\": \"r_a-8740\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te overzien\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"afzonderlijk\": {\n    \"form\": \"afzonderlijk\",\n    \"cornetto_id\": \"r_a-8741\",\n    \"cornetto_synset_id\": \"n_a-502386\",\n    \"wordnet_id\": \"a-00160768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"apart\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"agressief\": {\n    \"form\": \"agressief\",\n    \"cornetto_id\": \"r_a-8744\",\n    \"cornetto_synset_id\": \"n_a-504134\",\n    \"wordnet_id\": \"a-00587376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijtend (van stoffen)\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"akelig\": {\n    \"form\": \"akelig\",\n    \"cornetto_id\": \"r_a-8746\",\n    \"cornetto_synset_id\": \"n_a-519014\",\n    \"wordnet_id\": \"a-02545689\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje ziek\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"alfabetisch\": {\n    \"form\": \"alfabetisch\",\n    \"cornetto_id\": \"r_a-8750\",\n    \"cornetto_synset_id\": \"n_a-502008\",\n    \"wordnet_id\": \"a-00100634\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op alfabet\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"algebraïsch\": {\n    \"form\": \"algebraïsch\",\n    \"cornetto_id\": \"r_a-8989\",\n    \"cornetto_synset_id\": \"n_a-502015\",\n    \"wordnet_id\": \"a-02854350\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de algebra\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"algeheel\": {\n    \"form\": \"algeheel\",\n    \"cornetto_id\": \"r_a-8752\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"totaal\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"algemeen\": {\n    \"form\": \"algemeen\",\n    \"cornetto_id\": \"r_a-9074\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"alledaags\": {\n    \"form\": \"alledaags\",\n    \"cornetto_id\": \"r_a-8755\",\n    \"cornetto_synset_id\": \"n_a-506314\",\n    \"wordnet_id\": \"a-01674242\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van elke dag\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"allegorisch\": {\n    \"form\": \"allegorisch\",\n    \"cornetto_id\": \"r_a-8898\",\n    \"cornetto_synset_id\": \"n_a-530072\",\n    \"wordnet_id\": \"a-01496592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een allegorie\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"alleraardigst\": {\n    \"form\": \"alleraardigst\",\n    \"cornetto_id\": \"r_a-8992\",\n    \"cornetto_synset_id\": \"n_a-508335\",\n    \"wordnet_id\": \"a-00167278\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel leuk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allerbelangrijkst\": {\n    \"form\": \"allerbelangrijkst\",\n    \"cornetto_id\": \"r_a-8899\",\n    \"cornetto_synset_id\": \"n_a-536072\",\n    \"wordnet_id\": \"a-00792641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg belangrijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allerbest\": {\n    \"form\": \"allerbest\",\n    \"cornetto_id\": \"r_a-8900\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel erg goed\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"allereerst\": {\n    \"form\": \"allereerst\",\n    \"cornetto_id\": \"r_a-8901\",\n    \"cornetto_synset_id\": \"n_a-502062\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan al het andere voorafgaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allerergst\": {\n    \"form\": \"allerergst\",\n    \"cornetto_id\": \"r_a-8902\",\n    \"cornetto_synset_id\": \"n_a-502063\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erger dan erg\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"allerhoogst\": {\n    \"form\": \"allerhoogst\",\n    \"cornetto_id\": \"r_a-8905\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het hoogst\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allerlaatst\": {\n    \"form\": \"allerlaatst\",\n    \"cornetto_id\": \"r_a-8993\",\n    \"cornetto_synset_id\": \"n_a-516555\",\n    \"wordnet_id\": \"a-00004296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het laatst van alles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allerlei\": {\n    \"form\": \"allerlei\",\n    \"cornetto_id\": \"d_a-9974\",\n    \"cornetto_synset_id\": \"n_a-502070\",\n    \"wordnet_id\": \"a-02506922\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allerleukst\": {\n    \"form\": \"allerleukst\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allerminst\": {\n    \"form\": \"allerminst\",\n    \"cornetto_id\": \"r_a-8909\",\n    \"cornetto_synset_id\": \"n_a-502073\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geringst\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"1.0\"\n  },\n  \"allermooist\": {\n    \"form\": \"allermooist\",\n    \"cornetto_id\": \"r_a-8910\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het mooist\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allesoverheersend\": {\n    \"form\": \"allesoverheersend\",\n    \"cornetto_id\": \"r_a-8915\",\n    \"cornetto_synset_id\": \"n_a-502084\",\n    \"wordnet_id\": \"a-01989446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer sterk overheersend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"alomvattend\": {\n    \"form\": \"alomvattend\",\n    \"cornetto_id\": \"r_a-8918\",\n    \"cornetto_synset_id\": \"n_a-502114\",\n    \"wordnet_id\": \"a-00526062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"alles omvattend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"aloud\": {\n    \"form\": \"aloud\",\n    \"cornetto_id\": \"r_a-8919\",\n    \"cornetto_synset_id\": \"n_a-508062\",\n    \"wordnet_id\": \"a-00353431\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van jaren her\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altruïstisch\": {\n    \"form\": \"altruïstisch\",\n    \"cornetto_id\": \"r_a-8761\",\n    \"cornetto_synset_id\": \"d_a-9432\",\n    \"wordnet_id\": \"a-00101609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbaatzuchtig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amateuristisch\": {\n    \"form\": \"amateuristisch\",\n    \"cornetto_id\": \"r_a-9079\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klungelig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ambitieus\": {\n    \"form\": \"ambitieus\",\n    \"cornetto_id\": \"r_a-8765\",\n    \"cornetto_synset_id\": \"n_a-502179\",\n    \"wordnet_id\": \"a-00104051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerzuchtig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amicaal\": {\n    \"form\": \"amicaal\",\n    \"cornetto_id\": \"r_a-8770\",\n    \"cornetto_synset_id\": \"n_a-533861\",\n    \"wordnet_id\": \"a-00452114\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vriendschappelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amoureus\": {\n    \"form\": \"amoureus\",\n    \"cornetto_id\": \"r_a-8771\",\n    \"cornetto_synset_id\": \"n_a-502212\",\n    \"wordnet_id\": \"a-01465214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verband houdend met liefde\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amusant\": {\n    \"form\": \"amusant\",\n    \"cornetto_id\": \"r_a-8773\",\n    \"cornetto_synset_id\": \"n_a-511389\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermakelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"anaal\": {\n    \"form\": \"anaal\",\n    \"cornetto_id\": \"r_a-8774\",\n    \"cornetto_synset_id\": \"n_a-502227\",\n    \"wordnet_id\": \"a-00109966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van of via de anus\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anachronistisch\": {\n    \"form\": \"anachronistisch\",\n    \"cornetto_id\": \"r_a-8998\",\n    \"cornetto_synset_id\": \"n_a-502229\",\n    \"wordnet_id\": \"a-02379925\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misplaatst in de tijd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"analoog\": {\n    \"form\": \"analoog\",\n    \"cornetto_id\": \"r_a-9082\",\n    \"cornetto_synset_id\": \"n_a-502234\",\n    \"wordnet_id\": \"a-00110497\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet digitaal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anarchistisch\": {\n    \"form\": \"anarchistisch\",\n    \"cornetto_id\": \"r_a-8923\",\n    \"cornetto_synset_id\": \"n_a-502239\",\n    \"wordnet_id\": \"a-00600192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het anarchisme betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anatomisch\": {\n    \"form\": \"anatomisch\",\n    \"cornetto_id\": \"r_a-8924\",\n    \"cornetto_synset_id\": \"n_a-502243\",\n    \"wordnet_id\": \"a-02897524\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontleedkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ander\": {\n    \"form\": \"ander\",\n    \"cornetto_id\": \"r_a-9084\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verschillend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"anderhalf\": {\n    \"form\": \"anderhalf\",\n    \"cornetto_id\": \"r_a-8925\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een en een half\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"anders\": {\n    \"form\": \"anders\",\n    \"cornetto_id\": \"r_a-8778\",\n    \"cornetto_synset_id\": \"d_a-9573\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afwijkend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"anekdotisch\": {\n    \"form\": \"anekdotisch\",\n    \"cornetto_id\": \"r_a-8928\",\n    \"cornetto_synset_id\": \"n_a-502257\",\n    \"wordnet_id\": \"a-00495916\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (in) een anekdote\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"anglicaans\": {\n    \"form\": \"anglicaans\",\n    \"cornetto_id\": \"r_a-8780\",\n    \"cornetto_synset_id\": \"n_a-502264\",\n    \"wordnet_id\": \"a-02954459\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gerelateerd aan de anglicaanse kerk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angstaanjagend\": {\n    \"form\": \"angstaanjagend\",\n    \"cornetto_id\": \"r_a-8930\",\n    \"cornetto_synset_id\": \"n_a-502271\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg eng\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"angstig\": {\n    \"form\": \"angstig\",\n    \"cornetto_id\": \"r_a-9087\",\n    \"cornetto_synset_id\": \"n_a-502271\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gerelateerd aan angst\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"angstwekkend\": {\n    \"form\": \"angstwekkend\",\n    \"cornetto_id\": \"r_a-8931\",\n    \"cornetto_synset_id\": \"n_a-502271\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"angst verwekkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"anticommunistisch\": {\n    \"form\": \"anticommunistisch\",\n    \"cornetto_id\": \"r_a-9006\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegen het communisme\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antifascistisch\": {\n    \"form\": \"antifascistisch\",\n    \"cornetto_id\": \"r_a-8934\",\n    \"cornetto_synset_id\": \"n_a-502336\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegen het fascisme\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antiquarisch\": {\n    \"form\": \"antiquarisch\",\n    \"cornetto_id\": \"r_a-8937\",\n    \"cornetto_synset_id\": \"n_a-502353\",\n    \"wordnet_id\": \"a-01638962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verband houdend met antiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antiracistisch\": {\n    \"form\": \"antiracistisch\",\n    \"cornetto_id\": \"r_a-9009\",\n    \"cornetto_synset_id\": \"n_a-502356\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegen racisme\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"antisemitisch\": {\n    \"form\": \"antisemitisch\",\n    \"cornetto_id\": \"r_a-8786\",\n    \"cornetto_synset_id\": \"n_a-502362\",\n    \"wordnet_id\": \"a-00285905\",\n    \"pos\": \"JJ\",\n    \"sense\": \"anti-joods\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antropologisch\": {\n    \"form\": \"antropologisch\",\n    \"cornetto_id\": \"r_a-9011\",\n    \"cornetto_synset_id\": \"n_a-502376\",\n    \"wordnet_id\": \"a-02907175\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gerelateerd aan de antropologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apart\": {\n    \"form\": \"apart\",\n    \"cornetto_id\": \"r_a-8789\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijzonder\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"apathisch\": {\n    \"form\": \"apathisch\",\n    \"cornetto_id\": \"r_a-8790\",\n    \"cornetto_synset_id\": \"d_a-9392\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lusteloos\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apert\": {\n    \"form\": \"apert\",\n    \"cornetto_id\": \"r_a-8791\",\n    \"cornetto_synset_id\": \"n_a-502390\",\n    \"wordnet_id\": \"a-01618376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duidelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"apetrots\": {\n    \"form\": \"apetrots\",\n    \"cornetto_id\": \"r_a-8941\",\n    \"cornetto_synset_id\": \"n_a-502391\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg trots\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apocalyptisch\": {\n    \"form\": \"apocalyptisch\",\n    \"cornetto_id\": \"r_a-9013\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"catastrofaal\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"apodictisch\": {\n    \"form\": \"apodictisch\",\n    \"cornetto_id\": \"r_a-8942\",\n    \"cornetto_synset_id\": \"n_a-521692\",\n    \"wordnet_id\": \"a-00591406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg stellig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"apostolisch\": {\n    \"form\": \"apostolisch\",\n    \"cornetto_id\": \"r_a-9102\",\n    \"cornetto_synset_id\": \"n_a-522923\",\n    \"wordnet_id\": \"a-01849960\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de paus\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arbeidsintensief\": {\n    \"form\": \"arbeidsintensief\",\n    \"cornetto_id\": \"r_a-8794\",\n    \"cornetto_synset_id\": \"n_a-502472\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veel arbeid vergend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arbeidsongeschikt\": {\n    \"form\": \"arbeidsongeschikt\",\n    \"cornetto_id\": \"r_a-8795\",\n    \"cornetto_synset_id\": \"n_a-502476\",\n    \"wordnet_id\": \"a-01019283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet in staat om te werken\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"arbeidzaam\": {\n    \"form\": \"arbeidzaam\",\n    \"cornetto_id\": \"r_a-8796\",\n    \"cornetto_synset_id\": \"n_a-513345\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vlijtig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arbitrair\": {\n    \"form\": \"arbitrair\",\n    \"cornetto_id\": \"r_a-8797\",\n    \"cornetto_synset_id\": \"n_a-526851\",\n    \"wordnet_id\": \"a-02637730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"willekeurig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"archaïsch\": {\n    \"form\": \"archaïsch\",\n    \"cornetto_id\": \"r_a-8944\",\n    \"cornetto_synset_id\": \"n_a-502501\",\n    \"wordnet_id\": \"a-01639230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behorend tot een oud tijdperk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"archeologisch\": {\n    \"form\": \"archeologisch\",\n    \"cornetto_id\": \"r_a-8945\",\n    \"cornetto_synset_id\": \"n_a-502503\",\n    \"wordnet_id\": \"a-02638392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oudheidkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"architectonisch\": {\n    \"form\": \"architectonisch\",\n    \"cornetto_id\": \"r_a-8798\",\n    \"cornetto_synset_id\": \"n_a-504800\",\n    \"wordnet_id\": \"a-02897957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bouwkundig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"argeloos\": {\n    \"form\": \"argeloos\",\n    \"cornetto_id\": \"r_a-8800\",\n    \"cornetto_synset_id\": \"n_a-519502\",\n    \"wordnet_id\": \"a-02271544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nietsvermoedend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arglistig\": {\n    \"form\": \"arglistig\",\n    \"cornetto_id\": \"r_a-8801\",\n    \"cornetto_synset_id\": \"d_a-9523\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boosaardig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"argwanend\": {\n    \"form\": \"argwanend\",\n    \"cornetto_id\": \"r_a-8802\",\n    \"cornetto_synset_id\": \"n_a-534218\",\n    \"wordnet_id\": \"a-00325619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achterdochtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arm\": {\n    \"form\": \"arm\",\n    \"cornetto_id\": \"r_a-9106\",\n    \"cornetto_synset_id\": \"n_a-502540\",\n    \"wordnet_id\": \"a-00052012\",\n    \"pos\": \"JJ\",\n    \"sense\": \"iets niet hebbend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"armetierig\": {\n    \"form\": \"armetierig\",\n    \"cornetto_id\": \"r_a-9108\",\n    \"cornetto_synset_id\": \"n_a-502555\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"armoedig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"armoedig\": {\n    \"form\": \"armoedig\",\n    \"cornetto_id\": \"r_a-9111\",\n    \"cornetto_synset_id\": \"n_a-502561\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet veel voorstellend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"armzalig\": {\n    \"form\": \"armzalig\",\n    \"cornetto_id\": \"r_a-8810\",\n    \"cornetto_synset_id\": \"n_a-502555\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg pover\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrogant\": {\n    \"form\": \"arrogant\",\n    \"cornetto_id\": \"r_a-8811\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hooghartig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"artistiek\": {\n    \"form\": \"artistiek\",\n    \"cornetto_id\": \"r_a-8813\",\n    \"cornetto_synset_id\": \"n_a-516366\",\n    \"wordnet_id\": \"a-02991122\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kunstzinnig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"asblond\": {\n    \"form\": \"asblond\",\n    \"cornetto_id\": \"r_a-9019\",\n    \"cornetto_synset_id\": \"n_a-502606\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"licht blond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ascetisch\": {\n    \"form\": \"ascetisch\",\n    \"cornetto_id\": \"r_a-8814\",\n    \"cornetto_synset_id\": \"d_a-9163\",\n    \"wordnet_id\": \"a-00009618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een asceet\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"asgrauw\": {\n    \"form\": \"asgrauw\",\n    \"cornetto_id\": \"r_a-8815\",\n    \"cornetto_synset_id\": \"d_a-9320\",\n    \"wordnet_id\": \"a-00387593\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg grijs\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"asociaal\": {\n    \"form\": \"asociaal\",\n    \"cornetto_id\": \"r_a-8816\",\n    \"cornetto_synset_id\": \"n_a-502630\",\n    \"wordnet_id\": \"a-00351420\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet sociaal\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"associatief\": {\n    \"form\": \"associatief\",\n    \"cornetto_id\": \"r_a-8818\",\n    \"cornetto_synset_id\": \"n_a-502651\",\n    \"wordnet_id\": \"a-00157389\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op associatie berustend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astmatisch\": {\n    \"form\": \"astmatisch\",\n    \"cornetto_id\": \"r_a-9113\",\n    \"cornetto_synset_id\": \"n_a-502662\",\n    \"wordnet_id\": \"a-01174048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals astma\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astraal\": {\n    \"form\": \"astraal\",\n    \"cornetto_id\": \"r_a-9114\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet materieel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astronomisch\": {\n    \"form\": \"astronomisch\",\n    \"cornetto_id\": \"r_a-8821\",\n    \"cornetto_synset_id\": \"n_a-502679\",\n    \"wordnet_id\": \"a-01383582\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gigantisch\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.8\"\n  },\n  \"atheïstisch\": {\n    \"form\": \"atheïstisch\",\n    \"cornetto_id\": \"r_a-8823\",\n    \"cornetto_synset_id\": \"n_a-521215\",\n    \"wordnet_id\": \"a-01305929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het atheïsme betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"atonaal\": {\n    \"form\": \"atonaal\",\n    \"cornetto_id\": \"r_a-9024\",\n    \"cornetto_synset_id\": \"n_a-502705\",\n    \"wordnet_id\": \"a-02438188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet tonaal\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"atoomvrij\": {\n    \"form\": \"atoomvrij\",\n    \"cornetto_id\": \"r_a-9025\",\n    \"cornetto_synset_id\": \"n_a-502719\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder kerncentrales en kernwapens\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attent\": {\n    \"form\": \"attent\",\n    \"cornetto_id\": \"r_a-8826\",\n    \"cornetto_synset_id\": \"n_a-501199\",\n    \"wordnet_id\": \"a-00164308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oplettend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attractief\": {\n    \"form\": \"attractief\",\n    \"cornetto_id\": \"r_a-8828\",\n    \"cornetto_synset_id\": \"n_a-501309\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aantrekkelijk\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"autarkisch\": {\n    \"form\": \"autarkisch\",\n    \"cornetto_id\": \"r_a-8832\",\n    \"cornetto_synset_id\": \"n_a-527536\",\n    \"wordnet_id\": \"a-00728103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelfvoorzienend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"auteursrechtelijk\": {\n    \"form\": \"auteursrechtelijk\",\n    \"cornetto_id\": \"r_a-8950\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het auteursrecht betreffend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"authentiek\": {\n    \"form\": \"authentiek\",\n    \"cornetto_id\": \"r_a-9120\",\n    \"cornetto_synset_id\": \"n_a-522169\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"origineel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"autistisch\": {\n    \"form\": \"autistisch\",\n    \"cornetto_id\": \"r_a-8834\",\n    \"cornetto_synset_id\": \"n_a-502750\",\n    \"wordnet_id\": \"a-02542878\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijdend aan autisme\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"autobiografisch\": {\n    \"form\": \"autobiografisch\",\n    \"cornetto_id\": \"r_a-8951\",\n    \"cornetto_synset_id\": \"n_a-502755\",\n    \"wordnet_id\": \"a-02651244\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het leven van de schrijver betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"autoloos\": {\n    \"form\": \"autoloos\",\n    \"cornetto_id\": \"r_a-8953\",\n    \"cornetto_synset_id\": \"n_a-502807\",\n    \"wordnet_id\": \"a-01346343\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder auto's\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"automatisch\": {\n    \"form\": \"automatisch\",\n    \"cornetto_id\": \"r_a-9123\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vanzelf, zonder erbij na te denken\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"avant-gardistisch\": {\n    \"form\": \"avant-gardistisch\",\n    \"cornetto_id\": \"r_a-8956\",\n    \"cornetto_synset_id\": \"n_a-502811\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in de avant-garde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"averechts\": {\n    \"form\": \"averechts\",\n    \"cornetto_id\": \"r_a-8840\",\n    \"cornetto_synset_id\": \"n_a-530430\",\n    \"wordnet_id\": \"a-00564504\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegenovergesteld\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avontuurlijk\": {\n    \"form\": \"avontuurlijk\",\n    \"cornetto_id\": \"r_a-8842\",\n    \"cornetto_synset_id\": \"n_a-502846\",\n    \"wordnet_id\": \"a-00065791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belust op avontuur\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"baanbrekend\": {\n    \"form\": \"baanbrekend\",\n    \"cornetto_id\": \"r_a-9127\",\n    \"cornetto_synset_id\": \"n_a-532616\",\n    \"wordnet_id\": \"a-02091300\",\n    \"pos\": \"JJ\",\n    \"sense\": \"revolutionair\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"baarlijk\": {\n    \"form\": \"baarlijk\",\n    \"cornetto_id\": \"r_a-9129\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klinkklaar\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"babbelziek\": {\n    \"form\": \"babbelziek\",\n    \"cornetto_id\": \"r_a-9515\",\n    \"cornetto_synset_id\": \"n_a-515218\",\n    \"wordnet_id\": \"a-00496422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ziekelijke neiging tot kletsen\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"badinerend\": {\n    \"form\": \"badinerend\",\n    \"cornetto_id\": \"r_a-9131\",\n    \"cornetto_synset_id\": \"n_a-526943\",\n    \"wordnet_id\": \"a-01267076\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gekscherend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"baldadig\": {\n    \"form\": \"baldadig\",\n    \"cornetto_id\": \"r_a-9132\",\n    \"cornetto_synset_id\": \"d_a-9167\",\n    \"wordnet_id\": \"a-00361837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"brooddronken\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balorig\": {\n    \"form\": \"balorig\",\n    \"cornetto_id\": \"r_a-9133\",\n    \"cornetto_synset_id\": \"n_a-534464\",\n    \"wordnet_id\": \"a-00021592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weerspannig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"banaal\": {\n    \"form\": \"banaal\",\n    \"cornetto_id\": \"r_a-9134\",\n    \"cornetto_synset_id\": \"n_a-523583\",\n    \"wordnet_id\": \"a-00683531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plat\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bancair\": {\n    \"form\": \"bancair\",\n    \"cornetto_id\": \"r_a-9417\",\n    \"cornetto_synset_id\": \"n_a-503029\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van een bank\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bang\": {\n    \"form\": \"bang\",\n    \"cornetto_id\": \"r_a-9591\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beangstigend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bangelijk\": {\n    \"form\": \"bangelijk\",\n    \"cornetto_id\": \"r_a-9137\",\n    \"cornetto_synset_id\": \"d_a-9169\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gauw bang\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bangig\": {\n    \"form\": \"bangig\",\n    \"cornetto_id\": \"r_a-9519\",\n    \"cornetto_synset_id\": \"d_a-9169\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nogal bang\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bar\": {\n    \"form\": \"bar\",\n    \"cornetto_id\": \"r_a-9592\",\n    \"cornetto_synset_id\": \"n_a-521234\",\n    \"wordnet_id\": \"a-01243102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kaal\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"barbaars\": {\n    \"form\": \"barbaars\",\n    \"cornetto_id\": \"r_a-9140\",\n    \"cornetto_synset_id\": \"d_a-9619\",\n    \"wordnet_id\": \"a-00412788\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wreed\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"barok\": {\n    \"form\": \"barok\",\n    \"cornetto_id\": \"r_a-9142\",\n    \"cornetto_synset_id\": \"n_a-503126\",\n    \"wordnet_id\": \"a-01794995\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grillig als in de barok\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bars\": {\n    \"form\": \"bars\",\n    \"cornetto_id\": \"r_a-9143\",\n    \"cornetto_synset_id\": \"n_a-520179\",\n    \"wordnet_id\": \"a-01139067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nors\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"barstensvol\": {\n    \"form\": \"barstensvol\",\n    \"cornetto_id\": \"r_a-9419\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"propvol\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"basaal\": {\n    \"form\": \"basaal\",\n    \"cornetto_id\": \"d_a-21946\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bazig\": {\n    \"form\": \"bazig\",\n    \"cornetto_id\": \"r_a-9146\",\n    \"cornetto_synset_id\": \"n_a-502794\",\n    \"wordnet_id\": \"a-00104051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedillerig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedaagd\": {\n    \"form\": \"bedaagd\",\n    \"cornetto_id\": \"r_a-9147\",\n    \"cornetto_synset_id\": \"d_a-9481\",\n    \"wordnet_id\": \"a-01644225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van rijpe leeftijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedaard\": {\n    \"form\": \"bedaard\",\n    \"cornetto_id\": \"r_a-9148\",\n    \"cornetto_synset_id\": \"d_a-9360\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rustig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedachtzaam\": {\n    \"form\": \"bedachtzaam\",\n    \"cornetto_id\": \"r_a-9150\",\n    \"cornetto_synset_id\": \"n_a-503220\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met aandacht en verstand\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedenkelijk\": {\n    \"form\": \"bedenkelijk\",\n    \"cornetto_id\": \"r_a-9153\",\n    \"cornetto_synset_id\": \"n_a-535949\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedlegerig\": {\n    \"form\": \"bedlegerig\",\n    \"cornetto_id\": \"r_a-9156\",\n    \"cornetto_synset_id\": \"n_a-503249\",\n    \"wordnet_id\": \"a-02543034\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door ziekte in bed\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedompt\": {\n    \"form\": \"bedompt\",\n    \"cornetto_id\": \"r_a-9157\",\n    \"cornetto_synset_id\": \"n_a-503252\",\n    \"wordnet_id\": \"a-01070088\",\n    \"pos\": \"JJ\",\n    \"sense\": \"benauwd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bedroefd\": {\n    \"form\": \"bedroefd\",\n    \"cornetto_id\": \"r_a-9163\",\n    \"cornetto_synset_id\": \"n_a-532342\",\n    \"wordnet_id\": \"a-01361863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verdrietig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beduidend\": {\n    \"form\": \"beduidend\",\n    \"cornetto_id\": \"r_a-9167\",\n    \"cornetto_synset_id\": \"c_645\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanzienlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"beeldend\": {\n    \"form\": \"beeldend\",\n    \"cornetto_id\": \"r_a-9170\",\n    \"cornetto_synset_id\": \"n_a-503317\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in beelden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beeldrijk\": {\n    \"form\": \"beeldrijk\",\n    \"cornetto_id\": \"r_a-9527\",\n    \"cornetto_synset_id\": \"n_a-503317\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rijk aan beeldspraak\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beeldschoon\": {\n    \"form\": \"beeldschoon\",\n    \"cornetto_id\": \"r_a-9172\",\n    \"cornetto_synset_id\": \"n_a-503339\",\n    \"wordnet_id\": \"a-00218837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel mooi\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beestachtig\": {\n    \"form\": \"beestachtig\",\n    \"cornetto_id\": \"r_a-9173\",\n    \"cornetto_synset_id\": \"n_a-518612\",\n    \"wordnet_id\": \"a-01263445\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gruwelijk\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"befaamd\": {\n    \"form\": \"befaamd\",\n    \"cornetto_id\": \"r_a-9174\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermaard\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"begaafd\": {\n    \"form\": \"begaafd\",\n    \"cornetto_id\": \"r_a-9175\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel aanleg\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"begaanbaar\": {\n    \"form\": \"begaanbaar\",\n    \"cornetto_id\": \"r_a-9177\",\n    \"cornetto_synset_id\": \"n_a-503378\",\n    \"wordnet_id\": \"a-00093556\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bewandelbaar\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"begeerlijk\": {\n    \"form\": \"begeerlijk\",\n    \"cornetto_id\": \"r_a-9179\",\n    \"cornetto_synset_id\": \"n_a-501309\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door iedereen begeerd\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"begeesterd\": {\n    \"form\": \"begeesterd\",\n    \"cornetto_id\": \"d_a-23972\",\n    \"cornetto_synset_id\": \"d_a-9262\",\n    \"wordnet_id\": \"a-00885695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"begenadigd\": {\n    \"form\": \"begenadigd\",\n    \"cornetto_id\": \"r_a-9180\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"getalenteerd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beginselvast\": {\n    \"form\": \"beginselvast\",\n    \"cornetto_id\": \"r_a-9529\",\n    \"cornetto_synset_id\": \"n_a-524375\",\n    \"wordnet_id\": \"a-00464513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"principieel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"begrijpbaar\": {\n    \"form\": \"begrijpbaar\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"begrijpelijk\": {\n    \"form\": \"begrijpelijk\",\n    \"cornetto_id\": \"r_a-9183\",\n    \"cornetto_synset_id\": \"n_a-503401\",\n    \"wordnet_id\": \"a-00532892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verklaarbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"behaaglijk\": {\n    \"form\": \"behaaglijk\",\n    \"cornetto_id\": \"r_a-9185\",\n    \"cornetto_synset_id\": \"n_a-503417\",\n    \"wordnet_id\": \"a-00477284\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangenaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beheersbaar\": {\n    \"form\": \"beheersbaar\",\n    \"cornetto_id\": \"r_a-9425\",\n    \"cornetto_synset_id\": \"n_a-503424\",\n    \"wordnet_id\": \"a-01474942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onder controle te houden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"behendig\": {\n    \"form\": \"behendig\",\n    \"cornetto_id\": \"r_a-9190\",\n    \"cornetto_synset_id\": \"d_a-9172\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"handig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"behoeftig\": {\n    \"form\": \"behoeftig\",\n    \"cornetto_id\": \"r_a-9193\",\n    \"cornetto_synset_id\": \"d_a-9161\",\n    \"wordnet_id\": \"a-02022953\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arm\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"behoorlijk\": {\n    \"form\": \"behoorlijk\",\n    \"cornetto_id\": \"r_a-9605\",\n    \"cornetto_synset_id\": \"c_645\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flink\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"bejaard\": {\n    \"form\": \"bejaard\",\n    \"cornetto_id\": \"r_a-9200\",\n    \"cornetto_synset_id\": \"c_154\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op leeftijd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekakt\": {\n    \"form\": \"bekakt\",\n    \"cornetto_id\": \"r_a-9666\",\n    \"cornetto_synset_id\": \"n_a-503448\",\n    \"wordnet_id\": \"a-00975778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geaffecteerd\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekeken\": {\n    \"form\": \"bekeken\",\n    \"cornetto_id\": \"r_a-9606\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgehandeld\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekend\": {\n    \"form\": \"bekend\",\n    \"cornetto_id\": \"r_a-9668\",\n    \"cornetto_synset_id\": \"n_a-503455\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beroemd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beklagenswaardig\": {\n    \"form\": \"beklagenswaardig\",\n    \"cornetto_id\": \"r_a-9427\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te beklagen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"beklemmend\": {\n    \"form\": \"beklemmend\",\n    \"cornetto_id\": \"r_a-9671\",\n    \"cornetto_synset_id\": \"n_a-503573\",\n    \"wordnet_id\": \"a-00194924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"benauwend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"beklonken\": {\n    \"form\": \"beklonken\",\n    \"cornetto_id\": \"r_a-9672\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geregeld\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekneld\": {\n    \"form\": \"bekneld\",\n    \"cornetto_id\": \"r_a-9673\",\n    \"cornetto_synset_id\": \"n_a-503472\",\n    \"wordnet_id\": \"a-00502809\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in de knel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beknopt\": {\n    \"form\": \"beknopt\",\n    \"cornetto_id\": \"r_a-9674\",\n    \"cornetto_synset_id\": \"d_a-9176\",\n    \"wordnet_id\": \"a-00004413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bondig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bekocht\": {\n    \"form\": \"bekocht\",\n    \"cornetto_id\": \"r_a-9675\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgezet\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekrompen\": {\n    \"form\": \"bekrompen\",\n    \"cornetto_id\": \"r_a-9678\",\n    \"cornetto_synset_id\": \"c_125\",\n    \"wordnet_id\": \"a-00287640\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kortzichtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bekwaam\": {\n    \"form\": \"bekwaam\",\n    \"cornetto_id\": \"r_a-9679\",\n    \"cornetto_synset_id\": \"d_a-9373\",\n    \"wordnet_id\": \"a-00178811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kundig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belabberd\": {\n    \"form\": \"belabberd\",\n    \"cornetto_id\": \"r_a-9680\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ellendig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"belachelijk\": {\n    \"form\": \"belachelijk\",\n    \"cornetto_id\": \"r_a-9681\",\n    \"cornetto_synset_id\": \"n_a-503484\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ridicuul\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"belangeloos\": {\n    \"form\": \"belangeloos\",\n    \"cornetto_id\": \"r_a-9683\",\n    \"cornetto_synset_id\": \"n_a-503487\",\n    \"wordnet_id\": \"a-00101609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbaatzuchtig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"belanghebbend\": {\n    \"form\": \"belanghebbend\",\n    \"cornetto_id\": \"r_a-9429\",\n    \"cornetto_synset_id\": \"d_a-9177\",\n    \"wordnet_id\": \"a-00762355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geïnteresseerd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belangrijk\": {\n    \"form\": \"belangrijk\",\n    \"cornetto_id\": \"r_a-9684\",\n    \"cornetto_synset_id\": \"c_645\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van groot belang\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"belangwekkend\": {\n    \"form\": \"belangwekkend\",\n    \"cornetto_id\": \"r_a-9687\",\n    \"cornetto_synset_id\": \"n_a-513883\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"interessant\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"belastend\": {\n    \"form\": \"belastend\",\n    \"cornetto_id\": \"r_a-9532\",\n    \"cornetto_synset_id\": \"n_a-504036\",\n    \"wordnet_id\": \"a-00924952\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ten nadele\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belazerd\": {\n    \"form\": \"belazerd\",\n    \"cornetto_id\": \"r_a-9610\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beroerd\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"beleefd\": {\n    \"form\": \"beleefd\",\n    \"cornetto_id\": \"r_a-9689\",\n    \"cornetto_synset_id\": \"n_a-503527\",\n    \"wordnet_id\": \"a-00641343\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met goede manieren\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"belerend\": {\n    \"form\": \"belerend\",\n    \"cornetto_id\": \"r_a-9436\",\n    \"cornetto_synset_id\": \"n_a-503950\",\n    \"wordnet_id\": \"a-01324131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schoolmeesterachtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"belezen\": {\n    \"form\": \"belezen\",\n    \"cornetto_id\": \"r_a-9692\",\n    \"cornetto_synset_id\": \"n_a-503545\",\n    \"wordnet_id\": \"a-00830051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veel gelezen hebbend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beloftevol\": {\n    \"form\": \"beloftevol\",\n    \"cornetto_id\": \"r_a-9437\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol belofte\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belust\": {\n    \"form\": \"belust\",\n    \"cornetto_id\": \"r_a-9201\",\n    \"cornetto_synset_id\": \"d_a-9175\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel zin\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bemiddeld\": {\n    \"form\": \"bemiddeld\",\n    \"cornetto_id\": \"r_a-9202\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel geld\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bemoeiziek\": {\n    \"form\": \"bemoeiziek\",\n    \"cornetto_id\": \"r_a-9533\",\n    \"cornetto_synset_id\": \"n_a-503566\",\n    \"wordnet_id\": \"a-01352561\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met  neiging tot bemoeien\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bemost\": {\n    \"form\": \"bemost\",\n    \"cornetto_id\": \"r_a-16571\",\n    \"cornetto_synset_id\": \"n_a-503567\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met mos begroeid\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"benard\": {\n    \"form\": \"benard\",\n    \"cornetto_id\": \"r_a-9204\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"netelig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"benauwd\": {\n    \"form\": \"benauwd\",\n    \"cornetto_id\": \"r_a-9207\",\n    \"cornetto_synset_id\": \"d_a-9168\",\n    \"wordnet_id\": \"a-00077645\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bang\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"benieuwd\": {\n    \"form\": \"benieuwd\",\n    \"cornetto_id\": \"r_a-9209\",\n    \"cornetto_synset_id\": \"d_a-9277\",\n    \"wordnet_id\": \"a-00163592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nieuwsgierig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"benig\": {\n    \"form\": \"benig\",\n    \"cornetto_id\": \"r_a-9210\",\n    \"cornetto_synset_id\": \"n_a-503592\",\n    \"wordnet_id\": \"a-03138224\",\n    \"pos\": \"JJ\",\n    \"sense\": \"knokig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"benodigd\": {\n    \"form\": \"benodigd\",\n    \"cornetto_id\": \"r_a-9211\",\n    \"cornetto_synset_id\": \"c_666\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nodig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bepaald\": {\n    \"form\": \"bepaald\",\n    \"cornetto_id\": \"r_a-9617\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beslist\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"beperkt\": {\n    \"form\": \"beperkt\",\n    \"cornetto_id\": \"r_a-9213\",\n    \"cornetto_synset_id\": \"n_a-503624\",\n    \"wordnet_id\": \"a-00881735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet volledig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bereid\": {\n    \"form\": \"bereid\",\n    \"cornetto_id\": \"r_a-9619\",\n    \"cornetto_synset_id\": \"d_v-1185\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klaar\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bereikbaar\": {\n    \"form\": \"bereikbaar\",\n    \"cornetto_id\": \"r_a-9218\",\n    \"cornetto_synset_id\": \"n_a-503639\",\n    \"wordnet_id\": \"a-00019349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te bereiken\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"berekend\": {\n    \"form\": \"berekend\",\n    \"cornetto_id\": \"r_a-9220\",\n    \"cornetto_synset_id\": \"n_a-503643\",\n    \"wordnet_id\": \"a-00051373\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geschikt\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"berijdbaar\": {\n    \"form\": \"berijdbaar\",\n    \"cornetto_id\": \"r_a-9539\",\n    \"cornetto_synset_id\": \"n_a-503378\",\n    \"wordnet_id\": \"a-00093556\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor rijden geschikt\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"beroemd\": {\n    \"form\": \"beroemd\",\n    \"cornetto_id\": \"r_a-9222\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermaard\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beroerd\": {\n    \"form\": \"beroerd\",\n    \"cornetto_id\": \"r_a-9700\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lui\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"berooid\": {\n    \"form\": \"berooid\",\n    \"cornetto_id\": \"r_a-9225\",\n    \"cornetto_synset_id\": \"n_a-503724\",\n    \"wordnet_id\": \"a-02023287\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arm\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"berouwvol\": {\n    \"form\": \"berouwvol\",\n    \"cornetto_id\": \"r_a-9540\",\n    \"cornetto_synset_id\": \"n_a-527382\",\n    \"wordnet_id\": \"a-00079262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol berouw\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"berucht\": {\n    \"form\": \"berucht\",\n    \"cornetto_id\": \"r_a-9226\",\n    \"cornetto_synset_id\": \"n_a-503727\",\n    \"wordnet_id\": \"a-01983797\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ve zin\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beschaafd\": {\n    \"form\": \"beschaafd\",\n    \"cornetto_id\": \"r_a-9228\",\n    \"cornetto_synset_id\": \"n_a-521523\",\n    \"wordnet_id\": \"a-00741867\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet primitief\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beschamend\": {\n    \"form\": \"beschamend\",\n    \"cornetto_id\": \"r_a-9230\",\n    \"cornetto_synset_id\": \"n_a-509478\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"om je over te schamen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bescheiden\": {\n    \"form\": \"bescheiden\",\n    \"cornetto_id\": \"r_a-9232\",\n    \"cornetto_synset_id\": \"n_a-503737\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klein\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bescheten\": {\n    \"form\": \"bescheten\",\n    \"cornetto_id\": \"r_a-9623\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schijterig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beschikbaar\": {\n    \"form\": \"beschikbaar\",\n    \"cornetto_id\": \"r_a-9233\",\n    \"cornetto_synset_id\": \"d_a-9181\",\n    \"wordnet_id\": \"a-00183053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarover men kan beschikken\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beschonken\": {\n    \"form\": \"beschonken\",\n    \"cornetto_id\": \"r_a-9235\",\n    \"cornetto_synset_id\": \"d_a-9244\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dronken\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beslist\": {\n    \"form\": \"beslist\",\n    \"cornetto_id\": \"r_a-9240\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pertinent\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"besmet\": {\n    \"form\": \"besmet\",\n    \"cornetto_id\": \"r_a-9449\",\n    \"cornetto_synset_id\": \"n_a-503766\",\n    \"wordnet_id\": \"a-02114296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangestoken\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"besmettelijk\": {\n    \"form\": \"besmettelijk\",\n    \"cornetto_id\": \"r_a-9245\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gauw vuil\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"besmuikt\": {\n    \"form\": \"besmuikt\",\n    \"cornetto_id\": \"r_a-9450\",\n    \"cornetto_synset_id\": \"n_a-529135\",\n    \"wordnet_id\": \"a-02088974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stiekem\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"besodemieterd\": {\n    \"form\": \"besodemieterd\",\n    \"cornetto_id\": \"d_a-27456\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bespottelijk\": {\n    \"form\": \"bespottelijk\",\n    \"cornetto_id\": \"r_a-9246\",\n    \"cornetto_synset_id\": \"n_a-503782\",\n    \"wordnet_id\": \"a-01840880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belachelijk\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.9\"\n  },\n  \"best\": {\n    \"form\": \"best\",\n    \"cornetto_id\": \"r_a-9631\",\n    \"cornetto_synset_id\": \"c_178\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"bestuurlijk\": {\n    \"form\": \"bestuurlijk\",\n    \"cornetto_id\": \"r_a-9454\",\n    \"cornetto_synset_id\": \"n_a-503828\",\n    \"wordnet_id\": \"a-02904075\",\n    \"pos\": \"JJ\",\n    \"sense\": \"administratief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bestuursrechtelijk\": {\n    \"form\": \"bestuursrechtelijk\",\n    \"cornetto_id\": \"r_a-9456\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. bestuursrecht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betaalbaar\": {\n    \"form\": \"betaalbaar\",\n    \"cornetto_id\": \"r_a-9251\",\n    \"cornetto_synset_id\": \"n_a-503839\",\n    \"wordnet_id\": \"a-00935103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te duur\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betekenisloos\": {\n    \"form\": \"betekenisloos\",\n    \"cornetto_id\": \"r_a-9457\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder betekenis\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betekenisvol\": {\n    \"form\": \"betekenisvol\",\n    \"cornetto_id\": \"r_a-9458\",\n    \"cornetto_synset_id\": \"n_a-508691\",\n    \"wordnet_id\": \"a-00497148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelbetekenend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"beteuterd\": {\n    \"form\": \"beteuterd\",\n    \"cornetto_id\": \"r_a-9254\",\n    \"cornetto_synset_id\": \"n_a-503260\",\n    \"wordnet_id\": \"a-00252130\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onthutst\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betonnen\": {\n    \"form\": \"betonnen\",\n    \"cornetto_id\": \"r_a-9459\",\n    \"cornetto_synset_id\": \"n_a-503859\",\n    \"wordnet_id\": \"a-00013160\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van beton\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"betraand\": {\n    \"form\": \"betraand\",\n    \"cornetto_id\": \"r_a-9548\",\n    \"cornetto_synset_id\": \"n_a-503871\",\n    \"wordnet_id\": \"a-00781644\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol tranen\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betrekkelijk\": {\n    \"form\": \"betrekkelijk\",\n    \"cornetto_id\": \"r_a-9257\",\n    \"cornetto_synset_id\": \"n_a-503873\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relatief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"betrokken\": {\n    \"form\": \"betrokken\",\n    \"cornetto_id\": \"r_a-9259\",\n    \"cornetto_synset_id\": \"d_a-9184\",\n    \"wordnet_id\": \"a-00543603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"over wie het gaat\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betrouwbaar\": {\n    \"form\": \"betrouwbaar\",\n    \"cornetto_id\": \"r_a-9260\",\n    \"cornetto_synset_id\": \"n_a-503878\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te vertrouwen\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"betwistbaar\": {\n    \"form\": \"betwistbaar\",\n    \"cornetto_id\": \"r_a-9549\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanvechtbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beurs\": {\n    \"form\": \"beurs\",\n    \"cornetto_id\": \"r_a-9262\",\n    \"cornetto_synset_id\": \"n_a-522389\",\n    \"wordnet_id\": \"a-00189017\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overrijp\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bevallig\": {\n    \"form\": \"bevallig\",\n    \"cornetto_id\": \"r_a-9263\",\n    \"cornetto_synset_id\": \"n_a-501310\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gracieus\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bevindelijk\": {\n    \"form\": \"bevindelijk\",\n    \"cornetto_id\": \"r_a-9463\",\n    \"cornetto_synset_id\": \"n_a-503934\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vanuit godsdienstige beleving\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bevredigend\": {\n    \"form\": \"bevredigend\",\n    \"cornetto_id\": \"d_a-401528\",\n    \"cornetto_synset_id\": \"n_a-503957\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bevreesd\": {\n    \"form\": \"bevreesd\",\n    \"cornetto_id\": \"r_a-9267\",\n    \"cornetto_synset_id\": \"d_a-9168\",\n    \"wordnet_id\": \"a-00077645\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bang\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beweegbaar\": {\n    \"form\": \"beweegbaar\",\n    \"cornetto_id\": \"r_a-9466\",\n    \"cornetto_synset_id\": \"n_a-503974\",\n    \"wordnet_id\": \"a-01523724\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te bewegen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"beweeglijk\": {\n    \"form\": \"beweeglijk\",\n    \"cornetto_id\": \"r_a-9634\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flexibel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bewolkt\": {\n    \"form\": \"bewolkt\",\n    \"cornetto_id\": \"r_a-9273\",\n    \"cornetto_synset_id\": \"d_a-9185\",\n    \"wordnet_id\": \"a-00461971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met wolken bedekt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bewonderenswaardig\": {\n    \"form\": \"bewonderenswaardig\",\n    \"cornetto_id\": \"r_a-9469\",\n    \"cornetto_synset_id\": \"n_a-524336\",\n    \"wordnet_id\": \"a-02585545\",\n    \"pos\": \"JJ\",\n    \"sense\": \"respectabel\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"bewust\": {\n    \"form\": \"bewust\",\n    \"cornetto_id\": \"r_a-9276\",\n    \"cornetto_synset_id\": \"n_a-503872\",\n    \"wordnet_id\": \"a-00494409\",\n    \"pos\": \"JJ\",\n    \"sense\": \"desbetreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"bezeten\": {\n    \"form\": \"bezeten\",\n    \"cornetto_id\": \"r_a-9639\",\n    \"cornetto_synset_id\": \"n_a-509996\",\n    \"wordnet_id\": \"a-01464433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer vol zijn van\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bezienswaardig\": {\n    \"form\": \"bezienswaardig\",\n    \"cornetto_id\": \"r_a-9470\",\n    \"cornetto_synset_id\": \"n_a-504014\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het bekijken waard\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bezig\": {\n    \"form\": \"bezig\",\n    \"cornetto_id\": \"r_a-9283\",\n    \"cornetto_synset_id\": \"d_a-9144\",\n    \"wordnet_id\": \"a-00292937\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in de weer\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bezorgd\": {\n    \"form\": \"bezorgd\",\n    \"cornetto_id\": \"r_a-9288\",\n    \"cornetto_synset_id\": \"n_a-535950\",\n    \"wordnet_id\": \"a-00164681\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol zorg\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bezweet\": {\n    \"form\": \"bezweet\",\n    \"cornetto_id\": \"r_a-9292\",\n    \"cornetto_synset_id\": \"n_a-504037\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met zweet\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijbehorend\": {\n    \"form\": \"bijbehorend\",\n    \"cornetto_id\": \"r_a-9293\",\n    \"cornetto_synset_id\": \"n_a-504086\",\n    \"wordnet_id\": \"a-00122844\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijpassend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bijbels\": {\n    \"form\": \"bijbels\",\n    \"cornetto_id\": \"r_a-9294\",\n    \"cornetto_synset_id\": \"n_a-504091\",\n    \"wordnet_id\": \"a-01783158\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de bijbel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bijbelvast\": {\n    \"form\": \"bijbelvast\",\n    \"cornetto_id\": \"r_a-9295\",\n    \"cornetto_synset_id\": \"n_a-504095\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed thuis in de bijbel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijgelovig\": {\n    \"form\": \"bijgelovig\",\n    \"cornetto_id\": \"r_a-9298\",\n    \"cornetto_synset_id\": \"n_a-504108\",\n    \"wordnet_id\": \"a-01927061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol bijgeloof\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijgenaamd\": {\n    \"form\": \"bijgenaamd\",\n    \"cornetto_id\": \"r_a-9472\",\n    \"cornetto_synset_id\": \"n_a-504109\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met de bijnaam\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijster\": {\n    \"form\": \"bijster\",\n    \"cornetto_id\": \"r_a-9301\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kwijt\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"bijtend\": {\n    \"form\": \"bijtend\",\n    \"cornetto_id\": \"r_a-9474\",\n    \"cornetto_synset_id\": \"n_a-504134\",\n    \"wordnet_id\": \"a-00587376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"scherp\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijvoeglijk\": {\n    \"form\": \"bijvoeglijk\",\n    \"cornetto_id\": \"r_a-9302\",\n    \"cornetto_synset_id\": \"n_a-504141\",\n    \"wordnet_id\": \"a-02936020\",\n    \"pos\": \"JJ\",\n    \"sense\": \"attributief\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bijzonder\": {\n    \"form\": \"bijzonder\",\n    \"cornetto_id\": \"r_a-9305\",\n    \"cornetto_synset_id\": \"n_a-504151\",\n    \"wordnet_id\": \"a-01768724\",\n    \"pos\": \"JJ\",\n    \"sense\": \"speciaal\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"bikkelhard\": {\n    \"form\": \"bikkelhard\",\n    \"cornetto_id\": \"r_a-9306\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"keihard\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bilateraal\": {\n    \"form\": \"bilateraal\",\n    \"cornetto_id\": \"r_a-9307\",\n    \"cornetto_synset_id\": \"n_a-531600\",\n    \"wordnet_id\": \"a-00102786\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tweezijdig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"billijk\": {\n    \"form\": \"billijk\",\n    \"cornetto_id\": \"r_a-9308\",\n    \"cornetto_synset_id\": \"n_a-525316\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"redelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"binnenlands\": {\n    \"form\": \"binnenlands\",\n    \"cornetto_id\": \"r_a-9310\",\n    \"cornetto_synset_id\": \"n_a-519668\",\n    \"wordnet_id\": \"a-00463784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet buitenlands\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"biografisch\": {\n    \"form\": \"biografisch\",\n    \"cornetto_id\": \"r_a-9477\",\n    \"cornetto_synset_id\": \"n_a-504218\",\n    \"wordnet_id\": \"a-03048680\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de levensloop betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"biologisch\": {\n    \"form\": \"biologisch\",\n    \"cornetto_id\": \"r_a-9312\",\n    \"cornetto_synset_id\": \"n_a-519697\",\n    \"wordnet_id\": \"a-01941383\",\n    \"pos\": \"JJ\",\n    \"sense\": \"natuurlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bitter\": {\n    \"form\": \"bitter\",\n    \"cornetto_id\": \"r_a-9318\",\n    \"cornetto_synset_id\": \"d_a-9567\",\n    \"wordnet_id\": \"a-00116940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbitterd\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bitterzoet\": {\n    \"form\": \"bitterzoet\",\n    \"cornetto_id\": \"r_a-9564\",\n    \"cornetto_synset_id\": \"n_a-504257\",\n    \"wordnet_id\": \"a-01362273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bitter en zoet\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bizar\": {\n    \"form\": \"bizar\",\n    \"cornetto_id\": \"r_a-9319\",\n    \"cornetto_synset_id\": \"n_a-535905\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel vreemd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"blabla\": {\n    \"form\": \"blabla\",\n    \"cornetto_id\": \"r_n-7479\",\n    \"cornetto_synset_id\": \"n_n-504269\",\n    \"wordnet_id\": \"n-06609503\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bladstil\": {\n    \"form\": \"bladstil\",\n    \"cornetto_id\": \"r_a-9320\",\n    \"cornetto_synset_id\": \"n_a-534928\",\n    \"wordnet_id\": \"a-00303579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer windstil\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blanco\": {\n    \"form\": \"blanco\",\n    \"cornetto_id\": \"r_a-9321\",\n    \"cornetto_synset_id\": \"n_a-521250\",\n    \"wordnet_id\": \"a-00500889\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oningevuld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blank\": {\n    \"form\": \"blank\",\n    \"cornetto_id\": \"r_a-9323\",\n    \"cornetto_synset_id\": \"c_388\",\n    \"wordnet_id\": \"a-00243180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een witte huidskleur\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blasfemisch\": {\n    \"form\": \"blasfemisch\",\n    \"cornetto_id\": \"r_a-9481\",\n    \"cornetto_synset_id\": \"n_a-511163\",\n    \"wordnet_id\": \"a-02012748\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spottend\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"blauw\": {\n    \"form\": \"blauw\",\n    \"cornetto_id\": \"r_a-9324\",\n    \"cornetto_synset_id\": \"d_a-9193\",\n    \"wordnet_id\": \"a-00370869\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met de kleur blauw\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blij\": {\n    \"form\": \"blij\",\n    \"cornetto_id\": \"r_a-9650\",\n    \"cornetto_synset_id\": \"n_a-532410\",\n    \"wordnet_id\": \"a-01800349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verheugend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blijkbaar\": {\n    \"form\": \"blijkbaar\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blijmoedig\": {\n    \"form\": \"blijmoedig\",\n    \"cornetto_id\": \"r_a-9332\",\n    \"cornetto_synset_id\": \"c_339\",\n    \"wordnet_id\": \"a-00271022\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opgewekt\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bliksems\": {\n    \"form\": \"bliksems\",\n    \"cornetto_id\": \"r_a-9334\",\n    \"cornetto_synset_id\": \"n_a-529550\",\n    \"wordnet_id\": \"a-01128406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"donders\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bliksemsnel\": {\n    \"form\": \"bliksemsnel\",\n    \"cornetto_id\": \"r_a-9485\",\n    \"cornetto_synset_id\": \"n_a-504345\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer snel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"blind\": {\n    \"form\": \"blind\",\n    \"cornetto_id\": \"r_a-9336\",\n    \"cornetto_synset_id\": \"d_a-9473\",\n    \"wordnet_id\": \"a-01748318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te zien\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blits\": {\n    \"form\": \"blits\",\n    \"cornetto_id\": \"r_a-9338\",\n    \"cornetto_synset_id\": \"n_a-504364\",\n    \"wordnet_id\": \"a-00609564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opvallend modern\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bloeddoorlopen\": {\n    \"form\": \"bloeddoorlopen\",\n    \"cornetto_id\": \"r_a-9567\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(van ogen) rood\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bloederig\": {\n    \"form\": \"bloederig\",\n    \"cornetto_id\": \"r_a-9342\",\n    \"cornetto_synset_id\": \"n_a-504377\",\n    \"wordnet_id\": \"a-00247993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel bloed\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bloedheet\": {\n    \"form\": \"bloedheet\",\n    \"cornetto_id\": \"r_a-9486\",\n    \"cornetto_synset_id\": \"n_a-528097\",\n    \"wordnet_id\": \"a-00268383\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snikheet\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bloedig\": {\n    \"form\": \"bloedig\",\n    \"cornetto_id\": \"r_a-9343\",\n    \"cornetto_synset_id\": \"n_a-504380\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarbij bloed vloeit\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bloedmooi\": {\n    \"form\": \"bloedmooi\",\n    \"cornetto_id\": \"r_a-9568\",\n    \"cornetto_synset_id\": \"n_a-503339\",\n    \"wordnet_id\": \"a-00218837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beeldschoon\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bloedserieus\": {\n    \"form\": \"bloedserieus\",\n    \"cornetto_id\": \"d_a-32945\",\n    \"cornetto_synset_id\": \"n_a-504393\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bloedstollend\": {\n    \"form\": \"bloedstollend\",\n    \"cornetto_id\": \"r_a-9488\",\n    \"cornetto_synset_id\": \"n_a-507232\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spannend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"bloemrijk\": {\n    \"form\": \"bloemrijk\",\n    \"cornetto_id\": \"r_a-9652\",\n    \"cornetto_synset_id\": \"n_a-504427\",\n    \"wordnet_id\": \"a-02017141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beeldrijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blokkade\": {\n    \"form\": \"blokkade\",\n    \"cornetto_id\": \"r_n-7668\",\n    \"cornetto_synset_id\": \"d_n-21626\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blokkades\": {\n    \"form\": \"blokkades\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blokkeren\": {\n    \"form\": \"blokkeren\",\n    \"cornetto_id\": \"r_v-1767\",\n    \"cornetto_synset_id\": \"d_v-1574\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blond\": {\n    \"form\": \"blond\",\n    \"cornetto_id\": \"r_a-9345\",\n    \"cornetto_synset_id\": \"d_a-9196\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichtgeel (vooral van haar)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bloot\": {\n    \"form\": \"bloot\",\n    \"cornetto_id\": \"r_a-9346\",\n    \"cornetto_synset_id\": \"d_a-9414\",\n    \"wordnet_id\": \"a-00457998\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naakt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blut\": {\n    \"form\": \"blut\",\n    \"cornetto_id\": \"r_a-9347\",\n    \"cornetto_synset_id\": \"n_a-504469\",\n    \"wordnet_id\": \"a-02023287\",\n    \"pos\": \"JJ\",\n    \"sense\": \"platzak\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bochtig\": {\n    \"form\": \"bochtig\",\n    \"cornetto_id\": \"r_a-9489\",\n    \"cornetto_synset_id\": \"n_a-504474\",\n    \"wordnet_id\": \"a-01563713\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel bochten\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bodemloos\": {\n    \"form\": \"bodemloos\",\n    \"cornetto_id\": \"r_a-9348\",\n    \"cornetto_synset_id\": \"n_a-504481\",\n    \"wordnet_id\": \"a-00690892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder bodem\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"boeiend\": {\n    \"form\": \"boeiend\",\n    \"cornetto_id\": \"r_a-9349\",\n    \"cornetto_synset_id\": \"n_a-513883\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fascinerend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"boekhoudkundig\": {\n    \"form\": \"boekhoudkundig\",\n    \"cornetto_id\": \"r_a-9491\",\n    \"cornetto_synset_id\": \"n_a-504526\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het boekhouden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"boers\": {\n    \"form\": \"boers\",\n    \"cornetto_id\": \"r_a-9350\",\n    \"cornetto_synset_id\": \"n_a-517506\",\n    \"wordnet_id\": \"a-00642725\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lomp\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bol\": {\n    \"form\": \"bol\",\n    \"cornetto_id\": \"r_a-9355\",\n    \"cornetto_synset_id\": \"d_a-9198\",\n    \"wordnet_id\": \"a-00536416\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bolvormig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bombastisch\": {\n    \"form\": \"bombastisch\",\n    \"cornetto_id\": \"r_a-9356\",\n    \"cornetto_synset_id\": \"n_a-504613\",\n    \"wordnet_id\": \"a-00073465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoogdravend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bomvol\": {\n    \"form\": \"bomvol\",\n    \"cornetto_id\": \"r_a-9493\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stampvol\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bondig\": {\n    \"form\": \"bondig\",\n    \"cornetto_id\": \"r_a-9358\",\n    \"cornetto_synset_id\": \"d_a-9176\",\n    \"wordnet_id\": \"a-00004413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kernachtig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"boordevol\": {\n    \"form\": \"boordevol\",\n    \"cornetto_id\": \"r_a-9495\",\n    \"cornetto_synset_id\": \"n_a-524566\",\n    \"wordnet_id\": \"a-00537339\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal vol\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"boos\": {\n    \"form\": \"boos\",\n    \"cornetto_id\": \"r_a-9362\",\n    \"cornetto_synset_id\": \"c_254\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boosaardig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"borstelig\": {\n    \"form\": \"borstelig\",\n    \"cornetto_id\": \"r_a-9496\",\n    \"cornetto_synset_id\": \"n_a-526430\",\n    \"wordnet_id\": \"a-00145083\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een borstel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bot\": {\n    \"form\": \"bot\",\n    \"cornetto_id\": \"r_a-9365\",\n    \"cornetto_synset_id\": \"n_a-504754\",\n    \"wordnet_id\": \"a-00036998\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lomp\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bovenaards\": {\n    \"form\": \"bovenaards\",\n    \"cornetto_id\": \"r_a-9654\",\n    \"cornetto_synset_id\": \"n_a-504843\",\n    \"wordnet_id\": \"a-01574446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hemels\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"bovengenoemd\": {\n    \"form\": \"bovengenoemd\",\n    \"cornetto_id\": \"r_a-9370\",\n    \"cornetto_synset_id\": \"n_a-504850\",\n    \"wordnet_id\": \"a-00125993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerder genoemd (in een tekst)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bovenmenselijk\": {\n    \"form\": \"bovenmenselijk\",\n    \"cornetto_id\": \"r_a-9372\",\n    \"cornetto_synset_id\": \"n_a-504842\",\n    \"wordnet_id\": \"a-01260873\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meer dan menselijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bovennatuurlijk\": {\n    \"form\": \"bovennatuurlijk\",\n    \"cornetto_id\": \"r_a-9373\",\n    \"cornetto_synset_id\": \"n_a-504843\",\n    \"wordnet_id\": \"a-01574446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boven het natuurlijke\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"bovenst\": {\n    \"form\": \"bovenst\",\n    \"cornetto_id\": \"r_a-9502\",\n    \"cornetto_synset_id\": \"n_a-504849\",\n    \"wordnet_id\": \"a-02440461\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoogst\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"bovenstaand\": {\n    \"form\": \"bovenstaand\",\n    \"cornetto_id\": \"r_a-9374\",\n    \"cornetto_synset_id\": \"n_a-504850\",\n    \"wordnet_id\": \"a-00125993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hierboven\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bovenvermeld\": {\n    \"form\": \"bovenvermeld\",\n    \"cornetto_id\": \"r_a-9503\",\n    \"cornetto_synset_id\": \"n_a-504850\",\n    \"wordnet_id\": \"a-00125993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bovengenoemd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"boycot\": {\n    \"form\": \"boycot\",\n    \"cornetto_id\": \"r_n-8341\",\n    \"cornetto_synset_id\": \"d_n-27338\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"boycotten\": {\n    \"form\": \"boycotten\",\n    \"cornetto_id\": \"r_v-1850\",\n    \"cornetto_synset_id\": \"d_v-1644\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"braaf\": {\n    \"form\": \"braaf\",\n    \"cornetto_id\": \"r_a-9375\",\n    \"cornetto_synset_id\": \"n_a-511204\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoet\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"braak\": {\n    \"form\": \"braak\",\n    \"cornetto_id\": \"r_a-9376\",\n    \"cornetto_synset_id\": \"d_n-39843\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbebouwd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"brak\": {\n    \"form\": \"brak\",\n    \"cornetto_id\": \"r_a-9377\",\n    \"cornetto_synset_id\": \"n_a-504882\",\n    \"wordnet_id\": \"a-01074062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zilt\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"brandend\": {\n    \"form\": \"brandend\",\n    \"cornetto_id\": \"r_a-9506\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heet\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"branderig\": {\n    \"form\": \"branderig\",\n    \"cornetto_id\": \"r_a-9378\",\n    \"cornetto_synset_id\": \"n_a-504886\",\n    \"wordnet_id\": \"a-00059028\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naar prikkelend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"breed\": {\n    \"form\": \"breed\",\n    \"cornetto_id\": \"r_a-9380\",\n    \"cornetto_synset_id\": \"c_291\",\n    \"wordnet_id\": \"a-02560548\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet smal\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"breedgebouwd\": {\n    \"form\": \"breedgebouwd\",\n    \"cornetto_id\": \"r_a-9574\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fors\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"breedgeschouderd\": {\n    \"form\": \"breedgeschouderd\",\n    \"cornetto_id\": \"r_a-9575\",\n    \"cornetto_synset_id\": \"n_a-504942\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met brede schouders\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"briljant\": {\n    \"form\": \"briljant\",\n    \"cornetto_id\": \"r_a-9384\",\n    \"cornetto_synset_id\": \"n_a-510334\",\n    \"wordnet_id\": \"a-00402855\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geniaal\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"broederlijk\": {\n    \"form\": \"broederlijk\",\n    \"cornetto_id\": \"r_a-9386\",\n    \"cornetto_synset_id\": \"n_a-505001\",\n    \"wordnet_id\": \"a-00291471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals broeders doen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"broeierig\": {\n    \"form\": \"broeierig\",\n    \"cornetto_id\": \"r_a-9507\",\n    \"cornetto_synset_id\": \"n_a-505007\",\n    \"wordnet_id\": \"a-01250393\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drukkend warm\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bronzen\": {\n    \"form\": \"bronzen\",\n    \"cornetto_id\": \"r_a-9509\",\n    \"cornetto_synset_id\": \"n_a-505033\",\n    \"wordnet_id\": \"a-00371945\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van brons\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"broodmager\": {\n    \"form\": \"broodmager\",\n    \"cornetto_id\": \"r_a-9577\",\n    \"cornetto_synset_id\": \"n_a-505041\",\n    \"wordnet_id\": \"a-00990192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel mager\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"broodnuchter\": {\n    \"form\": \"broodnuchter\",\n    \"cornetto_id\": \"r_a-9578\",\n    \"cornetto_synset_id\": \"n_a-505044\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel nuchter\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"broos\": {\n    \"form\": \"broos\",\n    \"cornetto_id\": \"r_a-9391\",\n    \"cornetto_synset_id\": \"n_a-504946\",\n    \"wordnet_id\": \"a-00708017\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer breekbaar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bruin\": {\n    \"form\": \"bruin\",\n    \"cornetto_id\": \"r_a-9394\",\n    \"cornetto_synset_id\": \"n_a-505079\",\n    \"wordnet_id\": \"a-00369504\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruingekleurd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"brutaal\": {\n    \"form\": \"brutaal\",\n    \"cornetto_id\": \"r_a-9395\",\n    \"cornetto_synset_id\": \"d_a-9207\",\n    \"wordnet_id\": \"a-00155720\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrijpostig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bruusk\": {\n    \"form\": \"bruusk\",\n    \"cornetto_id\": \"r_a-9399\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"abrupt\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"bruut\": {\n    \"form\": \"bruut\",\n    \"cornetto_id\": \"r_a-9400\",\n    \"cornetto_synset_id\": \"n_a-510816\",\n    \"wordnet_id\": \"a-00248251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ruw\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"buiig\": {\n    \"form\": \"buiig\",\n    \"cornetto_id\": \"r_a-9402\",\n    \"cornetto_synset_id\": \"n_a-505116\",\n    \"wordnet_id\": \"a-00304670\",\n    \"pos\": \"JJ\",\n    \"sense\": \"regenachtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"buikig\": {\n    \"form\": \"buikig\",\n    \"cornetto_id\": \"r_a-9403\",\n    \"cornetto_synset_id\": \"d_a-9231\",\n    \"wordnet_id\": \"a-00987180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"corpulent\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"buitenaards\": {\n    \"form\": \"buitenaards\",\n    \"cornetto_id\": \"r_a-9404\",\n    \"cornetto_synset_id\": \"n_a-505133\",\n    \"wordnet_id\": \"a-02780355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van buiten de aarde\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"buitenechtelijk\": {\n    \"form\": \"buitenechtelijk\",\n    \"cornetto_id\": \"r_a-9405\",\n    \"cornetto_synset_id\": \"n_a-505145\",\n    \"wordnet_id\": \"a-01403760\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buiten het huwelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"buitengewoon\": {\n    \"form\": \"buitengewoon\",\n    \"cornetto_id\": \"r_a-9407\",\n    \"cornetto_synset_id\": \"d_a-9188\",\n    \"wordnet_id\": \"a-00966477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijzonder\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"buitenissig\": {\n    \"form\": \"buitenissig\",\n    \"cornetto_id\": \"r_a-9408\",\n    \"cornetto_synset_id\": \"n_a-535905\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"excentriek\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"buitenlands\": {\n    \"form\": \"buitenlands\",\n    \"cornetto_id\": \"r_a-9410\",\n    \"cornetto_synset_id\": \"n_a-533835\",\n    \"wordnet_id\": \"a-00966753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het buitenland\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"buitenmatig\": {\n    \"form\": \"buitenmatig\",\n    \"cornetto_id\": \"d_a-39296\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"buitensporig\": {\n    \"form\": \"buitensporig\",\n    \"cornetto_id\": \"r_a-9412\",\n    \"cornetto_synset_id\": \"n_a-522385\",\n    \"wordnet_id\": \"a-00880586\",\n    \"pos\": \"JJ\",\n    \"sense\": \"excessief\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"calvinistisch\": {\n    \"form\": \"calvinistisch\",\n    \"cornetto_id\": \"r_a-9713\",\n    \"cornetto_synset_id\": \"n_a-505318\",\n    \"wordnet_id\": \"a-02952975\",\n    \"pos\": \"JJ\",\n    \"sense\": \"streng en serieus\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capabel\": {\n    \"form\": \"capabel\",\n    \"cornetto_id\": \"r_a-9714\",\n    \"cornetto_synset_id\": \"d_a-9373\",\n    \"wordnet_id\": \"a-00178811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bekwaam\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"catastrofaal\": {\n    \"form\": \"catastrofaal\",\n    \"cornetto_id\": \"r_a-9716\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rampzalig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"categoriaal\": {\n    \"form\": \"categoriaal\",\n    \"cornetto_id\": \"r_a-9806\",\n    \"cornetto_synset_id\": \"n_a-505409\",\n    \"wordnet_id\": \"a-02683869\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naar categorie ingedeeld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"categorisch\": {\n    \"form\": \"categorisch\",\n    \"cornetto_id\": \"r_a-9717\",\n    \"cornetto_synset_id\": \"n_a-529191\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder twijfel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"causaal\": {\n    \"form\": \"causaal\",\n    \"cornetto_id\": \"r_a-9718\",\n    \"cornetto_synset_id\": \"n_a-521831\",\n    \"wordnet_id\": \"a-00322457\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oorzakelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"centraal\": {\n    \"form\": \"centraal\",\n    \"cornetto_id\": \"r_a-9721\",\n    \"cornetto_synset_id\": \"n_a-505452\",\n    \"wordnet_id\": \"a-00330728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in of uit het centrum\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"chagrijnig\": {\n    \"form\": \"chagrijnig\",\n    \"cornetto_id\": \"r_a-9723\",\n    \"cornetto_synset_id\": \"d_a-9521\",\n    \"wordnet_id\": \"a-00703615\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit zijn humeur\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chaotisch\": {\n    \"form\": \"chaotisch\",\n    \"cornetto_id\": \"r_a-9724\",\n    \"cornetto_synset_id\": \"d_a-9578\",\n    \"wordnet_id\": \"a-00436115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ordeloos\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"charismatisch\": {\n    \"form\": \"charismatisch\",\n    \"cornetto_id\": \"r_a-9812\",\n    \"cornetto_synset_id\": \"n_a-505493\",\n    \"wordnet_id\": \"a-00167077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met bijzondere uitstraling\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"charitatief\": {\n    \"form\": \"charitatief\",\n    \"cornetto_id\": \"r_a-9725\",\n    \"cornetto_synset_id\": \"n_a-517266\",\n    \"wordnet_id\": \"a-00223802\",\n    \"pos\": \"JJ\",\n    \"sense\": \"liefdadig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"charlatan\": {\n    \"form\": \"charlatan\",\n    \"cornetto_id\": \"r_n-9275\",\n    \"cornetto_synset_id\": \"d_n-27465\",\n    \"wordnet_id\": \"n-10334782\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charlatanisme\": {\n    \"form\": \"charlatanisme\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charmant\": {\n    \"form\": \"charmant\",\n    \"cornetto_id\": \"r_a-9726\",\n    \"cornetto_synset_id\": \"n_a-505496\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bekoorlijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chassidisch\": {\n    \"form\": \"chassidisch\",\n    \"cornetto_id\": \"r_a-9847\",\n    \"cornetto_synset_id\": \"n_a-505505\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens Joodse mystieke stroming\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chauvinistisch\": {\n    \"form\": \"chauvinistisch\",\n    \"cornetto_id\": \"r_a-9727\",\n    \"cornetto_synset_id\": \"n_a-519670\",\n    \"wordnet_id\": \"a-01568092\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens chauvinisme\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chic\": {\n    \"form\": \"chic\",\n    \"cornetto_id\": \"r_a-9729\",\n    \"cornetto_synset_id\": \"n_a-505528\",\n    \"wordnet_id\": \"a-00971506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"elegant\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"chloorhoudend\": {\n    \"form\": \"chloorhoudend\",\n    \"cornetto_id\": \"r_a-9848\",\n    \"cornetto_synset_id\": \"n_a-505538\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met chloor erin\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"cholerisch\": {\n    \"form\": \"cholerisch\",\n    \"cornetto_id\": \"r_a-9731\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"driftig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"choreografisch\": {\n    \"form\": \"choreografisch\",\n    \"cornetto_id\": \"r_a-9851\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. choreografie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"christelijk\": {\n    \"form\": \"christelijk\",\n    \"cornetto_id\": \"r_a-9732\",\n    \"cornetto_synset_id\": \"n_a-505556\",\n    \"wordnet_id\": \"a-02710825\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te maken hebbend met het christendom\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"christen-democratisch\": {\n    \"form\": \"christen-democratisch\",\n    \"cornetto_id\": \"r_a-9813\",\n    \"cornetto_synset_id\": \"n_a-505560\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"democratisch op christelijke grondslag\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chronisch\": {\n    \"form\": \"chronisch\",\n    \"cornetto_id\": \"r_a-9733\",\n    \"cornetto_synset_id\": \"n_a-505577\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortdurend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"chronologisch\": {\n    \"form\": \"chronologisch\",\n    \"cornetto_id\": \"r_a-9734\",\n    \"cornetto_synset_id\": \"n_a-505581\",\n    \"wordnet_id\": \"a-02956880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens chronologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cinematografisch\": {\n    \"form\": \"cinematografisch\",\n    \"cornetto_id\": \"r_a-9815\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de filmkunst\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civiel\": {\n    \"form\": \"civiel\",\n    \"cornetto_id\": \"r_a-9735\",\n    \"cornetto_synset_id\": \"n_a-505230\",\n    \"wordnet_id\": \"a-01517921\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet-militair en niet-kerkelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civielrechtelijk\": {\n    \"form\": \"civielrechtelijk\",\n    \"cornetto_id\": \"r_a-9817\",\n    \"cornetto_synset_id\": \"n_a-505646\",\n    \"wordnet_id\": \"a-00642379\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens het burgerlijk recht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"clandestien\": {\n    \"form\": \"clandestien\",\n    \"cornetto_id\": \"r_a-9736\",\n    \"cornetto_synset_id\": \"n_a-513378\",\n    \"wordnet_id\": \"a-00028984\",\n    \"pos\": \"JJ\",\n    \"sense\": \"illegaal\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"classicistisch\": {\n    \"form\": \"classicistisch\",\n    \"cornetto_id\": \"r_a-9818\",\n    \"cornetto_synset_id\": \"n_a-505655\",\n    \"wordnet_id\": \"a-02919986\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens het classicisme\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"clash\": {\n    \"form\": \"clash\",\n    \"cornetto_id\": \"d_n-48552\",\n    \"cornetto_synset_id\": \"n_n-505653\",\n    \"wordnet_id\": \"n-00959376\",\n    \"pos\": \"FW\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"claustrofobisch\": {\n    \"form\": \"claustrofobisch\",\n    \"cornetto_id\": \"r_a-9857\",\n    \"cornetto_synset_id\": \"n_a-505659\",\n    \"wordnet_id\": \"a-00079356\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met claustrofobie\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"clever\": {\n    \"form\": \"clever\",\n    \"cornetto_id\": \"d_a-48685\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"cliché\": {\n    \"form\": \"cliché\",\n    \"cornetto_id\": \"r_n-9442\",\n    \"cornetto_synset_id\": \"d_n-11303\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"clichématig\": {\n    \"form\": \"clichématig\",\n    \"cornetto_id\": \"r_a-9819\",\n    \"cornetto_synset_id\": \"n_a-501778\",\n    \"wordnet_id\": \"a-01688757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgezaagd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"clinch\": {\n    \"form\": \"clinch\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"close\": {\n    \"form\": \"close\",\n    \"cornetto_id\": \"r_a-9740\",\n    \"cornetto_synset_id\": \"d_a-9353\",\n    \"wordnet_id\": \"a-00477284\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dichtbij\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"coherent\": {\n    \"form\": \"coherent\",\n    \"cornetto_id\": \"r_a-9743\",\n    \"cornetto_synset_id\": \"n_a-526545\",\n    \"wordnet_id\": \"a-00053384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"samenhangend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collectief\": {\n    \"form\": \"collectief\",\n    \"cornetto_id\": \"r_a-9744\",\n    \"cornetto_synset_id\": \"n_a-510254\",\n    \"wordnet_id\": \"a-00492677\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met z'n allen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collegiaal\": {\n    \"form\": \"collegiaal\",\n    \"cornetto_id\": \"r_a-9745\",\n    \"cornetto_synset_id\": \"n_a-505746\",\n    \"wordnet_id\": \"a-00291471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals collega's doen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comfortabel\": {\n    \"form\": \"comfortabel\",\n    \"cornetto_id\": \"r_a-9879\",\n    \"cornetto_synset_id\": \"n_a-505776\",\n    \"wordnet_id\": \"a-00476819\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ruim\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commercieel\": {\n    \"form\": \"commercieel\",\n    \"cornetto_id\": \"r_a-9747\",\n    \"cornetto_synset_id\": \"d_a-9621\",\n    \"wordnet_id\": \"a-00483146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de handel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"communicatief\": {\n    \"form\": \"communicatief\",\n    \"cornetto_id\": \"r_a-9880\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mededeelzaam\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"communistisch\": {\n    \"form\": \"communistisch\",\n    \"cornetto_id\": \"r_a-9749\",\n    \"cornetto_synset_id\": \"n_a-505804\",\n    \"wordnet_id\": \"a-02874876\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens het communisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"competent\": {\n    \"form\": \"competent\",\n    \"cornetto_id\": \"r_a-9751\",\n    \"cornetto_synset_id\": \"d_a-9373\",\n    \"wordnet_id\": \"a-00178811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bekwaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compleet\": {\n    \"form\": \"compleet\",\n    \"cornetto_id\": \"r_a-9752\",\n    \"cornetto_synset_id\": \"n_a-505819\",\n    \"wordnet_id\": \"a-00005107\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volledig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"complex\": {\n    \"form\": \"complex\",\n    \"cornetto_id\": \"r_a-9754\",\n    \"cornetto_synset_id\": \"d_a-9348\",\n    \"wordnet_id\": \"a-02176178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"samengesteld, ingewikkeld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"compositorisch\": {\n    \"form\": \"compositorisch\",\n    \"cornetto_id\": \"r_a-9824\",\n    \"cornetto_synset_id\": \"d_a-9216\",\n    \"wordnet_id\": \"a-01331459\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de compositie betreffend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"computergestuurd\": {\n    \"form\": \"computergestuurd\",\n    \"cornetto_id\": \"r_a-9827\",\n    \"cornetto_synset_id\": \"n_a-505843\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door een computer gecontroleerd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conceptueel\": {\n    \"form\": \"conceptueel\",\n    \"cornetto_id\": \"r_a-9881\",\n    \"cornetto_synset_id\": \"n_a-501464\",\n    \"wordnet_id\": \"a-00012362\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het begrip betreffende\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concreet\": {\n    \"form\": \"concreet\",\n    \"cornetto_id\": \"r_a-9758\",\n    \"cornetto_synset_id\": \"n_a-505886\",\n    \"wordnet_id\": \"a-01618376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duidelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"concurrerend\": {\n    \"form\": \"concurrerend\",\n    \"cornetto_id\": \"r_a-9828\",\n    \"cornetto_synset_id\": \"n_a-505892\",\n    \"wordnet_id\": \"a-00083003\",\n    \"pos\": \"JJ\",\n    \"sense\": \"scherp\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confessioneel\": {\n    \"form\": \"confessioneel\",\n    \"cornetto_id\": \"r_a-9759\",\n    \"cornetto_synset_id\": \"n_a-505911\",\n    \"wordnet_id\": \"a-01689880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"christelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confronterend\": {\n    \"form\": \"confronterend\",\n    \"cornetto_id\": \"r_a-9862\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"iets tegenover iets stellend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"congruent\": {\n    \"form\": \"congruent\",\n    \"cornetto_id\": \"r_a-9940\",\n    \"cornetto_synset_id\": \"d_a-9293\",\n    \"wordnet_id\": \"a-01546222\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overeenkomend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conjunctureel\": {\n    \"form\": \"conjunctureel\",\n    \"cornetto_id\": \"r_a-9830\",\n    \"cornetto_synset_id\": \"n_a-505936\",\n    \"wordnet_id\": \"a-00675701\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de conjunctuur betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consciëntieus\": {\n    \"form\": \"consciëntieus\",\n    \"cornetto_id\": \"r_a-9763\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgvuldig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"consequent\": {\n    \"form\": \"consequent\",\n    \"cornetto_id\": \"r_a-9941\",\n    \"cornetto_synset_id\": \"n_a-505948\",\n    \"wordnet_id\": \"a-00464513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zichzelf gelijk blijvend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conservatief\": {\n    \"form\": \"conservatief\",\n    \"cornetto_id\": \"r_a-9765\",\n    \"cornetto_synset_id\": \"d_a-9217\",\n    \"wordnet_id\": \"a-00574422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoudend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consistent\": {\n    \"form\": \"consistent\",\n    \"cornetto_id\": \"r_a-9766\",\n    \"cornetto_synset_id\": \"n_a-505953\",\n    \"wordnet_id\": \"a-00434597\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder innerlijke tegenspraak\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"constant\": {\n    \"form\": \"constant\",\n    \"cornetto_id\": \"r_a-9767\",\n    \"cornetto_synset_id\": \"n_a-521559\",\n    \"wordnet_id\": \"a-00347400\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onveranderlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"constructief\": {\n    \"form\": \"constructief\",\n    \"cornetto_id\": \"r_a-9769\",\n    \"cornetto_synset_id\": \"n_a-521861\",\n    \"wordnet_id\": \"a-01817500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opbouwend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contemporain\": {\n    \"form\": \"contemporain\",\n    \"cornetto_id\": \"r_a-9833\",\n    \"cornetto_synset_id\": \"n_a-512180\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eigentijds\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"content\": {\n    \"form\": \"content\",\n    \"cornetto_id\": \"r_a-9772\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tevreden\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"contingent\": {\n    \"form\": \"contingent\",\n    \"cornetto_id\": \"d_a-51652\",\n    \"cornetto_synset_id\": \"n_a-530945\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toevallig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continu\": {\n    \"form\": \"continu\",\n    \"cornetto_id\": \"r_a-9774\",\n    \"cornetto_synset_id\": \"n_a-520586\",\n    \"wordnet_id\": \"a-00291338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ononderbroken\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"controversieel\": {\n    \"form\": \"controversieel\",\n    \"cornetto_id\": \"r_a-9776\",\n    \"cornetto_synset_id\": \"n_a-520545\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"omstreden\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conventioneel\": {\n    \"form\": \"conventioneel\",\n    \"cornetto_id\": \"r_a-9884\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onorigineel\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cool\": {\n    \"form\": \"cool\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"copieus\": {\n    \"form\": \"copieus\",\n    \"cornetto_id\": \"r_a-9781\",\n    \"cornetto_synset_id\": \"n_a-506072\",\n    \"wordnet_id\": \"a-00013887\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overvloedig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corduroy\": {\n    \"form\": \"corduroy\",\n    \"cornetto_id\": \"r_a-9872\",\n    \"cornetto_synset_id\": \"n_a-506079\",\n    \"wordnet_id\": \"a-02240275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van ribfluweel gemaakt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corpulent\": {\n    \"form\": \"corpulent\",\n    \"cornetto_id\": \"r_a-9782\",\n    \"cornetto_synset_id\": \"d_a-9231\",\n    \"wordnet_id\": \"a-00987180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezet\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"correct\": {\n    \"form\": \"correct\",\n    \"cornetto_id\": \"r_a-9784\",\n    \"cornetto_synset_id\": \"n_a-510405\",\n    \"wordnet_id\": \"a-01878870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals het hoort\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cosmetisch\": {\n    \"form\": \"cosmetisch\",\n    \"cornetto_id\": \"r_a-9873\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de cosmetica betreffende\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coulant\": {\n    \"form\": \"coulant\",\n    \"cornetto_id\": \"r_a-9787\",\n    \"cornetto_synset_id\": \"d_a-9350\",\n    \"wordnet_id\": \"a-00437539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"soepel\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courant\": {\n    \"form\": \"courant\",\n    \"cornetto_id\": \"r_a-9788\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gangbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coöperatief\": {\n    \"form\": \"coöperatief\",\n    \"cornetto_id\": \"r_a-9780\",\n    \"cornetto_synset_id\": \"n_a-505706\",\n    \"wordnet_id\": \"a-00513388\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op samenwerking gebaseerd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crazy\": {\n    \"form\": \"crazy\",\n    \"cornetto_id\": \"r_a-9790\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gek\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"creatief\": {\n    \"form\": \"creatief\",\n    \"cornetto_id\": \"r_a-9791\",\n    \"cornetto_synset_id\": \"n_a-506150\",\n    \"wordnet_id\": \"a-00643863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"scheppend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"crimineel\": {\n    \"form\": \"crimineel\",\n    \"cornetto_id\": \"r_a-9945\",\n    \"cornetto_synset_id\": \"n_a-529626\",\n    \"wordnet_id\": \"a-01402763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"strafrechtelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"criminologisch\": {\n    \"form\": \"criminologisch\",\n    \"cornetto_id\": \"r_a-9874\",\n    \"cornetto_synset_id\": \"n_a-506168\",\n    \"wordnet_id\": \"a-02919863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de criminologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cru\": {\n    \"form\": \"cru\",\n    \"cornetto_id\": \"r_a-9793\",\n    \"cornetto_synset_id\": \"n_a-525114\",\n    \"wordnet_id\": \"a-00619808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bot\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"cruciaal\": {\n    \"form\": \"cruciaal\",\n    \"cornetto_id\": \"r_a-9794\",\n    \"cornetto_synset_id\": \"n_a-503757\",\n    \"wordnet_id\": \"a-00656507\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beslissend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cryptisch\": {\n    \"form\": \"cryptisch\",\n    \"cornetto_id\": \"r_a-9795\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duister\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"culinair\": {\n    \"form\": \"culinair\",\n    \"cornetto_id\": \"r_a-9796\",\n    \"cornetto_synset_id\": \"n_a-506204\",\n    \"wordnet_id\": \"a-02707659\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de kookkunst\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cultureel\": {\n    \"form\": \"cultureel\",\n    \"cornetto_id\": \"r_a-9797\",\n    \"cornetto_synset_id\": \"n_a-506208\",\n    \"wordnet_id\": \"a-02248693\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. cultuur\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cultuurhistorisch\": {\n    \"form\": \"cultuurhistorisch\",\n    \"cornetto_id\": \"r_a-9838\",\n    \"cornetto_synset_id\": \"n_a-506216\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. Cultuurgeschiedenis\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cumulatief\": {\n    \"form\": \"cumulatief\",\n    \"cornetto_id\": \"r_a-9798\",\n    \"cornetto_synset_id\": \"n_a-521873\",\n    \"wordnet_id\": \"a-00029769\",\n    \"pos\": \"JJ\",\n    \"sense\": \"steeds bij het totaal opgeteld\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"curatief\": {\n    \"form\": \"curatief\",\n    \"cornetto_id\": \"r_a-9840\",\n    \"cornetto_synset_id\": \"n_a-510333\",\n    \"wordnet_id\": \"a-01165943\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genezend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"curieus\": {\n    \"form\": \"curieus\",\n    \"cornetto_id\": \"r_a-9799\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opmerkelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"cursief\": {\n    \"form\": \"cursief\",\n    \"cornetto_id\": \"r_a-9801\",\n    \"cornetto_synset_id\": \"n_a-506240\",\n    \"wordnet_id\": \"a-02285035\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schuin gedrukt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cynisch\": {\n    \"form\": \"cynisch\",\n    \"cornetto_id\": \"r_a-9803\",\n    \"cornetto_synset_id\": \"d_a-9220\",\n    \"wordnet_id\": \"a-02463582\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bitter\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cyrillisch\": {\n    \"form\": \"cyrillisch\",\n    \"cornetto_id\": \"r_a-9841\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. soort schrift\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"daadwerkelijk\": {\n    \"form\": \"daadwerkelijk\",\n    \"cornetto_id\": \"r_a-9990\",\n    \"cornetto_synset_id\": \"n_a-506270\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"metterdaad\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"daaropvolgend\": {\n    \"form\": \"daaropvolgend\",\n    \"cornetto_id\": \"r_a-10167\",\n    \"cornetto_synset_id\": \"n_a-506288\",\n    \"wordnet_id\": \"a-00122626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat volgt op\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dagelijks\": {\n    \"form\": \"dagelijks\",\n    \"cornetto_id\": \"r_a-9994\",\n    \"cornetto_synset_id\": \"n_a-506314\",\n    \"wordnet_id\": \"a-01674242\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(alle)daags\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dagenlang\": {\n    \"form\": \"dagenlang\",\n    \"cornetto_id\": \"r_a-10168\",\n    \"cornetto_synset_id\": \"n_a-506315\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dagen durend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dagvers\": {\n    \"form\": \"dagvers\",\n    \"cornetto_id\": \"r_a-10242\",\n    \"cornetto_synset_id\": \"n_a-506344\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel vers\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dakloos\": {\n    \"form\": \"dakloos\",\n    \"cornetto_id\": \"r_a-9995\",\n    \"cornetto_synset_id\": \"n_a-506356\",\n    \"wordnet_id\": \"a-01050603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder onderdak\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"danig\": {\n    \"form\": \"danig\",\n    \"cornetto_id\": \"r_a-10169\",\n    \"cornetto_synset_id\": \"n_r-509139\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"RB\",\n    \"sense\": \"duchtig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"dankbaar\": {\n    \"form\": \"dankbaar\",\n    \"cornetto_id\": \"r_a-9997\",\n    \"cornetto_synset_id\": \"n_a-506397\",\n    \"wordnet_id\": \"a-01586866\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voldoening gevend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dapper\": {\n    \"form\": \"dapper\",\n    \"cornetto_id\": \"r_a-9998\",\n    \"cornetto_synset_id\": \"n_a-519123\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moedig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"daverend\": {\n    \"form\": \"daverend\",\n    \"cornetto_id\": \"r_a-10000\",\n    \"cornetto_synset_id\": \"n_a-506439\",\n    \"wordnet_id\": \"a-00178464\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel groot,mooi,veel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.8\"\n  },\n  \"decadent\": {\n    \"form\": \"decadent\",\n    \"cornetto_id\": \"r_a-10316\",\n    \"cornetto_synset_id\": \"n_a-528192\",\n    \"wordnet_id\": \"a-01332907\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdreven luxueus\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"decoratief\": {\n    \"form\": \"decoratief\",\n    \"cornetto_id\": \"r_a-10006\",\n    \"cornetto_synset_id\": \"n_a-506477\",\n    \"wordnet_id\": \"a-01091234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"versierend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"deductief\": {\n    \"form\": \"deductief\",\n    \"cornetto_id\": \"r_a-10244\",\n    \"cornetto_synset_id\": \"n_a-506489\",\n    \"wordnet_id\": \"a-02710294\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met deductie\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"deels\": {\n    \"form\": \"deels\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"deemoedig\": {\n    \"form\": \"deemoedig\",\n    \"cornetto_id\": \"r_a-10173\",\n    \"cornetto_synset_id\": \"n_a-519741\",\n    \"wordnet_id\": \"a-01532912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met deemoed\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"deerlijk\": {\n    \"form\": \"deerlijk\",\n    \"cornetto_id\": \"d_a-57320\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"deerniswekkend\": {\n    \"form\": \"deerniswekkend\",\n    \"cornetto_id\": \"r_a-10008\",\n    \"cornetto_synset_id\": \"n_a-535670\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meelijwekkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"defaitistisch\": {\n    \"form\": \"defaitistisch\",\n    \"cornetto_id\": \"r_a-10246\",\n    \"cornetto_synset_id\": \"d_a-9411\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moedeloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"definitief\": {\n    \"form\": \"definitief\",\n    \"cornetto_id\": \"r_a-10011\",\n    \"cornetto_synset_id\": \"n_a-506530\",\n    \"wordnet_id\": \"a-01618895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaststaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"deftig\": {\n    \"form\": \"deftig\",\n    \"cornetto_id\": \"r_a-10012\",\n    \"cornetto_synset_id\": \"n_a-529095\",\n    \"wordnet_id\": \"a-01993140\",\n    \"pos\": \"JJ\",\n    \"sense\": \"statig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"degelijk\": {\n    \"form\": \"degelijk\",\n    \"cornetto_id\": \"r_a-10014\",\n    \"cornetto_synset_id\": \"n_a-503878\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"solide\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"deksels\": {\n    \"form\": \"deksels\",\n    \"cornetto_id\": \"r_a-10015\",\n    \"cornetto_synset_id\": \"n_a-516807\",\n    \"wordnet_id\": \"a-00669942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drommels\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"demagogisch\": {\n    \"form\": \"demagogisch\",\n    \"cornetto_id\": \"r_a-10174\",\n    \"cornetto_synset_id\": \"n_a-506603\",\n    \"wordnet_id\": \"a-01897378\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de massa bespelend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dement\": {\n    \"form\": \"dement\",\n    \"cornetto_id\": \"r_a-10018\",\n    \"cornetto_synset_id\": \"n_a-506607\",\n    \"wordnet_id\": \"a-02075321\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kinds\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"demissionair\": {\n    \"form\": \"demissionair\",\n    \"cornetto_id\": \"r_a-10019\",\n    \"cornetto_synset_id\": \"n_a-506612\",\n    \"wordnet_id\": \"a-01295443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bezig af te treden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"demografisch\": {\n    \"form\": \"demografisch\",\n    \"cornetto_id\": \"r_a-10175\",\n    \"cornetto_synset_id\": \"n_a-506613\",\n    \"wordnet_id\": \"a-02906351\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de demografie betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"demonisch\": {\n    \"form\": \"demonisch\",\n    \"cornetto_id\": \"r_a-10247\",\n    \"cornetto_synset_id\": \"n_a-507785\",\n    \"wordnet_id\": \"a-02074673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duivels\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"demonstratief\": {\n    \"form\": \"demonstratief\",\n    \"cornetto_id\": \"r_a-10021\",\n    \"cornetto_synset_id\": \"n_a-506615\",\n    \"wordnet_id\": \"a-02182302\",\n    \"pos\": \"JJ\",\n    \"sense\": \"om de aandacht te trekken\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"denderend\": {\n    \"form\": \"denderend\",\n    \"cornetto_id\": \"r_a-10023\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"daverend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"denkbaar\": {\n    \"form\": \"denkbaar\",\n    \"cornetto_id\": \"r_a-10024\",\n    \"cornetto_synset_id\": \"n_a-519143\",\n    \"wordnet_id\": \"a-02418249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mogelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"departementaal\": {\n    \"form\": \"departementaal\",\n    \"cornetto_id\": \"r_a-10179\",\n    \"cornetto_synset_id\": \"n_a-506659\",\n    \"wordnet_id\": \"a-03059966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van een departement\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"deplorabel\": {\n    \"form\": \"deplorabel\",\n    \"cornetto_id\": \"r_a-10180\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erbarmelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"depressief\": {\n    \"form\": \"depressief\",\n    \"cornetto_id\": \"r_a-10026\",\n    \"cornetto_synset_id\": \"d_a-9527\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"neerslachtig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"derdegraads\": {\n    \"form\": \"derdegraads\",\n    \"cornetto_id\": \"r_a-10027\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"v.d. derde graad\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"derderangs\": {\n    \"form\": \"derderangs\",\n    \"cornetto_id\": \"r_a-10028\",\n    \"cornetto_synset_id\": \"n_a-518934\",\n    \"wordnet_id\": \"a-01673061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van slechte kwaliteit\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"dergelijk\": {\n    \"form\": \"dergelijk\",\n    \"cornetto_id\": \"r_a-16573\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zulk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"desastreus\": {\n    \"form\": \"desastreus\",\n    \"cornetto_id\": \"r_a-10029\",\n    \"cornetto_synset_id\": \"n_a-525026\",\n    \"wordnet_id\": \"a-01050088\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rampzalig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"descriptief\": {\n    \"form\": \"descriptief\",\n    \"cornetto_id\": \"r_a-10031\",\n    \"cornetto_synset_id\": \"n_a-503750\",\n    \"wordnet_id\": \"a-00732318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beschrijvend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"desolaat\": {\n    \"form\": \"desolaat\",\n    \"cornetto_id\": \"r_a-10183\",\n    \"cornetto_synset_id\": \"n_a-531362\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"troosteloos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"destructief\": {\n    \"form\": \"destructief\",\n    \"cornetto_id\": \"r_a-10033\",\n    \"cornetto_synset_id\": \"n_a-532611\",\n    \"wordnet_id\": \"a-00248837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afbrekend\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"deugdelijk\": {\n    \"form\": \"deugdelijk\",\n    \"cornetto_id\": \"r_a-10034\",\n    \"cornetto_synset_id\": \"n_a-506736\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"degelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"deugdzaam\": {\n    \"form\": \"deugdzaam\",\n    \"cornetto_id\": \"r_a-10035\",\n    \"cornetto_synset_id\": \"n_a-506738\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"braaf\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"devoot\": {\n    \"form\": \"devoot\",\n    \"cornetto_id\": \"r_a-10036\",\n    \"cornetto_synset_id\": \"n_a-533937\",\n    \"wordnet_id\": \"a-01130261\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroom\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dezelfde\": {\n    \"form\": \"dezelfde\",\n    \"cornetto_id\": \"d_a-404142\",\n    \"cornetto_synset_id\": \"d_a-9291\",\n    \"wordnet_id\": \"a-01839317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"diabolisch\": {\n    \"form\": \"diabolisch\",\n    \"cornetto_id\": \"r_a-10254\",\n    \"cornetto_synset_id\": \"n_a-507785\",\n    \"wordnet_id\": \"a-02074673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"satanisch\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dicht\": {\n    \"form\": \"dicht\",\n    \"cornetto_id\": \"r_a-10040\",\n    \"cornetto_synset_id\": \"d_a-9215\",\n    \"wordnet_id\": \"a-00539009\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauw aaneengesloten\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dichtbij\": {\n    \"form\": \"dichtbij\",\n    \"cornetto_id\": \"d_a-521765\",\n    \"cornetto_synset_id\": \"d_a-9415\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dichterbij\": {\n    \"form\": \"dichterbij\",\n    \"cornetto_id\": \"d_r-70845\",\n    \"cornetto_synset_id\": \"d_a-9227\",\n    \"wordnet_id\": \"a-01573762\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dichterlijk\": {\n    \"form\": \"dichterlijk\",\n    \"cornetto_id\": \"r_a-10041\",\n    \"cornetto_synset_id\": \"n_a-504427\",\n    \"wordnet_id\": \"a-02017141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"poëtisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dictatoriale\": {\n    \"form\": \"dictatoriale\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"didactisch\": {\n    \"form\": \"didactisch\",\n    \"cornetto_id\": \"r_a-10189\",\n    \"cornetto_synset_id\": \"n_a-506825\",\n    \"wordnet_id\": \"a-01324131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onderwijskundig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dienstverlenend\": {\n    \"form\": \"dienstverlenend\",\n    \"cornetto_id\": \"r_a-10191\",\n    \"cornetto_synset_id\": \"n_a-506855\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"diensten verlenend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diep\": {\n    \"form\": \"diep\",\n    \"cornetto_id\": \"r_a-10049\",\n    \"cornetto_synset_id\": \"n_a-513857\",\n    \"wordnet_id\": \"a-01839317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"intens\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"diepblauw\": {\n    \"form\": \"diepblauw\",\n    \"cornetto_id\": \"r_a-10192\",\n    \"cornetto_synset_id\": \"n_a-506864\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blauw\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diepgaand\": {\n    \"form\": \"diepgaand\",\n    \"cornetto_id\": \"r_a-10050\",\n    \"cornetto_synset_id\": \"n_a-511592\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grondig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"diepgeworteld\": {\n    \"form\": \"diepgeworteld\",\n    \"cornetto_id\": \"r_a-10193\",\n    \"cornetto_synset_id\": \"n_a-506871\",\n    \"wordnet_id\": \"a-00941940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"diep zittend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"diepgravend\": {\n    \"form\": \"diepgravend\",\n    \"cornetto_id\": \"r_a-10194\",\n    \"cornetto_synset_id\": \"n_a-511592\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"diepgaand\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"diepliggend\": {\n    \"form\": \"diepliggend\",\n    \"cornetto_id\": \"r_a-10258\",\n    \"cornetto_synset_id\": \"n_a-506875\",\n    \"wordnet_id\": \"a-02264521\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verzonken\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dieptepunt\": {\n    \"form\": \"dieptepunt\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"diepzinnig\": {\n    \"form\": \"diepzinnig\",\n    \"cornetto_id\": \"r_a-10051\",\n    \"cornetto_synset_id\": \"n_a-506895\",\n    \"wordnet_id\": \"a-01744515\",\n    \"pos\": \"JJ\",\n    \"sense\": \"getuigend van diep nadenken\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dierbaar\": {\n    \"form\": \"dierbaar\",\n    \"cornetto_id\": \"r_a-10052\",\n    \"cornetto_synset_id\": \"n_a-506898\",\n    \"wordnet_id\": \"a-01461822\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geliefd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"diffuus\": {\n    \"form\": \"diffuus\",\n    \"cornetto_id\": \"r_a-10054\",\n    \"cornetto_synset_id\": \"n_a-506926\",\n    \"wordnet_id\": \"a-00540487\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verspreid\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"digitaal\": {\n    \"form\": \"digitaal\",\n    \"cornetto_id\": \"r_a-10055\",\n    \"cornetto_synset_id\": \"n_a-506928\",\n    \"wordnet_id\": \"a-02713096\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet analoog\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dik\": {\n    \"form\": \"dik\",\n    \"cornetto_id\": \"r_a-10328\",\n    \"cornetto_synset_id\": \"c_398\",\n    \"wordnet_id\": \"a-02410393\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van aanzienlijke omvang\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"dilettanterig\": {\n    \"form\": \"dilettanterig\",\n    \"cornetto_id\": \"d_a-60757\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diplomatiek\": {\n    \"form\": \"diplomatiek\",\n    \"cornetto_id\": \"r_a-10060\",\n    \"cornetto_synset_id\": \"n_a-506997\",\n    \"wordnet_id\": \"a-02713715\",\n    \"pos\": \"JJ\",\n    \"sense\": \"horend bij de diplomatie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"direct\": {\n    \"form\": \"direct\",\n    \"cornetto_id\": \"r_a-10061\",\n    \"cornetto_synset_id\": \"n_a-525240\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder omwegen, m.b.t. afstand\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"discutabel\": {\n    \"form\": \"discutabel\",\n    \"cornetto_id\": \"r_a-10064\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanvechtbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"disproportioneel\": {\n    \"form\": \"disproportioneel\",\n    \"cornetto_id\": \"r_a-10196\",\n    \"cornetto_synset_id\": \"n_a-507055\",\n    \"wordnet_id\": \"a-00483048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet in verhouding\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"disputabel\": {\n    \"form\": \"disputabel\",\n    \"cornetto_id\": \"d_a-404196\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissonant\": {\n    \"form\": \"dissonant\",\n    \"cornetto_id\": \"r_a-10266\",\n    \"cornetto_synset_id\": \"n_a-532033\",\n    \"wordnet_id\": \"a-01164250\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vals\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"divers\": {\n    \"form\": \"divers\",\n    \"cornetto_id\": \"r_a-10068\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verscheidene\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dodelijk\": {\n    \"form\": \"dodelijk\",\n    \"cornetto_id\": \"r_a-10070\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tot de dood leidend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"doelbewust\": {\n    \"form\": \"doelbewust\",\n    \"cornetto_id\": \"r_a-10071\",\n    \"cornetto_synset_id\": \"n_a-522090\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vastberaden\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"doelgericht\": {\n    \"form\": \"doelgericht\",\n    \"cornetto_id\": \"r_a-10199\",\n    \"cornetto_synset_id\": \"n_a-508079\",\n    \"wordnet_id\": \"a-00050641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op het doel af\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doelloos\": {\n    \"form\": \"doelloos\",\n    \"cornetto_id\": \"r_a-10072\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder doel\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"doeltreffend\": {\n    \"form\": \"doeltreffend\",\n    \"cornetto_id\": \"r_a-10074\",\n    \"cornetto_synset_id\": \"n_a-507125\",\n    \"wordnet_id\": \"a-00834198\",\n    \"pos\": \"JJ\",\n    \"sense\": \"effectief\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"doenlijk\": {\n    \"form\": \"doenlijk\",\n    \"cornetto_id\": \"r_a-10075\",\n    \"cornetto_synset_id\": \"n_a-511721\",\n    \"wordnet_id\": \"a-01821690\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitvoerbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"dof\": {\n    \"form\": \"dof\",\n    \"cornetto_id\": \"r_a-10200\",\n    \"cornetto_synset_id\": \"d_a-9232\",\n    \"wordnet_id\": \"a-00283972\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mat, gedempt\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dogmatisch\": {\n    \"form\": \"dogmatisch\",\n    \"cornetto_id\": \"r_a-10076\",\n    \"cornetto_synset_id\": \"n_a-507135\",\n    \"wordnet_id\": \"a-00288070\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens dogma\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dol\": {\n    \"form\": \"dol\",\n    \"cornetto_id\": \"r_a-10332\",\n    \"cornetto_synset_id\": \"d_a-9233\",\n    \"wordnet_id\": \"a-02235994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(v.e. schroef) doordraaiend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dolblij\": {\n    \"form\": \"dolblij\",\n    \"cornetto_id\": \"r_a-10201\",\n    \"cornetto_synset_id\": \"n_a-507156\",\n    \"wordnet_id\": \"a-00280463\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzettend blij\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"doldriest\": {\n    \"form\": \"doldriest\",\n    \"cornetto_id\": \"r_a-10270\",\n    \"cornetto_synset_id\": \"n_a-507154\",\n    \"wordnet_id\": \"a-00203614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel overmoedig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dolenthousiast\": {\n    \"form\": \"dolenthousiast\",\n    \"cornetto_id\": \"r_a-10271\",\n    \"cornetto_synset_id\": \"n_a-517863\",\n    \"wordnet_id\": \"a-00856011\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer enthousiast\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dolgelukkig\": {\n    \"form\": \"dolgelukkig\",\n    \"cornetto_id\": \"r_a-10202\",\n    \"cornetto_synset_id\": \"n_a-507163\",\n    \"wordnet_id\": \"a-01367008\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzettend gelukkig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dom\": {\n    \"form\": \"dom\",\n    \"cornetto_id\": \"r_a-10080\",\n    \"cornetto_synset_id\": \"c_578\",\n    \"wordnet_id\": \"a-01336587\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet intelligent\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"donker\": {\n    \"form\": \"donker\",\n    \"cornetto_id\": \"r_a-10338\",\n    \"cornetto_synset_id\": \"n_a-528326\",\n    \"wordnet_id\": \"a-00364479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"somber, ongunstig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"donkerblauw\": {\n    \"form\": \"donkerblauw\",\n    \"cornetto_id\": \"r_a-10205\",\n    \"cornetto_synset_id\": \"n_a-507210\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet lichtblauw\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"donkerblond\": {\n    \"form\": \"donkerblond\",\n    \"cornetto_id\": \"r_a-10274\",\n    \"cornetto_synset_id\": \"n_a-507211\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet lichtblond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"donkergrijs\": {\n    \"form\": \"donkergrijs\",\n    \"cornetto_id\": \"r_a-10208\",\n    \"cornetto_synset_id\": \"n_a-507214\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet lichtgrijs\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"donkerrood\": {\n    \"form\": \"donkerrood\",\n    \"cornetto_id\": \"r_a-10210\",\n    \"cornetto_synset_id\": \"n_a-507216\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet lichtrood\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dood\": {\n    \"form\": \"dood\",\n    \"cornetto_id\": \"r_a-10085\",\n    \"cornetto_synset_id\": \"d_a-9236\",\n    \"wordnet_id\": \"a-00095280\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet levend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"doodeenvoudig\": {\n    \"form\": \"doodeenvoudig\",\n    \"cornetto_id\": \"r_a-10211\",\n    \"cornetto_synset_id\": \"n_a-507230\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doodsimpel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodgeboren\": {\n    \"form\": \"doodgeboren\",\n    \"cornetto_id\": \"r_a-10213\",\n    \"cornetto_synset_id\": \"n_a-507235\",\n    \"wordnet_id\": \"a-00098307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"levenloos geboren\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodgewoon\": {\n    \"form\": \"doodgewoon\",\n    \"cornetto_id\": \"r_a-10214\",\n    \"cornetto_synset_id\": \"n_a-507238\",\n    \"wordnet_id\": \"a-00060605\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel gewoon\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodkalm\": {\n    \"form\": \"doodkalm\",\n    \"cornetto_id\": \"r_a-10279\",\n    \"cornetto_synset_id\": \"n_a-507237\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst kalm\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodmoe\": {\n    \"form\": \"doodmoe\",\n    \"cornetto_id\": \"r_a-10215\",\n    \"cornetto_synset_id\": \"n_a-531701\",\n    \"wordnet_id\": \"a-02433451\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel moe\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodnormaal\": {\n    \"form\": \"doodnormaal\",\n    \"cornetto_id\": \"r_a-10280\",\n    \"cornetto_synset_id\": \"n_a-507238\",\n    \"wordnet_id\": \"a-00060605\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel gewoon\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doods\": {\n    \"form\": \"doods\",\n    \"cornetto_id\": \"r_a-10088\",\n    \"cornetto_synset_id\": \"n_a-507250\",\n    \"wordnet_id\": \"a-01992996\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dood lijkend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodsbleek\": {\n    \"form\": \"doodsbleek\",\n    \"cornetto_id\": \"r_a-10283\",\n    \"cornetto_synset_id\": \"n_a-517312\",\n    \"wordnet_id\": \"a-00272172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijkbleek\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodsimpel\": {\n    \"form\": \"doodsimpel\",\n    \"cornetto_id\": \"r_a-10285\",\n    \"cornetto_synset_id\": \"n_a-507230\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doodeenvoudig\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doodziek\": {\n    \"form\": \"doodziek\",\n    \"cornetto_id\": \"r_a-10219\",\n    \"cornetto_synset_id\": \"n_a-507269\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zwaar ziek\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doopsgezind\": {\n    \"form\": \"doopsgezind\",\n    \"cornetto_id\": \"r_a-10220\",\n    \"cornetto_synset_id\": \"n_a-507287\",\n    \"wordnet_id\": \"a-02954633\",\n    \"pos\": \"JJ\",\n    \"sense\": \"baptistisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doordacht\": {\n    \"form\": \"doordacht\",\n    \"cornetto_id\": \"r_a-10091\",\n    \"cornetto_synset_id\": \"n_a-507294\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weloverwogen\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"doordeweeks\": {\n    \"form\": \"doordeweeks\",\n    \"cornetto_id\": \"r_a-10289\",\n    \"cornetto_synset_id\": \"n_a-502040\",\n    \"wordnet_id\": \"a-01674242\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zondags\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorgaand\": {\n    \"form\": \"doorgaand\",\n    \"cornetto_id\": \"r_a-10093\",\n    \"cornetto_synset_id\": \"n_a-507303\",\n    \"wordnet_id\": \"a-00762168\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet stoppend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorgewinterd\": {\n    \"form\": \"doorgewinterd\",\n    \"cornetto_id\": \"r_a-10094\",\n    \"cornetto_synset_id\": \"n_a-508489\",\n    \"wordnet_id\": \"a-00935500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer bedreven en ervaren\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"doorslaand\": {\n    \"form\": \"doorslaand\",\n    \"cornetto_id\": \"r_a-10099\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overtuigend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorslaggevend\": {\n    \"form\": \"doorslaggevend\",\n    \"cornetto_id\": \"r_a-10100\",\n    \"cornetto_synset_id\": \"n_a-503757\",\n    \"wordnet_id\": \"a-00656507\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beslissend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorsnee\": {\n    \"form\": \"doorsnee\",\n    \"cornetto_id\": \"d_n-404268\",\n    \"cornetto_synset_id\": \"d_n-27755\",\n    \"wordnet_id\": \"n-06021761\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"doortimmerd\": {\n    \"form\": \"doortimmerd\",\n    \"cornetto_id\": \"r_a-10102\",\n    \"cornetto_synset_id\": \"n_a-507344\",\n    \"wordnet_id\": \"a-01151740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"degelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorwrocht\": {\n    \"form\": \"doorwrocht\",\n    \"cornetto_id\": \"r_a-10107\",\n    \"cornetto_synset_id\": \"n_a-507344\",\n    \"wordnet_id\": \"a-01151740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doortimmerd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doorzichtig\": {\n    \"form\": \"doorzichtig\",\n    \"cornetto_id\": \"r_a-10110\",\n    \"cornetto_synset_id\": \"n_a-503401\",\n    \"wordnet_id\": \"a-00532892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helder\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dorstig\": {\n    \"form\": \"dorstig\",\n    \"cornetto_id\": \"r_a-10114\",\n    \"cornetto_synset_id\": \"n_a-507391\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met dorst\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draagbaar\": {\n    \"form\": \"draagbaar\",\n    \"cornetto_id\": \"r_a-10223\",\n    \"cornetto_synset_id\": \"d_a-9239\",\n    \"wordnet_id\": \"a-01291589\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dragend te vervoeren\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draagkrachtig\": {\n    \"form\": \"draagkrachtig\",\n    \"cornetto_id\": \"r_a-10224\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lasten kunnende dragen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"draaibaar\": {\n    \"form\": \"draaibaar\",\n    \"cornetto_id\": \"r_a-10225\",\n    \"cornetto_synset_id\": \"n_a-507438\",\n    \"wordnet_id\": \"a-02020011\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te draaien\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"drabbig\": {\n    \"form\": \"drabbig\",\n    \"cornetto_id\": \"r_a-10294\",\n    \"cornetto_synset_id\": \"n_a-507457\",\n    \"wordnet_id\": \"a-00421513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modderig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draconisch\": {\n    \"form\": \"draconisch\",\n    \"cornetto_id\": \"r_a-10226\",\n    \"cornetto_synset_id\": \"n_a-507460\",\n    \"wordnet_id\": \"a-03031102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"streng\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"drakerig\": {\n    \"form\": \"drakerig\",\n    \"cornetto_id\": \"r_a-10296\",\n    \"cornetto_synset_id\": \"n_a-518570\",\n    \"wordnet_id\": \"a-00795078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"draakachtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dramatisch\": {\n    \"form\": \"dramatisch\",\n    \"cornetto_id\": \"r_a-10336\",\n    \"cornetto_synset_id\": \"n_a-507468\",\n    \"wordnet_id\": \"a-02714800\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. Toneel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"drammerig\": {\n    \"form\": \"drammerig\",\n    \"cornetto_id\": \"r_a-10297\",\n    \"cornetto_synset_id\": \"n_a-507469\",\n    \"wordnet_id\": \"a-01345307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belerend en betweterig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"drastisch\": {\n    \"form\": \"drastisch\",\n    \"cornetto_id\": \"r_a-10121\",\n    \"cornetto_synset_id\": \"n_a-513689\",\n    \"wordnet_id\": \"a-00526062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingrijpend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"dreigend\": {\n    \"form\": \"dreigend\",\n    \"cornetto_id\": \"r_a-10228\",\n    \"cornetto_synset_id\": \"n_a-507482\",\n    \"wordnet_id\": \"a-00113818\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol dreiging\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"driedimensionaal\": {\n    \"form\": \"driedimensionaal\",\n    \"cornetto_id\": \"r_a-10122\",\n    \"cornetto_synset_id\": \"d_a-9242\",\n    \"wordnet_id\": \"a-00660809\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met drie dimensies\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"driedubbel\": {\n    \"form\": \"driedubbel\",\n    \"cornetto_id\": \"r_a-10231\",\n    \"cornetto_synset_id\": \"n_a-507565\",\n    \"wordnet_id\": \"a-00520892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drievoudig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"driejaarlijks\": {\n    \"form\": \"driejaarlijks\",\n    \"cornetto_id\": \"r_a-10233\",\n    \"cornetto_synset_id\": \"n_a-507517\",\n    \"wordnet_id\": \"a-01969606\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(van) om de drie jaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"driekwart\": {\n    \"form\": \"driekwart\",\n    \"cornetto_id\": \"r_a-10123\",\n    \"cornetto_synset_id\": \"n_a-507526\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drievierde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"driest\": {\n    \"form\": \"driest\",\n    \"cornetto_id\": \"r_a-10124\",\n    \"cornetto_synset_id\": \"n_a-522386\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overmoedig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"drinkbaar\": {\n    \"form\": \"drinkbaar\",\n    \"cornetto_id\": \"r_a-10306\",\n    \"cornetto_synset_id\": \"d_a-9243\",\n    \"wordnet_id\": \"a-00797113\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te drinken\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"droef\": {\n    \"form\": \"droef\",\n    \"cornetto_id\": \"r_a-10237\",\n    \"cornetto_synset_id\": \"n_a-532342\",\n    \"wordnet_id\": \"a-01361863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"droevig\": {\n    \"form\": \"droevig\",\n    \"cornetto_id\": \"r_a-10130\",\n    \"cornetto_synset_id\": \"n_a-527873\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dromerig\": {\n    \"form\": \"dromerig\",\n    \"cornetto_id\": \"r_a-10131\",\n    \"cornetto_synset_id\": \"n_a-507609\",\n    \"wordnet_id\": \"a-02009166\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als iemand die droomt\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dronken\": {\n    \"form\": \"dronken\",\n    \"cornetto_id\": \"r_a-10132\",\n    \"cornetto_synset_id\": \"d_a-9244\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beschonken\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"droog\": {\n    \"form\": \"droog\",\n    \"cornetto_id\": \"r_a-10340\",\n    \"cornetto_synset_id\": \"n_a-507619\",\n    \"wordnet_id\": \"a-02368247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van drank: niet zoet\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"druilerig\": {\n    \"form\": \"druilerig\",\n    \"cornetto_id\": \"r_a-10135\",\n    \"cornetto_synset_id\": \"n_a-507665\",\n    \"wordnet_id\": \"a-00461971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"regenachtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"druk\": {\n    \"form\": \"druk\",\n    \"cornetto_id\": \"r_a-10341\",\n    \"cornetto_synset_id\": \"c_384\",\n    \"wordnet_id\": \"a-00119006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van karakter\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dubbel\": {\n    \"form\": \"dubbel\",\n    \"cornetto_id\": \"r_a-10140\",\n    \"cornetto_synset_id\": \"n_a-507710\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tweevoudig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dubbelhartig\": {\n    \"form\": \"dubbelhartig\",\n    \"cornetto_id\": \"r_a-10141\",\n    \"cornetto_synset_id\": \"n_a-532034\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vals\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dubieus\": {\n    \"form\": \"dubieus\",\n    \"cornetto_id\": \"r_a-10144\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"twijfelachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"duidelijk\": {\n    \"form\": \"duidelijk\",\n    \"cornetto_id\": \"r_a-10149\",\n    \"cornetto_synset_id\": \"d_a-9248\",\n    \"wordnet_id\": \"a-00431447\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed waarneembaar\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"duister\": {\n    \"form\": \"duister\",\n    \"cornetto_id\": \"r_a-10150\",\n    \"cornetto_synset_id\": \"d_a-9235\",\n    \"wordnet_id\": \"a-00273082\",\n    \"pos\": \"JJ\",\n    \"sense\": \"donker\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"duivels\": {\n    \"form\": \"duivels\",\n    \"cornetto_id\": \"r_a-10151\",\n    \"cornetto_synset_id\": \"n_a-507785\",\n    \"wordnet_id\": \"a-02074673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"satanisch\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"duizelig\": {\n    \"form\": \"duizelig\",\n    \"cornetto_id\": \"r_a-10153\",\n    \"cornetto_synset_id\": \"n_a-507792\",\n    \"wordnet_id\": \"a-00437223\",\n    \"pos\": \"JJ\",\n    \"sense\": \"draaierig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"duizelingwekkend\": {\n    \"form\": \"duizelingwekkend\",\n    \"cornetto_id\": \"r_a-10154\",\n    \"cornetto_synset_id\": \"n_a-507793\",\n    \"wordnet_id\": \"a-02120828\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enorm\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"duizendjarig\": {\n    \"form\": \"duizendjarig\",\n    \"cornetto_id\": \"r_a-10342\",\n    \"cornetto_synset_id\": \"n_a-507795\",\n    \"wordnet_id\": \"a-02864699\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van duizend jaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"dun\": {\n    \"form\": \"dun\",\n    \"cornetto_id\": \"r_a-10329\",\n    \"cornetto_synset_id\": \"n_a-507803\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plat\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dusdanig\": {\n    \"form\": \"dusdanig\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"duur\": {\n    \"form\": \"duur\",\n    \"cornetto_id\": \"r_a-10159\",\n    \"cornetto_synset_id\": \"c_345\",\n    \"wordnet_id\": \"a-00975778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deftig, gewichtig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"duurzaam\": {\n    \"form\": \"duurzaam\",\n    \"cornetto_id\": \"r_a-10160\",\n    \"cornetto_synset_id\": \"n_a-507829\",\n    \"wordnet_id\": \"a-01439496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bestendig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dwangmatig\": {\n    \"form\": \"dwangmatig\",\n    \"cornetto_id\": \"r_a-10162\",\n    \"cornetto_synset_id\": \"n_a-507840\",\n    \"wordnet_id\": \"a-00104699\",\n    \"pos\": \"JJ\",\n    \"sense\": \"obsessief\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"dwars\": {\n    \"form\": \"dwars\",\n    \"cornetto_id\": \"r_a-10163\",\n    \"cornetto_synset_id\": \"n_a-507846\",\n    \"wordnet_id\": \"a-01445917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"orthogonaal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dwarsbomen\": {\n    \"form\": \"dwarsbomen\",\n    \"cornetto_id\": \"r_v-2609\",\n    \"cornetto_synset_id\": \"d_v-6959\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dweperig\": {\n    \"form\": \"dweperig\",\n    \"cornetto_id\": \"r_a-10311\",\n    \"cornetto_synset_id\": \"n_a-507870\",\n    \"wordnet_id\": \"a-00054109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneigd tot dwepen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dynamisch\": {\n    \"form\": \"dynamisch\",\n    \"cornetto_id\": \"r_a-10343\",\n    \"cornetto_synset_id\": \"n_a-507878\",\n    \"wordnet_id\": \"a-00808191\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de dynamica\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dyslectisch\": {\n    \"form\": \"dyslectisch\",\n    \"cornetto_id\": \"r_a-10313\",\n    \"cornetto_synset_id\": \"n_a-535137\",\n    \"wordnet_id\": \"a-01275195\",\n    \"pos\": \"JJ\",\n    \"sense\": \"woordblind\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"echt\": {\n    \"form\": \"echt\",\n    \"cornetto_id\": \"r_a-10615\",\n    \"cornetto_synset_id\": \"d_a-9251\",\n    \"wordnet_id\": \"a-00633581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bij uitnemendheid\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"eclatant\": {\n    \"form\": \"eclatant\",\n    \"cornetto_id\": \"r_a-10576\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sensationeel\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.8\"\n  },\n  \"edel\": {\n    \"form\": \"edel\",\n    \"cornetto_id\": \"r_a-10353\",\n    \"cornetto_synset_id\": \"n_a-507937\",\n    \"wordnet_id\": \"a-01588172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoogstaand van karakter\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eeltig\": {\n    \"form\": \"eeltig\",\n    \"cornetto_id\": \"r_a-10536\",\n    \"cornetto_synset_id\": \"d_a-9253\",\n    \"wordnet_id\": \"a-02107162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol eelt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"eendimensionaal\": {\n    \"form\": \"eendimensionaal\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eendrachtig\": {\n    \"form\": \"eendrachtig\",\n    \"cornetto_id\": \"r_a-10479\",\n    \"cornetto_synset_id\": \"n_a-507997\",\n    \"wordnet_id\": \"a-00553478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eensgezind\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eenduidig\": {\n    \"form\": \"eenduidig\",\n    \"cornetto_id\": \"r_a-10359\",\n    \"cornetto_synset_id\": \"n_a-520956\",\n    \"wordnet_id\": \"a-00103696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ondubbelzinnig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eenheidsworst\": {\n    \"form\": \"eenheidsworst\",\n    \"cornetto_id\": \"r_n-11999\",\n    \"cornetto_synset_id\": \"d_n-22231\",\n    \"wordnet_id\": \"n-04740326\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eenhoevig\": {\n    \"form\": \"eenhoevig\",\n    \"cornetto_id\": \"r_a-10538\",\n    \"cornetto_synset_id\": \"n_a-507968\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met enkelvoudige hoeven\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eenmalig\": {\n    \"form\": \"eenmalig\",\n    \"cornetto_id\": \"r_a-10362\",\n    \"cornetto_synset_id\": \"n_a-507976\",\n    \"wordnet_id\": \"a-01482751\",\n    \"pos\": \"JJ\",\n    \"sense\": \"één keer voorkomend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"eenparig\": {\n    \"form\": \"eenparig\",\n    \"cornetto_id\": \"r_a-10542\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met overeenstemming\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eens\": {\n    \"form\": \"eens\",\n    \"cornetto_id\": \"r_a-10363\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van dezelfde mening\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eensluidend\": {\n    \"form\": \"eensluidend\",\n    \"cornetto_id\": \"r_a-10365\",\n    \"cornetto_synset_id\": \"n_a-510159\",\n    \"wordnet_id\": \"a-02378496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met gelijke inhoud\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eentonig\": {\n    \"form\": \"eentonig\",\n    \"cornetto_id\": \"r_a-10592\",\n    \"cornetto_synset_id\": \"n_a-519240\",\n    \"wordnet_id\": \"a-01541828\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met maar één toon\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eenvoudig\": {\n    \"form\": \"eenvoudig\",\n    \"cornetto_id\": \"r_a-10595\",\n    \"cornetto_synset_id\": \"n_a-503737\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bescheiden\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eenzaam\": {\n    \"form\": \"eenzaam\",\n    \"cornetto_id\": \"r_a-10370\",\n    \"cornetto_synset_id\": \"n_a-531714\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgelegen of verlaten\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eenzelvig\": {\n    \"form\": \"eenzelvig\",\n    \"cornetto_id\": \"r_a-10371\",\n    \"cornetto_synset_id\": \"n_a-508015\",\n    \"wordnet_id\": \"a-01313649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"teruggetrokken\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eenzijdig\": {\n    \"form\": \"eenzijdig\",\n    \"cornetto_id\": \"r_a-10616\",\n    \"cornetto_synset_id\": \"n_a-508018\",\n    \"wordnet_id\": \"a-00236989\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beperkt\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"eerbiedig\": {\n    \"form\": \"eerbiedig\",\n    \"cornetto_id\": \"r_a-10374\",\n    \"cornetto_synset_id\": \"n_a-508023\",\n    \"wordnet_id\": \"a-01993940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"respectvol\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"eerder\": {\n    \"form\": \"eerder\",\n    \"cornetto_id\": \"r_a-10482\",\n    \"cornetto_synset_id\": \"d_a-9599\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroeger\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"1.0\"\n  },\n  \"eerlijk\": {\n    \"form\": \"eerlijk\",\n    \"cornetto_id\": \"r_a-10376\",\n    \"cornetto_synset_id\": \"n_a-508027\",\n    \"wordnet_id\": \"a-01225643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oprecht\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eerloos\": {\n    \"form\": \"eerloos\",\n    \"cornetto_id\": \"r_a-10545\",\n    \"cornetto_synset_id\": \"n_a-526001\",\n    \"wordnet_id\": \"a-01122411\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder eer\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"eersteklas\": {\n    \"form\": \"eersteklas\",\n    \"cornetto_id\": \"r_a-10379\",\n    \"cornetto_synset_id\": \"d_n-28881\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"eersterangs\": {\n    \"form\": \"eersterangs\",\n    \"cornetto_id\": \"r_a-10547\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tot de besten behorend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"eerstgenoemd\": {\n    \"form\": \"eerstgenoemd\",\n    \"cornetto_id\": \"r_a-10485\",\n    \"cornetto_synset_id\": \"n_a-508044\",\n    \"wordnet_id\": \"a-01047301\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als eerste genoemd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eerstkomend\": {\n    \"form\": \"eerstkomend\",\n    \"cornetto_id\": \"r_a-10486\",\n    \"cornetto_synset_id\": \"n_a-508045\",\n    \"wordnet_id\": \"a-00123485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanstaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eerzaam\": {\n    \"form\": \"eerzaam\",\n    \"cornetto_id\": \"r_a-10549\",\n    \"cornetto_synset_id\": \"n_a-506738\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"respectabel\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eerzuchtig\": {\n    \"form\": \"eerzuchtig\",\n    \"cornetto_id\": \"r_a-10382\",\n    \"cornetto_synset_id\": \"n_a-502180\",\n    \"wordnet_id\": \"a-00104051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ambitieus\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eeuwenlang\": {\n    \"form\": \"eeuwenlang\",\n    \"cornetto_id\": \"r_a-10488\",\n    \"cornetto_synset_id\": \"n_a-508061\",\n    \"wordnet_id\": \"a-02057226\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedurende honderden jaren\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eeuwenoud\": {\n    \"form\": \"eeuwenoud\",\n    \"cornetto_id\": \"r_a-10489\",\n    \"cornetto_synset_id\": \"n_a-508062\",\n    \"wordnet_id\": \"a-00353431\",\n    \"pos\": \"JJ\",\n    \"sense\": \"honderden jaren oud\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eeuwig\": {\n    \"form\": \"eeuwig\",\n    \"cornetto_id\": \"r_a-10384\",\n    \"cornetto_synset_id\": \"n_a-508064\",\n    \"wordnet_id\": \"a-00595299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"altijddurend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"effectief\": {\n    \"form\": \"effectief\",\n    \"cornetto_id\": \"r_a-10597\",\n    \"cornetto_synset_id\": \"d_a-9613\",\n    \"wordnet_id\": \"a-01932973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"werkelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"efficiënt\": {\n    \"form\": \"efficiënt\",\n    \"cornetto_id\": \"r_a-10389\",\n    \"cornetto_synset_id\": \"n_a-508079\",\n    \"wordnet_id\": \"a-00050641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doelmatig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"egocentrisch\": {\n    \"form\": \"egocentrisch\",\n    \"cornetto_id\": \"r_a-10392\",\n    \"cornetto_synset_id\": \"n_a-508087\",\n    \"wordnet_id\": \"a-00101800\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op zichzelf gericht\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"egoïstisch\": {\n    \"form\": \"egoïstisch\",\n    \"cornetto_id\": \"r_a-10393\",\n    \"cornetto_synset_id\": \"d_a-9625\",\n    \"wordnet_id\": \"a-00101800\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelfzuchtig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigen\": {\n    \"form\": \"eigen\",\n    \"cornetto_id\": \"r_a-10395\",\n    \"cornetto_synset_id\": \"n_a-508105\",\n    \"wordnet_id\": \"a-00356926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kenmerkend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigenaardig\": {\n    \"form\": \"eigenaardig\",\n    \"cornetto_id\": \"r_a-10396\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"merkwaardig, vreemd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigenlijk\": {\n    \"form\": \"eigenlijk\",\n    \"cornetto_id\": \"r_a-10399\",\n    \"cornetto_synset_id\": \"d_a-9613\",\n    \"wordnet_id\": \"a-01932973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feitelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigentijds\": {\n    \"form\": \"eigentijds\",\n    \"cornetto_id\": \"r_a-10401\",\n    \"cornetto_synset_id\": \"n_a-512180\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"passend bij deze tijd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigenwijs\": {\n    \"form\": \"eigenwijs\",\n    \"cornetto_id\": \"r_a-10403\",\n    \"cornetto_synset_id\": \"n_a-508126\",\n    \"wordnet_id\": \"a-00204779\",\n    \"pos\": \"JJ\",\n    \"sense\": \"parmantig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"eigenzinnig\": {\n    \"form\": \"eigenzinnig\",\n    \"cornetto_id\": \"r_a-10404\",\n    \"cornetto_synset_id\": \"n_a-508125\",\n    \"wordnet_id\": \"a-00156440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koppig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"eindeloos\": {\n    \"form\": \"eindeloos\",\n    \"cornetto_id\": \"r_a-10407\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heerlijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"eivol\": {\n    \"form\": \"eivol\",\n    \"cornetto_id\": \"r_a-10554\",\n    \"cornetto_synset_id\": \"n_a-524566\",\n    \"wordnet_id\": \"a-00537339\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal vol\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elastieken\": {\n    \"form\": \"elastieken\",\n    \"cornetto_id\": \"r_a-10408\",\n    \"cornetto_synset_id\": \"n_a-508191\",\n    \"wordnet_id\": \"a-00843146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van elastiek\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"electoraal\": {\n    \"form\": \"electoraal\",\n    \"cornetto_id\": \"r_a-10493\",\n    \"cornetto_synset_id\": \"n_a-508194\",\n    \"wordnet_id\": \"a-00846219\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. verkiezingen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elegant\": {\n    \"form\": \"elegant\",\n    \"cornetto_id\": \"r_a-10410\",\n    \"cornetto_synset_id\": \"n_a-527670\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bevallig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elektronisch\": {\n    \"form\": \"elektronisch\",\n    \"cornetto_id\": \"r_a-10412\",\n    \"cornetto_synset_id\": \"n_a-508219\",\n    \"wordnet_id\": \"a-02718497\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met elektrische apparaten\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elementair\": {\n    \"form\": \"elementair\",\n    \"cornetto_id\": \"r_a-10414\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fundamenteel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ellendig\": {\n    \"form\": \"ellendig\",\n    \"cornetto_id\": \"r_a-10417\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat ellende veroorzaakt\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ellenlang\": {\n    \"form\": \"ellenlang\",\n    \"cornetto_id\": \"r_a-10418\",\n    \"cornetto_synset_id\": \"n_a-508243\",\n    \"wordnet_id\": \"a-00549236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel erg lang\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"embryonaal\": {\n    \"form\": \"embryonaal\",\n    \"cornetto_id\": \"r_a-10499\",\n    \"cornetto_synset_id\": \"n_a-508264\",\n    \"wordnet_id\": \"a-00818581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als embryo\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"emotieloos\": {\n    \"form\": \"emotieloos\",\n    \"cornetto_id\": \"r_a-10559\",\n    \"cornetto_synset_id\": \"n_a-521187\",\n    \"wordnet_id\": \"a-00857560\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder emotie\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"emotioneel\": {\n    \"form\": \"emotioneel\",\n    \"cornetto_id\": \"r_a-10619\",\n    \"cornetto_synset_id\": \"n_a-508280\",\n    \"wordnet_id\": \"a-00853776\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. emoties\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"empirisch\": {\n    \"form\": \"empirisch\",\n    \"cornetto_id\": \"r_a-10421\",\n    \"cornetto_synset_id\": \"n_a-524456\",\n    \"wordnet_id\": \"a-00858917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"proefondervindelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"encyclopedisch\": {\n    \"form\": \"encyclopedisch\",\n    \"cornetto_id\": \"r_a-10500\",\n    \"cornetto_synset_id\": \"n_a-508292\",\n    \"wordnet_id\": \"a-00527744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (in, van) een encyclopedie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"energiek\": {\n    \"form\": \"energiek\",\n    \"cornetto_id\": \"r_a-10422\",\n    \"cornetto_synset_id\": \"n_a-508310\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"krachtig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"energiezuinig\": {\n    \"form\": \"energiezuinig\",\n    \"cornetto_id\": \"r_a-10502\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weinig energie gebruikend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enerverend\": {\n    \"form\": \"enerverend\",\n    \"cornetto_id\": \"r_a-10423\",\n    \"cornetto_synset_id\": \"n_a-522082\",\n    \"wordnet_id\": \"a-02132080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spannend en vermoeiend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eng\": {\n    \"form\": \"eng\",\n    \"cornetto_id\": \"r_a-10425\",\n    \"cornetto_synset_id\": \"d_a-9417\",\n    \"wordnet_id\": \"a-02561888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauw\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"enig\": {\n    \"form\": \"enig\",\n    \"cornetto_id\": \"r_a-10428\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel erg leuk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"enigst\": {\n    \"form\": \"enigst\",\n    \"cornetto_id\": \"r_a-10429\",\n    \"cornetto_synset_id\": \"d_a-9559\",\n    \"wordnet_id\": \"a-00504592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uniek\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"enkel\": {\n    \"form\": \"enkel\",\n    \"cornetto_id\": \"r_a-10430\",\n    \"cornetto_synset_id\": \"n_a-508343\",\n    \"wordnet_id\": \"a-01313649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet dubbel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"enorm\": {\n    \"form\": \"enorm\",\n    \"cornetto_id\": \"r_a-10505\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"enthousiast\": {\n    \"form\": \"enthousiast\",\n    \"cornetto_id\": \"r_a-10431\",\n    \"cornetto_synset_id\": \"d_a-9262\",\n    \"wordnet_id\": \"a-00885695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geestdriftig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"epidemisch\": {\n    \"form\": \"epidemisch\",\n    \"cornetto_id\": \"r_a-10566\",\n    \"cornetto_synset_id\": \"n_a-508392\",\n    \"wordnet_id\": \"a-01426375\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een epidemie\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"episch\": {\n    \"form\": \"episch\",\n    \"cornetto_id\": \"r_a-10506\",\n    \"cornetto_synset_id\": \"n_a-508404\",\n    \"wordnet_id\": \"a-03015589\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. verhalende poëzie\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"equivalent\": {\n    \"form\": \"equivalent\",\n    \"cornetto_id\": \"r_a-10507\",\n    \"cornetto_synset_id\": \"d_a-9294\",\n    \"wordnet_id\": \"a-00051373\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gelijkwaardig\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"erbarmelijk\": {\n    \"form\": \"erbarmelijk\",\n    \"cornetto_id\": \"r_a-10432\",\n    \"cornetto_synset_id\": \"n_a-508417\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ellendig, meelijwekkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"erg\": {\n    \"form\": \"erg\",\n    \"cornetto_id\": \"r_a-10435\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzettend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ergerlijk\": {\n    \"form\": \"ergerlijk\",\n    \"cornetto_id\": \"r_a-10436\",\n    \"cornetto_synset_id\": \"n_a-508461\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"irritant\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ergerniswekkend\": {\n    \"form\": \"ergerniswekkend\",\n    \"cornetto_id\": \"r_a-10509\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"irritant\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"ergonomisch\": {\n    \"form\": \"ergonomisch\",\n    \"cornetto_id\": \"r_a-10510\",\n    \"cornetto_synset_id\": \"n_a-508465\",\n    \"wordnet_id\": \"a-02721877\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de ergonomie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"erkend\": {\n    \"form\": \"erkend\",\n    \"cornetto_id\": \"r_a-10437\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"officieel bevoegd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ernstig\": {\n    \"form\": \"ernstig\",\n    \"cornetto_id\": \"r_a-10441\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingrijpend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"erotisch\": {\n    \"form\": \"erotisch\",\n    \"cornetto_id\": \"r_a-10442\",\n    \"cornetto_synset_id\": \"d_a-9264\",\n    \"wordnet_id\": \"a-02132080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"seksueel prikkelend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"erudiet\": {\n    \"form\": \"erudiet\",\n    \"cornetto_id\": \"r_a-10443\",\n    \"cornetto_synset_id\": \"n_a-510118\",\n    \"wordnet_id\": \"a-02084358\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontwikkeld\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ervaren\": {\n    \"form\": \"ervaren\",\n    \"cornetto_id\": \"r_a-10444\",\n    \"cornetto_synset_id\": \"n_a-508489\",\n    \"wordnet_id\": \"a-00935500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geroutineerd\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"escaleren\": {\n    \"form\": \"escaleren\",\n    \"cornetto_id\": \"r_v-2658\",\n    \"cornetto_synset_id\": \"d_v-2471\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"essentieel\": {\n    \"form\": \"essentieel\",\n    \"cornetto_id\": \"r_a-10445\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de essentie vormend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"esthetisch\": {\n    \"form\": \"esthetisch\",\n    \"cornetto_id\": \"r_a-10446\",\n    \"cornetto_synset_id\": \"n_a-508512\",\n    \"wordnet_id\": \"a-00069531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. schoonheid\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ethisch\": {\n    \"form\": \"ethisch\",\n    \"cornetto_id\": \"r_a-10447\",\n    \"cornetto_synset_id\": \"n_a-535368\",\n    \"wordnet_id\": \"a-00905386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moreel\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"etnisch\": {\n    \"form\": \"etnisch\",\n    \"cornetto_id\": \"r_a-10448\",\n    \"cornetto_synset_id\": \"n_a-525084\",\n    \"wordnet_id\": \"a-03064883\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volkenkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"etymologisch\": {\n    \"form\": \"etymologisch\",\n    \"cornetto_id\": \"r_a-10512\",\n    \"cornetto_synset_id\": \"n_a-508550\",\n    \"wordnet_id\": \"a-03022003\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de woordafleiding\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"evangelisch\": {\n    \"form\": \"evangelisch\",\n    \"cornetto_id\": \"r_a-10608\",\n    \"cornetto_synset_id\": \"n_a-508575\",\n    \"wordnet_id\": \"a-00886681\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. tot richting in Hervormde Kerk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"eventueel\": {\n    \"form\": \"eventueel\",\n    \"cornetto_id\": \"r_a-10452\",\n    \"cornetto_synset_id\": \"n_a-508594\",\n    \"wordnet_id\": \"a-00341933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mogelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"evenwichtig\": {\n    \"form\": \"evenwichtig\",\n    \"cornetto_id\": \"r_a-10453\",\n    \"cornetto_synset_id\": \"n_a-510161\",\n    \"wordnet_id\": \"a-01134486\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stabiel\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"evenwijdig\": {\n    \"form\": \"evenwijdig\",\n    \"cornetto_id\": \"r_a-10454\",\n    \"cornetto_synset_id\": \"d_a-9265\",\n    \"wordnet_id\": \"a-01718158\",\n    \"pos\": \"JJ\",\n    \"sense\": \"parallel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"evident\": {\n    \"form\": \"evident\",\n    \"cornetto_id\": \"r_a-10455\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volkomen duidelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"evolutionair\": {\n    \"form\": \"evolutionair\",\n    \"cornetto_id\": \"r_a-10516\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. evolutie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exact\": {\n    \"form\": \"exact\",\n    \"cornetto_id\": \"r_a-10456\",\n    \"cornetto_synset_id\": \"n_a-524178\",\n    \"wordnet_id\": \"a-00540236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwkeurig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"exceptioneel\": {\n    \"form\": \"exceptioneel\",\n    \"cornetto_id\": \"r_a-10459\",\n    \"cornetto_synset_id\": \"n_a-531811\",\n    \"wordnet_id\": \"a-00487653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitzonderlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"excessief\": {\n    \"form\": \"excessief\",\n    \"cornetto_id\": \"r_a-10519\",\n    \"cornetto_synset_id\": \"n_a-522385\",\n    \"wordnet_id\": \"a-00880586\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitensporig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"exemplarisch\": {\n    \"form\": \"exemplarisch\",\n    \"cornetto_id\": \"r_a-10462\",\n    \"cornetto_synset_id\": \"n_a-508641\",\n    \"wordnet_id\": \"a-02585545\",\n    \"pos\": \"JJ\",\n    \"sense\": \"typisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exhibitionistisch\": {\n    \"form\": \"exhibitionistisch\",\n    \"cornetto_id\": \"r_a-10574\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) van een exhibitionist\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"existentieel\": {\n    \"form\": \"existentieel\",\n    \"cornetto_id\": \"r_a-10520\",\n    \"cornetto_synset_id\": \"n_a-508645\",\n    \"wordnet_id\": \"a-00859632\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. existentie\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exorbitant\": {\n    \"form\": \"exorbitant\",\n    \"cornetto_id\": \"r_a-10463\",\n    \"cornetto_synset_id\": \"n_a-522385\",\n    \"wordnet_id\": \"a-00880586\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitensporig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"exotisch\": {\n    \"form\": \"exotisch\",\n    \"cornetto_id\": \"r_a-10464\",\n    \"cornetto_synset_id\": \"n_a-531732\",\n    \"wordnet_id\": \"a-00608791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) uit verre, vreemde landen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"experimenteel\": {\n    \"form\": \"experimenteel\",\n    \"cornetto_id\": \"r_a-10465\",\n    \"cornetto_synset_id\": \"n_a-524456\",\n    \"wordnet_id\": \"a-00858917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. experimenten\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"expliciet\": {\n    \"form\": \"expliciet\",\n    \"cornetto_id\": \"r_a-10466\",\n    \"cornetto_synset_id\": \"n_a-519610\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met zoveel woorden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"explosief\": {\n    \"form\": \"explosief\",\n    \"cornetto_id\": \"r_a-10467\",\n    \"cornetto_synset_id\": \"d_a-9461\",\n    \"wordnet_id\": \"a-01144009\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontplofbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"expressief\": {\n    \"form\": \"expressief\",\n    \"cornetto_id\": \"r_a-10468\",\n    \"cornetto_synset_id\": \"n_a-508691\",\n    \"wordnet_id\": \"a-00497148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel expressie\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"expressionistisch\": {\n    \"form\": \"expressionistisch\",\n    \"cornetto_id\": \"r_a-10523\",\n    \"cornetto_synset_id\": \"n_a-508694\",\n    \"wordnet_id\": \"a-02835145\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het expressionisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"exquis\": {\n    \"form\": \"exquis\",\n    \"cornetto_id\": \"r_a-10469\",\n    \"cornetto_synset_id\": \"n_a-531698\",\n    \"wordnet_id\": \"a-02123579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortreffelijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extatisch\": {\n    \"form\": \"extatisch\",\n    \"cornetto_id\": \"r_a-10524\",\n    \"cornetto_synset_id\": \"n_a-508699\",\n    \"wordnet_id\": \"a-00908929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) in extase\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extra\": {\n    \"form\": \"extra\",\n    \"cornetto_id\": \"r_a-10471\",\n    \"cornetto_synset_id\": \"d_a-9187\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meer dan normaal\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"extreem\": {\n    \"form\": \"extreem\",\n    \"cornetto_id\": \"r_a-10474\",\n    \"cornetto_synset_id\": \"n_a-508718\",\n    \"wordnet_id\": \"a-00442361\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitzonderlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"extreem-links\": {\n    \"form\": \"extreem-links\",\n    \"cornetto_id\": \"r_a-10527\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst links\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"extreem-nationalistisch\": {\n    \"form\": \"extreem-nationalistisch\",\n    \"cornetto_id\": \"r_a-10528\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst nationalistisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extreem-rechts\": {\n    \"form\": \"extreem-rechts\",\n    \"cornetto_id\": \"r_a-10529\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst rechts\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extremistisch\": {\n    \"form\": \"extremistisch\",\n    \"cornetto_id\": \"r_a-10530\",\n    \"cornetto_synset_id\": \"n_a-508719\",\n    \"wordnet_id\": \"a-01535270\",\n    \"pos\": \"JJ\",\n    \"sense\": \"neigend naar extremisme\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"exuberant\": {\n    \"form\": \"exuberant\",\n    \"cornetto_id\": \"r_a-10531\",\n    \"cornetto_synset_id\": \"n_a-522302\",\n    \"wordnet_id\": \"a-00015247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdadig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fabelachtig\": {\n    \"form\": \"fabelachtig\",\n    \"cornetto_id\": \"r_a-10771\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in fabels\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.9\"\n  },\n  \"fabuleus\": {\n    \"form\": \"fabuleus\",\n    \"cornetto_id\": \"r_a-10623\",\n    \"cornetto_synset_id\": \"n_a-521086\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwaarschijnlijk veel, mooi etc.\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"fail\": {\n    \"form\": \"fail\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"FW\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"failliet\": {\n    \"form\": \"failliet\",\n    \"cornetto_id\": \"r_a-10626\",\n    \"cornetto_synset_id\": \"d_a-9266\",\n    \"wordnet_id\": \"a-02023287\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bankroet\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fair\": {\n    \"form\": \"fair\",\n    \"cornetto_id\": \"r_a-10627\",\n    \"cornetto_synset_id\": \"n_a-508775\",\n    \"wordnet_id\": \"a-00956131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerlijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"faliekant\": {\n    \"form\": \"faliekant\",\n    \"cornetto_id\": \"r_a-10773\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal verkeerd\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"fameus\": {\n    \"form\": \"fameus\",\n    \"cornetto_id\": \"r_a-10629\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermaard\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"familiaal\": {\n    \"form\": \"familiaal\",\n    \"cornetto_id\": \"r_a-10630\",\n    \"cornetto_synset_id\": \"n_a-508789\",\n    \"wordnet_id\": \"a-01314537\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het gezin\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fanatiek\": {\n    \"form\": \"fanatiek\",\n    \"cornetto_id\": \"r_a-10634\",\n    \"cornetto_synset_id\": \"n_a-508813\",\n    \"wordnet_id\": \"a-01725712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bezeten\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fantasierijk\": {\n    \"form\": \"fantasierijk\",\n    \"cornetto_id\": \"r_a-10636\",\n    \"cornetto_synset_id\": \"n_a-506150\",\n    \"wordnet_id\": \"a-00643863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel fantasie\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fantasievol\": {\n    \"form\": \"fantasievol\",\n    \"cornetto_id\": \"d_a-406725\",\n    \"cornetto_synset_id\": \"n_a-506150\",\n    \"wordnet_id\": \"a-00643863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fantastisch\": {\n    \"form\": \"fantastisch\",\n    \"cornetto_id\": \"r_a-10638\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verzonnen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fascinerend\": {\n    \"form\": \"fascinerend\",\n    \"cornetto_id\": \"r_a-10640\",\n    \"cornetto_synset_id\": \"n_a-508834\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boeiend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"fascistisch\": {\n    \"form\": \"fascistisch\",\n    \"cornetto_id\": \"r_a-10641\",\n    \"cornetto_synset_id\": \"n_a-508835\",\n    \"wordnet_id\": \"a-02920769\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het fascisme\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fataal\": {\n    \"form\": \"fataal\",\n    \"cornetto_id\": \"r_a-10643\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"noodlottig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"fatsoenlijk\": {\n    \"form\": \"fatsoenlijk\",\n    \"cornetto_id\": \"r_a-10646\",\n    \"cornetto_synset_id\": \"n_a-525317\",\n    \"wordnet_id\": \"a-01123879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoorlijk, redelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fatterig\": {\n    \"form\": \"fatterig\",\n    \"cornetto_id\": \"r_a-10647\",\n    \"cornetto_synset_id\": \"n_a-508846\",\n    \"wordnet_id\": \"a-00849912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dandy-achtig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"favoriet\": {\n    \"form\": \"favoriet\",\n    \"cornetto_id\": \"r_a-10784\",\n    \"cornetto_synset_id\": \"n_a-508852\",\n    \"wordnet_id\": \"a-01935935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als winnaar getipt\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"feest\": {\n    \"form\": \"feest\",\n    \"cornetto_id\": \"r_n-13097\",\n    \"cornetto_synset_id\": \"d_n-27968\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"feestelijk\": {\n    \"form\": \"feestelijk\",\n    \"cornetto_id\": \"r_a-10652\",\n    \"cornetto_synset_id\": \"d_a-9269\",\n    \"wordnet_id\": \"a-01367431\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een feest\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"feeëriek\": {\n    \"form\": \"feeëriek\",\n    \"cornetto_id\": \"r_a-10651\",\n    \"cornetto_synset_id\": \"n_a-528807\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sprookjesachtig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"feilloos\": {\n    \"form\": \"feilloos\",\n    \"cornetto_id\": \"r_a-10653\",\n    \"cornetto_synset_id\": \"n_a-509317\",\n    \"wordnet_id\": \"a-00247247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder een enkele fout\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"feitelijk\": {\n    \"form\": \"feitelijk\",\n    \"cornetto_id\": \"r_a-10654\",\n    \"cornetto_synset_id\": \"d_a-9613\",\n    \"wordnet_id\": \"a-01932973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eigenlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fel\": {\n    \"form\": \"fel\",\n    \"cornetto_id\": \"r_a-10657\",\n    \"cornetto_synset_id\": \"n_a-508890\",\n    \"wordnet_id\": \"a-01803792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hel\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"felbegeerd\": {\n    \"form\": \"felbegeerd\",\n    \"cornetto_id\": \"r_a-10658\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vurig begeerd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fenomenaal\": {\n    \"form\": \"fenomenaal\",\n    \"cornetto_id\": \"r_a-10662\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitengewoon\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"ferm\": {\n    \"form\": \"ferm\",\n    \"cornetto_id\": \"r_a-10664\",\n    \"cornetto_synset_id\": \"n_a-516007\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flink\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fervent\": {\n    \"form\": \"fervent\",\n    \"cornetto_id\": \"r_a-10665\",\n    \"cornetto_synset_id\": \"n_a-522411\",\n    \"wordnet_id\": \"a-00347571\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vurig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fiasco\": {\n    \"form\": \"fiasco\",\n    \"cornetto_id\": \"r_n-13160\",\n    \"cornetto_synset_id\": \"d_n-40754\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fictief\": {\n    \"form\": \"fictief\",\n    \"cornetto_id\": \"r_a-10666\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verzonnen, niet echt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fictioneel\": {\n    \"form\": \"fictioneel\",\n    \"cornetto_id\": \"d_a-80087\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"figuratief\": {\n    \"form\": \"figuratief\",\n    \"cornetto_id\": \"r_a-10669\",\n    \"cornetto_synset_id\": \"n_a-503317\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet abstract\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"figuurlijk\": {\n    \"form\": \"figuurlijk\",\n    \"cornetto_id\": \"r_a-10670\",\n    \"cornetto_synset_id\": \"n_a-508972\",\n    \"wordnet_id\": \"a-01419784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet letterlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fijn\": {\n    \"form\": \"fijn\",\n    \"cornetto_id\": \"r_a-10672\",\n    \"cornetto_synset_id\": \"c_567\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet grof\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"fijnbesnaard\": {\n    \"form\": \"fijnbesnaard\",\n    \"cornetto_id\": \"r_a-10674\",\n    \"cornetto_synset_id\": \"n_a-508997\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fijngevoelig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fijnzinnig\": {\n    \"form\": \"fijnzinnig\",\n    \"cornetto_id\": \"r_a-10678\",\n    \"cornetto_synset_id\": \"n_a-508997\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"subtiel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fiks\": {\n    \"form\": \"fiks\",\n    \"cornetto_id\": \"r_a-10679\",\n    \"cornetto_synset_id\": \"n_r-509139\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flink\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"filantropisch\": {\n    \"form\": \"filantropisch\",\n    \"cornetto_id\": \"r_a-10680\",\n    \"cornetto_synset_id\": \"n_a-517266\",\n    \"wordnet_id\": \"a-00223802\",\n    \"pos\": \"JJ\",\n    \"sense\": \"menslievend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"filmisch\": {\n    \"form\": \"filmisch\",\n    \"cornetto_id\": \"r_a-10682\",\n    \"cornetto_synset_id\": \"n_a-509028\",\n    \"wordnet_id\": \"a-02696795\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) in de film\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"filosofisch\": {\n    \"form\": \"filosofisch\",\n    \"cornetto_id\": \"r_a-10684\",\n    \"cornetto_synset_id\": \"n_a-534873\",\n    \"wordnet_id\": \"a-02858231\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wijsgerig\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"finaal\": {\n    \"form\": \"finaal\",\n    \"cornetto_id\": \"r_a-10685\",\n    \"cornetto_synset_id\": \"n_a-531661\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiteindelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"financieel\": {\n    \"form\": \"financieel\",\n    \"cornetto_id\": \"r_a-10686\",\n    \"cornetto_synset_id\": \"n_a-509056\",\n    \"wordnet_id\": \"a-02775934\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met betrekking tot geld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fit\": {\n    \"form\": \"fit\",\n    \"cornetto_id\": \"r_a-10688\",\n    \"cornetto_synset_id\": \"c_709\",\n    \"wordnet_id\": \"a-01017161\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in goede conditie\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flagrant\": {\n    \"form\": \"flagrant\",\n    \"cornetto_id\": \"r_a-10689\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overduidelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"flamboyant\": {\n    \"form\": \"flamboyant\",\n    \"cornetto_id\": \"r_a-10788\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zwierig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flauw\": {\n    \"form\": \"flauw\",\n    \"cornetto_id\": \"r_a-10695\",\n    \"cornetto_synset_id\": \"c_534\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet grappig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fleurig\": {\n    \"form\": \"fleurig\",\n    \"cornetto_id\": \"r_a-10699\",\n    \"cornetto_synset_id\": \"n_a-509078\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrolijk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flink\": {\n    \"form\": \"flink\",\n    \"cornetto_id\": \"r_a-10702\",\n    \"cornetto_synset_id\": \"n_a-516007\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moedig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"flinkgebouwd\": {\n    \"form\": \"flinkgebouwd\",\n    \"cornetto_id\": \"r_a-10703\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"forsgebouwd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"flinterdun\": {\n    \"form\": \"flinterdun\",\n    \"cornetto_id\": \"r_a-10704\",\n    \"cornetto_synset_id\": \"n_a-509141\",\n    \"wordnet_id\": \"a-02413390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel dun\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"flitsend\": {\n    \"form\": \"flitsend\",\n    \"cornetto_id\": \"r_a-16577\",\n    \"cornetto_synset_id\": \"n_a-534732\",\n    \"wordnet_id\": \"a-00921369\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flop\": {\n    \"form\": \"flop\",\n    \"cornetto_id\": \"r_n-13393\",\n    \"cornetto_synset_id\": \"d_n-40754\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"florissant\": {\n    \"form\": \"florissant\",\n    \"cornetto_id\": \"r_a-10706\",\n    \"cornetto_synset_id\": \"n_a-504403\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bloeiend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"fluks\": {\n    \"form\": \"fluks\",\n    \"cornetto_id\": \"d_a-406758\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flut\": {\n    \"form\": \"flut\",\n    \"cornetto_id\": \"r_a-10708\",\n    \"cornetto_synset_id\": \"n_a-534085\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waardeloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fnuikend\": {\n    \"form\": \"fnuikend\",\n    \"cornetto_id\": \"r_a-10711\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"funest\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"forfaitair\": {\n    \"form\": \"forfaitair\",\n    \"cornetto_id\": \"r_a-10717\",\n    \"cornetto_synset_id\": \"n_a-509244\",\n    \"wordnet_id\": \"a-02476338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vooraf vastgesteld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"formeel\": {\n    \"form\": \"formeel\",\n    \"cornetto_id\": \"r_a-10789\",\n    \"cornetto_synset_id\": \"n_a-509253\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"officieel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"formidabel\": {\n    \"form\": \"formidabel\",\n    \"cornetto_id\": \"r_a-10721\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"fors\": {\n    \"form\": \"fors\",\n    \"cornetto_id\": \"r_a-10722\",\n    \"cornetto_synset_id\": \"d_a-9321\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flink\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"forsgebouwd\": {\n    \"form\": \"forsgebouwd\",\n    \"cornetto_id\": \"r_a-10723\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flinkgebouwd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortuinlijk\": {\n    \"form\": \"fortuinlijk\",\n    \"cornetto_id\": \"r_a-10724\",\n    \"cornetto_synset_id\": \"d_a-9296\",\n    \"wordnet_id\": \"a-01048406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorspoedig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"fout\": {\n    \"form\": \"fout\",\n    \"cornetto_id\": \"r_a-10730\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onjuist\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"foutief\": {\n    \"form\": \"foutief\",\n    \"cornetto_id\": \"r_a-10731\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verkeerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fraai\": {\n    \"form\": \"fraai\",\n    \"cornetto_id\": \"r_a-10733\",\n    \"cornetto_synset_id\": \"c_178\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mooi\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fragmentarisch\": {\n    \"form\": \"fragmentarisch\",\n    \"cornetto_id\": \"r_a-10735\",\n    \"cornetto_synset_id\": \"n_a-509329\",\n    \"wordnet_id\": \"a-02481012\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit brokstukken bestaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"frank\": {\n    \"form\": \"frank\",\n    \"cornetto_id\": \"r_a-10741\",\n    \"cornetto_synset_id\": \"d_a-9207\",\n    \"wordnet_id\": \"a-00155720\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrijpostig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frappant\": {\n    \"form\": \"frappant\",\n    \"cornetto_id\": \"r_a-10745\",\n    \"cornetto_synset_id\": \"n_a-522067\",\n    \"wordnet_id\": \"a-00579498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treffend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frauduleus\": {\n    \"form\": \"frauduleus\",\n    \"cornetto_id\": \"r_a-10746\",\n    \"cornetto_synset_id\": \"n_a-509359\",\n    \"wordnet_id\": \"a-01223941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedrieglijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"frequent\": {\n    \"form\": \"frequent\",\n    \"cornetto_id\": \"r_a-10750\",\n    \"cornetto_synset_id\": \"n_r-531906\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelvuldig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"fris\": {\n    \"form\": \"fris\",\n    \"cornetto_id\": \"r_a-10755\",\n    \"cornetto_synset_id\": \"d_a-9518\",\n    \"wordnet_id\": \"a-00417413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schoon\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fruitig\": {\n    \"form\": \"fruitig\",\n    \"cornetto_id\": \"r_a-10758\",\n    \"cornetto_synset_id\": \"n_a-509411\",\n    \"wordnet_id\": \"a-02074929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een fruitsmaak\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frustratie\": {\n    \"form\": \"frustratie\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"functioneel\": {\n    \"form\": \"functioneel\",\n    \"cornetto_id\": \"r_a-10792\",\n    \"cornetto_synset_id\": \"n_a-509439\",\n    \"wordnet_id\": \"a-01090308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de functie(s)\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fundamentalistisch\": {\n    \"form\": \"fundamentalistisch\",\n    \"cornetto_id\": \"r_a-10761\",\n    \"cornetto_synset_id\": \"n_a-509440\",\n    \"wordnet_id\": \"a-02953235\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. fundamentalisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fundamenteel\": {\n    \"form\": \"fundamenteel\",\n    \"cornetto_id\": \"r_a-10762\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"essentieel\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"funest\": {\n    \"form\": \"funest\",\n    \"cornetto_id\": \"r_a-10763\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met fatale gevolgen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"furieus\": {\n    \"form\": \"furieus\",\n    \"cornetto_id\": \"r_a-10764\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"woedend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"futiel\": {\n    \"form\": \"futiel\",\n    \"cornetto_id\": \"r_a-10765\",\n    \"cornetto_synset_id\": \"c_373\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbelangrijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.8\"\n  },\n  \"futloos\": {\n    \"form\": \"futloos\",\n    \"cornetto_id\": \"r_a-10766\",\n    \"cornetto_synset_id\": \"d_a-9392\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slap\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"futuristisch\": {\n    \"form\": \"futuristisch\",\n    \"cornetto_id\": \"r_a-10767\",\n    \"cornetto_synset_id\": \"n_a-509452\",\n    \"wordnet_id\": \"a-02993094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als uit de toekomst afkomstig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fysiek\": {\n    \"form\": \"fysiek\",\n    \"cornetto_id\": \"r_a-10768\",\n    \"cornetto_synset_id\": \"d_a-9613\",\n    \"wordnet_id\": \"a-01932973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichamelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fysiologisch\": {\n    \"form\": \"fysiologisch\",\n    \"cornetto_id\": \"r_a-10769\",\n    \"cornetto_synset_id\": \"n_a-509465\",\n    \"wordnet_id\": \"a-01779558\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de fysiologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gaaf\": {\n    \"form\": \"gaaf\",\n    \"cornetto_id\": \"r_a-10794\",\n    \"cornetto_synset_id\": \"c_294\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg goed\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gaar\": {\n    \"form\": \"gaar\",\n    \"cornetto_id\": \"r_a-11497\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgeput\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gallisch\": {\n    \"form\": \"gallisch\",\n    \"cornetto_id\": \"r_a-10798\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kwaad\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gans\": {\n    \"form\": \"gans\",\n    \"cornetto_id\": \"r_a-10803\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"gastvrij\": {\n    \"form\": \"gastvrij\",\n    \"cornetto_id\": \"r_a-10804\",\n    \"cornetto_synset_id\": \"n_a-509628\",\n    \"wordnet_id\": \"a-01244106\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hartelijk voor gasten\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gay\": {\n    \"form\": \"gay\",\n    \"cornetto_id\": \"r_a-11209\",\n    \"cornetto_synset_id\": \"n_a-509638\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"homoseksueel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geacht\": {\n    \"form\": \"geacht\",\n    \"cornetto_id\": \"r_a-10805\",\n    \"cornetto_synset_id\": \"n_a-509670\",\n    \"wordnet_id\": \"a-01983432\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beleefde aanspreekvorm\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geavanceerd\": {\n    \"form\": \"geavanceerd\",\n    \"cornetto_id\": \"r_a-10809\",\n    \"cornetto_synset_id\": \"n_a-509686\",\n    \"wordnet_id\": \"a-01208571\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vooruitstrevend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gebeten\": {\n    \"form\": \"gebeten\",\n    \"cornetto_id\": \"r_a-10814\",\n    \"cornetto_synset_id\": \"n_a-509702\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbitterd\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geboren\": {\n    \"form\": \"geboren\",\n    \"cornetto_id\": \"r_a-10817\",\n    \"cornetto_synset_id\": \"d_a-9280\",\n    \"wordnet_id\": \"a-00074346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ter wereld gebracht of ontstaan\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geborgen\": {\n    \"form\": \"geborgen\",\n    \"cornetto_id\": \"r_a-10818\",\n    \"cornetto_synset_id\": \"d_a-9281\",\n    \"wordnet_id\": \"a-00066933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veilig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gebronsd\": {\n    \"form\": \"gebronsd\",\n    \"cornetto_id\": \"r_a-11392\",\n    \"cornetto_synset_id\": \"n_a-509767\",\n    \"wordnet_id\": \"a-00244958\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bronskleurig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gebruikelijk\": {\n    \"form\": \"gebruikelijk\",\n    \"cornetto_id\": \"r_a-10824\",\n    \"cornetto_synset_id\": \"n_a-510863\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gangbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gebruikersvriendelijk\": {\n    \"form\": \"gebruikersvriendelijk\",\n    \"cornetto_id\": \"r_a-11393\",\n    \"cornetto_synset_id\": \"n_a-509764\",\n    \"wordnet_id\": \"a-00019731\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegemoetkomend aan gebruiker\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gecharmeerd\": {\n    \"form\": \"gecharmeerd\",\n    \"cornetto_id\": \"r_a-10826\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingenomen met iets of iemand\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gecompliceerd\": {\n    \"form\": \"gecompliceerd\",\n    \"cornetto_id\": \"r_a-10828\",\n    \"cornetto_synset_id\": \"d_a-9348\",\n    \"wordnet_id\": \"a-02176178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingewikkeld\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gedachteloos\": {\n    \"form\": \"gedachteloos\",\n    \"cornetto_id\": \"r_a-10832\",\n    \"cornetto_synset_id\": \"n_a-509789\",\n    \"wordnet_id\": \"a-00312234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnadenkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gedateerd\": {\n    \"form\": \"gedateerd\",\n    \"cornetto_id\": \"r_a-11394\",\n    \"cornetto_synset_id\": \"n_a-532629\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verouderd\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gedeeltelijk\": {\n    \"form\": \"gedeeltelijk\",\n    \"cornetto_id\": \"r_a-10835\",\n    \"cornetto_synset_id\": \"n_r-509803\",\n    \"wordnet_id\": \"a-00524693\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet volledig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"1.0\"\n  },\n  \"gedegen\": {\n    \"form\": \"gedegen\",\n    \"cornetto_id\": \"r_a-10836\",\n    \"cornetto_synset_id\": \"n_a-511592\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed doordacht\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gedenkwaardig\": {\n    \"form\": \"gedenkwaardig\",\n    \"cornetto_id\": \"r_a-10841\",\n    \"cornetto_synset_id\": \"n_a-509822\",\n    \"wordnet_id\": \"a-01040752\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de moeite waard zijnde\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gedesillusioneerd\": {\n    \"form\": \"gedesillusioneerd\",\n    \"cornetto_id\": \"r_a-10842\",\n    \"cornetto_synset_id\": \"n_a-521435\",\n    \"wordnet_id\": \"a-00866392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontgoocheld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gedetailleerd\": {\n    \"form\": \"gedetailleerd\",\n    \"cornetto_id\": \"r_a-10844\",\n    \"cornetto_synset_id\": \"n_a-509831\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tot in de details\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gedoemd\": {\n    \"form\": \"gedoemd\",\n    \"cornetto_id\": \"r_a-10851\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorbeschikt voor iets slechts\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"geducht\": {\n    \"form\": \"geducht\",\n    \"cornetto_id\": \"r_a-10857\",\n    \"cornetto_synset_id\": \"n_a-510794\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrees of ontzag inboezemend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gedupeerd\": {\n    \"form\": \"gedupeerd\",\n    \"cornetto_id\": \"r_a-11235\",\n    \"cornetto_synset_id\": \"d_v-1153\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"benadeeld zijnde\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geel\": {\n    \"form\": \"geel\",\n    \"cornetto_id\": \"r_a-10864\",\n    \"cornetto_synset_id\": \"n_a-509864\",\n    \"wordnet_id\": \"a-00385756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleur hebbend van een eidooier\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geestdodend\": {\n    \"form\": \"geestdodend\",\n    \"cornetto_id\": \"r_a-10868\",\n    \"cornetto_synset_id\": \"n_a-509873\",\n    \"wordnet_id\": \"a-00800248\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afstompend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geestdriftig\": {\n    \"form\": \"geestdriftig\",\n    \"cornetto_id\": \"r_a-10869\",\n    \"cornetto_synset_id\": \"d_a-9262\",\n    \"wordnet_id\": \"a-00885695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol geestdrift\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geestelijk\": {\n    \"form\": \"geestelijk\",\n    \"cornetto_id\": \"r_a-10871\",\n    \"cornetto_synset_id\": \"d_a-9319\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betrekking hebbend op godsdienst\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geestig\": {\n    \"form\": \"geestig\",\n    \"cornetto_id\": \"r_a-10872\",\n    \"cornetto_synset_id\": \"d_a-9285\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"humoristisch\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geestverruimend\": {\n    \"form\": \"geestverruimend\",\n    \"cornetto_id\": \"r_a-10874\",\n    \"cornetto_synset_id\": \"n_a-503993\",\n    \"wordnet_id\": \"a-00086801\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de geest ruimer makend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geeuw\": {\n    \"form\": \"geeuw\",\n    \"cornetto_id\": \"r_n-14263\",\n    \"cornetto_synset_id\": \"d_n-22502\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gefingeerd\": {\n    \"form\": \"gefingeerd\",\n    \"cornetto_id\": \"r_a-10876\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verzonnen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geforceerd\": {\n    \"form\": \"geforceerd\",\n    \"cornetto_id\": \"r_a-10878\",\n    \"cornetto_synset_id\": \"n_a-521304\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet van harte gaand\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gefundeerd\": {\n    \"form\": \"gefundeerd\",\n    \"cornetto_id\": \"r_a-10881\",\n    \"cornetto_synset_id\": \"n_a-509929\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gegrond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gegoed\": {\n    \"form\": \"gegoed\",\n    \"cornetto_id\": \"r_a-10883\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel bezittingen en geld\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gegrond\": {\n    \"form\": \"gegrond\",\n    \"cornetto_id\": \"r_a-10886\",\n    \"cornetto_synset_id\": \"n_a-509929\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gefundeerd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gehaaid\": {\n    \"form\": \"gehaaid\",\n    \"cornetto_id\": \"r_a-10889\",\n    \"cornetto_synset_id\": \"n_a-510849\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewiekst\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gehaast\": {\n    \"form\": \"gehaast\",\n    \"cornetto_id\": \"r_a-10890\",\n    \"cornetto_synset_id\": \"n_a-511750\",\n    \"wordnet_id\": \"a-00086210\",\n    \"pos\": \"JJ\",\n    \"sense\": \"haastig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gehandicapt\": {\n    \"form\": \"gehandicapt\",\n    \"cornetto_id\": \"r_a-11516\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in een minder gunstige positie\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geheel\": {\n    \"form\": \"geheel\",\n    \"cornetto_id\": \"r_a-10894\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"compleet\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"geheim\": {\n    \"form\": \"geheim\",\n    \"cornetto_id\": \"r_a-10895\",\n    \"cornetto_synset_id\": \"d_a-9288\",\n    \"wordnet_id\": \"a-00028984\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verborgen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geheimzinnig\": {\n    \"form\": \"geheimzinnig\",\n    \"cornetto_id\": \"r_a-10896\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te verklaren\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gehoorzaam\": {\n    \"form\": \"gehoorzaam\",\n    \"cornetto_id\": \"r_a-10897\",\n    \"cornetto_synset_id\": \"d_a-9289\",\n    \"wordnet_id\": \"a-02564986\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doend wat iemand zegt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gehuwd\": {\n    \"form\": \"gehuwd\",\n    \"cornetto_id\": \"r_a-11244\",\n    \"cornetto_synset_id\": \"n_a-510710\",\n    \"wordnet_id\": \"a-01482140\",\n    \"pos\": \"JJ\",\n    \"sense\": \"getrouwd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geinig\": {\n    \"form\": \"geinig\",\n    \"cornetto_id\": \"r_a-10902\",\n    \"cornetto_synset_id\": \"n_a-511389\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grappig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gek\": {\n    \"form\": \"gek\",\n    \"cornetto_id\": \"r_a-10961\",\n    \"cornetto_synset_id\": \"n_a-509996\",\n    \"wordnet_id\": \"a-01464433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer gesteld op\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gekmakend\": {\n    \"form\": \"gekmakend\",\n    \"cornetto_id\": \"r_a-11254\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waar je gek van wordt\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geknipt\": {\n    \"form\": \"geknipt\",\n    \"cornetto_id\": \"r_a-11256\",\n    \"cornetto_synset_id\": \"n_a-510023\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geschikt\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gekrenkt\": {\n    \"form\": \"gekrenkt\",\n    \"cornetto_id\": \"r_a-11257\",\n    \"cornetto_synset_id\": \"n_a-503525\",\n    \"wordnet_id\": \"a-00116529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gekwetst\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gekunsteld\": {\n    \"form\": \"gekunsteld\",\n    \"cornetto_id\": \"r_a-10967\",\n    \"cornetto_synset_id\": \"n_a-510232\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemaakt\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gekwetst\": {\n    \"form\": \"gekwetst\",\n    \"cornetto_id\": \"r_a-11521\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boos of beledigd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelaten\": {\n    \"form\": \"gelaten\",\n    \"cornetto_id\": \"r_a-10969\",\n    \"cornetto_synset_id\": \"n_a-510073\",\n    \"wordnet_id\": \"a-00039592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijdzaam\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelauwerd\": {\n    \"form\": \"gelauwerd\",\n    \"cornetto_id\": \"r_a-11269\",\n    \"cornetto_synset_id\": \"d_v-3907\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met overwinningskrans\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geldig\": {\n    \"form\": \"geldig\",\n    \"cornetto_id\": \"r_a-10971\",\n    \"cornetto_synset_id\": \"n_a-510088\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruikbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geldverslindend\": {\n    \"form\": \"geldverslindend\",\n    \"cornetto_id\": \"r_a-11271\",\n    \"cornetto_synset_id\": \"n_a-510105\",\n    \"wordnet_id\": \"a-00933154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer of onevenredig veel geld eisend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geldverspilling\": {\n    \"form\": \"geldverspilling\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"geleidelijk\": {\n    \"form\": \"geleidelijk\",\n    \"cornetto_id\": \"r_a-10976\",\n    \"cornetto_synset_id\": \"n_a-510133\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in geordende, kalme opeenvolging\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geletterd\": {\n    \"form\": \"geletterd\",\n    \"cornetto_id\": \"r_a-10977\",\n    \"cornetto_synset_id\": \"n_a-503545\",\n    \"wordnet_id\": \"a-00830051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belezen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelezen\": {\n    \"form\": \"gelezen\",\n    \"cornetto_id\": \"r_a-11272\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veel lezers tellend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geliefd\": {\n    \"form\": \"geliefd\",\n    \"cornetto_id\": \"r_a-10978\",\n    \"cornetto_synset_id\": \"n_a-510141\",\n    \"wordnet_id\": \"a-01462324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dierbaar of favoriet\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"geliefde\": {\n    \"form\": \"geliefde\",\n    \"cornetto_id\": \"r_n-14469\",\n    \"cornetto_synset_id\": \"d_n-33758\",\n    \"wordnet_id\": \"n-09849598\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gelig\": {\n    \"form\": \"gelig\",\n    \"cornetto_id\": \"r_a-11274\",\n    \"cornetto_synset_id\": \"n_a-510144\",\n    \"wordnet_id\": \"a-00385756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enigszins vergeeld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelijk\": {\n    \"form\": \"gelijk\",\n    \"cornetto_id\": \"r_a-11527\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"effen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gelijkgestemd\": {\n    \"form\": \"gelijkgestemd\",\n    \"cornetto_id\": \"r_a-11275\",\n    \"cornetto_synset_id\": \"n_a-507997\",\n    \"wordnet_id\": \"a-00553478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met gelijke zienswijze\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelijkgezind\": {\n    \"form\": \"gelijkgezind\",\n    \"cornetto_id\": \"r_a-11276\",\n    \"cornetto_synset_id\": \"n_a-507997\",\n    \"wordnet_id\": \"a-00553478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dezelfde denkwijze toegedaan\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelijkluidend\": {\n    \"form\": \"gelijkluidend\",\n    \"cornetto_id\": \"r_a-10981\",\n    \"cornetto_synset_id\": \"n_a-510158\",\n    \"wordnet_id\": \"a-01543937\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gelijk van klank of inhoud\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelijkmatig\": {\n    \"form\": \"gelijkmatig\",\n    \"cornetto_id\": \"r_a-10982\",\n    \"cornetto_synset_id\": \"n_a-510160\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"steeds gelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelijknamig\": {\n    \"form\": \"gelijknamig\",\n    \"cornetto_id\": \"r_a-11277\",\n    \"cornetto_synset_id\": \"n_a-510166\",\n    \"wordnet_id\": \"a-01409581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dezelfde naam dragend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gelijksoortig\": {\n    \"form\": \"gelijksoortig\",\n    \"cornetto_id\": \"r_a-11278\",\n    \"cornetto_synset_id\": \"d_a-9292\",\n    \"wordnet_id\": \"a-01199751\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel van dezelfde hoedanigheid\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gelikt\": {\n    \"form\": \"gelikt\",\n    \"cornetto_id\": \"r_a-11528\",\n    \"cornetto_synset_id\": \"n_a-510182\",\n    \"wordnet_id\": \"a-00694773\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gladjanusachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"geloofwaardig\": {\n    \"form\": \"geloofwaardig\",\n    \"cornetto_id\": \"r_a-11280\",\n    \"cornetto_synset_id\": \"d_a-9295\",\n    \"wordnet_id\": \"a-00644839\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aannemelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gelovig\": {\n    \"form\": \"gelovig\",\n    \"cornetto_id\": \"r_a-10933\",\n    \"cornetto_synset_id\": \"d_a-9319\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"godsdienstig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geluidloos\": {\n    \"form\": \"geluidloos\",\n    \"cornetto_id\": \"r_a-11282\",\n    \"cornetto_synset_id\": \"n_a-529361\",\n    \"wordnet_id\": \"a-01919428\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder geluid voort te brengen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geluidsoverlast\": {\n    \"form\": \"geluidsoverlast\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gelukkig\": {\n    \"form\": \"gelukkig\",\n    \"cornetto_id\": \"r_a-10907\",\n    \"cornetto_synset_id\": \"d_a-9296\",\n    \"wordnet_id\": \"a-01048406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geluk brengend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gelukzalig\": {\n    \"form\": \"gelukzalig\",\n    \"cornetto_id\": \"r_a-10908\",\n    \"cornetto_synset_id\": \"n_a-510229\",\n    \"wordnet_id\": \"a-00670741\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst gelukkig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gemaakt\": {\n    \"form\": \"gemaakt\",\n    \"cornetto_id\": \"r_a-10909\",\n    \"cornetto_synset_id\": \"n_a-510232\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onecht\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gemakkelijk\": {\n    \"form\": \"gemakkelijk\",\n    \"cornetto_id\": \"r_a-11531\",\n    \"cornetto_synset_id\": \"c_392\",\n    \"wordnet_id\": \"a-00711831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flexibel\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gemakzuchtig\": {\n    \"form\": \"gemakzuchtig\",\n    \"cornetto_id\": \"r_a-10912\",\n    \"cornetto_synset_id\": \"n_a-517771\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inspanning schromend\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gemaskerd\": {\n    \"form\": \"gemaskerd\",\n    \"cornetto_id\": \"r_a-10913\",\n    \"cornetto_synset_id\": \"n_a-510242\",\n    \"wordnet_id\": \"a-01707230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een masker op\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gemeen\": {\n    \"form\": \"gemeen\",\n    \"cornetto_id\": \"r_a-11532\",\n    \"cornetto_synset_id\": \"n_a-521886\",\n    \"wordnet_id\": \"a-01861205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gemeenschappelijk\": {\n    \"form\": \"gemeenschappelijk\",\n    \"cornetto_id\": \"r_a-10918\",\n    \"cornetto_synset_id\": \"n_a-510254\",\n    \"wordnet_id\": \"a-00492677\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezamenlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gemeentelijk\": {\n    \"form\": \"gemeentelijk\",\n    \"cornetto_id\": \"r_a-10919\",\n    \"cornetto_synset_id\": \"n_a-510269\",\n    \"wordnet_id\": \"a-02696920\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een gemeente te maken hebbend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gemiddeld\": {\n    \"form\": \"gemiddeld\",\n    \"cornetto_id\": \"r_a-10925\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de gemiddelde waarde hebbend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gemotiveerd\": {\n    \"form\": \"gemotiveerd\",\n    \"cornetto_id\": \"r_a-11284\",\n    \"cornetto_synset_id\": \"n_a-510294\",\n    \"wordnet_id\": \"a-01558385\",\n    \"pos\": \"JJ\",\n    \"sense\": \"motivatie bezittend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"genaamd\": {\n    \"form\": \"genaamd\",\n    \"cornetto_id\": \"r_a-10954\",\n    \"cornetto_synset_id\": \"n_a-510301\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de genoemde naam dragend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"genadeloos\": {\n    \"form\": \"genadeloos\",\n    \"cornetto_id\": \"r_a-10955\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meedogenloos of onverbiddelijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"genealogisch\": {\n    \"form\": \"genealogisch\",\n    \"cornetto_id\": \"r_a-11285\",\n    \"cornetto_synset_id\": \"n_a-510309\",\n    \"wordnet_id\": \"a-03067329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geslachtkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geneeskundig\": {\n    \"form\": \"geneeskundig\",\n    \"cornetto_id\": \"r_a-10934\",\n    \"cornetto_synset_id\": \"n_a-510314\",\n    \"wordnet_id\": \"a-01166656\",\n    \"pos\": \"JJ\",\n    \"sense\": \"medisch\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"generaal\": {\n    \"form\": \"generaal\",\n    \"cornetto_id\": \"r_a-10938\",\n    \"cornetto_synset_id\": \"d_a-9152\",\n    \"wordnet_id\": \"a-00783840\",\n    \"pos\": \"JJ\",\n    \"sense\": \"algemeen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geniaal\": {\n    \"form\": \"geniaal\",\n    \"cornetto_id\": \"r_a-11535\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blijk gevend van genie\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"geniepig\": {\n    \"form\": \"geniepig\",\n    \"cornetto_id\": \"r_a-10942\",\n    \"cornetto_synset_id\": \"n_a-510339\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stiekem en een beetje gemeen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"genitaal\": {\n    \"form\": \"genitaal\",\n    \"cornetto_id\": \"r_a-11427\",\n    \"cornetto_synset_id\": \"n_a-510343\",\n    \"wordnet_id\": \"a-02881567\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betrekking hebbend op geslachtsdelen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"genoeglijk\": {\n    \"form\": \"genoeglijk\",\n    \"cornetto_id\": \"r_a-10943\",\n    \"cornetto_synset_id\": \"n_a-510897\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plezierig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"genoegzaam\": {\n    \"form\": \"genoegzaam\",\n    \"cornetto_id\": \"r_a-10944\",\n    \"cornetto_synset_id\": \"n_a-510344\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voldoende\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"genot\": {\n    \"form\": \"genot\",\n    \"cornetto_id\": \"r_n-14686\",\n    \"cornetto_synset_id\": \"d_n-24522\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"genoten\": {\n    \"form\": \"genoten\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"genuanceerd\": {\n    \"form\": \"genuanceerd\",\n    \"cornetto_id\": \"r_a-10945\",\n    \"cornetto_synset_id\": \"n_a-510358\",\n    \"wordnet_id\": \"a-02507324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met onderscheid\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geologisch\": {\n    \"form\": \"geologisch\",\n    \"cornetto_id\": \"r_a-11289\",\n    \"cornetto_synset_id\": \"n_a-510371\",\n    \"wordnet_id\": \"a-02905591\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aardkunde betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gepantserd\": {\n    \"form\": \"gepantserd\",\n    \"cornetto_id\": \"r_a-11294\",\n    \"cornetto_synset_id\": \"n_a-534450\",\n    \"wordnet_id\": \"a-01017439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van een pantser voorzien\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gepassioneerd\": {\n    \"form\": \"gepassioneerd\",\n    \"cornetto_id\": \"r_a-11295\",\n    \"cornetto_synset_id\": \"n_a-512115\",\n    \"wordnet_id\": \"a-02278939\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hartstochtelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"geprononceerd\": {\n    \"form\": \"geprononceerd\",\n    \"cornetto_id\": \"r_a-10992\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgesproken\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"geraffineerd\": {\n    \"form\": \"geraffineerd\",\n    \"cornetto_id\": \"r_a-11539\",\n    \"cornetto_synset_id\": \"d_a-9523\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doortrapt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerechtelijk\": {\n    \"form\": \"gerechtelijk\",\n    \"cornetto_id\": \"r_a-10998\",\n    \"cornetto_synset_id\": \"n_a-510462\",\n    \"wordnet_id\": \"a-01400562\",\n    \"pos\": \"JJ\",\n    \"sense\": \"justitieel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerechtigd\": {\n    \"form\": \"gerechtigd\",\n    \"cornetto_id\": \"r_a-10999\",\n    \"cornetto_synset_id\": \"n_a-503941\",\n    \"wordnet_id\": \"a-00178575\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het recht hebbend iets te doen\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gereformeerd\": {\n    \"form\": \"gereformeerd\",\n    \"cornetto_id\": \"r_a-11540\",\n    \"cornetto_synset_id\": \"n_a-505317\",\n    \"wordnet_id\": \"a-02952975\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens de leer van Calvijn\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geregeld\": {\n    \"form\": \"geregeld\",\n    \"cornetto_id\": \"r_a-11004\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"regelmatig terugkerend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geremd\": {\n    \"form\": \"geremd\",\n    \"cornetto_id\": \"r_a-11005\",\n    \"cornetto_synset_id\": \"c_751\",\n    \"wordnet_id\": \"a-00339941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet vrij zijn in uitingen en reacties\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerenommeerd\": {\n    \"form\": \"gerenommeerd\",\n    \"cornetto_id\": \"r_a-11006\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermaard\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gereputeerd\": {\n    \"form\": \"gereputeerd\",\n    \"cornetto_id\": \"d_a-90882\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerespecteerd\": {\n    \"form\": \"gerespecteerd\",\n    \"cornetto_id\": \"r_a-11436\",\n    \"cornetto_synset_id\": \"n_a-509670\",\n    \"wordnet_id\": \"a-01983432\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achtenswaardig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"geriatrisch\": {\n    \"form\": \"geriatrisch\",\n    \"cornetto_id\": \"r_a-11437\",\n    \"cornetto_synset_id\": \"n_a-510484\",\n    \"wordnet_id\": \"a-02916539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de geriatrie betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerimpeld\": {\n    \"form\": \"gerimpeld\",\n    \"cornetto_id\": \"r_a-11440\",\n    \"cornetto_synset_id\": \"n_a-510496\",\n    \"wordnet_id\": \"a-00088157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rimpels of groeven hebbend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gering\": {\n    \"form\": \"gering\",\n    \"cornetto_id\": \"r_a-11011\",\n    \"cornetto_synset_id\": \"n_a-520627\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met weinig betekenis\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geringschattend\": {\n    \"form\": \"geringschattend\",\n    \"cornetto_id\": \"r_a-11012\",\n    \"cornetto_synset_id\": \"n_a-518925\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blijk gevend van geringe dunk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geroutineerd\": {\n    \"form\": \"geroutineerd\",\n    \"cornetto_id\": \"r_a-11014\",\n    \"cornetto_synset_id\": \"n_a-508489\",\n    \"wordnet_id\": \"a-00935500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kundig en ervaren\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"geruchtmakend\": {\n    \"form\": \"geruchtmakend\",\n    \"cornetto_id\": \"r_a-11015\",\n    \"cornetto_synset_id\": \"n_a-522093\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opzienbarend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"geruim\": {\n    \"form\": \"geruim\",\n    \"cornetto_id\": \"r_a-11016\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrij lang\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geruisloos\": {\n    \"form\": \"geruisloos\",\n    \"cornetto_id\": \"r_a-11545\",\n    \"cornetto_synset_id\": \"n_a-521336\",\n    \"wordnet_id\": \"a-01608264\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder veel opzien te wekken\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gerust\": {\n    \"form\": \"gerust\",\n    \"cornetto_id\": \"r_a-11018\",\n    \"cornetto_synset_id\": \"n_a-510537\",\n    \"wordnet_id\": \"a-00015097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kalm\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geschiedkundig\": {\n    \"form\": \"geschiedkundig\",\n    \"cornetto_id\": \"r_a-11020\",\n    \"cornetto_synset_id\": \"n_a-510560\",\n    \"wordnet_id\": \"a-01730060\",\n    \"pos\": \"JJ\",\n    \"sense\": \"historisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geschikt\": {\n    \"form\": \"geschikt\",\n    \"cornetto_id\": \"r_a-11022\",\n    \"cornetto_synset_id\": \"d_a-9306\",\n    \"wordnet_id\": \"a-01020885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met juiste eigenschappen\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gesetteld\": {\n    \"form\": \"gesetteld\",\n    \"cornetto_id\": \"r_a-11026\",\n    \"cornetto_synset_id\": \"d_a-9308\",\n    \"wordnet_id\": \"a-00260695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sociaal op zijn plaats\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geslaagd\": {\n    \"form\": \"geslaagd\",\n    \"cornetto_id\": \"r_a-11030\",\n    \"cornetto_synset_id\": \"n_a-510582\",\n    \"wordnet_id\": \"a-02331262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"succesvol\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"geslachtsrijp\": {\n    \"form\": \"geslachtsrijp\",\n    \"cornetto_id\": \"r_a-11032\",\n    \"cornetto_synset_id\": \"n_a-510591\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klaar voor voortplanting\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gespannen\": {\n    \"form\": \"gespannen\",\n    \"cornetto_id\": \"r_a-11038\",\n    \"cornetto_synset_id\": \"n_a-535556\",\n    \"wordnet_id\": \"a-02406370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nerveus\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gespecialiseerd\": {\n    \"form\": \"gespecialiseerd\",\n    \"cornetto_id\": \"r_a-11315\",\n    \"cornetto_synset_id\": \"d_a-9373\",\n    \"wordnet_id\": \"a-00178811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toegespitst op iets specifieks\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gestaag\": {\n    \"form\": \"gestaag\",\n    \"cornetto_id\": \"r_a-11318\",\n    \"cornetto_synset_id\": \"n_a-510632\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in gelijkblijvend tempo\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gestoord\": {\n    \"form\": \"gestoord\",\n    \"cornetto_id\": \"r_a-11044\",\n    \"cornetto_synset_id\": \"n_a-516037\",\n    \"wordnet_id\": \"a-02075321\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gek\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gestreept\": {\n    \"form\": \"gestreept\",\n    \"cornetto_id\": \"r_a-11321\",\n    \"cornetto_synset_id\": \"n_a-510658\",\n    \"wordnet_id\": \"a-00222969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met strepen bedekt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gestrekt\": {\n    \"form\": \"gestrekt\",\n    \"cornetto_id\": \"r_a-11322\",\n    \"cornetto_synset_id\": \"n_a-510659\",\n    \"wordnet_id\": \"a-01432070\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgestrekt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gestructureerd\": {\n    \"form\": \"gestructureerd\",\n    \"cornetto_id\": \"r_a-11323\",\n    \"cornetto_synset_id\": \"n_a-510662\",\n    \"wordnet_id\": \"a-01679744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een samenhangende structuur hebbend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"getalenteerd\": {\n    \"form\": \"getalenteerd\",\n    \"cornetto_id\": \"r_a-11325\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"talent hebbend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"getapt\": {\n    \"form\": \"getapt\",\n    \"cornetto_id\": \"r_a-11048\",\n    \"cornetto_synset_id\": \"n_a-523989\",\n    \"wordnet_id\": \"a-00414518\",\n    \"pos\": \"JJ\",\n    \"sense\": \"populair\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"getiteld\": {\n    \"form\": \"getiteld\",\n    \"cornetto_id\": \"r_a-11564\",\n    \"cornetto_synset_id\": \"n_a-510691\",\n    \"wordnet_id\": \"a-01591227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een adellijke titel voerend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"getogen\": {\n    \"form\": \"getogen\",\n    \"cornetto_id\": \"r_a-11054\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opgegroeid\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"getrouw\": {\n    \"form\": \"getrouw\",\n    \"cornetto_id\": \"r_a-11566\",\n    \"cornetto_synset_id\": \"n_a-503878\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zijn woord nakomend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geurig\": {\n    \"form\": \"geurig\",\n    \"cornetto_id\": \"r_a-11057\",\n    \"cornetto_synset_id\": \"n_a-510721\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangenaam geurend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevaarlijk\": {\n    \"form\": \"gevaarlijk\",\n    \"cornetto_id\": \"r_a-11567\",\n    \"cornetto_synset_id\": \"c_292\",\n    \"wordnet_id\": \"a-00651039\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevaar opleverend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gevarieerd\": {\n    \"form\": \"gevarieerd\",\n    \"cornetto_id\": \"r_a-11332\",\n    \"cornetto_synset_id\": \"n_a-510738\",\n    \"wordnet_id\": \"a-00783129\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afwisselend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevat\": {\n    \"form\": \"gevat\",\n    \"cornetto_id\": \"r_a-11060\",\n    \"cornetto_synset_id\": \"n_a-510739\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ad rem\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevecht\": {\n    \"form\": \"gevecht\",\n    \"cornetto_id\": \"r_n-14923\",\n    \"cornetto_synset_id\": \"d_n-33809\",\n    \"wordnet_id\": \"n-00953559\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevoelig\": {\n    \"form\": \"gevoelig\",\n    \"cornetto_id\": \"r_a-11070\",\n    \"cornetto_synset_id\": \"c_645\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingrijpend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"gevoelsarm\": {\n    \"form\": \"gevoelsarm\",\n    \"cornetto_id\": \"r_a-11458\",\n    \"cornetto_synset_id\": \"n_a-521187\",\n    \"wordnet_id\": \"a-00857560\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met weinig gevoelens\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevoelsmatig\": {\n    \"form\": \"gevoelsmatig\",\n    \"cornetto_id\": \"r_a-11072\",\n    \"cornetto_synset_id\": \"n_a-510779\",\n    \"wordnet_id\": \"a-01431471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"intuïtief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gevorkt\": {\n    \"form\": \"gevorkt\",\n    \"cornetto_id\": \"r_a-11461\",\n    \"cornetto_synset_id\": \"n_a-509496\",\n    \"wordnet_id\": \"a-02479602\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met de vorm van een vork\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gewapend\": {\n    \"form\": \"gewapend\",\n    \"cornetto_id\": \"r_a-11077\",\n    \"cornetto_synset_id\": \"n_a-510800\",\n    \"wordnet_id\": \"a-00142407\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met wapens\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"geweldadig\": {\n    \"form\": \"geweldadig\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gewelddadig\": {\n    \"form\": \"gewelddadig\",\n    \"cornetto_id\": \"r_a-11080\",\n    \"cornetto_synset_id\": \"n_a-510816\",\n    \"wordnet_id\": \"a-00248251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met geweld\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"geweldig\": {\n    \"form\": \"geweldig\",\n    \"cornetto_id\": \"r_a-11081\",\n    \"cornetto_synset_id\": \"c_269\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel leuk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"geweldloos\": {\n    \"form\": \"geweldloos\",\n    \"cornetto_id\": \"r_a-11082\",\n    \"cornetto_synset_id\": \"n_a-510824\",\n    \"wordnet_id\": \"a-00249576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder geweld\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gewend\": {\n    \"form\": \"gewend\",\n    \"cornetto_id\": \"r_a-11084\",\n    \"cornetto_synset_id\": \"n_a-510831\",\n    \"wordnet_id\": \"a-00024619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewoon\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gewerveld\": {\n    \"form\": \"gewerveld\",\n    \"cornetto_id\": \"r_a-11342\",\n    \"cornetto_synset_id\": \"n_a-510835\",\n    \"wordnet_id\": \"a-02510062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorzien van een wervelkolom\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gewetenloos\": {\n    \"form\": \"gewetenloos\",\n    \"cornetto_id\": \"r_a-11085\",\n    \"cornetto_synset_id\": \"d_a-9455\",\n    \"wordnet_id\": \"a-01262611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gewichtig\": {\n    \"form\": \"gewichtig\",\n    \"cornetto_id\": \"r_a-11088\",\n    \"cornetto_synset_id\": \"n_a-510846\",\n    \"wordnet_id\": \"a-00625055\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangrijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gewis\": {\n    \"form\": \"gewis\",\n    \"cornetto_id\": \"r_a-11093\",\n    \"cornetto_synset_id\": \"n_a-510858\",\n    \"wordnet_id\": \"a-01918660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeker\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gewonnen\": {\n    \"form\": \"gewonnen\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBG\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gewoon\": {\n    \"form\": \"gewoon\",\n    \"cornetto_id\": \"r_a-11097\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gewraakt\": {\n    \"form\": \"gewraakt\",\n    \"cornetto_id\": \"r_a-11098\",\n    \"cornetto_synset_id\": \"n_a-510872\",\n    \"wordnet_id\": \"a-00602474\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in ongunstig zin genoemd\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gezaag\": {\n    \"form\": \"gezaag\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gezagsgetrouw\": {\n    \"form\": \"gezagsgetrouw\",\n    \"cornetto_id\": \"r_a-11346\",\n    \"cornetto_synset_id\": \"n_a-510881\",\n    \"wordnet_id\": \"a-01395821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"trouw aan gestelde gezag\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gezamenlijk\": {\n    \"form\": \"gezamenlijk\",\n    \"cornetto_id\": \"r_a-11101\",\n    \"cornetto_synset_id\": \"n_a-510885\",\n    \"wordnet_id\": \"a-00005107\",\n    \"pos\": \"JJ\",\n    \"sense\": \"samen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gezapig\": {\n    \"form\": \"gezapig\",\n    \"cornetto_id\": \"r_a-11102\",\n    \"cornetto_synset_id\": \"n_a-510889\",\n    \"wordnet_id\": \"a-00034322\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sloom, rustig en saai\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gezellig\": {\n    \"form\": \"gezellig\",\n    \"cornetto_id\": \"r_a-11106\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prettig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gezind\": {\n    \"form\": \"gezind\",\n    \"cornetto_id\": \"r_a-11110\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in bepaalde stemming\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gezond\": {\n    \"form\": \"gezond\",\n    \"cornetto_id\": \"r_a-11113\",\n    \"cornetto_synset_id\": \"n_a-510925\",\n    \"wordnet_id\": \"a-01166413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heilzaam\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gezouten\": {\n    \"form\": \"gezouten\",\n    \"cornetto_id\": \"r_a-11464\",\n    \"cornetto_synset_id\": \"d_a-9315\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gespierd of kras\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gezwind\": {\n    \"form\": \"gezwind\",\n    \"cornetto_id\": \"r_a-11114\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geëmancipeerd\": {\n    \"form\": \"geëmancipeerd\",\n    \"cornetto_id\": \"r_a-10865\",\n    \"cornetto_synset_id\": \"n_a-509646\",\n    \"wordnet_id\": \"a-01058650\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelfbewust\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"geïsoleerd\": {\n    \"form\": \"geïsoleerd\",\n    \"cornetto_id\": \"r_a-11251\",\n    \"cornetto_synset_id\": \"n_a-508013\",\n    \"wordnet_id\": \"a-00704360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgezonderd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"giechelig\": {\n    \"form\": \"giechelig\",\n    \"cornetto_id\": \"r_a-11465\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacherig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"giftig\": {\n    \"form\": \"giftig\",\n    \"cornetto_id\": \"r_a-11120\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg kwaad\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gigantisch\": {\n    \"form\": \"gigantisch\",\n    \"cornetto_id\": \"r_a-11121\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"reusachtig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"gijzelen\": {\n    \"form\": \"gijzelen\",\n    \"cornetto_id\": \"r_v-2967\",\n    \"cornetto_synset_id\": \"d_v-2718\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gis\": {\n    \"form\": \"gis\",\n    \"cornetto_id\": \"r_a-11124\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slim\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"gitzwart\": {\n    \"form\": \"gitzwart\",\n    \"cornetto_id\": \"r_a-11352\",\n    \"cornetto_synset_id\": \"n_a-523373\",\n    \"wordnet_id\": \"a-00054364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer zwart\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glansloos\": {\n    \"form\": \"glansloos\",\n    \"cornetto_id\": \"r_a-11472\",\n    \"cornetto_synset_id\": \"d_a-9232\",\n    \"wordnet_id\": \"a-00283972\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mat\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"glansrijk\": {\n    \"form\": \"glansrijk\",\n    \"cornetto_id\": \"r_a-11127\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schitterend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"glasachtig\": {\n    \"form\": \"glasachtig\",\n    \"cornetto_id\": \"r_a-11474\",\n    \"cornetto_synset_id\": \"n_a-511070\",\n    \"wordnet_id\": \"a-01119661\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als glas\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glashelder\": {\n    \"form\": \"glashelder\",\n    \"cornetto_id\": \"r_a-11353\",\n    \"cornetto_synset_id\": \"n_a-511051\",\n    \"wordnet_id\": \"a-00429355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel helder\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glazig\": {\n    \"form\": \"glazig\",\n    \"cornetto_id\": \"r_a-11130\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suf\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glibberig\": {\n    \"form\": \"glibberig\",\n    \"cornetto_id\": \"r_a-11131\",\n    \"cornetto_synset_id\": \"n_a-511080\",\n    \"wordnet_id\": \"a-02234781\",\n    \"pos\": \"JJ\",\n    \"sense\": \"glad en nat\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"globaal\": {\n    \"form\": \"globaal\",\n    \"cornetto_id\": \"r_a-11132\",\n    \"cornetto_synset_id\": \"n_a-511092\",\n    \"wordnet_id\": \"a-00915976\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongeveer\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"gloednieuw\": {\n    \"form\": \"gloednieuw\",\n    \"cornetto_id\": \"r_a-11357\",\n    \"cornetto_synset_id\": \"n_a-511095\",\n    \"wordnet_id\": \"a-01641460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volstrekt nieuw\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glorierijk\": {\n    \"form\": \"glorierijk\",\n    \"cornetto_id\": \"r_a-11476\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"roemrijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glorieus\": {\n    \"form\": \"glorieus\",\n    \"cornetto_id\": \"r_a-11136\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"roemrijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goddelijk\": {\n    \"form\": \"goddelijk\",\n    \"cornetto_id\": \"r_a-11139\",\n    \"cornetto_synset_id\": \"n_a-512199\",\n    \"wordnet_id\": \"a-00219705\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hemels\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"godgans\": {\n    \"form\": \"godgans\",\n    \"cornetto_id\": \"r_a-11477\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"godsdienstig\": {\n    \"form\": \"godsdienstig\",\n    \"cornetto_id\": \"r_a-11359\",\n    \"cornetto_synset_id\": \"d_a-9319\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"religieus\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"godsgruwelijk\": {\n    \"form\": \"godsgruwelijk\",\n    \"cornetto_id\": \"r_a-11481\",\n    \"cornetto_synset_id\": \"n_a-513857\",\n    \"wordnet_id\": \"a-01839317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enorm\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"godsjammerlijk\": {\n    \"form\": \"godsjammerlijk\",\n    \"cornetto_id\": \"d_a-94797\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"godslasterlijk\": {\n    \"form\": \"godslasterlijk\",\n    \"cornetto_id\": \"r_a-11482\",\n    \"cornetto_synset_id\": \"n_a-511163\",\n    \"wordnet_id\": \"a-02012748\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blasfemisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"godsonmogelijk\": {\n    \"form\": \"godsonmogelijk\",\n    \"cornetto_id\": \"r_a-11584\",\n    \"cornetto_synset_id\": \"n_a-511166\",\n    \"wordnet_id\": \"a-02418692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"totaal onmogelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"godverdoms\": {\n    \"form\": \"godverdoms\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"godverlaten\": {\n    \"form\": \"godverlaten\",\n    \"cornetto_id\": \"r_a-11360\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eenzaam\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"godvruchtig\": {\n    \"form\": \"godvruchtig\",\n    \"cornetto_id\": \"r_a-11142\",\n    \"cornetto_synset_id\": \"n_a-533937\",\n    \"wordnet_id\": \"a-01130261\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroom\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goed\": {\n    \"form\": \"goed\",\n    \"cornetto_id\": \"r_a-11144\",\n    \"cornetto_synset_id\": \"c_680\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"correct\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"goedbedoelend\": {\n    \"form\": \"goedbedoelend\",\n    \"cornetto_id\": \"r_a-11362\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met goede bedoelingen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goede\": {\n    \"form\": \"goede\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"JJ\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"goedgeefs\": {\n    \"form\": \"goedgeefs\",\n    \"cornetto_id\": \"r_a-11148\",\n    \"cornetto_synset_id\": \"n_a-511674\",\n    \"wordnet_id\": \"a-01111016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gul\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goedgelovig\": {\n    \"form\": \"goedgelovig\",\n    \"cornetto_id\": \"r_a-11149\",\n    \"cornetto_synset_id\": \"n_a-511197\",\n    \"wordnet_id\": \"a-00163315\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naïef\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goedkeurend\": {\n    \"form\": \"goedkeurend\",\n    \"cornetto_id\": \"r_a-11153\",\n    \"cornetto_synset_id\": \"n_a-503932\",\n    \"wordnet_id\": \"a-00075135\",\n    \"pos\": \"JJ\",\n    \"sense\": \"instemmend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goedkoop\": {\n    \"form\": \"goedkoop\",\n    \"cornetto_id\": \"r_a-11155\",\n    \"cornetto_synset_id\": \"n_a-522137\",\n    \"wordnet_id\": \"a-01593079\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ordinair\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"goedlopend\": {\n    \"form\": \"goedlopend\",\n    \"cornetto_id\": \"r_a-11364\",\n    \"cornetto_synset_id\": \"n_a-511211\",\n    \"wordnet_id\": \"a-02331262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"succesvol\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goedmoedig\": {\n    \"form\": \"goedmoedig\",\n    \"cornetto_id\": \"r_a-11365\",\n    \"cornetto_synset_id\": \"n_a-511204\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onschuldig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goedwillend\": {\n    \"form\": \"goedwillend\",\n    \"cornetto_id\": \"r_a-11366\",\n    \"cornetto_synset_id\": \"n_a-534604\",\n    \"wordnet_id\": \"a-00019131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met goede bedoelingen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goeie\": {\n    \"form\": \"goeie\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"golvend\": {\n    \"form\": \"golvend\",\n    \"cornetto_id\": \"r_a-11486\",\n    \"cornetto_synset_id\": \"n_a-512474\",\n    \"wordnet_id\": \"a-01234747\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op- en neergaand als golven\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"goor\": {\n    \"form\": \"goor\",\n    \"cornetto_id\": \"r_a-11159\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plat\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gortdroog\": {\n    \"form\": \"gortdroog\",\n    \"cornetto_id\": \"r_a-11160\",\n    \"cornetto_synset_id\": \"n_a-511263\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg droog en saai\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gortig\": {\n    \"form\": \"gortig\",\n    \"cornetto_id\": \"r_a-11367\",\n    \"cornetto_synset_id\": \"n_a-511264\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grof\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"gotisch\": {\n    \"form\": \"gotisch\",\n    \"cornetto_id\": \"r_a-11368\",\n    \"cornetto_synset_id\": \"n_a-511274\",\n    \"wordnet_id\": \"a-03069542\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de gotiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gouden\": {\n    \"form\": \"gouden\",\n    \"cornetto_id\": \"r_a-11587\",\n    \"cornetto_synset_id\": \"n_a-533067\",\n    \"wordnet_id\": \"a-02208145\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vijftigjarig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gracieus\": {\n    \"form\": \"gracieus\",\n    \"cornetto_id\": \"r_a-11163\",\n    \"cornetto_synset_id\": \"n_a-527670\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sierlijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gradueel\": {\n    \"form\": \"gradueel\",\n    \"cornetto_id\": \"r_a-11164\",\n    \"cornetto_synset_id\": \"n_a-531203\",\n    \"wordnet_id\": \"a-01143006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"trapsgewijs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grandioos\": {\n    \"form\": \"grandioos\",\n    \"cornetto_id\": \"r_a-11169\",\n    \"cornetto_synset_id\": \"c_269\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"grappig\": {\n    \"form\": \"grappig\",\n    \"cornetto_id\": \"r_a-11170\",\n    \"cornetto_synset_id\": \"n_a-517089\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leuk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gratis\": {\n    \"form\": \"gratis\",\n    \"cornetto_id\": \"r_a-11171\",\n    \"cornetto_synset_id\": \"n_a-511409\",\n    \"wordnet_id\": \"a-01710260\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor niets\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"gratuit\": {\n    \"form\": \"gratuit\",\n    \"cornetto_id\": \"r_a-11172\",\n    \"cornetto_synset_id\": \"n_a-521047\",\n    \"wordnet_id\": \"a-00179486\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrijblijvend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grauw\": {\n    \"form\": \"grauw\",\n    \"cornetto_id\": \"r_a-11174\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleurloos, somber\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gregoriaans\": {\n    \"form\": \"gregoriaans\",\n    \"cornetto_id\": \"r_a-11175\",\n    \"cornetto_synset_id\": \"n_a-511428\",\n    \"wordnet_id\": \"a-03070352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(van kerkgezang) eenstemmig\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"grenzeloos\": {\n    \"form\": \"grenzeloos\",\n    \"cornetto_id\": \"r_a-11176\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eindeloos\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"gretig\": {\n    \"form\": \"gretig\",\n    \"cornetto_id\": \"r_a-11177\",\n    \"cornetto_synset_id\": \"d_a-9175\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"begerig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"grieperig\": {\n    \"form\": \"grieperig\",\n    \"cornetto_id\": \"r_a-11490\",\n    \"cornetto_synset_id\": \"n_a-511462\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een beetje griep\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"griezelig\": {\n    \"form\": \"griezelig\",\n    \"cornetto_id\": \"r_a-11178\",\n    \"cornetto_synset_id\": \"n_a-511467\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eng\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"grif\": {\n    \"form\": \"grif\",\n    \"cornetto_id\": \"r_a-11375\",\n    \"cornetto_synset_id\": \"n_a-511469\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gretig en vlug\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grijpgraag\": {\n    \"form\": \"grijpgraag\",\n    \"cornetto_id\": \"r_a-11377\",\n    \"cornetto_synset_id\": \"n_a-511476\",\n    \"wordnet_id\": \"a-00029933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belust om te grijpen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grijs\": {\n    \"form\": \"grijs\",\n    \"cornetto_id\": \"r_a-11181\",\n    \"cornetto_synset_id\": \"n_a-511480\",\n    \"wordnet_id\": \"a-00389310\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleur van lood\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grijsblauw\": {\n    \"form\": \"grijsblauw\",\n    \"cornetto_id\": \"r_a-11491\",\n    \"cornetto_synset_id\": \"n_a-511482\",\n    \"wordnet_id\": \"a-00434097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grijsachtig blauw\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grillig\": {\n    \"form\": \"grillig\",\n    \"cornetto_id\": \"r_a-11180\",\n    \"cornetto_synset_id\": \"n_a-511491\",\n    \"wordnet_id\": \"a-00608791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wispelturig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grimmig\": {\n    \"form\": \"grimmig\",\n    \"cornetto_id\": \"r_a-11182\",\n    \"cornetto_synset_id\": \"n_a-507483\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kwaadaardig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"groen\": {\n    \"form\": \"groen\",\n    \"cornetto_id\": \"r_a-11184\",\n    \"cornetto_synset_id\": \"n_a-518890\",\n    \"wordnet_id\": \"a-02906778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"milieuvriendelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grof\": {\n    \"form\": \"grof\",\n    \"cornetto_id\": \"r_a-11188\",\n    \"cornetto_synset_id\": \"n_a-511570\",\n    \"wordnet_id\": \"a-00580039\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in ernstige mate\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"grofgebouwd\": {\n    \"form\": \"grofgebouwd\",\n    \"cornetto_id\": \"r_a-11494\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met grove lichaamsbouw\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"groggy\": {\n    \"form\": \"groggy\",\n    \"cornetto_id\": \"r_a-11189\",\n    \"cornetto_synset_id\": \"n_a-507792\",\n    \"wordnet_id\": \"a-00437223\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slingerend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grondig\": {\n    \"form\": \"grondig\",\n    \"cornetto_id\": \"r_a-11191\",\n    \"cornetto_synset_id\": \"n_a-511592\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"degelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"groot\": {\n    \"form\": \"groot\",\n    \"cornetto_id\": \"r_a-11194\",\n    \"cornetto_synset_id\": \"d_a-9178\",\n    \"wordnet_id\": \"a-01830403\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voornaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grootmoedig\": {\n    \"form\": \"grootmoedig\",\n    \"cornetto_id\": \"r_a-11195\",\n    \"cornetto_synset_id\": \"d_a-9432\",\n    \"wordnet_id\": \"a-00101609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbaatzuchtig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"groots\": {\n    \"form\": \"groots\",\n    \"cornetto_id\": \"r_a-11196\",\n    \"cornetto_synset_id\": \"n_a-511641\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fantastisch\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grootschalig\": {\n    \"form\": \"grootschalig\",\n    \"cornetto_id\": \"r_a-11197\",\n    \"cornetto_synset_id\": \"n_a-511642\",\n    \"wordnet_id\": \"a-00104051\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op grote schaal\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"grootscheeps\": {\n    \"form\": \"grootscheeps\",\n    \"cornetto_id\": \"r_a-11198\",\n    \"cornetto_synset_id\": \"n_a-511643\",\n    \"wordnet_id\": \"a-00521811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"groots opgezet\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grootstedelijk\": {\n    \"form\": \"grootstedelijk\",\n    \"cornetto_id\": \"r_a-11380\",\n    \"cornetto_synset_id\": \"n_a-511647\",\n    \"wordnet_id\": \"a-02865172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"typisch voor grote stad\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grotendeels\": {\n    \"form\": \"grotendeels\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"1.0\"\n  },\n  \"grotesk\": {\n    \"form\": \"grotesk\",\n    \"cornetto_id\": \"r_a-11199\",\n    \"cornetto_synset_id\": \"n_a-503484\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wonderlijk en buitensporig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"gruwel\": {\n    \"form\": \"gruwel\",\n    \"cornetto_id\": \"r_n-15971\",\n    \"cornetto_synset_id\": \"d_n-28317\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gruwelijk\": {\n    \"form\": \"gruwelijk\",\n    \"cornetto_id\": \"r_a-11200\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgrijselijk\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gruwzaam\": {\n    \"form\": \"gruwzaam\",\n    \"cornetto_id\": \"d_a-98316\",\n    \"cornetto_synset_id\": \"d_a-9619\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"guitig\": {\n    \"form\": \"guitig\",\n    \"cornetto_id\": \"r_a-11201\",\n    \"cornetto_synset_id\": \"n_a-520935\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ondeugend en grappig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gul\": {\n    \"form\": \"gul\",\n    \"cornetto_id\": \"r_a-11202\",\n    \"cornetto_synset_id\": \"d_a-9326\",\n    \"wordnet_id\": \"a-01111016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrijgevig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gunstig\": {\n    \"form\": \"gunstig\",\n    \"cornetto_id\": \"r_a-11204\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voordelig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"guur\": {\n    \"form\": \"guur\",\n    \"cornetto_id\": \"r_a-11205\",\n    \"cornetto_synset_id\": \"n_a-511688\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koud en winderig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gynaecologisch\": {\n    \"form\": \"gynaecologisch\",\n    \"cornetto_id\": \"r_a-11382\",\n    \"cornetto_synset_id\": \"n_a-511696\",\n    \"wordnet_id\": \"a-02916969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. gynaecologie\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gênant\": {\n    \"form\": \"gênant\",\n    \"cornetto_id\": \"r_a-10957\",\n    \"cornetto_synset_id\": \"n_a-509478\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beschamend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"haarscherp\": {\n    \"form\": \"haarscherp\",\n    \"cornetto_id\": \"r_a-11592\",\n    \"cornetto_synset_id\": \"n_a-511737\",\n    \"wordnet_id\": \"a-00229227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel scherp of duidelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"haastig\": {\n    \"form\": \"haastig\",\n    \"cornetto_id\": \"r_a-11593\",\n    \"cornetto_synset_id\": \"n_a-511750\",\n    \"wordnet_id\": \"a-00086210\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in haast\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hachelijk\": {\n    \"form\": \"hachelijk\",\n    \"cornetto_id\": \"r_a-11595\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevaarlijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"half\": {\n    \"form\": \"half\",\n    \"cornetto_id\": \"r_a-11596\",\n    \"cornetto_synset_id\": \"n_a-511782\",\n    \"wordnet_id\": \"a-00330506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor de helft\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"halfautomatisch\": {\n    \"form\": \"halfautomatisch\",\n    \"cornetto_id\": \"r_a-11713\",\n    \"cornetto_synset_id\": \"n_a-527541\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"semi-automatisch\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halfbakken\": {\n    \"form\": \"halfbakken\",\n    \"cornetto_id\": \"r_a-11597\",\n    \"cornetto_synset_id\": \"n_a-520658\",\n    \"wordnet_id\": \"a-00619601\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebrekkig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halfdood\": {\n    \"form\": \"halfdood\",\n    \"cornetto_id\": \"r_a-11765\",\n    \"cornetto_synset_id\": \"n_a-512726\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zowat dood\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halfhartig\": {\n    \"form\": \"halfhartig\",\n    \"cornetto_id\": \"r_a-11714\",\n    \"cornetto_synset_id\": \"n_a-534522\",\n    \"wordnet_id\": \"a-00162386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet van harte\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halfleeg\": {\n    \"form\": \"halfleeg\",\n    \"cornetto_id\": \"r_a-11770\",\n    \"cornetto_synset_id\": \"n_a-511826\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor de helft leeg\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halfnaakt\": {\n    \"form\": \"halfnaakt\",\n    \"cornetto_id\": \"r_a-11773\",\n    \"cornetto_synset_id\": \"n_a-511812\",\n    \"wordnet_id\": \"a-00459881\",\n    \"pos\": \"JJ\",\n    \"sense\": \"halfbloot\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hallucinant\": {\n    \"form\": \"hallucinant\",\n    \"cornetto_id\": \"r_a-17355\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schokkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"halsstarrig\": {\n    \"form\": \"halsstarrig\",\n    \"cornetto_id\": \"r_a-11602\",\n    \"cornetto_synset_id\": \"n_a-515826\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koppig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"halve\": {\n    \"form\": \"halve\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"handig\": {\n    \"form\": \"handig\",\n    \"cornetto_id\": \"r_a-11605\",\n    \"cornetto_synset_id\": \"n_a-511955\",\n    \"wordnet_id\": \"a-01123879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"handzaam\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"handtastelijk\": {\n    \"form\": \"handtastelijk\",\n    \"cornetto_id\": \"r_a-11606\",\n    \"cornetto_synset_id\": \"n_a-511976\",\n    \"wordnet_id\": \"a-00916199\",\n    \"pos\": \"JJ\",\n    \"sense\": \"anderen ongewenst aanrakend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"handzaam\": {\n    \"form\": \"handzaam\",\n    \"cornetto_id\": \"r_a-11718\",\n    \"cornetto_synset_id\": \"n_a-511955\",\n    \"wordnet_id\": \"a-01123879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"makkelijk in het gebruik\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hanig\": {\n    \"form\": \"hanig\",\n    \"cornetto_id\": \"r_a-11607\",\n    \"cornetto_synset_id\": \"n_a-518017\",\n    \"wordnet_id\": \"a-00156440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een haantje\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"happig\": {\n    \"form\": \"happig\",\n    \"cornetto_id\": \"r_a-11608\",\n    \"cornetto_synset_id\": \"d_a-9175\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tuk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hard\": {\n    \"form\": \"hard\",\n    \"cornetto_id\": \"r_a-11615\",\n    \"cornetto_synset_id\": \"n_a-508890\",\n    \"wordnet_id\": \"a-01803792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van kleur\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hardhandig\": {\n    \"form\": \"hardhandig\",\n    \"cornetto_id\": \"r_a-11617\",\n    \"cornetto_synset_id\": \"c_697\",\n    \"wordnet_id\": \"a-01803583\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ruw\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hardleers\": {\n    \"form\": \"hardleers\",\n    \"cornetto_id\": \"r_a-11619\",\n    \"cornetto_synset_id\": \"n_a-512048\",\n    \"wordnet_id\": \"a-02452562\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volhardend in dezelfde fout\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hardnekkig\": {\n    \"form\": \"hardnekkig\",\n    \"cornetto_id\": \"r_a-11620\",\n    \"cornetto_synset_id\": \"n_a-515826\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koppig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hardvochtig\": {\n    \"form\": \"hardvochtig\",\n    \"cornetto_id\": \"r_a-11621\",\n    \"cornetto_synset_id\": \"c_182\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wreed\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hardwerkend\": {\n    \"form\": \"hardwerkend\",\n    \"cornetto_id\": \"r_a-11720\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijverig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"harkerig\": {\n    \"form\": \"harkerig\",\n    \"cornetto_id\": \"r_a-11622\",\n    \"cornetto_synset_id\": \"n_a-529331\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"houterig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"harmonieus\": {\n    \"form\": \"harmonieus\",\n    \"cornetto_id\": \"r_a-11623\",\n    \"cornetto_synset_id\": \"n_a-512072\",\n    \"wordnet_id\": \"a-00508036\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed passend, in harmonie\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"harmonisch\": {\n    \"form\": \"harmonisch\",\n    \"cornetto_id\": \"r_a-11624\",\n    \"cornetto_synset_id\": \"n_a-512072\",\n    \"wordnet_id\": \"a-00508036\",\n    \"pos\": \"JJ\",\n    \"sense\": \"harmonieus\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hartelijk\": {\n    \"form\": \"hartelijk\",\n    \"cornetto_id\": \"r_a-11625\",\n    \"cornetto_synset_id\": \"d_a-9326\",\n    \"wordnet_id\": \"a-01075178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vriendelijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hartig\": {\n    \"form\": \"hartig\",\n    \"cornetto_id\": \"r_a-11791\",\n    \"cornetto_synset_id\": \"n_a-523434\",\n    \"wordnet_id\": \"a-00033077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pittig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hartstochtelijk\": {\n    \"form\": \"hartstochtelijk\",\n    \"cornetto_id\": \"r_a-11628\",\n    \"cornetto_synset_id\": \"n_a-512114\",\n    \"wordnet_id\": \"a-00853776\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vurig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.8\"\n  },\n  \"hartveroverend\": {\n    \"form\": \"hartveroverend\",\n    \"cornetto_id\": \"r_a-11629\",\n    \"cornetto_synset_id\": \"n_a-512118\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"allerliefst\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hartverscheurend\": {\n    \"form\": \"hartverscheurend\",\n    \"cornetto_id\": \"r_a-11630\",\n    \"cornetto_synset_id\": \"n_a-512119\",\n    \"wordnet_id\": \"a-01374004\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hartbrekend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hartverwarmend\": {\n    \"form\": \"hartverwarmend\",\n    \"cornetto_id\": \"r_a-11631\",\n    \"cornetto_synset_id\": \"n_a-521480\",\n    \"wordnet_id\": \"a-01365544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weldadig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"hartvormig\": {\n    \"form\": \"hartvormig\",\n    \"cornetto_id\": \"r_a-11793\",\n    \"cornetto_synset_id\": \"n_a-512124\",\n    \"wordnet_id\": \"a-02167628\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met de vorm van een hart\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hatelijk\": {\n    \"form\": \"hatelijk\",\n    \"cornetto_id\": \"r_a-11834\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verfoeilijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hautain\": {\n    \"form\": \"hautain\",\n    \"cornetto_id\": \"r_a-11633\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hooghartig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"haveloos\": {\n    \"form\": \"haveloos\",\n    \"cornetto_id\": \"r_a-11634\",\n    \"cornetto_synset_id\": \"n_a-512137\",\n    \"wordnet_id\": \"a-02583271\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sjofel\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hebberig\": {\n    \"form\": \"hebberig\",\n    \"cornetto_id\": \"r_a-11635\",\n    \"cornetto_synset_id\": \"n_a-512165\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hebzuchtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hecht\": {\n    \"form\": \"hecht\",\n    \"cornetto_id\": \"r_a-11637\",\n    \"cornetto_synset_id\": \"n_a-506736\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"solide, onverbrekelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hectisch\": {\n    \"form\": \"hectisch\",\n    \"cornetto_id\": \"r_a-11638\",\n    \"cornetto_synset_id\": \"n_a-512174\",\n    \"wordnet_id\": \"a-00086210\",\n    \"pos\": \"JJ\",\n    \"sense\": \"druk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hedendaags\": {\n    \"form\": \"hedendaags\",\n    \"cornetto_id\": \"r_a-11639\",\n    \"cornetto_synset_id\": \"n_a-512180\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modern\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hedonistisch\": {\n    \"form\": \"hedonistisch\",\n    \"cornetto_id\": \"r_a-11794\",\n    \"cornetto_synset_id\": \"n_a-510355\",\n    \"wordnet_id\": \"a-01257145\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genotzuchtig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heel\": {\n    \"form\": \"heel\",\n    \"cornetto_id\": \"r_a-11833\",\n    \"cornetto_synset_id\": \"c_645\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanzienlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"heerlijk\": {\n    \"form\": \"heerlijk\",\n    \"cornetto_id\": \"r_a-11835\",\n    \"cornetto_synset_id\": \"c_472\",\n    \"wordnet_id\": \"a-03084397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"v.d. heer\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hees\": {\n    \"form\": \"hees\",\n    \"cornetto_id\": \"r_a-11724\",\n    \"cornetto_synset_id\": \"n_a-512205\",\n    \"wordnet_id\": \"a-01667110\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schor\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heet\": {\n    \"form\": \"heet\",\n    \"cornetto_id\": \"r_a-16589\",\n    \"cornetto_synset_id\": \"n_a-509978\",\n    \"wordnet_id\": \"a-02131668\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van mensen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"heetgebakerd\": {\n    \"form\": \"heetgebakerd\",\n    \"cornetto_id\": \"r_a-16591\",\n    \"cornetto_synset_id\": \"n_a-507579\",\n    \"wordnet_id\": \"a-01256865\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongeduldig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heftig\": {\n    \"form\": \"heftig\",\n    \"cornetto_id\": \"r_a-16593\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hevig, erg\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"heilig\": {\n    \"form\": \"heilig\",\n    \"cornetto_id\": \"r_a-16599\",\n    \"cornetto_synset_id\": \"n_a-520576\",\n    \"wordnet_id\": \"a-02055900\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fig.: onaantastbaar\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heilloos\": {\n    \"form\": \"heilloos\",\n    \"cornetto_id\": \"d_a-107367\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"heimelijk\": {\n    \"form\": \"heimelijk\",\n    \"cornetto_id\": \"r_a-16602\",\n    \"cornetto_synset_id\": \"n_a-512251\",\n    \"wordnet_id\": \"a-02090069\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stiekem\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"helblauw\": {\n    \"form\": \"helblauw\",\n    \"cornetto_id\": \"r_a-11796\",\n    \"cornetto_synset_id\": \"n_a-515369\",\n    \"wordnet_id\": \"a-00370267\",\n    \"pos\": \"JJ\",\n    \"sense\": \"felblauw\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"helder\": {\n    \"form\": \"helder\",\n    \"cornetto_id\": \"r_a-16607\",\n    \"cornetto_synset_id\": \"n_a-503401\",\n    \"wordnet_id\": \"a-00532892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van ideeën, formulering\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"heldhaftig\": {\n    \"form\": \"heldhaftig\",\n    \"cornetto_id\": \"r_a-16608\",\n    \"cornetto_synset_id\": \"d_a-9330\",\n    \"wordnet_id\": \"a-00251134\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heroïsch\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hels\": {\n    \"form\": \"hels\",\n    \"cornetto_id\": \"r_a-16609\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in de hel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"helwit\": {\n    \"form\": \"helwit\",\n    \"cornetto_id\": \"r_a-11801\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hagelwit\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hemels\": {\n    \"form\": \"hemels\",\n    \"cornetto_id\": \"r_a-16612\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schitterend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"hemelsbreed\": {\n    \"form\": \"hemelsbreed\",\n    \"cornetto_id\": \"r_a-16613\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer groot\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"hemeltergend\": {\n    \"form\": \"hemeltergend\",\n    \"cornetto_id\": \"r_a-11804\",\n    \"cornetto_synset_id\": \"n_a-512311\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoogst ergerlijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"herfstig\": {\n    \"form\": \"herfstig\",\n    \"cornetto_id\": \"r_a-11807\",\n    \"cornetto_synset_id\": \"n_a-512361\",\n    \"wordnet_id\": \"a-01255296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"herfstachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"herhaald\": {\n    \"form\": \"herhaald\",\n    \"cornetto_id\": \"r_a-11725\",\n    \"cornetto_synset_id\": \"n_a-512370\",\n    \"wordnet_id\": \"a-00592880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meerdere\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"herkenbaar\": {\n    \"form\": \"herkenbaar\",\n    \"cornetto_id\": \"r_a-11726\",\n    \"cornetto_synset_id\": \"n_a-512378\",\n    \"wordnet_id\": \"a-01272397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te herkennen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hermetisch\": {\n    \"form\": \"hermetisch\",\n    \"cornetto_id\": \"r_a-16616\",\n    \"cornetto_synset_id\": \"n_a-512384\",\n    \"wordnet_id\": \"a-01398772\",\n    \"pos\": \"JJ\",\n    \"sense\": \"luchtdicht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hersenloos\": {\n    \"form\": \"hersenloos\",\n    \"cornetto_id\": \"r_a-11808\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dom\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"heteroseksueel\": {\n    \"form\": \"heteroseksueel\",\n    \"cornetto_id\": \"r_a-11645\",\n    \"cornetto_synset_id\": \"n_a-512447\",\n    \"wordnet_id\": \"a-01201100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gericht op het andere geslacht\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hetzelfde\": {\n    \"form\": \"hetzelfde\",\n    \"cornetto_id\": \"d_a-409027\",\n    \"cornetto_synset_id\": \"d_a-9291\",\n    \"wordnet_id\": \"a-01839317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"heuristisch\": {\n    \"form\": \"heuristisch\",\n    \"cornetto_id\": \"r_a-11730\",\n    \"cornetto_synset_id\": \"n_a-512471\",\n    \"wordnet_id\": \"a-00092933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens de heuristiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heus\": {\n    \"form\": \"heus\",\n    \"cornetto_id\": \"r_a-11648\",\n    \"cornetto_synset_id\": \"d_a-9251\",\n    \"wordnet_id\": \"a-02180277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"echt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"heuvelachtig\": {\n    \"form\": \"heuvelachtig\",\n    \"cornetto_id\": \"r_a-11731\",\n    \"cornetto_synset_id\": \"n_a-512474\",\n    \"wordnet_id\": \"a-01234747\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol heuvels\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heuvelig\": {\n    \"form\": \"heuvelig\",\n    \"cornetto_id\": \"r_a-11812\",\n    \"cornetto_synset_id\": \"n_a-512474\",\n    \"wordnet_id\": \"a-01234747\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol heuvels\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hevig\": {\n    \"form\": \"hevig\",\n    \"cornetto_id\": \"r_a-11649\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sterk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"high\": {\n    \"form\": \"high\",\n    \"cornetto_id\": \"r_a-11732\",\n    \"cornetto_synset_id\": \"n_a-512496\",\n    \"wordnet_id\": \"a-00799401\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onder invloed van drugs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hightech\": {\n    \"form\": \"hightech\",\n    \"cornetto_id\": \"r_a-11651\",\n    \"cornetto_synset_id\": \"n_a-512505\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"technologisch hoogontwikkeld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hilarisch\": {\n    \"form\": \"hilarisch\",\n    \"cornetto_id\": \"d_a-109727\",\n    \"cornetto_synset_id\": \"n_a-517089\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"hinderlijk\": {\n    \"form\": \"hinderlijk\",\n    \"cornetto_id\": \"r_a-11652\",\n    \"cornetto_synset_id\": \"n_a-516807\",\n    \"wordnet_id\": \"a-00669942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lastig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"hip\": {\n    \"form\": \"hip\",\n    \"cornetto_id\": \"r_a-11653\",\n    \"cornetto_synset_id\": \"n_a-504364\",\n    \"wordnet_id\": \"a-00609564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modern\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"historisch\": {\n    \"form\": \"historisch\",\n    \"cornetto_id\": \"r_a-11655\",\n    \"cornetto_synset_id\": \"n_a-512540\",\n    \"wordnet_id\": \"a-01279028\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geschiedkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hobbelig\": {\n    \"form\": \"hobbelig\",\n    \"cornetto_id\": \"r_a-11657\",\n    \"cornetto_synset_id\": \"n_a-504473\",\n    \"wordnet_id\": \"a-02141735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel hobbels\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hologig\": {\n    \"form\": \"hologig\",\n    \"cornetto_id\": \"r_a-11816\",\n    \"cornetto_synset_id\": \"n_a-512666\",\n    \"wordnet_id\": \"a-00988988\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met diepliggende ogen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"homoseksueel\": {\n    \"form\": \"homoseksueel\",\n    \"cornetto_id\": \"r_a-11666\",\n    \"cornetto_synset_id\": \"d_a-9336\",\n    \"wordnet_id\": \"a-01201422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"seksueel gericht op zelfde geslacht\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"honderdjarig\": {\n    \"form\": \"honderdjarig\",\n    \"cornetto_id\": \"r_a-11736\",\n    \"cornetto_synset_id\": \"n_a-512718\",\n    \"wordnet_id\": \"a-01645048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van honderd jaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"honds\": {\n    \"form\": \"honds\",\n    \"cornetto_id\": \"r_a-11667\",\n    \"cornetto_synset_id\": \"n_a-512725\",\n    \"wordnet_id\": \"a-01549964\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeschoft\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hondsdol\": {\n    \"form\": \"hondsdol\",\n    \"cornetto_id\": \"r_a-11737\",\n    \"cornetto_synset_id\": \"n_a-512728\",\n    \"wordnet_id\": \"a-01726859\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijdend aan hondsdolheid\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hongerig\": {\n    \"form\": \"hongerig\",\n    \"cornetto_id\": \"r_a-11668\",\n    \"cornetto_synset_id\": \"n_a-512737\",\n    \"wordnet_id\": \"a-01136541\",\n    \"pos\": \"JJ\",\n    \"sense\": \"honger hebbend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoofdstedelijk\": {\n    \"form\": \"hoofdstedelijk\",\n    \"cornetto_id\": \"r_a-11738\",\n    \"cornetto_synset_id\": \"n_a-512821\",\n    \"wordnet_id\": \"a-02865172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de hoofdstad\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoofs\": {\n    \"form\": \"hoofs\",\n    \"cornetto_id\": \"r_a-11673\",\n    \"cornetto_synset_id\": \"d_a-9334\",\n    \"wordnet_id\": \"a-00021110\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoffelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoog\": {\n    \"form\": \"hoog\",\n    \"cornetto_id\": \"r_a-11678\",\n    \"cornetto_synset_id\": \"n_a-512844\",\n    \"wordnet_id\": \"a-00705498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ver in rang\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hoogbegaafd\": {\n    \"form\": \"hoogbegaafd\",\n    \"cornetto_id\": \"r_a-11739\",\n    \"cornetto_synset_id\": \"n_a-510334\",\n    \"wordnet_id\": \"a-00402855\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitengewoon begaafd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogbejaard\": {\n    \"form\": \"hoogbejaard\",\n    \"cornetto_id\": \"r_a-11740\",\n    \"cornetto_synset_id\": \"n_a-512849\",\n    \"wordnet_id\": \"a-01071794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel bejaard\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogblond\": {\n    \"form\": \"hoogblond\",\n    \"cornetto_id\": \"r_a-11679\",\n    \"cornetto_synset_id\": \"n_a-512850\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichtblond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogdravend\": {\n    \"form\": \"hoogdravend\",\n    \"cornetto_id\": \"r_a-11680\",\n    \"cornetto_synset_id\": \"n_a-504613\",\n    \"wordnet_id\": \"a-00073465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bombastisch\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hooggeplaatst\": {\n    \"form\": \"hooggeplaatst\",\n    \"cornetto_id\": \"r_a-11744\",\n    \"cornetto_synset_id\": \"n_a-512863\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voornaam\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"hooggespannen\": {\n    \"form\": \"hooggespannen\",\n    \"cornetto_id\": \"r_a-11682\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hooghartig\": {\n    \"form\": \"hooghartig\",\n    \"cornetto_id\": \"r_a-11683\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arrogant\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogmoedig\": {\n    \"form\": \"hoogmoedig\",\n    \"cornetto_id\": \"r_a-11685\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verwaand\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoognodig\": {\n    \"form\": \"hoognodig\",\n    \"cornetto_id\": \"r_a-11746\",\n    \"cornetto_synset_id\": \"n_a-512875\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dringend nodig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogstaand\": {\n    \"form\": \"hoogstaand\",\n    \"cornetto_id\": \"r_a-11686\",\n    \"cornetto_synset_id\": \"n_a-507937\",\n    \"wordnet_id\": \"a-01588172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verheven, goed\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hoogstwaarschijnlijk\": {\n    \"form\": \"hoogstwaarschijnlijk\",\n    \"cornetto_id\": \"r_a-11749\",\n    \"cornetto_synset_id\": \"n_a-512887\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer waarschijnlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogwaardig\": {\n    \"form\": \"hoogwaardig\",\n    \"cornetto_id\": \"r_a-11839\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerbiedwaardig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoogzwanger\": {\n    \"form\": \"hoogzwanger\",\n    \"cornetto_id\": \"r_a-11821\",\n    \"cornetto_synset_id\": \"n_a-512897\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vergevorderd zwanger\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoopgevend\": {\n    \"form\": \"hoopgevend\",\n    \"cornetto_id\": \"r_a-11688\",\n    \"cornetto_synset_id\": \"n_a-503563\",\n    \"wordnet_id\": \"a-00176387\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoopvol stemmend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hoopvol\": {\n    \"form\": \"hoopvol\",\n    \"cornetto_id\": \"r_a-11842\",\n    \"cornetto_synset_id\": \"n_a-503563\",\n    \"wordnet_id\": \"a-00176387\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelbelovend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hoorbaar\": {\n    \"form\": \"hoorbaar\",\n    \"cornetto_id\": \"r_a-11751\",\n    \"cornetto_synset_id\": \"d_a-9339\",\n    \"wordnet_id\": \"a-00173764\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te horen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hopeloos\": {\n    \"form\": \"hopeloos\",\n    \"cornetto_id\": \"r_a-11690\",\n    \"cornetto_synset_id\": \"d_a-9340\",\n    \"wordnet_id\": \"a-00263463\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitzichtloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"horizontaal\": {\n    \"form\": \"horizontaal\",\n    \"cornetto_id\": \"r_a-11692\",\n    \"cornetto_synset_id\": \"n_a-512945\",\n    \"wordnet_id\": \"a-00652692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evenwijdig aan de horizon\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"houterig\": {\n    \"form\": \"houterig\",\n    \"cornetto_id\": \"r_a-11696\",\n    \"cornetto_synset_id\": \"n_a-529331\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stijf, niet vloeiend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hovaardig\": {\n    \"form\": \"hovaardig\",\n    \"cornetto_id\": \"r_a-11824\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoogmoedig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"huidig\": {\n    \"form\": \"huidig\",\n    \"cornetto_id\": \"r_a-11753\",\n    \"cornetto_synset_id\": \"n_a-513031\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van nu\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"huiselijk\": {\n    \"form\": \"huiselijk\",\n    \"cornetto_id\": \"r_a-11846\",\n    \"cornetto_synset_id\": \"n_a-513054\",\n    \"wordnet_id\": \"a-01036754\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. gezin, huishouden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"huishoudelijk\": {\n    \"form\": \"huishoudelijk\",\n    \"cornetto_id\": \"r_a-11848\",\n    \"cornetto_synset_id\": \"n_a-513060\",\n    \"wordnet_id\": \"a-01038102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. dagelijkse aangelegenheden\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"huiverig\": {\n    \"form\": \"huiverig\",\n    \"cornetto_id\": \"r_a-11698\",\n    \"cornetto_synset_id\": \"n_a-534522\",\n    \"wordnet_id\": \"a-00162386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"terugdeinzend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"huiveringwekkend\": {\n    \"form\": \"huiveringwekkend\",\n    \"cornetto_id\": \"r_a-11755\",\n    \"cornetto_synset_id\": \"n_a-513370\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijzingwekkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"hulpeloos\": {\n    \"form\": \"hulpeloos\",\n    \"cornetto_id\": \"r_a-11700\",\n    \"cornetto_synset_id\": \"n_a-513099\",\n    \"wordnet_id\": \"a-01827535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"machteloos\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humaan\": {\n    \"form\": \"humaan\",\n    \"cornetto_id\": \"r_a-11702\",\n    \"cornetto_synset_id\": \"d_a-9401\",\n    \"wordnet_id\": \"a-01258617\",\n    \"pos\": \"JJ\",\n    \"sense\": \"menselijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humanistisch\": {\n    \"form\": \"humanistisch\",\n    \"cornetto_id\": \"r_a-11703\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van het humanisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humeurig\": {\n    \"form\": \"humeurig\",\n    \"cornetto_id\": \"r_a-11704\",\n    \"cornetto_synset_id\": \"d_a-9521\",\n    \"wordnet_id\": \"a-00703615\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(gauw) uit zijn humeur\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humoristisch\": {\n    \"form\": \"humoristisch\",\n    \"cornetto_id\": \"r_a-11705\",\n    \"cornetto_synset_id\": \"d_a-9285\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geestig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"humorvol\": {\n    \"form\": \"humorvol\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hups\": {\n    \"form\": \"hups\",\n    \"cornetto_id\": \"r_a-11759\",\n    \"cornetto_synset_id\": \"c_338\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aardig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"huwbaar\": {\n    \"form\": \"huwbaar\",\n    \"cornetto_id\": \"r_a-11827\",\n    \"cornetto_synset_id\": \"n_a-513161\",\n    \"wordnet_id\": \"a-01489325\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leeftijd hebbend om te trouwen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hyperactief\": {\n    \"form\": \"hyperactief\",\n    \"cornetto_id\": \"r_a-11828\",\n    \"cornetto_synset_id\": \"n_a-513213\",\n    \"wordnet_id\": \"a-00033206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overactief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hypermodern\": {\n    \"form\": \"hypermodern\",\n    \"cornetto_id\": \"r_a-11762\",\n    \"cornetto_synset_id\": \"n_a-513228\",\n    \"wordnet_id\": \"a-01536641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"supermodern\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"hypnotisch\": {\n    \"form\": \"hypnotisch\",\n    \"cornetto_id\": \"r_a-11708\",\n    \"cornetto_synset_id\": \"n_a-513236\",\n    \"wordnet_id\": \"a-00168188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. hypnose\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"hypocriet\": {\n    \"form\": \"hypocriet\",\n    \"cornetto_id\": \"r_a-11709\",\n    \"cornetto_synset_id\": \"n_a-513027\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"huichelachtig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hypothetisch\": {\n    \"form\": \"hypothetisch\",\n    \"cornetto_id\": \"r_a-11710\",\n    \"cornetto_synset_id\": \"n_a-513252\",\n    \"wordnet_id\": \"a-00028471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"speculatief\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ideaal\": {\n    \"form\": \"ideaal\",\n    \"cornetto_id\": \"r_a-11853\",\n    \"cornetto_synset_id\": \"n_a-513278\",\n    \"wordnet_id\": \"a-00012689\",\n    \"pos\": \"JJ\",\n    \"sense\": \"perfect\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"idealistisch\": {\n    \"form\": \"idealistisch\",\n    \"cornetto_id\": \"r_a-11854\",\n    \"cornetto_synset_id\": \"n_a-513280\",\n    \"wordnet_id\": \"a-01588619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol idealen\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ideëel\": {\n    \"form\": \"ideëel\",\n    \"cornetto_id\": \"r_a-11856\",\n    \"cornetto_synset_id\": \"n_a-513277\",\n    \"wordnet_id\": \"a-00484333\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit idealisme\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"idioot\": {\n    \"form\": \"idioot\",\n    \"cornetto_id\": \"r_a-11859\",\n    \"cornetto_synset_id\": \"n_a-503782\",\n    \"wordnet_id\": \"a-01840880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belachelijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"idioten\": {\n    \"form\": \"idioten\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idolaat\": {\n    \"form\": \"idolaat\",\n    \"cornetto_id\": \"r_a-11860\",\n    \"cornetto_synset_id\": \"n_a-507870\",\n    \"wordnet_id\": \"a-00054109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gek van iemand of iets\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ijl\": {\n    \"form\": \"ijl\",\n    \"cornetto_id\": \"r_a-11867\",\n    \"cornetto_synset_id\": \"n_a-513320\",\n    \"wordnet_id\": \"a-00017024\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dun\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ijselijk\": {\n    \"form\": \"ijselijk\",\n    \"cornetto_id\": \"r_a-11868\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verschrikkelijk\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"ijskoud\": {\n    \"form\": \"ijskoud\",\n    \"cornetto_id\": \"r_a-12046\",\n    \"cornetto_synset_id\": \"n_a-513368\",\n    \"wordnet_id\": \"a-01258264\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongevoelig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ijsvrij\": {\n    \"form\": \"ijsvrij\",\n    \"cornetto_id\": \"r_a-11968\",\n    \"cornetto_synset_id\": \"n_a-513342\",\n    \"wordnet_id\": \"a-01079857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrij van ijs\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ijzersterk\": {\n    \"form\": \"ijzersterk\",\n    \"cornetto_id\": \"r_a-11873\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg goed\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"ijzig\": {\n    \"form\": \"ijzig\",\n    \"cornetto_id\": \"r_a-12049\",\n    \"cornetto_synset_id\": \"c_127\",\n    \"wordnet_id\": \"a-01079240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedekt met ijs\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ijzingwekkend\": {\n    \"form\": \"ijzingwekkend\",\n    \"cornetto_id\": \"r_a-11876\",\n    \"cornetto_synset_id\": \"n_a-513370\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"griezelig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"illegaal\": {\n    \"form\": \"illegaal\",\n    \"cornetto_id\": \"r_a-11877\",\n    \"cornetto_synset_id\": \"n_a-513378\",\n    \"wordnet_id\": \"a-01402580\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwettig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"illusoir\": {\n    \"form\": \"illusoir\",\n    \"cornetto_id\": \"r_a-11969\",\n    \"cornetto_synset_id\": \"n_a-506637\",\n    \"wordnet_id\": \"a-00011757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"denkbeeldig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illuster\": {\n    \"form\": \"illuster\",\n    \"cornetto_id\": \"r_a-11878\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beroemd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"illustratief\": {\n    \"form\": \"illustratief\",\n    \"cornetto_id\": \"r_a-11879\",\n    \"cornetto_synset_id\": \"n_a-532347\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verduidelijkend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immens\": {\n    \"form\": \"immens\",\n    \"cornetto_id\": \"r_a-11883\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enorm\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"immoreel\": {\n    \"form\": \"immoreel\",\n    \"cornetto_id\": \"r_a-11884\",\n    \"cornetto_synset_id\": \"d_a-9342\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in strijd met morele principes\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immunologisch\": {\n    \"form\": \"immunologisch\",\n    \"cornetto_id\": \"r_a-11971\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de immunologie betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imperialistisch\": {\n    \"form\": \"imperialistisch\",\n    \"cornetto_id\": \"r_a-11886\",\n    \"cornetto_synset_id\": \"n_a-513420\",\n    \"wordnet_id\": \"a-03074368\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het imperialisme betreffend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impertinent\": {\n    \"form\": \"impertinent\",\n    \"cornetto_id\": \"r_a-11887\",\n    \"cornetto_synset_id\": \"d_a-9207\",\n    \"wordnet_id\": \"a-00155720\",\n    \"pos\": \"JJ\",\n    \"sense\": \"brutaal\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impliciet\": {\n    \"form\": \"impliciet\",\n    \"cornetto_id\": \"r_a-11888\",\n    \"cornetto_synset_id\": \"n_a-513423\",\n    \"wordnet_id\": \"a-00942163\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet expliciet\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"impopulair\": {\n    \"form\": \"impopulair\",\n    \"cornetto_id\": \"r_a-11972\",\n    \"cornetto_synset_id\": \"n_a-520667\",\n    \"wordnet_id\": \"a-01463137\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet populair\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"imposant\": {\n    \"form\": \"imposant\",\n    \"cornetto_id\": \"r_a-11889\",\n    \"cornetto_synset_id\": \"n_a-513568\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indrukwekkend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"impressief\": {\n    \"form\": \"impressief\",\n    \"cornetto_id\": \"d_a-119631\",\n    \"cornetto_synset_id\": \"n_a-513568\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"impressionistisch\": {\n    \"form\": \"impressionistisch\",\n    \"cornetto_id\": \"r_a-11973\",\n    \"cornetto_synset_id\": \"n_a-513432\",\n    \"wordnet_id\": \"a-02747466\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals bij het impressionisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"improductief\": {\n    \"form\": \"improductief\",\n    \"cornetto_id\": \"r_a-11974\",\n    \"cornetto_synset_id\": \"n_a-521386\",\n    \"wordnet_id\": \"a-01866535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet productief\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impulsief\": {\n    \"form\": \"impulsief\",\n    \"cornetto_id\": \"r_a-11891\",\n    \"cornetto_synset_id\": \"n_a-528657\",\n    \"wordnet_id\": \"a-00074594\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneigd impulsen te volgen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incidenteel\": {\n    \"form\": \"incidenteel\",\n    \"cornetto_id\": \"r_a-11894\",\n    \"cornetto_synset_id\": \"d_a-9458\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet frequent\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inclusief\": {\n    \"form\": \"inclusief\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"incoherent\": {\n    \"form\": \"incoherent\",\n    \"cornetto_id\": \"r_a-11975\",\n    \"cornetto_synset_id\": \"n_a-521393\",\n    \"wordnet_id\": \"a-00436115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onsamenhangend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inconsequent\": {\n    \"form\": \"inconsequent\",\n    \"cornetto_id\": \"r_a-11978\",\n    \"cornetto_synset_id\": \"n_a-513519\",\n    \"wordnet_id\": \"a-01280349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet consequent\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incorrect\": {\n    \"form\": \"incorrect\",\n    \"cornetto_id\": \"r_a-12058\",\n    \"cornetto_synset_id\": \"n_a-521127\",\n    \"wordnet_id\": \"a-00136081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongepast\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indirect\": {\n    \"form\": \"indirect\",\n    \"cornetto_id\": \"r_a-11896\",\n    \"cornetto_synset_id\": \"n_a-513551\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet direct\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"indiscreet\": {\n    \"form\": \"indiscreet\",\n    \"cornetto_id\": \"r_a-12022\",\n    \"cornetto_synset_id\": \"n_a-521258\",\n    \"wordnet_id\": \"a-00773109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbescheiden, onkies\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indringend\": {\n    \"form\": \"indringend\",\n    \"cornetto_id\": \"r_a-11900\",\n    \"cornetto_synset_id\": \"n_a-513565\",\n    \"wordnet_id\": \"a-00842324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een diepe indruk achterlatend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"indrukwekkend\": {\n    \"form\": \"indrukwekkend\",\n    \"cornetto_id\": \"r_a-11901\",\n    \"cornetto_synset_id\": \"n_a-513568\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"imponerend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"industrieel\": {\n    \"form\": \"industrieel\",\n    \"cornetto_id\": \"r_a-11902\",\n    \"cornetto_synset_id\": \"d_a-9344\",\n    \"wordnet_id\": \"a-01188648\",\n    \"pos\": \"JJ\",\n    \"sense\": \"industrie betreffend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ineffectief\": {\n    \"form\": \"ineffectief\",\n    \"cornetto_id\": \"r_a-11980\",\n    \"cornetto_synset_id\": \"n_a-520941\",\n    \"wordnet_id\": \"a-00839411\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet effectief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"infantiel\": {\n    \"form\": \"infantiel\",\n    \"cornetto_id\": \"r_a-11905\",\n    \"cornetto_synset_id\": \"n_a-514998\",\n    \"wordnet_id\": \"a-01493016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg kinderachtig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inferieur\": {\n    \"form\": \"inferieur\",\n    \"cornetto_id\": \"r_a-11906\",\n    \"cornetto_synset_id\": \"n_a-518934\",\n    \"wordnet_id\": \"a-01673061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"minderwaardig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"inflatoir\": {\n    \"form\": \"inflatoir\",\n    \"cornetto_id\": \"r_a-11982\",\n    \"cornetto_synset_id\": \"n_a-513611\",\n    \"wordnet_id\": \"a-02538626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leidend tot inflatie\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"informatief\": {\n    \"form\": \"informatief\",\n    \"cornetto_id\": \"r_a-11907\",\n    \"cornetto_synset_id\": \"n_a-516919\",\n    \"wordnet_id\": \"a-01325777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"informatie bevattend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"infrastructureel\": {\n    \"form\": \"infrastructureel\",\n    \"cornetto_id\": \"r_a-11983\",\n    \"cornetto_synset_id\": \"n_a-513636\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de infrastructuur betreffend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingeboren\": {\n    \"form\": \"ingeboren\",\n    \"cornetto_id\": \"r_a-12025\",\n    \"cornetto_synset_id\": \"n_a-513683\",\n    \"wordnet_id\": \"a-00489768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangeboren\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingenieus\": {\n    \"form\": \"ingenieus\",\n    \"cornetto_id\": \"r_a-11916\",\n    \"cornetto_synset_id\": \"n_a-533083\",\n    \"wordnet_id\": \"a-00307182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vernuftig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ingetogen\": {\n    \"form\": \"ingetogen\",\n    \"cornetto_id\": \"r_a-11920\",\n    \"cornetto_synset_id\": \"n_a-513680\",\n    \"wordnet_id\": \"a-01532912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet uitbundig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ingevroren\": {\n    \"form\": \"ingevroren\",\n    \"cornetto_id\": \"r_a-12030\",\n    \"cornetto_synset_id\": \"n_a-513682\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bevroren ter conservering\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingewikkeld\": {\n    \"form\": \"ingewikkeld\",\n    \"cornetto_id\": \"r_a-11922\",\n    \"cornetto_synset_id\": \"d_a-9348\",\n    \"wordnet_id\": \"a-02176178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet eenvoudig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ingrijpend\": {\n    \"form\": \"ingrijpend\",\n    \"cornetto_id\": \"r_a-11923\",\n    \"cornetto_synset_id\": \"n_a-513689\",\n    \"wordnet_id\": \"a-00526062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van grote invloed\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"inhoudelijk\": {\n    \"form\": \"inhoudelijk\",\n    \"cornetto_id\": \"r_a-11927\",\n    \"cornetto_synset_id\": \"n_a-513698\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de inhoud betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"inktzwart\": {\n    \"form\": \"inktzwart\",\n    \"cornetto_id\": \"r_a-11990\",\n    \"cornetto_synset_id\": \"n_a-523373\",\n    \"wordnet_id\": \"a-00054364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel zwart\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"innerlijk\": {\n    \"form\": \"innerlijk\",\n    \"cornetto_id\": \"r_a-11931\",\n    \"cornetto_synset_id\": \"d_a-9349\",\n    \"wordnet_id\": \"a-00900616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van binnen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"innig\": {\n    \"form\": \"innig\",\n    \"cornetto_id\": \"r_a-11933\",\n    \"cornetto_synset_id\": \"n_a-513758\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"warm\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insolvent\": {\n    \"form\": \"insolvent\",\n    \"cornetto_id\": \"r_a-12035\",\n    \"cornetto_synset_id\": \"n_a-513801\",\n    \"wordnet_id\": \"a-02026442\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvoldoende geld bezittend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inspannend\": {\n    \"form\": \"inspannend\",\n    \"cornetto_id\": \"r_a-12036\",\n    \"cornetto_synset_id\": \"n_a-513802\",\n    \"wordnet_id\": \"a-00836544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg vermoeiend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inspirerend\": {\n    \"form\": \"inspirerend\",\n    \"cornetto_id\": \"r_a-12037\",\n    \"cornetto_synset_id\": \"n_a-513804\",\n    \"wordnet_id\": \"a-01323096\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inspiratie gevend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instemmend\": {\n    \"form\": \"instemmend\",\n    \"cornetto_id\": \"r_a-11994\",\n    \"cornetto_synset_id\": \"n_a-503932\",\n    \"wordnet_id\": \"a-00075135\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van instemming getuigend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instinctief\": {\n    \"form\": \"instinctief\",\n    \"cornetto_id\": \"r_a-11935\",\n    \"cornetto_synset_id\": \"n_a-513820\",\n    \"wordnet_id\": \"a-02282985\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevoelsmatig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"instinctmatig\": {\n    \"form\": \"instinctmatig\",\n    \"cornetto_id\": \"r_a-12039\",\n    \"cornetto_synset_id\": \"n_a-513820\",\n    \"wordnet_id\": \"a-02282985\",\n    \"pos\": \"JJ\",\n    \"sense\": \"instinctief\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instructief\": {\n    \"form\": \"instructief\",\n    \"cornetto_id\": \"r_a-11936\",\n    \"cornetto_synset_id\": \"n_a-516919\",\n    \"wordnet_id\": \"a-01325777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leerzaam\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"instrumentaal\": {\n    \"form\": \"instrumentaal\",\n    \"cornetto_id\": \"r_a-12071\",\n    \"cornetto_synset_id\": \"n_a-513831\",\n    \"wordnet_id\": \"a-02825770\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met muziekinstrumenten\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instrumenteel\": {\n    \"form\": \"instrumenteel\",\n    \"cornetto_id\": \"r_a-11996\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als instrument dienend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"integer\": {\n    \"form\": \"integer\",\n    \"cornetto_id\": \"r_a-11938\",\n    \"cornetto_synset_id\": \"n_a-513844\",\n    \"wordnet_id\": \"a-00622935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onkreukbaar\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intellectueel\": {\n    \"form\": \"intellectueel\",\n    \"cornetto_id\": \"r_a-11940\",\n    \"cornetto_synset_id\": \"n_a-532721\",\n    \"wordnet_id\": \"a-01332386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verstandelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intelligent\": {\n    \"form\": \"intelligent\",\n    \"cornetto_id\": \"r_a-11941\",\n    \"cornetto_synset_id\": \"c_239\",\n    \"wordnet_id\": \"a-01334398\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schrander\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intens\": {\n    \"form\": \"intens\",\n    \"cornetto_id\": \"r_a-11942\",\n    \"cornetto_synset_id\": \"n_a-513857\",\n    \"wordnet_id\": \"a-01839317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hevig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"interessant\": {\n    \"form\": \"interessant\",\n    \"cornetto_id\": \"r_a-12075\",\n    \"cornetto_synset_id\": \"n_a-513884\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"financieel aantrekkelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intergemeentelijk\": {\n    \"form\": \"intergemeentelijk\",\n    \"cornetto_id\": \"r_a-12000\",\n    \"cornetto_synset_id\": \"n_a-513891\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tussen gemeenten\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"internationaal\": {\n    \"form\": \"internationaal\",\n    \"cornetto_id\": \"r_a-11949\",\n    \"cornetto_synset_id\": \"d_a-9351\",\n    \"wordnet_id\": \"a-01037885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verschillende landen betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"intiem\": {\n    \"form\": \"intiem\",\n    \"cornetto_id\": \"r_a-12079\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"seksualiteit betreffend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intolerant\": {\n    \"form\": \"intolerant\",\n    \"cornetto_id\": \"r_a-11952\",\n    \"cornetto_synset_id\": \"n_a-521576\",\n    \"wordnet_id\": \"a-02436794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverdraagzaam\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intrigerend\": {\n    \"form\": \"intrigerend\",\n    \"cornetto_id\": \"d_a-412260\",\n    \"cornetto_synset_id\": \"n_a-508834\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intrinsiek\": {\n    \"form\": \"intrinsiek\",\n    \"cornetto_id\": \"r_a-12008\",\n    \"cornetto_synset_id\": \"d_a-9349\",\n    \"wordnet_id\": \"a-00900616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eigen aan iets\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"invalide\": {\n    \"form\": \"invalide\",\n    \"cornetto_id\": \"r_a-11956\",\n    \"cornetto_synset_id\": \"d_a-9355\",\n    \"wordnet_id\": \"a-01019283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gehandicapt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inventief\": {\n    \"form\": \"inventief\",\n    \"cornetto_id\": \"r_a-11957\",\n    \"cornetto_synset_id\": \"n_a-533083\",\n    \"wordnet_id\": \"a-00307182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vindingrijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"invloedrijk\": {\n    \"form\": \"invloedrijk\",\n    \"cornetto_id\": \"r_a-11958\",\n    \"cornetto_synset_id\": \"n_a-518022\",\n    \"wordnet_id\": \"a-01826575\",\n    \"pos\": \"JJ\",\n    \"sense\": \"invloed hebbend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"inzichtelijk\": {\n    \"form\": \"inzichtelijk\",\n    \"cornetto_id\": \"r_a-11961\",\n    \"cornetto_synset_id\": \"n_a-503401\",\n    \"wordnet_id\": \"a-00532892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helder\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ironisch\": {\n    \"form\": \"ironisch\",\n    \"cornetto_id\": \"r_a-11962\",\n    \"cornetto_synset_id\": \"n_a-528735\",\n    \"wordnet_id\": \"a-00563288\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met ironie\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"irrationeel\": {\n    \"form\": \"irrationeel\",\n    \"cornetto_id\": \"r_a-12011\",\n    \"cornetto_synset_id\": \"n_a-520679\",\n    \"wordnet_id\": \"a-01926376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet rationeel\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irrelevant\": {\n    \"form\": \"irrelevant\",\n    \"cornetto_id\": \"r_a-12013\",\n    \"cornetto_synset_id\": \"n_a-514034\",\n    \"wordnet_id\": \"a-01972596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet relevant\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irreëel\": {\n    \"form\": \"irreëel\",\n    \"cornetto_id\": \"r_a-12083\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onrealistisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.8\"\n  },\n  \"irritant\": {\n    \"form\": \"irritant\",\n    \"cornetto_id\": \"r_a-11963\",\n    \"cornetto_synset_id\": \"n_a-514040\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ergerlijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"irritatie\": {\n    \"form\": \"irritatie\",\n    \"cornetto_id\": \"r_n-18289\",\n    \"cornetto_synset_id\": \"d_n-33526\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jachtig\": {\n    \"form\": \"jachtig\",\n    \"cornetto_id\": \"r_a-12085\",\n    \"cornetto_synset_id\": \"n_a-511750\",\n    \"wordnet_id\": \"a-00086210\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gejaagd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jaloers\": {\n    \"form\": \"jaloers\",\n    \"cornetto_id\": \"r_a-12086\",\n    \"cornetto_synset_id\": \"d_a-9356\",\n    \"wordnet_id\": \"a-01113636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgunstig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jammer\": {\n    \"form\": \"jammer\",\n    \"cornetto_id\": \"r_a-12087\",\n    \"cornetto_synset_id\": \"n_a-503876\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spijtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jammerlijk\": {\n    \"form\": \"jammerlijk\",\n    \"cornetto_id\": \"r_a-12088\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spijtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jarenlang\": {\n    \"form\": \"jarenlang\",\n    \"cornetto_id\": \"r_a-12278\",\n    \"cornetto_synset_id\": \"n_a-514126\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedurende zeer lange tijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jarig\": {\n    \"form\": \"jarig\",\n    \"cornetto_id\": \"r_a-12089\",\n    \"cornetto_synset_id\": \"n_a-514127\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezegd van iemand op geboortedag\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jazzy\": {\n    \"form\": \"jazzy\",\n    \"cornetto_id\": \"r_a-12343\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op jazz lijkend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jemig\": {\n    \"form\": \"jemig\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jeugdig\": {\n    \"form\": \"jeugdig\",\n    \"cornetto_id\": \"r_a-12090\",\n    \"cornetto_synset_id\": \"n_a-514159\",\n    \"wordnet_id\": \"a-01649651\",\n    \"pos\": \"JJ\",\n    \"sense\": \"jong of jong lijkend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jolig\": {\n    \"form\": \"jolig\",\n    \"cornetto_id\": \"r_a-12092\",\n    \"cornetto_synset_id\": \"n_a-531696\",\n    \"wordnet_id\": \"a-00705498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgelaten\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jong\": {\n    \"form\": \"jong\",\n    \"cornetto_id\": \"r_a-12094\",\n    \"cornetto_synset_id\": \"n_a-525158\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kort bestaand\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jonggestorven\": {\n    \"form\": \"jonggestorven\",\n    \"cornetto_id\": \"r_a-12346\",\n    \"cornetto_synset_id\": \"n_a-514218\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroeg gestorven\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"journalistiek\": {\n    \"form\": \"journalistiek\",\n    \"cornetto_id\": \"r_a-12281\",\n    \"cornetto_synset_id\": \"n_a-514226\",\n    \"wordnet_id\": \"a-03077419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betreffende het werk van journalisten\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"juist\": {\n    \"form\": \"juist\",\n    \"cornetto_id\": \"r_a-12098\",\n    \"cornetto_synset_id\": \"d_a-9306\",\n    \"wordnet_id\": \"a-01020885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meest geschikt\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"juridisch\": {\n    \"form\": \"juridisch\",\n    \"cornetto_id\": \"r_a-12100\",\n    \"cornetto_synset_id\": \"n_a-514272\",\n    \"wordnet_id\": \"a-01395617\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rechtskundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"justitieel\": {\n    \"form\": \"justitieel\",\n    \"cornetto_id\": \"r_a-12101\",\n    \"cornetto_synset_id\": \"n_a-510462\",\n    \"wordnet_id\": \"a-01400562\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gerechtelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"juweeltje\": {\n    \"form\": \"juweeltje\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"kaarsrecht\": {\n    \"form\": \"kaarsrecht\",\n    \"cornetto_id\": \"r_a-12558\",\n    \"cornetto_synset_id\": \"n_a-514314\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal recht\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kaduuk\": {\n    \"form\": \"kaduuk\",\n    \"cornetto_id\": \"r_a-12392\",\n    \"cornetto_synset_id\": \"d_a-9361\",\n    \"wordnet_id\": \"a-00289082\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stuk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kakelvers\": {\n    \"form\": \"kakelvers\",\n    \"cornetto_id\": \"r_a-12613\",\n    \"cornetto_synset_id\": \"n_a-514369\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kersvers\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kalm\": {\n    \"form\": \"kalm\",\n    \"cornetto_id\": \"r_a-12394\",\n    \"cornetto_synset_id\": \"d_a-9360\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rustig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"kankerverwekkend\": {\n    \"form\": \"kankerverwekkend\",\n    \"cornetto_id\": \"r_a-12561\",\n    \"cornetto_synset_id\": \"n_a-514469\",\n    \"wordnet_id\": \"a-02679858\",\n    \"pos\": \"JJ\",\n    \"sense\": \"carcinogeen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kansarm\": {\n    \"form\": \"kansarm\",\n    \"cornetto_id\": \"r_a-12396\",\n    \"cornetto_synset_id\": \"n_a-514474\",\n    \"wordnet_id\": \"a-01864471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met weinig kansen om vooruit te komen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kansloos\": {\n    \"form\": \"kansloos\",\n    \"cornetto_id\": \"r_a-12562\",\n    \"cornetto_synset_id\": \"n_a-514476\",\n    \"wordnet_id\": \"a-02492383\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder kans\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kansrijk\": {\n    \"form\": \"kansrijk\",\n    \"cornetto_id\": \"r_a-12563\",\n    \"cornetto_synset_id\": \"n_a-532117\",\n    \"wordnet_id\": \"a-00382173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel kans van slagen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kant-en-klaar\": {\n    \"form\": \"kant-en-klaar\",\n    \"cornetto_id\": \"r_a-12397\",\n    \"cornetto_synset_id\": \"n_a-514481\",\n    \"wordnet_id\": \"a-00672932\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klaar voor gebruik\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kapot\": {\n    \"form\": \"kapot\",\n    \"cornetto_id\": \"r_a-12402\",\n    \"cornetto_synset_id\": \"c_527\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg onder de indruk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kardinaal\": {\n    \"form\": \"kardinaal\",\n    \"cornetto_id\": \"r_a-12404\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangrijkste\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"karig\": {\n    \"form\": \"karig\",\n    \"cornetto_id\": \"r_a-12405\",\n    \"cornetto_synset_id\": \"d_a-9632\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet royaal\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"karikaturaal\": {\n    \"form\": \"karikaturaal\",\n    \"cornetto_id\": \"r_a-12617\",\n    \"cornetto_synset_id\": \"n_a-514584\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een karikatuur\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"katholiek\": {\n    \"form\": \"katholiek\",\n    \"cornetto_id\": \"r_a-12686\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"katoenen\": {\n    \"form\": \"katoenen\",\n    \"cornetto_id\": \"r_a-12566\",\n    \"cornetto_synset_id\": \"n_a-514673\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van katoen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"katterig\": {\n    \"form\": \"katterig\",\n    \"cornetto_id\": \"r_a-12407\",\n    \"cornetto_synset_id\": \"n_a-509539\",\n    \"wordnet_id\": \"a-00876204\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet lekker\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"keigoed\": {\n    \"form\": \"keigoed\",\n    \"cornetto_id\": \"r_a-12619\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"steengoed\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.8\"\n  },\n  \"keihard\": {\n    \"form\": \"keihard\",\n    \"cornetto_id\": \"r_a-12567\",\n    \"cornetto_synset_id\": \"n_a-514712\",\n    \"wordnet_id\": \"a-01024812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel hard\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"keiig\": {\n    \"form\": \"keiig\",\n    \"cornetto_id\": \"d_a-132455\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kenmerkend\": {\n    \"form\": \"kenmerkend\",\n    \"cornetto_id\": \"r_a-12413\",\n    \"cornetto_synset_id\": \"n_a-514566\",\n    \"wordnet_id\": \"a-00356926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"typerend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kennelijk\": {\n    \"form\": \"kennelijk\",\n    \"cornetto_id\": \"r_a-12568\",\n    \"cornetto_synset_id\": \"c_261\",\n    \"wordnet_id\": \"a-00431447\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klaarblijkelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"kerks\": {\n    \"form\": \"kerks\",\n    \"cornetto_id\": \"r_a-12416\",\n    \"cornetto_synset_id\": \"n_a-514779\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaak naar de kerk gaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kerngezond\": {\n    \"form\": \"kerngezond\",\n    \"cornetto_id\": \"r_a-12570\",\n    \"cornetto_synset_id\": \"n_a-514800\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal gezond\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kernwapenvrij\": {\n    \"form\": \"kernwapenvrij\",\n    \"cornetto_id\": \"r_a-12571\",\n    \"cornetto_synset_id\": \"n_a-514817\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrij van kernwapens\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ketters\": {\n    \"form\": \"ketters\",\n    \"cornetto_id\": \"r_a-12573\",\n    \"cornetto_synset_id\": \"d_a-9363\",\n    \"wordnet_id\": \"a-01691474\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) van een ketter\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"keurig\": {\n    \"form\": \"keurig\",\n    \"cornetto_id\": \"r_a-12418\",\n    \"cornetto_synset_id\": \"n_a-503731\",\n    \"wordnet_id\": \"a-01947741\",\n    \"pos\": \"JJ\",\n    \"sense\": \"netjes\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kien\": {\n    \"form\": \"kien\",\n    \"cornetto_id\": \"d_a-133980\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kies\": {\n    \"form\": \"kies\",\n    \"cornetto_id\": \"r_a-12420\",\n    \"cornetto_synset_id\": \"n_a-514922\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tactvol\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kiesgerechtigd\": {\n    \"form\": \"kiesgerechtigd\",\n    \"cornetto_id\": \"r_a-12622\",\n    \"cornetto_synset_id\": \"n_a-514924\",\n    \"wordnet_id\": \"a-00876609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kiesrecht hebbend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kil\": {\n    \"form\": \"kil\",\n    \"cornetto_id\": \"r_a-12423\",\n    \"cornetto_synset_id\": \"n_a-515500\",\n    \"wordnet_id\": \"a-01257612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet hartelijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kilometerslang\": {\n    \"form\": \"kilometerslang\",\n    \"cornetto_id\": \"r_a-12574\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel lang\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"kinderachtig\": {\n    \"form\": \"kinderachtig\",\n    \"cornetto_id\": \"r_a-12425\",\n    \"cornetto_synset_id\": \"n_a-514975\",\n    \"wordnet_id\": \"a-00265314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleinzielig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"kinderlijk\": {\n    \"form\": \"kinderlijk\",\n    \"cornetto_id\": \"r_a-12426\",\n    \"cornetto_synset_id\": \"n_a-514998\",\n    \"wordnet_id\": \"a-01493016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als, van een kind\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"kinderloos\": {\n    \"form\": \"kinderloos\",\n    \"cornetto_id\": \"r_a-12575\",\n    \"cornetto_synset_id\": \"n_a-515001\",\n    \"wordnet_id\": \"a-01082998\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder kinderen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kinds\": {\n    \"form\": \"kinds\",\n    \"cornetto_id\": \"r_a-12427\",\n    \"cornetto_synset_id\": \"n_a-515033\",\n    \"wordnet_id\": \"a-01464433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dement\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kiplekker\": {\n    \"form\": \"kiplekker\",\n    \"cornetto_id\": \"r_a-12428\",\n    \"cornetto_synset_id\": \"n_a-509078\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fit\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klaaglijk\": {\n    \"form\": \"klaaglijk\",\n    \"cornetto_id\": \"r_a-12432\",\n    \"cornetto_synset_id\": \"n_a-515063\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klagend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"klaar\": {\n    \"form\": \"klaar\",\n    \"cornetto_id\": \"r_a-12435\",\n    \"cornetto_synset_id\": \"n_a-512275\",\n    \"wordnet_id\": \"a-00431447\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helder\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"klaarblijkelijk\": {\n    \"form\": \"klaarblijkelijk\",\n    \"cornetto_id\": \"r_a-12436\",\n    \"cornetto_synset_id\": \"d_a-9248\",\n    \"wordnet_id\": \"a-00431447\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evident\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"klaarlicht\": {\n    \"form\": \"klaarlicht\",\n    \"cornetto_id\": \"r_a-12437\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel licht\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klagen\": {\n    \"form\": \"klagen\",\n    \"cornetto_id\": \"c_545792\",\n    \"cornetto_synset_id\": \"d_v-4305\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"klagerig\": {\n    \"form\": \"klagerig\",\n    \"cornetto_id\": \"r_a-12691\",\n    \"cornetto_synset_id\": \"n_a-515063\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veel klagend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klam\": {\n    \"form\": \"klam\",\n    \"cornetto_id\": \"r_a-12440\",\n    \"cornetto_synset_id\": \"n_a-515087\",\n    \"wordnet_id\": \"a-02548619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vochtig aanvoelend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klassiek\": {\n    \"form\": \"klassiek\",\n    \"cornetto_id\": \"r_a-12442\",\n    \"cornetto_synset_id\": \"n_a-531136\",\n    \"wordnet_id\": \"a-00607977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"traditioneel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"klef\": {\n    \"form\": \"klef\",\n    \"cornetto_id\": \"r_a-12445\",\n    \"cornetto_synset_id\": \"d_a-9587\",\n    \"wordnet_id\": \"a-02548619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleverig en vochtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klein\": {\n    \"form\": \"klein\",\n    \"cornetto_id\": \"r_a-12447\",\n    \"cornetto_synset_id\": \"d_a-9357\",\n    \"wordnet_id\": \"a-01646941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"jong\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kleinburgerlijk\": {\n    \"form\": \"kleinburgerlijk\",\n    \"cornetto_id\": \"r_a-12448\",\n    \"cornetto_synset_id\": \"d_a-9211\",\n    \"wordnet_id\": \"a-00288498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bekrompen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kleinzerig\": {\n    \"form\": \"kleinzerig\",\n    \"cornetto_id\": \"r_a-12452\",\n    \"cornetto_synset_id\": \"n_a-515194\",\n    \"wordnet_id\": \"a-02106509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"al bang voor een beetje pijn\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kleinzielig\": {\n    \"form\": \"kleinzielig\",\n    \"cornetto_id\": \"r_a-12453\",\n    \"cornetto_synset_id\": \"n_a-514975\",\n    \"wordnet_id\": \"a-00265314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kinderachtig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"klemmend\": {\n    \"form\": \"klemmend\",\n    \"cornetto_id\": \"r_a-12455\",\n    \"cornetto_synset_id\": \"n_a-513565\",\n    \"wordnet_id\": \"a-00842324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dringend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kleurig\": {\n    \"form\": \"kleurig\",\n    \"cornetto_id\": \"r_a-12458\",\n    \"cornetto_synset_id\": \"n_a-504646\",\n    \"wordnet_id\": \"a-00398978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bont\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kleurloos\": {\n    \"form\": \"kleurloos\",\n    \"cornetto_id\": \"r_a-12459\",\n    \"cornetto_synset_id\": \"d_a-9367\",\n    \"wordnet_id\": \"a-00394331\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder kleur, saai\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kleurrijk\": {\n    \"form\": \"kleurrijk\",\n    \"cornetto_id\": \"r_a-12580\",\n    \"cornetto_synset_id\": \"n_a-504646\",\n    \"wordnet_id\": \"a-00398978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bont\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kleverig\": {\n    \"form\": \"kleverig\",\n    \"cornetto_id\": \"r_a-12460\",\n    \"cornetto_synset_id\": \"n_a-523499\",\n    \"wordnet_id\": \"a-00053691\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plakkerig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"klierig\": {\n    \"form\": \"klierig\",\n    \"cornetto_id\": \"r_a-12631\",\n    \"cornetto_synset_id\": \"c_179\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervelend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klimatologisch\": {\n    \"form\": \"klimatologisch\",\n    \"cornetto_id\": \"r_a-12581\",\n    \"cornetto_synset_id\": \"n_a-515290\",\n    \"wordnet_id\": \"a-03055374\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het klimaat\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"klinisch\": {\n    \"form\": \"klinisch\",\n    \"cornetto_id\": \"r_a-12674\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. ziekteverschijnselen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"klinkklaar\": {\n    \"form\": \"klinkklaar\",\n    \"cornetto_id\": \"r_a-12462\",\n    \"cornetto_synset_id\": \"n_a-515305\",\n    \"wordnet_id\": \"a-00765666\",\n    \"pos\": \"JJ\",\n    \"sense\": \"puur\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.8\"\n  },\n  \"kloek\": {\n    \"form\": \"kloek\",\n    \"cornetto_id\": \"r_a-12464\",\n    \"cornetto_synset_id\": \"n_a-517354\",\n    \"wordnet_id\": \"a-01384438\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fors\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kloosterlijk\": {\n    \"form\": \"kloosterlijk\",\n    \"cornetto_id\": \"r_a-12633\",\n    \"cornetto_synset_id\": \"n_a-515342\",\n    \"wordnet_id\": \"a-01300961\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klooster-, kloosterachtig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kloot\": {\n    \"form\": \"kloot\",\n    \"cornetto_id\": \"r_n-19887\",\n    \"cornetto_synset_id\": \"d_n-40847\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"klote\": {\n    \"form\": \"klote\",\n    \"cornetto_id\": \"r_a-12634\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rot\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kloten\": {\n    \"form\": \"kloten\",\n    \"cornetto_id\": \"r_v-3969\",\n    \"cornetto_synset_id\": \"d_v-3653\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"klucht\": {\n    \"form\": \"klucht\",\n    \"cornetto_id\": \"r_n-19899\",\n    \"cornetto_synset_id\": \"d_n-17687\",\n    \"wordnet_id\": \"n-06780309\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"kluchtig\": {\n    \"form\": \"kluchtig\",\n    \"cornetto_id\": \"r_a-12465\",\n    \"cornetto_synset_id\": \"n_a-515356\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"potsierlijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"klungelig\": {\n    \"form\": \"klungelig\",\n    \"cornetto_id\": \"r_a-12635\",\n    \"cornetto_synset_id\": \"c_82\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onhandig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"knap\": {\n    \"form\": \"knap\",\n    \"cornetto_id\": \"r_a-12696\",\n    \"cornetto_synset_id\": \"c_528\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed, mooi\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"knapperig\": {\n    \"form\": \"knapperig\",\n    \"cornetto_id\": \"r_a-12468\",\n    \"cornetto_synset_id\": \"n_a-515384\",\n    \"wordnet_id\": \"a-00708738\",\n    \"pos\": \"JJ\",\n    \"sense\": \"krokant\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"knobbelig\": {\n    \"form\": \"knobbelig\",\n    \"cornetto_id\": \"r_a-12583\",\n    \"cornetto_synset_id\": \"n_a-515439\",\n    \"wordnet_id\": \"a-02141735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol knobbels\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"knoeierig\": {\n    \"form\": \"knoeierig\",\n    \"cornetto_id\": \"d_a-138213\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"knokig\": {\n    \"form\": \"knokig\",\n    \"cornetto_id\": \"r_a-12473\",\n    \"cornetto_synset_id\": \"n_a-503592\",\n    \"wordnet_id\": \"a-03138224\",\n    \"pos\": \"JJ\",\n    \"sense\": \"benig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"knullig\": {\n    \"form\": \"knullig\",\n    \"cornetto_id\": \"r_a-12474\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeholpen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"knus\": {\n    \"form\": \"knus\",\n    \"cornetto_id\": \"r_a-12475\",\n    \"cornetto_synset_id\": \"n_a-510897\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezellig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koddig\": {\n    \"form\": \"koddig\",\n    \"cornetto_id\": \"r_a-12476\",\n    \"cornetto_synset_id\": \"n_a-515488\",\n    \"wordnet_id\": \"a-01265308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grappig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koel\": {\n    \"form\": \"koel\",\n    \"cornetto_id\": \"r_a-12699\",\n    \"cornetto_synset_id\": \"n_a-520216\",\n    \"wordnet_id\": \"a-01943406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koelbloedig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koeltjes\": {\n    \"form\": \"koeltjes\",\n    \"cornetto_id\": \"d_a-138856\",\n    \"cornetto_synset_id\": \"n_a-515500\",\n    \"wordnet_id\": \"a-01257612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kogelrond\": {\n    \"form\": \"kogelrond\",\n    \"cornetto_id\": \"r_a-12481\",\n    \"cornetto_synset_id\": \"n_a-515594\",\n    \"wordnet_id\": \"a-02041229\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel rond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kogelvrij\": {\n    \"form\": \"kogelvrij\",\n    \"cornetto_id\": \"r_a-12482\",\n    \"cornetto_synset_id\": \"n_a-515598\",\n    \"wordnet_id\": \"a-00144102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bestand tegen kogels\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kokendheet\": {\n    \"form\": \"kokendheet\",\n    \"cornetto_id\": \"r_a-12642\",\n    \"cornetto_synset_id\": \"n_a-515605\",\n    \"wordnet_id\": \"a-00270496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gloeiend heet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koket\": {\n    \"form\": \"koket\",\n    \"cornetto_id\": \"r_a-12676\",\n    \"cornetto_synset_id\": \"n_a-515609\",\n    \"wordnet_id\": \"a-00205295\",\n    \"pos\": \"JJ\",\n    \"sense\": \"elegant\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kolderiek\": {\n    \"form\": \"kolderiek\",\n    \"cornetto_id\": \"r_a-12484\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dwaas\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"koloniaal\": {\n    \"form\": \"koloniaal\",\n    \"cornetto_id\": \"r_a-12586\",\n    \"cornetto_synset_id\": \"n_a-515655\",\n    \"wordnet_id\": \"a-02177397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. kolonie(s)\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"kolossaal\": {\n    \"form\": \"kolossaal\",\n    \"cornetto_id\": \"r_a-12485\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enorm\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"komend\": {\n    \"form\": \"komend\",\n    \"cornetto_id\": \"r_a-12587\",\n    \"cornetto_synset_id\": \"n_a-508045\",\n    \"wordnet_id\": \"a-00123485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toekomstig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"komisch\": {\n    \"form\": \"komisch\",\n    \"cornetto_id\": \"r_a-12487\",\n    \"cornetto_synset_id\": \"n_a-517089\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grappig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kommerlijk\": {\n    \"form\": \"kommerlijk\",\n    \"cornetto_id\": \"d_a-140000\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kommervol\": {\n    \"form\": \"kommervol\",\n    \"cornetto_id\": \"d_a-140008\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kooplustig\": {\n    \"form\": \"kooplustig\",\n    \"cornetto_id\": \"r_a-12649\",\n    \"cornetto_synset_id\": \"n_a-515741\",\n    \"wordnet_id\": \"a-00029343\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koopgraag\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koortsachtig\": {\n    \"form\": \"koortsachtig\",\n    \"cornetto_id\": \"r_a-12491\",\n    \"cornetto_synset_id\": \"n_a-515773\",\n    \"wordnet_id\": \"a-00086341\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gejaagd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"koortsig\": {\n    \"form\": \"koortsig\",\n    \"cornetto_id\": \"r_a-12492\",\n    \"cornetto_synset_id\": \"n_a-515775\",\n    \"wordnet_id\": \"a-02542256\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. koorts\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kopen\": {\n    \"form\": \"kopen\",\n    \"cornetto_id\": \"r_v-4101\",\n    \"cornetto_synset_id\": \"d_v-3757\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"kort\": {\n    \"form\": \"kort\",\n    \"cornetto_id\": \"r_a-12498\",\n    \"cornetto_synset_id\": \"n_a-515879\",\n    \"wordnet_id\": \"a-01442186\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lengte en afstand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kortaangebonden\": {\n    \"form\": \"kortaangebonden\",\n    \"cornetto_id\": \"r_a-12653\",\n    \"cornetto_synset_id\": \"n_a-515884\",\n    \"wordnet_id\": \"a-00313217\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kortaf\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kortdurend\": {\n    \"form\": \"kortdurend\",\n    \"cornetto_id\": \"r_a-12591\",\n    \"cornetto_synset_id\": \"n_a-515880\",\n    \"wordnet_id\": \"a-01436003\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kortstondig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kortzichtig\": {\n    \"form\": \"kortzichtig\",\n    \"cornetto_id\": \"r_a-12501\",\n    \"cornetto_synset_id\": \"n_a-515908\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet vooruitziend, niet ruimdenkend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kostbaar\": {\n    \"form\": \"kostbaar\",\n    \"cornetto_id\": \"r_a-12505\",\n    \"cornetto_synset_id\": \"d_a-9606\",\n    \"wordnet_id\": \"a-00933154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waardevol\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kostelijk\": {\n    \"form\": \"kostelijk\",\n    \"cornetto_id\": \"r_a-12506\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"kostenbesparend\": {\n    \"form\": \"kostenbesparend\",\n    \"cornetto_id\": \"r_a-12595\",\n    \"cornetto_synset_id\": \"n_a-515920\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat kosten bespaart\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"koud\": {\n    \"form\": \"koud\",\n    \"cornetto_id\": \"r_a-12508\",\n    \"cornetto_synset_id\": \"n_a-515500\",\n    \"wordnet_id\": \"a-01257612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afstandelijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kouwelijk\": {\n    \"form\": \"kouwelijk\",\n    \"cornetto_id\": \"r_a-12678\",\n    \"cornetto_synset_id\": \"n_a-515947\",\n    \"wordnet_id\": \"a-02532898\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevoelig voor kou\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kraakhelder\": {\n    \"form\": \"kraakhelder\",\n    \"cornetto_id\": \"r_a-12597\",\n    \"cornetto_synset_id\": \"n_a-504904\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel helder\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"krachtdadig\": {\n    \"form\": \"krachtdadig\",\n    \"cornetto_id\": \"r_a-12511\",\n    \"cornetto_synset_id\": \"n_a-516002\",\n    \"wordnet_id\": \"a-00156101\",\n    \"pos\": \"JJ\",\n    \"sense\": \"energiek\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"krachtig\": {\n    \"form\": \"krachtig\",\n    \"cornetto_id\": \"r_a-12512\",\n    \"cornetto_synset_id\": \"d_a-9536\",\n    \"wordnet_id\": \"a-02321009\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fysiek sterk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"krakkemikkig\": {\n    \"form\": \"krakkemikkig\",\n    \"cornetto_id\": \"r_a-12513\",\n    \"cornetto_synset_id\": \"n_a-509538\",\n    \"wordnet_id\": \"a-00263994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gammel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"krampachtig\": {\n    \"form\": \"krampachtig\",\n    \"cornetto_id\": \"r_a-12679\",\n    \"cornetto_synset_id\": \"n_a-516031\",\n    \"wordnet_id\": \"a-00086341\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met grote inspanning\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"krankjorum\": {\n    \"form\": \"krankjorum\",\n    \"cornetto_id\": \"r_a-12516\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"krankzinnig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"krankzinnig\": {\n    \"form\": \"krankzinnig\",\n    \"cornetto_id\": \"r_a-12518\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"idioot\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"krap\": {\n    \"form\": \"krap\",\n    \"cornetto_id\": \"r_a-12701\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder speelruimte\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"kras\": {\n    \"form\": \"kras\",\n    \"cornetto_id\": \"r_a-12522\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk te geloven\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"kregelig\": {\n    \"form\": \"kregelig\",\n    \"cornetto_id\": \"r_a-12524\",\n    \"cornetto_synset_id\": \"n_a-509660\",\n    \"wordnet_id\": \"a-00116529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kregel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"krengerig\": {\n    \"form\": \"krengerig\",\n    \"cornetto_id\": \"r_a-12660\",\n    \"cornetto_synset_id\": \"n_a-510247\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kreupel\": {\n    \"form\": \"kreupel\",\n    \"cornetto_id\": \"r_a-12680\",\n    \"cornetto_synset_id\": \"n_a-509754\",\n    \"wordnet_id\": \"a-00151105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebrekkig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kribbig\": {\n    \"form\": \"kribbig\",\n    \"cornetto_id\": \"r_a-12527\",\n    \"cornetto_synset_id\": \"n_a-509660\",\n    \"wordnet_id\": \"a-00116529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geïrriteerd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kriebelig\": {\n    \"form\": \"kriebelig\",\n    \"cornetto_id\": \"r_a-12681\",\n    \"cornetto_synset_id\": \"n_a-516106\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klein geschreven\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"krijgshaftig\": {\n    \"form\": \"krijgshaftig\",\n    \"cornetto_id\": \"r_a-12529\",\n    \"cornetto_synset_id\": \"n_a-516117\",\n    \"wordnet_id\": \"a-01517526\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moedig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kristalhelder\": {\n    \"form\": \"kristalhelder\",\n    \"cornetto_id\": \"r_a-12600\",\n    \"cornetto_synset_id\": \"n_a-511051\",\n    \"wordnet_id\": \"a-00429355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel helder\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kritisch\": {\n    \"form\": \"kritisch\",\n    \"cornetto_id\": \"r_a-12532\",\n    \"cornetto_synset_id\": \"n_a-516167\",\n    \"wordnet_id\": \"a-00649586\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grondig onderzoekend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"krokant\": {\n    \"form\": \"krokant\",\n    \"cornetto_id\": \"r_a-12533\",\n    \"cornetto_synset_id\": \"n_a-515384\",\n    \"wordnet_id\": \"a-00708738\",\n    \"pos\": \"JJ\",\n    \"sense\": \"knapperig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"krom\": {\n    \"form\": \"krom\",\n    \"cornetto_id\": \"r_a-12702\",\n    \"cornetto_synset_id\": \"c_577\",\n    \"wordnet_id\": \"a-01881478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verkeerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kronkelig\": {\n    \"form\": \"kronkelig\",\n    \"cornetto_id\": \"r_a-12604\",\n    \"cornetto_synset_id\": \"n_a-504474\",\n    \"wordnet_id\": \"a-01563713\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol kronkels\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kroostrijk\": {\n    \"form\": \"kroostrijk\",\n    \"cornetto_id\": \"r_a-12667\",\n    \"cornetto_synset_id\": \"n_a-515015\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel kinderen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"krukkig\": {\n    \"form\": \"krukkig\",\n    \"cornetto_id\": \"r_a-12541\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onhandig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kubistisch\": {\n    \"form\": \"kubistisch\",\n    \"cornetto_id\": \"r_a-12606\",\n    \"cornetto_synset_id\": \"n_a-516302\",\n    \"wordnet_id\": \"a-03021194\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. kubisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"kunsthistorisch\": {\n    \"form\": \"kunsthistorisch\",\n    \"cornetto_id\": \"r_a-12607\",\n    \"cornetto_synset_id\": \"n_a-516333\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de kunstgeschiedenis\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kunstig\": {\n    \"form\": \"kunstig\",\n    \"cornetto_id\": \"r_a-12545\",\n    \"cornetto_synset_id\": \"n_a-516334\",\n    \"wordnet_id\": \"a-01334958\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingenieus\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kunstminnend\": {\n    \"form\": \"kunstminnend\",\n    \"cornetto_id\": \"r_a-12670\",\n    \"cornetto_synset_id\": \"n_a-516346\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kunstlievend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kurkdroog\": {\n    \"form\": \"kurkdroog\",\n    \"cornetto_id\": \"r_a-12608\",\n    \"cornetto_synset_id\": \"n_a-516368\",\n    \"wordnet_id\": \"a-02552646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel droog\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kwaad\": {\n    \"form\": \"kwaad\",\n    \"cornetto_id\": \"r_a-12703\",\n    \"cornetto_synset_id\": \"c_254\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boosaardig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kwaadaardig\": {\n    \"form\": \"kwaadaardig\",\n    \"cornetto_id\": \"r_a-12549\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kwalijk\": {\n    \"form\": \"kwalijk\",\n    \"cornetto_id\": \"r_a-12552\",\n    \"cornetto_synset_id\": \"n_r-519714\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongunstig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kwalitatief\": {\n    \"form\": \"kwalitatief\",\n    \"cornetto_id\": \"r_a-12553\",\n    \"cornetto_synset_id\": \"n_a-516427\",\n    \"wordnet_id\": \"a-01914521\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de kwaliteit\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kwestieus\": {\n    \"form\": \"kwestieus\",\n    \"cornetto_id\": \"d_a-145817\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kwetsbaar\": {\n    \"form\": \"kwetsbaar\",\n    \"cornetto_id\": \"r_a-12555\",\n    \"cornetto_synset_id\": \"c_565\",\n    \"wordnet_id\": \"a-00709215\",\n    \"pos\": \"JJ\",\n    \"sense\": \"teer\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"kwiek\": {\n    \"form\": \"kwiek\",\n    \"cornetto_id\": \"r_a-12556\",\n    \"cornetto_synset_id\": \"d_a-9583\",\n    \"wordnet_id\": \"a-00119006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"levendig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"kwijt\": {\n    \"form\": \"kwijt\",\n    \"cornetto_id\": \"r_a-12557\",\n    \"cornetto_synset_id\": \"n_a-516488\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weg\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"kwistig\": {\n    \"form\": \"kwistig\",\n    \"cornetto_id\": \"r_a-16624\",\n    \"cornetto_synset_id\": \"n_a-516498\",\n    \"wordnet_id\": \"a-00015247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zuinig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"laag\": {\n    \"form\": \"laag\",\n    \"cornetto_id\": \"r_a-12106\",\n    \"cornetto_synset_id\": \"c_540\",\n    \"wordnet_id\": \"a-01589650\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"laag-bij-de-gronds\": {\n    \"form\": \"laag-bij-de-gronds\",\n    \"cornetto_id\": \"r_a-12107\",\n    \"cornetto_synset_id\": \"n_a-523583\",\n    \"wordnet_id\": \"a-00683531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"platvloers\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laaghartig\": {\n    \"form\": \"laaghartig\",\n    \"cornetto_id\": \"r_a-12108\",\n    \"cornetto_synset_id\": \"n_a-510247\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laaiend\": {\n    \"form\": \"laaiend\",\n    \"cornetto_id\": \"r_a-12109\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoog opschietend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"laakbaar\": {\n    \"form\": \"laakbaar\",\n    \"cornetto_id\": \"r_a-12110\",\n    \"cornetto_synset_id\": \"n_a-527874\",\n    \"wordnet_id\": \"a-01321529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afkeurenswaardig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laat\": {\n    \"form\": \"laat\",\n    \"cornetto_id\": \"c_545369\",\n    \"cornetto_synset_id\": \"n_a-516548\",\n    \"wordnet_id\": \"a-00816481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verder in de tijd\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"laatdunkend\": {\n    \"form\": \"laatdunkend\",\n    \"cornetto_id\": \"r_a-12112\",\n    \"cornetto_synset_id\": \"n_a-518925\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"minachtend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laatst\": {\n    \"form\": \"laatst\",\n    \"cornetto_id\": \"r_a-12114\",\n    \"cornetto_synset_id\": \"n_a-525158\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kortst geleden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"labiel\": {\n    \"form\": \"labiel\",\n    \"cornetto_id\": \"r_a-12116\",\n    \"cornetto_synset_id\": \"n_a-520983\",\n    \"wordnet_id\": \"a-00345189\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wankel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lachwekkend\": {\n    \"form\": \"lachwekkend\",\n    \"cornetto_id\": \"r_a-12289\",\n    \"cornetto_synset_id\": \"n_a-511389\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de lachlust opwekkend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"laconiek\": {\n    \"form\": \"laconiek\",\n    \"cornetto_id\": \"r_a-12117\",\n    \"cornetto_synset_id\": \"n_a-516585\",\n    \"wordnet_id\": \"a-00547641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doodkalm\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ladderzat\": {\n    \"form\": \"ladderzat\",\n    \"cornetto_id\": \"r_a-12349\",\n    \"cornetto_synset_id\": \"n_a-529441\",\n    \"wordnet_id\": \"a-00798103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stomdronken\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laf\": {\n    \"form\": \"laf\",\n    \"cornetto_id\": \"r_a-12119\",\n    \"cornetto_synset_id\": \"n_a-509105\",\n    \"wordnet_id\": \"a-02399595\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder moed\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lafhartig\": {\n    \"form\": \"lafhartig\",\n    \"cornetto_id\": \"r_a-12123\",\n    \"cornetto_synset_id\": \"d_a-9375\",\n    \"wordnet_id\": \"a-00264776\",\n    \"pos\": \"JJ\",\n    \"sense\": \"laf\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laks\": {\n    \"form\": \"laks\",\n    \"cornetto_id\": \"r_a-12124\",\n    \"cornetto_synset_id\": \"n_a-516623\",\n    \"wordnet_id\": \"a-01763159\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemakzuchtig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lam\": {\n    \"form\": \"lam\",\n    \"cornetto_id\": \"r_a-12125\",\n    \"cornetto_synset_id\": \"d_a-9571\",\n    \"wordnet_id\": \"a-02545989\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verlamd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lamentabel\": {\n    \"form\": \"lamentabel\",\n    \"cornetto_id\": \"r_a-12291\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erbarmelijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"landbouwkundig\": {\n    \"form\": \"landbouwkundig\",\n    \"cornetto_id\": \"r_a-12292\",\n    \"cornetto_synset_id\": \"n_a-516671\",\n    \"wordnet_id\": \"a-02608902\",\n    \"pos\": \"JJ\",\n    \"sense\": \"agronomisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lang\": {\n    \"form\": \"lang\",\n    \"cornetto_id\": \"r_a-12132\",\n    \"cornetto_synset_id\": \"n_a-516735\",\n    \"wordnet_id\": \"a-01437963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een hele tijd durend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"langdradig\": {\n    \"form\": \"langdradig\",\n    \"cornetto_id\": \"r_a-12133\",\n    \"cornetto_synset_id\": \"n_a-516733\",\n    \"wordnet_id\": \"a-00548781\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wijdlopig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"langdurig\": {\n    \"form\": \"langdurig\",\n    \"cornetto_id\": \"r_a-12134\",\n    \"cornetto_synset_id\": \"n_a-516735\",\n    \"wordnet_id\": \"a-01437963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een hele tijd durend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"langer\": {\n    \"form\": \"langer\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"langlevend\": {\n    \"form\": \"langlevend\",\n    \"cornetto_id\": \"r_a-12295\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een lang leven\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"langlopend\": {\n    \"form\": \"langlopend\",\n    \"cornetto_id\": \"r_a-12296\",\n    \"cornetto_synset_id\": \"n_a-516735\",\n    \"wordnet_id\": \"a-01437963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lange tijd durend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"langzaam\": {\n    \"form\": \"langzaam\",\n    \"cornetto_id\": \"r_a-12138\",\n    \"cornetto_synset_id\": \"n_a-516764\",\n    \"wordnet_id\": \"a-00980527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"traag\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lankmoedig\": {\n    \"form\": \"lankmoedig\",\n    \"cornetto_id\": \"r_a-12139\",\n    \"cornetto_synset_id\": \"n_a-532336\",\n    \"wordnet_id\": \"a-01736384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tolerant\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"larmoyant\": {\n    \"form\": \"larmoyant\",\n    \"cornetto_id\": \"r_a-12140\",\n    \"cornetto_synset_id\": \"n_a-513041\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"huilerig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"last\": {\n    \"form\": \"last\",\n    \"cornetto_id\": \"r_n-21468\",\n    \"cornetto_synset_id\": \"d_n-22848\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lasterlijk\": {\n    \"form\": \"lasterlijk\",\n    \"cornetto_id\": \"r_a-12351\",\n    \"cornetto_synset_id\": \"n_a-516804\",\n    \"wordnet_id\": \"a-01161233\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beschuldigend zonder bewijs\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lastig\": {\n    \"form\": \"lastig\",\n    \"cornetto_id\": \"r_a-12142\",\n    \"cornetto_synset_id\": \"n_a-516807\",\n    \"wordnet_id\": \"a-00669942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"latent\": {\n    \"form\": \"latent\",\n    \"cornetto_id\": \"r_a-12143\",\n    \"cornetto_synset_id\": \"n_a-516813\",\n    \"wordnet_id\": \"a-00034032\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verborgen blijvend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"later\": {\n    \"form\": \"later\",\n    \"cornetto_id\": \"r_a-12299\",\n    \"cornetto_synset_id\": \"n_a-516814\",\n    \"wordnet_id\": \"a-00122626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgend op iets in tijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lauw\": {\n    \"form\": \"lauw\",\n    \"cornetto_id\": \"r_a-12146\",\n    \"cornetto_synset_id\": \"n_a-516827\",\n    \"wordnet_id\": \"a-00887062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet erg enthousiast\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"laveloos\": {\n    \"form\": \"laveloos\",\n    \"cornetto_id\": \"r_a-12147\",\n    \"cornetto_synset_id\": \"n_a-529441\",\n    \"wordnet_id\": \"a-00798103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stomdronken\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leed\": {\n    \"form\": \"leed\",\n    \"cornetto_id\": \"r_a-12302\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spijtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leefbaar\": {\n    \"form\": \"leefbaar\",\n    \"cornetto_id\": \"r_a-12150\",\n    \"cornetto_synset_id\": \"n_a-516868\",\n    \"wordnet_id\": \"a-01423676\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geschikt om te leven\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leeg\": {\n    \"form\": \"leeg\",\n    \"cornetto_id\": \"r_a-12152\",\n    \"cornetto_synset_id\": \"d_a-9379\",\n    \"wordnet_id\": \"a-01086545\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder inhoud\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"leerplichtig\": {\n    \"form\": \"leerplichtig\",\n    \"cornetto_id\": \"r_a-12156\",\n    \"cornetto_synset_id\": \"n_a-516911\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verplicht om naar school te gaan\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leerzaam\": {\n    \"form\": \"leerzaam\",\n    \"cornetto_id\": \"r_a-12157\",\n    \"cornetto_synset_id\": \"n_a-516919\",\n    \"wordnet_id\": \"a-01325777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"instructief\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"leesbaar\": {\n    \"form\": \"leesbaar\",\n    \"cornetto_id\": \"r_a-12158\",\n    \"cornetto_synset_id\": \"n_a-516920\",\n    \"wordnet_id\": \"a-01404702\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed of duidelijk te lezen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"legendarisch\": {\n    \"form\": \"legendarisch\",\n    \"cornetto_id\": \"r_a-12161\",\n    \"cornetto_synset_id\": \"n_a-516946\",\n    \"wordnet_id\": \"a-01935744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in legende\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"legio\": {\n    \"form\": \"legio\",\n    \"cornetto_id\": \"r_a-12162\",\n    \"cornetto_synset_id\": \"n_a-530266\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"talrijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"legitiem\": {\n    \"form\": \"legitiem\",\n    \"cornetto_id\": \"r_a-12163\",\n    \"cornetto_synset_id\": \"n_a-534776\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebaseerd op wet\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leidinggevend\": {\n    \"form\": \"leidinggevend\",\n    \"cornetto_id\": \"r_a-12303\",\n    \"cornetto_synset_id\": \"n_a-516979\",\n    \"wordnet_id\": \"a-02904223\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belast met leiding\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"leien\": {\n    \"form\": \"leien\",\n    \"cornetto_id\": \"r_a-12304\",\n    \"cornetto_synset_id\": \"n_a-516981\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van lei\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lekker\": {\n    \"form\": \"lekker\",\n    \"cornetto_id\": \"r_a-12167\",\n    \"cornetto_synset_id\": \"n_a-510721\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van geur\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lelijk\": {\n    \"form\": \"lelijk\",\n    \"cornetto_id\": \"r_a-12171\",\n    \"cornetto_synset_id\": \"c_529\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"letterlijk\": {\n    \"form\": \"letterlijk\",\n    \"cornetto_id\": \"r_a-12174\",\n    \"cornetto_synset_id\": \"n_a-517075\",\n    \"wordnet_id\": \"a-00914808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exact\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"leugenaar\": {\n    \"form\": \"leugenaar\",\n    \"cornetto_id\": \"r_n-21907\",\n    \"cornetto_synset_id\": \"d_n-40443\",\n    \"wordnet_id\": \"n-10256537\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leugenaars\": {\n    \"form\": \"leugenaars\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leugenachtig\": {\n    \"form\": \"leugenachtig\",\n    \"cornetto_id\": \"r_a-12310\",\n    \"cornetto_synset_id\": \"n_a-517086\",\n    \"wordnet_id\": \"a-00584403\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gelogen of onbetrouwbaar\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leuk\": {\n    \"form\": \"leuk\",\n    \"cornetto_id\": \"r_a-12381\",\n    \"cornetto_synset_id\": \"n_a-515377\",\n    \"wordnet_id\": \"a-00218950\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van uiterlijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"levendig\": {\n    \"form\": \"levendig\",\n    \"cornetto_id\": \"r_a-12176\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duidelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"levenloos\": {\n    \"form\": \"levenloos\",\n    \"cornetto_id\": \"r_a-12382\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"saai\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"levensecht\": {\n    \"form\": \"levensecht\",\n    \"cornetto_id\": \"r_a-12177\",\n    \"cornetto_synset_id\": \"n_a-517106\",\n    \"wordnet_id\": \"a-00074594\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijkend op werkelijkheid\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"levensgevaarlijk\": {\n    \"form\": \"levensgevaarlijk\",\n    \"cornetto_id\": \"r_a-12178\",\n    \"cornetto_synset_id\": \"n_a-517109\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijzonder gevaarlijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"levensgroot\": {\n    \"form\": \"levensgroot\",\n    \"cornetto_id\": \"r_a-12315\",\n    \"cornetto_synset_id\": \"n_a-517112\",\n    \"wordnet_id\": \"a-01388655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zo groot als in het echt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"levenslang\": {\n    \"form\": \"levenslang\",\n    \"cornetto_id\": \"r_a-12179\",\n    \"cornetto_synset_id\": \"n_a-517115\",\n    \"wordnet_id\": \"a-01440159\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel lang\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"levenslustig\": {\n    \"form\": \"levenslustig\",\n    \"cornetto_id\": \"r_a-12180\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opgewekt\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"leverbaar\": {\n    \"form\": \"leverbaar\",\n    \"cornetto_id\": \"r_a-12316\",\n    \"cornetto_synset_id\": \"n_a-517133\",\n    \"wordnet_id\": \"a-00183053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geschikt of beschikbaar voor levering\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lexicografisch\": {\n    \"form\": \"lexicografisch\",\n    \"cornetto_id\": \"r_a-12318\",\n    \"cornetto_synset_id\": \"n_a-517146\",\n    \"wordnet_id\": \"a-02909808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met betrekking tot lexicografie\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lezenswaardig\": {\n    \"form\": \"lezenswaardig\",\n    \"cornetto_id\": \"r_a-12319\",\n    \"cornetto_synset_id\": \"n_a-517151\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de moeite om te lezen\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"liberaal\": {\n    \"form\": \"liberaal\",\n    \"cornetto_id\": \"r_a-12184\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met bep. politieke ideeën\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichamelijk\": {\n    \"form\": \"lichamelijk\",\n    \"cornetto_id\": \"r_a-12185\",\n    \"cornetto_synset_id\": \"n_a-517174\",\n    \"wordnet_id\": \"a-00630329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fysiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"licht\": {\n    \"form\": \"licht\",\n    \"cornetto_id\": \"r_a-12190\",\n    \"cornetto_synset_id\": \"n_a-510235\",\n    \"wordnet_id\": \"a-00749230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemakkelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"lichtblauw\": {\n    \"form\": \"lichtblauw\",\n    \"cornetto_id\": \"r_a-12321\",\n    \"cornetto_synset_id\": \"n_a-517183\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helder blauw\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtblond\": {\n    \"form\": \"lichtblond\",\n    \"cornetto_id\": \"r_a-12356\",\n    \"cornetto_synset_id\": \"n_a-517184\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een lichte nuance van blond\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtelijk\": {\n    \"form\": \"lichtelijk\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"lichtend\": {\n    \"form\": \"lichtend\",\n    \"cornetto_id\": \"r_a-12191\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichtgevend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtgeel\": {\n    \"form\": \"lichtgeel\",\n    \"cornetto_id\": \"r_a-12358\",\n    \"cornetto_synset_id\": \"n_a-517197\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geel in lichte tint\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtgeraakt\": {\n    \"form\": \"lichtgeraakt\",\n    \"cornetto_id\": \"r_a-12193\",\n    \"cornetto_synset_id\": \"n_a-517200\",\n    \"wordnet_id\": \"a-01135914\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel boos of beledigd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtgevend\": {\n    \"form\": \"lichtgevend\",\n    \"cornetto_id\": \"r_a-12323\",\n    \"cornetto_synset_id\": \"n_a-517201\",\n    \"wordnet_id\": \"a-00168820\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat licht geeft\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtgrijs\": {\n    \"form\": \"lichtgrijs\",\n    \"cornetto_id\": \"r_a-12359\",\n    \"cornetto_synset_id\": \"n_a-517207\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grijs in lichte tint\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lichtvoetig\": {\n    \"form\": \"lichtvoetig\",\n    \"cornetto_id\": \"r_a-12195\",\n    \"cornetto_synset_id\": \"n_a-517706\",\n    \"wordnet_id\": \"a-02121290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"speels\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lichtzinnig\": {\n    \"form\": \"lichtzinnig\",\n    \"cornetto_id\": \"r_a-12196\",\n    \"cornetto_synset_id\": \"n_a-517250\",\n    \"wordnet_id\": \"a-00363938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder goed na te denken\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"lief\": {\n    \"form\": \"lief\",\n    \"cornetto_id\": \"r_a-12200\",\n    \"cornetto_synset_id\": \"n_a-510141\",\n    \"wordnet_id\": \"a-01462324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dierbaar\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"liefdadig\": {\n    \"form\": \"liefdadig\",\n    \"cornetto_id\": \"r_a-12201\",\n    \"cornetto_synset_id\": \"n_a-517266\",\n    \"wordnet_id\": \"a-00223802\",\n    \"pos\": \"JJ\",\n    \"sense\": \"charitatief\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"liefdeloos\": {\n    \"form\": \"liefdeloos\",\n    \"cornetto_id\": \"r_a-12202\",\n    \"cornetto_synset_id\": \"n_a-521187\",\n    \"wordnet_id\": \"a-00857560\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder liefde\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"liefdevol\": {\n    \"form\": \"liefdevol\",\n    \"cornetto_id\": \"r_a-12204\",\n    \"cornetto_synset_id\": \"n_a-530384\",\n    \"wordnet_id\": \"a-01463965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol liefde\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lieflijk\": {\n    \"form\": \"lieflijk\",\n    \"cornetto_id\": \"r_a-12206\",\n    \"cornetto_synset_id\": \"d_a-9388\",\n    \"wordnet_id\": \"a-00219809\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"liefst\": {\n    \"form\": \"liefst\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"JJ\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"liegen\": {\n    \"form\": \"liegen\",\n    \"cornetto_id\": \"c_545908\",\n    \"cornetto_synset_id\": \"d_v-3979\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"VB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lijfelijk\": {\n    \"form\": \"lijfelijk\",\n    \"cornetto_id\": \"r_a-12212\",\n    \"cornetto_synset_id\": \"n_a-517174\",\n    \"wordnet_id\": \"a-00630329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichamelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lijvig\": {\n    \"form\": \"lijvig\",\n    \"cornetto_id\": \"r_a-12215\",\n    \"cornetto_synset_id\": \"d_a-9231\",\n    \"wordnet_id\": \"a-00987180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dik\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lila\": {\n    \"form\": \"lila\",\n    \"cornetto_id\": \"r_a-12217\",\n    \"cornetto_synset_id\": \"n_a-517363\",\n    \"wordnet_id\": \"a-00376917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lichtpaars\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"link\": {\n    \"form\": \"link\",\n    \"cornetto_id\": \"r_a-12219\",\n    \"cornetto_synset_id\": \"d_a-9523\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevaarlijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"links\": {\n    \"form\": \"links\",\n    \"cornetto_id\": \"r_a-12224\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onhandig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"links-radicaal\": {\n    \"form\": \"links-radicaal\",\n    \"cornetto_id\": \"r_a-12330\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extreem links\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"linnen\": {\n    \"form\": \"linnen\",\n    \"cornetto_id\": \"r_a-12332\",\n    \"cornetto_synset_id\": \"n_a-517400\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van linnen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"listig\": {\n    \"form\": \"listig\",\n    \"cornetto_id\": \"r_a-12226\",\n    \"cornetto_synset_id\": \"d_a-9523\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sluw\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"literair\": {\n    \"form\": \"literair\",\n    \"cornetto_id\": \"r_a-12227\",\n    \"cornetto_synset_id\": \"n_a-517073\",\n    \"wordnet_id\": \"a-02830501\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met literatuur te maken hebbend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lodderig\": {\n    \"form\": \"lodderig\",\n    \"cornetto_id\": \"r_a-12230\",\n    \"cornetto_synset_id\": \"n_a-517458\",\n    \"wordnet_id\": \"a-00189017\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slaperig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"loeihard\": {\n    \"form\": \"loeihard\",\n    \"cornetto_id\": \"r_a-12368\",\n    \"cornetto_synset_id\": \"n_a-514714\",\n    \"wordnet_id\": \"a-01453187\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer hard\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"logisch\": {\n    \"form\": \"logisch\",\n    \"cornetto_id\": \"r_a-12234\",\n    \"cornetto_synset_id\": \"n_a-517483\",\n    \"wordnet_id\": \"a-00022962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"juist beredeneerd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"logistiek\": {\n    \"form\": \"logistiek\",\n    \"cornetto_id\": \"r_a-12335\",\n    \"cornetto_synset_id\": \"n_a-517486\",\n    \"wordnet_id\": \"a-02986218\",\n    \"pos\": \"JJ\",\n    \"sense\": \"logistiek betreffend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lokaal\": {\n    \"form\": \"lokaal\",\n    \"cornetto_id\": \"r_a-12235\",\n    \"cornetto_synset_id\": \"n_a-523453\",\n    \"wordnet_id\": \"a-00668053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plaatselijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lollig\": {\n    \"form\": \"lollig\",\n    \"cornetto_id\": \"r_a-12236\",\n    \"cornetto_synset_id\": \"n_a-515488\",\n    \"wordnet_id\": \"a-01265308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lollig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"lomp\": {\n    \"form\": \"lomp\",\n    \"cornetto_id\": \"r_a-12239\",\n    \"cornetto_synset_id\": \"n_a-517506\",\n    \"wordnet_id\": \"a-00642725\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeschaafd\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"loodgrijs\": {\n    \"form\": \"loodgrijs\",\n    \"cornetto_id\": \"r_a-12240\",\n    \"cornetto_synset_id\": \"n_a-517535\",\n    \"wordnet_id\": \"a-00462249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blauwig grijs\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"loodrecht\": {\n    \"form\": \"loodrecht\",\n    \"cornetto_id\": \"r_a-12241\",\n    \"cornetto_synset_id\": \"n_a-517541\",\n    \"wordnet_id\": \"a-01233851\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in een hoek van negentig graden\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"loodzwaar\": {\n    \"form\": \"loodzwaar\",\n    \"cornetto_id\": \"r_a-12338\",\n    \"cornetto_synset_id\": \"n_a-517554\",\n    \"wordnet_id\": \"a-00173391\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel zwaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"loom\": {\n    \"form\": \"loom\",\n    \"cornetto_id\": \"r_a-12242\",\n    \"cornetto_synset_id\": \"n_a-517562\",\n    \"wordnet_id\": \"a-00876204\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje moe en traag\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"loos\": {\n    \"form\": \"loos\",\n    \"cornetto_id\": \"r_a-12245\",\n    \"cornetto_synset_id\": \"n_a-529550\",\n    \"wordnet_id\": \"a-01128406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ondeugend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"los\": {\n    \"form\": \"los\",\n    \"cornetto_id\": \"r_a-12248\",\n    \"cornetto_synset_id\": \"n_a-533914\",\n    \"wordnet_id\": \"a-00287498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet stijf, strak of gespannen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"losers\": {\n    \"form\": \"losers\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"losliggend\": {\n    \"form\": \"losliggend\",\n    \"cornetto_id\": \"r_a-12372\",\n    \"cornetto_synset_id\": \"n_a-517646\",\n    \"wordnet_id\": \"a-00916199\",\n    \"pos\": \"JJ\",\n    \"sense\": \"los\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"louter\": {\n    \"form\": \"louter\",\n    \"cornetto_id\": \"r_a-12340\",\n    \"cornetto_synset_id\": \"n_r-502043\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enkel en alleen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"loyaal\": {\n    \"form\": \"loyaal\",\n    \"cornetto_id\": \"r_a-12253\",\n    \"cornetto_synset_id\": \"n_a-531379\",\n    \"wordnet_id\": \"a-00022219\",\n    \"pos\": \"JJ\",\n    \"sense\": \"trouw\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"luchtdicht\": {\n    \"form\": \"luchtdicht\",\n    \"cornetto_id\": \"r_a-12254\",\n    \"cornetto_synset_id\": \"n_a-517686\",\n    \"wordnet_id\": \"a-01398772\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hermetisch\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"luchthartig\": {\n    \"form\": \"luchthartig\",\n    \"cornetto_id\": \"r_a-12255\",\n    \"cornetto_synset_id\": \"n_a-535941\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgeloos\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"luchtig\": {\n    \"form\": \"luchtig\",\n    \"cornetto_id\": \"r_a-12258\",\n    \"cornetto_synset_id\": \"n_a-517706\",\n    \"wordnet_id\": \"a-02121290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"luchthartig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lucratief\": {\n    \"form\": \"lucratief\",\n    \"cornetto_id\": \"r_a-12261\",\n    \"cornetto_synset_id\": \"d_a-9502\",\n    \"wordnet_id\": \"a-02332604\",\n    \"pos\": \"JJ\",\n    \"sense\": \"winstgevend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ludiek\": {\n    \"form\": \"ludiek\",\n    \"cornetto_id\": \"r_a-12262\",\n    \"cornetto_synset_id\": \"n_a-517766\",\n    \"wordnet_id\": \"a-02120458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrolijk en speels\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"luguber\": {\n    \"form\": \"luguber\",\n    \"cornetto_id\": \"r_a-12263\",\n    \"cornetto_synset_id\": \"n_a-511467\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"huiveringwekkend\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lui\": {\n    \"form\": \"lui\",\n    \"cornetto_id\": \"r_a-12264\",\n    \"cornetto_synset_id\": \"n_a-517771\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"initiatiefloos\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"luid\": {\n    \"form\": \"luid\",\n    \"cornetto_id\": \"r_a-12265\",\n    \"cornetto_synset_id\": \"n_a-512029\",\n    \"wordnet_id\": \"a-01452593\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hard en helder\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lullig\": {\n    \"form\": \"lullig\",\n    \"cornetto_id\": \"r_a-12268\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervelend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"lumineus\": {\n    \"form\": \"lumineus\",\n    \"cornetto_id\": \"r_a-12269\",\n    \"cornetto_synset_id\": \"n_a-517817\",\n    \"wordnet_id\": \"a-00219389\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geniaal\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"luthers\": {\n    \"form\": \"luthers\",\n    \"cornetto_id\": \"r_a-12272\",\n    \"cornetto_synset_id\": \"n_a-517836\",\n    \"wordnet_id\": \"a-02955358\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behorend tot de kerk van Luther\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"luttel\": {\n    \"form\": \"luttel\",\n    \"cornetto_id\": \"r_a-12273\",\n    \"cornetto_synset_id\": \"n_a-510497\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weinig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"lux\": {\n    \"form\": \"lux\",\n    \"cornetto_id\": \"d_a-538325\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"luxe\": {\n    \"form\": \"luxe\",\n    \"cornetto_id\": \"r_a-12274\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weelderig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"luxueus\": {\n    \"form\": \"luxueus\",\n    \"cornetto_id\": \"r_a-12275\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weelderig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lyrisch\": {\n    \"form\": \"lyrisch\",\n    \"cornetto_id\": \"r_a-12277\",\n    \"cornetto_synset_id\": \"n_a-517863\",\n    \"wordnet_id\": \"a-00856011\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitbundig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"maandenlang\": {\n    \"form\": \"maandenlang\",\n    \"cornetto_id\": \"r_a-12708\",\n    \"cornetto_synset_id\": \"n_a-517922\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedurende vele maanden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maatschappelijk\": {\n    \"form\": \"maatschappelijk\",\n    \"cornetto_id\": \"r_a-12988\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. sociale problemen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"maatschappijkritisch\": {\n    \"form\": \"maatschappijkritisch\",\n    \"cornetto_id\": \"r_a-12712\",\n    \"cornetto_synset_id\": \"n_a-517989\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met sociale kritiek\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"macaber\": {\n    \"form\": \"macaber\",\n    \"cornetto_id\": \"r_a-12713\",\n    \"cornetto_synset_id\": \"n_a-518002\",\n    \"wordnet_id\": \"a-00195684\",\n    \"pos\": \"JJ\",\n    \"sense\": \"luguber\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"machiavellistisch\": {\n    \"form\": \"machiavellistisch\",\n    \"cornetto_id\": \"r_a-12714\",\n    \"cornetto_synset_id\": \"n_a-518004\",\n    \"wordnet_id\": \"a-03082394\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het machiavellisme\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"macho\": {\n    \"form\": \"macho\",\n    \"cornetto_id\": \"r_a-12716\",\n    \"cornetto_synset_id\": \"n_a-518017\",\n    \"wordnet_id\": \"a-00156440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stoer\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"machteloos\": {\n    \"form\": \"machteloos\",\n    \"cornetto_id\": \"r_a-12717\",\n    \"cornetto_synset_id\": \"n_a-513099\",\n    \"wordnet_id\": \"a-01827535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onmachtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"machtig\": {\n    \"form\": \"machtig\",\n    \"cornetto_id\": \"r_a-12720\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"macrobiotisch\": {\n    \"form\": \"macrobiotisch\",\n    \"cornetto_id\": \"r_a-12722\",\n    \"cornetto_synset_id\": \"n_a-518045\",\n    \"wordnet_id\": \"a-02983739\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. macrobiotiek\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maf\": {\n    \"form\": \"maf\",\n    \"cornetto_id\": \"r_a-12723\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gek\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mager\": {\n    \"form\": \"mager\",\n    \"cornetto_id\": \"r_a-12992\",\n    \"cornetto_synset_id\": \"n_a-502563\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weinig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"magisch\": {\n    \"form\": \"magisch\",\n    \"cornetto_id\": \"r_a-12725\",\n    \"cornetto_synset_id\": \"n_a-518064\",\n    \"wordnet_id\": \"a-01574446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bovennatuurlijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"magistraal\": {\n    \"form\": \"magistraal\",\n    \"cornetto_id\": \"r_a-12726\",\n    \"cornetto_synset_id\": \"n_a-518477\",\n    \"wordnet_id\": \"a-02226979\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meesterlijk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"magnifiek\": {\n    \"form\": \"magnifiek\",\n    \"cornetto_id\": \"r_a-12728\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schitterend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"makkelijk\": {\n    \"form\": \"makkelijk\",\n    \"cornetto_id\": \"r_a-12733\",\n    \"cornetto_synset_id\": \"n_a-510492\",\n    \"wordnet_id\": \"a-00476819\",\n    \"pos\": \"JJ\",\n    \"sense\": \"comfortabel\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"mal\": {\n    \"form\": \"mal\",\n    \"cornetto_id\": \"r_a-12734\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dwaas\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malafide\": {\n    \"form\": \"malafide\",\n    \"cornetto_id\": \"r_a-12735\",\n    \"cornetto_synset_id\": \"n_a-518117\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bonafide\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manhaftig\": {\n    \"form\": \"manhaftig\",\n    \"cornetto_id\": \"r_a-12738\",\n    \"cornetto_synset_id\": \"n_a-518171\",\n    \"wordnet_id\": \"a-00249721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koen\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"manisch-depressief\": {\n    \"form\": \"manisch-depressief\",\n    \"cornetto_id\": \"r_a-12742\",\n    \"cornetto_synset_id\": \"d_a-9397\",\n    \"wordnet_id\": \"a-02076557\",\n    \"pos\": \"JJ\",\n    \"sense\": \"psychotisch\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mank\": {\n    \"form\": \"mank\",\n    \"cornetto_id\": \"r_a-12743\",\n    \"cornetto_synset_id\": \"n_a-518167\",\n    \"wordnet_id\": \"a-00263994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kreupel\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"manmoedig\": {\n    \"form\": \"manmoedig\",\n    \"cornetto_id\": \"r_a-12745\",\n    \"cornetto_synset_id\": \"n_a-518171\",\n    \"wordnet_id\": \"a-00249721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koen\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"mannelijk\": {\n    \"form\": \"mannelijk\",\n    \"cornetto_id\": \"r_a-12748\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. Woordgeslacht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"margi's\": {\n    \"form\": \"margi's\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marginaal\": {\n    \"form\": \"marginaal\",\n    \"cornetto_id\": \"r_a-12756\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. bestaansmiddelen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"markant\": {\n    \"form\": \"markant\",\n    \"cornetto_id\": \"r_a-12759\",\n    \"cornetto_synset_id\": \"n_a-518231\",\n    \"wordnet_id\": \"a-00579498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opmerkelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"masochistisch\": {\n    \"form\": \"masochistisch\",\n    \"cornetto_id\": \"r_a-12764\",\n    \"cornetto_synset_id\": \"n_a-518278\",\n    \"wordnet_id\": \"a-02057681\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. masochisme\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"massaal\": {\n    \"form\": \"massaal\",\n    \"cornetto_id\": \"r_a-12995\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongedeeld\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"mat\": {\n    \"form\": \"mat\",\n    \"cornetto_id\": \"r_a-12769\",\n    \"cornetto_synset_id\": \"n_a-516003\",\n    \"wordnet_id\": \"a-00806512\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slap, ongeïnspireerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mateloos\": {\n    \"form\": \"mateloos\",\n    \"cornetto_id\": \"r_a-12771\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bovenmatig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"matig\": {\n    \"form\": \"matig\",\n    \"cornetto_id\": \"r_a-12997\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet veel, niet goed etc.\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"maximaal\": {\n    \"form\": \"maximaal\",\n    \"cornetto_id\": \"r_a-12780\",\n    \"cornetto_synset_id\": \"n_a-518356\",\n    \"wordnet_id\": \"a-01495725\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"mechanisch\": {\n    \"form\": \"mechanisch\",\n    \"cornetto_id\": \"r_a-12998\",\n    \"cornetto_synset_id\": \"n_a-518006\",\n    \"wordnet_id\": \"a-01500555\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een machine\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mededeelzaam\": {\n    \"form\": \"mededeelzaam\",\n    \"cornetto_id\": \"r_a-12785\",\n    \"cornetto_synset_id\": \"c_184\",\n    \"wordnet_id\": \"a-01310273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openhartig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"medeplichtig\": {\n    \"form\": \"medeplichtig\",\n    \"cornetto_id\": \"r_a-12787\",\n    \"cornetto_synset_id\": \"n_a-518389\",\n    \"wordnet_id\": \"a-01516346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. handlangers\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"medeschuldig\": {\n    \"form\": \"medeschuldig\",\n    \"cornetto_id\": \"r_a-12788\",\n    \"cornetto_synset_id\": \"n_a-518389\",\n    \"wordnet_id\": \"a-01516346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mee schuldig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"medisch\": {\n    \"form\": \"medisch\",\n    \"cornetto_id\": \"r_a-12792\",\n    \"cornetto_synset_id\": \"n_a-510314\",\n    \"wordnet_id\": \"a-01166656\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneeskundig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"meedogenloos\": {\n    \"form\": \"meedogenloos\",\n    \"cornetto_id\": \"r_a-12795\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbarmhartig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"meegaand\": {\n    \"form\": \"meegaand\",\n    \"cornetto_id\": \"r_a-12796\",\n    \"cornetto_synset_id\": \"c_392\",\n    \"wordnet_id\": \"a-00711831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flexibel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meelijwekkend\": {\n    \"form\": \"meelijwekkend\",\n    \"cornetto_id\": \"r_a-12797\",\n    \"cornetto_synset_id\": \"n_a-535670\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zielig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meerderjarig\": {\n    \"form\": \"meerderjarig\",\n    \"cornetto_id\": \"r_a-12799\",\n    \"cornetto_synset_id\": \"n_a-518438\",\n    \"wordnet_id\": \"a-01644541\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volwassen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"meerduidig\": {\n    \"form\": \"meerduidig\",\n    \"cornetto_id\": \"r_a-12800\",\n    \"cornetto_synset_id\": \"n_a-518441\",\n    \"wordnet_id\": \"a-00102201\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ambigu\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meerstemmig\": {\n    \"form\": \"meerstemmig\",\n    \"cornetto_id\": \"r_a-12804\",\n    \"cornetto_synset_id\": \"n_a-518460\",\n    \"wordnet_id\": \"a-01544169\",\n    \"pos\": \"JJ\",\n    \"sense\": \"polyfoon\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meeslepend\": {\n    \"form\": \"meeslepend\",\n    \"cornetto_id\": \"r_a-12807\",\n    \"cornetto_synset_id\": \"n_a-518469\",\n    \"wordnet_id\": \"a-01826477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boeiend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"meesterlijk\": {\n    \"form\": \"meesterlijk\",\n    \"cornetto_id\": \"r_a-12809\",\n    \"cornetto_synset_id\": \"n_a-518477\",\n    \"wordnet_id\": \"a-02226979\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"meesterwerk\": {\n    \"form\": \"meesterwerk\",\n    \"cornetto_id\": \"r_n-23492\",\n    \"cornetto_synset_id\": \"d_n-35048\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meetbaar\": {\n    \"form\": \"meetbaar\",\n    \"cornetto_id\": \"r_a-12810\",\n    \"cornetto_synset_id\": \"n_a-518482\",\n    \"wordnet_id\": \"a-01498769\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kwantitatief bepaalbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"mega\": {\n    \"form\": \"mega\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"JJ\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"melancholiek\": {\n    \"form\": \"melancholiek\",\n    \"cornetto_id\": \"r_a-12816\",\n    \"cornetto_synset_id\": \"n_a-536067\",\n    \"wordnet_id\": \"a-00274068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"melancholisch\": {\n    \"form\": \"melancholisch\",\n    \"cornetto_id\": \"r_a-12817\",\n    \"cornetto_synset_id\": \"n_a-536067\",\n    \"wordnet_id\": \"a-00274068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zwaarmoedig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"melig\": {\n    \"form\": \"melig\",\n    \"cornetto_id\": \"r_a-12819\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. smaak en consistentie\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"melkachtig\": {\n    \"form\": \"melkachtig\",\n    \"cornetto_id\": \"r_a-12820\",\n    \"cornetto_synset_id\": \"n_a-518534\",\n    \"wordnet_id\": \"a-00434384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals melk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"melodieus\": {\n    \"form\": \"melodieus\",\n    \"cornetto_id\": \"r_a-12822\",\n    \"cornetto_synset_id\": \"n_a-534575\",\n    \"wordnet_id\": \"a-01502195\",\n    \"pos\": \"JJ\",\n    \"sense\": \"welluidend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"melodramatisch\": {\n    \"form\": \"melodramatisch\",\n    \"cornetto_id\": \"r_a-12824\",\n    \"cornetto_synset_id\": \"n_a-518570\",\n    \"wordnet_id\": \"a-00795078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een melodrama\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"memorabel\": {\n    \"form\": \"memorabel\",\n    \"cornetto_id\": \"r_a-12825\",\n    \"cornetto_synset_id\": \"n_a-509822\",\n    \"wordnet_id\": \"a-01040752\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedenkwaardig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"meneerke\": {\n    \"form\": \"meneerke\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"menselijk\": {\n    \"form\": \"menselijk\",\n    \"cornetto_id\": \"r_a-12827\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"humaan\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mensonterend\": {\n    \"form\": \"mensonterend\",\n    \"cornetto_id\": \"r_a-12830\",\n    \"cornetto_synset_id\": \"n_a-518612\",\n    \"wordnet_id\": \"a-01263445\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beestachtig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"mensonwaardig\": {\n    \"form\": \"mensonwaardig\",\n    \"cornetto_id\": \"r_a-12831\",\n    \"cornetto_synset_id\": \"n_a-518612\",\n    \"wordnet_id\": \"a-01263445\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet menswaardig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"menswaardig\": {\n    \"form\": \"menswaardig\",\n    \"cornetto_id\": \"r_a-12832\",\n    \"cornetto_synset_id\": \"d_a-9402\",\n    \"wordnet_id\": \"a-01538583\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conform menselijke waardigheid\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mentaal\": {\n    \"form\": \"mentaal\",\n    \"cornetto_id\": \"r_a-12833\",\n    \"cornetto_synset_id\": \"d_a-9284\",\n    \"wordnet_id\": \"a-00631193\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geestelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"merkbaar\": {\n    \"form\": \"merkbaar\",\n    \"cornetto_id\": \"r_a-12834\",\n    \"cornetto_synset_id\": \"n_a-518634\",\n    \"wordnet_id\": \"a-00013662\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te merken\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"merkwaardig\": {\n    \"form\": \"merkwaardig\",\n    \"cornetto_id\": \"r_a-13006\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"raar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"messcherp\": {\n    \"form\": \"messcherp\",\n    \"cornetto_id\": \"r_a-12838\",\n    \"cornetto_synset_id\": \"n_a-511737\",\n    \"wordnet_id\": \"a-00229227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer scherp\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"metaforisch\": {\n    \"form\": \"metaforisch\",\n    \"cornetto_id\": \"r_a-12840\",\n    \"cornetto_synset_id\": \"n_a-508972\",\n    \"wordnet_id\": \"a-01419784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdrachtelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"metalen\": {\n    \"form\": \"metalen\",\n    \"cornetto_id\": \"r_a-13008\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"metaalachtig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meteorologisch\": {\n    \"form\": \"meteorologisch\",\n    \"cornetto_id\": \"r_a-12844\",\n    \"cornetto_synset_id\": \"n_a-518713\",\n    \"wordnet_id\": \"a-02865479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weerkundig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"micro-economisch\": {\n    \"form\": \"micro-economisch\",\n    \"cornetto_id\": \"r_a-12851\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. micro-economie\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"microscopisch\": {\n    \"form\": \"microscopisch\",\n    \"cornetto_id\": \"r_a-13012\",\n    \"cornetto_synset_id\": \"n_a-518776\",\n    \"wordnet_id\": \"a-01393483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een microscoop\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"middelbaar\": {\n    \"form\": \"middelbaar\",\n    \"cornetto_id\": \"r_a-12853\",\n    \"cornetto_synset_id\": \"n_a-518792\",\n    \"wordnet_id\": \"a-00486290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tussen twee grootheden in\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"middeleeuws\": {\n    \"form\": \"middeleeuws\",\n    \"cornetto_id\": \"r_a-12855\",\n    \"cornetto_synset_id\": \"n_a-522237\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer ouderwets, achterlijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"middelmatig\": {\n    \"form\": \"middelmatig\",\n    \"cornetto_id\": \"r_a-13014\",\n    \"cornetto_synset_id\": \"n_a-518806\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemiddeld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"mierzoet\": {\n    \"form\": \"mierzoet\",\n    \"cornetto_id\": \"r_a-12862\",\n    \"cornetto_synset_id\": \"n_a-518840\",\n    \"wordnet_id\": \"a-02368566\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bovenmatig zoet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mieters\": {\n    \"form\": \"mieters\",\n    \"cornetto_id\": \"r_a-12863\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"miezerig\": {\n    \"form\": \"miezerig\",\n    \"cornetto_id\": \"r_a-13015\",\n    \"cornetto_synset_id\": \"n_a-502563\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schraal\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"milieubewust\": {\n    \"form\": \"milieubewust\",\n    \"cornetto_id\": \"r_a-12868\",\n    \"cornetto_synset_id\": \"n_a-518879\",\n    \"wordnet_id\": \"a-02906478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ecologisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"milieuvriendelijk\": {\n    \"form\": \"milieuvriendelijk\",\n    \"cornetto_id\": \"r_a-12870\",\n    \"cornetto_synset_id\": \"n_a-518890\",\n    \"wordnet_id\": \"a-02906778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet milieuonvriendelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"militair\": {\n    \"form\": \"militair\",\n    \"cornetto_id\": \"r_a-12871\",\n    \"cornetto_synset_id\": \"n_a-518892\",\n    \"wordnet_id\": \"a-02764251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het leger\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"militant\": {\n    \"form\": \"militant\",\n    \"cornetto_id\": \"r_a-12872\",\n    \"cornetto_synset_id\": \"n_a-529708\",\n    \"wordnet_id\": \"a-01017439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"strijdbaar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"min\": {\n    \"form\": \"min\",\n    \"cornetto_id\": \"r_a-12875\",\n    \"cornetto_synset_id\": \"n_a-532253\",\n    \"wordnet_id\": \"a-00752392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"laaghartig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"minachtend\": {\n    \"form\": \"minachtend\",\n    \"cornetto_id\": \"r_a-12876\",\n    \"cornetto_synset_id\": \"n_a-518925\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met minachting\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"minderwaardig\": {\n    \"form\": \"minderwaardig\",\n    \"cornetto_id\": \"r_a-12880\",\n    \"cornetto_synset_id\": \"n_a-518934\",\n    \"wordnet_id\": \"a-01673061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mineraal\": {\n    \"form\": \"mineraal\",\n    \"cornetto_id\": \"r_a-12881\",\n    \"cornetto_synset_id\": \"n_a-518936\",\n    \"wordnet_id\": \"a-03086974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit de bodem\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"miniem\": {\n    \"form\": \"miniem\",\n    \"cornetto_id\": \"r_a-12882\",\n    \"cornetto_synset_id\": \"n_a-523296\",\n    \"wordnet_id\": \"a-00516539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gering\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"minimaal\": {\n    \"form\": \"minimaal\",\n    \"cornetto_id\": \"r_a-12883\",\n    \"cornetto_synset_id\": \"n_a-518946\",\n    \"wordnet_id\": \"a-01496021\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst klein\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"minutieus\": {\n    \"form\": \"minutieus\",\n    \"cornetto_id\": \"r_a-12890\",\n    \"cornetto_synset_id\": \"n_a-518975\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwgezet\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"minzaam\": {\n    \"form\": \"minzaam\",\n    \"cornetto_id\": \"r_a-13019\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje hooghartig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"miraculeus\": {\n    \"form\": \"miraculeus\",\n    \"cornetto_id\": \"r_a-12892\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wonderlijk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"mis\": {\n    \"form\": \"mis\",\n    \"cornetto_id\": \"r_a-12894\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fout\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"misdeeld\": {\n    \"form\": \"misdeeld\",\n    \"cornetto_id\": \"r_a-12897\",\n    \"cornetto_synset_id\": \"n_a-518992\",\n    \"wordnet_id\": \"a-01050603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoeftig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"miserabel\": {\n    \"form\": \"miserabel\",\n    \"cornetto_id\": \"r_a-12898\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beroerd\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"miskleun\": {\n    \"form\": \"miskleun\",\n    \"cornetto_id\": \"r_n-23997\",\n    \"cornetto_synset_id\": \"d_n-27244\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mislukking\": {\n    \"form\": \"mislukking\",\n    \"cornetto_id\": \"r_n-24001\",\n    \"cornetto_synset_id\": \"d_n-40754\",\n    \"wordnet_id\": \"n-00066636\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mislukkeling\": {\n    \"form\": \"mislukkeling\",\n    \"cornetto_id\": \"d_n-173304\",\n    \"cornetto_synset_id\": \"d_n-35144\",\n    \"wordnet_id\": \"n-10273064\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mismaakt\": {\n    \"form\": \"mismaakt\",\n    \"cornetto_id\": \"r_a-12899\",\n    \"cornetto_synset_id\": \"n_a-519025\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misvormd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mismoedig\": {\n    \"form\": \"mismoedig\",\n    \"cornetto_id\": \"r_a-12900\",\n    \"cornetto_synset_id\": \"d_a-9411\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mistroostig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"misplaatst\": {\n    \"form\": \"misplaatst\",\n    \"cornetto_id\": \"r_a-12902\",\n    \"cornetto_synset_id\": \"n_a-519011\",\n    \"wordnet_id\": \"a-00138782\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongepast\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"misprijzend\": {\n    \"form\": \"misprijzend\",\n    \"cornetto_id\": \"r_a-12903\",\n    \"cornetto_synset_id\": \"n_a-519012\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afkeurend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"misselijk\": {\n    \"form\": \"misselijk\",\n    \"cornetto_id\": \"r_a-12905\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel naar, ergerlijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"misser\": {\n    \"form\": \"misser\",\n    \"cornetto_id\": \"r_n-24012\",\n    \"cornetto_synset_id\": \"d_n-27244\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mistig\": {\n    \"form\": \"mistig\",\n    \"cornetto_id\": \"r_a-12908\",\n    \"cornetto_synset_id\": \"n_a-519021\",\n    \"wordnet_id\": \"a-02548619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weinig zicht door mist\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mistroostig\": {\n    \"form\": \"mistroostig\",\n    \"cornetto_id\": \"r_a-12909\",\n    \"cornetto_synset_id\": \"d_a-9411\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"troosteloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"misvormd\": {\n    \"form\": \"misvormd\",\n    \"cornetto_id\": \"r_a-12910\",\n    \"cornetto_synset_id\": \"n_a-519025\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mismaakt\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modaal\": {\n    \"form\": \"modaal\",\n    \"cornetto_id\": \"r_a-12913\",\n    \"cornetto_synset_id\": \"n_a-518805\",\n    \"wordnet_id\": \"a-00486290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doorsnee\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modderig\": {\n    \"form\": \"modderig\",\n    \"cornetto_id\": \"r_a-12914\",\n    \"cornetto_synset_id\": \"n_a-519047\",\n    \"wordnet_id\": \"a-00503780\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modderachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modebewust\": {\n    \"form\": \"modebewust\",\n    \"cornetto_id\": \"r_a-12915\",\n    \"cornetto_synset_id\": \"n_a-519053\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met oog voor trends\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modern\": {\n    \"form\": \"modern\",\n    \"cornetto_id\": \"r_a-12918\",\n    \"cornetto_synset_id\": \"d_a-9408\",\n    \"wordnet_id\": \"a-00972902\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van deze tijd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"modernistisch\": {\n    \"form\": \"modernistisch\",\n    \"cornetto_id\": \"r_a-12919\",\n    \"cornetto_synset_id\": \"n_a-519077\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het modernisme\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modieus\": {\n    \"form\": \"modieus\",\n    \"cornetto_id\": \"r_a-12920\",\n    \"cornetto_synset_id\": \"d_a-9409\",\n    \"wordnet_id\": \"a-00971506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens de mode\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moe\": {\n    \"form\": \"moe\",\n    \"cornetto_id\": \"r_a-13021\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"er genoeg van hebben\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moedeloos\": {\n    \"form\": \"moedeloos\",\n    \"cornetto_id\": \"r_a-12923\",\n    \"cornetto_synset_id\": \"d_a-9411\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mismoedig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moedig\": {\n    \"form\": \"moedig\",\n    \"cornetto_id\": \"r_a-12925\",\n    \"cornetto_synset_id\": \"n_a-519123\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dapper\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moeilijk\": {\n    \"form\": \"moeilijk\",\n    \"cornetto_id\": \"r_a-12928\",\n    \"cornetto_synset_id\": \"c_391\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gemakkelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moeiteloos\": {\n    \"form\": \"moeiteloos\",\n    \"cornetto_id\": \"r_a-12929\",\n    \"cornetto_synset_id\": \"n_a-510235\",\n    \"wordnet_id\": \"a-00749230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder moeite\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moeizaam\": {\n    \"form\": \"moeizaam\",\n    \"cornetto_id\": \"r_a-12930\",\n    \"cornetto_synset_id\": \"n_a-519134\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stroef\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"mogelijk\": {\n    \"form\": \"mogelijk\",\n    \"cornetto_id\": \"r_a-12932\",\n    \"cornetto_synset_id\": \"n_a-519143\",\n    \"wordnet_id\": \"a-02418249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet onmogelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"momentaan\": {\n    \"form\": \"momentaan\",\n    \"cornetto_id\": \"r_a-12936\",\n    \"cornetto_synset_id\": \"n_a-513031\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"momenteel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mondain\": {\n    \"form\": \"mondain\",\n    \"cornetto_id\": \"r_a-12937\",\n    \"cornetto_synset_id\": \"n_a-519193\",\n    \"wordnet_id\": \"a-01333609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"werelds\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monddood\": {\n    \"form\": \"monddood\",\n    \"cornetto_id\": \"r_a-12938\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verplicht te zwijgen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mondiaal\": {\n    \"form\": \"mondiaal\",\n    \"cornetto_id\": \"r_a-12940\",\n    \"cornetto_synset_id\": \"n_a-534652\",\n    \"wordnet_id\": \"a-00527188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wereldwijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"mondig\": {\n    \"form\": \"mondig\",\n    \"cornetto_id\": \"r_a-13025\",\n    \"cornetto_synset_id\": \"n_a-518438\",\n    \"wordnet_id\": \"a-01644541\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geëmancipeerd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mongoloïde\": {\n    \"form\": \"mongoloïde\",\n    \"cornetto_id\": \"r_a-12942\",\n    \"cornetto_synset_id\": \"n_a-519206\",\n    \"wordnet_id\": \"a-03087909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) van een Mongool\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monogaam\": {\n    \"form\": \"monogaam\",\n    \"cornetto_id\": \"r_a-12945\",\n    \"cornetto_synset_id\": \"n_a-519223\",\n    \"wordnet_id\": \"a-01544347\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet polygaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monsterachtig\": {\n    \"form\": \"monsterachtig\",\n    \"cornetto_id\": \"r_a-12948\",\n    \"cornetto_synset_id\": \"n_a-519243\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"monsterlijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monter\": {\n    \"form\": \"monter\",\n    \"cornetto_id\": \"r_a-12951\",\n    \"cornetto_synset_id\": \"c_339\",\n    \"wordnet_id\": \"a-00271022\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opgewekt\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monumentaal\": {\n    \"form\": \"monumentaal\",\n    \"cornetto_id\": \"r_a-12952\",\n    \"cornetto_synset_id\": \"n_a-519268\",\n    \"wordnet_id\": \"a-01389170\",\n    \"pos\": \"JJ\",\n    \"sense\": \"groots\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mooi\": {\n    \"form\": \"mooi\",\n    \"cornetto_id\": \"r_a-12954\",\n    \"cornetto_synset_id\": \"c_178\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moppig\": {\n    \"form\": \"moppig\",\n    \"cornetto_id\": \"r_a-12957\",\n    \"cornetto_synset_id\": \"n_a-515488\",\n    \"wordnet_id\": \"a-01265308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leuk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"morbide\": {\n    \"form\": \"morbide\",\n    \"cornetto_id\": \"r_a-12959\",\n    \"cornetto_synset_id\": \"n_a-519305\",\n    \"wordnet_id\": \"a-01626440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ziekelijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moreel\": {\n    \"form\": \"moreel\",\n    \"cornetto_id\": \"r_a-12960\",\n    \"cornetto_synset_id\": \"n_a-535368\",\n    \"wordnet_id\": \"a-00905386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ethisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"motorisch\": {\n    \"form\": \"motorisch\",\n    \"cornetto_id\": \"r_a-13029\",\n    \"cornetto_synset_id\": \"n_a-519348\",\n    \"wordnet_id\": \"a-00324481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de motor betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"muf\": {\n    \"form\": \"muf\",\n    \"cornetto_id\": \"r_a-12968\",\n    \"cornetto_synset_id\": \"n_a-503252\",\n    \"wordnet_id\": \"a-01070088\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet fris\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"muffig\": {\n    \"form\": \"muffig\",\n    \"cornetto_id\": \"r_a-12969\",\n    \"cornetto_synset_id\": \"n_a-503252\",\n    \"wordnet_id\": \"a-01070088\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje muf\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"muisgrijs\": {\n    \"form\": \"muisgrijs\",\n    \"cornetto_id\": \"r_a-12970\",\n    \"cornetto_synset_id\": \"n_a-519394\",\n    \"wordnet_id\": \"a-00252826\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grijs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mul\": {\n    \"form\": \"mul\",\n    \"cornetto_id\": \"r_a-12972\",\n    \"cornetto_synset_id\": \"n_a-519402\",\n    \"wordnet_id\": \"a-00142040\",\n    \"pos\": \"JJ\",\n    \"sense\": \"los\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"multifunctioneel\": {\n    \"form\": \"multifunctioneel\",\n    \"cornetto_id\": \"r_a-12975\",\n    \"cornetto_synset_id\": \"n_a-519407\",\n    \"wordnet_id\": \"a-00527188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met vele functies\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"multilateraal\": {\n    \"form\": \"multilateraal\",\n    \"cornetto_id\": \"r_a-12976\",\n    \"cornetto_synset_id\": \"n_a-518468\",\n    \"wordnet_id\": \"a-00237240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelzijdig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"multinationaal\": {\n    \"form\": \"multinationaal\",\n    \"cornetto_id\": \"r_a-12977\",\n    \"cornetto_synset_id\": \"n_a-519411\",\n    \"wordnet_id\": \"a-01569166\",\n    \"pos\": \"JJ\",\n    \"sense\": \"internationaal verspreid\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"murw\": {\n    \"form\": \"murw\",\n    \"cornetto_id\": \"r_a-12979\",\n    \"cornetto_synset_id\": \"n_a-519438\",\n    \"wordnet_id\": \"a-02576918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"week\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"must\": {\n    \"form\": \"must\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"FW\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"muurvast\": {\n    \"form\": \"muurvast\",\n    \"cornetto_id\": \"r_a-12980\",\n    \"cornetto_synset_id\": \"n_a-519468\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"muzikaal\": {\n    \"form\": \"muzikaal\",\n    \"cornetto_id\": \"r_a-13032\",\n    \"cornetto_synset_id\": \"n_a-519488\",\n    \"wordnet_id\": \"a-01504625\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behorend tot de muziek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mwah\": {\n    \"form\": \"mwah\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mysterieus\": {\n    \"form\": \"mysterieus\",\n    \"cornetto_id\": \"r_a-12983\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"raadselachtig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mystiek\": {\n    \"form\": \"mystiek\",\n    \"cornetto_id\": \"r_a-12985\",\n    \"cornetto_synset_id\": \"n_a-504843\",\n    \"wordnet_id\": \"a-01574446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betreffende de mystiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mythisch\": {\n    \"form\": \"mythisch\",\n    \"cornetto_id\": \"r_a-12986\",\n    \"cornetto_synset_id\": \"n_a-516947\",\n    \"wordnet_id\": \"a-01936184\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fabelachtig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mythologisch\": {\n    \"form\": \"mythologisch\",\n    \"cornetto_id\": \"r_a-12987\",\n    \"cornetto_synset_id\": \"n_a-519495\",\n    \"wordnet_id\": \"a-01936184\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de mythologie\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naadloos\": {\n    \"form\": \"naadloos\",\n    \"cornetto_id\": \"r_a-13038\",\n    \"cornetto_synset_id\": \"n_a-519505\",\n    \"wordnet_id\": \"a-00464845\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder naad\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"naakt\": {\n    \"form\": \"naakt\",\n    \"cornetto_id\": \"r_a-13040\",\n    \"cornetto_synset_id\": \"n_a-520639\",\n    \"wordnet_id\": \"a-00106821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbegroeid en onbedekt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"naar\": {\n    \"form\": \"naar\",\n    \"cornetto_id\": \"r_a-13044\",\n    \"cornetto_synset_id\": \"n_a-519014\",\n    \"wordnet_id\": \"a-02545689\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misselijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"naargeestig\": {\n    \"form\": \"naargeestig\",\n    \"cornetto_id\": \"r_a-13045\",\n    \"cornetto_synset_id\": \"n_a-528326\",\n    \"wordnet_id\": \"a-00364479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"akelig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"naarstig\": {\n    \"form\": \"naarstig\",\n    \"cornetto_id\": \"r_a-13046\",\n    \"cornetto_synset_id\": \"n_a-513345\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijverig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"naast\": {\n    \"form\": \"naast\",\n    \"cornetto_id\": \"r_a-13197\",\n    \"cornetto_synset_id\": \"n_a-519548\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meest vertrouwd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nabij\": {\n    \"form\": \"nabij\",\n    \"cornetto_id\": \"r_a-13048\",\n    \"cornetto_synset_id\": \"d_a-9415\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dichtbij\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nadelig\": {\n    \"form\": \"nadelig\",\n    \"cornetto_id\": \"r_a-13052\",\n    \"cornetto_synset_id\": \"n_a-526699\",\n    \"wordnet_id\": \"a-00065488\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schadelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"nader\": {\n    \"form\": \"nader\",\n    \"cornetto_id\": \"r_a-13056\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meer of uitgebreider\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nalatig\": {\n    \"form\": \"nalatig\",\n    \"cornetto_id\": \"r_a-13060\",\n    \"cornetto_synset_id\": \"n_a-519631\",\n    \"wordnet_id\": \"a-00755220\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gedaan wat had gemoeten\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naoorlogs\": {\n    \"form\": \"naoorlogs\",\n    \"cornetto_id\": \"r_a-13062\",\n    \"cornetto_synset_id\": \"n_a-519636\",\n    \"wordnet_id\": \"a-00130017\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van na de oorlog\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"napoleontisch\": {\n    \"form\": \"napoleontisch\",\n    \"cornetto_id\": \"r_a-13063\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) van Napoleon\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"narcistisch\": {\n    \"form\": \"narcistisch\",\n    \"cornetto_id\": \"r_a-13064\",\n    \"cornetto_synset_id\": \"n_a-519645\",\n    \"wordnet_id\": \"a-02098694\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijdel en zelfingenomen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"narrig\": {\n    \"form\": \"narrig\",\n    \"cornetto_id\": \"r_a-13065\",\n    \"cornetto_synset_id\": \"d_a-9521\",\n    \"wordnet_id\": \"a-00703615\",\n    \"pos\": \"JJ\",\n    \"sense\": \"chagrijnig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nat\": {\n    \"form\": \"nat\",\n    \"cornetto_id\": \"r_a-13067\",\n    \"cornetto_synset_id\": \"d_a-9416\",\n    \"wordnet_id\": \"a-02547317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet droog\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nationaal\": {\n    \"form\": \"nationaal\",\n    \"cornetto_id\": \"r_a-13068\",\n    \"cornetto_synset_id\": \"n_a-519668\",\n    \"wordnet_id\": \"a-00463784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een natie betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nationalistisch\": {\n    \"form\": \"nationalistisch\",\n    \"cornetto_id\": \"r_a-13070\",\n    \"cornetto_synset_id\": \"n_a-519670\",\n    \"wordnet_id\": \"a-01568092\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(te) nationaal gezind\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"natuurlijk\": {\n    \"form\": \"natuurlijk\",\n    \"cornetto_id\": \"r_a-13079\",\n    \"cornetto_synset_id\": \"n_a-517484\",\n    \"wordnet_id\": \"a-01593649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"begrijpelijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"natuurwetenschappelijk\": {\n    \"form\": \"natuurwetenschappelijk\",\n    \"cornetto_id\": \"r_a-13081\",\n    \"cornetto_synset_id\": \"n_a-519708\",\n    \"wordnet_id\": \"a-02084804\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de natuurwetenschappen betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nauw\": {\n    \"form\": \"nauw\",\n    \"cornetto_id\": \"r_a-13084\",\n    \"cornetto_synset_id\": \"n_a-512169\",\n    \"wordnet_id\": \"a-00444519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dicht bij elkaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nauwgezet\": {\n    \"form\": \"nauwgezet\",\n    \"cornetto_id\": \"r_a-13086\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwkeurig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nauwkeurig\": {\n    \"form\": \"nauwkeurig\",\n    \"cornetto_id\": \"r_a-13088\",\n    \"cornetto_synset_id\": \"n_a-526930\",\n    \"wordnet_id\": \"a-00631798\",\n    \"pos\": \"JJ\",\n    \"sense\": \"precies\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nauwsluitend\": {\n    \"form\": \"nauwsluitend\",\n    \"cornetto_id\": \"r_a-13199\",\n    \"cornetto_synset_id\": \"n_a-519719\",\n    \"wordnet_id\": \"a-00017186\",\n    \"pos\": \"JJ\",\n    \"sense\": \"juist op of in elkaar passend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"navoelbaar\": {\n    \"form\": \"navoelbaar\",\n    \"cornetto_id\": \"r_a-13092\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"na te voelen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"navolgend\": {\n    \"form\": \"navolgend\",\n    \"cornetto_id\": \"r_a-13093\",\n    \"cornetto_synset_id\": \"n_a-519728\",\n    \"wordnet_id\": \"a-00127815\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hierna vermeld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"navrant\": {\n    \"form\": \"navrant\",\n    \"cornetto_id\": \"r_a-13094\",\n    \"cornetto_synset_id\": \"n_a-512119\",\n    \"wordnet_id\": \"a-01374004\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schrijnend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"naïef\": {\n    \"form\": \"naïef\",\n    \"cornetto_id\": \"r_a-13059\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnozel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"neergeknuppeld\": {\n    \"form\": \"neergeknuppeld\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nefast\": {\n    \"form\": \"nefast\",\n    \"cornetto_id\": \"r_a-13103\",\n    \"cornetto_synset_id\": \"n_a-532319\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"noodlottig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"negatief\": {\n    \"form\": \"negatief\",\n    \"cornetto_id\": \"r_a-13106\",\n    \"cornetto_synset_id\": \"n_a-519760\",\n    \"wordnet_id\": \"a-00065667\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleiner dan nul\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"neofascistisch\": {\n    \"form\": \"neofascistisch\",\n    \"cornetto_id\": \"r_a-13108\",\n    \"cornetto_synset_id\": \"n_a-519807\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het neofascisme betreffend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"neonazistisch\": {\n    \"form\": \"neonazistisch\",\n    \"cornetto_id\": \"r_a-13111\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het neonazisme betreffend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"nerveus\": {\n    \"form\": \"nerveus\",\n    \"cornetto_id\": \"r_a-13112\",\n    \"cornetto_synset_id\": \"n_a-535556\",\n    \"wordnet_id\": \"a-02406370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zenuwachtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"net\": {\n    \"form\": \"net\",\n    \"cornetto_id\": \"r_a-13203\",\n    \"cornetto_synset_id\": \"n_a-508843\",\n    \"wordnet_id\": \"a-01878870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fatsoenlijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"netelig\": {\n    \"form\": \"netelig\",\n    \"cornetto_id\": \"r_a-13114\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"netjes\": {\n    \"form\": \"netjes\",\n    \"cornetto_id\": \"r_a-13116\",\n    \"cornetto_synset_id\": \"n_a-508843\",\n    \"wordnet_id\": \"a-01878870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals het hoort\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"neurologisch\": {\n    \"form\": \"neurologisch\",\n    \"cornetto_id\": \"r_a-13119\",\n    \"cornetto_synset_id\": \"n_a-519903\",\n    \"wordnet_id\": \"a-02917893\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de neurologie betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"neurotisch\": {\n    \"form\": \"neurotisch\",\n    \"cornetto_id\": \"r_a-13120\",\n    \"cornetto_synset_id\": \"d_a-9419\",\n    \"wordnet_id\": \"a-02075847\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met neurose te maken hebbend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"neutraal\": {\n    \"form\": \"neutraal\",\n    \"cornetto_id\": \"r_a-13202\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet positief of negatief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nevelachtig\": {\n    \"form\": \"nevelachtig\",\n    \"cornetto_id\": \"r_a-13123\",\n    \"cornetto_synset_id\": \"n_a-519935\",\n    \"wordnet_id\": \"a-00462741\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een beetje mistig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nevengeschikt\": {\n    \"form\": \"nevengeschikt\",\n    \"cornetto_id\": \"r_a-13125\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nevenschikkend verbonden\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nichterig\": {\n    \"form\": \"nichterig\",\n    \"cornetto_id\": \"r_a-13128\",\n    \"cornetto_synset_id\": \"n_a-519957\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een homoseksueel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"niet-bindend\": {\n    \"form\": \"niet-bindend\",\n    \"cornetto_id\": \"r_a-13134\",\n    \"cornetto_synset_id\": \"n_a-519981\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waar je niet aan vast zit\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"niet-commercieel\": {\n    \"form\": \"niet-commercieel\",\n    \"cornetto_id\": \"r_a-13135\",\n    \"cornetto_synset_id\": \"n_a-513277\",\n    \"wordnet_id\": \"a-00484333\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder commercieel doel\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"niet-westers\": {\n    \"form\": \"niet-westers\",\n    \"cornetto_id\": \"r_a-13138\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet westers\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nietsvermoedend\": {\n    \"form\": \"nietsvermoedend\",\n    \"cornetto_id\": \"r_a-13142\",\n    \"cornetto_synset_id\": \"n_a-520000\",\n    \"wordnet_id\": \"a-00192523\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder iets te vermoeden\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nietszeggend\": {\n    \"form\": \"nietszeggend\",\n    \"cornetto_id\": \"r_a-13143\",\n    \"cornetto_synset_id\": \"n_a-516876\",\n    \"wordnet_id\": \"a-00501313\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder inhoud\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nieuw\": {\n    \"form\": \"nieuw\",\n    \"cornetto_id\": \"r_a-13145\",\n    \"cornetto_synset_id\": \"c_158\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van dit jaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nieuwbakken\": {\n    \"form\": \"nieuwbakken\",\n    \"cornetto_id\": \"r_a-13146\",\n    \"cornetto_synset_id\": \"d_a-9422\",\n    \"wordnet_id\": \"a-00128733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nieuw in een functie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nieuwsgierig\": {\n    \"form\": \"nieuwsgierig\",\n    \"cornetto_id\": \"r_a-13149\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"graag iets willen weten\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nihilistisch\": {\n    \"form\": \"nihilistisch\",\n    \"cornetto_id\": \"r_a-13150\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het nihilisme betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"nijpend\": {\n    \"form\": \"nijpend\",\n    \"cornetto_id\": \"r_a-13152\",\n    \"cornetto_synset_id\": \"n_a-523336\",\n    \"wordnet_id\": \"a-00605406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kwellend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"nipt\": {\n    \"form\": \"nipt\",\n    \"cornetto_id\": \"r_a-13155\",\n    \"cornetto_synset_id\": \"n_a-520051\",\n    \"wordnet_id\": \"a-00287640\",\n    \"pos\": \"JJ\",\n    \"sense\": \"maar net\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"nobel\": {\n    \"form\": \"nobel\",\n    \"cornetto_id\": \"r_a-13156\",\n    \"cornetto_synset_id\": \"n_a-507937\",\n    \"wordnet_id\": \"a-01588172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"edelmoedig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nodeloos\": {\n    \"form\": \"nodeloos\",\n    \"cornetto_id\": \"r_a-13157\",\n    \"cornetto_synset_id\": \"n_a-521309\",\n    \"wordnet_id\": \"a-01581115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnodig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"nodig\": {\n    \"form\": \"nodig\",\n    \"cornetto_id\": \"r_a-13159\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebruikelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"noemenswaardig\": {\n    \"form\": \"noemenswaardig\",\n    \"cornetto_id\": \"r_a-13160\",\n    \"cornetto_synset_id\": \"n_a-520070\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van belang\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"noest\": {\n    \"form\": \"noest\",\n    \"cornetto_id\": \"r_a-13161\",\n    \"cornetto_synset_id\": \"n_a-513345\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nijver\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"non-profit\": {\n    \"form\": \"non-profit\",\n    \"cornetto_id\": \"r_a-13166\",\n    \"cornetto_synset_id\": \"n_a-520102\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder winstoogmerk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"non-stop\": {\n    \"form\": \"non-stop\",\n    \"cornetto_id\": \"r_a-13167\",\n    \"cornetto_synset_id\": \"n_a-520586\",\n    \"wordnet_id\": \"a-00291338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onafgebroken\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nonchalant\": {\n    \"form\": \"nonchalant\",\n    \"cornetto_id\": \"r_a-13168\",\n    \"cornetto_synset_id\": \"n_a-520108\",\n    \"wordnet_id\": \"a-00311663\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achteloos\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"noodgedwongen\": {\n    \"form\": \"noodgedwongen\",\n    \"cornetto_id\": \"r_a-13169\",\n    \"cornetto_synset_id\": \"n_a-509863\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door nood gedwongen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"noodlottig\": {\n    \"form\": \"noodlottig\",\n    \"cornetto_id\": \"r_a-13171\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fataal\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"noodzakelijk\": {\n    \"form\": \"noodzakelijk\",\n    \"cornetto_id\": \"r_a-13173\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvermijdelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"normaal\": {\n    \"form\": \"normaal\",\n    \"cornetto_id\": \"r_a-13180\",\n    \"cornetto_synset_id\": \"c_80\",\n    \"wordnet_id\": \"a-01593649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewoon\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nors\": {\n    \"form\": \"nors\",\n    \"cornetto_id\": \"r_a-13182\",\n    \"cornetto_synset_id\": \"n_a-520179\",\n    \"wordnet_id\": \"a-01139067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bars\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nostalgisch\": {\n    \"form\": \"nostalgisch\",\n    \"cornetto_id\": \"r_a-13183\",\n    \"cornetto_synset_id\": \"d_a-9425\",\n    \"wordnet_id\": \"a-00889098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol nostalgie\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nuchter\": {\n    \"form\": \"nuchter\",\n    \"cornetto_id\": \"r_a-13210\",\n    \"cornetto_synset_id\": \"n_a-520215\",\n    \"wordnet_id\": \"a-01269319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet dronken\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nukkig\": {\n    \"form\": \"nukkig\",\n    \"cornetto_id\": \"r_a-13191\",\n    \"cornetto_synset_id\": \"n_a-511490\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol nukken en onberekenbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nurks\": {\n    \"form\": \"nurks\",\n    \"cornetto_id\": \"r_a-13194\",\n    \"cornetto_synset_id\": \"n_a-520179\",\n    \"wordnet_id\": \"a-01139067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"knorrig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nutteloos\": {\n    \"form\": \"nutteloos\",\n    \"cornetto_id\": \"r_a-13195\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zinloos\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nuttig\": {\n    \"form\": \"nuttig\",\n    \"cornetto_id\": \"r_a-13196\",\n    \"cornetto_synset_id\": \"n_a-520249\",\n    \"wordnet_id\": \"a-00019731\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruikbaar of zinvol\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"objectief\": {\n    \"form\": \"objectief\",\n    \"cornetto_id\": \"r_a-13211\",\n    \"cornetto_synset_id\": \"d_a-9427\",\n    \"wordnet_id\": \"a-00013442\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet subjectief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"obligaat\": {\n    \"form\": \"obligaat\",\n    \"cornetto_id\": \"r_a-13212\",\n    \"cornetto_synset_id\": \"n_a-520274\",\n    \"wordnet_id\": \"a-00848466\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verplicht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"obscuur\": {\n    \"form\": \"obscuur\",\n    \"cornetto_id\": \"r_a-14015\",\n    \"cornetto_synset_id\": \"n_a-532303\",\n    \"wordnet_id\": \"a-01917594\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbekend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"obsessief\": {\n    \"form\": \"obsessief\",\n    \"cornetto_id\": \"r_a-13215\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een obsessie\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"obstinaat\": {\n    \"form\": \"obstinaat\",\n    \"cornetto_id\": \"r_a-13216\",\n    \"cornetto_synset_id\": \"n_a-515826\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koppig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"0.7\"\n  },\n  \"occult\": {\n    \"form\": \"occult\",\n    \"cornetto_id\": \"r_a-13218\",\n    \"cornetto_synset_id\": \"n_a-508500\",\n    \"wordnet_id\": \"a-00898963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duister\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ocharme\": {\n    \"form\": \"ocharme\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oecumenisch\": {\n    \"form\": \"oecumenisch\",\n    \"cornetto_id\": \"r_a-13221\",\n    \"cornetto_synset_id\": \"n_a-520341\",\n    \"wordnet_id\": \"a-02092460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de oecumene betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oenig\": {\n    \"form\": \"oenig\",\n    \"cornetto_id\": \"d_a-188914\",\n    \"cornetto_synset_id\": \"c_579\",\n    \"wordnet_id\": \"a-01841390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dom\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"oersaai\": {\n    \"form\": \"oersaai\",\n    \"cornetto_id\": \"d_a-207819\",\n    \"cornetto_synset_id\": \"n_a-520370\",\n    \"wordnet_id\": \"a-01345307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"oersterk\": {\n    \"form\": \"oersterk\",\n    \"cornetto_id\": \"r_a-13226\",\n    \"cornetto_synset_id\": \"n_a-503648\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg sterk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oeverloos\": {\n    \"form\": \"oeverloos\",\n    \"cornetto_id\": \"r_a-13229\",\n    \"cornetto_synset_id\": \"n_a-520379\",\n    \"wordnet_id\": \"a-01007657\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eindeloos\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"offensief\": {\n    \"form\": \"offensief\",\n    \"cornetto_id\": \"r_a-13230\",\n    \"cornetto_synset_id\": \"n_a-501314\",\n    \"wordnet_id\": \"a-01629349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanvallend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"officieel\": {\n    \"form\": \"officieel\",\n    \"cornetto_id\": \"r_a-14020\",\n    \"cornetto_synset_id\": \"n_a-509253\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naar vormelijke verplichtingen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"officieus\": {\n    \"form\": \"officieus\",\n    \"cornetto_id\": \"r_a-13232\",\n    \"cornetto_synset_id\": \"n_a-520405\",\n    \"wordnet_id\": \"a-01044240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet officieel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ogenblikkelijk\": {\n    \"form\": \"ogenblikkelijk\",\n    \"cornetto_id\": \"r_a-13233\",\n    \"cornetto_synset_id\": \"c_744\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nu al aanwezig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ogenschijnlijk\": {\n    \"form\": \"ogenschijnlijk\",\n    \"cornetto_id\": \"r_a-13234\",\n    \"cornetto_synset_id\": \"n_a-526993\",\n    \"wordnet_id\": \"a-00028471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schijnbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"oliedom\": {\n    \"form\": \"oliedom\",\n    \"cornetto_id\": \"r_a-13238\",\n    \"cornetto_synset_id\": \"n_a-529438\",\n    \"wordnet_id\": \"a-00015480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg dom\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"olympisch\": {\n    \"form\": \"olympisch\",\n    \"cornetto_id\": \"r_a-13243\",\n    \"cornetto_synset_id\": \"n_a-520482\",\n    \"wordnet_id\": \"a-03093076\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de Olympische Spelen betreffend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"omineus\": {\n    \"form\": \"omineus\",\n    \"cornetto_id\": \"r_a-13247\",\n    \"cornetto_synset_id\": \"n_a-521232\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onheilspellend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"omslachtig\": {\n    \"form\": \"omslachtig\",\n    \"cornetto_id\": \"r_a-13251\",\n    \"cornetto_synset_id\": \"n_a-520533\",\n    \"wordnet_id\": \"a-00549236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"omstandig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"omzichtig\": {\n    \"form\": \"omzichtig\",\n    \"cornetto_id\": \"r_a-13255\",\n    \"cornetto_synset_id\": \"n_a-520558\",\n    \"wordnet_id\": \"a-01898490\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoedzaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaangenaam\": {\n    \"form\": \"onaangenaam\",\n    \"cornetto_id\": \"r_a-13260\",\n    \"cornetto_synset_id\": \"d_a-9431\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naar\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"onaangepast\": {\n    \"form\": \"onaangepast\",\n    \"cornetto_id\": \"r_a-13261\",\n    \"cornetto_synset_id\": \"n_a-502630\",\n    \"wordnet_id\": \"a-00351420\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet aangepast\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaangevochten\": {\n    \"form\": \"onaangevochten\",\n    \"cornetto_id\": \"d_a-191535\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaantastbaar\": {\n    \"form\": \"onaantastbaar\",\n    \"cornetto_id\": \"r_a-13264\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet aan te tasten\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaantrekkelijk\": {\n    \"form\": \"onaantrekkelijk\",\n    \"cornetto_id\": \"r_a-13265\",\n    \"cornetto_synset_id\": \"d_a-9381\",\n    \"wordnet_id\": \"a-00220956\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet aantrekkelijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaanzienlijk\": {\n    \"form\": \"onaanzienlijk\",\n    \"cornetto_id\": \"r_a-14024\",\n    \"cornetto_synset_id\": \"n_a-520627\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder aanzien\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaardig\": {\n    \"form\": \"onaardig\",\n    \"cornetto_id\": \"r_a-13268\",\n    \"cornetto_synset_id\": \"n_a-521675\",\n    \"wordnet_id\": \"a-00640283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onsympathiek\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onacceptabel\": {\n    \"form\": \"onacceptabel\",\n    \"cornetto_id\": \"r_a-13269\",\n    \"cornetto_synset_id\": \"n_a-520577\",\n    \"wordnet_id\": \"a-00590564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet acceptabel\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onachtzaam\": {\n    \"form\": \"onachtzaam\",\n    \"cornetto_id\": \"r_a-13270\",\n    \"cornetto_synset_id\": \"n_a-520108\",\n    \"wordnet_id\": \"a-00311663\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nonchalant\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onaf\": {\n    \"form\": \"onaf\",\n    \"cornetto_id\": \"r_a-13271\",\n    \"cornetto_synset_id\": \"n_a-521663\",\n    \"wordnet_id\": \"a-00525315\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvoltooid\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onafgebroken\": {\n    \"form\": \"onafgebroken\",\n    \"cornetto_id\": \"r_a-13272\",\n    \"cornetto_synset_id\": \"n_a-520586\",\n    \"wordnet_id\": \"a-00291338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doorlopend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"onafhankelijk\": {\n    \"form\": \"onafhankelijk\",\n    \"cornetto_id\": \"r_a-14025\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet van iets anders afhangend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onafwendbaar\": {\n    \"form\": \"onafwendbaar\",\n    \"cornetto_id\": \"r_a-13276\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvermijdelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onafzienbaar\": {\n    \"form\": \"onafzienbaar\",\n    \"cornetto_id\": \"r_a-13277\",\n    \"cornetto_synset_id\": \"n_a-520607\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te overzien\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onalledaags\": {\n    \"form\": \"onalledaags\",\n    \"cornetto_id\": \"r_a-13278\",\n    \"cornetto_synset_id\": \"d_a-9188\",\n    \"wordnet_id\": \"a-00966477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijzonder\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbaatzuchtig\": {\n    \"form\": \"onbaatzuchtig\",\n    \"cornetto_id\": \"r_a-13280\",\n    \"cornetto_synset_id\": \"d_a-9432\",\n    \"wordnet_id\": \"a-00101609\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangeloos\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbarmhartig\": {\n    \"form\": \"onbarmhartig\",\n    \"cornetto_id\": \"r_a-13281\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongenadig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"onbeantwoord\": {\n    \"form\": \"onbeantwoord\",\n    \"cornetto_id\": \"r_a-13282\",\n    \"cornetto_synset_id\": \"n_a-520614\",\n    \"wordnet_id\": \"a-01947127\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beantwoord\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbedachtzaam\": {\n    \"form\": \"onbedachtzaam\",\n    \"cornetto_id\": \"r_a-13284\",\n    \"cornetto_synset_id\": \"n_a-521299\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnadenkend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbedoeld\": {\n    \"form\": \"onbedoeld\",\n    \"cornetto_id\": \"r_a-13285\",\n    \"cornetto_synset_id\": \"n_a-520622\",\n    \"wordnet_id\": \"a-00192523\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onopzettelijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbedreigd\": {\n    \"form\": \"onbedreigd\",\n    \"cornetto_id\": \"r_a-13287\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bedreigd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeduidend\": {\n    \"form\": \"onbeduidend\",\n    \"cornetto_id\": \"r_a-13288\",\n    \"cornetto_synset_id\": \"c_373\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet belangrijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbedwingbaar\": {\n    \"form\": \"onbedwingbaar\",\n    \"cornetto_id\": \"r_a-13289\",\n    \"cornetto_synset_id\": \"n_a-520642\",\n    \"wordnet_id\": \"a-00570099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bedwingbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"onbegaanbaar\": {\n    \"form\": \"onbegaanbaar\",\n    \"cornetto_id\": \"r_a-13290\",\n    \"cornetto_synset_id\": \"n_a-520630\",\n    \"wordnet_id\": \"a-00020241\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet begaanbaar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbegrensd\": {\n    \"form\": \"onbegrensd\",\n    \"cornetto_id\": \"r_a-13292\",\n    \"cornetto_synset_id\": \"n_a-520673\",\n    \"wordnet_id\": \"a-00595299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grenzeloos\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.9\"\n  },\n  \"onbegrepen\": {\n    \"form\": \"onbegrepen\",\n    \"cornetto_id\": \"r_a-13293\",\n    \"cornetto_synset_id\": \"n_a-519003\",\n    \"wordnet_id\": \"a-01379251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet begrepen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbegrijpelijk\": {\n    \"form\": \"onbegrijpelijk\",\n    \"cornetto_id\": \"r_a-13294\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te begrijpen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbehaaglijk\": {\n    \"form\": \"onbehaaglijk\",\n    \"cornetto_id\": \"r_a-13295\",\n    \"cornetto_synset_id\": \"d_a-9433\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet aangenaam\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeheersbaar\": {\n    \"form\": \"onbeheersbaar\",\n    \"cornetto_id\": \"r_a-13297\",\n    \"cornetto_synset_id\": \"n_a-520642\",\n    \"wordnet_id\": \"a-00570099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beheersbaar\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeheerst\": {\n    \"form\": \"onbeheerst\",\n    \"cornetto_id\": \"r_a-13298\",\n    \"cornetto_synset_id\": \"n_a-520643\",\n    \"wordnet_id\": \"a-01514141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beheerst\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeholpen\": {\n    \"form\": \"onbeholpen\",\n    \"cornetto_id\": \"r_a-13299\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onhandig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbehoorlijk\": {\n    \"form\": \"onbehoorlijk\",\n    \"cornetto_id\": \"r_a-13300\",\n    \"cornetto_synset_id\": \"d_a-9447\",\n    \"wordnet_id\": \"a-00411481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet behoorlijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbekend\": {\n    \"form\": \"onbekend\",\n    \"cornetto_id\": \"r_a-14027\",\n    \"cornetto_synset_id\": \"n_a-521710\",\n    \"wordnet_id\": \"a-00831696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beroemd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbelangrijk\": {\n    \"form\": \"onbelangrijk\",\n    \"cornetto_id\": \"r_a-13305\",\n    \"cornetto_synset_id\": \"n_a-520661\",\n    \"wordnet_id\": \"a-01279978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeduidend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbeleefd\": {\n    \"form\": \"onbeleefd\",\n    \"cornetto_id\": \"r_a-13307\",\n    \"cornetto_synset_id\": \"n_a-520665\",\n    \"wordnet_id\": \"a-00641640\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beleefd\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbelemmerd\": {\n    \"form\": \"onbelemmerd\",\n    \"cornetto_id\": \"r_a-13308\",\n    \"cornetto_synset_id\": \"d_a-9598\",\n    \"wordnet_id\": \"a-02001984\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongehinderd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbenullig\": {\n    \"form\": \"onbenullig\",\n    \"cornetto_id\": \"r_a-13313\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbelangrijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbenut\": {\n    \"form\": \"onbenut\",\n    \"cornetto_id\": \"r_a-13314\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet benut\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbepaald\": {\n    \"form\": \"onbepaald\",\n    \"cornetto_id\": \"r_a-13315\",\n    \"cornetto_synset_id\": \"n_a-520670\",\n    \"wordnet_id\": \"a-00697389\",\n    \"pos\": \"JJ\",\n    \"sense\": \"taalkundige term\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeperkt\": {\n    \"form\": \"onbeperkt\",\n    \"cornetto_id\": \"r_a-13316\",\n    \"cornetto_synset_id\": \"n_a-521166\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beperkt\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onberekenbaar\": {\n    \"form\": \"onberekenbaar\",\n    \"cornetto_id\": \"r_a-14033\",\n    \"cornetto_synset_id\": \"n_a-511490\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te berekenen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onberoerd\": {\n    \"form\": \"onberoerd\",\n    \"cornetto_id\": \"r_a-14034\",\n    \"cornetto_synset_id\": \"n_a-520570\",\n    \"wordnet_id\": \"a-00088899\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaangedaan\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbeschermd\": {\n    \"form\": \"onbeschermd\",\n    \"cornetto_id\": \"r_a-13326\",\n    \"cornetto_synset_id\": \"n_a-520695\",\n    \"wordnet_id\": \"a-00036254\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet beschermd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeschoft\": {\n    \"form\": \"onbeschoft\",\n    \"cornetto_id\": \"r_a-13327\",\n    \"cornetto_synset_id\": \"n_a-520696\",\n    \"wordnet_id\": \"a-00641944\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met slechte manieren\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbeschrijfelijk\": {\n    \"form\": \"onbeschrijfelijk\",\n    \"cornetto_id\": \"r_a-13329\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te beschrijven\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbestaand\": {\n    \"form\": \"onbestaand\",\n    \"cornetto_id\": \"r_a-13338\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"denkbeeldig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbestemd\": {\n    \"form\": \"onbestemd\",\n    \"cornetto_id\": \"r_a-13339\",\n    \"cornetto_synset_id\": \"n_a-531905\",\n    \"wordnet_id\": \"a-00120784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbestreden\": {\n    \"form\": \"onbestreden\",\n    \"cornetto_id\": \"d_a-208029\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbesuisd\": {\n    \"form\": \"onbesuisd\",\n    \"cornetto_id\": \"r_a-13343\",\n    \"cornetto_synset_id\": \"n_a-507154\",\n    \"wordnet_id\": \"a-00203614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onstuimig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbetamelijk\": {\n    \"form\": \"onbetamelijk\",\n    \"cornetto_id\": \"r_a-13346\",\n    \"cornetto_synset_id\": \"d_a-9447\",\n    \"wordnet_id\": \"a-00136081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwelvoeglijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"onbetreden\": {\n    \"form\": \"onbetreden\",\n    \"cornetto_id\": \"r_a-13348\",\n    \"cornetto_synset_id\": \"n_a-520727\",\n    \"wordnet_id\": \"a-00020241\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet betreden\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbetrouwbaar\": {\n    \"form\": \"onbetrouwbaar\",\n    \"cornetto_id\": \"r_a-13349\",\n    \"cornetto_synset_id\": \"d_a-9434\",\n    \"wordnet_id\": \"a-00338013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet betrouwbaar\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbetwist\": {\n    \"form\": \"onbetwist\",\n    \"cornetto_id\": \"r_a-13351\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onomstreden\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbetwistbaar\": {\n    \"form\": \"onbetwistbaar\",\n    \"cornetto_id\": \"r_a-13352\",\n    \"cornetto_synset_id\": \"n_a-521692\",\n    \"wordnet_id\": \"a-00591406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te betwisten\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbevangen\": {\n    \"form\": \"onbevangen\",\n    \"cornetto_id\": \"r_a-13354\",\n    \"cornetto_synset_id\": \"n_a-533914\",\n    \"wordnet_id\": \"a-00287498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geremd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbevattelijk\": {\n    \"form\": \"onbevattelijk\",\n    \"cornetto_id\": \"d_a-192060\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbevredigd\": {\n    \"form\": \"onbevredigd\",\n    \"cornetto_id\": \"r_a-13357\",\n    \"cornetto_synset_id\": \"d_a-9459\",\n    \"wordnet_id\": \"a-00589624\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet tevredengesteld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbevredigend\": {\n    \"form\": \"onbevredigend\",\n    \"cornetto_id\": \"r_a-13358\",\n    \"cornetto_synset_id\": \"n_a-520738\",\n    \"wordnet_id\": \"a-02082611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bevredigend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbewogen\": {\n    \"form\": \"onbewogen\",\n    \"cornetto_id\": \"r_a-13363\",\n    \"cornetto_synset_id\": \"n_a-520565\",\n    \"wordnet_id\": \"a-00074346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geroerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbewolkt\": {\n    \"form\": \"onbewolkt\",\n    \"cornetto_id\": \"r_a-13364\",\n    \"cornetto_synset_id\": \"d_a-9329\",\n    \"wordnet_id\": \"a-00460946\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bewolkt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbewust\": {\n    \"form\": \"onbewust\",\n    \"cornetto_id\": \"r_a-14042\",\n    \"cornetto_synset_id\": \"n_a-520754\",\n    \"wordnet_id\": \"a-00573093\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet wetend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onbezonnen\": {\n    \"form\": \"onbezonnen\",\n    \"cornetto_id\": \"r_a-13369\",\n    \"cornetto_synset_id\": \"n_a-520943\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnadenkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbezorgd\": {\n    \"form\": \"onbezorgd\",\n    \"cornetto_id\": \"r_a-13370\",\n    \"cornetto_synset_id\": \"n_a-520762\",\n    \"wordnet_id\": \"a-00545746\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgeloos\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbillijk\": {\n    \"form\": \"onbillijk\",\n    \"cornetto_id\": \"r_a-13371\",\n    \"cornetto_synset_id\": \"n_a-521381\",\n    \"wordnet_id\": \"a-00958712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onredelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbreekbaar\": {\n    \"form\": \"onbreekbaar\",\n    \"cornetto_id\": \"r_a-13373\",\n    \"cornetto_synset_id\": \"n_a-520769\",\n    \"wordnet_id\": \"a-00709744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet breekbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onbuigzaam\": {\n    \"form\": \"onbuigzaam\",\n    \"cornetto_id\": \"r_a-14044\",\n    \"cornetto_synset_id\": \"n_a-515826\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"koppig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onchristelijk\": {\n    \"form\": \"onchristelijk\",\n    \"cornetto_id\": \"r_a-13376\",\n    \"cornetto_synset_id\": \"n_a-520776\",\n    \"wordnet_id\": \"a-00411481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet christelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oncomfortabel\": {\n    \"form\": \"oncomfortabel\",\n    \"cornetto_id\": \"r_a-13377\",\n    \"cornetto_synset_id\": \"n_a-521143\",\n    \"wordnet_id\": \"a-00605128\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongemakkelijk\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oncontroleerbaar\": {\n    \"form\": \"oncontroleerbaar\",\n    \"cornetto_id\": \"r_a-13378\",\n    \"cornetto_synset_id\": \"n_a-520780\",\n    \"wordnet_id\": \"a-01616350\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet controleerbaar\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onconventioneel\": {\n    \"form\": \"onconventioneel\",\n    \"cornetto_id\": \"r_a-13379\",\n    \"cornetto_synset_id\": \"n_a-520781\",\n    \"wordnet_id\": \"a-00362269\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongewoon\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondankbaar\": {\n    \"form\": \"ondankbaar\",\n    \"cornetto_id\": \"r_a-14049\",\n    \"cornetto_synset_id\": \"n_a-520783\",\n    \"wordnet_id\": \"a-01147044\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de moeite niet lonend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondemocratisch\": {\n    \"form\": \"ondemocratisch\",\n    \"cornetto_id\": \"r_a-13383\",\n    \"cornetto_synset_id\": \"n_a-520786\",\n    \"wordnet_id\": \"a-00717417\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet democratisch\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondenkbaar\": {\n    \"form\": \"ondenkbaar\",\n    \"cornetto_id\": \"r_a-13384\",\n    \"cornetto_synset_id\": \"n_a-521670\",\n    \"wordnet_id\": \"a-02418538\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voorstelbaar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondergeschikt\": {\n    \"form\": \"ondergeschikt\",\n    \"cornetto_id\": \"r_a-13391\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zo belangrijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onderhoudend\": {\n    \"form\": \"onderhoudend\",\n    \"cornetto_id\": \"r_a-13398\",\n    \"cornetto_synset_id\": \"n_a-520837\",\n    \"wordnet_id\": \"a-00641460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boeiend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onderhuids\": {\n    \"form\": \"onderhuids\",\n    \"cornetto_id\": \"r_a-14057\",\n    \"cornetto_synset_id\": \"n_a-520851\",\n    \"wordnet_id\": \"a-00461971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onder de oppervlakte\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onderliggend\": {\n    \"form\": \"onderliggend\",\n    \"cornetto_id\": \"r_a-14059\",\n    \"cornetto_synset_id\": \"n_a-520863\",\n    \"wordnet_id\": \"a-00941940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet onmiddellijk zichtbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onderling\": {\n    \"form\": \"onderling\",\n    \"cornetto_id\": \"r_a-13402\",\n    \"cornetto_synset_id\": \"n_a-520865\",\n    \"wordnet_id\": \"a-01586194\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onder elkaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondermaats\": {\n    \"form\": \"ondermaats\",\n    \"cornetto_id\": \"r_a-13404\",\n    \"cornetto_synset_id\": \"n_a-520867\",\n    \"wordnet_id\": \"a-01394558\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvoldoende\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onderontwikkeld\": {\n    \"form\": \"onderontwikkeld\",\n    \"cornetto_id\": \"r_a-13406\",\n    \"cornetto_synset_id\": \"n_a-520876\",\n    \"wordnet_id\": \"a-00201354\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achtergebleven\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onderst\": {\n    \"form\": \"onderst\",\n    \"cornetto_id\": \"r_a-13410\",\n    \"cornetto_synset_id\": \"d_a-9440\",\n    \"wordnet_id\": \"a-01207546\",\n    \"pos\": \"JJ\",\n    \"sense\": \"laagst gelegen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onderstaand\": {\n    \"form\": \"onderstaand\",\n    \"cornetto_id\": \"d_a-193098\",\n    \"cornetto_synset_id\": \"n_a-520887\",\n    \"wordnet_id\": \"a-00127948\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondervoed\": {\n    \"form\": \"ondervoed\",\n    \"cornetto_id\": \"r_a-13412\",\n    \"cornetto_synset_id\": \"n_a-520906\",\n    \"wordnet_id\": \"a-02301180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijdend aan ondervoeding\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondeskundig\": {\n    \"form\": \"ondeskundig\",\n    \"cornetto_id\": \"r_a-13414\",\n    \"cornetto_synset_id\": \"d_a-9441\",\n    \"wordnet_id\": \"a-01870636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet deskundig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondeugdelijk\": {\n    \"form\": \"ondeugdelijk\",\n    \"cornetto_id\": \"r_a-13415\",\n    \"cornetto_synset_id\": \"d_a-9442\",\n    \"wordnet_id\": \"a-00023854\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet goed\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondeugend\": {\n    \"form\": \"ondeugend\",\n    \"cornetto_id\": \"r_a-14064\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pikant\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondoelmatig\": {\n    \"form\": \"ondoelmatig\",\n    \"cornetto_id\": \"r_a-13418\",\n    \"cornetto_synset_id\": \"n_a-513586\",\n    \"wordnet_id\": \"a-00046792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet doelmatig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondoenlijk\": {\n    \"form\": \"ondoenlijk\",\n    \"cornetto_id\": \"r_a-13419\",\n    \"cornetto_synset_id\": \"d_a-9456\",\n    \"wordnet_id\": \"a-00955405\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onuitvoerbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"ondoordacht\": {\n    \"form\": \"ondoordacht\",\n    \"cornetto_id\": \"r_a-13420\",\n    \"cornetto_synset_id\": \"n_a-520943\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet doordacht\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondoordringbaar\": {\n    \"form\": \"ondoordringbaar\",\n    \"cornetto_id\": \"r_a-13421\",\n    \"cornetto_synset_id\": \"n_a-520944\",\n    \"wordnet_id\": \"a-00939444\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet doordringbaar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondoorgrondelijk\": {\n    \"form\": \"ondoorgrondelijk\",\n    \"cornetto_id\": \"r_a-13422\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te doorgronden\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ondoorzichtig\": {\n    \"form\": \"ondoorzichtig\",\n    \"cornetto_id\": \"r_a-14065\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk te begrijpen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondrinkbaar\": {\n    \"form\": \"ondrinkbaar\",\n    \"cornetto_id\": \"r_a-13425\",\n    \"cornetto_synset_id\": \"d_a-9444\",\n    \"wordnet_id\": \"a-00797218\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet drinkbaar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ondubbelzinnig\": {\n    \"form\": \"ondubbelzinnig\",\n    \"cornetto_id\": \"r_a-13426\",\n    \"cornetto_synset_id\": \"n_a-520956\",\n    \"wordnet_id\": \"a-00103696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volstrekt duidelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onduidelijk\": {\n    \"form\": \"onduidelijk\",\n    \"cornetto_id\": \"r_a-13427\",\n    \"cornetto_synset_id\": \"n_a-520958\",\n    \"wordnet_id\": \"a-00436115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet duidelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"oneens\": {\n    \"form\": \"oneens\",\n    \"cornetto_id\": \"r_a-13432\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet eens\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oneerbaar\": {\n    \"form\": \"oneerbaar\",\n    \"cornetto_id\": \"r_a-13433\",\n    \"cornetto_synset_id\": \"c_532\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet eerbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oneerbiedig\": {\n    \"form\": \"oneerbiedig\",\n    \"cornetto_id\": \"r_a-13434\",\n    \"cornetto_synset_id\": \"n_a-520967\",\n    \"wordnet_id\": \"a-01994602\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet eerbiedig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oneerlijk\": {\n    \"form\": \"oneerlijk\",\n    \"cornetto_id\": \"r_a-13435\",\n    \"cornetto_synset_id\": \"n_a-520969\",\n    \"wordnet_id\": \"a-00621207\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet eerlijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"oneetbaar\": {\n    \"form\": \"oneetbaar\",\n    \"cornetto_id\": \"r_a-13437\",\n    \"cornetto_synset_id\": \"d_a-9445\",\n    \"wordnet_id\": \"a-00829496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te eten\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oneffen\": {\n    \"form\": \"oneffen\",\n    \"cornetto_id\": \"r_a-13438\",\n    \"cornetto_synset_id\": \"d_a-9446\",\n    \"wordnet_id\": \"a-02240006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet effen\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oneindig\": {\n    \"form\": \"oneindig\",\n    \"cornetto_id\": \"r_a-13440\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eindeloos\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onervaren\": {\n    \"form\": \"onervaren\",\n    \"cornetto_id\": \"r_a-13441\",\n    \"cornetto_synset_id\": \"n_a-520979\",\n    \"wordnet_id\": \"a-00936740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet ervaren\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onevenaarbaar\": {\n    \"form\": \"onevenaarbaar\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"onevenwichtig\": {\n    \"form\": \"onevenwichtig\",\n    \"cornetto_id\": \"r_a-13444\",\n    \"cornetto_synset_id\": \"n_a-520983\",\n    \"wordnet_id\": \"a-00345189\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet evenwichtig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onfatsoenlijk\": {\n    \"form\": \"onfatsoenlijk\",\n    \"cornetto_id\": \"r_a-13445\",\n    \"cornetto_synset_id\": \"d_a-9447\",\n    \"wordnet_id\": \"a-00411481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet fatsoenlijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onfeilbaar\": {\n    \"form\": \"onfeilbaar\",\n    \"cornetto_id\": \"r_a-13446\",\n    \"cornetto_synset_id\": \"n_a-520986\",\n    \"wordnet_id\": \"a-00964906\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nooit falend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onfris\": {\n    \"form\": \"onfris\",\n    \"cornetto_id\": \"r_a-14068\",\n    \"cornetto_synset_id\": \"n_a-527874\",\n    \"wordnet_id\": \"a-01321529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedenkelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeboren\": {\n    \"form\": \"ongeboren\",\n    \"cornetto_id\": \"r_a-13453\",\n    \"cornetto_synset_id\": \"n_a-521013\",\n    \"wordnet_id\": \"a-00003553\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geboren\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongebreideld\": {\n    \"form\": \"ongebreideld\",\n    \"cornetto_id\": \"r_a-13455\",\n    \"cornetto_synset_id\": \"n_a-521014\",\n    \"wordnet_id\": \"a-02001596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeteugeld\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongebruikelijk\": {\n    \"form\": \"ongebruikelijk\",\n    \"cornetto_id\": \"r_a-13457\",\n    \"cornetto_synset_id\": \"n_a-521017\",\n    \"wordnet_id\": \"a-00487653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gebruikelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongecompliceerd\": {\n    \"form\": \"ongecompliceerd\",\n    \"cornetto_id\": \"r_a-13460\",\n    \"cornetto_synset_id\": \"d_a-9254\",\n    \"wordnet_id\": \"a-00750296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet ingewikkeld\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongecontroleerd\": {\n    \"form\": \"ongecontroleerd\",\n    \"cornetto_id\": \"r_a-14074\",\n    \"cornetto_synset_id\": \"n_a-520643\",\n    \"wordnet_id\": \"a-01514141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeheerst\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongecoördineerd\": {\n    \"form\": \"ongecoördineerd\",\n    \"cornetto_id\": \"r_a-13459\",\n    \"cornetto_synset_id\": \"n_a-534209\",\n    \"wordnet_id\": \"a-01204443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gecoördineerd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongedisciplineerd\": {\n    \"form\": \"ongedisciplineerd\",\n    \"cornetto_id\": \"r_a-13468\",\n    \"cornetto_synset_id\": \"n_a-521034\",\n    \"wordnet_id\": \"a-00601499\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gedisciplineerd\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeduldig\": {\n    \"form\": \"ongeduldig\",\n    \"cornetto_id\": \"r_a-13469\",\n    \"cornetto_synset_id\": \"n_a-521037\",\n    \"wordnet_id\": \"a-00811536\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geduldig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongefundeerd\": {\n    \"form\": \"ongefundeerd\",\n    \"cornetto_id\": \"r_a-13474\",\n    \"cornetto_synset_id\": \"n_a-521047\",\n    \"wordnet_id\": \"a-00179486\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongegrond\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ongehinderd\": {\n    \"form\": \"ongehinderd\",\n    \"cornetto_id\": \"r_a-13477\",\n    \"cornetto_synset_id\": \"n_a-521166\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gehinderd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongehoord\": {\n    \"form\": \"ongehoord\",\n    \"cornetto_id\": \"r_a-13478\",\n    \"cornetto_synset_id\": \"n_a-521051\",\n    \"wordnet_id\": \"a-00128572\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schandelijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongekend\": {\n    \"form\": \"ongekend\",\n    \"cornetto_id\": \"r_a-13483\",\n    \"cornetto_synset_id\": \"n_a-521055\",\n    \"wordnet_id\": \"a-00128572\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uniek\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongekroond\": {\n    \"form\": \"ongekroond\",\n    \"cornetto_id\": \"r_a-13484\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gekroond\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongekunsteld\": {\n    \"form\": \"ongekunsteld\",\n    \"cornetto_id\": \"r_a-13486\",\n    \"cornetto_synset_id\": \"n_a-533914\",\n    \"wordnet_id\": \"a-00287498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"natuurlijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeldig\": {\n    \"form\": \"ongeldig\",\n    \"cornetto_id\": \"r_a-13487\",\n    \"cornetto_synset_id\": \"n_a-521063\",\n    \"wordnet_id\": \"a-02500497\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geldig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelegen\": {\n    \"form\": \"ongelegen\",\n    \"cornetto_id\": \"r_a-13489\",\n    \"cornetto_synset_id\": \"n_a-521065\",\n    \"wordnet_id\": \"a-00714320\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gelegen\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelezen\": {\n    \"form\": \"ongelezen\",\n    \"cornetto_id\": \"r_a-13491\",\n    \"cornetto_synset_id\": \"n_a-521066\",\n    \"wordnet_id\": \"a-01309835\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gelezen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongelijk\": {\n    \"form\": \"ongelijk\",\n    \"cornetto_id\": \"r_a-14081\",\n    \"cornetto_synset_id\": \"d_a-9446\",\n    \"wordnet_id\": \"a-02240006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oneffen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelimiteerd\": {\n    \"form\": \"ongelimiteerd\",\n    \"cornetto_id\": \"r_a-13495\",\n    \"cornetto_synset_id\": \"n_a-520673\",\n    \"wordnet_id\": \"a-00595299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeperkt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelofelijk\": {\n    \"form\": \"ongelofelijk\",\n    \"cornetto_id\": \"r_a-13496\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te geloven\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongelofeloos\": {\n    \"form\": \"ongelofeloos\",\n    \"cornetto_id\": \"d_a-415116\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelooflijk\": {\n    \"form\": \"ongelooflijk\",\n    \"cornetto_id\": \"d_a-539755\",\n    \"cornetto_synset_id\": \"c_681\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeloofwaardig\": {\n    \"form\": \"ongeloofwaardig\",\n    \"cornetto_id\": \"r_a-13498\",\n    \"cornetto_synset_id\": \"n_a-521086\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geloofwaardig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongelovig\": {\n    \"form\": \"ongelovig\",\n    \"cornetto_id\": \"r_a-14082\",\n    \"cornetto_synset_id\": \"n_a-521215\",\n    \"wordnet_id\": \"a-01305929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongodsdienstig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongelukkig\": {\n    \"form\": \"ongelukkig\",\n    \"cornetto_id\": \"r_a-13502\",\n    \"cornetto_synset_id\": \"n_a-509936\",\n    \"wordnet_id\": \"a-01019283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gehandicapt\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongemakkelijk\": {\n    \"form\": \"ongemakkelijk\",\n    \"cornetto_id\": \"r_a-14089\",\n    \"cornetto_synset_id\": \"n_a-521143\",\n    \"wordnet_id\": \"a-00605128\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet op je gemak\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongemerkt\": {\n    \"form\": \"ongemerkt\",\n    \"cornetto_id\": \"r_a-14176\",\n    \"cornetto_synset_id\": \"n_a-521336\",\n    \"wordnet_id\": \"a-01608264\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onopvallend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongenadig\": {\n    \"form\": \"ongenadig\",\n    \"cornetto_id\": \"r_a-13509\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genadeloos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeneeslijk\": {\n    \"form\": \"ongeneeslijk\",\n    \"cornetto_id\": \"r_a-13510\",\n    \"cornetto_synset_id\": \"n_a-521115\",\n    \"wordnet_id\": \"a-00349759\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te genezen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongenuanceerd\": {\n    \"form\": \"ongenuanceerd\",\n    \"cornetto_id\": \"r_a-13513\",\n    \"cornetto_synset_id\": \"n_a-521119\",\n    \"wordnet_id\": \"a-00394331\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet genuanceerd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongepast\": {\n    \"form\": \"ongepast\",\n    \"cornetto_id\": \"r_a-13517\",\n    \"cornetto_synset_id\": \"n_a-521127\",\n    \"wordnet_id\": \"a-00136081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbetamelijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongepeld\": {\n    \"form\": \"ongepeld\",\n    \"cornetto_id\": \"r_a-13518\",\n    \"cornetto_synset_id\": \"n_a-521130\",\n    \"wordnet_id\": \"a-00372111\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gepeld\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeremd\": {\n    \"form\": \"ongeremd\",\n    \"cornetto_id\": \"r_a-14093\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder matiging\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongerept\": {\n    \"form\": \"ongerept\",\n    \"cornetto_id\": \"r_a-13522\",\n    \"cornetto_synset_id\": \"n_a-520570\",\n    \"wordnet_id\": \"a-00088899\",\n    \"pos\": \"JJ\",\n    \"sense\": \"puur en ongeschonden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongerijmd\": {\n    \"form\": \"ongerijmd\",\n    \"cornetto_id\": \"r_a-13523\",\n    \"cornetto_synset_id\": \"n_a-501466\",\n    \"wordnet_id\": \"a-02074929\",\n    \"pos\": \"JJ\",\n    \"sense\": \"absurd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongerust\": {\n    \"form\": \"ongerust\",\n    \"cornetto_id\": \"r_a-13524\",\n    \"cornetto_synset_id\": \"n_a-504029\",\n    \"wordnet_id\": \"a-00078851\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bezorgd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ongeschikt\": {\n    \"form\": \"ongeschikt\",\n    \"cornetto_id\": \"r_a-13525\",\n    \"cornetto_synset_id\": \"n_a-521149\",\n    \"wordnet_id\": \"a-01017738\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geschikt\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongesteld\": {\n    \"form\": \"ongesteld\",\n    \"cornetto_id\": \"r_a-13531\",\n    \"cornetto_synset_id\": \"n_a-521162\",\n    \"wordnet_id\": \"a-01293542\",\n    \"pos\": \"JJ\",\n    \"sense\": \"menstruerend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongestoord\": {\n    \"form\": \"ongestoord\",\n    \"cornetto_id\": \"r_a-13533\",\n    \"cornetto_synset_id\": \"n_a-521166\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gestoord\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongevaarlijk\": {\n    \"form\": \"ongevaarlijk\",\n    \"cornetto_id\": \"r_a-13536\",\n    \"cornetto_synset_id\": \"n_a-521177\",\n    \"wordnet_id\": \"a-00066933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gevaarlijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongewapend\": {\n    \"form\": \"ongewapend\",\n    \"cornetto_id\": \"r_a-13540\",\n    \"cornetto_synset_id\": \"n_a-521191\",\n    \"wordnet_id\": \"a-00142917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gewapend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongewassen\": {\n    \"form\": \"ongewassen\",\n    \"cornetto_id\": \"r_a-13541\",\n    \"cornetto_synset_id\": \"n_a-521192\",\n    \"wordnet_id\": \"a-00423874\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gewassen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongewoon\": {\n    \"form\": \"ongewoon\",\n    \"cornetto_id\": \"r_a-13546\",\n    \"cornetto_synset_id\": \"n_a-521201\",\n    \"wordnet_id\": \"a-00287275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gewoon\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongezeglijk\": {\n    \"form\": \"ongezeglijk\",\n    \"cornetto_id\": \"r_a-13547\",\n    \"cornetto_synset_id\": \"d_a-9448\",\n    \"wordnet_id\": \"a-00696207\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weerbarstig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongezond\": {\n    \"form\": \"ongezond\",\n    \"cornetto_id\": \"r_a-13550\",\n    \"cornetto_synset_id\": \"d_a-9453\",\n    \"wordnet_id\": \"a-01172889\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ziekelijk van lichaam of geest\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongezouten\": {\n    \"form\": \"ongezouten\",\n    \"cornetto_id\": \"r_a-13551\",\n    \"cornetto_synset_id\": \"n_a-521211\",\n    \"wordnet_id\": \"a-02400125\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openhartig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ongeëvenaard\": {\n    \"form\": \"ongeëvenaard\",\n    \"cornetto_id\": \"r_a-13472\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geëvenaard\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongeïnspireerd\": {\n    \"form\": \"ongeïnspireerd\",\n    \"cornetto_id\": \"r_a-13481\",\n    \"cornetto_synset_id\": \"n_a-521001\",\n    \"wordnet_id\": \"a-00074346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet geïnspireerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongrijpbaar\": {\n    \"form\": \"ongrijpbaar\",\n    \"cornetto_id\": \"r_a-13553\",\n    \"cornetto_synset_id\": \"n_a-531905\",\n    \"wordnet_id\": \"a-00120784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te grijpen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ongunstig\": {\n    \"form\": \"ongunstig\",\n    \"cornetto_id\": \"r_a-13555\",\n    \"cornetto_synset_id\": \"n_a-521220\",\n    \"wordnet_id\": \"a-00177963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nadelig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onguur\": {\n    \"form\": \"onguur\",\n    \"cornetto_id\": \"r_a-13556\",\n    \"cornetto_synset_id\": \"n_a-511467\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbetrouwbaar en griezelig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onhandig\": {\n    \"form\": \"onhandig\",\n    \"cornetto_id\": \"r_a-14103\",\n    \"cornetto_synset_id\": \"n_a-521227\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk te hanteren\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onhebbelijk\": {\n    \"form\": \"onhebbelijk\",\n    \"cornetto_id\": \"r_a-13560\",\n    \"cornetto_synset_id\": \"n_a-521230\",\n    \"wordnet_id\": \"a-00641944\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvriendelijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onheilspellend\": {\n    \"form\": \"onheilspellend\",\n    \"cornetto_id\": \"r_a-13561\",\n    \"cornetto_synset_id\": \"n_a-521232\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel dreigend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"onherbergzaam\": {\n    \"form\": \"onherbergzaam\",\n    \"cornetto_id\": \"r_a-13562\",\n    \"cornetto_synset_id\": \"n_a-521234\",\n    \"wordnet_id\": \"a-01243102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"woest en ontoegankelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onherkenbaar\": {\n    \"form\": \"onherkenbaar\",\n    \"cornetto_id\": \"r_a-13563\",\n    \"cornetto_synset_id\": \"n_a-521235\",\n    \"wordnet_id\": \"a-01273773\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet herkenbaar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onherroepelijk\": {\n    \"form\": \"onherroepelijk\",\n    \"cornetto_id\": \"r_a-13564\",\n    \"cornetto_synset_id\": \"n_a-506530\",\n    \"wordnet_id\": \"a-01618895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"definitief\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onheuglijk\": {\n    \"form\": \"onheuglijk\",\n    \"cornetto_id\": \"r_a-13566\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel erg lang geleden\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onhoudbaar\": {\n    \"form\": \"onhoudbaar\",\n    \"cornetto_id\": \"r_a-13569\",\n    \"cornetto_synset_id\": \"n_a-521570\",\n    \"wordnet_id\": \"a-01722367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te verdedigen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onhygiënisch\": {\n    \"form\": \"onhygiënisch\",\n    \"cornetto_id\": \"r_a-13570\",\n    \"cornetto_synset_id\": \"n_a-521248\",\n    \"wordnet_id\": \"a-00420650\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet hygiënisch\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"oninteressant\": {\n    \"form\": \"oninteressant\",\n    \"cornetto_id\": \"r_a-13571\",\n    \"cornetto_synset_id\": \"c_573\",\n    \"wordnet_id\": \"a-02307729\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet interessant\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onjuist\": {\n    \"form\": \"onjuist\",\n    \"cornetto_id\": \"r_a-13572\",\n    \"cornetto_synset_id\": \"n_a-521254\",\n    \"wordnet_id\": \"a-02461723\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet juist\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onkerkelijk\": {\n    \"form\": \"onkerkelijk\",\n    \"cornetto_id\": \"r_a-13573\",\n    \"cornetto_synset_id\": \"n_a-521256\",\n    \"wordnet_id\": \"a-01784602\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet kerkelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onkuis\": {\n    \"form\": \"onkuis\",\n    \"cornetto_id\": \"r_a-13577\",\n    \"cornetto_synset_id\": \"d_a-9471\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onzedig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onkwetsbaar\": {\n    \"form\": \"onkwetsbaar\",\n    \"cornetto_id\": \"r_a-13579\",\n    \"cornetto_synset_id\": \"n_a-521266\",\n    \"wordnet_id\": \"a-02525206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet kwetsbaar\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onleefbaar\": {\n    \"form\": \"onleefbaar\",\n    \"cornetto_id\": \"r_a-13581\",\n    \"cornetto_synset_id\": \"n_a-521268\",\n    \"wordnet_id\": \"a-01423998\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet leefbaar\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onleesbaar\": {\n    \"form\": \"onleesbaar\",\n    \"cornetto_id\": \"r_a-14107\",\n    \"cornetto_synset_id\": \"n_a-521270\",\n    \"wordnet_id\": \"a-01405523\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg slecht geschreven\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onlogisch\": {\n    \"form\": \"onlogisch\",\n    \"cornetto_id\": \"r_a-13583\",\n    \"cornetto_synset_id\": \"n_a-521272\",\n    \"wordnet_id\": \"a-00465221\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet logisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onlosmakelijk\": {\n    \"form\": \"onlosmakelijk\",\n    \"cornetto_id\": \"r_a-13585\",\n    \"cornetto_synset_id\": \"n_a-521567\",\n    \"wordnet_id\": \"a-00786173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverbrekelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onmachtig\": {\n    \"form\": \"onmachtig\",\n    \"cornetto_id\": \"r_a-13586\",\n    \"cornetto_synset_id\": \"n_a-513099\",\n    \"wordnet_id\": \"a-01827535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"machteloos\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmenselijk\": {\n    \"form\": \"onmenselijk\",\n    \"cornetto_id\": \"r_a-13588\",\n    \"cornetto_synset_id\": \"d_a-9455\",\n    \"wordnet_id\": \"a-01262611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"barbaars\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmetelijk\": {\n    \"form\": \"onmetelijk\",\n    \"cornetto_id\": \"r_a-13589\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbegrensd\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"onmiddellijk\": {\n    \"form\": \"onmiddellijk\",\n    \"cornetto_id\": \"r_a-13591\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waar niets tussen zit\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmisbaar\": {\n    \"form\": \"onmisbaar\",\n    \"cornetto_id\": \"r_a-13592\",\n    \"cornetto_synset_id\": \"n_a-520130\",\n    \"wordnet_id\": \"a-00849108\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onontbeerlijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmiskenbaar\": {\n    \"form\": \"onmiskenbaar\",\n    \"cornetto_id\": \"r_a-13593\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"apert\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmogelijk\": {\n    \"form\": \"onmogelijk\",\n    \"cornetto_id\": \"r_a-14108\",\n    \"cornetto_synset_id\": \"n_a-503484\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belachelijk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onmondig\": {\n    \"form\": \"onmondig\",\n    \"cornetto_id\": \"r_a-13596\",\n    \"cornetto_synset_id\": \"n_a-518931\",\n    \"wordnet_id\": \"a-00727481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet mondig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onnadrukkelijk\": {\n    \"form\": \"onnadrukkelijk\",\n    \"cornetto_id\": \"r_a-13598\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onopvallend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onnaspeurbaar\": {\n    \"form\": \"onnaspeurbaar\",\n    \"cornetto_id\": \"d_a-194728\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onnaspeurlijk\": {\n    \"form\": \"onnaspeurlijk\",\n    \"cornetto_id\": \"d_a-194729\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onnatuurlijk\": {\n    \"form\": \"onnatuurlijk\",\n    \"cornetto_id\": \"r_a-14109\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gekunsteld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onnavolgbaar\": {\n    \"form\": \"onnavolgbaar\",\n    \"cornetto_id\": \"r_a-13601\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet na te doen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onneembaar\": {\n    \"form\": \"onneembaar\",\n    \"cornetto_id\": \"r_a-13603\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te veroveren\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onnodig\": {\n    \"form\": \"onnodig\",\n    \"cornetto_id\": \"r_a-13604\",\n    \"cornetto_synset_id\": \"n_a-521309\",\n    \"wordnet_id\": \"a-01581115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet nodig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onnozel\": {\n    \"form\": \"onnozel\",\n    \"cornetto_id\": \"r_a-13607\",\n    \"cornetto_synset_id\": \"n_a-520661\",\n    \"wordnet_id\": \"a-01279978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbelangrijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onofficieel\": {\n    \"form\": \"onofficieel\",\n    \"cornetto_id\": \"r_a-13609\",\n    \"cornetto_synset_id\": \"n_a-520405\",\n    \"wordnet_id\": \"a-01044240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet officieel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onomstotelijk\": {\n    \"form\": \"onomstotelijk\",\n    \"cornetto_id\": \"r_a-13611\",\n    \"cornetto_synset_id\": \"n_a-521692\",\n    \"wordnet_id\": \"a-00591406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onweerlegbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onomstreden\": {\n    \"form\": \"onomstreden\",\n    \"cornetto_id\": \"r_a-13612\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbetwist\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onomwonden\": {\n    \"form\": \"onomwonden\",\n    \"cornetto_id\": \"r_a-13613\",\n    \"cornetto_synset_id\": \"c_761\",\n    \"wordnet_id\": \"a-00761734\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverbloemd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ononderbroken\": {\n    \"form\": \"ononderbroken\",\n    \"cornetto_id\": \"r_a-13614\",\n    \"cornetto_synset_id\": \"n_a-520586\",\n    \"wordnet_id\": \"a-00291338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet onderbroken\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"onontbeerlijk\": {\n    \"form\": \"onontbeerlijk\",\n    \"cornetto_id\": \"r_a-13615\",\n    \"cornetto_synset_id\": \"n_a-520130\",\n    \"wordnet_id\": \"a-00849108\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onmisbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onontkoombaar\": {\n    \"form\": \"onontkoombaar\",\n    \"cornetto_id\": \"r_a-13616\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvermijdelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onooglijk\": {\n    \"form\": \"onooglijk\",\n    \"cornetto_id\": \"r_a-14112\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeduidend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onopgehelderd\": {\n    \"form\": \"onopgehelderd\",\n    \"cornetto_id\": \"r_a-13621\",\n    \"cornetto_synset_id\": \"n_a-521334\",\n    \"wordnet_id\": \"a-01507008\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet opgehelderd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onopgelost\": {\n    \"form\": \"onopgelost\",\n    \"cornetto_id\": \"r_a-13622\",\n    \"cornetto_synset_id\": \"n_a-521334\",\n    \"wordnet_id\": \"a-01507008\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet opgelost\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onopgevoed\": {\n    \"form\": \"onopgevoed\",\n    \"cornetto_id\": \"r_a-13625\",\n    \"cornetto_synset_id\": \"n_a-520693\",\n    \"wordnet_id\": \"a-00074741\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht opgevoed\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onophoudelijk\": {\n    \"form\": \"onophoudelijk\",\n    \"cornetto_id\": \"r_a-13626\",\n    \"cornetto_synset_id\": \"n_a-533706\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanhoudend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onoplosbaar\": {\n    \"form\": \"onoplosbaar\",\n    \"cornetto_id\": \"r_a-13627\",\n    \"cornetto_synset_id\": \"n_a-521341\",\n    \"wordnet_id\": \"a-01230728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet oplosbaar\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onopvallend\": {\n    \"form\": \"onopvallend\",\n    \"cornetto_id\": \"r_a-13628\",\n    \"cornetto_synset_id\": \"n_a-521345\",\n    \"wordnet_id\": \"a-00702444\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet opvallend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onoverbrugbaar\": {\n    \"form\": \"onoverbrugbaar\",\n    \"cornetto_id\": \"r_a-13631\",\n    \"cornetto_synset_id\": \"n_a-521350\",\n    \"wordnet_id\": \"a-00278418\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te overbruggen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onoverkomelijk\": {\n    \"form\": \"onoverkomelijk\",\n    \"cornetto_id\": \"r_a-13634\",\n    \"cornetto_synset_id\": \"n_a-521355\",\n    \"wordnet_id\": \"a-00570225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te overkomen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onovertroffen\": {\n    \"form\": \"onovertroffen\",\n    \"cornetto_id\": \"r_a-13635\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitmuntend\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onoverwinnelijk\": {\n    \"form\": \"onoverwinnelijk\",\n    \"cornetto_id\": \"r_a-13636\",\n    \"cornetto_synset_id\": \"n_a-521360\",\n    \"wordnet_id\": \"a-00569568\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet overwinnelijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onoverzichtelijk\": {\n    \"form\": \"onoverzichtelijk\",\n    \"cornetto_id\": \"r_a-13637\",\n    \"cornetto_synset_id\": \"n_a-521362\",\n    \"wordnet_id\": \"a-02176178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet overzichtelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onpeilbaar\": {\n    \"form\": \"onpeilbaar\",\n    \"cornetto_id\": \"d_a-194933\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onpersoonlijk\": {\n    \"form\": \"onpersoonlijk\",\n    \"cornetto_id\": \"r_a-13641\",\n    \"cornetto_synset_id\": \"n_a-529332\",\n    \"wordnet_id\": \"a-01633153\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder eigen karakter\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onplezierig\": {\n    \"form\": \"onplezierig\",\n    \"cornetto_id\": \"r_a-13642\",\n    \"cornetto_synset_id\": \"d_a-9431\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaangenaam\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"onprettig\": {\n    \"form\": \"onprettig\",\n    \"cornetto_id\": \"r_a-13644\",\n    \"cornetto_synset_id\": \"d_a-9431\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet prettig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onproductief\": {\n    \"form\": \"onproductief\",\n    \"cornetto_id\": \"r_a-13645\",\n    \"cornetto_synset_id\": \"n_a-521386\",\n    \"wordnet_id\": \"a-01866535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet productief\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onrealistisch\": {\n    \"form\": \"onrealistisch\",\n    \"cornetto_id\": \"r_a-13646\",\n    \"cornetto_synset_id\": \"n_a-521709\",\n    \"wordnet_id\": \"a-00626136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet realistisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onrechtvaardig\": {\n    \"form\": \"onrechtvaardig\",\n    \"cornetto_id\": \"r_a-13649\",\n    \"cornetto_synset_id\": \"n_a-521380\",\n    \"wordnet_id\": \"a-00958712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet rechtvaardig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onredelijk\": {\n    \"form\": \"onredelijk\",\n    \"cornetto_id\": \"r_a-13650\",\n    \"cornetto_synset_id\": \"n_a-521381\",\n    \"wordnet_id\": \"a-00958712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbillijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onrendabel\": {\n    \"form\": \"onrendabel\",\n    \"cornetto_id\": \"r_a-13653\",\n    \"cornetto_synset_id\": \"n_a-521386\",\n    \"wordnet_id\": \"a-01866535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet rendabel\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onrijp\": {\n    \"form\": \"onrijp\",\n    \"cornetto_id\": \"r_a-13654\",\n    \"cornetto_synset_id\": \"n_a-521387\",\n    \"wordnet_id\": \"a-01489722\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet rijp\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onrustbarend\": {\n    \"form\": \"onrustbarend\",\n    \"cornetto_id\": \"r_a-13656\",\n    \"cornetto_synset_id\": \"n_a-535949\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onrust wekkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onrustig\": {\n    \"form\": \"onrustig\",\n    \"cornetto_id\": \"r_a-14121\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"steeds in beweging\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onsamenhangend\": {\n    \"form\": \"onsamenhangend\",\n    \"cornetto_id\": \"r_a-13658\",\n    \"cornetto_synset_id\": \"n_a-521393\",\n    \"wordnet_id\": \"a-00436115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet samenhangend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onschadelijk\": {\n    \"form\": \"onschadelijk\",\n    \"cornetto_id\": \"r_a-13659\",\n    \"cornetto_synset_id\": \"n_a-521394\",\n    \"wordnet_id\": \"a-01159655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet schadelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onschatbaar\": {\n    \"form\": \"onschatbaar\",\n    \"cornetto_id\": \"r_a-13660\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te schatten\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"onscherp\": {\n    \"form\": \"onscherp\",\n    \"cornetto_id\": \"r_a-13663\",\n    \"cornetto_synset_id\": \"d_a-9560\",\n    \"wordnet_id\": \"a-00782957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onschuldig\": {\n    \"form\": \"onschuldig\",\n    \"cornetto_id\": \"r_a-14123\",\n    \"cornetto_synset_id\": \"n_a-506738\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"argeloos\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onsmakelijk\": {\n    \"form\": \"onsmakelijk\",\n    \"cornetto_id\": \"r_a-14124\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"walgelijk\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"onsportief\": {\n    \"form\": \"onsportief\",\n    \"cornetto_id\": \"r_a-14125\",\n    \"cornetto_synset_id\": \"n_a-529331\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet sportief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onsterfelijk\": {\n    \"form\": \"onsterfelijk\",\n    \"cornetto_id\": \"r_a-14127\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel erg beroemd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"onstuimig\": {\n    \"form\": \"onstuimig\",\n    \"cornetto_id\": \"r_a-13670\",\n    \"cornetto_synset_id\": \"n_a-521412\",\n    \"wordnet_id\": \"a-01725712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk te bedwingen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onstuitbaar\": {\n    \"form\": \"onstuitbaar\",\n    \"cornetto_id\": \"r_a-13671\",\n    \"cornetto_synset_id\": \"n_a-520642\",\n    \"wordnet_id\": \"a-00570099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te stuiten\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onsympathiek\": {\n    \"form\": \"onsympathiek\",\n    \"cornetto_id\": \"r_a-13672\",\n    \"cornetto_synset_id\": \"c_340\",\n    \"wordnet_id\": \"a-00640283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet sympathiek\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontelbaar\": {\n    \"form\": \"ontelbaar\",\n    \"cornetto_id\": \"r_a-13678\",\n    \"cornetto_synset_id\": \"n_a-530266\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te tellen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontembaar\": {\n    \"form\": \"ontembaar\",\n    \"cornetto_id\": \"r_a-13679\",\n    \"cornetto_synset_id\": \"n_a-520642\",\n    \"wordnet_id\": \"a-00570099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbedwingbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onterecht\": {\n    \"form\": \"onterecht\",\n    \"cornetto_id\": \"r_a-13680\",\n    \"cornetto_synset_id\": \"n_a-521254\",\n    \"wordnet_id\": \"a-02461723\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet terecht\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontevreden\": {\n    \"form\": \"ontevreden\",\n    \"cornetto_id\": \"r_a-13681\",\n    \"cornetto_synset_id\": \"d_a-9459\",\n    \"wordnet_id\": \"a-00589624\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misnoegd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontgoocheld\": {\n    \"form\": \"ontgoocheld\",\n    \"cornetto_id\": \"r_a-13682\",\n    \"cornetto_synset_id\": \"n_a-521435\",\n    \"wordnet_id\": \"a-00866392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"teleurgesteld\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onthand\": {\n    \"form\": \"onthand\",\n    \"cornetto_id\": \"r_a-13683\",\n    \"cornetto_synset_id\": \"d_a-9423\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontriefd\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onthutst\": {\n    \"form\": \"onthutst\",\n    \"cornetto_id\": \"r_a-13685\",\n    \"cornetto_synset_id\": \"n_a-521440\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontsteld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontluisterend\": {\n    \"form\": \"ontluisterend\",\n    \"cornetto_id\": \"r_a-13687\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dramatisch slecht of schokkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontoegankelijk\": {\n    \"form\": \"ontoegankelijk\",\n    \"cornetto_id\": \"r_a-13688\",\n    \"cornetto_synset_id\": \"d_a-9460\",\n    \"wordnet_id\": \"a-01773665\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet toegankelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontoerekeningsvatbaar\": {\n    \"form\": \"ontoerekeningsvatbaar\",\n    \"cornetto_id\": \"r_a-13691\",\n    \"cornetto_synset_id\": \"n_a-521470\",\n    \"wordnet_id\": \"a-01997910\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet toerekeningsvatbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontploffen\": {\n    \"form\": \"ontploffen\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ontroerend\": {\n    \"form\": \"ontroerend\",\n    \"cornetto_id\": \"r_a-13695\",\n    \"cornetto_synset_id\": \"n_a-521480\",\n    \"wordnet_id\": \"a-01365544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat ontroert\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontspannen\": {\n    \"form\": \"ontspannen\",\n    \"cornetto_id\": \"r_a-13698\",\n    \"cornetto_synset_id\": \"d_a-9464\",\n    \"wordnet_id\": \"a-00971660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relaxed\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontspannend\": {\n    \"form\": \"ontspannend\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontvlambaar\": {\n    \"form\": \"ontvlambaar\",\n    \"cornetto_id\": \"r_a-13705\",\n    \"cornetto_synset_id\": \"n_a-521512\",\n    \"wordnet_id\": \"a-00473243\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gauw vlam vattend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontzaglijk\": {\n    \"form\": \"ontzaglijk\",\n    \"cornetto_id\": \"r_a-13710\",\n    \"cornetto_synset_id\": \"n_a-508356\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontzagwekkend\": {\n    \"form\": \"ontzagwekkend\",\n    \"cornetto_id\": \"r_a-13711\",\n    \"cornetto_synset_id\": \"n_a-513568\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzag inboezemend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontzet\": {\n    \"form\": \"ontzet\",\n    \"cornetto_id\": \"r_a-13712\",\n    \"cornetto_synset_id\": \"n_a-521440\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontsteld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ontzettend\": {\n    \"form\": \"ontzettend\",\n    \"cornetto_id\": \"r_a-13714\",\n    \"cornetto_synset_id\": \"c_267\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzaglijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontzettende\": {\n    \"form\": \"ontzettende\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"ontzield\": {\n    \"form\": \"ontzield\",\n    \"cornetto_id\": \"r_a-13715\",\n    \"cornetto_synset_id\": \"d_a-9236\",\n    \"wordnet_id\": \"a-00095280\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dood\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onuitputtelijk\": {\n    \"form\": \"onuitputtelijk\",\n    \"cornetto_id\": \"r_a-13717\",\n    \"cornetto_synset_id\": \"n_a-520673\",\n    \"wordnet_id\": \"a-00595299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet uit te putten\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onuitroeibaar\": {\n    \"form\": \"onuitroeibaar\",\n    \"cornetto_id\": \"r_a-13718\",\n    \"cornetto_synset_id\": \"n_a-512051\",\n    \"wordnet_id\": \"a-00898289\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet uit te roeien\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onuitsprekelijk\": {\n    \"form\": \"onuitsprekelijk\",\n    \"cornetto_id\": \"r_a-13719\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enorm\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onuitstaanbaar\": {\n    \"form\": \"onuitstaanbaar\",\n    \"cornetto_id\": \"r_a-13720\",\n    \"cornetto_synset_id\": \"n_a-521551\",\n    \"wordnet_id\": \"a-00421590\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverdraaglijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onuitvoerbaar\": {\n    \"form\": \"onuitvoerbaar\",\n    \"cornetto_id\": \"r_a-13721\",\n    \"cornetto_synset_id\": \"d_a-9456\",\n    \"wordnet_id\": \"a-00955405\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet uitvoerbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"onuitwisbaar\": {\n    \"form\": \"onuitwisbaar\",\n    \"cornetto_id\": \"r_a-13722\",\n    \"cornetto_synset_id\": \"n_a-521552\",\n    \"wordnet_id\": \"a-00898289\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet uit te wissen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onveilig\": {\n    \"form\": \"onveilig\",\n    \"cornetto_id\": \"r_a-13723\",\n    \"cornetto_synset_id\": \"n_a-510726\",\n    \"wordnet_id\": \"a-02058794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet veilig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverantwoord\": {\n    \"form\": \"onverantwoord\",\n    \"cornetto_id\": \"r_a-14137\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder rekenschap\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverantwoordelijk\": {\n    \"form\": \"onverantwoordelijk\",\n    \"cornetto_id\": \"r_a-13727\",\n    \"cornetto_synset_id\": \"n_a-525999\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verantwoordelijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverbloemd\": {\n    \"form\": \"onverbloemd\",\n    \"cornetto_id\": \"r_a-13730\",\n    \"cornetto_synset_id\": \"n_a-521323\",\n    \"wordnet_id\": \"a-00765666\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverholen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverbrekelijk\": {\n    \"form\": \"onverbrekelijk\",\n    \"cornetto_id\": \"r_a-13731\",\n    \"cornetto_synset_id\": \"n_a-521567\",\n    \"wordnet_id\": \"a-00786173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te verbreken\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverdacht\": {\n    \"form\": \"onverdacht\",\n    \"cornetto_id\": \"r_a-13732\",\n    \"cornetto_synset_id\": \"n_a-521569\",\n    \"wordnet_id\": \"a-00418364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarop geen verdenking rust\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverdeeld\": {\n    \"form\": \"onverdeeld\",\n    \"cornetto_id\": \"r_a-14139\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet gedeeld\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverdroten\": {\n    \"form\": \"onverdroten\",\n    \"cornetto_id\": \"r_a-13738\",\n    \"cornetto_synset_id\": \"n_a-533496\",\n    \"wordnet_id\": \"a-00250119\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijverig en volhardend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverenigbaar\": {\n    \"form\": \"onverenigbaar\",\n    \"cornetto_id\": \"r_a-13739\",\n    \"cornetto_synset_id\": \"n_a-521579\",\n    \"wordnet_id\": \"a-01625063\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verenigbaar\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvergankelijk\": {\n    \"form\": \"onvergankelijk\",\n    \"cornetto_id\": \"r_a-13740\",\n    \"cornetto_synset_id\": \"n_a-521580\",\n    \"wordnet_id\": \"a-00622935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet vergankelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvergeeflijk\": {\n    \"form\": \"onvergeeflijk\",\n    \"cornetto_id\": \"r_a-13741\",\n    \"cornetto_synset_id\": \"n_a-521582\",\n    \"wordnet_id\": \"a-01721530\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel kwalijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvergetelijk\": {\n    \"form\": \"onvergetelijk\",\n    \"cornetto_id\": \"r_a-13744\",\n    \"cornetto_synset_id\": \"n_a-521585\",\n    \"wordnet_id\": \"a-01040410\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat je niet zal vergeten\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverhard\": {\n    \"form\": \"onverhard\",\n    \"cornetto_id\": \"r_a-13745\",\n    \"cornetto_synset_id\": \"n_a-521588\",\n    \"wordnet_id\": \"a-01739987\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verhard\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverhoeds\": {\n    \"form\": \"onverhoeds\",\n    \"cornetto_id\": \"r_a-13746\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverwachts\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverklaarbaar\": {\n    \"form\": \"onverklaarbaar\",\n    \"cornetto_id\": \"r_a-13750\",\n    \"cornetto_synset_id\": \"n_a-520637\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verklaarbaar\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverkwikkelijk\": {\n    \"form\": \"onverkwikkelijk\",\n    \"cornetto_id\": \"r_a-13752\",\n    \"cornetto_synset_id\": \"n_a-521601\",\n    \"wordnet_id\": \"a-01716491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"naar\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvermijdelijk\": {\n    \"form\": \"onvermijdelijk\",\n    \"cornetto_id\": \"r_a-13756\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te vermijden\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverstaanbaar\": {\n    \"form\": \"onverstaanbaar\",\n    \"cornetto_id\": \"r_a-13765\",\n    \"cornetto_synset_id\": \"n_a-521621\",\n    \"wordnet_id\": \"a-00151105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verstaanbaar\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverstandig\": {\n    \"form\": \"onverstandig\",\n    \"cornetto_id\": \"r_a-13766\",\n    \"cornetto_synset_id\": \"n_a-521622\",\n    \"wordnet_id\": \"a-01814252\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verstandig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvertogen\": {\n    \"form\": \"onvertogen\",\n    \"cornetto_id\": \"r_a-13770\",\n    \"cornetto_synset_id\": \"n_a-521628\",\n    \"wordnet_id\": \"a-01880918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongepast\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onverwacht\": {\n    \"form\": \"onverwacht\",\n    \"cornetto_id\": \"r_a-13775\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plotseling\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverwachts\": {\n    \"form\": \"onverwachts\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onverzettelijk\": {\n    \"form\": \"onverzettelijk\",\n    \"cornetto_id\": \"r_a-13782\",\n    \"cornetto_synset_id\": \"n_a-515826\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbuigzaam\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvoldoende\": {\n    \"form\": \"onvoldoende\",\n    \"cornetto_id\": \"r_a-13786\",\n    \"cornetto_synset_id\": \"n_a-521653\",\n    \"wordnet_id\": \"a-02297409\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voldoende\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onvolledig\": {\n    \"form\": \"onvolledig\",\n    \"cornetto_id\": \"r_a-13787\",\n    \"cornetto_synset_id\": \"n_a-521658\",\n    \"wordnet_id\": \"a-01752553\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet volledig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvolmaakt\": {\n    \"form\": \"onvolmaakt\",\n    \"cornetto_id\": \"r_a-13788\",\n    \"cornetto_synset_id\": \"n_a-521660\",\n    \"wordnet_id\": \"a-01752553\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet volmaakt\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvolprezen\": {\n    \"form\": \"onvolprezen\",\n    \"cornetto_id\": \"r_a-13789\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet genoeg te prijzen\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvolwassen\": {\n    \"form\": \"onvolwassen\",\n    \"cornetto_id\": \"r_a-13792\",\n    \"cornetto_synset_id\": \"n_a-521665\",\n    \"wordnet_id\": \"a-00936998\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet volwassen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvoorspelbaar\": {\n    \"form\": \"onvoorspelbaar\",\n    \"cornetto_id\": \"r_a-13795\",\n    \"cornetto_synset_id\": \"n_a-521669\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te voorspellen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"onvoorstelbaar\": {\n    \"form\": \"onvoorstelbaar\",\n    \"cornetto_id\": \"r_a-13796\",\n    \"cornetto_synset_id\": \"n_a-521670\",\n    \"wordnet_id\": \"a-02418538\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voor te stellen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"onvoorwaardelijk\": {\n    \"form\": \"onvoorwaardelijk\",\n    \"cornetto_id\": \"r_a-13797\",\n    \"cornetto_synset_id\": \"n_a-521672\",\n    \"wordnet_id\": \"a-00685924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voorwaardelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onvoorzichtig\": {\n    \"form\": \"onvoorzichtig\",\n    \"cornetto_id\": \"r_a-13798\",\n    \"cornetto_synset_id\": \"d_a-9466\",\n    \"wordnet_id\": \"a-00163480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voorzichtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvoorzien\": {\n    \"form\": \"onvoorzien\",\n    \"cornetto_id\": \"r_a-13799\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet voorzien\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvriendelijk\": {\n    \"form\": \"onvriendelijk\",\n    \"cornetto_id\": \"r_a-13800\",\n    \"cornetto_synset_id\": \"n_a-521675\",\n    \"wordnet_id\": \"a-00640283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet vriendelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onvrijwillig\": {\n    \"form\": \"onvrijwillig\",\n    \"cornetto_id\": \"r_a-13802\",\n    \"cornetto_synset_id\": \"n_a-509863\",\n    \"wordnet_id\": \"a-00073048\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedwongen\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onwaarschijnlijk\": {\n    \"form\": \"onwaarschijnlijk\",\n    \"cornetto_id\": \"r_a-14143\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaannemelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwankelbaar\": {\n    \"form\": \"onwankelbaar\",\n    \"cornetto_id\": \"r_a-13808\",\n    \"cornetto_synset_id\": \"n_a-521690\",\n    \"wordnet_id\": \"a-00335895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwrikbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"onweerlegbaar\": {\n    \"form\": \"onweerlegbaar\",\n    \"cornetto_id\": \"r_a-13810\",\n    \"cornetto_synset_id\": \"n_a-521692\",\n    \"wordnet_id\": \"a-00591406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te weerleggen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"onweerstaanbaar\": {\n    \"form\": \"onweerstaanbaar\",\n    \"cornetto_id\": \"r_a-13811\",\n    \"cornetto_synset_id\": \"n_a-521695\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te weerstaan\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwelkom\": {\n    \"form\": \"onwelkom\",\n    \"cornetto_id\": \"r_a-13814\",\n    \"cornetto_synset_id\": \"n_a-521699\",\n    \"wordnet_id\": \"a-02527734\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet welkom\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onwennig\": {\n    \"form\": \"onwennig\",\n    \"cornetto_id\": \"r_a-13816\",\n    \"cornetto_synset_id\": \"n_a-521706\",\n    \"wordnet_id\": \"a-00480439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nog niet gewend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onwenselijk\": {\n    \"form\": \"onwenselijk\",\n    \"cornetto_id\": \"r_a-13817\",\n    \"cornetto_synset_id\": \"n_a-521193\",\n    \"wordnet_id\": \"a-01142666\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongewenst\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onwerkbaar\": {\n    \"form\": \"onwerkbaar\",\n    \"cornetto_id\": \"r_a-13818\",\n    \"cornetto_synset_id\": \"n_a-521708\",\n    \"wordnet_id\": \"a-01823574\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet werkbaar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onwerkelijk\": {\n    \"form\": \"onwerkelijk\",\n    \"cornetto_id\": \"r_a-13819\",\n    \"cornetto_synset_id\": \"n_a-521709\",\n    \"wordnet_id\": \"a-00626136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"werkelijkheid missend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwetend\": {\n    \"form\": \"onwetend\",\n    \"cornetto_id\": \"r_a-14146\",\n    \"cornetto_synset_id\": \"n_a-521347\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet op de hoogte\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwezenlijk\": {\n    \"form\": \"onwezenlijk\",\n    \"cornetto_id\": \"r_a-13824\",\n    \"cornetto_synset_id\": \"n_a-521709\",\n    \"wordnet_id\": \"a-00626136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwerkelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"onwijs\": {\n    \"form\": \"onwijs\",\n    \"cornetto_id\": \"r_a-17352\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te gek\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwillekeurig\": {\n    \"form\": \"onwillekeurig\",\n    \"cornetto_id\": \"r_a-13826\",\n    \"cornetto_synset_id\": \"n_a-521720\",\n    \"wordnet_id\": \"a-00573093\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet opzettelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onwrikbaar\": {\n    \"form\": \"onwrikbaar\",\n    \"cornetto_id\": \"r_a-13828\",\n    \"cornetto_synset_id\": \"n_a-521690\",\n    \"wordnet_id\": \"a-00335895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwankelbaar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onzacht\": {\n    \"form\": \"onzacht\",\n    \"cornetto_id\": \"r_a-13829\",\n    \"cornetto_synset_id\": \"d_a-9325\",\n    \"wordnet_id\": \"a-01150915\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hard\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onzalig\": {\n    \"form\": \"onzalig\",\n    \"cornetto_id\": \"r_a-13830\",\n    \"cornetto_synset_id\": \"n_a-525026\",\n    \"wordnet_id\": \"a-01050088\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg ellendig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"onzedelijk\": {\n    \"form\": \"onzedelijk\",\n    \"cornetto_id\": \"r_a-13831\",\n    \"cornetto_synset_id\": \"d_a-9342\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet netjes\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onzeker\": {\n    \"form\": \"onzeker\",\n    \"cornetto_id\": \"r_a-13835\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvast\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onzichtbaar\": {\n    \"form\": \"onzichtbaar\",\n    \"cornetto_id\": \"r_a-13837\",\n    \"cornetto_synset_id\": \"d_a-9473\",\n    \"wordnet_id\": \"a-01748318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zichtbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onzindelijk\": {\n    \"form\": \"onzindelijk\",\n    \"cornetto_id\": \"r_a-13839\",\n    \"cornetto_synset_id\": \"n_a-521248\",\n    \"wordnet_id\": \"a-00420650\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vies\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"onzinnig\": {\n    \"form\": \"onzinnig\",\n    \"cornetto_id\": \"r_a-13840\",\n    \"cornetto_synset_id\": \"n_a-521742\",\n    \"wordnet_id\": \"a-01001180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dwaas\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"onzuiver\": {\n    \"form\": \"onzuiver\",\n    \"cornetto_id\": \"r_a-14149\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet helemaal goed\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oordeelkundig\": {\n    \"form\": \"oordeelkundig\",\n    \"cornetto_id\": \"r_a-13844\",\n    \"cornetto_synset_id\": \"d_a-9223\",\n    \"wordnet_id\": \"a-00936427\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verstandig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oorlogszuchtig\": {\n    \"form\": \"oorlogszuchtig\",\n    \"cornetto_id\": \"r_a-13845\",\n    \"cornetto_synset_id\": \"n_a-521818\",\n    \"wordnet_id\": \"a-00082766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verlangend naar oorlog\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oorlogvoerend\": {\n    \"form\": \"oorlogvoerend\",\n    \"cornetto_id\": \"r_a-13846\",\n    \"cornetto_synset_id\": \"n_a-521819\",\n    \"wordnet_id\": \"a-01742537\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in oorlog\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oorspronkelijk\": {\n    \"form\": \"oorspronkelijk\",\n    \"cornetto_id\": \"r_a-14152\",\n    \"cornetto_synset_id\": \"n_a-522170\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"origineel\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"oorverdovend\": {\n    \"form\": \"oorverdovend\",\n    \"cornetto_id\": \"r_a-13848\",\n    \"cornetto_synset_id\": \"n_a-521829\",\n    \"wordnet_id\": \"a-01453467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzettend hard\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"oorzakelijk\": {\n    \"form\": \"oorzakelijk\",\n    \"cornetto_id\": \"r_a-13849\",\n    \"cornetto_synset_id\": \"n_a-521831\",\n    \"wordnet_id\": \"a-00322457\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de oorzaak betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oosters\": {\n    \"form\": \"oosters\",\n    \"cornetto_id\": \"r_a-13851\",\n    \"cornetto_synset_id\": \"n_a-521835\",\n    \"wordnet_id\": \"a-00823350\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit een land ten oosten van Europa\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opbouwend\": {\n    \"form\": \"opbouwend\",\n    \"cornetto_id\": \"r_a-13856\",\n    \"cornetto_synset_id\": \"n_a-521861\",\n    \"wordnet_id\": \"a-01817500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"constructief\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opdringerig\": {\n    \"form\": \"opdringerig\",\n    \"cornetto_id\": \"r_a-13857\",\n    \"cornetto_synset_id\": \"n_a-521869\",\n    \"wordnet_id\": \"a-00104318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zich aan anderen opdringend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"open\": {\n    \"form\": \"open\",\n    \"cornetto_id\": \"r_a-13861\",\n    \"cornetto_synset_id\": \"c_184\",\n    \"wordnet_id\": \"a-01310273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openhartig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"openbaar\": {\n    \"form\": \"openbaar\",\n    \"cornetto_id\": \"r_a-13863\",\n    \"cornetto_synset_id\": \"n_a-521886\",\n    \"wordnet_id\": \"a-01861205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"algemeen bekend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"openhartig\": {\n    \"form\": \"openhartig\",\n    \"cornetto_id\": \"r_a-13864\",\n    \"cornetto_synset_id\": \"c_184\",\n    \"wordnet_id\": \"a-01310273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rondborstig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"openlijk\": {\n    \"form\": \"openlijk\",\n    \"cornetto_id\": \"r_a-13865\",\n    \"cornetto_synset_id\": \"n_a-521901\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet verborgen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"opgeklopt\": {\n    \"form\": \"opgeklopt\",\n    \"cornetto_id\": \"r_a-13872\",\n    \"cornetto_synset_id\": \"n_a-521930\",\n    \"wordnet_id\": \"a-00881030\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zwaar overdreven\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opgelaten\": {\n    \"form\": \"opgelaten\",\n    \"cornetto_id\": \"r_a-13873\",\n    \"cornetto_synset_id\": \"n_a-521933\",\n    \"wordnet_id\": \"a-00480439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zich ongemakkelijk voelend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"opgelucht\": {\n    \"form\": \"opgelucht\",\n    \"cornetto_id\": \"r_a-13874\",\n    \"cornetto_synset_id\": \"n_a-521937\",\n    \"wordnet_id\": \"a-01519465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verlicht\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"opgezet\": {\n    \"form\": \"opgezet\",\n    \"cornetto_id\": \"r_a-14156\",\n    \"cornetto_synset_id\": \"n_a-521951\",\n    \"wordnet_id\": \"a-01891773\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezegd van opgevulde dieren\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oplosbaar\": {\n    \"form\": \"oplosbaar\",\n    \"cornetto_id\": \"r_a-13893\",\n    \"cornetto_synset_id\": \"n_a-521977\",\n    \"wordnet_id\": \"a-02265386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op te lossen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opmerkelijk\": {\n    \"form\": \"opmerkelijk\",\n    \"cornetto_id\": \"r_a-13894\",\n    \"cornetto_synset_id\": \"n_a-522067\",\n    \"wordnet_id\": \"a-00579498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opvallend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"oppervlakkig\": {\n    \"form\": \"oppervlakkig\",\n    \"cornetto_id\": \"r_a-13900\",\n    \"cornetto_synset_id\": \"n_a-522012\",\n    \"wordnet_id\": \"a-00312234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet diepgaand\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"opportunistisch\": {\n    \"form\": \"opportunistisch\",\n    \"cornetto_id\": \"r_a-13901\",\n    \"cornetto_synset_id\": \"n_a-522019\",\n    \"wordnet_id\": \"a-00931974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een opportunist\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"oprecht\": {\n    \"form\": \"oprecht\",\n    \"cornetto_id\": \"r_a-13903\",\n    \"cornetto_synset_id\": \"n_a-508027\",\n    \"wordnet_id\": \"a-01225643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"welgemeend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"opruiend\": {\n    \"form\": \"opruiend\",\n    \"cornetto_id\": \"r_a-13904\",\n    \"cornetto_synset_id\": \"d_v-5279\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ophitsend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opstopping\": {\n    \"form\": \"opstopping\",\n    \"cornetto_id\": \"r_n-26766\",\n    \"cornetto_synset_id\": \"n_n-522055\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"optimaal\": {\n    \"form\": \"optimaal\",\n    \"cornetto_id\": \"r_a-13908\",\n    \"cornetto_synset_id\": \"n_a-522061\",\n    \"wordnet_id\": \"a-00228645\",\n    \"pos\": \"JJ\",\n    \"sense\": \"best\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"optimistisch\": {\n    \"form\": \"optimistisch\",\n    \"cornetto_id\": \"r_a-13909\",\n    \"cornetto_synset_id\": \"n_a-522062\",\n    \"wordnet_id\": \"a-01817908\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet pessimistisch\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"opvallend\": {\n    \"form\": \"opvallend\",\n    \"cornetto_id\": \"r_a-13912\",\n    \"cornetto_synset_id\": \"n_a-522067\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treffend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"opvliegend\": {\n    \"form\": \"opvliegend\",\n    \"cornetto_id\": \"r_a-13913\",\n    \"cornetto_synset_id\": \"n_a-507579\",\n    \"wordnet_id\": \"a-01256865\",\n    \"pos\": \"JJ\",\n    \"sense\": \"driftig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"opvoedbaar\": {\n    \"form\": \"opvoedbaar\",\n    \"cornetto_id\": \"r_a-13914\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op te voeden\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opvoedkundig\": {\n    \"form\": \"opvoedkundig\",\n    \"cornetto_id\": \"r_a-13915\",\n    \"cornetto_synset_id\": \"n_a-522073\",\n    \"wordnet_id\": \"a-01324424\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pedagogisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opwaarts\": {\n    \"form\": \"opwaarts\",\n    \"cornetto_id\": \"r_a-13917\",\n    \"cornetto_synset_id\": \"d_a-9429\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"omhoog\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opwekkend\": {\n    \"form\": \"opwekkend\",\n    \"cornetto_id\": \"r_a-14158\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stimulerend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opwindend\": {\n    \"form\": \"opwindend\",\n    \"cornetto_id\": \"r_a-13919\",\n    \"cornetto_synset_id\": \"n_a-522082\",\n    \"wordnet_id\": \"a-02132080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opwinding teweegbrengend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"opzettelijk\": {\n    \"form\": \"opzettelijk\",\n    \"cornetto_id\": \"r_a-13920\",\n    \"cornetto_synset_id\": \"n_a-522090\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expres\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opzichtig\": {\n    \"form\": \"opzichtig\",\n    \"cornetto_id\": \"r_a-13921\",\n    \"cornetto_synset_id\": \"n_a-522091\",\n    \"wordnet_id\": \"a-02393791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te opvallend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opzienbarend\": {\n    \"form\": \"opzienbarend\",\n    \"cornetto_id\": \"r_a-13923\",\n    \"cornetto_synset_id\": \"n_a-522093\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbazingwekkend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.8\"\n  },\n  \"ordelijk\": {\n    \"form\": \"ordelijk\",\n    \"cornetto_id\": \"r_a-13926\",\n    \"cornetto_synset_id\": \"n_a-522125\",\n    \"wordnet_id\": \"a-00417978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarin orde is\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ordinair\": {\n    \"form\": \"ordinair\",\n    \"cornetto_id\": \"r_a-13928\",\n    \"cornetto_synset_id\": \"n_a-522137\",\n    \"wordnet_id\": \"a-01593079\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vulgair\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"organisatorisch\": {\n    \"form\": \"organisatorisch\",\n    \"cornetto_id\": \"r_a-13929\",\n    \"cornetto_synset_id\": \"n_a-522146\",\n    \"wordnet_id\": \"a-02898276\",\n    \"pos\": \"JJ\",\n    \"sense\": \"organisatie betreffend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"origineel\": {\n    \"form\": \"origineel\",\n    \"cornetto_id\": \"r_a-13934\",\n    \"cornetto_synset_id\": \"n_a-522170\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oorspronkelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"orthodox\": {\n    \"form\": \"orthodox\",\n    \"cornetto_id\": \"r_a-13937\",\n    \"cornetto_synset_id\": \"n_a-522187\",\n    \"wordnet_id\": \"a-01689880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rechtzinnig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ostentatief\": {\n    \"form\": \"ostentatief\",\n    \"cornetto_id\": \"r_a-13939\",\n    \"cornetto_synset_id\": \"n_a-506615\",\n    \"wordnet_id\": \"a-02182302\",\n    \"pos\": \"JJ\",\n    \"sense\": \"demonstratief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"oubollig\": {\n    \"form\": \"oubollig\",\n    \"cornetto_id\": \"r_a-13940\",\n    \"cornetto_synset_id\": \"n_a-522207\",\n    \"wordnet_id\": \"a-01265938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flauw en melig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oud\": {\n    \"form\": \"oud\",\n    \"cornetto_id\": \"r_a-14166\",\n    \"cornetto_synset_id\": \"n_a-522211\",\n    \"wordnet_id\": \"a-01729566\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voormalig, van vroeger\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"oudbakken\": {\n    \"form\": \"oudbakken\",\n    \"cornetto_id\": \"r_a-13944\",\n    \"cornetto_synset_id\": \"n_a-522216\",\n    \"wordnet_id\": \"a-01688757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet vers\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oude\": {\n    \"form\": \"oude\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"JJ\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ouderloos\": {\n    \"form\": \"ouderloos\",\n    \"cornetto_id\": \"r_a-16633\",\n    \"cornetto_synset_id\": \"n_a-522233\",\n    \"wordnet_id\": \"a-01733982\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder ouders\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ouderwets\": {\n    \"form\": \"ouderwets\",\n    \"cornetto_id\": \"r_a-14167\",\n    \"cornetto_synset_id\": \"n_r-509139\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"net als vroeger\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"oudheidkundig\": {\n    \"form\": \"oudheidkundig\",\n    \"cornetto_id\": \"r_a-13947\",\n    \"cornetto_synset_id\": \"n_a-522240\",\n    \"wordnet_id\": \"a-02638392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de oudheidkunde betreffend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ovationeel\": {\n    \"form\": \"ovationeel\",\n    \"cornetto_id\": \"r_a-13949\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een ovatie\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ovenvers\": {\n    \"form\": \"ovenvers\",\n    \"cornetto_id\": \"r_a-13951\",\n    \"cornetto_synset_id\": \"n_a-522270\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel vers\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overbekend\": {\n    \"form\": \"overbekend\",\n    \"cornetto_id\": \"r_a-13953\",\n    \"cornetto_synset_id\": \"n_a-522276\",\n    \"wordnet_id\": \"a-01984411\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel bekend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overbodig\": {\n    \"form\": \"overbodig\",\n    \"cornetto_id\": \"r_a-13958\",\n    \"cornetto_synset_id\": \"d_a-9483\",\n    \"wordnet_id\": \"a-00549826\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnodig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"overdadig\": {\n    \"form\": \"overdadig\",\n    \"cornetto_id\": \"r_a-13961\",\n    \"cornetto_synset_id\": \"n_a-522302\",\n    \"wordnet_id\": \"a-00015247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met overdaad\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"overdrachtelijk\": {\n    \"form\": \"overdrachtelijk\",\n    \"cornetto_id\": \"r_a-13964\",\n    \"cornetto_synset_id\": \"n_a-508972\",\n    \"wordnet_id\": \"a-01419784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"figuurlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"overdreven\": {\n    \"form\": \"overdreven\",\n    \"cornetto_id\": \"r_a-13965\",\n    \"cornetto_synset_id\": \"n_a-522310\",\n    \"wordnet_id\": \"a-00920422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitensporig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"overduidelijk\": {\n    \"form\": \"overduidelijk\",\n    \"cornetto_id\": \"r_a-13966\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volstrekt duidelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"overgelukkig\": {\n    \"form\": \"overgelukkig\",\n    \"cornetto_id\": \"r_a-13972\",\n    \"cornetto_synset_id\": \"n_a-507163\",\n    \"wordnet_id\": \"a-01367008\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg gelukkig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"overgroot\": {\n    \"form\": \"overgroot\",\n    \"cornetto_id\": \"r_a-13974\",\n    \"cornetto_synset_id\": \"n_a-510819\",\n    \"wordnet_id\": \"a-01384730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg groot\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"overhaast\": {\n    \"form\": \"overhaast\",\n    \"cornetto_id\": \"r_a-13975\",\n    \"cornetto_synset_id\": \"n_a-522345\",\n    \"wordnet_id\": \"a-00203614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overijld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overheerlijk\": {\n    \"form\": \"overheerlijk\",\n    \"cornetto_id\": \"r_a-13976\",\n    \"cornetto_synset_id\": \"n_a-532666\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zalig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overig\": {\n    \"form\": \"overig\",\n    \"cornetto_id\": \"r_a-13980\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ander\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"overijld\": {\n    \"form\": \"overijld\",\n    \"cornetto_id\": \"r_a-13981\",\n    \"cornetto_synset_id\": \"n_a-522345\",\n    \"wordnet_id\": \"a-00203614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overhaast\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overijverig\": {\n    \"form\": \"overijverig\",\n    \"cornetto_id\": \"r_a-13982\",\n    \"cornetto_synset_id\": \"n_a-522366\",\n    \"wordnet_id\": \"a-01726859\",\n    \"pos\": \"JJ\",\n    \"sense\": \"al te ijverig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"overkoepelend\": {\n    \"form\": \"overkoepelend\",\n    \"cornetto_id\": \"r_a-13984\",\n    \"cornetto_synset_id\": \"d_v-5451\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"andere dingen verenigend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overmatig\": {\n    \"form\": \"overmatig\",\n    \"cornetto_id\": \"r_a-13988\",\n    \"cornetto_synset_id\": \"n_a-522385\",\n    \"wordnet_id\": \"a-00880586\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitensporig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"overmoedig\": {\n    \"form\": \"overmoedig\",\n    \"cornetto_id\": \"r_a-13989\",\n    \"cornetto_synset_id\": \"n_a-522386\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol overmoed\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overrijp\": {\n    \"form\": \"overrijp\",\n    \"cornetto_id\": \"r_a-13990\",\n    \"cornetto_synset_id\": \"n_a-522389\",\n    \"wordnet_id\": \"a-00189017\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meer dan rijp\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overspannen\": {\n    \"form\": \"overspannen\",\n    \"cornetto_id\": \"r_a-14174\",\n    \"cornetto_synset_id\": \"d_a-9484\",\n    \"wordnet_id\": \"a-02432154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overprikkeld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overtollig\": {\n    \"form\": \"overtollig\",\n    \"cornetto_id\": \"r_a-13996\",\n    \"cornetto_synset_id\": \"d_a-9485\",\n    \"wordnet_id\": \"a-00015589\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overcompleet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overtuigend\": {\n    \"form\": \"overtuigend\",\n    \"cornetto_id\": \"r_a-14175\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indrukwekkend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"oververhit\": {\n    \"form\": \"oververhit\",\n    \"cornetto_id\": \"r_a-14000\",\n    \"cornetto_synset_id\": \"n_a-522414\",\n    \"wordnet_id\": \"a-00869690\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te heet\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"overvol\": {\n    \"form\": \"overvol\",\n    \"cornetto_id\": \"r_a-14005\",\n    \"cornetto_synset_id\": \"n_a-524566\",\n    \"wordnet_id\": \"a-00537339\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bomvol\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"overweldigend\": {\n    \"form\": \"overweldigend\",\n    \"cornetto_id\": \"r_a-14008\",\n    \"cornetto_synset_id\": \"n_a-522429\",\n    \"wordnet_id\": \"a-00587697\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontzaglijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"overwinning\": {\n    \"form\": \"overwinning\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"overzichtelijk\": {\n    \"form\": \"overzichtelijk\",\n    \"cornetto_id\": \"r_a-14011\",\n    \"cornetto_synset_id\": \"n_a-522439\",\n    \"wordnet_id\": \"a-00464513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"makkelijk te overzien\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pacifistisch\": {\n    \"form\": \"pacifistisch\",\n    \"cornetto_id\": \"r_a-14243\",\n    \"cornetto_synset_id\": \"n_a-533830\",\n    \"wordnet_id\": \"a-01741408\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens het pacifisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pafferig\": {\n    \"form\": \"pafferig\",\n    \"cornetto_id\": \"r_a-14244\",\n    \"cornetto_synset_id\": \"n_a-522525\",\n    \"wordnet_id\": \"a-01154229\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opgeblazen\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pakkende\": {\n    \"form\": \"pakkende\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"paniekerig\": {\n    \"form\": \"paniekerig\",\n    \"cornetto_id\": \"r_a-14178\",\n    \"cornetto_synset_id\": \"n_a-522611\",\n    \"wordnet_id\": \"a-00080357\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schrikachtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"panklaar\": {\n    \"form\": \"panklaar\",\n    \"cornetto_id\": \"r_a-14179\",\n    \"cornetto_synset_id\": \"n_a-522619\",\n    \"wordnet_id\": \"a-00672621\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebruiksklaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paradijselijk\": {\n    \"form\": \"paradijselijk\",\n    \"cornetto_id\": \"r_a-14182\",\n    \"cornetto_synset_id\": \"n_a-512199\",\n    \"wordnet_id\": \"a-00219705\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als in paradijs\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paradoxaal\": {\n    \"form\": \"paradoxaal\",\n    \"cornetto_id\": \"r_a-14248\",\n    \"cornetto_synset_id\": \"n_a-522687\",\n    \"wordnet_id\": \"a-00939895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegenstrijdig lijkend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"parallel\": {\n    \"form\": \"parallel\",\n    \"cornetto_id\": \"r_a-14249\",\n    \"cornetto_synset_id\": \"d_a-9265\",\n    \"wordnet_id\": \"a-01718158\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evenwijdig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"paramedisch\": {\n    \"form\": \"paramedisch\",\n    \"cornetto_id\": \"r_a-14250\",\n    \"cornetto_synset_id\": \"n_a-522704\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met geneeskunde samenhangend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paranormaal\": {\n    \"form\": \"paranormaal\",\n    \"cornetto_id\": \"r_a-14252\",\n    \"cornetto_synset_id\": \"n_a-505190\",\n    \"wordnet_id\": \"a-01577086\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitenzintuiglijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"paranoïde\": {\n    \"form\": \"paranoïde\",\n    \"cornetto_id\": \"r_a-14251\",\n    \"cornetto_synset_id\": \"n_a-522708\",\n    \"wordnet_id\": \"a-02077157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extreem achterdochtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"particulier\": {\n    \"form\": \"particulier\",\n    \"cornetto_id\": \"r_a-14256\",\n    \"cornetto_synset_id\": \"n_a-522804\",\n    \"wordnet_id\": \"a-01616157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"persoonlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"partieel\": {\n    \"form\": \"partieel\",\n    \"cornetto_id\": \"r_a-14258\",\n    \"cornetto_synset_id\": \"n_a-509804\",\n    \"wordnet_id\": \"a-00285148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedeeltelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"0.9\"\n  },\n  \"partijloos\": {\n    \"form\": \"partijloos\",\n    \"cornetto_id\": \"r_a-14185\",\n    \"cornetto_synset_id\": \"n_a-522823\",\n    \"wordnet_id\": \"a-00727564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder politieke partij\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pasgeboren\": {\n    \"form\": \"pasgeboren\",\n    \"cornetto_id\": \"r_a-14187\",\n    \"cornetto_synset_id\": \"d_a-9486\",\n    \"wordnet_id\": \"a-01649184\",\n    \"pos\": \"JJ\",\n    \"sense\": \"net op aarde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pasklaar\": {\n    \"form\": \"pasklaar\",\n    \"cornetto_id\": \"r_a-14261\",\n    \"cornetto_synset_id\": \"n_a-522846\",\n    \"wordnet_id\": \"a-00672621\",\n    \"pos\": \"JJ\",\n    \"sense\": \"passend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"passé\": {\n    \"form\": \"passé\",\n    \"cornetto_id\": \"r_a-14262\",\n    \"cornetto_synset_id\": \"n_a-531638\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorbij\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paternalistisch\": {\n    \"form\": \"paternalistisch\",\n    \"cornetto_id\": \"r_a-14268\",\n    \"cornetto_synset_id\": \"n_a-503950\",\n    \"wordnet_id\": \"a-01324131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"autoritair\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pathetisch\": {\n    \"form\": \"pathetisch\",\n    \"cornetto_id\": \"r_a-14269\",\n    \"cornetto_synset_id\": \"n_a-522888\",\n    \"wordnet_id\": \"a-00794825\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdreven\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pathologisch\": {\n    \"form\": \"pathologisch\",\n    \"cornetto_id\": \"r_a-14270\",\n    \"cornetto_synset_id\": \"n_a-522895\",\n    \"wordnet_id\": \"a-01176246\",\n    \"pos\": \"JJ\",\n    \"sense\": \"SJF med\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"patriottisch\": {\n    \"form\": \"patriottisch\",\n    \"cornetto_id\": \"r_a-14188\",\n    \"cornetto_synset_id\": \"n_a-531957\",\n    \"wordnet_id\": \"a-01740207\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaderlandslievend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pauselijk\": {\n    \"form\": \"pauselijk\",\n    \"cornetto_id\": \"r_a-14190\",\n    \"cornetto_synset_id\": \"n_a-522923\",\n    \"wordnet_id\": \"a-01849960\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van paus\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"peilloos\": {\n    \"form\": \"peilloos\",\n    \"cornetto_id\": \"r_a-14275\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet te peilen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"pejoratief\": {\n    \"form\": \"pejoratief\",\n    \"cornetto_id\": \"r_a-14451\",\n    \"cornetto_synset_id\": \"n_a-518925\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met negatieve bijklank\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"penetrant\": {\n    \"form\": \"penetrant\",\n    \"cornetto_id\": \"r_a-14276\",\n    \"cornetto_synset_id\": \"n_a-507298\",\n    \"wordnet_id\": \"a-01214430\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doordringend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"penibel\": {\n    \"form\": \"penibel\",\n    \"cornetto_id\": \"r_a-14277\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk, lastig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pensioengerechtigd\": {\n    \"form\": \"pensioengerechtigd\",\n    \"cornetto_id\": \"r_a-14192\",\n    \"cornetto_synset_id\": \"n_a-523023\",\n    \"wordnet_id\": \"a-00852875\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met recht op pensioen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"peperduur\": {\n    \"form\": \"peperduur\",\n    \"cornetto_id\": \"r_a-14193\",\n    \"cornetto_synset_id\": \"n_a-523042\",\n    \"wordnet_id\": \"a-00933599\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel duur\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perfect\": {\n    \"form\": \"perfect\",\n    \"cornetto_id\": \"r_a-14278\",\n    \"cornetto_synset_id\": \"n_a-533543\",\n    \"wordnet_id\": \"a-01750847\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volmaakt\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"perkamentachtig\": {\n    \"form\": \"perkamentachtig\",\n    \"cornetto_id\": \"r_a-14455\",\n    \"cornetto_synset_id\": \"n_a-523102\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijkend op perkament\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"permanent\": {\n    \"form\": \"permanent\",\n    \"cornetto_id\": \"r_a-14282\",\n    \"cornetto_synset_id\": \"n_a-533706\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blijvend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perplex\": {\n    \"form\": \"perplex\",\n    \"cornetto_id\": \"r_a-14194\",\n    \"cornetto_synset_id\": \"n_a-529451\",\n    \"wordnet_id\": \"a-01765643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbijsterd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"persistent\": {\n    \"form\": \"persistent\",\n    \"cornetto_id\": \"r_a-14195\",\n    \"cornetto_synset_id\": \"c_548\",\n    \"wordnet_id\": \"a-00250119\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blijvend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"persoonlijk\": {\n    \"form\": \"persoonlijk\",\n    \"cornetto_id\": \"r_a-14286\",\n    \"cornetto_synset_id\": \"d_a-9343\",\n    \"wordnet_id\": \"a-02153174\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelf\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pertinent\": {\n    \"form\": \"pertinent\",\n    \"cornetto_id\": \"r_a-14287\",\n    \"cornetto_synset_id\": \"n_r-503760\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbetwistbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"pervers\": {\n    \"form\": \"pervers\",\n    \"cornetto_id\": \"r_a-14288\",\n    \"cornetto_synset_id\": \"n_a-523199\",\n    \"wordnet_id\": \"a-01549568\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegennatuurlijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"pessimistisch\": {\n    \"form\": \"pessimistisch\",\n    \"cornetto_id\": \"r_a-14289\",\n    \"cornetto_synset_id\": \"n_a-536067\",\n    \"wordnet_id\": \"a-00274068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"somber, negatief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"petieterig\": {\n    \"form\": \"petieterig\",\n    \"cornetto_id\": \"r_a-14291\",\n    \"cornetto_synset_id\": \"n_a-523296\",\n    \"wordnet_id\": \"a-00516539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nietig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piekfijn\": {\n    \"form\": \"piekfijn\",\n    \"cornetto_id\": \"r_a-14294\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"keurig, in orde\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pienter\": {\n    \"form\": \"pienter\",\n    \"cornetto_id\": \"r_a-14295\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schrander\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"piepjong\": {\n    \"form\": \"piepjong\",\n    \"cornetto_id\": \"r_a-14197\",\n    \"cornetto_synset_id\": \"n_a-523295\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"jong\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"piepklein\": {\n    \"form\": \"piepklein\",\n    \"cornetto_id\": \"r_a-14198\",\n    \"cornetto_synset_id\": \"n_a-523296\",\n    \"wordnet_id\": \"a-00516539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klein\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pijlsnel\": {\n    \"form\": \"pijlsnel\",\n    \"cornetto_id\": \"r_a-14199\",\n    \"cornetto_synset_id\": \"n_a-504345\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer snel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pijnlijk\": {\n    \"form\": \"pijnlijk\",\n    \"cornetto_id\": \"r_a-14299\",\n    \"cornetto_synset_id\": \"n_a-523336\",\n    \"wordnet_id\": \"a-00605406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moeilijk, lastig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"pijnloos\": {\n    \"form\": \"pijnloos\",\n    \"cornetto_id\": \"r_a-14200\",\n    \"cornetto_synset_id\": \"n_a-523339\",\n    \"wordnet_id\": \"a-00038260\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder pijn\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pikant\": {\n    \"form\": \"pikant\",\n    \"cornetto_id\": \"r_a-14301\",\n    \"cornetto_synset_id\": \"n_a-523357\",\n    \"wordnet_id\": \"a-00167671\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prikkelend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pissig\": {\n    \"form\": \"pissig\",\n    \"cornetto_id\": \"r_a-14304\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"giftig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pittig\": {\n    \"form\": \"pittig\",\n    \"cornetto_id\": \"r_a-14307\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoorlijk moeilijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"pittoresk\": {\n    \"form\": \"pittoresk\",\n    \"cornetto_id\": \"r_a-14308\",\n    \"cornetto_synset_id\": \"n_a-527020\",\n    \"wordnet_id\": \"a-00219924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schilderachtig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plaatselijk\": {\n    \"form\": \"plaatselijk\",\n    \"cornetto_id\": \"r_a-14309\",\n    \"cornetto_synset_id\": \"n_a-523452\",\n    \"wordnet_id\": \"a-00668053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op of van een plaats\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plaatsvervangend\": {\n    \"form\": \"plaatsvervangend\",\n    \"cornetto_id\": \"r_a-14202\",\n    \"cornetto_synset_id\": \"n_a-523468\",\n    \"wordnet_id\": \"a-01406418\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarnemend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plagerig\": {\n    \"form\": \"plagerig\",\n    \"cornetto_id\": \"r_a-14460\",\n    \"cornetto_synset_id\": \"n_a-523486\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneigd te plagen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plakkerig\": {\n    \"form\": \"plakkerig\",\n    \"cornetto_id\": \"r_a-14310\",\n    \"cornetto_synset_id\": \"n_a-523499\",\n    \"wordnet_id\": \"a-00053691\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kleverig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plastisch\": {\n    \"form\": \"plastisch\",\n    \"cornetto_id\": \"r_a-14313\",\n    \"cornetto_synset_id\": \"n_a-503317\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beeldend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plat\": {\n    \"form\": \"plat\",\n    \"cornetto_id\": \"r_a-14317\",\n    \"cornetto_synset_id\": \"n_a-523583\",\n    \"wordnet_id\": \"a-00683531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ordinair\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"platvloers\": {\n    \"form\": \"platvloers\",\n    \"cornetto_id\": \"r_a-14319\",\n    \"cornetto_synset_id\": \"n_a-523583\",\n    \"wordnet_id\": \"a-00683531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbeschaafd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plausibel\": {\n    \"form\": \"plausibel\",\n    \"cornetto_id\": \"r_a-14321\",\n    \"cornetto_synset_id\": \"d_a-9295\",\n    \"wordnet_id\": \"a-00644839\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geloofwaardig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plechtig\": {\n    \"form\": \"plechtig\",\n    \"cornetto_id\": \"r_a-14322\",\n    \"cornetto_synset_id\": \"n_a-523636\",\n    \"wordnet_id\": \"a-01042703\",\n    \"pos\": \"JJ\",\n    \"sense\": \"officieel en ernstig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plechtstatig\": {\n    \"form\": \"plechtstatig\",\n    \"cornetto_id\": \"r_a-14323\",\n    \"cornetto_synset_id\": \"n_a-523639\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plechtig en statig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plenair\": {\n    \"form\": \"plenair\",\n    \"cornetto_id\": \"r_a-14324\",\n    \"cornetto_synset_id\": \"n_a-523661\",\n    \"wordnet_id\": \"a-00528167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voltallig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plezant\": {\n    \"form\": \"plezant\",\n    \"cornetto_id\": \"r_a-14325\",\n    \"cornetto_synset_id\": \"c_644\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plezierig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plezierig\": {\n    \"form\": \"plezierig\",\n    \"cornetto_id\": \"r_a-14326\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leuk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plichtmatig\": {\n    \"form\": \"plichtmatig\",\n    \"cornetto_id\": \"r_a-14327\",\n    \"cornetto_synset_id\": \"n_a-523674\",\n    \"wordnet_id\": \"a-01613047\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit plichtsbesef\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plichtsgetrouw\": {\n    \"form\": \"plichtsgetrouw\",\n    \"cornetto_id\": \"r_a-14328\",\n    \"cornetto_synset_id\": \"n_a-523677\",\n    \"wordnet_id\": \"a-00310138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwgezet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"plots\": {\n    \"form\": \"plots\",\n    \"cornetto_id\": \"r_a-14205\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plotseling\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plotseling\": {\n    \"form\": \"plotseling\",\n    \"cornetto_id\": \"r_a-14206\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverwacht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"poeslief\": {\n    \"form\": \"poeslief\",\n    \"cornetto_id\": \"r_a-14335\",\n    \"cornetto_synset_id\": \"n_a-523797\",\n    \"wordnet_id\": \"a-00750926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdreven lief\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"poliklinisch\": {\n    \"form\": \"poliklinisch\",\n    \"cornetto_id\": \"r_a-14340\",\n    \"cornetto_synset_id\": \"n_a-523843\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te maken hebbend met polikliniek\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"politiek\": {\n    \"form\": \"politiek\",\n    \"cornetto_id\": \"r_a-14496\",\n    \"cornetto_synset_id\": \"n_a-530216\",\n    \"wordnet_id\": \"a-00167278\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tactisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"politioneel\": {\n    \"form\": \"politioneel\",\n    \"cornetto_id\": \"r_a-14342\",\n    \"cornetto_synset_id\": \"n_a-523876\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van of door politie\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pompeus\": {\n    \"form\": \"pompeus\",\n    \"cornetto_id\": \"r_a-14346\",\n    \"cornetto_synset_id\": \"n_a-522302\",\n    \"wordnet_id\": \"a-00015247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overdreven\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"populair\": {\n    \"form\": \"populair\",\n    \"cornetto_id\": \"r_a-14350\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eenvoudig en begrijpelijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"populistisch\": {\n    \"form\": \"populistisch\",\n    \"cornetto_id\": \"r_a-14209\",\n    \"cornetto_synset_id\": \"n_a-523993\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te maken hebbend met populisme\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"positief\": {\n    \"form\": \"positief\",\n    \"cornetto_id\": \"r_a-14354\",\n    \"cornetto_synset_id\": \"c_390\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"groter dan nul\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"postjes\": {\n    \"form\": \"postjes\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"postmodern\": {\n    \"form\": \"postmodern\",\n    \"cornetto_id\": \"r_a-14213\",\n    \"cornetto_synset_id\": \"n_a-524066\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behorend tot postmodernisme\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"potent\": {\n    \"form\": \"potent\",\n    \"cornetto_id\": \"r_a-14360\",\n    \"cornetto_synset_id\": \"n_a-524100\",\n    \"wordnet_id\": \"a-02324005\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in staat tot geslachtsgemeenschap\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"potentieel\": {\n    \"form\": \"potentieel\",\n    \"cornetto_id\": \"r_a-14361\",\n    \"cornetto_synset_id\": \"n_a-519143\",\n    \"wordnet_id\": \"a-02418249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mogelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"potig\": {\n    \"form\": \"potig\",\n    \"cornetto_id\": \"r_a-14362\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grof gebouwd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"potsierlijk\": {\n    \"form\": \"potsierlijk\",\n    \"cornetto_id\": \"r_a-14363\",\n    \"cornetto_synset_id\": \"n_a-515356\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lachwekkend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.8\"\n  },\n  \"pover\": {\n    \"form\": \"pover\",\n    \"cornetto_id\": \"r_a-14364\",\n    \"cornetto_synset_id\": \"n_a-502555\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"armoedig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"poëtisch\": {\n    \"form\": \"poëtisch\",\n    \"cornetto_id\": \"r_a-14336\",\n    \"cornetto_synset_id\": \"n_a-526106\",\n    \"wordnet_id\": \"a-01837182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dichterlijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"praalziek\": {\n    \"form\": \"praalziek\",\n    \"cornetto_id\": \"r_a-14471\",\n    \"cornetto_synset_id\": \"n_a-522041\",\n    \"wordnet_id\": \"a-00304670\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijdel\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"praatziek\": {\n    \"form\": \"praatziek\",\n    \"cornetto_id\": \"r_a-14215\",\n    \"cornetto_synset_id\": \"n_a-515218\",\n    \"wordnet_id\": \"a-00496422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg veel pratend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prachtig\": {\n    \"form\": \"prachtig\",\n    \"cornetto_id\": \"r_a-14365\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel mooi\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"praktisch\": {\n    \"form\": \"praktisch\",\n    \"cornetto_id\": \"r_a-14368\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"handig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"precair\": {\n    \"form\": \"precair\",\n    \"cornetto_id\": \"r_a-14370\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onzeker\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"precies\": {\n    \"form\": \"precies\",\n    \"cornetto_id\": \"r_a-14372\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgvuldig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"prematuur\": {\n    \"form\": \"prematuur\",\n    \"cornetto_id\": \"r_a-14379\",\n    \"cornetto_synset_id\": \"n_a-533587\",\n    \"wordnet_id\": \"a-01494740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voorbarig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"prenataal\": {\n    \"form\": \"prenataal\",\n    \"cornetto_id\": \"r_a-14380\",\n    \"cornetto_synset_id\": \"n_a-524240\",\n    \"wordnet_id\": \"a-00129103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor de geboorte\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"0.7\"\n  },\n  \"presbyteriaans\": {\n    \"form\": \"presbyteriaans\",\n    \"cornetto_id\": \"r_a-14474\",\n    \"cornetto_synset_id\": \"n_a-524254\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"SJF rel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pretentieus\": {\n    \"form\": \"pretentieus\",\n    \"cornetto_id\": \"r_a-14383\",\n    \"cornetto_synset_id\": \"n_a-524282\",\n    \"wordnet_id\": \"a-01849960\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanmatigend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"prettig\": {\n    \"form\": \"prettig\",\n    \"cornetto_id\": \"r_a-14384\",\n    \"cornetto_synset_id\": \"c_644\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangenaam, plezierig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"prijsbewust\": {\n    \"form\": \"prijsbewust\",\n    \"cornetto_id\": \"r_a-14479\",\n    \"cornetto_synset_id\": \"n_a-524310\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bewust van prijzen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prijzig\": {\n    \"form\": \"prijzig\",\n    \"cornetto_id\": \"r_a-14388\",\n    \"cornetto_synset_id\": \"n_a-507824\",\n    \"wordnet_id\": \"a-00933154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duur\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pril\": {\n    \"form\": \"pril\",\n    \"cornetto_id\": \"r_a-14390\",\n    \"cornetto_synset_id\": \"n_a-524350\",\n    \"wordnet_id\": \"a-00205295\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pas ontstaan\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"prima\": {\n    \"form\": \"prima\",\n    \"cornetto_id\": \"r_a-14391\",\n    \"cornetto_synset_id\": \"c_178\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"primordiaal\": {\n    \"form\": \"primordiaal\",\n    \"cornetto_id\": \"d_a-224965\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"principaal\": {\n    \"form\": \"principaal\",\n    \"cornetto_id\": \"d_a-224985\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"principieel\": {\n    \"form\": \"principieel\",\n    \"cornetto_id\": \"r_a-14395\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit principe\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"privaat\": {\n    \"form\": \"privaat\",\n    \"cornetto_id\": \"r_a-14221\",\n    \"cornetto_synset_id\": \"n_a-522804\",\n    \"wordnet_id\": \"a-01616157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"particulier\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"privaatrechtelijk\": {\n    \"form\": \"privaatrechtelijk\",\n    \"cornetto_id\": \"r_a-14222\",\n    \"cornetto_synset_id\": \"n_a-524399\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens het privaatrecht\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"privé\": {\n    \"form\": \"privé\",\n    \"cornetto_id\": \"r_a-14397\",\n    \"cornetto_synset_id\": \"n_a-523170\",\n    \"wordnet_id\": \"a-01767329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"persoonlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"probaat\": {\n    \"form\": \"probaat\",\n    \"cornetto_id\": \"r_a-14398\",\n    \"cornetto_synset_id\": \"n_a-524410\",\n    \"wordnet_id\": \"a-00724596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beproefd\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"problemen\": {\n    \"form\": \"problemen\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"proefondervindelijk\": {\n    \"form\": \"proefondervindelijk\",\n    \"cornetto_id\": \"r_a-14403\",\n    \"cornetto_synset_id\": \"n_a-524456\",\n    \"wordnet_id\": \"a-00858917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door experiment\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"professioneel\": {\n    \"form\": \"professioneel\",\n    \"cornetto_id\": \"r_a-14407\",\n    \"cornetto_synset_id\": \"n_a-532002\",\n    \"wordnet_id\": \"a-00511037\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vakkundig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"profetisch\": {\n    \"form\": \"profetisch\",\n    \"cornetto_id\": \"r_a-14408\",\n    \"cornetto_synset_id\": \"n_a-524480\",\n    \"wordnet_id\": \"a-01881696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met voorspellende kracht\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"profijtelijk\": {\n    \"form\": \"profijtelijk\",\n    \"cornetto_id\": \"r_a-14224\",\n    \"cornetto_synset_id\": \"d_a-9502\",\n    \"wordnet_id\": \"a-02332604\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voordelig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"progressief\": {\n    \"form\": \"progressief\",\n    \"cornetto_id\": \"r_a-14412\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortschrijdend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"proletarisch\": {\n    \"form\": \"proletarisch\",\n    \"cornetto_id\": \"r_a-14413\",\n    \"cornetto_synset_id\": \"n_a-524521\",\n    \"wordnet_id\": \"a-00259957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te maken hebbend met proletariaat\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prominent\": {\n    \"form\": \"prominent\",\n    \"cornetto_id\": \"r_a-14414\",\n    \"cornetto_synset_id\": \"n_a-510878\",\n    \"wordnet_id\": \"a-01830134\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vooraanstaand\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prompt\": {\n    \"form\": \"prompt\",\n    \"cornetto_id\": \"r_a-14416\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stipt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"propagandistisch\": {\n    \"form\": \"propagandistisch\",\n    \"cornetto_id\": \"r_a-14225\",\n    \"cornetto_synset_id\": \"n_a-524560\",\n    \"wordnet_id\": \"a-03022739\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bestemd of geschikt voor propaganda\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"proportioneel\": {\n    \"form\": \"proportioneel\",\n    \"cornetto_id\": \"r_a-14226\",\n    \"cornetto_synset_id\": \"n_a-508588\",\n    \"wordnet_id\": \"a-00481222\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evenredig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"propvol\": {\n    \"form\": \"propvol\",\n    \"cornetto_id\": \"r_a-14227\",\n    \"cornetto_synset_id\": \"n_a-524566\",\n    \"wordnet_id\": \"a-00537339\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg vol\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protectionistisch\": {\n    \"form\": \"protectionistisch\",\n    \"cornetto_id\": \"r_a-14228\",\n    \"cornetto_synset_id\": \"n_a-524577\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van protectionisme\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"protest\": {\n    \"form\": \"protest\",\n    \"cornetto_id\": \"r_n-29959\",\n    \"cornetto_synset_id\": \"d_n-26020\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"protestant\": {\n    \"form\": \"protestant\",\n    \"cornetto_id\": \"r_a-14419\",\n    \"cornetto_synset_id\": \"n_a-524579\",\n    \"wordnet_id\": \"a-02952622\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met het protestantisme te maken hebbend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protestants\": {\n    \"form\": \"protestants\",\n    \"cornetto_id\": \"r_a-14420\",\n    \"cornetto_synset_id\": \"n_a-524579\",\n    \"wordnet_id\": \"a-02952622\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protocollair\": {\n    \"form\": \"protocollair\",\n    \"cornetto_id\": \"r_a-14229\",\n    \"cornetto_synset_id\": \"n_a-524594\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens protocol\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protserig\": {\n    \"form\": \"protserig\",\n    \"cornetto_id\": \"r_a-14421\",\n    \"cornetto_synset_id\": \"n_a-524600\",\n    \"wordnet_id\": \"a-00279618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pronkerig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"provinciaal\": {\n    \"form\": \"provinciaal\",\n    \"cornetto_id\": \"r_a-14422\",\n    \"cornetto_synset_id\": \"n_a-524604\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te maken hebbend met provincie\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"provocateurs\": {\n    \"form\": \"provocateurs\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"provoceren\": {\n    \"form\": \"provoceren\",\n    \"cornetto_id\": \"r_v-6491\",\n    \"cornetto_synset_id\": \"d_v-5859\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prozaïsch\": {\n    \"form\": \"prozaïsch\",\n    \"cornetto_id\": \"r_a-14424\",\n    \"cornetto_synset_id\": \"n_a-520216\",\n    \"wordnet_id\": \"a-01943406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"alledaags\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"psychisch\": {\n    \"form\": \"psychisch\",\n    \"cornetto_id\": \"r_a-14426\",\n    \"cornetto_synset_id\": \"d_a-9284\",\n    \"wordnet_id\": \"a-00631193\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geestelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"psychologisch\": {\n    \"form\": \"psychologisch\",\n    \"cornetto_id\": \"r_a-14427\",\n    \"cornetto_synset_id\": \"n_a-524671\",\n    \"wordnet_id\": \"a-02905794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"betrekking hebbend op psychologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"psychopathisch\": {\n    \"form\": \"psychopathisch\",\n    \"cornetto_id\": \"r_a-14484\",\n    \"cornetto_synset_id\": \"n_a-524676\",\n    \"wordnet_id\": \"a-02077253\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als van psychopaat\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"psychosociaal\": {\n    \"form\": \"psychosociaal\",\n    \"cornetto_id\": \"r_a-14234\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"SJF psych\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"psychosomatisch\": {\n    \"form\": \"psychosomatisch\",\n    \"cornetto_id\": \"r_a-14428\",\n    \"cornetto_synset_id\": \"n_a-524679\",\n    \"wordnet_id\": \"a-01585781\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. samenhang van lichaam en geest\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puberaal\": {\n    \"form\": \"puberaal\",\n    \"cornetto_id\": \"r_a-14429\",\n    \"cornetto_synset_id\": \"n_a-524685\",\n    \"wordnet_id\": \"a-01490061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als van puber\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"publiek\": {\n    \"form\": \"publiek\",\n    \"cornetto_id\": \"r_a-14431\",\n    \"cornetto_synset_id\": \"n_a-521887\",\n    \"wordnet_id\": \"a-01861205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van of voor iedereen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"publieksvriendelijk\": {\n    \"form\": \"publieksvriendelijk\",\n    \"cornetto_id\": \"r_a-14237\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toegankelijk voor publiek\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puik\": {\n    \"form\": \"puik\",\n    \"cornetto_id\": \"r_a-14432\",\n    \"cornetto_synset_id\": \"c_178\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"punctueel\": {\n    \"form\": \"punctueel\",\n    \"cornetto_id\": \"r_a-14433\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stipt, nauwgezet\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puntig\": {\n    \"form\": \"puntig\",\n    \"cornetto_id\": \"r_a-14434\",\n    \"cornetto_synset_id\": \"n_a-528597\",\n    \"wordnet_id\": \"a-01214255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spits\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puur\": {\n    \"form\": \"puur\",\n    \"cornetto_id\": \"r_a-14438\",\n    \"cornetto_synset_id\": \"d_a-9633\",\n    \"wordnet_id\": \"a-01907481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zuiver\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"raadselachtig\": {\n    \"form\": \"raadselachtig\",\n    \"cornetto_id\": \"r_a-14499\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheimzinnig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"raak\": {\n    \"form\": \"raak\",\n    \"cornetto_id\": \"r_a-14502\",\n    \"cornetto_synset_id\": \"n_a-531221\",\n    \"wordnet_id\": \"a-00138314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treffend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"raar\": {\n    \"form\": \"raar\",\n    \"cornetto_id\": \"r_a-14503\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vreemd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"raciaal\": {\n    \"form\": \"raciaal\",\n    \"cornetto_id\": \"r_a-14664\",\n    \"cornetto_synset_id\": \"n_a-524931\",\n    \"wordnet_id\": \"a-01927654\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. ras\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"racist\": {\n    \"form\": \"racist\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"racistisch\": {\n    \"form\": \"racistisch\",\n    \"cornetto_id\": \"r_a-14504\",\n    \"cornetto_synset_id\": \"n_a-524932\",\n    \"wordnet_id\": \"a-00285905\",\n    \"pos\": \"JJ\",\n    \"sense\": \"getuigend van racisme\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"rad\": {\n    \"form\": \"rad\",\n    \"cornetto_id\": \"r_a-14505\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rap\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ragfijn\": {\n    \"form\": \"ragfijn\",\n    \"cornetto_id\": \"r_a-14667\",\n    \"cornetto_synset_id\": \"n_a-525002\",\n    \"wordnet_id\": \"a-00706455\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel fijn\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raisonnabel\": {\n    \"form\": \"raisonnabel\",\n    \"cornetto_id\": \"d_a-233520\",\n    \"cornetto_synset_id\": \"n_a-525316\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"ramp\": {\n    \"form\": \"ramp\",\n    \"cornetto_id\": \"r_n-30452\",\n    \"cornetto_synset_id\": \"d_n-19123\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rampspoedig\": {\n    \"form\": \"rampspoedig\",\n    \"cornetto_id\": \"r_a-14712\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rampzalig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"rampzalig\": {\n    \"form\": \"rampzalig\",\n    \"cornetto_id\": \"r_a-14511\",\n    \"cornetto_synset_id\": \"n_a-508241\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"desastreus\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"rancuneus\": {\n    \"form\": \"rancuneus\",\n    \"cornetto_id\": \"r_a-14512\",\n    \"cornetto_synset_id\": \"n_a-511753\",\n    \"wordnet_id\": \"a-00116529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wrokkig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ranzig\": {\n    \"form\": \"ranzig\",\n    \"cornetto_id\": \"r_a-14514\",\n    \"cornetto_synset_id\": \"n_a-525065\",\n    \"wordnet_id\": \"a-01002256\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slechte of bedorven vet en olie\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rap\": {\n    \"form\": \"rap\",\n    \"cornetto_id\": \"r_a-14515\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vlug\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ras\": {\n    \"form\": \"ras\",\n    \"cornetto_id\": \"r_a-14516\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vlug\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rasperig\": {\n    \"form\": \"rasperig\",\n    \"cornetto_id\": \"r_a-14714\",\n    \"cornetto_synset_id\": \"d_a-9510\",\n    \"wordnet_id\": \"a-02238462\",\n    \"pos\": \"JJ\",\n    \"sense\": \"raspig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rationalistisch\": {\n    \"form\": \"rationalistisch\",\n    \"cornetto_id\": \"r_a-14715\",\n    \"cornetto_synset_id\": \"n_a-525105\",\n    \"wordnet_id\": \"a-01333118\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verstandelijk, cerebraal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rationeel\": {\n    \"form\": \"rationeel\",\n    \"cornetto_id\": \"r_a-14748\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"SJF wisk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rauw\": {\n    \"form\": \"rauw\",\n    \"cornetto_id\": \"r_a-14750\",\n    \"cornetto_synset_id\": \"c_583\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder franje\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"razend\": {\n    \"form\": \"razend\",\n    \"cornetto_id\": \"r_a-14522\",\n    \"cornetto_synset_id\": \"n_a-508356\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geweldig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"razendsnel\": {\n    \"form\": \"razendsnel\",\n    \"cornetto_id\": \"r_a-14669\",\n    \"cornetto_synset_id\": \"n_a-504345\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"supersnel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reactionair\": {\n    \"form\": \"reactionair\",\n    \"cornetto_id\": \"r_a-14523\",\n    \"cornetto_synset_id\": \"d_a-9499\",\n    \"wordnet_id\": \"a-00260780\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conservatief\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"realiseerbaar\": {\n    \"form\": \"realiseerbaar\",\n    \"cornetto_id\": \"r_a-14670\",\n    \"cornetto_synset_id\": \"n_a-511721\",\n    \"wordnet_id\": \"a-01821690\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitvoerbaar\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"realistisch\": {\n    \"form\": \"realistisch\",\n    \"cornetto_id\": \"r_a-14524\",\n    \"cornetto_synset_id\": \"n_a-534096\",\n    \"wordnet_id\": \"a-02460502\",\n    \"pos\": \"JJ\",\n    \"sense\": \"reëel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"recalcitrant\": {\n    \"form\": \"recalcitrant\",\n    \"cornetto_id\": \"r_a-14526\",\n    \"cornetto_synset_id\": \"n_a-534464\",\n    \"wordnet_id\": \"a-00021592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwillig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recent\": {\n    \"form\": \"recent\",\n    \"cornetto_id\": \"r_a-14527\",\n    \"cornetto_synset_id\": \"n_a-525158\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van kort geleden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"recht\": {\n    \"form\": \"recht\",\n    \"cornetto_id\": \"r_a-14752\",\n    \"cornetto_synset_id\": \"c_680\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"juist\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rechtgeaard\": {\n    \"form\": \"rechtgeaard\",\n    \"cornetto_id\": \"r_a-14533\",\n    \"cornetto_synset_id\": \"n_a-507910\",\n    \"wordnet_id\": \"a-00633581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"echt\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rechtlijnig\": {\n    \"form\": \"rechtlijnig\",\n    \"cornetto_id\": \"r_a-14534\",\n    \"cornetto_synset_id\": \"d_a-9530\",\n    \"wordnet_id\": \"a-01029151\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens een rechte lijn\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rechts\": {\n    \"form\": \"rechts\",\n    \"cornetto_id\": \"r_a-14538\",\n    \"cornetto_synset_id\": \"n_a-525199\",\n    \"wordnet_id\": \"a-02030793\",\n    \"pos\": \"JJ\",\n    \"sense\": \"politiek conservatief\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rechts-radicaal\": {\n    \"form\": \"rechts-radicaal\",\n    \"cornetto_id\": \"r_a-14674\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rechts-extremistisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rechtschapen\": {\n    \"form\": \"rechtschapen\",\n    \"cornetto_id\": \"r_a-14539\",\n    \"cornetto_synset_id\": \"n_a-513844\",\n    \"wordnet_id\": \"a-00622935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deugdzaam\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rechtstreeks\": {\n    \"form\": \"rechtstreeks\",\n    \"cornetto_id\": \"r_a-14541\",\n    \"cornetto_synset_id\": \"n_a-525240\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"direct\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"rechtvaardig\": {\n    \"form\": \"rechtvaardig\",\n    \"cornetto_id\": \"r_a-14542\",\n    \"cornetto_synset_id\": \"n_a-525249\",\n    \"wordnet_id\": \"a-00956131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"billijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reddeloos\": {\n    \"form\": \"reddeloos\",\n    \"cornetto_id\": \"r_a-14547\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder redding\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redekundig\": {\n    \"form\": \"redekundig\",\n    \"cornetto_id\": \"r_a-14548\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redelijk\": {\n    \"form\": \"redelijk\",\n    \"cornetto_id\": \"r_a-14551\",\n    \"cornetto_synset_id\": \"n_a-532721\",\n    \"wordnet_id\": \"a-01332386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rationeel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"redeloos\": {\n    \"form\": \"redeloos\",\n    \"cornetto_id\": \"r_a-14552\",\n    \"cornetto_synset_id\": \"n_a-532722\",\n    \"wordnet_id\": \"a-01334277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onredelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"regelbaar\": {\n    \"form\": \"regelbaar\",\n    \"cornetto_id\": \"r_a-14676\",\n    \"cornetto_synset_id\": \"n_a-525376\",\n    \"wordnet_id\": \"a-01027263\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verstelbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"regelmatig\": {\n    \"form\": \"regelmatig\",\n    \"cornetto_id\": \"r_a-14558\",\n    \"cornetto_synset_id\": \"n_a-525383\",\n    \"wordnet_id\": \"a-00486990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gelijkmatig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"regelrecht\": {\n    \"form\": \"regelrecht\",\n    \"cornetto_id\": \"r_a-14677\",\n    \"cornetto_synset_id\": \"n_a-525388\",\n    \"wordnet_id\": \"a-00047653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rechtstreeks\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"regenachtig\": {\n    \"form\": \"regenachtig\",\n    \"cornetto_id\": \"r_a-14559\",\n    \"cornetto_synset_id\": \"n_a-525393\",\n    \"wordnet_id\": \"a-02550333\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met (veel) regen\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"reikhalzend\": {\n    \"form\": \"reikhalzend\",\n    \"cornetto_id\": \"r_a-14563\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verlangend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rein\": {\n    \"form\": \"rein\",\n    \"cornetto_id\": \"r_a-14564\",\n    \"cornetto_synset_id\": \"d_a-9518\",\n    \"wordnet_id\": \"a-00417413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zuiver\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"rekbaar\": {\n    \"form\": \"rekbaar\",\n    \"cornetto_id\": \"r_a-14566\",\n    \"cornetto_synset_id\": \"d_a-9644\",\n    \"wordnet_id\": \"a-00843595\",\n    \"pos\": \"JJ\",\n    \"sense\": \"elastisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"rekenkundig\": {\n    \"form\": \"rekenkundig\",\n    \"cornetto_id\": \"r_a-14567\",\n    \"cornetto_synset_id\": \"n_a-525502\",\n    \"wordnet_id\": \"a-03044869\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens de rekenkunde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"relatief\": {\n    \"form\": \"relatief\",\n    \"cornetto_id\": \"r_a-14568\",\n    \"cornetto_synset_id\": \"n_a-503873\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verhoudingsgewijs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"relationeel\": {\n    \"form\": \"relationeel\",\n    \"cornetto_id\": \"r_a-14679\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. relatie(s)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"relaxed\": {\n    \"form\": \"relaxed\",\n    \"cornetto_id\": \"r_a-14569\",\n    \"cornetto_synset_id\": \"d_a-9464\",\n    \"wordnet_id\": \"a-00971660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op z'n gemak\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"relevant\": {\n    \"form\": \"relevant\",\n    \"cornetto_id\": \"r_a-14570\",\n    \"cornetto_synset_id\": \"n_a-525520\",\n    \"wordnet_id\": \"a-01975138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van belang\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"religieus\": {\n    \"form\": \"religieus\",\n    \"cornetto_id\": \"r_a-14571\",\n    \"cornetto_synset_id\": \"d_a-9319\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"godsdienstig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"remonstrants\": {\n    \"form\": \"remonstrants\",\n    \"cornetto_id\": \"r_a-14572\",\n    \"cornetto_synset_id\": \"n_a-525550\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de Remonstrantse Broederschap\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"renaissancistisch\": {\n    \"form\": \"renaissancistisch\",\n    \"cornetto_id\": \"r_a-14727\",\n    \"cornetto_synset_id\": \"n_a-525560\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de Renaissance\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"repressief\": {\n    \"form\": \"repressief\",\n    \"cornetto_id\": \"r_a-14577\",\n    \"cornetto_synset_id\": \"n_a-520809\",\n    \"wordnet_id\": \"a-02004176\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onderdrukkend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"republikeins\": {\n    \"form\": \"republikeins\",\n    \"cornetto_id\": \"r_a-14758\",\n    \"cornetto_synset_id\": \"n_a-525622\",\n    \"wordnet_id\": \"a-02788378\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de republikeinen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"resistent\": {\n    \"form\": \"resistent\",\n    \"cornetto_id\": \"r_a-14578\",\n    \"cornetto_synset_id\": \"n_a-513410\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"immuun\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"respectabel\": {\n    \"form\": \"respectabel\",\n    \"cornetto_id\": \"r_a-14580\",\n    \"cornetto_synset_id\": \"d_a-9255\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"respect verdienend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"respectievelijk\": {\n    \"form\": \"respectievelijk\",\n    \"cornetto_id\": \"r_a-14582\",\n    \"cornetto_synset_id\": \"n_a-525653\",\n    \"wordnet_id\": \"a-00494409\",\n    \"pos\": \"JJ\",\n    \"sense\": \"respectief\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"respectloos\": {\n    \"form\": \"respectloos\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"respectvol\": {\n    \"form\": \"respectvol\",\n    \"cornetto_id\": \"r_a-14729\",\n    \"cornetto_synset_id\": \"n_a-508023\",\n    \"wordnet_id\": \"a-01993940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met respect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"restrictief\": {\n    \"form\": \"restrictief\",\n    \"cornetto_id\": \"r_a-14684\",\n    \"cornetto_synset_id\": \"n_a-525672\",\n    \"wordnet_id\": \"a-01888941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inperkend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"retorisch\": {\n    \"form\": \"retorisch\",\n    \"cornetto_id\": \"r_a-14767\",\n    \"cornetto_synset_id\": \"n_a-504613\",\n    \"wordnet_id\": \"a-00073465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bombastisch\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"retrospectief\": {\n    \"form\": \"retrospectief\",\n    \"cornetto_id\": \"r_a-14584\",\n    \"cornetto_synset_id\": \"n_a-525712\",\n    \"wordnet_id\": \"a-01884539\",\n    \"pos\": \"JJ\",\n    \"sense\": \"terugkijkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reumatisch\": {\n    \"form\": \"reumatisch\",\n    \"cornetto_id\": \"r_a-14768\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met reumatiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reusachtig\": {\n    \"form\": \"reusachtig\",\n    \"cornetto_id\": \"r_a-14585\",\n    \"cornetto_synset_id\": \"n_a-508356\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gigantisch\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.9\"\n  },\n  \"reuze\": {\n    \"form\": \"reuze\",\n    \"cornetto_id\": \"r_a-14586\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"reusachtig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"reëel\": {\n    \"form\": \"reëel\",\n    \"cornetto_id\": \"r_a-14555\",\n    \"cornetto_synset_id\": \"n_a-520216\",\n    \"wordnet_id\": \"a-01943406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"realistisch\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"riant\": {\n    \"form\": \"riant\",\n    \"cornetto_id\": \"r_a-14769\",\n    \"cornetto_synset_id\": \"n_a-525762\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aantrekkelijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"ridicuul\": {\n    \"form\": \"ridicuul\",\n    \"cornetto_id\": \"r_a-14591\",\n    \"cornetto_synset_id\": \"n_a-503484\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bespottelijk\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"rigide\": {\n    \"form\": \"rigide\",\n    \"cornetto_id\": \"r_a-14592\",\n    \"cornetto_synset_id\": \"n_a-529698\",\n    \"wordnet_id\": \"a-01043924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"star\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rigoureus\": {\n    \"form\": \"rigoureus\",\n    \"cornetto_id\": \"r_a-14593\",\n    \"cornetto_synset_id\": \"n_a-524954\",\n    \"wordnet_id\": \"a-00841934\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drastisch\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"rijk\": {\n    \"form\": \"rijk\",\n    \"cornetto_id\": \"r_a-14770\",\n    \"cornetto_synset_id\": \"n_a-525828\",\n    \"wordnet_id\": \"a-00013887\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ruim voorzien van iets\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rijp\": {\n    \"form\": \"rijp\",\n    \"cornetto_id\": \"r_a-14771\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weloverwogen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rimpelig\": {\n    \"form\": \"rimpelig\",\n    \"cornetto_id\": \"r_a-14600\",\n    \"cornetto_synset_id\": \"n_a-510496\",\n    \"wordnet_id\": \"a-00088157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met rimpels\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"riskant\": {\n    \"form\": \"riskant\",\n    \"cornetto_id\": \"r_a-14602\",\n    \"cornetto_synset_id\": \"n_a-525938\",\n    \"wordnet_id\": \"a-00065791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevaarlijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"robuust\": {\n    \"form\": \"robuust\",\n    \"cornetto_id\": \"r_a-14605\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fors\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"roekeloos\": {\n    \"form\": \"roekeloos\",\n    \"cornetto_id\": \"r_a-14606\",\n    \"cornetto_synset_id\": \"n_a-525999\",\n    \"wordnet_id\": \"a-00250483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel onbezonnen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roemloos\": {\n    \"form\": \"roemloos\",\n    \"cornetto_id\": \"r_a-14693\",\n    \"cornetto_synset_id\": \"n_a-526001\",\n    \"wordnet_id\": \"a-01122411\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oneervol\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roemrijk\": {\n    \"form\": \"roemrijk\",\n    \"cornetto_id\": \"r_a-14607\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"glorieus\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roemrucht\": {\n    \"form\": \"roemrucht\",\n    \"cornetto_id\": \"r_a-14608\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermaard\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roemruchtig\": {\n    \"form\": \"roemruchtig\",\n    \"cornetto_id\": \"d_a-416294\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roemvol\": {\n    \"form\": \"roemvol\",\n    \"cornetto_id\": \"r_a-14734\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"glorieus\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"roerend\": {\n    \"form\": \"roerend\",\n    \"cornetto_id\": \"r_a-14774\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervoerbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"roerig\": {\n    \"form\": \"roerig\",\n    \"cornetto_id\": \"r_a-14610\",\n    \"cornetto_synset_id\": \"c_384\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"druk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"roerloos\": {\n    \"form\": \"roerloos\",\n    \"cornetto_id\": \"r_a-14775\",\n    \"cornetto_synset_id\": \"n_a-526013\",\n    \"wordnet_id\": \"a-01910652\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stuurloos\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roestkleurig\": {\n    \"form\": \"roestkleurig\",\n    \"cornetto_id\": \"r_a-14736\",\n    \"cornetto_synset_id\": \"n_a-526029\",\n    \"wordnet_id\": \"a-00382874\",\n    \"pos\": \"JJ\",\n    \"sense\": \"roestbruin\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"roetzwart\": {\n    \"form\": \"roetzwart\",\n    \"cornetto_id\": \"r_a-14614\",\n    \"cornetto_synset_id\": \"n_a-523373\",\n    \"wordnet_id\": \"a-00054364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pikzwart\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rokerig\": {\n    \"form\": \"rokerig\",\n    \"cornetto_id\": \"r_a-14696\",\n    \"cornetto_synset_id\": \"n_a-526046\",\n    \"wordnet_id\": \"a-02233927\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol rook\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"romantisch\": {\n    \"form\": \"romantisch\",\n    \"cornetto_id\": \"r_a-14778\",\n    \"cornetto_synset_id\": \"n_a-526107\",\n    \"wordnet_id\": \"a-01465214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van de romantiek\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rommelig\": {\n    \"form\": \"rommelig\",\n    \"cornetto_id\": \"r_a-14623\",\n    \"cornetto_synset_id\": \"n_a-534209\",\n    \"wordnet_id\": \"a-01204443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wanordelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rood\": {\n    \"form\": \"rood\",\n    \"cornetto_id\": \"r_a-14629\",\n    \"cornetto_synset_id\": \"n_a-517389\",\n    \"wordnet_id\": \"a-02031335\",\n    \"pos\": \"JJ\",\n    \"sense\": \"links\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"roodbruin\": {\n    \"form\": \"roodbruin\",\n    \"cornetto_id\": \"r_a-14698\",\n    \"cornetto_synset_id\": \"n_a-526151\",\n    \"wordnet_id\": \"a-00382792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"roodachtig bruin\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rooms\": {\n    \"form\": \"rooms\",\n    \"cornetto_id\": \"r_a-14632\",\n    \"cornetto_synset_id\": \"n_a-526193\",\n    \"wordnet_id\": \"a-02921753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rooms-katholiek\": {\n    \"form\": \"rooms-katholiek\",\n    \"cornetto_id\": \"r_a-14633\",\n    \"cornetto_synset_id\": \"n_a-526193\",\n    \"wordnet_id\": \"a-02921753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"katholiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rooskleurig\": {\n    \"form\": \"rooskleurig\",\n    \"cornetto_id\": \"r_a-14634\",\n    \"cornetto_synset_id\": \"n_a-532117\",\n    \"wordnet_id\": \"a-00382173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelbelovend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rossig\": {\n    \"form\": \"rossig\",\n    \"cornetto_id\": \"r_a-14636\",\n    \"cornetto_synset_id\": \"n_a-526211\",\n    \"wordnet_id\": \"a-00381097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"roodachtig van haar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rot\": {\n    \"form\": \"rot\",\n    \"cornetto_id\": \"r_a-14638\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ellendig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"rotsvast\": {\n    \"form\": \"rotsvast\",\n    \"cornetto_id\": \"r_a-14702\",\n    \"cornetto_synset_id\": \"n_a-521690\",\n    \"wordnet_id\": \"a-00335895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwrikbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"routinematig\": {\n    \"form\": \"routinematig\",\n    \"cornetto_id\": \"r_a-14703\",\n    \"cornetto_synset_id\": \"n_a-509789\",\n    \"wordnet_id\": \"a-00312234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als een automatisme\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"routineus\": {\n    \"form\": \"routineus\",\n    \"cornetto_id\": \"r_a-14704\",\n    \"cornetto_synset_id\": \"d_a-9172\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geroutineerd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"royaal\": {\n    \"form\": \"royaal\",\n    \"cornetto_id\": \"r_a-14642\",\n    \"cornetto_synset_id\": \"n_a-511626\",\n    \"wordnet_id\": \"a-00014490\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ruim\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"roze\": {\n    \"form\": \"roze\",\n    \"cornetto_id\": \"r_a-14643\",\n    \"cornetto_synset_id\": \"n_a-526273\",\n    \"wordnet_id\": \"a-00379595\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bleekrood\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rudimentair\": {\n    \"form\": \"rudimentair\",\n    \"cornetto_id\": \"r_a-14647\",\n    \"cornetto_synset_id\": \"n_a-526297\",\n    \"wordnet_id\": \"a-00742714\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als rudiment\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruim\": {\n    \"form\": \"ruim\",\n    \"cornetto_id\": \"c_545617\",\n    \"cornetto_synset_id\": \"n_a-526330\",\n    \"wordnet_id\": \"a-00286578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van karakter\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ruimdenkend\": {\n    \"form\": \"ruimdenkend\",\n    \"cornetto_id\": \"r_a-14651\",\n    \"cornetto_synset_id\": \"n_a-526330\",\n    \"wordnet_id\": \"a-00286578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbekrompen\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruimhartig\": {\n    \"form\": \"ruimhartig\",\n    \"cornetto_id\": \"r_a-14706\",\n    \"cornetto_synset_id\": \"d_a-9326\",\n    \"wordnet_id\": \"a-01075178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mild\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruimschoots\": {\n    \"form\": \"ruimschoots\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"rul\": {\n    \"form\": \"rul\",\n    \"cornetto_id\": \"r_a-14654\",\n    \"cornetto_synset_id\": \"n_a-519402\",\n    \"wordnet_id\": \"a-00142040\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mul\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rusteloos\": {\n    \"form\": \"rusteloos\",\n    \"cornetto_id\": \"r_a-14656\",\n    \"cornetto_synset_id\": \"c_384\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongedurig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rustiek\": {\n    \"form\": \"rustiek\",\n    \"cornetto_id\": \"r_a-14657\",\n    \"cornetto_synset_id\": \"n_a-516683\",\n    \"wordnet_id\": \"a-02790726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"landelijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rustig\": {\n    \"form\": \"rustig\",\n    \"cornetto_id\": \"r_a-14658\",\n    \"cornetto_synset_id\": \"n_a-526409\",\n    \"wordnet_id\": \"a-00529657\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kalm\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ruw\": {\n    \"form\": \"ruw\",\n    \"cornetto_id\": \"r_a-14663\",\n    \"cornetto_synset_id\": \"c_581\",\n    \"wordnet_id\": \"a-00642725\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van karakter\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rücksichtslos\": {\n    \"form\": \"rücksichtslos\",\n    \"cornetto_id\": \"r_a-14710\",\n    \"cornetto_synset_id\": \"d_a-9455\",\n    \"wordnet_id\": \"a-01262611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nietsontziend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruzie\": {\n    \"form\": \"ruzie\",\n    \"cornetto_id\": \"r_n-32330\",\n    \"cornetto_synset_id\": \"d_n-30590\",\n    \"wordnet_id\": \"n-07184149\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruziën\": {\n    \"form\": \"ruziën\",\n    \"cornetto_id\": \"r_v-6893\",\n    \"cornetto_synset_id\": \"d_v-6192\",\n    \"wordnet_id\": \"v-00775156\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruziemaken\": {\n    \"form\": \"ruziemaken\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saai\": {\n    \"form\": \"saai\",\n    \"cornetto_id\": \"r_a-14781\",\n    \"cornetto_synset_id\": \"c_573\",\n    \"wordnet_id\": \"a-02307729\",\n    \"pos\": \"JJ\",\n    \"sense\": \"om je bij te vervelen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sadistisch\": {\n    \"form\": \"sadistisch\",\n    \"cornetto_id\": \"r_a-14784\",\n    \"cornetto_synset_id\": \"n_a-526478\",\n    \"wordnet_id\": \"a-02057535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"getuigend van sadisme\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"safe\": {\n    \"form\": \"safe\",\n    \"cornetto_id\": \"r_a-14785\",\n    \"cornetto_synset_id\": \"d_a-9565\",\n    \"wordnet_id\": \"a-02093888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veilig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"saillant\": {\n    \"form\": \"saillant\",\n    \"cornetto_id\": \"r_a-14786\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opvallend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"samenhangend\": {\n    \"form\": \"samenhangend\",\n    \"cornetto_id\": \"r_a-15121\",\n    \"cornetto_synset_id\": \"n_a-526545\",\n    \"wordnet_id\": \"a-00053384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coherent\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sappig\": {\n    \"form\": \"sappig\",\n    \"cornetto_id\": \"r_a-14791\",\n    \"cornetto_synset_id\": \"n_a-528088\",\n    \"wordnet_id\": \"a-00133417\",\n    \"pos\": \"JJ\",\n    \"sense\": \"smeuïg\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sarcastisch\": {\n    \"form\": \"sarcastisch\",\n    \"cornetto_id\": \"r_a-14792\",\n    \"cornetto_synset_id\": \"n_a-526596\",\n    \"wordnet_id\": \"a-02079029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol sarcasme\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sardonisch\": {\n    \"form\": \"sardonisch\",\n    \"cornetto_id\": \"r_a-14793\",\n    \"cornetto_synset_id\": \"n_a-507785\",\n    \"wordnet_id\": \"a-02074673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met boosaardige spot\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"satanisch\": {\n    \"form\": \"satanisch\",\n    \"cornetto_id\": \"r_a-14794\",\n    \"cornetto_synset_id\": \"n_a-507785\",\n    \"wordnet_id\": \"a-02074673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"duivels\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"scandaleus\": {\n    \"form\": \"scandaleus\",\n    \"cornetto_id\": \"r_a-14797\",\n    \"cornetto_synset_id\": \"d_a-9514\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schandelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sceptisch\": {\n    \"form\": \"sceptisch\",\n    \"cornetto_id\": \"r_a-14798\",\n    \"cornetto_synset_id\": \"n_a-526640\",\n    \"wordnet_id\": \"a-00647247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol scepsis\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schaamteloos\": {\n    \"form\": \"schaamteloos\",\n    \"cornetto_id\": \"r_a-14801\",\n    \"cornetto_synset_id\": \"n_a-521042\",\n    \"wordnet_id\": \"a-00154965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongegeneerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"schaapachtig\": {\n    \"form\": \"schaapachtig\",\n    \"cornetto_id\": \"r_a-14802\",\n    \"cornetto_synset_id\": \"c_579\",\n    \"wordnet_id\": \"a-01841390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnozel\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schaars\": {\n    \"form\": \"schaars\",\n    \"cornetto_id\": \"r_a-14803\",\n    \"cornetto_synset_id\": \"n_a-526676\",\n    \"wordnet_id\": \"a-00106821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"karig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schadelijk\": {\n    \"form\": \"schadelijk\",\n    \"cornetto_id\": \"r_a-14804\",\n    \"cornetto_synset_id\": \"n_a-526699\",\n    \"wordnet_id\": \"a-00065488\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nadelig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schadevrij\": {\n    \"form\": \"schadevrij\",\n    \"cornetto_id\": \"r_a-15124\",\n    \"cornetto_synset_id\": \"n_a-526708\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder schade\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schalks\": {\n    \"form\": \"schalks\",\n    \"cornetto_id\": \"r_a-14805\",\n    \"cornetto_synset_id\": \"n_a-520935\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"guitig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schamel\": {\n    \"form\": \"schamel\",\n    \"cornetto_id\": \"r_a-15357\",\n    \"cornetto_synset_id\": \"n_a-510497\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pover\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schamper\": {\n    \"form\": \"schamper\",\n    \"cornetto_id\": \"r_a-14807\",\n    \"cornetto_synset_id\": \"n_a-518925\",\n    \"wordnet_id\": \"a-00906655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geringschattend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schandalig\": {\n    \"form\": \"schandalig\",\n    \"cornetto_id\": \"r_a-14808\",\n    \"cornetto_synset_id\": \"d_a-9514\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer afkeurenswaardig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"schande\": {\n    \"form\": \"schande\",\n    \"cornetto_id\": \"r_n-32740\",\n    \"cornetto_synset_id\": \"d_n-36251\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"schandelijk\": {\n    \"form\": \"schandelijk\",\n    \"cornetto_id\": \"r_a-14809\",\n    \"cornetto_synset_id\": \"d_a-9514\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer afkeurenswaardig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schappelijk\": {\n    \"form\": \"schappelijk\",\n    \"cornetto_id\": \"r_a-14810\",\n    \"cornetto_synset_id\": \"n_a-525316\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"redelijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.9\"\n  },\n  \"schatrijk\": {\n    \"form\": \"schatrijk\",\n    \"cornetto_id\": \"r_a-15203\",\n    \"cornetto_synset_id\": \"n_a-526762\",\n    \"wordnet_id\": \"a-02022167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer rijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scheef\": {\n    \"form\": \"scheef\",\n    \"cornetto_id\": \"r_a-14815\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verkeerd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"scheel\": {\n    \"form\": \"scheel\",\n    \"cornetto_id\": \"r_a-14816\",\n    \"cornetto_synset_id\": \"n_a-526784\",\n    \"wordnet_id\": \"a-00653514\",\n    \"pos\": \"JJ\",\n    \"sense\": \"loens\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"scheidsrechterlijk\": {\n    \"form\": \"scheidsrechterlijk\",\n    \"cornetto_id\": \"r_a-15358\",\n    \"cornetto_synset_id\": \"n_a-526852\",\n    \"wordnet_id\": \"a-02637730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van scheidsrechter\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schelden\": {\n    \"form\": \"schelden\",\n    \"cornetto_id\": \"r_v-6986\",\n    \"cornetto_synset_id\": \"d_v-6289\",\n    \"wordnet_id\": \"v-00824767\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schemerachtig\": {\n    \"form\": \"schemerachtig\",\n    \"cornetto_id\": \"r_a-15206\",\n    \"cornetto_synset_id\": \"n_a-526887\",\n    \"wordnet_id\": \"a-00274551\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schemerig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"scherp\": {\n    \"form\": \"scherp\",\n    \"cornetto_id\": \"r_a-15310\",\n    \"cornetto_synset_id\": \"n_a-507125\",\n    \"wordnet_id\": \"a-00834198\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed, effectief\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"scherpzinnig\": {\n    \"form\": \"scherpzinnig\",\n    \"cornetto_id\": \"r_a-14827\",\n    \"cornetto_synset_id\": \"c_235\",\n    \"wordnet_id\": \"a-00438909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schrander\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schichtig\": {\n    \"form\": \"schichtig\",\n    \"cornetto_id\": \"r_a-14830\",\n    \"cornetto_synset_id\": \"n_a-527420\",\n    \"wordnet_id\": \"a-00162863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schuw\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schietklaar\": {\n    \"form\": \"schietklaar\",\n    \"cornetto_id\": \"r_a-15210\",\n    \"cornetto_synset_id\": \"n_a-526976\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klaar om te schieten\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schijnbaar\": {\n    \"form\": \"schijnbaar\",\n    \"cornetto_id\": \"r_a-14831\",\n    \"cornetto_synset_id\": \"n_a-526993\",\n    \"wordnet_id\": \"a-00028471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ogenschijnlijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"schilderachtig\": {\n    \"form\": \"schilderachtig\",\n    \"cornetto_id\": \"r_a-14835\",\n    \"cornetto_synset_id\": \"n_a-527020\",\n    \"wordnet_id\": \"a-00219924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pittoresk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schilferig\": {\n    \"form\": \"schilferig\",\n    \"cornetto_id\": \"r_a-15311\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schilferachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schimmelig\": {\n    \"form\": \"schimmelig\",\n    \"cornetto_id\": \"r_a-15312\",\n    \"cornetto_synset_id\": \"n_a-527058\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schimmelachtig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schimmig\": {\n    \"form\": \"schimmig\",\n    \"cornetto_id\": \"r_a-14840\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"schitterend\": {\n    \"form\": \"schitterend\",\n    \"cornetto_id\": \"r_a-15313\",\n    \"cornetto_synset_id\": \"d_v-6333\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"glinsterend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schizofreen\": {\n    \"form\": \"schizofreen\",\n    \"cornetto_id\": \"r_a-14839\",\n    \"cornetto_synset_id\": \"n_a-527080\",\n    \"wordnet_id\": \"a-03115277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met gespleten persoonlijkheid\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schlemielig\": {\n    \"form\": \"schlemielig\",\n    \"cornetto_id\": \"r_a-15214\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een schlemiel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schokkend\": {\n    \"form\": \"schokkend\",\n    \"cornetto_id\": \"r_a-15128\",\n    \"cornetto_synset_id\": \"n_a-527099\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"een schok teweegbrengend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"schonkig\": {\n    \"form\": \"schonkig\",\n    \"cornetto_id\": \"r_a-14841\",\n    \"cornetto_synset_id\": \"n_a-527114\",\n    \"wordnet_id\": \"a-00912288\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(p)lomp\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schoolmeesterachtig\": {\n    \"form\": \"schoolmeesterachtig\",\n    \"cornetto_id\": \"r_a-15130\",\n    \"cornetto_synset_id\": \"n_a-527151\",\n    \"wordnet_id\": \"a-01324131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pedant\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schoon\": {\n    \"form\": \"schoon\",\n    \"cornetto_id\": \"r_a-14846\",\n    \"cornetto_synset_id\": \"n_a-519884\",\n    \"wordnet_id\": \"a-01582461\",\n    \"pos\": \"JJ\",\n    \"sense\": \"netto\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schor\": {\n    \"form\": \"schor\",\n    \"cornetto_id\": \"r_a-14848\",\n    \"cornetto_synset_id\": \"n_a-512205\",\n    \"wordnet_id\": \"a-01667110\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hees\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schrander\": {\n    \"form\": \"schrander\",\n    \"cornetto_id\": \"r_a-14853\",\n    \"cornetto_synset_id\": \"c_235\",\n    \"wordnet_id\": \"a-00438909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pienter\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schriel\": {\n    \"form\": \"schriel\",\n    \"cornetto_id\": \"r_a-14855\",\n    \"cornetto_synset_id\": \"n_a-527266\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mager\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schrijnend\": {\n    \"form\": \"schrijnend\",\n    \"cornetto_id\": \"r_a-14857\",\n    \"cornetto_synset_id\": \"n_a-512119\",\n    \"wordnet_id\": \"a-01374004\",\n    \"pos\": \"JJ\",\n    \"sense\": \"navrant\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"schrikbarend\": {\n    \"form\": \"schrikbarend\",\n    \"cornetto_id\": \"r_a-14858\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verschrikkelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"schril\": {\n    \"form\": \"schril\",\n    \"cornetto_id\": \"r_a-14859\",\n    \"cornetto_synset_id\": \"n_a-527309\",\n    \"wordnet_id\": \"a-01214430\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaangenaam fel\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schuchter\": {\n    \"form\": \"schuchter\",\n    \"cornetto_id\": \"r_a-14861\",\n    \"cornetto_synset_id\": \"n_a-532538\",\n    \"wordnet_id\": \"a-00339941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedeesd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schuin\": {\n    \"form\": \"schuin\",\n    \"cornetto_id\": \"r_a-14863\",\n    \"cornetto_synset_id\": \"n_a-527375\",\n    \"wordnet_id\": \"a-00425313\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schunnig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schuins\": {\n    \"form\": \"schuins\",\n    \"cornetto_id\": \"r_a-14864\",\n    \"cornetto_synset_id\": \"n_a-527374\",\n    \"wordnet_id\": \"a-00762721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schuin\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schuldig\": {\n    \"form\": \"schuldig\",\n    \"cornetto_id\": \"r_a-14867\",\n    \"cornetto_synset_id\": \"n_a-527387\",\n    \"wordnet_id\": \"a-01321429\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verschuldigd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"schunnig\": {\n    \"form\": \"schunnig\",\n    \"cornetto_id\": \"r_a-14868\",\n    \"cornetto_synset_id\": \"c_532\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"obsceen\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schurftig\": {\n    \"form\": \"schurftig\",\n    \"cornetto_id\": \"r_a-15317\",\n    \"cornetto_synset_id\": \"n_a-527402\",\n    \"wordnet_id\": \"a-02406166\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schurftachtig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"schuw\": {\n    \"form\": \"schuw\",\n    \"cornetto_id\": \"r_a-14870\",\n    \"cornetto_synset_id\": \"n_a-527420\",\n    \"wordnet_id\": \"a-00162863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schichtig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"scrupuleus\": {\n    \"form\": \"scrupuleus\",\n    \"cornetto_id\": \"r_a-14871\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwkeurig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"secuur\": {\n    \"form\": \"secuur\",\n    \"cornetto_id\": \"r_a-14875\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwgezet\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sefardisch\": {\n    \"form\": \"sefardisch\",\n    \"cornetto_id\": \"r_a-15133\",\n    \"cornetto_synset_id\": \"n_a-527476\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de sefarden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"seismisch\": {\n    \"form\": \"seismisch\",\n    \"cornetto_id\": \"r_a-15134\",\n    \"cornetto_synset_id\": \"n_a-527487\",\n    \"wordnet_id\": \"a-02293230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. aardbevingen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"seksistisch\": {\n    \"form\": \"seksistisch\",\n    \"cornetto_id\": \"r_a-14876\",\n    \"cornetto_synset_id\": \"n_a-527503\",\n    \"wordnet_id\": \"a-00286063\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waaruit seksisme blijkt\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"seksueel\": {\n    \"form\": \"seksueel\",\n    \"cornetto_id\": \"r_a-14877\",\n    \"cornetto_synset_id\": \"n_a-527516\",\n    \"wordnet_id\": \"a-02132735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. seksualiteit\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sektarisch\": {\n    \"form\": \"sektarisch\",\n    \"cornetto_id\": \"r_a-14878\",\n    \"cornetto_synset_id\": \"n_a-527519\",\n    \"wordnet_id\": \"a-02091574\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een sekte\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"selfmade\": {\n    \"form\": \"selfmade\",\n    \"cornetto_id\": \"r_a-14881\",\n    \"cornetto_synset_id\": \"n_a-527535\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelf gedaan\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"senior\": {\n    \"form\": \"senior\",\n    \"cornetto_id\": \"r_a-15324\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met meer ervaring\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sensatiebelust\": {\n    \"form\": \"sensatiebelust\",\n    \"cornetto_id\": \"r_a-15231\",\n    \"cornetto_synset_id\": \"n_a-527556\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belust op sensatie\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sensationeel\": {\n    \"form\": \"sensationeel\",\n    \"cornetto_id\": \"r_a-14884\",\n    \"cornetto_synset_id\": \"n_a-527561\",\n    \"wordnet_id\": \"a-00795246\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opzienbarend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"sensibel\": {\n    \"form\": \"sensibel\",\n    \"cornetto_id\": \"r_a-14885\",\n    \"cornetto_synset_id\": \"d_a-9311\",\n    \"wordnet_id\": \"a-01745946\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevoelig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sentimenteel\": {\n    \"form\": \"sentimenteel\",\n    \"cornetto_id\": \"r_a-14888\",\n    \"cornetto_synset_id\": \"n_a-527573\",\n    \"wordnet_id\": \"a-00618752\",\n    \"pos\": \"JJ\",\n    \"sense\": \"week\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"separaat\": {\n    \"form\": \"separaat\",\n    \"cornetto_id\": \"r_a-15136\",\n    \"cornetto_synset_id\": \"n_a-502386\",\n    \"wordnet_id\": \"a-00160768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gescheiden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"sereen\": {\n    \"form\": \"sereen\",\n    \"cornetto_id\": \"r_a-14889\",\n    \"cornetto_synset_id\": \"n_a-527595\",\n    \"wordnet_id\": \"a-00858053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kalm en vredig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"serieus\": {\n    \"form\": \"serieus\",\n    \"cornetto_id\": \"r_a-14890\",\n    \"cornetto_synset_id\": \"d_a-9263\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"sexy\": {\n    \"form\": \"sexy\",\n    \"cornetto_id\": \"r_a-14892\",\n    \"cornetto_synset_id\": \"n_a-527631\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opwindend\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sfeerloos\": {\n    \"form\": \"sfeerloos\",\n    \"cornetto_id\": \"r_a-15234\",\n    \"cornetto_synset_id\": \"n_a-521205\",\n    \"wordnet_id\": \"a-00364479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder sfeer\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sfeervol\": {\n    \"form\": \"sfeervol\",\n    \"cornetto_id\": \"r_a-14893\",\n    \"cornetto_synset_id\": \"n_a-510897\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met sfeer\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"shabby\": {\n    \"form\": \"shabby\",\n    \"cornetto_id\": \"r_a-14894\",\n    \"cornetto_synset_id\": \"n_a-527752\",\n    \"wordnet_id\": \"a-02503656\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sjofel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"significant\": {\n    \"form\": \"significant\",\n    \"cornetto_id\": \"r_a-14897\",\n    \"cornetto_synset_id\": \"d_a-9178\",\n    \"wordnet_id\": \"a-01830403\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelbetekenend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"simpel\": {\n    \"form\": \"simpel\",\n    \"cornetto_id\": \"r_a-14900\",\n    \"cornetto_synset_id\": \"c_579\",\n    \"wordnet_id\": \"a-01841390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onnozel\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"simplistisch\": {\n    \"form\": \"simplistisch\",\n    \"cornetto_id\": \"r_a-14901\",\n    \"cornetto_synset_id\": \"n_a-527706\",\n    \"wordnet_id\": \"a-01116118\",\n    \"pos\": \"JJ\",\n    \"sense\": \"al te simpel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"simultaan\": {\n    \"form\": \"simultaan\",\n    \"cornetto_id\": \"r_a-14902\",\n    \"cornetto_synset_id\": \"d_a-9640\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sinister\": {\n    \"form\": \"sinister\",\n    \"cornetto_id\": \"r_a-14904\",\n    \"cornetto_synset_id\": \"n_a-521232\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onheilspellend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sip\": {\n    \"form\": \"sip\",\n    \"cornetto_id\": \"r_a-14905\",\n    \"cornetto_synset_id\": \"n_a-503260\",\n    \"wordnet_id\": \"a-00252130\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beteuterd\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sjofel\": {\n    \"form\": \"sjofel\",\n    \"cornetto_id\": \"r_a-14906\",\n    \"cornetto_synset_id\": \"n_a-527752\",\n    \"wordnet_id\": \"a-02503656\",\n    \"pos\": \"JJ\",\n    \"sense\": \"shabby\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"slaafs\": {\n    \"form\": \"slaafs\",\n    \"cornetto_id\": \"r_a-14907\",\n    \"cornetto_synset_id\": \"n_a-527772\",\n    \"wordnet_id\": \"a-00040058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serviel\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"slaapverwekkend\": {\n    \"form\": \"slaapverwekkend\",\n    \"cornetto_id\": \"r_a-15139\",\n    \"cornetto_synset_id\": \"c_573\",\n    \"wordnet_id\": \"a-02307729\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel saai\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"slap\": {\n    \"form\": \"slap\",\n    \"cornetto_id\": \"r_a-15327\",\n    \"cornetto_synset_id\": \"n_a-527854\",\n    \"wordnet_id\": \"a-00302951\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet druk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"slapeloos\": {\n    \"form\": \"slapeloos\",\n    \"cornetto_id\": \"r_a-14914\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder slapen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"slecht\": {\n    \"form\": \"slecht\",\n    \"cornetto_id\": \"r_a-14916\",\n    \"cornetto_synset_id\": \"c_174\",\n    \"wordnet_id\": \"a-01125429\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet goed\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"slijmerig\": {\n    \"form\": \"slijmerig\",\n    \"cornetto_id\": \"r_a-14922\",\n    \"cornetto_synset_id\": \"n_a-516246\",\n    \"wordnet_id\": \"a-00789871\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kruiperig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"slim\": {\n    \"form\": \"slim\",\n    \"cornetto_id\": \"r_a-14923\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pienter\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"slinks\": {\n    \"form\": \"slinks\",\n    \"cornetto_id\": \"r_a-14924\",\n    \"cornetto_synset_id\": \"d_a-9523\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sluw\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sloom\": {\n    \"form\": \"sloom\",\n    \"cornetto_id\": \"r_a-14926\",\n    \"cornetto_synset_id\": \"n_a-527962\",\n    \"wordnet_id\": \"a-00477284\",\n    \"pos\": \"JJ\",\n    \"sense\": \"futloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"slopend\": {\n    \"form\": \"slopend\",\n    \"cornetto_id\": \"r_a-14927\",\n    \"cornetto_synset_id\": \"n_a-527968\",\n    \"wordnet_id\": \"a-00045888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afmattend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"slordig\": {\n    \"form\": \"slordig\",\n    \"cornetto_id\": \"r_a-14929\",\n    \"cornetto_synset_id\": \"n_a-527970\",\n    \"wordnet_id\": \"a-00308593\",\n    \"pos\": \"JJ\",\n    \"sense\": \"om en nabij\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"smaakloos\": {\n    \"form\": \"smaakloos\",\n    \"cornetto_id\": \"r_a-15245\",\n    \"cornetto_synset_id\": \"n_a-528048\",\n    \"wordnet_id\": \"a-02393401\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder smaak\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"smaakvol\": {\n    \"form\": \"smaakvol\",\n    \"cornetto_id\": \"r_a-14932\",\n    \"cornetto_synset_id\": \"n_a-528044\",\n    \"wordnet_id\": \"a-00689215\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel smaak\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smachtend\": {\n    \"form\": \"smachtend\",\n    \"cornetto_id\": \"r_a-15142\",\n    \"cornetto_synset_id\": \"d_a-9175\",\n    \"wordnet_id\": \"a-00010726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hevig verlangend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smadelijk\": {\n    \"form\": \"smadelijk\",\n    \"cornetto_id\": \"r_a-14933\",\n    \"cornetto_synset_id\": \"n_a-532606\",\n    \"wordnet_id\": \"a-01160031\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vernederend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smakelijk\": {\n    \"form\": \"smakelijk\",\n    \"cornetto_id\": \"r_a-14935\",\n    \"cornetto_synset_id\": \"n_a-528047\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"smeuïg\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"smakeloos\": {\n    \"form\": \"smakeloos\",\n    \"cornetto_id\": \"r_a-14936\",\n    \"cornetto_synset_id\": \"c_720\",\n    \"wordnet_id\": \"a-00220956\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bijzonder mooi\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smal\": {\n    \"form\": \"smal\",\n    \"cornetto_id\": \"r_a-14937\",\n    \"cornetto_synset_id\": \"d_a-9417\",\n    \"wordnet_id\": \"a-02561888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet breed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smartelijk\": {\n    \"form\": \"smartelijk\",\n    \"cornetto_id\": \"r_a-14938\",\n    \"cornetto_synset_id\": \"n_a-531138\",\n    \"wordnet_id\": \"a-01126291\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tragisch\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"smerig\": {\n    \"form\": \"smerig\",\n    \"cornetto_id\": \"r_a-14939\",\n    \"cornetto_synset_id\": \"d_a-9604\",\n    \"wordnet_id\": \"a-00419289\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vuil\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"smetteloos\": {\n    \"form\": \"smetteloos\",\n    \"cornetto_id\": \"r_a-14940\",\n    \"cornetto_synset_id\": \"n_a-504904\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vlekkeloos\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"smeuïg\": {\n    \"form\": \"smeuïg\",\n    \"cornetto_id\": \"r_a-14942\",\n    \"cornetto_synset_id\": \"n_a-528088\",\n    \"wordnet_id\": \"a-00133417\",\n    \"pos\": \"JJ\",\n    \"sense\": \"smakelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"smoorverliefd\": {\n    \"form\": \"smoorverliefd\",\n    \"cornetto_id\": \"r_a-15250\",\n    \"cornetto_synset_id\": \"n_a-528098\",\n    \"wordnet_id\": \"a-00798103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dolverliefd\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snedig\": {\n    \"form\": \"snedig\",\n    \"cornetto_id\": \"r_a-14945\",\n    \"cornetto_synset_id\": \"n_a-528108\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ad rem\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snel\": {\n    \"form\": \"snel\",\n    \"cornetto_id\": \"r_a-14948\",\n    \"cornetto_synset_id\": \"n_a-528141\",\n    \"wordnet_id\": \"a-00973677\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modieus\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"snelgroeiend\": {\n    \"form\": \"snelgroeiend\",\n    \"cornetto_id\": \"r_a-15144\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel groeiend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snibbig\": {\n    \"form\": \"snibbig\",\n    \"cornetto_id\": \"r_a-14950\",\n    \"cornetto_synset_id\": \"d_a-9191\",\n    \"wordnet_id\": \"a-00225912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kattig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snijdend\": {\n    \"form\": \"snijdend\",\n    \"cornetto_id\": \"r_a-15330\",\n    \"cornetto_synset_id\": \"n_a-528174\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kruisend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snikheet\": {\n    \"form\": \"snikheet\",\n    \"cornetto_id\": \"r_a-15146\",\n    \"cornetto_synset_id\": \"n_a-528097\",\n    \"wordnet_id\": \"a-00268383\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg heet\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snipverkouden\": {\n    \"form\": \"snipverkouden\",\n    \"cornetto_id\": \"r_a-15254\",\n    \"cornetto_synset_id\": \"n_a-528189\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snotverkouden\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snood\": {\n    \"form\": \"snood\",\n    \"cornetto_id\": \"r_a-14954\",\n    \"cornetto_synset_id\": \"n_a-510247\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"snugger\": {\n    \"form\": \"snugger\",\n    \"cornetto_id\": \"r_a-14955\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slim\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"sober\": {\n    \"form\": \"sober\",\n    \"cornetto_id\": \"r_a-14956\",\n    \"cornetto_synset_id\": \"d_a-9525\",\n    \"wordnet_id\": \"a-02421364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder overdaad\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sociaal\": {\n    \"form\": \"sociaal\",\n    \"cornetto_id\": \"r_a-14959\",\n    \"cornetto_synset_id\": \"n_a-528221\",\n    \"wordnet_id\": \"a-02798370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in groepen levend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sociaal-cultureel\": {\n    \"form\": \"sociaal-cultureel\",\n    \"cornetto_id\": \"r_a-15147\",\n    \"cornetto_synset_id\": \"n_a-528224\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"cultureel-maatschappelijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sociaal-democratisch\": {\n    \"form\": \"sociaal-democratisch\",\n    \"cornetto_id\": \"r_a-15148\",\n    \"cornetto_synset_id\": \"n_a-528225\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"v.d. sociaal-democratie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"socialistisch\": {\n    \"form\": \"socialistisch\",\n    \"cornetto_id\": \"r_a-14960\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"v.h. socialisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sociologisch\": {\n    \"form\": \"sociologisch\",\n    \"cornetto_id\": \"r_a-15150\",\n    \"cornetto_synset_id\": \"n_a-528242\",\n    \"wordnet_id\": \"a-02906206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de sociologie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soepel\": {\n    \"form\": \"soepel\",\n    \"cornetto_id\": \"r_a-14962\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemakkelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"solide\": {\n    \"form\": \"solide\",\n    \"cornetto_id\": \"r_a-14966\",\n    \"cornetto_synset_id\": \"c_342\",\n    \"wordnet_id\": \"a-02275209\",\n    \"pos\": \"JJ\",\n    \"sense\": \"degelijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"sollen\": {\n    \"form\": \"sollen\",\n    \"cornetto_id\": \"r_v-7320\",\n    \"cornetto_synset_id\": \"d_v-6588\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"somber\": {\n    \"form\": \"somber\",\n    \"cornetto_id\": \"r_a-14970\",\n    \"cornetto_synset_id\": \"n_a-528326\",\n    \"wordnet_id\": \"a-00364479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurigmakend donker\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"somptueus\": {\n    \"form\": \"somptueus\",\n    \"cornetto_id\": \"d_a-264718\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soortgelijk\": {\n    \"form\": \"soortgelijk\",\n    \"cornetto_id\": \"r_a-15152\",\n    \"cornetto_synset_id\": \"d_a-9643\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overeenkomstig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spannend\": {\n    \"form\": \"spannend\",\n    \"cornetto_id\": \"r_a-14975\",\n    \"cornetto_synset_id\": \"n_a-528399\",\n    \"wordnet_id\": \"a-00921014\",\n    \"pos\": \"JJ\",\n    \"sense\": \"strak\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"speciaal\": {\n    \"form\": \"speciaal\",\n    \"cornetto_id\": \"r_a-14978\",\n    \"cornetto_synset_id\": \"d_a-9188\",\n    \"wordnet_id\": \"a-00966477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijzonder\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"specifiek\": {\n    \"form\": \"specifiek\",\n    \"cornetto_id\": \"r_a-14980\",\n    \"cornetto_synset_id\": \"n_a-514566\",\n    \"wordnet_id\": \"a-00356926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet algemeen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spectaculair\": {\n    \"form\": \"spectaculair\",\n    \"cornetto_id\": \"r_a-14981\",\n    \"cornetto_synset_id\": \"n_a-522093\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opzienbarend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"speels\": {\n    \"form\": \"speels\",\n    \"cornetto_id\": \"r_a-14983\",\n    \"cornetto_synset_id\": \"n_a-528450\",\n    \"wordnet_id\": \"a-00269989\",\n    \"pos\": \"JJ\",\n    \"sense\": \"luchtig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"speltechnisch\": {\n    \"form\": \"speltechnisch\",\n    \"cornetto_id\": \"r_a-15259\",\n    \"cornetto_synset_id\": \"n_a-528497\",\n    \"wordnet_id\": \"a-00484070\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. speltechniek\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spichtig\": {\n    \"form\": \"spichtig\",\n    \"cornetto_id\": \"r_a-14984\",\n    \"cornetto_synset_id\": \"n_a-528509\",\n    \"wordnet_id\": \"a-00989544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mager\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spiernaakt\": {\n    \"form\": \"spiernaakt\",\n    \"cornetto_id\": \"r_a-15260\",\n    \"cornetto_synset_id\": \"n_a-528539\",\n    \"wordnet_id\": \"a-00458266\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal naakt\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spierwit\": {\n    \"form\": \"spierwit\",\n    \"cornetto_id\": \"r_a-15156\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lijkbleek\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spijkerhard\": {\n    \"form\": \"spijkerhard\",\n    \"cornetto_id\": \"r_a-15261\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bikkelhard\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"spijtig\": {\n    \"form\": \"spijtig\",\n    \"cornetto_id\": \"r_a-14985\",\n    \"cornetto_synset_id\": \"n_a-503876\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"jammer\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spiksplinternieuw\": {\n    \"form\": \"spiksplinternieuw\",\n    \"cornetto_id\": \"r_a-15157\",\n    \"cornetto_synset_id\": \"n_a-511095\",\n    \"wordnet_id\": \"a-01641460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gloednieuw\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spiritueel\": {\n    \"form\": \"spiritueel\",\n    \"cornetto_id\": \"r_a-15335\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geestig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spits\": {\n    \"form\": \"spits\",\n    \"cornetto_id\": \"r_a-14989\",\n    \"cornetto_synset_id\": \"c_235\",\n    \"wordnet_id\": \"a-00438909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel van geest\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"spitsvondig\": {\n    \"form\": \"spitsvondig\",\n    \"cornetto_id\": \"r_a-14990\",\n    \"cornetto_synset_id\": \"c_235\",\n    \"wordnet_id\": \"a-00438909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snedig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"splinternieuw\": {\n    \"form\": \"splinternieuw\",\n    \"cornetto_id\": \"r_a-15161\",\n    \"cornetto_synset_id\": \"n_a-511095\",\n    \"wordnet_id\": \"a-01641460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gloednieuw\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spoedig\": {\n    \"form\": \"spoedig\",\n    \"cornetto_id\": \"r_a-15162\",\n    \"cornetto_synset_id\": \"n_a-528631\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spontaan\": {\n    \"form\": \"spontaan\",\n    \"cornetto_id\": \"r_a-14991\",\n    \"cornetto_synset_id\": \"c_746\",\n    \"wordnet_id\": \"a-02282376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) vanzelf\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spookachtig\": {\n    \"form\": \"spookachtig\",\n    \"cornetto_id\": \"r_a-15163\",\n    \"cornetto_synset_id\": \"n_a-511467\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"huiveringwekkend\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"spoorloos\": {\n    \"form\": \"spoorloos\",\n    \"cornetto_id\": \"r_a-15164\",\n    \"cornetto_synset_id\": \"d_a-9529\",\n    \"wordnet_id\": \"a-02453492\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onvindbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sporadisch\": {\n    \"form\": \"sporadisch\",\n    \"cornetto_id\": \"r_a-15165\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelden voorkomend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spotziek\": {\n    \"form\": \"spotziek\",\n    \"cornetto_id\": \"r_a-15264\",\n    \"cornetto_synset_id\": \"n_a-528737\",\n    \"wordnet_id\": \"a-01995596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"spotlustig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spraakmakend\": {\n    \"form\": \"spraakmakend\",\n    \"cornetto_id\": \"r_a-15166\",\n    \"cornetto_synset_id\": \"n_a-522093\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geruchtmakend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"sprakeloos\": {\n    \"form\": \"sprakeloos\",\n    \"cornetto_id\": \"r_a-14997\",\n    \"cornetto_synset_id\": \"n_a-529451\",\n    \"wordnet_id\": \"a-01765643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met stomheid geslagen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"spreekwoordelijk\": {\n    \"form\": \"spreekwoordelijk\",\n    \"cornetto_id\": \"r_a-15167\",\n    \"cornetto_synset_id\": \"n_a-528754\",\n    \"wordnet_id\": \"a-02990304\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overbekend en typerend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"sprekend\": {\n    \"form\": \"sprekend\",\n    \"cornetto_id\": \"r_a-14998\",\n    \"cornetto_synset_id\": \"n_a-528760\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"opvallend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sprookjesachtig\": {\n    \"form\": \"sprookjesachtig\",\n    \"cornetto_id\": \"r_a-15168\",\n    \"cornetto_synset_id\": \"n_a-528807\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeëriek\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"staalblauw\": {\n    \"form\": \"staalblauw\",\n    \"cornetto_id\": \"r_a-15268\",\n    \"cornetto_synset_id\": \"n_a-528836\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blauw als staal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"staatsgevaarlijk\": {\n    \"form\": \"staatsgevaarlijk\",\n    \"cornetto_id\": \"r_a-15270\",\n    \"cornetto_synset_id\": \"n_a-528892\",\n    \"wordnet_id\": \"a-00963283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevaarlijk voor de staat\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"stampvol\": {\n    \"form\": \"stampvol\",\n    \"cornetto_id\": \"r_a-15174\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"propvol\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"standaard\": {\n    \"form\": \"standaard\",\n    \"cornetto_id\": \"d_a-270622\",\n    \"cornetto_synset_id\": \"n_a-510863\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waaraan men gewend is\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"standvastig\": {\n    \"form\": \"standvastig\",\n    \"cornetto_id\": \"r_a-15004\",\n    \"cornetto_synset_id\": \"n_a-533496\",\n    \"wordnet_id\": \"a-00250119\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwrikbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"statistisch\": {\n    \"form\": \"statistisch\",\n    \"cornetto_id\": \"r_a-15011\",\n    \"cornetto_synset_id\": \"n_a-529106\",\n    \"wordnet_id\": \"a-02911627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"v.d. statistiek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"statutair\": {\n    \"form\": \"statutair\",\n    \"cornetto_id\": \"r_a-15175\",\n    \"cornetto_synset_id\": \"n_a-529108\",\n    \"wordnet_id\": \"a-01401532\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens de statuten\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"steekhoudend\": {\n    \"form\": \"steekhoudend\",\n    \"cornetto_id\": \"r_a-15013\",\n    \"cornetto_synset_id\": \"n_a-529122\",\n    \"wordnet_id\": \"a-00291181\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gegrond\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"steels\": {\n    \"form\": \"steels\",\n    \"cornetto_id\": \"r_a-15014\",\n    \"cornetto_synset_id\": \"n_a-529135\",\n    \"wordnet_id\": \"a-02088974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tersluiks\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"steengoed\": {\n    \"form\": \"steengoed\",\n    \"cornetto_id\": \"r_a-15015\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel goed\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"steenhard\": {\n    \"form\": \"steenhard\",\n    \"cornetto_id\": \"r_a-15275\",\n    \"cornetto_synset_id\": \"n_a-514712\",\n    \"wordnet_id\": \"a-01024812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"keihard\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"steenkoud\": {\n    \"form\": \"steenkoud\",\n    \"cornetto_id\": \"r_a-15276\",\n    \"cornetto_synset_id\": \"n_a-513334\",\n    \"wordnet_id\": \"a-01078673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ijskoud\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"steenrijk\": {\n    \"form\": \"steenrijk\",\n    \"cornetto_id\": \"r_a-15177\",\n    \"cornetto_synset_id\": \"n_a-526762\",\n    \"wordnet_id\": \"a-02022167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schatrijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"steil\": {\n    \"form\": \"steil\",\n    \"cornetto_id\": \"r_a-15017\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"recht\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stekend\": {\n    \"form\": \"stekend\",\n    \"cornetto_id\": \"r_a-15277\",\n    \"cornetto_synset_id\": \"n_a-529183\",\n    \"wordnet_id\": \"a-00650900\",\n    \"pos\": \"JJ\",\n    \"sense\": \"scherp, priemend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stemhebbend\": {\n    \"form\": \"stemhebbend\",\n    \"cornetto_id\": \"r_a-15178\",\n    \"cornetto_synset_id\": \"n_a-529207\",\n    \"wordnet_id\": \"a-02286083\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet stemloos\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stemmig\": {\n    \"form\": \"stemmig\",\n    \"cornetto_id\": \"r_a-15023\",\n    \"cornetto_synset_id\": \"n_a-523637\",\n    \"wordnet_id\": \"a-00275290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingetogen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stereotiep\": {\n    \"form\": \"stereotiep\",\n    \"cornetto_id\": \"r_a-15026\",\n    \"cornetto_synset_id\": \"n_a-531136\",\n    \"wordnet_id\": \"a-00607977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onveranderlijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sterfelijk\": {\n    \"form\": \"sterfelijk\",\n    \"cornetto_id\": \"r_a-15027\",\n    \"cornetto_synset_id\": \"n_a-529268\",\n    \"wordnet_id\": \"a-00993667\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zullende sterven\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sterk\": {\n    \"form\": \"sterk\",\n    \"cornetto_id\": \"r_a-15342\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanzienlijk, hevig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"stevig\": {\n    \"form\": \"stevig\",\n    \"cornetto_id\": \"r_a-15036\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fors\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"stiefmoederlijk\": {\n    \"form\": \"stiefmoederlijk\",\n    \"cornetto_id\": \"r_a-15038\",\n    \"cornetto_synset_id\": \"n_a-529324\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"stiekem\": {\n    \"form\": \"stiekem\",\n    \"cornetto_id\": \"r_a-15039\",\n    \"cornetto_synset_id\": \"n_a-529326\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet openlijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"stijf\": {\n    \"form\": \"stijf\",\n    \"cornetto_id\": \"r_a-15040\",\n    \"cornetto_synset_id\": \"n_a-520774\",\n    \"wordnet_id\": \"a-01990653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet soepel\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stijlloos\": {\n    \"form\": \"stijlloos\",\n    \"cornetto_id\": \"r_a-15042\",\n    \"cornetto_synset_id\": \"n_a-521127\",\n    \"wordnet_id\": \"a-00136081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onfatsoenlijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stijlvol\": {\n    \"form\": \"stijlvol\",\n    \"cornetto_id\": \"r_a-15043\",\n    \"cornetto_synset_id\": \"n_a-528044\",\n    \"wordnet_id\": \"a-00689215\",\n    \"pos\": \"JJ\",\n    \"sense\": \"smaakvol\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stil\": {\n    \"form\": \"stil\",\n    \"cornetto_id\": \"r_a-15343\",\n    \"cornetto_synset_id\": \"n_a-512251\",\n    \"wordnet_id\": \"a-02090069\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heimelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stilistisch\": {\n    \"form\": \"stilistisch\",\n    \"cornetto_id\": \"r_a-15046\",\n    \"cornetto_synset_id\": \"n_a-529365\",\n    \"wordnet_id\": \"a-02018296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. stijl\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stilzwijgend\": {\n    \"form\": \"stilzwijgend\",\n    \"cornetto_id\": \"r_a-15047\",\n    \"cornetto_synset_id\": \"n_a-529369\",\n    \"wordnet_id\": \"a-00500569\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impliciet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stipt\": {\n    \"form\": \"stipt\",\n    \"cornetto_id\": \"r_a-15048\",\n    \"cornetto_synset_id\": \"n_a-519716\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"punctueel\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stoer\": {\n    \"form\": \"stoer\",\n    \"cornetto_id\": \"r_a-15049\",\n    \"cornetto_synset_id\": \"n_a-529394\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flink\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stoethaspelig\": {\n    \"form\": \"stoethaspelig\",\n    \"cornetto_id\": \"d_a-273599\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stoffig\": {\n    \"form\": \"stoffig\",\n    \"cornetto_id\": \"r_a-15051\",\n    \"cornetto_synset_id\": \"n_a-529401\",\n    \"wordnet_id\": \"a-01696346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol stof\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stokoud\": {\n    \"form\": \"stokoud\",\n    \"cornetto_id\": \"r_a-15184\",\n    \"cornetto_synset_id\": \"n_a-529426\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel oud\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stom\": {\n    \"form\": \"stom\",\n    \"cornetto_id\": \"r_a-15056\",\n    \"cornetto_synset_id\": \"c_573\",\n    \"wordnet_id\": \"a-02307729\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervelend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stomdronken\": {\n    \"form\": \"stomdronken\",\n    \"cornetto_id\": \"r_a-15185\",\n    \"cornetto_synset_id\": \"n_a-529441\",\n    \"wordnet_id\": \"a-00798103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg dronken\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stompzinnig\": {\n    \"form\": \"stompzinnig\",\n    \"cornetto_id\": \"r_a-15058\",\n    \"cornetto_synset_id\": \"n_a-529438\",\n    \"wordnet_id\": \"a-00015480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stupide\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stomverbaasd\": {\n    \"form\": \"stomverbaasd\",\n    \"cornetto_id\": \"r_a-15059\",\n    \"cornetto_synset_id\": \"n_a-529451\",\n    \"wordnet_id\": \"a-01765643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stomverwonderd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"storend\": {\n    \"form\": \"storend\",\n    \"cornetto_id\": \"r_a-15061\",\n    \"cornetto_synset_id\": \"n_a-516807\",\n    \"wordnet_id\": \"a-00669942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hinderlijk\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"stormachtig\": {\n    \"form\": \"stormachtig\",\n    \"cornetto_id\": \"r_a-15062\",\n    \"cornetto_synset_id\": \"n_a-529519\",\n    \"wordnet_id\": \"a-00303727\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heftig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"stout\": {\n    \"form\": \"stout\",\n    \"cornetto_id\": \"r_a-15344\",\n    \"cornetto_synset_id\": \"n_a-519123\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stoutmoedig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"stoutmoedig\": {\n    \"form\": \"stoutmoedig\",\n    \"cornetto_id\": \"r_a-15064\",\n    \"cornetto_synset_id\": \"n_a-529554\",\n    \"wordnet_id\": \"a-00081671\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermetel\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"straatarm\": {\n    \"form\": \"straatarm\",\n    \"cornetto_id\": \"r_a-15187\",\n    \"cornetto_synset_id\": \"n_a-529565\",\n    \"wordnet_id\": \"a-02023430\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel arm\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"straf\": {\n    \"form\": \"straf\",\n    \"cornetto_id\": \"r_a-15345\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sterk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"strafrechtelijk\": {\n    \"form\": \"strafrechtelijk\",\n    \"cornetto_id\": \"r_a-15189\",\n    \"cornetto_synset_id\": \"n_a-529626\",\n    \"wordnet_id\": \"a-01402763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgens strafrecht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"straight\": {\n    \"form\": \"straight\",\n    \"cornetto_id\": \"r_a-15067\",\n    \"cornetto_synset_id\": \"n_a-508027\",\n    \"wordnet_id\": \"a-01225643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"strak\": {\n    \"form\": \"strak\",\n    \"cornetto_id\": \"r_a-15348\",\n    \"cornetto_synset_id\": \"n_a-525902\",\n    \"wordnet_id\": \"a-02236842\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder oneffenheden\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"strakblauw\": {\n    \"form\": \"strakblauw\",\n    \"cornetto_id\": \"r_a-15284\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wolkeloos blauw\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stralend\": {\n    \"form\": \"stralend\",\n    \"cornetto_id\": \"r_a-15359\",\n    \"cornetto_synset_id\": \"n_a-529646\",\n    \"wordnet_id\": \"a-00219389\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blakend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"strategisch\": {\n    \"form\": \"strategisch\",\n    \"cornetto_id\": \"r_a-15073\",\n    \"cornetto_synset_id\": \"n_a-529667\",\n    \"wordnet_id\": \"a-01279735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. strategie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"streng\": {\n    \"form\": \"streng\",\n    \"cornetto_id\": \"r_a-15075\",\n    \"cornetto_synset_id\": \"n_a-529697\",\n    \"wordnet_id\": \"a-00009618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hard\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"strijdig\": {\n    \"form\": \"strijdig\",\n    \"cornetto_id\": \"r_a-15078\",\n    \"cornetto_synset_id\": \"n_a-529709\",\n    \"wordnet_id\": \"a-00562803\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverenigbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"strijdvaardig\": {\n    \"form\": \"strijdvaardig\",\n    \"cornetto_id\": \"r_a-15079\",\n    \"cornetto_synset_id\": \"n_a-529708\",\n    \"wordnet_id\": \"a-01017439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"paraat\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"strikt\": {\n    \"form\": \"strikt\",\n    \"cornetto_id\": \"r_a-15080\",\n    \"cornetto_synset_id\": \"n_a-529728\",\n    \"wordnet_id\": \"a-00631798\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauwkeurig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stringent\": {\n    \"form\": \"stringent\",\n    \"cornetto_id\": \"r_a-15081\",\n    \"cornetto_synset_id\": \"n_a-507874\",\n    \"wordnet_id\": \"a-00017186\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dwingend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stroef\": {\n    \"form\": \"stroef\",\n    \"cornetto_id\": \"r_a-15083\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hortend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.8\"\n  },\n  \"strontvervelend\": {\n    \"form\": \"strontvervelend\",\n    \"cornetto_id\": \"r_a-15288\",\n    \"cornetto_synset_id\": \"n_a-521551\",\n    \"wordnet_id\": \"a-00421590\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stomvervelend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"stroperig\": {\n    \"form\": \"stroperig\",\n    \"cornetto_id\": \"r_a-15360\",\n    \"cornetto_synset_id\": \"n_a-535309\",\n    \"wordnet_id\": \"a-00750926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slijmerig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"structureel\": {\n    \"form\": \"structureel\",\n    \"cornetto_id\": \"r_a-15087\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet incidenteel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stumperig\": {\n    \"form\": \"stumperig\",\n    \"cornetto_id\": \"d_a-277278\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stuntelig\": {\n    \"form\": \"stuntelig\",\n    \"cornetto_id\": \"r_a-15290\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"klunzig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stupide\": {\n    \"form\": \"stupide\",\n    \"cornetto_id\": \"r_a-15095\",\n    \"cornetto_synset_id\": \"n_a-529438\",\n    \"wordnet_id\": \"a-00015480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stompzinnig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stuurloos\": {\n    \"form\": \"stuurloos\",\n    \"cornetto_id\": \"r_a-15096\",\n    \"cornetto_synset_id\": \"n_a-520718\",\n    \"wordnet_id\": \"a-01475526\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet bestuurbaar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stuurs\": {\n    \"form\": \"stuurs\",\n    \"cornetto_id\": \"r_a-15097\",\n    \"cornetto_synset_id\": \"n_a-520179\",\n    \"wordnet_id\": \"a-01139067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nors\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"subjectief\": {\n    \"form\": \"subjectief\",\n    \"cornetto_id\": \"r_a-15098\",\n    \"cornetto_synset_id\": \"n_a-529917\",\n    \"wordnet_id\": \"a-01273910\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet objectief\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"subliem\": {\n    \"form\": \"subliem\",\n    \"cornetto_id\": \"r_a-15099\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"schitterend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"subsidiair\": {\n    \"form\": \"subsidiair\",\n    \"cornetto_id\": \"r_a-15292\",\n    \"cornetto_synset_id\": \"n_a-523468\",\n    \"wordnet_id\": \"a-01406418\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervangend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"substantieel\": {\n    \"form\": \"substantieel\",\n    \"cornetto_id\": \"r_a-15100\",\n    \"cornetto_synset_id\": \"n_a-529938\",\n    \"wordnet_id\": \"a-02557719\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aanzienlijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"subtiel\": {\n    \"form\": \"subtiel\",\n    \"cornetto_id\": \"r_a-15101\",\n    \"cornetto_synset_id\": \"n_a-529944\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fijn\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"subtropisch\": {\n    \"form\": \"subtropisch\",\n    \"cornetto_id\": \"r_a-15102\",\n    \"cornetto_synset_id\": \"n_a-529947\",\n    \"wordnet_id\": \"a-02929216\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. klimaat\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"succesrijk\": {\n    \"form\": \"succesrijk\",\n    \"cornetto_id\": \"r_a-15194\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"succesvol\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"succesvol\": {\n    \"form\": \"succesvol\",\n    \"cornetto_id\": \"r_a-15195\",\n    \"cornetto_synset_id\": \"n_a-510582\",\n    \"wordnet_id\": \"a-02331262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"succesrijk\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"suf\": {\n    \"form\": \"suf\",\n    \"cornetto_id\": \"r_a-15104\",\n    \"cornetto_synset_id\": \"d_a-9540\",\n    \"wordnet_id\": \"a-00080698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wezenloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"suffig\": {\n    \"form\": \"suffig\",\n    \"cornetto_id\": \"r_a-15293\",\n    \"cornetto_synset_id\": \"d_a-9540\",\n    \"wordnet_id\": \"a-00080698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sufferig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suggestief\": {\n    \"form\": \"suggestief\",\n    \"cornetto_id\": \"r_a-15105\",\n    \"cornetto_synset_id\": \"n_a-529964\",\n    \"wordnet_id\": \"a-00625055\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beelden oproepend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sukkelig\": {\n    \"form\": \"sukkelig\",\n    \"cornetto_id\": \"d_a-278149\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sullig\": {\n    \"form\": \"sullig\",\n    \"cornetto_id\": \"r_a-15297\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suffig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"summier\": {\n    \"form\": \"summier\",\n    \"cornetto_id\": \"r_a-15352\",\n    \"cornetto_synset_id\": \"n_a-510497\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"miniem\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"super\": {\n    \"form\": \"super\",\n    \"cornetto_id\": \"r_a-15108\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fantastisch\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"supergoed\": {\n    \"form\": \"supergoed\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"superieur\": {\n    \"form\": \"superieur\",\n    \"cornetto_id\": \"r_a-15109\",\n    \"cornetto_synset_id\": \"d_a-9183\",\n    \"wordnet_id\": \"a-02341266\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beter\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"superleuk\": {\n    \"form\": \"superleuk\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"supermooi\": {\n    \"form\": \"supermooi\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"supersnel\": {\n    \"form\": \"supersnel\",\n    \"cornetto_id\": \"r_a-15197\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pijlsnel\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"superspannend\": {\n    \"form\": \"superspannend\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"superspannende\": {\n    \"form\": \"superspannende\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"surrealistisch\": {\n    \"form\": \"surrealistisch\",\n    \"cornetto_id\": \"r_a-15112\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwerkelijk\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"suïcidaal\": {\n    \"form\": \"suïcidaal\",\n    \"cornetto_id\": \"r_a-15291\",\n    \"cornetto_synset_id\": \"n_a-529903\",\n    \"wordnet_id\": \"a-02060912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met zelfmoordneigingen\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"symbolisch\": {\n    \"form\": \"symbolisch\",\n    \"cornetto_id\": \"r_a-15113\",\n    \"cornetto_synset_id\": \"n_a-530072\",\n    \"wordnet_id\": \"a-01496592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als symbool\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"symfonisch\": {\n    \"form\": \"symfonisch\",\n    \"cornetto_id\": \"r_a-15198\",\n    \"cornetto_synset_id\": \"n_a-530073\",\n    \"wordnet_id\": \"a-01163941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"SJF muziek\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"sympathiek\": {\n    \"form\": \"sympathiek\",\n    \"cornetto_id\": \"r_a-15115\",\n    \"cornetto_synset_id\": \"c_175\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aardig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"symptomatisch\": {\n    \"form\": \"symptomatisch\",\n    \"cornetto_id\": \"r_a-15116\",\n    \"cornetto_synset_id\": \"n_a-530078\",\n    \"wordnet_id\": \"a-00357254\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tekenend\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"systematisch\": {\n    \"form\": \"systematisch\",\n    \"cornetto_id\": \"r_a-15120\",\n    \"cornetto_synset_id\": \"n_a-530113\",\n    \"wordnet_id\": \"a-01668567\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stelselmatig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taai\": {\n    \"form\": \"taai\",\n    \"cornetto_id\": \"r_a-15564\",\n    \"cornetto_synset_id\": \"n_a-530130\",\n    \"wordnet_id\": \"a-01345307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervelend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"taalkundig\": {\n    \"form\": \"taalkundig\",\n    \"cornetto_id\": \"r_a-15478\",\n    \"cornetto_synset_id\": \"n_a-530161\",\n    \"wordnet_id\": \"a-02842445\",\n    \"pos\": \"JJ\",\n    \"sense\": \"linguïstisch\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"taboe\": {\n    \"form\": \"taboe\",\n    \"cornetto_id\": \"r_a-15365\",\n    \"cornetto_synset_id\": \"n_a-530199\",\n    \"wordnet_id\": \"a-01761375\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verboden\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"tactisch\": {\n    \"form\": \"tactisch\",\n    \"cornetto_id\": \"r_a-15366\",\n    \"cornetto_synset_id\": \"n_a-507294\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met goede tactiek\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tactvol\": {\n    \"form\": \"tactvol\",\n    \"cornetto_id\": \"r_a-15368\",\n    \"cornetto_synset_id\": \"n_a-514922\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"delicaat\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"talentvol\": {\n    \"form\": \"talentvol\",\n    \"cornetto_id\": \"r_a-15480\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"begaafd\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"talloos\": {\n    \"form\": \"talloos\",\n    \"cornetto_id\": \"r_a-15369\",\n    \"cornetto_synset_id\": \"n_a-530266\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontelbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"talrijk\": {\n    \"form\": \"talrijk\",\n    \"cornetto_id\": \"r_a-15370\",\n    \"cornetto_synset_id\": \"n_a-532114\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"talloos\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tam\": {\n    \"form\": \"tam\",\n    \"cornetto_id\": \"r_a-15372\",\n    \"cornetto_synset_id\": \"n_a-516003\",\n    \"wordnet_id\": \"a-00806512\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slapjes\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tamelijk\": {\n    \"form\": \"tamelijk\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"tandheelkundig\": {\n    \"form\": \"tandheelkundig\",\n    \"cornetto_id\": \"r_a-15483\",\n    \"cornetto_synset_id\": \"n_a-530286\",\n    \"wordnet_id\": \"a-02711098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de tandheelkunde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tastbaar\": {\n    \"form\": \"tastbaar\",\n    \"cornetto_id\": \"r_a-15567\",\n    \"cornetto_synset_id\": \"n_a-505886\",\n    \"wordnet_id\": \"a-01618376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"manifest\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"technisch\": {\n    \"form\": \"technisch\",\n    \"cornetto_id\": \"r_a-15377\",\n    \"cornetto_synset_id\": \"n_a-530379\",\n    \"wordnet_id\": \"a-02809692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. techniek\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"technologisch\": {\n    \"form\": \"technologisch\",\n    \"cornetto_id\": \"r_a-15485\",\n    \"cornetto_synset_id\": \"n_a-530382\",\n    \"wordnet_id\": \"a-02809692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. technologie\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teder\": {\n    \"form\": \"teder\",\n    \"cornetto_id\": \"r_a-15378\",\n    \"cornetto_synset_id\": \"n_a-530384\",\n    \"wordnet_id\": \"a-01463965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"innig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tegendraads\": {\n    \"form\": \"tegendraads\",\n    \"cornetto_id\": \"r_a-15381\",\n    \"cornetto_synset_id\": \"n_a-534464\",\n    \"wordnet_id\": \"a-00021592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weerspannig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"tegengesteld\": {\n    \"form\": \"tegengesteld\",\n    \"cornetto_id\": \"r_a-15382\",\n    \"cornetto_synset_id\": \"n_a-530430\",\n    \"wordnet_id\": \"a-00564504\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegenovergesteld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tegenovergesteld\": {\n    \"form\": \"tegenovergesteld\",\n    \"cornetto_id\": \"r_a-15383\",\n    \"cornetto_synset_id\": \"n_a-530430\",\n    \"wordnet_id\": \"a-00564504\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tegengesteld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tegenoverliggend\": {\n    \"form\": \"tegenoverliggend\",\n    \"cornetto_id\": \"r_a-15486\",\n    \"cornetto_synset_id\": \"n_a-530429\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gelegen tegenover\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tegenstrijdig\": {\n    \"form\": \"tegenstrijdig\",\n    \"cornetto_id\": \"r_a-15384\",\n    \"cornetto_synset_id\": \"d_a-9543\",\n    \"wordnet_id\": \"a-00554098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"contradictorisch\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tegenvallen\": {\n    \"form\": \"tegenvallen\",\n    \"cornetto_id\": \"r_v-7740\",\n    \"cornetto_synset_id\": \"d_v-6958\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tegenvaller\": {\n    \"form\": \"tegenvaller\",\n    \"cornetto_id\": \"r_n-37164\",\n    \"cornetto_synset_id\": \"d_n-29626\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tegenwoordig\": {\n    \"form\": \"tegenwoordig\",\n    \"cornetto_id\": \"r_a-15386\",\n    \"cornetto_synset_id\": \"n_a-513031\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"present\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"teleurgesteld\": {\n    \"form\": \"teleurgesteld\",\n    \"cornetto_id\": \"r_a-16641\",\n    \"cornetto_synset_id\": \"n_a-530514\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sip\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teleurstellend\": {\n    \"form\": \"teleurstellend\",\n    \"cornetto_id\": \"r_a-15488\",\n    \"cornetto_synset_id\": \"n_a-530515\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sneu\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"teleurstelling\": {\n    \"form\": \"teleurstelling\",\n    \"cornetto_id\": \"r_n-37272\",\n    \"cornetto_synset_id\": \"d_n-31255\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"temerig\": {\n    \"form\": \"temerig\",\n    \"cornetto_id\": \"r_a-15537\",\n    \"cornetto_synset_id\": \"n_a-516246\",\n    \"wordnet_id\": \"a-00789871\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeurderig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"temperamentvol\": {\n    \"form\": \"temperamentvol\",\n    \"cornetto_id\": \"r_a-15538\",\n    \"cornetto_synset_id\": \"n_a-530555\",\n    \"wordnet_id\": \"a-00263994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heftig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tendentieus\": {\n    \"form\": \"tendentieus\",\n    \"cornetto_id\": \"r_a-15391\",\n    \"cornetto_synset_id\": \"n_a-530567\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gekleurd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tenger\": {\n    \"form\": \"tenger\",\n    \"cornetto_id\": \"r_a-15392\",\n    \"cornetto_synset_id\": \"n_a-530571\",\n    \"wordnet_id\": \"a-00990855\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slank\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terecht\": {\n    \"form\": \"terecht\",\n    \"cornetto_id\": \"r_a-15393\",\n    \"cornetto_synset_id\": \"n_a-510466\",\n    \"wordnet_id\": \"a-00910750\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gerechtvaardigd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"tergend\": {\n    \"form\": \"tergend\",\n    \"cornetto_id\": \"r_a-15490\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sarrend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"terloops\": {\n    \"form\": \"terloops\",\n    \"cornetto_id\": \"r_a-15394\",\n    \"cornetto_synset_id\": \"n_a-530595\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tussendoor\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"terminaal\": {\n    \"form\": \"terminaal\",\n    \"cornetto_id\": \"r_a-15395\",\n    \"cornetto_synset_id\": \"n_a-530605\",\n    \"wordnet_id\": \"a-02812147\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het levenseinde\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terroristisch\": {\n    \"form\": \"terroristisch\",\n    \"cornetto_id\": \"r_a-15491\",\n    \"cornetto_synset_id\": \"n_a-530631\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van terroristen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"tersluiks\": {\n    \"form\": \"tersluiks\",\n    \"cornetto_id\": \"r_a-15398\",\n    \"cornetto_synset_id\": \"n_a-512251\",\n    \"wordnet_id\": \"a-02090069\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stiekem\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terugkrabbelen\": {\n    \"form\": \"terugkrabbelen\",\n    \"cornetto_id\": \"r_v-7830\",\n    \"cornetto_synset_id\": \"d_v-7033\",\n    \"wordnet_id\": \"v-02380980\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tevergeefs\": {\n    \"form\": \"tevergeefs\",\n    \"cornetto_id\": \"r_a-15403\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vruchteloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"tevreden\": {\n    \"form\": \"tevreden\",\n    \"cornetto_id\": \"r_a-15404\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"content\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"theatraal\": {\n    \"form\": \"theatraal\",\n    \"cornetto_id\": \"r_a-15577\",\n    \"cornetto_synset_id\": \"n_a-530687\",\n    \"wordnet_id\": \"a-02714800\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van het theater\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"theoretisch\": {\n    \"form\": \"theoretisch\",\n    \"cornetto_id\": \"r_a-15408\",\n    \"cornetto_synset_id\": \"n_a-530704\",\n    \"wordnet_id\": \"a-00860611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in theorie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"thermisch\": {\n    \"form\": \"thermisch\",\n    \"cornetto_id\": \"r_a-15584\",\n    \"cornetto_synset_id\": \"n_a-530713\",\n    \"wordnet_id\": \"a-01250565\",\n    \"pos\": \"JJ\",\n    \"sense\": \"via warmte\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tiens\": {\n    \"form\": \"tiens\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tijdelijk\": {\n    \"form\": \"tijdelijk\",\n    \"cornetto_id\": \"r_a-15586\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. tijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tijdig\": {\n    \"form\": \"tijdig\",\n    \"cornetto_id\": \"r_a-16642\",\n    \"cornetto_synset_id\": \"n_a-530795\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op tijd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tijdloos\": {\n    \"form\": \"tijdloos\",\n    \"cornetto_id\": \"r_a-15410\",\n    \"cornetto_synset_id\": \"n_a-530796\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet tijdsgebonden\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tijdrovend\": {\n    \"form\": \"tijdrovend\",\n    \"cornetto_id\": \"r_a-15411\",\n    \"cornetto_synset_id\": \"n_a-530804\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tijdverslindend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tijdsgebonden\": {\n    \"form\": \"tijdsgebonden\",\n    \"cornetto_id\": \"r_a-15498\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet tijdloos\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"timide\": {\n    \"form\": \"timide\",\n    \"cornetto_id\": \"r_a-15412\",\n    \"cornetto_synset_id\": \"n_a-532538\",\n    \"wordnet_id\": \"a-00339941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verlegen\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tiranniek\": {\n    \"form\": \"tiranniek\",\n    \"cornetto_id\": \"r_a-15415\",\n    \"cornetto_synset_id\": \"n_a-530845\",\n    \"wordnet_id\": \"a-00788032\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een tiran\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tjeef\": {\n    \"form\": \"tjeef\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tjeven\": {\n    \"form\": \"tjeven\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tjevenstreken\": {\n    \"form\": \"tjevenstreken\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tjokvol\": {\n    \"form\": \"tjokvol\",\n    \"cornetto_id\": \"r_a-15542\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stampvol\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tochtig\": {\n    \"form\": \"tochtig\",\n    \"cornetto_id\": \"r_a-15416\",\n    \"cornetto_synset_id\": \"n_a-530878\",\n    \"wordnet_id\": \"a-00305225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"loops\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toegankelijk\": {\n    \"form\": \"toegankelijk\",\n    \"cornetto_id\": \"r_a-15590\",\n    \"cornetto_synset_id\": \"c_767\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openstaand voor\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toegedaan\": {\n    \"form\": \"toegedaan\",\n    \"cornetto_id\": \"r_a-15418\",\n    \"cornetto_synset_id\": \"n_a-530895\",\n    \"wordnet_id\": \"a-00754393\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genegen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toegewijd\": {\n    \"form\": \"toegewijd\",\n    \"cornetto_id\": \"r_a-15422\",\n    \"cornetto_synset_id\": \"n_a-530895\",\n    \"wordnet_id\": \"a-00754393\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol inzet\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toekomend\": {\n    \"form\": \"toekomend\",\n    \"cornetto_id\": \"r_a-15592\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"de toekomst aangevend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toekomstig\": {\n    \"form\": \"toekomstig\",\n    \"cornetto_id\": \"r_a-15593\",\n    \"cornetto_synset_id\": \"n_a-530897\",\n    \"wordnet_id\": \"a-00742620\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. iemands hoedanigheid\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toenmalig\": {\n    \"form\": \"toenmalig\",\n    \"cornetto_id\": \"r_a-15424\",\n    \"cornetto_synset_id\": \"n_a-530914\",\n    \"wordnet_id\": \"a-01731108\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van die tijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toepasbaar\": {\n    \"form\": \"toepasbaar\",\n    \"cornetto_id\": \"r_a-15506\",\n    \"cornetto_synset_id\": \"n_a-530916\",\n    \"wordnet_id\": \"a-01474806\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toe te passen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toepasselijk\": {\n    \"form\": \"toepasselijk\",\n    \"cornetto_id\": \"r_a-15594\",\n    \"cornetto_synset_id\": \"n_a-530918\",\n    \"wordnet_id\": \"a-01834812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toepasbaar\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toereikend\": {\n    \"form\": \"toereikend\",\n    \"cornetto_id\": \"r_a-15426\",\n    \"cornetto_synset_id\": \"n_a-510344\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genoeg\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toevallig\": {\n    \"form\": \"toevallig\",\n    \"cornetto_id\": \"r_a-15430\",\n    \"cornetto_synset_id\": \"n_a-530945\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"accidenteel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tof\": {\n    \"form\": \"tof\",\n    \"cornetto_id\": \"r_a-15431\",\n    \"cornetto_synset_id\": \"c_294\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leuk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tomeloos\": {\n    \"form\": \"tomeloos\",\n    \"cornetto_id\": \"r_a-15433\",\n    \"cornetto_synset_id\": \"n_a-521014\",\n    \"wordnet_id\": \"a-02001596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bandeloos\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"toonaangevend\": {\n    \"form\": \"toonaangevend\",\n    \"cornetto_id\": \"r_a-15434\",\n    \"cornetto_synset_id\": \"n_a-531014\",\n    \"wordnet_id\": \"a-00579622\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leidend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toonloos\": {\n    \"form\": \"toonloos\",\n    \"cornetto_id\": \"r_a-15509\",\n    \"cornetto_synset_id\": \"n_a-531021\",\n    \"wordnet_id\": \"a-02430238\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder nuancering\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"toornig\": {\n    \"form\": \"toornig\",\n    \"cornetto_id\": \"r_a-15436\",\n    \"cornetto_synset_id\": \"d_a-9199\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"woedend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"top\": {\n    \"form\": \"top\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"JJ\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"totaal\": {\n    \"form\": \"totaal\",\n    \"cornetto_id\": \"r_a-15439\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volledig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"toverachtig\": {\n    \"form\": \"toverachtig\",\n    \"cornetto_id\": \"r_a-15547\",\n    \"cornetto_synset_id\": \"n_a-528807\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als getoverd\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"toxisch\": {\n    \"form\": \"toxisch\",\n    \"cornetto_id\": \"r_a-15597\",\n    \"cornetto_synset_id\": \"n_a-531120\",\n    \"wordnet_id\": \"a-02449430\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. gif\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"traag\": {\n    \"form\": \"traag\",\n    \"cornetto_id\": \"r_a-15442\",\n    \"cornetto_synset_id\": \"n_a-516764\",\n    \"wordnet_id\": \"a-00980527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet snel\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"traangas\": {\n    \"form\": \"traangas\",\n    \"cornetto_id\": \"'r_n-38211\",\n    \"cornetto_synset_id\": \"d_n-14515\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tragikomisch\": {\n    \"form\": \"tragikomisch\",\n    \"cornetto_id\": \"r_a-15514\",\n    \"cornetto_synset_id\": \"n_a-531137\",\n    \"wordnet_id\": \"a-01267762\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurig en grappig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"tragisch\": {\n    \"form\": \"tragisch\",\n    \"cornetto_id\": \"r_a-15444\",\n    \"cornetto_synset_id\": \"n_a-531138\",\n    \"wordnet_id\": \"a-01126291\",\n    \"pos\": \"JJ\",\n    \"sense\": \"droevig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"transcendent\": {\n    \"form\": \"transcendent\",\n    \"cornetto_id\": \"r_a-15445\",\n    \"cornetto_synset_id\": \"n_a-505190\",\n    \"wordnet_id\": \"a-01577086\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet waarneembaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"traumatisch\": {\n    \"form\": \"traumatisch\",\n    \"cornetto_id\": \"r_a-15448\",\n    \"cornetto_synset_id\": \"n_a-531207\",\n    \"wordnet_id\": \"a-01162901\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een trauma\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"treffend\": {\n    \"form\": \"treffend\",\n    \"cornetto_id\": \"r_a-15599\",\n    \"cornetto_synset_id\": \"n_a-521480\",\n    \"wordnet_id\": \"a-01365544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aandoenlijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"trefzeker\": {\n    \"form\": \"trefzeker\",\n    \"cornetto_id\": \"r_a-15450\",\n    \"cornetto_synset_id\": \"n_a-531225\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"accuraat\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"trendy\": {\n    \"form\": \"trendy\",\n    \"cornetto_id\": \"r_a-15451\",\n    \"cornetto_synset_id\": \"d_a-9409\",\n    \"wordnet_id\": \"a-00971506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"modieus\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"treurig\": {\n    \"form\": \"treurig\",\n    \"cornetto_id\": \"r_a-15601\",\n    \"cornetto_synset_id\": \"n_a-527873\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaangenaam\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"triest\": {\n    \"form\": \"triest\",\n    \"cornetto_id\": \"r_a-15453\",\n    \"cornetto_synset_id\": \"n_a-532342\",\n    \"wordnet_id\": \"a-01361863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"droevig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"triomfantelijk\": {\n    \"form\": \"triomfantelijk\",\n    \"cornetto_id\": \"r_a-15454\",\n    \"cornetto_synset_id\": \"n_a-531313\",\n    \"wordnet_id\": \"a-00704898\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zegevierend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"triviaal\": {\n    \"form\": \"triviaal\",\n    \"cornetto_id\": \"r_a-15456\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"banaal\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"troebel\": {\n    \"form\": \"troebel\",\n    \"cornetto_id\": \"r_a-15457\",\n    \"cornetto_synset_id\": \"n_a-531332\",\n    \"wordnet_id\": \"a-00433529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet helder\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"troosteloos\": {\n    \"form\": \"troosteloos\",\n    \"cornetto_id\": \"r_a-15458\",\n    \"cornetto_synset_id\": \"n_a-531362\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"neerdrukkend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trots\": {\n    \"form\": \"trots\",\n    \"cornetto_id\": \"r_a-15461\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hooghartig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"trouw\": {\n    \"form\": \"trouw\",\n    \"cornetto_id\": \"r_a-15462\",\n    \"cornetto_synset_id\": \"n_a-531379\",\n    \"wordnet_id\": \"a-00022219\",\n    \"pos\": \"JJ\",\n    \"sense\": \"loyaal\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"trouweloos\": {\n    \"form\": \"trouweloos\",\n    \"cornetto_id\": \"r_a-15553\",\n    \"cornetto_synset_id\": \"n_a-521482\",\n    \"wordnet_id\": \"a-00024139\",\n    \"pos\": \"JJ\",\n    \"sense\": \"infideel\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"trouwhartig\": {\n    \"form\": \"trouwhartig\",\n    \"cornetto_id\": \"r_a-15463\",\n    \"cornetto_synset_id\": \"n_a-511204\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oprecht\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"truttig\": {\n    \"form\": \"truttig\",\n    \"cornetto_id\": \"r_a-15464\",\n    \"cornetto_synset_id\": \"n_a-531402\",\n    \"wordnet_id\": \"a-00974519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een trut\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tsjeef\": {\n    \"form\": \"tsjeef\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tsjeven\": {\n    \"form\": \"tsjeven\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tumultueus\": {\n    \"form\": \"tumultueus\",\n    \"cornetto_id\": \"r_a-15519\",\n    \"cornetto_synset_id\": \"n_a-526012\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rumoerig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"turbulent\": {\n    \"form\": \"turbulent\",\n    \"cornetto_id\": \"r_a-15466\",\n    \"cornetto_synset_id\": \"n_a-526012\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"woelig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tussenliggend\": {\n    \"form\": \"tussenliggend\",\n    \"cornetto_id\": \"r_a-15520\",\n    \"cornetto_synset_id\": \"n_a-531475\",\n    \"wordnet_id\": \"a-01014953\",\n    \"pos\": \"JJ\",\n    \"sense\": \"intermediair\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"tussentijds\": {\n    \"form\": \"tussentijds\",\n    \"cornetto_id\": \"r_a-15468\",\n    \"cornetto_synset_id\": \"n_a-531483\",\n    \"wordnet_id\": \"a-00816160\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tussendoor gebeurend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tuttig\": {\n    \"form\": \"tuttig\",\n    \"cornetto_id\": \"r_a-15469\",\n    \"cornetto_synset_id\": \"n_a-531402\",\n    \"wordnet_id\": \"a-00974519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als van een tut\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tweedehands\": {\n    \"form\": \"tweedehands\",\n    \"cornetto_id\": \"r_a-15470\",\n    \"cornetto_synset_id\": \"n_a-531522\",\n    \"wordnet_id\": \"a-01640482\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebruikt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tweederangs\": {\n    \"form\": \"tweederangs\",\n    \"cornetto_id\": \"r_a-15471\",\n    \"cornetto_synset_id\": \"n_a-518934\",\n    \"wordnet_id\": \"a-01673061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet erg goed\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"tweederangskandidaat\": {\n    \"form\": \"tweederangskandidaat\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"tweeledig\": {\n    \"form\": \"tweeledig\",\n    \"cornetto_id\": \"r_a-15609\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ambigu\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tweestemmig\": {\n    \"form\": \"tweestemmig\",\n    \"cornetto_id\": \"r_a-15562\",\n    \"cornetto_synset_id\": \"n_a-531575\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met of voor twee stemmen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"twijfelachtig\": {\n    \"form\": \"twijfelachtig\",\n    \"cornetto_id\": \"r_a-15474\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te betwijfelen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"twistziek\": {\n    \"form\": \"twistziek\",\n    \"cornetto_id\": \"r_a-15563\",\n    \"cornetto_synset_id\": \"n_a-531616\",\n    \"wordnet_id\": \"a-00603367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"twistachtig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"typerend\": {\n    \"form\": \"typerend\",\n    \"cornetto_id\": \"r_a-15530\",\n    \"cornetto_synset_id\": \"n_a-514566\",\n    \"wordnet_id\": \"a-00356926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"kenmerkend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"typisch\": {\n    \"form\": \"typisch\",\n    \"cornetto_id\": \"r_a-15477\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"karakteristiek\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"typografisch\": {\n    \"form\": \"typografisch\",\n    \"cornetto_id\": \"r_a-15531\",\n    \"cornetto_synset_id\": \"n_a-531628\",\n    \"wordnet_id\": \"a-02910248\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de typografie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitbundig\": {\n    \"form\": \"uitbundig\",\n    \"cornetto_id\": \"r_a-15875\",\n    \"cornetto_synset_id\": \"n_a-531696\",\n    \"wordnet_id\": \"a-00705498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overvloedig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"uiteindelijk\": {\n    \"form\": \"uiteindelijk\",\n    \"cornetto_id\": \"r_a-15617\",\n    \"cornetto_synset_id\": \"n_a-531661\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"definitief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"uiterlijk\": {\n    \"form\": \"uiterlijk\",\n    \"cornetto_id\": \"r_a-15618\",\n    \"cornetto_synset_id\": \"n_a-531666\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aan de buitenkant\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"uiterst\": {\n    \"form\": \"uiterst\",\n    \"cornetto_id\": \"r_a-15619\",\n    \"cornetto_synset_id\": \"n_a-531671\",\n    \"wordnet_id\": \"a-00443618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"het meest extreem\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitgebreid\": {\n    \"form\": \"uitgebreid\",\n    \"cornetto_id\": \"r_a-15620\",\n    \"cornetto_synset_id\": \"n_a-531690\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitvoerig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitgekookt\": {\n    \"form\": \"uitgekookt\",\n    \"cornetto_id\": \"r_a-15623\",\n    \"cornetto_synset_id\": \"n_a-531695\",\n    \"wordnet_id\": \"a-01155603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewiekst\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitgelezen\": {\n    \"form\": \"uitgelezen\",\n    \"cornetto_id\": \"r_a-15625\",\n    \"cornetto_synset_id\": \"n_a-531698\",\n    \"wordnet_id\": \"a-02123579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortreffelijk\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitgemergeld\": {\n    \"form\": \"uitgemergeld\",\n    \"cornetto_id\": \"r_a-15626\",\n    \"cornetto_synset_id\": \"n_a-531699\",\n    \"wordnet_id\": \"a-00988988\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sterk vermagerd\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitgestrekt\": {\n    \"form\": \"uitgestrekt\",\n    \"cornetto_id\": \"r_a-15631\",\n    \"cornetto_synset_id\": \"d_a-9556\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"groot\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitgevallen\": {\n    \"form\": \"uitgevallen\",\n    \"cornetto_id\": \"r_a-15633\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"die aard hebbend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitgewerkt\": {\n    \"form\": \"uitgewerkt\",\n    \"cornetto_id\": \"r_a-15792\",\n    \"cornetto_synset_id\": \"d_v-7675\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel bewerkt\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitheems\": {\n    \"form\": \"uitheems\",\n    \"cornetto_id\": \"r_a-15635\",\n    \"cornetto_synset_id\": \"n_a-531732\",\n    \"wordnet_id\": \"a-00608791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exotisch\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitlaatgassen\": {\n    \"form\": \"uitlaatgassen\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uitmuntend\": {\n    \"form\": \"uitmuntend\",\n    \"cornetto_id\": \"r_a-15637\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitnemend\": {\n    \"form\": \"uitnemend\",\n    \"cornetto_id\": \"r_a-15638\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitstekend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitstekend\": {\n    \"form\": \"uitstekend\",\n    \"cornetto_id\": \"r_a-15639\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voortreffelijk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitverkocht\": {\n    \"form\": \"uitverkocht\",\n    \"cornetto_id\": \"r_a-15640\",\n    \"cornetto_synset_id\": \"n_a-531783\",\n    \"wordnet_id\": \"a-00185921\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet meer verkrijgbaar\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitvoerbaar\": {\n    \"form\": \"uitvoerbaar\",\n    \"cornetto_id\": \"r_a-15796\",\n    \"cornetto_synset_id\": \"n_a-531788\",\n    \"wordnet_id\": \"a-01822563\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doenlijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitvoerig\": {\n    \"form\": \"uitvoerig\",\n    \"cornetto_id\": \"r_a-15642\",\n    \"cornetto_synset_id\": \"d_a-9558\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"alles vermeldend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitzichtloos\": {\n    \"form\": \"uitzichtloos\",\n    \"cornetto_id\": \"r_a-15644\",\n    \"cornetto_synset_id\": \"d_a-9340\",\n    \"wordnet_id\": \"a-00263463\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder perspectief\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"uitzinnig\": {\n    \"form\": \"uitzinnig\",\n    \"cornetto_id\": \"r_a-15645\",\n    \"cornetto_synset_id\": \"n_a-531807\",\n    \"wordnet_id\": \"a-00086341\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buiten zinnen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uitzonderlijk\": {\n    \"form\": \"uitzonderlijk\",\n    \"cornetto_id\": \"r_a-15646\",\n    \"cornetto_synset_id\": \"n_a-531811\",\n    \"wordnet_id\": \"a-00487653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exceptioneel\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ultiem\": {\n    \"form\": \"ultiem\",\n    \"cornetto_id\": \"r_a-15647\",\n    \"cornetto_synset_id\": \"n_a-531661\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uiterst\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"unaniem\": {\n    \"form\": \"unaniem\",\n    \"cornetto_id\": \"r_a-15648\",\n    \"cornetto_synset_id\": \"n_a-531831\",\n    \"wordnet_id\": \"a-00553732\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eenstemmig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uniek\": {\n    \"form\": \"uniek\",\n    \"cornetto_id\": \"r_a-15650\",\n    \"cornetto_synset_id\": \"d_a-9559\",\n    \"wordnet_id\": \"a-00504592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enig in zijn soort\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"unilateraal\": {\n    \"form\": \"unilateraal\",\n    \"cornetto_id\": \"r_a-15800\",\n    \"cornetto_synset_id\": \"n_a-508016\",\n    \"wordnet_id\": \"a-02312450\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eenzijdig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"universeel\": {\n    \"form\": \"universeel\",\n    \"cornetto_id\": \"r_a-15652\",\n    \"cornetto_synset_id\": \"d_a-9152\",\n    \"wordnet_id\": \"a-00783840\",\n    \"pos\": \"JJ\",\n    \"sense\": \"algemeen (toepasbaar)\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"up-to-date\": {\n    \"form\": \"up-to-date\",\n    \"cornetto_id\": \"r_a-15801\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"actueel\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"urenlang\": {\n    \"form\": \"urenlang\",\n    \"cornetto_id\": \"r_a-15802\",\n    \"cornetto_synset_id\": \"n_a-531862\",\n    \"wordnet_id\": \"a-00596211\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uren durend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"urgent\": {\n    \"form\": \"urgent\",\n    \"cornetto_id\": \"r_a-15654\",\n    \"cornetto_synset_id\": \"n_a-507592\",\n    \"wordnet_id\": \"a-00713558\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dringend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"utopisch\": {\n    \"form\": \"utopisch\",\n    \"cornetto_id\": \"r_a-15803\",\n    \"cornetto_synset_id\": \"n_a-521709\",\n    \"wordnet_id\": \"a-00626136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een utopie\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vaag\": {\n    \"form\": \"vaag\",\n    \"cornetto_id\": \"r_a-15892\",\n    \"cornetto_synset_id\": \"d_a-9560\",\n    \"wordnet_id\": \"a-00782957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet duidelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"vaardig\": {\n    \"form\": \"vaardig\",\n    \"cornetto_id\": \"r_a-15894\",\n    \"cornetto_synset_id\": \"d_a-9172\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedreven\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vakbekwaam\": {\n    \"form\": \"vakbekwaam\",\n    \"cornetto_id\": \"r_a-16190\",\n    \"cornetto_synset_id\": \"n_a-532002\",\n    \"wordnet_id\": \"a-00511037\",\n    \"pos\": \"JJ\",\n    \"sense\": \"competent\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vakkundig\": {\n    \"form\": \"vakkundig\",\n    \"cornetto_id\": \"r_a-15900\",\n    \"cornetto_synset_id\": \"n_a-532002\",\n    \"wordnet_id\": \"a-00511037\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel vakkennis\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"valide\": {\n    \"form\": \"valide\",\n    \"cornetto_id\": \"r_a-16332\",\n    \"cornetto_synset_id\": \"n_a-510088\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezond\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"vals\": {\n    \"form\": \"vals\",\n    \"cornetto_id\": \"r_a-15904\",\n    \"cornetto_synset_id\": \"d_a-9561\",\n    \"wordnet_id\": \"a-01117226\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nagemaakt\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vanzelfsprekend\": {\n    \"form\": \"vanzelfsprekend\",\n    \"cornetto_id\": \"r_a-15905\",\n    \"cornetto_synset_id\": \"n_a-517484\",\n    \"wordnet_id\": \"a-01593649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"natuurlijk\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"variabel\": {\n    \"form\": \"variabel\",\n    \"cornetto_id\": \"r_a-15906\",\n    \"cornetto_synset_id\": \"d_a-9566\",\n    \"wordnet_id\": \"a-01028163\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veranderlijk\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"vast\": {\n    \"form\": \"vast\",\n    \"cornetto_id\": \"r_a-15909\",\n    \"cornetto_synset_id\": \"c_344\",\n    \"wordnet_id\": \"a-00347400\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onveranderlijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"vastbesloten\": {\n    \"form\": \"vastbesloten\",\n    \"cornetto_id\": \"r_a-16191\",\n    \"cornetto_synset_id\": \"n_a-532085\",\n    \"wordnet_id\": \"a-00082034\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gedecideerd\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vatbaar\": {\n    \"form\": \"vatbaar\",\n    \"cornetto_id\": \"r_a-16334\",\n    \"cornetto_synset_id\": \"n_a-532098\",\n    \"wordnet_id\": \"a-00051373\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel ziek wordend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"veelbelovend\": {\n    \"form\": \"veelbelovend\",\n    \"cornetto_id\": \"r_a-15915\",\n    \"cornetto_synset_id\": \"n_a-532117\",\n    \"wordnet_id\": \"a-00382173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoopvol\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"veelbewogen\": {\n    \"form\": \"veelbewogen\",\n    \"cornetto_id\": \"r_a-15916\",\n    \"cornetto_synset_id\": \"n_a-503982\",\n    \"wordnet_id\": \"a-00035868\",\n    \"pos\": \"JJ\",\n    \"sense\": \"turbulent\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelgelezen\": {\n    \"form\": \"veelgelezen\",\n    \"cornetto_id\": \"r_a-16199\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaak gelezen\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelgeprezen\": {\n    \"form\": \"veelgeprezen\",\n    \"cornetto_id\": \"r_a-16201\",\n    \"cornetto_synset_id\": \"n_a-512859\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaak geprezen\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelomvattend\": {\n    \"form\": \"veelomvattend\",\n    \"cornetto_id\": \"r_a-16204\",\n    \"cornetto_synset_id\": \"d_a-9558\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgebreid\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelsoortig\": {\n    \"form\": \"veelsoortig\",\n    \"cornetto_id\": \"r_a-16205\",\n    \"cornetto_synset_id\": \"n_a-532136\",\n    \"wordnet_id\": \"a-02215977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. veel soorten\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelvuldig\": {\n    \"form\": \"veelvuldig\",\n    \"cornetto_id\": \"r_a-15917\",\n    \"cornetto_synset_id\": \"n_r-531906\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"frequent\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"veelzeggend\": {\n    \"form\": \"veelzeggend\",\n    \"cornetto_id\": \"r_a-15918\",\n    \"cornetto_synset_id\": \"n_a-532119\",\n    \"wordnet_id\": \"a-01496976\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veelbetekenend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"veelzijdig\": {\n    \"form\": \"veelzijdig\",\n    \"cornetto_id\": \"r_a-15919\",\n    \"cornetto_synset_id\": \"n_a-532152\",\n    \"wordnet_id\": \"a-00526541\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel zijden\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"veilig\": {\n    \"form\": \"veilig\",\n    \"cornetto_id\": \"r_a-15924\",\n    \"cornetto_synset_id\": \"n_a-532179\",\n    \"wordnet_id\": \"a-02058529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder risico\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"venijnig\": {\n    \"form\": \"venijnig\",\n    \"cornetto_id\": \"r_a-15926\",\n    \"cornetto_synset_id\": \"n_a-528174\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gemeen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ver\": {\n    \"form\": \"ver\",\n    \"cornetto_id\": \"r_a-16209\",\n    \"cornetto_synset_id\": \"n_a-532245\",\n    \"wordnet_id\": \"a-00442917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op grote afstand\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verantwoordelijk\": {\n    \"form\": \"verantwoordelijk\",\n    \"cornetto_id\": \"r_a-15931\",\n    \"cornetto_synset_id\": \"n_a-532263\",\n    \"wordnet_id\": \"a-01996377\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangrijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verbaal\": {\n    \"form\": \"verbaal\",\n    \"cornetto_id\": \"r_a-15932\",\n    \"cornetto_synset_id\": \"n_a-532264\",\n    \"wordnet_id\": \"a-00549675\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het spreken\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verbaasd\": {\n    \"form\": \"verbaasd\",\n    \"cornetto_id\": \"r_a-15933\",\n    \"cornetto_synset_id\": \"n_a-532266\",\n    \"wordnet_id\": \"a-02357479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verwonderd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verbazingwekkend\": {\n    \"form\": \"verbazingwekkend\",\n    \"cornetto_id\": \"r_a-16211\",\n    \"cornetto_synset_id\": \"n_a-532272\",\n    \"wordnet_id\": \"a-01285938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verwonderlijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"verblindend\": {\n    \"form\": \"verblindend\",\n    \"cornetto_id\": \"r_a-15938\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel mooi\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verbluffend\": {\n    \"form\": \"verbluffend\",\n    \"cornetto_id\": \"r_a-15939\",\n    \"cornetto_synset_id\": \"n_a-532288\",\n    \"wordnet_id\": \"a-00645856\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbazend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"verbolgen\": {\n    \"form\": \"verbolgen\",\n    \"cornetto_id\": \"r_a-15941\",\n    \"cornetto_synset_id\": \"d_a-9199\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gebelgd\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verborgen\": {\n    \"form\": \"verborgen\",\n    \"cornetto_id\": \"r_a-16341\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheim\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verdedigbaar\": {\n    \"form\": \"verdedigbaar\",\n    \"cornetto_id\": \"r_a-16216\",\n    \"cornetto_synset_id\": \"n_a-525316\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te verdedigen\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdekt\": {\n    \"form\": \"verdekt\",\n    \"cornetto_id\": \"r_a-15946\",\n    \"cornetto_synset_id\": \"n_a-532294\",\n    \"wordnet_id\": \"a-02088974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zichtbaar\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"verder\": {\n    \"form\": \"verder\",\n    \"cornetto_id\": \"r_a-15947\",\n    \"cornetto_synset_id\": \"n_a-522362\",\n    \"wordnet_id\": \"a-00122626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verderfelijk\": {\n    \"form\": \"verderfelijk\",\n    \"cornetto_id\": \"r_a-15948\",\n    \"cornetto_synset_id\": \"n_a-532319\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdicht\": {\n    \"form\": \"verdicht\",\n    \"cornetto_id\": \"d_a-328161\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdienstelijk\": {\n    \"form\": \"verdienstelijk\",\n    \"cornetto_id\": \"r_a-15949\",\n    \"cornetto_synset_id\": \"n_a-524336\",\n    \"wordnet_id\": \"a-02585545\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lofwaardig\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdoofd\": {\n    \"form\": \"verdoofd\",\n    \"cornetto_id\": \"r_a-16220\",\n    \"cornetto_synset_id\": \"d_a-9540\",\n    \"wordnet_id\": \"a-00080698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gevoelloos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdraagzaam\": {\n    \"form\": \"verdraagzaam\",\n    \"cornetto_id\": \"r_a-15952\",\n    \"cornetto_synset_id\": \"n_a-532336\",\n    \"wordnet_id\": \"a-01736384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tolerant\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verdrietig\": {\n    \"form\": \"verdrietig\",\n    \"cornetto_id\": \"r_a-15954\",\n    \"cornetto_synset_id\": \"n_a-507607\",\n    \"wordnet_id\": \"a-01126841\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vereist\": {\n    \"form\": \"vereist\",\n    \"cornetto_id\": \"d_a-418590\",\n    \"cornetto_synset_id\": \"n_a-520130\",\n    \"wordnet_id\": \"a-00849108\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verfrissend\": {\n    \"form\": \"verfrissend\",\n    \"cornetto_id\": \"r_a-16372\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"plezierig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"vergaand\": {\n    \"form\": \"vergaand\",\n    \"cornetto_id\": \"r_a-15956\",\n    \"cornetto_synset_id\": \"n_a-532653\",\n    \"wordnet_id\": \"a-00311505\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met grote gevolgen\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"vergeefs\": {\n    \"form\": \"vergeefs\",\n    \"cornetto_id\": \"r_a-15958\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder resultaat\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"vergelijkbaar\": {\n    \"form\": \"vergelijkbaar\",\n    \"cornetto_id\": \"r_a-16230\",\n    \"cornetto_synset_id\": \"d_a-9643\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vergeleken kunnende worden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vergenoegd\": {\n    \"form\": \"vergenoegd\",\n    \"cornetto_id\": \"r_a-15959\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tevreden\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vergevorderd\": {\n    \"form\": \"vergevorderd\",\n    \"cornetto_id\": \"r_a-16232\",\n    \"cornetto_synset_id\": \"d_a-9172\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ver gekomen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"vergezocht\": {\n    \"form\": \"vergezocht\",\n    \"cornetto_id\": \"d_a-309192\",\n    \"cornetto_synset_id\": \"n_a-532388\",\n    \"wordnet_id\": \"a-01935935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verhandelbaar\": {\n    \"form\": \"verhandelbaar\",\n    \"cornetto_id\": \"r_a-16235\",\n    \"cornetto_synset_id\": \"n_a-532510\",\n    \"wordnet_id\": \"a-00877119\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verkoopbaar\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verheugd\": {\n    \"form\": \"verheugd\",\n    \"cornetto_id\": \"r_a-15965\",\n    \"cornetto_synset_id\": \"d_a-9195\",\n    \"wordnet_id\": \"a-00363938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blij\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verheven\": {\n    \"form\": \"verheven\",\n    \"cornetto_id\": \"r_a-15966\",\n    \"cornetto_synset_id\": \"d_a-9569\",\n    \"wordnet_id\": \"a-00125993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boven het gewone\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"verhit\": {\n    \"form\": \"verhit\",\n    \"cornetto_id\": \"r_a-16346\",\n    \"cornetto_synset_id\": \"d_v-7979\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gloeiend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verkeerd\": {\n    \"form\": \"verkeerd\",\n    \"cornetto_id\": \"r_a-15970\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fout\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verkeersellende\": {\n    \"form\": \"verkeersellende\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verkeersinfarct\": {\n    \"form\": \"verkeersinfarct\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verkeken\": {\n    \"form\": \"verkeken\",\n    \"cornetto_id\": \"r_a-15971\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongebruikt voorbij laten gaan\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verklaarbaar\": {\n    \"form\": \"verklaarbaar\",\n    \"cornetto_id\": \"r_a-16240\",\n    \"cornetto_synset_id\": \"n_a-532494\",\n    \"wordnet_id\": \"a-00938801\",\n    \"pos\": \"JJ\",\n    \"sense\": \"begrijpelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"verklarend\": {\n    \"form\": \"verklarend\",\n    \"cornetto_id\": \"r_a-16241\",\n    \"cornetto_synset_id\": \"d_v-8014\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat uitlegt\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verkloten\": {\n    \"form\": \"verkloten\",\n    \"cornetto_id\": \"d_v-310311\",\n    \"cornetto_synset_id\": \"d_v-8148\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verknipt\": {\n    \"form\": \"verknipt\",\n    \"cornetto_id\": \"r_a-15974\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"raar\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verkrijgbaar\": {\n    \"form\": \"verkrijgbaar\",\n    \"cornetto_id\": \"r_a-16242\",\n    \"cornetto_synset_id\": \"n_a-532527\",\n    \"wordnet_id\": \"a-00184363\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te koop\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verleden\": {\n    \"form\": \"verleden\",\n    \"cornetto_id\": \"r_a-15977\",\n    \"cornetto_synset_id\": \"n_a-532537\",\n    \"wordnet_id\": \"a-00004296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vorig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verlegen\": {\n    \"form\": \"verlegen\",\n    \"cornetto_id\": \"r_a-15980\",\n    \"cornetto_synset_id\": \"d_a-9423\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"behoefte hebbend aan\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verlekkerd\": {\n    \"form\": \"verlekkerd\",\n    \"cornetto_id\": \"r_a-16245\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belust\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verlicht\": {\n    \"form\": \"verlicht\",\n    \"cornetto_id\": \"r_a-15982\",\n    \"cornetto_synset_id\": \"n_a-526330\",\n    \"wordnet_id\": \"a-00286578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met moderne ideeën\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verliefd\": {\n    \"form\": \"verliefd\",\n    \"cornetto_id\": \"r_a-15983\",\n    \"cornetto_synset_id\": \"n_a-532549\",\n    \"wordnet_id\": \"a-00750054\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stapel\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verliesgevend\": {\n    \"form\": \"verliesgevend\",\n    \"cornetto_id\": \"r_a-16246\",\n    \"cornetto_synset_id\": \"n_a-532551\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet rendabel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verliezer\": {\n    \"form\": \"verliezer\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"-0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verlokkelijk\": {\n    \"form\": \"verlokkelijk\",\n    \"cornetto_id\": \"r_a-16645\",\n    \"cornetto_synset_id\": \"c_478\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verleidelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verloren\": {\n    \"form\": \"verloren\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"-0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vermaard\": {\n    \"form\": \"vermaard\",\n    \"cornetto_id\": \"r_a-15987\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beroemd\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vermakelijk\": {\n    \"form\": \"vermakelijk\",\n    \"cornetto_id\": \"r_a-15988\",\n    \"cornetto_synset_id\": \"n_a-511389\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"amusant\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vermaledijd\": {\n    \"form\": \"vermaledijd\",\n    \"cornetto_id\": \"r_a-16249\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervloekt\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vermeend\": {\n    \"form\": \"vermeend\",\n    \"cornetto_id\": \"r_a-15989\",\n    \"cornetto_synset_id\": \"n_a-532582\",\n    \"wordnet_id\": \"a-00028471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verondersteld\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"vermetel\": {\n    \"form\": \"vermetel\",\n    \"cornetto_id\": \"r_a-15990\",\n    \"cornetto_synset_id\": \"n_a-529554\",\n    \"wordnet_id\": \"a-00081671\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dapper\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vermoedelijk\": {\n    \"form\": \"vermoedelijk\",\n    \"cornetto_id\": \"r_a-15991\",\n    \"cornetto_synset_id\": \"d_a-9607\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zoals verondersteld\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"vermoeid\": {\n    \"form\": \"vermoeid\",\n    \"cornetto_id\": \"r_a-16647\",\n    \"cornetto_synset_id\": \"d_a-9410\",\n    \"wordnet_id\": \"a-02432428\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moe\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vermoeiend\": {\n    \"form\": \"vermoeiend\",\n    \"cornetto_id\": \"r_a-16251\",\n    \"cornetto_synset_id\": \"n_a-532593\",\n    \"wordnet_id\": \"a-00836544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afmattend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vermogend\": {\n    \"form\": \"vermogend\",\n    \"cornetto_id\": \"r_a-15992\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"0.7\"\n  },\n  \"vernederend\": {\n    \"form\": \"vernederend\",\n    \"cornetto_id\": \"r_a-16252\",\n    \"cornetto_synset_id\": \"n_a-532606\",\n    \"wordnet_id\": \"a-01160031\",\n    \"pos\": \"JJ\",\n    \"sense\": \"minachtend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"vernieuwing\": {\n    \"form\": \"vernieuwing\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vernuftig\": {\n    \"form\": \"vernuftig\",\n    \"cornetto_id\": \"r_a-15995\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ingenieus\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.9\"\n  },\n  \"verontwaardigd\": {\n    \"form\": \"verontwaardigd\",\n    \"cornetto_id\": \"r_a-15998\",\n    \"cornetto_synset_id\": \"n_a-532627\",\n    \"wordnet_id\": \"a-00115494\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gekrenkt\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verpleegkundig\": {\n    \"form\": \"verpleegkundig\",\n    \"cornetto_id\": \"r_a-16254\",\n    \"cornetto_synset_id\": \"n_a-532635\",\n    \"wordnet_id\": \"a-02760116\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de verpleegkunde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verpletterend\": {\n    \"form\": \"verpletterend\",\n    \"cornetto_id\": \"r_a-16000\",\n    \"cornetto_synset_id\": \"n_a-522429\",\n    \"wordnet_id\": \"a-00587697\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbijsterend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verplichtend\": {\n    \"form\": \"verplichtend\",\n    \"cornetto_id\": \"r_a-16255\",\n    \"cornetto_synset_id\": \"d_v-8158\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat verplichtingen schept\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verrassend\": {\n    \"form\": \"verrassend\",\n    \"cornetto_id\": \"r_a-16005\",\n    \"cornetto_synset_id\": \"n_a-521635\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onverwacht\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"1.0\"\n  },\n  \"verrast\": {\n    \"form\": \"verrast\",\n    \"cornetto_id\": \"r_a-16256\",\n    \"cornetto_synset_id\": \"n_a-532650\",\n    \"wordnet_id\": \"a-00091764\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbaasd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verregaand\": {\n    \"form\": \"verregaand\",\n    \"cornetto_id\": \"r_a-16257\",\n    \"cornetto_synset_id\": \"n_a-532653\",\n    \"wordnet_id\": \"a-00311505\",\n    \"pos\": \"JJ\",\n    \"sense\": \"buitensporig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verrukkelijk\": {\n    \"form\": \"verrukkelijk\",\n    \"cornetto_id\": \"r_a-16006\",\n    \"cornetto_synset_id\": \"n_a-532666\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zalig\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"vers\": {\n    \"form\": \"vers\",\n    \"cornetto_id\": \"d_a-312391\",\n    \"cornetto_synset_id\": \"n_a-532670\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ververst\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verschillend\": {\n    \"form\": \"verschillend\",\n    \"cornetto_id\": \"r_a-16009\",\n    \"cornetto_synset_id\": \"n_a-501908\",\n    \"wordnet_id\": \"a-02469928\",\n    \"pos\": \"JJ\",\n    \"sense\": \"anders\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verschrikkelijk\": {\n    \"form\": \"verschrikkelijk\",\n    \"cornetto_id\": \"r_a-16012\",\n    \"cornetto_synset_id\": \"c_268\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel (veel) ADVERB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verschuldigd\": {\n    \"form\": \"verschuldigd\",\n    \"cornetto_id\": \"r_a-16013\",\n    \"cornetto_synset_id\": \"n_a-527386\",\n    \"wordnet_id\": \"a-00136884\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat men schuldig is\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verslaafd\": {\n    \"form\": \"verslaafd\",\n    \"cornetto_id\": \"r_a-16014\",\n    \"cornetto_synset_id\": \"d_a-9575\",\n    \"wordnet_id\": \"a-00047029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zonder kunnend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verslavend\": {\n    \"form\": \"verslavend\",\n    \"cornetto_id\": \"r_a-16016\",\n    \"cornetto_synset_id\": \"n_a-532698\",\n    \"wordnet_id\": \"a-00047786\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waaraan je verslaafd raakt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"verslechtert\": {\n    \"form\": \"verslechtert\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verstaanbaar\": {\n    \"form\": \"verstaanbaar\",\n    \"cornetto_id\": \"r_a-16263\",\n    \"cornetto_synset_id\": \"n_a-532720\",\n    \"wordnet_id\": \"a-00173764\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hoorbaar\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verstandig\": {\n    \"form\": \"verstandig\",\n    \"cornetto_id\": \"r_a-16019\",\n    \"cornetto_synset_id\": \"c_667\",\n    \"wordnet_id\": \"a-02569130\",\n    \"pos\": \"JJ\",\n    \"sense\": \"intelligent\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"versteld\": {\n    \"form\": \"versteld\",\n    \"cornetto_id\": \"r_a-16020\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbaasd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verstokt\": {\n    \"form\": \"verstokt\",\n    \"cornetto_id\": \"r_a-16022\",\n    \"cornetto_synset_id\": \"n_a-532741\",\n    \"wordnet_id\": \"a-00489768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ontoegankelijk voor verandering\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verstoord\": {\n    \"form\": \"verstoord\",\n    \"cornetto_id\": \"r_a-16024\",\n    \"cornetto_synset_id\": \"n_a-509660\",\n    \"wordnet_id\": \"a-00116529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"boos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"0.7\"\n  },\n  \"verstrekkend\": {\n    \"form\": \"verstrekkend\",\n    \"cornetto_id\": \"r_a-16026\",\n    \"cornetto_synset_id\": \"n_a-532749\",\n    \"wordnet_id\": \"a-00526062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verreikend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verstrooid\": {\n    \"form\": \"verstrooid\",\n    \"cornetto_id\": \"r_a-16028\",\n    \"cornetto_synset_id\": \"d_a-9150\",\n    \"wordnet_id\": \"a-00165171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verward\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"versuft\": {\n    \"form\": \"versuft\",\n    \"cornetto_id\": \"r_a-16029\",\n    \"cornetto_synset_id\": \"d_a-9540\",\n    \"wordnet_id\": \"a-00080698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dof\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verteerbaar\": {\n    \"form\": \"verteerbaar\",\n    \"cornetto_id\": \"r_a-16268\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat verteerd kan worden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vertrouwd\": {\n    \"form\": \"vertrouwd\",\n    \"cornetto_id\": \"r_a-16033\",\n    \"cornetto_synset_id\": \"n_a-532775\",\n    \"wordnet_id\": \"a-00965894\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed bekend\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vertrouwenwekkend\": {\n    \"form\": \"vertrouwenwekkend\",\n    \"cornetto_id\": \"r_a-16270\",\n    \"cornetto_synset_id\": \"n_a-503878\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vertrouwen inboezemend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vervangbaar\": {\n    \"form\": \"vervangbaar\",\n    \"cornetto_id\": \"r_a-16271\",\n    \"cornetto_synset_id\": \"n_a-532795\",\n    \"wordnet_id\": \"a-01978395\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat vervangen kan worden\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verveeld\": {\n    \"form\": \"verveeld\",\n    \"cornetto_id\": \"r_a-16272\",\n    \"cornetto_synset_id\": \"d_a-9392\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blasé\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vervelend\": {\n    \"form\": \"vervelend\",\n    \"cornetto_id\": \"r_a-16041\",\n    \"cornetto_synset_id\": \"c_573\",\n    \"wordnet_id\": \"a-02307729\",\n    \"pos\": \"JJ\",\n    \"sense\": \"saai\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vervelens\": {\n    \"form\": \"vervelens\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vervloekt\": {\n    \"form\": \"vervloekt\",\n    \"cornetto_id\": \"r_a-16273\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ellendig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwaarloosbaar\": {\n    \"form\": \"verwaarloosbaar\",\n    \"cornetto_id\": \"r_a-16275\",\n    \"cornetto_synset_id\": \"n_a-520661\",\n    \"wordnet_id\": \"a-01279978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbelangrijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwachtingsvol\": {\n    \"form\": \"verwachtingsvol\",\n    \"cornetto_id\": \"r_a-16276\",\n    \"cornetto_synset_id\": \"n_a-532833\",\n    \"wordnet_id\": \"a-00176676\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol verwachting\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwant\": {\n    \"form\": \"verwant\",\n    \"cornetto_id\": \"r_a-16043\",\n    \"cornetto_synset_id\": \"n_a-532834\",\n    \"wordnet_id\": \"a-01972820\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nauw verbonden\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verwarren\": {\n    \"form\": \"verwarren\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwarrend\": {\n    \"form\": \"verwarrend\",\n    \"cornetto_id\": \"r_a-16277\",\n    \"cornetto_synset_id\": \"n_a-532842\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat verwart\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwend\": {\n    \"form\": \"verwend\",\n    \"cornetto_id\": \"r_a-16278\",\n    \"cornetto_synset_id\": \"n_a-532850\",\n    \"wordnet_id\": \"a-01138902\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bedorven\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwerpelijk\": {\n    \"form\": \"verwerpelijk\",\n    \"cornetto_id\": \"r_a-16047\",\n    \"cornetto_synset_id\": \"n_a-527874\",\n    \"wordnet_id\": \"a-01321529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onaanvaardbaar slecht\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwijfd\": {\n    \"form\": \"verwijfd\",\n    \"cornetto_id\": \"r_a-16049\",\n    \"cornetto_synset_id\": \"n_a-532857\",\n    \"wordnet_id\": \"a-00266420\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onmannelijk\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwoed\": {\n    \"form\": \"verwoed\",\n    \"cornetto_id\": \"r_a-16050\",\n    \"cornetto_synset_id\": \"n_a-508813\",\n    \"wordnet_id\": \"a-01725712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"verwoestend\": {\n    \"form\": \"verwoestend\",\n    \"cornetto_id\": \"r_a-16282\",\n    \"cornetto_synset_id\": \"n_a-532611\",\n    \"wordnet_id\": \"a-00248837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vernietigend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"verwondingen\": {\n    \"form\": \"verwondingen\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verzachtend\": {\n    \"form\": \"verzachtend\",\n    \"cornetto_id\": \"r_a-16285\",\n    \"cornetto_synset_id\": \"n_a-532867\",\n    \"wordnet_id\": \"a-00908483\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zachter of lichter makend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"verzengend\": {\n    \"form\": \"verzengend\",\n    \"cornetto_id\": \"r_a-16052\",\n    \"cornetto_synset_id\": \"d_v-8208\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wegschroeiend\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"verziend\": {\n    \"form\": \"verziend\",\n    \"cornetto_id\": \"r_a-16053\",\n    \"cornetto_synset_id\": \"n_a-532902\",\n    \"wordnet_id\": \"a-02159969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hypermetroop\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vet\": {\n    \"form\": \"vet\",\n    \"cornetto_id\": \"r_a-16055\",\n    \"cornetto_synset_id\": \"n_a-532927\",\n    \"wordnet_id\": \"a-00991838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel vet of oliën\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"vettig\": {\n    \"form\": \"vettig\",\n    \"cornetto_id\": \"r_a-16292\",\n    \"cornetto_synset_id\": \"d_a-9581\",\n    \"wordnet_id\": \"a-00987703\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met vet\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vierkant\": {\n    \"form\": \"vierkant\",\n    \"cornetto_id\": \"r_a-16358\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"massief\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"vies\": {\n    \"form\": \"vies\",\n    \"cornetto_id\": \"r_a-16065\",\n    \"cornetto_synset_id\": \"c_532\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onfatsoenlijk\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vijandelijk\": {\n    \"form\": \"vijandelijk\",\n    \"cornetto_id\": \"r_a-16067\",\n    \"cornetto_synset_id\": \"n_a-533045\",\n    \"wordnet_id\": \"a-00083478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een vijand\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vindingrijk\": {\n    \"form\": \"vindingrijk\",\n    \"cornetto_id\": \"r_a-16069\",\n    \"cornetto_synset_id\": \"n_a-533083\",\n    \"wordnet_id\": \"a-00307182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inventief\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vinnig\": {\n    \"form\": \"vinnig\",\n    \"cornetto_id\": \"r_a-16071\",\n    \"cornetto_synset_id\": \"n_a-508891\",\n    \"wordnet_id\": \"a-00618377\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bijdehand\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"violet\": {\n    \"form\": \"violet\",\n    \"cornetto_id\": \"r_a-16294\",\n    \"cornetto_synset_id\": \"n_a-533105\",\n    \"wordnet_id\": \"a-00380312\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blauwpaars\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"virtueel\": {\n    \"form\": \"virtueel\",\n    \"cornetto_id\": \"r_a-16296\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slechts schijnbaar bestaand\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"virtuoos\": {\n    \"form\": \"virtuoos\",\n    \"cornetto_id\": \"r_a-16073\",\n    \"cornetto_synset_id\": \"n_a-533118\",\n    \"wordnet_id\": \"a-02226979\",\n    \"pos\": \"JJ\",\n    \"sense\": \"briljant\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"visrijk\": {\n    \"form\": \"visrijk\",\n    \"cornetto_id\": \"r_a-16297\",\n    \"cornetto_synset_id\": \"n_a-533142\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rijk aan vis\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"visueel\": {\n    \"form\": \"visueel\",\n    \"cornetto_id\": \"r_a-16075\",\n    \"cornetto_synset_id\": \"n_a-501282\",\n    \"wordnet_id\": \"a-00428404\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het zien\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vitaal\": {\n    \"form\": \"vitaal\",\n    \"cornetto_id\": \"r_a-16076\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol energie\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vlak\": {\n    \"form\": \"vlak\",\n    \"cornetto_id\": \"r_a-16079\",\n    \"cornetto_synset_id\": \"n_a-531021\",\n    \"wordnet_id\": \"a-02430238\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder contrasten\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"vlekkeloos\": {\n    \"form\": \"vlekkeloos\",\n    \"cornetto_id\": \"r_a-16081\",\n    \"cornetto_synset_id\": \"n_a-509317\",\n    \"wordnet_id\": \"a-00247247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"foutloos\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"vleselijk\": {\n    \"form\": \"vleselijk\",\n    \"cornetto_id\": \"r_a-16653\",\n    \"cornetto_synset_id\": \"n_a-535782\",\n    \"wordnet_id\": \"a-00070427\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zinnelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"vliegensvlug\": {\n    \"form\": \"vliegensvlug\",\n    \"cornetto_id\": \"r_a-16654\",\n    \"cornetto_synset_id\": \"n_a-504345\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zeer snel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vlijmscherp\": {\n    \"form\": \"vlijmscherp\",\n    \"cornetto_id\": \"r_a-16083\",\n    \"cornetto_synset_id\": \"n_a-533284\",\n    \"wordnet_id\": \"a-00781061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel scherp\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vloeiend\": {\n    \"form\": \"vloeiend\",\n    \"cornetto_id\": \"r_a-16086\",\n    \"cornetto_synset_id\": \"n_a-533297\",\n    \"wordnet_id\": \"a-00098933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vlot\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vlot\": {\n    \"form\": \"vlot\",\n    \"cornetto_id\": \"r_a-16362\",\n    \"cornetto_synset_id\": \"n_a-533320\",\n    \"wordnet_id\": \"a-00076921\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drijvend (adverb)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vluchtig\": {\n    \"form\": \"vluchtig\",\n    \"cornetto_id\": \"r_a-16091\",\n    \"cornetto_synset_id\": \"n_a-533334\",\n    \"wordnet_id\": \"a-02263491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. (vloei)stoffen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vlug\": {\n    \"form\": \"vlug\",\n    \"cornetto_id\": \"r_a-16092\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"snel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vocaal\": {\n    \"form\": \"vocaal\",\n    \"cornetto_id\": \"r_a-16093\",\n    \"cornetto_synset_id\": \"n_a-533352\",\n    \"wordnet_id\": \"a-01454494\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de stem\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vochtig\": {\n    \"form\": \"vochtig\",\n    \"cornetto_id\": \"r_a-16094\",\n    \"cornetto_synset_id\": \"d_a-9416\",\n    \"wordnet_id\": \"a-02547317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nattig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voedselarm\": {\n    \"form\": \"voedselarm\",\n    \"cornetto_id\": \"r_a-16302\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arm aan voeding(swaarde)\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voedzaam\": {\n    \"form\": \"voedzaam\",\n    \"cornetto_id\": \"r_a-16095\",\n    \"cornetto_synset_id\": \"n_a-518021\",\n    \"wordnet_id\": \"a-02397234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed voedend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voelbaar\": {\n    \"form\": \"voelbaar\",\n    \"cornetto_id\": \"r_a-16303\",\n    \"cornetto_synset_id\": \"n_a-533395\",\n    \"wordnet_id\": \"a-00013160\",\n    \"pos\": \"JJ\",\n    \"sense\": \"merkbaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vogelvrij\": {\n    \"form\": \"vogelvrij\",\n    \"cornetto_id\": \"r_a-16096\",\n    \"cornetto_synset_id\": \"n_a-533461\",\n    \"wordnet_id\": \"a-01403760\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rechteloos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vol\": {\n    \"form\": \"vol\",\n    \"cornetto_id\": \"r_a-16099\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"compleet\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"volautomatisch\": {\n    \"form\": \"volautomatisch\",\n    \"cornetto_id\": \"r_a-16304\",\n    \"cornetto_synset_id\": \"n_a-533471\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geheel automatisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voldaan\": {\n    \"form\": \"voldaan\",\n    \"cornetto_id\": \"r_a-16100\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tevreden\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voldoende\": {\n    \"form\": \"voldoende\",\n    \"cornetto_id\": \"r_a-16305\",\n    \"cornetto_synset_id\": \"n_a-510344\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toereikend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"volgeboekt\": {\n    \"form\": \"volgeboekt\",\n    \"cornetto_id\": \"r_a-16655\",\n    \"cornetto_synset_id\": \"n_a-533484\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volledig geboekt\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"volgend\": {\n    \"form\": \"volgend\",\n    \"cornetto_id\": \"r_a-16306\",\n    \"cornetto_synset_id\": \"n_a-533485\",\n    \"wordnet_id\": \"a-00122626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat volgt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"volkenrechtelijk\": {\n    \"form\": \"volkenrechtelijk\",\n    \"cornetto_id\": \"r_a-16308\",\n    \"cornetto_synset_id\": \"n_a-533499\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het volkenrecht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"volkomen\": {\n    \"form\": \"volkomen\",\n    \"cornetto_id\": \"r_a-16309\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"helemaal\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"volks\": {\n    \"form\": \"volks\",\n    \"cornetto_id\": \"r_a-16103\",\n    \"cornetto_synset_id\": \"n_a-533505\",\n    \"wordnet_id\": \"a-00414518\",\n    \"pos\": \"JJ\",\n    \"sense\": \"horend bij het gewone volk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"volledig\": {\n    \"form\": \"volledig\",\n    \"cornetto_id\": \"r_a-16104\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"totaal\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"volleerd\": {\n    \"form\": \"volleerd\",\n    \"cornetto_id\": \"r_a-16105\",\n    \"cornetto_synset_id\": \"n_a-533540\",\n    \"wordnet_id\": \"a-00521329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"perfect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"volmaakt\": {\n    \"form\": \"volmaakt\",\n    \"cornetto_id\": \"r_a-16106\",\n    \"cornetto_synset_id\": \"n_a-533543\",\n    \"wordnet_id\": \"a-01750847\",\n    \"pos\": \"JJ\",\n    \"sense\": \"perfect\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.6\",\n    \"confidence\": \"1.0\"\n  },\n  \"volmondig\": {\n    \"form\": \"volmondig\",\n    \"cornetto_id\": \"r_a-16107\",\n    \"cornetto_synset_id\": \"n_a-521672\",\n    \"wordnet_id\": \"a-00685924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ronduit\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"volslagen\": {\n    \"form\": \"volslagen\",\n    \"cornetto_id\": \"r_a-16108\",\n    \"cornetto_synset_id\": \"n_a-533547\",\n    \"wordnet_id\": \"a-00005107\",\n    \"pos\": \"JJ\",\n    \"sense\": \"compleet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"volstrekt\": {\n    \"form\": \"volstrekt\",\n    \"cornetto_id\": \"r_a-16657\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"absoluut\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"volwaardig\": {\n    \"form\": \"volwaardig\",\n    \"cornetto_id\": \"r_a-16111\",\n    \"cornetto_synset_id\": \"n_a-533565\",\n    \"wordnet_id\": \"a-00935792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder gebreken\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"volwassen\": {\n    \"form\": \"volwassen\",\n    \"cornetto_id\": \"r_a-16112\",\n    \"cornetto_synset_id\": \"d_a-9590\",\n    \"wordnet_id\": \"a-01488616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"volgroeid\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vooraanstaand\": {\n    \"form\": \"vooraanstaand\",\n    \"cornetto_id\": \"r_a-16114\",\n    \"cornetto_synset_id\": \"n_a-510878\",\n    \"wordnet_id\": \"a-01830134\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangrijk\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorbarig\": {\n    \"form\": \"voorbarig\",\n    \"cornetto_id\": \"r_a-16115\",\n    \"cornetto_synset_id\": \"n_a-533587\",\n    \"wordnet_id\": \"a-01494740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te vroeg\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorbij\": {\n    \"form\": \"voorbij\",\n    \"cornetto_id\": \"r_a-16117\",\n    \"cornetto_synset_id\": \"n_a-533598\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"afgelopen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voorgaand\": {\n    \"form\": \"voorgaand\",\n    \"cornetto_id\": \"r_a-16314\",\n    \"cornetto_synset_id\": \"n_a-533615\",\n    \"wordnet_id\": \"a-00004296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vorig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voorlaatst\": {\n    \"form\": \"voorlaatst\",\n    \"cornetto_id\": \"r_a-16123\",\n    \"cornetto_synset_id\": \"n_a-533646\",\n    \"wordnet_id\": \"a-01015392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op een na de laatste\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorlopig\": {\n    \"form\": \"voorlopig\",\n    \"cornetto_id\": \"r_a-16124\",\n    \"cornetto_synset_id\": \"n_a-533653\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nog niet definitief\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voormalig\": {\n    \"form\": \"voormalig\",\n    \"cornetto_id\": \"r_a-16125\",\n    \"cornetto_synset_id\": \"n_a-533656\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vorig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voornaam\": {\n    \"form\": \"voornaam\",\n    \"cornetto_id\": \"r_a-16126\",\n    \"cornetto_synset_id\": \"n_a-533659\",\n    \"wordnet_id\": \"a-01590484\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belangrijk\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voornamelijk\": {\n    \"form\": \"voornamelijk\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voorspelbaar\": {\n    \"form\": \"voorspelbaar\",\n    \"cornetto_id\": \"r_a-16318\",\n    \"cornetto_synset_id\": \"n_a-533699\",\n    \"wordnet_id\": \"a-00301187\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te voorspellen\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"voorspellend\": {\n    \"form\": \"voorspellend\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voorspoedig\": {\n    \"form\": \"voorspoedig\",\n    \"cornetto_id\": \"r_a-16129\",\n    \"cornetto_synset_id\": \"n_a-533700\",\n    \"wordnet_id\": \"a-02331262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met voorspoed\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorstelbaar\": {\n    \"form\": \"voorstelbaar\",\n    \"cornetto_id\": \"r_a-16320\",\n    \"cornetto_synset_id\": \"n_a-519143\",\n    \"wordnet_id\": \"a-02418249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"voor te stellen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voortdurend\": {\n    \"form\": \"voortdurend\",\n    \"cornetto_id\": \"r_a-16130\",\n    \"cornetto_synset_id\": \"n_a-533706\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onophoudelijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voortijdig\": {\n    \"form\": \"voortijdig\",\n    \"cornetto_id\": \"r_a-16131\",\n    \"cornetto_synset_id\": \"n_a-533707\",\n    \"wordnet_id\": \"a-00815000\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroegtijdig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voortreffelijk\": {\n    \"form\": \"voortreffelijk\",\n    \"cornetto_id\": \"r_a-16132\",\n    \"cornetto_synset_id\": \"d_a-9557\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitnemend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"voortvarend\": {\n    \"form\": \"voortvarend\",\n    \"cornetto_id\": \"r_a-16133\",\n    \"cornetto_synset_id\": \"n_a-507342\",\n    \"wordnet_id\": \"a-00249721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doortastend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"voortvluchtig\": {\n    \"form\": \"voortvluchtig\",\n    \"cornetto_id\": \"r_a-16134\",\n    \"cornetto_synset_id\": \"n_a-533714\",\n    \"wordnet_id\": \"a-01443097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op de vlucht\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vooruitstrevend\": {\n    \"form\": \"vooruitstrevend\",\n    \"cornetto_id\": \"r_a-16135\",\n    \"cornetto_synset_id\": \"n_a-524506\",\n    \"wordnet_id\": \"a-00575230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"progressief\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorwaardelijk\": {\n    \"form\": \"voorwaardelijk\",\n    \"cornetto_id\": \"r_a-16136\",\n    \"cornetto_synset_id\": \"n_a-533725\",\n    \"wordnet_id\": \"a-00556318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conditioneel\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"voorzichtig\": {\n    \"form\": \"voorzichtig\",\n    \"cornetto_id\": \"r_a-16138\",\n    \"cornetto_synset_id\": \"n_a-533736\",\n    \"wordnet_id\": \"a-00326202\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgvuldig\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vorig\": {\n    \"form\": \"vorig\",\n    \"cornetto_id\": \"r_a-16142\",\n    \"cornetto_synset_id\": \"d_a-9599\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eerder\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vraatzuchtig\": {\n    \"form\": \"vraatzuchtig\",\n    \"cornetto_id\": \"r_a-16145\",\n    \"cornetto_synset_id\": \"n_a-527340\",\n    \"wordnet_id\": \"a-00009978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gulzig\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vredig\": {\n    \"form\": \"vredig\",\n    \"cornetto_id\": \"r_a-16147\",\n    \"cornetto_synset_id\": \"n_a-533829\",\n    \"wordnet_id\": \"a-01922227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in vrede\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"vreemd\": {\n    \"form\": \"vreemd\",\n    \"cornetto_id\": \"r_a-16150\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"raar\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vrekkig\": {\n    \"form\": \"vrekkig\",\n    \"cornetto_id\": \"r_a-16658\",\n    \"cornetto_synset_id\": \"n_a-510944\",\n    \"wordnet_id\": \"a-00017186\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gierig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vreselijk\": {\n    \"form\": \"vreselijk\",\n    \"cornetto_id\": \"r_a-16153\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"angstaanjagend\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"vreugdeloos\": {\n    \"form\": \"vreugdeloos\",\n    \"cornetto_id\": \"r_a-16324\",\n    \"cornetto_synset_id\": \"n_a-507607\",\n    \"wordnet_id\": \"a-01126841\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treurig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vriendelijk\": {\n    \"form\": \"vriendelijk\",\n    \"cornetto_id\": \"r_a-16154\",\n    \"cornetto_synset_id\": \"c_175\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aardig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vrij\": {\n    \"form\": \"vrij\",\n    \"cornetto_id\": \"r_a-16160\",\n    \"cornetto_synset_id\": \"n_a-533914\",\n    \"wordnet_id\": \"a-00287498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrijmoedig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"vrijblijvend\": {\n    \"form\": \"vrijblijvend\",\n    \"cornetto_id\": \"r_a-16162\",\n    \"cornetto_synset_id\": \"n_a-533876\",\n    \"wordnet_id\": \"a-00702444\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder verbintenis\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vrijgevochten\": {\n    \"form\": \"vrijgevochten\",\n    \"cornetto_id\": \"r_a-16164\",\n    \"cornetto_synset_id\": \"n_a-520781\",\n    \"wordnet_id\": \"a-00362269\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geëmancipeerd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vrijpostig\": {\n    \"form\": \"vrijpostig\",\n    \"cornetto_id\": \"r_a-16166\",\n    \"cornetto_synset_id\": \"d_a-9207\",\n    \"wordnet_id\": \"a-00155720\",\n    \"pos\": \"JJ\",\n    \"sense\": \"brutaal\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vrijwillig\": {\n    \"form\": \"vrijwillig\",\n    \"cornetto_id\": \"r_a-16167\",\n    \"cornetto_synset_id\": \"n_a-533923\",\n    \"wordnet_id\": \"a-02521183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uit vrije wil\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vrijzinnig\": {\n    \"form\": \"vrijzinnig\",\n    \"cornetto_id\": \"r_a-16168\",\n    \"cornetto_synset_id\": \"n_a-533926\",\n    \"wordnet_id\": \"a-00287275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"liberaal\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vroed\": {\n    \"form\": \"vroed\",\n    \"cornetto_id\": \"r_a-16169\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wijs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vroeg\": {\n    \"form\": \"vroeg\",\n    \"cornetto_id\": \"r_a-16170\",\n    \"cornetto_synset_id\": \"n_a-533928\",\n    \"wordnet_id\": \"a-00812952\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet laat\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vroeger\": {\n    \"form\": \"vroeger\",\n    \"cornetto_id\": \"r_a-16171\",\n    \"cornetto_synset_id\": \"n_a-522211\",\n    \"wordnet_id\": \"a-01729566\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vorig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vroegrijp\": {\n    \"form\": \"vroegrijp\",\n    \"cornetto_id\": \"r_a-16660\",\n    \"cornetto_synset_id\": \"n_a-533934\",\n    \"wordnet_id\": \"a-00203237\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroeg volwassen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vroegtijdig\": {\n    \"form\": \"vroegtijdig\",\n    \"cornetto_id\": \"r_a-16172\",\n    \"cornetto_synset_id\": \"n_a-530795\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vroeg\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vrolijk\": {\n    \"form\": \"vrolijk\",\n    \"cornetto_id\": \"r_a-16173\",\n    \"cornetto_synset_id\": \"d_a-9195\",\n    \"wordnet_id\": \"a-00363938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blij\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vrouwelijk\": {\n    \"form\": \"vrouwelijk\",\n    \"cornetto_id\": \"r_a-16177\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. Woordgeslacht\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vruchteloos\": {\n    \"form\": \"vruchteloos\",\n    \"cornetto_id\": \"r_a-16180\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vergeefs\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"vuil\": {\n    \"form\": \"vuil\",\n    \"cornetto_id\": \"r_a-16184\",\n    \"cornetto_synset_id\": \"n_a-505096\",\n    \"wordnet_id\": \"a-01582821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruto\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vuistdik\": {\n    \"form\": \"vuistdik\",\n    \"cornetto_id\": \"r_a-16327\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zo dik als een vuist\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vulgair\": {\n    \"form\": \"vulgair\",\n    \"cornetto_id\": \"r_a-16185\",\n    \"cornetto_synset_id\": \"n_a-534008\",\n    \"wordnet_id\": \"a-00425313\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ordinair\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vurig\": {\n    \"form\": \"vurig\",\n    \"cornetto_id\": \"r_a-16366\",\n    \"cornetto_synset_id\": \"n_a-534028\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. vuur\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vuurgevaarlijk\": {\n    \"form\": \"vuurgevaarlijk\",\n    \"cornetto_id\": \"r_a-16330\",\n    \"cornetto_synset_id\": \"n_a-534040\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"geneigd te schieten\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"waanwijs\": {\n    \"form\": \"waanwijs\",\n    \"cornetto_id\": \"r_a-15657\",\n    \"cornetto_synset_id\": \"n_a-532829\",\n    \"wordnet_id\": \"a-00156101\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pedant\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"waanzinnig\": {\n    \"form\": \"waanzinnig\",\n    \"cornetto_id\": \"r_a-15658\",\n    \"cornetto_synset_id\": \"n_a-516037\",\n    \"wordnet_id\": \"a-02075321\",\n    \"pos\": \"JJ\",\n    \"sense\": \"krankzinnig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"waar\": {\n    \"form\": \"waar\",\n    \"cornetto_id\": \"c_545608\",\n    \"cornetto_synset_id\": \"d_a-9251\",\n    \"wordnet_id\": \"a-02180277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"authentiek\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waard\": {\n    \"form\": \"waard\",\n    \"cornetto_id\": \"r_a-15661\",\n    \"cornetto_synset_id\": \"n_a-534079\",\n    \"wordnet_id\": \"a-02502016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als waarde hebbend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waardeloos\": {\n    \"form\": \"waardeloos\",\n    \"cornetto_id\": \"r_a-15662\",\n    \"cornetto_synset_id\": \"d_a-9605\",\n    \"wordnet_id\": \"a-02502163\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niets waard\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"waardevol\": {\n    \"form\": \"waardevol\",\n    \"cornetto_id\": \"r_a-15663\",\n    \"cornetto_synset_id\": \"d_a-9606\",\n    \"wordnet_id\": \"a-00933154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veel waard\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waardevrij\": {\n    \"form\": \"waardevrij\",\n    \"cornetto_id\": \"r_a-15805\",\n    \"cornetto_synset_id\": \"n_a-534091\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vrij van waardeoordelen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"waardig\": {\n    \"form\": \"waardig\",\n    \"cornetto_id\": \"r_a-15665\",\n    \"cornetto_synset_id\": \"n_a-534093\",\n    \"wordnet_id\": \"a-02586206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"passend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waargebeurd\": {\n    \"form\": \"waargebeurd\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waarheidsgetrouw\": {\n    \"form\": \"waarheidsgetrouw\",\n    \"cornetto_id\": \"r_a-15806\",\n    \"cornetto_synset_id\": \"n_a-534096\",\n    \"wordnet_id\": \"a-02460502\",\n    \"pos\": \"JJ\",\n    \"sense\": \"werkelijkheidsgetrouw\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waarneembaar\": {\n    \"form\": \"waarneembaar\",\n    \"cornetto_id\": \"r_a-15807\",\n    \"cornetto_synset_id\": \"n_a-534100\",\n    \"wordnet_id\": \"a-01287486\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waar te nemen\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"waarschijnlijk\": {\n    \"form\": \"waarschijnlijk\",\n    \"cornetto_id\": \"r_a-15666\",\n    \"cornetto_synset_id\": \"d_a-9607\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vermoedelijk waar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wakker\": {\n    \"form\": \"wakker\",\n    \"cornetto_id\": \"r_a-15882\",\n    \"cornetto_synset_id\": \"n_a-534143\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uitgeslapen\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"walgelijk\": {\n    \"form\": \"walgelijk\",\n    \"cornetto_id\": \"r_a-15668\",\n    \"cornetto_synset_id\": \"n_a-534469\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weerzinwekkend\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wanhopig\": {\n    \"form\": \"wanhopig\",\n    \"cornetto_id\": \"r_a-15670\",\n    \"cornetto_synset_id\": \"n_a-534204\",\n    \"wordnet_id\": \"a-00085870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vertwijfeld\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wankel\": {\n    \"form\": \"wankel\",\n    \"cornetto_id\": \"r_a-15671\",\n    \"cornetto_synset_id\": \"n_a-534205\",\n    \"wordnet_id\": \"a-00875962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"labiel\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wantrouwend\": {\n    \"form\": \"wantrouwend\",\n    \"cornetto_id\": \"r_a-15809\",\n    \"cornetto_synset_id\": \"n_a-534218\",\n    \"wordnet_id\": \"a-00325619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"argwanend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wantrouwig\": {\n    \"form\": \"wantrouwig\",\n    \"cornetto_id\": \"r_a-15674\",\n    \"cornetto_synset_id\": \"n_a-534218\",\n    \"wordnet_id\": \"a-00325619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achterdochtig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"warm\": {\n    \"form\": \"warm\",\n    \"cornetto_id\": \"r_a-15676\",\n    \"cornetto_synset_id\": \"d_a-9326\",\n    \"wordnet_id\": \"a-01075178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hartelijk\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"warmbloedig\": {\n    \"form\": \"warmbloedig\",\n    \"cornetto_id\": \"r_a-15677\",\n    \"cornetto_synset_id\": \"n_a-534243\",\n    \"wordnet_id\": \"a-02532508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"temperamentvol\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"warrig\": {\n    \"form\": \"warrig\",\n    \"cornetto_id\": \"r_a-15678\",\n    \"cornetto_synset_id\": \"n_a-534209\",\n    \"wordnet_id\": \"a-01204443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verward\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"waterdicht\": {\n    \"form\": \"waterdicht\",\n    \"cornetto_id\": \"r_a-15680\",\n    \"cornetto_synset_id\": \"n_a-534310\",\n    \"wordnet_id\": \"a-01398941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waterproof\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"waterig\": {\n    \"form\": \"waterig\",\n    \"cornetto_id\": \"r_a-15681\",\n    \"cornetto_synset_id\": \"d_a-9610\",\n    \"wordnet_id\": \"a-00252826\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waterachtig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"waterrijk\": {\n    \"form\": \"waterrijk\",\n    \"cornetto_id\": \"r_a-15811\",\n    \"cornetto_synset_id\": \"n_a-534352\",\n    \"wordnet_id\": \"a-00756459\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rijk aan water\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wauw\": {\n    \"form\": \"wauw\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wazig\": {\n    \"form\": \"wazig\",\n    \"cornetto_id\": \"r_a-15683\",\n    \"cornetto_synset_id\": \"d_a-9560\",\n    \"wordnet_id\": \"a-00782957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wederzijds\": {\n    \"form\": \"wederzijds\",\n    \"cornetto_id\": \"r_a-15687\",\n    \"cornetto_synset_id\": \"n_a-534406\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wederkerig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wee\": {\n    \"form\": \"wee\",\n    \"cornetto_id\": \"r_a-15688\",\n    \"cornetto_synset_id\": \"n_a-534414\",\n    \"wordnet_id\": \"a-02325097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misselijk (makend)\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weelderig\": {\n    \"form\": \"weelderig\",\n    \"cornetto_id\": \"d_a-332344\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weemoedig\": {\n    \"form\": \"weemoedig\",\n    \"cornetto_id\": \"r_a-15692\",\n    \"cornetto_synset_id\": \"n_a-534446\",\n    \"wordnet_id\": \"a-01126841\",\n    \"pos\": \"JJ\",\n    \"sense\": \"licht melancholiek\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weerbarstig\": {\n    \"form\": \"weerbarstig\",\n    \"cornetto_id\": \"r_a-15695\",\n    \"cornetto_synset_id\": \"n_a-520774\",\n    \"wordnet_id\": \"a-01990653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stug\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weergaloos\": {\n    \"form\": \"weergaloos\",\n    \"cornetto_id\": \"r_a-15696\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongeëvenaard\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"weerlegbaar\": {\n    \"form\": \"weerlegbaar\",\n    \"cornetto_id\": \"r_a-15856\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te weerleggen\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weerloos\": {\n    \"form\": \"weerloos\",\n    \"cornetto_id\": \"r_a-15697\",\n    \"cornetto_synset_id\": \"n_a-534459\",\n    \"wordnet_id\": \"a-00143376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"machteloos\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"weerzinwekkend\": {\n    \"form\": \"weerzinwekkend\",\n    \"cornetto_id\": \"r_a-15699\",\n    \"cornetto_synset_id\": \"n_a-534469\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"walgelijk\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"weetgierig\": {\n    \"form\": \"weetgierig\",\n    \"cornetto_id\": \"r_a-15700\",\n    \"cornetto_synset_id\": \"n_a-516904\",\n    \"wordnet_id\": \"a-00878829\",\n    \"pos\": \"JJ\",\n    \"sense\": \"leergierig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weigerachtig\": {\n    \"form\": \"weigerachtig\",\n    \"cornetto_id\": \"r_a-15858\",\n    \"cornetto_synset_id\": \"n_a-534464\",\n    \"wordnet_id\": \"a-00021592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onwillig\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wekenlang\": {\n    \"form\": \"wekenlang\",\n    \"cornetto_id\": \"r_a-15815\",\n    \"cornetto_synset_id\": \"n_a-534535\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weken durend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"welbekend\": {\n    \"form\": \"welbekend\",\n    \"cornetto_id\": \"r_a-15817\",\n    \"cornetto_synset_id\": \"n_a-503455\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed bekend\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"welbewust\": {\n    \"form\": \"welbewust\",\n    \"cornetto_id\": \"r_a-15818\",\n    \"cornetto_synset_id\": \"n_a-503989\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel bewust\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"weldenkend\": {\n    \"form\": \"weldenkend\",\n    \"cornetto_id\": \"r_a-15819\",\n    \"cornetto_synset_id\": \"n_a-532723\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"redelijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"weldoordacht\": {\n    \"form\": \"weldoordacht\",\n    \"cornetto_id\": \"r_a-15860\",\n    \"cornetto_synset_id\": \"n_a-507294\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"goed overdacht\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weledelzeergeleerd\": {\n    \"form\": \"weledelzeergeleerd\",\n    \"cornetto_id\": \"r_a-15710\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"---\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"welgemeend\": {\n    \"form\": \"welgemeend\",\n    \"cornetto_id\": \"r_a-15820\",\n    \"cornetto_synset_id\": \"n_a-522023\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"oprecht gemeend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"welgeschapen\": {\n    \"form\": \"welgeschapen\",\n    \"cornetto_id\": \"r_a-15713\",\n    \"cornetto_synset_id\": \"n_a-534565\",\n    \"wordnet_id\": \"a-01146012\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gezond van lijf en leden\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"welgesteld\": {\n    \"form\": \"welgesteld\",\n    \"cornetto_id\": \"r_a-15714\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bemiddeld\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"welkom\": {\n    \"form\": \"welkom\",\n    \"cornetto_id\": \"r_a-15716\",\n    \"cornetto_synset_id\": \"n_a-534571\",\n    \"wordnet_id\": \"a-02539968\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blij ontvangen\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"welletjes\": {\n    \"form\": \"welletjes\",\n    \"cornetto_id\": \"r_a-15863\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"genoeg\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wellevend\": {\n    \"form\": \"wellevend\",\n    \"cornetto_id\": \"r_a-15717\",\n    \"cornetto_synset_id\": \"n_a-503527\",\n    \"wordnet_id\": \"a-00641343\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beschaafd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"weloverwogen\": {\n    \"form\": \"weloverwogen\",\n    \"cornetto_id\": \"r_a-15824\",\n    \"cornetto_synset_id\": \"n_a-507294\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weldoordacht\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"welriekend\": {\n    \"form\": \"welriekend\",\n    \"cornetto_id\": \"r_a-15825\",\n    \"cornetto_synset_id\": \"n_a-510721\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lekker ruikend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"welsprekend\": {\n    \"form\": \"welsprekend\",\n    \"cornetto_id\": \"r_a-17362\",\n    \"cornetto_synset_id\": \"n_a-534588\",\n    \"wordnet_id\": \"a-00150505\",\n    \"pos\": \"JJ\",\n    \"sense\": \"welbespraakt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"welvarend\": {\n    \"form\": \"welvarend\",\n    \"cornetto_id\": \"r_a-15719\",\n    \"cornetto_synset_id\": \"n_a-534597\",\n    \"wordnet_id\": \"a-02022167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bloeiend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"welvoeglijk\": {\n    \"form\": \"welvoeglijk\",\n    \"cornetto_id\": \"r_a-15720\",\n    \"cornetto_synset_id\": \"n_a-510405\",\n    \"wordnet_id\": \"a-01878870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fatsoenlijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wenselijk\": {\n    \"form\": \"wenselijk\",\n    \"cornetto_id\": \"r_a-15722\",\n    \"cornetto_synset_id\": \"n_a-524889\",\n    \"wordnet_id\": \"a-00067038\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewenst\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wereldberoemd\": {\n    \"form\": \"wereldberoemd\",\n    \"cornetto_id\": \"r_a-15827\",\n    \"cornetto_synset_id\": \"n_a-534616\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wereldvermaard\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wereldomvattend\": {\n    \"form\": \"wereldomvattend\",\n    \"cornetto_id\": \"r_a-15828\",\n    \"cornetto_synset_id\": \"n_a-534652\",\n    \"wordnet_id\": \"a-00527188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wereldwijd\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"werelds\": {\n    \"form\": \"werelds\",\n    \"cornetto_id\": \"r_a-15725\",\n    \"cornetto_synset_id\": \"n_a-501400\",\n    \"wordnet_id\": \"a-00124918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aards\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wereldschokkend\": {\n    \"form\": \"wereldschokkend\",\n    \"cornetto_id\": \"r_a-15866\",\n    \"cornetto_synset_id\": \"n_a-534644\",\n    \"wordnet_id\": \"a-02162458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wereldwijd beroering veroorzakend\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"wereldvermaard\": {\n    \"form\": \"wereldvermaard\",\n    \"cornetto_id\": \"r_a-15829\",\n    \"cornetto_synset_id\": \"n_a-534616\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wereldberoemd\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wereldwijd\": {\n    \"form\": \"wereldwijd\",\n    \"cornetto_id\": \"r_a-15830\",\n    \"cornetto_synset_id\": \"n_a-534652\",\n    \"wordnet_id\": \"a-00527188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mondiaal\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"werkbaar\": {\n    \"form\": \"werkbaar\",\n    \"cornetto_id\": \"r_a-15831\",\n    \"cornetto_synset_id\": \"d_a-9205\",\n    \"wordnet_id\": \"a-01822563\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruikbaar\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"0.7\"\n  },\n  \"werkelijk\": {\n    \"form\": \"werkelijk\",\n    \"cornetto_id\": \"r_a-15727\",\n    \"cornetto_synset_id\": \"d_a-9613\",\n    \"wordnet_id\": \"a-01932973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"echt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.7\",\n    \"confidence\": \"1.0\"\n  },\n  \"werkloos\": {\n    \"form\": \"werkloos\",\n    \"cornetto_id\": \"r_a-15729\",\n    \"cornetto_synset_id\": \"n_a-534691\",\n    \"wordnet_id\": \"a-00864693\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"werkzaam\": {\n    \"form\": \"werkzaam\",\n    \"cornetto_id\": \"r_a-15733\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"werkend\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wervelend\": {\n    \"form\": \"wervelend\",\n    \"cornetto_id\": \"r_a-15834\",\n    \"cornetto_synset_id\": \"n_a-534732\",\n    \"wordnet_id\": \"a-00921369\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bruisend\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"westers\": {\n    \"form\": \"westers\",\n    \"cornetto_id\": \"r_a-15735\",\n    \"cornetto_synset_id\": \"d_a-9615\",\n    \"wordnet_id\": \"a-00825089\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) v.d. eerste wereld\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wetenschappelijk\": {\n    \"form\": \"wetenschappelijk\",\n    \"cornetto_id\": \"r_a-15736\",\n    \"cornetto_synset_id\": \"n_a-531845\",\n    \"wordnet_id\": \"a-02599939\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. wetenschap\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wezenlijk\": {\n    \"form\": \"wezenlijk\",\n    \"cornetto_id\": \"r_a-15739\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"essentieel\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wezenloos\": {\n    \"form\": \"wezenloos\",\n    \"cornetto_id\": \"r_a-15740\",\n    \"cornetto_synset_id\": \"n_a-532351\",\n    \"wordnet_id\": \"a-00165171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suf\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wijd\": {\n    \"form\": \"wijd\",\n    \"cornetto_id\": \"r_a-15741\",\n    \"cornetto_synset_id\": \"c_291\",\n    \"wordnet_id\": \"a-02560548\",\n    \"pos\": \"JJ\",\n    \"sense\": \"breed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wijlen\": {\n    \"form\": \"wijlen\",\n    \"cornetto_id\": \"r_a-15744\",\n    \"cornetto_synset_id\": \"d_a-9236\",\n    \"wordnet_id\": \"a-00095280\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overleden\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wijs\": {\n    \"form\": \"wijs\",\n    \"cornetto_id\": \"r_a-15746\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gaaf\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"wijsgerig\": {\n    \"form\": \"wijsgerig\",\n    \"cornetto_id\": \"r_a-15747\",\n    \"cornetto_synset_id\": \"n_a-534873\",\n    \"wordnet_id\": \"a-02858231\",\n    \"pos\": \"JJ\",\n    \"sense\": \"filosofisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wild\": {\n    \"form\": \"wild\",\n    \"cornetto_id\": \"r_a-15752\",\n    \"cornetto_synset_id\": \"n_a-509996\",\n    \"wordnet_id\": \"a-01464433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gek (op)\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"willekeurig\": {\n    \"form\": \"willekeurig\",\n    \"cornetto_id\": \"r_a-15753\",\n    \"cornetto_synset_id\": \"n_a-534901\",\n    \"wordnet_id\": \"a-00718924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"toevallig\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"willoos\": {\n    \"form\": \"willoos\",\n    \"cornetto_id\": \"r_a-15756\",\n    \"cornetto_synset_id\": \"n_a-527772\",\n    \"wordnet_id\": \"a-00040058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder wil\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"wilskrachtig\": {\n    \"form\": \"wilskrachtig\",\n    \"cornetto_id\": \"r_a-15870\",\n    \"cornetto_synset_id\": \"n_a-534907\",\n    \"wordnet_id\": \"a-01736122\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een krachtige wil\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"winderig\": {\n    \"form\": \"winderig\",\n    \"cornetto_id\": \"r_a-15842\",\n    \"cornetto_synset_id\": \"n_a-534914\",\n    \"wordnet_id\": \"a-00305225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waaierig\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"windstil\": {\n    \"form\": \"windstil\",\n    \"cornetto_id\": \"r_a-15757\",\n    \"cornetto_synset_id\": \"n_a-534928\",\n    \"wordnet_id\": \"a-00303579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder wind\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"winnaar\": {\n    \"form\": \"winnaar\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"winstgevend\": {\n    \"form\": \"winstgevend\",\n    \"cornetto_id\": \"r_a-15843\",\n    \"cornetto_synset_id\": \"d_a-9502\",\n    \"wordnet_id\": \"a-02332604\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lucratief\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wis\": {\n    \"form\": \"wis\",\n    \"cornetto_id\": \"r_a-15760\",\n    \"cornetto_synset_id\": \"d_a-9623\",\n    \"wordnet_id\": \"a-01918660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewis\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wiskundig\": {\n    \"form\": \"wiskundig\",\n    \"cornetto_id\": \"r_a-15761\",\n    \"cornetto_synset_id\": \"n_a-535010\",\n    \"wordnet_id\": \"a-00915141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mathematisch\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wispelturig\": {\n    \"form\": \"wispelturig\",\n    \"cornetto_id\": \"r_a-15762\",\n    \"cornetto_synset_id\": \"n_a-511490\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grillig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wisselvallig\": {\n    \"form\": \"wisselvallig\",\n    \"cornetto_id\": \"r_a-15763\",\n    \"cornetto_synset_id\": \"n_a-535033\",\n    \"wordnet_id\": \"a-00583990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"veranderlijk\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wit\": {\n    \"form\": \"wit\",\n    \"cornetto_id\": \"r_a-15766\",\n    \"cornetto_synset_id\": \"n_a-535042\",\n    \"wordnet_id\": \"a-02499148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"legaal\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"woedend\": {\n    \"form\": \"woedend\",\n    \"cornetto_id\": \"r_a-15768\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"razend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"woelig\": {\n    \"form\": \"woelig\",\n    \"cornetto_id\": \"r_a-15769\",\n    \"cornetto_synset_id\": \"n_a-526012\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onrustig\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wolkeloos\": {\n    \"form\": \"wolkeloos\",\n    \"cornetto_id\": \"r_a-15889\",\n    \"cornetto_synset_id\": \"n_a-535088\",\n    \"wordnet_id\": \"a-00460946\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wolkenloos\": {\n    \"form\": \"wolkenloos\",\n    \"cornetto_id\": \"r_a-15873\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onbewolkt\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wollig\": {\n    \"form\": \"wollig\",\n    \"cornetto_id\": \"r_a-15890\",\n    \"cornetto_synset_id\": \"n_a-503224\",\n    \"wordnet_id\": \"a-00461971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verhullend\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wonder\": {\n    \"form\": \"wonder\",\n    \"cornetto_id\": \"r_a-15773\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vreemd\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"wonderbaar\": {\n    \"form\": \"wonderbaar\",\n    \"cornetto_id\": \"d_a-337995\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"wonderbaarlijk\": {\n    \"form\": \"wonderbaarlijk\",\n    \"cornetto_id\": \"r_a-15774\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verbazend\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"1.0\"\n  },\n  \"wonderlijk\": {\n    \"form\": \"wonderlijk\",\n    \"cornetto_id\": \"r_a-15775\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"merkwaardig\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"wonderschoon\": {\n    \"form\": \"wonderschoon\",\n    \"cornetto_id\": \"r_a-15847\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prachtig mooi\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"woonachtig\": {\n    \"form\": \"woonachtig\",\n    \"cornetto_id\": \"r_a-15776\",\n    \"cornetto_synset_id\": \"n_a-535124\",\n    \"wordnet_id\": \"a-00806243\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wonend\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"woordblind\": {\n    \"form\": \"woordblind\",\n    \"cornetto_id\": \"r_a-15777\",\n    \"cornetto_synset_id\": \"n_a-535137\",\n    \"wordnet_id\": \"a-01275195\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dyslectisch\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"wormstekig\": {\n    \"form\": \"wormstekig\",\n    \"cornetto_id\": \"r_a-15779\",\n    \"cornetto_synset_id\": \"n_a-535158\",\n    \"wordnet_id\": \"a-01069823\",\n    \"pos\": \"JJ\",\n    \"sense\": \"door wormen aangevreten\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"would-be\": {\n    \"form\": \"would-be\",\n    \"cornetto_id\": \"r_a-15780\",\n    \"cornetto_synset_id\": \"n_a-535848\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zogenaamd\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wraakzuchtig\": {\n    \"form\": \"wraakzuchtig\",\n    \"cornetto_id\": \"r_a-15848\",\n    \"cornetto_synset_id\": \"n_a-535178\",\n    \"wordnet_id\": \"a-00923790\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rancuneus\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"wrang\": {\n    \"form\": \"wrang\",\n    \"cornetto_id\": \"r_a-15782\",\n    \"cornetto_synset_id\": \"n_a-535182\",\n    \"wordnet_id\": \"a-00298767\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zuur\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"wreed\": {\n    \"form\": \"wreed\",\n    \"cornetto_id\": \"r_a-15783\",\n    \"cornetto_synset_id\": \"d_a-9619\",\n    \"wordnet_id\": \"a-00412788\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hardvochtig\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"wreedaardig\": {\n    \"form\": \"wreedaardig\",\n    \"cornetto_id\": \"r_a-15874\",\n    \"cornetto_synset_id\": \"d_a-9619\",\n    \"wordnet_id\": \"a-00412788\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wreed\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"wulps\": {\n    \"form\": \"wulps\",\n    \"cornetto_id\": \"r_a-15787\",\n    \"cornetto_synset_id\": \"n_a-534577\",\n    \"wordnet_id\": \"a-00033077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wellustig\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zacht\": {\n    \"form\": \"zacht\",\n    \"cornetto_id\": \"r_a-16381\",\n    \"cornetto_synset_id\": \"n_a-535265\",\n    \"wordnet_id\": \"a-01509066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(mbt. aard) vriendelijk\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zachtaardig\": {\n    \"form\": \"zachtaardig\",\n    \"cornetto_id\": \"r_a-16382\",\n    \"cornetto_synset_id\": \"n_a-535265\",\n    \"wordnet_id\": \"a-01509066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vriendelijk\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zakelijk\": {\n    \"form\": \"zakelijk\",\n    \"cornetto_id\": \"r_a-16386\",\n    \"cornetto_synset_id\": \"n_a-520216\",\n    \"wordnet_id\": \"a-01943406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nuchter en praktisch\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zalig\": {\n    \"form\": \"zalig\",\n    \"cornetto_id\": \"r_a-16388\",\n    \"cornetto_synset_id\": \"c_570\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(mbt. geloof) gered/heilig\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"zanderig\": {\n    \"form\": \"zanderig\",\n    \"cornetto_id\": \"r_a-16487\",\n    \"cornetto_synset_id\": \"n_a-535317\",\n    \"wordnet_id\": \"a-00142040\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zandachtig\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zat\": {\n    \"form\": \"zat\",\n    \"cornetto_id\": \"r_a-16392\",\n    \"cornetto_synset_id\": \"d_a-9244\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dronken\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zedelijk\": {\n    \"form\": \"zedelijk\",\n    \"cornetto_id\": \"r_a-16393\",\n    \"cornetto_synset_id\": \"n_a-535368\",\n    \"wordnet_id\": \"a-00905386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fatsoenlijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"zedenkundig\": {\n    \"form\": \"zedenkundig\",\n    \"cornetto_id\": \"d_a-342716\",\n    \"cornetto_synset_id\": \"n_a-535368\",\n    \"wordnet_id\": \"a-00905386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zeer\": {\n    \"form\": \"zeer\",\n    \"cornetto_id\": \"r_a-16396\",\n    \"cornetto_synset_id\": \"n_a-523334\",\n    \"wordnet_id\": \"a-01711071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pijnlijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"zeeziek\": {\n    \"form\": \"zeeziek\",\n    \"cornetto_id\": \"r_a-16398\",\n    \"cornetto_synset_id\": \"n_a-535448\",\n    \"wordnet_id\": \"a-02542675\",\n    \"pos\": \"JJ\",\n    \"sense\": \"misselijk door schommelen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zeker\": {\n    \"form\": \"zeker\",\n    \"cornetto_id\": \"r_a-16399\",\n    \"cornetto_synset_id\": \"d_a-9623\",\n    \"wordnet_id\": \"a-01918660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"gewis\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zeldzaam\": {\n    \"form\": \"zeldzaam\",\n    \"cornetto_id\": \"r_a-16400\",\n    \"cornetto_synset_id\": \"d_a-9624\",\n    \"wordnet_id\": \"a-00017024\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat niet veel voorkomt\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"zelfbewust\": {\n    \"form\": \"zelfbewust\",\n    \"cornetto_id\": \"r_a-16401\",\n    \"cornetto_synset_id\": \"n_a-535536\",\n    \"wordnet_id\": \"a-00339742\",\n    \"pos\": \"JJ\",\n    \"sense\": \"je eigenwaarde beseffend\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zelfgebakken\": {\n    \"form\": \"zelfgebakken\",\n    \"cornetto_id\": \"r_a-16492\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat je zelf gebakken hebt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zelfgekozen\": {\n    \"form\": \"zelfgekozen\",\n    \"cornetto_id\": \"r_a-16493\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarvoor je zelf gekozen hebt\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zelfgemaakt\": {\n    \"form\": \"zelfgemaakt\",\n    \"cornetto_id\": \"r_a-16494\",\n    \"cornetto_synset_id\": \"n_a-535500\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wat je zelf gemaakt hebt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zelfstandig\": {\n    \"form\": \"zelfstandig\",\n    \"cornetto_id\": \"r_a-16403\",\n    \"cornetto_synset_id\": \"n_a-535528\",\n    \"wordnet_id\": \"a-00728225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"onafhankelijk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zelfverzekerd\": {\n    \"form\": \"zelfverzekerd\",\n    \"cornetto_id\": \"r_a-16404\",\n    \"cornetto_synset_id\": \"n_a-535536\",\n    \"wordnet_id\": \"a-00339742\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol zelfvertrouwen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zelfvoldaan\": {\n    \"form\": \"zelfvoldaan\",\n    \"cornetto_id\": \"r_a-16540\",\n    \"cornetto_synset_id\": \"n_a-532829\",\n    \"wordnet_id\": \"a-00156101\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zelfingenomen\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zenuwachtig\": {\n    \"form\": \"zenuwachtig\",\n    \"cornetto_id\": \"r_a-16406\",\n    \"cornetto_synset_id\": \"n_a-535556\",\n    \"wordnet_id\": \"a-02406370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nerveus\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zenuwslopend\": {\n    \"form\": \"zenuwslopend\",\n    \"cornetto_id\": \"r_a-16407\",\n    \"cornetto_synset_id\": \"n_a-535561\",\n    \"wordnet_id\": \"a-00090408\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slecht voor de zenuwen\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"zenuwziek\": {\n    \"form\": \"zenuwziek\",\n    \"cornetto_id\": \"r_a-16408\",\n    \"cornetto_synset_id\": \"n_a-509878\",\n    \"wordnet_id\": \"a-01177899\",\n    \"pos\": \"JJ\",\n    \"sense\": \"heel zenuwachtig\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zeurderig\": {\n    \"form\": \"zeurderig\",\n    \"cornetto_id\": \"r_a-16497\",\n    \"cornetto_synset_id\": \"n_a-535615\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"erg vervelend\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zever\": {\n    \"form\": \"zever\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"zeveren\": {\n    \"form\": \"zeveren\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"zichtbaar\": {\n    \"form\": \"zichtbaar\",\n    \"cornetto_id\": \"r_a-16409\",\n    \"cornetto_synset_id\": \"d_a-9626\",\n    \"wordnet_id\": \"a-01618376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"waarneembaar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ziek\": {\n    \"form\": \"ziek\",\n    \"cornetto_id\": \"r_a-17353\",\n    \"cornetto_synset_id\": \"d_a-9342\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"amoreel\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ziekelijk\": {\n    \"form\": \"ziekelijk\",\n    \"cornetto_id\": \"r_a-17354\",\n    \"cornetto_synset_id\": \"n_a-535644\",\n    \"wordnet_id\": \"a-01176246\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongezond van geest\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"1.0\"\n  },\n  \"zielig\": {\n    \"form\": \"zielig\",\n    \"cornetto_id\": \"r_a-16413\",\n    \"cornetto_synset_id\": \"n_a-535670\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"medelijden opwekkend\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"1.0\"\n  },\n  \"zielloos\": {\n    \"form\": \"zielloos\",\n    \"cornetto_id\": \"r_a-16499\",\n    \"cornetto_synset_id\": \"d_a-9236\",\n    \"wordnet_id\": \"a-00095280\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder ziel\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zijden\": {\n    \"form\": \"zijden\",\n    \"cornetto_id\": \"r_a-16500\",\n    \"cornetto_synset_id\": \"n_a-535700\",\n    \"wordnet_id\": \"a-00282675\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(als) van zijde\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zilt\": {\n    \"form\": \"zilt\",\n    \"cornetto_id\": \"r_a-16418\",\n    \"cornetto_synset_id\": \"d_a-9631\",\n    \"wordnet_id\": \"a-01073311\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(mbt. zeewater) zout\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zilveren\": {\n    \"form\": \"zilveren\",\n    \"cornetto_id\": \"r_a-16417\",\n    \"cornetto_synset_id\": \"n_a-535741\",\n    \"wordnet_id\": \"a-00301032\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van zilver\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zinloos\": {\n    \"form\": \"zinloos\",\n    \"cornetto_id\": \"r_a-16421\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nutteloos\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"1.0\"\n  },\n  \"zinnelijk\": {\n    \"form\": \"zinnelijk\",\n    \"cornetto_id\": \"r_a-16550\",\n    \"cornetto_synset_id\": \"n_a-535782\",\n    \"wordnet_id\": \"a-00070427\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. de zinnen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.7\"\n  },\n  \"zinnig\": {\n    \"form\": \"zinnig\",\n    \"cornetto_id\": \"r_a-16422\",\n    \"cornetto_synset_id\": \"c_667\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"verstandig\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zinvol\": {\n    \"form\": \"zinvol\",\n    \"cornetto_id\": \"r_a-16424\",\n    \"cornetto_synset_id\": \"n_a-535798\",\n    \"wordnet_id\": \"a-00067038\",\n    \"pos\": \"JJ\",\n    \"sense\": \"nuttig\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.7\"\n  },\n  \"zionistisch\": {\n    \"form\": \"zionistisch\",\n    \"cornetto_id\": \"r_a-16502\",\n    \"cornetto_synset_id\": \"n_a-535799\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. het zionisme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zoel\": {\n    \"form\": \"zoel\",\n    \"cornetto_id\": \"r_a-16552\",\n    \"cornetto_synset_id\": \"n_a-535263\",\n    \"wordnet_id\": \"a-00438332\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aangenaam warm\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zoet\": {\n    \"form\": \"zoet\",\n    \"cornetto_id\": \"r_a-16427\",\n    \"cornetto_synset_id\": \"n_a-510893\",\n    \"wordnet_id\": \"a-01612053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"braaf\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zoetgevooisd\": {\n    \"form\": \"zoetgevooisd\",\n    \"cornetto_id\": \"r_a-16554\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een lieflijke stem\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zoetsappig\": {\n    \"form\": \"zoetsappig\",\n    \"cornetto_id\": \"r_a-16428\",\n    \"cornetto_synset_id\": \"n_a-535834\",\n    \"wordnet_id\": \"a-01130614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"te zacht en vriendelijk\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zoetzuur\": {\n    \"form\": \"zoetzuur\",\n    \"cornetto_id\": \"r_a-16431\",\n    \"cornetto_synset_id\": \"n_a-535845\",\n    \"wordnet_id\": \"a-01073094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in azijn en suiker\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zogeheten\": {\n    \"form\": \"zogeheten\",\n    \"cornetto_id\": \"r_a-16504\",\n    \"cornetto_synset_id\": \"n_a-535847\",\n    \"wordnet_id\": \"a-01916555\",\n    \"pos\": \"JJ\",\n    \"sense\": \"die naam dragend\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.9\"\n  },\n  \"zogenaamd\": {\n    \"form\": \"zogenaamd\",\n    \"cornetto_id\": \"r_a-16433\",\n    \"cornetto_synset_id\": \"n_a-535848\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"quasi\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"0.8\",\n    \"confidence\": \"1.0\"\n  },\n  \"zogenoemd\": {\n    \"form\": \"zogenoemd\",\n    \"cornetto_id\": \"r_a-16505\",\n    \"cornetto_synset_id\": \"n_a-535848\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zogenaamd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"0.9\",\n    \"confidence\": \"0.9\"\n  },\n  \"zomers\": {\n    \"form\": \"zomers\",\n    \"cornetto_id\": \"r_a-16434\",\n    \"cornetto_synset_id\": \"n_a-535874\",\n    \"wordnet_id\": \"a-01254784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"horend bij de zomer\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zonaal\": {\n    \"form\": \"zonaal\",\n    \"cornetto_id\": \"r_a-16435\",\n    \"cornetto_synset_id\": \"n_a-535882\",\n    \"wordnet_id\": \"a-02589913\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. een zone\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zondags\": {\n    \"form\": \"zondags\",\n    \"cornetto_id\": \"r_a-16436\",\n    \"cornetto_synset_id\": \"n_a-535890\",\n    \"wordnet_id\": \"a-00228485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"op zondag\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zonderling\": {\n    \"form\": \"zonderling\",\n    \"cornetto_id\": \"r_a-16507\",\n    \"cornetto_synset_id\": \"n_a-535905\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vreemd\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"zondig\": {\n    \"form\": \"zondig\",\n    \"cornetto_id\": \"r_a-16438\",\n    \"cornetto_synset_id\": \"n_a-535907\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mbt. zonden\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zonneklaar\": {\n    \"form\": \"zonneklaar\",\n    \"cornetto_id\": \"r_a-16439\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overduidelijk\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.4\",\n    \"confidence\": \"0.7\"\n  },\n  \"zonneslag\": {\n    \"form\": \"zonneslag\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"-0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"zonnig\": {\n    \"form\": \"zonnig\",\n    \"cornetto_id\": \"r_a-16440\",\n    \"cornetto_synset_id\": \"n_a-535928\",\n    \"wordnet_id\": \"a-01812237\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel zon\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zorgelijk\": {\n    \"form\": \"zorgelijk\",\n    \"cornetto_id\": \"r_a-16441\",\n    \"cornetto_synset_id\": \"n_a-535949\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgwekkend\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"zorgeloos\": {\n    \"form\": \"zorgeloos\",\n    \"cornetto_id\": \"r_a-16444\",\n    \"cornetto_synset_id\": \"n_a-535941\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder zorgen\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zorgvuldig\": {\n    \"form\": \"zorgvuldig\",\n    \"cornetto_id\": \"r_a-16445\",\n    \"cornetto_synset_id\": \"n_a-535946\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met veel aandacht\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zorgwekkend\": {\n    \"form\": \"zorgwekkend\",\n    \"cornetto_id\": \"r_a-16446\",\n    \"cornetto_synset_id\": \"n_a-535949\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zorgelijk\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zorgzaam\": {\n    \"form\": \"zorgzaam\",\n    \"cornetto_id\": \"r_a-16447\",\n    \"cornetto_synset_id\": \"n_a-535950\",\n    \"wordnet_id\": \"a-00164681\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vol zorg\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zout\": {\n    \"form\": \"zout\",\n    \"cornetto_id\": \"r_a-16448\",\n    \"cornetto_synset_id\": \"d_a-9631\",\n    \"wordnet_id\": \"a-01073311\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met zout erin of erop\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zouteloos\": {\n    \"form\": \"zouteloos\",\n    \"cornetto_id\": \"r_a-16450\",\n    \"cornetto_synset_id\": \"n_a-509107\",\n    \"wordnet_id\": \"a-01268937\",\n    \"pos\": \"JJ\",\n    \"sense\": \"flauw\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zoutloos\": {\n    \"form\": \"zoutloos\",\n    \"cornetto_id\": \"r_a-16451\",\n    \"cornetto_synset_id\": \"n_a-521211\",\n    \"wordnet_id\": \"a-02400125\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zonder zout\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zootje\": {\n    \"form\": \"zootje\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"zoölogisch\": {\n    \"form\": \"zoölogisch\",\n    \"cornetto_id\": \"r_a-16555\",\n    \"cornetto_synset_id\": \"n_a-535821\",\n    \"wordnet_id\": \"a-02891444\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dierkundig\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zuiver\": {\n    \"form\": \"zuiver\",\n    \"cornetto_id\": \"r_a-16525\",\n    \"cornetto_synset_id\": \"n_a-506738\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zedelijk rein\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zurig\": {\n    \"form\": \"zurig\",\n    \"cornetto_id\": \"r_a-16557\",\n    \"cornetto_synset_id\": \"n_a-525923\",\n    \"wordnet_id\": \"a-02369179\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wrang\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zusterlijk\": {\n    \"form\": \"zusterlijk\",\n    \"cornetto_id\": \"r_a-16558\",\n    \"cornetto_synset_id\": \"n_a-536034\",\n    \"wordnet_id\": \"a-00291665\",\n    \"pos\": \"JJ\",\n    \"sense\": \"als (van) een zuster\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"zuur\": {\n    \"form\": \"zuur\",\n    \"cornetto_id\": \"r_a-16456\",\n    \"cornetto_synset_id\": \"d_n-38215\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"niet zoet\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zuurstofarm\": {\n    \"form\": \"zuurstofarm\",\n    \"cornetto_id\": \"r_a-16513\",\n    \"cornetto_synset_id\": \"n_a-536045\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met weinig zuurstof\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.1\",\n    \"confidence\": \"0.7\"\n  },\n  \"zuurverdiend\": {\n    \"form\": \"zuurverdiend\",\n    \"cornetto_id\": \"r_a-16458\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met hard werken verdiend\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"zwaar\": {\n    \"form\": \"zwaar\",\n    \"cornetto_id\": \"r_a-16467\",\n    \"cornetto_synset_id\": \"n_a-536057\",\n    \"wordnet_id\": \"a-01215935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"laag en diep\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwaargebouwd\": {\n    \"form\": \"zwaargebouwd\",\n    \"cornetto_id\": \"r_a-16561\",\n    \"cornetto_synset_id\": \"d_a-9272\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sterk, zwaar uitgevoerd\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.7\"\n  },\n  \"zwaargewond\": {\n    \"form\": \"zwaargewond\",\n    \"cornetto_id\": \"r_a-16516\",\n    \"cornetto_synset_id\": \"d_a-9637\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serieus gewond\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zwaarmoedig\": {\n    \"form\": \"zwaarmoedig\",\n    \"cornetto_id\": \"r_a-16468\",\n    \"cornetto_synset_id\": \"n_a-536067\",\n    \"wordnet_id\": \"a-00274068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"somber\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"zwaarwichtig\": {\n    \"form\": \"zwaarwichtig\",\n    \"cornetto_id\": \"r_a-16469\",\n    \"cornetto_synset_id\": \"n_a-536072\",\n    \"wordnet_id\": \"a-00792641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van groot gewicht\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zwak\": {\n    \"form\": \"zwak\",\n    \"cornetto_id\": \"c_545823\",\n    \"cornetto_synset_id\": \"n_a-527852\",\n    \"wordnet_id\": \"a-01827766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"van karakter\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwakbegaafd\": {\n    \"form\": \"zwakbegaafd\",\n    \"cornetto_id\": \"r_a-16563\",\n    \"cornetto_synset_id\": \"n_a-536080\",\n    \"wordnet_id\": \"a-01597702\",\n    \"pos\": \"JJ\",\n    \"sense\": \"weinig intelligent\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwanger\": {\n    \"form\": \"zwanger\",\n    \"cornetto_id\": \"r_a-16474\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vervuld zijn van\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwart\": {\n    \"form\": \"zwart\",\n    \"cornetto_id\": \"r_a-16478\",\n    \"cornetto_synset_id\": \"c_387\",\n    \"wordnet_id\": \"a-00241952\",\n    \"pos\": \"JJ\",\n    \"sense\": \"met een donkere huidskleur\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwart-wit\": {\n    \"form\": \"zwart-wit\",\n    \"cornetto_id\": \"r_a-16518\",\n    \"cornetto_synset_id\": \"n_a-521119\",\n    \"wordnet_id\": \"a-00394331\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ongenuanceerd\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zwartgallig\": {\n    \"form\": \"zwartgallig\",\n    \"cornetto_id\": \"r_a-16479\",\n    \"cornetto_synset_id\": \"n_a-536067\",\n    \"wordnet_id\": \"a-00274068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"zwaarmoedig\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zweterig\": {\n    \"form\": \"zweterig\",\n    \"cornetto_id\": \"r_a-16565\",\n    \"cornetto_synset_id\": \"n_a-504037\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vochtig van zweet\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"zweverig\": {\n    \"form\": \"zweverig\",\n    \"cornetto_id\": \"r_a-16481\",\n    \"cornetto_synset_id\": \"n_a-531905\",\n    \"wordnet_id\": \"a-00120784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vaag\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"zwoel\": {\n    \"form\": \"zwoel\",\n    \"cornetto_id\": \"r_a-16485\",\n    \"cornetto_synset_id\": \"n_a-535783\",\n    \"wordnet_id\": \"a-01257145\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sensueel\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/English/negations_en.json",
    "content": "{\n  \"words\": [\"not\", \"no\", \"never\", \"neither\"]\n}\n"
  },
  {
    "path": "lib/natural/sentiment/English/pattern-sentiment-en.json",
    "content": "{\n  \"13th\": {\n    \"form\": \"13th\",\n    \"wordnet_id\": \"a-02203763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the twelfth in position\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"20th\": {\n    \"form\": \"20th\",\n    \"cornetto_synset_id\": \"n_a-531612\",\n    \"wordnet_id\": \"a-02204716\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the nineteenth in position\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"21st\": {\n    \"form\": \"21st\",\n    \"wordnet_id\": \"a-02204823\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the twentieth in position\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"2nd\": {\n    \"form\": \"2nd\",\n    \"wordnet_id\": \"a-02202146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the first in position in space or time or degree or magnitude\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"3rd\": {\n    \"form\": \"3rd\",\n    \"cornetto_synset_id\": \"n_a-530634\",\n    \"wordnet_id\": \"a-02202307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the second and just before the fourth in position\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"abhorrent\": {\n    \"form\": \"abhorrent\",\n    \"wordnet_id\": \"a-1625063\",\n    \"pos\": \"JJ\",\n    \"sense\": \"offensive to the mind\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"able\": {\n    \"form\": \"able\",\n    \"wordnet_id\": \"a-00510348\",\n    \"pos\": \"JJ\",\n    \"sense\": \"have the skills and qualifications to do things well\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"above\": {\n    \"form\": \"above\",\n    \"cornetto_synset_id\": \"n_a-504850\",\n    \"wordnet_id\": \"a-00125993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appearing earlier in the same text\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abridged\": {\n    \"form\": \"abridged\",\n    \"cornetto_synset_id\": \"d_a-9176\",\n    \"wordnet_id\": \"a-00004413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used of texts) shortened by condensing or rewriting\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abrupt\": {\n    \"form\": \"abrupt\",\n    \"wordnet_id\": \"a-02294122\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by sudden changes in subject and sharp transitions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absence\": {\n    \"form\": \"absence\",\n    \"wordnet_id\": \"n-15270862\",\n    \"pos\": \"NN\",\n    \"sense\": \"the time interval during which something or somebody is away\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"absolute\": {\n    \"form\": \"absolute\",\n    \"wordnet_id\": \"a-00897015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing finality with no implication of possible change\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absorbed\": {\n    \"form\": \"absorbed\",\n    \"cornetto_synset_id\": \"n_a-507609\",\n    \"wordnet_id\": \"a-02009166\",\n    \"pos\": \"JJ\",\n    \"sense\": \"retained without reflection\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absorbing\": {\n    \"form\": \"absorbing\",\n    \"cornetto_synset_id\": \"n_a-528398\",\n    \"wordnet_id\": \"a-01344171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of arousing and holding the attention\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absurd\": {\n    \"form\": \"absurd\",\n    \"wordnet_id\": \"a-02570643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incongruous\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"abundant\": {\n    \"form\": \"abundant\",\n    \"cornetto_synset_id\": \"n_a-525828\",\n    \"wordnet_id\": \"a-00013887\",\n    \"pos\": \"JJ\",\n    \"sense\": \"present in great quantity\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"academic\": {\n    \"form\": \"academic\",\n    \"cornetto_synset_id\": \"n_a-531845\",\n    \"wordnet_id\": \"a-02599939\",\n    \"pos\": \"JJ\",\n    \"sense\": \"associated with academia or an academy\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"accessible\": {\n    \"form\": \"accessible\",\n    \"wordnet_id\": \"a-00533221\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being read with comprehension\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"accomplished\": {\n    \"form\": \"accomplished\",\n    \"cornetto_synset_id\": \"d_a-9365\",\n    \"wordnet_id\": \"a-00521329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"successfully completed or brought to an end\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"accurate\": {\n    \"form\": \"accurate\",\n    \"cornetto_synset_id\": \"n_a-535946\",\n    \"wordnet_id\": \"a-00021766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming exactly or almost exactly to fact or to a standard or performing with total accuracy\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"acquainted\": {\n    \"form\": \"acquainted\",\n    \"cornetto_synset_id\": \"n_a-532775\",\n    \"wordnet_id\": \"a-00965894\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having fair knowledge of\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"across-the-board\": {\n    \"form\": \"across-the-board\",\n    \"cornetto_synset_id\": \"n_a-513689\",\n    \"wordnet_id\": \"a-00526062\",\n    \"pos\": \"JJ\",\n    \"sense\": \"broad in scope or content\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"acting\": {\n    \"form\": \"acting\",\n    \"wordnet_id\": \"a-01756166\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving temporarily especially as a substitute\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"action\": {\n    \"form\": \"action\",\n    \"wordnet_id\": \"n-576451\",\n    \"pos\": \"NN\",\n    \"sense\": \"the most important or interesting work or activity in a specific area or field\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"active\": {\n    \"form\": \"active\",\n    \"cornetto_synset_id\": \"n_a-526012\",\n    \"wordnet_id\": \"a-00031974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by energetic activity\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"actual\": {\n    \"form\": \"actual\",\n    \"wordnet_id\": \"a-02460964\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or reflecting the essential or genuine character of something\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"acuate\": {\n    \"form\": \"acuate\",\n    \"cornetto_synset_id\": \"n_a-526924\",\n    \"wordnet_id\": \"a-01810189\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ending in a sharp point\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"acute\": {\n    \"form\": \"acute\",\n    \"cornetto_synset_id\": \"n_a-506895\",\n    \"wordnet_id\": \"a-01744515\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or demonstrating ability to recognize or draw fine distinctions\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adamant\": {\n    \"form\": \"adamant\",\n    \"cornetto_synset_id\": \"n_a-514712\",\n    \"wordnet_id\": \"a-01024812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impervious to pleas, persuasion, requests, reason\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"addicted\": {\n    \"form\": \"addicted\",\n    \"cornetto_synset_id\": \"d_a-9575\",\n    \"wordnet_id\": \"a-00047029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"compulsively or physiologically dependent on something habit-forming\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"addictive\": {\n    \"form\": \"addictive\",\n    \"cornetto_synset_id\": \"n_a-532698\",\n    \"wordnet_id\": \"a-00047786\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing or characterized by addiction\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"addled\": {\n    \"form\": \"addled\",\n    \"cornetto_synset_id\": \"n_a-521393\",\n    \"wordnet_id\": \"a-00436115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"confused and vague\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adept\": {\n    \"form\": \"adept\",\n    \"cornetto_synset_id\": \"d_a-9172\",\n    \"wordnet_id\": \"a-02226162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing knowledge and skill and aptitude\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adequate to\": {\n    \"form\": \"adequate to\",\n    \"cornetto_synset_id\": \"n_a-532098\",\n    \"wordnet_id\": \"a-00051373\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the requisite qualities for\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adequate\": {\n    \"form\": \"adequate\",\n    \"wordnet_id\": \"a-02336109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sufficient for the purpose\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adjectival\": {\n    \"form\": \"adjectival\",\n    \"cornetto_synset_id\": \"n_a-504141\",\n    \"wordnet_id\": \"a-02936020\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or functioning as an adjective\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"administrable\": {\n    \"form\": \"administrable\",\n    \"cornetto_synset_id\": \"n_a-530916\",\n    \"wordnet_id\": \"a-01474806\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being administered or managed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adorable\": {\n    \"form\": \"adorable\",\n    \"wordnet_id\": \"a-01459755\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lovable especially in a childlike or naive way\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adoring\": {\n    \"form\": \"adoring\",\n    \"cornetto_synset_id\": \"n_a-509996\",\n    \"wordnet_id\": \"a-01464433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extravagantly or foolishly loving and indulgent\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adult\": {\n    \"form\": \"adult\",\n    \"cornetto_synset_id\": \"d_a-9590\",\n    \"wordnet_id\": \"a-01488616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of animals) fully developed\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"advanced\": {\n    \"form\": \"advanced\",\n    \"cornetto_synset_id\": \"n_a-510789\",\n    \"wordnet_id\": \"a-01840121\",\n    \"pos\": \"JJ\",\n    \"sense\": \"farther along in physical or mental development\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adventurous\": {\n    \"form\": \"adventurous\",\n    \"cornetto_synset_id\": \"n_a-502846\",\n    \"wordnet_id\": \"a-00065791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"willing to undertake or seeking out new and daring enterprises\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adversative\": {\n    \"form\": \"adversative\",\n    \"cornetto_synset_id\": \"n_a-530430\",\n    \"wordnet_id\": \"a-00564504\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing antithesis or opposition\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"advertent\": {\n    \"form\": \"advertent\",\n    \"cornetto_synset_id\": \"n_a-501199\",\n    \"wordnet_id\": \"a-00164308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"giving attention\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aeriform\": {\n    \"form\": \"aeriform\",\n    \"cornetto_synset_id\": \"n_a-521709\",\n    \"wordnet_id\": \"a-00626136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by lightness and insubstantiality\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affable\": {\n    \"form\": \"affable\",\n    \"cornetto_synset_id\": \"d_a-9326\",\n    \"wordnet_id\": \"a-01075178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"diffusing warmth and friendliness\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affirmative\": {\n    \"form\": \"affirmative\",\n    \"cornetto_synset_id\": \"n_a-522062\",\n    \"wordnet_id\": \"a-01817908\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expecting the best\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affluent\": {\n    \"form\": \"affluent\",\n    \"cornetto_synset_id\": \"n_a-534597\",\n    \"wordnet_id\": \"a-02022167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having an abundant supply of money or possessions of value\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"afloat\": {\n    \"form\": \"afloat\",\n    \"cornetto_synset_id\": \"n_a-533320\",\n    \"wordnet_id\": \"a-00076921\",\n    \"pos\": \"JJ\",\n    \"sense\": \"borne on the water\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aforementioned\": {\n    \"form\": \"aforementioned\",\n    \"wordnet_id\": \"a-02068730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being the one previously mentioned or spoken of\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"afraid\": {\n    \"form\": \"afraid\",\n    \"cornetto_synset_id\": \"d_a-9168\",\n    \"wordnet_id\": \"a-00077645\",\n    \"pos\": \"JJ\",\n    \"sense\": \"filled with fear or apprehension\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"african\": {\n    \"form\": \"african\",\n    \"cornetto_synset_id\": \"n_a-500177\",\n    \"wordnet_id\": \"a-02941790\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the nations of Africa or their peoples\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aged\": {\n    \"form\": \"aged\",\n    \"cornetto_synset_id\": \"d_a-9481\",\n    \"wordnet_id\": \"a-01644225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"advanced in years\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aghast\": {\n    \"form\": \"aghast\",\n    \"cornetto_synset_id\": \"d_a-9411\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"struck with fear, dread, or consternation\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agile\": {\n    \"form\": \"agile\",\n    \"cornetto_synset_id\": \"n_a-534143\",\n    \"wordnet_id\": \"a-00032733\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moving quickly and lightly\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agitative\": {\n    \"form\": \"agitative\",\n    \"cornetto_synset_id\": \"c_179\",\n    \"wordnet_id\": \"a-01896925\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing or tending to cause anger or resentment\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aglow\": {\n    \"form\": \"aglow\",\n    \"cornetto_synset_id\": \"n_a-507358\",\n    \"wordnet_id\": \"a-00279332\",\n    \"pos\": \"JJ\",\n    \"sense\": \"softly bright or radiant\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aired\": {\n    \"form\": \"aired\",\n    \"cornetto_synset_id\": \"c_597\",\n    \"wordnet_id\": \"a-02508917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"open to or abounding in fresh air\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"airheaded\": {\n    \"form\": \"airheaded\",\n    \"cornetto_synset_id\": \"n_a-507793\",\n    \"wordnet_id\": \"a-02120828\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking seriousness\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alarming\": {\n    \"form\": \"alarming\",\n    \"cornetto_synset_id\": \"n_a-527099\",\n    \"wordnet_id\": \"a-00193015\",\n    \"pos\": \"JJ\",\n    \"sense\": \"frightening because of an awareness of danger\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alas\": {\n    \"form\": \"alas\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alcoholic\": {\n    \"form\": \"alcoholic\",\n    \"wordnet_id\": \"a-01158596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or containing alcohol\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"algid\": {\n    \"form\": \"algid\",\n    \"cornetto_synset_id\": \"d_a-9370\",\n    \"wordnet_id\": \"a-01251958\",\n    \"pos\": \"JJ\",\n    \"sense\": \"chilly\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alien\": {\n    \"form\": \"alien\",\n    \"wordnet_id\": \"a-01349927\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not contained in or deriving from the essential nature of something\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"alienating\": {\n    \"form\": \"alienating\",\n    \"wordnet_id\": \"a-760783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing hostility or loss of friendliness\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"alive\": {\n    \"form\": \"alive\",\n    \"cornetto_synset_id\": \"d_a-9145\",\n    \"wordnet_id\": \"a-00805115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(often followed by 'with') full of life and spirit\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"all-around\": {\n    \"form\": \"all-around\",\n    \"cornetto_synset_id\": \"n_a-532152\",\n    \"wordnet_id\": \"a-00526541\",\n    \"pos\": \"JJ\",\n    \"sense\": \"many-sided\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alleged\": {\n    \"form\": \"alleged\",\n    \"cornetto_synset_id\": \"n_a-535847\",\n    \"wordnet_id\": \"a-01916555\",\n    \"pos\": \"JJ\",\n    \"sense\": \"doubtful or suspect\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"alleviated\": {\n    \"form\": \"alleviated\",\n    \"cornetto_synset_id\": \"n_a-521937\",\n    \"wordnet_id\": \"a-01519465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of pain or sorrow) made easier to bear\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allusions\": {\n    \"form\": \"allusions\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"alternate\": {\n    \"form\": \"alternate\",\n    \"wordnet_id\": \"a-01853934\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving or used in place of another\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amateur\": {\n    \"form\": \"amateur\",\n    \"cornetto_synset_id\": \"n_a-525291\",\n    \"wordnet_id\": \"a-01869634\",\n    \"pos\": \"JJ\",\n    \"sense\": \"engaged in as a pastime\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amateurish\": {\n    \"form\": \"amateurish\",\n    \"cornetto_synset_id\": \"n_a-502167\",\n    \"wordnet_id\": \"a-01870636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking professional skill or expertise\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amatory\": {\n    \"form\": \"amatory\",\n    \"cornetto_synset_id\": \"n_a-526107\",\n    \"wordnet_id\": \"a-01465214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressive of or exciting sexual love or romance\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amazing\": {\n    \"form\": \"amazing\",\n    \"wordnet_id\": \"a-02359789\",\n    \"pos\": \"JJ\",\n    \"sense\": \"surprising greatly\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ambitious\": {\n    \"form\": \"ambitious\",\n    \"wordnet_id\": \"a-00745642\",\n    \"pos\": \"JJ\",\n    \"sense\": \"requiring full use of your abilities or resources\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amenable\": {\n    \"form\": \"amenable\",\n    \"cornetto_synset_id\": \"n_a-503633\",\n    \"wordnet_id\": \"a-00696828\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disposed or willing to comply\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"american\": {\n    \"form\": \"american\",\n    \"wordnet_id\": \"a-02927512\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the United States of America or its people or language or culture\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amusing\": {\n    \"form\": \"amusing\",\n    \"wordnet_id\": \"a-01344485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"providing enjoyment\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anger\": {\n    \"form\": \"anger\",\n    \"wordnet_id\": \"v-1787106\",\n    \"pos\": \"VB\",\n    \"sense\": \"become angry\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"angered\": {\n    \"form\": \"angered\",\n    \"cornetto_synset_id\": \"d_a-9618\",\n    \"wordnet_id\": \"a-00114454\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by extreme anger\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"angry\": {\n    \"form\": \"angry\",\n    \"wordnet_id\": \"a-01173697\",\n    \"pos\": \"JJ\",\n    \"sense\": \"severely inflamed and painful\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"annoyed\": {\n    \"form\": \"annoyed\",\n    \"wordnet_id\": \"a-2455845\",\n    \"pos\": \"JJ\",\n    \"sense\": \"troubled persistently especially with petty annoyances\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"annoying\": {\n    \"form\": \"annoying\",\n    \"cornetto_synset_id\": \"n_a-514040\",\n    \"wordnet_id\": \"a-00089550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing irritation or annoyance\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anxious\": {\n    \"form\": \"anxious\",\n    \"wordnet_id\": \"a-02456157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing or fraught with or showing anxiety\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aphonic\": {\n    \"form\": \"aphonic\",\n    \"cornetto_synset_id\": \"n_a-529437\",\n    \"wordnet_id\": \"a-00151661\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being without sound through injury or illness and thus incapable of all but whispered speech\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"appalled\": {\n    \"form\": \"appalled\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"appalling\": {\n    \"form\": \"appalling\",\n    \"cornetto_synset_id\": \"n_a-513370\",\n    \"wordnet_id\": \"a-00193367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing consternation\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apparent\": {\n    \"form\": \"apparent\",\n    \"cornetto_synset_id\": \"n_a-505886\",\n    \"wordnet_id\": \"a-01618376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"clearly revealed to the mind or the senses or judgment\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"appealing\": {\n    \"form\": \"appealing\",\n    \"wordnet_id\": \"a-02376277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of characters in literature or drama) evoking empathic or sympathetic feelings\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"appetizing\": {\n    \"form\": \"appetizing\",\n    \"cornetto_synset_id\": \"n_a-528088\",\n    \"wordnet_id\": \"a-00133417\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appealing to or stimulating the appetite especially in appearance or aroma\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"applaudable\": {\n    \"form\": \"applaudable\",\n    \"cornetto_synset_id\": \"n_a-524336\",\n    \"wordnet_id\": \"a-02585545\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of high praise\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"applicative\": {\n    \"form\": \"applicative\",\n    \"cornetto_synset_id\": \"n_a-530918\",\n    \"wordnet_id\": \"a-01834812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"readily applicable or practical\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apportioned\": {\n    \"form\": \"apportioned\",\n    \"cornetto_synset_id\": \"n_a-524178\",\n    \"wordnet_id\": \"a-00540236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"given out in portions\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apposite\": {\n    \"form\": \"apposite\",\n    \"cornetto_synset_id\": \"n_a-531221\",\n    \"wordnet_id\": \"a-00138314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of striking appropriateness and pertinence\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"appreciated\": {\n    \"form\": \"appreciated\",\n    \"wordnet_id\": \"a-1378429\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fully understood or grasped\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"appreciative\": {\n    \"form\": \"appreciative\",\n    \"cornetto_synset_id\": \"n_a-506396\",\n    \"wordnet_id\": \"a-00774676\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing appreciation or a favorable critical judgment or opinion\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"approaching\": {\n    \"form\": \"approaching\",\n    \"cornetto_synset_id\": \"n_a-501802\",\n    \"wordnet_id\": \"a-01732601\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the relatively near future\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"appropriate\": {\n    \"form\": \"appropriate\",\n    \"cornetto_synset_id\": \"n_a-510404\",\n    \"wordnet_id\": \"a-00134701\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suitable for a particular person or place or condition etc\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"approximate\": {\n    \"form\": \"approximate\",\n    \"cornetto_synset_id\": \"n_a-511092\",\n    \"wordnet_id\": \"a-00915976\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not quite exact or correct\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apt\": {\n    \"form\": \"apt\",\n    \"cornetto_synset_id\": \"n_a-516334\",\n    \"wordnet_id\": \"a-01334958\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mentally quick and resourceful\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arbitrary\": {\n    \"form\": \"arbitrary\",\n    \"cornetto_synset_id\": \"n_a-534901\",\n    \"wordnet_id\": \"a-00718924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"based on or subject to individual discretion or preference or sometimes impulse or caprice\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"archaeological\": {\n    \"form\": \"archaeological\",\n    \"cornetto_synset_id\": \"n_a-502503\",\n    \"wordnet_id\": \"a-02638392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"related to or dealing with or devoted to archaeology\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arduous\": {\n    \"form\": \"arduous\",\n    \"cornetto_synset_id\": \"n_a-532593\",\n    \"wordnet_id\": \"a-00836544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by effort to the point of exhaustion\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aroused\": {\n    \"form\": \"aroused\",\n    \"cornetto_synset_id\": \"n_a-509978\",\n    \"wordnet_id\": \"a-02131668\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeling great sexual desire\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrest\": {\n    \"form\": \"arrest\",\n    \"wordnet_id\": \"n-14010927\",\n    \"pos\": \"NN\",\n    \"sense\": \"the state of inactivity following an interruption\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"artesian\": {\n    \"form\": \"artesian\",\n    \"cornetto_synset_id\": \"n_a-533297\",\n    \"wordnet_id\": \"a-00098933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of water) rising to the surface under internal hydrostatic pressure\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artificial\": {\n    \"form\": \"artificial\",\n    \"cornetto_synset_id\": \"n_a-504613\",\n    \"wordnet_id\": \"a-00073465\",\n    \"pos\": \"JJ\",\n    \"sense\": \"artificially formal\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artistic\": {\n    \"form\": \"artistic\",\n    \"wordnet_id\": \"a-02393086\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aesthetically pleasing\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ascetic\": {\n    \"form\": \"ascetic\",\n    \"cornetto_synset_id\": \"n_a-529697\",\n    \"wordnet_id\": \"a-00009618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"practicing great self-denial\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ashen\": {\n    \"form\": \"ashen\",\n    \"cornetto_synset_id\": \"d_a-9194\",\n    \"wordnet_id\": \"a-00404568\",\n    \"pos\": \"JJ\",\n    \"sense\": \"anemic looking from illness or emotion\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"asian\": {\n    \"form\": \"asian\",\n    \"wordnet_id\": \"a-02968525\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Asia or the peoples of Asia or their languages or culture\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"askew\": {\n    \"form\": \"askew\",\n    \"cornetto_synset_id\": \"n_a-508016\",\n    \"wordnet_id\": \"a-02312450\",\n    \"pos\": \"JJ\",\n    \"sense\": \"turned or twisted toward one side\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assumptive\": {\n    \"form\": \"assumptive\",\n    \"cornetto_synset_id\": \"n_a-502571\",\n    \"wordnet_id\": \"a-00205696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"excessively forward\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"astonishing\": {\n    \"form\": \"astonishing\",\n    \"wordnet_id\": \"a-02359789\",\n    \"pos\": \"JJ\",\n    \"sense\": \"surprising greatly\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"astounding\": {\n    \"form\": \"astounding\",\n    \"cornetto_synset_id\": \"n_a-532288\",\n    \"wordnet_id\": \"a-00645856\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bewildering or striking dumb with wonder\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"astute\": {\n    \"form\": \"astute\",\n    \"cornetto_synset_id\": \"c_235\",\n    \"wordnet_id\": \"a-00438909\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by practical hardheaded intelligence\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"atmospheric\": {\n    \"form\": \"atmospheric\",\n    \"cornetto_synset_id\": \"n_a-502696\",\n    \"wordnet_id\": \"a-02831736\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or located in the atmosphere\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"atrocious\": {\n    \"form\": \"atrocious\",\n    \"cornetto_synset_id\": \"n_a-531138\",\n    \"wordnet_id\": \"a-01126291\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exceptionally bad or displeasing\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attendant\": {\n    \"form\": \"attendant\",\n    \"cornetto_synset_id\": \"n_a-504086\",\n    \"wordnet_id\": \"a-00122844\",\n    \"pos\": \"JJ\",\n    \"sense\": \"following or accompanying as a consequence\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attention-getting\": {\n    \"form\": \"attention-getting\",\n    \"cornetto_synset_id\": \"n_a-522067\",\n    \"wordnet_id\": \"a-00579498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"seizing the attention\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attentive\": {\n    \"form\": \"attentive\",\n    \"cornetto_synset_id\": \"d_a-9277\",\n    \"wordnet_id\": \"a-00163592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(often followed by 'to') giving care or attention\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attractive\": {\n    \"form\": \"attractive\",\n    \"cornetto_synset_id\": \"n_a-510897\",\n    \"wordnet_id\": \"a-00166146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasing to the eye or mind especially through beauty or charm\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"atypical\": {\n    \"form\": \"atypical\",\n    \"cornetto_synset_id\": \"n_a-501908\",\n    \"wordnet_id\": \"a-02469928\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not representative of a group, class, or type\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aureate\": {\n    \"form\": \"aureate\",\n    \"cornetto_synset_id\": \"n_a-511289\",\n    \"wordnet_id\": \"a-00369941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the deep slightly brownish color of gold\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"australian\": {\n    \"form\": \"australian\",\n    \"wordnet_id\": \"a-03045750\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Australia or its inhabitants or its languages\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"authentic\": {\n    \"form\": \"authentic\",\n    \"wordnet_id\": \"a-02465115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming to fact and therefore worthy of belief\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"authoritative\": {\n    \"form\": \"authoritative\",\n    \"cornetto_synset_id\": \"d_a-9178\",\n    \"wordnet_id\": \"a-01830403\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having authority or ascendancy or influence\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"autistic\": {\n    \"form\": \"autistic\",\n    \"cornetto_synset_id\": \"n_a-502750\",\n    \"wordnet_id\": \"a-02542878\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or affected with autism\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"autobiographical\": {\n    \"form\": \"autobiographical\",\n    \"cornetto_synset_id\": \"n_a-502755\",\n    \"wordnet_id\": \"a-02651244\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or in the style of an autobiography\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"autonomous\": {\n    \"form\": \"autonomous\",\n    \"cornetto_synset_id\": \"n_a-535528\",\n    \"wordnet_id\": \"a-00728225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of persons) free from external control and constraint in e.g. action and judgment\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"available\": {\n    \"form\": \"available\",\n    \"cornetto_synset_id\": \"d_a-9181\",\n    \"wordnet_id\": \"a-00183053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"obtainable or accessible and ready for use or service\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"average\": {\n    \"form\": \"average\",\n    \"cornetto_synset_id\": \"n_a-518805\",\n    \"wordnet_id\": \"a-00486290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking special distinction, rank, or status\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"avid\": {\n    \"form\": \"avid\",\n    \"wordnet_id\": \"a-00888477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(often followed by 'for') ardently or excessively desirous\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aware\": {\n    \"form\": \"aware\",\n    \"cornetto_synset_id\": \"n_a-509796\",\n    \"wordnet_id\": \"a-01977155\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bearing in mind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aweary\": {\n    \"form\": \"aweary\",\n    \"cornetto_synset_id\": \"d_a-9410\",\n    \"wordnet_id\": \"a-02432428\",\n    \"pos\": \"JJ\",\n    \"sense\": \"physically and mentally fatigued\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"awesome\": {\n    \"form\": \"awesome\",\n    \"wordnet_id\": \"a-01282510\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inspiring awe or admiration or wonder\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"awful\": {\n    \"form\": \"awful\",\n    \"cornetto_synset_id\": \"n_a-511467\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing fear or dread or terror\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"awkward\": {\n    \"form\": \"awkward\",\n    \"cornetto_synset_id\": \"n_a-523336\",\n    \"wordnet_id\": \"a-00605406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing inconvenience\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ahw\": {\n    \"form\": \"ahw\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aww\": {\n    \"form\": \"aww\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"awww\": {\n    \"form\": \"awww\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"awwww\": {\n    \"form\": \"awwww\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"axiomatic\": {\n    \"form\": \"axiomatic\",\n    \"cornetto_synset_id\": \"n_a-506530\",\n    \"wordnet_id\": \"a-01618895\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evident without proof or argument\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"back\": {\n    \"form\": \"back\",\n    \"wordnet_id\": \"a-00668816\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of an earlier date\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bad\": {\n    \"form\": \"bad\",\n    \"cornetto_synset_id\": \"d_a-9561\",\n    \"wordnet_id\": \"a-01117226\",\n    \"pos\": \"JJ\",\n    \"sense\": \"reproduced fraudulently\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"badness\": {\n    \"form\": \"badness\",\n    \"wordnet_id\": \"n-5036715\",\n    \"pos\": \"NN\",\n    \"sense\": \"used of the degree of something undesirable e.g. pain or weather\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"balmy\": {\n    \"form\": \"balmy\",\n    \"cornetto_synset_id\": \"n_a-535263\",\n    \"wordnet_id\": \"a-00438332\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mild and pleasant\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"banal\": {\n    \"form\": \"banal\",\n    \"wordnet_id\": \"a-1688757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"repeated too often\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"banded\": {\n    \"form\": \"banded\",\n    \"cornetto_synset_id\": \"n_a-510658\",\n    \"wordnet_id\": \"a-00222969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"identified with a band especially around a leg\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bang-up\": {\n    \"form\": \"bang-up\",\n    \"cornetto_synset_id\": \"n_a-511955\",\n    \"wordnet_id\": \"a-01123879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very good\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"barbarian\": {\n    \"form\": \"barbarian\",\n    \"cornetto_synset_id\": \"d_a-9619\",\n    \"wordnet_id\": \"a-00412788\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without civilizing influences\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"barbarous\": {\n    \"form\": \"barbarous\",\n    \"cornetto_synset_id\": \"c_182\",\n    \"wordnet_id\": \"a-01263013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of persons or their actions) able or disposed to inflict pain or suffering\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bare\": {\n    \"form\": \"bare\",\n    \"cornetto_synset_id\": \"n_a-520639\",\n    \"wordnet_id\": \"a-00106821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in amplitude or quantity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"base\": {\n    \"form\": \"base\",\n    \"cornetto_synset_id\": \"c_540\",\n    \"wordnet_id\": \"a-01589650\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing an ignoble lack of honor or morality\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"basic\": {\n    \"form\": \"basic\",\n    \"wordnet_id\": \"a-02295298\",\n    \"pos\": \"JJ\",\n    \"sense\": \"reduced to the simplest and most significant form possible without loss of generality\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bass\": {\n    \"form\": \"bass\",\n    \"cornetto_synset_id\": \"n_a-536057\",\n    \"wordnet_id\": \"a-01215935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or denoting a low vocal or instrumental range\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battleful\": {\n    \"form\": \"battleful\",\n    \"cornetto_synset_id\": \"n_a-501941\",\n    \"wordnet_id\": \"a-00082766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing a ready disposition to fight\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"beautiful\": {\n    \"form\": \"beautiful\",\n    \"cornetto_synset_id\": \"n_a-524142\",\n    \"wordnet_id\": \"a-00217728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"delighting the senses or exciting intellectual or emotional admiration\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"becoming\": {\n    \"form\": \"becoming\",\n    \"cornetto_synset_id\": \"n_a-510405\",\n    \"wordnet_id\": \"a-01878870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"according with custom or propriety\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"beefy\": {\n    \"form\": \"beefy\",\n    \"cornetto_synset_id\": \"n_a-529394\",\n    \"wordnet_id\": \"a-02038126\",\n    \"pos\": \"JJ\",\n    \"sense\": \"muscular and heavily built\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"behind\": {\n    \"form\": \"behind\",\n    \"cornetto_synset_id\": \"n_a-514476\",\n    \"wordnet_id\": \"a-02492383\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the lower score or lagging position in a contest\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"believable\": {\n    \"form\": \"believable\",\n    \"cornetto_synset_id\": \"n_a-502749\",\n    \"wordnet_id\": \"a-00644839\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being believed\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"beloved\": {\n    \"form\": \"beloved\",\n    \"cornetto_synset_id\": \"n_a-510141\",\n    \"wordnet_id\": \"a-01462324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dearly loved\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"best\": {\n    \"form\": \"best\",\n    \"wordnet_id\": \"a-00227507\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(superlative of 'good') having the most positive qualities\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"better\": {\n    \"form\": \"better\",\n    \"wordnet_id\": \"a-00231761\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(comparative of 'good') changed for the better in health or fitness\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bewitching\": {\n    \"form\": \"bewitching\",\n    \"cornetto_synset_id\": \"n_a-532666\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capturing interest as if by a spell\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"big\": {\n    \"form\": \"big\",\n    \"cornetto_synset_id\": \"d_a-9639\",\n    \"wordnet_id\": \"a-00173391\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in an advanced stage of pregnancy\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bigger\": {\n    \"form\": \"bigger\",\n    \"wordnet_id\": \"a-01383756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"large or big relative to something else\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"biographic\": {\n    \"form\": \"biographic\",\n    \"cornetto_synset_id\": \"n_a-504218\",\n    \"wordnet_id\": \"a-03048680\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or being biography\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bitter\": {\n    \"form\": \"bitter\",\n    \"cornetto_synset_id\": \"d_a-9192\",\n    \"wordnet_id\": \"a-02396098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing a sharp and acrid taste experience\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bizarre\": {\n    \"form\": \"bizarre\",\n    \"cornetto_synset_id\": \"n_a-531732\",\n    \"wordnet_id\": \"a-00608791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conspicuously or grossly unconventional or unusual\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"black\": {\n    \"form\": \"black\",\n    \"cornetto_synset_id\": \"n_a-536093\",\n    \"wordnet_id\": \"a-00392812\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of the achromatic color of maximum darkness\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bland\": {\n    \"form\": \"bland\",\n    \"wordnet_id\": \"a-02307563\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking stimulating characteristics\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blank\": {\n    \"form\": \"blank\",\n    \"cornetto_synset_id\": \"n_a-521250\",\n    \"wordnet_id\": \"a-00500889\",\n    \"pos\": \"JJ\",\n    \"sense\": \"void of expression\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blasted\": {\n    \"form\": \"blasted\",\n    \"cornetto_synset_id\": \"n_a-516807\",\n    \"wordnet_id\": \"a-00669942\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expletives used informally as intensifiers\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blatant\": {\n    \"form\": \"blatant\",\n    \"wordnet_id\": \"a-02090567\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without any attempt at concealment\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bleak\": {\n    \"form\": \"bleak\",\n    \"wordnet_id\": \"a-01252399\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unpleasantly cold and damp\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blech\": {\n    \"form\": \"blech\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blind\": {\n    \"form\": \"blind\",\n    \"wordnet_id\": \"a-01926654\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not based on reason or evidence\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blonde\": {\n    \"form\": \"blonde\",\n    \"wordnet_id\": \"a-00243606\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or having light colored skin and hair and usually blue or grey eyes\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bloodstained\": {\n    \"form\": \"bloodstained\",\n    \"cornetto_synset_id\": \"n_a-504377\",\n    \"wordnet_id\": \"a-00247993\",\n    \"pos\": \"JJ\",\n    \"sense\": \"covered with blood\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bloodthirsty\": {\n    \"form\": \"bloodthirsty\",\n    \"cornetto_synset_id\": \"n_a-510816\",\n    \"wordnet_id\": \"a-00248251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by eagerness to resort to violence and bloodshed\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bloody\": {\n    \"form\": \"bloody\",\n    \"cornetto_synset_id\": \"d_a-9577\",\n    \"wordnet_id\": \"a-00247439\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or covered with or accompanied by blood\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blue\": {\n    \"form\": \"blue\",\n    \"cornetto_synset_id\": \"d_a-9193\",\n    \"wordnet_id\": \"a-00370869\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the color intermediate between green and violet\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bodily\": {\n    \"form\": \"bodily\",\n    \"cornetto_synset_id\": \"n_a-517174\",\n    \"wordnet_id\": \"a-00630329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or relating to a physical material body\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bogged\": {\n    \"form\": \"bogged\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"boilerplate\": {\n    \"form\": \"boilerplate\",\n    \"wordnet_id\": \"n-7075006\",\n    \"pos\": \"NN\",\n    \"sense\": \"standard formulations uniformly found in certain types of legal documents or news stories\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"bold\": {\n    \"form\": \"bold\",\n    \"wordnet_id\": \"a-01145422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very steep\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bonny\": {\n    \"form\": \"bonny\",\n    \"cornetto_synset_id\": \"n_a-525316\",\n    \"wordnet_id\": \"a-00218440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very pleasing to the eye\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bootleg\": {\n    \"form\": \"bootleg\",\n    \"cornetto_synset_id\": \"n_a-536095\",\n    \"wordnet_id\": \"a-01402580\",\n    \"pos\": \"JJ\",\n    \"sense\": \"distributed or sold illicitly\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bored\": {\n    \"form\": \"bored\",\n    \"wordnet_id\": \"a-01343200\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uninterested because of frequent exposure or indulgence\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"boring\": {\n    \"form\": \"boring\",\n    \"cornetto_synset_id\": \"n_a-520370\",\n    \"wordnet_id\": \"a-01345307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so lacking in interest as to cause mental weariness\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"boundless\": {\n    \"form\": \"boundless\",\n    \"cornetto_synset_id\": \"n_a-520379\",\n    \"wordnet_id\": \"a-01007657\",\n    \"pos\": \"JJ\",\n    \"sense\": \"seemingly boundless in amount, number, degree, or especially extent\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brainsick\": {\n    \"form\": \"brainsick\",\n    \"cornetto_synset_id\": \"n_a-516037\",\n    \"wordnet_id\": \"a-02075321\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affected with madness or insanity\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brash\": {\n    \"form\": \"brash\",\n    \"cornetto_synset_id\": \"n_a-508126\",\n    \"wordnet_id\": \"a-00204779\",\n    \"pos\": \"JJ\",\n    \"sense\": \"offensively bold\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bravado\": {\n    \"form\": \"bravado\",\n    \"wordnet_id\": \"n-6889591\",\n    \"pos\": \"NN\",\n    \"sense\": \"a swaggering show of courage\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"brave\": {\n    \"form\": \"brave\",\n    \"cornetto_synset_id\": \"n_a-519123\",\n    \"wordnet_id\": \"a-00262792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing or displaying courage\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"breathtaking\": {\n    \"form\": \"breathtaking\",\n    \"cornetto_synset_id\": \"n_a-534732\",\n    \"wordnet_id\": \"a-00921369\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tending to cause suspension of regular breathing\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brief\": {\n    \"form\": \"brief\",\n    \"wordnet_id\": \"a-01442826\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of short duration or distance\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bright\": {\n    \"form\": \"bright\",\n    \"cornetto_synset_id\": \"n_a-535928\",\n    \"wordnet_id\": \"a-01812237\",\n    \"pos\": \"JJ\",\n    \"sense\": \"made smooth and bright by or as if by rubbing\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brilliant\": {\n    \"form\": \"brilliant\",\n    \"cornetto_synset_id\": \"n_a-511641\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by grandeur\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"british\": {\n    \"form\": \"british\",\n    \"wordnet_id\": \"a-03022177\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Great Britain or its people or culture\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"broad\": {\n    \"form\": \"broad\",\n    \"wordnet_id\": \"a-01384212\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very large in expanse or scope\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"broad-minded\": {\n    \"form\": \"broad-minded\",\n    \"cornetto_synset_id\": \"n_a-526330\",\n    \"wordnet_id\": \"a-00286578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inclined to respect views and beliefs that differ from your own\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"broken\": {\n    \"form\": \"broken\",\n    \"cornetto_synset_id\": \"d_a-9361\",\n    \"wordnet_id\": \"a-00289082\",\n    \"pos\": \"JJ\",\n    \"sense\": \"physically and forcibly separated into pieces or cracked or split\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brushed\": {\n    \"form\": \"brushed\",\n    \"cornetto_synset_id\": \"n_a-535097\",\n    \"wordnet_id\": \"a-01153141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of fabrics) having soft nap produced by brushing\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brutal\": {\n    \"form\": \"brutal\",\n    \"wordnet_id\": \"a-01510798\",\n    \"pos\": \"JJ\",\n    \"sense\": \"harsh\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"budding\": {\n    \"form\": \"budding\",\n    \"cornetto_synset_id\": \"n_a-530897\",\n    \"wordnet_id\": \"a-00742620\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beginning to develop\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"busy\": {\n    \"form\": \"busy\",\n    \"cornetto_synset_id\": \"d_a-9144\",\n    \"wordnet_id\": \"a-00292937\",\n    \"pos\": \"JJ\",\n    \"sense\": \"actively or fully engaged or occupied\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cacophonous\": {\n    \"form\": \"cacophonous\",\n    \"cornetto_synset_id\": \"n_a-535182\",\n    \"wordnet_id\": \"a-00298767\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having an unpleasant sound\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"calculable\": {\n    \"form\": \"calculable\",\n    \"cornetto_synset_id\": \"n_a-533699\",\n    \"wordnet_id\": \"a-00301187\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being calculated or estimated\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"calm\": {\n    \"form\": \"calm\",\n    \"cornetto_synset_id\": \"n_a-526409\",\n    \"wordnet_id\": \"a-00529657\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not agitated\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"can't\": {\n    \"form\": \"can't\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"candid\": {\n    \"form\": \"candid\",\n    \"cornetto_synset_id\": \"c_184\",\n    \"wordnet_id\": \"a-01310273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"openly straightforward and direct without reserve or secretiveness\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"capable\": {\n    \"form\": \"capable\",\n    \"wordnet_id\": \"a-02361540\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possibly accepting or permitting\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"captivating\": {\n    \"form\": \"captivating\",\n    \"cornetto_synset_id\": \"n_a-521695\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capturing interest as if by a spell\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"captive\": {\n    \"form\": \"captive\",\n    \"cornetto_synset_id\": \"n_a-509723\",\n    \"wordnet_id\": \"a-00163948\",\n    \"pos\": \"JJ\",\n    \"sense\": \"giving or marked by complete attention to\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cardiac\": {\n    \"form\": \"cardiac\",\n    \"wordnet_id\": \"a-2843717\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the heart\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"careful\": {\n    \"form\": \"careful\",\n    \"wordnet_id\": \"a-02456698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of cares or anxiety\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"careless\": {\n    \"form\": \"careless\",\n    \"cornetto_synset_id\": \"n_a-520108\",\n    \"wordnet_id\": \"a-00311663\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by lack of attention or consideration or forethought or thoroughness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cast-iron\": {\n    \"form\": \"cast-iron\",\n    \"cornetto_synset_id\": \"n_a-513363\",\n    \"wordnet_id\": \"a-02038891\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extremely robust\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"casual\": {\n    \"form\": \"casual\",\n    \"cornetto_synset_id\": \"n_a-533333\",\n    \"wordnet_id\": \"a-00312234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hasty and without attention to detail\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"catching\": {\n    \"form\": \"catching\",\n    \"cornetto_synset_id\": \"n_a-501301\",\n    \"wordnet_id\": \"a-01303042\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of disease) capable of being transmitted by infection\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"catholic\": {\n    \"form\": \"catholic\",\n    \"cornetto_synset_id\": \"n_a-514668\",\n    \"wordnet_id\": \"a-00287128\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from provincial prejudices or attachments\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"caustic\": {\n    \"form\": \"caustic\",\n    \"cornetto_synset_id\": \"n_a-504134\",\n    \"wordnet_id\": \"a-00587376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a substance, especially a strong acid\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ceaseless\": {\n    \"form\": \"ceaseless\",\n    \"cornetto_synset_id\": \"n_a-508064\",\n    \"wordnet_id\": \"a-00595299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uninterrupted in time and indefinitely long continuing\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"celebrated\": {\n    \"form\": \"celebrated\",\n    \"cornetto_synset_id\": \"n_a-503694\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"widely known and esteemed\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"center\": {\n    \"form\": \"center\",\n    \"cornetto_synset_id\": \"n_a-511782\",\n    \"wordnet_id\": \"a-00330506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"equally distant from the extremes\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"central\": {\n    \"form\": \"central\",\n    \"wordnet_id\": \"a-01277097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving as an essential component\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"centric\": {\n    \"form\": \"centric\",\n    \"cornetto_synset_id\": \"n_a-505452\",\n    \"wordnet_id\": \"a-00330728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or situated at or near a center\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ceremonial\": {\n    \"form\": \"ceremonial\",\n    \"cornetto_synset_id\": \"n_a-509253\",\n    \"wordnet_id\": \"a-01042491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by pomp or ceremony or formality\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"certain\": {\n    \"form\": \"certain\",\n    \"wordnet_id\": \"a-02087342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"established irrevocably\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"challenging\": {\n    \"form\": \"challenging\",\n    \"wordnet_id\": \"a-02306598\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stimulating interest or thought\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"changeless\": {\n    \"form\": \"changeless\",\n    \"cornetto_synset_id\": \"n_a-521559\",\n    \"wordnet_id\": \"a-00347400\",\n    \"pos\": \"JJ\",\n    \"sense\": \"remaining the same for indefinitely long times\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"characteristic\": {\n    \"form\": \"characteristic\",\n    \"cornetto_synset_id\": \"n_a-514566\",\n    \"wordnet_id\": \"a-00356926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"typical or distinctive\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charismatic\": {\n    \"form\": \"charismatic\",\n    \"cornetto_synset_id\": \"n_a-505493\",\n    \"wordnet_id\": \"a-00167077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing an extraordinary ability to attract\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"charitable\": {\n    \"form\": \"charitable\",\n    \"cornetto_synset_id\": \"n_a-528223\",\n    \"wordnet_id\": \"a-01372948\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing or motivated by sympathy and understanding and generosity\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charming\": {\n    \"form\": \"charming\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing or using or characteristic of or appropriate to supernatural powers\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cheap\": {\n    \"form\": \"cheap\",\n    \"cornetto_synset_id\": \"n_a-511207\",\n    \"wordnet_id\": \"a-00934199\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relatively low in price or charging low prices\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cheerful\": {\n    \"form\": \"cheerful\",\n    \"cornetto_synset_id\": \"d_a-9546\",\n    \"wordnet_id\": \"a-00362467\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being full of or promoting cheer\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cheery\": {\n    \"form\": \"cheery\",\n    \"cornetto_synset_id\": \"d_a-9195\",\n    \"wordnet_id\": \"a-00363938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bright and pleasant\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cheesiest\": {\n    \"form\": \"cheesiest\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"cheesy\": {\n    \"form\": \"cheesy\",\n    \"cornetto_synset_id\": \"n_a-524740\",\n    \"wordnet_id\": \"a-02346013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of very poor quality\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chicken\": {\n    \"form\": \"chicken\",\n    \"cornetto_synset_id\": \"n_a-514975\",\n    \"wordnet_id\": \"a-00265314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easily frightened\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"childish\": {\n    \"form\": \"childish\",\n    \"cornetto_synset_id\": \"n_a-514998\",\n    \"wordnet_id\": \"a-01493016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indicating a lack of maturity\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chilling\": {\n    \"form\": \"chilling\",\n    \"cornetto_synset_id\": \"n_a-503573\",\n    \"wordnet_id\": \"a-00194924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"provoking fear terror\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chilly\": {\n    \"form\": \"chilly\",\n    \"cornetto_synset_id\": \"n_a-514962\",\n    \"wordnet_id\": \"a-00857206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not characterized by emotion\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chinese\": {\n    \"form\": \"chinese\",\n    \"wordnet_id\": \"a-03122400\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of the island republic on Taiwan or its residents or their language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chitchat\": {\n    \"form\": \"chitchat\",\n    \"wordnet_id\": \"n-7135080\",\n    \"pos\": \"NN\",\n    \"sense\": \"light informal conversation for social occasions\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"choppy\": {\n    \"form\": \"choppy\",\n    \"wordnet_id\": \"a-1143750\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by abrupt transitions\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"christian\": {\n    \"form\": \"christian\",\n    \"wordnet_id\": \"a-02952275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or characteristic of Christianity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chronological\": {\n    \"form\": \"chronological\",\n    \"cornetto_synset_id\": \"n_a-505581\",\n    \"wordnet_id\": \"a-02956880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or arranged according to temporal order\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"churning\": {\n    \"form\": \"churning\",\n    \"cornetto_synset_id\": \"n_a-521391\",\n    \"wordnet_id\": \"a-00087597\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of a liquid) agitated vigorously\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cinematic\": {\n    \"form\": \"cinematic\",\n    \"cornetto_synset_id\": \"n_a-509028\",\n    \"wordnet_id\": \"a-02696795\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or pertaining to or characteristic of the cinema\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"civilized\": {\n    \"form\": \"civilized\",\n    \"cornetto_synset_id\": \"n_a-503731\",\n    \"wordnet_id\": \"a-01947741\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by refinement in taste and manners\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"classic\": {\n    \"form\": \"classic\",\n    \"wordnet_id\": \"a-02295098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of recognized authority or excellence\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"classical\": {\n    \"form\": \"classical\",\n    \"cornetto_synset_id\": \"n_a-502332\",\n    \"wordnet_id\": \"a-00413622\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the most highly developed stage of an earlier civilisation and its culture\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"classy\": {\n    \"form\": \"classy\",\n    \"cornetto_synset_id\": \"c_345\",\n    \"wordnet_id\": \"a-00975778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"elegant and fashionable\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"claustrophobic\": {\n    \"form\": \"claustrophobic\",\n    \"wordnet_id\": \"a-00558612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uncomfortably closed or hemmed in\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"clean\": {\n    \"form\": \"clean\",\n    \"cornetto_synset_id\": \"n_a-525388\",\n    \"wordnet_id\": \"a-00047653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free of drugs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cleanly\": {\n    \"form\": \"cleanly\",\n    \"cornetto_synset_id\": \"n_a-522125\",\n    \"wordnet_id\": \"a-00417978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"habitually clean\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clear\": {\n    \"form\": \"clear\",\n    \"cornetto_synset_id\": \"n_a-516921\",\n    \"wordnet_id\": \"a-01405047\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easily deciphered\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clever\": {\n    \"form\": \"clever\",\n    \"wordnet_id\": \"a-00439252\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing self-interest and shrewdness in dealing with others\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"closed\": {\n    \"form\": \"closed\",\n    \"cornetto_synset_id\": \"d_a-9226\",\n    \"wordnet_id\": \"a-01653538\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not open or affording passage or access\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cloud-covered\": {\n    \"form\": \"cloud-covered\",\n    \"cornetto_synset_id\": \"n_a-503224\",\n    \"wordnet_id\": \"a-00461971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"filled or abounding with clouds\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cloudless\": {\n    \"form\": \"cloudless\",\n    \"cornetto_synset_id\": \"d_a-9329\",\n    \"wordnet_id\": \"a-00460946\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from clouds\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cluelessness\": {\n    \"form\": \"cluelessness\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"clumsy\": {\n    \"form\": \"clumsy\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"coarse\": {\n    \"form\": \"coarse\",\n    \"cornetto_synset_id\": \"c_473\",\n    \"wordnet_id\": \"a-02230990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of textures that are rough to the touch or substances consisting of relatively large particles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cocky\": {\n    \"form\": \"cocky\",\n    \"cornetto_synset_id\": \"n_a-508125\",\n    \"wordnet_id\": \"a-00156440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"overly self-confident or self-assertive\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coherent\": {\n    \"form\": \"coherent\",\n    \"cornetto_synset_id\": \"n_a-522439\",\n    \"wordnet_id\": \"a-00464513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by an orderly, logical, and aesthetically consistent relation of parts\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cold\": {\n    \"form\": \"cold\",\n    \"cornetto_synset_id\": \"n_a-515500\",\n    \"wordnet_id\": \"a-01257612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extended meanings\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"collectible\": {\n    \"form\": \"collectible\",\n    \"cornetto_synset_id\": \"n_a-527386\",\n    \"wordnet_id\": \"a-00136884\",\n    \"pos\": \"JJ\",\n    \"sense\": \"subject to or requiring payment especially as specified\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colorful\": {\n    \"form\": \"colorful\",\n    \"cornetto_synset_id\": \"n_a-503317\",\n    \"wordnet_id\": \"a-00402419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having striking color\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colossal\": {\n    \"form\": \"colossal\",\n    \"cornetto_synset_id\": \"n_a-510819\",\n    \"wordnet_id\": \"a-01384730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so great in size or force or extent as to elicit awe\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coma\": {\n    \"form\": \"coma\",\n    \"wordnet_id\": \"n-5680193\",\n    \"pos\": \"NN\",\n    \"sense\": \"a state of deep and often prolonged unconsciousness\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"come-at-able\": {\n    \"form\": \"come-at-able\",\n    \"cornetto_synset_id\": \"d_a-9549\",\n    \"wordnet_id\": \"a-00019505\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being reached or attained\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"comfortable\": {\n    \"form\": \"comfortable\",\n    \"cornetto_synset_id\": \"n_a-510492\",\n    \"wordnet_id\": \"a-00476819\",\n    \"pos\": \"JJ\",\n    \"sense\": \"providing or experiencing physical well-being or relief ('comfy' is informal)\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"comic\": {\n    \"form\": \"comic\",\n    \"wordnet_id\": \"a-02973392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of comedy\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"comical\": {\n    \"form\": \"comical\",\n    \"cornetto_synset_id\": \"n_a-515488\",\n    \"wordnet_id\": \"a-01265308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arousing or provoking laughter\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"commercial\": {\n    \"form\": \"commercial\",\n    \"cornetto_synset_id\": \"d_a-9621\",\n    \"wordnet_id\": \"a-00483146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"connected with or engaged in or sponsored by or used in commerce or commercial enterprises\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commercialism\": {\n    \"form\": \"commercialism\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"common\": {\n    \"form\": \"common\",\n    \"cornetto_synset_id\": \"n_a-522137\",\n    \"wordnet_id\": \"a-01593079\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or associated with the great masses of people\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"compelling\": {\n    \"form\": \"compelling\",\n    \"cornetto_synset_id\": \"n_a-518469\",\n    \"wordnet_id\": \"a-01826477\",\n    \"pos\": \"JJ\",\n    \"sense\": \"driving or forcing\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"competent\": {\n    \"form\": \"competent\",\n    \"wordnet_id\": \"a-00512130\",\n    \"pos\": \"JJ\",\n    \"sense\": \"legally qualified or sufficient\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complained\": {\n    \"form\": \"complained\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complaint\": {\n    \"form\": \"complaint\",\n    \"wordnet_id\": \"n-7208708\",\n    \"pos\": \"NN\",\n    \"sense\": \"an expression of grievance or resentment\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complete\": {\n    \"form\": \"complete\",\n    \"cornetto_synset_id\": \"n_a-533538\",\n    \"wordnet_id\": \"a-00520214\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having every necessary or normal part or component or step\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"complex\": {\n    \"form\": \"complex\",\n    \"cornetto_synset_id\": \"d_a-9348\",\n    \"wordnet_id\": \"a-02176178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"complicated in structure\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"complicated\": {\n    \"form\": \"complicated\",\n    \"wordnet_id\": \"a-02177584\",\n    \"pos\": \"JJ\",\n    \"sense\": \"difficult to analyze or understand\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complimentary\": {\n    \"form\": \"complimentary\",\n    \"cornetto_synset_id\": \"n_a-511409\",\n    \"wordnet_id\": \"a-01710260\",\n    \"pos\": \"JJ\",\n    \"sense\": \"costing nothing\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"comprehensible\": {\n    \"form\": \"comprehensible\",\n    \"cornetto_synset_id\": \"n_a-503401\",\n    \"wordnet_id\": \"a-00532892\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being comprehended or understood\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"concavo-convex\": {\n    \"form\": \"concavo-convex\",\n    \"cornetto_synset_id\": \"d_a-9198\",\n    \"wordnet_id\": \"a-00536416\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concave on one side and convex on the other with the concavity being greater than the convexity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conceivable\": {\n    \"form\": \"conceivable\",\n    \"cornetto_synset_id\": \"n_a-519143\",\n    \"wordnet_id\": \"a-02418249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being imagined\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conceptional\": {\n    \"form\": \"conceptional\",\n    \"cornetto_synset_id\": \"n_a-532913\",\n    \"wordnet_id\": \"a-00012071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of the nature of a notion or concept\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"concise\": {\n    \"form\": \"concise\",\n    \"cornetto_synset_id\": \"n_a-526554\",\n    \"wordnet_id\": \"a-00546646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing much in few words\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"concrete\": {\n    \"form\": \"concrete\",\n    \"cornetto_synset_id\": \"n_a-533395\",\n    \"wordnet_id\": \"a-00013160\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being perceived by the senses\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confident\": {\n    \"form\": \"confident\",\n    \"wordnet_id\": \"a-00338817\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or marked by confidence or assurance\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"confirmed\": {\n    \"form\": \"confirmed\",\n    \"cornetto_synset_id\": \"n_a-522411\",\n    \"wordnet_id\": \"a-00347571\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of persons\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confused\": {\n    \"form\": \"confused\",\n    \"cornetto_synset_id\": \"n_a-521272\",\n    \"wordnet_id\": \"a-00465221\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking orderly continuity\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confusing\": {\n    \"form\": \"confusing\",\n    \"wordnet_id\": \"a-01685706\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing confusion or disorientation\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"conscious\": {\n    \"form\": \"conscious\",\n    \"cornetto_synset_id\": \"n_a-503988\",\n    \"wordnet_id\": \"a-00570590\",\n    \"pos\": \"JJ\",\n    \"sense\": \"knowing and perceiving\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"consecrated\": {\n    \"form\": \"consecrated\",\n    \"cornetto_synset_id\": \"d_a-9328\",\n    \"wordnet_id\": \"a-02054310\",\n    \"pos\": \"JJ\",\n    \"sense\": \"made or declared or believed to be holy\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"considerable\": {\n    \"form\": \"considerable\",\n    \"cornetto_synset_id\": \"d_a-9321\",\n    \"wordnet_id\": \"a-00624026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"large or relatively large in number or amount or extent or degree\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"consistent\": {\n    \"form\": \"consistent\",\n    \"wordnet_id\": \"a-01867996\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being reproduced\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"constant\": {\n    \"form\": \"constant\",\n    \"wordnet_id\": \"a-02506029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unvarying in nature\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"consummate\": {\n    \"form\": \"consummate\",\n    \"cornetto_synset_id\": \"n_a-533118\",\n    \"wordnet_id\": \"a-02226979\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or revealing supreme mastery or skill\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contemporary\": {\n    \"form\": \"contemporary\",\n    \"wordnet_id\": \"a-02378872\",\n    \"pos\": \"JJ\",\n    \"sense\": \"occurring in the same period of time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contestable\": {\n    \"form\": \"contestable\",\n    \"cornetto_synset_id\": \"n_a-531602\",\n    \"wordnet_id\": \"a-00590390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being contested\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contingent\": {\n    \"form\": \"contingent\",\n    \"cornetto_synset_id\": \"n_a-508594\",\n    \"wordnet_id\": \"a-00341933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"uncertain because of uncontrollable circumstances\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contrived\": {\n    \"form\": \"contrived\",\n    \"wordnet_id\": \"a-01797394\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing effects of planning or manipulation\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"controversial\": {\n    \"form\": \"controversial\",\n    \"cornetto_synset_id\": \"n_a-522093\",\n    \"wordnet_id\": \"a-00601783\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by or capable of arousing controversy\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conventional\": {\n    \"form\": \"conventional\",\n    \"wordnet_id\": \"a-01980796\",\n    \"pos\": \"JJ\",\n    \"sense\": \"represented in simplified or symbolic form\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"convex\": {\n    \"form\": \"convex\",\n    \"cornetto_synset_id\": \"n_a-524566\",\n    \"wordnet_id\": \"a-00537339\",\n    \"pos\": \"JJ\",\n    \"sense\": \"curving or bulging outward\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"convincing\": {\n    \"form\": \"convincing\",\n    \"wordnet_id\": \"a-00614990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing one to believe the truth of something\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cool\": {\n    \"form\": \"cool\",\n    \"cornetto_synset_id\": \"n_a-515498\",\n    \"wordnet_id\": \"a-02529945\",\n    \"pos\": \"JJ\",\n    \"sense\": \"neither warm nor very cold\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coriaceous\": {\n    \"form\": \"coriaceous\",\n    \"cornetto_synset_id\": \"n_a-530127\",\n    \"wordnet_id\": \"a-02446070\",\n    \"pos\": \"JJ\",\n    \"sense\": \"resembling or made to resemble leather\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"corporate\": {\n    \"form\": \"corporate\",\n    \"wordnet_id\": \"a-02112701\",\n    \"pos\": \"JJ\",\n    \"sense\": \"done by or characteristic of individuals acting together\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"corpulent\": {\n    \"form\": \"corpulent\",\n    \"cornetto_synset_id\": \"d_a-9231\",\n    \"wordnet_id\": \"a-00987180\",\n    \"pos\": \"JJ\",\n    \"sense\": \"excessively fat\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"corrupt\": {\n    \"form\": \"corrupt\",\n    \"wordnet_id\": \"a-02319129\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not straight\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"corruptible\": {\n    \"form\": \"corruptible\",\n    \"cornetto_synset_id\": \"n_a-520969\",\n    \"wordnet_id\": \"a-00621207\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being corrupted\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cosmopolitan\": {\n    \"form\": \"cosmopolitan\",\n    \"cornetto_synset_id\": \"n_a-534652\",\n    \"wordnet_id\": \"a-00527188\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of worldwide scope or applicability\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"countless\": {\n    \"form\": \"countless\",\n    \"cornetto_synset_id\": \"n_a-521120\",\n    \"wordnet_id\": \"a-00301951\",\n    \"pos\": \"JJ\",\n    \"sense\": \"too numerous to be counted\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courteous\": {\n    \"form\": \"courteous\",\n    \"cornetto_synset_id\": \"n_a-520837\",\n    \"wordnet_id\": \"a-00641460\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exhibiting courtesy and politeness\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cow\": {\n    \"form\": \"cow\",\n    \"wordnet_id\": \"n-9972587\",\n    \"pos\": \"NN\",\n    \"sense\": \"a large unpleasant woman\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"cozy\": {\n    \"form\": \"cozy\",\n    \"cornetto_synset_id\": \"n_a-527962\",\n    \"wordnet_id\": \"a-00477284\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enjoying or affording comforting warmth and shelter especially in a small space\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crafty\": {\n    \"form\": \"crafty\",\n    \"cornetto_synset_id\": \"n_a-520935\",\n    \"wordnet_id\": \"a-00148078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by skill in deception\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crap\": {\n    \"form\": \"crap\",\n    \"wordnet_id\": \"n-14854581\",\n    \"pos\": \"NN\",\n    \"sense\": \"obscene terms for feces\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"crazy\": {\n    \"form\": \"crazy\",\n    \"cornetto_synset_id\": \"n_a-509995\",\n    \"wordnet_id\": \"a-01836766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"foolish\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"creative\": {\n    \"form\": \"creative\",\n    \"wordnet_id\": \"a-00643250\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the ability or power to create\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"credible\": {\n    \"form\": \"credible\",\n    \"cornetto_synset_id\": \"d_a-9295\",\n    \"wordnet_id\": \"a-00644839\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being believed\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"creepy\": {\n    \"form\": \"creepy\",\n    \"wordnet_id\": \"a-01625760\",\n    \"pos\": \"JJ\",\n    \"sense\": \"annoying and unpleasant\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"criminal\": {\n    \"form\": \"criminal\",\n    \"cornetto_synset_id\": \"n_a-529626\",\n    \"wordnet_id\": \"a-01402763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving or being or having the nature of a crime\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crisp\": {\n    \"form\": \"crisp\",\n    \"wordnet_id\": \"a-02446931\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tender and brittle\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"critical\": {\n    \"form\": \"critical\",\n    \"cornetto_synset_id\": \"n_a-516169\",\n    \"wordnet_id\": \"a-00647542\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by a tendency to find and call attention to errors and flaws\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crooked\": {\n    \"form\": \"crooked\",\n    \"cornetto_synset_id\": \"n_a-516188\",\n    \"wordnet_id\": \"a-02311544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or marked by bends or angles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cross\": {\n    \"form\": \"cross\",\n    \"cornetto_synset_id\": \"n_a-507846\",\n    \"wordnet_id\": \"a-01445917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extending or lying across\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crucial\": {\n    \"form\": \"crucial\",\n    \"wordnet_id\": \"a-01487943\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having crucial relevance\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cruddy\": {\n    \"form\": \"cruddy\",\n    \"cornetto_synset_id\": \"n_a-534008\",\n    \"wordnet_id\": \"a-00425313\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by obscenity\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crude\": {\n    \"form\": \"crude\",\n    \"cornetto_synset_id\": \"n_a-523583\",\n    \"wordnet_id\": \"a-00683531\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conspicuously and tastelessly indecent\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cruel\": {\n    \"form\": \"cruel\",\n    \"cornetto_synset_id\": \"c_182\",\n    \"wordnet_id\": \"a-01263013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of persons or their actions) able or disposed to inflict pain or suffering\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"crushed\": {\n    \"form\": \"crushed\",\n    \"wordnet_id\": \"a-2240668\",\n    \"pos\": \"JJ\",\n    \"sense\": \"treated so as to have a permanently wrinkled appearance\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"crushing\": {\n    \"form\": \"crushing\",\n    \"cornetto_synset_id\": \"n_a-522429\",\n    \"wordnet_id\": \"a-00587697\",\n    \"pos\": \"JJ\",\n    \"sense\": \"physically or spiritually devastating\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crying\": {\n    \"form\": \"crying\",\n    \"cornetto_synset_id\": \"n_a-511570\",\n    \"wordnet_id\": \"a-00580039\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conspicuously and outrageously bad or reprehensible\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"culinary\": {\n    \"form\": \"culinary\",\n    \"cornetto_synset_id\": \"n_a-506204\",\n    \"wordnet_id\": \"a-02707659\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or used in cooking\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cultural\": {\n    \"form\": \"cultural\",\n    \"cornetto_synset_id\": \"n_a-506208\",\n    \"wordnet_id\": \"a-02248693\",\n    \"pos\": \"JJ\",\n    \"sense\": \"denoting or deriving from or distinctive of the ways of living built up by a group of people\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cunning\": {\n    \"form\": \"cunning\",\n    \"cornetto_synset_id\": \"n_a-530216\",\n    \"wordnet_id\": \"a-00167278\",\n    \"pos\": \"JJ\",\n    \"sense\": \"attractive especially by means of smallness or prettiness or quaintness\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"curious\": {\n    \"form\": \"curious\",\n    \"cornetto_synset_id\": \"n_a-520024\",\n    \"wordnet_id\": \"a-00664449\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eager to investigate and learn or learn more (sometimes about others' concerns)\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"current\": {\n    \"form\": \"current\",\n    \"cornetto_synset_id\": \"n_a-510863\",\n    \"wordnet_id\": \"a-00666058\",\n    \"pos\": \"JJ\",\n    \"sense\": \"occurring in or belonging to the present time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cursive\": {\n    \"form\": \"cursive\",\n    \"cornetto_synset_id\": \"n_a-506240\",\n    \"wordnet_id\": \"a-02285035\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having successive letter joined together\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cushy\": {\n    \"form\": \"cushy\",\n    \"cornetto_synset_id\": \"n_a-532549\",\n    \"wordnet_id\": \"a-00750054\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not burdensome or demanding\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cute\": {\n    \"form\": \"cute\",\n    \"wordnet_id\": \"a-00148642\",\n    \"pos\": \"JJ\",\n    \"sense\": \"obviously contrived to charm\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cutting\": {\n    \"form\": \"cutting\",\n    \"cornetto_synset_id\": \"n_a-512119\",\n    \"wordnet_id\": \"a-01374004\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of speech) harsh or hurtful in tone or character\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cynical\": {\n    \"form\": \"cynical\",\n    \"cornetto_synset_id\": \"d_a-9220\",\n    \"wordnet_id\": \"a-02463582\",\n    \"pos\": \"JJ\",\n    \"sense\": \"believing the worst of human nature and motives\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"daily\": {\n    \"form\": \"daily\",\n    \"wordnet_id\": \"a-01968165\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or belonging to or occurring every day\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dainty\": {\n    \"form\": \"dainty\",\n    \"cornetto_synset_id\": \"n_a-512200\",\n    \"wordnet_id\": \"a-02396578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"especially pleasing to the taste\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dangerous\": {\n    \"form\": \"dangerous\",\n    \"cornetto_synset_id\": \"n_a-510726\",\n    \"wordnet_id\": \"a-02058794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving or causing danger or risk\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dark\": {\n    \"form\": \"dark\",\n    \"cornetto_synset_id\": \"n_a-507208\",\n    \"wordnet_id\": \"a-00409440\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used of color) having a dark hue\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dazed\": {\n    \"form\": \"dazed\",\n    \"cornetto_synset_id\": \"n_a-534205\",\n    \"wordnet_id\": \"a-00875962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stunned or confused and slow to react (as from blows or drunkenness or exhaustion)\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dazzling\": {\n    \"form\": \"dazzling\",\n    \"wordnet_id\": \"a-01283787\",\n    \"pos\": \"JJ\",\n    \"sense\": \"amazingly impressive\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dead\": {\n    \"form\": \"dead\",\n    \"cornetto_synset_id\": \"d_a-9236\",\n    \"wordnet_id\": \"a-00095280\",\n    \"pos\": \"JJ\",\n    \"sense\": \"no longer having or seeming to have or expecting to have life\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"deadly\": {\n    \"form\": \"deadly\",\n    \"wordnet_id\": \"a-02449952\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extremely poisonous or injurious\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"deadpan\": {\n    \"form\": \"deadpan\",\n    \"cornetto_synset_id\": \"n_a-516876\",\n    \"wordnet_id\": \"a-00501313\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deliberately impassive in manner\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"debauched\": {\n    \"form\": \"debauched\",\n    \"cornetto_synset_id\": \"n_a-523199\",\n    \"wordnet_id\": \"a-01549568\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unrestrained by convention or morality\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"decent\": {\n    \"form\": \"decent\",\n    \"wordnet_id\": \"a-02336109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sufficient for the purpose\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"decreased\": {\n    \"form\": \"decreased\",\n    \"cornetto_synset_id\": \"n_a-503624\",\n    \"wordnet_id\": \"a-00881735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"made less in size or amount or degree\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"deep\": {\n    \"form\": \"deep\",\n    \"cornetto_synset_id\": \"n_a-506859\",\n    \"wordnet_id\": \"a-02561391\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extending relatively far inward\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"defecates\": {\n    \"form\": \"defecates\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"defenseless\": {\n    \"form\": \"defenseless\",\n    \"cornetto_synset_id\": \"n_a-534459\",\n    \"wordnet_id\": \"a-00143376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking weapons for self-defense\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"deficient\": {\n    \"form\": \"deficient\",\n    \"cornetto_synset_id\": \"n_a-521653\",\n    \"wordnet_id\": \"a-02297409\",\n    \"pos\": \"JJ\",\n    \"sense\": \"falling short of some prescribed norm\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"definite\": {\n    \"form\": \"definite\",\n    \"wordnet_id\": \"a-00700451\",\n    \"pos\": \"JJ\",\n    \"sense\": \"precise\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"definitely\": {\n    \"form\": \"definitely\",\n    \"wordnet_id\": \"r-00036935\",\n    \"pos\": \"RB\",\n    \"sense\": \"without question and beyond doubt\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"deft\": {\n    \"form\": \"deft\",\n    \"cornetto_synset_id\": \"n_a-511953\",\n    \"wordnet_id\": \"a-00062367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"skillful in physical movements\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"delicate\": {\n    \"form\": \"delicate\",\n    \"cornetto_synset_id\": \"n_a-511757\",\n    \"wordnet_id\": \"a-00746994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"difficult to handle\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"delicious\": {\n    \"form\": \"delicious\",\n    \"wordnet_id\": \"a-02396720\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extremely pleasing to the sense of taste\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"delighted\": {\n    \"form\": \"delighted\",\n    \"wordnet_id\": \"a-01805730\",\n    \"pos\": \"JJ\",\n    \"sense\": \"greatly pleased\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"delightful\": {\n    \"form\": \"delightful\",\n    \"cornetto_synset_id\": \"n_a-525760\",\n    \"wordnet_id\": \"a-01807964\",\n    \"pos\": \"JJ\",\n    \"sense\": \"greatly pleasing or entertaining\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"deluxe\": {\n    \"form\": \"deluxe\",\n    \"cornetto_synset_id\": \"d_a-9393\",\n    \"wordnet_id\": \"a-00850053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"elegant and sumptuous\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"denominational\": {\n    \"form\": \"denominational\",\n    \"cornetto_synset_id\": \"n_a-505556\",\n    \"wordnet_id\": \"a-02710825\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or characteristic of a particular religious denomination\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"deplorable\": {\n    \"form\": \"deplorable\",\n    \"cornetto_synset_id\": \"n_a-507607\",\n    \"wordnet_id\": \"a-01126841\",\n    \"pos\": \"JJ\",\n    \"sense\": \"bad\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"depress\": {\n    \"form\": \"depress\",\n    \"wordnet_id\": \"v-225438\",\n    \"pos\": \"VB\",\n    \"sense\": \"lessen the activity or force of\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"depressing\": {\n    \"form\": \"depressing\",\n    \"cornetto_synset_id\": \"n_a-528326\",\n    \"wordnet_id\": \"a-00364479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing sad feelings of gloom and inadequacy\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"deserving\": {\n    \"form\": \"deserving\",\n    \"cornetto_synset_id\": \"n_a-534093\",\n    \"wordnet_id\": \"a-02586206\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of being treated in a particular way\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"desperate\": {\n    \"form\": \"desperate\",\n    \"cornetto_synset_id\": \"d_a-9340\",\n    \"wordnet_id\": \"a-00263463\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing extreme courage\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"destroy\": {\n    \"form\": \"destroy\",\n    \"wordnet_id\": \"v-1619929\",\n    \"pos\": \"VB\",\n    \"sense\": \"do away with, cause the destruction or undoing of\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"destroying\": {\n    \"form\": \"destroying\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"destructive\": {\n    \"form\": \"destructive\",\n    \"cornetto_synset_id\": \"n_a-520118\",\n    \"wordnet_id\": \"a-00586183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing destruction or much damage\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"detailed\": {\n    \"form\": \"detailed\",\n    \"cornetto_synset_id\": \"n_a-509831\",\n    \"wordnet_id\": \"a-00310433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"developed or executed with care and in minute detail\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"devastating\": {\n    \"form\": \"devastating\",\n    \"wordnet_id\": \"a-01995047\",\n    \"pos\": \"JJ\",\n    \"sense\": \"making light of\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"developed\": {\n    \"form\": \"developed\",\n    \"cornetto_synset_id\": \"n_a-521523\",\n    \"wordnet_id\": \"a-00741867\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being changed over time so as to be e.g. stronger or more complete or more useful\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"devoid\": {\n    \"form\": \"devoid\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"dextral\": {\n    \"form\": \"dextral\",\n    \"cornetto_synset_id\": \"d_a-9501\",\n    \"wordnet_id\": \"a-00742879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or on the right\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dialectal\": {\n    \"form\": \"dialectal\",\n    \"cornetto_synset_id\": \"n_a-506784\",\n    \"wordnet_id\": \"a-03004561\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to or characteristic of a dialect\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"diaphanous\": {\n    \"form\": \"diaphanous\",\n    \"cornetto_synset_id\": \"n_a-509141\",\n    \"wordnet_id\": \"a-02413390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so thin as to transmit light\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"didactic\": {\n    \"form\": \"didactic\",\n    \"cornetto_synset_id\": \"n_a-503950\",\n    \"wordnet_id\": \"a-01324131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"instructive (especially excessively)\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"different\": {\n    \"form\": \"different\",\n    \"wordnet_id\": \"a-02070342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"distinct or separate\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"difficult\": {\n    \"form\": \"difficult\",\n    \"wordnet_id\": \"a-01475282\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hard to control\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"diffident\": {\n    \"form\": \"diffident\",\n    \"cornetto_synset_id\": \"n_a-532538\",\n    \"wordnet_id\": \"a-00339941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking self-confidence\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"digital\": {\n    \"form\": \"digital\",\n    \"cornetto_synset_id\": \"n_a-506928\",\n    \"wordnet_id\": \"a-02713096\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or performed with the fingers\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dim\": {\n    \"form\": \"dim\",\n    \"cornetto_synset_id\": \"n_a-535267\",\n    \"wordnet_id\": \"a-00275290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in light\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dim-witted\": {\n    \"form\": \"dim-witted\",\n    \"cornetto_synset_id\": \"c_579\",\n    \"wordnet_id\": \"a-01841390\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking mental capacity and subtlety\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"direct\": {\n    \"form\": \"direct\",\n    \"cornetto_synset_id\": \"n_a-517075\",\n    \"wordnet_id\": \"a-00914808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in precisely the same words used by a writer or speaker\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dirty\": {\n    \"form\": \"dirty\",\n    \"cornetto_synset_id\": \"d_a-9604\",\n    \"wordnet_id\": \"a-00419289\",\n    \"pos\": \"JJ\",\n    \"sense\": \"soiled or likely to soil with dirt or grime\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"disabled\": {\n    \"form\": \"disabled\",\n    \"cornetto_synset_id\": \"n_a-509936\",\n    \"wordnet_id\": \"a-01019283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of functioning as a consequence of injury or illness\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"disappointed\": {\n    \"form\": \"disappointed\",\n    \"wordnet_id\": \"a-02333976\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disappointingly unsuccessful\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"disappointing\": {\n    \"form\": \"disappointing\",\n    \"cornetto_synset_id\": \"n_a-520738\",\n    \"wordnet_id\": \"a-02082611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not up to expectations\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"disappointment\": {\n    \"form\": \"disappointment\",\n    \"wordnet_id\": \"n-7540602\",\n    \"pos\": \"NN\",\n    \"sense\": \"a feeling of dissatisfaction that results when your expectations are not realized\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"disastrous\": {\n    \"form\": \"disastrous\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"disbelieving\": {\n    \"form\": \"disbelieving\",\n    \"cornetto_synset_id\": \"n_a-526640\",\n    \"wordnet_id\": \"a-00647247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"denying or questioning the tenets of especially a religion\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"discourteous\": {\n    \"form\": \"discourteous\",\n    \"cornetto_synset_id\": \"n_a-521675\",\n    \"wordnet_id\": \"a-00640283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing no courtesy\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"diseased\": {\n    \"form\": \"diseased\",\n    \"cornetto_synset_id\": \"n_a-535644\",\n    \"wordnet_id\": \"a-01176246\",\n    \"pos\": \"JJ\",\n    \"sense\": \"caused by or altered by or manifesting disease or pathology\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"disgusted\": {\n    \"form\": \"disgusted\",\n    \"wordnet_id\": \"a-1806677\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a strong distaste from surfeit\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"disgusting\": {\n    \"form\": \"disgusting\",\n    \"wordnet_id\": \"a-01625893\",\n    \"pos\": \"JJ\",\n    \"sense\": \"highly offensive\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dishonest\": {\n    \"form\": \"dishonest\",\n    \"wordnet_id\": \"a-1222884\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deceptive or fraudulent\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"disliked\": {\n    \"form\": \"disliked\",\n    \"wordnet_id\": \"a-1461455\",\n    \"pos\": \"JJ\",\n    \"sense\": \"regarded with aversion\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dispossessed\": {\n    \"form\": \"dispossessed\",\n    \"cornetto_synset_id\": \"n_a-506356\",\n    \"wordnet_id\": \"a-01050603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"physically or spiritually homeless or deprived of security\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distant\": {\n    \"form\": \"distant\",\n    \"cornetto_synset_id\": \"n_a-532249\",\n    \"wordnet_id\": \"a-00450606\",\n    \"pos\": \"JJ\",\n    \"sense\": \"far apart in relevance or relationship or kinship \",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distasteful\": {\n    \"form\": \"distasteful\",\n    \"wordnet_id\": \"a-1716971\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not pleasing in odor or taste\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"distinct\": {\n    \"form\": \"distinct\",\n    \"wordnet_id\": \"a-02110778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"constituting a separate entity or part\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"distraught\": {\n    \"form\": \"distraught\",\n    \"cornetto_synset_id\": \"n_a-534204\",\n    \"wordnet_id\": \"a-00085870\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deeply agitated especially from emotion\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"disturbing\": {\n    \"form\": \"disturbing\",\n    \"wordnet_id\": \"a-01189386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing distress or worry or anxiety\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"diurnal\": {\n    \"form\": \"diurnal\",\n    \"cornetto_synset_id\": \"n_a-506313\",\n    \"wordnet_id\": \"a-01968033\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a daily cycle or occurring every day\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"documentary\": {\n    \"form\": \"documentary\",\n    \"wordnet_id\": \"a-01934026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"emphasizing or expressing things as perceived without distortion of personal feelings, insertion of fictional matter, or interpretation\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"domestic\": {\n    \"form\": \"domestic\",\n    \"cornetto_synset_id\": \"n_a-513054\",\n    \"wordnet_id\": \"a-01036754\",\n    \"pos\": \"JJ\",\n    \"sense\": \"produced in a particular country\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"done with\": {\n    \"form\": \"done with\",\n    \"cornetto_synset_id\": \"c_586\",\n    \"wordnet_id\": \"a-01003822\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no further concern with\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"double\": {\n    \"form\": \"double\",\n    \"wordnet_id\": \"a-02220308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of flowers having more than the usual number of petals in crowded or overlapping arrangements\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"doubtful\": {\n    \"form\": \"doubtful\",\n    \"cornetto_synset_id\": \"d_a-9434\",\n    \"wordnet_id\": \"a-00338013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fraught with uncertainty or doubt\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dowdy\": {\n    \"form\": \"dowdy\",\n    \"cornetto_synset_id\": \"n_a-531402\",\n    \"wordnet_id\": \"a-00974519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"primly out of date\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"down\": {\n    \"form\": \"down\",\n    \"wordnet_id\": \"a-02491961\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or moving lower in position or less in some value\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"drag\": {\n    \"form\": \"drag\",\n    \"wordnet_id\": \"v-783689\",\n    \"pos\": \"VB\",\n    \"sense\": \"persuade to come away from something attractive or interesting\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"dramatic\": {\n    \"form\": \"dramatic\",\n    \"cornetto_synset_id\": \"n_a-522888\",\n    \"wordnet_id\": \"a-00794825\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suitable to or characteristic of drama\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dreadful\": {\n    \"form\": \"dreadful\",\n    \"wordnet_id\": \"a-01803247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very unpleasant\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dried\": {\n    \"form\": \"dried\",\n    \"cornetto_synset_id\": \"n_a-531691\",\n    \"wordnet_id\": \"a-01072382\",\n    \"pos\": \"JJ\",\n    \"sense\": \"preserved by removing natural moisture\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"drowned\": {\n    \"form\": \"drowned\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"drunk\": {\n    \"form\": \"drunk\",\n    \"wordnet_id\": \"a-00920260\",\n    \"pos\": \"JJ\",\n    \"sense\": \"as if under the influence of alcohol\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dry\": {\n    \"form\": \"dry\",\n    \"cornetto_synset_id\": \"n_a-507618\",\n    \"wordnet_id\": \"a-01266092\",\n    \"pos\": \"JJ\",\n    \"sense\": \"humorously sarcastic or mocking\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dudsville\": {\n    \"form\": \"dudsville\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNP\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"due\": {\n    \"form\": \"due\",\n    \"wordnet_id\": \"a-00929916\",\n    \"pos\": \"JJ\",\n    \"sense\": \"scheduled to arrive\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"duh\": {\n    \"form\": \"duh\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"duhhh\": {\n    \"form\": \"duhhh\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"duhhhh\": {\n    \"form\": \"duhhhh\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"duuuh\": {\n    \"form\": \"duuuh\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dull\": {\n    \"form\": \"dull\",\n    \"wordnet_id\": \"a-02107634\",\n    \"pos\": \"JJ\",\n    \"sense\": \"blunted in responsiveness or sensibility\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dulls\": {\n    \"form\": \"dulls\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"dumb\": {\n    \"form\": \"dumb\",\n    \"wordnet_id\": \"a-00440579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"slow to learn or understand\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dusty\": {\n    \"form\": \"dusty\",\n    \"cornetto_synset_id\": \"n_a-529401\",\n    \"wordnet_id\": \"a-01696346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"covered with a layer of dust\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dynamic\": {\n    \"form\": \"dynamic\",\n    \"wordnet_id\": \"a-02979878\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to dynamics\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"earlier\": {\n    \"form\": \"earlier\",\n    \"wordnet_id\": \"a-00814611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(comparative and superlative of 'early') more early than\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"early\": {\n    \"form\": \"early\",\n    \"cornetto_synset_id\": \"n_a-533928\",\n    \"wordnet_id\": \"a-00812952\",\n    \"pos\": \"JJ\",\n    \"sense\": \"at or near the beginning of a period of time or course of events or before the usual or expected time\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"easy\": {\n    \"form\": \"easy\",\n    \"cornetto_synset_id\": \"n_a-533319\",\n    \"wordnet_id\": \"a-00749230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"posing no difficulty\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"eccentric\": {\n    \"form\": \"eccentric\",\n    \"cornetto_synset_id\": \"n_a-531732\",\n    \"wordnet_id\": \"a-00608791\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conspicuously or grossly unconventional or unusual\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ecological\": {\n    \"form\": \"ecological\",\n    \"cornetto_synset_id\": \"n_a-518890\",\n    \"wordnet_id\": \"a-02906778\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by the interdependence of living organisms in an environment\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"economic\": {\n    \"form\": \"economic\",\n    \"wordnet_id\": \"a-02716739\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to an economy, the system of production and management of material wealth\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"economical\": {\n    \"form\": \"economical\",\n    \"cornetto_synset_id\": \"d_a-9525\",\n    \"wordnet_id\": \"a-02421364\",\n    \"pos\": \"JJ\",\n    \"sense\": \"avoiding waste\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"edgy\": {\n    \"form\": \"edgy\",\n    \"cornetto_synset_id\": \"n_a-535556\",\n    \"wordnet_id\": \"a-02406370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being in a tense state\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"educational\": {\n    \"form\": \"educational\",\n    \"wordnet_id\": \"a-02946221\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to the process of education\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"eerie\": {\n    \"form\": \"eerie\",\n    \"wordnet_id\": \"a-01575299\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suggestive of the supernatural\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"effective\": {\n    \"form\": \"effective\",\n    \"cornetto_synset_id\": \"n_a-507125\",\n    \"wordnet_id\": \"a-00834198\",\n    \"pos\": \"JJ\",\n    \"sense\": \"producing or capable of producing an intended result or having a striking effect\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effing\": {\n    \"form\": \"effing\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"egoistic\": {\n    \"form\": \"egoistic\",\n    \"cornetto_synset_id\": \"n_a-508087\",\n    \"wordnet_id\": \"a-00101800\",\n    \"pos\": \"JJ\",\n    \"sense\": \"limited to or caring only about yourself and your own needs\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"elaborate\": {\n    \"form\": \"elaborate\",\n    \"wordnet_id\": \"a-01795933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by complexity and richness of detail\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"elect\": {\n    \"form\": \"elect\",\n    \"cornetto_synset_id\": \"n_a-531698\",\n    \"wordnet_id\": \"a-02123579\",\n    \"pos\": \"JJ\",\n    \"sense\": \"selected as the best\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"elegant\": {\n    \"form\": \"elegant\",\n    \"wordnet_id\": \"a-01142069\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suggesting taste, ease, and wealth\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"elementary\": {\n    \"form\": \"elementary\",\n    \"cornetto_synset_id\": \"d_a-9254\",\n    \"wordnet_id\": \"a-00750296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easy and not involved or complicated\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"emotional\": {\n    \"form\": \"emotional\",\n    \"cornetto_synset_id\": \"n_a-508280\",\n    \"wordnet_id\": \"a-00853776\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of more than usual emotion\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"empirical\": {\n    \"form\": \"empirical\",\n    \"cornetto_synset_id\": \"n_a-524456\",\n    \"wordnet_id\": \"a-00858917\",\n    \"pos\": \"JJ\",\n    \"sense\": \"derived from experiment and observation rather than theory\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"empty\": {\n    \"form\": \"empty\",\n    \"cornetto_synset_id\": \"n_a-520215\",\n    \"wordnet_id\": \"a-01269319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"needing nourishment\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"endearing\": {\n    \"form\": \"endearing\",\n    \"wordnet_id\": \"a-01459755\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lovable especially in a childlike or naive way\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"endless\": {\n    \"form\": \"endless\",\n    \"wordnet_id\": \"a-01439784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tiresomely long\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"energetic\": {\n    \"form\": \"energetic\",\n    \"wordnet_id\": \"a-00885099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"working hard to promote an enterprise\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"engaging\": {\n    \"form\": \"engaging\",\n    \"cornetto_synset_id\": \"n_a-523357\",\n    \"wordnet_id\": \"a-00167671\",\n    \"pos\": \"JJ\",\n    \"sense\": \"attracting or delighting\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"english\": {\n    \"form\": \"english\",\n    \"wordnet_id\": \"a-03003616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the English language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"engrossing\": {\n    \"form\": \"engrossing\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enigmatic\": {\n    \"form\": \"enigmatic\",\n    \"cornetto_synset_id\": \"d_a-9495\",\n    \"wordnet_id\": \"a-00102930\",\n    \"pos\": \"JJ\",\n    \"sense\": \"resembling an oracle in obscurity of thought\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enjoy\": {\n    \"form\": \"enjoy\",\n    \"wordnet_id\": \"v-1820302\",\n    \"pos\": \"VB\",\n    \"sense\": \"derive or receive pleasure from\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enjoyable\": {\n    \"form\": \"enjoyable\",\n    \"wordnet_id\": \"a-01801029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affording satisfaction or pleasure\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enjoyed\": {\n    \"form\": \"enjoyed\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enjoying\": {\n    \"form\": \"enjoying\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enlightening\": {\n    \"form\": \"enlightening\",\n    \"cornetto_synset_id\": \"n_a-516919\",\n    \"wordnet_id\": \"a-01325777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tending to increase knowledge or dissipate ignorance\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enormous\": {\n    \"form\": \"enormous\",\n    \"cornetto_synset_id\": \"c_267\",\n    \"wordnet_id\": \"a-01385255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extraordinarily large in size or extent or amount or power or degree\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enough\": {\n    \"form\": \"enough\",\n    \"wordnet_id\": \"a-02336109\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sufficient for the purpose\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entertaining\": {\n    \"form\": \"entertaining\",\n    \"wordnet_id\": \"a-01344344\",\n    \"pos\": \"JJ\",\n    \"sense\": \"agreeably diverting\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enthusiastic\": {\n    \"form\": \"enthusiastic\",\n    \"cornetto_synset_id\": \"d_a-9262\",\n    \"wordnet_id\": \"a-00885695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing great excitement and interest\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"entire\": {\n    \"form\": \"entire\",\n    \"wordnet_id\": \"a-02244890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of leaves or petals) having a smooth edge\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"epic\": {\n    \"form\": \"epic\",\n    \"cornetto_synset_id\": \"n_a-508404\",\n    \"wordnet_id\": \"a-03015589\",\n    \"pos\": \"JJ\",\n    \"sense\": \"constituting or having to do with or suggestive of a literary epic\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"equal\": {\n    \"form\": \"equal\",\n    \"wordnet_id\": \"a-00889831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the same quantity, value, or measure as another\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"erotic\": {\n    \"form\": \"erotic\",\n    \"cornetto_synset_id\": \"n_a-522082\",\n    \"wordnet_id\": \"a-02132080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"giving sexual pleasure\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"erroneous\": {\n    \"form\": \"erroneous\",\n    \"cornetto_synset_id\": \"n_a-509314\",\n    \"wordnet_id\": \"a-00632949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"containing or characterized by error\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"erstwhile\": {\n    \"form\": \"erstwhile\",\n    \"cornetto_synset_id\": \"n_a-522211\",\n    \"wordnet_id\": \"a-01729566\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to some prior time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"erudite\": {\n    \"form\": \"erudite\",\n    \"cornetto_synset_id\": \"n_a-510118\",\n    \"wordnet_id\": \"a-02084358\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing profound knowledge\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"especially\": {\n    \"form\": \"especially\",\n    \"wordnet_id\": \"r-00084223\",\n    \"pos\": \"RB\",\n    \"sense\": \"to a distinctly greater extent or degree than is common\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"essential\": {\n    \"form\": \"essential\",\n    \"cornetto_synset_id\": \"d_a-9349\",\n    \"wordnet_id\": \"a-00900616\",\n    \"pos\": \"JJ\",\n    \"sense\": \"basic and fundamental\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ethical\": {\n    \"form\": \"ethical\",\n    \"cornetto_synset_id\": \"n_a-535368\",\n    \"wordnet_id\": \"a-00905386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming to accepted standards of social or professional behavior\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"european\": {\n    \"form\": \"european\",\n    \"wordnet_id\": \"a-02968325\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Europe or the people of Europe\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"everyday\": {\n    \"form\": \"everyday\",\n    \"cornetto_synset_id\": \"n_a-506314\",\n    \"wordnet_id\": \"a-01674242\",\n    \"pos\": \"JJ\",\n    \"sense\": \"found in the ordinary course of events\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"evident\": {\n    \"form\": \"evident\",\n    \"cornetto_synset_id\": \"n_a-534100\",\n    \"wordnet_id\": \"a-01287486\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being seen or noticed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"evil\": {\n    \"form\": \"evil\",\n    \"wordnet_id\": \"a-02514099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the nature of vice\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exact\": {\n    \"form\": \"exact\",\n    \"wordnet_id\": \"a-00914421\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by strict and particular and complete accordance with fact\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exaggerated\": {\n    \"form\": \"exaggerated\",\n    \"wordnet_id\": \"a-01533806\",\n    \"pos\": \"JJ\",\n    \"sense\": \"represented as greater than is true or reasonable\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excellent\": {\n    \"form\": \"excellent\",\n    \"cornetto_synset_id\": \"n_a-513687\",\n    \"wordnet_id\": \"a-02343110\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very good\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exceptional\": {\n    \"form\": \"exceptional\",\n    \"wordnet_id\": \"a-01676026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"far beyond what is usual in magnitude or degree\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excessive\": {\n    \"form\": \"excessive\",\n    \"wordnet_id\": \"a-02000968\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unrestrained, especially with regard to feelings\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excited\": {\n    \"form\": \"excited\",\n    \"wordnet_id\": \"a-02390724\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by uncontrolled excitement or emotion\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exciting\": {\n    \"form\": \"exciting\",\n    \"cornetto_synset_id\": \"n_a-528399\",\n    \"wordnet_id\": \"a-00921014\",\n    \"pos\": \"JJ\",\n    \"sense\": \"creating or arousing excitement\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excruciatingly\": {\n    \"form\": \"excruciatingly\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"RB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.3\",\n    \"reliability\": \"0.9\"\n  },\n  \"excuse\": {\n    \"form\": \"excuse\",\n    \"wordnet_id\": \"v-893878\",\n    \"pos\": \"VB\",\n    \"sense\": \"grant exemption or release to\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"exhausted\": {\n    \"form\": \"exhausted\",\n    \"cornetto_synset_id\": \"n_a-531701\",\n    \"wordnet_id\": \"a-02433451\",\n    \"pos\": \"JJ\",\n    \"sense\": \"drained of energy or effectiveness\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exhausting\": {\n    \"form\": \"exhausting\",\n    \"wordnet_id\": \"a-837249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"producing exhaustion\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"exhilarating\": {\n    \"form\": \"exhilarating\",\n    \"wordnet_id\": \"a-1357342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"making lively and cheerful\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exotic\": {\n    \"form\": \"exotic\",\n    \"wordnet_id\": \"a-01035007\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or from or characteristic of another place or part of the world\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"expected\": {\n    \"form\": \"expected\",\n    \"wordnet_id\": \"a-929567\",\n    \"pos\": \"JJ\",\n    \"sense\": \"considered likely or probable to happen or arrive\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"expensive\": {\n    \"form\": \"expensive\",\n    \"cornetto_synset_id\": \"n_a-507824\",\n    \"wordnet_id\": \"a-00933154\",\n    \"pos\": \"JJ\",\n    \"sense\": \"high in price or charging high prices\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"experienced\": {\n    \"form\": \"experienced\",\n    \"cornetto_synset_id\": \"n_a-508489\",\n    \"wordnet_id\": \"a-00935500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having experience\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"experimental\": {\n    \"form\": \"experimental\",\n    \"cornetto_synset_id\": \"n_a-508670\",\n    \"wordnet_id\": \"a-00860127\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the nature of or undergoing an experiment\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exploitative\": {\n    \"form\": \"exploitative\",\n    \"wordnet_id\": \"a-1867768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tending to exploit or make use of\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"expressive\": {\n    \"form\": \"expressive\",\n    \"cornetto_synset_id\": \"n_a-508691\",\n    \"wordnet_id\": \"a-00497148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by expression\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exquisite\": {\n    \"form\": \"exquisite\",\n    \"cornetto_synset_id\": \"n_a-503339\",\n    \"wordnet_id\": \"a-00218837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of extreme beauty\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extensive\": {\n    \"form\": \"extensive\",\n    \"wordnet_id\": \"a-01514598\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of agriculture\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"external\": {\n    \"form\": \"external\",\n    \"cornetto_synset_id\": \"d_a-9351\",\n    \"wordnet_id\": \"a-01037885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"from or between other countries\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extinct\": {\n    \"form\": \"extinct\",\n    \"cornetto_synset_id\": \"n_a-518983\",\n    \"wordnet_id\": \"a-00100213\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being out or having grown cold\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extra\": {\n    \"form\": \"extra\",\n    \"cornetto_synset_id\": \"n_a-502245\",\n    \"wordnet_id\": \"a-00048858\",\n    \"pos\": \"JJ\",\n    \"sense\": \"further or added\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extraordinary\": {\n    \"form\": \"extraordinary\",\n    \"wordnet_id\": \"a-01675190\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beyond what is ordinary or usual\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"extreme\": {\n    \"form\": \"extreme\",\n    \"wordnet_id\": \"a-01535082\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beyond a norm in views or actions\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exuberant\": {\n    \"form\": \"exuberant\",\n    \"cornetto_synset_id\": \"n_a-531650\",\n    \"wordnet_id\": \"a-00015247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"produced or growing in extreme abundance\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fabled\": {\n    \"form\": \"fabled\",\n    \"cornetto_synset_id\": \"n_a-516946\",\n    \"wordnet_id\": \"a-01935744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"celebrated in fable or legend\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fabricated\": {\n    \"form\": \"fabricated\",\n    \"cornetto_synset_id\": \"n_a-532388\",\n    \"wordnet_id\": \"a-01935935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"formed or conceived by the imagination\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fabulous\": {\n    \"form\": \"fabulous\",\n    \"cornetto_synset_id\": \"n_a-516947\",\n    \"wordnet_id\": \"a-01936184\",\n    \"pos\": \"JJ\",\n    \"sense\": \"based on or told of in traditional stories\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"facial\": {\n    \"form\": \"facial\",\n    \"wordnet_id\": \"a-02877704\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or concerning the face\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fail\": {\n    \"form\": \"fail\",\n    \"wordnet_id\": \"v-560247\",\n    \"pos\": \"VB\",\n    \"sense\": \"prove insufficient\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"failed\": {\n    \"form\": \"failed\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fails\": {\n    \"form\": \"fails\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"failure\": {\n    \"form\": \"failure\",\n    \"wordnet_id\": \"n-7317764\",\n    \"pos\": \"NN\",\n    \"sense\": \"an event that does not accomplish its intended purpose\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"faint\": {\n    \"form\": \"faint\",\n    \"cornetto_synset_id\": \"c_533\",\n    \"wordnet_id\": \"a-02325097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking strength or vigor\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fair\": {\n    \"form\": \"fair\",\n    \"cornetto_synset_id\": \"n_a-525249\",\n    \"wordnet_id\": \"a-00956131\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from favoritism or self-interest or bias or deception\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fake\": {\n    \"form\": \"fake\",\n    \"wordnet_id\": \"a-01573238\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not genuine or real\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"false\": {\n    \"form\": \"false\",\n    \"cornetto_synset_id\": \"n_a-521254\",\n    \"wordnet_id\": \"a-02461723\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not in accordance with the fact or reality or actuality\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"familiar\": {\n    \"form\": \"familiar\",\n    \"wordnet_id\": \"a-01307067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(usually followed by 'with') well informed about or knowing thoroughly\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"famous\": {\n    \"form\": \"famous\",\n    \"cornetto_synset_id\": \"n_a-512859\",\n    \"wordnet_id\": \"a-01375831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"widely known and esteemed\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fanatic\": {\n    \"form\": \"fanatic\",\n    \"cornetto_synset_id\": \"n_a-512728\",\n    \"wordnet_id\": \"a-01726859\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by excessive enthusiasm for and intense devotion to a cause or idea\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fantastic\": {\n    \"form\": \"fantastic\",\n    \"wordnet_id\": \"a-01942732\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fanciful and unrealistic\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"far\": {\n    \"form\": \"far\",\n    \"cornetto_synset_id\": \"n_a-508718\",\n    \"wordnet_id\": \"a-00442361\",\n    \"pos\": \"JJ\",\n    \"sense\": \"located at a great distance in time or space or degree\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"far-out\": {\n    \"form\": \"far-out\",\n    \"cornetto_synset_id\": \"n_a-504364\",\n    \"wordnet_id\": \"a-00609564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"informal terms\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"farce\": {\n    \"form\": \"farce\",\n    \"wordnet_id\": \"n-7016250\",\n    \"pos\": \"NN\",\n    \"sense\": \"a comedy characterized by broad satire and improbable situations\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"farcical\": {\n    \"form\": \"farcical\",\n    \"wordnet_id\": \"a-1266397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"broadly or extravagantly humorous\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"farthermost\": {\n    \"form\": \"farthermost\",\n    \"cornetto_synset_id\": \"n_a-531671\",\n    \"wordnet_id\": \"a-00443618\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(comparatives of 'far') most remote in space or time or order\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fascinating\": {\n    \"form\": \"fascinating\",\n    \"cornetto_synset_id\": \"n_a-521695\",\n    \"wordnet_id\": \"a-00166753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capturing interest as if by a spell\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fast\": {\n    \"form\": \"fast\",\n    \"cornetto_synset_id\": \"n_a-528140\",\n    \"wordnet_id\": \"a-00976508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"acting or moving or capable of acting or moving quickly\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatty\": {\n    \"form\": \"fatty\",\n    \"cornetto_synset_id\": \"n_a-532927\",\n    \"wordnet_id\": \"a-00991838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"containing or composed of fat\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"faultless\": {\n    \"form\": \"faultless\",\n    \"cornetto_synset_id\": \"n_a-533543\",\n    \"wordnet_id\": \"a-01750847\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without fault or error\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"favored\": {\n    \"form\": \"favored\",\n    \"cornetto_synset_id\": \"d_a-9268\",\n    \"wordnet_id\": \"a-01462882\",\n    \"pos\": \"JJ\",\n    \"sense\": \"preferred above all others and treated with partiality\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"favorite\": {\n    \"form\": \"favorite\",\n    \"wordnet_id\": \"a-01816376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appealing to the general public\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fearful\": {\n    \"form\": \"fearful\",\n    \"cornetto_synset_id\": \"n_a-502271\",\n    \"wordnet_id\": \"a-00079485\",\n    \"pos\": \"JJ\",\n    \"sense\": \"experiencing or showing fear\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"feeble\": {\n    \"form\": \"feeble\",\n    \"cornetto_synset_id\": \"n_a-527852\",\n    \"wordnet_id\": \"a-01827766\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking strength\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"felicitous\": {\n    \"form\": \"felicitous\",\n    \"cornetto_synset_id\": \"d_a-9296\",\n    \"wordnet_id\": \"a-01048406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by good fortune\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"female\": {\n    \"form\": \"female\",\n    \"wordnet_id\": \"a-01484451\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or peculiar to a woman\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"feverish\": {\n    \"form\": \"feverish\",\n    \"cornetto_synset_id\": \"n_a-511750\",\n    \"wordnet_id\": \"a-00086210\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by intense agitation or emotion\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"few\": {\n    \"form\": \"few\",\n    \"wordnet_id\": \"a-01552885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"a quantifier that can be used with count nouns and is often preceded by 'a'\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fictional\": {\n    \"form\": \"fictional\",\n    \"wordnet_id\": \"a-02727706\",\n    \"pos\": \"JJ\",\n    \"sense\": \"related to or involving literary fiction\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fiendish\": {\n    \"form\": \"fiendish\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"fiftieth\": {\n    \"form\": \"fiftieth\",\n    \"cornetto_synset_id\": \"n_a-533067\",\n    \"wordnet_id\": \"a-02208145\",\n    \"pos\": \"JJ\",\n    \"sense\": \"the ordinal number of fifty in counting order\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"filled\": {\n    \"form\": \"filled\",\n    \"cornetto_synset_id\": \"n_a-533467\",\n    \"wordnet_id\": \"a-01084644\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(usually followed by 'with' or used as a combining form) generously supplied with\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"filthy\": {\n    \"form\": \"filthy\",\n    \"cornetto_synset_id\": \"n_a-521551\",\n    \"wordnet_id\": \"a-00421590\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disgustingly dirty\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"final\": {\n    \"form\": \"final\",\n    \"wordnet_id\": \"a-01010271\",\n    \"pos\": \"JJ\",\n    \"sense\": \"occurring at or forming an end or termination\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"financial\": {\n    \"form\": \"financial\",\n    \"cornetto_synset_id\": \"n_a-509070\",\n    \"wordnet_id\": \"a-02847894\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving financial matters\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fine\": {\n    \"form\": \"fine\",\n    \"wordnet_id\": \"a-02414031\",\n    \"pos\": \"JJ\",\n    \"sense\": \"thin in thickness or diameter\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fine-looking\": {\n    \"form\": \"fine-looking\",\n    \"cornetto_synset_id\": \"n_a-515377\",\n    \"wordnet_id\": \"a-00218950\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasing in appearance especially by reason of conformity to ideals of form and proportion\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"firm\": {\n    \"form\": \"firm\",\n    \"cornetto_synset_id\": \"n_a-520774\",\n    \"wordnet_id\": \"a-01990653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by firm determination or resolution\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"first\": {\n    \"form\": \"first\",\n    \"wordnet_id\": \"a-02202047\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indicating the beginning unit in a series\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"first-string\": {\n    \"form\": \"first-string\",\n    \"cornetto_synset_id\": \"n_a-519872\",\n    \"wordnet_id\": \"a-01959711\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of members of a team\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fit\": {\n    \"form\": \"fit\",\n    \"cornetto_synset_id\": \"c_709\",\n    \"wordnet_id\": \"a-01017161\",\n    \"pos\": \"JJ\",\n    \"sense\": \"physically and mentally sound or healthy\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fitting\": {\n    \"form\": \"fitting\",\n    \"wordnet_id\": \"a-01879667\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in harmony with the spirit of particular persons or occasion\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fixed\": {\n    \"form\": \"fixed\",\n    \"cornetto_synset_id\": \"d_a-9562\",\n    \"wordnet_id\": \"a-00740217\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of a number) having a fixed and unchanging value\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flashy\": {\n    \"form\": \"flashy\",\n    \"cornetto_synset_id\": \"n_a-521403\",\n    \"wordnet_id\": \"a-00407420\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used especially of clothes) marked by conspicuous display\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flat\": {\n    \"form\": \"flat\",\n    \"cornetto_synset_id\": \"n_a-519240\",\n    \"wordnet_id\": \"a-01541828\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sounded or spoken in a tone unvarying in pitch\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flawed\": {\n    \"form\": \"flawed\",\n    \"cornetto_synset_id\": \"n_a-521658\",\n    \"wordnet_id\": \"a-01752553\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a blemish or flaw\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flawless\": {\n    \"form\": \"flawless\",\n    \"cornetto_synset_id\": \"n_a-524759\",\n    \"wordnet_id\": \"a-01751080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without a flaw\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flippant\": {\n    \"form\": \"flippant\",\n    \"cornetto_synset_id\": \"n_a-517706\",\n    \"wordnet_id\": \"a-02121290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing inappropriate levity\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fluff\": {\n    \"form\": \"fluff\",\n    \"wordnet_id\": \"n-76072\",\n    \"pos\": \"NN\",\n    \"sense\": \"a blunder (especially an actor's forgetting the lines)\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"fluffy\": {\n    \"form\": \"fluffy\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"fluid\": {\n    \"form\": \"fluid\",\n    \"cornetto_synset_id\": \"d_a-9249\",\n    \"wordnet_id\": \"a-02261746\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of a fluid\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fly\": {\n    \"form\": \"fly\",\n    \"cornetto_synset_id\": \"n_a-527945\",\n    \"wordnet_id\": \"a-00092136\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(British informal) not to be deceived or hoodwinked\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"following\": {\n    \"form\": \"following\",\n    \"cornetto_synset_id\": \"n_a-520887\",\n    \"wordnet_id\": \"a-00127948\",\n    \"pos\": \"JJ\",\n    \"sense\": \"immediately following in time or order\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"for sure\": {\n    \"form\": \"for sure\",\n    \"cornetto_synset_id\": \"d_a-9623\",\n    \"wordnet_id\": \"a-01918660\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not open to doubt\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"forced\": {\n    \"form\": \"forced\",\n    \"wordnet_id\": \"a-2521890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"forced or compelled\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"forcible\": {\n    \"form\": \"forcible\",\n    \"cornetto_synset_id\": \"n_a-513565\",\n    \"wordnet_id\": \"a-00842324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impelled by physical force especially against resistance\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"foreign\": {\n    \"form\": \"foreign\",\n    \"wordnet_id\": \"a-02117464\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not belonging to that in which it is contained\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"forgetful\": {\n    \"form\": \"forgetful\",\n    \"cornetto_synset_id\": \"n_a-520753\",\n    \"wordnet_id\": \"a-00165943\",\n    \"pos\": \"JJ\",\n    \"sense\": \"failing to keep in mind\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"forgettable\": {\n    \"form\": \"forgettable\",\n    \"wordnet_id\": \"a-01040239\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easily forgotten\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"former\": {\n    \"form\": \"former\",\n    \"wordnet_id\": \"a-01729819\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used especially of persons) of the immediate past\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"formulaic\": {\n    \"form\": \"formulaic\",\n    \"cornetto_synset_id\": \"n_a-509257\",\n    \"wordnet_id\": \"a-00606240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by or in accordance with some formula\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fortunate\": {\n    \"form\": \"fortunate\",\n    \"cornetto_synset_id\": \"n_a-532833\",\n    \"wordnet_id\": \"a-00176676\",\n    \"pos\": \"JJ\",\n    \"sense\": \"presaging good fortune\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fourth\": {\n    \"form\": \"fourth\",\n    \"cornetto_synset_id\": \"d_a-9494\",\n    \"wordnet_id\": \"a-02202443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the third and just before the fifth in position or time or degree or magnitude\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fragile\": {\n    \"form\": \"fragile\",\n    \"wordnet_id\": \"a-02164913\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking substance or significance\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"free\": {\n    \"form\": \"free\",\n    \"cornetto_synset_id\": \"n_a-533873\",\n    \"wordnet_id\": \"a-00916199\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not literal\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"free-thinking\": {\n    \"form\": \"free-thinking\",\n    \"cornetto_synset_id\": \"n_a-521201\",\n    \"wordnet_id\": \"a-00287275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unwilling to accept authority or dogma (especially in religion)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"freestanding\": {\n    \"form\": \"freestanding\",\n    \"cornetto_synset_id\": \"n_a-502386\",\n    \"wordnet_id\": \"a-00160768\",\n    \"pos\": \"JJ\",\n    \"sense\": \"standing apart\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"french\": {\n    \"form\": \"french\",\n    \"cornetto_synset_id\": \"d_a-9133\",\n    \"wordnet_id\": \"a-02958392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or pertaining to France or the people of France\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frequent\": {\n    \"form\": \"frequent\",\n    \"cornetto_synset_id\": \"n_a-525383\",\n    \"wordnet_id\": \"a-00486990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"frequently encountered\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fresh\": {\n    \"form\": \"fresh\",\n    \"cornetto_synset_id\": \"n_a-522170\",\n    \"wordnet_id\": \"a-01687167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"original and of a kind not seen before\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"friendly\": {\n    \"form\": \"friendly\",\n    \"wordnet_id\": \"a-01246801\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inclined to help or support\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frightening\": {\n    \"form\": \"frightening\",\n    \"cornetto_synset_id\": \"n_a-532685\",\n    \"wordnet_id\": \"a-00193799\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing fear or dread or terror\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frigid\": {\n    \"form\": \"frigid\",\n    \"cornetto_synset_id\": \"n_a-513368\",\n    \"wordnet_id\": \"a-01258264\",\n    \"pos\": \"JJ\",\n    \"sense\": \"devoid of warmth and cordiality\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fringy\": {\n    \"form\": \"fringy\",\n    \"cornetto_synset_id\": \"c_373\",\n    \"wordnet_id\": \"a-00331889\",\n    \"pos\": \"JJ\",\n    \"sense\": \"at or constituting a border or edge\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"frostbitten\": {\n    \"form\": \"frostbitten\",\n    \"cornetto_synset_id\": \"n_a-513334\",\n    \"wordnet_id\": \"a-01078673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"injured by freezing or partial freezing\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"frustrated\": {\n    \"form\": \"frustrated\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frustrating\": {\n    \"form\": \"frustrating\",\n    \"wordnet_id\": \"a-01764745\",\n    \"pos\": \"JJ\",\n    \"sense\": \"preventing realization or attainment of a desire\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frustratingly\": {\n    \"form\": \"frustratingly\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"RB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.2\",\n    \"reliability\": \"0.9\"\n  },\n  \"fuck\": {\n    \"form\": \"fuck\",\n    \"wordnet_id\": \"n-846021\",\n    \"pos\": \"NN\",\n    \"sense\": \"slang for sexual intercourse\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"fucked\": {\n    \"form\": \"fucked\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"fucking\": {\n    \"form\": \"fucking\",\n    \"wordnet_id\": \"r-32705\",\n    \"pos\": \"RB\",\n    \"sense\": \"intensifier, very colloquial\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"f*cking\": {\n    \"form\": \"f*cking\",\n    \"wordnet_id\": \"r-32705\",\n    \"pos\": \"RB\",\n    \"sense\": \"intensifier, very colloquial\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"full of life\": {\n    \"form\": \"full of life\",\n    \"cornetto_synset_id\": \"c_384\",\n    \"wordnet_id\": \"a-00119006\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of spirit\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"full\": {\n    \"form\": \"full\",\n    \"cornetto_synset_id\": \"d_a-9588\",\n    \"wordnet_id\": \"a-01083157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"containing as much or as many as is possible or normal\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"full-bodied\": {\n    \"form\": \"full-bodied\",\n    \"cornetto_synset_id\": \"n_a-518021\",\n    \"wordnet_id\": \"a-02397234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by richness and fullness of flavor\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"full-fledged\": {\n    \"form\": \"full-fledged\",\n    \"cornetto_synset_id\": \"n_a-533565\",\n    \"wordnet_id\": \"a-00935792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of persons, e.g.) having gained full status\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"full-length\": {\n    \"form\": \"full-length\",\n    \"cornetto_synset_id\": \"n_a-533547\",\n    \"wordnet_id\": \"a-00005107\",\n    \"pos\": \"JJ\",\n    \"sense\": \"complete\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fun\": {\n    \"form\": \"fun\",\n    \"wordnet_id\": \"n-429949\",\n    \"pos\": \"NN\",\n    \"sense\": \"activities that are enjoyable or amusing\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"funny\": {\n    \"form\": \"funny\",\n    \"wordnet_id\": \"a-02545023\",\n    \"pos\": \"JJ\",\n    \"sense\": \"experiencing odd bodily sensations\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"further\": {\n    \"form\": \"further\",\n    \"wordnet_id\": \"a-00443988\",\n    \"pos\": \"JJ\",\n    \"sense\": \"more distant in especially degree\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"furtive\": {\n    \"form\": \"furtive\",\n    \"cornetto_synset_id\": \"n_a-532294\",\n    \"wordnet_id\": \"a-02088974\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by quiet and caution and secrecy\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"future\": {\n    \"form\": \"future\",\n    \"wordnet_id\": \"a-02992914\",\n    \"pos\": \"JJ\",\n    \"sense\": \"a verb tense or other formation referring to events or states that have not yet happened\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"game\": {\n    \"form\": \"game\",\n    \"cornetto_synset_id\": \"n_a-518167\",\n    \"wordnet_id\": \"a-00263994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"willing to face danger\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gamechanger\": {\n    \"form\": \"gamechanger\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gargantuan\": {\n    \"form\": \"gargantuan\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"gawky\": {\n    \"form\": \"gawky\",\n    \"cornetto_synset_id\": \"d_a-9454\",\n    \"wordnet_id\": \"a-01140896\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking grace in movement or posture\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gay\": {\n    \"form\": \"gay\",\n    \"wordnet_id\": \"a-01367651\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of or showing high-spirited merriment\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"general\": {\n    \"form\": \"general\",\n    \"cornetto_synset_id\": \"d_a-9152\",\n    \"wordnet_id\": \"a-00783840\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not specialized or limited to one class of things\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"generic\": {\n    \"form\": \"generic\",\n    \"wordnet_id\": \"a-02734016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or common to or descriptive of all members of a genus\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gentle\": {\n    \"form\": \"gentle\",\n    \"cornetto_synset_id\": \"n_a-535265\",\n    \"wordnet_id\": \"a-01509066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"soft and mild\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"genuine\": {\n    \"form\": \"genuine\",\n    \"cornetto_synset_id\": \"d_a-9251\",\n    \"wordnet_id\": \"a-02180277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not pretended\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"german\": {\n    \"form\": \"german\",\n    \"cornetto_synset_id\": \"d_a-9129\",\n    \"wordnet_id\": \"a-02957469\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or pertaining to or characteristic of Germany or its people or language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gettable\": {\n    \"form\": \"gettable\",\n    \"cornetto_synset_id\": \"n_a-532527\",\n    \"wordnet_id\": \"a-00184363\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being obtained\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"giant\": {\n    \"form\": \"giant\",\n    \"wordnet_id\": \"a-01385773\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of great mass\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gifted\": {\n    \"form\": \"gifted\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"endowed with talent or talents\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gimmicky\": {\n    \"form\": \"gimmicky\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"glad\": {\n    \"form\": \"glad\",\n    \"wordnet_id\": \"a-02565583\",\n    \"pos\": \"JJ\",\n    \"sense\": \"eagerly disposed to act or to be of service\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"global\": {\n    \"form\": \"global\",\n    \"cornetto_synset_id\": \"n_a-523513\",\n    \"wordnet_id\": \"a-01568684\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving the entire earth\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gloom\": {\n    \"form\": \"gloom\",\n    \"wordnet_id\": \"n-7533257\",\n    \"pos\": \"NN\",\n    \"sense\": \"a feeling of melancholy apprehension\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"gluey\": {\n    \"form\": \"gluey\",\n    \"cornetto_synset_id\": \"n_a-523499\",\n    \"wordnet_id\": \"a-00053691\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the sticky properties of an adhesive\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"godforsaken\": {\n    \"form\": \"godforsaken\",\n    \"cornetto_synset_id\": \"n_a-521234\",\n    \"wordnet_id\": \"a-01243102\",\n    \"pos\": \"JJ\",\n    \"sense\": \"located in a dismal or remote area\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"golden\": {\n    \"form\": \"golden\",\n    \"cornetto_synset_id\": \"n_a-513884\",\n    \"wordnet_id\": \"a-00177547\",\n    \"pos\": \"JJ\",\n    \"sense\": \"presaging or likely to bring good luck\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"good\": {\n    \"form\": \"good\",\n    \"cornetto_synset_id\": \"n_a-510925\",\n    \"wordnet_id\": \"a-01166413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tending to promote physical well-being\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"goody-goody\": {\n    \"form\": \"goody-goody\",\n    \"cornetto_synset_id\": \"n_a-535834\",\n    \"wordnet_id\": \"a-01130614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affectedly or smugly good or self-righteous\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"goofy\": {\n    \"form\": \"goofy\",\n    \"wordnet_id\": \"a-02571536\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ludicrous, foolish\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gorgeous\": {\n    \"form\": \"gorgeous\",\n    \"cornetto_synset_id\": \"n_a-512199\",\n    \"wordnet_id\": \"a-00219705\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dazzlingly beautiful\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gory\": {\n    \"form\": \"gory\",\n    \"wordnet_id\": \"a-00249104\",\n    \"pos\": \"JJ\",\n    \"sense\": \"accompanied by bloodshed\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grand\": {\n    \"form\": \"grand\",\n    \"wordnet_id\": \"a-02024928\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rich and superior in quality\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grandiloquent\": {\n    \"form\": \"grandiloquent\",\n    \"cornetto_synset_id\": \"n_a-524282\",\n    \"wordnet_id\": \"a-01849960\",\n    \"pos\": \"JJ\",\n    \"sense\": \"puffed up with vanity\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"graphic\": {\n    \"form\": \"graphic\",\n    \"wordnet_id\": \"a-02736983\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the graphic arts\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gratuitous\": {\n    \"form\": \"gratuitous\",\n    \"wordnet_id\": \"a-01582049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unnecessary and unwarranted\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"great\": {\n    \"form\": \"great\",\n    \"wordnet_id\": \"a-01677433\",\n    \"pos\": \"JJ\",\n    \"sense\": \"remarkable or out of the ordinary in degree or magnitude or effect\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"greater\": {\n    \"form\": \"greater\",\n    \"cornetto_synset_id\": \"n_a-518433\",\n    \"wordnet_id\": \"a-01395330\",\n    \"pos\": \"JJ\",\n    \"sense\": \"greater in size or importance or degree\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"greatest\": {\n    \"form\": \"greatest\",\n    \"cornetto_synset_id\": \"d_a-9399\",\n    \"wordnet_id\": \"a-02343517\",\n    \"pos\": \"JJ\",\n    \"sense\": \"highest in quality\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"greek\": {\n    \"form\": \"greek\",\n    \"cornetto_synset_id\": \"d_a-9134\",\n    \"wordnet_id\": \"a-03016202\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Greece or the Greeks or the Greek language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"green\": {\n    \"form\": \"green\",\n    \"wordnet_id\": \"a-03069937\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerned with or supporting or in conformity with the political principles of the Green Party\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grey\": {\n    \"form\": \"grey\",\n    \"cornetto_synset_id\": \"n_a-511486\",\n    \"wordnet_id\": \"a-01645678\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing characteristics of age, especially having grey or white hair\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grief\": {\n    \"form\": \"grief\",\n    \"wordnet_id\": \"n-7535010\",\n    \"pos\": \"NN\",\n    \"sense\": \"intense sorrow caused by loss of a loved one (especially by death)\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grievous\": {\n    \"form\": \"grievous\",\n    \"cornetto_synset_id\": \"n_a-521480\",\n    \"wordnet_id\": \"a-01365544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing or marked by grief or anguish\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grim\": {\n    \"form\": \"grim\",\n    \"wordnet_id\": \"a-02079507\",\n    \"pos\": \"JJ\",\n    \"sense\": \"harshly ironic or sinister\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gripping\": {\n    \"form\": \"gripping\",\n    \"cornetto_synset_id\": \"n_a-501243\",\n    \"wordnet_id\": \"a-01344171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of arousing and holding the attention\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gritty\": {\n    \"form\": \"gritty\",\n    \"cornetto_synset_id\": \"n_a-535610\",\n    \"wordnet_id\": \"a-02231502\",\n    \"pos\": \"JJ\",\n    \"sense\": \"composed of or covered with particles resembling meal in texture or consistency\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gross\": {\n    \"form\": \"gross\",\n    \"cornetto_synset_id\": \"n_a-505096\",\n    \"wordnet_id\": \"a-01582821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"before any deductions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grotesque\": {\n    \"form\": \"grotesque\",\n    \"cornetto_synset_id\": \"n_a-535905\",\n    \"wordnet_id\": \"a-00221627\",\n    \"pos\": \"JJ\",\n    \"sense\": \"distorted and unnatural in shape or size\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grr\": {\n    \"form\": \"grr\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grrr\": {\n    \"form\": \"grrr\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grrrr\": {\n    \"form\": \"grrrr\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grudging\": {\n    \"form\": \"grudging\",\n    \"cornetto_synset_id\": \"d_a-9356\",\n    \"wordnet_id\": \"a-01113636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"petty or reluctant in giving or spending\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gruesome\": {\n    \"form\": \"gruesome\",\n    \"cornetto_synset_id\": \"n_a-521565\",\n    \"wordnet_id\": \"a-00195684\",\n    \"pos\": \"JJ\",\n    \"sense\": \"shockingly repellent\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"guarded\": {\n    \"form\": \"guarded\",\n    \"cornetto_synset_id\": \"n_a-533736\",\n    \"wordnet_id\": \"a-00326202\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prudent\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"guilty\": {\n    \"form\": \"guilty\",\n    \"wordnet_id\": \"a-01320988\",\n    \"pos\": \"JJ\",\n    \"sense\": \"responsible for or chargeable with a reprehensible act\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"haha\": {\n    \"form\": \"haha\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hahaha\": {\n    \"form\": \"hahaha\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hahahaha\": {\n    \"form\": \"hahahaha\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hahahahaha\": {\n    \"form\": \"hahahahaha\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"half\": {\n    \"form\": \"half\",\n    \"wordnet_id\": \"a-00524496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"partial\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hand-held\": {\n    \"form\": \"hand-held\",\n    \"wordnet_id\": \"a-03149169\",\n    \"pos\": \"JJ\",\n    \"sense\": \"small and light enough to be operated while you hold it in your hands\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"handsome\": {\n    \"form\": \"handsome\",\n    \"cornetto_synset_id\": \"n_a-515377\",\n    \"wordnet_id\": \"a-00218950\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasing in appearance especially by reason of conformity to ideals of form and proportion\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"handy\": {\n    \"form\": \"handy\",\n    \"cornetto_synset_id\": \"n_a-520249\",\n    \"wordnet_id\": \"a-00019731\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easy to reach\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"haphazard\": {\n    \"form\": \"haphazard\",\n    \"cornetto_synset_id\": \"n_a-527969\",\n    \"wordnet_id\": \"a-00312519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by great carelessness\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hapless\": {\n    \"form\": \"hapless\",\n    \"cornetto_synset_id\": \"n_a-535670\",\n    \"wordnet_id\": \"a-01050890\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deserving or inciting pity\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"happiness\": {\n    \"form\": \"happiness\",\n    \"wordnet_id\": \"n-7526757\",\n    \"pos\": \"NN\",\n    \"sense\": \"emotions experienced when in a state of well-being\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"happy\": {\n    \"form\": \"happy\",\n    \"cornetto_synset_id\": \"d_a-9297\",\n    \"wordnet_id\": \"a-01148283\",\n    \"pos\": \"JJ\",\n    \"sense\": \"enjoying or showing or marked by joy or pleasure\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hard\": {\n    \"form\": \"hard\",\n    \"wordnet_id\": \"a-02322512\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very strong or vigorous\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"harder\": {\n    \"form\": \"harder\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"harsh\": {\n    \"form\": \"harsh\",\n    \"cornetto_synset_id\": \"n_a-508890\",\n    \"wordnet_id\": \"a-01803792\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disagreeable to the senses\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hate\": {\n    \"form\": \"hate\",\n    \"wordnet_id\": \"v-1774136\",\n    \"pos\": \"VB\",\n    \"sense\": \"dislike intensely\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hated\": {\n    \"form\": \"hated\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hazardous\": {\n    \"form\": \"hazardous\",\n    \"cornetto_synset_id\": \"n_a-502847\",\n    \"wordnet_id\": \"a-02059811\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving risk or danger\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"healthy\": {\n    \"form\": \"healthy\",\n    \"wordnet_id\": \"a-02558184\",\n    \"pos\": \"JJ\",\n    \"sense\": \"promoting health\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heartfelt\": {\n    \"form\": \"heartfelt\",\n    \"wordnet_id\": \"a-02179968\",\n    \"pos\": \"JJ\",\n    \"sense\": \"earnest\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heavy\": {\n    \"form\": \"heavy\",\n    \"cornetto_synset_id\": \"d_a-9636\",\n    \"wordnet_id\": \"a-01184932\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of comparatively great physical weight or density\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"heroic\": {\n    \"form\": \"heroic\",\n    \"wordnet_id\": \"a-02740508\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or characteristic of heroes of antiquity\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hidden\": {\n    \"form\": \"hidden\",\n    \"wordnet_id\": \"a-02517817\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not accessible to view\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"high\": {\n    \"form\": \"high\",\n    \"cornetto_synset_id\": \"n_a-531696\",\n    \"wordnet_id\": \"a-00705498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"happy and excited and energetic\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"higher\": {\n    \"form\": \"higher\",\n    \"wordnet_id\": \"a-01211962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"advanced in complexity or elaboration\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hilarious\": {\n    \"form\": \"hilarious\",\n    \"wordnet_id\": \"a-01266841\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by or causing boisterous merriment or convulsive laughter\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hindered\": {\n    \"form\": \"hindered\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"historic\": {\n    \"form\": \"historic\",\n    \"cornetto_synset_id\": \"n_a-512540\",\n    \"wordnet_id\": \"a-01279028\",\n    \"pos\": \"JJ\",\n    \"sense\": \"important in history\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"historical\": {\n    \"form\": \"historical\",\n    \"wordnet_id\": \"a-02920121\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the study of history\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hit-and-miss\": {\n    \"form\": \"hit-and-miss\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"hollow\": {\n    \"form\": \"hollow\",\n    \"wordnet_id\": \"n-9305031\",\n    \"pos\": \"NN\",\n    \"sense\": \"a small valley between mountains\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"honest\": {\n    \"form\": \"honest\",\n    \"cornetto_synset_id\": \"n_a-508027\",\n    \"wordnet_id\": \"a-01225643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by truth\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"honest-to-god\": {\n    \"form\": \"honest-to-god\",\n    \"cornetto_synset_id\": \"n_a-527706\",\n    \"wordnet_id\": \"a-01116118\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used informally especially for emphasis)\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"horrible\": {\n    \"form\": \"horrible\",\n    \"cornetto_synset_id\": \"n_a-519025\",\n    \"wordnet_id\": \"a-00193480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"provoking horror\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horrific\": {\n    \"form\": \"horrific\",\n    \"wordnet_id\": \"a-01626562\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grossly offensive to decency or morality\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horrifying\": {\n    \"form\": \"horrifying\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hot\": {\n    \"form\": \"hot\",\n    \"cornetto_synset_id\": \"n_a-526932\",\n    \"wordnet_id\": \"a-00033077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by excited activity\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"huge\": {\n    \"form\": \"huge\",\n    \"cornetto_synset_id\": \"n_a-531690\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unusually great in size or amount or degree or especially extent or scope\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"human\": {\n    \"form\": \"human\",\n    \"cornetto_synset_id\": \"n_a-518600\",\n    \"wordnet_id\": \"a-01258617\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having human form or attributes as opposed to those of animals or divine beings\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"humble\": {\n    \"form\": \"humble\",\n    \"cornetto_synset_id\": \"n_a-510497\",\n    \"wordnet_id\": \"a-02340458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"low or inferior in station or quality\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"humorous\": {\n    \"form\": \"humorous\",\n    \"wordnet_id\": \"a-01264336\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of or characterized by humor\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hysterical\": {\n    \"form\": \"hysterical\",\n    \"wordnet_id\": \"a-00086606\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by excessive or uncontrollable emotion\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"icky\": {\n    \"form\": \"icky\",\n    \"wordnet_id\": \"a-1127782\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very bad\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"iconic\": {\n    \"form\": \"iconic\",\n    \"cornetto_synset_id\": \"n_a-513273\",\n    \"wordnet_id\": \"a-02851550\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or having the characteristics on an icon\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"icy\": {\n    \"form\": \"icy\",\n    \"cornetto_synset_id\": \"c_127\",\n    \"wordnet_id\": \"a-01079240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"covered with or containing or consisting of ice\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ideal\": {\n    \"form\": \"ideal\",\n    \"cornetto_synset_id\": \"n_a-513278\",\n    \"wordnet_id\": \"a-00012689\",\n    \"pos\": \"JJ\",\n    \"sense\": \"constituting or existing only in the form of an idea or mental image or conception\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"identifiable\": {\n    \"form\": \"identifiable\",\n    \"cornetto_synset_id\": \"n_a-512378\",\n    \"wordnet_id\": \"a-01272397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being identified\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiocy\": {\n    \"form\": \"idiocy\",\n    \"wordnet_id\": \"n-5646926\",\n    \"pos\": \"NN\",\n    \"sense\": \"extreme mental retardation\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"idiot\": {\n    \"form\": \"idiot\",\n    \"wordnet_id\": \"n-10197525\",\n    \"pos\": \"NN\",\n    \"sense\": \"a person of subnormal intelligence\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiots\": {\n    \"form\": \"idiots\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiotic\": {\n    \"form\": \"idiotic\",\n    \"wordnet_id\": \"a-02570643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incongruous\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ill\": {\n    \"form\": \"ill\",\n    \"wordnet_id\": \"a-02541302\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affected by an impairment of normal physical or mental function\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"illegal\": {\n    \"form\": \"illegal\",\n    \"cornetto_synset_id\": \"n_a-521122\",\n    \"wordnet_id\": \"a-01401854\",\n    \"pos\": \"JJ\",\n    \"sense\": \"prohibited by law or by official or accepted rules\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imaginative\": {\n    \"form\": \"imaginative\",\n    \"cornetto_synset_id\": \"n_a-506150\",\n    \"wordnet_id\": \"a-00643863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used of persons or artifacts) marked by independence and creativity in thought or action\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imbecile\": {\n    \"form\": \"imbecile\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.8\"\n  },\n  \"imitation\": {\n    \"form\": \"imitation\",\n    \"wordnet_id\": \"n-5962602\",\n    \"pos\": \"NN\",\n    \"sense\": \"the doctrine that representations of nature or human behavior should be accurate imitations\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"immanent\": {\n    \"form\": \"immanent\",\n    \"cornetto_synset_id\": \"n_a-529917\",\n    \"wordnet_id\": \"a-01273910\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a mental act performed entirely within the mind\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immense\": {\n    \"form\": \"immense\",\n    \"cornetto_synset_id\": \"n_a-508356\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unusually great in size or amount or degree or especially extent or scope\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impassive\": {\n    \"form\": \"impassive\",\n    \"cornetto_synset_id\": \"n_a-521187\",\n    \"wordnet_id\": \"a-00857560\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or revealing little emotion or sensibility\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impatient\": {\n    \"form\": \"impatient\",\n    \"cornetto_synset_id\": \"n_a-521037\",\n    \"wordnet_id\": \"a-00811536\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(usually followed by 'to') full of eagerness\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impeccable\": {\n    \"form\": \"impeccable\",\n    \"wordnet_id\": \"a-02513521\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of sin\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imperceptible\": {\n    \"form\": \"imperceptible\",\n    \"cornetto_synset_id\": \"d_a-9473\",\n    \"wordnet_id\": \"a-01748318\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impossible or difficult to perceive by the mind or senses\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"implicated\": {\n    \"form\": \"implicated\",\n    \"cornetto_synset_id\": \"n_a-518389\",\n    \"wordnet_id\": \"a-01516346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"culpably involved\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"implicit in\": {\n    \"form\": \"implicit in\",\n    \"cornetto_synset_id\": \"n_a-520863\",\n    \"wordnet_id\": \"a-00941940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in the nature of something though not readily apparent\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"important\": {\n    \"form\": \"important\",\n    \"wordnet_id\": \"a-01539887\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or suggesting a consciousness of high position\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impossible\": {\n    \"form\": \"impossible\",\n    \"wordnet_id\": \"a-01823092\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of occurring or being accomplished or dealt with\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impressed\": {\n    \"form\": \"impressed\",\n    \"cornetto_synset_id\": \"n_a-509653\",\n    \"wordnet_id\": \"a-00071142\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deeply or markedly affected or influenced\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impressive\": {\n    \"form\": \"impressive\",\n    \"wordnet_id\": \"a-01282014\",\n    \"pos\": \"JJ\",\n    \"sense\": \"making a strong or vivid impression\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"in good taste\": {\n    \"form\": \"in good taste\",\n    \"cornetto_synset_id\": \"n_a-528044\",\n    \"wordnet_id\": \"a-00689215\",\n    \"pos\": \"JJ\",\n    \"sense\": \"satisfying generally accepted social or esthetic standards\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"in stock\": {\n    \"form\": \"in stock\",\n    \"cornetto_synset_id\": \"n_a-533683\",\n    \"wordnet_id\": \"a-00184543\",\n    \"pos\": \"JJ\",\n    \"sense\": \"available for use or sale\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inapposite\": {\n    \"form\": \"inapposite\",\n    \"cornetto_synset_id\": \"n_a-519011\",\n    \"wordnet_id\": \"a-00138782\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of an inappropriate or misapplied nature\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inarticulate\": {\n    \"form\": \"inarticulate\",\n    \"cornetto_synset_id\": \"n_a-520850\",\n    \"wordnet_id\": \"a-00151105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without or deprived of the use of speech or words\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inauspicious\": {\n    \"form\": \"inauspicious\",\n    \"cornetto_synset_id\": \"n_a-521232\",\n    \"wordnet_id\": \"a-00176838\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not auspicious\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incalculable\": {\n    \"form\": \"incalculable\",\n    \"cornetto_synset_id\": \"n_a-530266\",\n    \"wordnet_id\": \"a-00301777\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of being computed or enumerated\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incoherent\": {\n    \"form\": \"incoherent\",\n    \"wordnet_id\": \"a-464962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without logical or meaningful connection\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"incomparable\": {\n    \"form\": \"incomparable\",\n    \"cornetto_synset_id\": \"d_a-9559\",\n    \"wordnet_id\": \"a-00504592\",\n    \"pos\": \"JJ\",\n    \"sense\": \"such that comparison is impossible\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incompetent\": {\n    \"form\": \"incompetent\",\n    \"wordnet_id\": \"n-10202363\",\n    \"pos\": \"NN\",\n    \"sense\": \"someone who is not competent to take effective action\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"inconsistencies\": {\n    \"form\": \"inconsistencies\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"inconvenient\": {\n    \"form\": \"inconvenient\",\n    \"cornetto_synset_id\": \"n_a-521143\",\n    \"wordnet_id\": \"a-00605128\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not suited to your comfort, purpose or needs\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incorruptible\": {\n    \"form\": \"incorruptible\",\n    \"cornetto_synset_id\": \"n_a-513844\",\n    \"wordnet_id\": \"a-00622935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of being morally corrupted\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incredible\": {\n    \"form\": \"incredible\",\n    \"cornetto_synset_id\": \"n_a-535103\",\n    \"wordnet_id\": \"a-00645493\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beyond belief or understanding\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incurable\": {\n    \"form\": \"incurable\",\n    \"cornetto_synset_id\": \"n_a-521115\",\n    \"wordnet_id\": \"a-00349759\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unalterable in disposition or habits\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indecipherable\": {\n    \"form\": \"indecipherable\",\n    \"cornetto_synset_id\": \"n_a-521270\",\n    \"wordnet_id\": \"a-01405523\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not easily deciphered\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"independent\": {\n    \"form\": \"independent\",\n    \"wordnet_id\": \"a-01062393\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of political bodies) not controlled by outside forces\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indie\": {\n    \"form\": \"indie\",\n    \"wordnet_id\": \"a-00729133\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of pop groups) not affiliated with a major recording company\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indispensable\": {\n    \"form\": \"indispensable\",\n    \"cornetto_synset_id\": \"n_a-520130\",\n    \"wordnet_id\": \"a-00849108\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unavoidable\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"individual\": {\n    \"form\": \"individual\",\n    \"cornetto_synset_id\": \"d_a-9343\",\n    \"wordnet_id\": \"a-02153174\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or meant for a single person or thing\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indomitable\": {\n    \"form\": \"indomitable\",\n    \"cornetto_synset_id\": \"n_a-520642\",\n    \"wordnet_id\": \"a-00570099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impossible to subdue\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ineluctable\": {\n    \"form\": \"ineluctable\",\n    \"cornetto_synset_id\": \"n_a-521606\",\n    \"wordnet_id\": \"a-00343360\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impossible to avoid or evade\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inevitable\": {\n    \"form\": \"inevitable\",\n    \"wordnet_id\": \"a-01841834\",\n    \"pos\": \"JJ\",\n    \"sense\": \"invariably occurring or appearing\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inexpedient\": {\n    \"form\": \"inexpedient\",\n    \"cornetto_synset_id\": \"n_a-521622\",\n    \"wordnet_id\": \"a-01814252\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not appropriate to the purpose\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inexperienced\": {\n    \"form\": \"inexperienced\",\n    \"cornetto_synset_id\": \"n_a-520979\",\n    \"wordnet_id\": \"a-00936740\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking practical experience or training\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inexplicable\": {\n    \"form\": \"inexplicable\",\n    \"cornetto_synset_id\": \"n_a-520635\",\n    \"wordnet_id\": \"a-00939105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of being explained or accounted for\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inexpressible\": {\n    \"form\": \"inexpressible\",\n    \"cornetto_synset_id\": \"d_a-9258\",\n    \"wordnet_id\": \"a-00943999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"defying expression\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infamous\": {\n    \"form\": \"infamous\",\n    \"cornetto_synset_id\": \"n_a-522276\",\n    \"wordnet_id\": \"a-01984411\",\n    \"pos\": \"JJ\",\n    \"sense\": \"known widely and usually unfavorably\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"infantile\": {\n    \"form\": \"infantile\",\n    \"wordnet_id\": \"a-2748837\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to infants or infancy\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"infatuated\": {\n    \"form\": \"infatuated\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"inflexible\": {\n    \"form\": \"inflexible\",\n    \"cornetto_synset_id\": \"d_a-9530\",\n    \"wordnet_id\": \"a-01029151\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of adapting or changing to meet circumstances\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infuriating\": {\n    \"form\": \"infuriating\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"VBG\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"ingenious\": {\n    \"form\": \"ingenious\",\n    \"wordnet_id\": \"a-00061885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing inventiveness and skill\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inhumane\": {\n    \"form\": \"inhumane\",\n    \"cornetto_synset_id\": \"d_a-9455\",\n    \"wordnet_id\": \"a-01262611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking and reflecting lack of pity or compassion\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"initial\": {\n    \"form\": \"initial\",\n    \"wordnet_id\": \"a-01011973\",\n    \"pos\": \"JJ\",\n    \"sense\": \"occurring at the beginning\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inner\": {\n    \"form\": \"inner\",\n    \"wordnet_id\": \"a-01863066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"confined to an exclusive group\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"innocent\": {\n    \"form\": \"innocent\",\n    \"cornetto_synset_id\": \"n_a-521396\",\n    \"wordnet_id\": \"a-01319874\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from evil or guilt\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"innovative\": {\n    \"form\": \"innovative\",\n    \"wordnet_id\": \"a-01876261\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ahead of the times\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insane\": {\n    \"form\": \"insane\",\n    \"wordnet_id\": \"a-02572038\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very foolish\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insecure\": {\n    \"form\": \"insecure\",\n    \"wordnet_id\": \"a-02524443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not safe from attack\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inspirational\": {\n    \"form\": \"inspirational\",\n    \"wordnet_id\": \"a-02055773\",\n    \"pos\": \"JJ\",\n    \"sense\": \"imparting a divine influence on the mind and soul\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inspiring\": {\n    \"form\": \"inspiring\",\n    \"cornetto_synset_id\": \"n_a-513804\",\n    \"wordnet_id\": \"a-01323096\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stimulating or exalting to the spirit\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"instant\": {\n    \"form\": \"instant\",\n    \"wordnet_id\": \"a-01732012\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in or of the present month\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insulting\": {\n    \"form\": \"insulting\",\n    \"wordnet_id\": \"a-01995288\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing extreme contempt\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insultingly\": {\n    \"form\": \"insultingly\",\n    \"wordnet_id\": \"r-379674\",\n    \"pos\": \"RB\",\n    \"sense\": \"in a disrespectful and insulting manner\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"intellectual\": {\n    \"form\": \"intellectual\",\n    \"cornetto_synset_id\": \"n_a-532721\",\n    \"wordnet_id\": \"a-01332386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appealing to or using the intellect\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligent\": {\n    \"form\": \"intelligent\",\n    \"cornetto_synset_id\": \"c_239\",\n    \"wordnet_id\": \"a-01334398\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the capacity for thought and reason especially to a high degree\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligentsia\": {\n    \"form\": \"intelligentsia\",\n    \"wordnet_id\": \"n-8387354\",\n    \"pos\": \"NN\",\n    \"sense\": \"an educated and intellectual elite\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"intense\": {\n    \"form\": \"intense\",\n    \"cornetto_synset_id\": \"n_a-512478\",\n    \"wordnet_id\": \"a-01509527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing or displaying a distinctive feature to a heightened degree\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interested\": {\n    \"form\": \"interested\",\n    \"wordnet_id\": \"a-01515692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involved in or affected by or having a claim to or share in\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"interesting\": {\n    \"form\": \"interesting\",\n    \"wordnet_id\": \"a-01343918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"arousing or holding the attention\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"internal\": {\n    \"form\": \"internal\",\n    \"wordnet_id\": \"a-01348835\",\n    \"pos\": \"JJ\",\n    \"sense\": \"innermost or essential\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"international\": {\n    \"form\": \"international\",\n    \"wordnet_id\": \"a-01568375\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerning or belonging to all or at least two or more nations\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intimate\": {\n    \"form\": \"intimate\",\n    \"cornetto_synset_id\": \"n_a-527516\",\n    \"wordnet_id\": \"a-02132735\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involved in a sexual relationship\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intriguing\": {\n    \"form\": \"intriguing\",\n    \"wordnet_id\": \"a-01897106\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disturbingly provocative\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inventive\": {\n    \"form\": \"inventive\",\n    \"cornetto_synset_id\": \"n_a-506150\",\n    \"wordnet_id\": \"a-00643863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used of persons or artifacts) marked by independence and creativity in thought or action\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"irish\": {\n    \"form\": \"irish\",\n    \"wordnet_id\": \"a-03003744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Ireland or its people\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ironic\": {\n    \"form\": \"ironic\",\n    \"cornetto_synset_id\": \"n_a-528735\",\n    \"wordnet_id\": \"a-00563288\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by often poignant difference or incongruity between what is expected and what actually is\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irrelevant\": {\n    \"form\": \"irrelevant\",\n    \"wordnet_id\": \"a-01976084\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no bearing on or connection with the subject at issue\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"irritating\": {\n    \"form\": \"irritating\",\n    \"wordnet_id\": \"a-478685\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing physical discomfort\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"isn't\": {\n    \"form\": \"isn't\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"italian\": {\n    \"form\": \"italian\",\n    \"wordnet_id\": \"a-02957066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or pertaining to or characteristic of Italy or its people or culture or language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jackass\": {\n    \"form\": \"jackass\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jackasses\": {\n    \"form\": \"jackasses\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jail\": {\n    \"form\": \"jail\",\n    \"wordnet_id\": \"n-3592245\",\n    \"pos\": \"NN\",\n    \"sense\": \"a correctional institution used to detain persons who are in the lawful custody of the government\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jammed\": {\n    \"form\": \"jammed\",\n    \"cornetto_synset_id\": \"n_a-529021\",\n    \"wordnet_id\": \"a-00560100\",\n    \"pos\": \"JJ\",\n    \"sense\": \"filled to capacity\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"japanese\": {\n    \"form\": \"japanese\",\n    \"cornetto_synset_id\": \"n_a-500510\",\n    \"wordnet_id\": \"a-02965043\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Japan or its people or their culture or language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jewish\": {\n    \"form\": \"jewish\",\n    \"cornetto_synset_id\": \"n_a-500503\",\n    \"wordnet_id\": \"a-02922263\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to Jews or their culture or religion\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"joy\": {\n    \"form\": \"joy\",\n    \"wordnet_id\": \"n-7527352\",\n    \"pos\": \"NN\",\n    \"sense\": \"the emotion of great happiness\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"justified\": {\n    \"form\": \"justified\",\n    \"cornetto_synset_id\": \"n_a-510466\",\n    \"wordnet_id\": \"a-00910750\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having words so spaced that lines have straight even margins\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"juvenile\": {\n    \"form\": \"juvenile\",\n    \"wordnet_id\": \"a-02892980\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of or appropriate for children or young people\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"key\": {\n    \"form\": \"key\",\n    \"wordnet_id\": \"a-01277097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving as an essential component\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"killed\": {\n    \"form\": \"killed\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"cause to die\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"kind\": {\n    \"form\": \"kind\",\n    \"cornetto_synset_id\": \"n_a-501386\",\n    \"wordnet_id\": \"a-01372049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing a tender and considerate and helpful nature\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lame\": {\n    \"form\": \"lame\",\n    \"wordnet_id\": \"a-02325304\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pathetically lacking in force or effectiveness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"large\": {\n    \"form\": \"large\",\n    \"wordnet_id\": \"a-02163307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fairly large or important in effect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"larger\": {\n    \"form\": \"larger\",\n    \"wordnet_id\": \"a-01383756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"large or big relative to something else\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"last\": {\n    \"form\": \"last\",\n    \"cornetto_synset_id\": \"n_a-533745\",\n    \"wordnet_id\": \"a-01212095\",\n    \"pos\": \"JJ\",\n    \"sense\": \"highest in extent or degree\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lasting\": {\n    \"form\": \"lasting\",\n    \"wordnet_id\": \"a-02291500\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lasting a long time without change\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"late\": {\n    \"form\": \"late\",\n    \"cornetto_synset_id\": \"n_a-516548\",\n    \"wordnet_id\": \"a-00816481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or occurring at an advanced period of time or after a usual or expected time\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"later\": {\n    \"form\": \"later\",\n    \"wordnet_id\": \"a-00819235\",\n    \"pos\": \"JJ\",\n    \"sense\": \"at or toward an end or late period or stage of development\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"latest\": {\n    \"form\": \"latest\",\n    \"cornetto_synset_id\": \"n_a-505528\",\n    \"wordnet_id\": \"a-00971506\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in the current fashion or style\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"latter\": {\n    \"form\": \"latter\",\n    \"wordnet_id\": \"a-01047561\",\n    \"pos\": \"JJ\",\n    \"sense\": \"referring to the second of two things or persons mentioned (or the last one or ones of several)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"laugh\": {\n    \"form\": \"laugh\",\n    \"wordnet_id\": \"v-31820\",\n    \"pos\": \"VB\",\n    \"sense\": \"produce laughter\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"laughable\": {\n    \"form\": \"laughable\",\n    \"wordnet_id\": \"a-02570643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incongruous\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"laughed\": {\n    \"form\": \"laughed\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lawful\": {\n    \"form\": \"lawful\",\n    \"cornetto_synset_id\": \"n_a-514272\",\n    \"wordnet_id\": \"a-01395617\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conformable to or allowed by law\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lazy\": {\n    \"form\": \"lazy\",\n    \"wordnet_id\": \"a-00981304\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moving slowly and gently\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"leaden\": {\n    \"form\": \"leaden\",\n    \"wordnet_id\": \"a-837756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of movement) slow and laborious\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"least\": {\n    \"form\": \"least\",\n    \"wordnet_id\": \"a-01556061\",\n    \"pos\": \"JJ\",\n    \"sense\": \"the superlative of 'little' that can be used with mass nouns and is usually preceded by 'the'\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"left\": {\n    \"form\": \"left\",\n    \"cornetto_synset_id\": \"n_a-517388\",\n    \"wordnet_id\": \"a-02032953\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or located on or directed toward the side of the body to the west when facing north\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"leftist\": {\n    \"form\": \"leftist\",\n    \"cornetto_synset_id\": \"n_a-517389\",\n    \"wordnet_id\": \"a-02031335\",\n    \"pos\": \"JJ\",\n    \"sense\": \"believing in or supporting tenets of the political left\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"legal\": {\n    \"form\": \"legal\",\n    \"cornetto_synset_id\": \"n_a-535042\",\n    \"wordnet_id\": \"a-02499148\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having legal efficacy or force\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"legendary\": {\n    \"form\": \"legendary\",\n    \"wordnet_id\": \"a-01376355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so celebrated as to having taken on the nature of a legend\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"legible\": {\n    \"form\": \"legible\",\n    \"cornetto_synset_id\": \"n_a-516920\",\n    \"wordnet_id\": \"a-01404702\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of handwriting, print, etc.) capable of being read or deciphered\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lenient\": {\n    \"form\": \"lenient\",\n    \"cornetto_synset_id\": \"c_392\",\n    \"wordnet_id\": \"a-00711831\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not strict\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"less\": {\n    \"form\": \"less\",\n    \"wordnet_id\": \"a-02347371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(usually preceded by 'no') lower in quality\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lesser\": {\n    \"form\": \"lesser\",\n    \"wordnet_id\": \"a-01395488\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of less size or importance\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"liable\": {\n    \"form\": \"liable\",\n    \"cornetto_synset_id\": \"n_a-532097\",\n    \"wordnet_id\": \"a-02362178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(often followed by 'to') likely to be affected with\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"licentious\": {\n    \"form\": \"licentious\",\n    \"cornetto_synset_id\": \"n_a-520781\",\n    \"wordnet_id\": \"a-00362269\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking moral discipline\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lifelike\": {\n    \"form\": \"lifelike\",\n    \"cornetto_synset_id\": \"n_a-517106\",\n    \"wordnet_id\": \"a-00074594\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from artificiality\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lifelong\": {\n    \"form\": \"lifelong\",\n    \"cornetto_synset_id\": \"n_a-517115\",\n    \"wordnet_id\": \"a-01440159\",\n    \"pos\": \"JJ\",\n    \"sense\": \"continuing through life\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"light\": {\n    \"form\": \"light\",\n    \"cornetto_synset_id\": \"n_a-528450\",\n    \"wordnet_id\": \"a-00269989\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by or emitting light\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"light-hearted\": {\n    \"form\": \"light-hearted\",\n    \"wordnet_id\": \"a-00363291\",\n    \"pos\": \"JJ\",\n    \"sense\": \"carefree and happy and lighthearted\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"likable\": {\n    \"form\": \"likable\",\n    \"wordnet_id\": \"a-02376277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of characters in literature or drama) evoking empathic or sympathetic feelings\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"liked\": {\n    \"form\": \"liked\",\n    \"wordnet_id\": \"a-1461138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"found pleasant or attractive\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"likely\": {\n    \"form\": \"likely\",\n    \"wordnet_id\": \"a-01884176\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expected to become or be\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"limited\": {\n    \"form\": \"limited\",\n    \"wordnet_id\": \"a-02002470\",\n    \"pos\": \"JJ\",\n    \"sense\": \"subject to limits or subjected to limits\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"limp\": {\n    \"form\": \"limp\",\n    \"cornetto_synset_id\": \"n_a-527850\",\n    \"wordnet_id\": \"a-02404081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in strength or firmness or resilience\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"linguistic\": {\n    \"form\": \"linguistic\",\n    \"cornetto_synset_id\": \"n_a-530161\",\n    \"wordnet_id\": \"a-02842445\",\n    \"pos\": \"JJ\",\n    \"sense\": \"consisting of or related to language\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"literary\": {\n    \"form\": \"literary\",\n    \"cornetto_synset_id\": \"n_a-517073\",\n    \"wordnet_id\": \"a-02830501\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of literature\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"little\": {\n    \"form\": \"little\",\n    \"wordnet_id\": \"a-02386612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"low in stature\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"live\": {\n    \"form\": \"live\",\n    \"wordnet_id\": \"a-02010441\",\n    \"pos\": \"JJ\",\n    \"sense\": \"highly reverberant\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lively\": {\n    \"form\": \"lively\",\n    \"cornetto_synset_id\": \"n_a-528047\",\n    \"wordnet_id\": \"a-00804371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"filled with events or activity\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lmao\": {\n    \"form\": \"lmao\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"local\": {\n    \"form\": \"local\",\n    \"wordnet_id\": \"a-02756346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or belonging to or characteristic of a particular locality or neighborhood\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"logical\": {\n    \"form\": \"logical\",\n    \"wordnet_id\": \"a-02499301\",\n    \"pos\": \"JJ\",\n    \"sense\": \"based on known statements or events or conditions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lol\": {\n    \"form\": \"lol\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lolol\": {\n    \"form\": \"lolol\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lonely\": {\n    \"form\": \"lonely\",\n    \"cornetto_synset_id\": \"n_a-536020\",\n    \"wordnet_id\": \"a-01313649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"devoid of creatures\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"long\": {\n    \"form\": \"long\",\n    \"cornetto_synset_id\": \"n_a-516735\",\n    \"wordnet_id\": \"a-01437963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"primarily temporal sense\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"long-winded\": {\n    \"form\": \"long-winded\",\n    \"cornetto_synset_id\": \"n_a-508243\",\n    \"wordnet_id\": \"a-00549236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"using or containing too many words\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"loose\": {\n    \"form\": \"loose\",\n    \"wordnet_id\": \"a-02404421\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not tense or taut\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"losers\": {\n    \"form\": \"losers\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"loses\": {\n    \"form\": \"loses\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"loud\": {\n    \"form\": \"loud\",\n    \"cornetto_synset_id\": \"n_a-512029\",\n    \"wordnet_id\": \"a-01452593\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by or producing sound of great volume or intensity\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lousy\": {\n    \"form\": \"lousy\",\n    \"wordnet_id\": \"a-422374\",\n    \"pos\": \"JJ\",\n    \"sense\": \"infested with lice\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"lovable\": {\n    \"form\": \"lovable\",\n    \"wordnet_id\": \"a-01459422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having characteristics that attract love or affection\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"love\": {\n    \"form\": \"love\",\n    \"wordnet_id\": \"v-1828736\",\n    \"pos\": \"VB\",\n    \"sense\": \"get pleasure from\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"loved\": {\n    \"form\": \"loved\",\n    \"cornetto_synset_id\": \"n_a-506898\",\n    \"wordnet_id\": \"a-01461822\",\n    \"pos\": \"JJ\",\n    \"sense\": \"held dear\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lovely\": {\n    \"form\": \"lovely\",\n    \"wordnet_id\": \"a-01459755\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lovable especially in a childlike or naive way\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"loving\": {\n    \"form\": \"loving\",\n    \"cornetto_synset_id\": \"n_a-530384\",\n    \"wordnet_id\": \"a-01463965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeling or showing love and affection\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"low\": {\n    \"form\": \"low\",\n    \"cornetto_synset_id\": \"n_a-516525\",\n    \"wordnet_id\": \"a-01215421\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of sounds and voices\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"loyal\": {\n    \"form\": \"loyal\",\n    \"wordnet_id\": \"a-00961392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"steadfast in allegiance or duty\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lucky\": {\n    \"form\": \"lucky\",\n    \"wordnet_id\": \"a-01468097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or bringing good fortune\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lush\": {\n    \"form\": \"lush\",\n    \"cornetto_synset_id\": \"n_a-526590\",\n    \"wordnet_id\": \"a-01369078\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of juice\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lyric\": {\n    \"form\": \"lyric\",\n    \"cornetto_synset_id\": \"n_a-517863\",\n    \"wordnet_id\": \"a-00856011\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing deep emotion\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mad\": {\n    \"form\": \"mad\",\n    \"wordnet_id\": \"a-02572038\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very foolish\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"magic\": {\n    \"form\": \"magic\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing or using or characteristic of or appropriate to supernatural powers\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"magical\": {\n    \"form\": \"magical\",\n    \"cornetto_synset_id\": \"n_a-510820\",\n    \"wordnet_id\": \"a-01576071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possessing or using or characteristic of or appropriate to supernatural powers\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"magnificent\": {\n    \"form\": \"magnificent\",\n    \"cornetto_synset_id\": \"n_a-511105\",\n    \"wordnet_id\": \"a-01285376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by grandeur\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"main\": {\n    \"form\": \"main\",\n    \"wordnet_id\": \"a-01512527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of force\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"major\": {\n    \"form\": \"major\",\n    \"wordnet_id\": \"a-02100236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the elder of two boys with the same family name\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"maladroit\": {\n    \"form\": \"maladroit\",\n    \"cornetto_synset_id\": \"n_a-529331\",\n    \"wordnet_id\": \"a-00063277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not adroit\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"male\": {\n    \"form\": \"male\",\n    \"cornetto_synset_id\": \"d_a-9398\",\n    \"wordnet_id\": \"a-01476685\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being the sex (of plant or animal) that produces gametes (spermatozoa) that perform the fertilizing function in generation\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malevolent\": {\n    \"form\": \"malevolent\",\n    \"cornetto_synset_id\": \"n_a-532034\",\n    \"wordnet_id\": \"a-00225564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wishing or appearing to wish evil to others\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mannerly\": {\n    \"form\": \"mannerly\",\n    \"cornetto_synset_id\": \"n_a-503527\",\n    \"wordnet_id\": \"a-00641343\",\n    \"pos\": \"JJ\",\n    \"sense\": \"socially correct in behavior\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"manorial\": {\n    \"form\": \"manorial\",\n    \"cornetto_synset_id\": \"c_472\",\n    \"wordnet_id\": \"a-03084397\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or based on the manor\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"manque\": {\n    \"form\": \"manque\",\n    \"cornetto_synset_id\": \"n_a-530896\",\n    \"wordnet_id\": \"a-00104825\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unfulfilled or frustrated in realizing an ambition\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"many\": {\n    \"form\": \"many\",\n    \"cornetto_synset_id\": \"n_a-532215\",\n    \"wordnet_id\": \"a-01551633\",\n    \"pos\": \"JJ\",\n    \"sense\": \"a quantifier that can be used with count nouns and is often preceded by 'as' or 'too' or 'so' or 'that'\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"many-sided\": {\n    \"form\": \"many-sided\",\n    \"cornetto_synset_id\": \"n_a-502070\",\n    \"wordnet_id\": \"a-02506922\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having many aspects\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marked\": {\n    \"form\": \"marked\",\n    \"cornetto_synset_id\": \"n_a-522312\",\n    \"wordnet_id\": \"a-01287808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"strongly marked\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"married\": {\n    \"form\": \"married\",\n    \"wordnet_id\": \"a-01481612\",\n    \"pos\": \"JJ\",\n    \"sense\": \"joined in matrimony\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"martial\": {\n    \"form\": \"martial\",\n    \"wordnet_id\": \"a-01518860\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suggesting war or military life\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"marvelous\": {\n    \"form\": \"marvelous\",\n    \"wordnet_id\": \"a-01676517\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extraordinarily good or great \",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"masculine\": {\n    \"form\": \"masculine\",\n    \"cornetto_synset_id\": \"n_a-518174\",\n    \"wordnet_id\": \"a-01483324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"associated with men and not with women\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"massive\": {\n    \"form\": \"massive\",\n    \"wordnet_id\": \"a-02263875\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being the same substance throughout\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"masterful\": {\n    \"form\": \"masterful\",\n    \"cornetto_synset_id\": \"n_a-518477\",\n    \"wordnet_id\": \"a-02226979\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or revealing supreme mastery or skill\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mathematical\": {\n    \"form\": \"mathematical\",\n    \"cornetto_synset_id\": \"n_a-535010\",\n    \"wordnet_id\": \"a-00915141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by the exactness or precision of mathematics\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mature\": {\n    \"form\": \"mature\",\n    \"wordnet_id\": \"a-01493173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fully developed or matured and ready to be eaten or used\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meager\": {\n    \"form\": \"meager\",\n    \"cornetto_synset_id\": \"n_a-502563\",\n    \"wordnet_id\": \"a-00106456\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deficient in amount or quality or extent\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mean\": {\n    \"form\": \"mean\",\n    \"wordnet_id\": \"a-02227663\",\n    \"pos\": \"JJ\",\n    \"sense\": \"excellent\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meaningful\": {\n    \"form\": \"meaningful\",\n    \"cornetto_synset_id\": \"n_a-532119\",\n    \"wordnet_id\": \"a-01496976\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a meaning or purpose\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meaningless\": {\n    \"form\": \"meaningless\",\n    \"wordnet_id\": \"a-01497736\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no meaning or direction or purpose\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"measly\": {\n    \"form\": \"measly\",\n    \"cornetto_synset_id\": \"n_a-530515\",\n    \"wordnet_id\": \"a-00107384\",\n    \"pos\": \"JJ\",\n    \"sense\": \"contemptibly small in amount\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"medical\": {\n    \"form\": \"medical\",\n    \"cornetto_synset_id\": \"n_a-532635\",\n    \"wordnet_id\": \"a-02760116\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to the study or practice of medicine\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"medicative\": {\n    \"form\": \"medicative\",\n    \"cornetto_synset_id\": \"n_a-510314\",\n    \"wordnet_id\": \"a-01166656\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the properties of medicine\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"medieval\": {\n    \"form\": \"medieval\",\n    \"cornetto_synset_id\": \"n_a-518794\",\n    \"wordnet_id\": \"a-02989754\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or belonging to the Middle Ages\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mediocre\": {\n    \"form\": \"mediocre\",\n    \"wordnet_id\": \"a-02347564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moderate to inferior in quality\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mediocrity\": {\n    \"form\": \"mediocrity\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"melodrama\": {\n    \"form\": \"melodrama\",\n    \"wordnet_id\": \"n-7016648\",\n    \"pos\": \"NN\",\n    \"sense\": \"an extravagant comedy in which action is more salient than characterization\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"memorable\": {\n    \"form\": \"memorable\",\n    \"cornetto_synset_id\": \"n_a-509822\",\n    \"wordnet_id\": \"a-01040752\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worth remembering\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"menacing\": {\n    \"form\": \"menacing\",\n    \"wordnet_id\": \"a-00194357\",\n    \"pos\": \"JJ\",\n    \"sense\": \"threatening or foreshadowing evil or tragic developments\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mental\": {\n    \"form\": \"mental\",\n    \"wordnet_id\": \"a-02898750\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the mind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"merciless\": {\n    \"form\": \"merciless\",\n    \"cornetto_synset_id\": \"n_a-518422\",\n    \"wordnet_id\": \"a-01507402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing no mercy\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mere\": {\n    \"form\": \"mere\",\n    \"wordnet_id\": \"a-01099707\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being nothing more than specified\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mesmerizing\": {\n    \"form\": \"mesmerizing\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mess\": {\n    \"form\": \"mess\",\n    \"wordnet_id\": \"v-276214\",\n    \"pos\": \"VB\",\n    \"sense\": \"make a mess of or create disorder in\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"messy\": {\n    \"form\": \"messy\",\n    \"wordnet_id\": \"a-2426042\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dirty and disorderly\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"metaphorical\": {\n    \"form\": \"metaphorical\",\n    \"cornetto_synset_id\": \"n_a-508972\",\n    \"wordnet_id\": \"a-01419784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing one thing in terms normally denoting another\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mexican\": {\n    \"form\": \"mexican\",\n    \"wordnet_id\": \"a-03026902\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to Mexico or its inhabitants\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mid\": {\n    \"form\": \"mid\",\n    \"wordnet_id\": \"a-00816324\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used in combination to denote the middle\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"middle\": {\n    \"form\": \"middle\",\n    \"wordnet_id\": \"a-00820458\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a stage in the development of a language or literature between earlier and later stages\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mighty\": {\n    \"form\": \"mighty\",\n    \"cornetto_synset_id\": \"n_a-518022\",\n    \"wordnet_id\": \"a-01826575\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing great strength or force or intensity\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mild\": {\n    \"form\": \"mild\",\n    \"wordnet_id\": \"a-01508719\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moderate in type or degree or effect or force\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"military\": {\n    \"form\": \"military\",\n    \"cornetto_synset_id\": \"n_a-518892\",\n    \"wordnet_id\": \"a-02764251\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the study of the principles of warfare\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mind-boggling\": {\n    \"form\": \"mind-boggling\",\n    \"cornetto_synset_id\": \"n_a-532272\",\n    \"wordnet_id\": \"a-01285938\",\n    \"pos\": \"JJ\",\n    \"sense\": \"intellectually or emotionally overwhelming\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mindless\": {\n    \"form\": \"mindless\",\n    \"wordnet_id\": \"a-02571277\",\n    \"pos\": \"JJ\",\n    \"sense\": \"devoid of intelligence\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"minimal\": {\n    \"form\": \"minimal\",\n    \"cornetto_synset_id\": \"n_a-518946\",\n    \"wordnet_id\": \"a-01496021\",\n    \"pos\": \"JJ\",\n    \"sense\": \"the least possible\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"minor\": {\n    \"form\": \"minor\",\n    \"wordnet_id\": \"a-02101240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the younger of two boys with the same family name\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"minus\": {\n    \"form\": \"minus\",\n    \"cornetto_synset_id\": \"n_a-519760\",\n    \"wordnet_id\": \"a-00065667\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving disadvantage or harm\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"miserable\": {\n    \"form\": \"miserable\",\n    \"wordnet_id\": \"a-02347086\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of very poor quality or condition\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"misfire\": {\n    \"form\": \"misfire\",\n    \"wordnet_id\": \"v-1134653\",\n    \"pos\": \"VB\",\n    \"sense\": \"fail to fire or detonate\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"misplaced\": {\n    \"form\": \"misplaced\",\n    \"wordnet_id\": \"a-1682073\",\n    \"pos\": \"JJ\",\n    \"sense\": \"put in the wrong place or position\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"missing\": {\n    \"form\": \"missing\",\n    \"wordnet_id\": \"a-1450178\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not able to be found\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mixed\": {\n    \"form\": \"mixed\",\n    \"wordnet_id\": \"a-01326652\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving or composed of different races\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mod\": {\n    \"form\": \"mod\",\n    \"cornetto_synset_id\": \"d_a-9408\",\n    \"wordnet_id\": \"a-00972902\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to a recently developed fashion or style\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moderate\": {\n    \"form\": \"moderate\",\n    \"cornetto_synset_id\": \"n_a-518332\",\n    \"wordnet_id\": \"a-01509367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not extreme\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"modern\": {\n    \"form\": \"modern\",\n    \"cornetto_synset_id\": \"n_a-519076\",\n    \"wordnet_id\": \"a-01535709\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to the modern era\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"modest\": {\n    \"form\": \"modest\",\n    \"cornetto_synset_id\": \"n_a-513680\",\n    \"wordnet_id\": \"a-01532912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not large but sufficient in size or amount\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monkey\": {\n    \"form\": \"monkey\",\n    \"wordnet_id\": \"n-2484322\",\n    \"pos\": \"NN\",\n    \"sense\": \"any of various long-tailed primates (excluding the prosimians)\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"monosyllabic\": {\n    \"form\": \"monosyllabic\",\n    \"wordnet_id\": \"a-2289018\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or characterized by or consisting of one syllable\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"moral\": {\n    \"form\": \"moral\",\n    \"wordnet_id\": \"a-01780596\",\n    \"pos\": \"JJ\",\n    \"sense\": \"psychological rather than physical or tangible in effect\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moralizing\": {\n    \"form\": \"moralizing\",\n    \"wordnet_id\": \"n-6742932\",\n    \"pos\": \"NN\",\n    \"sense\": \"indulgence in moral pronouncements\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"more\": {\n    \"form\": \"more\",\n    \"wordnet_id\": \"a-01556355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(comparative of 'many' used with count nouns) quantifier meaning greater in number\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moron\": {\n    \"form\": \"moron\",\n    \"wordnet_id\": \"n-10197525\",\n    \"pos\": \"NN\",\n    \"sense\": \"a person of subnormal intelligence\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.8\"\n  },\n  \"morons\": {\n    \"form\": \"morons\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.8\"\n  },\n  \"most\": {\n    \"form\": \"most\",\n    \"wordnet_id\": \"a-01557120\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(superlative of 'many' used with count nouns and often preceded by 'the') quantifier meaning the greatest in number\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"motley\": {\n    \"form\": \"motley\",\n    \"cornetto_synset_id\": \"n_a-504646\",\n    \"wordnet_id\": \"a-00398978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having sections or patches colored differently and usually brightly\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouth-watering\": {\n    \"form\": \"mouth-watering\",\n    \"cornetto_synset_id\": \"d_a-9380\",\n    \"wordnet_id\": \"a-00133669\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasing to the sense of taste\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"much\": {\n    \"form\": \"much\",\n    \"wordnet_id\": \"r-59413\",\n    \"pos\": \"RB\",\n    \"sense\": \"frequently or in great quantities\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"muggy\": {\n    \"form\": \"muggy\",\n    \"cornetto_synset_id\": \"c_290\",\n    \"wordnet_id\": \"a-02549691\",\n    \"pos\": \"JJ\",\n    \"sense\": \"hot or warm and humid\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"multilateral\": {\n    \"form\": \"multilateral\",\n    \"cornetto_synset_id\": \"n_a-532153\",\n    \"wordnet_id\": \"a-00237240\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having many parts or sides\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"multiple\": {\n    \"form\": \"multiple\",\n    \"cornetto_synset_id\": \"n_a-532136\",\n    \"wordnet_id\": \"a-02215977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or involving or consisting of more than one part or entity or individual\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mundane\": {\n    \"form\": \"mundane\",\n    \"wordnet_id\": \"a-02578035\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerned with the world or worldly matters\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"musical\": {\n    \"form\": \"musical\",\n    \"cornetto_synset_id\": \"n_a-519488\",\n    \"wordnet_id\": \"a-01504625\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or resembling or accompanied by music\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"muzak\": {\n    \"form\": \"muzak\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"mysterious\": {\n    \"form\": \"mysterious\",\n    \"wordnet_id\": \"a-00900071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having an import not apparent to the senses nor obvious to the intelligence\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naive\": {\n    \"form\": \"naive\",\n    \"wordnet_id\": \"a-01912858\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or created by one without formal training\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naked\": {\n    \"form\": \"naked\",\n    \"wordnet_id\": \"a-02354234\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of the eye or ear e.g.) without the aid of an optical or acoustical device or instrument\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nameless\": {\n    \"form\": \"nameless\",\n    \"cornetto_synset_id\": \"n_a-531905\",\n    \"wordnet_id\": \"a-00120784\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or having an unknown or unnamed source\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"narrow\": {\n    \"form\": \"narrow\",\n    \"cornetto_synset_id\": \"d_a-9417\",\n    \"wordnet_id\": \"a-02561888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not wide\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nasty\": {\n    \"form\": \"nasty\",\n    \"wordnet_id\": \"a-01587077\",\n    \"pos\": \"JJ\",\n    \"sense\": \"offensive or even (of persons) malicious\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"natural\": {\n    \"form\": \"natural\",\n    \"cornetto_synset_id\": \"n_a-519696\",\n    \"wordnet_id\": \"a-01569965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in accordance with nature\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"naturalistic\": {\n    \"form\": \"naturalistic\",\n    \"cornetto_synset_id\": \"c_369\",\n    \"wordnet_id\": \"a-01979985\",\n    \"pos\": \"JJ\",\n    \"sense\": \"representing what is real\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"naughty\": {\n    \"form\": \"naughty\",\n    \"cornetto_synset_id\": \"n_a-529550\",\n    \"wordnet_id\": \"a-01128406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"badly behaved\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nauseated\": {\n    \"form\": \"nauseated\",\n    \"cornetto_synset_id\": \"n_a-519014\",\n    \"wordnet_id\": \"a-02545689\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeling nausea\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"near\": {\n    \"form\": \"near\",\n    \"cornetto_synset_id\": \"n_a-512169\",\n    \"wordnet_id\": \"a-00444519\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not far distant in time or space or degree or circumstances\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"necessary\": {\n    \"form\": \"necessary\",\n    \"wordnet_id\": \"a-01580050\",\n    \"pos\": \"JJ\",\n    \"sense\": \"absolutely essential\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"needless\": {\n    \"form\": \"needless\",\n    \"wordnet_id\": \"a-01582049\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unnecessary and unwarranted\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"negative\": {\n    \"form\": \"negative\",\n    \"cornetto_synset_id\": \"n_a-521445\",\n    \"wordnet_id\": \"a-00075515\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing or consisting of a negation or refusal or denial\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nerve-racking\": {\n    \"form\": \"nerve-racking\",\n    \"cornetto_synset_id\": \"n_a-535561\",\n    \"wordnet_id\": \"a-00090408\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extremely irritating to the nerves\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"net\": {\n    \"form\": \"net\",\n    \"cornetto_synset_id\": \"n_a-519884\",\n    \"wordnet_id\": \"a-01582461\",\n    \"pos\": \"JJ\",\n    \"sense\": \"remaining after all deductions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"new\": {\n    \"form\": \"new\",\n    \"wordnet_id\": \"a-02584699\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unaffected by use or exposure\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"next\": {\n    \"form\": \"next\",\n    \"wordnet_id\": \"a-01294975\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of elected officers) elected but not yet serving\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nice\": {\n    \"form\": \"nice\",\n    \"cornetto_synset_id\": \"n_a-510721\",\n    \"wordnet_id\": \"a-01586342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasant or pleasing or agreeable in nature or appearance\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"noble\": {\n    \"form\": \"noble\",\n    \"cornetto_synset_id\": \"n_a-507937\",\n    \"wordnet_id\": \"a-01588172\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing or indicative of high or elevated character\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nonviolent\": {\n    \"form\": \"nonviolent\",\n    \"cornetto_synset_id\": \"n_a-510824\",\n    \"wordnet_id\": \"a-00249576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"achieved without bloodshed\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"normal\": {\n    \"form\": \"normal\",\n    \"cornetto_synset_id\": \"n_a-517484\",\n    \"wordnet_id\": \"a-01593649\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming with or constituting a norm or standard or level or type or social norm\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"norwegian\": {\n    \"form\": \"norwegian\",\n    \"wordnet_id\": \"a-02959912\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to Norway or its people or culture or language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nostalgic\": {\n    \"form\": \"nostalgic\",\n    \"cornetto_synset_id\": \"d_a-9425\",\n    \"wordnet_id\": \"a-00889098\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unhappy about being away and longing for familiar things or persons\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"notable\": {\n    \"form\": \"notable\",\n    \"wordnet_id\": \"a-02586957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of notice\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"numb\": {\n    \"form\": \"numb\",\n    \"cornetto_synset_id\": \"d_a-9540\",\n    \"wordnet_id\": \"a-00080698\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so frightened as to be unable to move\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"numerous\": {\n    \"form\": \"numerous\",\n    \"wordnet_id\": \"a-01552419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"amounting to a large indefinite number\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obedient\": {\n    \"form\": \"obedient\",\n    \"cornetto_synset_id\": \"n_a-510893\",\n    \"wordnet_id\": \"a-01612053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"dutifully complying with the commands or instructions of those in authority\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"objective\": {\n    \"form\": \"objective\",\n    \"cornetto_synset_id\": \"d_a-9427\",\n    \"wordnet_id\": \"a-00013442\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to immediate experience of actual things or events\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"obsessed\": {\n    \"form\": \"obsessed\",\n    \"wordnet_id\": \"a-00599468\",\n    \"pos\": \"JJ\",\n    \"sense\": \"influenced or controlled by a powerful force such as a strong emotion\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obstacles\": {\n    \"form\": \"obstacles\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"obvious\": {\n    \"form\": \"obvious\",\n    \"wordnet_id\": \"a-01618053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easily perceived by the senses or grasped by the mind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"occasional\": {\n    \"form\": \"occasional\",\n    \"wordnet_id\": \"a-01961205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"occurring from time to time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"odd\": {\n    \"form\": \"odd\",\n    \"wordnet_id\": \"a-00968010\",\n    \"pos\": \"JJ\",\n    \"sense\": \"beyond or deviating from the usual or expected\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"offbeat\": {\n    \"form\": \"offbeat\",\n    \"cornetto_synset_id\": \"n_a-504364\",\n    \"wordnet_id\": \"a-00609564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"informal terms\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"offers\": {\n    \"form\": \"offers\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ok\": {\n    \"form\": \"ok\",\n    \"wordnet_id\": \"a-02081114\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being satisfactory or in satisfactory condition\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"okay\": {\n    \"form\": \"okay\",\n    \"wordnet_id\": \"a-02081114\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being satisfactory or in satisfactory condition\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"old\": {\n    \"form\": \"old\",\n    \"cornetto_synset_id\": \"d_a-9482\",\n    \"wordnet_id\": \"a-01638438\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of long duration\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"older\": {\n    \"form\": \"older\",\n    \"wordnet_id\": \"a-02100031\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of the older of two persons of the same name especially used to distinguish a father from his son\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"only\": {\n    \"form\": \"only\",\n    \"wordnet_id\": \"a-02214736\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being the only one\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"oozes\": {\n    \"form\": \"oozes\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"open\": {\n    \"form\": \"open\",\n    \"cornetto_synset_id\": \"n_a-521880\",\n    \"wordnet_id\": \"a-02130821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not brought to a conclusion\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"open-minded\": {\n    \"form\": \"open-minded\",\n    \"cornetto_synset_id\": \"n_a-533914\",\n    \"wordnet_id\": \"a-00287498\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ready to entertain new ideas\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"opposite\": {\n    \"form\": \"opposite\",\n    \"wordnet_id\": \"a-02071139\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moving or facing away from each other\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"optimum\": {\n    \"form\": \"optimum\",\n    \"cornetto_synset_id\": \"n_a-522061\",\n    \"wordnet_id\": \"a-00228645\",\n    \"pos\": \"JJ\",\n    \"sense\": \"most desirable possible under a restriction expressed or implied\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ordinary\": {\n    \"form\": \"ordinary\",\n    \"wordnet_id\": \"a-01672607\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not exceptional in any way especially in quality or ability or size or degree\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"original\": {\n    \"form\": \"original\",\n    \"wordnet_id\": \"a-01853039\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of e.g. information) not secondhand or by way of something intermediary\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"orthodox\": {\n    \"form\": \"orthodox\",\n    \"cornetto_synset_id\": \"n_a-522187\",\n    \"wordnet_id\": \"a-01689880\",\n    \"pos\": \"JJ\",\n    \"sense\": \"adhering to what is commonly accepted\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"other\": {\n    \"form\": \"other\",\n    \"wordnet_id\": \"a-02069355\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not the same one or ones already mentioned or implied\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"outdated\": {\n    \"form\": \"outdated\",\n    \"cornetto_synset_id\": \"n_a-533656\",\n    \"wordnet_id\": \"a-00669138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"old\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"outraged\": {\n    \"form\": \"outraged\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"outrageous\": {\n    \"form\": \"outrageous\",\n    \"wordnet_id\": \"a-01626562\",\n    \"pos\": \"JJ\",\n    \"sense\": \"grossly offensive to decency or morality\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"outside\": {\n    \"form\": \"outside\",\n    \"wordnet_id\": \"a-01692969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or being on or near the outer side or limit\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"outstanding\": {\n    \"form\": \"outstanding\",\n    \"wordnet_id\": \"a-02343762\",\n    \"pos\": \"JJ\",\n    \"sense\": \"distinguished from others in excellence\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"over-the-top\": {\n    \"form\": \"over-the-top\",\n    \"wordnet_id\": \"a-01534648\",\n    \"pos\": \"JJ\",\n    \"sense\": \"far more than usual or expected\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"overall\": {\n    \"form\": \"overall\",\n    \"wordnet_id\": \"a-01582946\",\n    \"pos\": \"JJ\",\n    \"sense\": \"including everything\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"overboard\": {\n    \"form\": \"overboard\",\n    \"wordnet_id\": \"r-506715\",\n    \"pos\": \"RB\",\n    \"sense\": \"to extremes\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"overexcited\": {\n    \"form\": \"overexcited\",\n    \"cornetto_synset_id\": \"n_a-522310\",\n    \"wordnet_id\": \"a-00920422\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unduly excited\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"overwhelming\": {\n    \"form\": \"overwhelming\",\n    \"wordnet_id\": \"a-01511152\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very intense\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"own\": {\n    \"form\": \"own\",\n    \"cornetto_synset_id\": \"n_a-504151\",\n    \"wordnet_id\": \"a-01768724\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to or on behalf of a specified person (especially yourself)\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"painful\": {\n    \"form\": \"painful\",\n    \"cornetto_synset_id\": \"n_a-523334\",\n    \"wordnet_id\": \"a-01711071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing physical or psychological pain\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pale\": {\n    \"form\": \"pale\",\n    \"wordnet_id\": \"v-103619\",\n    \"pos\": \"VB\",\n    \"sense\": \"turn pale, as if in fear\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"palpable\": {\n    \"form\": \"palpable\",\n    \"wordnet_id\": \"a-01747713\",\n    \"pos\": \"JJ\",\n    \"sense\": \"can be felt by palpation\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parade\": {\n    \"form\": \"parade\",\n    \"wordnet_id\": \"v-1924712\",\n    \"pos\": \"VB\",\n    \"sense\": \"walk ostentatiously\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"parallel\": {\n    \"form\": \"parallel\",\n    \"cornetto_synset_id\": \"d_a-9265\",\n    \"wordnet_id\": \"a-01718158\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being everywhere equidistant and not intersecting\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"partial\": {\n    \"form\": \"partial\",\n    \"cornetto_synset_id\": \"n_r-509803\",\n    \"wordnet_id\": \"a-00524693\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or affecting only a part\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"particular\": {\n    \"form\": \"particular\",\n    \"wordnet_id\": \"a-01853228\",\n    \"pos\": \"JJ\",\n    \"sense\": \"first and most important\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"passionate\": {\n    \"form\": \"passionate\",\n    \"cornetto_synset_id\": \"n_a-508813\",\n    \"wordnet_id\": \"a-01725712\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or expressing strong emotions\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"past\": {\n    \"form\": \"past\",\n    \"wordnet_id\": \"a-01727926\",\n    \"pos\": \"JJ\",\n    \"sense\": \"earlier than the present time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pathetic\": {\n    \"form\": \"pathetic\",\n    \"wordnet_id\": \"a-00905181\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inspiring mixed contempt and pity\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"peaceful\": {\n    \"form\": \"peaceful\",\n    \"wordnet_id\": \"a-02513101\",\n    \"pos\": \"JJ\",\n    \"sense\": \"peacefully resistant in response to injustice\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"peaky\": {\n    \"form\": \"peaky\",\n    \"cornetto_synset_id\": \"n_a-528597\",\n    \"wordnet_id\": \"a-01214255\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or as if having especially high-pitched spots\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"peevish\": {\n    \"form\": \"peevish\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"peppery\": {\n    \"form\": \"peppery\",\n    \"cornetto_synset_id\": \"n_a-510413\",\n    \"wordnet_id\": \"a-02397496\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the piquant burning taste of peppers\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"perfect\": {\n    \"form\": \"perfect\",\n    \"wordnet_id\": \"a-01749320\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being complete of its kind and without defect or blemish\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"perpetually\": {\n    \"form\": \"perpetually\",\n    \"wordnet_id\": \"r-227968\",\n    \"pos\": \"RB\",\n    \"sense\": \"everlastingly\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"perplexed\": {\n    \"form\": \"perplexed\",\n    \"cornetto_synset_id\": \"n_a-529451\",\n    \"wordnet_id\": \"a-01765643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of difficulty or confusion or bewilderment\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"personal\": {\n    \"form\": \"personal\",\n    \"cornetto_synset_id\": \"n_a-523170\",\n    \"wordnet_id\": \"a-01767329\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerning or affecting a particular person or his or her private life and personality\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"phantasmagoric\": {\n    \"form\": \"phantasmagoric\",\n    \"cornetto_synset_id\": \"n_a-530055\",\n    \"wordnet_id\": \"a-01943067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by fantastic imagery and incongruous juxtapositions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"phenomenal\": {\n    \"form\": \"phenomenal\",\n    \"wordnet_id\": \"a-02859708\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to a phenomenon\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"philosophic\": {\n    \"form\": \"philosophic\",\n    \"cornetto_synset_id\": \"n_a-534873\",\n    \"wordnet_id\": \"a-02858231\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to philosophy or philosophers\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"philosophical\": {\n    \"form\": \"philosophical\",\n    \"cornetto_synset_id\": \"n_a-534873\",\n    \"wordnet_id\": \"a-02858231\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to philosophy or philosophers\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"physical\": {\n    \"form\": \"physical\",\n    \"wordnet_id\": \"a-01778212\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving the body as distinguished from the mind or spirit\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pinheads\": {\n    \"form\": \"pinheads\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"pink\": {\n    \"form\": \"pink\",\n    \"cornetto_synset_id\": \"n_a-526273\",\n    \"wordnet_id\": \"a-00379595\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a light shade of red\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pious\": {\n    \"form\": \"pious\",\n    \"cornetto_synset_id\": \"d_a-9319\",\n    \"wordnet_id\": \"a-01781478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing or expressing reverence for a deity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pity\": {\n    \"form\": \"pity\",\n    \"wordnet_id\": \"n-7305098\",\n    \"pos\": \"NN\",\n    \"sense\": \"an unfortunate development\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"pivotal\": {\n    \"form\": \"pivotal\",\n    \"cornetto_synset_id\": \"n_a-503757\",\n    \"wordnet_id\": \"a-00656507\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of crucial importance\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"placid\": {\n    \"form\": \"placid\",\n    \"cornetto_synset_id\": \"n_a-527854\",\n    \"wordnet_id\": \"a-00302951\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of a body of water) free from disturbance by heavy waves\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plain\": {\n    \"form\": \"plain\",\n    \"wordnet_id\": \"a-01907103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not mixed with extraneous elements\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"platitudes\": {\n    \"form\": \"platitudes\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"NNS\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"plausible\": {\n    \"form\": \"plausible\",\n    \"wordnet_id\": \"a-02182728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"given to or characterized by presenting specious arguments\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleasant\": {\n    \"form\": \"pleasant\",\n    \"cornetto_synset_id\": \"n_a-532410\",\n    \"wordnet_id\": \"a-01800349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affording pleasure\",\n    \"polarity\": \"0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pleased\": {\n    \"form\": \"pleased\",\n    \"wordnet_id\": \"a-01805157\",\n    \"pos\": \"JJ\",\n    \"sense\": \"experiencing or manifesting pleasure\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleonastic\": {\n    \"form\": \"pleonastic\",\n    \"cornetto_synset_id\": \"d_a-9483\",\n    \"wordnet_id\": \"a-00549826\",\n    \"pos\": \"JJ\",\n    \"sense\": \"repetition of same sense in different words\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plod\": {\n    \"form\": \"plod\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"plodding\": {\n    \"form\": \"plodding\",\n    \"wordnet_id\": \"n-291965\",\n    \"pos\": \"NN\",\n    \"sense\": \"the act of walking with a slow heavy gait\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"poetic\": {\n    \"form\": \"poetic\",\n    \"wordnet_id\": \"a-02857295\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to poets\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"poignant\": {\n    \"form\": \"poignant\",\n    \"wordnet_id\": \"a-01712174\",\n    \"pos\": \"JJ\",\n    \"sense\": \"keenly distressing to the mind or feelings\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pointless\": {\n    \"form\": \"pointless\",\n    \"wordnet_id\": \"a-02503305\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving no useful purpose\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"polar\": {\n    \"form\": \"polar\",\n    \"wordnet_id\": \"a-02444147\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or existing at or near a geographical pole or within the Arctic or Antarctic Circles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"political\": {\n    \"form\": \"political\",\n    \"cornetto_synset_id\": \"d_a-9492\",\n    \"wordnet_id\": \"a-02857587\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the profession of governing\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poor\": {\n    \"form\": \"poor\",\n    \"cornetto_synset_id\": \"d_a-9161\",\n    \"wordnet_id\": \"a-02022953\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having little money or few possessions\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"popular\": {\n    \"form\": \"popular\",\n    \"cornetto_synset_id\": \"n_a-523989\",\n    \"wordnet_id\": \"a-00414518\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of music or art) new and of general appeal (especially among young people)\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"positive\": {\n    \"form\": \"positive\",\n    \"wordnet_id\": \"a-01820481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indicating existence or presence of a suspected condition or pathogen\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"possible\": {\n    \"form\": \"possible\",\n    \"wordnet_id\": \"a-01821266\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of happening or existing\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"potent\": {\n    \"form\": \"potent\",\n    \"wordnet_id\": \"a-01825419\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of a male) capable of copulation\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"potential\": {\n    \"form\": \"potential\",\n    \"wordnet_id\": \"a-01884176\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expected to become or be\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"powerful\": {\n    \"form\": \"powerful\",\n    \"wordnet_id\": \"a-02323072\",\n    \"pos\": \"JJ\",\n    \"sense\": \"strong enough to knock down or overwhelm\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"powerless\": {\n    \"form\": \"powerless\",\n    \"cornetto_synset_id\": \"n_a-513099\",\n    \"wordnet_id\": \"a-01827535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking power\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"preachy\": {\n    \"form\": \"preachy\",\n    \"wordnet_id\": \"a-1325273\",\n    \"pos\": \"JJ\",\n    \"sense\": \"inclined to or marked by tedious moralization\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"precious\": {\n    \"form\": \"precious\",\n    \"wordnet_id\": \"a-02587556\",\n    \"pos\": \"JJ\",\n    \"sense\": \"held in great esteem for admirable qualities especially of an intrinsic nature\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"precise\": {\n    \"form\": \"precise\",\n    \"cornetto_synset_id\": \"n_a-510774\",\n    \"wordnet_id\": \"a-01837744\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sharply exact or accurate or delimited\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"predictable\": {\n    \"form\": \"predictable\",\n    \"wordnet_id\": \"a-01841544\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of being foretold\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pregnant\": {\n    \"form\": \"pregnant\",\n    \"wordnet_id\": \"a-01497387\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rich in significance or implication\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"present\": {\n    \"form\": \"present\",\n    \"wordnet_id\": \"a-01846413\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being or existing in a specified place\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pretentious\": {\n    \"form\": \"pretentious\",\n    \"wordnet_id\": \"a-1849288\",\n    \"pos\": \"JJ\",\n    \"sense\": \"making claim to or creating an appearance of (often undeserved) importance or distinction\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pretty\": {\n    \"form\": \"pretty\",\n    \"wordnet_id\": \"a-01128871\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used ironically) unexpectedly bad\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"previous\": {\n    \"form\": \"previous\",\n    \"wordnet_id\": \"a-01729819\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used especially of persons) of the immediate past\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"priceless\": {\n    \"form\": \"priceless\",\n    \"wordnet_id\": \"a-02501367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having incalculable monetary, intellectual, or spiritual worth\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"primary\": {\n    \"form\": \"primary\",\n    \"wordnet_id\": \"a-01856238\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or being the essential or basic part\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prior\": {\n    \"form\": \"prior\",\n    \"wordnet_id\": \"a-00122128\",\n    \"pos\": \"JJ\",\n    \"sense\": \"earlier in time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prissy\": {\n    \"form\": \"prissy\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"private\": {\n    \"form\": \"private\",\n    \"wordnet_id\": \"a-01858094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"confined to particular persons or groups or providing privacy\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"professional\": {\n    \"form\": \"professional\",\n    \"wordnet_id\": \"a-02839695\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or suitable as a profession\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"profitering\": {\n    \"form\": \"profitering\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"profound\": {\n    \"form\": \"profound\",\n    \"wordnet_id\": \"a-02162934\",\n    \"pos\": \"JJ\",\n    \"sense\": \"far-reaching and thoroughgoing in effect especially on the nature of something\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prolix\": {\n    \"form\": \"prolix\",\n    \"cornetto_synset_id\": \"n_a-516733\",\n    \"wordnet_id\": \"a-00548781\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tediously prolonged or tending to speak or write at great length\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prominent\": {\n    \"form\": \"prominent\",\n    \"wordnet_id\": \"a-00580805\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a quality that thrusts itself into attention\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"promising\": {\n    \"form\": \"promising\",\n    \"wordnet_id\": \"a-01412286\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing possibility of achievement or excellence\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"propaganda\": {\n    \"form\": \"propaganda\",\n    \"wordnet_id\": \"n-6674542\",\n    \"pos\": \"NN\",\n    \"sense\": \"information that is spread for the purpose of promoting some cause\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"proper\": {\n    \"form\": \"proper\",\n    \"cornetto_synset_id\": \"n_a-525198\",\n    \"wordnet_id\": \"a-00135455\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appropriate for a condition or purpose or occasion or a person's character, needs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"proud\": {\n    \"form\": \"proud\",\n    \"cornetto_synset_id\": \"d_a-9551\",\n    \"wordnet_id\": \"a-01889256\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeling self-respect or pleasure in something by which you measure your self-worth\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"proves\": {\n    \"form\": \"proves\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"psychological\": {\n    \"form\": \"psychological\",\n    \"cornetto_synset_id\": \"n_a-524671\",\n    \"wordnet_id\": \"a-02905794\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or determined by psychology\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"psychotic\": {\n    \"form\": \"psychotic\",\n    \"cornetto_synset_id\": \"n_a-524683\",\n    \"wordnet_id\": \"a-02077469\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of or suffering from psychosis\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"public\": {\n    \"form\": \"public\",\n    \"cornetto_synset_id\": \"n_a-521887\",\n    \"wordnet_id\": \"a-01861205\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not private\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pure\": {\n    \"form\": \"pure\",\n    \"wordnet_id\": \"a-01905653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free of extraneous elements of any kind\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"putative\": {\n    \"form\": \"putative\",\n    \"cornetto_synset_id\": \"n_a-532582\",\n    \"wordnet_id\": \"a-00028471\",\n    \"pos\": \"JJ\",\n    \"sense\": \"purported\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"questionable\": {\n    \"form\": \"questionable\",\n    \"wordnet_id\": \"a-01916229\",\n    \"pos\": \"JJ\",\n    \"sense\": \"subject to question\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quick\": {\n    \"form\": \"quick\",\n    \"wordnet_id\": \"a-01335903\",\n    \"pos\": \"JJ\",\n    \"sense\": \"apprehending and responding with speed and sensitivity\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quiet\": {\n    \"form\": \"quiet\",\n    \"wordnet_id\": \"a-01922763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by an absence or near absence of agitation or activity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quirky\": {\n    \"form\": \"quirky\",\n    \"cornetto_synset_id\": \"n_a-504364\",\n    \"wordnet_id\": \"a-00609564\",\n    \"pos\": \"JJ\",\n    \"sense\": \"informal terms\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quixotic\": {\n    \"form\": \"quixotic\",\n    \"cornetto_synset_id\": \"n_a-526106\",\n    \"wordnet_id\": \"a-01837182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not sensible about practical matters\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rancorous\": {\n    \"form\": \"rancorous\",\n    \"cornetto_synset_id\": \"d_a-9567\",\n    \"wordnet_id\": \"a-00116940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing deep-seated resentment\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"random\": {\n    \"form\": \"random\",\n    \"wordnet_id\": \"a-01924316\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking any definite plan or order or purpose\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rank\": {\n    \"form\": \"rank\",\n    \"cornetto_synset_id\": \"n_a-525065\",\n    \"wordnet_id\": \"a-01002256\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very fertile\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rare\": {\n    \"form\": \"rare\",\n    \"cornetto_synset_id\": \"d_a-9624\",\n    \"wordnet_id\": \"a-00017024\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not widely distributed\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"raucous\": {\n    \"form\": \"raucous\",\n    \"cornetto_synset_id\": \"n_a-512205\",\n    \"wordnet_id\": \"a-01667110\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disturbing the public peace\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"raunchy\": {\n    \"form\": \"raunchy\",\n    \"wordnet_id\": \"a-02134701\",\n    \"pos\": \"JJ\",\n    \"sense\": \"earthy and sexually explicit\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"raw\": {\n    \"form\": \"raw\",\n    \"wordnet_id\": \"a-01954943\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not processed or refined\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ready\": {\n    \"form\": \"ready\",\n    \"wordnet_id\": \"a-02565701\",\n    \"pos\": \"JJ\",\n    \"sense\": \"mentally disposed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"real\": {\n    \"form\": \"real\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"RB\",\n    \"sense\": \"'real' is sometimes used informally for 'really'\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"realistic\": {\n    \"form\": \"realistic\",\n    \"wordnet_id\": \"a-02787290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the philosophical doctrine of realism\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"really\": {\n    \"form\": \"really\",\n    \"wordnet_id\": \"r-00037226\",\n    \"pos\": \"RB\",\n    \"sense\": \"in accordance with truth or fact or reality\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"reasonable\": {\n    \"form\": \"reasonable\",\n    \"cornetto_synset_id\": \"n_a-520216\",\n    \"wordnet_id\": \"a-01943406\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing reason or sound judgment\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"recent\": {\n    \"form\": \"recent\",\n    \"wordnet_id\": \"a-01730444\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the immediate past or just previous to the present time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"recognizable\": {\n    \"form\": \"recognizable\",\n    \"wordnet_id\": \"a-01747996\",\n    \"pos\": \"JJ\",\n    \"sense\": \"easily perceived\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"red\": {\n    \"form\": \"red\",\n    \"cornetto_synset_id\": \"n_a-526144\",\n    \"wordnet_id\": \"a-00381097\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a color at the end of the color spectrum (next to orange)\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"redeeming\": {\n    \"form\": \"redeeming\",\n    \"wordnet_id\": \"a-01124574\",\n    \"pos\": \"JJ\",\n    \"sense\": \"compensating for some fault or defect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"redoubtable\": {\n    \"form\": \"redoubtable\",\n    \"cornetto_synset_id\": \"n_a-509670\",\n    \"wordnet_id\": \"a-01983432\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of respect or honor\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"redundant\": {\n    \"form\": \"redundant\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"refreshing\": {\n    \"form\": \"refreshing\",\n    \"wordnet_id\": \"a-01642245\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pleasantly new or different\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"regrets\": {\n    \"form\": \"regrets\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"regular\": {\n    \"form\": \"regular\",\n    \"wordnet_id\": \"a-02469577\",\n    \"pos\": \"JJ\",\n    \"sense\": \"often used as intensifiers\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"regurgitates\": {\n    \"form\": \"regurgitates\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"rehash\": {\n    \"form\": \"rehash\",\n    \"wordnet_id\": \"v-1162629\",\n    \"pos\": \"VB\",\n    \"sense\": \"present or use over, with no or few changes\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"related\": {\n    \"form\": \"related\",\n    \"cornetto_synset_id\": \"n_a-532834\",\n    \"wordnet_id\": \"a-01972820\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being connected either logically or causally or by shared characteristics \",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relative\": {\n    \"form\": \"relative\",\n    \"wordnet_id\": \"a-00482673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"properly related in size or degree or other measurable characteristics\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"relevant\": {\n    \"form\": \"relevant\",\n    \"cornetto_synset_id\": \"n_a-525520\",\n    \"wordnet_id\": \"a-01975138\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a bearing on or connection with the subject at issue\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"religious\": {\n    \"form\": \"religious\",\n    \"cornetto_synset_id\": \"n_a-528588\",\n    \"wordnet_id\": \"a-02056265\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerned with sacred matters or religion or the church\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"remarkable\": {\n    \"form\": \"remarkable\",\n    \"wordnet_id\": \"a-02163602\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of notice\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"reminiscent\": {\n    \"form\": \"reminiscent\",\n    \"wordnet_id\": \"a-01977669\",\n    \"pos\": \"JJ\",\n    \"sense\": \"serving to bring to mind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"remote\": {\n    \"form\": \"remote\",\n    \"wordnet_id\": \"a-01413084\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very unlikely\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"repellent\": {\n    \"form\": \"repellent\",\n    \"cornetto_synset_id\": \"n_a-534469\",\n    \"wordnet_id\": \"a-00007990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of absorbing or mixing with\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"repetitive\": {\n    \"form\": \"repetitive\",\n    \"wordnet_id\": \"a-01964367\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by repetition\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"reputable\": {\n    \"form\": \"reputable\",\n    \"cornetto_synset_id\": \"n_a-503878\",\n    \"wordnet_id\": \"a-01982646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a good reputation\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"resourceful\": {\n    \"form\": \"resourceful\",\n    \"cornetto_synset_id\": \"n_a-533083\",\n    \"wordnet_id\": \"a-00307182\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having inner resources\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"respectable\": {\n    \"form\": \"respectable\",\n    \"wordnet_id\": \"a-01983162\",\n    \"pos\": \"JJ\",\n    \"sense\": \"deserving of esteem and respect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"respectful\": {\n    \"form\": \"respectful\",\n    \"cornetto_synset_id\": \"n_a-508023\",\n    \"wordnet_id\": \"a-01993940\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of or exhibiting respect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"respective\": {\n    \"form\": \"respective\",\n    \"cornetto_synset_id\": \"n_a-503872\",\n    \"wordnet_id\": \"a-00494409\",\n    \"pos\": \"JJ\",\n    \"sense\": \"considered individually\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"responsible\": {\n    \"form\": \"responsible\",\n    \"cornetto_synset_id\": \"n_a-532263\",\n    \"wordnet_id\": \"a-01996377\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of or requiring responsibility or trust\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"retard\": {\n    \"form\": \"retard\",\n    \"wordnet_id\": \"n-10197525\",\n    \"pos\": \"NN\",\n    \"sense\": \"a person of subnormal intelligence\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"retards\": {\n    \"form\": \"retards\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"retarded\": {\n    \"form\": \"retarded\",\n    \"wordnet_id\": \"a-1840366\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relatively slow in mental or emotional or physical development\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rewarding\": {\n    \"form\": \"rewarding\",\n    \"wordnet_id\": \"a-02015571\",\n    \"pos\": \"JJ\",\n    \"sense\": \"providing personal satisfaction\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rich\": {\n    \"form\": \"rich\",\n    \"wordnet_id\": \"a-02560402\",\n    \"pos\": \"JJ\",\n    \"sense\": \"containing plenty of fat, or eggs, or sugar\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ridiculous\": {\n    \"form\": \"ridiculous\",\n    \"wordnet_id\": \"a-02570643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incongruous\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"right\": {\n    \"form\": \"right\",\n    \"wordnet_id\": \"a-02082081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in or into a satisfactory condition\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"right-minded\": {\n    \"form\": \"right-minded\",\n    \"cornetto_synset_id\": \"d_a-9251\",\n    \"wordnet_id\": \"a-00633581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disposed toward or having views based on what is right\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rightist\": {\n    \"form\": \"rightist\",\n    \"cornetto_synset_id\": \"n_a-525199\",\n    \"wordnet_id\": \"a-02030793\",\n    \"pos\": \"JJ\",\n    \"sense\": \"believing in or supporting tenets of the political right\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rip-off\": {\n    \"form\": \"rip-off\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"risk-free\": {\n    \"form\": \"risk-free\",\n    \"cornetto_synset_id\": \"n_a-532179\",\n    \"wordnet_id\": \"a-02058529\",\n    \"pos\": \"JJ\",\n    \"sense\": \"thought to be devoid of risk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"riveting\": {\n    \"form\": \"riveting\",\n    \"cornetto_synset_id\": \"n_a-501243\",\n    \"wordnet_id\": \"a-01344171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"capable of arousing and holding the attention\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"robotic\": {\n    \"form\": \"robotic\",\n    \"wordnet_id\": \"a-2939781\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to mechanical robots\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"rofl\": {\n    \"form\": \"rofl\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rohypnol\": {\n    \"form\": \"rohypnol\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"romantic\": {\n    \"form\": \"romantic\",\n    \"wordnet_id\": \"a-02789151\",\n    \"pos\": \"JJ\",\n    \"sense\": \"belonging to or characteristic of Romanticism or the Romantic Movement in the arts\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rose\": {\n    \"form\": \"rose\",\n    \"cornetto_synset_id\": \"n_a-532117\",\n    \"wordnet_id\": \"a-00382173\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of something having a dusty purplish pink color\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rough\": {\n    \"form\": \"rough\",\n    \"cornetto_synset_id\": \"d_a-9510\",\n    \"wordnet_id\": \"a-02238462\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or caused by an irregular surface\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"roughage\": {\n    \"form\": \"roughage\",\n    \"wordnet_id\": \"n-7568818\",\n    \"pos\": \"NN\",\n    \"sense\": \"coarse, indigestible plant food low in nutrients\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"round\": {\n    \"form\": \"round\",\n    \"cornetto_synset_id\": \"n_a-504584\",\n    \"wordnet_id\": \"a-00916524\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(mathematics) expressed to the nearest integer, ten, hundred, or thousand\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rude\": {\n    \"form\": \"rude\",\n    \"wordnet_id\": \"a-01952643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used especially of commodities) being unprocessed or manufactured using only simple or minimal processes\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ruins\": {\n    \"form\": \"ruins\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"rural\": {\n    \"form\": \"rural\",\n    \"wordnet_id\": \"a-02050452\",\n    \"pos\": \"JJ\",\n    \"sense\": \"living in or characteristic of farming or country life\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"russian\": {\n    \"form\": \"russian\",\n    \"cornetto_synset_id\": \"n_a-500919\",\n    \"wordnet_id\": \"a-02957276\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or pertaining to or characteristic of Russia or its people or culture or language\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ruthless\": {\n    \"form\": \"ruthless\",\n    \"wordnet_id\": \"a-01508086\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without mercy or pity\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sad\": {\n    \"form\": \"sad\",\n    \"cornetto_synset_id\": \"n_a-532342\",\n    \"wordnet_id\": \"a-01361863\",\n    \"pos\": \"JJ\",\n    \"sense\": \"experiencing or showing sorrow or unhappiness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sadism\": {\n    \"form\": \"sadism\",\n    \"wordnet_id\": \"n-7493830\",\n    \"pos\": \"NN\",\n    \"sense\": \"sexual pleasure obtained by inflicting harm (physical or psychological) on others\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"safe\": {\n    \"form\": \"safe\",\n    \"wordnet_id\": \"a-02273643\",\n    \"pos\": \"JJ\",\n    \"sense\": \"financially sound\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"same\": {\n    \"form\": \"same\",\n    \"wordnet_id\": \"a-02068476\",\n    \"pos\": \"JJ\",\n    \"sense\": \"same in identity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sarcastic\": {\n    \"form\": \"sarcastic\",\n    \"cornetto_synset_id\": \"n_a-526596\",\n    \"wordnet_id\": \"a-02079029\",\n    \"pos\": \"JJ\",\n    \"sense\": \"expressing or expressive of ridicule that wounds\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfied\": {\n    \"form\": \"satisfied\",\n    \"wordnet_id\": \"a-01519673\",\n    \"pos\": \"JJ\",\n    \"sense\": \"allayed\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"satisfying\": {\n    \"form\": \"satisfying\",\n    \"wordnet_id\": \"a-02558528\",\n    \"pos\": \"JJ\",\n    \"sense\": \"providing abundant nourishment\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"satisyfing\": {\n    \"form\": \"satisyfing\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scary\": {\n    \"form\": \"scary\",\n    \"cornetto_synset_id\": \"n_a-503573\",\n    \"wordnet_id\": \"a-00194924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"provoking fear terror\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scarey\": {\n    \"form\": \"scarey\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"provoking fear terror\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scathing\": {\n    \"form\": \"scathing\",\n    \"cornetto_synset_id\": \"n_a-526928\",\n    \"wordnet_id\": \"a-00648614\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by harshly abusive criticism\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"scum\": {\n    \"form\": \"scum\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"seamless\": {\n    \"form\": \"seamless\",\n    \"cornetto_synset_id\": \"n_a-519505\",\n    \"wordnet_id\": \"a-00464845\",\n    \"pos\": \"JJ\",\n    \"sense\": \"perfectly consistent and coherent\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"seasoned\": {\n    \"form\": \"seasoned\",\n    \"wordnet_id\": \"a-01494959\",\n    \"pos\": \"JJ\",\n    \"sense\": \"aged or processed\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sec\": {\n    \"form\": \"sec\",\n    \"cornetto_synset_id\": \"n_a-507619\",\n    \"wordnet_id\": \"a-02368247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of champagne) moderately dry\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"second\": {\n    \"form\": \"second\",\n    \"wordnet_id\": \"a-02202146\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the first in position in space or time or degree or magnitude\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secondary\": {\n    \"form\": \"secondary\",\n    \"wordnet_id\": \"a-01857956\",\n    \"pos\": \"JJ\",\n    \"sense\": \"depending on or incidental to what is original or primary\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secondhand\": {\n    \"form\": \"secondhand\",\n    \"cornetto_synset_id\": \"n_a-531522\",\n    \"wordnet_id\": \"a-01640482\",\n    \"pos\": \"JJ\",\n    \"sense\": \"previously used or owned by another\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"secret\": {\n    \"form\": \"secret\",\n    \"cornetto_synset_id\": \"n_a-512251\",\n    \"wordnet_id\": \"a-02090069\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not open or public\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"secure\": {\n    \"form\": \"secure\",\n    \"cornetto_synset_id\": \"d_a-9565\",\n    \"wordnet_id\": \"a-02093888\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from danger or risk\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"seizures\": {\n    \"form\": \"seizures\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"self-acting\": {\n    \"form\": \"self-acting\",\n    \"cornetto_synset_id\": \"n_a-502775\",\n    \"wordnet_id\": \"a-00182225\",\n    \"pos\": \"JJ\",\n    \"sense\": \"designed to activate or move or regulate itself\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"selfish\": {\n    \"form\": \"selfish\",\n    \"wordnet_id\": \"a-02098325\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerned chiefly or only with yourself and your advantage to the exclusion of others\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sensational\": {\n    \"form\": \"sensational\",\n    \"wordnet_id\": \"a-02796425\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or concerned in sensation\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sensitive\": {\n    \"form\": \"sensitive\",\n    \"cornetto_synset_id\": \"c_566\",\n    \"wordnet_id\": \"a-02105990\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being susceptible to the attitudes, feelings, or circumstances of others\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sentimental\": {\n    \"form\": \"sentimental\",\n    \"wordnet_id\": \"a-02449287\",\n    \"pos\": \"JJ\",\n    \"sense\": \"given to or marked by sentiment or sentimentality\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"serious\": {\n    \"form\": \"serious\",\n    \"wordnet_id\": \"a-02123314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"completely lacking in playfulness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"seriously\": {\n    \"form\": \"seriously\",\n    \"wordnet_id\": \"r-00165018\",\n    \"pos\": \"RB\",\n    \"sense\": \"in a serious manner\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sermon\": {\n    \"form\": \"sermon\",\n    \"wordnet_id\": \"n-7243837\",\n    \"pos\": \"NN\",\n    \"sense\": \"an address of a religious nature (usually delivered during a church service)\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"several\": {\n    \"form\": \"several\",\n    \"wordnet_id\": \"a-02268268\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used with count nouns) of an indefinite number more than 2 or 3 but not many\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sexual\": {\n    \"form\": \"sexual\",\n    \"wordnet_id\": \"a-02887578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characterized by sexuality\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sexy\": {\n    \"form\": \"sexy\",\n    \"wordnet_id\": \"a-02137538\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exciting sexual desire\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shady\": {\n    \"form\": \"shady\",\n    \"wordnet_id\": \"a-02466566\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of businesses and businessmen) unscrupulous\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shaky\": {\n    \"form\": \"shaky\",\n    \"wordnet_id\": \"a-02095037\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not secure\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shallow\": {\n    \"form\": \"shallow\",\n    \"wordnet_id\": \"a-01875227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking depth of intellect or knowledge\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sham\": {\n    \"form\": \"sham\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"shapeless\": {\n    \"form\": \"shapeless\",\n    \"wordnet_id\": \"a-2142306\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking symmetry or attractive form\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"sharp\": {\n    \"form\": \"sharp\",\n    \"wordnet_id\": \"a-01804728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"harsh\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sheer\": {\n    \"form\": \"sheer\",\n    \"wordnet_id\": \"a-01907103\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not mixed with extraneous elements\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shit\": {\n    \"form\": \"shit\",\n    \"wordnet_id\": \"n-13555775\",\n    \"pos\": \"NN\",\n    \"sense\": \"a coarse term for defecation\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"shocked\": {\n    \"form\": \"shocked\",\n    \"cornetto_synset_id\": \"n_a-530609\",\n    \"wordnet_id\": \"a-00078576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"struck with fear, dread, or consternation\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shocking\": {\n    \"form\": \"shocking\",\n    \"wordnet_id\": \"a-02101757\",\n    \"pos\": \"JJ\",\n    \"sense\": \"glaringly vivid and graphic\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"shoddy\": {\n    \"form\": \"shoddy\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"short\": {\n    \"form\": \"short\",\n    \"cornetto_synset_id\": \"n_a-515879\",\n    \"wordnet_id\": \"a-01442186\",\n    \"pos\": \"JJ\",\n    \"sense\": \"primarily temporal sense\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"shouldn't\": {\n    \"form\": \"shouldn't\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"showery\": {\n    \"form\": \"showery\",\n    \"cornetto_synset_id\": \"n_a-525393\",\n    \"wordnet_id\": \"a-02550333\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of weather) wet by periods of rain\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"shrieky\": {\n    \"form\": \"shrieky\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"shrill\": {\n    \"form\": \"shrill\",\n    \"cornetto_synset_id\": \"n_a-507298\",\n    \"wordnet_id\": \"a-01214430\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or emitting a high-pitched and sharp tone or tones \",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"shy\": {\n    \"form\": \"shy\",\n    \"wordnet_id\": \"a-02337558\",\n    \"pos\": \"JJ\",\n    \"sense\": \"short\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sick\": {\n    \"form\": \"sick\",\n    \"wordnet_id\": \"a-02541302\",\n    \"pos\": \"JJ\",\n    \"sense\": \"affected by an impairment of normal physical or mental function\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sickening\": {\n    \"form\": \"sickening\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"significant\": {\n    \"form\": \"significant\",\n    \"wordnet_id\": \"a-02165655\",\n    \"pos\": \"JJ\",\n    \"sense\": \"too closely correlated to be attributed to chance and therefore indicating a systematic relation\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"silent\": {\n    \"form\": \"silent\",\n    \"cornetto_synset_id\": \"n_a-529361\",\n    \"wordnet_id\": \"a-01919428\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by absence of sound\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"silly\": {\n    \"form\": \"silly\",\n    \"wordnet_id\": \"a-02571536\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ludicrous, foolish\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"similar\": {\n    \"form\": \"similar\",\n    \"wordnet_id\": \"a-02381495\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of words) expressing closely related meanings\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"simple\": {\n    \"form\": \"simple\",\n    \"wordnet_id\": \"a-02272047\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exhibiting childlike simplicity and credulity\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"simplistic\": {\n    \"form\": \"simplistic\",\n    \"wordnet_id\": \"a-02175487\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by extreme and often misleading simplicity\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sincere\": {\n    \"form\": \"sincere\",\n    \"wordnet_id\": \"a-02179279\",\n    \"pos\": \"JJ\",\n    \"sense\": \"open and genuine\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"single\": {\n    \"form\": \"single\",\n    \"wordnet_id\": \"a-02220571\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of flowers having usually only one row or whorl of petals\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sinister\": {\n    \"form\": \"sinister\",\n    \"wordnet_id\": \"a-01131935\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stemming from evil characteristics or forces\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sinks\": {\n    \"form\": \"sinks\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"sixth-grade\": {\n    \"form\": \"sixth-grade\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"skeptical\": {\n    \"form\": \"skeptical\",\n    \"wordnet_id\": \"a-02463847\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by or given to doubt\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"skilled\": {\n    \"form\": \"skilled\",\n    \"cornetto_synset_id\": \"c_689\",\n    \"wordnet_id\": \"a-02225510\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or showing or requiring special skill\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"skittish\": {\n    \"form\": \"skittish\",\n    \"cornetto_synset_id\": \"n_a-528449\",\n    \"wordnet_id\": \"a-00919155\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unpredictably excitable (especially of horses)\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"slick\": {\n    \"form\": \"slick\",\n    \"wordnet_id\": \"a-02235520\",\n    \"pos\": \"JJ\",\n    \"sense\": \"made slick by e.g. ice or grease\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"slight\": {\n    \"form\": \"slight\",\n    \"wordnet_id\": \"a-02164913\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking substance or significance\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"slipping\": {\n    \"form\": \"slipping\",\n    \"cornetto_synset_id\": \"d_a-9233\",\n    \"wordnet_id\": \"a-02235994\",\n    \"pos\": \"JJ\",\n    \"sense\": \"moving as on a slippery surface\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sloppy\": {\n    \"form\": \"sloppy\",\n    \"wordnet_id\": \"a-02550170\",\n    \"pos\": \"JJ\",\n    \"sense\": \"wet or smeared with a spilled liquid or moist material\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"slow\": {\n    \"form\": \"slow\",\n    \"cornetto_synset_id\": \"n_a-516764\",\n    \"wordnet_id\": \"a-00980527\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not moving quickly\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"small\": {\n    \"form\": \"small\",\n    \"wordnet_id\": \"a-02233680\",\n    \"pos\": \"JJ\",\n    \"sense\": \"have fine or very small constituent particles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"smaller\": {\n    \"form\": \"smaller\",\n    \"cornetto_synset_id\": \"d_a-9404\",\n    \"wordnet_id\": \"a-01394922\",\n    \"pos\": \"JJ\",\n    \"sense\": \"small or little relative to something else\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"smart\": {\n    \"form\": \"smart\",\n    \"wordnet_id\": \"a-01513376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"painfully severe\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"smile\": {\n    \"form\": \"smile\",\n    \"wordnet_id\": \"v-28565\",\n    \"pos\": \"VB\",\n    \"sense\": \"change one's facial expression by spreading the lips, often to signal pleasure\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"smiled\": {\n    \"form\": \"smiled\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"smooth\": {\n    \"form\": \"smooth\",\n    \"cornetto_synset_id\": \"n_a-525902\",\n    \"wordnet_id\": \"a-02236842\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a surface free from roughness or bumps or ridges or irregularities\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sober\": {\n    \"form\": \"sober\",\n    \"cornetto_synset_id\": \"d_a-9426\",\n    \"wordnet_id\": \"a-00799517\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not affected by a chemical substance (especially alcohol)\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"social\": {\n    \"form\": \"social\",\n    \"cornetto_synset_id\": \"n_a-528221\",\n    \"wordnet_id\": \"a-02798370\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to human society and its members\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soft\": {\n    \"form\": \"soft\",\n    \"cornetto_synset_id\": \"n_a-535266\",\n    \"wordnet_id\": \"a-01454636\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of sound) relatively low in volume\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soft-boiled\": {\n    \"form\": \"soft-boiled\",\n    \"cornetto_synset_id\": \"n_a-527573\",\n    \"wordnet_id\": \"a-00618752\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(eggs) having the yolk still liquid\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sole\": {\n    \"form\": \"sole\",\n    \"wordnet_id\": \"a-02214736\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being the only one\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"solicitous\": {\n    \"form\": \"solicitous\",\n    \"cornetto_synset_id\": \"n_a-535950\",\n    \"wordnet_id\": \"a-00164681\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing hovering attentiveness\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"solid\": {\n    \"form\": \"solid\",\n    \"cornetto_synset_id\": \"d_a-9563\",\n    \"wordnet_id\": \"a-02260035\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of definite shape and volume\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sophisticated\": {\n    \"form\": \"sophisticated\",\n    \"wordnet_id\": \"a-02270342\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or appealing to those having worldly knowledge and refinement and savoir-faire\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sophomoric\": {\n    \"form\": \"sophomoric\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"sorry\": {\n    \"form\": \"sorry\",\n    \"wordnet_id\": \"a-02502578\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without merit\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sound\": {\n    \"form\": \"sound\",\n    \"cornetto_synset_id\": \"c_342\",\n    \"wordnet_id\": \"a-02275209\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in good condition\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sour\": {\n    \"form\": \"sour\",\n    \"wordnet_id\": \"v-458471\",\n    \"pos\": \"VB\",\n    \"sense\": \"go sour or spoil\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"soured\": {\n    \"form\": \"soured\",\n    \"wordnet_id\": \"a-2369763\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having turned bad\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"southern\": {\n    \"form\": \"southern\",\n    \"wordnet_id\": \"a-01606648\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in or characteristic of a region of the United States south of (approximately) the Mason-Dixon line\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spanish\": {\n    \"form\": \"spanish\",\n    \"cornetto_synset_id\": \"n_a-500976\",\n    \"wordnet_id\": \"a-02958576\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of Spain or the people of Spain\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"special\": {\n    \"form\": \"special\",\n    \"wordnet_id\": \"a-02367319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"added to a regular schedule\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"specific\": {\n    \"form\": \"specific\",\n    \"wordnet_id\": \"a-02989316\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or distinguishing or constituting a taxonomic species\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spectacular\": {\n    \"form\": \"spectacular\",\n    \"cornetto_synset_id\": \"n_a-527561\",\n    \"wordnet_id\": \"a-00795246\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characteristic of spectacles or drama\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spent\": {\n    \"form\": \"spent\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"spirited\": {\n    \"form\": \"spirited\",\n    \"wordnet_id\": \"a-00805309\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by lively action\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spiritual\": {\n    \"form\": \"spiritual\",\n    \"cornetto_synset_id\": \"d_a-9284\",\n    \"wordnet_id\": \"a-00631193\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking material body or form or substance\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"splendid\": {\n    \"form\": \"splendid\",\n    \"cornetto_synset_id\": \"n_a-517817\",\n    \"wordnet_id\": \"a-00219389\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having great beauty and splendor\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spontaneous\": {\n    \"form\": \"spontaneous\",\n    \"cornetto_synset_id\": \"c_746\",\n    \"wordnet_id\": \"a-02282376\",\n    \"pos\": \"JJ\",\n    \"sense\": \"happening or arising without apparent external cause\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spoof\": {\n    \"form\": \"spoof\",\n    \"wordnet_id\": \"v-849939\",\n    \"pos\": \"VB\",\n    \"sense\": \"make a parody of\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"sprightly\": {\n    \"form\": \"sprightly\",\n    \"cornetto_synset_id\": \"n_a-533321\",\n    \"wordnet_id\": \"a-02280821\",\n    \"pos\": \"JJ\",\n    \"sense\": \"full of spirit and vitality\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stabbing\": {\n    \"form\": \"stabbing\",\n    \"cornetto_synset_id\": \"n_a-531207\",\n    \"wordnet_id\": \"a-01162901\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing physical or especially psychological injury\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stainless\": {\n    \"form\": \"stainless\",\n    \"cornetto_synset_id\": \"n_a-509479\",\n    \"wordnet_id\": \"a-00247247\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of reputation) free from blemishes\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stale\": {\n    \"form\": \"stale\",\n    \"wordnet_id\": \"a-01068726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking freshness, palatability, or showing deterioration from age\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"standard\": {\n    \"form\": \"standard\",\n    \"wordnet_id\": \"a-02297664\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming to the established language usage of educated native speakers\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stark\": {\n    \"form\": \"stark\",\n    \"wordnet_id\": \"a-01792387\",\n    \"pos\": \"JJ\",\n    \"sense\": \"severely simple\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"starting\": {\n    \"form\": \"starting\",\n    \"cornetto_synset_id\": \"n_a-501322\",\n    \"wordnet_id\": \"a-01009865\",\n    \"pos\": \"JJ\",\n    \"sense\": \"appropriate to the beginning or start of an event\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"startling\": {\n    \"form\": \"startling\",\n    \"wordnet_id\": \"a-02359958\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so remarkably different or sudden as to cause momentary shock or alarm\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"state-supported\": {\n    \"form\": \"state-supported\",\n    \"cornetto_synset_id\": \"n_a-520402\",\n    \"wordnet_id\": \"a-01862161\",\n    \"pos\": \"JJ\",\n    \"sense\": \"supported and operated by the government of a state\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"static\": {\n    \"form\": \"static\",\n    \"cornetto_synset_id\": \"c_548\",\n    \"wordnet_id\": \"a-00348018\",\n    \"pos\": \"JJ\",\n    \"sense\": \"showing little if any change\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"steadfast\": {\n    \"form\": \"steadfast\",\n    \"cornetto_synset_id\": \"n_a-506736\",\n    \"wordnet_id\": \"a-00583581\",\n    \"pos\": \"JJ\",\n    \"sense\": \"firm and dependable especially in loyalty\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"steady\": {\n    \"form\": \"steady\",\n    \"wordnet_id\": \"a-02301560\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not subject to change or variation especially in behavior\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stellar\": {\n    \"form\": \"stellar\",\n    \"cornetto_synset_id\": \"n_a-529189\",\n    \"wordnet_id\": \"a-01472790\",\n    \"pos\": \"JJ\",\n    \"sense\": \"indicating the most important performer or role\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stereotyped\": {\n    \"form\": \"stereotyped\",\n    \"cornetto_synset_id\": \"n_a-531136\",\n    \"wordnet_id\": \"a-00607977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking spontaneity or originality or individuality\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stereotypical\": {\n    \"form\": \"stereotypical\",\n    \"cornetto_synset_id\": \"n_a-531136\",\n    \"wordnet_id\": \"a-00607977\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking spontaneity or originality or individuality\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stiff\": {\n    \"form\": \"stiff\",\n    \"wordnet_id\": \"a-02323726\",\n    \"pos\": \"JJ\",\n    \"sense\": \"powerful\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stinker\": {\n    \"form\": \"stinker\",\n    \"wordnet_id\": \"n-4320731\",\n    \"pos\": \"NN\",\n    \"sense\": \"anything that gives off an offensive odor (especially a cheap cigar)\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"stinks\": {\n    \"form\": \"stinks\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"straight\": {\n    \"form\": \"straight\",\n    \"cornetto_synset_id\": \"n_a-517483\",\n    \"wordnet_id\": \"a-00022962\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in keeping with the facts\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"straightforward\": {\n    \"form\": \"straightforward\",\n    \"wordnet_id\": \"a-02318728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without concealment or deception\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"strange\": {\n    \"form\": \"strange\",\n    \"cornetto_synset_id\": \"n_a-533835\",\n    \"wordnet_id\": \"a-00966753\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not known before\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stretched\": {\n    \"form\": \"stretched\",\n    \"wordnet_id\": \"a-1432452\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extended or spread over a wide area or distance\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"striking\": {\n    \"form\": \"striking\",\n    \"wordnet_id\": \"a-01284212\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sensational in appearance or thrilling in effect\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"strong\": {\n    \"form\": \"strong\",\n    \"cornetto_synset_id\": \"d_a-9536\",\n    \"wordnet_id\": \"a-02321009\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having strength or power greater than average or expected\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"strutting\": {\n    \"form\": \"strutting\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBG\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"stumble\": {\n    \"form\": \"stumble\",\n    \"wordnet_id\": \"v-618057\",\n    \"pos\": \"VB\",\n    \"sense\": \"make an error\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"stunning\": {\n    \"form\": \"stunning\",\n    \"wordnet_id\": \"a-02360171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing great astonishment and consternation\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stupid\": {\n    \"form\": \"stupid\",\n    \"wordnet_id\": \"a-00439588\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking or marked by lack of intellectual acuity\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stupidity\": {\n    \"form\": \"stupidity\",\n    \"wordnet_id\": \"n-5645597\",\n    \"pos\": \"NN\",\n    \"sense\": \"a poor ability to understand or to profit from experience\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stylish\": {\n    \"form\": \"stylish\",\n    \"wordnet_id\": \"a-00975171\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having elegance or taste or refinement in manners or dress\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"subconscious\": {\n    \"form\": \"subconscious\",\n    \"cornetto_synset_id\": \"n_a-521720\",\n    \"wordnet_id\": \"a-00573093\",\n    \"pos\": \"JJ\",\n    \"sense\": \"just below the level of consciousness\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subject\": {\n    \"form\": \"subject\",\n    \"wordnet_id\": \"a-02361540\",\n    \"pos\": \"JJ\",\n    \"sense\": \"possibly accepting or permitting\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"subnormal\": {\n    \"form\": \"subnormal\",\n    \"cornetto_synset_id\": \"n_a-536080\",\n    \"wordnet_id\": \"a-01597702\",\n    \"pos\": \"JJ\",\n    \"sense\": \"below normal or average\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subsequent\": {\n    \"form\": \"subsequent\",\n    \"cornetto_synset_id\": \"n_a-522362\",\n    \"wordnet_id\": \"a-00122626\",\n    \"pos\": \"JJ\",\n    \"sense\": \"following in time or order\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subtle\": {\n    \"form\": \"subtle\",\n    \"wordnet_id\": \"a-01745846\",\n    \"pos\": \"JJ\",\n    \"sense\": \"able to make fine distinctions\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suburban\": {\n    \"form\": \"suburban\",\n    \"wordnet_id\": \"a-02804590\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or characteristic of or situated in suburbs\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"succeeds\": {\n    \"form\": \"succeeds\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"success\": {\n    \"form\": \"success\",\n    \"wordnet_id\": \"n-7319103\",\n    \"pos\": \"NN\",\n    \"sense\": \"an event that accomplishes its intended purpose\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"successful\": {\n    \"form\": \"successful\",\n    \"cornetto_synset_id\": \"n_a-510582\",\n    \"wordnet_id\": \"a-02331262\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having succeeded or being marked by a favorable outcome\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"such\": {\n    \"form\": \"such\",\n    \"wordnet_id\": \"a-01554230\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of so extreme a degree or extent\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sucker\": {\n    \"form\": \"sucker\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"suckers\": {\n    \"form\": \"suckers\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NNS\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"sucks\": {\n    \"form\": \"sucks\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"label\": \"profanity\",\n    \"confidence\": \"0.9\"\n  },\n  \"sudden\": {\n    \"form\": \"sudden\",\n    \"cornetto_synset_id\": \"n_a-526962\",\n    \"wordnet_id\": \"a-01143279\",\n    \"pos\": \"JJ\",\n    \"sense\": \"happening without warning or in a short space of time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suffers\": {\n    \"form\": \"suffers\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suffocating\": {\n    \"form\": \"suffocating\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBG\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"suitable\": {\n    \"form\": \"suitable\",\n    \"cornetto_synset_id\": \"d_a-9306\",\n    \"wordnet_id\": \"a-01020885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"meant or adapted for an occasion or use\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"super\": {\n    \"form\": \"super\",\n    \"wordnet_id\": \"a-02341864\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the highest quality\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"superb\": {\n    \"form\": \"superb\",\n    \"wordnet_id\": \"a-02342608\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of surpassing excellence\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"superfine\": {\n    \"form\": \"superfine\",\n    \"cornetto_synset_id\": \"n_a-511737\",\n    \"wordnet_id\": \"a-00229227\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used especially of merchandise) very fine in quality\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"superior\": {\n    \"form\": \"superior\",\n    \"cornetto_synset_id\": \"d_a-9183\",\n    \"wordnet_id\": \"a-02341266\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of high or superior quality or performance\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"supernatural\": {\n    \"form\": \"supernatural\",\n    \"cornetto_synset_id\": \"n_a-518064\",\n    \"wordnet_id\": \"a-01574446\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not existing in nature or subject to explanation according to natural laws\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"supporting\": {\n    \"form\": \"supporting\",\n    \"wordnet_id\": \"a-02356244\",\n    \"pos\": \"JJ\",\n    \"sense\": \"furnishing support and encouragement\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"supportive\": {\n    \"form\": \"supportive\",\n    \"wordnet_id\": \"a-02354537\",\n    \"pos\": \"JJ\",\n    \"sense\": \"furnishing support or assistance\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sure\": {\n    \"form\": \"sure\",\n    \"wordnet_id\": \"a-02465978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of persons) worthy of trust or confidence\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"surprised\": {\n    \"form\": \"surprised\",\n    \"cornetto_synset_id\": \"n_a-532266\",\n    \"wordnet_id\": \"a-02357479\",\n    \"pos\": \"JJ\",\n    \"sense\": \"taken unawares or suddenly and feeling wonder or astonishment\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"surprising\": {\n    \"form\": \"surprising\",\n    \"cornetto_synset_id\": \"n_a-532646\",\n    \"wordnet_id\": \"a-02359464\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing surprise or wonder or amazement\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"surreal\": {\n    \"form\": \"surreal\",\n    \"wordnet_id\": \"a-01939226\",\n    \"pos\": \"JJ\",\n    \"sense\": \"resembling a dream\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suspenseful\": {\n    \"form\": \"suspenseful\",\n    \"wordnet_id\": \"a-02405805\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of a situation) characterized by or causing suspense\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sweet\": {\n    \"form\": \"sweet\",\n    \"wordnet_id\": \"a-02368336\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or denoting the characteristic taste of sugar\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"swill\": {\n    \"form\": \"swill\",\n    \"wordnet_id\": \"v-1169433\",\n    \"pos\": \"VB\",\n    \"sense\": \"drink large quantities of (liquid, especially alcoholic drink)\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"sympathetic\": {\n    \"form\": \"sympathetic\",\n    \"wordnet_id\": \"a-03008013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the sympathetic nervous system\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"talented\": {\n    \"form\": \"talented\",\n    \"cornetto_synset_id\": \"d_a-9174\",\n    \"wordnet_id\": \"a-01119192\",\n    \"pos\": \"JJ\",\n    \"sense\": \"endowed with talent or talents\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tame\": {\n    \"form\": \"tame\",\n    \"wordnet_id\": \"v-202445\",\n    \"pos\": \"VB\",\n    \"sense\": \"correct by punishment or discipline\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"tasteless\": {\n    \"form\": \"tasteless\",\n    \"cornetto_synset_id\": \"n_a-528048\",\n    \"wordnet_id\": \"a-02393401\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking aesthetic or social taste\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"technical\": {\n    \"form\": \"technical\",\n    \"cornetto_synset_id\": \"n_a-530379\",\n    \"wordnet_id\": \"a-02809692\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to a practical subject that is organized according to scientific principles\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tedious\": {\n    \"form\": \"tedious\",\n    \"cornetto_synset_id\": \"n_a-520533\",\n    \"wordnet_id\": \"a-00549236\",\n    \"pos\": \"JJ\",\n    \"sense\": \"using or containing too many words\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"teen\": {\n    \"form\": \"teen\",\n    \"wordnet_id\": \"a-01647983\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of the age 13 through 19\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"teenage\": {\n    \"form\": \"teenage\",\n    \"wordnet_id\": \"a-01647983\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of the age 13 through 19\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ten\": {\n    \"form\": \"ten\",\n    \"wordnet_id\": \"a-02187296\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being one more than nine\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tense\": {\n    \"form\": \"tense\",\n    \"wordnet_id\": \"a-02405326\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in or of a state of physical or nervous tension\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terminally\": {\n    \"form\": \"terminally\",\n    \"wordnet_id\": \"r-127449\",\n    \"pos\": \"RB\",\n    \"sense\": \"at the end\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"terrestrial\": {\n    \"form\": \"terrestrial\",\n    \"cornetto_synset_id\": \"n_a-501400\",\n    \"wordnet_id\": \"a-00124918\",\n    \"pos\": \"JJ\",\n    \"sense\": \"operating or living or growing on land\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terrible\": {\n    \"form\": \"terrible\",\n    \"wordnet_id\": \"a-01677200\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extreme in degree or extent or amount or impact\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terrific\": {\n    \"form\": \"terrific\",\n    \"wordnet_id\": \"a-01676517\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extraordinarily good or great \",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terrifying\": {\n    \"form\": \"terrifying\",\n    \"wordnet_id\": \"a-00196449\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing extreme terror\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thanks\": {\n    \"form\": \"thanks\",\n    \"wordnet_id\": \"n-7228971\",\n    \"pos\": \"NN\",\n    \"sense\": \"an acknowledgment of appreciation\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"theatrical\": {\n    \"form\": \"theatrical\",\n    \"wordnet_id\": \"a-02813315\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to the theater\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thematic\": {\n    \"form\": \"thematic\",\n    \"wordnet_id\": \"a-02813680\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or constituting a topic of discourse\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"theoretical\": {\n    \"form\": \"theoretical\",\n    \"cornetto_synset_id\": \"n_a-530704\",\n    \"wordnet_id\": \"a-00860611\",\n    \"pos\": \"JJ\",\n    \"sense\": \"concerned primarily with theories or hypotheses rather than practical considerations\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"thick\": {\n    \"form\": \"thick\",\n    \"cornetto_synset_id\": \"n_a-529438\",\n    \"wordnet_id\": \"a-00015480\",\n    \"pos\": \"JJ\",\n    \"sense\": \"abounding\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"thin\": {\n    \"form\": \"thin\",\n    \"cornetto_synset_id\": \"c_536\",\n    \"wordnet_id\": \"a-00988232\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking excess flesh\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"third\": {\n    \"form\": \"third\",\n    \"cornetto_synset_id\": \"n_a-530634\",\n    \"wordnet_id\": \"a-02202307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"coming next after the second and just before the fourth in position\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thought-provoking\": {\n    \"form\": \"thought-provoking\",\n    \"wordnet_id\": \"a-02306598\",\n    \"pos\": \"JJ\",\n    \"sense\": \"stimulating interest or thought\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thoughtful\": {\n    \"form\": \"thoughtful\",\n    \"wordnet_id\": \"a-02418872\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exhibiting or characterized by careful thought\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thrilled\": {\n    \"form\": \"thrilled\",\n    \"wordnet_id\": \"a-920704\",\n    \"pos\": \"JJ\",\n    \"sense\": \"feeling intense pleasurable excitement\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"thrilling\": {\n    \"form\": \"thrilling\",\n    \"wordnet_id\": \"a-02307199\",\n    \"pos\": \"JJ\",\n    \"sense\": \"causing quivering or shivering as by cold or fear or electric shock\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tidy\": {\n    \"form\": \"tidy\",\n    \"cornetto_synset_id\": \"n_a-519857\",\n    \"wordnet_id\": \"a-02422685\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by order and cleanliness in appearance or habits\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tight\": {\n    \"form\": \"tight\",\n    \"wordnet_id\": \"a-02526441\",\n    \"pos\": \"JJ\",\n    \"sense\": \"set so close together as to be invulnerable to penetration\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tiny\": {\n    \"form\": \"tiny\",\n    \"cornetto_synset_id\": \"n_a-508984\",\n    \"wordnet_id\": \"a-01392249\",\n    \"pos\": \"JJ\",\n    \"sense\": \"very small\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tired\": {\n    \"form\": \"tired\",\n    \"wordnet_id\": \"a-02431728\",\n    \"pos\": \"JJ\",\n    \"sense\": \"depleted of strength or energy\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tiresome\": {\n    \"form\": \"tiresome\",\n    \"cornetto_synset_id\": \"n_a-507469\",\n    \"wordnet_id\": \"a-01345307\",\n    \"pos\": \"JJ\",\n    \"sense\": \"so lacking in interest as to cause mental weariness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"titular\": {\n    \"form\": \"titular\",\n    \"wordnet_id\": \"a-02816340\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to a legal title to something\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"toilet\": {\n    \"form\": \"toilet\",\n    \"wordnet_id\": \"n-828704\",\n    \"pos\": \"NN\",\n    \"sense\": \"the act of dressing and preparing yourself\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"toneless\": {\n    \"form\": \"toneless\",\n    \"cornetto_synset_id\": \"n_a-531021\",\n    \"wordnet_id\": \"a-02430238\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in tone or expression\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"top\": {\n    \"form\": \"top\",\n    \"wordnet_id\": \"a-02439949\",\n    \"pos\": \"JJ\",\n    \"sense\": \"situated at the top or highest position\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"top-notch\": {\n    \"form\": \"top-notch\",\n    \"wordnet_id\": \"a-02341864\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the highest quality\",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"topical\": {\n    \"form\": \"topical\",\n    \"cornetto_synset_id\": \"n_a-523453\",\n    \"wordnet_id\": \"a-00668053\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of interest at the present time\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"total\": {\n    \"form\": \"total\",\n    \"wordnet_id\": \"a-00522885\",\n    \"pos\": \"JJ\",\n    \"sense\": \"complete in extent or degree and in every particular\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"touching\": {\n    \"form\": \"touching\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tough\": {\n    \"form\": \"tough\",\n    \"wordnet_id\": \"a-02512641\",\n    \"pos\": \"JJ\",\n    \"sense\": \"violent and lawless\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"traditional\": {\n    \"form\": \"traditional\",\n    \"cornetto_synset_id\": \"n_a-531133\",\n    \"wordnet_id\": \"a-01690767\",\n    \"pos\": \"JJ\",\n    \"sense\": \"pertaining to time-honored orthodox doctrines\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tragic\": {\n    \"form\": \"tragic\",\n    \"wordnet_id\": \"a-02973241\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to or characteristic of tragedy\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trapped\": {\n    \"form\": \"trapped\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBN\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"tremendous\": {\n    \"form\": \"tremendous\",\n    \"wordnet_id\": \"a-01677200\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extreme in degree or extent or amount or impact\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trendy\": {\n    \"form\": \"trendy\",\n    \"cornetto_synset_id\": \"n_a-528141\",\n    \"wordnet_id\": \"a-00973677\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in accord with the latest fad\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tries\": {\n    \"form\": \"tries\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trouble\": {\n    \"form\": \"trouble\",\n    \"wordnet_id\": \"v-70816\",\n    \"pos\": \"VB\",\n    \"sense\": \"cause bodily suffering to and make sick or indisposed\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"troubled\": {\n    \"form\": \"troubled\",\n    \"wordnet_id\": \"a-02455297\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by or indicative of distress or affliction or danger or need\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"true\": {\n    \"form\": \"true\",\n    \"cornetto_synset_id\": \"n_a-534096\",\n    \"wordnet_id\": \"a-02460502\",\n    \"pos\": \"JJ\",\n    \"sense\": \"consistent with fact or reality\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"truthful\": {\n    \"form\": \"truthful\",\n    \"wordnet_id\": \"a-02461438\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conforming to truth\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"twisted\": {\n    \"form\": \"twisted\",\n    \"wordnet_id\": \"a-01311067\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having an intended meaning altered or misrepresented\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"two-dimensional\": {\n    \"form\": \"two-dimensional\",\n    \"wordnet_id\": \"a-660551\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking the expected range or depth\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"typical\": {\n    \"form\": \"typical\",\n    \"wordnet_id\": \"a-02468635\",\n    \"pos\": \"JJ\",\n    \"sense\": \"exhibiting the qualities or characteristics that identify a group or kind or category\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ugliness\": {\n    \"form\": \"ugliness\",\n    \"wordnet_id\": \"n-4690196\",\n    \"pos\": \"NN\",\n    \"sense\": \"qualities of appearance that do not give pleasure to the senses\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"ugly\": {\n    \"form\": \"ugly\",\n    \"cornetto_synset_id\": \"d_a-9381\",\n    \"wordnet_id\": \"a-00220956\",\n    \"pos\": \"JJ\",\n    \"sense\": \"displeasing to the senses\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ugly-duckling\": {\n    \"form\": \"ugly-duckling\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"ultimate\": {\n    \"form\": \"ultimate\",\n    \"wordnet_id\": \"a-01578312\",\n    \"pos\": \"JJ\",\n    \"sense\": \"furthest or highest in degree or order\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unable\": {\n    \"form\": \"unable\",\n    \"wordnet_id\": \"a-01825080\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in power or forcefulness\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unadulterated\": {\n    \"form\": \"unadulterated\",\n    \"cornetto_synset_id\": \"d_a-9633\",\n    \"wordnet_id\": \"a-01907481\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not mixed with impurities\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unaffected\": {\n    \"form\": \"unaffected\",\n    \"cornetto_synset_id\": \"n_a-520565\",\n    \"wordnet_id\": \"a-00074346\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free of artificiality\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unanswered\": {\n    \"form\": \"unanswered\",\n    \"cornetto_synset_id\": \"n_a-520614\",\n    \"wordnet_id\": \"a-01947127\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not returned in kind\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unappealing\": {\n    \"form\": \"unappealing\",\n    \"wordnet_id\": \"a-171044\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not able to attract favorable attention\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"unappetizing\": {\n    \"form\": \"unappetizing\",\n    \"cornetto_synset_id\": \"n_a-533034\",\n    \"wordnet_id\": \"a-00133851\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not appetizing in appearance, aroma, or taste\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unashamed\": {\n    \"form\": \"unashamed\",\n    \"cornetto_synset_id\": \"n_a-521042\",\n    \"wordnet_id\": \"a-00154965\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of persons or their behavior\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unavowed\": {\n    \"form\": \"unavowed\",\n    \"cornetto_synset_id\": \"d_a-9288\",\n    \"wordnet_id\": \"a-00028984\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not openly made known\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unaware\": {\n    \"form\": \"unaware\",\n    \"wordnet_id\": \"a-00191603\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(often followed by 'of') not aware\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unbefitting\": {\n    \"form\": \"unbefitting\",\n    \"cornetto_synset_id\": \"n_a-521127\",\n    \"wordnet_id\": \"a-00136081\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not befitting\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unbelievable\": {\n    \"form\": \"unbelievable\",\n    \"wordnet_id\": \"a-01800169\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a probability too low to inspire belief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unblemished\": {\n    \"form\": \"unblemished\",\n    \"cornetto_synset_id\": \"n_a-506738\",\n    \"wordnet_id\": \"a-00247013\",\n    \"pos\": \"JJ\",\n    \"sense\": \"free from physical or moral spots or stains\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unblinking\": {\n    \"form\": \"unblinking\",\n    \"cornetto_synset_id\": \"n_a-532085\",\n    \"wordnet_id\": \"a-00082034\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not shrinking from danger\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unbranded\": {\n    \"form\": \"unbranded\",\n    \"cornetto_synset_id\": \"n_a-518640\",\n    \"wordnet_id\": \"a-01481513\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not marked with a brand\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncared-for\": {\n    \"form\": \"uncared-for\",\n    \"cornetto_synset_id\": \"n_a-527970\",\n    \"wordnet_id\": \"a-00308593\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking needed care and attention\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unchaste\": {\n    \"form\": \"unchaste\",\n    \"cornetto_synset_id\": \"c_532\",\n    \"wordnet_id\": \"a-00361509\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not chaste\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncivil\": {\n    \"form\": \"uncivil\",\n    \"cornetto_synset_id\": \"n_a-517506\",\n    \"wordnet_id\": \"a-00642725\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking civility or good manners\",\n    \"polarity\": \"-0.9\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncomfortable\": {\n    \"form\": \"uncomfortable\",\n    \"wordnet_id\": \"a-00479933\",\n    \"pos\": \"JJ\",\n    \"sense\": \"conducive to or feeling mental discomfort\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"uncommon\": {\n    \"form\": \"uncommon\",\n    \"cornetto_synset_id\": \"n_a-531811\",\n    \"wordnet_id\": \"a-00487653\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not common or ordinarily encountered\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncontroversial\": {\n    \"form\": \"uncontroversial\",\n    \"cornetto_synset_id\": \"n_a-521322\",\n    \"wordnet_id\": \"a-00602721\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not likely to arouse controversy\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncooked\": {\n    \"form\": \"uncooked\",\n    \"cornetto_synset_id\": \"n_a-525114\",\n    \"wordnet_id\": \"a-00619808\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not cooked\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncritical\": {\n    \"form\": \"uncritical\",\n    \"cornetto_synset_id\": \"n_a-516166\",\n    \"wordnet_id\": \"a-00650351\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by disregard for critical standards or procedures\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uncut\": {\n    \"form\": \"uncut\",\n    \"cornetto_synset_id\": \"c_712\",\n    \"wordnet_id\": \"a-00664167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not shaped by cutting or trimming\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"undeserved\": {\n    \"form\": \"undeserved\",\n    \"wordnet_id\": \"a-1371646\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not deserved or earned\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"undignified\": {\n    \"form\": \"undignified\",\n    \"cornetto_synset_id\": \"n_a-532253\",\n    \"wordnet_id\": \"a-00752392\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking dignity\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unengaging\": {\n    \"form\": \"unengaging\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBG\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"uneven\": {\n    \"form\": \"uneven\",\n    \"wordnet_id\": \"a-02305651\",\n    \"pos\": \"JJ\",\n    \"sense\": \"variable and recurring at irregular intervals \",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unexcelled\": {\n    \"form\": \"unexcelled\",\n    \"cornetto_synset_id\": \"n_a-534455\",\n    \"wordnet_id\": \"a-00229371\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of being improved on\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unexpected\": {\n    \"form\": \"unexpected\",\n    \"wordnet_id\": \"a-00930290\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not expected or anticipated\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unexplained\": {\n    \"form\": \"unexplained\",\n    \"wordnet_id\": \"a-940314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the reason or cause not made clear\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"unfair\": {\n    \"form\": \"unfair\",\n    \"cornetto_synset_id\": \"n_a-531834\",\n    \"wordnet_id\": \"a-00957176\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not fair\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unfaithful\": {\n    \"form\": \"unfaithful\",\n    \"cornetto_synset_id\": \"n_a-521482\",\n    \"wordnet_id\": \"a-00024139\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not trustworthy\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unfocused\": {\n    \"form\": \"unfocused\",\n    \"cornetto_synset_id\": \"d_a-9560\",\n    \"wordnet_id\": \"a-00782957\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(of an image) not being in or brought into focus\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unforgettable\": {\n    \"form\": \"unforgettable\",\n    \"cornetto_synset_id\": \"n_a-521585\",\n    \"wordnet_id\": \"a-01040410\",\n    \"pos\": \"JJ\",\n    \"sense\": \"impossible to forget\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unfortunate\": {\n    \"form\": \"unfortunate\",\n    \"wordnet_id\": \"a-01049462\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not favored by fortune\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unfortunately\": {\n    \"form\": \"unfortunately\",\n    \"wordnet_id\": \"r-42769\",\n    \"pos\": \"RB\",\n    \"sense\": \"by bad luck\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"unfruitful\": {\n    \"form\": \"unfruitful\",\n    \"cornetto_synset_id\": \"n_a-535779\",\n    \"wordnet_id\": \"a-01082535\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not fruitful\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ungraded\": {\n    \"form\": \"ungraded\",\n    \"cornetto_synset_id\": \"n_a-534209\",\n    \"wordnet_id\": \"a-01204443\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not arranged in order hierarchically\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unhampered\": {\n    \"form\": \"unhampered\",\n    \"cornetto_synset_id\": \"d_a-9598\",\n    \"wordnet_id\": \"a-02001984\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not slowed or blocked or interfered with\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unhappy\": {\n    \"form\": \"unhappy\",\n    \"cornetto_synset_id\": \"n_a-521094\",\n    \"wordnet_id\": \"a-01149494\",\n    \"pos\": \"JJ\",\n    \"sense\": \"experiencing or marked by or causing sadness or sorrow or discontent\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unhealthy\": {\n    \"form\": \"unhealthy\",\n    \"cornetto_synset_id\": \"n_a-535643\",\n    \"wordnet_id\": \"a-01172889\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not in or exhibiting good health in body or mind\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unhesitating\": {\n    \"form\": \"unhesitating\",\n    \"cornetto_synset_id\": \"n_a-521672\",\n    \"wordnet_id\": \"a-00685924\",\n    \"pos\": \"JJ\",\n    \"sense\": \"characterized by quickness and firmness\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unilateral\": {\n    \"form\": \"unilateral\",\n    \"cornetto_synset_id\": \"n_a-508018\",\n    \"wordnet_id\": \"a-00236989\",\n    \"pos\": \"JJ\",\n    \"sense\": \"involving only one part or side\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unimportant\": {\n    \"form\": \"unimportant\",\n    \"cornetto_synset_id\": \"n_a-520661\",\n    \"wordnet_id\": \"a-01279978\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not important\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uninspired\": {\n    \"form\": \"uninspired\",\n    \"wordnet_id\": \"a-00923066\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no intellectual or emotional or spiritual excitement\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unintelligent\": {\n    \"form\": \"unintelligent\",\n    \"cornetto_synset_id\": \"c_578\",\n    \"wordnet_id\": \"a-01336587\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking intelligence\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"uninterrupted\": {\n    \"form\": \"uninterrupted\",\n    \"cornetto_synset_id\": \"n_a-520586\",\n    \"wordnet_id\": \"a-00291338\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having undisturbed continuity\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unique\": {\n    \"form\": \"unique\",\n    \"wordnet_id\": \"a-02215087\",\n    \"pos\": \"JJ\",\n    \"sense\": \"the single one of its kind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"universal\": {\n    \"form\": \"universal\",\n    \"wordnet_id\": \"a-01102674\",\n    \"pos\": \"JJ\",\n    \"sense\": \"applicable to or common to all members of a group or set\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unknown\": {\n    \"form\": \"unknown\",\n    \"wordnet_id\": \"a-02370625\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not known to exist\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unlikely\": {\n    \"form\": \"unlikely\",\n    \"wordnet_id\": \"a-01800169\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a probability too low to inspire belief\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unnecessary\": {\n    \"form\": \"unnecessary\",\n    \"cornetto_synset_id\": \"n_a-521309\",\n    \"wordnet_id\": \"a-01581115\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not necessary\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unnoticed\": {\n    \"form\": \"unnoticed\",\n    \"cornetto_synset_id\": \"n_a-521336\",\n    \"wordnet_id\": \"a-01608264\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not noticed\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unoriginal\": {\n    \"form\": \"unoriginal\",\n    \"wordnet_id\": \"a-1688271\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not original\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"unpaid\": {\n    \"form\": \"unpaid\",\n    \"cornetto_synset_id\": \"n_a-533923\",\n    \"wordnet_id\": \"a-02521183\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without payment\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unplayable\": {\n    \"form\": \"unplayable\",\n    \"cornetto_synset_id\": \"d_a-9456\",\n    \"wordnet_id\": \"a-00955405\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of or suitable for being played or played on\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unpleasant\": {\n    \"form\": \"unpleasant\",\n    \"cornetto_synset_id\": \"c_679\",\n    \"wordnet_id\": \"a-01801600\",\n    \"pos\": \"JJ\",\n    \"sense\": \"disagreeable to the senses, to the mind, or feelings \",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unprecedented\": {\n    \"form\": \"unprecedented\",\n    \"cornetto_synset_id\": \"n_a-521055\",\n    \"wordnet_id\": \"a-00128572\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no precedent\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unpredictable\": {\n    \"form\": \"unpredictable\",\n    \"wordnet_id\": \"a-01842001\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not capable of being foretold\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unprocessed\": {\n    \"form\": \"unprocessed\",\n    \"cornetto_synset_id\": \"d_a-9436\",\n    \"wordnet_id\": \"a-01071321\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not treated or prepared by a special process\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unpropitious\": {\n    \"form\": \"unpropitious\",\n    \"cornetto_synset_id\": \"n_a-521220\",\n    \"wordnet_id\": \"a-00177963\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not propitious\",\n    \"polarity\": \"-0.6\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unread\": {\n    \"form\": \"unread\",\n    \"cornetto_synset_id\": \"n_a-521066\",\n    \"wordnet_id\": \"a-01309835\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not informed through reading\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unrealistic\": {\n    \"form\": \"unrealistic\",\n    \"wordnet_id\": \"a-01941999\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not realistic\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unsalted\": {\n    \"form\": \"unsalted\",\n    \"cornetto_synset_id\": \"n_a-521211\",\n    \"wordnet_id\": \"a-02400125\",\n    \"pos\": \"JJ\",\n    \"sense\": \"without salt or seasoning\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unschooled\": {\n    \"form\": \"unschooled\",\n    \"cornetto_synset_id\": \"n_a-521710\",\n    \"wordnet_id\": \"a-00831696\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in schooling\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unsettling\": {\n    \"form\": \"unsettling\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unstirred\": {\n    \"form\": \"unstirred\",\n    \"cornetto_synset_id\": \"n_a-520570\",\n    \"wordnet_id\": \"a-00088899\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not agitated by stirring\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unthinkable\": {\n    \"form\": \"unthinkable\",\n    \"cornetto_synset_id\": \"n_a-521670\",\n    \"wordnet_id\": \"a-02418538\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of being conceived or considered\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"untraceable\": {\n    \"form\": \"untraceable\",\n    \"cornetto_synset_id\": \"d_a-9529\",\n    \"wordnet_id\": \"a-02453492\",\n    \"pos\": \"JJ\",\n    \"sense\": \"incapable of being traced or tracked down\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unusual\": {\n    \"form\": \"unusual\",\n    \"cornetto_synset_id\": \"n_a-533834\",\n    \"wordnet_id\": \"a-00488857\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not commonly encountered\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unwed\": {\n    \"form\": \"unwed\",\n    \"cornetto_synset_id\": \"n_a-507976\",\n    \"wordnet_id\": \"a-01482751\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of someone who has not been married\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"upper\": {\n    \"form\": \"upper\",\n    \"wordnet_id\": \"a-02440617\",\n    \"pos\": \"JJ\",\n    \"sense\": \"the topmost one of two\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"urban\": {\n    \"form\": \"urban\",\n    \"cornetto_synset_id\": \"n_a-528928\",\n    \"wordnet_id\": \"a-02821071\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or concerned with a city or densely populated area\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"urinates\": {\n    \"form\": \"urinates\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VBZ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"used to\": {\n    \"form\": \"used to\",\n    \"cornetto_synset_id\": \"n_a-510831\",\n    \"wordnet_id\": \"a-00024619\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in the habit\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"useful\": {\n    \"form\": \"useful\",\n    \"wordnet_id\": \"a-2495922\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of use or service\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"useless\": {\n    \"form\": \"useless\",\n    \"wordnet_id\": \"a-2497141\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having no beneficial use or incapable of functioning usefully\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"usual\": {\n    \"form\": \"usual\",\n    \"wordnet_id\": \"a-00970610\",\n    \"pos\": \"JJ\",\n    \"sense\": \"commonly encountered\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"utter\": {\n    \"form\": \"utter\",\n    \"wordnet_id\": \"a-00522349\",\n    \"pos\": \"JJ\",\n    \"sense\": \"complete\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vacuum\": {\n    \"form\": \"vacuum\",\n    \"wordnet_id\": \"v-1244853\",\n    \"pos\": \"VB\",\n    \"sense\": \"clean with a vacuum cleaner\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"vague\": {\n    \"form\": \"vague\",\n    \"wordnet_id\": \"a-00431004\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not clearly understood or expressed\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vapid\": {\n    \"form\": \"vapid\",\n    \"wordnet_id\": \"a-2308001\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking significance or liveliness or spirit or zest\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"vaporific\": {\n    \"form\": \"vaporific\",\n    \"cornetto_synset_id\": \"n_a-533334\",\n    \"wordnet_id\": \"a-02263491\",\n    \"pos\": \"JJ\",\n    \"sense\": \"resembling or characteristic of vapor\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"various\": {\n    \"form\": \"various\",\n    \"wordnet_id\": \"a-02507772\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having great diversity or variety\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vast\": {\n    \"form\": \"vast\",\n    \"cornetto_synset_id\": \"n_a-508356\",\n    \"wordnet_id\": \"a-01387319\",\n    \"pos\": \"JJ\",\n    \"sense\": \"unusually great in size or amount or degree or especially extent or scope\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"very\": {\n    \"form\": \"very\",\n    \"wordnet_id\": \"r-00031899\",\n    \"pos\": \"RB\",\n    \"sense\": \"used as intensifier\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.9\"\n  },\n  \"veteran\": {\n    \"form\": \"veteran\",\n    \"cornetto_synset_id\": \"d_a-9160\",\n    \"wordnet_id\": \"a-00936523\",\n    \"pos\": \"JJ\",\n    \"sense\": \"rendered competent through trial and experience\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vibrant\": {\n    \"form\": \"vibrant\",\n    \"wordnet_id\": \"a-02280969\",\n    \"pos\": \"JJ\",\n    \"sense\": \"vigorous and animated\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vicious\": {\n    \"form\": \"vicious\",\n    \"wordnet_id\": \"a-02514099\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the nature of vice\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"victim\": {\n    \"form\": \"victim\",\n    \"wordnet_id\": \"n-10752480\",\n    \"pos\": \"NN\",\n    \"sense\": \"a person who is tricked or swindled\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"violent\": {\n    \"form\": \"violent\",\n    \"wordnet_id\": \"a-02510879\",\n    \"pos\": \"JJ\",\n    \"sense\": \"acting with or marked by or resulting from great force or energy or emotional intensity\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"visual\": {\n    \"form\": \"visual\",\n    \"wordnet_id\": \"a-02869563\",\n    \"pos\": \"JJ\",\n    \"sense\": \"relating to or using sight\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vital\": {\n    \"form\": \"vital\",\n    \"cornetto_synset_id\": \"n_a-509441\",\n    \"wordnet_id\": \"a-00095094\",\n    \"pos\": \"JJ\",\n    \"sense\": \"manifesting or characteristic of life\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vivid\": {\n    \"form\": \"vivid\",\n    \"wordnet_id\": \"a-01941026\",\n    \"pos\": \"JJ\",\n    \"sense\": \"evoking lifelike images within the mind\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vocational\": {\n    \"form\": \"vocational\",\n    \"cornetto_synset_id\": \"n_a-524476\",\n    \"wordnet_id\": \"a-02840478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or relating to a vocation or occupation\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vulgar\": {\n    \"form\": \"vulgar\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.7\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"vulnerable\": {\n    \"form\": \"vulnerable\",\n    \"wordnet_id\": \"a-02523275\",\n    \"pos\": \"JJ\",\n    \"sense\": \"susceptible to attack\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wacky\": {\n    \"form\": \"wacky\",\n    \"wordnet_id\": \"a-02571536\",\n    \"pos\": \"JJ\",\n    \"sense\": \"ludicrous, foolish\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wan\": {\n    \"form\": \"wan\",\n    \"wordnet_id\": \"v-87653\",\n    \"pos\": \"VB\",\n    \"sense\": \"become pale and sickly\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"wants\": {\n    \"form\": \"wants\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"warm\": {\n    \"form\": \"warm\",\n    \"cornetto_synset_id\": \"n_a-534242\",\n    \"wordnet_id\": \"a-00445308\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of a seeker\",\n    \"polarity\": \"0.6\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wary\": {\n    \"form\": \"wary\",\n    \"cornetto_synset_id\": \"n_a-534522\",\n    \"wordnet_id\": \"a-00162386\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by keen caution and watchful prudence\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"waste\": {\n    \"form\": \"waste\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wasted\": {\n    \"form\": \"wasted\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wastes\": {\n    \"form\": \"wastes\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"weak\": {\n    \"form\": \"weak\",\n    \"wordnet_id\": \"a-02493574\",\n    \"pos\": \"JJ\",\n    \"sense\": \"tending downward in price\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wealthy\": {\n    \"form\": \"wealthy\",\n    \"cornetto_synset_id\": \"n_a-534597\",\n    \"wordnet_id\": \"a-02022167\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having an abundant supply of money or possessions of value\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"weird\": {\n    \"form\": \"weird\",\n    \"wordnet_id\": \"a-01575424\",\n    \"pos\": \"JJ\",\n    \"sense\": \"suggesting the operation of supernatural influences\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"welcome\": {\n    \"form\": \"welcome\",\n    \"cornetto_synset_id\": \"n_a-534571\",\n    \"wordnet_id\": \"a-02539968\",\n    \"pos\": \"JJ\",\n    \"sense\": \"giving pleasure or satisfaction or received with pleasure or freely granted\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"well-advised\": {\n    \"form\": \"well-advised\",\n    \"cornetto_synset_id\": \"n_a-507294\",\n    \"wordnet_id\": \"a-00067966\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having the benefit of careful prior consideration or counsel\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"well-intentioned\": {\n    \"form\": \"well-intentioned\",\n    \"wordnet_id\": \"a-1338363\",\n    \"pos\": \"JJ\",\n    \"sense\": \"marked by good intentions though often producing unfortunate results\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"well-off\": {\n    \"form\": \"well-off\",\n    \"cornetto_synset_id\": \"d_a-9505\",\n    \"wordnet_id\": \"a-01049352\",\n    \"pos\": \"JJ\",\n    \"sense\": \"fortunately situated\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"western\": {\n    \"form\": \"western\",\n    \"wordnet_id\": \"a-00825970\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of or characteristic of regions of the United States west of the Mississippi River\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wet\": {\n    \"form\": \"wet\",\n    \"cornetto_synset_id\": \"d_a-9416\",\n    \"wordnet_id\": \"a-02547317\",\n    \"pos\": \"JJ\",\n    \"sense\": \"covered or soaked with a liquid such as water\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"whaddupwitdat\": {\n    \"form\": \"whaddupwitdat\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"whimsical\": {\n    \"form\": \"whimsical\",\n    \"wordnet_id\": \"a-00719442\",\n    \"pos\": \"JJ\",\n    \"sense\": \"determined by chance or impulse or whim rather than by necessity or reason\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"white\": {\n    \"form\": \"white\",\n    \"cornetto_synset_id\": \"n_a-535039\",\n    \"wordnet_id\": \"a-00393105\",\n    \"pos\": \"JJ\",\n    \"sense\": \"being of the achromatic color of maximum lightness\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"whole\": {\n    \"form\": \"whole\",\n    \"cornetto_synset_id\": \"d_a-9327\",\n    \"wordnet_id\": \"a-00514884\",\n    \"pos\": \"JJ\",\n    \"sense\": \"including all components without exception\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wide\": {\n    \"form\": \"wide\",\n    \"cornetto_synset_id\": \"c_291\",\n    \"wordnet_id\": \"a-02560548\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having great (or a certain) extent from one side to the other\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wild\": {\n    \"form\": \"wild\",\n    \"cornetto_synset_id\": \"n_a-534877\",\n    \"wordnet_id\": \"a-02389220\",\n    \"pos\": \"JJ\",\n    \"sense\": \"in a natural state\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"willing\": {\n    \"form\": \"willing\",\n    \"wordnet_id\": \"a-02521036\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not brought about by coercion or force\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"win\": {\n    \"form\": \"win\",\n    \"wordnet_id\": \"v-1100145\",\n    \"pos\": \"VB\",\n    \"sense\": \"be the winner in a contest or competition\",\n    \"polarity\": \"0.8\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"winning\": {\n    \"form\": \"winning\",\n    \"wordnet_id\": \"a-02333314\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having won\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wins\": {\n    \"form\": \"wins\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wise\": {\n    \"form\": \"wise\",\n    \"cornetto_synset_id\": \"c_667\",\n    \"wordnet_id\": \"a-02569130\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having or prompted by wisdom or discernment\",\n    \"polarity\": \"0.7\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"witty\": {\n    \"form\": \"witty\",\n    \"wordnet_id\": \"a-01268194\",\n    \"pos\": \"JJ\",\n    \"sense\": \"combining clever conception and facetious expression\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"womanly\": {\n    \"form\": \"womanly\",\n    \"cornetto_synset_id\": \"d_a-9602\",\n    \"wordnet_id\": \"a-01484987\",\n    \"pos\": \"JJ\",\n    \"sense\": \"befitting or characteristic of a woman especially a mature woman\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"won't\": {\n    \"form\": \"won't\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wonderful\": {\n    \"form\": \"wonderful\",\n    \"wordnet_id\": \"a-01676517\",\n    \"pos\": \"JJ\",\n    \"sense\": \"extraordinarily good or great \",\n    \"polarity\": \"1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wonky\": {\n    \"form\": \"wonky\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.3\",\n    \"subjectivity\": \"0.3\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wooden\": {\n    \"form\": \"wooden\",\n    \"wordnet_id\": \"a-02576489\",\n    \"pos\": \"JJ\",\n    \"sense\": \"made or consisting of (entirely or in part) or employing wood\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"workmanlike\": {\n    \"form\": \"workmanlike\",\n    \"cornetto_synset_id\": \"n_a-532002\",\n    \"wordnet_id\": \"a-00511037\",\n    \"pos\": \"JJ\",\n    \"sense\": \"worthy of a good workman\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.7\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"worse\": {\n    \"form\": \"worse\",\n    \"wordnet_id\": \"a-00232068\",\n    \"pos\": \"JJ\",\n    \"sense\": \"changed for the worse in health or fitness\",\n    \"polarity\": \"-0.4\",\n    \"subjectivity\": \"0.6\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"worst\": {\n    \"form\": \"worst\",\n    \"wordnet_id\": \"a-00229630\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(superlative of 'bad') most wanting in quality or value or condition\",\n    \"polarity\": \"-1.0\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"worth\": {\n    \"form\": \"worth\",\n    \"cornetto_synset_id\": \"n_a-534079\",\n    \"wordnet_id\": \"a-02502016\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having a specified value\",\n    \"polarity\": \"0.3\",\n    \"subjectivity\": \"0.1\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"worthless\": {\n    \"form\": \"worthless\",\n    \"cornetto_synset_id\": \"d_a-9605\",\n    \"wordnet_id\": \"a-02502163\",\n    \"pos\": \"JJ\",\n    \"sense\": \"lacking in usefulness or value\",\n    \"polarity\": \"-0.8\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"worthwhile\": {\n    \"form\": \"worthwhile\",\n    \"wordnet_id\": \"a-02587936\",\n    \"pos\": \"JJ\",\n    \"sense\": \"sufficiently valuable to justify the investment of time or interest\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"0.5\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"worthy\": {\n    \"form\": \"worthy\",\n    \"wordnet_id\": \"a-02584981\",\n    \"pos\": \"JJ\",\n    \"sense\": \"having worth or merit or value\",\n    \"polarity\": \"0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wow\": {\n    \"form\": \"wow\",\n    \"wordnet_id\": \"v-1770252\",\n    \"pos\": \"VB\",\n    \"sense\": \"impress greatly\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"wrong\": {\n    \"form\": \"wrong\",\n    \"cornetto_synset_id\": \"c_577\",\n    \"wordnet_id\": \"a-01881478\",\n    \"pos\": \"JJ\",\n    \"sense\": \"not in accord with established usage or procedure\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"0.9\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"wtf\": {\n    \"form\": \"wtf\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"yarn\": {\n    \"form\": \"yarn\",\n    \"wordnet_id\": \"v-954038\",\n    \"pos\": \"VB\",\n    \"sense\": \"tell or spin a yarn\",\n    \"polarity\": \"-0.1\",\n    \"subjectivity\": \"0.2\",\n    \"intensity\": \"1.0\",\n    \"reliability\": \"0.9\"\n  },\n  \"yaaawwnnnn\": {\n    \"form\": \"yaaawwnnnn\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"UH\",\n    \"sense\": \"\",\n    \"polarity\": \"-0.5\",\n    \"subjectivity\": \"1.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"yellow\": {\n    \"form\": \"yellow\",\n    \"cornetto_synset_id\": \"n_a-509864\",\n    \"wordnet_id\": \"a-00385756\",\n    \"pos\": \"JJ\",\n    \"sense\": \"of the color intermediate between green and orange in the color spectrum\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"young\": {\n    \"form\": \"young\",\n    \"cornetto_synset_id\": \"d_a-9357\",\n    \"wordnet_id\": \"a-01646941\",\n    \"pos\": \"JJ\",\n    \"sense\": \"(used of living things especially persons) in an early period of life or development or growth\",\n    \"polarity\": \"0.1\",\n    \"subjectivity\": \"0.4\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"younger\": {\n    \"form\": \"younger\",\n    \"wordnet_id\": \"a-02101382\",\n    \"pos\": \"JJ\",\n    \"sense\": \"used of the younger of two persons of the same name especially used to distinguish a son from his father\",\n    \"polarity\": \"0.0\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"youngish\": {\n    \"form\": \"youngish\",\n    \"cornetto_synset_id\": \"n_a-514159\",\n    \"wordnet_id\": \"a-01649651\",\n    \"pos\": \"JJ\",\n    \"sense\": \"somewhat young\",\n    \"polarity\": \"0.4\",\n    \"subjectivity\": \"0.8\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/English/senticon_en.json",
    "content": "{\n  \"admirable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"approval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.12\"\n  },\n  \"assure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.172\"\n  },\n  \"benevolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.258\"\n  },\n  \"calm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"captivated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"charmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"cheer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.274\"\n  },\n  \"cheer up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"comfortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.105\"\n  },\n  \"confidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.314\"\n  },\n  \"congratulate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"content\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"correct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.102\"\n  },\n  \"decent\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.161\"\n  },\n  \"ease\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.445\"\n  },\n  \"easy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.206\"\n  },\n  \"elated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"enjoy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.105\"\n  },\n  \"exhilarating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"favor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.163\"\n  },\n  \"favorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.725\",\n    \"std\": \"0.163\"\n  },\n  \"favour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.163\"\n  },\n  \"favourable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.161\"\n  },\n  \"fond\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.213\"\n  },\n  \"friendly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.237\"\n  },\n  \"gay\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.246\"\n  },\n  \"glad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.157\"\n  },\n  \"gladden\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"golden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.229\"\n  },\n  \"good\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"gracious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.12\"\n  },\n  \"happy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.144\"\n  },\n  \"honorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.063\"\n  },\n  \"hope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.137\"\n  },\n  \"joy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"joyful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"jubilant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"just\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.188\"\n  },\n  \"love\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.368\"\n  },\n  \"nice\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.825\",\n    \"std\": \"0.205\"\n  },\n  \"positive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.307\",\n    \"std\": \"0.284\"\n  },\n  \"preference\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"reassure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"recreate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.5\"\n  },\n  \"regard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.287\"\n  },\n  \"rejoice\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"respect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"right\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.387\"\n  },\n  \"ripe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.324\"\n  },\n  \"rosy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.295\"\n  },\n  \"safe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.237\"\n  },\n  \"self-satisfied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"smooth\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.306\"\n  },\n  \"sound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.556\",\n    \"std\": \"0.199\"\n  },\n  \"still\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.157\"\n  },\n  \"superior\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.289\"\n  },\n  \"tranquil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"triumph\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"warm\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warmheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"well\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.144\"\n  },\n  \"afraid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.157\"\n  },\n  \"aggression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"alarm\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anger\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"annoyance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.088\"\n  },\n  \"annoyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"apprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"awkward\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.129\"\n  },\n  \"bitterness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"black\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bother\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"brood\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.068\"\n  },\n  \"chafe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"contempt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.063\"\n  },\n  \"dark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.153\"\n  },\n  \"depress\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.068\"\n  },\n  \"depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desolation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.072\"\n  },\n  \"desperate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disapproval\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.157\"\n  },\n  \"discouraging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"disgraceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"disgust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dismay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"distressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.102\"\n  },\n  \"disturbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"down\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.205\"\n  },\n  \"drab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embarrassed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embarrassing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"fear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.177\"\n  },\n  \"fearful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.112\"\n  },\n  \"foul\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.129\"\n  },\n  \"frightened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gloomy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.833\",\n    \"std\": \"0.144\"\n  },\n  \"grieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"grievous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.125\"\n  },\n  \"grim\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"hideous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hopeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.258\"\n  },\n  \"horrific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hostility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"insecure\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.228\"\n  },\n  \"irritation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.429\",\n    \"std\": \"0.094\"\n  },\n  \"jealous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"loathsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"loom\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"lowness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"malevolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"misanthropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"misanthropical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"mortify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"mournful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nauseate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"nauseous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"offend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.125\"\n  },\n  \"offensive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outrage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"panic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"pestiferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.213\"\n  },\n  \"put off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.068\"\n  },\n  \"queasy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"rag\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.065\"\n  },\n  \"regret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"repel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.105\"\n  },\n  \"shame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"shamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"shameful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sorrow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sorrowfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorry\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.213\"\n  },\n  \"temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"torment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.051\"\n  },\n  \"trouble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.068\"\n  },\n  \"ugly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"uneasy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.163\"\n  },\n  \"unfriendly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"unhappy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.102\"\n  },\n  \"unsound\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.22\"\n  },\n  \"vex\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.068\"\n  },\n  \"vexation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.072\"\n  },\n  \"vexing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"wicked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.224\"\n  },\n  \"woeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"worried\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"worry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"wretched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.205\"\n  },\n  \"adept\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"admirably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admiration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.315\"\n  },\n  \"admire\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"adoration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"adoring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"affection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"affectional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affectionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"affectionateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"affirmative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"appreciatively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appreciativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"approbative\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"approbatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"approve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"approved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"approving\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"ardour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"avid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"avidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"avidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"be on cloud nine\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beaming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.289\"\n  },\n  \"beguile\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"beguiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"belonging\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"benefic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"beneficence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"beneficent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"beneficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"beneficially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benevolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"benevolently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bewitching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"blithely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blitheness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brotherlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brotherly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bucked up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"calm down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"captivate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"captivating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"captivation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"caring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"cheerful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"cheerfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cheerfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"cheering\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chirk up\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"comfortableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"comfortably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"comforting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"commendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"complacence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complacency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complacent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"confident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"console\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"contentment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"convinced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"courteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"delighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"devoted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"dreaminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eagerness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"elan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"elate\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"elating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"elation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"embolden\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"emotive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enamor\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enamoredness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enamour\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enchanting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"enchantment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"encourage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.402\"\n  },\n  \"encouraged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encouragement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.289\"\n  },\n  \"encouraging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"encouragingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enthralled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enthralling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"enthrallment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enthusiasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"enthusiastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enthusiastically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"entranced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entrancing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"esteem\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"estimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.382\"\n  },\n  \"euphoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"euphoriant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euphoric\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"euphory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"excellent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exciting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhilarate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exhilarated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exhilaration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"expert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exuberance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"exultant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exultation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"exulting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fantabulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fascinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"fascinating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"fascination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"favorably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"favourably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"first-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fond regard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fondness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"fortunate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.072\"\n  },\n  \"friendliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"fulfil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.402\"\n  },\n  \"fulfill\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.402\"\n  },\n  \"gayly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gladdened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gladfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gladness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gladsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gladsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gleeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gleefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gleefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"good-hearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goodness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"grateful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gratefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gratify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"gratitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"happily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"happiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"hearten\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"high spirits\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higher-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hilarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hilarity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hopeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"insouciance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intimacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"jocularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"jocund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jocundity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jolliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jollity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jolly\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jolly along\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jolly up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jovial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"joviality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"joyfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"joyfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"joyous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"joyously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"joyousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jubilance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jubilancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jubilantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jubilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"jump for joy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"kindly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"large-hearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laudably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lift up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"lightheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"likable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"likeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"liking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"live up to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"look up to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"lovesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"merrily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"merry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.125\"\n  },\n  \"mirth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"mirthfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mirthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"openhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"optimism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"optimistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"optimistically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"peace-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"peaceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.0\"\n  },\n  \"penchant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pep up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"philia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"placid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"placidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"placidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plausive\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pleased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"pleasing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plus\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"practiced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"praiseworthily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predilection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"proudly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quiet\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"quieten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"quietness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"quietude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reassured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reassuring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rejoicing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"relish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.331\"\n  },\n  \"root on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salutary\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sanctioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"sanguine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"sanguineness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sanguinity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satisfactorily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"satisfactory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"satisfiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satisfy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.125\"\n  },\n  \"satisfying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"screaming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"self-complacency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-complacent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"self-satisfaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"serene\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"skilful\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"skillful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"solace\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"soothe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"splendid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.833\",\n    \"std\": \"0.144\"\n  },\n  \"stimulating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"superordinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thankful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thankfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tickle pink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titillated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titillating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.072\"\n  },\n  \"togetherness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tranquillise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tranquillity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquillize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"triumphal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"triumphant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"unafraid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"undecomposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unruffled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unspoiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"unspoilt\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"uplift\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.577\"\n  },\n  \"upright\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.545\"\n  },\n  \"uproarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"walk on air\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warmhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"warmness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"well-disposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worshipful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"zealous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"zest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"zestfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"abase\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"abashed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abhor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abhorrence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abhorrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abominably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"abominate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abomination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"aggravate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"aggravated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"aggravation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.125\"\n  },\n  \"aggressiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"aggrieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"alarmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"amok\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amuck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angrily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"angry\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"annoy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"annoying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"antsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anxious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"anxiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"appall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"apprehensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"apprehensively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apprehensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ashamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrocious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.191\"\n  },\n  \"aversion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bad temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bedaze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"begrudge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"belligerence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"belligerency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"belligerent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"belligerently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bereaved\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bereft\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"boding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bothersome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"brokenheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bulk large\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cast down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"chagrin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"chagrined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheerless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cheerlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cheerlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chevvy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chevy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chilling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chivvy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chivy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"choler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"choleric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"churn up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"class feeling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commiserate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"commiseration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"compassion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"compassionateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condole with\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"confusing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"conniption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consternation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contemn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"contrite\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contriteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"creeps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"cringe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cruelly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"cruelty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"cynical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"damaging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"daze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"defeated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"deficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"deject\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dejectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demeaning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"demoralise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"demoralize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"deplorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.26\"\n  },\n  \"deplorably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"depressing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desolate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despairing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despairingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despisal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"despising\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despiteful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despondence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despondency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despondent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despondently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"detest\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"detestably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detestation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"devil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"diffidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dingy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.125\"\n  },\n  \"dire\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"direful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disappointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disapprove\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"discomfited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discomfiture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discomposure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"disconcertion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconcertment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconsolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"disconsolateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discourage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"discouragement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"discredited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"disdain\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disgraced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disgusted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disgustedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disgustful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disgusting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dishonorably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"dishonored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disinclination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"disincline\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinclined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dislikable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dislike\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dismal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disordered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"dispirit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dispirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dispiritedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispiritedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"displease\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"displeased\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"displeasing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"displeasingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"displeasure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disquieted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disquietude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distasteful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"distress\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"distressful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"distressfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"distressing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"distressingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disturbing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"doleful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dolefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dolor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dolorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dolour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dolourous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"down in the mouth\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"downcast\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"downhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"downheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dread\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dreaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dreadful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.191\"\n  },\n  \"drear\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dreary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dysphoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dysphoric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"edginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enraged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enragement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.289\"\n  },\n  \"exacerbate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"exasperate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"exasperating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"exasperation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"execrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"execration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"faulty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"fearfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fearsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fed up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feel for\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fidgety\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"foiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foreboding\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"forlorn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"forlornness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fretful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"fright\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frighten\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"frightening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frighteningly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frightful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.25\"\n  },\n  \"frustrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"frustrating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"furious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"furiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"fury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"galling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gloom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"gloomful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gloomily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gloominess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"glooming\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"glum\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gravel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"green-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"green-eyed monster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"grief-stricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grieving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gross out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"grudge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"guilt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"guilt feelings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"guilt trip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"guilty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"guilty conscience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hackles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harass\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"harassed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"harassment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"harried\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"harry\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hassle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"hate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hatred\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heartache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"heartbreak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"heartbreaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heartburning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"heartrending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heartsick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"heartsickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heavyhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heavyheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-risk\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hopelessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"horrendous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"horrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"horrid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"horrified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"horrify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horrifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"horrifyingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"horror-stricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"horror-struck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hostilely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"huffiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"huffish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"huffishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"huffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"humble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"humbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"humiliate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"humiliating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hysteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"hysterical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ignominious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ill-timed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill will\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"impatience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"improper\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"inadequate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"inauspicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.144\"\n  },\n  \"incense\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incensed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infuriated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infuriating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"infuriation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inglorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"ingratitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inimical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquietude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insecurity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"intimidated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irascibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irascible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"irritate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"irritated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irritating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.26\"\n  },\n  \"itchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"jealousy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"joyless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joylessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"joylessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lachrymose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamentably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lividity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"loathe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loathing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"loathly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"low-spirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"low-spiritedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maddened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maddening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malefic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"maleficence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"malevolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"malice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"maliciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maliciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"malign\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malignity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"melancholic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melancholy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"miffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"misanthropy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"miserably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"misogynic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misogynism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misogyny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misoneism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"molest\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mortified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"mournfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mournfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mourning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"murderously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"murderousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"nark\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"nauseated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nauseating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nervy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"nettle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nettled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nettlesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"noisome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"odiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"oppression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"oppressively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oppressiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"opprobrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"outraged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"outrageous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"overjealous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"painfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"panic-stricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panic-struck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panic attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"panicked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panicky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pathetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"peeved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"penitence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penitent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"penitentially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penitently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perturbing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pesky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pessimism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pessimistically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pestered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pestering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pique\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pissed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pissed off\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pitilessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pity\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plague\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"plaguey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"plaguy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"plaintive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plaintiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pout\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"premonition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"presentiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provoked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"quick temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rancor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rancour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regretful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remorse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remorseful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repellant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"repellent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"repelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repentance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repentant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repentantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repugnance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"repugnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repulse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"repulsion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"repulsive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"repulsively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resentful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resentfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resentment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revolting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revulsion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rile\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"riled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"risky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"roiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"rue\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rueful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ruth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ruthlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sad\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"sadden\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"sadly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"sadness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.144\"\n  },\n  \"scare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"scared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scarey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scarily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scorn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"see red\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"self-deprecating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-disgust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-distrust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"self-doubt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"self-hatred\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-pity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-reproach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"shivery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"short temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shuddery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shyness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sick of\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinking feeling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skanky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorrowful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sorrowfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"sorrowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spite\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"spiteful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spitefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.937\",\n    \"std\": \"0.0\"\n  },\n  \"spoiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"spoilt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"stage fright\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"stung\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"stupid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.191\"\n  },\n  \"suffering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.102\"\n  },\n  \"sulk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sulkiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"sulky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"tantrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tearfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"terrified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thwarted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"timid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"timorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tired of\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trepid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trepidation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troubling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tumult\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"turmoil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"turn one's stomach\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umbrage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncheerful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"uncheerfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"uncollectible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uneasily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unenviable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"unfriendliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ungratefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unhappiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"unhopeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unkind\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unquiet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"unsure\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"vengefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"vexatious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"vexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"vile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"vindictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"vindictiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warpath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"weepiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"weeping\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"woe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"woebegone\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"woefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"world-weariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worrisome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"worrying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wrath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"wrathful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wrong\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrongly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wroth\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wrothful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yucky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"able-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adroit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"affable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"affluence\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"agreeableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.177\"\n  },\n  \"alleviate\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amenity\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"applaudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"as luck would have it\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"assoil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"auspicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bang-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bankable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"banner\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"beamish\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"beauteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"beautiful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"becoming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"benignant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"best\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"better-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"blissful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"blithesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bonnie\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bonny\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"boss\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bouncing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brag\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"brilliance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.217\"\n  },\n  \"bully\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"celebrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"cheery\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cherubic\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"chipper\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"comely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"commonsense\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"commonsensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"commonsensical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"congratulatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"congruous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"consuming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"corking\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"correctitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cosy\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"couthie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"couthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cracking\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"creditable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cum laude\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dandy\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"decorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"delightful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deliverance\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desirable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"diplomatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dulcet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"eleemosynary\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"especial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"esteemed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"eudaemonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"eudaimonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"exculpate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"exonerate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fab\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fair to middling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"famed\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"famous\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"far-famed\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fetching\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fine-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"finer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fortuitously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fortunately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"further\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaiety\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gifted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"glorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.191\"\n  },\n  \"good-humored\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"good-humoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"good-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"good egg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"good enough\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"good humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"good humour\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"good temper\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gorgeous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gratifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"gratulatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"groundbreaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"hale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"heroism\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"highbrow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"highbrowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"honored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"idealised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"idealized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"in condition\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ingenious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"innovational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"jesting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"jocose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"jocular\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"judicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"justifiably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"kick upstairs\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"kid-glove\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"laudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"laughing\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"laureate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"letter-perfect\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"level-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"levelheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"light-hearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"lighthearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"liked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"logicality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"logicalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"lovely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"luckily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"magna cum laude\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mannerly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"marvel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"masterful\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"masterly\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mellifluous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"mellisonant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"meritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"meritorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mind-boggling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"model\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"nifty\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"not bad\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"notable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"noted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"noteworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"obey\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"okay\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on the button\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"on the nose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"opportune\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"optimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"optimum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pastime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"peaceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"perked up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"personable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"philogyny\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"physical fitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pluperfect\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"polish up\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pollyannaish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"praise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"praiseworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"precise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"preferential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"presentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"primo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profuseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"profusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"prolificacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"properness\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"propriety\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"prosper\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"prosperity\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"quotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"reanimate\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"renowned\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reputability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"reputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rescue\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"respectability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"respected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"resplendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reverential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"revivify\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"riant\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sainted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"saintlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"saintly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sensibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"shape up\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sincere\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"skilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"skillfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"slap-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"smashing\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"smiling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soundness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.958\",\n    \"std\": \"0.072\"\n  },\n  \"spiffing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"splendiferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"square shooter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"starry-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"stimulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"stirred up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"straight arrow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"straight shooter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"strong point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"successfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"suitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"summa cum laude\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sunny\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"superb\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"sure-fire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sure-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sweet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.443\"\n  },\n  \"sweet-scented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sweet-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sweetly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"swell\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"taking\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"talented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"thrive\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"together\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"top-flight\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"top-hole\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"topping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"trusted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"twinkly\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unfeigned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"upbeat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.707\"\n  },\n  \"upstanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"valiance\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"valiancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"valor\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"valorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"valour\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"venerating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"virtuoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"well-behaved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"well-being\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"well-favored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"well-favoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"well-preserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"well-thought-of\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"well behaved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"wellbeing\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"winning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wonder\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.52\"\n  },\n  \"wonderful\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"wonderment\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"wondrous\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"word-perfect\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"worthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"worthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"worthwhile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"worthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adynamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"afflict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"affliction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.0\"\n  },\n  \"afflictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"anguish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"animadversion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"assuming\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"asymmetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atrophy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"backwardness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"baleful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"bastard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"berating\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"betray\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.771\",\n    \"std\": \"0.051\"\n  },\n  \"bitchiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"blamable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"blameable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"blameful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"blameworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"blemish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"blemished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"blockheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bloodguilty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"blowing up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bogus\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"boneheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bump off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"by-blow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cabbage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"caddish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"caliginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"callowness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"calumniatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"calumnious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"carnage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"castigate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"cattiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cause of death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"censurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"charcoal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"charnel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cheat on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"chinchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"churlish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"clamminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cloddish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condemnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condemnatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condemning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"contemptuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"convict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"crappy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"crass\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"crocodile tears\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cuckold\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"culpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"curmudgeonly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dankness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"darkening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"darkish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deaf-and-dumb\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deaf-mute\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"decayable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"decayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deceive\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.937\",\n    \"std\": \"0.0\"\n  },\n  \"defamatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"defect\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"delude\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"demote\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"denigrating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"denigrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"denigratory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desecrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"despicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"despoiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dickhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"difficultness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disadvantageous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"disagreeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.833\",\n    \"std\": \"0.144\"\n  },\n  \"disagreeableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"discontinuity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"disesteem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disfluency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disharmony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"dishearten\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dishonor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"dishonour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"disliked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disregard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"dissimulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dissymmetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"do in\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"doltish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"duncical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"duncish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"egregious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"enrage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"evil-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"eyesore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fatheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fetid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"filch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"flagrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"flawed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"flood out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"foetid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"foolishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"forget me drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"forsake\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"foul-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"freeze off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"frigidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"frostily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"frown\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gammy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gaumless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"get under one's skin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ghoulish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gloat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gloating\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"go wrong\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"god-awful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"godforsaken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"gormless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"guiltiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"harmful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.937\",\n    \"std\": \"0.0\"\n  },\n  \"hell on earth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hellhole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hot water\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"humbug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"hypochondriac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypochondriacal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill-humored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill-humoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill-scented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill humour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ill nature\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"illegitimate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"illegitimate child\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"immoderate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"impassable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"improperly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"improperness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"impugn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inadmissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inaptitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"incapacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"incompetence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"incompetency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"incomprehensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"incoordination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"indecorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inefficaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inefficacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inefficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inelasticity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inexperienced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inexperient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inflexibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inharmoniousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"involuntariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"irrecoverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"kick downstairs\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"liar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"libellous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"libelous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"loggerheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"love child\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"loveless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malignment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"malodorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malodourous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"manic-depressive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"mass murder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"massacre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"menacing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mental retardation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"mentally ill\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"minacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"minatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misapply\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"misbegot\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misbegotten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misbehavior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misbehaviour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"miscarry\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"mischievous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"misdeed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misogynistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misogynous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misuse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"moon-curser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"moon curser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mother fucker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"motherfucker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"murder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"nagging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"nastiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.072\"\n  },\n  \"nervous breakdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"netherworld\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"nitwitted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"non-living\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"noncomprehensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"nondigestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"nonliving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"on the hook\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"overpoweringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"overwhelmingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"parsimonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"perplex\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"phobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"phoney\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pilfer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pitch-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pitch black\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pointlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pooh-pooh\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.937\",\n    \"std\": \"0.0\"\n  },\n  \"presumptuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"prevaricator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"protestant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"psychopathic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"psychopathologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"psychopathological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"purloin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"putrefiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"putrescible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"quack\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rampage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rank-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"raped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"raucous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ravaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"reprehensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"roofy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rotted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rotten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"rough-spoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rubbishy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"scowl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"scurrilous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"self-destructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"selfishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"senselessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-worded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"shirty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"shitty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"shortcoming\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"showdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"shrewish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"slanderous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"slay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"slayer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"slaying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"smash up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"smelly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"smuggle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"smuggler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"snarf\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"snorty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"soft-witted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"son of a bitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"soot black\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"spoilable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spurn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"static\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"stinking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"stinky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"strife\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"suicidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"surly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tactlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"talentlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tempest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"the pits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"thick-skulled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"thickheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unanimated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unappreciative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unbending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unchivalrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"uncleanliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unconnectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unconstructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"uncooperative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"uncouthness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"uncreativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"under attack\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"under fire\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"undeserving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"undignified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unenlightenment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unfavorably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unfavourably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ungallant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unknowing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unknowledgeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unmalleability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unmerited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unmitigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unnavigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unobliging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unpassable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unperceptiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasant-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unrecoverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unseemliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unsightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"untraversable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"untrustworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"untrusty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unwillingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"unwisely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"unworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.072\"\n  },\n  \"vilification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"violent disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"waste\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"wasting away\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"weak point\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"weep\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"weigh on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"whoreson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"withering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"wooden-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"accurate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"adequate to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"admired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"admittable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"admittible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"advantage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"advantageously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agog\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"all right\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alterative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ancillary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"appositeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"appropriate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"assentient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"be well\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"better off\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"blest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"blue-chip\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"boffo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bullish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"charismatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cherished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"clean-living\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cognisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cognise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cognize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"comme il faut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"competence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"competency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"confirmative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"confirmatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"conformism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"congruence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"congruity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"congruousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"considerateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"copacetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"copasetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"copesetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"copesettic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corrigible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corroborative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corroboratory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"countenance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"courting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"courtship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"creditworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cunning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.072\"\n  },\n  \"curative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"debonair\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"debonaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"decided\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"decorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"decorum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deft\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"demonstrative of\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dependability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dependableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dexterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dextrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"diverting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"earnestness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"ebullience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ecstatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"elastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"eligible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encomiastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"endearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"engaging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enjoyable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enlivened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"enraptured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"erotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eulogistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exalted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"experienced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"experient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"express joy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"express mirth\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"felicitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"fertilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"festal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"festive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fevered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fittingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"flattering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"flourishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gain ground\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gainly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"get ahead\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"good nature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"goody-goody\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guarded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"halcyon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"handy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.125\"\n  },\n  \"harmonical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"harmonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.144\"\n  },\n  \"harmonised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"harmonized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"healing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"heaven-sent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedonistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"high-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"high-performance\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honorific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honourable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honourably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"humorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"humourous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hunky-dory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"illustrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.265\"\n  },\n  \"impeccant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"in high spirits\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"innovative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"inspired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"jaunty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"knowable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"laudatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"laugh\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"livable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"liveable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"magnificent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"majestic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.361\"\n  },\n  \"make headway\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malleability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"manipulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mesmeric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mesmerizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"noble-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"o.k.\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ok\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"opportuneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"opportunist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"palmy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"panegyric\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panegyrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"patness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"peppy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"perfectible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"perky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"photogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"placation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plasticity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pleasant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"pleasurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"politic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.265\"\n  },\n  \"practised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"praiseful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"praising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prepossessing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prestigious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"prize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.451\"\n  },\n  \"profit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"promising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"promotive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prospering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pulchritudinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pull ahead\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"quick-witted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rapt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rapturous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ratiocinative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rattling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ravishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reconstructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reliability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reliableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"respectful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"rhapsodic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"right-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"righteousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"roaring\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rose-cheeked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rosy-cheeked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rubicund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sanative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"satiate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"satiated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"satisfactoriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"scalable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"seemliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"seemly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sensuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"serious-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sinless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sociable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spellbinding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"staid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"staunch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"suave\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"substantiating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"substantiative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"successful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"symphonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tenable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"the true\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"thought-provoking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"thriving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"time-honored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"time-honoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"timeserving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"treasured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trusty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turn a profit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"understated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unexceptionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"validating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"validatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"valued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"verificatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"verifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"versed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"veteran\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"voluntarily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"waggish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"welcome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-conducted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-founded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-informed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-timed\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"well-turned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well-wishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"well timed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wholesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wholesomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"willingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"winsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wooing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"workmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aboulic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abulic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"achromasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"achromatous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"acidulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"acidulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aggravated assault\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agonised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agonized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alas\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"algid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"algophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amateurishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"anguished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"asshole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"assumed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"atrabilious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bad-tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"baseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bastardly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"bawl out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bawling out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"beetle-browed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"berate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bereavement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"betise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brainish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brash\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brokenhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brusk\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"brusque\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"burned-over\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bypass\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"call on the carpet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cataclysmal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cataclysmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cecity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chargeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chastise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cheeky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chew out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chew up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chewing out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"closefisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"conscienceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contemptibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contemptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contemptuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contumely\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"coup de main\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"crabbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"crabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"crazed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"creepy-crawlies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"crock up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cruelness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cussedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"damnatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"damning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dangerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"dark-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dark-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"darkling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deafness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"demean\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deranged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deride\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"derisive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despicability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despicableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"destructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"destructiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"detested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disapprobation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disequilibrium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disingenuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disproportional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disturb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"drag up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dredge up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dressing down\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dumbfound\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dusky-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dusky-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dustup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dyspeptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"empurpled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ersatz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exceptionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fallout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"feeblemindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"feigned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"feral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ferine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ferocity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fetor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fierceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"flightless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"flummox\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"foetor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"forceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fragility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"frowning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"furiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gibelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"godless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grossness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grotty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grouchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grumpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gun down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"half-crazed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hardfisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"have words\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hazardous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hearing loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"heartbroken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hellish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"hexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hot-tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hot under the collar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hotheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"hypochondria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hypochondriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hypopigmentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ignorantness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ill-being\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ill-considered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ill-judged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ill-natured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ill-tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"immoderateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"immoderation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imperfectly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impetuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impiety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"implacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"implike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imprecise\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"improvidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imprudence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inaccurate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inadequately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inadequateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inadvisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inauthentic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incognizance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incognizant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incompressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inconsolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indictable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indigestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ineffectiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ineffectuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ineffectualness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inefficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"inequitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inexpiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextirpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"infernal region\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"infertile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inflict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inhospitality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inopportune\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insolvency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insulting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irreversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irritant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"jeering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jinxed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"killer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"kvetch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"liverish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"livery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"lividness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"lynch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"madcap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malodor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malodour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mephitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"miserliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"misleading\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mobbish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"moblike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mulish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mysophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"naiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"naivete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"naivety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"namby-pamby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nescience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"niff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"niffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nonintellectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nonplus\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"objectionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"obnoxious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"obtund\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"offended\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"orneriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ostentatiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"over-embellished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"pained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pallidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pallor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"peevish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"penalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"penalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"perniciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"perplexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pettish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"petulant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pine\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plain\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pomposity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pompousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poor-spirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prankish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pretend\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pretended\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"primitiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"puckish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"punish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pusillanimous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"put on\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"putrid-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"quetch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"quick-tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"raise the roof\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rancorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"raunch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rebuke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reek\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"regrettably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"resourceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"revilement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"roughhouse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rowdy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rudeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"run-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sackcloth and ashes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"satanophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"schizophrenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"scorned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"scornful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"scowling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"self-incrimination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"self-torment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"self-torture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sham\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"short-tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sightlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sirrah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"snake pit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sneering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"snide\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"spavined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"splashiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"springless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"starving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"stench\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"stink\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"struggling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"styleless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"surprise attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"take to task\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"talentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"taunting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tearaway\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"techy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"testy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tetchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"thick-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"throes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tightfisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tinpot\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tortured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tragical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trashy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"traumatise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"traumatize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trifling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"troublesomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trumped-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unadvisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unalert\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unauthentic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unaware\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncared-for\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncharitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unchaste\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncivil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unclimbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"unconsecrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unconsolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncordial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncorrectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"uncreative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"undependable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"undeserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"undiplomatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"undiscerning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unedifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unfertile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unfertilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unfertilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unforceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unforeseeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unforgivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unfortunately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unglamorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unglamourous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ungodliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ungracefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ungraciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ungratified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unhallowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unkindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unknowable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unluckily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unmeritorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpatriotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpeaceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpermissive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpermissiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpopularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unpropitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unrestraint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unripe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unripened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unsanctified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unsightliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unsubstantial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"untalented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"untoward\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"unvigilant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"unwatchful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"upbraiding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"verminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vulgarity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wanness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"whimper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wimpish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wimpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"wistful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"worm-eaten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"worriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"worthless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"wrecked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xenophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"yen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"able\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.473\"\n  },\n  \"abundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acceptability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.12\"\n  },\n  \"acceptableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"accessary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"accessible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.12\"\n  },\n  \"accessory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"acclaim\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accommodating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"accordant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"accredited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ace\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"actual sin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adequate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.125\"\n  },\n  \"adequately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adequateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adjuvant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"administrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admirability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admirableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admiringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adorned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"advisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aesthetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"affectionately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"affirmatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agreeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agreeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.144\"\n  },\n  \"alimental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"alimentary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"all-around\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"all-embracing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"all-encompassing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"all-inclusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"all-round\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"allegiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"alluring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amiability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"amused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amusing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"angelic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.545\"\n  },\n  \"angelical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.545\"\n  },\n  \"animate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"anthelminthic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"anthelmintic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"antifertility\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"antimicrobial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"antimicrobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"appeasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"applaud\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"apposite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"appraising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"approachability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"approachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.125\"\n  },\n  \"approbation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"approvingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aptitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ascribable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"assiduous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"assistive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"assured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"astute\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"at best\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"at the best\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"attire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attractive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.191\"\n  },\n  \"autoerotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"avant-garde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aware\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"awe-inspiring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"awesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"awing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ball-hawking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bankrupt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bantering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"baronial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"beatific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"beatified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"belly-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"benefit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"blanket\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.24\"\n  },\n  \"blow-by-blow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blue-ribbon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bonzer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bouncy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"bowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bracing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brilliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.22\"\n  },\n  \"brush up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.619\"\n  },\n  \"cagey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"cagy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"cantabile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"canty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"capable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.65\",\n    \"std\": \"0.19\"\n  },\n  \"carpetbagging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"catholic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"celibate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"certificatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"champion\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chaste\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.0\"\n  },\n  \"chewable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chirpiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chivalrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"choice\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"christian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"christlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"christly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"circumspect\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"class act\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cleanliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"clear-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"clever\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.144\"\n  },\n  \"closelipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"closemouthed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cognisance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cognisant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cognizant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"come along\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"comestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comfy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"commendation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"companionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"compatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.217\"\n  },\n  \"competent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.072\"\n  },\n  \"complaisant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comradely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"con brio\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conciliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conciliation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.072\"\n  },\n  \"conciliative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"concupiscent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conditioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"conformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.072\"\n  },\n  \"congenial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"consecrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.161\"\n  },\n  \"consecrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consenting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consistently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consonant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"constructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"consummate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"contraceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"controllable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"convivial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cordial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.217\"\n  },\n  \"correctable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"corrective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"correctness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"countywide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"courtly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crack\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"craftsmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crafty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creative thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creativity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.157\"\n  },\n  \"cute\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"cuttable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"danceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dashing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"dead-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dear\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"deck out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deck up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decorated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decorously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dedicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deductible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deferential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"delicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"deliver the goods\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"democratic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"describable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deserving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"designing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"detailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dewy-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"diligent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"discriminate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dishy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disposable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diverted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"do good\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"docile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"dosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"down-to-earth\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"down pat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"drinkable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"earnest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"eatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"edible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"edifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"educative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"efficacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"efficaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"efficacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elaborated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elasticity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enabling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopaedic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopedic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entertained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entertaining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enticing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enwrapped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"epicurean\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epoch-making\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"epochal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"equitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"errorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"esthetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ethical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"eudaemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eudaemonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eudemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eudemonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"euphonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"euphonous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"evaluative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exact\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"executable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"expansive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"expedient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"explainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exploded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"expressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"face-saving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"facetious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fair-and-square\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"faithful\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fancify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fancy up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"farcical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"feasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fecund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"feelingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"felicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"fertile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.063\"\n  },\n  \"fig out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fig up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fine-tune\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.361\"\n  },\n  \"finespun\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"first-rate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.319\",\n    \"std\": \"0.207\"\n  },\n  \"fitter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"flourish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.505\"\n  },\n  \"fly high\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"foreseeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"formative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"forward-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"foster\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.315\"\n  },\n  \"foxy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frisky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fruiting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gainful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gallant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.204\"\n  },\n  \"gentlemanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gentlemanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"get-at-able\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"getatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-humoredness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-humouredness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-naturedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-temperedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-time\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good for you\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good health\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good manners\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"goodish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"governable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gracefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"graciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"grand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.182\"\n  },\n  \"greatest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"groovy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"guileful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gussy up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"habitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hail-fellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hail-fellow-well-met\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"halal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"hallowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"handsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"harmonizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"healthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"healthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"healthier\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"healthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"healthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.259\"\n  },\n  \"heart-healthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"heartening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"heartfelt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"helminthic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"helpful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hi-fi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"high-fidelity\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"high-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"high quality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"historied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"homelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"homey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"homy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.373\"\n  },\n  \"honorableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"honorably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"honoring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"honour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.373\"\n  },\n  \"honourableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hospitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.072\"\n  },\n  \"hospitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hygienic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hygienical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"identifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"idyllic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"imaginative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"implemental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imposing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"improvement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.439\"\n  },\n  \"in good taste\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incisive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"indulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.191\"\n  },\n  \"informed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ingratiating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"inhabitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inspiriting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intelligent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.161\"\n  },\n  \"intent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"interestingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"interpretable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intimate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.215\"\n  },\n  \"inventive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"iterative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"justifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kept up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"killing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.191\"\n  },\n  \"kittenish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"knavish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"knowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.072\"\n  },\n  \"knowledgeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"kosher\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"ladylike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lamblike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"larger-than-life\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"laurels\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"leal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"learned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"lettered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"licenced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"licensed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"licitly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"liege\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"life-giving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lifelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"light-fingered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lighten up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.217\"\n  },\n  \"lightsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"liven\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"liven up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lofty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.25\"\n  },\n  \"logical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.102\"\n  },\n  \"lovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"loveable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"loyal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"luckiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lucky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.125\"\n  },\n  \"lucrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lustrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"lusty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"luxurious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"lyrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"magnificence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"maintained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"manageable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"manageably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mastered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"matey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maximal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maximum\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meaning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meaningful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meek\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.0\"\n  },\n  \"meet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"melodious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"merited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"merriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"meticulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"metier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.442\"\n  },\n  \"mirrorlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mitigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"moralistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"morally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"most-valuable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"multiple-choice\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"neighborly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"neighbourly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nimble-fingered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"no-hit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nonnegative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nourishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nutrient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nutritious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nutritive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"obliging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"observable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"olympian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"on-key\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"operable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"optimist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"opulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"originative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"overabundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"overcautious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"overcredulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"overjoyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"overriding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"overripe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pacific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"painterly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pally\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"palsy-walsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paramount\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"parasiticidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"passable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"passionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"peachy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"percipient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfectibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfumed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.265\"\n  },\n  \"permutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perspicacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"pertinent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"picturesque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"piety\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"piousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"playable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pleasantness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pleasingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"pledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plenary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plenteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plentiful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"plethoric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"polish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.52\"\n  },\n  \"polite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"popularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"potable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precaution\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"precious\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precision\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"precooked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"predominate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preferable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"premium\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prepared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"preponderant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preponderating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prescient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preservable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prettify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pretty-pretty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"priggish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"primed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prizewinning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"productive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.102\"\n  },\n  \"profitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prolific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"pronounced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"proper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.12\"\n  },\n  \"prophylactic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.0\"\n  },\n  \"propitiative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prosperous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.157\"\n  },\n  \"proud\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"proud of\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prudish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"puncturable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"purposefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pursuant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rallying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"randy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.161\"\n  },\n  \"ready\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.168\"\n  },\n  \"ready to hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reanimated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reasonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"reasonably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"reasoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recherche\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reclaimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recollective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconciled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconciling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"record-breaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recuperative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recyclable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"redeeming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"referable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"refreshful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"refreshing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"regardful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"reinforced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"reiterative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"releasing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.072\"\n  },\n  \"remedial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"repeatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resolute\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"restorative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"reusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"revered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reverend\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"richness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.571\",\n    \"std\": \"0.318\"\n  },\n  \"rig out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"righteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"rightful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"rock-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rousing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"ruddy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"ruttish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sacred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.575\",\n    \"std\": \"0.153\"\n  },\n  \"safety-related\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sagacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"salubrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"sanctified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"sanely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"saneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scintillating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"seasonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"seasoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"second-best\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"secretive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sedate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"select\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"self-assured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-confident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-directed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-educated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-imposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-reliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"self-supporting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"semiconducting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"semiconductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sense of purpose\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"serendipitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seriocomic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seriocomical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"serious-mindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"serve well\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"serviceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"shapely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shaping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sidesplitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"simplified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"singing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sinkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"slavelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"snazzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"solemn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"solvency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sophisticated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.375\"\n  },\n  \"spaciotemporal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sparkly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"speakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"specifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"speech-endowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"splendor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.53\"\n  },\n  \"splendour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.53\"\n  },\n  \"stableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"stalwart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"standardised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"standardized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"stately\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"statewide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"steadfast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"sterling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"stirring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"straight-laced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"straightarrow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"straightlaced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"strait-laced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"strengthened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"studded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sublime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.063\"\n  },\n  \"successfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sufficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sumptuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sun-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"super\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"superabundant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"superlative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"supportive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"supreme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.188\"\n  },\n  \"surpassing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"sworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"sybaritic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"synergetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"systematically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tactful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"tamable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tameable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tasteful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"teachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tempting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"tested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"therapeutic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"thorough\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"thrifty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"tight-laced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tightlipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"timely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiptop\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tog out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tog up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tongue-in-cheek\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"top-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"top-notch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"top-quality\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"topnotch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tops\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"transposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tremendous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.331\"\n  },\n  \"trick out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"trick up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tricksy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"triple-crown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"true\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"truehearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"truthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"turned on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unalarming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unalloyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unbeaten\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unburied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unconquered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"uncoupled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"undefeated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unharmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"uninfected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unscathed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unswerving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"unvanquished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"upgrade\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.288\"\n  },\n  \"upscale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"user-friendly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"utterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"valuable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"verdant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"verve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"viable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"victorian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"victorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"victory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"viewable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vim\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"virtuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"vitality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.27\"\n  },\n  \"vitalizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vivify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"voguish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"voluptuary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluptuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.125\"\n  },\n  \"votive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vowellike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"water-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-chosen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-educated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-grounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-mannered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"well-off\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"well-qualified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-read\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"well-rounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well-tried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"well thought out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wellness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"whipping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wily\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wiseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.442\"\n  },\n  \"wonderfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"workable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"workmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"world-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wrapped up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zestful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zippy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"abetalipoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abuse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"abusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"acerb\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"acerbic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"ache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acrimony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adamant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"addle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"aggravator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"agonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"ail\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"alarming\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"alienating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ambuscade\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ambush\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amnesiac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amorally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amyotonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"anaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"apocalyptical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"assassinated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"assassination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"at a lower place\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atonicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"attaint\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"badinage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"balls-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ballup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"baneful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"barbaric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"bare-knuckle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bare-knuckled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"battle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"battle fatigue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bedlam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"beneath\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bilious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"biliousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"binge-eating syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bittersweet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"black-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"black-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blackguardly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blackish-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blackish-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"blame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"bluff out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"boo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"boorish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"boorishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"bounderish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brattish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bratty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brawler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brazen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"breakability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"broke\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brook\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brown-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"buffalo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"burdensomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"buried\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bust\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cacography\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caitiff\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"callow\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"canard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"carry-the can\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"catcall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cease and desist order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chafed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"charcoal gray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"charcoal grey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chicanery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chicken breast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chintzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"clash\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"clavus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"coarsely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cockup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cold war\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"combat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"combat fatigue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"combat neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complexity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complexness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conceitedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"condescending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"country-bred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cozen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crackbrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crazy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creepy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"crepuscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"criminalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crudity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"curse word\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"daimon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"damage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"danger line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"daring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"darken\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"dastardliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deaf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deceivingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deceptively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decry\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deficiency disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desert\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"desperado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desperate criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"destruct\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"detriment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"difficulty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.188\"\n  },\n  \"dimness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"dinge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dinginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disapprovingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"discord\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discourteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"disgrace\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dishonorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"disinterest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disjointedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disobey\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disobliging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disproportionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"disqualified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"disrespect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"dissembling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"dissentious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"divisive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dog's breakfast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dog's dinner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dog-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dogsbody\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"doom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dork\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dowdiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"downspin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"downstair\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"downstairs\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"drabness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"drudging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dupe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dusky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"dysmenorrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elegy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elements\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"endangered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enjoining\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enjoinment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"erythroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"excoriation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"excruciation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"executed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"face the music\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"factious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"faint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faithlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"fallen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.072\"\n  },\n  \"falsify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.55\",\n    \"std\": \"0.0\"\n  },\n  \"famine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"feign\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"feigning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"fickle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"fickleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"flash\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"flaw\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flea-bitten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"flim-flam\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"flinch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fly-by-night\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foam at the mouth\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fob\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"for sure\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forbidding\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"foulmart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"foumart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frangibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frangibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frivolousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"froth at the mouth\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frowsty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"funk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fusillade\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gauche\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"generalized epilepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ghastly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"gimcrack\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"good-for-naught\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good-for-nothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gouty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gracelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"grand mal epilepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"grimness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"grizzled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gruff\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"haphazardness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hard-of-hearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hardship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"harsh\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.112\"\n  },\n  \"health problem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hearing-impaired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hell-kite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hell-rooster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"higgledy-piggledy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hollow-back\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hueless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"huff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humdrum\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"hurt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.112\"\n  },\n  \"hurtful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"hurting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hypognathous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hypothyroidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hysterics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"identity crisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ignorance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ignorant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.0\"\n  },\n  \"ill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-bred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ill health\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"illegalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"illegalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"illogic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"illogicality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"illogicalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imaginary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imbalance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"immorally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"immunodeficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"immutability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"immutableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impersonally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"impious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"imprecation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"impreciseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imprecision\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imprudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"inadequacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.0\"\n  },\n  \"inanimate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"inanition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"inarguable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incomprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incrimination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inculpation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ineffective\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.125\"\n  },\n  \"inelastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ineligible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"inexorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"inexpressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inexpugnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inferno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"inflexibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"inhumed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insentience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insubstantiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"interred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intolerably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intransigent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"invective\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irrationally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irreducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jeer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jejuneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.144\"\n  },\n  \"jumbled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kangaroo court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"kaput\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"keen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laboring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"labouring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lace into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"laid up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lam into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lament\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"languish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"lash out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lay into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"licentious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"life imprisonment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"listlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"long-sufferance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"long-suffering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"looney\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"loony\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lordosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"losings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"losses\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lousy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.144\"\n  },\n  \"loutish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lowbred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lying in wait\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maladroit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maladroitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mangey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mangy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"manic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"marred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mental anguish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mephitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"meritless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meshuga\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meshugga\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meshugge\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"meshuggeneh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meshuggener\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mess-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"miff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misgovernment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misleadingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misrule\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mongrel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"mongrelise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mongrelize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"moroseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"mourn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"murder conviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"murk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"neandertal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"neanderthal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nemesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nerve\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"nether region\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"no-account\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no-count\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nonchalance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"nonconformance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"nonconformism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"nutcase\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oafish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"object\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"objurgate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"obscurity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.125\"\n  },\n  \"odynophagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"old bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ominous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"onerousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ordeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"osteophyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"outlaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxford gray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oxford grey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"palsied\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pandemonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"panic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paranoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraplegic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paroxysm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"patronising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"patronizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"peeve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"penurious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"perdition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perishability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perishableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pettishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pick apart\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pigeon breast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pimpled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pimply\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pitch into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pittance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"play a trick on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"play tricks\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poorly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"precursory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"predicament\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"premonitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pretentiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"prognathic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"psychoneurotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puffiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"pull a fast one on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"purple-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"purplish-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pusillanimity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pusillanimousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pustulate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"put one across\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"put one over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"puzzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"quail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"quarrelsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"radioactive dust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.0\"\n  },\n  \"ravaging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"razz\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"razzing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"renege\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reprehend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprimand\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"reproach\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reproof\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reproval\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resent\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"revoke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rough-and-tumble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rough sledding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"roughish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rubbish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"safehold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scandalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scandalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scarce\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scarceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scarcity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"schmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"schmuck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scoff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"scoffing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scold\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"scoundrelly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scrambled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"scrawl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scruffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seeing red\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"semi-wild\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shell shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shiftlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shmuck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"shoddy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"skint\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"skull and crossbones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sleaze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"smart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"smarting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"snappishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sneer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"sob story\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sob stuff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"somber\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"sombre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"sordidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"speechless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"spinal curvature\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"spiritlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"spurious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.125\"\n  },\n  \"spuriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"squandermania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sterilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sterilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"stochasticity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"stomach\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"stone-broke\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"stony-broke\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"storm\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.0\"\n  },\n  \"stricture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"subnormality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"subpoena\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subpoena ad testificandum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"succor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"succour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sullenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"surliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"swart\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"swarthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"swearword\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"swoon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tart\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"tasteless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"tat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tawdry\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"tear into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"threatening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"throe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"thumbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tiredness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"to a lower place\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"toiling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"topsy-turvy\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"topsy-turvydom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"topsy-turvyness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"torturer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"treacherous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"trick\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"troubled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"tsk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tsoris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tut\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tut-tut\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tyrannicide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unacceptably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unaccommodating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"unalienable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unappetising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unappetizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unarguable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unattackable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unattractive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"unauthorised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"unauthorized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"unbearable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unbeatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unblessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unceremonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"uncheckable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unconcern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"unconsciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"uncouth\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"uncultured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"underworld\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"unendurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unenlivened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unentitled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unexpressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unfailingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unfavorable judgment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unflattering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ungenerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"ungrateful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"unguarded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unhappily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"unhealthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unholy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.144\"\n  },\n  \"unknowingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unmodifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unpersuadable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unprofitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unqualified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.063\"\n  },\n  \"unreceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unreformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"unregularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unreliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.12\"\n  },\n  \"unremunerative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unrighteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsafe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.217\"\n  },\n  \"unsanctification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsatisfactoriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsatisfied\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"unscholarly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unscrupulously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsoundness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"unstatesmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsuasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unsuccessfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"untempting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"unthinkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"untraceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unverified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"unwitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.217\"\n  },\n  \"unworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"vinegarish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"vinegary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"violet-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vituperation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"volatile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"vulgarism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"wail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"walk out of\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wan\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"wangle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"war-ridden\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"warring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"weariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"weigh down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"weirdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"wile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"wrangle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"writer's block\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"yokel-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"yokelish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aboveboard\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abreast\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accelerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acceptably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acceptant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acclamation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acclivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accolade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accommodative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"accomplishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"according\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"achievable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acquiesce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acquiescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"actionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adaptability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adapted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"addictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"addressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adequacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"adjustable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"admissive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adrenocorticotrophic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adrenocorticotropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"advancing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"advantageous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"advertent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"advertently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"advised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aesthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affirmable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"affluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agape\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agglomerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agglomerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agglomerative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"aglitter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agreeably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"airworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"all-important\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"all-night\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"all important\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"allegro con spirito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alright\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amalgamate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amalgamated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amendatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amentaceous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amentiferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anchoritic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"animating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"answerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"antimonopoly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antitrust\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplanatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocryphal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apodeictic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apodictic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appeasing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appetising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appetizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"applause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"applicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"applicative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"applicatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"approbate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"appropriateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"apropos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aptly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aright\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"artistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"artsy-craftsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arty-crafty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascendant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ascendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ascendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascertainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aseptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aspirant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aspiring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assertable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asserted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assessable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"associable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assuage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.331\"\n  },\n  \"assuring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"at the ready\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"attachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"attune\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"au courant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"au fait\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"auspiciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autofluorescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autogamic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autogamous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"auxiliary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"avertable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avoidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avouchment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avowal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aweary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"axenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"azure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beadlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beady\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beauteousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beef up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beefed-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"befitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beloved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"best of all\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"betrothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"better\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"betting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"biddable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"big-chested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bighearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bimanual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bindable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bookish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"booming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"bordered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"born\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bosomy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bottom round\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bounce back\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bounden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bounteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bountiful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"bravura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brazen-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"breathtaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bridgeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bright-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bright blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bring through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buffoonish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"built\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bullocky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bunce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buoyant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.442\"\n  },\n  \"burr-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"busty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buttonlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buttony\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadenced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"callipygian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"callipygous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"can-do\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"capableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"capably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"captive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"card-playing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"carry to term\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"case-by-case\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"case-hardened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"casebook\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"catching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cathartic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.315\"\n  },\n  \"causal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cautious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"centralising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"centralizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"certificated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cerulean\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"champleve\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"characteristic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"charming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.442\"\n  },\n  \"cheerily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chess master\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chief\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"child-centered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"childlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"chirpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"chiseled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"choiceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"christianly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chubby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"circumstantial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"citywide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"civility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"clabber\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clean-limbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clean bill of health\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cleanable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clinking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cloisonne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cloistral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"closet drama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cloudless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clownish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clownlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coalesced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coaxing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cocksure\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coffee-table book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cogitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"color\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"colour\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"combustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"committed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"common-law\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"common sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"companionability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"companionableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compatibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complemental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"completing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compliment\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"compos mentis\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprehendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprehensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprehensive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conciliatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"condign\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confederate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confederative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confidently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"congratulations\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conscionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consentaneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consentient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"considered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constraining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constructiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conventual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conversant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"convince\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"copious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"copybook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"copyedit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"copyread\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coquettish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cordial reception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"correctly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corruptibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coruscant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cosher\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cost-effective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cost-efficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"countrywide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crackerjack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"credibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"credited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cringing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cultivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cultivatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cup of tea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"curvaceous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cut out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cutting-edge\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dapper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"darling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daytime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dead on target\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"debenture bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"debonnaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"declarable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"definable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"defined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"definite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"deliberate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"deliverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deluxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"denazify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"derestrict\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desegregation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deserve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deservedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destabilisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"detachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"determinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diagnosable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dianoetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"didacticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"digestibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"digestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"digestibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dignifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diplomatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"directing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"directive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dirigible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disabuse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disavowable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discernable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"disciplinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discoverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discretional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discriminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discriminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"disinflation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disjoined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distinguished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"distrustfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"doable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"donate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"double-quick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dress\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"drilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"droll\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ducal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ductile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"eclectic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecumenical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"edified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"edited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"educated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"effectivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"effectuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"effectualness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elasticised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elasticized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elder\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eloquent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emancipative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embonpoint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empathetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empathic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enable\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enchained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encompassing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"endear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"endergonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"engrossing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enhancement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enhancive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"enjoyably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enlivening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enough\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"epideictic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"epideictical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"epigrammatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ergodic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"erudite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eugenics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"euphony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evidential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excel at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exchangeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"exhaustive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhortative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhortatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exoteric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"expeditious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"explicit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"explicitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exterior\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extol\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extoller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extolment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extraordinaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extraversive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extroversive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"facilitatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"factuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"factualness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fain\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fair-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fame\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"familiarising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"familiarizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"famished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fascinated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatherlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatherly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"favorable reception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"favourable reception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"featured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"feel like a million\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"feel like a million dollars\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"felicitousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fervency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fervidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"festivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fettle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"filmable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fissionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"five-needled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flirtatious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foldable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foldaway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"folding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"forward-moving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"four-needled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"freebee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"freebie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"freehearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"freewill\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fresh-cut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fulgid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"full-blown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"full-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"full-bosomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"full-dress\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"full-fashioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"full of life\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fully fashioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gainfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"galvanising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"galvanizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gaping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gemmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gentlefolk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"germfree\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"germinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"get well\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"getable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gettable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gift wrap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gilt-edged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"gingerly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"giving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glamorise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glamourize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glinting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glistering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glittering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glittery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glossy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"glove leather\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"go\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"godsend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good-natured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good-neighborliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good-neighbourliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good luck charm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"good weather\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"graciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grade-appropriate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grandeur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"greater\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"greathearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gripping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grovelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gushy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"habit-forming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"haleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hallow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hammy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hand clapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"handclap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hands-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"health food\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heartwarming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hearty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.163\"\n  },\n  \"heed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heedfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"helpfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hermitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"high-powered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"high-principled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"high-tension\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"high status\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"higher up\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"histrionic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"home-brewed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"home-cured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homoeopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honestness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honeyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"horse sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hortative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hortatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hospitality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hot war\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"house-to-house\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"huge\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humorously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hurried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypnotised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypnotized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ice-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"idolised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"idolized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ignescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immense\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunocompetent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impellent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"importunate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imposingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impressionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"impressively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"improving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"in-chief\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"in a higher place\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"in order\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incorruption\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incorruptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indefatigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inebriated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inflatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"influential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inlaid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inpatient\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insightful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insolvent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"integrating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intellectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.315\"\n  },\n  \"intended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"interactional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"interestingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"introversive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"introvertive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invaluable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invigorated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invigorating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inviolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"invitatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inviting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inwrought\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irremediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeweled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jewelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jimdandy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jimhickey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"judicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"keep track\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"key\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kind-hearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kindhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"knockout\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"knowingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kudos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laborsaving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laboursaving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ladened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"landscaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"large-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laud\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laudator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lauder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lawfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"lawfully-begotten\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lend oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"light-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"light-footed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"limbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"load-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loan\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"long-dated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loungewear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loveliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lucidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lucrativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lucullan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lustful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lyricality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"macro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"magniloquent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"make full\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"make hay\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"make relaxed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malleable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"maneuverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manoeuvrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"marginal utility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"marksmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"marriageable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"master\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"matched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"matured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medicative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medicinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mental ability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mental balance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mental health\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mental soundness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"merit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"mesmerised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mesmerized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mild-mannered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mincing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mindful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mindfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ministrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mismate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mistakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mistrustfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mixable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"modernised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"modernized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"monastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"monastical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"mother wit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"motile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"motivated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moveable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"muggins\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"must\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"myopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcissism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nationwide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"natty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nearsightedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neighborliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neighbourliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neutralised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neutralized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"newsworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nightlong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nimble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"niminy-piminy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonbelligerent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonpartisan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonpartizan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"noticeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"nourished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"novel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"nubile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"numerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nut-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obedient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"observing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obtainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oecumenical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"of sound mind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"of the essence\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"old-time\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"olde worlde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"omissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"on faith\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"on hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"on the qui vive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"one-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"open-and-shut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"open-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"openhanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opportunely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orientate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orientating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orienting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orthotropous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"otherworldliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"out-and-outer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"outdoorsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oven-ready\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overambitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overconfident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overdress\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"overfed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overindulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overlook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overnight\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overpraise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"owlish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"palatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pale blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paneled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"panoptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"paperboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"par excellence\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parlor game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parlour game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"participatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"particularised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"particularized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patriotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pawky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"paying attention\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pensionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perfect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfectly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.442\"\n  },\n  \"permissiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persevering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persuasive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"philanthropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"pinkish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piquant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"pithy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"placating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"placative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"placatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plaudit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plaudits\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plausibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"playful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pleasantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pleasantry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pleaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.331\"\n  },\n  \"plump\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plump for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plumping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plunk for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plush\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"politeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pomaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pornographic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poster board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"powered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"powerfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"practicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"praisworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prayerful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preachy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preciseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"preferred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"presumptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"priceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prima\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prima facie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"princely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"principal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"principled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prissy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pro bono\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"probative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"probatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"procurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"productiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profitability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profuse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propellant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propellent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propitiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"protrusible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"protrusile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"proved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"proven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"provident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"prowess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"proximal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prudential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prudently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prurient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"public-spirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"publishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pucka\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pukka\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purpose-built\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purpose-made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purposeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"quality\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"quantifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quasi-religious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"racy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.063\"\n  },\n  \"raisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"raiseable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rapid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"raspberry-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ratifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rationally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ready and waiting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reasoning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rechargeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recognizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"recollect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reconcilable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recoverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rectifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rectitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"red-blooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"redeemable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"reflective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"reformative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reformatory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refreshed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"refreshen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"refurbishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regulation\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitation program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reinvigorated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remunerative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"renewing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repetitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"replete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reply-paid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"representable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repute\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"restricting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"retained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"retractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"retrousse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revitalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revitalising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revitalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revitalizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"reviving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rewardful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rewarding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"right-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rightfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ripened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rivalry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"riveting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rotatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"round-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"sacrosanct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sagely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"salable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saleable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sanction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"sanctioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saphead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sapient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sapiential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"savoir-faire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scholarly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"schoolwide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scintillant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seamanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seamanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seamanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"secret approval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"selected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-luminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-regard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-respect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-sufficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-sufficing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-sustaining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-worth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"semiprecious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sensibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"septicemic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sequined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seraphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"serviceability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"serviceableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"set-apart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sex-starved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"sexually attractive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shameless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-set\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sheathed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shew\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shine at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shockable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"short-dated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shrinkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shut up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"signal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"silver-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"silver-tongued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"singable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"skilfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"skillfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sky-blue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slapstick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"slashing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"slumbery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"smooth-spoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"snail mail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"so-so\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soigne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soignee\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sold\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"solvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somnolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"songful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"songfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonsie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sonsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soul-stirring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soulful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spangled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spangly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spanking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"speaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"specialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"specialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"specifically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spell-bound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spellbound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spiffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spiritism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sportsmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sprightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"springy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spruce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"spry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"square-built\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sr.\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stabilising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"stabilizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stand-alone\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"staple\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"star\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"starring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"statesmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"statesmanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"steerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stimulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stout\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.289\"\n  },\n  \"straight-legged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stretchable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stretchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"strong suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"studious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"suasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subedit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subjective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"sublimate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"submergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"submersible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"submissive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"subsidised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsidized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsist\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"substantiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"substantialness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"summum bonum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sunnily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suprasegmental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sweet-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sweetish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"swordsmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"symmetricalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sync\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tacit consent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tactfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"take kindly to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tapestried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tastefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"telltale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tempering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendencious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tendentious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"textbook\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"three-needled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tickling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tight-fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tight fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tightfitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tightly fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tillable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"time-tested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"timeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"tingling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tip-tilted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"to a higher place\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tolerably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tomfool\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tonicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"topknotted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"touristed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"touristy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transfixed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transmittable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transplantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trendy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tricked-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tried and true\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"true to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trumpet-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trustful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trusting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"truthfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"truthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tuneful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"twee\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"twinkling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"two-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"two-needled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ultramarine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"umbrella\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unambiguity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unblushing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unco\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uncompress\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unconstrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undamaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"under wraps\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unequivocalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unfasten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unhesitating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unimpassioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unimprisoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"universal agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unknot\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlax\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpaid worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpolluted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unprejudiced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsecured bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsleeping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unstilted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unstrain\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unusually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unwearying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"up-to-date\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"up on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uplifted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"urbane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"usability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"usableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"useableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"useful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utiliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilitarianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"uxorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"validated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"variedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"venerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"veracious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"verified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vigorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"visible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"visored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vitrified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vivacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"voluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"volunteer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"vote of confidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wainscoted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"waiting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wakeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wealthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weedless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"welcoming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"welfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.382\"\n  },\n  \"well-advised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-appointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-bound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-branched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-bred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-connected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-defined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-endowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-fed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-fixed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-found\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-heeled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-kept\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"well-nourished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-proportioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-situated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"well-to-do\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whirring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wieldy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"win over\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.375\"\n  },\n  \"wise to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wisely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wittingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"world-shaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"world-shattering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wormlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"worshipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"youthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abnormal psychology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abnormally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abrasive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abreact\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"absence without leave\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accurse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accursed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"accurst\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ace of spades\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acetoacetic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"act of terrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acute brain disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acute organic brain syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adipose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"admonishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adverse\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"afebrile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"affective disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aftertaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aghast\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agitating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agnail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agonising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agonizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agranulocytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ailing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aimlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"airheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarmism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"albuminuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"algometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alkalemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alopecic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amateurish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ambulate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"analphabetism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anarchy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anathematise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anathematize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anchylosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anergy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anginose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ankylosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"annihilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antemortem\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anti-intellectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antianxiety drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antineoplastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antineoplastic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety hysteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anxiolytic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anxiolytic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aortic orifice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aphakic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aphonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocalypse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appalled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"appellant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arm band\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"armlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arsehole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arthralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assailability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assassinator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assaultive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"assistant professor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asthenosphere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astraphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"at loggerheads\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"attack submarine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"attacking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"attrited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autocrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"awol\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aztreonam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"backhander\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"backswimmer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bad egg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bafflement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ball up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"baritone\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"batrachomyomachia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"battle damage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Spotsylvania Courthouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"battle royal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"be at pains\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beastliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beat-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beaten-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beef\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"befuddlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"begrimed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"behind\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bellyache\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bemusement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beriberi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"berserk\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berserker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"besieged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bewilderment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"biff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biohazard suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"biserrate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"black-capped chickadee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"black and white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"black bile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"black buffalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blackwater fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blaring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blench\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blind person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"blitzkrieg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blood disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blood disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blow a fuse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blow one's stack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blue-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blue-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bluish black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blushing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blustering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blusterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bobble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bodge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bollix\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bollix up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bollocks\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bollocks up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bolshy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"booby hatch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"boor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"botch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"botch up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"botched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"boxershorts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brackish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"branch out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"breach of warranty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"break someone's heart\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bright side\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bronchitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bronchospasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brown-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brown-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brown-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"browned off\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brownish-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brownish-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brownish-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bruise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brunet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brush down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bucking bronco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buffer zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bullheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bungled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"burgundy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bursting explosive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"by luck\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacophonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacophonous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacophony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadaverine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caffre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"call-out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calorific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calumniation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cancer drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cantankerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"capital punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caramel brown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caries\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cat-o'-nine-tails\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"catastrophic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cavalier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"censorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chanceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"characterless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cheapjack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheekiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cheesed off\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chemical operations\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chemical warfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chest register\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chest tone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chest voice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chevalier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chicken drumstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chicken leg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chilliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"chip off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"christless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clashing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"clumsiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coarsened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cod\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coldcock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coldhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coldness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"collide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"combat casualty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comedown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comminate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"commit suicide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complaining\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complainingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complaintive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complicate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"complicatedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condole\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conduction deafness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conductive hearing loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constabulary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contempt of court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contracture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conversion disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conversion hysteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conversion reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cool-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"copout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coronach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"counterfeit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countermove\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"counterpreparation fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crabbedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crabbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"craven\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crazy house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cretinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"criminal law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"criminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"criminatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crinkled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crinkly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cripple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"croak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"croaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crookback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crookbacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crossbones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crotchety\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruel and unusual punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cuckoo's nest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cumulonimbus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cumulonimbus cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"cursed with\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"danger zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"daredevil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dark-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dark blue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"darkened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dastard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dastardly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"daunting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dauntless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dead-end\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deaf as a post\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deaf person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death instinct\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death penalty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death row\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death warrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"death wish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"debilitated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"default\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"default on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"defencelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"defenselessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deleterious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"delusions of persecution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demerara rum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dental caries\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"depersonalisation disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"depersonalisation neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"depersonalization disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"depersonalization neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"depigmentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deprecate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"deprecation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dermatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desperate straits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destructibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"detrimental\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"devil's food\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"devil's food cake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diatribe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dicey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dilapidate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dire straits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dirge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dirty trick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disadvantage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disarray\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disconcerting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discourtesy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"discredit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"disdainful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"disentangled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disfavor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"disfavour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"disgruntle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dishonourable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dislogistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dismayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disreputability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disreputableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disrupting explosive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dissatisfy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disseminated multiple sclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disseminated sclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dissimulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dissonate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"distressfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distressingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distrustfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diversionary landing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dizzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"domestic ass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"double cross\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"down-and-out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"drawers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"drunk-and-disorderly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dull-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dyslogistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dysuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ebony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"edentulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elegist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embolus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emotional disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emotional disturbance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empty-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"endangerment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enervated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enmesh\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ensnarl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entanglement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"erythema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"essential\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eternal rest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eternal sleep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evasiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exasperated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exclusionary rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excoriate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excruciating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"executing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extremist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eyelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"face up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"facer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fair game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fall flat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fall through\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"family Ixodidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fantasist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fantods\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fardel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"featherbrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fell\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ferociousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fetidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiasco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiendish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"filagree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"filigree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fillagree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"finable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fineable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"finical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"finicky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"firebomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fitfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flagitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flexible sigmoidoscopy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flimsiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flip one's lid\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flip one's wig\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flout\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"flouter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flub\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fly off the handle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"follies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foolhardy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foothill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"footsore\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"for the moment\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"for the time being\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foredoom\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fossilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fossilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"foul up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fractiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"freak out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"frore\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"frowningly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fuck up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fudge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"fugaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fugly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fulminant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"funny farm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"funny house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fuschia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"futureless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gainlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gangdom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gangland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gangrenous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gaudery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gawk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gawker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gawp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gemfibrozil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus Bibos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus Branta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus Sivapithecus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"geometrical irregularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"get worse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"giddy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glossalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glossodynia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glowering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"go-slow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"go ballistic\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goblin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goggle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"goof-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"graffiti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graffito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"granitelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gratingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gray-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"greenhorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grey-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"greyish-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gridlock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"griever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grimy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gripe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"groan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gruesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grungy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guanaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerrilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gynophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"haemophilia B\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"haemosiderosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"half-cock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"half-hearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"half-mast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"half-staff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"halfhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hand-to-mouth\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hangman's halter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hangman's rope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hangnail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"haply\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard-and-fast\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard-baked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard-pressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard cheese\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard knocks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hard put\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hardihood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"harrowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hatchet job\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"have a fit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"have kittens\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hazardousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heartburn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heavy lifting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemophilia B\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemosiderosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hempen necktie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hepatomegaly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"herpes virus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterogeneity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterogeneousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hisser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hit the ceiling\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hit the roof\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honkey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honkie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honky\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hoo-ha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hoo-hah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hoodlum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hoodoo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hooligan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hoydenish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hullabaloo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"human death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humourless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humpbacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hunchbacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hurly burly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogen-bomb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogen sulfide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hyperadrenocorticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hyperemesis gravidarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypermetropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypermetropy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hyperopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypoglycaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypoglycemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hypotensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypovolemic shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hysteric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hysterical neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iconoclasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ignorantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ill-fed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ill-gotten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ill-proportioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ill luck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"illiteracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imbecility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immolate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immortal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immunodeficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impenetrableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imperil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impolitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impropriety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"impuissant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"in a bad way\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"inaesthetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inalienable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"inapplicability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inappositeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inaptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inartistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inattention\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incapable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"incertain\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incognizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incommodiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incompatibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incompleteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconsistently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconvenience\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incorrigible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incredulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incriminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incriminatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inculpative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inculpatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incursive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indecorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indecorously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indecorum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"indefensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.191\"\n  },\n  \"indestructibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indigent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indiscreet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indiscriminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inelegance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inelegant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inelegantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexcusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inexpedient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"inexpert\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexplicitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inferior cerebellar artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inferior pulmonary vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inframaxillary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infrared therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infrequency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inhuman treatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inhumaneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inhumanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"injurious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inquest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inquisition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insanitary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insect bite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insincere\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insincerity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"instability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.12\"\n  },\n  \"insult\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"insusceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intimidating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intrepid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invading\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invulnerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iron boot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iron heel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irrelevance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irrelevancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irresolutely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jackanapes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeerer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeopardise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeopardy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeremiad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jerkiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jerry-built\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jotter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jumping bristletail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kafir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"keratalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"keratectasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"keratonosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kerfuffle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kettle of fish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kingdom Monera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kingdom Prokaryotae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kleptomaniac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"knocked-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"knockout punch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"knottiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"kyphotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lair\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamb's-quarter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamenter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamenting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"languid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"languorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lantern jaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laryngopharynx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lassitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"last straw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lateral condyle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lay waste to\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laying waste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lead colic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"leery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lepidote\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"leprose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lie in wait\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"life-threatening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"live on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"livedo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loco disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"locoism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"logginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"longsightedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"look down on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loony bin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loosened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lordotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lose one's temper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"louse up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"low blow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lower\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.105\"\n  },\n  \"lower berth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lower respiratory infection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"luckless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lugubrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"luridness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"lycopene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lysine intolerance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"macabre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"machilid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"madhouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"magnified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"major affective disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"make bold\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maledict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maleficent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malinger\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malodorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mandibular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mandibular notch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mandibulofacial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mange\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manslayer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maraschino liqueur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mastalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maxillomandibular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medial condyle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medical prognosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megacolon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megalohepatia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megalomaniacal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megalomanic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"melanoderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"melee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"messy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"metabolic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"metralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mettle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"middle-ear deafness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"minor suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"minor tranquilizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"minor tranquilliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"minor tranquillizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mirthless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miscreation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miserableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misquotation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misquote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misrepresent\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"misspelling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mistranslation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mistrustful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misused\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mitigated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moan\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"molester\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moonless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"morose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mortal enemy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moth-resistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mourner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mourning band\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mourning ring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mug\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahadeen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahadein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahadin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahedeen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahedin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahideen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mujahidin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"multiple sclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"murderee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"murderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"muscle spasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mussy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mutilate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"mutism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mysophilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mysophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"name calling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"names\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nastily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"navy blue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ne'er-do-well\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"necessary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"necessitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"needless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nephralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nerve-racking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nerve-wracking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nervous exhaustion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nervous prostration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neurogenic bladder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neurotropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neutralization fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"night blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nightshirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nimbus cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nociceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonchristian\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonconformity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"nondescript\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonenterprising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"noninflammatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonnatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonrhythmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nonslippery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nontechnical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nontraditional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nosiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"notepaper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"now now\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nubbly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nubby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"numbness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nut house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nuthouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nyctalopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nyctophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nympho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nymphomaniac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obscureness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"obstreperousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odd-job\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"off-putting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"off the hook\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"offensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"offish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"old gold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"olive-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"olive-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oosphere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ophthalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ophthalmitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"order Moniliales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"order Mycrosporidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"order Myxosporidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"organized crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ornery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ossified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osteoporosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"osteosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"out of stock\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"outcry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overanxiety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overanxious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overbite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overbold\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overmuch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overreaching\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oversuspicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"overtolerance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"painful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"painter's colic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pale\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"pallid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pallidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pancake turtle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pants\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"papal cross\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paralogism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paramnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paraphilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parlous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patriarchal cross\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pearl gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pearl grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"peevishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pejorative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pepper-and-salt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perilous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perilousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perishable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perplexing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"personal foul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"personnel casualty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petit bourgeois\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petite bourgeoisie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petty bourgeoisie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"philistine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"phrenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"picky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pigheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pinkish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pins and needles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piss-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plaintiff in error\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"play possum\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"playlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plenty\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"po-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"podalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poignance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"police\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"police force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"police investigation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"police lieutenant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"police work\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poltergeist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poor white trash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"porkpie hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"portacaval shunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posse comitatus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posthumously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poverty-stricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"powerlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pre-emptive strike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"precision cookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preventive attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preventive strike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"price cut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"price cutting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prodromal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prodromic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profaneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"profanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profitless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profitlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profoundly deaf\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prophetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prophetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"proteinuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"provisionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"provoking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pudge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pulseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punctureless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"punitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purple-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purplish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"purposelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"push through\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puzzlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pyromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pyrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quash\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quavering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"querulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quietus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quixotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"radio beam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"radioprotection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rain cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rancidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rareness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rasping\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raspingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reconnaissance in force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"red-handed\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refracture\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regretfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reproachful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reprove\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reproving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"requiem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"requiescat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"requisite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retrograde amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rigid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rigorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"rigourousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"risk-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"riskiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"riskless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rockbound\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rocklike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rogue elephant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rough-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"roughneck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruffian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruining\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ruinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rumbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"runner-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sabotage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sacrilegiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saddle-sore\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"samsara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sassy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"satanic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saturnine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"savage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saw-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scapegrace\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scathing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scorner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scratching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"screw-loose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"screwy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"searing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"second-degree burn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"second best\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"secondary dysmenorrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"secondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"security blanket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-flagellation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"self-forgetful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"semidark\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"settling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"severely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"shambolic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shattered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sheltered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shibah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.102\"\n  },\n  \"shiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shivah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shocked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shoot-down\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shopsoiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"short-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"short-staffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"shrink back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sic\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"side effect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"sigmoid vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sigmoidoscopy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"silver lining\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"simmpleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"simpleton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sinfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sit by\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"skip-bomb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"skip over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"skreigh\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"slickly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"slubbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"slyboots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"smothering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"snappish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sneerer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sneezy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"snitch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"snoopiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sociopathic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soft-shelled turtle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somatosense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soot-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sooty-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sorrower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soul-destroying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"soured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sparseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sparsity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"speakeasy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"speciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spermicidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spondylitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sporadic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sprain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"spurner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"squab\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"squabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"squawk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"stagger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"standing order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"standoffish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"status epilepticus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"staunchness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stay fresh\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stereotyped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stereotypic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stereotypical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stickpin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stinging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stingy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"stinkiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stodginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stogie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stogy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stone-deaf\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"storm-beaten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"storm cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"strafer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"straits\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stratus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stratus cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stressful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"strong-armer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stroppy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stuck with\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stupidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"subbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subclass Cnidosporidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subjugated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsiding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"succuss\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suffocating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suffocative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"supercilious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"superfatted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superior court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstitious notion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"swayback\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"swaybacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sweep over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sweet vermouth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"swipe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"synovitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tactical warning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"take pains\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taken up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tattered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tatty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"teargas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"technophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tell off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"temerarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tenesmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tense up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"terra cotta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorist act\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thanatophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thankless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"the boot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"the devil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thermalgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"threnody\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"throw a fit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thuggee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thundercloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"to-do\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"token\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tokenish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tomboyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"too much\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tooth decay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torpedo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torpidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torturesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torturing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"torturous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"touch-and-go\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tough luck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"toxicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"traducement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trap block\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traumatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tremulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trial by ordeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"triskaidekaphobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"truant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"truculence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"truculency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"turkey drumstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"turkey leg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tussle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twilight\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"twilit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"twist around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uglify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ultra\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unaccredited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unaesthetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unapologetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unapparent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unappeasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unapprehensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unartistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unauthorized absence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unavailable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unawareness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbecoming\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbecomingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbigoted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbraced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbranded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unbridgeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unceremonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unchristian\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uncomely\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uncompensated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uncomprehending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unconstitutional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undeferential\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undependability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undependableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"under the weather\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underbred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underdevelopment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"underdrawers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underfed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underlip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undermanned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undernourished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underproduction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"underside\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"understaffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undersurface\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undeservedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undiscriminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undistinguished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undisturbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undramatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undutiful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"undutifulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uneager\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uneffective\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unemployed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unendowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unenlightened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"unenterprising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unenthusiastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unenthusiastically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unequal to\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unexcitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unexciting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unexplainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unfavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"unfavourable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"unfearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unfeminine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unfirm\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unflinching\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unforbearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unforgiving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ungracious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ungratifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unhazardous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unhearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unheated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unhelpful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unhumorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uniformness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unilluminated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unimposing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unintelligent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unintended\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unintimidated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uninventive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unjustifiably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlettered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlicenced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlicensed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlocated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unlovely\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unloving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unmalicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unmechanical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unmelodic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unmethodical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unmindful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"unmindfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unobligated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unobtainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unobtrusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unofficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unopposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unoriginality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"unpalatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unparliamentary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpersuasive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpicturesque\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unplayable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unplayful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unpolished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unprincipled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unprocurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unproductiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unprotectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unproved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unproven\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unreasoning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unredeemed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unrefined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"unregenerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.217\"\n  },\n  \"unreliability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unreliableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unrepaired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unrespectability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unruliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsalaried\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsanctioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsanitary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsatiated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsatisfiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsaved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unschooled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unscrupulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unscrupulousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unseemly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unselective\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsexy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unshapely\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unskillfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsnarled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unstableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsterilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsterilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unstimulating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unstylish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unsurmountable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"unsymmetric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untactful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untaught\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untechnical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untended\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unthankful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untidiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untraditional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untrusting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"untutored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unwarmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unwell\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unwillingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"unwomanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"upbraid\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"upsetting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uratemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"uricaciduria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"urodynia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum chamber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vaulting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vena pulmanalis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vena sigmoideus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"venomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"verruca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vertiginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"viciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"violated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"violative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"violet-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vituperative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vixenish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vociferation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wailful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wailing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wantonness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"war cloud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"warning of attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"warning signal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"waspish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"watch cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wavelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"waylay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wear thin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weather eye\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weathered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weatherworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weeds\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weepy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weirdie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"weirdy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"what for\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wheeze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whelm\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whiney\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whippersnapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"white-lipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"white trash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"whitey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"widow's weeds\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wilfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"willful neglect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"willfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wisdom tooth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wistfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"witchlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"woozy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"wretchedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xanthosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yellow bile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yellowish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yellowish brown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yobbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"yobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zinc deficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"a-ok\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a-okay\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a la mode\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a posteriori\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a priori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"aah\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abandoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"abatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abbess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abbot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abdicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abide by\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"ability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"abloom\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"about\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"above\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolute alcohol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absolved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absorbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absorbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"abundantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abuzz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accenting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acceptation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"accepted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"accessibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"acclivitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accommodate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.283\"\n  },\n  \"accommodation endorser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accomplished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"accumulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"accuracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"accustomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"acetify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"acid-forming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acidify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ack-ack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ack-ack gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acknowledgeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic device\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic phenomenon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic power\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acquainted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acquirable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acquit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"acquitted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acrobatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"act upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"actinomorphous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"active agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"activist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"actual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.137\"\n  },\n  \"actuated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"add-on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"addable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"addible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"additional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"addressable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adherent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adjunct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"adjunctive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adjusted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.072\"\n  },\n  \"adopted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adoxography\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adroitly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adscripted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adulatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adult\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"advance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.36\"\n  },\n  \"advanced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.241\"\n  },\n  \"advancement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"advertised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"advisability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adviser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"advisor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aerobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"aerophilic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aerophilous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affiance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affirmative action\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affirmativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affordable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aflutter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agglutinate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aggrandisement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aggrandizement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agilely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agree\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.222\"\n  },\n  \"agreed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ahead of the game\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aid\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aided\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"airborne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alacritous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aligned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"aligning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aliment\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alimony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aliquot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aliquot part\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.139\"\n  },\n  \"all\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-mains\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-or-none\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-or-nothing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-time\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allegro\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"allover\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allowable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"almond-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aloof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alpha privative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altar wine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"altruist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amazing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"ambidexterity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambidextrousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambitiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambrosial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"ambrosian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"ambulant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ameliorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"amenable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.157\"\n  },\n  \"amenities\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amethyst\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amphipod\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amphiprostylar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amphiprostyle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amphiprotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amphistylar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"amphoteric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ample\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"ampleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amply\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"amuse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"amusement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"anaerobiotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analeptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analogous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"analytical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"anastigmat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anastigmatic lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anchorite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"angwantibo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"animated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"animise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"animize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"announced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anointer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anomalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"answering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ant thrush\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antacid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antheral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anti-Semite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiaircraft\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiaircraft gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiblack\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anticipant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anticipative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antithetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antithetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antitoxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"any longer\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anymore\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apocarpous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apophatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apothegmatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"apparel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appareled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apparent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"appealing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"appetisingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appetizingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"applicability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"applied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appreciated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appreciative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"apprehended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appropriately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"arbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arcanum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"archimandrite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"architectural ornament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"architecturally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ardent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"arguable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"aristocratic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aristocratical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arithmetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armor-clad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armor-plated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"armour-clad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armour-plated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"aroused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.158\"\n  },\n  \"arrayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arresting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrive\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"artefact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artifact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.505\"\n  },\n  \"artistic creation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artistic production\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ascent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"ascertained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assertiveness training\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asset\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assimilable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assimilative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"assistance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"assisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"associative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"associatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asterisked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astir\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asunder\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asymptomatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asynchronous transfer mode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at close range\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at leisure\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataractic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataraxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atavistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"athletic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"atrip\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attached\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.213\"\n  },\n  \"attained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attention-getting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"attentiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"attest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.157\"\n  },\n  \"attired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attract\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.505\"\n  },\n  \"attracter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"attractive feature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attractively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attractiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"attractor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"attributable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"au naturel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auditory perception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"august\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"auspices\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autogenic therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autogenic training\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autogenics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autoloading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"automated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autonomous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"avowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"award\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"awareness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"away game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"awe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"awed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aweigh\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"awestricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"awestruck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacciferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"backing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"backslider\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"backstage\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"backward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.157\"\n  },\n  \"bactericidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balanced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balanced diet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bald-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"ball hawking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balletic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ballistic trajectory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bally\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bandaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bankroll\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bare-ass\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bare-assed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bargain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"bargaining chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"barricaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"base-forming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bashful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"battery-powered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"battle dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beamy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"bear-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bear in mind\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beardown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beatification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beatitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beau ideal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beautification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beautifully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beautify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"beauty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"beauty treatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bedder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bedding plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beef roast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beefy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"befittingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"befogged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beg off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beguiling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"behalf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"being\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"bel esprit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"belief\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"believable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"believably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"benefit concert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benign\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.439\"\n  },\n  \"benignancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benignity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"berried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"best-loved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"best-selling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"betimes\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"betroth\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bettering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"betterment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.451\"\n  },\n  \"beverage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bhakti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biannual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bib-and-tucker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bibulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"big-bellied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"big league\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bigger\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biggish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bigmouthed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bill of health\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"billet doux\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bimestrial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"bimonthly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biochemist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biologism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bioluminescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bipartisan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bipartizan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bird fancier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"birthing coach\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biweekly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"biyearly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blackball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blameless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blandish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bless\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.213\"\n  },\n  \"blessedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blockaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blood-and-guts\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blood-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bloody\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blooming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blown-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue-blooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"blue-pencil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue-violet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue ribbon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blueish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bluff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"bluish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-violet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"board game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boatmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"body\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bodybuilder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bombastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bombilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bombination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bon vivant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bonanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"bondable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"boon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boost\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.335\"\n  },\n  \"boozy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bound up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"bountied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boylike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brainy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braw\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brawny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bread line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breadline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breadwinner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breakaway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breastfeed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breathing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breeding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breeze through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breezy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"bridle path\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bridle road\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brief\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bright\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bright as a new penny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brightness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"brimful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brimfull\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brimming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bring home the bacon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"bring off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bring oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bringing up\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brisk\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"broad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.328\",\n    \"std\": \"0.16\"\n  },\n  \"broadness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brocaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"broken in\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brooding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"broody\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brotherly love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brownish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brumous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bubbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"bubbly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"buckle under\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buddy system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buffoonery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"built-in\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buirdly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bulky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bulldog wrench\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bump around\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bumpkinly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buoy up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.5\"\n  },\n  \"burgeon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burlesque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"burly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bus ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bushel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"businesslike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"butyraceous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buxom\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"buzzing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"by-election\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bye-election\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cackel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cadge\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cairned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calculated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calendered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"call on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caller\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"calligraphy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"callous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"calloused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camera care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camera tripod\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"campestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canary-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"candent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cannibalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canonised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canonized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cap off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.25\"\n  },\n  \"capacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"car care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"care for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"cared-for\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"careful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.224\"\n  },\n  \"carminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carmine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carnation\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caroche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"caroling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carpetbag\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"carpeted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carrying into action\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cash in on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cashable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cashed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cast on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"castile soap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataphatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataphatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catechesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catechetical instruction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"categorematic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caucus\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caught up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cautionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"caw\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celebration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"central\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"centralise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centralize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrosymmetric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ceramics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerebration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonial dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonial occasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"certain\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.152\"\n  },\n  \"certainly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"certificate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"certificate of incorporation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"certification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"ch'i\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"challenging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"changed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.25\"\n  },\n  \"changeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"changing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"character witness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"charisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"charity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.185\"\n  },\n  \"chartreuse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cheeselike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cherish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cherry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cherry-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chichi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"child's game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"child care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"childbearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"childcare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"childly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chiliastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chin up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"china\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"chinaware\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chirography\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chock-full\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chockablock\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chockful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chocolate-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"choke-full\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chronic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"chuck-full\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chukker-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"church\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cinnabar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"circumferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"circumstantial evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"circumstantiate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cissy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citizen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"civil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.215\"\n  },\n  \"claimant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clandestine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clarifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clarity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"class-conscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"classic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"classical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"classical ballet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"classical music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"classy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"clean\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.347\",\n    \"std\": \"0.165\"\n  },\n  \"clean-cut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"clean-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cleanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cleansing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"clear-cut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"clear-sighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"clear and present danger\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clear sailing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clearcutness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clearness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"clement\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"climbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"clink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clinquant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clip-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cloak-and-dagger\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"close-fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"close-knit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"close-set\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"close set\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"close up\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"closely knit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cloud-covered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clowning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"cloying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cloze\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clubable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clubbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clubbish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cluck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clucking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clue in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clustered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"co-beneficiary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coagulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coalescing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cochon de lait\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cockamamie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cockamamy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cocktail dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coercive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coexistent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coexisting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coextensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cognitively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cognizance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"cognoscente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coherence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"coherency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"coherent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.144\"\n  },\n  \"coincident\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"cold-temperate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collapsable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collapsible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"colossal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colourful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"columned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comburant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combustive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"come-at-able\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"come-on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"comedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"comforts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commemorating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commemoration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commemorative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.153\"\n  },\n  \"commensurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commissioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"common good\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"common or garden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commonweal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"communicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"community of interests\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"community service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"commutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"commutative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"companionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"compartmental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compartmentalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compartmentalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compatibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"compendious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compensate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.123\"\n  },\n  \"complement\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"complete\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.224\"\n  },\n  \"completed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"completeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"completion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"comply\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"composed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprehended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprehensibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"comprehensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"compressible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"compulsory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"computer readable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concept\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concert grand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concert piano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concertise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concertize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concordant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"conferment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conferral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confidential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"confiding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"configured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"confirm\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.19\"\n  },\n  \"confirmable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confirming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"confluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conform to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"conforming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conformist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congratulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"congruent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"conjectural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjoined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjoint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjugal right\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"connectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"connective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"connivance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"connive at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"connoisseur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conquerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"conscientious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conscript\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consequentially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conservatoire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consistent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.329\"\n  },\n  \"consolidated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"conspicuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"constancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"constant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.375\"\n  },\n  \"constituent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constituted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constitutional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.072\"\n  },\n  \"constitutive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constrictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"construct\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"construction paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consulting service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consummated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contagious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"contemplative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conterminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"contiguous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"continent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"continuous receiver watch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contradistinguish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contrary to fact\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"controlling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"controversial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"controversialist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conveniences\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"conventionalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"coolheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cooperative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"coordination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.359\"\n  },\n  \"cope with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copy editing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"copyrighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cordate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cordiform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cordon bleu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"coreferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corn-fed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corner kick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cornucopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"corporal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"corporate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.217\"\n  },\n  \"corporeal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"correspondent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corroborant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corroborate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"cosmetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coterminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cotton\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"countervail\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"coup d'oeil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coupled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"court\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"courtesy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"couth\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coveted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cozy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.577\"\n  },\n  \"craft\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cram full\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crank\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crashing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creak\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creamy-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creature comforts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credential\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credentialled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credentials\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"credit crunch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creditably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crepitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crisp\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.188\"\n  },\n  \"criterial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criterional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crocketed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crosshairs\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cruise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crystal clear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"cuddlesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuddly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cultivated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"cultivation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.401\"\n  },\n  \"culturally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cumulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuneate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cupboard love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curb service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curiosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"curvy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"cushioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cushiony\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"custodial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"customary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"customs union\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cut-and-dried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cut-and-dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cutely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cytochrome c\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daedal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dainty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"dandified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dandyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dark-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dark-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daughterly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"daylight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"dazzling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"de-ice\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de jure\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de luxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deadbeat dad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dearie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dearly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.25\"\n  },\n  \"deary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"decently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"decentralising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decentralizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deciding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"declamatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"declared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"declassified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"declassify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decompress\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"decompressing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decompression\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"decorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"decriminalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decriminalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deeds\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deep-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deep in thought\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"definitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"defog\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defrost\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"degenerate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dehumanisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dehumanised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dehumanization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dehumanized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deign\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"delectation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deliberative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delight\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.315\"\n  },\n  \"delineate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delineated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delivery truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delivery van\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delouse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deltoid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demagog\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demagogue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demist\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonstrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"demonstrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"demonstrativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demure\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demythologised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demythologized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deniable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"denominationally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dental hygienist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depicted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depletable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depreciating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deprived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descendant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"descendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desirability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"desirableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"destalinise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destalinize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"determinant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.163\"\n  },\n  \"determining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deterministic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detick\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"developed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"deviant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deviate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devitalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devitalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devotional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devout\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"diabatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diachronic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diagonalizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dialysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dicynodont\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"didactics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"differentiated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dignified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dimensioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diminishing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dining-room attendant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diplomatically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"direct trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"directed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"directional microphone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disadvantaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discerning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.125\"\n  },\n  \"disciplined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"disclosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discovered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discreet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"discrete\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discriminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"discriminatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.237\"\n  },\n  \"discursive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"disembody\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disenchanted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disengage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"disinfectant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disjunctive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dismissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disputant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissociative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissolvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.168\"\n  },\n  \"distensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distich\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distinct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.163\"\n  },\n  \"distinguishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distraint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divergent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"diverging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divorced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"do well\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doddering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doddery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dog-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doglike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doll up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"domesticated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"done\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"door-to-door\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"double crochet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double standard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double stitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"downmarket\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"downright\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"downsizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dramatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.213\"\n  },\n  \"drenched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drenched in\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.157\"\n  },\n  \"drinking water\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dripless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"driving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"drollery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"dromaeosaur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"drunken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dry-cleaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dry-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ducky\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"due\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duplicatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"durable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"dustlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dutiful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dyad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dynamic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dynamical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eagle-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"earned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"earthlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"easy going\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eater\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"eccrine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"echo chamber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"echoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eclat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"economic aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"economic growth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ecumenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"educate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"educational activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"educational institution\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"educational program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edutainment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"effaceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"effective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.184\"\n  },\n  \"effectively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"effectiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"effectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"effeminate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"efficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"efficiency engineer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"efficiency expert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"efficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"efficiently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"efflorescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"effulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egg-producing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ego ideal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eightpenny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"either\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elaborate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"elected official\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"electrifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elegance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"elegant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"elegantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"elevate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.402\"\n  },\n  \"elevated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.331\"\n  },\n  \"elitist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elongated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"elucidative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emancipated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emasculate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emasculated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embellish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"embodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embossed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emergent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"eminent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"emmetropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emotional person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empathetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emphasizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emphatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"employable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"employment interview\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empower\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"empty-bellied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empyreal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"empyrean\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"enamored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enchanted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enclothe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endermatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endermic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endogamous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"endogamy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endorse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.277\"\n  },\n  \"endorser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"endowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endue\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"energetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"energy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.262\"\n  },\n  \"enfeoff\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enforceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engorged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engrossed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"enhance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"enhancer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enjoyableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enjoyment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"enlightened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"enlightening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"enliven\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"ennoble\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ennobling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"enormous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enrich\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"ensky\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entertainment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enticement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"entitle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"entitled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrancement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enviousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"epicure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epizootic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"equating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equidistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equip\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"equiprobable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equipt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erectile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"eremitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"eremitical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"eremitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"established\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.217\"\n  },\n  \"estrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ethical code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ethicism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ethnical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"etiquette\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eucaryotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eukaryotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"euphonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"euphonical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eupneic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eupnoeic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"euthenics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"even-textured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evenly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"ever-changing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evidence\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"evidentiary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"evocative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ex officio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ex post facto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exactitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exactness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exalting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exaugural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exceeding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excellence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"exceptional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.439\"\n  },\n  \"exceptionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exchangeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"excited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.157\"\n  },\n  \"excitingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exculpated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excursionist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excursive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exemplary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.289\"\n  },\n  \"exemplifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exhaustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"exist\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"existence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"existent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"existing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"exonerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expansile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expediency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expeditiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"experience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"experiential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"expertise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expertly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expertness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"explanatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exploit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exploited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"expositive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expository\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"express trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"exquisite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.188\"\n  },\n  \"extendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extensile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extension course\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"extra point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extracapsular surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extracurricular activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extravert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extraverted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extravertive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extrovert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extroverted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.382\"\n  },\n  \"extrovertive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eye-beaming\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eye-popping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eye candy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fabulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.361\"\n  },\n  \"facetiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"facial tissue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"facile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"facilitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.577\"\n  },\n  \"fact-finding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"failing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fair\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.288\",\n    \"std\": \"0.265\"\n  },\n  \"fair-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fair-mindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fair weather\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fairness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"faithfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faithfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"falsifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"familiar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.063\"\n  },\n  \"familiarised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"familiarized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fancier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"farandole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faraway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"farce comedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"farther\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"fashionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"fashionably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fashioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fast-breaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fast-paced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fast buck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fathomable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"fatigue duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fattened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faultless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"favored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"favorite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"favourite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"feat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feather one's nest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feature\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"feature of speech\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"federate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"federated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fee tail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"felicitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"felicitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"felicitously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fertility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.375\"\n  },\n  \"fetter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fettered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fictile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"fiducial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.289\"\n  },\n  \"field of operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"financial aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"financial audit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fine-textured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"finesse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"finish out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"first-string\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"first-year\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"first aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"first water\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fish louse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fissile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"fit out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fitly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.413\"\n  },\n  \"fitted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fitted out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"fittingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flag waving\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flammable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flatter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flatus-relieving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flawless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fleet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fleeting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fleshed out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flexibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"flexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.358\"\n  },\n  \"flexibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"flipper-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"floodlighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"floodlit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"fluid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.068\"\n  },\n  \"flush\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"flushed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"fly the coop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flying colors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flying colours\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flying start\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"focused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"focussed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"foodie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fool\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"football hero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"footfall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"footloose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foppish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"for certain\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"for sale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forbearance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"force-out\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"force out\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"force play\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"foredate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foremost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.289\"\n  },\n  \"forensic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"forethought\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"forethoughtful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.292\"\n  },\n  \"formalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"formalities\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"formidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"forthcoming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"forthright\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fortified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"fortnightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forward motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fosterage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"fostering\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"four-pronged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fourhanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fourpenny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foursquare\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frank\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"franklin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-associate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free-spoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free agency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free people\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free will\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freeborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freedom of the press\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freehanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"freeload\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freemail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freshen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"freshman\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"friendless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fringe benefit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frothy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"fruitful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fucking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fugitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulfilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulgurant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulgurous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.391\",\n    \"std\": \"0.115\"\n  },\n  \"full-clad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full-face\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full-fledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"full-grown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full-length\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"full-scale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full-term\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full-time\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"full house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fullness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"fully fledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"fully grown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fun run\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"functional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.215\"\n  },\n  \"functionality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"functionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"functioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fundamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"fungibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funrun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fur-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furbish up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furnish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"gag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"gain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.298\"\n  },\n  \"gallantry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.402\"\n  },\n  \"galore\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"garb\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gardant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garmented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gas system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastronome\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gelded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genealogist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"general knowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"general verdict\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"generative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"generosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"generous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"generousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.545\"\n  },\n  \"genius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.326\"\n  },\n  \"genius loci\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"gentlemen's agreement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Antheraea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Gobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"germicidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"get\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"get along\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.52\"\n  },\n  \"get the hang\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"giant kangaroo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gift\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"gift-wrap\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gigot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gilded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.125\"\n  },\n  \"gilt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gimbaled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"girlish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"give care\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"give forth\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"give suck\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"give the eye\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"give the once over\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glam up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamorisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamorization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamourisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamourization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamourous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glassed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glib-tongued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glibness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glimmery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glistening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glorification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"glorified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glorify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.217\"\n  },\n  \"glory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"gluey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glutinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glutted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gnostic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"go-to-meeting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"go far\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"go through the motions\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"go to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gobble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gobsmacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"godlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"godly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"goggle-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gold\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gold rush\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"gold standard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"golden potto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gong\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"good fortune\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"good luck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"good word\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gooey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goofy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gourmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grace\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"gracefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"gracile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gracility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grandmaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grandness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.339\"\n  },\n  \"grassroots\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"grazing land\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"great\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"great bellied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"great grey kangaroo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greenish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gregarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"grin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grinning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"groomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grownup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gruntle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guardant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guardian angel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guardian spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guiding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"guiltless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gum-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gumption\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"gung ho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"habilimented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"habitual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"had best\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-hardy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-holiday\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-hourly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-yearly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hand-crafted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handicapped person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handicraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"handiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"handmade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hands-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handsewn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"handstamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handstitched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hanging wall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hanky panky\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hapax legomenon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haphazard\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"hardcore\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"harlequinade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harmonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.298\"\n  },\n  \"harmonics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harmony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.311\"\n  },\n  \"harpoon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hastate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haute cuisine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"have a ball\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"have a good time\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head and shoulders above\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head for the hills\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head trip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.161\"\n  },\n  \"heads-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heady\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.375\"\n  },\n  \"heal\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.26\"\n  },\n  \"healed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"health\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"heart-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"heaven\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heavy-duty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heavy-limbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hebdomadal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hebdomadary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hedonism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"heedful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"heedfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hefty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"heightening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"help oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hep\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hermetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heroic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.259\"\n  },\n  \"het\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heterosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heyday\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiding place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-energy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"high-flown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"high-octane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"high-potential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-power\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-ranking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-speed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-velocity\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-voltage\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"high-yield\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high fidelity sound system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high season\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higher-ranking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"highly-developed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hightail it\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hip\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hip to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hit-or-miss\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hobbyist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hold dear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holidaymaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holier-than-thou\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hollow-horned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holometabolic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holometabolous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home-baked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home-style\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home away from home\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home from home\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home invasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homemade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homeward\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homeward-bound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hominine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homocercal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogenous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.157\"\n  },\n  \"honestly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"honey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honey plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honorarium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hoodwink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"hopped-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.382\"\n  },\n  \"horse-trade\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horsemanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hosanna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hotshot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hourly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"house-proud\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"house-trained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"housebroken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"housecraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hulking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hulky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"human-centered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"human-centred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanistic discipline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanities\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humbled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humdinger\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"humongous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"husbandly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hush-hush\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hushed-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hybrid vigor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydrolyzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hygrophytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hymn\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"hyperactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperpigmentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperthyroidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypertonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hypertonicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"hypnotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"hypothetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypothetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ideal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.451\"\n  },\n  \"idealistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"ideally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"idiot savant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"if not\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignitible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ilk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-conceived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"illegal possession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"illustrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"imitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"immanent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"immunocompetence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impartial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"impartiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impeccable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperturbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"importance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"important-looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impressment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprimatur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"improve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"improved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.289\"\n  },\n  \"in\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"in agreement\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in demand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in effect\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in essence\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in good order\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in height\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in league\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in love\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in principle\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in sight\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in stock\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in store\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in style\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in the altogether\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in the buff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in the public eye\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in the raw\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in theory\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in time\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"in vogue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inbuilt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incandescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"incarnate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"incline bench press\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inclusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incommunicative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incorporate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incorrupt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"incredible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incremental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inculpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incumbent on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"independence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"independency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"independent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"indicatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indirect evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"individual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"individualist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"individualistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"indivisible by\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indorse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.277\"\n  },\n  \"indorser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"indrawn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indue\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industrial-strength\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industrialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industrialist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industrialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infatuated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflammable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflationary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"influence\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"informatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infrasonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ingest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ingratiatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"inhibitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"injectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmarriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"innings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquiring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insinuating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inspirational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instantaneousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instinct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"institutionalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"institutionalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instrumental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"insured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intact\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"integrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"integrity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"intellection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intensive care unit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intentional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"interactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"interchangeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interchangeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"interchangeableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interchurch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interdenominational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.545\"\n  },\n  \"interest-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interest expense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"interesting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interfaith\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intermediate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intermolecular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interoperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interpersonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interpretative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interpretive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intersexual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"intoxicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"intragroup\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intriguing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"intrinsical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"introductory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"invaluableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"investigative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"investigatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invigorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.188\"\n  },\n  \"invigoration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"inward-developing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inward-moving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ionic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrepressibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreproachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"isolated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.2\"\n  },\n  \"isotropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jade-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"jailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jangle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"japery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaunt\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"jet set\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jiggery-pokery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jingling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jingly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jittering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"job interview\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jocosely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"joke\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"joyride\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jubilee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judgement in rem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judgment in rem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.228\"\n  },\n  \"judiciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judiciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"juicy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.313\"\n  },\n  \"junk food\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junketeer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junketing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"just the ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justifiedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"kabbalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keen-sighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"kempt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"killjoy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kinaesthesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kinesthesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kinesthetics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"king-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"king-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kinglike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kingly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kiwi-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knight's service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"knockdown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knocking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"know-how\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knowingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"knowledge base\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knowledge domain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"known\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knuckle under\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labor coach\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labor of love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labour of love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laconic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lamb roast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lamplit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lap-jointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lap of luxury\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"large\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.173\"\n  },\n  \"large-mouthed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"large-scale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"large order\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"larger\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"largish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lascivious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laser-guided bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"last respects\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"latest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laudability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laudableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lavender\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lavish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"lawful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.072\"\n  },\n  \"lawfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.125\"\n  },\n  \"leave office\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leave out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"left-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"left-hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"left-hander\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"lefty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"leg of lamb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legal fee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legal guardian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legitimate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"legitimately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"legitimatise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legitimatize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legitimise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legitimize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leglike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leisure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leisure time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leisured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leisurely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"lengthen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"lengthened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lengthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"lenify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lens cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lens cover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lenten\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ley\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.125\"\n  },\n  \"liberal arts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"liberalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"liberated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"libertarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"libidinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"licit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"liege lord\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"life-sustaining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"light-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lighten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.366\"\n  },\n  \"like\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"like-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"like an expert\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"likely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.177\"\n  },\n  \"lilac\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lilac-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lilting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"limber\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"limiting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"limnologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"line-drive double\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"line-drive triple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"line double\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"line of business\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"line triple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lionhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liquid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.112\"\n  },\n  \"liquidity crisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lissom\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lissome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"listening watch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"literacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"literal interpretation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"literate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"lithe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lithe-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lithesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liturgics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liturgiology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"live\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.295\",\n    \"std\": \"0.227\"\n  },\n  \"live it up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liveborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"livelong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lively\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.479\",\n    \"std\": \"0.105\"\n  },\n  \"loftiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"long\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.264\",\n    \"std\": \"0.125\"\n  },\n  \"long-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long-handled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long-lasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long-life\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long-lived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long-range\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"long-snouted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"long suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.53\"\n  },\n  \"longish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"looking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loosely knit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loosen up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.256\"\n  },\n  \"lope\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loud-voiced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"love letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loverlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loverly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loving-kindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low-budget\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low-cost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low-priced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low comedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lubricious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"lucid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.125\"\n  },\n  \"luculent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ludicrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"luscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"lush\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"lushness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lustily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lustiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"luxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"luxuriance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"luxuriant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.144\"\n  },\n  \"machine-controlled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"machine-driven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"machine readable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.382\"\n  },\n  \"magenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maggoty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magnanimous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"magnetised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magnetized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maiden voyage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maidenlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maidenly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"main\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"maintainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"major league\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"majors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"make clean\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"make grow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"make vibrant sounds\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"makeover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"man-about-town\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"man-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"man of action\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"man of deeds\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manageability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manageableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mandatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"manfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manicure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manifest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manumit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"many-sided\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.402\"\n  },\n  \"marked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"market research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marketable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"marketing research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"married\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"marveller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marvellous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.361\"\n  },\n  \"marvelous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.361\"\n  },\n  \"masochistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"massive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.25\"\n  },\n  \"master race\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masterfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masterstroke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"maternalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"mathematically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matronly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matter-of-course\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mature\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.143\"\n  },\n  \"matureness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mauve\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maven\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mavin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maximation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maximisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maximise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"maximize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"measurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"measure up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"measured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.27\"\n  },\n  \"mechanic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mediated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medical aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medical care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medicine\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meditative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meet up with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meeting place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megahit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megascopic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meliorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"melioration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.25\"\n  },\n  \"mellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.112\"\n  },\n  \"mellowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"melodic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"melodiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melodramatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"memorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"memorialisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"memorialization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mendicant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mensch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mensh\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mental quickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mercerise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mercerize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merchantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merciful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"merged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meridian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"merit badge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meritocracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mesomorphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metallic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metalworking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"methodical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"metrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"miaou\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miaow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miaul\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"microphoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"middle-of-the-road\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"middling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"midweekly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mighty\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"milch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mild\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"mildness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"milled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"millenarian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mimetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mimic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mind-blowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"mindfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miraculous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"mismarry\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mixology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mobile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.271\"\n  },\n  \"mock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"modal logic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"modeled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moderately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"moderateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"moderationism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"modestness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"modesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"modifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moldable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mollification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"momentaneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"momentary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"momentous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monarchal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"monarchical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"moneyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"moneygrubber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moneymaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"monied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monitrice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monosemous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monthly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mooch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moon-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moonlit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moony\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"moral force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moral sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"moralisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"moralise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"moralism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"moralization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"moralize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"mortice\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"most-favored-nation\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"most valuable player\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mother superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motherlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motherly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motivating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motivator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motortruck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mountaineer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mounted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"mouse-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mouselike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mouth-watering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"movable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"mown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"much\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mucilaginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mudra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multiform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multipotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mummy-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muscle-builder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muscle builder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muscle sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musclebuilder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.177\"\n  },\n  \"musicologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"myrmecophilous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mystifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naked as a jaybird\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"narrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"natural selection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naughty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"nay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.27\"\n  },\n  \"nectarous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"needed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"needful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nem con\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nemine contradicente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoclassic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoclassical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoliberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nesting place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nestled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"net\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"net income\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"net profit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nett\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurotic depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neutered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"new-made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"new-mown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"new-sprung\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"newborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"newfangled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"niceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.331\"\n  },\n  \"night life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nightlife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nightly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nimbly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ninepenny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no-hit game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.239\"\n  },\n  \"noctilucent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noiseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonce word\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noncomprehensively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonesuch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonjudgmental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonliterate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonpartisanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonprogressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonpurulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonresistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nonsectarian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsegmental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonstick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsubjective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsuch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsynthetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nontoxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nonviolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"normal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.125\"\n  },\n  \"normalcy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"not guilty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nude\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nudeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nudity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"numeracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nunnery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nursing care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutrify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutritionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutritiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutritiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oarsmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obedience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"obediently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"object-oriented programing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"object-oriented programming\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"objective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"oblanceolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obligational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oblique-angled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"observance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.177\"\n  },\n  \"observant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"observed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obvious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"occasion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"occidentalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"occidentalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"occurrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocher\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ochre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odds-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oecumenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"off the beaten track\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"offertory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"officiant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"okeh\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"okey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"old-maidish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"old-womanish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"older\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.382\"\n  },\n  \"olive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"omnibus\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on-street\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on-the-scene\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on-the-spot\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on the fence\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on the fly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on the go\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"one-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"one-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"one-to-one\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopoeia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopoeical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onward motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ooh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"openmouthed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operations research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"opportunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orangish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oratorical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ordered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"orderliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ordinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"organic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organizationally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"organized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"originality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"orotund\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"orthodox\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"out-and-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outcast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outfit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outfitted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"outlined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outrun\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outspoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"outstandingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"outward-developing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outward-moving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oval-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"over-the-hill\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overachievement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overarm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overawed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overbid\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"overcareful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overcast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overclothe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overestimate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"overexcited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overexploitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overfond\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overhanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overjoy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overladen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overlarge\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overloaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overmodest\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overnice\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overproud\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overrefined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oversensitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overserious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oversubscribed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overuse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overutilisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overutilization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overwhelming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"ox-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oxidative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oxidizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"packaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"padded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"painstaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palatability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"palatableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"palatial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"palimony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palliate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"panegyrist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panel truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panoplied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panoply\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panoptical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paperback\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paperbacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paradise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paragon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pardonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pareve\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"partake\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"partial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"participating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"party pooper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parve\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pass completion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pass with flying colors\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"passably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"passionateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"passive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.289\"\n  },\n  \"pastureland\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"paternalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paternalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patiently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patrician\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"pay dirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"peachy-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peachy-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peak\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peak season\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pealing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pearly razorfish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peeled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pellucid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pen-friend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pen pal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pencil cedar tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pending\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penetrating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"penetrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"penmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penny-wise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pent-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pentecostalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perambulating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perceivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"perceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"perfection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"perigee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"periodical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peripateticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"permission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"permit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.315\"\n  },\n  \"pernickety\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personal appeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personal magnetism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personal manner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personal pronoun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"perspicuity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persuade\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persuasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pert\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pertinence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pertinency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pervert\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"pervious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phagocytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pharisaic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pharisaical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phase II\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phase III\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phase III clinical trial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phase II clinical trial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phenomenon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"philanthropist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"philatelic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"philatelical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"philhellene\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"philhellenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"philhellenism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phlegmy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phosphorescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"photo op\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"photo opportunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phylogenetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"physical contact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"physically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"physiologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pillared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pinioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pipe down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piping guan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placement center\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placement office\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plain sailing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plainspoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"plausibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plausibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"playboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"playfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.331\"\n  },\n  \"pleasance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pleasant-smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"please\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.315\"\n  },\n  \"pleasingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleasure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.137\"\n  },\n  \"pleasure-pain principle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleasure-unpleasure principle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleasure principle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleasure trip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.331\"\n  },\n  \"plight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"plumbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plumed scorpionfish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plummet\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pocket-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pocket-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pocket knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pocketknife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"point after\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"point after touchdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"pole-handled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"politesse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ponderable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pondering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pop music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"popeyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"popular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.277\"\n  },\n  \"popularisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"popularization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"porticoed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"portion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"portrayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posh\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"positivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"positivist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"possible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"post-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postage meter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postlude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postpaid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pot plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.102\"\n  },\n  \"potentiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"potentially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"power-driven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"power trip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"practical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.063\"\n  },\n  \"pragmatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pragmatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"prairie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"praiseworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prank\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pre-eminently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precedented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precedential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precision rifle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preconcerted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predigested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predisposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predominant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"preeminence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preeminent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preeminently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prefab\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pregnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.315\"\n  },\n  \"prejudiced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"premeditated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prepackaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prepacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prepaid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prerequisite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pressing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prestige\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prestigiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presumable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretty\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretty up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prevail\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.143\"\n  },\n  \"price index\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"price level\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pricelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pride oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"priestlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"prime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.285\"\n  },\n  \"primrose path\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"printable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prioress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prisonlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pristine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"privately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"privilege\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"probable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"probate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"probate will\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"probity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"processional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proclaimed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"procreative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"product research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profit-maximising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profit-maximizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"profits\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"profound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.129\"\n  },\n  \"profusely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"progress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"progressive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"projectile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prolonged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promised land\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promote\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.428\"\n  },\n  \"proneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"pronounceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"properly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"propitiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"proportionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"prosodion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prostyle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"protracted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"provable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"providential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.26\"\n  },\n  \"prude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psalm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pseudoprostyle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"psychical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"psychotherapeutic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"public\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"public-relations campaign\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"public discussion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"public knowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"public relations person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"publicised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"publicized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pubococcygeus exercises\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pug-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pug-nose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pug-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulchritude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punctual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pure\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.228\"\n  },\n  \"puritan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"purposive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"purulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pushover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pussy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puzzler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pyrolytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"qabalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"qi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"qualified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.19\"\n  },\n  \"qualify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.215\"\n  },\n  \"qualifying\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"quality control\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queenlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queenly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quick\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quick-change\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quick-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quick-wittedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quick buck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quiesce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quiet down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quotability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rabble-rouser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radial keratotomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"radially symmetrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"radiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raffish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"railroad ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raiment\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rainbow lorikeet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rainbow runner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rakish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"rangeland\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rangy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"ranking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rataplan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ratification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ratify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rationalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rationality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"rationalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ravenous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"raw beauty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raw material\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"razor-sharp\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"reaffirmation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"realised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"realizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"realized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reasonableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.105\"\n  },\n  \"reassert\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reassertion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reassurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"received\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"reciprocative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reciprocatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recognisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recognised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recognized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recommend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"reconvene\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recording system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recreation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"rectify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.431\"\n  },\n  \"recurvate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recurved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red-carpet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red-hot\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.324\"\n  },\n  \"red-letter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red-rimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red carpet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reddish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"redefine\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"redemptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"redoubtable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"redress\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reechoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"referendum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refine\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.376\"\n  },\n  \"refined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.163\"\n  },\n  \"refit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reflecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reform-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reformist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refresh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.204\"\n  },\n  \"refreshfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refreshingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regale\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regenerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"registration fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"regularise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"regularize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"regulation time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regulatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.217\"\n  },\n  \"reharmonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reharmonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reigning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"related\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"relatedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relaxing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relevant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reliably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"religious ceremony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"religious orientation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"religious ritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"religious school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"religious song\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relocated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rely\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rely on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rely upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remarkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"remedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"remindful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reminiscent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"removable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"removed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"renascent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rendezvous\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renewed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renovate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.433\"\n  },\n  \"renown\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repair\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.389\"\n  },\n  \"repartee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repetitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"replaceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reposeful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"represented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repressing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reproductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reputably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requested\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"required\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"reserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"resettled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resilient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"resinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resolutely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"resolvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"resolved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"resonant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"resonating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resourceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respectably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"respecter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respectfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respects\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resplendence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resplendency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respondent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"responsible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"restful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"restrictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"resurgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resuscitated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retentive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"reticent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"retractile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revamp\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"revealing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"reverberating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reverberative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reverence\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"reverentially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reverently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.072\"\n  },\n  \"reversionist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reverting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revival meeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revocable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revokable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reward\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"rhythmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhythmical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rich\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.385\",\n    \"std\": \"0.104\"\n  },\n  \"ride the bench\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rife\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"right-down\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right-hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.315\"\n  },\n  \"right to liberty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"right to the pursuit of happiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rightly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rightness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.102\"\n  },\n  \"ring out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"risible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.102\"\n  },\n  \"risque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritual dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritual dancing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rivalrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"road game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roast beef\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roast lamb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roast pork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roast veal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"robed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rock-steady\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roomy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rope up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rose-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.707\"\n  },\n  \"rose-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rough-and-ready\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roughhewn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"round-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"round-fruited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"round off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.473\"\n  },\n  \"rub-a-dub\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rubber-necking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rubberlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rubberstamp\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruby-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruddiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"runaway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"running start\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"runny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rushed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rust-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rustic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"saccharine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sacramental wine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"safeguard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"safeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"safety\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.461\"\n  },\n  \"safety device\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"safety net\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sage\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sage-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sail through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"salad green\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salad greens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sales agreement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanctification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanctify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"sanctimonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanitary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sapphire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"satiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"satisfier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saucer-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"savory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"savoury\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"saw\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sawtoothed-edged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scaffold\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scalelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scarlet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scarper\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"scented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.359\"\n  },\n  \"scheming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"schnorr\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"schoolboyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"schoolgirlish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"scrap metal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrappy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"screechy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrubbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scruples\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrupulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"scrupulousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"sculptured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"sculpturesque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sea-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seaborne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seagirt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seal of approval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seamless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"seamy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"searching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"seasonably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"seaworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"second\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"sedative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seduce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"seductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"see eye to eye\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seed corn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seed grain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"selective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"self-acting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-activating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-aware\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-balancing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-constituted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-contained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-established\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-fertilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-fertilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-indulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-loading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-locking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-moving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-pollinated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-regulating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-righteous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-service\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-winding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semantically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semestrial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semi-dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semiannual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semiautomatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semimonthly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seminude\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semiprivate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semipublic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semivowel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semiweekly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sense of movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sense of right and wrong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.368\"\n  },\n  \"sensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sensuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"separate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"separatist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serendipity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serious music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.382\"\n  },\n  \"service cutback\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"servile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"set in motion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"settlor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"sexual discrimination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexual pleasure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexual relationship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"shabby-genteel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shackled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shakeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sharing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-limbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sharp-sightedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sharpened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shatterproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sheeny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sheeplike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shelf bracket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shimmery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"shipshape\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shnorr\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shoo-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"short-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"short and sweet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"short list\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shortlist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"showjumping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"showmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"showplace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"showy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.177\"\n  },\n  \"shrewd\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"sibilant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sibilant consonant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"side-to-side\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"side by side\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sidesplitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sightseeing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sightseer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"significance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"significant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.188\"\n  },\n  \"significantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"significative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silklike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silver-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silver-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silvern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"silvery-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silvery-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"similar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.068\"\n  },\n  \"simple interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sincerity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.258\"\n  },\n  \"single-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sissified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sissy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sissyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sisterlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sisterly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sizeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"skill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"skin-deep\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skirl\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skittish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skulduggery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skullduggery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skydiving\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slangy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slashed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"sleek\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.0\"\n  },\n  \"slender-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slick up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"slicked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sliding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slim-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slipping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slithering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slumberous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"slumbrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"small-fruited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"small-scale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"small-winged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smart as a whip\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smart bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smarten up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"smash hit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smoke-filled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smoke-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smoky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"smooth-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smooth-textured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smooth-tongued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snappy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.153\"\n  },\n  \"sniper rifle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snoring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snowbound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snub-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snuff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snuff-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snug\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.298\"\n  },\n  \"snuggled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soaring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"socialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soft on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solder\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solemnisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solemnity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"solemnization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.342\",\n    \"std\": \"0.367\"\n  },\n  \"solidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.213\"\n  },\n  \"solved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"son\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sororal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sottish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sought after\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soulfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound judgement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound judgment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound perception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound pressure level\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound property\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soundable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"soundless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soundlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soundly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"soundproof\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"southpaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"space walk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"spatiotemporal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"spayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spearhead-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"special\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.25\"\n  },\n  \"specialisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"specialiser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"speciality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.361\"\n  },\n  \"specialization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"specializer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"specialty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.361\"\n  },\n  \"specified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"speedy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"sperm-filled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spiked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spin doctor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spinmeister\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spinnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"spiny-edged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.237\"\n  },\n  \"spiritualisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spiritualization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spiv\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"splinterless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"splinterproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spoilsport\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spooky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sporting life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sporty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"spotted antbird\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"springlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spruce up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"square\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.233\"\n  },\n  \"square-toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"squared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squeaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squeaky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squealing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squeamish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squeezable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squishy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stabilise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"stabilize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"stadium jumping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stagecraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stainless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stalinise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stalinize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stalwartness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"staminate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"standard\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.163\"\n  },\n  \"standby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"standpat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stark naked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"starred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"startled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"state-of-the-art\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"state-supported\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"statuesque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"steady-going\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steadying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steam-powered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steam coal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steamy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"steel-plated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steepish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stellate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"step down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"stereo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stereophonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stertor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stertorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stick about\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sticking point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stocked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stocked with\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stoppable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"storied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"stowaway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strabotomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"straight-from-the-shoulder\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"straight-grained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"straightforward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.228\"\n  },\n  \"strapping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strategically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"straw\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"streamlined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"street smart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"streetwise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stretch\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"strong-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"structurally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strum\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"studiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stuffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"stupendous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sturdy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"stylish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"subgross\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subservient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"subsonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substantial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.342\"\n  },\n  \"substantiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substantive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"substitutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"subtilise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subtractive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"success\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.161\"\n  },\n  \"succinct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"succinctly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"such\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suchlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suckling pig\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suffice\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sufficiently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sugar corn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suggestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.361\"\n  },\n  \"suitably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"sulfacetamide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sulfur-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sulphur-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sunless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sunlit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sunstruck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superfine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"superiority\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.157\"\n  },\n  \"supernal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"supersedure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supersession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superstar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supervised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"supported\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"supporting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"supporting tower\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suppositional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suppositious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supposititious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supranational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sure\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sure as shooting\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surface-active\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surgical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"surmisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surmountable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"survival of the fittest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suspected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suspensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"sustainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sustentacular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suture\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"svelte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"swank\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swanky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swear off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sweep through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sweeping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"sweet corn plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sweetheart\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swift\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swinging\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swingy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sylphlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"symmetrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"symmetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"symphonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"symptomless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"synecdochic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"synecdochical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"synonymous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"synoptical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tactfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take a bow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"take advantage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"take pride\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take stage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take the stage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take to the woods\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taken with\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"takeout\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"takeover target\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"talkative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"tall-grass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tall order\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tallgrass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"tannish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tantalising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"tantalizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"tarantelle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tardiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"target company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tasseled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tasselled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teach\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"tearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tearless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"techie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"technical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.271\"\n  },\n  \"technically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"technician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"technological\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"technophile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teeming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teemingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teetotal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tekki\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"telescopic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"telling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"tempered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"temporiser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temporizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenderised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenderized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tensionless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tessellated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"testate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"testimonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"tete-a-tete\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tethered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"the right way\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"theater ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"theatre ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thematically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"theory-based\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thick-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thickened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"thigh-slapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thin-bodied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"think the world of\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thoroughgoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thoroughly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"thought process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thoughtful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.143\"\n  },\n  \"thoughtfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.239\"\n  },\n  \"three-legged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"three-pronged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thronged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"through\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"throwaway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"throwback\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thrum\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"thumping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thundering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"thyrotoxicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tie-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"time signal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"timed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinkle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinkling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinkly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinseled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tinselly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tintinnabulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tip-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tip off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tippy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tireless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"titan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"titanic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toccata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toffee-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tog\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tolerant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.068\"\n  },\n  \"tolerantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"too-careful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"too large\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tool-and-die work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toothsome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"top out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"top round\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topicality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topographically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topspin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"torrential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"torrid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"total\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"totally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"touchy-feely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toughened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"tourer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"tourist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"towering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trabeate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trabeated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"trackable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tractability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tractableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tractile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tradecraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traditionalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tragicomical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"train ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"training college\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquillising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquillizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transcend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transcendence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transcendency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transcendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"transferable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"transferrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"transformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transgender\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transgendered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transistorised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transistorized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"translatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"transmissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"transmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transparence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"travelable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traversable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"travesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"treacly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"treasure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"treated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"treaty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"treeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trenchant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"triangulate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"triennial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.072\"\n  },\n  \"trimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tripping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"trisect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tropism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trot out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"true statement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trueness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.25\"\n  },\n  \"trussed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trustworthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"truth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.213\"\n  },\n  \"tube-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tufted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"tune\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"tune up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"tunefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turn a nice dime\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turn a nice dollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turn a nice penny\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turn tail\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tutelar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tutelary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"two-channel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"two-party\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"two-pronged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"type family\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"typewriter paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"typic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"typical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.26\"\n  },\n  \"typicality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"typing paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ultramodern\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ultrasonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unambiguous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unanimity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unanimous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"unanimously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unarmored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"unarmoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"unbendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unblemished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unbowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"unchurch\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncloudedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncommunicative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconfined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"unconstipated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncontaminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncrowded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underachieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underact\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underarm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undercharge\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undercover\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undereducated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"understandability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"understanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"understock\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underway\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undeterred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undeviating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"undiscouraged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undisguised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undismayed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undividable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unequaled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unequalled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unequivocal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfaltering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfeignedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unflagging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unflappable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unflawed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unflurried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unflustered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfree\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"unhuman\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unhurried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"unhurt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"unilateral contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uninjured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unique\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"uniquely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"united\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"universal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"univocal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unlock\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"unmarred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmistakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmitigated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmortgaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmoved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"unmutilated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unobjectionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"unobstructed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unostentatious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"unparallel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unparalleled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpartitioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unperturbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unproblematic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unprogressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpunished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpurified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unravel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"unreformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unregretful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unregretting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unremorseful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unscramble\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsectarian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsegmented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unselfconsciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unshadowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unshaken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsoiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unspotted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsubdued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsullied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untainted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untalkative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untarnished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unthreatening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untoughened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwearied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unweary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwiseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwonted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unworldly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"unwounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unzip\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.16\"\n  },\n  \"up-bow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"up-to-the-minute\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"up to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"upcurved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upfront\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upkeep\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"upmarket\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"upper-level\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upper hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upstair\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upstairs\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"urbanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"urgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"useable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"used to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"usufruct\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"usury\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"utilitarian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"utter\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"vacationer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vacationist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"valid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"validate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"validation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"validly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"valuableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vantage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"veal roast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vehement\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"vendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veneration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"venerator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"verification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"verisimilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"vermilion\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vermillion\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vernal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"versatile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.277\"\n  },\n  \"very\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"vested interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"viability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"vibrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"viewless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vindicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virgin\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"virginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"virile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"virtual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"virtuosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virtuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"visa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"viscid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viscoelastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.12\"\n  },\n  \"vitalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"vitalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"viva-voce\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivace\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivaciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.228\"\n  },\n  \"vividness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"vivification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"vocal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.295\"\n  },\n  \"vocalic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"voiced sound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volitional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volleyball game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volumed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volumetrically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"voluntary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"vowel sound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wage concession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waggery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"waking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"walkaway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"walking shoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"walloping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warfarin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warm-blooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warm the bench\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warranty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wash-and-wear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"washable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"water-cooled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ways and means\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wealthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"weaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"weapons-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"wed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wedded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"weekly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-dressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-groomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"well-intentioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-knit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-meaning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-meant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-ordered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-set\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-spoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-wisher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wellborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"westernise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"westernize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wet-nurse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wet blanket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whacking\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whip hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whirr\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"white-edged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whizz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whole\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wholeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"wholesale\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wholly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whopping\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.159\"\n  },\n  \"wide-awake\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"wide-cut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wilful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"willful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"willing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"willowy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"win\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"window-dress\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"winged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wink at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"winnings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"winsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wisdom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.359\"\n  },\n  \"with-it\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"withdrawn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"witticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wittiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"witting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"witty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wiz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"womanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wonderworking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wont to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wonted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"woo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"word-of-mouth\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"word of honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wordless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"work flow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"workflow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"working\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.209\"\n  },\n  \"worldly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"worldly-wise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worse\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"worthily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"would-be\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wrapped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.25\"\n  },\n  \"writ large\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"written agreement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xanthous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yarn-spinning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yearly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yeasty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.433\"\n  },\n  \"yellow-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yellowish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yielding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"yieldingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yoga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"yon\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yonder\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"young-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zaftig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zany\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"zesty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"zoftig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zygomorphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aalii\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abandon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.0\"\n  },\n  \"abasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatement of a nuisance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"abience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abnormalcy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abocclusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abominator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abruptio placentae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absinthe oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abstruseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"abuser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acanthocyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acanthosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acanthosis nigricans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accident\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"accidental injury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accusatorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accused\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acerbity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"acetonemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acetonuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acetose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acetous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achondroplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achondroplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achromatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achromia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achromic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"acidemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acne rosacea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acousticophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromegaly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromphalus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adamance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adamantine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"addle-head\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"addlehead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adenomyosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adesite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiposeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiposity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adult respiratory distress syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adulterate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adulterine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adumbration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"adumbrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adventure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adversity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"aerodontalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"affray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"afterlife\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agammaglobulinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aggress\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aggro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agonizingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"aguish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ailment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air alert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"air attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air cover\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air pocket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air raid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air sick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"air sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"airsick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"airsickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"akinesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"akinesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"al-Tawhid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alarmingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alder blight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"algidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"algophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alienator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-day sucker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"all-victorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alleviated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"almost\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altercate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altercation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alveolar ectasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amaze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"amblyopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambulance chaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambusher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amerce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"amercement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aminoaciduria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amnesic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amyloidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaesthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaesthetic agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analbuminemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anathemise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"anathemize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"ancient pine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"andesite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anesthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anesthetic agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"angriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"angry walk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"animadvert\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"animalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ankle bracelet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"annihilated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"annihilator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anomie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"anomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"anosmatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anosmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anosmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"antagonistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.205\"\n  },\n  \"anterior jugular vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anthracite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anthracite coal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anthracosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anthrax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"anticipatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiproton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anuretic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anuric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aortic plexus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aortic stenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aphotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apocalyptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"apoplexy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appalling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appeals court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"appellate court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apractic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apraxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aquaphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arch\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"arduousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"areflexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argle-bargle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argufy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argy-bargy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armband\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrested development\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrhythmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"arsine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria alveolaris inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria labialis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteriectasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteriectasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arthralgic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulatio temporomandibularis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artifice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asbestosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ash-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ash-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ashy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asperity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"assail\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"assassin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assault\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"assertiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"associate professor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"assumptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"asthenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astheny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astylar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asynclitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asystole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at first glance\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at first sight\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at peace\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"at variance\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataxy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 76\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"atrial septal defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atrocity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"atrophic arthritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"attack dog\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atypical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"audaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"audacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"auditory aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"authority figure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auto-da-fe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"automysophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autopsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autosomal dominant disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autosomal dominant disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autosomal recessive defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autosomal recessive disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aversion therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"awkwardness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.137\"\n  },\n  \"azoimide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacchanalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bad luck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"badly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.337\",\n    \"std\": \"0.105\"\n  },\n  \"baffle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bait\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"balefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ballet skirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baloney\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bandage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bang up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"bangle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banshee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banshie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banteng\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banzai attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banzai charge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbarism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbarity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"barf\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"base\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.134\"\n  },\n  \"basic assumption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bass\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bastardise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bastardize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bastille\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bathing trunks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"battered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"battle-scarred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Brunanburh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"battle plan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bayonet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"be sick\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beacon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bear's foot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beastly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"beat around the bush\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beauty spot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bed jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bedamn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bedazzle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beefsteak morel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beggarly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"behavior modification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"behavior therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"belabor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"belabour\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"belie\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"belly\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"belly out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"below the belt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bend over backwards\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benumbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"bereave\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beshrew\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bewilder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"bilgewater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bilgy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bill of Particulars\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bill of attainder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bipolar disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"birdbrain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"birth pangs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bitch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bitter\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"bitter principle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black apricot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black bee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black buck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black hat hacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black knot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black lung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black lung disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black mallee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black sally\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"black tongue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blackbuck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blackleg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bladder disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"blatancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bleak\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"blind\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"blister\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"bloat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blockhouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blood blister\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blood dyscrasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bloodcurdling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bloodguilt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blooper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"blue-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue goose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blue sky law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blunder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bluster\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"body pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bodyless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boloney\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bomb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"bombing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bombproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bone of contention\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boo-boo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boothose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bosh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bottle green\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bottom rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"botulinum toxin A\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bourgeoisie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bovine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bovine spongiform encephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bowdleriser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bowdlerizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brachydactylia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brachydactylic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brachydactylous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brachydactyly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braggadocio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain-teaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain damage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brain mushroom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brainless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bramble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"branched chain ketoaciduria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brandy nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brashness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"brassard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brawl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breach of contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"break-dance\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"break-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"break dance\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breaking and entering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breastpin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"breathlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bridle at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bridle up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"briefless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brilliant pebble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bristle at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bristle up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brittle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"broach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"broken-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"broken heart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brunch coat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brunette\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brush-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brutalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"brutality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"brutalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"bubble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"buffet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"bug out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bulge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"bulge out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bulimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"bulk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bulldog\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bumptious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bumptiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bungle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"bunion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burial chamber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"burned-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"burnt-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"business suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bust-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bust up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"butanoic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"butch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"butchery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"butterscotch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buttoned-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"butyric acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"by-and-by\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cacodaemonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cacodemonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cakehole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calabar bean\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calcitonin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"call down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"calumny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"calvary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camp\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"campy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"candelilla wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canker\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cannonade\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cantankerously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital of Vanuatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital offense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capric acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"car sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbamic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbonado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cardiac arrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac arrhythmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac glucoside\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac glycoside\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac insufficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac resuscitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiogenic shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiomegaly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiomyopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiopulmonary arrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"care-laden\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caribe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carpal tunnel syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carpet slipper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carrion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carsick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cart track\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cartilaginification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cartroad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carvedilol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caseous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cassiterite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"castigation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"castrate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casuist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catabatic wind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataclysm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"catalepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catastrophe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"catastrophically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catch cold\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catch it\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"causa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"causalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cefoperazone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celecoxib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celiac disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cementite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cense\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"censor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"censure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"central vein of suprarenal gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cephalalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerebral death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerebrovascular accident\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cervical smear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chafing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chamfer bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"change by reversal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.217\"\n  },\n  \"chapeau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chapped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"character assassination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chastening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cheap\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.188\"\n  },\n  \"cheapen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cheat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"cheeseparing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cheilosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chemical diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chemical irritant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chest pain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chiding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chilly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"chocolate-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chocolate-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cholesterosis cutis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chondrodystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"choppiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"choreic abasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chronic glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chronic pyelonephritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chronic wasting disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chuff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"churl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"churn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cinder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citrophilous mealybug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citrophilus mealybug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clamor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"clamp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"clapped out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clatter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clinker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"clobber\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"clueless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clumsy person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cluster headache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cluttered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coal-tar creosote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coal miner's lung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coarse\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"coast\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cockade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cockiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cocksucker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cocoa powder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cod oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collaborate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"collaborationist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collateral damage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"collect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"colourless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"columbiform bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combust\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.0\"\n  },\n  \"come to grips\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"commination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"common opossum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"complain\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"complaint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.163\"\n  },\n  \"complicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concuss\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"concussion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"condemnation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.088\"\n  },\n  \"confess\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"confront\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"confrontation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.0\"\n  },\n  \"confute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confuter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congenital afibrinogenemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congenital disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congestive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conglutinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjunctivitis arida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constatation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consternate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contrabass\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contractually\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contravention\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contretemps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"control freak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conundrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convulsion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"coolness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"copper nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cor anglais\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corny\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coronary failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coronary insufficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coroner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corporal punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corrupt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"corrupted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"corruptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"costalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"costiasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"count out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"counterattack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"counterattraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"counterbattery fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"countermine\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coup de grace\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"court of appeals\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coverall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"covered smut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coverlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crank letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crash barrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cravenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"craw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crazily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cremains\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cremation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminal court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criminal offence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criminal offense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criminalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"crisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"criticise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criticize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cross\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"crossness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"crosspatch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crowberry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crown jewels\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crucifixion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"crudeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"crumble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"crush out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crusty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cryaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cryesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"cryoanaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cryoanesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cryogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cryosurgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"currish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"cursed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cuss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"cussed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cutaneous anthrax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cutting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"cuttingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cutty stool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyber-terrorist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyberphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyclic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyclone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cyclooxygenase-2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyclothymia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyclothymic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyma recta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyprian\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cytolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cytolytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"damage control\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"damn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dance of death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dangerous undertaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dangerously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danse macabre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dare\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"dark-coated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dark-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"darkly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"darkness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.146\"\n  },\n  \"ddC\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ddI\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dead room\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dead weight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deadly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.051\"\n  },\n  \"deaf-aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deaf-muteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deaf-mutism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dearth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"death knell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"deathblow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deathly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debasement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"debauch\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debauchery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"debilitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"debris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decalcification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decanoic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"deceased\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deceit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"deceitful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"deceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"decline\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"decontaminate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decoy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"decrepit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"decrescendo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deep water\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deface\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defamation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"defect of speech\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defence force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defence mechanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defence reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defenceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"defense force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defense mechanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defense reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defiance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"deficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"defy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.217\"\n  },\n  \"degradation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"degrade\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"degustation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delinquency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"deliquium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delta hepatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deluge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"delusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"delusional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delusional disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demand\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.065\"\n  },\n  \"dementedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demijohn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demur\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"denigration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"denudate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"denuded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deplore\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"depolarisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depolarise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depolarization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depolarize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depreciate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"depressive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derision\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"dermatosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desertification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desiccate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"designer drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desperately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"desperation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"desquamation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destabilise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"destabilize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"destitute\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"destroy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.063\"\n  },\n  \"detritus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"devastate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"devastation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.168\"\n  },\n  \"developing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"developing country\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deviated nasal septum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deviated septum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devices\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devilry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"deviltry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"devious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"dextrocardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diabetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didanosine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dideoxycytosine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dideoxyinosine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"die-hard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difference of opinion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"differential diagnosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difficult\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"dika nut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dilatory plea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dim\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.105\"\n  },\n  \"dimwit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diphtheria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dirty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.323\",\n    \"std\": \"0.092\"\n  },\n  \"dirty dog\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dirtying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"disbelieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discharged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discoloration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"discolouration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"discommode\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discontent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discontented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discordance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"discordant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"discountenance\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"disdainfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disease of the skin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diseased person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disembarrass\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disembodied spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disentangle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.168\"\n  },\n  \"disfigure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disgracefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disharmonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dishonest\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"dishonesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"dishonorable discharge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disinfest\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disinformation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disloyal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"dismaying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dismissed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disobedient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"disorder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"disorderly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"disorganisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorganised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorganization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorganized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorient\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorientate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disorientation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"dispatch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.112\"\n  },\n  \"disprove\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disprover\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dispute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disrupt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"disruption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"disruptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissemble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"dissembler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disseminated lupus erythematosus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dissent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"dissentient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"dissidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissimulator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissociative disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dissonance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"distomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distrain\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"distributive shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disturber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disunion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divagation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diversionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"division Rhodophyta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"do a job on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dogfight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dolce far niente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"done for\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"donkey jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"donor card\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doofus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double-bass\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double-chinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double-crossing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"double dribble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doubt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"dowager's hump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dowdy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dowerless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"downtown\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dracunculiasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drag down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dreamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dreck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dress down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"dressing sack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dressing sacque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drop down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dropsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drub\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drug addict\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drug war\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drunken revelry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dry-gulching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dry mouth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dumb\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"durability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"durance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dysaphia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dyschezia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dyscrasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dyslectic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dysomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dysphagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dysphonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dyssynergia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dystopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"dystopian\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"eased\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eau de vie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eaves\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ectopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edible mussel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eerie\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"eeriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"egotist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elbow grease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elegiac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"elegise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elegize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embalm\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embitter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrocation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embroilment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emphysema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encephalopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enchanter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encroacher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endanger\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"endometriosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enduringness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enemy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.125\"\n  },\n  \"enervation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"enfeeblement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enforcer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enigmatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enlarged heart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enrapture\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enshroud\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensnare\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"enterostenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enthral\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enthrall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrain\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"enuresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epicondylitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epidemic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epididymitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epiglottitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia major\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"epilepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equipment casualty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equivocate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equivocation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"eradicator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ergotism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eroded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"errancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"erwinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erythema nodosum leprosum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erythroblastosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estraterrestrial body\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eunuch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evasive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"everlasting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"everlasting flower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eviscerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exacerbation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"exaggerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"excruciatingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excursus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exertion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exfiltration operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exfoliation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"exoneration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"expense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"expletive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"expurgator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exterminated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exterminator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extralegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extraterrestrial object\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"fabled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"face-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"face to face\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fail\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.261\",\n    \"std\": \"0.138\"\n  },\n  \"fairy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"faker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fall over backwards\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fallacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"fallaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fallal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fallback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"false\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.337\",\n    \"std\": \"0.115\"\n  },\n  \"false deathcap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"false imprisonment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"falsetto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"falsie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"family Hydrobatidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"family Machilidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"famishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fancy-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fancy dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fantasy life\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fascioliasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fasciolosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fatality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"fattiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fatty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fault\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.125\"\n  },\n  \"feeble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.102\"\n  },\n  \"feint\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fender-bender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenoprofen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenoprofen calcium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fester\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feverous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"fib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fibbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fibrous dysplasia of bone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fictitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"fiend\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"filariasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"finagler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"find fault\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fingerless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fingerstall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fink\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"fire ant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fire sale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"firebrand\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"fired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"firetrap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"first law of motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fistfight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisticuffs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"fixed disk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flabbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flaccid bladder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flaccidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flagging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flamboyance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flap down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flashiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flat-bottom\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flat-bottomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flecainide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flesh wound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flippancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"floridity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"floridness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"florilegium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flounder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"flowering glume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fly in the face of\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fly in the teeth of\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flyaway\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"flyspeck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flytrap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foghorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"fogsignal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"folie a deux\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"folk etymology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"food poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foolproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"football play\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"footslog\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"for one\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"forbiddingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.188\"\n  },\n  \"foreign terrorist organization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foreshadowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forgetfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forlorn hope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formaldehyde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forthcomingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foul-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foul play\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"foulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.177\"\n  },\n  \"four-letter Anglo-Saxon word\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"four-letter word\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fowl cholera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fowler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fracas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fractious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"fracture\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.051\"\n  },\n  \"frambesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"framboesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraud in fact\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraud in law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freak\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"freakishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"free-for-all\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fretfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frigidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"frigidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"fucked-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fuckup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"fugu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulmination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"funeral pyre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furlough\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furry tongue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furuncle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fussy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"future day\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"g-force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gainsay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"galoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"game\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"gamecock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gang fight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garbled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garboil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"gastrointestinal disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaucheness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gaudiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"gawky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"generalized anxiety disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genetic abnormality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genetic defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genetic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genetic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genital herpes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Clinopodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Neurospora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus Zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"get back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"get it\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"get to grips\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gewgaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ghostliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"giardiasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gimp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ginzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"git\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gland disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glandular disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glandular disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glaring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gleet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gloomy Gus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glossoptosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glower\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"glumness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"goalless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"godlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"golliwog\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golliwogg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gondola car\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gouty arthritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grabber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grand mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"grasping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"grated cheese\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gratuitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"gravitational attraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gravitational force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gray-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grayish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"graylag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"graylag goose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greaseball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"green-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"green ash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"green monkey disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greenish-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greenish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gregariousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gremlin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grey-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greyish-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greylag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greylag goose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"griminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gristly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grizzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grotesque\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"grouch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grouse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"growing pains\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"grubbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grumble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"grumbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guard\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"guide on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gum-lac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gum labdanum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gunfight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gunplay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gutlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gutta balata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hack writer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haematocytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haematuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haemoglobinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haemoglobinopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haemorrhoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"haggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haggling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hailstorm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hair-raising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hair shirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hairy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"hairy root\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hairy tongue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-slip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"half-truth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"halitosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hallucination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hammer nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haplosporidian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harassing fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hard coal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hard disc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hard disk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hard lead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hard times\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harshen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harshly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"harshness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"harum-scarum\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harvest mite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hate mail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"havoc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hazardously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head ache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"head over heels\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"headache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"headband\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"health insurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heart attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heart failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heaviness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.153\"\n  },\n  \"heedlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heedlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"heels over head\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hell to pay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"helter-skelter\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"hematocytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hematuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemicrania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemline\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemoglobinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemoglobinopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemorrhoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hen-peck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hepatic portal vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hepatitis delta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hepatoflavin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hepatolenticular degeneration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hereafter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hereditary condition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hereditary disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herpes genitalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"heterotaxy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hexenbesen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hideousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-muck-a-muck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"high-yield bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histamine headache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histiocytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hit the deck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hit the dirt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hobgoblin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"hockey skate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hold water\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"home truth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homeless\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"homespun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homicide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homunculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"horseplay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hostile fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hostilities\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hot potato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hot seat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"hothead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"hotspur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"house of cards\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"housebreaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hubbub\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humic substance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hunchback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"hurricane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydrazoic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydremia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogen azide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydromorphone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydromorphone hydrochloride\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hydrophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"hydrops\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperbetalipoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperbilirubinemia of the newborn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypercalcinuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypercalciuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypercholesteremia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypercholesterolemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperemesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyperplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypertrophic cardiomyopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypertrophic rosacea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypertrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyphen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyphenate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoadrenalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoadrenocorticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypocalcaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypocalcemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypocrite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoglycaemic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoglycemic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypolipoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hyponymy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoparathyroidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypospadias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypotension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hypotonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hysterocatalepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iciness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"icky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"iconoclastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"idempotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignominiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignominy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ileus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-advised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-chosen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-famed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-favored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ill-favoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"illogical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"immediate apprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imminence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imminency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imminent abortion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imminentness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immolation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immortality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"immotility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immovably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immunological disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"immunosuppressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impacted tooth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impalpably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impede\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impendence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impendency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperfect\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"imperfectibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impermissible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"impertinence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"implausibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imposter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impostor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imposture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impotence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"impotency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"imprecisely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impregnability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"improbably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"improvident\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"impudence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"impudent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"impuissance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impurity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"in great confusion\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadvertently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inappropriateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inapt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inattentiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"inauspiciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incapability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"incapableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"incapacitated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inclement\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"incommensurate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incommode\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompetent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.168\"\n  },\n  \"incomprehensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"inconceivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incongruity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incongruous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incongruousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconsequence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"inconsequent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconspicuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconstancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inconvenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inconvertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"incorruptibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incubation period\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incurable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indecency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"indecently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indecisively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"indefinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"indefinite\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"indelicacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"indelicate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"indescribable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indifference\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"indigestibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indigestibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indiscernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"indiscretion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"indisposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"indistinguishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"indolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ineffectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"inefficacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inept\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"ineptitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"inequality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inertia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inertial mass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inessentiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexactly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infamous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infamy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"infantile amaurotic idiocy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infantile fixation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infelicitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inferior alveolar artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inferior labial artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inferior labial vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infernal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.185\"\n  },\n  \"infertility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflaming\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inharmonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"inherited disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inherited disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inhomogeneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inhospitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"injure\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"injuriously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"injury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"innumerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inoperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"inopportunely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquisitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inroad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"insensibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"insensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.072\"\n  },\n  \"insensitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insidiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"insignia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insignia of rank\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insincerely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insipidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"insipidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"insolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"insoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.217\"\n  },\n  \"instinctive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insubordinate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"insubstantial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"insubstantially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insufficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"insuperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"insupportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insurgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interfere\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"interference fringe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intermittent claudication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interrogator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interrupt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"intestinal obstruction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intolerant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"intransigence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intransigency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intransitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invader\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invalidate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"invalidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inviolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.237\"\n  },\n  \"invulnerability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"iron-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iron-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iron carbide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iron deficiency anaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iron deficiency anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrational\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"irregular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irregularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.177\"\n  },\n  \"irretrievable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreverence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"irritability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"itch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"itch mite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"itchiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"itching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jack plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaggedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jammies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jaundice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"jejunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"jeopardize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"jerk-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jerkily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"jerking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jerry-builder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jiggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jimmy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jinx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"jonah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"josh\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jowly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"judgment of conviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juiceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"jumped-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jungle fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jungle rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junk bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jurisprudential\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juvenile amaurotic idiocy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juvenile delinquency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juvenility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"katabatic wind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"katharobe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"katharobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"katzenjammer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"kayo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keratitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keratoderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keratodermia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keratosis follicularis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keratosis nigricans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kernicterus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ketoaciduria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ketonemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ketonuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ketosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keyhole saw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"keyless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kick in the butt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kinanesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kiss of death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kiss of life\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kitsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"klutz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"knock cold\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"knock down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"koan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kook\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kyphosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labor pain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labor pains\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labour pains\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lac wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lacerate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"lackadaisical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"lacking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"lackluster\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"lacklustre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"lactase deficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactoflavin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactose intolerance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lagging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laid-off\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lambast\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"lambaste\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"lame\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"lancinate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lancinating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"landfill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laryngitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laryngostenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"last gasp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"last resort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lastingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"latent diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"latent hostility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lateral epicondylitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lateral humeral epicondylitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lateral line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lateral line organ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"law-breaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"law of Archimedes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"law of partial pressures\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lawlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"lawsuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lead arsenate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lead astray\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"lead on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"lead tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leaf scorch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lean\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.239\"\n  },\n  \"lean-to\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"least\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lecture\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"lepidophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leprosy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lesion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"lessened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"lethal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lethal dose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leucocytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leucopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leukocytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leukopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lever\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"levity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"lexical disambiguation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"licked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lifelessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"light-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"light-mindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"light touch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lightheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"lightheadedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"limited war\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"limp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"limpness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"line of battle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linebacker blitzing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liniment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linkboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linkman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lipid granulomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lipidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lipoid granulomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liposarcoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liquidate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"listless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"literary hack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lithium carbonate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"litigiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"littered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liver rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liver spot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"living dead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loather\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lobster pot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"local anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lock-up option\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loins\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"look away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"loose-jowled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lorica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lounging pajama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lour\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"lovastatin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low-ceilinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"low-set\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"low quality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lowbrow\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lowbrowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lowering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lowlife\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lowly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"lowset\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lug\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"lukewarmness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"lunatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lupus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lusterless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"lustreless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"lymphadenopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lymphoblastic leukemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lymphocytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lynch law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lynching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"macroglossia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"macular degeneration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mad cow disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"madman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magnetic stripe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maim\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"main diagonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"make-believe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal de mer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malabsorption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maladjusted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"malapropos\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malcontent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malediction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malevolency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malformation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"malfunction\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malignance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"malignancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"malignant anaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malignant anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malignant hypertension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malignant pustule\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malignly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malingerer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mallard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maltreater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mama's boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mamma's boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mandibular joint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mangle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.072\"\n  },\n  \"mania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"maniac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manic-depressive psychosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manic depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manic depressive illness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maniclike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manipulate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.137\"\n  },\n  \"manpower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mansard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mantelet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"mantlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maple syrup urine disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marasmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marble bones disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martial law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martyr\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"martyr operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martyrdom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"masquerade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"masquerade costume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"material witness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matricide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mauler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mawkishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"meanly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"meanness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"meanspirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"meddling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medical dressing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medical examiner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megacardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megadeath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalocardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalomaniac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megrim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melaena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melancholia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mellowingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"men\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"menace\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"mendacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mental block\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mental case\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mercury poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meretriciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"mess of pottage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mess up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"messiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"metabolic acidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"methanal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"microcytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"midazolam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"middle class\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"migraine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mildew\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"milk-sick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"milk intolerance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"milk leg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mindlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"mineral deficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ministration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"mischance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"mischief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"misconception\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misdeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misfire\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misfortune\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misfunction\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misgovern\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mishandle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mishap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"misinformation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mispronunciation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misshapenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mission impossible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mistrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"molder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moldiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monkey business\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monorchidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monorchism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monstrosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"monstrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"month by month\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moral obligation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morbid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"morbidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"morgue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moribund\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortuary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moth-eaten\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"mother's boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mothy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"motor ataxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moufflon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mouflon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moulder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mountain ebony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mouth-to-mouth resuscitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muck up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"muddied\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muddle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"muff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"muggee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mulberry fig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mulch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mulct\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"murder charge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"murder indictment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"murder mystery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"murky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"murmuring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"musophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"musty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"muteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"mutiny\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"muttering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"myocardiopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"myotonia atrophica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"myotonic dystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"myotonic muscular dystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nanophthalmos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naproxen sodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"narcoleptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naupathia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"navy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"near thing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nebulously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necessity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"necklet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necrobiosis lipoidica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necrobiosis lipoidica diabeticorum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necromantic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"necropsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neglect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.105\"\n  },\n  \"neglectfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negligible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"neonatal hyperbilirubinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoplasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nephroangiosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nephrogenic diabetes insipidus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nephrosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nerve compression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nerve deafness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nervelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nervous disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuralgy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurasthenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurological disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurological disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuroticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neutralise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"neutrality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"niggard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"night terror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nightmarish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nighttime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nigrify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nincompoop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ninny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"niqab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nitric oxide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nitwit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nobble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"nocent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nogging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noisily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non-water-soluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non compos mentis\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonaddictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonappearance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonarbitrary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonattendance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonconscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"nondisjunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonharmonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonhereditary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonheritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noninheritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonlegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonlethal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonmusical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"nonobservance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonresidential\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonresilient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonresonant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsense\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonspeaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsubmergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonsubmersible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nonuniform\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"notorious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nowhere\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nuance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear meltdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nuisance abatement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nullify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"numb\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"numbers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"numbers game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"numbers pool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nymphomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nymphomaniacal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obduracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"objurgation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obliquity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"obliteration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obliviousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obloquy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"obsidian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obstreperous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"obtuseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ochronosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odd fellow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odd fish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odd man out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odorize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"odourise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oedema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"of unsound mind\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"off-colour\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"off year\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"ogre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"oink\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"old guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"on the spot\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"onion smut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onychosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"open-angle glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"openbill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operant conditioning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operational casualty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operational damage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oppress\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"oppressor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orbital point\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orbitale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orchid tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orchidalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ordeal bean\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"order Equisetales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"order Mycelia Sterilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"order Psilotales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"order Santalales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orphaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osmium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ostentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"osteodystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osteolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osteomalacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osteopetrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osteosclerosis congenita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"otosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"out-herod\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"out of the blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"out of the question\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outbreak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outclassed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outfight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"outvie\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ovarian vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overflow incontinence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overlooked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oversensitiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"overwhelm\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.239\"\n  },\n  \"pachycheilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pain threshold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"painfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"pajama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"paleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"palooka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paltering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paltry\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pancytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"pants suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pantsuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralysis agitans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"paranoiac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraparesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraquat poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parasitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paresthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parrot disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parsimoniousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"parsimony\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"pass out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"passiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"passivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pasteurise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pathetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"patka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patronless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pattern-bomb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peacekeeping\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pearly-shelled mussel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peccadillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peeling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pell-mell\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pelt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"pelvic inflammatory disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"penalty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"penny-pinching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pepper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pepperiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"percuss\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"percussion cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peril\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"perilously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"periodic apnea of the newborn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"periodic breathing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peritonsillar abscess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perleche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pernicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"pernicious anaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pernicious anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perpetual motion machine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persecute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perseveringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perturbation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"pessimist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pester\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"petrifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"petticoat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pettiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"petty criticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"petulance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phalloplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phantasy life\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phantom limb syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phenylketonuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phlegmasia alba dolens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phobophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phonophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phosgene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"phrenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picaninny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piccaninny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pickaninny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picklepuss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pieta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pigeon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pillaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pine away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pink-slipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pirana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pis aller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pisser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pitchstone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pitiably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pitiless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pixilated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"pj's\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plaint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plant life\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plant order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"platitudinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"platitudinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"play a joke on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"pleonasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleuralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleurodynia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plod\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plonk\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pneumoconiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pneumonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pneumonoconiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pneumothorax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pockmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poetiser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poetizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poignancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"poison\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poison gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poisonous parasol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poisonous substance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polecat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"polemicise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polemicize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polemise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polemize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"police action\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poliosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polish off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"pollutant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polycythemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polymyositis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polyuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pommel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poniard\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poof\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pooh-bah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poove\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"popery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"porphyria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"portal vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"portentous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"porter's beer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positive degree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positive fraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"post-mortem examination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postmortem examination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"posturing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potato fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potato nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potato wart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pother\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poverty trap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"precariousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"precious coral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"press down on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"pretender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"pretension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"pretrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretrial conference\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prevaricate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prevenient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"priapism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"prig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primitivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"principal diagonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"problem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"proctalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prodroma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prodrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profanely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"professedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"promiscuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"proof\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prosaic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"protect\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"protest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"protrude\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"prurigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pseud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pseudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psoriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psycho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychoneurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychopath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychosomatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychosomatic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psychotic person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puff of air\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pugnacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puke\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pullout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulmonary emphysema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pummel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punch-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pungency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"punk rock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puny\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"purple apricot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"push back\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"push down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pushiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putrefy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putrescence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"putrescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putridness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puzzling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"pyjama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pyre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pyrectic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pyrophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quail at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quandary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"quarantine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"quarrel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queasiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"queer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"queer bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queer duck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"querulousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quinsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quisling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quotient verdict\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit burrow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rachitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rachitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"radial asymmetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raggedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"raging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"raid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"rainstorm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rambunctious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rancidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ransom\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ranter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rape conviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rappee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rapscallion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rascal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rascally\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"raspy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.065\"\n  },\n  \"rateability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rattrap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"ravage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"raw recruit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raw weather\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rawness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.102\"\n  },\n  \"re-sentencing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rear back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rebut\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"reconditeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"reconnaissance by fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recoverer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recreant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red alert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red man\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red silk-cotton tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red silk cotton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"redbug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reef\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refractory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"refute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"refuter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regional enteritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regional ileitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regorge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relapse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"relishing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"removable disk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renal colic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renegade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repine\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reprobate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"reprobation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"repulsive force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requirement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"rescuer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"respiratory syncytial virus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respite\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"restless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"restrictiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"resultant role\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retrogress\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"retronym\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revelry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reviewing stand\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatic fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatoid arthritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhinophyma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhizoctinia disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhizotomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhodomontade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhymer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rhymester\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ribald\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"riboflavin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rickets\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rid\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rigidify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rigor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"rigor mortis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rigour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"rimless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ring disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ring rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rioting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rip out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"risky venture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritual killing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"robbery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"robbery conviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"robustious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rock-ribbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"rockiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rocky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"rodomontade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roentgen ray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rofecoxib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roguish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"roguishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"roisterer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rosacea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"rottenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rotter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rough\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rough up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rough water\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roughage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roughen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roughened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roughness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.086\"\n  },\n  \"rub\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rubble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rubor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ruin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.102\"\n  },\n  \"ruination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.072\"\n  },\n  \"rum-blossom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rum nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rumble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"rumbustious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"run-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ruse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rust fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sackcloth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sacrifice\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"sacrifice operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saddle sore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"safety blitz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"safety hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salvageable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sand trap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanitary landfill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprophagous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprophyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprophytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"saprophytic organism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprozoic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarcoptid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saturnalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"savagery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"savoring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scabrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"scamp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scandalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"scandalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"scantily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scanty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scarred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"scathe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"schlock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scolding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scoliosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scorched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"scoreless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scourge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"scrape\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.0\"\n  },\n  \"scratchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.072\"\n  },\n  \"scrawler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"screak\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"screech\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"screen memory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrimy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrofulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.26\"\n  },\n  \"scrooge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scrunch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scullery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scum bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scunner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"scupper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"scurfy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"seasick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seasickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seborrheic dermatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seborrheic eczema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"secondary diagonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"secret police\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"secretiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"sedative-hypnotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sedative-hypnotic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seed pearl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seediness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-assertiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-evident truth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sellout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semblance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"senile dementia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senile psychosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.213\"\n  },\n  \"sensorineural hearing loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulcher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulchral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"sepulchre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sericea lespedeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"session cookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"setterwort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"severeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.144\"\n  },\n  \"severity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.144\"\n  },\n  \"sex-linked disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sex crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sex offense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"sexual abuse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexual assault\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shabbily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"shabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"shagged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shakiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shaking palsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shaky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"shamefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shammer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shapeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shark\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shatter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"sheep rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shellac wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shellproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shenanigan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"shimmer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shin splints\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shingles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shipwreck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"shivering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shlock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.339\",\n    \"std\": \"0.061\"\n  },\n  \"shoot down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"shootout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shopworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"short-haired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"short-stalked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shortage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"shortness of breath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shove along\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shove off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"showiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shrieked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shucks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"shuddering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"shy away from\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sick\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sick list\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sick person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sickly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"side drum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"siderocyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sideropenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sideswipe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silverish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"simal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.056\"\n  },\n  \"single-handed\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"single-handedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinister\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"sizzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sketchiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ski jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ski parka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skin disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skin disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skin over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skin test\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skinflint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skinless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skirt chaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"skreak\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"slackness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"slam\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slander\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"slang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slaughter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"slide down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slimy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"slipper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"slovenliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"slovenly woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slowness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"slugfest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sluggard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"slurp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"small-particle pollution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smallpox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smart aleck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"smell up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"smirch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"smite\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"smuttiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"smutty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"snack bar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snack counter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snafu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snake oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"snare drum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snarl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"sneak\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"sneeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sneezer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snooker\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"snort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"so-and-so\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"social lion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sociopath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soft water\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soil conservation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soiling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soilure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solacement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sometime\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"somewhere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sooty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sophism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sophist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sophistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"sophistical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sophistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sordid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.188\"\n  },\n  \"sore-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soreness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sottishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"soul patch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sound off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"sour\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.184\"\n  },\n  \"sour cream\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soured cream\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sourpuss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spadework\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spareness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"spasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"spasmodically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spastic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spastic bladder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"speech defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"speech disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spelter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spherocyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spinal anaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spinal anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spirit rapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spit out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"splenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"splenomegaly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"splutter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"spoliation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"spook\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spotted fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sputter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"sputtering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squabbler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squalidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squalor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squandered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squandering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"squiggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"stabbing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"staghead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stagnant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"stain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"staleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"stammer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stand up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.047\"\n  },\n  \"startle reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"starvation acidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"state of nature\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stationary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"steatopygia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steatorrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"steel gray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"steel grey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sternness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"stick up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"stifled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sting\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.056\"\n  },\n  \"stink out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stink up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stinker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"stinking cedar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stinking hellebore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stinking yew\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stoicism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stolidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stonewalling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strabismus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strafe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straightjacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strait\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"straiten\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strangled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strapless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stratagem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"strategic warning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strenuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"strikebound\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"strikebreaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stub out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stubborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"stuck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"stumble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"stumblebum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"stunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"stupefy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"stutter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subacid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subduedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"subgenus Chen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subjugate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"subjugation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"subtlety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"suffer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.341\",\n    \"std\": \"0.065\"\n  },\n  \"sufferer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"suggestibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suicide bomber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suicide mission\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sullen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"sunder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superciliousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superclass Gnathostomata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"superficially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supernatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superstitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suppurating sore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surgical strike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"surprise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"surprisingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"survivor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"suspended animation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suttee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swashbuckler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swellhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swimming trunks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"swooning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sycamore fig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"symptomatically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"systemic lupus erythematosus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tabard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tabes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"table rapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"table tapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tackiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tacky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"tactless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"take-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take it on the chin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"take lying down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tampering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tank top\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tantalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tantalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taphephobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taradiddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tarantism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tarradiddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taskmaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tatterdemalion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taunt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tautness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tawdriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taxpaying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"technical analysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"technical analysis of stock trends\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"telescope\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tell on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"temerity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tempestuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"tempestuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"temporomandibular joint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tennis elbow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tense\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"tenured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tepidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"teras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teratogenesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tergiversate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"terminator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terrorist attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terrorist group\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terrorist organization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terry towel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"testimonial immunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thanatopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thanksgiving\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"the Tempter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thermoset\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thermosetting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thorniness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"thoughtless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"threadbare\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"threat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.102\"\n  },\n  \"threaten\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"threatened abortion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thrombocytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thrombopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"throw out of kilter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"throw up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thunderous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"thurify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thwack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thyrocalcitonin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"thyroid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tibial vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ticking bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"time out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"timeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tin hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toadstool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tobacco wilt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tomentous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tommyrot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toneless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tongue-lashing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tongue twister\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tooth enamel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"top-heavy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toper's nose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topical anaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topical anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topmast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topsy-turvily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tormented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"torpidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"torpor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"torture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.088\"\n  },\n  \"torturously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tosh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tote\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tottering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"touched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"tough\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"toughie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"toxicant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxin antitoxin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxoplasmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tragedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tragic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"transfusion reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transmigration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.0\"\n  },\n  \"trap line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"travel-soiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"travel-stained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"treason\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"trembling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifurcate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trinket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tripinnatifid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"triteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trounce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"truckle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"trudge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trump up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tsine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tuff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumultuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumultuous disturbance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumultuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tunnel vision\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbulence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tushery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tutu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twaddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twerp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twin towers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twirp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"twit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ulalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unabridged\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unabridged dictionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unacceptability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unacceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.157\"\n  },\n  \"unacceptableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unaccustomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"unacquainted with\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unadaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unadjustable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unadjusted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"unadoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unaided\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unalike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unanswered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unanticipated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unappreciatively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unarbitrary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unascertainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unascribable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unasked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unassisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"unattributable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unbanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unbrushed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncalled-for\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"uncaring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unchangeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unchivalrously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncleanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unclipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncomplimentary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"uncomprehensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconditionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconditioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"unconfirmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncongenial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"unconquerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"unconscientious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconscionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unconscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"unconsciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconsummated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unconventionality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"unconvertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uncultivated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"uncured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undedicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undefined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undeniable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undepicted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underbelly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"underclothes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underclothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underdeveloped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"underexposure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"underneath\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"underpants\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underpopulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underquote\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"underrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undersell\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underseller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undershot\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undershrub\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underskirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"underwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undetected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undigested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"undiscoverable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undreamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undreamed of\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undreamt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undreamt of\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"undue\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"unemployable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unemployment rate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unenforceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unethical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unevenly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"unexacting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unexchangeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unexpectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unexplained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"unexplored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unexpressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfaithful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"unfamiliar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfamiliar with\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"unfitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"unfixed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unfledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"unforeseen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unforfeitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unfunded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ungracefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ungraciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ungratefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ungroomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unhealed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unhelpfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unimaginable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unimagined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unimproved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unindustrialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unindustrialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uninfluential\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uninformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uninspired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"uninstructed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uninvited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unipolar depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unjustifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unkemptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unkindly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unknowingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unknown\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.112\"\n  },\n  \"unlearned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"unlighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unlit\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unlooked-for\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmanageable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.161\"\n  },\n  \"unmanageably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unmarked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unmusical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"unnotched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unnoted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unobserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"unofficially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpalatability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unpalatableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unpardonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpatronised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpatronized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpatterned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpeaceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unperceivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unperceiving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unperceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"unpictured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpillared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpointedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpracticed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unpractised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unproductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"unpropitiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unquestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"unquietly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unquotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unratified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unreactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"unready\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unreal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"unrealistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unreasonably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"unreciprocated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrecognisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrecognised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unrecognizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrecognized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unreconciled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrefreshed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrelated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unrelatedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrenewed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrepresentative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrequested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrequited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unreserved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unresolvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"unresponsive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"unrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"unrested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unretrievable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unreverberant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrevived\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrhythmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrhythmical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unroofed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unrouged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unruly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"unsaid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsavory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"unsavoury\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"unseamanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unseasonably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unseasoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"unserviceable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"unservile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsharpened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsheathed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unshuttered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsoldierly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsolicited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsolved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unstated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unstoppable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unstudious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsubmissive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsung\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unsupervised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsupportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsuspected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsuspecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"unsuspectingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsympathetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.137\"\n  },\n  \"unsympathising\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unsympathizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"untidy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untoothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untransmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untried\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"untrue\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.125\"\n  },\n  \"untruthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"untucked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unuttered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unverbalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unverbalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unversed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwarrantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwarranted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"unwelcome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"unwilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unwilling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"unwished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwished-for\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unwittingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unworkmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unyieldingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upchuck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"upheaval\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"uproar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"upsetter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urarthritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urban legend\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urethritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"urinary hesitancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urinary incontinence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urticate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"use immunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vaccine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vaccinee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vaccinum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vacuity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"valdecoxib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"valise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"valvular heart disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"variola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"varnished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vehemence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"vena centralis glandulae suprarenalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena labialis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena ovarica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena tibialis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verd antique\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde antique\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vermiculate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"versifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vesicate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vestibular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vestibular apparatus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vestibular system\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.213\"\n  },\n  \"victim\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"villainousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"villainy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"violence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"violent storm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virulence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"virulency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"virulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"visual aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"visually impaired person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamin B2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamin G\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitiated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"vitriol\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"volubility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volvulus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomit up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waistcoat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"walk-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"walk off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"walk out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"walkout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"wally\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wangler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wanker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"want\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"wanting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"war criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"war party\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ward\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warning light\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"warragal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"warrigal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"warrior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waste material\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waste matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waste of money\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"waste product\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wasteful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"wasting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"water-insoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wavy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"weakener\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"weakness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.19\"\n  },\n  \"wear down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"weasel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"weisenheimer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-nigh\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"well-worn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wet lung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whacked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whaleboat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"whinstone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whip\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.051\"\n  },\n  \"whiskers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"white-bread\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"white leg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"white lie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"white lung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"white popinac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"whoopee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wiesenboden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wild\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"wild flower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wild ox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wildcat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"wildflower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wildness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.157\"\n  },\n  \"wince\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"wind scale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"windburn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"windburned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"windburnt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wine-colored\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wine-coloured\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wingless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wise guy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wiseacre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wisenheimer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"witch broom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"witchcraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"witchery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"witches' broom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"withstander\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"wolf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"woman chaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"woodenly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"woofer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"word blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"word deafness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"work-shirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"work force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"workforce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"working out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wormwood oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"worn spot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"worsening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"wound\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"wounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wrangling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wreck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wrick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wrist band\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wristlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wrongful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"wrongful death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"wry face\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xanthoma multiplex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xanthomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xeroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerodermia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xeroma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerophthalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerophthalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerostomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yashmac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yashmak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yawp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yaws\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"yelling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yellow man\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yellowish-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zalcitabine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"zombi spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zombie spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zoster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abattis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abaxially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abdominous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abet\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ablaze\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"able-bodied seaman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"able seaman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abolishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abominable snowman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abortifacient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abracadabra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abruptly-pinnate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abscessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absentminded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolute space\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolvitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbefacient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorption factor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorptivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstention\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstracted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aby\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abye\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abyssal zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academic freedom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academic requirement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acanthion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acarpous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accent mark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accentuation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"accessional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accommodator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accord\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"account executive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"account representative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"account statement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accountant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accounting firm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accoutered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accoutred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accreditation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accretionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achievability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achromatinic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acid rock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidulate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic delay line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic gramophone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic projection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic wave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquaintance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"acquaintanceship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquired taste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquirement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquisitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrobat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrocarp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrocarpous moss\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acromial process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acromion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acronymic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acronymous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actinoid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"action painting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"active\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.139\"\n  },\n  \"active trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actualisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actualization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actuating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acumen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuminate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"ad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ad agency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ad hominem\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adapter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adeptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adhesion contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adhesive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adjuratory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"adjustive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admirer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"admissibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admonisher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adolescent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adoption\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"adorer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adpressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adrenaline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adroitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adverse opinion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advertising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advertising agency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advertizement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advertizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advisedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advisement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advisory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advisory service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advocacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerobe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerobiotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerophile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aesthetician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aether\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affidavit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affiliated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affirmation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.228\"\n  },\n  \"affricate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affricate consonant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affricative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afoot\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"aftercare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afterglow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"agape love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"age-related\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aggrade\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aggregated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aggregative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agleam\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aglow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agreed upon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agronomist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahead\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahead of time\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aid station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aide-memoire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air-cooled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air-dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air wave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"airmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"airplane ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ajar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al-Qur'an\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alacrity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alarm bell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohol-dependent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aleatory contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alendronate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alertness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"alethic logic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algorithm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algorithmic program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algorithmic rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alibi\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alienation of affection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliphatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alkalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alkalotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all-fired\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all-knowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all-metal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all-or-none law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all-purpose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all over\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allegement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allergy diet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allocate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allow for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ally\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ally with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alpenstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alpine coltsfoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"also-ran\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"alternative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"alternative birth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alternative birthing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altitudinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altruistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alveolar point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amalgamative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amazed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amber-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambidextrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambitiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ameer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ameliorating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ameliorative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amelioratory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"amended return\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amethopterin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amiableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amniocentesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amoralist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amorist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amphictyony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amusingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amygdala\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amygdaloid nucleus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabolism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaclisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anagogic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anagogical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anagrams\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analgesic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analgetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analyzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analyzed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anasarcous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatropous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"andante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anecdotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anecdotical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anele\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angelically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angioscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.247\"\n  },\n  \"annual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"anodyne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anomic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antapex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ante up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antedate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"antelope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antenatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antepartum\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthropomorphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthropomorphous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthroposophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiauthoritarian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticancer\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticlimactical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antidiabetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antidiabetic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antifungal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiheretical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiphonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiphonary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipsychotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipsychotic agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipsychotic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiquarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiquary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitank\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitrust law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitrust legislation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitumor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitumour\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antler-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antlered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antrorse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apace\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apache devil dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aphoristic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"apochromatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apocope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apologia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apotheosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"apparel industry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apparent horizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appealable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appealingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appealingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appearing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appendant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apperceptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applauder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apple-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applicant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"application program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applications programme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applied anatomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applied psychology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applied science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applied scientist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"apportion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apportioning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apportionment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appreciate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.163\"\n  },\n  \"apprehensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apprentice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apprenticed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"approver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"approximate range\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"approximately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apt\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.213\"\n  },\n  \"arachnid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrament\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcadian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arch support\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"archaeornis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"archer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"architectonics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"architectural style\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"archivist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arciform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcuate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argentiferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ariose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arithmetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arm's length\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armchair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armguard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arms deal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"army corps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrogance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"art deco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"art nouveau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria communicans\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria ileum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arterial road\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"articled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artisan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"as a matter of fact\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"as such\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"as yet\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascending\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascending node\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ashram\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asinine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aslant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aslope\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspire\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assenter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assibilate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"assibilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"assigned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assimilating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assimilatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"associate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"associate degree\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assonant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"assortative mating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asterion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astonied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astonished\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"at-bat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at all\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at home\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at work\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ataraxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"athletic competition\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"athletic contest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"athletic facility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic warhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atone\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"atorvastatin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atoxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attainability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attainableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attainder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attendant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"attending\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attentive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"attestation report\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attestation service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auburn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auction house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audio CD\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audio compact disc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audiotape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audiovisual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audiovisual aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"augmented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auricular point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auriculare\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auspiciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auteur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"authentic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"authenticate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"authorisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"authorised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"authoritative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"authorization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"authorized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodidact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoecious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"automate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autophyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autophytic plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotelism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotroph\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotrophic organism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"availability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"availableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avoidance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"awake\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"award-winning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"awash\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ax handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axe handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axiology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azithromycin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babassu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babassu palm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baby-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baby-sitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baby doctor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baby sitting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babysitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babysitting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"back exercise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"background\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"background knowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backhand\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backhand shot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backhand stroke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backroom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"badminton racket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"badminton racquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baking chocolate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balefire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baling wire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balk\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ball-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ball hawk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballet company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balletomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballistic capsule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballistic galvanometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballottement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balmy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"bamboozle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank holding company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bankbook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banns\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banquet song\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bantam\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bar mitzvah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barb\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbecue sauce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bare-breasted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barefaced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"barefacedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bareheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barelegged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bargain-priced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bargain rate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bargaining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barndoor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bas mitzvah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"basketmaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basketry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basketweaver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basophilic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bat mitzvah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bath mitzvah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bathing tub\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bathtub\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batter's box\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battering ram\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batwing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baulk\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baulker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be-all and end-all\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be active\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be all and end all\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be born\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be full\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be given\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beach ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beachball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beacon fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bear away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bear off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bear out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bear witness\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beaut\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beautician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beauty quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beaux arts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beaver board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"becalm\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"becomingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bed-hop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedding material\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedhop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beforehand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"befriend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behind-the-scenes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behindhand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beige\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belatedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"believability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"believe in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"believingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belittled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belles-lettres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belles lettres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bellylaugh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benchmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"benefaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"benefit album\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bent on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beseeching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bespectacled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bespoken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"bestialise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bestialize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betrothal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bewitched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bibliotics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicephalous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bichromated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicorn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicornate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicorned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicornuate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicornuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biennial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bifid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bifurcate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bifurcated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big-boned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big-shouldered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big cheese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big enchilada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big fish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big shot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big spender\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big wheel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigeminal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigeneric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilabial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilateral contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilaterally symmetrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bilinear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilingualism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billet\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billiard marker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilocation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bindery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binocular microscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binomial distribution\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binominal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bio-assay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioassay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biodegradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioethics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biomedical science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biparous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biradial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biramous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bird's-eye\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birdsong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birr\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bishopry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bit-by-bit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitter chocolate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitumastic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blabbermouthed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black-fronted bush shrike\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black-tie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black mamba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blacking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackjack\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blacklist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blank shell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blanquillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blasphemer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blazing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bleat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bleb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blessed event\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blighty wound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blind trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blindfold\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blindfolded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blinding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blinking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bliss\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blissfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"block grant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blockading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blockbuster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"blood-oxygenation level dependent functional magnetic resonance imaging\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-fruited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-lilac\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue ribbon commission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue ribbon committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue ribbon jury\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-lilac\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bluish-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bluish green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blurb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"board of education\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boasting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boat club\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boat race\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bodacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"boiling\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolshevise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolshevize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolster up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bombilate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bombinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bon mot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone-dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone china\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonfire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonhomie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonnet shark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonnethead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bony-plated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"booby prize\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"book of facts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"book of knowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bookable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"booked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bookend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boom town\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boondoggle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boost up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"born-again\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrow pit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrower\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bottom-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bottom quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bouffant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bouffe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.178\"\n  },\n  \"bounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boundedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boundless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bounteousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bountifulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bowman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"box kite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boy wonder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brace and bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brainchild\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brainwashed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"braless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bran-new\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"branch water\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brand-new\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brand-newness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brand name\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brasslike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bravo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brawn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brawniness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breach of duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breach of the covenant of warranty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"break of day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"break of the day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breakableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breakfast area\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breakfast nook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breath of fresh air\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breech-loading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breviary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brighten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"brightness constancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brightness level\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brim\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bringing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brioche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"briskness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bristle-pointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broad-shouldered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broad gauge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broken arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronze-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brood hen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broody hen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broom handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broomstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brother-in-law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brownie mix\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brownish-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brushup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubble-jet printer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubble gum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubble jet printer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubble over\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubblejet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buckram\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buddy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buffered aspirin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bugle call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"building code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumblebee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bundled-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bungaloid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunny hug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burdenless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burglarproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burnish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bush\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"business line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"business relationship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"busy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"busywork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butt-weld\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buttoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buttress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buttressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buttressing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buttweld\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buxomness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buy at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by a long shot\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by choice\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by design\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by machine\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by rights\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by the bye\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by the way\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bygone\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bypast\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"byword\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabinetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cache\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadmium cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caespitose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafe au lait\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caliber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"calibrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calibre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"call into question\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"call to order\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calligrapher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calligraphist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calumet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camaraderie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp-made\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camp meeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campfire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camphorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camphorated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canal\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancellous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"candescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"candid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"candy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cantata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cantilever bridge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capacitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caparisoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"capital letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital of Spain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"carbine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardiac plexus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardinal vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caricature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carioca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"carnassial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnival\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"carrick bitt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carry away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carry through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"cartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casework\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caseworker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cassino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cast-iron\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cast-off\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catachrestic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catachrestical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catamite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cataphoresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catatonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catchpenny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"categorem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"categoreme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caterer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caterwaul\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cattleya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cause to be perceived\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cautious statement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celebratory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celebrity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"celestial point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cellblock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cenotaph\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"center bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"center of mass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"center punch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"central scotoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centre bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centre of mass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrifugal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"centrism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cephalopod\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cephalopod mollusk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ceremoniousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceremony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"certainty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"certifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"certified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"certitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cespitose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaffinch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chalk line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"challengeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chambermaid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"champaign\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"champerty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"change of color\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"change of shape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaotic attractor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapel service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charge-exchange accelerator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charitable trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charm quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chateau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chauvinistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"check-out procedure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"checkered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"cheerer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chequer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cherub\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chestnut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chesty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chew the fat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chicness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chief executive officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chief justice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chief operating officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiffonier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"child support\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiropodist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chisel-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chit-chat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chitchat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chivalrously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chivalry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"chock\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chock-a-block\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choice of words\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choir school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chop-chop\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chop down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chorale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choropleth map\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chosen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"chroma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromatinic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronograph\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chum salmon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chum up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chumminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chump\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"church doctrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"church member\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"church music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"church school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"church service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churchgoer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churchgoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churchly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churchman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churned-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicerone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cigar-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinema verite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumpolar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"circumscribed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"citified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"citizens committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"city-born\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"city-bred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"city father\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cityfied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civil marriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civil right\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civil servant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civilian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"civilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"civilly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clampdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clanging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clangorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clannish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clannishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clarion\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Mammalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classical style\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classroom project\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claver\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claxon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clean-shaven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clean room\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleaning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clear the air\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clearstory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleavable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleft\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clerestory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleric\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clerisy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleverness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"clevis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cliff-hanging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"climatically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"climatologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"climb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"climbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinical anatomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cliquishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clog up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clogging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clopidogrel bisulfate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close-hauled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close-packed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close at hand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close to\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close together\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"closed-captioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clothesless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cloud nine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cloy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"clubby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"co-occurrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"co-op\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coastal plain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coatdress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coaxal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coaxial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocaine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cockcrow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cockle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocksureness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coco de macao\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coconut water\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coefficient of concordance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coerce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coffee urn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cogent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cogent evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cohesive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cohune\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cohune palm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coiffe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coiffure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coin bank\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coincidental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coinciding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold shoulder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collaborative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collateral fraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"collegiate dictionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collimation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"columnar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"columniform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"columnlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combat-ready\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combination lock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combinatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"combining weight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"come into\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"come on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.409\"\n  },\n  \"come over\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"come short\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comeback\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"comedian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comedy ballet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comic book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comic opera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coming back\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coming into court\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comity of nations\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"command line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"command module\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commensal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commensurate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commercial traveler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commercial traveller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commercialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commercialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commodious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commodiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common-law marriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common touch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commonplaceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"communicating artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"communion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"community chest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commutation ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"companion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"company\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparable with\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compartmented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"compete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competence hearing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"composite material\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comprehensive examination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compressibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comptroller\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compulsiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compulsivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computer-aided design\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comradeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comradery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comradeship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceivably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concentration gradient\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concentric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concentrical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concentricity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceptual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concert\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"concerted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conclave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concluded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conclusiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concretely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concur\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"concurrency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concurrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concurrent negligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condensation pump\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conditional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conditional contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conditionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conduce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conductance unit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condylion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confirmation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.105\"\n  },\n  \"conformity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.288\"\n  },\n  \"congest\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conglomerate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conjunctive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"conjuncture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conjuring trick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"connatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"connotative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conscientious objector\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conscription\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consensus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consequential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservativist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"considerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consideration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.281\"\n  },\n  \"consolatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"console table\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consolidative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"consoling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consonate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constricting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constructive fraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constructive metabolism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"construe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumer finance company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumer loan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contact lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contemplativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contingency fee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contingent on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contingent upon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"continuing education\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contour sheet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contract of adhesion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contracted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contractile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrived\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"control condition\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"control experiment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"control stock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controlled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convene\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"conventionalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conventionality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"conventionalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convergent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convergent thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"converging lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversationalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversationist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"converted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertible security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convex lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convincible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convincing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conviviality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cooccurring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cookie-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cooking chocolate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copartnership\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copper colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coppery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coquetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corbel arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coreid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coreid bug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corneal graft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corneal transplant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronary artery bypass graft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronary bypass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronary bypass surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corporate trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corporatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpus amygdaloideum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correlational statistics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correlative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"corroborating evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corroboration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrugated iron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrupting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"cortically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosmetologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosmopolitan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"cost-plus\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cost-plus contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coterie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cottonwick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cottony\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"couchant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coude system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coude telescope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counteraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterbalanced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterexample\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterfactuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countermeasure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterpoint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterpoised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countersign\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countersubversion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countrified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"countryfied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"course of instruction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"court game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"court of justice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"court of law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cousinly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covalence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covalency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covariation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cover letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covered option\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covering letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowbell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowcatcher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coziness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crack of doom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cracker-barrel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crackle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crampfish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"craniology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crannied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cream-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creamy-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creamy-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creaseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"create by mental act\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"create mentally\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"create verbally\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cred\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credit rating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credit union\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creditworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"credulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"credulously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crenate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crenated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crepitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crescent wrench\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cress green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cresson\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crew neck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crew neckline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cribbage board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cricket frog\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crinion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criterion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"critical analysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"critical appraisal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"critique\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"critter sitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cross-banded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cross country\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crosstie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crowning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cruciate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruciform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruise liner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruise ship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crusader\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crustal movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crux\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crux of the matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptanalyst\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptographer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptomonad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptophyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crystalline\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"crystalline lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crystallised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuckoo clock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuddle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cuff\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culture\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cultured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cumbersomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cupbearer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cupid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"current\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curtail\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"curtain\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curtain raising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curtained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curved shape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvey\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvilinear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cushioning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cushy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custodian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custom-built\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custom-made\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"customarily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"customer's broker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"customer's man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut-price\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut-rate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut price\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut rate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyanogenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyanogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclopaedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclopedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cynic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cynosure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"cyproheptadine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cytopathogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cytoplast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dabbled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dadaism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dado\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dagger-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dance step\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dancing school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"danish pastry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dashingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"data-based\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"data encryption\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"data multiplexer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"datable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dateable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dawning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day-after-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day-by-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day-to-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daybreak\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daylong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dayspring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de-Stalinisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de-Stalinization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de facto\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de rigueur\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dead set\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadbeat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadpan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debark\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debug\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debugger\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decantation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decertify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decipherable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decision\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.068\"\n  },\n  \"deco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decolonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decolonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decommission\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decomposable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decorative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decorativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decouple\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.27\"\n  },\n  \"decreed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dedicate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.306\"\n  },\n  \"deed of trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep-pink\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep-rooted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep-seated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep-water\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defence system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defending\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defense laboratory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defense lawyers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defense system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defense team\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deference\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"definiteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deflective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deftness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"degree program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delay line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delightedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delimited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deliquescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delivery boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deliveryman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delocalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demobilisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demobilization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"democrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demon-ridden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demonstrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"demoralised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demoralized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demotion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demulcent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denotatum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"densitometry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dental care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dental school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depend on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"dependant on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dependant upon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dependent clause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dependent on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dependent upon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depending on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depilous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deposit account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deprave\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depressant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecognise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecognize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derivational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derivative instrument\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descending node\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descriptivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"desegrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desegregate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deserted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deservingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"design criteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"designated driver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"designed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"designedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desk dictionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destalinisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destalinization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"details\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detainee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"determinateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detox\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deucedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deuteranopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"developmentally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devourer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dexterity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dextral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"dextrality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dextrorsal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dextrorse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacritic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacritical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacritical mark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diagrammatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diagrammatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialect atlas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialectician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialectology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialysis machine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialyzer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diapir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dichotomisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dichotomization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dichotomous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didactic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didactical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"die hard\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dielectrolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diestrual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dietician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dietitian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"differentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"differentiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"differential analyzer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"differentiator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffuser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffusing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffusion pump\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffusor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diflunisal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dig into\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digestive fluid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digestive juice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digital audiotape\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dim-sighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diminuendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diminutive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dine in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dine out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ding\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dinner service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinner set\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dioestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dioestrual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diphthong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diploma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"direct transmission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disagreeable person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disappoint\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discarded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disciplinarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discontentedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discontentment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discount house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discount store\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discounter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discretionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"discriminator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disembark\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disembroil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disheartened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishwasher detergent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishwashing detergent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishwashing liquid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinfect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinherit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disintegrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinterestedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinvolve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disjoin\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"disjoint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disjunct\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.161\"\n  },\n  \"disparate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dispersed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispersive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"displaced person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disrupted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disseminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissertation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissoluteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissolving\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distaff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distributive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disyllabic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divergent thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divertingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dividing line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divinely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divorce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divorcement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divvy up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"do-it-yourself\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"do-si-do\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"do well by\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doc\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"docility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrinaire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"document\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"doddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dog-tired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dog racing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domestic animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domestic partner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domesticated animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domestication\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"dominated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"donnish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doo-wop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doorsill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doorstep\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dormant account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dorsiflexion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dotard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double-dyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double-edged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double-jointed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double Gloucester\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double blind\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double fault\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double flat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double knit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double negative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"double standard of sexual behavior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doubled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doubting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dovekie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dovetail plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dowered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downside\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doxastic logic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doxazosin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doxology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"draft board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drafting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"drag in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drainage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drainboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"draining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"draining board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dramatic play\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dramatically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"dreamland\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dreamworld\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dressing station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dried-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drill-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drip-dry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"drip feed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drive-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"driven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"driveshaft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drop-dead\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drowsiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drugged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drum roll\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dry-shod\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dubitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duck soup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"due care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duffel coat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duffle coat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumbfounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumbfounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumbstricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumbstruck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumfounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumfounding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dump truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duodecimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duplicate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dutiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dwarfish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dwarfishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dynamise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dynamize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"e'er\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eardrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earmark\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earnings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"earthshaking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"easel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eastern lowland gorilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"easy chair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"easy street\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eat in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eat out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecclesiastic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"echoic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eclectic method\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclecticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclecticist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecological succession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"economic consumption\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"economic expert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"economical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"ecosystem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecumenical movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecumenicalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecumenicism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edible cockle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"editing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"editor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"editor in chief\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"editor program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"educational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"educationalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"educationist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eellike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"efferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effervescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.375\"\n  },\n  \"effete\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"efficaciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effortless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effusiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egg on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ego trip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eight-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elan vital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eldorado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elect\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"elected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electric guitar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electric ray\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrical condenser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electron microscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electronic dictionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electronic transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electronic voltmeter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrophoresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electropositive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electroretinogram\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrostatic bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrovalent bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"element of a cone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eligibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eliminator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elision\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"elite group\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elliptic geometry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elliptical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"ellipticity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elucidate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"elysian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.53\"\n  },\n  \"emanate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"emancipate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"emarginate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embrocate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embroil\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embroiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emeer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emendation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emergency room\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emollient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"emotionalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotionality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"empathise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empathize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emphasised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emphasized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empiric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empirical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empirical research\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empiricist philosophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"employ\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"employed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"empowered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empowerment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empty tomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"en famille\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encircled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encore\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encounter group\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encroaching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encyclical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopaedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopaedist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encyclopedist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"end on\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endaemonism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endearment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endemical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endoergic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endogenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endpoint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enduring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"energising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energy-absorbing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfeoffment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enforcement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfranchised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engineering science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engraved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enormously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enquiry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"ensorcelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"enterprise zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterprising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entertainment center\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enthrone\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"enthusiast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"entireness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entirety\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entourage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entreaty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrenched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"enveloping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinophil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinophile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicene\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"epigram\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epikeratophakia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epimorphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinephrin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinephrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"episteme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epistemology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eq\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equal protection of the laws\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"equanimous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equivalence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"equivalent weight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eradicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ergotropism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eroticize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error-prone\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escape expert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eschaton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esoteric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esprit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esprit de corps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esprit de l'escalier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"essentiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"essentialness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estazolam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esthetician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estoppel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ethics committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethics panel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethmoidal vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethnic cleansing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethnocentrism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethnology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethosuximide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eudemonism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eugenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eurhythmics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eurhythmy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eurythmics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eurythmy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evanescence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evaporable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evasive action\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"even-pinnate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"even off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"even spacing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eventful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ever-present\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"everydayness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evidenced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exactly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"examen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"exanimate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excellency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excellently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excitant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excitedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclaiming\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclamatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclusiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excogitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"executive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exercise device\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exhausted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"exigent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"existential operator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existential philosophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existential quantifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existentialism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exoergic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exonerative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expandable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expanded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expandible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expansible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expansion slot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expatiate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expectant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"expected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expediently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expeditiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experimenter bias\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expert witness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expiate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exposure meter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expressionless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expressway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expurgated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exquisiteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extended\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.19\"\n  },\n  \"extended care facility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extensiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extenuating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exteriorise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"externality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinguishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extra\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extra time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extractible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extracurricular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"extramarital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extramarital sex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extraordinarily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extravagancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extreme right-winger\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extrinsic fraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extropy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eye-catching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eye-drop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eye clinic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eye muscle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyeball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyedrop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"eyelid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyepatch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyeshot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faceplate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facilitator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facts of life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"factually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faddish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faddy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fagged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fair deal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fairground\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fairness commission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falcate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falchion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falciform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falconry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fall from grace\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fall guy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fall short\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falteringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Acrididae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Bradypodidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Bramidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Bufonidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Crocodylidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Curculionidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Dracunculidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Erinaceidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Geophilidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Kalotermitidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Locustidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Percidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Sepiidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Vespertilionidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Xiphiidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fanatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fanatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fang-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"far-flung\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"far-off\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"far left\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farfetched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farm animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farrow\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farseeing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fashion business\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fashion industry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fast-growing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fast break\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fastidious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatherliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatigued\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fattening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faultfinder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faultfinding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"favorable position\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"favorite son\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"favourable position\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feasibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feasibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feathered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"feathery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"feature article\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febrile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fedelline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feel like\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fellate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fence mending\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fencer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fend for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fenestella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feng shui\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fermentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferocious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferret-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferroconcrete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fertilise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"fertilize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"fervent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fervid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fervor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"fervour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"festschrift\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudal system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudatory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiber optic cable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibre optic cable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibrillose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibrocalcific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fictional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fictitious place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field guide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field hockey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of operations\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of regard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of study\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of vision\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fighting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figuration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"figured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figurer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figuring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"file-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"filial love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"fill the bill\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fille de chambre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filling station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"film editing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filthy lucre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filtration surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"financial backing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"financial support\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fine-tooth\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fine-toothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fine arts\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fines herbes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finiteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire trench\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firebase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fireman's ax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fireman's axe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fireplace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firewater\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firing pin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firm\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firmness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.313\"\n  },\n  \"first-aid kit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"first-aid station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"first blush\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"first light\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firsthand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fishtail palm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fit the bill\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fitted sheet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"five-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flabbergasted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flagstone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flame-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flame-retardant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flameproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flash-frozen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flawlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fledgeling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flee\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fleecy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fleshly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flexuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flick-knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flick knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flirtation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flirting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floaty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flocculent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flood in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flooding\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"florid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"flossy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floury\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flower people\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flowered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluid flywheel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluorescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogbound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folding saw\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foliolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folk tale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folktale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"follow out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"follow up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"food cache\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foot doctor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foot race\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footbridge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footrace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footstall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"for the asking\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forcible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forearm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foregoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foregone\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foreign legion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foreknowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forensic medicine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forensic pathology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foreordained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forestalling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forficate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forgettable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forgivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forgivingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"formality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"formalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"formally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"formalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formulaic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.505\"\n  },\n  \"fortuitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"fortuitousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fortune hunter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"forward pass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foryml\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foulard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"four-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"four-part harmony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"four-poster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fourth cranial nerve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fox terrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragrancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frame of reference\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"fraternisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraternization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-lance\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"free-liver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-living\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-range\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free electron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free love\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free state\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"free trade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom from cruel and unusual punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom from double jeopardy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom from involuntary servitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom from search and seizure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom of religion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom of speech\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freedom to bear arms\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freehand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freelance\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"freestyle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freeway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freeze-dried\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"friend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"fringed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"fringy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frolic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frugal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fruitfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fulgent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full-blooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"full-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full-wave rectifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full blood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full faith and credit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full gainer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"fumed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"function\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"functional illiterate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral-residence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral chapel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral church\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral home\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral parlor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funfair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"fungicidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funniness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furbish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furring strip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furtherance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuscous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusiform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuzzed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuzzy logic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gag line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaga\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gallantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galvanic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"gambol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangling\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gangly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"garbology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garment industry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garmentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garnishee\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas-filled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas-tight\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas well\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gash\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasoline station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gatepost\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gathered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gathering place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaudy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gauntleted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gay lib\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gay liberation movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gayness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gear up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gemmule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gender identity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general-purpose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"general relativity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general relativity theory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general theory of relativity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geneticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geniality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genital phase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genital stage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genteel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gentle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"genuine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.361\"\n  },\n  \"genuineness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"genus Bacillus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Pezophaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Phthirius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Phthirus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Rattus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geographer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geographic point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geographical point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geographically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geologic process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geological process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geometrically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geopolitics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geordie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerrymander\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gesso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gesticulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get-well card\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get a line\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get dressed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get hitched with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get married\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get wind\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get word\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gibber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gibberish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gild\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gild the lily\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimbal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ginger up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gingerroot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"girder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"girl wonder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"give and take\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"give ear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glabella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glabrescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glabrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glamor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glamorize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"glamour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glamourise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"glary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glass-like\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gleaming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glimmer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glisten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glitter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globe-trot\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globe pepper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gloriole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glossiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glottochronological\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glutathione peroxidase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnarled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnarly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnathostome\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go-as-you-please\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go back on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go deep\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go down on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.185\"\n  },\n  \"go game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go steady\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goal-directed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"god-fearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goddam\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goddamn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"goddamned\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"godliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"going-out-of-business sale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gold mine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"golden-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golden-yellow\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golden age\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golden handshake\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golden oldie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goldmine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf glove\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"good faith\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"good part\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"good time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goodly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorgeously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gouge out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"governing body\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"government man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grad school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gradatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graduate school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graduated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"graduated table\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grammatically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gramophone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grand slam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graniteware\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grape-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graspable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gratified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"graven image\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"great hall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green-blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green pea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green pea soup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green pepper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greening\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grooved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ground-service crew\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ground crew\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ground rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grounding\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"group practice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"growing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"growl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guarantor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardrail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guidebook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guild\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guileless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gun enclosure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gun muzzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gun turret\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gunstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gusher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutter press\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gymkhana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gymnast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gymnastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"gynandromorphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gynandromorphous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habitability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habituate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"haecceity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-relief\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-seas-over\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-timber\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-timbered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-time\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-track\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-tracked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-witted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half gainer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hallucinogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand-held\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand-loomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand-me-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand mirror\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handbell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handbreadth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handcraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handcuff\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handheld\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handicapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handiwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handle with kid gloves\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handsbreadth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"handwoven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hank panky\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"happy chance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"happy event\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard core\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard water\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hardware error\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harlotry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harmoniously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harnessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haughtiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hauling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hauteur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hawfinch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hawk-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hazy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"he-man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"head-to-head\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"head honcho\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"head shop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"head start\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headfirst\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headlinese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headlong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"headquarter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headwaiter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"healing herb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"health club\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"health code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"health spa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearsay\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearsay evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heart-to-heart\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heart-whole\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heart and soul\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearth money\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heartland\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heating plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heating system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heavenward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heavy-armed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heel counter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hell-bent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hellishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"helmeted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"help desk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"helpdesk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"helpfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"helping hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemiparasite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemostatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"henpecked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herbal medicine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"here\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereditarianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereditary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hereness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heretofore\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"herrerasaur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrerasaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hesitant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hesitating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterodactyl\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterometabolic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterometabolous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterosexism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterosporous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterotroph\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heuristic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heuristic program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heuristic rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hi-tech\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hide out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hifalutin\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-backed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-handedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-level\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"high-tech\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-toned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-top\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-topped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high comedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high explosive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high fidelity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high finance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higher\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"higher education\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higher rank\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higher status\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highfalutin\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highfaluting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highflier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highflyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highly-sexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highly sensitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"hilt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hindering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hippies\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipsters\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"historic period\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hit the jackpot\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitchhike\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitherto\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hive up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hobnailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoe handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoggish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoity-toity\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holistic medicine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holographical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holy day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holy man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holy person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holy place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"home appliance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home brew\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home computer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home folk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home movie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home study\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home theater\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home theatre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homebound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homebrew\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homecourt advantage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homemaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homeothermic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homeowner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homestead law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homewards\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homily\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hominal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homing pigeon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homing torpedo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocentric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocyclic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homoecious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homoeroticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"homoiothermic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homosexual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homosexualism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homosexuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homothermic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"honeyed words\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorable mention\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorary degree\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorary society\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honoris causa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hook and eye\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hook up with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hooklike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hooks\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoop pine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoover\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hop pole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horn-rimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horned chameleon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital room\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital ward\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospitalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hostler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hot jazz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hot tub\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hour circle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"houri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"hourlong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"house arrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"house centipede\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"houseboat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"housefather\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"household appliance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"householder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"houseman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"housewifely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"huddled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hugely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human being\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human dynamo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human head\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human language technology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human palaeontology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human paleontology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanitarianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humblebee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humidify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humor\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humour\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hungry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hunting knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hurrying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyaline\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyaloid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyaloid membrane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogenate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrophilic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrophytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hygienics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hygienise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hygienize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyoscyamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypercapnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypercarbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypercritical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperfocal distance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperglycaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperglycemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypertrophied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypnagogic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypnogogic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypnotise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypnotize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypostasis of Christ\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypothalamically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ibn Talal Hussein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ice show\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ice yacht\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iceboat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"icebreaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iconoscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"icterogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"idealist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ideality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"identified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ileal artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illustriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaginable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaginary place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaginative comparison\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imagism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imbecilic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immaculate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"immemorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imminent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immotile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immune carrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immunofluorescence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immunogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impassioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impeding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impendent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impending\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impenitent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impenitently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperforate anus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implanted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implicative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imploring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implosion therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"important\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"imposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impossibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impressiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"improver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"improvised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in a similar way\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in and of itself\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in concert\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in fact\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in for\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in her right mind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in his right mind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in kind\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in other words\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in point of fact\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in practice\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in public\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in question\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in reality\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in small stages\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in the lead\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in their right minds\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in use\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in vivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadvisably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inamorata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inamorato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendiary bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incisively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"incisiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incognito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incommensurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"incomputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconclusively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconsiderately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconspicuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incorporated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"increase\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"inculcate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inculcation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incurvate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incurved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefatigability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefatigableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indentured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"independent clause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indirect object\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"individual retirement account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"individualised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"individualized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indivisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"induced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inducement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"indurate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"industrial psychology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"industriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inerrancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inestimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infallibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infectious agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infective agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inferential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.198\"\n  },\n  \"infernally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infirmary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflectional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"informative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"infra dig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infrared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infrequently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingraining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingroup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingrown toenail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inheritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inherited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhibited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhibitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"initial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"initiative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"initiatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inner circle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innocency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innovation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"innumerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innumerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoffensively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inordinately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquiry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"inquisitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inquisitorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"inquisitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inside information\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insider information\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insightfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insisting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspiring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspirit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instantaneous sound pressure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instigative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instilling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"institute\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instruct\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"instrumentalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"insulin shock therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulin shock treatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurable interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integrality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integrated logistic support\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"intellectually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligentsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intemperately\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intensified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intensifying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intensive care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intentionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercalary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercept\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercontinental ballistic missile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdependent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdisciplinary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interestedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intermarriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"interminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intern\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"internal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"internal control\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"internal representation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"international logistic support\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interne\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interocular lens implant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpretative dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpretative dancing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpretive dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpretive dancing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interrelate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"interrogative sentence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interrogatory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intersect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intersection point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intestinal artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intoxicating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"intra vires\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intrinsically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"introspect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"introvert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intrust\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intuit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intuitionism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inunct\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inundated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inventory\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invitational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"involutional depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"inwardly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iodise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"iodize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"iodochlorhydroxyquin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionic bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionophoresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionosphere\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iris scanning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ironlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ironman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrational motive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irritative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isocyclic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isoniazid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isosceles\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isosmotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"italic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itsy-bitsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itty-bitty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jabber\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jacks\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jade green\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jam-packed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jammed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jampan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jauntiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"jawbone\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazz up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jejunal artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jeu d'esprit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jibe\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"jiggered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"job-oriented terminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jocosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"joint venture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jollification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"journeyman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judicial decision\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juice up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jump off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jump out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jump shot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jumping up and down\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"junction transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juniper berries\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jury-rigged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"just about\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justificative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justificatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juxtaposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kabbalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaleidoscopic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaleidoscopical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"karaoke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keen-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keep away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keep company\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratoplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"kick about\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kick turn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kid glove\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kill oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"killable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kindliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kindred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"kite tail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"klaxon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knife blade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knitwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knobbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"know\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knowledgeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knowledgeableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knucklebones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"koinonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kotow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kowtow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"la-di-da\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labeled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labor movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lacelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lacrimal vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lacy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ladder\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ladylikeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laid-back\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laissez-faire\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lally\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lally column\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lambent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laminar flow clean room\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lampoon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lancelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanceolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landscape architecture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"language barrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lantern-fly\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lantern fly\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lap of honour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"last mentioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lateral pass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laugher\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"laughingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laundry detergent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law-abiding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law firm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of averages\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of diminishing returns\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of the land\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lawcourt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lawn tennis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lay away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lay claim\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laying on\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lazuline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lbf.\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead by the nose\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leaded gasoline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leaded petrol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lean against\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lean on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"learned profession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"learning curve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lease-lend\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lech after\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lecherous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lectern\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leechlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"left-handedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"left wing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leftism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg-pull\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg-pulling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg curl\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg curling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg exercise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leg extensor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legal fraud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legal residence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legerdemain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legerity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leggy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"legislate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lemonade mix\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lend-lease\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lender\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"length of service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lenity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lens hood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lens implant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lens of the eye\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesbian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lexical meaning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertarianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"library science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licence\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"license\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lido deck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liege subject\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liegeman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lieu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"life-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"life-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"life force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"life tenant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lifelong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lifesize\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lifework\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light-boned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light meter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lighting-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lightly armored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lightly armoured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lightning bug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like clockwork\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"likelihood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"likeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lilac-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limited audit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limited liability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limnology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limpidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"limpidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lindy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lindy hop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line-drive single\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line drive\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line of merchandise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line of products\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line single\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lingually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linguistic atlas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linguistically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linoleum cutter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linoleum knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lionise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lionize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liposomal delivery vector\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liquefiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liquescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liquifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"listed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literary composition\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literary genre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literary study\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"literary work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"litotes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little auk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little slam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"live-bearer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"live birth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"livestock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"living quarters\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"local option\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"localised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"localized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"located\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locomote\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lodge in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loggerhead turtle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"logical positivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"logically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"long-acting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-legged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-shanked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-staple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-tailed weasel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-wearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-winded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-wool\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-wooled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longanimity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longsighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longstanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longtail weasel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"longtime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lop-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lossless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lounge chair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"love match\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loved one\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low-altitude\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loyally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lucent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lucidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"lucidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luck out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lucubrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luging\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lulu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminesce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lunar day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lurking place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lust after\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luxuriation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luxuriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lycanthropy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lynx-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lyophilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lyophilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"machine readable dictionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"machmeter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macho-man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macrobiotics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macroscopic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macroscopical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"made-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magic trick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maglev\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnanimity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnetic levitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnificently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mahlstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mahogany-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maiden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maiden flight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maidenliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mail-cheeked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mail-clad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mail call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"main clause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitre d'\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitre d'hotel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major-league club\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major-league team\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major key\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major mode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major tranquilizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major tranquilliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major tranquillizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"majuscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"majuscule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"make-do\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"make-work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"make it\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"make peace\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"make sense\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"makeshift\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maladaptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maladjustive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"male chauvinist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malvasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mammalogist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"man-portable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manacle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"managed economy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"management consultant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"management consulting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manager\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"managing director\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"manlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"manliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manna from heaven\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"mansion house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantis prawn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manual dexterity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marauding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marbleisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marbleising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marbleization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marbleizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marginality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"market capitalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"market capitalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marooned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marriage contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marriage offer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marriage proposal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marriage settlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marry\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"martial music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"martinet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marvellously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marvelously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masculinity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"masochist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mass\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mass meeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"massage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"master class\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastership\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"mastoidale\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masturbation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"match plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matchboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mateless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materiality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"maternal quality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mates\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mathematical space\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matinee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matrilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matrilinear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mattock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mattress cover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maulers\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maulstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maverick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maximally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maximising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maximization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"maximizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meadow grass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meadowgrass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mean solar day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meandering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meaningfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"means test\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"measurably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meat hooks\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meat safe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meaty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"meclofenamate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meclofenamate sodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"median\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"median value\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mediate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"medical intern\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medical school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medical science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medicate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"medicine ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meditativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medium-large\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medium-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medium-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meetinghouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meliorative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meliorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meliorist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mellow out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodic line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodic phrase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melody\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melon ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meltable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"membrane-forming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memorabilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memory chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menage a trois\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mend\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental dexterity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental representation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental synthesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental test\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental testing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mentally retarded\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mepacrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercantile establishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercenary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merchandising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meringue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meritoriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merrymaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesne lord\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesophyron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesophytic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metabolous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metacarpus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaknowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaphoric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaphorical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaphysics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metastable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methanogen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methenamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"method acting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methodological analysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methotrexate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methotrexate sodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metonymic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metonymical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metonymy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metopion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrazol shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrazol shock therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrazol shock treatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metronome\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mew\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"mexiletine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezuza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezuzah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezzo-relievo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezzo-rilievo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miasmal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microphotometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"middlemost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"midget\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"midmost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"midsummer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"might\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"might-have-been\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mightily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mightiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military march\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military position\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military science\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military volunteer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"milldam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"millennium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"mind-altering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mind-bending\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mind-expanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineral resources\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miniature\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimally invasive coronary bypass surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimum\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miniscule\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minister of religion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minor surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misalliance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misbehave\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misdemean\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misfeasance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missile defence system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missile defense system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missionary position\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missionary post\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missionary station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missionary work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"misty-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misunderstood\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mithramycin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mnemonic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mob\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mobility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mock-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mod\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"moderate-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderate-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modern font\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modernistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moisturise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moisturize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"molal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"molded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monarchic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monastic order\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monitoring\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoamine neurotransmitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monocled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monosyllabic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monotheism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monthlong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moot court\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mop handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mop up\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moral certainty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moral philosophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morale builder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"morganatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morganite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morphologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortgage-backed security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motherliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motion-picture show\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motion picture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"motive power\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motor-assisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motorway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouse-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouse-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouse button\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouth off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movable feast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"move up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"moveable feast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moving-picture show\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moving picture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multi-ethnic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multibank holding company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multidimensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiethnic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiplied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multipurpose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiracial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multitudinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mum\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mundaneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mundanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"munificence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.237\"\n  },\n  \"muscularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"musculus temporalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musical drama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musical note\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musicianship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muster call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutafacient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutagenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mute\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutual aid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutualist\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutually beneficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mydriatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mydriatic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myofibril\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myofibrilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myriad\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mystic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mystique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mythical place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mythologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nail-biting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nailbrush\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naked option\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nakedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.315\"\n  },\n  \"nalidixic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naltrexone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nankeen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"napped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naprapathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narrow gauge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narrowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"nasal canthus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nascence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nascency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"national monument\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"national service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nativity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natural endowment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natural language\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natural language processing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nature study\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"navigability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ne plus ultra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"near-blind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nearby\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nearness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neatness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"nebuchadnezzar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neck-deep\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nee\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"needfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"needlelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"negotiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negroid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neigh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neighbor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"neighboring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neighbour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"neo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neoclassicism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neostigmine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nestle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"netlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"netted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurobiological\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuroethics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuroleptic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuroleptic agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuroleptic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"never-never land\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"new criticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"new town\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"newfound\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"news event\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"newsletter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"newssheet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nibbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nicely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nickel note\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nicker\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nickname\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nilpotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nimbleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ninon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nipping\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrofurantoin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitty-gritty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no-frills\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noblesse oblige\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nombril\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nominate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"non-Catholic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-Christian priest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-Euclidean geometry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-buoyant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-elective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-poisonous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"non-resinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-resiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-resistant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonappointive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noncommissioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noncompliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonelected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonelective\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonglutinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonimmune\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonkosher\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonliteral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmotile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonparasitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonpoisonous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"nonresinous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonresiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonsegregated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonsymbiotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonuniformity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonverbal intelligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonviscid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonworker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"northern oriole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nose job\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosh\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nostalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nota bene\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notational system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noticed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notifiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nourish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"novation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear chemistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear warhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nude painting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nude sculpture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nude statue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuke\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"numberless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"numbfish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nurse-midwife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nurtural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nurturance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nurturant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nurture\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"nutritionist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nymphet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obelion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obiism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"object ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objectiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objectivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oblate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oblateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obliger\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obliterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"observational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstructive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obtrusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"obviation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occlusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occupation licence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occupation license\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occupational group\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occupational therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oceanic bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octosyllabic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculus dexter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculus sinister\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odds-maker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oenology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"of import\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-limits\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-the-peg\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-the-rack\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-the-shelf\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-the-shoulder\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"officialese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"officially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"offset printing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oil-bearing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"old-fashionedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"old boy network\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"old hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"old stager\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olden\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oldie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olfaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olfactory modality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olive-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olive-drab\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olive-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omissive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ommastrephes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnidirectional radio range\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnidirectional range\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnipresent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnirange\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omniscience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omniscient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on-going\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on-site\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on a regular basis\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on purpose\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on request\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the job\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the road\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the table\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on tour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"one-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"one-winged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ongoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onomasticon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopoeic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"onomatopoetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"onymous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onyxis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opaline\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"open-chain\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"open marriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"open sesame\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"open society\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opencast mining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"openhandedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opening night\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"openside plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opera bouffe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opera comique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opera company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operating capability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operating microscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operationally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operative field\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ophryon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ophthalmic vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opisthognathous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oppugn\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical aberration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical device\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical instrument\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical telescope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opulence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"or so\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oral personality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oral stage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orange-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orange-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orangish-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oratorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Charales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Ganoidei\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Ostracodermi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Perciformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Percomorphi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Scorpionida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordered series\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordinary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ordinary care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"orgasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orientated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oriented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orinasal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orinasal phone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamentalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orthostatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orthotropous ovule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscillating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscillatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmotic pressure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteologer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-body experience\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-door\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-the-box thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out of practice\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out of whack\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outdoor man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outermost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outgoing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.433\"\n  },\n  \"outlying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outmost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"output contract\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outrigged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outshout\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outsider\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"outsize\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outsized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oval-fruited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"over\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"over the counter security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overachieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overconfidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overcritical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overcrossing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overdelicate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overeating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overexert oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overexposure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overflow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overflowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overgenerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overhand\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"overheated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overlooking\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overlying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overmuchness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oversexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oversize\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oversized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overstuffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overstuffed chair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oversupply\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overvalue\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overzealous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxidized LDL cholesterol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxyphenbutazone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pacification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"packable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"padding\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paediatrician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pagoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paid-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paint the lily\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paintball gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pal up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palaeoanthropology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatopharyngoplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleoanthropological\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleoanthropology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palmately-lobed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palpability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"palpebra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pampering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pancreatic vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panel discussion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panoramic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pantryman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paper doll\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paracentral scotoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paradiddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parallel circuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paramagnet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paramedic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paramedical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parcel post\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parceling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parcelling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parimutuel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paripinnate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parlance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parochial school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parody\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paronomasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paroxetime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parrotlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parson\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"part-time\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"part with\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"participate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"partnership certificate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"party game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasquinade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passbook\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passive resister\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"past participle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"patent ductus arteriosus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patented\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paternal quality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paternity test\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pathologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrilinear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrimonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patriotically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrol\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patronage\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"patronised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patronized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paunchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pave\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pawn ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pawnbroker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pawnbroker's shop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pawnshop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pay heed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pay up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paymaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"payola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pea-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peace initiative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peace pipe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peace treaty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peacock-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pearlescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peasanthood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pectoral girdle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedagogics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedagogy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"pedantic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"pedestrian bridge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediatrician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediatrist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedicure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peek\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelagic bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pellucidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"pellucidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pencil cedar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"pencil sharpener\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penetrability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penetrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pension fund\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pentasyllabic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pep\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pep rally\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peppiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"per capita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"per se\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptual constancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"percussion instrument\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"percussive instrument\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perdurability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perdurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfect participle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfervid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perforate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"performance capability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periapsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perihelion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periwigged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perpetrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona grata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personal loan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perspicaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perspicuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuadable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuasiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peruked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perviousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesantran\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesantren\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pet sitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pet sitting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petitionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petrol station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phaeton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phalarope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phallic phase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phallic stage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantasma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantom\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharaoh's ant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharaoh ant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharmaceutic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharmaceutical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharmacokinetics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pharmacologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phasianid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phatic communication\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phatic speech\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phenomenology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"philosophical system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"philosophizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"philosophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"phonation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phone bill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phone call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phone company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phone service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phonemics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phonetic transcription\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phonics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phonograph needle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phonology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photo finish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photochemistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photographic print\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photometry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photosphere\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phraseology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phylogenetic relation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.173\"\n  },\n  \"physical entity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physician\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physician-patient privilege\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pictographic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picture show\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pictured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"piece of cake\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piecemeal\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pierced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pig-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pigeon-toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piggish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piggy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilgrim's journey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilgrimage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillar of strength\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinchbeck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pineal eye\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ping-pong ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pink-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pink-tinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pint-size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pint-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pipe of peace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piping crow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piping crow-shrike\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piroxicam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pistol grip\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitch in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitch pipe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitprop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pizzicato\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"place setting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"placental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placer mining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plagiarised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plagiaristic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plagiarized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plain-woven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plain weave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plane ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plangent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plankton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plash\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plausible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"play down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"play false\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plaything\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleading\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleasant-tasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plebeian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pledge taker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleuropneumonialike organism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plexus cardiacus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plinth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ploce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plumpness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plushy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"pocket comb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pocketcomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"podiatrist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"podlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poeciliid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poeciliid fish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pogonion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"point of honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"point of intersection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"point of periapsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pointed-toe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pointedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pointedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pointy-toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poison pill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poker-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poker hand\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pole position\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polishing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"political correctitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"political correctness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"political detainee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"political liberty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"politically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poltroon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polyestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polygenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polyoestrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polysyllabic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polysyndeton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polyvalent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ponderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pop tent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popgun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populariser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popularizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porn merchant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pornographer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portion out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"positionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"positioner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"positively charged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"possibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postmodernism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postoperative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pot-trained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pot roast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potage St. Germain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potbellied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potential divider\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potential unit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potty-trained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouring\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"powder-puff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"powder blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"powdered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"powdery-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"powerful\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practical politics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practice of medicine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prayer meeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prayer service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pre-emptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preachment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preciosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"precipitating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precipitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"precisely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"preclusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precocious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"precognition\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predestinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predestined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predictable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predispose\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prednisolone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preemptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preferably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prehensile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"prejudgement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prejudgment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preliminary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"premise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"premiss\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prenatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prentice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preoperative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prepotency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescript\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescriptivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"present\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"present-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"present perfect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"present perfect tense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preservative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"press stud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pressure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prettiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preventable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevention\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prewar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"price-controlled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pride of place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pridefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"priesthood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"priestly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"primaeval\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primary sex characteristic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primary sexual characteristic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primeval\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primidone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primordial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"principal axis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prison chaplain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"private foundation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"private nuisance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"private security force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"privy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"prix fixe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"probable cause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probiotic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probiotic bacterium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probiotic flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probiotic microflora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procreation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procrustean bed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procrustean rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procrustean standard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"product line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"productively\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"productivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"professionalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"profitably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"program library\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolix\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"promise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"promotional expense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"promulgated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prongy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proofed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"properly speaking\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propertied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"property-owning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"property right\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propitiate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propitiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proportion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"proportionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proportional font\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proposal of marriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proprioception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"props\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prospect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostheon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prosthion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prosthodontist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostitution\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protagonism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protanopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protean\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protective coloration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protector\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protectorship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protege\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prothalamion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prothalamium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protogeometric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prototype\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proverb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provocative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"provost guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxemics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudohermaphrodite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudohermaphroditic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychedelic rock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychoactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychological operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychometric test\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychotropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psyop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pteridologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public-service corporation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public charity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public easement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public lecture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public presentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"public trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public utility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public utility company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"publically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"publicizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puff\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puffery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puissant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pull strings\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pull the wool over someone's eyes\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pull through\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"pull wires\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulley\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulley-block\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulley block\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulverised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulverized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punch-drunk\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punch line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punctually\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punctured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pungent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"punning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purchasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"purchase\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pure mathematics\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pure tone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puritanical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.382\"\n  },\n  \"purple-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple-tinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple-tinted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purplish-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purplish-green\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purplish-red\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purposely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purr\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"purse-proud\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purview\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"push up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pussycat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"put differently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putout\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyrotechnic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyrotechny\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quadrate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quaint\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"qualitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"quality of life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quantum field theory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarantined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quark cheese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarters\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quick-drying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quick-frozen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quicken\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.391\"\n  },\n  \"quickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"quiff\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quilting bee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinacrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinacrine hydrochloride\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinidine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quintessential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quip\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quite a\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quite an\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quiz\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quotidian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbet plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabble-rousing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racecourse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racetrack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racialist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racing boat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radar echo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radial symmetry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"radiating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radical chic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radical sign\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radioactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiochemistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiolucent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiotherapy equipment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radius of curvature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raffle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raffle off\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rafter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rag trade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ragtime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raiding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"railroad tie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"railway junction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raimentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rain dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rainless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raisin-nut cookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rampant arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"random number generator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"range in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ranging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rant\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rapidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rapport\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rapprochement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rase\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratified\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rattlebrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rattlepated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rave\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"ravishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"raw talent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raze\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"re-argue\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"re-echo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reactionary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"readable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reading desk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reading lamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reading program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"readmission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ready-to-eat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ready-to-wear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"real McCoy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"real life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"real stuff\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"real thing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"real world\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realpolitik\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reason\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.129\"\n  },\n  \"reasonable care\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reasoning backward\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebind\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"receptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"recessional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recipe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reciprocal pronoun\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reciprocality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reclamation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"recluse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recognizably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recombinant human insulin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recommendation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"recompense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"record book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recreation facility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recreational facility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rector\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rectorate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rectorship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recurrent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recursive routine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-fruited\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-lavender\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-letter day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-violet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red ink\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-lavender\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reddish-pink\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reddisn-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reducing agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reductant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redux\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reedlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reedy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refashion\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reference book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reference work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refinish\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflectorise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reform school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refractile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refractive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refractory-lined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"registered representative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.164\"\n  },\n  \"regularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"regulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regulatory agency\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regulatory authority\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reharmonisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reharmonization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"reincarnate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reinforced concrete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reinstate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"reinvigorate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"related to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relative density\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relaxant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relaxation method\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relent\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religionist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious doctrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious holiday\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious mystic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious mysticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious order\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious residence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious rite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious sect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reliquary\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remake\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remarkably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"remediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remember oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reminisce\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remunerate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renege on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renegue on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renewable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renovation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"rentier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reopen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repeated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repechage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repossession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"representational process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"representative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"rescindable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rescue operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resolving power\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respectfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resplend\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resplendently\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"responsible for\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"responsibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rest period\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restraint of trade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restricted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"resulting trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resurrection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retail store\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retained object\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retarded\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rethink\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retinal scanning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retinue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retirement community\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retirement complex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retouch\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"retread\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retrenchment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"retrievable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retroactive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"return on invested capital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"return on investment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revenue enhancement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverberant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reversibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reversible process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"revitalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revival\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"revolutionism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rewire\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rhinoplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rhymed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rhyming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ribavirin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riding bitt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rifampin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right-angled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right-handed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"right-handedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right-wing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right hander\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right of re-entry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right on\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to an attorney\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to confront accusors\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to due process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to life\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to speedy and public trial by jury\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right to vote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right wing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"righthander\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rightish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rightism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rights issue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rights offering\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ripeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"risen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rising prices\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"risklessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritualistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"road sense\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rock opera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rock sea bass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rogation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"role model\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roleplaying\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romanticisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romanticization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"roof peak\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"room temperature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rose-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rose-tinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rose-tinted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roseate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rosin bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rosy-purple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rot-resistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotary actuator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rouged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"round-arm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"round dancing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"round out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"roundedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roundsman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"routine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"royal brace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubber stamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rudiments\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rugged individualism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rule-governed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruminator\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"run-on sentence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"running shoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"running stitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"runtiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rural free delivery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rurality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"russet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rust\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rust-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rust-resistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rustless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rusty-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sack up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacred scripture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacredness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacristan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safe harbor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety feature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety rail\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sailing-race\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sainthood\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"saintliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sales outlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salesmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.315\"\n  },\n  \"salving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"same-sex marriage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sampling station\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanctitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanctity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sand-blind\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sandboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanitary code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saponaceous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarcostyle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saturate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"savings account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saw-toothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scale of measurement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scalloped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scarf bandage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scatty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"scenically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sceptered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sceptred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schmoose\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schmooze\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schmoozer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schola cantorum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school assignment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school of dentistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school of medicine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school of music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school of thought\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"school system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schoolwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"science fiction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"science museum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scientific knowledge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scientifically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scientist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scolion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scops owl\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scoreboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scorekeeper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scotch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scratch line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"screaky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"scripted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scripture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrumptious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scuffle hoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sculpted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scurrying\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sea god\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sea green\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"season ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seasonableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seat cushion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sec\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second-string\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second reading\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second string\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secondary modern school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secret code\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secularism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"securities industry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"securities market\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"security force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"security interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"security measure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedative drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"see to it\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seeded player\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seeming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"segregated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seif dune\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"select committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selective service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selectivity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-absorbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-abuse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-addressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-aggrandisement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-aggrandizement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-collected\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-confessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-conscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-consistent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-cultivation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-deceit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-deception\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-education\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-effacing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-gratification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-involved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-loving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-possessed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-praise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-proclaimed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-respectful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-respecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-sacrifice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-stimulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selfless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selfsame\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selling point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semi-formal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semi-processed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiautomatic pistol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicircular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicomatose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiconscious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiempirical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiformal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semilunar valve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seminal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"semiofficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiparasite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiskilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semisoft\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semitransparent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sendup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"senior pilot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"senior status\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of humour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of smell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensible horizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensitising\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensitizing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sententious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sentient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentimentalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentimentalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"separably\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"separated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"separative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"sequential\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seriocomedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serpentine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sertraline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"service book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"service break\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"service call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"service program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"services\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servomechanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servosystem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"set-aside\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"set piece\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"set theory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setting hen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"settlement house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seven-day\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seventh heaven\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sewed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sewn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex appeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex manual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex symbol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexploitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexual activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexual climax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexual conquest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexual morality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexual practice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexualise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexualize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shadow box\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shadowed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shahadah\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shamelessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shape\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharpener\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sheath\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"shed light on\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sheen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sheltered workshop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shielder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shininess\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shirtdress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shirtwaist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shirtwaister\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shitlist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shmoose\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shmooze\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shock-absorbent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoe polish\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoofly pie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoot for\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoot the breeze\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shop at\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shortfin mako\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shot hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shove-ha'penny\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shove-halfpenny\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shovel board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shovelhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrew-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrewdness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shunning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shunt circuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shuttered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sibilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sickle-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sidekick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sight gag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sight setting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sighting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signatory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"significant other\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"silviculture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simple machine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simplify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultaneity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultaneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultaneousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"single-breasted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"single-lane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinistral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"sinistrality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinistrorsal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinistrorse\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinusoidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sirdar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sitcom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"situated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"situation comedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"size\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skedaddle\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skeg\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skew\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skilled worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skilled workman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skin and bones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skittishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skyward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slack up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slanted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"slanting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slapdash\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaveholding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slavish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sleep around\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleepless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleepover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleeved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slender-waisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slender-winged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"slick magazine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slicked up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"slim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"slim-waisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slippy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slipshod\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slithery\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sloped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slow-witted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small-grained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small-time\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small loan company\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small slam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smallish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smitten\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"smooth-shaven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smooth-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smooth out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smoothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smoothened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snack food\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snakelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snaky\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snap fastener\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snap line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snapline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snuggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snugness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social climber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social club\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social event\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social reformer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"social worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socialite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociobiologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociolinguistically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociologically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socket wrench\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sodding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soft-footed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soft pedal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soft touch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"softening\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"softish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soil-building\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solar day\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solo blast\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solo homer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"solvability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solvent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somatogenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somatogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"some\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somebody\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"someone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somewhat\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"somniferous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnolence\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"songbird\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"songlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonic boom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonic delay line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonnet\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"sonorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorbate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorbefacient\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorrel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soul mate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound film\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound pressure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound projection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound reflection\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound reproduction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound wave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soundman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"southernness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sovereign\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"space capsule\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"space vehicle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spacecraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spaceship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spacial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spaciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spade casino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spank\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spare time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sparing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spark coil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sparrow-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spatial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spatially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spattered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spatula-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spatulate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speak in tongues\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speaker identification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speaking tube\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spear-point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spear up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spearpoint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"special delivery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"special education\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"special jury\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"specialism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"specialist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"specialistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"specialty store\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"specific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"speckless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spectacled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spectacular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spectrophotometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speech sound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speech spectrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speedily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speedup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spheric\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spic-and-span\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"spice rack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spick\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spick-and-span\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"spiff\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiff up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spindle-legged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spindle-shanked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spindle-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spinnability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spinnbar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spirit\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spirit up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritual rebirth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spirituality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"spitting image\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"splattered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"splendidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"splint\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spondaise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spongelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"spongy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sponsorship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spontaneous abortion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spoof\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spot-weld\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spot pass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spot weld\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spotless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spotweld\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spousal equivalent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spouse equivalent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spread\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"sprechgesang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprechstimme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprightliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"springing cow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spruceness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"square-shouldered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"square deal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squared-toe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squarish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squeaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squeezability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squirrel-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squirrel away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stabile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stabilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stabiliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stabilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stable\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stableboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staff\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"stage effect\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staggering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staggeringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stainable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stake driver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stall-fed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stalling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stammel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stanchion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stand-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"standard gauge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"standard operating procedure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"standard procedure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"standing operating procedure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stapes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starets\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stargazing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starship\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starting line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starting post\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stash\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"statant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"state-sponsored terrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"state highway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"state of war\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stateless person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"statistically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"statuary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stature\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"stead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steadfastly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steady\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steady down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steam fitting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steam whistle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steep-sided\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stellar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"stenosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stenotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stentorian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"step-by-step\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stephanion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"steppe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stepwise\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sterileness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sternpost\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stick-on\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stick around\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"stigmatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stigmatist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stillbirth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stilly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stilted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stimulant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stimulant drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stimulus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stinting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stipulatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stirred\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"stirrup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stirrup iron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stitched\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stock-take\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stock exchange\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stock market\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stocker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stockholders meeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stocktake\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stomach exercise\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stomatopod\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stomatopod crustacean\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stoop to\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stopgap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storage-battery grid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storage allocation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stoutheartedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stoutly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stow away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straight-arm\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straight and narrow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straight thrust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straightaway\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strait and narrow\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stranded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strange attractor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strapado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strappado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"street clothes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"street cred\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"street credibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strengthen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"strengthener\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strenuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"stretch mark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"striated muscle tissue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strictly speaking\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strip-mined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strip alert\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strip lighting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strip mining\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"striped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"striped drum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stripling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stripy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stroll\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strong-arm\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strong-growing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"structural member\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"structural sociology\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"structure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"studied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stuntedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"style of architecture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stylemark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stylised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stylishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stylized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"styptic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sub-rosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subcontinent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subculture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subduable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subject\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"subject area\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subject field\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjectiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjugable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublimely\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublimity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Lacertilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Lipotyphla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Sauria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subordinate clause\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subroutine library\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subscriber\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"subsidiary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subsidise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"subsidize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"subterranean\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"subterraneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"subvent\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subvention\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"succeed\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.53\"\n  },\n  \"successive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suede glove\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suffrage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sugar candy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sugarcoat\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"sugared\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sui generis\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suicide pill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suitability\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfa drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfisoxazole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfonamide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulpha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sultry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"sum total\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summative\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summer solstice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumpsimus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumptuary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sun dance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunburst pleat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunray pleat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superabundance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superannuation fund\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superbly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supercritical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supergiant\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superhuman\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superincumbent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superior cerebellar artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superior epigastric veins\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superior ophthalmic vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supernatural virtue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supervisory\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supplemental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"supplementary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"supplier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"support level\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"support payment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"support system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supporting structure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suppressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supra\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supraocular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supraorbital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremacism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sure thing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surpassingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surprised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrebuttal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrebutter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrejoinder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surreptitious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"surrounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surveillance system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"susceptibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"susceptibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspenseful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sustainment\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sustentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swagger\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swami\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swash\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swatch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swear in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweat equity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweep oar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet-breathed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet-flavored\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet nothings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweeten\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sweetened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweetmeat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweetness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.258\"\n  },\n  \"sweltering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweltry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swept\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweptwing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swing music\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swishy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"switchblade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"switchblade knife\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swoosh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swordplay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swosh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symbiotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sympathetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"symphonic poem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symphonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symphonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symphysion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchronal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchroneity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchronicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchronised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchronism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchronized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synchrony\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synclinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synergistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.382\"\n  },\n  \"syntactically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synthetic thinking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synthetical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tabasco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"table d'hote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"table game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"table tennis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tabor pipe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tacheometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tachina fly\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tachymeter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taciturn\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tadpole shrimp\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taffeta weave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tag line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tagged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tailstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take-home\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take account\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take flight\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take for granted\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take form\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take into account\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take it easy\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take notice\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take root\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take shape\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take the air\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take the cake\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take the road\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take the stand\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talker identification\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talking book\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talks\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tall-growing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tallish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tamarisk gerbil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tame\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.157\"\n  },\n  \"tan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangerine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"tangibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tank destroyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taper\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tapered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"target area\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tastefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tastiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tasty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tattle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tau coefficient of correlation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taupe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tawny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tawny-brown\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tax advantage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxonomically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tea parlor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tea parlour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tea tray\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teaching\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"teaching method\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teahouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"team spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teamwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tear down\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tearoom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teary-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teashop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"technologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tectonic movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tediousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tee shirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teenager\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teensy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teensy-weensy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teentsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teeny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teeny-weeny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teeth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telephone bill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telephone call\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telephone service\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teleport\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telethermometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperamentally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"template\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"templet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporal muscle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporalis muscle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"tended to\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendentiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenderise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenderize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tending\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tennis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tennis ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenure\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terazosin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terefah\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"term paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terminable interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terminal point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terminus ad quem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrasse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrifically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"territorially\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"test case\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"test suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tetartanopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Alps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Great Compromiser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the least bit\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the like\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the likes of\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theater director\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theater of operations\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatre director\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatre of operations\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatrical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatrical performance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theological doctrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theological system\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theological virtue\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theosophism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theosophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"therewithal\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermal emission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermal reactor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermionic emission\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermoacidophile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermonuclear warhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermoplastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thick\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"thin-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thin person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"think\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thinkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"third-dimensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"third eye\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thoughtfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"three-d\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"three-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thrift institution\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thrilled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thrillful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throbbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throng\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throttlehold\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throughway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thrown-away\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thruway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thunderstruck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thus far\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ticktock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tictac\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tidiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tidings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tidy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.314\"\n  },\n  \"tighten up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"til now\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"timber hitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"time-consuming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"time deposit account\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"timeserver\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tin-plating\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tip truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tipper lorry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tipper truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiresomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tithe barn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titivate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titivation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titration\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tittivate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tittivation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"to be precise\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toboggan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocktact\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocopherol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocsin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toe box\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toilet-trained\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tolazamide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonal pattern\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonality\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tone poem\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tone up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonguing and grooving plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonsured\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"too-generous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"too soon\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tooth root\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toothy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tootle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"top-down\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"top brass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"top dog\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topographic point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topography\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topological space\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toppingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totemism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totipotent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"touching\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"touchstone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toupeed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tour\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tour de force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"touring car\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tourism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tourist attraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"touristry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"towboat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tower of strength\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toying\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade-last\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade name\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade union movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trademarked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tradeoff\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragicomedy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragicomic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"trained worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"training\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"training program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"training school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transect\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transfer of training\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitivise\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitivize\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"translucent\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transmitted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transmundane\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transplacental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transverse process\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transvestic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transvestite\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traveling salesman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"travelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"travelling salesman\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tray\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tref\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treillage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trellis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tremendously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trenchancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trend-setting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trend setting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trendsetting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trespass viet armis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trespassing\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trestle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triangular bandage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tribute album\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichlormethiazide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichodesmium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trident\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trig\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trilobite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trip line\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tripod\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tritanopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trochlear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trochlear nerve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trochlearis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trogon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troth\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"trousering\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truck stop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trucking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true-to-life\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true rib\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true to life\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true up\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truncate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truncated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"trust deed\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trustee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"truster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"try\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tub gurnard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tucked\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tugboat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tummy crunch\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tundra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tuning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turkey-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turn around\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"turn of expression\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turn of phrase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turning away\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turnverein\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tusker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tweak\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"twenty-four hour period\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twenty-four hours\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twiggy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twiglike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twinkler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twinning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twisting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twisty\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-chambered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-fold\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-hitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-step\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-toe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twofold\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tympanic membrane\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"type of architecture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"typically\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"u-turn\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ubiquitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ugly duckling\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultimate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultra vires\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultraconservative\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultrasound\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ultraviolet\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umbra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unabated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unabused\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unadorned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unadulterated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaffectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaltered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unambiguously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unannounced\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unashamed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unashamedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbelievable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbloody\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbreakable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unburdened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unchain\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"unchanging\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"uncial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unclogged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncommon\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncommunicativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncompassionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncomplaining\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncontaminated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"uncontrolled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncounted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncouple\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncousinly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncreased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncurved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncurving\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undaunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undeceive\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undecorated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undefiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"under-the-table\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undercover operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"understandable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"understructure\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underweight\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undisputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undivided interest\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undivided right\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undress\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unearned run\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexceeded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexcelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexploded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexpressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfathomed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unheeding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unheralded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhitch\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unicuspid\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniform\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unilluminating\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"universal quantifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"universe of discourse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unkept\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unkeyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unleavened\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlisted security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unloose\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"unloosen\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"unmanful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmemorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmentionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmodulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnameable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnumberable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnumbered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnumerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasant person\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unplumbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpredicted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpretentiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unprophetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unquestioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unraised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unreconstructed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unreleased\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unremarkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrepentantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unresentful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unresistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrhetorical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsegregated\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unselfconsciousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unshielded\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsmoothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsoundable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unspell\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsteadily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unstinted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unstinting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unstoppered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsurpassable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsurpassed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"until now\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unwaveringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unweathered\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unwritten law\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to her neck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to his neck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to my neck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to our necks\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to their necks\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"up to your neck\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upbringing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"updraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upfield\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uphill\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upper-case letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upper-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uppercase\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uprightness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"upstage\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"upstroke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uptown\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"use of goods and services\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utensil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utilised\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utility program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utilized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utmost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"utopian\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"utricle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utriculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uttermost\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"uveoscleral pathway\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uvulopalatopharyngoplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uxorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacillation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum-clean\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum gage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum gauge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vagile\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valet parking\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valse\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaporific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"vaporish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaporizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vapourific\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"vapourisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vapourish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"variform\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"varsity letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vasovasostomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vassal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaticination\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veld\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veldt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"velvet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"velvety-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena cava\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena ethmoidalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena lacrimalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena ophthalmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena posterior ventriculi sinistri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venae epigastricae superiores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venae pancreatica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venerate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verbatim\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verbose\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verify\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"verily\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vernier caliper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vernier micrometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vertical section\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vesper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"victory lap\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vie\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"violet-blue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"virility\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viscous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"viselike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visible horizon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual acuity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual field\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual joke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual range\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visually challenged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visually impaired\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vital force\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitaliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitalizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitamin E\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitreous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"vituperate\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vivarium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vocalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vocational\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vocational program\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vocational school\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volant\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volatile memory\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volatile storage\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volatilisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volatilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volcanic glass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volitionally\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volleyball court\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volleyball net\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voltage divider\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volumetric analysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voluminosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voluminousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voluptuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"vower\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vox\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voyeurism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vroom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcaniser\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulturine\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulturous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wages\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waggishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wain\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waiting game\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"walking on air\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wall bracket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wall plate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waning\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wanted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"warden\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warm-toned\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warming\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"warming pan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warning bell\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warranter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warrantor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wasp-waisted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watch night\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watchful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"water hammer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"water wings\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watercraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"watercress\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watering hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watering place\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watery-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waxed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wayward\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weald\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weaponed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wearied\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weatherglass\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weatherstrip\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"webby\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weblike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wedge-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"weeklong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weensy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weeny\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weighing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"welcoming committee\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"welfare work\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"welfare worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"well-formed\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"well-grooved\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"well-known\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"well-mined\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"well-shaven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wellerism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"western lowland gorilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheel spoke\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whicker\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"while away\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whimsical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whinny\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whiskerless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-collar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-pink\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-shoe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-tie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white knight\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white room\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white squire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whole-souled\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wholehearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wholesale house\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whooper swan\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whopper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"whoredom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wifelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wifely\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"willingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wilted\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wincey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"windfall\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"winding\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"windless\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"windup\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wing-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wing chair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"winglike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"winnow out\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"winter solstice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wisecrack\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wishful\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"wishing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wisplike\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witch doctor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wits\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wizardry\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wold\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wolf-sized\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womanish\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womanlike\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womanliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womb-to-tomb\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wonderfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wondering\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wondrously\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wont\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woodcraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"woolgathering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woosh\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wording\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wordplay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wordy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work time\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"workaday\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worked up\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"workspace\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"world-wide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"world record\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worldly good\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worldly possession\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worldwide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"worn out\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woven\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrinkly\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"writing style\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrought\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wry\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"xerography\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yacht chair\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yacht club\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yacht race\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yachting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yagi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yearlong\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-breasted bunting\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-tinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow gurnard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellowish-orange\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yeti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"young-begetting\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"youth crusade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"youth movement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"youth subculture\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"youthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zero\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zero-coupon security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zero coupon security\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zero in\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zero point\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoning board\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zooid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoomorphism\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zygodactyl\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a cappella\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abandoned person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abasic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abaya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aberrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abeyance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abhorrer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abjection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrasiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"abrogator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abseil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absence seizure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absent\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolutist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbent cotton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstrusely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstrusity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absurd\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abused\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abysmally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academic gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academic robe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acanthotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acapnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acarophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acathexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acaudal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acaudate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accountability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accounting data\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accusatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accuser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accusing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acentric chromosome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetaminophen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetic anhydride\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achlorhydria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achlorhydric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achondrite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achondroplastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achromatic color\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"achromatic colour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acid-tasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acid test\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidophilus milk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidulousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acousma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acoustic buoy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquired\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acquired immunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrimonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acroanaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acroanesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrylamide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actinomycete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actinomycotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activewear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acute glossitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acute kidney failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acute renal failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ad lib\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ad libitum\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adagio\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"addict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"addlebrained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"addlepated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adhesive plaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adiabatic process\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adipose cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adjudge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"administrative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admiralty law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admonishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adscititious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"adult-onset diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adult-onset diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adventure story\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adventurism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adversative conjunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advowson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adynamic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aesthesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afeard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afeared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affectedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"affenpinscher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afferent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affront\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"again and again\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agenesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agenesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aggressively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agitprop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agonadal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agonistical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agoraphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agoraphobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agranulocytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agranulosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agraphic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agrestic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"agromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aigret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aigrette\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ailurophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air attache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air current\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air force academy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"air hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"airstrip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albinism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohol addiction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algolagnic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algometry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all in\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"all the same\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allegoriser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allegorizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alleviant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alligator\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alloy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"alms\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alopecia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alopecia areata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alphabetisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alphabetised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alphabetization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alphabetized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alveolar arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alveolar process\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alveolar ridge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amaurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amaurotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambagious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amebic dysentery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenorrheal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenorrheic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenorrhoeal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenorrhoeic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aminobenzine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amiodarone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ammonitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ammunition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnestic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amoebic dysentery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amygdalin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaclitic depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analphabet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analphabetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaphrodisia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaphylactic shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplasmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anarthria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomical\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomical reference\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"androphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anecdote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anechoic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angina pectoris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angiohemophilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angiopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angioplasty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angle of attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angle of extinction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anglophobe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhidrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhydrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aniline\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aniline oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anionic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ankylotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"annex\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"annihilating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"annihilative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"annoyingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"annul\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"anomalous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anonymous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"anonymously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorexia nervosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anovulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"answerability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"answerableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antennal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antennary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthracitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anti-G suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anti-Semitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiaircraft fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiarrhythmic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiarrhythmic drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiarrhythmic medication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antidiarrheal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antidiarrheal drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiestablishmentarianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiestablishmentism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antifeminist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antimacassar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antimony potassium tartrate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipersonnel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiprotozoal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiprotozoal drug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipyretic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisatellite\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisemitism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiserum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisocial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"antisocial personality disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisubmarine\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antler moth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anuresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anurous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anxiety neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aoudad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apogametic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apogamic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apogamous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apologise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apologize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoptosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostatise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostatize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apotropaic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appendicular skeleton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appetence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appetency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appetite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appetitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apple-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apple butter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"applejack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appraise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"approach trench\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"appropriator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"approximative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aquaphobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arachnophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"araroba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arginine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argonaut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arguably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arguing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arianist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aridness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arm pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armed combat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armed robbery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armed service\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armillary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arms-runner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aromatise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aromatize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"around the bend\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"around the clock\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrest warrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arse about\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"art historian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria circumflexa ilium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arthritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arthroscopy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"article of clothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artiodactyl\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artiodactylous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asa dulcis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asafetida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asafoetida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asexuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ashamedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asleep\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"assailable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assailant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assault and battery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assaulter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"associative aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"assuasive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asthenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"asthma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asthma attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asthmatic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asyndetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asynergic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at a loss\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at bay\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at fault\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at large\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at odds\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at the worst\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at will\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"at worst\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ataraxis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atelectasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"athletic wear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atom-bomb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 22\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 24\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 25\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 27\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 31\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 34\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 4\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic number 73\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomic weapon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomist theory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atomistic theory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atopic dermatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atopic eczema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atopognosia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atopognosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrociously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrociousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attack aircraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attemper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attempted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attempter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attentional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attorney general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"attractive nuisance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atypically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auditory hallucination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auditory hyperesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auditory system\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"authoriser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"authorizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoimmune diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"automobile insurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotomy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avaritia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avenge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avenger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aversive conditioning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avitaminosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"awarding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"awhile\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axle bar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babiroussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babirusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babirussa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babushka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baby\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacillary dysentery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacillary white diarrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacillary white diarrhoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"back talk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backbench\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backbiter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backfield\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backplate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backslap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"backtalk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacteria order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriological warfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bad check\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bad cheque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bad hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bad manners\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baddie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"badger\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"badmouth\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baffling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bagel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baggy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bailiff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bailiffship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baking hot\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ballyrag\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balsam of Peru\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bandy about\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banefully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank bill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank check\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bank note\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banker's bill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banknote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bar exam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bar examination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbarousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barbet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bareback\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barebacked\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barefoot\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barefooted\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bargain down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baronetise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baronetize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrel-shaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrelhouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barricado\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basalt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basaltic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"base of operations\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baseborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"baseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bash\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basic slag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastard pimpernel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastardization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batfowl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bathing costume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bathing suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bathrobe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bats\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batting helmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle flag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle fleet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Ipsus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Issus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Ivry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Marathon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Marston Moor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Minden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Panipat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle of Wagram\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battle sight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battlefield\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battlefront\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battleground\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battlesight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"battue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bawling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bay wreath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"be quiet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beach erosion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beachwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beady-eyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beanie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bearable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bearded iris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beardless iris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"becloud\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedaubed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedeck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bedizen\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bedlamite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bee sting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"befog\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"befooling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beggar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behaviorist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behavioristic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behaviourist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behaviouristic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beigel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beldam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beldame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beleaguering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bellicoseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bellicosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belly flop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belly flopper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belly whop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belly whopper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bellyacher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belt bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belt up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bemock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bench warrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bend dexter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bends\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benighted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benign tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benign tumour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benjamin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benzoin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bereaved person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beryllium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"besieging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"beta-adrenergic blocker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta-adrenergic blocking agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta-blocking agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta blocker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta endorphin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta particle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta radiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta ray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bete noire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betrayal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bezoar goat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"big-ticket\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigoted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bijou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bikini pants\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billingsgate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bing cherry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binge-purge syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"binge-vomit syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biological terrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biosafety level 2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioterrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bipinnatifid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birch oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bird-footed dinosaur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bird feeder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bird of prey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birdfeeder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"birth trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"birthmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitchy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"bitters\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bitterwood tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black-backed gull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black-coated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black-market\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black archangel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black art\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black calla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black cherry tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black cypress pine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black horehound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black kite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black magic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black opal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black rhinoceros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black root rot fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"black sheep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"black walnut tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackamoor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackberry bush\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackdamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blacken\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"blackface\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackguard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackheart cherry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blackwater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blade bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blameworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blanc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blanch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"blast off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blast trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blaze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.271\"\n  },\n  \"bleakly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bleakness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blebbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bling bling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blink away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blizzard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"blob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blockhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blood\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blood agar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blood poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blood sport\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloodbath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloodlust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloody-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"blouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blow off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blub\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue funk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue jean\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue note\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blue point Siamese\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bluetongue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blunder out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blunderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blurt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blurt out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blustery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"boarhound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boat paddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bobtailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body louse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body odor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body odour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bogeyman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boil smut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boilers suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boilersuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boisterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"bola tie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boldly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boldness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bollworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolo tie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonduc nut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone-idle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone-lazy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bone fat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonehead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boneshaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bonkers\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"booby trap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"boogeyman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boorishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bootboys\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"booted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bootleg\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bootlegger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bootlegging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bootless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boringness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boron chamber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bosom of Abraham\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boss around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botcher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botheration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bothered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulinum toxin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boucle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bouncing putty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boundlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bounty hunter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"boutonniere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bowler hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxing glove\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxing ring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bracelet wood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brachial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bradycardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brainsick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brake failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brakeman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"branding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brant goose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brashly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bravado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brave\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brave out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brazenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"break-axe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breakax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breakaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breathe out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breathed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brent goose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"briarroot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"briber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brickbat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bridal gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bridge agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bridgehead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bridle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"brightly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brinkmanship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bristle brush\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broad-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.442\"\n  },\n  \"bromic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronchial asthma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronchoscopic smear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronzed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brooder pneumonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"browbeat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"brown rot gummosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"browned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brownish yellow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brush fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brutally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bruxism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"budgereegah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"budgerigar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"budgerygah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"budgie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buffalo chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buffer country\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buffer state\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buffeted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bugaboo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bugger all\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulbar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulima nervosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulimarexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulimic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bullyrag\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulwark\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bum\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bum about\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bum around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumbler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bummer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bump\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.112\"\n  },\n  \"bump into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumpkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunco\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunco game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buncombe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunghole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bungler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunko game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunkum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bunya bunya tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burbly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burglar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burn center\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burqa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"busby\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bushed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bustier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butcher\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butt pack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"button up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butyric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buy it\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"by small degrees\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"byrnie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bystander\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabbage-bark tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabbage bark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabbala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabbalah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cachectic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cacodaemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cacodemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadaver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadaveric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caffein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caffein addiction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caffeine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caffeinic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caftan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caimitillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caisson disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calamitous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calamity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caldera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calling into question\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"callithump parade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"callosity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"calpac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calpack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calumniously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camelpox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"campylotropous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"can of worms\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canalis inguinalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancer of the blood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"candy cane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canker sore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cankerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canthus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital of Tibet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caprylic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"car insurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbon black\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbon monoxide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbon monoxide gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbon paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbuncular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcase\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcinoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"card-house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardcastle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardhouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardinal virtue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardiovascular disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carjack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carjacking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cark\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnassial tooth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carrier wave\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carrion fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carry back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartilaginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"carve up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"case-to-infection proportion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"case-to-infection ratio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caspase-mediated cell death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cassock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castration anxiety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cat cracker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cat scratch disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cat sleep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catabiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catalytic cracker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catch out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catch some Z's\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catnap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cattish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cattle plague\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"caustic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cavalry horse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cave in\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caveat emptor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caviuna wood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cefotaxime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceftriaxone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cell-free\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cellulitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrifugal force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrifugal pump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cephalexin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerebral palsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceruse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cervical disc syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cervical root syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chafeweed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaffweed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chalk dust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"challenger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chance on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chance upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chancre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chancrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"changefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaparral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charlatanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chartless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chasteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chastisement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chasuble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chawbacon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheekily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheesy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chemical attraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chemical weapon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chemistry department\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chess move\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chess piece\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chessman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chest protector\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chicken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chicken-fight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chickenfight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chickenhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chickenpox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chickenshit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chief assistant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chigetai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chignon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chills and fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chip shot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chipboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"choke up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chokecherry tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chokedamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cholera morbus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chomp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chouse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"christ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromatographic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromatographical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chromium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronic gastritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronic kidney failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronic obstructive pulmonary disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chronic renal failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chrysarobin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chuck\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chuck up the sponge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chuffed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churidars\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinerarium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinerary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cingulum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circulative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumflex iliac artery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumlocutious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumlocutory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circumvention\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrhosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrhosis of the liver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civil contempt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clam up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamoring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamour\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamouring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamp down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claret\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Ascidiaceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Cycadopsida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Hymenomycetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Larvacea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"class Thaliacea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"classification system\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claustrophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claw\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleft palate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinical depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinical psychologist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinical psychology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinker brick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinodactyly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clip art\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clock-watching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"close supporting fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clostridial myonecrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clothes basket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clothes hamper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clothes moth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clout\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"club steak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clubbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clumsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"coarseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"coaxer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobalt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobble together\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobble up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coccidioidomycosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coccidiomycosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocker\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocktail table\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocoon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coddler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"codify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coenzyme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coffee fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coffee table\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cola nut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"cold-blooded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"cold-bloodedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold-shoulder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold gangrene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold sober\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cold sweat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collared peccary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collectable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collectible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"collywobbles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colon cancer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colored\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colored person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combat injury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combat intelligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combat ship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combatant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combativeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combustion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commandeer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commercial-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comminatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common arrowhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common dogbane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common flat pea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common iliac vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common mackerel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commonplace\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"communication trench\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compassionate leave\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compassionately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complainer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complement fixation test\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compromise verdict\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compromiser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compulsive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compulsory process\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computer crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computer error\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceive of\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceptus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conclusively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concrete jungle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condescension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"condolent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conduction aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conessi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confidence game\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confidence trick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conflagration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conflicting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confrontational\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confutative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conscience money\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservation of mass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservation of matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservationist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constipated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constipation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"consumptive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"contemptibly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contemptuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contentiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contestation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"continually\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraband\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contradict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"contrarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrarious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controversy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controvert\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"contumacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contumelious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contumeliously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"convolute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coolie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cooly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"cootie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cop out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copper's nark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coppice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coprolith\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coquilla nut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cor pulmonale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coral root\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cordless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corn chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corn earworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cornered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronary heart disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correctional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correctional rehabilitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrode\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corroded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrugated fastener\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corundom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corundum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosset\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cost\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"costless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotton ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotton bollworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotton on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cough\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coughing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"count down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterchallenge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterglow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterintelligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counteroffensive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"counterproductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coup d'etat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"court plaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cover glass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cover slip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covering fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cow chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cow dung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cow pie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowardice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowardliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowardly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowboy boot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowboy hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowpie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cowpox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cozenage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crabby person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crack down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crack up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"crackdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cracked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"crackers\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crackpot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cragged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"craggy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crank call\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crankiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crapshoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"crapulent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crash helmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crassitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crassness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crawl in\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crawl space\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crawlspace\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"craziness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"creep up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crepitation rale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cress plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cretinism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminal negligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crimson\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crippling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criticalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crop failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crossly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crotchetiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croton oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crow garlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crown gall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crown of thorns\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"crown wart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crownless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crownwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruciality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crucian carp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crummy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cry for\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cry out for\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryobiology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryogenics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryogeny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cryptogram\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuckoopint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cudgel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cue\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuisse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culpability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culpable negligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culpableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cup final\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curly endive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curmudgeon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"current of air\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curst\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curtainless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curtly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cussedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut-and-thrust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cut into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cutthroat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cybercrime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclonic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cyclonical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cynophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cystoparalysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cystoplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"daft\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daftness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"damnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"damned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"damp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"damping off fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dampness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"damson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"danger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.161\"\n  },\n  \"dark-field microscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dark adaptation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dark field illumination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dark ground illumination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dark matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darkey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darkie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darky\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darling pea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dauber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dauntlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day after day\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"day in day out\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de-escalation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de Broglie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dead body\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dead duck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"deadening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadeye\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deadlock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deafened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deafening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death's head\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death-roll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death bell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death camp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death mask\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"death seat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deathless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deathlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debasing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debauchee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debilitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"debridement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decalescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deception\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"deceptiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deckle edge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decline in quality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decompositional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decompression sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deconsecrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deconsecrated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dedifferentiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep-fry\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deep freeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deer fly fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deer trail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deerstalker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defacement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defalcate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defamer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defeatist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defectiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensive structure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defervescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defiant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deformity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"defraud\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"degust\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delinquent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"delve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demand for explanation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demerit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"demimonde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demoniac\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demoniacal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demoniacally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demyelinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denaturant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dendrite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denounce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"dent corn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deodorant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deodourant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"department of chemistry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deployment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deprecative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"depreciation allowance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depressingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depressive disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derange\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derby\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derby hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatomycosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatomyositis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatophytosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desert holly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desert rheumatism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desideratum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desist\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desk officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desolately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despoilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despoiler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despoilment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despoliation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despotical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destroyable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destructively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detecting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detective work\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"deterioration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detumescence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deus ex machina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devil's advocate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devilment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devilwood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devitalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devitalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devour\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"dhoti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diabetic retinopathy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diabolically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diabolist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacetylmorphine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diagnostics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diamond point\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diarrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diarrhoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dictyopteran\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diffraction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diltiazem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diluent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dilutant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dilute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dimly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"din\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dingo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinner dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinner gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dioxin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diplomatic immunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"direct contrast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirt ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirt cheap\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirtiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.26\"\n  },\n  \"dirty pool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disaccord\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disaffected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disagreeable woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disagreeably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disappointing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disarrangement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disastrous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disceptation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discoid lupus erythematosus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discombobulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discomfort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"discomposed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconcerted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconsolately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discouragingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discovered check\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfigured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disgruntled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disheveled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishevelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishonorableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dishonourableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disinfection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disingenuous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disorganized schizophrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disorganized type schizophrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disproportion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disqualify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"disquiet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disreputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disreputable person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disrespectful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"dissatisfactory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissatisfied\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissenting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissever\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dissolutely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distastefulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"distraught\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distrust\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disturbance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.061\"\n  },\n  \"divagate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diverseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diverticulitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divestiture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"diving dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diving suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dizzily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"do-or-die\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctor up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dodderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dog biscuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dog bite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dog rose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dogbane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dolman jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doltishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domineer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domineeringness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dongle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"donkey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"donkeywork\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doodad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doohickey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doojigger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dopey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dopy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dosshouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"double indemnity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doublet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doughy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downdraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downgrade\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downhill\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downward\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"downy ash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drag through the mud\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"draw a blank\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dray\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dreariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dress out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dressing gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"driblet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drive-by shooting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drivel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dronabinol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drool over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"droopy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drop away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drop by the wayside\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"droppings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dross\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"drudge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"drudgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug baron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug bust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug dealer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug lord\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug peddler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug traffic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug trafficker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drug trafficking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drugs bust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drumhead\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drumstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drunkard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dry gangrene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"duffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dumbass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumbness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumdum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumdum bullet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumpiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dumpsite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dunce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dunderhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dungeon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duskiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dwarfism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dynamic balance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dynamite\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysentery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyslexic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dysosmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysostosis multiplex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysphemism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspneal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspneic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspnoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspnoeal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dyspnoeic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysthymia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dysthymic depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dziggetai\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earful\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"earless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earliest\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earsplitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"earthenware\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"east-west direction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eat at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eat into\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eavesdrop\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebonise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebonite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebonize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebony tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebullient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eburnation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecclesiastical province\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecstatic state\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ectrodactyly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effluent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effortful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effortfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"effortlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egalite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"egomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elbow pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eldest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eldritch\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electric field\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrocute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrocution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrocutioner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electromagnetic interaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electron lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electron radiation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electronic simulative deception\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electronic warfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrosleep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elementary particle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elephantiasis neuromatosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elide\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elmwood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elusiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emancipator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embezzle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embitterment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emboldened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embolic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embrangle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emphysematous gangrene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emphysematous phlegmon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en garde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encainide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encephalitis lethargica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encirclement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encopresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encounter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"encumbered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endemic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endocarp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endogenous depression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endomorphy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enervating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfeebling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enforced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engagement ring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensconce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enteric fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterotoxemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterprise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"enterprisingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entombment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entomophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"environmentalist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envisage\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinophilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epauliere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ephemeral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ephemerality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ephemeralness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicanthic fold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicanthus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemic encephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemic parotitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemic roseola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epigastric fossa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epileptic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equinoctial storm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equivocalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eradication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error correction code\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erythema multiforme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"escapism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eschatology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espresso maker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"essayer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esthesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethanediol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethnic joke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ethylene glycol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euthanasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutrophication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evacuee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evasive answer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"even-toed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"even so\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evening gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evidently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evil-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evilly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evilness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exanthem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exanthema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exasperatingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excerpt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excessive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"exclusively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excrescence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"excreting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excretory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exit poll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exodus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exorcism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expiative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expiatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"explode a bombshell\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"export duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expostulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"extemporaneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extemporary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extempore\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extend oneself\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exterminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exterminate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinction angle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinguished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extirpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extralinguistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extremism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eye bank\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eye rhyme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyeglass wearer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyeglasses\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eyelash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"face saver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"face saving\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faceless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facilitative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor IX\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fading\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faecalith\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fag out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faineance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faineant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faintly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fakery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falcon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fall by the wayside\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fall upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false alarm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false face\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false garlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false pimpernel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false pretence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false pretense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"false return\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsehood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsifying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"familial hypercholesterolemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Entomophthoraceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Haemulidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Helvellaceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Melampsoraceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Myrmecophagidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Psilotaceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Trionychidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"family Xylariaceae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fanny pack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasy world\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farthingale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fat cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fat person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatal accident\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fathead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"father figure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"father surrogate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatigability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatigues\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fattish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faultiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faulting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fazed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fearless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"fearlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fearlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feather ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"featheriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"featherless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"febrifuge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fecal impaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fecalith\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fecklessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feculence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"federal tax lien\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fellow feeling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fern seed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fernless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fertilized egg\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fervently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fervidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetal distress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fetid horehound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fewness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibrinolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fictitious name\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiddle with\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field event\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field garlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of battle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"field of force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiendishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fieri facias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fierily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fifth column\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fig wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fighter aircraft\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figural blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figure of speech\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finagle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"final injunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finger-pointing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fingerpointing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finitely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire-raising\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire-resistant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire-resisting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire-resistive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire-retardant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire company\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire insurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire salamander\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire ship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire thorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fire warden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firearm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fireproof\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firestorm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"firethorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firework\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firstborn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisheye\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisheye lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fishtail bit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"five iron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flabby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flash flood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flashflood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flavorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flavourless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fleabag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fleetingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flight strip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flimflam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flint corn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flint maize\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flip\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flip out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"flippant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floating policy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floccose chanterelle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flogger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"flop\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flophouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluctuate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluctuating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluffiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluid drive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluosilicic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flushless toilet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flustered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fly-fishing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fly agaric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fly casting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flying gecko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flying visit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fob off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"focal seizure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foetal distress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fog\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foist off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folklore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"follow up on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fomite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foodless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fool away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foolery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footpad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footrest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footstool\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"footwall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"for 24 hours\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"for a while\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"force field\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"force pump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forebode\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foresightedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foresightfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forest fire fighter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foretaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forewarn\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forewarning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"formidability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forthwith\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forty winks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"found\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foundation garment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"four-centered arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fox\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"fox-trot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foxtrot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"franchise tax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraud in the factum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"fraudulent scheme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frazzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-and-easy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-enterprise\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"free-soil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freebooter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freeze down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"freeze out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"french-fry\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenetically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenzy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frequently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fresh breeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fresh gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"friar preacher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"friction match\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"friendship plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frig around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frightfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frigorific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fringed gecko\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frippery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frisson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fritter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fritter away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frivol away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frivolous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"from nowhere\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"from scratch\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"front-runner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"front line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frontbencher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frontlet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frostbite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frown on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frown upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frowsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frowzled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frowzy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fruitless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fruitlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"fuck all\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuckhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuddy-duddy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuel-air bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fugacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fugacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"full-dress uniform\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fulminate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"fulsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fumaric acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fumbler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fumbling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fundamental law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funerary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.213\"\n  },\n  \"funnily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"furunculosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuss-budget\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fussily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fussiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"fusspot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fustigate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galactosemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galbanum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gallium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galvanic cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gambling system\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gambrel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gambrel roof\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gamma globulin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganef\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrene\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrenous emphysema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganof\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaolbird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaoler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garbage dump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garble\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garden snail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gargoylism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garibaldi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garland flower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garnishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garotte\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrote\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrotte\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garter belt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gas gangrene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas helmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas phlegmon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaseous state\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaskin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasmask\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gateau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gawkiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gazillion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gazump\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gean\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geezer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gegenschein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general anaesthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general anesthetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"general practitioner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genetic fingerprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genetic screening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gentle breeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gentle wind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Amsinckia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Anchusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Bauhinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Bos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Brachystegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cassiope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cercosporella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Cocculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Coptis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Crescentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Dendroctonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Entoloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Latrodectus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Lepiota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Limenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Monarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Physostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Phytophthora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Pythium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Reticulitermes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Rosellinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Tussilago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus Veratrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geographic expedition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geological fault\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geometric progression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gerfalcon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germ warfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germaneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get around to\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get onto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get the best\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"get wise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ghastliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gibbous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"giddily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gilbert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimmick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"gin\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gip\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"give it a whirl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"give tongue to\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glanders\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glareole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glaringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glasses\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glassless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"gliricidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"global aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glove anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glucinium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glyptics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnathion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnaw at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go-around\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go-kart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go to bed\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go to pot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go to sleep\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"go to the dogs\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goading\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goatee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goggles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"going-over\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"goldbrick\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golden section\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gondang wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonif\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goniff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonorrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonorrhoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goose bump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goose pimple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goose skin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goosebump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gooseflesh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gooselike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goosey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goosy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorget\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"government-in-exile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"government note\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graininess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"granny knot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granularity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granulocytopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granuloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grape louse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grape phylloxera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grappling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grass parakeet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratis\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gravely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gravitational field\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gray\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gray sea eagle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grayish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greaser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"great black-backed gull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greatcoat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greaves\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"green paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greenback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greeting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grey\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grey sea eagle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"greyish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grimly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grimoire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gripes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"griping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gritrock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gritstone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"groping\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gross estate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grouchily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ground attack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ground cloth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"groundless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"groundling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"groundsheet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"group Centrospermae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"growth-onset diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grub out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grub up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grubby\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gruesomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grumbler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grumpily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grumpiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grunge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gubbins\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guerilla force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guerrilla force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guesser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guilt by association\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guimpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gum albanum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gum benjamin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gum benzoin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gum ridge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gum up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gumming\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gunrunner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustatorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustatory cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutsy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gynogenesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gyp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gyrfalcon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habergeon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habiliment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habitual criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"hackneyed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haemoptysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haik\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haiku\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hair-shirt\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hair-shirted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-clothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"half-heartedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hallstand\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hallucinating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hamartia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand-to-hand struggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hand truck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hands-off\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hang-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"happen upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"happy-go-lucky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haranguer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard-fought\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard-shelled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard roll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard rubber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard time\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hard up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hard worker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hardboard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hardpan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hardscrabble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hardware key\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"harmonic law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harridan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harsh on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harvest moon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hash mark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hashmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hatemonger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hatha yoga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hauberk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haughty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"have-to doe with\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"have it coming\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"have the best\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hawkish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hawkishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haymaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hayseed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haze over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"headless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"headscarf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"health hazard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearing disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearing impairment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hearsay rule\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heartrot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heat flash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heat hyperpyrexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heat of condensation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heat of solidification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heatless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heatstroke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heavy\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heavy metal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebephrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebephrenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebephrenic schizophrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hecatomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heckle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hectic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hector\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hegira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heinousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hejira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hellcat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hellhound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hellion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemiplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemoptysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemorrhagic septicemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hepatic coma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herb robert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herb roberts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herbs robert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereditary cerebellar ataxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereupon\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heritor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herniated disc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroic tale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herpangia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herpes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"herpes simplex 2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herringbone pattern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hesitater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hesitator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterocercal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidden reserve\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidebound\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-speed steel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-spirited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high-ticket\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high and low\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high jinks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high jinx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high life\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"high treason\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highbinder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highjack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highlife\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"highwayman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hijinks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hillock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hilly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hip pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hirer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"hit list\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hit the hay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hit the sack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hitless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hoarse\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoarseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoax\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hobble skirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hog cholera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hogwash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hold fast\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"home front\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homeless person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homesick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honky-tonk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honkytonk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hooey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hooky\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hooliganism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoosegow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoosgow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hops\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hormone-replacement therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hormone replacement therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hornswoggle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horripilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horse trader\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horticultural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital attendant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hostile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hot-work steel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hot and bothered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hottish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"housecoat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"how-d'ye-do\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hubris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"huck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"huckaback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hue and cry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hugger-mugger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human beings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human gamma globulin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human race\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"human remains pouch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humankind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humeral veil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hummock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humorlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humourlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humpback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"hunger march\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hunting and gathering society\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hunting and gathering tribe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hurl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyaline membrane disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrocele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrocephalus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrocephaly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrochlorofluorocarbon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrofluosilicic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogen cyanide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrogen fluoride\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrolise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydrolize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydroxychloroquine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydroxyzine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hydroxyzine hydrochloride\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hymenopterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hymie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperacusia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperacusis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperalimentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperextend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypericism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypermetropic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperopic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypersensitivity reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyperventilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypervitaminosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypnophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypobetalipoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypocapnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypochlorous acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypocritical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypogammaglobulinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypogonadism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypokalemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypothrombinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hypotonicity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hypovitaminosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ice-clogged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"icebox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ictal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ictic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ideate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idiot light\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignobility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignobleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignoramus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-affected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-breeding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-shapen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-treated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-treatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill-usage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ill fame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illegitimate enterprise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"illicitly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imbroglio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"immigrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immobilizing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immodesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"immoral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immoveable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immunosuppressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"impeachability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impecunious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impeded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impenetrability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"imperative\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperfectible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperfection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperfectness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperial beard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impertinently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impetuously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implemented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implicit in\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implicitness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impose\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impossible action\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impounding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impoundment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprecate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impromptu\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprudently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impudently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impulsively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in a broad way\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in a flash\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in absentia\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in circles\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in darkness\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in extremis\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in general\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in no time\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in short order\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in stages\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in straitened circumstances\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in the lurch\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inaccessibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inaccessible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inadmissibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inalterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inapplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inborn error of metabolism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inborn reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incapacitating\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incaution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incautiousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendiarism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inciter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incoherence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"incoherency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inconsequential\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inconsequentially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconsequently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconsiderateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconsideration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconsistency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inconstant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incontestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"incurrence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indecent exposure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefeasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefinitely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefiniteness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefinity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indeterminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"indeterminacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indeterminateness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indetermination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indexless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indictability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indictment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"indigence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indigestion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indignity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indirect request\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indissoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indomitability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indwell\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inebriate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inefficiently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineligibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineluctably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineptness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"ineradicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inerrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inerrant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inertial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inescapably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexcusably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inexhaustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexperienced person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextinguishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infant deathrate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infant mortality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infant mortality rate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infeasibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infeasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infectious polyneuritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infelicitously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inferior vocal cord\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inferior vocal fold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inferiority complex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infiltrator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inflexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.217\"\n  },\n  \"infract\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infrangible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ingrowing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingrown\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inguinal canal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhaler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inheritor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhospitableness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inhumane\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhumation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injudicious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ink-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inky-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innate reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inner ear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innocent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoculating\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoculation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoculum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inodorous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inordinate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inorganically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inositol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquisitively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insalubrious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insalubriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insalubrity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insaneness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insanity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insect powder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecureness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insidious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"insignificant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"insipid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"insolvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insomnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insouciant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspector general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instantaneously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instigant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instinctive reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrument of torture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insufficient\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulating material\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulin-dependent diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulin reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurrectionism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integrator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligence activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligence agency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligence analyst\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligence operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligence service\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercollegiate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intermittent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"internal ear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpreting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interrupted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"interscholastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interschool\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interstitial pneumonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intertrigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intestinal colic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intraocular lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intravasation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intrench\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intrepidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intumescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inutile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invalidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invalidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invidious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invincibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invisibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invisibleness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"involuntarily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ireful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron-tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron lung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron mold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron mould\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrational impulse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrationality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreclaimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreligionist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreligious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreversibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrevocable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrevokable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irritable bowel syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irritably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"isoclinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isoclinic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isometropia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isopteran\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itraconazole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ivory tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jacket crown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaggedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jail bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jailbird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jailer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jailor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jalopy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jar against\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jarring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jarringly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"javelina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaywalker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"je ne sais quoi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jellaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jellyroll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jenny wren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jerkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jet-black\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jigaboo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jihadi\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jillion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jilted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jinks\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jiqui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jobless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodhpur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodhpur boot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodhpur breeches\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodhpur shoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jodhpurs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"join battle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jointworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jostle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"jot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jot down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judge's robe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judgement on the pleadings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judgment on the pleadings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judicial review\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judicial writ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juggernaut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jugular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jumentous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jungle fowl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"just deserts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juvenile-onset diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juvenile diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"k-meson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kabala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kabbala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kabbalah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaftan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kalantas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kalpac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kappa-meson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"katsura tree\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kayoed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keep in line\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keep mum\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keepsake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratoconus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratoderma blennorrhagica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratomalacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratoscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"keratosis blennorrhagica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketoacidosis-prone diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketoacidosis-resistant diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketoacidosis-resistant diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketosis-prone diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketosis-resistant diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ketosis-resistant diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"khimar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kiang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kick down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kidnap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kidnapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kidney failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kill off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kill zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"killing zone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kinematics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kinesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kinetic energy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kip\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kip down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kirtle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kittee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kleptomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knackered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knee pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knee piece\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kneecap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knickers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knife fight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knock-on effect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knock against\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knocked out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knoll\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"know apart\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"know nothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"knucklehead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kookie\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kooky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurchee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurchi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kurta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labor resources\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laboriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labrocyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laceration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lacewood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lacquer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laetrile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lagophthalmos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lambdacism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamellicorn beetle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lameness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lampblack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landing strip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landlubberly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapidate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapidation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larcenous\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larvicide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"last\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"last out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"late blight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laterite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lath\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laundry basket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lavalava\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of areas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of conservation of mass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of conservation of matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of equal areas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of equivalent proportions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law of reciprocal proportions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law offender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"law officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lawbreaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lawlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lawman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lay on the line\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"layoff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lazar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lazy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"lead-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead acetate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead carbonate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead chromate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead ore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lead poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leaf cast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leanness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"learning disability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"learning disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lederhosen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"legionella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lemonlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lemony\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lenitive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leprechaun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leptospira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lese majesty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"less-traveled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lessening\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"let drive\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"let fly\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"let off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lethal gene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lethality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lethargic encephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lethargy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"leucaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leukaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leukemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leukoencephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leukoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leveraging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"levirate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liability insurance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libeler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lickety cut\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lickety split\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lie low\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"life peer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lifeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"lifer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lift pump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light-headedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light air\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light breeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"light upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lightless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"lightlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like a shot\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like crazy\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like mad\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like sin\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like the devil\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"like thunder\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lily-livered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line of duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line of latitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line of longitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"line storm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linsey-woolsey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lipochondrodystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"listener\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"listeria meningitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"listeriosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lithoglyptics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"litmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little by little\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little golden zinnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"little potato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liver chestnut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"living death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loathsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locus niger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"log Z's\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loll around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-term memory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long-windedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"long underwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"looping ill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loose\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loose-fitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loose end\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loose off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"looseness of the bowels\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"looter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"looting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lopsided\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lords-and-ladies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lost cause\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lotus-eater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lounge about\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lounge around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lounging jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lounging robe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loup-garou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lousiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"love handle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lovelorn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lovesick\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low-backed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low-pitched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"low-tech\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low profile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low status\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"low temperature\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lowboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lowbush penstemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lower-middle-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lower rank\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lower respiratory tract smear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lower status\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lowercase\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lubberly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"lucifer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugubriousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lummox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lumpen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lumpenproletariat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lumpish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lunacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lunar latitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lunkhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lusterlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lustrelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lycanthrope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lymphadenoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lymphogranuloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lymphoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lynch mob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"macroscopically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macular edema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macule\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macushla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madwoman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maggot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magic spell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magical spell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magistracy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magistrate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magistrature\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnetic field\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnetomotive force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maimed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"main file\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"major depressive episode\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal de la rosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal rosso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malaise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malaprop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malapropism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"male-patterned baldness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"male pattern baldness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malefactor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maleic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malevolent program\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malfeasant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malfunctioning\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malice aforethought\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malicious mischief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malignant neoplastic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maligner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malingering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malnourished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malnutrition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malposed tooth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malposition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maltreated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maltreatment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malversate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mammon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"man Friday\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandibular gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maned sheep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manganese\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manhandle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manhunt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maniacal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manifestly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manila maguey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mankind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manslaughter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manually\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manumitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marasca cherry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marble cake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"margin of error\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"margin of safety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marginalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marginalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marine law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mariticide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maritime law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marlberry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maroon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"mashie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mast cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"master file\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastocyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matching\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matchstick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material breach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materiel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mature-onset diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maturity-onset diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maturity-onset diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mayhem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mayidism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mazzard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mazzard cherry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meadow spittlebug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mealy bug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mealybug\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meaningless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meatless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mechanical advantage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mecopteran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mecopterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meddler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medical diagnosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medical scientist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medulla oblongata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meiotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melancholiac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"melanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"melanosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memory loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menacingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendacious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mendaciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mens rea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental deficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental disturbance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mental unsoundness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercy killing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meretricious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"merl\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesocolon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mess jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"messiah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"messiahship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metalepsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metastasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methanol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methyl alcohol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methyl bromide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methyl salicylate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methylphenidate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"methyltestosterone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mewl\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miasmic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"microcopy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"micronutrient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"middle-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military blockade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military capability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military posture\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"military strength\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"milkless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"millettia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mindlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minelaying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mineral pitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minibike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimal art\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minyan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misadventure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misalign\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misapprehension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misappropriate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misbranded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miscall\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miscellany\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mischief-maker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mischief-making\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miscount\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misdeliver\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misgive\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misinterpretation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mislabeled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mismanagement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misname\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misogynist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misplacement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misrelated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"missed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misshapen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misspend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistreated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistrust\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misunderstanding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitigating circumstance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mix up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moaner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mobster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mocha coffee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mocker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderate breeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderate gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderatorship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moistness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"molasses\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"molestation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"molluscum contagiosum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mollycoddle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mollycoddler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moment of a couple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"momentously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monarchy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monaural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moneran\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongolianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongolism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monkey dog\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monkey jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monkey pinscher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monogenic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monogenic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoplegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"montan wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moocher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moodily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moon about\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moon around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"moon blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"moon on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moon shell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moonshell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moonshiner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moonstruck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mop\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moral hazard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morbidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"morceau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordacity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moronity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosquito bite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mothproof\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motorbike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mounded over\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mountain pass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mountain sheep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mourning cloak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mourning cloak butterfly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mourning dove\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moving-coil galvanometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucous colitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucous secretion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mud stain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muddleheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugging\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mulishly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mulishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multifariousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mumbo jumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mumification necrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mumps\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mumpsimus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muncher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murder suspect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murderess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murkily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"murmuration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murrain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muscle-bound\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musculophrenic vein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musical passage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musket ball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mussiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mussitate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mussitation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustard seed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutant gene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutilated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muttonhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutual resemblance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutualness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muzzle loader\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myasthenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"myasthenia gravis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myelatelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myonecrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myopathic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mystery story\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mystify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"mythical being\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"myxomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"napping\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcolepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotraffic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narrow-mindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"native holly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"native orange\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naval battle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naval campaign\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nazify\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ne'er\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"near-death experience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"near gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nebbech\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nebbish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nebulose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nebulous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"neckerchief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neckless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neckpiece\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necktie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neckwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrolysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necromancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"necromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necromantical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrophilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrophilism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrose\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrotic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrotizing enteritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"needle blight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"needle cast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"needlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nefariousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"negative charge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negative stimulation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negativism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neglect of duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neglectful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"neglige\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negligee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negro vine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neon induction lamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neon lamp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neon tube\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neonatal death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neonatal mortality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neonatal mortality rate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerve agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerve gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nervily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuralgic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurasthenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurofibromatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurotoxic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neutral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nevertheless\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nevus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"news report\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"newspeak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"newsreel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nicker nut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nicker seed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nigga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niggardliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niggardly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niggardness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nigger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niggler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"night\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"night-robe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"night court\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nightclothes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nightdress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nightgown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nightie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nightwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nigra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihilistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihilistic delusion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrobenzene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrogen dioxide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrogen fixation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrous acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no-go\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no-go area\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no-good\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"no-win\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noctuid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noctuid moth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nocturia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nocturnally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noise pollution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noiselessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nolo contendere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-aromatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-insulin-dependent diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-insulin-dependent diabetes mellitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-negotiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-slave\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-verbally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-volatile memory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non-volatile storage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non vult\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonarbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonassertive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonastringent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonattender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noncausal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noncausative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonchalant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonclassical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noncompetitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonconforming\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonconformist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"noncontroversial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nondeductible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonequivalence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonetheless\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonexplosive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonextensile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonfictional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonfissile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonindustrial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noninterchangeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonionic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonionised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonionized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonlexically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmalignant neoplasm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmalignant tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmalignant tumour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmandatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmeaningful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmechanical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmechanistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmetallic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonmoving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonobligatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonoccurrence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonparticulate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonplused\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonplussed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonpolar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonpolitical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonproductive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonprotractile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonreciprocal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonrenewable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonspecific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonspecifically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonunion\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonunionised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonunionized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonverbally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonvolatile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonvolatile storage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonvolatilisable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonvolatilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonwashable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noreaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"normal tension glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"northeaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nose ring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notoriety\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notwithstanding\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novelette\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nubbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear deterrence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear resonance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear terrorism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuclear weapon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nucleus niger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nudge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuisance value\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"null\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"numskull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nut case\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutrient agar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuts\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nycturia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nystagmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oaf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obdurately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obese\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oblivion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oboe d'amore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obscurantist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obsessive-compulsive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obsessive-compulsive disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstinate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstinately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstipation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obturate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obtusely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obviously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"occlude\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocellated turkey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octopod\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculopharyngeal muscular dystrophy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ode\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"odourless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-color\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-street\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off-the-cuff\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off her guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off his guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off one's guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"off your guard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"offending\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"offensive activity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oft\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oftener\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofttimes\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oil stain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"old rose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oleophobic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olfactory impairment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ommatidium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the offensive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the side\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"on the spur of the moment\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"once and for all\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oncogene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"one-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"one-piece\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opening line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opera cloak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opera hood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operoseness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opinionated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opinionative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opisthotonos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opprobrium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"opt out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical crown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical crown glass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optical pyrometer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orchitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Anacanthini\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Aristolochiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Belemnoidea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Corrodentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Dicranales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Dinocerata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Edentata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Insessores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Lycopodiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Marattiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Orchidales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Peronosporales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Pezizales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Phallales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Picariae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Psocoptera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Rubiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Scrophulariales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Sphaeriales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Sphaerocarpales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order Struthioniformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order of the day\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order paper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organic fertiliser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organic fertilizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organic law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organisational\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organizational\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orthopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscheocele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscheocoele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteitis deformans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostentatious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"osteogenesis imperfecta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otherness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ousel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-court settlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-date\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out-of-school\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out of nothing\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out of thin air\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out of work\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outclass\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outdated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outface\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outgeneral\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outlawed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outright\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"outroar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outstare\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ouzel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"over-the-top\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"over and over\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"over and over again\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overbearingness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overcredulity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overfamiliar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overlay\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overlie\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overshoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overshoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overshot\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overskirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overturned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overvaliant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"overwrought\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"owlet moth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxymoron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oyster agaric\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oyster fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oyster mushroom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozaena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pacha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"padder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pain in the neck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pain pill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"painkiller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palaeopathology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatalised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatalized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pale yellow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleopathology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palliative\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pallidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palm off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pamper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pamperer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panamica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panamiga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pancreatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pantie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paper loss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"para aminobenzoic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parallel of latitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paralytical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paralyzed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paranoia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paraquat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paratyphoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paratyphoid fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parentless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paretic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parosamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"part\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partial verdict\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partially\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passementerie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passive immunity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastel-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurellosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurized milk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patent infringement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pathological state\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patricide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"patzer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pauper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pauperisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pauperism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pauperization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pavor nocturnus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paw\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peace of mind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peace officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peacock-throne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peanut bar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pearl ash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pearly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pearly-white\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pebble-grained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peccable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peccant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peckish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"peculate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedal pusher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediculosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peephole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peignoir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pellagra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelvic arch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelvic girdle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penalisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penalization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penile implant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penniless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peplos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peplus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perching bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfectionism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfidious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perforated eardrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perforce\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"performance bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peridotite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periodontal disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periodontitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periphrastic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perisher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanent injunction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanganic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peroneus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perpetration\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perplexity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persecution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persecutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personnel pouch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perturbed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertussis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesterer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesticide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pestilent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petit jury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pettily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petty jury\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phaneromania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantasmagoric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantasmagorical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantasy world\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phantom limb pain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phellem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phenyl salicylate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phenylamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"philanderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phimosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phobic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phobic neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"photophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"photoretinitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phylum Pyrrophyta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physical therapist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physicalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physiological reaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physiotherapist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pick up the gauntlet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pickelhaube\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pickle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pied piper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pig-headedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pigeon droppings\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pigsticking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilferer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillager\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilomotor reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilot project\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pimple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinafore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pink cockatoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pink disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pink disease fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinkroot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinny\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pip-squeak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pip out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pipe dream\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piperacillin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piranha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pistol-whip\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pit of the stomach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitch blackness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitfall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pith hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pith helmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pityingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placeman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placeseeker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placoid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plains spadefoot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planimeter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plant disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plantal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plasma physics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"platelike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"platitudinarian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"played out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"pleonaste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleurocarp\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleurocarpous moss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ploughman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plowman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plug hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plumbism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plume-tipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plunderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plunk down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plus fours\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plutocrat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pocket veto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poetic justice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pointing out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poke bonnet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poker face\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polemic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"police officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"police precinct\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"policeman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"political party\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poltroonery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polygenic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polygenic disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polyunsaturated fat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pommy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poor rates\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pop in\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poppycock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popularism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"positional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poster child\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postiche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"postictal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postilion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postillion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posttraumatic epilepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posttraumatic stress disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potassium cyanide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potassium permanganate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potato wart fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potboiler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potholder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potomania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pounce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"power drill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pragmatic sanction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pratincole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pre-eclampsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precancerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precautional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precautionary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preclinical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predictor variable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preeclampsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preparation fire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presbyope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presbyopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pressure sensation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presymptomatic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pretending\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevailing wind\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevarication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"prevue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pricking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primary cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primary dysmenorrhea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"principle of relativity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prison guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"private-enterprise\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prize ring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prodding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prodigiously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"professional boxing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profligately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prognostic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prognosticative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programmed cell death\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressive emphysematous necrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progressive vaccinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolixity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolixness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolonged interrogation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propulsion system\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proselytise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proselytize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protuberate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provincialism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"provoker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxy fight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxy war\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prudery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prudishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pruritus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pruritus ani\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudoephedrine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudohallucination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudophloem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psilophyte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psittacosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychic trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychogenetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"psychological disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychological warfare\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychopathic personality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychopathology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"psychosurgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psychotherapist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pteridosperm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ptosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pubes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pubic region\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public nudity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"public violence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puckishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puddingheaded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pugilism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pule\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pull someone's leg\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pullorum disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulmonary embolism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulmonary stenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulseless disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punctum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punishment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punk\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pupet regime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puppet government\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puppet state\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purple rock brake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purplish blue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purulency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"push around\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"put on the line\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrefaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"putrescine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putridity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puzzled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pycnodysostosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pygmy mouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyknic type\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyracanth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyramiding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyridine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyroligneous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyrolignic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyroscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pyuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"qabala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"qabalah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarreler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarreller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarrelsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quarter sessions\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quartzite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quillwort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinquefoliate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quixotism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabbit punch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"race riot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racketeer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiant energy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiation sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiation syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ragamuffin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ragged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"raggedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"raglan sleeve\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"railroad siding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raise up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raisin moth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rake off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramipril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rampageous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ranch house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rancid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"randomise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"randomize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"randomness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"rankle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rappel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raptor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raptorial bird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rasp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rassling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rat-a-tat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rat-tat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratbite fever bacterium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rational motive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rationalise away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rationalize away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rattled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rave-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ravenousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"re-emerge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reappear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reappraise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rear admiral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rearrange\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebarbative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebound tenderness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recede\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"rechauffe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recidivate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconnaissance plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconvict\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recriminate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recriminative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recriminatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recurrent fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recusancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recusant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"red-bellied terrapin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-bellied turtle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-green color blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-green colour blindness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red-green dichromacy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red ash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red coral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red cypress pine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red devil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red light\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"red meat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"red shrubby penstemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redbelly\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redetermination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redistribute\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redneck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reductivism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redwood penstemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reelection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflex action\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflex response\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrigerator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refutal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regain\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"regaining\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regional anaesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regional anesthesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regrettable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regrow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reheat\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reincarnationism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reintegrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rejected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relapsing fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relatiative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"religious trance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reluctantly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remilitarisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remilitarization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remonstrate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"remorseless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renal failure\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renal insufficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repellently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repellingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reprehensibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reprieve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repulsiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"res adjudicata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rescue party\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reshoot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respiratory distress syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respiratory distress syndrome of the newborn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resublime\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retaliate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"retaliator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retaliatory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retaliatory eviction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revenge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revenue tariff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revers\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rheologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rheological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rheology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rhetorical device\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatic heart disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rheumatism weed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rhymeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ribier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ribless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsial disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsialpox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ride out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riding breeches\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riding habit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rigatoni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right-hand man\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"right of search\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rimeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rinderpest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ring vaccination\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rinse off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riot act\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riot control\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riot control operation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riot gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rioter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rip-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rip up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"risk taker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rival\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"road agent\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roadblock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roadkill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"robber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"robbery suspect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"robe-de-chambre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rock cake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rockweed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rogue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roguery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roil\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"rook\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rooted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rope-a-dope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rope down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotenone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotgut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rottenly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rough-house\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roughcast\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"round the bend\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"round the clock\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"roux\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rowdiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rowdyism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"royal blue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubbish dump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rube\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubella panencephalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruffianism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruffianly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruffle up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruggedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"ruiner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rum cherry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rumpled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"running away\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"running suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"runup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rupestral plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rupestrine plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rupicolous plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruptured intervertebral disc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rushy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"russet scab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rustle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruthless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saccade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sack out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacred cow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sad-faced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sad sack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saddle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"saddled-shaped false morel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safari park\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety belt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety harness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"safety margin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sag\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sagging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sailor cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salad bar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicylate poisoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saliency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salt depletion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sand cat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sandbank\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanguineous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapraemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapremia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saprobe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sapsago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarape\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarcoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarong\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sassing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"satin leaf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"satinleaf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saturnism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"satyriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saucily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saute\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sauteed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"savageness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"savior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saviour\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"savorless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"savourless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saw logs\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saw wood\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saxatile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saxicoline\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saxicolous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saxicolous plant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scabicide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scabies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scalar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scalenus syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scam\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scandalmongering\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scantily clad\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scapulary\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scat singing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scatology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scatter pin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scheduler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schizoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schizotypal personality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schlep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schlepper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schlockmeister\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schmegegge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schnook\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sciara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sciarid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scienter\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sclaff\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scleredema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sclerosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scoffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scofflaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scorched-earth policy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scornfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scoundrel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scourger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scraggly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scramble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrappiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scratch out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scratchiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scribble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrimmage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrimp\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scroll\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrounger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrub brush\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrubbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrubbing brush\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scrubs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scuffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scurrility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scurvy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scut work\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sea gull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sea lawyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seagull\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secobarbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secobarbital sodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second-rate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second law of motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"second law of thermodynamics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secondary hypertension\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"section\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sectional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seed fern\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seedless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seedy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.188\"\n  },\n  \"seeking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selective amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selenium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-abasement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-annihilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-conceited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-disciplined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-discovery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-help\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-mortification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-opinionated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-preservation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-report inventory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-report personality inventory\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"self-restraining\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sempiternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"send back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense datum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense experience\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense impression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of direction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of duty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of responsibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense of shame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensitive\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensuality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensualness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septicaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septicemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septicemic plague\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serape\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serial killer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serial murderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seriously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"serologic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serological\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"service stripe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serviette\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"set upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"settle on\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"severe acute respiratory syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"severe combined immunodeficiency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"severe combined immunodeficiency disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sewage disposal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sewer gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sewer water\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex offender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shabbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"shadowbox\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shadowiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shaggy cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shaggymane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shaggymane mushroom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shako\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shallon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shamelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shantung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shape constancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shapelessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"shard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharia law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shariah\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shariah law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharp tongue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"she-devil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shed blood\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sheet web\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shegetz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shell jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shell parakeet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shelterbelt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sherd\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shiftless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shigellosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shillyshally\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shimmy\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shin guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shinpad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shipboard\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shirker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shirt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shithead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shitless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shitwork\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shiver\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"shlep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shlepper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shlockmeister\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shmegegge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shnook\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoddiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"shoeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shooting\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shopaholic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short-beaked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short-billed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short-lived\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short-stemmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short-tailed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short letter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short order\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"short sleep\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shortish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shorts\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shortwave diathermy machine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shotgun shell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoulder flash\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoulder holster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoulder pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoulder patch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shoulder vise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shovel hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"show bill\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"show card\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shower cap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shred\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrilling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrimpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrink from\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrivel up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrub\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shrubby penstemon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shudder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"shunter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shyster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sick bag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sick benefit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sick headache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sick joke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickbag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickbed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickle cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sickness benefit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sideline\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sidetrack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siege\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sightless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signal-to-noise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signal-to-noise ratio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signal/noise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signal/noise ratio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signal flag\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"silently\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simple harmonic motion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simple mindedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simplistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simulative electronic deception\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinlessness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siren call\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siren song\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skibob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skimpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skin eruption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skin graft\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skin perceptiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skinheads\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skip town\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skirmish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skulking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skunk-weed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skunkweed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slacken off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slagheap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slam-bang\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slanderer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slanderously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slang expression\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slang term\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slantingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slap\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slate-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slate-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slatey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaty-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaty-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaughterous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slaveless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleep terror disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleeping sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleepwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleepy sickness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sleuthing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slight\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slime\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slipped disc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slippery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"slippery elm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slobber over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slog\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slopingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slopseller's shop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slopshop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slothful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sloucher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sloven\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slovenly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slovenly person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slow-moving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slow-wittedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slower\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slowest\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slum\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slum area\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slumber\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sluttish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smacking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small-arm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small-minded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"small beer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smarm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smarminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smash-up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smelling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smirker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smoking gun\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smoking jacket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smoldering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smooth crabgrass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smouldering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smudgy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smuggled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"smut fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snake in the grass\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snap off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snare\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"snarl up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snatch up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sneak thief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sneak up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sneezing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snickersnee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sniffly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sniffy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snippet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snipping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sniveller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snobbery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snobbishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snobbism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snoopy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snootiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snooty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snooze\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snore\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snotty-nosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snowshoe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snuffling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snuffly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"so-called\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobbing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobbingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociopathic personality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sock\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sodium cyanide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sodium hypochlorite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soft rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"softhearted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soiled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solicitor general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solid-colored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solid-coloured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solidification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solidifying\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somatosensory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soonest\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sootiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sops\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorcery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soulless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound bite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound bow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sound pollution\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sour-tasting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sour grapes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sourball\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sourish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sourness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"soutane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spacesuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spare tire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spasmodic laryngitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spastic colon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spastic paralysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"specs\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spectacles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"speechlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spermophile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spewer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sphacelate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sphacelus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spicate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spirit off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spirit rapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritualist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spiritualistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spit and polish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"splenic fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"split decision\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"split end\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spoilation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spontaneity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spontaneousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sport car\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sports car\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sportswear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spreading dogbane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spue\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"spunky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"spurned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spurring\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sputum smear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spyhole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squall line\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squalling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squally\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"square away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"square one\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squatness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squattiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squatty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squeak through\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squiggly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"squint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stag\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"stag's garlic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stage dancing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stakeout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stakes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stampede\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"stand-down\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"standdown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"stannite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staph\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staphylococci\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staphylococcus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stardust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stare down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starvation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"state's evidence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"status asthmaticus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"statute law\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stay-at-home\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stay in place\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stealer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stem canker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"step-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"step in\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"stercolith\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sterile\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.331\"\n  },\n  \"sternly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sternutation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sthene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sticking plaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stickup\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stiff-necked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stiffness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.137\"\n  },\n  \"stigmatisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stigmatization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"still-hunt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stinginess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stinkhorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stinking horehound\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stock-still\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stolen property\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stolid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stolidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"stomach upset\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stomacher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone's throw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone-gray\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone-grey\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone-sober\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone-wash\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stone wall\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stonefish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stonewaller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stonewash\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stoning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storm-tossed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storm door\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storm petrel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storm signal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stormily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"storminess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straggle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straight-out\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"straight off\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strangely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strategical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strike a blow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strike back\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strike down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strike dumb\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strike leader\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strikebreaking\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stringent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"striver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stromateid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stromateid fish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strong breeze\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"strong gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"struggler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stub\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"stub nail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stubbiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stubbornly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stuck-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stuff and nonsense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stultification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"stumbling block\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stumper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stumpy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stunt man\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stunt woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stunted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stupidly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subclinical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subdivision Cycadophyta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subdivision Cycadophytina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subfusc\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjugator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"submandibular gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"submandibular salivary gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"submaxillary gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"submaxillary salivary gland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Blattaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Blattodea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Brachyura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborder Theropoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subservientness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"substantia nigra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subtly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subversive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subversiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subvocalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subvocalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subwoofer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suety\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufferable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufferance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sugar of lead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summary judgement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summary judgment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"summons\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sun helmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunbonnet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunhat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunk\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sunstroke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suntanned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supernaturalist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supernaturalistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supernaturalness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supply officer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suprainfection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surety bond\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surgical gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surpriser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surreal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"surrealism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrealistic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surveillance of disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspender belt\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspiciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swagger stick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swaggering\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swarthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swashbuckling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swearing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sweet-birch oil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet-potato ring rot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet Fanny Adams\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sweet false chamomile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swell up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swelter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swimmingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swimsuit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swimwear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swindle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swine flu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swine influenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"switch over\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swollen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swollen-headed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sword of Damocles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sycophancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symbolic representation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sympathy card\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symphysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symposium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synaesthetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"synesthetic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"syphilitic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"system of weights\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"systolic murmur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"table mat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"table napkin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tablespoonful\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taciturnly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactical intelligence\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tactlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tag end\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tailgate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tailless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take a dare\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take a dive\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take a firm stand\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take a joke\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take a powder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take exception\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take five\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"take to heart\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talking to\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tall tale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tambac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tamer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tanker plane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantalum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tappet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarantula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarnish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarpan\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tartar emetic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tartly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tartness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"taste cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taste property\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tatter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tattoo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tawniness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tax evasion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tear away\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tear off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tear up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telex\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperately\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"tempest-swept\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tempest-tossed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tempest-tost\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporal arteritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temporary expedient\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ten-gallon hat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenement house\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teratogenic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teratology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"termagant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terror-stricken\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terror-struck\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrorisation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrorization\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tetchily\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tete a tete\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"textual criticism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thalidomide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thanatology\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Great Calamity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Great Hunger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Great Starvation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the Irish Famine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the absurd\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"the hots\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatrical poster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theatricality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thereinafter\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermic fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermobaric bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermocautery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermoreceptor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thermotherapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theropod\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"theropod dinosaur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thickening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"thicket\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thief\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thieving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thievish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thievishness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thigh pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thin\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingamabob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingamajig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingmabob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingmajig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingumabob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingumajig\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thingummy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thinner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"third-rater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thorn\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"threatened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"threateningly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"three-day measles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thriftless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throat protector\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throaty\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thrombolytic therapy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throw in the towel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"throw stick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thuggery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thunderbird\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thundershower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thwart\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tick trefoil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ticklish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tidy up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tie-dye\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tie clip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiebreaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tightfistedness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tike\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"till\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"time and again\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"time and time again\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"time bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"time to come\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"timeworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tin disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tin pest\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tin plague\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tin pyrites\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tine test\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tinnitus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tip-and-run\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tire out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titanium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titulary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"to a man\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tobacco budworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tobacco mosaic\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tobacco thrips\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toe-to-toe\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toeless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toga virilis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toilsomeness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomato fruitworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tombac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tombak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomfoolery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"too bad\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"too big for one's breeches\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toot\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"top fermentation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topcoat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tope\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toreador pants\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"torpedo-boat destroyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortilla chip\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"torture chamber\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"total aphasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"total darkness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"total parenteral nutrition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tottery\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"touch perception\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tough-skinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tousled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxaemia of pregnancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxemia of pregnancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxic industrial waste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxic shock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxic shock syndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toxic waste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade protection\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traditionalist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traduce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traducer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragic flaw\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trail boss\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trail head\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trailhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"train of thought\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traitorousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transforming gene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transmogrification\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trapped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trash dump\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traumatic epilepsy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traumatophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"travel-worn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treasonist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treasure flower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tree surgery\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"treed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trembler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trembles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trespass quare clausum fregit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trial attorney\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trial lawyer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trial run\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tribulate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tributyrin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichloroethane\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichloroethylene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trichomoniasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifoliate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifoliated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifoliolate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifoliolate leaf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triskaidekaphobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trisomy 21\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trite\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triumvir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triumvirate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trivia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triviality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"trollop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tropical sprue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trouble maker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troublemaker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troubler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troublesome\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truancy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true blackberry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true vocal cord\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"true vocal fold\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tsunami\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tsuris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tuberculous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tudung\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tuffet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tularaemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tularemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumesce\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumescent\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumidity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumidness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumor virus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tungsten steel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turbulency\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turn down\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.112\"\n  },\n  \"turn of events\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turnkey\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tweediness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twig blight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twin\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twin bed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twinge\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"twinned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"two-eared\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tyke\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"type II diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"type I diabetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"typescript\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"typhoid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"typhoid fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tyrant\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tyrosinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uakari\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulcerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulcerous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultramicroscope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultramontanism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umpire\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaccepted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unacknowledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unacquainted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaddressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unadventurous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaffecting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unaffectionate\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unalterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"unannealed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unappreciated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unapproachability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unargumentative\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unassailable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"unassured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unattractively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unavailability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unavoidably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unawed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbalance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unbarred\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbefitting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbeloved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unblinking\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"unbolt\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbolted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbooked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unborn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unburnished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unbuttoned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"uncarpeted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncaused\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncensored\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unchallenged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncharted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unchristianly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unchristlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncommercialised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncommercialized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unconditioned reflex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unconformist\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncongeniality\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unconsidered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unconstricted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncontroversial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncoordinated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncropped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unctuousness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uncurtained\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undecipherable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undeciphered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undefendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undefended\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undefinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undelineated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undemanding\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"under-the-counter\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underbid\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"underbodice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underclothed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underline\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underpart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underprice\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"underscore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undetectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"undiagnosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undifferentiated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undisputed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undistinguishable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undrawn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undulant fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"undying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unedited\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uneducated person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unenclosed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unencouraging\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unenlightening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"unequipped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unerring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unethically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unevenness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unexchangeability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexclusive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unexpansive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unfading\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfashionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfeasibility\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfeasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfeathered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfinished business\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unforethoughtful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unfortunate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfortunate person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unfunny\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungainliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungentle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungentlemanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungentlemanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unglazed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungraceful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ungradable opposition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhallow\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhardened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unharmonious\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhatched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhealthfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhealthy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"unhelpfulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhinged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unholiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unhygienic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniformity\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unilateral paralysis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unilateralism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unimportant\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unimpressive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unimpressively\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uninebriated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uninquiring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"uninquisitive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"uninsurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uninsured\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uninterested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uninterestingly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unintoxicated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"union suit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"universally\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unjustified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unjustness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlatched\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlawfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlikelihood\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlikeliness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlocked\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlogical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unlucky\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"unman\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmanly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"unmapped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmelted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmercifulness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmined\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmoderated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmotivated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unmovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnerve\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnerved\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnerving\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unnoticed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unobservable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unorganised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unorganized\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unoriginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpackaged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpainted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unparented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unperformed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpermed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unperplexed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpersuasiveness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpitying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasant woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpleasantness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpledged\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpopular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unprepossessing\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpreventable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unprofessional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unprofitably\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"unpromised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unprovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unpublished\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unqualifiedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unquestioned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unreadable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unreason\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unreassuring\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unredeemable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unregenerated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unregistered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"unregulated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unrehearsed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrenewable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrepressed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unretentive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrevised\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrhymed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unrimed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unromantic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsanitariness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsatisfactory\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsatisfying\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unscheduled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unscientific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unscripted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unseen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unseeyn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unselected\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsettle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unshaped\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unshapen\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsmiling\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsmooth\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsold\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsolvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsown\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unspecific\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unspectacular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unspoken accusation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsporting\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsportsmanlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unstaple\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unstring\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsuccessful person\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsupportive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsweet\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unswept\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unsystematically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untenable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unthematic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untitled\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untoasted\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untranslatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untrimmed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untrustiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untrustworthiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untruthful\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untruthfully\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"untypically\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ununderstood\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unventilated\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unvindictive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unvitrified\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unvoiced\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"unweaned\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unwieldy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"unworkable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unwoven\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upheave\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upper-lower-class\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uppish\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upraise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uprooter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"upset stomach\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urban guerrilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urchin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"useless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utility-grade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaccinating\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaccinia gangrenosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacillator\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuum bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaginismus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaguely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vagueness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"vain\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valley fever\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vandalise\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vandalism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vandalize\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vanilla-scented\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vanisher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vanquish\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vapid\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"variability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"varicella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"varicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"varmint\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"varnish\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vascular hemophilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vegetable tallow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vegetive\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veiled accusation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena musculophrenica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venomous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ventricose\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventricous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventriloquism\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventriloquy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vernal witch hazel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"versicle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"very fast\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vested\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestiary\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestigial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vetchworm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viatical settlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viatication\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viaticus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viaticus settlement\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vice admiral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vice crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vicious cycle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viciously\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vilely\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vileness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vilifier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vilipend\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"villain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"villainess\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viricide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"virtually\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"virucide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vision defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual defect\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual disorder\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"visual impairment\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitiliginous\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitriolic\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"voiding\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volcanic eruption\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voltaic cell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volume-detonation bomb\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vomiter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"von Recklinghausen's disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"von Willebrand's disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vote out\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerability\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"waddle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waders\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waffle\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wager\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"waist pack\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wall unit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wallop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"walnut blight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wander\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"war-torn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"war-worn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"war crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"war of nerves\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"war vessel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warning\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"warning of war\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warship\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"warthog\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wash one's hands\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"washed-up\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waste-yard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waste of effort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waste of energy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waste of material\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waste one's time\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wasteland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wastewater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wasteyard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watch chain\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"watch guard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"water fennel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"water hole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waterworn\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wave-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waverer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waxiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"waxlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weak-kneed\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weak force\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weak interaction\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weakening\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"weakly interacting massive particle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wear off\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wear ship\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wear upon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wearable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weather forecaster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weatherman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wedding dress\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wedding gown\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"week after week\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"weeper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"werewolf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"western whiptail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wetback\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wetland\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whack\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wham\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whap\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whatchamacallit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whatchamacallum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whatsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheedler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheel lock\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheeler dealer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheelless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wheeziness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whiffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whiner\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whisper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-flowered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-livered\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white-tailed sea eagle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white Spanish broom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white broom\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white dead nettle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white feather\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white fungus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white lead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white man's burden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white noise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"white rust\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whitened\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whodunit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whole gale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whooping cough\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whoosh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whop\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wickedly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wide-angle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wide-angle lens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wide of the mark\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"widow\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"widow woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"widower\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"widowman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wiggle nail\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wild apple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wild chamomile\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wild emmer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wild wheat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wildfire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"willies\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wilt disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wimple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wind generation\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wind power\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"windbreak\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"windstorm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"winless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wireless\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wiriness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wishy-washy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witch's brew\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witches' brew\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witches' broth\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"witching\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wobble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wobbly\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wolfman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wolfram steel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woman hater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womaniser\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"womanizer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wood alcohol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wood cudweed\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wood spirit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wood tar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wood vise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woodsiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woodworking vise\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woolgather\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"woolly alder aphid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"word of farewell\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wordiness\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wordlessly\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work-clothes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work-clothing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work-shy\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work at\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"work stoppage\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"workhouse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"worrywart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wounded\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wraithlike\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wren\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrenching\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrest\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrestle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrestler\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrestling\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wring from\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wrist pad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"writ\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"writ of prohibition\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"write-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"write up\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"written matter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xanthic acid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenolith\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xeric\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yacht\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yahoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yammer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"yatobyo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow-bellied\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yellow woman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yes-no question\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yield up\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yips\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yodel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yokel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zapper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zephyr\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zeroth law of thermodynamics\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zidovudine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zillion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo keeper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoological garden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoonosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoonotic disease\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoophobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/French/pattern-sentiment-fr.json",
    "content": "{\n  \"abandonné\": {\n    \"form\": \"abandonné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"abandonnée\": {\n    \"form\": \"abandonnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abandonnées\": {\n    \"form\": \"abandonnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abandonnés\": {\n    \"form\": \"abandonnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abasourdi\": {\n    \"form\": \"abasourdi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abasourdie\": {\n    \"form\": \"abasourdie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abasourdis\": {\n    \"form\": \"abasourdis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abattu\": {\n    \"form\": \"abattu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abattue\": {\n    \"form\": \"abattue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abattues\": {\n    \"form\": \"abattues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abattus\": {\n    \"form\": \"abattus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aberrant\": {\n    \"form\": \"aberrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aberrante\": {\n    \"form\": \"aberrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aberrantes\": {\n    \"form\": \"aberrantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aberrants\": {\n    \"form\": \"aberrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abominable\": {\n    \"form\": \"abominable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"abominables\": {\n    \"form\": \"abominables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abondant\": {\n    \"form\": \"abondant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abondante\": {\n    \"form\": \"abondante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abondantes\": {\n    \"form\": \"abondantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abondants\": {\n    \"form\": \"abondants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abordable\": {\n    \"form\": \"abordable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abordables\": {\n    \"form\": \"abordables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abracadabrant\": {\n    \"form\": \"abracadabrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abracadabrante\": {\n    \"form\": \"abracadabrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abracadabrantes\": {\n    \"form\": \"abracadabrantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abracadabrants\": {\n    \"form\": \"abracadabrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abruti\": {\n    \"form\": \"abruti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abrutie\": {\n    \"form\": \"abrutie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abruties\": {\n    \"form\": \"abruties\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abrutis\": {\n    \"form\": \"abrutis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absent\": {\n    \"form\": \"absent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absente\": {\n    \"form\": \"absente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absentes\": {\n    \"form\": \"absentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absents\": {\n    \"form\": \"absents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absolu\": {\n    \"form\": \"absolu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absolue\": {\n    \"form\": \"absolue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absolues\": {\n    \"form\": \"absolues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absolument\": {\n    \"form\": \"absolument\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absolus\": {\n    \"form\": \"absolus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absorbé\": {\n    \"form\": \"absorbé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absorbée\": {\n    \"form\": \"absorbée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absorbées\": {\n    \"form\": \"absorbées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"absorbés\": {\n    \"form\": \"absorbés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abstrait\": {\n    \"form\": \"abstrait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"abstraite\": {\n    \"form\": \"abstraite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abstraites\": {\n    \"form\": \"abstraites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abstraits\": {\n    \"form\": \"abstraits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"absurde\": {\n    \"form\": \"absurde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"absurdes\": {\n    \"form\": \"absurdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"abusif\": {\n    \"form\": \"abusif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abusifs\": {\n    \"form\": \"abusifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abusive\": {\n    \"form\": \"abusive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"abusives\": {\n    \"form\": \"abusives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acariâtre\": {\n    \"form\": \"acariâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acariâtres\": {\n    \"form\": \"acariâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accablé\": {\n    \"form\": \"accablé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accablée\": {\n    \"form\": \"accablée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accablées\": {\n    \"form\": \"accablées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accablés\": {\n    \"form\": \"accablés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acceptable\": {\n    \"form\": \"acceptable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acceptables\": {\n    \"form\": \"acceptables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accessible\": {\n    \"form\": \"accessible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accessibles\": {\n    \"form\": \"accessibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accidenté\": {\n    \"form\": \"accidenté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.04\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accidentée\": {\n    \"form\": \"accidentée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.04\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accidentées\": {\n    \"form\": \"accidentées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.04\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accidentés\": {\n    \"form\": \"accidentés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.04\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accolé\": {\n    \"form\": \"accolé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accolée\": {\n    \"form\": \"accolée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accolées\": {\n    \"form\": \"accolées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accolés\": {\n    \"form\": \"accolés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accommodant\": {\n    \"form\": \"accommodant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accommodante\": {\n    \"form\": \"accommodante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accommodantes\": {\n    \"form\": \"accommodantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accommodants\": {\n    \"form\": \"accommodants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accompli\": {\n    \"form\": \"accompli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"accomplie\": {\n    \"form\": \"accomplie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"accomplies\": {\n    \"form\": \"accomplies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"accomplis\": {\n    \"form\": \"accomplis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"accort\": {\n    \"form\": \"accort\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accorte\": {\n    \"form\": \"accorte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accortes\": {\n    \"form\": \"accortes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accorts\": {\n    \"form\": \"accorts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accueillant\": {\n    \"form\": \"accueillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accueillante\": {\n    \"form\": \"accueillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accueillantes\": {\n    \"form\": \"accueillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"accueillants\": {\n    \"form\": \"accueillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acerbe\": {\n    \"form\": \"acerbe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acerbes\": {\n    \"form\": \"acerbes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acharné\": {\n    \"form\": \"acharné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acharnée\": {\n    \"form\": \"acharnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acharnées\": {\n    \"form\": \"acharnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acharnés\": {\n    \"form\": \"acharnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"achevé\": {\n    \"form\": \"achevé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"achevée\": {\n    \"form\": \"achevée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"achevées\": {\n    \"form\": \"achevées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"achevés\": {\n    \"form\": \"achevés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acidulé\": {\n    \"form\": \"acidulé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acidulée\": {\n    \"form\": \"acidulée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acidulées\": {\n    \"form\": \"acidulées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"acidulés\": {\n    \"form\": \"acidulés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"actif\": {\n    \"form\": \"actif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"actifs\": {\n    \"form\": \"actifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"active\": {\n    \"form\": \"active\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"actives\": {\n    \"form\": \"actives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"activiste\": {\n    \"form\": \"activiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"activistes\": {\n    \"form\": \"activistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"actuel\": {\n    \"form\": \"actuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"actuelle\": {\n    \"form\": \"actuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"actuelles\": {\n    \"form\": \"actuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"actuels\": {\n    \"form\": \"actuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"additionnel\": {\n    \"form\": \"additionnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"additionnelle\": {\n    \"form\": \"additionnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"additionnelles\": {\n    \"form\": \"additionnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"additionnels\": {\n    \"form\": \"additionnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adjacent\": {\n    \"form\": \"adjacent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adjacente\": {\n    \"form\": \"adjacente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adjacentes\": {\n    \"form\": \"adjacentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adjacents\": {\n    \"form\": \"adjacents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"administratif\": {\n    \"form\": \"administratif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"administratifs\": {\n    \"form\": \"administratifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"administrative\": {\n    \"form\": \"administrative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"administratives\": {\n    \"form\": \"administratives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"admirable\": {\n    \"form\": \"admirable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"admirables\": {\n    \"form\": \"admirables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adolescent\": {\n    \"form\": \"adolescent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adolescente\": {\n    \"form\": \"adolescente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adolescentes\": {\n    \"form\": \"adolescentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adolescents\": {\n    \"form\": \"adolescents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adorable\": {\n    \"form\": \"adorable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adorables\": {\n    \"form\": \"adorables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"adore\": {\n    \"form\": \"adore\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adorer\": {\n    \"form\": \"adorer\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adoré\": {\n    \"form\": \"adoré\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"adroit\": {\n    \"form\": \"adroit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adroite\": {\n    \"form\": \"adroite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adroites\": {\n    \"form\": \"adroites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adroits\": {\n    \"form\": \"adroits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adulateur\": {\n    \"form\": \"adulateur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adventice\": {\n    \"form\": \"adventice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adventices\": {\n    \"form\": \"adventices\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adverse\": {\n    \"form\": \"adverse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adverses\": {\n    \"form\": \"adverses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adéquat\": {\n    \"form\": \"adéquat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adéquate\": {\n    \"form\": \"adéquate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adéquates\": {\n    \"form\": \"adéquates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"adéquats\": {\n    \"form\": \"adéquats\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affable\": {\n    \"form\": \"affable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affables\": {\n    \"form\": \"affables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affectueuse\": {\n    \"form\": \"affectueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affectueuses\": {\n    \"form\": \"affectueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affectueux\": {\n    \"form\": \"affectueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"affilé\": {\n    \"form\": \"affilé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affilée\": {\n    \"form\": \"affilée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affilées\": {\n    \"form\": \"affilées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affilés\": {\n    \"form\": \"affilés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligeant\": {\n    \"form\": \"affligeant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligeante\": {\n    \"form\": \"affligeante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligeantes\": {\n    \"form\": \"affligeantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligeants\": {\n    \"form\": \"affligeants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligé\": {\n    \"form\": \"affligé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligée\": {\n    \"form\": \"affligée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affligés\": {\n    \"form\": \"affligés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affolant\": {\n    \"form\": \"affolant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affolante\": {\n    \"form\": \"affolante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affolantes\": {\n    \"form\": \"affolantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affolants\": {\n    \"form\": \"affolants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"affolé\": {\n    \"form\": \"affolé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"affolée\": {\n    \"form\": \"affolée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affolées\": {\n    \"form\": \"affolées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affolés\": {\n    \"form\": \"affolés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affreuse\": {\n    \"form\": \"affreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affreuses\": {\n    \"form\": \"affreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"affreux\": {\n    \"form\": \"affreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"africain\": {\n    \"form\": \"africain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"africaine\": {\n    \"form\": \"africaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"africaines\": {\n    \"form\": \"africaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"africains\": {\n    \"form\": \"africains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agaçant\": {\n    \"form\": \"agaçant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agaçante\": {\n    \"form\": \"agaçante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agaçantes\": {\n    \"form\": \"agaçantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agaçants\": {\n    \"form\": \"agaçants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agissant\": {\n    \"form\": \"agissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agissante\": {\n    \"form\": \"agissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agissantes\": {\n    \"form\": \"agissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"agité\": {\n    \"form\": \"agité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"agitée\": {\n    \"form\": \"agitée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agitées\": {\n    \"form\": \"agitées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agités\": {\n    \"form\": \"agités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agressif\": {\n    \"form\": \"agressif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"agressifs\": {\n    \"form\": \"agressifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agressive\": {\n    \"form\": \"agressive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agressives\": {\n    \"form\": \"agressives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"agréable\": {\n    \"form\": \"agréable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"agréablement\": {\n    \"form\": \"agréablement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"agréables\": {\n    \"form\": \"agréables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ahurissant\": {\n    \"form\": \"ahurissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ahurissante\": {\n    \"form\": \"ahurissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ahurissantes\": {\n    \"form\": \"ahurissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ahurissants\": {\n    \"form\": \"ahurissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aigre\": {\n    \"form\": \"aigre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aigres\": {\n    \"form\": \"aigres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aigu\": {\n    \"form\": \"aigu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aiguisé\": {\n    \"form\": \"aiguisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aiguisée\": {\n    \"form\": \"aiguisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aiguisées\": {\n    \"form\": \"aiguisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aiguisés\": {\n    \"form\": \"aiguisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aigus\": {\n    \"form\": \"aigus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aiguë\": {\n    \"form\": \"aiguë\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aiguës\": {\n    \"form\": \"aiguës\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aimable\": {\n    \"form\": \"aimable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aimables\": {\n    \"form\": \"aimables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aimant\": {\n    \"form\": \"aimant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aimante\": {\n    \"form\": \"aimante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aimantes\": {\n    \"form\": \"aimantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aimants\": {\n    \"form\": \"aimants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aime\": {\n    \"form\": \"aime\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aimerait\": {\n    \"form\": \"aimerait\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aimé\": {\n    \"form\": \"aimé\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aimée\": {\n    \"form\": \"aimée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aimées\": {\n    \"form\": \"aimées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aimés\": {\n    \"form\": \"aimés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ajouté\": {\n    \"form\": \"ajouté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajoutée\": {\n    \"form\": \"ajoutée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajoutées\": {\n    \"form\": \"ajoutées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajoutés\": {\n    \"form\": \"ajoutés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajusté\": {\n    \"form\": \"ajusté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajustée\": {\n    \"form\": \"ajustée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajustées\": {\n    \"form\": \"ajustées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ajustés\": {\n    \"form\": \"ajustés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"alarmant\": {\n    \"form\": \"alarmant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"alarmante\": {\n    \"form\": \"alarmante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"alarmantes\": {\n    \"form\": \"alarmantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"alarmants\": {\n    \"form\": \"alarmants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"algérien\": {\n    \"form\": \"algérien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"algérienne\": {\n    \"form\": \"algérienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"algériennes\": {\n    \"form\": \"algériennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"algériens\": {\n    \"form\": \"algériens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allemand\": {\n    \"form\": \"allemand\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"allemande\": {\n    \"form\": \"allemande\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"allemandes\": {\n    \"form\": \"allemandes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"allemands\": {\n    \"form\": \"allemands\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"allogène\": {\n    \"form\": \"allogène\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allogènes\": {\n    \"form\": \"allogènes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allongé\": {\n    \"form\": \"allongé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"allongée\": {\n    \"form\": \"allongée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allongées\": {\n    \"form\": \"allongées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allongés\": {\n    \"form\": \"allongés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allumé\": {\n    \"form\": \"allumé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"allumée\": {\n    \"form\": \"allumée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allumées\": {\n    \"form\": \"allumées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allumés\": {\n    \"form\": \"allumés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"allègre\": {\n    \"form\": \"allègre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"allègres\": {\n    \"form\": \"allègres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altruiste\": {\n    \"form\": \"altruiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altruistes\": {\n    \"form\": \"altruistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altérable\": {\n    \"form\": \"altérable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altéré\": {\n    \"form\": \"altéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altérée\": {\n    \"form\": \"altérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altérées\": {\n    \"form\": \"altérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"altérés\": {\n    \"form\": \"altérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aléatoire\": {\n    \"form\": \"aléatoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aléatoires\": {\n    \"form\": \"aléatoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amaigri\": {\n    \"form\": \"amaigri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amaigrie\": {\n    \"form\": \"amaigrie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amaigries\": {\n    \"form\": \"amaigries\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amaigris\": {\n    \"form\": \"amaigris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ambiant\": {\n    \"form\": \"ambiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ambiante\": {\n    \"form\": \"ambiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ambiantes\": {\n    \"form\": \"ambiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ambiants\": {\n    \"form\": \"ambiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ambigu\": {\n    \"form\": \"ambigu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ambigus\": {\n    \"form\": \"ambigus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ambiguë\": {\n    \"form\": \"ambiguë\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ambiguës\": {\n    \"form\": \"ambiguës\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amer\": {\n    \"form\": \"amer\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amers\": {\n    \"form\": \"amers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ami\": {\n    \"form\": \"ami\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amical\": {\n    \"form\": \"amical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amicale\": {\n    \"form\": \"amicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amicales\": {\n    \"form\": \"amicales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amicaux\": {\n    \"form\": \"amicaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amie\": {\n    \"form\": \"amie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amies\": {\n    \"form\": \"amies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amis\": {\n    \"form\": \"amis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amoureuse\": {\n    \"form\": \"amoureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amoureuses\": {\n    \"form\": \"amoureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amoureux\": {\n    \"form\": \"amoureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ample\": {\n    \"form\": \"ample\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amples\": {\n    \"form\": \"amples\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amusant\": {\n    \"form\": \"amusant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amusante\": {\n    \"form\": \"amusante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amusantes\": {\n    \"form\": \"amusantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amusants\": {\n    \"form\": \"amusants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amère\": {\n    \"form\": \"amère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amères\": {\n    \"form\": \"amères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"amélioré\": {\n    \"form\": \"amélioré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"améliorée\": {\n    \"form\": \"améliorée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"améliorées\": {\n    \"form\": \"améliorées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"améliorés\": {\n    \"form\": \"améliorés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"américain\": {\n    \"form\": \"américain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"américaine\": {\n    \"form\": \"américaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"américaines\": {\n    \"form\": \"américaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"américains\": {\n    \"form\": \"américains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"amérindien\": {\n    \"form\": \"amérindien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amérindienne\": {\n    \"form\": \"amérindienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amérindiennes\": {\n    \"form\": \"amérindiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"amérindiens\": {\n    \"form\": \"amérindiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"améthyste\": {\n    \"form\": \"améthyste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"analogique\": {\n    \"form\": \"analogique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"analogiques\": {\n    \"form\": \"analogiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"analogue\": {\n    \"form\": \"analogue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"analogues\": {\n    \"form\": \"analogues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ancestral\": {\n    \"form\": \"ancestral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ancestrale\": {\n    \"form\": \"ancestrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ancestrales\": {\n    \"form\": \"ancestrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ancestraux\": {\n    \"form\": \"ancestraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ancien\": {\n    \"form\": \"ancien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ancienne\": {\n    \"form\": \"ancienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anciennes\": {\n    \"form\": \"anciennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anciens\": {\n    \"form\": \"anciens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"androïde\": {\n    \"form\": \"androïde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"androïdes\": {\n    \"form\": \"androïdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anglais\": {\n    \"form\": \"anglais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"anglaise\": {\n    \"form\": \"anglaise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anglaises\": {\n    \"form\": \"anglaises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anglo-saxon\": {\n    \"form\": \"anglo-saxon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anglo-saxonne\": {\n    \"form\": \"anglo-saxonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anglo-saxonnes\": {\n    \"form\": \"anglo-saxonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anglo-saxons\": {\n    \"form\": \"anglo-saxons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissant\": {\n    \"form\": \"angoissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissante\": {\n    \"form\": \"angoissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissantes\": {\n    \"form\": \"angoissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissants\": {\n    \"form\": \"angoissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissé\": {\n    \"form\": \"angoissé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissée\": {\n    \"form\": \"angoissée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissées\": {\n    \"form\": \"angoissées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angoissés\": {\n    \"form\": \"angoissés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angélique\": {\n    \"form\": \"angélique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"angéliques\": {\n    \"form\": \"angéliques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anhydre\": {\n    \"form\": \"anhydre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"animal\": {\n    \"form\": \"animal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"animale\": {\n    \"form\": \"animale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"animales\": {\n    \"form\": \"animales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"annexé\": {\n    \"form\": \"annexé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"annexée\": {\n    \"form\": \"annexée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"annexées\": {\n    \"form\": \"annexées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"annexés\": {\n    \"form\": \"annexés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anodin\": {\n    \"form\": \"anodin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anodine\": {\n    \"form\": \"anodine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anodines\": {\n    \"form\": \"anodines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anodins\": {\n    \"form\": \"anodins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anonyme\": {\n    \"form\": \"anonyme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"anonymes\": {\n    \"form\": \"anonymes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"anormal\": {\n    \"form\": \"anormal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anormale\": {\n    \"form\": \"anormale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anormales\": {\n    \"form\": \"anormales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anormaux\": {\n    \"form\": \"anormaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antagonique\": {\n    \"form\": \"antagonique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anthropoïde\": {\n    \"form\": \"anthropoïde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anthropoïdes\": {\n    \"form\": \"anthropoïdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"anticapitaliste\": {\n    \"form\": \"anticapitaliste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"antique\": {\n    \"form\": \"antique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"antiques\": {\n    \"form\": \"antiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"antérieur\": {\n    \"form\": \"antérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"antérieure\": {\n    \"form\": \"antérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"antérieures\": {\n    \"form\": \"antérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"antérieurs\": {\n    \"form\": \"antérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"anxieuse\": {\n    \"form\": \"anxieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"anxieuses\": {\n    \"form\": \"anxieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"anxieux\": {\n    \"form\": \"anxieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"apeuré\": {\n    \"form\": \"apeuré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apeurée\": {\n    \"form\": \"apeurée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apeurées\": {\n    \"form\": \"apeurées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apeurés\": {\n    \"form\": \"apeurés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aphasique\": {\n    \"form\": \"aphasique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aphasiques\": {\n    \"form\": \"aphasiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aplati\": {\n    \"form\": \"aplati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aplatie\": {\n    \"form\": \"aplatie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aplaties\": {\n    \"form\": \"aplaties\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aplatis\": {\n    \"form\": \"aplatis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apparent\": {\n    \"form\": \"apparent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"apparente\": {\n    \"form\": \"apparente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apparentes\": {\n    \"form\": \"apparentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"apparents\": {\n    \"form\": \"apparents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"appliqué\": {\n    \"form\": \"appliqué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appliquée\": {\n    \"form\": \"appliquée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appliquées\": {\n    \"form\": \"appliquées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appliqués\": {\n    \"form\": \"appliqués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approchant\": {\n    \"form\": \"approchant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approchants\": {\n    \"form\": \"approchants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approché\": {\n    \"form\": \"approché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approchée\": {\n    \"form\": \"approchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approchés\": {\n    \"form\": \"approchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approprié\": {\n    \"form\": \"approprié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appropriée\": {\n    \"form\": \"appropriée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appropriées\": {\n    \"form\": \"appropriées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appropriés\": {\n    \"form\": \"appropriés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approximatif\": {\n    \"form\": \"approximatif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approximatifs\": {\n    \"form\": \"approximatifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approximative\": {\n    \"form\": \"approximative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"approximatives\": {\n    \"form\": \"approximatives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appréciable\": {\n    \"form\": \"appréciable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"appréciables\": {\n    \"form\": \"appréciables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"apprécié\": {\n    \"form\": \"apprécié\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"arabe\": {\n    \"form\": \"arabe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"arabes\": {\n    \"form\": \"arabes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arachnéen\": {\n    \"form\": \"arachnéen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arachnéenne\": {\n    \"form\": \"arachnéenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arachnéennes\": {\n    \"form\": \"arachnéennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ardent\": {\n    \"form\": \"ardent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ardente\": {\n    \"form\": \"ardente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ardentes\": {\n    \"form\": \"ardentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ardents\": {\n    \"form\": \"ardents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"argenté\": {\n    \"form\": \"argenté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"argentée\": {\n    \"form\": \"argentée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"argentées\": {\n    \"form\": \"argentées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"argentés\": {\n    \"form\": \"argentés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aristocrate\": {\n    \"form\": \"aristocrate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aristocrates\": {\n    \"form\": \"aristocrates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"armé\": {\n    \"form\": \"armé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"armée\": {\n    \"form\": \"armée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"armées\": {\n    \"form\": \"armées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"armés\": {\n    \"form\": \"armés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrivé\": {\n    \"form\": \"arrivé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"arrivée\": {\n    \"form\": \"arrivée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrivées\": {\n    \"form\": \"arrivées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrivés\": {\n    \"form\": \"arrivés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrière\": {\n    \"form\": \"arrière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"arriéré\": {\n    \"form\": \"arriéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arriérée\": {\n    \"form\": \"arriérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arriérées\": {\n    \"form\": \"arriérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arriérés\": {\n    \"form\": \"arriérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrondi\": {\n    \"form\": \"arrondi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrondie\": {\n    \"form\": \"arrondie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrondies\": {\n    \"form\": \"arrondies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrondis\": {\n    \"form\": \"arrondis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"arrêté\": {\n    \"form\": \"arrêté\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"arrêtée\": {\n    \"form\": \"arrêtée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrêtées\": {\n    \"form\": \"arrêtées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"arrêtés\": {\n    \"form\": \"arrêtés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artificiel\": {\n    \"form\": \"artificiel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"artificielle\": {\n    \"form\": \"artificielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artificielles\": {\n    \"form\": \"artificielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artificiels\": {\n    \"form\": \"artificiels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"artistique\": {\n    \"form\": \"artistique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"artistiques\": {\n    \"form\": \"artistiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assemblé\": {\n    \"form\": \"assemblé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assemblés\": {\n    \"form\": \"assemblés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assidu\": {\n    \"form\": \"assidu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assidue\": {\n    \"form\": \"assidue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assidues\": {\n    \"form\": \"assidues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assidus\": {\n    \"form\": \"assidus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assis\": {\n    \"form\": \"assis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"assise\": {\n    \"form\": \"assise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assises\": {\n    \"form\": \"assises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assoupi\": {\n    \"form\": \"assoupi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assoupie\": {\n    \"form\": \"assoupie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assoupies\": {\n    \"form\": \"assoupies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assoupis\": {\n    \"form\": \"assoupis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assujetti\": {\n    \"form\": \"assujetti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assujetties\": {\n    \"form\": \"assujetties\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assujettis\": {\n    \"form\": \"assujettis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"assuré\": {\n    \"form\": \"assuré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"assurée\": {\n    \"form\": \"assurée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assurées\": {\n    \"form\": \"assurées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"assurés\": {\n    \"form\": \"assurés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"astral\": {\n    \"form\": \"astral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astrale\": {\n    \"form\": \"astrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astrales\": {\n    \"form\": \"astrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astraux\": {\n    \"form\": \"astraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astronomique\": {\n    \"form\": \"astronomique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astronomiques\": {\n    \"form\": \"astronomiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astucieuse\": {\n    \"form\": \"astucieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astucieuses\": {\n    \"form\": \"astucieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"astucieux\": {\n    \"form\": \"astucieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"athlétique\": {\n    \"form\": \"athlétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"athlétiques\": {\n    \"form\": \"athlétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"atroce\": {\n    \"form\": \"atroce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"atroces\": {\n    \"form\": \"atroces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"atrocité\": {\n    \"form\": \"atrocité\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"attachant\": {\n    \"form\": \"attachant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attachante\": {\n    \"form\": \"attachante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attachants\": {\n    \"form\": \"attachants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attardé\": {\n    \"form\": \"attardé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attardée\": {\n    \"form\": \"attardée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attardées\": {\n    \"form\": \"attardées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attardés\": {\n    \"form\": \"attardés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attenant\": {\n    \"form\": \"attenant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attenante\": {\n    \"form\": \"attenante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attenantes\": {\n    \"form\": \"attenantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attentif\": {\n    \"form\": \"attentif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"attentifs\": {\n    \"form\": \"attentifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attentionné\": {\n    \"form\": \"attentionné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attentionnée\": {\n    \"form\": \"attentionnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attentionnées\": {\n    \"form\": \"attentionnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attentionnés\": {\n    \"form\": \"attentionnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attentive\": {\n    \"form\": \"attentive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attentives\": {\n    \"form\": \"attentives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"attirant\": {\n    \"form\": \"attirant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attirante\": {\n    \"form\": \"attirante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attirantes\": {\n    \"form\": \"attirantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attirants\": {\n    \"form\": \"attirants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attitré\": {\n    \"form\": \"attitré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attitrée\": {\n    \"form\": \"attitrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attitrées\": {\n    \"form\": \"attitrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attitrés\": {\n    \"form\": \"attitrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attristé\": {\n    \"form\": \"attristé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attristée\": {\n    \"form\": \"attristée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"attristés\": {\n    \"form\": \"attristés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"atypique\": {\n    \"form\": \"atypique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"atypiques\": {\n    \"form\": \"atypiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aubergine\": {\n    \"form\": \"aubergine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"audacieuse\": {\n    \"form\": \"audacieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"audacieuses\": {\n    \"form\": \"audacieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"audacieux\": {\n    \"form\": \"audacieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"audible\": {\n    \"form\": \"audible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"audibles\": {\n    \"form\": \"audibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"auguste\": {\n    \"form\": \"auguste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"augustes\": {\n    \"form\": \"augustes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"austère\": {\n    \"form\": \"austère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"austères\": {\n    \"form\": \"austères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"authentique\": {\n    \"form\": \"authentique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"authentiques\": {\n    \"form\": \"authentiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"autonome\": {\n    \"form\": \"autonome\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autonomes\": {\n    \"form\": \"autonomes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autorisé\": {\n    \"form\": \"autorisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autorisée\": {\n    \"form\": \"autorisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autorisées\": {\n    \"form\": \"autorisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autorisés\": {\n    \"form\": \"autorisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autoritaire\": {\n    \"form\": \"autoritaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autoritaires\": {\n    \"form\": \"autoritaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"autre\": {\n    \"form\": \"autre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"autres\": {\n    \"form\": \"autres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"avancé\": {\n    \"form\": \"avancé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"avancée\": {\n    \"form\": \"avancée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"avancées\": {\n    \"form\": \"avancées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"avancés\": {\n    \"form\": \"avancés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"avant-courrier\": {\n    \"form\": \"avant-courrier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avant-courrière\": {\n    \"form\": \"avant-courrière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avantageuse\": {\n    \"form\": \"avantageuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avantageuses\": {\n    \"form\": \"avantageuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avantageux\": {\n    \"form\": \"avantageux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avarié\": {\n    \"form\": \"avarié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avariée\": {\n    \"form\": \"avariée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avariées\": {\n    \"form\": \"avariées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avariés\": {\n    \"form\": \"avariés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avenant\": {\n    \"form\": \"avenant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avenante\": {\n    \"form\": \"avenante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avenantes\": {\n    \"form\": \"avenantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"avenants\": {\n    \"form\": \"avenants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aventureuse\": {\n    \"form\": \"aventureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aventureuses\": {\n    \"form\": \"aventureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aventureux\": {\n    \"form\": \"aventureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aveugle\": {\n    \"form\": \"aveugle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aveugles\": {\n    \"form\": \"aveugles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"avide\": {\n    \"form\": \"avide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"avides\": {\n    \"form\": \"avides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"azimuté\": {\n    \"form\": \"azimuté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"aérien\": {\n    \"form\": \"aérien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aérienne\": {\n    \"form\": \"aérienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aériennes\": {\n    \"form\": \"aériennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aériens\": {\n    \"form\": \"aériens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aîné\": {\n    \"form\": \"aîné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"aînée\": {\n    \"form\": \"aînée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aînées\": {\n    \"form\": \"aînées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"aînés\": {\n    \"form\": \"aînés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bagarreur\": {\n    \"form\": \"bagarreur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bagarreurs\": {\n    \"form\": \"bagarreurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bagarreuse\": {\n    \"form\": \"bagarreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bagarreuses\": {\n    \"form\": \"bagarreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balistique\": {\n    \"form\": \"balistique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balistiques\": {\n    \"form\": \"balistiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balourd\": {\n    \"form\": \"balourd\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.24\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balourde\": {\n    \"form\": \"balourde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.24\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"balourds\": {\n    \"form\": \"balourds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.24\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"banal\": {\n    \"form\": \"banal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"banale\": {\n    \"form\": \"banale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"banales\": {\n    \"form\": \"banales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"banals\": {\n    \"form\": \"banals\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"banaux\": {\n    \"form\": \"banaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bancal\": {\n    \"form\": \"bancal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bancale\": {\n    \"form\": \"bancale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bancales\": {\n    \"form\": \"bancales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bancals\": {\n    \"form\": \"bancals\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"barbare\": {\n    \"form\": \"barbare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"barbares\": {\n    \"form\": \"barbares\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bas\": {\n    \"form\": \"bas\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"basané\": {\n    \"form\": \"basané\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"basanée\": {\n    \"form\": \"basanée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"basanées\": {\n    \"form\": \"basanées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"basanés\": {\n    \"form\": \"basanés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"basse\": {\n    \"form\": \"basse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"basses\": {\n    \"form\": \"basses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"batailleur\": {\n    \"form\": \"batailleur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"batailleurs\": {\n    \"form\": \"batailleurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"batailleuse\": {\n    \"form\": \"batailleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"batailleuses\": {\n    \"form\": \"batailleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"battant\": {\n    \"form\": \"battant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"battante\": {\n    \"form\": \"battante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battantes\": {\n    \"form\": \"battantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battants\": {\n    \"form\": \"battants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battu\": {\n    \"form\": \"battu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"battue\": {\n    \"form\": \"battue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battues\": {\n    \"form\": \"battues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"battus\": {\n    \"form\": \"battus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bavard\": {\n    \"form\": \"bavard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bavarde\": {\n    \"form\": \"bavarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bavardes\": {\n    \"form\": \"bavardes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bavards\": {\n    \"form\": \"bavards\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"beau\": {\n    \"form\": \"beau\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"beaux\": {\n    \"form\": \"beaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"beaucoup\": {\n    \"form\": \"beaucoup\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.2\",\n    \"confidence\": \"0.8\"\n  },\n  \"bel\": {\n    \"form\": \"bel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"belge\": {\n    \"form\": \"belge\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"belges\": {\n    \"form\": \"belges\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"belle\": {\n    \"form\": \"belle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"belles\": {\n    \"form\": \"belles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"belligérant\": {\n    \"form\": \"belligérant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belligérante\": {\n    \"form\": \"belligérante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belligérantes\": {\n    \"form\": \"belligérantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belligérants\": {\n    \"form\": \"belligérants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belliqueuse\": {\n    \"form\": \"belliqueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belliqueuses\": {\n    \"form\": \"belliqueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"belliqueux\": {\n    \"form\": \"belliqueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"besogneuse\": {\n    \"form\": \"besogneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"besogneuses\": {\n    \"form\": \"besogneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"besogneux\": {\n    \"form\": \"besogneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bien\": {\n    \"form\": \"bien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bienfaisant\": {\n    \"form\": \"bienfaisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienfaisante\": {\n    \"form\": \"bienfaisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienfaisantes\": {\n    \"form\": \"bienfaisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienfaisants\": {\n    \"form\": \"bienfaisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienheureuse\": {\n    \"form\": \"bienheureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienheureuses\": {\n    \"form\": \"bienheureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienheureux\": {\n    \"form\": \"bienheureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienséant\": {\n    \"form\": \"bienséant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienséante\": {\n    \"form\": \"bienséante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienséantes\": {\n    \"form\": \"bienséantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienséants\": {\n    \"form\": \"bienséants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienveillant\": {\n    \"form\": \"bienveillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienveillante\": {\n    \"form\": \"bienveillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienveillantes\": {\n    \"form\": \"bienveillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bienveillants\": {\n    \"form\": \"bienveillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bijou\": {\n    \"form\": \"bijou\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"biscornu\": {\n    \"form\": \"biscornu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"biscornue\": {\n    \"form\": \"biscornue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"biscornues\": {\n    \"form\": \"biscornues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"biscornus\": {\n    \"form\": \"biscornus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bistre\": {\n    \"form\": \"bistre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bizarre\": {\n    \"form\": \"bizarre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bizarres\": {\n    \"form\": \"bizarres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blafard\": {\n    \"form\": \"blafard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blafarde\": {\n    \"form\": \"blafarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blafardes\": {\n    \"form\": \"blafardes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blafards\": {\n    \"form\": \"blafards\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blanc\": {\n    \"form\": \"blanc\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blanche\": {\n    \"form\": \"blanche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blanches\": {\n    \"form\": \"blanches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blancs\": {\n    \"form\": \"blancs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blessant\": {\n    \"form\": \"blessant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blessante\": {\n    \"form\": \"blessante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blessantes\": {\n    \"form\": \"blessantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blessants\": {\n    \"form\": \"blessants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blessé\": {\n    \"form\": \"blessé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blessée\": {\n    \"form\": \"blessée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blessées\": {\n    \"form\": \"blessées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"blessés\": {\n    \"form\": \"blessés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bleu\": {\n    \"form\": \"bleu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bleue\": {\n    \"form\": \"bleue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bleues\": {\n    \"form\": \"bleues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bleus\": {\n    \"form\": \"bleus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bleuté\": {\n    \"form\": \"bleuté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bleutée\": {\n    \"form\": \"bleutée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bleutées\": {\n    \"form\": \"bleutées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bleutés\": {\n    \"form\": \"bleutés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bleuâtre\": {\n    \"form\": \"bleuâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bleuâtres\": {\n    \"form\": \"bleuâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blond\": {\n    \"form\": \"blond\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"blondasse\": {\n    \"form\": \"blondasse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blondasses\": {\n    \"form\": \"blondasses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blonde\": {\n    \"form\": \"blonde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blondes\": {\n    \"form\": \"blondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blonds\": {\n    \"form\": \"blonds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blâmable\": {\n    \"form\": \"blâmable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"blême\": {\n    \"form\": \"blême\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"blêmes\": {\n    \"form\": \"blêmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bon\": {\n    \"form\": \"bon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"bonheur\": {\n    \"form\": \"bonheur\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bonhomme\": {\n    \"form\": \"bonhomme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bonhommes\": {\n    \"form\": \"bonhommes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bonne\": {\n    \"form\": \"bonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bonnes\": {\n    \"form\": \"bonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bons\": {\n    \"form\": \"bons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"boudiné\": {\n    \"form\": \"boudiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"boudinée\": {\n    \"form\": \"boudinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"boudinées\": {\n    \"form\": \"boudinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"boudinés\": {\n    \"form\": \"boudinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"boueuse\": {\n    \"form\": \"boueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"boueuses\": {\n    \"form\": \"boueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"boueux\": {\n    \"form\": \"boueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bouffi\": {\n    \"form\": \"bouffi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffie\": {\n    \"form\": \"bouffie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffies\": {\n    \"form\": \"bouffies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffis\": {\n    \"form\": \"bouffis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffon\": {\n    \"form\": \"bouffon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffonne\": {\n    \"form\": \"bouffonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffonnes\": {\n    \"form\": \"bouffonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouffons\": {\n    \"form\": \"bouffons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillant\": {\n    \"form\": \"bouillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillante\": {\n    \"form\": \"bouillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillantes\": {\n    \"form\": \"bouillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillants\": {\n    \"form\": \"bouillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouilli\": {\n    \"form\": \"bouilli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillie\": {\n    \"form\": \"bouillie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillies\": {\n    \"form\": \"bouillies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bouillis\": {\n    \"form\": \"bouillis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bourgeois\": {\n    \"form\": \"bourgeois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bourgeoise\": {\n    \"form\": \"bourgeoise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bourgeoises\": {\n    \"form\": \"bourgeoises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bourré\": {\n    \"form\": \"bourré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bourrée\": {\n    \"form\": \"bourrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bourrées\": {\n    \"form\": \"bourrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"bourrés\": {\n    \"form\": \"bourrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"brave\": {\n    \"form\": \"brave\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"braves\": {\n    \"form\": \"braves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bref\": {\n    \"form\": \"bref\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"brefs\": {\n    \"form\": \"brefs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"breton\": {\n    \"form\": \"breton\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bretonne\": {\n    \"form\": \"bretonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bretonnes\": {\n    \"form\": \"bretonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bretons\": {\n    \"form\": \"bretons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brillant\": {\n    \"form\": \"brillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"brillante\": {\n    \"form\": \"brillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brillantes\": {\n    \"form\": \"brillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brillants\": {\n    \"form\": \"brillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brisé\": {\n    \"form\": \"brisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brisée\": {\n    \"form\": \"brisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brisés\": {\n    \"form\": \"brisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"britannique\": {\n    \"form\": \"britannique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"britanniques\": {\n    \"form\": \"britanniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"british\": {\n    \"form\": \"british\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"brun\": {\n    \"form\": \"brun\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"brune\": {\n    \"form\": \"brune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brunes\": {\n    \"form\": \"brunes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bruns\": {\n    \"form\": \"bruns\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brusque\": {\n    \"form\": \"brusque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brusques\": {\n    \"form\": \"brusques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brutal\": {\n    \"form\": \"brutal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brutale\": {\n    \"form\": \"brutale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brutales\": {\n    \"form\": \"brutales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brutaux\": {\n    \"form\": \"brutaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bruyant\": {\n    \"form\": \"bruyant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bruyante\": {\n    \"form\": \"bruyante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bruyantes\": {\n    \"form\": \"bruyantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bruyants\": {\n    \"form\": \"bruyants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brève\": {\n    \"form\": \"brève\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brèves\": {\n    \"form\": \"brèves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brûlant\": {\n    \"form\": \"brûlant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brûlante\": {\n    \"form\": \"brûlante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brûlantes\": {\n    \"form\": \"brûlantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brûlants\": {\n    \"form\": \"brûlants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brûlé\": {\n    \"form\": \"brûlé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"brûlée\": {\n    \"form\": \"brûlée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brûlées\": {\n    \"form\": \"brûlées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"brûlés\": {\n    \"form\": \"brûlés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"buriné\": {\n    \"form\": \"buriné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"burinée\": {\n    \"form\": \"burinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"burinées\": {\n    \"form\": \"burinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"burinés\": {\n    \"form\": \"burinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"burlesque\": {\n    \"form\": \"burlesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"burlesques\": {\n    \"form\": \"burlesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"byzantin\": {\n    \"form\": \"byzantin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"byzantine\": {\n    \"form\": \"byzantine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"byzantines\": {\n    \"form\": \"byzantines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"byzantins\": {\n    \"form\": \"byzantins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"béant\": {\n    \"form\": \"béant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"béante\": {\n    \"form\": \"béante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"béantes\": {\n    \"form\": \"béantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"béants\": {\n    \"form\": \"béants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"bête\": {\n    \"form\": \"bête\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"bêtes\": {\n    \"form\": \"bêtes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cabalistique\": {\n    \"form\": \"cabalistique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cabalistiques\": {\n    \"form\": \"cabalistiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"caché\": {\n    \"form\": \"caché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cachée\": {\n    \"form\": \"cachée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cachées\": {\n    \"form\": \"cachées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cachés\": {\n    \"form\": \"cachés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cadeau\": {\n    \"form\": \"cadeau\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cagneuse\": {\n    \"form\": \"cagneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cagneuses\": {\n    \"form\": \"cagneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cagneux\": {\n    \"form\": \"cagneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calciné\": {\n    \"form\": \"calciné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calcinée\": {\n    \"form\": \"calcinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calcinées\": {\n    \"form\": \"calcinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calcinés\": {\n    \"form\": \"calcinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calculateur\": {\n    \"form\": \"calculateur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calculateurs\": {\n    \"form\": \"calculateurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"calme\": {\n    \"form\": \"calme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"calmes\": {\n    \"form\": \"calmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"camard\": {\n    \"form\": \"camard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"camarde\": {\n    \"form\": \"camarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"camards\": {\n    \"form\": \"camards\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"candide\": {\n    \"form\": \"candide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"candides\": {\n    \"form\": \"candides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capable\": {\n    \"form\": \"capable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"capables\": {\n    \"form\": \"capables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"capital\": {\n    \"form\": \"capital\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"capitale\": {\n    \"form\": \"capitale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"capitales\": {\n    \"form\": \"capitales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"capitaliste\": {\n    \"form\": \"capitaliste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capitalistes\": {\n    \"form\": \"capitalistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capitaux\": {\n    \"form\": \"capitaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"capitonné\": {\n    \"form\": \"capitonné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capitonnée\": {\n    \"form\": \"capitonnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capitonnées\": {\n    \"form\": \"capitonnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"capitonnés\": {\n    \"form\": \"capitonnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captif\": {\n    \"form\": \"captif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captifs\": {\n    \"form\": \"captifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captivant\": {\n    \"form\": \"captivant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captivante\": {\n    \"form\": \"captivante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captivantes\": {\n    \"form\": \"captivantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captive\": {\n    \"form\": \"captive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"captives\": {\n    \"form\": \"captives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"carmin\": {\n    \"form\": \"carmin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"carré\": {\n    \"form\": \"carré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"carrée\": {\n    \"form\": \"carrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"carrées\": {\n    \"form\": \"carrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"carrés\": {\n    \"form\": \"carrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cassant\": {\n    \"form\": \"cassant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cassante\": {\n    \"form\": \"cassante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cassantes\": {\n    \"form\": \"cassantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cassants\": {\n    \"form\": \"cassants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cassé\": {\n    \"form\": \"cassé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cassée\": {\n    \"form\": \"cassée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cassées\": {\n    \"form\": \"cassées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cassés\": {\n    \"form\": \"cassés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"catastrophe\": {\n    \"form\": \"catastrophe\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"catholique\": {\n    \"form\": \"catholique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"catholiques\": {\n    \"form\": \"catholiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cavalier\": {\n    \"form\": \"cavalier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cavaliers\": {\n    \"form\": \"cavaliers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cavalière\": {\n    \"form\": \"cavalière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cavalières\": {\n    \"form\": \"cavalières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"caverneuse\": {\n    \"form\": \"caverneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"caverneuses\": {\n    \"form\": \"caverneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"caverneux\": {\n    \"form\": \"caverneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cendré\": {\n    \"form\": \"cendré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cendrée\": {\n    \"form\": \"cendrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cendrées\": {\n    \"form\": \"cendrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cendrés\": {\n    \"form\": \"cendrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"censé\": {\n    \"form\": \"censé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"censée\": {\n    \"form\": \"censée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"censées\": {\n    \"form\": \"censées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"censés\": {\n    \"form\": \"censés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"central\": {\n    \"form\": \"central\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"centrale\": {\n    \"form\": \"centrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"centrales\": {\n    \"form\": \"centrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"centraux\": {\n    \"form\": \"centraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"certain\": {\n    \"form\": \"certain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"certaine\": {\n    \"form\": \"certaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"certainement\": {\n    \"form\": \"certainement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"certaines\": {\n    \"form\": \"certaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"certains\": {\n    \"form\": \"certains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chaleureuse\": {\n    \"form\": \"chaleureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chaleureuses\": {\n    \"form\": \"chaleureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chaleureux\": {\n    \"form\": \"chaleureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"changé\": {\n    \"form\": \"changé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"changée\": {\n    \"form\": \"changée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"changées\": {\n    \"form\": \"changées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"changés\": {\n    \"form\": \"changés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charitable\": {\n    \"form\": \"charitable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charitables\": {\n    \"form\": \"charitables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charmant\": {\n    \"form\": \"charmant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"charmante\": {\n    \"form\": \"charmante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charmantes\": {\n    \"form\": \"charmantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charmants\": {\n    \"form\": \"charmants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charnel\": {\n    \"form\": \"charnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"charnelle\": {\n    \"form\": \"charnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charnelles\": {\n    \"form\": \"charnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charnels\": {\n    \"form\": \"charnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"charnu\": {\n    \"form\": \"charnu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charnue\": {\n    \"form\": \"charnue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charnues\": {\n    \"form\": \"charnues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"charnus\": {\n    \"form\": \"charnus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chaste\": {\n    \"form\": \"chaste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chastes\": {\n    \"form\": \"chastes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chatoyant\": {\n    \"form\": \"chatoyant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chatoyante\": {\n    \"form\": \"chatoyante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chatoyantes\": {\n    \"form\": \"chatoyantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chatoyants\": {\n    \"form\": \"chatoyants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chaud\": {\n    \"form\": \"chaud\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"chaude\": {\n    \"form\": \"chaude\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chaudes\": {\n    \"form\": \"chaudes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chauds\": {\n    \"form\": \"chauds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chauve\": {\n    \"form\": \"chauve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chauves\": {\n    \"form\": \"chauves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chef-d'oeuvre\": {\n    \"form\": \"chef-d'oeuvre\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cher\": {\n    \"form\": \"cher\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"chers\": {\n    \"form\": \"chers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chic\": {\n    \"form\": \"chic\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chics\": {\n    \"form\": \"chics\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chimérique\": {\n    \"form\": \"chimérique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chimériques\": {\n    \"form\": \"chimériques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chinois\": {\n    \"form\": \"chinois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chinoise\": {\n    \"form\": \"chinoise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chinoises\": {\n    \"form\": \"chinoises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"choisi\": {\n    \"form\": \"choisi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"choisie\": {\n    \"form\": \"choisie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"choisies\": {\n    \"form\": \"choisies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"choisis\": {\n    \"form\": \"choisis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chouette\": {\n    \"form\": \"chouette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chouettes\": {\n    \"form\": \"chouettes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chronique\": {\n    \"form\": \"chronique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chroniques\": {\n    \"form\": \"chroniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chrétien\": {\n    \"form\": \"chrétien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chrétienne\": {\n    \"form\": \"chrétienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chrétiennes\": {\n    \"form\": \"chrétiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chrétiens\": {\n    \"form\": \"chrétiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chère\": {\n    \"form\": \"chère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chères\": {\n    \"form\": \"chères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chéri\": {\n    \"form\": \"chéri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chérie\": {\n    \"form\": \"chérie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chéries\": {\n    \"form\": \"chéries\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chérir\": {\n    \"form\": \"chérir\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"chéris\": {\n    \"form\": \"chéris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"chérot\": {\n    \"form\": \"chérot\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chétif\": {\n    \"form\": \"chétif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chétifs\": {\n    \"form\": \"chétifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chétive\": {\n    \"form\": \"chétive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"chétives\": {\n    \"form\": \"chétives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ci-inclus\": {\n    \"form\": \"ci-inclus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ci-incluse\": {\n    \"form\": \"ci-incluse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ci-incluses\": {\n    \"form\": \"ci-incluses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglant\": {\n    \"form\": \"cinglant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglante\": {\n    \"form\": \"cinglante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglantes\": {\n    \"form\": \"cinglantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglants\": {\n    \"form\": \"cinglants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglé\": {\n    \"form\": \"cinglé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglée\": {\n    \"form\": \"cinglée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglées\": {\n    \"form\": \"cinglées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinglés\": {\n    \"form\": \"cinglés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinoque\": {\n    \"form\": \"cinoque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cinquième\": {\n    \"form\": \"cinquième\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cinquièmes\": {\n    \"form\": \"cinquièmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cinétique\": {\n    \"form\": \"cinétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"circonspect\": {\n    \"form\": \"circonspect\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"circonspecte\": {\n    \"form\": \"circonspecte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"circonspectes\": {\n    \"form\": \"circonspectes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"circonspects\": {\n    \"form\": \"circonspects\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"circulaire\": {\n    \"form\": \"circulaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"circulaires\": {\n    \"form\": \"circulaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cireuse\": {\n    \"form\": \"cireuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cireuses\": {\n    \"form\": \"cireuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cireux\": {\n    \"form\": \"cireux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ciselé\": {\n    \"form\": \"ciselé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ciselée\": {\n    \"form\": \"ciselée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ciselées\": {\n    \"form\": \"ciselées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ciselés\": {\n    \"form\": \"ciselés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civil\": {\n    \"form\": \"civil\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"civile\": {\n    \"form\": \"civile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"civiles\": {\n    \"form\": \"civiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"civilisé\": {\n    \"form\": \"civilisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civilisée\": {\n    \"form\": \"civilisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civilisées\": {\n    \"form\": \"civilisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civilisés\": {\n    \"form\": \"civilisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"civils\": {\n    \"form\": \"civils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clair\": {\n    \"form\": \"clair\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"claire\": {\n    \"form\": \"claire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"clairement\": {\n    \"form\": \"clairement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"claires\": {\n    \"form\": \"claires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"clairs\": {\n    \"form\": \"clairs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"clandestin\": {\n    \"form\": \"clandestin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"clandestine\": {\n    \"form\": \"clandestine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clandestines\": {\n    \"form\": \"clandestines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clandestins\": {\n    \"form\": \"clandestins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"classique\": {\n    \"form\": \"classique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"classiques\": {\n    \"form\": \"classiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clos\": {\n    \"form\": \"clos\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"close\": {\n    \"form\": \"close\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"closes\": {\n    \"form\": \"closes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"clérical\": {\n    \"form\": \"clérical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cléricale\": {\n    \"form\": \"cléricale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cléricales\": {\n    \"form\": \"cléricales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cléricaux\": {\n    \"form\": \"cléricaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cocasse\": {\n    \"form\": \"cocasse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cocasses\": {\n    \"form\": \"cocasses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coeur\": {\n    \"form\": \"coeur\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"collant\": {\n    \"form\": \"collant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collante\": {\n    \"form\": \"collante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collantes\": {\n    \"form\": \"collantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collants\": {\n    \"form\": \"collants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collectif\": {\n    \"form\": \"collectif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"collectifs\": {\n    \"form\": \"collectifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"collective\": {\n    \"form\": \"collective\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"collectives\": {\n    \"form\": \"collectives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"collégial\": {\n    \"form\": \"collégial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collégiale\": {\n    \"form\": \"collégiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collégiales\": {\n    \"form\": \"collégiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"collégiaux\": {\n    \"form\": \"collégiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"colonial\": {\n    \"form\": \"colonial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"coloniale\": {\n    \"form\": \"coloniale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coloniales\": {\n    \"form\": \"coloniales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coloniaux\": {\n    \"form\": \"coloniaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coloré\": {\n    \"form\": \"coloré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"colorée\": {\n    \"form\": \"colorée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colorées\": {\n    \"form\": \"colorées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colorés\": {\n    \"form\": \"colorés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colossal\": {\n    \"form\": \"colossal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"colossale\": {\n    \"form\": \"colossale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colossales\": {\n    \"form\": \"colossales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"colossaux\": {\n    \"form\": \"colossaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coléreuse\": {\n    \"form\": \"coléreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coléreux\": {\n    \"form\": \"coléreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.27\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"combatif\": {\n    \"form\": \"combatif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"combatifs\": {\n    \"form\": \"combatifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"combative\": {\n    \"form\": \"combative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"combattant\": {\n    \"form\": \"combattant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"combattante\": {\n    \"form\": \"combattante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"combattantes\": {\n    \"form\": \"combattantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"combattants\": {\n    \"form\": \"combattants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"comble\": {\n    \"form\": \"comble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"combles\": {\n    \"form\": \"combles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comblé\": {\n    \"form\": \"comblé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comblée\": {\n    \"form\": \"comblée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comblées\": {\n    \"form\": \"comblées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comblés\": {\n    \"form\": \"comblés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comique\": {\n    \"form\": \"comique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"comiques\": {\n    \"form\": \"comiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commençant\": {\n    \"form\": \"commençant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commençante\": {\n    \"form\": \"commençante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commençantes\": {\n    \"form\": \"commençantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commençants\": {\n    \"form\": \"commençants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commercial\": {\n    \"form\": \"commercial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"commerciale\": {\n    \"form\": \"commerciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commerciales\": {\n    \"form\": \"commerciales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commerciaux\": {\n    \"form\": \"commerciaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commode\": {\n    \"form\": \"commode\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"commodes\": {\n    \"form\": \"commodes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"commun\": {\n    \"form\": \"commun\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"communautaire\": {\n    \"form\": \"communautaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"communautaires\": {\n    \"form\": \"communautaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"commune\": {\n    \"form\": \"commune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"communes\": {\n    \"form\": \"communes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"communiste\": {\n    \"form\": \"communiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"communistes\": {\n    \"form\": \"communistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"communs\": {\n    \"form\": \"communs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"compact\": {\n    \"form\": \"compact\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"compacte\": {\n    \"form\": \"compacte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"compactes\": {\n    \"form\": \"compactes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"compacts\": {\n    \"form\": \"compacts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"comparable\": {\n    \"form\": \"comparable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comparables\": {\n    \"form\": \"comparables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complet\": {\n    \"form\": \"complet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"complets\": {\n    \"form\": \"complets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complexe\": {\n    \"form\": \"complexe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complexes\": {\n    \"form\": \"complexes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complexé\": {\n    \"form\": \"complexé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complexée\": {\n    \"form\": \"complexée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complexés\": {\n    \"form\": \"complexés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complice\": {\n    \"form\": \"complice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"complices\": {\n    \"form\": \"complices\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compliqué\": {\n    \"form\": \"compliqué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"compliquée\": {\n    \"form\": \"compliquée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"compliquées\": {\n    \"form\": \"compliquées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"compliqués\": {\n    \"form\": \"compliqués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"complète\": {\n    \"form\": \"complète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complètement\": {\n    \"form\": \"complètement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"complètes\": {\n    \"form\": \"complètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"composite\": {\n    \"form\": \"composite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"composites\": {\n    \"form\": \"composites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compressé\": {\n    \"form\": \"compressé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compressée\": {\n    \"form\": \"compressée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compressées\": {\n    \"form\": \"compressées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compressés\": {\n    \"form\": \"compressés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comprimé\": {\n    \"form\": \"comprimé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comprimée\": {\n    \"form\": \"comprimée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comprimées\": {\n    \"form\": \"comprimées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"comprimés\": {\n    \"form\": \"comprimés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compréhensible\": {\n    \"form\": \"compréhensible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"compréhensibles\": {\n    \"form\": \"compréhensibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"con\": {\n    \"form\": \"con\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"concentré\": {\n    \"form\": \"concentré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concentrée\": {\n    \"form\": \"concentrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concentrées\": {\n    \"form\": \"concentrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concentrés\": {\n    \"form\": \"concentrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concis\": {\n    \"form\": \"concis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concise\": {\n    \"form\": \"concise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concluant\": {\n    \"form\": \"concluant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concluante\": {\n    \"form\": \"concluante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concluantes\": {\n    \"form\": \"concluantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concluants\": {\n    \"form\": \"concluants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concret\": {\n    \"form\": \"concret\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concrets\": {\n    \"form\": \"concrets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concrète\": {\n    \"form\": \"concrète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"concrètes\": {\n    \"form\": \"concrètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"condescendant\": {\n    \"form\": \"condescendant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"condescendante\": {\n    \"form\": \"condescendante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"condescendants\": {\n    \"form\": \"condescendants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confessionnel\": {\n    \"form\": \"confessionnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confessionnelle\": {\n    \"form\": \"confessionnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confessionnels\": {\n    \"form\": \"confessionnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confiant\": {\n    \"form\": \"confiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"confiante\": {\n    \"form\": \"confiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confiantes\": {\n    \"form\": \"confiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confiants\": {\n    \"form\": \"confiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confidentiel\": {\n    \"form\": \"confidentiel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confidentielle\": {\n    \"form\": \"confidentielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confidentielles\": {\n    \"form\": \"confidentielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confidentiels\": {\n    \"form\": \"confidentiels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confiné\": {\n    \"form\": \"confiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confinée\": {\n    \"form\": \"confinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confinées\": {\n    \"form\": \"confinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confinés\": {\n    \"form\": \"confinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confondu\": {\n    \"form\": \"confondu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confondue\": {\n    \"form\": \"confondue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confondues\": {\n    \"form\": \"confondues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"confondus\": {\n    \"form\": \"confondus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conforme\": {\n    \"form\": \"conforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"conformes\": {\n    \"form\": \"conformes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confortable\": {\n    \"form\": \"confortable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"confortables\": {\n    \"form\": \"confortables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confus\": {\n    \"form\": \"confus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"confuse\": {\n    \"form\": \"confuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"confuses\": {\n    \"form\": \"confuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conjugal\": {\n    \"form\": \"conjugal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"conjugale\": {\n    \"form\": \"conjugale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conjugales\": {\n    \"form\": \"conjugales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conjugaux\": {\n    \"form\": \"conjugaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conne\": {\n    \"form\": \"conne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"connerie\": {\n    \"form\": \"connerie\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"connes\": {\n    \"form\": \"connes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"connu\": {\n    \"form\": \"connu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"connue\": {\n    \"form\": \"connue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"connues\": {\n    \"form\": \"connues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"connus\": {\n    \"form\": \"connus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cons\": {\n    \"form\": \"cons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"consciencieuse\": {\n    \"form\": \"consciencieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consciencieuses\": {\n    \"form\": \"consciencieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consciencieux\": {\n    \"form\": \"consciencieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conscient\": {\n    \"form\": \"conscient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"consciente\": {\n    \"form\": \"consciente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conscientes\": {\n    \"form\": \"conscientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conscients\": {\n    \"form\": \"conscients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conseillé\": {\n    \"form\": \"conseillé\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"considérable\": {\n    \"form\": \"considérable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"considérables\": {\n    \"form\": \"considérables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"consigné\": {\n    \"form\": \"consigné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consignée\": {\n    \"form\": \"consignée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consignées\": {\n    \"form\": \"consignées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consignés\": {\n    \"form\": \"consignés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consistant\": {\n    \"form\": \"consistant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consistante\": {\n    \"form\": \"consistante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consistantes\": {\n    \"form\": \"consistantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consistants\": {\n    \"form\": \"consistants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"constant\": {\n    \"form\": \"constant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"constante\": {\n    \"form\": \"constante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"constantes\": {\n    \"form\": \"constantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"constants\": {\n    \"form\": \"constants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"consterné\": {\n    \"form\": \"consterné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consternée\": {\n    \"form\": \"consternée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consternées\": {\n    \"form\": \"consternées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"consternés\": {\n    \"form\": \"consternés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"conséquent\": {\n    \"form\": \"conséquent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"conséquente\": {\n    \"form\": \"conséquente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conséquentes\": {\n    \"form\": \"conséquentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"conséquents\": {\n    \"form\": \"conséquents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contemporain\": {\n    \"form\": \"contemporain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contemporaine\": {\n    \"form\": \"contemporaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contemporaines\": {\n    \"form\": \"contemporaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contemporains\": {\n    \"form\": \"contemporains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"content\": {\n    \"form\": \"content\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"contente\": {\n    \"form\": \"contente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contentes\": {\n    \"form\": \"contentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contents\": {\n    \"form\": \"contents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.65\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contestable\": {\n    \"form\": \"contestable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contestables\": {\n    \"form\": \"contestables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continental\": {\n    \"form\": \"continental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continentale\": {\n    \"form\": \"continentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continentales\": {\n    \"form\": \"continentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continentaux\": {\n    \"form\": \"continentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contingent\": {\n    \"form\": \"contingent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contingente\": {\n    \"form\": \"contingente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contingentes\": {\n    \"form\": \"contingentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contingents\": {\n    \"form\": \"contingents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"continu\": {\n    \"form\": \"continu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"continues\": {\n    \"form\": \"continues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"continus\": {\n    \"form\": \"continus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contracté\": {\n    \"form\": \"contracté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contractée\": {\n    \"form\": \"contractée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contractées\": {\n    \"form\": \"contractées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contractés\": {\n    \"form\": \"contractés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contradictoire\": {\n    \"form\": \"contradictoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contradictoires\": {\n    \"form\": \"contradictoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contraire\": {\n    \"form\": \"contraire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"contraires\": {\n    \"form\": \"contraires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"contrariant\": {\n    \"form\": \"contrariant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrariante\": {\n    \"form\": \"contrariante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrariantes\": {\n    \"form\": \"contrariantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrariants\": {\n    \"form\": \"contrariants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrit\": {\n    \"form\": \"contrit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrite\": {\n    \"form\": \"contrite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrites\": {\n    \"form\": \"contrites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"contrits\": {\n    \"form\": \"contrits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"convaincu\": {\n    \"form\": \"convaincu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"convaincue\": {\n    \"form\": \"convaincue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"convaincues\": {\n    \"form\": \"convaincues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"convaincus\": {\n    \"form\": \"convaincus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"convenable\": {\n    \"form\": \"convenable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"convenables\": {\n    \"form\": \"convenables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cordial\": {\n    \"form\": \"cordial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cordiale\": {\n    \"form\": \"cordiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cordiales\": {\n    \"form\": \"cordiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cordiaux\": {\n    \"form\": \"cordiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coriace\": {\n    \"form\": \"coriace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coriaces\": {\n    \"form\": \"coriaces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corpulent\": {\n    \"form\": \"corpulent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corpulente\": {\n    \"form\": \"corpulente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corpulentes\": {\n    \"form\": \"corpulentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corpulents\": {\n    \"form\": \"corpulents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"correct\": {\n    \"form\": \"correct\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"correcte\": {\n    \"form\": \"correcte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"correctes\": {\n    \"form\": \"correctes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"corrects\": {\n    \"form\": \"corrects\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"corrigé\": {\n    \"form\": \"corrigé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corrigée\": {\n    \"form\": \"corrigée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corrigées\": {\n    \"form\": \"corrigées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corrigés\": {\n    \"form\": \"corrigés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corrompu\": {\n    \"form\": \"corrompu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"corrompus\": {\n    \"form\": \"corrompus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cosmique\": {\n    \"form\": \"cosmique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cosmiques\": {\n    \"form\": \"cosmiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cosmopolite\": {\n    \"form\": \"cosmopolite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cosmopolites\": {\n    \"form\": \"cosmopolites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"costaud\": {\n    \"form\": \"costaud\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"costaude\": {\n    \"form\": \"costaude\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"costaudes\": {\n    \"form\": \"costaudes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"costauds\": {\n    \"form\": \"costauds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cotonneuse\": {\n    \"form\": \"cotonneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cotonneuses\": {\n    \"form\": \"cotonneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cotonneux\": {\n    \"form\": \"cotonneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"couché\": {\n    \"form\": \"couché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"couchée\": {\n    \"form\": \"couchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"couchées\": {\n    \"form\": \"couchées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"couchés\": {\n    \"form\": \"couchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coupable\": {\n    \"form\": \"coupable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"coupables\": {\n    \"form\": \"coupables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coupant\": {\n    \"form\": \"coupant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coupante\": {\n    \"form\": \"coupante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coupantes\": {\n    \"form\": \"coupantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coupants\": {\n    \"form\": \"coupants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coupé\": {\n    \"form\": \"coupé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"coupée\": {\n    \"form\": \"coupée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coupées\": {\n    \"form\": \"coupées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"coupés\": {\n    \"form\": \"coupés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courageuse\": {\n    \"form\": \"courageuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courageuses\": {\n    \"form\": \"courageuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courageux\": {\n    \"form\": \"courageux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courant\": {\n    \"form\": \"courant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courante\": {\n    \"form\": \"courante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courantes\": {\n    \"form\": \"courantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courants\": {\n    \"form\": \"courants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courbe\": {\n    \"form\": \"courbe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"courbes\": {\n    \"form\": \"courbes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"court\": {\n    \"form\": \"court\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"courte\": {\n    \"form\": \"courte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courtes\": {\n    \"form\": \"courtes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courtois\": {\n    \"form\": \"courtois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"courtoise\": {\n    \"form\": \"courtoise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courtoises\": {\n    \"form\": \"courtoises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"courts\": {\n    \"form\": \"courts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"coutumier\": {\n    \"form\": \"coutumier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coutumiers\": {\n    \"form\": \"coutumiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coutumière\": {\n    \"form\": \"coutumière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coutumières\": {\n    \"form\": \"coutumières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coûteuse\": {\n    \"form\": \"coûteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coûteuses\": {\n    \"form\": \"coûteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"coûteux\": {\n    \"form\": \"coûteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"craintif\": {\n    \"form\": \"craintif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"craintifs\": {\n    \"form\": \"craintifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"craintive\": {\n    \"form\": \"craintive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"craintives\": {\n    \"form\": \"craintives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cramoisi\": {\n    \"form\": \"cramoisi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cramoisie\": {\n    \"form\": \"cramoisie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cramoisies\": {\n    \"form\": \"cramoisies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cramoisis\": {\n    \"form\": \"cramoisis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crasseuse\": {\n    \"form\": \"crasseuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crasseuses\": {\n    \"form\": \"crasseuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crasseux\": {\n    \"form\": \"crasseux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"crayeuse\": {\n    \"form\": \"crayeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crayeuses\": {\n    \"form\": \"crayeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crayeux\": {\n    \"form\": \"crayeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"creuse\": {\n    \"form\": \"creuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"creuses\": {\n    \"form\": \"creuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"creux\": {\n    \"form\": \"creux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"criant\": {\n    \"form\": \"criant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"criante\": {\n    \"form\": \"criante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"criantes\": {\n    \"form\": \"criantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"criminel\": {\n    \"form\": \"criminel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"criminelle\": {\n    \"form\": \"criminelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"criminelles\": {\n    \"form\": \"criminelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"criminels\": {\n    \"form\": \"criminels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cristallin\": {\n    \"form\": \"cristallin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cristalline\": {\n    \"form\": \"cristalline\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cristallines\": {\n    \"form\": \"cristallines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cristallins\": {\n    \"form\": \"cristallins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"critique\": {\n    \"form\": \"critique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"critiques\": {\n    \"form\": \"critiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"croisé\": {\n    \"form\": \"croisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"croisée\": {\n    \"form\": \"croisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"croisées\": {\n    \"form\": \"croisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"croisés\": {\n    \"form\": \"croisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"croulant\": {\n    \"form\": \"croulant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croulante\": {\n    \"form\": \"croulante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croulantes\": {\n    \"form\": \"croulantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croulants\": {\n    \"form\": \"croulants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croustillant\": {\n    \"form\": \"croustillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croustillante\": {\n    \"form\": \"croustillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croustillantes\": {\n    \"form\": \"croustillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"croustillants\": {\n    \"form\": \"croustillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cru\": {\n    \"form\": \"cru\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"crucial\": {\n    \"form\": \"crucial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cruciale\": {\n    \"form\": \"cruciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cruciales\": {\n    \"form\": \"cruciales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cruciaux\": {\n    \"form\": \"cruciaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crue\": {\n    \"form\": \"crue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cruel\": {\n    \"form\": \"cruel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cruelle\": {\n    \"form\": \"cruelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cruelles\": {\n    \"form\": \"cruelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cruels\": {\n    \"form\": \"cruels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crues\": {\n    \"form\": \"crues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crus\": {\n    \"form\": \"crus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"crédule\": {\n    \"form\": \"crédule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crédules\": {\n    \"form\": \"crédules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crétin\": {\n    \"form\": \"crétin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crétine\": {\n    \"form\": \"crétine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"crétins\": {\n    \"form\": \"crétins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuisant\": {\n    \"form\": \"cuisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuisante\": {\n    \"form\": \"cuisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuisantes\": {\n    \"form\": \"cuisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuisants\": {\n    \"form\": \"cuisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuit\": {\n    \"form\": \"cuit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"cuite\": {\n    \"form\": \"cuite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cuites\": {\n    \"form\": \"cuites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cuits\": {\n    \"form\": \"cuits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"culturel\": {\n    \"form\": \"culturel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"culturelle\": {\n    \"form\": \"culturelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"culturelles\": {\n    \"form\": \"culturelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"culturels\": {\n    \"form\": \"culturels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"cuprifère\": {\n    \"form\": \"cuprifère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuprifères\": {\n    \"form\": \"cuprifères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cuprique\": {\n    \"form\": \"cuprique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cupriques\": {\n    \"form\": \"cupriques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"curieuse\": {\n    \"form\": \"curieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"curieuses\": {\n    \"form\": \"curieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"curieux\": {\n    \"form\": \"curieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"cyclopéen\": {\n    \"form\": \"cyclopéen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cyclopéenne\": {\n    \"form\": \"cyclopéenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cyclopéennes\": {\n    \"form\": \"cyclopéennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cyclopéens\": {\n    \"form\": \"cyclopéens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"céleste\": {\n    \"form\": \"céleste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"célestes\": {\n    \"form\": \"célestes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.24\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"célèbre\": {\n    \"form\": \"célèbre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"célèbres\": {\n    \"form\": \"célèbres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"céruléen\": {\n    \"form\": \"céruléen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"céruléens\": {\n    \"form\": \"céruléens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cérébral\": {\n    \"form\": \"cérébral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cérébrale\": {\n    \"form\": \"cérébrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cérébrales\": {\n    \"form\": \"cérébrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"cérébraux\": {\n    \"form\": \"cérébraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"d'émotion\": {\n    \"form\": \"d'émotion\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"d'émotions\": {\n    \"form\": \"d'émotions\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dangereuse\": {\n    \"form\": \"dangereuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dangereuses\": {\n    \"form\": \"dangereuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dangereux\": {\n    \"form\": \"dangereux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dantesque\": {\n    \"form\": \"dantesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dantesques\": {\n    \"form\": \"dantesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"demi\": {\n    \"form\": \"demi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"demie\": {\n    \"form\": \"demie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"demies\": {\n    \"form\": \"demies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"demis\": {\n    \"form\": \"demis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dense\": {\n    \"form\": \"dense\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"denses\": {\n    \"form\": \"denses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dernier\": {\n    \"form\": \"dernier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"derniers\": {\n    \"form\": \"derniers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dernière\": {\n    \"form\": \"dernière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dernières\": {\n    \"form\": \"dernières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"deuxième\": {\n    \"form\": \"deuxième\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"deuxièmes\": {\n    \"form\": \"deuxièmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"difficile\": {\n    \"form\": \"difficile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"difficiles\": {\n    \"form\": \"difficiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"difforme\": {\n    \"form\": \"difforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"difformes\": {\n    \"form\": \"difformes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"différent\": {\n    \"form\": \"différent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"différente\": {\n    \"form\": \"différente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"différentes\": {\n    \"form\": \"différentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"différents\": {\n    \"form\": \"différents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"digne\": {\n    \"form\": \"digne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dignes\": {\n    \"form\": \"dignes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dingue\": {\n    \"form\": \"dingue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dingues\": {\n    \"form\": \"dingues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"diplomate\": {\n    \"form\": \"diplomate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diplomates\": {\n    \"form\": \"diplomates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diplomatique\": {\n    \"form\": \"diplomatique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"diplomatiques\": {\n    \"form\": \"diplomatiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"direct\": {\n    \"form\": \"direct\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"directe\": {\n    \"form\": \"directe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"directes\": {\n    \"form\": \"directes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"directs\": {\n    \"form\": \"directs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dirigeant\": {\n    \"form\": \"dirigeant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dirigeante\": {\n    \"form\": \"dirigeante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dirigeantes\": {\n    \"form\": \"dirigeantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dirigeants\": {\n    \"form\": \"dirigeants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discordant\": {\n    \"form\": \"discordant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discordante\": {\n    \"form\": \"discordante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discordantes\": {\n    \"form\": \"discordantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discordants\": {\n    \"form\": \"discordants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discret\": {\n    \"form\": \"discret\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"discrets\": {\n    \"form\": \"discrets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"discrète\": {\n    \"form\": \"discrète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"discrètes\": {\n    \"form\": \"discrètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"discutable\": {\n    \"form\": \"discutable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"discutables\": {\n    \"form\": \"discutables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disgracieuse\": {\n    \"form\": \"disgracieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disgracieuses\": {\n    \"form\": \"disgracieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disgracieux\": {\n    \"form\": \"disgracieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparate\": {\n    \"form\": \"disparate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparates\": {\n    \"form\": \"disparates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparu\": {\n    \"form\": \"disparu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparue\": {\n    \"form\": \"disparue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparues\": {\n    \"form\": \"disparues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disparus\": {\n    \"form\": \"disparus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dispendieuse\": {\n    \"form\": \"dispendieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dispendieux\": {\n    \"form\": \"dispendieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"disponible\": {\n    \"form\": \"disponible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"disponibles\": {\n    \"form\": \"disponibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dissemblable\": {\n    \"form\": \"dissemblable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissemblables\": {\n    \"form\": \"dissemblables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissimulé\": {\n    \"form\": \"dissimulé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissimulée\": {\n    \"form\": \"dissimulée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissimulées\": {\n    \"form\": \"dissimulées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dissimulés\": {\n    \"form\": \"dissimulés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distant\": {\n    \"form\": \"distant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distante\": {\n    \"form\": \"distante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distantes\": {\n    \"form\": \"distantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distants\": {\n    \"form\": \"distants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distinct\": {\n    \"form\": \"distinct\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"distincte\": {\n    \"form\": \"distincte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distinctes\": {\n    \"form\": \"distinctes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distinctif\": {\n    \"form\": \"distinctif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distinctifs\": {\n    \"form\": \"distinctifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distinctive\": {\n    \"form\": \"distinctive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distinctives\": {\n    \"form\": \"distinctives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"distincts\": {\n    \"form\": \"distincts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distingué\": {\n    \"form\": \"distingué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"distinguée\": {\n    \"form\": \"distinguée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distinguées\": {\n    \"form\": \"distinguées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distingués\": {\n    \"form\": \"distingués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distrait\": {\n    \"form\": \"distrait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"distraite\": {\n    \"form\": \"distraite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distraites\": {\n    \"form\": \"distraites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"distraits\": {\n    \"form\": \"distraits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"diurne\": {\n    \"form\": \"diurne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"diurnes\": {\n    \"form\": \"diurnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"divers\": {\n    \"form\": \"divers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"diverse\": {\n    \"form\": \"diverse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"diverses\": {\n    \"form\": \"diverses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"divin\": {\n    \"form\": \"divin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"divine\": {\n    \"form\": \"divine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"divines\": {\n    \"form\": \"divines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"divins\": {\n    \"form\": \"divins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"docile\": {\n    \"form\": \"docile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dociles\": {\n    \"form\": \"dociles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"domestique\": {\n    \"form\": \"domestique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"domestiques\": {\n    \"form\": \"domestiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dominant\": {\n    \"form\": \"dominant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dominante\": {\n    \"form\": \"dominante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dominantes\": {\n    \"form\": \"dominantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dominants\": {\n    \"form\": \"dominants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dommage\": {\n    \"form\": \"dommage\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"donné\": {\n    \"form\": \"donné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"donnée\": {\n    \"form\": \"donnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"données\": {\n    \"form\": \"données\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"donnés\": {\n    \"form\": \"donnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dormant\": {\n    \"form\": \"dormant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormante\": {\n    \"form\": \"dormante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormantes\": {\n    \"form\": \"dormantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormants\": {\n    \"form\": \"dormants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormeur\": {\n    \"form\": \"dormeur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormeurs\": {\n    \"form\": \"dormeurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dormeuse\": {\n    \"form\": \"dormeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doré\": {\n    \"form\": \"doré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dorée\": {\n    \"form\": \"dorée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dorées\": {\n    \"form\": \"dorées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dorés\": {\n    \"form\": \"dorés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"double\": {\n    \"form\": \"double\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"doubles\": {\n    \"form\": \"doubles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"douce\": {\n    \"form\": \"douce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"doucereuse\": {\n    \"form\": \"doucereuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doucereuses\": {\n    \"form\": \"doucereuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"doucereux\": {\n    \"form\": \"doucereux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"douces\": {\n    \"form\": \"douces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"douloureuse\": {\n    \"form\": \"douloureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"douloureuses\": {\n    \"form\": \"douloureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"douloureux\": {\n    \"form\": \"douloureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"douteuse\": {\n    \"form\": \"douteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"douteuses\": {\n    \"form\": \"douteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"douteux\": {\n    \"form\": \"douteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"doux\": {\n    \"form\": \"doux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"draconien\": {\n    \"form\": \"draconien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draconienne\": {\n    \"form\": \"draconienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draconiennes\": {\n    \"form\": \"draconiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"draconiens\": {\n    \"form\": \"draconiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dramatique\": {\n    \"form\": \"dramatique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dramatiques\": {\n    \"form\": \"dramatiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dressé\": {\n    \"form\": \"dressé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dressée\": {\n    \"form\": \"dressée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dressées\": {\n    \"form\": \"dressées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"dressés\": {\n    \"form\": \"dressés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"droit\": {\n    \"form\": \"droit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"droite\": {\n    \"form\": \"droite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"droites\": {\n    \"form\": \"droites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"droits\": {\n    \"form\": \"droits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dru\": {\n    \"form\": \"dru\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"drue\": {\n    \"form\": \"drue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"drues\": {\n    \"form\": \"drues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"drus\": {\n    \"form\": \"drus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"drôle\": {\n    \"form\": \"drôle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"drôles\": {\n    \"form\": \"drôles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dur\": {\n    \"form\": \"dur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"dure\": {\n    \"form\": \"dure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dures\": {\n    \"form\": \"dures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"durs\": {\n    \"form\": \"durs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"duveteuse\": {\n    \"form\": \"duveteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"duveteuses\": {\n    \"form\": \"duveteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"duveteux\": {\n    \"form\": \"duveteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dynamique\": {\n    \"form\": \"dynamique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dynamiques\": {\n    \"form\": \"dynamiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débile\": {\n    \"form\": \"débile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"débiles\": {\n    \"form\": \"débiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"débonnaire\": {\n    \"form\": \"débonnaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débonnaires\": {\n    \"form\": \"débonnaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débutant\": {\n    \"form\": \"débutant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débutante\": {\n    \"form\": \"débutante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débutantes\": {\n    \"form\": \"débutantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"débutants\": {\n    \"form\": \"débutants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décent\": {\n    \"form\": \"décent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décente\": {\n    \"form\": \"décente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décentes\": {\n    \"form\": \"décentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décents\": {\n    \"form\": \"décents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déception\": {\n    \"form\": \"déception\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"décharné\": {\n    \"form\": \"décharné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décharnée\": {\n    \"form\": \"décharnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décharnées\": {\n    \"form\": \"décharnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"décharnés\": {\n    \"form\": \"décharnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déchirant\": {\n    \"form\": \"déchirant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déchirante\": {\n    \"form\": \"déchirante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déchirantes\": {\n    \"form\": \"déchirantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déchirants\": {\n    \"form\": \"déchirants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déchiré\": {\n    \"form\": \"déchiré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déchirée\": {\n    \"form\": \"déchirée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déchirées\": {\n    \"form\": \"déchirées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déchirés\": {\n    \"form\": \"déchirés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décidé\": {\n    \"form\": \"décidé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"décidée\": {\n    \"form\": \"décidée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décidées\": {\n    \"form\": \"décidées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décidés\": {\n    \"form\": \"décidés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décisif\": {\n    \"form\": \"décisif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"décisifs\": {\n    \"form\": \"décisifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décisive\": {\n    \"form\": \"décisive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"décisives\": {\n    \"form\": \"décisives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déconcertant\": {\n    \"form\": \"déconcertant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcertante\": {\n    \"form\": \"déconcertante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcertantes\": {\n    \"form\": \"déconcertantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcertants\": {\n    \"form\": \"déconcertants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcerté\": {\n    \"form\": \"déconcerté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcertée\": {\n    \"form\": \"déconcertée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconcertés\": {\n    \"form\": \"déconcertés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconfit\": {\n    \"form\": \"déconfit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconfite\": {\n    \"form\": \"déconfite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déconfits\": {\n    \"form\": \"déconfits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"découplé\": {\n    \"form\": \"découplé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"découplée\": {\n    \"form\": \"découplée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"découvert\": {\n    \"form\": \"découvert\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"découverte\": {\n    \"form\": \"découverte\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"découvertes\": {\n    \"form\": \"découvertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"découverts\": {\n    \"form\": \"découverts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"découvrir\": {\n    \"form\": \"découvrir\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"défait\": {\n    \"form\": \"défait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"défaite\": {\n    \"form\": \"défaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"défaites\": {\n    \"form\": \"défaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"défaits\": {\n    \"form\": \"défaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"défavorable\": {\n    \"form\": \"défavorable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"défavorables\": {\n    \"form\": \"défavorables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"défendu\": {\n    \"form\": \"défendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"défendue\": {\n    \"form\": \"défendue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"défendues\": {\n    \"form\": \"défendues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"défendus\": {\n    \"form\": \"défendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déficient\": {\n    \"form\": \"déficient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.19\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déficiente\": {\n    \"form\": \"déficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.19\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déficientes\": {\n    \"form\": \"déficientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.19\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déficients\": {\n    \"form\": \"déficients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.19\",\n    \"subjectivity\": \"-0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"définitif\": {\n    \"form\": \"définitif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"définitifs\": {\n    \"form\": \"définitifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"définitive\": {\n    \"form\": \"définitive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"définitives\": {\n    \"form\": \"définitives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déformé\": {\n    \"form\": \"déformé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déformée\": {\n    \"form\": \"déformée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déformées\": {\n    \"form\": \"déformées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déformés\": {\n    \"form\": \"déformés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dégoûtant\": {\n    \"form\": \"dégoûtant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.43\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dégoûtante\": {\n    \"form\": \"dégoûtante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.43\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dégoûtantes\": {\n    \"form\": \"dégoûtantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.43\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dégoûtants\": {\n    \"form\": \"dégoûtants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.43\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dégueulasse\": {\n    \"form\": \"dégueulasse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dégueulasses\": {\n    \"form\": \"dégueulasses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délaissé\": {\n    \"form\": \"délaissé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délaissée\": {\n    \"form\": \"délaissée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délaissées\": {\n    \"form\": \"délaissées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délaissés\": {\n    \"form\": \"délaissés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délectable\": {\n    \"form\": \"délectable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délectables\": {\n    \"form\": \"délectables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délicat\": {\n    \"form\": \"délicat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"délicate\": {\n    \"form\": \"délicate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délicates\": {\n    \"form\": \"délicates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délicats\": {\n    \"form\": \"délicats\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délicieuse\": {\n    \"form\": \"délicieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délicieuses\": {\n    \"form\": \"délicieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"délicieux\": {\n    \"form\": \"délicieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"délictueuse\": {\n    \"form\": \"délictueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.06\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délictueuses\": {\n    \"form\": \"délictueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.06\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"délictueux\": {\n    \"form\": \"délictueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.06\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dément\": {\n    \"form\": \"dément\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démente\": {\n    \"form\": \"démente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démentes\": {\n    \"form\": \"démentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déments\": {\n    \"form\": \"déments\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démerdard\": {\n    \"form\": \"démerdard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démesuré\": {\n    \"form\": \"démesuré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démesurée\": {\n    \"form\": \"démesurée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démesurées\": {\n    \"form\": \"démesurées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démesurés\": {\n    \"form\": \"démesurés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démodé\": {\n    \"form\": \"démodé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démodée\": {\n    \"form\": \"démodée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démodées\": {\n    \"form\": \"démodées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"démodés\": {\n    \"form\": \"démodés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dénudé\": {\n    \"form\": \"dénudé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dénudée\": {\n    \"form\": \"dénudée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dénudées\": {\n    \"form\": \"dénudées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dénudés\": {\n    \"form\": \"dénudés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dépeuplé\": {\n    \"form\": \"dépeuplé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dépeuplée\": {\n    \"form\": \"dépeuplée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dépeuplées\": {\n    \"form\": \"dépeuplées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dépeuplés\": {\n    \"form\": \"dépeuplés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplaisant\": {\n    \"form\": \"déplaisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplaisante\": {\n    \"form\": \"déplaisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplaisantes\": {\n    \"form\": \"déplaisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplaisants\": {\n    \"form\": \"déplaisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplorable\": {\n    \"form\": \"déplorable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déplorables\": {\n    \"form\": \"déplorables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déraisonnable\": {\n    \"form\": \"déraisonnable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déraisonnables\": {\n    \"form\": \"déraisonnables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dérisoire\": {\n    \"form\": \"dérisoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dérisoires\": {\n    \"form\": \"dérisoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déroutant\": {\n    \"form\": \"déroutant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déroutante\": {\n    \"form\": \"déroutante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déroutantes\": {\n    \"form\": \"déroutantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déroutants\": {\n    \"form\": \"déroutants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déréglé\": {\n    \"form\": \"déréglé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déréglée\": {\n    \"form\": \"déréglée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déréglées\": {\n    \"form\": \"déréglées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déréglés\": {\n    \"form\": \"déréglés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désagréable\": {\n    \"form\": \"désagréable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"désagréables\": {\n    \"form\": \"désagréables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"désarmé\": {\n    \"form\": \"désarmé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désarmée\": {\n    \"form\": \"désarmée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désarmées\": {\n    \"form\": \"désarmées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désarmés\": {\n    \"form\": \"désarmés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désastre\": {\n    \"form\": \"désastre\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"désaxé\": {\n    \"form\": \"désaxé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désaxée\": {\n    \"form\": \"désaxée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désaxés\": {\n    \"form\": \"désaxés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"-0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désert\": {\n    \"form\": \"désert\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"déserte\": {\n    \"form\": \"déserte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"désertes\": {\n    \"form\": \"désertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déserts\": {\n    \"form\": \"déserts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déserté\": {\n    \"form\": \"déserté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désertée\": {\n    \"form\": \"désertée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désertées\": {\n    \"form\": \"désertées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désertés\": {\n    \"form\": \"désertés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désespéré\": {\n    \"form\": \"désespéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"désespérée\": {\n    \"form\": \"désespérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"désespérées\": {\n    \"form\": \"désespérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"désespérés\": {\n    \"form\": \"désespérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déshabillé\": {\n    \"form\": \"déshabillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshabillée\": {\n    \"form\": \"déshabillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshabillées\": {\n    \"form\": \"déshabillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshabillés\": {\n    \"form\": \"déshabillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshydraté\": {\n    \"form\": \"déshydraté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshydratée\": {\n    \"form\": \"déshydratée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshydratées\": {\n    \"form\": \"déshydratées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshydratés\": {\n    \"form\": \"déshydratés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshérité\": {\n    \"form\": \"déshérité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshéritée\": {\n    \"form\": \"déshéritée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshéritées\": {\n    \"form\": \"déshéritées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"déshérités\": {\n    \"form\": \"déshérités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"désolé\": {\n    \"form\": \"désolé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"désolée\": {\n    \"form\": \"désolée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"désolées\": {\n    \"form\": \"désolées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"désolés\": {\n    \"form\": \"désolés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"détaché\": {\n    \"form\": \"détaché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"détachée\": {\n    \"form\": \"détachée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"détachées\": {\n    \"form\": \"détachées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"détachés\": {\n    \"form\": \"détachés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"détaillé\": {\n    \"form\": \"détaillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détaillée\": {\n    \"form\": \"détaillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détaillées\": {\n    \"form\": \"détaillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détaillés\": {\n    \"form\": \"détaillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détenu\": {\n    \"form\": \"détenu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détenue\": {\n    \"form\": \"détenue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détenues\": {\n    \"form\": \"détenues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détenus\": {\n    \"form\": \"détenus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détestable\": {\n    \"form\": \"détestable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"détestables\": {\n    \"form\": \"détestables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"dévorer\": {\n    \"form\": \"dévorer\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"dévoré\": {\n    \"form\": \"dévoré\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déçu\": {\n    \"form\": \"déçu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"déçue\": {\n    \"form\": \"déçue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déçues\": {\n    \"form\": \"déçues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"déçus\": {\n    \"form\": \"déçus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ecclésiastique\": {\n    \"form\": \"ecclésiastique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ecclésiastiques\": {\n    \"form\": \"ecclésiastiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effectif\": {\n    \"form\": \"effectif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effectifs\": {\n    \"form\": \"effectifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effective\": {\n    \"form\": \"effective\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effectives\": {\n    \"form\": \"effectives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efficace\": {\n    \"form\": \"efficace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"efficaces\": {\n    \"form\": \"efficaces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"efficient\": {\n    \"form\": \"efficient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efficiente\": {\n    \"form\": \"efficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efficientes\": {\n    \"form\": \"efficientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efficients\": {\n    \"form\": \"efficients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effilé\": {\n    \"form\": \"effilé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effilée\": {\n    \"form\": \"effilée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effilées\": {\n    \"form\": \"effilées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effilés\": {\n    \"form\": \"effilés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efflanqué\": {\n    \"form\": \"efflanqué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efflanquée\": {\n    \"form\": \"efflanquée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efflanquées\": {\n    \"form\": \"efflanquées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efflanqués\": {\n    \"form\": \"efflanqués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effrayant\": {\n    \"form\": \"effrayant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"effrayante\": {\n    \"form\": \"effrayante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effrayantes\": {\n    \"form\": \"effrayantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effrayants\": {\n    \"form\": \"effrayants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effrayé\": {\n    \"form\": \"effrayé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"effrayée\": {\n    \"form\": \"effrayée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effrayées\": {\n    \"form\": \"effrayées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effrayés\": {\n    \"form\": \"effrayés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"effroyable\": {\n    \"form\": \"effroyable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"effroyables\": {\n    \"form\": \"effroyables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efféminé\": {\n    \"form\": \"efféminé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efféminée\": {\n    \"form\": \"efféminée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"efféminés\": {\n    \"form\": \"efféminés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elliptique\": {\n    \"form\": \"elliptique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"elliptiques\": {\n    \"form\": \"elliptiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embarrassant\": {\n    \"form\": \"embarrassant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embarrassante\": {\n    \"form\": \"embarrassante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embarrassantes\": {\n    \"form\": \"embarrassantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embarrassants\": {\n    \"form\": \"embarrassants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embarrassé\": {\n    \"form\": \"embarrassé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"embarrassée\": {\n    \"form\": \"embarrassée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"embarrassées\": {\n    \"form\": \"embarrassées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"embarrassés\": {\n    \"form\": \"embarrassés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"emberlificoté\": {\n    \"form\": \"emberlificoté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emberlificotés\": {\n    \"form\": \"emberlificotés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrasé\": {\n    \"form\": \"embrasé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrasée\": {\n    \"form\": \"embrasée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrasées\": {\n    \"form\": \"embrasées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrasés\": {\n    \"form\": \"embrasés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrouillé\": {\n    \"form\": \"embrouillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrouillée\": {\n    \"form\": \"embrouillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrouillées\": {\n    \"form\": \"embrouillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrouillés\": {\n    \"form\": \"embrouillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrumé\": {\n    \"form\": \"embrumé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrumée\": {\n    \"form\": \"embrumée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrumées\": {\n    \"form\": \"embrumées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"embrumés\": {\n    \"form\": \"embrumés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emmerdant\": {\n    \"form\": \"emmerdant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emmerdante\": {\n    \"form\": \"emmerdante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emmerdantes\": {\n    \"form\": \"emmerdantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emmerdants\": {\n    \"form\": \"emmerdants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emprisonné\": {\n    \"form\": \"emprisonné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emprisonnée\": {\n    \"form\": \"emprisonnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emprisonnées\": {\n    \"form\": \"emprisonnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"emprisonnés\": {\n    \"form\": \"emprisonnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"empâté\": {\n    \"form\": \"empâté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"empâtée\": {\n    \"form\": \"empâtée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"empâtées\": {\n    \"form\": \"empâtées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"empâtés\": {\n    \"form\": \"empâtés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.09\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encaissé\": {\n    \"form\": \"encaissé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encaissée\": {\n    \"form\": \"encaissée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encaissées\": {\n    \"form\": \"encaissées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encaissés\": {\n    \"form\": \"encaissés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encastré\": {\n    \"form\": \"encastré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encastrée\": {\n    \"form\": \"encastrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encastrées\": {\n    \"form\": \"encastrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encastrés\": {\n    \"form\": \"encastrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.26\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enceinte\": {\n    \"form\": \"enceinte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enceintes\": {\n    \"form\": \"enceintes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enchanté\": {\n    \"form\": \"enchanté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enchantée\": {\n    \"form\": \"enchantée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enchantées\": {\n    \"form\": \"enchantées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enchantés\": {\n    \"form\": \"enchantés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encroûté\": {\n    \"form\": \"encroûté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"encroûtés\": {\n    \"form\": \"encroûtés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endeuillé\": {\n    \"form\": \"endeuillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endeuillée\": {\n    \"form\": \"endeuillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endeuillées\": {\n    \"form\": \"endeuillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endeuillés\": {\n    \"form\": \"endeuillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endommagé\": {\n    \"form\": \"endommagé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"endommagée\": {\n    \"form\": \"endommagée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endommagées\": {\n    \"form\": \"endommagées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endommagés\": {\n    \"form\": \"endommagés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"endormi\": {\n    \"form\": \"endormi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"endormie\": {\n    \"form\": \"endormie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"endormies\": {\n    \"form\": \"endormies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"endormis\": {\n    \"form\": \"endormis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enfantin\": {\n    \"form\": \"enfantin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enfantine\": {\n    \"form\": \"enfantine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enfantines\": {\n    \"form\": \"enfantines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enfantins\": {\n    \"form\": \"enfantins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enflammé\": {\n    \"form\": \"enflammé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enflammée\": {\n    \"form\": \"enflammée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enflammées\": {\n    \"form\": \"enflammées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enflammés\": {\n    \"form\": \"enflammés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"engourdi\": {\n    \"form\": \"engourdi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"engourdie\": {\n    \"form\": \"engourdie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"engourdies\": {\n    \"form\": \"engourdies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"engourdis\": {\n    \"form\": \"engourdis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enjoué\": {\n    \"form\": \"enjoué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enjouée\": {\n    \"form\": \"enjouée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enjouées\": {\n    \"form\": \"enjouées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enjoués\": {\n    \"form\": \"enjoués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ennemi\": {\n    \"form\": \"ennemi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennemie\": {\n    \"form\": \"ennemie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennemies\": {\n    \"form\": \"ennemies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennemis\": {\n    \"form\": \"ennemis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennui\": {\n    \"form\": \"ennui\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennuie\": {\n    \"form\": \"ennuie\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennuyer\": {\n    \"form\": \"ennuyer\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennuyeuse\": {\n    \"form\": \"ennuyeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennuyeuses\": {\n    \"form\": \"ennuyeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennuyeux\": {\n    \"form\": \"ennuyeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennuyé\": {\n    \"form\": \"ennuyé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ennuyée\": {\n    \"form\": \"ennuyée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennuyées\": {\n    \"form\": \"ennuyées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ennuyés\": {\n    \"form\": \"ennuyés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ensanglanté\": {\n    \"form\": \"ensanglanté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensanglantée\": {\n    \"form\": \"ensanglantée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensanglantées\": {\n    \"form\": \"ensanglantées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensanglantés\": {\n    \"form\": \"ensanglantés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensorcelant\": {\n    \"form\": \"ensorcelant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensorcelante\": {\n    \"form\": \"ensorcelante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ensorcelantes\": {\n    \"form\": \"ensorcelantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entaillé\": {\n    \"form\": \"entaillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entaillée\": {\n    \"form\": \"entaillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entaillées\": {\n    \"form\": \"entaillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entaillés\": {\n    \"form\": \"entaillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entendu\": {\n    \"form\": \"entendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"entendue\": {\n    \"form\": \"entendue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entendues\": {\n    \"form\": \"entendues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entendus\": {\n    \"form\": \"entendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enthousiaste\": {\n    \"form\": \"enthousiaste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enthousiastes\": {\n    \"form\": \"enthousiastes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"entiché\": {\n    \"form\": \"entiché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entichée\": {\n    \"form\": \"entichée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entier\": {\n    \"form\": \"entier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"entiers\": {\n    \"form\": \"entiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entière\": {\n    \"form\": \"entière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entières\": {\n    \"form\": \"entières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entortillé\": {\n    \"form\": \"entortillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entortillée\": {\n    \"form\": \"entortillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entortillés\": {\n    \"form\": \"entortillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"entrouvert\": {\n    \"form\": \"entrouvert\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"entrouverte\": {\n    \"form\": \"entrouverte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"entrouvertes\": {\n    \"form\": \"entrouvertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"entrouverts\": {\n    \"form\": \"entrouverts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"envahissant\": {\n    \"form\": \"envahissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envahissante\": {\n    \"form\": \"envahissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envahissantes\": {\n    \"form\": \"envahissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envahissants\": {\n    \"form\": \"envahissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"enveloppé\": {\n    \"form\": \"enveloppé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"enveloppée\": {\n    \"form\": \"enveloppée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enveloppées\": {\n    \"form\": \"enveloppées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"enveloppés\": {\n    \"form\": \"enveloppés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"envieuse\": {\n    \"form\": \"envieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envieuses\": {\n    \"form\": \"envieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envieux\": {\n    \"form\": \"envieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envoûtant\": {\n    \"form\": \"envoûtant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envoûtante\": {\n    \"form\": \"envoûtante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envoûtantes\": {\n    \"form\": \"envoûtantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"envoûtants\": {\n    \"form\": \"envoûtants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"errant\": {\n    \"form\": \"errant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"errante\": {\n    \"form\": \"errante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"errantes\": {\n    \"form\": \"errantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"errants\": {\n    \"form\": \"errants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"espagnol\": {\n    \"form\": \"espagnol\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"espagnole\": {\n    \"form\": \"espagnole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"espagnoles\": {\n    \"form\": \"espagnoles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"espagnols\": {\n    \"form\": \"espagnols\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"espiègle\": {\n    \"form\": \"espiègle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"espiègles\": {\n    \"form\": \"espiègles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"essai\": {\n    \"form\": \"essai\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"essentiel\": {\n    \"form\": \"essentiel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"essentielle\": {\n    \"form\": \"essentielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"essentielles\": {\n    \"form\": \"essentielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"essentiels\": {\n    \"form\": \"essentiels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"esseulé\": {\n    \"form\": \"esseulé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"esseulée\": {\n    \"form\": \"esseulée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"esseulées\": {\n    \"form\": \"esseulées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"esseulés\": {\n    \"form\": \"esseulés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"estimable\": {\n    \"form\": \"estimable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"estimables\": {\n    \"form\": \"estimables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"européen\": {\n    \"form\": \"européen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"européenne\": {\n    \"form\": \"européenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"européennes\": {\n    \"form\": \"européennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"européens\": {\n    \"form\": \"européens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exact\": {\n    \"form\": \"exact\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exacte\": {\n    \"form\": \"exacte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exactes\": {\n    \"form\": \"exactes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exacts\": {\n    \"form\": \"exacts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excellent\": {\n    \"form\": \"excellent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excellente\": {\n    \"form\": \"excellente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excellentes\": {\n    \"form\": \"excellentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excellents\": {\n    \"form\": \"excellents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exceptionnel\": {\n    \"form\": \"exceptionnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exceptionnelle\": {\n    \"form\": \"exceptionnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exceptionnelles\": {\n    \"form\": \"exceptionnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exceptionnels\": {\n    \"form\": \"exceptionnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excessif\": {\n    \"form\": \"excessif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excessifs\": {\n    \"form\": \"excessifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excessive\": {\n    \"form\": \"excessive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excessives\": {\n    \"form\": \"excessives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excitant\": {\n    \"form\": \"excitant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"excitante\": {\n    \"form\": \"excitante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excitantes\": {\n    \"form\": \"excitantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excitants\": {\n    \"form\": \"excitants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"excité\": {\n    \"form\": \"excité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"excitée\": {\n    \"form\": \"excitée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"excitées\": {\n    \"form\": \"excitées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"excités\": {\n    \"form\": \"excités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exclusif\": {\n    \"form\": \"exclusif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exclusifs\": {\n    \"form\": \"exclusifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exclusive\": {\n    \"form\": \"exclusive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exclusives\": {\n    \"form\": \"exclusives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exemplaire\": {\n    \"form\": \"exemplaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exemplaires\": {\n    \"form\": \"exemplaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exigeant\": {\n    \"form\": \"exigeant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exigeante\": {\n    \"form\": \"exigeante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exigeantes\": {\n    \"form\": \"exigeantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exigeants\": {\n    \"form\": \"exigeants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"existant\": {\n    \"form\": \"existant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"existante\": {\n    \"form\": \"existante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"existantes\": {\n    \"form\": \"existantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"existants\": {\n    \"form\": \"existants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exorbitant\": {\n    \"form\": \"exorbitant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exorbitante\": {\n    \"form\": \"exorbitante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exorbitantes\": {\n    \"form\": \"exorbitantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exorbitants\": {\n    \"form\": \"exorbitants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exotique\": {\n    \"form\": \"exotique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exotiques\": {\n    \"form\": \"exotiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"explicite\": {\n    \"form\": \"explicite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"explicites\": {\n    \"form\": \"explicites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"expresse\": {\n    \"form\": \"expresse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"expresses\": {\n    \"form\": \"expresses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exprès\": {\n    \"form\": \"exprès\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exquis\": {\n    \"form\": \"exquis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"exquise\": {\n    \"form\": \"exquise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exquises\": {\n    \"form\": \"exquises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"externe\": {\n    \"form\": \"externe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"externes\": {\n    \"form\": \"externes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extraordinaire\": {\n    \"form\": \"extraordinaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"extraordinaires\": {\n    \"form\": \"extraordinaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"extravagant\": {\n    \"form\": \"extravagant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extravagante\": {\n    \"form\": \"extravagante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extravagantes\": {\n    \"form\": \"extravagantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extravagants\": {\n    \"form\": \"extravagants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"extrême\": {\n    \"form\": \"extrême\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"extrêmes\": {\n    \"form\": \"extrêmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"extérieur\": {\n    \"form\": \"extérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"extérieure\": {\n    \"form\": \"extérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extérieures\": {\n    \"form\": \"extérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"extérieurs\": {\n    \"form\": \"extérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"exécrable\": {\n    \"form\": \"exécrable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.36\",\n    \"subjectivity\": \"-0.71\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"exécrables\": {\n    \"form\": \"exécrables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.36\",\n    \"subjectivity\": \"-0.71\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fabuleuse\": {\n    \"form\": \"fabuleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fabuleuses\": {\n    \"form\": \"fabuleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fabuleux\": {\n    \"form\": \"fabuleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"facile\": {\n    \"form\": \"facile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"faciles\": {\n    \"form\": \"faciles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"factice\": {\n    \"form\": \"factice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"factices\": {\n    \"form\": \"factices\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fade\": {\n    \"form\": \"fade\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fades\": {\n    \"form\": \"fades\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"faible\": {\n    \"form\": \"faible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"faibles\": {\n    \"form\": \"faibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"faisable\": {\n    \"form\": \"faisable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fameuse\": {\n    \"form\": \"fameuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fameuses\": {\n    \"form\": \"fameuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fameux\": {\n    \"form\": \"fameux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"familial\": {\n    \"form\": \"familial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"familiale\": {\n    \"form\": \"familiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"familiales\": {\n    \"form\": \"familiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"familiaux\": {\n    \"form\": \"familiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"familier\": {\n    \"form\": \"familier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"familiers\": {\n    \"form\": \"familiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"familière\": {\n    \"form\": \"familière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"familières\": {\n    \"form\": \"familières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fantastique\": {\n    \"form\": \"fantastique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fantastiques\": {\n    \"form\": \"fantastiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"farouche\": {\n    \"form\": \"farouche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"farouches\": {\n    \"form\": \"farouches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatal\": {\n    \"form\": \"fatal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fatale\": {\n    \"form\": \"fatale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatales\": {\n    \"form\": \"fatales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatals\": {\n    \"form\": \"fatals\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatigant\": {\n    \"form\": \"fatigant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fatigante\": {\n    \"form\": \"fatigante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fatigantes\": {\n    \"form\": \"fatigantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fatigants\": {\n    \"form\": \"fatigants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fatigué\": {\n    \"form\": \"fatigué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fatiguée\": {\n    \"form\": \"fatiguée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatiguées\": {\n    \"form\": \"fatiguées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fatigués\": {\n    \"form\": \"fatigués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fauché\": {\n    \"form\": \"fauché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fauchée\": {\n    \"form\": \"fauchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fauchées\": {\n    \"form\": \"fauchées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fauchés\": {\n    \"form\": \"fauchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fausse\": {\n    \"form\": \"fausse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fausses\": {\n    \"form\": \"fausses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fauve\": {\n    \"form\": \"fauve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fauves\": {\n    \"form\": \"fauves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"faux\": {\n    \"form\": \"faux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"favorable\": {\n    \"form\": \"favorable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"favorables\": {\n    \"form\": \"favorables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"favori\": {\n    \"form\": \"favori\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"favoris\": {\n    \"form\": \"favoris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"favorite\": {\n    \"form\": \"favorite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"favorites\": {\n    \"form\": \"favorites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"femelle\": {\n    \"form\": \"femelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"femelles\": {\n    \"form\": \"femelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ferme\": {\n    \"form\": \"ferme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fermes\": {\n    \"form\": \"fermes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fermé\": {\n    \"form\": \"fermé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fermée\": {\n    \"form\": \"fermée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fermées\": {\n    \"form\": \"fermées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fermés\": {\n    \"form\": \"fermés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fertile\": {\n    \"form\": \"fertile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fertiles\": {\n    \"form\": \"fertiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fessier\": {\n    \"form\": \"fessier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fessiers\": {\n    \"form\": \"fessiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fessière\": {\n    \"form\": \"fessière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fessières\": {\n    \"form\": \"fessières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fichu\": {\n    \"form\": \"fichu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fichue\": {\n    \"form\": \"fichue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fichues\": {\n    \"form\": \"fichues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fichus\": {\n    \"form\": \"fichus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fidèle\": {\n    \"form\": \"fidèle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fidèles\": {\n    \"form\": \"fidèles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fier\": {\n    \"form\": \"fier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fiers\": {\n    \"form\": \"fiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"figé\": {\n    \"form\": \"figé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"figée\": {\n    \"form\": \"figée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"figées\": {\n    \"form\": \"figées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"figés\": {\n    \"form\": \"figés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fin\": {\n    \"form\": \"fin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"final\": {\n    \"form\": \"final\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"finale\": {\n    \"form\": \"finale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"finales\": {\n    \"form\": \"finales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"finaux\": {\n    \"form\": \"finaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fine\": {\n    \"form\": \"fine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fines\": {\n    \"form\": \"fines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fins\": {\n    \"form\": \"fins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fixe\": {\n    \"form\": \"fixe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fixes\": {\n    \"form\": \"fixes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fière\": {\n    \"form\": \"fière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fières\": {\n    \"form\": \"fières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fiévreuse\": {\n    \"form\": \"fiévreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fiévreuses\": {\n    \"form\": \"fiévreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fiévreux\": {\n    \"form\": \"fiévreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flagada\": {\n    \"form\": \"flagada\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flageolant\": {\n    \"form\": \"flageolant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flageolante\": {\n    \"form\": \"flageolante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flageolantes\": {\n    \"form\": \"flageolantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flageolants\": {\n    \"form\": \"flageolants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flagrant\": {\n    \"form\": \"flagrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flagrante\": {\n    \"form\": \"flagrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flagrantes\": {\n    \"form\": \"flagrantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flagrants\": {\n    \"form\": \"flagrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flamboyant\": {\n    \"form\": \"flamboyant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flamboyante\": {\n    \"form\": \"flamboyante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flamboyantes\": {\n    \"form\": \"flamboyantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flamboyants\": {\n    \"form\": \"flamboyants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flegmatique\": {\n    \"form\": \"flegmatique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flegmatiques\": {\n    \"form\": \"flegmatiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fleuri\": {\n    \"form\": \"fleuri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fleurie\": {\n    \"form\": \"fleurie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fleuries\": {\n    \"form\": \"fleuries\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fleuris\": {\n    \"form\": \"fleuris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flexible\": {\n    \"form\": \"flexible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flexibles\": {\n    \"form\": \"flexibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flottant\": {\n    \"form\": \"flottant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"flottante\": {\n    \"form\": \"flottante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flottantes\": {\n    \"form\": \"flottantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flottants\": {\n    \"form\": \"flottants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flou\": {\n    \"form\": \"flou\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"floue\": {\n    \"form\": \"floue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"floues\": {\n    \"form\": \"floues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"flous\": {\n    \"form\": \"flous\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fluide\": {\n    \"form\": \"fluide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fluides\": {\n    \"form\": \"fluides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flâneur\": {\n    \"form\": \"flâneur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flâneurs\": {\n    \"form\": \"flâneurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flâneuse\": {\n    \"form\": \"flâneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"flâneuses\": {\n    \"form\": \"flâneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"folle\": {\n    \"form\": \"folle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"folles\": {\n    \"form\": \"folles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"foncé\": {\n    \"form\": \"foncé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"foncée\": {\n    \"form\": \"foncée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"foncées\": {\n    \"form\": \"foncées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"foncés\": {\n    \"form\": \"foncés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"forcené\": {\n    \"form\": \"forcené\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"forcenée\": {\n    \"form\": \"forcenée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"forcenées\": {\n    \"form\": \"forcenées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"forcenés\": {\n    \"form\": \"forcenés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"forcé\": {\n    \"form\": \"forcé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"forcée\": {\n    \"form\": \"forcée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"forcées\": {\n    \"form\": \"forcées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"forcés\": {\n    \"form\": \"forcés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"formel\": {\n    \"form\": \"formel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"formelle\": {\n    \"form\": \"formelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"formelles\": {\n    \"form\": \"formelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"formels\": {\n    \"form\": \"formels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"formidable\": {\n    \"form\": \"formidable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.85\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"formidables\": {\n    \"form\": \"formidables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.85\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fort\": {\n    \"form\": \"fort\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.41\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"forte\": {\n    \"form\": \"forte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.41\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fortement\": {\n    \"form\": \"fortement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fortes\": {\n    \"form\": \"fortes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.41\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"forts\": {\n    \"form\": \"forts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.41\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fortuit\": {\n    \"form\": \"fortuit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortuite\": {\n    \"form\": \"fortuite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortuites\": {\n    \"form\": \"fortuites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortuits\": {\n    \"form\": \"fortuits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortuné\": {\n    \"form\": \"fortuné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortunée\": {\n    \"form\": \"fortunée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortunées\": {\n    \"form\": \"fortunées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fortunés\": {\n    \"form\": \"fortunés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fossile\": {\n    \"form\": \"fossile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fossiles\": {\n    \"form\": \"fossiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fou\": {\n    \"form\": \"fou\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"foudroyant\": {\n    \"form\": \"foudroyant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"foudroyante\": {\n    \"form\": \"foudroyante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"foudroyantes\": {\n    \"form\": \"foudroyantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"foudroyants\": {\n    \"form\": \"foudroyants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fouineur\": {\n    \"form\": \"fouineur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fouineurs\": {\n    \"form\": \"fouineurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fouineuse\": {\n    \"form\": \"fouineuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourré\": {\n    \"form\": \"fourré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourrée\": {\n    \"form\": \"fourrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourrées\": {\n    \"form\": \"fourrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourrés\": {\n    \"form\": \"fourrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourvoyé\": {\n    \"form\": \"fourvoyé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourvoyées\": {\n    \"form\": \"fourvoyées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fourvoyés\": {\n    \"form\": \"fourvoyés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fous\": {\n    \"form\": \"fous\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"foutaise\": {\n    \"form\": \"foutaise\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"foutu\": {\n    \"form\": \"foutu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"foutue\": {\n    \"form\": \"foutue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"foutues\": {\n    \"form\": \"foutues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"foutus\": {\n    \"form\": \"foutus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fragile\": {\n    \"form\": \"fragile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"fragiles\": {\n    \"form\": \"fragiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frais\": {\n    \"form\": \"frais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"franc\": {\n    \"form\": \"franc\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"franche\": {\n    \"form\": \"franche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"franches\": {\n    \"form\": \"franches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"franchouillard\": {\n    \"form\": \"franchouillard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"franchouillarde\": {\n    \"form\": \"franchouillarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"francs\": {\n    \"form\": \"francs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"français\": {\n    \"form\": \"français\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"française\": {\n    \"form\": \"française\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"françaises\": {\n    \"form\": \"françaises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fraternel\": {\n    \"form\": \"fraternel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fraternelle\": {\n    \"form\": \"fraternelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fraternelles\": {\n    \"form\": \"fraternelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fraternels\": {\n    \"form\": \"fraternels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fraîche\": {\n    \"form\": \"fraîche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fraîches\": {\n    \"form\": \"fraîches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frisquet\": {\n    \"form\": \"frisquet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frisquette\": {\n    \"form\": \"frisquette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frissonnant\": {\n    \"form\": \"frissonnant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frissonnante\": {\n    \"form\": \"frissonnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frissonnantes\": {\n    \"form\": \"frissonnantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frissonnants\": {\n    \"form\": \"frissonnants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frisé\": {\n    \"form\": \"frisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frisée\": {\n    \"form\": \"frisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"frisées\": {\n    \"form\": \"frisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"frisés\": {\n    \"form\": \"frisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"froid\": {\n    \"form\": \"froid\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"froide\": {\n    \"form\": \"froide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"froides\": {\n    \"form\": \"froides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"froids\": {\n    \"form\": \"froids\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.34\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"froissé\": {\n    \"form\": \"froissé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"froissée\": {\n    \"form\": \"froissée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"froissées\": {\n    \"form\": \"froissées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"froissés\": {\n    \"form\": \"froissés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fructueuse\": {\n    \"form\": \"fructueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fructueuses\": {\n    \"form\": \"fructueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fructueux\": {\n    \"form\": \"fructueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fruste\": {\n    \"form\": \"fruste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frustes\": {\n    \"form\": \"frustes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frémissant\": {\n    \"form\": \"frémissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frémissante\": {\n    \"form\": \"frémissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frémissantes\": {\n    \"form\": \"frémissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frémissants\": {\n    \"form\": \"frémissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fréquent\": {\n    \"form\": \"fréquent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fréquente\": {\n    \"form\": \"fréquente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fréquentes\": {\n    \"form\": \"fréquentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fréquents\": {\n    \"form\": \"fréquents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"frétillant\": {\n    \"form\": \"frétillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frétillante\": {\n    \"form\": \"frétillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frétillantes\": {\n    \"form\": \"frétillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frétillants\": {\n    \"form\": \"frétillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"frêle\": {\n    \"form\": \"frêle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"frêles\": {\n    \"form\": \"frêles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fugitif\": {\n    \"form\": \"fugitif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fugitifs\": {\n    \"form\": \"fugitifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fugitive\": {\n    \"form\": \"fugitive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fugitives\": {\n    \"form\": \"fugitives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumant\": {\n    \"form\": \"fumant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fumante\": {\n    \"form\": \"fumante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumantes\": {\n    \"form\": \"fumantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumants\": {\n    \"form\": \"fumants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumé\": {\n    \"form\": \"fumé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"fumée\": {\n    \"form\": \"fumée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumées\": {\n    \"form\": \"fumées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fumés\": {\n    \"form\": \"fumés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"funeste\": {\n    \"form\": \"funeste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"funestes\": {\n    \"form\": \"funestes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"funèbre\": {\n    \"form\": \"funèbre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"funèbres\": {\n    \"form\": \"funèbres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fureteur\": {\n    \"form\": \"fureteur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fureteurs\": {\n    \"form\": \"fureteurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fureteuse\": {\n    \"form\": \"fureteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fureteuses\": {\n    \"form\": \"fureteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"furibond\": {\n    \"form\": \"furibond\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"furibonde\": {\n    \"form\": \"furibonde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"furibondes\": {\n    \"form\": \"furibondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"furibonds\": {\n    \"form\": \"furibonds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"furieuse\": {\n    \"form\": \"furieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"furieuses\": {\n    \"form\": \"furieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"furieux\": {\n    \"form\": \"furieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"furtif\": {\n    \"form\": \"furtif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"furtifs\": {\n    \"form\": \"furtifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"furtive\": {\n    \"form\": \"furtive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"furtives\": {\n    \"form\": \"furtives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"futur\": {\n    \"form\": \"futur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"future\": {\n    \"form\": \"future\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"futures\": {\n    \"form\": \"futures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"futurs\": {\n    \"form\": \"futurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"fébrile\": {\n    \"form\": \"fébrile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fébriles\": {\n    \"form\": \"fébriles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fédéral\": {\n    \"form\": \"fédéral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fédérale\": {\n    \"form\": \"fédérale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fédérales\": {\n    \"form\": \"fédérales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"fédéraux\": {\n    \"form\": \"fédéraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"féminin\": {\n    \"form\": \"féminin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"féminine\": {\n    \"form\": \"féminine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"féminines\": {\n    \"form\": \"féminines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"féminins\": {\n    \"form\": \"féminins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"féroce\": {\n    \"form\": \"féroce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"féroces\": {\n    \"form\": \"féroces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gai\": {\n    \"form\": \"gai\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gaie\": {\n    \"form\": \"gaie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gaies\": {\n    \"form\": \"gaies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gais\": {\n    \"form\": \"gais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"galopant\": {\n    \"form\": \"galopant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"galopante\": {\n    \"form\": \"galopante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"galopantes\": {\n    \"form\": \"galopantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"galopants\": {\n    \"form\": \"galopants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gauche\": {\n    \"form\": \"gauche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gauches\": {\n    \"form\": \"gauches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gaulois\": {\n    \"form\": \"gaulois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gauloise\": {\n    \"form\": \"gauloise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gauloises\": {\n    \"form\": \"gauloises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gentil\": {\n    \"form\": \"gentil\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"gentille\": {\n    \"form\": \"gentille\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gentilles\": {\n    \"form\": \"gentilles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gentils\": {\n    \"form\": \"gentils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gigantesque\": {\n    \"form\": \"gigantesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gigantesques\": {\n    \"form\": \"gigantesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"girond\": {\n    \"form\": \"girond\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gironde\": {\n    \"form\": \"gironde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"girondes\": {\n    \"form\": \"girondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gironds\": {\n    \"form\": \"gironds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glabre\": {\n    \"form\": \"glabre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glabres\": {\n    \"form\": \"glabres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glacial\": {\n    \"form\": \"glacial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"glaciale\": {\n    \"form\": \"glaciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glaciales\": {\n    \"form\": \"glaciales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glacials\": {\n    \"form\": \"glacials\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glaciaux\": {\n    \"form\": \"glaciaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glacé\": {\n    \"form\": \"glacé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"glacée\": {\n    \"form\": \"glacée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glacées\": {\n    \"form\": \"glacées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glacés\": {\n    \"form\": \"glacés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glauque\": {\n    \"form\": \"glauque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glauques\": {\n    \"form\": \"glauques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"global\": {\n    \"form\": \"global\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"globale\": {\n    \"form\": \"globale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"globaux\": {\n    \"form\": \"globaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"glorieuse\": {\n    \"form\": \"glorieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glorieuses\": {\n    \"form\": \"glorieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"glorieux\": {\n    \"form\": \"glorieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gluant\": {\n    \"form\": \"gluant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gluante\": {\n    \"form\": \"gluante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gluantes\": {\n    \"form\": \"gluantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gluants\": {\n    \"form\": \"gluants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gnangnan\": {\n    \"form\": \"gnangnan\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"godiche\": {\n    \"form\": \"godiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"godiches\": {\n    \"form\": \"godiches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gonflé\": {\n    \"form\": \"gonflé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gonflée\": {\n    \"form\": \"gonflée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gonflées\": {\n    \"form\": \"gonflées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gonflés\": {\n    \"form\": \"gonflés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gourmand\": {\n    \"form\": \"gourmand\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gourmande\": {\n    \"form\": \"gourmande\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gourmandes\": {\n    \"form\": \"gourmandes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gourmands\": {\n    \"form\": \"gourmands\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gracieuse\": {\n    \"form\": \"gracieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gracieuses\": {\n    \"form\": \"gracieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gracieux\": {\n    \"form\": \"gracieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grand\": {\n    \"form\": \"grand\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grande\": {\n    \"form\": \"grande\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grandes\": {\n    \"form\": \"grandes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grandiose\": {\n    \"form\": \"grandiose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grandioses\": {\n    \"form\": \"grandioses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grands\": {\n    \"form\": \"grands\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gras\": {\n    \"form\": \"gras\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grasse\": {\n    \"form\": \"grasse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grasses\": {\n    \"form\": \"grasses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gratiné\": {\n    \"form\": \"gratiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gratinés\": {\n    \"form\": \"gratinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gratuit\": {\n    \"form\": \"gratuit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gratuite\": {\n    \"form\": \"gratuite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gratuites\": {\n    \"form\": \"gratuites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gratuits\": {\n    \"form\": \"gratuits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grave\": {\n    \"form\": \"grave\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"graveleuse\": {\n    \"form\": \"graveleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"graveleuses\": {\n    \"form\": \"graveleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"graveleux\": {\n    \"form\": \"graveleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"graves\": {\n    \"form\": \"graves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grec\": {\n    \"form\": \"grec\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grecque\": {\n    \"form\": \"grecque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grecques\": {\n    \"form\": \"grecques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grecs\": {\n    \"form\": \"grecs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grelottant\": {\n    \"form\": \"grelottant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grelottante\": {\n    \"form\": \"grelottante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grelottantes\": {\n    \"form\": \"grelottantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grelottants\": {\n    \"form\": \"grelottants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gris\": {\n    \"form\": \"gris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grise\": {\n    \"form\": \"grise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grises\": {\n    \"form\": \"grises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grisâtre\": {\n    \"form\": \"grisâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grisâtres\": {\n    \"form\": \"grisâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grivois\": {\n    \"form\": \"grivois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grivoise\": {\n    \"form\": \"grivoise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"grivoises\": {\n    \"form\": \"grivoises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"gros\": {\n    \"form\": \"gros\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"grosse\": {\n    \"form\": \"grosse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grosses\": {\n    \"form\": \"grosses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grossier\": {\n    \"form\": \"grossier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grossiers\": {\n    \"form\": \"grossiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grossière\": {\n    \"form\": \"grossière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grossières\": {\n    \"form\": \"grossières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"grotesque\": {\n    \"form\": \"grotesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"grotesques\": {\n    \"form\": \"grotesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"guerrier\": {\n    \"form\": \"guerrier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"guerriers\": {\n    \"form\": \"guerriers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"guerrière\": {\n    \"form\": \"guerrière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"guerrières\": {\n    \"form\": \"guerrières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"géant\": {\n    \"form\": \"géant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"géante\": {\n    \"form\": \"géante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"géantes\": {\n    \"form\": \"géantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"géants\": {\n    \"form\": \"géants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"génial\": {\n    \"form\": \"génial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"géniale\": {\n    \"form\": \"géniale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"géniales\": {\n    \"form\": \"géniales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"géniaux\": {\n    \"form\": \"géniaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"général\": {\n    \"form\": \"général\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"générale\": {\n    \"form\": \"générale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"générales\": {\n    \"form\": \"générales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"généraux\": {\n    \"form\": \"généraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"généreuse\": {\n    \"form\": \"généreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"généreuses\": {\n    \"form\": \"généreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"généreux\": {\n    \"form\": \"généreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gênant\": {\n    \"form\": \"gênant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gênante\": {\n    \"form\": \"gênante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gênantes\": {\n    \"form\": \"gênantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gênants\": {\n    \"form\": \"gênants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gêné\": {\n    \"form\": \"gêné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"gênée\": {\n    \"form\": \"gênée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gênées\": {\n    \"form\": \"gênées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"gênés\": {\n    \"form\": \"gênés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habile\": {\n    \"form\": \"habile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"habiles\": {\n    \"form\": \"habiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habillé\": {\n    \"form\": \"habillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"habillée\": {\n    \"form\": \"habillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habillées\": {\n    \"form\": \"habillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habillés\": {\n    \"form\": \"habillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habituel\": {\n    \"form\": \"habituel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"habituelle\": {\n    \"form\": \"habituelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habituelles\": {\n    \"form\": \"habituelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"habituels\": {\n    \"form\": \"habituels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hagard\": {\n    \"form\": \"hagard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hagarde\": {\n    \"form\": \"hagarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hagardes\": {\n    \"form\": \"hagardes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hagards\": {\n    \"form\": \"hagards\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"haineuse\": {\n    \"form\": \"haineuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"haineuses\": {\n    \"form\": \"haineuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"haineux\": {\n    \"form\": \"haineux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"-0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"haletant\": {\n    \"form\": \"haletant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"haletante\": {\n    \"form\": \"haletante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"haletantes\": {\n    \"form\": \"haletantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"haletants\": {\n    \"form\": \"haletants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hardi\": {\n    \"form\": \"hardi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hardie\": {\n    \"form\": \"hardie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hardies\": {\n    \"form\": \"hardies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hardis\": {\n    \"form\": \"hardis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hargneuse\": {\n    \"form\": \"hargneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hargneuses\": {\n    \"form\": \"hargneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hargneux\": {\n    \"form\": \"hargneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hasardé\": {\n    \"form\": \"hasardé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hasardée\": {\n    \"form\": \"hasardée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"haut\": {\n    \"form\": \"haut\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hautain\": {\n    \"form\": \"hautain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hautaine\": {\n    \"form\": \"hautaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hautaines\": {\n    \"form\": \"hautaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hautains\": {\n    \"form\": \"hautains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"haute\": {\n    \"form\": \"haute\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hautes\": {\n    \"form\": \"hautes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hauts\": {\n    \"form\": \"hauts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hellène\": {\n    \"form\": \"hellène\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hellènes\": {\n    \"form\": \"hellènes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hellénique\": {\n    \"form\": \"hellénique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"helléniques\": {\n    \"form\": \"helléniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hermétique\": {\n    \"form\": \"hermétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hermétiques\": {\n    \"form\": \"hermétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"heureuse\": {\n    \"form\": \"heureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heureusement\": {\n    \"form\": \"heureusement\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heureuses\": {\n    \"form\": \"heureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"heureux\": {\n    \"form\": \"heureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"hexagonal\": {\n    \"form\": \"hexagonal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hexagonale\": {\n    \"form\": \"hexagonale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hexagonales\": {\n    \"form\": \"hexagonales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hexagonaux\": {\n    \"form\": \"hexagonaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hideuse\": {\n    \"form\": \"hideuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hideuses\": {\n    \"form\": \"hideuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hideux\": {\n    \"form\": \"hideux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hispanique\": {\n    \"form\": \"hispanique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hispaniques\": {\n    \"form\": \"hispaniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"historique\": {\n    \"form\": \"historique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"historiques\": {\n    \"form\": \"historiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hiératique\": {\n    \"form\": \"hiératique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hiératiques\": {\n    \"form\": \"hiératiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"homogène\": {\n    \"form\": \"homogène\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"homogènes\": {\n    \"form\": \"homogènes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"homologue\": {\n    \"form\": \"homologue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"homologues\": {\n    \"form\": \"homologues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"honnête\": {\n    \"form\": \"honnête\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"honnêtes\": {\n    \"form\": \"honnêtes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"honorable\": {\n    \"form\": \"honorable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"honorables\": {\n    \"form\": \"honorables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"honteuse\": {\n    \"form\": \"honteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"honteuses\": {\n    \"form\": \"honteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"honteux\": {\n    \"form\": \"honteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horizontal\": {\n    \"form\": \"horizontal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horizontale\": {\n    \"form\": \"horizontale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"horizontales\": {\n    \"form\": \"horizontales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"horizontaux\": {\n    \"form\": \"horizontaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"horreur\": {\n    \"form\": \"horreur\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horrible\": {\n    \"form\": \"horrible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"horribles\": {\n    \"form\": \"horribles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hostile\": {\n    \"form\": \"hostile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hostiles\": {\n    \"form\": \"hostiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"humain\": {\n    \"form\": \"humain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"humaine\": {\n    \"form\": \"humaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"humaines\": {\n    \"form\": \"humaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"humains\": {\n    \"form\": \"humains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"humanoïde\": {\n    \"form\": \"humanoïde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humanoïdes\": {\n    \"form\": \"humanoïdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"humble\": {\n    \"form\": \"humble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"humbles\": {\n    \"form\": \"humbles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"humide\": {\n    \"form\": \"humide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"humides\": {\n    \"form\": \"humides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hyperactif\": {\n    \"form\": \"hyperactif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hyperactive\": {\n    \"form\": \"hyperactive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hypothétique\": {\n    \"form\": \"hypothétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hypothétiques\": {\n    \"form\": \"hypothétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hébreu\": {\n    \"form\": \"hébreu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hébreux\": {\n    \"form\": \"hébreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hélas\": {\n    \"form\": \"hélas\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"héroïque\": {\n    \"form\": \"héroïque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"héroïques\": {\n    \"form\": \"héroïques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hésitant\": {\n    \"form\": \"hésitant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"hésitante\": {\n    \"form\": \"hésitante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hésitantes\": {\n    \"form\": \"hésitantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hésitants\": {\n    \"form\": \"hésitants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"hétéroclite\": {\n    \"form\": \"hétéroclite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hétéroclites\": {\n    \"form\": \"hétéroclites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hétérogène\": {\n    \"form\": \"hétérogène\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"hétérogènes\": {\n    \"form\": \"hétérogènes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ibérique\": {\n    \"form\": \"ibérique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ibériques\": {\n    \"form\": \"ibériques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"identique\": {\n    \"form\": \"identique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"identiques\": {\n    \"form\": \"identiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiot\": {\n    \"form\": \"idiot\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"idiote\": {\n    \"form\": \"idiote\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiotes\": {\n    \"form\": \"idiotes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idiots\": {\n    \"form\": \"idiots\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idéal\": {\n    \"form\": \"idéal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"idéale\": {\n    \"form\": \"idéale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idéales\": {\n    \"form\": \"idéales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idéals\": {\n    \"form\": \"idéals\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"idéaux\": {\n    \"form\": \"idéaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ignoble\": {\n    \"form\": \"ignoble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ignobles\": {\n    \"form\": \"ignobles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ignorant\": {\n    \"form\": \"ignorant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorante\": {\n    \"form\": \"ignorante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorantes\": {\n    \"form\": \"ignorantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorants\": {\n    \"form\": \"ignorants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignoré\": {\n    \"form\": \"ignoré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorée\": {\n    \"form\": \"ignorée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorées\": {\n    \"form\": \"ignorées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ignorés\": {\n    \"form\": \"ignorés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illicite\": {\n    \"form\": \"illicite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illicites\": {\n    \"form\": \"illicites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illimité\": {\n    \"form\": \"illimité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illimitée\": {\n    \"form\": \"illimitée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illimitées\": {\n    \"form\": \"illimitées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illimités\": {\n    \"form\": \"illimités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illogique\": {\n    \"form\": \"illogique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illogiques\": {\n    \"form\": \"illogiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illustre\": {\n    \"form\": \"illustre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"illustres\": {\n    \"form\": \"illustres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"illégal\": {\n    \"form\": \"illégal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illégale\": {\n    \"form\": \"illégale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illégales\": {\n    \"form\": \"illégales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"illégaux\": {\n    \"form\": \"illégaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imaginaire\": {\n    \"form\": \"imaginaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imaginaires\": {\n    \"form\": \"imaginaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imbibé\": {\n    \"form\": \"imbibé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imbibée\": {\n    \"form\": \"imbibée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imbibées\": {\n    \"form\": \"imbibées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imbibés\": {\n    \"form\": \"imbibés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imbécile\": {\n    \"form\": \"imbécile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imbéciles\": {\n    \"form\": \"imbéciles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immaculé\": {\n    \"form\": \"immaculé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immaculée\": {\n    \"form\": \"immaculée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immaculées\": {\n    \"form\": \"immaculées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immaculés\": {\n    \"form\": \"immaculés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immanquable\": {\n    \"form\": \"immanquable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immanquables\": {\n    \"form\": \"immanquables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immense\": {\n    \"form\": \"immense\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"immenses\": {\n    \"form\": \"immenses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"immigrant\": {\n    \"form\": \"immigrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immigrants\": {\n    \"form\": \"immigrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immobile\": {\n    \"form\": \"immobile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"immobiles\": {\n    \"form\": \"immobiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"immuable\": {\n    \"form\": \"immuable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"immuables\": {\n    \"form\": \"immuables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immédiat\": {\n    \"form\": \"immédiat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"immédiate\": {\n    \"form\": \"immédiate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immédiates\": {\n    \"form\": \"immédiates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immédiats\": {\n    \"form\": \"immédiats\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"immémorial\": {\n    \"form\": \"immémorial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immémoriale\": {\n    \"form\": \"immémoriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immémoriales\": {\n    \"form\": \"immémoriales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"immémoriaux\": {\n    \"form\": \"immémoriaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparable\": {\n    \"form\": \"imparable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparables\": {\n    \"form\": \"imparables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparfait\": {\n    \"form\": \"imparfait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparfaite\": {\n    \"form\": \"imparfaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparfaites\": {\n    \"form\": \"imparfaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imparfaits\": {\n    \"form\": \"imparfaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impassible\": {\n    \"form\": \"impassible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impassibles\": {\n    \"form\": \"impassibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impatient\": {\n    \"form\": \"impatient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impatiente\": {\n    \"form\": \"impatiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impatientes\": {\n    \"form\": \"impatientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impatients\": {\n    \"form\": \"impatients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impavide\": {\n    \"form\": \"impavide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impavides\": {\n    \"form\": \"impavides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impeccable\": {\n    \"form\": \"impeccable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impeccables\": {\n    \"form\": \"impeccables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impensable\": {\n    \"form\": \"impensable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impensables\": {\n    \"form\": \"impensables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imperceptible\": {\n    \"form\": \"imperceptible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imperceptibles\": {\n    \"form\": \"imperceptibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impitoyable\": {\n    \"form\": \"impitoyable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impitoyables\": {\n    \"form\": \"impitoyables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"implacable\": {\n    \"form\": \"implacable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"implacables\": {\n    \"form\": \"implacables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"important\": {\n    \"form\": \"important\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"importante\": {\n    \"form\": \"importante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"importantes\": {\n    \"form\": \"importantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"importants\": {\n    \"form\": \"importants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imposant\": {\n    \"form\": \"imposant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imposante\": {\n    \"form\": \"imposante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imposantes\": {\n    \"form\": \"imposantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imposants\": {\n    \"form\": \"imposants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impossible\": {\n    \"form\": \"impossible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"impossibles\": {\n    \"form\": \"impossibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impraticable\": {\n    \"form\": \"impraticable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impraticables\": {\n    \"form\": \"impraticables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impressionnant\": {\n    \"form\": \"impressionnant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impressionnante\": {\n    \"form\": \"impressionnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impressionnantes\": {\n    \"form\": \"impressionnantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impressionnants\": {\n    \"form\": \"impressionnants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"improbable\": {\n    \"form\": \"improbable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"improbables\": {\n    \"form\": \"improbables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imprécis\": {\n    \"form\": \"imprécis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprécise\": {\n    \"form\": \"imprécise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprécises\": {\n    \"form\": \"imprécises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprévisible\": {\n    \"form\": \"imprévisible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"imprévisibles\": {\n    \"form\": \"imprévisibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"imprévu\": {\n    \"form\": \"imprévu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprévue\": {\n    \"form\": \"imprévue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprévues\": {\n    \"form\": \"imprévues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"imprévus\": {\n    \"form\": \"imprévus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impuissant\": {\n    \"form\": \"impuissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impuissante\": {\n    \"form\": \"impuissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impuissantes\": {\n    \"form\": \"impuissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impuissants\": {\n    \"form\": \"impuissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impénétrable\": {\n    \"form\": \"impénétrable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impénétrables\": {\n    \"form\": \"impénétrables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impératif\": {\n    \"form\": \"impératif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impératifs\": {\n    \"form\": \"impératifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impérative\": {\n    \"form\": \"impérative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impératives\": {\n    \"form\": \"impératives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"impérial\": {\n    \"form\": \"impérial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"impériale\": {\n    \"form\": \"impériale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impériales\": {\n    \"form\": \"impériales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impériaux\": {\n    \"form\": \"impériaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impérieuse\": {\n    \"form\": \"impérieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impérieuses\": {\n    \"form\": \"impérieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"impérieux\": {\n    \"form\": \"impérieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inabordable\": {\n    \"form\": \"inabordable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaccessible\": {\n    \"form\": \"inaccessible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inaccessibles\": {\n    \"form\": \"inaccessibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inadmissible\": {\n    \"form\": \"inadmissible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inadmissibles\": {\n    \"form\": \"inadmissibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaltéré\": {\n    \"form\": \"inaltéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaltérée\": {\n    \"form\": \"inaltérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaltérées\": {\n    \"form\": \"inaltérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaltérés\": {\n    \"form\": \"inaltérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inamical\": {\n    \"form\": \"inamical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inamicale\": {\n    \"form\": \"inamicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inamicaux\": {\n    \"form\": \"inamicaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"-0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inapte\": {\n    \"form\": \"inapte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaptes\": {\n    \"form\": \"inaptes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"-0.67\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inattendu\": {\n    \"form\": \"inattendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inattendue\": {\n    \"form\": \"inattendue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inattendues\": {\n    \"form\": \"inattendues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inattendus\": {\n    \"form\": \"inattendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inaudible\": {\n    \"form\": \"inaudible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inaudibles\": {\n    \"form\": \"inaudibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incalculable\": {\n    \"form\": \"incalculable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incalculables\": {\n    \"form\": \"incalculables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incapable\": {\n    \"form\": \"incapable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"incapables\": {\n    \"form\": \"incapables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incarnat\": {\n    \"form\": \"incarnat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"incertain\": {\n    \"form\": \"incertain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incertaine\": {\n    \"form\": \"incertaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incertaines\": {\n    \"form\": \"incertaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incertains\": {\n    \"form\": \"incertains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incessant\": {\n    \"form\": \"incessant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incessante\": {\n    \"form\": \"incessante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incessantes\": {\n    \"form\": \"incessantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incessants\": {\n    \"form\": \"incessants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incomparable\": {\n    \"form\": \"incomparable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incomparables\": {\n    \"form\": \"incomparables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incompréhensible\": {\n    \"form\": \"incompréhensible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incompréhensibles\": {\n    \"form\": \"incompréhensibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inconcevable\": {\n    \"form\": \"inconcevable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inconcevables\": {\n    \"form\": \"inconcevables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inconnu\": {\n    \"form\": \"inconnu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"inconnue\": {\n    \"form\": \"inconnue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inconnues\": {\n    \"form\": \"inconnues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inconnus\": {\n    \"form\": \"inconnus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inconscient\": {\n    \"form\": \"inconscient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inconsciente\": {\n    \"form\": \"inconsciente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inconscientes\": {\n    \"form\": \"inconscientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inconscients\": {\n    \"form\": \"inconscients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incroyable\": {\n    \"form\": \"incroyable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incroyables\": {\n    \"form\": \"incroyables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"incrédule\": {\n    \"form\": \"incrédule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"incrédules\": {\n    \"form\": \"incrédules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indien\": {\n    \"form\": \"indien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indienne\": {\n    \"form\": \"indienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indiennes\": {\n    \"form\": \"indiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indiens\": {\n    \"form\": \"indiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indifférent\": {\n    \"form\": \"indifférent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indifférente\": {\n    \"form\": \"indifférente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indifférentes\": {\n    \"form\": \"indifférentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indifférents\": {\n    \"form\": \"indifférents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indigent\": {\n    \"form\": \"indigent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indigente\": {\n    \"form\": \"indigente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indigentes\": {\n    \"form\": \"indigentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indigents\": {\n    \"form\": \"indigents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"-1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indigne\": {\n    \"form\": \"indigne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indignes\": {\n    \"form\": \"indignes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indiscret\": {\n    \"form\": \"indiscret\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indiscrets\": {\n    \"form\": \"indiscrets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indiscrète\": {\n    \"form\": \"indiscrète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indiscrètes\": {\n    \"form\": \"indiscrètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indispensable\": {\n    \"form\": \"indispensable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indispensables\": {\n    \"form\": \"indispensables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"individuel\": {\n    \"form\": \"individuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"individuelle\": {\n    \"form\": \"individuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"individuelles\": {\n    \"form\": \"individuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"individuels\": {\n    \"form\": \"individuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indompté\": {\n    \"form\": \"indompté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indomptée\": {\n    \"form\": \"indomptée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indomptés\": {\n    \"form\": \"indomptés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"industriel\": {\n    \"form\": \"industriel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"industrielle\": {\n    \"form\": \"industrielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"industrielles\": {\n    \"form\": \"industrielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"industriels\": {\n    \"form\": \"industriels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indécis\": {\n    \"form\": \"indécis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indécise\": {\n    \"form\": \"indécise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indécises\": {\n    \"form\": \"indécises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indéfini\": {\n    \"form\": \"indéfini\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéfinie\": {\n    \"form\": \"indéfinie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéfinies\": {\n    \"form\": \"indéfinies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéfinis\": {\n    \"form\": \"indéfinis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indépendant\": {\n    \"form\": \"indépendant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"indépendante\": {\n    \"form\": \"indépendante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indépendantes\": {\n    \"form\": \"indépendantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indépendants\": {\n    \"form\": \"indépendants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"indéterminé\": {\n    \"form\": \"indéterminé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéterminée\": {\n    \"form\": \"indéterminée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéterminées\": {\n    \"form\": \"indéterminées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"indéterminés\": {\n    \"form\": \"indéterminés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inentamé\": {\n    \"form\": \"inentamé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inentamée\": {\n    \"form\": \"inentamée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inentamées\": {\n    \"form\": \"inentamées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inerte\": {\n    \"form\": \"inerte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inertes\": {\n    \"form\": \"inertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inespéré\": {\n    \"form\": \"inespéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inespérée\": {\n    \"form\": \"inespérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inespérées\": {\n    \"form\": \"inespérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inexploré\": {\n    \"form\": \"inexploré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inexplorée\": {\n    \"form\": \"inexplorée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inexplorées\": {\n    \"form\": \"inexplorées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inexplorés\": {\n    \"form\": \"inexplorés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"infernal\": {\n    \"form\": \"infernal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"infernale\": {\n    \"form\": \"infernale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infernales\": {\n    \"form\": \"infernales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infernaux\": {\n    \"form\": \"infernaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infime\": {\n    \"form\": \"infime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"infimes\": {\n    \"form\": \"infimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infini\": {\n    \"form\": \"infini\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"infinie\": {\n    \"form\": \"infinie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infinies\": {\n    \"form\": \"infinies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infinis\": {\n    \"form\": \"infinis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"infinitésimal\": {\n    \"form\": \"infinitésimal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"infinitésimale\": {\n    \"form\": \"infinitésimale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"infinitésimales\": {\n    \"form\": \"infinitésimales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"infinitésimaux\": {\n    \"form\": \"infinitésimaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inflexible\": {\n    \"form\": \"inflexible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inflexibles\": {\n    \"form\": \"inflexibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"influent\": {\n    \"form\": \"influent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"influente\": {\n    \"form\": \"influente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"influentes\": {\n    \"form\": \"influentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"influents\": {\n    \"form\": \"influents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inférieur\": {\n    \"form\": \"inférieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inférieure\": {\n    \"form\": \"inférieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inférieures\": {\n    \"form\": \"inférieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inférieurs\": {\n    \"form\": \"inférieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ingénu\": {\n    \"form\": \"ingénu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingénue\": {\n    \"form\": \"ingénue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingénues\": {\n    \"form\": \"ingénues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ingénus\": {\n    \"form\": \"ingénus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inhumain\": {\n    \"form\": \"inhumain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inhumaine\": {\n    \"form\": \"inhumaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inhumaines\": {\n    \"form\": \"inhumaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inhumains\": {\n    \"form\": \"inhumains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inimaginable\": {\n    \"form\": \"inimaginable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inimaginables\": {\n    \"form\": \"inimaginables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"injuste\": {\n    \"form\": \"injuste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"injustes\": {\n    \"form\": \"injustes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"innocent\": {\n    \"form\": \"innocent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"innocente\": {\n    \"form\": \"innocente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"innocentes\": {\n    \"form\": \"innocentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"innocents\": {\n    \"form\": \"innocents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"innombrable\": {\n    \"form\": \"innombrable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"innombrables\": {\n    \"form\": \"innombrables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inopiné\": {\n    \"form\": \"inopiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inopinée\": {\n    \"form\": \"inopinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inopinées\": {\n    \"form\": \"inopinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inoubliable\": {\n    \"form\": \"inoubliable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inoubliables\": {\n    \"form\": \"inoubliables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inouï\": {\n    \"form\": \"inouï\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inouïe\": {\n    \"form\": \"inouïe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inouïes\": {\n    \"form\": \"inouïes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inouïs\": {\n    \"form\": \"inouïs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inquiet\": {\n    \"form\": \"inquiet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"inquiets\": {\n    \"form\": \"inquiets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inquisiteur\": {\n    \"form\": \"inquisiteur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inquisiteurs\": {\n    \"form\": \"inquisiteurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inquisitrice\": {\n    \"form\": \"inquisitrice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inquiète\": {\n    \"form\": \"inquiète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inquiètes\": {\n    \"form\": \"inquiètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inquiétant\": {\n    \"form\": \"inquiétant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inquiétante\": {\n    \"form\": \"inquiétante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inquiétantes\": {\n    \"form\": \"inquiétantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inquiétants\": {\n    \"form\": \"inquiétants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insatisfait\": {\n    \"form\": \"insatisfait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insatisfaite\": {\n    \"form\": \"insatisfaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insatisfaites\": {\n    \"form\": \"insatisfaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insatisfaits\": {\n    \"form\": \"insatisfaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.32\",\n    \"subjectivity\": \"-0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insensible\": {\n    \"form\": \"insensible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insensibles\": {\n    \"form\": \"insensibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insensé\": {\n    \"form\": \"insensé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insensée\": {\n    \"form\": \"insensée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insensées\": {\n    \"form\": \"insensées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insensés\": {\n    \"form\": \"insensés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insignifiant\": {\n    \"form\": \"insignifiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insignifiante\": {\n    \"form\": \"insignifiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insignifiantes\": {\n    \"form\": \"insignifiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insignifiants\": {\n    \"form\": \"insignifiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insolent\": {\n    \"form\": \"insolent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insolente\": {\n    \"form\": \"insolente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insolentes\": {\n    \"form\": \"insolentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insolents\": {\n    \"form\": \"insolents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insolite\": {\n    \"form\": \"insolite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insolites\": {\n    \"form\": \"insolites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insoutenable\": {\n    \"form\": \"insoutenable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"insoutenables\": {\n    \"form\": \"insoutenables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inspiré\": {\n    \"form\": \"inspiré\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inspirée\": {\n    \"form\": \"inspirée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inspirées\": {\n    \"form\": \"inspirées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inspirés\": {\n    \"form\": \"inspirés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instable\": {\n    \"form\": \"instable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instables\": {\n    \"form\": \"instables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"instant\": {\n    \"form\": \"instant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"instante\": {\n    \"form\": \"instante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instantes\": {\n    \"form\": \"instantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instants\": {\n    \"form\": \"instants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instinctif\": {\n    \"form\": \"instinctif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"instinctifs\": {\n    \"form\": \"instinctifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instinctive\": {\n    \"form\": \"instinctive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"instinctives\": {\n    \"form\": \"instinctives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"insupportable\": {\n    \"form\": \"insupportable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"insupportables\": {\n    \"form\": \"insupportables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intact\": {\n    \"form\": \"intact\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intacte\": {\n    \"form\": \"intacte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intactes\": {\n    \"form\": \"intactes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intacts\": {\n    \"form\": \"intacts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intangible\": {\n    \"form\": \"intangible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intangibles\": {\n    \"form\": \"intangibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intellectuel\": {\n    \"form\": \"intellectuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intellectuelle\": {\n    \"form\": \"intellectuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intellectuelles\": {\n    \"form\": \"intellectuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intellectuels\": {\n    \"form\": \"intellectuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligent\": {\n    \"form\": \"intelligent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intelligente\": {\n    \"form\": \"intelligente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligentes\": {\n    \"form\": \"intelligentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligents\": {\n    \"form\": \"intelligents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intelligible\": {\n    \"form\": \"intelligible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intelligibles\": {\n    \"form\": \"intelligibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intense\": {\n    \"form\": \"intense\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intenses\": {\n    \"form\": \"intenses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interdit\": {\n    \"form\": \"interdit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"interdite\": {\n    \"form\": \"interdite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interdites\": {\n    \"form\": \"interdites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interdits\": {\n    \"form\": \"interdits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interessant\": {\n    \"form\": \"interessant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"interminable\": {\n    \"form\": \"interminable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"interminables\": {\n    \"form\": \"interminables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intermédiaire\": {\n    \"form\": \"intermédiaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intermédiaires\": {\n    \"form\": \"intermédiaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"international\": {\n    \"form\": \"international\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"internationale\": {\n    \"form\": \"internationale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"internationales\": {\n    \"form\": \"internationales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"internationaux\": {\n    \"form\": \"internationaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"interne\": {\n    \"form\": \"interne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"internes\": {\n    \"form\": \"internes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"interrogateur\": {\n    \"form\": \"interrogateur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"interrogateurs\": {\n    \"form\": \"interrogateurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intestin\": {\n    \"form\": \"intestin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intestine\": {\n    \"form\": \"intestine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intestines\": {\n    \"form\": \"intestines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intestins\": {\n    \"form\": \"intestins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intime\": {\n    \"form\": \"intime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intimes\": {\n    \"form\": \"intimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intolérable\": {\n    \"form\": \"intolérable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intolérables\": {\n    \"form\": \"intolérables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intégral\": {\n    \"form\": \"intégral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intégrale\": {\n    \"form\": \"intégrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intégrales\": {\n    \"form\": \"intégrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intégraux\": {\n    \"form\": \"intégraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"intéressant\": {\n    \"form\": \"intéressant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intéressante\": {\n    \"form\": \"intéressante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intéressantes\": {\n    \"form\": \"intéressantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intéressants\": {\n    \"form\": \"intéressants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"intérieur\": {\n    \"form\": \"intérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"intérieure\": {\n    \"form\": \"intérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intérieures\": {\n    \"form\": \"intérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"intérieurs\": {\n    \"form\": \"intérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inutile\": {\n    \"form\": \"inutile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"inutiles\": {\n    \"form\": \"inutiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inverse\": {\n    \"form\": \"inverse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inverses\": {\n    \"form\": \"inverses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"invincible\": {\n    \"form\": \"invincible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"invincibles\": {\n    \"form\": \"invincibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inviolable\": {\n    \"form\": \"inviolable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inviolables\": {\n    \"form\": \"inviolables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"invisible\": {\n    \"form\": \"invisible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"invisibles\": {\n    \"form\": \"invisibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"invraisemblable\": {\n    \"form\": \"invraisemblable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"invraisemblables\": {\n    \"form\": \"invraisemblables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inédit\": {\n    \"form\": \"inédit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inédite\": {\n    \"form\": \"inédite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inédites\": {\n    \"form\": \"inédites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inédits\": {\n    \"form\": \"inédits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inépuisable\": {\n    \"form\": \"inépuisable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inépuisables\": {\n    \"form\": \"inépuisables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"inéquitable\": {\n    \"form\": \"inéquitable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"inévitable\": {\n    \"form\": \"inévitable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"inévitables\": {\n    \"form\": \"inévitables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irascible\": {\n    \"form\": \"irascible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irascibles\": {\n    \"form\": \"irascibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ironique\": {\n    \"form\": \"ironique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ironiques\": {\n    \"form\": \"ironiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irrattrapable\": {\n    \"form\": \"irrattrapable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irrattrapables\": {\n    \"form\": \"irrattrapables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irresponsable\": {\n    \"form\": \"irresponsable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irresponsables\": {\n    \"form\": \"irresponsables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"irréel\": {\n    \"form\": \"irréel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"irréelle\": {\n    \"form\": \"irréelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irréelles\": {\n    \"form\": \"irréelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irréels\": {\n    \"form\": \"irréels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"irrésistible\": {\n    \"form\": \"irrésistible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"irrésistibles\": {\n    \"form\": \"irrésistibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"isolé\": {\n    \"form\": \"isolé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"isolée\": {\n    \"form\": \"isolée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"isolées\": {\n    \"form\": \"isolées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"isolés\": {\n    \"form\": \"isolés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"israélite\": {\n    \"form\": \"israélite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"israélites\": {\n    \"form\": \"israélites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"italien\": {\n    \"form\": \"italien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"italienne\": {\n    \"form\": \"italienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"italiennes\": {\n    \"form\": \"italiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"italiens\": {\n    \"form\": \"italiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ivre\": {\n    \"form\": \"ivre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ivres\": {\n    \"form\": \"ivres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jalouse\": {\n    \"form\": \"jalouse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jalouses\": {\n    \"form\": \"jalouses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jaloux\": {\n    \"form\": \"jaloux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"japonais\": {\n    \"form\": \"japonais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"japonaise\": {\n    \"form\": \"japonaise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"japonaises\": {\n    \"form\": \"japonaises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jaune\": {\n    \"form\": \"jaune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jaunes\": {\n    \"form\": \"jaunes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jaunâtre\": {\n    \"form\": \"jaunâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jaunâtres\": {\n    \"form\": \"jaunâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jeune\": {\n    \"form\": \"jeune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jeunes\": {\n    \"form\": \"jeunes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"joint\": {\n    \"form\": \"joint\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jointe\": {\n    \"form\": \"jointe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jointes\": {\n    \"form\": \"jointes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"joints\": {\n    \"form\": \"joints\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"joli\": {\n    \"form\": \"joli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.57\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"jolie\": {\n    \"form\": \"jolie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.57\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jolies\": {\n    \"form\": \"jolies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.57\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"joliment\": {\n    \"form\": \"joliment\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"jolis\": {\n    \"form\": \"jolis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.57\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"jouissif\": {\n    \"form\": \"jouissif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jouissifs\": {\n    \"form\": \"jouissifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jouissive\": {\n    \"form\": \"jouissive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jouissives\": {\n    \"form\": \"jouissives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"journalier\": {\n    \"form\": \"journalier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"journaliers\": {\n    \"form\": \"journaliers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"journalière\": {\n    \"form\": \"journalière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"journalières\": {\n    \"form\": \"journalières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"joyeuse\": {\n    \"form\": \"joyeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"joyeuses\": {\n    \"form\": \"joyeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"joyeux\": {\n    \"form\": \"joyeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"judicieuse\": {\n    \"form\": \"judicieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"judicieuses\": {\n    \"form\": \"judicieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"judicieux\": {\n    \"form\": \"judicieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"juif\": {\n    \"form\": \"juif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"juifs\": {\n    \"form\": \"juifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"juive\": {\n    \"form\": \"juive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"juives\": {\n    \"form\": \"juives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"jumelé\": {\n    \"form\": \"jumelé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jumelée\": {\n    \"form\": \"jumelée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jumelées\": {\n    \"form\": \"jumelées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"jumelés\": {\n    \"form\": \"jumelés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"juste\": {\n    \"form\": \"juste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"justes\": {\n    \"form\": \"justes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"l'horreur\": {\n    \"form\": \"l'horreur\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"laid\": {\n    \"form\": \"laid\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"laide\": {\n    \"form\": \"laide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"laides\": {\n    \"form\": \"laides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"laids\": {\n    \"form\": \"laids\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"laiteuse\": {\n    \"form\": \"laiteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"laiteuses\": {\n    \"form\": \"laiteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"laiteux\": {\n    \"form\": \"laiteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lambin\": {\n    \"form\": \"lambin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lambins\": {\n    \"form\": \"lambins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.21\",\n    \"subjectivity\": \"-0.42\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lamentable\": {\n    \"form\": \"lamentable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lamentables\": {\n    \"form\": \"lamentables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"langoureuse\": {\n    \"form\": \"langoureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"langoureuses\": {\n    \"form\": \"langoureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"langoureux\": {\n    \"form\": \"langoureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lapidaire\": {\n    \"form\": \"lapidaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lapidaires\": {\n    \"form\": \"lapidaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"large\": {\n    \"form\": \"large\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"largement\": {\n    \"form\": \"largement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"larges\": {\n    \"form\": \"larges\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"las\": {\n    \"form\": \"las\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lascif\": {\n    \"form\": \"lascif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lascifs\": {\n    \"form\": \"lascifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lascive\": {\n    \"form\": \"lascive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lascives\": {\n    \"form\": \"lascives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lasse\": {\n    \"form\": \"lasse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lasses\": {\n    \"form\": \"lasses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"latin\": {\n    \"form\": \"latin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"latine\": {\n    \"form\": \"latine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"latines\": {\n    \"form\": \"latines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"latins\": {\n    \"form\": \"latins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lent\": {\n    \"form\": \"lent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lente\": {\n    \"form\": \"lente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lentes\": {\n    \"form\": \"lentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lents\": {\n    \"form\": \"lents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"levé\": {\n    \"form\": \"levé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"levée\": {\n    \"form\": \"levée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"levées\": {\n    \"form\": \"levées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"levés\": {\n    \"form\": \"levés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"libre\": {\n    \"form\": \"libre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"libres\": {\n    \"form\": \"libres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"libéral\": {\n    \"form\": \"libéral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"libérale\": {\n    \"form\": \"libérale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"libérales\": {\n    \"form\": \"libérales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"libéraux\": {\n    \"form\": \"libéraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"libéré\": {\n    \"form\": \"libéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"libérée\": {\n    \"form\": \"libérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"libérées\": {\n    \"form\": \"libérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"libérés\": {\n    \"form\": \"libérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"licencieuse\": {\n    \"form\": \"licencieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"licencieuses\": {\n    \"form\": \"licencieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"licencieux\": {\n    \"form\": \"licencieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lilial\": {\n    \"form\": \"lilial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"liliale\": {\n    \"form\": \"liliale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"limité\": {\n    \"form\": \"limité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"limitée\": {\n    \"form\": \"limitée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"limitées\": {\n    \"form\": \"limitées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"limités\": {\n    \"form\": \"limités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"limpide\": {\n    \"form\": \"limpide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"limpides\": {\n    \"form\": \"limpides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"liquide\": {\n    \"form\": \"liquide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"liquides\": {\n    \"form\": \"liquides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"liquoreux\": {\n    \"form\": \"liquoreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lisible\": {\n    \"form\": \"lisible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lisibles\": {\n    \"form\": \"lisibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"lisse\": {\n    \"form\": \"lisse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lisses\": {\n    \"form\": \"lisses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"littéraire\": {\n    \"form\": \"littéraire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"littéraires\": {\n    \"form\": \"littéraires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"liturgique\": {\n    \"form\": \"liturgique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"liturgiques\": {\n    \"form\": \"liturgiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"livide\": {\n    \"form\": \"livide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"livides\": {\n    \"form\": \"livides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"local\": {\n    \"form\": \"local\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"locale\": {\n    \"form\": \"locale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"locales\": {\n    \"form\": \"locales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"locaux\": {\n    \"form\": \"locaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"logique\": {\n    \"form\": \"logique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"logiques\": {\n    \"form\": \"logiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lointain\": {\n    \"form\": \"lointain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lointaine\": {\n    \"form\": \"lointaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lointaines\": {\n    \"form\": \"lointaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lointains\": {\n    \"form\": \"lointains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"long\": {\n    \"form\": \"long\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"longs\": {\n    \"form\": \"longs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"longue\": {\n    \"form\": \"longue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"longues\": {\n    \"form\": \"longues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"louable\": {\n    \"form\": \"louable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"louables\": {\n    \"form\": \"louables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"louche\": {\n    \"form\": \"louche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"louches\": {\n    \"form\": \"louches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lourd\": {\n    \"form\": \"lourd\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"lourde\": {\n    \"form\": \"lourde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lourdes\": {\n    \"form\": \"lourdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lourds\": {\n    \"form\": \"lourds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"loyal\": {\n    \"form\": \"loyal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"loyale\": {\n    \"form\": \"loyale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"loyales\": {\n    \"form\": \"loyales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"loyaux\": {\n    \"form\": \"loyaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lucide\": {\n    \"form\": \"lucide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lucides\": {\n    \"form\": \"lucides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lugubre\": {\n    \"form\": \"lugubre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lugubres\": {\n    \"form\": \"lugubres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"luisant\": {\n    \"form\": \"luisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"luisante\": {\n    \"form\": \"luisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"luisantes\": {\n    \"form\": \"luisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"luisants\": {\n    \"form\": \"luisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lumineuse\": {\n    \"form\": \"lumineuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lumineuses\": {\n    \"form\": \"lumineuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"lumineux\": {\n    \"form\": \"lumineux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"luxueuse\": {\n    \"form\": \"luxueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"luxueuses\": {\n    \"form\": \"luxueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"luxueux\": {\n    \"form\": \"luxueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lâche\": {\n    \"form\": \"lâche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.34\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"lâches\": {\n    \"form\": \"lâches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.34\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"légendaire\": {\n    \"form\": \"légendaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"légendaires\": {\n    \"form\": \"légendaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"léger\": {\n    \"form\": \"léger\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"légers\": {\n    \"form\": \"légers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"légitime\": {\n    \"form\": \"légitime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"légitimes\": {\n    \"form\": \"légitimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"légère\": {\n    \"form\": \"légère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"légères\": {\n    \"form\": \"légères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"léonin\": {\n    \"form\": \"léonin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"léonine\": {\n    \"form\": \"léonine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"léonins\": {\n    \"form\": \"léonins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maghrébin\": {\n    \"form\": \"maghrébin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maghrébine\": {\n    \"form\": \"maghrébine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maghrébines\": {\n    \"form\": \"maghrébines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"magique\": {\n    \"form\": \"magique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"magiques\": {\n    \"form\": \"magiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"magnifique\": {\n    \"form\": \"magnifique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"magnifiques\": {\n    \"form\": \"magnifiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maigre\": {\n    \"form\": \"maigre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"maigres\": {\n    \"form\": \"maigres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"majestueuse\": {\n    \"form\": \"majestueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"majestueuses\": {\n    \"form\": \"majestueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"majestueux\": {\n    \"form\": \"majestueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mal\": {\n    \"form\": \"mal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malade\": {\n    \"form\": \"malade\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"malades\": {\n    \"form\": \"malades\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"maladroit\": {\n    \"form\": \"maladroit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"maladroite\": {\n    \"form\": \"maladroite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maladroites\": {\n    \"form\": \"maladroites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maladroits\": {\n    \"form\": \"maladroits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"male\": {\n    \"form\": \"male\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malentendant\": {\n    \"form\": \"malentendant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malentendante\": {\n    \"form\": \"malentendante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"males\": {\n    \"form\": \"males\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malfaisant\": {\n    \"form\": \"malfaisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malfaisante\": {\n    \"form\": \"malfaisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malfaisantes\": {\n    \"form\": \"malfaisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malfaisants\": {\n    \"form\": \"malfaisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malgré\": {\n    \"form\": \"malgré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malheureuse\": {\n    \"form\": \"malheureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malheureusement\": {\n    \"form\": \"malheureusement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malheureuses\": {\n    \"form\": \"malheureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malheureux\": {\n    \"form\": \"malheureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"malicieuse\": {\n    \"form\": \"malicieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malicieuses\": {\n    \"form\": \"malicieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malicieux\": {\n    \"form\": \"malicieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maligne\": {\n    \"form\": \"maligne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malignes\": {\n    \"form\": \"malignes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malin\": {\n    \"form\": \"malin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"malins\": {\n    \"form\": \"malins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"malléable\": {\n    \"form\": \"malléable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"malléables\": {\n    \"form\": \"malléables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manifeste\": {\n    \"form\": \"manifeste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manifestes\": {\n    \"form\": \"manifestes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manquant\": {\n    \"form\": \"manquant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manquante\": {\n    \"form\": \"manquante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manquantes\": {\n    \"form\": \"manquantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"manquants\": {\n    \"form\": \"manquants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"marin\": {\n    \"form\": \"marin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"marine\": {\n    \"form\": \"marine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"marines\": {\n    \"form\": \"marines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marins\": {\n    \"form\": \"marins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maritime\": {\n    \"form\": \"maritime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maritimes\": {\n    \"form\": \"maritimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"marié\": {\n    \"form\": \"marié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mariée\": {\n    \"form\": \"mariée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mariées\": {\n    \"form\": \"mariées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mariés\": {\n    \"form\": \"mariés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marrant\": {\n    \"form\": \"marrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"marrante\": {\n    \"form\": \"marrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marrantes\": {\n    \"form\": \"marrantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marrants\": {\n    \"form\": \"marrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"marron\": {\n    \"form\": \"marron\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"martial\": {\n    \"form\": \"martial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"martiale\": {\n    \"form\": \"martiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"martiales\": {\n    \"form\": \"martiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"martiaux\": {\n    \"form\": \"martiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"marxiste\": {\n    \"form\": \"marxiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"marxistes\": {\n    \"form\": \"marxistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"masculin\": {\n    \"form\": \"masculin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"masculine\": {\n    \"form\": \"masculine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"masculines\": {\n    \"form\": \"masculines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"masculins\": {\n    \"form\": \"masculins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"massif\": {\n    \"form\": \"massif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"massifs\": {\n    \"form\": \"massifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"massive\": {\n    \"form\": \"massive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"massives\": {\n    \"form\": \"massives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mastoc\": {\n    \"form\": \"mastoc\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mat\": {\n    \"form\": \"mat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mat'\": {\n    \"form\": \"mat'\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mate\": {\n    \"form\": \"mate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maternel\": {\n    \"form\": \"maternel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"maternelle\": {\n    \"form\": \"maternelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maternelles\": {\n    \"form\": \"maternelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maternels\": {\n    \"form\": \"maternels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mates\": {\n    \"form\": \"mates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"matinal\": {\n    \"form\": \"matinal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"matinale\": {\n    \"form\": \"matinale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"matinales\": {\n    \"form\": \"matinales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"matinaux\": {\n    \"form\": \"matinaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mats\": {\n    \"form\": \"mats\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"matériel\": {\n    \"form\": \"matériel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"matérielle\": {\n    \"form\": \"matérielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"matérielles\": {\n    \"form\": \"matérielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"matériels\": {\n    \"form\": \"matériels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"maudit\": {\n    \"form\": \"maudit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"maudite\": {\n    \"form\": \"maudite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maudites\": {\n    \"form\": \"maudites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"maudits\": {\n    \"form\": \"maudits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mauvais\": {\n    \"form\": \"mauvais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.71\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mauvaise\": {\n    \"form\": \"mauvaise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.71\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mauvaises\": {\n    \"form\": \"mauvaises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.71\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mauve\": {\n    \"form\": \"mauve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mauves\": {\n    \"form\": \"mauves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"meilleur\": {\n    \"form\": \"meilleur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"meilleure\": {\n    \"form\": \"meilleure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meilleures\": {\n    \"form\": \"meilleures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meilleurs\": {\n    \"form\": \"meilleurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"menaçant\": {\n    \"form\": \"menaçant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"menaçante\": {\n    \"form\": \"menaçante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"menaçantes\": {\n    \"form\": \"menaçantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"menaçants\": {\n    \"form\": \"menaçants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mensonger\": {\n    \"form\": \"mensonger\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mensongers\": {\n    \"form\": \"mensongers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mensongère\": {\n    \"form\": \"mensongère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mensongères\": {\n    \"form\": \"mensongères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mental\": {\n    \"form\": \"mental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mentale\": {\n    \"form\": \"mentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mentales\": {\n    \"form\": \"mentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mentaux\": {\n    \"form\": \"mentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"merci\": {\n    \"form\": \"merci\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"merde\": {\n    \"form\": \"merde\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"merveille\": {\n    \"form\": \"merveille\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"merveilleuse\": {\n    \"form\": \"merveilleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"merveilleusement\": {\n    \"form\": \"merveilleusement\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"merveilleuses\": {\n    \"form\": \"merveilleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"merveilleux\": {\n    \"form\": \"merveilleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mesuré\": {\n    \"form\": \"mesuré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mesurée\": {\n    \"form\": \"mesurée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mesurées\": {\n    \"form\": \"mesurées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mesurés\": {\n    \"form\": \"mesurés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"meurtrier\": {\n    \"form\": \"meurtrier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"meurtriers\": {\n    \"form\": \"meurtriers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"meurtrière\": {\n    \"form\": \"meurtrière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"meurtrières\": {\n    \"form\": \"meurtrières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mignon\": {\n    \"form\": \"mignon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mignonne\": {\n    \"form\": \"mignonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mignonnes\": {\n    \"form\": \"mignonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mignons\": {\n    \"form\": \"mignons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"militaire\": {\n    \"form\": \"militaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"militaires\": {\n    \"form\": \"militaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"minable\": {\n    \"form\": \"minable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"minables\": {\n    \"form\": \"minables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mince\": {\n    \"form\": \"mince\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"minces\": {\n    \"form\": \"minces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"minime\": {\n    \"form\": \"minime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"minimes\": {\n    \"form\": \"minimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"minuscule\": {\n    \"form\": \"minuscule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"minuscules\": {\n    \"form\": \"minuscules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"miraculeuse\": {\n    \"form\": \"miraculeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"miraculeuses\": {\n    \"form\": \"miraculeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"miraculeux\": {\n    \"form\": \"miraculeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"misogyne\": {\n    \"form\": \"misogyne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"misogynes\": {\n    \"form\": \"misogynes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"misérable\": {\n    \"form\": \"misérable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"misérables\": {\n    \"form\": \"misérables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mobile\": {\n    \"form\": \"mobile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mobiles\": {\n    \"form\": \"mobiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moche\": {\n    \"form\": \"moche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moches\": {\n    \"form\": \"moches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moderne\": {\n    \"form\": \"moderne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"modernes\": {\n    \"form\": \"modernes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"modeste\": {\n    \"form\": \"modeste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"modestes\": {\n    \"form\": \"modestes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"modèle\": {\n    \"form\": \"modèle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"modèles\": {\n    \"form\": \"modèles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"modéré\": {\n    \"form\": \"modéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modérée\": {\n    \"form\": \"modérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modérées\": {\n    \"form\": \"modérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"modérés\": {\n    \"form\": \"modérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moelleuse\": {\n    \"form\": \"moelleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moelleuses\": {\n    \"form\": \"moelleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moelleux\": {\n    \"form\": \"moelleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"moindre\": {\n    \"form\": \"moindre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"moindres\": {\n    \"form\": \"moindres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moite\": {\n    \"form\": \"moite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moites\": {\n    \"form\": \"moites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"molletonné\": {\n    \"form\": \"molletonné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"molletonnée\": {\n    \"form\": \"molletonnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mondain\": {\n    \"form\": \"mondain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mondaine\": {\n    \"form\": \"mondaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mondaines\": {\n    \"form\": \"mondaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mondains\": {\n    \"form\": \"mondains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mondial\": {\n    \"form\": \"mondial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mondiale\": {\n    \"form\": \"mondiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mondiales\": {\n    \"form\": \"mondiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mondiaux\": {\n    \"form\": \"mondiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monocorde\": {\n    \"form\": \"monocorde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monocordes\": {\n    \"form\": \"monocordes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"monotone\": {\n    \"form\": \"monotone\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"monotones\": {\n    \"form\": \"monotones\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monstrueuse\": {\n    \"form\": \"monstrueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monstrueuses\": {\n    \"form\": \"monstrueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monstrueux\": {\n    \"form\": \"monstrueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"monumental\": {\n    \"form\": \"monumental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"monumentale\": {\n    \"form\": \"monumentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monumentales\": {\n    \"form\": \"monumentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"monumentaux\": {\n    \"form\": \"monumentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moque\": {\n    \"form\": \"moque\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moral\": {\n    \"form\": \"moral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"morale\": {\n    \"form\": \"morale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"morales\": {\n    \"form\": \"morales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moraux\": {\n    \"form\": \"moraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"morne\": {\n    \"form\": \"morne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mornes\": {\n    \"form\": \"mornes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mou\": {\n    \"form\": \"mou\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moucheté\": {\n    \"form\": \"moucheté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mouchetée\": {\n    \"form\": \"mouchetée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mouchetées\": {\n    \"form\": \"mouchetées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mouchetés\": {\n    \"form\": \"mouchetés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mouillé\": {\n    \"form\": \"mouillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mouillée\": {\n    \"form\": \"mouillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouillées\": {\n    \"form\": \"mouillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouillés\": {\n    \"form\": \"mouillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mous\": {\n    \"form\": \"mous\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouvant\": {\n    \"form\": \"mouvant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mouvante\": {\n    \"form\": \"mouvante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouvantes\": {\n    \"form\": \"mouvantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mouvants\": {\n    \"form\": \"mouvants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moyen\": {\n    \"form\": \"moyen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"moyenne\": {\n    \"form\": \"moyenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moyennes\": {\n    \"form\": \"moyennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"moyens\": {\n    \"form\": \"moyens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"muet\": {\n    \"form\": \"muet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"muets\": {\n    \"form\": \"muets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"muette\": {\n    \"form\": \"muette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"muettes\": {\n    \"form\": \"muettes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"multicolore\": {\n    \"form\": \"multicolore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"multicolores\": {\n    \"form\": \"multicolores\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"multiple\": {\n    \"form\": \"multiple\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"multiples\": {\n    \"form\": \"multiples\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"municipal\": {\n    \"form\": \"municipal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"municipale\": {\n    \"form\": \"municipale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"municipales\": {\n    \"form\": \"municipales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"municipaux\": {\n    \"form\": \"municipaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"musclé\": {\n    \"form\": \"musclé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"musclée\": {\n    \"form\": \"musclée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"musclées\": {\n    \"form\": \"musclées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"musclés\": {\n    \"form\": \"musclés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.21\",\n    \"subjectivity\": \"0.41\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"musical\": {\n    \"form\": \"musical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"musicale\": {\n    \"form\": \"musicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"musicales\": {\n    \"form\": \"musicales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"musicaux\": {\n    \"form\": \"musicaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mystique\": {\n    \"form\": \"mystique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mystiques\": {\n    \"form\": \"mystiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mystérieuse\": {\n    \"form\": \"mystérieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mystérieuses\": {\n    \"form\": \"mystérieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mystérieux\": {\n    \"form\": \"mystérieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mécanique\": {\n    \"form\": \"mécanique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mécaniques\": {\n    \"form\": \"mécaniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méchant\": {\n    \"form\": \"méchant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"méchante\": {\n    \"form\": \"méchante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méchantes\": {\n    \"form\": \"méchantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méchants\": {\n    \"form\": \"méchants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mécontent\": {\n    \"form\": \"mécontent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mécontente\": {\n    \"form\": \"mécontente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mécontentes\": {\n    \"form\": \"mécontentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mécontents\": {\n    \"form\": \"mécontents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"médian\": {\n    \"form\": \"médian\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"médiane\": {\n    \"form\": \"médiane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"médianes\": {\n    \"form\": \"médianes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"médians\": {\n    \"form\": \"médians\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"médical\": {\n    \"form\": \"médical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"médicale\": {\n    \"form\": \"médicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"médicales\": {\n    \"form\": \"médicales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"médicaux\": {\n    \"form\": \"médicaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"médiocre\": {\n    \"form\": \"médiocre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"médiocres\": {\n    \"form\": \"médiocres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méfiant\": {\n    \"form\": \"méfiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"méfiante\": {\n    \"form\": \"méfiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méfiantes\": {\n    \"form\": \"méfiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méfiants\": {\n    \"form\": \"méfiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mélancolique\": {\n    \"form\": \"mélancolique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mélancoliques\": {\n    \"form\": \"mélancoliques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mélangé\": {\n    \"form\": \"mélangé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mélangée\": {\n    \"form\": \"mélangée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mélangées\": {\n    \"form\": \"mélangées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"mélangés\": {\n    \"form\": \"mélangés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ménager\": {\n    \"form\": \"ménager\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ménagers\": {\n    \"form\": \"ménagers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ménagère\": {\n    \"form\": \"ménagère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ménagères\": {\n    \"form\": \"ménagères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"méprisant\": {\n    \"form\": \"méprisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"méprisante\": {\n    \"form\": \"méprisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méprisantes\": {\n    \"form\": \"méprisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"méprisants\": {\n    \"form\": \"méprisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"métallique\": {\n    \"form\": \"métallique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"métalliques\": {\n    \"form\": \"métalliques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"métaphysique\": {\n    \"form\": \"métaphysique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"métaphysiques\": {\n    \"form\": \"métaphysiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"métropolitain\": {\n    \"form\": \"métropolitain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"métropolitaine\": {\n    \"form\": \"métropolitaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"métropolitaines\": {\n    \"form\": \"métropolitaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"métropolitains\": {\n    \"form\": \"métropolitains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"même\": {\n    \"form\": \"même\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"mêmes\": {\n    \"form\": \"mêmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mûr\": {\n    \"form\": \"mûr\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"mûre\": {\n    \"form\": \"mûre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mûres\": {\n    \"form\": \"mûres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"mûrs\": {\n    \"form\": \"mûrs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"n'\": {\n    \"form\": \"n'\",\n    \"pos\": \"\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naissant\": {\n    \"form\": \"naissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naissante\": {\n    \"form\": \"naissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naissantes\": {\n    \"form\": \"naissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naissants\": {\n    \"form\": \"naissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"natal\": {\n    \"form\": \"natal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"natale\": {\n    \"form\": \"natale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"natales\": {\n    \"form\": \"natales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"natals\": {\n    \"form\": \"natals\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"national\": {\n    \"form\": \"national\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nationale\": {\n    \"form\": \"nationale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nationales\": {\n    \"form\": \"nationales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nationaux\": {\n    \"form\": \"nationaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nature\": {\n    \"form\": \"nature\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"naturel\": {\n    \"form\": \"naturel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"naturelle\": {\n    \"form\": \"naturelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naturelles\": {\n    \"form\": \"naturelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naturels\": {\n    \"form\": \"naturels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nautique\": {\n    \"form\": \"nautique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nautiques\": {\n    \"form\": \"nautiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nazi\": {\n    \"form\": \"nazi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nazie\": {\n    \"form\": \"nazie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nazies\": {\n    \"form\": \"nazies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nazis\": {\n    \"form\": \"nazis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"naïf\": {\n    \"form\": \"naïf\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"naïfs\": {\n    \"form\": \"naïfs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"naïve\": {\n    \"form\": \"naïve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"naïves\": {\n    \"form\": \"naïves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nerveuse\": {\n    \"form\": \"nerveuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nerveuses\": {\n    \"form\": \"nerveuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nerveux\": {\n    \"form\": \"nerveux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"net\": {\n    \"form\": \"net\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nets\": {\n    \"form\": \"nets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nette\": {\n    \"form\": \"nette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nettes\": {\n    \"form\": \"nettes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"neuf\": {\n    \"form\": \"neuf\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"neufs\": {\n    \"form\": \"neufs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"neutre\": {\n    \"form\": \"neutre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"neutres\": {\n    \"form\": \"neutres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"neuve\": {\n    \"form\": \"neuve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"neuves\": {\n    \"form\": \"neuves\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"noble\": {\n    \"form\": \"noble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nobles\": {\n    \"form\": \"nobles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nocturne\": {\n    \"form\": \"nocturne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nocturnes\": {\n    \"form\": \"nocturnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"noir\": {\n    \"form\": \"noir\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"noire\": {\n    \"form\": \"noire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"noires\": {\n    \"form\": \"noires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"noirs\": {\n    \"form\": \"noirs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nombreuse\": {\n    \"form\": \"nombreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nombreuses\": {\n    \"form\": \"nombreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nombreux\": {\n    \"form\": \"nombreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"non\": {\n    \"form\": \"non\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"non-stop\": {\n    \"form\": \"non-stop\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nonchalant\": {\n    \"form\": \"nonchalant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nonchalante\": {\n    \"form\": \"nonchalante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nonchalantes\": {\n    \"form\": \"nonchalantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nonchalants\": {\n    \"form\": \"nonchalants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nord\": {\n    \"form\": \"nord\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"normal\": {\n    \"form\": \"normal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"normale\": {\n    \"form\": \"normale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"normales\": {\n    \"form\": \"normales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"normaux\": {\n    \"form\": \"normaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nouveau\": {\n    \"form\": \"nouveau\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.34\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nouveaux\": {\n    \"form\": \"nouveaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.34\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nouvel\": {\n    \"form\": \"nouvel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nouvelle\": {\n    \"form\": \"nouvelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nouvelles\": {\n    \"form\": \"nouvelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nu\": {\n    \"form\": \"nu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nuageuse\": {\n    \"form\": \"nuageuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nuageuses\": {\n    \"form\": \"nuageuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nuageux\": {\n    \"form\": \"nuageux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"nue\": {\n    \"form\": \"nue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nues\": {\n    \"form\": \"nues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nul\": {\n    \"form\": \"nul\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nulle\": {\n    \"form\": \"nulle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nulles\": {\n    \"form\": \"nulles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nuls\": {\n    \"form\": \"nuls\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"nus\": {\n    \"form\": \"nus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"nécessaire\": {\n    \"form\": \"nécessaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"nécessaires\": {\n    \"form\": \"nécessaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"négligeable\": {\n    \"form\": \"négligeable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"négligeables\": {\n    \"form\": \"négligeables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"obligatoire\": {\n    \"form\": \"obligatoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obligatoires\": {\n    \"form\": \"obligatoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oblique\": {\n    \"form\": \"oblique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obliques\": {\n    \"form\": \"obliques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"obscur\": {\n    \"form\": \"obscur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.47\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"obscure\": {\n    \"form\": \"obscure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.47\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obscures\": {\n    \"form\": \"obscures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.47\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obscurs\": {\n    \"form\": \"obscurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.47\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obscène\": {\n    \"form\": \"obscène\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"obscènes\": {\n    \"form\": \"obscènes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.90\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occidental\": {\n    \"form\": \"occidental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"occidentale\": {\n    \"form\": \"occidentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occidentales\": {\n    \"form\": \"occidentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occidentaux\": {\n    \"form\": \"occidentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occulte\": {\n    \"form\": \"occulte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"occultes\": {\n    \"form\": \"occultes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"occupé\": {\n    \"form\": \"occupé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"occupée\": {\n    \"form\": \"occupée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occupées\": {\n    \"form\": \"occupées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"occupés\": {\n    \"form\": \"occupés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"odieuse\": {\n    \"form\": \"odieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"odieuses\": {\n    \"form\": \"odieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"odieux\": {\n    \"form\": \"odieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"oecuménique\": {\n    \"form\": \"oecuménique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oecuméniques\": {\n    \"form\": \"oecuméniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"officiel\": {\n    \"form\": \"officiel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"officielle\": {\n    \"form\": \"officielle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"officielles\": {\n    \"form\": \"officielles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"officiels\": {\n    \"form\": \"officiels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oiseuse\": {\n    \"form\": \"oiseuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oiseuses\": {\n    \"form\": \"oiseuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oiseux\": {\n    \"form\": \"oiseux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ombreuse\": {\n    \"form\": \"ombreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.47\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ombreuses\": {\n    \"form\": \"ombreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.47\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ombreux\": {\n    \"form\": \"ombreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.47\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opalescent\": {\n    \"form\": \"opalescent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opalescente\": {\n    \"form\": \"opalescente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opalescentes\": {\n    \"form\": \"opalescentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opaque\": {\n    \"form\": \"opaque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"opaques\": {\n    \"form\": \"opaques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"opposé\": {\n    \"form\": \"opposé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"opposée\": {\n    \"form\": \"opposée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"opposées\": {\n    \"form\": \"opposées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"opposés\": {\n    \"form\": \"opposés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"opulent\": {\n    \"form\": \"opulent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opulente\": {\n    \"form\": \"opulente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opulentes\": {\n    \"form\": \"opulentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opulents\": {\n    \"form\": \"opulents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"opérant\": {\n    \"form\": \"opérant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"orange\": {\n    \"form\": \"orange\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ordinaire\": {\n    \"form\": \"ordinaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ordinaires\": {\n    \"form\": \"ordinaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"organisé\": {\n    \"form\": \"organisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"organisée\": {\n    \"form\": \"organisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"organisées\": {\n    \"form\": \"organisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"organisés\": {\n    \"form\": \"organisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oriental\": {\n    \"form\": \"oriental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"orientale\": {\n    \"form\": \"orientale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"orientales\": {\n    \"form\": \"orientales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"orientaux\": {\n    \"form\": \"orientaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"original\": {\n    \"form\": \"original\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"originale\": {\n    \"form\": \"originale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"originales\": {\n    \"form\": \"originales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"originaux\": {\n    \"form\": \"originaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"orthodoxe\": {\n    \"form\": \"orthodoxe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"orthodoxes\": {\n    \"form\": \"orthodoxes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"orthogonal\": {\n    \"form\": \"orthogonal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"orthogonaux\": {\n    \"form\": \"orthogonaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"oublié\": {\n    \"form\": \"oublié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"oubliée\": {\n    \"form\": \"oubliée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oubliées\": {\n    \"form\": \"oubliées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oubliés\": {\n    \"form\": \"oubliés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"oui\": {\n    \"form\": \"oui\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ouvert\": {\n    \"form\": \"ouvert\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ouverte\": {\n    \"form\": \"ouverte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ouvertes\": {\n    \"form\": \"ouvertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ouverts\": {\n    \"form\": \"ouverts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.31\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ovale\": {\n    \"form\": \"ovale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ovales\": {\n    \"form\": \"ovales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pacifique\": {\n    \"form\": \"pacifique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pacifiques\": {\n    \"form\": \"pacifiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paisible\": {\n    \"form\": \"paisible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"paisibles\": {\n    \"form\": \"paisibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pantouflard\": {\n    \"form\": \"pantouflard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pantouflarde\": {\n    \"form\": \"pantouflarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paradisiaque\": {\n    \"form\": \"paradisiaque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paradisiaques\": {\n    \"form\": \"paradisiaques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parallèle\": {\n    \"form\": \"parallèle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parallèles\": {\n    \"form\": \"parallèles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"paralysé\": {\n    \"form\": \"paralysé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paralysée\": {\n    \"form\": \"paralysée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paralysées\": {\n    \"form\": \"paralysées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paralysés\": {\n    \"form\": \"paralysés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pareil\": {\n    \"form\": \"pareil\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pareille\": {\n    \"form\": \"pareille\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pareilles\": {\n    \"form\": \"pareilles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pareils\": {\n    \"form\": \"pareils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parental\": {\n    \"form\": \"parental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parentale\": {\n    \"form\": \"parentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parentales\": {\n    \"form\": \"parentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parentaux\": {\n    \"form\": \"parentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paresseuse\": {\n    \"form\": \"paresseuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"paresseuses\": {\n    \"form\": \"paresseuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"paresseux\": {\n    \"form\": \"paresseux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfait\": {\n    \"form\": \"parfait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"parfaite\": {\n    \"form\": \"parfaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfaitement\": {\n    \"form\": \"parfaitement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfaites\": {\n    \"form\": \"parfaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfaits\": {\n    \"form\": \"parfaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfumé\": {\n    \"form\": \"parfumé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parfumée\": {\n    \"form\": \"parfumée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parfumées\": {\n    \"form\": \"parfumées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parfumés\": {\n    \"form\": \"parfumés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parigot\": {\n    \"form\": \"parigot\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parigote\": {\n    \"form\": \"parigote\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parigotes\": {\n    \"form\": \"parigotes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parigots\": {\n    \"form\": \"parigots\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parisien\": {\n    \"form\": \"parisien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"parisienne\": {\n    \"form\": \"parisienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parisiennes\": {\n    \"form\": \"parisiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parisiens\": {\n    \"form\": \"parisiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parti\": {\n    \"form\": \"parti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"particulier\": {\n    \"form\": \"particulier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"particuliers\": {\n    \"form\": \"particuliers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"particulière\": {\n    \"form\": \"particulière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"particulièrement\": {\n    \"form\": \"particulièrement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"particulières\": {\n    \"form\": \"particulières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"partis\": {\n    \"form\": \"partis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"parvenu\": {\n    \"form\": \"parvenu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parvenue\": {\n    \"form\": \"parvenue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parvenues\": {\n    \"form\": \"parvenues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"parvenus\": {\n    \"form\": \"parvenus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pascal\": {\n    \"form\": \"pascal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pascale\": {\n    \"form\": \"pascale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pascales\": {\n    \"form\": \"pascales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionnant\": {\n    \"form\": \"passionnant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"passionnante\": {\n    \"form\": \"passionnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionnantes\": {\n    \"form\": \"passionnantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionnants\": {\n    \"form\": \"passionnants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionné\": {\n    \"form\": \"passionné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"passionnée\": {\n    \"form\": \"passionnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionnées\": {\n    \"form\": \"passionnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passionnés\": {\n    \"form\": \"passionnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"passé\": {\n    \"form\": \"passé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"passée\": {\n    \"form\": \"passée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"passées\": {\n    \"form\": \"passées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"passéiste\": {\n    \"form\": \"passéiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"passés\": {\n    \"form\": \"passés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"patent\": {\n    \"form\": \"patent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"patente\": {\n    \"form\": \"patente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"patentes\": {\n    \"form\": \"patentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"patents\": {\n    \"form\": \"patents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"paternel\": {\n    \"form\": \"paternel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"paternelle\": {\n    \"form\": \"paternelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"paternelles\": {\n    \"form\": \"paternelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"paternels\": {\n    \"form\": \"paternels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pathétique\": {\n    \"form\": \"pathétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pathétiques\": {\n    \"form\": \"pathétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"patient\": {\n    \"form\": \"patient\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"patiente\": {\n    \"form\": \"patiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"patientes\": {\n    \"form\": \"patientes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"patients\": {\n    \"form\": \"patients\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pauvre\": {\n    \"form\": \"pauvre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.37\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pauvres\": {\n    \"form\": \"pauvres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.37\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"peinard\": {\n    \"form\": \"peinard\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"peinarde\": {\n    \"form\": \"peinarde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"peinardes\": {\n    \"form\": \"peinardes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"peinards\": {\n    \"form\": \"peinards\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"penché\": {\n    \"form\": \"penché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"penchée\": {\n    \"form\": \"penchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"penchées\": {\n    \"form\": \"penchées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"penchés\": {\n    \"form\": \"penchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pensif\": {\n    \"form\": \"pensif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pensifs\": {\n    \"form\": \"pensifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pensive\": {\n    \"form\": \"pensive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"perceptible\": {\n    \"form\": \"perceptible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perceptibles\": {\n    \"form\": \"perceptibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perdu\": {\n    \"form\": \"perdu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"perdue\": {\n    \"form\": \"perdue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"perdues\": {\n    \"form\": \"perdues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"perdus\": {\n    \"form\": \"perdus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"permanent\": {\n    \"form\": \"permanent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"permanente\": {\n    \"form\": \"permanente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"permanentes\": {\n    \"form\": \"permanentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"permanents\": {\n    \"form\": \"permanents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"permis\": {\n    \"form\": \"permis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perpendiculaire\": {\n    \"form\": \"perpendiculaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perpendiculaires\": {\n    \"form\": \"perpendiculaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"perplexe\": {\n    \"form\": \"perplexe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"perplexes\": {\n    \"form\": \"perplexes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"perpétuel\": {\n    \"form\": \"perpétuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"perpétuelle\": {\n    \"form\": \"perpétuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"perpétuelles\": {\n    \"form\": \"perpétuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"perpétuels\": {\n    \"form\": \"perpétuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"personnel\": {\n    \"form\": \"personnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"personnelle\": {\n    \"form\": \"personnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"personnelles\": {\n    \"form\": \"personnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"personnels\": {\n    \"form\": \"personnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pesant\": {\n    \"form\": \"pesant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pesante\": {\n    \"form\": \"pesante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pesantes\": {\n    \"form\": \"pesantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pesants\": {\n    \"form\": \"pesants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"petiot\": {\n    \"form\": \"petiot\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"petiote\": {\n    \"form\": \"petiote\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"petiots\": {\n    \"form\": \"petiots\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"petit\": {\n    \"form\": \"petit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"petite\": {\n    \"form\": \"petite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"petites\": {\n    \"form\": \"petites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"petits\": {\n    \"form\": \"petits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"peu\": {\n    \"form\": \"peu\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"phosphorescent\": {\n    \"form\": \"phosphorescent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"phosphorescente\": {\n    \"form\": \"phosphorescente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"phosphorescentes\": {\n    \"form\": \"phosphorescentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"phosphorescents\": {\n    \"form\": \"phosphorescents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"physique\": {\n    \"form\": \"physique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"physiques\": {\n    \"form\": \"physiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pieuse\": {\n    \"form\": \"pieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pieuses\": {\n    \"form\": \"pieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pieux\": {\n    \"form\": \"pieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pimenté\": {\n    \"form\": \"pimenté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pimentée\": {\n    \"form\": \"pimentée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pimentées\": {\n    \"form\": \"pimentées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pimentés\": {\n    \"form\": \"pimentés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piquant\": {\n    \"form\": \"piquant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piquante\": {\n    \"form\": \"piquante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piquantes\": {\n    \"form\": \"piquantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piquants\": {\n    \"form\": \"piquants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pirate\": {\n    \"form\": \"pirate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pirates\": {\n    \"form\": \"pirates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pire\": {\n    \"form\": \"pire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pires\": {\n    \"form\": \"pires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"piteuse\": {\n    \"form\": \"piteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piteuses\": {\n    \"form\": \"piteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"piteux\": {\n    \"form\": \"piteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pitoyable\": {\n    \"form\": \"pitoyable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pitoyables\": {\n    \"form\": \"pitoyables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plaisant\": {\n    \"form\": \"plaisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.76\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plaisante\": {\n    \"form\": \"plaisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.76\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plaisantes\": {\n    \"form\": \"plaisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.76\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plaisants\": {\n    \"form\": \"plaisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.76\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"plaisir\": {\n    \"form\": \"plaisir\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plaqué\": {\n    \"form\": \"plaqué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plaquée\": {\n    \"form\": \"plaquée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plaquées\": {\n    \"form\": \"plaquées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plaqués\": {\n    \"form\": \"plaqués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plastique\": {\n    \"form\": \"plastique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plastiques\": {\n    \"form\": \"plastiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plat\": {\n    \"form\": \"plat\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"plate\": {\n    \"form\": \"plate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plates\": {\n    \"form\": \"plates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"platiné\": {\n    \"form\": \"platiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"platinée\": {\n    \"form\": \"platinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"platinées\": {\n    \"form\": \"platinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"platinés\": {\n    \"form\": \"platinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plats\": {\n    \"form\": \"plats\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plein\": {\n    \"form\": \"plein\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleine\": {\n    \"form\": \"pleine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleines\": {\n    \"form\": \"pleines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleins\": {\n    \"form\": \"pleins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.29\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pleurer\": {\n    \"form\": \"pleurer\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"plébéien\": {\n    \"form\": \"plébéien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plébéienne\": {\n    \"form\": \"plébéienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plébéiennes\": {\n    \"form\": \"plébéiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plébéiens\": {\n    \"form\": \"plébéiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"plus\": {\n    \"form\": \"plus\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.3\",\n    \"confidence\": \"0.8\"\n  },\n  \"pointu\": {\n    \"form\": \"pointu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pointue\": {\n    \"form\": \"pointue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pointues\": {\n    \"form\": \"pointues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pointus\": {\n    \"form\": \"pointus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poisseuse\": {\n    \"form\": \"poisseuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"poisseuses\": {\n    \"form\": \"poisseuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"poisseux\": {\n    \"form\": \"poisseux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"poli\": {\n    \"form\": \"poli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"polie\": {\n    \"form\": \"polie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"polies\": {\n    \"form\": \"polies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"polis\": {\n    \"form\": \"polis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"politique\": {\n    \"form\": \"politique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"politiques\": {\n    \"form\": \"politiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"polonais\": {\n    \"form\": \"polonais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"polonaise\": {\n    \"form\": \"polonaise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"polonaises\": {\n    \"form\": \"polonaises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pondéré\": {\n    \"form\": \"pondéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pondérée\": {\n    \"form\": \"pondérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pondérées\": {\n    \"form\": \"pondérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pondérés\": {\n    \"form\": \"pondérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"populacier\": {\n    \"form\": \"populacier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"populacière\": {\n    \"form\": \"populacière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"populacières\": {\n    \"form\": \"populacières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.02\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"populaire\": {\n    \"form\": \"populaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"populaires\": {\n    \"form\": \"populaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"positif\": {\n    \"form\": \"positif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"positifs\": {\n    \"form\": \"positifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"positive\": {\n    \"form\": \"positive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"positives\": {\n    \"form\": \"positives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"possible\": {\n    \"form\": \"possible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"possibles\": {\n    \"form\": \"possibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"possédant\": {\n    \"form\": \"possédant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"possédante\": {\n    \"form\": \"possédante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"postal\": {\n    \"form\": \"postal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"postale\": {\n    \"form\": \"postale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"postales\": {\n    \"form\": \"postales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"postaux\": {\n    \"form\": \"postaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"postérieur\": {\n    \"form\": \"postérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"postérieure\": {\n    \"form\": \"postérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"postérieures\": {\n    \"form\": \"postérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"postérieurs\": {\n    \"form\": \"postérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"posé\": {\n    \"form\": \"posé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"posée\": {\n    \"form\": \"posée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"posées\": {\n    \"form\": \"posées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"posés\": {\n    \"form\": \"posés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poubelle\": {\n    \"form\": \"poubelle\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pourpre\": {\n    \"form\": \"pourpre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pourpres\": {\n    \"form\": \"pourpres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pourri\": {\n    \"form\": \"pourri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pourrie\": {\n    \"form\": \"pourrie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pourries\": {\n    \"form\": \"pourries\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pourris\": {\n    \"form\": \"pourris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poussiéreuse\": {\n    \"form\": \"poussiéreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poussiéreuses\": {\n    \"form\": \"poussiéreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"poussiéreux\": {\n    \"form\": \"poussiéreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"poétique\": {\n    \"form\": \"poétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"poétiques\": {\n    \"form\": \"poétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"praticable\": {\n    \"form\": \"praticable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"praticables\": {\n    \"form\": \"praticables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pratique\": {\n    \"form\": \"pratique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pratiques\": {\n    \"form\": \"pratiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"premier\": {\n    \"form\": \"premier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"premiers\": {\n    \"form\": \"premiers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"première\": {\n    \"form\": \"première\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"premières\": {\n    \"form\": \"premières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pressé\": {\n    \"form\": \"pressé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pressée\": {\n    \"form\": \"pressée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pressées\": {\n    \"form\": \"pressées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pressés\": {\n    \"form\": \"pressés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"primitif\": {\n    \"form\": \"primitif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"primitifs\": {\n    \"form\": \"primitifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"primitive\": {\n    \"form\": \"primitive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"primitives\": {\n    \"form\": \"primitives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"primordial\": {\n    \"form\": \"primordial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"primordiale\": {\n    \"form\": \"primordiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"primordiales\": {\n    \"form\": \"primordiales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"primordiaux\": {\n    \"form\": \"primordiaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.13\",\n    \"subjectivity\": \"0.27\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"principal\": {\n    \"form\": \"principal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"principale\": {\n    \"form\": \"principale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"principales\": {\n    \"form\": \"principales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"principaux\": {\n    \"form\": \"principaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prisonnier\": {\n    \"form\": \"prisonnier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prisonniers\": {\n    \"form\": \"prisonniers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prisonnière\": {\n    \"form\": \"prisonnière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prisonnières\": {\n    \"form\": \"prisonnières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privilégié\": {\n    \"form\": \"privilégié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"privilégiée\": {\n    \"form\": \"privilégiée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privilégiées\": {\n    \"form\": \"privilégiées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privilégiés\": {\n    \"form\": \"privilégiés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privé\": {\n    \"form\": \"privé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"privée\": {\n    \"form\": \"privée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privées\": {\n    \"form\": \"privées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"privés\": {\n    \"form\": \"privés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"probable\": {\n    \"form\": \"probable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"probablement\": {\n    \"form\": \"probablement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"probables\": {\n    \"form\": \"probables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"probant\": {\n    \"form\": \"probant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"probante\": {\n    \"form\": \"probante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"probantes\": {\n    \"form\": \"probantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"probants\": {\n    \"form\": \"probants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prochain\": {\n    \"form\": \"prochain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"prochaine\": {\n    \"form\": \"prochaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prochaines\": {\n    \"form\": \"prochaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prochains\": {\n    \"form\": \"prochains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"proche\": {\n    \"form\": \"proche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"proches\": {\n    \"form\": \"proches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.32\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prodigieuse\": {\n    \"form\": \"prodigieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prodigieuses\": {\n    \"form\": \"prodigieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prodigieux\": {\n    \"form\": \"prodigieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"productif\": {\n    \"form\": \"productif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"productifs\": {\n    \"form\": \"productifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"productive\": {\n    \"form\": \"productive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"productives\": {\n    \"form\": \"productives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"profane\": {\n    \"form\": \"profane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"profanes\": {\n    \"form\": \"profanes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"professionnel\": {\n    \"form\": \"professionnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"professionnelle\": {\n    \"form\": \"professionnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"professionnelles\": {\n    \"form\": \"professionnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"professionnels\": {\n    \"form\": \"professionnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"profond\": {\n    \"form\": \"profond\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"profonde\": {\n    \"form\": \"profonde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"profondes\": {\n    \"form\": \"profondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"profonds\": {\n    \"form\": \"profonds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.26\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"profondément\": {\n    \"form\": \"profondément\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"progressiste\": {\n    \"form\": \"progressiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"progressistes\": {\n    \"form\": \"progressistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prolétarien\": {\n    \"form\": \"prolétarien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prolétarienne\": {\n    \"form\": \"prolétarienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prolétariennes\": {\n    \"form\": \"prolétariennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prolétariens\": {\n    \"form\": \"prolétariens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"propice\": {\n    \"form\": \"propice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"propices\": {\n    \"form\": \"propices\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"propre\": {\n    \"form\": \"propre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"propres\": {\n    \"form\": \"propres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"protestant\": {\n    \"form\": \"protestant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protestante\": {\n    \"form\": \"protestante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protestantes\": {\n    \"form\": \"protestantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"protestants\": {\n    \"form\": \"protestants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"provisoire\": {\n    \"form\": \"provisoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"provisoires\": {\n    \"form\": \"provisoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prudent\": {\n    \"form\": \"prudent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prudente\": {\n    \"form\": \"prudente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prudentes\": {\n    \"form\": \"prudentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prudents\": {\n    \"form\": \"prudents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prussien\": {\n    \"form\": \"prussien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prussienne\": {\n    \"form\": \"prussienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prussiennes\": {\n    \"form\": \"prussiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prussiens\": {\n    \"form\": \"prussiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précaire\": {\n    \"form\": \"précaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précaires\": {\n    \"form\": \"précaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précieuse\": {\n    \"form\": \"précieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"précieuses\": {\n    \"form\": \"précieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"précieux\": {\n    \"form\": \"précieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"précipité\": {\n    \"form\": \"précipité\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précipitée\": {\n    \"form\": \"précipitée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précipitées\": {\n    \"form\": \"précipitées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précipités\": {\n    \"form\": \"précipités\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précis\": {\n    \"form\": \"précis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"précise\": {\n    \"form\": \"précise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"précises\": {\n    \"form\": \"précises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"précoce\": {\n    \"form\": \"précoce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précoces\": {\n    \"form\": \"précoces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précurseur\": {\n    \"form\": \"précurseur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précurseurs\": {\n    \"form\": \"précurseurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"précédent\": {\n    \"form\": \"précédent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"précédente\": {\n    \"form\": \"précédente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"précédentes\": {\n    \"form\": \"précédentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"précédents\": {\n    \"form\": \"précédents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prédominant\": {\n    \"form\": \"prédominant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prédominante\": {\n    \"form\": \"prédominante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préexistant\": {\n    \"form\": \"préexistant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préexistante\": {\n    \"form\": \"préexistante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préexistants\": {\n    \"form\": \"préexistants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préférable\": {\n    \"form\": \"préférable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préférables\": {\n    \"form\": \"préférables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"préféré\": {\n    \"form\": \"préféré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"préférée\": {\n    \"form\": \"préférée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"préférées\": {\n    \"form\": \"préférées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"préférés\": {\n    \"form\": \"préférés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"prépondérant\": {\n    \"form\": \"prépondérant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prépondérante\": {\n    \"form\": \"prépondérante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prépondérants\": {\n    \"form\": \"prépondérants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"présent\": {\n    \"form\": \"présent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"présente\": {\n    \"form\": \"présente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"présentes\": {\n    \"form\": \"présentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"présents\": {\n    \"form\": \"présents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prééminent\": {\n    \"form\": \"prééminent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prééminente\": {\n    \"form\": \"prééminente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"prêt\": {\n    \"form\": \"prêt\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"prête\": {\n    \"form\": \"prête\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prêtes\": {\n    \"form\": \"prêtes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"prêts\": {\n    \"form\": \"prêts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"psychique\": {\n    \"form\": \"psychique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"psychiques\": {\n    \"form\": \"psychiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puant\": {\n    \"form\": \"puant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"puante\": {\n    \"form\": \"puante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"puantes\": {\n    \"form\": \"puantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"puants\": {\n    \"form\": \"puants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"public\": {\n    \"form\": \"public\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"publics\": {\n    \"form\": \"publics\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"publique\": {\n    \"form\": \"publique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"publiques\": {\n    \"form\": \"publiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pubère\": {\n    \"form\": \"pubère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pubères\": {\n    \"form\": \"pubères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.16\",\n    \"subjectivity\": \"0.32\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"puissant\": {\n    \"form\": \"puissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"puissante\": {\n    \"form\": \"puissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"puissantes\": {\n    \"form\": \"puissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"puissants\": {\n    \"form\": \"puissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"punissable\": {\n    \"form\": \"punissable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"punissables\": {\n    \"form\": \"punissables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pur\": {\n    \"form\": \"pur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pure\": {\n    \"form\": \"pure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pures\": {\n    \"form\": \"pures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"purs\": {\n    \"form\": \"purs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"puéril\": {\n    \"form\": \"puéril\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"puérile\": {\n    \"form\": \"puérile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"puériles\": {\n    \"form\": \"puériles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"puérils\": {\n    \"form\": \"puérils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pâle\": {\n    \"form\": \"pâle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"pâles\": {\n    \"form\": \"pâles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pâlichon\": {\n    \"form\": \"pâlichon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pâlichonne\": {\n    \"form\": \"pâlichonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pâlichons\": {\n    \"form\": \"pâlichons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pâteuse\": {\n    \"form\": \"pâteuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pâteuses\": {\n    \"form\": \"pâteuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pâteux\": {\n    \"form\": \"pâteux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pète-sec\": {\n    \"form\": \"pète-sec\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pénible\": {\n    \"form\": \"pénible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"pénibles\": {\n    \"form\": \"pénibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"pépite\": {\n    \"form\": \"pépite\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"péremptoire\": {\n    \"form\": \"péremptoire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"péremptoires\": {\n    \"form\": \"péremptoires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périmé\": {\n    \"form\": \"périmé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périmée\": {\n    \"form\": \"périmée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périmées\": {\n    \"form\": \"périmées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périmés\": {\n    \"form\": \"périmés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périssable\": {\n    \"form\": \"périssable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"périssables\": {\n    \"form\": \"périssables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pétrifié\": {\n    \"form\": \"pétrifié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pétrifiée\": {\n    \"form\": \"pétrifiée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pétrifiées\": {\n    \"form\": \"pétrifiées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"pétrifiés\": {\n    \"form\": \"pétrifiés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.16\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"quadrangulaire\": {\n    \"form\": \"quadrangulaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"quadrangulaires\": {\n    \"form\": \"quadrangulaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"qualité\": {\n    \"form\": \"qualité\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quatrième\": {\n    \"form\": \"quatrième\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quelconque\": {\n    \"form\": \"quelconque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quelconques\": {\n    \"form\": \"quelconques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"quotidien\": {\n    \"form\": \"quotidien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"quotidienne\": {\n    \"form\": \"quotidienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"quotidiennes\": {\n    \"form\": \"quotidiennes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"quotidiens\": {\n    \"form\": \"quotidiens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"raccourci\": {\n    \"form\": \"raccourci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raccourcis\": {\n    \"form\": \"raccourcis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"radical\": {\n    \"form\": \"radical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"radicale\": {\n    \"form\": \"radicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"radicales\": {\n    \"form\": \"radicales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"radicaux\": {\n    \"form\": \"radicaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"radieuse\": {\n    \"form\": \"radieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"radieuses\": {\n    \"form\": \"radieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"radieux\": {\n    \"form\": \"radieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"raffiné\": {\n    \"form\": \"raffiné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raffinée\": {\n    \"form\": \"raffinée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raffinées\": {\n    \"form\": \"raffinées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raffinés\": {\n    \"form\": \"raffinés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"raide\": {\n    \"form\": \"raide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"raides\": {\n    \"form\": \"raides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"raisonnable\": {\n    \"form\": \"raisonnable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"raisonnables\": {\n    \"form\": \"raisonnables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ramollo\": {\n    \"form\": \"ramollo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ramollos\": {\n    \"form\": \"ramollos\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rapide\": {\n    \"form\": \"rapide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rapides\": {\n    \"form\": \"rapides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"raplapla\": {\n    \"form\": \"raplapla\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rare\": {\n    \"form\": \"rare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rarement\": {\n    \"form\": \"rarement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"rares\": {\n    \"form\": \"rares\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rassasié\": {\n    \"form\": \"rassasié\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rassasiée\": {\n    \"form\": \"rassasiée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rassasiées\": {\n    \"form\": \"rassasiées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rassasiés\": {\n    \"form\": \"rassasiés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rassurant\": {\n    \"form\": \"rassurant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rassurante\": {\n    \"form\": \"rassurante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rassurantes\": {\n    \"form\": \"rassurantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rassurants\": {\n    \"form\": \"rassurants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"raté\": {\n    \"form\": \"raté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ratée\": {\n    \"form\": \"ratée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ratées\": {\n    \"form\": \"ratées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ratés\": {\n    \"form\": \"ratés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rauque\": {\n    \"form\": \"rauque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rauques\": {\n    \"form\": \"rauques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ravissant\": {\n    \"form\": \"ravissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ravissante\": {\n    \"form\": \"ravissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ravissantes\": {\n    \"form\": \"ravissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ravissants\": {\n    \"form\": \"ravissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"recherché\": {\n    \"form\": \"recherché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recherchée\": {\n    \"form\": \"recherchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recherchées\": {\n    \"form\": \"recherchées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recherchés\": {\n    \"form\": \"recherchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recommande\": {\n    \"form\": \"recommande\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"recommandé\": {\n    \"form\": \"recommandé\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"recommandée\": {\n    \"form\": \"recommandée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recommandées\": {\n    \"form\": \"recommandées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"recommandés\": {\n    \"form\": \"recommandés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reconnu\": {\n    \"form\": \"reconnu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reconnue\": {\n    \"form\": \"reconnue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reconnues\": {\n    \"form\": \"reconnues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reconnus\": {\n    \"form\": \"reconnus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.14\",\n    \"subjectivity\": \"0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rectangulaire\": {\n    \"form\": \"rectangulaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rectangulaires\": {\n    \"form\": \"rectangulaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rectiligne\": {\n    \"form\": \"rectiligne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rectilignes\": {\n    \"form\": \"rectilignes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reculé\": {\n    \"form\": \"reculé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reculée\": {\n    \"form\": \"reculée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reculées\": {\n    \"form\": \"reculées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"reculés\": {\n    \"form\": \"reculés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redoublé\": {\n    \"form\": \"redoublé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redoublée\": {\n    \"form\": \"redoublée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redoublées\": {\n    \"form\": \"redoublées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redoublés\": {\n    \"form\": \"redoublés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"redoutable\": {\n    \"form\": \"redoutable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"redoutables\": {\n    \"form\": \"redoutables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"refroidi\": {\n    \"form\": \"refroidi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"refroidie\": {\n    \"form\": \"refroidie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"refroidies\": {\n    \"form\": \"refroidies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"refroidis\": {\n    \"form\": \"refroidis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"relatif\": {\n    \"form\": \"relatif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"relatifs\": {\n    \"form\": \"relatifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relative\": {\n    \"form\": \"relative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relatives\": {\n    \"form\": \"relatives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relevé\": {\n    \"form\": \"relevé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"relevée\": {\n    \"form\": \"relevée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relevées\": {\n    \"form\": \"relevées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"relevés\": {\n    \"form\": \"relevés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"religieuse\": {\n    \"form\": \"religieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"religieuses\": {\n    \"form\": \"religieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"religieux\": {\n    \"form\": \"religieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"remarquable\": {\n    \"form\": \"remarquable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"remarquables\": {\n    \"form\": \"remarquables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rempli\": {\n    \"form\": \"rempli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"remplie\": {\n    \"form\": \"remplie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"remplies\": {\n    \"form\": \"remplies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"remplis\": {\n    \"form\": \"remplis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"renversé\": {\n    \"form\": \"renversé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"renversée\": {\n    \"form\": \"renversée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"renversées\": {\n    \"form\": \"renversées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"renversés\": {\n    \"form\": \"renversés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"responsable\": {\n    \"form\": \"responsable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"responsables\": {\n    \"form\": \"responsables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ressemblant\": {\n    \"form\": \"ressemblant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ressemblante\": {\n    \"form\": \"ressemblante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ressemblantes\": {\n    \"form\": \"ressemblantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ressemblants\": {\n    \"form\": \"ressemblants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"riche\": {\n    \"form\": \"riche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"riches\": {\n    \"form\": \"riches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"richesse\": {\n    \"form\": \"richesse\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ridicule\": {\n    \"form\": \"ridicule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ridicules\": {\n    \"form\": \"ridicules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rigide\": {\n    \"form\": \"rigide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rigides\": {\n    \"form\": \"rigides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rigoler\": {\n    \"form\": \"rigoler\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rigolé\": {\n    \"form\": \"rigolé\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rigoureuse\": {\n    \"form\": \"rigoureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rigoureuses\": {\n    \"form\": \"rigoureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rigoureux\": {\n    \"form\": \"rigoureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rire\": {\n    \"form\": \"rire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"robuste\": {\n    \"form\": \"robuste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"robustes\": {\n    \"form\": \"robustes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rocheuse\": {\n    \"form\": \"rocheuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rocheuses\": {\n    \"form\": \"rocheuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rocheux\": {\n    \"form\": \"rocheux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"romain\": {\n    \"form\": \"romain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"romaine\": {\n    \"form\": \"romaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"romaines\": {\n    \"form\": \"romaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"romains\": {\n    \"form\": \"romains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"romanesque\": {\n    \"form\": \"romanesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"romanesques\": {\n    \"form\": \"romanesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"romantique\": {\n    \"form\": \"romantique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"romantiques\": {\n    \"form\": \"romantiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rond\": {\n    \"form\": \"rond\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"ronde\": {\n    \"form\": \"ronde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rondelet\": {\n    \"form\": \"rondelet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rondelette\": {\n    \"form\": \"rondelette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rondelettes\": {\n    \"form\": \"rondelettes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rondes\": {\n    \"form\": \"rondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ronds\": {\n    \"form\": \"ronds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rose\": {\n    \"form\": \"rose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"roses\": {\n    \"form\": \"roses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rosâtre\": {\n    \"form\": \"rosâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rosâtres\": {\n    \"form\": \"rosâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roturier\": {\n    \"form\": \"roturier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roturière\": {\n    \"form\": \"roturière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rouge\": {\n    \"form\": \"rouge\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"rouges\": {\n    \"form\": \"rouges\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"roulant\": {\n    \"form\": \"roulant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"roulante\": {\n    \"form\": \"roulante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"roulantes\": {\n    \"form\": \"roulantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"roulants\": {\n    \"form\": \"roulants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rousse\": {\n    \"form\": \"rousse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rousses\": {\n    \"form\": \"rousses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"roussâtre\": {\n    \"form\": \"roussâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roussâtres\": {\n    \"form\": \"roussâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"roux\": {\n    \"form\": \"roux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"royal\": {\n    \"form\": \"royal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"royale\": {\n    \"form\": \"royale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"royales\": {\n    \"form\": \"royales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"royaux\": {\n    \"form\": \"royaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rude\": {\n    \"form\": \"rude\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rudes\": {\n    \"form\": \"rudes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ruineuse\": {\n    \"form\": \"ruineuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruineuses\": {\n    \"form\": \"ruineuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ruineux\": {\n    \"form\": \"ruineux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"russe\": {\n    \"form\": \"russe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"russes\": {\n    \"form\": \"russes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"rébarbatif\": {\n    \"form\": \"rébarbatif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rébarbatifs\": {\n    \"form\": \"rébarbatifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rébarbative\": {\n    \"form\": \"rébarbative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rébarbatives\": {\n    \"form\": \"rébarbatives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"récent\": {\n    \"form\": \"récent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"récente\": {\n    \"form\": \"récente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"récentes\": {\n    \"form\": \"récentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"récents\": {\n    \"form\": \"récents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réchauffé\": {\n    \"form\": \"réchauffé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réchauffée\": {\n    \"form\": \"réchauffée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réchauffées\": {\n    \"form\": \"réchauffées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réchauffés\": {\n    \"form\": \"réchauffés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réduit\": {\n    \"form\": \"réduit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"réduite\": {\n    \"form\": \"réduite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réduites\": {\n    \"form\": \"réduites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réduits\": {\n    \"form\": \"réduits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réel\": {\n    \"form\": \"réel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"réelle\": {\n    \"form\": \"réelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réelles\": {\n    \"form\": \"réelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réels\": {\n    \"form\": \"réels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"réfléchi\": {\n    \"form\": \"réfléchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réfléchie\": {\n    \"form\": \"réfléchie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réfléchies\": {\n    \"form\": \"réfléchies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réfléchis\": {\n    \"form\": \"réfléchis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"régal\": {\n    \"form\": \"régal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"réglementaire\": {\n    \"form\": \"réglementaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réglementaires\": {\n    \"form\": \"réglementaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"régulier\": {\n    \"form\": \"régulier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"réguliers\": {\n    \"form\": \"réguliers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"régulière\": {\n    \"form\": \"régulière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"régulières\": {\n    \"form\": \"régulières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"républicain\": {\n    \"form\": \"républicain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"républicaine\": {\n    \"form\": \"républicaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"républicaines\": {\n    \"form\": \"républicaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"républicains\": {\n    \"form\": \"républicains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"répugnant\": {\n    \"form\": \"répugnant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"répugnante\": {\n    \"form\": \"répugnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"répugnantes\": {\n    \"form\": \"répugnantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"répugnants\": {\n    \"form\": \"répugnants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"répété\": {\n    \"form\": \"répété\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"répétée\": {\n    \"form\": \"répétée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"répétées\": {\n    \"form\": \"répétées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"répétés\": {\n    \"form\": \"répétés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réservé\": {\n    \"form\": \"réservé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réservée\": {\n    \"form\": \"réservée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réservées\": {\n    \"form\": \"réservées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réservés\": {\n    \"form\": \"réservés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"résistant\": {\n    \"form\": \"résistant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"résistante\": {\n    \"form\": \"résistante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"résistantes\": {\n    \"form\": \"résistantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"résistants\": {\n    \"form\": \"résistants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.11\",\n    \"subjectivity\": \"-0.21\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"résolu\": {\n    \"form\": \"résolu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"résolue\": {\n    \"form\": \"résolue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"résolues\": {\n    \"form\": \"résolues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"résolus\": {\n    \"form\": \"résolus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"rétroactif\": {\n    \"form\": \"rétroactif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"rétroactive\": {\n    \"form\": \"rétroactive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réussi\": {\n    \"form\": \"réussi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réussie\": {\n    \"form\": \"réussie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réussies\": {\n    \"form\": \"réussies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"réussis\": {\n    \"form\": \"réussis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"révolu\": {\n    \"form\": \"révolu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"révolue\": {\n    \"form\": \"révolue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"révolues\": {\n    \"form\": \"révolues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"révolus\": {\n    \"form\": \"révolus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"révolutionnaire\": {\n    \"form\": \"révolutionnaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"révolutionnaires\": {\n    \"form\": \"révolutionnaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sacré\": {\n    \"form\": \"sacré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sacrée\": {\n    \"form\": \"sacrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sacrées\": {\n    \"form\": \"sacrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sacrés\": {\n    \"form\": \"sacrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sage\": {\n    \"form\": \"sage\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sages\": {\n    \"form\": \"sages\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saignant\": {\n    \"form\": \"saignant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saignante\": {\n    \"form\": \"saignante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saignantes\": {\n    \"form\": \"saignantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saignants\": {\n    \"form\": \"saignants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saillant\": {\n    \"form\": \"saillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"saillante\": {\n    \"form\": \"saillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saillantes\": {\n    \"form\": \"saillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saillants\": {\n    \"form\": \"saillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sain\": {\n    \"form\": \"sain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"saine\": {\n    \"form\": \"saine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saines\": {\n    \"form\": \"saines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sains\": {\n    \"form\": \"sains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"salaud\": {\n    \"form\": \"salaud\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"salauds\": {\n    \"form\": \"salauds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sale\": {\n    \"form\": \"sale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sales\": {\n    \"form\": \"sales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"salé\": {\n    \"form\": \"salé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"salée\": {\n    \"form\": \"salée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"salées\": {\n    \"form\": \"salées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"salés\": {\n    \"form\": \"salés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sanglant\": {\n    \"form\": \"sanglant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sanglante\": {\n    \"form\": \"sanglante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sanglantes\": {\n    \"form\": \"sanglantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sanglants\": {\n    \"form\": \"sanglants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sanguinolent\": {\n    \"form\": \"sanguinolent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sanguinolente\": {\n    \"form\": \"sanguinolente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sanguinolentes\": {\n    \"form\": \"sanguinolentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sanguinolents\": {\n    \"form\": \"sanguinolents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saoul\": {\n    \"form\": \"saoul\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"saoule\": {\n    \"form\": \"saoule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saoules\": {\n    \"form\": \"saoules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saouls\": {\n    \"form\": \"saouls\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sarrasin\": {\n    \"form\": \"sarrasin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sarrasine\": {\n    \"form\": \"sarrasine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sarrasines\": {\n    \"form\": \"sarrasines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sarrasins\": {\n    \"form\": \"sarrasins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"satisfaisant\": {\n    \"form\": \"satisfaisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"satisfaisante\": {\n    \"form\": \"satisfaisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfaisantes\": {\n    \"form\": \"satisfaisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfaisants\": {\n    \"form\": \"satisfaisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfait\": {\n    \"form\": \"satisfait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"satisfaite\": {\n    \"form\": \"satisfaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfaites\": {\n    \"form\": \"satisfaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"satisfaits\": {\n    \"form\": \"satisfaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"saumon\": {\n    \"form\": \"saumon\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.04\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saumâtre\": {\n    \"form\": \"saumâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"saumâtres\": {\n    \"form\": \"saumâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sauvage\": {\n    \"form\": \"sauvage\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sauvages\": {\n    \"form\": \"sauvages\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"savant\": {\n    \"form\": \"savant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"savante\": {\n    \"form\": \"savante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"savantes\": {\n    \"form\": \"savantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"savants\": {\n    \"form\": \"savants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"scandaleuse\": {\n    \"form\": \"scandaleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"scandaleuses\": {\n    \"form\": \"scandaleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"scandaleux\": {\n    \"form\": \"scandaleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scolaire\": {\n    \"form\": \"scolaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"scolaires\": {\n    \"form\": \"scolaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"scrupuleuse\": {\n    \"form\": \"scrupuleuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"scrupuleuses\": {\n    \"form\": \"scrupuleuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"scrupuleux\": {\n    \"form\": \"scrupuleux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sculpté\": {\n    \"form\": \"sculpté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sculptée\": {\n    \"form\": \"sculptée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sculptées\": {\n    \"form\": \"sculptées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sculptés\": {\n    \"form\": \"sculptés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sec\": {\n    \"form\": \"sec\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"second\": {\n    \"form\": \"second\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"seconde\": {\n    \"form\": \"seconde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secondes\": {\n    \"form\": \"secondes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"seconds\": {\n    \"form\": \"seconds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secret\": {\n    \"form\": \"secret\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"secrets\": {\n    \"form\": \"secrets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secrète\": {\n    \"form\": \"secrète\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secrètes\": {\n    \"form\": \"secrètes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.08\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"secs\": {\n    \"form\": \"secs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"semblable\": {\n    \"form\": \"semblable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"semblables\": {\n    \"form\": \"semblables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sensible\": {\n    \"form\": \"sensible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sensibles\": {\n    \"form\": \"sensibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sensuel\": {\n    \"form\": \"sensuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sensuelle\": {\n    \"form\": \"sensuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sensuelles\": {\n    \"form\": \"sensuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sensuels\": {\n    \"form\": \"sensuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sentimental\": {\n    \"form\": \"sentimental\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sentimentale\": {\n    \"form\": \"sentimentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sentimentales\": {\n    \"form\": \"sentimentales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sentimentaux\": {\n    \"form\": \"sentimentaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"serein\": {\n    \"form\": \"serein\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sereine\": {\n    \"form\": \"sereine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sereines\": {\n    \"form\": \"sereines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sereins\": {\n    \"form\": \"sereins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"serré\": {\n    \"form\": \"serré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"serrée\": {\n    \"form\": \"serrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"serrées\": {\n    \"form\": \"serrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"serrés\": {\n    \"form\": \"serrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"seul\": {\n    \"form\": \"seul\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"seule\": {\n    \"form\": \"seule\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"seules\": {\n    \"form\": \"seules\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"seuls\": {\n    \"form\": \"seuls\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sexuel\": {\n    \"form\": \"sexuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sexuelle\": {\n    \"form\": \"sexuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sexuelles\": {\n    \"form\": \"sexuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sexuels\": {\n    \"form\": \"sexuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"si\": {\n    \"form\": \"si\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"silencieuse\": {\n    \"form\": \"silencieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"silencieuses\": {\n    \"form\": \"silencieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"silencieux\": {\n    \"form\": \"silencieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"simple\": {\n    \"form\": \"simple\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"simplement\": {\n    \"form\": \"simplement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"simples\": {\n    \"form\": \"simples\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"simpliste\": {\n    \"form\": \"simpliste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"simplistes\": {\n    \"form\": \"simplistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sincère\": {\n    \"form\": \"sincère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sincères\": {\n    \"form\": \"sincères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"singulier\": {\n    \"form\": \"singulier\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"singuliers\": {\n    \"form\": \"singuliers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"singulière\": {\n    \"form\": \"singulière\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"singulières\": {\n    \"form\": \"singulières\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sinistre\": {\n    \"form\": \"sinistre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.65\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sinistres\": {\n    \"form\": \"sinistres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.65\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sirupeuse\": {\n    \"form\": \"sirupeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sirupeuses\": {\n    \"form\": \"sirupeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sirupeux\": {\n    \"form\": \"sirupeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sixième\": {\n    \"form\": \"sixième\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sixièmes\": {\n    \"form\": \"sixièmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"social\": {\n    \"form\": \"social\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sociale\": {\n    \"form\": \"sociale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sociales\": {\n    \"form\": \"sociales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"socialiste\": {\n    \"form\": \"socialiste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"socialistes\": {\n    \"form\": \"socialistes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sociaux\": {\n    \"form\": \"sociaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sociétal\": {\n    \"form\": \"sociétal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sociétale\": {\n    \"form\": \"sociétale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soi-disant\": {\n    \"form\": \"soi-disant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soigneuse\": {\n    \"form\": \"soigneuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soigneuses\": {\n    \"form\": \"soigneuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soigneux\": {\n    \"form\": \"soigneux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"soigné\": {\n    \"form\": \"soigné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soignée\": {\n    \"form\": \"soignée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soignées\": {\n    \"form\": \"soignées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soignés\": {\n    \"form\": \"soignés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soldatesque\": {\n    \"form\": \"soldatesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"-0.13\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"solennel\": {\n    \"form\": \"solennel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"solennelle\": {\n    \"form\": \"solennelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"solennelles\": {\n    \"form\": \"solennelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"solennels\": {\n    \"form\": \"solennels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"solide\": {\n    \"form\": \"solide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"solides\": {\n    \"form\": \"solides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"solitaire\": {\n    \"form\": \"solitaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"solitaires\": {\n    \"form\": \"solitaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sombre\": {\n    \"form\": \"sombre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sombres\": {\n    \"form\": \"sombres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sommaire\": {\n    \"form\": \"sommaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sommaires\": {\n    \"form\": \"sommaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"somptueuse\": {\n    \"form\": \"somptueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"somptueuses\": {\n    \"form\": \"somptueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"somptueux\": {\n    \"form\": \"somptueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sonore\": {\n    \"form\": \"sonore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sonores\": {\n    \"form\": \"sonores\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sordide\": {\n    \"form\": \"sordide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sordides\": {\n    \"form\": \"sordides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soucieuse\": {\n    \"form\": \"soucieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soucieuses\": {\n    \"form\": \"soucieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soucieux\": {\n    \"form\": \"soucieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soudain\": {\n    \"form\": \"soudain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"soudaine\": {\n    \"form\": \"soudaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soudaines\": {\n    \"form\": \"soudaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soudains\": {\n    \"form\": \"soudains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soupir\": {\n    \"form\": \"soupir\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souple\": {\n    \"form\": \"souple\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souples\": {\n    \"form\": \"souples\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sourd\": {\n    \"form\": \"sourd\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sourde\": {\n    \"form\": \"sourde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sourdes\": {\n    \"form\": \"sourdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sourdingue\": {\n    \"form\": \"sourdingue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sourdingues\": {\n    \"form\": \"sourdingues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sourds\": {\n    \"form\": \"sourds\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souriant\": {\n    \"form\": \"souriant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souriante\": {\n    \"form\": \"souriante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souriantes\": {\n    \"form\": \"souriantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souriants\": {\n    \"form\": \"souriants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sourire\": {\n    \"form\": \"sourire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sournois\": {\n    \"form\": \"sournois\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sournoise\": {\n    \"form\": \"sournoise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sournoises\": {\n    \"form\": \"sournoises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souterrain\": {\n    \"form\": \"souterrain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souterraine\": {\n    \"form\": \"souterraine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souterraines\": {\n    \"form\": \"souterraines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souterrains\": {\n    \"form\": \"souterrains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souverain\": {\n    \"form\": \"souverain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"souveraine\": {\n    \"form\": \"souveraine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souveraines\": {\n    \"form\": \"souveraines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"souverains\": {\n    \"form\": \"souverains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soviétique\": {\n    \"form\": \"soviétique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"soviétiques\": {\n    \"form\": \"soviétiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soyeuse\": {\n    \"form\": \"soyeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soyeuses\": {\n    \"form\": \"soyeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"soyeux\": {\n    \"form\": \"soyeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spacieuse\": {\n    \"form\": \"spacieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spacieuses\": {\n    \"form\": \"spacieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spacieux\": {\n    \"form\": \"spacieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spirituel\": {\n    \"form\": \"spirituel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spirituelle\": {\n    \"form\": \"spirituelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spirituelles\": {\n    \"form\": \"spirituelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spirituels\": {\n    \"form\": \"spirituels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"splendide\": {\n    \"form\": \"splendide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"splendides\": {\n    \"form\": \"splendides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spontané\": {\n    \"form\": \"spontané\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spontanée\": {\n    \"form\": \"spontanée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spontanées\": {\n    \"form\": \"spontanées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spontanéité\": {\n    \"form\": \"spontanéité\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spontanés\": {\n    \"form\": \"spontanés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sportif\": {\n    \"form\": \"sportif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sportifs\": {\n    \"form\": \"sportifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sportive\": {\n    \"form\": \"sportive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sportives\": {\n    \"form\": \"sportives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spécial\": {\n    \"form\": \"spécial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"spéciale\": {\n    \"form\": \"spéciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spéciales\": {\n    \"form\": \"spéciales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spéciaux\": {\n    \"form\": \"spéciaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"spécifique\": {\n    \"form\": \"spécifique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"spécifiques\": {\n    \"form\": \"spécifiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stable\": {\n    \"form\": \"stable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stables\": {\n    \"form\": \"stables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"stratégique\": {\n    \"form\": \"stratégique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stratégiques\": {\n    \"form\": \"stratégiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"strict\": {\n    \"form\": \"strict\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stricte\": {\n    \"form\": \"stricte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"strictes\": {\n    \"form\": \"strictes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stricts\": {\n    \"form\": \"stricts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stupide\": {\n    \"form\": \"stupide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stupides\": {\n    \"form\": \"stupides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stupéfait\": {\n    \"form\": \"stupéfait\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stupéfaite\": {\n    \"form\": \"stupéfaite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stupéfaites\": {\n    \"form\": \"stupéfaites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stupéfaits\": {\n    \"form\": \"stupéfaits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"stérile\": {\n    \"form\": \"stérile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"stériles\": {\n    \"form\": \"stériles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subit\": {\n    \"form\": \"subit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"subite\": {\n    \"form\": \"subite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subites\": {\n    \"form\": \"subites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subits\": {\n    \"form\": \"subits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subjectif\": {\n    \"form\": \"subjectif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"subjectifs\": {\n    \"form\": \"subjectifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"subjective\": {\n    \"form\": \"subjective\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"subjectives\": {\n    \"form\": \"subjectives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sublime\": {\n    \"form\": \"sublime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sublimes\": {\n    \"form\": \"sublimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subtil\": {\n    \"form\": \"subtil\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"subtile\": {\n    \"form\": \"subtile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subtiles\": {\n    \"form\": \"subtiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"subtils\": {\n    \"form\": \"subtils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"successif\": {\n    \"form\": \"successif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"successifs\": {\n    \"form\": \"successifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"successive\": {\n    \"form\": \"successive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"successives\": {\n    \"form\": \"successives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suffisant\": {\n    \"form\": \"suffisant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suffisante\": {\n    \"form\": \"suffisante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suffisantes\": {\n    \"form\": \"suffisantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suffisants\": {\n    \"form\": \"suffisants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suisse\": {\n    \"form\": \"suisse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suisses\": {\n    \"form\": \"suisses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suissesse\": {\n    \"form\": \"suissesse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suivant\": {\n    \"form\": \"suivant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"suivante\": {\n    \"form\": \"suivante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suivantes\": {\n    \"form\": \"suivantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suivants\": {\n    \"form\": \"suivants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suiveur\": {\n    \"form\": \"suiveur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"suiveurs\": {\n    \"form\": \"suiveurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"suiveuse\": {\n    \"form\": \"suiveuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"suiveuses\": {\n    \"form\": \"suiveuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"super\": {\n    \"form\": \"super\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"superbe\": {\n    \"form\": \"superbe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"superbes\": {\n    \"form\": \"superbes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"superflu\": {\n    \"form\": \"superflu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"superflue\": {\n    \"form\": \"superflue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"superflues\": {\n    \"form\": \"superflues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"superflus\": {\n    \"form\": \"superflus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"supplémentaire\": {\n    \"form\": \"supplémentaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"supplémentaires\": {\n    \"form\": \"supplémentaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"supranational\": {\n    \"form\": \"supranational\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"supranationales\": {\n    \"form\": \"supranationales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"suprême\": {\n    \"form\": \"suprême\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suprêmes\": {\n    \"form\": \"suprêmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"supérieur\": {\n    \"form\": \"supérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"supérieure\": {\n    \"form\": \"supérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"supérieures\": {\n    \"form\": \"supérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"supérieurs\": {\n    \"form\": \"supérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"surprenant\": {\n    \"form\": \"surprenant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"surprenante\": {\n    \"form\": \"surprenante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"surprenantes\": {\n    \"form\": \"surprenantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"surprenants\": {\n    \"form\": \"surprenants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"surpris\": {\n    \"form\": \"surpris\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"surprise\": {\n    \"form\": \"surprise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"surprises\": {\n    \"form\": \"surprises\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"susceptible\": {\n    \"form\": \"susceptible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"susceptibles\": {\n    \"form\": \"susceptibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspect\": {\n    \"form\": \"suspect\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suspecte\": {\n    \"form\": \"suspecte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspectes\": {\n    \"form\": \"suspectes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspects\": {\n    \"form\": \"suspects\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspendu\": {\n    \"form\": \"suspendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"suspendue\": {\n    \"form\": \"suspendue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspendues\": {\n    \"form\": \"suspendues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"suspendus\": {\n    \"form\": \"suspendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"symbolique\": {\n    \"form\": \"symbolique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"symboliques\": {\n    \"form\": \"symboliques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sympa\": {\n    \"form\": \"sympa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sympas\": {\n    \"form\": \"sympas\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sympathique\": {\n    \"form\": \"sympathique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sympathiques\": {\n    \"form\": \"sympathiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sèche\": {\n    \"form\": \"sèche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sèches\": {\n    \"form\": \"sèches\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sémite\": {\n    \"form\": \"sémite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sémites\": {\n    \"form\": \"sémites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sémitique\": {\n    \"form\": \"sémitique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sémitiques\": {\n    \"form\": \"sémitiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"séparé\": {\n    \"form\": \"séparé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"séparée\": {\n    \"form\": \"séparée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"séparées\": {\n    \"form\": \"séparées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"séparés\": {\n    \"form\": \"séparés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.08\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"sérieuse\": {\n    \"form\": \"sérieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sérieuses\": {\n    \"form\": \"sérieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sérieux\": {\n    \"form\": \"sérieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sévère\": {\n    \"form\": \"sévère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sévères\": {\n    \"form\": \"sévères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"sûr\": {\n    \"form\": \"sûr\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"sûre\": {\n    \"form\": \"sûre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sûres\": {\n    \"form\": \"sûres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"sûrs\": {\n    \"form\": \"sûrs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"taciturne\": {\n    \"form\": \"taciturne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taciturnes\": {\n    \"form\": \"taciturnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taillé\": {\n    \"form\": \"taillé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taillée\": {\n    \"form\": \"taillée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taillées\": {\n    \"form\": \"taillées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"taillés\": {\n    \"form\": \"taillés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"talent\": {\n    \"form\": \"talent\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"taraudant\": {\n    \"form\": \"taraudant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tardif\": {\n    \"form\": \"tardif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tardifs\": {\n    \"form\": \"tardifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tardive\": {\n    \"form\": \"tardive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tardives\": {\n    \"form\": \"tardives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"technicien\": {\n    \"form\": \"technicien\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"technicienne\": {\n    \"form\": \"technicienne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"techniciens\": {\n    \"form\": \"techniciens\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tellement\": {\n    \"form\": \"tellement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"tenace\": {\n    \"form\": \"tenace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tenaces\": {\n    \"form\": \"tenaces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tendre\": {\n    \"form\": \"tendre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tendres\": {\n    \"form\": \"tendres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tendu\": {\n    \"form\": \"tendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tendue\": {\n    \"form\": \"tendue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tendues\": {\n    \"form\": \"tendues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tendus\": {\n    \"form\": \"tendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.45\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tenu\": {\n    \"form\": \"tenu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tenue\": {\n    \"form\": \"tenue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tenues\": {\n    \"form\": \"tenues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tenus\": {\n    \"form\": \"tenus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terminal\": {\n    \"form\": \"terminal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terminale\": {\n    \"form\": \"terminale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terminales\": {\n    \"form\": \"terminales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terminaux\": {\n    \"form\": \"terminaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.14\",\n    \"subjectivity\": \"-0.29\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"terne\": {\n    \"form\": \"terne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ternes\": {\n    \"form\": \"ternes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terrestre\": {\n    \"form\": \"terrestre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terrestres\": {\n    \"form\": \"terrestres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terrible\": {\n    \"form\": \"terrible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"terriblement\": {\n    \"form\": \"terriblement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terribles\": {\n    \"form\": \"terribles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terrifiant\": {\n    \"form\": \"terrifiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"terrifiante\": {\n    \"form\": \"terrifiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terrifiantes\": {\n    \"form\": \"terrifiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"terrifiants\": {\n    \"form\": \"terrifiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"territorial\": {\n    \"form\": \"territorial\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"territoriale\": {\n    \"form\": \"territoriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"territoriales\": {\n    \"form\": \"territoriales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"territoriaux\": {\n    \"form\": \"territoriaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teuton\": {\n    \"form\": \"teuton\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teutonne\": {\n    \"form\": \"teutonne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teutonnes\": {\n    \"form\": \"teutonnes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"teutons\": {\n    \"form\": \"teutons\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"théologique\": {\n    \"form\": \"théologique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"théologiques\": {\n    \"form\": \"théologiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"théâtral\": {\n    \"form\": \"théâtral\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"théâtrale\": {\n    \"form\": \"théâtrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"théâtrales\": {\n    \"form\": \"théâtrales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"théâtraux\": {\n    \"form\": \"théâtraux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"timide\": {\n    \"form\": \"timide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"timides\": {\n    \"form\": \"timides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tiède\": {\n    \"form\": \"tiède\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tièdes\": {\n    \"form\": \"tièdes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tombé\": {\n    \"form\": \"tombé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tombée\": {\n    \"form\": \"tombée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tombées\": {\n    \"form\": \"tombées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tombés\": {\n    \"form\": \"tombés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tordu\": {\n    \"form\": \"tordu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tordue\": {\n    \"form\": \"tordue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tordues\": {\n    \"form\": \"tordues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tordus\": {\n    \"form\": \"tordus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"total\": {\n    \"form\": \"total\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"totale\": {\n    \"form\": \"totale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"totalement\": {\n    \"form\": \"totalement\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"totales\": {\n    \"form\": \"totales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"totaux\": {\n    \"form\": \"totaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"touchant\": {\n    \"form\": \"touchant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"touchante\": {\n    \"form\": \"touchante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"touchantes\": {\n    \"form\": \"touchantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"touchants\": {\n    \"form\": \"touchants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tous\": {\n    \"form\": \"tous\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tout\": {\n    \"form\": \"tout\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"toute\": {\n    \"form\": \"toute\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"toutes\": {\n    \"form\": \"toutes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"traditionnel\": {\n    \"form\": \"traditionnel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"traditionnelle\": {\n    \"form\": \"traditionnelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"traditionnelles\": {\n    \"form\": \"traditionnelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"traditionnels\": {\n    \"form\": \"traditionnels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tragique\": {\n    \"form\": \"tragique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tragiques\": {\n    \"form\": \"tragiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tranquille\": {\n    \"form\": \"tranquille\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tranquilles\": {\n    \"form\": \"tranquilles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"transalpin\": {\n    \"form\": \"transalpin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transalpines\": {\n    \"form\": \"transalpines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transcendant\": {\n    \"form\": \"transcendant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transcendante\": {\n    \"form\": \"transcendante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transcendantes\": {\n    \"form\": \"transcendantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transcendants\": {\n    \"form\": \"transcendants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"transparent\": {\n    \"form\": \"transparent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"transparente\": {\n    \"form\": \"transparente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"transparentes\": {\n    \"form\": \"transparentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"transparents\": {\n    \"form\": \"transparents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tremblant\": {\n    \"form\": \"tremblant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tremblante\": {\n    \"form\": \"tremblante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tremblantes\": {\n    \"form\": \"tremblantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tremblants\": {\n    \"form\": \"tremblants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tremblotant\": {\n    \"form\": \"tremblotant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tremblotante\": {\n    \"form\": \"tremblotante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tremblotantes\": {\n    \"form\": \"tremblotantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tremblotants\": {\n    \"form\": \"tremblotants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"trempé\": {\n    \"form\": \"trempé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trempée\": {\n    \"form\": \"trempée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trempées\": {\n    \"form\": \"trempées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trempés\": {\n    \"form\": \"trempés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"tres\": {\n    \"form\": \"tres\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tricolore\": {\n    \"form\": \"tricolore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tricolores\": {\n    \"form\": \"tricolores\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"triomphal\": {\n    \"form\": \"triomphal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"triomphale\": {\n    \"form\": \"triomphale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triomphales\": {\n    \"form\": \"triomphales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triomphant\": {\n    \"form\": \"triomphant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"triomphante\": {\n    \"form\": \"triomphante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triomphantes\": {\n    \"form\": \"triomphantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triomphants\": {\n    \"form\": \"triomphants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.90\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triomphaux\": {\n    \"form\": \"triomphaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"triste\": {\n    \"form\": \"triste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"tristes\": {\n    \"form\": \"tristes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"troisième\": {\n    \"form\": \"troisième\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"troisièmes\": {\n    \"form\": \"troisièmes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trompeur\": {\n    \"form\": \"trompeur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"trompeurs\": {\n    \"form\": \"trompeurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trompeuse\": {\n    \"form\": \"trompeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trompeuses\": {\n    \"form\": \"trompeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trop\": {\n    \"form\": \"trop\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"0.5\",\n    \"confidence\": \"0.9\"\n  },\n  \"troublant\": {\n    \"form\": \"troublant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"troublante\": {\n    \"form\": \"troublante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"troublantes\": {\n    \"form\": \"troublantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"troublants\": {\n    \"form\": \"troublants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"trouble\": {\n    \"form\": \"trouble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"troubles\": {\n    \"form\": \"troubles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"troublé\": {\n    \"form\": \"troublé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"troublée\": {\n    \"form\": \"troublée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"troublées\": {\n    \"form\": \"troublées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"troublés\": {\n    \"form\": \"troublés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"très\": {\n    \"form\": \"très\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.65\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"tudesque\": {\n    \"form\": \"tudesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"tudesques\": {\n    \"form\": \"tudesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"turc\": {\n    \"form\": \"turc\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"turcs\": {\n    \"form\": \"turcs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"turque\": {\n    \"form\": \"turque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"turques\": {\n    \"form\": \"turques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"téléphonique\": {\n    \"form\": \"téléphonique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"téléphoniques\": {\n    \"form\": \"téléphoniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ténébreuse\": {\n    \"form\": \"ténébreuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.33\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ténébreuses\": {\n    \"form\": \"ténébreuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.33\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ténébreux\": {\n    \"form\": \"ténébreux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.16\",\n    \"subjectivity\": \"-0.33\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"térébrant\": {\n    \"form\": \"térébrant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"térébrants\": {\n    \"form\": \"térébrants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"-0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultime\": {\n    \"form\": \"ultime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"ultimes\": {\n    \"form\": \"ultimes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ultramontain\": {\n    \"form\": \"ultramontain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultramontains\": {\n    \"form\": \"ultramontains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultérieur\": {\n    \"form\": \"ultérieur\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultérieure\": {\n    \"form\": \"ultérieure\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultérieures\": {\n    \"form\": \"ultérieures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ultérieurs\": {\n    \"form\": \"ultérieurs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"uni\": {\n    \"form\": \"uni\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unie\": {\n    \"form\": \"unie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unies\": {\n    \"form\": \"unies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"unique\": {\n    \"form\": \"unique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"uniques\": {\n    \"form\": \"uniques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"unis\": {\n    \"form\": \"unis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"universel\": {\n    \"form\": \"universel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"universelle\": {\n    \"form\": \"universelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"universelles\": {\n    \"form\": \"universelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"universels\": {\n    \"form\": \"universels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"urgent\": {\n    \"form\": \"urgent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"urgente\": {\n    \"form\": \"urgente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"urgentes\": {\n    \"form\": \"urgentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"urgents\": {\n    \"form\": \"urgents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"utile\": {\n    \"form\": \"utile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"utiles\": {\n    \"form\": \"utiles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vacillant\": {\n    \"form\": \"vacillant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vacillante\": {\n    \"form\": \"vacillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vacillantes\": {\n    \"form\": \"vacillantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vacillants\": {\n    \"form\": \"vacillants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vague\": {\n    \"form\": \"vague\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vagues\": {\n    \"form\": \"vagues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vain\": {\n    \"form\": \"vain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vaine\": {\n    \"form\": \"vaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vaines\": {\n    \"form\": \"vaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vains\": {\n    \"form\": \"vains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"valable\": {\n    \"form\": \"valable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"valables\": {\n    \"form\": \"valables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"valétudinaire\": {\n    \"form\": \"valétudinaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"-0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vaporeuse\": {\n    \"form\": \"vaporeuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vaporeuses\": {\n    \"form\": \"vaporeuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vaporeux\": {\n    \"form\": \"vaporeux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vaste\": {\n    \"form\": \"vaste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vastes\": {\n    \"form\": \"vastes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"verdâtre\": {\n    \"form\": \"verdâtre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"verdâtres\": {\n    \"form\": \"verdâtres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vert\": {\n    \"form\": \"vert\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"verte\": {\n    \"form\": \"verte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vertes\": {\n    \"form\": \"vertes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vertical\": {\n    \"form\": \"vertical\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"verticale\": {\n    \"form\": \"verticale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verticales\": {\n    \"form\": \"verticales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"verticaux\": {\n    \"form\": \"verticaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vertigineuse\": {\n    \"form\": \"vertigineuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vertigineuses\": {\n    \"form\": \"vertigineuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vertigineux\": {\n    \"form\": \"vertigineux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"verts\": {\n    \"form\": \"verts\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vertueuse\": {\n    \"form\": \"vertueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vertueuses\": {\n    \"form\": \"vertueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vertueux\": {\n    \"form\": \"vertueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"victorieuse\": {\n    \"form\": \"victorieuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"victorieuses\": {\n    \"form\": \"victorieuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"victorieux\": {\n    \"form\": \"victorieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vide\": {\n    \"form\": \"vide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vides\": {\n    \"form\": \"vides\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.29\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vieil\": {\n    \"form\": \"vieil\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vieille\": {\n    \"form\": \"vieille\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vieilles\": {\n    \"form\": \"vieilles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vierge\": {\n    \"form\": \"vierge\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vierges\": {\n    \"form\": \"vierges\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vieux\": {\n    \"form\": \"vieux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vif\": {\n    \"form\": \"vif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vifs\": {\n    \"form\": \"vifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vigilant\": {\n    \"form\": \"vigilant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vigilante\": {\n    \"form\": \"vigilante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vigilantes\": {\n    \"form\": \"vigilantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vigilants\": {\n    \"form\": \"vigilants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vigoureuse\": {\n    \"form\": \"vigoureuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vigoureuses\": {\n    \"form\": \"vigoureuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vigoureux\": {\n    \"form\": \"vigoureux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vilain\": {\n    \"form\": \"vilain\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vilaine\": {\n    \"form\": \"vilaine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vilaines\": {\n    \"form\": \"vilaines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vilains\": {\n    \"form\": \"vilains\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"violent\": {\n    \"form\": \"violent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"violente\": {\n    \"form\": \"violente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"violentes\": {\n    \"form\": \"violentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"violents\": {\n    \"form\": \"violents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"violet\": {\n    \"form\": \"violet\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"violets\": {\n    \"form\": \"violets\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"violette\": {\n    \"form\": \"violette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"violettes\": {\n    \"form\": \"violettes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"viril\": {\n    \"form\": \"viril\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"virile\": {\n    \"form\": \"virile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"viriles\": {\n    \"form\": \"viriles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"virils\": {\n    \"form\": \"virils\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"visible\": {\n    \"form\": \"visible\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"visibles\": {\n    \"form\": \"visibles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"visqueuse\": {\n    \"form\": \"visqueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"visqueuses\": {\n    \"form\": \"visqueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"visqueux\": {\n    \"form\": \"visqueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vital\": {\n    \"form\": \"vital\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vitale\": {\n    \"form\": \"vitale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vitales\": {\n    \"form\": \"vitales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vitaux\": {\n    \"form\": \"vitaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vitré\": {\n    \"form\": \"vitré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vitrée\": {\n    \"form\": \"vitrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vitrées\": {\n    \"form\": \"vitrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vitrés\": {\n    \"form\": \"vitrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vivace\": {\n    \"form\": \"vivace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vivaces\": {\n    \"form\": \"vivaces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"vivant\": {\n    \"form\": \"vivant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vivante\": {\n    \"form\": \"vivante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vivantes\": {\n    \"form\": \"vivantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vivants\": {\n    \"form\": \"vivants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.80\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vive\": {\n    \"form\": \"vive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vives\": {\n    \"form\": \"vives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.27\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voisin\": {\n    \"form\": \"voisin\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"voisine\": {\n    \"form\": \"voisine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voisines\": {\n    \"form\": \"voisines\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voisins\": {\n    \"form\": \"voisins\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"volant\": {\n    \"form\": \"volant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"volante\": {\n    \"form\": \"volante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"volantes\": {\n    \"form\": \"volantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"volants\": {\n    \"form\": \"volants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"volontaire\": {\n    \"form\": \"volontaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"volontaires\": {\n    \"form\": \"volontaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"volonté\": {\n    \"form\": \"volonté\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voluptueuse\": {\n    \"form\": \"voluptueuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"voluptueuses\": {\n    \"form\": \"voluptueuses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"voluptueux\": {\n    \"form\": \"voluptueux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vomir\": {\n    \"form\": \"vomir\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voûté\": {\n    \"form\": \"voûté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"voûtée\": {\n    \"form\": \"voûtée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"voûtées\": {\n    \"form\": \"voûtées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"voûtés\": {\n    \"form\": \"voûtés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vrai\": {\n    \"form\": \"vrai\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"vraie\": {\n    \"form\": \"vraie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vraies\": {\n    \"form\": \"vraies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vraiment\": {\n    \"form\": \"vraiment\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vrais\": {\n    \"form\": \"vrais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vulgaire\": {\n    \"form\": \"vulgaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vulgaires\": {\n    \"form\": \"vulgaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.85\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vulnérable\": {\n    \"form\": \"vulnérable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vulnérables\": {\n    \"form\": \"vulnérables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"véloce\": {\n    \"form\": \"véloce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"véloces\": {\n    \"form\": \"véloces\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"véritable\": {\n    \"form\": \"véritable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"véritables\": {\n    \"form\": \"véritables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.45\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vêtu\": {\n    \"form\": \"vêtu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"vêtue\": {\n    \"form\": \"vêtue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vêtues\": {\n    \"form\": \"vêtues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"vêtus\": {\n    \"form\": \"vêtus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"waouh\": {\n    \"form\": \"waouh\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"âcre\": {\n    \"form\": \"âcre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"âcres\": {\n    \"form\": \"âcres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"âpre\": {\n    \"form\": \"âpre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"âpres\": {\n    \"form\": \"âpres\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éblouissant\": {\n    \"form\": \"éblouissant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éblouissante\": {\n    \"form\": \"éblouissante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éblouissantes\": {\n    \"form\": \"éblouissantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éblouissants\": {\n    \"form\": \"éblouissants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ébouriffant\": {\n    \"form\": \"ébouriffant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ébouriffante\": {\n    \"form\": \"ébouriffante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.45\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écarlate\": {\n    \"form\": \"écarlate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écarlates\": {\n    \"form\": \"écarlates\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.01\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écarté\": {\n    \"form\": \"écarté\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"écartée\": {\n    \"form\": \"écartée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écartées\": {\n    \"form\": \"écartées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écartés\": {\n    \"form\": \"écartés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclairé\": {\n    \"form\": \"éclairé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éclairée\": {\n    \"form\": \"éclairée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclairées\": {\n    \"form\": \"éclairées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclairés\": {\n    \"form\": \"éclairés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.60\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclatant\": {\n    \"form\": \"éclatant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éclatante\": {\n    \"form\": \"éclatante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclatantes\": {\n    \"form\": \"éclatantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éclatants\": {\n    \"form\": \"éclatants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écoeurant\": {\n    \"form\": \"écoeurant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écoeurante\": {\n    \"form\": \"écoeurante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écoeurantes\": {\n    \"form\": \"écoeurantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"écoeurants\": {\n    \"form\": \"écoeurants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"économique\": {\n    \"form\": \"économique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"économiques\": {\n    \"form\": \"économiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écrasé\": {\n    \"form\": \"écrasé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"écrasée\": {\n    \"form\": \"écrasée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écrasées\": {\n    \"form\": \"écrasées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"écrasés\": {\n    \"form\": \"écrasés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"édifiant\": {\n    \"form\": \"édifiant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"édifiante\": {\n    \"form\": \"édifiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"édifiantes\": {\n    \"form\": \"édifiantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"édifiants\": {\n    \"form\": \"édifiants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"égal\": {\n    \"form\": \"égal\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"égale\": {\n    \"form\": \"égale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"également\": {\n    \"form\": \"également\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"égales\": {\n    \"form\": \"égales\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"égaré\": {\n    \"form\": \"égaré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"égarée\": {\n    \"form\": \"égarée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"égarées\": {\n    \"form\": \"égarées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"égarés\": {\n    \"form\": \"égarés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"égaux\": {\n    \"form\": \"égaux\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"égoïste\": {\n    \"form\": \"égoïste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"égoïstes\": {\n    \"form\": \"égoïstes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"élancé\": {\n    \"form\": \"élancé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élancée\": {\n    \"form\": \"élancée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élancées\": {\n    \"form\": \"élancées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élancés\": {\n    \"form\": \"élancés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élastique\": {\n    \"form\": \"élastique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élastiques\": {\n    \"form\": \"élastiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"électrique\": {\n    \"form\": \"électrique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"électriques\": {\n    \"form\": \"électriques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éloigné\": {\n    \"form\": \"éloigné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éloignée\": {\n    \"form\": \"éloignée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éloignées\": {\n    \"form\": \"éloignées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éloignés\": {\n    \"form\": \"éloignés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"élégant\": {\n    \"form\": \"élégant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"élégante\": {\n    \"form\": \"élégante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"élégantes\": {\n    \"form\": \"élégantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"élégants\": {\n    \"form\": \"élégants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"élémentaire\": {\n    \"form\": \"élémentaire\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"élémentaires\": {\n    \"form\": \"élémentaires\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éléphantesque\": {\n    \"form\": \"éléphantesque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éléphantesques\": {\n    \"form\": \"éléphantesques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émeraude\": {\n    \"form\": \"émeraude\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éminent\": {\n    \"form\": \"éminent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éminente\": {\n    \"form\": \"éminente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éminentes\": {\n    \"form\": \"éminentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éminents\": {\n    \"form\": \"éminents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.15\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émotion\": {\n    \"form\": \"émotion\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"émotions\": {\n    \"form\": \"émotions\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"émoussé\": {\n    \"form\": \"émoussé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émoussée\": {\n    \"form\": \"émoussée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émoussées\": {\n    \"form\": \"émoussées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émoussés\": {\n    \"form\": \"émoussés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.30\",\n    \"subjectivity\": \"-0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"émouvant\": {\n    \"form\": \"émouvant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"émouvante\": {\n    \"form\": \"émouvante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"émouvantes\": {\n    \"form\": \"émouvantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"émouvants\": {\n    \"form\": \"émouvants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ému\": {\n    \"form\": \"ému\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"émue\": {\n    \"form\": \"émue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"émues\": {\n    \"form\": \"émues\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"émus\": {\n    \"form\": \"émus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éméché\": {\n    \"form\": \"éméché\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éméchée\": {\n    \"form\": \"éméchée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éméchées\": {\n    \"form\": \"éméchées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éméchés\": {\n    \"form\": \"éméchés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"-0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"énigmatique\": {\n    \"form\": \"énigmatique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"énigmatiques\": {\n    \"form\": \"énigmatiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.90\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"énorme\": {\n    \"form\": \"énorme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"énormes\": {\n    \"form\": \"énormes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"épais\": {\n    \"form\": \"épais\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"épaisse\": {\n    \"form\": \"épaisse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"épaisses\": {\n    \"form\": \"épaisses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.06\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"épanoui\": {\n    \"form\": \"épanoui\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épanouie\": {\n    \"form\": \"épanouie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épanouies\": {\n    \"form\": \"épanouies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épanouis\": {\n    \"form\": \"épanouis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épars\": {\n    \"form\": \"épars\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éparse\": {\n    \"form\": \"éparse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éparses\": {\n    \"form\": \"éparses\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"épatant\": {\n    \"form\": \"épatant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épatante\": {\n    \"form\": \"épatante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épatantes\": {\n    \"form\": \"épatantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épatants\": {\n    \"form\": \"épatants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.43\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éphémère\": {\n    \"form\": \"éphémère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éphémères\": {\n    \"form\": \"éphémères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"épouvantable\": {\n    \"form\": \"épouvantable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"épouvantables\": {\n    \"form\": \"épouvantables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.70\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éprouvé\": {\n    \"form\": \"éprouvé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éprouvée\": {\n    \"form\": \"éprouvée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éprouvées\": {\n    \"form\": \"éprouvées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éprouvés\": {\n    \"form\": \"éprouvés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"épuisé\": {\n    \"form\": \"épuisé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"épuisée\": {\n    \"form\": \"épuisée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"épuisées\": {\n    \"form\": \"épuisées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"épuisés\": {\n    \"form\": \"épuisés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.60\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"équilibré\": {\n    \"form\": \"équilibré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équilibrée\": {\n    \"form\": \"équilibrée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équilibrées\": {\n    \"form\": \"équilibrées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équilibrés\": {\n    \"form\": \"équilibrés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.15\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équipé\": {\n    \"form\": \"équipé\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équipés\": {\n    \"form\": \"équipés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.10\",\n    \"subjectivity\": \"-0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équitable\": {\n    \"form\": \"équitable\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équitables\": {\n    \"form\": \"équitables\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.11\",\n    \"subjectivity\": \"0.22\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivalent\": {\n    \"form\": \"équivalent\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivalente\": {\n    \"form\": \"équivalente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivalentes\": {\n    \"form\": \"équivalentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivalents\": {\n    \"form\": \"équivalents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivoque\": {\n    \"form\": \"équivoque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"équivoques\": {\n    \"form\": \"équivoques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"-0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"érotique\": {\n    \"form\": \"érotique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"érotiques\": {\n    \"form\": \"érotiques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"ésotérique\": {\n    \"form\": \"ésotérique\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"ésotériques\": {\n    \"form\": \"ésotériques\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.70\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éteint\": {\n    \"form\": \"éteint\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éteinte\": {\n    \"form\": \"éteinte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éteintes\": {\n    \"form\": \"éteintes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éteints\": {\n    \"form\": \"éteints\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.40\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étendu\": {\n    \"form\": \"étendu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étendus\": {\n    \"form\": \"étendus\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éternel\": {\n    \"form\": \"éternel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"éternelle\": {\n    \"form\": \"éternelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éternelles\": {\n    \"form\": \"éternelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éternels\": {\n    \"form\": \"éternels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éthéré\": {\n    \"form\": \"éthéré\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éthérée\": {\n    \"form\": \"éthérée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éthérées\": {\n    \"form\": \"éthérées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éthérés\": {\n    \"form\": \"éthérés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.09\",\n    \"subjectivity\": \"0.18\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étincelant\": {\n    \"form\": \"étincelant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étincelante\": {\n    \"form\": \"étincelante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étincelantes\": {\n    \"form\": \"étincelantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étincelants\": {\n    \"form\": \"étincelants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonnant\": {\n    \"form\": \"étonnant\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étonnante\": {\n    \"form\": \"étonnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonnantes\": {\n    \"form\": \"étonnantes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonnants\": {\n    \"form\": \"étonnants\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonné\": {\n    \"form\": \"étonné\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étonnée\": {\n    \"form\": \"étonnée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonnées\": {\n    \"form\": \"étonnées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étonnés\": {\n    \"form\": \"étonnés\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"étrange\": {\n    \"form\": \"étrange\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"étranger\": {\n    \"form\": \"étranger\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"étrangers\": {\n    \"form\": \"étrangers\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étranges\": {\n    \"form\": \"étranges\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étrangère\": {\n    \"form\": \"étrangère\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étrangères\": {\n    \"form\": \"étrangères\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étriqué\": {\n    \"form\": \"étriqué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étriquée\": {\n    \"form\": \"étriquée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étriquées\": {\n    \"form\": \"étriquées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étriqués\": {\n    \"form\": \"étriqués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"étroit\": {\n    \"form\": \"étroit\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"1.0\"\n  },\n  \"étroite\": {\n    \"form\": \"étroite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étroites\": {\n    \"form\": \"étroites\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"étroits\": {\n    \"form\": \"étroits\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.20\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"évacué\": {\n    \"form\": \"évacué\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évacuée\": {\n    \"form\": \"évacuée\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évacuées\": {\n    \"form\": \"évacuées\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évacués\": {\n    \"form\": \"évacués\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.15\",\n    \"subjectivity\": \"-0.30\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évanoui\": {\n    \"form\": \"évanoui\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évanouie\": {\n    \"form\": \"évanouie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évanouies\": {\n    \"form\": \"évanouies\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évanouis\": {\n    \"form\": \"évanouis\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"-0.07\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évasif\": {\n    \"form\": \"évasif\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évasifs\": {\n    \"form\": \"évasifs\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évasive\": {\n    \"form\": \"évasive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"évasives\": {\n    \"form\": \"évasives\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"-0.40\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.7\"\n  },\n  \"éventuel\": {\n    \"form\": \"éventuel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"éventuelle\": {\n    \"form\": \"éventuelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éventuelles\": {\n    \"form\": \"éventuelles\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"éventuels\": {\n    \"form\": \"éventuels\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"évidemment\": {\n    \"form\": \"évidemment\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"2.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"évident\": {\n    \"form\": \"évident\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  },\n  \"évidente\": {\n    \"form\": \"évidente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"évidentes\": {\n    \"form\": \"évidentes\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  },\n  \"évidents\": {\n    \"form\": \"évidents\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.8\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/Galician/senticon_gl.json",
    "content": "{\n  \"adecuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.105\"\n  },\n  \"agarimoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"agradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.609\",\n    \"std\": \"0.2\"\n  },\n  \"agradecemento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"agradábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.607\",\n    \"std\": \"0.217\"\n  },\n  \"alegrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"alegre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.123\"\n  },\n  \"alegría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"apropiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.102\"\n  },\n  \"bo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.205\"\n  },\n  \"cariñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.161\"\n  },\n  \"compracencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"correcto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.239\"\n  },\n  \"cómodo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.217\"\n  },\n  \"directo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"divertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.063\"\n  },\n  \"euforia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"eufórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"favorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.679\",\n    \"std\": \"0.197\"\n  },\n  \"favorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.679\",\n    \"std\": \"0.197\"\n  },\n  \"feliz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.781\",\n    \"std\": \"0.125\"\n  },\n  \"gustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.306\"\n  },\n  \"positivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.246\"\n  },\n  \"saudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.177\"\n  },\n  \"saudábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.213\"\n  },\n  \"superior\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.347\"\n  },\n  \"tranquilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.175\"\n  },\n  \"alarmante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.063\"\n  },\n  \"arrepentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"arrepiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.143\"\n  },\n  \"desacougante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"desagradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.159\"\n  },\n  \"desagradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"desagradábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.159\"\n  },\n  \"desanimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"desconcertante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.12\"\n  },\n  \"inadecuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.142\"\n  },\n  \"inapropiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.161\"\n  },\n  \"infeliz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.102\"\n  },\n  \"inseguro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.182\"\n  },\n  \"medo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"medroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"molesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"noxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"odio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"preocupar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"terrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.65\",\n    \"std\": \"0.105\"\n  },\n  \"terríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.102\"\n  },\n  \"triste\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.675\",\n    \"std\": \"0.137\"\n  },\n  \"adepto\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"afectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"afecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"afectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afortunado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"afoutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"agarimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"agradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agradecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"aledar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"alentador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"amar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"amoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"animar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"aprecio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"autocompracencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"benfeitor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"benéfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cariño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cativador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"celoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"complacer\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"compraced\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compracente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"confortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.144\"\n  },\n  \"deleite\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"divertir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emocionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encantador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entusiasmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entusiasta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esperanzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"excelente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"experto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exultante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"felicidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.354\"\n  },\n  \"fervoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraterno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garimoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"gracioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"gratitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"hilaridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ledicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"ledo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"optimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pracenteiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.315\"\n  },\n  \"querer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"satisfacción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"satisfacer\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"satisfactorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"satisfeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.0\"\n  },\n  \"sentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sosego\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"ter cariño\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xovial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.315\"\n  },\n  \"xovialidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"a destempo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abater\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"abatido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"abourado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aflixido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"angustia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"angustiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"animosidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"anoxado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoucado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrepentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"arrepío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aterrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"aterrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"atribulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autocompaixón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avergonzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avergoñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"cheo de frustación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consternación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contrición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cínico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"decepcionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"degradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deprimente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desacougar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desafortunado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desalentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"desalentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desalento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desapracible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desapracíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desaprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desconfiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"descontento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"desesperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"desgustado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desgustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desgusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disuadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"doente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doloroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"enfurruñar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enlouquecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"errado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"espanto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espantoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.382\"\n  },\n  \"horrendo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"horrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"horror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"horríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"humillante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ignominioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impaciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indignado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inimigo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquietante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"inquietar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inquietarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irritado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irritábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lúgubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"magoado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medorento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misantropía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misoxinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non prometedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pavor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pavoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"penitente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"porse de morros\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preocuparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punxente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"queixoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"rabiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rabioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rancor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rancoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remiso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remordemento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remorso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repulsión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reserva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revulsión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ruín\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tedioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"temer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"temible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"temíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tenebroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ter medo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ter vergoña\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrorífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"timidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tremendo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turbador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vergoña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vergoñento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.26\"\n  },\n  \"xenreira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"abundancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"adecuación\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"aleuto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"amable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"aromatizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"asoballador\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"belo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"benestar\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"bonito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"compatíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.0\"\n  },\n  \"comportamento heroico\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cooperativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cualificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"de felicitación\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"decencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"decoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.088\"\n  },\n  \"digno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.191\"\n  },\n  \"encomiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.0\"\n  },\n  \"encomiábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.0\"\n  },\n  \"entreterse\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"especial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"espléndido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"estimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"estimábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fascinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fausto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fermoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"festivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.0\"\n  },\n  \"guapo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"habelencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"honestidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"hábil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"loable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"loábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"magnífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"marabilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"meritorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"modelo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pasatempo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"preferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"presentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"presentábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"prodixio\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"profusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"prometedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"que vale a pena\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"razoable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"representable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"representábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rescate\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"respectabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"respectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"respectábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"resplandecente\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reverencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sabio\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"salvamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sincero\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"soleado\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"talentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"vantaxoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"xentil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"óptimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adinamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ameazante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"antiestético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"asasinato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"asimetría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atraso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"autodestrutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bafento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"calumnioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"carantoña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"carnicería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"carnizaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"cheirento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"craso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"defectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"descontinuidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"descoñecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desprezable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"desprezábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"desvantaxoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"difamatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"egoísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"escurecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"estúpido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"exceso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fedento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"fedorento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"feo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"flagrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fétido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inaceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inaceptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inafundible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inafundíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"incapacitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"indigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"ineficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inelixible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inelixíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inexperimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"intransitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"intransitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"irrecuperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"irrecuperábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"irrepresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"irrepresentábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"legalmente incapacitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"legalmente non capacitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"mal comportamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malfeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"marca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"masacre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"matanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mentirán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"miserable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"miserábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"necio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"niño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"non compracente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"non cooperativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"non escalable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"non escalábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"non fiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"non fidedigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"non fiábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"non integral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"non permisivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.088\"\n  },\n  \"non vivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"perigoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.12\"\n  },\n  \"perturbador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pirata\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pouco impresionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"pouco impresionábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"presuntuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"principiante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profanado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pésame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"reprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reprensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tacha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"uso indebido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"acatador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"acaído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adoptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"afable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"afábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"arrebatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"arrebatador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"avanzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"axeitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.129\"\n  },\n  \"axeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ben feito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bendito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"benvido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"carismático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"con criterio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"con experiencia\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"consentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"construtivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"conxenial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corrixible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corrixíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corroborador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cortexo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"curativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"de bo gusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desexable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desexábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"elixible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"elixíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"erótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"escalable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"escalábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"experimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"experimentador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exportábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"extasiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"favorecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"febril\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fidedigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"florecente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"frutuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ganar terreo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gañar terreo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"grandioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedonista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indefectible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indefectíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"maleabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"manipulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"oportunista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"plasticidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"querido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"racional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rubicundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"saciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen medo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tratable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tratábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"técnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"virtuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xurdio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abrigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"afrontoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"antipatriótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"atentado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"carbonado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"castigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cegueira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cheiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"combativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corrompido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corrupto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"crueldade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"de desprezo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"de mal humor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"de moito xenio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deber de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"derrotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desaconsellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desaconsellábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desaparecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desautorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"descoñecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desdeñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"destrutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"diamante negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"entolecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"estéril\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ferocidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fóra da orde establecida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gorecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"guarecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imperfecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impiedade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impopularidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impúdico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inconsolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inconsolábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incontestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incontestábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incurábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ineficacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextricábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inmiscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inmiscíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inquieto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insubstancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insultante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"intranquilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"invencible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"invencíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irreversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irreversíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"laiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"maculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malhumorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"melancólico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mioqueiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non autorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non comprensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non compresible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non creativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non diplomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non dixerible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non dixeríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non imaxinativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non inventivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non mesturable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non mesturábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non patriótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"non vixiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"palidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"penalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"prexudicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"primitivismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"protexer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"que non encolle\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"queixarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rabiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rabuxento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"rudeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen atractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen creatividade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen criterio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen enerxía\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen estilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen imaxinación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen invención\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sen talento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"subxacente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ter que\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tráxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vergonzoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xenófobo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xordeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"abondoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"absoluto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"accesible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"accesíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"aceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"aceptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"acolledor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.373\"\n  },\n  \"aconsellable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aconsellábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acreditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adiantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.265\"\n  },\n  \"admisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admisíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"adornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"adulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afagador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"afirmativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afundible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afundíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"animada\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aptitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"arruinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"astuto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.072\"\n  },\n  \"atractivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atraer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"bailable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bailábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bebible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bebíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ben\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ben formado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brunido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cabal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cabaleiroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caloroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caritativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"casto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cativar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"chic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comestíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"compatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.217\"\n  },\n  \"competencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.191\"\n  },\n  \"competente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"confiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.217\"\n  },\n  \"confortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"confortábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consagrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consecuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"consistente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"conveniente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.0\"\n  },\n  \"cordura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cortesán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cortés\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.725\",\n    \"std\": \"0.153\"\n  },\n  \"cos pés na terra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"coñecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creatividade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cristián\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"curable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"curábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"de abondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de confianza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de múltiple elección\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de primeira\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de primeira clase\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de proveito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de vangarda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"decoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.144\"\n  },\n  \"dedicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"definido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.191\"\n  },\n  \"dilixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"diplomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.217\"\n  },\n  \"discriminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disposto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dispoñible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"dispoñíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"divertirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"educado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"efectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eficacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eficaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eloxioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"en forma\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopédico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entretido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enxeñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.191\"\n  },\n  \"equitativa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"esgotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"esgotábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estimulante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"estándar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eufónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"excitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explícito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"expreso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"extraordinario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.177\"\n  },\n  \"fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"fiel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.217\"\n  },\n  \"fiábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"frutífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"ganar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"gañador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"glorioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"habitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"habitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"harmonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"hixiénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"honrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"identificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"identificábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imaxinativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impresionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insepulto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"instruído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"interpretable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"interpretábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inventivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inventor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"invicto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"letrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lucente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lucrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lóxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"maioritario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"manexable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"manexábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"marabilloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"mellor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.191\"\n  },\n  \"non alarmante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"obediente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"observable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"observábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"operable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"operábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oportuno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.102\"\n  },\n  \"opulencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.53\"\n  },\n  \"orientado ao futuro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pacífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.191\"\n  },\n  \"perfeccionamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"perforable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perforábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perspicaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"piedade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"polivalente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"polo miúdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"popularidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"potable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"potábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"precisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.102\"\n  },\n  \"preferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preferíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preparado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.144\"\n  },\n  \"preponderante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"protector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"proveitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prudente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"próspero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"pulido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"puído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"quente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reciclable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reciclábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recomendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recomendábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recuperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"recuperábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"reflector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reloucante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"renarte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rendíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"repetible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"repetíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"repleto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resistente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"respectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"retentivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ridículo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"san\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.607\",\n    \"std\": \"0.112\"\n  },\n  \"saúde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seguro de si mesmo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sen precedentes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sensatez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sensato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.545\"\n  },\n  \"sentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sexy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sobresaliente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sobresaínte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sociábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sofisticado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"solvencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"submiso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.125\"\n  },\n  \"suficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"suntuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"superioridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ter éxito\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"transcendental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.265\"\n  },\n  \"traxicómico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"típico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vangardista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"venerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"viable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"visionario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vitoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"viábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vocálico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluptuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"xocoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"xogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"xogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"xustificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"xustificábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"útil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"abaixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"arruinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bobo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"borrancho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brusquidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cansazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"carácter perecedoiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"casa de tolos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chumbo endurido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"combatente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"complexidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"con grans\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"condena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"crepuscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"criticar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de abaixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de embaixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"derribar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"derrubar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desamparado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desconforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descortés\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.157\"\n  },\n  \"desfavorecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desgastado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"destruír\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"detrimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"discordante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elexía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"embaixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"emboscada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encanecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"enterrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"equívoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"escuro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.144\"\n  },\n  \"estragar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"groseiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"homicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"ignorancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ignorante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaxinario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imperfección\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"impracticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"impracticábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"impreciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"impromperio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inalienable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inalienábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inanimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.125\"\n  },\n  \"incomprensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inconsciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incuestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incuestionábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"indetectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"indetectábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inelástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"infalible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"infalíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"inferno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inmunodeficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insolúbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insoportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insoportábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insubordinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insípido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"intolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"intolerábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inxusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.188\"\n  },\n  \"irracional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irrespectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"laio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"licencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"luído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mesquindade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"neurótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non académico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non apetitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non elegante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"non estadista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non modificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non modificábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non oficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non receptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non rendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"non rendíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"osteófito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paifoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pandemonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paroxismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"patas arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perdición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"po radioactivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pouco apetecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pouco apetecíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pouco sólido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"precipitación radioactiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prógnato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"psiconeurótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"relación tormentosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reproche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"sepultado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"situación difícil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"soterrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"temido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tirar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"torpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torturador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tumultuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"vulnerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"á baixa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"a nivel nacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"absterse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"académico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acertado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aclamación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acollida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adaptabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aforrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"algareiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alterable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alterábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alugable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ambidextro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antiséptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apetitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplauso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apresurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atención\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autoestima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autogámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"automático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autosuficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autógamo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"axudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"axustable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"axustábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"baixo xuramento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bastante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ben aconsellado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ben definido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bo gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bocho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bébedo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"característico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"causal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"centralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"científico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circunstancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"claustral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coidadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"coincidir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"combustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"combustíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competente nas matemáticas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competente nos cálculos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competente para as matemáticas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"competente para os cálculos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compresible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compresíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprobado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con borde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con cabeza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con cautela\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con incrustacións\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con montura\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con nariz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conciliador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"concorde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condescendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condicionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condutor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conectábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consideración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consoante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"continuar co embarazo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"convición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corresponderse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corroborar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cortesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cumprido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cumprimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cumprir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curiosidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cálido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"dabondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de a\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de alta tensión\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de alta voltaxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de bo humor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de boa gana\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de diñeiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de moda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de moi bo corazón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"delimitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"democrático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dentro do estándar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desbotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desbotábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desestabilización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desinfectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmontable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmontábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"determinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"determinábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dignidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dirixido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discerníbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distinguíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dixerible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dixeríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"don do ceo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dócil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ecléctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elocuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embriagado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empeño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.442\"\n  },\n  \"en color\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en condicións de voar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en cor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encaixar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"endergónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enerxético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfeitizada\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"engado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entoado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"envaiñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"escintilante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"especializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esquivar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estadista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estandarizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estar ao tanto (de)\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estar de acordo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.228\"\n  },\n  \"excitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhaustivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"existencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exotérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"expansivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"famento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fermosura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"festividade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fin da segregación racial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fisíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fértil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"físico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gordecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gratificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"habelencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hospitalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"humilde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impresionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impresionábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impulsado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infatigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infatigábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"influente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inmunocompetente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insolvente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intelixencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intelixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"intercambiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"intercambiábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"interesante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"intoxicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irremediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irremediábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"leal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lembrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lexíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"luva de coiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lúdico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medicinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mesturable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mesturábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miscíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"monástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mésico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nacido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcisismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non cabeza de serie\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non partidario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non partidista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nutrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ocuparse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"omitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"optimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ortotrópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ostensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ouvinte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oínte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palmas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pampo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"papel couché\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"papel de regalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"participativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"particular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"patriótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persuasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ponteable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ponteábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pornográfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.143\"\n  },\n  \"precioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"presumida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"privarse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"privilexiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"probado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propicio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.25\"\n  },\n  \"proximal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"práctica\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pulcro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"público\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"que encolle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reafirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"redundante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regalo dos deuses\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regordecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regordete\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rememorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"remunerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"rendibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reparábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"repetitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"residencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rigoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"rosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rosado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sacrosanto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"salubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"salvar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sedutor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"seleccionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen malas herbas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen nubes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen prexuízos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen xermes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sentimental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ser efectivo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"significativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"sinceridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somerxible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somerxíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"somático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suficientemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tacto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"temperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"total\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"traducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"triunfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"usual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilitarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"valioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vantaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"vendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vendíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"verde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"verosímil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"vivaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.224\"\n  },\n  \"zurdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"éxito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aborrecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aburrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acusador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alleo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alporizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amedoñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amedrentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anarquía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"angustioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ante mortem\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocalipse\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arteria cerebral inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astenosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"audaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bar clandestino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"barbela dos Habsburgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beriberi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bile amarela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bile negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bruxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bárbaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacofónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadaverina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cansar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"carpideira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"carácter profano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cebro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"choromiqueiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cinexética\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comparativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"corcovado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cortexo fúnebre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cóndilo lateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cóndilo medial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demoníaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"derivación portocava\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desagradecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desaparecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desapiadado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desaxeitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desempregado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.168\"\n  },\n  \"desfavorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.168\"\n  },\n  \"desleixado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"desleixo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destemido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"difícil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discontinuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distraído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"déspota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embuste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en branco e negro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfermidade sanguínea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"engano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"escándalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esnaquizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espectro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esporádico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estereotipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estresante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excrecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extinto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falta de atención\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fartar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fracaso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fracturar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fraude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"frío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graffiti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerrilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerrilleiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hematoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterodoxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipócrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impensábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imperforable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imperforábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"implacábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"imponteable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imponteábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impotencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impunidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impávido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"in fraganti\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inadmisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"inadmisíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"incompleto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"inconcibible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconcibíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incondicionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconstitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconveniente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"incorrixible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incorrixíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incrédulo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inculpatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indiscernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indiscerníbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indispoñible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indispoñíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexperiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inexplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexplicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ininterpretable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ininterpretábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inmunodeficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"innato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inoperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inoperábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inquisición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insuficientemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intrépido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invasor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"investigación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inviolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inviolábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invulnerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invulnerábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irreal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"labio inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laringofarinxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"licopeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lilaina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lorda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lánguida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lánguido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"macrocolon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal usado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malevolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malfadado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maléfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manicomio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"matar sen intención\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mazadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megacolon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"melancolía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mentira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mentireiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moa cordal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moa do xuízo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"moreno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"morrer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"muyahidin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nocivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"non admitido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non algareiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non bromista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non cristián\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non disposto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non doente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non dotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non dramático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non emocional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non emprendedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non empático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non entusiasta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non escrupuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non esixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"non estimulante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non estético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non esvaradío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non excitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non exitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non irritado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non malicioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non obrigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non oposto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non político\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non probado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non rabiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non rabioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non recoñecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non refinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"non relacionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non simpatizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non tradicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non técnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non xogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"non xogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oco mandibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ofenderse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ollo do cu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"opresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orificio aórtico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"palestra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parafilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parte inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perecedoiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pesimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pestilente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"pintada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"porcallada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pouco ortodoxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pouco político\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punzante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"queixume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reclamante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reprimenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"requisito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"réquiem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ríspeto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sabotaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen cheiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"sen confianza\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen dote\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen emoción\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen emocións\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen entusiasmo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen escrúpulos\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen iniciativas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen interese\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen luar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen lueiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen lúa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen prestar atención\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen remorso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sen tacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"silvestre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sobriedade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sulfuro de hidróxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"teimosía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ter envexa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tipo de sangue Rh-negativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trasno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"valía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vea pulmonar inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vea sigmoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vena pulmanalis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vena sigmoideus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vertixinoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vivir de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"xemido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ácido acetoacético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"a man\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a tempo completo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abadesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aberto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.222\"\n  },\n  \"absolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absorbible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absorbíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abundante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"acabado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"academia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acantilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acolchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acorde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"acordo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"acostumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"acristalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"actinomorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.146\"\n  },\n  \"acumulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acídico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acústica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adaptado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.289\"\n  },\n  \"adaptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ademais\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adestrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"adictivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"adiñeirado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"admirado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"admitido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adoptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adulto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aeróbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"afastado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.161\"\n  },\n  \"aferrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"alado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alcohol absoluto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alcol absoluto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfabetización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfombrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"altruísta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aluarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amarelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambicioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambigüidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"amigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"amigábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"anfótero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"animado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.464\",\n    \"std\": \"0.238\"\n  },\n  \"anovado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ansiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anualmente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anulábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apaixonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"aplacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplacábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplicabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"apocárpico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apoiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"apoiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"apreciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apremante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arduo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aristocrático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arquitectura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artefacto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesanal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"asegurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asistido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asomar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asombrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asombro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.361\"\n  },\n  \"asubío\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataviado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atención médica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.065\"\n  },\n  \"atraente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atribuíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atribuíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atropelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atávico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autónomo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"auxiliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"axeitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"axente activo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"axuda médica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"axustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azul\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beleza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"ben intencionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benaventuranza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.439\"\n  },\n  \"bioquímico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blindado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"borracho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"brillante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.072\"\n  },\n  \"cabalístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cacarexo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cada hora\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cada mes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caligrafía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calmo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"caloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cambiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cambiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"candente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"capaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"capital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cara adiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"carbón de vapor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carnoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caseiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"categoremático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cauteloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"centrar a atención\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrífugo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrípeta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerimonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerimonia relixiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chairo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chan\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chatarra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"choroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chosco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cidadán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cigomorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cirúrxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citocromo C\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"claro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.157\"\n  },\n  \"clemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"coercitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coexistente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coherente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.105\"\n  },\n  \"coidado médico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"colorido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colosal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"completo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"comprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"comprensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"comprometido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"común\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"con cara redonda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con columnas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con costura\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con deda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con dedo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con obxectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con orellas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con prexuízos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con propósito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con seguro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concentrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"concepto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"concreto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"conectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"confiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conformista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confucianismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congruente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"connoisseur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.056\"\n  },\n  \"conseguir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"conselleiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"considerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"constituído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultoría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contemplativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conter o vómito\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"controvertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conveniencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convincente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conxestionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coralino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cornudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corpóreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"costa arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coñecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"creación artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crédulo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"críbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cualitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuestionábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cultivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"cultivábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"culto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"cura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"cálculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"célebre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"cómico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de baixo custo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de devoción\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de enriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de investigación\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de luxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de merda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de metal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de máis\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"de ollos secos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de orgullo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de pel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de punta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de rapaza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de sangue quente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de seda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de simetría bilateral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"debido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"decorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"decrépito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deixar entrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deleitarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deliñalo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deliñábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demagogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demasiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"depresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derrogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derrogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desacostumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desbordante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descansado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"descansar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"descentralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desencantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desenvolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desenvolvido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desfrutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshumanizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despexado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"destacar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.439\"\n  },\n  \"detectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detectábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dexenerado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diabático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diacrónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diferenciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difundido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dinámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"dirimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dirimíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dirixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"disxuntivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"do mar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"domado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"domesticado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doméstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dourado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ebrio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"económico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"efeminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"efusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elasticidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"elegante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.112\"\n  },\n  \"elemento favorable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elemento favorábel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emetrópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empaquetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empregable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empregábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en condicións de navegar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en dous\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en orde\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en transformación\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"encolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endogámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"endógamo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfeitizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"enluarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enorme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"entretemento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enviado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equidistante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equilibrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escarpado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escravo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"especificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"específico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"esperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"esperto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"esperábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"establecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estrepitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estupendo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eupneico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.157\"\n  },\n  \"evitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"evitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"evocador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exactitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"executable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"executábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exemplar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"exonerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"explicativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"explotación excesiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expresable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.217\"\n  },\n  \"expresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"expresábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.217\"\n  },\n  \"exquisito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"facer soar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"facheiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"facilitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faiscante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"famoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"farsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fazaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fecundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feito á man\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"feminino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"festa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"fiabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"filial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filosofía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"filántropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flegmático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.224\"\n  },\n  \"flexionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"flexivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"formado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"fortalecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fosforescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fugaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funcional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"funcionalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funcionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fácil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"gabinete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"galopante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gardería infantil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastrónomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"global\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gourmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gozar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grande\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"habitual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"harmonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"himno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hipotético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homocerco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homoxéneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanidades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hídrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"igual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"iluminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imparcial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"imparcialidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impecable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"impecábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"impenitente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impertinente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"importancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impoñente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprimatur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impune\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inclusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incluír\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incontaminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incrementable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incrementábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incólume\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indemne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"independencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indisciplinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indulxente consigo mesmo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inequívoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inestimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inestimábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inflacionista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflamable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"inflamábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"inmaculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"inquisitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insinuante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instrutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"integral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"intelección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interesarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intermedio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interpersoal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interrogante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inveterado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreprochable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreprochábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.25\"\n  },\n  \"lavable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lavábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lecer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leiteira\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"ligar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"limitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.205\"\n  },\n  \"limpo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"lindante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"listo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"longo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"luminoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"luxoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"líquido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malicioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manicura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maquillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masoquista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materia prima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maxenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mediado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meditativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mellorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"memorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"memorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meritocracia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mesomórfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mestre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metálico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metódico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"misterio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miúdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"modificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"modificábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"moito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"momentáneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"mutábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"máis\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"máis alá\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"máis lonxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"máxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"médico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"na rúa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nacionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"narrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"natural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"necesario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nidiamente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no poder\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nobre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"noción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non afectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"non arborizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non blindado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"non cortado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"non crítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non datable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non datábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non estrinxido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non mundano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non sectario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non sentencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non violento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"normal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.063\"\n  },\n  \"nudez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutritivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"obrigatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"obxectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocorrencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oficio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oportunidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"organizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"orientado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"ortodoxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orzamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pacto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pagamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pago\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pano facial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papel de construción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papel de mecanografía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papel mecanográfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraíso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pardo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"participar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasaxeiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"paternalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paterno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pedante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"pegañento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penetrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penetrábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pensativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"perceptíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"perdoable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"perdoábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"periódico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"permitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.258\"\n  },\n  \"pertinente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"pervertido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pisada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"planeado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"planificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plausibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"podente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poderoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"polémico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"por baixo da cabeza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"por riba da cabeza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"posíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.161\"\n  },\n  \"potente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pracer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precedente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predisposto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pregable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pregábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"premeditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"presidencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prestixio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presumible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presumíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretensioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"previsible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"previsor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"previsto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"previsíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"prexuizoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"principal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"produción artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"produtivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"produto básico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"profesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"progresista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"prolongado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"propensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"propio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"proporcionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"proporcionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prover\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"provincial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"práctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"publicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"publicitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"publicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"puntual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"que funciona\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"que mete medo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"que respira\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queridiño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quincenalmente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"radiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ratificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"realista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reanimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"receptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"recesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recoñecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"recto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.277\"\n  },\n  \"redimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"referendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reformado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"regulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regulamentario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.102\"\n  },\n  \"reinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relacionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"relevante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relixioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"remoto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"remuneración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"renovado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repoludo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"represivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reproducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"reproducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"reprodutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"requirido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"resolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"restrinxido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"retractable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retractábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retribución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revelador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"reverente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"reversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"reversíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"revogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revolucionario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rexenerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"riqueza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ritual relixioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"robusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.063\"\n  },\n  \"rápido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"rítmico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saboroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sacerdotal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sagrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salvábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sanitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sedoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seguro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semanalmente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semellante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen bágoas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen esforzo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen fondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen palabras\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen sangue\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen sol\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.351\"\n  },\n  \"ser competente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sereno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"silencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"similar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinónimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"social\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"soltar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"somnolento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sondable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sondábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sorprendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sorriso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sospeitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sostible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sostíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subministrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substituíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substituíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subsónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subtractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subxectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supervisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supranacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suprimido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"susceptíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"sustentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sólido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"taciturno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"tanto... coma\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"teatral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tentador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ter capacidade para\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"testador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"titánico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tolerante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"transixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tratado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tratado internacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"unitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unívoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urxente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"utilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"vagaroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"valido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veracidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"vermello\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viaxe de pracer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viciante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"vinculante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"violable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viril\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"viscoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"visible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"visíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"vivacidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"vivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"vizoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vogal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voleibol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluntario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"válido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xeneroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"xeral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.331\"\n  },\n  \"xigantesco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.105\"\n  },\n  \"xubileo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xuvenil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"zonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"á man\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"écrino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"étnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abandonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.102\"\n  },\n  \"abasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aberrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abraiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abrasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absterse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abufardado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acantocito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acción de grazas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceiro de Damasco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceiro gris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de asento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de bacallau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de cobra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acibeche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acinesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acondroplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adesita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiposo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiviña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alborotar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alcatrán de piñeiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aldehido fórmico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"algodón vermello de seda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alterar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altercado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amargar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"andesita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"anomalía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anormalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antagonista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"antracita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aparello vestibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apoplexía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arroutada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"arrítmico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arseniato de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arsina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria alveolar inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria alveolaris inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria labial inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria labialis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulación mandíbular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulación temporomandibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulatio temporomandibularis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artificio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asasino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"asertividade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atrevido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"atroz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"auga branda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autopsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"avaro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.217\"\n  },\n  \"avermellamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azida de hidróxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azoimida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balbordo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"barba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"barba de varios días\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbarie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbarote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"botox\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brutalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bruxaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bruxería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bugallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burguesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cachote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calcitonina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camisón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbonato de lítio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carburo de ferro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbón vexetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carena do fórnice\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carena do fórnix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carina fornicis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carneiro bravo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carroña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cascallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casiterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catalepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catastrófico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cefalalxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cementita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cera de candelilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cera de goma laca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaleco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chamizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chapeu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaqueta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chicha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chifre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chuvia torrencial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cicloosixenase-2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cinsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cinzas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citoloxía cervical\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citoloxía de Papanicolaou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citoloxía do cérvix\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clandestino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coa cara lavada\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colcha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinación XXX\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concepción errónea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conxelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coral precioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coral vermello\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cremación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crime\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crucial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"célula diana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cólera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"danado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.191\"\n  },\n  \"dano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaliñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desconsiderado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"descuberto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desculparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desenfundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desertización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desgraza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"desmaio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desorde cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desordenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.094\"\n  },\n  \"desorganizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"despectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"despedido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despoxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desprevido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desproporcionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.063\"\n  },\n  \"digresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disonante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disparate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"distópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"dureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"débil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"egoísta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"elfo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empeorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en vías de desenvolvemento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enagua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encefalopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfastiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermidade cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entullo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epidemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ergotismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erróneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"escuridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escusarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esferócito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esmalte dos dentes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espirito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esteatopixia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esterilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estrago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eunuco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"falso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.328\",\n    \"std\": \"0.164\"\n  },\n  \"falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"falto de preparación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ferida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"flor salvaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flor silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flyspeck\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formaldehido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fortificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fracasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"frenético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"funeraria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"furacán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fóra de forma\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fósxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gas mefítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gas velenoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glicósido cardíaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpe mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goma de labdano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goma laca de Madagascar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gravidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"graxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris de Davy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grupo terrorista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guerreiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"haber temporal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"halitose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"harpía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hepatoflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidruro de arsénico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"idea falsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignominia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ignorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"illarga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imparábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"imperceptíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperdoable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"imperdoábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"implacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.161\"\n  },\n  \"imprevisto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"imprudente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"inadaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadoptábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inapelable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inapelábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inaplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"inaplicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"inapreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inapreciábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inaxeitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incapaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"incineración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inclemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"incoloro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"incompatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.19\"\n  },\n  \"incompatíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"incompetente nas matemáticas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompetente nos cálculos\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompetente para as matemáticas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompetente para os cálculos\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incomprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"incomprensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"inconsciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.144\"\n  },\n  \"inconsecuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconvertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconvertíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indebido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"indecoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.228\"\n  },\n  \"indefinido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"indiscriminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"indomable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"indomábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ineficaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"ineficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"inesperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inesperábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inevitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"inevitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"inexacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"inexecutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexecutábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexpresable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inexpresábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inflamación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infértil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"inimaxinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inimaxinábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmaterial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"inmerecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"inminencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innegable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"innegábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inoportuno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.177\"\n  },\n  \"inquedo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"insalubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.188\"\n  },\n  \"insalvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"insalvábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"insensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.143\"\n  },\n  \"insensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.143\"\n  },\n  \"inservible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"inservíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"insociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insociábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insomerxible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insomerxíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insospeitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instintivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insubmiso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insán\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"intemporal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intransitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intransixencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intransixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"involuntario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.217\"\n  },\n  \"inxenuidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"inútil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.161\"\n  },\n  \"irrecoñecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrecoñecíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irredutible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"irredutíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"irrepetible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrepetíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kitsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"labdano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactoflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lavanco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lendario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lepra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"letal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"levidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"libertinaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"librar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linchamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lixo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"locuacidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loita armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magostrallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal aconsellado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal xenio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maldito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"man de obra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mancha do fígado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"marasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"material de refugallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mediocridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mentol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metanal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metedura de pata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miserento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.188\"\n  },\n  \"monstruoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morgue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"munición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"músculo pterigóideo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necesitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"neoplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoplasma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuralxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non acorde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non acostumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non adictivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non adoito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non afeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non alugable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non alugábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non arandelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non arbitrario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non atento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non atractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"non atribuíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non atribuíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non axustado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non confirmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non consumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non correspondido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non cualificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"non dedicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non detectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non empregable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non empregábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non en forma\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non frecuentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non habituado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non influente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non metido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non pago\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non patrocinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non perceptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non produtivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non reanimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non regulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"non residencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non resolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non reverberante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non servil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non solicitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non sometido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non supervisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"non tratado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"non ético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"notorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 76\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obsceno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"obsidiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ofensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.184\"\n  },\n  \"opresor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orde das plantas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"organización terrorista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ortiga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osmio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ovoflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralelo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paranoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parasitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parvo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perennidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peripecia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"permiso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perturbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pesimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"peteiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"planta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleonasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plexo aórtico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pneumonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poboación activa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"policía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pomba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pouco práctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"precisar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"preito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preocupante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"principio amargo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proba de Papanicolaou\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"produto químico irritante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"protesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"pulmonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punto orbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quebracabezas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quebrantamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quebrantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"queixelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quincalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raios x\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rapiñeiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rasposo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rebo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reflexo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requirir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"resaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"residuos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resinita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revestimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"riboflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"romper\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"rudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"ruído\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salaio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sartego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen contras\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen contraventás\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen dedos\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sen dicir\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen financiamento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen maquillaxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen montura\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen oralidade\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen pagar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen patrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen pel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen pulir\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen puír\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen reserva\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen resolver\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sen ás\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulcro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ser castigado\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"siderocito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema vestibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"situación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"snob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solo de lameira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sombreiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"spelter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substancia húmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substancia velenosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sufrimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supersticioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sustancia tóxica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"síntoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temeridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"termoendurecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"termoendurecíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"test de Papanicolau\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tintín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tirocalcitonina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tizón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tormenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxina-antitoxina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxina botulínica A\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traficante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"transgredir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transmigración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"trastornar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trauma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traumatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traxedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tremente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"tristemente célebre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"troupelear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trousar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vacina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vago\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"varíola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea central da glándula suprarenal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea hepática porta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea labial inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea ovariana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea ovárica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea porta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea tibial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vea xugular anterior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veleno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"vena centralis glandulae suprarenalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena labialis inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena ovarica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena portae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena tibialis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdade a medias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde antigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vergonza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vergoñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"vidro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina B2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina G\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vómer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xaque mate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xaqueca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xolda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xordo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"ácido butírico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido caprico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido carbámico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido decanoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido hidrazoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ánima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"áspero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"óxido nítrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a priori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abaneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abotoado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrochado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstención\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abstraído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acalorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acantión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acastañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceptar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"achegamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acomodado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acromio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acróbata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adagio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adhesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admisibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"adoito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adolescente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adrenalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adstrinxente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"afastamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"afeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afiliada\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"agasallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agochado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agocharse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcanforado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohólico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algoritmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliviado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altivez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amencer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amniocentese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ampliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amplo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"anabólico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anamorfismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ancho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"anelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ano imperforado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antebrazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticuario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antigüidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antropomórfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antrorso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antílope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antítese\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"anátropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apampado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apelable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apelábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apesararse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"apreciábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"aprendiz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprendizaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"aprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apócope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apófise transversa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apóstolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aquí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arandelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ardente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aritmética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arqueiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arquiveiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arraigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrancar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrepentirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrepiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arribar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrincar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrogancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria cerebral superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria comunicante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria ileal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria ileum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria intestinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria xexunal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asentimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asesor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"asignado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asociada\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspecto canso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspecto negativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asterión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asumir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atenuante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atractor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atónito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auga dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auricular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autobanco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoengano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autovía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoécico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axente redutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axiña\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axustado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"axustarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"bagulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrigudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrigán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baseamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bañeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bebida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bilingüismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bisexualidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bocha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bondade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bondadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"branco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brioche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"butaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bágoa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bóchega\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabalete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabeza humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafetería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calígrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camarilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camiño uveoscleral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"candidato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canto nasal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caprichoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carabina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caricatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carácter sagrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castaño\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catedral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caxato (de alpinista)\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cegador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celeste\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centro docente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cera para zapatos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerebral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"certeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cetraría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cetrería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cicerone\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claustro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coa cabeza descuberta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobizoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocaína\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colesterol LDL oxidado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coloración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"comedia de situación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comercial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comezo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comité\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compartimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compañeiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comunidade escolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con abotoadura simple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con bordos con labios\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con cable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con contras\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con contraventás\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con cortina\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con dereito a voto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con escrúpulos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con fío\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con mangas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con nome\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con ollo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con pais\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con punta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con raias\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con restrición\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con rima\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con talle\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con talo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con voto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceder\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conceptual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concertado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concéntrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condensador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condilio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confeito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confirmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"confraría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conmovido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conmutábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"connotativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquerible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conqueríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquistable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquistábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consello\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consenso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"considerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"considerábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conter\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"contestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contestábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraforte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraproducente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrapunto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contribución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controlado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contundente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conversador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"converso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conxuntivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conxunto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cooperativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"copete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coquetería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coroado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpo de exército\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corporativismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpus amygdaloideum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cos ollos vendados\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosmético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"costela verdadeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotelear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotián\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"crebaxeos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cristalino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cristalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criterio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"croquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cróquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuarto nervio cranial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cunha calor abafante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuñado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cómic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cómoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dadaísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"datable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"datábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de abaixo para arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de absorción de enerxía\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de antano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de antemán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de arriba para abaixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de cadea aberta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de clase alta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de cooperación\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de crecemento rápido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de curmán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de curto alcance\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de enerxía de liberación\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de estrea\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de facto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de ferro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de incógnito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de madeira\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de masas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de non curmán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de ollo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de ollos de lince\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de ombreiros anchos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de pasos silenciosos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de prezo fixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de pé adducto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de réptil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de vía simple\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deber\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decantación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decidido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.105\"\n  },\n  \"decision xudicial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decisorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"declarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"declinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decorativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deforestación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deidade hindú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deixar de recoñecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delegar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demostración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demócrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentro do lugar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derivativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconexo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descontrolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desde hai moitos anos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deserto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desestalinización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desintricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desintricábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmobilización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destacado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destreza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvergonzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvergoñado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"devandito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacrítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialectoloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didáctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difuso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diminuto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diploma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disciplina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disperso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispoñibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distributivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ditongo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diverxente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"divindade hindú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divulgador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"do día\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"documentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dormente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doutrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drenaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drogas depresoras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"día\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"día santo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclecticismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclesiástico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"economista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecosistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emocional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"emoción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empezo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empirismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emprendedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empuñadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empírico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en alza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en grupo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en lapas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en miniatura\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en po\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encherse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encosto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endoérxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfronte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"enganchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enmeigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enraizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enreixado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensimesmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entreaberto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enxeñaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enxeñeiro agrónomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enérxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinófilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epigrama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinefrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epistemoloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erradicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erradicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escalar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escola de pensamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esconderse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escorregadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escrupuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esculpido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esotérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espacial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espectáculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"esplendor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esponxoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquecíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar activo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar farto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar pendente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estepa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estipendio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estribo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estruturado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estudado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estupefacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estímulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esvaradío\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnoloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euxenésico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exceder\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excelencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exhortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existencialismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exoérxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expandido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experto economista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"explosivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"explosivo de alta intensidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinguíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extraconxugal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facer percibir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fachenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facultativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faixa peitoral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"fanático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fartarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fecundidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feitizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferramenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festa relixiosa cristiá\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"financiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flamante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flexional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogueira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forma curva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formigón armado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fornecedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.174\"\n  },\n  \"forxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foryml\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraguar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frecuentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fregués\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frugal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funxicida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"férreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"físil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gadoupa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gando\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garantizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garatuxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gardián\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasolina con chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastronomía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glabela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globo ocular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gloria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glutationa peroxidasa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gramatical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gregario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gruñido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habituado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterosexismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hialoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofílico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipertrofiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hixiene\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homenaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocéntrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homosexualidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorarios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horizonte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hóckey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"identificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ieti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilimitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaxinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaxinábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impactante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperecedoiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impertérrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"imposto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impulsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in situ\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incesto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inclinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incomparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"incomparábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"incontable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incontábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incumprido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"independente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"individuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indivisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indivisíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inducido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infantil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infeccioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"informar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmemorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmencionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmencionábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innumerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innumerábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoxidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoxidábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquebrantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquebrantábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insondable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insondábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"institución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instituto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrumento de percusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insulina humana recombinante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelectualidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intelligentsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercambio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interceptar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdependente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdisciplinar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intimidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ioga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iris\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrisorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrompible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrompíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jazz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"labrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lagrima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laicismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"landmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente do ollo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libre de peso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limpeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linguaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lista negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liña do pelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locuaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lonxitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar ficticio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar imaxinario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar mítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminosidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luxurioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lítote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madurez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnanimidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maior\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"man\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manexado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masculinidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastoidal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masturbación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mate\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material composto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mediano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mellores galas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melodía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"membrana hialoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"membrana timpánica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merchandising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesophyron\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metafísica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meticuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metonimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metopión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrónomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miofilamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misticismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mobilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moldear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoteísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morganita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morganático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mozo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multidimensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"multirracial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiétnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mundano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musculus temporalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"máquina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"místico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"músculo ocular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"músculo temporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nasal canthus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natimorto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natividade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nave espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negociación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neoclasicismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nervio troclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurotransmisor de monoamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neutral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no lugar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non adornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non compasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non decorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non desbotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non desbotábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non improvisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non libre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non maltratado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non manual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non misericordioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non perecedoiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non profético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non progresista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non resentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non retórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non sobrecargado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non tóxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"norma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nostalxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nota musical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noticia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nova\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"novo do trinque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutricionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nítido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"núcleo amigdálico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obelión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oblicuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"obxectividade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocasionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocultarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculus dexter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oculus sinister\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ollo dereito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ollo esquerdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ollo parietal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ollo pineal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnipresente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnisciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opinión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orb\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orde relixiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.19\"\n  },\n  \"orgasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"outorgar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pagode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palabra por palabra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleoantropoloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palpebra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papel pergamiño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"para adiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parodia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paronomasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasarela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paso a paso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrocinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrocinio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pauta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"payola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediatra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedra de toque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peiteado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"película\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pensábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"percibido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"percibir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peregrinaxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perfumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pericia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"permeábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"permisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permisíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perpendicular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persistencia da canle arterial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persoa antipática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persoa desagradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persoal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertinencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"pimpín común\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"piroxenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pistola de madeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placentario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plancto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleno verán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plexo cardíaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plexus cardiacus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plinto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pogonión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"policromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"político\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ponderable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ponderábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"populismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"por adiantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"por diante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"por separado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"positivismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posmodernismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postulante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"potencia muscular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poñerse de acordo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prebélico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predilección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predisposición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prednisolona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preguerra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preliminar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prematuro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"premisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prenatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preparto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescrición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"prestamista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presteza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevalecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevención\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"previamente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primeiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primixenio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probiótico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proceso acromial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proceso cognitivo básico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proceso transverso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procreación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"produto farmacéutico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profesionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profeta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progresismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolog\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proporse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostitución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prototipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proverbio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxémica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prénsil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicoactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicótropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punteiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto alveolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto auricular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto de McBurney\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"purificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pálpebra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pésimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pórse de acordo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"que ten rima\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rachado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radioactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiolúcido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiotransparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ragtime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raíz do dente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reaccionario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebuldar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"receita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recorrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recorríbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recoñecemento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"rectángulo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recurso transitorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recíproco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reducido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"redutor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"reflexión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"reformador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformador social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refusar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refuxiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relaxado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relicario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relucente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rematado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"remediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remediábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remolcador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remuneracións\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renovábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resignado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resucitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retardado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retorcido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retorto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retículo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverberante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revés\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"riscado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rivalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruxido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saber\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.259\"\n  },\n  \"sacrificio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sangue vital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanguento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanguinolento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sectario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secuencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secularismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seguimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seita relixiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicircular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semitransparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen brillo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen carga\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen clave\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen compaixón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen corte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen límites\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen misericordia\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"sentenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentido práctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentir empatía\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser humano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"servíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sexista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signatario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"significado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simbiótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"similitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simpatizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simultáneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinclinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinérxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistemático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrehumano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrepasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solicitante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"solvente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sometida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonda espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soportado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorbato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soster\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"spot\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stephanion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suave\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"subcontinente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suboficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subsidiario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sucesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufraxio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suplicante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremacía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suxestivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"symphysion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sánscrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"séptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"séquito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síncrono\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"súplica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tallado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecido muscular estriado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teoloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ter a intención\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ter un alcance\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terceiro ollo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"termoplástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocoferol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tolo polo sexo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toma do poder\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topenear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topografía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totalmente novo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"totipotente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traballo en equipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tracto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trade-off\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transcender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"translúcido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transmitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trasnada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"traxicomedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trebellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trebello\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trenzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trepia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tributable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tributo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tridente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trilobite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trotskista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tundra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tímpano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultravioleta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utriculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utrículo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utrículo do oído\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utrículo do vestíbulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uña encravada da deda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea cardinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea cava\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea etmoidal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea lacrimal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea oftálmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea oftálmica superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea pancreática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea posterior do ventrículo esquerdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veas epigástricas superiores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veciño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vedado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veludo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena cava\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena ethmoidalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena lacrimalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena ophthalmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena posterior ventriculi sinistri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venae epigastricae superiores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venae pancreatica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viaxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidro volcánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vincha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vinchoca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"violento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vistoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina E\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voyeurismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"válvula semilunar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"váxil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía rápida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xeopolítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerme\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xeógrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xogo de palabras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xogos malabares\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xudeu\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zancudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zume dixestivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"á fronte\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ámbito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"íntegro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"órgano parietal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abouxante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrir fogo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absentismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acaudado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acción reflexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acedo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acedume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceiro de alta velocidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceiro de tungsteno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceiro de volgframio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de bidueiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de bidueiro doce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceptar de mala gana\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetato de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aclorhidria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrilamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adianto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"administrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afouteza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afronta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agonizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"agorafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agresor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agárico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aire quente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcatrán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcatrán vexetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohol de madeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohol metílico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcol de madeira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcol metílico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algodón absorbente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alguacil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alternante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alucinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigdalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aminobenzina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anacarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ananismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anemia falciforme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anestro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhídrido acético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anilina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anti-semitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipapa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipersoa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisemitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anécdota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anómalo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apetito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoptose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arco alveolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arco pélvico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arenita grosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrepiar as carnes\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria circumflexa ilium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria ilíaca circunflexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arxinina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asafétida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asaltante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asediado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asedio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asexualidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asindético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asustadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atacante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atavío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotomía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avarento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axente nervioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axuizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azucre de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babirusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baciloscopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacterioscopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bagel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baixo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barba de chibo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barba de mandarín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barba imperial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"batallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batuxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"benzoina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berilio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beta-endorfina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"betún asfáltico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bieito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boca do estómago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bordo alveolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bordo das enxivas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrasca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bosta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bostela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bouncing putty\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bromuro de metilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulleiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buque de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burrán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cachela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadáver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeína\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cagón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calamidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campilótropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo de minerais\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canalis inguinalis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canthum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbonato de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carocha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caspa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caspela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caucho endurecido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cegude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceilanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celebridade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cera montana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cera xavanesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chamado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chanco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapuzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chumbo branco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cianuro de hidróxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cianuro de potasio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cianuro de sodio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cibercriminalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cilios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cilium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cincento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinemática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinsa de perla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cintura pélvica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circunstante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"citoloxía broncoscópica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"citoloxía do tracto respiratorio inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobiza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coenzima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colchón de aire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colesterol HDL\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colidir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coloquio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combater\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combinación XYY\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complicidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con esforzo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con pouco xeito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conduto inguinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conflagración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confrontar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contactar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contagotas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contaminante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraprudecente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controversia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convencional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"cordas inferiores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cordas vocais verdadeiras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corentena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corindón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpo morto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correccional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrente de aire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coser a boca\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotobelada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covarde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covardía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coñecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromato de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromosoma acéntrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuarcita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuáquero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cáncer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cáustico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula adiposa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula de Golgi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula de Kupffer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula do gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula gustativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cíngulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"da clase media\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darse por vencido\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de bo corazón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de mala reputación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de organización\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de sangue frío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de segunda categoría\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de segunda clase\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de segunda orde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decepcionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defecto visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"degustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deitarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deixar fóra\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demandado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dendrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dente carnassial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentes mal posicionado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentro da orde establecida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deplorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deplorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desabotoado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desabrochado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desapercibido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaprehensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desastroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desatento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"descoñecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"descruzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desestruturado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desharmónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desigual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"desigualdade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desleal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"desnaturante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desnutrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desobediente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desorde visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despreocupado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desproporción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destinxido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destrución\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destruído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desventura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diarrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difracción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dioxina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discapacidade visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfemismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispararse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispneico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divindade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dióxido de nitróxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doenza animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dubidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dunha soa peza\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebonita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"efémero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"embrión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en segunda clase\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en van\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en xestación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encerellado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encher\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"engaiolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engruñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enguedellado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enleado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enmarañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enredado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterramento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"entusiasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enxerto de pel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicanthus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicanto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epicardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemioloxía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"errada\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escabicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escaseza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"escoura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"escoura básica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escritorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escrutinio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esgrevio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmeril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especialista en ambiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espirro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espontaneamente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espontaneidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espoñer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquecedizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esqueleto apendicular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estado de irritación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estafa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estafilococo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estannito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar en silencio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estaño pirita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estelita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esterco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esterco orgánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estigmatización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estirado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estratexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrinxido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etilenoglicol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutanasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutrofización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exculpatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exorcismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expeler\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exploración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expulsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extensión desolada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extraescolar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extremismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exánime\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor Christmas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor IX\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falcón albar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"falíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farrapento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farrapo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feces de pombas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feluxe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fenilamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fertilizante orgánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"figura retórica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filtrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluoruro de hidróxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folclore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fosa epigástrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragmento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenesí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frigorífico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frívolo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fumegante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"futuro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fístula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fóra da rúa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaivota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galopín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gammaglobulina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gammaglobulina humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas de sumidoiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas nervioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gases axfisiantes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastrite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gato montés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gegenschein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globulina gamma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glucinio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glándula mandíbular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glándula salivar submandibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glándula submandibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gnatión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goma de benzoina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goma dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gordiño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratuíto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gravata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graxa dos ósos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"graxa poliinsaturada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gris Payne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gutural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gálbano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gángster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heroína\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterocerco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidroclorofluorocarbono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipoclorito de sodio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipopotasemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humificado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hybris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"héctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignífugo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impopular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imposible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprescindible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprescindíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impresentábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadvertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inarticulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inaturable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inaturábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incognito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconformista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconfortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconfortábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incongruente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inconmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconmutábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconquistable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconquistábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indecente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"indefenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indestrutible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indestrutíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indiferenciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indignidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indisputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indisputábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indistinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indistinguíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indixencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indixestión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inespecífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inesperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"inexorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexorábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexpugnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexpugnábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextensíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextinguíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhumación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmediato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmigrante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmobilizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmoderado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmoral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"inoculador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inodoro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inositol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insatisfactorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticida en po\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insolidario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insomnio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insostible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insostíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intermitente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intraducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intraducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intranquilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inválido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inxustificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inédito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inócua\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ir para a cama\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irracionalidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irresistible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irresistíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreverente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrevocable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrevocábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrevogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"irrevogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"labrocito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ladrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ladrón de camiños\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laetril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamentarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"larvicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latitude\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lentes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leucemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liorta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"listeriose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lobishome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locus niger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malestar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malfeitor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"malo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malos tratos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manchado de tinta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manganeso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manteiga de cacao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marca de nacemento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marfil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastocito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"materia escura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materia negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material de illamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material illante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materialismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matogueira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maxistrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mazá verde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medida enérxica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medula oblonga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meigaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meiguería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meninxite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesocolon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaloide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metanol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metilfenidato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metiltestosterona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"michelíns\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"micronutriente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microondas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineral de chumbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miseria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modernismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mofo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monarquía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoauricular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"montañoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"montiño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"montículo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monóxido de carbono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosaico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mouta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murmurio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mínimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"natureza enganosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrofilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrófago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negro como o acibeche\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negro de carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negro de fume\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neveira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nirvana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrobenceno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non aborixe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non acristalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non adstrinxente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non alfombrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non anulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non anulábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non arbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non arbitrábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non argumentativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non asegurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non atemorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non aventureiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non causal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non causativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non científico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non clásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non competitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non confuso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non controvertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non convincente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non coroado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dar un chío\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non deducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non deducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non deliñable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non deliñábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non derrogable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non derrogábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dirimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dirimíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dirixido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dispoñible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non dispoñíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non erradicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non erradicábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non estrelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non estruturado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non exixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non explosivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non fixado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non físil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non glaseado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non incluído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non indíxena\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non inquisitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non intercambiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non intercambiábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non interrogante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non ionizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non iónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non lavable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non lavábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non nativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non nato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non nervioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non orixinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non particulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non pechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non permanente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non planeado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non planificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non polémico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non programado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non recíproco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non reformado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non relixioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non renovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non renovábel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non retentivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non rexenerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non seleccionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non sindical\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non susceptíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non traducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non traducíbel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non vendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"non volátil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noticiario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"notoriedade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nucleus niger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nulo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 22\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 24\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 25\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 27\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 31\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 34\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 4\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 73\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oleofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omatideo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ommatidium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oncoxene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oprimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orde dos animais\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxímoron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oído interno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paludismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papel carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papel de calcar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"paranoia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parsimonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasta seladora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patoloxía animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paxaro do trono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pechar o bico\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pegada dactilar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pel de marta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelaxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelos da cona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peridotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perlado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanganato de potasio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanganato potásico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peroneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perplexidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persecución\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pestana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peza de roupa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peza de vestir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phellem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillabán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pillaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piridina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placa de ágar-ágar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plantilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleonasto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plácido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"po de xiz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pobre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"polémica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouco atractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouco esixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouco exixente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouco orixinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pouco profesional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poñer os pelos de espeto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"pregos vacais\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presumido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prexuízo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"proba da acidez de xirasol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protexido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"pseudoefedrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pudor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrescina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pór os pelos de punta\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pór os pelos dereitos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"púnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"que non funciona\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"que non ten sentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quedarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"queixa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"querela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raxada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebumbio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"referirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflexo conxénito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflexo incondicionado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflexo innato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflexo instintivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refugallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relevo terrestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renegrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repugnante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"requisito indispensable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisito indispensábel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"res\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residuo tóxico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residuo tóxico industrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"responsabilidade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"resposta reflexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revolto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rexión pubiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rifado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rival\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotenona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rouco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roxón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saborear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicilato de fenilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicilato de metilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salouco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salpicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salvador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sancionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sangue ágar-ágar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saqueador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saúdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sebo vexetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secobarbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secreción mucosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secuestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selenio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen alento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen alfombra\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen apoio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen base\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen branca\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen cable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen censura\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen cortar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen cortina\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen cristal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen deda\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen destinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen embalaxe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen esmalte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen espírito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen estrelas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen fento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen fíos\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen lingüeta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen madeira\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen nervios\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen orellas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen pais\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen pebidas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen pintura\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen pluma\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen rima\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen rodas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen seguro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen soporte\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen sustento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen tecer\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen teito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen un céntimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen vender\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sen ventilación\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser coraxento\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser incapaz de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser mítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shari'a\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siena torrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simplista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema auditivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrecargado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrevivir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"sotana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"substancia nigra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subversivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"succionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrealismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspenso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tabaco turco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantalio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarabeleiro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tartarato de antimonio potásico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teimoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tempestade\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ter coraxe\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ter valor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teratóxeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"termorreceptor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirapuxa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tisne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titanio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tolemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tombac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tormentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"torque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tributirina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricloroetileno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trollo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turbulencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tusido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"táctica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tártaro emético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tímpano perforado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulceroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"vandalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea ilíaca común\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vea musculofrénica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena musculophrenica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventriloquia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verbalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestiario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vexetación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidro crowm de óptica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidro de óptica crowm\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidro deslustrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vilán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vingador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viricida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"virucida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viúva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viúvo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vítima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vómito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xene letal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xene mutante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xestión inadecuada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xibón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xogos artificiais\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xurro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xustillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xénero humano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zarrapicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoolóxico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoonose\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido brómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido caprílico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido crómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido fluosilícico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido fumárico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido hipocloroso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido húmico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido maleico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido nitroso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido paraaminobenzoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido permangánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido xántico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ágar nutritivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ámbar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ázoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"éxodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ópalo negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/German/negations_de.json",
    "content": "{\n    \"words\": [\"kein\", \"nein\", \"nicht\"]\n}"
  },
  {
    "path": "lib/natural/sentiment/German/pattern-sentiment-de.json",
    "content": "{\n    \"Abbau\": {\n        \"form\": \"Abbau\",\n        \"polarity\": \"-0.058\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abbaus,Abbaues,Abbauen,Abbaue,Abbauten\"\n    },\n    \"Abbruch\": {\n        \"form\": \"Abbruch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abbruches,Abbrüche,Abbruchs,Abbrüchen,Abbruche\"\n    },\n    \"Abdankung\": {\n        \"form\": \"Abdankung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abdankungen\"\n    },\n    \"Abdämpfung\": {\n        \"form\": \"Abdämpfung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abdämpfungen\"\n    },\n    \"Abfall\": {\n        \"form\": \"Abfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abfalles,Abfälle,Abfalls,Abfällen,Abfalle\"\n    },\n    \"Abfuhr\": {\n        \"form\": \"Abfuhr\",\n        \"polarity\": \"-0.3367\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abfuhren\"\n    },\n    \"Abgrund\": {\n        \"form\": \"Abgrund\",\n        \"polarity\": \"-0.3465\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abgründe,Abgrunde,Abgrundes,Abgrunds,Abgründen\"\n    },\n    \"Abhängigkeit\": {\n        \"form\": \"Abhängigkeit\",\n        \"polarity\": \"-0.3653\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abhängigkeiten\"\n    },\n    \"Ablehnung\": {\n        \"form\": \"Ablehnung\",\n        \"polarity\": \"-0.5118\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ablehnungen\"\n    },\n    \"Ablenkung\": {\n        \"form\": \"Ablenkung\",\n        \"polarity\": \"-0.0435\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ablenkungen\"\n    },\n    \"Abnahme\": {\n        \"form\": \"Abnahme\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abnahmen\"\n    },\n    \"Abneigung\": {\n        \"form\": \"Abneigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abneigungen\"\n    },\n    \"Abnutzung\": {\n        \"form\": \"Abnutzung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abnutzungen\"\n    },\n    \"Abriss\": {\n        \"form\": \"Abriss\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abrisse,Abrissen,Abrisses\"\n    },\n    \"Abrutsch\": {\n        \"form\": \"Abrutsch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abrutschen,Abrutsche,Abrutsches,Abrutschs\"\n    },\n    \"Abschaffung\": {\n        \"form\": \"Abschaffung\",\n        \"polarity\": \"-0.058\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschaffungen\"\n    },\n    \"Abschreckung\": {\n        \"form\": \"Abschreckung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschreckungen\"\n    },\n    \"Abschreibung\": {\n        \"form\": \"Abschreibung\",\n        \"polarity\": \"-0.3345\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschreibungen\"\n    },\n    \"Abschuß\": {\n        \"form\": \"Abschuß\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschüsse,Abschusses,Abschüssen\"\n    },\n    \"Abschuss\": {\n        \"form\": \"Abschuss\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschüsse,Abschusse,Abschusses,Abschüssen\"\n    },\n    \"Abschwächung\": {\n        \"form\": \"Abschwächung\",\n        \"polarity\": \"-0.1935\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschwächungen\"\n    },\n    \"Absenkung\": {\n        \"form\": \"Absenkung\",\n        \"polarity\": \"-0.3434\",\n        \"pos\": \"NN\",\n        \"sense\": \"Absenkungen\"\n    },\n    \"Abspaltung\": {\n        \"form\": \"Abspaltung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abspaltungen\"\n    },\n    \"Absperrung\": {\n        \"form\": \"Absperrung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Absperrungen\"\n    },\n    \"Abstieg\": {\n        \"form\": \"Abstieg\",\n        \"polarity\": \"-0.3215\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstiegs,Abstiege,Abstiegen,Abstieges\"\n    },\n    \"Abstoß\": {\n        \"form\": \"Abstoß\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstößen,Abstöße,Abstoße,Abstoßes\"\n    },\n    \"Abstrich\": {\n        \"form\": \"Abstrich\",\n        \"polarity\": \"-0.3201\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstrichen,Abstrichs,Abstriches,Abstriche\"\n    },\n    \"Abstumpfung\": {\n        \"form\": \"Abstumpfung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstumpfungen\"\n    },\n    \"Absturz\": {\n        \"form\": \"Absturz\",\n        \"polarity\": \"-0.4739\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstürzen,Absturze,Absturzes,Abstürze\"\n    },\n    \"Absurdität\": {\n        \"form\": \"Absurdität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Absurditäten\"\n    },\n    \"Abweichung\": {\n        \"form\": \"Abweichung\",\n        \"polarity\": \"-0.3462\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abweichungen\"\n    },\n    \"Abweisung\": {\n        \"form\": \"Abweisung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abweisungen\"\n    },\n    \"Abwertung\": {\n        \"form\": \"Abwertung\",\n        \"polarity\": \"-0.3283\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abwertungen\"\n    },\n    \"Abwärtstrend\": {\n        \"form\": \"Abwärtstrend\",\n        \"polarity\": \"-0.1941\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abwärtstrends\"\n    },\n    \"Abzocke\": {\n        \"form\": \"Abzocke\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abzocken\"\n    },\n    \"Achtlosigkeit\": {\n        \"form\": \"Achtlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Achtlosigkeiten\"\n    },\n    \"Affäre\": {\n        \"form\": \"Affäre\",\n        \"polarity\": \"-0.1794\",\n        \"pos\": \"NN\",\n        \"sense\": \"Affären\"\n    },\n    \"Aggression\": {\n        \"form\": \"Aggression\",\n        \"polarity\": \"-0.4889\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aggressionen\"\n    },\n    \"Aggressivität\": {\n        \"form\": \"Aggressivität\",\n        \"polarity\": \"-0.1958\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aggressivitäten\"\n    },\n    \"Aggressor\": {\n        \"form\": \"Aggressor\",\n        \"polarity\": \"-0.3155\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aggressoren,Aggressors\"\n    },\n    \"Agitation\": {\n        \"form\": \"Agitation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Agitationen\"\n    },\n    \"Alarm\": {\n        \"form\": \"Alarm\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Alarme,Alarms,Alarmen,Alarmes\"\n    },\n    \"Alptraum\": {\n        \"form\": \"Alptraum\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Alpträume,Alpträumen,Alptraums,Alptraumes,Alptraume\"\n    },\n    \"Albtraum\": {\n        \"form\": \"Albtraum\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Albträume,Albträumen,Albtraums,Albtraumes,Albtraume\"\n    },\n    \"Amateur\": {\n        \"form\": \"Amateur\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Amateuren,Amateure,Amateurs\"\n    },\n    \"Ambivalenz\": {\n        \"form\": \"Ambivalenz\",\n        \"polarity\": \"-0.3266\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ambivalenzen\"\n    },\n    \"Androhung\": {\n        \"form\": \"Androhung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Androhungen\"\n    },\n    \"Anfälligkeit\": {\n        \"form\": \"Anfälligkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anfälligkeiten\"\n    },\n    \"Angreifer\": {\n        \"form\": \"Angreifer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Angreifers,Angreifern\"\n    },\n    \"Angriff\": {\n        \"form\": \"Angriff\",\n        \"polarity\": \"-0.212\",\n        \"pos\": \"NN\",\n        \"sense\": \"Angriffe,Angriffen,Angriffs,Angriffes\"\n    },\n    \"Angst\": {\n        \"form\": \"Angst\",\n        \"polarity\": \"-0.514\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ängste,Ängsten\"\n    },\n    \"Anklage\": {\n        \"form\": \"Anklage\",\n        \"polarity\": \"-0.3468\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anklagen\"\n    },\n    \"Anmaßung\": {\n        \"form\": \"Anmaßung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anmaßungen\"\n    },\n    \"Annullierung\": {\n        \"form\": \"Annullierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Annullierungen\"\n    },\n    \"Anomalie\": {\n        \"form\": \"Anomalie\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anomalien\"\n    },\n    \"Anspannung\": {\n        \"form\": \"Anspannung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anspannungen\"\n    },\n    \"Anstrengung\": {\n        \"form\": \"Anstrengung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anstrengungen\"\n    },\n    \"Antipathie\": {\n        \"form\": \"Antipathie\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Antipathien\"\n    },\n    \"Arbeitslose\": {\n        \"form\": \"Arbeitslose\",\n        \"polarity\": \"-0.3549\",\n        \"pos\": \"NN\",\n        \"sense\": \"Arbeitslosen,Arbeitsloser,Arbeitslosem\"\n    },\n    \"Arbeitslosigkeit\": {\n        \"form\": \"Arbeitslosigkeit\",\n        \"polarity\": \"-0.3654\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Armut\": {\n        \"form\": \"Armut\",\n        \"polarity\": \"-0.2038\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Arroganz\": {\n        \"form\": \"Arroganz\",\n        \"polarity\": \"-0.3289\",\n        \"pos\": \"NN\",\n        \"sense\": \"Arroganzen\"\n    },\n    \"Arschloch\": {\n        \"form\": \"Arschloch\",\n        \"polarity\": \"-0.1901\",\n        \"pos\": \"NN\",\n        \"sense\": \"Arschlöcher,Arschlochs,Arschlöchern,Arschloches,Arschloche\"\n    },\n    \"Attacke\": {\n        \"form\": \"Attacke\",\n        \"polarity\": \"-0.47\",\n        \"pos\": \"NN\",\n        \"sense\": \"Attacken\"\n    },\n    \"Aufhebung\": {\n        \"form\": \"Aufhebung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufhebungen\"\n    },\n    \"Auflösung\": {\n        \"form\": \"Auflösung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auflösungen\"\n    },\n    \"Aufregung\": {\n        \"form\": \"Aufregung\",\n        \"polarity\": \"-0.0386\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufregungen\"\n    },\n    \"Aufruhr\": {\n        \"form\": \"Aufruhr\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufruhre,Aufruhrs,Aufruhren,Aufruhres\"\n    },\n    \"Aufschrei\": {\n        \"form\": \"Aufschrei\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufschreien,Aufschreis,Aufschreie,Aufschreies\"\n    },\n    \"Aufstand\": {\n        \"form\": \"Aufstand\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufstandes,Aufstände,Aufstands,Aufständen,Aufstande\"\n    },\n    \"Ausbeute\": {\n        \"form\": \"Ausbeute\",\n        \"polarity\": \"-0.1894\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbeuten\"\n    },\n    \"Ausbeuter\": {\n        \"form\": \"Ausbeuter\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbeuters,Ausbeutern\"\n    },\n    \"Ausbeutung\": {\n        \"form\": \"Ausbeutung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbeutungen\"\n    },\n    \"Ausbruch\": {\n        \"form\": \"Ausbruch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbruchs,Ausbruches,Ausbrüche,Ausbrüchen,Ausbruche\"\n    },\n    \"Auseinandersetzung\": {\n        \"form\": \"Auseinandersetzung\",\n        \"polarity\": \"-0.0603\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auseinandersetzungen\"\n    },\n    \"Ausfall\": {\n        \"form\": \"Ausfall\",\n        \"polarity\": \"-0.2164\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausfällen,Ausfälle,Ausfalles,Ausfalls,Ausfalle\"\n    },\n    \"Ausgrenzung\": {\n        \"form\": \"Ausgrenzung\",\n        \"polarity\": \"-0.626\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausgrenzungen\"\n    },\n    \"Auslöschung\": {\n        \"form\": \"Auslöschung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auslöschungen\"\n    },\n    \"Ausrottung\": {\n        \"form\": \"Ausrottung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausrottungen\"\n    },\n    \"Ausschließung\": {\n        \"form\": \"Ausschließung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausschließungen\"\n    },\n    \"Aussetzung\": {\n        \"form\": \"Aussetzung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aussetzungen\"\n    },\n    \"Banalität\": {\n        \"form\": \"Banalität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Banalitäten\"\n    },\n    \"Bankrott\": {\n        \"form\": \"Bankrott\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bankrotte,Bankrotts,Bankrottes,Bankrotten\"\n    },\n    \"Barriere\": {\n        \"form\": \"Barriere\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Barrieren\"\n    },\n    \"Bedeutungslosigkeit\": {\n        \"form\": \"Bedeutungslosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedeutungslosigkeiten\"\n    },\n    \"Bedrohung\": {\n        \"form\": \"Bedrohung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedrohungen\"\n    },\n    \"Bedrängung\": {\n        \"form\": \"Bedrängung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedrängungen\"\n    },\n    \"Bedrückung\": {\n        \"form\": \"Bedrückung\",\n        \"polarity\": \"-0.0435\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedrückungen\"\n    },\n    \"Bedürftige\": {\n        \"form\": \"Bedürftige\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedürftigen\"\n    },\n    \"Beeinträchtigung\": {\n        \"form\": \"Beeinträchtigung\",\n        \"polarity\": \"-0.3472\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beeinträchtigungen\"\n    },\n    \"Befall\": {\n        \"form\": \"Befall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Befalls,Befälle,Befällen,Befalles,Befalle\"\n    },\n    \"Befangenheit\": {\n        \"form\": \"Befangenheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Befangenheiten\"\n    },\n    \"Befürchtung\": {\n        \"form\": \"Befürchtung\",\n        \"polarity\": \"-0.4903\",\n        \"pos\": \"NN\",\n        \"sense\": \"Befürchtungen\"\n    },\n    \"Begrenzung\": {\n        \"form\": \"Begrenzung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Begrenzungen\"\n    },\n    \"Behinderung\": {\n        \"form\": \"Behinderung\",\n        \"polarity\": \"-0.3578\",\n        \"pos\": \"NN\",\n        \"sense\": \"Behinderungen\"\n    },\n    \"Belastung\": {\n        \"form\": \"Belastung\",\n        \"polarity\": \"-0.3711\",\n        \"pos\": \"NN\",\n        \"sense\": \"Belastungen\"\n    },\n    \"Beleidigung\": {\n        \"form\": \"Beleidigung\",\n        \"polarity\": \"-0.3432\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beleidigungen\"\n    },\n    \"Belästigung\": {\n        \"form\": \"Belästigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Belästigungen\"\n    },\n    \"Beschneidung\": {\n        \"form\": \"Beschneidung\",\n        \"polarity\": \"-0.3313\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschneidungen\"\n    },\n    \"Beschränkung\": {\n        \"form\": \"Beschränkung\",\n        \"polarity\": \"-0.3518\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschränkungen\"\n    },\n    \"Beschuldigung\": {\n        \"form\": \"Beschuldigung\",\n        \"polarity\": \"-0.3209\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschuldigungen\"\n    },\n    \"Beschwerde\": {\n        \"form\": \"Beschwerde\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschwerden\"\n    },\n    \"Beschwerlichkeit\": {\n        \"form\": \"Beschwerlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschwerlichkeiten\"\n    },\n    \"Beschädigung\": {\n        \"form\": \"Beschädigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschädigungen\"\n    },\n    \"Beschäftigungslose\": {\n        \"form\": \"Beschäftigungslose\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschäftigungslosen\"\n    },\n    \"Beschäftigungsloser\": {\n        \"form\": \"Beschäftigungsloser\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Beschämung\": {\n        \"form\": \"Beschämung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschämungen\"\n    },\n    \"Beseitigung\": {\n        \"form\": \"Beseitigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beseitigungnen\"\n    },\n    \"Besorgnis\": {\n        \"form\": \"Besorgnis\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Besorgnissen,Besorgnisse\"\n    },\n    \"Bestechung\": {\n        \"form\": \"Bestechung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bestechungen\"\n    },\n    \"Besteuerung\": {\n        \"form\": \"Besteuerung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Besteuerungen\"\n    },\n    \"Bestrafung\": {\n        \"form\": \"Bestrafung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bestrafungen\"\n    },\n    \"Bestürzung\": {\n        \"form\": \"Bestürzung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Betrug\": {\n        \"form\": \"Betrug\",\n        \"polarity\": \"-0.4913\",\n        \"pos\": \"NN\",\n        \"sense\": \"Betrugs,Betruges,Betruge\"\n    },\n    \"Betrüger\": {\n        \"form\": \"Betrüger\",\n        \"polarity\": \"-0.3311\",\n        \"pos\": \"NN\",\n        \"sense\": \"Betrügers,Betrügern\"\n    },\n    \"Beule\": {\n        \"form\": \"Beule\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beulen\"\n    },\n    \"Beunruhigung\": {\n        \"form\": \"Beunruhigung\",\n        \"polarity\": \"-0.324\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beunruhigungen\"\n    },\n    \"Bevormundung\": {\n        \"form\": \"Bevormundung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bevormundungen\"\n    },\n    \"Bitterkeit\": {\n        \"form\": \"Bitterkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bitterkeiten\"\n    },\n    \"Blindheit\": {\n        \"form\": \"Blindheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Blockade\": {\n        \"form\": \"Blockade\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Blockaden\"\n    },\n    \"Blockierung\": {\n        \"form\": \"Blockierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Blockierungen\"\n    },\n    \"Blödheit\": {\n        \"form\": \"Blödheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Blödheiten\"\n    },\n    \"Bombardement\": {\n        \"form\": \"Bombardement\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bombardements\"\n    },\n    \"Bombardierung\": {\n        \"form\": \"Bombardierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bombardierungen\"\n    },\n    \"Bombe\": {\n        \"form\": \"Bombe\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bomben\"\n    },\n    \"Bosheit\": {\n        \"form\": \"Bosheit\",\n        \"polarity\": \"-0.3371\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bosheiten\"\n    },\n    \"Brand\": {\n        \"form\": \"Brand\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bränden,Brände,Brandes,Brands,Brande\"\n    },\n    \"Bruch\": {\n        \"form\": \"Bruch\",\n        \"polarity\": \"-0.3463\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bruchs,Brüche,Bruches,Brüchen,Bruche\"\n    },\n    \"Brutalität\": {\n        \"form\": \"Brutalität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Brutalitäten\"\n    },\n    \"Bußgeld\": {\n        \"form\": \"Bußgeld\",\n        \"polarity\": \"-0.3377\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bußgeldes,Bußgelds,Bußgelder,Bußgeldern\"\n    },\n    \"Bösartigkeit\": {\n        \"form\": \"Bösartigkeit\",\n        \"polarity\": \"-0.3189\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bösartigkeiten\"\n    },\n    \"Bösewicht\": {\n        \"form\": \"Bösewicht\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bösewichten,Bösewichte,Bösewichts,Bösewichtes,Bösewichter\"\n    },\n    \"Bürde\": {\n        \"form\": \"Bürde\",\n        \"polarity\": \"-0.0524\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bürden\"\n    },\n    \"Chaos\": {\n        \"form\": \"Chaos\",\n        \"polarity\": \"-0.3489\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Crash\": {\n        \"form\": \"Crash\",\n        \"polarity\": \"-0.1885\",\n        \"pos\": \"NN\",\n        \"sense\": \"Crashs\"\n    },\n    \"Defekt\": {\n        \"form\": \"Defekt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Defekten,Defekts,Defektes,Defekte\"\n    },\n    \"Defizit\": {\n        \"form\": \"Defizit\",\n        \"polarity\": \"-0.347\",\n        \"pos\": \"NN\",\n        \"sense\": \"Defiziten,Defizits,Defizite,Defizites\"\n    },\n    \"Deformation\": {\n        \"form\": \"Deformation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Deformationen\"\n    },\n    \"Degradierung\": {\n        \"form\": \"Degradierung\",\n        \"polarity\": \"-0.3137\",\n        \"pos\": \"NN\",\n        \"sense\": \"Degradierungen\"\n    },\n    \"Dekadenz\": {\n        \"form\": \"Dekadenz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Demütigung\": {\n        \"form\": \"Demütigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Demütigungen\"\n    },\n    \"Denkfehler\": {\n        \"form\": \"Denkfehler\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Denkfehlern,Denkfehlers\"\n    },\n    \"Depression\": {\n        \"form\": \"Depression\",\n        \"polarity\": \"-0.4951\",\n        \"pos\": \"NN\",\n        \"sense\": \"Depressionen\"\n    },\n    \"Desaster\": {\n        \"form\": \"Desaster\",\n        \"polarity\": \"-0.3413\",\n        \"pos\": \"NN\",\n        \"sense\": \"Desastern,Desasters\"\n    },\n    \"Desinteresse\": {\n        \"form\": \"Desinteresse\",\n        \"polarity\": \"-0.3348\",\n        \"pos\": \"NN\",\n        \"sense\": \"Desinteresses\"\n    },\n    \"Dezimierung\": {\n        \"form\": \"Dezimierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dezimierungen\"\n    },\n    \"Dieb\": {\n        \"form\": \"Dieb\",\n        \"polarity\": \"-0.1962\",\n        \"pos\": \"NN\",\n        \"sense\": \"Diebes,Diebs,Dieben,Diebe\"\n    },\n    \"Diebstahl\": {\n        \"form\": \"Diebstahl\",\n        \"polarity\": \"-0.3505\",\n        \"pos\": \"NN\",\n        \"sense\": \"Diebstahls,Diebstähle,Diebstahles,Diebstählen\"\n    },\n    \"Diffamierung\": {\n        \"form\": \"Diffamierung\",\n        \"polarity\": \"-0.4591\",\n        \"pos\": \"NN\",\n        \"sense\": \"Diffamierungen\"\n    },\n    \"Diktator\": {\n        \"form\": \"Diktator\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Diktatoren,Diktators\"\n    },\n    \"Dilemma\": {\n        \"form\": \"Dilemma\",\n        \"polarity\": \"-0.3403\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dilemmas,Dilemmata\"\n    },\n    \"Diskriminierung\": {\n        \"form\": \"Diskriminierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Diskriminierungen\"\n    },\n    \"Dissens\": {\n        \"form\": \"Dissens\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dissensen,Dissense,Dissenses\"\n    },\n    \"Dominierung\": {\n        \"form\": \"Dominierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dominierungen\"\n    },\n    \"Doppeldeutigkeit\": {\n        \"form\": \"Doppeldeutigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Doppeldeutigkeiten\"\n    },\n    \"Doppelspiel\": {\n        \"form\": \"Doppelspiel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Doppelspiele,Doppelspieles,Doppelspiels,Doppelspielen\"\n    },\n    \"Dreck\": {\n        \"form\": \"Dreck\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dreckes,Drecks\"\n    },\n    \"Drift\": {\n        \"form\": \"Drift\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Driften\"\n    },\n    \"Drohung\": {\n        \"form\": \"Drohung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Drohungen\"\n    },\n    \"Drosselung\": {\n        \"form\": \"Drosselung\",\n        \"polarity\": \"-0.3178\",\n        \"pos\": \"NN\",\n        \"sense\": \"Drosselungen\"\n    },\n    \"Dummheit\": {\n        \"form\": \"Dummheit\",\n        \"polarity\": \"-0.4877\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dummheiten\"\n    },\n    \"Dummkopf\": {\n        \"form\": \"Dummkopf\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dummköpfen,Dummkopfes,Dummköpfe,Dummkopfs\"\n    },\n    \"Dunkelheit\": {\n        \"form\": \"Dunkelheit\",\n        \"polarity\": \"-0.3547\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dunkelheiten\"\n    },\n    \"Durcheinander\": {\n        \"form\": \"Durcheinander\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Durcheinanders,Durcheinandern\"\n    },\n    \"Dussel\": {\n        \"form\": \"Dussel\",\n        \"polarity\": \"-0.3094\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dussels,Dusseln\"\n    },\n    \"Dämpfer\": {\n        \"form\": \"Dämpfer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dämpfern,Dämpfers\"\n    },\n    \"Dürre\": {\n        \"form\": \"Dürre\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dürren\"\n    },\n    \"Düsternis\": {\n        \"form\": \"Düsternis\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Düsternissen,Düsternisse\"\n    },\n    \"Egoist\": {\n        \"form\": \"Egoist\",\n        \"polarity\": \"-0.3179\",\n        \"pos\": \"NN\",\n        \"sense\": \"Egoisten\"\n    },\n    \"Ehebruch\": {\n        \"form\": \"Ehebruch\",\n        \"polarity\": \"-0.4743\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ehebruches,Ehebruchs,Ehebrüche,Ehebrüchen\"\n    },\n    \"Einbrecher\": {\n        \"form\": \"Einbrecher\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einbrechers,Einbrechern\"\n    },\n    \"Einbruch\": {\n        \"form\": \"Einbruch\",\n        \"polarity\": \"-0.3498\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einbrüche,Einbruches,Einbrüchen,Einbruchs\"\n    },\n    \"Einbuße\": {\n        \"form\": \"Einbuße\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einbußen\"\n    },\n    \"Einsamkeit\": {\n        \"form\": \"Einsamkeit\",\n        \"polarity\": \"-0.339\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einsamkeiten\"\n    },\n    \"Einschlag\": {\n        \"form\": \"Einschlag\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einschlägen,Einschlages,Einschläge,Einschlags\"\n    },\n    \"Einschränkung\": {\n        \"form\": \"Einschränkung\",\n        \"polarity\": \"-0.2048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einschränkungen\"\n    },\n    \"Einschüchterung\": {\n        \"form\": \"Einschüchterung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einschüchterungen\"\n    },\n    \"insturz\": {\n        \"form\": \"insturz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einstürzen,Einsturzs,Einsturzes,Einstürze\"\n    },\n    \"Ekel\": {\n        \"form\": \"Ekel\",\n        \"polarity\": \"-0.462\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ekels\"\n    },\n    \"Elend\": {\n        \"form\": \"Elend\",\n        \"polarity\": \"-0.2013\",\n        \"pos\": \"NN\",\n        \"sense\": \"Elends,Elendes\"\n    },\n    \"Empörung\": {\n        \"form\": \"Empörung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Empörungen\"\n    },\n    \"Ende\": {\n        \"form\": \"Ende\",\n        \"polarity\": \"-0.2088\",\n        \"pos\": \"NN\",\n        \"sense\": \"Endes,Enden\"\n    },\n    \"Energielosigkeit\": {\n        \"form\": \"Energielosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Entbindung\": {\n        \"form\": \"Entbindung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entbindungen\"\n    },\n    \"Entfremdung\": {\n        \"form\": \"Entfremdung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entfremdungen\"\n    },\n    \"Entführung\": {\n        \"form\": \"Entführung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entführungen\"\n    },\n    \"Enthauptung\": {\n        \"form\": \"Enthauptung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Enthauptungen\"\n    },\n    \"Entlassung\": {\n        \"form\": \"Entlassung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entlassungen\"\n    },\n    \"Entmutigung\": {\n        \"form\": \"Entmutigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entmutigungen\"\n    },\n    \"Enttäuschung\": {\n        \"form\": \"Enttäuschung\",\n        \"polarity\": \"-0.3378\",\n        \"pos\": \"NN\",\n        \"sense\": \"Enttäuschungen\"\n    },\n    \"Entziehung\": {\n        \"form\": \"Entziehung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entziehungen\"\n    },\n    \"Epidemie\": {\n        \"form\": \"Epidemie\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Epidemien\"\n    },\n    \"Ermahnung\": {\n        \"form\": \"Ermahnung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ermahnungen\"\n    },\n    \"Ermordung\": {\n        \"form\": \"Ermordung\",\n        \"polarity\": \"-0.332\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ermordungen\"\n    },\n    \"Ermüdung\": {\n        \"form\": \"Ermüdung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ermüdungen\"\n    },\n    \"Erniedrigung\": {\n        \"form\": \"Erniedrigung\",\n        \"polarity\": \"-0.3259\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erniedrigungen\"\n    },\n    \"Ernüchterung\": {\n        \"form\": \"Ernüchterung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ernüchterungen\"\n    },\n    \"Erosion\": {\n        \"form\": \"Erosion\",\n        \"polarity\": \"-0.0666\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erosionen\"\n    },\n    \"Erpressung\": {\n        \"form\": \"Erpressung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erpressungen\"\n    },\n    \"Erschöpfung\": {\n        \"form\": \"Erschöpfung\",\n        \"polarity\": \"-0.0595\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erschöpfungen\"\n    },\n    \"Erschütterung\": {\n        \"form\": \"Erschütterung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erschütterungen\"\n    },\n    \"Explosion\": {\n        \"form\": \"Explosion\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Explosionen\"\n    },\n    \"Fahrlässigkeit\": {\n        \"form\": \"Fahrlässigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fahrlässigkeiten\"\n    },\n    \"Farce\": {\n        \"form\": \"Farce\",\n        \"polarity\": \"-0.3349\",\n        \"pos\": \"NN\",\n        \"sense\": \"Farcen\"\n    },\n    \"Faschist\": {\n        \"form\": \"Faschist\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Faschisten\"\n    },\n    \"Faulheit\": {\n        \"form\": \"Faulheit\",\n        \"polarity\": \"-0.611\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Fehde\": {\n        \"form\": \"Fehde\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehden\"\n    },\n    \"Fehlanzeige\": {\n        \"form\": \"Fehlanzeige\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlanzeigen\"\n    },\n    \"Fehler\": {\n        \"form\": \"Fehler\",\n        \"polarity\": \"-0.6752\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlern,Fehlers\"\n    },\n    \"Fehlermeldung\": {\n        \"form\": \"Fehlermeldung\",\n        \"polarity\": \"-0.4765\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlermeldungen\"\n    },\n    \"Fehlkauf\": {\n        \"form\": \"Fehlkauf\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlkaufes,Fehlkaufs,Fehlkäufe,Fehlkäufen\"\n    },\n    \"Fehlkonstruktion\": {\n        \"form\": \"Fehlkonstruktion\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlkonstruktionen\"\n    },\n    \"Fehlleistung\": {\n        \"form\": \"Fehlleistung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlleistungen\"\n    },\n    \"Fehltritt\": {\n        \"form\": \"Fehltritt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehltrittes,Fehltritten,Fehltritte,Fehltritts\"\n    },\n    \"Fehlverhalten\": {\n        \"form\": \"Fehlverhalten\",\n        \"polarity\": \"-0.3461\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fehlverhaltens\"\n    },\n    \"Feind\": {\n        \"form\": \"Feind\",\n        \"polarity\": \"-0.8054\",\n        \"pos\": \"NN\",\n        \"sense\": \"Feindes,Feinde,Feinds,Feinden\"\n    },\n    \"Feuer\": {\n        \"form\": \"Feuer\",\n        \"polarity\": \"-0.0445\",\n        \"pos\": \"NN\",\n        \"sense\": \"Feuern,Feuers\"\n    },\n    \"Fiasko\": {\n        \"form\": \"Fiasko\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fiaskos\"\n    },\n    \"Finanzkrise\": {\n        \"form\": \"Finanzkrise\",\n        \"polarity\": \"-0.3283\",\n        \"pos\": \"NN\",\n        \"sense\": \"Finanzkrisen\"\n    },\n    \"Finte\": {\n        \"form\": \"Finte\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Finten\"\n    },\n    \"Flaute\": {\n        \"form\": \"Flaute\",\n        \"polarity\": \"-0.0413\",\n        \"pos\": \"NN\",\n        \"sense\": \"Flauten\"\n    },\n    \"Fluch\": {\n        \"form\": \"Fluch\",\n        \"polarity\": \"-0.3534\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fluchs,Flüchen,Flüche,Fluches\"\n    },\n    \"Flucht\": {\n        \"form\": \"Flucht\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fluchten\"\n    },\n    \"Flüchtiger\": {\n        \"form\": \"Flüchtiger\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Flüchtigen\"\n    },\n    \"Flüchtigkeit\": {\n        \"form\": \"Flüchtigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Flüchtigkeiten\"\n    },\n    \"Flüchtling\": {\n        \"form\": \"Flüchtling\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Flüchtlings,Flüchtlinge,Flüchtlinges,Flüchtlingen\"\n    },\n    \"Frechheit\": {\n        \"form\": \"Frechheit\",\n        \"polarity\": \"-0.4665\",\n        \"pos\": \"NN\",\n        \"sense\": \"Frechheiten\"\n    },\n    \"Frust\": {\n        \"form\": \"Frust\",\n        \"polarity\": \"-0.469\",\n        \"pos\": \"NN\",\n        \"sense\": \"Frustes,Frusts\"\n    },\n    \"Frustration\": {\n        \"form\": \"Frustration\",\n        \"polarity\": \"-0.3354\",\n        \"pos\": \"NN\",\n        \"sense\": \"Frustrationen\"\n    },\n    \"Furcht\": {\n        \"form\": \"Furcht\",\n        \"polarity\": \"-0.5012\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Fälschung\": {\n        \"form\": \"Fälschung\",\n        \"polarity\": \"-0.3377\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fälschungen\"\n    },\n    \"Gammler\": {\n        \"form\": \"Gammler\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gammlers,Gammlern\"\n    },\n    \"Gangster\": {\n        \"form\": \"Gangster\",\n        \"polarity\": \"-0.3375\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gangsters,Gangstern\"\n    },\n    \"Garnichts\": {\n        \"form\": \"Garnichts\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gauner\": {\n        \"form\": \"Gauner\",\n        \"polarity\": \"-0.4592\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gaunern,Gauners\"\n    },\n    \"Gebrechen\": {\n        \"form\": \"Gebrechen\",\n        \"polarity\": \"-0.3251\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gebrechens\"\n    },\n    \"Gedränge\": {\n        \"form\": \"Gedränge\",\n        \"polarity\": \"-0.0571\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gedrängen,Gedränges\"\n    },\n    \"Gefahr\": {\n        \"form\": \"Gefahr\",\n        \"polarity\": \"-1.0\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gefahren\"\n    },\n    \"Gefecht\": {\n        \"form\": \"Gefecht\",\n        \"polarity\": \"-0.3373\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gefechten,Gefechtes,Gefechte,Gefechts\"\n    },\n    \"Gefährdung\": {\n        \"form\": \"Gefährdung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gefährdungen\"\n    },\n    \"Gegner\": {\n        \"form\": \"Gegner\",\n        \"polarity\": \"-0.344\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gegnern,Gegners\"\n    },\n    \"Geisteskrankheit\": {\n        \"form\": \"Geisteskrankheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geisteskrankheiten\"\n    },\n    \"Geistlosigkeit\": {\n        \"form\": \"Geistlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geistlosigkeiten\"\n    },\n    \"Geiz\": {\n        \"form\": \"Geiz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geizen,Geizes,Geize\"\n    },\n    \"Geizhals\": {\n        \"form\": \"Geizhals\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geizhälsen,Geizhälse,Geizhalse,Geizhalses\"\n    },\n    \"Geizkragen\": {\n        \"form\": \"Geizkragen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geizkragens\"\n    },\n    \"Geldstrafe\": {\n        \"form\": \"Geldstrafe\",\n        \"polarity\": \"-0.3299\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geldstrafen\"\n    },\n    \"Geschmacklosigkeit\": {\n        \"form\": \"Geschmacklosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geschmacklosigkeiten\"\n    },\n    \"Geschäftsauflösung\": {\n        \"form\": \"Geschäftsauflösung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geschäftsauflösungen\"\n    },\n    \"Gestank\": {\n        \"form\": \"Gestank\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gestanks,Gestankes,Gestanke\"\n    },\n    \"Gewalt\": {\n        \"form\": \"Gewalt\",\n        \"polarity\": \"-0.5363\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gewalten\"\n    },\n    \"Gewalttätige\": {\n        \"form\": \"Gewalttätige\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gewalttätigen\"\n    },\n    \"Gewalttätiger\": {\n        \"form\": \"Gewalttätiger\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gift\": {\n        \"form\": \"Gift\",\n        \"polarity\": \"-0.3505\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gifts,Giftes,Giften,Gifte\"\n    },\n    \"Glanzlosigkeit\": {\n        \"form\": \"Glanzlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gleichgültigkeit\": {\n        \"form\": \"Gleichgültigkeit\",\n        \"polarity\": \"-0.343\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Glücklosigkeit\": {\n        \"form\": \"Glücklosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gnadenlosigkeit\": {\n        \"form\": \"Gnadenlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Grausamkeit\": {\n        \"form\": \"Grausamkeit\",\n        \"polarity\": \"-0.3348\",\n        \"pos\": \"NN\",\n        \"sense\": \"Grausamkeiten\"\n    },\n    \"Groll\": {\n        \"form\": \"Groll\",\n        \"polarity\": \"-0.6021\",\n        \"pos\": \"NN\",\n        \"sense\": \"Grolls,Grolles\"\n    },\n    \"Groteske\": {\n        \"form\": \"Groteske\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Grotesken\"\n    },\n    \"Habgier\": {\n        \"form\": \"Habgier\",\n        \"polarity\": \"-0.0532\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Haft\": {\n        \"form\": \"Haft\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Handgemenge\": {\n        \"form\": \"Handgemenge\",\n        \"polarity\": \"-0.3174\",\n        \"pos\": \"NN\",\n        \"sense\": \"Handgemenges,Handgemengen\"\n    },\n    \"Handicap\": {\n        \"form\": \"Handicap\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"NN\",\n        \"sense\": \"Handicaps\"\n    },\n    \"Handikap\": {\n        \"form\": \"Handikap\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"NN\",\n        \"sense\": \"Handikaps\"\n    },\n    \"Hass\": {\n        \"form\": \"Hass\",\n        \"polarity\": \"-0.5014\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hasse,Hasses\"\n    },\n    \"Heimsuchung\": {\n        \"form\": \"Heimsuchung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heimsuchungen\"\n    },\n    \"Hektik\": {\n        \"form\": \"Hektik\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Hemmung\": {\n        \"form\": \"Hemmung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hemmungen\"\n    },\n    \"Herausforderung\": {\n        \"form\": \"Herausforderung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Herausforderungen\"\n    },\n    \"Heuchelei\": {\n        \"form\": \"Heuchelei\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heucheleien\"\n    },\n    \"Heuchler\": {\n        \"form\": \"Heuchler\",\n        \"polarity\": \"-0.3251\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heuchlers,Heuchlern\"\n    },\n    \"Hilflosigkeit\": {\n        \"form\": \"Hilflosigkeit\",\n        \"polarity\": \"-0.3394\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Hindernis\": {\n        \"form\": \"Hindernis\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hinderniss,Hindernisses,Hindernissen,Hindernisse\"\n    },\n    \"Hinterhalt\": {\n        \"form\": \"Hinterhalt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hinterhaltes,Hinterhalts,Hinterhalte,Hinterhalten\"\n    },\n    \"Hinterlist\": {\n        \"form\": \"Hinterlist\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Hohn\": {\n        \"form\": \"Hohn\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hohnes,Hohns\"\n    },\n    \"Horror\": {\n        \"form\": \"Horror\",\n        \"polarity\": \"-0.0509\",\n        \"pos\": \"NN\",\n        \"sense\": \"Horrors\"\n    },\n    \"Hunger\": {\n        \"form\": \"Hunger\",\n        \"polarity\": \"-0.3531\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hungers\"\n    },\n    \"Hungersnot\": {\n        \"form\": \"Hungersnot\",\n        \"polarity\": \"-0.4739\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hungersnöten,Hungersnöte\"\n    },\n    \"Hungertod\": {\n        \"form\": \"Hungertod\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hungertods,Hungertodes,Hungertode,Hungertoden\"\n    },\n    \"Hysterie\": {\n        \"form\": \"Hysterie\",\n        \"polarity\": \"-0.3386\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hysterien\"\n    },\n    \"Härte\": {\n        \"form\": \"Härte\",\n        \"polarity\": \"-0.0446\",\n        \"pos\": \"NN\",\n        \"sense\": \"Härten\"\n    },\n    \"Hölle\": {\n        \"form\": \"Hölle\",\n        \"polarity\": \"-0.5052\",\n        \"pos\": \"NN\",\n        \"sense\": \"Höllen\"\n    },\n    \"Idiot\": {\n        \"form\": \"Idiot\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Idioten\"\n    },\n    \"Illegalität\": {\n        \"form\": \"Illegalität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Illegalitäten\"\n    },\n    \"Immobilität\": {\n        \"form\": \"Immobilität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ineffizienz\": {\n        \"form\": \"Ineffizienz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ineffizienzen\"\n    },\n    \"Infektion\": {\n        \"form\": \"Infektion\",\n        \"polarity\": \"-0.2059\",\n        \"pos\": \"NN\",\n        \"sense\": \"Infektionen\"\n    },\n    \"Infiltration\": {\n        \"form\": \"Infiltration\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Infiltrationen\"\n    },\n    \"Inflation\": {\n        \"form\": \"Inflation\",\n        \"polarity\": \"-0.3462\",\n        \"pos\": \"NN\",\n        \"sense\": \"Inflationen\"\n    },\n    \"Inkompetenz\": {\n        \"form\": \"Inkompetenz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Inkompetenzen\"\n    },\n    \"Inkonsequenz\": {\n        \"form\": \"Inkonsequenz\",\n        \"polarity\": \"-0.0455\",\n        \"pos\": \"NN\",\n        \"sense\": \"Inkonsequenzen\"\n    },\n    \"Inkonsistenz\": {\n        \"form\": \"Inkonsistenz\",\n        \"polarity\": \"-0.3097\",\n        \"pos\": \"NN\",\n        \"sense\": \"Inkonsistenzen\"\n    },\n    \"Instabilität\": {\n        \"form\": \"Instabilität\",\n        \"polarity\": \"-0.3358\",\n        \"pos\": \"NN\",\n        \"sense\": \"Instabilitäten\"\n    },\n    \"Intervention\": {\n        \"form\": \"Intervention\",\n        \"polarity\": \"-0.1975\",\n        \"pos\": \"NN\",\n        \"sense\": \"Interventionen\"\n    },\n    \"Invasion\": {\n        \"form\": \"Invasion\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Invasionen\"\n    },\n    \"Isolation\": {\n        \"form\": \"Isolation\",\n        \"polarity\": \"-0.3453\",\n        \"pos\": \"NN\",\n        \"sense\": \"Isolationen\"\n    },\n    \"Jammer\": {\n        \"form\": \"Jammer\",\n        \"polarity\": \"-0.4613\",\n        \"pos\": \"NN\",\n        \"sense\": \"Jammers\"\n    },\n    \"Jähzorn\": {\n        \"form\": \"Jähzorn\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Jähzorns,Jähzornes\"\n    },\n    \"Kampf\": {\n        \"form\": \"Kampf\",\n        \"polarity\": \"-0.5372\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kampfs,Kampfes,Kampfe,Kämpfe,Kämpfen\"\n    },\n    \"Kapitalverbrechen\": {\n        \"form\": \"Kapitalverbrechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kapitalverbrechens\"\n    },\n    \"Kapitulation\": {\n        \"form\": \"Kapitulation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kapitulationen\"\n    },\n    \"Katastrophe\": {\n        \"form\": \"Katastrophe\",\n        \"polarity\": \"-0.5027\",\n        \"pos\": \"NN\",\n        \"sense\": \"Katastrophen\"\n    },\n    \"Keim\": {\n        \"form\": \"Keim\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Keims,Keime,Keimes,Keimen\"\n    },\n    \"Klage\": {\n        \"form\": \"Klage\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Klagen\"\n    },\n    \"Klischee\": {\n        \"form\": \"Klischee\",\n        \"polarity\": \"-0.48\",\n        \"pos\": \"NN\",\n        \"sense\": \"Klischees\"\n    },\n    \"Kläger\": {\n        \"form\": \"Kläger\",\n        \"polarity\": \"-0.3673\",\n        \"pos\": \"NN\",\n        \"sense\": \"Klägers,Klägern\"\n    },\n    \"Knappheit\": {\n        \"form\": \"Knappheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Knappheiten\"\n    },\n    \"Kollaps\": {\n        \"form\": \"Kollaps\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kollapses,Kollapsen,Kollapse\"\n    },\n    \"Kollision\": {\n        \"form\": \"Kollision\",\n        \"polarity\": \"-0.3323\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kollisionen\"\n    },\n    \"Komplikation\": {\n        \"form\": \"Komplikation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Komplikationen\"\n    },\n    \"Konflikt\": {\n        \"form\": \"Konflikt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konfliktes,Konflikte,Konflikts,Konflikten\"\n    },\n    \"Konfrontation\": {\n        \"form\": \"Konfrontation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konfrontationen\"\n    },\n    \"Konjunkturrückgang\": {\n        \"form\": \"Konjunkturrückgang\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konjunkturrückgange,Konjunkturrückganges,Konjunkturrückgangs,Konjunkturrückgänge,Konjunkturrückgängen\"\n    },\n    \"Konkurrenz\": {\n        \"form\": \"Konkurrenz\",\n        \"polarity\": \"-0.0461\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konkurrenzen\"\n    },\n    \"Konkurrenzkampf\": {\n        \"form\": \"Konkurrenzkampf\",\n        \"polarity\": \"-0.0494\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konkurrenzkampfs,Konkurrenzkampfes,Konkurrenzkampfe,Konkurrenzkämpfen,Konkurrenzkämpfe\"\n    },\n    \"Konkurs\": {\n        \"form\": \"Konkurs\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konkurse,Konkurses,Konkursen\"\n    },\n    \"Kontroverse\": {\n        \"form\": \"Kontroverse\",\n        \"polarity\": \"-0.3329\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kontroversen\"\n    },\n    \"Kopfschmerz\": {\n        \"form\": \"Kopfschmerz\",\n        \"polarity\": \"-0.1993\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kopfschmerze,Kopfschmerzes,Kopfschmerzen\"\n    },\n    \"Korruption\": {\n        \"form\": \"Korruption\",\n        \"polarity\": \"-0.3439\",\n        \"pos\": \"NN\",\n        \"sense\": \"Korruptionen\"\n    },\n    \"Kostspieligkeit\": {\n        \"form\": \"Kostspieligkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kostspieligkeiten\"\n    },\n    \"Krach\": {\n        \"form\": \"Krach\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Krächen,Kräche,Krachs,Kraches\"\n    },\n    \"Krachen\": {\n        \"form\": \"Krachen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Krächen,Krachens\"\n    },\n    \"Krankheit\": {\n        \"form\": \"Krankheit\",\n        \"polarity\": \"-0.6858\",\n        \"pos\": \"NN\",\n        \"sense\": \"Krankheiten\"\n    },\n    \"Krieg\": {\n        \"form\": \"Krieg\",\n        \"polarity\": \"-0.5364\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kriegs,Krieges,Kriegen,Kriege\"\n    },\n    \"Kriminalität\": {\n        \"form\": \"Kriminalität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Krise\": {\n        \"form\": \"Krise\",\n        \"polarity\": \"-0.3621\",\n        \"pos\": \"NN\",\n        \"sense\": \"Krisen\"\n    },\n    \"Kritik\": {\n        \"form\": \"Kritik\",\n        \"polarity\": \"-0.5308\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kritiken\"\n    },\n    \"Kritiker\": {\n        \"form\": \"Kritiker\",\n        \"polarity\": \"-0.6494\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kritikers,Kritikern\"\n    },\n    \"Kränkung\": {\n        \"form\": \"Kränkung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kränkungen\"\n    },\n    \"Krüppel\": {\n        \"form\": \"Krüppel\",\n        \"polarity\": \"-0.3203\",\n        \"pos\": \"NN\",\n        \"sense\": \"Krüppeln,Krüppels\"\n    },\n    \"Kurseinbruch\": {\n        \"form\": \"Kurseinbruch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kurseinbruchs,Kurseinbrüche,Kurseinbruches,Kurseinbrüchen\"\n    },\n    \"Kälte\": {\n        \"form\": \"Kälte\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Kündigung\": {\n        \"form\": \"Kündigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kündigungen\"\n    },\n    \"Kürzung\": {\n        \"form\": \"Kürzung\",\n        \"polarity\": \"-0.341\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kürzungen\"\n    },\n    \"Langeweile\": {\n        \"form\": \"Langeweile\",\n        \"polarity\": \"-0.0377\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Langweiler\": {\n        \"form\": \"Langweiler\",\n        \"polarity\": \"-0.0443\",\n        \"pos\": \"NN\",\n        \"sense\": \"Langweilern,Langweilers\"\n    },\n    \"Last\": {\n        \"form\": \"Last\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lasten\"\n    },\n    \"Launenhaftigkeit\": {\n        \"form\": \"Launenhaftigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Launenhaftigkeiten\"\n    },\n    \"Lebensgefahr\": {\n        \"form\": \"Lebensgefahr\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lebensgefahren\"\n    },\n    \"Leblosigkeit\": {\n        \"form\": \"Leblosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Leere\": {\n        \"form\": \"Leere\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Leichtsinn\": {\n        \"form\": \"Leichtsinn\",\n        \"polarity\": \"-0.3253\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leichtsinns,Leichtsinnes\"\n    },\n    \"Leichtsinnsfehler\": {\n        \"form\": \"Leichtsinnsfehler\",\n        \"polarity\": \"-0.0371\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leichtsinnsfehlers,Leichtsinnsfehlern\"\n    },\n    \"Leid\": {\n        \"form\": \"Leid\",\n        \"polarity\": \"-0.5056\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leides,Leids,Leide\"\n    },\n    \"Leidende\": {\n        \"form\": \"Leidende\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leidendem,Leidenden,Leidender\"\n    },\n    \"Liquidation\": {\n        \"form\": \"Liquidation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Liquidationen\"\n    },\n    \"Lähmung\": {\n        \"form\": \"Lähmung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lähmungen\"\n    },\n    \"Löschung\": {\n        \"form\": \"Löschung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Löschungen\"\n    },\n    \"Lüge\": {\n        \"form\": \"Lüge\",\n        \"polarity\": \"-0.5\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lügen\"\n    },\n    \"Lügner\": {\n        \"form\": \"Lügner\",\n        \"polarity\": \"-0.4767\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lügnern,Lügners\"\n    },\n    \"Makel\": {\n        \"form\": \"Makel\",\n        \"polarity\": \"-0.1813\",\n        \"pos\": \"NN\",\n        \"sense\": \"Makels,Makeln\"\n    },\n    \"Mangel\": {\n        \"form\": \"Mangel\",\n        \"polarity\": \"-0.3669\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mangels,Mängel,Mängeln\"\n    },\n    \"Manipulation\": {\n        \"form\": \"Manipulation\",\n        \"polarity\": \"-0.3455\",\n        \"pos\": \"NN\",\n        \"sense\": \"Manipulationen\"\n    },\n    \"Massaker\": {\n        \"form\": \"Massaker\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Massakern,Massakers\"\n    },\n    \"Maßlosigkeit\": {\n        \"form\": \"Maßlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Maßlosigkeiten\"\n    },\n    \"Melancholie\": {\n        \"form\": \"Melancholie\",\n        \"polarity\": \"-0.1859\",\n        \"pos\": \"NN\",\n        \"sense\": \"Melancholien\"\n    },\n    \"Melodrama\": {\n        \"form\": \"Melodrama\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Melodramen,Melodramas\"\n    },\n    \"Merkwürdigkeit\": {\n        \"form\": \"Merkwürdigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Merkwürdigkeiten\"\n    },\n    \"Minderung\": {\n        \"form\": \"Minderung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Minderungen\"\n    },\n    \"Minderwertigkeit\": {\n        \"form\": \"Minderwertigkeit\",\n        \"polarity\": \"-0.3201\",\n        \"pos\": \"NN\",\n        \"sense\": \"Minderwertigkeiten\"\n    },\n    \"Missachtung\": {\n        \"form\": \"Missachtung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Missachtungen\"\n    },\n    \"Missbrauch\": {\n        \"form\": \"Missbrauch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Missbräuchen,Missbrauches,Missbräuche,Missbrauchs,Missbrauche\"\n    },\n    \"Missgeschick\": {\n        \"form\": \"Missgeschick\",\n        \"polarity\": \"-0.0472\",\n        \"pos\": \"NN\",\n        \"sense\": \"Missgeschicken,Missgeschicks,Missgeschicke,Missgeschickes\"\n    },\n    \"Missglück\": {\n        \"form\": \"Missglück\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Misstrauen\": {\n        \"form\": \"Misstrauen\",\n        \"polarity\": \"-0.4778\",\n        \"pos\": \"NN\",\n        \"sense\": \"Misstrauens\"\n    },\n    \"Misstrauensantrag\": {\n        \"form\": \"Misstrauensantrag\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Misstrauensanträge,Misstrauensanträgen,Misstrauensantrages,Misstrauensantrags,Misstrauensantrage\"\n    },\n    \"Missverständnis\": {\n        \"form\": \"Missverständnis\",\n        \"polarity\": \"-0.4756\",\n        \"pos\": \"NN\",\n        \"sense\": \"Missverständnisse,Missverständnisses,Missverständnissen\"\n    },\n    \"Mist\": {\n        \"form\": \"Mist\",\n        \"polarity\": \"-0.1732\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mists,Mistes,Miste\"\n    },\n    \"Mittellosigkeit\": {\n        \"form\": \"Mittellosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Mittelmäßigkeit\": {\n        \"form\": \"Mittelmäßigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Monotonie\": {\n        \"form\": \"Monotonie\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Monotonien\"\n    },\n    \"Mord\": {\n        \"form\": \"Mord\",\n        \"polarity\": \"-0.3595\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mordes,Morde,Mords,Morden\"\n    },\n    \"Mutlosigkeit\": {\n        \"form\": \"Mutlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Müdigkeit\": {\n        \"form\": \"Müdigkeit\",\n        \"polarity\": \"-0.1995\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Mühe\": {\n        \"form\": \"Mühe\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mühen\"\n    },\n    \"Müll\": {\n        \"form\": \"Müll\",\n        \"polarity\": \"-0.3377\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mülls,Mülles\"\n    },\n    \"Nachlässigkeit\": {\n        \"form\": \"Nachlässigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Nachlässigkeiten\"\n    },\n    \"Nachteil\": {\n        \"form\": \"Nachteil\",\n        \"polarity\": \"-0.8102\",\n        \"pos\": \"NN\",\n        \"sense\": \"Nachteilen,Nachteile,Nachteils,Nachteiles\"\n    },\n    \"Naivität\": {\n        \"form\": \"Naivität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Narr\": {\n        \"form\": \"Narr\",\n        \"polarity\": \"-0.335\",\n        \"pos\": \"NN\",\n        \"sense\": \"Narren\"\n    },\n    \"Negativität\": {\n        \"form\": \"Negativität\",\n        \"polarity\": \"-0.3155\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Neid\": {\n        \"form\": \"Neid\",\n        \"polarity\": \"-0.4729\",\n        \"pos\": \"NN\",\n        \"sense\": \"Neides,Neids,Neide\"\n    },\n    \"Nervosität\": {\n        \"form\": \"Nervosität\",\n        \"polarity\": \"-0.1833\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Neustart\": {\n        \"form\": \"Neustart\",\n        \"polarity\": \"-0.0504\",\n        \"pos\": \"NN\",\n        \"sense\": \"Neustarts\"\n    },\n    \"Niedergang\": {\n        \"form\": \"Niedergang\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Niedergangs,Niederganges,Niedergange,Niedergänge,Niedergängen\"\n    },\n    \"Niedergeschlagenheit\": {\n        \"form\": \"Niedergeschlagenheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Niedergeschlagenheiten\"\n    },\n    \"Niederlage\": {\n        \"form\": \"Niederlage\",\n        \"polarity\": \"-0.3651\",\n        \"pos\": \"NN\",\n        \"sense\": \"Niederlagen\"\n    },\n    \"Not\": {\n        \"form\": \"Not\",\n        \"polarity\": \"-0.2187\",\n        \"pos\": \"NN\",\n        \"sense\": \"Nöten,Nöte\"\n    },\n    \"Notfall\": {\n        \"form\": \"Notfall\",\n        \"polarity\": \"-0.0468\",\n        \"pos\": \"NN\",\n        \"sense\": \"Notfalles,Notfällen,Notfalls,Notfälle,Notfalle\"\n    },\n    \"Notstand\": {\n        \"form\": \"Notstand\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Notstandes,Notständen,Notstands,Notstände,Notstande\"\n    },\n    \"Nutzlosigkeit\": {\n        \"form\": \"Nutzlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Nötigung\": {\n        \"form\": \"Nötigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Nötigungen\"\n    },\n    \"Oberflächlichkeit\": {\n        \"form\": \"Oberflächlichkeit\",\n        \"polarity\": \"-0.3299\",\n        \"pos\": \"NN\",\n        \"sense\": \"Oberflächlichkeiten\"\n    },\n    \"Offensive\": {\n        \"form\": \"Offensive\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Offensiven\"\n    },\n    \"Opposition\": {\n        \"form\": \"Opposition\",\n        \"polarity\": \"-0.3631\",\n        \"pos\": \"NN\",\n        \"sense\": \"Oppositionen\"\n    },\n    \"Panik\": {\n        \"form\": \"Panik\",\n        \"polarity\": \"-0.3429\",\n        \"pos\": \"NN\",\n        \"sense\": \"Paniken\"\n    },\n    \"Panne\": {\n        \"form\": \"Panne\",\n        \"polarity\": \"-0.1901\",\n        \"pos\": \"NN\",\n        \"sense\": \"Pannen\"\n    },\n    \"Pech\": {\n        \"form\": \"Pech\",\n        \"polarity\": \"-0.4823\",\n        \"pos\": \"NN\",\n        \"sense\": \"Peches,Pechen,Peche,Pechs\"\n    },\n    \"Pessimismus\": {\n        \"form\": \"Pessimismus\",\n        \"polarity\": \"-0.4715\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Pest\": {\n        \"form\": \"Pest\",\n        \"polarity\": \"-0.3456\",\n        \"pos\": \"NN\",\n        \"sense\": \"Pests\"\n    },\n    \"Pflicht\": {\n        \"form\": \"Pflicht\",\n        \"polarity\": \"-0.3577\",\n        \"pos\": \"NN\",\n        \"sense\": \"Pflichten\"\n    },\n    \"Pleite\": {\n        \"form\": \"Pleite\",\n        \"polarity\": \"-0.3323\",\n        \"pos\": \"NN\",\n        \"sense\": \"Pleiten\"\n    },\n    \"Preissturz\": {\n        \"form\": \"Preissturz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Preisstürze,Preisstürzen,Preissturzes,Preissturze,Preissturzen\"\n    },\n    \"Problem\": {\n        \"form\": \"Problem\",\n        \"polarity\": \"-0.3865\",\n        \"pos\": \"NN\",\n        \"sense\": \"Probleme,Problemen,Problems\"\n    },\n    \"Propaganda\": {\n        \"form\": \"Propaganda\",\n        \"polarity\": \"-0.4893\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Protest\": {\n        \"form\": \"Protest\",\n        \"polarity\": \"-0.3564\",\n        \"pos\": \"NN\",\n        \"sense\": \"Protestes,Protests,Proteste,Protesten\"\n    },\n    \"Provisorium\": {\n        \"form\": \"Provisorium\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Provisorien,Provisoriums\"\n    },\n    \"Provokation\": {\n        \"form\": \"Provokation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Provokationen\"\n    },\n    \"Qual\": {\n        \"form\": \"Qual\",\n        \"polarity\": \"-0.0402\",\n        \"pos\": \"NN\",\n        \"sense\": \"Qualen\"\n    },\n    \"Qualitätsminderung\": {\n        \"form\": \"Qualitätsminderung\",\n        \"polarity\": \"-0.3096\",\n        \"pos\": \"NN\",\n        \"sense\": \"Qualitätsminderungen\"\n    },\n    \"Rache\": {\n        \"form\": \"Rache\",\n        \"polarity\": \"-0.3534\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ratlosigkeit\": {\n        \"form\": \"Ratlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ratlosigkeiten\"\n    },\n    \"Raub\": {\n        \"form\": \"Raub\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Raubs,Raubes,Rauben,Raube\"\n    },\n    \"Rebell\": {\n        \"form\": \"Rebell\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rebellen\"\n    },\n    \"Rebellion\": {\n        \"form\": \"Rebellion\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rebellionen\"\n    },\n    \"Rechtswidrigkeit\": {\n        \"form\": \"Rechtswidrigkeit\",\n        \"polarity\": \"-0.0499\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rechtswidrigkeiten\"\n    },\n    \"Redundanz\": {\n        \"form\": \"Redundanz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Redundanzen\"\n    },\n    \"Reinfall\": {\n        \"form\": \"Reinfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Reinfälle,Reinfalls,Reinfällen,Reinfalles,Reinfalle\"\n    },\n    \"Reklamation\": {\n        \"form\": \"Reklamation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Reklamationen\"\n    },\n    \"Reparatur\": {\n        \"form\": \"Reparatur\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Reparaturen\"\n    },\n    \"Revolte\": {\n        \"form\": \"Revolte\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Revolten\"\n    },\n    \"Revolution\": {\n        \"form\": \"Revolution\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Revolutionen\"\n    },\n    \"Rezession\": {\n        \"form\": \"Rezession\",\n        \"polarity\": \"-0.3454\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rezessionen\"\n    },\n    \"Risiko\": {\n        \"form\": \"Risiko\",\n        \"polarity\": \"-0.687\",\n        \"pos\": \"NN\",\n        \"sense\": \"Risikos,Risiken\"\n    },\n    \"Rivale\": {\n        \"form\": \"Rivale\",\n        \"polarity\": \"-0.0502\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rivalen\"\n    },\n    \"Rivalität\": {\n        \"form\": \"Rivalität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rivalitäten\"\n    },\n    \"Rost\": {\n        \"form\": \"Rost\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rostes,Rosten,Roste\"\n    },\n    \"Ruin\": {\n        \"form\": \"Ruin\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ruins\"\n    },\n    \"Rutsch\": {\n        \"form\": \"Rutsch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rutschs,Rutschen,Rutsches,Rutsche\"\n    },\n    \"Rätselraten\": {\n        \"form\": \"Rätselraten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rätselratens\"\n    },\n    \"Räuber\": {\n        \"form\": \"Räuber\",\n        \"polarity\": \"-0.3508\",\n        \"pos\": \"NN\",\n        \"sense\": \"Räubers,Räubern\"\n    },\n    \"Rückfall\": {\n        \"form\": \"Rückfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückfalls,Rückfällen,Rückfälle,Rückfalles\"\n    },\n    \"Rückgang\": {\n        \"form\": \"Rückgang\",\n        \"polarity\": \"-0.2096\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückgangs,Rückganges,Rückgängen,Rückgänge,Rückgange\"\n    },\n    \"Rückschritt\": {\n        \"form\": \"Rückschritt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückschritten,Rückschritts,Rückschritte,Rückschrittes\"\n    },\n    \"Rücksendung\": {\n        \"form\": \"Rücksendung\",\n        \"polarity\": \"-0.3465\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rücksendungen\"\n    },\n    \"Rücksichtslosigkeit\": {\n        \"form\": \"Rücksichtslosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rücksichtslosigkeiten\"\n    },\n    \"Rückstand\": {\n        \"form\": \"Rückstand\",\n        \"polarity\": \"-0.063\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückständen,Rückstands,Rückstände,Rückstandes\"\n    },\n    \"Rückständigkeit\": {\n        \"form\": \"Rückständigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückständigkeiten\"\n    },\n    \"Rücktritt\": {\n        \"form\": \"Rücktritt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rücktritte,Rücktritts,Rücktrittes,Rücktritten\"\n    },\n    \"Rückzug\": {\n        \"form\": \"Rückzug\",\n        \"polarity\": \"-0.3501\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückzugs,Rückzuges,Rückzüge,Rückzügen\"\n    },\n    \"Sabotage\": {\n        \"form\": \"Sabotage\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sabotagen\"\n    },\n    \"Sackgasse\": {\n        \"form\": \"Sackgasse\",\n        \"polarity\": \"-0.3455\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sackgassen\"\n    },\n    \"Schaden\": {\n        \"form\": \"Schaden\",\n        \"polarity\": \"-0.5299\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schadens,Schäden\"\n    },\n    \"Schadensbild\": {\n        \"form\": \"Schadensbild\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schadensbildern,Schadensbilder,Schadensbilds,Schadensbildes,Schadensbilde\"\n    },\n    \"Scham\": {\n        \"form\": \"Scham\",\n        \"polarity\": \"-0.4829\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Schande\": {\n        \"form\": \"Schande\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schanden\"\n    },\n    \"Scheidung\": {\n        \"form\": \"Scheidung\",\n        \"polarity\": \"-0.2023\",\n        \"pos\": \"NN\",\n        \"sense\": \"Scheidungen\"\n    },\n    \"Scheitern\": {\n        \"form\": \"Scheitern\",\n        \"polarity\": \"-0.3524\",\n        \"pos\": \"NN\",\n        \"sense\": \"Scheiterns\"\n    },\n    \"Schelte\": {\n        \"form\": \"Schelte\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schelten\"\n    },\n    \"Scheußlichkeit\": {\n        \"form\": \"Scheußlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Scheußlichkeiten\"\n    },\n    \"Schlachtfeld\": {\n        \"form\": \"Schlachtfeld\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlachtfeldern,Schlachtfeldes,Schlachtfelder,Schlachtfelds,Schlachtfelde\"\n    },\n    \"Schlag\": {\n        \"form\": \"Schlag\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlages,Schlags,Schlägen,Schläge,Schlage\"\n    },\n    \"Schlamperei\": {\n        \"form\": \"Schlamperei\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlampereien\"\n    },\n    \"Schlechtigkeit\": {\n        \"form\": \"Schlechtigkeit\",\n        \"polarity\": \"-0.4646\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlechtigkeiten\"\n    },\n    \"Schlitterbahn\": {\n        \"form\": \"Schlitterbahn\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlitterbahnen\"\n    },\n    \"Schlägerei\": {\n        \"form\": \"Schlägerei\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schlägereien\"\n    },\n    \"Schmerz\": {\n        \"form\": \"Schmerz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schmerzes,Schmerze,Schmerzen\"\n    },\n    \"Schmuggel\": {\n        \"form\": \"Schmuggel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schmuggels,Schmuggeln\"\n    },\n    \"Schmutz\": {\n        \"form\": \"Schmutz\",\n        \"polarity\": \"-0.0542\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schmutze,Schmutzes\"\n    },\n    \"Schock\": {\n        \"form\": \"Schock\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schocks,Schocke,Schocken,Schockes\"\n    },\n    \"Schramme\": {\n        \"form\": \"Schramme\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schrammen\"\n    },\n    \"Schreck\": {\n        \"form\": \"Schreck\",\n        \"polarity\": \"-0.194\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schrecke,Schrecken,Schrecks,Schreckes\"\n    },\n    \"Schrott\": {\n        \"form\": \"Schrott\",\n        \"polarity\": \"-0.0534\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schrottes,Schrotts,Schrotte,Schrotten\"\n    },\n    \"Schräglauf\": {\n        \"form\": \"Schräglauf\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schrägläufen,Schräglaufs,Schräglaufes,Schrägläufe,Schräglaufe\"\n    },\n    \"Schubs\": {\n        \"form\": \"Schubs\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schubse,Schubsen,Schubses\"\n    },\n    \"Schuld\": {\n        \"form\": \"Schuld\",\n        \"polarity\": \"-0.9686\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schulden\"\n    },\n    \"Schuldner\": {\n        \"form\": \"Schuldner\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schuldnern,Schuldners\"\n    },\n    \"Schuldnerin\": {\n        \"form\": \"Schuldnerin\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schuldnerinnen\"\n    },\n    \"Schurke\": {\n        \"form\": \"Schurke\",\n        \"polarity\": \"-0.3306\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schurken\"\n    },\n    \"Schwierigkeit\": {\n        \"form\": \"Schwierigkeit\",\n        \"polarity\": \"-0.0483\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schwierigkeiten\"\n    },\n    \"Schwund\": {\n        \"form\": \"Schwund\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schwunds,Schwundes\"\n    },\n    \"Schwäche\": {\n        \"form\": \"Schwäche\",\n        \"polarity\": \"-0.5035\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schwächen\"\n    },\n    \"Schwächung\": {\n        \"form\": \"Schwächung\",\n        \"polarity\": \"-0.337\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schwächungen\"\n    },\n    \"Schädigung\": {\n        \"form\": \"Schädigung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schädigungen\"\n    },\n    \"Senkung\": {\n        \"form\": \"Senkung\",\n        \"polarity\": \"-0.0545\",\n        \"pos\": \"NN\",\n        \"sense\": \"Senkungen\"\n    },\n    \"Sinnlosigkeit\": {\n        \"form\": \"Sinnlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sinnlosigkeiten\"\n    },\n    \"Sintflut\": {\n        \"form\": \"Sintflut\",\n        \"polarity\": \"-0.3313\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sintfluten\"\n    },\n    \"Skandal\": {\n        \"form\": \"Skandal\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Skandals,Skandale,Skandalen\"\n    },\n    \"Sklave\": {\n        \"form\": \"Sklave\",\n        \"polarity\": \"-0.3281\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sklaven\"\n    },\n    \"Sklavenarbeit\": {\n        \"form\": \"Sklavenarbeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sklavenarbeiten\"\n    },\n    \"Sorge\": {\n        \"form\": \"Sorge\",\n        \"polarity\": \"-0.3618\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sorgen\"\n    },\n    \"Spott\": {\n        \"form\": \"Spott\",\n        \"polarity\": \"-0.3357\",\n        \"pos\": \"NN\",\n        \"sense\": \"Spotte,Spottes,Spotts\"\n    },\n    \"Sprengstoff\": {\n        \"form\": \"Sprengstoff\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sprengstoffes,Sprengstoffs,Sprengstoffe,Sprengstoffen\"\n    },\n    \"Sprengung\": {\n        \"form\": \"Sprengung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sprengungen\"\n    },\n    \"Stagnation\": {\n        \"form\": \"Stagnation\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stagnationen\"\n    },\n    \"Stau\": {\n        \"form\": \"Stau\",\n        \"polarity\": \"-0.0438\",\n        \"pos\": \"NN\",\n        \"sense\": \"Staus,Staues,Staue,Stauen\"\n    },\n    \"Sterben\": {\n        \"form\": \"Sterben\",\n        \"polarity\": \"-0.0539\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sterbens\"\n    },\n    \"Steuerhinterziehung\": {\n        \"form\": \"Steuerhinterziehung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Steuerhinterziehungen\"\n    },\n    \"Stilllegung\": {\n        \"form\": \"Stilllegung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stilllegungen\"\n    },\n    \"Stillstand\": {\n        \"form\": \"Stillstand\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stillständen,Stillstandes,Stillstande,Stillstands,Stillstände\"\n    },\n    \"Stornierung\": {\n        \"form\": \"Stornierung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stornierungen\"\n    },\n    \"Stoß\": {\n        \"form\": \"Stoß\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stoßes,Stoße,Stößen,Stöße\"\n    },\n    \"Strafverfahren\": {\n        \"form\": \"Strafverfahren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Strafverfahrens\"\n    },\n    \"Strapaze\": {\n        \"form\": \"Strapaze\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Strapazen\"\n    },\n    \"Streik\": {\n        \"form\": \"Streik\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Streiks,Streikes,Streike,Streiken\"\n    },\n    \"Streit\": {\n        \"form\": \"Streit\",\n        \"polarity\": \"-0.6632\",\n        \"pos\": \"NN\",\n        \"sense\": \"Streites,Streits,Streiten,Streite\"\n    },\n    \"Strenge\": {\n        \"form\": \"Strenge\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Stress\": {\n        \"form\": \"Stress\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stresse,Stresses\"\n    },\n    \"Sturheit\": {\n        \"form\": \"Sturheit\",\n        \"polarity\": \"-0.1894\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sturheiten\"\n    },\n    \"Sturz\": {\n        \"form\": \"Sturz\",\n        \"polarity\": \"-0.6316\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sturze,Sturzen,Stürze,Sturzes,Stürzen\"\n    },\n    \"Störung\": {\n        \"form\": \"Störung\",\n        \"polarity\": \"-0.3569\",\n        \"pos\": \"NN\",\n        \"sense\": \"Störungen\"\n    },\n    \"Sucht\": {\n        \"form\": \"Sucht\",\n        \"polarity\": \"-0.3505\",\n        \"pos\": \"NN\",\n        \"sense\": \"Süchte,Süchten,Suchten\"\n    },\n    \"Sündenbock\": {\n        \"form\": \"Sündenbock\",\n        \"polarity\": \"-0.3285\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sündenbockes,Sündenböcke,Sündenböcken,Sündenbocks\"\n    },\n    \"Tabu\": {\n        \"form\": \"Tabu\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tabus\"\n    },\n    \"Terror\": {\n        \"form\": \"Terror\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Terrors\"\n    },\n    \"Terrorismus\": {\n        \"form\": \"Terrorismus\",\n        \"polarity\": \"-0.3553\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Teuerung\": {\n        \"form\": \"Teuerung\",\n        \"polarity\": \"-0.322\",\n        \"pos\": \"NN\",\n        \"sense\": \"Teuerungen\"\n    },\n    \"Teuerungsrate\": {\n        \"form\": \"Teuerungsrate\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Teuerungsraten\"\n    },\n    \"Teufelskreis\": {\n        \"form\": \"Teufelskreis\",\n        \"polarity\": \"-0.479\",\n        \"pos\": \"NN\",\n        \"sense\": \"Teufelskreise,Teufelskreisen,Teufelskreises\"\n    },\n    \"Tod\": {\n        \"form\": \"Tod\",\n        \"polarity\": \"-0.0697\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tods,Todes,Tode,Toden\"\n    },\n    \"Todesfall\": {\n        \"form\": \"Todesfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Todesfälle,Todesfällen,Todesfalls,Todesfalles,Todesfalle\"\n    },\n    \"Todesstrafe\": {\n        \"form\": \"Todesstrafe\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Todesstrafen\"\n    },\n    \"Torheit\": {\n        \"form\": \"Torheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Torheiten\"\n    },\n    \"Totschlag\": {\n        \"form\": \"Totschlag\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Totschlage,Totschlags,Totschlages\"\n    },\n    \"Tragödie\": {\n        \"form\": \"Tragödie\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tragödien\"\n    },\n    \"Trauer\": {\n        \"form\": \"Trauer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Trauma\": {\n        \"form\": \"Trauma\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Traumen,Traumas,Traumata\"\n    },\n    \"Traurigkeit\": {\n        \"form\": \"Traurigkeit\",\n        \"polarity\": \"-0.0457\",\n        \"pos\": \"NN\",\n        \"sense\": \"Traurigkeiten\"\n    },\n    \"Trennung\": {\n        \"form\": \"Trennung\",\n        \"polarity\": \"-0.5071\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trennungen\"\n    },\n    \"Tristesse\": {\n        \"form\": \"Tristesse\",\n        \"polarity\": \"-0.0555\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tristessen\"\n    },\n    \"Trostlosigkeit\": {\n        \"form\": \"Trostlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trostlosigkeiten\"\n    },\n    \"Trott\": {\n        \"form\": \"Trott\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trottes,Trotten,Trotts,Trotte\"\n    },\n    \"Trugschluß\": {\n        \"form\": \"Trugschluß\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Trugschluss\": {\n        \"form\": \"Trugschluss\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trugschlusse,Trugschlusses,Trugschlüsse,Trugschlüssen\"\n    },\n    \"Trägheit\": {\n        \"form\": \"Trägheit\",\n        \"polarity\": \"-0.1937\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trägheiten\"\n    },\n    \"Träne\": {\n        \"form\": \"Träne\",\n        \"polarity\": \"-0.0562\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tränen\"\n    },\n    \"Trübsal\": {\n        \"form\": \"Trübsal\",\n        \"polarity\": \"-0.189\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trübsalen,Trübsale\"\n    },\n    \"Turbulenz\": {\n        \"form\": \"Turbulenz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Turbulenzen\"\n    },\n    \"Tyrannei\": {\n        \"form\": \"Tyrannei\",\n        \"polarity\": \"-0.3243\",\n        \"pos\": \"NN\",\n        \"sense\": \"Tyranneien\"\n    },\n    \"Täuschung\": {\n        \"form\": \"Täuschung\",\n        \"polarity\": \"-0.3445\",\n        \"pos\": \"NN\",\n        \"sense\": \"Täuschungen\"\n    },\n    \"Umtausch\": {\n        \"form\": \"Umtausch\",\n        \"polarity\": \"-0.343\",\n        \"pos\": \"NN\",\n        \"sense\": \"Umtauschen,Umtausches,Umtauschs,Umtäusche,Umtausche,Umtäuschen\"\n    },\n    \"Unbehagen\": {\n        \"form\": \"Unbehagen\",\n        \"polarity\": \"-0.3291\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unbehagens\"\n    },\n    \"Unbehaglichkeit\": {\n        \"form\": \"Unbehaglichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unbehaglichkeiten\"\n    },\n    \"Unbeliebtheit\": {\n        \"form\": \"Unbeliebtheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unbequemlichkeit\": {\n        \"form\": \"Unbequemlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unbequemlichkeiten\"\n    },\n    \"Unbestimmtheit\": {\n        \"form\": \"Unbestimmtheit\",\n        \"polarity\": \"-0.0537\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Undankbarkeit\": {\n        \"form\": \"Undankbarkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Undankbarkeiten\"\n    },\n    \"Unehrlichkeit\": {\n        \"form\": \"Unehrlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unehrlichkeiten\"\n    },\n    \"Uneinigkeit\": {\n        \"form\": \"Uneinigkeit\",\n        \"polarity\": \"-0.3289\",\n        \"pos\": \"NN\",\n        \"sense\": \"Uneinigkeiten\"\n    },\n    \"Unerbittlichkeit\": {\n        \"form\": \"Unerbittlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unerbittlichkeiten\"\n    },\n    \"Unerträglichkeit\": {\n        \"form\": \"Unerträglichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unerträglichkeiten\"\n    },\n    \"Unfall\": {\n        \"form\": \"Unfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unfällen,Unfalls,Unfälle,Unfalles,Unfalle\"\n    },\n    \"Unfreundlichkeit\": {\n        \"form\": \"Unfreundlichkeit\",\n        \"polarity\": \"-0.3085\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unfreundlichkeiten\"\n    },\n    \"Unfug\": {\n        \"form\": \"Unfug\",\n        \"polarity\": \"-0.3394\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unfugs\"\n    },\n    \"Unfähigkeit\": {\n        \"form\": \"Unfähigkeit\",\n        \"polarity\": \"-0.1896\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unfähigkeiten\"\n    },\n    \"Ungeduld\": {\n        \"form\": \"Ungeduld\",\n        \"polarity\": \"-0.4655\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ungehorsamkeit\": {\n        \"form\": \"Ungehorsamkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ungenauigkeit\": {\n        \"form\": \"Ungenauigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ungenauigkeiten\"\n    },\n    \"Ungerechtigkeit\": {\n        \"form\": \"Ungerechtigkeit\",\n        \"polarity\": \"-0.3419\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ungerechtigkeiten\"\n    },\n    \"Ungeschicklichkeit\": {\n        \"form\": \"Ungeschicklichkeit\",\n        \"polarity\": \"-0.3116\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ungeschicklichkeiten\"\n    },\n    \"Unglaubwürdigkeit\": {\n        \"form\": \"Unglaubwürdigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ungleichheit\": {\n        \"form\": \"Ungleichheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ungleichheiten\"\n    },\n    \"Unglück\": {\n        \"form\": \"Unglück\",\n        \"polarity\": \"-0.5004\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unglückes,Unglücks,Unglücke,Unglücken\"\n    },\n    \"Unheilbarkeit\": {\n        \"form\": \"Unheilbarkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unheilbarkeiten\"\n    },\n    \"Unhöflichkeit\": {\n        \"form\": \"Unhöflichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unhöflichkeiten\"\n    },\n    \"Unklarheit\": {\n        \"form\": \"Unklarheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unklarheiten\"\n    },\n    \"Unmenschlichkeit\": {\n        \"form\": \"Unmenschlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unmenschlichkeiten\"\n    },\n    \"Unmoral\": {\n        \"form\": \"Unmoral\",\n        \"polarity\": \"-0.3172\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unmut\": {\n        \"form\": \"Unmut\",\n        \"polarity\": \"-0.3394\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unmutes,Unmuts,Unmute\"\n    },\n    \"Unordnung\": {\n        \"form\": \"Unordnung\",\n        \"polarity\": \"-0.3391\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unordnungen\"\n    },\n    \"Unrecht\": {\n        \"form\": \"Unrecht\",\n        \"polarity\": \"-0.5086\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unrechtes,Unrechts,Unrechte\"\n    },\n    \"Unregelmäßigkeit\": {\n        \"form\": \"Unregelmäßigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unregelmäßigkeiten\"\n    },\n    \"Unrentabilität\": {\n        \"form\": \"Unrentabilität\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unruhe\": {\n        \"form\": \"Unruhe\",\n        \"polarity\": \"-0.201\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unruhen\"\n    },\n    \"Unsicherheit\": {\n        \"form\": \"Unsicherheit\",\n        \"polarity\": \"-0.358\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unsicherheiten\"\n    },\n    \"Unsinn\": {\n        \"form\": \"Unsinn\",\n        \"polarity\": \"-0.4969\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unsinnes,Unsinns\"\n    },\n    \"Unstetigkeit\": {\n        \"form\": \"Unstetigkeit\",\n        \"polarity\": \"-0.3075\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unstetigkeiten\"\n    },\n    \"Unstimmigkeit\": {\n        \"form\": \"Unstimmigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unstimmigkeiten\"\n    },\n    \"Unterbrechung\": {\n        \"form\": \"Unterbrechung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unterbrechungen\"\n    },\n    \"Unterdrückung\": {\n        \"form\": \"Unterdrückung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unterdrückungen\"\n    },\n    \"Untergang\": {\n        \"form\": \"Untergang\",\n        \"polarity\": \"-0.3498\",\n        \"pos\": \"NN\",\n        \"sense\": \"Untergangs,Untergängen,Unterganges,Untergänge\"\n    },\n    \"Unterlassung\": {\n        \"form\": \"Unterlassung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unterlassungen\"\n    },\n    \"Unterwerfung\": {\n        \"form\": \"Unterwerfung\",\n        \"polarity\": \"-0.3279\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unterwerfungen\"\n    },\n    \"Untreue\": {\n        \"form\": \"Untreue\",\n        \"polarity\": \"-0.3293\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unverantwortlichkeit\": {\n        \"form\": \"Unverantwortlichkeit\",\n        \"polarity\": \"-0.3068\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unverantwortlichkeiten\"\n    },\n    \"Unvereinbarkeit\": {\n        \"form\": \"Unvereinbarkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unvereinbarkeiten\"\n    },\n    \"Unverhältnismäßigkeit\": {\n        \"form\": \"Unverhältnismäßigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unverhältnismäßigkeiten\"\n    },\n    \"Unverschämtheit\": {\n        \"form\": \"Unverschämtheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unverschämtheiten\"\n    },\n    \"Unvollkommenheit\": {\n        \"form\": \"Unvollkommenheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unvollkommenheiten\"\n    },\n    \"Unvollständigkeit\": {\n        \"form\": \"Unvollständigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unvollständigkeiten\"\n    },\n    \"Unwahrheit\": {\n        \"form\": \"Unwahrheit\",\n        \"polarity\": \"-0.466\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unwahrheiten\"\n    },\n    \"Unwirksamkeit\": {\n        \"form\": \"Unwirksamkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unwirksamkeiten\"\n    },\n    \"Unwirtschaftlichkeit\": {\n        \"form\": \"Unwirtschaftlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unwirtschaftlichkeiten\"\n    },\n    \"Unwissenheit\": {\n        \"form\": \"Unwissenheit\",\n        \"polarity\": \"-0.4935\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unwissenheiten\"\n    },\n    \"Unzufriedenheit\": {\n        \"form\": \"Unzufriedenheit\",\n        \"polarity\": \"-0.6324\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unzufriedenheiten\"\n    },\n    \"Unzumutbarkeit\": {\n        \"form\": \"Unzumutbarkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unzumutbarkeiten\"\n    },\n    \"Unzuverlässigkeit\": {\n        \"form\": \"Unzuverlässigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unzuverlässigkeiten\"\n    },\n    \"Vagheit\": {\n        \"form\": \"Vagheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vagheiten\"\n    },\n    \"Verachtung\": {\n        \"form\": \"Verachtung\",\n        \"polarity\": \"-0.3308\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verachtungen\"\n    },\n    \"Verbannung\": {\n        \"form\": \"Verbannung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbannungen\"\n    },\n    \"Verbot\": {\n        \"form\": \"Verbot\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbots,Verbotes,Verboten,Verbote\"\n    },\n    \"Verdacht\": {\n        \"form\": \"Verdacht\",\n        \"polarity\": \"-0.8074\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verdachts,Verdachte,Verdachten,Verdachtes,Verdächte,Verdächten\"\n    },\n    \"Verdorbenheit\": {\n        \"form\": \"Verdorbenheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verdorbenheiten\"\n    },\n    \"Verdrängung\": {\n        \"form\": \"Verdrängung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verdrängungen\"\n    },\n    \"Verdächtige\": {\n        \"form\": \"Verdächtige\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verdächtiger,Verdächtigen\"\n    },\n    \"Verfall\": {\n        \"form\": \"Verfall\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verfalles,Verfalls,Verfalle,Verfälle,Verfällen\"\n    },\n    \"Verfehlung\": {\n        \"form\": \"Verfehlung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verfehlungen\"\n    },\n    \"Vergeltung\": {\n        \"form\": \"Vergeltung\",\n        \"polarity\": \"-0.3369\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergeltungen\"\n    },\n    \"Vergeltungsmaßnahme\": {\n        \"form\": \"Vergeltungsmaßnahme\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergeltungsmaßnahmen\"\n    },\n    \"Vergeudung\": {\n        \"form\": \"Vergeudung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergeudungen\"\n    },\n    \"Verherrlichung\": {\n        \"form\": \"Verherrlichung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verherrlichungen\"\n    },\n    \"Verhängnis\": {\n        \"form\": \"Verhängnis\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verhängnisses,Verhängnissen,Verhängnisse\"\n    },\n    \"Verkleinerung\": {\n        \"form\": \"Verkleinerung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verkleinerungen\"\n    },\n    \"Verlangsamung\": {\n        \"form\": \"Verlangsamung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verlangsamungen\"\n    },\n    \"Verletzung\": {\n        \"form\": \"Verletzung\",\n        \"polarity\": \"-0.5032\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verletzungen\"\n    },\n    \"Verleumdung\": {\n        \"form\": \"Verleumdung\",\n        \"polarity\": \"-0.4792\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verleumdungen\"\n    },\n    \"Verlierer\": {\n        \"form\": \"Verlierer\",\n        \"polarity\": \"-0.3441\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verlierern,Verlierers\"\n    },\n    \"Verlust\": {\n        \"form\": \"Verlust\",\n        \"polarity\": \"-0.5204\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verlustes,Verlusts,Verluste,Verlusten\"\n    },\n    \"Vermeidung\": {\n        \"form\": \"Vermeidung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vermeidungen\"\n    },\n    \"Verminderung\": {\n        \"form\": \"Verminderung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verminderungen\"\n    },\n    \"Vernachlässigung\": {\n        \"form\": \"Vernachlässigung\",\n        \"polarity\": \"-0.328\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vernachlässigungen\"\n    },\n    \"Vernichtung\": {\n        \"form\": \"Vernichtung\",\n        \"polarity\": \"-0.4883\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vernichtungen\"\n    },\n    \"Verrat\": {\n        \"form\": \"Verrat\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verrats,Verrate,Verrates\"\n    },\n    \"Verräter\": {\n        \"form\": \"Verräter\",\n        \"polarity\": \"-0.3352\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verräters,Verrätern\"\n    },\n    \"Verrückter\": {\n        \"form\": \"Verrückter\",\n        \"polarity\": \"-0.0447\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verrückte,Verrückten\"\n    },\n    \"Verrücktheit\": {\n        \"form\": \"Verrücktheit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verrücktheiten\"\n    },\n    \"Versagen\": {\n        \"form\": \"Versagen\",\n        \"polarity\": \"-0.3517\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versagens\"\n    },\n    \"Verschlechterung\": {\n        \"form\": \"Verschlechterung\",\n        \"polarity\": \"-0.4959\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verschlechterungen\"\n    },\n    \"Verschmutzung\": {\n        \"form\": \"Verschmutzung\",\n        \"polarity\": \"-0.3392\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verschmutzungen\"\n    },\n    \"Verschwendung\": {\n        \"form\": \"Verschwendung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verschwendungen\"\n    },\n    \"Verschwörung\": {\n        \"form\": \"Verschwörung\",\n        \"polarity\": \"-0.3355\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verschwörungen\"\n    },\n    \"Versenkung\": {\n        \"form\": \"Versenkung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versenkungen\"\n    },\n    \"Versklavung\": {\n        \"form\": \"Versklavung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versklavungen\"\n    },\n    \"Verstoß\": {\n        \"form\": \"Verstoß\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verstoßes,Verstöße,Verstößen,Verstoße\"\n    },\n    \"Verstrickung\": {\n        \"form\": \"Verstrickung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verstrickungen\"\n    },\n    \"Versuchung\": {\n        \"form\": \"Versuchung\",\n        \"polarity\": \"-0.3463\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versuchungen\"\n    },\n    \"Versäumnis\": {\n        \"form\": \"Versäumnis\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versäumnisse,Versäumnisses,Versäumnissen\"\n    },\n    \"Vertreibung\": {\n        \"form\": \"Vertreibung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vertreibungen\"\n    },\n    \"Verurteilung\": {\n        \"form\": \"Verurteilung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verurteilungen\"\n    },\n    \"Verweigerung\": {\n        \"form\": \"Verweigerung\",\n        \"polarity\": \"-0.3441\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verweigerungen\"\n    },\n    \"Verwerfung\": {\n        \"form\": \"Verwerfung\",\n        \"polarity\": \"-0.3202\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwerfungen\"\n    },\n    \"Verwirrung\": {\n        \"form\": \"Verwirrung\",\n        \"polarity\": \"-0.3323\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwirrungen\"\n    },\n    \"Verwundung\": {\n        \"form\": \"Verwundung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwundungen\"\n    },\n    \"Verwüstung\": {\n        \"form\": \"Verwüstung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwüstungen\"\n    },\n    \"Verzerrung\": {\n        \"form\": \"Verzerrung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verzerrungen\"\n    },\n    \"Verzicht\": {\n        \"form\": \"Verzicht\",\n        \"polarity\": \"-0.2022\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verzichts,Verzichtes,Verzichten,Verzichte\"\n    },\n    \"Verzweiflung\": {\n        \"form\": \"Verzweiflung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verzweiflungen\"\n    },\n    \"Verzögerung\": {\n        \"form\": \"Verzögerung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verzögerungen\"\n    },\n    \"Vorurteil\": {\n        \"form\": \"Vorurteil\",\n        \"polarity\": \"-0.6261\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorurteils,Vorurteilen,Vorurteile\"\n    },\n    \"Vorwand\": {\n        \"form\": \"Vorwand\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorwände,Vorwandes,Vorwands,Vorwänden,Vorwande\"\n    },\n    \"Vorwurf\": {\n        \"form\": \"Vorwurf\",\n        \"polarity\": \"-0.5095\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorwürfen,Vorwurfs,Vorwürfe,Vorwurfes\"\n    },\n    \"Wahnsinn\": {\n        \"form\": \"Wahnsinn\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wahnsinns\"\n    },\n    \"Wermutstropfen\": {\n        \"form\": \"Wermutstropfen\",\n        \"polarity\": \"-0.3356\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wermutstropfens\"\n    },\n    \"Wertlosigkeit\": {\n        \"form\": \"Wertlosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wertlosigkeiten\"\n    },\n    \"Wertverlust\": {\n        \"form\": \"Wertverlust\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wertverluste,Wertverlustes,Wertverlusts,Wertverlusten\"\n    },\n    \"Wichtigtuer\": {\n        \"form\": \"Wichtigtuer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wichtigtuers,Wichtigtuern\"\n    },\n    \"Widernatürlichkeit\": {\n        \"form\": \"Widernatürlichkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Widernatürlichkeiten\"\n    },\n    \"Widerruf\": {\n        \"form\": \"Widerruf\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Widerrufs,Widerrufes,Widerrufen\"\n    },\n    \"Widerspruch\": {\n        \"form\": \"Widerspruch\",\n        \"polarity\": \"-0.3655\",\n        \"pos\": \"NN\",\n        \"sense\": \"Widersprüche,Widersprüchen,Widerspruchs,Widerspruches,Widerspruche\"\n    },\n    \"Widrigkeit\": {\n        \"form\": \"Widrigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Widrigkeiten\"\n    },\n    \"Wirtschaftskrise\": {\n        \"form\": \"Wirtschaftskrise\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wirtschaftskrisen\"\n    },\n    \"Wrack\": {\n        \"form\": \"Wrack\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wracks,Wracke,Wracken,Wrackes\"\n    },\n    \"Wunde\": {\n        \"form\": \"Wunde\",\n        \"polarity\": \"-0.3396\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wunden\"\n    },\n    \"Wut\": {\n        \"form\": \"Wut\",\n        \"polarity\": \"-0.4726\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Wüste\": {\n        \"form\": \"Wüste\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wüsten\"\n    },\n    \"Zahlungsunfähigkeit\": {\n        \"form\": \"Zahlungsunfähigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zahlungsunfähigkeiten\"\n    },\n    \"Zeitverschwendung\": {\n        \"form\": \"Zeitverschwendung\",\n        \"polarity\": \"-0.3223\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zeitverschwendungen\"\n    },\n    \"Zensur\": {\n        \"form\": \"Zensur\",\n        \"polarity\": \"-0.3468\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zensuren\"\n    },\n    \"Zerrung\": {\n        \"form\": \"Zerrung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zerrungen\"\n    },\n    \"Zerschlagung\": {\n        \"form\": \"Zerschlagung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zerschlagungen\"\n    },\n    \"Zerstörung\": {\n        \"form\": \"Zerstörung\",\n        \"polarity\": \"-0.3578\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zerstörungen\"\n    },\n    \"Ziellosigkeit\": {\n        \"form\": \"Ziellosigkeit\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zoll\": {\n        \"form\": \"Zoll\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zolls,Zölle,Zolles,Zöllen\"\n    },\n    \"Zorn\": {\n        \"form\": \"Zorn\",\n        \"polarity\": \"-0.3537\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zorns,Zornes,Zorne\"\n    },\n    \"Zumutung\": {\n        \"form\": \"Zumutung\",\n        \"polarity\": \"-0.3286\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zumutungen\"\n    },\n    \"Zusammenbruch\": {\n        \"form\": \"Zusammenbruch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zusammenbrüche,Zusammenbruchs,Zusammenbruches,Zusammenbrüchen\"\n    },\n    \"Zusammenstoß\": {\n        \"form\": \"Zusammenstoß\",\n        \"polarity\": \"-0.3302\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zusammenstoßes,Zusammenstöße,Zusammenstoße,Zusammenstößen\"\n    },\n    \"Zwang\": {\n        \"form\": \"Zwang\",\n        \"polarity\": \"-0.0721\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zwanges,Zwängen,Zwänge,Zwangs,Zwange\"\n    },\n    \"Zwangslage\": {\n        \"form\": \"Zwangslage\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zwangslagen\"\n    },\n    \"Zwangsmaßnahme\": {\n        \"form\": \"Zwangsmaßnahme\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zwangsmaßnahmen\"\n    },\n    \"Zweifel\": {\n        \"form\": \"Zweifel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zweifeln,Zweifels\"\n    },\n    \"Zwietracht\": {\n        \"form\": \"Zwietracht\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"abbauen\": {\n        \"form\": \"abbauen\",\n        \"polarity\": \"-0.0578\",\n        \"pos\": \"VB\",\n        \"sense\": \"abbaue,abbaust,abbaut,abbauest,abbauet,abbaute,abbautest,abbauten\"\n    },\n    \"abbrechen\": {\n        \"form\": \"abbrechen\",\n        \"polarity\": \"-0.3482\",\n        \"pos\": \"VB\",\n        \"sense\": \"abbreche,abbrichst,abbricht,abbrecht,abbrechest,abbrechet,abbrach,abbrachst,abbrachen,abbracht,abbräche,abbrächest,abbrächst,abbrächen,abbrächet,abbrächt\"\n    },\n    \"abdanken\": {\n        \"form\": \"abdanken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abgedankt,abdanke,abdankte,abdankt,abdanktet,abdankest,abdankst,abdanktest,abdankten,abdanket\"\n    },\n    \"abdämpfen\": {\n        \"form\": \"abdämpfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abdämpfe,abdämpfst,abdämpft,abdämpfest,abdämpfet,abdämpfte,abdämpftest,abdämpften,abdämpftet\"\n    },\n    \"abfallen\": {\n        \"form\": \"abfallen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abfalle,abfällst,abfällt,abfallt,abfallest,abfallet,abfiel,abfielst,abfielen,abfielt,abfiele,abfielest,abfielet\"\n    },\n    \"abfällig\": {\n        \"form\": \"abfällig\",\n        \"polarity\": \"-0.3197\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"abführen\": {\n        \"form\": \"abführen\",\n        \"polarity\": \"-0.3358\",\n        \"pos\": \"VB\",\n        \"sense\": \"abführtet,abführt,abführst,abführe,abführte,abführet,abgeführt,abführtest,abführten,abführest\"\n    },\n    \"abgebrochen\": {\n        \"form\": \"abgebrochen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abgebrochene,abgebrochenem,abgebrochenen,abgebrochener,abgebrochenes\"\n    },\n    \"abgedroschen\": {\n        \"form\": \"abgedroschen\",\n        \"polarity\": \"-0.1839\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abgedroschene,abgedroschenem,abgedroschenen,abgedroschener,abgedroschenes,abgedroschenere,abgedroschenerem,abgedroscheneres,abgedroscheneren,abgedroschenerer,abgedroschner,abgedroschenste,abgedroschenstem,abgedroschensten,abgedroschenster,abgedroschenstes,abgedroschneren,abgedroschneres,abgedroschnere,abgedroschnerem,abgedroschnerer\"\n    },\n    \"abgestanden\": {\n        \"form\": \"abgestanden\",\n        \"polarity\": \"-0.0368\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abgestandnerer,abgestandneres,abgestandenen,abgestandenem,abgestandenes,abgestandener,abgestandenstes,abgestandenere,abgestandenster,abgestandenstem,abgestandensten,abgestandenste,abgestandnere,abgestandene,abgestandeneren,abgestandenerem,abgestandenst,abgestandneren,abgestandeneres,abgestandnerem,abgestandenerer,abgestandner\"\n    },\n    \"abgetakelt\": {\n        \"form\": \"abgetakelt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abgetakeltstem,abgetakeltere,abgetakeltste,abgetakeltsten,abgetakeltstes,abgetakeltster,abgetakelten,abgetakelteren,abgetakeltem,abgetakeltst,abgetakelte,abgetakelterem,abgetakeltes,abgetakelter,abgetakelterer,abgetakelteres\"\n    },\n    \"abgleiten\": {\n        \"form\": \"abgleiten\",\n        \"polarity\": \"-0.0397\",\n        \"pos\": \"VB\",\n        \"sense\": \"abgleite,abgleitest,abgleitet,abglitt,abglittest,abglitten,abglittet,abglitte\"\n    },\n    \"abgründig\": {\n        \"form\": \"abgründig\",\n        \"polarity\": \"-0.1719\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"abhängig\": {\n        \"form\": \"abhängig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ablaufen\": {\n        \"form\": \"ablaufen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ablaufe,abläufst,abläuft,ablauft,ablaufest,ablaufet,ablief,abliefst,abliefen,ablieft,abliefe,abliefest,abliefet\"\n    },\n    \"ablehnen\": {\n        \"form\": \"ablehnen\",\n        \"polarity\": \"-0.6458\",\n        \"pos\": \"VB\",\n        \"sense\": \"ablehne,ablehnst,ablehnt,ablehnest,ablehnet,ablehnte,ablehntest,ablehnten,ablehntet,abgelehnt\"\n    },\n    \"ablenken\": {\n        \"form\": \"ablenken\",\n        \"polarity\": \"-0.042\",\n        \"pos\": \"VB\",\n        \"sense\": \"ablenke,ablenkst,ablenkt,ablenkest,ablenket,ablenkte,ablenktest,ablenkten,ablenktet,abzulenken,abgelenkt\"\n    },\n    \"abnehmen\": {\n        \"form\": \"abnehmen\",\n        \"polarity\": \"-0.0292\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"abnutzen\": {\n        \"form\": \"abnutzen\",\n        \"polarity\": \"-0.0417\",\n        \"pos\": \"VB\",\n        \"sense\": \"abnutze,abnutzt,abnutzest,abnutzet,abnutzte,abnutztest,abnutzten,abnutztet,abzunutzen,abgenutzt\"\n    },\n    \"abraten\": {\n        \"form\": \"abraten\",\n        \"polarity\": \"-0.3353\",\n        \"pos\": \"VB\",\n        \"sense\": \"abrate,abrätst,abrät,abratet,abratest,abriet,abrietest,abrietst,abrieten,abrietet,abriete,abzuraten,abgeraten\"\n    },\n    \"abreißen\": {\n        \"form\": \"abreißen\",\n        \"polarity\": \"-0.3116\",\n        \"pos\": \"VB\",\n        \"sense\": \"abreiße,abreißt,abreißest,abreißet,abriss,abriß,abrissest,abrisst,abrißt,abrissen,abrisse,abrisset,abzureissen,abzureißen,abgerissen\"\n    },\n    \"abrupt\": {\n        \"form\": \"abrupt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abrupte,abruptem,abrupten,abrupter,abruptes,abruptere,abrupterem,abrupteren,abrupterer,abrupteres,abrupteste,abruptestem,abruptesten,abruptester,abruptestes\"\n    },\n    \"abrutschen\": {\n        \"form\": \"abrutschen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abrutsche,abrutschst,abrutscht,abrutschest,abrutschet,abrutschte,abrutschtest,abrutschten,abrutschtet,abzurutschen,abgerutscht\"\n    },\n    \"abschaffen\": {\n        \"form\": \"abschaffen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abschaffe,abschaffst,abschafft,abschaffest,abschaffet,abschaffte,abschafftest,abschafften,abschafftet,abzuschaffen,abgeschafft\"\n    },\n    \"abschießen\": {\n        \"form\": \"abschießen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"abschrecken\": {\n        \"form\": \"abschrecken\",\n        \"polarity\": \"-0.178\",\n        \"pos\": \"VB\",\n        \"sense\": \"abschrecket,abzuschrecken,abschreckest,abschreckten,abschreckte,abschrecktest,abschreckt,abschrecke,abschreckst,abgeschreckt,abschrecktet\"\n    },\n    \"abschreckend\": {\n        \"form\": \"abschreckend\",\n        \"polarity\": \"-0.049\",\n        \"pos\": \"VB\",\n        \"sense\": \"abschreckende,abschreckendem,abschreckenden,abschreckender,abschreckendes,abschreckendere,abschreckenderen,abschreckenderem,abschreckenderer,abschreckenderes,abschreckendste,abschreckendstem,abschreckendsten,abschreckendster,abschreckendstes\"\n    },\n    \"abschreiben\": {\n        \"form\": \"abschreiben\",\n        \"polarity\": \"-0.1847\",\n        \"pos\": \"VB\",\n        \"sense\": \"abschreibe,abschreibst,abschreibt,abschreibest,abschreibet,abschrieb,abschriebst,abschrieben,abschriebt,abschriebe,abschriebest,abschriebet,abzuschreiben,abgeschrieben\"\n    },\n    \"abschwächen\": {\n        \"form\": \"abschwächen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abschwächt,abschwäche,abschwächten,abschwächte,abschwächst,abgeschwächt,abschwächtest,abschwächet,abschwächest,abschwächtet\"\n    },\n    \"abschätzig\": {\n        \"form\": \"abschätzig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"absenken\": {\n        \"form\": \"absenken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"absenke,absenkst,absenkt,absenkest,absenket,absenkte,absenktest,absenkten,absenktet,abzusenken,abgesenkt\"\n    },\n    \"absinken\": {\n        \"form\": \"absinken\",\n        \"polarity\": \"-0.3269\",\n        \"pos\": \"VB\",\n        \"sense\": \"absinke,absinkst,absinkt,absinkest,absinket,absank,absankst,absanken,absankt,absänke,absänkest,absänkst,absänken,absänket,absänkt,abzusinken,abgesunken\"\n    },\n    \"abspalten\": {\n        \"form\": \"abspalten\",\n        \"polarity\": \"-0.3099\",\n        \"pos\": \"VB\",\n        \"sense\": \"abspalte,abspaltest,abspaltet,abspaltete,abspaltetest,abspalteten,abspaltetet,abzuspalten,abgespalten,abgespaltet\"\n    },\n    \"absperren\": {\n        \"form\": \"absperren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"absperre,absperrst,absperrt,absperrest,absperret,absperrte,absperrtest,absperrten,absperrtet,abzusperren,abgesperrt\"\n    },\n    \"absteigen\": {\n        \"form\": \"absteigen\",\n        \"polarity\": \"-0.4776\",\n        \"pos\": \"VB\",\n        \"sense\": \"absteige,absteigst,absteigt,absteigest,absteiget,abstieg,abstiegst,abstiegen,abstiegt,abstiege,abstiegest,abstieget,abzusteigen,abgestiegen\"\n    },\n    \"abstoßen\": {\n        \"form\": \"abstoßen\",\n        \"polarity\": \"-0.1796\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"abstoßend\": {\n        \"form\": \"abstoßend\",\n        \"polarity\": \"-0.5859\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"abstumpfen\": {\n        \"form\": \"abstumpfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abzustumpfen,abstumpfet,abstumpfest,abstumpften,abgestumpft,abstumpftet,abstumpfe,abstumpftest,abstumpfte,abstumpft,abstumpfst\"\n    },\n    \"abstürzen\": {\n        \"form\": \"abstürzen\",\n        \"polarity\": \"-0.4697\",\n        \"pos\": \"VB\",\n        \"sense\": \"abstürztet,abstürzt,abstürze,abstürzte,abgestürzt,abstürzet,abstürzest,abstürzten,abstürztest\"\n    },\n    \"absurd\": {\n        \"form\": \"absurd\",\n        \"polarity\": \"-0.212\",\n        \"pos\": \"JJ\",\n        \"sense\": \"absurdester,absurdestes,absurderer,absurdesten,absurden,absurdem,absurderen,absurderem,absurdestem,absurdere,absurdeste,absurde,absurder,absurdest,absurdes,absurderes\"\n    },\n    \"abtragen\": {\n        \"form\": \"abtragen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"abweichen\": {\n        \"form\": \"abweichen\",\n        \"polarity\": \"-0.3422\",\n        \"pos\": \"VB\",\n        \"sense\": \"abweiche,abweichst,abweicht,abweichest,abweichet,abweichte,abweichtest,abweichten,abweichtet,abzuweichen,abgeweicht\"\n    },\n    \"abweisen\": {\n        \"form\": \"abweisen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"abweise,abweist,abweisest,abweiset,abwies,abwiesest,abwiest,abwiesen,abwiese,abwieset,abzuweisen,abgewiesen\"\n    },\n    \"abwerten\": {\n        \"form\": \"abwerten\",\n        \"polarity\": \"-0.4521\",\n        \"pos\": \"VB\",\n        \"sense\": \"abwertest,abgewertet,abwerttest,abzuwerten,abwertete,abwerteten,abwerte,abwertetet,abwertet,abwertetest\"\n    },\n    \"achtlos\": {\n        \"form\": \"achtlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"achtloses,achtlosere,achtlosestes,achtlosester,achtlose,achtlosest,achtloseren,achtloseste,achtloseres,achtloserer,achtlosestem,achtlosesten,achtloser,achtlosen,achtlosem,achtloserem\"\n    },\n    \"aggressiv\": {\n        \"form\": \"aggressiv\",\n        \"polarity\": \"-0.4484\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aggressive,aggressivem,aggressiven,aggressiver,aggressives,aggressivere,aggressiverem,aggressiveren,aggressiverer,aggressiveres,aggressivste,aggressivstem,aggressivsten,aggressivster,aggressivstes\"\n    },\n    \"alarmieren\": {\n        \"form\": \"alarmieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"alarmiertest,alarmieret,alarmierten,alarmiere,alarmiertet,alarmierest,alarmierst,alarmierte,alarmiert\"\n    },\n    \"alkoholisiert\": {\n        \"form\": \"alkoholisiert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"alkoholisierten,alkoholisiertem,alkoholisierteste,alkoholisierte,alkoholisiertester,alkoholisiertestes,alkoholisiertes,alkoholisiertest,alkoholisiertesten,alkoholisierter,alkoholisiertestem,alkoholisierterer,alkoholisiertere,alkoholisierteres,alkoholisierteren,alkoholisierterem\"\n    },\n    \"alt\": {\n        \"form\": \"alt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"alte,altem,alten,ältest,alter,altes,älteres,ältester,älterer,älter,ältere,älterem,ältestem,ältesten,älteren,älteste,ältestes\"\n    },\n    \"altmodisch\": {\n        \"form\": \"altmodisch\",\n        \"polarity\": \"-0.0382\",\n        \"pos\": \"JJ\",\n        \"sense\": \"altmodische,altmodischem,altmodischen,altmodischer,altmodisches,altmodischere,altmodischerem,altmodischeren,altmodischerer,altmodischeres,altmodischste,altmodischstem,altmodischsten,altmodischster,altmodischstes\"\n    },\n    \"amateurhaft\": {\n        \"form\": \"amateurhaft\",\n        \"polarity\": \"-0.4485\",\n        \"pos\": \"JJ\",\n        \"sense\": \"amateurhafte,amateurhaftem,amateurhaften,amateurhafter,amateurhaftes,amateurhaftere,amateurhafterem,amateurhafteren,amateurhafterer,amateurhafteres,amateurhafteste,amateurhaftestem,amateurhaftesten,amateurhaftester,amateurhaftestes\"\n    },\n    \"ambivalent\": {\n        \"form\": \"ambivalent\",\n        \"polarity\": \"-0.4628\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ambivalenterer,ambivalentestem,ambivalentesten,ambivalentem,ambivalenteren,ambivalenterem,ambivalentestes,ambivalentester,ambivalenten,ambivalentes,ambivalenter,ambivalenteste,ambivalenteres,ambivalente,ambivalentere\"\n    },\n    \"androhen\": {\n        \"form\": \"androhen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"angedroht,androhte,androhest,androhtest,androhet,anzudrohen,androhst,androhe,androhten,androht,androhtet\"\n    },\n    \"anfällig\": {\n        \"form\": \"anfällig\",\n        \"polarity\": \"-0.1884\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"angespannt\": {\n        \"form\": \"angespannt\",\n        \"polarity\": \"-0.4744\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angespannterer,angespannten,angespannteres,angespanntestem,angespanntesten,angespanntem,angespannteren,angespannte,angespannterem,angespanntester,angespanntestes,angespanntere,angespanntes,angespannter,angespannteste\"\n    },\n    \"angestrengt\": {\n        \"form\": \"angestrengt\",\n        \"polarity\": \"-0.0415\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angestrengteste,angestrengtestes,angestrengten,angestrengte,angestrengtem,angestrengtes,angestrengter,angestrengterer,angestrengtester,angestrengteres,angestrengterem,angestrengteren,angestrengtestem,angestrengtesten,angestrengtere\"\n    },\n    \"angetrunken\": {\n        \"form\": \"angetrunken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angetrunkenen,angetrunkenem,angetrunkener,angetrunkene,angetrunkenere,angetrunkeneren,angetrunkenerer,angetrunkeneres,angetrunkenste,angetrunkenes,angetrunkenstem,angetrunkenster,angetrunkensten,angetrunkenstes,angetrunkenerem\"\n    },\n    \"angreifen\": {\n        \"form\": \"angreifen\",\n        \"polarity\": \"-0.0464\",\n        \"pos\": \"VB\",\n        \"sense\": \"angreife,angreifst,angreift,angreifest,angreifet,angriff,angriffst,angriffen,angriffe,angriffest,angriffet,anzugreifen,angegriffen\"\n    },\n    \"anklagen\": {\n        \"form\": \"anklagen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"anklagten,anklagtet,anklagest,anklage,angeklagt,anklagt,anklaget,anklagst,anklagtest,anklagte,anzuklagen\"\n    },\n    \"anmaßen\": {\n        \"form\": \"anmaßen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"anmaßtet,anmaßest,anmaßtest,anzumaßen,anmaße,anmaßten,angemaßt,anmaß,anmaßet,anmaßte,anzumassen\"\n    },\n    \"annullieren\": {\n        \"form\": \"annullieren\",\n        \"polarity\": \"-0.3149\",\n        \"pos\": \"VB\",\n        \"sense\": \"annulliertet,annulliert,annulliere,annullierst,annullierte,annullierest,annulliertest,annullierten,annullieret\"\n    },\n    \"anschießen\": {\n        \"form\": \"anschießen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"anspannen\": {\n        \"form\": \"anspannen\",\n        \"polarity\": \"-0.0444\",\n        \"pos\": \"VB\",\n        \"sense\": \"anspannte,anspannt,anspanne,anspannten,anzuspannen,angespannt,anspanntet,anspanntest,anspannst,anspannet,anspannest\"\n    },\n    \"anstrengen\": {\n        \"form\": \"anstrengen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"anstrengtet,anstrengest,anstrenget,angestrengt,anstrengtest,anzustrengen,anstrengte,anstrengten,anstrengt,anstrengst,anstrenge\"\n    },\n    \"anstrengend\": {\n        \"form\": \"anstrengend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"anstrengendem,anstrengendsten,anstrengenden,anstrengenderes,anstrengendstem,anstrengenderer,anstrengendster,anstrengendes,anstrengender,anstrengendste,anstrengenderen,anstrengenderem,anstrengendere,anstrengende,anstrengendstes\"\n    },\n    \"anstößig\": {\n        \"form\": \"anstößig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"antiquiert\": {\n        \"form\": \"antiquiert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"antiquiertes,antiquiertere,antiquierter,antiquiertestem,antiquiertesten,antiquiertester,antiquierterem,antiquiertestes,antiquierteren,antiquierteres,antiquierte,antiquierterer,antiquierteste,antiquierten,antiquiertem\"\n    },\n    \"anzünden\": {\n        \"form\": \"anzünden\",\n        \"polarity\": \"-0.3333\",\n        \"pos\": \"VB\",\n        \"sense\": \"anzünde,anzündest,anzündet,anzündete,anzuündetest,anzündeten,anzündetet\"\n    },\n    \"apathisch\": {\n        \"form\": \"apathisch\",\n        \"polarity\": \"-0.3252\",\n        \"pos\": \"JJ\",\n        \"sense\": \"apathischerem,apathischeren,apathischste,apathischerer,apathischem,apathischster,apathischen,apathischstes,apathischstem,apathischsten,apathischer,apathischere,apathischeres,apathisches,apathische\"\n    },\n    \"apokalyptisch\": {\n        \"form\": \"apokalyptisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"apokalyptischeren,apokalyptischen,apokalyptischerem,apokalyptischem,apokalyptischstes,apokalyptischster,apokalyptischsten,apokalyptisches,apokalyptischstem,apokalyptischer,apokalyptischere,apokalyptischste,apokalyptische,apokalyptischerer,apokalyptischeres\"\n    },\n    \"arbeitslos\": {\n        \"form\": \"arbeitslos\",\n        \"polarity\": \"-0.3426\",\n        \"pos\": \"JJ\",\n        \"sense\": \"arbeitslosere,arbeitslose,arbeitsloserer,arbeitsloseres,arbeitsloserem,arbeitsloseren,arbeitsloseste,arbeitsloses,arbeitsloser,arbeitslosester,arbeitslosestes,arbeitslosesten,arbeitslosestem,arbeitslosem,arbeitslosen\"\n    },\n    \"archaisch\": {\n        \"form\": \"archaisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"archaische,archaischstem,archaischsten,archaischstes,archaischste,archaischster,archaischeren,archaischeres,archaischerer,archaischere,archaisches,archaischerem,archaischen,archaischem,archaischer\"\n    },\n    \"arm\": {\n        \"form\": \"arm\",\n        \"polarity\": \"-0.4546\",\n        \"pos\": \"JJ\",\n        \"sense\": \"armem,armen,ärmerer,arme,ärmeres,ärmeren,ärmerem,armes,armer,ärmer,ärmstes,ärmster,ärmste,ärmsten,ärmstem,ärmere\"\n    },\n    \"armselig\": {\n        \"form\": \"armselig\",\n        \"polarity\": \"-0.1814\",\n        \"pos\": \"JJ\",\n        \"sense\": \"armseligen,armseligem,armselige,armseliges,armseliger,armseligste,armseligster,armseligstes,armseligerem,armseligstem,armseligsten,armseligeren,armseligere,armseligerer,armseligeres\"\n    },\n    \"arrogant\": {\n        \"form\": \"arrogant\",\n        \"polarity\": \"-0.4659\",\n        \"pos\": \"JJ\",\n        \"sense\": \"arrogante,arroganteste,arrogantem,arroganten,arrogantestem,arrogantesten,arroganter,arrogantes,arrogantester,arrogantestes,arroganteres,arroganterer,arroganteren,arrogantere,arroganterem\"\n    },\n    \"attackieren\": {\n        \"form\": \"attackieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"attackiere,attackierst,attackiert,attackierest,attackieret,attackierte,attackiertest,attackierten,attackiertet\"\n    },\n    \"aufblasen\": {\n        \"form\": \"aufblasen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufblase,aufbläst,aufblast,aufblasest,aufblaset,aufblies,aufbliesest,aufbliest,aufbliesen,aufbliese,aufblieset,aufzublasen,aufgeblasen\"\n    },\n    \"aufblähen\": {\n        \"form\": \"aufblähen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufblähtet,aufblähest,aufzublähen,aufbläht,aufblähe,aufgebläht,aufblähte,aufblähet,aufblähst,aufblähtest,aufblähten\"\n    },\n    \"aufbringen\": {\n        \"form\": \"aufbringen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufbringe,aufbringst,aufbringt,aufbringest,aufbringet,aufbrachte,aufbrachtest,aufbrachten,aufbrachtet,aufbrächte,aufbrächtest,aufbrächten,aufbrächtet,aufzubringen,aufgebracht\"\n    },\n    \"auffallen\": {\n        \"form\": \"auffallen\",\n        \"polarity\": \"-0.3386\",\n        \"pos\": \"VB\",\n        \"sense\": \"auffalle,auffällst,auffällt,auffallt,auffallest,auffallet,auffiel,auffielst,auffielen,auffielt,auffiele,auffielest,auffielet,aufzufallen,aufgefallen\"\n    },\n    \"aufgeben\": {\n        \"form\": \"aufgeben\",\n        \"polarity\": \"-0.2098\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufgebe,aufgibst,aufgibt,aufgebt,aufgebest,aufgebet,aufgab,aufgabst,aufgaben,aufgabt,aufgäbe,aufgäbest,aufgäbst\"\n    },\n    \"aufgebracht\": {\n        \"form\": \"aufgebracht\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufgebrachterem,aufgebrachte,aufgebrachten,aufgebrachtem,aufgebrachteren,aufgebrachtestes,aufgebrachtester,aufgebrachter,aufgebrachteres,aufgebrachterer,aufgebrachtes,aufgebrachtesten,aufgebrachtestem,aufgebrachtere,aufgebrachteste\"\n    },\n    \"aufgeregt\": {\n        \"form\": \"aufgeregt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufgeregteres,aufgeregterer,aufgeregterem,aufgeregtestes,aufgeregteren,aufgeregtester,aufgeregten,aufgeregtem,aufgeregtere,aufgeregter,aufgeregtesten,aufgeregtes,aufgeregtestem,aufgeregte,aufgeregteste\"\n    },\n    \"aufhören\": {\n        \"form\": \"aufhören\",\n        \"polarity\": \"-0.0142\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufhöre,aufhörst,aufhört,aufhörest,aufhöret,aufhörte,aufhörtest,aufhörten,aufhörtet,aufzuhören,aufgehört\"\n    },\n    \"auflösen\": {\n        \"form\": \"auflösen\",\n        \"polarity\": \"-0.0412\",\n        \"pos\": \"VB\",\n        \"sense\": \"auflöstet,auflöst,auflöse,auflöstest,auflöste,auflösten,auflöset,aufzulösen,aufgelöst,auflösest\"\n    },\n    \"aufregen\": {\n        \"form\": \"aufregen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufregt,aufrege,aufregtet,aufregst,aufgeregt,aufregte,aufreget,aufregtest,aufregten,aufzuregen,aufregest\"\n    },\n    \"aufreibend\": {\n        \"form\": \"aufreibend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufreibende,aufreibendem,aufreibenden,aufreibender,aufreibendes,aufreibendere,aufreibenderem,aufreibenderen,aufreibenderer,aufreibenderes,aufreibendste,aufreibendstem,aufreibendsten,aufreibendster,aufreibendstes\"\n    },\n    \"aufrühren\": {\n        \"form\": \"aufrühren\",\n        \"polarity\": \"-0.0256\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufzurühren,aufrührtest,aufrührtet,aufrühret,aufrühre,aufrührten,aufrührte,aufrührt,aufgerührt,aufrührst,aufrührest\"\n    },\n    \"aufschlagen\": {\n        \"form\": \"aufschlagen\",\n        \"polarity\": \"-0.04\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"aufschreien\": {\n        \"form\": \"aufschreien\",\n        \"polarity\": \"-0.043\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufschreie,aufschreist,aufschreit,aufschreiest,aufschreiet,aufschrie,aufschriest,aufschrieen,aufschrien,aufschriet,aufschriee,aufschrieest,aufschrieet,aufzuschreien,aufgeschrien,aufgeschrieen\"\n    },\n    \"aufwühlen\": {\n        \"form\": \"aufwühlen\",\n        \"polarity\": \"-0.0398\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufwühle,aufwühlst,aufwühlt,aufwühlest,aufwühlet,aufwühlte,aufwühltest,aufwühlten,aufwühltet,aufzuwühlen,aufgewühlt\"\n    },\n    \"ausbeuten\": {\n        \"form\": \"ausbeuten\",\n        \"polarity\": \"-0.3215\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausgebeutet,ausbeutete,ausbeutten,ausbeuttest,ausbeutet,ausbeuteten,ausbeutetest,ausbeutte,ausbeutetet,ausbeutest,auszubeuten,ausbeute,ausbeuttet\"\n    },\n    \"ausbrechen\": {\n        \"form\": \"ausbrechen\",\n        \"polarity\": \"-0.1819\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"auseinanderfallen\": {\n        \"form\": \"auseinanderfallen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"auseinanderfalle,auseinanderfällst,auseinanderfällt,auseinanderfallt,auseinanderfallest,auseinanderfallet,auseinanderfiel,auseinanderfielst,auseinanderfielen,auseinanderfielt,auseinanderfiele,auseinanderfielest,auseinanderfielet,auseinanderzufallen,auseinandergefallen\"\n    },\n    \"auseinandersetzen\": {\n        \"form\": \"auseinandersetzen\",\n        \"polarity\": \"-0.0584\",\n        \"pos\": \"VB\",\n        \"sense\": \"auseinandersetze,auseinandersetzt,auseinandersetzest,auseinandersetzet,auseinandersetzte,auseinandersetztest,auseinandersetzten,auseinandersetztet,auseinanderzusetzen,auseinandergesetzt\"\n    },\n    \"ausfallen\": {\n        \"form\": \"ausfallen\",\n        \"polarity\": \"-0.3481\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausfalle,ausfällst,ausfällt,ausfallt,ausfallest,ausfallet,ausfiel,ausfielst,ausfielen,ausfielt,ausfiele,ausfielest,ausfielet,auszufallen,ausgefallen\"\n    },\n    \"ausgehungert\": {\n        \"form\": \"ausgehungert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgehungertster,ausgehungertstes,ausgehungertere,ausgehungertes,ausgehungerte,ausgehungerter,ausgehungerten,ausgehungertem,ausgehungerteren,ausgehungertstem,ausgehungertsten,ausgehungerterem,ausgehungerterer,ausgehungertste,ausgehungerteres\"\n    },\n    \"ausgestorben\": {\n        \"form\": \"ausgestorben\",\n        \"polarity\": \"-0.0389\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgestorbenerer,ausgestorbenem,ausgestorbenere,ausgestorbenen,ausgestorbener,ausgestorbeneren,ausgestorbenerem,ausgestorbene,ausgestorbenes,ausgestorbeneres,ausgestorbenster,ausgestorbenstes,ausgestorbenste,ausgestorbenstem,ausgestorbensten\"\n    },\n    \"ausgleiten\": {\n        \"form\": \"ausgleiten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausgleite,ausgleitest,ausgleitet,ausglitt,ausglittest,ausglitten,ausglittet,auszugleiten,ausgeglitten\"\n    },\n    \"ausgrenzen\": {\n        \"form\": \"ausgrenzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausgrenze,ausgrenzt,ausgrenzest,ausgrenzet,ausgrenzte,ausgrenztest,ausgrenzten,ausgrenztet,auszugrenzen,ausgegrenzt\"\n    },\n    \"ausradieren\": {\n        \"form\": \"ausradieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausradiertet,ausradierest,ausradierten,auszuradieren,ausradierte,ausradierst,ausradieret,ausradiertest,ausradiert,ausradiere\"\n    },\n    \"ausrotten\": {\n        \"form\": \"ausrotten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausrottet,ausrotten,ausrottest,auszurotten,ausrotteten,ausrottetest,ausgerottet,ausrottetet,ausrotte,ausrottete\"\n    },\n    \"ausschalten\": {\n        \"form\": \"ausschalten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausschaltest,ausschalte,ausschaltet,ausschaltetest,auszuschalten,ausschaltetet,ausgeschaltet,ausschalteten,ausschalten,ausschaltete\"\n    },\n    \"ausschließen\": {\n        \"form\": \"ausschließen\",\n        \"polarity\": \"-0.4935\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"aussetzen\": {\n        \"form\": \"aussetzen\",\n        \"polarity\": \"-0.3413\",\n        \"pos\": \"VB\",\n        \"sense\": \"auszusetzen,aussetzte,aussetzest,aussetztet,aussetztest,aussetzten,aussetze,ausgesetzt,aussetzet,aussetzt\"\n    },\n    \"aussichtslos\": {\n        \"form\": \"aussichtslos\",\n        \"polarity\": \"-0.183\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aussichtslosestem,aussichtslosester,aussichtslosestes,aussichtsloseste,aussichtsloses,aussichtsloser,aussichtslosesten,aussichtsloserem,aussichtsloseren,aussichtslosen,aussichtsloserer,aussichtslosem,aussichtslosere,aussichtsloseres,aussichtslose\"\n    },\n    \"aussterben\": {\n        \"form\": \"aussterben\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"banal\": {\n        \"form\": \"banal\",\n        \"polarity\": \"-0.3166\",\n        \"pos\": \"JJ\",\n        \"sense\": \"banaleres,banalerer,banaleren,banalste,banalsten,banalstem,banales,banaler,banalere,banale,banalerem,banalem,banalen,banalstes,banalster\"\n    },\n    \"barbarisch\": {\n        \"form\": \"barbarisch\",\n        \"polarity\": \"-0.3176\",\n        \"pos\": \"JJ\",\n        \"sense\": \"barbarischer,barbarisches,barbarischen,barbarischem,barbarischste,barbarischeren,barbarischerem,barbarischstes,barbarischster,barbarischere,barbarischerer,barbarische,barbarischstem,barbarischsten,barbarischeres\"\n    },\n    \"beanstandet\": {\n        \"form\": \"beanstandet\",\n        \"polarity\": \"-0.333\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beanstandete,beanstandetem,beanstandeten,beanstandeter,beanstandetes\"\n    },\n    \"bedauerlich\": {\n        \"form\": \"bedauerlich\",\n        \"polarity\": \"-0.0551\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedauerlichsten,bedauerlichstem,bedauerlicheres,bedauerlichste,bedauerlicherer,bedauerlicheren,bedauerlichem,bedauerlicherem,bedauerlichen,bedauerliche,bedauerliches,bedauerlicher,bedauerlichstes,bedauerlichster,bedauerlichere\"\n    },\n    \"bedauern\": {\n        \"form\": \"bedauern\",\n        \"polarity\": \"-0.0574\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedauere,bedauerst,bedauert,bedaurest,bedaure,bedauret,bedauerte,bedauertest,bedauerten,bedauertet\"\n    },\n    \"bedauernswert\": {\n        \"form\": \"bedauernswert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedauernswerter,bedauernswertes,bedauernswertere,bedauernswerte,bedauernswerten,bedauernswerteren,bedauernswerterem,bedauernswertestem,bedauernswertesten,bedauernswertester,bedauernswertestes,bedauernswertem,bedauernswerterer,bedauernswerteres,bedauernswerteste\"\n    },\n    \"bedenklich\": {\n        \"form\": \"bedenklich\",\n        \"polarity\": \"-0.7701\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedenklicherem,bedenkliches,bedenklicher,bedenklicheren,bedenklicheres,bedenklichster,bedenklichstes,bedenklichste,bedenklicherer,bedenkliche,bedenklichere,bedenklichsten,bedenklichem,bedenklichstem,bedenklichen\"\n    },\n    \"bedeppert\": {\n        \"form\": \"bedeppert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedeppertem,bedeppertere,bedepperterem,bedepperteren,bedepperte,bedepperteres,bedepperten,bedepperterer,bedeppertesten,bedepperteste,bedeppertestem,bedeppertestes,bedeppertester,bedepperter,bedeppertes\"\n    },\n    \"bedeutungslos\": {\n        \"form\": \"bedeutungslos\",\n        \"polarity\": \"-0.6046\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedeutungsloseste,bedeutungslosesten,bedeutungslosestem,bedeutungsloserem,bedeutungslosester,bedeutungslosere,bedeutungsloseres,bedeutungsloseren,bedeutungsloserer,bedeutungslosestes,bedeutungslose,bedeutungslosen,bedeutungslosem,bedeutungsloser,bedeutungsloses\"\n    },\n    \"bedrohen\": {\n        \"form\": \"bedrohen\",\n        \"polarity\": \"-0.3408\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedrohten,bedroht,bedrohe,bedrohet,bedrohtest,bedrohest,bedrohtet,bedrohte,bedrohst\"\n    },\n    \"bedrohlich\": {\n        \"form\": \"bedrohlich\",\n        \"polarity\": \"-0.4726\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedrohlichere,bedrohlichste,bedrohlicherer,bedrohlicheres,bedrohlicherem,bedrohlicheren,bedrohlicher,bedrohlichstes,bedrohlichster,bedrohliches,bedrohlichen,bedrohlichstem,bedrohlichem,bedrohlichsten,bedrohliche\"\n    },\n    \"bedrängen\": {\n        \"form\": \"bedrängen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedrängtet,bedränget,bedränge,bedrängten,bedrängest,bedrängtest,bedrängte,bedrängt,bedrängst\"\n    },\n    \"bedrücken\": {\n        \"form\": \"bedrücken\",\n        \"polarity\": \"-0.3123\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedrückten,bedrückst,bedrückte,bedrücket,bedrücktet,bedrückest,bedrücktest,bedrückt,bedrücke\"\n    },\n    \"bedrückt\": {\n        \"form\": \"bedrückt\",\n        \"polarity\": \"-0.0494\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"bedürftig\": {\n        \"form\": \"bedürftig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"beeinträchtigen\": {\n        \"form\": \"beeinträchtigen\",\n        \"polarity\": \"-0.4979\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beeinträchtigten,beeinträchtigest,beeinträchtige,beeinträchtigtest,beeinträchtigt,beeinträchtigst,beeinträchtigte,beeinträchtigtet,beeinträchtiget\"\n    },\n    \"beenden\": {\n        \"form\": \"beenden\",\n        \"polarity\": \"-0.0603\",\n        \"pos\": \"VB\",\n        \"sense\": \"beendest,beende,beendeten,beendete,beendtet,beendetest,beendte,beendetet,beendtest,beendet,beendten\"\n    },\n    \"befallen\": {\n        \"form\": \"befallen\",\n        \"polarity\": \"-0.334\",\n        \"pos\": \"VB\",\n        \"sense\": \"befalle,befällst,befällt,befallt,befallest,befallet,befiel,befielst,befielen,befielt,befiele,befielest,befielet\"\n    },\n    \"befangen\": {\n        \"form\": \"befangen\",\n        \"polarity\": \"-0.3253\",\n        \"pos\": \"JJ\",\n        \"sense\": \"befangeneres,befangenerer,befangnerem,befangneren,befangenere,befangeneren,befangenerem,befangenste,befangner,befangenstes,befangenster,befangenstem,befangnere,befangensten,befangnerer,befangenes,befangneres,befangener,befangene,befangenem,befangenen\"\n    },\n    \"befremdlich\": {\n        \"form\": \"befremdlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"befremdlichen,befremdliches,befremdlicher,befremdlichstes,befremdlichster,befremdlichem,befremdlichsten,befremdlichstem,befremdlicheres,befremdlicherer,befremdlichere,befremdlichste,befremdliche,befremdlicherem,befremdlicheren\"\n    },\n    \"befürchten\": {\n        \"form\": \"befürchten\",\n        \"polarity\": \"-0.3602\",\n        \"pos\": \"VB\",\n        \"sense\": \"befürchte,befürchtest,befürchtet,befürchtete,befürchtetest,befürchteten,befürchtetet\"\n    },\n    \"begrenzen\": {\n        \"form\": \"begrenzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"begrenzten,begrenzte,begrenzt,begrenztet,begrenze,begrenzest,begrenzet,begrenztest\"\n    },\n    \"begrenzt\": {\n        \"form\": \"begrenzt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"begrenzterer,begrenzte,begrenztestem,begrenztesten,begrenzteres,begrenzteren,begrenzterem,begrenzteste,begrenztem,begrenzten,begrenzter,begrenztes,begrenztere,begrenztestes,begrenztester\"\n    },\n    \"begriffsstutzig\": {\n        \"form\": \"begriffsstutzig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"begriffsstutzigeres,begriffsstutzigere,begriffsstutzigerer,begriffsstutzigste,begriffsstutzigstes,begriffsstutzigster,begriffsstutzigerem,begriffsstutzigsten,begriffsstutzigstem,begriffsstutzige,begriffsstutzigeren,begriffsstutzigem,begriffsstutzigen,begriffsstutziger,begriffsstutziges\"\n    },\n    \"behindern\": {\n        \"form\": \"behindern\",\n        \"polarity\": \"-0.7748\",\n        \"pos\": \"VB\",\n        \"sense\": \"behinderten,behindertet,behindert,behindere,behindertest,behinderte,behinderen,behinderst\"\n    },\n    \"behämmert\": {\n        \"form\": \"behämmert\",\n        \"polarity\": \"-0.0376\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"beklagen\": {\n        \"form\": \"beklagen\",\n        \"polarity\": \"-0.4967\",\n        \"pos\": \"VB\",\n        \"sense\": \"beklagtet,beklagtest,beklaget,beklagest,begeklagt,beklagten,beklage,beklagt,beklagst,beklagte\"\n    },\n    \"beklagenswert\": {\n        \"form\": \"beklagenswert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beklagenswerterer,beklagenswerte,beklagenswerteres,beklagenswerteren,beklagenswertestem,beklagenswertesten,beklagenswertem,beklagenswerten,beklagenswerterem,beklagenswertes,beklagenswerter,beklagenswerteste,beklagenswertere,beklagenswertester,beklagenswertestes\"\n    },\n    \"bekloppt\": {\n        \"form\": \"bekloppt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bekloppter,beklopptes,bekloppte,beklopptem,bekloppten,bekloppteres,bekloppterer,beklopptestes,bekloppterem,beklopptester,beklopptere,bekloppteren,bekloppteste,beklopptesten,beklopptestem\"\n    },\n    \"beknackt\": {\n        \"form\": \"beknackt\",\n        \"polarity\": \"-0.0358\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beknackterer,beknackteres,beknacktester,beknackteste,beknacktestes,beknackte,beknackteren,beknackterem,beknacktestem,beknacktesten,beknackter,beknacktes,beknacktem,beknacktere,beknackten\"\n    },\n    \"bekümmert\": {\n        \"form\": \"bekümmert\",\n        \"polarity\": \"-0.4503\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"belanglos\": {\n        \"form\": \"belanglos\",\n        \"polarity\": \"-0.3306\",\n        \"pos\": \"JJ\",\n        \"sense\": \"belanglosesten,belanglosem,belanglosester,belanglosestes,belangloses,belangloseste,belangloser,belanglosen,belanglosere,belangloserer,belangloseres,belanglose,belangloserem,belanglosestem,belangloseren\"\n    },\n    \"belasten\": {\n        \"form\": \"belasten\",\n        \"polarity\": \"-0.5078\",\n        \"pos\": \"VB\",\n        \"sense\": \"belaste,belastest,belastet,belastete,belastetest,belasteten,belastetet\"\n    },\n    \"beleidigen\": {\n        \"form\": \"beleidigen\",\n        \"polarity\": \"-0.6076\",\n        \"pos\": \"VB\",\n        \"sense\": \"beleidigtet,beleidigst,beleidiget,beleidige,beleidigten,beleidigte,beleidigtest,beleidigt,beleidigest\"\n    },\n    \"beleidigend\": {\n        \"form\": \"beleidigend\",\n        \"polarity\": \"-0.4636\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beleidigende,beleidigendem,beleidigenden,beleidigender,beleidigendes,beleidigendere,beleidigenderem,beleidigenderen,beleidigenderer,beleidigenderes,beleidigenste,beleidigenstem,beleidigensten,beleidigenster,beleidigenstes\"\n    },\n    \"beleidigt\": {\n        \"form\": \"beleidigt\",\n        \"polarity\": \"-0.4848\",\n        \"pos\": \"VB\",\n        \"sense\": \"beleidigte,beleidigtem,beleidigten,beleidigter,beleidigtes,beleidigtere,beleidigterem,beleidigteren,beleidigterer,beleidigteres,beleidigste,beleidigstem,beleidigsten,beleidigster,beleidigstes\"\n    },\n    \"belästigen\": {\n        \"form\": \"belästigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"belästigten,belästigst,belästiget,belästigt,belästige,belästigte,belästigtet,belästigest,belästigtest\"\n    },\n    \"berauben\": {\n        \"form\": \"berauben\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"beraubte,beraubst,beraubest,beraubten,beraubtest,beraube,beraubet,beraubt,beraubtet\"\n    },\n    \"bergab\": {\n        \"form\": \"bergab\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"bescheuert\": {\n        \"form\": \"bescheuert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bescheuertestes,bescheuertester,bescheuertes,bescheuerter,bescheuerteren,bescheuertem,bescheuerteres,bescheuerten,bescheuerterer,bescheuertestem,bescheuertesten,bescheuertere,bescheuerteste,bescheuerte,bescheuerterem\"\n    },\n    \"beschissen\": {\n        \"form\": \"beschissen\",\n        \"polarity\": \"-0.2947\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beschissnere,beschissenere,beschisseneres,beschissnerem,beschissene,beschissenerem,beschisseneren,beschissenste,beschissenerer,beschissenen,beschissenstes,beschissenem,beschissenster,beschissenstem,beschissensten,beschissneren,beschissner,beschissenes,beschissener,beschissnerer,beschissneres\"\n    },\n    \"beschneiden\": {\n        \"form\": \"beschneiden\",\n        \"polarity\": \"-0.3293\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschneide,beschneidest,beschneidet,beschnitt,beschnittest,beschnitten,beschnittet\"\n    },\n    \"beschruppt\": {\n        \"form\": \"beschruppt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beschruppte,beschrupptem,beschruppten,beschruppter,beschrupptes,beschrupptere,beschruppterem,beschruppteren,beschruppterer,beschruppteres,beschruppteste,beschrupptestem,beschrupptesten,beschrupptester,beschrupptestes\"\n    },\n    \"beschränken\": {\n        \"form\": \"beschränken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschränktet,beschränkten,beschränkte,beschränkest,beschränkst,beschränktest,beschränkt,beschränket,beschränke\"\n    },\n    \"beschränkt\": {\n        \"form\": \"beschränkt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"beschuldigen\": {\n        \"form\": \"beschuldigen\",\n        \"polarity\": \"-0.3264\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschuldigten,beschuldigest,beschuldigt,beschuldige,beschuldigtet,beschuldigte,beschuldiget,beschuldigtest,beschuldigst\"\n    },\n    \"beschweren\": {\n        \"form\": \"beschweren\",\n        \"polarity\": \"-0.0413\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschwerten,beschwerst,beschwertest,beschwertet,beschwerte,beschwere,beschwert\"\n    },\n    \"beschwerlich\": {\n        \"form\": \"beschwerlich\",\n        \"polarity\": \"-0.0491\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beschwerlichstes,beschwerliche,beschwerlichere,beschwerlicher,beschwerlicheres,beschwerliches,beschwerlichem,beschwerlicherer,beschwerlichen,beschwerlicherem,beschwerlichste,beschwerlicheren,beschwerlichstem,beschwerlichsten,beschwerlichster\"\n    },\n    \"beschädigen\": {\n        \"form\": \"beschädigen\",\n        \"polarity\": \"-0.335\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschädigtest,beschädigten,beschädige,beschädigte,beschädiget,beschädigt,beschädigest,beschädigtet,beschädigst\"\n    },\n    \"beschäftigungslos\": {\n        \"form\": \"beschäftigungslos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beschäftigungslose,beschäftigungslosem,beschäftigungslosen,beschäftigungsloser,beschäftigungsloses\"\n    },\n    \"beschämen\": {\n        \"form\": \"beschämen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschämtest,beschämt,beschäme,beschämtet,beschämest,beschämte,beschämst,beschämet,beschämten\"\n    },\n    \"beseitigen\": {\n        \"form\": \"beseitigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"beseitigtet,beseitiget,beseitigtest,beseitigten,beseitigt,beseitige,beseitigst,beseitigest,beseitigte\"\n    },\n    \"besorgniserregend\": {\n        \"form\": \"besorgniserregend\",\n        \"polarity\": \"-0.3281\",\n        \"pos\": \"JJ\",\n        \"sense\": \"besorgniserregender,besorgniserregende,besorgniserregendere,besorgniserregendes,besorgniserregenden,besorgniserregendem,besorgniserregenderes,besorgniserregenderer,besorgniserregendste,besorgniserregendstem,besorgniserregenderem,besorgniserregenderen,besorgniserregendsten,besorgniserregendstes,besorgniserregendster\"\n    },\n    \"besorgt\": {\n        \"form\": \"besorgt\",\n        \"polarity\": \"-0.0482\",\n        \"pos\": \"JJ\",\n        \"sense\": \"besorgterem,besorgtesten,besorgteren,besorgtestem,besorgterer,besorgteres,besorgte,besorgtere,besorgtestes,besorgtem,besorgten,besorgtes,besorgteste,besorgtester,besorgter\"\n    },\n    \"bestechen\": {\n        \"form\": \"bestechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"besteche,bestichst,besticht,bestecht,bestechest,bestechet,bestach,bestachst,bestachen,bestäche,bestächest,bestächst,bestächen,bestächet,bestächt\"\n    },\n    \"besteuern\": {\n        \"form\": \"besteuern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"besteuertest,besteuerten,besteuerte,besteueren,besteuerst,begesteuert,besteuert,besteuertet,besteuere\"\n    },\n    \"bestrafen\": {\n        \"form\": \"bestrafen\",\n        \"polarity\": \"-0.4811\",\n        \"pos\": \"VB\",\n        \"sense\": \"bestrafet,bestrafest,bestrafst,bestraftet,bestrafte,bestraft,bestrafe,bestraften,bestraftest\"\n    },\n    \"bestürzt\": {\n        \"form\": \"bestürzt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"betrunken\": {\n        \"form\": \"betrunken\",\n        \"polarity\": \"-0.172\",\n        \"pos\": \"JJ\",\n        \"sense\": \"betrunkensten,betrunkeneres,betrunkenere,betrunkenerer,betrunkenes,betrunkeneren,betrunkenstem,betrunkenste,betrunkenen,betrunkenem,betrunkenster,betrunkene,betrunkenstes,betrunkener,betrunkenerem\"\n    },\n    \"betrügen\": {\n        \"form\": \"betrügen\",\n        \"polarity\": \"-0.743\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"betrügerisch\": {\n        \"form\": \"betrügerisch\",\n        \"polarity\": \"-0.3163\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"betäuben\": {\n        \"form\": \"betäuben\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"betäubten,betäubst,betäubte,betäubtest,betäubt,betäubest,betäube,betäubet,betäubtet\"\n    },\n    \"beunruhigen\": {\n        \"form\": \"beunruhigen\",\n        \"polarity\": \"-0.3221\",\n        \"pos\": \"VB\",\n        \"sense\": \"beunruhige,beunruhigtest,beunruhigten,beunruhigst,beunruhigte,beunruhigtet,beunruhigest,beunruhigt,beunruhiget\"\n    },\n    \"beunruhigend\": {\n        \"form\": \"beunruhigend\",\n        \"polarity\": \"-0.3264\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beunruhigende,beunruhigendem,beunruhigenden,beunruhigender,beunruhigendes,beunruhigendere,beunruhigenderem,beunruhigenderen,beunruhigenderer,beunruhigenderes,beunruhigste,beunruhigstem,beunruhigsten,beunruhigster,beunruhigstes\"\n    },\n    \"beunruhigt\": {\n        \"form\": \"beunruhigt\",\n        \"polarity\": \"-0.4795\",\n        \"pos\": \"VB\",\n        \"sense\": \"beunruhigte,beunruhigtem,beunruhigten,beunruhigter,beunruhigtes,beunruhigtere,beunruhigterem,beunruhigteren,beunruhigterer,beunruhigteres,beunruhigste,beunruhigstem,beunruhigsten,beunruhigster,beunruhigstes\"\n    },\n    \"bevormunden\": {\n        \"form\": \"bevormunden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"bevormundetest,bevormundet,bevormundest,bevormundeten,bevormundete,bevormunde,bevormundetet\"\n    },\n    \"bewegungslos\": {\n        \"form\": \"bewegungslos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bewegungslosestes,bewegungsloseste,bewegungslosester,bewegungslosen,bewegungsloserem,bewegungslosem,bewegungsloseren,bewegungsloserer,bewegungsloseres,bewegungslose,bewegungsloses,bewegungsloser,bewegungslosere,bewegungslosesten,bewegungslosestem\"\n    },\n    \"beängstigend\": {\n        \"form\": \"beängstigend\",\n        \"polarity\": \"-0.0367\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"billig\": {\n        \"form\": \"billig\",\n        \"polarity\": \"-0.2842\",\n        \"pos\": \"JJ\",\n        \"sense\": \"billigerer,billigster,billigeres,billigeren,billigstes,billigerem,billigere,billiges,billigste,billiger,billige,billigem,billigen,billigstem,billigsten\"\n    },\n    \"bitter\": {\n        \"form\": \"bitter\",\n        \"polarity\": \"-0.3394\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bittersten,bitteres,bitterer,bittereres,bitterstem,bittererer,bittererem,bittereren,bittere,bitterster,bitterste,bitterstes,bitterem,bitteren,bittrerer,bittrere,bittrer,bitterere\"\n    },\n    \"bizarr\": {\n        \"form\": \"bizarr\",\n        \"polarity\": \"-0.0486\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bizarrstem,bizarrster,bizarrste,bizarrstes,bizarre,bizarrsten,bizarrere,bizarreren,bizarres,bizarrer,bizarrerem,bizarrem,bizarren,bizarreres,bizarrerer\"\n    },\n    \"blauäugig\": {\n        \"form\": \"blauäugig\",\n        \"polarity\": \"-0.0445\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"blind\": {\n        \"form\": \"blind\",\n        \"polarity\": \"-0.1978\",\n        \"pos\": \"JJ\",\n        \"sense\": \"blinderes,blinde,blindes,blinder,blinden,blindestem,blindere,blindesten,blindem,blindestes,blindester,blinderer,blinderen,blindeste,blinderem\"\n    },\n    \"blockieren\": {\n        \"form\": \"blockieren\",\n        \"polarity\": \"-0.3459\",\n        \"pos\": \"VB\",\n        \"sense\": \"blockiere,blockierst,blockiert,blockierest,blockieret,blockierte,blockiertest,blockierten,blockiertet\"\n    },\n    \"blutig\": {\n        \"form\": \"blutig\",\n        \"polarity\": \"-0.0491\",\n        \"pos\": \"JJ\",\n        \"sense\": \"blutigstem,blutigsten,blutiges,blutiger,blutigster,blutigere,blutigstes,blutigen,blutigeren,blutigerem,blutigerer,blutige,blutigeres,blutigem,blutigste\"\n    },\n    \"blöd\": {\n        \"form\": \"blöd\",\n        \"polarity\": \"-0.1593\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"blöde\": {\n        \"form\": \"blöde\",\n        \"polarity\": \"-0.3145\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bombardieren\": {\n        \"form\": \"bombardieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"bombardieret,bombardiere,bombardiert,bombardiertet,bombardiertest,bombardierest,bombardierst,bombardierte,bombardierten\"\n    },\n    \"borniert\": {\n        \"form\": \"borniert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"borniertere,bornierten,borniertestem,bornierter,borniertes,bornierteres,bornierte,bornierteste,borniertesten,bornierterer,borniertestes,borniertester,bornierteren,bornierterem,borniertem\"\n    },\n    \"boshaft\": {\n        \"form\": \"boshaft\",\n        \"polarity\": \"-0.3187\",\n        \"pos\": \"JJ\",\n        \"sense\": \"boshaftester,boshaftestes,boshafteres,boshaftestem,boshaftesten,boshafteren,boshafterem,boshafterer,boshafteste,boshafte,boshafter,boshaftes,boshaften,boshaftem,boshaftere\"\n    },\n    \"brechen\": {\n        \"form\": \"brechen\",\n        \"polarity\": \"-0.7991\",\n        \"pos\": \"VB\",\n        \"sense\": \"breche,brichst,bricht,brecht,brechest,brechet,brach,brachst,brachen,bracht,bräche,brächest,brächst,brächen,brächet,brächt\"\n    },\n    \"brennen\": {\n        \"form\": \"brennen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"brenne,brennst,brennt,brennest,brennet,brannte,branntest,brannten,branntet,gebrannt\"\n    },\n    \"brisant\": {\n        \"form\": \"brisant\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"brisantester,brisantestes,brisanterem,brisanteren,brisantesten,brisanterer,brisantestem,brisanteres,brisantere,brisanter,brisante,brisantes,brisanteste,brisantem,brisanten\"\n    },\n    \"brutal\": {\n        \"form\": \"brutal\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"brutaleren,brutalste,brutaleres,brutalerer,brutalere,brutalen,brutalem,brutalstes,brutalster,brutaler,brutalsten,brutales,brutale,brutalerem,brutalstem\"\n    },\n    \"brüchig\": {\n        \"form\": \"brüchig\",\n        \"polarity\": \"-0.3331\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bösartig\": {\n        \"form\": \"bösartig\",\n        \"polarity\": \"-0.4715\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"böse\": {\n        \"form\": \"böse\",\n        \"polarity\": \"-0.4183\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"chaotisch\": {\n        \"form\": \"chaotisch\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"JJ\",\n        \"sense\": \"chaotischere,chaotische,chaotisches,chaotischer,chaotischen,chaotischem,chaotischste,chaotischerem,chaotischstem,chaotischsten,chaotischeren,chaotischster,chaotischstes,chaotischeres,chaotischerer\"\n    },\n    \"charakterschwach\": {\n        \"form\": \"charakterschwach\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"dahinschwinden\": {\n        \"form\": \"dahinschwinden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"dahinschwinde,dahinschwindest,dahinschwindet,dahinschwand,dahinschwandest,dahinschwandst,dahinschwanden,dahinschwandet,dahinzuschwinden,dahingeschwunden\"\n    },\n    \"debil\": {\n        \"form\": \"debil\",\n        \"polarity\": \"-0.306\",\n        \"pos\": \"JJ\",\n        \"sense\": \"debilstem,debilsten,debiles,debiler,debileren,debilste,debilem,debilerem,debilen,debileres,debilerer,debilster,debilstes,debilere,debile\"\n    },\n    \"defekt\": {\n        \"form\": \"defekt\",\n        \"polarity\": \"-0.346\",\n        \"pos\": \"JJ\",\n        \"sense\": \"defektere,defekterer,defekteres,defekteste,defektem,defekte,defekten,defekterem,defektesten,defekteren,defekter,defektestem,defektes,defektestes,defektester\"\n    },\n    \"defizitär\": {\n        \"form\": \"defizitär\",\n        \"polarity\": \"-0.4535\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"deformieren\": {\n        \"form\": \"deformieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"deformiertet,deformierest,deformierte,deformierst,deformieret,deformier,deformiert,deformierten,deformiere\"\n    },\n    \"degradieren\": {\n        \"form\": \"degradieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"degradiertest,degradierten,degradierte,degradierst,degradiertet,degradiere,degradiert,degradieret,degradierest\"\n    },\n    \"deinstallieren\": {\n        \"form\": \"deinstallieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"deinstalliere,deinstallierst,deinstalliert,deinstallierest,deinstallieret,deinstallierte,deinstallierten,deinstalliertest,deinstalliertet\"\n    },\n    \"deinstalliert\": {\n        \"form\": \"deinstalliert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"deinstallierterem,deinstalliertste,deinstallierteren,deinstalliertem,deinstalliertere,deinstallierte,deinstallierten,deinstallierter,deinstalliertes,deinstalliertestes,deinstalliertester,deinstallierterer,deinstallierteres,deinstalliertesten,deinstalliertestem\"\n    },\n    \"dekadent\": {\n        \"form\": \"dekadent\",\n        \"polarity\": \"-0.1769\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dekadenter,dekadentes,dekadentere,dekadenten,dekadentem,dekadenterer,dekadenteres,dekadenterem,dekadentesten,dekadentestem,dekadentestes,dekadente,dekadentester,dekadenteren,dekadenteste\"\n    },\n    \"demütigen\": {\n        \"form\": \"demütigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"demütigest,demütiget,demütigst,demütigte,gedemütigt,demütigten,demütigtet,demütigt,demütige,demütigtest\"\n    },\n    \"denkfaul\": {\n        \"form\": \"denkfaul\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"denkfaulerem,denkfaulster,denkfaulstes,denkfauleren,denkfaulstem,denkfaulsten,denkfaulere,denkfaulste,denkfaulem,denkfaulen,denkfaule,denkfaules,denkfauleres,denkfauler,denkfaulerer\"\n    },\n    \"depressiv\": {\n        \"form\": \"depressiv\",\n        \"polarity\": \"-0.4715\",\n        \"pos\": \"JJ\",\n        \"sense\": \"depressivster,depressivstes,depressivere,depressivstem,depressivsten,depressivem,depressive,depressiven,depressiver,depressives,depressiverem,depressiveren,depressiveres,depressiverer,depressivste\"\n    },\n    \"desinteressiert\": {\n        \"form\": \"desinteressiert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"desinteressiertes,desinteressiertstes,desinteressierter,desinteressierten,desinteressiertem,desinteressiertere,desinteressiertesten,desinteressiertestem,desinteressierteren,desinteressierterem,desinteressiertester,desinteressierterer,desinteressierteres,desinteressierte,desinteressierteste\"\n    },\n    \"desolat\": {\n        \"form\": \"desolat\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"desolatesten,desolatestem,desolate,desolates,desolatere,desolatem,desolaten,desolateren,desolateres,desolater,desolaterer,desolateste,desolatestes,desolaterem,desolatester\"\n    },\n    \"destruktiv\": {\n        \"form\": \"destruktiv\",\n        \"polarity\": \"-0.1936\",\n        \"pos\": \"JJ\",\n        \"sense\": \"destruktive,destruktivere,destruktiven,destruktivsten,destruktivem,destruktivstem,destruktiverer,destruktivste,destruktivstes,destruktivster,destruktiveres,destruktiveren,destruktives,destruktiver,destruktiverem\"\n    },\n    \"dezimieren\": {\n        \"form\": \"dezimieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"dezimierte,dezimiertet,dezimiert,dezimierst,dezimiere,dezimierest,dezimieret,dezimiertest,dezimierten\"\n    },\n    \"diffamieren\": {\n        \"form\": \"diffamieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"diffamiere,diffamierst,diffamiert,diffamierest,diffamieret,diffamierte,diffamiertest,diffamierten,diffamiertet\"\n    },\n    \"diffizil\": {\n        \"form\": \"diffizil\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diffizilstes,diffizilste,diffizilster,diffizilerer,diffizilstem,diffizilsten,diffizileres,diffizilem,diffizilere,diffizilen,diffizileren,diffizilerem,diffiziles,diffiziler,diffizile\"\n    },\n    \"diffus\": {\n        \"form\": \"diffus\",\n        \"polarity\": \"-0.331\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diffuse,diffusestes,diffusester,diffusen,diffusem,diffusestem,diffuserem,diffuseren,diffuseste,diffuseres,diffusere,diffusesten,diffuser,diffuserer,diffuses\"\n    },\n    \"diktatorisch\": {\n        \"form\": \"diktatorisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diktatorischster,diktatorischstes,diktatorischste,diktatorischere,diktatorischer,diktatorisches,diktatorischeren,diktatorischerem,diktatorische,diktatorischen,diktatorischerer,diktatorischem,diktatorischeres,diktatorischsten,diktatorischstem\"\n    },\n    \"dilettantisch\": {\n        \"form\": \"dilettantisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dilettantischeren,dilettantisches,dilettantischer,dilettantischere,dilettantischerem,dilettantischste,dilettantischen,dilettantischem,dilettantischster,dilettantischstes,dilettantische,dilettantischsten,dilettantischstem,dilettantischeres,dilettantischerer\"\n    },\n    \"diskreditieren\": {\n        \"form\": \"diskreditieren\",\n        \"polarity\": \"-0.323\",\n        \"pos\": \"VB\",\n        \"sense\": \"diskreditiertet,diskreditiertest,diskreditieret,diskreditiere,diskreditiert,diskreditierst,diskreditierte,diskreditierten,diskreditierest\"\n    },\n    \"distanziert\": {\n        \"form\": \"distanziert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"distanziertere,distanzierter,distanziertes,distanziertestes,distanzierte,distanziertester,distanziertestem,distanziertesten,distanzierterer,distanzierteres,distanzierteren,distanzierten,distanzierterem,distanziertem,distanzierteste\"\n    },\n    \"disziplinlos\": {\n        \"form\": \"disziplinlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"disziplinloseste,disziplinlosester,disziplinlosestes,disziplinlose,disziplinloser,disziplinlosen,disziplinlosem,disziplinloserem,disziplinloses,disziplinlosere,disziplinloseren,disziplinloseres,disziplinloserer,disziplinlosesten,disziplinlosestem\"\n    },\n    \"dominieren\": {\n        \"form\": \"dominieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"dominieret,dominierest,dominiertest,dominiertet,dominierte,dominiere,dominierten,dominiert,dominierst\"\n    },\n    \"doof\": {\n        \"form\": \"doof\",\n        \"polarity\": \"-0.1562\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dooferes,doofer,dooferer,doofster,doofstes,doofem,doofen,dooferen,dooferem,doofste,doofsten,doofe,doofere,doofes,doofstem\"\n    },\n    \"dramatisch\": {\n        \"form\": \"dramatisch\",\n        \"polarity\": \"-0.3656\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dramatischere,dramatischste,dramatischstem,dramatischsten,dramatischster,dramatischstes,dramatischerer,dramatische,dramatischeres,dramatischeren,dramatischer,dramatisches,dramatischerem,dramatischem,dramatischen\"\n    },\n    \"drastisch\": {\n        \"form\": \"drastisch\",\n        \"polarity\": \"-0.351\",\n        \"pos\": \"JJ\",\n        \"sense\": \"drastischer,drastisches,drastische,drastischsten,drastischeres,drastischstem,drastischerer,drastischere,drastischeren,drastischerem,drastischste,drastischster,drastischstes,drastischem,drastischen\"\n    },\n    \"dreckig\": {\n        \"form\": \"dreckig\",\n        \"polarity\": \"-0.016\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dreckigste,dreckigster,dreckiges,dreckiger,dreckigeres,dreckigstes,dreckigen,dreckigerer,dreckigem,dreckigere,dreckigsten,dreckigerem,dreckige,dreckigeren,dreckigstem\"\n    },\n    \"dreist\": {\n        \"form\": \"dreist\",\n        \"polarity\": \"-0.4457\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dreistem,dreisten,dreiste,dreisterem,dreisteren,dreisteres,dreistes,dreister,dreisterer,dreisteste,dreistestem,dreistestes,dreistester,dreistesten,dreistere\"\n    },\n    \"driften\": {\n        \"form\": \"driften\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"driftest,driftet,drift,gedriftet,driftetest,driftete,driftetet,drifteten,drifte\"\n    },\n    \"drohen\": {\n        \"form\": \"drohen\",\n        \"polarity\": \"-0.3503\",\n        \"pos\": \"VB\",\n        \"sense\": \"droht,drohest,drohe,drohst,drohte,gedroht,drohtet,drohtest,drohet,drohten\"\n    },\n    \"drosseln\": {\n        \"form\": \"drosseln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"drossele,drossle,droßle,drosselt,drosslest,droßlest,drosslet,droßlet,drosselte,drosseltest,drosselten,drosseltet\"\n    },\n    \"drängelnd\": {\n        \"form\": \"drängelnd\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"drängelnde,drängelndem,drängelnden,drängelnder,drängelndes\"\n    },\n    \"drängen\": {\n        \"form\": \"drängen\",\n        \"polarity\": \"-0.3516\",\n        \"pos\": \"VB\",\n        \"sense\": \"drängten,dränget,drängte,drängest,dränge,drängt,gedrängt,drängtet,drängst,drängtest\"\n    },\n    \"dumm\": {\n        \"form\": \"dumm\",\n        \"polarity\": \"-0.5901\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"dunkel\": {\n        \"form\": \"dunkel\",\n        \"polarity\": \"-0.0214\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dunkle,dunkelstem,dunkelsten,dunklere,dunkelste,dunklerem,dunkles,dunkler,dunkleren,dunklem,dunkelster,dunklen,dunkleres,dunklerer,dunkelstes\"\n    },\n    \"durchfallen\": {\n        \"form\": \"durchfallen\",\n        \"polarity\": \"-0.1801\",\n        \"pos\": \"VB\",\n        \"sense\": \"durchfalle,durchfällst,durchfällt,durchfallt,durchfallest,durchfallet,durchfiel,durchfielst,durchfielen,durchfielt,durchfielest,durchfielet\"\n    },\n    \"dusselig\": {\n        \"form\": \"dusselig\",\n        \"polarity\": \"-0.0409\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dusseliges,dusseligsten,dusseligstes,dusseligster,dusseligstem,dusseliger,dusseligeres,dusseligerer,dusseligerem,dusselige,dusseligeren,dusseligen,dusseligem,dusseligste,dusseligere\"\n    },\n    \"dämlich\": {\n        \"form\": \"dämlich\",\n        \"polarity\": \"-0.048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"dämpfen\": {\n        \"form\": \"dämpfen\",\n        \"polarity\": \"-0.0411\",\n        \"pos\": \"VB\",\n        \"sense\": \"dämpftest,dämpfte,dämpfst,dämpften,gedämpft,dämpft,dämpfest,dämpfet,dämpfe,dämpftet\"\n    },\n    \"dürr\": {\n        \"form\": \"dürr\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"düster\": {\n        \"form\": \"düster\",\n        \"polarity\": \"-0.0187\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"egoistisch\": {\n        \"form\": \"egoistisch\",\n        \"polarity\": \"-0.3254\",\n        \"pos\": \"JJ\",\n        \"sense\": \"egoistischstem,egoistischsten,egoistischere,egoistischster,egoistischstes,egoistischerem,egoistischen,egoistischeren,egoistische,egoistischem,egoistischerer,egoistischeres,egoistischste,egoistisches,egoistischer\"\n    },\n    \"ehebrechen\": {\n        \"form\": \"ehebrechen\",\n        \"polarity\": \"-0.3128\",\n        \"pos\": \"VB\",\n        \"sense\": \"ehezubrechen\"\n    },\n    \"eigenartig\": {\n        \"form\": \"eigenartig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eigenartigsten,eigenartigstem,eigenartigen,eigenartigeres,eigenartigem,eigenartige,eigenartigere,eigenartigerem,eigenartigeren,eigenartigste,eigenartigerer,eigenartigster,eigenartiges,eigenartiger,eigenartigstes\"\n    },\n    \"einbehalten\": {\n        \"form\": \"einbehalten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einbehalte,einbehältst,einbehält,einbehaltet,einbehaltest,einbehielt,einbehieltest,einbehieltst,einbehielten,einbehieltet,einbehielte\"\n    },\n    \"einbrechen\": {\n        \"form\": \"einbrechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einbreche,einbrichst,einbricht,einbrecht,einbrechest,einbrechet,einbrach,einbrachst,einbrachen,einbracht,einbräche,einbrächest,einbrächst,einbrächen,einbrächet,einbrächt\"\n    },\n    \"einfältig\": {\n        \"form\": \"einfältig\",\n        \"polarity\": \"-0.1858\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"eingehen\": {\n        \"form\": \"eingehen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"eingehe,eingehst,eingeht,eingehest,eingehet,einging,eingingst,eingingen,eingingt,eingingest,einginget,einzugehen,eingegangen\"\n    },\n    \"eingeschränkt\": {\n        \"form\": \"eingeschränkt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"einsam\": {\n        \"form\": \"einsam\",\n        \"polarity\": \"-0.1634\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einsames,einsamer,einsameres,einsame,einsamstem,einsamsten,einsamster,einsamerem,einsameren,einsamstes,einsamerer,einsamere,einsamen,einsamste,einsamem\"\n    },\n    \"einschlagen\": {\n        \"form\": \"einschlagen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"einschrumpfen\": {\n        \"form\": \"einschrumpfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einschrumpftest,einschrumpfe,einschrumpften,einschrumpfte,einschrumpfst,einschrumpfest,einschrumpftet,eingeschrumpft,einschrumpft,einschrumpfet\"\n    },\n    \"einschränken\": {\n        \"form\": \"einschränken\",\n        \"polarity\": \"-0.3327\",\n        \"pos\": \"VB\",\n        \"sense\": \"einschränkte,einschränkest,einschränke,einschränket,eingeschränkt,einschränkst,einschränktet,einschränktest,einschränkten,einschränkt\"\n    },\n    \"einschüchtern\": {\n        \"form\": \"einschüchtern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einschüchterte,einschüchtere,einschüchterst,einschüchterten,einschüchteren,einschüchtertest,einschüchtert,einschüchtertet,eingeschüchtert\"\n    },\n    \"einschüchternd\": {\n        \"form\": \"einschüchternd\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"einsinken\": {\n        \"form\": \"einsinken\",\n        \"polarity\": \"-0.0366\",\n        \"pos\": \"VB\",\n        \"sense\": \"einsinke,einsinkst,einsinkt,einsinkest,einsinket,einsank,einsankst,einsanken,einsankt,einsänke,einsänkest,einsänkst,einsänken,einsänket,einsänkt\"\n    },\n    \"einstellen\": {\n        \"form\": \"einstellen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einstellte,einstellt,einstelle,einstelltet,einstelltest,einstellten,eigenstellt,einstellest,einstellet,einstellst\"\n    },\n    \"einstürzen\": {\n        \"form\": \"einstürzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"einstürzest,einstürztest,einstürztet,einstürzt,eingestürzt,einstürzten,einstürzet,einstürzte,einstürze\"\n    },\n    \"eintönig\": {\n        \"form\": \"eintönig\",\n        \"polarity\": \"-0.0378\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ekelerregend\": {\n        \"form\": \"ekelerregend\",\n        \"polarity\": \"-0.0413\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ekelerregendem,ekelerregenden,ekelerregender,ekelerregenderem,ekelerregenderen,ekelerregendes,ekelerregendstes,ekelerregenderer,ekelerregendere,ekelerregenderes,ekelerregendste,ekelerregendstem,ekelerregendsten,ekelerregendster,ekelerregende\"\n    },\n    \"ekelig\": {\n        \"form\": \"ekelig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ekeliger,ekeligeres,ekeliges,ekeligstem,ekeligsten,ekeligerer,ekeligste,ekeligerem,ekeligeren,ekeligem,ekeligstes,ekeligen,ekeligster,ekelige,ekeligere\"\n    },\n    \"eklatant\": {\n        \"form\": \"eklatant\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eklatanterem,eklatanteste,eklatante,eklatantere,eklatantem,eklatanten,eklatanteren,eklatanteres,eklatanter,eklatanterer,eklatantes,eklatantesten,eklatantestem,eklatantestes,eklatantester\"\n    },\n    \"elend\": {\n        \"form\": \"elend\",\n        \"polarity\": \"-0.0519\",\n        \"pos\": \"JJ\",\n        \"sense\": \"elenden,elende,elendem,elendere,elendestem,elendesten,elendeste,elendester,elendes,elender,elenderes,elendestes,elenderer,elenderem,elenderen\"\n    },\n    \"elendig\": {\n        \"form\": \"elendig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"elendigerem,elendigeren,elendiger,elendigste,elendigstem,elendigsten,elendigem,elendigerer,elendigen,elendigeres,elendigere,elendige,elendiges,elendigstes,elendigster\"\n    },\n    \"empören\": {\n        \"form\": \"empören\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"empörten,empörest,empörst,empörtet,empörte,empöre,empört,empörtest,empöret\"\n    },\n    \"energielos\": {\n        \"form\": \"energielos\",\n        \"polarity\": \"-0.3037\",\n        \"pos\": \"JJ\",\n        \"sense\": \"energieloserem,energieloseren,energieloserer,energieloseste,energielosestes,energieloseres,energieloses,energielosester,energieloser,energielosere,energielose,energielosesten,energielosen,energielosem,energielosestem\"\n    },\n    \"engstirnig\": {\n        \"form\": \"engstirnig\",\n        \"polarity\": \"-0.3199\",\n        \"pos\": \"JJ\",\n        \"sense\": \"engstirnigste,engstirnigstem,engstirnigsten,engstirniges,engstirniger,engstirnigeren,engstirnigerem,engstirnigeres,engstirnige,engstirnigerer,engstirnigem,engstirnigen,engstirnigster,engstirnigere,engstirnigstes\"\n    },\n    \"entbehrungsreich\": {\n        \"form\": \"entbehrungsreich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"entbehrungsreiche,entbehrungsreichem,entbehrungsreichen,entbehrungsreicher,entbehrungsreiches,entbehrungsreichere,entbehrungsreicherem,entbehrungsreicheren,entbehrungsreicherer,entbehrungsreicheres,entbehrungsreichste,entbehrungsreichstem,entbehrungsreichsten,entbehrungsreichster,entbehrungsreichstes\"\n    },\n    \"entbinden\": {\n        \"form\": \"entbinden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entbinde,entbindest,entbindet,entband,entbandest,entbandst,entbanden,entbandet,entbände,entbändest,entbänden,entbändet,entbunden\"\n    },\n    \"entfremden\": {\n        \"form\": \"entfremden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entfremdest,entfremdete,entfremdetet,entfremdeten,entfremdet,entfremdetest,entfremde\"\n    },\n    \"entführen\": {\n        \"form\": \"entführen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entführte,entführst,entführe,entführtet,entführtest,entführet,entführten,entführt,entführest\"\n    },\n    \"entgleiten\": {\n        \"form\": \"entgleiten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entgleite,entgleitest,entgleitet,entglitt,entglittest,entglitten,entglittet,entglitte\"\n    },\n    \"enthaupten\": {\n        \"form\": \"enthaupten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"enthaupte,enthauptetest,enthaupteten,enthauptetet,enthauptete,enthauptest,enthauptet\"\n    },\n    \"entkräften\": {\n        \"form\": \"entkräften\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entkräfte,entkräftest,entkräftet,entkräftete,entkräftetest,entkräfteten,entkräftetet\"\n    },\n    \"entlassen\": {\n        \"form\": \"entlassen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entlasse,entlässt,entläßt,entlasst,entlaßt,entlassest,entlasset,entließ,entließest,entließt,entließen,entließe,entließet\"\n    },\n    \"entmutigen\": {\n        \"form\": \"entmutigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entmutiget,entmutigtet,entmutigtest,entmutigest,entmutige,entmutigt,entmutigten,entmutigte,entmutigst\"\n    },\n    \"entnervt\": {\n        \"form\": \"entnervt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"entnervte,entnervterer,entnervteres,entnervterem,entnervteren,entnervtere,entnervtem,entnervten,entnervtestem,entnervtesten,entnervter,entnervtestes,entnervtes,entnervteste,entnervtester\"\n    },\n    \"entrüsten\": {\n        \"form\": \"entrüsten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entrüste,entrüstest,entrüstet,entrüstete,entrüstetest,entrüsteten,entrüstetet\"\n    },\n    \"entschwinden\": {\n        \"form\": \"entschwinden\",\n        \"polarity\": \"-0.1827\",\n        \"pos\": \"VB\",\n        \"sense\": \"entschwinde,entschwindest,entschwindet,entschwand,entschwandest,entschwandst,entschwanden,entschwandet,entschwände,entschwändest,entschwändet\"\n    },\n    \"entsetzlich\": {\n        \"form\": \"entsetzlich\",\n        \"polarity\": \"-0.477\",\n        \"pos\": \"JJ\",\n        \"sense\": \"entsetzlichen,entsetzlichere,entsetzlichem,entsetzlichsten,entsetzlichstem,entsetzlicherer,entsetzlicheren,entsetzlicherem,entsetzlichste,entsetzlichster,entsetzlicheres,entsetzliche,entsetzliches,entsetzlicher,entsetzlichstes\"\n    },\n    \"enttäuschen\": {\n        \"form\": \"enttäuschen\",\n        \"polarity\": \"-0.0586\",\n        \"pos\": \"VB\",\n        \"sense\": \"enttäusche,enttäuscht,enttäuschst,enttäuschten,enttäuschest,enttäuschtet,enttäuschtest,enttäuschte,enttäuschet\"\n    },\n    \"enttäuschend\": {\n        \"form\": \"enttäuschend\",\n        \"polarity\": \"-0.0425\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"enttäuscht\": {\n        \"form\": \"enttäuscht\",\n        \"polarity\": \"-0.3129\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"entwürdigend\": {\n        \"form\": \"entwürdigend\",\n        \"polarity\": \"-0.3132\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"entziehen\": {\n        \"form\": \"entziehen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"entziehe,entziehst,entzieht,entziehest,entziehet,entzog,entzogst,entzogen,entzogt,entzöge,entzögest,entzögst,entzögen,entzöget,entzögt\"\n    },\n    \"erbittert\": {\n        \"form\": \"erbittert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erbittertem,erbitterten,erbitterte,erbittertste,erbittertere,erbitterter,erbittertstes,erbittertes,erbittertster,erbittertsten,erbitterteren,erbitterterem,erbittertstem,erbitterteres,erbitterterer\"\n    },\n    \"erbost\": {\n        \"form\": \"erbost\",\n        \"polarity\": \"-0.3293\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erbostestes,erbostester,erbostere,erbostesten,erbostestem,erbosten,erbosteste,erbostem,erboste,erbosteren,erbosterem,erboster,erbosterer,erbostes,erbosteres\"\n    },\n    \"erbrechen\": {\n        \"form\": \"erbrechen\",\n        \"polarity\": \"-0.3308\",\n        \"pos\": \"VB\",\n        \"sense\": \"erbreche,erbrichst,erbricht,erbrecht,erbrechest,erbrechet,erbrach,erbrachst,erbrachen,erbracht,erbräche,erbrächest,erbrächst,erbrächen,erbrächet,erbrächt\"\n    },\n    \"erbärmlich\": {\n        \"form\": \"erbärmlich\",\n        \"polarity\": \"-0.4796\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erdrückend\": {\n        \"form\": \"erdrückend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ergaunern\": {\n        \"form\": \"ergaunern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ergaunere,ergaunertest,ergaunerten,ergaunert,ergaunertet,ergauneren,ergaunerst,ergaunerte\"\n    },\n    \"ergebnislos\": {\n        \"form\": \"ergebnislos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ergebnisloseres,ergebnisloserer,ergebnislosere,ergebnislose,ergebnislosestem,ergebnisloseste,ergebnisloserem,ergebnisloseren,ergebnislosester,ergebnisloses,ergebnislosestes,ergebnisloser,ergebnislosesten,ergebnislosen,ergebnislosem\"\n    },\n    \"erleiden\": {\n        \"form\": \"erleiden\",\n        \"polarity\": \"-0.3494\",\n        \"pos\": \"VB\",\n        \"sense\": \"erleide,erleidest,erleidet,erlitt,erlittest,erlitten,erlittet,erlitte\"\n    },\n    \"erliegen\": {\n        \"form\": \"erliegen\",\n        \"polarity\": \"-0.3296\",\n        \"pos\": \"VB\",\n        \"sense\": \"erliege,erliegst,erliegt,erliegest,erlieget,erlag,erlagst,erlagen,erlagt,erläge,erlägest,erlägst,erlägen,erläget,erlägt\"\n    },\n    \"ermahnen\": {\n        \"form\": \"ermahnen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ermahnten,ermahnte,ermahnst,ermahnt,ermahntet,ermahnest,ermahne,ermahntest,ermahnet\"\n    },\n    \"ermorden\": {\n        \"form\": \"ermorden\",\n        \"polarity\": \"-0.3292\",\n        \"pos\": \"VB\",\n        \"sense\": \"ermordtest,ermorde,ermordte,ermordet,ermordetet,ermordetest,ermordtet,ermordeten,ermordest,ermordete,ermordten\"\n    },\n    \"ermüden\": {\n        \"form\": \"ermüden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ermüdte,ermüdtet,ermüdtest,ermüdetest,ermüdeten,ermüdetet,ermüdet,ermüdest,ermüde,ermüdete,ermüdten\"\n    },\n    \"erniedrigen\": {\n        \"form\": \"erniedrigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erniedrigt,erniedrigst,erniedrigte,erniedrige,erniedrigtet,erniedrigtest,erniedriget,erniedrigten,erniedrigest\"\n    },\n    \"ernüchternd\": {\n        \"form\": \"ernüchternd\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erpressen\": {\n        \"form\": \"erpressen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erpresset,erpresstest,erpresse,erpresst,erpresstet,erpresste,erpressest,erpressten\"\n    },\n    \"erschießen\": {\n        \"form\": \"erschießen\",\n        \"polarity\": \"-0.3317\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschieße,erschießt,erschießest,erschießet,erschoss,erschoß,erschossest,erschosst,erschoßt,erschossen,erschösse,erschössest,erschössen,erschösset\"\n    },\n    \"erschlaffen\": {\n        \"form\": \"erschlaffen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschlaffe,erschlafft,erschlafftest,erschlafftet,erschlaffet,erschlaffst,erschlafften,erschlaffte,erschlaffest\"\n    },\n    \"erschlagen\": {\n        \"form\": \"erschlagen\",\n        \"polarity\": \"-0.3442\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"erschrecken\": {\n        \"form\": \"erschrecken\",\n        \"polarity\": \"-0.1812\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschrecket,erschrecktet,erschrecke,erschrecktest,erschreckten,erschreckte,erschreckst,erschreckest,erschreckt\"\n    },\n    \"erschreckend\": {\n        \"form\": \"erschreckend\",\n        \"polarity\": \"-0.0544\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erschreckende,erschreckendem,erschreckenden,erschreckender,erschreckendes,erschreckendere,erschreckenderem,erschreckenderen,erschreckenderer,erschreckenderes,erschreckendste,erschreckendstem,erschreckendsten,erschreckendster,erschreckendstes\"\n    },\n    \"erschweren\": {\n        \"form\": \"erschweren\",\n        \"polarity\": \"-0.4891\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschwere,erschwertet,erschwertest,erschwert,erschwerte,erschwern,erschwerst,erschwerten\"\n    },\n    \"erschöpfen\": {\n        \"form\": \"erschöpfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschöpften,erschöpfet,erschöpftest,erschöpftet,erschöpfte,erschöpfe,erschöpfst,erschöpfest,erschöpft\"\n    },\n    \"erschöpft\": {\n        \"form\": \"erschöpft\",\n        \"polarity\": \"-0.0377\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"erschüttern\": {\n        \"form\": \"erschüttern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschütterst,erschütterte,erschüttertet,erschüttertest,erschütteren,erschütterten,erschüttere,erschüttert\"\n    },\n    \"erschütternd\": {\n        \"form\": \"erschütternd\",\n        \"polarity\": \"-0.0472\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erschüttert\": {\n        \"form\": \"erschüttert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erschütterte,erschüttertem,erschütterten,erschütterter,erschüttertest\"\n    },\n    \"erstechen\": {\n        \"form\": \"erstechen\",\n        \"polarity\": \"-0.3078\",\n        \"pos\": \"VB\",\n        \"sense\": \"ersteche,erstichst,ersticht,erstecht,erstechest,erstechet,erstach,erstachst,erstachen,erstacht,erstäche,erstächest,erstächst,erstächen,erstächet,erstächt,erstochen\"\n    },\n    \"ersticken\": {\n        \"form\": \"ersticken\",\n        \"polarity\": \"-0.3291\",\n        \"pos\": \"VB\",\n        \"sense\": \"ersticktet,ersticket,erstickst,ersticktest,erstickte,erstickten,ersticke,erstickest,erstickt\"\n    },\n    \"ertrinken\": {\n        \"form\": \"ertrinken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ertrinke,ertrinkst,ertrinkt,ertrinkest,ertrinket,ertrank,ertrankst,ertranken,ertrankt,ertränke,ertränkest,ertränkst,ertränken,ertränket,ertränkt,ertrunken\"\n    },\n    \"erwürgen\": {\n        \"form\": \"erwürgen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"erwürgten,erwürgte,erwürgst,erwürgtet,erwürgtest,erwürgt,erwürget,erwürge,erwürgest\"\n    },\n    \"erzürnt\": {\n        \"form\": \"erzürnt\",\n        \"polarity\": \"-0.3221\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"existenzbedrohend\": {\n        \"form\": \"existenzbedrohend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"existenzbedrohendere,existenzbedrohenderen,existenzbedrohenderem,existenzbedrohendem,existenzbedrohende,existenzbedrohendste,existenzbedrohendstem,existenzbedrohendsten,existenzbedrohendstes,existenzbedrohendster,existenzbedrohenderes,existenzbedrohenden,existenzbedrohenderer,existenzbedrohendes,existenzbedrohender\"\n    },\n    \"explodieren\": {\n        \"form\": \"explodieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"explodierest,explodieret,explodiertest,explodierten,explodierst,explodiere,explodiert,explodiertet,explodierte\"\n    },\n    \"fad\": {\n        \"form\": \"fad\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fade,fadstem,fadsten,fadster,fadere,fadstes,faderer,faderes,fadem,faden,faderem,fadste,faderen,fader,fades\"\n    },\n    \"fadenscheinig\": {\n        \"form\": \"fadenscheinig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fadenscheiniger,fadenscheinigem,fadenscheinigen,fadenscheinigster,fadenscheinigstes,fadenscheinigere,fadenscheinigerem,fadenscheinigstem,fadenscheinige,fadenscheinigste,fadenscheinigsten,fadenscheinigerer,fadenscheinigeres,fadenscheiniges,fadenscheinigeren\"\n    },\n    \"fahrlässig\": {\n        \"form\": \"fahrlässig\",\n        \"polarity\": \"-0.3487\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"fallen\": {\n        \"form\": \"fallen\",\n        \"polarity\": \"-0.2153\",\n        \"pos\": \"VB\",\n        \"sense\": \"falle,fällst,fällt,fallt,fallest,fallet,fiel,fielst,fielen,fielt,fiele,fielest,fielet,gefallen\"\n    },\n    \"falsch\": {\n        \"form\": \"falsch\",\n        \"polarity\": \"-0.7618\",\n        \"pos\": \"JJ\",\n        \"sense\": \"falschen,falscher,falschere,falsches,falsche,falscheres,falschste,falschsten,falscherer,falschstem,falschstes,falschster,falscheren,falscherem,falschem\"\n    },\n    \"farblos\": {\n        \"form\": \"farblos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"farblose,farblosen,farbloserer,farblosem,farbloseren,farbloseste,farbloserem,farblosere,farblosestes,farblosester,farbloseres,farbloses,farblosesten,farbloser,farblosestem\"\n    },\n    \"faschistisch\": {\n        \"form\": \"faschistisch\",\n        \"polarity\": \"-0.4477\",\n        \"pos\": \"JJ\",\n        \"sense\": \"faschistischere,faschistischsten,faschistischstem,faschistischster,faschistischstes,faschistischste,faschistische,faschistisches,faschistischer,faschistischem,faschistischerer,faschistischen,faschistischeres,faschistischerem,faschistischeren\"\n    },\n    \"fatal\": {\n        \"form\": \"fatal\",\n        \"polarity\": \"-0.345\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fatalster,fataleren,fatalstes,fatalerem,fatalerer,fatales,fataleres,fatalere,fataler,fatale,fatalste,fatalen,fatalem,fatalsten,fatalstem\"\n    },\n    \"faul\": {\n        \"form\": \"faul\",\n        \"polarity\": \"-0.035\",\n        \"pos\": \"JJ\",\n        \"sense\": \"faulerer,fauleres,fauleren,faulste,faulstem,faulerem,faulsten,faules,faulster,faulen,faulstes,faulem,fauler,faule,faulere\"\n    },\n    \"fehlen\": {\n        \"form\": \"fehlen\",\n        \"polarity\": \"-0.5365\",\n        \"pos\": \"VB\",\n        \"sense\": \"fehltet,fehlest,gefehlt,fehlt,fehlst,fehlte,fehle,fehltest,fehlten,fehlet\"\n    },\n    \"fehleranfällig\": {\n        \"form\": \"fehleranfällig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"fehlerhaft\": {\n        \"form\": \"fehlerhaft\",\n        \"polarity\": \"-0.3581\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fehlerhaftere,fehlerhafterem,fehlerhaftem,fehlerhafteren,fehlerhafteres,fehlerhafterer,fehlerhaften,fehlerhaftestem,fehlerhafte,fehlerhaftes,fehlerhafteste,fehlerhafter,fehlerhaftesten,fehlerhaftester,fehlerhaftestes\"\n    },\n    \"feige\": {\n        \"form\": \"feige\",\n        \"polarity\": \"-0.4649\",\n        \"pos\": \"JJ\",\n        \"sense\": \"feigeren,feigerem,feigste,feigeres,feigerer,feig,feigsten,feigere,feigen,feigem,feigstem,feigster,feigstes,feiges,feiger\"\n    },\n    \"feindlich\": {\n        \"form\": \"feindlich\",\n        \"polarity\": \"-0.4723\",\n        \"pos\": \"JJ\",\n        \"sense\": \"feindlichere,feindlichste,feindlichstem,feindlichsten,feindliches,feindlichstes,feindlichster,feindlicherem,feindliche,feindlicher,feindlichen,feindlichem,feindlicherer,feindlicheres,feindlicheren\"\n    },\n    \"feindselig\": {\n        \"form\": \"feindselig\",\n        \"polarity\": \"-0.4579\",\n        \"pos\": \"JJ\",\n        \"sense\": \"feindseligste,feindseligerer,feindseligeres,feindseligere,feindseliger,feindseligsten,feindseligstem,feindseliges,feindseligstes,feindseligen,feindseligerem,feindseligster,feindseligem,feindseligeren,feindselige\"\n    },\n    \"fesseln\": {\n        \"form\": \"fesseln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"fessele,fessle,feßle,fesselst,fesselt,fesslest,feßlest,fesslet,feßlet,fesselte,fesseltest,fesselten,fesseltet\"\n    },\n    \"feuern\": {\n        \"form\": \"feuern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"gefeuert,feueren,feuerte,feuertet,feuerst,feuere,feuert,feuertest,feuerten\"\n    },\n    \"fies\": {\n        \"form\": \"fies\",\n        \"polarity\": \"-0.305\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fiesesten,fieses,fieser,fiesestem,fiesem,fieseste,fiesen,fiese,fieserem,fieseren,fieseres,fieserer,fiesestes,fiesere,fiesester\"\n    },\n    \"finster\": {\n        \"form\": \"finster\",\n        \"polarity\": \"-0.0515\",\n        \"pos\": \"JJ\",\n        \"sense\": \"finstrer,finsterem,finstereren,finstrere,finstererem,finsteren,finstrerer,finstere,finstreres,finsteres,finsterer,finsterstes,finstereres,finsterste,finstreren,finstrerem,finstererer,finsterstem,finstersten,finsterere,finsterster\"\n    },\n    \"flach\": {\n        \"form\": \"flach\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flachster,flachstes,flachsten,flachstem,flacherer,flacheres,flache,flachere,flaches,flachste,flacher,flacheren,flachem,flachen,flacherem\"\n    },\n    \"flau\": {\n        \"form\": \"flau\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flausten,flauerer,flaueres,flauere,flaustem,flaueren,flaustes,flauster,flauestes,flauest,flauester,flaues,flauen,flauerem,flaue,flauem,flaueste,flauer,flauste,flauestem,flauesten\"\n    },\n    \"flüchtend\": {\n        \"form\": \"flüchtend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flüchtende,flüchtendem,flüchtenden,flüchtender,flüchtendes\"\n    },\n    \"flüchtig\": {\n        \"form\": \"flüchtig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"folgenschwer\": {\n        \"form\": \"folgenschwer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"folgenschwererem,folgenschwereren,folgenschwerster,folgenschwerstem,folgenschwersten,folgenschwerstes,folgenschwere,folgenschweres,folgenschwerste,folgenschwerer,folgenschweren,folgenschwerem,folgenschwereres,folgenschwererer,folgenschwerere\"\n    },\n    \"folgewidrig\": {\n        \"form\": \"folgewidrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"folgewidrige,folgewidrigere,folgewidrigerer,folgewidrigeres,folgewidrigem,folgewidrigstem,folgewidrigsten,folgewidrigen,folgewidrigste,folgewidrigerem,folgewidrigster,folgewidrigeren,folgewidrigstes,folgewidriges,folgewidriger\"\n    },\n    \"fragil\": {\n        \"form\": \"fragil\",\n        \"polarity\": \"-0.0422\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fragilen,fragilem,fragilste,fragiles,fragiler,fragile,fragilerer,fragilstem,fragilsten,fragilere,fragileren,fragilerem,fragilster,fragileres,fragilstes\"\n    },\n    \"fraglich\": {\n        \"form\": \"fraglich\",\n        \"polarity\": \"-0.0576\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fragliche,fraglichste,fraglicher,fragliches,fraglicheren,fraglichstes,fraglicherem,fraglichster,fraglicheres,fraglicherer,fraglichere,fraglichsten,fraglichstem,fraglichen,fraglichem\"\n    },\n    \"fragwürdig\": {\n        \"form\": \"fragwürdig\",\n        \"polarity\": \"-0.4858\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"frech\": {\n        \"form\": \"frech\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"frechem,frechen,freches,frecher,frecherer,frechstem,frecheres,freche,frechstes,frechere,frechster,frecherem,frechste,frechsten,frecheren\"\n    },\n    \"fremd\": {\n        \"form\": \"fremd\",\n        \"polarity\": \"-0.4939\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fremdestes,fremdeste,fremdester,fremderer,fremderes,fremdesten,fremdestem,fremderen,fremder,fremde,fremdere,fremdes,fremderem,fremdem,fremden\"\n    },\n    \"fremdartig\": {\n        \"form\": \"fremdartig\",\n        \"polarity\": \"-0.0419\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fremdartigste,fremdartigerem,fremdartigeren,fremdartigstes,fremdartigeres,fremdartigere,fremdartiges,fremdartiger,fremdartigem,fremdartige,fremdartigen,fremdartigerer,fremdartigster,fremdartigsten,fremdartigstem\"\n    },\n    \"freudlos\": {\n        \"form\": \"freudlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freudloserem,freudloseres,freudloseren,freudloserer,freudloseste,freudlosere,freudlosestes,freudlosen,freudlosem,freudloser,freudlosester,freudloses,freudlosestem,freudlosesten,freudlose\"\n    },\n    \"frivol\": {\n        \"form\": \"frivol\",\n        \"polarity\": \"-0.0412\",\n        \"pos\": \"JJ\",\n        \"sense\": \"frivolste,frivolstem,frivoler,frivolerer,frivoleres,frivole,frivoles,frivolerem,frivolen,frivolem,frivoleren,frivolsten,frivolster,frivolstes,frivolere\"\n    },\n    \"fruchtlos\": {\n        \"form\": \"fruchtlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fruchtloseren,fruchtlosem,fruchtlosen,fruchtloseres,fruchtloserer,fruchtlose,fruchtloser,fruchtloses,fruchtloseste,fruchtlosere,fruchtlosestem,fruchtlosesten,fruchtlosestes,fruchtlosester,fruchtloserem\"\n    },\n    \"frustrieren\": {\n        \"form\": \"frustrieren\",\n        \"polarity\": \"-0.0372\",\n        \"pos\": \"VB\",\n        \"sense\": \"frustriertet,frustriere,frustrieret,frustrierst,frustriert,frustrierte,frustrierest,frustriertest,frustrierten\"\n    },\n    \"frustrierend\": {\n        \"form\": \"frustrierend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"frustrierende,frustrierendem,frustrierenden,frustrierender,frustrierendes,frustrierendere,frustrierenderem,frustrierenderen,frustrierenderer,frustrierenderes,frustrierendste,frustrierendstem,frustrierendsten,frustrierendster,frustrierendstes\"\n    },\n    \"frustriert\": {\n        \"form\": \"frustriert\",\n        \"polarity\": \"-0.3244\",\n        \"pos\": \"JJ\",\n        \"sense\": \"frustriertester,frustriertes,frustriertestes,frustriertestem,frustriertesten,frustrierter,frustrierte,frustrierteren,frustrierterem,frustrierteste,frustrierteres,frustrierterer,frustriertere,frustriertem,frustrierten\"\n    },\n    \"fuchsteufelswild\": {\n        \"form\": \"fuchsteufelswild\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fuchsteufelswilder,fuchsteufelswilderes,fuchsteufelswildes,fuchsteufelswildestem,fuchsteufelswildesten,fuchsteufelswilde,fuchsteufelswildere,fuchsteufelswildestes,fuchsteufelswildeste,fuchsteufelswildester,fuchsteufelswilderen,fuchsteufelswilderem,fuchsteufelswilderer,fuchsteufelswildem,fuchsteufelswilden\"\n    },\n    \"furchtbar\": {\n        \"form\": \"furchtbar\",\n        \"polarity\": \"-0.3042\",\n        \"pos\": \"JJ\",\n        \"sense\": \"furchtbareren,furchtbarerem,furchtbaren,furchtbares,furchtbarer,furchtbarster,furchtbarstes,furchtbare,furchtbarstem,furchtbarsten,furchtbarem,furchtbarere,furchtbareres,furchtbarste,furchtbarerer\"\n    },\n    \"furchterregend\": {\n        \"form\": \"furchterregend\",\n        \"polarity\": \"-0.1778\",\n        \"pos\": \"JJ\",\n        \"sense\": \"furchterregendsten,furchterregendstem,furchterregendster,furchterregendstes,furchterregendere,furchterregendste,furchterregendem,furchterregenden,furchterregende,furchterregendes,furchterregenderen,furchterregenderem,furchterregender,furchterregenderes,furchterregenderer\"\n    },\n    \"fälschen\": {\n        \"form\": \"fälschen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"fälsche,fälschst,fälscht,fälschest,fälschet,fälschte,fälschtest,fälschten,fälschtet,gefälscht\"\n    },\n    \"fürchten\": {\n        \"form\": \"fürchten\",\n        \"polarity\": \"-0.3545\",\n        \"pos\": \"VB\",\n        \"sense\": \"fürchtest,gefürchtet,fürchteten,fürchte,fürchtten,fürchtet,fürchtete,fürchtetest,fürchtetet\"\n    },\n    \"fürchterlich\": {\n        \"form\": \"fürchterlich\",\n        \"polarity\": \"-0.3363\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gallig\": {\n        \"form\": \"gallig\",\n        \"polarity\": \"-0.3005\",\n        \"pos\": \"JJ\",\n        \"sense\": \"galligerem,galligeren,galligere,gallige,galligste,galligsten,galliges,galliger,galligstem,galligster,galligstes,galligem,galligeres,galligen,galligerer\"\n    },\n    \"gammelig\": {\n        \"form\": \"gammelig\",\n        \"polarity\": \"-0.0344\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gammeliges,gammeliger,gammeligeres,gammeligerer,gammeligen,gammeligem,gammeligeren,gammeligerem,gammeligste,gammelige,gammeligere,gammeligster,gammeligstes,gammeligsten,gammeligstem\"\n    },\n    \"gammeln\": {\n        \"form\": \"gammeln\",\n        \"polarity\": \"-0.0411\",\n        \"pos\": \"VB\",\n        \"sense\": \"gammel,gammeltet,gegammelt,gammeltest,gammelen,gammele,gammelst,gammelte,gammelten,gammle,gammelt\"\n    },\n    \"gammlig\": {\n        \"form\": \"gammlig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gammlige,gammligem,gammligen,gammliger,gammliges,gammligere,gammligerem,gammligeren,gammligerer,gammligeres,gammliste,gammlistem,gammlisten,gammlister,gammlistes\"\n    },\n    \"garstig\": {\n        \"form\": \"garstig\",\n        \"polarity\": \"-0.0425\",\n        \"pos\": \"JJ\",\n        \"sense\": \"garstige,garstigsten,garstigere,garstigstem,garstigste,garstigster,garstigeres,garstigstes,garstigerer,garstigeren,garstigerem,garstiges,garstiger,garstigem,garstigen\"\n    },\n    \"geblitzt\": {\n        \"form\": \"geblitzt\",\n        \"polarity\": \"-0.0435\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geblitzte,geblitztem,geblitzten,geblitzter,geblitztes,geblitztere,geblitzterem,geblitzteren,geblitzterer,geblitzteres\"\n    },\n    \"gebrechlich\": {\n        \"form\": \"gebrechlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gebrechliche,gebrechlichstem,gebrechlichsten,gebrechlichster,gebrechlichstes,gebrechlicherem,gebrechlichem,gebrechlichere,gebrechlichen,gebrechlichste,gebrechlicheren,gebrechliches,gebrechlicherer,gebrechlicheres,gebrechlicher\"\n    },\n    \"gedankenlos\": {\n        \"form\": \"gedankenlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gedankenlosem,gedankenloseste,gedankenloses,gedankenlosesten,gedankenloser,gedankenlosestes,gedankenlosester,gedankenlosen,gedankenloserem,gedankenloseren,gedankenlosestem,gedankenlosere,gedankenloserer,gedankenloseres,gedankenlose\"\n    },\n    \"gedrängt\": {\n        \"form\": \"gedrängt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gefährden\": {\n        \"form\": \"gefährden\",\n        \"polarity\": \"-0.5006\",\n        \"pos\": \"VB\",\n        \"sense\": \"gefährdte,gefährdtest,gefährdetest,gefährdeten,gefährdetet,gefährde,gefährdete,gefährdest,gefährdet\"\n    },\n    \"gefährlich\": {\n        \"form\": \"gefährlich\",\n        \"polarity\": \"-0.6366\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gehandicapt\": {\n        \"form\": \"gehandicapt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gehandicaptem,gehandicapten,gehandicapter,gehandicaptes,gehandicapterer,gehandicaptestes,gehandicapteres,gehandicaptester,gehandicapte,gehandicaptesten,gehandicapteste,gehandicaptere,gehandicaptestem,gehandicapterem,gehandicapteren\"\n    },\n    \"gehässig\": {\n        \"form\": \"gehässig\",\n        \"polarity\": \"-0.1821\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"geisteskrank\": {\n        \"form\": \"geisteskrank\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geisteskrankere,geisteskrankster,geisteskrankeres,geisteskrankes,geisteskranker,geisteskranke,geisteskrankste,geisteskrankstes,geisteskrankerem,geisteskrankeren,geisteskranksten,geisteskranken,geisteskrankstem,geisteskrankem,geisteskrankerer\"\n    },\n    \"geistlos\": {\n        \"form\": \"geistlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geistlosem,geistlosen,geistlosestem,geistlosesten,geistlosere,geistlosester,geistlose,geistloserer,geistloseres,geistlosestes,geistloseren,geistloseste,geistloserem,geistloses,geistloser\"\n    },\n    \"gekränkt\": {\n        \"form\": \"gekränkt\",\n        \"polarity\": \"-0.453\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gelähmt\": {\n        \"form\": \"gelähmt\",\n        \"polarity\": \"-0.3308\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gemein\": {\n        \"form\": \"gemein\",\n        \"polarity\": \"-0.7203\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gemeinstem,gemeinsten,gemeinstes,gemeinster,gemeinere,gemeine,gemeinste,gemeineren,gemeines,gemeiner,gemeinerem,gemeineres,gemeinerer,gemeinem,gemeinen\"\n    },\n    \"genervt\": {\n        \"form\": \"genervt\",\n        \"polarity\": \"-0.0237\",\n        \"pos\": \"JJ\",\n        \"sense\": \"genervtesten,genervteste,genervtestem,genervtestes,genervtester,genervte,genervtere,genervtes,genervter,genervterem,genervteren,genervten,genervtem,genervterer,genervteres\"\n    },\n    \"gering\": {\n        \"form\": \"gering\",\n        \"polarity\": \"-0.6621\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geringes,geringer,geringerer,geringstem,geringeres,geringen,geringsten,geringem,geringste,geringeren,geringstes,geringster,geringerem,geringere,geringe\"\n    },\n    \"geringwertig\": {\n        \"form\": \"geringwertig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geringwertigerer,geringwertigeres,geringwertigeren,geringwertigerem,geringwertigste,geringwertigster,geringwertigstes,geringwertigen,geringwertigem,geringwertige,geringwertigsten,geringwertiges,geringwertiger,geringwertigere,geringwertigstem\"\n    },\n    \"geschmacklos\": {\n        \"form\": \"geschmacklos\",\n        \"polarity\": \"-0.3212\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geschmackloses,geschmacklosere,geschmacklose,geschmacklosem,geschmacklosen,geschmackloseste,geschmackloser,geschmackloserem,geschmackloseren,geschmacklosestes,geschmackloserer,geschmackloseres,geschmacklosester,geschmacklosestem,geschmacklosesten\"\n    },\n    \"gestresst\": {\n        \"form\": \"gestresst\",\n        \"polarity\": \"-0.3128\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gestresste,gestresstem,gestressten,gestresster,gestresstes,gestresstere,gestressterem,gestressteren,gestressterer,gestressteres,gestressteste,gestresstestem,gestresstesten,gestresstester,gestresstestes\"\n    },\n    \"gewaltsam\": {\n        \"form\": \"gewaltsam\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewaltsamer,gewaltsamstem,gewaltsamsten,gewaltsames,gewaltsamere,gewaltsamste,gewaltsamen,gewaltsamster,gewaltsamstes,gewaltsamem,gewaltsame,gewaltsameres,gewaltsamerer,gewaltsameren,gewaltsamerem\"\n    },\n    \"gewalttätig\": {\n        \"form\": \"gewalttätig\",\n        \"polarity\": \"-0.3409\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"geärgert\": {\n        \"form\": \"geärgert\",\n        \"polarity\": \"-0.1846\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"giftig\": {\n        \"form\": \"giftig\",\n        \"polarity\": \"-0.3378\",\n        \"pos\": \"JJ\",\n        \"sense\": \"giftigste,giftiger,giftiges,giftigem,giftigen,giftigere,giftigerem,giftigstem,giftigeren,giftigstes,giftigeres,giftigster,giftigerer,giftigsten,giftige\"\n    },\n    \"glanzlos\": {\n        \"form\": \"glanzlos\",\n        \"polarity\": \"-0.3133\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glanzlosere,glanzlosen,glanzloseres,glanzlosem,glanzloserer,glanzloses,glanzloser,glanzloseste,glanzlose,glanzloseren,glanzloserem,glanzlosesten,glanzlosestem,glanzlosestes,glanzlosester\"\n    },\n    \"gleichgültig\": {\n        \"form\": \"gleichgültig\",\n        \"polarity\": \"-0.3436\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"glücklos\": {\n        \"form\": \"glücklos\",\n        \"polarity\": \"-0.3147\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gnadenlos\": {\n        \"form\": \"gnadenlos\",\n        \"polarity\": \"-0.6033\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gnadenlosester,gnadenlosestes,gnadenlosesten,gnadenlosestem,gnadenlose,gnadenloser,gnadenloses,gnadenloseres,gnadenlosere,gnadenloseste,gnadenloserer,gnadenlosen,gnadenloserem,gnadenlosem,gnadenloseren\"\n    },\n    \"grau\": {\n        \"form\": \"grau\",\n        \"polarity\": \"-0.336\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grauem,grauste,graustem,graueren,grausten,grauerem,graustes,grauster,graues,grauer,grauere,grauestem,graueres,grauerer,grauen,graue,grauest,grauesten,grauester,grauestes,graueste\"\n    },\n    \"grauen\": {\n        \"form\": \"grauen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"grauest,graue,graut,grauten,grautest,grauet,gegraut,grautet,graute,graust\"\n    },\n    \"grauenhaft\": {\n        \"form\": \"grauenhaft\",\n        \"polarity\": \"-0.184\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grauenhaften,grauenhafteres,grauenhaftere,grauenhafterer,grauenhaftestem,grauenhafter,grauenhaftes,grauenhafte,grauenhafterem,grauenhaftem,grauenhafteren,grauenhafteste,grauenhaftesten,grauenhaftestes,grauenhaftester\"\n    },\n    \"grauenvoll\": {\n        \"form\": \"grauenvoll\",\n        \"polarity\": \"-0.3238\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grauenvolles,grauenvoller,grauenvollen,grauenvollstes,grauenvollem,grauenvollere,grauenvollster,grauenvolleres,grauenvolle,grauenvollsten,grauenvollstem,grauenvollerer,grauenvollste,grauenvolleren,grauenvollerem\"\n    },\n    \"grausam\": {\n        \"form\": \"grausam\",\n        \"polarity\": \"-0.625\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grausameren,grausamen,grausamem,grausamerem,grausames,grausamer,grausamere,grausamerer,grausameres,grausame,grausamsten,grausamstem,grausamstes,grausamster,grausamste\"\n    },\n    \"grausig\": {\n        \"form\": \"grausig\",\n        \"polarity\": \"-0.1777\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grausigstem,grausigsten,grausiges,grausigeren,grausigeres,grausigerer,grausigste,grausigstes,grausigster,grausigen,grausigere,grausigem,grausige,grausiger,grausigerem\"\n    },\n    \"grenzdebil\": {\n        \"form\": \"grenzdebil\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grenzdebile,grenzdebilem,grenzdebilen,grenzdebiler,grenzdebiles,grenzdebilere,grenzdebilerem,grenzdebileren,grenzdebilerer,grenzdebileres,grenzdebilste,grenzdebilstem,grenzdebilsten,grenzdebilster,grenzdebilstes\"\n    },\n    \"grimmig\": {\n        \"form\": \"grimmig\",\n        \"polarity\": \"-0.3295\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grimmigen,grimmigem,grimmige,grimmiger,grimmiges,grimmigere,grimmigstes,grimmigster,grimmigstem,grimmigeren,grimmigerem,grimmigsten,grimmigeres,grimmigste,grimmigerer\"\n    },\n    \"grob\": {\n        \"form\": \"grob\",\n        \"polarity\": \"-0.3495\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"groggy\": {\n        \"form\": \"groggy\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"grotesk\": {\n        \"form\": \"grotesk\",\n        \"polarity\": \"-0.3318\",\n        \"pos\": \"JJ\",\n        \"sense\": \"groteskeres,groteskem,grotesken,groteskesten,groteskerem,groteskeren,groteskeste,grotesker,groteskes,groteskestem,groteskester,groteskestes,groteskere,groteskerer,groteske\"\n    },\n    \"grottenschlecht\": {\n        \"form\": \"grottenschlecht\",\n        \"polarity\": \"-0.3089\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grottenschlechte,grottenschlechtem,grottenschlechten,grottenschlechter,grottenschlechtes,grottenschlechtere,grottenschlechterem,grottenschlechteren,grottenschlechterer,grottenschlechteres,grottenschlechteste,grottenschlechtestem,grottenschlechtesten,grottenschlechtester,grottenschlechtestes\"\n    },\n    \"grottenübel\": {\n        \"form\": \"grottenübel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gruselig\": {\n        \"form\": \"gruselig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gruseligere,gruseligerem,gruselige,gruseligeren,gruseligem,gruseligen,gruseligstem,gruseligsten,gruseligeres,gruseligerer,gruseliger,gruseligster,gruseliges,gruseligste,gruseligstes\"\n    },\n    \"grässlich\": {\n        \"form\": \"grässlich\",\n        \"polarity\": \"-0.0395\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gräßlich\": {\n        \"form\": \"gräßlich\",\n        \"polarity\": \"-0.4529\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"haarig\": {\n        \"form\": \"haarig\",\n        \"polarity\": \"-0.0351\",\n        \"pos\": \"JJ\",\n        \"sense\": \"haarigere,haarige,haariger,haarigeren,haarigstes,haarigerem,haarigster,haariges,haarigen,haarigstem,haarigem,haarigsten,haarigste,haarigerer,haarigeres\"\n    },\n    \"haarsträubend\": {\n        \"form\": \"haarsträubend\",\n        \"polarity\": \"-0.4637\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"habgierig\": {\n        \"form\": \"habgierig\",\n        \"polarity\": \"-0.3059\",\n        \"pos\": \"JJ\",\n        \"sense\": \"habgierigsten,habgierigem,habgierigen,habgierigerem,habgierigster,habgierigeren,habgierigstes,habgierigstem,habgierigere,habgierigeres,habgierigerer,habgieriges,habgieriger,habgierigste,habgierige\"\n    },\n    \"halbfertig\": {\n        \"form\": \"halbfertig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"halbfertigste,halbfertigen,halbfertigem,halbfertiges,halbfertiger,halbfertigerem,halbfertigsten,halbfertigere,halbfertigstes,halbfertigster,halbfertigeren,halbfertigeres,halbfertige,halbfertigerer,halbfertigstem\"\n    },\n    \"happig\": {\n        \"form\": \"happig\",\n        \"polarity\": \"-0.0256\",\n        \"pos\": \"JJ\",\n        \"sense\": \"happiges,happiger,happigste,happigen,happigerer,happigeres,happigeren,happigerem,happigere,happigem,happigstem,happigsten,happigster,happigstes,happige\"\n    },\n    \"harsch\": {\n        \"form\": \"harsch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"harschstes,harschster,harschestem,harscheste,harschsten,harschstem,harschere,harscheres,harschem,harsche,harscherer,harschste,harschester,harschestes,harscher,harsches,harschesten,harschest,harschen,harscherem,harscheren\"\n    },\n    \"hart\": {\n        \"form\": \"hart\",\n        \"polarity\": \"-0.1483\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hartnäckig\": {\n        \"form\": \"hartnäckig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hassen\": {\n        \"form\": \"hassen\",\n        \"polarity\": \"-0.054\",\n        \"pos\": \"VB\",\n        \"sense\": \"hasstet,gehasst,hasstest,hasse,hasset,hassest,hasst,hassten,hasste\"\n    },\n    \"heftig\": {\n        \"form\": \"heftig\",\n        \"polarity\": \"-0.1819\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heftige,heftigste,heftigeren,heftigerem,heftigster,heftigem,heftigen,heftigsten,heftigere,heftigstem,heftiger,heftiges,heftigerer,heftigstes,heftigeres\"\n    },\n    \"heikel\": {\n        \"form\": \"heikel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heikelstes,heikelster,heikelsten,heikelste,heikler,heikles,heiklere,heikleres,heikle,heikelstem,heiklerer,heiklem,heiklen,heiklerem,heikleren\"\n    },\n    \"heillos\": {\n        \"form\": \"heillos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heilloser,heilloses,heillosem,heillosen,heilloseste,heillosesten,heillosestem,heillosere,heillose,heilloserem,heillosester,heilloseren,heillosestes,heilloseres,heilloserer\"\n    },\n    \"heimsuchen\": {\n        \"form\": \"heimsuchen\",\n        \"polarity\": \"-0.3228\",\n        \"pos\": \"VB\",\n        \"sense\": \"heimsuchtest,heimsuchten,heimgesucht,heimsuchte,heimsucht,heimsuchst,heimsuchtet,heimsuchet,heimsuchest,heimsuche\"\n    },\n    \"heimtückisch\": {\n        \"form\": \"heimtückisch\",\n        \"polarity\": \"-0.3241\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"heimzahlen\": {\n        \"form\": \"heimzahlen\",\n        \"polarity\": \"-0.0371\",\n        \"pos\": \"VB\",\n        \"sense\": \"heimzahlte,heimzahlst,heimgezahlt,heimzahltet,heimzahltest,heimzahlest,heimzahlten,heimzahle,heimzahlt,heimzahlet\"\n    },\n    \"hektisch\": {\n        \"form\": \"hektisch\",\n        \"polarity\": \"-0.0396\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hektischste,hektischeres,hektischem,hektischsten,hektischen,hektischstem,hektischeren,hektischere,hektischerem,hektisches,hektischer,hektischerer,hektischster,hektischstes,hektische\"\n    },\n    \"hemmen\": {\n        \"form\": \"hemmen\",\n        \"polarity\": \"-0.1953\",\n        \"pos\": \"VB\",\n        \"sense\": \"hemmest,gehemmt,hemmtest,hemmst,hemme,hemmten,hemmet,hemmte,hemmt,hemmtet\"\n    },\n    \"herabsetzen\": {\n        \"form\": \"herabsetzen\",\n        \"polarity\": \"-0.3199\",\n        \"pos\": \"VB\",\n        \"sense\": \"herabsetzest,herabgesetzt,herabsetzten,herabsetze,herabsetzt,herabsetztet,herabsetztest,herabsetzet,herabsetzte\"\n    },\n    \"herausfordern\": {\n        \"form\": \"herausfordern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"herausgefordert,herausfordertest,herausforderst,herausforderen,herausforderte,herausfordertet,herausforderten,herausfordere,herausfordert\"\n    },\n    \"herrisch\": {\n        \"form\": \"herrisch\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herrischstes,herrischem,herrischster,herrischen,herrischere,herrischsten,herrischer,herrisches,herrischstem,herrischerem,herrischeren,herrische,herrischste,herrischeres,herrischerer\"\n    },\n    \"herunter\": {\n        \"form\": \"herunter\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"heruntermachen\": {\n        \"form\": \"heruntermachen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"heruntermachten,heruntermachet,heruntermache,heruntermachtet,heruntermachest,heruntermachte,heruntermachst,heruntermacht,heruntermachtest,heruntergemacht\"\n    },\n    \"herzlos\": {\n        \"form\": \"herzlos\",\n        \"polarity\": \"-0.3157\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herzlosere,herzloses,herzloser,herzloseste,herzlosen,herzlose,herzlosem,herzloseres,herzlosestes,herzlosester,herzloserer,herzloserem,herzloseren,herzlosestem,herzlosesten\"\n    },\n    \"heucheln\": {\n        \"form\": \"heucheln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"geheuchelt,heucheltest,heuchelst,heuchelte,heucheltet,heuchle,heuchelt,heuchele,heuchelen,heuchel,heuchelten\"\n    },\n    \"heuchlerisch\": {\n        \"form\": \"heuchlerisch\",\n        \"polarity\": \"-0.4544\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heuchlerischer,heuchlerisches,heuchlerischstem,heuchlerischsten,heuchlerische,heuchlerischem,heuchlerischstes,heuchlerischen,heuchlerischster,heuchlerischere,heuchlerischerer,heuchlerischeres,heuchlerischeren,heuchlerischerem,heuchlerischste\"\n    },\n    \"hilflos\": {\n        \"form\": \"hilflos\",\n        \"polarity\": \"-0.4827\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hilfloserer,hilfloseste,hilflose,hilfloserem,hilfloseren,hilflosem,hilflosen,hilflosere,hilflosestes,hilfloses,hilflosester,hilfloser,hilflosesten,hilflosestem,hilfloseres\"\n    },\n    \"hinfällig\": {\n        \"form\": \"hinfällig\",\n        \"polarity\": \"-0.3336\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hinterlistig\": {\n        \"form\": \"hinterlistig\",\n        \"polarity\": \"-0.3187\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hinterlistigere,hinterlistigerem,hinterlistigeren,hinterlistigerer,hinterlistigeres,hinterlistigstem,hinterlistigsten,hinterlistigen,hinterlistigem,hinterlistiges,hinterlistigste,hinterlistigster,hinterlistiger,hinterlistigstes,hinterlistige\"\n    },\n    \"hochtrabend\": {\n        \"form\": \"hochtrabend\",\n        \"polarity\": \"-0.3086\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochtrabendste,hochtrabenderes,hochtrabenderer,hochtrabenderen,hochtrabenderem,hochtrabendem,hochtrabenden,hochtrabendster,hochtrabendstes,hochtrabender,hochtrabendstem,hochtrabendsten,hochtrabendes,hochtrabende,hochtrabendere\"\n    },\n    \"hoffnungslos\": {\n        \"form\": \"hoffnungslos\",\n        \"polarity\": \"-0.3412\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hoffnungsloseste,hoffnungslosen,hoffnungslosem,hoffnungslose,hoffnungsloserer,hoffnungslosestem,hoffnungslosesten,hoffnungsloseres,hoffnungsloseren,hoffnungslosester,hoffnungsloserem,hoffnungslosestes,hoffnungslosere,hoffnungsloses,hoffnungsloser\"\n    },\n    \"hungern\": {\n        \"form\": \"hungern\",\n        \"polarity\": \"-0.0565\",\n        \"pos\": \"VB\",\n        \"sense\": \"hungertet,hungerte,gehungert,hungerst,hungerten,hungeren,hungertest,hungert,hungere\"\n    },\n    \"hungrig\": {\n        \"form\": \"hungrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hungrigere,hungrigerer,hungrigeres,hungrigeren,hungriges,hungrigerem,hungrige,hungrigstes,hungrigster,hungrigen,hungrigsten,hungrigem,hungrigste,hungrigstem,hungriger\"\n    },\n    \"hysterisch\": {\n        \"form\": \"hysterisch\",\n        \"polarity\": \"-0.0465\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hysterischsten,hysterischster,hysterischstes,hysterischere,hysterischstem,hysterische,hysterisches,hysterischer,hysterischeres,hysterischerer,hysterischste,hysterischen,hysterischem,hysterischeren,hysterischerem\"\n    },\n    \"hämisch\": {\n        \"form\": \"hämisch\",\n        \"polarity\": \"-0.3198\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hässlich\": {\n        \"form\": \"hässlich\",\n        \"polarity\": \"-0.4387\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"häßlich\": {\n        \"form\": \"häßlich\",\n        \"polarity\": \"-0.4387\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"höhnisch\": {\n        \"form\": \"höhnisch\",\n        \"polarity\": \"-0.0525\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"idiotisch\": {\n        \"form\": \"idiotisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"idiotischsten,idiotischste,idiotischstem,idiotischer,idiotischen,idiotische,idiotischem,idiotischerem,idiotischere,idiotisches,idiotischeres,idiotischerer,idiotischstes,idiotischster,idiotischeren\"\n    },\n    \"illegal\": {\n        \"form\": \"illegal\",\n        \"polarity\": \"-0.3479\",\n        \"pos\": \"JJ\",\n        \"sense\": \"illegaler,illegales,illegalsten,illegalstes,illegalster,illegaleres,illegalerer,illegalstem,illegaleren,illegalste,illegalerem,illegale,illegalere,illegalen,illegalem\"\n    },\n    \"illoyal\": {\n        \"form\": \"illoyal\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"illoyalem,illoyalen,illoyalstes,illoyaleren,illoyalster,illoyalerem,illoyalsten,illoyalstem,illoyales,illoyale,illoyalere,illoyaler,illoyalerer,illoyaleres,illoyalste\"\n    },\n    \"immobil\": {\n        \"form\": \"immobil\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"immobile,immobilerer,immobileres,immobilere,immobilerem,immobileren,immobilen,immobiler,immobiles,immobilste,immobilstem,immobilsten,immobilster,immobilstes,immobilem\"\n    },\n    \"ineffizient\": {\n        \"form\": \"ineffizient\",\n        \"polarity\": \"-0.4602\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ineffizientere,ineffizienterem,ineffizienteren,ineffizienteres,ineffizienterer,ineffizienten,ineffizientestes,ineffizientester,ineffiziente,ineffizienteste,ineffizientem,ineffizientestem,ineffizientesten,ineffizientes,ineffizienter\"\n    },\n    \"infiltrieren\": {\n        \"form\": \"infiltrieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"infiltrierest,infiltrieret,infiltriertest,infiltrierten,infiltrierte,infiltrierst,infiltriere,infiltriertet,infiltriert\"\n    },\n    \"inkompetent\": {\n        \"form\": \"inkompetent\",\n        \"polarity\": \"-0.5935\",\n        \"pos\": \"JJ\",\n        \"sense\": \"inkompetentesten,inkompetentestem,inkompetentestes,inkompetenteste,inkompetentester,inkompetente,inkompetentem,inkompetenten,inkompetenter,inkompetentes,inkompetentere,inkompetenteren,inkompetenterem,inkompetenterer,inkompetenteres\"\n    },\n    \"inkonsequent\": {\n        \"form\": \"inkonsequent\",\n        \"polarity\": \"-0.1844\",\n        \"pos\": \"JJ\",\n        \"sense\": \"inkonsequenteres,inkonsequenterer,inkonsequentere,inkonsequentester,inkonsequenterem,inkonsequente,inkonsequentestes,inkonsequenteren,inkonsequentes,inkonsequenter,inkonsequentesten,inkonsequentem,inkonsequenten,inkonsequenteste,inkonsequentestem\"\n    },\n    \"inkonsistent\": {\n        \"form\": \"inkonsistent\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"inkonsistenteres,inkonsistentere,inkonsistenterer,inkonsistentestem,inkonsistenterem,inkonsistenteren,inkonsistentesten,inkonsistentem,inkonsistenteste,inkonsistentestes,inkonsistentester,inkonsistente,inkonsistenter,inkonsistentes,inkonsistenten\"\n    },\n    \"inkorrekt\": {\n        \"form\": \"inkorrekt\",\n        \"polarity\": \"-0.3167\",\n        \"pos\": \"JJ\",\n        \"sense\": \"inkorrektestes,inkorrektester,inkorrektestem,inkorrekteste,inkorrektesten,inkorrekterer,inkorrekterem,inkorrekteren,inkorrekter,inkorrektere,inkorrektes,inkorrektem,inkorrekteres,inkorrekten,inkorrekte\"\n    },\n    \"instabil\": {\n        \"form\": \"instabil\",\n        \"polarity\": \"-0.3352\",\n        \"pos\": \"JJ\",\n        \"sense\": \"instabiler,instabilen,instabilerem,instabilste,instabilem,instabiles,instabilstem,instabilsten,instabilstes,instabileren,instabilster,instabile,instabilere,instabilerer,instabileres\"\n    },\n    \"intervenieren\": {\n        \"form\": \"intervenieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"interveniere,intervenierst,interveniert,intervenierest,intervenieret,intervenierte,interveniertest,intervenierten,interveniertet\"\n    },\n    \"intolerant\": {\n        \"form\": \"intolerant\",\n        \"polarity\": \"-0.3215\",\n        \"pos\": \"JJ\",\n        \"sense\": \"intolerante,intoleranteste,intolerantester,intolerantes,intoleranteres,intolerantestes,intoleranterer,intolerantesten,intolerantestem,intoleranter,intolerantere,intoleranterem,intoleranten,intolerantem,intoleranteren\"\n    },\n    \"irrational\": {\n        \"form\": \"irrational\",\n        \"polarity\": \"-0.3277\",\n        \"pos\": \"JJ\",\n        \"sense\": \"irrationalster,irrationalen,irrationalstes,irrationalsten,irrationaler,irrationales,irrationalstem,irrationalere,irrationaleren,irrationalerem,irrationale,irrationalste,irrationaleres,irrationalerer,irrationalem\"\n    },\n    \"irre\": {\n        \"form\": \"irre\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"irrerem,irrere,irreren,irreres,irrerer,irres,irrestes,irre,irrester,irrer,irreste,irrestem,irrem,irresten,irren\"\n    },\n    \"irrsinnig\": {\n        \"form\": \"irrsinnig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"irrsinnigere,irrsinnigstes,irrsinnigeres,irrsinnigster,irrsinnigen,irrsinnigem,irrsinniges,irrsinnigstem,irrsinnigsten,irrsinnige,irrsinniger,irrsinnigerer,irrsinnigste,irrsinnigerem,irrsinnigeren\"\n    },\n    \"isolieren\": {\n        \"form\": \"isolieren\",\n        \"polarity\": \"-0.0388\",\n        \"pos\": \"VB\",\n        \"sense\": \"isolierten,isolierst,isoliertest,isolierte,isolierest,isoliertet,isolieret,isoliere,isoliert\"\n    },\n    \"jammern\": {\n        \"form\": \"jammern\",\n        \"polarity\": \"-0.0504\",\n        \"pos\": \"VB\",\n        \"sense\": \"jammert,jammere,jammertet,jammertest,jammerten,gejammert,jammeren,jammerte,jammerst\"\n    },\n    \"jähzornig\": {\n        \"form\": \"jähzornig\",\n        \"polarity\": \"-0.3089\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kacken\": {\n        \"form\": \"kacken\",\n        \"polarity\": \"-0.171\",\n        \"pos\": \"VB\",\n        \"sense\": \"kacke,kackst,kackt,kackest,kacket,kackte,kacktest,kackten,kacktet,gekackt\"\n    },\n    \"kahl\": {\n        \"form\": \"kahl\",\n        \"polarity\": \"-0.0472\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kahlste,kahleren,kahlerer,kahleres,kahlsten,kahler,kahlerem,kahlstem,kahlem,kahlen,kahle,kahlere,kahles,kahlstes,kahlster\"\n    },\n    \"kalt\": {\n        \"form\": \"kalt\",\n        \"polarity\": \"-0.012\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kaltherzig\": {\n        \"form\": \"kaltherzig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kaltherziger,kaltherzige,kaltherziges,kaltherzigen,kaltherzigem,kaltherzigstes,kaltherzigste,kaltherzigerem,kaltherzigeren,kaltherzigstem,kaltherzigsten,kaltherzigster,kaltherzigeres,kaltherzigere,kaltherzigerer\"\n    },\n    \"kapitulieren\": {\n        \"form\": \"kapitulieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kapituliere,kapitulierst,kapituliert,kapitulierest,kapitulieret,kapitulierte,kapituliertest,kapitulierten,kapituliertet\"\n    },\n    \"kaputt\": {\n        \"form\": \"kaputt\",\n        \"polarity\": \"-0.1513\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kaputtem,kaputten,kaputtestes,kaputtester,kaputteren,kaputtes,kaputter,kaputterem,kaputtesten,kaputterer,kaputtestem,kaputteres,kaputteste,kaputtere,kaputte\"\n    },\n    \"katastrophal\": {\n        \"form\": \"katastrophal\",\n        \"polarity\": \"-0.4917\",\n        \"pos\": \"JJ\",\n        \"sense\": \"katastrophalere,katastrophales,katastrophale,katastrophalster,katastrophalerer,katastrophalstes,katastrophaler,katastrophaleres,katastrophalerem,katastrophaleren,katastrophalstem,katastrophalen,katastrophalsten,katastrophalem,katastrophalste\"\n    },\n    \"keimig\": {\n        \"form\": \"keimig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"keimige,keimigem,keimigen,keimiger,keimiges,keimigere,keimigerem,keimigeren,keimigerer,keimigeres,keimigste,keimigstem,keimigsten,keimigster,keimigstes\"\n    },\n    \"kentern\": {\n        \"form\": \"kentern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kenterte,kentere,kenterst,kenteren,gekentert,kentertet,kentert,kenterten,kentertest\"\n    },\n    \"kippen\": {\n        \"form\": \"kippen\",\n        \"polarity\": \"-0.1814\",\n        \"pos\": \"VB\",\n        \"sense\": \"kippet,kippten,kipptest,kipptet,kippt,kippe,kippte,gekippt,kippst,kippest\"\n    },\n    \"klagen\": {\n        \"form\": \"klagen\",\n        \"polarity\": \"-0.3565\",\n        \"pos\": \"VB\",\n        \"sense\": \"klagt,klage,klagten,klagtest,klagst,klaget,klagest,klagte,klagtet,geklagt\"\n    },\n    \"klein\": {\n        \"form\": \"klein\",\n        \"polarity\": \"-0.2715\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kleinerem,kleineren,kleiner,kleines,kleinen,kleine,kleinere,kleinem,kleinstes,kleinerer,kleinster,kleinstem,kleinsten,kleinste,kleineres\"\n    },\n    \"klobig\": {\n        \"form\": \"klobig\",\n        \"polarity\": \"-0.0373\",\n        \"pos\": \"JJ\",\n        \"sense\": \"klobigere,klobigster,klobigstes,klobiges,klobigsten,klobigem,klobigeres,klobigen,klobigerer,klobigstem,klobiger,klobigeren,klobigerem,klobige,klobigste\"\n    },\n    \"knapp\": {\n        \"form\": \"knapp\",\n        \"polarity\": \"-0.2036\",\n        \"pos\": \"JJ\",\n        \"sense\": \"knapperem,knapperen,knappere,knapperes,knapperer,knappem,knappste,knappstem,knappen,knappe,knappstes,knappes,knappster,knapper,knappsten\"\n    },\n    \"knurrig\": {\n        \"form\": \"knurrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"knurrigster,knurrigstes,knurrigste,knurrigsten,knurrigstem,knurrige,knurrigere,knurrigerem,knurrigeren,knurrigem,knurrigen,knurrigerer,knurrigeres,knurriger,knurriges\"\n    },\n    \"kollabieren\": {\n        \"form\": \"kollabieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kollabierten,kollabieret,kollabierest,kollabierst,kollabierte,kollabiere,kollabiertet,kollabiertest,kollabiert\"\n    },\n    \"kollidieren\": {\n        \"form\": \"kollidieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kollidiertet,kollidiertest,kollidiert,kollidiere,kollidierten,kollidierest,kollidieret,kollidierte,kollidierst\"\n    },\n    \"kompliziert\": {\n        \"form\": \"kompliziert\",\n        \"polarity\": \"-0.0384\",\n        \"pos\": \"JJ\",\n        \"sense\": \"komplizierteren,kompliziertester,komplizierterem,komplizierter,komplizierterer,kompliziertere,komplizierteres,kompliziertestem,kompliziertesten,kompliziertes,komplizierte,komplizierteste,kompliziertem,kompliziertestes,komplizierten\"\n    },\n    \"konfrontieren\": {\n        \"form\": \"konfrontieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"konfrontiertet,konfrontiertest,konfrontierten,konfrontierte,konfrontierest,konfrontierst,konfrontieret,konfrontiere,konfrontiert\"\n    },\n    \"konkurrieren\": {\n        \"form\": \"konkurrieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"konkurriere,konkurrierst,konkurriert,konkurrierrest,konkurrieret,konkurrierte,konkurriertest,konkurrierten,konkurriertet\"\n    },\n    \"kontraproduktiv\": {\n        \"form\": \"kontraproduktiv\",\n        \"polarity\": \"-0.6272\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kontraproduktiveren,kontraproduktiverem,kontraproduktiverer,kontraproduktiveres,kontraproduktivste,kontraproduktivem,kontraproduktivstem,kontraproduktivsten,kontraproduktiven,kontraproduktivere,kontraproduktives,kontraproduktiver,kontraproduktivster,kontraproduktive,kontraproduktivstes\"\n    },\n    \"kontrovers\": {\n        \"form\": \"kontrovers\",\n        \"polarity\": \"-0.3395\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kontroverseste,kontroversen,kontroversere,kontroverseres,kontroverses,kontroverser,kontroverse,kontroverserer,kontroversestes,kontroversem,kontroversester,kontroversesten,kontroverseren,kontroversestem,kontroverserem\"\n    },\n    \"korrupt\": {\n        \"form\": \"korrupt\",\n        \"polarity\": \"-0.4615\",\n        \"pos\": \"JJ\",\n        \"sense\": \"korrupterer,korruptes,korrupter,korrupteste,korrupterem,korrupteren,korruptester,korruptestes,korruptesten,korrupteres,korruptestem,korruptere,korruptem,korrupte,korrupten\"\n    },\n    \"kostenintensiv\": {\n        \"form\": \"kostenintensiv\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kostenintensiverem,kostenintensiveren,kostenintensiven,kostenintensivem,kostenintensivere,kostenintensivsten,kostenintensives,kostenintensive,kostenintensivstem,kostenintensivster,kostenintensivstes,kostenintensiver,kostenintensiveres,kostenintensiverer,kostenintensivste\"\n    },\n    \"kostspielig\": {\n        \"form\": \"kostspielig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kostspieligeres,kostspieligerer,kostspieligeren,kostspieligerem,kostspielige,kostspieliges,kostspieliger,kostspieligstes,kostspieligster,kostspieligste,kostspieligsten,kostspieligstem,kostspieligem,kostspieligen,kostspieligere\"\n    },\n    \"krachen\": {\n        \"form\": \"krachen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"krachst,krachte,kracht,krache,krachten,krachest,krachtet,gekracht,krachtest,krachet\"\n    },\n    \"kraftlos\": {\n        \"form\": \"kraftlos\",\n        \"polarity\": \"-0.3338\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kraftlosesten,kraftlosestem,kraftlosestes,kraftloseres,kraftloserer,kraftlosester,kraftlosen,kraftloseren,kraftlosem,kraftloserem,kraftlose,kraftloser,kraftloses,kraftlosere,kraftloseste\"\n    },\n    \"krank\": {\n        \"form\": \"krank\",\n        \"polarity\": \"-0.4694\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kranken\": {\n        \"form\": \"kranken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kranktest,krank,kranktet,kranket,krankest,krankte,kranke,krankt,krankten,gekrankt\"\n    },\n    \"krass\": {\n        \"form\": \"krass\",\n        \"polarity\": \"-0.1603\",\n        \"pos\": \"JJ\",\n        \"sense\": \"krassere,krasse,krasseren,krasseres,krasserer,krassestes,krassem,krassester,krassen,krasserem,krasser,krasseste,krasses,krassestem,krassesten\"\n    },\n    \"kriechen\": {\n        \"form\": \"kriechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"krieche,kriechst,kriecht,kriechest,kriechet,kroch,krochst,krochen,krocht,kröche,kröchest,kröchst,kröchen,kröchet,kröcht,gekrochen\"\n    },\n    \"kriegerisch\": {\n        \"form\": \"kriegerisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kriegerische,kriegerischsten,kriegerischstem,kriegerischstes,kriegerischster,kriegerischeres,kriegerischerer,kriegerischerem,kriegerischere,kriegerischeren,kriegerischem,kriegerischen,kriegerischer,kriegerisches,kriegerischste\"\n    },\n    \"kriminell\": {\n        \"form\": \"kriminell\",\n        \"polarity\": \"-0.4692\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kriminellen,kriminellere,kriminellem,kriminellerer,kriminellerem,kriminelleren,kriminellster,kriminellstes,kriminellstem,kriminellsten,kriminelle,kriminellste,kriminelleres,kriminelles,krimineller\"\n    },\n    \"kritisch\": {\n        \"form\": \"kritisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kritischerer,kritischste,kritischeres,kritischsten,kritischstem,kritischster,kritischerem,kritischeren,kritischer,kritisches,kritischstes,kritischen,kritischem,kritischere,kritische\"\n    },\n    \"kritisieren\": {\n        \"form\": \"kritisieren\",\n        \"polarity\": \"-0.3466\",\n        \"pos\": \"VB\",\n        \"sense\": \"kritisieret,kritisierest,kritisiertest,kritisierten,kritisierst,kritisiere,kritisiert,kritisierte,kritisiertet\"\n    },\n    \"krude\": {\n        \"form\": \"krude\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kruden,kruder,kruderes,krudes,kruderer,krudeste,krudester,krudest,kruderen,krudestes,kruderem,krudesten,krudere,krudestem,krudem,krude\"\n    },\n    \"krumm\": {\n        \"form\": \"krumm\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"JJ\",\n        \"sense\": \"krummeren,krummere,krummsten,krummen,krummem,krummster,krummstes,krummerem,krummer,krummerer,krummeres,krummstem,krummes,krumme,krummste\"\n    },\n    \"kränkeln\": {\n        \"form\": \"kränkeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kränkelt,kränkel,kränkeltet,kränkelten,kränkelen,kränkele,kränkeltest,kränkle,kränkelte,kränkelst,gekränkelt\"\n    },\n    \"kränken\": {\n        \"form\": \"kränken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"kränktest,kränkte,kränkt,kränke,kränkst,kränkten,kränket,gekränkt,kränktet,kränkest\"\n    },\n    \"kränklich\": {\n        \"form\": \"kränklich\",\n        \"polarity\": \"-0.3172\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kurz\": {\n        \"form\": \"kurz\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kurzsichtig\": {\n        \"form\": \"kurzsichtig\",\n        \"polarity\": \"-0.4714\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kurzsichtigster,kurzsichtigstes,kurzsichtigem,kurzsichtigerem,kurzsichtigeren,kurzsichtigen,kurzsichtigerer,kurzsichtigeres,kurzsichtiger,kurzsichtiges,kurzsichtigere,kurzsichtigste,kurzsichtigsten,kurzsichtige,kurzsichtigstem\"\n    },\n    \"kämpfen\": {\n        \"form\": \"kämpfen\",\n        \"polarity\": \"-0.3467\",\n        \"pos\": \"VB\",\n        \"sense\": \"kämpftest,kämpfe,kämpfest,kämpftet,gekämpft,kämpften,kämpfet,kämpft,kämpfte,kämpfst\"\n    },\n    \"kümmerlich\": {\n        \"form\": \"kümmerlich\",\n        \"polarity\": \"-0.3208\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kündigen\": {\n        \"form\": \"kündigen\",\n        \"polarity\": \"-0.4947\",\n        \"pos\": \"VB\",\n        \"sense\": \"kündiget,kündigest,kündigtest,gekündigt,kündige,kündigten,kündigt,kündigst,kündigte,kündigtet\"\n    },\n    \"kürzen\": {\n        \"form\": \"kürzen\",\n        \"polarity\": \"-0.3439\",\n        \"pos\": \"VB\",\n        \"sense\": \"kürzest,kürze,kürzten,kürzt,kürzte,gekürzt,kürztet,kürztest,kürzet\"\n    },\n    \"labil\": {\n        \"form\": \"labil\",\n        \"polarity\": \"-0.326\",\n        \"pos\": \"JJ\",\n        \"sense\": \"labilsten,labilere,labilstem,labilster,labilstes,labiler,labilerem,labilste,labileren,labiles,labilem,labilen,labile,labilerer,labileres\"\n    },\n    \"laienhaft\": {\n        \"form\": \"laienhaft\",\n        \"polarity\": \"-0.3169\",\n        \"pos\": \"JJ\",\n        \"sense\": \"laienhafteren,laienhaftes,laienhaftesten,laienhafter,laienhafterem,laienhaftestem,laienhafteres,laienhafterer,laienhaftester,laienhafteste,laienhafte,laienhaftere,laienhaftestes,laienhaftem,laienhaften\"\n    },\n    \"lakonisch\": {\n        \"form\": \"lakonisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lakonisches,lakonischstem,lakonischsten,lakonischer,lakonischere,lakonischeres,lakonischerer,lakonischeren,lakonischerem,lakonischstes,lakonische,lakonischem,lakonischster,lakonischen,lakonischste\"\n    },\n    \"langatmig\": {\n        \"form\": \"langatmig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"langatmiges,langatmige,langatmiger,langatmigerem,langatmigem,langatmigen,langatmigstem,langatmigeres,langatmigerer,langatmigsten,langatmigere,langatmigeren,langatmigste,langatmigstes,langatmigster\"\n    },\n    \"langsam\": {\n        \"form\": \"langsam\",\n        \"polarity\": \"-0.0167\",\n        \"pos\": \"JJ\",\n        \"sense\": \"langsamsten,langsamste,langsamstem,langsamster,langsameren,langsame,langsamerem,langsamerer,langsames,langsamer,langsamem,langsamstes,langsameres,langsamere,langsamen\"\n    },\n    \"langweilen\": {\n        \"form\": \"langweilen\",\n        \"polarity\": \"-0.0512\",\n        \"pos\": \"VB\",\n        \"sense\": \"langweile,gelangweilt,langweilten,langweilt,langweilte,langweilst,langweiltest,langweiltet,langweilet,langweilest\"\n    },\n    \"langweilig\": {\n        \"form\": \"langweilig\",\n        \"polarity\": \"-0.0228\",\n        \"pos\": \"JJ\",\n        \"sense\": \"langweiliges,langweiligster,langweiliger,langweiligerer,langweiligstes,langweilige,langweiligerem,langweiligeren,langweiligere,langweiligeres,langweiligstem,langweiligsten,langweiligen,langweiligem,langweiligste\"\n    },\n    \"lasch\": {\n        \"form\": \"lasch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"laschstes,laschster,lasches,lascher,lascheste,laschester,laschestes,laschere,laschestem,laschesten,lasche,lascheres,laschen,laschste,lascherer,laschest,laschem,laschsten,lascherem,laschstem,lascheren\"\n    },\n    \"launisch\": {\n        \"form\": \"launisch\",\n        \"polarity\": \"-0.0409\",\n        \"pos\": \"JJ\",\n        \"sense\": \"launischstes,launischeren,launischste,launischerem,launischster,launischerer,launischeres,launischsten,launischere,launischstem,launische,launischem,launischen,launischer,launisches\"\n    },\n    \"lebensfeindlich\": {\n        \"form\": \"lebensfeindlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lebensfeindlicherer,lebensfeindlichsten,lebensfeindlichstem,lebensfeindliche,lebensfeindlichster,lebensfeindlicheres,lebensfeindlichste,lebensfeindlicheren,lebensfeindlicherem,lebensfeindlichere,lebensfeindlichstes,lebensfeindlicher,lebensfeindliches,lebensfeindlichem,lebensfeindlichen\"\n    },\n    \"lebensgefährlich\": {\n        \"form\": \"lebensgefährlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"leblos\": {\n        \"form\": \"leblos\",\n        \"polarity\": \"-0.049\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leblosestem,lebloses,lebloser,leblosen,leblosester,leblosestes,leblosesten,lebloseren,leblose,lebloserem,leblosere,lebloserer,lebloseres,leblosem,lebloseste\"\n    },\n    \"leer\": {\n        \"form\": \"leer\",\n        \"polarity\": \"-0.025\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leererem,leere,leereren,leererer,leereres,leerstem,leerem,leeren,leerstes,leerster,leerer,leersten,leeres,leerste,leerere\"\n    },\n    \"leichtgläubig\": {\n        \"form\": \"leichtgläubig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"leichtsinnig\": {\n        \"form\": \"leichtsinnig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leichtsinnige,leichtsinnigster,leichtsinnigstes,leichtsinnigeren,leichtsinnigerem,leichtsinnigerer,leichtsinnigste,leichtsinniges,leichtsinniger,leichtsinnigeres,leichtsinnigere,leichtsinnigem,leichtsinnigstem,leichtsinnigsten,leichtsinnigen\"\n    },\n    \"leiden\": {\n        \"form\": \"leiden\",\n        \"polarity\": \"-0.1596\",\n        \"pos\": \"VB\",\n        \"sense\": \"leide,leidest,leidet,litt,littest,litten,littet,litte,gelitten\"\n    },\n    \"leider\": {\n        \"form\": \"leider\",\n        \"polarity\": \"-0.4787\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"leistungsunfähig\": {\n        \"form\": \"leistungsunfähig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"leugnen\": {\n        \"form\": \"leugnen\",\n        \"polarity\": \"-0.4862\",\n        \"pos\": \"VB\",\n        \"sense\": \"leugnetet,leugnest,leugnete,leugne,leugnetest,leugnet,leugneten,geleugnet\"\n    },\n    \"lieblos\": {\n        \"form\": \"lieblos\",\n        \"polarity\": \"-0.4697\",\n        \"pos\": \"JJ\",\n        \"sense\": \"liebloserem,lieblose,liebloseren,lieblosestem,lieblosesten,liebloses,lieblosester,lieblosestes,liebloser,lieblosem,lieblosen,lieblosere,liebloseste,liebloserer,liebloseres\"\n    },\n    \"liquidieren\": {\n        \"form\": \"liquidieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"liquidierten,liquidierest,liquidiere,liquidiert,liquidierte,liquidierst,liquidiertet,liquidiertest,liquidieret\"\n    },\n    \"loswerden\": {\n        \"form\": \"loswerden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"loswerde,loswirst,loswird,loswerdet,loswerdest,loswurde,loswurdest,loswurden,loswurdet,loswürde,loswürdest,loswürden,loswürdet,losgeworden,loszuwerden\"\n    },\n    \"lächerlich\": {\n        \"form\": \"lächerlich\",\n        \"polarity\": \"-0.6435\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lädiert\": {\n        \"form\": \"lädiert\",\n        \"polarity\": \"-0.0366\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"lähmen\": {\n        \"form\": \"lähmen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"lähmtest,lähmet,lähmt,lähmest,lähmten,lähmtet,lähmte,gelähmt,lähmst,lähme\"\n    },\n    \"läppisch\": {\n        \"form\": \"läppisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lästig\": {\n        \"form\": \"lästig\",\n        \"polarity\": \"-0.1751\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"löschen\": {\n        \"form\": \"löschen\",\n        \"polarity\": \"-0.3654\",\n        \"pos\": \"VB\",\n        \"sense\": \"löschet,löschtest,löschten,löscht,löschte,lösche,löschst,gelöscht,löschtet,löschest\"\n    },\n    \"lückenhaft\": {\n        \"form\": \"lückenhaft\",\n        \"polarity\": \"-0.4805\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"machtlos\": {\n        \"form\": \"machtlos\",\n        \"polarity\": \"-0.3351\",\n        \"pos\": \"JJ\",\n        \"sense\": \"machtloserer,machtloserem,machtloseren,machtlosere,machtloses,machtloser,machtlosen,machtlosem,machtlosestem,machtlosesten,machtloseste,machtloseres,machtlosester,machtlosestes,machtlose\"\n    },\n    \"mager\": {\n        \"form\": \"mager\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"magerere,magerer,magereren,magererer,magererem,magereres,magerstem,magersten,magerste,magerster,magerst,magerstes,magere,mageres,mageren,magerem\"\n    },\n    \"magern\": {\n        \"form\": \"magern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"magere,magerst,magert,magerest,mageret,magerte,magertest,magerten,magertet,gemagert\"\n    },\n    \"makelhaft\": {\n        \"form\": \"makelhaft\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"makelhafte,makelhaftem,makelhaften,makelhafter,makelhaftes,makelhaftere,makelhafterem,makelhafteren,makelhafterer,makelhafteres,makelhafteste,makelhaftestem,makelhaftesten,makelhaftester,makelhaftestes\"\n    },\n    \"mangelbehaftet\": {\n        \"form\": \"mangelbehaftet\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mangelbehaftete,mangelbehaftetem,mangelbehafteten,mangelbehafteter,mangelbehaftetes,mangelbehaftetere,mangelbehafteterem,mangelbehafteteren,mangelbehafteterer,mangelbehafteteres,mangelbehaftetste,mangelbehaftetstem,mangelbehaftetsten,mangelbehaftetster,mangelbehaftetstes\"\n    },\n    \"mangelhaft\": {\n        \"form\": \"mangelhaft\",\n        \"polarity\": \"-0.3395\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mangelhaftere,mangelhafteres,mangelhafterer,mangelhaftestem,mangelhaftesten,mangelhafteren,mangelhaftes,mangelhafter,mangelhafterem,mangelhaftester,mangelhaftestes,mangelhaften,mangelhafte,mangelhaftem,mangelhafteste\"\n    },\n    \"mangeln\": {\n        \"form\": \"mangeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"mangelst,mangelen,mangele,mangelten,mangeltest,mangelte,mangeltet,mangle,mangelt,mangel,gemangelt\"\n    },\n    \"manipulieren\": {\n        \"form\": \"manipulieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"manipuliere,manipulierst,manipuliert,manipulierest,manipulieret,manipulierte,manipuliertest,manipulierten,manipuliertet\"\n    },\n    \"matt\": {\n        \"form\": \"matt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"matteres,matterer,matterem,matter,mattes,matteren,mattestem,mattesten,matte,mattester,matteste,mattestes,mattere,matten,mattem\"\n    },\n    \"mau\": {\n        \"form\": \"mau\",\n        \"polarity\": \"-0.1914\",\n        \"pos\": \"JJ\",\n        \"sense\": \"maue,mauem,mauen,mauer,maues,mauster,mauestem,mauesten,mauere,mauste\"\n    },\n    \"maßlos\": {\n        \"form\": \"maßlos\",\n        \"polarity\": \"-0.1965\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"meckern\": {\n        \"form\": \"meckern\",\n        \"polarity\": \"-0.031\",\n        \"pos\": \"VB\",\n        \"sense\": \"meckerte,meckere,meckerst,meckeren,meckertet,gemeckert,meckertest,meckerten,meckert\"\n    },\n    \"meiden\": {\n        \"form\": \"meiden\",\n        \"polarity\": \"-0.332\",\n        \"pos\": \"VB\",\n        \"sense\": \"meide,meidest,meidet,mied,miedest,miedst,mieden,miedet,miede,gemieden\"\n    },\n    \"melancholisch\": {\n        \"form\": \"melancholisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"melancholischste,melancholischstes,melancholischster,melancholischer,melancholischem,melancholischen,melancholischeren,melancholischstem,melancholischere,melancholisches,melancholischerer,melancholischeres,melancholischsten,melancholische,melancholischerem\"\n    },\n    \"melodramatisch\": {\n        \"form\": \"melodramatisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"melodramatischeres,melodramatischer,melodramatischerer,melodramatisches,melodramatischere,melodramatischen,melodramatischstem,melodramatischsten,melodramatischster,melodramatischstes,melodramatische,melodramatischste,melodramatischem,melodramatischerem,melodramatischeren\"\n    },\n    \"menschenunwürdig\": {\n        \"form\": \"menschenunwürdig\",\n        \"polarity\": \"-0.3144\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"merkwürdig\": {\n        \"form\": \"merkwürdig\",\n        \"polarity\": \"-0.0431\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"mies\": {\n        \"form\": \"mies\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mieseste,miesere,mieses,mieserem,miesen,miesem,mieser,miese,miesestes,miesester,mieseren,miesesten,miesestem,mieserer,mieseres\"\n    },\n    \"miesepetrig\": {\n        \"form\": \"miesepetrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"miesepetrigster,miesepetrigere,miesepetriges,miesepetrigstes,miesepetriger,miesepetrigste,miesepetrigeres,miesepetrigerer,miesepetrigsten,miesepetrigeren,miesepetrigem,miesepetrigerem,miesepetrigen,miesepetrigstem,miesepetrige\"\n    },\n    \"mindern\": {\n        \"form\": \"mindern\",\n        \"polarity\": \"-0.057\",\n        \"pos\": \"VB\",\n        \"sense\": \"minderen,mindertet,gemindert,minderst,minderten,minderte,mindertest,mindert,mindere\"\n    },\n    \"minderwertig\": {\n        \"form\": \"minderwertig\",\n        \"polarity\": \"-0.613\",\n        \"pos\": \"JJ\",\n        \"sense\": \"minderwertiges,minderwertigster,minderwertiger,minderwertigstes,minderwertigstem,minderwertigsten,minderwertige,minderwertigen,minderwertigem,minderwertigerer,minderwertigeren,minderwertigerem,minderwertigere,minderwertigste,minderwertigeres\"\n    },\n    \"miserabel\": {\n        \"form\": \"miserabel\",\n        \"polarity\": \"-0.2004\",\n        \"pos\": \"JJ\",\n        \"sense\": \"miserablen,miserabler,miserables,miserablerem,miserableren,miserablere,miserable,miserabelster,miserableres,miserabelste,miserabelstes,miserablerer,miserabelsten,miserabelstem,miserablem\"\n    },\n    \"missachten\": {\n        \"form\": \"missachten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"missachte,missachtest,missachtet,missachtete,missachtetest,missachteten,missachtetet\"\n    },\n    \"mißachten\": {\n        \"form\": \"mißachten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"mißachte,mißachtest,mißachtet,mißachtete,mißachtetest,mißachteten,mißachtetet\"\n    },\n    \"missbrauchen\": {\n        \"form\": \"missbrauchen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"missbrauche,missbrauchst,missbraucht,missbrauchest,missbrauchet,missbrauchte,missbrauchtest,missbrauchten,missbrauchtet\"\n    },\n    \"mißbrauchen\": {\n        \"form\": \"mißbrauchen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"mißbrauche,mißbrauchst,mißbraucht,mißbrauchet,mißbrauchest,mißbrauchte,mißbrauchtest,mißbrauchten,mißbrauchtet\"\n    },\n    \"missfallen\": {\n        \"form\": \"missfallen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"missfalle,missfällst,missfällt,missfallt,missfallest,missfallet,missfiel,missfielst,missfielen,missfielt,missfiele,missfielest,missfielet\"\n    },\n    \"mißfallen\": {\n        \"form\": \"mißfallen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"missgelaunt\": {\n        \"form\": \"missgelaunt\",\n        \"polarity\": \"-0.297\",\n        \"pos\": \"JJ\",\n        \"sense\": \"missgelaunteren,missgelaunterem,missgelaunterer,missgelaunteres,missgelaunten,missgelauntem,missgelauntes,missgelaunter,missgelaunte,missgelaunteste,missgelauntester,missgelauntestem,missgelauntesten,missgelauntestes,missgelauntere\"\n    },\n    \"missglücken\": {\n        \"form\": \"missglücken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"missglücke,missglückst,missglückt,missglückest,missglücket,missglückte,missglücktest,missglückten,missglücktet\"\n    },\n    \"mißglücken\": {\n        \"form\": \"mißglücken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"misslingen\": {\n        \"form\": \"misslingen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"misslinge,misslingst,misslingt,misslingest,misslinget,misslang,misslangst,misslangen,misslangt,mislänge,misslängest,misslängst,misslängen,misslänget,misslängt,misslungen\"\n    },\n    \"mißlingen\": {\n        \"form\": \"mißlingen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"missmutig\": {\n        \"form\": \"missmutig\",\n        \"polarity\": \"-0.3166\",\n        \"pos\": \"JJ\",\n        \"sense\": \"missmutige,missmutigem,missmutigen,missmutiger,missmutiges,missmutigere,missmutigerem,missmutigeren,missmutigerer,missmutigeres,missmutigste,missmutigstem,missmutigsten,missmutigster,missmutigstes\"\n    },\n    \"mißmutig\": {\n        \"form\": \"mißmutig\",\n        \"polarity\": \"-0.3166\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"missraten\": {\n        \"form\": \"missraten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"missratenes,missratensten,missratenstem,missratenere,missratener,missrateneres,missrateneren,missratenerer,missratene,missratenerem,missratenste,missratenstes,missratenem,missratenster,missratenen\"\n    },\n    \"misstrauisch\": {\n        \"form\": \"misstrauisch\",\n        \"polarity\": \"-0.3333\",\n        \"pos\": \"JJ\",\n        \"sense\": \"misstrauische,misstrauischem,misstrauischen,misstrauischer,misstrauisches,misstrauischere,misstrauischerem,misstrauischeren,misstrauischerer,misstrauischeres,misstrauischste,misstrauischstem,misstrauischsten,misstrauischster,misstrauischstes\"\n    },\n    \"missverstehen\": {\n        \"form\": \"missverstehen\",\n        \"polarity\": \"-0.3202\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"misten\": {\n        \"form\": \"misten\",\n        \"polarity\": \"-0.1723\",\n        \"pos\": \"VB\",\n        \"sense\": \"miste,mistest,mistet,mistete,mistetest,misteten,mistetet,gemistet\"\n    },\n    \"mittellos\": {\n        \"form\": \"mittellos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mittelloserer,mittelloserem,mittelloseren,mittellosester,mittellosestes,mittellosestem,mittellosesten,mittelloseres,mittelloser,mittelloses,mittellose,mittellosere,mittellosen,mittelloseste,mittellosem\"\n    },\n    \"mittelmäßig\": {\n        \"form\": \"mittelmäßig\",\n        \"polarity\": \"-0.1871\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"monoton\": {\n        \"form\": \"monoton\",\n        \"polarity\": \"-0.0533\",\n        \"pos\": \"JJ\",\n        \"sense\": \"monotonerer,monotoneres,monotonstem,monotonere,monotonsten,monotone,monotonerem,monotonstes,monotoneren,monotonster,monotoner,monotones,monotonste,monotonem,monotonen\"\n    },\n    \"morbid\": {\n        \"form\": \"morbid\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"morbiden,morbidem,morbide,morbideste,morbidestem,morbidesten,morbider,morbides,morbidestes,morbidester,morbidere,morbiderer,morbideren,morbiderem,morbideres\"\n    },\n    \"morden\": {\n        \"form\": \"morden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"morde,gemordet,mordtest,mordete,mordtet,mordetet,mordten,mordet,mordeten,mordetest,mordte,mordest\"\n    },\n    \"murren\": {\n        \"form\": \"murren\",\n        \"polarity\": \"-0.0496\",\n        \"pos\": \"VB\",\n        \"sense\": \"murrtest,murrtet,murre,murrte,murrt,murrst,murrest,gemurrt,murrten,murret\"\n    },\n    \"mutlos\": {\n        \"form\": \"mutlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mutlosem,mutloserem,mutlosen,mutloseren,mutloseres,mutloserer,mutlosere,mutloseste,mutlosestes,mutlosestem,mutlosesten,mutlosester,mutlose,mutloser,mutloses\"\n    },\n    \"mörderisch\": {\n        \"form\": \"mörderisch\",\n        \"polarity\": \"-0.0384\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"müde\": {\n        \"form\": \"müde\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"mühsam\": {\n        \"form\": \"mühsam\",\n        \"polarity\": \"-0.3336\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"mürrisch\": {\n        \"form\": \"mürrisch\",\n        \"polarity\": \"-0.4658\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"nachlassen\": {\n        \"form\": \"nachlassen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"nachlasse,nachlässt,nachläßt,nachlasst,nachlaßt,nachlassest,nachlasset,nachließ,nachließest,nachließt,nachließen,nachließet,nachgelassen\"\n    },\n    \"nachlässig\": {\n        \"form\": \"nachlässig\",\n        \"polarity\": \"-0.3307\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"nachteilig\": {\n        \"form\": \"nachteilig\",\n        \"polarity\": \"-0.3357\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nachteiligster,nachteiligstes,nachteiliger,nachteiligerem,nachteiligen,nachteiligem,nachteiligstem,nachteiligsten,nachteiliges,nachteiligere,nachteilige,nachteiligeren,nachteiligste,nachteiligerer,nachteiligeres\"\n    },\n    \"naiv\": {\n        \"form\": \"naiv\",\n        \"polarity\": \"-0.0675\",\n        \"pos\": \"JJ\",\n        \"sense\": \"naivsten,naivstem,naivster,naiveres,naivstes,naiverer,naivere,naiveren,naiverem,naive,naives,naiver,naivste,naivem,naiven\"\n    },\n    \"negativ\": {\n        \"form\": \"negativ\",\n        \"polarity\": \"-0.4949\",\n        \"pos\": \"JJ\",\n        \"sense\": \"negativste,negativere,negativer,negatives,negativem,negativen,negativerem,negativeren,negativstes,negativster,negativerer,negative,negativeres,negativsten,negativstem\"\n    },\n    \"neidisch\": {\n        \"form\": \"neidisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"neidischerem,neidischeren,neidischstes,neidischeres,neidischere,neidischste,neidischerer,neidische,neidischen,neidischem,neidischster,neidisches,neidischer,neidischstem,neidischsten\"\n    },\n    \"nerven\": {\n        \"form\": \"nerven\",\n        \"polarity\": \"-0.1374\",\n        \"pos\": \"VB\",\n        \"sense\": \"nerve,nervst,nervt,nervest,nervet,nervte,nervtest,nervten,nervtet,genervt\"\n    },\n    \"nervenaufreibend\": {\n        \"form\": \"nervenaufreibend\",\n        \"polarity\": \"-0.0376\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nervenaufreibende,nervenaufreibendstes,nervenaufreibenden,nervenaufreibendem,nervenaufreibender,nervenaufreibendes,nervenaufreibendere,nervenaufreibenderem,nervenaufreibenderen,nervenaufreibenderes,nervenaufreibendster,nervenaufreibendsten,nervenaufreibenderer,nervenaufreibendste,nervenaufreibendstem\"\n    },\n    \"nervig\": {\n        \"form\": \"nervig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nervigerem,nervigeren,nervigste,nerviger,nerviges,nervigem,nervigen,nervigstes,nervigster,nervigsten,nervigstem,nervigere,nervige,nervigeres,nervigerer\"\n    },\n    \"nervös\": {\n        \"form\": \"nervös\",\n        \"polarity\": \"-0.0042\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"neutralisieren\": {\n        \"form\": \"neutralisieren\",\n        \"polarity\": \"-0.1892\",\n        \"pos\": \"VB\",\n        \"sense\": \"neutralisiert,neutralisiertest,neutralisiertet,neutralisierte,neutralisierten,neutralisierst,neutralisieret,neutralisierest,neutralisiere\"\n    },\n    \"niedergeschlagen\": {\n        \"form\": \"niedergeschlagen\",\n        \"polarity\": \"-0.4708\",\n        \"pos\": \"JJ\",\n        \"sense\": \"niedergeschlagener,niedergeschlagenerer,niedergeschlageneres,niedergeschlagenerem,niedergeschlageneren,niedergeschlagenere,niedergeschlagene,niedergeschlagenem,niedergeschlagenen,niedergeschlagenes,niedergeschlagenste,niedergeschlagenster,niedergeschlagenstes,niedergeschlagensten,niedergeschlagenstem\"\n    },\n    \"niedergleitend\": {\n        \"form\": \"niedergleitend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"niedergleitende,niedergleitendem,niedergleitenden,niedergleitender,niedergleitendes,niedergleitendere,niedergleitenderem,niedergleitenderen,niedergleitenderer,niedergleitenderes,niedergleitendste,niedergleitendstem,niedergleitendsten,niedergleitendster,niedergleitendstes\"\n    },\n    \"niederschlagen\": {\n        \"form\": \"niederschlagen\",\n        \"polarity\": \"-0.1871\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"niederschmetternd\": {\n        \"form\": \"niederschmetternd\",\n        \"polarity\": \"-0.0436\",\n        \"pos\": \"JJ\",\n        \"sense\": \"niederschmetternde,niederschmetterndem,niederschmetternden,niederschmetternder,niederschmetterndes,niederschmetterndere,niederschmetternderem,niederschmetternderen,niederschmetternderer,niederschmetternderes,niederschmetterndste,niederschmetterndstem,niederschmetterndsten,niederschmetterndster,niederschmetterndstes\"\n    },\n    \"niederträchtig\": {\n        \"form\": \"niederträchtig\",\n        \"polarity\": \"-0.45\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"niedrig\": {\n        \"form\": \"niedrig\",\n        \"polarity\": \"-0.3623\",\n        \"pos\": \"JJ\",\n        \"sense\": \"niedrige,niedrigster,niedrigeren,niedrigstes,niedrigerem,niedrigstem,niedrigsten,niedriger,niedriges,niedrigste,niedrigere,niedrigen,niedrigem,niedrigeres,niedrigerer\"\n    },\n    \"nutzlos\": {\n        \"form\": \"nutzlos\",\n        \"polarity\": \"-0.485\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nutzlosester,nutzlosestes,nutzlose,nutzloseren,nutzloserem,nutzlosere,nutzloserer,nutzloses,nutzloser,nutzloseres,nutzlosen,nutzlosem,nutzloseste,nutzlosestem,nutzlosesten\"\n    },\n    \"närrisch\": {\n        \"form\": \"närrisch\",\n        \"polarity\": \"-0.0443\",\n        \"pos\": \"JJ\",\n        \"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    },\n    \"nörgeln\": {\n        \"form\": \"nörgeln\",\n        \"polarity\": \"-0.1789\",\n        \"pos\": \"VB\",\n        \"sense\": \"nörgeltet,nörgel,nörgelen,nörgelt,nörgele,nörgelten,nörgle,nörgelte,nörgeltest,nörgelst,genörgelt\"\n    },\n    \"nötigen\": {\n        \"form\": \"nötigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"nötigtet,nötiget,nötige,nötigt,nötigtest,nötigest,genötigt,nötigten,nötigte,nötigst\"\n    },\n    \"oberflächlich\": {\n        \"form\": \"oberflächlich\",\n        \"polarity\": \"-0.1794\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ominös\": {\n        \"form\": \"ominös\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ordnungswidrig\": {\n        \"form\": \"ordnungswidrig\",\n        \"polarity\": \"-0.171\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ordnungswidrigste,ordnungswidrige,ordnungswidrigeres,ordnungswidrigerer,ordnungswidrigere,ordnungswidriger,ordnungswidrigster,ordnungswidriges,ordnungswidrigstes,ordnungswidrigem,ordnungswidrigen,ordnungswidrigeren,ordnungswidrigstem,ordnungswidrigsten,ordnungswidrigerem\"\n    },\n    \"panisch\": {\n        \"form\": \"panisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"panischsten,panische,panischerer,panischeres,panischste,panischstem,panischerem,panischeren,panischster,panischere,panischstes,panischen,panischem,panischer,panisches\"\n    },\n    \"peinlich\": {\n        \"form\": \"peinlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"peinliche,peinlichsten,peinlichstem,peinlichste,peinlichstes,peinlichster,peinlichen,peinlicherem,peinlichem,peinlicheren,peinlicheres,peinlicherer,peinlicher,peinlichere,peinliches\"\n    },\n    \"pessimistisch\": {\n        \"form\": \"pessimistisch\",\n        \"polarity\": \"-0.3359\",\n        \"pos\": \"JJ\",\n        \"sense\": \"pessimistische,pessimistischem,pessimistischen,pessimistischer,pessimistisches,pessimistischere,pessimistischerem,pessimistischeren,pessimistischerer,pessimistischeres,pessimistischste,pessimistischstem,pessimistischsten,pessimistischster,pessimistischstes\"\n    },\n    \"pflichtwidrig\": {\n        \"form\": \"pflichtwidrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"pflichtwidrigstes,pflichtwidrigster,pflichtwidrigere,pflichtwidrigeres,pflichtwidrigstem,pflichtwidrigerer,pflichtwidrigste,pflichtwidrige,pflichtwidrigeren,pflichtwidrigsten,pflichtwidriger,pflichtwidrigerem,pflichtwidrigem,pflichtwidrigen,pflichtwidriges\"\n    },\n    \"pikiert\": {\n        \"form\": \"pikiert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"pikiertester,pikiertestes,pikierte,pikiertere,pikierten,pikiertem,pikiertes,pikierter,pikierteren,pikierterem,pikierteste,pikiertestem,pikiertesten,pikierterer,pikierteres\"\n    },\n    \"planlos\": {\n        \"form\": \"planlos\",\n        \"polarity\": \"-0.1869\",\n        \"pos\": \"JJ\",\n        \"sense\": \"planloseres,planlose,planloserer,planlosem,planloses,planloser,planlosen,planloseren,planlosester,planloserem,planlosestes,planloseste,planlosestem,planlosesten,planlosere\"\n    },\n    \"prekär\": {\n        \"form\": \"prekär\",\n        \"polarity\": \"-0.3272\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"primitiv\": {\n        \"form\": \"primitiv\",\n        \"polarity\": \"-0.7475\",\n        \"pos\": \"JJ\",\n        \"sense\": \"primitive,primitivem,primitiven,primitiver,primitives,primitivere,primitiverem,primitiveren,primitiverer,primitiveres,primitivste,primitivstem,primitivsten,primitivster,primitivstes\"\n    },\n    \"problematisch\": {\n        \"form\": \"problematisch\",\n        \"polarity\": \"-0.3524\",\n        \"pos\": \"JJ\",\n        \"sense\": \"problematische,problematischem,problematischen,problematischer,problematisches,problematischere,problematischerem,problematischeren,problematischerer,problematischeres,problematischste,problematischstem,problematischsten,problematischster,problematischstes\"\n    },\n    \"profan\": {\n        \"form\": \"profan\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"profansten,profaner,profanstes,profane,profanster,profanes,profaneren,profanerem,profanste,profanere,profanerer,profaneres,profanem,profanen,profanstem\"\n    },\n    \"protestieren\": {\n        \"form\": \"protestieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"protestieret,protestiertet,protestiere,protestierte,protestierst,protestiert,protestierten,protestierest,protestiertest\"\n    },\n    \"provisorisch\": {\n        \"form\": \"provisorisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"provisorische,provisorischem,provisorischen,provisorischer,provisorisches,provisorischere,provisorischerem,provisorischeren,provisorischerer,provisorischeres,provisorischste,provisorischstem,provisorischsten,provisorischster,provisorischstes\"\n    },\n    \"provozieren\": {\n        \"form\": \"provozieren\",\n        \"polarity\": \"-0.3369\",\n        \"pos\": \"VB\",\n        \"sense\": \"provozierest,provozieret,provoziertest,provoziertet,provozierte,provozierst,provoziere,provoziert,provozierten\"\n    },\n    \"prügeln\": {\n        \"form\": \"prügeln\",\n        \"polarity\": \"-0.0507\",\n        \"pos\": \"VB\",\n        \"sense\": \"geprügelt,prügelen,prügelte,prügelten,prügele,prügeltest,prügelt,prügel,prügle,prügeltet,prügelst\"\n    },\n    \"qualvoll\": {\n        \"form\": \"qualvoll\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"qualvollstem,qualvollsten,qualvollstes,qualvollster,qualvollere,qualvolleres,qualvollerer,qualvolle,qualvollen,qualvollem,qualvollste,qualvoller,qualvolleren,qualvollerem,qualvolles\"\n    },\n    \"quälen\": {\n        \"form\": \"quälen\",\n        \"polarity\": \"-0.1929\",\n        \"pos\": \"VB\",\n        \"sense\": \"quälest,gequält,quältest,quälet,quälte,quälten,quälst,quäle,quältet,quält\"\n    },\n    \"rabiat\": {\n        \"form\": \"rabiat\",\n        \"polarity\": \"-0.0402\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rabiaterem,rabiateren,rabiaterer,rabiatestes,rabiates,rabiatester,rabiater,rabiatem,rabiateste,rabiateres,rabiaten,rabiatere,rabiatestem,rabiatesten,rabiate\"\n    },\n    \"radikal\": {\n        \"form\": \"radikal\",\n        \"polarity\": \"-0.487\",\n        \"pos\": \"JJ\",\n        \"sense\": \"radikale,radikalem,radikalen,radikaler,radikales,radikalere,radikalerem,radikaleren,radikalerer,radikaleres,radikalste,radikalstem,radikalsten,radikalster,radikalstes\"\n    },\n    \"rammen\": {\n        \"form\": \"rammen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"rammte,ramme,rammten,rammt,gerammt,rammtest,rammest,rammst,rammet,rammtet\"\n    },\n    \"ramponieren\": {\n        \"form\": \"ramponieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ramponierest,ramponiertest,ramponiere,ramponiert,ramponiertet,ramponierst,ramponieret,ramponierte,ramponierten\"\n    },\n    \"rasend\": {\n        \"form\": \"rasend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rasenderen,rasenderem,rasendem,rasendste,rasendes,rasende,rasender,rasenderer,rasenderes,rasenden,rasendster,rasendstes,rasendere,rasendstem,rasendsten\"\n    },\n    \"rauh\": {\n        \"form\": \"rauh\",\n        \"polarity\": \"-0.0286\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rauhste,rauhe,rauhstem,rauhere,rauhsten,rauhes,rauhestem,rauhesten,rauhst,rauheste,rauhester,rauheres,rauherer,rauhestes,rauheren,rauher,rauhstes,rauherem,rauhster,rauhem,rauhen\"\n    },\n    \"rausgeschmissen\": {\n        \"form\": \"rausgeschmissen\",\n        \"polarity\": \"-0.1863\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rausgeschmissene,rausgeschmissenem,rausgeschmissenen,rausgeschmissener,rausgeschmissenes,rausgeschmissenere,rausgeschmissenerem,rausgeschmisseneren,rausgeschmissenerer,rausgeschmisseneres,rausgeschmissenste,rausgeschmissenstem,rausgeschmissensten,rausgeschmissenster,rausgeschmissenstes\"\n    },\n    \"rebellisch\": {\n        \"form\": \"rebellisch\",\n        \"polarity\": \"-0.1706\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rebellischere,rebellischster,rebellischerer,rebellisches,rebellischer,rebellischerem,rebellischeren,rebellischstes,rebellischstem,rebellischsten,rebellischem,rebellischeres,rebellischen,rebellische,rebellischste\"\n    },\n    \"rechthaberisch\": {\n        \"form\": \"rechthaberisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rechthaberischere,rechthaberischem,rechthaberischen,rechthaberische,rechthaberischer,rechthaberisches,rechthaberischerem,rechthaberischeren,rechthaberischste,rechthaberischster,rechthaberischstem,rechthaberischsten,rechthaberischerer,rechthaberischstes,rechthaberischeres\"\n    },\n    \"rechtswidrig\": {\n        \"form\": \"rechtswidrig\",\n        \"polarity\": \"-0.3406\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rechtswidrigere,rechtswidrigerem,rechtswidrigstem,rechtswidrigsten,rechtswidrigeren,rechtswidrigen,rechtswidrigem,rechtswidrigerer,rechtswidrigste,rechtswidrige,rechtswidriger,rechtswidriges,rechtswidrigeres,rechtswidrigstes,rechtswidrigster\"\n    },\n    \"reduzieren\": {\n        \"form\": \"reduzieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"reduzierest,reduziere,reduziert,reduzierst,reduzierte,reduziertet,reduzierten,reduzieret,reduziertest\"\n    },\n    \"renitent\": {\n        \"form\": \"renitent\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"renitenten,renitenterem,renitenteren,renitentem,renitenterer,renitenteste,renitente,renitentestem,renitentesten,renitentestes,renitentere,renitentester,renitentes,renitenter,renitenteres\"\n    },\n    \"repetiv\": {\n        \"form\": \"repetiv\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"repetive,repetivem,repetiven,repetiver,repetives,repetivere,repetiverem,repetiveren,repetiverer,repetiveres,repetivste,repetivstem,repetivsten,repetivster,repetivstes\"\n    },\n    \"riskant\": {\n        \"form\": \"riskant\",\n        \"polarity\": \"-0.0482\",\n        \"pos\": \"JJ\",\n        \"sense\": \"riskantestem,riskantesten,riskanteren,riskantes,riskantestes,riskanter,riskanterem,riskantester,riskanteste,riskanten,riskantem,riskante,riskanterer,riskanteres,riskantere\"\n    },\n    \"riskieren\": {\n        \"form\": \"riskieren\",\n        \"polarity\": \"-0.3328\",\n        \"pos\": \"VB\",\n        \"sense\": \"riskierest,riskierten,riskierte,riskierst,riskiertest,riskiere,riskiert,riskieret,riskiertet\"\n    },\n    \"rosten\": {\n        \"form\": \"rosten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"roste,rostest,gerostet,rosteten,rostet,rostetet,rostete,rostetest\"\n    },\n    \"ruchlos\": {\n        \"form\": \"ruchlos\",\n        \"polarity\": \"-0.037\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ruchloseres,ruchloserer,ruchlosere,ruchlosem,ruchlosen,ruchlosester,ruchlosestes,ruchloserem,ruchloser,ruchloses,ruchloseren,ruchlose,ruchloseste,ruchlosestem,ruchlosesten\"\n    },\n    \"ruckeln\": {\n        \"form\": \"ruckeln\",\n        \"polarity\": \"-0.0387\",\n        \"pos\": \"VB\",\n        \"sense\": \"ruckele,ruckle,ruckelst,ruckelt,rucklest,rucklet,ruckelte,ruckeltest,ruckelten,ruckeltet,geruckelt\"\n    },\n    \"ruinös\": {\n        \"form\": \"ruinös\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ruppig\": {\n        \"form\": \"ruppig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ruppigere,ruppigste,ruppigstes,ruppigem,ruppigeren,ruppigerem,ruppigster,ruppigen,ruppiges,ruppigstem,ruppigsten,ruppige,ruppiger,ruppigeres,ruppigerer\"\n    },\n    \"rutschen\": {\n        \"form\": \"rutschen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"rutscht,rutschet,rutsche,rutschten,rutschte,rutschtest,rutschst,rutschtet,rutschest,gerutscht\"\n    },\n    \"rächen\": {\n        \"form\": \"rächen\",\n        \"polarity\": \"-0.3489\",\n        \"pos\": \"VB\",\n        \"sense\": \"rächtet,rächtest,räche,räch,rächten,rächst,rächet,rächte,gerächt,rächest\"\n    },\n    \"rückläufig\": {\n        \"form\": \"rückläufig\",\n        \"polarity\": \"-0.0544\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"rücksichtslos\": {\n        \"form\": \"rücksichtslos\",\n        \"polarity\": \"-0.4754\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"rückständig\": {\n        \"form\": \"rückständig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"rückwärts\": {\n        \"form\": \"rückwärts\",\n        \"polarity\": \"-0.3496\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"rüde\": {\n        \"form\": \"rüde\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sabotieren\": {\n        \"form\": \"sabotieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"sabotiert,sabotiertest,sabotiertet,sabotieret,sabotierten,sabotierst,sabotierte,sabotierest,sabotiere\"\n    },\n    \"sauer\": {\n        \"form\": \"sauer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sauerstem,sauerste,sauersten,saurere,sauren,saurem,sauerster,saurerer,sauerstes,saureres,saurer,saurerem,saures,saure,saureren\"\n    },\n    \"schade\": {\n        \"form\": \"schade\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"schadhaft\": {\n        \"form\": \"schadhaft\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schadhaftem,schadhafteste,schadhaften,schadhaftere,schadhafteren,schadhafte,schadhafteres,schadhafter,schadhafterer,schadhafterem,schadhaftestem,schadhaftesten,schadhaftestes,schadhaftester,schadhaftes\"\n    },\n    \"schal\": {\n        \"form\": \"schal\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schale,schalstem,schalsten,schaler,schalere,schales,schaleren,schalerem,schalen,schalster,schalem,schalerer,schalste,schalstes,schaleres\"\n    },\n    \"schamlos\": {\n        \"form\": \"schamlos\",\n        \"polarity\": \"-0.3332\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schamloser,schamloserem,schamlosestes,schamloseren,schamloses,schamloseres,schamlosere,schamloserer,schamlosesten,schamlosestem,schamlosen,schamlosem,schamlosester,schamlose,schamloseste\"\n    },\n    \"schauerlich\": {\n        \"form\": \"schauerlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schauerlichsten,schauerlicher,schauerlicheres,schauerliches,schauerlichstem,schauerlicherer,schauerliche,schauerlicherem,schauerlicheren,schauerlichem,schauerlichster,schauerlichen,schauerlichstes,schauerlichste,schauerlichere\"\n    },\n    \"schaurig\": {\n        \"form\": \"schaurig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schaurigstes,schaurigster,schauriges,schauriger,schaurige,schaurigeres,schaurigerer,schaurigerem,schaurigste,schaurigeren,schaurigere,schaurigsten,schaurigem,schaurigen,schaurigstem\"\n    },\n    \"scheiden\": {\n        \"form\": \"scheiden\",\n        \"polarity\": \"-0.0557\",\n        \"pos\": \"VB\",\n        \"sense\": \"scheide,scheidest,scheidet,schied,schiedest,schiedst,schieden,schiedet,geschieden\"\n    },\n    \"scheiss\": {\n        \"form\": \"scheiss\",\n        \"polarity\": \"-0.1838\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"scheisse\": {\n        \"form\": \"scheisse\",\n        \"polarity\": \"-0.0226\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"scheiß\": {\n        \"form\": \"scheiß\",\n        \"polarity\": \"-0.3381\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"scheiße\": {\n        \"form\": \"scheiße\",\n        \"polarity\": \"-0.2945\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"schelten\": {\n        \"form\": \"schelten\",\n        \"polarity\": \"-0.3143\",\n        \"pos\": \"VB\",\n        \"sense\": \"schelte,schilst,schilt,scheltet,scheltest,schalt,schaltest,schaltst,schalten,schaltet,schölte,schöltest,schölten,schöltet,gescholten\"\n    },\n    \"scheusslich\": {\n        \"form\": \"scheusslich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"scheussliche,scheusslichem,scheusslichen,scheusslicher,scheussliches,scheusslichere,scheusslicherem,scheusslicheren,scheusslicherer,scheusslicheres,scheusslichste,scheusslichstem,scheusslichsten,scheusslichster,scheusslichstes\"\n    },\n    \"scheußlich\": {\n        \"form\": \"scheußlich\",\n        \"polarity\": \"-0.1834\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schimmelig\": {\n        \"form\": \"schimmelig\",\n        \"polarity\": \"-0.304\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schimmelige,schimmeligem,schimmeligen,schimmeliger,schimmeliges,schimmeligere,schimmeligerem,schimmeligeren,schimmeligerer,schimmeligeres,schimmeligste,schimmeligstem,schimmeligsten,schimmeligster,schimmeligstes\"\n    },\n    \"schimmlig\": {\n        \"form\": \"schimmlig\",\n        \"polarity\": \"-0.304\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schimmlige,schimmligem,schimmligen,schimmliger,schimmliges,schimmligere,schimmligerem,schimmligeren,schimmligerer,schimmligeres,schimmligste,schimmligstem,schimmligsten,schimmligster,schimmligstes\"\n    },\n    \"schimpfend\": {\n        \"form\": \"schimpfend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schimpfende,schimpfendem,schimpfenden,schimpfender,schimpfendes,schimpfendere,schimpfenderem,schimpfenderen,schimpfenderer,schimpfenderes,schimpfendste,schimpfendstem,schimpfendsten,schimpfendster,schimpfendstes\"\n    },\n    \"schlaff\": {\n        \"form\": \"schlaff\",\n        \"polarity\": \"-0.0472\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlaffem,schlaffen,schlaffste,schlaffes,schlaffer,schlaffstem,schlaffsten,schlaffe,schlafferer,schlafferem,schlafferen,schlaffstes,schlaffere,schlafferes,schlaffster\"\n    },\n    \"schlagen\": {\n        \"form\": \"schlagen\",\n        \"polarity\": \"-0.0306\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"schlapp\": {\n        \"form\": \"schlapp\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlappstes,schlappster,schlappere,schlappsten,schlappstem,schlappe,schlapperen,schlapperem,schlappste,schlappem,schlappen,schlapperer,schlapperes,schlapper,schlappes\"\n    },\n    \"schlecht\": {\n        \"form\": \"schlecht\",\n        \"polarity\": \"-0.7706\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlechtem,schlechten,schlechteste,schlechtes,schlechte,schlechter,schlechteren,schlechterem,schlechtesten,schlechtestem,schlechtere,schlechtester,schlechteres,schlechterer,schlechtestes\"\n    },\n    \"schleppend\": {\n        \"form\": \"schleppend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schleppendster,schleppende,schleppendstes,schleppenderes,schleppenderer,schleppendstem,schleppendsten,schleppenderem,schleppenderen,schleppendste,schleppendere,schleppendes,schleppender,schleppendem,schleppenden\"\n    },\n    \"schlicht\": {\n        \"form\": \"schlicht\",\n        \"polarity\": \"-0.623\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlichtes,schlichtere,schlichtem,schlichten,schlichterem,schlichter,schlichtesten,schlichteres,schlichte,schlichterer,schlichtestem,schlichteren,schlichtester,schlichteste,schlichtestes\"\n    },\n    \"schließen\": {\n        \"form\": \"schließen\",\n        \"polarity\": \"-0.211\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"schlimm\": {\n        \"form\": \"schlimm\",\n        \"polarity\": \"-0.1705\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlimmste,schlimmstem,schlimmsten,schlimmer,schlimmes,schlimmerer,schlimmeren,schlimmerem,schlimmere,schlimmeres,schlimme,schlimmen,schlimmster,schlimmem,schlimmstes\"\n    },\n    \"schlimmer\": {\n        \"form\": \"schlimmer\",\n        \"polarity\": \"-0.6494\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"schlotterig\": {\n        \"form\": \"schlotterig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlotterige,schlotterigem,schlotterigen,schlotteriger,schlotteriges,schlotterigere,schlotterigerem,schlotterigeren,schlotterigerer,schlotterigeres,schlotterigste,schlotterigstem,schlotterigsten,schlotterigster,schlotterigstes\"\n    },\n    \"schlottern\": {\n        \"form\": \"schlottern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"schlotterten,schlotterst,schlotterte,schlotteren,schlottert,geschlottert,schlottertest,schlottere,schlottertet\"\n    },\n    \"schmerzen\": {\n        \"form\": \"schmerzen\",\n        \"polarity\": \"-0.3251\",\n        \"pos\": \"VB\",\n        \"sense\": \"schmerzten,schmerztet,schmerzet,schmerztest,schmerzte,geschmerzt,schmerzt,schmerze,schmerzest\"\n    },\n    \"schmerzerfüllt\": {\n        \"form\": \"schmerzerfüllt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schmerzhaft\": {\n        \"form\": \"schmerzhaft\",\n        \"polarity\": \"-0.3182\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmerzhaftestes,schmerzhaftester,schmerzhaftere,schmerzhaftesten,schmerzhafte,schmerzhafterem,schmerzhaften,schmerzhafteren,schmerzhaftes,schmerzhafter,schmerzhafteste,schmerzhaftestem,schmerzhafterer,schmerzhaftem,schmerzhafteres\"\n    },\n    \"schmerzlich\": {\n        \"form\": \"schmerzlich\",\n        \"polarity\": \"-0.0516\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmerzlicheren,schmerzlichstem,schmerzlichem,schmerzlichen,schmerzlicherer,schmerzlicheres,schmerzlichsten,schmerzlicher,schmerzliches,schmerzlichstes,schmerzlichster,schmerzlichste,schmerzliche,schmerzlicherem,schmerzlichere\"\n    },\n    \"schmerzvoll\": {\n        \"form\": \"schmerzvoll\",\n        \"polarity\": \"-0.0428\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmerzvolle,schmerzvollstem,schmerzvollsten,schmerzvollste,schmerzvollster,schmerzvollerem,schmerzvolleren,schmerzvollstes,schmerzvolleres,schmerzvoller,schmerzvolles,schmerzvollem,schmerzvollen,schmerzvollere,schmerzvollerer\"\n    },\n    \"schmuggeln\": {\n        \"form\": \"schmuggeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"schmuggeltest,schmuggelte,schmuggle,schmuggelst,schmuggeltet,schmuggelen,schmuggel,schmuggelt,schmuggelten,schmuggele,geschmuggelt\"\n    },\n    \"schmutzig\": {\n        \"form\": \"schmutzig\",\n        \"polarity\": \"-0.2984\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmutzigeren,schmutzigstes,schmutzigster,schmutzigerem,schmutzigerer,schmutzigeres,schmutzigen,schmutzigem,schmutziges,schmutzige,schmutzigste,schmutziger,schmutzigstem,schmutzigsten,schmutzigere\"\n    },\n    \"schocken\": {\n        \"form\": \"schocken\",\n        \"polarity\": \"-0.0396\",\n        \"pos\": \"VB\",\n        \"sense\": \"schockest,schockst,schockte,schocket,schocktet,schocktest,schockten,schocke,schockt,geschockt\"\n    },\n    \"schockierend\": {\n        \"form\": \"schockierend\",\n        \"polarity\": \"-0.1933\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schockierende,schockierendem,schockierenden,schockierender,schockierendes,schockierendere,schockierenderem,schockierenderen,schockierenderer,schockierenderes,schockierendste,schockierendstem,schockierendsten,schockierendster,schockierendstes\"\n    },\n    \"schonungslos\": {\n        \"form\": \"schonungslos\",\n        \"polarity\": \"-0.461\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schonungsloseste,schonungslosere,schonungsloser,schonungsloserem,schonungsloseren,schonungslosestem,schonungslosesten,schonungsloses,schonungsloserer,schonungslosester,schonungslose,schonungsloseres,schonungslosem,schonungslosestes,schonungslosen\"\n    },\n    \"schrecklich\": {\n        \"form\": \"schrecklich\",\n        \"polarity\": \"-0.0242\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schrecklicheres,schreckliche,schreckliches,schrecklicher,schrecklichere,schrecklichstem,schrecklichsten,schrecklichster,schrecklichste,schrecklichstes,schrecklicheren,schrecklicherem,schrecklichem,schrecklicherer,schrecklichen\"\n    },\n    \"schrumpfen\": {\n        \"form\": \"schrumpfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"schrumpfst,schrumpfte,schrumpfest,schrumpft,schrumpften,schrumpftest,schrumpftet,schrumpfe,schrumpfet,geschrumpft\"\n    },\n    \"schubsen\": {\n        \"form\": \"schubsen\",\n        \"polarity\": \"-0.1756\",\n        \"pos\": \"VB\",\n        \"sense\": \"schubsten,schubset,geschubst,schubse,schubst,schubstet,schubstest,schubste,schubsest\"\n    },\n    \"schuftig\": {\n        \"form\": \"schuftig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schuftiger,schuftigstes,schuftiges,schuftige,schuftigen,schuftigere,schuftigste,schuftigem,schuftigsten,schuftigstem,schuftigerem,schuftigeren,schuftigster,schuftigerer,schuftigeres\"\n    },\n    \"schulden\": {\n        \"form\": \"schulden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"schuldet,schuldeten,schuldten,geschuldet,schuldetest,schuldtest,schuldtet,schuldete,schulde,schuldte,schuldetet,schuldest\"\n    },\n    \"schuldhaft\": {\n        \"form\": \"schuldhaft\",\n        \"polarity\": \"-0.3346\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schuldhaftester,schuldhafteste,schuldhaftestem,schuldhaftesten,schuldhaftestes,schuldhafteren,schuldhafterem,schuldhafterer,schuldhafteres,schuldhaften,schuldhaftem,schuldhaftere,schuldhaftes,schuldhafter,schuldhafte\"\n    },\n    \"schuldig\": {\n        \"form\": \"schuldig\",\n        \"polarity\": \"-0.7968\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schuldigster,schuldigstes,schuldigste,schuldiges,schuldiger,schuldigen,schuldigeren,schuldigerem,schuldige,schuldigem,schuldigeres,schuldigerer,schuldigstem,schuldigsten,schuldigere\"\n    },\n    \"schwach\": {\n        \"form\": \"schwach\",\n        \"polarity\": \"-0.9206\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schwer\": {\n        \"form\": \"schwer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schwerstes,schwerster,schwere,schwerste,schwerstem,schwersten,schweren,schwerem,schwerere,schwereres,schwererer,schwerer,schwererem,schwereren,schweres\"\n    },\n    \"schwerfällig\": {\n        \"form\": \"schwerfällig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schwerwiegend\": {\n        \"form\": \"schwerwiegend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schwerwiegenderem,schwerwiegenderen,schwerwiegendstem,schwerwiegendsten,schwerwiegenderer,schwerwiegendere,schwerwiegenderes,schwerwiegendstes,schwerwiegende,schwerwiegendster,schwerwiegenden,schwerwiegendem,schwerwiegendste,schwerwiegender,schwerwiegendes\"\n    },\n    \"schwierig\": {\n        \"form\": \"schwierig\",\n        \"polarity\": \"-0.0245\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schwierigen,schwierigem,schwierigstem,schwierigsten,schwierigerer,schwierigerem,schwierigeren,schwierige,schwierigster,schwierigste,schwierigere,schwierigstes,schwierigeres,schwieriges,schwieriger\"\n    },\n    \"schwinden\": {\n        \"form\": \"schwinden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"schwinde,schwindest,schwindet,schwand,schwandest,schwandst,schwanden,schwandet,schwände,schwändest,schwänden,schwändet,geschwunden\"\n    },\n    \"schwindlig\": {\n        \"form\": \"schwindlig\",\n        \"polarity\": \"-0.0512\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schwindligste,schwindlige,schwindliges,schwindligeren,schwindligen,schwindligem,schwindligerer,schwindligere,schwindligeres,schwindliger,schwindligstem,schwindligsten,schwindligerem,schwindligster,schwindligst,schwindligstes\"\n    },\n    \"schwächen\": {\n        \"form\": \"schwächen\",\n        \"polarity\": \"-0.3372\",\n        \"pos\": \"VB\",\n        \"sense\": \"schwächest,schwächten,schwächet,schwächtest,schwächtet,schwächt,schwächst,schwächte,schwäche,geschwächt\"\n    },\n    \"schwächlich\": {\n        \"form\": \"schwächlich\",\n        \"polarity\": \"-0.3167\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schäbig\": {\n        \"form\": \"schäbig\",\n        \"polarity\": \"-0.0421\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schädigend\": {\n        \"form\": \"schädigend\",\n        \"polarity\": \"-0.1779\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schädigende,schädigendem,schädigenden,schädigender,schädigendes,schädigendere\"\n    },\n    \"schädigen\": {\n        \"form\": \"schädigen\",\n        \"polarity\": \"-0.3284\",\n        \"pos\": \"VB\",\n        \"sense\": \"schädige,schädigst,schädigt,schädigest,schädiget,schädigte,schädigtest,schädigten,schädigtet,geschädigt\"\n    },\n    \"schädlich\": {\n        \"form\": \"schädlich\",\n        \"polarity\": \"-0.9269\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schämen\": {\n        \"form\": \"schämen\",\n        \"polarity\": \"-0.893\",\n        \"pos\": \"VB\",\n        \"sense\": \"schämt,geschämt,schämtest,schämest,schämten,schämet,schämst,schäme,schämte,schämtet\"\n    },\n    \"seicht\": {\n        \"form\": \"seicht\",\n        \"polarity\": \"-0.1742\",\n        \"pos\": \"JJ\",\n        \"sense\": \"seichteste,seichteres,seichterer,seichteren,seichten,seichtere,seichtem,seichterem,seichtestem,seichtesten,seichtes,seichter,seichte,seichtester,seichtestes\"\n    },\n    \"seltsam\": {\n        \"form\": \"seltsam\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"seltsame,seltsamerem,seltsameren,seltsamstem,seltsamsten,seltsamerer,seltsames,seltsamer,seltsamste,seltsamen,seltsamem,seltsamster,seltsamere,seltsameres,seltsamstes\"\n    },\n    \"senken\": {\n        \"form\": \"senken\",\n        \"polarity\": \"-0.0596\",\n        \"pos\": \"VB\",\n        \"sense\": \"senke,senket,senkest,senktet,senktest,senkt,senkte,gesenkt,senkten,senkst\"\n    },\n    \"sinken\": {\n        \"form\": \"sinken\",\n        \"polarity\": \"-0.2064\",\n        \"pos\": \"VB\",\n        \"sense\": \"sinke,sinkst,sinkt,sinkest,sinket,sank,sankst,sanken,sankt,sänke,sänkest,sänkst,sänken,sänket,sänkt,gesunken\"\n    },\n    \"sinnlos\": {\n        \"form\": \"sinnlos\",\n        \"polarity\": \"-0.6331\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sinnloseste,sinnlosere,sinnloserem,sinnloses,sinnloser,sinnlose,sinnlosen,sinnlosem,sinnlosestes,sinnlosester,sinnlosestem,sinnlosesten,sinnloseren,sinnloseres,sinnloserer\"\n    },\n    \"skandalös\": {\n        \"form\": \"skandalös\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"skeptisch\": {\n        \"form\": \"skeptisch\",\n        \"polarity\": \"-0.1985\",\n        \"pos\": \"JJ\",\n        \"sense\": \"skeptischem,skeptischen,skeptisches,skeptischer,skeptischstes,skeptischster,skeptischeren,skeptischstem,skeptischsten,skeptischerem,skeptischere,skeptischerer,skeptischeres,skeptische,skeptischste\"\n    },\n    \"skrupellos\": {\n        \"form\": \"skrupellos\",\n        \"polarity\": \"-0.1814\",\n        \"pos\": \"JJ\",\n        \"sense\": \"skrupellosestem,skrupellosesten,skrupelloser,skrupellosester,skrupellose,skrupelloses,skrupelloserer,skrupelloseres,skrupelloserem,skrupelloseren,skrupelloseste,skrupellosere,skrupellosem,skrupellosestes,skrupellosen\"\n    },\n    \"sorgen\": {\n        \"form\": \"sorgen\",\n        \"polarity\": \"0.2234\",\n        \"pos\": \"VB\",\n        \"sense\": \"sorgte,sorgst,sorgten,sorgt,gesorgt,sorgtet,sorgtest,sorg,sorget,sorgest,sorge,sorgend\"\n    },\n    \"sorgenschwer\": {\n        \"form\": \"sorgenschwer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sorgenschwere,sorgenschwereren,sorgenschwerster,sorgenschwerstes,sorgenschwersten,sorgenschwererem,sorgenschwerere,sorgenschwerer,sorgenschwerste,sorgenschweres,sorgenschwerem,sorgenschweren,sorgenschwerstem,sorgenschwererer,sorgenschwereres\"\n    },\n    \"sprengen\": {\n        \"form\": \"sprengen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"sprengt,sprengest,sprenget,sprengten,sprengst,sprengte,sprengtet,sprengtest,sprenge,gesprengt\"\n    },\n    \"spröde\": {\n        \"form\": \"spröde\",\n        \"polarity\": \"-0.038\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"stagnieren\": {\n        \"form\": \"stagnieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"stagniere,stagnierst,stagniert,stagnierest,stagnieret,stagnierte,stagniertest,stagnierten,stagniertet\"\n    },\n    \"starr\": {\n        \"form\": \"starr\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"starre,starrerer,starreres,starrere,starrerem,starreren,starrsten,starrste,starrstem,starrstes,starrster,starres,starrer,starrem,starren\"\n    },\n    \"statisch\": {\n        \"form\": \"statisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"statischere,statische,statischem,statischsten,statischste,statischstem,statischen,statischster,statischstes,statischer,statisches,statischeres,statischerer,statischerem,statischeren\"\n    },\n    \"stehlen\": {\n        \"form\": \"stehlen\",\n        \"polarity\": \"-0.4944\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"stilllegen\": {\n        \"form\": \"stilllegen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"stilllegte,stilllegst,stillleget,stilllegten,stilllegest,stillgelegt,stilllegt,stilllege,stilllegtet,stilllegtest\"\n    },\n    \"stillstehen\": {\n        \"form\": \"stillstehen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"stinken\": {\n        \"form\": \"stinken\",\n        \"polarity\": \"-0.1634\",\n        \"pos\": \"VB\",\n        \"sense\": \"stinke,stinkst,stinkt,stinkest,stinket,stank,stankst,stanken,stankt,stänke,stänkest,stänkst,stänken,stänket,stänkt\"\n    },\n    \"stocken\": {\n        \"form\": \"stocken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"stocktest,stocktet,stockest,stockte,stockst,stocket,stockten,stockt,stocke,gestockt\"\n    },\n    \"stornieren\": {\n        \"form\": \"stornieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"storniertet,storniere,stornierten,storniert,storniertest,stornierst,stornierte,stornieret,stornierest\"\n    },\n    \"stottern\": {\n        \"form\": \"stottern\",\n        \"polarity\": \"-0.0435\",\n        \"pos\": \"VB\",\n        \"sense\": \"stottertest,gestottert,stotterten,stotterst,stotteren,stottertet,stotterte,stottere,stottert\"\n    },\n    \"stoßen\": {\n        \"form\": \"stoßen\",\n        \"polarity\": \"-0.3563\",\n        \"pos\": \"VB\",\n        \"sense\": \"stoße,stößt,stoßt,stoßest,stoßet,stieß,stießest,stießt,stießen,stießet,gestoßen\"\n    },\n    \"strafbar\": {\n        \"form\": \"strafbar\",\n        \"polarity\": \"-0.3468\",\n        \"pos\": \"JJ\",\n        \"sense\": \"strafbarster,strafbarere,strafbarstes,strafbarste,strafbarstem,strafbarsten,strafbare,strafbarerem,strafbareren,strafbaren,strafbarem,strafbarerer,strafbarer,strafbareres,strafbares\"\n    },\n    \"streiken\": {\n        \"form\": \"streiken\",\n        \"polarity\": \"-0.044\",\n        \"pos\": \"VB\",\n        \"sense\": \"streikten,streikst,streiket,streikte,streikest,streiktet,streiktest,streikt,streike,gestreikt\"\n    },\n    \"streiten\": {\n        \"form\": \"streiten\",\n        \"polarity\": \"-0.0302\",\n        \"pos\": \"VB\",\n        \"sense\": \"streite,streitest,streitet,stritt,strittest,stritten,strittet,stritte,gestritten\"\n    },\n    \"streng\": {\n        \"form\": \"streng\",\n        \"polarity\": \"-0.3571\",\n        \"pos\": \"JJ\",\n        \"sense\": \"strenge,strengem,strengen,strenger,strenges,strengere,strengerem,strengeren,strengerer,strengeres,strengste,strengstem,strengsten,strengster,strengstes\"\n    },\n    \"strittig\": {\n        \"form\": \"strittig\",\n        \"polarity\": \"-0.3249\",\n        \"pos\": \"JJ\",\n        \"sense\": \"strittige,strittigem,strittigen,strittiger,strittiges,strittigere,strittigerem,strittigeren,strittigerer,strittigeres,strittigste,strittigstem,strittigsten,strittigster,strittigstes\"\n    },\n    \"stumpfsinnig\": {\n        \"form\": \"stumpfsinnig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stumpfsinnigstem,stumpfsinnigsten,stumpfsinniges,stumpfsinniger,stumpfsinnige,stumpfsinnigerem,stumpfsinnigeren,stumpfsinnigeres,stumpfsinnigerer,stumpfsinnigem,stumpfsinnigste,stumpfsinnigster,stumpfsinnigere,stumpfsinnigen,stumpfsinnigstes\"\n    },\n    \"stupide\": {\n        \"form\": \"stupide\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stupidesten,stupidester,stupidestes,stupidestem,stupideerem,stupideen,stupideeren,stupideem,stupideere,stupideer,stupideerer,stupideeres,stupidee,stupideste,stupidees\"\n    },\n    \"stur\": {\n        \"form\": \"stur\",\n        \"polarity\": \"-0.1837\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stursten,sturster,sturstes,sture,sturstem,stureres,sturer,sturerer,sturere,sturste,stures,sturerem,sturem,sturen,stureren\"\n    },\n    \"stören\": {\n        \"form\": \"stören\",\n        \"polarity\": \"-0.333\",\n        \"pos\": \"VB\",\n        \"sense\": \"störten,gestört,störtet,stört,störst,störte,störe,störet,störest,störtest\"\n    },\n    \"stümperhaft\": {\n        \"form\": \"stümperhaft\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"stürmisch\": {\n        \"form\": \"stürmisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"stürzen\": {\n        \"form\": \"stürzen\",\n        \"polarity\": \"-0.1975\",\n        \"pos\": \"VB\",\n        \"sense\": \"stürze,stürzt,stürzet,gestürzt,stürzest,stürztet,stürzte,stürztest,stürzten\"\n    },\n    \"suboptimal\": {\n        \"form\": \"suboptimal\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"suboptimale,suboptimalem,suboptimalen,suboptimaler,suboptimales,suboptimalere,suboptimalerem,suboptimaleren,suboptimalerer,suboptimaleres,suboptimalste,suboptimalstem,suboptimalsten,suboptimalster,suboptimalstes\"\n    },\n    \"tadeln\": {\n        \"form\": \"tadeln\",\n        \"polarity\": \"-0.3234\",\n        \"pos\": \"VB\",\n        \"sense\": \"tadele,tadle,tadelst,tadelt,tadlest,tadlet,tadelte,tadeltest,tadelten,tadeltet,getadelt\"\n    },\n    \"tadelnswert\": {\n        \"form\": \"tadelnswert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tadelnswerte,tadelnswertem,tadelnswerten,tadelnswerter,tadelnswertes\"\n    },\n    \"tatenlos\": {\n        \"form\": \"tatenlos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tatenloseste,tatenlose,tatenlosestes,tatenloseres,tatenlosester,tatenloserer,tatenlosestem,tatenlosesten,tatenlosere,tatenloser,tatenloses,tatenlosen,tatenloserem,tatenlosem,tatenloseren\"\n    },\n    \"terrorisieren\": {\n        \"form\": \"terrorisieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"terrorisierst,terrorisierest,terrorisierte,terrorisierten,terrorisiere,terrorisiert,terrorisiertet,terrorisieret,terrorisiertest\"\n    },\n    \"teuer\": {\n        \"form\": \"teuer\",\n        \"polarity\": \"-0.2716\",\n        \"pos\": \"JJ\",\n        \"sense\": \"teuren,teurem,teure,teurerer,teuerstes,teureres,teureren,teures,teurer,teurerem,teurere,teuerste,teuerster,teuersten,teuerstem\"\n    },\n    \"teuflisch\": {\n        \"form\": \"teuflisch\",\n        \"polarity\": \"-0.1677\",\n        \"pos\": \"JJ\",\n        \"sense\": \"teuflische,teuflischem,teuflischen,teuflischer,teuflisches,teuflischere,teuflischerem,teuflischeren,teuflischerer,teuflischeres,teuflischste,teuflischstem,teuflischsten,teuflischster,teuflischstes\"\n    },\n    \"tot\": {\n        \"form\": \"tot\",\n        \"polarity\": \"-0.1683\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tote,totem,toten,toter,totes\"\n    },\n    \"totalitär\": {\n        \"form\": \"totalitär\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"tragisch\": {\n        \"form\": \"tragisch\",\n        \"polarity\": \"-0.1847\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tragische,tragischem,tragischen,tragischer,tragisches,tragischere,tragischerem,tragischeren,tragischerer,tragischeres,tragischste,tragischstem,tragischsten,tragischster,tragischstes\"\n    },\n    \"trauern\": {\n        \"form\": \"trauern\",\n        \"polarity\": \"-0.1945\",\n        \"pos\": \"VB\",\n        \"sense\": \"trauertet,trauerte,trauer,trauerst,trauertest,getrauert,trauerten,traueren,trauere,trauert\"\n    },\n    \"traumatisch\": {\n        \"form\": \"traumatisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"traumatischste,traumatische,traumatischeres,traumatischerer,traumatischeren,traumatischerem,traumatischster,traumatisches,traumatischer,traumatischstes,traumatischen,traumatischem,traumatischsten,traumatischere,traumatischstem\"\n    },\n    \"traumatisieren\": {\n        \"form\": \"traumatisieren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"traumatisiere,traumatisierst,traumatisiert,traumatisierest,traumatisiret,traumatisierte,traumatisiertest,traumatisierten,traumatisiertet\"\n    },\n    \"traurig\": {\n        \"form\": \"traurig\",\n        \"polarity\": \"-0.1266\",\n        \"pos\": \"JJ\",\n        \"sense\": \"traurige,traurigem,traurigen,trauriger,trauriges,traurigere,traurigerem,traurigeren,traurigerer,traurigeres,traurigste,traurigstem,traurigsten,traurigster,traurigstes\"\n    },\n    \"trennen\": {\n        \"form\": \"trennen\",\n        \"polarity\": \"-0.5033\",\n        \"pos\": \"VB\",\n        \"sense\": \"trennst,trennten,trennte,trenntest,trennt,trenne,trennet,trennest,trenntet,getrennt\"\n    },\n    \"trist\": {\n        \"form\": \"trist\",\n        \"polarity\": \"-0.0424\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tristeren,tristerem,tristestes,tristeres,tristerer,tristesten,tristestem,tristester,tristeste,tristere,triste,tristen,tristem,tristes,trister\"\n    },\n    \"trostlos\": {\n        \"form\": \"trostlos\",\n        \"polarity\": \"-0.0467\",\n        \"pos\": \"JJ\",\n        \"sense\": \"trostlosester,trostlosestes,trostlosere,trostloseren,trostloser,trostlosesten,trostloses,trostloserem,trostlosestem,trostloseres,trostloserer,trostlosem,trostloseste,trostlosen,trostlose\"\n    },\n    \"trottelig\": {\n        \"form\": \"trottelig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"trotteligeren,trotteligste,trotteligerem,trotteliger,trotteligsten,trotteligstes,trotteligster,trotteliges,trotteligstem,trotteligere,trottelige,trotteligem,trotteligen,trotteligeres,trotteligerer\"\n    },\n    \"trotten\": {\n        \"form\": \"trotten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"trotette,trottet,getrottet,trotettet,trotettest,trotte,trottest,trotetten,trotteten,trottetet,trottetest,trottete\"\n    },\n    \"trotzen\": {\n        \"form\": \"trotzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"trotztest,trotzten,trotzt,trotzte,trotzest,getrotzt,trotze,trotzet,trotztet\"\n    },\n    \"träge\": {\n        \"form\": \"träge\",\n        \"polarity\": \"-0.3272\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"trüb\": {\n        \"form\": \"trüb\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"trügerisch\": {\n        \"form\": \"trügerisch\",\n        \"polarity\": \"-0.1874\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"turbulent\": {\n        \"form\": \"turbulent\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"turbulenten,turbulenterer,turbulenteres,turbulenteren,turbulenterem,turbulentem,turbulentesten,turbulentere,turbulenteste,turbulentestem,turbulentester,turbulentestes,turbulente,turbulentes,turbulenter\"\n    },\n    \"tyrannisch\": {\n        \"form\": \"tyrannisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tyrannischstes,tyrannischerem,tyrannischeren,tyrannischster,tyrannischerer,tyrannischeres,tyrannischen,tyrannischem,tyrannische,tyrannischere,tyrannisches,tyrannischer,tyrannischsten,tyrannischste,tyrannischstem\"\n    },\n    \"täuschen\": {\n        \"form\": \"täuschen\",\n        \"polarity\": \"-0.6192\",\n        \"pos\": \"VB\",\n        \"sense\": \"täuschtet,täuschtest,täuschet,täuscht,täusche,getäuscht,täuschst,täuschten,täuschte,täuschest\"\n    },\n    \"tödlich\": {\n        \"form\": \"tödlich\",\n        \"polarity\": \"-0.3487\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"töricht\": {\n        \"form\": \"töricht\",\n        \"polarity\": \"-0.471\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"töten\": {\n        \"form\": \"töten\",\n        \"polarity\": \"-0.5203\",\n        \"pos\": \"VB\",\n        \"sense\": \"tötetet,getötet,töte,tötet,tötete,tötest,töten,tötetest,töttet,töteten\"\n    },\n    \"umgetauscht\": {\n        \"form\": \"umgetauscht\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umgetauschte,umgetauschtem,umgetauschten,umgetauschter,umgetauschtes\"\n    },\n    \"umstritten\": {\n        \"form\": \"umstritten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umstrittenerer,umstritteneres,umstrittenstes,umstrittenster,umstrittensten,umstrittene,umstrittenstem,umstrittener,umstrittenes,umstrittenen,umstrittenem,umstrittenere,umstritteneren,umstrittenste,umstrittenerem\"\n    },\n    \"umständlich\": {\n        \"form\": \"umständlich\",\n        \"polarity\": \"-0.3487\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"umtauschen\": {\n        \"form\": \"umtauschen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"umtauschtest,umtausche,umtauscht,umtauschten,umtauschet,umtauschte,umtauschst,umgetauscht,umtauschtet,umtauschest\"\n    },\n    \"umweltschädlich\": {\n        \"form\": \"umweltschädlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unachtsam\": {\n        \"form\": \"unachtsam\",\n        \"polarity\": \"-0.4488\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unachtsamster,unachtsamstes,unachtsamer,unachtsames,unachtsamsten,unachtsamem,unachtsamen,unachtsameres,unachtsamerer,unachtsamstem,unachtsame,unachtsamere,unachtsamerem,unachtsameren,unachtsamste\"\n    },\n    \"unangemessen\": {\n        \"form\": \"unangemessen\",\n        \"polarity\": \"-0.4883\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unangemessenstes,unangemessener,unangemessenes,unangemessenster,unangemessene,unangemessenerer,unangemessenerem,unangemessenste,unangemesseneren,unangemessenere,unangemesseneres,unangemessensten,unangemessenstem,unangemessenem,unangemessenen\"\n    },\n    \"unangenehm\": {\n        \"form\": \"unangenehm\",\n        \"polarity\": \"-0.4691\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unangenehmstes,unangenehmem,unangenehmster,unangenehmen,unangenehmste,unangenehmere,unangenehmsten,unangenehmer,unangenehmes,unangenehmstem,unangenehme,unangenehmerem,unangenehmeren,unangenehmerer,unangenehmeres\"\n    },\n    \"unanständig\": {\n        \"form\": \"unanständig\",\n        \"polarity\": \"-0.0441\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unattraktiv\": {\n        \"form\": \"unattraktiv\",\n        \"polarity\": \"-0.4656\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unattraktive,unattraktivem,unattraktiven,unattraktiver,unattraktives,unattraktivere,unattraktiverem,unattraktiveren,unattraktiverer,unattraktiveres,unattraktivste,unattraktivstem,unattraktivsten,unattraktivster,unattraktivstes\"\n    },\n    \"unaufgefordert\": {\n        \"form\": \"unaufgefordert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unaufgefordertster,unaufgefordertere,unaufgefordertem,unaufgefordertstes,unaufgeforderten,unaufgeforderteren,unaufgeforderterem,unaufgeforderterer,unaufgeforderteres,unaufgeforderte,unaufgeforderter,unaufgefordertste,unaufgefordertes,unaufgefordertsten,unaufgefordertstem\"\n    },\n    \"unaufhörlich\": {\n        \"form\": \"unaufhörlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unaufrichtig\": {\n        \"form\": \"unaufrichtig\",\n        \"polarity\": \"-0.3091\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unaufrichtiges,unaufrichtiger,unaufrichtigere,unaufrichtigstem,unaufrichtigsten,unaufrichtigster,unaufrichtigstes,unaufrichtigem,unaufrichtigen,unaufrichtigste,unaufrichtige,unaufrichtigeres,unaufrichtigerer,unaufrichtigerem,unaufrichtigeren\"\n    },\n    \"unbarmherzig\": {\n        \"form\": \"unbarmherzig\",\n        \"polarity\": \"-0.3257\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbarmherzigstes,unbarmherzigster,unbarmherzigsten,unbarmherzigere,unbarmherzigeren,unbarmherziger,unbarmherziges,unbarmherzigerem,unbarmherzigste,unbarmherzigen,unbarmherzigeres,unbarmherzigem,unbarmherzigerer,unbarmherzigstem,unbarmherzige\"\n    },\n    \"unbedacht\": {\n        \"form\": \"unbedacht\",\n        \"polarity\": \"-0.051\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbedachteren,unbedachtes,unbedachte,unbedachter,unbedachterem,unbedachtester,unbedachtestes,unbedachtesten,unbedachteste,unbedachtestem,unbedachtem,unbedachten,unbedachterer,unbedachtere,unbedachteres\"\n    },\n    \"unbedeutend\": {\n        \"form\": \"unbedeutend\",\n        \"polarity\": \"-0.6134\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbedeutende,unbedeutendste,unbedeutenden,unbedeutenderem,unbedeutendster,unbedeutenderen,unbedeutendstes,unbedeutender,unbedeutendstem,unbedeutendsten,unbedeutendes,unbedeutenderer,unbedeutendere,unbedeutenderes,unbedeutendem\"\n    },\n    \"unbefriedigend\": {\n        \"form\": \"unbefriedigend\",\n        \"polarity\": \"-0.3343\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbefriedigenderen,unbefriedigendstem,unbefriedigendsten,unbefriedigenderem,unbefriedigenden,unbefriedigenderer,unbefriedigende,unbefriedigendem,unbefriedigender,unbefriedigendes,unbefriedigendstes,unbefriedigenderes,unbefriedigendster,unbefriedigendere,unbefriedigendste\"\n    },\n    \"unbefriedigt\": {\n        \"form\": \"unbefriedigt\",\n        \"polarity\": \"-0.319\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbefriedigteren,unbefriedigtster,unbefriedigtstes,unbefriedigte,unbefriedigtere,unbefriedigtsten,unbefriedigterem,unbefriedigtem,unbefriedigten,unbefriedigter,unbefriedigtes,unbefriedigtstem,unbefriedigteres,unbefriedigterer,unbefriedigtste\"\n    },\n    \"unbefugt\": {\n        \"form\": \"unbefugt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbefugtestes,unbefugtester,unbefugtere,unbefugtestem,unbefugtesten,unbefugteres,unbefugte,unbefugterer,unbefugteren,unbefugtem,unbefugten,unbefugterem,unbefugtes,unbefugteste,unbefugter\"\n    },\n    \"unbegründet\": {\n        \"form\": \"unbegründet\",\n        \"polarity\": \"-0.4923\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unbeliebt\": {\n        \"form\": \"unbeliebt\",\n        \"polarity\": \"-0.3266\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbeliebterer,unbeliebteste,unbeliebtester,unbeliebteres,unbeliebtestes,unbeliebtes,unbeliebter,unbeliebtestem,unbeliebtesten,unbeliebten,unbeliebtem,unbeliebterem,unbeliebteren,unbeliebte,unbeliebtere\"\n    },\n    \"unbequem\": {\n        \"form\": \"unbequem\",\n        \"polarity\": \"-0.0237\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbequemeres,unbequemerer,unbequemem,unbequemen,unbequemes,unbequemer,unbequemstes,unbequemster,unbequemsten,unbequemstem,unbequemerem,unbequemste,unbequemeren,unbequeme,unbequemere\"\n    },\n    \"unberechtigt\": {\n        \"form\": \"unberechtigt\",\n        \"polarity\": \"-0.3393\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unberechtigtere,unberechtigteren,unberechtigtes,unberechtigter,unberechtigtstem,unberechtigterem,unberechtigte,unberechtigtsten,unberechtigteres,unberechtigterer,unberechtigtste,unberechtigtster,unberechtigten,unberechtigtstes,unberechtigtem\"\n    },\n    \"unbestimmt\": {\n        \"form\": \"unbestimmt\",\n        \"polarity\": \"-0.3322\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbestimmte,unbestimmtestem,unbestimmtesten,unbestimmteres,unbestimmtester,unbestimmterer,unbestimmtestes,unbestimmterem,unbestimmteren,unbestimmtere,unbestimmtes,unbestimmter,unbestimmteste,unbestimmten,unbestimmtem\"\n    },\n    \"unbewiesen\": {\n        \"form\": \"unbewiesen\",\n        \"polarity\": \"-0.3113\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbewieseneres,unbewiesener,unbewiesenes,unbewiesenstem,unbewiesensten,unbewiesene,unbewiesenere,unbewiesenste,unbewiesenerem,unbewieseneren,unbewiesenster,unbewiesenem,unbewiesenstes,unbewiesenerer,unbewiesenen\"\n    },\n    \"unbotmäßig\": {\n        \"form\": \"unbotmäßig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unbrauchbar\": {\n        \"form\": \"unbrauchbar\",\n        \"polarity\": \"-0.4727\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbrauchbare,unbrauchbarem,unbrauchbaren,unbrauchbarer,unbrauchbares,unbrauchbarere,unbrauchbarerem,unbrauchbareren,unbrauchbarerer,unbrauchbareres,unbrauchbarste,unbrauchbarstem,unbrauchbarsten,unbrauchbarster,unbrauchbarstes\"\n    },\n    \"undankbar\": {\n        \"form\": \"undankbar\",\n        \"polarity\": \"-0.3156\",\n        \"pos\": \"JJ\",\n        \"sense\": \"undankbareren,undankbarerem,undankbarerer,undankbareres,undankbarste,undankbarere,undankbarstes,undankbarem,undankbarster,undankbaren,undankbarsten,undankbare,undankbarer,undankbares,undankbarstem\"\n    },\n    \"undemokratisch\": {\n        \"form\": \"undemokratisch\",\n        \"polarity\": \"-0.3259\",\n        \"pos\": \"JJ\",\n        \"sense\": \"undemokratischen,undemokratischem,undemokratische,undemokratischeres,undemokratischstem,undemokratischsten,undemokratischste,undemokratischster,undemokratischerer,undemokratischere,undemokratischeren,undemokratischstes,undemokratischerem,undemokratischer,undemokratisches\"\n    },\n    \"undiplomatisch\": {\n        \"form\": \"undiplomatisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"undiplomatischstem,undiplomatischerem,undiplomatischsten,undiplomatischstes,undiplomatischster,undiplomatische,undiplomatischere,undiplomatischste,undiplomatisches,undiplomatischeren,undiplomatischer,undiplomatischem,undiplomatischerer,undiplomatischen,undiplomatischeres\"\n    },\n    \"undiszipliniert\": {\n        \"form\": \"undiszipliniert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"undisziplinierterem,undisziplinierteren,undisziplinierten,undiszipliniertere,undiszipliniertestes,undiszipliniertem,undiszipliniertester,undisziplinierterer,undisziplinierteres,undisziplinierteste,undiszipliniertesten,undisziplinierte,undisziplinierter,undiszipliniertes,undiszipliniertestem\"\n    },\n    \"undurchführbar\": {\n        \"form\": \"undurchführbar\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"undurchsichtig\": {\n        \"form\": \"undurchsichtig\",\n        \"polarity\": \"-0.3279\",\n        \"pos\": \"JJ\",\n        \"sense\": \"undurchsichtigere,undurchsichtiger,undurchsichtige,undurchsichtigem,undurchsichtigen,undurchsichtigerem,undurchsichtigste,undurchsichtiges,undurchsichtigeren,undurchsichtigstes,undurchsichtigster,undurchsichtigeres,undurchsichtigerer,undurchsichtigsten,undurchsichtigstem\"\n    },\n    \"unehrlich\": {\n        \"form\": \"unehrlich\",\n        \"polarity\": \"-0.327\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unehrliche,unehrlichstes,unehrlichster,unehrlicherer,unehrlicheres,unehrlichsten,unehrlichstem,unehrlichere,unehrlicherem,unehrlicheren,unehrlichen,unehrlichem,unehrlichste,unehrlicher,unehrliches\"\n    },\n    \"uneinig\": {\n        \"form\": \"uneinig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"uneinigeren,uneinigerem,uneinigere,uneinigem,uneinigsten,uneinigstem,uneinigen,uneinigster,uneinigerer,uneiniges,uneinigstes,uneiniger,uneinigeres,uneinigste,uneinige\"\n    },\n    \"uneinsichtig\": {\n        \"form\": \"uneinsichtig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"uneinsichtigerer,uneinsichtiger,uneinsichtigeres,uneinsichtigste,uneinsichtiges,uneinsichtigsten,uneinsichtigster,uneinsichtigstes,uneinsichtige,uneinsichtigstem,uneinsichtigerem,uneinsichtigen,uneinsichtigere,uneinsichtigem,uneinsichtigeren\"\n    },\n    \"unerbittlich\": {\n        \"form\": \"unerbittlich\",\n        \"polarity\": \"-0.3318\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerbittlichstes,unerbittliche,unerbittlichster,unerbittlichstem,unerbittlichsten,unerbittlichste,unerbittlicherer,unerbittlicheres,unerbittlichere,unerbittlichem,unerbittlichen,unerbittlicherem,unerbittliches,unerbittlicher,unerbittlicheren\"\n    },\n    \"unerfreulich\": {\n        \"form\": \"unerfreulich\",\n        \"polarity\": \"-0.0453\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerfreulichster,unerfreulichstes,unerfreulichere,unerfreulicheres,unerfreulicherer,unerfreulicher,unerfreulicherem,unerfreulicheren,unerfreuliches,unerfreulichem,unerfreulichste,unerfreulichen,unerfreuliche,unerfreulichstem,unerfreulichsten\"\n    },\n    \"unerhört\": {\n        \"form\": \"unerhört\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unerklärlich\": {\n        \"form\": \"unerklärlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unerlaubt\": {\n        \"form\": \"unerlaubt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerlaubtester,unerlaubtesten,unerlaubtestem,unerlaubterer,unerlaubte,unerlaubteres,unerlaubteren,unerlaubtestes,unerlaubterem,unerlaubteste,unerlaubtem,unerlaubtere,unerlaubten,unerlaubtes,unerlaubter\"\n    },\n    \"unerquicklich\": {\n        \"form\": \"unerquicklich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerquicklichstes,unerquickliche,unerquicklichster,unerquicklichere,unerquicklicherem,unerquicklicheren,unerquicklichstem,unerquicklichsten,unerquicklicherer,unerquicklichste,unerquicklicheres,unerquickliches,unerquicklicher,unerquicklichem,unerquicklichen\"\n    },\n    \"unerträglich\": {\n        \"form\": \"unerträglich\",\n        \"polarity\": \"-0.3454\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unerwartet\": {\n        \"form\": \"unerwartet\",\n        \"polarity\": \"-0.0349\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerwartete,unerwarteterer,unerwartetere,unerwarteteres,unerwartetstes,unerwarteteren,unerwarteterem,unerwartetstem,unerwartetsten,unerwartetster,unerwarteten,unerwartetem,unerwartetste,unerwartetes,unerwarteter\"\n    },\n    \"unerwiesen\": {\n        \"form\": \"unerwiesen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerwiesene,unerwiesenem,unerwiesenen,unerwiesener,unerwiesenes\"\n    },\n    \"unerwünscht\": {\n        \"form\": \"unerwünscht\",\n        \"polarity\": \"-0.3413\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unfair\": {\n        \"form\": \"unfair\",\n        \"polarity\": \"-0.8827\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unfairen,unfairere,unfairste,unfairem,unfaireres,unfaireren,unfairerem,unfaire,unfairer,unfairerer,unfaires,unfairstem,unfairsten,unfairstes,unfairster\"\n    },\n    \"unfein\": {\n        \"form\": \"unfein\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unfeiner,unfeinerer,unfeines,unfeinerem,unfeineren,unfeineres,unfeinem,unfeinen,unfeinste,unfeinster,unfeinstes,unfeinere,unfeinstem,unfeinsten,unfeine\"\n    },\n    \"unfreiwillig\": {\n        \"form\": \"unfreiwillig\",\n        \"polarity\": \"-0.3382\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unfreiwilligstem,unfreiwilligsten,unfreiwilliges,unfreiwilliger,unfreiwilligste,unfreiwilligem,unfreiwilligster,unfreiwilligen,unfreiwilligstes,unfreiwilligeren,unfreiwilligerem,unfreiwilligeres,unfreiwilligerer,unfreiwilligere,unfreiwillige\"\n    },\n    \"unfreundlich\": {\n        \"form\": \"unfreundlich\",\n        \"polarity\": \"-0.3407\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unfreundliche,unfreundlicher,unfreundliches,unfreundlichem,unfreundlichen,unfreundlichere,unfreundlichstes,unfreundlichste,unfreundlicheres,unfreundlichster,unfreundlicherer,unfreundlichstem,unfreundlichsten,unfreundlicheren,unfreundlicherem\"\n    },\n    \"unfähig\": {\n        \"form\": \"unfähig\",\n        \"polarity\": \"-0.4787\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungebeten\": {\n        \"form\": \"ungebeten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungebetene,ungebetenem,ungebetenen,ungebetener,ungebetenes,ungebetenere,ungebetenerem,ungebeteneren,ungebetenerer,ungebeteneres,ungebetenste,ungebetenstem,ungebetensten,ungebetenster,ungebetenstes\"\n    },\n    \"ungebührlich\": {\n        \"form\": \"ungebührlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungedeckt\": {\n        \"form\": \"ungedeckt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungedecktem,ungedeckte,ungedeckten,ungedeckter,ungedecktes\"\n    },\n    \"ungeduldig\": {\n        \"form\": \"ungeduldig\",\n        \"polarity\": \"-0.0405\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeduldigerem,ungeduldigeren,ungeduldigerer,ungeduldigeres,ungeduldigste,ungeduldigsten,ungeduldiger,ungeduldigster,ungeduldigstes,ungeduldigere,ungeduldiges,ungeduldigem,ungeduldige,ungeduldigen,ungeduldigstem\"\n    },\n    \"ungeeignet\": {\n        \"form\": \"ungeeignet\",\n        \"polarity\": \"-0.6394\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeeignete,ungeeignetster,ungeeignetere,ungeeignetsten,ungeeignetstem,ungeeigneterer,ungeeigneter,ungeeignetes,ungeeignetem,ungeeigneten,ungeeigneteres,ungeeignetste,ungeeignetstes,ungeeigneterem,ungeeigneteren\"\n    },\n    \"ungeheuer\": {\n        \"form\": \"ungeheuer\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeheureren,ungeheuersten,ungeheurerem,ungeheurere,ungeheuerstes,ungeheuerster,ungeheuerste,ungeheureres,ungeheuerstem,ungeheurerer,ungeheure,ungeheuren,ungeheurem,ungeheures,ungeheurer\"\n    },\n    \"ungeheuerlich\": {\n        \"form\": \"ungeheuerlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeheuerlichen,ungeheuerlichem,ungeheuerlicherem,ungeheuerlicheren,ungeheuerlicher,ungeheuerliche,ungeheuerliches,ungeheuerlichsten,ungeheuerlichstem,ungeheuerlichstes,ungeheuerlichster,ungeheuerlicherer,ungeheuerlichste,ungeheuerlicheres,ungeheuerlichere\"\n    },\n    \"ungehobelt\": {\n        \"form\": \"ungehobelt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungehobeltem,ungehobelten,ungehobelter,ungehobeltste,ungehobeltes,ungehobelteres,ungehobeltere,ungehobelterer,ungehobelterem,ungehobelteren,ungehobeltstes,ungehobeltster,ungehobelte,ungehobeltstem,ungehobeltsten\"\n    },\n    \"ungehorsam\": {\n        \"form\": \"ungehorsam\",\n        \"polarity\": \"-0.3176\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungehorsame,ungehorsameren,ungehorsamerem,ungehorsamerer,ungehorsamere,ungehorsameres,ungehorsamsten,ungehorsamstem,ungehorsames,ungehorsamer,ungehorsamen,ungehorsamstes,ungehorsamster,ungehorsamem,ungehorsamste\"\n    },\n    \"ungeliebt\": {\n        \"form\": \"ungeliebt\",\n        \"polarity\": \"-0.4532\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeliebtere,ungeliebte,ungeliebten,ungeliebtestes,ungeliebtester,ungeliebtem,ungeliebtesten,ungeliebtes,ungeliebter,ungeliebtestem,ungeliebteres,ungeliebterer,ungeliebteste,ungeliebteren,ungeliebterem\"\n    },\n    \"ungemütlich\": {\n        \"form\": \"ungemütlich\",\n        \"polarity\": \"-0.0313\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungenau\": {\n        \"form\": \"ungenau\",\n        \"polarity\": \"-0.497\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungenaue,ungenaues,ungenauer,ungenauere,ungenauesten,ungenauestem,ungenauste,ungenauem,ungenaust,ungenauen,ungenauestes,ungenauester,ungenaustes,ungenaueren,ungenauerem,ungenauster,ungenauerer,ungenaueres,ungenaueste,ungenaustem,ungenausten\"\n    },\n    \"ungeordnet\": {\n        \"form\": \"ungeordnet\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeordnetste,ungeordnetstes,ungeordneteren,ungeordneterem,ungeordnetster,ungeordneterer,ungeordnete,ungeordneteres,ungeordnetem,ungeordnetsten,ungeordnetstem,ungeordneten,ungeordneter,ungeordnetere,ungeordnetes\"\n    },\n    \"ungerecht\": {\n        \"form\": \"ungerecht\",\n        \"polarity\": \"-0.7844\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungerechter,ungerechtes,ungerechteste,ungerechterem,ungerechteren,ungerechtestes,ungerechtester,ungerechte,ungerechtestem,ungerechterer,ungerechtere,ungerechtesten,ungerechteres,ungerechtem,ungerechten\"\n    },\n    \"ungerechtfertigt\": {\n        \"form\": \"ungerechtfertigt\",\n        \"polarity\": \"-0.4701\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungerechtfertigteren,ungerechtfertigtste,ungerechtfertigterem,ungerechtfertigterer,ungerechtfertigteres,ungerechtfertigte,ungerechtfertigtes,ungerechtfertigter,ungerechtfertigtem,ungerechtfertigten,ungerechtfertigtsten,ungerechtfertigtere,ungerechtfertigtstem,ungerechtfertigtstes,ungerechtfertigtster\"\n    },\n    \"ungeschickt\": {\n        \"form\": \"ungeschickt\",\n        \"polarity\": \"-0.6087\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeschicktes,ungeschicktester,ungeschickter,ungeschicktestem,ungeschicktesten,ungeschickterem,ungeschickteren,ungeschicktere,ungeschickteres,ungeschickterer,ungeschickte,ungeschickten,ungeschickteste,ungeschicktestes,ungeschicktem\"\n    },\n    \"ungeschminkt\": {\n        \"form\": \"ungeschminkt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeschminktestem,ungeschminktesten,ungeschminkterem,ungeschminkteste,ungeschminktere,ungeschminktester,ungeschminkte,ungeschminktestes,ungeschminkten,ungeschminktem,ungeschminkter,ungeschminkteren,ungeschminktes,ungeschminkterer,ungeschminkteres\"\n    },\n    \"ungesetzlich\": {\n        \"form\": \"ungesetzlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungesetzliche,ungesetzlichstes,ungesetzlichere,ungesetzlichste,ungesetzlichster,ungesetzlicheres,ungesetzlicherer,ungesetzlichsten,ungesetzlichstem,ungesetzlicheren,ungesetzlichen,ungesetzlicherem,ungesetzlichem,ungesetzliches,ungesetzlicher\"\n    },\n    \"ungesund\": {\n        \"form\": \"ungesund\",\n        \"polarity\": \"-0.1793\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungewohnt\": {\n        \"form\": \"ungewohnt\",\n        \"polarity\": \"-0.0243\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungewohntesten,ungewohntester,ungewohnterer,ungewohntestes,ungewohnteres,ungewohnteren,ungewohnterem,ungewohntere,ungewohnte,ungewohntem,ungewohnteste,ungewohntes,ungewohnter,ungewohntestem,ungewohnten\"\n    },\n    \"ungewollt\": {\n        \"form\": \"ungewollt\",\n        \"polarity\": \"-0.4781\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungewollte,ungewolltem,ungewollten,ungewollter,ungewolltes\"\n    },\n    \"ungezogen\": {\n        \"form\": \"ungezogen\",\n        \"polarity\": \"-0.3124\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungezogene,ungezogener,ungezogenes,ungezogenste,ungezogenstem,ungezogensten,ungezognerem,ungezogenster,ungezogneren,ungezogenstes,ungezogneres,ungezognerer,ungezognere,ungezogenen,ungezogeneren,ungezogenem,ungezogner,ungezogenere,ungezogenerem,ungezogenerer,ungezogeneres\"\n    },\n    \"ungeübt\": {\n        \"form\": \"ungeübt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unglaubwürdig\": {\n        \"form\": \"unglaubwürdig\",\n        \"polarity\": \"-0.2007\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungleich\": {\n        \"form\": \"ungleich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungleiche,ungleichem,ungleichen,ungleicher,ungleiches\"\n    },\n    \"unglücklich\": {\n        \"form\": \"unglücklich\",\n        \"polarity\": \"-0.301\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungültig\": {\n        \"form\": \"ungültig\",\n        \"polarity\": \"-0.3485\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ungünstig\": {\n        \"form\": \"ungünstig\",\n        \"polarity\": \"-0.767\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unheilbar\": {\n        \"form\": \"unheilbar\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unheilbare,unheilbarem,unheilbaren,unheilbarer,unheilbares\"\n    },\n    \"unheilvoll\": {\n        \"form\": \"unheilvoll\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unheilvolle,unheilvollere,unheilvollem,unheilvollen,unheilvollsten,unheilvollstem,unheilvoller,unheilvollster,unheilvollstes,unheilvollerem,unheilvolles,unheilvollste,unheilvollerer,unheilvolleres,unheilvolleren\"\n    },\n    \"unhöflich\": {\n        \"form\": \"unhöflich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"uninformiert\": {\n        \"form\": \"uninformiert\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"uninformiertes,uninformierter,uninformierterem,uninformiertem,uninformierteren,uninformierten,uninformiertstes,uninformiertster,uninformierte,uninformierterer,uninformierteres,uninformiertsten,uninformiertstem,uninformiertere,uninformiertste\"\n    },\n    \"unklar\": {\n        \"form\": \"unklar\",\n        \"polarity\": \"-0.5023\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unklarerem,unklareren,unklarsten,unklaren,unklarstem,unklarem,unklarerer,unklareres,unklarere,unklarste,unklarstes,unklare,unklarster,unklares,unklarer\"\n    },\n    \"unklug\": {\n        \"form\": \"unklug\",\n        \"polarity\": \"-0.4604\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unklugere,unklugste,unkluge,unklugen,unklugem,unkluger,unklugeren,unklugerem,unkluges,unklugeres,unklugerer,unklugstes,unklugster,unklugstem,unklugsten\"\n    },\n    \"unkorrekt\": {\n        \"form\": \"unkorrekt\",\n        \"polarity\": \"-0.3247\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unkorrektere,unkorrektester,unkorrektestes,unkorrekteres,unkorrektes,unkorrekter,unkorrektestem,unkorrekten,unkorrektem,unkorrektesten,unkorrekterer,unkorrekte,unkorrekterem,unkorrekteren,unkorrekteste\"\n    },\n    \"unkritisch\": {\n        \"form\": \"unkritisch\",\n        \"polarity\": \"-0.1934\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unkritischerer,unkritischere,unkritischeres,unkritischeren,unkritisches,unkritische,unkritischer,unkritischem,unkritischen,unkritischsten,unkritischstem,unkritischerem,unkritischste,unkritischstes,unkritischster\"\n    },\n    \"unlauter\": {\n        \"form\": \"unlauter\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unlauterstes,unlautererer,unlauterste,unlauterster,unlautereres,unlauteres,unlautereren,unlautrere,unlautreren,unlautrer,unlautrerem,unlautere,unlauteren,unlauterstem,unlauterem,unlautrerer,unlautersten,unlauterer,unlauterere,unlautreres,unlautererem\"\n    },\n    \"unliebsam\": {\n        \"form\": \"unliebsam\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unliebsame,unliebsamstes,unliebsamster,unliebsamem,unliebsamen,unliebsames,unliebsamste,unliebsamsten,unliebsamerem,unliebsameren,unliebsamstem,unliebsamer,unliebsamerer,unliebsameres,unliebsamere\"\n    },\n    \"unlogisch\": {\n        \"form\": \"unlogisch\",\n        \"polarity\": \"-0.4817\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unlogischere,unlogischerem,unlogische,unlogischste,unlogischem,unlogischen,unlogischstes,unlogischster,unlogischer,unlogischeren,unlogischstem,unlogisches,unlogischerer,unlogischeres,unlogischsten\"\n    },\n    \"unmenschlich\": {\n        \"form\": \"unmenschlich\",\n        \"polarity\": \"-0.4724\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unmenschlichste,unmenschlichster,unmenschlichstes,unmenschlichstem,unmenschlichsten,unmenschlichem,unmenschlichere,unmenschlichen,unmenschlicheres,unmenschlicherer,unmenschliche,unmenschlicheren,unmenschliches,unmenschlicher,unmenschlicherem\"\n    },\n    \"unmoralisch\": {\n        \"form\": \"unmoralisch\",\n        \"polarity\": \"-0.6224\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unmoralische,unmoralischem,unmoralischen,unmoralischer,unmoralisches,unmoralischere,unmoralischerem,unmoralischeren,unmoralischerer,unmoralischeres,unmoralischste,unmoralischstem,unmoralischsten,unmoralischster,unmoralischstes\"\n    },\n    \"unmöglich\": {\n        \"form\": \"unmöglich\",\n        \"polarity\": \"-0.3559\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unnötig\": {\n        \"form\": \"unnötig\",\n        \"polarity\": \"-0.9463\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unnütz\": {\n        \"form\": \"unnütz\",\n        \"polarity\": \"-0.6073\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unpassend\": {\n        \"form\": \"unpassend\",\n        \"polarity\": \"-0.3261\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unpassenderen,unpassenderem,unpassendsten,unpassendstem,unpassendere,unpassende,unpassendster,unpassenderes,unpassenderer,unpassender,unpassendes,unpassendem,unpassenden,unpassendste,unpassendstes\"\n    },\n    \"unpersönlich\": {\n        \"form\": \"unpersönlich\",\n        \"polarity\": \"-0.0476\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unpopulär\": {\n        \"form\": \"unpopulär\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unpraktisch\": {\n        \"form\": \"unpraktisch\",\n        \"polarity\": \"-0.3182\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unpraktische,unpraktischem,unpraktischen,unpraktischer,unpraktisches,unpraktischere\"\n    },\n    \"unqualifiziert\": {\n        \"form\": \"unqualifiziert\",\n        \"polarity\": \"-0.3153\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unqualifiziertester,unqualifizierte,unqualifiziertem,unqualifiziertestem,unqualifiziertesten,unqualifizierten,unqualifiziertere,unqualifiziertes,unqualifizierter,unqualifizierteres,unqualifizierterer,unqualifiziertestes,unqualifizierteren,unqualifizierterem,unqualifizierteste\"\n    },\n    \"unredlich\": {\n        \"form\": \"unredlich\",\n        \"polarity\": \"-0.3248\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unredliche,unredlicherem,unredlichste,unredlichsten,unredlicherer,unredlichere,unredlicheres,unredliches,unredlichstem,unredlicheren,unredlicher,unredlichster,unredlichem,unredlichstes,unredlichen\"\n    },\n    \"unregelmäßig\": {\n        \"form\": \"unregelmäßig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unrentabel\": {\n        \"form\": \"unrentabel\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unrentable,unrentablerer,unrentableres,unrentabelster,unrentabelste,unrentabelstes,unrentablere,unrentableren,unrentablerem,unrentables,unrentabelsten,unrentabler,unrentablen,unrentablem,unrentabelstem\"\n    },\n    \"unruhig\": {\n        \"form\": \"unruhig\",\n        \"polarity\": \"-0.0551\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unruhigstem,unruhigerer,unruhigeres,unruhiges,unruhigeren,unruhigsten,unruhigste,unruhigstes,unruhiger,unruhigster,unruhigen,unruhigem,unruhigerem,unruhige,unruhigere\"\n    },\n    \"unrühmlich\": {\n        \"form\": \"unrühmlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unsachgemäß\": {\n        \"form\": \"unsachgemäß\",\n        \"polarity\": \"-0.3271\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unsauber\": {\n        \"form\": \"unsauber\",\n        \"polarity\": \"-0.4713\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsauberstes,unsauberere,unsaubere,unsauberste,unsaubrerem,unsaubereren,unsauberes,unsauberer,unsaubererem,unsaubrere,unsauberen,unsauberem,unsaubreren,unsaubrer,unsaubreres,unsaubersten,unsaubrerer,unsaubereres,unsauberstem,unsaubererer,unsauberster\"\n    },\n    \"unscharf\": {\n        \"form\": \"unscharf\",\n        \"polarity\": \"-0.327\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unschön\": {\n        \"form\": \"unschön\",\n        \"polarity\": \"-0.4486\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unselig\": {\n        \"form\": \"unselig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unseligstes,unseligster,unseligeres,unseligsten,unseligerer,unseligstem,unseligerem,unseligeren,unseligste,unseligem,unseligere,unselige,unseligen,unseliges,unseliger\"\n    },\n    \"unseriös\": {\n        \"form\": \"unseriös\",\n        \"polarity\": \"-0.3373\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unsicher\": {\n        \"form\": \"unsicher\",\n        \"polarity\": \"-0.6268\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsicherere,unsichrere,unsichreren,unsichrerem,unsichrer,unsicheren,unsicherstem,unsichersten,unsicherem,unsicherer,unsicherster,unsicheres,unsichrerer,unsichreres,unsichererer,unsicherstes,unsichereres,unsicherste,unsichere,unsichereren,unsichererem\"\n    },\n    \"unsinnig\": {\n        \"form\": \"unsinnig\",\n        \"polarity\": \"-0.3516\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsinnige,unsinnigem,unsinnigen,unsinniger,unsinniges,unsinnigere,unsinnigerem,unsinnigeren,unsinnigerer,unsinnigeres,unsinnigste,unsinnigstem,unsinnigsten,unsinnigster,unsinnigstes\"\n    },\n    \"unsittlich\": {\n        \"form\": \"unsittlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsittlichster,unsittlichsten,unsittlichstem,unsittliches,unsittlicher,unsittliche,unsittlichen,unsittlichem,unsittlichste,unsittlicherer,unsittlicheres,unsittlichere,unsittlicherem,unsittlicheren,unsittlichstes\"\n    },\n    \"unsolidarisch\": {\n        \"form\": \"unsolidarisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsolidarischem,unsolidarischen,unsolidarischer,unsolidarischster,unsolidarischstes,unsolidarischerem,unsolidarischeren,unsolidarischerer,unsolidarischste,unsolidarischeres,unsolidarischere,unsolidarische,unsolidarisches,unsolidarischstem,unsolidarischsten\"\n    },\n    \"unsolid\": {\n        \"form\": \"unsolid\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsolide,unsolidem,unsoliden,unsolider,unsolides,unsolidere,unsoliderem,unsolideren,unsoliderer,unsolideres,unsolideste,unsolidestem,unsolidesten,unsolidester,unsolidestes\"\n    },\n    \"unsozial\": {\n        \"form\": \"unsozial\",\n        \"polarity\": \"-0.4614\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsoziale,unsozialem,unsozialen,unsoziales,unsozialer,unsozialster,unsozialerem,unsozialeren,unsozialere,unsozialstes,unsozialsten,unsozialstem,unsozialerer,unsozialeres,unsozialste\"\n    },\n    \"unsportlich\": {\n        \"form\": \"unsportlich\",\n        \"polarity\": \"-0.32\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsportlichere,unsportlicher,unsportlichste,unsportliches,unsportlichen,unsportliche,unsportlichem,unsportlicherem,unsportlicheren,unsportlichsten,unsportlichstem,unsportlicherer,unsportlichster,unsportlicheres,unsportlichstes\"\n    },\n    \"unstetig\": {\n        \"form\": \"unstetig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unstetigstes,unstetigere,unstetigster,unstetigstem,unstetigsten,unstetiges,unstetigste,unstetiger,unstetigerer,unstetigeres,unstetigen,unstetigem,unstetigeren,unstetigerem,unstetige\"\n    },\n    \"unsäglich\": {\n        \"form\": \"unsäglich\",\n        \"polarity\": \"-0.1834\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"untauglich\": {\n        \"form\": \"untauglich\",\n        \"polarity\": \"-0.5944\",\n        \"pos\": \"JJ\",\n        \"sense\": \"untauglichstes,untauglichster,untauglichere,untauglicherem,untauglichstem,untauglichsten,untaugliches,untauglichem,untauglicheres,untauglichen,untauglicherer,untauglicher,untauglicheren,untaugliche,untauglichste\"\n    },\n    \"unten\": {\n        \"form\": \"unten\",\n        \"polarity\": \"-0.3334\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"unterbelichten\": {\n        \"form\": \"unterbelichten\",\n        \"polarity\": \"-0.0426\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterbelichte,unterbelichtest,unterbelichtet,unterbelichtete,unterbelichtetest,unterbelichteten,unterbelichtetet\"\n    },\n    \"unterbrechen\": {\n        \"form\": \"unterbrechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterbreche,unterbrichst,unterbricht,unterbrecht,unterbrechest,unterbrechet,unterbrach,unterbrachst,unterbrachen,unterbracht,unterbräche,unterbrächest,unterbrächst,unterbrächen,unterbrächet,unterbrächt\"\n    },\n    \"unterdrücken\": {\n        \"form\": \"unterdrücken\",\n        \"polarity\": \"-0.4825\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterdrücktet,unterdrückst,unterdrückte,unterdrückt,unterdrückest,unterdrücktest,unterdrücket,unterdrücke,untergedrückt,unterdrückten\"\n    },\n    \"unterentwickelt\": {\n        \"form\": \"unterentwickelt\",\n        \"polarity\": \"-0.3245\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unterentwickelten,unterentwickelteren,unterentwickeltem,unterentwickeltere,unterentwickelterem,unterentwickelter,unterentwickeltes,unterentwickelterer,unterentwickelteres,unterentwickeltste,unterentwickeltstem,unterentwickeltsten,unterentwickelte,unterentwickeltster,unterentwickeltstes\"\n    },\n    \"untergehen\": {\n        \"form\": \"untergehen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"untergehe,untergehst,untergeht,untergehest,untergehet,unterging,untergingst,untergingen,untergingt,unterginge,untergingest,unterginget,untergegangen\"\n    },\n    \"untergraben\": {\n        \"form\": \"untergraben\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"unterirdisch\": {\n        \"form\": \"unterirdisch\",\n        \"polarity\": \"-0.4715\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unterirdischen,unterirdischem,unterirdischstes,unterirdischste,unterirdischster,unterirdischer,unterirdische,unterirdischerem,unterirdischsten,unterirdisches,unterirdischeren,unterirdischere,unterirdischeres,unterirdischerer,unterirdischstem\"\n    },\n    \"unterlassen\": {\n        \"form\": \"unterlassen\",\n        \"polarity\": \"-0.3488\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterlasse,unterlässt,unterläßt,unterlasst,unterlaßt,unterlassest,unterlasset,unterließ,unterließest,unterließt,unterließen,unterließe,unterließet,unterlassen\"\n    },\n    \"unterlaufen\": {\n        \"form\": \"unterlaufen\",\n        \"polarity\": \"-0.3438\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterlaufe,unterläufst,unterläuft,unterlauft,unterlaufest,unterlaufet,unterlief,unterliefst,unterliefen,unterlieft,unterliefe,unterliefest,unterliefet,unterlaufen\"\n    },\n    \"unterliegen\": {\n        \"form\": \"unterliegen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterliege,unterliegst,unterliegt,unterliegest,unterlieget,unterlag,unterlagst,unterlagen,unterlagt,unterläge,unterlägest,unterlägst,unterlägen,unterläget,unterlägt\"\n    },\n    \"unterstellen\": {\n        \"form\": \"unterstellen\",\n        \"polarity\": \"-0.4961\",\n        \"pos\": \"VB\",\n        \"sense\": \"untergestellt,unterstellte,unterstellten,unterstellst,unterstellest,unterstelltet,unterstelltest,unterstellt,unterstelle,unterstellet\"\n    },\n    \"unterwerfen\": {\n        \"form\": \"unterwerfen\",\n        \"polarity\": \"-0.3393\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterwerfe,unterwirfst,unterwirft,unterwerft,unterwerfest,unterwerfet,unterwarf,unterwarfst,unterwarfen,unterwarft,unterwürfe,unterwürfest,unterwürfst,unterwürfen,unterwürfet,unterwürft,unterworfen\"\n    },\n    \"unterwürfig\": {\n        \"form\": \"unterwürfig\",\n        \"polarity\": \"-0.0533\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"untragbar\": {\n        \"form\": \"untragbar\",\n        \"polarity\": \"-0.3247\",\n        \"pos\": \"JJ\",\n        \"sense\": \"untragbarer,untragbares,untragbareren,untragbarstem,untragbare,untragbarerem,untragbareres,untragbarerer,untragbarste,untragbarsten,untragbaren,untragbarem,untragbarere,untragbarstes,untragbarster\"\n    },\n    \"untreu\": {\n        \"form\": \"untreu\",\n        \"polarity\": \"-0.3222\",\n        \"pos\": \"JJ\",\n        \"sense\": \"untreueres,untreuestem,untreue,untreustem,untreusten,untreuerer,untreustes,untreuster,untreueste,untreuer,untreues,untreuestes,untreuester,untreuen,untreuesten,untreuem,untreuste,untreuere,untreueren,untreuerem,untreuest\"\n    },\n    \"untröstlich\": {\n        \"form\": \"untröstlich\",\n        \"polarity\": \"-0.3139\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unverantwortlich\": {\n        \"form\": \"unverantwortlich\",\n        \"polarity\": \"-0.4889\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverantwortlichste,unverantwortlichen,unverantwortlichem,unverantwortliches,unverantwortlicher,unverantwortlichere,unverantwortlicheres,unverantwortlicherer,unverantwortlicherem,unverantwortlichstes,unverantwortlicheren,unverantwortlichsten,unverantwortlichstem,unverantwortliche,unverantwortlichster\"\n    },\n    \"unverantwortliche\": {\n        \"form\": \"unverantwortliche\",\n        \"polarity\": \"-0.3242\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"unverbesserlich\": {\n        \"form\": \"unverbesserlich\",\n        \"polarity\": \"-0.4363\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverbesserlicherem,unverbesserlicheren,unverbesserlichsten,unverbesserlicher,unverbesserlicherer,unverbesserlicheres,unverbesserliches,unverbesserlichstem,unverbesserlichster,unverbesserlichen,unverbesserlichstes,unverbesserlichem,unverbesserlichere,unverbesserliche,unverbesserlichste\"\n    },\n    \"unvereinbar\": {\n        \"form\": \"unvereinbar\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvereinbareres,unvereinbarem,unvereinbarerer,unvereinbarstem,unvereinbarsten,unvereinbaren,unvereinbareren,unvereinbarerem,unvereinbarste,unvereinbare,unvereinbarer,unvereinbares,unvereinbarstes,unvereinbarster,unvereinbarere\"\n    },\n    \"unverhältnismäßig\": {\n        \"form\": \"unverhältnismäßig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unverlangt\": {\n        \"form\": \"unverlangt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverlangter,unverlangtes,unverlangtstes,unverlangtster,unverlangte,unverlangtsten,unverlangtere,unverlangteres,unverlangtstem,unverlangterer,unverlangtem,unverlangterem,unverlangten,unverlangteren,unverlangtste\"\n    },\n    \"unvermeidlich\": {\n        \"form\": \"unvermeidlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvermeidlichstes,unvermeidlichster,unvermeidlichsten,unvermeidliche,unvermeidlichstem,unvermeidlichere,unvermeidlicher,unvermeidliches,unvermeidlichen,unvermeidlicheres,unvermeidlicherer,unvermeidlicherem,unvermeidlichem,unvermeidlicheren,unvermeidlichste\"\n    },\n    \"unvernünftig\": {\n        \"form\": \"unvernünftig\",\n        \"polarity\": \"-0.3252\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unverständlich\": {\n        \"form\": \"unverständlich\",\n        \"polarity\": \"-0.6347\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unvollkommen\": {\n        \"form\": \"unvollkommen\",\n        \"polarity\": \"-0.4772\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvollkommenster,unvollkommenstes,unvollkommenen,unvollkommenstem,unvollkommensten,unvollkommener,unvollkommenerem,unvollkommeneren,unvollkommenes,unvollkommeneres,unvollkommnere,unvollkommenerer,unvollkommneres,unvollkommnerer,unvollkommenem,unvollkommneren,unvollkommnerem,unvollkommner,unvollkommene,unvollkommenste,unvollkommenere\"\n    },\n    \"unvollständig\": {\n        \"form\": \"unvollständig\",\n        \"polarity\": \"-0.4926\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unvorhergesehen\": {\n        \"form\": \"unvorhergesehen\",\n        \"polarity\": \"-0.3141\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvorhergesehenes,unvorhergesehener,unvorhergesehenere,unvorhergesehensten,unvorhergesehenste,unvorhergesehenstem,unvorhergesehenstes,unvorhergeseheneres,unvorhergesehenster,unvorhergesehenerer,unvorhergeseheneren,unvorhergesehenen,unvorhergesehenerem,unvorhergesehenem,unvorhergesehene\"\n    },\n    \"unwahr\": {\n        \"form\": \"unwahr\",\n        \"polarity\": \"-0.3424\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwahrerem,unwahrstem,unwahrsten,unwahreren,unwahrerer,unwahrstes,unwahreres,unwahrster,unwahre,unwahrem,unwahren,unwahrere,unwahrste,unwahrer,unwahres\"\n    },\n    \"unwichtig\": {\n        \"form\": \"unwichtig\",\n        \"polarity\": \"-0.3433\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwichtigstem,unwichtigsten,unwichtigere,unwichtiges,unwichtigen,unwichtigem,unwichtigeren,unwichtiger,unwichtigerer,unwichtigeres,unwichtigster,unwichtigstes,unwichtigste,unwichtige,unwichtigerem\"\n    },\n    \"unwillig\": {\n        \"form\": \"unwillig\",\n        \"polarity\": \"-0.4665\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwilligstem,unwilligsten,unwilligere,unwilligerem,unwilligster,unwilligeren,unwilligstes,unwilligste,unwillige,unwilligen,unwilligerer,unwilligem,unwilliger,unwilliges,unwilligeres\"\n    },\n    \"unwirksam\": {\n        \"form\": \"unwirksam\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwirksamere,unwirksame,unwirksamstem,unwirksamsten,unwirksamstes,unwirksamerem,unwirksameren,unwirksamster,unwirksamerer,unwirksameres,unwirksamen,unwirksamem,unwirksamste,unwirksames,unwirksamer\"\n    },\n    \"unwirtlich\": {\n        \"form\": \"unwirtlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwirtlichere,unwirtlicherer,unwirtlicheres,unwirtlichster,unwirtlicheren,unwirtlicherem,unwirtlichstes,unwirtlichsten,unwirtlichstem,unwirtlichen,unwirtliches,unwirtliche,unwirtlicher,unwirtlichste,unwirtlichem\"\n    },\n    \"unwirtschaftlich\": {\n        \"form\": \"unwirtschaftlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwirtschaftlichstem,unwirtschaftliche,unwirtschaftlichem,unwirtschaftlichen,unwirtschaftlicherem,unwirtschaftlicheren,unwirtschaftlichste,unwirtschaftliches,unwirtschaftlicher,unwirtschaftlichere,unwirtschaftlichstes,unwirtschaftlichster,unwirtschaftlichsten,unwirtschaftlicheres,unwirtschaftlicherer\"\n    },\n    \"unwissend\": {\n        \"form\": \"unwissend\",\n        \"polarity\": \"-0.326\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwissende,unwissendste,unwissendem,unwissenderen,unwissenden,unwissenderem,unwissender,unwissendes,unwissendsten,unwissendstem,unwissendster,unwissenderer,unwissendstes,unwissendere,unwissenderes\"\n    },\n    \"unwürdig\": {\n        \"form\": \"unwürdig\",\n        \"polarity\": \"-0.7312\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unzivilisiert\": {\n        \"form\": \"unzivilisiert\",\n        \"polarity\": \"-0.4413\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unzivilisiertem,unzivilisierten,unzivilisierterer,unzivilisiertesten,unzivilisierteres,unzivilisierter,unzivilisiertes,unzivilisiertestem,unzivilisiertester,unzivilisiertestes,unzivilisiertere,unzivilisierte,unzivilisierteste,unzivilisierteren,unzivilisierterem\"\n    },\n    \"unzufrieden\": {\n        \"form\": \"unzufrieden\",\n        \"polarity\": \"-0.3363\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unzufriedeneres,unzufriednerer,unzufriedenstes,unzufriedneres,unzufriedenerer,unzufriednere,unzufriedenen,unzufriedenerem,unzufriedeneren,unzufriedenem,unzufriedener,unzufriedenes,unzufriedene,unzufriedner,unzufriedenster,unzufriedneren,unzufriednerem,unzufriedensten,unzufriedenere,unzufriedenste,unzufriedenstem\"\n    },\n    \"unzulässig\": {\n        \"form\": \"unzulässig\",\n        \"polarity\": \"-0.3554\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unzumutbar\": {\n        \"form\": \"unzumutbar\",\n        \"polarity\": \"-0.34\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unzumutbarerem,unzumutbarem,unzumutbareren,unzumutbaren,unzumutbarere,unzumutbareres,unzumutbarerer,unzumutbarer,unzumutbares,unzumutbarsten,unzumutbare,unzumutbarste,unzumutbarstem,unzumutbarstes,unzumutbarster\"\n    },\n    \"unzurechnungsfähig\": {\n        \"form\": \"unzurechnungsfähig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unzureichend\": {\n        \"form\": \"unzureichend\",\n        \"polarity\": \"-0.5233\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unzureichendster,unzureichendstes,unzureichende,unzureichenderes,unzureichenderer,unzureichendste,unzureichender,unzureichenderen,unzureichenderem,unzureichendes,unzureichendere,unzureichenden,unzureichendem,unzureichendstem,unzureichendsten\"\n    },\n    \"unzusammenhängend\": {\n        \"form\": \"unzusammenhängend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unzuverlässig\": {\n        \"form\": \"unzuverlässig\",\n        \"polarity\": \"-0.612\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unzüchtig\": {\n        \"form\": \"unzüchtig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unübersichtlich\": {\n        \"form\": \"unübersichtlich\",\n        \"polarity\": \"-0.0501\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unüblich\": {\n        \"form\": \"unüblich\",\n        \"polarity\": \"-0.3328\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vage\": {\n        \"form\": \"vage\",\n        \"polarity\": \"-0.3406\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vag,vagem,vagen,vager,vages,vagere,vagerem,vageren,vagerer,vageres,vagste,vagstem,vagsten,vagster,vagstes\"\n    },\n    \"verabscheuungswürdig\": {\n        \"form\": \"verabscheuungswürdig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verachten\": {\n        \"form\": \"verachten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verachte,verachtte,verachtet,verachtest,verachtetet,verachtetest,verachtete,verachten,verachteten\"\n    },\n    \"veraltet\": {\n        \"form\": \"veraltet\",\n        \"polarity\": \"-0.507\",\n        \"pos\": \"JJ\",\n        \"sense\": \"veraltete,veraltetem,veralteten,veralteter,veraltetes,veraltetere,veralteterem,veralteteren,veralteterer,veralteteres,veraltetste,veraltetstem,veraltetsten,veraltetster,veraltetstes\"\n    },\n    \"verarschen\": {\n        \"form\": \"verarschen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verarsche,verarschst,verarscht,verarschest,verarschet,verarschte,verarschtest,verarschten,verarschtet\"\n    },\n    \"verbannen\": {\n        \"form\": \"verbannen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verbannten,verbannst,verbannte,verbanntet,verbannet,verbannest,verbanne,verbannt,verbanntest\"\n    },\n    \"verbeulen\": {\n        \"form\": \"verbeulen\",\n        \"polarity\": \"-0.0327\",\n        \"pos\": \"VB\",\n        \"sense\": \"verbeulest,verbeultet,verbeultest,verbeulst,verbeult,verbeulten,verbeulte,verbeule,verbeulet\"\n    },\n    \"verbieten\": {\n        \"form\": \"verbieten\",\n        \"polarity\": \"-0.629\",\n        \"pos\": \"VB\",\n        \"sense\": \"verbiete,verbietest,verbietet,verbot,verbotest,verbotst,verboten,verbotet,verböte,verbötest,verbötet\"\n    },\n    \"verbittert\": {\n        \"form\": \"verbittert\",\n        \"polarity\": \"-0.4659\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verbitterte,verbittertem,verbitterten,verbitterter,verbittertes,verbittertere,verbitterterem,verbitterteren,verbitterterer,verbitterteres,verbittertste,verbittertstem,verbittertsten,verbittertster,verbittertstes\"\n    },\n    \"verblassen\": {\n        \"form\": \"verblassen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verblassten,verblasstet,verblasset,verblasste,verblasse,verblassest,verblasstest,verblasst\"\n    },\n    \"verboten\": {\n        \"form\": \"verboten\",\n        \"polarity\": \"-0.3657\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verbotenen,verbotenem,verbotner,verbotenerer,verbotnerem,verbotenerem,verbotene,verbotenere,verboteneren,verboteneres,verbotenes,verbotener,verbotenster,verbotenste,verbotnere,verbotenstes,verbotneres,verbotnerer,verbotensten,verbotneren,verbotenstem\"\n    },\n    \"verdammen\": {\n        \"form\": \"verdammen\",\n        \"polarity\": \"-0.6079\",\n        \"pos\": \"VB\",\n        \"sense\": \"verdammten,verdammte,verdammtet,verdammtest,verdammst,verdamme,verdammt,verdammet,verdammest\"\n    },\n    \"verdammt\": {\n        \"form\": \"verdammt\",\n        \"polarity\": \"-0.2925\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verdammteste,verdammterem,verdammteren,verdammtere,verdammterer,verdammteres,verdammtesten,verdammter,verdammtestem,verdammte,verdammtes,verdammtester,verdammtestes,verdammten,verdammtem\"\n    },\n    \"verdecken\": {\n        \"form\": \"verdecken\",\n        \"polarity\": \"-0.0516\",\n        \"pos\": \"VB\",\n        \"sense\": \"verdeckten,verdecke,verdeckt,verdecktet,verdeckst,verdeckte,verdecktest,verdeckest,verdecket\"\n    },\n    \"verderben\": {\n        \"form\": \"verderben\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verderbe,verdirbst,verdirbt,verderbt,verderbest,verderbet,verdarb,verdarbst,verdarben,verdarbt,verdürbe,verdürbest,verdürbst,verdürben,verdürbet,verdürbt\"\n    },\n    \"verderblich\": {\n        \"form\": \"verderblich\",\n        \"polarity\": \"-0.3131\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verderblichstes,verderblichster,verderblichen,verderblichsten,verderblichem,verderblichere,verderblichstem,verderbliche,verderblicherer,verderblicheres,verderblicherem,verderblicheren,verderblichste,verderblicher,verderbliches\"\n    },\n    \"verdorben\": {\n        \"form\": \"verdorben\",\n        \"polarity\": \"-0.1755\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verdorbenstes,verdorbenerer,verdorbenste,verdorbenster,verdorbeneres,verdorbneren,verdorbene,verdorbnerem,verdorbenstem,verdorbensten,verdorbneres,verdorbenes,verdorbnerer,verdorbener,verdorbenen,verdorbnere,verdorbenem,verdorbner,verdorbenerem,verdorbenere,verdorbeneren\"\n    },\n    \"verdrießlich\": {\n        \"form\": \"verdrießlich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verdrängen\": {\n        \"form\": \"verdrängen\",\n        \"polarity\": \"-0.3468\",\n        \"pos\": \"VB\",\n        \"sense\": \"verdrängst,verdrängest,verdrängte,verdränge,verdrängt,verdrängten,verdrängtest,verdränget,verdrängtet\"\n    },\n    \"verdunkeln\": {\n        \"form\": \"verdunkeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verdunkle,verdunkelte,verdunkelen,verdunkeltest,verdunkelten,verdunkele,verdunkelt,verdunkeltet,verdunkelst,verdunkel\"\n    },\n    \"vereiteln\": {\n        \"form\": \"vereiteln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"vereitle,vereitele,vereiteltest,vereitelt,vereiteltet,vereitelst,vereitelen,vereitel,vereitelten,vereitelte\"\n    },\n    \"verfallen\": {\n        \"form\": \"verfallen\",\n        \"polarity\": \"-0.4849\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verfallner,verfallenem,verfalleneres,verfallenere,verfallenerer,verfallene,verfallenerem,verfallnere,verfalleneren,verfallenstem,verfallensten,verfallenste,verfallnerer,verfallenstes,verfallneres,verfallenster,verfallneren,verfallenen,verfallnerem,verfallener,verfallenes\"\n    },\n    \"verfassungswidrig\": {\n        \"form\": \"verfassungswidrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verfassungswidrige,verfassungswidrigem,verfassungswidrigen,verfassungswidriger,verfassungswidriges,verfassungswidrigere,verfassungswidrigerem,verfassungswidrigeren,verfassungswidrigerer,verfassungswidrigeres,verfassungswidrigste,verfassungswidrigstem,verfassungswidrigsten,verfassungswidrigster,verfassungswidrigstes\"\n    },\n    \"verfehlen\": {\n        \"form\": \"verfehlen\",\n        \"polarity\": \"-0.0373\",\n        \"pos\": \"VB\",\n        \"sense\": \"verfehlten,verfehlte,verfehlst,verfehlt,verfehlet,verfehle,verfehlest,verfehltet,verfehltest\"\n    },\n    \"verfluchen\": {\n        \"form\": \"verfluchen\",\n        \"polarity\": \"-0.3284\",\n        \"pos\": \"VB\",\n        \"sense\": \"verfluchet,verfluchten,verfluchst,verfluchtest,verfluchte,verfluche,verflucht,verfluchtet,verfluchest\"\n    },\n    \"verfälschen\": {\n        \"form\": \"verfälschen\",\n        \"polarity\": \"-0.3323\",\n        \"pos\": \"VB\",\n        \"sense\": \"verfälschten,verfälschtet,verfälschest,verfälschte,verfälschst,verfälsche,verfälschtest,verfälschet,verfälscht\"\n    },\n    \"vergammelt\": {\n        \"form\": \"vergammelt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergammelteres,vergammelterer,vergammeltste,vergammelterem,vergammelteren,vergammeltstem,vergammeltsten,vergammelten,vergammelte,vergammeltem,vergammeltere,vergammeltes,vergammeltster,vergammelter,vergammeltstes\"\n    },\n    \"vergeblich\": {\n        \"form\": \"vergeblich\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vergeblichstem,vergeblichsten,vergeblichem,vergeblichere,vergeblichen,vergebliches,vergeblicher,vergebliche,vergeblichste,vergeblichster,vergeblichstes,vergeblicherer,vergeblicheres,vergeblicherem,vergeblicheren\"\n    },\n    \"vergelten\": {\n        \"form\": \"vergelten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"vergeuden\": {\n        \"form\": \"vergeuden\",\n        \"polarity\": \"-0.1836\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergeudete,vergeude,vergeudtet,vergeudeten,vergeudtest,vergeudetet,vergeudet,vergeudte,vergeudetest,vergeudten,vergeudest\"\n    },\n    \"vergewaltigen\": {\n        \"form\": \"vergewaltigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergewaltige,vergewaltigtest,vergewaltigtet,vergewaltigt,vergewaltigten,vergewaltigte,vergewaltigest,vergewaltiget,vergewaltigst\"\n    },\n    \"verharmlosen\": {\n        \"form\": \"verharmlosen\",\n        \"polarity\": \"-0.049\",\n        \"pos\": \"VB\",\n        \"sense\": \"verharmlosten,verharmlost,verharmloset,verharmlose,verharmlostest,verharmlosest,verharmlostet,verharmloste\"\n    },\n    \"verhasst\": {\n        \"form\": \"verhasst\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verhassteres,verhasstester,verhassterer,verhasstem,verhassten,verhasstes,verhasstestes,verhasster,verhasstestem,verhasstesten,verhasstere,verhassteste,verhassteren,verhasste,verhassterem\"\n    },\n    \"verheeren\": {\n        \"form\": \"verheeren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verheere,verheerst,verheert,verheerest,verheeret,verheerte,verheertest,verheerten,verheertet\"\n    },\n    \"verheerend\": {\n        \"form\": \"verheerend\",\n        \"polarity\": \"-0.478\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verheerendstes,verheerendster,verheerendere,verheerenderes,verheerendsten,verheerenderer,verheerendem,verheerenden,verheerenderen,verheerendstem,verheerender,verheerendes,verheerenderem,verheerendste,verheerende\"\n    },\n    \"verherrlichen\": {\n        \"form\": \"verherrlichen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verherrlichet,verherrlichten,verherrlichte,verherrlichst,verherrlichest,verherrliche,verherrlicht,verherrlichtest,verherrlichtet\"\n    },\n    \"verhängnisvoll\": {\n        \"form\": \"verhängnisvoll\",\n        \"polarity\": \"-0.333\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verhängnisvolle,verhängnisvollem,verhängnisvollen,verhängnisvoller,verhängnisvolles,verhängnisvollere,verhängnisvollerem,verhängnisvolleren,verhängnisvollerer,verhängnisvolleres\"\n    },\n    \"verhöhnen\": {\n        \"form\": \"verhöhnen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verhöhntest,verhöhnet,verhöhntet,verhöhnte,verhöhnst,verhöhne,verhöhnest,verhöhnt,verhöhnten\"\n    },\n    \"verirren\": {\n        \"form\": \"verirren\",\n        \"polarity\": \"-0.0498\",\n        \"pos\": \"VB\",\n        \"sense\": \"verirrt,verirrtet,verirrst,verirre,verirrte,verirrten,verirrest,verirrtest,verirret\"\n    },\n    \"verkehrswidrig\": {\n        \"form\": \"verkehrswidrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verkehrswidrigste,verkehrswidrigster,verkehrswidrigstes,verkehrswidrigsten,verkehrswidrigerem,verkehrswidrigstem,verkehrswidrigere,verkehrswidriger,verkehrswidrigeren,verkehrswidrigen,verkehrswidrigerer,verkehrswidrigem,verkehrswidrigeres,verkehrswidrige,verkehrswidriges\"\n    },\n    \"verkleinern\": {\n        \"form\": \"verkleinern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verkleinerten,verkleinere,verkleinert,verkleinertet,verkleinerte,verkleinertest,verkleinerst,verkleineren\"\n    },\n    \"verkrüppeln\": {\n        \"form\": \"verkrüppeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verkrüppele,verkrüpple,verkrüppelst,verkrüppelt,verkrüpplest,verkrüpplet,verkrüppelte,verkrüppeltest,verkrüppelten,verkrüppeltet\"\n    },\n    \"verlangsamen\": {\n        \"form\": \"verlangsamen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verlangsamst,verlangsamte,verlangsamtet,verlangsamt,verlangsamet,verlangsamest,verlangsame,verlangsamten,verlangsamtest\"\n    },\n    \"verletzbar\": {\n        \"form\": \"verletzbar\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verletzbarerem,verletzbareren,verletzbare,verletzbarster,verletzbarste,verletzbareres,verletzbarsten,verletzbarerer,verletzbarstem,verletzbarstes,verletzbarere,verletzbaren,verletzbarem,verletzbarer,verletzbares\"\n    },\n    \"verletzen\": {\n        \"form\": \"verletzen\",\n        \"polarity\": \"-0.3615\",\n        \"pos\": \"VB\",\n        \"sense\": \"verletzte,verletze,verletzt,verletzten,verletzest,verletzet,verletztest,verletztet\"\n    },\n    \"verletzlich\": {\n        \"form\": \"verletzlich\",\n        \"polarity\": \"-0.0487\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verletzlicherer,verletzlichste,verletzlicheres,verletzlichstes,verletzlichster,verletzliche,verletzlicheren,verletzlicherem,verletzlichen,verletzlichem,verletzliches,verletzlicher,verletzlichere,verletzlichstem,verletzlichsten\"\n    },\n    \"verletzt\": {\n        \"form\": \"verletzt\",\n        \"polarity\": \"-0.5202\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verletzterem,verletzteste,verletztestem,verletztesten,verletzteren,verletzteres,verletztere,verletzterer,verletztester,verletztestes,verletzte,verletztem,verletzten,verletzter,verletztes\"\n    },\n    \"verleumden\": {\n        \"form\": \"verleumden\",\n        \"polarity\": \"-0.4473\",\n        \"pos\": \"VB\",\n        \"sense\": \"verleumdten,verleumde,verleumdet,verleumdte,verleumdetet,verleumdetest,verleumdtest,verleumdeten,verleumdest,verleumdtet,verleumdete\"\n    },\n    \"verlieren\": {\n        \"form\": \"verlieren\",\n        \"polarity\": \"-0.393\",\n        \"pos\": \"VB\",\n        \"sense\": \"verliere,verlierst,verliert,verlierest,verlieret,verlor,verlorst,verloren,verlort,verlöre,verlörest,verlörst,verlören,verlöret,verlört\"\n    },\n    \"verlogen\": {\n        \"form\": \"verlogen\",\n        \"polarity\": \"-0.3355\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verlogensten,verlogenerer,verlogeneres,verlogenes,verlogner,verlogeneren,verlogenste,verlogenstem,verlogenen,verlogenem,verlogenster,verlogenstes,verlogener,verlogneres,verlogene,verlogenere,verlogneren,verlognerem,verlognerer,verlogenerem,verlognere\"\n    },\n    \"vermeiden\": {\n        \"form\": \"vermeiden\",\n        \"polarity\": \"-0.5265\",\n        \"pos\": \"VB\",\n        \"sense\": \"vermeide,vermeidest,vermeidet,vermied,vermiedest,vermiedst,vermieden,vermiedet,vermiede\"\n    },\n    \"vermindern\": {\n        \"form\": \"vermindern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"vermindere,vermindert,vermindertet,verminderten,verminderen,verminderte,vermindertest,verminderst\"\n    },\n    \"vernichten\": {\n        \"form\": \"vernichten\",\n        \"polarity\": \"-0.4902\",\n        \"pos\": \"VB\",\n        \"sense\": \"vernichtet,vernichte,vernichtest,vernichtete,vernichtetest,vernichteten,vernichtetet,vernichten\"\n    },\n    \"vernichtend\": {\n        \"form\": \"vernichtend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vernichtende,vernichtendem,vernichtenden,vernichtender,vernichtendes,vernichtendere,vernichtenderem,vernichtenderen,vernichtenderer,vernichtenderes,vernichtendste,vernichtendstem,vernichtendsten,vernichtendster,vernichtendstes\"\n    },\n    \"verraten\": {\n        \"form\": \"verraten\",\n        \"polarity\": \"-0.2087\",\n        \"pos\": \"VB\",\n        \"sense\": \"verrate,verrätst,verrät,verratet,verratest,verriet,verrietest,verrietst,verrieten,verrietet,verriete\"\n    },\n    \"verringern\": {\n        \"form\": \"verringern\",\n        \"polarity\": \"-0.3537\",\n        \"pos\": \"VB\",\n        \"sense\": \"verringere,verringerst,verringert,verringerte,verringertest,verringerten,verringertet\"\n    },\n    \"verrucht\": {\n        \"form\": \"verrucht\",\n        \"polarity\": \"-0.1714\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verruchtesten,verruchtestem,verruchtester,verruchtestes,verruchterem,verruchteren,verruchte,verruchteste,verruchteres,verruchterer,verruchtes,verruchter,verruchtem,verruchtere,verruchten\"\n    },\n    \"verräterisch\": {\n        \"form\": \"verräterisch\",\n        \"polarity\": \"-0.311\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verrückt\": {\n        \"form\": \"verrückt\",\n        \"polarity\": \"-0.0337\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"verschimmelt\": {\n        \"form\": \"verschimmelt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verschimmelte,verschimmeltem,verschimmelten,verschimmelter,verschimmeltes,verschimmeltere,verschimmelterem,verschimmelteren,verschimmelterer,verschimmelteres,verschimmeltste,verschimmeltstem,verschimmeltsten,verschimmeltster,verschimmeltstes\"\n    },\n    \"verschlechtern\": {\n        \"form\": \"verschlechtern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschlechtere,verschlechterst,verschlechtert,verschlechterte,verschlechtertest,verschlechterten,verschlechtertet\"\n    },\n    \"verschleppen\": {\n        \"form\": \"verschleppen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschleppst,verschleppte,verschlepptest,verschleppest,verschleppet,verschleppten,verschlepptet,verschleppe,verschleppt\"\n    },\n    \"verschleudern\": {\n        \"form\": \"verschleudern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschleudertet,verschleuderte,verschleuderst,verschleudert,verschleudertest,verschleuderten,verschleudere,verschleuderen\"\n    },\n    \"verschlingen\": {\n        \"form\": \"verschlingen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschlinge,verschlingst,verschlingest,verschlingt,verschlinget,verschlang,verschlangst,verschlangen,verschlangt,verschlänge,verschlängest,verschlängst,verschlängen,verschlänget,verschlängt,verschling\"\n    },\n    \"verschmutzen\": {\n        \"form\": \"verschmutzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschmutzest,verschmutztet,verschmutztest,verschmutzet,verschmutzten,verschmutzte,verschmutzt,verschmutze\"\n    },\n    \"verschwenden\": {\n        \"form\": \"verschwenden\",\n        \"polarity\": \"-0.0494\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschwendest,verschwende,verschwendeten,verschwendete,verschwendetest,verschwendet,verschwendetet\"\n    },\n    \"verschwenderisch\": {\n        \"form\": \"verschwenderisch\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verschwenderischste,verschwenderischeres,verschwenderische,verschwenderischen,verschwenderischem,verschwenderischer,verschwenderisches,verschwenderischstem,verschwenderischsten,verschwenderischster,verschwenderischstes,verschwenderischere,verschwenderischerer,verschwenderischeren,verschwenderischerem\"\n    },\n    \"verschwinden\": {\n        \"form\": \"verschwinden\",\n        \"polarity\": \"-0.3588\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschwinde,verschwindest,verschwindet,verschwand,verschwandest,verschwandst,verschwanden,verschwandet,verschwände,verschwändest,verschwänden,verschwändet\"\n    },\n    \"versenken\": {\n        \"form\": \"versenken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"versenkt,versenktet,versenkte,vergesenkt,versenket,versenkst,versenke,versenktest,versenkten,versenkest\"\n    },\n    \"versklaven\": {\n        \"form\": \"versklaven\",\n        \"polarity\": \"-0.3142\",\n        \"pos\": \"VB\",\n        \"sense\": \"versklavt,versklavtest,versklavten,versklave,versklavet,versklavtet,versklavst,versklavte,versklavest\"\n    },\n    \"versklavt\": {\n        \"form\": \"versklavt\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"versklavteres,versklavterer,versklavteste,versklavtesten,versklavteren,versklavtestem,versklavterem,versklavtestes,versklavte,versklavtester,versklavtere,versklavten,versklavtem,versklavtes,versklavter\"\n    },\n    \"verspielen\": {\n        \"form\": \"verspielen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verspiele,verspielt,verspieltet,verspielet,verspielst,verspieltest,verspielte,verspielten,verspielest\"\n    },\n    \"verspätet\": {\n        \"form\": \"verspätet\",\n        \"polarity\": \"-0.4819\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"verstimmen\": {\n        \"form\": \"verstimmen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstimmtet,verstimmet,verstimm,verstimmten,verstimme,verstimmst,verstimmte,verstimmtest,verstimmest\"\n    },\n    \"verstopfen\": {\n        \"form\": \"verstopfen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstopfe,verstopfst,verstopft,verstopfest,verstopfet,verstopfte,verstopftest,verstopften,verstopftet\"\n    },\n    \"verstoßen\": {\n        \"form\": \"verstoßen\",\n        \"polarity\": \"-0.3521\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstoße,verstößt,verstoßt,verstoßest,verstoßet,verstieß,verstießest,verstießt,verstießen,verstieße,verstießet\"\n    },\n    \"verstricken\": {\n        \"form\": \"verstricken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstrickst,verstrickte,verstrickt,verstricktet,verstricke,verstrickest,verstricket,verstricktest,verstrickten\"\n    },\n    \"vertreiben\": {\n        \"form\": \"vertreiben\",\n        \"polarity\": \"-0.3684\",\n        \"pos\": \"VB\",\n        \"sense\": \"vertreibe,vertreibst,vertreibt,vertreibest,vertreibet,vertrieb,vertriebest,vertriebst,vertrieben,vertriebet,vertriebt\"\n    },\n    \"verurteilen\": {\n        \"form\": \"verurteilen\",\n        \"polarity\": \"-0.77\",\n        \"pos\": \"VB\",\n        \"sense\": \"verurteilest,verurteiltet,verurteile,verurteilten,verurteilet,verurteilt,verurteilte,verurteiltest,verurteilst\"\n    },\n    \"verwelken\": {\n        \"form\": \"verwelken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwelke,verwelkst,verwelkt,verwelkest,verwelket,verwelkte,verwelktest,verwelkten,verwelktet\"\n    },\n    \"verwerflich\": {\n        \"form\": \"verwerflich\",\n        \"polarity\": \"-0.7418\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verwerflicheres,verwerflichem,verwerflicherer,verwerflichstem,verwerflichsten,verwerflichstes,verwerflichster,verwerfliche,verwerflichere,verwerflichste,verwerflichen,verwerflicherem,verwerflicheren,verwerflicher,verwerfliches\"\n    },\n    \"verwickeln\": {\n        \"form\": \"verwickeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwickelten,verwickle,verwickeltest,verwickelen,verwickeltet,verwickel,verwickelte,verwickelst,verwickele,verwickelt\"\n    },\n    \"verwirren\": {\n        \"form\": \"verwirren\",\n        \"polarity\": \"-0.0474\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwirret,verwirre,verwirrtet,verwirrest,verwirrt,verwirrst,verwirrten,verwirrte,verwirrtest\"\n    },\n    \"verworren\": {\n        \"form\": \"verworren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verworrenstes,verworrenster,verworrenes,verworrener,verworrene,verworrenem,verworrenen,verworrenere,verworrenerem,verworrenerer,verworreneren,verworreneres,verworrenste,verworrensten,verworrenstem\"\n    },\n    \"verwunden\": {\n        \"form\": \"verwunden\",\n        \"polarity\": \"-0.3186\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwundetet,verwundtet,verwundest,verwundete,verwunde,verwundte,verwundetest,verwundten,verwundet,verwundeten,verwundtest\"\n    },\n    \"verwüsten\": {\n        \"form\": \"verwüsten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwüste,verwüstest,verwüstet,verwüstete,verwüstetest,verwüsteten,verwüstetet\"\n    },\n    \"verzerren\": {\n        \"form\": \"verzerren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verzerrte,verzerrten,verzerrst,verzerret,verzerrtest,verzerre,verzerrest,verzerrt,verzerrtet\"\n    },\n    \"verzichten\": {\n        \"form\": \"verzichten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verzichte,verzichtest,verzichtet,verzichtete,verzichtetest,verzichteten,verzichtetet\"\n    },\n    \"verzweifeln\": {\n        \"form\": \"verzweifeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"verzweifeltest,verzweifelte,verzweifeltet,verzweifelst,verzweifelen,verzweifle,verzweifelten,verzweifel,verzweifele,verzweifelt\"\n    },\n    \"verzweifelt\": {\n        \"form\": \"verzweifelt\",\n        \"polarity\": \"-0.1947\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verzweifeltstes,verzweifeltster,verzweifelterer,verzweifeltstem,verzweifeltsten,verzweifelteres,verzweifelteren,verzweifelterem,verzweifelte,verzweifeltere,verzweifeltes,verzweifelter,verzweifeltste,verzweifelten,verzweifeltem\"\n    },\n    \"verzwickt\": {\n        \"form\": \"verzwickt\",\n        \"polarity\": \"-0.0403\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verzwicktestes,verzwicktester,verzwicktem,verzwicktere,verzwickten,verzwickte,verzwickteste,verzwicktes,verzwickter,verzwicktestem,verzwicktesten,verzwickteres,verzwickterer,verzwickteren,verzwickterem\"\n    },\n    \"verzögern\": {\n        \"form\": \"verzögern\",\n        \"polarity\": \"-0.3409\",\n        \"pos\": \"VB\",\n        \"sense\": \"verzögertet,verzögert,verzögeren,verzögerte,verzögerten,verzögerst,verzögertest,verzögere\"\n    },\n    \"verächtlich\": {\n        \"form\": \"verächtlich\",\n        \"polarity\": \"-0.3245\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verängstigen\": {\n        \"form\": \"verängstigen\",\n        \"polarity\": \"-0.056\",\n        \"pos\": \"VB\",\n        \"sense\": \"verängstige,verängstigst,verängstigt,verängstigest,verängstiget,verängstigte,verängstigtest,verängstigten,verängstigtet\"\n    },\n    \"verärgern\": {\n        \"form\": \"verärgern\",\n        \"polarity\": \"-0.1825\",\n        \"pos\": \"VB\",\n        \"sense\": \"verärgerte,verärgerst,verärgertest,verärgerten,verärgeren,verärgertet,verärgert,verärgere\"\n    },\n    \"volltrunken\": {\n        \"form\": \"volltrunken\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"volltrunkenster,volltrunkenere,volltrunkenstes,volltrunkenem,volltrunkenen,volltrunkener,volltrunkenste,volltrunkene,volltrunkenes,volltrunkenstem,volltrunkensten,volltrunkeneren,volltrunkenerem,volltrunkeneres,volltrunkenerer\"\n    },\n    \"vorhersehbar\": {\n        \"form\": \"vorhersehbar\",\n        \"polarity\": \"-0.3414\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorhersehbarere,vorhersehbareres,vorhersehbarerer,vorhersehbarste,vorhersehbareren,vorhersehbares,vorhersehbarer,vorhersehbarerem,vorhersehbaren,vorhersehbarem,vorhersehbarstes,vorhersehbarster,vorhersehbarsten,vorhersehbare,vorhersehbarstem\"\n    },\n    \"vorwerfen\": {\n        \"form\": \"vorwerfen\",\n        \"polarity\": \"-0.3254\",\n        \"pos\": \"VB\",\n        \"sense\": \"vorwerfe,vorwirfst,vorwirft,vorwerft,vorwerfest,vorwerfet,vorwarf,vorwarfst,vorwarfen,vorwarft,vorwürfe,vorwürfest,vorwürfst,vorwürfen,vorwürfet,vorwürft\"\n    },\n    \"vorzeitig\": {\n        \"form\": \"vorzeitig\",\n        \"polarity\": \"-0.3462\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorzeitigerem,vorzeitigere,vorzeitigeren,vorzeitigsten,vorzeitigen,vorzeitigerer,vorzeitigste,vorzeitigstem,vorzeitigem,vorzeitigster,vorzeitiges,vorzeitige,vorzeitiger,vorzeitigeres,vorzeitigstes\"\n    },\n    \"vulgär\": {\n        \"form\": \"vulgär\",\n        \"polarity\": \"-0.3122\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wackelig\": {\n        \"form\": \"wackelig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wackeligerer,wackeligste,wackeligeres,wackeligere,wackeligen,wackeliger,wackeliges,wackeligstes,wackeligster,wackeligsten,wackeligem,wackeligstem,wackeligeren,wackeligerem,wackelige\"\n    },\n    \"wackeln\": {\n        \"form\": \"wackeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"wackelst,wackeltest,wackele,wackelt,wackle,wackl,wackeltet,wackelten,gewackelt,wackelte,wackelen\"\n    },\n    \"wahnsinnig\": {\n        \"form\": \"wahnsinnig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wahnsinnigen,wahnsinnigere,wahnsinnigem,wahnsinnigerem,wahnsinnige,wahnsinnigeren,wahnsinnigster,wahnsinnigstes,wahnsinnigerer,wahnsinnigeres,wahnsinnigsten,wahnsinnigste,wahnsinnigstem,wahnsinniges,wahnsinniger\"\n    },\n    \"wankelmütig\": {\n        \"form\": \"wankelmütig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wegfallen\": {\n        \"form\": \"wegfallen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"wegfalle,wegfällst,wegfällt,wegfallt,wegfallest,wegfallet,wegfiel,wegfielst,wegfielen,wegfielt,wegfiele,wegfielest,wegfielet\"\n    },\n    \"weglassen\": {\n        \"form\": \"weglassen\",\n        \"polarity\": \"-0.3362\",\n        \"pos\": \"VB\",\n        \"sense\": \"weglasse,weglässt,wegläßt,weglasst,weglaßt,weglassest,weglasset,wegließ,wegließest,wegließt,wegließen,wegließe,wegließet\"\n    },\n    \"wehklagend\": {\n        \"form\": \"wehklagend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wehklagende,wehklagendem,wehklagenden,wehklagender,wehklagendes,wehklagendere,wehklagenderem,wehklagenderen,wehklagenderer,wehklagenderes,wehklagendste,wehklagendstem,wehklagendsten,wehklagendster,wehklagendstes\"\n    },\n    \"weinen\": {\n        \"form\": \"weinen\",\n        \"polarity\": \"-0.1651\",\n        \"pos\": \"VB\",\n        \"sense\": \"weinst,weintet,weintest,weinte,weinet,weinest,weinten,geweint,weint,weine\"\n    },\n    \"welken\": {\n        \"form\": \"welken\",\n        \"polarity\": \"-0.0531\",\n        \"pos\": \"VB\",\n        \"sense\": \"welkt,welket,gewelkt,welke,welkest,welktest,welkst,welktet,welkte,welkten\"\n    },\n    \"wertlos\": {\n        \"form\": \"wertlos\",\n        \"polarity\": \"-0.6264\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wertlosesten,wertlosestem,wertlose,wertlosen,wertlosem,wertloses,wertloser,wertloserem,wertloseren,wertlosester,wertlosere,wertlosestes,wertloserer,wertloseste,wertloseres\"\n    },\n    \"wettbewerbswidrig\": {\n        \"form\": \"wettbewerbswidrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wettbewerbswidrige,wettbewerbswidrigem,wettbewerbswidrigen,wettbewerbswidriger,wettbewerbswidriges,wettbewerbswidrigere,wettbewerbswidrigerem,wettbewerbswidrigeren,wettbewerbswidrigerer,wettbewerbswidrigeres,wettbewerbswidrigste,wettbewerbswidrigstem,wettbewerbswidrigsten,wettbewerbswidrigster,wettbewerbswidrigstes\"\n    },\n    \"wichtigtun\": {\n        \"form\": \"wichtigtun\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"wichtigtue,wichtigtust,wichtigtut,wichtigtuest,wichtigtuet,wichtigtat,wichtigtatest,wichtigtatst,wichtigtaten,wichtigtatet,wichtigtäte,wichtigtätest,wichtigtäten,wichtigtätet\"\n    },\n    \"widerlegen\": {\n        \"form\": \"widerlegen\",\n        \"polarity\": \"-0.3452\",\n        \"pos\": \"VB\",\n        \"sense\": \"widerlegte,widerlegten,widergelegt,widerlegtest,widerlegst,widerlegest,widerleget,widerlegt,widerlege,widerlegtet\"\n    },\n    \"widernatürlich\": {\n        \"form\": \"widernatürlich\",\n        \"polarity\": \"-0.3064\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"widerrufen\": {\n        \"form\": \"widerrufen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"widerrufe,widerrufst,widerruft,widerrufest,widerrufet,widerrief,widerriefst,widerriefen,widerrieft,widerriefest,widerriefe,widerriefet\"\n    },\n    \"widersinnig\": {\n        \"form\": \"widersinnig\",\n        \"polarity\": \"-0.3266\",\n        \"pos\": \"JJ\",\n        \"sense\": \"widersinnigste,widersinnigere,widersinnigen,widersinnigem,widersinnigstem,widersinnigsten,widersinnigster,widersinniges,widersinniger,widersinnigstes,widersinnigeren,widersinnige,widersinnigerem,widersinnigerer,widersinnigeres\"\n    },\n    \"widerspenstig\": {\n        \"form\": \"widerspenstig\",\n        \"polarity\": \"-0.1789\",\n        \"pos\": \"JJ\",\n        \"sense\": \"widerspenstigster,widerspenstigstes,widerspenstige,widerspenstiger,widerspenstiges,widerspenstigen,widerspenstigem,widerspenstigeres,widerspenstigerer,widerspenstigerem,widerspenstigsten,widerspenstigstem,widerspenstigeren,widerspenstigere,widerspenstigste\"\n    },\n    \"widersprechen\": {\n        \"form\": \"widersprechen\",\n        \"polarity\": \"-0.354\",\n        \"pos\": \"VB\",\n        \"sense\": \"widerspreche,widersprichst,widerspricht,widersprecht,widersprechest,widersprechet,widersprach,widersprachst,widersprachen,widerspracht,widerspräche,widersprächest,widersprächst,widersprächen,widersprächet,widersprächt\"\n    },\n    \"widersprüchlich\": {\n        \"form\": \"widersprüchlich\",\n        \"polarity\": \"-0.2043\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"widerwärtig\": {\n        \"form\": \"widerwärtig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"widrig\": {\n        \"form\": \"widrig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"widrigerer,widrigeres,widrigerem,widrigste,widrigeren,widrigen,widrigstem,widrigem,widrigere,widriger,widrigsten,widrigstes,widrigster,widrige,widriges\"\n    },\n    \"willkürlich\": {\n        \"form\": \"willkürlich\",\n        \"polarity\": \"-0.3481\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wirkungslos\": {\n        \"form\": \"wirkungslos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wirkungslosere,wirkungslosesten,wirkungslosestem,wirkungsloseres,wirkungsloses,wirkungsloserer,wirkungsloser,wirkungslosem,wirkungslosen,wirkungslosester,wirkungsloseste,wirkungsloseren,wirkungslosestes,wirkungslose,wirkungsloserem\"\n    },\n    \"wirr\": {\n        \"form\": \"wirr\",\n        \"polarity\": \"-0.1841\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wirrste,wirrstem,wirrsten,wirres,wirrerem,wirre,wirren,wirreres,wirrem,wirrere,wirrerer,wirrstes,wirrster,wirrer,wirreren\"\n    },\n    \"wutentbrannt\": {\n        \"form\": \"wutentbrannt\",\n        \"polarity\": \"-0.3138\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wutentbrannte,wutentbranntem,wutentbrannten,wutentbrannter,wutentbranntes\"\n    },\n    \"wutschäumend\": {\n        \"form\": \"wutschäumend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"würgen\": {\n        \"form\": \"würgen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"würge,würgst,würgt,würgest,würget,würgte,würgtest,würgten,würgtet,gewürgt\"\n    },\n    \"wüten\": {\n        \"form\": \"wüten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"wüte,wütest,wütet,wütete,wütetest,wüteten,wütetet,gewütet\"\n    },\n    \"wütend\": {\n        \"form\": \"wütend\",\n        \"polarity\": \"-0.3233\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"zahlungsunfähig\": {\n        \"form\": \"zahlungsunfähig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zahlungsunfähige,zahlungsunfähigem,zahlungsunfähigen,zahlungsunfähiger,zahlungsunfähiges\"\n    },\n    \"zappeln\": {\n        \"form\": \"zappeln\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zappele,zapple,zappelst,zappelt,zapplest,zapplet,zappelte,zappeltest,zappelten,gezappelt\"\n    },\n    \"zaudern\": {\n        \"form\": \"zaudern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zauderst,zauderte,zaudert,zaudertet,zaudere,zaudertest,zauderen,zauderten,gezaudert\"\n    },\n    \"zensieren\": {\n        \"form\": \"zensieren\",\n        \"polarity\": \"-0.315\",\n        \"pos\": \"VB\",\n        \"sense\": \"zensiertet,zensiere,zensiertest,zensierst,zensierte,zensierten,zensieret,zensierest,zensiert\"\n    },\n    \"zerbrechen\": {\n        \"form\": \"zerbrechen\",\n        \"polarity\": \"-0.0522\",\n        \"pos\": \"VB\",\n        \"sense\": \"zerbreche,zerbrichst,zerbricht,zerbrecht,zerbrechest,zerbrechet,zerbrach,zerbrachst,zerbrachen,zerbracht,zerbräche,zerbrächest,zerbrächst,zerbrächen,zerbrächet,zerbrächt,zerbrochen\"\n    },\n    \"zerfressen\": {\n        \"form\": \"zerfressen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zerren\": {\n        \"form\": \"zerren\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zerrtet,zerrtest,zerret,zerrest,gezerrt,zerrten,zerrt,zerre,zerrst,zerrte\"\n    },\n    \"zerrissen\": {\n        \"form\": \"zerrissen\",\n        \"polarity\": \"-0.4776\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zerrissenes,zerrissener,zerrissenen,zerrissenster,zerrissenstes,zerrissenste,zerrissenerer,zerrissenstem,zerrissensten,zerrisseneres,zerrissenerem,zerrisseneren,zerrissenere,zerrissenem,zerrissene\"\n    },\n    \"zerschlagen\": {\n        \"form\": \"zerschlagen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zerschlagenere,zerschlagenerem,zerschlagenste,zerschlageneren,zerschlagenem,zerschlagenstem,zerschlagenen,zerschlagenerer,zerschlagensten,zerschlageneres,zerschlagener,zerschlagenstes,zerschlagenes,zerschlagenster,zerschlagene\"\n    },\n    \"zerschmettern\": {\n        \"form\": \"zerschmettern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zerschmettertest,zerschmetterten,zerschmetterst,zerschmettere,zerschmettert,zerschmetter,zerschmetteren,zerschmettertet,zerschmetterte\"\n    },\n    \"zerschunden\": {\n        \"form\": \"zerschunden\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zerschundnerem,zerschundene,zerschundeneres,zerschundenerer,zerschundneren,zerschundenstes,zerschundneres,zerschundenster,zerschundeneren,zerschundnerer,zerschundnere,zerschundenerem,zerschundner,zerschundenes,zerschundener,zerschundenste,zerschundenen,zerschundenere,zerschundenem,zerschundenst,zerschundenstem,zerschundensten\"\n    },\n    \"zersetzen\": {\n        \"form\": \"zersetzen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zersetzte,zersetztet,zersetzest,zersetzten,zersetztest,zersetzet,zersetze,zersetzt\"\n    },\n    \"zersetzend\": {\n        \"form\": \"zersetzend\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zersetzende,zersetzendem,zersetzenden,zersetzender,zersetzendes,zersetzendere,zersetzenderem,zersetzenderen,zersetzenderer,zersetzenderes,zersetzendste,zersetzendstem,zersetzendsten,zersetzendster,zersetzendstes\"\n    },\n    \"zerstreuen\": {\n        \"form\": \"zerstreuen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zerstreue,zerstreust,zerstreut,zerstreuest,zerstreuet,zerstreute,zerstreutest,zerstreuten,zerstreutet\"\n    },\n    \"zerstören\": {\n        \"form\": \"zerstören\",\n        \"polarity\": \"-0.5131\",\n        \"pos\": \"VB\",\n        \"sense\": \"zerstöret,zerstörest,zerstörten,zerstörte,zerstörst,zerstörtest,zerstöre,zerstört,zerstörtet\"\n    },\n    \"zerstörerisch\": {\n        \"form\": \"zerstörerisch\",\n        \"polarity\": \"-0.4715\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"zerstört\": {\n        \"form\": \"zerstört\",\n        \"polarity\": \"-0.503\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zerstörte,zerstörtem,zerstörten,zerstörter,zerstörtes\"\n    },\n    \"ziellos\": {\n        \"form\": \"ziellos\",\n        \"polarity\": \"-0.3305\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ziellose,zielloser,ziellosen,ziellosem,zielloseste,zielloserem,zielloses,zielloserer,zielloseres,zielloseren,ziellosester,ziellosestes,ziellosere,ziellosestem,ziellosesten\"\n    },\n    \"zittern\": {\n        \"form\": \"zittern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zitteren,zitterte,zitterst,zitterten,zittertet,zittertest,zittert,zittere,gezittert\"\n    },\n    \"zornig\": {\n        \"form\": \"zornig\",\n        \"polarity\": \"-0.1853\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zornigerer,zorniges,zorniger,zornigeres,zornige,zornigen,zornigem,zornigste,zornigeren,zornigerem,zornigere,zornigsten,zornigstem,zornigster,zornigstes\"\n    },\n    \"zurückbleiben\": {\n        \"form\": \"zurückbleiben\",\n        \"polarity\": \"-0.1831\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zurückgeben\": {\n        \"form\": \"zurückgeben\",\n        \"polarity\": \"-0.0619\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zurückgegeben\": {\n        \"form\": \"zurückgegeben\",\n        \"polarity\": \"-0.3502\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zurückgegebene,zurückgegebenem,zurückgegebenen,zurückgegebener,zurückgegebenes\"\n    },\n    \"zurückgehen\": {\n        \"form\": \"zurückgehen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zurückgeschickt\": {\n        \"form\": \"zurückgeschickt\",\n        \"polarity\": \"-0.3377\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zurückgeschickte,zurückgeschicktem,zurückgeschickten,zurückgeschickter,zurückgeschicktes\"\n    },\n    \"zurückhalten\": {\n        \"form\": \"zurückhalten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zurückschicken\": {\n        \"form\": \"zurückschicken\",\n        \"polarity\": \"-0.331\",\n        \"pos\": \"VB\",\n        \"sense\": \"zurückschickt,zurückschickten,zurückschicket,zurückschicktet,zurückgeschickt,zurückschickte,zurückschickst,zurückschicke,zurückschicktest,zurückschickest\"\n    },\n    \"zusammenbrechen\": {\n        \"form\": \"zusammenbrechen\",\n        \"polarity\": \"-0.3317\",\n        \"pos\": \"VB\",\n        \"sense\": \"zusammenbreche,zusammenbrichst,zusammenbricht,zusammenbrecht,zusammenbrechest,zusammenbrechet,zusammenbrach,zusammenbrachst,zusammenbrachen,zusammenbracht,zusammenbräche,zusammenbrächest,zusammenbrächst,zusammenbrächen,zusammenbrächet,zusammenbrächt\"\n    },\n    \"zusammenhanglos\": {\n        \"form\": \"zusammenhanglos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zusammenhanglosestes,zusammenhangloseren,zusammenhangloserem,zusammenhangloserer,zusammenhangloseres,zusammenhanglose,zusammenhanglosestem,zusammenhanglosesten,zusammenhangloseste,zusammenhanglosester,zusammenhanglosere,zusammenhangloser,zusammenhangloses,zusammenhanglosen,zusammenhanglosem\"\n    },\n    \"zusammenrechen\": {\n        \"form\": \"zusammenrechen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zusammenreche,zusammenrechst,zusammenrecht,zusammenrechest,zusammenrechet,zusammenrechte,zusammenrechtest,zusammenrechten,zusammenrechtet,zusammengerecht\"\n    },\n    \"zusammenschlagen\": {\n        \"form\": \"zusammenschlagen\",\n        \"polarity\": \"-0.0395\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zusammenstoßen\": {\n        \"form\": \"zusammenstoßen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"zusammenstoße,zusammenstößt,zusammenstoßt,zusammenstoßest,zusammenstoßet,zusammenstieß,zusammenstießest,zusammenstießt,zusammenstießen,zusammenstieße,zusammenstießet\"\n    },\n    \"zwecklos\": {\n        \"form\": \"zwecklos\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zwecklosen,zwecklosem,zweckloser,zweckloses,zwecklosere,zwecklosester,zwecklosestes,zweckloseres,zweckloserer,zwecklosesten,zwecklosestem,zweckloseste,zweckloseren,zweckloserem,zwecklose\"\n    },\n    \"zweideutig\": {\n        \"form\": \"zweideutig\",\n        \"polarity\": \"-0.3174\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zweideutigsten,zweideutigstem,zweideutigstes,zweideutigster,zweideutigste,zweideutigere,zweideutigerem,zweideutigeren,zweideutigem,zweideutige,zweideutigen,zweideutigeres,zweideutiges,zweideutiger,zweideutigerer\"\n    },\n    \"zweifelhaft\": {\n        \"form\": \"zweifelhaft\",\n        \"polarity\": \"-0.3455\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zweifelhaftem,zweifelhaften,zweifelhafteres,zweifelhaftestem,zweifelhafterer,zweifelhaftesten,zweifelhafte,zweifelhafteren,zweifelhafterem,zweifelhafteste,zweifelhaftestes,zweifelhaftester,zweifelhaftere,zweifelhafter,zweifelhaftes\"\n    },\n    \"zweifeln\": {\n        \"form\": \"zweifeln\",\n        \"polarity\": \"-0.1935\",\n        \"pos\": \"VB\",\n        \"sense\": \"zweifelten,gezweifelt,zweifelen,zweifle,zweifeltet,zweifeltest,zweifelt,zweifelte,zweifelst,zweifele,zweifel\"\n    },\n    \"zweitklassig\": {\n        \"form\": \"zweitklassig\",\n        \"polarity\": \"-0.1725\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zweitklassige,zweitklassigem,zweitklassigen,zweitklassiger,zweitklassiges\"\n    },\n    \"zwiespältig\": {\n        \"form\": \"zwiespältig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zwiespältige,zwiespältigem,zwiespältigen,zwiespältiger,zwiespältiges\"\n    },\n    \"zwieträchtig\": {\n        \"form\": \"zwieträchtig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"zwingen\": {\n        \"form\": \"zwingen\",\n        \"polarity\": \"-0.4975\",\n        \"pos\": \"VB\",\n        \"sense\": \"zwinge,zwingst,zwingt,zwingest,zwinget,zwang,zwangst,zwangen,zwangt,zwänge,zwängest,zwängst,zwängen,zwänget,zwängt,gezwungen\"\n    },\n    \"zögern\": {\n        \"form\": \"zögern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"gezögert,zögertet,zögeren,zögerst,zögertest,zögerte,zögerten,zögert,zögere\"\n    },\n    \"züchtigen\": {\n        \"form\": \"züchtigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"züchtigt,züchtigtest,züchtige,gezüchtigt,züchtigtet,züchtigest,züchtiget,züchtigst,züchtigte,züchtigten\"\n    },\n    \"Ärger\": {\n        \"form\": \"Ärger\",\n        \"polarity\": \"-0.3465\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ärgers\"\n    },\n    \"Ärgernis\": {\n        \"form\": \"Ärgernis\",\n        \"polarity\": \"-0.3357\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ärgernisses,Ärgernissen,Ärgernisse\"\n    },\n    \"Übel\": {\n        \"form\": \"Übel\",\n        \"polarity\": \"-0.4895\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übels,Übeln\"\n    },\n    \"Überfüllung\": {\n        \"form\": \"Überfüllung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überfüllungen\"\n    },\n    \"Übergewicht\": {\n        \"form\": \"Übergewicht\",\n        \"polarity\": \"-0.2011\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übergewichtes,Übergewichten,Übergewichte,Übergewichts\"\n    },\n    \"Überhöhung\": {\n        \"form\": \"Überhöhung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überhöhungen\"\n    },\n    \"Überlastung\": {\n        \"form\": \"Überlastung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überlastungen\"\n    },\n    \"Übermaß\": {\n        \"form\": \"Übermaß\",\n        \"polarity\": \"-0.3337\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übermaße,Übermaßes,Übermaßen\"\n    },\n    \"Überschreitung\": {\n        \"form\": \"Überschreitung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überschreitungen\"\n    },\n    \"Überschuß\": {\n        \"form\": \"Überschuß\",\n        \"polarity\": \"-0.1924\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überschuss,Überschusse,Überschusses,Überschüsse,Überschüssen\"\n    },\n    \"Überschwemmung\": {\n        \"form\": \"Überschwemmung\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überschwemmungen\"\n    },\n    \"Übertreibung\": {\n        \"form\": \"Übertreibung\",\n        \"polarity\": \"-0.0424\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übertreibungen\"\n    },\n    \"ängstigen\": {\n        \"form\": \"ängstigen\",\n        \"polarity\": \"-0.3193\",\n        \"pos\": \"VB\",\n        \"sense\": \"ängstige,änsgtigst,ängstigest,ängstiget,ängstigte,ängstigtest,ängstigten,ängstigtet\"\n    },\n    \"ängstlich\": {\n        \"form\": \"ängstlich\",\n        \"polarity\": \"-0.4735\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ängstlichste,ängstlichen,ängstlichem,ängstlicheren,ängstlichstem,ängstlichsten,ängstlicherem,ängstlicher,ängstlichster,ängstliche,ängstlichstes,ängstliches,ängstlichere,ängstlicheres,ängstlicherer\"\n    },\n    \"ärgerlich\": {\n        \"form\": \"ärgerlich\",\n        \"polarity\": \"-0.3111\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ärgerlichstem,ärgerlichsten,ärgerlichen,ärgerlichem,ärgerliches,ärgerlichster,ärgerlicher,ärgerlichstes,ärgerlicherer,ärgerlicheres,ärgerlicheren,ärgerlicherem,ärgerliche,ärgerlichere,ärgerlichste\"\n    },\n    \"ärgern\": {\n        \"form\": \"ärgern\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"ärgere,ärgerst,ärgert,ärgerte,ärgertest,ärgerten,ärgertet,geärgert\"\n    },\n    \"öde\": {\n        \"form\": \"öde\",\n        \"polarity\": \"-0.457\",\n        \"pos\": \"JJ\",\n        \"sense\": \"öd,ödem,öden,öder,ödes,ödere,öderem,öderen,öderer,öderes,ödeste,ödestem,ödesten,ödester,ödestes\"\n    },\n    \"übellaunig\": {\n        \"form\": \"übellaunig\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übellaunigerer,übellauniges,übellauniger,übellaunigem,übellaunigere,übellaunigeres,übellaunigen,übellaunige,übellaunigste,übellaunigstes,übellaunigster,übellaunigeren,übellaunigerem,übellaunigsten,übellaunigstem\"\n    },\n    \"überfallen\": {\n        \"form\": \"überfallen\",\n        \"polarity\": \"-0.3457\",\n        \"pos\": \"VB\",\n        \"sense\": \"überfalle,überfällst,überfällt,überfallt,überfallest,überfallet,überfiel,überfielst,überfielen,überfielt,überfiele,überfielest,überfielet\"\n    },\n    \"überfluten\": {\n        \"form\": \"überfluten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"überflute,überflutest,überflutet,überflutete,überflutetest,überfluteten,überflutetet\"\n    },\n    \"überflüssig\": {\n        \"form\": \"überflüssig\",\n        \"polarity\": \"-0.5154\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"übergewichtig\": {\n        \"form\": \"übergewichtig\",\n        \"polarity\": \"-0.3215\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übergewichtigstes,übergewichtigster,übergewichtigste,übergewichtigstem,übergewichtigeren,übergewichtigeres,übergewichtigsten,übergewichtigerer,übergewichtiger,übergewichtigerem,übergewichtigen,übergewichtigere,übergewichtigem,übergewichtige,übergewichtiges\"\n    },\n    \"überhöhen\": {\n        \"form\": \"überhöhen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"überhöhtet,überhöhe,überhöht,überhöhet,überhöhest,überhöhtest,überhöhst,überhöhte,überhöhten\"\n    },\n    \"überlasten\": {\n        \"form\": \"überlasten\",\n        \"polarity\": \"-0.3413\",\n        \"pos\": \"VB\",\n        \"sense\": \"überlaste,überlastest,überlastet,überlastete,überlastetest,überlasteten,überlastetet\"\n    },\n    \"übermäßig\": {\n        \"form\": \"übermäßig\",\n        \"polarity\": \"-0.1844\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"überschreiten\": {\n        \"form\": \"überschreiten\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"überschreite,überschreitest,überschreitet,überschritt,überschrittest,überschritten,überschrittet\"\n    },\n    \"überschwemmen\": {\n        \"form\": \"überschwemmen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"überschwemmet,überschwemmst,überschwemmt,überschwemmte,überschwemmtet,überschwemmtest,überschwemme,überschwemmten,überschwemmest\"\n    },\n    \"übersehen\": {\n        \"form\": \"übersehen\",\n        \"polarity\": \"-0.5128\",\n        \"pos\": \"VB\",\n        \"sense\": \"übersehe,übersiehst,übersieht,überseht,übersehest,übersehet,übersah,übersahst,übersahen,übersaht,übersähe,übersähest,übersähst,übersähen,übersähet,übersäht\"\n    },\n    \"übertreiben\": {\n        \"form\": \"übertreiben\",\n        \"polarity\": \"-0.0372\",\n        \"pos\": \"VB\",\n        \"sense\": \"übertreibe,übertreibst,übertreibt,übertreibest,übertreibet,übertrieb,übertriebst,übertrieben,übertriebt,übertriebe,übertriebest,übertriebet\"\n    },\n    \"übertreten\": {\n        \"form\": \"übertreten\",\n        \"polarity\": \"-0.329\",\n        \"pos\": \"VB\",\n        \"sense\": \"übertrete,übertrittst,übertritt,übertretet,übertretest,übertrat,übertratest,übertratst,übertraten,übertratet,überträte,überträtest,überträten,überträtet\"\n    },\n    \"übertrieben\": {\n        \"form\": \"übertrieben\",\n        \"polarity\": \"-0.3203\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übertriebenes,übertriebenerer,übertriebeneres,übertriebener,übertriebner,übertriebeneren,übertriebenste,übertriebenen,übertriebenem,übertriebnerem,übertriebneren,übertriebnere,übertriebenerem,übertriebnerer,übertriebenstem,übertriebneres,übertriebene,übertriebenere,übertriebensten,übertriebenstes,übertriebenster\"\n    },\n    \"überwältigen\": {\n        \"form\": \"überwältigen\",\n        \"polarity\": \"-0.0048\",\n        \"pos\": \"VB\",\n        \"sense\": \"überwältigest,überwältigten,überwältige,überwältigt,überwältigte,überwältigtest,überwältigst,überwältiget,überwältigtet\"\n    },\n    \"Abmachung\": {\n        \"form\": \"Abmachung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abmachungen\"\n    },\n    \"Abschluß\": {\n        \"form\": \"Abschluß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abschluss,Abschlusse,Abschlusses,Abschlüsse,Abschlüssen\"\n    },\n    \"Abstimmung\": {\n        \"form\": \"Abstimmung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Abstimmungen\"\n    },\n    \"Agilität\": {\n        \"form\": \"Agilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Aktivität\": {\n        \"form\": \"Aktivität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aktivitäten\"\n    },\n    \"Aktualisierung\": {\n        \"form\": \"Aktualisierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aktualisierungen\"\n    },\n    \"Aktualität\": {\n        \"form\": \"Aktualität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aktualitäten\"\n    },\n    \"Akzeptanz\": {\n        \"form\": \"Akzeptanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Akzeptanzen\"\n    },\n    \"Andrang\": {\n        \"form\": \"Andrang\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Andrangs,Andranges,Andrange\"\n    },\n    \"Anerkennung\": {\n        \"form\": \"Anerkennung\",\n        \"polarity\": \"0.0855\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anerkennungen\"\n    },\n    \"Angebot\": {\n        \"form\": \"Angebot\",\n        \"polarity\": \"0.0711\",\n        \"pos\": \"NN\",\n        \"sense\": \"Angeboten,Angebote,Angebots,Angebotes\"\n    },\n    \"Angemessenheit\": {\n        \"form\": \"Angemessenheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Anhebung\": {\n        \"form\": \"Anhebung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anhebungen\"\n    },\n    \"Anheiterung\": {\n        \"form\": \"Anheiterung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ankurbelung\": {\n        \"form\": \"Ankurbelung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ankurbelungen\"\n    },\n    \"Annehmlichkeit\": {\n        \"form\": \"Annehmlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Annehmlichkeiten\"\n    },\n    \"Annäherung\": {\n        \"form\": \"Annäherung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Annäherungen\"\n    },\n    \"Anpassung\": {\n        \"form\": \"Anpassung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anpassungen\"\n    },\n    \"Anpassungsfähigkeit\": {\n        \"form\": \"Anpassungsfähigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anpassungsfähigkeiten\"\n    },\n    \"Anreicherung\": {\n        \"form\": \"Anreicherung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anreicherungen\"\n    },\n    \"Anspruch\": {\n        \"form\": \"Anspruch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anspruchs,Anspruches,Ansprüchen,Ansprüche\"\n    },\n    \"Anstand\": {\n        \"form\": \"Anstand\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anstands,Anständen,Anstände,Anstandes\"\n    },\n    \"Anstieg\": {\n        \"form\": \"Anstieg\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anstiegen,Anstiegs,Anstiege,Anstieges\"\n    },\n    \"Anständigkeit\": {\n        \"form\": \"Anständigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Anteil\": {\n        \"form\": \"Anteil\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anteilen,Anteiles,Anteils,Anteile\"\n    },\n    \"Anziehung\": {\n        \"form\": \"Anziehung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Anziehungen\"\n    },\n    \"Applaus\": {\n        \"form\": \"Applaus\",\n        \"polarity\": \"0.0871\",\n        \"pos\": \"NN\",\n        \"sense\": \"Applausen,Applause,Applauses\"\n    },\n    \"Attraktivität\": {\n        \"form\": \"Attraktivität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Aufbereitung\": {\n        \"form\": \"Aufbereitung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufbereitungen\"\n    },\n    \"Aufbesserung\": {\n        \"form\": \"Aufbesserung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufbesserungen\"\n    },\n    \"Auferstehung\": {\n        \"form\": \"Auferstehung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auferstehungen\"\n    },\n    \"Aufmerksamkeit\": {\n        \"form\": \"Aufmerksamkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufmerksamkeiten\"\n    },\n    \"Aufmunterung\": {\n        \"form\": \"Aufmunterung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufmunterungen\"\n    },\n    \"Aufrichtigkeit\": {\n        \"form\": \"Aufrichtigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Aufschwung\": {\n        \"form\": \"Aufschwung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufschwüngen,Aufschwungs,Aufschwunges,Aufschwünge,Aufschwunge\"\n    },\n    \"Aufstieg\": {\n        \"form\": \"Aufstieg\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufstiegen,Aufstiege,Aufstiegs,Aufstieges\"\n    },\n    \"Aufstockung\": {\n        \"form\": \"Aufstockung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufstockungen\"\n    },\n    \"Auftrag\": {\n        \"form\": \"Auftrag\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufträgen,Aufträge,Auftrages,Auftrags,Auftrage\"\n    },\n    \"Auftrieb\": {\n        \"form\": \"Auftrieb\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auftrieben,Auftriebs,Auftriebes,Auftriebe\"\n    },\n    \"Aufwertung\": {\n        \"form\": \"Aufwertung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufwertungen\"\n    },\n    \"Aufwärtstrend\": {\n        \"form\": \"Aufwärtstrend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Aufwärtstrends\"\n    },\n    \"Augenweide\": {\n        \"form\": \"Augenweide\",\n        \"polarity\": \"0.0844\",\n        \"pos\": \"NN\",\n        \"sense\": \"Augenweiden\"\n    },\n    \"Ausbau\": {\n        \"form\": \"Ausbau\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbaues,Ausbaus\"\n    },\n    \"Ausbildung\": {\n        \"form\": \"Ausbildung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausbildungen\"\n    },\n    \"Ausdauer\": {\n        \"form\": \"Ausdauer\",\n        \"polarity\": \"0.0886\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ausgleich\": {\n        \"form\": \"Ausgleich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausgleichen,Ausgleichs,Ausgleiches,Ausgleiche\"\n    },\n    \"Ausgleichszahlung\": {\n        \"form\": \"Ausgleichszahlung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ausgleichszahlungen\"\n    },\n    \"Auszeichnung\": {\n        \"form\": \"Auszeichnung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Auszeichnungen\"\n    },\n    \"Authentizität\": {\n        \"form\": \"Authentizität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Autonomie\": {\n        \"form\": \"Autonomie\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Autonomien\"\n    },\n    \"Bedeutung\": {\n        \"form\": \"Bedeutung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bedeutungen\"\n    },\n    \"Befreiung\": {\n        \"form\": \"Befreiung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Befreiungen\"\n    },\n    \"Befriedigung\": {\n        \"form\": \"Befriedigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Befriedigungen\"\n    },\n    \"Beförderung\": {\n        \"form\": \"Beförderung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beförderungen\"\n    },\n    \"Begeisterung\": {\n        \"form\": \"Begeisterung\",\n        \"polarity\": \"0.32\",\n        \"pos\": \"NN\",\n        \"sense\": \"Begeisterungen\"\n    },\n    \"Begnadigung\": {\n        \"form\": \"Begnadigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Begnadigungen\"\n    },\n    \"Begünstigung\": {\n        \"form\": \"Begünstigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Begünstigungen\"\n    },\n    \"Beifall\": {\n        \"form\": \"Beifall\",\n        \"polarity\": \"0.3265\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beifalles,Beifalls,Beifalle\"\n    },\n    \"Beifallsruf\": {\n        \"form\": \"Beifallsruf\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beifallsrufen,Beifallsrufes,Beifallsrufe,Beifallsrufs\"\n    },\n    \"Beilegung\": {\n        \"form\": \"Beilegung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beilegungen\"\n    },\n    \"Beisteuerung\": {\n        \"form\": \"Beisteuerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Beitritt\": {\n        \"form\": \"Beitritt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beitritten,Beitritts,Beitritte,Beitrittes\"\n    },\n    \"Bekräftigung\": {\n        \"form\": \"Bekräftigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bekräftigungen\"\n    },\n    \"Belastbarkeit\": {\n        \"form\": \"Belastbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Belastbarkeiten\"\n    },\n    \"Belebtheit\": {\n        \"form\": \"Belebtheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Beliebtheit\": {\n        \"form\": \"Beliebtheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Belohnung\": {\n        \"form\": \"Belohnung\",\n        \"polarity\": \"0.0813\",\n        \"pos\": \"NN\",\n        \"sense\": \"Belohnungen\"\n    },\n    \"Benefiz\": {\n        \"form\": \"Benefiz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Benefizes,Benefizen,Benefize\"\n    },\n    \"Bereicherung\": {\n        \"form\": \"Bereicherung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bereicherungen\"\n    },\n    \"Bereitschaft\": {\n        \"form\": \"Bereitschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bereitschaften\"\n    },\n    \"Bereitstellung\": {\n        \"form\": \"Bereitstellung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bereitstellungen\"\n    },\n    \"Beruhigung\": {\n        \"form\": \"Beruhigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beruhigungen\"\n    },\n    \"Bescheidenheit\": {\n        \"form\": \"Bescheidenheit\",\n        \"polarity\": \"0.0852\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Beschleunigung\": {\n        \"form\": \"Beschleunigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschleunigungen\"\n    },\n    \"Beschwichtigung\": {\n        \"form\": \"Beschwichtigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beschwichtigungen\"\n    },\n    \"Besitz\": {\n        \"form\": \"Besitz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Besitzes,Besitzs\"\n    },\n    \"Besserung\": {\n        \"form\": \"Besserung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Besserungen\"\n    },\n    \"Bestätigung\": {\n        \"form\": \"Bestätigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bestätigungen\"\n    },\n    \"Beteiligung\": {\n        \"form\": \"Beteiligung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Beteiligungen\"\n    },\n    \"Bewunderer\": {\n        \"form\": \"Bewunderer\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bewunderers,Bewunderern\"\n    },\n    \"Bewunderung\": {\n        \"form\": \"Bewunderung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bewunderungen\"\n    },\n    \"Bildung\": {\n        \"form\": \"Bildung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bildungen\"\n    },\n    \"Blüte\": {\n        \"form\": \"Blüte\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Blüten\"\n    },\n    \"Bonität\": {\n        \"form\": \"Bonität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bonitäten\"\n    },\n    \"Bonus\": {\n        \"form\": \"Bonus\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bonussen,Bonusses,Boni,Bonusse\"\n    },\n    \"Boom\": {\n        \"form\": \"Boom\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Booms\"\n    },\n    \"Brillanz\": {\n        \"form\": \"Brillanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Brüderlichkeit\": {\n        \"form\": \"Brüderlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Bund\": {\n        \"form\": \"Bund\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bünden,Bundes,Bunds,Bunde,Bünde\"\n    },\n    \"Bündnis\": {\n        \"form\": \"Bündnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Bündnisse,Bündnisses,Bündnissen\"\n    },\n    \"Champion\": {\n        \"form\": \"Champion\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Champions\"\n    },\n    \"Charisma\": {\n        \"form\": \"Charisma\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Charismas,Charismata,Charismen\"\n    },\n    \"Charme\": {\n        \"form\": \"Charme\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Charmes\"\n    },\n    \"Cleverness\": {\n        \"form\": \"Cleverness\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Cleverneß\"\n    },\n    \"Comeback\": {\n        \"form\": \"Comeback\",\n        \"polarity\": \"0.0712\",\n        \"pos\": \"NN\",\n        \"sense\": \"Comebacks\"\n    },\n    \"Dankbarkeit\": {\n        \"form\": \"Dankbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Diskretion\": {\n        \"form\": \"Diskretion\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Disziplin\": {\n        \"form\": \"Disziplin\",\n        \"polarity\": \"0.0611\",\n        \"pos\": \"NN\",\n        \"sense\": \"Disziplinen\"\n    },\n    \"Duft\": {\n        \"form\": \"Duft\",\n        \"polarity\": \"0.2149\",\n        \"pos\": \"NN\",\n        \"sense\": \"Duftes,Düfte,Dufts,Düften,Dufte\"\n    },\n    \"Dynamik\": {\n        \"form\": \"Dynamik\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Dynamiken\"\n    },\n    \"Echtheit\": {\n        \"form\": \"Echtheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Effizienz\": {\n        \"form\": \"Effizienz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Effizienzen\"\n    },\n    \"Ehre\": {\n        \"form\": \"Ehre\",\n        \"polarity\": \"0.0732\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ehren\"\n    },\n    \"Ehrfurcht\": {\n        \"form\": \"Ehrfurcht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ehrlichkeit\": {\n        \"form\": \"Ehrlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ehrwürdigkeit\": {\n        \"form\": \"Ehrwürdigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ehrwürdigkeiten\"\n    },\n    \"Eifer\": {\n        \"form\": \"Eifer\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Eifers\"\n    },\n    \"Eigenkapital\": {\n        \"form\": \"Eigenkapital\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Eigenkapitals,Eigenkapitalien,Eigenkapitale,Eigenkapitalen\"\n    },\n    \"Eignung\": {\n        \"form\": \"Eignung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Eindeutigkeit\": {\n        \"form\": \"Eindeutigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Eindeutigkeiten\"\n    },\n    \"Einfallsreichtum\": {\n        \"form\": \"Einfallsreichtum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einfallsreichtums\"\n    },\n    \"Einhaltung\": {\n        \"form\": \"Einhaltung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Einheit\": {\n        \"form\": \"Einheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einheiten\"\n    },\n    \"Einheitlichkeit\": {\n        \"form\": \"Einheitlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Einkauf\": {\n        \"form\": \"Einkauf\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einkäufen,Einkäufe,Einkaufes,Einkaufs,Einkaufe\"\n    },\n    \"Einnahme\": {\n        \"form\": \"Einnahme\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einnahmen\"\n    },\n    \"Einsparung\": {\n        \"form\": \"Einsparung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einsparungen\"\n    },\n    \"Einweihung\": {\n        \"form\": \"Einweihung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Einweihungen\"\n    },\n    \"Einzigartigkeit\": {\n        \"form\": \"Einzigartigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Eleganz\": {\n        \"form\": \"Eleganz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Empathie\": {\n        \"form\": \"Empathie\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Empfehlung\": {\n        \"form\": \"Empfehlung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Empfehlungen\"\n    },\n    \"Engagement\": {\n        \"form\": \"Engagement\",\n        \"polarity\": \"0.2157\",\n        \"pos\": \"NN\",\n        \"sense\": \"Engagements\"\n    },\n    \"Entlastung\": {\n        \"form\": \"Entlastung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entlastungen\"\n    },\n    \"Entlohnung\": {\n        \"form\": \"Entlohnung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entlohnungen\"\n    },\n    \"Entschluß\": {\n        \"form\": \"Entschluß\",\n        \"polarity\": \"0.0804\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entschluss,Entschlusse,Entschlusses,Entschlüsse,Entschlüssen\"\n    },\n    \"Entschlüsselung\": {\n        \"form\": \"Entschlüsselung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entschlüsselungen\"\n    },\n    \"Entschädigung\": {\n        \"form\": \"Entschädigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entschädigungen\"\n    },\n    \"Entspannung\": {\n        \"form\": \"Entspannung\",\n        \"polarity\": \"0.0875\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entspannungen\"\n    },\n    \"Entwirrung\": {\n        \"form\": \"Entwirrung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Entwirrungen\"\n    },\n    \"Erbe\": {\n        \"form\": \"Erbe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erben,Erbes\"\n    },\n    \"Erfahrung\": {\n        \"form\": \"Erfahrung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erfahrungen\"\n    },\n    \"Erfolg\": {\n        \"form\": \"Erfolg\",\n        \"polarity\": \"0.3446\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erfolgs,Erfolge,Erfolgen,Erfolges\"\n    },\n    \"Erfolgserlebnis\": {\n        \"form\": \"Erfolgserlebnis\",\n        \"polarity\": \"0.0884\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erfolgserlebnisses,Erfolgserlebnissen,Erfolgserlebnisse\"\n    },\n    \"Erfüllung\": {\n        \"form\": \"Erfüllung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erfüllungen\"\n    },\n    \"Ergiebigkeit\": {\n        \"form\": \"Ergiebigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ergänzung\": {\n        \"form\": \"Ergänzung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ergänzungen\"\n    },\n    \"Erhaltung\": {\n        \"form\": \"Erhaltung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Erholung\": {\n        \"form\": \"Erholung\",\n        \"polarity\": \"0.0865\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erholungen\"\n    },\n    \"Erhöhung\": {\n        \"form\": \"Erhöhung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erhöhungen\"\n    },\n    \"Erlaubnis\": {\n        \"form\": \"Erlaubnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erlaubnisse,Erlaubnissen\"\n    },\n    \"Erleichterung\": {\n        \"form\": \"Erleichterung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erleichterungen\"\n    },\n    \"Erleuchtung\": {\n        \"form\": \"Erleuchtung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erleuchtungen\"\n    },\n    \"Erlösung\": {\n        \"form\": \"Erlösung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erlösungen\"\n    },\n    \"Ermutigung\": {\n        \"form\": \"Ermutigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ermutigungen\"\n    },\n    \"Erneuerung\": {\n        \"form\": \"Erneuerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erneuerungen\"\n    },\n    \"Ernsthaftigkeit\": {\n        \"form\": \"Ernsthaftigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ersparnis\": {\n        \"form\": \"Ersparnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ersparnisse,Ersparnissen\"\n    },\n    \"Ertrag\": {\n        \"form\": \"Ertrag\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erträgen,Ertrags,Erträge,Ertrages,Ertrage\"\n    },\n    \"Erweiterung\": {\n        \"form\": \"Erweiterung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erweiterungen\"\n    },\n    \"Erzeugnis\": {\n        \"form\": \"Erzeugnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Erzeugnissen,Erzeugnisses,Erzeugnisse\"\n    },\n    \"Experte\": {\n        \"form\": \"Experte\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Experten\"\n    },\n    \"Expertise\": {\n        \"form\": \"Expertise\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Expertisen\"\n    },\n    \"Exzellenz\": {\n        \"form\": \"Exzellenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Exzellenzen\"\n    },\n    \"Fairness\": {\n        \"form\": \"Fairness\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Faszination\": {\n        \"form\": \"Faszination\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Favorit\": {\n        \"form\": \"Favorit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Favoriten\"\n    },\n    \"Feier\": {\n        \"form\": \"Feier\",\n        \"polarity\": \"0.0829\",\n        \"pos\": \"NN\",\n        \"sense\": \"Feiern\"\n    },\n    \"Fertigkeit\": {\n        \"form\": \"Fertigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fertigkeiten\"\n    },\n    \"Fest\": {\n        \"form\": \"Fest\",\n        \"polarity\": \"0.2346\",\n        \"pos\": \"NN\",\n        \"sense\": \"Festes,Fests,Feste,Festen\"\n    },\n    \"Festakt\": {\n        \"form\": \"Festakt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Festakts,Festaktes,Festakte,Festakten\"\n    },\n    \"Festigkeit\": {\n        \"form\": \"Festigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Festlichkeit\": {\n        \"form\": \"Festlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Festlichkeiten\"\n    },\n    \"Finanzierung\": {\n        \"form\": \"Finanzierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Finanzierungen\"\n    },\n    \"Fitness\": {\n        \"form\": \"Fitness\",\n        \"polarity\": \"0.0851\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Flair\": {\n        \"form\": \"Flair\",\n        \"polarity\": \"0.2216\",\n        \"pos\": \"NN\",\n        \"sense\": \"Flairs\"\n    },\n    \"Fleiß\": {\n        \"form\": \"Fleiß\",\n        \"polarity\": \"0.3113\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fleißes,Fleißs\"\n    },\n    \"Flexibilität\": {\n        \"form\": \"Flexibilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Fortschritt\": {\n        \"form\": \"Fortschritt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fortschritte,Fortschrittes,Fortschritts,Fortschritten\"\n    },\n    \"Freiheit\": {\n        \"form\": \"Freiheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freiheiten\"\n    },\n    \"Freispruch\": {\n        \"form\": \"Freispruch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freisprüchen,Freisprüche,Freispruches,Freispruchs,Freispruche\"\n    },\n    \"Freude\": {\n        \"form\": \"Freude\",\n        \"polarity\": \"0.6502\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freuden\"\n    },\n    \"Freund\": {\n        \"form\": \"Freund\",\n        \"polarity\": \"0.0116\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freunden,Freundes,Freunde,Freunds\"\n    },\n    \"Freundlichkeit\": {\n        \"form\": \"Freundlichkeit\",\n        \"polarity\": \"0.0913\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freundlichkeiten\"\n    },\n    \"Freundschaft\": {\n        \"form\": \"Freundschaft\",\n        \"polarity\": \"0.2059\",\n        \"pos\": \"NN\",\n        \"sense\": \"Freundschaften\"\n    },\n    \"Frieden\": {\n        \"form\": \"Frieden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Friedens\"\n    },\n    \"Fruchtbarkeit\": {\n        \"form\": \"Fruchtbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Funktionsfähigkeit\": {\n        \"form\": \"Funktionsfähigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Funktionsfähigkeiten\"\n    },\n    \"Furchtlosigkeit\": {\n        \"form\": \"Furchtlosigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Fähigkeit\": {\n        \"form\": \"Fähigkeit\",\n        \"polarity\": \"0.0892\",\n        \"pos\": \"NN\",\n        \"sense\": \"Fähigkeiten\"\n    },\n    \"Förderung\": {\n        \"form\": \"Förderung\",\n        \"polarity\": \"0.0829\",\n        \"pos\": \"NN\",\n        \"sense\": \"Förderungen\"\n    },\n    \"Führung\": {\n        \"form\": \"Führung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Führungen\"\n    },\n    \"Fülle\": {\n        \"form\": \"Fülle\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Füllen\"\n    },\n    \"Gabe\": {\n        \"form\": \"Gabe\",\n        \"polarity\": \"0.0747\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gaben\"\n    },\n    \"Garantie\": {\n        \"form\": \"Garantie\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Garantien\"\n    },\n    \"Gastfreundlichkeit\": {\n        \"form\": \"Gastfreundlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gastfreundlichkeiten\"\n    },\n    \"Gedenken\": {\n        \"form\": \"Gedenken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gedenkens\"\n    },\n    \"Geduld\": {\n        \"form\": \"Geduld\",\n        \"polarity\": \"0.0789\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gefallen\": {\n        \"form\": \"Gefallen\",\n        \"polarity\": \"0.3349\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gefallens\"\n    },\n    \"Gehaltszulage\": {\n        \"form\": \"Gehaltszulage\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gehaltszulagen\"\n    },\n    \"Gelassenheit\": {\n        \"form\": \"Gelassenheit\",\n        \"polarity\": \"0.0721\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Geldgeber\": {\n        \"form\": \"Geldgeber\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geldgebers,Geldgebern\"\n    },\n    \"Gemeinschaft\": {\n        \"form\": \"Gemeinschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gemeinschaften\"\n    },\n    \"Genauigkeit\": {\n        \"form\": \"Genauigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Genehmigung\": {\n        \"form\": \"Genehmigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Genehmigungen\"\n    },\n    \"Genesung\": {\n        \"form\": \"Genesung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Genesungen\"\n    },\n    \"Genialität\": {\n        \"form\": \"Genialität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Genie\": {\n        \"form\": \"Genie\",\n        \"polarity\": \"0.0697\",\n        \"pos\": \"NN\",\n        \"sense\": \"Genies\"\n    },\n    \"Genuss\": {\n        \"form\": \"Genuss\",\n        \"polarity\": \"0.0701\",\n        \"pos\": \"NN\",\n        \"sense\": \"Genusse,Genusses,Genüsse,Genüssen\"\n    },\n    \"Genuß\": {\n        \"form\": \"Genuß\",\n        \"polarity\": \"0.073\",\n        \"pos\": \"NN\",\n        \"sense\": \"Genusse,Genusses,Genüsse,Genüssen\"\n    },\n    \"Gerechtigkeit\": {\n        \"form\": \"Gerechtigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Geräumigkeit\": {\n        \"form\": \"Geräumigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Geschenk\": {\n        \"form\": \"Geschenk\",\n        \"polarity\": \"0.4792\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geschenken,Geschenks,Geschenkes,Geschenke\"\n    },\n    \"Geschick\": {\n        \"form\": \"Geschick\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Geschicke,Geschicks,Geschickes,Geschicken\"\n    },\n    \"Geschicklichkeit\": {\n        \"form\": \"Geschicklichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gesundheit\": {\n        \"form\": \"Gesundheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gesundung\": {\n        \"form\": \"Gesundung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gewinn\": {\n        \"form\": \"Gewinn\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gewinns,Gewinnen,Gewinne,Gewinnes\"\n    },\n    \"Gewinner\": {\n        \"form\": \"Gewinner\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gewinnern,Gewinners\"\n    },\n    \"Gewährleistung\": {\n        \"form\": \"Gewährleistung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gewährleistungen\"\n    },\n    \"Glamour\": {\n        \"form\": \"Glamour\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glamours\"\n    },\n    \"Glanz\": {\n        \"form\": \"Glanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glanzs,Glanzes,Glanze\"\n    },\n    \"Glaube\": {\n        \"form\": \"Glaube\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glaubens,Glauben\"\n    },\n    \"Glaubwürdigkeit\": {\n        \"form\": \"Glaubwürdigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glaubwürdigkeiten\"\n    },\n    \"Gleichstellung\": {\n        \"form\": \"Gleichstellung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gleichstellungen\"\n    },\n    \"Glück\": {\n        \"form\": \"Glück\",\n        \"polarity\": \"0.2452\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glücken,Glückes,Glücks,Glücke\"\n    },\n    \"Glückseligkeit\": {\n        \"form\": \"Glückseligkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glückseligkeiten\"\n    },\n    \"Glückwunsch\": {\n        \"form\": \"Glückwunsch\",\n        \"polarity\": \"0.2193\",\n        \"pos\": \"NN\",\n        \"sense\": \"Glückwünschen,Glückwünsche,Glückwunschs,Glückwunsches\"\n    },\n    \"Gnade\": {\n        \"form\": \"Gnade\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gnaden\"\n    },\n    \"Gratulation\": {\n        \"form\": \"Gratulation\",\n        \"polarity\": \"0.428\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gratulationen\"\n    },\n    \"Grenzenlosigkeit\": {\n        \"form\": \"Grenzenlosigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Grenzenlosigkeiten\"\n    },\n    \"Großzügigigkeit\": {\n        \"form\": \"Großzügigigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Großzügigigkeiten\"\n    },\n    \"Größe\": {\n        \"form\": \"Größe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Größen\"\n    },\n    \"Gründlichkeit\": {\n        \"form\": \"Gründlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gunst\": {\n        \"form\": \"Gunst\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gunsten\"\n    },\n    \"Gönner\": {\n        \"form\": \"Gönner\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gönnern,Gönners\"\n    },\n    \"Gönnerschaft\": {\n        \"form\": \"Gönnerschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Gültigkeit\": {\n        \"form\": \"Gültigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Gültigkeiten\"\n    },\n    \"Güte\": {\n        \"form\": \"Güte\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Hammer\": {\n        \"form\": \"Hammer\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hämmern,Hammers,Hämmer\"\n    },\n    \"Harmonie\": {\n        \"form\": \"Harmonie\",\n        \"polarity\": \"0.0795\",\n        \"pos\": \"NN\",\n        \"sense\": \"Harmonien\"\n    },\n    \"Harmonisierung\": {\n        \"form\": \"Harmonisierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Harmonisierungen\"\n    },\n    \"Hartnäckigkeit\": {\n        \"form\": \"Hartnäckigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hartnäckigkeiten\"\n    },\n    \"Heiligtum\": {\n        \"form\": \"Heiligtum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heiligtümern,Heiligtümer,Heiligtums\"\n    },\n    \"Heilung\": {\n        \"form\": \"Heilung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heilungen\"\n    },\n    \"Heirat\": {\n        \"form\": \"Heirat\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Heiraten\"\n    },\n    \"Heiterkeit\": {\n        \"form\": \"Heiterkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Helligkeit\": {\n        \"form\": \"Helligkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Helligkeiten\"\n    },\n    \"Herrlichkeit\": {\n        \"form\": \"Herrlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Herrlichkeiten\"\n    },\n    \"Highlight\": {\n        \"form\": \"Highlight\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Highlights\"\n    },\n    \"Hilfe\": {\n        \"form\": \"Hilfe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hilfen\"\n    },\n    \"Hilfsbereitschaft\": {\n        \"form\": \"Hilfsbereitschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hilfsbereitschaften\"\n    },\n    \"Hingabe\": {\n        \"form\": \"Hingabe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hingaben\"\n    },\n    \"Hochdruckgebiet\": {\n        \"form\": \"Hochdruckgebiet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hochdruckgebiete,Hochdruckgebiets,Hochdruckgebieten,Hochdruckgebietes\"\n    },\n    \"Hochruf\": {\n        \"form\": \"Hochruf\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hochrufes,Hochrufen,Hochrufs,Hochrufe\"\n    },\n    \"Hochwertigkeit\": {\n        \"form\": \"Hochwertigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Hoffnung\": {\n        \"form\": \"Hoffnung\",\n        \"polarity\": \"0.2038\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hoffnungen\"\n    },\n    \"Humanität\": {\n        \"form\": \"Humanität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Humor\": {\n        \"form\": \"Humor\",\n        \"polarity\": \"0.3296\",\n        \"pos\": \"NN\",\n        \"sense\": \"Humoren,Humore,Humors\"\n    },\n    \"Hurra\": {\n        \"form\": \"Hurra\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hurras\"\n    },\n    \"Hurrageschrei\": {\n        \"form\": \"Hurrageschrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Hurrageschreis\"\n    },\n    \"Höflichkeit\": {\n        \"form\": \"Höflichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Höflichkeiten\"\n    },\n    \"Höhepunkt\": {\n        \"form\": \"Höhepunkt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Höhepunkten,Höhepunktes,Höhepunkts,Höhepunkte\"\n    },\n    \"Individualität\": {\n        \"form\": \"Individualität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Individualitäten\"\n    },\n    \"Innovation\": {\n        \"form\": \"Innovation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Innovationen\"\n    },\n    \"Inspiration\": {\n        \"form\": \"Inspiration\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Inspirationen\"\n    },\n    \"Integrität\": {\n        \"form\": \"Integrität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Intellekt\": {\n        \"form\": \"Intellekt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Intellekts,Intellekten,Intellektes,Intellekte\"\n    },\n    \"Intelligenz\": {\n        \"form\": \"Intelligenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Intelligenzen\"\n    },\n    \"Interesse\": {\n        \"form\": \"Interesse\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Interesses,Interessen\"\n    },\n    \"Interessenvertretung\": {\n        \"form\": \"Interessenvertretung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Interessenvertretungen\"\n    },\n    \"Investition\": {\n        \"form\": \"Investition\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Investitionen\"\n    },\n    \"Jubel\": {\n        \"form\": \"Jubel\",\n        \"polarity\": \"0.0652\",\n        \"pos\": \"NN\",\n        \"sense\": \"Jubels\"\n    },\n    \"Jubiläum\": {\n        \"form\": \"Jubiläum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Jubiläums,Jubiläen\"\n    },\n    \"Kauf\": {\n        \"form\": \"Kauf\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kaufs,Kaufes,Käufen,Käufe\"\n    },\n    \"Klarheit\": {\n        \"form\": \"Klarheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Klarheiten\"\n    },\n    \"Komfort\": {\n        \"form\": \"Komfort\",\n        \"polarity\": \"0.1808\",\n        \"pos\": \"NN\",\n        \"sense\": \"Komforts\"\n    },\n    \"Kommunikation\": {\n        \"form\": \"Kommunikation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kommunikationen\"\n    },\n    \"Kompatibilität\": {\n        \"form\": \"Kompatibilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kompatibilitäten\"\n    },\n    \"Kompensation\": {\n        \"form\": \"Kompensation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kompensationen\"\n    },\n    \"Kompetenz\": {\n        \"form\": \"Kompetenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kompetenzen\"\n    },\n    \"Kompliment\": {\n        \"form\": \"Kompliment\",\n        \"polarity\": \"0.3323\",\n        \"pos\": \"NN\",\n        \"sense\": \"Komplimente,Kompliments,Komplimentes,Komplimenten\"\n    },\n    \"Kompromiss\": {\n        \"form\": \"Kompromiss\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kompromiß,Kompromisse,Kompromisses,Kompromissen\"\n    },\n    \"Konjunkturaufschwung\": {\n        \"form\": \"Konjunkturaufschwung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konjunkturaufschwünge,Konjunkturaufschwungs,Konjunkturaufschwüngen,Konjunkturaufschwunges\"\n    },\n    \"Konsens\": {\n        \"form\": \"Konsens\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konsense,Konsensen,Konsenses\"\n    },\n    \"Konsistenz\": {\n        \"form\": \"Konsistenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konsistenzen\"\n    },\n    \"Konsolidierung\": {\n        \"form\": \"Konsolidierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konsolidierungen\"\n    },\n    \"Konstanz\": {\n        \"form\": \"Konstanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Konsultation\": {\n        \"form\": \"Konsultation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Konsultationen\"\n    },\n    \"Kontinuität\": {\n        \"form\": \"Kontinuität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Kooperation\": {\n        \"form\": \"Kooperation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kooperationen\"\n    },\n    \"Koordinierung\": {\n        \"form\": \"Koordinierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Koordinierungen\"\n    },\n    \"Korrektheit\": {\n        \"form\": \"Korrektheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Korrektur\": {\n        \"form\": \"Korrektur\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Korrekturen\"\n    },\n    \"Kostbarkeit\": {\n        \"form\": \"Kostbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kostbarkeiten\"\n    },\n    \"Kraft\": {\n        \"form\": \"Kraft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kräfte,Kräften\"\n    },\n    \"Kreativität\": {\n        \"form\": \"Kreativität\",\n        \"polarity\": \"0.0768\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Kulanz\": {\n        \"form\": \"Kulanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Kur\": {\n        \"form\": \"Kur\",\n        \"polarity\": \"0.0859\",\n        \"pos\": \"NN\",\n        \"sense\": \"Kuren\"\n    },\n    \"Langlebigkeit\": {\n        \"form\": \"Langlebigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Laune\": {\n        \"form\": \"Laune\",\n        \"polarity\": \"0.1085\",\n        \"pos\": \"NN\",\n        \"sense\": \"Launen\"\n    },\n    \"Lebensfähigkeit\": {\n        \"form\": \"Lebensfähigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lebensfähigkeiten\"\n    },\n    \"Legalität\": {\n        \"form\": \"Legalität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Legitimität\": {\n        \"form\": \"Legitimität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Leichtigkeit\": {\n        \"form\": \"Leichtigkeit\",\n        \"polarity\": \"0.1725\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Leidenschaft\": {\n        \"form\": \"Leidenschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leidenschaften\"\n    },\n    \"Leistung\": {\n        \"form\": \"Leistung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leistungen\"\n    },\n    \"Leistungsfähigkeit\": {\n        \"form\": \"Leistungsfähigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Leistungsfähigkeiten\"\n    },\n    \"Liberalismus\": {\n        \"form\": \"Liberalismus\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Liebe\": {\n        \"form\": \"Liebe\",\n        \"polarity\": \"0.0985\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lieben\"\n    },\n    \"Liebling\": {\n        \"form\": \"Liebling\",\n        \"polarity\": \"0.0873\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lieblings,Lieblinge,Lieblingen\"\n    },\n    \"Linderung\": {\n        \"form\": \"Linderung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Linderungen\"\n    },\n    \"Lob\": {\n        \"form\": \"Lob\",\n        \"polarity\": \"0.7246\",\n        \"pos\": \"NN\",\n        \"sense\": \"Loben,Lobs,Lobes,Lobe\"\n    },\n    \"Lohn\": {\n        \"form\": \"Lohn\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Löhne,Löhnen,Lohns,Lohnes\"\n    },\n    \"Loyalität\": {\n        \"form\": \"Loyalität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Loyalitäten\"\n    },\n    \"Luxus\": {\n        \"form\": \"Luxus\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Lösung\": {\n        \"form\": \"Lösung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Lösungen\"\n    },\n    \"Macht\": {\n        \"form\": \"Macht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mächten,Mächte\"\n    },\n    \"Magie\": {\n        \"form\": \"Magie\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Magien\"\n    },\n    \"Majestät\": {\n        \"form\": \"Majestät\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Majestäten\"\n    },\n    \"Maximum\": {\n        \"form\": \"Maximum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Maximums,Maxima\"\n    },\n    \"Meisterschaft\": {\n        \"form\": \"Meisterschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Meisterschaften\"\n    },\n    \"Meisterwerk\": {\n        \"form\": \"Meisterwerk\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Meisterwerken,Meisterwerks,Meisterwerkes,Meisterwerke\"\n    },\n    \"Menschenwürde\": {\n        \"form\": \"Menschenwürde\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Menschlichkeit\": {\n        \"form\": \"Menschlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Menschlichkeiten\"\n    },\n    \"Milde\": {\n        \"form\": \"Milde\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Mitgefühl\": {\n        \"form\": \"Mitgefühl\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Mitgefühles,Mitgefühls\"\n    },\n    \"Mobilität\": {\n        \"form\": \"Mobilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Modernisierung\": {\n        \"form\": \"Modernisierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Modernisierungen\"\n    },\n    \"Modernität\": {\n        \"form\": \"Modernität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Modernitäten\"\n    },\n    \"Moral\": {\n        \"form\": \"Moral\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Moralen\"\n    },\n    \"Motivation\": {\n        \"form\": \"Motivation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Motivationen\"\n    },\n    \"Mut\": {\n        \"form\": \"Mut\",\n        \"polarity\": \"0.6093\",\n        \"pos\": \"NN\",\n        \"sense\": \"Muts,Mutes\"\n    },\n    \"Möglichkeit\": {\n        \"form\": \"Möglichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Möglichkeiten\"\n    },\n    \"Nachhaltigkeit\": {\n        \"form\": \"Nachhaltigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Nutzen\": {\n        \"form\": \"Nutzen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Nutzens\"\n    },\n    \"Nähe\": {\n        \"form\": \"Nähe\",\n        \"polarity\": \"0.0911\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Oase\": {\n        \"form\": \"Oase\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Oasen\"\n    },\n    \"Optimalität\": {\n        \"form\": \"Optimalität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Optimismus\": {\n        \"form\": \"Optimismus\",\n        \"polarity\": \"0.0882\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Optimist\": {\n        \"form\": \"Optimist\",\n        \"polarity\": \"0.0836\",\n        \"pos\": \"NN\",\n        \"sense\": \"Optimisten\"\n    },\n    \"Ordnungsmäßigkeit\": {\n        \"form\": \"Ordnungsmäßigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Originalität\": {\n        \"form\": \"Originalität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Originalitäten\"\n    },\n    \"Pannenhilfe\": {\n        \"form\": \"Pannenhilfe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Pannenhilfen\"\n    },\n    \"Paradies\": {\n        \"form\": \"Paradies\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Paradieses,Paradiesen,Paradiese\"\n    },\n    \"Partner\": {\n        \"form\": \"Partner\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Partners,Partnern\"\n    },\n    \"Partnerschaft\": {\n        \"form\": \"Partnerschaft\",\n        \"polarity\": \"0.0779\",\n        \"pos\": \"NN\",\n        \"sense\": \"Partnerschaften\"\n    },\n    \"Perfektion\": {\n        \"form\": \"Perfektion\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Perfektionen\"\n    },\n    \"Perfektionismus\": {\n        \"form\": \"Perfektionismus\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Perfektionist\": {\n        \"form\": \"Perfektionist\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Perfektionisten\"\n    },\n    \"Pflege\": {\n        \"form\": \"Pflege\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Phantasie\": {\n        \"form\": \"Phantasie\",\n        \"polarity\": \"0.075\",\n        \"pos\": \"NN\",\n        \"sense\": \"Phantasien\"\n    },\n    \"Plausibilität\": {\n        \"form\": \"Plausibilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Positivität\": {\n        \"form\": \"Positivität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Potenz\": {\n        \"form\": \"Potenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Potenzen\"\n    },\n    \"Pracht\": {\n        \"form\": \"Pracht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Praktikabilität\": {\n        \"form\": \"Praktikabilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Premium\": {\n        \"form\": \"Premium\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Prestige\": {\n        \"form\": \"Prestige\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Prestiges\"\n    },\n    \"Privileg\": {\n        \"form\": \"Privileg\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Privilege,Privileges,Privilegs,Privilegien\"\n    },\n    \"Produktivität\": {\n        \"form\": \"Produktivität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Profit\": {\n        \"form\": \"Profit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Profite,Profites,Profits,Privilegien\"\n    },\n    \"Progression\": {\n        \"form\": \"Progression\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Progressionen\"\n    },\n    \"Prächtigkeit\": {\n        \"form\": \"Prächtigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Präferenz\": {\n        \"form\": \"Präferenz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Präferenzen\"\n    },\n    \"Präzision\": {\n        \"form\": \"Präzision\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Pünktlichkeit\": {\n        \"form\": \"Pünktlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Qualifikation\": {\n        \"form\": \"Qualifikation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Qualifikationen\"\n    },\n    \"Qualität\": {\n        \"form\": \"Qualität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Qualitäten\"\n    },\n    \"Qualitätsverbesserung\": {\n        \"form\": \"Qualitätsverbesserung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Qualitätsverbesserungen\"\n    },\n    \"Rat\": {\n        \"form\": \"Rat\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rate,Rates,Rats,Räte,Räten\"\n    },\n    \"Recht\": {\n        \"form\": \"Recht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rechten,Rechte,Rechts,Rechtes\"\n    },\n    \"Rechtmäßigkeit\": {\n        \"form\": \"Rechtmäßigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rechtmäßigkeiten\"\n    },\n    \"Rechtsgültigkeit\": {\n        \"form\": \"Rechtsgültigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rechtsgültigkeiten\"\n    },\n    \"Rehabilitation\": {\n        \"form\": \"Rehabilitation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rehabilitationen\"\n    },\n    \"Reichtum\": {\n        \"form\": \"Reichtum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Reichtumes,Reichtums,Reichtümer,Reichtümern\"\n    },\n    \"Reinheit\": {\n        \"form\": \"Reinheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Reinigung\": {\n        \"form\": \"Reinigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Reinigungen\"\n    },\n    \"Relevanz\": {\n        \"form\": \"Relevanz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Relevanzen\"\n    },\n    \"Renovierung\": {\n        \"form\": \"Renovierung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Renovierungen\"\n    },\n    \"Rentabilität\": {\n        \"form\": \"Rentabilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Respekt\": {\n        \"form\": \"Respekt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Respekte,Respekts,Respektes\"\n    },\n    \"Rettung\": {\n        \"form\": \"Rettung\",\n        \"polarity\": \"0.0707\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rettungen\"\n    },\n    \"Robustheit\": {\n        \"form\": \"Robustheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Romantik\": {\n        \"form\": \"Romantik\",\n        \"polarity\": \"0.0688\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ruhe\": {\n        \"form\": \"Ruhe\",\n        \"polarity\": \"0.5017\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Ruhm\": {\n        \"form\": \"Ruhm\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ruhms,Ruhmes\"\n    },\n    \"Rückendeckung\": {\n        \"form\": \"Rückendeckung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Rückgrat\": {\n        \"form\": \"Rückgrat\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückgrate,Rückgrats,Rückgrates,Rückgraten\"\n    },\n    \"Rücksicht\": {\n        \"form\": \"Rücksicht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rücksichten\"\n    },\n    \"Rückversicherung\": {\n        \"form\": \"Rückversicherung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Rückversicherungen\"\n    },\n    \"Sauberkeit\": {\n        \"form\": \"Sauberkeit\",\n        \"polarity\": \"0.0755\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Schatz\": {\n        \"form\": \"Schatz\",\n        \"polarity\": \"0.1096\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schätze,Schatzes,Schätzen,Schatze\"\n    },\n    \"Schenkung\": {\n        \"form\": \"Schenkung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schenkungen\"\n    },\n    \"Schirmherr\": {\n        \"form\": \"Schirmherr\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schirmherren\"\n    },\n    \"Schirmherrschaft\": {\n        \"form\": \"Schirmherrschaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schirmherrschaften\"\n    },\n    \"Schlauheit\": {\n        \"form\": \"Schlauheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Schmuck\": {\n        \"form\": \"Schmuck\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schmucks,Schmucken,Schmuckes,Schmucke\"\n    },\n    \"Schnelligkeit\": {\n        \"form\": \"Schnelligkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schnelligkeiten\"\n    },\n    \"Schnäppchen\": {\n        \"form\": \"Schnäppchen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schnäppchens\"\n    },\n    \"Schuldlosigkeit\": {\n        \"form\": \"Schuldlosigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Schutz\": {\n        \"form\": \"Schutz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schutze,Schutzes,Schutzen\"\n    },\n    \"Schutzmaßnahme\": {\n        \"form\": \"Schutzmaßnahme\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schutzmaßnahmen\"\n    },\n    \"Schwung\": {\n        \"form\": \"Schwung\",\n        \"polarity\": \"0.238\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schwunges,Schwungs,Schwüngen,Schwünge,Schwunge\"\n    },\n    \"Schönheit\": {\n        \"form\": \"Schönheit\",\n        \"polarity\": \"0.3286\",\n        \"pos\": \"NN\",\n        \"sense\": \"Schönheiten\"\n    },\n    \"Selbstständigkeit\": {\n        \"form\": \"Selbstständigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Selbstständigkeiten\"\n    },\n    \"Sensation\": {\n        \"form\": \"Sensation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sensationen\"\n    },\n    \"Seriösität\": {\n        \"form\": \"Seriösität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Sicherheit\": {\n        \"form\": \"Sicherheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sicherheiten\"\n    },\n    \"Siegeszug\": {\n        \"form\": \"Siegeszug\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Siegeszuges,Siegeszüge,Siegeszugs,Siegeszügen,Siegeszuge\"\n    },\n    \"Sinn\": {\n        \"form\": \"Sinn\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sinns,Sinne,Sinnes,Sinnen\"\n    },\n    \"Solidarität\": {\n        \"form\": \"Solidarität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Sorgfältigkeit\": {\n        \"form\": \"Sorgfältigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Sorglosigkeit\": {\n        \"form\": \"Sorglosigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Sparsamkeit\": {\n        \"form\": \"Sparsamkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sparsamkeiten\"\n    },\n    \"Spaß\": {\n        \"form\": \"Spaß\",\n        \"polarity\": \"0.2823\",\n        \"pos\": \"NN\",\n        \"sense\": \"Spaße,Spaßes,Späße,Späßen\"\n    },\n    \"Spende\": {\n        \"form\": \"Spende\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Spenden\"\n    },\n    \"Spezialität\": {\n        \"form\": \"Spezialität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Spezialitäten\"\n    },\n    \"Sprung\": {\n        \"form\": \"Sprung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Sprüngen,Sprunges,Sprünge,Sprungs,Sprunge\"\n    },\n    \"Stabilität\": {\n        \"form\": \"Stabilität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Standhaftigkeit\": {\n        \"form\": \"Standhaftigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Stattlichkeit\": {\n        \"form\": \"Stattlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Steigerung\": {\n        \"form\": \"Steigerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Steigerungen\"\n    },\n    \"Steigflug\": {\n        \"form\": \"Steigflug\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Steigfluge,Steigfluges,Steigflugs,Steigflüge,Steigflügen\"\n    },\n    \"Stifter\": {\n        \"form\": \"Stifter\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stifters,Stiftern\"\n    },\n    \"Stiftung\": {\n        \"form\": \"Stiftung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stiftungen\"\n    },\n    \"Stil\": {\n        \"form\": \"Stil\",\n        \"polarity\": \"0.3398\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stile,Stilen,Stiles,Stils\"\n    },\n    \"Stimulation\": {\n        \"form\": \"Stimulation\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stimulationen\"\n    },\n    \"Stolz\": {\n        \"form\": \"Stolz\",\n        \"polarity\": \"0.0797\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stolzes,Stolze\"\n    },\n    \"Stärke\": {\n        \"form\": \"Stärke\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stärken\"\n    },\n    \"Stütze\": {\n        \"form\": \"Stütze\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Stützen\"\n    },\n    \"Subvention\": {\n        \"form\": \"Subvention\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Subventionen\"\n    },\n    \"Suchtfaktor\": {\n        \"form\": \"Suchtfaktor\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Suchtfaktors,Suchtfaktoren\"\n    },\n    \"Superlativ\": {\n        \"form\": \"Superlativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Superlativen,Superlative,Superlativs\"\n    },\n    \"Symbiose\": {\n        \"form\": \"Symbiose\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Symbiosen\"\n    },\n    \"Sympathie\": {\n        \"form\": \"Sympathie\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Symphatien\"\n    },\n    \"Talent\": {\n        \"form\": \"Talent\",\n        \"polarity\": \"0.3352\",\n        \"pos\": \"NN\",\n        \"sense\": \"Talents,Talenten,Talentes,Talente\"\n    },\n    \"Toleranz\": {\n        \"form\": \"Toleranz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Toleranzen\"\n    },\n    \"Tradition\": {\n        \"form\": \"Tradition\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Traditionen\"\n    },\n    \"Treue\": {\n        \"form\": \"Treue\",\n        \"polarity\": \"0.2019\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Triumph\": {\n        \"form\": \"Triumph\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Triumphen,Triumphes,Triumphe,Triumphs\"\n    },\n    \"Trophäe\": {\n        \"form\": \"Trophäe\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trophäen\"\n    },\n    \"Trost\": {\n        \"form\": \"Trost\",\n        \"polarity\": \"0.0706\",\n        \"pos\": \"NN\",\n        \"sense\": \"Trosts,Trostes\"\n    },\n    \"Umbruch\": {\n        \"form\": \"Umbruch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Umbruches,Umbrüche,Umbruchs,Umbrüchen\"\n    },\n    \"Unabhängigkeit\": {\n        \"form\": \"Unabhängigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unabhängigkeiten\"\n    },\n    \"Unbesiegbarkeit\": {\n        \"form\": \"Unbesiegbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unerschrockenheit\": {\n        \"form\": \"Unerschrockenheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unfehlbarkeit\": {\n        \"form\": \"Unfehlbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unparteilichkeit\": {\n        \"form\": \"Unparteilichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unschuld\": {\n        \"form\": \"Unschuld\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unsterblichkeit\": {\n        \"form\": \"Unsterblichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unterstützung\": {\n        \"form\": \"Unterstützung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unterstützungen\"\n    },\n    \"Unverwundbarkeit\": {\n        \"form\": \"Unverwundbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Unverzichtbarkeit\": {\n        \"form\": \"Unverzichtbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unverzichtbarkeiten\"\n    },\n    \"Unwiderstehlichkeit\": {\n        \"form\": \"Unwiderstehlichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Unwiderstehlichkeiten\"\n    },\n    \"Upgrade\": {\n        \"form\": \"Upgrade\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Upgrades\"\n    },\n    \"Verantwortung\": {\n        \"form\": \"Verantwortung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verantwortungen\"\n    },\n    \"Verband\": {\n        \"form\": \"Verband\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbände,Verbänden,Verbands,Verbandes\"\n    },\n    \"Verbesserung\": {\n        \"form\": \"Verbesserung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbesserungen\"\n    },\n    \"Verbund\": {\n        \"form\": \"Verbund\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbunde,Verbunds,Verbünde,Verbünden\"\n    },\n    \"Verbundenheit\": {\n        \"form\": \"Verbundenheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbundenheiten\"\n    },\n    \"Verbündete\": {\n        \"form\": \"Verbündete\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verbündeten\"\n    },\n    \"Verdienst\": {\n        \"form\": \"Verdienst\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verdienstes,Verdienste,Verdiensts,Verdiensten\"\n    },\n    \"Veredelung\": {\n        \"form\": \"Veredelung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Veredelung\"\n    },\n    \"Verehrung\": {\n        \"form\": \"Verehrung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verehrungen\"\n    },\n    \"Vereinbarung\": {\n        \"form\": \"Vereinbarung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vereinbarungen\"\n    },\n    \"Vereinfachung\": {\n        \"form\": \"Vereinfachung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vereinfachungen\"\n    },\n    \"Vereinigung\": {\n        \"form\": \"Vereinigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vereinigungen\"\n    },\n    \"Vererbung\": {\n        \"form\": \"Vererbung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vererbungen\"\n    },\n    \"Verfeinerung\": {\n        \"form\": \"Verfeinerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verfeinerungen\"\n    },\n    \"Vergebung\": {\n        \"form\": \"Vergebung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergebungen\"\n    },\n    \"Vergrößerung\": {\n        \"form\": \"Vergrößerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergrößerungen\"\n    },\n    \"Vergötterung\": {\n        \"form\": \"Vergötterung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vergötterungen\"\n    },\n    \"Verhandelung\": {\n        \"form\": \"Verhandelung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verhandelungen\"\n    },\n    \"Verlobung\": {\n        \"form\": \"Verlobung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verlobungen\"\n    },\n    \"Verlöbnis\": {\n        \"form\": \"Verlöbnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verlöbnisse,Verlöbsnisses,Verlöbnissen\"\n    },\n    \"Vermittlung\": {\n        \"form\": \"Vermittlung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vermittlungen\"\n    },\n    \"Vernunft\": {\n        \"form\": \"Vernunft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Verschönerung\": {\n        \"form\": \"Verschönerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verschönerungen\"\n    },\n    \"Versicherung\": {\n        \"form\": \"Versicherung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versicherungen\"\n    },\n    \"Versprechen\": {\n        \"form\": \"Versprechen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versprechens\"\n    },\n    \"Verstand\": {\n        \"form\": \"Verstand\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verstands,Verstandes\"\n    },\n    \"Verständnis\": {\n        \"form\": \"Verständnis\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verständnissen,Verständnisse,Verständnisses\"\n    },\n    \"Verstärkung\": {\n        \"form\": \"Verstärkung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verstärkungen\"\n    },\n    \"Versöhnung\": {\n        \"form\": \"Versöhnung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Versöhnungen\"\n    },\n    \"Verteidiger\": {\n        \"form\": \"Verteidiger\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verteidigern,Verteidigers\"\n    },\n    \"Verteidigung\": {\n        \"form\": \"Verteidigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verteidigungen\"\n    },\n    \"Vertrag\": {\n        \"form\": \"Vertrag\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verträgen,Verträge,Vertrags,Vertrages\"\n    },\n    \"Vertrauen\": {\n        \"form\": \"Vertrauen\",\n        \"polarity\": \"0.3512\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vertrauens\"\n    },\n    \"Vertrauenswürdigkeit\": {\n        \"form\": \"Vertrauenswürdigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vertrauenswürdigkeiten\"\n    },\n    \"Vertrauter\": {\n        \"form\": \"Vertrauter\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vertraute\"\n    },\n    \"Vertrautheit\": {\n        \"form\": \"Vertrautheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vertrautheiten\"\n    },\n    \"Verwendbarkeit\": {\n        \"form\": \"Verwendbarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwendbarkeiten\"\n    },\n    \"Verwirklichung\": {\n        \"form\": \"Verwirklichung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Verwirklichungen\"\n    },\n    \"Vielseitigkeit\": {\n        \"form\": \"Vielseitigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vielseitigkeiten\"\n    },\n    \"Vielzahl\": {\n        \"form\": \"Vielzahl\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Visionär\": {\n        \"form\": \"Visionär\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Visionäres,Visionäre,Visionärs,Visionären\"\n    },\n    \"Vitalität\": {\n        \"form\": \"Vitalität\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Vollständigkeit\": {\n        \"form\": \"Vollständigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Vorbereitung\": {\n        \"form\": \"Vorbereitung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorbereitungen\"\n    },\n    \"Vorsicht\": {\n        \"form\": \"Vorsicht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Vorsorge\": {\n        \"form\": \"Vorsorge\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorsorgen\"\n    },\n    \"Vorteil\": {\n        \"form\": \"Vorteil\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Vorteilen,Vorteils,Vorteiles,Vorteile\"\n    },\n    \"Wachsamkeit\": {\n        \"form\": \"Wachsamkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Wachstum\": {\n        \"form\": \"Wachstum\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wachstums\"\n    },\n    \"Wahrheit\": {\n        \"form\": \"Wahrheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wahrheiten\"\n    },\n    \"Weichheit\": {\n        \"form\": \"Weichheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Weichheiten\"\n    },\n    \"Weisheit\": {\n        \"form\": \"Weisheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Weisheiten\"\n    },\n    \"Weitsichtigkeit\": {\n        \"form\": \"Weitsichtigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Wert\": {\n        \"form\": \"Wert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Werte,Wertes,Werts,Werten\"\n    },\n    \"Wertschätzung\": {\n        \"form\": \"Wertschätzung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wertschätzungen\"\n    },\n    \"Wertsteigerung\": {\n        \"form\": \"Wertsteigerung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wertsteigerungen\"\n    },\n    \"Widerstandsfähigkeit\": {\n        \"form\": \"Widerstandsfähigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Wiederbelebung\": {\n        \"form\": \"Wiederbelebung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wiederbelebungen\"\n    },\n    \"Wiedergutmachung\": {\n        \"form\": \"Wiedergutmachung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wiedergutmachungen\"\n    },\n    \"Wiederherstellung\": {\n        \"form\": \"Wiederherstellung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wiederherstellungen\"\n    },\n    \"Wiederkehr\": {\n        \"form\": \"Wiederkehr\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Wiedervereinigung\": {\n        \"form\": \"Wiedervereinigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wiedervereinigungen\"\n    },\n    \"Wille\": {\n        \"form\": \"Wille\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Willen,Willens\"\n    },\n    \"Wirksamkeit\": {\n        \"form\": \"Wirksamkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wirksamkeiten\"\n    },\n    \"Wissen\": {\n        \"form\": \"Wissen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wissens\"\n    },\n    \"Witz\": {\n        \"form\": \"Witz\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Witzen,Witzes,Witze\"\n    },\n    \"Wohlergehen\": {\n        \"form\": \"Wohlergehen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohlergehens\"\n    },\n    \"Wohlgefallen\": {\n        \"form\": \"Wohlgefallen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohlgefallens\"\n    },\n    \"Wohlstand\": {\n        \"form\": \"Wohlstand\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohlstandes,Wohlstands,Wohlstande\"\n    },\n    \"Wohltat\": {\n        \"form\": \"Wohltat\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohltaten\"\n    },\n    \"Wohltäter\": {\n        \"form\": \"Wohltäter\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohltäters,Wohltätern\"\n    },\n    \"Wohltätigkeit\": {\n        \"form\": \"Wohltätigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohltätigkeiten\"\n    },\n    \"Wohlwollen\": {\n        \"form\": \"Wohlwollen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wohlwollens\"\n    },\n    \"Wunder\": {\n        \"form\": \"Wunder\",\n        \"polarity\": \"0.0741\",\n        \"pos\": \"NN\",\n        \"sense\": \"Wundern,Wunders\"\n    },\n    \"Wärme\": {\n        \"form\": \"Wärme\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zenit\": {\n        \"form\": \"Zenit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zenites,Zeniten,Zenits,Zenite\"\n    },\n    \"Ziel\": {\n        \"form\": \"Ziel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Ziels,Ziele,Zieles,Zielen\"\n    },\n    \"Zuflucht\": {\n        \"form\": \"Zuflucht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zufluchten\"\n    },\n    \"Zufriedenheit\": {\n        \"form\": \"Zufriedenheit\",\n        \"polarity\": \"0.2207\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zugabe\": {\n        \"form\": \"Zugabe\",\n        \"polarity\": \"0.0882\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zugaben\"\n    },\n    \"Zugänglichkeit\": {\n        \"form\": \"Zugänglichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zulage\": {\n        \"form\": \"Zulage\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zulagen\"\n    },\n    \"Zulässigkeit\": {\n        \"form\": \"Zulässigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zuneigung\": {\n        \"form\": \"Zuneigung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zuneigungen\"\n    },\n    \"Zusammenarbeit\": {\n        \"form\": \"Zusammenarbeit\",\n        \"polarity\": \"0.0893\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zusammenarbeiten\"\n    },\n    \"Zusammengehörigkeit\": {\n        \"form\": \"Zusammengehörigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zusammenhalt\": {\n        \"form\": \"Zusammenhalt\",\n        \"polarity\": \"0.1947\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zusammenhaltes,Zusammenhalte,Zusammenhalts,Zusammenhalten\"\n    },\n    \"Zuschuß\": {\n        \"form\": \"Zuschuß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zuschüße,Zuschußes,Zuschüßen,Zuschußs\"\n    },\n    \"Zustimmung\": {\n        \"form\": \"Zustimmung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Zustimmungen\"\n    },\n    \"Zuverlässigkeit\": {\n        \"form\": \"Zuverlässigkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Zuversicht\": {\n        \"form\": \"Zuversicht\",\n        \"polarity\": \"0.0727\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"abgesichert\": {\n        \"form\": \"abgesichert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abgesicherte,abgesichertem,abgesicherten,abgesicherter,abgesichertes,abgesichertere,abgesicherterem,abgesicherteren,abgesicherterer,abgesicherteres,abgesichertste,abgesichertstem,abgesichertsten,abgesichertster,abgesichertstes\"\n    },\n    \"abmachen\": {\n        \"form\": \"abmachen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"abgemacht,abmachst,abmachet,abmachten,abmacht,abmache,abmachtest,abmachte,abmachest,abmachtet\"\n    },\n    \"abschließen\": {\n        \"form\": \"abschließen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"absolut\": {\n        \"form\": \"absolut\",\n        \"polarity\": \"0.2418\",\n        \"pos\": \"JJ\",\n        \"sense\": \"absoluterem,absolutem,absolutestem,absolutesten,absoluten,absolutere,absolutestes,absolutester,absoluteren,absolutes,absoluteres,absoluterer,absoluter,absolute,absoluteste\"\n    },\n    \"abstimmen\": {\n        \"form\": \"abstimmen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"abstimmtest,abstimmtet,abstimmt,abstimmest,abstimmet,abstimmten,abgestimmt,abstimmte,abstimmst,abstimme\"\n    },\n    \"abwechslungsreich\": {\n        \"form\": \"abwechslungsreich\",\n        \"polarity\": \"0.5797\",\n        \"pos\": \"JJ\",\n        \"sense\": \"abwechslungsreichster,abwechslungsreichere,abwechslungsreicheren,abwechslungsreicherem,abwechslungsreichsten,abwechslungsreichstem,abwechslungsreichstes,abwechslungsreichste,abwechslungsreichen,abwechslungsreichem,abwechslungsreicherer,abwechslungsreicher,abwechslungsreicheres,abwechslungsreiches,abwechslungsreiche\"\n    },\n    \"addieren\": {\n        \"form\": \"addieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"addierst,addierten,addierest,addiere,addiertet,addierte,addiertest,addieret,addiert\"\n    },\n    \"adrett\": {\n        \"form\": \"adrett\",\n        \"polarity\": \"0.1987\",\n        \"pos\": \"JJ\",\n        \"sense\": \"adrettestes,adrettere,adretteren,adrettester,adrettestem,adrettesten,adretterem,adrettem,adretten,adretteste,adrette,adretter,adrettes,adretteres,adretterer\"\n    },\n    \"agil\": {\n        \"form\": \"agil\",\n        \"polarity\": \"0.1959\",\n        \"pos\": \"JJ\",\n        \"sense\": \"agilstes,agilster,agileren,agilerem,agilsten,agilstem,agilere,agileres,agiles,agiler,agilen,agilem,agilerer,agilste,agile\"\n    },\n    \"akkurat\": {\n        \"form\": \"akkurat\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"akkuratester,akkuratestes,akkuratem,akkuraten,akkurater,akkurates,akkurateres,akkuratere,akkurate,akkuraterer,akkuratesten,akkuraterem,akkuratestem,akkurateren,akkurateste\"\n    },\n    \"aktiv\": {\n        \"form\": \"aktiv\",\n        \"polarity\": \"0.0911\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aktivere,aktiveren,aktiverem,aktivste,aktivem,aktiven,aktiver,aktives,aktivster,aktiverer,aktivstes,aktiveres,aktive,aktivstem,aktivsten\"\n    },\n    \"aktualisieren\": {\n        \"form\": \"aktualisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aktualisiertest,aktualisieret,aktualisiert,aktualisiere,aktualisierte,aktualisierest,aktualisiertet,aktualisierst,aktualisierten\"\n    },\n    \"aktuell\": {\n        \"form\": \"aktuell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aktuellere,aktueller,aktuelle,aktuellen,aktuellem,aktuellerem,aktuelles,aktuellsten,aktuellstem,aktuelleren,aktuellste,aktuelleres,aktuellerer,aktuellstes,aktuellster\"\n    },\n    \"akzeptabel\": {\n        \"form\": \"akzeptabel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"akzeptabelster,akzeptabler,akzeptabelstem,akzeptabelsten,akzeptablen,akzeptablere,akzeptablem,akzeptabelste,akzeptable,akzeptablerem,akzeptableres,akzeptablerer,akzeptables,akzeptabelstes,akzeptableren\"\n    },\n    \"akzeptieren\": {\n        \"form\": \"akzeptieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"akzeptiertet,akzeptiertest,akzeptierest,akzeptiert,akzeptieret,akzeptierten,akzeptierst,akzeptiere,akzeptierte\"\n    },\n    \"allerbeste\": {\n        \"form\": \"allerbeste\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"allerbestem,allerbesten,allerbester,allersbestes\"\n    },\n    \"allererste\": {\n        \"form\": \"allererste\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"allererstem,allerersten,allererster,allererstes\"\n    },\n    \"allgemeingültig\": {\n        \"form\": \"allgemeingültig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"allgemeingültige,allgemeingültigem,allgemeingültigen,allgemeingültiger,allgemeingültiges\"\n    },\n    \"allumfassend\": {\n        \"form\": \"allumfassend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"allumfassende,allumfassendem,allumfassenden,allumfassender,allumfassendes\"\n    },\n    \"anbieten\": {\n        \"form\": \"anbieten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anbiete,anbietest,anbietet,anbot,anbotest,anbotst,anboten,anbotet,anböte,anbötest,anböten,anbötet\"\n    },\n    \"anerkannt\": {\n        \"form\": \"anerkannt\",\n        \"polarity\": \"0.0785\",\n        \"pos\": \"JJ\",\n        \"sense\": \"anerkannteren,anerkannterem,anerkannteres,anerkannterer,anerkanntester,anerkannter,anerkanntes,anerkanntestem,anerkanntesten,anerkannten,anerkannte,anerkanntem,anerkanntere,anerkanntestes,anerkannteste\"\n    },\n    \"anerkennen\": {\n        \"form\": \"anerkennen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anerkenne,anerkennst,anerkennt,anerkennest,anerkennet,anerkannte,anerkanntest,anerkannten,anerkanntet\"\n    },\n    \"anerkennenswert\": {\n        \"form\": \"anerkennenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"anerkennenswertesten,anerkennenswerterem,anerkennenswertestem,anerkennenswertes,anerkennenswertester,anerkennenswerter,anerkennenswertestes,anerkennenswertere,anerkennenswerteren,anerkennenswertem,anerkennenswerterer,anerkennenswerteste,anerkennenswerten,anerkennenswerteres,anerkennenswerte\"\n    },\n    \"angemessen\": {\n        \"form\": \"angemessen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angemessnerer,angemessenere,angemessneres,angemessneren,angemessenes,angemessnerem,angemessener,angemessene,angemessenem,angemessenen,angemesseneren,angemessenerem,angemesseneres,angemessenerer,angemessenstem,angemessensten,angemessner,angemessenster,angemessenstes,angemessenste,angemessnere\"\n    },\n    \"angenehm\": {\n        \"form\": \"angenehm\",\n        \"polarity\": \"0.4887\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angenehmes,angenehmer,angenehmeres,angenehmerer,angenehmen,angenehmstem,angenehmsten,angenehmere,angenehmstes,angenehme,angenehmster,angenehmste,angenehmem,angenehmerem,angenehmeren\"\n    },\n    \"angesehen\": {\n        \"form\": \"angesehen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"angesehnerem,angesehensten,angesehneren,angesehene,angeseheneren,angesehenerem,angesehenstem,angeseheneres,angesehnerer,angesehenerer,angesehneres,angesehenen,angesehenem,angesehnere,angesehenere,angesehenes,angesehener,angesehner,angesehenste,angesehenstes,angesehenster\"\n    },\n    \"anheben\": {\n        \"form\": \"anheben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anhebe,anhebst,anhebt,anhebest,anhebet,anhob,anhobst,anhoben,anhobt,anhöbe,anhöbest,anhöbst,anhöben,anhöbet,anhöbt\"\n    },\n    \"anheitern\": {\n        \"form\": \"anheitern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"angeheitert\"\n    },\n    \"ankurbeln\": {\n        \"form\": \"ankurbeln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ankurbele,ankurble,ankurbelst,ankurbelt,ankurblest,ankurblet,ankurbelte,ankurbeltest,ankurbelten,ankurbeltet,angekurbelt\"\n    },\n    \"anlocken\": {\n        \"form\": \"anlocken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anlocke,anlockst,anlockt,anlockest,anlocket,anlockte,anlocktest,anlockten,anlocktet,angelockt\"\n    },\n    \"annehmbar\": {\n        \"form\": \"annehmbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"annehmbareren,annehmbareres,annehmbarerer,annehmbarste,annehmbare,annehmbarstem,annehmbarere,annehmbares,annehmbarsten,annehmbarstes,annehmbaren,annehmbarster,annehmbarem,annehmbarer,annehmbarerem\"\n    },\n    \"annähern\": {\n        \"form\": \"annähern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"angenähert,annähertet,annäherte,annähert,annähere,annähertest,annäherten,annäheren,annäherst\"\n    },\n    \"anpassen\": {\n        \"form\": \"anpassen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anpasse,anpasst,anpaßt,anpassest,anpasset,anpasste,anpaßte,anpasstest,anpaßtest,anpassten,anpaßten,anpasstet,anpaßtet\"\n    },\n    \"anpassungsfähig\": {\n        \"form\": \"anpassungsfähig\",\n        \"polarity\": \"0.0799\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"anreichern\": {\n        \"form\": \"anreichern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anreichertet,anreicheren,anreicherten,anreicherst,anreichere,angereichert,anreichert,anreichertest,anreicherte\"\n    },\n    \"ansehnlich\": {\n        \"form\": \"ansehnlich\",\n        \"polarity\": \"0.0931\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ansehnlicheres,ansehnlicherer,ansehnlichem,ansehnlichstes,ansehnlichster,ansehnlichste,ansehnlichstem,ansehnlichsten,ansehnlichen,ansehnlicheren,ansehnlicherem,ansehnlicher,ansehnliches,ansehnliche,ansehnlichere\"\n    },\n    \"ansprechend\": {\n        \"form\": \"ansprechend\",\n        \"polarity\": \"0.3382\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ansprechende,ansprechendem,ansprechenden,ansprechender,ansprechenderen,ansprechenderem,ansprechendes,ansprechendstem,ansprechendsten,ansprechenderer,ansprechendste,ansprechenderes,ansprechendster,ansprechendere,ansprechendstes\"\n    },\n    \"anspruchsvoll\": {\n        \"form\": \"anspruchsvoll\",\n        \"polarity\": \"0.2216\",\n        \"pos\": \"JJ\",\n        \"sense\": \"anspruchsvollerem,anspruchsvollere,anspruchsvollen,anspruchsvollem,anspruchsvolleres,anspruchsvollerer,anspruchsvoller,anspruchsvollstes,anspruchsvollster,anspruchsvolleren,anspruchsvollsten,anspruchsvolle,anspruchsvolles,anspruchsvollstem,anspruchsvollste\"\n    },\n    \"ansteigen\": {\n        \"form\": \"ansteigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ansteige,ansteigst,ansteigt,ansteigest,ansteiget,anstieg,anstiegst,anstiegen,anstiegt,anstiege,anstiegest,anstieget\"\n    },\n    \"anständig\": {\n        \"form\": \"anständig\",\n        \"polarity\": \"0.0977\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"anteilig\": {\n        \"form\": \"anteilig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"anteiligeres,anteiligerer,anteiligerem,anteiligeren,anteiliger,anteiligere,anteiliges,anteiligen,anteilige,anteiligster,anteiligste,anteiligstes,anteiligem,anteiligsten,anteiligstem\"\n    },\n    \"anvertrauen\": {\n        \"form\": \"anvertrauen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anvertrautet,anvertraust,anvertraute,anvertraut,anvertraue,anvertrauet,anvertrauest,anvertrautest,anvertrauten\"\n    },\n    \"anziehen\": {\n        \"form\": \"anziehen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"anziehen,anziehst,anzieht,anziehest,anziehet,anzog,anzogst,anzogen,anzogt,anzöge,anzögest,anzögst,anzögen,anzöget,anzögt\"\n    },\n    \"applaudieren\": {\n        \"form\": \"applaudieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"applaudieret,applaudierten,applaudierte,applaudierest,applaudiertest,applaudiertet,applaudierst,applaudiert,applaudiere\"\n    },\n    \"artig\": {\n        \"form\": \"artig\",\n        \"polarity\": \"0.225\",\n        \"pos\": \"JJ\",\n        \"sense\": \"artigstem,artigsten,artigster,artigere,artigerem,artige,artigeren,artigem,artigerer,artigstes,artigen,artigste,artigeres,artiges,artiger\"\n    },\n    \"atemberaubend\": {\n        \"form\": \"atemberaubend\",\n        \"polarity\": \"0.3261\",\n        \"pos\": \"JJ\",\n        \"sense\": \"atemberaubenderen,atemberaubenderem,atemberaubendster,atemberaubenderer,atemberaubende,atemberaubendstem,atemberaubendsten,atemberaubenderes,atemberaubendere,atemberaubendstes,atemberaubendes,atemberaubender,atemberaubendste,atemberaubenden,atemberaubendem\"\n    },\n    \"attraktiv\": {\n        \"form\": \"attraktiv\",\n        \"polarity\": \"0.2162\",\n        \"pos\": \"JJ\",\n        \"sense\": \"attraktives,attraktiver,attraktivstes,attraktiveres,attraktivster,attraktiverer,attraktive,attraktivsten,attraktiveren,attraktivstem,attraktiverem,attraktivste,attraktivere,attraktiven,attraktivem\"\n    },\n    \"aufbereiten\": {\n        \"form\": \"aufbereiten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufbereite,aufbereitest,aufbereitet,aufbereitete,aufbereitetest,aufbereiteten,aufbereitetet\"\n    },\n    \"aufbessern\": {\n        \"form\": \"aufbessern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufbessertest,aufbesserten,aufbesseren,aufbessertet,aufgebessert,aufbesserst,aufbesserte,aufbessert,aufbessere\"\n    },\n    \"aufblühen\": {\n        \"form\": \"aufblühen\",\n        \"polarity\": \"0.0845\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufblühe,aufblühst,aufblüht,aufblühest,aufblühet,aufblühte,aufblühtest,aufblühten,aufblühtet,aufgeblüht\"\n    },\n    \"auferstehen\": {\n        \"form\": \"auferstehen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"auferstehe,auferstehst,aufersteht,auferstehest,auferstehet,auferstand,auferstandest,auferstandst,auferstanden,auferstandet,auferstände,auferstünde,auferständest,auferstündest,auferständet,auferstündet\"\n    },\n    \"aufmerksam\": {\n        \"form\": \"aufmerksam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufmerksamstem,aufmerksamsten,aufmerksamere,aufmerksame,aufmerksamster,aufmerksamstes,aufmerksames,aufmerksamer,aufmerksameres,aufmerksamerer,aufmerksamste,aufmerksameren,aufmerksamen,aufmerksamerem,aufmerksamem\"\n    },\n    \"aufmuntern\": {\n        \"form\": \"aufmuntern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufmunterte,aufmuntertet,aufmunterst,aufmunteren,aufmuntere,aufmunterten,aufmuntertest,aufmuntert,aufgemuntert\"\n    },\n    \"aufmunternd\": {\n        \"form\": \"aufmunternd\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufmunternde,aufmunterndem,aufmunternden,aufmunternder,aufmunterndes,aufmunterndere,aufmunternderem,aufmunternderen,aufmunternderer,aufmunternderes,aufmunterndste,aufmunterndstem,aufmunterndsten,aufmunterndster,aufmunterndstes\"\n    },\n    \"aufrecht\": {\n        \"form\": \"aufrecht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufrechtester,aufrechterem,aufrechtestes,aufrechte,aufrechtestem,aufrechtesten,aufrechtere,aufrechtem,aufrechten,aufrechter,aufrechteren,aufrechtes,aufrechteres,aufrechterer,aufrechteste\"\n    },\n    \"aufrichtig\": {\n        \"form\": \"aufrichtig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufrichtigerem,aufrichtigste,aufrichtigeren,aufrichtige,aufrichtigeres,aufrichtigerer,aufrichtigster,aufrichtiger,aufrichtigstes,aufrichtiges,aufrichtigem,aufrichtigsten,aufrichtigen,aufrichtigstem,aufrichtigere\"\n    },\n    \"aufschwingen\": {\n        \"form\": \"aufschwingen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufschwinge,aufschwingst,aufschwingt,aufschwingest,aufschwinget,aufschwang,aufschwangst,aufschwangen,aufschwangt,aufschwänge,aufschwängest,aufschwängst,aufschwängen,aufschwänget,aufschwängt,aufgeschwungen\"\n    },\n    \"aufsteigen\": {\n        \"form\": \"aufsteigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufsteige,aufsteigst,aufsteigt,aufsteigest,aufsteiget,aufstieg,aufstiegst,aufstiegen,aufstiegt,aufstiege,aufstiegest,aufstieget,aufgestiegen\"\n    },\n    \"aufstocken\": {\n        \"form\": \"aufstocken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufgestockt,aufstocket,aufstockest,aufstockten,aufstocktet,aufstockst,aufstockte,aufstockt,aufstocke,aufstocktest\"\n    },\n    \"auftreiben\": {\n        \"form\": \"auftreiben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"auftreibe,auftreibst,auftreibt,auftreibest,auftreibet,auftrieb,auftrieben,auftriebt,auftriebe,auftriebest,auftriebet,aufgetrieben\"\n    },\n    \"aufwendig\": {\n        \"form\": \"aufwendig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aufwendiger,aufwendiges,aufwendigem,aufwendigere,aufwendigstem,aufwendigen,aufwendigsten,aufwendigerer,aufwendigeres,aufwendigste,aufwendigerem,aufwendigeren,aufwendige,aufwendigster,aufwendigstes\"\n    },\n    \"aufwerten\": {\n        \"form\": \"aufwerten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"aufwerte,aufwertest,aufwertet,aufwertete,aufwertetest,aufwerteten,aufwertetet,aufgewertet\"\n    },\n    \"aufwärts\": {\n        \"form\": \"aufwärts\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"ausbauen\": {\n        \"form\": \"ausbauen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausbaue,ausbaut,ausbautest,ausbauten,ausbauet,ausbaute,ausgebaut,ausbaust,ausbauest,ausbautet\"\n    },\n    \"ausbilden\": {\n        \"form\": \"ausbilden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausbildete,ausgebildet,ausbildet,ausbildte,ausbildten,ausbildeten,ausbildtet,ausbildest,ausbildetest,ausbildetet,ausbildtest,ausbilde\"\n    },\n    \"ausdauern\": {\n        \"form\": \"ausdauern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausdauere,ausdauerst,ausdauert,ausdauerte,ausdauertest,ausdauerten,ausdauertet,ausgedauert\"\n    },\n    \"ausführlich\": {\n        \"form\": \"ausführlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ausgeflippt\": {\n        \"form\": \"ausgeflippt\",\n        \"polarity\": \"0.0756\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausflippe,ausflippst,ausflippt,ausflippest,ausflippet,ausflippte,ausflipptest,ausflippten,ausflipptet,ausgeflippt\"\n    },\n    \"ausgeglichen\": {\n        \"form\": \"ausgeglichen\",\n        \"polarity\": \"0.0987\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgeglicheneres,ausgeglichner,ausgeglichene,ausgeglichenstes,ausgeglichenem,ausgeglichnere,ausgeglichenen,ausgeglichenere,ausgeglichenster,ausgeglichneres,ausgeglichnerer,ausgeglichensten,ausgeglichener,ausgeglichenes,ausgeglichenstem,ausgeglichenste,ausgeglichneren,ausgeglichnerem,ausgeglichenerem,ausgeglicheneren,ausgeglichenerer\"\n    },\n    \"ausgeweitet\": {\n        \"form\": \"ausgeweitet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgeweitete,ausgeweitetem,ausgeweiteten,ausgeweiteter,ausgeweitetes,ausgeweitetere,ausgeweiteterem,ausgeweiteteren,ausgeweiteterer,ausgeweiteteres,ausgeweitetste,ausgeweitetstem,ausgeweitetsten,ausgeweitetster,ausgeweitetstes\"\n    },\n    \"ausgewogen\": {\n        \"form\": \"ausgewogen\",\n        \"polarity\": \"0.206\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgewogenstes,ausgewogenere,ausgewogner,ausgewogenster,ausgewognere,ausgewognerem,ausgewogneren,ausgewognerer,ausgewogenstem,ausgewogneres,ausgewogensten,ausgewogene,ausgewogenes,ausgewogener,ausgewogenste,ausgewogenem,ausgewogenerer,ausgewogeneres,ausgewogenerem,ausgewogeneren,ausgewogenen\"\n    },\n    \"ausgewählt\": {\n        \"form\": \"ausgewählt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ausgezeichnet\": {\n        \"form\": \"ausgezeichnet\",\n        \"polarity\": \"0.3146\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausgezeichneteres,ausgezeichnetere,ausgezeichnetste,ausgezeichneterer,ausgezeichnetster,ausgezeichnetes,ausgezeichnetstes,ausgezeichneter,ausgezeichnetsten,ausgezeichnetem,ausgezeichnete,ausgezeichnetstem,ausgezeichneten,ausgezeichneteren,ausgezeichneterem\"\n    },\n    \"ausgleichen\": {\n        \"form\": \"ausgleichen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausgleiche,ausgleichst,aufgleicht,ausgleichest,ausgleichet,ausglich,ausglichst,ausglicht,ausglichen,ausgliche,ausglichest,ausglichet,ausgeglichen\"\n    },\n    \"auskommen\": {\n        \"form\": \"auskommen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"auskomme,auskommst,auskommt,auskommest,auskommet,auskam,auskamst,auskamen,auskamt,auskäme,auskämest,auskämst,auskämen,auskämet,auskämt,ausgekommen\"\n    },\n    \"auskurieren\": {\n        \"form\": \"auskurieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"auskurierte,auskurierst,auskurierten,auskuriere,auskurieret,auskurierest,auskuriert,auskuriertet,auskuriertest\"\n    },\n    \"ausreichen\": {\n        \"form\": \"ausreichen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausreiche,ausreichst,ausreicht,ausreichest,ausreichet,ausreichte,ausreichtest,ausreichten,ausreichtet,ausgereicht\"\n    },\n    \"ausreichend\": {\n        \"form\": \"ausreichend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ausreichenderer,ausreichenderes,ausreichenderen,ausreichenderem,ausreichendere,ausreichendste,ausreichendem,ausreichende,ausreichenden,ausreichendstes,ausreichendster,ausreichender,ausreichendes,ausreichendsten,ausreichendstem\"\n    },\n    \"aussichtsreich\": {\n        \"form\": \"aussichtsreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"aussichtsreicher,aussichtsreicheren,aussichtsreichste,aussichtsreichstes,aussichtsreichster,aussichtsreichen,aussichtsreicheres,aussichtsreichem,aussichtsreicherer,aussichtsreiche,aussichtsreicherem,aussichtsreichsten,aussichtsreiches,aussichtsreichere,aussichtsreichstem\"\n    },\n    \"ausweiten\": {\n        \"form\": \"ausweiten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ausweite,ausweitest,ausweitet,ausweitete,ausweitetest,ausweiteten,ausweitetet,ausgeweitet\"\n    },\n    \"auszeichnen\": {\n        \"form\": \"auszeichnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"auszeichnetest,auszeichnet,ausgezeichnet,auszeichnete,auszeichnest,auszeichneten,auszeichnetet,auszeichne\"\n    },\n    \"authentisch\": {\n        \"form\": \"authentisch\",\n        \"polarity\": \"0.1885\",\n        \"pos\": \"JJ\",\n        \"sense\": \"authentische,authentischer,authentischen,authentischem,authentischstem,authentischsten,authentischster,authentischstes,authentischerer,authentischeres,authentischste,authentischeren,authentischerem,authentischere,authentisches\"\n    },\n    \"autonom\": {\n        \"form\": \"autonom\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"autonome,autonomerer,autonomer,autonomeren,autonomerem,autonomes,autonomem,autonomen,autonomeres,autonomere,autonomste,autonomstes,autonomster,autonomsten,autonomstem\"\n    },\n    \"außergewöhnlich\": {\n        \"form\": \"außergewöhnlich\",\n        \"polarity\": \"0.3395\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"außerordentlich\": {\n        \"form\": \"außerordentlich\",\n        \"polarity\": \"0.1137\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bahnbrechend\": {\n        \"form\": \"bahnbrechend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bahnbrechenden,bahnbrechendem,bahnbrechendstem,bahnbrechendere,bahnbrechende,bahnbrechendsten,bahnbrechenderem,bahnbrechenderen,bahnbrechenderer,bahnbrechenderes,bahnbrechendster,bahnbrechendstes,bahnbrechender,bahnbrechendes,bahnbrechendste\"\n    },\n    \"barmherzig\": {\n        \"form\": \"barmherzig\",\n        \"polarity\": \"0.0744\",\n        \"pos\": \"JJ\",\n        \"sense\": \"barmherzige,barmherzigere,barmherzigstem,barmherzigsten,barmherziges,barmherziger,barmherzigste,barmherzigstes,barmherzigem,barmherzigster,barmherzigen,barmherzigerem,barmherzigeren,barmherzigerer,barmherzigeres\"\n    },\n    \"beachtenswert\": {\n        \"form\": \"beachtenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beachtenswertesten,beachtenswerten,beachtenswertem,beachtenswerterem,beachtenswertestem,beachtenswerteren,beachtenswertes,beachtenswerter,beachtenswerteste,beachtenswertestes,beachtenswertester,beachtenswerte,beachtenswertere,beachtenswerterer,beachtenswerteres\"\n    },\n    \"beachtlich\": {\n        \"form\": \"beachtlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beachtlichstes,beachtlichster,beachtliches,beachtliche,beachtlicher,beachtlichsten,beachtlicheren,beachtlicherem,beachtlichstem,beachtlichen,beachtlichste,beachtlichem,beachtlicherer,beachtlichere,beachtlicheres\"\n    },\n    \"beauftragen\": {\n        \"form\": \"beauftragen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beauftragten,beauftragest,beauftragt,beauftrage,beauftragtest,beauftragte,beauftragst,beauftragtet,beauftraget\"\n    },\n    \"bedarfsgerecht\": {\n        \"form\": \"bedarfsgerecht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedarfsgerechten,bedarfsgerechtestes,bedarfsgerechtester,bedarfsgerechter,bedarfsgerechtes,bedarfsgerechtesten,bedarfsgerechteste,bedarfsgerechtem,bedarfsgerechterem,bedarfsgerechteren,bedarfsgerechtere,bedarfsgerechte,bedarfsgerechtestem,bedarfsgerechterer,bedarfsgerechteres\"\n    },\n    \"bedarfsorientiert\": {\n        \"form\": \"bedarfsorientiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedarfsorientiertsten,bedarfsorientierte,bedarfsorientierterem,bedarfsorientiertes,bedarfsorientiertstem,bedarfsorientierterer,bedarfsorientierteres,bedarfsorientierteren,bedarfsorientiertere,bedarfsorientierter,bedarfsorientiertster,bedarfsorientiertste,bedarfsorientiertstes,bedarfsorientiertem,bedarfsorientierten\"\n    },\n    \"bedarft\": {\n        \"form\": \"bedarft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedarfteren,bedarfterem,bedarften,bedarftem,bedarftere,bedarftstem,bedarftsten,bedarfter,bedarfteres,bedarfterer,bedarftster,bedarftstes,bedarftes,bedarftste,bedarfte\"\n    },\n    \"bedenken\": {\n        \"form\": \"bedenken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedenke,bedenkst,bedenkt,bedenkest,bedenket,bedachte,bedachtest,bedachten,bedachtet,bedächte,bedächtest,bedächten,bedächtet\"\n    },\n    \"bedeuten\": {\n        \"form\": \"bedeuten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bedeute,bedeutest,bedeutet,bedeutete,bedeutetest,bedeuteten,bedeutetet\"\n    },\n    \"bedeutend\": {\n        \"form\": \"bedeutend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedeutendere,bedeutenderer,bedeutenderes,bedeutendste,bedeutendem,bedeutende,bedeutenden,bedeutendes,bedeutender,bedeutenderem,bedeutendsten,bedeutendstem,bedeutenderen,bedeutendstes,bedeutendster\"\n    },\n    \"bedeutsam\": {\n        \"form\": \"bedeutsam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bedeutsamsten,bedeutsamen,bedeutsamem,bedeutsamstem,bedeutsamster,bedeutsamer,bedeutsamerer,bedeutsamstes,bedeutsameres,bedeutsame,bedeutsames,bedeutsameren,bedeutsamerem,bedeutsamere,bedeutsamste\"\n    },\n    \"beeindrucken\": {\n        \"form\": \"beeindrucken\",\n        \"polarity\": \"0.2126\",\n        \"pos\": \"VB\",\n        \"sense\": \"beeindruckten,beeindruckest,beeindruckt,beeindrucke,beeindrucktet,beeindrucktest,beeindruckte,beeindruckst,beeindrucket\"\n    },\n    \"beeindruckend\": {\n        \"form\": \"beeindruckend\",\n        \"polarity\": \"0.3408\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beeindruckende,beeindruckendem,beeindruckenden,beeindruckender,beeindruckendes,beeindruckendere,beeindruckenderem,beeindruckenderen,beeindruckenderer,beeindruckenderes,beeindruckendste,beeindruckendstem,beeindruckendsten,beeindruckendster,beeindruckendstes\"\n    },\n    \"befreien\": {\n        \"form\": \"befreien\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"befreiten,befreist,befreite,befreit,befreie,befreiest,befreitet,befreitest,befreiet\"\n    },\n    \"befriedigen\": {\n        \"form\": \"befriedigen\",\n        \"polarity\": \"0.0809\",\n        \"pos\": \"VB\",\n        \"sense\": \"befriedigtest,befriedigt,befriedigest,befriedige,befriedigst,befriedigten,befriedigte,befriediget,befriedigtet\"\n    },\n    \"befriedigend\": {\n        \"form\": \"befriedigend\",\n        \"polarity\": \"0.2152\",\n        \"pos\": \"JJ\",\n        \"sense\": \"befriedigendes,befriedigendstem,befriedigendsten,befriedigender,befriedigendstes,befriedigenden,befriedigendster,befriedigendem,befriedigendste,befriedigende,befriedigendere,befriedigenderem,befriedigenderen,befriedigenderer,befriedigenderes\"\n    },\n    \"befördern\": {\n        \"form\": \"befördern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"befördere,beförderten,beförderen,befördertet,befördertest,beförderst,beförderte,befördert\"\n    },\n    \"begehrt\": {\n        \"form\": \"begehrt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"begehrtere,begehrteste,begehrtester,begehrtestes,begehrten,begehrtestem,begehrtesten,begehrtem,begehrterer,begehrtes,begehrter,begehrteres,begehrterem,begehrteren,begehrte\"\n    },\n    \"begeistern\": {\n        \"form\": \"begeistern\",\n        \"polarity\": \"0.4324\",\n        \"pos\": \"VB\",\n        \"sense\": \"begeistertest,begeistert,begeistere,begeistertet,begeisteren,begeisterst,begeisterten,begeisterte\"\n    },\n    \"beglückend\": {\n        \"form\": \"beglückend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"begnadet\": {\n        \"form\": \"begnadet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"begnadetste,begnadeteres,begnadeterer,begnadeteren,begnadeterem,begnadetstem,begnadetem,begnadetsten,begnadeten,begnadete,begnadetes,begnadetere,begnadetstes,begnadetster,begnadeter\"\n    },\n    \"begnadigen\": {\n        \"form\": \"begnadigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"begnadigtet,begnadigte,begnadigst,begnadigt,begnadiget,begnadigest,begnadige,begnadigtest,begnadigten\"\n    },\n    \"begünstigen\": {\n        \"form\": \"begünstigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"begünstigest,begünstiget,begünstigtet,begünstigten,begünstige,begünstigt,begünstigtest,begünstigte,begünstigst\"\n    },\n    \"behaglich\": {\n        \"form\": \"behaglich\",\n        \"polarity\": \"0.2007\",\n        \"pos\": \"JJ\",\n        \"sense\": \"behaglichste,behaglichstes,behaglichem,behaglichen,behaglicherer,behaglicherem,behaglichster,behaglicheren,behaglichstem,behaglichsten,behagliche,behaglichere,behaglicheres,behaglicher,behagliches\"\n    },\n    \"beheben\": {\n        \"form\": \"beheben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"behebe,behebst,behebt,behebest,behebet,behob,behobst,behoben,behobt,behöbe,behöbest,behöbst,behöben,behöbet,behöbt\"\n    },\n    \"beheizbar\": {\n        \"form\": \"beheizbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beheizbarstes,beheizbarster,beheizbares,beheizbarerem,beheizbareren,beheizbarerer,beheizbareres,beheizbare,beheizbarstem,beheizbarer,beheizbarste,beheizbarsten,beheizbarem,beheizbaren,beheizbarere\"\n    },\n    \"beherrscht\": {\n        \"form\": \"beherrscht\",\n        \"polarity\": \"0.4635\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beherrschtem,beherrschteste,beherrschten,beherrschtes,beherrschteres,beherrschter,beherrschterer,beherrschterem,beherrschteren,beherrschtester,beherrschtesten,beherrschtestem,beherrschtere,beherrschte,beherrschtestes\"\n    },\n    \"behutsam\": {\n        \"form\": \"behutsam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"behutsame,behutsamste,behutsamerer,behutsamere,behutsameres,behutsameren,behutsamerem,behutsamster,behutsamstes,behutsames,behutsamer,behutsamen,behutsamem,behutsamstem,behutsamsten\"\n    },\n    \"behütet\": {\n        \"form\": \"behütet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"behütete,behütetem,behüteten,behüteter,behütetes\"\n    },\n    \"beilegen\": {\n        \"form\": \"beilegen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beilegte,beilegt,beilegst,beilegtet,beilegtest,beilege,beigelegt,beilegest,beileget,beilegten\"\n    },\n    \"beispielhaft\": {\n        \"form\": \"beispielhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beispielhafte,beispielhaftesten,beispielhaftestem,beispielhaften,beispielhaftem,beispielhaftester,beispielhaftestes,beispielhafter,beispielhaftes,beispielhaftere,beispielhafteren,beispielhafterem,beispielhafteres,beispielhafterer,beispielhafteste\"\n    },\n    \"beisteuern\": {\n        \"form\": \"beisteuern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beisteuerte,beisteueren,beisteuerst,beisteuertest,beigesteuert,beisteuertet,beisteuert,beisteuere,beisteuerten\"\n    },\n    \"beitragen\": {\n        \"form\": \"beitragen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"beitreten\": {\n        \"form\": \"beitreten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beitrete,beitrittst,beitritt,beitretet,beitretest,beitrat,beitratest,beitratst,beitraten,beitratet,beiträte,beiträtest,beiträten,beiträtet,beigetreten\"\n    },\n    \"bejubelt\": {\n        \"form\": \"bejubelt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bejubelte,bejubeltem,bejubelten,bejubelter,bejubeltes,bejubeltere,bejubelterem,bejubelteren,bejubelterer,bejubelteres,bejubeltste,bejubeltstem,bejubeltsten,bejubeltster,bejubeltstes\"\n    },\n    \"bekannt\": {\n        \"form\": \"bekannt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bekanntesten,bekanntere,bekanntestem,bekannte,bekanntester,bekannteste,bekanntestes,bekannter,bekanntes,bekanntem,bekannteren,bekannterem,bekannteres,bekannten,bekannterer\"\n    },\n    \"bekennend\": {\n        \"form\": \"bekennend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bekennende,bekennendem,bekennenden,bekennender,bekennendes,bekennendere,bekennenderem,bekennenderen,bekennenderer,bekennenderes,bekennendste,bekennendstem,bekennendsten,bekennendster,bekennendstes\"\n    },\n    \"bekräftigen\": {\n        \"form\": \"bekräftigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bekräftigtest,bekräftigte,bekräftigst,bekräftigt,bekräftiget,bekräftigtet,bekräftigten,bekräftigest,bekräftige\"\n    },\n    \"belastbar\": {\n        \"form\": \"belastbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"belastbarstes,belastbaren,belastbarster,belastbarem,belastbare,belastbarer,belastbarstem,belastbares,belastbarsten,belastbarerem,belastbareren,belastbarerer,belastbareres,belastbarere,belastbarste\"\n    },\n    \"beleben\": {\n        \"form\": \"beleben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"belebe,belebten,belebet,belebt,belebst,belebte,belebtet,belebtest,belebest\"\n    },\n    \"belehrbar\": {\n        \"form\": \"belehrbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"belehrbarstes,belehrbareren,belehrbarerem,belehrbarerer,belehrbarster,belehrbare,belehrbarstem,belehrbarsten,belehrbareres,belehrbarere,belehrbaren,belehrbarem,belehrbarste,belehrbarer,belehrbares\"\n    },\n    \"beliebt\": {\n        \"form\": \"beliebt\",\n        \"polarity\": \"0.2172\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beliebteres,beliebten,beliebterer,beliebtes,beliebter,beliebte,beliebteste,beliebtestem,beliebtesten,beliebtere,beliebtestes,beliebteren,beliebtester,beliebtem,beliebterem\"\n    },\n    \"belohnen\": {\n        \"form\": \"belohnen\",\n        \"polarity\": \"0.0893\",\n        \"pos\": \"VB\",\n        \"sense\": \"belohntest,belohnest,belohnte,belohnst,belohntet,belohnt,belohnten,belohnet,belohne\"\n    },\n    \"bemerkenswert\": {\n        \"form\": \"bemerkenswert\",\n        \"polarity\": \"0.4515\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bemerkenswertester,bemerkenswerter,bemerkenswertestes,bemerkenswertesten,bemerkenswertes,bemerkenswertestem,bemerkenswerte,bemerkenswerterer,bemerkenswerteres,bemerkenswertere,bemerkenswerterem,bemerkenswerteste,bemerkenswertem,bemerkenswerteren,bemerkenswerten\"\n    },\n    \"beneidenswert\": {\n        \"form\": \"beneidenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beneidenswertes,beneidenswerter,beneidenswertesten,beneidenswertere,beneidenswertestem,beneidenswertestes,beneidenswertester,beneidenswerteres,beneidenswerterer,beneidenswerteren,beneidenswerterem,beneidenswerteste,beneidenswerte,beneidenswertem,beneidenswerten\"\n    },\n    \"bequem\": {\n        \"form\": \"bequem\",\n        \"polarity\": \"0.2344\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bequemeres,bequemem,bequemerer,bequemste,bequemstem,bequemsten,bequemen,bequemeren,bequemerem,bequemes,bequemster,bequemer,bequemstes,bequemere,bequeme\"\n    },\n    \"berauschend\": {\n        \"form\": \"berauschend\",\n        \"polarity\": \"0.0809\",\n        \"pos\": \"JJ\",\n        \"sense\": \"berauschendsten,berauschendere,berauschendster,berauschendstes,berauschenden,berauschendem,berauschenderer,berauschenderes,berauschende,berauschendste,berauschenderem,berauschendes,berauschender,berauschenderen,berauschendstem\"\n    },\n    \"bereichern\": {\n        \"form\": \"bereichern\",\n        \"polarity\": \"0.0718\",\n        \"pos\": \"VB\",\n        \"sense\": \"bereichere,bereicherte,bereicherst,bereichertet,bereichertest,bereichert,bereicheren,bereicherten\"\n    },\n    \"bereit\": {\n        \"form\": \"bereit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bereite,bereitem,bereiten,bereiter,bereites\"\n    },\n    \"bereitstellen\": {\n        \"form\": \"bereitstellen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bereitstelltet,bereitstellest,bereitstelltest,bereitstellten,bereitstellet,bereitstellst,bereitstellte,bereitstellt,bereitgestellt,bereitstelle\"\n    },\n    \"beruhigen\": {\n        \"form\": \"beruhigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beruhigte,beruhigst,beruhiget,beruhigtet,beruhigten,beruhigtest,beruhigest,beruhigt,beruhige\"\n    },\n    \"beruhigend\": {\n        \"form\": \"beruhigend\",\n        \"polarity\": \"0.2133\",\n        \"pos\": \"JJ\",\n        \"sense\": \"beruhigende,beruhigendem,beruhigenden,beruhigender,beruhigendes,beruhigendere,beruhigenderem,beruhigenderen,beruhigenderer,beruhigenderes,beruhigendste,beruhigendstem,beruhigendsten,beruhigendster,beruhigendstes\"\n    },\n    \"berühmt\": {\n        \"form\": \"berühmt\",\n        \"polarity\": \"0.3267\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bescheiden\": {\n        \"form\": \"bescheiden\",\n        \"polarity\": \"0.0956\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bescheidnere,bescheidenste,bescheidensten,bescheidenstem,bescheidner,bescheidenem,bescheidenen,bescheidene,bescheideneren,bescheidneren,bescheidnerem,bescheidenerem,bescheidener,bescheidenerer,bescheidneres,bescheideneres,bescheidnerer,bescheidenes,bescheidenere,bescheidenster,bescheidenstes\"\n    },\n    \"beschleunigen\": {\n        \"form\": \"beschleunigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschleunigst,beschleuniget,beschleunigtest,beschleunigte,beschleunigt,beschleunigten,beschleunigtet,beschleunigest,beschleunige\"\n    },\n    \"beschwichtigen\": {\n        \"form\": \"beschwichtigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beschwichtigten,beschwichtigest,beschwichtigst,beschwichtiget,beschwichtigte,beschwichtige,beschwichtigtest,beschwichtigtet,beschwichtigt\"\n    },\n    \"besitzen\": {\n        \"form\": \"besitzen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"besitze,besitzt,besitzest,besitzet,besaß,besaßest,besaßt,besaßen,besäße,besäßest,besäßen,besäßet\"\n    },\n    \"besondere\": {\n        \"form\": \"besondere\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"besonderem,besonderen,besondereren,besonderes\"\n    },\n    \"besonders\": {\n        \"form\": \"besonders\",\n        \"polarity\": \"0.5391\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"besonnen\": {\n        \"form\": \"besonnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"besonnenstes,besonnener,besonnenster,besonnenes,besonnenen,besonnensten,besonnenem,besonnenerem,besonneneren,besonnenstem,besonnenere,besonnenste,besonneneres,besonnene,besonnenerer\"\n    },\n    \"besser\": {\n        \"form\": \"besser\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bessere,besserem,besseren,besserer,besseres,beste,bestem,besten,bester,bestes\"\n    },\n    \"bessern\": {\n        \"form\": \"bessern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bessert,bessertet,bessere,gebessert,bessertest,besserten,besserte,besserst,besseren\"\n    },\n    \"bestehen\": {\n        \"form\": \"bestehen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"bestens\": {\n        \"form\": \"bestens\",\n        \"polarity\": \"0.0808\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"bestmöglich\": {\n        \"form\": \"bestmöglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bestätigen\": {\n        \"form\": \"bestätigen\",\n        \"polarity\": \"0.0854\",\n        \"pos\": \"VB\",\n        \"sense\": \"bestätiget,bestätigte,bestätigtest,bestätigtet,bestätige,bestätigt,bestätigest,bestätigten,bestätigst\"\n    },\n    \"beteiligen\": {\n        \"form\": \"beteiligen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"beteiligst,beteiliget,beteiligten,beteiligte,beteiligtet,beteiligt,beteiligest,beteilige,beteiligtest\"\n    },\n    \"beträchtlich\": {\n        \"form\": \"beträchtlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bevorzugt\": {\n        \"form\": \"bevorzugt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bevorzugte,bevorzugtem,bevorzugten,bevorzugter,bevorzugtes\"\n    },\n    \"bewegend\": {\n        \"form\": \"bewegend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bewegende,bewegendem,bewegenden,bewegender,bewegendes,bewegendere,bewegenderem,bewegenderen,bewegenderer,bewegenderes,bewegendste,bewegendstem,bewegendsten,bewegendster,bewegendstes\"\n    },\n    \"bewirken\": {\n        \"form\": \"bewirken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bewirktet,bewirktest,bewirket,bewirkten,bewirkte,bewirkst,bewirkest,bewirke,bewirkt\"\n    },\n    \"bewundern\": {\n        \"form\": \"bewundern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"bewunderten,bewundertet,bewundert,bewundere,bewunderte,bewunderen,bewunderst,bewundertest\"\n    },\n    \"bewundernswert\": {\n        \"form\": \"bewundernswert\",\n        \"polarity\": \"0.0823\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bewundernswertesten,bewundernswerter,bewundernswertestem,bewundernswertes,bewundernswertem,bewundernswerten,bewundernswerterer,bewundernswertestes,bewundernswertester,bewundernswerteres,bewundernswertere,bewundernswerteste,bewundernswerteren,bewundernswerte,bewundernswerterem\"\n    },\n    \"bewundert\": {\n        \"form\": \"bewundert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bewunderte,bewundertem,bewunderten,bewunderter,bewundertes,bewundertere,bewunderterem,bewunderteren,bewunderterer,bewunderteres,bewundertste,bewundertstem,bewundertsten,bewundertster,bewundertstes\"\n    },\n    \"bewährt\": {\n        \"form\": \"bewährt\",\n        \"polarity\": \"0.465\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bezaubernd\": {\n        \"form\": \"bezaubernd\",\n        \"polarity\": \"0.3081\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bezauberndere,bezaubernderem,bezaubernde,bezauberndste,bezauberndstes,bezauberndster,bezaubernder,bezauberndem,bezaubernden,bezaubernderen,bezauberndstem,bezaubernderer,bezauberndsten,bezaubernderes,bezauberndes\"\n    },\n    \"blendend\": {\n        \"form\": \"blendend\",\n        \"polarity\": \"0.3096\",\n        \"pos\": \"JJ\",\n        \"sense\": \"blendender,blendendem,blendenden,blendendste,blendenderer,blendenderes,blendenderen,blendendes,blendenderem,blendendstes,blendendster,blendendere,blendendstem,blendende,blendendsten\"\n    },\n    \"blühen\": {\n        \"form\": \"blühen\",\n        \"polarity\": \"0.2028\",\n        \"pos\": \"VB\",\n        \"sense\": \"blühtet,blühst,blühte,geblüht,blühten,blühest,blühet,blüht,blühe,blühtest\"\n    },\n    \"bombastisch\": {\n        \"form\": \"bombastisch\",\n        \"polarity\": \"0.2053\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bombastischster,bombastischstes,bombastischsten,bombastischeren,bombastischerem,bombastischste,bombastischstem,bombastischerer,bombastische,bombastischeres,bombastischem,bombastischere,bombastisches,bombastischer,bombastischen\"\n    },\n    \"bombig\": {\n        \"form\": \"bombig\",\n        \"polarity\": \"0.0837\",\n        \"pos\": \"JJ\",\n        \"sense\": \"bombigstem,bombigeren,bombigerem,bombigsten,bombigstes,bombigster,bombiger,bombiges,bombige,bombigen,bombigeres,bombigem,bombigerer,bombigste,bombigere\"\n    },\n    \"boomen\": {\n        \"form\": \"boomen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"boome,boomst,boomt,boomest,boomet,boomte,boomtest,boomten,boomtet,geboomt\"\n    },\n    \"brandneu\": {\n        \"form\": \"brandneu\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"brandneue,brandneuem,brandneuen,brandneuer,brandneues\"\n    },\n    \"bravourös\": {\n        \"form\": \"bravourös\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"breitgefächert\": {\n        \"form\": \"breitgefächert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"brillant\": {\n        \"form\": \"brillant\",\n        \"polarity\": \"0.3064\",\n        \"pos\": \"JJ\",\n        \"sense\": \"brillantesten,brillanten,brillantem,brillanteren,brillantestem,brillanterem,brillantestes,brillantester,brillantes,brillante,brillanter,brillanteres,brillanterer,brillanteste,brillantere\"\n    },\n    \"brilliant\": {\n        \"form\": \"brilliant\",\n        \"polarity\": \"0.183\",\n        \"pos\": \"JJ\",\n        \"sense\": \"brilliante,brilliantem,brillianten,brillianter,brilliantes,brilliantere,brillianterem,brillianteren,brillianterer,brillianteres,brillianteste,brilliantestem,brilliantesten,brilliantester,brilliantestes\"\n    },\n    \"brillieren\": {\n        \"form\": \"brillieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"brilliere,brillierst,brilliert,brillierest,brillieret,brillierte,brilliertest,brillierten,brilliertet\"\n    },\n    \"brüderlich\": {\n        \"form\": \"brüderlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"bunt\": {\n        \"form\": \"bunt\",\n        \"polarity\": \"0.3507\",\n        \"pos\": \"JJ\",\n        \"sense\": \"buntester,buntestes,bunterer,bunteres,buntesten,buntestem,buntere,bunte,bunteste,bunter,buntes,buntem,bunten,bunteren,bunterem\"\n    },\n    \"bärenstark\": {\n        \"form\": \"bärenstark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"charakterstark\": {\n        \"form\": \"charakterstark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"charakterstarke,charakterstarkem,charakterstarken,charakterstarker,charakterstarkes\"\n    },\n    \"charismatisch\": {\n        \"form\": \"charismatisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"charismatischerer,charismatischeres,charismatischste,charismatischeren,charismatischerem,charismatische,charismatischere,charismatischem,charismatischstem,charismatischsten,charismatischen,charismatisches,charismatischster,charismatischer,charismatischstes\"\n    },\n    \"charmant\": {\n        \"form\": \"charmant\",\n        \"polarity\": \"0.3223\",\n        \"pos\": \"JJ\",\n        \"sense\": \"charmante,charmantere,charmanteren,charmanterem,charmantester,charmantestes,charmanten,charmantem,charmanteres,charmanterer,charmantes,charmanteste,charmanter,charmantestem,charmantesten\"\n    },\n    \"chic\": {\n        \"form\": \"chic\",\n        \"polarity\": \"0.0787\",\n        \"pos\": \"JJ\",\n        \"sense\": \"chicster,chicstes,chicstem,chicsten,chicere,chicste,chicst,chicem,chiceren,chicerem,chicerer,chice,chices,chicer,chiceres,chicen\"\n    },\n    \"clever\": {\n        \"form\": \"clever\",\n        \"polarity\": \"0.2243\",\n        \"pos\": \"JJ\",\n        \"sense\": \"cleverem,clevererem,clevereren,clevere,clevrerer,clevreres,clevrerem,clevrer,clevrere,cleversten,cleverste,clevreren,cleverstem,cleverstes,cleverere,cleverster,clevererer,cleveren,clevereres,cleveres,cleverer\"\n    },\n    \"cool\": {\n        \"form\": \"cool\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"coolsten,coolstem,coolster,coolstes,coolerem,cooleren,cooler,cooles,coolerer,coolste,coole,coolen,cooleres,coolem,coolere\"\n    },\n    \"dankbar\": {\n        \"form\": \"dankbar\",\n        \"polarity\": \"0.0854\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dankbares,dankbarer,dankbarerer,dankbaren,dankbareres,dankbarem,dankbarere,dankbarstem,dankbarsten,dankbarste,dankbarster,dankbarstes,dankbare,dankbarerem,dankbareren\"\n    },\n    \"danken\": {\n        \"form\": \"danken\",\n        \"polarity\": \"0.191\",\n        \"pos\": \"VB\",\n        \"sense\": \"dankte,danktet,danktest,dankst,dankest,dankt,danke,gedankt,dankten,danket\"\n    },\n    \"dauerhaft\": {\n        \"form\": \"dauerhaft\",\n        \"polarity\": \"0.205\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dauerhaften,dauerhaftem,dauerhaftere,dauerhafteste,dauerhafteren,dauerhafterem,dauerhafte,dauerhafter,dauerhafteres,dauerhafterer,dauerhaftes,dauerhaftestes,dauerhaftester,dauerhaftestem,dauerhaftesten\"\n    },\n    \"denkwürdig\": {\n        \"form\": \"denkwürdig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"detailliert\": {\n        \"form\": \"detailliert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"detaillierterer,detaillierteres,detaillierte,detailliertesten,detailliertestem,detailliertere,detaillierteren,detaillierterem,detaillierter,detailliertes,detailliertestes,detaillierteste,detailliertester,detailliertem,detaillierten\"\n    },\n    \"dienlich\": {\n        \"form\": \"dienlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dienlichsten,dienlichstem,dienlichere,dienlichstes,dienlichster,dienlichem,dienlichste,dienlichen,dienliche,dienlicherer,dienlicher,dienlicheres,dienliches,dienlicheren,dienlicherem\"\n    },\n    \"diplomatisch\": {\n        \"form\": \"diplomatisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diplomatischem,diplomatischste,diplomatischen,diplomatische,diplomatisches,diplomatischer,diplomatischstem,diplomatischsten,diplomatischster,diplomatischstes,diplomatischeres,diplomatischere,diplomatischerer,diplomatischerem,diplomatischeren\"\n    },\n    \"diskret\": {\n        \"form\": \"diskret\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diskretem,diskretester,diskreten,diskrete,diskretestem,diskretesten,diskreteste,diskretere,diskreteren,diskreterem,diskreteres,diskretestes,diskreterer,diskretes,diskreter\"\n    },\n    \"diszipliniert\": {\n        \"form\": \"diszipliniert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"diszipliniertester,disziplinierterem,disziplinierteren,diszipliniertesten,disziplinierteste,diszipliniertestem,disziplinierteres,disziplinierterer,diszipliniertestes,disziplinierte,diszipliniertes,disziplinierter,disziplinierten,diszipliniertere,diszipliniertem\"\n    },\n    \"dufte\": {\n        \"form\": \"dufte\",\n        \"polarity\": \"0.1958\",\n        \"pos\": \"JJ\",\n        \"sense\": \"duftester,duftestes,dufteres,duftesten,dufterer,dufterem,dufteren,duftes,dufter,duften,duftem,duftestem,duftere,dufteste\"\n    },\n    \"duften\": {\n        \"form\": \"duften\",\n        \"polarity\": \"0.2132\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dufte,duftest,duftet,duftete,duftetest,dufteten,duftetet,geduftet\"\n    },\n    \"durchdacht\": {\n        \"form\": \"durchdacht\",\n        \"polarity\": \"0.2131\",\n        \"pos\": \"JJ\",\n        \"sense\": \"durchdachteren,durchdachterem,durchdachterer,durchdachteres,durchdachtestes,durchdachtester,durchdachtesten,durchdachte,durchdachtestem,durchdachtem,durchdachten,durchdachtere,durchdachtes,durchdachteste,durchdachter\"\n    },\n    \"durchhalten\": {\n        \"form\": \"durchhalten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"durchhalte,durchhältst,durchhält,durchhaltet,durchhaltest,durchhielt,durchhieltest,durchhieltst,durchhielten,durchhieltet,durchgehalten\"\n    },\n    \"durchschlagend\": {\n        \"form\": \"durchschlagend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"durchschlagenderen,durchschlagenderem,durchschlagendem,durchschlagende,durchschlagendere,durchschlagenderer,durchschlagenden,durchschlagenderes,durchschlagendes,durchschlagender,durchschlagendstem,durchschlagendsten,durchschlagendstes,durchschlagendste,durchschlagendster\"\n    },\n    \"dynamisch\": {\n        \"form\": \"dynamisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"dynamischster,dynamischstes,dynamischen,dynamischem,dynamischere,dynamischerer,dynamischeres,dynamischeren,dynamischerem,dynamisches,dynamischsten,dynamischstem,dynamische,dynamischer,dynamischste\"\n    },\n    \"edel\": {\n        \"form\": \"edel\",\n        \"polarity\": \"0.2235\",\n        \"pos\": \"JJ\",\n        \"sense\": \"edles,edler,edelsten,edlem,edelstes,edelster,edlen,edelste,edlerer,edlere,edelstem,edleren,edlerem,edleres,edle\"\n    },\n    \"effektiv\": {\n        \"form\": \"effektiv\",\n        \"polarity\": \"0.0971\",\n        \"pos\": \"JJ\",\n        \"sense\": \"effektivem,effektiverem,effektiven,effektiveren,effektivstem,effektivste,effektivere,effektiverer,effektive,effektiveres,effektivstes,effektivster,effektives,effektiver,effektivsten\"\n    },\n    \"effektvoll\": {\n        \"form\": \"effektvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"effektvollere,effektvollerer,effektvolleres,effektvolle,effektvolleren,effektvoller,effektvollerem,effektvollster,effektvollstes,effektvollem,effektvollen,effektvollste,effektvollstem,effektvollsten,effektvolles\"\n    },\n    \"effizient\": {\n        \"form\": \"effizient\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"effiziente,effizientere,effizientestem,effizientesten,effizientester,effizientestes,effizienteres,effizienterer,effizienteren,effizienterem,effizienteste,effizientem,effizienten,effizientes,effizienter\"\n    },\n    \"ehren\": {\n        \"form\": \"ehren\",\n        \"polarity\": \"0.0612\",\n        \"pos\": \"VB\",\n        \"sense\": \"ehret,ehrest,ehrt,ehre,ehrtest,ehrten,ehrst,ehrte,ehrtet,geehrt\"\n    },\n    \"ehrenwert\": {\n        \"form\": \"ehrenwert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ehrenwertere,ehrenwerteres,ehrenwerterer,ehrenwerteste,ehrenwerte,ehrenwertesten,ehrenwertestem,ehrenwertem,ehrenwerten,ehrenwertester,ehrenwerteren,ehrenwertestes,ehrenwerter,ehrenwertes,ehrenwerterem\"\n    },\n    \"ehrfürchtig\": {\n        \"form\": \"ehrfürchtig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ehrgeizig\": {\n        \"form\": \"ehrgeizig\",\n        \"polarity\": \"0.2076\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ehrgeizigster,ehrgeizigerer,ehrgeizigstes,ehrgeiziger,ehrgeizigeres,ehrgeiziges,ehrgeizigeren,ehrgeizigere,ehrgeizigerem,ehrgeizigsten,ehrgeizige,ehrgeizigem,ehrgeizigste,ehrgeizigen,ehrgeizigstem\"\n    },\n    \"ehrlich\": {\n        \"form\": \"ehrlich\",\n        \"polarity\": \"0.1212\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ehrlicherer,ehrlichste,ehrlicheres,ehrliche,ehrlichster,ehrlicheren,ehrlichstem,ehrlichsten,ehrlicherem,ehrlichere,ehrlichstes,ehrlichen,ehrlichem,ehrlicher,ehrliches\"\n    },\n    \"ehrwürdig\": {\n        \"form\": \"ehrwürdig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"eifern\": {\n        \"form\": \"eifern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"eifert,eifere,eiferen,geeifert,eifertet,eifertest,eiferte,eiferst,eiferten\"\n    },\n    \"eifrig\": {\n        \"form\": \"eifrig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eifrigere,eifrigstem,eifrigster,eifrigstes,eifrigste,eifrigsten,eifriges,eifriger,eifrigeres,eifrigerer,eifrige,eifrigen,eifrigem,eifrigeren,eifrigerem\"\n    },\n    \"eignen\": {\n        \"form\": \"eignen\",\n        \"polarity\": \"0.1006\",\n        \"pos\": \"VB\",\n        \"sense\": \"eigne,eignest,eignet,eignete,eignetest,eigneten,eignetet,geeignet\"\n    },\n    \"eindeutig\": {\n        \"form\": \"eindeutig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eindeutigeres,eindeutigerer,eindeutigsten,eindeutigstem,eindeutigstes,eindeutigster,eindeutiges,eindeutiger,eindeutigen,eindeutigste,eindeutigem,eindeutigerem,eindeutige,eindeutigeren,eindeutigere\"\n    },\n    \"eindrucksvoll\": {\n        \"form\": \"eindrucksvoll\",\n        \"polarity\": \"0.3001\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eindrucksvollerer,eindrucksvolleres,eindrucksvollere,eindrucksvollster,eindrucksvollen,eindrucksvollstes,eindrucksvolles,eindrucksvollstem,eindrucksvollsten,eindrucksvoller,eindrucksvollem,eindrucksvollste,eindrucksvolle,eindrucksvollerem,eindrucksvolleren\"\n    },\n    \"einfach\": {\n        \"form\": \"einfach\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einfache,einfachstem,einfachsten,einfachster,einfachstes,einfacherem,einfachste,einfacheren,einfacheres,einfaches,einfacherer,einfacher,einfachere,einfachem,einfachen\"\n    },\n    \"einfallsreich\": {\n        \"form\": \"einfallsreich\",\n        \"polarity\": \"0.2031\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einfallsreichsten,einfallsreichstem,einfallsreiches,einfallsreicher,einfallsreichster,einfallsreichem,einfallsreichen,einfallsreichere,einfallsreiche,einfallsreichstes,einfallsreicherer,einfallsreicheren,einfallsreicherem,einfallsreichste,einfallsreicheres\"\n    },\n    \"einflußreich\": {\n        \"form\": \"einflußreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"einflussreich\": {\n        \"form\": \"einflussreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einflussreiche,einflussreichem,einflussreichen,einflussreicher,einflussreiches,einflussreichere,einflussreicherem,einflussreicheren,einflussreicherer,einflussreicheres,einflussreichste,einflussreichstem,einflussreichsten,einflussreichster,einflussreichstes\"\n    },\n    \"einhalten\": {\n        \"form\": \"einhalten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"einhalte,einhältst,einhält,einhaltet,einhaltest,einhielt,einhieltest,einhieltst,einhielten,einhieltet,einhielte,eingehalten\"\n    },\n    \"einheitlich\": {\n        \"form\": \"einheitlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einheitlichste,einheitliches,einheitlichsten,einheitlicheres,einheitlichstem,einheitlicher,einheitlicherer,einheitlicherem,einheitliche,einheitlicheren,einheitlichere,einheitlichster,einheitlichstes,einheitlichem,einheitlichen\"\n    },\n    \"einkaufen\": {\n        \"form\": \"einkaufen\",\n        \"polarity\": \"0.2249\",\n        \"pos\": \"VB\",\n        \"sense\": \"einkaufest,einkauftet,eingekauft,einkaufet,einkaufe,einkaufst,einkauftest,einkaufte,einkauft,einkauften\"\n    },\n    \"einmalig\": {\n        \"form\": \"einmalig\",\n        \"polarity\": \"0.3137\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einmaligere,einmaligeren,einmaligerem,einmaligerer,einmaligeres,einmaligstem,einmaligen,einmaligsten,einmaligem,einmaligste,einmalige,einmaliges,einmaligstes,einmaliger,einmaligster\"\n    },\n    \"einnehmen\": {\n        \"form\": \"einnehmen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"einnehme,einnimmst,einnimmt,einnehmt,einnehmest,einnehmet,einnahm,einnahmst,einnahmen,einnahmt,einnähme,einnähmest,einnähmst,einnähmen,einnähmet,einnähmt,eingenommen\"\n    },\n    \"einsparen\": {\n        \"form\": \"einsparen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"einsparten,einsparet,einspart,einspare,einsparst,einsparest,einspartest,einsparte,einspartet,eingespart\"\n    },\n    \"einträglich\": {\n        \"form\": \"einträglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"einwandfrei\": {\n        \"form\": \"einwandfrei\",\n        \"polarity\": \"0.0949\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einwandfreiem,einwandfreierer,einwandfreien,einwandfreieres,einwandfreiste,einwandfreieren,einwandfreier,einwandfreie,einwandfreies,einwandfreieste,einwandfreiere,einwandfreisten,einwandfreiester,einwandfreiest,einwandfreiestes,einwandfreistem,einwandfreierem,einwandfreistes,einwandfreiestem,einwandfreister,einwandfreiesten\"\n    },\n    \"einweihen\": {\n        \"form\": \"einweihen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"einweihe,einweihst,einweiht,einweihest,einweihet,einweihte,einweihtest,einweihten,einweihtet,eingeweiht\"\n    },\n    \"einzigartig\": {\n        \"form\": \"einzigartig\",\n        \"polarity\": \"0.3078\",\n        \"pos\": \"JJ\",\n        \"sense\": \"einzigartigstes,einzigartigster,einzigartigerer,einzigartigste,einzigartiger,einzigartigeres,einzigartiges,einzigartigeren,einzigartigerem,einzigartigem,einzigartigere,einzigartigen,einzigartige,einzigartigsten,einzigartigstem\"\n    },\n    \"elegant\": {\n        \"form\": \"elegant\",\n        \"polarity\": \"0.2115\",\n        \"pos\": \"JJ\",\n        \"sense\": \"eleganteren,eleganter,elegantes,eleganterem,elegantere,elegantesten,elegantestem,elegantestes,elegantester,elegante,elegantem,eleganterer,eleganteste,eleganten,eleganteres\"\n    },\n    \"empathisch\": {\n        \"form\": \"empathisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"empathischste,empathischsten,empathischstem,empathischstes,empathischeres,empathischster,empathischerer,empathischeren,empathischerem,empathischer,empathisches,empathischen,empathischere,empathische,empathischem\"\n    },\n    \"empfehlen\": {\n        \"form\": \"empfehlen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"empfehlenswert\": {\n        \"form\": \"empfehlenswert\",\n        \"polarity\": \"0.093\",\n        \"pos\": \"JJ\",\n        \"sense\": \"empfehlenswerteres,empfehlenswerterer,empfehlenswerteren,empfehlenswerterem,empfehlenswertestem,empfehlenswertestes,empfehlenswertester,empfehlenswerte,empfehlenswertere,empfehlenswertesten,empfehlenswertem,empfehlenswerten,empfehlenswerter,empfehlenswerteste,empfehlenswertes\"\n    },\n    \"energisch\": {\n        \"form\": \"energisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"energische,energischstes,energischer,energischster,energischere,energisches,energischen,energischsten,energischem,energischstem,energischerem,energischeren,energischste,energischeres,energischerer\"\n    },\n    \"engagieren\": {\n        \"form\": \"engagieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"engagiertet,engagierst,engagierte,engagieret,engagierest,engagierten,engagiertest,engagiere,engagiert\"\n    },\n    \"engagiert\": {\n        \"form\": \"engagiert\",\n        \"polarity\": \"0.0869\",\n        \"pos\": \"VB\",\n        \"sense\": \"engagierteste,engagiertes,engagierte,engagiertestem,engagiertesten,engagiertestes,engagiertester,engagierteren,engagierteres,engagierterer,engagierten,engagiertem,engagiertere,engagierter,engagierterem\"\n    },\n    \"enorm\": {\n        \"form\": \"enorm\",\n        \"polarity\": \"0.0898\",\n        \"pos\": \"JJ\",\n        \"sense\": \"enormstes,enormere,enorme,enormen,enormem,enormes,enormer,enormste,enormerem,enormeren,enormstem,enormsten,enormerer,enormeres,enormster\"\n    },\n    \"enthusiastisch\": {\n        \"form\": \"enthusiastisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"enthusiastischem,enthusiastischen,enthusiastischstem,enthusiastischsten,enthusiastischstes,enthusiastischster,enthusiastischere,enthusiastische,enthusiastischerer,enthusiastischste,enthusiastischer,enthusiastischeres,enthusiastisches,enthusiastischerem,enthusiastischeren\"\n    },\n    \"entlasten\": {\n        \"form\": \"entlasten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"entlaste,entlastest,entlastet,entlastete,entlastetest,entlasteten,entlastetet\"\n    },\n    \"entlohnen\": {\n        \"form\": \"entlohnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"entlohne,entlohnst,entlohnt,entlohnest,entlohnet,entlohnte,entlohntest,entlohnten,entlohntet\"\n    },\n    \"enträtseln\": {\n        \"form\": \"enträtseln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"enträtsele,enträtsle,enträtselst,enträtselt,enträtselest,enträtslet,enträtselte,enträtseltest,enträtselten,enträtseltet\"\n    },\n    \"entschlossen\": {\n        \"form\": \"entschlossen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"entschlossenstem,entschlossensten,entschlossene,entschlossenerer,entschlossenster,entschlossenere,entschlosseneres,entschlossner,entschlossenem,entschlossenstes,entschlossenen,entschlossener,entschlossenes,entschlossnerem,entschlossnere,entschlossneren,entschlossnerer,entschlossenste,entschlossneres,entschlosseneren,entschlossenerem\"\n    },\n    \"entschlüsseln\": {\n        \"form\": \"entschlüsseln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"entschlüssele,entschlüsselt,entschlüsseltest,entschlüssel,entschlüsselten,entschlüsseltet,entschlüsselst,entschlüsselen,entschlüsselte,entschlüssle\"\n    },\n    \"entschädigen\": {\n        \"form\": \"entschädigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"entschädige,entschädigst,entschädigt,entschädigest,entschädiget,entschädigte,entschädigtest,entschädigten,entschädigtet\"\n    },\n    \"entspannen\": {\n        \"form\": \"entspannen\",\n        \"polarity\": \"0.2406\",\n        \"pos\": \"VB\",\n        \"sense\": \"entspannet,entspanntet,entspannst,entspannte,entspannten,entspannest,entspanne,entspanntest,entspannt\"\n    },\n    \"entwirren\": {\n        \"form\": \"entwirren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"entwirrtest,entwirrten,entwirrest,entwirrtet,entwirre,entwirrt,entwirrst,entwirret,entwirrte\"\n    },\n    \"entzückend\": {\n        \"form\": \"entzückend\",\n        \"polarity\": \"0.0844\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"epochal\": {\n        \"form\": \"epochal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"epochalem,epochalere,epochalen,epochalster,epochalstes,epochaleres,epochalerer,epochalerem,epochalste,epochaleren,epochale,epochalsten,epochales,epochaler,epochalstem\"\n    },\n    \"erarbeiten\": {\n        \"form\": \"erarbeiten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erarbeitest,erarbeitetest,erarbeiteten,erarbeite,erarbeitete,erarbeitet,erarbeitetet,erarbeiten\"\n    },\n    \"erben\": {\n        \"form\": \"erben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erbst,geerbt,erbt,erbest,erbe,erbten,erbtet,erbtest,erbet,erbte\"\n    },\n    \"erfahren\": {\n        \"form\": \"erfahren\",\n        \"polarity\": \"0.0927\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erfahrenere,erfahrensten,erfahrenstem,erfahrneren,erfahrenstes,erfahrnerem,erfahrenster,erfahrnere,erfahrneres,erfahrnerer,erfahrner,erfahrenes,erfahrener,erfahrenerer,erfahrene,erfahrenem,erfahreneres,erfahrenerem,erfahrenen,erfahreneren,erfahrenste\"\n    },\n    \"erfolgreich\": {\n        \"form\": \"erfolgreich\",\n        \"polarity\": \"0.2193\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erfolgreichstem,erfolgreicheres,erfolgreichste,erfolgreicherer,erfolgreicherem,erfolgreiches,erfolgreichsten,erfolgreicheren,erfolgreicher,erfolgreichstes,erfolgreichster,erfolgreichem,erfolgreichen,erfolgreiche,erfolgreichere\"\n    },\n    \"erfreuen\": {\n        \"form\": \"erfreuen\",\n        \"polarity\": \"0.2112\",\n        \"pos\": \"VB\",\n        \"sense\": \"erfreutest,erfreuten,erfreutet,erfreut,erfreute,erfreust,erfreuet,erfreuest,erfreue\"\n    },\n    \"erfreulich\": {\n        \"form\": \"erfreulich\",\n        \"polarity\": \"0.2197\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erfreulicher,erfreulicherem,erfreulicheren,erfreuliches,erfreulichsten,erfreulicherer,erfreulichste,erfreulichstem,erfreulicheres,erfreulichster,erfreuliche,erfreulichstes,erfreulichem,erfreulichen,erfreulichere\"\n    },\n    \"erfrischend\": {\n        \"form\": \"erfrischend\",\n        \"polarity\": \"0.2227\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erfrischende,erfrischendem,erfrischenden,erfrischender,erfrischendes,erfrischendere,erfrischenderem,erfrischenderen,erfrischenderer,erfrischenderes,erfrischendste,erfrischendstem,erfrischendsten,erfrischendster,erfrischendstes\"\n    },\n    \"erfüllen\": {\n        \"form\": \"erfüllen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erfüllten,erfüllest,erfüllte,erfüllst,erfüllet,erfülltet,erfülle,erfülltest,erfüllt\"\n    },\n    \"ergebnisreich\": {\n        \"form\": \"ergebnisreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ergebnisreicherem,ergebnisreichstem,ergebnisreichsten,ergebnisreiches,ergebnisreichstes,ergebnisreicher,ergebnisreichster,ergebnisreichste,ergebnisreichen,ergebnisreichem,ergebnisreiche,ergebnisreichere,ergebnisreicherer,ergebnisreicheres,ergebnisreicheren\"\n    },\n    \"ergiebig\": {\n        \"form\": \"ergiebig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ergiebiger,ergiebigere,ergiebigen,ergiebigem,ergiebigerem,ergiebiges,ergiebigerer,ergiebigeres,ergiebigeren,ergiebigstes,ergiebigster,ergiebigste,ergiebigsten,ergiebige,ergiebigstem\"\n    },\n    \"ergänzen\": {\n        \"form\": \"ergänzen\",\n        \"polarity\": \"0.2074\",\n        \"pos\": \"VB\",\n        \"sense\": \"ergänzte,ergänze,ergänzt,ergänzten,ergänzet,ergänzest,ergänztet,ergänztest\"\n    },\n    \"erhalten\": {\n        \"form\": \"erhalten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erhalte,erhältst,erhält,erhaltet,erhaltest,erhielt,erhieltest,erhieltst,erhielten,erhieltet,erhielte\"\n    },\n    \"erhebend\": {\n        \"form\": \"erhebend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erhebendstem,erhebendsten,erhebender,erhebendes,erhebenden,erhebende,erhebendem,erhebendste,erhebendere,erhebenderer,erhebenderes,erhebendster,erhebenderen,erhebenderem,erhebendstes\"\n    },\n    \"erheblich\": {\n        \"form\": \"erheblich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erheblichste,erheblicherem,erheblichsten,erhebliche,erheblicheres,erheblicherer,erhebliches,erheblicheren,erheblichstem,erheblichen,erheblichem,erheblichere,erheblichster,erheblicher,erheblichstes\"\n    },\n    \"erholen\": {\n        \"form\": \"erholen\",\n        \"polarity\": \"0.2357\",\n        \"pos\": \"VB\",\n        \"sense\": \"erholet,erholten,erholtet,erholest,erhole,erholt,erholtest,erholte,erholst\"\n    },\n    \"erholsam\": {\n        \"form\": \"erholsam\",\n        \"polarity\": \"0.2188\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erholsamem,erholsamste,erholsamere,erholsameres,erholsameren,erholsamerer,erholsamerem,erholsamster,erholsamstes,erholsamsten,erholsamstem,erholsame,erholsamer,erholsames,erholsamen\"\n    },\n    \"erhältlich\": {\n        \"form\": \"erhältlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erhöhen\": {\n        \"form\": \"erhöhen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erhöhtest,erhöhet,erhöht,erhöhest,erhöhte,erhöhst,erhöhten,erhöhtet,erhöhe\"\n    },\n    \"erkennbar\": {\n        \"form\": \"erkennbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erkennbare,erkennbarste,erkennbarer,erkennbarstes,erkennbares,erkennbarster,erkennbarerer,erkennbareres,erkennbarem,erkennbareren,erkennbarstem,erkennbaren,erkennbarere,erkennbarsten,erkennbarerem\"\n    },\n    \"erklimmen\": {\n        \"form\": \"erklimmen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erklimme,erklimmst,erklimmt,erklimmest,erklimmet,erklomm,erklommst,erklommen,erklommt,erklömme,erklömmest,erklömmst,erklömmen,erklömmet,erklömmt\"\n    },\n    \"erklärt\": {\n        \"form\": \"erklärt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"erlauben\": {\n        \"form\": \"erlauben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erlaubst,erlaubtet,erlaube,erlaubt,erlaubtest,erlaubte,erlaubest,erlaubet,erlaubten\"\n    },\n    \"erleichtern\": {\n        \"form\": \"erleichtern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erleichterten,erleichterte,erleichterst,erleichtert,erleichtere,erleichteren,erleichtertest,erleichtertet\"\n    },\n    \"erleuchten\": {\n        \"form\": \"erleuchten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erleuchte,erleuchtest,erleuchtet,erleuchtete,erleuchtetest,erleuchteten,erleuchtetet\"\n    },\n    \"erlösen\": {\n        \"form\": \"erlösen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erlöset,erlöse,erlöst,erlösten,erlöste,erlöstest,erlöstet,erlösest\"\n    },\n    \"ermunternd\": {\n        \"form\": \"ermunternd\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ermunternde,ermunterndem,ermunternden,ermunternder,ermunterndes,ermunterndere,ermunternderem,ermunternderen,ermunternderer,ermunternderes,ermunterndste,ermunterndstem,ermunterndsten,ermunterndster,ermunterndstes\"\n    },\n    \"ermutigen\": {\n        \"form\": \"ermutigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ermutiget,ermutigst,ermutigest,ermutige,ermutigte,ermutigtet,ermutigt,ermutigtest,ermutigten\"\n    },\n    \"ermutigend\": {\n        \"form\": \"ermutigend\",\n        \"polarity\": \"0.0735\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ermutigende,ermutigendem,ermutigenden,ermutigender,ermutigendes,ermutigendere,ermutigenderem,ermutigenderen,ermutigenderer,ermutigenderes,ermutigendste,ermutigendstem,ermutigendsten,ermutigendster,ermutigendstes\"\n    },\n    \"ermöglichen\": {\n        \"form\": \"ermöglichen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"ermögliche,ermöglicht,ermöglichst,ermöglichtet,ermöglichte,ermöglichtest,ermöglichet,ermöglichest,ermöglichten\"\n    },\n    \"erneuern\": {\n        \"form\": \"erneuern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erneuertet,erneuertest,erneuere,erneuert,erneuerst,erneuerte,erneueren,erneuerten\"\n    },\n    \"ernsthaft\": {\n        \"form\": \"ernsthaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ernsthaftem,ernsthaften,ernsthafter,ernsthaftes,ernsthafteres,ernsthafterer,ernsthafterem,ernsthafteren,ernsthaftester,ernsthaftestes,ernsthaftesten,ernsthafteste,ernsthafte,ernsthaftestem,ernsthaftere\"\n    },\n    \"erreichen\": {\n        \"form\": \"erreichen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erreichten,erreichst,erreichte,erreichtet,erreichest,erreichet,erreiche,erreicht,erreichtest\"\n    },\n    \"erschaffen\": {\n        \"form\": \"erschaffen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erschaffe,erschaffst,erschafft,erschaffest,erschaffet,erschuf,erschufst,erschufen,erschüfe,erschüfest,erschüfst,erschüfen,erschüfet,erschüft\"\n    },\n    \"erschlossen\": {\n        \"form\": \"erschlossen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erschlossene,erschlossenem,erschlossenen,erschlossener,erschlossenes\"\n    },\n    \"ersprießlich\": {\n        \"form\": \"ersprießlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erstaunen\": {\n        \"form\": \"erstaunen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erstaunten,erstaunte,erstaunst,erstaunet,erstauntet,erstauntest,erstaunt,erstaune,erstaunest\"\n    },\n    \"erstaunlich\": {\n        \"form\": \"erstaunlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erstaunlichste,erstaunlichere,erstaunlicheren,erstaunliches,erstaunlichstem,erstaunlicher,erstaunlicherem,erstaunlichstes,erstaunlichem,erstaunlichster,erstaunlichen,erstaunlicheres,erstaunlichsten,erstaunliche,erstaunlicherer\"\n    },\n    \"erstklassig\": {\n        \"form\": \"erstklassig\",\n        \"polarity\": \"0.1967\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erstklassige,erstklassigste,erstklassigeres,erstklassiges,erstklassigerer,erstklassigstem,erstklassigsten,erstklassiger,erstklassigster,erstklassigem,erstklassigstes,erstklassigen,erstklassigere,erstklassigeren,erstklassigerem\"\n    },\n    \"erstrangig\": {\n        \"form\": \"erstrangig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erstrangigste,erstrangigstes,erstrangigster,erstrangiger,erstrangiges,erstrangige,erstrangigem,erstrangigere,erstrangigen,erstrangigeren,erstrangigerem,erstrangigsten,erstrangigeres,erstrangigerer,erstrangigstem\"\n    },\n    \"erstrebenswert\": {\n        \"form\": \"erstrebenswert\",\n        \"polarity\": \"0.0765\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erstrebenswerten,erstrebenswerteres,erstrebenswertem,erstrebenswerter,erstrebenswertes,erstrebenswertestem,erstrebenswertesten,erstrebenswerterer,erstrebenswertester,erstrebenswertestes,erstrebenswerteste,erstrebenswerte,erstrebenswerteren,erstrebenswerterem,erstrebenswertere\"\n    },\n    \"ertragreich\": {\n        \"form\": \"ertragreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ertragreichere,ertragreichstem,ertragreichem,ertragreichen,ertragreicherem,ertragreichsten,ertragreicher,ertragreiches,ertragreichster,ertragreichstes,ertragreiche,ertragreicheres,ertragreicherer,ertragreicheren,ertragreichste\"\n    },\n    \"erweitern\": {\n        \"form\": \"erweitern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erweitere,erweiterten,erweiteren,erweiterst,erweitertest,erweitertet,erweiterte,erweitert\"\n    },\n    \"erweitert\": {\n        \"form\": \"erweitert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"erweiterte,erweitertem,erweiterten,erweiterter,erweitertes,erweitertere,erweiterterem,erweiterteren,erweiterterer,erweiterteres,erweitertste,erweitertstem,erweitertsten,erweitertster,erweitertstes\"\n    },\n    \"erwünscht\": {\n        \"form\": \"erwünscht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"erzeugen\": {\n        \"form\": \"erzeugen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erzeuge,erzeugten,erzeuget,erzeugtest,erzeugest,erzeugte,erzeugst,erzeugt,erzeugtet\"\n    },\n    \"erzielen\": {\n        \"form\": \"erzielen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"erzielst,erzielte,erzielest,erziele,erzielt,erzieltest,erzielten,erzielet,erzieltet\"\n    },\n    \"etabliert\": {\n        \"form\": \"etabliert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"etablierteste,etablierterem,etabliertere,etabliertestes,etabliertester,etabliertem,etablierten,etablierte,etablierter,etablierteren,etabliertes,etablierterer,etablierteres,etabliertesten,etabliertestem\"\n    },\n    \"euphorisch\": {\n        \"form\": \"euphorisch\",\n        \"polarity\": \"0.5505\",\n        \"pos\": \"JJ\",\n        \"sense\": \"euphorischerem,euphorische,euphorisches,euphorischstes,euphorischster,euphorischste,euphorischeres,euphorischstem,euphorischerer,euphorischem,euphorischen,euphorischere,euphorischeren,euphorischsten,euphorischer\"\n    },\n    \"exakt\": {\n        \"form\": \"exakt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exaktere,exakterer,exaktem,exakteres,exakte,exaktes,exakter,exakteste,exaktestem,exakterem,exakten,exakteren,exaktester,exaktestes,exaktesten\"\n    },\n    \"exklusiv\": {\n        \"form\": \"exklusiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exklusivstem,exklusivsten,exklusivster,exklusivstes,exklusivem,exklusiven,exklusives,exklusiver,exklusivste,exklusiverem,exklusiveren,exklusive,exklusiveres,exklusivere,exklusiverer\"\n    },\n    \"exorbitant\": {\n        \"form\": \"exorbitant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exorbitante,exorbitanteres,exorbitantestem,exorbitantesten,exorbitanterer,exorbitanter,exorbitantere,exorbitantes,exorbitantem,exorbitanten,exorbitanteren,exorbitanterem,exorbitanteste,exorbitantestes,exorbitantester\"\n    },\n    \"exotisch\": {\n        \"form\": \"exotisch\",\n        \"polarity\": \"0.1944\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exotischste,exotische,exotischerer,exotischem,exotischeres,exotischer,exotisches,exotischstem,exotischsten,exotischstes,exotischen,exotischster,exotischere,exotischerem,exotischeren\"\n    },\n    \"explosiv\": {\n        \"form\": \"explosiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"explosive,explosivstes,explosiver,explosivster,explosives,explosiven,explosiverer,explosivsten,explosivem,explosiveres,explosivstem,explosivere,explosiveren,explosiverem,explosivste\"\n    },\n    \"exponiert\": {\n        \"form\": \"exponiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"exponierte,exponierteren,exponierteres,exponierterer,exponiertes,exponiertere,exponierteste,exponiertester,exponierterem,exponiertestes,exponiertestem,exponiertesten,exponiertem,exponierten,exponierter\"\n    },\n    \"exquisit\": {\n        \"form\": \"exquisit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exquisiteste,exquisite,exquisitere,exquisitestes,exquisitem,exquisiten,exquisiterer,exquisiter,exquisiteres,exquisites,exquisitestem,exquisitesten,exquisiteren,exquisitester,exquisiterem\"\n    },\n    \"extravagant\": {\n        \"form\": \"extravagant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"extravagante,extravaganteste,extravaganterem,extravaganteren,extravaganteres,extravagantere,extravaganterer,extravagantestes,extravaganten,extravagantester,extravagantem,extravagantestem,extravaganter,extravagantesten,extravagantes\"\n    },\n    \"exzellent\": {\n        \"form\": \"exzellent\",\n        \"polarity\": \"0.4198\",\n        \"pos\": \"JJ\",\n        \"sense\": \"exzellentere,exzellenterem,exzellenteren,exzellenterer,exzellenteres,exzellente,exzellentesten,exzellenteste,exzellentestem,exzellentester,exzellentestes,exzellenten,exzellentem,exzellentes,exzellenter\"\n    },\n    \"fabelhaft\": {\n        \"form\": \"fabelhaft\",\n        \"polarity\": \"0.1952\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fabelhafteste,fabelhafterer,fabelhaftestes,fabelhaftester,fabelhafte,fabelhafteren,fabelhaftestem,fabelhaftem,fabelhafterem,fabelhaften,fabelhaftesten,fabelhaftes,fabelhafter,fabelhafteres,fabelhaftere\"\n    },\n    \"fair\": {\n        \"form\": \"fair\",\n        \"polarity\": \"0.3281\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fairen,fairem,fairster,fairstes,fairste,fairerem,faireren,fairstem,fairerer,fairsten,faireres,fairere,faires,fairer,faire\"\n    },\n    \"famos\": {\n        \"form\": \"famos\",\n        \"polarity\": \"0.2018\",\n        \"pos\": \"JJ\",\n        \"sense\": \"famoserem,famoses,famoseste,famoser,famoseren,famosere,famose,famosestem,famosesten,famosester,famosestes,famosem,famoseres,famosen,famoserer\"\n    },\n    \"fantasievoll\": {\n        \"form\": \"fantasievoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fantasievolle,fantasievolleren,fantasievollerem,fantasievoller,fantasievollsten,fantasievollstem,fantasievolles,fantasievollstes,fantasievollen,fantasievollster,fantasievollem,fantasievolleres,fantasievollerer,fantasievollere,fantasievollste\"\n    },\n    \"fantastisch\": {\n        \"form\": \"fantastisch\",\n        \"polarity\": \"0.3319\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fantastische,fantastischem,fantastischen,fantastischer,fantastisches,fantastischere,fantastischerem,fantastischeren,fantastischerer,fantastischeres,fantastischste,fantastischstem,fantastischsten,fantastischster,fantastischstes\"\n    },\n    \"faszinieren\": {\n        \"form\": \"faszinieren\",\n        \"polarity\": \"0.0663\",\n        \"pos\": \"VB\",\n        \"sense\": \"fasziniere,fasziniert,fasziniertet,faszinierst,faszinierte,faszinierten,faszinieret,fasziniertest,faszinierest\"\n    },\n    \"faszinierend\": {\n        \"form\": \"faszinierend\",\n        \"polarity\": \"0.3037\",\n        \"pos\": \"JJ\",\n        \"sense\": \"faszinierende,faszinierendem,faszinierenden,faszinierender,faszinierendes,faszinierendere,faszinierenderem,faszinierenderen,faszinierenderer,faszinierenderes,faszinierendste,faszinierendstem,faszinierendsten,faszinierendster,faszinierendstes\"\n    },\n    \"favorisieren\": {\n        \"form\": \"favorisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"favorisierst,favorisieret,favorisier,favorisierte,favorisiertet,favorisierest,favorisiere,favorisierten,favorisiert\"\n    },\n    \"fehlerfrei\": {\n        \"form\": \"fehlerfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fehlerfreistes,fehlerfreister,fehlerfreiste,fehlerfreie,fehlerfreiere,fehlerfreiest,fehlerfreisten,fehlerfreistem,fehlerfreiesten,fehlerfreiestem,fehlerfreiestes,fehlerfreiem,fehlerfreien,fehlerfreierem,fehlerfreies,fehlerfreiester,fehlerfreier,fehlerfreieren,fehlerfreieres,fehlerfreierer,fehlerfreieste\"\n    },\n    \"feiern\": {\n        \"form\": \"feiern\",\n        \"polarity\": \"0.494\",\n        \"pos\": \"VB\",\n        \"sense\": \"gefeiert,feiert,feiertest,feiere,feiertet,feierest,feieret,feierte,feierten,feieren,feierst\"\n    },\n    \"fein\": {\n        \"form\": \"fein\",\n        \"polarity\": \"0.4734\",\n        \"pos\": \"JJ\",\n        \"sense\": \"feinem,feinen,feinsten,feinstem,feinstes,feinster,feine,feinere,feinerem,feinste,feineren,feines,feiner,feinerer,feineres\"\n    },\n    \"fertig\": {\n        \"form\": \"fertig\",\n        \"polarity\": \"0.3757\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fertigstes,fertigster,fertigstem,fertigsten,fertigeres,fertigem,fertigerer,fertigere,fertige,fertiger,fertigste,fertiges,fertigen,fertigerem,fertigeren\"\n    },\n    \"fertigen\": {\n        \"form\": \"fertigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"fertigten,fertigest,fertige,fertigt,fertigtest,fertiget,gefertigt,fertigtet,fertigte,fertigst\"\n    },\n    \"fesch\": {\n        \"form\": \"fesch\",\n        \"polarity\": \"0.0806\",\n        \"pos\": \"JJ\",\n        \"sense\": \"feschen,feschem,feschester,feschere,fescherem,fesches,feschestes,fescher,fescheren,feschesten,feschestem,feschstes,fescheste,feschste,fescherer,fesche,feschster,feschst,feschsten,feschstem,fescheres\"\n    },\n    \"fesselnd\": {\n        \"form\": \"fesselnd\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fesselnde,fesselndem,fesselnden,fesselnder,fesselndes,fesselndere,fesselnderem,fesselnderen,fesselnderer,fesselnderes,fesselndste,fesselndstem,fesselndsten,fesselndster,fesselndstes\"\n    },\n    \"festlich\": {\n        \"form\": \"festlich\",\n        \"polarity\": \"0.2021\",\n        \"pos\": \"JJ\",\n        \"sense\": \"festlicher,festlichere,festlicherem,festlichen,festlichem,festlichstes,festlichster,festlicheren,festlicheres,festlicherer,festlichstem,festlichsten,festliche,festliches,festlichste\"\n    },\n    \"fidel\": {\n        \"form\": \"fidel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fidelerem,fideleren,fidelste,fidelere,fidelster,fideleres,fidelstes,fidelerer,fidelsten,fidelstem,fidele,fidelen,fidelem,fideles,fideler\"\n    },\n    \"finanzieren\": {\n        \"form\": \"finanzieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"fasziniere,faszinierst,fasziniert,faszinierest,faszinieret,faszinierte,fasziniertest,faszinierten,fasziniertet\"\n    },\n    \"findig\": {\n        \"form\": \"findig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"findigem,findigerem,findigeren,findige,findigerer,findigere,findigste,findigstem,findigsten,findigeres,findigstes,findigster,findiges,findiger,findigen\"\n    },\n    \"fit\": {\n        \"form\": \"fit\",\n        \"polarity\": \"0.3686\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fitte,fittem,fitten,fitter,fittes,fittere,fitterem,fitteren,fitterer,fitteres,fitteste,fittestem,fittesten,fittester,fittestes\"\n    },\n    \"fleißig\": {\n        \"form\": \"fleißig\",\n        \"polarity\": \"0.3571\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"flexibel\": {\n        \"form\": \"flexibel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flexiblen,flexiblem,flexibler,flexiblerem,flexibles,flexible,flexiblere,flexibelstes,flexibelste,flexibleren,flexibelster,flexibleres,flexiblerer,flexibelstem,flexibelsten\"\n    },\n    \"flink\": {\n        \"form\": \"flink\",\n        \"polarity\": \"0.0878\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flinkeren,flinkem,flinken,flinkerem,flinke,flinkes,flinker,flinkstes,flinkster,flinkste,flinkerer,flinkstem,flinkere,flinkeres,flinksten\"\n    },\n    \"florieren\": {\n        \"form\": \"florieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"florierte,florierst,florierest,floriertet,florierten,floriert,florieret,floriertest,floriere\"\n    },\n    \"flott\": {\n        \"form\": \"flott\",\n        \"polarity\": \"0.3394\",\n        \"pos\": \"JJ\",\n        \"sense\": \"flotte,flotteste,flotterem,flotteren,flotten,flotterer,flottem,flottester,flotter,flottestes,flottes,flotteres,flottesten,flottestem,flottere\"\n    },\n    \"flüssig\": {\n        \"form\": \"flüssig\",\n        \"polarity\": \"0.2229\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"formvollendet\": {\n        \"form\": \"formvollendet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"formvollendetstes,formvollendeteres,formvollendetster,formvollendetem,formvollendeten,formvollendetstem,formvollendetsten,formvollendeter,formvollendeterer,formvollendetes,formvollendeterem,formvollendeteren,formvollendetste,formvollendetere,formvollendete\"\n    },\n    \"fortdauernd\": {\n        \"form\": \"fortdauernd\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fortdauernde,fortdauerndem,fortdauernden,fortdauernder,fortdauerndes,fortdauerndere,fortdauernderem,fortdauernderen,fortdauernderer,fortdauernderes,fortdauerndste,fortdauerndstem,fortdauerndsten,fortdauerndster,fortdauerndstes\"\n    },\n    \"fortschreiten\": {\n        \"form\": \"fortschreiten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"fortschreite,fortschreitest,fortschreitet,fortschritt,fortschrittest,fortschritten,fortschrittet,fortschritte,fortgeschritten\"\n    },\n    \"frei\": {\n        \"form\": \"frei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freiestem,freiesten,freiste,freistem,freisten,freistes,freister,freieres,freiere,freierer,freieste,freiest,freier,freieren,freiester,freierem,freies,freien,freiestes,freiem,freie\"\n    },\n    \"freikommen\": {\n        \"form\": \"freikommen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"freikomme,freikommst,freikommt,freikommest,freikommet,freikam,freikamst,freikamen,freikamt,freikäme,freikämest,freikämst,freikämen,freikämet,freikämt,freigekommen\"\n    },\n    \"freisprechen\": {\n        \"form\": \"freisprechen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"freispreche,freisprichst,freispricht,freisprecht,freisprechest,freisprechet,freisprach,freisprachst,freisprachen,freispracht,freispräche,freisprächest,freisprächst,freisprächen,freisprächet,freisprächt\"\n    },\n    \"freiwillig\": {\n        \"form\": \"freiwillig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freiwilligste,freiwilligere,freiwilligster,freiwilligstes,freiwilligeren,freiwilligerem,freiwilligsten,freiwilligstem,freiwillige,freiwilliger,freiwilliges,freiwilligem,freiwilligeres,freiwilligen,freiwilligerer\"\n    },\n    \"freudig\": {\n        \"form\": \"freudig\",\n        \"polarity\": \"0.3256\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freudigstem,freudigere,freudigste,freudigeren,freudigerem,freudigen,freudigem,freudiger,freudige,freudigeres,freudiges,freudigerer,freudigster,freudigstes,freudigsten\"\n    },\n    \"freuen\": {\n        \"form\": \"freuen\",\n        \"polarity\": \"0.2198\",\n        \"pos\": \"VB\",\n        \"sense\": \"freute,freust,freutest,freut,freue,freuet,freuten,freuest,freutet,gefreut\"\n    },\n    \"freundlich\": {\n        \"form\": \"freundlich\",\n        \"polarity\": \"0.6022\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freundlichsten,freundlichstem,freundlicheren,freundlichen,freundlicherem,freundlichem,freundlicheres,freundlicherer,freundlichere,freundlicher,freundliche,freundlichster,freundlichste,freundlichstes,freundliches\"\n    },\n    \"freundschaftlich\": {\n        \"form\": \"freundschaftlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"freundschaftlichste,freundschaftliche,freundschaftlicherer,freundschaftlicheres,freundschaftlicheren,freundschaftlicherem,freundschaftlichem,freundschaftlichsten,freundschaftlichstem,freundschaftlichen,freundschaftlichere,freundschaftlicher,freundschaftliches,freundschaftlichstes,freundschaftlichster\"\n    },\n    \"friedlich\": {\n        \"form\": \"friedlich\",\n        \"polarity\": \"0.0924\",\n        \"pos\": \"JJ\",\n        \"sense\": \"friedlichsten,friedliches,friedlicherem,friedliche,friedlichster,friedlichste,friedlichstes,friedlicheren,friedlicher,friedlicheres,friedlicherer,friedlichem,friedlichen,friedlichere,friedlichstem\"\n    },\n    \"friedvoll\": {\n        \"form\": \"friedvoll\",\n        \"polarity\": \"0.0908\",\n        \"pos\": \"JJ\",\n        \"sense\": \"friedvolle,friedvollem,friedvollen,friedvoller,friedvolles,friedvollere,friedvollerem,friedvolleren,friedvollerer,friedvolleres,friedvollste,friedvollstem,friedvollsten,friedvollster,friedvollstes\"\n    },\n    \"froh\": {\n        \"form\": \"froh\",\n        \"polarity\": \"0.1364\",\n        \"pos\": \"JJ\",\n        \"sense\": \"froher,frohes,froheres,frohster,frohstes,frohe,frohere,frohste,frohstem,frohsten,froheren,froherem,frohem,froherer,frohen\"\n    },\n    \"frohlocken\": {\n        \"form\": \"frohlocken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"frohlocktest,frohlocke,frohlockt,frohlockte,frohlocket,frohlock,frohlockten,frohlockest,frohlocktet,gefrohlockt\"\n    },\n    \"fruchtbar\": {\n        \"form\": \"fruchtbar\",\n        \"polarity\": \"0.0878\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fruchtbarster,fruchtbarste,fruchtbarstes,fruchtbarsten,fruchtbarere,fruchtbarstem,fruchtbaren,fruchtbarerer,fruchtbarem,fruchtbarerem,fruchtbare,fruchtbareren,fruchtbarer,fruchtbares,fruchtbareres\"\n    },\n    \"fröhlich\": {\n        \"form\": \"fröhlich\",\n        \"polarity\": \"0.2501\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"fulminant\": {\n        \"form\": \"fulminant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"fulminantestem,fulminantesten,fulminanteren,fulminanteres,fulminanterer,fulminantes,fulminante,fulminanterem,fulminanter,fulminanteste,fulminanten,fulminantem,fulminantestes,fulminantere,fulminantester\"\n    },\n    \"funkeln\": {\n        \"form\": \"funkeln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"funkele,funkle,funkelst,funkelt,funklest,funklet,funkelte,funkeltest,funkelten,funkeltet,gefunkelt\"\n    },\n    \"funktionieren\": {\n        \"form\": \"funktionieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"funktionierest,funktioniertet,funktionieret,funktioniere,funktioniert,funktionierten,funktionierst,funktionierte,funktioniertest\"\n    },\n    \"funktionierend\": {\n        \"form\": \"funktionierend\",\n        \"polarity\": \"0.2022\",\n        \"pos\": \"JJ\",\n        \"sense\": \"funktionierende,funktionierendem,funktionierenden,funktionierender,funktionierendes,funktionierendere,funktionierenderem,funktionierenderen,funktionierenderer,funktionierenderes,funktionierendste,funktionierendstem,funktionierendsten,funktionierendster,funktionierendstes\"\n    },\n    \"funktionsfähig\": {\n        \"form\": \"funktionsfähig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"furchtlos\": {\n        \"form\": \"furchtlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"furchtlosesten,furchtlosestem,furchtlosester,furchtlose,furchtloses,furchtloser,furchtlosere,furchtloseste,furchtlosestes,furchtlosem,furchtloserer,furchtlosen,furchtloseres,furchtloserem,furchtloseren\"\n    },\n    \"fähig\": {\n        \"form\": \"fähig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"fördern\": {\n        \"form\": \"fördern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"gefördert,förderten,förderst,förderen,fördert,fördere,förderte,fördertet,fördertest\"\n    },\n    \"führen\": {\n        \"form\": \"führen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"führtest,führten,führt,führe,führte,führst,führet,führtet,führest,geführt\"\n    },\n    \"führend\": {\n        \"form\": \"führend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"füllen\": {\n        \"form\": \"füllen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"füllten,füllte,füllest,füllt,fülle,füllst,fülltet,füllet,fülltest,gefüllt\"\n    },\n    \"galant\": {\n        \"form\": \"galant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"galanteren,galanterem,galanter,galanterer,galantes,galantestem,galante,galantesten,galanteste,galantestes,galantester,galantere,galanteres,galanten,galantem\"\n    },\n    \"garantiert\": {\n        \"form\": \"garantiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"garantierteres,garantierterer,garantiertere,garantierteren,garantierterem,garantiertes,garantierter,garantiertsten,garantiertstem,garantiertster,garantiertem,garantierte,garantiertste,garantiertstes,garantierten\"\n    },\n    \"gastfreundlich\": {\n        \"form\": \"gastfreundlich\",\n        \"polarity\": \"0.0854\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gastfreundlichen,gastfreundlichere,gastfreundlicher,gastfreundliches,gastfreundlichstem,gastfreundlichsten,gastfreundliche,gastfreundlichste,gastfreundlichster,gastfreundlichem,gastfreundlichstes,gastfreundlicheres,gastfreundlicherer,gastfreundlicheren,gastfreundlicherem\"\n    },\n    \"gedeihen\": {\n        \"form\": \"gedeihen\",\n        \"polarity\": \"0.2166\",\n        \"pos\": \"VB\",\n        \"sense\": \"gedeihe,gedeihst,gedeiht,gedeihest,gedeihet,gedieh,gediehst,gediehen,gedieht,gediehe,gediehest,gediehet\"\n    },\n    \"gedeihlich\": {\n        \"form\": \"gedeihlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gedeihlichere,gedeihlicher,gedeihliches,gedeihlichem,gedeihlicheren,gedeihlichen,gedeihliche,gedeihlicherem,gedeihlichster,gedeihlicherer,gedeihlichstes,gedeihlicheres,gedeihlichste,gedeihlichsten,gedeihlichstem\"\n    },\n    \"gediegen\": {\n        \"form\": \"gediegen\",\n        \"polarity\": \"0.0831\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gediegensten,gediegenerem,gediegnere,gediegenstes,gediegenster,gediegeneren,gediegenerer,gediegnerer,gediegeneres,gediegneres,gediegenstem,gediegenere,gediegenste,gediegneren,gediegnerem,gediegene,gediegenem,gediegenen,gediegener,gediegenes,gediegner\"\n    },\n    \"geduldig\": {\n        \"form\": \"geduldig\",\n        \"polarity\": \"0.3342\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geduldigere,geduldigerer,geduldigerem,geduldigeren,geduldigstem,geduldigsten,geduldigste,geduldige,geduldiger,geduldiges,geduldigem,geduldigstes,geduldigen,geduldigster,geduldigeres\"\n    },\n    \"geeignet\": {\n        \"form\": \"geeignet\",\n        \"polarity\": \"0.0974\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geeignetem,geeignete,geeigneten,geeigneter,geeignetes,geeignetste,geeignetere,geeigneterem,geeigneteren,geeignetsten,geeigneterer,geeignetstem,geeigneteres,geeignetstes,geeignetster\"\n    },\n    \"gefallen\": {\n        \"form\": \"gefallen\",\n        \"polarity\": \"0.2578\",\n        \"pos\": \"VB\",\n        \"sense\": \"gefalle,gefällst,gefällt,gefallt,gefallest,gefallet,gefiel,gefielst,gefielen,gefielt,gefielest,gefiele,gefielet\"\n    },\n    \"gefeiert\": {\n        \"form\": \"gefeiert\",\n        \"polarity\": \"0.3403\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gefeierterem,gefeierteren,gefeierteres,gefeierterer,gefeiertester,gefeiertestes,gefeierteste,gefeierte,gefeiertes,gefeierter,gefeiertestem,gefeierten,gefeiertere,gefeiertem,gefeiertesten\"\n    },\n    \"gefesselt\": {\n        \"form\": \"gefesselt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gefesselte,gefesseltem,gefesselten,gefesselter,gefesseltes,gefesseltere,gefesselterem,gefesselteren,gefesselterer,gefesselteres,gefesseltste,gefesseltstem,gefesseltsten,gefesseltster,gefesseltstes\"\n    },\n    \"gefestigt\": {\n        \"form\": \"gefestigt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gefestigtstes,gefestigtster,gefestigteren,gefestigterem,gefestigtsten,gefestigte,gefestigtstem,gefestigten,gefestigtste,gefestigtem,gefestigtes,gefestigter,gefestigterer,gefestigteres,gefestigtere\"\n    },\n    \"gefragt\": {\n        \"form\": \"gefragt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gefragte,gefragtes,gefragtestes,gefragter,gefragtere,gefragteren,gefragterem,gefragteste,gefragteres,gefragterer,gefragtestem,gefragtesten,gefragtester,gefragten,gefragtem\"\n    },\n    \"geglückt\": {\n        \"form\": \"geglückt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gehorsam\": {\n        \"form\": \"gehorsam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gehorsamster,gehorsamste,gehorsamstes,gehorsames,gehorsamerem,gehorsameren,gehorsame,gehorsameres,gehorsamerer,gehorsamere,gehorsamstem,gehorsamer,gehorsamem,gehorsamsten,gehorsamen\"\n    },\n    \"gehörig\": {\n        \"form\": \"gehörig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"geil\": {\n        \"form\": \"geil\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geilerer,geiles,geiler,geilen,geilem,geileres,geilster,geileren,geilstem,geilsten,geilerem,geilste,geilstes,geilere,geile\"\n    },\n    \"gelassen\": {\n        \"form\": \"gelassen\",\n        \"polarity\": \"0.2325\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gelassener,gelasseneren,gelassneres,gelassnerer,gelassenerem,gelassenes,gelassenerer,gelasseneres,gelassneren,gelassnerem,gelassenste,gelassenen,gelassenem,gelassenstem,gelassensten,gelassnere,gelassner,gelassene,gelassenere,gelassenster,gelassenstes\"\n    },\n    \"geliebt\": {\n        \"form\": \"geliebt\",\n        \"polarity\": \"0.2315\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geliebtestes,geliebte,geliebtestem,geliebtesten,geliebtester,geliebtere,geliebteste,geliebten,geliebtem,geliebteren,geliebtes,geliebter,geliebterem,geliebteres,geliebterer\"\n    },\n    \"gelohnt\": {\n        \"form\": \"gelohnt\",\n        \"polarity\": \"0.5859\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"gelungen\": {\n        \"form\": \"gelungen\",\n        \"polarity\": \"1.0\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gelungnerem,gelungenster,gelungneren,gelungensten,gelungeneren,gelungenerem,gelungenstem,gelungneres,gelungene,gelungnerer,gelungenstes,gelungenere,gelungenen,gelungenste,gelungenem,gelungener,gelungenes,gelungenerer,gelungnere,gelungeneres,gelungner\"\n    },\n    \"gemeinsam\": {\n        \"form\": \"gemeinsam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gemeinsamere,gemeinsamstem,gemeinsamsten,gemeinsamen,gemeinsamem,gemeinsames,gemeinsamstes,gemeinsame,gemeinsamster,gemeinsamer,gemeinsamste,gemeinsamerem,gemeinsameren,gemeinsameres,gemeinsamerer\"\n    },\n    \"gemeinschaftlich\": {\n        \"form\": \"gemeinschaftlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gemeinschaftlichem,gemeinschaftlichen,gemeinschaftlichstem,gemeinschaftlichsten,gemeinschaftlichste,gemeinschaftliches,gemeinschaftlicherer,gemeinschaftlicher,gemeinschaftlicheres,gemeinschaftliche,gemeinschaftlicherem,gemeinschaftlicheren,gemeinschaftlichere,gemeinschaftlichstes,gemeinschaftlichster\"\n    },\n    \"gemütlich\": {\n        \"form\": \"gemütlich\",\n        \"polarity\": \"0.368\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"genau\": {\n        \"form\": \"genau\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"genauester,genauestem,genauesten,genaueren,genauem,genauerem,genauen,genaueres,genauerer,genaustes,genaueste,genauster,genauere,genaust,genaustem,genausten,genaue,genaues,genauer,genauste,genauestes\"\n    },\n    \"genehm\": {\n        \"form\": \"genehm\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"genehmer,genehmerem,genehmster,genehmem,genehmstes,genehmen,genehmsten,genehme,genehmes,genehmstem,genehmere,genehmste,genehmeres,genehmerer,genehmeren\"\n    },\n    \"genehmigen\": {\n        \"form\": \"genehmigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"genehmigte,genehmiget,genehmige,genehmigt,genehmigten,genehmigtet,genehmigest,genehmig,genehmigtest\"\n    },\n    \"genesen\": {\n        \"form\": \"genesen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"genese,genest,genesest,genas,genasest,genast,genasen,genäse,genäsest,genäsen,genäset\"\n    },\n    \"genial\": {\n        \"form\": \"genial\",\n        \"polarity\": \"0.2156\",\n        \"pos\": \"JJ\",\n        \"sense\": \"genialster,genialstes,geniale,geniales,genialer,genialste,genialeren,genialem,genialen,genialerem,genialerer,genialeres,genialere,genialsten,genialstem\"\n    },\n    \"genießbar\": {\n        \"form\": \"genießbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"genießen\": {\n        \"form\": \"genießen\",\n        \"polarity\": \"0.4983\",\n        \"pos\": \"VB\",\n        \"sense\": \"genieße,genießt,genießest,genießet,genoss,genoß,genossest,genosst,genoßt,genossen,genösse,genössest,genössen,genösset\"\n    },\n    \"genügend\": {\n        \"form\": \"genügend\",\n        \"polarity\": \"0.1019\",\n        \"pos\": \"JJ\",\n        \"sense\": \"genügende,genügendem,genügenden,genügender,genügendes\"\n    },\n    \"geordnet\": {\n        \"form\": \"geordnet\",\n        \"polarity\": \"0.0936\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geordnete,geordnetem,geordneten,geordneter,geordnetes,geordnetere,geordneterem,geordneteren,geordneterer,geordneteres,geordnetste,geordnetstem,geordnetsten,geordnetster,geordnetstes\"\n    },\n    \"gepflegt\": {\n        \"form\": \"gepflegt\",\n        \"polarity\": \"0.3499\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gepflegtester,gepflegtestes,gepflegtere,gepflegteste,gepflegterem,gepflegte,gepflegtestem,gepflegtesten,gepflegter,gepflegteres,gepflegterer,gepflegten,gepflegtem,gepflegteren,gepflegtes\"\n    },\n    \"gerecht\": {\n        \"form\": \"gerecht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gerechter,gerechtes,gerechteres,gerechterer,gerechtestem,gerechtesten,gerechtere,gerechteren,gerechterem,gerechtester,gerechtestes,gerechtem,gerechten,gerechte,gerechteste\"\n    },\n    \"gerechtfertigt\": {\n        \"form\": \"gerechtfertigt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gerechtfertigtem,gerechtfertigteren,gerechtfertigtst,gerechtfertigterem,gerechtfertigtere,gerechtfertigtster,gerechtfertigtstes,gerechtfertigtstem,gerechtfertigtsten,gerechtfertigtste,gerechtfertigteres,gerechtfertigtes,gerechtfertigter,gerechtfertigte,gerechtfertigterer,gerechtfertigten\"\n    },\n    \"geruhsam\": {\n        \"form\": \"geruhsam\",\n        \"polarity\": \"0.0769\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geruhsamer,geruhsamerem,geruhsamste,geruhsamster,geruhsamere,geruhsamstes,geruhsameren,geruhsames,geruhsamen,geruhsamem,geruhsamstem,geruhsamsten,geruhsame,geruhsamerer,geruhsameres\"\n    },\n    \"geräumig\": {\n        \"form\": \"geräumig\",\n        \"polarity\": \"0.1008\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gerührt\": {\n        \"form\": \"gerührt\",\n        \"polarity\": \"0.446\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"geschickt\": {\n        \"form\": \"geschickt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geschickter,geschickterer,geschicktes,geschickteren,geschickterem,geschickte,geschicktester,geschicktestes,geschickten,geschickteste,geschicktestem,geschicktesten,geschicktem,geschicktere,geschickteres\"\n    },\n    \"geschmackvoll\": {\n        \"form\": \"geschmackvoll\",\n        \"polarity\": \"0.2116\",\n        \"pos\": \"JJ\",\n        \"sense\": \"geschmackvollere,geschmackvolleren,geschmackvolles,geschmackvoller,geschmackvollerem,geschmackvollen,geschmackvollster,geschmackvollste,geschmackvollem,geschmackvollstes,geschmackvolle,geschmackvollsten,geschmackvollerer,geschmackvollstem,geschmackvolleres\"\n    },\n    \"geschäftig\": {\n        \"form\": \"geschäftig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"geschätzt\": {\n        \"form\": \"geschätzt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gesteigert\": {\n        \"form\": \"gesteigert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gesteigerte,gesteigertem,gesteigerten,gesteigerter,gesteigertes\"\n    },\n    \"gestiegen\": {\n        \"form\": \"gestiegen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gestiegene,gestiegenem,gestiegenen,gestiegener,gestiegenes\"\n    },\n    \"gesund\": {\n        \"form\": \"gesund\",\n        \"polarity\": \"0.1554\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"getreu\": {\n        \"form\": \"getreu\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"getreuestem,getreuesten,getreuen,getreuerer,getreuem,getreueres,getreusten,getreuester,getreuerem,getreustem,getreueren,getreuest,getreustes,getreust,getreuster,getreuestes,getreuste,getreues,getreuer,getreuere,getreue,getreueste\"\n    },\n    \"gewachsen\": {\n        \"form\": \"gewachsen\",\n        \"polarity\": \"0.1201\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewachsene,gewachsenem,gewachsenen,gewachsener,gewachsenes\"\n    },\n    \"gewaltfrei\": {\n        \"form\": \"gewaltfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewaltfreistes,gewaltfreister,gewaltfreie,gewaltfreistem,gewaltfreisten,gewaltfreier,gewaltfreies,gewaltfreiem,gewaltfreien,gewaltfreiere,gewaltfreiste,gewaltfreierer,gewaltfreieres,gewaltfreierem,gewaltfreieren\"\n    },\n    \"gewaltig\": {\n        \"form\": \"gewaltig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewaltiger,gewaltigeren,gewaltigerem,gewaltiges,gewaltigste,gewaltigstem,gewaltige,gewaltigsten,gewaltigstes,gewaltigem,gewaltigeres,gewaltigster,gewaltigen,gewaltigerer,gewaltigere\"\n    },\n    \"gewichtig\": {\n        \"form\": \"gewichtig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewichtige,gewichtigeren,gewichtigerem,gewichtigerer,gewichtigeres,gewichtiges,gewichtiger,gewichtigster,gewichtigstes,gewichtigere,gewichtigste,gewichtigen,gewichtigsten,gewichtigem,gewichtigstem\"\n    },\n    \"gewinnbringend\": {\n        \"form\": \"gewinnbringend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewinnbringenderem,gewinnbringenderen,gewinnbringende,gewinnbringendstes,gewinnbringenden,gewinnbringendster,gewinnbringendem,gewinnbringenderes,gewinnbringender,gewinnbringenderer,gewinnbringendes,gewinnbringendsten,gewinnbringendere,gewinnbringendste,gewinnbringendstem\"\n    },\n    \"gewinnen\": {\n        \"form\": \"gewinnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"gewissenhaft\": {\n        \"form\": \"gewissenhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gewissenhaftestem,gewissenhaftesten,gewissenhafte,gewissenhaftem,gewissenhaften,gewissenhafter,gewissenhafteren,gewissenhafterem,gewissenhaftes,gewissenhaftester,gewissenhafteres,gewissenhafterer,gewissenhaftere,gewissenhaftestes,gewissenhafteste\"\n    },\n    \"gewährleisten\": {\n        \"form\": \"gewährleisten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"gewährleiste,gewährleistest,gewährleistet,gewährleistete,gewährleistetest,gewährleisteten,gewährleistetet\"\n    },\n    \"gewünscht\": {\n        \"form\": \"gewünscht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gezielt\": {\n        \"form\": \"gezielt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gezielte,gezieltem,gezielten,gezielter,gezieltes\"\n    },\n    \"gigantisch\": {\n        \"form\": \"gigantisch\",\n        \"polarity\": \"0.5459\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gigantischer,gigantisches,gigantischen,gigantischem,gigantischere,gigantischstem,gigantischsten,gigantischster,gigantischeres,gigantischstes,gigantischste,gigantische,gigantischerer,gigantischerem,gigantischeren\"\n    },\n    \"glamourös\": {\n        \"form\": \"glamourös\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"glanzvoll\": {\n        \"form\": \"glanzvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glanzvollster,glanzvollerem,glanzvollstem,glanzvollsten,glanzvolleren,glanzvolles,glanzvoller,glanzvollerer,glanzvollere,glanzvolleres,glanzvollen,glanzvollem,glanzvollste,glanzvolle,glanzvollstes\"\n    },\n    \"glasklar\": {\n        \"form\": \"glasklar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glasklarere,glasklarerem,glasklareren,glasklarerer,glasklareres\"\n    },\n    \"glatt\": {\n        \"form\": \"glatt\",\n        \"polarity\": \"0.1099\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glatterer,glatteres,glatteren,glatterem,glattere,glattester,glattesten,glatten,glattem,glattestem,glatte,glattes,glatter,glattestes,glatteste\"\n    },\n    \"glaubwürdig\": {\n        \"form\": \"glaubwürdig\",\n        \"polarity\": \"0.0893\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gleichstellen\": {\n        \"form\": \"gleichstellen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"gleichstellt,gleichstelle,gleichgestellt,gleichstellet,gleichstellten,gleichstellest,gleichstelltet,gleichstellst,gleichstelltest,gleichstellte\"\n    },\n    \"gleichwertig\": {\n        \"form\": \"gleichwertig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gleichwertigsten,gleichwertigstem,gleichwertigster,gleichwertigstes,gleichwertige,gleichwertigerer,gleichwertigeres,gleichwertigerem,gleichwertigeren,gleichwertigere,gleichwertigem,gleichwertigen,gleichwertiger,gleichwertiges,gleichwertigste\"\n    },\n    \"glorios\": {\n        \"form\": \"glorios\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glorioserer,glorioserem,gloriosere,glorioseren,gloriosester,gloriosestes,gloriosen,gloriosestem,gloriosesten,gloriosem,gloriose,glorioser,glorioses,glorioseste,glorioseres\"\n    },\n    \"glorreich\": {\n        \"form\": \"glorreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"glorreichere,glorreichste,glorreichsten,glorreichstem,glorreicher,glorreiches,glorreicheres,glorreichster,glorreichen,glorreichstes,glorreicherer,glorreichem,glorreicherem,glorreicheren,glorreiche\"\n    },\n    \"glänzen\": {\n        \"form\": \"glänzen\",\n        \"polarity\": \"0.3397\",\n        \"pos\": \"VB\",\n        \"sense\": \"glänzten,glänzte,glänzt,glänze,geglänzt,glänztest,glänztet,glänzest,glänzet\"\n    },\n    \"glänzend\": {\n        \"form\": \"glänzend\",\n        \"polarity\": \"0.2082\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"glücklich\": {\n        \"form\": \"glücklich\",\n        \"polarity\": \"0.115\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"glühend\": {\n        \"form\": \"glühend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gnädig\": {\n        \"form\": \"gnädig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"golden\": {\n        \"form\": \"golden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"goldenere,goldeneren,goldenerem,goldenen,goldenem,goldener,goldenes,goldene,goldenster,goldnerem,goldneren,goldensten,goldenstem,goldnerer,goldner,goldneres,goldenerer,goldnere,goldenste,goldenstes,goldeneres\"\n    },\n    \"goldig\": {\n        \"form\": \"goldig\",\n        \"polarity\": \"0.1991\",\n        \"pos\": \"JJ\",\n        \"sense\": \"goldigster,goldigeres,goldigstes,goldigerer,goldigsten,goldigste,goldigerem,goldigstem,goldigeren,goldige,goldigen,goldigem,goldigere,goldiger,goldiges\"\n    },\n    \"grandios\": {\n        \"form\": \"grandios\",\n        \"polarity\": \"0.1843\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grandiosester,grandiosestes,grandioser,grandiose,grandioses,grandiosen,grandioseste,grandiosem,grandiosere,grandioserer,grandioseres,grandiosesten,grandiosestem,grandioserem,grandioseren\"\n    },\n    \"gratulieren\": {\n        \"form\": \"gratulieren\",\n        \"polarity\": \"0.065\",\n        \"pos\": \"VB\",\n        \"sense\": \"gratuliere,gratulierst,gratuliert,gratulierest,gratulieret,gratulierte,gratuliertest,gratulierten,gratuliertet\"\n    },\n    \"gravierend\": {\n        \"form\": \"gravierend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gravierendstem,gravierendsten,gravierenderes,gravierenden,gravierendem,gravierendes,gravierender,gravierendstes,gravierenderer,gravierendster,gravierenderem,gravierenderen,gravierende,gravierendste,gravierendere\"\n    },\n    \"greifbar\": {\n        \"form\": \"greifbar\",\n        \"polarity\": \"0.0886\",\n        \"pos\": \"JJ\",\n        \"sense\": \"greifbarste,greifbarere,greifbare,greifbarem,greifbaren,greifbares,greifbarer,greifbarster,greifbarstes,greifbareren,greifbarstem,greifbarsten,greifbarerem,greifbarerer,greifbareres\"\n    },\n    \"grenzenlos\": {\n        \"form\": \"grenzenlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grenzenlose,grenzenlosestem,grenzenloseste,grenzenlosesten,grenzenlosere,grenzenloseres,grenzenloserer,grenzenloseren,grenzenlosem,grenzenloserem,grenzenlosester,grenzenlosen,grenzenlosestes,grenzenloser,grenzenloses\"\n    },\n    \"groß\": {\n        \"form\": \"groß\",\n        \"polarity\": \"0.3694\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"großartig\": {\n        \"form\": \"großartig\",\n        \"polarity\": \"0.4606\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"großspurig\": {\n        \"form\": \"großspurig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"großzügig\": {\n        \"form\": \"großzügig\",\n        \"polarity\": \"0.2077\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"grundlegend\": {\n        \"form\": \"grundlegend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"grundlegendstem,grundlegendsten,grundlegendster,grundlegende,grundlegendstes,grundlegenderen,grundlegenderem,grundlegenden,grundlegendem,grundlegenderer,grundlegendste,grundlegendes,grundlegender,grundlegenderes,grundlegendere\"\n    },\n    \"grundsätzlich\": {\n        \"form\": \"grundsätzlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"größtmöglich\": {\n        \"form\": \"größtmöglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gründlich\": {\n        \"form\": \"gründlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gut\": {\n        \"form\": \"gut\",\n        \"polarity\": \"0.3716\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gute,gutem,guten,guter,gutes,besser,bessere,besserem,besseren,besserer,besseres,beste,bestem,besten,bester,bestes\"\n    },\n    \"gutgehend\": {\n        \"form\": \"gutgehend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"gutgehende,gutgehenden,gutgehenderes,gutgehendem,gutgehenderer,gutgehendes,gutgehender,gutgehendste,gutgehendsten,gutgehendere,gutgehendstem,gutgehendstes,gutgehendster,gutgehenderem,gutgehenderen\"\n    },\n    \"gönnen\": {\n        \"form\": \"gönnen\",\n        \"polarity\": \"0.3387\",\n        \"pos\": \"VB\",\n        \"sense\": \"gönntet,gönnst,gegönnt,gönnte,gönnt,gönnest,gönne,gönntest,gönnten,gönnet\"\n    },\n    \"göttlich\": {\n        \"form\": \"göttlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gültig\": {\n        \"form\": \"gültig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"günstig\": {\n        \"form\": \"günstig\",\n        \"polarity\": \"0.0946\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gütig\": {\n        \"form\": \"gütig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"gütlich\": {\n        \"form\": \"gütlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"handfest\": {\n        \"form\": \"handfest\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"handfesterem,handfesteren,handfestestes,handfestester,handfeste,handfesterer,handfesteres,handfestesten,handfestes,handfesteste,handfester,handfesten,handfestere,handfestestem,handfestem\"\n    },\n    \"handlich\": {\n        \"form\": \"handlich\",\n        \"polarity\": \"0.2025\",\n        \"pos\": \"JJ\",\n        \"sense\": \"handlichen,handlicheres,handlichem,handliches,handlichstes,handlicher,handlicherer,handlicheren,handliche,handlicherem,handlichste,handlichster,handlichere,handlichstem,handlichsten\"\n    },\n    \"harmonisch\": {\n        \"form\": \"harmonisch\",\n        \"polarity\": \"0.3489\",\n        \"pos\": \"JJ\",\n        \"sense\": \"harmonischerem,harmonischstem,harmonischsten,harmonische,harmonischerer,harmonischeres,harmonischeren,harmonisches,harmonischer,harmonischem,harmonischen,harmonischstes,harmonischste,harmonischster,harmonischere\"\n    },\n    \"harmonisieren\": {\n        \"form\": \"harmonisieren\",\n        \"polarity\": \"0.0828\",\n        \"pos\": \"VB\",\n        \"sense\": \"harmonisiertest,harmonisiert,harmonisiere,harmonisiertet,harmonisierten,harmonisierte,harmonisierest,harmonisieret,harmonisierst\"\n    },\n    \"hauptsächlich\": {\n        \"form\": \"hauptsächlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"heben\": {\n        \"form\": \"heben\",\n        \"polarity\": \"0.2219\",\n        \"pos\": \"VB\",\n        \"sense\": \"hebe,hebst,hebt,hebest,hebet,hob,hobst,hoben,hobt,höbe,höbest,höbst,höben,höbet,höbt,gehoben\"\n    },\n    \"heil\": {\n        \"form\": \"heil\",\n        \"polarity\": \"0.3414\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heilstes,heilster,heilsten,heilste,heilstem,heilere,heilem,heilen,heilerer,heileres,heiler,heiles,heile,heilerem,heileren\"\n    },\n    \"heilen\": {\n        \"form\": \"heilen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heile,heilst,heilt,heilest,heilet,heilte,heiltest,heilten,heiltet,geheilt\"\n    },\n    \"heilig\": {\n        \"form\": \"heilig\",\n        \"polarity\": \"0.0727\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heiligsten,heiligster,heiligstes,heiligste,heiligstem,heiligeren,heiliges,heiliger,heilige,heiligerem,heiligen,heiligere,heiligem,heiligerer,heiligeres\"\n    },\n    \"heilsam\": {\n        \"form\": \"heilsam\",\n        \"polarity\": \"0.2007\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heilsamere,heilsamem,heilsames,heilsamster,heilsamer,heilsamstes,heilsamstem,heilsamsten,heilsamen,heilsamerem,heilsameren,heilsamste,heilsame,heilsameres,heilsamerer\"\n    },\n    \"heiraten\": {\n        \"form\": \"heiraten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"heirate,heiratest,heiratet,heiratete,heiratetest,heirateten,heiratetet,geheiratet\"\n    },\n    \"heiter\": {\n        \"form\": \"heiter\",\n        \"polarity\": \"0.2013\",\n        \"pos\": \"JJ\",\n        \"sense\": \"heitere,heitrerem,heiterste,heitererer,heiterstes,heitererem,heiterster,heitereren,heitrere,heitersten,heiterstem,heitrer,heitereres,heiteres,heiteren,heiterer,heitreren,heiterem,heitrerer,heiterere,heitreres\"\n    },\n    \"heiß\": {\n        \"form\": \"heiß\",\n        \"polarity\": \"0.3557\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"helfen\": {\n        \"form\": \"helfen\",\n        \"polarity\": \"0.373\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"hell\": {\n        \"form\": \"hell\",\n        \"polarity\": \"0.235\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hellem,hellen,helleres,hellerem,helleren,helle,hellere,hellerer,heller,helles,hellsten,hellstem,hellstes,hellste,hellster\"\n    },\n    \"heranwachsen\": {\n        \"form\": \"heranwachsen\",\n        \"polarity\": \"0.0867\",\n        \"pos\": \"VB\",\n        \"sense\": \"heranwachse,heranwächst,heranwachsest,heranwachset,heranwuchs,heranwuchsest,heranwuchst,heranwuchsen,heranwüchse,heranwüchsest,heranwüchsen,heranwüchset,herangewachsen\"\n    },\n    \"heraufsetzen\": {\n        \"form\": \"heraufsetzen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"heraufsetze,heraufsetzt,heraufsetzest,heraufsetzet,heraufsetzte,heraufsetztest,heraufsetzten,heraufsetztet,heraufgesetzt\"\n    },\n    \"herausgehoben\": {\n        \"form\": \"herausgehoben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herausgehobene,herausgehobenem,herausgehobenen,herausgehobener,herausgehobenes\"\n    },\n    \"herausragen\": {\n        \"form\": \"herausragen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"herausrage,herausragst,herausragt,herausragest,herausraget,herausragte,herausragtest,herausragten,herausragtet,herausgeragt\"\n    },\n    \"herrlich\": {\n        \"form\": \"herrlich\",\n        \"polarity\": \"0.4821\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herrlicheren,herrlicherem,herrlichste,herrlichstes,herrlichster,herrlichere,herrlicheres,herrlicherer,herrlichstem,herrlichsten,herrlichen,herrlicher,herrliches,herrliche,herrlichem\"\n    },\n    \"herrschaftlich\": {\n        \"form\": \"herrschaftlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herrschaftlicheren,herrschaftlicherem,herrschaftlichste,herrschaftlichere,herrschaftlichstem,herrschaftlichem,herrschaftlichen,herrschaftlicher,herrschaftliches,herrschaftlichsten,herrschaftliche,herrschaftlichstes,herrschaftlicheres,herrschaftlichster,herrschaftlicherer\"\n    },\n    \"hervorragend\": {\n        \"form\": \"hervorragend\",\n        \"polarity\": \"0.5891\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hervorragendstes,hervorragendster,hervorragendere,hervorragendstem,hervorragendsten,hervorragendste,hervorragender,hervorragendes,hervorragenden,hervorragendem,hervorragenderen,hervorragenderer,hervorragenderem,hervorragende,hervorragenderes\"\n    },\n    \"herzig\": {\n        \"form\": \"herzig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herzigste,herzigen,herzigem,herzigster,herzigere,herzigstes,herzigstem,herzigsten,herzige,herzigerer,herzigeres,herzigerem,herzigeren,herziger,herziges\"\n    },\n    \"herzlich\": {\n        \"form\": \"herzlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"herzlicherer,herzlicheres,herzlichem,herzlichere,herzlichstes,herzliches,herzlicher,herzlichster,herzlichen,herzlichstem,herzlichsten,herzlichste,herzlicherem,herzliche,herzlicheren\"\n    },\n    \"hilfreich\": {\n        \"form\": \"hilfreich\",\n        \"polarity\": \"0.0926\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hilfreiche,hilfreichste,hilfreicherem,hilfreicheren,hilfreichere,hilfreichsten,hilfreicher,hilfreiches,hilfreichstem,hilfreichster,hilfreichem,hilfreichstes,hilfreichen,hilfreicherer,hilfreicheres\"\n    },\n    \"hilfsbereit\": {\n        \"form\": \"hilfsbereit\",\n        \"polarity\": \"0.3377\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hilfsbereiteste,hilfsbereitestem,hilfsbereitesten,hilfsbereitem,hilfsbereiteren,hilfsbereiterem,hilfsbereitestes,hilfsbereitester,hilfsbereite,hilfsbereiten,hilfsbereitere,hilfsbereites,hilfsbereiter,hilfsbereiteres,hilfsbereiterer\"\n    },\n    \"himmlisch\": {\n        \"form\": \"himmlisch\",\n        \"polarity\": \"0.2088\",\n        \"pos\": \"JJ\",\n        \"sense\": \"himmlischster,himmlischstes,himmlischerer,himmlischeres,himmlisches,himmlischeren,himmlischste,himmlischer,himmlische,himmlischstem,himmlischsten,himmlischen,himmlischem,himmlischere,himmlischerem\"\n    },\n    \"hinausgehend\": {\n        \"form\": \"hinausgehend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hinausgehendste,hinausgehendster,hinausgehende,hinausgehenden,hinausgehendstes,hinausgehendem,hinausgehendstem,hinausgehendsten,hinausgehendes,hinausgehender,hinausgehenderes,hinausgehenderer,hinausgehendere,hinausgehenderen,hinausgehenderem\"\n    },\n    \"hingeben\": {\n        \"form\": \"hingeben\",\n        \"polarity\": \"0.0762\",\n        \"pos\": \"VB\",\n        \"sense\": \"hingebe,hingibst,hingibt,hingebt,hingebest,hingebet,hingab,hingabst,hingaben,hingabt,hingäbe,hingäbest,hingäbst,hingäben,hingäbet,hingäbt,hingegeben\"\n    },\n    \"hinhauen\": {\n        \"form\": \"hinhauen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hinhaue,hinhaust,hinhaut,hinhauest,hinhauet,hinhaute,hinhautest,hinhauten,hinhautet,hingehauen\"\n    },\n    \"hinreichend\": {\n        \"form\": \"hinreichend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hinreichendem,hinreichendstes,hinreichenden,hinreichendster,hinreichendstem,hinreichendsten,hinreichende,hinreichendes,hinreichendste,hinreichender,hinreichenderes,hinreichenderer,hinreichendere,hinreichenderen,hinreichenderem\"\n    },\n    \"hinreißend\": {\n        \"form\": \"hinreißend\",\n        \"polarity\": \"0.0841\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hinterlassen\": {\n        \"form\": \"hinterlassen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hinterlasse,hinterlässt,hinterläßt,hinterlasst,hinterlaßt,hinterlassest,hinterlasset,hinterließ,hinterließest,hinterließt,hinterließen,hinterließe\"\n    },\n    \"hinzufügen\": {\n        \"form\": \"hinzufügen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hinzufügten,hinzugefügt,hinzufügst,hinzufügtest,hinzufügte,hinzufügt,hinzufüge,hinzufüget,hinzufügest,hinzufügtet\"\n    },\n    \"hinzunehmen\": {\n        \"form\": \"hinzunehmen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hinzunehme,hinzunimmst,hinzunimmt,hinzunehmt,hinzunehmest,hinzunehmet,hinzunahm,hinzunahmst,hinzunahmen,hinzunahmt,hinzunähme,hinzunähmest,hinzunähmst,hinzunähmen,hinzunähmet,hinzunähmt\"\n    },\n    \"historisch\": {\n        \"form\": \"historisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"historisches,historischer,historischere,historischstem,historischsten,historischeren,historischerem,historischste,historischster,historische,historischeres,historischstes,historischerer,historischen,historischem\"\n    },\n    \"hoch\": {\n        \"form\": \"hoch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hochattraktiv\": {\n        \"form\": \"hochattraktiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochattraktive,hochattraktivem,hochattraktiven,hochattraktiver,hochattraktives,hochattraktivere,hochattraktiverem,hochattraktiveren,hochattraktiverer,hochattraktiveres,hochattraktivste,hochattraktivstem,hochattraktivsten,hochattraktivster,hochattraktivstes\"\n    },\n    \"hochgestellt\": {\n        \"form\": \"hochgestellt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochgestellte,hochgestelltem,hochgestellten,hochgestellter,hochgestelltes\"\n    },\n    \"hochgradig\": {\n        \"form\": \"hochgradig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochgradige,hochgradigem,hochgradigen,hochgradiger,hochgradiges\"\n    },\n    \"hochhalten\": {\n        \"form\": \"hochhalten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hochhalte,hochhältst,hochhält,hochhaltet,hochhaltest,hochhielt,hochhieltest,hochhieltst,hochhielten,hochhieltet,hochhielte,hochgehalten\"\n    },\n    \"hochheben\": {\n        \"form\": \"hochheben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"hochhebe,hochhebst,hochhebt,hochhebest,hochhebet,hochhob,hochhobst,hochhoben,hochhobt,hochhöbe,hochhöbest,hochhöbst,hochhöben,hochhöbet,hochhöbt,hochgehoben\"\n    },\n    \"hochkarätig\": {\n        \"form\": \"hochkarätig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hochklassig\": {\n        \"form\": \"hochklassig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochklassige,hochklassigem,hochklassigen,hochklassiger,hochklassiges\"\n    },\n    \"hochrangig\": {\n        \"form\": \"hochrangig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochrangiges,hochrangigere,hochrangige,hochrangigstes,hochrangigster,hochrangigsten,hochrangigeren,hochrangigerer,hochrangigeres,hochrangigstem,hochrangigen,hochrangigem,hochrangigste,hochrangiger,hochrangigerem\"\n    },\n    \"hochtreibend\": {\n        \"form\": \"hochtreibend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochtreibende,hochtreibendem,hochtreibenden,hochtreibender,hochtreibendes\"\n    },\n    \"hochwertig\": {\n        \"form\": \"hochwertig\",\n        \"polarity\": \"0.0849\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hochwertige,hochwertigem,hochwertigen,hochwertiger,hochwertiges\"\n    },\n    \"hoffen\": {\n        \"form\": \"hoffen\",\n        \"polarity\": \"0.2318\",\n        \"pos\": \"VB\",\n        \"sense\": \"hofft,hofften,hoffe,gehofft,hoffest,hofftest,hoffte,hoffst,hoffet,hofftet\"\n    },\n    \"hoffnungsfroh\": {\n        \"form\": \"hoffnungsfroh\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hoffnungsfrohstes,hoffnungsfroheres,hoffnungsfrohes,hoffnungsfroher,hoffnungsfrohster,hoffnungsfrohen,hoffnungsfrohem,hoffnungsfrohstem,hoffnungsfrohsten,hoffnungsfrohe,hoffnungsfroherer,hoffnungsfroherem,hoffnungsfroheren,hoffnungsfrohere,hoffnungsfrohste\"\n    },\n    \"hoffnungsvoll\": {\n        \"form\": \"hoffnungsvoll\",\n        \"polarity\": \"0.1853\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hoffnungsvollsten,hoffnungsvollerem,hoffnungsvolleren,hoffnungsvollstem,hoffnungsvollem,hoffnungsvollere,hoffnungsvollen,hoffnungsvollerer,hoffnungsvollste,hoffnungsvolle,hoffnungsvollstes,hoffnungsvoller,hoffnungsvolleres,hoffnungsvolles,hoffnungsvollster\"\n    },\n    \"human\": {\n        \"form\": \"human\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"humanstes,humanere,humanster,humaneres,humansten,humanstem,humanerer,humaneren,humanerem,humanes,humaner,humanste,humane,humanem,humanen\"\n    },\n    \"humanitär\": {\n        \"form\": \"humanitär\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"humorvoll\": {\n        \"form\": \"humorvoll\",\n        \"polarity\": \"0.317\",\n        \"pos\": \"JJ\",\n        \"sense\": \"humorvollstem,humorvollsten,humorvollere,humorvollster,humorvollstes,humorvolle,humorvollen,humorvollste,humorvollem,humorvoller,humorvollerer,humorvolleres,humorvolles,humorvollerem,humorvolleren\"\n    },\n    \"hundertprozentig\": {\n        \"form\": \"hundertprozentig\",\n        \"polarity\": \"0.0796\",\n        \"pos\": \"JJ\",\n        \"sense\": \"hundertprozentigste,hundertprozentigeres,hundertprozentigerer,hundertprozentiges,hundertprozentiger,hundertprozentigen,hundertprozentigem,hundertprozentigstem,hundertprozentigsten,hundertprozentige,hundertprozentigerem,hundertprozentigstes,hundertprozentigeren,hundertprozentigster,hundertprozentigere\"\n    },\n    \"höchstmöglich\": {\n        \"form\": \"höchstmöglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"höchstmögliche,höchstmöglichem,höchstmöglichen,höchstmöglicher,höchstmögliches\"\n    },\n    \"höflich\": {\n        \"form\": \"höflich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hörenswert\": {\n        \"form\": \"hörenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"hübsch\": {\n        \"form\": \"hübsch\",\n        \"polarity\": \"0.4629\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"ideal\": {\n        \"form\": \"ideal\",\n        \"polarity\": \"0.0937\",\n        \"pos\": \"JJ\",\n        \"sense\": \"idealstes,idealerer,ideales,idealer,idealerem,idealeren,idealster,idealsten,idealen,idealste,idealstem,idealem,ideale,idealere,idealeres\"\n    },\n    \"idyllisch\": {\n        \"form\": \"idyllisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"idyllischer,idyllisches,idyllischem,idyllischen,idyllischste,idyllischstem,idyllischsten,idyllischere,idyllischeres,idyllischstes,idyllischerer,idyllischerem,idyllischster,idyllische,idyllischeren\"\n    },\n    \"illuster\": {\n        \"form\": \"illuster\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"illustre,illustrem,illustren,illustrer,illustres,illustrere,illustrerem,illustreren,illustrerer,illustreres,illusterste,illusterstem,illustersten,illusterster,illusterstes\"\n    },\n    \"immens\": {\n        \"form\": \"immens\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"immensere,immensestem,immensesten,immenses,immenser,immenseres,immensester,immensestes,immensen,immensem,immenserer,immenseren,immenserem,immenseste,immense\"\n    },\n    \"imponierend\": {\n        \"form\": \"imponierend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"imponierende,imponierendem,imponierenden,imponierender,imponierendes,imponierendere,imponierenderem,imponierenderen,imponierenderer,imponierenderes,imponierendste,imponierendstem,imponierendsten,imponierendster,imponierendstes\"\n    },\n    \"imposant\": {\n        \"form\": \"imposant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"imposantem,imposanteste,imposanterem,imposanteren,imposantere,imposantesten,imposantester,imposantestes,imposanterer,imposanter,imposanteres,imposantes,imposanten,imposante,imposantestem\"\n    },\n    \"inbrünstig\": {\n        \"form\": \"inbrünstig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"individuell\": {\n        \"form\": \"individuell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"individuellerem,individuellstes,individuelleren,individuellster,individuellere,individuellsten,individuellstem,individuellen,individuelle,individueller,individuelles,individuellste,individuellem,individuellerer,individuelleres\"\n    },\n    \"ingeniös\": {\n        \"form\": \"ingeniös\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"innovativ\": {\n        \"form\": \"innovativ\",\n        \"polarity\": \"0.3302\",\n        \"pos\": \"JJ\",\n        \"sense\": \"innovativeren,innovativerem,innovativeres,innovativerer,innovativere,innovatives,innovativstem,innovativsten,innovativer,innovativster,innovativem,innovativstes,innovativen,innovativste,innovative\"\n    },\n    \"inspirieren\": {\n        \"form\": \"inspirieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"inspiriere,inspirierst,inspiriert,inspirierest,inspirieret,inspirierte,inspiriertest,inspirierten,inspiriertet\"\n    },\n    \"inspirierend\": {\n        \"form\": \"inspirierend\",\n        \"polarity\": \"0.0786\",\n        \"pos\": \"JJ\",\n        \"sense\": \"inspirierende,inspirierendem,inspirierenden,inspirierender,inspirierendes,inspirierendere,inspirierenderem,inspirierenderen,inspirierenderer,inspirierenderes,inspirierendste,inspirierendstem,inspirierendsten,inspirierendster,inspirierendstes\"\n    },\n    \"intakt\": {\n        \"form\": \"intakt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"intakterer,intakte,intakteres,intakteren,intakterem,intaktere,intaktestes,intaktester,intaktem,intakten,intakter,intaktes,intakteste,intaktestem,intaktesten\"\n    },\n    \"integer\": {\n        \"form\": \"integer\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"integerste,integrerem,integerstem,integre,integreren,integersten,integrerer,integreres,integerster,integerstes,integrer,integres,integrem,integren,integrere\"\n    },\n    \"integrieren\": {\n        \"form\": \"integrieren\",\n        \"polarity\": \"0.0908\",\n        \"pos\": \"VB\",\n        \"sense\": \"integrierten,integriertest,integriert,integrierte,integriertet,integrierst,integrieret,integrierest,integriere\"\n    },\n    \"intelligent\": {\n        \"form\": \"intelligent\",\n        \"polarity\": \"0.1238\",\n        \"pos\": \"JJ\",\n        \"sense\": \"intelligenteren,intelligenterem,intelligentestem,intelligentestes,intelligentester,intelligentem,intelligentesten,intelligenten,intelligentere,intelligenter,intelligentes,intelligente,intelligenterer,intelligenteres,intelligenteste\"\n    },\n    \"intensiv\": {\n        \"form\": \"intensiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"intensive,intensiverer,intensivere,intensiveres,intensivste,intensivsten,intensivstem,intensivster,intensivstes,intensiverem,intensives,intensiver,intensiveren,intensiven,intensivem\"\n    },\n    \"interessant\": {\n        \"form\": \"interessant\",\n        \"polarity\": \"0.2488\",\n        \"pos\": \"JJ\",\n        \"sense\": \"interessantestes,interessantester,interessanteste,interessantere,interessantestem,interessantesten,interessanterem,interessantes,interessanter,interessanteren,interessante,interessanten,interessanteres,interessantem,interessanterer\"\n    },\n    \"interessieren\": {\n        \"form\": \"interessieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"interessierest,interessiertet,interessiert,interessiere,interessierst,interessierte,interessiertest,interessierten,interessieret\"\n    },\n    \"interessiert\": {\n        \"form\": \"interessiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"interessierteren,interessierterem,interessierteste,interessiertes,interessierter,interessierte,interessierten,interessiertester,interessiertestes,interessiertem,interessiertesten,interessierteres,interessierterer,interessiertestem,interessiertere\"\n    },\n    \"investieren\": {\n        \"form\": \"investieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"investierte,investierest,investierten,investierst,investieret,investiertest,investiertet,investiere,investiert\"\n    },\n    \"jubeln\": {\n        \"form\": \"jubeln\",\n        \"polarity\": \"0.0756\",\n        \"pos\": \"VB\",\n        \"sense\": \"jubele,juble,jubelst,jubelt,jublest,jublet,jubelte,jubeltest,jubelten,jubeltet,gejubelt\"\n    },\n    \"kinderleicht\": {\n        \"form\": \"kinderleicht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kinderleichte,kinderleichtem,kinderleichten,kinderleichter,kinderleichtes\"\n    },\n    \"klaglos\": {\n        \"form\": \"klaglos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"klaglose,klaglosem,klaglosen,klagloser,klagloses\"\n    },\n    \"klar\": {\n        \"form\": \"klar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"klaren,klareres,klarem,klarerer,klarer,klareren,klarstes,klarerem,klarster,klarere,klarste,klarstem,klarsten,klares,klare\"\n    },\n    \"klasse\": {\n        \"form\": \"klasse\",\n        \"polarity\": \"0.3474\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"klassisch\": {\n        \"form\": \"klassisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"klassisches,klassische,klassischer,klassischste,klassischen,klassischerer,klassischeres,klassischerem,klassischere,klassischeren,klassischem,klassischstem,klassischsten,klassischstes,klassischster\"\n    },\n    \"klettern\": {\n        \"form\": \"klettern\",\n        \"polarity\": \"0.457\",\n        \"pos\": \"VB\",\n        \"sense\": \"kletteren,kletterst,kletterten,klettertest,geklettert,klettert,klettere,klettertet,kletterte\"\n    },\n    \"klimatisiert\": {\n        \"form\": \"klimatisiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"klimatisierte,klimatisiertem,klimatisierten,klimatisierter,klimatisiertes\"\n    },\n    \"klug\": {\n        \"form\": \"klug\",\n        \"polarity\": \"0.3532\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"klären\": {\n        \"form\": \"klären\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"klärtest,klärest,geklärt,klärten,klärt,klärst,kläre,kläret,klärtet,klärte\"\n    },\n    \"knorke\": {\n        \"form\": \"knorke\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"knorkem,knorken,knorker,knorkes\"\n    },\n    \"knuddelig\": {\n        \"form\": \"knuddelig\",\n        \"polarity\": \"0.2086\",\n        \"pos\": \"JJ\",\n        \"sense\": \"knuddelige,knuddeligem,knuddeligen,knuddeliger,knuddeliges,knuddeligere,knuddeligerem,knuddeligeren,knuddeligerer,knuddeligeres,knuddeligste,knuddeligstem,knuddeligsten,knuddeligster,knuddeligstes\"\n    },\n    \"knuffig\": {\n        \"form\": \"knuffig\",\n        \"polarity\": \"0.0974\",\n        \"pos\": \"JJ\",\n        \"sense\": \"knuffige,knuffigem,knuffigen,knuffiger,knuffiges,knuffigere,knuffigerem,knuffigeren,knuffigerer,knuffigeres,knuffigste,knuffigstem,knuffigsten,knuffigster,knuffigstes\"\n    },\n    \"kollegial\": {\n        \"form\": \"kollegial\",\n        \"polarity\": \"0.0809\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kollegialer,kollegiales,kollegialere,kollegialen,kollegialem,kollegialeren,kollegialsten,kollegialstes,kollegialerem,kollegialster,kollegialste,kollegiale,kollegialeres,kollegialstem,kollegialerer\"\n    },\n    \"komfortabel\": {\n        \"form\": \"komfortabel\",\n        \"polarity\": \"0.08\",\n        \"pos\": \"JJ\",\n        \"sense\": \"komfortabler,komfortables,komfortabelstes,komfortable,komfortabelster,komfortablem,komfortablen,komfortabelsten,komfortabelstem,komfortablerem,komfortableren,komfortablerer,komfortabelste,komfortableres,komfortablere\"\n    },\n    \"kommod\": {\n        \"form\": \"kommod\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kommodestem,kommodesten,kommoderem,kommoderen,kommodestes,kommodester,kommodere,kommodes,kommoder,kommoderes,kommodeste,kommoderer,kommode,kommoden,kommodem\"\n    },\n    \"kommunikativ\": {\n        \"form\": \"kommunikativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kommunikativerer,kommunikativste,kommunikativeres,kommunikativeren,kommunikativerem,kommunikativster,kommunikativstes,kommunikativen,kommunikativsten,kommunikativstem,kommunikatives,kommunikative,kommunikativer,kommunikativere,kommunikativem\"\n    },\n    \"kompatibel\": {\n        \"form\": \"kompatibel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kompatibelstem,kompatibelsten,kompatibelster,kompatibelstes,kompatiblerer,kompatibleres,kompatibelste,kompatiblem,kompatiblen,kompatibles,kompatiblerem,kompatibler,kompatibleren,kompatiblere,kompatible\"\n    },\n    \"kompensieren\": {\n        \"form\": \"kompensieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"kompensierte,kompensierest,kompensierst,kompensierten,kompensiertest,kompensiere,kompensiert,kompensiertet,kompensieret\"\n    },\n    \"kompetent\": {\n        \"form\": \"kompetent\",\n        \"polarity\": \"0.0789\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kompetentesten,kompetentestem,kompetentestes,kompetentester,kompetentere,kompetenten,kompetenteres,kompetentem,kompetenterer,kompetentes,kompetenter,kompetente,kompetenteste,kompetenteren,kompetenterem\"\n    },\n    \"komplett\": {\n        \"form\": \"komplett\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"komplettester,kompletteste,komplettestes,kompletter,komplettes,komplettem,kompletten,kompletteres,kompletterer,komplette,komplettesten,kompletterem,komplettere,komplettestem,kompletteren\"\n    },\n    \"konfliktfrei\": {\n        \"form\": \"konfliktfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konfliktfreieres,konfliktfreies,konfliktfreiste,konfliktfreie,konfliktfreierer,konfliktfreieren,konfliktfreierem,konfliktfreiere,konfliktfreistem,konfliktfreister,konfliktfreisten,konfliktfreistes,konfliktfreien,konfliktfreiem,konfliktfreier\"\n    },\n    \"kongenial\": {\n        \"form\": \"kongenial\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kongenialste,kongenialeren,kongenialere,kongenialstem,kongenialerem,kongenialster,kongenialstes,kongenialsten,kongeniale,kongenialerer,kongenialeres,kongenialen,kongenialem,kongeniales,kongenialer\"\n    },\n    \"konkret\": {\n        \"form\": \"konkret\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konkreteres,konkretere,konkreterer,konkreteste,konkreteren,konkreterem,konkretestem,konkretesten,konkrete,konkretester,konkretestes,konkretes,konkreter,konkreten,konkretem\"\n    },\n    \"konkurrenzfähig\": {\n        \"form\": \"konkurrenzfähig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"konsequent\": {\n        \"form\": \"konsequent\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konsequenterem,konsequenteren,konsequentes,konsequenter,konsequenterer,konsequenteste,konsequentestes,konsequenteres,konsequentester,konsequentem,konsequentesten,konsequentestem,konsequente,konsequenten,konsequentere\"\n    },\n    \"konsistent\": {\n        \"form\": \"konsistent\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konsistenterem,konsistentestes,konsistentester,konsistenten,konsistentem,konsistenteste,konsistenter,konsistenteren,konsistentes,konsistente,konsistenteres,konsistenterer,konsistentesten,konsistentere,konsistentestem\"\n    },\n    \"konsolidieren\": {\n        \"form\": \"konsolidieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"konsolidierte,konsolidierest,konsolidieret,konsolidiert,konsolidiertest,konsolidiere,konsolidiertet,konsolidierst,konsolidierten\"\n    },\n    \"konstant\": {\n        \"form\": \"konstant\",\n        \"polarity\": \"0.087\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konstantester,konstantestem,konstantesten,konstanteste,konstantestes,konstantes,konstanterer,konstanter,konstanteres,konstantere,konstanterem,konstanteren,konstante,konstantem,konstanten\"\n    },\n    \"konstruktiv\": {\n        \"form\": \"konstruktiv\",\n        \"polarity\": \"0.0894\",\n        \"pos\": \"JJ\",\n        \"sense\": \"konstruktivsten,konstruktives,konstruktiver,konstruktivstem,konstruktive,konstruktivere,konstruktivstes,konstruktiveres,konstruktivster,konstruktiverer,konstruktiven,konstruktivem,konstruktiveren,konstruktiverem,konstruktivste\"\n    },\n    \"konsultieren\": {\n        \"form\": \"konsultieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"konsultierest,konsultierten,konsultierst,konsultiertet,konsultierte,konsultieret,konsultiertest,konsultiere,konsultiert\"\n    },\n    \"kontinuierlich\": {\n        \"form\": \"kontinuierlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kontinuierliches,kontinuierlichstes,kontinuierlichster,kontinuierlichen,kontinuierlicheres,kontinuierlichsten,kontinuierlichem,kontinuierlicherer,kontinuierlichstem,kontinuierlicher,kontinuierlicheren,kontinuierlicherem,kontinuierlichste,kontinuierlichere,kontinuierliche\"\n    },\n    \"konzertiert\": {\n        \"form\": \"konzertiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"konzertierte,konzertiertem,konzertierten,konzertierter,konzertiertes,konzertiertere,konzertierterem,konzertierteren,konzertierterer,konzertierteres,konzertierteste,konzertiertestem,konzertiertesten,konzertiertester,konzertiertestes\"\n    },\n    \"kooperativ\": {\n        \"form\": \"kooperativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kooperativere,kooperativeren,kooperativstes,kooperativeres,kooperativster,kooperativerer,kooperative,kooperatives,kooperativerem,kooperativsten,kooperativer,kooperativstem,kooperativem,kooperativen,kooperativste\"\n    },\n    \"kooperieren\": {\n        \"form\": \"kooperieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"kooperiere,kooperierst,kooperiert,kooperierest,kooperieret,kooperierte,kooperiertest,kopperierten,kooperiertet\"\n    },\n    \"koordinieren\": {\n        \"form\": \"koordinieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"koordiniere,koordinierst,koordiniert,koordinierest,koordinieret,koordinierte,koordiniertest,koordinierten,koordiniertet\"\n    },\n    \"koordiniert\": {\n        \"form\": \"koordiniert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"koordinierte,koordiniertem,koordinierten,koordinierter,koordiniertes\"\n    },\n    \"korrekt\": {\n        \"form\": \"korrekt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"korrektestem,korrektesten,korrekteste,korrekteren,korrektestes,korrekteres,korrekterer,korrektester,korrektes,korrektere,korrektem,korrekterem,korrekte,korrekten,korrekter\"\n    },\n    \"kostbar\": {\n        \"form\": \"kostbar\",\n        \"polarity\": \"0.0777\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kostbare,kostbarere,kostbarstes,kostbarer,kostbareres,kostbarster,kostbarerer,kostbarsten,kostbares,kostbarste,kostbarerem,kostbarstem,kostbaren,kostbarem,kostbareren\"\n    },\n    \"kostengünstig\": {\n        \"form\": \"kostengünstig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kostenlos\": {\n        \"form\": \"kostenlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kostenlose,kostenlosem,kostenlosen,kostenloser,kostenloses\"\n    },\n    \"kraftvoll\": {\n        \"form\": \"kraftvoll\",\n        \"polarity\": \"0.2214\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kraftvollstes,kraftvollste,kraftvolleren,kraftvollerem,kraftvollster,kraftvollere,kraftvollerer,kraftvollem,kraftvolle,kraftvollen,kraftvollsten,kraftvollstem,kraftvoller,kraftvolleres,kraftvolles\"\n    },\n    \"kreativ\": {\n        \"form\": \"kreativ\",\n        \"polarity\": \"0.5865\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kreative,kreativste,kreatives,kreativstem,kreativer,kreativeres,kreativerer,kreativster,kreativen,kreativstes,kreativem,kreativeren,kreativere,kreativsten,kreativerem\"\n    },\n    \"kräftig\": {\n        \"form\": \"kräftig\",\n        \"polarity\": \"0.2408\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"kulant\": {\n        \"form\": \"kulant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kulanten,kulantestem,kulantesten,kulantem,kulantere,kulanteste,kulantestes,kulante,kulantester,kulantes,kulanter,kulanterem,kulanteren,kulanteres,kulanterer\"\n    },\n    \"kultiviert\": {\n        \"form\": \"kultiviert\",\n        \"polarity\": \"0.0731\",\n        \"pos\": \"VB\",\n        \"sense\": \"kultivierterer,kultiviertem,kultivierteren,kultivierterem,kultivierten,kultiviertes,kultivierter,kultivierteste,kultivierteres,kultiviertesten,kultiviertestem,kultiviertestes,kultiviertester,kultivierte,kultiviertere\"\n    },\n    \"kunstreich\": {\n        \"form\": \"kunstreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kunstreiches,kunstreichstes,kunstreichster,kunstreicher,kunstreichsten,kunstreicherem,kunstreichste,kunstreiche,kunstreichere,kunstreicheren,kunstreicherer,kunstreicheres,kunstreichem,kunstreichen,kunstreichstem\"\n    },\n    \"kunstvoll\": {\n        \"form\": \"kunstvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"kunstvollere,kunstvolleres,kunstvollerer,kunstvolleren,kunstvollerem,kunstvoller,kunstvollste,kunstvolles,kunstvollstem,kunstvollsten,kunstvolle,kunstvollster,kunstvollstes,kunstvollen,kunstvollem\"\n    },\n    \"kurieren\": {\n        \"form\": \"kurieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"kurierte,kuriertet,kuriertest,kurierst,kuriert,kurieret,kuriere,kurierest,kurierten\"\n    },\n    \"kümmern\": {\n        \"form\": \"kümmern\",\n        \"polarity\": \"0.2016\",\n        \"pos\": \"VB\",\n        \"sense\": \"kümmert,kümmere,kümmerte,gekümmert,kümmertet,kümmerst,kümmertest,kümmeren,kümmerten\"\n    },\n    \"künstlerisch\": {\n        \"form\": \"künstlerisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lachen\": {\n        \"form\": \"lachen\",\n        \"polarity\": \"0.0135\",\n        \"pos\": \"VB\",\n        \"sense\": \"lachte,lachten,gelacht,lachtest,lachet,lachest,lachtet,lacht,lache,lachst\"\n    },\n    \"langlebig\": {\n        \"form\": \"langlebig\",\n        \"polarity\": \"0.2026\",\n        \"pos\": \"JJ\",\n        \"sense\": \"langlebigeres,langlebigerer,langlebige,langlebigem,langlebigen,langlebigste,langlebigstes,langlebiger,langlebiges,langlebigster,langlebigeren,langlebigere,langlebigerem,langlebigsten,langlebigstem\"\n    },\n    \"lautstark\": {\n        \"form\": \"lautstark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lebendig\": {\n        \"form\": \"lebendig\",\n        \"polarity\": \"0.0947\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lebendigstes,lebendigster,lebendiger,lebendiges,lebendigem,lebendigsten,lebendigen,lebendigstem,lebendige,lebendigste,lebendigere,lebendigerem,lebendigeren,lebendigerer,lebendigeres\"\n    },\n    \"lebensfähig\": {\n        \"form\": \"lebensfähig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lebhaft\": {\n        \"form\": \"lebhaft\",\n        \"polarity\": \"0.2146\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lebhaftere,lebhaften,lebhaftestes,lebhaftem,lebhaftester,lebhaftes,lebhafte,lebhafter,lebhafterem,lebhafteren,lebhaftestem,lebhaftesten,lebhafteste,lebhafterer,lebhafteres\"\n    },\n    \"legal\": {\n        \"form\": \"legal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"legalste,legalstes,legale,legalerem,legaleren,legalsten,legalstem,legales,legaler,legalster,legalem,legalere,legalen,legalerer,legaleres\"\n    },\n    \"legendär\": {\n        \"form\": \"legendär\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"legitim\": {\n        \"form\": \"legitim\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"legitimsten,legitimstem,legitime,legitimster,legitimstes,legitimem,legitimen,legitimeres,legitimste,legitimeren,legitimerem,legitimere,legitimerer,legitimer,legitimes\"\n    },\n    \"leicht\": {\n        \"form\": \"leicht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leichte,leichteste,leichteren,leichterem,leichtere,leichterer,leichteres,leichtestem,leichtesten,leichten,leichtester,leichtes,leichtestes,leichter,leichtem\"\n    },\n    \"leidenschaftlich\": {\n        \"form\": \"leidenschaftlich\",\n        \"polarity\": \"0.1988\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leidenschaftlicherem,leidenschaftlichem,leidenschaftlichere,leidenschaftlichen,leidenschaftlicheren,leidenschaftliche,leidenschaftlichstem,leidenschaftlichste,leidenschaftlichsten,leidenschaftlicheres,leidenschaftlicherer,leidenschaftliches,leidenschaftlicher,leidenschaftlichster,leidenschaftlichstes\"\n    },\n    \"leistungsfähig\": {\n        \"form\": \"leistungsfähig\",\n        \"polarity\": \"0.3222\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"leistungsstark\": {\n        \"form\": \"leistungsstark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lernen\": {\n        \"form\": \"lernen\",\n        \"polarity\": \"0.2492\",\n        \"pos\": \"VB\",\n        \"sense\": \"lerntest,lernest,lernten,lernt,lerntet,lernte,gelernt,lernst,lernet,lerne\"\n    },\n    \"leuchtend\": {\n        \"form\": \"leuchtend\",\n        \"polarity\": \"0.0821\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leuchtende,leuchtendem,leuchtenden,leuchtender,leuchtendes,leuchtendere,leuchtenderem,leuchtenderen,leuchtenderer,leuchtenderes,leuchtendste,leuchtendstem,leuchtendsten,leuchtendster,leuchtendstes\"\n    },\n    \"leutselig\": {\n        \"form\": \"leutselig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"leutseligere,leutseligster,leutseligstes,leutseligsten,leutseligstem,leutseligste,leutseligeren,leutseligerem,leutseligeres,leutseligerer,leutselige,leutseligem,leutseligen,leutseliges,leutseliger\"\n    },\n    \"liberal\": {\n        \"form\": \"liberal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"liberaleres,liberale,liberalstem,liberalsten,liberaleren,liberalster,liberalerem,liberalstes,liberalerer,liberaler,liberalere,liberales,liberalste,liberalen,liberalem\"\n    },\n    \"lieb\": {\n        \"form\": \"lieb\",\n        \"polarity\": \"0.1131\",\n        \"pos\": \"JJ\",\n        \"sense\": \"liebster,liebstes,liebes,liebere,lieben,liebem,lieberen,liebstem,lieber,lieberes,lieberer,liebsten,liebe,lieberem,liebste\"\n    },\n    \"liebenswert\": {\n        \"form\": \"liebenswert\",\n        \"polarity\": \"0.2077\",\n        \"pos\": \"JJ\",\n        \"sense\": \"liebenswertesten,liebenswertestem,liebenswerteres,liebenswerterer,liebenswertem,liebenswerterem,liebenswerten,liebenswerteren,liebenswerter,liebenswertere,liebenswertes,liebenswerteste,liebenswerte,liebenswertester,liebenswertestes\"\n    },\n    \"liebenswürdig\": {\n        \"form\": \"liebenswürdig\",\n        \"polarity\": \"0.2001\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"liebevoll\": {\n        \"form\": \"liebevoll\",\n        \"polarity\": \"0.4657\",\n        \"pos\": \"JJ\",\n        \"sense\": \"liebevolleren,liebevollstem,liebevollsten,liebevolle,liebevollerem,liebevollerer,liebevolleres,liebevollere,liebevollste,liebevollen,liebevollem,liebevolles,liebevoller,liebevollstes,liebevollster\"\n    },\n    \"lindern\": {\n        \"form\": \"lindern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"lindertest,linderten,gelindert,linderte,linderen,linderst,lindert,lindere,lindertet\"\n    },\n    \"loben\": {\n        \"form\": \"loben\",\n        \"polarity\": \"0.4445\",\n        \"pos\": \"VB\",\n        \"sense\": \"lobten,lobtest,lobtet,gelobt,lobt,lobest,lobe,lobte,lobet,lobst\"\n    },\n    \"lobenswert\": {\n        \"form\": \"lobenswert\",\n        \"polarity\": \"0.0821\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lobenswerte,lobenswerteres,lobenswertem,lobenswertere,lobenswerterer,lobenswerten,lobenswerterem,lobenswerteren,lobenswerter,lobenswertes,lobenswerteste,lobenswertesten,lobenswertestem,lobenswertester,lobenswertestes\"\n    },\n    \"locker\": {\n        \"form\": \"locker\",\n        \"polarity\": \"0.2381\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lockreren,lockererer,lockrerem,lockereres,lockere,lockrer,lockreres,lockrere,lockersten,lockerere,lockeres,lockerer,lockerstem,lockrerer,lockerste,lockerstes,lockerster,lockereren,lockeren,lockererem,lockerem\"\n    },\n    \"logisch\": {\n        \"form\": \"logisch\",\n        \"polarity\": \"0.0936\",\n        \"pos\": \"JJ\",\n        \"sense\": \"logischstes,logischster,logischere,logischen,logischste,logischem,logisches,logischer,logischerer,logischeres,logischsten,logischerem,logische,logischeren,logischstem\"\n    },\n    \"lohnen\": {\n        \"form\": \"lohnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"lohntest,lohnet,gelohnt,lohntet,lohnten,lohnt,lohne,lohnst,lohnest,lohnte\"\n    },\n    \"lohnend\": {\n        \"form\": \"lohnend\",\n        \"polarity\": \"0.1875\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lohnendem,lohnendere,lohnenderes,lohnenden,lohnenderer,lohnendste,lohnender,lohnenderen,lohnende,lohnendstem,lohnenderem,lohnendsten,lohnendstes,lohnendster,lohnendes\"\n    },\n    \"loyal\": {\n        \"form\": \"loyal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"loyalste,loyale,loyaleren,loyalerem,loyalerer,loyalstes,loyaleres,loyalster,loyalere,loyalstem,loyalsten,loyalen,loyalem,loyaler,loyales\"\n    },\n    \"lukrativ\": {\n        \"form\": \"lukrativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"lukrativere,lukrativste,lukrativerer,lukrativeres,lukrativerem,lukrativeren,lukrative,lukratives,lukrativstem,lukrativsten,lukrativer,lukrativster,lukrativem,lukrativstes,lukrativen\"\n    },\n    \"luxuriös\": {\n        \"form\": \"luxuriös\",\n        \"polarity\": \"0.0835\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lächeln\": {\n        \"form\": \"lächeln\",\n        \"polarity\": \"0.3399\",\n        \"pos\": \"VB\",\n        \"sense\": \"lächele,lächle,lächelst,lächelt,lächlest,lächlet,lächelte,lächeltest,lächelten,lächeltet,gelächelt\"\n    },\n    \"lässig\": {\n        \"form\": \"lässig\",\n        \"polarity\": \"0.2095\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"löblich\": {\n        \"form\": \"löblich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"lösen\": {\n        \"form\": \"lösen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"löstet,lösest,gelöst,löset,löstest,löste,löst,lösten,löse\"\n    },\n    \"lückenlos\": {\n        \"form\": \"lückenlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"magisch\": {\n        \"form\": \"magisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"magischeres,magischerer,magischeren,magischstes,magischerem,magischster,magisches,magischere,magische,magischstem,magischer,magischsten,magischem,magischen,magischste\"\n    },\n    \"majestätisch\": {\n        \"form\": \"majestätisch\",\n        \"polarity\": \"0.073\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"makellos\": {\n        \"form\": \"makellos\",\n        \"polarity\": \"0.2\",\n        \"pos\": \"JJ\",\n        \"sense\": \"makelloses,makelloseren,makelloseres,makelloserer,makellosesten,makellosestem,makelloserem,makelloser,makelloseste,makellosester,makellosestes,makellosem,makellosen,makellose,makellosere\"\n    },\n    \"malerisch\": {\n        \"form\": \"malerisch\",\n        \"polarity\": \"0.0753\",\n        \"pos\": \"JJ\",\n        \"sense\": \"malerischster,malerischstes,malerischerem,malerischem,malerischeren,malerischen,malerischerer,malerischste,malerischeres,malerischere,malerische,malerischer,malerisches,malerischstem,malerischsten\"\n    },\n    \"markant\": {\n        \"form\": \"markant\",\n        \"polarity\": \"0.1935\",\n        \"pos\": \"JJ\",\n        \"sense\": \"markantere,markanteres,markanterer,markante,markanteren,markanter,markanterem,markanteste,markantestes,markantester,markantem,markanten,markantesten,markantestem,markantes\"\n    },\n    \"massiv\": {\n        \"form\": \"massiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"massivstes,massiven,massivem,massiver,massives,massive,massiverem,massiveren,massivsten,massivstem,massiverer,massivster,massiveres,massivere,massivste\"\n    },\n    \"maximal\": {\n        \"form\": \"maximal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"maximalem,maximalen,maximalste,maximaleres,maximalerer,maximalstem,maximalster,maximalsten,maximalstes,maximaleren,maximalerem,maximale,maximales,maximaler,maximalere\"\n    },\n    \"maximieren\": {\n        \"form\": \"maximieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"maximierten,maximierest,maximierte,maximierst,maximieret,maximiert,maximiere,maximiertet,maximiertest\"\n    },\n    \"meisterhaft\": {\n        \"form\": \"meisterhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"meisterhaftes,meisterhafter,meisterhaftestes,meisterhafterem,meisterhaftester,meisterhaftestem,meisterhaftesten,meisterhafteren,meisterhafterer,meisterhafteres,meisterhaftem,meisterhaften,meisterhafte,meisterhafteste,meisterhaftere\"\n    },\n    \"meisterlich\": {\n        \"form\": \"meisterlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"meisterlichem,meisterlichen,meisterlicher,meisterliches,meisterlichstes,meisterliche,meisterlichster,meisterlichstem,meisterlichsten,meisterlicherem,meisterlicheren,meisterlichere,meisterlichste,meisterlicherer,meisterlicheres\"\n    },\n    \"menschenwürdig\": {\n        \"form\": \"menschenwürdig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"menschlich\": {\n        \"form\": \"menschlich\",\n        \"polarity\": \"0.3324\",\n        \"pos\": \"JJ\",\n        \"sense\": \"menschlichstes,menschlichster,menschlichste,menschlichere,menschlicher,menschliches,menschlichem,menschlichen,menschlichsten,menschlicherer,menschlicheres,menschliche,menschlichstem,menschlicheren,menschlicherem\"\n    },\n    \"messbar\": {\n        \"form\": \"messbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"messbare,messbarem,messbaren,messbarer,messbares,messbarere,messbarerem,messbareren,messbarerer,messbareres,messbarste,messbarstem,messbarsten,messbarster,messbarstes\"\n    },\n    \"mild\": {\n        \"form\": \"mild\",\n        \"polarity\": \"0.3303\",\n        \"pos\": \"JJ\",\n        \"sense\": \"milde,mildem,milden,milder,mildes,mildere,milderem,milderen,milderer,milderes,mildeste,mildestem,mildesten,mildester,mildestes\"\n    },\n    \"miteinander\": {\n        \"form\": \"miteinander\",\n        \"polarity\": \"0.3697\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"mitfühlen\": {\n        \"form\": \"mitfühlen\",\n        \"polarity\": \"0.0922\",\n        \"pos\": \"VB\",\n        \"sense\": \"mitfühltest,mitgefühlt,mitfühlt,mitfühlet,mitfühlten,mitfühle,mitfühlest,mitfühltet,mitfühlst,mitfühlte\"\n    },\n    \"mitmenschlich\": {\n        \"form\": \"mitmenschlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mitmenschlichere,mitmenschliches,mitmenschlichsten,mitmenschlichstem,mitmenschliche,mitmenschlicher,mitmenschlichste,mitmenschlichstes,mitmenschlichster,mitmenschlichem,mitmenschlichen,mitmenschlicherem,mitmenschlicheren,mitmenschlicheres,mitmenschlicherer\"\n    },\n    \"mobil\": {\n        \"form\": \"mobil\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mobilerer,mobilste,mobilsten,mobileres,mobilstem,mobilerem,mobilere,mobileren,mobilen,mobilem,mobiler,mobiles,mobilstes,mobilster,mobile\"\n    },\n    \"mobilisieren\": {\n        \"form\": \"mobilisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"mobilisierst,mobilisierte,mobilisierest,mobilisierten,mobilisiertet,mobilisiertest,mobilisieret,mobilisiere,mobilisiert\"\n    },\n    \"modern\": {\n        \"form\": \"modern\",\n        \"polarity\": \"0.2287\",\n        \"pos\": \"JJ\",\n        \"sense\": \"moderneren,modernerem,modernem,modernes,moderner,modernerer,modernen,moderne,moderneres,modernstes,modernste,modernster,modernstem,modernsten,modernere\"\n    },\n    \"modernisieren\": {\n        \"form\": \"modernisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"modernisiere,modernisierst,modernisiert,modernisierest,modernisieret,modernisierte,modernisiertest,modernisierten,modernisiertet\"\n    },\n    \"mondän\": {\n        \"form\": \"mondän\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"monumental\": {\n        \"form\": \"monumental\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"monumentalere,monumentalerem,monumentaleres,monumentalstem,monumentalerer,monumentaler,monumentalste,monumentaleren,monumentalem,monumentalsten,monumentalen,monumentalstes,monumentalster,monumentales,monumentale\"\n    },\n    \"moralisch\": {\n        \"form\": \"moralisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"moralischstes,moralischster,moralischste,moralischere,moralischstem,moralischerem,moralischsten,moralischeres,moralischerer,moralisches,moralischeren,moralischen,moralischem,moralische,moralischer\"\n    },\n    \"motivieren\": {\n        \"form\": \"motivieren\",\n        \"polarity\": \"0.2248\",\n        \"pos\": \"VB\",\n        \"sense\": \"motiviere,motivierst,motiviert,motivierest,motivieret,motivierte,motiviertest,motivierten,motiviertet\"\n    },\n    \"motiviert\": {\n        \"form\": \"motiviert\",\n        \"polarity\": \"0.3541\",\n        \"pos\": \"JJ\",\n        \"sense\": \"motivierteres,motiviertestes,motivierterem,motiviertester,motivierteren,motivierte,motiviertesten,motivierterer,motiviertestem,motiviertes,motivierter,motivierteste,motiviertere,motiviertem,motivierten\"\n    },\n    \"mustergültig\": {\n        \"form\": \"mustergültig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"mutig\": {\n        \"form\": \"mutig\",\n        \"polarity\": \"0.3435\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mutige,mutiges,mutigstem,mutigsten,mutigere,mutigster,mutigen,mutigstes,mutigem,mutigerer,mutigeres,mutigste,mutiger,mutigerem,mutigeren\"\n    },\n    \"mächtig\": {\n        \"form\": \"mächtig\",\n        \"polarity\": \"0.2277\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"mögen\": {\n        \"form\": \"mögen\",\n        \"polarity\": \"0.345\",\n        \"pos\": \"VB\",\n        \"sense\": \"mag,magst,mögt,möge,mögest,möget,mochte,mochtest,mochten,mochtet,möchte,möchtest,möchten,möchtet,gemocht\"\n    },\n    \"möglich\": {\n        \"form\": \"möglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"mögliche,möglichem,möglichen,möglicher,mögliches\"\n    },\n    \"mühelos\": {\n        \"form\": \"mühelos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"nachahmenswert\": {\n        \"form\": \"nachahmenswert\",\n        \"polarity\": \"0.0818\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nachahmenswerteren,nachahmenswertesten,nachahmenswerterem,nachahmenswertestem,nachahmenswertem,nachahmenswerterer,nachahmenswerten,nachahmenswerteres,nachahmenswertester,nachahmenswerte,nachahmenswertestes,nachahmenswerter,nachahmenswertere,nachahmenswertes,nachahmenswerteste\"\n    },\n    \"nachhaltig\": {\n        \"form\": \"nachhaltig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nachhaltigstem,nachhaltigsten,nachhaltigstes,nachhaltigster,nachhaltigeren,nachhaltigere,nachhaltigerem,nachhaltige,nachhaltiges,nachhaltiger,nachhaltigen,nachhaltigem,nachhaltigerer,nachhaltigste,nachhaltigeres\"\n    },\n    \"nah\": {\n        \"form\": \"nah\",\n        \"polarity\": \"0.2267\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"namhaft\": {\n        \"form\": \"namhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"namhaftesten,namhaftestem,namhafte,namhafteste,namhaftere,namhafteres,namhaftestes,namhafterer,namhaftester,namhafteren,namhaften,namhafterem,namhaftem,namhaftes,namhafter\"\n    },\n    \"nennenswert\": {\n        \"form\": \"nennenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nennenswerteres,nennenswerterer,nennenswerterem,nennenswertere,nennenswerteren,nennenswerte,nennenswertestem,nennenswertes,nennenswerter,nennenswertesten,nennenswerten,nennenswertestes,nennenswertester,nennenswertem,nennenswerteste\"\n    },\n    \"nett\": {\n        \"form\": \"nett\",\n        \"polarity\": \"0.1405\",\n        \"pos\": \"JJ\",\n        \"sense\": \"netteren,netterem,nette,netten,netteste,netter,nettes,nettere,nettestem,nettem,nettestes,nettester,nettesten,netterer,netteres\"\n    },\n    \"neu\": {\n        \"form\": \"neu\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"neuem,neuen,neustem,neusten,neuer,neueste,neustes,neuster,neues,neuerem,neue,neueren,neuester,neueres,neuste,neuestes,neuere,neuerer,neuesten,neuestem\"\n    },\n    \"niedlich\": {\n        \"form\": \"niedlich\",\n        \"polarity\": \"0.0987\",\n        \"pos\": \"JJ\",\n        \"sense\": \"niedlicherer,niedlicheres,niedlichsten,niedlicherem,niedlicheren,niedlichstem,niedlichster,niedlichstes,niedlichste,niedliche,niedlicher,niedliches,niedlichen,niedlichem,niedlichere\"\n    },\n    \"nutzbringend\": {\n        \"form\": \"nutzbringend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"nutzbringenderes,nutzbringenderer,nutzbringendem,nutzbringenden,nutzbringendstem,nutzbringender,nutzbringendsten,nutzbringendstes,nutzbringendere,nutzbringendster,nutzbringendes,nutzbringendste,nutzbringenderem,nutzbringende,nutzbringenderen\"\n    },\n    \"nähren\": {\n        \"form\": \"nähren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"nährtest,nährst,nährte,nähret,nährten,nährt,nähre,nährtet,nährest,genährt\"\n    },\n    \"nützen\": {\n        \"form\": \"nützen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"nütztest,nütze,nützet,nützt,nützest,nütztet,nützten,nützte,genützt\"\n    },\n    \"nützlich\": {\n        \"form\": \"nützlich\",\n        \"polarity\": \"0.2302\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"offensichtlich\": {\n        \"form\": \"offensichtlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"offensichtlichsten,offensichtlichste,offensichtlichstem,offensichtlicherer,offensichtlicheres,offensichtlichen,offensichtliche,offensichtlichem,offensichtlicherem,offensichtlicheren,offensichtlichere,offensichtlicher,offensichtliches,offensichtlichster,offensichtlichstes\"\n    },\n    \"optimal\": {\n        \"form\": \"optimal\",\n        \"polarity\": \"0.2162\",\n        \"pos\": \"JJ\",\n        \"sense\": \"optimale,optimalem,optimalen,optimaler,optimales,optimalere,optimalerem,optimaleren,optimalerer,optimaleres,optimalste,optimalstem,optimalsten,optimalster,optimalstes\"\n    },\n    \"optimistisch\": {\n        \"form\": \"optimistisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"optimistische,optimistischem,optimistischen,optimistischer,optimistisches,optimistischere,optimistischerem,optimistischeren,optimistischerer,optimistischeres,optimistischste,optimistischstem,optimistischsten,optimistischster,optimistischstes\"\n    },\n    \"ordentlich\": {\n        \"form\": \"ordentlich\",\n        \"polarity\": \"0.0073\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ordentlichen,ordentlichem,ordentlicheren,ordentliches,ordentlicher,ordentlicherem,ordentlicheres,ordentlicherer,ordentlichste,ordentliche,ordentlichstes,ordentlichster,ordentlichstem,ordentlichsten,ordentlichere\"\n    },\n    \"ordnungsgemäß\": {\n        \"form\": \"ordnungsgemäß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"original\": {\n        \"form\": \"original\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"originale,originalem,originalen,originaler,originales,originalere,originalerem,originaleren,originalerer,originaleres,originalste,originalstem,originalsten,originalster,originalstes\"\n    },\n    \"packend\": {\n        \"form\": \"packend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"packende,packendem,packenden,packender,packendes,packendere,packenderem,packenderen,packenderer,packenderes,packendste,packendstem,packendsten,packendster,packendstes\"\n    },\n    \"paradiesisch\": {\n        \"form\": \"paradiesisch\",\n        \"polarity\": \"0.2068\",\n        \"pos\": \"JJ\",\n        \"sense\": \"paradiesisches,paradiesischstem,paradiesischerem,paradiesischsten,paradiesischerer,paradiesischeres,paradiesischeren,paradiesische,paradiesischste,paradiesischster,paradiesischen,paradiesischstes,paradiesischem,paradiesischer,paradiesischere\"\n    },\n    \"partnerschaftlich\": {\n        \"form\": \"partnerschaftlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"partnerschaftlichste,partnerschaftlichem,partnerschaftlichen,partnerschaftlicheres,partnerschaftlichstes,partnerschaftlicherer,partnerschaftlicher,partnerschaftliches,partnerschaftlicherem,partnerschaftlicheren,partnerschaftliche,partnerschaftlichster,partnerschaftlichere,partnerschaftlichsten,partnerschaftlichstem\"\n    },\n    \"passend\": {\n        \"form\": \"passend\",\n        \"polarity\": \"0.1201\",\n        \"pos\": \"JJ\",\n        \"sense\": \"passende,passendem,passenden,passender,passendes,passendere,passenderem,passenderen,passenderer,passenderes,passendste,passendstem,passendsten,passendster,passendstes\"\n    },\n    \"perfekt\": {\n        \"form\": \"perfekt\",\n        \"polarity\": \"0.7299\",\n        \"pos\": \"JJ\",\n        \"sense\": \"perfekterer,perfekteren,perfektes,perfekter,perfekterem,perfektester,perfektestes,perfektem,perfekten,perfektesten,perfekteres,perfekteste,perfektestem,perfektere,perfekte\"\n    },\n    \"pflegen\": {\n        \"form\": \"pflegen\",\n        \"polarity\": \"0.2325\",\n        \"pos\": \"VB\",\n        \"sense\": \"pflegst,pflegten,pflegtest,pflegt,pflege,pflegte,pflegest,pfleget,pflegtet,gepflegt\"\n    },\n    \"phantasievoll\": {\n        \"form\": \"phantasievoll\",\n        \"polarity\": \"0.3064\",\n        \"pos\": \"JJ\",\n        \"sense\": \"phantasievollerem,phantasievoller,phantasievollere,phantasievollstem,phantasievolles,phantasievolleren,phantasievollstes,phantasievollster,phantasievollste,phantasievollsten,phantasievollerer,phantasievolleres,phantasievolle,phantasievollen,phantasievollem\"\n    },\n    \"phantastisch\": {\n        \"form\": \"phantastisch\",\n        \"polarity\": \"0.565\",\n        \"pos\": \"JJ\",\n        \"sense\": \"phantastische,phantastischem,phantastischen,phantastischer,phantastisches,phantastischere,phantastischerem,phantastischeren,phantastischerer,phantastischeres,phantastischste,phantastischstem,phantastischsten,phantastischster,phantastischstes\"\n    },\n    \"phänomenal\": {\n        \"form\": \"phänomenal\",\n        \"polarity\": \"0.08\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"planmäßig\": {\n        \"form\": \"planmäßig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"planvoll\": {\n        \"form\": \"planvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"planvollstes,planvollster,planvoller,planvollerem,planvollen,planvollem,planvollste,planvolleren,planvolle,planvolleres,planvollerer,planvollere,planvollstem,planvollsten,planvolles\"\n    },\n    \"plausibel\": {\n        \"form\": \"plausibel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"plausiblere,plausible,plausibelstem,plausibelsten,plausibelste,plausibler,plausibles,plausiblem,plausibelstes,plausiblen,plausiblerem,plausibelster,plausibleren,plausiblerer,plausibleres\"\n    },\n    \"pompös\": {\n        \"form\": \"pompös\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"populär\": {\n        \"form\": \"populär\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"positiv\": {\n        \"form\": \"positiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"positive,positivem,positiven,positiver,positives,positivere,positiverem,positiveren,positiverer,positiveres\"\n    },\n    \"potent\": {\n        \"form\": \"potent\",\n        \"polarity\": \"0.0864\",\n        \"pos\": \"JJ\",\n        \"sense\": \"potenteres,potenterer,potenteste,potentere,potentem,potenten,potentester,potentestes,potente,potentes,potentesten,potenter,potentestem,potenteren,potenterem\"\n    },\n    \"prachtvoll\": {\n        \"form\": \"prachtvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"prachtvollstes,prachtvolles,prachtvoller,prachtvollem,prachtvollen,prachtvolle,prachtvollere,prachtvollstem,prachtvollsten,prachtvolleres,prachtvollerer,prachtvollste,prachtvollster,prachtvollerem,prachtvolleren\"\n    },\n    \"praktikabel\": {\n        \"form\": \"praktikabel\",\n        \"polarity\": \"0.0744\",\n        \"pos\": \"JJ\",\n        \"sense\": \"praktikable,praktikabler,praktikables,praktikableres,praktikablerer,praktikablen,praktikablem,praktikableren,praktikablerem,praktikabelste,praktikabelstem,praktikablere,praktikabelsten,praktikabelstes,praktikabelster\"\n    },\n    \"praktisch\": {\n        \"form\": \"praktisch\",\n        \"polarity\": \"0.1026\",\n        \"pos\": \"JJ\",\n        \"sense\": \"praktische,praktischem,praktischen,praktischer,praktisches,praktischere,praktischste,praktischstem,praktischsten,praktischster,praktischstes\"\n    },\n    \"prall\": {\n        \"form\": \"prall\",\n        \"polarity\": \"0.09\",\n        \"pos\": \"JJ\",\n        \"sense\": \"prallstem,prallsten,prallere,prallster,prallstes,prallem,pralleren,prallerem,prallerer,praller,pralleres,pralles,pralle,prallste,prallen\"\n    },\n    \"preisgünstig\": {\n        \"form\": \"preisgünstig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"prima\": {\n        \"form\": \"prima\",\n        \"polarity\": \"0.5766\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"privilegiert\": {\n        \"form\": \"privilegiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"privilegiertere,privilegierte,privilegiertes,privilegiertestem,privilegiertesten,privilegiertester,privilegierter,privilegierteren,privilegiertestes,privilegierten,privilegierterer,privilegiertem,privilegierteres,privilegierteste,privilegierterem\"\n    },\n    \"problemlos\": {\n        \"form\": \"problemlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"problemlose,problemlosem,problemlosen,problemloser,problemloses,problemlosere,problemloserem,problemloseren,problemloserer,problemloseres,problemloseste,problemlosestem,problemlosesten,problemlosester,problemlosestes\"\n    },\n    \"produktiv\": {\n        \"form\": \"produktiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"produktiveren,produktivster,produktiverem,produktivstes,produktiven,produktiver,produktiveres,produktivem,produktiverer,produktivere,produktives,produktive,produktivste,produktivsten,produktivstem\"\n    },\n    \"professionell\": {\n        \"form\": \"professionell\",\n        \"polarity\": \"0.467\",\n        \"pos\": \"JJ\",\n        \"sense\": \"professionelle,professionellem,professionellen,professioneller,professionelles,professionellere,professionellerem,professionelleren,professionellerer,professionelleres,professionellste,professionellstem,professionellsten,professionellster,professionellstes\"\n    },\n    \"profiliert\": {\n        \"form\": \"profiliert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"profiliertes,profilierter,profilierterem,profiliertem,profilierten,profilierteres,profilierterer,profiliertere,profiliertesten,profilierte,profilierteren,profiliertestem,profiliertestes,profiliertester,profilierteste\"\n    },\n    \"profitabel\": {\n        \"form\": \"profitabel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"profitablere,profitabelste,profitabelstes,profitablerer,profitabelster,profitableres,profitable,profitablen,profitabelsten,profitabelstem,profitabler,profitables,profitablem,profitableren,profitablerem\"\n    },\n    \"profitieren\": {\n        \"form\": \"profitieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"profitiere,profitierst,profitiert,profitierest,profitieret,profitierte,profitiertest,profitierten,profitiertet\"\n    },\n    \"progressiv\": {\n        \"form\": \"progressiv\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"progressive,progressivem,progressiven,progressiver,progressives\"\n    },\n    \"prominent\": {\n        \"form\": \"prominent\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"prominentem,prominenten,prominente,prominentere,prominenteste,prominenteres,prominenterer,prominenteren,prominentestem,prominentesten,prominentestes,prominentester,prominenterem,prominentes,prominenter\"\n    },\n    \"protzig\": {\n        \"form\": \"protzig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"protzige,protzigem,protzigsten,protzigen,protzigstem,protzigste,protzigster,protziges,protziger,protzigstes,protzigeren,protzigerem,protzigerer,protzigeres,protzigere\"\n    },\n    \"prunkvoll\": {\n        \"form\": \"prunkvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"prunkvolles,prunkvollster,prunkvoller,prunkvollstem,prunkvollsten,prunkvollen,prunkvollem,prunkvollste,prunkvolle,prunkvollerer,prunkvollstes,prunkvollere,prunkvolleres,prunkvollerem,prunkvolleren\"\n    },\n    \"prächtig\": {\n        \"form\": \"prächtig\",\n        \"polarity\": \"0.335\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"präzise\": {\n        \"form\": \"präzise\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"puppig\": {\n        \"form\": \"puppig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"puppigen,puppigem,puppigster,puppigstes,puppigere,puppigeren,puppigstem,puppigsten,puppigerem,puppigerer,puppigeres,puppige,puppigste,puppiges,puppiger\"\n    },\n    \"pünktlich\": {\n        \"form\": \"pünktlich\",\n        \"polarity\": \"0.086\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"qualifizieren\": {\n        \"form\": \"qualifizieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"qualifizierte,qualifiziere,qualifiziertet,qualifiziert,qualifiziertest,qualifizierest,qualifizieret,qualifizierten,qualifizierst\"\n    },\n    \"qualifiziert\": {\n        \"form\": \"qualifiziert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"qualifizierte,qualifizierteres,qualifiziertester,qualifizierterer,qualifizierteste,qualifiziertestes,qualifizierter,qualifiziertere,qualifizierteren,qualifizierterem,qualifiziertes,qualifiziertestem,qualifizierten,qualifiziertem,qualifiziertesten\"\n    },\n    \"qualitativ\": {\n        \"form\": \"qualitativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"qualitativsten,qualitativeren,qualitativere,qualitativerer,qualitativstem,qualitativeres,qualitativstes,qualitativster,qualitativste,qualitative,qualitativen,qualitativem,qualitativer,qualitatives,qualitativerem\"\n    },\n    \"qualitätsvoll\": {\n        \"form\": \"qualitätsvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"qualitätsvolle,qualitätsvollem,qualitätsvollen\"\n    },\n    \"quicklebendig\": {\n        \"form\": \"quicklebendig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"quicklebendigerem,quicklebendigeren,quicklebendigstem,quicklebendigsten,quicklebendigerer,quicklebendigster,quicklebendige,quicklebendigeres,quicklebendigstes,quicklebendigste,quicklebendigem,quicklebendigen,quicklebendiges,quicklebendiger,quicklebendigere\"\n    },\n    \"raffiniert\": {\n        \"form\": \"raffiniert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"raffinierter,raffinierten,raffiniertem,raffiniertere,raffiniertester,raffiniertesten,raffiniertestem,raffiniertestes,raffinierterem,raffinierteren,raffinierte,raffinierterer,raffiniertes,raffinierteres,raffinierteste\"\n    },\n    \"rational\": {\n        \"form\": \"rational\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rationale,rationalem,rationalen,rationaler,rationales,rationalere,rationalerem,rationaleren,rationalerer,rationaleres,rationalste,rationalstem,rationalsten,rationalster,rationalstes\"\n    },\n    \"realistisch\": {\n        \"form\": \"realistisch\",\n        \"polarity\": \"0.2089\",\n        \"pos\": \"JJ\",\n        \"sense\": \"realistische,realistischem,realistischen,realistischer,realistisches,realistischere,realistischerem,realistischeren,realistischerer,realistischeres,realistischste,realistischstem,realistischsten,realistischster,realistischstes\"\n    },\n    \"rechtlich\": {\n        \"form\": \"rechtlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rechtliches,rechtlichsten,rechtlicher,rechtlichstes,rechtlichster,rechtlichem,rechtlichen,rechtlichst,rechtlichstem,rechtlichste,rechtlicherem,rechtlicheren,rechtlicherer,rechtliche,rechtlicheres,rechtlichere\"\n    },\n    \"rechtmäßig\": {\n        \"form\": \"rechtmäßig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rechtmäßigem,rechtmäßigen,rechtmäßiger,rechtmäßiges,rechtmäßige\"\n    },\n    \"rechtsgültig\": {\n        \"form\": \"rechtsgültig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rechtsgültigem,rechtsgültigen,rechtsgültige,rechtsgültiger,rechtsgültiges\"\n    },\n    \"rehabilitieren\": {\n        \"form\": \"rehabilitieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"rehabilitiertet,rehabilitiere,rehabilitier,rehabilitiert,rehabilitierest,rehabilitiertest,rehabilitierst,rehabilitierten,rehabilitieret,rehabilitierte,rehabilitierend\"\n    },\n    \"reibungslos\": {\n        \"form\": \"reibungslos\",\n        \"polarity\": \"0.1965\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reibungslosem,reibungslosesten,reibungslosester,reibungslosestes,reibungslose,reibungslosere,reibungsloseste,reibungsloses,reibungsloser,reibungslosen,reibungsloseren,reibungsloserem,reibungsloserer,reibungslosestem,reibungsloseres\"\n    },\n    \"reich\": {\n        \"form\": \"reich\",\n        \"polarity\": \"0.1247\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reicher,reiches,reiche,reichem,reichen,reicherer,reicheres,reichere,reicherem,reicheren,reichster,reichstes,reichste,reichstem,reichsten\"\n    },\n    \"reichhaltig\": {\n        \"form\": \"reichhaltig\",\n        \"polarity\": \"0.209\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reichhaltigeren,reichhaltiger,reichhaltigem,reichhaltigerer,reichhaltigen,reichhaltigeres,reichhaltiges,reichhaltige,reichhaltigster,reichhaltigstes,reichhaltigste,reichhaltigere,reichhaltigstem,reichhaltigerem,reichhaltigsten\"\n    },\n    \"reichlich\": {\n        \"form\": \"reichlich\",\n        \"polarity\": \"0.3617\",\n        \"pos\": \"RB\",\n        \"sense\": \"reichlichen,reichliche,reichlichem,reichlicher,reichliches\"\n    },\n    \"reif\": {\n        \"form\": \"reif\",\n        \"polarity\": \"0.0807\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reiferen,reife,reiferem,reifem,reifen,reiferes,reifer,reiferer,reifes,reifste,reifere,reifster,reifstes,reifsten,reifstem\"\n    },\n    \"reifen\": {\n        \"form\": \"reifen\",\n        \"polarity\": \"0.0886\",\n        \"pos\": \"VB\",\n        \"sense\": \"reift,reifst,reife,reiften,reif,gereift,reiftest,reiftet,reifte,reifest,reifet,reifend\"\n    },\n    \"rein\": {\n        \"form\": \"rein\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reinerem,reinere,reineren,reinstes,reinster,reinste,reinstem,reinsten,reinen,reinem,reiner,reine,reines,reineres,reinerer\"\n    },\n    \"reinigen\": {\n        \"form\": \"reinigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"reinigtet,reinigtest,reinigt,reinige,reinigest,reinig,gereinigt,reinigten,reinigst,reiniget,reinigte,reinigend\"\n    },\n    \"reizend\": {\n        \"form\": \"reizend\",\n        \"polarity\": \"0.0787\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reizendste,reizenderer,reizenderes,reizendem,reizendere,reizender,reizendes,reizenden,reizende,reizenderem,reizendster,reizenderen,reizendstes,reizendstem,reizendsten\"\n    },\n    \"reizvoll\": {\n        \"form\": \"reizvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"reizvolles,reizvoller,reizvollen,reizvollem,reizvolle\"\n    },\n    \"relevant\": {\n        \"form\": \"relevant\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"relevanten,relevantere,relevantem,relevantes,relevanter,relevanterer,relevanterem,relevanteren,relevante,relevanteste,relevantestes,relevantester,relevantestem,relevanteres,relevantesten\"\n    },\n    \"renommiert\": {\n        \"form\": \"renommiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"renommierter,renommiertere,renommiertestes,renommierten,renommiertem,renommiertester,renommierteste,renommierterem,renommierte,renommierteren,renommiertesten,renommiertes,renommiertestem,renommierteres,renommierterer\"\n    },\n    \"renovieren\": {\n        \"form\": \"renovieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"renoviere,renovierst,renoviert,renovieret,renovierte,renoviertest,renovierten,renoviertet,renovier,renovierend\"\n    },\n    \"rentabel\": {\n        \"form\": \"rentabel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rentablen,rentablem,rentabler,rentable,rentablere,rentablerem,rentableren,rentabelster,rentablerer,rentabelstem,rentableres,rentabelsten,rentabelstes,rentabelste,rentables\"\n    },\n    \"reparieren\": {\n        \"form\": \"reparieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"repariere,reparierst,reparierest,repariert,reparieret,reparierte,repariertest,reparierten,repariertet,reparier,reparierend\"\n    },\n    \"repräsentativ\": {\n        \"form\": \"repräsentativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"repräsentativem,repräsentative,repräsentativen,repräsentatives,repräsentativer\"\n    },\n    \"respektabel\": {\n        \"form\": \"respektabel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"respektableren,respektablerem,respektabelste,respektablerer,respektabelsten,respektableres,respektabelster,respektabelstes,respektabelstem,respektablem,respektablen,respektable,respektables,respektabler,respektablere\"\n    },\n    \"respektieren\": {\n        \"form\": \"respektieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"respektiere,respektierst,respektierest,respektiert,respektieret,respektierte,respektiertest,respektierten,respektiertet,respektier,respektierend\"\n    },\n    \"respektvoll\": {\n        \"form\": \"respektvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"respektvolle,respektvollem,respektvollerer,respektvolleres,respektvollste,respektvollere,respektvolleren,respektvollerem,respektvollstes,respektvollster,respektvollen,respektvollsten,respektvolles,respektvoller,respektvollstem\"\n    },\n    \"retten\": {\n        \"form\": \"retten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"rettetet,rette,rettet,rettete,rettten,rettest,retttest,retttet,retteten,rettte,gerettet,rett,rettetest,rettend\"\n    },\n    \"revanchieren\": {\n        \"form\": \"revanchieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"revanchier,revanchierten,revanchiertest,revanchieret,revanchiere,revanchierte,revanchierest,revanchierst,revanchiertet,revanchiert,revanchierend\"\n    },\n    \"richtig\": {\n        \"form\": \"richtig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"richtigerem,richtigsten,richtiger,richtigstes,richtigster,richtiges,richtigstem,richtigeren,richtige,richtigste,richtigere,richtigerer,richtigeres,richtigen,richtigem\"\n    },\n    \"richtigstellen\": {\n        \"form\": \"richtigstellen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"richtigstelle,richtigstellst,richtigstellest,richtigstellt,richtigstellet,richtigstellte,richtigstelltest,richtigstellten,richtigstelltet,richtigzustellen,richtigstellend,richtiggestellt\"\n    },\n    \"riesengroß\": {\n        \"form\": \"riesengroß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"riesengroßer,riesengroßes,riesengroße,riesengroßen,riesengroßem\"\n    },\n    \"riesig\": {\n        \"form\": \"riesig\",\n        \"polarity\": \"0.4554\",\n        \"pos\": \"JJ\",\n        \"sense\": \"riesigste,riesigen,riesigstes,riesigem,riesigster,riesige,riesigeren,riesigerem,riesigerer,riesigeres,riesigsten,riesigere,riesigstem,riesiger,riesiges\"\n    },\n    \"robust\": {\n        \"form\": \"robust\",\n        \"polarity\": \"0.0968\",\n        \"pos\": \"JJ\",\n        \"sense\": \"robustester,robustes,robustestes,robuster,robusteste,robusten,robustem,robusterem,robusteren,robustestem,robustesten,robustere,robusteres,robuste,robusterer\"\n    },\n    \"romantisch\": {\n        \"form\": \"romantisch\",\n        \"polarity\": \"0.6965\",\n        \"pos\": \"JJ\",\n        \"sense\": \"romantischer,romantisches,romantische,romantischem,romantischen,romantischerer,romantischeres,romantischere,romantischerem,romantischeren,romantischster,romantischstes,romantischste,romantischstem,romantischsten\"\n    },\n    \"rosarot\": {\n        \"form\": \"rosarot\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rosaroten,rosarotem,rosaroter,rosarotes,rosarote\"\n    },\n    \"rosig\": {\n        \"form\": \"rosig\",\n        \"polarity\": \"0.0755\",\n        \"pos\": \"JJ\",\n        \"sense\": \"rosigste,rosiger,rosigster,rosigstes,rosiges,rosigere,rosigeren,rosigerem,rosigeres,rosigerer,rosige,rosigem,rosigen,rosigsten,rosigstem\"\n    },\n    \"ruhig\": {\n        \"form\": \"ruhig\",\n        \"polarity\": \"0.3815\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ruhiger,ruhiges,ruhige,ruhigem,ruhigen,ruhigerer,ruhigeres,ruhigere,ruhigerem,ruhigeren,ruhigster,ruhigstes,ruhigste,ruhigstem,ruhigsten\"\n    },\n    \"ruhmreich\": {\n        \"form\": \"ruhmreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ruhmreiches,ruhmreicher,ruhmreiche,ruhmreichem,ruhmreichen\"\n    },\n    \"rückhaltlos\": {\n        \"form\": \"rückhaltlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"rücksichtsvoll\": {\n        \"form\": \"rücksichtsvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"rückversichern\": {\n        \"form\": \"rückversichern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"rückversicherst,rückversichert,rückversichere,rückversicherten,rückversicherte,rückversichertet,rückversicheren,rückversichertest,rückversichernd\"\n    },\n    \"rührig\": {\n        \"form\": \"rührig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sachgemäß\": {\n        \"form\": \"sachgemäß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sachgemäßen,sachgemäßer,sachgemäße,sachgemäßes,sachgemäßem\"\n    },\n    \"sagenhaft\": {\n        \"form\": \"sagenhaft\",\n        \"polarity\": \"0.0907\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sagenhaftere,sagenhaftem,sagenhaften,sagenhafterer,sagenhafte,sagenhafteres,sagenhafter,sagenhaftes,sagenhaftester,sagenhaftestes,sagenhafteste,sagenhafteren,sagenhafterem,sagenhaftestem,sagenhaftesten\"\n    },\n    \"sanft\": {\n        \"form\": \"sanft\",\n        \"polarity\": \"0.338\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sanfte,sanftestem,sanftesten,sanfteste,sanftester,sanftestes,sanften,sanfterer,sanftem,sanfteres,sanftere,sanfterem,sanftes,sanfter,sanfteren\"\n    },\n    \"satt\": {\n        \"form\": \"satt\",\n        \"polarity\": \"0.3557\",\n        \"pos\": \"JJ\",\n        \"sense\": \"satten,satteren,sattem,satterem,sattes,satteste,satter,satterer,satteres,satte,sattester,sattestes,sattestem,sattesten,sattere\"\n    },\n    \"sauber\": {\n        \"form\": \"sauber\",\n        \"polarity\": \"0.3553\",\n        \"pos\": \"JJ\",\n        \"sense\": \"saubreren,saubrerem,saubersten,sauberstem,sauberstes,sauberster,saubereren,saubererem,saubere,sauberem,saubrere,sauberen,saubererer,saubereres,sauberer\"\n    },\n    \"schaffen\": {\n        \"form\": \"schaffen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"schaffest,schafften,schafftest,schaffst,schaffte,schaffet,geschafft,schafft,schaffe,schafftet,schaff,schaffend,sauberere,sauberes,saubrer,saubreres,saubrerer,sauberste\"\n    },\n    \"scharf\": {\n        \"form\": \"scharf\",\n        \"polarity\": \"0.2248\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schenken\": {\n        \"form\": \"schenken\",\n        \"polarity\": \"0.204\",\n        \"pos\": \"VB\",\n        \"sense\": \"schenkten,schenkst,schenkte,schenktest,schenkest,geschenkt,schenktet,schenket,schenke,schenk,schenkt,schenkend,schärfere\"\n    },\n    \"schick\": {\n        \"form\": \"schick\",\n        \"polarity\": \"0.3372\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schickstes,schickeren,schickerem,schickste,schickstem,schicksten,schickster,schicke,schickeres,schickem,schicken,schickere,schicker,schickerer,schickes\"\n    },\n    \"schillern\": {\n        \"form\": \"schillern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"schillerst,schillerte,schilleren,schillerten,schillert,schillere,schillertest,geschillert,schillertet\"\n    },\n    \"schillernd\": {\n        \"form\": \"schillernd\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schillernder,schillerndes,schillernde,schillerndem,schillernden,schillernderer,schillernderes,schillerndere,schillernderem,schillernderen,schillerndster,schillerndstes,schillerndste,schillerndstem,schillerndsten\"\n    },\n    \"schlagend\": {\n        \"form\": \"schlagend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlagendes,schlagender,schlagendem,schlagendstes,schlagenden,schlagendste,schlagendere,schlagenderes,schlagenderer,schlagende,schlagendster,schlagenderen,schlagenderem,schlagendstem,schlagendsten\"\n    },\n    \"schlank\": {\n        \"form\": \"schlank\",\n        \"polarity\": \"0.2349\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlankerem,schlankere,schlankes,schlanker,schlanken,schlankem,schlanksten,schlankstem,schlanke,schlankeren,schlankste,schlankeres,schlankerer,schlankstes,schlankster\"\n    },\n    \"schlau\": {\n        \"form\": \"schlau\",\n        \"polarity\": \"0.341\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schlauestes,schlauester,schlaue,schlauesten,schlauerer,schlaueres,schlauestem,schlauen,schlauem,schlauerem,schlaues,schlauer,schlauere,schlaueren,schlauster\"\n    },\n    \"schlüssig\": {\n        \"form\": \"schlüssig\",\n        \"polarity\": \"0.0809\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"schmackhaft\": {\n        \"form\": \"schmackhaft\",\n        \"polarity\": \"0.217\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmackhaftere,schmackhaften,schmackhafterem,schmackhafteren,schmackhafteres,schmackhafte,schmackhaftem,schmackhaftestes,schmackhaftester,schmackhafterer,schmackhafteste,schmackhaftesten,schmackhaftestem,schmackhafter,schmackhaftes\"\n    },\n    \"schmeichelnd\": {\n        \"form\": \"schmeichelnd\",\n        \"polarity\": \"0.1874\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmeichelnder,schmeichelndes,schmeichelnde,schmeichelndem,schmeichelnden,schmeichelnderer,schmeichelnderes,schmeichelndere,schmeichelnderem,schmeichelnderen,schmeichelndster,schmeichelndstes,schmeichelndste,schmeichelndstem,schmeichelndsten\"\n    },\n    \"schmuck\": {\n        \"form\": \"schmuck\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schmuckere,schmuckerer,schmuckeres,schmuckste,schmucken,schmuckem,schmucke,schmuckes,schmucker,schmuckstes,schmuckster,schmuckerem,schmucksten,schmuckstem,schmuckeren\"\n    },\n    \"schmücken\": {\n        \"form\": \"schmücken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"schnell\": {\n        \"form\": \"schnell\",\n        \"polarity\": \"0.1169\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schnelles,schneller,schnellen,schnelleres,schnellerer,schnellste,schnellem,schnelleren,schnellerem,schnelle,schnellere,schnellstem,schnellsten,schnellster,schnellstes\"\n    },\n    \"schuldlos\": {\n        \"form\": \"schuldlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schuldlosere,schuldloseste,schuldlose,schuldlosem,schuldlosestes,schuldlosester,schuldlosen,schuldloserer,schuldlosesten,schuldloses,schuldloser,schuldloseres,schuldloseren,schuldloserem,schuldlosestem\"\n    },\n    \"schwunghaft\": {\n        \"form\": \"schwunghaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"schwunghaftere,schwunghaftestem,schwunghaftesten,schwunghafteren,schwunghaften,schwunghaftester,schwunghaftem,schwunghafterem,schwunghaftestes,schwunghafteste,schwunghafter,schwunghaftes,schwunghafteres,schwunghafte,schwunghafterer\"\n    },\n    \"schätzen\": {\n        \"form\": \"schätzen\",\n        \"polarity\": \"0.1175\",\n        \"pos\": \"VB\",\n        \"sense\": \"schätzet,schätz,schätzte,schätztet,schätzest,schätzt,geschätzt,schätze,schätzten,schätztest,schätzend\"\n    },\n    \"schön\": {\n        \"form\": \"schön\",\n        \"polarity\": \"0.0081\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sehenswert\": {\n        \"form\": \"sehenswert\",\n        \"polarity\": \"0.0947\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sehenswerterem,sehenswerteste,sehenswertestes,sehenswerteren,sehenswerte,sehenswerterer,sehenswerteres,sehenswerten,sehenswertem,sehenswertere,sehenswerter,sehenswertes,sehenswertesten,sehenswertestem,sehenswertester\"\n    },\n    \"selbstständig\": {\n        \"form\": \"selbstständig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sensationell\": {\n        \"form\": \"sensationell\",\n        \"polarity\": \"0.086\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sensationellerer,sensationellen,sensationelleres,sensationelles,sensationeller,sensationellste,sensationellere,sensationelle,sensationellster,sensationellerem,sensationellstes,sensationelleren,sensationellsten,sensationellstem,sensationellem\"\n    },\n    \"sensibel\": {\n        \"form\": \"sensibel\",\n        \"polarity\": \"0.098\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sensibelstem,sensibelsten,sensibelstes,sensibelste,sensibelster,sensible,sensibleren,sensiblerem,sensiblere,sensibleres,sensiblerer,sensiblem,sensiblen,sensibles,sensibler\"\n    },\n    \"seriös\": {\n        \"form\": \"seriös\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sexy\": {\n        \"form\": \"sexy\",\n        \"polarity\": \"0.3453\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sexyeres,sexyste,sexyerer,sexyerem,sexyeren,sexystem,sexysten,sexyster,sexystes,sexyere\"\n    },\n    \"sicher\": {\n        \"form\": \"sicher\",\n        \"polarity\": \"0.3733\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sicheres,sicherer,sichrerem,sichreren,sichereren,sicheren,sichererem,sicherem,sicherste,sicherere,sichrere,sichrer,sichrerer,sichersten,sichreres,sicherstem\"\n    },\n    \"sichern\": {\n        \"form\": \"sichern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"gesichert,sichertet,sicheren,sicherten,sichert,sichertest,sichere,sicherte,sicherst,sichernd,sicherster,sicherstes,sichererer,sichereres\"\n    },\n    \"sicherstellen\": {\n        \"form\": \"sicherstellen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"sichergestellt,sicherstelltest,sicherstellet,sicherstellest,sicherstellten,sicherstellte,sicherstellt,sicherstelle,sicherstelltet,sicherstellst,sicherzustellen,sicherstellend\"\n    },\n    \"sichtbar\": {\n        \"form\": \"sichtbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sichtbarster,sichtbarstes,sichtbare,sichtbareren,sichtbarstem,sichtbarsten,sichtbareres,sichtbarerer,sichtbarer,sichtbarem,sichtbarere,sichtbaren,sichtbarerem,sichtbarste,sichtbares\"\n    },\n    \"simpel\": {\n        \"form\": \"simpel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"simpelstem,simpelsten,simpelste,simpelster,simple,simpelstes,simplere,simpleres,simplerer,simplen,simpler,simples,simplem,simpleren,simplerem\"\n    },\n    \"sinnvoll\": {\n        \"form\": \"sinnvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sinnvollem,sinnvollste,sinnvollen,sinnvoller,sinnvolles,sinnvollstem,sinnvollsten,sinnvollstes,sinnvollerer,sinnvolleres,sinnvollster,sinnvollerem,sinnvolleren,sinnvollere,sinnvolle\"\n    },\n    \"solid\": {\n        \"form\": \"solid\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"solidestem,solidesten,solidester,solidestes,soliden,solide,solideres,soliderer,solideren,solidem,soliderem,solidere,solider,solideste,solides\"\n    },\n    \"solidarisch\": {\n        \"form\": \"solidarisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"solidarischstes,solidarischster,solidarischsten,solidarischstem,solidarischste,solidarisches,solidarischer,solidarische,solidarischen,solidarischeren,solidarischerem,solidarischeres,solidarischem,solidarischere,solidarischerer\"\n    },\n    \"sonnendurchflutet\": {\n        \"form\": \"sonnendurchflutet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sonnendurchfluteten,sonnendurchflutetem,sonnendurchflutete,sonnendurchfluteter,sonnendurchflutetes\"\n    },\n    \"sonnig\": {\n        \"form\": \"sonnig\",\n        \"polarity\": \"0.2244\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sonnigstes,sonnigster,sonnigerem,sonnigere,sonnigstem,sonnige,sonnigsten,sonnigste,sonniges,sonniger,sonnigeren,sonnigen,sonnigeres,sonnigem,sonnigerer\"\n    },\n    \"sorgenfrei\": {\n        \"form\": \"sorgenfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sorgenfreie,sorgenfreier,sorgenfreiem,sorgenfreien,sorgenfreies\"\n    },\n    \"sorgfältig\": {\n        \"form\": \"sorgfältig\",\n        \"polarity\": \"0.2119\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"sorglos\": {\n        \"form\": \"sorglos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sorglose,sorglosem,sorglosere,sorglosestem,sorgloseste,sorglosen,sorgloses,sorgloser,sorgloseres,sorgloserer,sorglosesten,sorglosestes,sorglosester,sorgloserem,sorgloseren\"\n    },\n    \"sorgsam\": {\n        \"form\": \"sorgsam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sorgsamsten,sorgsame,sorgsamster,sorgsamem,sorgsamstes,sorgsamen,sorgsamer,sorgsames,sorgsamstem,sorgsamere,sorgsameres,sorgsamerer,sorgsamste,sorgsamerem,sorgsameren\"\n    },\n    \"souverän\": {\n        \"form\": \"souverän\",\n        \"polarity\": \"0.0711\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"spannend\": {\n        \"form\": \"spannend\",\n        \"polarity\": \"0.7165\",\n        \"pos\": \"JJ\",\n        \"sense\": \"spannendste,spannender,spannendes,spannenderen,spannenderem,spannenden,spannende,spannenderer,spannendem,spannenderes,spannendsten,spannendstem,spannendere,spannendstes,spannendster\"\n    },\n    \"sparen\": {\n        \"form\": \"sparen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"sparet,sparst,sparten,sparte,spart,sparest,spare,spartet,gespart,spar,spartest,sparend\"\n    },\n    \"sparsam\": {\n        \"form\": \"sparsam\",\n        \"polarity\": \"0.0907\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sparsamem,sparsamen,sparsameren,sparsamstes,sparsamerem,sparsamer,sparsames,sparsameres,sparsame,sparsamerer,sparsamste,sparsamere,sparsamstem,sparsamsten,sparsamster\"\n    },\n    \"spaßig\": {\n        \"form\": \"spaßig\",\n        \"polarity\": \"0.0969\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"Spektakel\": {\n        \"form\": \"Spektakel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Spektakels,Spektakeln\"\n    },\n    \"spektakulär\": {\n        \"form\": \"spektakulär\",\n        \"polarity\": \"0.0925\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"spenden\": {\n        \"form\": \"spenden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"spendet,spendetet,spendete,spendeten,spend,spendten,gespendet,spendte,spende,spendtet,spendetest,spendtest,spendest,spendend\"\n    },\n    \"speziell\": {\n        \"form\": \"speziell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"speziellste,spezielleren,speziellerem,spezielle,speziellerer,spezielleres,spezielles,spezieller,speziellstem,speziellsten,speziellem,speziellen,speziellere,speziellster,speziellstes\"\n    },\n    \"spielend\": {\n        \"form\": \"spielend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"spielender,spielendes,spielende,spielendem,spielenden\"\n    },\n    \"spielerisch\": {\n        \"form\": \"spielerisch\",\n        \"polarity\": \"0.2\",\n        \"pos\": \"JJ\",\n        \"sense\": \"spielerischen,spielerisches,spielerischer,spielerische,spielerischem\"\n    },\n    \"spitze\": {\n        \"form\": \"spitze\",\n        \"polarity\": \"0.2112\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"spürbar\": {\n        \"form\": \"spürbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"spürbarem,spürbaren,spürbare,spürbares,spürbarer\"\n    },\n    \"stabil\": {\n        \"form\": \"stabil\",\n        \"polarity\": \"0.1016\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stabilerer,stabilerem,stabileren,stabiles,stabiler,stabilstem,stabilsten,stabilen,stabilere,stabileres,stabilste,stabilster,stabilem,stabilstes,stabile\"\n    },\n    \"stabilisieren\": {\n        \"form\": \"stabilisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"stabilisiertet,stabilisiertest,stabilisiere,stabilisiert,stabilisierten,stabilisieret,stabilisierte,stabilisier,stabilisierst,stabilisierest,stabilisierend\"\n    },\n    \"standhaft\": {\n        \"form\": \"standhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"standhafterer,standhafteren,standhafterem,standhafte,standhafteres,standhaftester,standhaftestes,standhaftere,standhaftesten,standhafteste,standhafter,standhaftes,standhaftestem,standhaftem,standhaften\"\n    },\n    \"stark\": {\n        \"form\": \"stark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"stattlich\": {\n        \"form\": \"stattlich\",\n        \"polarity\": \"0.0876\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stattlichsten,stattliches,stattlichstem,stattlichere,stattliche,stattlichste,stattlicherem,stattlichem,stattlicheres,stattlichen,stattlicherer,stattlicher,stattlicheren,stattlichster,stattlichstes,stärkster\"\n    },\n    \"staunen\": {\n        \"form\": \"staunen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"staun,staune,staunten,staunt,stauntest,stauntet,staunest,staunet,staunte,staunst,gestaunt,staunend\"\n    },\n    \"steigen\": {\n        \"form\": \"steigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"steige,steigst,steigest,steigt,steiget,stieg,stiege,stiegst,stiegen,stiegt,stieget,steig,steigend,gestiegen\"\n    },\n    \"steigend\": {\n        \"form\": \"steigend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"steigender,steigendes,steigende,steigendem,steigenden\"\n    },\n    \"steigern\": {\n        \"form\": \"steigern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"steigertet,steigerte,steigerst,steigeren,steigert,steigere,gesteigert,steigerten,steigertest,steigernd\"\n    },\n    \"stiften\": {\n        \"form\": \"stiften\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"stiftetet,stiftete,stifttest,stift,stifttet,stiftet,stiftten,stiftetest,stiftest,stiftte,gestiftet,stifte,stifteten,stiftend\"\n    },\n    \"stilsicher\": {\n        \"form\": \"stilsicher\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stilsichereren,stilsichererem,stilsichereres,stilsichererer,stilsichere,stilsicherste,stilsichrer,stilsichrerem,stilsichersten,stilsicherer,stilsichreren,stilsicheres,stilsicherstem,stilsichrerer,stilsichreres,stilsicherere\"\n    },\n    \"stilvoll\": {\n        \"form\": \"stilvoll\",\n        \"polarity\": \"0.3197\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stilvollstes,stilvolle,stilvollster,stilvollstem,stilvollsten,stilvollerer,stilvollere,stilvolleren,stilvollen,stilvollerem,stilvollem,stilvolles,stilvoller,stilvollste,stilvolleres,stilsichrere,stilsicherster,stilsicheren,stilsicherstes,stilsicherem,stilsicherst\"\n    },\n    \"stimulieren\": {\n        \"form\": \"stimulieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"stimulierten,stimulier,stimuliertest,stimulieret,stimuliertet,stimulierte,stimuliere,stimuliert,stimulierst,stimulierest,stimulierend\"\n    },\n    \"stolz\": {\n        \"form\": \"stolz\",\n        \"polarity\": \"0.5161\",\n        \"pos\": \"JJ\",\n        \"sense\": \"stolzere,stolzester,stolzen,stolzeres,stolzem,stolzerer,stolzesten,stolzerem,stolzestem,stolzeren,stolze,stolzes,stolzer,stolzeste,stolzestes\"\n    },\n    \"strahlen\": {\n        \"form\": \"strahlen\",\n        \"polarity\": \"0.2092\",\n        \"pos\": \"VB\",\n        \"sense\": \"strahlet,strahlest,strahl,strahlten,gestrahlt,strahlst,strahlte,strahlt,strahltet,strahle,strahltest\"\n    },\n    \"strahlend\": {\n        \"form\": \"strahlend\",\n        \"polarity\": \"0.218\",\n        \"pos\": \"JJ\",\n        \"sense\": \"strahlender,strahlendes,strahlende,strahlendem,strahlenden,strahlenderer,strahlenderes,strahlendere,strahlenderem,strahlenderen,strahlendster,strahlendstes,strahlendste,strahlendstem,strahlendsten\"\n    },\n    \"stärken\": {\n        \"form\": \"stärken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"störungsfrei\": {\n        \"form\": \"störungsfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"störungsfreie,störungsfreies,störungsfreiem,störungsfreien,störungsfreier\"\n    },\n    \"stützen\": {\n        \"form\": \"stützen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"subventionieren\": {\n        \"form\": \"subventionieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"subventionierest,subventioniere,subventioniert,subventionierten,subventioniertet,subventionieret,subventioniertest,subventionier,subventionierst,subventionierte,subventionierend\"\n    },\n    \"super\": {\n        \"form\": \"super\",\n        \"polarity\": \"0.5012\",\n        \"pos\": \"JJ\",\n        \"sense\": \"supererem,superes,superer,supereren,supere,supererer,supereres,superste,superem,superen,superstes,superster,superst,superstem,supersten,superere\"\n    },\n    \"superschnell\": {\n        \"form\": \"superschnell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"superschneller,superschnelles,superschnelle,superschnellen,superschnellem\"\n    },\n    \"sympathisch\": {\n        \"form\": \"sympathisch\",\n        \"polarity\": \"0.4529\",\n        \"pos\": \"JJ\",\n        \"sense\": \"sympathischer,sympathisches,sympathische,sympathischem,sympathischen,sympathischerer,sympathischeres,sympathischere,sympathischerem,sympathischeren,sympathischster,sympathischstes,sympathischste,sympathischstem,sympathischsten\"\n    },\n    \"sympathisieren\": {\n        \"form\": \"sympathisieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"sympathisierest,sympathisiertet,sympathisier,sympathisiertest,sympathisierten,sympathisiere,sympathisiert,sympathisierst,sympathisierte,sympathisieret,sympathisierend\"\n    },\n    \"systematisch\": {\n        \"form\": \"systematisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"systematischer,systematisches,systematische,systematischem,systematischen\"\n    },\n    \"süchtig\": {\n        \"form\": \"süchtig\",\n        \"polarity\": \"0.0845\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"süß\": {\n        \"form\": \"süß\",\n        \"polarity\": \"0.3616\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"tadellos\": {\n        \"form\": \"tadellos\",\n        \"polarity\": \"0.309\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tadelloses,tadelloserem,tadelloseste,tadellosestes,tadellose,tadelloseren,tadellosester,tadelloserer,tadelloseres,tadellosere,tadellosesten,tadellosestem,tadellosem,tadellosen,tadelloser\"\n    },\n    \"tadelsfrei\": {\n        \"form\": \"tadelsfrei\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tadelsfreie,tadelsfreier,tadelsfreies,tadelsfreiem,tadelsfreien\"\n    },\n    \"talentiert\": {\n        \"form\": \"talentiert\",\n        \"polarity\": \"0.3218\",\n        \"pos\": \"JJ\",\n        \"sense\": \"talentiertesten,talentierteren,talentiertestem,talentiertes,talentierterer,talentiertere,talentierteres,talentiertem,talentierten,talentierteste,talentiertester,talentierter,talentiertestes,talentierte,talentierterem\"\n    },\n    \"tatkräftig\": {\n        \"form\": \"tatkräftig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"tauglich\": {\n        \"form\": \"tauglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"taugliche,tauglicher,taugliches,tauglichem,tauglichen\"\n    },\n    \"tiefgreifend\": {\n        \"form\": \"tiefgreifend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tiefgreifende,tiefgreifendes,tiefgreifendem,tiefgreifenden,tiefgreifender\"\n    },\n    \"tierisch\": {\n        \"form\": \"tierisch\",\n        \"polarity\": \"0.1135\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tierischstes,tierischere,tierischerem,tierischstem,tierischsten,tierischeren,tierische,tierischster,tierischen,tierischeres,tierischem,tierischer,tierischste,tierischerer,tierisches\"\n    },\n    \"tolerant\": {\n        \"form\": \"tolerant\",\n        \"polarity\": \"0.1984\",\n        \"pos\": \"JJ\",\n        \"sense\": \"toleranteres,toleranterem,toleranteren,toleranterer,tolerantere,tolerante,tolerantestes,tolerantes,tolerantester,toleranter,tolerantem,toleranten,toleranteste,tolerantestem,tolerantesten\"\n    },\n    \"tolerieren\": {\n        \"form\": \"tolerieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"toleriertet,toleriertest,tolerierest,tolerierte,toleriere,toleriert,tolerierst,tolerier,tolerierten,tolerieret,tolerierend\"\n    },\n    \"toll\": {\n        \"form\": \"toll\",\n        \"polarity\": \"0.5066\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tollere,tollste,tollerer,tolleres,tollerem,tolles,toller,tolleren,tollstem,tollsten,tollstes,tollen,tollster,tollem,tolle\"\n    },\n    \"top\": {\n        \"form\": \"top\",\n        \"polarity\": \"0.3186\",\n        \"pos\": \"JJ\",\n        \"sense\": \"topsten,topem,topstem,topst,topen,toperes,tope,topste,topstes,toper,toperem,toperen,topes,toperer,topster,topere\"\n    },\n    \"toppen\": {\n        \"form\": \"toppen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"toppe,toppten,toppt,toppet,toppte,topp,toppst,topptet,toppest,topptest,getoppt,toppend\"\n    },\n    \"traditionell\": {\n        \"form\": \"traditionell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"traditioneller,traditionelles,traditionelle,traditionellem,traditionellen\"\n    },\n    \"traditionsreich\": {\n        \"form\": \"traditionsreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"traditionsreiche,traditionsreichem,traditionsreichen,traditionsreicher,traditionsreiches\"\n    },\n    \"tragfähig\": {\n        \"form\": \"tragfähig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tragfähigen,tragfähigem,tragfähiges,tragfähiger,tragfähige\"\n    },\n    \"transparent\": {\n        \"form\": \"transparent\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"transparentesten,transparenteste,transparentestem,transparenten,transparentem,transparenter,transparentere,transparenteren,transparentestes,transparenterer,transparentester,transparente,transparenteres,transparenterem,transparentes\"\n    },\n    \"traumhaft\": {\n        \"form\": \"traumhaft\",\n        \"polarity\": \"0.5665\",\n        \"pos\": \"JJ\",\n        \"sense\": \"traumhafter,traumhafte,traumhaftester,traumhaftestes,traumhaften,traumhaftem,traumhafterem,traumhaftere,traumhaftesten,traumhafteste,traumhaftestem,traumhafteres,traumhafterer,traumhaftes,traumhafteren\"\n    },\n    \"treffend\": {\n        \"form\": \"treffend\",\n        \"polarity\": \"0.1023\",\n        \"pos\": \"JJ\",\n        \"sense\": \"treffender,treffendes,treffende,treffendem,treffenden,treffenderer,treffenderes,treffendere,treffenderem,treffenderen,treffendste,treffendster,treffendstes,treffendstem,treffendsten\"\n    },\n    \"trefflich\": {\n        \"form\": \"trefflich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"trefflichsten,trefflichen,trefflichstem,trefflichem,trefflicheres,trefflichster,trefflicherer,treffliches,trefflicher,trefflichstes,trefflichere,treffliche,trefflichste,trefflicherem,trefflicheren\"\n    },\n    \"treu\": {\n        \"form\": \"treu\",\n        \"polarity\": \"0.3526\",\n        \"pos\": \"JJ\",\n        \"sense\": \"treuerem,treuest,treueren,treueres,treuerer,treuere,treuestes,treue,treuem,treueste,treuen,treuester,treuste,treuestem,treustem\"\n    },\n    \"triumphal\": {\n        \"form\": \"triumphal\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"triumphaleren,triumphalste,triumphalstem,triumphalerem,triumphales,triumphalere,triumphaler,triumphalem,triumphale,triumphalen,triumphaleres,triumphalsten,triumphalerer,triumphalstes,triumphalster,treuesten,treusten,treues,treuster,treustes,treuer\"\n    },\n    \"triumphieren\": {\n        \"form\": \"triumphieren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"triumphierst,triumphiertest,triumphierte,triumphiert,triumphierten,triumphiere,triumphier,triumphieret,triumphiertet,triumphierest,triumphierend\"\n    },\n    \"trösten\": {\n        \"form\": \"trösten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"tröste,tröstest,tröstet,trösteten,getröstet,tröst,tröstetest,tröstetet,tröstete,tröstend\"\n    },\n    \"tätig\": {\n        \"form\": \"tätig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"tätiger,tätige,tätiges,tätigen,tätigem\"\n    },\n    \"ultimativ\": {\n        \"form\": \"ultimativ\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ultimativer,ultimativeren,ultimativerem,ultimatives,ultimativen,ultimativere,ultimativem,ultimativster,ultimativeres,ultimativerer,ultimativsten,ultimativstem,ultimativstes,ultimativste,ultimative\"\n    },\n    \"umfangreich\": {\n        \"form\": \"umfangreich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umfangreichstes,umfangreiche,umfangreicher,umfangreiches,umfangreichster,umfangreichen,umfangreicheres,umfangreichstem,umfangreichsten,umfangreicherer,umfangreicherem,umfangreichem,umfangreicheren,umfangreichere,umfangreichste\"\n    },\n    \"umfassend\": {\n        \"form\": \"umfassend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umfassender,umfassende,umfassendes,umfassenden,umfassendem,umfassenderer,umfassendere,umfassenderes,umfassenderen,umfassenderem,umfassendste,umfassendster,umfassendstes,umfassendstem,umfassendsten\"\n    },\n    \"umgänglich\": {\n        \"form\": \"umgänglich\",\n        \"polarity\": \"0.2129\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"umjubelt\": {\n        \"form\": \"umjubelt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umjubelter,umjubeltes,umjubelte,umjubelten,umjubeltem\"\n    },\n    \"umsichtig\": {\n        \"form\": \"umsichtig\",\n        \"polarity\": \"0.0846\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umsichtiger,umsichtiges,umsichtigste,umsichtigen,umsichtigem,umsichtigere,umsichtigerem,umsichtige,umsichtigeren,umsichtigeres,umsichtigstes,umsichtigster,umsichtigerer,umsichtigsten,umsichtigstem\"\n    },\n    \"umsorgen\": {\n        \"form\": \"umsorgen\",\n        \"polarity\": \"0.0863\",\n        \"pos\": \"VB\",\n        \"sense\": \"umsorgst,umsorgte,umsorget,umsorgt,umsorgest,umsorge,umsorgtet,umsorgten,umsorg,umsorgtest,umsorgend\"\n    },\n    \"umwerfend\": {\n        \"form\": \"umwerfend\",\n        \"polarity\": \"0.1991\",\n        \"pos\": \"JJ\",\n        \"sense\": \"umwerfender,umwerfendes,umwerfende,umwerfenden,umwerfendem\"\n    },\n    \"unabhängig\": {\n        \"form\": \"unabhängig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unangefochten\": {\n        \"form\": \"unangefochten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unangefochtenem,unangefochtenen,unangefochtene,unangefochtenes,unangefochtener\"\n    },\n    \"unantastbar\": {\n        \"form\": \"unantastbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unantastbaren,unantastbares,unantastbare,unantastbarer,unantastbarem\"\n    },\n    \"unaufholbar\": {\n        \"form\": \"unaufholbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"unbedingt\": {\n        \"form\": \"unbedingt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbedingten,unbedingtem,unbedingter,unbedingte,unbedingtes\"\n    },\n    \"unbegrenzt\": {\n        \"form\": \"unbegrenzt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbegrenzteste,unbegrenzterem,unbegrenzteres,unbegrenzte,unbegrenzterer,unbegrenzten,unbegrenztem,unbegrenztestem,unbegrenztesten,unbegrenzteren,unbegrenzter,unbegrenztester,unbegrenztes,unbegrenztestes,unbegrenztere\"\n    },\n    \"unberührt\": {\n        \"form\": \"unberührt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unbeschreiblich\": {\n        \"form\": \"unbeschreiblich\",\n        \"polarity\": \"0.1156\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbeschreibliche,unbeschreiblichstem,unbeschreiblichere,unbeschreiblichsten,unbeschreiblichstes,unbeschreiblichster,unbeschreiblicherem,unbeschreibliches,unbeschreiblicherer,unbeschreiblicheres,unbeschreiblicheren,unbeschreiblichste,unbeschreiblichem,unbeschreiblichen,unbeschreiblicher\"\n    },\n    \"unbeschwert\": {\n        \"form\": \"unbeschwert\",\n        \"polarity\": \"0.3349\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbeschwerter,unbeschwerterem,unbeschwertester,unbeschwertere,unbeschwerteren,unbeschwertes,unbeschwertesten,unbeschwerteres,unbeschwerterer,unbeschwertestem,unbeschwerten,unbeschwertestes,unbeschwertem,unbeschwerte,unbeschwerteste\"\n    },\n    \"unbesiegbar\": {\n        \"form\": \"unbesiegbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbesiegbarere,unbesiegbarster,unbesiegbarstes,unbesiegbarerer,unbesiegbarste,unbesiegbarstem,unbesiegbarsten,unbesiegbarem,unbesiegbareres,unbesiegbaren,unbesiegbareren,unbesiegbarerem,unbesiegbare,unbesiegbarer,unbesiegbares\"\n    },\n    \"unbestreitbar\": {\n        \"form\": \"unbestreitbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbestreitbarerer,unbestreitbare,unbestreitbareres,unbestreitbarster,unbestreitbarstes,unbestreitbarstem,unbestreitbarsten,unbestreitbareren,unbestreitbaren,unbestreitbarerem,unbestreitbarste,unbestreitbarem,unbestreitbarere,unbestreitbares,unbestreitbarer\"\n    },\n    \"unbestritten\": {\n        \"form\": \"unbestritten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbestrittneren,unbestrittenstes,unbestrittneres,unbestrittnere,unbestrittene,unbestrittenem,unbestrittnerer,unbestrittenster,unbestrittenen,unbestrittenstem,unbestrittensten,unbestrittenes,unbestrittener,unbestrittner,unbestrittenste\"\n    },\n    \"unbezahlbar\": {\n        \"form\": \"unbezahlbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unbezahlbarer,unbezahlbarerer,unbezahlbareres,unbezahlbares,unbezahlbareren,unbezahlbarerem,unbezahlbarere,unbezahlbaren,unbezahlbarem,unbezahlbare,unbezahlbarsten,unbezahlbarstem,unbezahlbarster,unbezahlbarstes,unbezahlbarste,unbestritteneres,unbestritteneren,unbestrittenerem,unbestrittenere,unbestrittenerer,unbestrittnerem\"\n    },\n    \"uneingeschränkt\": {\n        \"form\": \"uneingeschränkt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"uneinholbar\": {\n        \"form\": \"uneinholbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"uneinholbare,uneinholbares,uneinholbarer,uneinholbarem,uneinholbaren\"\n    },\n    \"unermesslich\": {\n        \"form\": \"unermesslich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unermesslicher,unermessliches,unermessliche,untermesslichen,unermesslichem,unermesslicherer,unermesslicheres,unermesslichere,unermesslicheren,unermesslicherem,unermesslichster,unermesslichstes,unermesslichste,unermesslichstem,unermesslichsten\"\n    },\n    \"unermeßlich\": {\n        \"form\": \"unermeßlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unermüdlich\": {\n        \"form\": \"unermüdlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unerreicht\": {\n        \"form\": \"unerreicht\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerreichtem,unerreichten,unerreichter,unerreichtes,unerreichte\"\n    },\n    \"unerschrocken\": {\n        \"form\": \"unerschrocken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unerschrockenstem,unerschrocknere,unerschrockensten,unerschrockenstes,unerschrockenster,unerschrockneren,unerschrocknerem,unerschrockner,unerschrockenere,unerschrockeneres,unerschrockenerer,unerschrockenes,unerschrockener,unerschrocknerer,unerschrockneres,unerschrockenen\"\n    },\n    \"unersetzlich\": {\n        \"form\": \"unersetzlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unersetzlicher,unersetzliches,unersetzlichem,unersetzlichen,unersetzliche,unerschrockenst,unerschrockenem,unerschrockenste,unerschrockene,unerschrockeneren,unerschrockenerem\"\n    },\n    \"unfehlbar\": {\n        \"form\": \"unfehlbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unfehlbares,unfehlbarer,unfehlbaren,unfehlbarem,unfehlbare\"\n    },\n    \"ungeahnt\": {\n        \"form\": \"ungeahnt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeahntem,ungeahntes,ungeahnter,ungeahnte,ungeahnten\"\n    },\n    \"ungebrochen\": {\n        \"form\": \"ungebrochen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungebrochene,ungebrochenen,ungebrochenem,ungebrochenes,ungebrochener\"\n    },\n    \"ungeteilt\": {\n        \"form\": \"ungeteilt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungeteilten,ungeteiltem,ungeteilte,ungeteilter,ungeteiltes\"\n    },\n    \"ungezwungen\": {\n        \"form\": \"ungezwungen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ungezwungneren,ungezwungnere,ungezwungnerem,ungezwungnerer,ungezwungene,ungezwungneres,ungezwungenen,ungezwungensten,ungezwungenstem,ungezwungenem,ungezwungenster,ungezwungenerer,ungezwungenstes,ungezwungeneres,ungezwungner,ungezwungenerem\"\n    },\n    \"unglaublich\": {\n        \"form\": \"unglaublich\",\n        \"polarity\": \"0.3698\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unglaublichsten,unglaubliches,unglaublichstem,unglaublicherem,unglaubliche,unglaublicheren,unglaublichste,unglaublicheres,unglaublichere,unglaublicherer,unglaublichem,unglaublichen,unglaublicher,unglaublichster,unglaublichstes,ungezwungenes,ungezwungener,ungezwungeneren,ungezwungenste,ungezwungenst,ungezwungenere\"\n    },\n    \"universell\": {\n        \"form\": \"universell\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"universellste,universelle,universellen,universellem,universellstem,universellsten,universelleres,universellerer,universellere,universelleren,universellerem,universeller,universelles,universellster,universellstes\"\n    },\n    \"unkompliziert\": {\n        \"form\": \"unkompliziert\",\n        \"polarity\": \"0.0782\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unkompliziertestes,unkompliziertester,unkompliziertesten,unkompliziertestem,unkomplizierte,unkompliziertere,unkomplizierten,unkompliziertem,unkomplizierteres,unkomplizierterer,unkomplizierterem,unkompliziertes,unkomplizierter,unkomplizierteren,unkomplizierteste\"\n    },\n    \"unparteiisch\": {\n        \"form\": \"unparteiisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unparteiischste,unparteiischeres,unparteiischerer,unparteiischster,unparteiischstes,unparteiischeren,unparteiischerem,unparteiischstem,unparteiischsten,unparteiischem,unparteiischere,unparteiische,unparteiischen,unparteiischer,unparteiisches\"\n    },\n    \"unschlagbar\": {\n        \"form\": \"unschlagbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unschlagbarerem,unschlagbarem,unschlagbaren,unschlagbareren,unschlagbares,unschlagbarste,unschlagbarer,unschlagbareres,unschlagbarerer,unschlagbarster,unschlagbarstes,unschlagbarere,unschlagbarstem,unschlagbarsten,unschlagbare\"\n    },\n    \"unschuldig\": {\n        \"form\": \"unschuldig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unschuldigstem,unschuldigsten,unschuldigere,unschuldige,unschuldigste,unschuldigstes,unschuldigster,unschuldigen,unschuldigem,unschuldiger,unschuldigeres,unschuldigerer,unschuldiges,unschuldigeren,unschuldigerem\"\n    },\n    \"unschätzbar\": {\n        \"form\": \"unschätzbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unsterblich\": {\n        \"form\": \"unsterblich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unsterblicher,unsterbliches,unsterbliche,unsterblichem,unsterblichen\"\n    },\n    \"unternehmerisch\": {\n        \"form\": \"unternehmerisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unternehmerischste,unternehmerische,unternehmerischeren,unternehmerischerem,unternehmerischer,unternehmerischeres,unternehmerischstem,unternehmerischerer,unternehmerischsten,unternehmerisches,unternehmerischen,unternehmerischem,unternehmerischstes,unternehmerischster,unternehmerischere\"\n    },\n    \"unterstützen\": {\n        \"form\": \"unterstützen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"unterstützt,unterstützten,unterstütze,unterstütztest,unterstützest,unterstütztet,unterstützet,unterstütz,untergestützt,unterstützte,unterstützend\"\n    },\n    \"untrennbar\": {\n        \"form\": \"untrennbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"untrennbarer,untrennbares,untrennbarere,untrennbarerer,untrennbareren,untrennbarerem,untrennbarsten,untrennbarstem,untrennbareres,untrennbare,untrennbarster,untrennbarstes,untrennbaren,untrennbarem,untrennbarste\"\n    },\n    \"unumschränkt\": {\n        \"form\": \"unumschränkt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"unumstritten\": {\n        \"form\": \"unumstritten\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unumstrittenere,unumstrittene,unumstrittenste,unumstrittneres,unumstrittnere,unumstrittenem,unumstrittenstem,unumstrittenen,unumstrittner,unumstrittener,unumstrittensten,unumstrittenerem,unumstrittenes,unumstrittenster,unumstrittenstes\"\n    },\n    \"ununterbrochen\": {\n        \"form\": \"ununterbrochen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ununterbrochenen,ununterbrochenem,ununterbrochener,ununterbrochenes,ununterbrochene,unumstrittnerer,unumstritteneres,unumstrittenerer,unumstrittnerem,unumstrittneren,unumstritteneren\"\n    },\n    \"unvergleichbar\": {\n        \"form\": \"unvergleichbar\",\n        \"polarity\": \"0.0833\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvergleichbare,unvergleichbarer,unvergleichbares,unvergleichbarem,unvergleichbaren\"\n    },\n    \"unvergleichlich\": {\n        \"form\": \"unvergleichlich\",\n        \"polarity\": \"0.0967\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unvergleichlicherem,unvergleichlichsten,unvergleichlicheres,unvergleichlicherer,unvergleichlichste,unvergleichlicher,unvergleichlicheren,unvergleichlichen,unvergleichlichem,unvergleichlichstem,unvergleichliche,unvergleichlichster,unvergleichlichstes,unvergleichlichere,unvergleichliches\"\n    },\n    \"unverhofft\": {\n        \"form\": \"unverhofft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverhofftesten,unverhofften,unverhoffterer,unverhoffteres,unverhoffterem,unverhoffteren,unverhofftem,unverhofftestem,unverhofftere,unverhoffte,unverhofftestes,unverhofftes,unverhoffteste,unverhofftester,unverhoffter\"\n    },\n    \"unverkrampft\": {\n        \"form\": \"unverkrampft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverkrampftestes,unverkrampftester,unverkrampftere,unverkrampfterem,unverkrampfteren,unverkrampfterer,unverkrampfte,unverkrampfteres,unverkrampftes,unverkrampfter,unverkrampfteste,unverkrampftesten,unverkrampften,unverkrampftem,unverkrampftestem\"\n    },\n    \"unverwundbar\": {\n        \"form\": \"unverwundbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverwundbare,unverwundbares,unverwundbarer,unverwundbarem,unverwundbaren\"\n    },\n    \"unverzichtbar\": {\n        \"form\": \"unverzichtbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unverzichtbare,unverzichtbaren,unverzichtbarem,unverzichtbareres,unverzichtbares,unverzichtbarer,unverzichtbarerer,unverzichtbarerem,unverzichtbarste,unverzichtbareren,unverzichtbarere,unverzichtbarsten,unverzichtbarstem,unverzichtbarster,unverzichtbarstes\"\n    },\n    \"unwiderstehlich\": {\n        \"form\": \"unwiderstehlich\",\n        \"polarity\": \"0.1874\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unwiderstehlichen,unwiderstehlichem,unwiderstehlichster,unwiderstehlichstes,unwiderstehliche,unwiderstehlichste,unwiderstehlicher,unwiderstehlichstem,unwiderstehlichsten,unwiderstehliches,unwiderstehlicherem,unwiderstehlichere,unwiderstehlicheren,unwiderstehlicherer,unwiderstehlicheres\"\n    },\n    \"unzweifelhaft\": {\n        \"form\": \"unzweifelhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unzweifelhaftesten,unzweifelhaftestem,unzweifelhaftester,unzweifelhaftestes,unzweifelhaftere,unzweifelhafterem,unzweifelhaftes,unzweifelhafteren,unzweifelhafteres,unzweifelhafterer,unzweifelhaftem,unzweifelhaften,unzweifelhafte,unzweifelhafter,unzweifelhafteste\"\n    },\n    \"unübertrefflich\": {\n        \"form\": \"unübertrefflich\",\n        \"polarity\": \"0.078\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unübertrefflichem,unübertrefflichen,unübertrefflicher,unübertreffliches,unübertreffliche\"\n    },\n    \"unübertroffen\": {\n        \"form\": \"unübertroffen\",\n        \"polarity\": \"0.0753\",\n        \"pos\": \"JJ\",\n        \"sense\": \"unübertroffener,unübertroffenes,unübertroffenen,unübertroffenem,unübertroffene\"\n    },\n    \"upgraden\": {\n        \"form\": \"upgraden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"upgrade,upgradest,upgradet,upgradete,upgradetest,upgradeten,upgradetet\"\n    },\n    \"verantwortlich\": {\n        \"form\": \"verantwortlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verantwortliche,verantwortlichere,verantwortlicheres,verantwortlicherer,verantwortlichster,verantwortlichstes,verantwortlicheren,verantwortliches,verantwortlicher,verantwortlicherem,verantwortlichsten,verantwortlichen,verantwortlichste,verantwortlichem,verantwortlichstem\"\n    },\n    \"verantwortungsbewußt\": {\n        \"form\": \"verantwortungsbewußt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verantwortungsvoll\": {\n        \"form\": \"verantwortungsvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verantwortungsvollerem,verantwortungsvollste,verantwortungsvolleren,verantwortungsvolleres,verantwortungsvollerer,verantwortungsvoller,verantwortungsvolles,verantwortungsvollstes,verantwortungsvollster,verantwortungsvollere,verantwortungsvollsten,verantwortungsvollstem,verantwortungsvolle,verantwortungsvollen,verantwortungsvollem\"\n    },\n    \"verbessern\": {\n        \"form\": \"verbessern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verbessere,verbesserst,verbessert,verbesserte,verbessertest,verbesserten,verbessertet,verbessernd\"\n    },\n    \"verbinden\": {\n        \"form\": \"verbinden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verbinde,verbindest,verbindet,verband,verbandest,verbandst,verbanden,verbandet,verbände,verbändest,verbänden,verbändet,verbind,verbindend,verbunden\"\n    },\n    \"verbindlich\": {\n        \"form\": \"verbindlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verbindlichen,verbindlichem,verbindlicher,verbindliche,verbindliches\"\n    },\n    \"verblüffend\": {\n        \"form\": \"verblüffend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verdienen\": {\n        \"form\": \"verdienen\",\n        \"polarity\": \"0.0989\",\n        \"pos\": \"VB\",\n        \"sense\": \"verdient,verdienten,verdientest,verdienest,verdienet,verdiene,verdiente,verdien,verdienst,verdientet,verdienend\"\n    },\n    \"verdient\": {\n        \"form\": \"verdient\",\n        \"polarity\": \"0.3612\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verdiente,verdienter,verdientes,verdienten,verdientem\"\n    },\n    \"veredeln\": {\n        \"form\": \"veredeln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"veredelten,veredele,veredelst,veredle,veredelte,veredlest,veredeltest,veredelt,veredlet,veredeltet,veredelnd\"\n    },\n    \"verehren\": {\n        \"form\": \"verehren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verehre,verehr,verehrt,verehret,verehrest,verehrte,verehrst,verehrtet,verehrtest,verehrten,verehrend\"\n    },\n    \"verehrt\": {\n        \"form\": \"verehrt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verehrteste,verehrtere,verehrterem,verehrter,verehrtes,verehrteren,verehrtem,verehrten,verehrtestes,verehrterer,verehrtester,verehrteres,verehrte,verehrtestem,verehrtesten\"\n    },\n    \"vereidigen\": {\n        \"form\": \"vereidigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vereidigte,vereidigten,vereidige,vereidig,vereidigt,vereidigst,vereidigest,vereidigtet,vereidigtest,vereidiget,vereidigend\"\n    },\n    \"vereinen\": {\n        \"form\": \"vereinen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vereintet,vereinest,vereine,vereintest,vereinst,vereint,vereinte,vereinet,vereinten,verein,vereinende\"\n    },\n    \"vereinfachen\": {\n        \"form\": \"vereinfachen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vereinfache,vereinfachst,vereinfachest,vereinfacht,vereinfachte,vereinfachtest,vereinfachten,vereinfachtet,vereinfach,vereinfachend\"\n    },\n    \"vererben\": {\n        \"form\": \"vererben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vererbte,vererbest,vererbet,vererbtet,vererbt,vererbtest,vererbst,vererbe,vererbten,vererb,vererbend\"\n    },\n    \"verfeinern\": {\n        \"form\": \"verfeinern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verfeinere,verfeinerst,verfeinert,verfeinerte,verfeinertest,verfeinerten,verfeinertet,verfeinernd\"\n    },\n    \"verführerisch\": {\n        \"form\": \"verführerisch\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vergeben\": {\n        \"form\": \"vergeben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergebe,vergibst,vergebest,vergibt,vergebt,vergebet,vergab,vergabst,vergaben,vergabt,vergäbe,vergäbest,vergäbst,vergäben,vergäbet,vergäbt\"\n    },\n    \"vergnügen\": {\n        \"form\": \"vergnügen\",\n        \"polarity\": \"0.1838\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergnügtet,vergnügest,vergnüge,vergnügten,vergnüg,vergnügte,vergnüget,vergnügst,vergnügt,vergnügtest,vergnügend\"\n    },\n    \"vergolden\": {\n        \"form\": \"vergolden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergoldeten,vergoldest,vergolde,vergoldete,vergoldetest,vergoldet,vergoldtet,vergold,vergoldetet,vergoldten,vergoldte,vergoldtest,vergoldend\"\n    },\n    \"vergrößern\": {\n        \"form\": \"vergrößern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergrößere,vergrößert,vergrößertest,vergrößerte,vergrößeren,vergrößertet,vergrößerst,vergrößerten,vergrößernd\"\n    },\n    \"vergöttern\": {\n        \"form\": \"vergöttern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vergöttertet,vergötterten,vergöttertest,vergötterst,vergötteren,vergötterte,vergöttert,vergöttere,vergötternd\"\n    },\n    \"vergöttert\": {\n        \"form\": \"vergöttert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verhandeln\": {\n        \"form\": \"verhandeln\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verhandelt,verhandle,verhandeltest,verhandelten,verhandele,verhandeltet,verhandelst,verhandelen,verhandelte,verhandlest ,verhandelnd\"\n    },\n    \"verheißungsvoll\": {\n        \"form\": \"verheißungsvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verheißungsvollen,verheißungsvollem,verheißungsvoller,verheißungsvolles,verheißungsvolle\"\n    },\n    \"veritabel\": {\n        \"form\": \"veritabel\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"veritabelster,veritabelstes,veritabelsten,veritableres,veritable,veritabler,veritables,veritablen,veritablere,veritabelstem,veritablerer,veritablem,veritabelste,veritablerem,veritableren\"\n    },\n    \"verlockend\": {\n        \"form\": \"verlockend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verlockender,verlockendes,verlockende,verlockenden,verlockendem,verlockenderer,verlockenderes,verlockendere,verlockenderen,verlockenderem,verlockendster,verlockendstes,verlockendste,verlockendsten,verlockendstem\"\n    },\n    \"verlässlich\": {\n        \"form\": \"verlässlich\",\n        \"polarity\": \"0.0854\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vermachen\": {\n        \"form\": \"vermachen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vermachten,vermachst,vermachtest,vermachest,vermachtet,vermacht,vermache,vermachet,vermach,vermachte,vergemacht,vermachend\"\n    },\n    \"vermehrt\": {\n        \"form\": \"vermehrt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vermehrter,vermehrtes,vermehrte,vermehrten,vermehrtem\"\n    },\n    \"vermitteln\": {\n        \"form\": \"vermitteln\",\n        \"polarity\": \"0.0699\",\n        \"pos\": \"VB\",\n        \"sense\": \"vermittelte,vermittelst,vermittelen,vermittelnd,vermittelt,vermittle,vermittelten,vermittele,vermittlest,vermitteltet,vermitteltest,vermittlet\"\n    },\n    \"vernünftig\": {\n        \"form\": \"vernünftig\",\n        \"polarity\": \"0.3436\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verschönern\": {\n        \"form\": \"verschönern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verschönere,verschönert,verschönertest,verschöner,verschönerten,verschönerst,verschönerte,verschöneren,verschönertet,verschöndernd\"\n    },\n    \"versichern\": {\n        \"form\": \"versichern\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"versichertet,versicherst,versicherte,versichere,versichertest,versicheren,versichert,versicherten,versichernd\"\n    },\n    \"versiert\": {\n        \"form\": \"versiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"versiertem,versierteres,versierten,versierterer,versierte,versierterem,versiertes,versierter,versierteren,versiertere,versierteste,versiertestem,versiertesten,versiertestes,versiertester\"\n    },\n    \"verstehen\": {\n        \"form\": \"verstehen\",\n        \"polarity\": \"0.0957\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstehe,verstehst,verstehest,versteht,verstehet,verstand,verstandest,verstandst,verstanden,verstandet,verstände,verstünde,verständest,verstündest,verständen,verstünden\"\n    },\n    \"verständlich\": {\n        \"form\": \"verständlich\",\n        \"polarity\": \"0.0978\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verstärken\": {\n        \"form\": \"verstärken\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verstärktest,verstärkt,verstärk,verstärkte,verstärke,verstärktet,verstärket,verstärkest,verstärkten,verstärkst,verstärkend\"\n    },\n    \"versöhnen\": {\n        \"form\": \"versöhnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"versöhnte,versöhnest,versöhn,versöhnst,versöhnten,versöhnt,versöhne,versöhnet,versöhntet,versöhntest,versöhnend\"\n    },\n    \"versöhnlich\": {\n        \"form\": \"versöhnlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"verteidigen\": {\n        \"form\": \"verteidigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verteidige,verteidigtest,verteidiget,verteidigst,verteidigt,verteidigtet,verteidigte,verteidig,verteidigest,verteidigten,verteidigend\"\n    },\n    \"vertrauenerweckend\": {\n        \"form\": \"vertrauenerweckend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vertrauenerweckenden,vertrauenerweckenderer,vertrauenerweckendem,vertrauenerweckenderes,vertrauenerweckende,vertrauenerweckender,vertrauenerweckendere,vertrauenerweckenderen,vertrauenerweckendes,vertrauenerweckendste,vertrauenerweckendstem,vertrauenerweckendsten,vertrauenerweckendstes,vertrauenerweckendster,vertrauenerweckenderem\"\n    },\n    \"vertrauensvoll\": {\n        \"form\": \"vertrauensvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vertrauensvollste,vertrauensvolleren,vertrauensvolles,vertrauensvollstem,vertrauensvoller,vertrauensvollerem,vertrauensvollster,vertrauensvollen,vertrauensvollstes,vertrauensvollem,vertrauensvollere,vertrauensvollsten,vertrauensvolle,vertrauensvolleres,vertrauensvollerer\"\n    },\n    \"vertrauenswürdig\": {\n        \"form\": \"vertrauenswürdig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vertraulich\": {\n        \"form\": \"vertraulich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vertraulicher,vertrauliches,vertrauliche,vertraulichen,vertraulichem,vertraulicherer,vertraulicheres,vertraulichere,vertraulicheren,vertraulicherem,vertraulichster,vertraulichstes,vertraulichste,vertraulichsten,vertraulichstem\"\n    },\n    \"vertraut\": {\n        \"form\": \"vertraut\",\n        \"polarity\": \"0.2266\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vertraute,vertrautem,vertrautestem,vertrauter,vertrautes,vertrauten,vertrautestes,vertrauteste,vertrautester,vertrautere,vertrauteres,vertrauterer,vertrautesten,vertrauteren,vertrauterem\"\n    },\n    \"verwendbar\": {\n        \"form\": \"verwendbar\",\n        \"polarity\": \"0.0859\",\n        \"pos\": \"JJ\",\n        \"sense\": \"verwendbares,verwendbarer,verwendbare,verwendbaren,verwendbarem\"\n    },\n    \"verwirklichen\": {\n        \"form\": \"verwirklichen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwirkliche,verwirklichst,verwirklichest,verwirklicht,verwirklichet,verwirklichte,verwirklichtest,verwirklichten,verwirklichtet,verwirklich,verwirklichend\"\n    },\n    \"verwöhnen\": {\n        \"form\": \"verwöhnen\",\n        \"polarity\": \"0.3571\",\n        \"pos\": \"VB\",\n        \"sense\": \"verwöhnet,verwöhnest,verwöhnten,verwöhnt,verwöhntest,verwöhne,verwöhn,verwöhntet,verwöhnst,verwöhnte,verwöhnend\"\n    },\n    \"verzeihen\": {\n        \"form\": \"verzeihen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"verzeihe,verzeihst,verzeihest,verzeiht,verzeihet,verzieh,verziehst,verziehen,verzieht,verziehe,verziehest,verziehet,verzeih,verzeihend\"\n    },\n    \"verzückt\": {\n        \"form\": \"verzückt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vielfältig\": {\n        \"form\": \"vielfältig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"vielseitig\": {\n        \"form\": \"vielseitig\",\n        \"polarity\": \"0.0957\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vielseitigstem,vielseitigsten,vielseitigem,vielseitigen,vielseitigerer,vielseitigste,vielseitige,vielseitigeren,vielseitigerem,vielseitigeres,vielseitigster,vielseitiges,vielseitiger,vielseitigere,vielseitigstes\"\n    },\n    \"vielversprechend\": {\n        \"form\": \"vielversprechend\",\n        \"polarity\": \"0.0849\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vielversprechendsten,vielversprechendste,vielversprechendstem,vielversprechende,vielversprechendes,vielversprechender,vielversprechenderes,vielversprechendem,vielversprechenderer,vielversprechendstes,vielversprechenden,vielversprechendster,vielversprechenderen,vielversprechenderem,vielversprechendere\"\n    },\n    \"vital\": {\n        \"form\": \"vital\",\n        \"polarity\": \"0.2122\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vitaler,vitales,vitale,vitalen,vitalem,vitalerer,vitaleres,vitalere,vitalerem,vitaleren,vitalster,vitalstes,vitalste,vitalsten,vitalstem\"\n    },\n    \"vollkommen\": {\n        \"form\": \"vollkommen\",\n        \"polarity\": \"0.0945\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vollkommenen,vollkommenem,vollkommenste,vollkommene,vollkommnere,vollkommeneren,vollkommenerem,vollkommenstem,vollkommensten,vollkommnerem,vollkommenere,vollkommneren,vollkommner,vollkommenster,vollkommenstes,vollkommenerer\"\n    },\n    \"vollständig\": {\n        \"form\": \"vollständig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"voranbringen\": {\n        \"form\": \"voranbringen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"voranbringe,voranbringst,voranbringest,voranbringt,voranbringet,voranbrahte,voranbrachtest,voranbrachten,voranbrachtet,voranbrächte,voranbrächtest,voranbrächten,voranbrächtet,voranbringend,voranzubringen,vorangebracht\"\n    },\n    \"vorankommen\": {\n        \"form\": \"vorankommen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vorankomme,vorannkommst,vorankommest,vorankommt,vorankam,vorankamst,vorankamen,vorankamt,vorankäme,vorankämest,vorankämst,vorankämen,vorankämet,vorankämt,vorankommend,voranzukommen\"\n    },\n    \"vorantreiben\": {\n        \"form\": \"vorantreiben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"vorantreibe,vorantreibst,vorantreibest,vorantreibt,vorantreibet,vorantrieb,vorantriebe,vorantriebst,vorantriebest,vorantrieben,vorantriebt,vorantreibend,voranzutreiben,vorangetrieben\"\n    },\n    \"vorbehaltlos\": {\n        \"form\": \"vorbehaltlos\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorbehaltlosen,vorbehaltloser,vorbehaltloses,vorbehaltlosem,vorbehaltlose\"\n    },\n    \"vorbereiten\": {\n        \"form\": \"vorbereiten\",\n        \"polarity\": \"0.1036\",\n        \"pos\": \"VB\",\n        \"sense\": \"vorbereitet,vorbereitetest,vorbereite,vorbereiteten,vorbereitest,vorbereitete,vorbereitetet,vorbereitend,vorzubereiten\"\n    },\n    \"vorbildlich\": {\n        \"form\": \"vorbildlich\",\n        \"polarity\": \"0.3188\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorbildlichsten,vorbildlicher,vorbildlichste,vorbildlichstem,vorbildlichen,vorbildlichem,vorbildlichere,vorbildliche,vorbildlicherem,vorbildliches,vorbildlichster,vorbildlichstes,vorbildlicheren,vorbildlicheres,vorbildlicherer\"\n    },\n    \"vorsichtig\": {\n        \"form\": \"vorsichtig\",\n        \"polarity\": \"0.2313\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorsichtigsten,vorsichtigstes,vorsichtigster,vorsichtige,vorsichtigste,vorsichtigstem,vorsichtigeren,vorsichtiges,vorsichtiger,vorsichtigerem,vorsichtigere,vorsichtigen,vorsichtigem,vorsichtigeres,vorsichtigerer\"\n    },\n    \"vorsorgen\": {\n        \"form\": \"vorsorgen\",\n        \"polarity\": \"0.0878\",\n        \"pos\": \"VB\",\n        \"sense\": \"vorsorgst,vorsorgte,vorsorgt,vorsorgtet,vorsorge,vorsorgtest,vorsorgten,vorgesorgt,vorsorget,vorsorgest,vorsorgend,vorzusorgen\"\n    },\n    \"vorsorglich\": {\n        \"form\": \"vorsorglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorsorgliche,vorsorgliches,vorsorglicher,vorsorglichem,vorsorglichen\"\n    },\n    \"vorteilhaft\": {\n        \"form\": \"vorteilhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorteilhaftestes,vorteilhafteste,vorteilhaftes,vorteilhafter,vorteilhafte,vorteilhaftestem,vorteilhaftesten,vorteilhaften,vorteilhaftester,vorteilhaftem,vorteilhafteren,vorteilhafterem,vorteilhafteres,vorteilhafterer,vorteilhaftere\"\n    },\n    \"vorwärts\": {\n        \"form\": \"vorwärts\",\n        \"polarity\": \"0.0961\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"vorzeigbar\": {\n        \"form\": \"vorzeigbar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"vorzeigbare,vorzeigbarem,vorzeigbaren,vorzeigbarste,vorzeigbarster,vorzeigbarere,vorzeigbarer,vorzeigbarstem,vorzeigbarsten,vorzeigbares,vorzeigbareres,vorzeigbarerer,vorzeigbarerem,vorzeigbarstes,vorzeigbareren\"\n    },\n    \"vorzüglich\": {\n        \"form\": \"vorzüglich\",\n        \"polarity\": \"0.3223\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wachsam\": {\n        \"form\": \"wachsam\",\n        \"polarity\": \"0.0891\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wachsamsten,wachsameren,wachsamerem,wachsamstem,wachsamstes,wachsamster,wachsamen,wachsamem,wachsamer,wachsameres,wachsamerer,wachsamere,wachsames,wachsamste,wachsame\"\n    },\n    \"wachsen\": {\n        \"form\": \"wachsen\",\n        \"polarity\": \"0.3607\",\n        \"pos\": \"VB\",\n        \"sense\": \"wachstest,wachsest,wachsten,wachstet,gewachsen,wachste,wachset,wachs,wachst,wachse\"\n    },\n    \"wachsend\": {\n        \"form\": \"wachsend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wachsender,wachsendes,wachsende,wachsendem,wachsenden\"\n    },\n    \"wagen\": {\n        \"form\": \"wagen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wagten,wagst,wagest,wage,wagtet,gewagt,wag,wagtest,waget,wagte,wagt,wagend\"\n    },\n    \"wahr\": {\n        \"form\": \"wahr\",\n        \"polarity\": \"0.2176\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wahrer,wahres,wahre,wahrem,wahren,wahrerer,wahreres,wahrere,wahrerem,wahreren,wahrsten,wahrstes,wahrster,wahrste,wahrstem\"\n    },\n    \"wahren\": {\n        \"form\": \"wahren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wahrt,wahret,wahrten,wahre,wahrtet,wahrest,gewahrt,wahr,wahrtest,wahrst,wahrte\"\n    },\n    \"warm\": {\n        \"form\": \"warm\",\n        \"polarity\": \"0.3796\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"warmherzig\": {\n        \"form\": \"warmherzig\",\n        \"polarity\": \"0.1921\",\n        \"pos\": \"JJ\",\n        \"sense\": \"warmherziger,warmherziges,warmherzigem,warmherzigen,warmherzige,wärmst\"\n    },\n    \"wegweisend\": {\n        \"form\": \"wegweisend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wegweisendem,wegweisenden,wegweisender,wegweisendes,wegweisende\"\n    },\n    \"weich\": {\n        \"form\": \"weich\",\n        \"polarity\": \"0.3591\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weicher,weiche,weichem,weichen,weiches,weicherer,weicheres,weichere,weicherem,weicheren,weichster,weichstes,weichste,weichsten,weichstem\"\n    },\n    \"weise\": {\n        \"form\": \"weise\",\n        \"polarity\": \"0.2244\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weiseste,weisestem,weiserem,weisesten,weiseren,weisester,weisestes,weisere,weises,weiser,weisem,weisen,weiseres,weiserer\"\n    },\n    \"weiterempfehlen\": {\n        \"form\": \"weiterempfehlen\",\n        \"polarity\": \"0.2101\",\n        \"pos\": \"VB\",\n        \"sense\": \"weiterempfehle,weiterempfiehlst,weiterempfehlest,weiterempfiehlt,weiterempfehlt,weiterempfehlet,weiterempfahl,weiterempfahlst,weiterempfahlen,weiterempfahlt,weiterempfähle,weiterempföhle,weiterempfählest,weiterempfählst,weiterempföhlest,weiterempföhlst\"\n    },\n    \"weitgehend\": {\n        \"form\": \"weitgehend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weitgehenderem,weitgehenden,weitgehendem,weitgehender,weitgehendes,weitgehendste,weitgehendstes,weitgehendster,weitgehendere,weitgehende,weitgehenderes,weitgehendstem,weitgehenderer,weitgehenderen,weitgehendsten\"\n    },\n    \"weitläufig\": {\n        \"form\": \"weitläufig\",\n        \"polarity\": \"0.1966\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"weitreichend\": {\n        \"form\": \"weitreichend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weitreichendsten,weitreichendstem,weitreichendster,weitreichende,weitreichendste,weitreichenderem,weitreichenderen,weitreichendstes,weitreichendes,weitreichender,weitreichenderes,weitreichendem,weitreichendere,weitreichenderer,weitreichenden\"\n    },\n    \"weiträumig\": {\n        \"form\": \"weiträumig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weiträumiger,weiträumiges,weiträumigem,weiträumigen,weiträumige\"\n    },\n    \"weitsichtig\": {\n        \"form\": \"weitsichtig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"weitsichtige,weitsichtiges,weitsichtiger,weitsichtigem,weitsichtigen\"\n    },\n    \"weltberühmt\": {\n        \"form\": \"weltberühmt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wertig\": {\n        \"form\": \"wertig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wertiger,wertiges,wertige,wertigem,wertigen\"\n    },\n    \"wertschätzen\": {\n        \"form\": \"wertschätzen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wertschätzten,wertschätzet,wertschätzest,wertschätzt,wertschätze,wertgeschätzt,wertschätztet,wertschätzte,wertschätztest,wertschätzend,wertzuschätzen\"\n    },\n    \"wertvoll\": {\n        \"form\": \"wertvoll\",\n        \"polarity\": \"0.357\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wertvolleres,wertvollerer,wertvollster,wertvollerem,wertvolleren,wertvollsten,wertvollstem,wertvolle,wertvollen,wertvollem,wertvoller,wertvollere,wertvollstes,wertvolles,wertvollste\"\n    },\n    \"wichtig\": {\n        \"form\": \"wichtig\",\n        \"polarity\": \"0.3822\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wichtigsten,wichtigstem,wichtigster,wichtige,wichtigstes,wichtiger,wichtiges,wichtigere,wichtigerem,wichtigem,wichtigeren,wichtigerer,wichtigen,wichtigeres,wichtigste\"\n    },\n    \"widerstandsfähig\": {\n        \"form\": \"widerstandsfähig\",\n        \"polarity\": \"0.0877\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wiederaufleben\": {\n        \"form\": \"wiederaufleben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"\"\n    },\n    \"wiederbeleben\": {\n        \"form\": \"wiederbeleben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiederbelebtet,wiederbelebst,wiederbelebte,wiederbelebest,wiederbelebt,wiederbelebe,wiederbelebet,wiederbelebtest,wiederbelebten,wiederbelebend,wiederzubeleben\"\n    },\n    \"wiedergewinnen\": {\n        \"form\": \"wiedergewinnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiedergewinne,wiedergewinnst,wiedergewinnest,wiedergewinnt,wiedergewinnet,wiedergewann,wiedergewannst,wiedergewannen,wiedergewannt,wiedergewänne,wiedergewönne,wiedergewännest,wiedergewännst,weidergewönnest,wiedergewönnst,wiedergewännen\"\n    },\n    \"wiedergutmachen\": {\n        \"form\": \"wiedergutmachen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiedergutmachten,wiedergutmachte,wiedergutgemacht,wiedergutmachst,wiedergutmachet,wiedergutmachtest,wiedergutmacht,wiedergutmachtet,wiedergutmachest,wiedergutmache\"\n    },\n    \"wiederherstellen\": {\n        \"form\": \"wiederherstellen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiederherstellest,wiederherstellet,wiederhergestellt,wiederherstellt,wiederherstelle,wiederherstellst,wiederherstelltet,wiederherstellte,wiederherstellten,wiederherstelltest\"\n    },\n    \"wiederkehren\": {\n        \"form\": \"wiederkehren\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiederkehrten,wiederkehret,wiederkehrst,wiederkehrte,wiederkehrtet,wiedergekehrt,wiederkehrest,wiederkehrtest,wiederkehrt,wiederkehre,wiederkehrend\"\n    },\n    \"wiedervereinigen\": {\n        \"form\": \"wiedervereinigen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"wiedervereinigt,wiedervereinige,wiedervereinigst,wiedervereinigte,wiedervereinigten,wiedervereinigtest,wiedervereiniget,wiedervereinigtet,wiedervereinigest,wiedervereinigend\"\n    },\n    \"willensstark\": {\n        \"form\": \"willensstark\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"willensstarker,willensstarkes,willensstarke,willensstarkem,willensstarken\"\n    },\n    \"willkommen\": {\n        \"form\": \"willkommen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"willkommneren,willkommnere,willkommenstem,willkommnerem,willkommensten,willkommenstes,willkommenerer,willkommeneres,willkommenster,willkommenerem,willkommeneren,willkommenere,willkommene,willkommenen,willkommenes,willkommener\"\n    },\n    \"wirksam\": {\n        \"form\": \"wirksam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wirksamstes,wirksamster,wirksamerem,wirksameren,wirksamen,wirksamerer,wirksamem,wirksameres,wirksamer,wirksamere,wirksamstem,wirksamsten,wirksames,wirksamste,wirksame,willkommner,willkommenste,willkommenst,willkommneres,willkommenem,willkommnerer\"\n    },\n    \"wirkungsvoll\": {\n        \"form\": \"wirkungsvoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wirkungsvollere,wirkungsvolle,wirkungsvolles,wirkungsvoller,wirkungsvollem,wirkungsvollste,wirkungsvollerem,wirkungsvollen,wirkungsvolleren,wirkungsvollsten,wirkungsvollerer,wirkungsvollstem,wirkungsvollster,wirkungsvolleres,wirkungsvollstes\"\n    },\n    \"wirtschaftlich\": {\n        \"form\": \"wirtschaftlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wirtschaftlicherer,wirtschaftlicheren,wirtschaftlicherem,wirtschaftlicheres,wirtschaftlichstes,wirtschaftliche,wirtschaftlichster,wirtschaftlichere,wirtschaftliches,wirtschaftlicher,wirtschaftlichsten,wirtschaftlichem,wirtschaftlichstem,wirtschaftlichen,wirtschaftlichste\"\n    },\n    \"witzig\": {\n        \"form\": \"witzig\",\n        \"polarity\": \"0.4463\",\n        \"pos\": \"JJ\",\n        \"sense\": \"witzigeren,witzigstem,witzigerem,witzigen,witzigem,witziges,witzige,witzigere,witziger,witzigsten,witzigste,witzigstes,witzigerer,witzigster,witzigeres\"\n    },\n    \"wohlbehalten\": {\n        \"form\": \"wohlbehalten\",\n        \"polarity\": \"0.0883\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohlbehaltenes,wohlbehaltener,wohlbehaltenen,wohlbehaltenem,wohlbehaltene\"\n    },\n    \"wohlgeordnet\": {\n        \"form\": \"wohlgeordnet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohlgeordnetem,wohlgeordneten,wohlgeordnete,wohlgeordnetes,wohlgeordneter\"\n    },\n    \"wohlhabend\": {\n        \"form\": \"wohlhabend\",\n        \"polarity\": \"0.201\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohlhabendes,wohlhabender,wohlhabendem,wohlhabenden,wohlhabende\"\n    },\n    \"wohlig\": {\n        \"form\": \"wohlig\",\n        \"polarity\": \"0.32\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohliges,wohlige,wohliger,wohligste,wohligen,wohligem,wohligerem,wohligsten,wohligeren,wohligeres,wohligerer,wohligstem,wohligstes,wohligere,wohligster\"\n    },\n    \"wohltuend\": {\n        \"form\": \"wohltuend\",\n        \"polarity\": \"0.2113\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohltuenden,wohltuendem,wohltuender,wohltuendere,wohltuendste,wohltuendes,wohltuendstem,wohltuenderes,wohltuenderer,wohltuendstes,wohltuendster,wohltuenderen,wohltuendsten,wohltuende,wohltuenderem\"\n    },\n    \"wohltätig\": {\n        \"form\": \"wohltätig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohltätiges,wohltätiger,wohltätige,wohltätigen,wohltätigem\"\n    },\n    \"wohlwollend\": {\n        \"form\": \"wohlwollend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohlwollendem,wohlwollenderen,wohlwollenderem,wohlwollendste,wohlwollendster,wohlwollendstes,wohlwollendsten,wohlwollendere,wohlwollendstem,wohlwollende,wohlwollender,wohlwollenderer,wohlwollendes,wohlwollenderes,wohlwollenden\"\n    },\n    \"wohnlich\": {\n        \"form\": \"wohnlich\",\n        \"polarity\": \"0.0885\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wohnlichstes,wohnlichster,wohnlichere,wohnlichstem,wohnlichsten,wohnlicheres,wohnlicherer,wohnlichen,wohnlichste,wohnlichem,wohnliche,wohnlicheren,wohnliches,wohnlicher,wohnlicherem\"\n    },\n    \"wunderbar\": {\n        \"form\": \"wunderbar\",\n        \"polarity\": \"0.7234\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wunderbarerem,wunderbarste,wunderbarster,wunderbarerer,wunderbarstes,wunderbareres,wunderbareren,wunderbares,wunderbarer,wunderbare,wunderbaren,wunderbarem,wunderbarsten,wunderbarere,wunderbarstem\"\n    },\n    \"wundersam\": {\n        \"form\": \"wundersam\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wundersamste,wundersame,wundersameren,wundersamem,wundersamen,wundersamerem,wundersamstem,wundersamer,wundersamsten,wundersamere,wundersamster,wundersamerer,wundersames,wundersamstes,wundersameres\"\n    },\n    \"wunderschön\": {\n        \"form\": \"wunderschön\",\n        \"polarity\": \"0.7048\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"wundervoll\": {\n        \"form\": \"wundervoll\",\n        \"polarity\": \"0.308\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wundervollster,wundervollstes,wundervollere,wundervollste,wundervollstem,wundervolleren,wundervollsten,wundervolleres,wundervollerer,wundervollerem,wundervolle,wundervolles,wundervoller,wundervollen,wundervollem\"\n    },\n    \"wunschgemäß\": {\n        \"form\": \"wunschgemäß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"wunschgemäßer,wunschgemäßen,wunschgemäßem,wunschgemäße,wunschgemäßes\"\n    },\n    \"wärmen\": {\n        \"form\": \"wärmen\",\n        \"polarity\": \"0.1956\",\n        \"pos\": \"VB\",\n        \"sense\": \"wärmtet,wärmet,gewärmt,wärm,wärmtest,wärmest,wärmt,wärmst,wärmten,wärmte,wärme\"\n    },\n    \"wärmstens\": {\n        \"form\": \"wärmstens\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"RB\",\n        \"sense\": \"\"\n    },\n    \"wünschenswert\": {\n        \"form\": \"wünschenswert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"würdevoll\": {\n        \"form\": \"würdevoll\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"würdig\": {\n        \"form\": \"würdig\",\n        \"polarity\": \"0.0801\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"würdigen\": {\n        \"form\": \"würdigen\",\n        \"polarity\": \"0.2056\",\n        \"pos\": \"VB\",\n        \"sense\": \"würdigt,würdigst,würdiget,würdigtest,würdigten,würdig,würdigte,würdigtet,würdigest,gewürdigt,würdige\"\n    },\n    \"zauberhaft\": {\n        \"form\": \"zauberhaft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zauberhaftesten,zauberhaftes,zauberhaftestem,zauberhafter,zauberhaften,zauberhaftem,zauberhaftestes,zauberhaftester,zauberhafterer,zauberhafteres,zauberhaftere,zauberhafterem,zauberhafte,zauberhafteren,zauberhafteste\"\n    },\n    \"zeitsparend\": {\n        \"form\": \"zeitsparend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zeitsparendere,zeitsparenderem,zeitsparenderen,zeitsparendem,zeitsparende,zeitsparendstem,zeitsparendsten,zeitsparendster,zeitsparendstes,zeitsparendste,zeitsparenderer,zeitsparenden,zeitsparenderes,zeitsparendes,zeitsparender\"\n    },\n    \"zielgerichtet\": {\n        \"form\": \"zielgerichtet\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zielgerichtetem,zielgerichteten,zielgerichtete,zielgerichteter,zielgerichtetes\"\n    },\n    \"zielstrebig\": {\n        \"form\": \"zielstrebig\",\n        \"polarity\": \"0.1955\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zielstrebigeren,zielstrebigerem,zielstrebiges,zielstrebigstem,zielstrebiger,zielstrebigsten,zielstrebige,zielstrebigstes,zielstrebigster,zielstrebigem,zielstrebigen,zielstrebigste,zielstrebigere,zielstrebigeres,zielstrebigerer\"\n    },\n    \"zivilisiert\": {\n        \"form\": \"zivilisiert\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zivilisiertes,zivilisierterem,zivilisierteste,zivilisierteren,zivilisiertesten,zivilisierteres,zivilisierterer,zivilisiertestem,zivilisiertestes,zivilisiertester,zivilisiertere,zivilisiertem,zivilisierten,zivilisierter,zivilisierte\"\n    },\n    \"zufließen\": {\n        \"form\": \"zufließen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"zufließe,zufließt,zufließest,zufließet,zufloss,zufloß,zuflossest,zuflosst,zufloßt,zuflossen,zuflösse,zuflössest,zuflössen\"\n    },\n    \"zufrieden\": {\n        \"form\": \"zufrieden\",\n        \"polarity\": \"0.393\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zufriednere,zufriedner,zufriedenerem,zufriedneres,zufriedenstes,zufriedenster,zufriednerer,zufriedensten,zufriedene,zufriednerem,zufriedenstem,zufriedneren,zufriedenes,zufriedenste,zufriedenere\"\n    },\n    \"zufriedenstellend\": {\n        \"form\": \"zufriedenstellend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zufriedenstellender,zufriedenstellendes,zufriedenstellende,zufriedenstellenden,zufriedenstellendem,zufriedenstellenderer,zufriedenstellenderes,zufriedenstellenderem,zufriedenstellenderen,zufriedenstellendere,zufriedenstellendster,zufriedenstellendstes,zufriedenstellendste,zufriedenstellendsten,zufriedenstellendstem,zufriedenem,zufriedenen,zufriedeneren,zufriedeneres,zufriedener,zufriedenerer\"\n    },\n    \"zufügen\": {\n        \"form\": \"zufügen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zugeben\": {\n        \"form\": \"zugeben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"zugebe,zugibst,zugebest,zugibt,zugebt,zugab,zugäbe,zugabst,zugäbest,zugäbst,zugaben,zugäben,zugabt,zugäbet,zugäbt\"\n    },\n    \"zugreifen\": {\n        \"form\": \"zugreifen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"zugreife,zugreifst,zugreift,zugreifen,zugreifet,zugriff,zugriffe,zugriffst,zugriffest,zugriffen,zugrifft,zugriffet,zugreifend,zuzugreifen,zugegriffen\"\n    },\n    \"zugänglich\": {\n        \"form\": \"zugänglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"zukunftsweisend\": {\n        \"form\": \"zukunftsweisend\",\n        \"polarity\": \"0.0859\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zukunftsweisendem,zukunftsweisenden,zukunftsweisende,zukunftsweisendes,zukunftsweisender\"\n    },\n    \"zulegen\": {\n        \"form\": \"zulegen\",\n        \"polarity\": \"0.0922\",\n        \"pos\": \"VB\",\n        \"sense\": \"zulegest,zulegtet,zugelegt,zulegten,zulegst,zulegte,zulegt,zuleget,zulege,zulegtest,zulegend,zuzulegen\"\n    },\n    \"zulässig\": {\n        \"form\": \"zulässig\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zulässige,zulässiger,zulässiges,zulässigen,zulässigem\"\n    },\n    \"zurückgewinnen\": {\n        \"form\": \"zurückgewinnen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"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\"\n    },\n    \"zusammenhalten\": {\n        \"form\": \"zusammenhalten\",\n        \"polarity\": \"0.0834\",\n        \"pos\": \"VB\",\n        \"sense\": \"zusammenhalte,zusammenhältst,zusammenhaltest,zusammenhaltet,zusammenhält,zusammenhielt,zusammenhielte,zusammenhieltest,zusammenhieltst,zusammenhielten,zusammenhieltet,zusammenhaltend,zusammenzuhalten,zusammengehalten\"\n    },\n    \"zuschießen\": {\n        \"form\": \"zuschießen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"zuschieße,zuschießt,zuschießest,zuschießet,zuschoss,zuschoß,zuschossest,zuschosst,zuschoßt,zuschossen,zuschösse,zuschössest,zuschössen,zuschösset\"\n    },\n    \"zustimmen\": {\n        \"form\": \"zustimmen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"zustimme,zustimmst,zustimmest,zustimmt,zustimmte,zustimmtest,zustimmten,zustimmtet,zustimmend,zugestimmt\"\n    },\n    \"zuverlässig\": {\n        \"form\": \"zuverlässig\",\n        \"polarity\": \"0.2052\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"zuversichtlich\": {\n        \"form\": \"zuversichtlich\",\n        \"polarity\": \"0.2179\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zuversichtlichen,zuversichtlichem,zuversichtlichste,zuversichtlichstem,zuversichtlichsten,zuversichtlicherer,zuversichtlicheres,zuversichtlicherem,zuversichtlicheren,zuversichtliche,zuversichtlichstes,zuversichtlicher,zuversichtlichere,zuversichtlichster,zuversichtliches\"\n    },\n    \"zuvorkommend\": {\n        \"form\": \"zuvorkommend\",\n        \"polarity\": \"0.6669\",\n        \"pos\": \"JJ\",\n        \"sense\": \"zuvorkommendste,zuvorkommende,zuvorkommenderes,zuvorkommenderer,zuvorkommenderen,zuvorkommendes,zuvorkommendstes,zuvorkommender,zuvorkommenderem,zuvorkommenden,zuvorkommendem,zuvorkommendere,zuvorkommendsten,zuvorkommendstem,zuvorkommendster\"\n    },\n    \"zweifellos\": {\n        \"form\": \"zweifellos\",\n        \"polarity\": \"0.0839\",\n        \"pos\": \"JJ\",\n        \"sense\": \"\"\n    },\n    \"Übereinkunft\": {\n        \"form\": \"Übereinkunft\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übereinkünfte,Übereinkünften\"\n    },\n    \"Übereinstimmung\": {\n        \"form\": \"Übereinstimmung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Übereinstimmungen\"\n    },\n    \"Überfluß\": {\n        \"form\": \"Überfluß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überfluss,Überflusses,Überflusse\"\n    },\n    \"Überlegenheit\": {\n        \"form\": \"Überlegenheit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Überlegung\": {\n        \"form\": \"Überlegung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überlegungen\"\n    },\n    \"Überparteilichkeit\": {\n        \"form\": \"Überparteilichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Überschaubarkeit\": {\n        \"form\": \"Überschaubarkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"\"\n    },\n    \"Überschwänglichkeit\": {\n        \"form\": \"Überschwänglichkeit\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überschwänglichkeiten,Überschwenglichkeit,Überschwenglichkeiten\"\n    },\n    \"Überzeugung\": {\n        \"form\": \"Überzeugung\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"NN\",\n        \"sense\": \"Überzeugungen\"\n    },\n    \"ästhetisch\": {\n        \"form\": \"ästhetisch\",\n        \"polarity\": \"0.2038\",\n        \"pos\": \"JJ\",\n        \"sense\": \"ästhetischem,ästhetischerer,ästhetischen,ästhetische,ästhetischstes,ästhetischeres,ästhetisches,ästhetischer,ästhetischere,ästhetischerem,ästhetischeren,ästhetischste,ästhetischster,ästhetischsten,ästhetischstem\"\n    },\n    \"überdurchschnittlich\": {\n        \"form\": \"überdurchschnittlich\",\n        \"polarity\": \"0.09\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überdurchschnittlichstem,überdurchschnittlichsten,überdurchschnittlicher,überdurchschnittliche,überdurchschnittlichen,überdurchschnittlichem,überdurchschnittlicherem,überdurchschnittlichere,überdurchschnittliches,überdurchschnittlichste,überdurchschnittlichster,überdurchschnittlicherer,überdurchschnittlichstes,überdurchschnittlicheres,überdurchschnittlicheren\"\n    },\n    \"überglücklich\": {\n        \"form\": \"überglücklich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überglückliche,überglücklichen,überglücklichem,überglücklicher,überglückliches\"\n    },\n    \"übergroß\": {\n        \"form\": \"übergroß\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übergroßem,übergroßen,übergroße,übergroßes,übergroßer\"\n    },\n    \"überholen\": {\n        \"form\": \"überholen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"überholten,überholet,überhole,überhol,überholt,überholtet,überholst,überholtest,überholest,überholte\"\n    },\n    \"überleben\": {\n        \"form\": \"überleben\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"überlebten,überlebet,überlebtest,überleb,überlebte,überlebt,überlebst,überlebe,überlebtet,übergelebt,überlebest,überlebend\"\n    },\n    \"überlegen\": {\n        \"form\": \"überlegen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überlegenen,überlegenem,überlegenes,überlegener,überlegeneren,überlegenste,überlegenerem,überlegene,überlegeneres,überlegner,überlegenerer,überlegnerem\"\n    },\n    \"überlegt\": {\n        \"form\": \"überlegt\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überlegter,überlegtes,überlegte,überlegtem,überlegten,überlegner,überlegenerer,überlegtet,überlegnerem,überlegneren,überlegensten,überlegneres,überlegenstem,überlegnerer,überleget,überlegest,überlegenstes,überlegenster,überlegtest\"\n    },\n    \"übermenschlich\": {\n        \"form\": \"übermenschlich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übermenschliches,übermenschlicher,übermenschlichen,übermenschliche,übermenschlichem\"\n    },\n    \"überragend\": {\n        \"form\": \"überragend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überragender,überragendes,überragende,überragendem,überragenden\"\n    },\n    \"überraschend\": {\n        \"form\": \"überraschend\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überraschender,überraschendes,überraschende,überraschenden,überraschendem,überraschenderer,überraschenderes,überraschendere,überraschenderem,überraschenderen,überraschendster,überraschendstes,überraschendste,überraschendstem,überraschendsten\"\n    },\n    \"überrascht\": {\n        \"form\": \"überrascht\",\n        \"polarity\": \"0.2438\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überraschtere,überraschtestem,überraschtesten,überraschtester,überraschtestes,überraschter,überraschtes,überraschterer,überraschteste,überraschte,überraschteres,überraschteren,überraschterem,überraschten,überraschtem\"\n    },\n    \"überrunden\": {\n        \"form\": \"überrunden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"überrundete,überrunde,überrundetet,überrund,überrundest,überrundeten,überrundetest,überrundet\"\n    },\n    \"überschaubar\": {\n        \"form\": \"überschaubar\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überschaubarer,überschaubares,überschaubare,überschauberen,überschaubarem\"\n    },\n    \"überschwänglich\": {\n        \"form\": \"überschwänglich\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"JJ\",\n        \"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\"\n    },\n    \"überschäumen\": {\n        \"form\": \"überschäumen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"überschäumt,überschäumst,überschäumten,überschäumte,überschäume,überschäumet,überschäumtet,überschäumest,übergeschäumt,überschäumtest\"\n    },\n    \"übersichtlich\": {\n        \"form\": \"übersichtlich\",\n        \"polarity\": \"0.2253\",\n        \"pos\": \"JJ\",\n        \"sense\": \"übersichtlicherem,übersichtlichste,übersichtlicheren,übersichtlichere,übersichtlichstem,übersichtlichsten,übersichtlichstes,übersichtlichster,übersichtlicher,übersichtliches,übersichtlichem,übersichtlichen,übersichtliche,übersichtlicherer,übersichtlicheres\"\n    },\n    \"übertreffen\": {\n        \"form\": \"übertreffen\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"übertreffe,übertriffst,übertreffest,übertrifft,übertrefft,übertreffet,übertraf,überträfe,übertrafst,überträfest,überträfst,übertraft,überträfet,überträft,übertrafen,überträfen\"\n    },\n    \"überwinden\": {\n        \"form\": \"überwinden\",\n        \"polarity\": \"0.0040\",\n        \"pos\": \"VB\",\n        \"sense\": \"überwinde,überwindest,überwindet,überwand,überwände,überwandest,überwandst,überwändest,überwanden,überwänden,überwandet,überwändet,überwind\"\n    },\n    \"überwältigend\": {\n        \"form\": \"überwältigend\",\n        \"polarity\": \"0.3312\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überwältigender,überwältigendes,überwältigende,überwältigenden,überwältigendem\"\n    },\n    \"überwältigt\": {\n        \"form\": \"überwältigt\",\n        \"polarity\": \"0.0578\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überwältigter,überwältigtes,überwältigte,überwältigten,überwältigtem\"\n    },\n    \"überzeugen\": {\n        \"form\": \"überzeugen\",\n        \"polarity\": \"0.3396\",\n        \"pos\": \"VB\",\n        \"sense\": \"überzeuge,überzeugst,überzeugt,überzeuget,überzeugest,überzeugte,überzeugtest,überzeugten,überzeugtet,überzeug\"\n    },\n    \"überzeugend\": {\n        \"form\": \"überzeugend\",\n        \"polarity\": \"0.4489\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überzeugender,überzeugendes,überzeugende,überzeugenden,überzeugendem,überzeugenderer,überzeugenderes,überzeugendere,überzeugenderem,überzeugenderen,überzeugendster,überzeugendstes,überzeugendste,überzeugendsten,überzeugendstem\"\n    },\n    \"überzeugt\": {\n        \"form\": \"überzeugt\",\n        \"polarity\": \"0.2381\",\n        \"pos\": \"JJ\",\n        \"sense\": \"überzeugtestem,überzeugtesten,überzeugtester,überzeugte,überzeugtes,überzeugter,überzeugterer,überzeugtere,überzeugteres,überzeugtem,überzeugten,überzeugteren,überzeugteste,überzeugterem,überzeugtestes\"\n    },\n    \"üppig\": {\n        \"form\": \"üppig\",\n        \"polarity\": \"0.201\",\n        \"pos\": \"JJ\",\n        \"sense\": \"üppiges,üppigster,üppigstes,üppigen,üppigem,üppigsten,üppigerer,üppigere,üppigeres,üppigste,üppiger,üppigstem,üppigeren,üppigerem,üppige\"\n    }\n}"
  },
  {
    "path": "lib/natural/sentiment/Italian/pattern-sentiment-it.json",
    "content": "{\n  \"FALSO\": {\n    \"form\": \"FALSO\",\n    \"pos\": \"\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"VERO\": {\n    \"form\": \"VERO\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"abbastanza\": {\n    \"form\": \"abbastanza\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"abile\": {\n    \"form\": \"abile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"abilmente\": {\n    \"form\": \"abilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"abominare\": {\n    \"form\": \"abominare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aborrire\": {\n    \"form\": \"aborrire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accanita\": {\n    \"form\": \"accanita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accanto\": {\n    \"form\": \"accanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accattivante\": {\n    \"form\": \"accattivante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.62\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.75\",\n    \"label\": \"\"\n  },\n  \"accattivanti\": {\n    \"form\": \"accattivanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"accessibile\": {\n    \"form\": \"accessibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accettabile\": {\n    \"form\": \"accettabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"accoglibile\": {\n    \"form\": \"accoglibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accomandare\": {\n    \"form\": \"accomandare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accorto\": {\n    \"form\": \"accorto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"accurata\": {\n    \"form\": \"accurata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"acre\": {\n    \"form\": \"acre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"acuta\": {\n    \"form\": \"acuta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adatta\": {\n    \"form\": \"adatta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adatte\": {\n    \"form\": \"adatte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adatti\": {\n    \"form\": \"adatti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adatto\": {\n    \"form\": \"adatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"addirittura\": {\n    \"form\": \"addirittura\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"addosso\": {\n    \"form\": \"addosso\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adeguatamente\": {\n    \"form\": \"adeguatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"adeguato\": {\n    \"form\": \"adeguato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"aderentemente\": {\n    \"form\": \"aderentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adesivi\": {\n    \"form\": \"adesivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adesso\": {\n    \"form\": \"adesso\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adjective\": {\n    \"form\": \"adjective\",\n    \"pos\": \"\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adolescente\": {\n    \"form\": \"adolescente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adolescenti\": {\n    \"form\": \"adolescenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adolescenziale\": {\n    \"form\": \"adolescenziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adolescenziali\": {\n    \"form\": \"adolescenziali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adorabile\": {\n    \"form\": \"adorabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"adorabili\": {\n    \"form\": \"adorabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"adulta\": {\n    \"form\": \"adulta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"adulti\": {\n    \"form\": \"adulti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"affabile\": {\n    \"form\": \"affabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"affascinante\": {\n    \"form\": \"affascinante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"affascinanti\": {\n    \"form\": \"affascinanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"affatto\": {\n    \"form\": \"affatto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"affidabile\": {\n    \"form\": \"affidabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"affrontabile\": {\n    \"form\": \"affrontabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aformadi\": {\n    \"form\": \"aformadi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"africa\": {\n    \"form\": \"africa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"agevole\": {\n    \"form\": \"agevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.62\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"agghiacciante\": {\n    \"form\": \"agghiacciante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aggrottato\": {\n    \"form\": \"aggrottato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"agro\": {\n    \"form\": \"agro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ahimè\": {\n    \"form\": \"ahimè\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alcun\": {\n    \"form\": \"alcun\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alcuna\": {\n    \"form\": \"alcuna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alcune\": {\n    \"form\": \"alcune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alesaggio\": {\n    \"form\": \"alesaggio\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alieno\": {\n    \"form\": \"alieno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alimentari\": {\n    \"form\": \"alimentari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"allegra\": {\n    \"form\": \"allegra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"allegro\": {\n    \"form\": \"allegro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"allistante\": {\n    \"form\": \"allistante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"allora\": {\n    \"form\": \"allora\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"almeno\": {\n    \"form\": \"almeno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"almomento\": {\n    \"form\": \"almomento\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alquanto\": {\n    \"form\": \"alquanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"alta\": {\n    \"form\": \"alta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altamente\": {\n    \"form\": \"altamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"alte\": {\n    \"form\": \"alte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alterna\": {\n    \"form\": \"alterna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alternative\": {\n    \"form\": \"alternative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alternativo\": {\n    \"form\": \"alternativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"alti\": {\n    \"form\": \"alti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altissimo\": {\n    \"form\": \"altissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"alto\": {\n    \"form\": \"alto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altra\": {\n    \"form\": \"altra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altre\": {\n    \"form\": \"altre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altrettanti\": {\n    \"form\": \"altrettanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altrettanto\": {\n    \"form\": \"altrettanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altri\": {\n    \"form\": \"altri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altrimenti\": {\n    \"form\": \"altrimenti\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altro\": {\n    \"form\": \"altro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altrove\": {\n    \"form\": \"altrove\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"altrui\": {\n    \"form\": \"altrui\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"amabile\": {\n    \"form\": \"amabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"amara\": {\n    \"form\": \"amara\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"amare\": {\n    \"form\": \"amare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"amaro\": {\n    \"form\": \"amaro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"amate\": {\n    \"form\": \"amate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ambizione\": {\n    \"form\": \"ambizione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ameno\": {\n    \"form\": \"ameno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"america\": {\n    \"form\": \"america\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"americana\": {\n    \"form\": \"americana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"americane\": {\n    \"form\": \"americane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"americani\": {\n    \"form\": \"americani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"americano\": {\n    \"form\": \"americano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"americhe\": {\n    \"form\": \"americhe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"amorosa\": {\n    \"form\": \"amorosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"amorose\": {\n    \"form\": \"amorose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ampia\": {\n    \"form\": \"ampia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ampiamente\": {\n    \"form\": \"ampiamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ampio\": {\n    \"form\": \"ampio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ana\": {\n    \"form\": \"ana\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"anche\": {\n    \"form\": \"anche\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ancora\": {\n    \"form\": \"ancora\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"andando\": {\n    \"form\": \"andando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"andarealcreatore\": {\n    \"form\": \"andarealcreatore\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"andareallaltromondo\": {\n    \"form\": \"andareallaltromondo\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"andareavuoto\": {\n    \"form\": \"andareavuoto\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"andareincielo\": {\n    \"form\": \"andareincielo\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"andareinparadiso\": {\n    \"form\": \"andareinparadiso\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"angelicamente\": {\n    \"form\": \"angelicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"angelico\": {\n    \"form\": \"angelico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"angosciato\": {\n    \"form\": \"angosciato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"angustamente\": {\n    \"form\": \"angustamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"angustiato\": {\n    \"form\": \"angustiato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"anima\": {\n    \"form\": \"anima\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.17\",\n    \"label\": \"\"\n  },\n  \"animo\": {\n    \"form\": \"animo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"animosita\": {\n    \"form\": \"animosita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"anonimo\": {\n    \"form\": \"anonimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ansieta\": {\n    \"form\": \"ansieta\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"antica\": {\n    \"form\": \"antica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"anticato\": {\n    \"form\": \"anticato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"antichi\": {\n    \"form\": \"antichi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"antichizzato\": {\n    \"form\": \"antichizzato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"antico\": {\n    \"form\": \"antico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"anzi\": {\n    \"form\": \"anzi\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"anziano\": {\n    \"form\": \"anziano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aperta\": {\n    \"form\": \"aperta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aperte\": {\n    \"form\": \"aperte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aperti\": {\n    \"form\": \"aperti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"apocalittico\": {\n    \"form\": \"apocalittico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"appagante\": {\n    \"form\": \"appagante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"apparente\": {\n    \"form\": \"apparente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"apparentemente\": {\n    \"form\": \"apparentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"0.83\",\n    \"label\": \"\"\n  },\n  \"appassionante\": {\n    \"form\": \"appassionante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"appassionata\": {\n    \"form\": \"appassionata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"appassionati\": {\n    \"form\": \"appassionati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"appassionato\": {\n    \"form\": \"appassionato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"appena\": {\n    \"form\": \"appena\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"appendici\": {\n    \"form\": \"appendici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"appieno\": {\n    \"form\": \"appieno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"apposito\": {\n    \"form\": \"apposito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"apprezzabile\": {\n    \"form\": \"apprezzabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"approfondita\": {\n    \"form\": \"approfondita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"approfonditi\": {\n    \"form\": \"approfonditi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"appropriato\": {\n    \"form\": \"appropriato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"appunto\": {\n    \"form\": \"appunto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aprendo\": {\n    \"form\": \"aprendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aquantopare\": {\n    \"form\": \"aquantopare\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arabo\": {\n    \"form\": \"arabo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ardente\": {\n    \"form\": \"ardente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ardito\": {\n    \"form\": \"ardito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arduamente\": {\n    \"form\": \"arduamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"argentina\": {\n    \"form\": \"argentina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arridere\": {\n    \"form\": \"arridere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arrivando\": {\n    \"form\": \"arrivando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arrogante\": {\n    \"form\": \"arrogante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"arrossato\": {\n    \"form\": \"arrossato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"arrovellare\": {\n    \"form\": \"arrovellare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"artato\": {\n    \"form\": \"artato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"articolata\": {\n    \"form\": \"articolata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"asciutta\": {\n    \"form\": \"asciutta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"asciutto\": {\n    \"form\": \"asciutto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ascoltando\": {\n    \"form\": \"ascoltando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"asinita\": {\n    \"form\": \"asinita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"asino\": {\n    \"form\": \"asino\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aspettando\": {\n    \"form\": \"aspettando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"assai\": {\n    \"form\": \"assai\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"assassina\": {\n    \"form\": \"assassina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"assieme\": {\n    \"form\": \"assieme\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"assoluta\": {\n    \"form\": \"assoluta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"assolutamente\": {\n    \"form\": \"assolutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"assoluto\": {\n    \"form\": \"assoluto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"assurda\": {\n    \"form\": \"assurda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"assurde\": {\n    \"form\": \"assurde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"assurdo\": {\n    \"form\": \"assurdo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"astronomicamente\": {\n    \"form\": \"astronomicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"astutamente\": {\n    \"form\": \"astutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"astuto\": {\n    \"form\": \"astuto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"atroce\": {\n    \"form\": \"atroce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"atrocemente\": {\n    \"form\": \"atrocemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"attendibile\": {\n    \"form\": \"attendibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attendo\": {\n    \"form\": \"attendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attenta\": {\n    \"form\": \"attenta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attentamente\": {\n    \"form\": \"attentamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attenti\": {\n    \"form\": \"attenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attento\": {\n    \"form\": \"attento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"atteso\": {\n    \"form\": \"atteso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"attillatamente\": {\n    \"form\": \"attillatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"attinenti\": {\n    \"form\": \"attinenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attivita\": {\n    \"form\": \"attivita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attivitaricreativa\": {\n    \"form\": \"attivitaricreativa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attivo\": {\n    \"form\": \"attivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"atto\": {\n    \"form\": \"atto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attorno\": {\n    \"form\": \"attorno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attraente\": {\n    \"form\": \"attraente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attuale\": {\n    \"form\": \"attuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"attuali\": {\n    \"form\": \"attuali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"attualmente\": {\n    \"form\": \"attualmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"aulico\": {\n    \"form\": \"aulico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autentica\": {\n    \"form\": \"autentica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"autenticamente\": {\n    \"form\": \"autenticamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autenticazione\": {\n    \"form\": \"autenticazione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autentico\": {\n    \"form\": \"autentico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"autobiografico\": {\n    \"form\": \"autobiografico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autoconclusivo\": {\n    \"form\": \"autoconclusivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"automatico\": {\n    \"form\": \"automatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autoritario\": {\n    \"form\": \"autoritario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"autrici\": {\n    \"form\": \"autrici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avanti\": {\n    \"form\": \"avanti\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avanzodigalera\": {\n    \"form\": \"avanzodigalera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avendo\": {\n    \"form\": \"avendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avereinodio\": {\n    \"form\": \"avereinodio\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avveduto\": {\n    \"form\": \"avveduto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avvenente\": {\n    \"form\": \"avvenente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avveniristico\": {\n    \"form\": \"avveniristico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"avventurosa\": {\n    \"form\": \"avventurosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"avventuroso\": {\n    \"form\": \"avventuroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"avvincente\": {\n    \"form\": \"avvincente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"avvincenti\": {\n    \"form\": \"avvincenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"0.83\",\n    \"label\": \"\"\n  },\n  \"avvizzito\": {\n    \"form\": \"avvizzito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"azzurro\": {\n    \"form\": \"azzurro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"babbeo\": {\n    \"form\": \"babbeo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"badalone\": {\n    \"form\": \"badalone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bagatella\": {\n    \"form\": \"bagatella\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"baggiano\": {\n    \"form\": \"baggiano\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"balordo\": {\n    \"form\": \"balordo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"banale\": {\n    \"form\": \"banale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"banali\": {\n    \"form\": \"banali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"bane\": {\n    \"form\": \"bane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"basilari\": {\n    \"form\": \"basilari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bassa\": {\n    \"form\": \"bassa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bassi\": {\n    \"form\": \"bassi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bassissimo\": {\n    \"form\": \"bassissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"basso\": {\n    \"form\": \"basso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"beato\": {\n    \"form\": \"beato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"beh\": {\n    \"form\": \"beh\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"bei\": {\n    \"form\": \"bei\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bel\": {\n    \"form\": \"bel\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bella\": {\n    \"form\": \"bella\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"belle\": {\n    \"form\": \"belle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"belli\": {\n    \"form\": \"belli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bellissima\": {\n    \"form\": \"bellissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bellissime\": {\n    \"form\": \"bellissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bellissimi\": {\n    \"form\": \"bellissimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bello\": {\n    \"form\": \"bello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ben\": {\n    \"form\": \"ben\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"bene\": {\n    \"form\": \"bene\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"benissimo\": {\n    \"form\": \"benissimo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bianca\": {\n    \"form\": \"bianca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"biancheriaintima\": {\n    \"form\": \"biancheriaintima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bianchi\": {\n    \"form\": \"bianchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bianco\": {\n    \"form\": \"bianco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"biancoduovo\": {\n    \"form\": \"biancoduovo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"biasimo\": {\n    \"form\": \"biasimo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bizzarro\": {\n    \"form\": \"bizzarro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ble\": {\n    \"form\": \"ble\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"blu\": {\n    \"form\": \"blu\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"blue\": {\n    \"form\": \"blue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"boh\": {\n    \"form\": \"boh\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"bompiani\": {\n    \"form\": \"bompiani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"borghese\": {\n    \"form\": \"borghese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"brava\": {\n    \"form\": \"brava\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bravi\": {\n    \"form\": \"bravi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"bravissima\": {\n    \"form\": \"bravissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bravissimo\": {\n    \"form\": \"bravissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bravo\": {\n    \"form\": \"bravo\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"breve\": {\n    \"form\": \"breve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"brevi\": {\n    \"form\": \"brevi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"brevilineo\": {\n    \"form\": \"brevilineo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"brevissimi\": {\n    \"form\": \"brevissimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"brevissimo\": {\n    \"form\": \"brevissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"brilla\": {\n    \"form\": \"brilla\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"brillante\": {\n    \"form\": \"brillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"brillanti\": {\n    \"form\": \"brillanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"brusco\": {\n    \"form\": \"brusco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"brutale\": {\n    \"form\": \"brutale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"brutta\": {\n    \"form\": \"brutta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.88\",\n    \"intensity\": \"1.25\",\n    \"label\": \"\"\n  },\n  \"brutte\": {\n    \"form\": \"brutte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"brutto\": {\n    \"form\": \"brutto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"bucare\": {\n    \"form\": \"bucare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"buffa\": {\n    \"form\": \"buffa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"bugie\": {\n    \"form\": \"bugie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"buona\": {\n    \"form\": \"buona\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.62\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.25\",\n    \"label\": \"\"\n  },\n  \"buone\": {\n    \"form\": \"buone\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"buoni\": {\n    \"form\": \"buoni\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"buono\": {\n    \"form\": \"buono\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"burbero\": {\n    \"form\": \"burbero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"burrascoso\": {\n    \"form\": \"burrascoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"calamita\": {\n    \"form\": \"calamita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"calcolatore\": {\n    \"form\": \"calcolatore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"calda\": {\n    \"form\": \"calda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"caldamente\": {\n    \"form\": \"caldamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"caldo\": {\n    \"form\": \"caldo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"calore\": {\n    \"form\": \"calore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"caloroso\": {\n    \"form\": \"caloroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"cancan\": {\n    \"form\": \"cancan\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"candido\": {\n    \"form\": \"candido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"canonico\": {\n    \"form\": \"canonico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"capace\": {\n    \"form\": \"capace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"capaci\": {\n    \"form\": \"capaci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.28\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"capiente\": {\n    \"form\": \"capiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"capisco\": {\n    \"form\": \"capisco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"capitale\": {\n    \"form\": \"capitale\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"capolavoro\": {\n    \"form\": \"capolavoro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cara\": {\n    \"form\": \"cara\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"caratterialmente\": {\n    \"form\": \"caratterialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"caratteristico\": {\n    \"form\": \"caratteristico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cari\": {\n    \"form\": \"cari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"carina\": {\n    \"form\": \"carina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"carine\": {\n    \"form\": \"carine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"carini\": {\n    \"form\": \"carini\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"carinissimo\": {\n    \"form\": \"carinissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"carino\": {\n    \"form\": \"carino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"carismatico\": {\n    \"form\": \"carismatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"caro\": {\n    \"form\": \"caro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"carogna\": {\n    \"form\": \"carogna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"cartacea\": {\n    \"form\": \"cartacea\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cartaceo\": {\n    \"form\": \"cartaceo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cartonato\": {\n    \"form\": \"cartonato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"casino\": {\n    \"form\": \"casino\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"casuale\": {\n    \"form\": \"casuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"categoricamente\": {\n    \"form\": \"categoricamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cattiva\": {\n    \"form\": \"cattiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"cattivariuscita\": {\n    \"form\": \"cattivariuscita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cattivasorte\": {\n    \"form\": \"cattivasorte\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cattivi\": {\n    \"form\": \"cattivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"cattivo\": {\n    \"form\": \"cattivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cauto\": {\n    \"form\": \"cauto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cazzo\": {\n    \"form\": \"cazzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"celaena\": {\n    \"form\": \"celaena\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"celebre\": {\n    \"form\": \"celebre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"celermente\": {\n    \"form\": \"celermente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"celia\": {\n    \"form\": \"celia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"centrale\": {\n    \"form\": \"centrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"centro\": {\n    \"form\": \"centro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"cercando\": {\n    \"form\": \"cercando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"certa\": {\n    \"form\": \"certa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"certamente\": {\n    \"form\": \"certamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"certe\": {\n    \"form\": \"certe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"certi\": {\n    \"form\": \"certi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"certo\": {\n    \"form\": \"certo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"chetamente\": {\n    \"form\": \"chetamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiara\": {\n    \"form\": \"chiara\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"chiaramente\": {\n    \"form\": \"chiaramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"chiare\": {\n    \"form\": \"chiare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiari\": {\n    \"form\": \"chiari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiaro\": {\n    \"form\": \"chiaro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"chimica\": {\n    \"form\": \"chimica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chissà\": {\n    \"form\": \"chissà\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiudendo\": {\n    \"form\": \"chiudendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiusi\": {\n    \"form\": \"chiusi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"chiuso\": {\n    \"form\": \"chiuso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ciao\": {\n    \"form\": \"ciao\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ciarlatano\": {\n    \"form\": \"ciarlatano\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"cicchetto\": {\n    \"form\": \"cicchetto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ciliegiuolo\": {\n    \"form\": \"ciliegiuolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cinematografica\": {\n    \"form\": \"cinematografica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cinematografiche\": {\n    \"form\": \"cinematografiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cinese\": {\n    \"form\": \"cinese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cinico\": {\n    \"form\": \"cinico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cioè\": {\n    \"form\": \"cioè\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"circospetto\": {\n    \"form\": \"circospetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"circostanziato\": {\n    \"form\": \"circostanziato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cito\": {\n    \"form\": \"cito\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"civile\": {\n    \"form\": \"civile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"classica\": {\n    \"form\": \"classica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"classici\": {\n    \"form\": \"classici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"classico\": {\n    \"form\": \"classico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"coartato\": {\n    \"form\": \"coartato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"cocente\": {\n    \"form\": \"cocente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"coerente\": {\n    \"form\": \"coerente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"coerenti\": {\n    \"form\": \"coerenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"coglione\": {\n    \"form\": \"coglione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cogruo\": {\n    \"form\": \"cogruo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"coinvolgente\": {\n    \"form\": \"coinvolgente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"colorate\": {\n    \"form\": \"colorate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"colorati\": {\n    \"form\": \"colorati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"colorato\": {\n    \"form\": \"colorato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"colpevole\": {\n    \"form\": \"colpevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"colpita\": {\n    \"form\": \"colpita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"colto\": {\n    \"form\": \"colto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comfort\": {\n    \"form\": \"comfort\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"comicita\": {\n    \"form\": \"comicita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"commedia\": {\n    \"form\": \"commedia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"commerciale\": {\n    \"form\": \"commerciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"commossa\": {\n    \"form\": \"commossa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"3.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"commovente\": {\n    \"form\": \"commovente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"commuove\": {\n    \"form\": \"commuove\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"commuovente\": {\n    \"form\": \"commuovente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comoda\": {\n    \"form\": \"comoda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comodi\": {\n    \"form\": \"comodi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comodita\": {\n    \"form\": \"comodita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comodo\": {\n    \"form\": \"comodo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"compatto\": {\n    \"form\": \"compatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"compendiario\": {\n    \"form\": \"compendiario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"competitivo\": {\n    \"form\": \"competitivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"compiaciuto\": {\n    \"form\": \"compiaciuto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"complessa\": {\n    \"form\": \"complessa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"complesse\": {\n    \"form\": \"complesse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"complessi\": {\n    \"form\": \"complessi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"complesso\": {\n    \"form\": \"complesso\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"completa\": {\n    \"form\": \"completa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"completamente\": {\n    \"form\": \"completamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"complete\": {\n    \"form\": \"complete\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"completi\": {\n    \"form\": \"completi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"completo\": {\n    \"form\": \"completo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"complicato\": {\n    \"form\": \"complicato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"complimenti\": {\n    \"form\": \"complimenti\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comprensibile\": {\n    \"form\": \"comprensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"compreso\": {\n    \"form\": \"compreso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comprimari\": {\n    \"form\": \"comprimari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comune\": {\n    \"form\": \"comune\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"comunicativo\": {\n    \"form\": \"comunicativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"comunque\": {\n    \"form\": \"comunque\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"conattenzione\": {\n    \"form\": \"conattenzione\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conciso\": {\n    \"form\": \"conciso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"concludendo\": {\n    \"form\": \"concludendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conclusivo\": {\n    \"form\": \"conclusivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"concorrenziale\": {\n    \"form\": \"concorrenziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"concreti\": {\n    \"form\": \"concreti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"concreto\": {\n    \"form\": \"concreto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"confesso\": {\n    \"form\": \"confesso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conforme\": {\n    \"form\": \"conforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conformista\": {\n    \"form\": \"conformista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"confort\": {\n    \"form\": \"confort\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"confuse\": {\n    \"form\": \"confuse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"confusione\": {\n    \"form\": \"confusione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"confuso\": {\n    \"form\": \"confuso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"congruente\": {\n    \"form\": \"congruente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"congruo\": {\n    \"form\": \"congruo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"conoscendo\": {\n    \"form\": \"conoscendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conosciuti\": {\n    \"form\": \"conosciuti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"consapevole\": {\n    \"form\": \"consapevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"consapevoli\": {\n    \"form\": \"consapevoli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conseguente\": {\n    \"form\": \"conseguente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conservatore\": {\n    \"form\": \"conservatore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"considerando\": {\n    \"form\": \"considerando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"consigliabile\": {\n    \"form\": \"consigliabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.42\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"consistente\": {\n    \"form\": \"consistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"consono\": {\n    \"form\": \"consono\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"consumato\": {\n    \"form\": \"consumato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contemporanea\": {\n    \"form\": \"contemporanea\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contemporaneamente\": {\n    \"form\": \"contemporaneamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contemporanei\": {\n    \"form\": \"contemporanei\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contemporaneo\": {\n    \"form\": \"contemporaneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contenta\": {\n    \"form\": \"contenta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"contenti\": {\n    \"form\": \"contenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"contento\": {\n    \"form\": \"contento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contestuale\": {\n    \"form\": \"contestuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contingente\": {\n    \"form\": \"contingente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"continua\": {\n    \"form\": \"continua\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"continuamente\": {\n    \"form\": \"continuamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"continuando\": {\n    \"form\": \"continuando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"continue\": {\n    \"form\": \"continue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"continui\": {\n    \"form\": \"continui\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"continuo\": {\n    \"form\": \"continuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contraddizione\": {\n    \"form\": \"contraddizione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"contrario\": {\n    \"form\": \"contrario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contrastanti\": {\n    \"form\": \"contrastanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"contrattofuture\": {\n    \"form\": \"contrattofuture\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"conveniente\": {\n    \"form\": \"conveniente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"convenzionale\": {\n    \"form\": \"convenzionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"convenzionali\": {\n    \"form\": \"convenzionali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"convincente\": {\n    \"form\": \"convincente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"coraggiosa\": {\n    \"form\": \"coraggiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"coraggioso\": {\n    \"form\": \"coraggioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"cordiale\": {\n    \"form\": \"cordiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corposo\": {\n    \"form\": \"corposo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"corrente\": {\n    \"form\": \"corrente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"correttamente\": {\n    \"form\": \"correttamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corretti\": {\n    \"form\": \"corretti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corretto\": {\n    \"form\": \"corretto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"corrispondente\": {\n    \"form\": \"corrispondente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corrugato\": {\n    \"form\": \"corrugato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corto\": {\n    \"form\": \"corto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"corvino\": {\n    \"form\": \"corvino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cosciente\": {\n    \"form\": \"cosciente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cosiddetti\": {\n    \"form\": \"cosiddetti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"costante\": {\n    \"form\": \"costante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"costantemente\": {\n    \"form\": \"costantemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"costoso\": {\n    \"form\": \"costoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"così\": {\n    \"form\": \"così\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"creando\": {\n    \"form\": \"creando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"creativa\": {\n    \"form\": \"creativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"creativo\": {\n    \"form\": \"creativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"credibile\": {\n    \"form\": \"credibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"credibili\": {\n    \"form\": \"credibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.23\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"crescendo\": {\n    \"form\": \"crescendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"crescente\": {\n    \"form\": \"crescente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cretino\": {\n    \"form\": \"cretino\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"criminale\": {\n    \"form\": \"criminale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"criminali\": {\n    \"form\": \"criminali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"criminoso\": {\n    \"form\": \"criminoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cristallino\": {\n    \"form\": \"cristallino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"critico\": {\n    \"form\": \"critico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cronologico\": {\n    \"form\": \"cronologico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cruda\": {\n    \"form\": \"cruda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"crudele\": {\n    \"form\": \"crudele\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"crudeli\": {\n    \"form\": \"crudeli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"crudo\": {\n    \"form\": \"crudo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"culturale\": {\n    \"form\": \"culturale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"culturali\": {\n    \"form\": \"culturali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cupa\": {\n    \"form\": \"cupa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"cupo\": {\n    \"form\": \"cupo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"curiosa\": {\n    \"form\": \"curiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"curioso\": {\n    \"form\": \"curioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"curve\": {\n    \"form\": \"curve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"danese\": {\n    \"form\": \"danese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dannato\": {\n    \"form\": \"dannato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"dante\": {\n    \"form\": \"dante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dapprima\": {\n    \"form\": \"dapprima\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dario\": {\n    \"form\": \"dario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dark\": {\n    \"form\": \"dark\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"davanti\": {\n    \"form\": \"davanti\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"davvero\": {\n    \"form\": \"davvero\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"debole\": {\n    \"form\": \"debole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"deboli\": {\n    \"form\": \"deboli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"decedere\": {\n    \"form\": \"decedere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"decente\": {\n    \"form\": \"decente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"decisamente\": {\n    \"form\": \"decisamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"deciso\": {\n    \"form\": \"deciso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"decoroso\": {\n    \"form\": \"decoroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"deficiente\": {\n    \"form\": \"deficiente\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"definitiva\": {\n    \"form\": \"definitiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"definitivamente\": {\n    \"form\": \"definitivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"definitivo\": {\n    \"form\": \"definitivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"definito\": {\n    \"form\": \"definito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"defunto\": {\n    \"form\": \"defunto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"degna\": {\n    \"form\": \"degna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"degni\": {\n    \"form\": \"degni\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"degno\": {\n    \"form\": \"degno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"deidratato\": {\n    \"form\": \"deidratato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delicata\": {\n    \"form\": \"delicata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delicato\": {\n    \"form\": \"delicato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delinquente\": {\n    \"form\": \"delinquente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delinquenziale\": {\n    \"form\": \"delinquenziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delittuoso\": {\n    \"form\": \"delittuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"deliziosi\": {\n    \"form\": \"deliziosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delizioso\": {\n    \"form\": \"delizioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"deltutto\": {\n    \"form\": \"deltutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"deludente\": {\n    \"form\": \"deludente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"delusa\": {\n    \"form\": \"delusa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"deluse\": {\n    \"form\": \"deluse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"delusi\": {\n    \"form\": \"delusi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"delusione\": {\n    \"form\": \"delusione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"deluso\": {\n    \"form\": \"deluso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"denaro\": {\n    \"form\": \"denaro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"denso\": {\n    \"form\": \"denso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"denuncia\": {\n    \"form\": \"denuncia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"deprimente\": {\n    \"form\": \"deprimente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"deprimere\": {\n    \"form\": \"deprimere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"descrittiva\": {\n    \"form\": \"descrittiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"descrittivo\": {\n    \"form\": \"descrittivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.01\",\n    \"subjectivity\": \"0.04\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"descrivendo\": {\n    \"form\": \"descrivendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"detective\": {\n    \"form\": \"detective\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"determinato\": {\n    \"form\": \"determinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"detestare\": {\n    \"form\": \"detestare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"dettagliata\": {\n    \"form\": \"dettagliata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dettagliate\": {\n    \"form\": \"dettagliate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"devastante\": {\n    \"form\": \"devastante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"diamante\": {\n    \"form\": \"diamante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dica\": {\n    \"form\": \"dica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dicassetta\": {\n    \"form\": \"dicassetta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"didattico\": {\n    \"form\": \"didattico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dietro\": {\n    \"form\": \"dietro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"difettoso\": {\n    \"form\": \"difettoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"differente\": {\n    \"form\": \"differente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"differenti\": {\n    \"form\": \"differenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"difficile\": {\n    \"form\": \"difficile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"difficili\": {\n    \"form\": \"difficili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"difficilmente\": {\n    \"form\": \"difficilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"difficoltosa\": {\n    \"form\": \"difficoltosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"difficoltà\": {\n    \"form\": \"difficoltà\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"diffidente\": {\n    \"form\": \"diffidente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"diffuso\": {\n    \"form\": \"diffuso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"difronte\": {\n    \"form\": \"difronte\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"digitale\": {\n    \"form\": \"digitale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dignitoso\": {\n    \"form\": \"dignitoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"dilettare\": {\n    \"form\": \"dilettare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"diletto\": {\n    \"form\": \"diletto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dimenticare\": {\n    \"form\": \"dimenticare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dinamiche\": {\n    \"form\": \"dinamiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dinuovo\": {\n    \"form\": \"dinuovo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dipana\": {\n    \"form\": \"dipana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dipartirsi\": {\n    \"form\": \"dipartirsi\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"direttamente\": {\n    \"form\": \"direttamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"dirimpetto\": {\n    \"form\": \"dirimpetto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dirompente\": {\n    \"form\": \"dirompente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"disapprovare\": {\n    \"form\": \"disapprovare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disarmante\": {\n    \"form\": \"disarmante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disastro\": {\n    \"form\": \"disastro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disciplinato\": {\n    \"form\": \"disciplinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"discreta\": {\n    \"form\": \"discreta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"discretamente\": {\n    \"form\": \"discretamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"discreto\": {\n    \"form\": \"discreto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disdetta\": {\n    \"form\": \"disdetta\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disgrazia\": {\n    \"form\": \"disgrazia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disguido\": {\n    \"form\": \"disguido\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disidratato\": {\n    \"form\": \"disidratato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disobbediente\": {\n    \"form\": \"disobbediente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disonesto\": {\n    \"form\": \"disonesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disordinato\": {\n    \"form\": \"disordinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disordine\": {\n    \"form\": \"disordine\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dispendioso\": {\n    \"form\": \"dispendioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disperata\": {\n    \"form\": \"disperata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"disperatamente\": {\n    \"form\": \"disperatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"disperato\": {\n    \"form\": \"disperato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"disponibile\": {\n    \"form\": \"disponibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"disponibili\": {\n    \"form\": \"disponibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dissacrante\": {\n    \"form\": \"dissacrante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"distante\": {\n    \"form\": \"distante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disturbare\": {\n    \"form\": \"disturbare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disturbo\": {\n    \"form\": \"disturbo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disubbidiente\": {\n    \"form\": \"disubbidiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"disuguale\": {\n    \"form\": \"disuguale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dittatoriale\": {\n    \"form\": \"dittatoriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"diuturno\": {\n    \"form\": \"diuturno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"diventando\": {\n    \"form\": \"diventando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"diversa\": {\n    \"form\": \"diversa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"diversamente\": {\n    \"form\": \"diversamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"diverse\": {\n    \"form\": \"diverse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"diversi\": {\n    \"form\": \"diversi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"diverso\": {\n    \"form\": \"diverso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"divertente\": {\n    \"form\": \"divertente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"divertenti\": {\n    \"form\": \"divertenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"divertimento\": {\n    \"form\": \"divertimento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"divina\": {\n    \"form\": \"divina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"divulgativo\": {\n    \"form\": \"divulgativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"docente\": {\n    \"form\": \"docente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"docile\": {\n    \"form\": \"docile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dolce\": {\n    \"form\": \"dolce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dolcemente\": {\n    \"form\": \"dolcemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"dolci\": {\n    \"form\": \"dolci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"dolcissima\": {\n    \"form\": \"dolcissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dolcissimo\": {\n    \"form\": \"dolcissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"dolore\": {\n    \"form\": \"dolore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"dolorefisico\": {\n    \"form\": \"dolorefisico\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dolorosa\": {\n    \"form\": \"dolorosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dolorose\": {\n    \"form\": \"dolorose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"doloroso\": {\n    \"form\": \"doloroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"domando\": {\n    \"form\": \"domando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"domani\": {\n    \"form\": \"domani\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dominante\": {\n    \"form\": \"dominante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dopotutto\": {\n    \"form\": \"dopotutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"doppia\": {\n    \"form\": \"doppia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"doppio\": {\n    \"form\": \"doppio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dotto\": {\n    \"form\": \"dotto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"drammatica\": {\n    \"form\": \"drammatica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"drammatici\": {\n    \"form\": \"drammatici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"drammatico\": {\n    \"form\": \"drammatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.53\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"drasticamente\": {\n    \"form\": \"drasticamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dunque\": {\n    \"form\": \"dunque\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"duplice\": {\n    \"form\": \"duplice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"dura\": {\n    \"form\": \"dura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"duraturo\": {\n    \"form\": \"duraturo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"durevole\": {\n    \"form\": \"durevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"duri\": {\n    \"form\": \"duri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"duro\": {\n    \"form\": \"duro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ebbene\": {\n    \"form\": \"ebbene\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccellente\": {\n    \"form\": \"eccellente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccellenti\": {\n    \"form\": \"eccellenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"eccentrico\": {\n    \"form\": \"eccentrico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccessiva\": {\n    \"form\": \"eccessiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"eccessivamente\": {\n    \"form\": \"eccessivamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccessivi\": {\n    \"form\": \"eccessivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccessivo\": {\n    \"form\": \"eccessivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccetera\": {\n    \"form\": \"eccetera\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccezionale\": {\n    \"form\": \"eccezionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"eccezionali\": {\n    \"form\": \"eccezionali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eccitante\": {\n    \"form\": \"eccitante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ecco\": {\n    \"form\": \"ecco\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eclatante\": {\n    \"form\": \"eclatante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"eclatantemente\": {\n    \"form\": \"eclatantemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ecologista\": {\n    \"form\": \"ecologista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ecologistico\": {\n    \"form\": \"ecologistico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"economica\": {\n    \"form\": \"economica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"economiche\": {\n    \"form\": \"economiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"economici\": {\n    \"form\": \"economici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"economico\": {\n    \"form\": \"economico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.40\",\n    \"subjectivity\": \"0.40\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"edito\": {\n    \"form\": \"edito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"editoriale\": {\n    \"form\": \"editoriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"editrice\": {\n    \"form\": \"editrice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"edmondo\": {\n    \"form\": \"edmondo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"educativo\": {\n    \"form\": \"educativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"educato\": {\n    \"form\": \"educato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"efferato\": {\n    \"form\": \"efferato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"effettivamente\": {\n    \"form\": \"effettivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"effettivo\": {\n    \"form\": \"effettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"efficace\": {\n    \"form\": \"efficace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"efficaci\": {\n    \"form\": \"efficaci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"efficiente\": {\n    \"form\": \"efficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.60\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"egoista\": {\n    \"form\": \"egoista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"egoisti\": {\n    \"form\": \"egoisti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"egregiamente\": {\n    \"form\": \"egregiamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"egregio\": {\n    \"form\": \"egregio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"elegante\": {\n    \"form\": \"elegante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"elementare\": {\n    \"form\": \"elementare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.62\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"elementari\": {\n    \"form\": \"elementari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"elena\": {\n    \"form\": \"elena\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"elettronica\": {\n    \"form\": \"elettronica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"elettronico\": {\n    \"form\": \"elettronico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"elevato\": {\n    \"form\": \"elevato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"eminente\": {\n    \"form\": \"eminente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"emotiva\": {\n    \"form\": \"emotiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"emotivamente\": {\n    \"form\": \"emotivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"emotivo\": {\n    \"form\": \"emotivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"emozionale\": {\n    \"form\": \"emozionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"emozionante\": {\n    \"form\": \"emozionante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"emozionanti\": {\n    \"form\": \"emozionanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"empio\": {\n    \"form\": \"empio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ennesima\": {\n    \"form\": \"ennesima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ennesimo\": {\n    \"form\": \"ennesimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"enorme\": {\n    \"form\": \"enorme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"enrico\": {\n    \"form\": \"enrico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"entusiasmante\": {\n    \"form\": \"entusiasmante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"entusiasta\": {\n    \"form\": \"entusiasta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"epica\": {\n    \"form\": \"epica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"epico\": {\n    \"form\": \"epico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"epistolare\": {\n    \"form\": \"epistolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"epopea\": {\n    \"form\": \"epopea\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"equivoci\": {\n    \"form\": \"equivoci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"equivoco\": {\n    \"form\": \"equivoco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"erica\": {\n    \"form\": \"erica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ermetico\": {\n    \"form\": \"ermetico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eroico\": {\n    \"form\": \"eroico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"erotica\": {\n    \"form\": \"erotica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"erotiche\": {\n    \"form\": \"erotiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"erotici\": {\n    \"form\": \"erotici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"erotico\": {\n    \"form\": \"erotico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"errato\": {\n    \"form\": \"errato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"erronee\": {\n    \"form\": \"erronee\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esageratamente\": {\n    \"form\": \"esageratamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esagerato\": {\n    \"form\": \"esagerato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esaltante\": {\n    \"form\": \"esaltante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esangue\": {\n    \"form\": \"esangue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esattamente\": {\n    \"form\": \"esattamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"esatto\": {\n    \"form\": \"esatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esauriente\": {\n    \"form\": \"esauriente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esaustiva\": {\n    \"form\": \"esaustiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esaustivo\": {\n    \"form\": \"esaustivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esclusivamente\": {\n    \"form\": \"esclusivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esecrare\": {\n    \"form\": \"esecrare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"esemplare\": {\n    \"form\": \"esemplare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esiguo\": {\n    \"form\": \"esiguo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esilarante\": {\n    \"form\": \"esilarante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"esilaranti\": {\n    \"form\": \"esilaranti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esile\": {\n    \"form\": \"esile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esistente\": {\n    \"form\": \"esistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esistenziale\": {\n    \"form\": \"esistenziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esorbitante\": {\n    \"form\": \"esorbitante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esordienti\": {\n    \"form\": \"esordienti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"espansivo\": {\n    \"form\": \"espansivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"esperta\": {\n    \"form\": \"esperta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esperto\": {\n    \"form\": \"esperto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"esplicito\": {\n    \"form\": \"esplicito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"espressivo\": {\n    \"form\": \"espressivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"essendo\": {\n    \"form\": \"essendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"essenziale\": {\n    \"form\": \"essenziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"essenziali\": {\n    \"form\": \"essenziali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"essenzialmente\": {\n    \"form\": \"essenzialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"essereumano\": {\n    \"form\": \"essereumano\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estensivamente\": {\n    \"form\": \"estensivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estensivo\": {\n    \"form\": \"estensivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"esterna\": {\n    \"form\": \"esterna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esterne\": {\n    \"form\": \"esterne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esteso\": {\n    \"form\": \"esteso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estiva\": {\n    \"form\": \"estiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"estive\": {\n    \"form\": \"estive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estivo\": {\n    \"form\": \"estivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estrema\": {\n    \"form\": \"estrema\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"estremamente\": {\n    \"form\": \"estremamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"estreme\": {\n    \"form\": \"estreme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"estremo\": {\n    \"form\": \"estremo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"esuberante\": {\n    \"form\": \"esuberante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"esultante\": {\n    \"form\": \"esultante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eterna\": {\n    \"form\": \"eterna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"eternamente\": {\n    \"form\": \"eternamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eterno\": {\n    \"form\": \"eterno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"eventuali\": {\n    \"form\": \"eventuali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"evidente\": {\n    \"form\": \"evidente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"evidentemente\": {\n    \"form\": \"evidentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"evidenti\": {\n    \"form\": \"evidenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"evocativa\": {\n    \"form\": \"evocativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"evviva\": {\n    \"form\": \"evviva\",\n    \"pos\": \"UH\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"extraterrestre\": {\n    \"form\": \"extraterrestre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"facendo\": {\n    \"form\": \"facendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"facile\": {\n    \"form\": \"facile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.62\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"facili\": {\n    \"form\": \"facili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"facilmente\": {\n    \"form\": \"facilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fallire\": {\n    \"form\": \"fallire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"falsi\": {\n    \"form\": \"falsi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famigerata\": {\n    \"form\": \"famigerata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famigliareale\": {\n    \"form\": \"famigliareale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"familiare\": {\n    \"form\": \"familiare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"familiari\": {\n    \"form\": \"familiari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famosa\": {\n    \"form\": \"famosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famose\": {\n    \"form\": \"famose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famosi\": {\n    \"form\": \"famosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"famoso\": {\n    \"form\": \"famoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fan\": {\n    \"form\": \"fan\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fantascientifica\": {\n    \"form\": \"fantascientifica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fantascientifico\": {\n    \"form\": \"fantascientifico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fantasiosa\": {\n    \"form\": \"fantasiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fantasioso\": {\n    \"form\": \"fantasioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fantastica\": {\n    \"form\": \"fantastica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fantasticamente\": {\n    \"form\": \"fantasticamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fantastiche\": {\n    \"form\": \"fantastiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fantastici\": {\n    \"form\": \"fantastici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"fantastico\": {\n    \"form\": \"fantastico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"farsa\": {\n    \"form\": \"farsa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fascinoso\": {\n    \"form\": \"fascinoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fastidio\": {\n    \"form\": \"fastidio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"fastidiosa\": {\n    \"form\": \"fastidiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fastidiosi\": {\n    \"form\": \"fastidiosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fastidioso\": {\n    \"form\": \"fastidioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fatale\": {\n    \"form\": \"fatale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"faticoso\": {\n    \"form\": \"faticoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fattoa\": {\n    \"form\": \"fattoa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"favolosa\": {\n    \"form\": \"favolosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"favoloso\": {\n    \"form\": \"favoloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"feccia\": {\n    \"form\": \"feccia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fedele\": {\n    \"form\": \"fedele\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fedenuziale\": {\n    \"form\": \"fedenuziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"federico\": {\n    \"form\": \"federico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"felice\": {\n    \"form\": \"felice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"felici\": {\n    \"form\": \"felici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"felicità\": {\n    \"form\": \"felicità\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"femminile\": {\n    \"form\": \"femminile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"femminili\": {\n    \"form\": \"femminili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fenomenale\": {\n    \"form\": \"fenomenale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fermo\": {\n    \"form\": \"fermo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"feroce\": {\n    \"form\": \"feroce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ferrante\": {\n    \"form\": \"ferrante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ferreo\": {\n    \"form\": \"ferreo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fetente\": {\n    \"form\": \"fetente\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fiacco\": {\n    \"form\": \"fiacco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fiasco\": {\n    \"form\": \"fiasco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fievole\": {\n    \"form\": \"fievole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"filosofale\": {\n    \"form\": \"filosofale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"filosofica\": {\n    \"form\": \"filosofica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"filosofico\": {\n    \"form\": \"filosofico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finale\": {\n    \"form\": \"finale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finali\": {\n    \"form\": \"finali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"finalissima\": {\n    \"form\": \"finalissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finalmente\": {\n    \"form\": \"finalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"finanziari\": {\n    \"form\": \"finanziari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finanziario\": {\n    \"form\": \"finanziario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fine\": {\n    \"form\": \"fine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finimondo\": {\n    \"form\": \"finimondo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finora\": {\n    \"form\": \"finora\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"finta\": {\n    \"form\": \"finta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"finzione\": {\n    \"form\": \"finzione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fiorentina\": {\n    \"form\": \"fiorentina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fisica\": {\n    \"form\": \"fisica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fisicamente\": {\n    \"form\": \"fisicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fisiche\": {\n    \"form\": \"fisiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fisico\": {\n    \"form\": \"fisico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fisso\": {\n    \"form\": \"fisso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fitta\": {\n    \"form\": \"fitta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fittizio\": {\n    \"form\": \"fittizio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fitto\": {\n    \"form\": \"fitto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"flora\": {\n    \"form\": \"flora\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fluida\": {\n    \"form\": \"fluida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"folle\": {\n    \"form\": \"folle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"folli\": {\n    \"form\": \"folli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"folto\": {\n    \"form\": \"folto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fondamentale\": {\n    \"form\": \"fondamentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"fondamentali\": {\n    \"form\": \"fondamentali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fondamentalmente\": {\n    \"form\": \"fondamentalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fondo\": {\n    \"form\": \"fondo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fondocommerciale\": {\n    \"form\": \"fondocommerciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fonte\": {\n    \"form\": \"fonte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"forse\": {\n    \"form\": \"forse\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"forsennato\": {\n    \"form\": \"forsennato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"forte\": {\n    \"form\": \"forte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortemente\": {\n    \"form\": \"fortemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortezza\": {\n    \"form\": \"fortezza\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"forti\": {\n    \"form\": \"forti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortificazione\": {\n    \"form\": \"fortificazione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortuito\": {\n    \"form\": \"fortuito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"fortuna\": {\n    \"form\": \"fortuna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortunale\": {\n    \"form\": \"fortunale\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortunata\": {\n    \"form\": \"fortunata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fortunatamente\": {\n    \"form\": \"fortunatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"fortunati\": {\n    \"form\": \"fortunati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fortunato\": {\n    \"form\": \"fortunato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"forzata\": {\n    \"form\": \"forzata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"forzato\": {\n    \"form\": \"forzato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fotografica\": {\n    \"form\": \"fotografica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fotografico\": {\n    \"form\": \"fotografico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fragile\": {\n    \"form\": \"fragile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fragili\": {\n    \"form\": \"fragili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fraintendimento\": {\n    \"form\": \"fraintendimento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frana\": {\n    \"form\": \"frana\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"francamente\": {\n    \"form\": \"francamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"francesca\": {\n    \"form\": \"francesca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"francesco\": {\n    \"form\": \"francesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"francese\": {\n    \"form\": \"francese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"francesi\": {\n    \"form\": \"francesi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frapoco\": {\n    \"form\": \"frapoco\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fredda\": {\n    \"form\": \"fredda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.62\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"freddo\": {\n    \"form\": \"freddo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frediani\": {\n    \"form\": \"frediani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frenetica\": {\n    \"form\": \"frenetica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frequente\": {\n    \"form\": \"frequente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frequenti\": {\n    \"form\": \"frequenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fresca\": {\n    \"form\": \"fresca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"freschi\": {\n    \"form\": \"freschi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"fresco\": {\n    \"form\": \"fresco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"frescura\": {\n    \"form\": \"frescura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frettolosa\": {\n    \"form\": \"frettolosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frettoloso\": {\n    \"form\": \"frettoloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"frizzante\": {\n    \"form\": \"frizzante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"fruibile\": {\n    \"form\": \"fruibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fruire\": {\n    \"form\": \"fruire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fumoso\": {\n    \"form\": \"fumoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"funzionale\": {\n    \"form\": \"funzionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"funzionali\": {\n    \"form\": \"funzionali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"funzionante\": {\n    \"form\": \"funzionante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fuoco\": {\n    \"form\": \"fuoco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fuori\": {\n    \"form\": \"fuori\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fuorilegge\": {\n    \"form\": \"fuorilegge\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fuoripericolo\": {\n    \"form\": \"fuoripericolo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"fuorviante\": {\n    \"form\": \"fuorviante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"furbamente\": {\n    \"form\": \"furbamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"furbo\": {\n    \"form\": \"furbo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"furioso\": {\n    \"form\": \"furioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"futilita\": {\n    \"form\": \"futilita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"future\": {\n    \"form\": \"future\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"futures\": {\n    \"form\": \"futures\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"futuri\": {\n    \"form\": \"futuri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"futuribile\": {\n    \"form\": \"futuribile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"futuro\": {\n    \"form\": \"futuro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gagliardo\": {\n    \"form\": \"gagliardo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gaia\": {\n    \"form\": \"gaia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gaio\": {\n    \"form\": \"gaio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"galattica\": {\n    \"form\": \"galattica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gattadapelare\": {\n    \"form\": \"gattadapelare\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"gelo\": {\n    \"form\": \"gelo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"generale\": {\n    \"form\": \"generale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"generalmente\": {\n    \"form\": \"generalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"generico\": {\n    \"form\": \"generico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"generoso\": {\n    \"form\": \"generoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"genia\": {\n    \"form\": \"genia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"geniale\": {\n    \"form\": \"geniale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"geniali\": {\n    \"form\": \"geniali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"gentaglia\": {\n    \"form\": \"gentaglia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gentile\": {\n    \"form\": \"gentile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"genuinamente\": {\n    \"form\": \"genuinamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"genuino\": {\n    \"form\": \"genuino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"geografica\": {\n    \"form\": \"geografica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giapponese\": {\n    \"form\": \"giapponese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giapponesi\": {\n    \"form\": \"giapponesi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gigantesco\": {\n    \"form\": \"gigantesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giganti\": {\n    \"form\": \"giganti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giocando\": {\n    \"form\": \"giocando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gioco\": {\n    \"form\": \"gioco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giocondo\": {\n    \"form\": \"giocondo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giornalistico\": {\n    \"form\": \"giornalistico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giovane\": {\n    \"form\": \"giovane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"giovanile\": {\n    \"form\": \"giovanile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"giovanissima\": {\n    \"form\": \"giovanissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"giovanissimo\": {\n    \"form\": \"giovanissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giovincello\": {\n    \"form\": \"giovincello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giovinetto\": {\n    \"form\": \"giovinetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giubilo\": {\n    \"form\": \"giubilo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giungla\": {\n    \"form\": \"giungla\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giusta\": {\n    \"form\": \"giusta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"giustamente\": {\n    \"form\": \"giustamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"giuste\": {\n    \"form\": \"giuste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giusti\": {\n    \"form\": \"giusti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"giustificabile\": {\n    \"form\": \"giustificabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"giusto\": {\n    \"form\": \"giusto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"già\": {\n    \"form\": \"già\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"giù\": {\n    \"form\": \"giù\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"globale\": {\n    \"form\": \"globale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"globalmente\": {\n    \"form\": \"globalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"godere\": {\n    \"form\": \"godere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"godersi\": {\n    \"form\": \"godersi\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"godibile\": {\n    \"form\": \"godibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"gracile\": {\n    \"form\": \"gracile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gradevole\": {\n    \"form\": \"gradevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"gradire\": {\n    \"form\": \"gradire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grafica\": {\n    \"form\": \"grafica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grafico\": {\n    \"form\": \"grafico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grammaticale\": {\n    \"form\": \"grammaticale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grammaticali\": {\n    \"form\": \"grammaticali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grande\": {\n    \"form\": \"grande\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grandi\": {\n    \"form\": \"grandi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grandiosa\": {\n    \"form\": \"grandiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grandioso\": {\n    \"form\": \"grandioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grandissima\": {\n    \"form\": \"grandissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grandissimo\": {\n    \"form\": \"grandissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"gratis\": {\n    \"form\": \"gratis\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"gratuita\": {\n    \"form\": \"gratuita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"gratuitamente\": {\n    \"form\": \"gratuitamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"gratuite\": {\n    \"form\": \"gratuite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gratuiti\": {\n    \"form\": \"gratuiti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"gratuito\": {\n    \"form\": \"gratuito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grave\": {\n    \"form\": \"grave\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gravido\": {\n    \"form\": \"gravido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"grazie\": {\n    \"form\": \"grazie\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"grazioso\": {\n    \"form\": \"grazioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"greca\": {\n    \"form\": \"greca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grigi\": {\n    \"form\": \"grigi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grigia\": {\n    \"form\": \"grigia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grigio\": {\n    \"form\": \"grigio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grossa\": {\n    \"form\": \"grossa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grossi\": {\n    \"form\": \"grossi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"grosso\": {\n    \"form\": \"grosso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grossolani\": {\n    \"form\": \"grossolani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grossolano\": {\n    \"form\": \"grossolano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"grottesco\": {\n    \"form\": \"grottesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"guaio\": {\n    \"form\": \"guaio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"guardando\": {\n    \"form\": \"guardando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"guasta\": {\n    \"form\": \"guasta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"guasto\": {\n    \"form\": \"guasto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gustare\": {\n    \"form\": \"gustare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"gustose\": {\n    \"form\": \"gustose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"gustoso\": {\n    \"form\": \"gustoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"iattura\": {\n    \"form\": \"iattura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ideale\": {\n    \"form\": \"ideale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"identica\": {\n    \"form\": \"identica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"idiota\": {\n    \"form\": \"idiota\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"idiozia\": {\n    \"form\": \"idiozia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"idoneo\": {\n    \"form\": \"idoneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"iella\": {\n    \"form\": \"iella\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ieri\": {\n    \"form\": \"ieri\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"iettatura\": {\n    \"form\": \"iettatura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ignorante\": {\n    \"form\": \"ignorante\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ilare\": {\n    \"form\": \"ilare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"illeggibile\": {\n    \"form\": \"illeggibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"illeggibili\": {\n    \"form\": \"illeggibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"illogico\": {\n    \"form\": \"illogico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"illuminante\": {\n    \"form\": \"illuminante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.58\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"illusione\": {\n    \"form\": \"illusione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"illusorio\": {\n    \"form\": \"illusorio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"illustre\": {\n    \"form\": \"illustre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imbarazzato\": {\n    \"form\": \"imbarazzato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imbattibile\": {\n    \"form\": \"imbattibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imbecile\": {\n    \"form\": \"imbecile\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"imbecille\": {\n    \"form\": \"imbecille\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imbecillita\": {\n    \"form\": \"imbecillita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imbroglio\": {\n    \"form\": \"imbroglio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"immaginario\": {\n    \"form\": \"immaginario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"immancabile\": {\n    \"form\": \"immancabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"immediata\": {\n    \"form\": \"immediata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"immediatamente\": {\n    \"form\": \"immediatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"immediate\": {\n    \"form\": \"immediate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"immediato\": {\n    \"form\": \"immediato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"immensamente\": {\n    \"form\": \"immensamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"immenso\": {\n    \"form\": \"immenso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"immobile\": {\n    \"form\": \"immobile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"immodesto\": {\n    \"form\": \"immodesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"immortale\": {\n    \"form\": \"immortale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impacciato\": {\n    \"form\": \"impacciato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imparando\": {\n    \"form\": \"imparando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impareggiabile\": {\n    \"form\": \"impareggiabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imparziale\": {\n    \"form\": \"imparziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impavido\": {\n    \"form\": \"impavido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impaziente\": {\n    \"form\": \"impaziente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impeccabile\": {\n    \"form\": \"impeccabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"impeccabili\": {\n    \"form\": \"impeccabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"impegnativa\": {\n    \"form\": \"impegnativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impegnative\": {\n    \"form\": \"impegnative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impegnativo\": {\n    \"form\": \"impegnativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impellente\": {\n    \"form\": \"impellente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impenetrabile\": {\n    \"form\": \"impenetrabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"impercettibile\": {\n    \"form\": \"impercettibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"imperdibile\": {\n    \"form\": \"imperdibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"impersonale\": {\n    \"form\": \"impersonale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impiccio\": {\n    \"form\": \"impiccio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imponente\": {\n    \"form\": \"imponente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"importante\": {\n    \"form\": \"importante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"importanti\": {\n    \"form\": \"importanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"importantissimo\": {\n    \"form\": \"importantissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"importuno\": {\n    \"form\": \"importuno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impossibile\": {\n    \"form\": \"impossibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impossibili\": {\n    \"form\": \"impossibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imposti\": {\n    \"form\": \"imposti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impostore\": {\n    \"form\": \"impostore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"imprescindibile\": {\n    \"form\": \"imprescindibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impressi\": {\n    \"form\": \"impressi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"impressionabile\": {\n    \"form\": \"impressionabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"imprevedibile\": {\n    \"form\": \"imprevedibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"improbabile\": {\n    \"form\": \"improbabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"improbabili\": {\n    \"form\": \"improbabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"improvvisamente\": {\n    \"form\": \"improvvisamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"improvviso\": {\n    \"form\": \"improvviso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaccessibile\": {\n    \"form\": \"inaccessibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaccettabile\": {\n    \"form\": \"inaccettabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"inappuntabile\": {\n    \"form\": \"inappuntabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaridito\": {\n    \"form\": \"inaridito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaspettata\": {\n    \"form\": \"inaspettata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaspettatamente\": {\n    \"form\": \"inaspettatamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaspettati\": {\n    \"form\": \"inaspettati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inaspettato\": {\n    \"form\": \"inaspettato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inatteso\": {\n    \"form\": \"inatteso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incalzante\": {\n    \"form\": \"incalzante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incantato\": {\n    \"form\": \"incantato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incantevole\": {\n    \"form\": \"incantevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incapace\": {\n    \"form\": \"incapace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.25\",\n    \"label\": \"\"\n  },\n  \"incapaci\": {\n    \"form\": \"incapaci\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incessante\": {\n    \"form\": \"incessante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incessantemente\": {\n    \"form\": \"incessantemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"incidentale\": {\n    \"form\": \"incidentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incinta\": {\n    \"form\": \"incinta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incisivo\": {\n    \"form\": \"incisivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inclemente\": {\n    \"form\": \"inclemente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incline\": {\n    \"form\": \"incline\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incoffessato\": {\n    \"form\": \"incoffessato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incomodare\": {\n    \"form\": \"incomodare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incomodo\": {\n    \"form\": \"incomodo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incomparabile\": {\n    \"form\": \"incomparabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incompentente\": {\n    \"form\": \"incompentente\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incompleto\": {\n    \"form\": \"incompleto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incomprensibile\": {\n    \"form\": \"incomprensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"inconcludente\": {\n    \"form\": \"inconcludente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"incondizionato\": {\n    \"form\": \"incondizionato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"inconfondibile\": {\n    \"form\": \"inconfondibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inconsistente\": {\n    \"form\": \"inconsistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incontenibile\": {\n    \"form\": \"incontenibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incontenibilmente\": {\n    \"form\": \"incontenibilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incontrando\": {\n    \"form\": \"incontrando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incontrovertibile\": {\n    \"form\": \"incontrovertibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incredibile\": {\n    \"form\": \"incredibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incredibili\": {\n    \"form\": \"incredibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"incredibilmente\": {\n    \"form\": \"incredibilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indecente\": {\n    \"form\": \"indecente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indecifrabile\": {\n    \"form\": \"indecifrabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indecoroso\": {\n    \"form\": \"indecoroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indelebile\": {\n    \"form\": \"indelebile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indescrivibile\": {\n    \"form\": \"indescrivibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indiana\": {\n    \"form\": \"indiana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indietro\": {\n    \"form\": \"indietro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indifferente\": {\n    \"form\": \"indifferente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indifferenti\": {\n    \"form\": \"indifferenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"-0.50\",\n    \"label\": \"\"\n  },\n  \"indimenticabile\": {\n    \"form\": \"indimenticabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indimenticabili\": {\n    \"form\": \"indimenticabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"indipendente\": {\n    \"form\": \"indipendente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indipendentemente\": {\n    \"form\": \"indipendentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indisciplinato\": {\n    \"form\": \"indisciplinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indiscreto\": {\n    \"form\": \"indiscreto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indispensabile\": {\n    \"form\": \"indispensabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indispensabili\": {\n    \"form\": \"indispensabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indistinto\": {\n    \"form\": \"indistinto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"individuale\": {\n    \"form\": \"individuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"individuali\": {\n    \"form\": \"individuali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"individuo\": {\n    \"form\": \"individuo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indocile\": {\n    \"form\": \"indocile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indubbiamente\": {\n    \"form\": \"indubbiamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"indubbio\": {\n    \"form\": \"indubbio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"indumentointimo\": {\n    \"form\": \"indumentointimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"industriale\": {\n    \"form\": \"industriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ineccepibile\": {\n    \"form\": \"ineccepibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inedita\": {\n    \"form\": \"inedita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inedite\": {\n    \"form\": \"inedite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inediti\": {\n    \"form\": \"inediti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inefficace\": {\n    \"form\": \"inefficace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inefficiente\": {\n    \"form\": \"inefficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ineguagliabile\": {\n    \"form\": \"ineguagliabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ineguale\": {\n    \"form\": \"ineguale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inesistente\": {\n    \"form\": \"inesistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inesistenti\": {\n    \"form\": \"inesistenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inesplicabile\": {\n    \"form\": \"inesplicabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inetto\": {\n    \"form\": \"inetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inevitabile\": {\n    \"form\": \"inevitabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inevitabilmente\": {\n    \"form\": \"inevitabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"infantile\": {\n    \"form\": \"infantile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infantili\": {\n    \"form\": \"infantili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infastidire\": {\n    \"form\": \"infastidire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"infatti\": {\n    \"form\": \"infatti\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"infedele\": {\n    \"form\": \"infedele\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"infelicita\": {\n    \"form\": \"infelicita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inferiore\": {\n    \"form\": \"inferiore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.23\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inferocito\": {\n    \"form\": \"inferocito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infine\": {\n    \"form\": \"infine\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"infinita\": {\n    \"form\": \"infinita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infinitamente\": {\n    \"form\": \"infinitamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"infinite\": {\n    \"form\": \"infinite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infiniti\": {\n    \"form\": \"infiniti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inflessibile\": {\n    \"form\": \"inflessibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"influente\": {\n    \"form\": \"influente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infondato\": {\n    \"form\": \"infondato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infuocato\": {\n    \"form\": \"infuocato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"infuriato\": {\n    \"form\": \"infuriato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inganno\": {\n    \"form\": \"inganno\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingegnoso\": {\n    \"form\": \"ingegnoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingenua\": {\n    \"form\": \"ingenua\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingenuo\": {\n    \"form\": \"ingenuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inghippo\": {\n    \"form\": \"inghippo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingiustamente\": {\n    \"form\": \"ingiustamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"3.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingiustificabile\": {\n    \"form\": \"ingiustificabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inglese\": {\n    \"form\": \"inglese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ingombrante\": {\n    \"form\": \"ingombrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inimmaginabile\": {\n    \"form\": \"inimmaginabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.35\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"iniziale\": {\n    \"form\": \"iniziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"iniziali\": {\n    \"form\": \"iniziali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inizialmente\": {\n    \"form\": \"inizialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"innanzitutto\": {\n    \"form\": \"innanzitutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"innegabile\": {\n    \"form\": \"innegabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"innervosire\": {\n    \"form\": \"innervosire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"innocente\": {\n    \"form\": \"innocente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"innovativa\": {\n    \"form\": \"innovativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"innovative\": {\n    \"form\": \"innovative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"innovativo\": {\n    \"form\": \"innovativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"innumerevoli\": {\n    \"form\": \"innumerevoli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inoltre\": {\n    \"form\": \"inoltre\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inopportuno\": {\n    \"form\": \"inopportuno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inoppugnabile\": {\n    \"form\": \"inoppugnabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inparte\": {\n    \"form\": \"inparte\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inquietante\": {\n    \"form\": \"inquietante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"inquietanti\": {\n    \"form\": \"inquietanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"insegnante\": {\n    \"form\": \"insegnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insensato\": {\n    \"form\": \"insensato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insensibile\": {\n    \"form\": \"insensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"insespressivo\": {\n    \"form\": \"insespressivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insieme\": {\n    \"form\": \"insieme\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"insigne\": {\n    \"form\": \"insigne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insignificante\": {\n    \"form\": \"insignificante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"insipido\": {\n    \"form\": \"insipido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insoddisfacente\": {\n    \"form\": \"insoddisfacente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insoddisfatto\": {\n    \"form\": \"insoddisfatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insofferente\": {\n    \"form\": \"insofferente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insolito\": {\n    \"form\": \"insolito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insomma\": {\n    \"form\": \"insomma\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insopportabile\": {\n    \"form\": \"insopportabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insopportabili\": {\n    \"form\": \"insopportabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insostenibile\": {\n    \"form\": \"insostenibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inspiegabilmente\": {\n    \"form\": \"inspiegabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insubordinato\": {\n    \"form\": \"insubordinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insuccesso\": {\n    \"form\": \"insuccesso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insufficiente\": {\n    \"form\": \"insufficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"insulsi\": {\n    \"form\": \"insulsi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insulso\": {\n    \"form\": \"insulso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insuperabile\": {\n    \"form\": \"insuperabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"insussistente\": {\n    \"form\": \"insussistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intanto\": {\n    \"form\": \"intanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intatto\": {\n    \"form\": \"intatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"integra\": {\n    \"form\": \"integra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"integrale\": {\n    \"form\": \"integrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"integrante\": {\n    \"form\": \"integrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"integrato\": {\n    \"form\": \"integrato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"integro\": {\n    \"form\": \"integro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intellettuale\": {\n    \"form\": \"intellettuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intelligente\": {\n    \"form\": \"intelligente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intelligibile\": {\n    \"form\": \"intelligibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intendo\": {\n    \"form\": \"intendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intensa\": {\n    \"form\": \"intensa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intense\": {\n    \"form\": \"intense\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"intensi\": {\n    \"form\": \"intensi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intenso\": {\n    \"form\": \"intenso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"intera\": {\n    \"form\": \"intera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"interamente\": {\n    \"form\": \"interamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interattivo\": {\n    \"form\": \"interattivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intere\": {\n    \"form\": \"intere\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interessante\": {\n    \"form\": \"interessante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"interessanti\": {\n    \"form\": \"interessanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"interessantissimo\": {\n    \"form\": \"interessantissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"interi\": {\n    \"form\": \"interi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interiore\": {\n    \"form\": \"interiore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interiori\": {\n    \"form\": \"interiori\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interisti\": {\n    \"form\": \"interisti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intermedio\": {\n    \"form\": \"intermedio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"internazionale\": {\n    \"form\": \"internazionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interne\": {\n    \"form\": \"interne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interno\": {\n    \"form\": \"interno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intero\": {\n    \"form\": \"intero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interpersonali\": {\n    \"form\": \"interpersonali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"interrogativo\": {\n    \"form\": \"interrogativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intima\": {\n    \"form\": \"intima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intimo\": {\n    \"form\": \"intimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intollerabile\": {\n    \"form\": \"intollerabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intollerante\": {\n    \"form\": \"intollerante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intorno\": {\n    \"form\": \"intorno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intramontabile\": {\n    \"form\": \"intramontabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intramontabili\": {\n    \"form\": \"intramontabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intransigente\": {\n    \"form\": \"intransigente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intrattabile\": {\n    \"form\": \"intrattabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intrepido\": {\n    \"form\": \"intrepido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intricato\": {\n    \"form\": \"intricato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intrigante\": {\n    \"form\": \"intrigante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"intrigo\": {\n    \"form\": \"intrigo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"introduttivo\": {\n    \"form\": \"introduttivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"introspettivo\": {\n    \"form\": \"introspettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"intuitivo\": {\n    \"form\": \"intuitivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inusitato\": {\n    \"form\": \"inusitato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inusuale\": {\n    \"form\": \"inusuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inutile\": {\n    \"form\": \"inutile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"inutili\": {\n    \"form\": \"inutili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"inutilizzabile\": {\n    \"form\": \"inutilizzabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inutilmente\": {\n    \"form\": \"inutilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"invadente\": {\n    \"form\": \"invadente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"invece\": {\n    \"form\": \"invece\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inverosimile\": {\n    \"form\": \"inverosimile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inverosimili\": {\n    \"form\": \"inverosimili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"investigatore\": {\n    \"form\": \"investigatore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"inviatospeciale\": {\n    \"form\": \"inviatospeciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"invincibile\": {\n    \"form\": \"invincibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"invisibile\": {\n    \"form\": \"invisibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"invisibili\": {\n    \"form\": \"invisibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"involontariamente\": {\n    \"form\": \"involontariamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ipersensibile\": {\n    \"form\": \"ipersensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ironica\": {\n    \"form\": \"ironica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"ironici\": {\n    \"form\": \"ironici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ironico\": {\n    \"form\": \"ironico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irragionevole\": {\n    \"form\": \"irragionevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irreale\": {\n    \"form\": \"irreale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrefrenabile\": {\n    \"form\": \"irrefrenabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrefrenabilmente\": {\n    \"form\": \"irrefrenabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irreprensibile\": {\n    \"form\": \"irreprensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irresistibile\": {\n    \"form\": \"irresistibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrilevante\": {\n    \"form\": \"irrilevante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrimediabilmente\": {\n    \"form\": \"irrimediabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrinunciabile\": {\n    \"form\": \"irrinunciabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrisolti\": {\n    \"form\": \"irrisolti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irrisorio\": {\n    \"form\": \"irrisorio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irritante\": {\n    \"form\": \"irritante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irritare\": {\n    \"form\": \"irritare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"irruento\": {\n    \"form\": \"irruento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"islandese\": {\n    \"form\": \"islandese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"istantaneamente\": {\n    \"form\": \"istantaneamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"istantaneo\": {\n    \"form\": \"istantaneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"istruttiva\": {\n    \"form\": \"istruttiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"istruttivo\": {\n    \"form\": \"istruttivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"italiana\": {\n    \"form\": \"italiana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"italiane\": {\n    \"form\": \"italiane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"italiani\": {\n    \"form\": \"italiani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"italiano\": {\n    \"form\": \"italiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"italo\": {\n    \"form\": \"italo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"jane\": {\n    \"form\": \"jane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"kafkiano\": {\n    \"form\": \"kafkiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"laconico\": {\n    \"form\": \"laconico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lagnanza\": {\n    \"form\": \"lagnanza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"lagno\": {\n    \"form\": \"lagno\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"lambiccato\": {\n    \"form\": \"lambiccato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"lamentanza\": {\n    \"form\": \"lamentanza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lamentare\": {\n    \"form\": \"lamentare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lamentazione\": {\n    \"form\": \"lamentazione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lamentela\": {\n    \"form\": \"lamentela\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lamento\": {\n    \"form\": \"lamento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lampante\": {\n    \"form\": \"lampante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"lampo\": {\n    \"form\": \"lampo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"languido\": {\n    \"form\": \"languido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lapalissianamente\": {\n    \"form\": \"lapalissianamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"lapalissiano\": {\n    \"form\": \"lapalissiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"larga\": {\n    \"form\": \"larga\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"largo\": {\n    \"form\": \"largo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lasciando\": {\n    \"form\": \"lasciando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"-0.01\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lasciandosi\": {\n    \"form\": \"lasciandosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lasciare\": {\n    \"form\": \"lasciare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lavatadicapo\": {\n    \"form\": \"lavatadicapo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lavorativo\": {\n    \"form\": \"lavorativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lavorio\": {\n    \"form\": \"lavorio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leader\": {\n    \"form\": \"leader\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leale\": {\n    \"form\": \"leale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"lealmente\": {\n    \"form\": \"lealmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lecito\": {\n    \"form\": \"lecito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"legale\": {\n    \"form\": \"legale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"legate\": {\n    \"form\": \"legate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leggendari\": {\n    \"form\": \"leggendari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leggendo\": {\n    \"form\": \"leggendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leggera\": {\n    \"form\": \"leggera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"leggeri\": {\n    \"form\": \"leggeri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leggermente\": {\n    \"form\": \"leggermente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"0.25\",\n    \"label\": \"\"\n  },\n  \"leggero\": {\n    \"form\": \"leggero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"leggiadro\": {\n    \"form\": \"leggiadro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"leggibile\": {\n    \"form\": \"leggibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"legittimo\": {\n    \"form\": \"legittimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lenta\": {\n    \"form\": \"lenta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lentamente\": {\n    \"form\": \"lentamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"lente\": {\n    \"form\": \"lente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lenticchia\": {\n    \"form\": \"lenticchia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lento\": {\n    \"form\": \"lento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"lepido\": {\n    \"form\": \"lepido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"letale\": {\n    \"form\": \"letale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"letteralmente\": {\n    \"form\": \"letteralmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"letterari\": {\n    \"form\": \"letterari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"letteraria\": {\n    \"form\": \"letteraria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.02\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"letterario\": {\n    \"form\": \"letterario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"lettrici\": {\n    \"form\": \"lettrici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lezzo\": {\n    \"form\": \"lezzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"libera\": {\n    \"form\": \"libera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"liberale\": {\n    \"form\": \"liberale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"liberamente\": {\n    \"form\": \"liberamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"liberi\": {\n    \"form\": \"liberi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"libero\": {\n    \"form\": \"libero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lieto\": {\n    \"form\": \"lieto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lieve\": {\n    \"form\": \"lieve\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lievemente\": {\n    \"form\": \"lievemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"-0.50\",\n    \"label\": \"\"\n  },\n  \"liliana\": {\n    \"form\": \"liliana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"limitata\": {\n    \"form\": \"limitata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lineare\": {\n    \"form\": \"lineare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lingerie\": {\n    \"form\": \"lingerie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"linguistica\": {\n    \"form\": \"linguistica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"locale\": {\n    \"form\": \"locale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"locali\": {\n    \"form\": \"locali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lodevole\": {\n    \"form\": \"lodevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"logico\": {\n    \"form\": \"logico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"londinese\": {\n    \"form\": \"londinese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lontana\": {\n    \"form\": \"lontana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lontanamente\": {\n    \"form\": \"lontanamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"-0.50\",\n    \"label\": \"\"\n  },\n  \"lontane\": {\n    \"form\": \"lontane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lontani\": {\n    \"form\": \"lontani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.00\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lontano\": {\n    \"form\": \"lontano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lord\": {\n    \"form\": \"lord\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"loro\": {\n    \"form\": \"loro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"love\": {\n    \"form\": \"love\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"luccicante\": {\n    \"form\": \"luccicante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lucido\": {\n    \"form\": \"lucido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"luminoso\": {\n    \"form\": \"luminoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lunga\": {\n    \"form\": \"lunga\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"lunghe\": {\n    \"form\": \"lunghe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lunghi\": {\n    \"form\": \"lunghi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lungi\": {\n    \"form\": \"lungi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lussureggiante\": {\n    \"form\": \"lussureggiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"luttuoso\": {\n    \"form\": \"luttuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"là\": {\n    \"form\": \"là\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"lì\": {\n    \"form\": \"lì\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"machiavellico\": {\n    \"form\": \"machiavellico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maestoso\": {\n    \"form\": \"maestoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magagna\": {\n    \"form\": \"magagna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magari\": {\n    \"form\": \"magari\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"maggiore\": {\n    \"form\": \"maggiore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"maggiori\": {\n    \"form\": \"maggiori\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.51\",\n    \"subjectivity\": \"0.53\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"maggiormente\": {\n    \"form\": \"maggiormente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"magica\": {\n    \"form\": \"magica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magiche\": {\n    \"form\": \"magiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"magici\": {\n    \"form\": \"magici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"magico\": {\n    \"form\": \"magico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magistrale\": {\n    \"form\": \"magistrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magistralmente\": {\n    \"form\": \"magistralmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magnanimo\": {\n    \"form\": \"magnanimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magnetico\": {\n    \"form\": \"magnetico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"magnifica\": {\n    \"form\": \"magnifica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"magnificamente\": {\n    \"form\": \"magnificamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"magnifico\": {\n    \"form\": \"magnifico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"magro\": {\n    \"form\": \"magro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mah\": {\n    \"form\": \"mah\",\n    \"pos\": \"UH\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mai\": {\n    \"form\": \"mai\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maiuscolo\": {\n    \"form\": \"maiuscolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malanno\": {\n    \"form\": \"malanno\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malasorte\": {\n    \"form\": \"malasorte\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malata\": {\n    \"form\": \"malata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malaticcio\": {\n    \"form\": \"malaticcio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malato\": {\n    \"form\": \"malato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"malattia\": {\n    \"form\": \"malattia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malcontento\": {\n    \"form\": \"malcontento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"male\": {\n    \"form\": \"male\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malessere\": {\n    \"form\": \"malessere\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maligno\": {\n    \"form\": \"maligno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malinconico\": {\n    \"form\": \"malinconico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malinteso\": {\n    \"form\": \"malinteso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malissimo\": {\n    \"form\": \"malissimo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"malvagio\": {\n    \"form\": \"malvagio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"malvivente\": {\n    \"form\": \"malvivente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mancante\": {\n    \"form\": \"mancante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mancanti\": {\n    \"form\": \"mancanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mancare\": {\n    \"form\": \"mancare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mancata\": {\n    \"form\": \"mancata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mancato\": {\n    \"form\": \"mancato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"manchevole\": {\n    \"form\": \"manchevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maneggio\": {\n    \"form\": \"maneggio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maneggione\": {\n    \"form\": \"maneggione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"manesco\": {\n    \"form\": \"manesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maniaco\": {\n    \"form\": \"maniaco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"manifesto\": {\n    \"form\": \"manifesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mantenendo\": {\n    \"form\": \"mantenendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maria\": {\n    \"form\": \"maria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mario\": {\n    \"form\": \"mario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"marmaglia\": {\n    \"form\": \"marmaglia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"marmocchio\": {\n    \"form\": \"marmocchio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"martirio\": {\n    \"form\": \"martirio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"martirizzare\": {\n    \"form\": \"martirizzare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"martoriare\": {\n    \"form\": \"martoriare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"marxista\": {\n    \"form\": \"marxista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"maschile\": {\n    \"form\": \"maschile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maschili\": {\n    \"form\": \"maschili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mascolino\": {\n    \"form\": \"mascolino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"massiccio\": {\n    \"form\": \"massiccio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"massima\": {\n    \"form\": \"massima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"massimi\": {\n    \"form\": \"massimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"massimo\": {\n    \"form\": \"massimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"materiali\": {\n    \"form\": \"materiali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"matto\": {\n    \"form\": \"matto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"matura\": {\n    \"form\": \"matura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maturi\": {\n    \"form\": \"maturi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"maturo\": {\n    \"form\": \"maturo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"max\": {\n    \"form\": \"max\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mediano\": {\n    \"form\": \"mediano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"medievale\": {\n    \"form\": \"medievale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"medievali\": {\n    \"form\": \"medievali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"medio\": {\n    \"form\": \"medio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mediocre\": {\n    \"form\": \"mediocre\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"mediocrita\": {\n    \"form\": \"mediocrita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mediterraneo\": {\n    \"form\": \"mediterraneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meglio\": {\n    \"form\": \"meglio\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"melange\": {\n    \"form\": \"melange\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"melensa\": {\n    \"form\": \"melensa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"melodramma\": {\n    \"form\": \"melodramma\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"memorabile\": {\n    \"form\": \"memorabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"memorabili\": {\n    \"form\": \"memorabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mena\": {\n    \"form\": \"mena\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mendico\": {\n    \"form\": \"mendico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"meno\": {\n    \"form\": \"meno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"mentale\": {\n    \"form\": \"mentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mentali\": {\n    \"form\": \"mentali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mentalmente\": {\n    \"form\": \"mentalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mentecatto\": {\n    \"form\": \"mentecatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meramente\": {\n    \"form\": \"meramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meravigliato\": {\n    \"form\": \"meravigliato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meravigliosa\": {\n    \"form\": \"meravigliosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meravigliosamente\": {\n    \"form\": \"meravigliosamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meravigliose\": {\n    \"form\": \"meravigliose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meravigliosi\": {\n    \"form\": \"meravigliosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meraviglioso\": {\n    \"form\": \"meraviglioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"merce\": {\n    \"form\": \"merce\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"merda\": {\n    \"form\": \"merda\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meritatissime\": {\n    \"form\": \"meritatissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"meritevole\": {\n    \"form\": \"meritevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"meritorio\": {\n    \"form\": \"meritorio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"merlo\": {\n    \"form\": \"merlo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mero\": {\n    \"form\": \"mero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mescolanza\": {\n    \"form\": \"mescolanza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"messinscena\": {\n    \"form\": \"messinscena\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mettendo\": {\n    \"form\": \"mettendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mettereincroce\": {\n    \"form\": \"mettereincroce\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mezza\": {\n    \"form\": \"mezza\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mezzosangue\": {\n    \"form\": \"mezzosangue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"mica\": {\n    \"form\": \"mica\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"migliore\": {\n    \"form\": \"migliore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"migliori\": {\n    \"form\": \"migliori\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"milanese\": {\n    \"form\": \"milanese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"miliare\": {\n    \"form\": \"miliare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"militare\": {\n    \"form\": \"militare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"milite\": {\n    \"form\": \"milite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"minchione\": {\n    \"form\": \"minchione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"minima\": {\n    \"form\": \"minima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"minimamente\": {\n    \"form\": \"minimamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"minimi\": {\n    \"form\": \"minimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"minuziosamente\": {\n    \"form\": \"minuziosamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"mirabile\": {\n    \"form\": \"mirabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"miraggio\": {\n    \"form\": \"miraggio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"misantropo\": {\n    \"form\": \"misantropo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"miscellanea\": {\n    \"form\": \"miscellanea\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mischia\": {\n    \"form\": \"mischia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"miscredente\": {\n    \"form\": \"miscredente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"miscuglio\": {\n    \"form\": \"miscuglio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"miserabili\": {\n    \"form\": \"miserabili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"misteriosa\": {\n    \"form\": \"misteriosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"misteriosi\": {\n    \"form\": \"misteriosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"misterioso\": {\n    \"form\": \"misterioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"mistero\": {\n    \"form\": \"mistero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mistica\": {\n    \"form\": \"mistica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mistificazione\": {\n    \"form\": \"mistificazione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mistione\": {\n    \"form\": \"mistione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"misto\": {\n    \"form\": \"misto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mistura\": {\n    \"form\": \"mistura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mitica\": {\n    \"form\": \"mitica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"mitico\": {\n    \"form\": \"mitico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mix\": {\n    \"form\": \"mix\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"modello\": {\n    \"form\": \"modello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"moderna\": {\n    \"form\": \"moderna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"moderne\": {\n    \"form\": \"moderne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"moderni\": {\n    \"form\": \"moderni\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"moderno\": {\n    \"form\": \"moderno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"modesta\": {\n    \"form\": \"modesta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"modesto\": {\n    \"form\": \"modesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"modico\": {\n    \"form\": \"modico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"molestare\": {\n    \"form\": \"molestare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"molestia\": {\n    \"form\": \"molestia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"molesto\": {\n    \"form\": \"molesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"molta\": {\n    \"form\": \"molta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"molte\": {\n    \"form\": \"molte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"molteplici\": {\n    \"form\": \"molteplici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"molti\": {\n    \"form\": \"molti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"moltissime\": {\n    \"form\": \"moltissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"moltissimi\": {\n    \"form\": \"moltissimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"moltissimo\": {\n    \"form\": \"moltissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"molto\": {\n    \"form\": \"molto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"mondiale\": {\n    \"form\": \"mondiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mondiali\": {\n    \"form\": \"mondiali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mondoesterno\": {\n    \"form\": \"mondoesterno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"monolitico\": {\n    \"form\": \"monolitico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"monotona\": {\n    \"form\": \"monotona\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"monotono\": {\n    \"form\": \"monotono\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"monumentale\": {\n    \"form\": \"monumentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morale\": {\n    \"form\": \"morale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morali\": {\n    \"form\": \"morali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morbida\": {\n    \"form\": \"morbida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"mordace\": {\n    \"form\": \"mordace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morigerato\": {\n    \"form\": \"morigerato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"morire\": {\n    \"form\": \"morire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"mortale\": {\n    \"form\": \"mortale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mortali\": {\n    \"form\": \"mortali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morte\": {\n    \"form\": \"morte\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"morto\": {\n    \"form\": \"morto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"mostruosamente\": {\n    \"form\": \"mostruosamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mostruoso\": {\n    \"form\": \"mostruoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"moto\": {\n    \"form\": \"moto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"mozzafiato\": {\n    \"form\": \"mozzafiato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"multiforme\": {\n    \"form\": \"multiforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"municipale\": {\n    \"form\": \"municipale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"municipio\": {\n    \"form\": \"municipio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"munifico\": {\n    \"form\": \"munifico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"muscoloso\": {\n    \"form\": \"muscoloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"musicale\": {\n    \"form\": \"musicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"must\": {\n    \"form\": \"must\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"napoletano\": {\n    \"form\": \"napoletano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"narrante\": {\n    \"form\": \"narrante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"narrative\": {\n    \"form\": \"narrative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"narrativi\": {\n    \"form\": \"narrativi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"narrativo\": {\n    \"form\": \"narrativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nascondo\": {\n    \"form\": \"nascondo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nascosti\": {\n    \"form\": \"nascosti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nascosto\": {\n    \"form\": \"nascosto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"natale\": {\n    \"form\": \"natale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nativo\": {\n    \"form\": \"nativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"naturale\": {\n    \"form\": \"naturale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"naturali\": {\n    \"form\": \"naturali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"naturalmente\": {\n    \"form\": \"naturalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"naufragare\": {\n    \"form\": \"naufragare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"naufragio\": {\n    \"form\": \"naufragio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nazista\": {\n    \"form\": \"nazista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nazisti\": {\n    \"form\": \"nazisti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"neanche\": {\n    \"form\": \"neanche\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nebuloso\": {\n    \"form\": \"nebuloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"necessari\": {\n    \"form\": \"necessari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"necessaria\": {\n    \"form\": \"necessaria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"necessariamente\": {\n    \"form\": \"necessariamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"necessario\": {\n    \"form\": \"necessario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"negativa\": {\n    \"form\": \"negativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"negative\": {\n    \"form\": \"negative\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"negativi\": {\n    \"form\": \"negativi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"negativo\": {\n    \"form\": \"negativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"negozio\": {\n    \"form\": \"negozio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nemmeno\": {\n    \"form\": \"nemmeno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"nera\": {\n    \"form\": \"nera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"neri\": {\n    \"form\": \"neri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nero\": {\n    \"form\": \"nero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nessuna\": {\n    \"form\": \"nessuna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"netta\": {\n    \"form\": \"netta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"netto\": {\n    \"form\": \"netto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"neutrale\": {\n    \"form\": \"neutrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"neutro\": {\n    \"form\": \"neutro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"nipponico\": {\n    \"form\": \"nipponico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nitide\": {\n    \"form\": \"nitide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nn\": {\n    \"form\": \"nn\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nobile\": {\n    \"form\": \"nobile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nobili\": {\n    \"form\": \"nobili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nocivo\": {\n    \"form\": \"nocivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nodogordiano\": {\n    \"form\": \"nodogordiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"noia\": {\n    \"form\": \"noia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.40\",\n    \"label\": \"\"\n  },\n  \"noiosa\": {\n    \"form\": \"noiosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"noiose\": {\n    \"form\": \"noiose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"noioso\": {\n    \"form\": \"noioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"noisita\": {\n    \"form\": \"noisita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nordici\": {\n    \"form\": \"nordici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nordico\": {\n    \"form\": \"nordico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"normale\": {\n    \"form\": \"normale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"normali\": {\n    \"form\": \"normali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"normalmente\": {\n    \"form\": \"normalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nostalgia\": {\n    \"form\": \"nostalgia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"nostalgico\": {\n    \"form\": \"nostalgico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nostrana\": {\n    \"form\": \"nostrana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nostrani\": {\n    \"form\": \"nostrani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nostri\": {\n    \"form\": \"nostri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nostro\": {\n    \"form\": \"nostro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.02\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nota\": {\n    \"form\": \"nota\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"notamusicale\": {\n    \"form\": \"notamusicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"notevole\": {\n    \"form\": \"notevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"notevoli\": {\n    \"form\": \"notevoli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"notevolmente\": {\n    \"form\": \"notevolmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"noti\": {\n    \"form\": \"noti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"noto\": {\n    \"form\": \"noto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"notorio\": {\n    \"form\": \"notorio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"novello\": {\n    \"form\": \"novello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"novero\": {\n    \"form\": \"novero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"novita\": {\n    \"form\": \"novita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"novo\": {\n    \"form\": \"novo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nudo\": {\n    \"form\": \"nudo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"numerose\": {\n    \"form\": \"numerose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"numerosi\": {\n    \"form\": \"numerosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"nuova\": {\n    \"form\": \"nuova\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"nuovamente\": {\n    \"form\": \"nuovamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"nuove\": {\n    \"form\": \"nuove\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"nuovi\": {\n    \"form\": \"nuovi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"nuovo\": {\n    \"form\": \"nuovo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"obbediente\": {\n    \"form\": \"obbediente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obbligante\": {\n    \"form\": \"obbligante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obbligato\": {\n    \"form\": \"obbligato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obbligatoria\": {\n    \"form\": \"obbligatoria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obbligatorio\": {\n    \"form\": \"obbligatorio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obbrobrioso\": {\n    \"form\": \"obbrobrioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obiettivo\": {\n    \"form\": \"obiettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obliare\": {\n    \"form\": \"obliare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"obliquo\": {\n    \"form\": \"obliquo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ocaggine\": {\n    \"form\": \"ocaggine\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"occidentale\": {\n    \"form\": \"occidentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"occidentali\": {\n    \"form\": \"occidentali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"occorrenza\": {\n    \"form\": \"occorrenza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"occulto\": {\n    \"form\": \"occulto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oculato\": {\n    \"form\": \"oculato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"odiare\": {\n    \"form\": \"odiare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"odierna\": {\n    \"form\": \"odierna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"odierno\": {\n    \"form\": \"odierno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"odio\": {\n    \"form\": \"odio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"odioso\": {\n    \"form\": \"odioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"offendere\": {\n    \"form\": \"offendere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oggettivo\": {\n    \"form\": \"oggettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oggi\": {\n    \"form\": \"oggi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oggidi\": {\n    \"form\": \"oggidi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oltretutto\": {\n    \"form\": \"oltretutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"omelia\": {\n    \"form\": \"omelia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"omologo\": {\n    \"form\": \"omologo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"omonima\": {\n    \"form\": \"omonima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"onestamente\": {\n    \"form\": \"onestamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"onesto\": {\n    \"form\": \"onesto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"onirico\": {\n    \"form\": \"onirico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"online\": {\n    \"form\": \"online\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"onorabile\": {\n    \"form\": \"onorabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"onorato\": {\n    \"form\": \"onorato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"operadarte\": {\n    \"form\": \"operadarte\",\n    \"pos\": \"NN\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"opportunista\": {\n    \"form\": \"opportunista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"opportuno\": {\n    \"form\": \"opportuno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"opposto\": {\n    \"form\": \"opposto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ora\": {\n    \"form\": \"ora\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orale\": {\n    \"form\": \"orale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oramai\": {\n    \"form\": \"oramai\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orari\": {\n    \"form\": \"orari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ordinario\": {\n    \"form\": \"ordinario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orfana\": {\n    \"form\": \"orfana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orientale\": {\n    \"form\": \"orientale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"originale\": {\n    \"form\": \"originale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"originalissima\": {\n    \"form\": \"originalissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"originaria\": {\n    \"form\": \"originaria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"originariamente\": {\n    \"form\": \"originariamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"originario\": {\n    \"form\": \"originario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"origine\": {\n    \"form\": \"origine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orizzontale\": {\n    \"form\": \"orizzontale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ormai\": {\n    \"form\": \"ormai\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oro\": {\n    \"form\": \"oro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"orrendo\": {\n    \"form\": \"orrendo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orribile\": {\n    \"form\": \"orribile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orripilante\": {\n    \"form\": \"orripilante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"orrore\": {\n    \"form\": \"orrore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ortogonale\": {\n    \"form\": \"ortogonale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ortografici\": {\n    \"form\": \"ortografici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"osceno\": {\n    \"form\": \"osceno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"oscura\": {\n    \"form\": \"oscura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oscurantista\": {\n    \"form\": \"oscurantista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oscuri\": {\n    \"form\": \"oscuri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oscurita\": {\n    \"form\": \"oscurita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"oscuro\": {\n    \"form\": \"oscuro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ospitale\": {\n    \"form\": \"ospitale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ossessiva\": {\n    \"form\": \"ossessiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ossessivo\": {\n    \"form\": \"ossessivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"ostile\": {\n    \"form\": \"ostile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottima\": {\n    \"form\": \"ottima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottimale\": {\n    \"form\": \"ottimale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ottimamente\": {\n    \"form\": \"ottimamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ottime\": {\n    \"form\": \"ottime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottimi\": {\n    \"form\": \"ottimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottimo\": {\n    \"form\": \"ottimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottocentesco\": {\n    \"form\": \"ottocentesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ottusita\": {\n    \"form\": \"ottusita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ove\": {\n    \"form\": \"ove\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ovunque\": {\n    \"form\": \"ovunque\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ovviamente\": {\n    \"form\": \"ovviamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ovvio\": {\n    \"form\": \"ovvio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ozioso\": {\n    \"form\": \"ozioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pacata\": {\n    \"form\": \"pacata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pacchiano\": {\n    \"form\": \"pacchiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pagano\": {\n    \"form\": \"pagano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paghi\": {\n    \"form\": \"paghi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pagliaccio\": {\n    \"form\": \"pagliaccio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"palese\": {\n    \"form\": \"palese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"palesemente\": {\n    \"form\": \"palesemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pallaalpiede\": {\n    \"form\": \"pallaalpiede\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pandiani\": {\n    \"form\": \"pandiani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pania\": {\n    \"form\": \"pania\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"panico\": {\n    \"form\": \"panico\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"panoramica\": {\n    \"form\": \"panoramica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pantagruelico\": {\n    \"form\": \"pantagruelico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pantano\": {\n    \"form\": \"pantano\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paradigmatico\": {\n    \"form\": \"paradigmatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paradisiaco\": {\n    \"form\": \"paradisiaco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paradossale\": {\n    \"form\": \"paradossale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paradossali\": {\n    \"form\": \"paradossali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"paradossalmente\": {\n    \"form\": \"paradossalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paragonabile\": {\n    \"form\": \"paragonabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parallelamente\": {\n    \"form\": \"parallelamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"paranormale\": {\n    \"form\": \"paranormale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parapiglia\": {\n    \"form\": \"parapiglia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parecchi\": {\n    \"form\": \"parecchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parecchio\": {\n    \"form\": \"parecchio\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pari\": {\n    \"form\": \"pari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parlando\": {\n    \"form\": \"parlando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"partendo\": {\n    \"form\": \"partendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"particolare\": {\n    \"form\": \"particolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"particolarmente\": {\n    \"form\": \"particolarmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"partirsidalmondo\": {\n    \"form\": \"partirsidalmondo\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parziale\": {\n    \"form\": \"parziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"parzialmente\": {\n    \"form\": \"parzialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passando\": {\n    \"form\": \"passando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passareamigliorvita\": {\n    \"form\": \"passareamigliorvita\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passate\": {\n    \"form\": \"passate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passatempo\": {\n    \"form\": \"passatempo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passato\": {\n    \"form\": \"passato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"passionale\": {\n    \"form\": \"passionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"passionali\": {\n    \"form\": \"passionali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"pastetta\": {\n    \"form\": \"pastetta\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pasticcio\": {\n    \"form\": \"pasticcio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patente\": {\n    \"form\": \"patente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pateracchio\": {\n    \"form\": \"pateracchio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patetico\": {\n    \"form\": \"patetico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"patimento\": {\n    \"form\": \"patimento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patito\": {\n    \"form\": \"patito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patologia\": {\n    \"form\": \"patologia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patrimonio\": {\n    \"form\": \"patrimonio\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"patrizio\": {\n    \"form\": \"patrizio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pauroso\": {\n    \"form\": \"pauroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"paziente\": {\n    \"form\": \"paziente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pazientemente\": {\n    \"form\": \"pazientemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pazza\": {\n    \"form\": \"pazza\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pazzesco\": {\n    \"form\": \"pazzesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.42\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pazzo\": {\n    \"form\": \"pazzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"peculiarita\": {\n    \"form\": \"peculiarita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"peculiarmente\": {\n    \"form\": \"peculiarmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pedante\": {\n    \"form\": \"pedante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"peggio\": {\n    \"form\": \"peggio\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"peggiore\": {\n    \"form\": \"peggiore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pena\": {\n    \"form\": \"pena\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"penetrante\": {\n    \"form\": \"penetrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"penoso\": {\n    \"form\": \"penoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pensando\": {\n    \"form\": \"pensando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pensiero\": {\n    \"form\": \"pensiero\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"peraltro\": {\n    \"form\": \"peraltro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"perche\": {\n    \"form\": \"perche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"perdendo\": {\n    \"form\": \"perdendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perdente\": {\n    \"form\": \"perdente\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perdita\": {\n    \"form\": \"perdita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perdutamente\": {\n    \"form\": \"perdutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"perdute\": {\n    \"form\": \"perdute\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perduto\": {\n    \"form\": \"perduto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perenne\": {\n    \"form\": \"perenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perennemente\": {\n    \"form\": \"perennemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perenterio\": {\n    \"form\": \"perenterio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfetta\": {\n    \"form\": \"perfetta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"perfettamente\": {\n    \"form\": \"perfettamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfette\": {\n    \"form\": \"perfette\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfetti\": {\n    \"form\": \"perfetti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfetto\": {\n    \"form\": \"perfetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfido\": {\n    \"form\": \"perfido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perfino\": {\n    \"form\": \"perfino\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pericolosa\": {\n    \"form\": \"pericolosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pericolosi\": {\n    \"form\": \"pericolosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pericoloso\": {\n    \"form\": \"pericoloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"perla\": {\n    \"form\": \"perla\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perlomeno\": {\n    \"form\": \"perlomeno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"permanente\": {\n    \"form\": \"permanente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"permettendo\": {\n    \"form\": \"permettendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perpendicolare\": {\n    \"form\": \"perpendicolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perpetuo\": {\n    \"form\": \"perpetuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perplessa\": {\n    \"form\": \"perplessa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"perplessi\": {\n    \"form\": \"perplessi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perplesso\": {\n    \"form\": \"perplesso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"persa\": {\n    \"form\": \"persa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.55\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"perseverante\": {\n    \"form\": \"perseverante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"persi\": {\n    \"form\": \"persi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"persino\": {\n    \"form\": \"persino\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"perso\": {\n    \"form\": \"perso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"persona\": {\n    \"form\": \"persona\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"personale\": {\n    \"form\": \"personale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"personalmente\": {\n    \"form\": \"personalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perspicace\": {\n    \"form\": \"perspicace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perspicuamente\": {\n    \"form\": \"perspicuamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perspicuo\": {\n    \"form\": \"perspicuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"persuasivo\": {\n    \"form\": \"persuasivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perverse\": {\n    \"form\": \"perverse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"perverso\": {\n    \"form\": \"perverso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"però\": {\n    \"form\": \"però\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pesante\": {\n    \"form\": \"pesante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pescelesso\": {\n    \"form\": \"pescelesso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"peso\": {\n    \"form\": \"peso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pesomassimo\": {\n    \"form\": \"pesomassimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pessima\": {\n    \"form\": \"pessima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"pessimi\": {\n    \"form\": \"pessimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pessimista\": {\n    \"form\": \"pessimista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"pessimistico\": {\n    \"form\": \"pessimistico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pessimo\": {\n    \"form\": \"pessimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pestifera\": {\n    \"form\": \"pestifera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pestilenza\": {\n    \"form\": \"pestilenza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"petulante\": {\n    \"form\": \"petulante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"pia\": {\n    \"form\": \"pia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piacere\": {\n    \"form\": \"piacere\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"piacevole\": {\n    \"form\": \"piacevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piacevolissima\": {\n    \"form\": \"piacevolissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piacevolissimo\": {\n    \"form\": \"piacevolissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"piacevolmente\": {\n    \"form\": \"piacevolmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"piangere\": {\n    \"form\": \"piangere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"pianto\": {\n    \"form\": \"pianto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piatta\": {\n    \"form\": \"piatta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piatto\": {\n    \"form\": \"piatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piazzese\": {\n    \"form\": \"piazzese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piccione\": {\n    \"form\": \"piccione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"picco\": {\n    \"form\": \"picco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piccola\": {\n    \"form\": \"piccola\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piccole\": {\n    \"form\": \"piccole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"piccoli\": {\n    \"form\": \"piccoli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.13\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"piccolissimo\": {\n    \"form\": \"piccolissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piccolo\": {\n    \"form\": \"piccolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piena\": {\n    \"form\": \"piena\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pienamente\": {\n    \"form\": \"pienamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pieni\": {\n    \"form\": \"pieni\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pieno\": {\n    \"form\": \"pieno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piffle\": {\n    \"form\": \"piffle\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pio\": {\n    \"form\": \"pio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pittoresco\": {\n    \"form\": \"pittoresco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"piuttosto\": {\n    \"form\": \"piuttosto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"più\": {\n    \"form\": \"più\",\n    \"pos\": \"\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"plausibile\": {\n    \"form\": \"plausibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"plausibili\": {\n    \"form\": \"plausibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"plebaglia\": {\n    \"form\": \"plebaglia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"poca\": {\n    \"form\": \"poca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"poche\": {\n    \"form\": \"poche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pochi\": {\n    \"form\": \"pochi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"pochissime\": {\n    \"form\": \"pochissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"pochissimi\": {\n    \"form\": \"pochissimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"pochissimo\": {\n    \"form\": \"pochissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"poco\": {\n    \"form\": \"poco\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"poetica\": {\n    \"form\": \"poetica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"poetico\": {\n    \"form\": \"poetico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"poi\": {\n    \"form\": \"poi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"politiche\": {\n    \"form\": \"politiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"politici\": {\n    \"form\": \"politici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"polizieschi\": {\n    \"form\": \"polizieschi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"poliziesco\": {\n    \"form\": \"poliziesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pollo\": {\n    \"form\": \"pollo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ponderoso\": {\n    \"form\": \"ponderoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"popolare\": {\n    \"form\": \"popolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"popolari\": {\n    \"form\": \"popolari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"popolato\": {\n    \"form\": \"popolato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"populare\": {\n    \"form\": \"populare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"portando\": {\n    \"form\": \"portando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"positiva\": {\n    \"form\": \"positiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"positivamente\": {\n    \"form\": \"positivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"positive\": {\n    \"form\": \"positive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"positivi\": {\n    \"form\": \"positivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"positivo\": {\n    \"form\": \"positivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"possedimento\": {\n    \"form\": \"possedimento\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"possesso\": {\n    \"form\": \"possesso\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"possibile\": {\n    \"form\": \"possibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"possibili\": {\n    \"form\": \"possibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"potente\": {\n    \"form\": \"potente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.58\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"potenti\": {\n    \"form\": \"potenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"potenzialmente\": {\n    \"form\": \"potenzialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"povera\": {\n    \"form\": \"povera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"poveri\": {\n    \"form\": \"poveri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"povero\": {\n    \"form\": \"povero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"praticamente\": {\n    \"form\": \"praticamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pratici\": {\n    \"form\": \"pratici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pratico\": {\n    \"form\": \"pratico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"precedente\": {\n    \"form\": \"precedente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"precisa\": {\n    \"form\": \"precisa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"precisamente\": {\n    \"form\": \"precisamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"precise\": {\n    \"form\": \"precise\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"precisi\": {\n    \"form\": \"precisi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preciso\": {\n    \"form\": \"preciso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preferiti\": {\n    \"form\": \"preferiti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pregevole\": {\n    \"form\": \"pregevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prego\": {\n    \"form\": \"prego\",\n    \"pos\": \"UH\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"premessa\": {\n    \"form\": \"premessa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"premuroso\": {\n    \"form\": \"premuroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"prendendo\": {\n    \"form\": \"prendendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prendo\": {\n    \"form\": \"prendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preoccupante\": {\n    \"form\": \"preoccupante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preoccupato\": {\n    \"form\": \"preoccupato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preoccupazione\": {\n    \"form\": \"preoccupazione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prepotente\": {\n    \"form\": \"prepotente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"prepotentemente\": {\n    \"form\": \"prepotentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"presente\": {\n    \"form\": \"presente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"presenti\": {\n    \"form\": \"presenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"pressa\": {\n    \"form\": \"pressa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pressante\": {\n    \"form\": \"pressante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pressochè\": {\n    \"form\": \"pressochè\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prestigioso\": {\n    \"form\": \"prestigioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"presto\": {\n    \"form\": \"presto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.25\",\n    \"label\": \"\"\n  },\n  \"presunta\": {\n    \"form\": \"presunta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"presuntuoso\": {\n    \"form\": \"presuntuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pretenzioso\": {\n    \"form\": \"pretenzioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prettamente\": {\n    \"form\": \"prettamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prevedibile\": {\n    \"form\": \"prevedibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"prevedibili\": {\n    \"form\": \"prevedibili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preziose\": {\n    \"form\": \"preziose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"preziosi\": {\n    \"form\": \"preziosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"preziosita\": {\n    \"form\": \"preziosita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prezioso\": {\n    \"form\": \"prezioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primafase\": {\n    \"form\": \"primafase\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"primario\": {\n    \"form\": \"primario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primigenio\": {\n    \"form\": \"primigenio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primissime\": {\n    \"form\": \"primissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"primizia\": {\n    \"form\": \"primizia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primo\": {\n    \"form\": \"primo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primoperiodo\": {\n    \"form\": \"primoperiodo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primordiale\": {\n    \"form\": \"primordiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"primordio\": {\n    \"form\": \"primordio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"principale\": {\n    \"form\": \"principale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"principalmente\": {\n    \"form\": \"principalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"principiante\": {\n    \"form\": \"principiante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"principio\": {\n    \"form\": \"principio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prioritario\": {\n    \"form\": \"prioritario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"priva\": {\n    \"form\": \"priva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"privata\": {\n    \"form\": \"privata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"private\": {\n    \"form\": \"private\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"privato\": {\n    \"form\": \"privato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"privi\": {\n    \"form\": \"privi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"privo\": {\n    \"form\": \"privo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"probabile\": {\n    \"form\": \"probabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"probabilmente\": {\n    \"form\": \"probabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"0.25\",\n    \"label\": \"\"\n  },\n  \"problema\": {\n    \"form\": \"problema\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"problematiche\": {\n    \"form\": \"problematiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"probo\": {\n    \"form\": \"probo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prode\": {\n    \"form\": \"prode\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prodigo\": {\n    \"form\": \"prodigo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"professionale\": {\n    \"form\": \"professionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"professionali\": {\n    \"form\": \"professionali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"professionisti\": {\n    \"form\": \"professionisti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"professore\": {\n    \"form\": \"professore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"profonda\": {\n    \"form\": \"profonda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"profondamente\": {\n    \"form\": \"profondamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"profonde\": {\n    \"form\": \"profonde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"profondi\": {\n    \"form\": \"profondi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"profondo\": {\n    \"form\": \"profondo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"progressiva\": {\n    \"form\": \"progressiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"progressivo\": {\n    \"form\": \"progressivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"proibita\": {\n    \"form\": \"proibita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"promessi\": {\n    \"form\": \"promessi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"promettente\": {\n    \"form\": \"promettente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"pronta\": {\n    \"form\": \"pronta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prontamente\": {\n    \"form\": \"prontamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pronti\": {\n    \"form\": \"pronti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pronto\": {\n    \"form\": \"pronto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"propizio\": {\n    \"form\": \"propizio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"proporzionato\": {\n    \"form\": \"proporzionato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"propri\": {\n    \"form\": \"propri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"propria\": {\n    \"form\": \"propria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"propriamente\": {\n    \"form\": \"propriamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"proprie\": {\n    \"form\": \"proprie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"proprietario\": {\n    \"form\": \"proprietario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"proprio\": {\n    \"form\": \"proprio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prossima\": {\n    \"form\": \"prossima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prossimamente\": {\n    \"form\": \"prossimamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prossimi\": {\n    \"form\": \"prossimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prossimo\": {\n    \"form\": \"prossimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"protettivo\": {\n    \"form\": \"protettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"provate\": {\n    \"form\": \"provate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"provetto\": {\n    \"form\": \"provetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prudente\": {\n    \"form\": \"prudente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"prunaio\": {\n    \"form\": \"prunaio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"psicologica\": {\n    \"form\": \"psicologica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"psicologiche\": {\n    \"form\": \"psicologiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"psicologici\": {\n    \"form\": \"psicologici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"psicologico\": {\n    \"form\": \"psicologico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"psicopatico\": {\n    \"form\": \"psicopatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pubblica\": {\n    \"form\": \"pubblica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pubblici\": {\n    \"form\": \"pubblici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pubblicitaria\": {\n    \"form\": \"pubblicitaria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pubblico\": {\n    \"form\": \"pubblico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pubblicoufficiale\": {\n    \"form\": \"pubblicoufficiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"puerile\": {\n    \"form\": \"puerile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pulito\": {\n    \"form\": \"pulito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pungente\": {\n    \"form\": \"pungente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pungitopo\": {\n    \"form\": \"pungitopo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"punizione\": {\n    \"form\": \"punizione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"punta\": {\n    \"form\": \"punta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puntuale\": {\n    \"form\": \"puntuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puntura\": {\n    \"form\": \"puntura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"pura\": {\n    \"form\": \"pura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"puramente\": {\n    \"form\": \"puramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"pure\": {\n    \"form\": \"pure\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"puritana\": {\n    \"form\": \"puritana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"puro\": {\n    \"form\": \"puro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"purtroppo\": {\n    \"form\": \"purtroppo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puttana\": {\n    \"form\": \"puttana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puzza\": {\n    \"form\": \"puzza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puzzo\": {\n    \"form\": \"puzzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"puzzone\": {\n    \"form\": \"puzzone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"qua\": {\n    \"form\": \"qua\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"qualsiasi\": {\n    \"form\": \"qualsiasi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"qualunque\": {\n    \"form\": \"qualunque\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quante\": {\n    \"form\": \"quante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quanto\": {\n    \"form\": \"quanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quantomeno\": {\n    \"form\": \"quantomeno\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quantum\": {\n    \"form\": \"quantum\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quarta\": {\n    \"form\": \"quarta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quasi\": {\n    \"form\": \"quasi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"0.75\",\n    \"label\": \"\"\n  },\n  \"quella\": {\n    \"form\": \"quella\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quelle\": {\n    \"form\": \"quelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quelli\": {\n    \"form\": \"quelli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"querela\": {\n    \"form\": \"querela\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"querimonia\": {\n    \"form\": \"querimonia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"questuante\": {\n    \"form\": \"questuante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"qui\": {\n    \"form\": \"qui\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quindi\": {\n    \"form\": \"quindi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quiproquo\": {\n    \"form\": \"quiproquo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quotidiana\": {\n    \"form\": \"quotidiana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quotidianamente\": {\n    \"form\": \"quotidianamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quotidiane\": {\n    \"form\": \"quotidiane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"quotidiani\": {\n    \"form\": \"quotidiani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rabbia\": {\n    \"form\": \"rabbia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"rabbioso\": {\n    \"form\": \"rabbioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccapricciante\": {\n    \"form\": \"raccapricciante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccomandabile\": {\n    \"form\": \"raccomandabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccomandare\": {\n    \"form\": \"raccomandare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccomandato\": {\n    \"form\": \"raccomandato\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccomando\": {\n    \"form\": \"raccomando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raccontando\": {\n    \"form\": \"raccontando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"radicale\": {\n    \"form\": \"radicale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"radicalmente\": {\n    \"form\": \"radicalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rado\": {\n    \"form\": \"rado\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raffinata\": {\n    \"form\": \"raffinata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"raffinato\": {\n    \"form\": \"raffinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raffrontabile\": {\n    \"form\": \"raffrontabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ragazzetto\": {\n    \"form\": \"ragazzetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ragazzino\": {\n    \"form\": \"ragazzino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ragazzo\": {\n    \"form\": \"ragazzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raggiro\": {\n    \"form\": \"raggiro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ragguardevole\": {\n    \"form\": \"ragguardevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ragionevole\": {\n    \"form\": \"ragionevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rampante\": {\n    \"form\": \"rampante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rancore\": {\n    \"form\": \"rancore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rapida\": {\n    \"form\": \"rapida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rapidamente\": {\n    \"form\": \"rapidamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rapidi\": {\n    \"form\": \"rapidi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rapido\": {\n    \"form\": \"rapido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"rara\": {\n    \"form\": \"rara\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raramente\": {\n    \"form\": \"raramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"0.25\",\n    \"label\": \"\"\n  },\n  \"rare\": {\n    \"form\": \"rare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rarefatto\": {\n    \"form\": \"rarefatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rari\": {\n    \"form\": \"rari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"raro\": {\n    \"form\": \"raro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"raspare\": {\n    \"form\": \"raspare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rassegna\": {\n    \"form\": \"rassegna\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"razionale\": {\n    \"form\": \"razionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"reale\": {\n    \"form\": \"reale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"reali\": {\n    \"form\": \"reali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"realistica\": {\n    \"form\": \"realistica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"realistiche\": {\n    \"form\": \"realistiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"realistici\": {\n    \"form\": \"realistici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"realistico\": {\n    \"form\": \"realistico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"realmente\": {\n    \"form\": \"realmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"realta\": {\n    \"form\": \"realta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"reazionario\": {\n    \"form\": \"reazionario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"recente\": {\n    \"form\": \"recente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"recentemente\": {\n    \"form\": \"recentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"recentissime\": {\n    \"form\": \"recentissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"reciproca\": {\n    \"form\": \"reciproca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"reclamo\": {\n    \"form\": \"reclamo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"recondito\": {\n    \"form\": \"recondito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"recriminazione\": {\n    \"form\": \"recriminazione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"regalando\": {\n    \"form\": \"regalando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"regali\": {\n    \"form\": \"regali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"regalo\": {\n    \"form\": \"regalo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"regolare\": {\n    \"form\": \"regolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"regolarmente\": {\n    \"form\": \"regolarmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"relativa\": {\n    \"form\": \"relativa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"-0.50\",\n    \"label\": \"\"\n  },\n  \"relativamente\": {\n    \"form\": \"relativamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"relativi\": {\n    \"form\": \"relativi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"relativo\": {\n    \"form\": \"relativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"religiose\": {\n    \"form\": \"religiose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"religioso\": {\n    \"form\": \"religioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"remoto\": {\n    \"form\": \"remoto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rendendo\": {\n    \"form\": \"rendendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"reo\": {\n    \"form\": \"reo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"repellente\": {\n    \"form\": \"repellente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"repentino\": {\n    \"form\": \"repentino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"reprensione\": {\n    \"form\": \"reprensione\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"resistente\": {\n    \"form\": \"resistente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"responsabile\": {\n    \"form\": \"responsabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"responsabilmente\": {\n    \"form\": \"responsabilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ressa\": {\n    \"form\": \"ressa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"restando\": {\n    \"form\": \"restando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rete\": {\n    \"form\": \"rete\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"retorico\": {\n    \"form\": \"retorico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"retro\": {\n    \"form\": \"retro\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"retrogrado\": {\n    \"form\": \"retrogrado\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rettilineo\": {\n    \"form\": \"rettilineo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"retto\": {\n    \"form\": \"retto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rezzo\": {\n    \"form\": \"rezzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riarso\": {\n    \"form\": \"riarso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ribelle\": {\n    \"form\": \"ribelle\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ricca\": {\n    \"form\": \"ricca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"ricche\": {\n    \"form\": \"ricche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ricchezza\": {\n    \"form\": \"ricchezza\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ricchi\": {\n    \"form\": \"ricchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ricchissimo\": {\n    \"form\": \"ricchissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ricco\": {\n    \"form\": \"ricco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riconoscendo\": {\n    \"form\": \"riconoscendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ricreazione\": {\n    \"form\": \"ricreazione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ridere\": {\n    \"form\": \"ridere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"ridicola\": {\n    \"form\": \"ridicola\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ridicolo\": {\n    \"form\": \"ridicolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ridotte\": {\n    \"form\": \"ridotte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riduttivo\": {\n    \"form\": \"riduttivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rifinito\": {\n    \"form\": \"rifinito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rifuggire\": {\n    \"form\": \"rifuggire\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigida\": {\n    \"form\": \"rigida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.22\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigide\": {\n    \"form\": \"rigide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigidezza\": {\n    \"form\": \"rigidezza\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigido\": {\n    \"form\": \"rigido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigoglioso\": {\n    \"form\": \"rigoglioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigore\": {\n    \"form\": \"rigore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rigorosamente\": {\n    \"form\": \"rigorosamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"rigoroso\": {\n    \"form\": \"rigoroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"rilassante\": {\n    \"form\": \"rilassante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rilegato\": {\n    \"form\": \"rilegato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rilevante\": {\n    \"form\": \"rilevante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rilucente\": {\n    \"form\": \"rilucente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rimaneggiamento\": {\n    \"form\": \"rimaneggiamento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rimanendo\": {\n    \"form\": \"rimanendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rimpiangere\": {\n    \"form\": \"rimpiangere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rimpiattato\": {\n    \"form\": \"rimpiattato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rimprovero\": {\n    \"form\": \"rimprovero\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ringraziamento\": {\n    \"form\": \"ringraziamento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rinnovato\": {\n    \"form\": \"rinnovato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ripetitiva\": {\n    \"form\": \"ripetitiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ripetitive\": {\n    \"form\": \"ripetitive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ripetitivo\": {\n    \"form\": \"ripetitivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ripetutamente\": {\n    \"form\": \"ripetutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ripetuto\": {\n    \"form\": \"ripetuto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riposto\": {\n    \"form\": \"riposto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riprensione\": {\n    \"form\": \"riprensione\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riprovazione\": {\n    \"form\": \"riprovazione\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ripugnante\": {\n    \"form\": \"ripugnante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rischiando\": {\n    \"form\": \"rischiando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rischioso\": {\n    \"form\": \"rischioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"risentimento\": {\n    \"form\": \"risentimento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"risolutamente\": {\n    \"form\": \"risolutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"risolutivo\": {\n    \"form\": \"risolutivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"risoluto\": {\n    \"form\": \"risoluto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"risolutore\": {\n    \"form\": \"risolutore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispettabile\": {\n    \"form\": \"rispettabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispettando\": {\n    \"form\": \"rispettando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispettivamente\": {\n    \"form\": \"rispettivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispettivi\": {\n    \"form\": \"rispettivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispettivo\": {\n    \"form\": \"rispettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"risplendente\": {\n    \"form\": \"risplendente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rispondente\": {\n    \"form\": \"rispondente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ristrettamente\": {\n    \"form\": \"ristrettamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ristretto\": {\n    \"form\": \"ristretto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ritardato\": {\n    \"form\": \"ritardato\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ritroso\": {\n    \"form\": \"ritroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ritrovata\": {\n    \"form\": \"ritrovata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riuscendo\": {\n    \"form\": \"riuscendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"riuscivo\": {\n    \"form\": \"riuscivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rivoltante\": {\n    \"form\": \"rivoltante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rivoltoso\": {\n    \"form\": \"rivoltoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rivoluzionario\": {\n    \"form\": \"rivoluzionario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"robusto\": {\n    \"form\": \"robusto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rocambolesca\": {\n    \"form\": \"rocambolesca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rocca\": {\n    \"form\": \"rocca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rogna\": {\n    \"form\": \"rogna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"romano\": {\n    \"form\": \"romano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"romantica\": {\n    \"form\": \"romantica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"romantiche\": {\n    \"form\": \"romantiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"romantici\": {\n    \"form\": \"romantici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"romantico\": {\n    \"form\": \"romantico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"rosa\": {\n    \"form\": \"rosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rose\": {\n    \"form\": \"rose\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"roseo\": {\n    \"form\": \"roseo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rossa\": {\n    \"form\": \"rossa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rossi\": {\n    \"form\": \"rossi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rosso\": {\n    \"form\": \"rosso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rottura\": {\n    \"form\": \"rottura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rovescio\": {\n    \"form\": \"rovescio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rude\": {\n    \"form\": \"rude\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ruffiano\": {\n    \"form\": \"ruffiano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"rusco\": {\n    \"form\": \"rusco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"russa\": {\n    \"form\": \"russa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"russo\": {\n    \"form\": \"russo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ruvido\": {\n    \"form\": \"ruvido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sagace\": {\n    \"form\": \"sagace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sagacita\": {\n    \"form\": \"sagacita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saggi\": {\n    \"form\": \"saggi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saggio\": {\n    \"form\": \"saggio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sala\": {\n    \"form\": \"sala\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"salato\": {\n    \"form\": \"salato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saldo\": {\n    \"form\": \"saldo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"salgari\": {\n    \"form\": \"salgari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saltando\": {\n    \"form\": \"saltando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sana\": {\n    \"form\": \"sana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sane\": {\n    \"form\": \"sane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sano\": {\n    \"form\": \"sano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"santo\": {\n    \"form\": \"santo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sanzione\": {\n    \"form\": \"sanzione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sapendo\": {\n    \"form\": \"sapendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sapido\": {\n    \"form\": \"sapido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sapiente\": {\n    \"form\": \"sapiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sapientemente\": {\n    \"form\": \"sapientemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"saporito\": {\n    \"form\": \"saporito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saporoso\": {\n    \"form\": \"saporoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sarcastico\": {\n    \"form\": \"sarcastico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"satirico\": {\n    \"form\": \"satirico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"satollo\": {\n    \"form\": \"satollo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"saturo\": {\n    \"form\": \"saturo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"savio\": {\n    \"form\": \"savio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.55\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sazio\": {\n    \"form\": \"sazio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbagliare\": {\n    \"form\": \"sbagliare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbagliata\": {\n    \"form\": \"sbagliata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sbagliate\": {\n    \"form\": \"sbagliate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbagliato\": {\n    \"form\": \"sbagliato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"sbandamento\": {\n    \"form\": \"sbandamento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbando\": {\n    \"form\": \"sbando\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbarbatello\": {\n    \"form\": \"sbarbatello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sbarbato\": {\n    \"form\": \"sbarbato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbarbina\": {\n    \"form\": \"sbarbina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sbrigativo\": {\n    \"form\": \"sbrigativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"scabro\": {\n    \"form\": \"scabro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scabroso\": {\n    \"form\": \"scabroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scacco\": {\n    \"form\": \"scacco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"scadente\": {\n    \"form\": \"scadente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"scalogna\": {\n    \"form\": \"scalogna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scaltrezza\": {\n    \"form\": \"scaltrezza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scaltro\": {\n    \"form\": \"scaltro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scandinavi\": {\n    \"form\": \"scandinavi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scarno\": {\n    \"form\": \"scarno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scarsa\": {\n    \"form\": \"scarsa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scarsi\": {\n    \"form\": \"scarsi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scarso\": {\n    \"form\": \"scarso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scatenatamente\": {\n    \"form\": \"scatenatamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scatenato\": {\n    \"form\": \"scatenato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scellerato\": {\n    \"form\": \"scellerato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scemenza\": {\n    \"form\": \"scemenza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scemo\": {\n    \"form\": \"scemo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scempiaggine\": {\n    \"form\": \"scempiaggine\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scena\": {\n    \"form\": \"scena\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scettica\": {\n    \"form\": \"scettica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"scettico\": {\n    \"form\": \"scettico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schemadigioco\": {\n    \"form\": \"schemadigioco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"scherzo\": {\n    \"form\": \"scherzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schiantare\": {\n    \"form\": \"schiantare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schiavo\": {\n    \"form\": \"schiavo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schietto\": {\n    \"form\": \"schietto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schifoso\": {\n    \"form\": \"schifoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"schivo\": {\n    \"form\": \"schivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sciagura\": {\n    \"form\": \"sciagura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scialbo\": {\n    \"form\": \"scialbo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sciapito\": {\n    \"form\": \"sciapito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sciapo\": {\n    \"form\": \"sciapo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scientifica\": {\n    \"form\": \"scientifica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scientifiche\": {\n    \"form\": \"scientifiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scientifico\": {\n    \"form\": \"scientifico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scintillante\": {\n    \"form\": \"scintillante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sciocchezza\": {\n    \"form\": \"sciocchezza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sciocchezze\": {\n    \"form\": \"sciocchezze\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sciocco\": {\n    \"form\": \"sciocco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sciolto\": {\n    \"form\": \"sciolto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scipito\": {\n    \"form\": \"scipito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scolastica\": {\n    \"form\": \"scolastica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scolastici\": {\n    \"form\": \"scolastici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scolastico\": {\n    \"form\": \"scolastico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scollato\": {\n    \"form\": \"scollato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scomodare\": {\n    \"form\": \"scomodare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scomparso\": {\n    \"form\": \"scomparso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scompiglio\": {\n    \"form\": \"scompiglio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconcertante\": {\n    \"form\": \"sconcertante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconcio\": {\n    \"form\": \"sconcio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconfitta\": {\n    \"form\": \"sconfitta\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconfortare\": {\n    \"form\": \"sconfortare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconosciuti\": {\n    \"form\": \"sconosciuti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.30\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconosciuto\": {\n    \"form\": \"sconosciuto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconquasso\": {\n    \"form\": \"sconquasso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scontata\": {\n    \"form\": \"scontata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"scontate\": {\n    \"form\": \"scontate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"scontati\": {\n    \"form\": \"scontati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scontato\": {\n    \"form\": \"scontato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"scontento\": {\n    \"form\": \"scontento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scontroso\": {\n    \"form\": \"scontroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sconvolgente\": {\n    \"form\": \"sconvolgente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scoppiettante\": {\n    \"form\": \"scoppiettante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scoprendo\": {\n    \"form\": \"scoprendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scoraggiante\": {\n    \"form\": \"scoraggiante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scorbutico\": {\n    \"form\": \"scorbutico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scorretto\": {\n    \"form\": \"scorretto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scorrevolmente\": {\n    \"form\": \"scorrevolmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scorso\": {\n    \"form\": \"scorso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scortese\": {\n    \"form\": \"scortese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scostante\": {\n    \"form\": \"scostante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scritte\": {\n    \"form\": \"scritte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scrittrici\": {\n    \"form\": \"scrittrici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scrivendo\": {\n    \"form\": \"scrivendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scrupoloso\": {\n    \"form\": \"scrupoloso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scugnizzo\": {\n    \"form\": \"scugnizzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"scuro\": {\n    \"form\": \"scuro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sdegnare\": {\n    \"form\": \"sdegnare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sdolcinato\": {\n    \"form\": \"sdolcinato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"seccante\": {\n    \"form\": \"seccante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seccatura\": {\n    \"form\": \"seccatura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"secco\": {\n    \"form\": \"secco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"secondari\": {\n    \"form\": \"secondari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sedizioso\": {\n    \"form\": \"sedizioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seducente\": {\n    \"form\": \"seducente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"segreti\": {\n    \"form\": \"segreti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"segreto\": {\n    \"form\": \"segreto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seguendo\": {\n    \"form\": \"seguendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seguente\": {\n    \"form\": \"seguente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"selvaggia\": {\n    \"form\": \"selvaggia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seminale\": {\n    \"form\": \"seminale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"semplice\": {\n    \"form\": \"semplice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"semplicemente\": {\n    \"form\": \"semplicemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"semplicione\": {\n    \"form\": \"semplicione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sempliciotto\": {\n    \"form\": \"sempliciotto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"semplicissimo\": {\n    \"form\": \"semplicissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"semplificando\": {\n    \"form\": \"semplificando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sempre\": {\n    \"form\": \"sempre\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sensato\": {\n    \"form\": \"sensato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sensibile\": {\n    \"form\": \"sensibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sensitivo\": {\n    \"form\": \"sensitivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sensuale\": {\n    \"form\": \"sensuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"sensuali\": {\n    \"form\": \"sensuali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sentimentale\": {\n    \"form\": \"sentimentale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"separate\": {\n    \"form\": \"separate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"serenissima\": {\n    \"form\": \"serenissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sereno\": {\n    \"form\": \"sereno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"seri\": {\n    \"form\": \"seri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seria\": {\n    \"form\": \"seria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.03\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seriale\": {\n    \"form\": \"seriale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"seriamente\": {\n    \"form\": \"seriamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"serio\": {\n    \"form\": \"serio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sermone\": {\n    \"form\": \"sermone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"serrato\": {\n    \"form\": \"serrato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"servo\": {\n    \"form\": \"servo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sessuale\": {\n    \"form\": \"sessuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sessuali\": {\n    \"form\": \"sessuali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"settoreprivato\": {\n    \"form\": \"settoreprivato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"settorepubblico\": {\n    \"form\": \"settorepubblico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"severo\": {\n    \"form\": \"severo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sexy\": {\n    \"form\": \"sexy\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"sfarfallone\": {\n    \"form\": \"sfarfallone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfasamento\": {\n    \"form\": \"sfasamento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfasatura\": {\n    \"form\": \"sfasatura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfavorevole\": {\n    \"form\": \"sfavorevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfiga\": {\n    \"form\": \"sfiga\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfortuna\": {\n    \"form\": \"sfortuna\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sfortunata\": {\n    \"form\": \"sfortunata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sfrenatamente\": {\n    \"form\": \"sfrenatamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sfrenato\": {\n    \"form\": \"sfrenato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sgarbato\": {\n    \"form\": \"sgarbato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sgombro\": {\n    \"form\": \"sgombro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sgradevole\": {\n    \"form\": \"sgradevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sgrammaticato\": {\n    \"form\": \"sgrammaticato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sgraziato\": {\n    \"form\": \"sgraziato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sibillino\": {\n    \"form\": \"sibillino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"siciliano\": {\n    \"form\": \"siciliano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sicura\": {\n    \"form\": \"sicura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sicuramente\": {\n    \"form\": \"sicuramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sicuri\": {\n    \"form\": \"sicuri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sicuro\": {\n    \"form\": \"sicuro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"significante\": {\n    \"form\": \"significante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"significativo\": {\n    \"form\": \"significativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"signorile\": {\n    \"form\": \"signorile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"simile\": {\n    \"form\": \"simile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"simili\": {\n    \"form\": \"simili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"simpatica\": {\n    \"form\": \"simpatica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"simpatiche\": {\n    \"form\": \"simpatiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"simpatici\": {\n    \"form\": \"simpatici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.62\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"simpatico\": {\n    \"form\": \"simpatico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"simulazione\": {\n    \"form\": \"simulazione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"simultaneo\": {\n    \"form\": \"simultaneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sincera\": {\n    \"form\": \"sincera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sinceramente\": {\n    \"form\": \"sinceramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sincere\": {\n    \"form\": \"sincere\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sinceri\": {\n    \"form\": \"sinceri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sincero\": {\n    \"form\": \"sincero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sincrono\": {\n    \"form\": \"sincrono\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"singola\": {\n    \"form\": \"singola\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"singolare\": {\n    \"form\": \"singolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"singolarmente\": {\n    \"form\": \"singolarmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"singoli\": {\n    \"form\": \"singoli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"singolo\": {\n    \"form\": \"singolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sinistro\": {\n    \"form\": \"sinistro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sintetico\": {\n    \"form\": \"sintetico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sistema\": {\n    \"form\": \"sistema\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sito\": {\n    \"form\": \"sito\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"smarrito\": {\n    \"form\": \"smarrito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"smilzo\": {\n    \"form\": \"smilzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"smodatamente\": {\n    \"form\": \"smodatamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"smodato\": {\n    \"form\": \"smodato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"smoderatamente\": {\n    \"form\": \"smoderatamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"smoderato\": {\n    \"form\": \"smoderato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"snello\": {\n    \"form\": \"snello\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"snob\": {\n    \"form\": \"snob\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soave\": {\n    \"form\": \"soave\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sociale\": {\n    \"form\": \"sociale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"socievole\": {\n    \"form\": \"socievole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soddisfacente\": {\n    \"form\": \"soddisfacente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"soddisfatto\": {\n    \"form\": \"soddisfatto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sodo\": {\n    \"form\": \"sodo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sofferente\": {\n    \"form\": \"sofferente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sofferenza\": {\n    \"form\": \"sofferenza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sofferta\": {\n    \"form\": \"sofferta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sofferto\": {\n    \"form\": \"sofferto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sofisticato\": {\n    \"form\": \"sofisticato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soft\": {\n    \"form\": \"soft\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soggettivo\": {\n    \"form\": \"soggettivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sognante\": {\n    \"form\": \"sognante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sola\": {\n    \"form\": \"sola\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"solamente\": {\n    \"form\": \"solamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"solenne\": {\n    \"form\": \"solenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"solerte\": {\n    \"form\": \"solerte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.53\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soli\": {\n    \"form\": \"soli\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"solida\": {\n    \"form\": \"solida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"solido\": {\n    \"form\": \"solido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"solita\": {\n    \"form\": \"solita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"solitamente\": {\n    \"form\": \"solitamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"solitario\": {\n    \"form\": \"solitario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"solite\": {\n    \"form\": \"solite\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.55\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soliti\": {\n    \"form\": \"soliti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sollazzo\": {\n    \"form\": \"sollazzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sollecito\": {\n    \"form\": \"sollecito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"solo\": {\n    \"form\": \"solo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soltanto\": {\n    \"form\": \"soltanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"0.25\",\n    \"label\": \"\"\n  },\n  \"somaro\": {\n    \"form\": \"somaro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"somigliante\": {\n    \"form\": \"somigliante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"somma\": {\n    \"form\": \"somma\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sommario\": {\n    \"form\": \"sommario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sommita\": {\n    \"form\": \"sommita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sommo\": {\n    \"form\": \"sommo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sonata\": {\n    \"form\": \"sonata\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sonora\": {\n    \"form\": \"sonora\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sopra\": {\n    \"form\": \"sopra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sopranazionale\": {\n    \"form\": \"sopranazionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soprannaturale\": {\n    \"form\": \"soprannaturale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"soprattutto\": {\n    \"form\": \"soprattutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sopratutto\": {\n    \"form\": \"sopratutto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"soqquadro\": {\n    \"form\": \"soqquadro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sordo\": {\n    \"form\": \"sordo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sorprendente\": {\n    \"form\": \"sorprendente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"sorprendentemente\": {\n    \"form\": \"sorprendentemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sorridere\": {\n    \"form\": \"sorridere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sorte\": {\n    \"form\": \"sorte\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sospeso\": {\n    \"form\": \"sospeso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sospettoso\": {\n    \"form\": \"sospettoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sostanza\": {\n    \"form\": \"sostanza\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sostanzastupefacente\": {\n    \"form\": \"sostanzastupefacente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sostanziale\": {\n    \"form\": \"sostanziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sostanzialmente\": {\n    \"form\": \"sostanzialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sostanzioso\": {\n    \"form\": \"sostanzioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sottile\": {\n    \"form\": \"sottile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sottili\": {\n    \"form\": \"sottili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sottomesso\": {\n    \"form\": \"sottomesso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sottosopra\": {\n    \"form\": \"sottosopra\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sottotono\": {\n    \"form\": \"sottotono\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sovietica\": {\n    \"form\": \"sovietica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sovranazionale\": {\n    \"form\": \"sovranazionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sovrano\": {\n    \"form\": \"sovrano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sovversivo\": {\n    \"form\": \"sovversivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spagnola\": {\n    \"form\": \"spagnola\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spagnolo\": {\n    \"form\": \"spagnolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sparata\": {\n    \"form\": \"sparata\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"sparo\": {\n    \"form\": \"sparo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spassionato\": {\n    \"form\": \"spassionato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spasso\": {\n    \"form\": \"spasso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.25\",\n    \"label\": \"\"\n  },\n  \"spassoso\": {\n    \"form\": \"spassoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"spavaldo\": {\n    \"form\": \"spavaldo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spavento\": {\n    \"form\": \"spavento\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"spaventosa\": {\n    \"form\": \"spaventosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"spaventoso\": {\n    \"form\": \"spaventoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spaziale\": {\n    \"form\": \"spaziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spazioso\": {\n    \"form\": \"spazioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"specchio\": {\n    \"form\": \"specchio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"speciale\": {\n    \"form\": \"speciale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"specialmente\": {\n    \"form\": \"specialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"specifica\": {\n    \"form\": \"specifica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"specificita\": {\n    \"form\": \"specificita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"specifico\": {\n    \"form\": \"specifico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"specimen\": {\n    \"form\": \"specimen\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"spendendo\": {\n    \"form\": \"spendendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.03\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spensierata\": {\n    \"form\": \"spensierata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"spensierato\": {\n    \"form\": \"spensierato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sperando\": {\n    \"form\": \"sperando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spesso\": {\n    \"form\": \"spesso\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"spettacolare\": {\n    \"form\": \"spettacolare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"spettacolari\": {\n    \"form\": \"spettacolari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spiacevole\": {\n    \"form\": \"spiacevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spiazzante\": {\n    \"form\": \"spiazzante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spiegate\": {\n    \"form\": \"spiegate\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spietata\": {\n    \"form\": \"spietata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"spietato\": {\n    \"form\": \"spietato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spinto\": {\n    \"form\": \"spinto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spirito\": {\n    \"form\": \"spirito\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spiritosa\": {\n    \"form\": \"spiritosa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"spiritoso\": {\n    \"form\": \"spiritoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"spirituale\": {\n    \"form\": \"spirituale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"splendente\": {\n    \"form\": \"splendente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"splendere\": {\n    \"form\": \"splendere\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"splendida\": {\n    \"form\": \"splendida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"splendidamente\": {\n    \"form\": \"splendidamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"splendide\": {\n    \"form\": \"splendide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"splendidi\": {\n    \"form\": \"splendidi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"splendido\": {\n    \"form\": \"splendido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"spogliato\": {\n    \"form\": \"spogliato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spoglio\": {\n    \"form\": \"spoglio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spontaneo\": {\n    \"form\": \"spontaneo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sportivi\": {\n    \"form\": \"sportivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sportivo\": {\n    \"form\": \"sportivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sprecare\": {\n    \"form\": \"sprecare\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"spregiudicato\": {\n    \"form\": \"spregiudicato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sprezzante\": {\n    \"form\": \"sprezzante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sproposito\": {\n    \"form\": \"sproposito\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sprovvisto\": {\n    \"form\": \"sprovvisto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"squallido\": {\n    \"form\": \"squallido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"squisito\": {\n    \"form\": \"squisito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sregolatamente\": {\n    \"form\": \"sregolatamente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sregolatezza\": {\n    \"form\": \"sregolatezza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sregolato\": {\n    \"form\": \"sregolato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.05\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stabile\": {\n    \"form\": \"stabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.22\",\n    \"subjectivity\": \"0.10\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stampata\": {\n    \"form\": \"stampata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stampo\": {\n    \"form\": \"stampo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stanca\": {\n    \"form\": \"stanca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stanchi\": {\n    \"form\": \"stanchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"stanco\": {\n    \"form\": \"stanco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"stante\": {\n    \"form\": \"stante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stanza\": {\n    \"form\": \"stanza\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"statico\": {\n    \"form\": \"statico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"statiuniti\": {\n    \"form\": \"statiuniti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"statiunitidamerica\": {\n    \"form\": \"statiunitidamerica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"statunitense\": {\n    \"form\": \"statunitense\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stavolta\": {\n    \"form\": \"stavolta\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stellare\": {\n    \"form\": \"stellare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stellari\": {\n    \"form\": \"stellari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sterco\": {\n    \"form\": \"sterco\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stereotipati\": {\n    \"form\": \"stereotipati\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"stessa\": {\n    \"form\": \"stessa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stesse\": {\n    \"form\": \"stesse\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stessi\": {\n    \"form\": \"stessi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stesso\": {\n    \"form\": \"stesso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"stilettata\": {\n    \"form\": \"stilettata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stiliforme\": {\n    \"form\": \"stiliforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stilistica\": {\n    \"form\": \"stilistica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stilisticamente\": {\n    \"form\": \"stilisticamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stimato\": {\n    \"form\": \"stimato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stimolante\": {\n    \"form\": \"stimolante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stizza\": {\n    \"form\": \"stizza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stoffa\": {\n    \"form\": \"stoffa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stolido\": {\n    \"form\": \"stolido\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stoltezza\": {\n    \"form\": \"stoltezza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stolto\": {\n    \"form\": \"stolto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"storica\": {\n    \"form\": \"storica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"storiche\": {\n    \"form\": \"storiche\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"storici\": {\n    \"form\": \"storici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.05\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"storico\": {\n    \"form\": \"storico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"storiografico\": {\n    \"form\": \"storiografico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strabiliante\": {\n    \"form\": \"strabiliante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stradapanoramica\": {\n    \"form\": \"stradapanoramica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strafalcione\": {\n    \"form\": \"strafalcione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strambo\": {\n    \"form\": \"strambo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strampalata\": {\n    \"form\": \"strampalata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"strampalato\": {\n    \"form\": \"strampalato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strana\": {\n    \"form\": \"strana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strane\": {\n    \"form\": \"strane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strani\": {\n    \"form\": \"strani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"straniera\": {\n    \"form\": \"straniera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stranieri\": {\n    \"form\": \"stranieri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"straniero\": {\n    \"form\": \"straniero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strano\": {\n    \"form\": \"strano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"straordinaria\": {\n    \"form\": \"straordinaria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"straordinariamente\": {\n    \"form\": \"straordinariamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"straordinarie\": {\n    \"form\": \"straordinarie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"straordinario\": {\n    \"form\": \"straordinario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strappalacrime\": {\n    \"form\": \"strappalacrime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stravagante\": {\n    \"form\": \"stravagante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"straziante\": {\n    \"form\": \"straziante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"strazio\": {\n    \"form\": \"strazio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"stremo\": {\n    \"form\": \"stremo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strepitoso\": {\n    \"form\": \"strepitoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"stretta\": {\n    \"form\": \"stretta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"strettamente\": {\n    \"form\": \"strettamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stretto\": {\n    \"form\": \"stretto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stringato\": {\n    \"form\": \"stringato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"stringente\": {\n    \"form\": \"stringente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stronzo\": {\n    \"form\": \"stronzo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"struggente\": {\n    \"form\": \"struggente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.19\",\n    \"subjectivity\": \"0.62\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"strutturata\": {\n    \"form\": \"strutturata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stucchevole\": {\n    \"form\": \"stucchevole\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"studiando\": {\n    \"form\": \"studiando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"studioso\": {\n    \"form\": \"studioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stufo\": {\n    \"form\": \"stufo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupefacente\": {\n    \"form\": \"stupefacente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupenda\": {\n    \"form\": \"stupenda\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupendamente\": {\n    \"form\": \"stupendamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"stupendo\": {\n    \"form\": \"stupendo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupidaggine\": {\n    \"form\": \"stupidaggine\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"stupidaggini\": {\n    \"form\": \"stupidaggini\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupide\": {\n    \"form\": \"stupide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"stupidita\": {\n    \"form\": \"stupidita\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupido\": {\n    \"form\": \"stupido\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stupito\": {\n    \"form\": \"stupito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"stuzzicante\": {\n    \"form\": \"stuzzicante\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"sua\": {\n    \"form\": \"sua\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"subbuglio\": {\n    \"form\": \"subbuglio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"subdolo\": {\n    \"form\": \"subdolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"subito\": {\n    \"form\": \"subito\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"sublime\": {\n    \"form\": \"sublime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"successiva\": {\n    \"form\": \"successiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"successivamente\": {\n    \"form\": \"successivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"successive\": {\n    \"form\": \"successive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"successivi\": {\n    \"form\": \"successivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"successivo\": {\n    \"form\": \"successivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"successo\": {\n    \"form\": \"successo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"succinto\": {\n    \"form\": \"succinto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"succulento\": {\n    \"form\": \"succulento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sue\": {\n    \"form\": \"sue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sufficiente\": {\n    \"form\": \"sufficiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"suggerisco\": {\n    \"form\": \"suggerisco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"suggestivo\": {\n    \"form\": \"suggestivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sunto\": {\n    \"form\": \"sunto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"suo\": {\n    \"form\": \"suo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"super\": {\n    \"form\": \"super\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"supera\": {\n    \"form\": \"supera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"superba\": {\n    \"form\": \"superba\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"superbo\": {\n    \"form\": \"superbo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"superficiale\": {\n    \"form\": \"superficiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"superficialmente\": {\n    \"form\": \"superficialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"superfluo\": {\n    \"form\": \"superfluo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"superiore\": {\n    \"form\": \"superiore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"supremo\": {\n    \"form\": \"supremo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"surreale\": {\n    \"form\": \"surreale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"surreali\": {\n    \"form\": \"surreali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"svago\": {\n    \"form\": \"svago\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"svarione\": {\n    \"form\": \"svarione\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"svedese\": {\n    \"form\": \"svedese\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sveglio\": {\n    \"form\": \"sveglio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"svelando\": {\n    \"form\": \"svelando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"svelto\": {\n    \"form\": \"svelto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sventura\": {\n    \"form\": \"sventura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sveva\": {\n    \"form\": \"sveva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"svevo\": {\n    \"form\": \"svevo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"sì\": {\n    \"form\": \"sì\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tagliente\": {\n    \"form\": \"tagliente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tale\": {\n    \"form\": \"tale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"talmente\": {\n    \"form\": \"talmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"talvolta\": {\n    \"form\": \"talvolta\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tanfata\": {\n    \"form\": \"tanfata\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tanfo\": {\n    \"form\": \"tanfo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tangibile\": {\n    \"form\": \"tangibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tante\": {\n    \"form\": \"tante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tanti\": {\n    \"form\": \"tanti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.03\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tantino\": {\n    \"form\": \"tantino\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tantissime\": {\n    \"form\": \"tantissime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tantissimi\": {\n    \"form\": \"tantissimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tantissimo\": {\n    \"form\": \"tantissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tanto\": {\n    \"form\": \"tanto\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tarchiato\": {\n    \"form\": \"tarchiato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tardi\": {\n    \"form\": \"tardi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tardo\": {\n    \"form\": \"tardo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tassativo\": {\n    \"form\": \"tassativo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"teatrale\": {\n    \"form\": \"teatrale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tecnici\": {\n    \"form\": \"tecnici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tecnico\": {\n    \"form\": \"tecnico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tedesca\": {\n    \"form\": \"tedesca\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tedesco\": {\n    \"form\": \"tedesco\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tedio\": {\n    \"form\": \"tedio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.80\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tedioso\": {\n    \"form\": \"tedioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"teenager\": {\n    \"form\": \"teenager\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"televisiva\": {\n    \"form\": \"televisiva\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"televisivi\": {\n    \"form\": \"televisivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"televisivo\": {\n    \"form\": \"televisivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"temerario\": {\n    \"form\": \"temerario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"temibile\": {\n    \"form\": \"temibile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"temperamento\": {\n    \"form\": \"temperamento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tempestivo\": {\n    \"form\": \"tempestivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.18\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tempo\": {\n    \"form\": \"tempo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"temporale\": {\n    \"form\": \"temporale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tempra\": {\n    \"form\": \"tempra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenace\": {\n    \"form\": \"tenace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tendenzialmente\": {\n    \"form\": \"tendenzialmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenebra\": {\n    \"form\": \"tenebra\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenebroso\": {\n    \"form\": \"tenebroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenendo\": {\n    \"form\": \"tenendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenera\": {\n    \"form\": \"tenera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tenero\": {\n    \"form\": \"tenero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tentando\": {\n    \"form\": \"tentando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tenue\": {\n    \"form\": \"tenue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"teppa\": {\n    \"form\": \"teppa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"terminale\": {\n    \"form\": \"terminale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"terribile\": {\n    \"form\": \"terribile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"terribili\": {\n    \"form\": \"terribili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"terribilmente\": {\n    \"form\": \"terribilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"terrore\": {\n    \"form\": \"terrore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"terzani\": {\n    \"form\": \"terzani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"teso\": {\n    \"form\": \"teso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"testadirapa\": {\n    \"form\": \"testadirapa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"testone\": {\n    \"form\": \"testone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tetro\": {\n    \"form\": \"tetro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.20\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tetto\": {\n    \"form\": \"tetto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tienimi\": {\n    \"form\": \"tienimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tiepido\": {\n    \"form\": \"tiepido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"time\": {\n    \"form\": \"time\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tipica\": {\n    \"form\": \"tipica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tipicamente\": {\n    \"form\": \"tipicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tipici\": {\n    \"form\": \"tipici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tipico\": {\n    \"form\": \"tipico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tipo\": {\n    \"form\": \"tipo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tiratadorecchi\": {\n    \"form\": \"tiratadorecchi\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tirato\": {\n    \"form\": \"tirato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tiro\": {\n    \"form\": \"tiro\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"titanico\": {\n    \"form\": \"titanico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.58\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"titubante\": {\n    \"form\": \"titubante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"toccante\": {\n    \"form\": \"toccante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tolkieniana\": {\n    \"form\": \"tolkieniana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tollerabile\": {\n    \"form\": \"tollerabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tonto\": {\n    \"form\": \"tonto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"top\": {\n    \"form\": \"top\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"topico\": {\n    \"form\": \"topico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"torbido\": {\n    \"form\": \"torbido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tormentare\": {\n    \"form\": \"tormentare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tormentata\": {\n    \"form\": \"tormentata\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"tornando\": {\n    \"form\": \"tornando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tornito\": {\n    \"form\": \"tornito\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"torpido\": {\n    \"form\": \"torpido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tortuoso\": {\n    \"form\": \"tortuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tortura\": {\n    \"form\": \"tortura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"torturare\": {\n    \"form\": \"torturare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"toscana\": {\n    \"form\": \"toscana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"toscano\": {\n    \"form\": \"toscano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tosta\": {\n    \"form\": \"tosta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"totale\": {\n    \"form\": \"totale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"totalita\": {\n    \"form\": \"totalita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"totalmente\": {\n    \"form\": \"totalmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tozzo\": {\n    \"form\": \"tozzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"traccia\": {\n    \"form\": \"traccia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tracciato\": {\n    \"form\": \"tracciato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tracotante\": {\n    \"form\": \"tracotante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"traditore\": {\n    \"form\": \"traditore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tradizionale\": {\n    \"form\": \"tradizionale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.17\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tradizionalista\": {\n    \"form\": \"tradizionalista\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tradotte\": {\n    \"form\": \"tradotte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trafitta\": {\n    \"form\": \"trafitta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trafittura\": {\n    \"form\": \"trafittura\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tragedia\": {\n    \"form\": \"tragedia\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tragica\": {\n    \"form\": \"tragica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tragico\": {\n    \"form\": \"tragico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.83\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trama\": {\n    \"form\": \"trama\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trambusto\": {\n    \"form\": \"trambusto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tranello\": {\n    \"form\": \"tranello\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tranquilla\": {\n    \"form\": \"tranquilla\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tranquillamente\": {\n    \"form\": \"tranquillamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.20\",\n    \"subjectivity\": \"0.07\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tranquillo\": {\n    \"form\": \"tranquillo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trapassare\": {\n    \"form\": \"trapassare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trapassato\": {\n    \"form\": \"trapassato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trascinando\": {\n    \"form\": \"trascinando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trascinatore\": {\n    \"form\": \"trascinatore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"trascurabile\": {\n    \"form\": \"trascurabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"trasparente\": {\n    \"form\": \"trasparente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trastullo\": {\n    \"form\": \"trastullo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trattabile\": {\n    \"form\": \"trattabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"trattando\": {\n    \"form\": \"trattando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trattandosi\": {\n    \"form\": \"trattandosi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"travagliare\": {\n    \"form\": \"travagliare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"travolgente\": {\n    \"form\": \"travolgente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tremendamente\": {\n    \"form\": \"tremendamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"tremendo\": {\n    \"form\": \"tremendo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"trepidante\": {\n    \"form\": \"trepidante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"trionfante\": {\n    \"form\": \"trionfante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tripudio\": {\n    \"form\": \"tripudio\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"triste\": {\n    \"form\": \"triste\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"tristezza\": {\n    \"form\": \"tristezza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"tristi\": {\n    \"form\": \"tristi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"tristissimo\": {\n    \"form\": \"tristissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tristo\": {\n    \"form\": \"tristo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"troppa\": {\n    \"form\": \"troppa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.28\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"troppe\": {\n    \"form\": \"troppe\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"troppi\": {\n    \"form\": \"troppi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"troppo\": {\n    \"form\": \"troppo\",\n    \"pos\": \"RB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"trovando\": {\n    \"form\": \"trovando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"truffa\": {\n    \"form\": \"truffa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tua\": {\n    \"form\": \"tua\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tue\": {\n    \"form\": \"tue\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tumulto\": {\n    \"form\": \"tumulto\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tuo\": {\n    \"form\": \"tuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tuoi\": {\n    \"form\": \"tuoi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tuorlo\": {\n    \"form\": \"tuorlo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"turba\": {\n    \"form\": \"turba\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"turbare\": {\n    \"form\": \"turbare\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"turbato\": {\n    \"form\": \"turbato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"turbolento\": {\n    \"form\": \"turbolento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"turbolenza\": {\n    \"form\": \"turbolenza\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"turchino\": {\n    \"form\": \"turchino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"turlupinatura\": {\n    \"form\": \"turlupinatura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tutta\": {\n    \"form\": \"tutta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"tutte\": {\n    \"form\": \"tutte\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ubbidiente\": {\n    \"form\": \"ubbidiente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ufficiale\": {\n    \"form\": \"ufficiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uffiziale\": {\n    \"form\": \"uffiziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uficiale\": {\n    \"form\": \"uficiale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ufiziale\": {\n    \"form\": \"ufiziale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uggioso\": {\n    \"form\": \"uggioso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uguale\": {\n    \"form\": \"uguale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uguali\": {\n    \"form\": \"uguali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ugualmente\": {\n    \"form\": \"ugualmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ulteriore\": {\n    \"form\": \"ulteriore\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ulteriori\": {\n    \"form\": \"ulteriori\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ulteriormente\": {\n    \"form\": \"ulteriormente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ultima\": {\n    \"form\": \"ultima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ultimamente\": {\n    \"form\": \"ultimamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ultime\": {\n    \"form\": \"ultime\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ultimi\": {\n    \"form\": \"ultimi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"ultimissima\": {\n    \"form\": \"ultimissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"ultimo\": {\n    \"form\": \"ultimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umana\": {\n    \"form\": \"umana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umane\": {\n    \"form\": \"umane\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umani\": {\n    \"form\": \"umani\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umano\": {\n    \"form\": \"umano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umile\": {\n    \"form\": \"umile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"umoristico\": {\n    \"form\": \"umoristico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"unica\": {\n    \"form\": \"unica\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"unicamente\": {\n    \"form\": \"unicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"unici\": {\n    \"form\": \"unici\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"unico\": {\n    \"form\": \"unico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"uniforme\": {\n    \"form\": \"uniforme\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"unita\": {\n    \"form\": \"unita\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"universale\": {\n    \"form\": \"universale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"universali\": {\n    \"form\": \"universali\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"universitaria\": {\n    \"form\": \"universitaria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"universitario\": {\n    \"form\": \"universitario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"uomo\": {\n    \"form\": \"uomo\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.10\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"urbana\": {\n    \"form\": \"urbana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"urbano\": {\n    \"form\": \"urbano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"usa\": {\n    \"form\": \"usa\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"usando\": {\n    \"form\": \"usando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"usuale\": {\n    \"form\": \"usuale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"utile\": {\n    \"form\": \"utile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"utiledesercizio\": {\n    \"form\": \"utiledesercizio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"utili\": {\n    \"form\": \"utili\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"utilissima\": {\n    \"form\": \"utilissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"1.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"utilissimo\": {\n    \"form\": \"utilissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"utilizzabile\": {\n    \"form\": \"utilizzabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"utilizzando\": {\n    \"form\": \"utilizzando\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vacuo\": {\n    \"form\": \"vacuo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vagamente\": {\n    \"form\": \"vagamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vago\": {\n    \"form\": \"vago\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vaiato\": {\n    \"form\": \"vaiato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vale\": {\n    \"form\": \"vale\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valente\": {\n    \"form\": \"valente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valerio\": {\n    \"form\": \"valerio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valga\": {\n    \"form\": \"valga\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"valida\": {\n    \"form\": \"valida\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.35\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valide\": {\n    \"form\": \"valide\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"validi\": {\n    \"form\": \"validi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valido\": {\n    \"form\": \"valido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"valoroso\": {\n    \"form\": \"valoroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"valyria\": {\n    \"form\": \"valyria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vano\": {\n    \"form\": \"vano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vari\": {\n    \"form\": \"vari\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"varie\": {\n    \"form\": \"varie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"varieta\": {\n    \"form\": \"varieta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vario\": {\n    \"form\": \"vario\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vasto\": {\n    \"form\": \"vasto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.28\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vecchi\": {\n    \"form\": \"vecchi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vecchia\": {\n    \"form\": \"vecchia\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.30\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vecchie\": {\n    \"form\": \"vecchie\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.17\",\n    \"subjectivity\": \"0.35\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vecchio\": {\n    \"form\": \"vecchio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"velato\": {\n    \"form\": \"velato\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"veloce\": {\n    \"form\": \"veloce\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.08\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"velocemente\": {\n    \"form\": \"velocemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"velocissima\": {\n    \"form\": \"velocissima\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"velocissimo\": {\n    \"form\": \"velocissimo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"venendo\": {\n    \"form\": \"venendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veneziana\": {\n    \"form\": \"veneziana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veneziano\": {\n    \"form\": \"veneziano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veniremeno\": {\n    \"form\": \"veniremeno\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ventenne\": {\n    \"form\": \"ventenne\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ventosa\": {\n    \"form\": \"ventosa\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"ventura\": {\n    \"form\": \"ventura\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"venturo\": {\n    \"form\": \"venturo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"venusto\": {\n    \"form\": \"venusto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vera\": {\n    \"form\": \"vera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"verace\": {\n    \"form\": \"verace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veracemente\": {\n    \"form\": \"veracemente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veramente\": {\n    \"form\": \"veramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"verbale\": {\n    \"form\": \"verbale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verde\": {\n    \"form\": \"verde\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verdiccio\": {\n    \"form\": \"verdiccio\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verdigno\": {\n    \"form\": \"verdigno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verdino\": {\n    \"form\": \"verdino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verdognolo\": {\n    \"form\": \"verdognolo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verdolino\": {\n    \"form\": \"verdolino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vere\": {\n    \"form\": \"vere\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vergognoso\": {\n    \"form\": \"vergognoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veri\": {\n    \"form\": \"veri\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.12\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"veridicamente\": {\n    \"form\": \"veridicamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"veridico\": {\n    \"form\": \"veridico\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veritiera\": {\n    \"form\": \"veritiera\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"veritieramente\": {\n    \"form\": \"veritieramente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"veritiero\": {\n    \"form\": \"veritiero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.38\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vero\": {\n    \"form\": \"vero\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"verosimile\": {\n    \"form\": \"verosimile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"verosimilmente\": {\n    \"form\": \"verosimilmente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"versatile\": {\n    \"form\": \"versatile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vertice\": {\n    \"form\": \"vertice\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vertiginoso\": {\n    \"form\": \"vertiginoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vetta\": {\n    \"form\": \"vetta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vetusto\": {\n    \"form\": \"vetusto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"vezzoso\": {\n    \"form\": \"vezzoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"vianormale\": {\n    \"form\": \"vianormale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"viavai\": {\n    \"form\": \"viavai\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.33\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vibrante\": {\n    \"form\": \"vibrante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"viceversa\": {\n    \"form\": \"viceversa\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vicina\": {\n    \"form\": \"vicina\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vicine\": {\n    \"form\": \"vicine\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vicino\": {\n    \"form\": \"vicino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.12\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"victoria\": {\n    \"form\": \"victoria\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vidimazione\": {\n    \"form\": \"vidimazione\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vigilante\": {\n    \"form\": \"vigilante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vigile\": {\n    \"form\": \"vigile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vigoroso\": {\n    \"form\": \"vigoroso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"villano\": {\n    \"form\": \"villano\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vincente\": {\n    \"form\": \"vincente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vincitore\": {\n    \"form\": \"vincitore\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vincolante\": {\n    \"form\": \"vincolante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.07\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"violenti\": {\n    \"form\": \"violenti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"violento\": {\n    \"form\": \"violento\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"virile\": {\n    \"form\": \"virile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"virtuoso\": {\n    \"form\": \"virtuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vissuta\": {\n    \"form\": \"vissuta\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vissute\": {\n    \"form\": \"vissute\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vissuto\": {\n    \"form\": \"vissuto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vistoso\": {\n    \"form\": \"vistoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"vitale\": {\n    \"form\": \"vitale\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.42\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vittorioso\": {\n    \"form\": \"vittorioso\",\n    \"pos\": \"NN\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vivace\": {\n    \"form\": \"vivace\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.75\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"vivamente\": {\n    \"form\": \"vivamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vive\": {\n    \"form\": \"vive\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vivendo\": {\n    \"form\": \"vivendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vivente\": {\n    \"form\": \"vivente\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vivi\": {\n    \"form\": \"vivi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"viviana\": {\n    \"form\": \"viviana\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vividi\": {\n    \"form\": \"vividi\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.38\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vivido\": {\n    \"form\": \"vivido\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.83\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vivo\": {\n    \"form\": \"vivo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.33\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vizzo\": {\n    \"form\": \"vizzo\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.05\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"volendo\": {\n    \"form\": \"volendo\",\n    \"pos\": \"VBG\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"volentieri\": {\n    \"form\": \"volentieri\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.67\",\n    \"label\": \"\"\n  },\n  \"volerebene\": {\n    \"form\": \"volerebene\",\n    \"pos\": \"VB\",\n    \"polarity\": \"0.67\",\n    \"subjectivity\": \"0.75\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"voleremale\": {\n    \"form\": \"voleremale\",\n    \"pos\": \"VB\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"volgare\": {\n    \"form\": \"volgare\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.67\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.33\",\n    \"label\": \"\"\n  },\n  \"volontariamente\": {\n    \"form\": \"volontariamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"volpino\": {\n    \"form\": \"volpino\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"voluminoso\": {\n    \"form\": \"voluminoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.50\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"volutamente\": {\n    \"form\": \"volutamente\",\n    \"pos\": \"RB\",\n    \"polarity\": \"0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"voluttuoso\": {\n    \"form\": \"voluttuoso\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.50\",\n    \"subjectivity\": \"0.67\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vostro\": {\n    \"form\": \"vostro\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vulnerabile\": {\n    \"form\": \"vulnerabile\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vuota\": {\n    \"form\": \"vuota\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.50\",\n    \"label\": \"\"\n  },\n  \"vuote\": {\n    \"form\": \"vuote\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vuoti\": {\n    \"form\": \"vuoti\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"vuoto\": {\n    \"form\": \"vuoto\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.33\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"zaffata\": {\n    \"form\": \"zaffata\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"zeccola\": {\n    \"form\": \"zeccola\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.25\",\n    \"subjectivity\": \"0.25\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"zelante\": {\n    \"form\": \"zelante\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.17\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"2.00\",\n    \"label\": \"\"\n  },\n  \"zeno\": {\n    \"form\": \"zeno\",\n    \"pos\": \"JJ\",\n    \"polarity\": \"0.00\",\n    \"subjectivity\": \"0.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  },\n  \"zuccone\": {\n    \"form\": \"zuccone\",\n    \"pos\": \"NN\",\n    \"polarity\": \"-0.50\",\n    \"subjectivity\": \"1.00\",\n    \"intensity\": \"1.00\",\n    \"label\": \"\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/Portuguese/afinnShortSortedPortuguese.json",
    "content": "{\n  \"😂\": 1,\n  \"❤\": 3,\n  \"♥\": 3,\n  \"😍\": 3,\n  \"😭\": -1,\n  \"😘\": 3,\n  \"😊\": 3,\n  \"👌\": 2,\n  \"💕\": 3,\n  \"👏\": 2,\n  \"😁\": 2,\n  \"☺\": 3,\n  \"♡\": 3,\n  \"👍\": 2,\n  \"😩\": -2,\n  \"🙏\": 2,\n  \"✌\": 2,\n  \"😏\": 1,\n  \"😉\": 2,\n  \"🙌\": 2,\n  \"🙈\": 2,\n  \"💪\": 2,\n  \"😄\": 2,\n  \"😒\": -2,\n  \"💃\": 3,\n  \"💖\": 3,\n  \"😃\": 2,\n  \"😔\": -1,\n  \"🎉\": 3,\n  \"😜\": 2,\n  \"🌸\": 3,\n  \"💜\": 3,\n  \"💙\": 3,\n  \"✨\": 1,\n  \"💗\": 3,\n  \"★\": 1,\n  \"█\": -1,\n  \"☀\": 2,\n  \"😡\": -1,\n  \"😎\": 2,\n  \"💋\": 3,\n  \"😋\": 3,\n  \"🙊\": 2,\n  \"😴\": -1,\n  \"🎶\": 2,\n  \"💞\": 3,\n  \"😌\": 2,\n  \"🔫\": -1,\n  \"💛\": 3,\n  \"💁\": 1,\n  \"💚\": 3,\n  \"♫\": 1,\n  \"😞\": -1,\n  \"😆\": 2,\n  \"😝\": 2,\n  \"😪\": -1,\n  \"😫\": -1,\n  \"👊\": 1,\n  \"💀\": -2,\n  \"😀\": 2,\n  \"😚\": 3,\n  \"😻\": 3,\n  \"💘\": 3,\n  \"☕\": 1,\n  \"👋\": 2,\n  \"🎊\": 3,\n  \"🍕\": 2,\n  \"❄\": 2,\n  \"😕\": -2,\n  \"💔\": -1,\n  \"😤\": -2,\n  \"😈\": 1,\n  \"✈\": 2,\n  \"🔝\": 2,\n  \"😰\": -1,\n  \"⚽\": 3,\n  \"😑\": -2,\n  \"👑\": 3,\n  \"👉\": 1,\n  \"🍃\": 1,\n  \"🎁\": 3,\n  \"😠\": -2,\n  \"🐧\": 2,\n  \"☆\": 2,\n  \"🍀\": 1,\n  \"🎈\": 3,\n  \"🎅\": 1,\n  \"😓\": -1,\n  \"😣\": -2,\n  \"😐\": -2,\n  \"✊\": 2,\n  \"😨\": -1,\n  \"😖\": -1,\n  \"💤\": 1,\n  \"💓\": 3,\n  \"👎\": -1,\n  \"💦\": 2,\n  \"✔\": 1,\n  \"😷\": -1,\n  \"🙋\": 2,\n  \"🎄\": 2,\n  \"💩\": -1,\n  \"🎵\": 2,\n  \"😛\": 3,\n  \"👯\": 2,\n  \"💎\": 2,\n  \"🌿\": 1,\n  \"🎂\": 3,\n  \"🌟\": 1,\n  \"🔮\": 1,\n  \"👫\": 1,\n  \"🏆\": 3,\n  \"✖\": 1,\n  \"☝\": 1,\n  \"😙\": 3,\n  \"⛄\": 2,\n  \"👅\": 2,\n  \"♪\": 2,\n  \"🍂\": 2,\n  \"💏\": 1,\n  \"🌴\": 2,\n  \"👈\": 2,\n  \"🌹\": 3,\n  \"🙆\": 2,\n  \"👻\": 1,\n  \"💰\": 1,\n  \"🍻\": 2,\n  \"🙅\": -2,\n  \"🌞\": 2,\n  \"🍁\": 2,\n  \"⭐\": 2,\n  \"▪\": 1,\n  \"🎀\": 3,\n  \"🐷\": 1,\n  \"🙉\": 1,\n  \"🌺\": 2,\n  \"💅\": 1,\n  \"🐶\": 2,\n  \"🌚\": 2,\n  \"👽\": 1,\n  \"🎤\": 2,\n  \"👭\": 2,\n  \"🎧\": 2,\n  \"👆\": 1,\n  \"🍸\": 2,\n  \"🍷\": 2,\n  \"®\": 1,\n  \"🍉\": 3,\n  \"😇\": 3,\n  \"🏃\": 2,\n  \"😿\": -2,\n  \"│\": 1,\n  \"🍺\": 2,\n  \"▶\": 1,\n  \"😲\": -1,\n  \"🎸\": 2,\n  \"🍹\": 3,\n  \"💫\": 2,\n  \"📚\": 1,\n  \"😶\": -1,\n  \"🌷\": 2,\n  \"💝\": 3,\n  \"💨\": 1,\n  \"🏈\": 2,\n  \"💍\": 2,\n  \"☔\": 1,\n  \"👸\": 3,\n  \"🇪\": 3,\n  \"░\": -1,\n  \"🍩\": 1,\n  \"👾\": 1,\n  \"☁\": 1,\n  \"🌻\": 2,\n  \"↿\": 3,\n  \"🐯\": 2,\n  \"👼\": 1,\n  \"🍔\": 1,\n  \"😸\": 2,\n  \"👶\": 2,\n  \"↾\": 3,\n  \"💐\": 3,\n  \"🌊\": 2,\n  \"🍦\": 2,\n  \"🍓\": 3,\n  \"👇\": 1,\n  \"💆\": 1,\n  \"🍴\": 2,\n  \"😧\": -1,\n  \"🇸\": 2,\n  \"😮\": 1,\n  \"🚫\": -3,\n  \"😽\": 2,\n  \"🌈\": 2,\n  \"🙀\": 1,\n  \"⚠\": -1,\n  \"🎮\": 2,\n  \"╯\": -1,\n  \"🍆\": 2,\n  \"🍰\": 2,\n  \"✓\": 1,\n  \"👐\": -1,\n  \"🍟\": 1,\n  \"🍌\": 2,\n  \"💑\": 3,\n  \"👬\": -1,\n  \"🐣\": 2,\n  \"🎃\": 3,\n  \"▬\": 2,\n  \"￼\": -3,\n  \"🐾\": 3,\n  \"🎓\": 2,\n  \"🏊\": 2,\n  \"📷\": 2,\n  \"👄\": 2,\n  \"🌼\": 4,\n  \"🚶\": -1,\n  \"🐱\": 2,\n  \"🐸\": -1,\n  \"🇺\": 2,\n  \"👿\": -3,\n  \"🚬\": 2,\n  \"✿\": 1,\n  \"🐒\": 2,\n  \"🌍\": 3,\n  \"┊\": 5,\n  \"🐥\": 3,\n  \"🐼\": 1,\n  \"🎥\": 1,\n  \"💄\": 2,\n  \"⛔\": 2,\n  \"🏀\": 1,\n  \"💉\": 1,\n  \"💟\": 3,\n  \"🚗\": 1,\n  \"📝\": 1,\n  \"♦\": 2,\n  \"💭\": 1,\n  \"🌙\": 3,\n  \"🐟\": 3,\n  \"👣\": 1,\n  \"✂\": -3,\n  \"🗿\": 2,\n  \"👪\": -1,\n  \"🍭\": 1,\n  \"🌃\": 2,\n  \"❌\": 1,\n  \"🐰\": 3,\n  \"💊\": 2,\n  \"🚨\": 3,\n  \"😦\": -2,\n  \"🍪\": 1,\n  \"🍣\": -2,\n  \"✧\": 1,\n  \"🎆\": 3,\n  \"🎎\": 4,\n  \"🇩\": 3,\n  \"✅\": 2,\n  \"📱\": 1,\n  \"🙍\": -2,\n  \"🍑\": 1,\n  \"🎼\": 1,\n  \"🔊\": 2,\n  \"🌌\": 2,\n  \"🍎\": 1,\n  \"🐻\": 2,\n  \"╰\": -1,\n  \"💇\": 1,\n  \"♬\": 1,\n  \"🔴\": 2,\n  \"🍱\": -2,\n  \"🍊\": 2,\n  \"🍒\": 1,\n  \"🐭\": 3,\n  \"👟\": 2,\n  \"🌎\": 1,\n  \"🍍\": 2,\n  \"🐮\": 3,\n  \"📲\": 1,\n  \"☼\": 1,\n  \"🌅\": 1,\n  \"🇷\": 3,\n  \"👠\": 1,\n  \"🌽\": 2,\n  \"💧\": -1,\n  \"🍬\": 1,\n  \"😺\": 2,\n  \"🚀\": 2,\n  \"¦\": 3,\n  \"💢\": 1,\n  \"🎬\": 1,\n  \"🍧\": 1,\n  \"🍜\": 2,\n  \"🐏\": 3,\n  \"🏄\": 2,\n  \"➤\": 1,\n  \"⬆\": 1,\n  \"🍋\": 1,\n  \"🆗\": 2,\n  \"⚪\": 2,\n  \"📺\": 2,\n  \"🍅\": 1,\n  \"⛅\": 2,\n  \"🐢\": 1,\n  \"👙\": 2,\n  \"🏡\": 2,\n  \"🌾\": 2,\n  \"◉\": 1,\n  \"✏\": 1,\n  \"🐬\": 2,\n  \"🇹\": 3,\n  \"♣\": 1,\n  \"🐝\": 1,\n  \"🌝\": 1,\n  \"🇮\": 3,\n  \"🔋\": -3,\n  \"🐍\": 1,\n  \"♔\": 2,\n  \"🔵\": 1,\n  \"😾\": -2,\n  \"🌕\": 3,\n  \"🐨\": 2,\n  \"🔐\": 1,\n  \"💿\": 3,\n  \"🌳\": 2,\n  \"👰\": 2,\n  \"❀\": 2,\n  \"⚓\": 3,\n  \"🚴\": 3,\n  \"▀\": -1,\n  \"👗\": 1,\n  \"➕\": 2,\n  \"💬\": 2,\n  \"▒\": -1,\n  \"🔜\": 1,\n  \"🍨\": 1,\n  \"💲\": 1,\n  \"🍙\": 1,\n  \"🍥\": -4,\n  \"▸\": 1,\n  \"♛\": 1,\n  \"😼\": 1,\n  \"🐙\": 2,\n  \"👨\": 2,\n  \"🍚\": 2,\n  \"♨\": 4,\n  \"🎹\": 1,\n  \"♕\": 2,\n  \"▃\": 5,\n  \"🇬\": 1,\n  \"🇧\": 1,\n  \"☠\": -1,\n  \"🐠\": 2,\n  \"🚹\": 3,\n  \"💵\": 2,\n  \"✰\": 4,\n  \"╠\": 1,\n  \"👛\": 2,\n  \"🌱\": 3,\n  \"💻\": 1,\n  \"🌏\": 1,\n  \"▄\": -1,\n  \"👓\": 1,\n  \"◄\": 1,\n  \"⚾\": -1,\n  \"🌲\": 2,\n  \"👴\": 1,\n  \"🏠\": 2,\n  \"🍇\": 1,\n  \"🍘\": 2,\n  \"🐇\": 1,\n  \"🔞\": -1,\n  \"👵\": 2,\n  \"◀\": 1,\n  \"🔙\": 1,\n  \"🌵\": 1,\n  \"🍮\": -1,\n  \"🎇\": 3,\n  \"🐎\": 2,\n  \"➔\": -1,\n  \"🐤\": 2,\n  \"╩\": 1,\n  \"🌑\": 2,\n  \"🚲\": 2,\n  \"🐑\": -1,\n  \"🏁\": 2,\n  \"🎾\": 3,\n  \"╚\": 1,\n  \"🈹\": 1,\n  \"👮\": -2,\n  \"☹\": -3,\n  \"🐵\": 2,\n  \"✪\": 1,\n  \"◕\": 2,\n  \"🗼\": 3,\n  \"▐\": -1,\n  \"♠\": 1,\n  \"┳\": -2,\n  \"👺\": -2,\n  \"🐚\": 1,\n  \"👂\": -1,\n  \"🗽\": 1,\n  \"🍵\": 2,\n  \"🆒\": 2,\n  \"🐺\": 1,\n  \"⇨\": 2,\n  \"🌓\": 3,\n  \"🔒\": 1,\n  \"╬\": -1,\n  \"👳\": 3,\n  \"🌂\": 1,\n  \"🚌\": 1,\n  \"♩\": 3,\n  \"🍡\": -1,\n  \"❥\": 1,\n  \"🎡\": 1,\n  \"💌\": 2,\n  \"🐩\": 2,\n  \"🌜\": 2,\n  \"⌚\": 1,\n  \"🚿\": 3,\n  \"🔆\": 3,\n  \"🌛\": 3,\n  \"💂\": -1,\n  \"🐔\": 1,\n  \"🙎\": -1,\n  \"🏩\": 2,\n  \"🇫\": 2,\n  \"🔨\": -1,\n  \"📢\": 2,\n  \"🐦\": 2,\n  \"🐲\": -1,\n  \"♻\": 2,\n  \"🌘\": 3,\n  \"🌔\": 3,\n  \"👖\": 2,\n  \"😗\": 3,\n  \"🐄\": 1,\n  \"◟\": -1,\n  \"🍢\": -1,\n  \"🎨\": 1,\n  \"⬇\": 2,\n  \"🚼\": 3,\n  \"🇴\": 2,\n  \"🌗\": 3,\n  \"🌖\": 3,\n  \"🔅\": 5,\n  \"👜\": 1,\n  \"🐌\": 3,\n  \"💼\": 3,\n  \"🐹\": 1,\n  \"🌠\": 3,\n  \"🐈\": 1,\n  \"🌁\": 1,\n  \"⚫\": 1,\n  \"♧\": 2,\n  \"🏰\": 1,\n  \"🚵\": 2,\n  \"🎢\": 2,\n  \"🎷\": 3,\n  \"🎐\": 1,\n  \"┈\": -4,\n  \"╗\": 2,\n  \"🌇\": 3,\n  \"⏰\": 2,\n  \"🚂\": 1,\n  \"◠\": 2,\n  \"🎿\": 2,\n  \"🆔\": 4,\n  \"🌒\": 3,\n  \"🐪\": 3,\n  \"╔\": 1,\n  \"╝\": 2,\n  \"👔\": 2,\n  \"🆓\": 1,\n  \"🐋\": 1,\n  \"▽\": 2,\n  \"🐛\": 1,\n  \"👕\": 2,\n  \"💳\": 2,\n  \"🏧\": 5,\n  \"💡\": 3,\n  \"⬅\": 2,\n  \"🐫\": 2,\n  \"🇱\": 2,\n  \"📹\": 2,\n  \"👞\": 2,\n  \"👚\": 3,\n  \"□\": -2,\n  \"🚣\": 3,\n  \"🏉\": 3,\n  \"🗻\": 3,\n  \"╦\": 2,\n  \"⛺\": 3,\n  \"🐕\": 1,\n  \"🏂\": 2,\n  \"👡\": 2,\n  \"📻\": 2,\n  \"✒\": 1,\n  \"🌰\": 3,\n  \"🏢\": 1,\n  \"🎒\": 3,\n  \"⌒\": 3,\n  \"🏫\": -2,\n  \"📴\": 4,\n  \"🚢\": 1,\n  \"🚚\": -1,\n  \"🐉\": 1,\n  \"❒\": 1,\n  \"🔔\": 5,\n  \"◢\": 4,\n  \"🏥\": 1,\n  \"🚖\": -1,\n  \"▌\": -2,\n  \"☛\": 2,\n  \"💒\": 3,\n  \"🚤\": 2,\n  \"🐐\": 2,\n  \"■\": -2,\n  \"🔚\": 2,\n  \"🎻\": 2,\n  \"🔷\": 1,\n  \"🎽\": 2,\n  \"📅\": 1,\n  \"🎺\": 3,\n  \"🍈\": -3,\n  \"✉\": 1,\n  \"◤\": 5,\n  \"○\": 3,\n  \"🍼\": 3,\n  \"🚛\": -2,\n  \"📓\": 1,\n  \"☉\": 1,\n  \"💴\": -2,\n  \"➰\": -1,\n  \"🔌\": -1,\n  \"📕\": 1,\n  \"📣\": 2,\n  \"🚓\": 1,\n  \"🐗\": 3,\n  \"⛳\": 4,\n  \"┻\": -3,\n  \"┛\": 3,\n  \"┃\": 2,\n  \"💺\": 1,\n  \"🏇\": -1,\n  \"☻\": 1,\n  \"📞\": 2,\n  \"Ⓐ\": -1,\n  \"🌉\": 3,\n  \"🚩\": -2,\n  \"✎\": 3,\n  \"📃\": 2,\n  \"🏨\": 1,\n  \"📌\": -3,\n  \"♎\": -1,\n  \"💷\": 2,\n  \"🚄\": 3,\n  \"▲\": 3,\n  \"⛵\": 3,\n  \"🔸\": 1,\n  \"🚜\": 5,\n  \"🐆\": 2,\n  \"👒\": 1,\n  \"❕\": 1,\n  \"🔛\": 2,\n  \"♢\": 2,\n  \"🇲\": 2,\n  \"❅\": 4,\n  \"👝\": 2,\n  \"✞\": 2,\n  \"◡\": 1,\n  \"🎋\": 3,\n  \"👥\": 1,\n  \"🐡\": 1,\n  \"◆\": 4,\n  \"🔭\": 2,\n  \"🎪\": 1,\n  \"🐜\": 3,\n  \"♌\": 4,\n  \"☐\": -5,\n  \"👷\": 1,\n  \"🔈\": 1,\n  \"📄\": 5,\n  \"🚐\": 4,\n  \"🌋\": 3,\n  \"📡\": 1,\n  \"🚳\": 5,\n  \"✘\": 4,\n  \"🅰\": 1,\n  \"🇼\": 2,\n  \"┓\": 3,\n  \"┣\": 3,\n  \"Ⓛ\": 2,\n  \"Ⓔ\": 2,\n  \"👤\": 4,\n  \"🚁\": 1,\n  \"🎠\": 3,\n  \"🐁\": -2,\n  \"📗\": 1,\n  \"┐\": -1,\n  \"♂\": 1,\n  \"📯\": -1,\n  \"🔩\": 1,\n  \"👢\": 4,\n  \"◂\": 2,\n  \"📰\": 1,\n  \"📶\": 2,\n  \"🌄\": 1,\n  \"🗾\": 2,\n  \"🔶\": 2,\n  \"🏤\": 2,\n  \"🎩\": 2,\n  \"Ⓜ\": 1,\n  \"🔧\": -4,\n  \"🐅\": 1,\n  \"♮\": 1,\n  \"🅾\": -1,\n  \"📦\": 1,\n  \"🚊\": 1,\n  \"🔲\": 3,\n  \"△\": 1,\n  \"📆\": 5,\n  \"❛\": 2,\n  \"📉\": 2,\n  \"▵\": 2,\n  \"🔎\": 3,\n  \"☜\": 1,\n  \"🇯\": 2,\n  \"🇵\": 2,\n  \"📘\": 1,\n  \"ⓔ\": 3,\n  \"🔑\": 1,\n  \"⭕\": 2,\n  \"🔘\": 1,\n  \"🚭\": 5,\n  \"🚉\": 3,\n  \"🚪\": 3,\n  \"➳\": 2,\n  \"🚃\": 3,\n  \"┯\": -3,\n  \"🆙\": 2,\n  \"🆖\": 1,\n  \"┗\": 5,\n  \"Ⓞ\": 2,\n  \"❇\": 3,\n  \"✴\": 3,\n  \"☊\": 5,\n  \"🔕\": -2,\n  \"⬛\": -2,\n  \"🚞\": 3,\n  \"🍶\": 3,\n  \"🌐\": 3,\n  \"♀\": 1,\n  \"🚅\": 3,\n  \"🚒\": -2,\n  \"♋\": 1,\n  \"♍\": 3,\n  \"🕝\": -2,\n  \"ⓐ\": 5,\n  \"📙\": 1,\n  \"Ⓢ\": 1,\n  \"📋\": 3,\n  \"🎱\": 1,\n  \"🐞\": 1,\n  \"🔺\": 1,\n  \"ⓡ\": 5,\n  \"♤\": 3,\n  \"🎯\": 3,\n  \"🔉\": 3,\n  \"↩\": 5,\n  \"🚾\": 1,\n  \"🎣\": -4,\n  \"🔣\": 1,\n  \"❎\": -5,\n  \"➥\": 1,\n  \"🎌\": 5,\n  \"◣\": 1,\n  \"⏬\": 5,\n  \"♭\": 1,\n  \"ⓞ\": 5,\n  \"🔳\": 2,\n  \"🏭\": 2,\n  \"🎳\": -3,\n  \"☚\": 5,\n  \"➽\": 2,\n  \"➫\": 2,\n  \"➖\": -5,\n  \"꒰\": 2,\n  \"꒱\": 2,\n  \"◝\": -3,\n  \"📑\": 5,\n  \"ⓧ\": 5,\n  \"🔟\": 5,\n  \"〓\": 5,\n  \"ⓜ\": 2,\n  \"➠\": 5,\n  \"🚆\": 2,\n  \"℅\": -5,\n  \"☃\": 2,\n  \"🚽\": 5,\n  \"ⓝ\": 5,\n  \"⇦\": 5,\n  \"👲\": 2,\n  \"🚡\": -3,\n  \"🔬\": 5,\n  \"➗\": -3,\n  \"📈\": 2,\n  \"⏪\": 2,\n  \"◎\": 5,\n  \"꒦\": -5,\n  \"📎\": 5,\n  \"⑅\": 5,\n  \"✭\": 5,\n  \"♓\": 2,\n  \"┏\": 5,\n  \"☇\": 5,\n  \"࿎\": -5,\n  \"👘\": 5,\n  \"↙\": 5,\n  \"Ⓕ\": 2,\n  \"Ⓦ\": 2,\n  \"Ⓟ\": 2,\n  \"🕑\": 2,\n  \"🕛\": 5,\n  \"♈\": -5,\n  \"↬\": 5,\n  \"✍\": 5,\n  \"🏦\": 5,\n  \"🔻\": 5,\n  \"ⓟ\": 5,\n  \"ⓕ\": 5,\n  \"ⓘ\": 5,\n  \"♿\": 5,\n  \"⇗\": 5,\n  \"⇘\": 5,\n  \"ⓨ\": 5,\n  \"ⓙ\": 5,\n  \"▫\": 5,\n  \"🔇\": 5,\n  \"⌃\": -5,\n  \"🔖\": 5,\n  \"📜\": 5,\n  \"🚝\": 5,\n  \"┘\": -5,\n  \"✝\": -5,\n  \"⍣\": -5,\n  \"📮\": -5,\n  \"🕕\": -5,\n  \"🔯\": 5,\n  \"➸\": 5,\n  \"꒵\": 5,\n  \"🕥\": -5,\n  \"✽\": 5,\n  \"📼\": 5,\n  \"🕐\": -5,\n  \"🀄\": 5,\n  \"✬\": 5,\n  \"✫\": 5,\n  \"🕔\": -5,\n  \"❣\": 5,\n  \"📫\": 5,\n  \"🉐\": 5,\n  \"🈂\": -5,\n  \"🎰\": -5,\n  \"҂\": -5,\n  \"╤\": -5,\n  \"📔\": 5,\n  \"gratis\": 1,\n  \"gratuito\": 1,\n  \"não\": -1,\n  \"nunca\": -1,\n  \"ajuda\": 2,\n  \"gostei\": 2,\n  \"aleluia\": 2,\n  \"por favor\": 1,\n  \"apoio\": 2,\n  \"melhor\": 3,\n  \"bom\": 3,\n  \"estupendo\": 3,\n  \"unido\": 1,\n  \"querer\": 1,\n  \"cuidado\": 2,\n  \"grande\": 3,\n  \"amor\": 3,\n  \"qualidade\": 2,\n  \"guardar\": 2,\n  \"juntar\": 1,\n  \"avançado\": 1,\n  \"sim\": 1,\n  \"*melhor\": 2,\n  \"amigo\": 1,\n  \"legal\": 1,\n  \"problema\": -2,\n  \"importante\": 2,\n  \"presente\": 2,\n  \"complicado\": -1,\n  \"pagar\": -1,\n  \"guerra\": -2,\n  \"facil\": 1,\n  \"problemas\": -2,\n  \"interesses\": 1,\n  \"compartilhar\": 1,\n  \"popular\": 3,\n  \"bem vindo\": 2,\n  \"deus\": 1,\n  \"acordo\": 1,\n  \"segurança\": 1,\n  \"diverção\": 4,\n  \"ouro\": 2,\n  \"limitado\": -1,\n  \"soluções\": 1,\n  \"natural\": 1,\n  \"verdadeiro\": 2,\n  \"ruim\": -3,\n  \"risco\": -2,\n  \"obrigado\": 2,\n  \"erro\": -2,\n  \"claro\": 1,\n  \"beleza\": 3,\n  \"ativo\": 2,\n  \"fogo\": -2,\n  \"morte\": -2,\n  \"perdida\": -3,\n  \"aumento\": 1,\n  \"crescimento\": 2,\n  \"deter\": -1,\n  \"beneficios\": 2,\n  \"dinheiro\": 2,\n  \"perdido\": -2,\n  \"esperança\": 2,\n  \"desejo\": 1,\n  \"solução\": 1,\n  \"maduro\": 2,\n  \"certo\": 1,\n  \"bem\": 2,\n  \"sair\": -1,\n  \"enorme\": 1,\n  \"amável\": 2,\n  \"oportunidades\": 2,\n  \"apropriado\": 2,\n  \"agradável\": 3,\n  \"permitir\": 1,\n  \"super\": 3,\n  \"matéria\": 1,\n  \"responsável\": 2,\n  \"ganhar\": 4,\n  \"câncer\": -1,\n  \"amigável\": 2,\n  \"feliz\": 3,\n  \"agradecer\": 2,\n  \"seguro\": 2,\n  \"salvo\": 2,\n  \"bunda\": -4,\n  \"cu\": -5,\n  \"favorito\": 2,\n  \"corte\": -1,\n  \"melhorar\": 2,\n  \"anti\": -1,\n  \"forte\": 2,\n  \"enfermidade\": -1,\n  \"excelente\": 3,\n  \"perfeito\": 3,\n  \"oportunidade\": 2,\n  \"prêmio\": 3,\n  \"assegurar\": 1,\n  \"exito\": 2,\n  \"charmoso\": 3,\n  \"advertência\": -3,\n  \"significativo\": 1,\n  \"útil\": 2,\n  \"autoridade\": 1,\n  \"sexy\": 3,\n  \"sexo\": 3,\n  \"bacana\": 1,\n  \"conduzindo\": 2,\n  \"positivo\": 2,\n  \"fitness\": 1,\n  \"capacidade\": 1,\n  \"maior\": 3,\n  \"responsabilidade\": 1,\n  \"resolução\": 2,\n  \"lealdade\": 1,\n  \"recomendado\": 2,\n  \"aprovado\": 2,\n  \"habilidade\": 2,\n  \"bonito\": 1,\n  \"violação\": -2,\n  \"pressão\": -1,\n  \"dívida\": -2,\n  \"interessado\": 2,\n  \"premios\": 3,\n  \"desfrutar\": 2,\n  \"bloco\": -1,\n  \"aumentado\": 1,\n  \"justo\": 2,\n  \"incorreto\": -2,\n  \"morto\": -3,\n  \"respeito\": 2,\n  \"vale a pena\": 2,\n  \"pobre\": -2,\n  \"caralho\": -4,\n  \"paz\": 2,\n  \"criativo\": 2,\n  \"beneficio\": 2,\n  \"progresso\": 2,\n  \"concessão\": 1,\n  \"acorda\": 1,\n  \"fan\": 3,\n  \"fã\": 3,\n  \"interessante\": 2,\n  \"aceito\": 1,\n  \"morrer\": -3,\n  \"serviçal\": 2,\n  \"limpo\": 2,\n  \"justiça\": 2,\n  \"demanda\": -1,\n  \"possibilidade\": 2,\n  \"visão\": 1,\n  \"aceitar\": 1,\n  \"sucedido\": 3,\n  \"baixo\": -1,\n  \"emergência\": -2,\n  \"difícil\": -1,\n  \"ajuste\": 1,\n  \"dor\": -2,\n  \"recomendar\": 2,\n  \"desperdício\": -1,\n  \"delito\": -3,\n  \"senhorita\": -2,\n  \"garantia\": 1,\n  \"diamante\": 1,\n  \"solo\": -2,\n  \"porra\": -4,\n  \"esperma\": -4,\n  \"gozo\": -4,\n  \"compatível\": 2,\n  \"rosa\": 1,\n  \"liberdade\": 2,\n  \"novo\": 1,\n  \"crescente\": 1,\n  \"erros\": -2,\n  \"bilau\": -5,\n  \"integral\": 2,\n  \"proteger\": 1,\n  \"soltar\": -1,\n  \"sólido\": 2,\n  \"prevenir\": -1,\n  \"rico\": 2,\n  \"melhora\": 2,\n  \"espírito\": 1,\n  \"desafio\": -1,\n  \"aceitação\": 1,\n  \"cargos\": -2,\n  \"pronto\": 1,\n  \"tetas\": 2,\n  \"seios\": 2,\n  \"evitar\": -1,\n  \"abuso\": -3,\n  \"liderança\": 1,\n  \"fé\": 1,\n  \"faltoso\": -2,\n  \"morreu\": -3,\n  \"alcance\": 1,\n  \"ataque\": -1,\n  \"perdão\": -1,\n  \"dano\": -3,\n  \"fracasso\": -2,\n  \"aprovação\": 2,\n  \"jesus\": 1,\n  \"aventura\": 2,\n  \"lucro\": 2,\n  \"determinada\": 2,\n  \"divertida\": 4,\n  \"dedicada\": 2,\n  \"criminal\": -3,\n  \"poderoso\": 2,\n  \"sono\": 1,\n  \"falso\": -3,\n  \"promover\": 1,\n  \"vantagem\": 2,\n  \"economia\": 1,\n  \"ganhando\": 4,\n  \"reto\": 1,\n  \"preparado\": 1,\n  \"alerta\": -1,\n  \"claramente\": 1,\n  \"obviamente\": 1,\n  \"doce\": 2,\n  \"ganancia\": 2,\n  \"falta\": -2,\n  \"esquecido\": -1,\n  \"quebrado\": -1,\n  \"batalha\": -1,\n  \"repartido\": 1,\n  \"spam\": -2,\n  \"forçado\": -1,\n  \"briga\": -1,\n  \"falhou\": -2,\n  \"negativo\": -2,\n  \"favoritos\": 2,\n  \"saudável\": 2,\n  \"ativos\": 2,\n  \"lesão\": -2,\n  \"protegido\": 1,\n  \"errado\": -2,\n  \"ganhou\": 3,\n  \"importa\": 1,\n  \"*ajuda\": 2,\n  \"subida\": 1,\n  \"famoso\": 2,\n  \"violência\": -3,\n  \"exclusivo\": 2,\n  \"suporta\": 2,\n  \"maravilhoso\": 4,\n  \"conforme\": 1,\n  \"força\": 2,\n  \"medo\": -2,\n  \"ações\": 1,\n  \"comorbidade\": -2,\n  \"melhorado\": 2,\n  \"ocultar\": -1,\n  \"luxo\": 2,\n  \"incrível\": 3,\n  \"sentimento\": 1,\n  \"importância\": 2,\n  \"vazío\": -1,\n  \"estresse\": -1,\n  \"mal\": -3,\n  \"mais grande\": 3,\n  \"preocupado\": -2,\n  \"competitivo\": 2,\n  \"pinto\": -4,\n  \"pau\": -4,\n  \"pica\": -4,\n  \"pênis\": -4,\n  \"esquecer\": -1,\n  \"matar\": -3,\n  \"conflito\": -2,\n  \"dificuldade\": -2,\n  \"expandir\": 1,\n  \"apoiar\": 1,\n  \"ajudar\": 2,\n  \"afetado\": -1,\n  \"*favorito\": 2,\n  \"armadilhas\": -3,\n  \"enfermidades\": -1,\n  \"doações\": 1,\n  \"assassinado\": -3,\n  \"atrações\": 2,\n  \"maluco\": -2,\n  \"comédia\": 1,\n  \"compromisso\": 2,\n  \"pistola\": -1,\n  \"puro\": 1,\n  \"inferno\": -4,\n  \"confiança\": 2,\n  \"esquentando\": 1,\n  \"desconectado\": -1,\n  \"chupar\": -3,\n  \"alcanzado\": 1,\n  \"supremo\": 4,\n  \"reconhecimento\": 2,\n  \"encorajar\": 2,\n  \"cancelar\": -1,\n  \"limites\": -1,\n  \"atraso\": -1,\n  \"novela\": 2,\n  \"incapacidade\": -2,\n  \"ganhador\": 4,\n  \"comprometido\": 1,\n  \"acessível\": 1,\n  \"excepcional\": 5,\n  \"kkk\": 2,\n  \"castigado\": -2,\n  \"castigada\": -2,\n  \"castigo\": -2,\n  \"carregado\": -3,\n  \"ódio\": -3,\n  \"ilegal\": -3,\n  \"consentimento\": 2,\n  \"adequado\": 2,\n  \"querido\": 2,\n  \"confiável\": 2,\n  \"duvida\": -1,\n  \"incapaz\": -2,\n  \"ataques\": -1,\n  \"brigar\": -2,\n  \"romance\": 2,\n  \"cielo\": 2,\n  \"focado\": 2,\n  \"negociar\": 2,\n  \"bloquear\": -1,\n  \"cortar\": -1,\n  \"uau\": 4,\n  \"amado\": 3,\n  \"*favoritos\": 2,\n  \"superior\": 2,\n  \"guardado\": 2,\n  \"premiado\": 3,\n  \"conforto\": 2,\n  \"efetivamente\": 2,\n  \"crisis\": -3,\n  \"crise\": -3,\n  \"luminoso\": 1,\n  \"pobreza\": -1,\n  \"riscos\": -2,\n  \"sonhos\": 1,\n  \"acidente\": -2,\n  \"folga\": -1,\n  \"ameaça\": -2,\n  \"estranho\": -1,\n  \"sustentável\": 2,\n  \"innovação\": 1,\n  \"cinza\": -1,\n  \"negrinha\": 2,\n  \"estável\": 2,\n  \"titulado\": 1,\n  \"severo\": -2,\n  \"humor\": 2,\n  \"sucessivamente\": 3,\n  \"capacidades\": 1,\n  \"pecado\": -2,\n  \"lindo\": 2,\n  \"melhorando\": 2,\n  \"anseio\": 1,\n  \"innovador\": 2,\n  \"graça\": 1,\n  \"trastornos\": -2,\n  \"assentamento\": 1,\n  \"fantástico\": 4,\n  \"cometeu\": 1,\n  \"orgulhoso\": 2,\n  \"desastre\": -2,\n  \"lesões\": -2,\n  \"alarme\": -2,\n  \"roubar\": -2,\n  \"pior\": -3,\n  \"perigroso\": -2,\n  \"emocionante\": 3,\n  \"confiabilidade\": 2,\n  \"prazer\": 3,\n  \"honra\": 2,\n  \"sorte\": 3,\n  \"comico\": 1,\n  \"com cuidado\": 2,\n  \"cego\": -1,\n  \"furioso\": -3,\n  \"asqueroso\": -2,\n  \"capaz\": 1,\n  \"vitória\": 3,\n  \"alegria\": 3,\n  \"deficiências\": -2,\n  \"doente\": -2,\n  \"lol\": 3,\n  \"sujo\": -2,\n  \"dar\": 2,\n  \"quebra\": -3,\n  \"vivo\": 1,\n  \"promessa\": 1,\n  \"tonto\": -2,\n  \"prisão\": -2,\n  \"popularidade\": 3,\n  \"piorar\": -3,\n  \"vitimas\": -3,\n  \"escape\": -1,\n  \"substancial\": 1,\n  \"fraude\": -4,\n  \"choque\": -2,\n  \"procurado\": 2,\n  \"infecção\": -2,\n  \"extender\": 1,\n  \"assassinato\": -2,\n  \"adequar\": 1,\n  \"resgate\": 2,\n  \"perdas\": -3,\n  \"combate\": -1,\n  \"detido\": -1,\n  \"lançado\": 1,\n  \"contaminação\": -2,\n  \"eficaz\": 2,\n  \"beijo\": 2,\n  \"piadas\": 2,\n  \"aceitável\": 1,\n  \"satisfeito\": 2,\n  \"contento\": 3,\n  \"ganha\": 4,\n  \"de confiança\": 2,\n  \"fantasma\": -1,\n  \"violar\": -2,\n  \"campeão\": 2,\n  \"oração\": -2,\n  \"ignorar\": -1,\n  \"excelência\": 3,\n  \"riqueza\": 3,\n  \"inteligente\": 2,\n  \"burro\": -2,\n  \"inimigo\": -2,\n  \"merda\": -4,\n  \"restringido\": -2,\n  \"sortudo\": 3,\n  \"penalidade\": -2,\n  \"facilidade\": 2,\n  \"aventuras\": 2,\n  \"apreciar\": 2,\n  \"precioso\": 3,\n  \"sorriso\": 2,\n  \"exposto\": -1,\n  \"queixa\": -2,\n  \"impulso\": 1,\n  \"danos\": -3,\n  \"resolvo\": 1,\n  \"queixas\": -2,\n  \"paixão\": 1,\n  \"fraco\": -2,\n  \"integridade\": 2,\n  \"preocupação\": -3,\n  \"alegre\": 3,\n  \"perigo\": -2,\n  \"vitamina\": 1,\n  \"paraíso\": 3,\n  \"gloria\": 2,\n  \"triste\": -2,\n  \"promovendo\": 1,\n  \"escorregar\": -1,\n  \"cortes\": -1,\n  \"funeral\": -1,\n  \"desfrutado\": 2,\n  \"talento\": 2,\n  \"sabedoría\": 1,\n  \"disparar\": -1,\n  \"encorajado\": 2,\n  \"perder\": -3,\n  \"nobre\": 2,\n  \"vantagens\": 2,\n  \"amores\": 3,\n  \"solto\": -3,\n  \"doença\": -2,\n  \"destrução\": -3,\n  \"desordem\": -2,\n  \"herói\": 2,\n  \"caindo\": -1,\n  \"deixado\": -1,\n  \"tortura\": -4,\n  \"matando\": -3,\n  \"refinar\": 1,\n  \"falha\": -2,\n  \"mijando\": -3,\n  \"atração\": 2,\n  \"convidar\": 1,\n  \"terror\": -3,\n  \"proibir\": -2,\n  \"ímpar\": -2,\n  \"favor\": 2,\n  \"atrativo\": 2,\n  \"vitima\": -3,\n  \"exige\": -1,\n  \"cuidadoso\": 2,\n  \"tops\": 2,\n  \"chorar\": -1,\n  \"simpático\": 3,\n  \"raro\": -2,\n  \"inspirado\": 2,\n  \"limpador\": 2,\n  \"gostado\": 2,\n  \"adotar\": 1,\n  \"negado\": -2,\n  \"fodido\": -4,\n  \"doação\": 2,\n  \"mortes\": -2,\n  \"disputa\": -2,\n  \"cansado\": -2,\n  \"honesto\": 2,\n  \"arriscado\": -3,\n  \"restaurar\": 1,\n  \"exigir\": -2,\n  \"maldito\": -2,\n  \"suicídio\": -2,\n  \"fama\": 1,\n  \"cortesia\": 2,\n  \"critica\": -2,\n  \"assustado\": -2,\n  \"encano\": -2,\n  \"fortuna\": 2,\n  \"exploração\": -1,\n  \"gripe\": -2,\n  \"perfeitamente\": 3,\n  \"escravo\": -3,\n  \"ação judicial\": -1,\n  \"héroes\": 2,\n  \"terrorista\": -2,\n  \"ético\": 2,\n  \"luta\": -2,\n  \"sofrimento\": -2,\n  \"culpável\": -3,\n  \"encanto\": 3,\n  \"violento\": -3,\n  \"bêbado\": -2,\n  \"crimes\": -3,\n  \"resolvido\": 2,\n  \"quebrou\": -1,\n  \"resolver\": 2,\n  \"garantindo\": 1,\n  \"ressaltar\": 2,\n  \"brilhante\": 4,\n  \"desejos\": 1,\n  \"amar\": 2,\n  \"elegante\": 2,\n  \"ganancias\": 2,\n  \"criticos\": -2,\n  \"fake\": -3,\n  \"bomba\": -1,\n  \"perjuizo\": -2,\n  \"assalto\": -2,\n  \"significado\": 1,\n  \"resolvendo\": 1,\n  \"participar\": 1,\n  \"enganar\": -3,\n  \"suspeitoso\": -1,\n  \"obrigaóorio\": -1,\n  \"celebração\": 3,\n  \"ameaças\": -2,\n  \"chegar\": 1,\n  \"danado\": -3,\n  \"mijar\": -4,\n  \"rir\": 1,\n  \"destruir\": -3,\n  \"ofensivo\": -2,\n  \"gosta\": 2,\n  \"carga\": -2,\n  \"excitado\": 3,\n  \"supera\": 2,\n  \"equilibrado\": 1,\n  \"demorado\": -1,\n  \"excluir\": -1,\n  \"ansiedade\": -2,\n  \"indisposto\": -1,\n  \"esperanças\": 2,\n  \"vadia\": -5,\n  \"vencedor\": 3,\n  \"isolado\": -1,\n  \"descontado\": -1,\n  \"desesperado\": -3,\n  \"demonstração\": -1,\n  \"saudações\": 1,\n  \"desemprego\": -2,\n  \"lágrimas\": -2,\n  \"enjoado\": -3,\n  \"amizade\": 2,\n  \"sol\": 2,\n  \"arrasto\": -1,\n  \"preso\": -2,\n  \"ganhado\": 2,\n  \"morrendo\": -3,\n  \"grudado\": -2,\n  \"pare\": -1,\n  \"sofisticado\": 2,\n  \"imposto\": -1,\n  \"mais forte\": 2,\n  \"tóxico\": -3,\n  \"trevas\": -1,\n  \"nozes\": -3,\n  \"piada\": 2,\n  \"recusado\": -1,\n  \"destruído\": -3,\n  \"vulnerabilidade\": -2,\n  \"celebrar\": 3,\n  \"impresionante\": 3,\n  \"acidentes\": -2,\n  \"terno\": 2,\n  \"violações\": -2,\n  \"elogio\": 3,\n  \"esperando\": 2,\n  \"parcialidade\": -1,\n  \"admitido\": -1,\n  \"admitir\": 1,\n  \"sofrer\": -2,\n  \"caos\": -2,\n  \"confundido\": -2,\n  \"acusado\": -2,\n  \"corrupção\": -3,\n  \"terrible\": -3,\n  \"febre\": -2,\n  \"orar\": 1,\n  \"recomenda\": 2,\n  \"tesouro\": 2,\n  \"limitação\": -1,\n  \"atingido\": -1,\n  \"advertências\": -3,\n  \"inspiração\": 2,\n  \"curioso\": 1,\n  \"esquisito\": -2,\n  \"lesionado\": -2,\n  \"colapso\": -2,\n  \"improvável\": -1,\n  \"conflitos\": -2,\n  \"homenagem\": 2,\n  \"imune\": 1,\n  \"infectado\": -2,\n  \"barreira\": -2,\n  \"puta\": -5,\n  \"infecções\": -2,\n  \"ofensa\": -2,\n  \"protesto\": -2,\n  \"intenso\": 1,\n  \"partidários\": 1,\n  \"sujeira\": -2,\n  \"retirada\": -3,\n  \"culpa\": -2,\n  \"sofrido\": -2,\n  \"falhos\": -2,\n  \"devoto\": 3,\n  \"despedido\": -2,\n  \"desacordo\": -2,\n  \"raiva\": -2,\n  \"posibilidades\": 2,\n  \"felicidade\": 3,\n  \"substancialmente\": 1,\n  \"bizarro\": -2,\n  \"isento\": -1,\n  \"realizado\": 2,\n  \"nervoso\": -2,\n  \"recusar\": -2,\n  \"extende\": 1,\n  \"magnífico\": 5,\n  \"acalmar\": 2,\n  \"campeões\": 2,\n  \"inapropiado\": -2,\n  \"apreciado\": 2,\n  \"harmonia\": 2,\n  \"distinto\": 2,\n  \"recompensa\": 2,\n  \"medalha\": 3,\n  \"fede\": -3,\n  \"vulnerável\": -2,\n  \"unificado\": 1,\n  \"ignorado\": -2,\n  \"caído\": -2,\n  \"apoiado\": 1,\n  \"tolerância\": 2,\n  \"atrair\": 1,\n  \"ter êxito\": 3,\n  \"opa\": -2,\n  \"habilidades\": 2,\n  \"armadilha\": -1,\n  \"solitário\": -2,\n  \"suspenso\": -1,\n  \"segura\": 2,\n  \"delicioso\": 3,\n  \"com segurança\": 1,\n  \"durável\": 2,\n  \"desagradável\": -3,\n  \"tumor\": -2,\n  \"feio\": -3,\n  \"invasão\": -1,\n  \"recompensas\": 2,\n  \"fortalecer\": 2,\n  \"agressivo\": -2,\n  \"roubado\": -2,\n  \"perturbado\": -2,\n  \"motivação\": 1,\n  \"aceita\": 1,\n  \"aplausos\": 2,\n  \"apreciação\": 2,\n  \"restrição\": -2,\n  \"cuidando\": 2,\n  \"usar\": -1,\n  \"negar\": -2,\n  \"defeito\": -3,\n  \"pontos fortes\": 2,\n  \"claridade\": 2,\n  \"encorajando\": 2,\n  \"terroristas\": -2,\n  \"lixo\": -3,\n  \"prometido\": 1,\n  \"robusto\": 2,\n  \"ameaçado\": -2,\n  \"fabuloso\": 4,\n  \"perspectiva\": 1,\n  \"tenso\": -1,\n  \"excluído\": -2,\n  \"perspectivas\": 1,\n  \"notável\": 2,\n  \"previnindo\": -1,\n  \"bagunça\": -2,\n  \"aceitando\": 1,\n  \"capotar\": -1,\n  \"felicidades\": 2,\n  \"incompleto\": -1,\n  \"túmulo\": -2,\n  \"presos\": -2,\n  \"digno\": 2,\n  \"lobby\": -2,\n  \"derrota\": -2,\n  \"sustentabilidade\": 1,\n  \"ridículo\": -1,\n  \"misericórdia\": 2,\n  \"legalmente\": 1,\n  \"vergonha\": -2,\n  \"fatal\": -3,\n  \"válido\": 2,\n  \"descanso\": -1,\n  \"reprovado\": -2,\n  \"solucionado\": 1,\n  \"urgente\": -1,\n  \"parabéns\": 2,\n  \"vingança\": -2,\n  \"inimigos\": -2,\n  \"desfrutando\": 2,\n  \"promessas\": 1,\n  \"inquieto\": -3,\n  \"porcaria\": -1,\n  \"tedioso\": -3,\n  \"alcançar\": 2,\n  \"déficit\": -2,\n  \"deficiente\": -5,\n  \"rebelde\": -2,\n  \"malvado\": -2,\n  \"impresionado\": 3,\n  \"falhas\": -2,\n  \"conspiração\": -3,\n  \"proeminente\": 2,\n  \"favores\": 2,\n  \"pânico\": -3,\n  \"desculpa\": -1,\n  \"reclamação\": -2,\n  \"descartar\": -1,\n  \"abandonado\": -2,\n  \"passivo\": -1,\n  \"coragem\": 2,\n  \"entretido\": 2,\n  \"suspenção\": -1,\n  \"pacífico\": 2,\n  \"confia\": 1,\n  \"roubo\": -2,\n  \"refinado\": 1,\n  \"chique\": 1,\n  \"mendigo\": -2,\n  \"horrivel\": -3,\n  \"bloqueado\": -1,\n  \"golpes\": -1,\n  \"negação\": -2,\n  \"gema\": 3,\n  \"borrado\": -1,\n  \"apagado\": 1,\n  \"cagado\": -2,\n  \"fatalidade\": -2,\n  \"mito\": -1,\n  \"infeccioso\": -2,\n  \"bloqueio\": -1,\n  \"restaurado\": 1,\n  \"caridoso\": 2,\n  \"convencido\": 1,\n  \"suspeit*\": -1,\n  \"competente\": 2,\n  \"grato\": 3,\n  \"rindo\": 1,\n  \"desejável\": 2,\n  \"proibido\": -2,\n  \"rápido\": 2,\n  \"milagre\": 4,\n  \"preguiçoso\": -1,\n  \"qualidades\": 2,\n  \"maravilha\": 3,\n  \"bla\": -2,\n  \"mortal\": -3,\n  \"buceta\": -5,\n  \"orações\": -2,\n  \"exclusão\": -1,\n  \"entusiasta\": 1,\n  \"generoso\": 2,\n  \"putaria\": -3,\n  \"fascinante\": 3,\n  \"salvação\": 2,\n  \"brutal\": -3,\n  \"adaptado\": 2,\n  \"orgulho\": 2,\n  \"sobrevivente\": 2,\n  \"deteriorado\": -2,\n  \"jóia\": 1,\n  \"tragédia\": -2,\n  \"doloroso\": -2,\n  \"funky\": 2,\n  \"cancelado\": -1,\n  \"assustador\": -2,\n  \"sangrento\": -3,\n  \"encantador\": 3,\n  \"nervo*\": -2,\n  \"respeitado\": 2,\n  \"transtornado\": -2,\n  \"enlouquecido\": -2,\n  \"restri*\": -2,\n  \"endossado\": 2,\n  \"polu*\": -2,\n  \"*benç*\": 2,\n  \"triunfo\": 4,\n  \"vitori*\": 4,\n  \"polido\": 2,\n  \"controverso\": -2,\n  \"trauma\": -3,\n  \"exigente\": -1,\n  \"censur*\": -2,\n  \"motiv*\": 2,\n  \"lerdo\": -3,\n  \"lento\": -3,\n  \"lenta\": -3,\n  \"buraco\": -1,\n  \"volta\": 2,\n  \"promovido\": 1,\n  \"fome\": -2,\n  \"aprov*\": 2,\n  \"disputas\": -2,\n  \"esplêndido\": 3,\n  \"pront*\": 1,\n  \"prejudicial\": -2,\n  \"avis*\": -2,\n  \"gravemente\": -3,\n  \"decepcionado\": -2,\n  \"estreia\": 3,\n  \"repulsivo\": -3,\n  \"excita*\": 3,\n  \"valente\": 2,\n  \"atroz\": -3,\n  \"impor\": -1,\n  \"assédio\": -3,\n  \"raposa\": -4,\n  \"*favor\": 2,\n  \"controversia\": -2,\n  \"simpatia\": 2,\n  \"bela\": 3,\n  \"promove\": 1,\n  \"condenado\": -2,\n  \"ameaçador\": -2,\n  \"encoraja\": 2,\n  \"doado\": 2,\n  \"cru\": -1,\n  \"*tediante\": -2,\n  \"molestar\": -2,\n  \"atacado\": -1,\n  \"mais seguro\": 2,\n  \"fortalecimento\": 2,\n  \"desear\": 1,\n  \"espantado\": -2,\n  \"infração\": -2,\n  \"veneno\": -2\n}\n"
  },
  {
    "path": "lib/natural/sentiment/Portuguese/negations_pt.json",
    "content": "{\n  \"words\": [\n    \"não\", \"nunca\",\n    \"jamais\", \"nem\"\n  ]\n}\n"
  },
  {
    "path": "lib/natural/sentiment/SentimentAnalyzer.js",
    "content": "/*\n  Copyright (c) 2019, Domingo Martín Mancera, Hugo W.L. ter Doest (based on https://github.com/dmarman/lorca)\n\n  Permission is hereby granted, free of charge, to any person obtaining a copy\n  of this software and associated documentation files (the \"Software\"), to deal\n  in the Software without restriction, including without limitation the rights\n  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n  copies of the Software, and to permit persons to whom the Software is\n  furnished to do so, subject to the following conditions:\n\n  The above copyright notice and this permission notice shall be included in\n  all copies or substantial portions of the Software.\n\n  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n  THE SOFTWARE.\n*/\n\n'use strict'\n\nconst DEBUG = false\n\n// Afinn\nconst englishAfinnVoca = require('afinn-165').afinn165\nconst spanishAfinnVoca = require('./Spanish/afinnShortSortedSpanish.json')\nconst portugueseAfinnVoca = require('./Portuguese/afinnShortSortedPortuguese.json')\n\n// Afinn Financial Market News\n// const englishAfinnFinancialMarketNewsVoca = require('afinn-165-financialmarketnews')\n// Use ESM syntax\nconst englishAfinnFinancialMarketNewsVoca = require('afinn-165-financialmarketnews').afinnFinancialMarketNews\n\n// Senticon\nconst spanishSenticonVoca = require('./Spanish/senticon_es.json')\nconst englishSenticonVoca = require('./English/senticon_en.json')\nconst galicianSenticonVoca = require('./Galician/senticon_gl.json')\nconst catalanSenticonVoca = require('./Catalan/senticon_ca.json')\nconst basqueSenticonVoca = require('./Basque/senticon_eu.json')\n\n// Pattern\nconst dutchPatternVoca = require('./Dutch/pattern-sentiment-nl.json')\nconst italianPatternVoca = require('./Italian/pattern-sentiment-it.json')\nconst englishPatternVoca = require('./English/pattern-sentiment-en.json')\nconst frenchPatternVoca = require('./French/pattern-sentiment-fr.json')\nconst germanPatternVoca = require('./German/pattern-sentiment-de.json')\n\n// Negations\nconst englishNegations = require('./English/negations_en.json').words\nconst spanishNegations = require('./Spanish/negations_es.json').words\nconst dutchNegations = require('./Dutch/negations_du.json').words\nconst portugueseNegations = require('./Portuguese/negations_pt.json').words\nconst germanNegations = require('./German/negations_de.json').words\n\n// Mapping from type of vocabulary to language to vocabulary\nconst languageFiles = {\n  afinn: {\n    English: [englishAfinnVoca, englishNegations],\n    Spanish: [spanishAfinnVoca, spanishNegations],\n    Portuguese: [portugueseAfinnVoca, portugueseNegations]\n  },\n  afinnFinancialMarketNews: {\n    English: [englishAfinnFinancialMarketNewsVoca, englishNegations]\n  },\n  senticon: {\n    Spanish: [spanishSenticonVoca, spanishNegations],\n    English: [englishSenticonVoca, englishNegations],\n    Galician: [galicianSenticonVoca, null],\n    Catalan: [catalanSenticonVoca, null],\n    Basque: [basqueSenticonVoca, null]\n  },\n  pattern: {\n    Dutch: [dutchPatternVoca, dutchNegations],\n    Italian: [italianPatternVoca, null],\n    English: [englishPatternVoca, englishNegations],\n    French: [frenchPatternVoca, null],\n    German: [germanPatternVoca, germanNegations]\n  }\n}\n\nclass SentimentAnalyzer {\n  constructor (language, stemmer, type) {\n    this.language = language\n    this.stemmer = stemmer\n\n    // this.vocabulary must be a copy of the languageFiles object\n    // or in subsequent execution the polarity will be undefined\n    // shallow copy - requires ES6\n    if (languageFiles[type]) {\n      if (languageFiles[type][language]) {\n        if (languageFiles[type][language][0]) {\n          this.vocabulary = Object.create(languageFiles[type][language][0])\n        }\n      } else {\n        throw new Error('Type ' + type + ' for Language ' + language + ' not supported')\n      }\n    } else {\n      throw new Error('Type Language ' + type + ' not supported')\n    }\n    this.vocabulary = Object.assign({}, languageFiles[type][language][0])\n    Object.setPrototypeOf(this.vocabulary, null)\n    if (type === 'senticon') {\n      Object.keys(this.vocabulary).forEach(word => {\n        this.vocabulary[word] = this.vocabulary[word].pol\n      })\n    } else {\n      if (type === 'pattern') {\n        Object.keys(this.vocabulary).forEach(word => {\n          this.vocabulary[word] = this.vocabulary[word].polarity\n        })\n      }\n    }\n\n    this.negations = []\n    if (languageFiles[type][language][1] != null) {\n      this.negations = languageFiles[type][language][1]\n    }\n\n    if (stemmer) {\n      const vocaStemmed = Object.create(null)\n      for (const token in this.vocabulary) {\n        vocaStemmed[stemmer.stem(token)] = this.vocabulary[token]\n      }\n      this.vocabulary = vocaStemmed\n    }\n  }\n\n  // words is an array of words (strings)\n  getSentiment (words) {\n    let score = 0\n    let negator = 1\n    let nrHits = 0\n\n    words.forEach((token) => {\n      const lowerCased = token.toLowerCase()\n      if (this.negations.indexOf(lowerCased) > -1) {\n        negator = -1\n        DEBUG && nrHits++\n      } else {\n        // First try without stemming\n        if (this.vocabulary[lowerCased] !== undefined) {\n          score += negator * this.vocabulary[lowerCased]\n          DEBUG && nrHits++\n        } else {\n          if (this.stemmer) {\n            const stemmedWord = this.stemmer.stem(lowerCased)\n            if (this.vocabulary[stemmedWord] !== undefined) {\n              score += negator * this.vocabulary[stemmedWord]\n              DEBUG && nrHits++\n            }\n          }\n        }\n      }\n    })\n\n    score = score / words.length\n    DEBUG && console.log('Number of hits: ' + nrHits)\n\n    return score\n  }\n}\n\nmodule.exports = SentimentAnalyzer\n"
  },
  {
    "path": "lib/natural/sentiment/Spanish/afinnShortSortedSpanish.json",
    "content": "{\n\"😂\": 1,\n\"❤\": 3,\n\"♥\": 3,\n\"😍\": 3,\n\"😭\": -1,\n\"😘\": 3,\n\"😊\": 3,\n\"👌\": 2,\n\"💕\": 3,\n\"👏\": 2,\n\"😁\": 2,\n\"☺\": 3,\n\"♡\": 3,\n\"👍\": 2,\n\"😩\": -2,\n\"🙏\": 2,\n\"✌\": 2,\n\"😏\": 1,\n\"😉\": 2,\n\"🙌\": 2,\n\"🙈\": 2,\n\"💪\": 2,\n\"😄\": 2,\n\"😒\": -2,\n\"💃\": 3,\n\"💖\": 3,\n\"😃\": 2,\n\"😔\": -1,\n\"🎉\": 3,\n\"😜\": 2,\n\"🌸\": 3,\n\"💜\": 3,\n\"💙\": 3,\n\"✨\": 1,\n\"💗\": 3,\n\"★\": 1,\n\"█\": -1,\n\"☀\": 2,\n\"😡\": -1,\n\"😎\": 2,\n\"💋\": 3,\n\"😋\": 3,\n\"🙊\": 2,\n\"😴\": -1,\n\"🎶\": 2,\n\"💞\": 3,\n\"😌\": 2,\n\"🔫\": -1,\n\"💛\": 3,\n\"💁\": 1,\n\"💚\": 3,\n\"♫\": 1,\n\"😞\": -1,\n\"😆\": 2,\n\"😝\": 2,\n\"😪\": -1,\n\"😫\": -1,\n\"👊\": 1,\n\"💀\": -2,\n\"😀\": 2,\n\"😚\": 3,\n\"😻\": 3,\n\"💘\": 3,\n\"☕\": 1,\n\"👋\": 2,\n\"🎊\": 3,\n\"🍕\": 2,\n\"❄\": 2,\n\"😕\": -2,\n\"💔\": -1,\n\"😤\": -2,\n\"😈\": 1,\n\"✈\": 2,\n\"🔝\": 2,\n\"😰\": -1,\n\"⚽\": 3,\n\"😑\": -2,\n\"👑\": 3,\n\"👉\": 1,\n\"🍃\": 1,\n\"🎁\": 3,\n\"😠\": -2,\n\"🐧\": 2,\n\"☆\": 2,\n\"🍀\": 1,\n\"🎈\": 3,\n\"🎅\": 1,\n\"😓\": -1,\n\"😣\": -2,\n\"😐\": -2,\n\"✊\": 2,\n\"😨\": -1,\n\"😖\": -1,\n\"💤\": 1,\n\"💓\": 3,\n\"👎\": -1,\n\"💦\": 2,\n\"✔\": 1,\n\"😷\": -1,\n\"🙋\": 2,\n\"🎄\": 2,\n\"💩\": -1,\n\"🎵\": 2,\n\"😛\": 3,\n\"👯\": 2,\n\"💎\": 2,\n\"🌿\": 1,\n\"🎂\": 3,\n\"🌟\": 1,\n\"🔮\": 1,\n\"👫\": 1,\n\"🏆\": 3,\n\"✖\": 1,\n\"☝\": 1,\n\"😙\": 3,\n\"⛄\": 2,\n\"👅\": 2,\n\"♪\": 2,\n\"🍂\": 2,\n\"💏\": 1,\n\"🌴\": 2,\n\"👈\": 2,\n\"🌹\": 3,\n\"🙆\": 2,\n\"👻\": 1,\n\"💰\": 1,\n\"🍻\": 2,\n\"🙅\": -2,\n\"🌞\": 2,\n\"🍁\": 2,\n\"⭐\": 2,\n\"▪\": 1,\n\"🎀\": 3,\n\"🐷\": 1,\n\"🙉\": 1,\n\"🌺\": 2,\n\"💅\": 1,\n\"🐶\": 2,\n\"🌚\": 2,\n\"👽\": 1,\n\"🎤\": 2,\n\"👭\": 2,\n\"🎧\": 2,\n\"👆\": 1,\n\"🍸\": 2,\n\"🍷\": 2,\n\"®\": 1,\n\"🍉\": 3,\n\"😇\": 3,\n\"🏃\": 2,\n\"😿\": -2,\n\"│\": 1,\n\"🍺\": 2,\n\"▶\": 1,\n\"😲\": -1,\n\"🎸\": 2,\n\"🍹\": 3,\n\"💫\": 2,\n\"📚\": 1,\n\"😶\": -1,\n\"🌷\": 2,\n\"💝\": 3,\n\"💨\": 1,\n\"🏈\": 2,\n\"💍\": 2,\n\"☔\": 1,\n\"👸\": 3,\n\"🇪\": 3,\n\"░\": -1,\n\"🍩\": 1,\n\"👾\": 1,\n\"☁\": 1,\n\"🌻\": 2,\n\"↿\": 3,\n\"🐯\": 2,\n\"👼\": 1,\n\"🍔\": 1,\n\"😸\": 2,\n\"👶\": 2,\n\"↾\": 3,\n\"💐\": 3,\n\"🌊\": 2,\n\"🍦\": 2,\n\"🍓\": 3,\n\"👇\": 1,\n\"💆\": 1,\n\"🍴\": 2,\n\"😧\": -1,\n\"🇸\": 2,\n\"😮\": 1,\n\"🚫\": -3,\n\"😽\": 2,\n\"🌈\": 2,\n\"🙀\": 1,\n\"⚠\": -1,\n\"🎮\": 2,\n\"╯\": -1,\n\"🍆\": 2,\n\"🍰\": 2,\n\"✓\": 1,\n\"👐\": -1,\n\"🍟\": 1,\n\"🍌\": 2,\n\"💑\": 3,\n\"👬\": -1,\n\"🐣\": 2,\n\"🎃\": 3,\n\"▬\": 2,\n\"￼\": -3,\n\"🐾\": 3,\n\"🎓\": 2,\n\"🏊\": 2,\n\"📷\": 2,\n\"👄\": 2,\n\"🌼\": 4,\n\"🚶\": -1,\n\"🐱\": 2,\n\"🐸\": -1,\n\"🇺\": 2,\n\"👿\": -3,\n\"🚬\": 2,\n\"✿\": 1,\n\"🐒\": 2,\n\"🌍\": 3,\n\"┊\": 5,\n\"🐥\": 3,\n\"🐼\": 1,\n\"🎥\": 1,\n\"💄\": 2,\n\"⛔\": 2,\n\"🏀\": 1,\n\"💉\": 1,\n\"💟\": 3,\n\"🚗\": 1,\n\"📝\": 1,\n\"♦\": 2,\n\"💭\": 1,\n\"🌙\": 3,\n\"🐟\": 3,\n\"👣\": 1,\n\"✂\": -3,\n\"🗿\": 2,\n\"👪\": -1,\n\"🍭\": 1,\n\"🌃\": 2,\n\"❌\": 1,\n\"🐰\": 3,\n\"💊\": 2,\n\"🚨\": 3,\n\"😦\": -2,\n\"🍪\": 1,\n\"🍣\": -2,\n\"✧\": 1,\n\"🎆\": 3,\n\"🎎\": 4,\n\"🇩\": 3,\n\"✅\": 2,\n\"📱\": 1,\n\"🙍\": -2,\n\"🍑\": 1,\n\"🎼\": 1,\n\"🔊\": 2,\n\"🌌\": 2,\n\"🍎\": 1,\n\"🐻\": 2,\n\"╰\": -1,\n\"💇\": 1,\n\"♬\": 1,\n\"🔴\": 2,\n\"🍱\": -2,\n\"🍊\": 2,\n\"🍒\": 1,\n\"🐭\": 3,\n\"👟\": 2,\n\"🌎\": 1,\n\"🍍\": 2,\n\"🐮\": 3,\n\"📲\": 1,\n\"☼\": 1,\n\"🌅\": 1,\n\"🇷\": 3,\n\"👠\": 1,\n\"🌽\": 2,\n\"💧\": -1,\n\"🍬\": 1,\n\"😺\": 2,\n\"🚀\": 2,\n\"¦\": 3,\n\"💢\": 1,\n\"🎬\": 1,\n\"🍧\": 1,\n\"🍜\": 2,\n\"🐏\": 3,\n\"🏄\": 2,\n\"➤\": 1,\n\"⬆\": 1,\n\"🍋\": 1,\n\"🆗\": 2,\n\"⚪\": 2,\n\"📺\": 2,\n\"🍅\": 1,\n\"⛅\": 2,\n\"🐢\": 1,\n\"👙\": 2,\n\"🏡\": 2,\n\"🌾\": 2,\n\"◉\": 1,\n\"✏\": 1,\n\"🐬\": 2,\n\"🇹\": 3,\n\"♣\": 1,\n\"🐝\": 1,\n\"🌝\": 1,\n\"🇮\": 3,\n\"🔋\": -3,\n\"🐍\": 1,\n\"♔\": 2,\n\"🔵\": 1,\n\"😾\": -2,\n\"🌕\": 3,\n\"🐨\": 2,\n\"🔐\": 1,\n\"💿\": 3,\n\"🌳\": 2,\n\"👰\": 2,\n\"❀\": 2,\n\"⚓\": 3,\n\"🚴\": 3,\n\"▀\": -1,\n\"👗\": 1,\n\"➕\": 2,\n\"💬\": 2,\n\"▒\": -1,\n\"🔜\": 1,\n\"🍨\": 1,\n\"💲\": 1,\n\"🍙\": 1,\n\"🍥\": -4,\n\"▸\": 1,\n\"♛\": 1,\n\"😼\": 1,\n\"🐙\": 2,\n\"👨\": 2,\n\"🍚\": 2,\n\"♨\": 4,\n\"🎹\": 1,\n\"♕\": 2,\n\"▃\": 5,\n\"🇬\": 1,\n\"🇧\": 1,\n\"☠\": -1,\n\"🐠\": 2,\n\"🚹\": 3,\n\"💵\": 2,\n\"✰\": 4,\n\"╠\": 1,\n\"👛\": 2,\n\"🌱\": 3,\n\"💻\": 1,\n\"🌏\": 1,\n\"▄\": -1,\n\"👓\": 1,\n\"◄\": 1,\n\"⚾\": -1,\n\"🌲\": 2,\n\"👴\": 1,\n\"🏠\": 2,\n\"🍇\": 1,\n\"🍘\": 2,\n\"🐇\": 1,\n\"🔞\": -1,\n\"👵\": 2,\n\"◀\": 1,\n\"🔙\": 1,\n\"🌵\": 1,\n\"🍮\": -1,\n\"🎇\": 3,\n\"🐎\": 2,\n\"➔\": -1,\n\"🐤\": 2,\n\"╩\": 1,\n\"🌑\": 2,\n\"🚲\": 2,\n\"🐑\": -1,\n\"🏁\": 2,\n\"🎾\": 3,\n\"╚\": 1,\n\"🈹\": 1,\n\"👮\": -2,\n\"☹\": -3,\n\"🐵\": 2,\n\"✪\": 1,\n\"◕\": 2,\n\"🗼\": 3,\n\"▐\": -1,\n\"♠\": 1,\n\"┳\": -2,\n\"👺\": -2,\n\"🐚\": 1,\n\"👂\": -1,\n\"🗽\": 1,\n\"🍵\": 2,\n\"🆒\": 2,\n\"🐺\": 1,\n\"⇨\": 2,\n\"🌓\": 3,\n\"🔒\": 1,\n\"╬\": -1,\n\"👳\": 3,\n\"🌂\": 1,\n\"🚌\": 1,\n\"♩\": 3,\n\"🍡\": -1,\n\"❥\": 1,\n\"🎡\": 1,\n\"💌\": 2,\n\"🐩\": 2,\n\"🌜\": 2,\n\"⌚\": 1,\n\"🚿\": 3,\n\"🔆\": 3,\n\"🌛\": 3,\n\"💂\": -1,\n\"🐔\": 1,\n\"🙎\": -1,\n\"🏩\": 2,\n\"🇫\": 2,\n\"🔨\": -1,\n\"📢\": 2,\n\"🐦\": 2,\n\"🐲\": -1,\n\"♻\": 2,\n\"🌘\": 3,\n\"🌔\": 3,\n\"👖\": 2,\n\"😗\": 3,\n\"🐄\": 1,\n\"◟\": -1,\n\"🍢\": -1,\n\"🎨\": 1,\n\"⬇\": 2,\n\"🚼\": 3,\n\"🇴\": 2,\n\"🌗\": 3,\n\"🌖\": 3,\n\"🔅\": 5,\n\"👜\": 1,\n\"🐌\": 3,\n\"💼\": 3,\n\"🐹\": 1,\n\"🌠\": 3,\n\"🐈\": 1,\n\"🌁\": 1,\n\"⚫\": 1,\n\"♧\": 2,\n\"🏰\": 1,\n\"🚵\": 2,\n\"🎢\": 2,\n\"🎷\": 3,\n\"🎐\": 1,\n\"┈\": -4,\n\"╗\": 2,\n\"🌇\": 3,\n\"⏰\": 2,\n\"🚂\": 1,\n\"◠\": 2,\n\"🎿\": 2,\n\"🆔\": 4,\n\"🌒\": 3,\n\"🐪\": 3,\n\"╔\": 1,\n\"╝\": 2,\n\"👔\": 2,\n\"🆓\": 1,\n\"🐋\": 1,\n\"▽\": 2,\n\"🐛\": 1,\n\"👕\": 2,\n\"💳\": 2,\n\"🏧\": 5,\n\"💡\": 3,\n\"⬅\": 2,\n\"🐫\": 2,\n\"🇱\": 2,\n\"📹\": 2,\n\"👞\": 2,\n\"👚\": 3,\n\"□\": -2,\n\"🚣\": 3,\n\"🏉\": 3,\n\"🗻\": 3,\n\"╦\": 2,\n\"⛺\": 3,\n\"🐕\": 1,\n\"🏂\": 2,\n\"👡\": 2,\n\"📻\": 2,\n\"✒\": 1,\n\"🌰\": 3,\n\"🏢\": 1,\n\"🎒\": 3,\n\"⌒\": 3,\n\"🏫\": -2,\n\"📴\": 4,\n\"🚢\": 1,\n\"🚚\": -1,\n\"🐉\": 1,\n\"❒\": 1,\n\"🔔\": 5,\n\"◢\": 4,\n\"🏥\": 1,\n\"🚖\": -1,\n\"▌\": -2,\n\"☛\": 2,\n\"💒\": 3,\n\"🚤\": 2,\n\"🐐\": 2,\n\"■\": -2,\n\"🔚\": 2,\n\"🎻\": 2,\n\"🔷\": 1,\n\"🎽\": 2,\n\"📅\": 1,\n\"🎺\": 3,\n\"🍈\": -3,\n\"✉\": 1,\n\"◤\": 5,\n\"○\": 3,\n\"🍼\": 3,\n\"🚛\": -2,\n\"📓\": 1,\n\"☉\": 1,\n\"💴\": -2,\n\"➰\": -1,\n\"🔌\": -1,\n\"📕\": 1,\n\"📣\": 2,\n\"🚓\": 1,\n\"🐗\": 3,\n\"⛳\": 4,\n\"┻\": -3,\n\"┛\": 3,\n\"┃\": 2,\n\"💺\": 1,\n\"🏇\": -1,\n\"☻\": 1,\n\"📞\": 2,\n\"Ⓐ\": -1,\n\"🌉\": 3,\n\"🚩\": -2,\n\"✎\": 3,\n\"📃\": 2,\n\"🏨\": 1,\n\"📌\": -3,\n\"♎\": -1,\n\"💷\": 2,\n\"🚄\": 3,\n\"▲\": 3,\n\"⛵\": 3,\n\"🔸\": 1,\n\"🚜\": 5,\n\"🐆\": 2,\n\"👒\": 1,\n\"❕\": 1,\n\"🔛\": 2,\n\"♢\": 2,\n\"🇲\": 2,\n\"❅\": 4,\n\"👝\": 2,\n\"✞\": 2,\n\"◡\": 1,\n\"🎋\": 3,\n\"👥\": 1,\n\"🐡\": 1,\n\"◆\": 4,\n\"🔭\": 2,\n\"🎪\": 1,\n\"🐜\": 3,\n\"♌\": 4,\n\"☐\": -5,\n\"👷\": 1,\n\"🔈\": 1,\n\"📄\": 5,\n\"🚐\": 4,\n\"🌋\": 3,\n\"📡\": 1,\n\"🚳\": 5,\n\"✘\": 4,\n\"🅰\": 1,\n\"🇼\": 2,\n\"┓\": 3,\n\"┣\": 3,\n\"Ⓛ\": 2,\n\"Ⓔ\": 2,\n\"👤\": 4,\n\"🚁\": 1,\n\"🎠\": 3,\n\"🐁\": -2,\n\"📗\": 1,\n\"┐\": -1,\n\"♂\": 1,\n\"📯\": -1,\n\"🔩\": 1,\n\"👢\": 4,\n\"◂\": 2,\n\"📰\": 1,\n\"📶\": 2,\n\"🌄\": 1,\n\"🗾\": 2,\n\"🔶\": 2,\n\"🏤\": 2,\n\"🎩\": 2,\n\"Ⓜ\": 1,\n\"🔧\": -4,\n\"🐅\": 1,\n\"♮\": 1,\n\"🅾\": -1,\n\"📦\": 1,\n\"🚊\": 1,\n\"🔲\": 3,\n\"△\": 1,\n\"📆\": 5,\n\"❛\": 2,\n\"📉\": 2,\n\"▵\": 2,\n\"🔎\": 3,\n\"☜\": 1,\n\"🇯\": 2,\n\"🇵\": 2,\n\"📘\": 1,\n\"ⓔ\": 3,\n\"🔑\": 1,\n\"⭕\": 2,\n\"🔘\": 1,\n\"🚭\": 5,\n\"🚉\": 3,\n\"🚪\": 3,\n\"➳\": 2,\n\"🚃\": 3,\n\"┯\": -3,\n\"🆙\": 2,\n\"🆖\": 1,\n\"┗\": 5,\n\"Ⓞ\": 2,\n\"❇\": 3,\n\"✴\": 3,\n\"☊\": 5,\n\"🔕\": -2,\n\"⬛\": -2,\n\"🚞\": 3,\n\"🍶\": 3,\n\"🌐\": 3,\n\"♀\": 1,\n\"🚅\": 3,\n\"🚒\": -2,\n\"♋\": 1,\n\"♍\": 3,\n\"🕝\": -2,\n\"ⓐ\": 5,\n\"📙\": 1,\n\"Ⓢ\": 1,\n\"📋\": 3,\n\"🎱\": 1,\n\"🐞\": 1,\n\"🔺\": 1,\n\"ⓡ\": 5,\n\"♤\": 3,\n\"🎯\": 3,\n\"🔉\": 3,\n\"↩\": 5,\n\"🚾\": 1,\n\"🎣\": -4,\n\"🔣\": 1,\n\"❎\": -5,\n\"➥\": 1,\n\"🎌\": 5,\n\"◣\": 1,\n\"⏬\": 5,\n\"♭\": 1,\n\"ⓞ\": 5,\n\"🔳\": 2,\n\"🏭\": 2,\n\"🎳\": -3,\n\"☚\": 5,\n\"➽\": 2,\n\"➫\": 2,\n\"➖\": -5,\n\"꒰\": 2,\n\"꒱\": 2,\n\"◝\": -3,\n\"📑\": 5,\n\"ⓧ\": 5,\n\"🔟\": 5,\n\"〓\": 5,\n\"ⓜ\": 2,\n\"➠\": 5,\n\"🚆\": 2,\n\"℅\": -5,\n\"☃\": 2,\n\"🚽\": 5,\n\"ⓝ\": 5,\n\"⇦\": 5,\n\"👲\": 2,\n\"🚡\": -3,\n\"🔬\": 5,\n\"➗\": -3,\n\"📈\": 2,\n\"⏪\": 2,\n\"◎\": 5,\n\"꒦\": -5,\n\"📎\": 5,\n\"⑅\": 5,\n\"✭\": 5,\n\"♓\": 2,\n\"┏\": 5,\n\"☇\": 5,\n\"࿎\": -5,\n\"👘\": 5,\n\"↙\": 5,\n\"Ⓕ\": 2,\n\"Ⓦ\": 2,\n\"Ⓟ\": 2,\n\"🕑\": 2,\n\"🕛\": 5,\n\"♈\": -5,\n\"↬\": 5,\n\"✍\": 5,\n\"🏦\": 5,\n\"🔻\": 5,\n\"ⓟ\": 5,\n\"ⓕ\": 5,\n\"ⓘ\": 5,\n\"♿\": 5,\n\"⇗\": 5,\n\"⇘\": 5,\n\"ⓨ\": 5,\n\"ⓙ\": 5,\n\"▫\": 5,\n\"🔇\": 5,\n\"⌃\": -5,\n\"🔖\": 5,\n\"📜\": 5,\n\"🚝\": 5,\n\"┘\": -5,\n\"✝\": -5,\n\"⍣\": -5,\n\"📮\": -5,\n\"🕕\": -5,\n\"🔯\": 5,\n\"➸\": 5,\n\"꒵\": 5,\n\"🕥\": -5,\n\"✽\": 5,\n\"📼\": 5,\n\"🕐\": -5,\n\"🀄\": 5,\n\"✬\": 5,\n\"✫\": 5,\n\"🕔\": -5,\n\"❣\": 5,\n\"📫\": 5,\n\"🉐\": 5,\n\"🈂\": -5,\n\"🎰\": -5,\n\"҂\": -5,\n\"╤\": -5,\n\"📔\": 5,\n\"gratis\": 1,\n\"no\": -1,\n\"nunca\": -1,\n\"ayuda\": 2,\n\"gusta\": 2,\n\"arriba\": 2,\n\"por favor\": 1,\n\"apoyo\": 2,\n\"mejor\": 3,\n\"bueno\": 3,\n\"estupendo\": 3,\n\"unido\": 1,\n\"querer\": 1,\n\"cuidado\": 2,\n\"grande\": 1,\n\"amor\": 3,\n\"calidad\": 2,\n\"guardar\": 2,\n\"unirse\": 1,\n\"avanzado\": 1,\n\"sí\": 1,\n\"*mejor\": 2,\n\"amigo\": 1,\n\"legal\": 1,\n\"problema\": -2,\n\"importante\": 2,\n\"regalo\": 2,\n\"complicado\": -1,\n\"pagar\": -1,\n\"guerra\": -2,\n\"fácil\": 1,\n\"problemas\": -2,\n\"interés\": 1,\n\"compartir\": 1,\n\"popular\": 3,\n\"bienvenida\": 2,\n\"dios\": 1,\n\"acuerdo\": 1,\n\"seguridad\": 1,\n\"diversión\": 4,\n\"oro\": 2,\n\"limitado\": -1,\n\"soluciones\": 1,\n\"natural\": 1,\n\"verdadero\": 2,\n\"malo\": -3,\n\"riesgo\": -2,\n\"gracias\": 2,\n\"error\": -2,\n\"claro\": 1,\n\"belleza\": 3,\n\"activo\": 1,\n\"fuego\": -2,\n\"muerte\": -2,\n\"pérdida\": -3,\n\"aumento\": 1,\n\"crecimiento\": 2,\n\"detener\": -1,\n\"beneficios\": 2,\n\"efectivo\": 2,\n\"extraviado\": -3,\n\"esperanza\": 2,\n\"deseo\": 1,\n\"solución\": 1,\n\"maduro\": 2,\n\"cierto\": 1,\n\"bien\": 2,\n\"salir\": -1,\n\"enorme\": 1,\n\"amable\": 2,\n\"oportunidades\": 2,\n\"apropiado\": 2,\n\"agradable\": 3,\n\"permitir\": 1,\n\"super\": 3,\n\"materia\": 1,\n\"responsable\": 2,\n\"ganar\": 4,\n\"cáncer\": -1,\n\"amigable\": 2,\n\"feliz\": 3,\n\"agradecer\": 2,\n\"seguro\": 1,\n\"salvo\": 2,\n\"culo\": -4,\n\"favorito\": 2,\n\"corte\": -1,\n\"mejorar\": 2,\n\"anti\": -1,\n\"fuerte\": 2,\n\"enfermedad\": -1,\n\"excelente\": 3,\n\"perfecto\": 3,\n\"opportunit y\": 2,\n\"premio\": 3,\n\"asegurar\": 1,\n\"éxito\": 2,\n\"hermoso\": 3,\n\"advertencia\": -3,\n\"significativo\": 1,\n\"útil\": 2,\n\"autoridad\": 1,\n\"sexy\": 3,\n\"grand\": 3,\n\"cool\": 1,\n\"leading\": 2,\n\"positive\": 2,\n\"fitness\": 1,\n\"greater\": 3,\n\"responsibility\": 1,\n\"resolución\": 2,\n\"lealtad\": 1,\n\"recomendado\": 2,\n\"aprobado\": 2,\n\"habilidad\": 2,\n\"bonito\": 1,\n\"violación\": -4,\n\"presión\": -1,\n\"deuda\": -2,\n\"interesado\": 2,\n\"premios\": 3,\n\"disfrutar\": 2,\n\"bloque\": -1,\n\"aumentado\": 1,\n\"justo\": 2,\n\"incorrecto\": -2,\n\"muerto\": -3,\n\"respeto\": 2,\n\"vale la pena\": 2,\n\"pobre\": -2,\n\"jodido\": -4,\n\"paz\": 2,\n\"creativo\": 2,\n\"beneficio\": 2,\n\"progreso\": 2,\n\"concesión\": 1,\n\"acuerda\": 1,\n\"fan\": 3,\n\"interesante\": 2,\n\"aceptado\": 1,\n\"morir\": -3,\n\"servicial\": 2,\n\"limpio\": 2,\n\"justicia\": 2,\n\"demanda\": -1,\n\"posibilidad\": 2,\n\"visión\": 1,\n\"aceptar\": 1,\n\"exitoso\": 3,\n\"bajo\": -1,\n\"emergencia\": -2,\n\"difícil\": -1,\n\"ajuste\": 1,\n\"dolor\": -2,\n\"recomendar\": 2,\n\"desperdicio\": -1,\n\"delito\": -3,\n\"señorita\": -2,\n\"garantía\": 1,\n\"diamante\": 1,\n\"solo\": -2,\n\"intereses\": 1,\n\"joder\": -4,\n\"compatible\": 2,\n\"rosa\": 1 ,\n\"libertad\": 2,\n\"nuevo\": 1,\n\"creciente\": 1,\n\"errores\": -2,\n\"polla\": -5,\n\"integral\": 2,\n\"proteger\": 1,\n\"soltar\": -1,\n\"sólido\": 2,\n\"prevenir\": -1,\n\"rico\": 2,\n\"mejora\": 2,\n\"espíritu\": 1,\n\"desafío\": -1,\n\"aceptación\": 1,\n\"cargos\": -2,\n\"listo\": 1,\n\"tetas\": -2,\n\"evitar\": -1,\n\"abuso\": -3,\n\"liderazgo\": 1,\n\"fe\": 1,\n\"faltante\": -2,\n\"murió\": -3,\n\"alcance\": 1,\n\"ataque\": -1,\n\"perdón\": -1,\n\"daño\": -3,\n\"fracaso\": -2,\n\"aprobación\": 2,\n\"jesús\": 1,\n\"aventura\": 2,\n\"lucro\": 2,\n\"determinada\": 2,\n\"divertida\": 4,\n\"dedicada\": 2 ,\n\"criminal\": -3,\n\"poderoso\": 2,\n\"sueño\": 1,\n\"falso\": -1,\n\"promocionar\": 1,\n\"ventaja\": 2,\n\"ahorro\": 1,\n\"ganando\": 4 ,\n\"recto\": 1,\n\"preparado\": 1,\n\"alerta\": -1,\n\"claramente\": 1,\n\"dulce\": 2,\n\"ganancia\": 2,\n\"falta\": -2,\n\"olvidado\": -1,\n\"roto\": -1,\n\"batalla\": -1,\n\"compartido\": 1,\n\"spam\": -2,\n\"forzado\": -1,\n\"pelea\": -1,\n\"falló\": -2,\n\"negativo\": -2,\n\"favoritos\": 2,\n\"saludable\": 2,\n\"activos\": 2,\n\"lesión\": -2,\n\"protegido\": 1,\n\"fallo\": -2,\n\"ganó\": 3 ,\n\"importa\": 1,\n\"*ayuda\": 2,\n\"ascenso\": 1,\n\"famoso\": 2,\n\"violencia\": -3,\n\"exclusivo\": 2,\n\"soporta\": 2,\n\"maravilloso\": 4,\n\"de acuerdo\": 1,\n\"fuerza\": 2,\n\"miedo\": -2,\n\"acciones\": 1,\n\"comodidad\": 2,\n\"mejorado\": 2,\n\"ocultar\": -1,\n\"lujo\": 2,\n\"increíble\": 4,\n\"sentimiento\": 1,\n\"importancia\": 2,\n\"vacío\": -1,\n\"estrés\": -1,\n\"yeah\": 1,\n\"mal\": -3,\n\"más grande\": 3 ,\n\"preocupado\": -2,\n\"competitivo\": 2,\n\"dick\": -4,\n\"olvidar\": -1,\n\"matar\": -3,\n\"conflicto\": -2,\n\"dificultad\": -2,\n\"expandir\": 1,\n\"apoyar\": 1,\n\"ayudar\": 2,\n\"afectado\": -1,\n\"*favorito\": 2,\n\"trampas\": -3,\n\"enfermedades\": -1,\n\"donaciones\": 1,\n\"asesinado\": -3,\n\"atracciones\": 2,\n\"loco\": -2,\n\"comedia\": 1,\n\"compromiso\": 2,\n\"pistola\": -1,\n\"puro\": 1,\n\"infierno\": -4,\n\"confianza\": 2,\n\"cálido\": 1,\n\"desconectado\": -1,\n\"chupar\": -3,\n\"alcanzado\": 1,\n\"supremo\": 4,\n\"reconocimiento\": 2,\n\"alentar\": 2,\n\"cancelar\": -1,\n\"límites\": -1,\n\"retraso\": -1,\n\"novela\": 2,\n\"discapacidad\": -2,\n\"ganador\": 4,\n\"comprometido\": 1,\n\"asequible\": 2,\n\"excepcional\": 5,\n\"jaja\": 2,\n\"castigado\": -2,\n\"castigada\": -2,\n\"castigo\": -2,\n\"*gris\": -1,\n\"cargado\": -3,\n\"odio\": -3,\n\"ilegal\": -3,\n\"consentimiento\": 2,\n\"adecuado\": 2,\n\"querido\": 2,\n\"confiable\": 2,\n\"duda\": -1,\n\"incapaz\": -2,\n\"ataques\": -1,\n\"pelear\": -2,\n\"romance\": 2,\n\"cielo\": 2,\n\"enfocado\": 2,\n\"negociar\": 2,\n\"bloquear\": -1,\n\"cortar\": -1,\n\"guau\": 4,\n\"amado\": 3,\n\"*favoritos\": 2,\n\"superior\": 2,\n\"guardado\": 2,\n\"otorgado\": 1,\n\"cómodo\": 2,\n\"efectivamente\": 2,\n\"crisis\": -3,\n\"luminoso\": 1,\n\"pobreza\": -1,\n\"riesgos\": -2,\n\"sueños\": 1,\n\"accidente\": -2,\n\"accesible\": 1,\n\"huelga\": -1,\n\"amenaza\": -2,\n\"perdido\": -2,\n\"extraño\": -1,\n\"sostenible\": 2,\n\"innovación\": 1,\n\"gris\": -1,\n\"negrita\": 2,\n\"estable\": 2,\n\"asset\": 2,\n\"titulado\": 1,\n\"severo\": -2,\n\"humor\": 2,\n\"exitosamente\": 3,\n\"capacidades\": 1,\n\"pecado\": -2,\n\"lindo\": 2,\n\"mejorando\": 2,\n\"anhelo\": 1,\n\"innovador\": 2,\n\"gracia\": 1,\n\"trastornos\": -2,\n\"asentamiento\": 1,\n\"fantástico\": 4,\n\"cometido\": 1,\n\"orgulloso\": 2,\n\"desastre\": -2,\n\"lesiones\": -2,\n\"alarma\": -2,\n\"robar\": -2,\n\"peor\": -3,\n\"peligroso\": -2,\n\"emocionante\": 3,\n\"fiabilidad\": 2,\n\"placer\": 3,\n\"honor\": 2,\n\"suerte\": 3 ,\n\"comic\": 1,\n\"con cuidado\": 2,\n\"ciego\": -1,\n\"furioso\": -3,\n\"asqueroso\": -2,\n\"capaz\": 1,\n\"victoria\": 3,\n\"alegría\": 3,\n\"discapacidades\": -2,\n\"enfermo\": -2,\n\"lol\": 3,\n\"sucio\": -2,\n\"donar\": 2,\n\"quiebra\": -3,\n\"vivo\": 1,\n\"promesa\": 1,\n\"mareado\": -2,\n\"prisión\": -2,\n\"popularidad\": 3,\n\"empeorar\": -3,\n\"víctimas\": -3,\n\"escape\": -1,\n\"sustancial\": 1 ,\n\"premiado\": 3,\n\"fraude\": -4,\n\"awesome\": 4,\n\"choque\": -2,\n\"deseado\": 2,\n\"infección\": -2,\n\"extender\": 1,\n\"asesinato\": -2,\n\"adecuar\": 1,\n\"rescate\": 2,\n\"pérdidas\": -3,\n\"combate\": -1,\n\"detenido\": -1,\n\"lanzado\": 1,\n\"contaminación\": -2,\n\"shock\": -2,\n\"efectividad\": 2,\n\"beso\": 2,\n\"bromas\": 2,\n\"aceptable\": 1,\n\"satisfecho\": 2,\n\"contento\": 3,\n\"gana\": 4,\n\"de confianza\": 2,\n\"fantasma\": -1,\n\"violar\": -2,\n\"campeón\": 2,\n\"oración\": -2,\n\"ignorar\": -1,\n\"excelencia\": 3,\n\"riqueza\": 3,\n\"olvidé\": -1,\n\"inteligente\": 2,\n\"estúpido\": -2,\n\"enemigo\": -2,\n\"mierda\": -4,\n\"restringido\": -2,\n\"afortunado\": 3,\n\"penalización\": -2,\n\"facilidad\": 2,\n\"aventuras\": 2,\n\"apreciar\": 2,\n\"precioso\": 3,\n\"sonrisa\": 2,\n\"expuesto\": -1,\n\"queja\": -2,\n\"impulso\": 1,\n\"capacidad\": 1,\n\"daños\": -3,\n\"resuelvo\": 1,\n\"quejas\": -2,\n\"pasión\": 1,\n\"débil\": -2,\n\"integridad\": 2,\n\"preocupación\": -3,\n\"alegre\": 3,\n\"peligro\": -2,\n\"vitamin\": 1,\n\"paradise\": 3,\n\"glory\": 2,\n\"sad\": -2,\n\"promoting\": 1,\n\"hurt\": -2,\n\"slip\": -1,\n\"profit\": 2,\n\"cortes\": -1,\n\"funeral\": -1,\n\"disfrutado\": 2,\n\"talento\": 2,\n\"sabiduría\": 1,\n\"disparar\": -1,\n\"alentado\": 2,\n\"perder\": -3,\n\"noble\": 2,\n\"ventajas\": 2,\n\"amores\": 3,\n\"sueltos\": -3,\n\"dolencia\": -2,\n\"asegurado\": 2,\n\"destrucción\": -3,\n\"desorden\": -2,\n\"héroe\": 2,\n\"cayendo\": -1,\n\"dejado\": -1,\n\"tortura\": -4,\n\"matando\": -3,\n\"refinar\": 1,\n\"falla\": -2 ,\n\"meando\": -3,\n\"atracción\": 2,\n\"invitar\": 1,\n\"terror\": -3,\n\"prohibir\": -2,\n\"impar\": -2,\n\"favor\": 2,\n\"atractivo\": 2,\n\"víctima\": -3,\n\"exige\": -1,\n\"cuidadoso\": 2,\n\"tops\": 2,\n\"llorar\": -1,\n\"simpático\": 3,\n\"raro\": -2,\n\"inspirado\": 2,\n\"limpiador\": 2,\n\"gustado\": 2,\n\"adoptar\": 1,\n\"denegado\": -2,\n\"follado\": -4,\n\"donación\": 2,\n\"muertes\": -2,\n\"disputa\": -2,\n\"cansado\": -2,\n\"honesto\": 2,\n\"arriesgado\": -3,\n\"restaurar\": 1,\n\"demandar\": -2,\n\"maldito\": -2 ,\n\"suicidio\": -2,\n\"fama\": 1,\n\"cortesía\": 2,\n\"crítica\": -2,\n\"asustado\": -2,\n\"engaño\": -2,\n\"fortuna\": 2,\n\"exploración\": 1,\n\"gripe\": -2,\n\"perfectamente\": 3,\n\"esclavo\": -3,\n\"litigio\": -1,\n\"héroes\": 2,\n\"terrorista\": -2,\n\"ético\": 2,\n\"lucha\": -2,\n\"sufrimiento\": -2,\n\"culpable\": -3,\n\"encanto\": 3,\n\"violento\": -3,\n\"borracho\": -2,\n\"crímenes\": -3,\n\"resuelto\": 2,\n\"rompió\": -1,\n\"resolver\": 2,\n\"asegurando\": 1,\n\"resaltar\": 2,\n\"ojalá\": 2,\n\"brillante\": 4,\n\"deseos\": 1,\n\"amar\": 2,\n\"elegante\": 2,\n\"ganancias\": 2,\n\"críticos\": -2,\n\"fake\": -3,\n\"bomba\": -1,\n\"perjuicio\": -2,\n\"asalto\": -2,\n\"significado\": 1,\n\"resolviendo\": 1,\n\"participar\": 1,\n\"engañar\": -3,\n\"sospechoso\": -1,\n\"obligatorio\": -1,\n\"celebración\": 3,\n\"amenazas\": -2 ,\n\"llegar\": 1,\n\"dañado\": -3,\n\"mear\": -4,\n\"reír\": 1,\n\"destruir\": -3,\n\"ofensivo\": -2,\n\"gustas\": 2,\n\"carga\": -2,\n\"increible\": 3,\n\"excitado\": 3,\n\"supera\": 2,\n\"equilibrado\": 1,\n\"demorado\": -1,\n\"excluir\": -1,\n\"ansiedad\": -2,\n\"indispuesto\": -1,\n\"esperanzas\": 2,\n\"puta\": -5,\n\"victor\": 3,\n\"aislado\": -1,\n\"descontado\": -1,\n\"desesperado\": -3,\n\"demostración\": -1,\n\"negado\": -2,\n\"saludo\": 1,\n\"desempleo\": -2,\n\"lágrimas\": -2,\n\"enojado\": -3,\n\"amistad\": 2,\n\"sol\": 2,\n\"arrastre\": -1,\n\"arrestado\": -3,\n\"ganado\": 2,\n\"muriendo\": -3,\n\"atascado\": -2,\n\"detiene\": -1,\n\"sofisticado\": 2,\n\"impuesto\": -1,\n\"más fuerte\": 2,\n\"tóxico\": -3,\n\"oscuridad\": -1,\n\"nueces\": -3,\n\"broma\": 2,\n\"rechazado\": -1,\n\"destruido\": -3,\n\"vulnerabilidad\": -2,\n\"celebrar\": 3,\n\"impresionante\": 3,\n\"accidentes\": -2,\n\"tierno\": 2,\n\"violaciones\": -2,\n\"alabanza\": 3,\n\"esperando\": 2,\n\"parcialidad\": -1,\n\"admitido\": -1,\n\"admitir\": -1,\n\"sufrir\": -2,\n\"caos\": -2,\n\"confundido\": -2,\n\"acusado\": -2,\n\"corrupción\": -3,\n\"terrible\": -3,\n\"fiebre\": -2,\n\"orar\": 1,\n\"recomienda\": 2,\n\"tesoro\": 2,\n\"limitación\": -1,\n\"golpeado\": -1,\n\"advertencias\": -3,\n\"inspiración\": 2,\n\"curioso\": 1,\n\"exquisito\": 4,\n\"lesionado\": -2,\n\"colapso\": -2,\n\"improbable\": -1,\n\"conflictos\": -2,\n\"tributo\": 2,\n\"inmune\": 1,\n\"infectado\": -2,\n\"barrera\": -2,\n\"perra\": -5,\n\"infecciones\": -2,\n\"ofensa\": -2,\n\"protesta\": -2,\n\"intenso\": 1,\n\"partidarios\": 1,\n\"suciedad\": -2,\n\"retirada\": -3,\n\"culpa\": -2,\n\"sufrido\": -2,\n\"fallos\": -2,\n\"devoto\": 3,\n\"despedido\": -2,\n\"desacuerdo\": -2,\n\"ira\": -3,\n\"posibilidades\": 2,\n\"felicidad\": 3,\n\"sustancialmente\": 1,\n\"bizarro\": -2,\n\"exento\": -1,\n\"realizado\": 2,\n\"nervioso\": -2,\n\"rechazar\": -2,\n\"extiende\": 1,\n\"magnífico\": 5,\n\"calmar\": 2,\n\"campeones\": 2,\n\"inapropiado\": -2 ,\n\"apreciado\": 2,\n\"armonía\": 2,\n\"distinguido\": 2,\n\"recompensa\": 2,\n\"medalla\": 3,\n\"apesta\": -3,\n\"vulnerable\": -2,\n\"unificado\": 1,\n\"ignorado\": -2,\n\"caído\": -2,\n\"respaldado\": 1,\n\"arresto\": -2,\n\"tolerancia\": 2,\n\"atraer\": 1,\n\"tener éxito\": 3,\n\"oops\": -2,\n\"habilidades\": 2,\n\"trampa\": -1,\n\"solitario\": -2,\n\"tonto\": -2,\n\"suspendido\": -1,\n\"segura\": 2,\n\"delicioso\": 3,\n\"con seguridad\": 1,\n\"durable\": 2,\n\"desagradable\": -3,\n\"tumor\": -2,\n\"feo\": -3,\n\"invasión\": -1,\n\"recompensas\": 2,\n\"fortalecer\": 2,\n\"agresivo\": -2,\n\"robado\": -2,\n\"perturbado\": -2,\n\"motivación\": 1,\n\"acepta\": 1,\n\"aplausos\": 2,\n\"apreciación\": 2,\n\"restricción\": -2,\n\"cuidando\": 2,\n\"usad\": -1,\n\"negar\": -2,\n\"defectos\": -3,\n\"puntos fuertes\": 2,\n\"claridad\": 2,\n\"alentando\": 2,\n\"terroristas\": -2,\n\"basura\": -3,\n\"prometido\": 1,\n\"robusto\": 2,\n\"amenazado\": -2,\n\"fabuloso\": 4,\n\"prospecto\": 1,\n\"tensión\": -1,\n\"excluido\": -2,\n\"perspectivas\": 1,\n\"notable\": 2,\n\"previnindo\": -1,\n\"lío\": -2,\n\"aceptando\": 1,\n\"volcar\": -1,\n\"saludos\": 2,\n\"incompleto\": -1,\n\"tumba\": -2,\n\"presos\": -2,\n\"digno\": 2,\n\"lobby\": -2,\n\"derrota\": -2,\n\"sostenibilidad\": 1,\n\"ridículo\": -1 ,\n\"misericordia\": 2,\n\"legalmente\": 1,\n\"vergüenza\": -2,\n\"fatal\": -3,\n\"válido\": 2,\n\"retiro\": -1,\n\"reprobado\": -2,\n\"retenido\": -1,\n\"solucionado\": 1 ,\n\"urgente\": -1,\n\"felicitaciones\": 2,\n\"venganza\": -2,\n\"enemigos\": -2,\n\"admite\": 1,\n\"disfrutano\": 2,\n\"promesas\": 1,\n\"inquieto\": -3,\n\"porquería\": -1,\n\"aburrido\": -3,\n\"alcanza\": 1,\n\"déficit\": -2,\n\"rebelde\": -2,\n\"malvado\": -2,\n\"mata\": -3 ,\n\"impresionado\": 3,\n\"fallas\": -2,\n\"conspiración\": -3,\n\"prominente\": 2,\n\"favores\": 2,\n\"pánico\": -3,\n\"excusa\": -1,\n\"reclamación\": -2,\n\"desechar\": -1,\n\"abandonado\": -2,\n\"contenta\": 3,\n\"pasivo\": -1,\n\"coraje\": 2,\n\"entretenido\": 2,\n\"suspensión\": -1,\n\"pacífico\": 2,\n\"rabia\": -2,\n\"confía\": 1,\n\"robo\": -2,\n\"refinado\": 1,\n\"sin hogar\": -2,\n\"horrible\": -3,\n\"bloqueado\": -1,\n\"golpes\": -1,\n\"negación\": -2,\n\"gema\": 3,\n\"borrado\": 1,\n\"lograr\": 2,\n\"fatalidad\": -2,\n\"mito\": -1,\n\"infeccioso\": -2,\n\"bloqueo\": -1,\n\"restaurado\": 1,\n\"caritativo\": 2,\n\"convencido\": 1,\n\"incumplimiento\": -2,\n\"sospecha\": -1,\n\"competente\": 2 ,\n\"agradecido\": 3,\n\"riendo\": 1,\n\"deseable\": 2,\n\"prohibido\": -2,\n\"rápido\": 2,\n\"milagro\": 4,\n\"perezoso\": -1,\n\"cualidades\": 2 ,\n\"maravilla\": 3,\n\"bla\": -2,\n\"mortal\": -3,\n\"coño\": -5,\n\"oraciones\": -2,\n\"exclusión\": -1,\n\"entusiasta\": 1,\n\"generoso\": 2,\n\"locura\": -3,\n\"fascinante\": 3,\n\"salvación\": 2,\n\"brutal\": -3,\n\"adaptado\": 2,\n\"orgullo\": 2,\n\"deleite\": 3,\n\"sobreviviente\": 2,\n\"deteriorado\": -2,\n\"joya\": 1,\n\"tragedia\": -2,\n\"doloroso\": -2,\n\"funky\": 2,\n\"cancelado\": -1,\n\"aterrador\": -2,\n\"sangriento\": -3,\n\"encantador\": 3,\n\"molesto\": -2,\n\"respetado\": 2,\n\"trastornado\": -2,\n\"restringir\": -2,\n\"endosado\": 2,\n\"polución\": -2,\n\"bendiga\": 2,\n\"triunfo\": 4,\n\"pulido\": 2,\n\"controvertido\": -2,\n\"trauma\": -3,\n\"exigente\": -1,\n\"censurado\": -2,\n\"motivado\": 2,\n\"lerdo\": -3,\n\"hueco\": -1,\n\"respaldo\": 2,\n\"promovido\": 1,\n\"hambre\": -2,\n\"beneplácito\": 2,\n\"disputas\": -2,\n\"espléndido\": 3,\n\"prontitud\": 1,\n\"dañino\": -2,\n\"tesoros\": 2,\n\"advertido\": -2,\n\"gravemente\": -3,\n\"decepcionado\": -2,\n\"primicia\": 3,\n\"repulsivo\": -3,\n\"excitación\": 3,\n\"valiente\": 2,\n\"atroz\": -3,\n\"imponer\": -1,\n\"acoso\": -3,\n\"zorra\": -4,\n\"*favor\": 2,\n\"controversia\": -2,\n\"simpatía\": 2,\n\"bellamente\": 3,\n\"promueve\": 1,\n\"condenado\": -2,\n\"amenazante\": -2,\n\"preso\": -2,\n\"alienta\": 2,\n\"donado\": 2,\n\"crudo\": -1,\n\"*aburrido\": -2,\n\"molestar\": -2,\n\"atacado\": -1,\n\"más seguro\": 2,\n\"fortalecimiento\": 2,\n\"desear\": 1,\n\"espantado\": -2,\n\"infracción\": -2,\n\"veneno\": -2\n}"
  },
  {
    "path": "lib/natural/sentiment/Spanish/negations_es.json",
    "content": "{\n  \"words\": [\"no\", \"nunca\", \"jamás\", \"ni\"]\n}\n"
  },
  {
    "path": "lib/natural/sentiment/Spanish/senticon_es.json",
    "content": "{\n  \"acertado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.149\"\n  },\n  \"admirable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.906\",\n    \"std\": \"0.125\"\n  },\n  \"admiración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.331\"\n  },\n  \"admirar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.177\"\n  },\n  \"afectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.112\"\n  },\n  \"afectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.131\"\n  },\n  \"afición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.425\"\n  },\n  \"afortunado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.063\"\n  },\n  \"agradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.181\"\n  },\n  \"agradecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"alegrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.315\"\n  },\n  \"alegre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.661\",\n    \"std\": \"0.185\"\n  },\n  \"alentador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.418\"\n  },\n  \"amable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.165\"\n  },\n  \"amar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amistoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.125\"\n  },\n  \"amor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.278\",\n    \"std\": \"0.171\"\n  },\n  \"animado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.494\",\n    \"std\": \"0.276\"\n  },\n  \"animar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.289\",\n    \"std\": \"0.232\"\n  },\n  \"apacible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.161\"\n  },\n  \"apasionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"apego\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprecio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.161\"\n  },\n  \"aprobar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.292\"\n  },\n  \"ardiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.213\"\n  },\n  \"atractivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.246\"\n  },\n  \"beneficio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.351\"\n  },\n  \"benevolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.277\"\n  },\n  \"benevolente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"bien\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.361\"\n  },\n  \"bienestar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.258\"\n  },\n  \"bondad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.267\"\n  },\n  \"bonito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.217\"\n  },\n  \"buen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.734\",\n    \"std\": \"0.2\"\n  },\n  \"bueno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.53\"\n  },\n  \"cariñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.188\"\n  },\n  \"cautivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"cautivador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.438\"\n  },\n  \"cercano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.2\"\n  },\n  \"comodidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.298\"\n  },\n  \"compañerismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"competente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.589\",\n    \"std\": \"0.315\"\n  },\n  \"complacencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"complacer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.326\"\n  },\n  \"complaciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.643\",\n    \"std\": \"0.159\"\n  },\n  \"confianza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.267\"\n  },\n  \"confortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contentarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"contento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"correcto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.806\",\n    \"std\": \"0.125\"\n  },\n  \"cortés\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.184\"\n  },\n  \"cuidadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.102\"\n  },\n  \"cálido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.257\"\n  },\n  \"cándido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.306\"\n  },\n  \"cómodo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.217\"\n  },\n  \"decente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.571\",\n    \"std\": \"0.2\"\n  },\n  \"deleitarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.143\"\n  },\n  \"diestro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.331\"\n  },\n  \"disfrutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.536\",\n    \"std\": \"0.225\"\n  },\n  \"divertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.653\",\n    \"std\": \"0.132\"\n  },\n  \"divertir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.239\"\n  },\n  \"divertirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.361\"\n  },\n  \"dulce\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.518\",\n    \"std\": \"0.385\"\n  },\n  \"emotivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.051\"\n  },\n  \"encantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.129\"\n  },\n  \"encantador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entusiasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.661\",\n    \"std\": \"0.295\"\n  },\n  \"entusiasta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.6\",\n    \"std\": \"0.105\"\n  },\n  \"estima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.188\"\n  },\n  \"estimulante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.262\",\n    \"std\": \"0.242\"\n  },\n  \"euforia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.161\"\n  },\n  \"eufórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.329\"\n  },\n  \"excelente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"excitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.137\"\n  },\n  \"experto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fascinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"fascinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.413\"\n  },\n  \"favorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.844\",\n    \"std\": \"0.188\"\n  },\n  \"favorecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.254\"\n  },\n  \"felicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.191\"\n  },\n  \"feliz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.176\"\n  },\n  \"ferviente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.12\"\n  },\n  \"fiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"firmeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.278\",\n    \"std\": \"0.268\"\n  },\n  \"gozar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"gracioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.112\"\n  },\n  \"gratificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.191\"\n  },\n  \"gustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.415\"\n  },\n  \"gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.369\"\n  },\n  \"honorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"honrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.171\"\n  },\n  \"honrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"hábil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.125\"\n  },\n  \"ideal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.385\"\n  },\n  \"idóneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.154\"\n  },\n  \"interés\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.352\"\n  },\n  \"jovial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.775\",\n    \"std\": \"0.137\"\n  },\n  \"joya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"jubiloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"justo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.163\"\n  },\n  \"júbilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"magnífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.804\",\n    \"std\": \"0.159\"\n  },\n  \"mañoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.258\"\n  },\n  \"minucioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.125\"\n  },\n  \"optimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.331\"\n  },\n  \"optimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"placentero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"plácido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"positivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.258\"\n  },\n  \"preferencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"prometedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.102\"\n  },\n  \"provecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.328\",\n    \"std\": \"0.313\"\n  },\n  \"reconfortante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.063\"\n  },\n  \"recrear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.421\"\n  },\n  \"recto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.301\"\n  },\n  \"refrescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.2\"\n  },\n  \"regocijado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.125\"\n  },\n  \"regocijar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"regocijarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"regocijo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.326\"\n  },\n  \"respetable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.906\",\n    \"std\": \"0.12\"\n  },\n  \"saludable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.768\",\n    \"std\": \"0.098\"\n  },\n  \"sano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.8\",\n    \"std\": \"0.112\"\n  },\n  \"satisfacer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.578\",\n    \"std\": \"0.236\"\n  },\n  \"satisfactorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"satisfecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.6\",\n    \"std\": \"0.168\"\n  },\n  \"seductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.163\"\n  },\n  \"seguro\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sereno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.297\",\n    \"std\": \"0.124\"\n  },\n  \"simpatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.292\"\n  },\n  \"simpático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.653\",\n    \"std\": \"0.289\"\n  },\n  \"solazar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonriente\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sosegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"ternura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"tierno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.224\"\n  },\n  \"tranquilizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"tónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.368\"\n  },\n  \"utilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.331\"\n  },\n  \"vigorizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"vigorizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.224\"\n  },\n  \"útil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abatir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.554\",\n    \"std\": \"0.047\"\n  },\n  \"abochornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abochornar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"abominación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.056\"\n  },\n  \"aborrecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"aborrecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.056\"\n  },\n  \"acongojarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"acosar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.061\"\n  },\n  \"aflicción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.606\",\n    \"std\": \"0.109\"\n  },\n  \"afligido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.113\"\n  },\n  \"afligir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.675\",\n    \"std\": \"0.04\"\n  },\n  \"afligirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"agravar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.217\"\n  },\n  \"agresividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.068\"\n  },\n  \"alarmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alboroto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.09\"\n  },\n  \"amargura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"angustia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.589\",\n    \"std\": \"0.112\"\n  },\n  \"angustiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.65\",\n    \"std\": \"0.112\"\n  },\n  \"antipatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.094\"\n  },\n  \"antipático\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apesadumbrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.188\"\n  },\n  \"apurarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.088\"\n  },\n  \"arrepentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arriesgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.142\"\n  },\n  \"asco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.072\"\n  },\n  \"asquear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"asqueroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.143\"\n  },\n  \"atormentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.391\",\n    \"std\": \"0.129\"\n  },\n  \"atroz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.672\",\n    \"std\": \"0.146\"\n  },\n  \"avergonzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avergonzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"aversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.08\"\n  },\n  \"cabreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"celoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"colérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.131\"\n  },\n  \"confundir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.091\"\n  },\n  \"congoja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.072\"\n  },\n  \"conmoción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.151\"\n  },\n  \"consternado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.161\"\n  },\n  \"contrariedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.656\",\n    \"std\": \"0.188\"\n  },\n  \"contrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crueldad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.056\"\n  },\n  \"culpabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"culpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"dañino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.157\"\n  },\n  \"decaído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"defectuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.431\",\n    \"std\": \"0.127\"\n  },\n  \"degradante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.213\"\n  },\n  \"deplorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.177\"\n  },\n  \"deprimente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deprimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"desagradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desagradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"desagrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.125\"\n  },\n  \"desalentador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.289\"\n  },\n  \"desalentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.589\",\n    \"std\": \"0.094\"\n  },\n  \"desaliento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.105\"\n  },\n  \"desamparo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"desaprobar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.188\"\n  },\n  \"desasosiego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"desconsolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"descuido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.131\"\n  },\n  \"desdicha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.547\",\n    \"std\": \"0.08\"\n  },\n  \"desdichado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.143\"\n  },\n  \"desdén\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.363\",\n    \"std\": \"0.099\"\n  },\n  \"desesperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.19\"\n  },\n  \"deshonroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.163\"\n  },\n  \"desolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"despreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.174\"\n  },\n  \"despreciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.151\"\n  },\n  \"desprecio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.115\"\n  },\n  \"desánimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.112\"\n  },\n  \"detestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"devastador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.068\"\n  },\n  \"difícil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.125\"\n  },\n  \"disgustado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.063\"\n  },\n  \"disgustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disuadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dolor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.488\",\n    \"std\": \"0.102\"\n  },\n  \"dolorido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.102\"\n  },\n  \"doloroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.131\"\n  },\n  \"encolerizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"enemistad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.072\"\n  },\n  \"enfadado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"enfadar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfurecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"enojado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enojar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"enojoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"entristecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escalofriante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.166\"\n  },\n  \"espantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.098\"\n  },\n  \"espantoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.643\",\n    \"std\": \"0.134\"\n  },\n  \"exacerbación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"exasperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.163\"\n  },\n  \"fastidiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.065\"\n  },\n  \"fastidioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.153\"\n  },\n  \"fatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.185\"\n  },\n  \"frustrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"frío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"furia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.105\"\n  },\n  \"furioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.143\"\n  },\n  \"harto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hastío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.111\"\n  },\n  \"herir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"histeria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.12\"\n  },\n  \"horrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.429\",\n    \"std\": \"0.177\"\n  },\n  \"horripilante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.198\"\n  },\n  \"horror\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.354\",\n    \"std\": \"0.117\"\n  },\n  \"horrorizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"horroroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.173\"\n  },\n  \"hostigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.056\"\n  },\n  \"hostilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"humillar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"impaciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"impotencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"inadecuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.288\",\n    \"std\": \"0.138\"\n  },\n  \"inclemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.289\"\n  },\n  \"incomodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.068\"\n  },\n  \"incómodo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.146\"\n  },\n  \"inoportuno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.361\",\n    \"std\": \"0.153\"\n  },\n  \"inquietante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.161\"\n  },\n  \"inquieto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.147\"\n  },\n  \"inquina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insatisfecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.102\"\n  },\n  \"inseguridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.188\"\n  },\n  \"insuficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"iracundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"irascible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"irritación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.088\"\n  },\n  \"irritante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.185\"\n  },\n  \"irritar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.361\",\n    \"std\": \"0.108\"\n  },\n  \"lamentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.205\"\n  },\n  \"mal humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.12\"\n  },\n  \"malhumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.102\"\n  },\n  \"malicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.112\"\n  },\n  \"maligno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.161\"\n  },\n  \"malévolo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.775\",\n    \"std\": \"0.137\"\n  },\n  \"melancolía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.259\"\n  },\n  \"melancólico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"menospreciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.159\"\n  },\n  \"menosprecio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.098\"\n  },\n  \"miedoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miserable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.056\"\n  },\n  \"misoneísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mohína\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"molestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.042\"\n  },\n  \"molesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.538\",\n    \"std\": \"0.158\"\n  },\n  \"monstruoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.129\"\n  },\n  \"mosqueado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nauseabundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"nocivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.213\"\n  },\n  \"odiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"odio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"ofender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.125\"\n  },\n  \"ofensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.429\",\n    \"std\": \"0.191\"\n  },\n  \"opresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"oscuro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.154\"\n  },\n  \"pavor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.104\"\n  },\n  \"penoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.173\"\n  },\n  \"perjudicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.455\",\n    \"std\": \"0.175\"\n  },\n  \"perturbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.093\"\n  },\n  \"pesadumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.105\"\n  },\n  \"pesar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.104\"\n  },\n  \"pesaroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"pesimismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"pesimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"problema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.128\"\n  },\n  \"pánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"quemazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.177\"\n  },\n  \"rabia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.123\"\n  },\n  \"recelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"rechazar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.154\"\n  },\n  \"rencor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.144\"\n  },\n  \"repelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"repugnancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.08\"\n  },\n  \"repugnante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.422\",\n    \"std\": \"0.177\"\n  },\n  \"repulsivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"resentimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.12\"\n  },\n  \"sombrío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.134\"\n  },\n  \"temer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.0\"\n  },\n  \"temeroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.131\"\n  },\n  \"temible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"tener miedo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"terrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.133\"\n  },\n  \"tormento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.482\",\n    \"std\": \"0.061\"\n  },\n  \"trastorno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.079\"\n  },\n  \"tribulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"triste\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.509\",\n    \"std\": \"0.154\"\n  },\n  \"tristeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.256\"\n  },\n  \"vergüenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.102\"\n  },\n  \"vilipendio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.0\"\n  },\n  \"a gusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adorador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"afectividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afectuosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agradado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.25\"\n  },\n  \"alborozar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"alegrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"altruista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"amoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"animarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.505\"\n  },\n  \"aprobado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aprobativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"aprobatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"arrebatador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autocomplacencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"benefactor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.938\",\n    \"std\": \"0.088\"\n  },\n  \"beneficencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"beneficioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.917\",\n    \"std\": \"0.072\"\n  },\n  \"benéfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"benévolo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"buen humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.177\"\n  },\n  \"buena voluntad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"cariñosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"complacido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"confiadamente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confort\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contentamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"convencido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dar confianza\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dar ánimos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.289\"\n  },\n  \"desahogado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devoto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"embebecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embeleso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"embriagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"encandilamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"esperanzador\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"estimulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exuberancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"exultación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fervoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fraternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraterno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fácil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"fácilmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.505\"\n  },\n  \"gratitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.375\"\n  },\n  \"habilidoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"hilarante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hilaridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jocundidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jovialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.25\"\n  },\n  \"lealtad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"motivar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"optimístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"placidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"predilección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regocijador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"risueño\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.833\",\n    \"std\": \"0.144\"\n  },\n  \"saciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satisfacible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"satisfecho de sí mismo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"suertudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"triunfo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triunfal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"triunfante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"ufano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"venturoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"victorioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"vigorizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"vitorear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"abatimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"abominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"aborrecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acosar sexualmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agravado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"airado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"angustiosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"animadversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"ansiosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"apenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.144\"\n  },\n  \"apenarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"apocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"aprensivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"arrepentimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asediar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"asqueadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asqueado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asurarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataque de pánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aterrorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autocompasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avaricioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.217\"\n  },\n  \"avaro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"avergonzante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avergonzarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aversión homicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beligerancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"beligerante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"berrinche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"calamitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"cargante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"causar náuseas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"celosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"codiciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"coléricamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compadecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"compadecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"compunción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"concomerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conmiseración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consternación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consternar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"contrariado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"contrición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conturbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"corazonada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"cínico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"dar asco\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dar náuseas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de forma asesina\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decepcionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"defraudado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demolidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"depre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deprimido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"desagradablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desagradecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desanimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"desasosegadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desasosegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"desazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"descompostura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconsuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desdeñar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"desesperadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desesperanzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desfallecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"desgarrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desmoralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"desmoralizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"despavorido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"destructivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"detestación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dificultoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disforia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"disgustoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dolido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"dolorosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"embarazoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encolerizarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfadarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enfadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"enfurecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfurecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"enfurecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfurruñarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engorroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enloquecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enojarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"entristecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.072\"\n  },\n  \"entristecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estremecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"exacerbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"exasperación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"exasperante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"execración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.051\"\n  },\n  \"execrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"fastidiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"frenéticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"frustrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"furibundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"furiosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"grima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hormiguilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horrendo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.191\"\n  },\n  \"horrorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"humillante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ignominioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impropio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"indignado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ingratitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inhumanidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"inmundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"inquietarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"insidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"intimidado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"iracundia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irascibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irritado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"lastimero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"lóbregamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lóbrego\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"lúgubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lúgubremente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"macabro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"mal genio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"mala leche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"maleficencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"malevolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"malignidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"malquerencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maléfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"manto lúgubre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misantropía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"misantrópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"misoginia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"misántropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"misógino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"mohíno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"molestar repetidamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"mortificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"murria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mísero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.188\"\n  },\n  \"nauseoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oprobioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pataleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pavoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"perra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"perturbador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"petrificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"pie de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preocupado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"provocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"quejumbroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"rabieta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"rabioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"reconcomerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remordimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"repugnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"repulsión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"resentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"resignarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retraído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sed de venganza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentimiento de culpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sin alegría\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sulfurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"terrorífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"transtornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno de ansiedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"turbado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"ultrajante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"vejación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"vejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"verecundia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verraquera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acaudalar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"acogedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.775\",\n    \"std\": \"0.112\"\n  },\n  \"afable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"afortunadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"alabar\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"amenidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"apreciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.125\"\n  },\n  \"armonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.144\"\n  },\n  \"bendito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.191\"\n  },\n  \"bien parecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"bonachón\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"buen carácter\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"buen estado físico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"buen tipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"buena forma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"buena forma física\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"citable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"clamoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"clavado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"conmovido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cooperativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"célebre\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dar aliento\": {\n    \"pos\": \"v\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deleitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"destacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"dotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"en forma\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"encomiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"esplendoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"espléndido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.771\",\n    \"std\": \"0.205\"\n  },\n  \"exculpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"famoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"favorecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"filántropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"finísimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"glorioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.833\",\n    \"std\": \"0.191\"\n  },\n  \"harmonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"hermoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.792\",\n    \"std\": \"0.172\"\n  },\n  \"heroicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"heroísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"honorabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"honorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"idealizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"juicioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.833\",\n    \"std\": \"0.217\"\n  },\n  \"laudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"lindo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.177\"\n  },\n  \"loable\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"magistral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"manitas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"medrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"merecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"meritorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"modélico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"notable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.775\",\n    \"std\": \"0.137\"\n  },\n  \"pacífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.781\",\n    \"std\": \"0.063\"\n  },\n  \"perfectamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"preferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"presentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"prosperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.265\"\n  },\n  \"prosperidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"punto fuerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"querúbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"respetabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"respetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"respetar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rubicundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.813\",\n    \"std\": \"0.088\"\n  },\n  \"salvamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"talentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ventajoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"óptimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"1.0\",\n    \"std\": \"0.0\"\n  },\n  \"adinamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"adulterino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agarrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"aguas movedizas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"amenazador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ampollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"angustiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"antiestético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"apestoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.072\"\n  },\n  \"asesino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"asimetría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ataque de nervios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"atrofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"autodestructivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"averno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"calumniador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calumnioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"censurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.917\",\n    \"std\": \"0.0\"\n  },\n  \"cerrilismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ceño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ceño fruncido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"cicatero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"colapso nervioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"condenable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condenatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"condolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"condolencias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"crisis nerviosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"criticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"de forma impersonal\": {\n    \"pos\": \"r\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"declarar culpable\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"denigrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"denigratorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"depresión nerviosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desamparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desaprovechamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desarmonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"desasistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desconocer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"descorazonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desequilibrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"desesperanzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desgraciados\": {\n    \"pos\": \"r\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"deshonor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.088\"\n  },\n  \"desprestigiador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"desventajoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"deteriorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"difamador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"difamatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"disconformidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"discontinuidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"disimulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"envilecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"escrofuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"espurio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"excoriación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"expensas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"falsario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"faltar al respeto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fechoría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"feo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.833\",\n    \"std\": \"0.144\"\n  },\n  \"fingir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.0\"\n  },\n  \"frunción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fríamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fétido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"fóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"garrapo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"guindar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"hijo de ganancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hijo ilegítimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"hipocondríaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"huraño\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.792\",\n    \"std\": \"0.144\"\n  },\n  \"idigno de\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"impasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"impersonalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inanidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"incompetencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.844\",\n    \"std\": \"0.0\"\n  },\n  \"inconstructivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"incriminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"incultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"indigestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ineficacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"ineficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"inelasticidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ineligible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"infierno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.8\",\n    \"std\": \"0.0\"\n  },\n  \"infranqueable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.937\",\n    \"std\": \"0.0\"\n  },\n  \"inhabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"injurioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"inobservancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"insubstancialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"intransitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"irrepresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"kitsch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lagrimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"lerdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"llamada de atención\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"mal carácter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"malhumorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.833\",\n    \"std\": \"0.072\"\n  },\n  \"maloliente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"maniacodepresivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"matar violentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"matutero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"mentiroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"metedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"no cualificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"noluntad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"orco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"padecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"parásitos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"perturbación violenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pestilente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"pillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"poco amable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"poco atento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"poco gentil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"poco servicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"poner los cuernos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"protestatario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"protestativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"psicopatológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"psicopático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"punto flaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"putada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"putería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"putrescible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"pésame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"quitar de enmedio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"ramplonería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"rata\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"recriminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"regañón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reino de las tinieblas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"reprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"reprochable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"retraso mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"roncería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"sacar de quicio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.812\",\n    \"std\": \"0.0\"\n  },\n  \"saqueado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"ser infiel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"sin amor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"suicida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tacaño\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"tenebroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"tontamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.875\",\n    \"std\": \"0.0\"\n  },\n  \"torcedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"veleidoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-1.0\",\n    \"std\": \"0.0\"\n  },\n  \"abordable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adecuada\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"adoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"afirmativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alcista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ameno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"apegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"arrojado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"beato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bendecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"beneficiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bien hecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bienaventuranza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bienvenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bizarro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"buena disposición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"canjeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"carismático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"chistoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.125\"\n  },\n  \"cognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"confidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"confirmador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"confirmante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"congruencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"conocible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"constructivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"corroborante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"curativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dar permiso\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dar ventaja\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deseable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dicha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"elegible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"enmendable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"entrañable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"escalable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"estandarizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"estimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.25\"\n  },\n  \"exhuberancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"exitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"experimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fastuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"fehaciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fidedigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fotogénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"garboso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.265\"\n  },\n  \"grato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.143\"\n  },\n  \"guapo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"halagüeño\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"harmonizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedonístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.25\"\n  },\n  \"honorablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"honorífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hospitalario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"idoneidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"la verdad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"laudatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mejoría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.354\"\n  },\n  \"obtener frutos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"panegírico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plasticidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"polifacético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pujante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"realzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reconstructor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"remediador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reír\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sacar provecho\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sacar ventaja\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"saciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"salubre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.088\"\n  },\n  \"sanador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sublime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"valedero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"verificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"veterano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"virtuosillo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"virtuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"voluntariamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.75\",\n    \"std\": \"0.0\"\n  },\n  \"a toda prisa\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"a todo correr\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abúlico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"acongojado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agonizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"agónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ahuecamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"algofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"amencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"antipatriótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aparatosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"asesinato público\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ataque sorpresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"autoincriminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"autoinculpación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"autotormento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"autotortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"aventurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bastedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"bilioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"burlón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"canallada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"canallesco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"caradura\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"carcomido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"causar un trauma\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ceguedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ceguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ceñudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"contumelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"cretino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"culpa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"debilidad mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"degradarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"denunciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desafortunadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desesclarecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"deshonrosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"despreciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"destructividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"desvancerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"detestado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"dispéptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"echar una reprimenda\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encontrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"encuentro violento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"engravecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"envanecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"espúreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"esquizofrénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"falta de amabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"fruncir el entrecejo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"gafe\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpiza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hipocondría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"hosco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.125\"\n  },\n  \"idiota\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.12\"\n  },\n  \"imperfectamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impetuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impopularidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imprevisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"imprevisor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"impropicio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inamovible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"incombinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inconsolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indigerible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"indigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.125\"\n  },\n  \"ineficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"inexpiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inextricable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"infligir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"inflingir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ingrato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.125\"\n  },\n  \"inhospitalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insolvencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"insultante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.177\"\n  },\n  \"invidencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"irreversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"linchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"lividez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"luto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"magnicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"malparir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"mefítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"misofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"nido de arañas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"no autorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"no cognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"no edificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"odiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"paroxismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pasividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pestazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"pleito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco acogedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco creativa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco creativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco favorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco fiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poco pacífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"poner verde\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"profanado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.088\"\n  },\n  \"pérdida auditiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"qué lástima\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"regañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"reprender a gritos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"satanofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sin tratamiento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sin tratar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sordera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sucedáneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sufrir un colapso nervioso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"sufrir una crisis nerviosa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tener unas palabras\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"testaduro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tirón de orejas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tramposo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"traumatizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tufillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"tufo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"vermiculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"verminoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"xenófobo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"ñoño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.75\",\n    \"std\": \"0.0\"\n  },\n  \"abundante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.589\",\n    \"std\": \"0.094\"\n  },\n  \"accesible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.607\",\n    \"std\": \"0.125\"\n  },\n  \"aceptabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"aceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.112\"\n  },\n  \"acomodado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"acompasado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aconsejable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acreditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.315\"\n  },\n  \"adecuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.149\"\n  },\n  \"administrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admirabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admirablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"admisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"afabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.26\"\n  },\n  \"afectuosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"alimenticio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.547\",\n    \"std\": \"0.265\"\n  },\n  \"angelical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.545\"\n  },\n  \"anglofilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"antihelmíntico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"antimicrobiano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apaciguable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aplaudir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"apropiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.656\",\n    \"std\": \"0.112\"\n  },\n  \"aptitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.144\"\n  },\n  \"apto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.557\",\n    \"std\": \"0.247\"\n  },\n  \"apuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"asíduo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atractividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atrayente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.19\"\n  },\n  \"autodidacta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoimpuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"auxiliar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.217\"\n  },\n  \"axénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bellaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bello\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.217\"\n  },\n  \"bienaventurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.354\"\n  },\n  \"brillantez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.4\"\n  },\n  \"bruñido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buena persona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"buena salud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caballero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"caballeroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"cachondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"calidad superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"campeón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"capaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.634\",\n    \"std\": \"0.258\"\n  },\n  \"carácter agradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"casto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"catártico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"cauteloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.094\"\n  },\n  \"cauto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.102\"\n  },\n  \"celebrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"certificativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"certificatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chachi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"chic\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chusco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"circunspecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comedido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"comestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"compatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.188\"\n  },\n  \"con admiracion\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"con tratamiento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conceptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conciliación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.072\"\n  },\n  \"conciliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"confortable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"congraciador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"congruente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.315\"\n  },\n  \"consagrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.125\"\n  },\n  \"consensuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"controlable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"convalidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conveniente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.659\",\n    \"std\": \"0.129\"\n  },\n  \"copioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"cordial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.646\",\n    \"std\": \"0.171\"\n  },\n  \"cordura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"correctivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"corregible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.12\"\n  },\n  \"creatividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"creativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cualificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.26\"\n  },\n  \"culto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.056\"\n  },\n  \"cumplir lo prometido\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"curativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"célibe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"de confianza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.26\"\n  },\n  \"decible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"decoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.217\"\n  },\n  \"decoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.125\"\n  },\n  \"deducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"demostrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"describible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descriptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desenganchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desenterrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"destreza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.525\",\n    \"std\": \"0.271\"\n  },\n  \"detallado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"detenido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.194\"\n  },\n  \"disociar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dispuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"distinguido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.55\",\n    \"std\": \"0.125\"\n  },\n  \"divertidísimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"docto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"domesticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"edificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"educable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"educado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.609\",\n    \"std\": \"0.149\"\n  },\n  \"educativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"efectividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"eficaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.0\"\n  },\n  \"eficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.6\",\n    \"std\": \"0.224\"\n  },\n  \"embelesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"enardecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"enciclopédico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entregado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"entretenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.072\"\n  },\n  \"entretenimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.237\"\n  },\n  \"equitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"erudito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"especializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.191\"\n  },\n  \"especificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"espíritu bueno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.53\"\n  },\n  \"eudemónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"exacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.234\"\n  },\n  \"expansivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.6\",\n    \"std\": \"0.137\"\n  },\n  \"explicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"explícit\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"expresable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"factible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fecundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"fenomenal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.493\"\n  },\n  \"fiel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.156\"\n  },\n  \"flamante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.442\"\n  },\n  \"fogosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"formalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"formativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"formidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.331\"\n  },\n  \"fortalecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"frutal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fulgor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fértil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.063\"\n  },\n  \"galante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galantear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gallardo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.239\"\n  },\n  \"ganador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"generosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"generosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"genial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.661\",\n    \"std\": \"0.361\"\n  },\n  \"guay\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.361\"\n  },\n  \"habilitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"habitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"halagador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"harmonizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"harmónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"helmíntico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hospitalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"identificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"idílico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.0\"\n  },\n  \"igualado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"iluminarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ilustrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"ilustre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.708\",\n    \"std\": \"0.125\"\n  },\n  \"imaginativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imponente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.667\",\n    \"std\": \"0.072\"\n  },\n  \"incontaminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"indicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.679\",\n    \"std\": \"0.139\"\n  },\n  \"inferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"informado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.12\"\n  },\n  \"ingenioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.063\"\n  },\n  \"instruido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"intelectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.594\",\n    \"std\": \"0.277\"\n  },\n  \"inteligente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.604\",\n    \"std\": \"0.146\"\n  },\n  \"interesante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"interesarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.442\"\n  },\n  \"interpretable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inventivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"invicto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.088\"\n  },\n  \"iterativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"juguetón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"justificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ladino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"leal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.137\"\n  },\n  \"letrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"lisonjero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"lógico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"majestuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.306\"\n  },\n  \"manejable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"maravilloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.719\",\n    \"std\": \"0.298\"\n  },\n  \"medicinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.177\"\n  },\n  \"mejor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merecido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"miramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"mitigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"moralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"máximo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"no alarmante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"noble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.303\"\n  },\n  \"nutritivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"obediente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"observable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"observancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ocurrente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"operable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oportuno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.171\"\n  },\n  \"opulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"parasiticida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.25\"\n  },\n  \"patente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"pausado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfectibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perfecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.143\"\n  },\n  \"perseverante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"pertinente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"pinchable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"plenario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pletórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"popularidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"practicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"precaución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.072\"\n  },\n  \"precioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.675\",\n    \"std\": \"0.163\"\n  },\n  \"preciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.641\",\n    \"std\": \"0.133\"\n  },\n  \"precocinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preparado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.531\",\n    \"std\": \"0.125\"\n  },\n  \"preponderante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"presciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"preservable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prestigioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"previsor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"privilegiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.265\"\n  },\n  \"probado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"procedencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"productivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.094\"\n  },\n  \"productor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"profiláctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.0\"\n  },\n  \"progresar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.354\"\n  },\n  \"prolífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"prolífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"promover\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.505\"\n  },\n  \"propiciador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"propicio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.213\"\n  },\n  \"proteccionista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prudente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.578\",\n    \"std\": \"0.16\"\n  },\n  \"práctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.171\"\n  },\n  \"próspero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.137\"\n  },\n  \"purificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"querido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.191\"\n  },\n  \"racional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.604\",\n    \"std\": \"0.131\"\n  },\n  \"razonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.237\"\n  },\n  \"reciclable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reconstituyente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"recuperativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"reiterativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"remedio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"remirado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"repetible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"respetuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.125\"\n  },\n  \"retozón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"retribuido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reverendo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reverente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"revivificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"sabio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.237\"\n  },\n  \"sagaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.534\",\n    \"std\": \"0.097\"\n  },\n  \"salir adelante\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"salvador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"santificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"santo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"selecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.6\",\n    \"std\": \"0.088\"\n  },\n  \"semiconductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sensato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.571\",\n    \"std\": \"0.247\"\n  },\n  \"sentido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"seriocómico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"servible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"servir para\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sexi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sibarítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"significante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.191\"\n  },\n  \"significativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.072\"\n  },\n  \"simplificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sin enterrar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sincero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.7\",\n    \"std\": \"0.185\"\n  },\n  \"sobreabundante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"socarrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.171\"\n  },\n  \"soportador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sostenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"suficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"superabundante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sustancioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.542\",\n    \"std\": \"0.125\"\n  },\n  \"súper\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.442\"\n  },\n  \"tener éxito\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"terapéutico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"testeado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tibio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tolerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"torneado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.088\"\n  },\n  \"tratable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.521\",\n    \"std\": \"0.166\"\n  },\n  \"triumfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"valioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.688\",\n    \"std\": \"0.177\"\n  },\n  \"vencedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"venerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.0\"\n  },\n  \"veraz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.177\"\n  },\n  \"viable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.563\",\n    \"std\": \"0.088\"\n  },\n  \"victoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vitalizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vivificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vocálico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluptuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.583\",\n    \"std\": \"0.125\"\n  },\n  \"ético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.625\",\n    \"std\": \"0.0\"\n  },\n  \"abetalipoproteinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"acetoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"acriminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"adulterar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"afanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"agobiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.125\"\n  },\n  \"agobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"agonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.068\"\n  },\n  \"agorero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.177\"\n  },\n  \"agridulce\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"altercado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.063\"\n  },\n  \"amnésico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"amortecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"anglofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"angustia mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apechar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"apretura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aprieto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"arisco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.675\",\n    \"std\": \"0.137\"\n  },\n  \"arrizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"arruinarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"asesinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.112\"\n  },\n  \"asesinato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"asolador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atezado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"atrofiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"aturdimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"avinagrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"bastardo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"basto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"befar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"birlar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"bloqueo del escritor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"brete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"bufar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"camorrero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cansancio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"carente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cargarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"cascarrabias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"castigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.125\"\n  },\n  \"censurador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chabacanería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"chacoteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chafarrinón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"chaquetero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"choquear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"citación a comparecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"combatir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"comparendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"condena por asesinato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"conflicto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.056\"\n  },\n  \"contrasentido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"contratar esquiroles\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"correría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"corrupto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.144\"\n  },\n  \"crisis de identidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dar un chasco\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dar un portazo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"dañoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.161\"\n  },\n  \"defecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.065\"\n  },\n  \"deficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.068\"\n  },\n  \"delito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"desaconsejado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"desagradecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"desasimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desasistido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desautorizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descalificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descaramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"descortesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.521\",\n    \"std\": \"0.123\"\n  },\n  \"descortés\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.163\"\n  },\n  \"desenmadejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.161\"\n  },\n  \"deshonra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.072\"\n  },\n  \"deshonrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.072\"\n  },\n  \"desigualmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"deslucimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"desobedecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desproporcionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"destructor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"destruirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"desértico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"detrimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"discordia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"dismenorrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"disturbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"divisivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"doler\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.168\"\n  },\n  \"dramón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"elegía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"embabucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"embaucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.594\",\n    \"std\": \"0.0\"\n  },\n  \"embaír\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"emboscada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"en situación crítica\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"en un aprieto\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encandilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"encargarse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"endiablado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.265\"\n  },\n  \"engañosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"engreimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"enterrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia generalizada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"equilibrar riesgos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"eritrodermia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"escapatoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"escocedura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"escozor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estar enfermo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"estar indispuesto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estrago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"estática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"faccioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"falazmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"falsificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.521\",\n    \"std\": \"0.065\"\n  },\n  \"falta de entendimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"farfolla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"filfa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fin del mundo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fracasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fullería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"fusilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"galbana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garabatos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"garrapato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"gilipollas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.065\"\n  },\n  \"gris carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"grosero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"grosería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.589\",\n    \"std\": \"0.067\"\n  },\n  \"haber borrasca\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"haber ráfaga\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"haber temporal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hacer bromas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hambruna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"hediondez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"hijo de puta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"hijoputa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.072\"\n  },\n  \"hipognato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hipotiroidismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"holgazanería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hortera\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"hosquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.177\"\n  },\n  \"hurtar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"ido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"ignorancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"ignorante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilógico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaginado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imaginario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"impensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"imperdonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"implacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"imprecación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"improperio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.072\"\n  },\n  \"impropiedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.12\"\n  },\n  \"impás\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inadmisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.217\"\n  },\n  \"inanimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.063\"\n  },\n  \"inapetente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inapetitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incognoscible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"incomprensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"increpación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"increpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"incriminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inculpación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.0\"\n  },\n  \"indecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"indecoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"indigesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.0\"\n  },\n  \"inexpugnable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"infernal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.525\",\n    \"std\": \"0.125\"\n  },\n  \"infundir miedo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"infundir temor\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inhabilitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"inmerecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.7\",\n    \"std\": \"0.153\"\n  },\n  \"inmutabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"insensitividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irreconocible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.088\"\n  },\n  \"irrecuperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.177\"\n  },\n  \"irreducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"irse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"jugar una broma\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lanzar improperios contra\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lasitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.072\"\n  },\n  \"llorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.0\"\n  },\n  \"lluvia radioactiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"lordosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.157\"\n  },\n  \"maldición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.094\"\n  },\n  \"mandinga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"medida cautelar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"melodramático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mestizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"mácula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"nada halagador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"no elástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"obscuridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.125\"\n  },\n  \"odinofagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"oscurecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"osteofito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"padecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"pajarota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"palabra malsonante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"palabrota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paranoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paraplejia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraplejía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"paraplégico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"peleador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"peligroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.144\"\n  },\n  \"penalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.0\"\n  },\n  \"pendenciero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"perdida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"perdularia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"peso muerto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"picaresca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pitada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco apetitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco elástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco erudito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco escrupulosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco halagador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco ilustrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"poco receptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"precariedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.063\"\n  },\n  \"presagio negativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"principiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"problema de salud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prognato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"prohibidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"provincianismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"pusilanimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"quejido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rachear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rebato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recalcitrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rechiflar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"recular\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"regañina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"regaño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.088\"\n  },\n  \"reniego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"reprochar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.072\"\n  },\n  \"reproche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"resentirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"resignacion\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"rosario raquítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"roñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.719\",\n    \"std\": \"0.125\"\n  },\n  \"rudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.575\",\n    \"std\": \"0.153\"\n  },\n  \"ruin\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.542\",\n    \"std\": \"0.191\"\n  },\n  \"rácano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.708\",\n    \"std\": \"0.144\"\n  },\n  \"saltarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.583\",\n    \"std\": \"0.072\"\n  },\n  \"saprófito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"silbas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sin éxito\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"siniestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socorrer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"soez\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"subdesarrollo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sueldo de hambre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"sufrimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.578\",\n    \"std\": \"0.093\"\n  },\n  \"sufrir una regresión\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tipo raro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.531\",\n    \"std\": \"0.063\"\n  },\n  \"tiranicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tirarse un farol\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tomar prestado\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tosquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"traicionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.687\",\n    \"std\": \"0.063\"\n  },\n  \"trastorno maníaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"trastornos biliares\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"tísico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vaya\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"vituperación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"volteado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"volubilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"voluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.562\",\n    \"std\": \"0.265\"\n  },\n  \"yerto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.0\"\n  },\n  \"zafiedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.667\",\n    \"std\": \"0.144\"\n  },\n  \"zafio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.625\",\n    \"std\": \"0.088\"\n  },\n  \"a buena fé\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"absorto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"abundoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acaudalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acelerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aceptador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acicalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aclamación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acomodaticio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"aconsejado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"actualizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adaptado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adecuación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"adinerado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"admisibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"admisivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"adorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"adrenocorticotrópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ahorrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"ahorrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"airosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"ajustable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"al día\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alabanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alabar con exceso\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aligerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.707\"\n  },\n  \"allegro con spirito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alquilable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"altilocuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"amalgamado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ambidiestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ameliorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amentífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amovible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anacorítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antimonopolio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antiséptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apaciguador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apareado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apasionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"aplanético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aplicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apodíctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apoyado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ascendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aséptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"autosuficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"averiguable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aviejarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"azul marino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bastante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beatificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"beatífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bebido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bien definidos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bien educado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bienintencionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"bordeado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bromista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buen gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buen tiempo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"buenas condiciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"característico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caritativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"casadero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"centralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"civilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"colmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"combustible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"compatiblemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comprobable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"concienciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conciliador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"condicionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conductivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conformar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consentimiento tácito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"constructividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.246\"\n  },\n  \"consumar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"copetudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"correctitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cuaderno de escritura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cultivable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"cursi\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dadivoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dar el éxito\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de la estación\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"definible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"delectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desafectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desambiguedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descansado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desconfiadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descubrible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desegregación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desencantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"desgravable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desinflación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmontable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despavilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"despejado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.063\"\n  },\n  \"determinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diagnosticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"digestibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"digestible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"discernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"disciplinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"diserto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disputable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"distinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.289\"\n  },\n  \"dúctil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.157\"\n  },\n  \"ecléctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elocuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emancipador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embergadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embriagador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"emocionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.063\"\n  },\n  \"emplumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en términos morales\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encadenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"energizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"energético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enjoyado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ennoblecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"envainado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"envejecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"epicúreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epigramático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"equilibrio mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eremitíco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"escogido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esmaltado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espaldarazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espavilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"especialización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.375\"\n  },\n  \"espiritualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"estabilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estudioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"estético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.52\"\n  },\n  \"eufonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eufónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"eugenesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eugenismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evidencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"evitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhaustivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhausto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exhortatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exotérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"expeditivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"explicitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"explicitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extensísimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extenuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fascinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fascinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fertilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"festejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"fiducial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"filmable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fisionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"flexionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"focalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"forrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fortalecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"galanteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"ganancioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ganarse el cariño\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gazmoño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.289\"\n  },\n  \"graciosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"grandiosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.402\"\n  },\n  \"hacer atractivo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hacer atrayente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"halagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.125\"\n  },\n  \"higiénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipertónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hipnotizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"histriónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"homeopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"honores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"immaculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impresionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impudente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incambiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inclusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incorrupción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indisimulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"influenciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"innovador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.237\"\n  },\n  \"insolvente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intachable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.144\"\n  },\n  \"intencional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invalorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jocoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.191\"\n  },\n  \"juego de salón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"justiciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"labrantío\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laureado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.442\"\n  },\n  \"laurear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"laureles\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lavorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"legalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"leído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"liberador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"liricidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lustroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"macro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"madurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"magnánime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maniatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maniobrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"marinería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"medicamentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"meditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"melodioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.161\"\n  },\n  \"mezclable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"miramento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mismísimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"modernizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mojigato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moldeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"moralmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"neutralizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"novel\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nutrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"náutica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"núbil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obligación simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obligación sin garantía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ocurrencia oportuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orientarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ortotropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ovacionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paciente interno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"panorámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"papel de regalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"participativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patricio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patriótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"payaso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perfeccionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.331\"\n  },\n  \"permisividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"permutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"persuasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"petulante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"pintoresco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.26\"\n  },\n  \"plegable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poner a salvo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ponerse bien\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pormenorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pornográfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"precavido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"preciosura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"preeminente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"premiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"preservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prevención\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.217\"\n  },\n  \"profundizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profuso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"programa de rehabilitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prometido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"propiciación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.298\"\n  },\n  \"propiciatoriedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"protagonismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prudencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pudiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puntería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pío\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"racionalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.27\"\n  },\n  \"rastrero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ratificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"realizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.072\"\n  },\n  \"reanimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"recepción cordial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recepción favorable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reconciliable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rectificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rectitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.354\"\n  },\n  \"recubierto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recuperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"refinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.375\"\n  },\n  \"reflectante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.088\"\n  },\n  \"reformatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrendada\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"refrescante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"regulable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rentabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"replegable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reponerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"representable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"representante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"resoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"respaldado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"respingón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"resplandeciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.289\"\n  },\n  \"retenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revalidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revelador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"revitalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rosáceo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rumboso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sacrosanto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"salud mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"savoir-faire\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seleccionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"selectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"semiprecioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sentido común\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"seráfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.619\"\n  },\n  \"sexuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"sinvergüenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.094\"\n  },\n  \"solvencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"solvente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.177\"\n  },\n  \"sublimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsanable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subsistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suertero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sujetable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sumergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sumo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"super\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sustancialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sómatico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tapizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taraceado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tasable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"templado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tentador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.063\"\n  },\n  \"tonicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tonificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transplantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"transportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trasmisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trasplantable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trata\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"turístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"técnico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"unánime\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"usabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"usual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"utilitarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"validado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"valorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"varonil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"venerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.265\"\n  },\n  \"verificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"verismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vigorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"voto de confianza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.0\"\n  },\n  \"válido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.5\",\n    \"std\": \"0.12\"\n  },\n  \"zurdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"ablandabrevas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abombar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abordabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abroncar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aburrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acalorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aciago\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acidez de estómago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acoquinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acracia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"acusación falsa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adiposo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"adustez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"agentes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"agranulocítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alarmismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"albuminuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"algómetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"alopécico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aminorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"amnesia retrógrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"analfabetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anarquía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anatematizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anginoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"angustioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aniquilación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aniquilamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"anodino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anquilosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"antagonizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ante-mortem\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apelante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"apocalipsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardentía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardor de estómago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ardores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arrasamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arremeter contra\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"arruinamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"arteria cerebelosa inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"artralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asaltante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"asesinato mafioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"asolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astrafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"astuto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.225\"\n  },\n  \"atacante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ataque repentino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aterrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atolladero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atormentarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"atrasarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aventar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"avitaminosis B1\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ay\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"azarosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"aztreonam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"añadir una imperfección\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"baja de personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"baldado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"batracomiomaquia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"befa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bellacamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"berenjenal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"beriberi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bibos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"biserrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"blanquito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bluff\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bombardeo aéreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bragas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"brazal de luto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"broncoespasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"bronquítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caballo rojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cabezudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cabezón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacofonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cacofónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cadaverina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"caer de plano\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cafre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cagarla\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cagón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calambrazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calambre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"calumnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.063\"\n  },\n  \"canotier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canotié\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"canto fúnebre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cantonero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cariadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"casa de locos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"castigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cataclísmico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"catastrofismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chapuza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"charro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cheposo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chiquilicuatro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chirriante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chismosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"chucho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cita errónea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cizañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cleptómano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cnidiosporidios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"colchoneta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cominero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"comisar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"complicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"comprometedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"con escepticismo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condenar de antemano\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"condolerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"confrontar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"conmoción cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"consolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contrahacimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"contrahecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corcovado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cosa indispensable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crepuscular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"criminalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"criticón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.354\"\n  },\n  \"crueldad asesina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruz papal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruz patriarcal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruz pontificia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cruzarse de brazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"crédulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"cubil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"curioseo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de forma indecorosa\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"de reojo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"decoloración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deletereo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demandante en casación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"demente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"deprecación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"derecho penal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desabrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desanimadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desapacible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desaprensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desatención\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descariñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"descolorido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desdeñable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desenmarañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deseo de muerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desequilibrio emocional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desgraciadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"deshonestamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"deshonesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"desinclinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmejorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desmesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"desorientamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desprotección\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"desproveído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"destructibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dificultad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.117\"\n  },\n  \"disimulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disonancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"disparejo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"disuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dolor agudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"dura crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"elegiaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embastecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"embravecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"empalidecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"empeorarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en demasía\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en la inconsciencia\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"en modo profano\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"encame\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"endecha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enemigo mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enemistar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enervado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad de la sangre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enfrentamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.063\"\n  },\n  \"enfrentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ennegrecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"ennegrecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"enrarecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entorpecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entrometida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"entumecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"envilecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"eritema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"escarcharse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"escarnecedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esclerosis múltiple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esguince\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esmerarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espasmo muscular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"especiosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espermicida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"espondilitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"esporádico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estado incompleto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estar pendiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estereotipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estranguladores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estremecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estresante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estribación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"estúpidamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"evasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.191\"\n  },\n  \"exasperado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excesivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"excrecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"exponer al peligro\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extremado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"extremista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"faisandé\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fake\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falsear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.068\"\n  },\n  \"falta de respeto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"falta de sabor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"faltar a clases\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"familia Ixodidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fanafarronada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fantaseador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fatídico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ferocidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"feúcho\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre blackwater\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre hemoglobinúrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fiereza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"fingimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.12\"\n  },\n  \"fisgoneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fosilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fragilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"fragor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fuerzas del orden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"fuerzas del orden público\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gangrenoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gemfibrozil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus bibos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"genus sivapithecus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"giboso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ginofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glosalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"glosodinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gorigori\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"grado de reacción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graffiti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"granítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"graznidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guanaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guasón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"guerrillero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"gustillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"género Branta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hacer novillos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hacer pedazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"hacer peligrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hacer pucheros\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hampa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hastiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hediondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hemosiderosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hepatomegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterodoxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"heterogeneidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hiperadrenocorticalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hipoglucemia\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histeria de angustia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"histeria de conversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"histérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"huelga de celo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"husmeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"hórrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iconoclasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"iconoclasía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ignorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impiedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"impolítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"imposible de oponérsele\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impropiamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"impunidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inanición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"inaplicabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inatención\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inceremonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inclumplir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"incompatiblemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconcebible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconstitucional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inconveniente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"incriminatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inculpatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indecoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"indefensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indestructibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"indignidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inelegancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inelegantemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inescrupuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexcusablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexperiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"inexplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inexplicación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"infección respiratoria inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inframaxilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ininteligente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"injustificadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inmolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"innavegable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"inoperable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insalvable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insalvables\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insatisfacible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insensibilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insincero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"insoportable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insostenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.191\"\n  },\n  \"instinto de muerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insulsez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"insulto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"insustancialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"intimidante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"investigación judicial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"invidente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"irrespetuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.217\"\n  },\n  \"ixódidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jeremiada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"jorobado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lado bueno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lado positivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamentablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lamentación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.068\"\n  },\n  \"lamentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"laringofaringe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lenguaje soez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"licopeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"lisiado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"litera de abajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"liza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"llevar duelo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"llorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"llorón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"loquera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"majara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"majareta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mala fe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mala jugada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maletudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"malintencionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.217\"\n  },\n  \"malograrse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mandibular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mangar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mantenerse fresco\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"manzana podrida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"marcha sindical\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"martirio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.068\"\n  },\n  \"mastalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"matar a tiros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"maximalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"megalomaníaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mequetrefe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"metralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"microsporidios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"misofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mitigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mixosporidios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mofador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"monstruosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"muela del juicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"multable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mundo del crimen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"muslo de pavo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"mutilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muyahid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"narcotismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"necedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"nefando\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"negro-azulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nictalopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ninfómana\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no comprometido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no demostrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no pagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no reconocido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no resbaladizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no resbaloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no saludable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"no tradicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"novato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"nubarrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"nubes de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"obseso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"odiosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ofenderse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"oftalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"oftalmía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"orden de ejecución\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ordinariez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"oscurecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"osteoporosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pajarraca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pajarraco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"palidecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paludismo hemolítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pandear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parafilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"paralogismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"parte inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patéticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"patético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pejiguero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pelafustán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pena capital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pena de muerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"penitenciario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pequeño burgués\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perecedero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perplejo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"perro mestizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"perrucho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"picotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"picotazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pifiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piloto de combate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piquetazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"piromanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pirosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"plomizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco cariñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco dispuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco estimulante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco excitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco femenino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco naturalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco ortodoxo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco saludable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco simpatizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poco solidario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poeta elegíaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"poltergeist\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ponerse tenso\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"por accidente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"por ahora\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"por azar\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"posse comitatus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prevaricación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"prodrómico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"producción insuficiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"profanidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"profesor agregado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pronóstico médico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"proteinuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"provisionalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"psicopatología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"punto débil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puñetazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puñete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"puñetero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pájara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pérdida del autocontrol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"pícara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quebradero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quebradero de cabeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"queja constante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quejica\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quejicoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quejosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quejumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quemadura de segundo grado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"queratalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"querencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"quijotesco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rarito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rascada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rascadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rasposo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reclamar legalmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"recurrente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"redoble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"reducción de precios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"refocilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"regodeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"reino monera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rencoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.125\"\n  },\n  \"repelón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"replegarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"reprensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"requiescat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"resabio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"retraïdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"ropa de luto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"rusticidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"rutinario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.265\"\n  },\n  \"sabotaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"salobre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"saturnino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"scratch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sin comprobar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sin demostrar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sin evidencia\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sin pruebas\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sin sentido\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sobreexcitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sobresalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sociopático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sofisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"sofocador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sordera de transmisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sordo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.088\"\n  },\n  \"speakeasy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stogie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"stogy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subalimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subproducción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"subyugado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sueño eterno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"suicidarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"superstición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome de Cushing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"sínfisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"taberna clandestina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tanatofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"teatro de revista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"teniente de policía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terracota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"terrorismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"thuggee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tono áspero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tormenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.072\"\n  },\n  \"torpedear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"toxicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.088\"\n  },\n  \"trabajo sucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traducción incorrecta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trastornado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.191\"\n  },\n  \"trastorno de personalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno metabólico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trato inhumano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"traumático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.177\"\n  },\n  \"treno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tribunal superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"trifulca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tristemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.191\"\n  },\n  \"tullido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tunco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"turbador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"tórtola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"urodinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vacunado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vamos\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vena sigmoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vencido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vermut dulce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vermú dulce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vermú negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"viciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vieja bruja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vieja fea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"viejuja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"viento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.144\"\n  },\n  \"vileza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.144\"\n  },\n  \"vituperioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"vociferación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"voluntariedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"voluntarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"volátil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"víctima mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zambombo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zarrapastroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"zona peligrosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.5\",\n    \"std\": \"0.0\"\n  },\n  \"abad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abadesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abanderar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abandonarse a algo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abatible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abdicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ablandado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abonado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abonamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abotonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absorbible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abstemio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"absuelto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acallamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accesibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"aceitunado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achispado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acierto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"acomodación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"acomodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.157\"\n  },\n  \"acompañante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acoplado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"acorazado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"acorazonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acordado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acordarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"acostumbrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"acristalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"actividad extracurricular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"activo de garantía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"actuado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acuerdo escrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acullá\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acumulativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"acústicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adaptabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"adaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"adaptar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.301\"\n  },\n  \"adecuar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"aderezar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"adherente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiestrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adiestrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adoxografía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adquirible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adulto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"aerobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aerotransportado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afeminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"aficionarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.086\"\n  },\n  \"afinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.36\"\n  },\n  \"afluencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.545\"\n  },\n  \"agasajar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"agil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agotable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agregado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.25\"\n  },\n  \"agua potable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aguafiestas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agudizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.088\"\n  },\n  \"ahusar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ajustado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.112\"\n  },\n  \"ajustar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.251\"\n  },\n  \"alado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"alcanzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alerta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfabetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aliciente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"aliento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.387\"\n  },\n  \"alineado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"allegro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allunyat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"allá\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alta fidelidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"altruísta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alucinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amaestrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amaestrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amamantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amarillo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amarillo canario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amatista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambivalente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambrosiaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ambrosíaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ametista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amigo por correspondencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amor fraternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amotinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ampliamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"amplio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.142\"\n  },\n  \"anacoreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaerobio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaeróbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analéptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anaranjado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anchura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"anejo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"anexo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.237\"\n  },\n  \"anfipróstilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anfiprótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anfípodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anfótero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"angélico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.619\"\n  },\n  \"aniñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antheraea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiadherente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiaéreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antitóxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiácido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antropofagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anuencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"análogo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"apaciguarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aparato acústico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apetitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.243\"\n  },\n  \"apical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplacamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.237\"\n  },\n  \"aplauso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"aplicabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apocárpico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"apreciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.246\"\n  },\n  \"aprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.359\",\n    \"std\": \"0.17\"\n  },\n  \"aprobar formalmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprovechable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprovechar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"arbitrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"arcano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"archimandita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"archimandrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argot\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argénteo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aristocrático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"aristotelismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aritméticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arlequinada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"armado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"armonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.311\"\n  },\n  \"arrollador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arte teatral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artefacto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesanal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artesanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"artístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.505\"\n  },\n  \"ascendente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"ascendiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"aseado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"asegurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aserrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asesor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asesora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asibilación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asimilable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asimilador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"asintomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asistido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asociado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"asombro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.402\"\n  },\n  \"asombroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.217\"\n  },\n  \"astado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asustadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.282\"\n  },\n  \"ataráxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataviarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"atención de enfermería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.341\",\n    \"std\": \"0.141\"\n  },\n  \"atestado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atribuible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atuendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atávico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"audibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"augusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"autentificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"autofecundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autogénesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"automatizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autopolinizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autorizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.437\",\n    \"std\": \"0.129\"\n  },\n  \"auténtico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.213\"\n  },\n  \"auxilio\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"avanzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.249\"\n  },\n  \"avanzarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"avançat\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"avispado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"ayuda\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ayuda exterior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ayudado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ayudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"azul celeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"añadible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bactericida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balance final\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ballet clásico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balonvolea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"barrigudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"barrigón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bastar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beatitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benchmark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beneficiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.402\"\n  },\n  \"beneficios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"beneplácito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"benignidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"benigno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.359\"\n  },\n  \"bermejo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bienhablado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"billete de autobús\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"billete de tren\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bimestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"biologismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bioluminiscente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bioquímico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bipartido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blasonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bocón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bonanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"bondadoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.357\",\n    \"std\": \"0.152\"\n  },\n  \"boquiabierto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"borrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brillante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.49\",\n    \"std\": \"0.158\"\n  },\n  \"bruno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brutal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.264\",\n    \"std\": \"0.305\"\n  },\n  \"brío\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"buena prenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buena racha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buena suerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"buenas noticias\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buenaventura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"butiráceo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caballerosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caballería medieval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabalístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cachet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caer a plomo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calcular cumulativamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"calentar el banquillo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caliente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.161\"\n  },\n  \"caligrafía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"calmante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"cambiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.217\"\n  },\n  \"caminito de rosas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camino de herradura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camino de rosas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"campanilleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canción religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canibalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"canon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"canonizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cantar las alabanzas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"canto de villancicos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.307\",\n    \"std\": \"0.244\"\n  },\n  \"capacitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"capado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.277\"\n  },\n  \"carioca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carisma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carmesí\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carminativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carácter festivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"castigador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"castrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casuística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casuístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catequesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"catequizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cañón antiaéreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celebración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"celebridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centelleante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"centralizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"centro de actividades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"centrípeto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cepillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ceremonia religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cereza\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerrar con pestillo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerrar puntos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"certificado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"ceñido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"chanchullero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"charlotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chauvinista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicatrizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"científico espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cigomorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cinta azul\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cintilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"circunstancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"circunstanciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"civil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"clandestino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clarificativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"claro\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clasista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"claudicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.188\"\n  },\n  \"clo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.227\"\n  },\n  \"coactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cobrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"codiciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coercitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coexistente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coextensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cognitivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coherencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"coherente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.144\"\n  },\n  \"coincidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"cojinete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colectivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"colorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"coloreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colosal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"columnario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"combinable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"combinador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"combinatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comburente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comerciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"como contestación\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comodidades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"compartimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"compatibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"competencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.277\"\n  },\n  \"completado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"completo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.186\"\n  },\n  \"comprensibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"compresible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comprobado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"comprometido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"compromiso matrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comunicativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.329\"\n  },\n  \"comunidad de intereses\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con bastante seguridad\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con certeza\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con colores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con seguridad\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"con vivacidad\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concentrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.177\"\n  },\n  \"concepto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concertación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concienzudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"concierto benéfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concomitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condecorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conducido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confiabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"confidencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.243\"\n  },\n  \"confinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.188\"\n  },\n  \"confluente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.12\"\n  },\n  \"conformista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confucionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"confundido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"congratulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"conjeturable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conjetural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conmemoración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conmemorativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conmensurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conmovedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.0\"\n  },\n  \"conmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"conmutativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"connivencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.125\"\n  },\n  \"conocedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conocido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conocimiento general\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conocimiento práctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conquistable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"consagrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.161\"\n  },\n  \"consagrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"consciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"consciente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consecuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.315\"\n  },\n  \"consenso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"consideración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.341\",\n    \"std\": \"0.256\"\n  },\n  \"considerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.088\"\n  },\n  \"consolidado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"consonante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.217\"\n  },\n  \"consonante sibilante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.299\"\n  },\n  \"constatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"constitutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"constrictivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consultora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"contagioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.237\"\n  },\n  \"contar con\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contemplativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contemporizador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"contradecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contraer esponsales\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contrato unilateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"control de calidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contumaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contundente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"convencionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"convenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"convenir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.258\"\n  },\n  \"convento de monjas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"convidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convincente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"cornudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"correctamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corredero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"correspondiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.171\"\n  },\n  \"corroboración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"corroborar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.143\"\n  },\n  \"corruptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"corruptor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cortejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.25\"\n  },\n  \"cortejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.331\"\n  },\n  \"cortesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.137\"\n  },\n  \"cosmético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creación artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credencial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"credibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"creíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"cristiano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crujiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cruzarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"crónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"cuadrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.125\"\n  },\n  \"cuadriculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cualificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.331\"\n  },\n  \"cualitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuaresmal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cucufato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuerdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuidado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"cultivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"culturalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"culturista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cum laude\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cumplido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"cumplidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"cumplir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.219\"\n  },\n  \"cumulativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuneado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.185\"\n  },\n  \"curiosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"curso de extensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"curvilíneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"cívico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.368\"\n  },\n  \"código ético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cóncavamente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"córner\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dacrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danza ceremonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danza ritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar alojamiento\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"dar cuerpo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar cuidados\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar de mamar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar derecho a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar el chivatazo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar el sustento\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar frutos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar la palabra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar pistas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar tajos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar una pista\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"darse cita\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de acuerdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de forma espesa\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de término\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"debido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"decidido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.112\"\n  },\n  \"decisivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"declaración verdadera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"declarado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"definido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.215\"\n  },\n  \"definitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"degenerado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dejar pasmado\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delantera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.292\"\n  },\n  \"delectación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deleitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deleitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.26\"\n  },\n  \"deleite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deliberado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"deliberativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delicioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.217\"\n  },\n  \"delineado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delinear\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deltoide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demagogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demasiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"democrático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.382\"\n  },\n  \"demostrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"denominacionalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"densificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dependiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"depravado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.26\"\n  },\n  \"depresivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derecho a la libertad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derecho de alimentos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derivativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desagraviar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desarrollado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"desbastado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descentralizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desclasificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desconectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.292\"\n  },\n  \"deseabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desempañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desencaminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desencantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desencorvar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"desestima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desfavorecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshumanización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshumano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desinfectante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desintegrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desligado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"deslizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"desmitificar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desobstruido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despabilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despenalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"despierto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desposar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"desposorios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desprender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.217\"\n  },\n  \"desprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"destacado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.389\",\n    \"std\": \"0.165\"\n  },\n  \"destacarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destituible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desvelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"desvitalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"determinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.157\"\n  },\n  \"determinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"determinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diabático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diacrónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diagonalizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"dicynodontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dieta equilibrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diferenciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dignarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diligente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"diminuir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dinámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.286\",\n    \"std\": \"0.213\"\n  },\n  \"diplomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.505\"\n  },\n  \"directo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.26\",\n    \"std\": \"0.16\"\n  },\n  \"discernidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disciplinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"discriminador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discriminatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"disculpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discutible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.105\"\n  },\n  \"disoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disponible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.105\"\n  },\n  \"dispositivo acústico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disputador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disyuntivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divergente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"diversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"divino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.194\"\n  },\n  \"división de honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divorciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divulgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"divulgativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diálisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doctrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"documentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"domesticado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"domesticar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doméstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"doula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dramático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.259\"\n  },\n  \"dulzaino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dulzarrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dulzón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"día de San Valentín\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"día de los enamorados\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dócil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.396\",\n    \"std\": \"0.102\"\n  },\n  \"ebrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"económico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.339\",\n    \"std\": \"0.28\"\n  },\n  \"ecrina\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ecuanimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ecuménico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"editar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.26\"\n  },\n  \"edén\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eficacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"eficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ejemplar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.289\"\n  },\n  \"ejercitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el único\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elaborado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"elasticidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"elegancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.233\"\n  },\n  \"elegante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.125\"\n  },\n  \"elegido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"elevado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.258\"\n  },\n  \"elisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elitista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elogiador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elogiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"elogio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"elucidativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elíseo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emancipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emasculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embriagado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eminente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.0\"\n  },\n  \"emocionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"emocional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"emocionalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empacado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empaquetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"emparentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"empatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"en consecuencia\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en el clavo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en respuesta\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en términos acústicos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en términos culturales\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en términos musicológicos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enaltecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.12\"\n  },\n  \"encantarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encanto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.153\"\n  },\n  \"encarecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"encargado de comedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encargado de restaurante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encerrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.237\"\n  },\n  \"encojinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomiasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encomio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encriptado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endosante por aval\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"endógamo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"energía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.202\"\n  },\n  \"enfocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"enfático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.125\"\n  },\n  \"engordado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engrandecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engrilletar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enhorabuena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"enlazable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enlazado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enmoquetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ennoblecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enorme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.0\"\n  },\n  \"enriquecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"enrojecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensalzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.451\"\n  },\n  \"ensimismado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entendido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enternecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.203\"\n  },\n  \"entrenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrenamiento autógeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entusiasmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"envasado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envolvente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envolver para regalo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"envuelto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enérgico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.342\",\n    \"std\": \"0.118\"\n  },\n  \"epizoótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equidistante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equilibrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.0\"\n  },\n  \"equipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.2\"\n  },\n  \"equipar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"equivalencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"equivalente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.25\"\n  },\n  \"eremítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"eréctil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"esbelto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"escarlata\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escenotecnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escrupulosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"escrupuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.102\"\n  },\n  \"escuela parroquial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"escuela religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"escultural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.27\"\n  },\n  \"esmerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espabilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.063\"\n  },\n  \"espacioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.102\"\n  },\n  \"especial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.25\"\n  },\n  \"especialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.313\"\n  },\n  \"especialista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"especializarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espectacular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"específico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"esplendor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.274\"\n  },\n  \"esprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estabilizarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.188\"\n  },\n  \"estar de acuerdo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"estar dispuesto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estereofónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estertoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estratégicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estudios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estándar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.12\"\n  },\n  \"estéreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eucariótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eulogio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.431\",\n    \"std\": \"0.146\"\n  },\n  \"evocador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"evocativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exactitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.112\"\n  },\n  \"exaltante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exaltar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.12\"\n  },\n  \"excepcional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.32\"\n  },\n  \"excitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"excitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.153\"\n  },\n  \"exclusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"exculpado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"existente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.105\"\n  },\n  \"exonerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exonerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.375\"\n  },\n  \"expectante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"experiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"expiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"explicativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"explicitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"explotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"expositivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"expresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"expreso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"exquisitez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.12\"\n  },\n  \"exquisito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.153\"\n  },\n  \"extensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.189\"\n  },\n  \"extrafino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"extragrande\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extralargo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extraordinario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extravertido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extrovertido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exuberante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.271\"\n  },\n  \"fabuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.361\"\n  },\n  \"familiarizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fantasioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"favorito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.0\"\n  },\n  \"federado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"felicitaciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"felicitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"felicitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenómeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"festivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"fiabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"filatélico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filetear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filogenéticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filohelénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filosofía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"filosóficamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"finalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"fino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.384\",\n    \"std\": \"0.266\"\n  },\n  \"finura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.102\"\n  },\n  \"flexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.341\",\n    \"std\": \"0.238\"\n  },\n  \"flexional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"florecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.483\"\n  },\n  \"floreciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.315\"\n  },\n  \"fluido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"flujo de trabajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fluorescente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fomentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.4\"\n  },\n  \"forense\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.398\",\n    \"std\": \"0.236\"\n  },\n  \"formalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.168\"\n  },\n  \"formalidades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fornido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.105\"\n  },\n  \"fortificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"forzudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fosforescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"franco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.283\"\n  },\n  \"fructífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frugal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"fuerza moral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funcional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.186\"\n  },\n  \"furgoneta de reparto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fé\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fíat\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"físico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.286\",\n    \"std\": \"0.173\"\n  },\n  \"gacela persa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ganancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.277\"\n  },\n  \"garantía subsidiaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garbo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.157\"\n  },\n  \"gastrónomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genealogista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"generador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"generosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.056\"\n  },\n  \"generoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.125\"\n  },\n  \"gentileza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.331\"\n  },\n  \"genus antheraea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"germicida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glamuroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glaseado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"global\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.347\",\n    \"std\": \"0.246\"\n  },\n  \"gloria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"glorificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gluglú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glutinoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"gnóstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"goce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"golpe de efecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpe maestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gomoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"gorrear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gorronear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gourmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gozada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grado óptimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"graficación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gran\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.338\",\n    \"std\": \"0.195\"\n  },\n  \"gran pureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grana\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grande\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.132\"\n  },\n  \"grandeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.263\"\n  },\n  \"grecófilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gregario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"gritar de alegría\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grácil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"gurmet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gustoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"género Gobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"habilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.429\",\n    \"std\": \"0.227\"\n  },\n  \"habilidad manual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"habilitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.315\"\n  },\n  \"habituado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"habitual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.152\"\n  },\n  \"hablado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"hacer disponible\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer frente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer la vista gorda\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer sonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un dado\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hallazgo fortuito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hazaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"hebdomadario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hechizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"hecho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hedonismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hermético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"heterosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hi-fi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrófobo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hifi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higrofítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"higrófilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperpigmentación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertiroidismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipnotizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"hobby\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.619\"\n  },\n  \"hogareño\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"holgura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.304\"\n  },\n  \"holometábolo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hombre de peso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homogéneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hondo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"honestidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"honesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.146\"\n  },\n  \"honorario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honorarios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"hosanna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hospedador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanidades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"humanista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"humorada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hápax\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hídrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"idolatrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ileso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.063\"\n  },\n  \"ilustrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"imitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"impecable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"implicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"importancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.166\"\n  },\n  \"impregnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impresionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impresionante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.105\"\n  },\n  \"impresionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprimatur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imprimátur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impulsado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impulsor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impune\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"in en contra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inalterado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"incansable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"incitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"inconfundible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"incontrolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.325\",\n    \"std\": \"0.112\"\n  },\n  \"incrementado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"increíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.217\"\n  },\n  \"indemne\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"indicativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.331\"\n  },\n  \"individual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.163\"\n  },\n  \"individualista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"individualizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"indivisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"indulgente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.105\"\n  },\n  \"industrializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"industriar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ineludible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"inequívoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.157\"\n  },\n  \"inestimable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"infantil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.227\"\n  },\n  \"infatigable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"infecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflacionista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflamable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"influenciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"influyente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.217\"\n  },\n  \"informativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"infrabastecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infrasónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ingeniero espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ingerir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inhibidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inigualado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmaculado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.072\"\n  },\n  \"inmanente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"inmenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inocentada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inocente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.222\"\n  },\n  \"inquiridor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquisidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquisitorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insonorizado\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspiracional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inspirador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instantaneidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"institucionalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"institución docente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"institución educacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instructivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"instrumental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"integrador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"integrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"integridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"integridad personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inteligencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.105\"\n  },\n  \"intencionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"intencionalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.289\"\n  },\n  \"intensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"intercambiabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intercambiable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"interconfesional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"interesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.545\"\n  },\n  \"intermolecular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"internarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"interno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.231\"\n  },\n  \"interpersonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"interpretativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intersexual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"interés personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"interés simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intrigante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"introvertido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"investigador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"involucrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"inyectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ir contra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ir de gira\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"irremediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"irreprimibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irreprimible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrompible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"isótropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"izado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jardín del Edén\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jerga\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jesuita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jesuítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jet set\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jocosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jocosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.265\"\n  },\n  \"jodido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jonrón\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jubileo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juntado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"junto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juramento hipocrático\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jurar renunciar a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justificadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lacrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lacónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"largo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.137\"\n  },\n  \"lavable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"laxar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.619\"\n  },\n  \"lazo azul\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lechero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"legitimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"legítimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.411\",\n    \"std\": \"0.125\"\n  },\n  \"lejano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.105\"\n  },\n  \"lente anastigmática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"liberalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"libertad de prensa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"libertario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"licenciarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lidiar con\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lila\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liliáceo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"limpiador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"limpio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liquidado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liquidador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lisonjear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"listo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.387\",\n    \"std\": \"0.15\"\n  },\n  \"liviano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llegar al nivel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lleno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.321\",\n    \"std\": \"0.134\"\n  },\n  \"lloricoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llovido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lo certero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lo directo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lob\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"longanimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"longevo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"longitudinalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loza china\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lucrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lucrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"lucro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ludita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lugar de interés turístico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lugarteniente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lujoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.313\"\n  },\n  \"lujurioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.19\"\n  },\n  \"luminosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"luminoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.0\"\n  },\n  \"lícito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.072\"\n  },\n  \"líquido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.163\"\n  },\n  \"lívido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lógica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.281\"\n  },\n  \"lúbrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"lúcido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"madre superiora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maduro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.453\",\n    \"std\": \"0.104\"\n  },\n  \"maestría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.239\"\n  },\n  \"magenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnificencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.326\"\n  },\n  \"magnánimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"majeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.354\"\n  },\n  \"malcasarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maleable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.217\"\n  },\n  \"malva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manejabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"manicura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manifiesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.094\"\n  },\n  \"manso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"mantenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mantenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"mantenimiento del coche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"manzana silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maravilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.363\"\n  },\n  \"marica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mariquita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marrullería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"masoquista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"matemáticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maullido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maximizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"maña\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.163\"\n  },\n  \"mecanismo acústico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mecenazgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medicinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meditativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megalomanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mejora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.328\",\n    \"std\": \"0.297\"\n  },\n  \"mejorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"mejorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.189\"\n  },\n  \"melódico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"memorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mendicante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"mente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"menudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"meritocracia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mesomorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"metalistería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meticuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.373\"\n  },\n  \"metódico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"miau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"microfonación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"milagroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"mimoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mimético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mirmecófilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moderno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.328\",\n    \"std\": \"0.176\"\n  },\n  \"modestia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"modificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"modificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"momentáneo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mono\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.298\"\n  },\n  \"monosémico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"montado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"monárquico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"monástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"moral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"moralizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.144\"\n  },\n  \"motivador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"movible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"muchachil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mucho pedir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mucilaginoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"mudra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mugido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mujer de peso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multiforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mundial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.209\"\n  },\n  \"musculoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"musical\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"musicológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mutabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mérito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.217\"\n  },\n  \"métrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"mímico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"móvil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"música clásica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"música pop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naranja\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"narrativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neoliberal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"nivelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no estreñido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no sectario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"normal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.157\"\n  },\n  \"normalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"notoriedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"novedoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"numinoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutricionalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nutrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.163\"\n  },\n  \"nítido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"nóstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obedecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.395\"\n  },\n  \"objetividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"objetivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"obsequioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"observado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"observador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obtenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obvia\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"obvio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.143\"\n  },\n  \"occidentalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocre\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ofertorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oficina de empleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oficio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.279\"\n  },\n  \"ok\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"okey\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oliva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oliváceo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oloroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.439\"\n  },\n  \"omitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"ondulante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopeico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"onomatopeya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"operativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"operatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oratorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.102\"\n  },\n  \"orgánico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.282\"\n  },\n  \"orientación religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orientador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"originalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ornamento arquitectónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"otorgar una mitra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oxidativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pacificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"pacto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.072\"\n  },\n  \"pacto de caballeros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palmear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pampa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panegirista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"panóptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parangón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parchís\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.063\"\n  },\n  \"participante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"particular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.33\"\n  },\n  \"partidista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"partido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.52\"\n  },\n  \"pasar sin dificultad\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pase completo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paseata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasiva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.354\"\n  },\n  \"pasmoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"pastizal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pastura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paternalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"paternalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patidifuso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patitieso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patriotero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrón oro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"pedir\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pegadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.144\"\n  },\n  \"peinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"penetrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"pensión alimenticia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pentecostalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"percepción del sonido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.072\"\n  },\n  \"perdonable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfeccionamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfeccionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.425\",\n    \"std\": \"0.105\"\n  },\n  \"perfección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.204\"\n  },\n  \"perfilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perfumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.439\"\n  },\n  \"pericia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.094\"\n  },\n  \"perigeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"permisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"permiso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.213\"\n  },\n  \"perodicticus potto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persona emotiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"personificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.45\",\n    \"std\": \"0.158\"\n  },\n  \"perspicuidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perspicuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"persuasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pertinencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.191\"\n  },\n  \"pervertido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piano de media cola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.246\"\n  },\n  \"ping\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"placer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.304\",\n    \"std\": \"0.318\"\n  },\n  \"placer sexual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plan de emergencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plausibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plausible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"play-boy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"playboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"plus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polizón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ponderable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poner asientos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poner en movimiento\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"popular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.157\"\n  },\n  \"popularización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"porcelana china\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"posesión ilegal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"positivista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"potable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.442\"\n  },\n  \"potencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"potenciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.53\"\n  },\n  \"pragmatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pragmático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"preciarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"precisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.161\"\n  },\n  \"preconcertado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preconizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"predigerido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predilecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predispuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"predominante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"preeminencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"prefabricado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preferido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prejuzgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"preliterario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"premeditado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"prestaciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prestarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.277\"\n  },\n  \"presumible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presunto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.168\"\n  },\n  \"prevalecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.344\",\n    \"std\": \"0.12\"\n  },\n  \"prevenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"previsible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"primera división\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primeros auxilios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primerísima calidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"principal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.389\",\n    \"std\": \"0.104\"\n  },\n  \"principesco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"principio del placer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"priora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prisionero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"privado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"privilegiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"probable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.161\"\n  },\n  \"procesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"procreador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prodigio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.313\"\n  },\n  \"prodigioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"producción artística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profecía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"profesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.112\"\n  },\n  \"proficiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.129\"\n  },\n  \"profusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.619\"\n  },\n  \"programa de educación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"programa educativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"programa pedagógico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"progresista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proliferación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.415\"\n  },\n  \"proliferar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.577\"\n  },\n  \"prolongado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prometer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"prometerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronombre personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proporcionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.168\"\n  },\n  \"protector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"provechoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"proveer de personal\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"providencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.26\"\n  },\n  \"pruebas circunstanciales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"prístino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"próstilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicoterapéutico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.619\"\n  },\n  \"pueblerino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puericultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulcro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"pulimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.459\"\n  },\n  \"puntilloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.361\"\n  },\n  \"puntualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"puro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.409\",\n    \"std\": \"0.128\"\n  },\n  \"purulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"putativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"público\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.072\"\n  },\n  \"quedar pasmado\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quincenal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quirúrgico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.191\"\n  },\n  \"qì\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racemoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racionalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"racista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.25\"\n  },\n  \"rapidez mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rascuñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rasguear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rasgueo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rasguñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raspado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ratificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"raudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"razonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.26\"\n  },\n  \"reactivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reanimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.266\",\n    \"std\": \"0.323\"\n  },\n  \"reavivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rebasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rebosante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"recabar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recaudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"rechino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recomendación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.056\"\n  },\n  \"recomendar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"recompensa al mérito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reconocible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.072\"\n  },\n  \"reconocido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.429\",\n    \"std\": \"0.236\"\n  },\n  \"recrearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"rector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"red de seguridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"redefinir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"redentor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"redimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.442\"\n  },\n  \"redomado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reductible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reemplazable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"referendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"referéndum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.361\",\n    \"std\": \"0.121\"\n  },\n  \"refinamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.4\",\n    \"std\": \"0.338\"\n  },\n  \"reformista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reforzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.277\"\n  },\n  \"refrendación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refulgente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regalonear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regenerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regenerador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.382\"\n  },\n  \"regenerarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.125\"\n  },\n  \"reglar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regodearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"regulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regulador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regularidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"regularizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"rehabilitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.217\"\n  },\n  \"reinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reincidente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relajante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"relinquir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reluciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"relucir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.143\"\n  },\n  \"rememorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.191\"\n  },\n  \"remilgado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reminiscente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remota\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"remunerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"remunerativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renaciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renombre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renovado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reparar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"repique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reproductor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repujado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reputar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.442\"\n  },\n  \"requerido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"requisición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rescatable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"resituado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"resonante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"respaldar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.209\"\n  },\n  \"respeto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.234\"\n  },\n  \"respetos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"respuesta habilidosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"restablecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"restrictivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.072\"\n  },\n  \"resuelto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.472\",\n    \"std\": \"0.108\"\n  },\n  \"resumidamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retentivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"reticente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"retratado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retrotaer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retráctil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reutilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"revelado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reverberante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"reverdecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reversible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.259\"\n  },\n  \"revertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revocable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revoltoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"revolucionario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"rico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.356\",\n    \"std\": \"0.185\"\n  },\n  \"rigoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"riqueza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.345\"\n  },\n  \"rito religioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"robustez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"robusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.391\",\n    \"std\": \"0.205\"\n  },\n  \"rojo-rosado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rollizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"rosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"rosado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"rosbif\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rubicundez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"runrún\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rápido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.318\",\n    \"std\": \"0.194\"\n  },\n  \"réplica ingeniosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rítmico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rústico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"sabido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sabroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.068\"\n  },\n  \"sacafaltas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"sacar partido\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sacar una muestra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saciarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sagrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"salero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.24\"\n  },\n  \"salud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"salvo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"sanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.198\"\n  },\n  \"sanidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sanitizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"santurrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"satinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"satisfaciente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saturnales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sazonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"secundar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.315\"\n  },\n  \"sedante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"segado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"segregado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"selección natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sello de aprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sello distintivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semanal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semanario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semejante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.354\",\n    \"std\": \"0.065\"\n  },\n  \"semestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semiautomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"semivocal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"senil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sensacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.331\"\n  },\n  \"sensatez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.357\",\n    \"std\": \"0.094\"\n  },\n  \"sensitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"sensual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.125\"\n  },\n  \"sentencia general\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sentido del bien y del mal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"separable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.072\"\n  },\n  \"separado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.144\"\n  },\n  \"separatista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"separativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ser campeón\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"serendipismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seriedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.275\",\n    \"std\": \"0.424\"\n  },\n  \"serrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"servicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.359\"\n  },\n  \"servicio de asesoramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"servil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"sesudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sexy\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"shag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sibilante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"significación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.217\"\n  },\n  \"silencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.072\"\n  },\n  \"simetría\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"similar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.35\",\n    \"std\": \"0.068\"\n  },\n  \"simulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"simétrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"sin pretensiones\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin árboles\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinceramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinceridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.243\"\n  },\n  \"sinecdóquico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sinfónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.53\"\n  },\n  \"sinónimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de grabación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema del gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soberbio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"sobrealimentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sobrecogido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobreexplotación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobresaliente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.472\"\n  },\n  \"sobresaltado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobreutilización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobrevalorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"sobrexcitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"social\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.393\",\n    \"std\": \"0.278\"\n  },\n  \"socializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"socialmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofisticado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.331\"\n  },\n  \"soleado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solemnidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.289\"\n  },\n  \"solicitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solicitar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.479\",\n    \"std\": \"0.33\"\n  },\n  \"solucionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solucionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solícito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"sonido vocálico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonoro\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.125\"\n  },\n  \"sonrisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sonrosado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.191\"\n  },\n  \"sospechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sprint\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"stigmatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suave al tacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suavidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.204\"\n  },\n  \"subjetivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"substancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"substancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"substituible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"substractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subsónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sucintamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sucinto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sugestionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sugestivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sumiso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.153\"\n  },\n  \"suntuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.361\"\n  },\n  \"superable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.0\"\n  },\n  \"superioridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.406\",\n    \"std\": \"0.2\"\n  },\n  \"superrefinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supersensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supervisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suplementario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"supositivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supremo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.063\"\n  },\n  \"suprimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suprimido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"surtir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"susceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.063\"\n  },\n  \"suspicaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sustituible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sustractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suturar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sólido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.329\"\n  },\n  \"sónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"talante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.331\"\n  },\n  \"talento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.451\"\n  },\n  \"taoismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tapa de objetivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"techie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tecnológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"telescópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tempestivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tendencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.072\"\n  },\n  \"tentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terapia autógena\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"terso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terylene\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"testado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ticket\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"tiempo reglamentario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tintineante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.072\"\n  },\n  \"tipicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tique\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tirotoxicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"titulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"titánico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"tolerante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.153\"\n  },\n  \"tomar para sí\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tomarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tostado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traje de campaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilizarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"transcendencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.191\"\n  },\n  \"transformable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transformado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"transmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasparencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"tratado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tratado internacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tratamiento de belleza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trienal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trisecar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trisectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"triunfar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.26\"\n  },\n  \"tropismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trípode de cámara\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tuerto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tutelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"técnicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"típico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.213\"\n  },\n  \"tórrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.177\"\n  },\n  \"ultramoderno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ultrasónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unanimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ungidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"unido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.391\",\n    \"std\": \"0.134\"\n  },\n  \"unitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"universal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.271\",\n    \"std\": \"0.188\"\n  },\n  \"unión aduanera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"urbanidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.475\",\n    \"std\": \"0.125\"\n  },\n  \"usado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.144\"\n  },\n  \"usura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"utilitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"utilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"utopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.237\"\n  },\n  \"vacaciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vajilla de porcelana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"validación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"validar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.102\"\n  },\n  \"validez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.402\"\n  },\n  \"vasto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.088\"\n  },\n  \"vaticinio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.144\"\n  },\n  \"vehemente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.0\"\n  },\n  \"vendado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.12\"\n  },\n  \"veneración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"ventaja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.211\"\n  },\n  \"veracidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"veraneante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.274\"\n  },\n  \"verdaderamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdadero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.453\",\n    \"std\": \"0.188\"\n  },\n  \"verde-amarillento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde-amarillo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde jade\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde salvia\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdemar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdigris\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.177\"\n  },\n  \"verosímil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.072\"\n  },\n  \"versátil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.289\"\n  },\n  \"verídico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.402\"\n  },\n  \"veste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vestido de cóctel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viaje de lujo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viaje de placer\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vigoroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.177\"\n  },\n  \"villancico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.0\"\n  },\n  \"villancico de navidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vino de misa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"violable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virgen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.265\"\n  },\n  \"virginal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.417\",\n    \"std\": \"0.144\"\n  },\n  \"virtual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"virtuosismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"visar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.177\"\n  },\n  \"viscoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.281\",\n    \"std\": \"0.063\"\n  },\n  \"visible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.458\",\n    \"std\": \"0.125\"\n  },\n  \"visto bueno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vistoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.265\"\n  },\n  \"vital\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.464\",\n    \"std\": \"0.157\"\n  },\n  \"vitalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.344\"\n  },\n  \"vitalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"vivace\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.184\"\n  },\n  \"vivaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.469\",\n    \"std\": \"0.146\"\n  },\n  \"vivazmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viveza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.268\",\n    \"std\": \"0.098\"\n  },\n  \"vivificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.438\",\n    \"std\": \"0.265\"\n  },\n  \"vivir a costa de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivir de gorra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.33\",\n    \"std\": \"0.188\"\n  },\n  \"voleibol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"volitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluminoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.292\",\n    \"std\": \"0.0\"\n  },\n  \"volumétricamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"voluntario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"vírgen\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vítor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.088\"\n  },\n  \"vítores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vívido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"yoga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.088\"\n  },\n  \"zigomorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ágil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.479\",\n    \"std\": \"0.094\"\n  },\n  \"ángel custodio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ángel de la guarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"área de conocimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"épico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.354\"\n  },\n  \"étnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"éxito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.3\",\n    \"std\": \"0.143\"\n  },\n  \"éxito absoluto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ídolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.313\",\n    \"std\": \"0.12\"\n  },\n  \"índice de precios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.375\",\n    \"std\": \"0.0\"\n  },\n  \"único\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.333\",\n    \"std\": \"0.125\"\n  },\n  \"a la defensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a primera vista\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abalanzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abenuz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abominable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.354\"\n  },\n  \"abominador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aborrecedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aborto inminente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abrumar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.361\",\n    \"std\": \"0.178\"\n  },\n  \"absentista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"abuchear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"abucheo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"abusador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"abusar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"abuso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"abusón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acaudillar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"accidente cerebrovascular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de absenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aceite de bacalao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acero damasquino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achicarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"achicharrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"acibarar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acinesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acinesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acondroplasia\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acre\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.143\"\n  },\n  \"acromegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"acuafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adamantino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adefesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"adenomiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adenopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adivinanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"adusto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"adversidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.105\"\n  },\n  \"adverso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"advertencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.125\"\n  },\n  \"afasia visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"afear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"afonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"afrentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"afrontar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.072\"\n  },\n  \"afótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agobiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"agrandado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"agravamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"agravarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agrazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"agreder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agresivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"agresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"agrio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.163\"\n  },\n  \"ahogado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alarmante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"alborotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alborotador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"alero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alfilerazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"algarabía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"algarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alguacil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"alguna parte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"algún lugar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alifafe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aliviado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"aljófar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"almorranas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"alocado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alpende\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"altanero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"alterar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.067\"\n  },\n  \"alucinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amanita mappa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amargado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"amargo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.12\"\n  },\n  \"amañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.0\"\n  },\n  \"ambiguo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.157\"\n  },\n  \"ambliopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amenaza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.102\"\n  },\n  \"amenaza de aborto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amenazadoramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"amenazar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"amilanamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amiloidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"amonestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"amotinarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ampulosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"ampuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.217\"\n  },\n  \"analfabeto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"analgesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"analgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"andanada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"andesita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anemia perniciosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anestésico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anginas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aniquilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aniquilador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anonadar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"anosmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"antagonista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"antecocina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anticipador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antihigiénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antiintelectual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"antiprotón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antracita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"antracosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anurético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"anósmico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"apalear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"aparentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"apatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.12\"\n  },\n  \"apenas\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"apestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aplastarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"apocalíptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"apocarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apoplejía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprehensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"aprehensión inmediata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aprisionamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apráctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apráxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"apuñear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apuñetear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"apático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"aquafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arduidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"argucia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"argumentos especiosos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arreflexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrobar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arrogante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arruinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.319\",\n    \"std\": \"0.088\"\n  },\n  \"arseniato de plomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arsina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria alveolar inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"arteria labial inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulación temporomandibular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"articulatio temporomandibularis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artificio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"artrálgico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asbestosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asertividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asesinato ritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asesino a sueldo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asistolia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"asonada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aspergilosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"asquerosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"astenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"astracanada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atacar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.163\"\n  },\n  \"atacar por sorpresa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.307\",\n    \"std\": \"0.067\"\n  },\n  \"ataque al corazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataque aéreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ataxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atormentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"atosigador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"atracción alternativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atraco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"atrapamoscas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atrapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.341\",\n    \"std\": \"0.075\"\n  },\n  \"atrevimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.115\"\n  },\n  \"atrocidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.328\",\n    \"std\": \"0.104\"\n  },\n  \"atufamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"atufo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"aturrullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aturullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"atípico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"audaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"audífono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"auto de fe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autocastigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"autoflagelación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"autopsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"avaricia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"avasallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aventura riesgosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"aviso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.068\"\n  },\n  \"azabache\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"azoramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"azotar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.051\"\n  },\n  \"babera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"babucha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriólisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"badulaque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"baja calidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"baja deshonrosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bajas presiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bajeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"bajista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bajura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"baldón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"balizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bandido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"banshee\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"banteng\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barahunda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbarie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"barbarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barbulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"barrera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"barrila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"bastardía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"batahola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"batalla campal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"batalla de Brunanburh\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Jena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"befarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bemol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bicho raro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"bigardía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blocao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"blooper\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bloqueo mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bobales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bobalicón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.056\"\n  },\n  \"bobo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"bocanada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bolsa de aire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bono basura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrasca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"borrascoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"borrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bos javanicus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"botarate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"boxeador de segunda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bramar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braquidactil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"braquidactilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brazal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"brazalete de tobillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brega\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"bribón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.102\"\n  },\n  \"bronca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.068\"\n  },\n  \"brote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brusquedad\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"brutalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"bruto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"buey salvaje indonesio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bujarra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bujarrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"bullanguero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"bulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"burguesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"burro de carga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"buscar defectos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"butterscotch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabeceo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabestrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabeza abajo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabeza de chorlito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"cabeza hueca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cabrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.061\"\n  },\n  \"cacao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.112\"\n  },\n  \"cacería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"cachete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"cacodemónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cagada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calamidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.125\"\n  },\n  \"calavera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"calcitonina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"callosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calvario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"calvatrueno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"calzoncillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camandulero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camino de carro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"camorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"camorrista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"canalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.092\"\n  },\n  \"cansar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"cantada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capataz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"capital de las Vanuatu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cara dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbonilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"carburo de hierro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.0\"\n  },\n  \"carbón ardiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carbón vegetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiomegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cardiomiopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cariado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cariat\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caries\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"carina fornicis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carlanca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"carnicería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"carroña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"carvedilol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cascote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caseoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"casiterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"castigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"castigo corporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cataclismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"catalepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catastróficamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"catastrófico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"catástrofe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cazador de ambulancias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"caótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.217\"\n  },\n  \"cefalalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cefalea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"celecoxib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cementita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ceniciento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"cenizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cenizoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"censura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.337\",\n    \"std\": \"0.119\"\n  },\n  \"ceporro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"cerdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerrar ruidosamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"certero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cerveza negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cetonuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cetosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chabón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"chaleco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"chancearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chancla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaparro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"chapucear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chapucero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"chapucería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"chapurreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chaqueta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"charrada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chiflado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"chinela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chirona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chocar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.1\"\n  },\n  \"chotearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chulería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chungearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chupa-chups\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"chupachups\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"churrete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ciclotimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ciclón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"cilicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cimbel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cinéreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"citólisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clamor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"clase media\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clinopodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"clámide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coadyuvar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"cobarde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"cobardía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"codo de tenis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coger al toro por los cuernos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"coger frío\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cojear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"colgamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"columbiforme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"comadreja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"complejidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"con detalle\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"concepto erróneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.08\"\n  },\n  \"condena por robo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condena por violación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condenación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"condenado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"condenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.098\"\n  },\n  \"conflictivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"confrontación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.047\"\n  },\n  \"congestivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"conmutación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conmutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"conocimientos elementales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"conservación del suelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"consumirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.151\"\n  },\n  \"contaminante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contenidamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"contrabajo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contraerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"contratiempo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.425\",\n    \"std\": \"0.163\"\n  },\n  \"control de daños\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"contusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"convicto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cooperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"corea de Huntington\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"craso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"crema agria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crema ácida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cremación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criminal de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"criticar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.139\"\n  },\n  \"crucificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"crucifixión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"crudeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"crudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.131\"\n  },\n  \"cruz de Lorena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"crítica  insignificante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuerno inglés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cutrería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cuón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyberpunk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"danza de la muerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar punzadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar un escarmiento\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar un golpecito\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dar un puñetazo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dar un rodeo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"dar una paliza\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"dar zarpazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.112\"\n  },\n  \"daños colaterales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de agua dulce\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de cualquier manera\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de forma andrajosa\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de forma cortante\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"de manera andrajosa\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"debacle\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"debilitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.086\"\n  },\n  \"declarar demente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"declarar fuera de combate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"decrépito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"dedil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"defensividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deformidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"degenerarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.289\"\n  },\n  \"degradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.102\"\n  },\n  \"dejar inconsciente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dejar sin sentido\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dejarse ir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dejarse llevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"delincuencia juvenil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delincuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"deliquio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"delirantemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demandar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"demoledor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"demoniaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"demoníaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"denigración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.129\"\n  },\n  \"depreciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"depósito de cadáveres\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derogar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derrisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derroche de dinero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"derrotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"derrumbarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.051\"\n  },\n  \"desabrigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"desacato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaconsejable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"desacostumbrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desacreditar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.072\"\n  },\n  \"desafiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.142\"\n  },\n  \"desafío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.125\"\n  },\n  \"desagrupado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaliño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"desambiguación léxica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaparecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"desaprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.188\"\n  },\n  \"desaprovechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desaseado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desaseo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desastrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desastre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.088\"\n  },\n  \"desastroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"desatento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.184\"\n  },\n  \"desazonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"desbarajuste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descamisado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"descoloración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"descomponer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.042\"\n  },\n  \"descompuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.265\"\n  },\n  \"desconcertado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"desconocido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.328\",\n    \"std\": \"0.115\"\n  },\n  \"desconocimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.217\"\n  },\n  \"desconsideración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.217\"\n  },\n  \"descontaminar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descontento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"descoordinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descortésmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"descuidadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desdeñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.125\"\n  },\n  \"desequilibrio psicosomático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"desertificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desestabilizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desfachatez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"desfigurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.068\"\n  },\n  \"desgana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"desgarrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desgarrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"desgobierno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"desgracia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.409\",\n    \"std\": \"0.088\"\n  },\n  \"deshabituado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deshechos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desierto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"desigual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.273\",\n    \"std\": \"0.113\"\n  },\n  \"desigualdad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"desindustrializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desinformación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desintegrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmadejamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmayarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmayo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desmaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"desnutrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desobediente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"desobligar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"desolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.146\"\n  },\n  \"desorden inmunológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desordenado\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desordenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.063\"\n  },\n  \"desorganización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desorganizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.144\"\n  },\n  \"desorientación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"despectivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despedido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desperdiciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"desperdiciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despilfarrador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"despolarizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"despreciativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"desprestigiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"desprestigio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.217\"\n  },\n  \"desprevenido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.19\"\n  },\n  \"desquitarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"destechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"destrozar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.452\",\n    \"std\": \"0.083\"\n  },\n  \"destrozarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"destrozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"destruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.083\"\n  },\n  \"desunión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"desventura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"desviar la mirada\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"detención ilegal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"deteriorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"deterioro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.287\",\n    \"std\": \"0.079\"\n  },\n  \"detrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"detritus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"devastación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.142\"\n  },\n  \"devastar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"dextrocardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diablo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.137\"\n  },\n  \"diabético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didanosina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difamación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"difteria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dilapidación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"diputado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"disco duro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disco duro extraíble\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"discordancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"discutirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.063\"\n  },\n  \"disentimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"disfagia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disfonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disiparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"disminuido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"disosmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"disparates\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"dispendio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dispendioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"disputa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"disputar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"disturbio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"disuasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"dividir en tres\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dogfight\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolce far niente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"doliente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"dolo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolor de cabeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"dolor de pecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolor torácico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dolores del parto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dosis letal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"draconiano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dracunculiasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"droga de diseño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogadicto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"drogodependiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"duplicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"durabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"dureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.287\",\n    \"std\": \"0.103\"\n  },\n  \"débil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.298\",\n    \"std\": \"0.112\"\n  },\n  \"ectopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"edema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el más allá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el más malo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"el peor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"electrocutarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"elegíaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"elucubración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"eléboro fétido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embalsamar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embarullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"embaucamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"embelesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embelezar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrocación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embrollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"embullo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"embuste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"embustero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empeoramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empeorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.144\"\n  },\n  \"emperifollar vulgarmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"empresa peligrosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en solitario\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"en vez de\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enaguas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encabezado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encabritarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encefalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encefalopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"encontronazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.177\"\n  },\n  \"endeble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.065\"\n  },\n  \"endometriosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enemigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"enervación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"enfado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"enfermedad celíaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad de Addison\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad de la piel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad genética\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad neurológica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfisema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"enfisema pulmonar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engañado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"engañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.422\",\n    \"std\": \"0.129\"\n  },\n  \"engaño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.261\",\n    \"std\": \"0.118\"\n  },\n  \"engañoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.177\"\n  },\n  \"enmarañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"enredar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.133\"\n  },\n  \"enrevesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"ensañamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ensuciamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entiznarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"entrampar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"entredicho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"epicondialgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epicondilitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epidemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epididimitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epiglotitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia jacksoniana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equisetales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"equivocación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.047\"\n  },\n  \"equívoco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ergotismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erizarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"erosionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"error de pronunciación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"error garrafal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escabroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.153\"\n  },\n  \"escala beaufort\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escaqueado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escaramuza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"escarchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"escarmentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escarnio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.125\"\n  },\n  \"escasamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"escasez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.105\"\n  },\n  \"escoliosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escombros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escritor a sueldo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"escándalo público\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"espantajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espasmódicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"especioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"espeluznante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.159\"\n  },\n  \"esperanza vana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.0\"\n  },\n  \"esplenomegalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espástico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"espíritu maligno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"esquivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"estado natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estado salvaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.0\"\n  },\n  \"estafermo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estampida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estancado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"esteatopigia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estenosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estornudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estrellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.065\"\n  },\n  \"estrellarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"estremecimiento de dolor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estresado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.354\"\n  },\n  \"estridencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.144\"\n  },\n  \"estropear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.112\"\n  },\n  \"estropeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"estúpido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.232\"\n  },\n  \"etiolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"eunuco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"excurso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exigüidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"exoneración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"explosionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"expoliación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"expolio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"expósito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"exterminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"exterminador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extralegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"extraño al acorde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"faloplastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"falsa oronja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"falsedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.266\",\n    \"std\": \"0.115\"\n  },\n  \"falso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.257\",\n    \"std\": \"0.168\"\n  },\n  \"falta de memoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"familia Hydrobatidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"familia Machilidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fangal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"farfulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"fascioliasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fatuidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"fenecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenilcetonuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fenómeno natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fetidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"ficus sycomorus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre reumática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filariasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"filisteo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"finta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flaccidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flacidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flacura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flegmasía alba dolens\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"flor salvaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flor silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"flotar suavemente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fobofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"follón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.068\"\n  },\n  \"forajido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"forcejear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"formaldehido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"formaldehído\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"forúnculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fosgeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fotofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fracturar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"frambesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fraudulencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"frialdad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.102\"\n  },\n  \"frigidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"frustrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fuerza g\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"fulminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"fulminar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"funesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.161\"\n  },\n  \"fustigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"fúrunculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gallina\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"gamberro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"ganador inesperado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ganso común\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garambaina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"garlopa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garrafón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"garullada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gas tóxico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gasear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gastado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"gastar novatadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gazapatón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gazapera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus clinopodium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"genus zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gesto irónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"giardiasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gimoteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"glacialmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"glaucoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glumela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"glumilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gnatostomados\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpe de gracia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpe mortal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"golpear violentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gordo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gozque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"granizada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"granuja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.105\"\n  },\n  \"gratuito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.188\"\n  },\n  \"grave\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.19\"\n  },\n  \"gravedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"graves consecuencias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gregarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"greguería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"gremlin\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.153\"\n  },\n  \"gris-metálico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris ceniciento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris ceniza\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris perla\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"gris plateado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"griterío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"grito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"groseramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"gruñido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"gruñón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"guachafita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"guardainfante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"guerra fría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"género Acherontia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género Cuon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género Cyon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género Solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género asarum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"género zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"habón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer bascas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hacer erupción\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"hacer trampa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.065\"\n  },\n  \"hacerse polvo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"halitosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hallux valgus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hampón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"heder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"hemoglobinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemoglobinopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hemorroides\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herida accidental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herida superficial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herpes genital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herpes zoster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"herrumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrobátidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.125\"\n  },\n  \"hidromorfona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hidropesía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipercalciuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipercolesterolemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperemesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipermetropía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiperplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipertrofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipocalcemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipocondriaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipoglucémico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hiponimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipoparatiroidismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipospadias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipotónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipócrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hipócritamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"histerismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"histerocatalepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"homicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"horribilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horridez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"horterada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"hostilidades\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"huracán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"huérfano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"háptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"iclonoclasta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ignominia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ilegal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.313\",\n    \"std\": \"0.094\"\n  },\n  \"ilegalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"iletrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"imaginación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"imbecilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.144\"\n  },\n  \"impacción dentaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"impagado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imparable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impasibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"imperceptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imperfecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"impertubabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"imponer un castigo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"importuno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impostura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.056\"\n  },\n  \"impotente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impreciso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.146\"\n  },\n  \"imprevisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"improcedencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"improcedente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impromptu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"impugnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"impureza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"impío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.26\"\n  },\n  \"inacabable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inaceptabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inaceptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.153\"\n  },\n  \"inacostumbrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inadecuación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"inadoptable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inalcanzable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inalienable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"inarmónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"inasistencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inatacable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"incapacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.182\"\n  },\n  \"incapaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.112\"\n  },\n  \"incauto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incomparecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompasivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incompetente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.339\",\n    \"std\": \"0.183\"\n  },\n  \"incongruencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconmensurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inconmutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inconocible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inconquistable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"inconsciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.063\"\n  },\n  \"inconsciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.453\",\n    \"std\": \"0.148\"\n  },\n  \"inconsecuencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"inconsistencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.12\"\n  },\n  \"inconstancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inconstante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.217\"\n  },\n  \"inconvertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"incorruptibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inculpar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"incumplimiento de contrato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"incurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.217\"\n  },\n  \"indebido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"indefendible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.188\"\n  },\n  \"indefenso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"indefinible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"indefinida\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indelicadeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"indelicado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indescriptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indetectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indiferencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.143\"\n  },\n  \"indigestibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"indiscernible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"indisciplinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.088\"\n  },\n  \"indiscreción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.12\"\n  },\n  \"indiscriminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"indistinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"indomable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"ineficaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.337\",\n    \"std\": \"0.13\"\n  },\n  \"ineptitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.26\"\n  },\n  \"inepto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.273\",\n    \"std\": \"0.131\"\n  },\n  \"inescrutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"inexacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.228\"\n  },\n  \"inexcusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"inexorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inexperto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexplorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"inexpresivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inexpugnabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infalible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.213\"\n  },\n  \"infamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"infecundidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infertilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"infidencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"infiel\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"inflagaitas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inflexibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.45\",\n    \"std\": \"0.163\"\n  },\n  \"inflexible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.2\"\n  },\n  \"informal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.168\"\n  },\n  \"infortunio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.088\"\n  },\n  \"infructuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.188\"\n  },\n  \"ingenuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inheredable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inhospitalario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"inicuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.354\"\n  },\n  \"inidentificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inigual\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inimaginable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"injustificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmaduro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.166\"\n  },\n  \"inminencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inmortal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"inmortalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"innoble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"inpenetrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"inquietamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"inquietar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.102\"\n  },\n  \"insatisfacción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"insensatez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.161\"\n  },\n  \"insensato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"insensibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"insignia de grado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insignia de rango\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insipidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"insociable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"insolente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.217\"\n  },\n  \"insospechadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insospechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insubmergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insubordinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"insuficiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"insuficiencia cardíaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiencia coronaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"insulso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.213\"\n  },\n  \"insustancial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.173\"\n  },\n  \"interdicto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"intolerancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.217\"\n  },\n  \"intransigencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"intransigente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"intransitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"intratable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"inutilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"inutilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invalidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"invasor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"invectiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"inviolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.237\"\n  },\n  \"involuntariamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"invulnerabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"inánime\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.161\"\n  },\n  \"inútil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"ir de puntillas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irracional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.205\"\n  },\n  \"irracionalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"irreal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"irreverencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"irreverente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.26\"\n  },\n  \"irreverentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irrisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"irritabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"irritable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.479\",\n    \"std\": \"0.129\"\n  },\n  \"irvingia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jitter\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jorobar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"joyas de la corona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"juego sucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"jumento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"junky\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"justificarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kernicterus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"kitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lactoflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lamentarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.464\",\n    \"std\": \"0.067\"\n  },\n  \"lamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.475\",\n    \"std\": \"0.068\"\n  },\n  \"languidecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"lanzar una ofensiva\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lastimar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"lechuzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lentamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lepiota morgani\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lepra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"letal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"letargo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"leucocitosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"leucopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"levedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"ley de Dalton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ley del linchamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ley marcial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liarse a puños\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liberarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"licencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ligeramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"linchamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"linimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"liposarcoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lipotimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"llanto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.079\"\n  },\n  \"lloriquear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.072\"\n  },\n  \"lloriqueo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"lloro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"llovedera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"loca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"locatis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"loco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"lodacero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"lorelei\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lovastatina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lunar postizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lunático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luz de advertencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"luz de alarma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lánguido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"línea de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"lío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.107\"\n  },\n  \"machaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"machacón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"macroglosia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"madriguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.12\"\n  },\n  \"magrez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"magrura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal de mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal empleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mal gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mala memoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mala pronunciación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malabsorción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malcontento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maledicencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"maleducado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.35\",\n    \"std\": \"0.163\"\n  },\n  \"maleficio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malformación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"maltratador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"malvender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mancha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.068\"\n  },\n  \"manchurrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"manchón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mandil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"maniaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"manipular\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.119\"\n  },\n  \"manosear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.063\"\n  },\n  \"maquinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"mareado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"maricón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mariposón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"marshal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"martingala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mastelero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matachín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"matanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"matricidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"matón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"mañanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mecanismo de defensa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"medios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"megalómano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"megamuerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"melodramáticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"memo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mendacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mentecato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"mentira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.3\",\n    \"std\": \"0.105\"\n  },\n  \"mentón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"merluzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mes a mes\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mestizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"meterse con\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mezquino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.188\"\n  },\n  \"michelín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mildiu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"militante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"miocardiopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirada desafiante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirada feroz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mirada fulminante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"miseria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"misión imposible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mocoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"mohoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"mohín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"molestia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.347\",\n    \"std\": \"0.088\"\n  },\n  \"monorquidia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"montería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"morbosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"moreno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.051\"\n  },\n  \"moretón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morgue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moribundo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"morirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"mortal\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mortífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"moverse estruendosamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"moña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"mueca de dolor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muerte cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muerte de un millón de personas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muerto viviente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muflón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"multa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mundo de la fantasía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muralla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"murmurio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mustela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mutilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.304\",\n    \"std\": \"0.061\"\n  },\n  \"mutuamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"muñequera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"mármol verde antiguo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"más allá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"mórbido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.26\"\n  },\n  \"narcómano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nata cortada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"naufragio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"naupatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necromántico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"necropsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negligencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"negrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"negro azabache\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"negro carbón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"negrura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"neoplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neumoconiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neumotórax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neuralgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurasténico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurospora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"neurótico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ninchi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ninfomanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"niño enmadrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no atribuíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no consumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no disponible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"no financiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no heredable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no identificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no redivivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no renovado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no requerido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no reservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no residencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no residenciales\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no solicitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no submarino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"no sumergible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nocaut\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nocente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nocional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"nociones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"noqueador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"nota amarga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"numerario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 76\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"objeción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.112\"\n  },\n  \"objetar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"obliteración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obsceno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obsidiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"obstáculo de arena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oca azul\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ocultismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ofendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"office\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oler\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"ondeante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"onicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"opción de bloqueo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"opresor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oprobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"ordinario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"orquidalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ortiga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"oscurantismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"oscuridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.058\"\n  },\n  \"osteomalacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"osteopetrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"otosclerosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paloteado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paloteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"palurdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"pancitopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pandearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pantufla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papila\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"papismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paralítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"parasitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paresia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parkinson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parmesano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"paro cardíaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parsimonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"parvedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"patas arriba\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patata caliente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patatús\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patochada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patricidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patulea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"patán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"pavesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"payasadas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pebete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pecadillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pedregoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pelea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"pelea a puñetazos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pelearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"peligrosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.191\"\n  },\n  \"pelotera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"penal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.125\"\n  },\n  \"penalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.102\"\n  },\n  \"pendencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"pendencieramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"penuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.072\"\n  },\n  \"pequeña interrupción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"percance\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"percebe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"percutir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perder el control\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perdición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.217\"\n  },\n  \"perdonavidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"periodo de incubación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perjuicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"pernicioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.063\"\n  },\n  \"perro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"persistentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"perturbación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.266\",\n    \"std\": \"0.08\"\n  },\n  \"período de incubación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"período prodrómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pesadez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.139\"\n  },\n  \"pescar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"peste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.357\",\n    \"std\": \"0.067\"\n  },\n  \"pestilencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.068\"\n  },\n  \"peyorativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"pian\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picada de pulga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"picadura de pulga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piernas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pifia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pijama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pinchazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"piojoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"pira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pira funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pirado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"piraña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pirofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piruleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pirulí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pitorrearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"piyama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pián\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plañidera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"pleonasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pleurodinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"plexo aórtico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poco\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poco familiar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poco influyente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poco realista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poco reservado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"podrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.188\"\n  },\n  \"polemizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"policía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"policía secreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"polimiositis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"poliuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pollino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"polvorilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pomposidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"poner en un aprieto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"poner objecciones\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ponerse áspero\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ponzoña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"populacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"por el momento\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"porfiria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"postrimería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presagiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"presuntuoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pretencioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.258\"\n  },\n  \"pretender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"priapismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"primitivismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"procacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"proctalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.177\"\n  },\n  \"profesor asociado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"profético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"promiscuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciación anómala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pronunciación incorrecta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"proscribir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.188\"\n  },\n  \"proscrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"protegerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"protesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.26\",\n    \"std\": \"0.113\"\n  },\n  \"príncipe de las tinieblas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"pródromo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psiconeurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicosis maniacodepresiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicosomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicópata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psicótico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psilotales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"psoriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pudrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puesta en práctica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pugnacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"pugnar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pulsera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pulverización catódica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punto álgido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"punzada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.105\"\n  },\n  \"punzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pusilánime\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"puto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"puñetazos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"pájaro raro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pérdida auditiva sensorineural\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"pícaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"pútrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"que suaviza\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"que zumba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quebradizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"quebrantar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"quebrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"queer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quehacer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"queja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.321\",\n    \"std\": \"0.112\"\n  },\n  \"quejarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.079\"\n  },\n  \"quejumbridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quemadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"queratitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"querella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.12\"\n  },\n  \"queso rallado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"quiltro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rabiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"racheado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rancidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rancio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.166\"\n  },\n  \"rapiñar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"raptar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"raquitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"raquitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rasgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rayo-x\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"raído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.325\",\n    \"std\": \"0.153\"\n  },\n  \"rebullicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recargamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"receso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rechifla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.125\"\n  },\n  \"reciedumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"recluta nuevo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recochinearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recocina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"recriminación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"redoblante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refriega\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.0\"\n  },\n  \"refunfuño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"refunfuñón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.265\"\n  },\n  \"reivindicación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"relación de enfermos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renguear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"renquear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repaso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"repelente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"repipi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reprender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.146\"\n  },\n  \"reprimenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"reprobación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.094\"\n  },\n  \"reprobar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.063\"\n  },\n  \"reprobatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"repunta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"residuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"retar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.406\",\n    \"std\": \"0.0\"\n  },\n  \"retiro de tropas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"retrogradar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"reuma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumatismo articular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reumático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reventarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"reverbero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revertir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"revocación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"revuelco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"reyerta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"reñir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.359\",\n    \"std\": \"0.058\"\n  },\n  \"reúma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"riboflavina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rictus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rigidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.275\",\n    \"std\": \"0.163\"\n  },\n  \"rigor mortis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rigurosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"rimbombancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.0\"\n  },\n  \"riña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.065\"\n  },\n  \"roce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.102\"\n  },\n  \"rocoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rodófitos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rofecoxib\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rojo vino\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rompe-huelga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rompe-huelgas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rompible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"roña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"rudeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rufián\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"rugosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"rugoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.144\"\n  },\n  \"ruinoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"ràbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"rígido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.319\",\n    \"std\": \"0.121\"\n  },\n  \"sabotear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sacarse la espina\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sacrificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.102\"\n  },\n  \"sacrificio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"salvajada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"salvajismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sambenito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sandeces\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"santalales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprofítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sapróbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"saprófago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"sarasa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarcásticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sarna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"sarracina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"satánico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"saña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"secreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seguir la corriente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seguro de salud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seguro médico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"seguro sanitario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"self-service\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"semblanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"sempiterno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"sensiblería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"sentencia condenatoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sentenciar a muerte\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"separar del servicio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sepulcral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.072\"\n  },\n  \"sepulcro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ser espiritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ser fatal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"severidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.151\"\n  },\n  \"sicomoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sicosomático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sicópata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sicótico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"silicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"simple\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.072\"\n  },\n  \"sin ayuda\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin inagurar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin querer\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin reserva\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin resolver\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin solucionar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sin vida\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"sin vivacidad\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sintomáticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sistema sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sitiador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"snob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sobrellevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"socorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sofocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sojuzgar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solenopsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"solevantamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sollozar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.068\"\n  },\n  \"sollozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"sonotone\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soplagaitas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"soponcio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sordidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"sordomudez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sortilegio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"sosería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"soso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.297\",\n    \"std\": \"0.115\"\n  },\n  \"subexposición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"subgenus chen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subirse a\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subirse al tren\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subpoblado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"subyacente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.191\"\n  },\n  \"suciedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.306\",\n    \"std\": \"0.178\"\n  },\n  \"sucio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.141\"\n  },\n  \"sufrir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.273\",\n    \"std\": \"0.123\"\n  },\n  \"sugestibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supersticioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"supervivencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"suplicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.479\",\n    \"std\": \"0.065\"\n  },\n  \"suspicacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.177\"\n  },\n  \"síncope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tabardo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tacha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.065\"\n  },\n  \"tacto ligero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tambaleante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.125\"\n  },\n  \"tambaleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tanatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tapagujeros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.065\"\n  },\n  \"tarado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tarambana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tarantismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tartajeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tartamudeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tartufo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tarugo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tembloroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.396\",\n    \"std\": \"0.102\"\n  },\n  \"temerario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"temeridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"tempestad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"tempestad de lluvia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tempestuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.188\"\n  },\n  \"temporal de lluvias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tender una trampa\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener angustia\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener ansias\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener aprensión\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener arcadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener desazón\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tener náuseas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tensarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.417\",\n    \"std\": \"0.072\"\n  },\n  \"teras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tergiversar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"termoestable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"terquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.157\"\n  },\n  \"tibieza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tierra virgen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tifus epidémico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tifus exantemático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tifus petequial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"timar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.286\",\n    \"std\": \"0.094\"\n  },\n  \"tira y afloja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiritar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.144\"\n  },\n  \"tiritera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiritona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiroide\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tiroideo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tiroteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tiznarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tizne\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tiznón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tizón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toba volcánica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"tocarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"todo vale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tole\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"tomentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tontaina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tonto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.264\",\n    \"std\": \"0.218\"\n  },\n  \"tontorrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topetar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"topetear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tormenta violenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tormenta ígnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tormentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.188\"\n  },\n  \"torpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.102\"\n  },\n  \"torturador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"toscamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tosco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.446\",\n    \"std\": \"0.157\"\n  },\n  \"toxicómano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"toxoplasmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trabajo previo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trabalenguas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tracoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"tragedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"traicionero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.125\"\n  },\n  \"trampa de arena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trampa humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trampa para ratones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"transmigración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trapisonda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.125\"\n  },\n  \"trascocina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"trasmigración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traspasar los límites\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trasto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"trastornar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.281\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno inmunológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno nervioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno neurológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tratar salvajemente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"traumatismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"treta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.072\"\n  },\n  \"tribunal de apelación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tribunal penal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trifurcar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trombocitopenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"trágico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.437\",\n    \"std\": \"0.088\"\n  },\n  \"tsaine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"tumulto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.271\",\n    \"std\": \"0.094\"\n  },\n  \"tumultuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbamulta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.191\"\n  },\n  \"turbulencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"turbulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.177\"\n  },\n  \"turón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"tósigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ulalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ultraje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.072\"\n  },\n  \"umbrío\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.265\"\n  },\n  \"un\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"uretritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vacío legal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vago\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.268\",\n    \"std\": \"0.142\"\n  },\n  \"vaharada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vandalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.088\"\n  },\n  \"vano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.284\",\n    \"std\": \"0.131\"\n  },\n  \"variegación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vejamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena labial inferior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena ovárica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena porta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena tibial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vena yugular anterior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vendajes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vendaval\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"veneno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.0\"\n  },\n  \"vengativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.144\"\n  },\n  \"ventarrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verdad a medias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"verde botella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"versar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vestibular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vibrisas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"victima de robo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vidrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"villano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.063\"\n  },\n  \"villanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.333\",\n    \"std\": \"0.125\"\n  },\n  \"vioxx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"viruela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virulencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"virulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.072\"\n  },\n  \"visón americano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina B2\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vituperio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.469\",\n    \"std\": \"0.102\"\n  },\n  \"vocería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vomitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgaridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.4\",\n    \"std\": \"0.163\"\n  },\n  \"vulgariedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulgarizador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vulneración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"vómer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"woofer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xeroftalmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"xerostomía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zalagarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.458\",\n    \"std\": \"0.0\"\n  },\n  \"zamarro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.088\"\n  },\n  \"zanguango\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zarandear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.292\",\n    \"std\": \"0.0\"\n  },\n  \"zizania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zombie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zoquete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.058\"\n  },\n  \"zote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"zurriburri\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácaro de la sarna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido butanoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido butírico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido carbámico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ácido hidrazoico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ánade real\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"ántrax\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"áspero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.344\",\n    \"std\": \"0.188\"\n  },\n  \"ébano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.312\",\n    \"std\": \"0.0\"\n  },\n  \"óxido nítrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.375\",\n    \"std\": \"0.0\"\n  },\n  \"a cara descubierta\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a la medida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a priori\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a propósito\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abandonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"abarrotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"abastecedor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abatida\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abatis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abejarrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abejón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ablandante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abortivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aborto espontáneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abracadabra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrazadera real\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrevadero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolvedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aburrirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acalorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acantión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acantonar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acaparador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acceleración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accesional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accionador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acecinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acento circunflejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acicalar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acidular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aclamador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acolchado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"acolchamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acostarse con cualquiera\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrobático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"acromatínico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrídidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acta notarial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activa\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"activador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.209\"\n  },\n  \"actividad principal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actividad social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuartelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adaptador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adecuadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adelanto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"adhesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adiestrador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aditivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"admitido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adopción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"adormecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adrenalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adsorbible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"advice\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adyacente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aerófilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afianzarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afiladora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afiliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afinamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aflautado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aforístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"africada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afrutado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agencia publicitaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agente del FBI\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"agrandar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"agua de fuego\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agudeza visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agujereado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agujero negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahorquillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahumado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ahusado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aireado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al-hakim\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al corriente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alacridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alambre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alazán\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alborada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alborozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.53\"\n  },\n  \"alcalescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcalótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcanforado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcanforar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcohólico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcotana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alfiler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algoritmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alguien\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alguno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"aliforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alifático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alimento probiótico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alistado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alma gemela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"almohada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alpenstock\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alternado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alternante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterne\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alterno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"alteza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"altivez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"altiveza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alucinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alucinógeno\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amalgamativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amanecida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amarillento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"amateur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigdala cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amniocentesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amo de la casa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amoblar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amonestaciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amor libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amotinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amueblado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"amárico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabaptismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anabolismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaclisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anagógico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analgésico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analgético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"analizador diferencial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anamorfismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anasarcoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomía aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatomía clínica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatómicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"andante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anglohablante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angloparlante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angélicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.227\"\n  },\n  \"animadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal colmilludo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal doméstico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animal en cautividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anotador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antebrazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antena yagi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiautoritario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticiparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticlimático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anticuario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antifonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antifonario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antitanque\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antiápex\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antropomórfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antroposofía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antílope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antípoda\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antítesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"anverso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"análisis metodológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"análisis volumétrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apadrinamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apasionamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"apelable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aplicarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aplomar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apocromático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoderamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoyabrazos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoyo logístico integrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoyo logístico internacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apreciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aprestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprestarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apresurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprovisionador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aproximado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apátrida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apócope\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apócrifo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"apófisis transversa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbitrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcadiano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcaísta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"area de jurisdicción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"argentífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ariete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aritmética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arminianismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arponear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"arqueado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arquitectura paisajista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arracimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arreglarse el pelo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arreglo personal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriba\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrobamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrullo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"art decó\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria cerebolosa superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria comunicante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria intestinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arterias comunicantes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arácnido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asentista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aseo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.271\"\n  },\n  \"asesoramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asiento de palco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asignado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asignatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asistencia postoperatoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asistencia social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asistente social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asombrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asonante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"asordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspirante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"asterión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"astronave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ataviado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"atemperar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"atendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atenuante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atildar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atlas lingüístico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atlético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"atonal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atorvastatina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atracción de feria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atractor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atraíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atribuirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atónito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audiovisual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aullar de risa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auspicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"autenticidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"autillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auto-gratificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoadulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autobombo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autocine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoengaño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotrófica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autovolquete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ave canora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avenencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"avenirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avinagrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avistamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"axiología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ayuda audiovisual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azitromicina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azucarar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"azul\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"azulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"aéreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacanales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balón medicinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bandeja de té\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bandeja del té\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrera lingüística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basofílico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastón montañero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bateo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beatificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beige\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"beldad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bella\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bendecir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"bentos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berberecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berro mastuerzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bestializar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biblioteconomía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicromatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bienal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"bienestar económico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bies\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bifurcado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigenérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bigémino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilabial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bilateral\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"bilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billete de avión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biodegradable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioensayo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioscopio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioterio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bisílabo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizantinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blanducho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blasfemador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blasfemo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloqueante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boda civil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bodhisatwa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bodijo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bofetón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bola de melón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolchevizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bollo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolsa de colofonia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bomba de demolición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"boom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borriquete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bote-vivienda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bote de regatas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botella de Leyden\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botón del ratón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bracamante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brahmanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breviario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brindis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brut\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brámidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buen conversador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buen sabor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buena fortuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufete de abogados\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufónidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buril\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butacón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bífido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bíparo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caballero blanco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabeza de serie\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cableado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cachivache\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"café con leche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caja alta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caja de pensiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"calculador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calculista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caldo de cultivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calefacción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calentarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calidad de vida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"callado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"callarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"callista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calophyllum longifolium\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calorífero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calígrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambalache\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambiar el forro\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambio de color\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambio de forma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cambio de sentido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"camión basculante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campechanería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo de estudio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camuesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cancelar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canción de Navidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canela\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cansarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cantata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cantillos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canto nupcial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capellán de cárcel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capilla ardiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital de España\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capitulaciones matrimoniales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carambolear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caramelo de azúcar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"carrera de fondo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carrera de perros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartilla de ahorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartilla de ahorros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"casa-bote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa de empeño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa de empeños\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casamiento desigual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caso de urgencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castaño\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castaño rojizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catacréstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catamita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catastro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catatónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cattleya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causa probable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazador de ratones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cañón automático antiaéreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cebolleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cefalópodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cegador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cemento armado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cencerro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cenotafio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centro comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centro docente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centro político\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrífugo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cenáculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cephalopoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cepillo de dientes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cepillo de uñas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceremoniero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ceremoniosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceremonioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cereza al marrasquino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerradura de combinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"certificable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"certitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerúleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cespitoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cestero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cetrería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chalaneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chantajear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapuzas\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charla íntima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charola\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chateau\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chavalongo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chicoleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chifonier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chimichurri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chip de memoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiquitín\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chismerío\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiste visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chovinista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chuparla\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"churra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciencia-ficción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciencia aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciencia biomédica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciencia ficción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciencia médica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"científico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cierre hermético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinta de audio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circunflejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circunscrito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciruela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ciudad prospera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"civilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"claristorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clase alta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"climáticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"club de atletismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"club de gimnasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"club de yate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clueca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clueco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clímax sexual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coaxial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobijar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cochino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cochino lucro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"codorniz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"coexistir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cognado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cohesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cohesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cohibido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cola de cometa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colegio público\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colimación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colindante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"collada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colocar burlete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color crema\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colores protectores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colorido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"columpio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comedia-ballet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comedia de situación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comentario burlón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comentario ingenioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comercializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comerciante de pornografía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comercio de armas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comestibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comité ético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"como un angel\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"como un reloj\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compaginación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparación imaginaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compañero de cama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compañero del alma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compañia telefónica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compañía de teléfono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compenetrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compensación p\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"compensado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competición atlética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complemento agente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"complemento indirecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"componer espondeos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"composición literaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comprador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"compresibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comunidad religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con gran placer\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concebible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concertar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"concertarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concienciar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conclave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concluido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concluirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concurso atlético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concéntrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condensado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condensador eléctrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condilion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confeccionar rápidamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confederado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"confesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confirmación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.094\"\n  },\n  \"confirmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confortablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"confraternización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"congeniar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"conglomerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conjuntivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"connatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"connotativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conocida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conocimiento científico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquista sexual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conscripción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consejera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"conservatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"considerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consistencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"consolador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consolidador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"consonante africada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constreñirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"constringente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"construir un desembarcadero\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consuelda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consultor en dirección de empresas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consumidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contornar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraejemplo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraer nupcias\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrafirmar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrarréplica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraste BOLD\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrastivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrasubversión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato aleatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato bilateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato condicional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato de adhesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato de matrimonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato de seguro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato matrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrato prematrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraído\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controlado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controvertido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"contráctil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convalecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"conveniencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.112\"\n  },\n  \"convenio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"conversador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"converso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"convertibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cooperador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coordinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.347\"\n  },\n  \"coordinante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copiosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copérnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coqueteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coreido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coronión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corporativismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corporativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"corpóreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"correccional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corrección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.295\"\n  },\n  \"corregir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.303\"\n  },\n  \"correlativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"correr libre\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cortapisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cortar tela\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corticalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corvo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosa nostra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cosificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cosmonave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"costilla verdadera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"covarianza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crapuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"crepado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crepitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"creyente practicante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptográfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptófito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cristal veneciano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cristalino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criterio selectivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cronológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cronógrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"croquet\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruciforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruzado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cualidad maternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cualidad paternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cubierto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cubierto completo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cubierto de trastos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cucamonas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuchillo de monte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuchufleta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cucú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuenta de ahorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuenta de ahorros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuenta inactiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuerpo de ejército\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuidados\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cultista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.289\"\n  },\n  \"curación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"curarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"curculiónidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursiva\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cursor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curvado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custodio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuñado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cámara polaroid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cápsula espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cártel\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula de Weston\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula de cadmio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cíclopes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"código secreto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cómic\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cónclave\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dadaísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daltoniano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"daltónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dama de noche\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"danza de la lluvia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"danza del sol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"danza interpretativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar de desayunar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar el desayuno\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar el hacha\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar en el blanco\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar largas caminatas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar llaves\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar trato de favor\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar un manotazo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar una permanencia\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar una visa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"darse cuenta\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"datable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de barrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de carga\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de facto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de paso\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de primos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deber noble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decadente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decantación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dechado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"decimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decisivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"declaración discreta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"declaración rectificatoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decorativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decrescendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decretado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deducirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deferencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"deforestación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deidad hindú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dejar claro\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"del hipotálamo\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delicuescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delimitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demulcente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"denominador común\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"densidad relativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dentón\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"departamento de servicios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depilado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depravar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecho a la vida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecho al voto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derechos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derechos civiles\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derechos de propiedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derechoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derivacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deriverse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaclopar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desarticular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"desatrancado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbalance\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbordado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descambio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descargarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descartado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descodificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descolonizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descomprimir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"descomunal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"descongelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descontrol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descorchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descuello\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descuidarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desecado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desechado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desengancharse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desenvolverse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desespero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desforestación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desglosar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deshacerse de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desheredar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deshielado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmedido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmovilización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desnaturalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despegado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"despenalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despeño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desplazado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despoblación forestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destreza manual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvaloración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvincular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detalles\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detectado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detergente para lavadoras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"detergente para lavavajillas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"determinación incansable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deuteranopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diacrítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dialéctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diapiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dibujo técnico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diccionario electrónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dicho\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dicótomo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"didáctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dietista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diferenciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"diflunisal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difusor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dilatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diminuendo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinero de San Pedro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinero sucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dios del Mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diploma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diplomado en enfermería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diplomatura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diptongo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirigente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dirk\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discrecional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"disfrute\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disimulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disjunto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"dispersor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disponerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distanciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distintividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distribución binomial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distribuidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disyunto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divinidad hindú\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divisorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"divorcio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doble negación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"doctor en educación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctor en investigación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctorado honoris causa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrina religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrina teológica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doctrinario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"documentación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"documentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"domesticación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"domiciliar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dominio absoluto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doo wop\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"doparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dotar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"doxología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dracunculoideos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drama musical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drenaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drive-in\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"droga dura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"drogado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dueño de la casa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duodecimal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"duración del servicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"día solar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dúmper\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"echarse el pollo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eclecticismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eco del eco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecoico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ecológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecosistema\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"educación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.129\"\n  },\n  \"educación especial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"educación superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edulcorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"eferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eje de mando\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eje motor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ejecutivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"el abominable hombre de las nieves\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrizante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"electrodoméstico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electroforesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eligibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eliminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elucidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"emancipar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"embelesamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embellecer lo perfecto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embrujado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emir\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emisión termal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emoliente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emotividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empalagar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"empantanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empatado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empatizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empenachado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empequeñecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emperejilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empeñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empiricismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empollado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empresa de contabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empresa de subastas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empírico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emulgente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en compañía\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en flecha\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en la diana\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en la onda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en la práctica\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en realidad\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en rojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos biológicos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos geométricos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos gráficos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos patológicos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos sexuales\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos sociobiológicos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en términos sociolingüísticos\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en uso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enamorado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enanez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encaje de aplicación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encarnado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.063\"\n  },\n  \"encasquillar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enciclopedista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encogido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encomendar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"encortinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encortinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encuadernar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encuentro multitudinario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encumbramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endoenergético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endogamia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"endorsement\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endorso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endosante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endulzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endulzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"enfadadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfortalecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engrosar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"engruesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"engualdrapado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enlazarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enmaderado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enrielar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensanchador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enseñanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"enseñanza superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entallado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entidad física\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entorpecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entreabierto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrenador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrenadora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entretener\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.213\"\n  },\n  \"entrevía estándar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envalentonamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enverdecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enverdecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eosinófilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epigrama\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epimórfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epinefrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epistemología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipo de defensa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipo de radioterapia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipotencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ergotropismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erinaceidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erogación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erradicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error de hardware\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escanciador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escanciano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escarceo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escorpiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escote imperio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escritura fiduciaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escrupulosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuchar atentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuela de baile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuela de música\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuela de pensamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuela pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esculpido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"escurridera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escurridero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escurridizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escénicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esgrima\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"esgrimista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esotérico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espacial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espadachín\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espaldar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espaldera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espaldudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esparcido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espatulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especializar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especiero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espectrofotómetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espejito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"espiritual negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esponjoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"esposar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espíritu de cuerpo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espíritu de equipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estabilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.182\"\n  },\n  \"estabular\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estado de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estado libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estadísticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estampido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estampido sónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estampilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estandarizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estandarte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar activo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar despierto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"estar lleno\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar seguro de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estatuario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estatus de antigüedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estatus superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estelar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"estentóreo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estepa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esteticién\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esthéticienne\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilo arquitectónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estilo libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estimador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estipulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estomatópodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrella guía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estribera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estructurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estudios literarios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estupefacto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eterno enamorado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etiquetado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnocentrismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etnología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"etosuximida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eugénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"euritmia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evadir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evaluación crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evaporable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evento fortuito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evento social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"exaltado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"examinar animales\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclamativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclamatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exclusividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"excusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exiliado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existencialismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"existir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.228\"\n  },\n  \"exoenergético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expandido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expansible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expansión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experiencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exposímetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expresionismo abstracto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"express\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expurgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extensivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"externalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"externar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extra\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extramatrimonial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"f\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faceta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factor de disponibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"factual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"factura del teléfono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facultades\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facultativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faetón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fajina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falciforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falseado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsificar elecciones\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"faltar a la palabra\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falócrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Bufonidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Crocodylidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Curculionidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Dracunculidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Erinaceidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Percidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Sepiidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familiarización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasma\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farmacocinética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farmacológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fasiánido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"favor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"fechable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fedelline\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"felicidad absoluta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fermento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fervor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"festejar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.27\"\n  },\n  \"festividad  cristiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festividad cristiana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"festividad judía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"feudalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiesta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"figurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fijeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"filosofía empírica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"financiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"financiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"finitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"firmante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flagrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flexión de pierna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flexuoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flipado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flirt\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flirteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fogata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fonación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fondo de pensiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forma de hablar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"formalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"formulado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"forrado de madera\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotoquímica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fotómetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foulard\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foxterrier\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fragante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraguar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"francófono\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franqueza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.2\"\n  },\n  \"franquicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraseología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraternización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frazada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frecuente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuerza motriz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuerzas de seguridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fulgurar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funcionario público\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fundación privada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fundamentos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusiforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fusil de juguete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gabela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gafete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gag\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galleta de pasas y nueces\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galleta de uvas pasas y nueces\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galvanómetro balístico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gambito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganancias\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ganar neto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganoideos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garantizador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garrucha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gasolinera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"generativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gentil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bacillus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus pezophaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phthirius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phthirus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus rattus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geográficamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geometría no-euclideana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geométricamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geométrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geopolítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"germanoparlante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gestión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"geógrafo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gigantesco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnasia rítmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnasta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gimnástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"ginandromorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gincana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glamour\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glasear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"globalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globo del ojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globo ocular\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"globuloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glorificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"gluglutear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gobernante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gobernanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goleador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"goteado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gramófono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gravable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gravamen\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grogui\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grua derrick\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grupal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guante de golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guantes de cabritilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardia de banco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guillame\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guitarra eléctrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gymkhana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gárgaras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habilitado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habitabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"habitación de hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer amigos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer autostop\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer concesiones\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer concesiones mutuas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer descarrilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer ejercicio\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer entender\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer formas aserradas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer percibir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un compromiso\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un pase\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un revés\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un tour\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer un voto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer voto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacerse amigo de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hastiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hechizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemostático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heredable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hereditable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hermetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrerasauridae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrerasaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterodáctilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterometábolo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heterosexismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heurística\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hialino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrogenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrófilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hierro ondulado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higiene dental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"higienizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hinayanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hincar el diente\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hinduismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hinduísmo ortodoxo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiosciamina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipercapnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipercrítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperglucemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipertrofiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoguera de campamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoja de cuchilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoja de cuchillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoja informativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hombre del neanthertal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homeotermo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homilía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homo sapiens\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocéntrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homocíclico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homogeneidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"homosexualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homotermo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"honradez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"horizonte sensible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hormigón armado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"huero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humanístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"humeante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"humidificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hyphantria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hytrin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hípica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"iconfundible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iconoscopio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idea original\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"idealista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"identificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"idioma\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imaginable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imagismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imitado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"impenitente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impermeabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impermeabilizante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imploración\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"implorante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impoluto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"impresionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadaptador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inapelabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inbuir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incesto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incidente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconclusamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incondicional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"incontable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incontrovertible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incorrupto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inculcación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefectible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"independiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.175\"\n  },\n  \"indizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inducido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"industria de la moda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ineducable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inexpresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infalibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infinto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"influenciado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"influir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"información interna\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infrarrojo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infructuosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ingeniera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iniciador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inigualable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inmemorable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmencionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmensurable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmodestia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmovilista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innombrable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"innumerable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inpronunciable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecto coreido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instalaciones recreativas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instalación deportiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instigador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instinto paternal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrumentalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrumento de percusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrumento óptico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurrecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inteligibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intemperadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interactuación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercalar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercambio de favores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intercambio de pareja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdependiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdisciplinario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interpretación de roles\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interrelacionarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"intersecarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intersectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"introductorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"intrínseco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"intuicionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inundarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"investigación empírica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ionosfera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ipomoea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ir de excursión\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"isocíclico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isoniacida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"isósceles\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"italohablante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izquierdas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"izquierdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"jacobeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jarra de Leyden\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaspeación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaspeado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jingoísta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jorge\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jornada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"jornadas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judicial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"judío\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judío conservador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juego de mesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juego del tejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jugo digestivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"junta de accionistas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"junta de reclutamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jurar el cargo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"justificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justificante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juvenil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.205\"\n  },\n  \"koinonía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"la intelectualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laicado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laicismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lampyridae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanar\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanceolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lanuginoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"largeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larguirucho\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"larvado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laya\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lectura pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.161\"\n  },\n  \"legato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lengua natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lengua sánscrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lenguaje natural\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lenitivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente convexa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesbiana\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letra bastardilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letra corrida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letra cursiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letra mayúscula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"letrero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"levantado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"leíble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liberalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertad de expresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertad de religión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"librador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libre comercio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"librecambio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libreta de ahorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libreta de ahorros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libro de conocimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licantropía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licitador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"ligoteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limnología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limpieza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.188\"\n  },\n  \"limítrofe\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lindero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linebacker\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liofilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liquescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lista negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"listado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llamada a filas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llamada de teléfono\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llamada telefónica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llaneza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"llegar hondo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llegar lejos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llevar a término\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"llevar al altar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llevarse el pastel\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llueca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lo apetitoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lo delicioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lo gustoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lo sabroso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"localizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locuaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lucidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"lugar de moda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar de reunión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar estratégico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lugar imagianario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lujuriar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luminancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lustrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lábil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lámpara de Aladino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lésbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"límpido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"línea de salida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"línea divisoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lírico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.326\"\n  },\n  \"lógica alética\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lógica doxástica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"machista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macroscópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"macrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madrás\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maestrazgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"maestro cocinero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnanimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magnético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"mahayanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maitre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malentendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manager\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandarina\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manguito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manipulabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mansedumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mansión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mansuetud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manumitir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"manzana camuesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manzana reineta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maqueta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marca de estilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marca distintiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcha militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marginalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marketing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marmolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marrajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marrano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marrón-rojizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masajear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"masculinidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"master en pedagogía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastuerzo acuático\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mastuerzo de agua\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masturbación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matar de risa\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matatenas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"materializado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matiné\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matrilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matrimoniarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maximización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"mayúscula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mediana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medicación con cuentagotas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medida de contrapeso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medida provisional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medidas drásticas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medio relieve\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melfalán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melódicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memoria volátil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mención honorífica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercadeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercado bursátil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercado de valores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercenario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merchandising\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"merodeador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesofítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesófilo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metacarpo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metaconocimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metafísica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metafórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meteórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"metonímia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metonímico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metotrexato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metrónomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezuzá\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miasmático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microfotómetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microscopio electrónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mientes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militarización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mimetizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mina de oro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"minado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ministerio de asuntos exteriores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miofibrilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miradita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mirar por\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misil balístico intercontinental\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misión religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"misticismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mistificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitologista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitologo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mitólogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modelo a escala\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modelo a imitar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderantismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moderato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"modorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monosilábico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monosílabo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoteísmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monsenor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monseñor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monte de piedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monumento a Washington\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monumento nacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moral sexual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"morganático\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortinato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mosca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motivación irracional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motricidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movilización militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movimiento gay\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movimiento juvenil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movimiento libertario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movimiento obrero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"movimiento religioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mozo de cuadra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mozo de establo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mueble de época\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muerte civil\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muestra de tela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muestreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"mujeril\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mullido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiracial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"multiuso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mundano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munificiencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"munífico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"museo científico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mutante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"máchmetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"máquina de rayos X\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"márketing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"máster en educación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"método de enseñanza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"método ecléctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"método pedagógico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"métricamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"míster\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"místico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"módulo de mando\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"nacimiento del cabello\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nadaderas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naltrexona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcisista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"naturista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"navaja automática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nave espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neanthertal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nebrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negociación comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negroide\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nemotecnia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neoclasicismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neostigmina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nervio troclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurobiológico\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neuroléptico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ninfula\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"niqui\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrificarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no apareado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no comunicación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no de primos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no elevado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no esclarecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no iluminador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no perecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no profético\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no resinoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nombre de fábrica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nomia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"nostalgia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nota musical\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nublado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"nudista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuevas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutricionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutrición autótrofa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nutrimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número romano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"números rojos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obediencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"obelión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objetificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objeto indirecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objetor de conciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obligación noble\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obra de consulta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obra literaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstructor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oceánico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.25\"\n  },\n  \"oclusivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octosilábico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octosílabo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ocuparse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"ocurrirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oferta de matrimonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"offset\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficial pagador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficiante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"oficinista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrecer sexo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrecimiento de matrimonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofrenda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ojiazul\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ojos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olla para asar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olvidable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ombrío\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnipresente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnisciencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omnisciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onda sonora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opalino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operacionalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opistognato\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opúsculo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oración interrogativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orden Scorpionida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orden religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ordenancista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orejero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organización benéfica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orgasmo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamentador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ornamentalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.19\"\n  },\n  \"oscilante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscilatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"osteopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ostracodermos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ovacionador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oxifenbutazona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pagoda\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palabra de honor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"palabras amorosas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleoantropología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleoantropológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palmeador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palo de escoba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pan eucarístico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panecillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panzudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papeleta de empeño\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papelón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"paprika\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parada de camiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paraje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pardo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paripinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parir cerditos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parir puercos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parodia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partes iguales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"participar en\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"participio pasado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partidaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasar de moda\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasar el rato\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasar la aspiradora\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pase adelantado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pase lateral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paseo en barco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paseo en yate\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paso de baile\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"passeri\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paternal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.228\"\n  },\n  \"patilargo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patito feo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrilineal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrocinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patronal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrullaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patrullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paulatino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"país de los sueños\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedestal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"pediatra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedicura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedicuro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peinar con estilo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelleja\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelota de ping pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelota de tenis\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"película amateur\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penetrabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensamiento sintético\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pentasilábico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pentasílabo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pequeña compañía de préstamo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pequeñito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"per capita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perceptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.375\"\n  },\n  \"perciformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perdurabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peregrinaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perihelio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periodo histórico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permeable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"permiso de salida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona grata\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona mayor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"persona religiosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"personal de tierra\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perspicacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuasible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persuasiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"período de descanso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"período histórico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petición de mano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"petrolífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pezophaps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phthirius\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phthirus\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picogordo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pictográfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pila Weston\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pila de cadmio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilla-pilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pilote\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pimentón dulce\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pimiento verde\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pimpón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pin\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ping-pong\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinzón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinzón vulgar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pipa de la paz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piropos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piroxicam\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pista de balonvolea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pista de voleibol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placa giratoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"placar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planariidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plancton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planeado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plantarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"platea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plaza pública\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plebeyo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plexo cardíaco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poco retórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poder de resolución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poderoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.063\"\n  },\n  \"poderío\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"podólogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poema sinfónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polaroid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polisilábico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polisílabo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polisíndeton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poltrona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"política de espera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner a punto\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"poner atención\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner en marcha\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner ramplón\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner terraza\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner un burlete\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ponerse de acuerdo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ponerse de moda\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popover\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"populista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"por cierto\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"por derecho\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"porcelana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"porcelana fina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pormenor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.12\"\n  },\n  \"posición estratégica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posición militar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"posmodernismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postoperatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postratamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pozo de gas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pozo surtido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precinto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precipitante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precognición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precoz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"predecible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predestinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predeterminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prednisolona\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predominancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"predominar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preestreno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preguerra\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prenatal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prensil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preordenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescindencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prescindir de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presentación publica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presentar una coartada\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preservativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presión osmótica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preso político\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestar atención\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestar oído\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestatario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presteza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prestigio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"presumido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prevenible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preventivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"principios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"probabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"probidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proceso de representación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proceso geológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proclamado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"procrastinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procreación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"productividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"producto de belleza\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producto farmacéutico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profesionalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"profesionalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa de instrucción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa de lectura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa de servicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"programa vocacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progresismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progresividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"progresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.129\"\n  },\n  \"progreso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"prolijo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"promulgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pronación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propensión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propio\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.228\"\n  },\n  \"propiocepción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proporcionable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propuesta de matrimonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proselitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prospectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostitución\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protanopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protegido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proteico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protogeométrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prototipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proverbio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provisto de continajes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provisto de cortinajes\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"provisto de fondos\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proxémica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudohermafrodita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicoactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicología aplicada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicología industrial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puente peatonal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puente voladizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puerta abierta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puertaventana\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puesto de primeros auxilios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puesto de socorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulimento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulverulento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punta de alfiler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punta del alfiler\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punteado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto celeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto cúlmine\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto de encuentro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto de intersección\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto destacado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto final\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto geográfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puritano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.382\"\n  },\n  \"puro talento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puzzle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pájaro cantor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pájaro pelágico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"párpado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pérdidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quark\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"querubín\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quid\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quididad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinacrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinceañero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinidina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quitapiedras\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racimado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racionalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"radiactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"radioactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ragtime\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ramoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rango superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ranura de expansión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raqueta de badminton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rastafarianismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ratón de biblioteca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"razonabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"razonamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"razón social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reaccionario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"readmisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reafirmación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"reajustarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"realpolitik\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reargumentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reblandecerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rebosar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"recablear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recalentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recauchutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recepcionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"receptivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.26\"\n  },\n  \"rechonchez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.125\"\n  },\n  \"recinto ferial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recluido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recolección del heno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recompensado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recompensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.068\"\n  },\n  \"recomponerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconocimiento interescolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recorrer mundo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recortado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"recursos minerales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recusable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recíproco\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.144\"\n  },\n  \"reencarnado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reencauchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reencuadernar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reensamblar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refacción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflexología\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformador social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reformismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refractivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrendar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refringente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regalado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regalarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regla de oro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"regularizarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reharmonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reir a carcajadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relacionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.056\"\n  },\n  \"relacionarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relaciones sexuales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relación ligera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"relinchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reloj de cuco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relojería\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relumbrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relumbrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"remanente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rematadora\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remediable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reminiscencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remolcador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remunerar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renacimiento espiritual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"renovable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repartimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repensar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repetido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"replantearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reposabrazos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"representado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"representante comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reps\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisito académico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisitos académicos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resbaladizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"resbaloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rescindible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reservable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"responder de\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restallido\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restringido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.105\"\n  },\n  \"resueltamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retardado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retozo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retroactivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"retumbante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverdecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reverencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.209\"\n  },\n  \"reversibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"riada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ribavirina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ricura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rifar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rinoplastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritual\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ritualista\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roca volcánica vítrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rogativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rojizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"rol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rol social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roletear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rompehielos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rondalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronronear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ropa de calle\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rudimentos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruego\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruidoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.102\"\n  },\n  \"rutilar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rutina recursiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"récord mundial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saber divino\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saborizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sabrosura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacramental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.442\"\n  },\n  \"sala de masajes\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"salir bien\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salir pitando\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salvación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.451\"\n  },\n  \"salón de té\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sancionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santa maria\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santa sede\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"santidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.161\"\n  },\n  \"santoral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"saudade\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saurios\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"schola cantorum\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sector de ocupación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sector ocupacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secuencial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secularismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sedativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seleccionador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selectividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicircular\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicomatoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiconsciente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semicualificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiempírico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiformal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semioficial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semiprocesado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semitransparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensibilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensualmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentar tendencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentencia del árbitro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentido del humor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentido del olfato\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentimental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"ser promiscuo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser testigo\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serpentino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"serrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sertralina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servicio de paquetes postales\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servicio militar obligatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servicio militar selectivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servicio público\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"servicio social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servicio telefónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"servomecanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sesquipedal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"setter\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seudohermafrodita\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sex-appeal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexo extramatrimonial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sexo ilícito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shock de Metrazol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shock de metrazol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shock insulínico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signatario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"significantemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"significatividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signo característico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signo diacrítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simbiótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin levadura\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinclinal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sincronía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinfonizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sintonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinusoidal\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sirdar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de ventilación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sistema de vigilancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sitcom\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"situado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soberano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"soberbia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrecalentado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobreexposición\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobreprotector\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrepuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socialité\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociobiológicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sociolingüísticamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soldar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"soldar a tope\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soldar por puntos\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.265\"\n  },\n  \"sombreado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sombroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"someterse a\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnoliento\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"somnífero\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonetear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.354\"\n  },\n  \"sonido consonante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonido consonántico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sopapo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sostén principal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soñador\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soñolencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sprechgesang\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"starets\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stent\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suavizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"subcontinente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subcultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subjetividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublevado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublevar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sublimidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suborden Lipotyphla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subsidiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"subvencionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.072\"\n  },\n  \"subyugable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sucesión ecológica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sudismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufragio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sujetalibros\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sujetar con cabilla\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sulfamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suma total\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sumatorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suministrador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suntuario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superabundancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superdotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superdotado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supergigante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supervisor\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suplente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supremacía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supresivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suscribir\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suscripción\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspensión cardán\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suspensión de pagos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sustantivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swami\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"swing\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sábana bajera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sáfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sánscrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sépidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"séptimo cielo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"séquito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sínfito\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sólidamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"súbito\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tabla de espiritismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tachuela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taller de encuadernación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tangible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.068\"\n  },\n  \"tapado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tasajear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxonómicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecnóloga\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tecnólogo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tejedura de punto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tejemaneje\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tejido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tejido de punto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telecomedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telefonazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telescopio de Newton\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telescopio gregoriano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"telescopio óptico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teletransportar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperamental\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperamentalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperatura ambiente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tendenciosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenencia de acciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tener suerte\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenis de mesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teoría de conjuntos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teosofismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terapia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"terapia ocupacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terazosina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terciopelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terminado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"termoplástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"territorialmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tesina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tesis doctoral\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiempo de ocio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"tiempo sincopado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tienda especializada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocoferol\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"todo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.217\"\n  },\n  \"tolazamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toma de control\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomar el aire\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomar nota\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomar parte en\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tonificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"tonsurado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tope\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toque de corneta\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toque de fajina\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tortuga boba\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajador calificado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajador cualificado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajador social\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajadora calificada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajadora cualificada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trabajo en equipo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tracto\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragicomedia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tragicómico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"tramitación\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trampantojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transferible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"transimisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transistor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transitivizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transmundano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transparente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.191\"\n  },\n  \"transplacentario\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transporte por camión\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transporte terrestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transvasar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trascendencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"trasmundano\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratado de paz\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratado equitativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratar animales\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trato equitativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trato justo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"travestido\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tribunal de justicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triclormetiazida\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricotado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tridente\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tridimensional\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triforio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trilobita\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trineo de vela\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triquion\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tritanopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trogon\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truco\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"truco de magia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trueque\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trust\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tríplica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trípode\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tubo acústico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tupé\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turno\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"términos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tímpano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"títeres\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"título convertible\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"título cupón cero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"título hipotecario\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ubicuo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultraconservador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultraderechista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultravioleta\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"umbroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unidad de conductancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unir en matrimonio\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unirse en matrimonio\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"universo del discurso\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"unión consensual\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"urraca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"usufructo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"utilizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.063\"\n  },\n  \"utrículo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"utópico\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.331\"\n  },\n  \"vagaroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vahear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaivén\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valer la pena\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valor no cotizado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valoración crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"valorización crítica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vampirismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaporizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vecino\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"velludo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena cardinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena cava\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena etmoidal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena lacrimal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena oftálmica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena oftálmica superior\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena pancreática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena posterior del ventrículo izquierdo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venas epigástricas superiores\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venas superiores epigástricas\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venial\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"venta condicionada\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventaja fiscal\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventanilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventrudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verboso\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verde guisante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verde mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verdear\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verdecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verosimilitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.177\"\n  },\n  \"verse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vespertiliónidos\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestido camisero\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vez\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viajante\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vida real\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vidrio de Murano\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vinculante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vindicador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vitamina e\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viviente\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"vocalización\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volante\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volatilizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volquete\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voltímetro electrónico\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voluntad incansable\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voyerismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"voyeurismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanizador\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vágil\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"válvula semilunar\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía ancha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía arterial\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía estrecha\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía expresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wellerismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"wicca\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xerografía\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yagi\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yeti\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"yodar\": {\n    \"pos\": \"v\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.088\"\n  },\n  \"yuxtapuesto\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zanquilargo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zapatilla de deporte\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zooide\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurdera\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zureo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"záfiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ámbito aproximado\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ánimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.262\"\n  },\n  \"árbol motor\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"área de estudio\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"área temática\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ázimo\": {\n    \"pos\": \"a\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"élite\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ópera bufa\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ópera cómica\": {\n    \"pos\": \"n\",\n    \"pol\": \"0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a capella\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a pelo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"a un lado\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abducir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aberrante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abierta\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abogado del diablo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abogaducho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abono orgánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrasador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abrasividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"abrigadero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolutista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"absolver\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"abultar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"aburrido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.186\"\n  },\n  \"abusado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abyección\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"abásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"academia del aire\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acalorarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acatexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"accidente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"accidente fatal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acción refleja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aceite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acero de tungsteno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acero de wolframio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetaminofeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acetato de plomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aclorhidria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aclorhídrico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acobardado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acometer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acondrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acondroplástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acorralado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acortarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acosado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrilamida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acriminador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acroanestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acrofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actinomicótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acto de terrorismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acto reflejo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"actuar violentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuerdo viático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acufeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acusación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"acusador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"acuñador ilegal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adicción a la cafeína\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adormilarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adormitarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"adquirido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aeroembolismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aestesis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aferente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"affenpinscher\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aficionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afrenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"afta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agarico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agente de policía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"agitprop\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agorafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agorafóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agreste\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"agrisado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agrisar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguardiente de manzana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguas residuales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aguijoneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"agárico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aherrumbrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ahogadero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ailurofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aire cargado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aire viciado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ajusticiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"al contado\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albayalde\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"albinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alborotoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alcoholismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aleatoriedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"aleatorizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algodón hidrófilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"algolágnico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aligerarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allium porrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"allium vineale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"almendra garrapiñada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alopecia areata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alta traición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alteridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"alzaválvulas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amargor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"amaurosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amaurótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ambientalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenazado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amenorreico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ametralladora thompson\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amigdalina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aminoración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amiodarona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amnéstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amonítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amorfo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amortecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"amotinamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"amétrope\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anacantos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anadeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anafrodisia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplásico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anaplástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anatómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"andrajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"androfobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anestésico total\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angina de pecho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angiopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angioplastia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anglófobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"angurria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anhidrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anieblarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"animales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aniónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anopía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anorexia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anosmático\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anovulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anoxia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anteojos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antideportivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antihigiene\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antimacasar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antipirético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisemitismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antisocial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"antisubmarino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antracítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"antro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anuresis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anómalo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"anóxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aojar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"apagado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.121\"\n  },\n  \"apartadero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aparte\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apetecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apetencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apetitivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apogámico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apolar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apoptosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aporreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apostatar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apresamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aprisionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"apuro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"aquiescencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aquí y allá\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aracnofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arbusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"archivo maestro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arco Tudor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arcoiris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arginina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aristoloquiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma de fuego portátil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma nuclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arma portátil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"armerol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aro de nariz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrapiezo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrellanarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arremeter\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"arrestar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arriar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arrogancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"arrojar la toalla\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"arteria circunfleja ilíaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"artificiosa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"artroscopia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asa fétida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asafétida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asaltador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"asalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.044\"\n  },\n  \"asalto a mano armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascidias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ascítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asedio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asesina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asesino en serie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asexualidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asindético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asistente de hospital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asno africano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asno salvaje africano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asno salvaje asiático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"asomar la cabeza\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aspereza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"asténico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ataque por tierra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atañer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atelectasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atemperación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atencional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atesarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atirantarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atisbadero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atormentador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atraco a mano armada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atrapado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atreverse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atribulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"atronador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"atropellar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"audacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ausencia de persuasión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ausentismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ausentismo escolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"auto de comparecencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autoconservación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodegradación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autodisciplinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"automortificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autopreservación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autotomía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"autócrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ave de rapiña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aventurismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"avidez de sangre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"avitaminosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azidotimidina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azul-púrpura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azul de Prusia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"azul turquesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"añorar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"aún no nacido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"babirusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bacteriológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bagel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bajá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bala de mosquete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bala dumdum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baldío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"balístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bamboleo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"banquillo de los acusados\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barco de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barra de cacahuetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"barrillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"base\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"base de operaciones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bastón ligero de paseo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"basáltico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bata de baño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Horcas Caudinas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Ipso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Ivry\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Magenta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Maratón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Minden\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Panipat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Queronea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de Rocroi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla de las Horcas Caudinas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batalla del Somme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batiborrillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"batir a golpes\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"batín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bauhinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bañador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"baño de sangre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"behaviorista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belicosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"belitre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bellaquería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"berilio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bicoca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bienes relictos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"billete de banco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biorremediación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bioterrorismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"biotítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bisbiseo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bizquera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blaia zimondal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blandengue\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloc de notas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bloqueo mutuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"blusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bobadas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"boca del estómago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"body\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bofia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bogeyman\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bola de fuego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bola de manteca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bolonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bomba centrífuga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bomba de relojería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"bombardeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"bombín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"borrelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boscaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bosta de vaca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botas camperas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botija\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"botulismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brachystegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bradicardia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"braquial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"braquiuros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bravuconada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bregante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brezo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"breña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bribonería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brillo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broma de mal gusto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"broma telefónica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bromuro de metilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bronquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"broza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"brujería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bruxismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bruza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bubónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bufete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulbar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bulbo raquídeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bumerang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buque hundido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buque naufragado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burdo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"burka\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"busca y captura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buscapleitos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"buscavidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bustier\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"butírico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"bálsamo del Perú\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"búmeran\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caballo de batalla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cabezadilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caca de palomas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cacharro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cachondearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"caco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cadáver\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caer violentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeinomanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafetera exprés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeína\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cafeínico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caftán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cajón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caldera volcánica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cale\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calor de condensación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"calumia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camandulería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisa de dormir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camisola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"campaña naval\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"camperas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campilotropo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo eléctrico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo gravitacional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"campo magnético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canijo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"canillera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"canto de sirena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"capero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"capital del Tíbet\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caquético\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cara de póker\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carapacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carbunco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"carcelero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcinoide\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carcomer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"careta antigás\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carga negativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cargo imprevisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cargo irregular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carmelita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carnezuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carraspera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carretón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carroza\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cartilaginoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cartujo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"carácter desagradable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa de naipes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casa de rancho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casanova\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cascar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"casco del bateador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casquivano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"cassiope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"castigado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"casulla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catacaldos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"catetismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cateto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"causa perdida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caza de ratas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazabombardero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar al acecho\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar con halcones\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar con halcón\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar con hurones\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar conejos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazar furtivamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cazatorpedero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"caído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cebolla silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceborrincha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cefotaxima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceftriaxona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ceguera objetiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"celinda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cenizas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"censor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"centrospermo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cepillo de fregar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cepillo de púas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cerco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cercosporella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cereza Bing\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cereza picota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chacota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chacó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaladura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chamarasca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chancroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"changarro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chapa de identificación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chaparral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"charlatanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheque\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cheviot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chevió\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chichón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chicoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chifladura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chilaba\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chilindrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiste morboso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiste negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chiste étnico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chorizada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chorreces\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chupóptero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"chámara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicadófitos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cicatería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciclónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cieno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cimarra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cimbreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinemática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cinturón salvavidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circulativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"circunstante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cirrosis hepática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ciruela damascena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cistoplejía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clamoreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clase baja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"claustrofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cleptomanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinch\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"clinodactilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cobalto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coccidioidomicosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coccidioidosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coche deportivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocodrilo africano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cocodrilo del Nilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coenzima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cogotazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cola cortada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colaboracionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"colifato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonia de conejos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"colonización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"color acromático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combatiente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combatividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"combustión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comida recalentada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"common arrowhead\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"commutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comparativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competidor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"competidora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"comprador compulsivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"computar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con curiosidad\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con importancia\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con indecisión\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con intencionalidad\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"con voz sollozante\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concernir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concertina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concluyentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"concusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"condenada a cadena perpétua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condenado a cadena perpétua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"condicionamiento adverso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conejal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conejar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conflagración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confrontacional\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"confutación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"congelamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conglomerado de madera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conjunción adversativa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conminatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conocerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquista normanda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conquistar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conseguir con artimañas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conseja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"conservacionista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"consolación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"conspiración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contar cuentos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraalmirante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrabandista de licores\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contradecir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.094\"\n  },\n  \"contrainteligencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contralmirante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contraproducente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"contrincante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"controversia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"cookie\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"copo de algodón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"coptis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corajoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corbata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cordón de apertura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corindón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corona de laurel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corpacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corromperse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"corroído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cortar irregularmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cortavientos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"corteza de trigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cortina rompeviento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cotarro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cresa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crescentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cretinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crimen de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criminológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criogenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criopatía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"criptograma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromatográfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cromoestesia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crucialidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cruzar el rostro\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crítica constante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crítica maliciosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"crítica textual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuadrilátero de boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuarcita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuartazos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuartearse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cucharada sopera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuchichear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cuelgacapas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"culí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curiosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"currar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"curruscar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"custodiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"cámara de tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"céfiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula adiposa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"célula de Golgi\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"cólico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar alivio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar bastonazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar garrotazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar la tabarra\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"dar oropel\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar una patada\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar vueltas a\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dar órdenes\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de Sísifo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de forma genérica\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de forma inclinada\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de forma penetrante\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de la nada\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de mala gana\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de moneras\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"de poca fiabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decaer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.163\"\n  },\n  \"decepción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"deceso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decir entre dientes\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"decir verbalmente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"declaración incorrecta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defecto visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defector\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defender\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defensa comercial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"defervescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deficiencia auditiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deficiencia visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"degollador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dejado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dejar suelto\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"del dictioptero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"del mecóptero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delgadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delincuente habitual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"delito informático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demonio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.164\"\n  },\n  \"demonio necrófano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"demérito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"dendrita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dendroctonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"denunciatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"departamento de química\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deportivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deprecar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"depresión distímica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecho del mar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derecho marítimo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatitis atópica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatofitosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dermatomiositis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derrochador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"derroche de energía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derrotamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derruir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derruirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"derrumbar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaborido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desabotonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desabrimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"desacorde\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafecto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desafiante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaforado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desahucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desaliñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.056\"\n  },\n  \"desalmado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desamparado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desangrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desarreglado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desatinado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbocado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desbridamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descabellado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"descalificar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"descalzo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descansadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descararse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"descaro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.127\"\n  },\n  \"descendente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descerebrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descerrajar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descoco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descolado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descolorarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconfiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desconsoladamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descontrolar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descordar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"descruzado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desenredado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desenvueltamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deseo sexual inhibido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desequilibrio mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desescalada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desfallecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desgajar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desgastarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"desgrapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desgreñado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deshaucio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desiderátum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deslustrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmaño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmejora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmelenado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmemoriado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmentir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desmerecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desmotivado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desodorante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desoladamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desorden gastrointestinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despeinado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despeinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despellejarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"desperdicio de energía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desperdicio de material\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despojaron\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despojarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"despojo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"desproporción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desprotegido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"destapar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destructivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"destruído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvalorizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"desventurado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"desvergüenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.112\"\n  },\n  \"desvitalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"deteriorarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.217\"\n  },\n  \"deus ex machina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dhoti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diablillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"diagnóstico médico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diarrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dicranales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"difracción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"digitaria ischaemum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diltiazem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diluído\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dinamitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dingo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsomanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"discapacitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disconforme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disentería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfemismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disfuerzo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dislocación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disléxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"disnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disolutamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disparar un cañon\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"displasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dispnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distimia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distorsionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"distrito policial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"disturbio racial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"diverticulitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dióxido de nitrógeno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"domador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dormán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"driblar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"dubitativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"délfico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"día y noche\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ebonita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eccema atópico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"echar a perder\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"echar abajo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ecologista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ectrodactilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"edentados\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"efectismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"electrocutar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elefantiasis neuromatosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elemento no metálico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elisio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"elísio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embargo de nómina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emboscar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embotado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"embólico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"emitir un chillido\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"empeorado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en cualquier instante\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en cualquier momento\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en círculos\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en el acto\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en general\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en poco tiempo\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"en un instante\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"enajenación mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encamisar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encamisarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encanecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encefalitis letárgica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encender(se)\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enchaquetar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enchaquetarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encontrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encopresis infantil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"encostrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endeblez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"endemoniado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endiosamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"endocarpio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"endocarpo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energía cinética\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energía eólica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"energía radiante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enervador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad cardiovascular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermedad del sudor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfermo incurable\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enfrentarse a\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engatusamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engomar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"engrisecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enhollinar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enojadizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.354\"\n  },\n  \"enrevesar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enronquecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enseguida\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensordecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ensordecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterizo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enterramiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entoloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entomofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrecot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entrecó\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entregar mal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"entremetido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enturbiado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enturbiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envalentonado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envenenamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"enviar un drive\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envilecedor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"envilecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"eosinofilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epidemiológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epilepsia postraumática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"epiléptico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equipo de rescate\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equus hemionus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"equus hemionus kiang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erosión costera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error de interpretación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"error informático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"erupción volcánica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escabrosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"escafandra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escalar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escalofrío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escandalizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"escaparsse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escapulario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escarabajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escaramuzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escarnecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escatología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"escaño trasero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"escorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuadrón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escuchar a escondidas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escudar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"escándalo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.065\"\n  },\n  \"esferocarpales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esmeril\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esnob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esnobismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espada de Damocles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espaldarón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esparadrapo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"especie humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espeluzno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espinillera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espirar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espiritualista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espontaneidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esprue\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"espíritu necrófago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquibob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquirol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquirolaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquivez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"esquizoide\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"estacionario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"estafilococo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar abatido\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar al mando\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar deprimido\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar en la higuera\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estar mal visto\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estigmatizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estornudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estrabismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estregar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estreñimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estridente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.205\"\n  },\n  \"estrucioniformes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estructura defensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estupideces\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"estupidez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.141\"\n  },\n  \"eurylaimidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutanasia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"eutrofización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evacuación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evacuado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evasionismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"evidentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exagerado elogio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exantema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exculpatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exhorto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exorcismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expandirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"expediente termporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"experiencia sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"expiatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exploración geográfica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"exterminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extralingüístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extrañar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"extremismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facineroso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"facochero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falacia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"falco rusticolus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falconiforme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fallecimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsa\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falta de consideración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falta de educación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falta de equivalencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"falta de forma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Haemulidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia Myrmecophagidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"familia melampsoráceas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasmada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fantasmagórico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"farsante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fatigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"febrífugo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"felis silvestris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fenestral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ferula assafoetida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fervientemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fibrinólisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre de Texas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre del ganado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre paratifoidea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre recurrente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiebre tifoidea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fieramente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"figura retórica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fijarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"filicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fimosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"final de copa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fiscal general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisgón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisicalismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fisura del paladar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flecar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flojear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"flojedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"flora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"floresta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fluctuante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folclor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folclore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"folklore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"follonero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fosforo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fox-trot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"foxtrot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franciscano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frangollar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frangollón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"franja de vuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frase pegadiza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fraude fiscal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frenesí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frescor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frigorífico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fringillidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frivolidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"frufrú\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"frígido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuego antiaéreo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuego preparado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuegos artificiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuegos de artificio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fuerza centrífuga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fugacidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fulminante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funcionario de prisiones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funeral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"funerario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"futilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.137\"\n  },\n  \"fábrica de armamento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fárrago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"físicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"fútil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gafar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gafas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gafas protectoras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galactosemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"galleta para perros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gallinería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gallumbos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"galvanización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gamberrismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gammaglobulina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganar prosélitos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gandul\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrena del tallo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangrenarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gangsterismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ganzúa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garabato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"garantía del cumplimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"garranchuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gas nervioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastar una broma\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gastritis crónica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gato del desierto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gato maltés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gato salvaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gato siamés\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaviota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gavión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gaznápiro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"gañido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gegenschein\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gemelo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gemir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"generalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus amsinckia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anchusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bauhinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus bos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus brachystegia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cassiope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cercosporella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus cocculus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus coptis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus crescentia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus dendroctonus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus entoloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus lepiota\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus limenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus monarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus physostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus phytophthora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus pythium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus reticulitermes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus rosellinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus tussilago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genus veratrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"genéricamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gilbert\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glitch\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glándula submaxilar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"glíptica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gobierno en el exilio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gobierno títere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golfante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golpear duramente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"golpearse contra\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gonorrea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gordiano\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gordinflón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gordito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorguera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorjal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorra de marinero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorro de dormir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gorro de ducha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gran angular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gran vida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"granulomatosis crónica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grasa poliinsaturada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gratis\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grimorio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gris-pizarra\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grisáceo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grocería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grullo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"grunge\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guante de boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardafrenos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guardarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"guardia de prisión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guasábara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guerra bacteriológica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guili\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guilladura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guindo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guiñapo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"guripa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gustatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gálbano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gángster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"gánster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Anastomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Anthonomus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Antilope\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Cerapteryx\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Dipsosaurus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Latrodectus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género Streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género aethusa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género bauhínia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género cardamine\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género empetrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género fisostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género humano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género monarda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"género ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer añicos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer baronet\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer caer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer desaparecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer falta\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer gris\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer prosélitos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer responsable\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer tongo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer trizas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacer una apuesta\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hacerse con\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hacerse humo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"haiku\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"halcón gerifalte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hallar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hamartia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harapo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"harpía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"hauberk\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebefrenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hebefrénico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hecho polvo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hematuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"hemiplejia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemiplejía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hemoptisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"heredero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"herida de guerra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herradero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"herrumbrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hibris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrocefalia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrocele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidrofóbico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hidroxicina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hierro cinco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"himenomicetes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperacusia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperinsulinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiperón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipogammaglobulinemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipogonadismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hipopotasemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"historia heroica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"historiador del arte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hiyab\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hoja trifoliada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"holgado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"holgazán\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hollín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hombre del tiempo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hombre lobo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homicidio involuntario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"homicidio sin premeditación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hongo carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hongo del marchitamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"horririzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hortícola\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hospital de campaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hostigamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"huelga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hurañía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"husmeador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"hábeas corpus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ictal\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ignífugo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilegibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ilimitadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"immunizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impactar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impedimento olfativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impenetrabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"imperativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imperceptible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"impertinencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"impetuosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imponibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impopular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"importunar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"imposible\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impostor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impracticable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impresentable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impresión sensorial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imprevisto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"improductividad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"impudencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impuesto de exportación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impuesto de protección\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"impulsivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"imágenes prediseñadas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"in flagrante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inabordable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inaccesibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inadmisibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inaplicable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inasistencia escolar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incansablemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incapacitador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incauta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendiarismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incendio provocado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incertitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incoherencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"incompetentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"incomprendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inconcreción\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"inconscientemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"incontrolable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.188\"\n  },\n  \"incuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"incursionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indeciso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefensable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indefinición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indelimitable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indetectable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"indeterminable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"indigestión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indiscutible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.246\"\n  },\n  \"indomabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indoméstico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indumento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"indómito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inelegibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inerme\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inestabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.21\"\n  },\n  \"inexpresable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"inextinguible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inextirpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infamador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infame\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"infanticidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infinitamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inflamación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inflamarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"informalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"informe\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"infravivienda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"infundado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inharmónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhibirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inhumación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injerto de piel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injustamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"injustificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmanejable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmarcesible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmigrado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmigrante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmoderado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.227\"\n  },\n  \"inmoral\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"inmudable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inmundicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.129\"\n  },\n  \"inmunitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inocentón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inoculación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"inodoro\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inositol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inpalpable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inprocedencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquisición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inquisitivamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insalubridad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insatisfactorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insecticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inservible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"insidioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"insignias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insincera\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inspector general\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instantáneamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instigador de odio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"instrumento de tortura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insuficiencia renal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insultos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insurgente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"insípido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"insólito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"inteligencia táctica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intensamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intento de estafa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interdicto permanente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interferencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interinidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"interuniversitario\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intoxicación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intraducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intranquilizador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"intranquilizar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invencibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inviabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inviable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"invisibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"inédito\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ir a dormir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ir a rebufo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ir en yate\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"iron número cinco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irrealizable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irredimible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreligioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreprimido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irresoluble\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irresoluto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irreversibilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irse a pique\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"irse al catre\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"itraconazol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jacaranda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jacarandá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jaqueca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"jarrete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jeans\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jihadi\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jorguinería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jubón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"judío errante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"jumentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juncoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"juntamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justiciero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"justillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kart\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kaón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kiang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"kleenex\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laceración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lactante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ladrón\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ladrón de carretera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lama glama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lambdacismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamentable caso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamentable ejemplo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lamentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.191\"\n  },\n  \"lapidación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lapidar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laringitis espasmódica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"larvicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"las 24 horas\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"laterita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latitud\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latitud lunar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"latrodectus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lauréola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lavarse las manos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leche pasteurizada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lecho de enfermo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lederhosen\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leer la cartilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"legionella\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lengua afilada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lengua cosmopolita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lengua mordaz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente de electrones\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lente granangular\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lentes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leontina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leptospira\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesa majestad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lesión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"letalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leucemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leucoencefalitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"levantar barricadas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ley estatutaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ley musulmana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"leyenda fantástica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liarse a puñetazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertinismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"libertino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"libre\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"licántropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lid\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lidiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligeros\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lignificado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"liguero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ligón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limenitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"limo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linfadenoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"linfogranuloma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lingualumina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lisiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"listeriosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llamamiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"llevadero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"llorica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lobreguez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"locura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"lodazal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"loza de barro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lucha libre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luchador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luchar a puñetazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ludibrio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"luminiscencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lumpemproletariado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luna de cosecha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"luz roja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"lycopodiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lámpara de neón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lástima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"lúpulo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"machado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madera de arce\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madera de sicomoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"madera de sicómoro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mafioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magia negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magisterial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magistratura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"magullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal ejemplo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal emparejado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal entendido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mal viaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala administración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala fama\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mala pata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"malandrín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malapropismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malcriador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldecido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maldiciente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maleante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malformado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malnutrición\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malogro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"malos modales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malos tratos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maltratar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malus sylvestris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malvadamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malversar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"malware\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mamotreto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mamporro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mancha de aceite\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancha de barro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancha de lodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancha de nacimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancha de óxido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mancillado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mandante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mando hidráulico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manga raglán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manganeso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mangueo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mangui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manotada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manotazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantequilla de cacao\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mantón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"manzano silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marattiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marcado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marinero polémico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"marsala\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masacrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masacre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mascara\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mascarada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mascullar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masticador ruidoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"masticar ruidosamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mataperros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"matarratas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material aislante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"material bélico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maton\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"maula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mazmorra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mecanografiado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medio de comunicación escrito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medioambientalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"medula oblonga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melanosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melindre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"melopsittacus undulatus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memoria a largo plazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"memoria no volátil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mendaz\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"mendigo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meningitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mercadillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesa de despacho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesita de café\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mesías\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metalepsis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metanol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"metijón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"meyótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mezquinamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"miastenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"micronutriente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"microonda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mielatelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"migraña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"milano negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"militantismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"millettia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mineral de plomo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mini\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minimoto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"minyán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mirar a las musarañas\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mirlo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mirmecófagos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mixomatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moblaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.056\"\n  },\n  \"mod\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mofa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"mofarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.065\"\n  },\n  \"monario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monarquía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongolismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mongoloide\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monoaural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"montecillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"monóxido de carbono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordida de perro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mordisco de perro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moronidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortificador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mortuorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"motín\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"movido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"moño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mucus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mudez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"mueblaje\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mugriento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mujeriego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mundo de fantasía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"murmullo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"murriña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"musitar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"muslera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mustiarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"mártir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"médico de cabecera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"médico generalista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"médula oblonga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nada crítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nada polémico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcolepsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcoleptico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotraficante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"narcotráfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrofilia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necromancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necromanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"necrótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negligé\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"negruzco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neolengua\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nerita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurastenia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurofibromatosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurotóxico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neurálgico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neutral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"neutralidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"nevera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nevus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nicturia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nido de ardilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nigromancia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"nigromántico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihilismo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nihilista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nirvana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nitrobenceno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no alistado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no astringente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no catalogado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no causativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no cercada\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no cercado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no constreñido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no coronado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no deducible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no delineado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no explosivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no extensible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no ficticio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no fisible\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no investigador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no ionizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no iónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no lavable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no metal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no metálico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no portátil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no recíproco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no regenerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no registrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no retractil\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no seleccionado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no sindicalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"no vendido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noble vitalicio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nocturnamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nonato\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nosología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"noticiario cinematográfico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novela corta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novela de aventuras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"novial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nube corneal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nubloso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuez de cola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuez moscada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"nuez muescada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 22\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 24\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 25\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 27\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 34\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 4\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"número atómico 73\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obeso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"objetor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oboe de amore\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obscurantista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obsesivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"obstaculización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obstinarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"obviamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"octópodo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ofensiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oficial de la ley\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ojeroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ojo de pez\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ola de protestas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olla de barro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olor corporal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"olvido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.102\"\n  },\n  \"olvido total\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"omatidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"onagro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oncogén\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ondeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"opaco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"operación de inteligencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"optez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orden de bacterias\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orden de detención\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orden del día\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"order phallales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orfandad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"organizativo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"orquidales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ortopnea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oscurantista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osqueocele\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"osteítis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"otredad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"out\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oveja negra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"oxímoron\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ozonium\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"oído interno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pachá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palabras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palabras de despedida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palanquista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatalizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palatosquisis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paleopatología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paliación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paliativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"palmarla\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paludismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pan negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pancreatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panecillo de viena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pantalones de montar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"panzazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papel carbón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"papel de carta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"paperas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paracetamol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paralelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paranoia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paraquat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parecido mutuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parecido mútuo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pareo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parque zoológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parricidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parte demandante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partido político\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partícula beta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"partícula elemental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parálisis cerebral\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"parésico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasajero\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasamano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasar por encima\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasar revista\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"paso lento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pastelito relleno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasterización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurelosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pasteurización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patentemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patología animal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patología vegetal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"patoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"país de hadas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pañuelo de cabeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pañuelo de cuello\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pañuelo de papel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pañuelo del cuello\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pecable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pediculosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pedrisco\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelagra\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelea con cuchillos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelear\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"pelear a puñetazos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peleón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peligro sanitario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pelota de golf\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peluca gris\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"penetrantemente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pensión de mala muerte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peoría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peplo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perder intensidad\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peridotita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perifrástico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perilla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periodontitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"periquito australiano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perjudicar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"perlino\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permanganato de potasa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permitir fluctuar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"permitir la fluctuación\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perniciosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perpetración\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perplejidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona malhumorada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"persona odiada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"personalidad psicopática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"perturbación mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pertussis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pestañada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"peste septicémica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pesticida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pezizales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phallales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"philadelphus coronarius\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"physostigma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"phytophthora\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piantado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picada de abeja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picada de mosquito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picadura de abeja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picadura de mosquito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picardías\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pickelhaube\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"picor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piel de gallina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pieza del ajedrez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pigargo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pila galvánica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.12\"\n  },\n  \"pintamonas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pinza de corbata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piperacilina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirata informático\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"piridina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pirómetro óptico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pitufo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"piuria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plaguicida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planchar con máquina\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planchazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plantador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"planímetro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plañidero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pleitista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"pluma blanca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plumbemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"plutócrata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pobretón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pobreza extrema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poca fiabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poco convencido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poco convincente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poli\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"policia montado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"policía montada de Canadá\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polizonte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"polémica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"política arriesgada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"política de agresión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"política de la cuerda floja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"política del borde del abismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"político estafador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pompón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poner en peligro\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"poner en tela de juicio\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"popularismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portaligas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"portentoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poseso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"poseído\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postillón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postrado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"postulación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"practicar esgrima\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preaviso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"precautorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preeclampsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pregunta difícil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prejuzgar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"prenda de vestir\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prenderse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prendimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"preocupante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"prerrequisito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"presbicia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"primogénito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problema difícil\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problemas de oído\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"problemas de visión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"procurarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prodigar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producir una conmoción cerebral\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"producto perecedero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"proferir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prolijidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"propiciatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prostatitis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protector del brazo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protector del cuello\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"protestación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prueba de Schick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prueba de fuego\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prueba de schick\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"prueba decisiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudoalucinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pseudofloema\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicología clínica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicosis de angustia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psilotáceas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psiquiatría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"psitacosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"psocópteros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pteridosperma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ptosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pudibundez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puerto de montaña\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pugilismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulmotor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulmón de acero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pulsar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto de golpe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"punto muerto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"puro cuento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrescencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"putrescina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pythium debaryanum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pélvico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pérdida de memoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pérdida del conocimiento\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"pérfido\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"póliza abierta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"póliza flotante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quedarse en blanco\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"queratocono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"queso suizo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quijote\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quijotería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quijotismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quimono\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinquefoliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quinqui\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"quitarse de encima\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabicorto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rabona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racaneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"racanería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"randa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ranger\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rapaz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rasguño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ratero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rayo beta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raza humana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"raíz rosada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reacción fisiológica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reaparecer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recelar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"receloso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rechazado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recondenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconditez\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconfortar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reconquistar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recriminar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recriminatorio\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recuperador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"recursos humanos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recursos laborales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"recusante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"redistribuir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reelección\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reencender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"referencia anatómica\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflejo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflejo incondicionado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflejo innato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reflejo instintivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refrigerador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"refutable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regicidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reglamentar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"regordete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rehabilitación correccional\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reintegrarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relación señal/ruido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relamerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relato de aventuras\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"relieve terrestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"remilgo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repartir mal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repetidamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"repolludo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reposo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requemarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisito previo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"requisitoria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"res adjudicata\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residuo tóxico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"residuos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"resonancia nuclear\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respectar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respuesta evasiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"respuesta refleja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"restos mortales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"resurgir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retaliar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"reticulitermes\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retorcerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"retraerse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"revoloteo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"rezongar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rickettsiosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rigatoni\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rijo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rijosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rima visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ring de boxeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rinoceronte negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rival\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"robar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.042\"\n  },\n  \"robo armado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rodillera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rodillero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romanal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rompehuelgas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"romper la crisma\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronchar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronco\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rondador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronquedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronquera\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ronzar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ropa de playa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ropa de trabajo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ropa interior\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"ropón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rosal silvestre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rosellinia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roseta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rotenona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roux\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roñería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"roñosería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubeola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubiales\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruborizado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rubéola\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruego indirecto\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rufianería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rufianismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruido sordo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ruina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.139\"\n  },\n  \"ruinas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"rynchopidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"régimen títere\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"réquiem\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"río Somme\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"s/n\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sableador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sablista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sacudirse algo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salacot\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salicilato de metilo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salirse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"salteado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sanción pragmática\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sangre espesa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saprobio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saqueador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarampión alemán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarcoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sardónico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sarong\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sarong malayo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"satanista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"satiriasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"saturnismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scam\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scat\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sciarida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scleroderma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"scotland yard\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seboso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secano\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seclusión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secobarbital\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"secuestrar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.056\"\n  },\n  \"sed de sangre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.144\"\n  },\n  \"seguir en\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seguro automotriz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seguro de incendios\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seguro del coche\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"selenio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"semianalfabeto\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sensación de presión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sense datum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentido de la orientación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sentido de la responsabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sepelio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"septicemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sepultura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ser mítico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sermoneo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serológico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serpenteante\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"serrasalmus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seudoalucinación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"seudoefedrina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"señal/ruido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sharía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shigelosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"shock anafiláctico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sicario\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"sicoterapeuta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siesta liviana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sifilítico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"signo dólar\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"similor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simplista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"simplon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin alfombrar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin controversia\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin corona\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin cristales\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin derretir\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin diferencias\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin dilación\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin dirección escrita\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin explotar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin guión\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin motivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin ocupar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin papeles\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin polarizar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin recortar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin regenerar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin registrar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin resistencia\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin techo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin tejer\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin vender\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sin ventilar\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinestésico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinrazón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sinverguenza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"siquiatría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sirla\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sirte\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema auditivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de pesos y medidas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sistema de propulsión\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"skibob\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"slang\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"snobismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrefalda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenatural\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenaturalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenaturalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobrenaturalístico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sobreveste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socavón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socio del apostador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"socio del estafador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soga\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sojuzgador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solaz\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.063\"\n  },\n  \"soldados hostiles\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"solresol\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somatosensorial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sombrero de ala ancha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sombrero de cowboy\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sombrero hongo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"somnifobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonar a metal\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sonsonete\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soplo sistólico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soplon\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"soportable\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sorprender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.068\"\n  },\n  \"sosegador\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospecha\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"sospechosamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospechoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospechoso de asesinato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sospechoso de robo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sotana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"spang\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"staphylococcus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"status asmaticus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"stout\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"streptopelia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"streptopelia turtur\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subnormalidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subrayado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subsidio de enfermedad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subversivo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subwoofer\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"subyugador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"succionar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sudor frío\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"suelta\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sueño del opio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sueño fantástico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sufridor\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superar en estrategia\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"supernaturalista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"superrealista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"surrealista\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.177\"\n  },\n  \"sustancia viscosa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sutilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"syringa\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"sí\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome de down\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síndrome meníngeo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"síntoma\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"tabardillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tacañería\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taciturno\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"taladro mecánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"talidomida\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tanatología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantalio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantarantán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tantarán\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tapping\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taqué\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarasca\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarifas de exportación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarjar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tarántula\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tatuar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"taxabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tedioso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"tejanos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"temperatura baja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tenebrosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"teratología\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terrorización\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"terópodos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tesarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"testamentaría\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tez morena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tez tostada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"thriller\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tie-break\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiesura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tifoidea\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tifus recurrente\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirar la toalla\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirar violentamente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tirita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiritón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"titanio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiznadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tiñoso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toc!\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toc toc\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocar a\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocar a difuntos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocar el clarín\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocar suavemente\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tocón\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tomarse cinco minutos\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tombac\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topero\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"topista\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toque de bocina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tories\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"torpeza\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"tortuosidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.125\"\n  },\n  \"tos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tos ferina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"toser\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tozudo\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.105\"\n  },\n  \"trabajo duro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traficante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traficante de armas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traidor\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"traje de baño\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traje de buceo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traje de cuartel\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traje de faena\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traje de vuelo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traje espacial\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trampa para ratas\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trance religioso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilamente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tranquilidad de espíritu\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"transgredir\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trasponer\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno auditivo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno mental\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trastorno visual\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratamiento paliativo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratante de caballos\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tratarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"traumatofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trepidación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tributabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trickster\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricloroetileno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tricomoniasis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trifoliado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triscaidecafobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triunvirato\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"triunviro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"troglodytidae\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trompeadura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tropezar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"tropo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"trucar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tsunami\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tubercular\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tuberculós\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tugurio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tularemia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumbarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumbona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumescente\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tumor benigno\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turboembrague\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"turbonada\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tussilago\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"táctico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"tártaro emético\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ténue\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ufanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.265\"\n  },\n  \"ulcerado\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ulceroso\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultramicroscopio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ultramontanismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uniformidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"unilateralismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"universalmente\": {\n    \"pos\": \"r\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uso indebido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"uxoricidio\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaccinia virus\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacilante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vacuna\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"vacunación\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"vaginismo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vaqueros\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"variabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"varicela\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vena ilíaca primitiva\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vengador\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vengar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vengarse\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"venirse abajo\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.072\"\n  },\n  \"ventoso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ventriloquia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veratrum\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"verdugado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"versículo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vesania\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vesanía\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestido de novia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestidura\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vestigial\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"veto de bolsillo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viaje en diligencia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viaje pesado\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vicealmirante\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vieja\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vieja gruñona\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viejo chocho\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viento del nordeste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viento del noreste\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"villana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"virtud cardinal\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viruela ovina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vislumbre\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"viuda\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"viudo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volver a condenar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volver a encender\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"volver a fotografiar\": {\n    \"pos\": \"v\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulcanita\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vulnerabilidad\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía muerta\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía secundaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"vía subsidiaria\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"víctima\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"whodunit\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"xenolito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zangarriana\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.088\"\n  },\n  \"zidovudina\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ziti\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoo\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoofobia\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoológico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zoonosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zorro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"zurcido\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido brómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido crómico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido fumárico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido hipocloroso\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido maleico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ácido permangánico\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ázoe\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"óbito\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ópalo negro\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ósmosis\": {\n    \"pos\": \"n\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  },\n  \"ótico\": {\n    \"pos\": \"a\",\n    \"pol\": \"-0.25\",\n    \"std\": \"0.0\"\n  }\n}"
  },
  {
    "path": "lib/natural/sentiment/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\n  Dylan R. E. Moonfire <https://github.com/dmoonfire>,\n  Emily Marigold Klassen <https://github.com/forivall>,\n  Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport type { Stemmer } from '../stemmers'\n\nexport type AfinnLanguageType = 'afinn'\nexport type AfinnLanguage = 'English' | 'Spanish' | 'Portuguese'\n\nexport type SenticonLanguageType = 'senticon'\nexport type SenticonLanguage = 'Spanish' | 'English' | 'Galician' | 'Catalan' | 'Basque'\n\nexport type PatternLanguageType = 'pattern'\nexport type PatternLanguage = 'Dutch' | 'Italian' | 'English' | 'French' | 'German'\n\nexport declare class SentimentAnalyzer {\n  constructor (language: string, stemmer: Stemmer | undefined, type: string)\n  getSentiment (words: string[]): number\n}\n"
  },
  {
    "path": "lib/natural/sentiment/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.SentimentAnalyzer = require('./SentimentAnalyzer')\n"
  },
  {
    "path": "lib/natural/sentiment/tools/README.md",
    "content": "# Tools\nThis folder contains some tools for manipulating vocabularies for the sentiment analyzer.\n\n## `sentimentXmlParser`\nTransforms ML-Senticon XML files into JSON files. The JSON file contains a vocabulary that maps words to objects as follows:\n```javascript\n\"admirable\": {\n  \"pos\": \"a\",\n  \"pol\": \"1.0\",\n  \"std\": \"0.0\"\n}\n```\nProperty `pol` is the sentiment of the word.\n\n## `XmlParser4PatternData`\nTransforms 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:\n```javascript\n  \"aanraden\": {\n    \"form\": \"aanraden\",\n    \"cornetto_id\": \"\",\n    \"cornetto_synset_id\": \"\",\n    \"wordnet_id\": \"\",\n    \"pos\": \"VB\",\n    \"sense\": \"\",\n    \"polarity\": \"0.2\",\n    \"subjectivity\": \"0.0\",\n    \"intensity\": \"1.0\",\n    \"confidence\": \"0.9\"\n  }\n```\nProperty `polarity` is the sentiment of the word.\n"
  },
  {
    "path": "lib/natural/sentiment/tools/XmlParser4PatternData.js",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst fs = require('fs')\nconst parseString = require('xml2js').parseString\n\nconst baseFolder = '/home/hugo/Workspace/pattern/pattern/text/'\n// var inputFile = baseFolder + \"nl/nl-sentiment.xml\";\n// var outputFile = baseFolder + \"nl/nl-sentiment.json\";\n// var inputFile = baseFolder + \"fr/fr-sentiment.xml\";\n// var outputFile = baseFolder + \"fr/fr-sentiment.json\";\n// var inputFile = baseFolder + \"en/en-sentiment.xml\";\n// var outputFile = baseFolder + \"en/en-sentiment.json\";\nconst inputFile = baseFolder + 'it/it-sentiment.xml'\nconst outputFile = baseFolder + 'it/pattern-sentiment-it.json'\n\nconst xml = fs.readFileSync(inputFile, 'utf8')\nconst list = {}\n\nparseString(xml, function (err, result) {\n  if (err) {\n    console.log(err)\n    return\n  }\n  // console.log(JSON.stringify(result, null, 2));\n  console.log(result.sentiment.word.length)\n  for (let i = 0; i < result.sentiment.word.length; i++) {\n    console.log(result.sentiment.word[i].$.form)\n    list[result.sentiment.word[i].$.form] = result.sentiment.word[i].$\n  }\n})\n\nconsole.log(Object.keys(list).length)\n\nfs.writeFileSync(outputFile, JSON.stringify(list, null, 2))\n"
  },
  {
    "path": "lib/natural/sentiment/tools/sentimentXmlParser.js",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst fs = require('fs')\nconst parseString = require('xml2js').parseString\n\nconst xml = fs.readFileSync('senticon.ca.xml', 'utf8')\n\nconst list = {}\n\nparseString(xml, function (err, result) {\n  if (err) {\n    console.log(err)\n    return\n  }\n  for (let i = 0; i < result.senticon.layer.length; i++) {\n    for (let j = 0; j < result.senticon.layer[i].positive[0].lemma.length; j++) {\n      // console.log(util.inspect(result.senticon.layer[i].negative[0].lemma[j], false, null))\n      list[result.senticon.layer[i].positive[0].lemma[j]._] = result.senticon.layer[i].positive[0].lemma[j].$\n    }\n    for (let n = 0; n < result.senticon.layer[i].negative[0].lemma.length; n++) {\n      list[result.senticon.layer[i].negative[0].lemma[n]._] = result.senticon.layer[i].negative[0].lemma[n].$\n    }\n  }\n})\n\nconst listTrimmed = {}\n\nfor (const token in list) {\n  listTrimmed[token.replace(/ /gi, '').replace(/_/gi, ' ')] = list[token]\n}\nconsole.log(listTrimmed)\n// console.log(util.inspect(list, false, null))\nconsole.log(Object.keys(listTrimmed).length)\n\nfs.writeFileSync('senticon_ca.json', JSON.stringify(listTrimmed, null, 2))\n"
  },
  {
    "path": "lib/natural/spellcheck/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nDylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport declare class Spellcheck {\n  constructor (wordlist: string[])\n  isCorrect (word: string): boolean\n  getCorrections (word: string, maxDistance?: number): string[]\n  edits (word: string): string[]\n  editsWithMaxDistance (word: string, maxDistance: number): string[]\n}\n"
  },
  {
    "path": "lib/natural/spellcheck/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.Spellcheck = require('./spellcheck')\n"
  },
  {
    "path": "lib/natural/spellcheck/spellcheck.js",
    "content": "/*\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Trie = require('../trie/trie')\n\n// Probabilistic spellchecker based on http://norvig.com/spell-correct.html\n// 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\n// 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\n\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)\nclass Spellcheck {\n  constructor (wordlist) {\n    this.trie = new Trie()\n    this.trie.addStrings(wordlist)\n    this.word2frequency = {}\n    for (const i in wordlist) {\n      if (!this.word2frequency[wordlist[i]]) {\n        this.word2frequency[wordlist[i]] = 0\n      }\n      this.word2frequency[wordlist[i]]++\n    }\n  }\n\n  isCorrect (word) {\n    return this.trie.contains(word)\n  }\n\n  // Returns a list of suggested corrections, from highest to lowest probability\n  // maxDistance is the maximum edit distance\n  // 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.\n  getCorrections (word, maxDistance) {\n    const self = this\n    if (!maxDistance) maxDistance = 1\n    let edits = this.editsWithMaxDistance(word, maxDistance)\n    edits = edits.slice(1, edits.length)\n    edits = edits.map(function (editList) {\n      return editList.filter(function (word) { return self.isCorrect(word) })\n        .map(function (word) { return [word, self.word2frequency[word]] })\n        .sort(function (a, b) { return a[1] > b[1] ? -1 : 1 })\n        .map(function (wordscore) { return wordscore[0] })\n    })\n    let flattened = []\n    for (const i in edits) {\n      if (edits[i].length) {\n        flattened = flattened.concat(edits[i])\n      }\n    }\n    return flattened.filter(function (v, i, a) {\n      return a.indexOf(v) === i\n    })\n  }\n\n  // Returns all edits that are 1 edit-distance away from the input word\n  edits (word) {\n    const alphabet = 'abcdefghijklmnopqrstuvwxyz'\n    let edits = []\n    for (let i = 0; i < word.length + 1; i++) {\n      if (i > 0) edits.push(word.slice(0, i - 1) + word.slice(i, word.length)) // deletes\n      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\n      for (let k = 0; k < alphabet.length; k++) {\n        if (i > 0) edits.push(word.slice(0, i - 1) + alphabet[k] + word.slice(i, word.length)) // replaces\n        edits.push(word.slice(0, i) + alphabet[k] + word.slice(i, word.length)) // inserts\n      }\n    }\n    // Deduplicate edits\n    edits = edits.filter(function (v, i, a) { return a.indexOf(v) === i })\n    return edits\n  }\n\n  // Returns all edits that are up to \"distance\" edit distance away from the input word\n  editsWithMaxDistance (word, distance) {\n    return this.editsWithMaxDistanceHelper(distance, [[word]])\n  }\n\n  editsWithMaxDistanceHelper (distanceCounter, distance2edits) {\n    if (distanceCounter === 0) return distance2edits\n    const currentDepth = distance2edits.length - 1\n    const words = distance2edits[currentDepth]\n    // const edits = this.edits(words[0])\n    distance2edits[currentDepth + 1] = []\n    for (const i in words) {\n      distance2edits[currentDepth + 1] = distance2edits[currentDepth + 1].concat(this.edits(words[i]))\n    }\n    return this.editsWithMaxDistanceHelper(distanceCounter - 1, distance2edits)\n  }\n}\n\nmodule.exports = Spellcheck\n"
  },
  {
    "path": "lib/natural/stemmers/Carry/index.js",
    "content": "/*\nCopyright (c) 2020, Johan Maupetit, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// Integration with natural\nconst Stemmer = require('../stemmer_fr')\nconst CarryStemmer = new Stemmer()\n\nconst stepConfs = require('./stepConfs')\nconst { pipe } = require('./utils')\n\nconst defaultConf = {\n  steps: stepConfs,\n  vowels: /[aeiouäâàéèëêïîöôùüûœ]/i\n}\n\n// count number of vowel-consonant groups\nconst getWordSize = (word) => {\n  let isPrevVowel = false\n  let nbVCgroups = 0\n\n  for (let i = 0; i < word.length; i += 1) {\n    const letter = word[i]\n    const isVowel = defaultConf.vowels.test(letter)\n\n    if (!isVowel && isPrevVowel) {\n      nbVCgroups += 1\n    }\n\n    isPrevVowel = isVowel\n  }\n\n  return nbVCgroups\n}\n\nconst tranform = (word, stepConf) => {\n  let newWord = null\n\n  for (\n    let suffixLength = word.length - 1;\n    suffixLength > 0 && !newWord;\n    suffixLength -= 1\n  ) {\n    const suffix = word.substr(-suffixLength)\n    const baseWord = word.substr(0, word.length - suffixLength)\n\n    for (\n      let minRadixSize = 0;\n      minRadixSize <= 1 && !newWord;\n      minRadixSize += 1\n    ) {\n      const transformations = stepConf[minRadixSize] || {}\n      const newSuffix = transformations[suffix]\n\n      if (newSuffix === undefined) {\n        continue\n      }\n\n      const candidate = `${baseWord}${newSuffix}`\n\n      if (getWordSize(candidate) > minRadixSize) {\n        newWord = candidate\n        break\n      }\n    }\n  }\n\n  return newWord || word\n}\n\nfunction NodeCarry (userConf = defaultConf) {\n  const conf = {\n    ...defaultConf,\n    ...userConf\n  }\n\n  this.steps = [0, 1, 2]\n    .map((iStep) => (word) => tranform(word, conf.steps[iStep]))\n\n  this.stem = pipe(...this.steps)\n};\n\n// Create a Carry stemmer\nconst nodeCarry = new NodeCarry()\n// Attach the Carry stemmer to natural's generic stemmer\nCarryStemmer.stem = nodeCarry.stem\nmodule.exports = CarryStemmer\n"
  },
  {
    "path": "lib/natural/stemmers/Carry/stepConfs.js",
    "content": "/*\nCopyright (c) 2020, Johan Maupetit\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst steps = [\n  // === Step 1\n  [\n    // Transformations with 1 as minimal radix\n    {\n      issaient: '',\n      ellement: 'el',\n      issement: '',\n      alement: 'al',\n      eraient: '',\n      iraient: '',\n      eassent: '',\n      ussent: '',\n      amment: '',\n      emment: '',\n      issant: '',\n      issent: '',\n      assent: '',\n      eaient: '',\n      issait: '',\n      èrent: '',\n      erent: '',\n      irent: '',\n      erait: '',\n      irait: '',\n      iront: '',\n      eront: '',\n      ement: '',\n      aient: '',\n      îrent: '',\n      eont: '',\n      eant: '',\n      eait: '',\n      ient: '',\n      ent: '',\n      ont: '',\n      ant: '',\n      eât: '',\n      ait: '',\n      at: '',\n      ât: '',\n      it: '',\n      ît: '',\n      t: '',\n      uction: '',\n      ition: '',\n      tion: '',\n      eur: '',\n      ier: '',\n      er: '',\n      ir: '',\n      r: '',\n      eassiez: '',\n      issiez: '',\n      assiez: '',\n      ussiez: '',\n      issez: '',\n      assez: '',\n      eriez: '',\n      iriez: '',\n      erez: '',\n      irez: '',\n      iez: '',\n      ez: '',\n      erai: '',\n      irai: '',\n      eai: '',\n      ai: '',\n      i: '',\n      ira: '',\n      era: '',\n      ea: '',\n      a: '',\n      f: 'v',\n      yeux: 'oeil',\n      eux: '',\n      aux: 'al',\n      x: '',\n      issante: '',\n      eresse: '',\n      eante: '',\n      easse: '',\n      eure: '',\n      esse: '',\n      asse: '',\n      ance: '',\n      ence: '',\n      aise: '',\n      euse: '',\n      oise: 'o',\n      isse: '',\n      ante: '',\n      ouse: 'ou',\n      ière: '',\n      ete: '',\n      ète: '',\n      iere: '',\n      aire: '',\n      erie: '',\n      étude: '',\n      etude: '',\n      itude: '',\n      ade: '',\n      isme: '',\n      age: '',\n      trice: '',\n      cque: 'c',\n      que: 'c',\n      eille: 'eil',\n      elle: '',\n      able: '',\n      iste: '',\n      ulle: 'ul',\n      gue: 'g',\n      ette: '',\n      nne: 'n',\n      itée: '',\n      ité: '',\n      té: '',\n      ée: '',\n      é: '',\n      usse: '',\n      // aise: '',\n      ate: '',\n      ite: '',\n      ee: '',\n      e: '',\n      issements: '',\n      issantes: '',\n      eassions: '',\n      eresses: '',\n      issions: '',\n      assions: '',\n      issants: '',\n      ussions: '',\n      ements: '',\n      eantes: '',\n      issons: '',\n      assons: '',\n      easses: '',\n      études: '',\n      etudes: '',\n      itudes: '',\n      issais: '',\n      trices: '',\n      eilles: 'eil',\n      irions: '',\n      erions: '',\n      usses: '',\n      tions: '',\n      ances: '',\n      entes: '',\n      eants: '',\n      ables: '',\n      irons: '',\n      irais: '',\n      ences: '',\n      ients: '',\n      ieres: '',\n      eures: '',\n      aires: '',\n      erons: '',\n      esses: '',\n      euses: '',\n      ulles: 'ul',\n      cques: 'c',\n      elles: '',\n      // ables: '',\n      istes: '',\n      aises: '',\n      asses: '',\n      isses: '',\n      oises: 'o',\n      // tions: '',\n      ouses: 'ou',\n      ières: '',\n      eries: '',\n      antes: '',\n      ismes: '',\n      erais: '',\n      eâtes: '',\n      eâmes: '',\n      itées: '',\n      ettes: '',\n      ages: '',\n      eurs: '',\n      ents: '',\n      ètes: '',\n      etes: '',\n      ions: '',\n      ités: '',\n      ites: '',\n      ates: '',\n      âtes: '',\n      îtes: '',\n      // eurs: '',\n      iers: '',\n      iras: '',\n      eras: '',\n      ants: '',\n      îmes: '',\n      ûmes: '',\n      âmes: '',\n      ades: '',\n      eais: '',\n      eons: '',\n      ques: 'c',\n      gues: 'g',\n      nnes: 'n',\n      ttes: '',\n      // îtes: '',\n      tés: '',\n      ons: '',\n      ais: '',\n      ées: '',\n      ees: '',\n      ats: '',\n      eas: '',\n      ts: '',\n      rs: '',\n      as: '',\n      es: '',\n      fs: 'v',\n      és: '',\n      is: '',\n      s: '',\n      eau: '',\n      au: '',\n      // aire: '',\n      ien: 'i'\n    },\n\n    // Transformations with 2 as minimal radix\n    {\n      ication: '',\n      iation: '',\n      ation: '',\n      ateur: '',\n      teur: '',\n      ure: '',\n      ications: '',\n      iations: '',\n      ateurs: '',\n      ations: '',\n      teurs: '',\n      ures: ''\n    }\n  ],\n\n  // === Step 2\n  [\n    {\n      i: ''\n    },\n\n    {\n      ent: '',\n      ation: '',\n      ition: '',\n      tion: '',\n      el: ''\n    }\n  ],\n\n  // === Step 3\n  [\n    {\n      ll: 'l',\n      mm: 'm',\n      nn: 'n',\n      pp: 'p',\n      tt: 't',\n      ss: 's',\n      y: '',\n      t: '',\n      qu: 'c'\n    }\n  ]\n]\n\nmodule.exports = steps\n"
  },
  {
    "path": "lib/natural/stemmers/Carry/utils.js",
    "content": "/*\nCopyright (c) 2020, Johan Maupetit\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst compose = (...fns) => (x) => fns.reduceRight((v, f) => f(v), x)\nconst pipe = (...fns) => (x) => fns.reduce((v, f) => f(v), x)\n\nmodule.exports = {\n  compose,\n  pipe\n}\n"
  },
  {
    "path": "lib/natural/stemmers/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>, Emily Marigold Klassen <https://github.com/forivall>, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\ndeclare interface RegionsType {\n  r1: number\n  r2: number\n  rv: number\n}\n\nexport declare interface Stemmer {\n  stem: (token: string, options?: any) => string\n  addStopWord: (stopWord: string) => void\n  addStopWords: (moreStopWords: string[]) => void\n  removeStopWord: (stopWord: string) => void\n  removeStopWords: (moreStopWords: string[]) => void\n  tokenizeAndStem: (text: string, keepStops?: boolean) => string[]\n  regions: (word: string) => RegionsType\n  prelude: (token: string) => string\n  endsinArr: (token: string, suffixes: string[]) => string\n  categorizeGroups: (token: string) => string\n  measure: (token: string) => number\n\n  // Exposed for testing purposes:\n  step1: (token: string) => string\n  step1a: (token: string) => string\n  step1b: (token: string) => string\n  step1c: (token: string) => string\n  step2: (token: string) => string\n  step3: (token: string) => string\n  step4: (token: string) => string\n  step5a: (token: string) => string\n  step5b: (token: string) => string\n}\n\nexport let CarryStemmerFr: Stemmer\nexport let LancasterStemmer: Stemmer\nexport let PorterStemmer: Stemmer\nexport let PorterStemmerDe: Stemmer\nexport let PorterStemmerEs: Stemmer\nexport let PorterStemmerFa: Stemmer\nexport let PorterStemmerFr: Stemmer\nexport let PorterStemmerIt: Stemmer\nexport let PorterStemmerNl: Stemmer\nexport let PorterStemmerNo: Stemmer\nexport let PorterStemmerPt: Stemmer\nexport let PorterStemmerUk: Stemmer\nexport let PorterStemmerRu: Stemmer\nexport let PorterStemmerSv: Stemmer\nexport let StemmerId: Stemmer\nexport let StemmerJa: Stemmer\n\nexport declare type TokenCallback = (...args: number[]) => number[] | number\n\nexport declare class Token {\n  vowels: string[] | string\n  regions: Record<string, number>\n  string: string\n  original: string\n\n  constructor (s: string)\n  usingVowels (vowels: string | string[]): Token\n  markRegion (region: string, args: number[] | number | null, callback?: TokenCallback, context?: unknown): Token\n  replaceAll (find: string, replace: string): Token\n  replaceSuffixInRegion (suffix: string, replace: string, region: string): Token\n  hasVowelAtIndex (index: number): boolean\n  nextVowelIndex (index: number): number\n  nextConsonantIndex (index: number): number\n  hasSuffix (suffix: string): number\n  hasSuffixInRegion (suffix: string, region: string): boolean\n}\n"
  },
  {
    "path": "lib/natural/stemmers/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.PorterStemmer = require('./porter_stemmer')\nexports.PorterStemmerFa = require('./porter_stemmer_fa')\nexports.PorterStemmerFr = require('./porter_stemmer_fr')\nexports.CarryStemmerFr = require('./Carry')\nexports.PorterStemmerDe = require('./porter_stemmer_de')\nexports.PorterStemmerUk = require('./porter_stemmer_uk')\nexports.PorterStemmerRu = require('./porter_stemmer_ru')\nexports.PorterStemmerEs = require('./porter_stemmer_es')\nexports.PorterStemmerIt = require('./porter_stemmer_it')\nexports.PorterStemmerNo = require('./porter_stemmer_no')\nexports.PorterStemmerSv = require('./porter_stemmer_sv')\nexports.PorterStemmerPt = require('./porter_stemmer_pt')\nexports.PorterStemmerNl = require('./porter_stemmer_nl')\nexports.LancasterStemmer = require('./lancaster_stemmer')\nexports.StemmerJa = require('./stemmer_ja')\nexports.StemmerId = require('./indonesian/stemmer_id')\nexports.Token = require('./token')\n"
  },
  {
    "path": "lib/natural/stemmers/indonesian/base_stemmer_id.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../../util/stopwords_id')\nconst Tokenizer = require('../../tokenizers/aggressive_tokenizer_id')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.addStopWord = function (stopWord) {\n    stopwords.words.push(stopWord)\n  }\n\n  stemmer.addStopWords = function (moreStopWords) {\n    stopwords.words = stopwords.words.concat(moreStopWords)\n  }\n\n  stemmer.removeStopWord = function (stopWord) {\n    this.removeStopWords([stopWord])\n  }\n\n  stemmer.removeStopWords = function (moreStopWords) {\n    moreStopWords.forEach(function (stopWord) {\n      const idx = stopwords.words.indexOf(stopWord)\n      if (idx >= 0) {\n        stopwords.words.splice(idx, 1)\n      }\n    })\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n    const lowercaseText = text.toLowerCase()\n    const tokens = new Tokenizer().tokenize(lowercaseText)\n\n    if (keepStops) {\n      tokens.forEach(function (token) {\n        stemmedTokens.push(stemmer.stem(token))\n      })\n    } else {\n      tokens.forEach(function (token) {\n        if (stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) }\n      })\n    }\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/indonesian/data/kata-dasar.json",
    "content": "[\n  \"aba\",\n  \"abad\",\n  \"abadi\",\n  \"abadiah\",\n  \"abah\",\n  \"abai\",\n  \"abaimana\",\n  \"abaka\",\n  \"abaktinal\",\n  \"abakus\",\n  \"abal-abal\",\n  \"aban\",\n  \"abang\",\n  \"abangan\",\n  \"abangga\",\n  \"abar\",\n  \"abatoar\",\n  \"abau\",\n  \"abdas\",\n  \"abdi\",\n  \"abdikasi\",\n  \"abdomen\",\n  \"abdominal\",\n  \"abdu\",\n  \"abduksi\",\n  \"abduktor\",\n  \"abece\",\n  \"aben\",\n  \"aberasi\",\n  \"abet\",\n  \"abian\",\n  \"abid\",\n  \"abidin\",\n  \"abilah\",\n  \"abing\",\n  \"abiogenesis\",\n  \"abiosfer\",\n  \"abiotik\",\n  \"abis\",\n  \"abisal\",\n  \"abiseka\",\n  \"abiturien\",\n  \"abjad\",\n  \"abjadiah\",\n  \"ablasi\",\n  \"ablaut\",\n  \"ablepsia\",\n  \"abnormal\",\n  \"abnormalitas\",\n  \"abnus\",\n  \"aboi\",\n  \"abolisi\",\n  \"abon\",\n  \"abonemen\",\n  \"abong-abong\",\n  \"aborsi\",\n  \"abortif\",\n  \"abortiva\",\n  \"abortus\",\n  \"abrak\",\n  \"abrakadabra\",\n  \"abrar\",\n  \"abras\",\n  \"abrasi\",\n  \"abreaksi\",\n  \"abrek\",\n  \"abreviasi\",\n  \"abrikos\",\n  \"abrit-abrit\",\n  \"abrosfer\",\n  \"absah\",\n  \"absen\",\n  \"absensi\",\n  \"absensia\",\n  \"absente\",\n  \"absenteisme\",\n  \"abses\",\n  \"absis\",\n  \"absolusi\",\n  \"absolut\",\n  \"absolutisme\",\n  \"absonan\",\n  \"absorb\",\n  \"absorben\",\n  \"absorbir\",\n  \"absorpsi\",\n  \"absorpsiometer\",\n  \"absorptif\",\n  \"abstain\",\n  \"abstinensi\",\n  \"abstrak\",\n  \"abstraksi\",\n  \"absurd\",\n  \"absurdisme\",\n  \"abtar\",\n  \"abu\",\n  \"abuan\",\n  \"abuh\",\n  \"abuk\",\n  \"abulhayat\",\n  \"abulia\",\n  \"abun-abun\",\n  \"abur\",\n  \"abus\",\n  \"abyad\",\n  \"acah\",\n  \"acak\",\n  \"acala\",\n  \"acan\",\n  \"acang\",\n  \"acap\",\n  \"acar\",\n  \"acara\",\n  \"acaram\",\n  \"acat\",\n  \"acau\",\n  \"acawi\",\n  \"acerang\",\n  \"aci\",\n  \"acik\",\n  \"aco\",\n  \"acu\",\n  \"acuh\",\n  \"acum\",\n  \"acung\",\n  \"ada\",\n  \"adab\",\n  \"adad\",\n  \"adagio\",\n  \"adagium\",\n  \"adakala\",\n  \"adakalanya\",\n  \"adakan\",\n  \"adaks\",\n  \"adaktil\",\n  \"adalah\",\n  \"adalat\",\n  \"adam\",\n  \"adan\",\n  \"adang\",\n  \"adap\",\n  \"adaptabel\",\n  \"adaptabilitas\",\n  \"adaptasi\",\n  \"adaptif\",\n  \"adaptometer\",\n  \"adaptor\",\n  \"adapun\",\n  \"adar\",\n  \"adas\",\n  \"adat\",\n  \"adati\",\n  \"adegan\",\n  \"adeh\",\n  \"adekuat\",\n  \"adem\",\n  \"adempauze\",\n  \"adendum\",\n  \"adenoid\",\n  \"adenoma\",\n  \"adenosis\",\n  \"adhesi\",\n  \"adhesif\",\n  \"adi\",\n  \"adiabatik\",\n  \"adiabatis\",\n  \"adiaktinik\",\n  \"adib\",\n  \"adibangkit\",\n  \"adibintang\",\n  \"adiboga\",\n  \"adibusana\",\n  \"adicita\",\n  \"adidaya\",\n  \"adigang\",\n  \"adiguna\",\n  \"adigung\",\n  \"adik\",\n  \"adika\",\n  \"adikara\",\n  \"adikarya\",\n  \"adikodrati\",\n  \"adikong\",\n  \"adiksi\",\n  \"adiktif\",\n  \"adikuasa\",\n  \"adil\",\n  \"adiluhung\",\n  \"adimarga\",\n  \"adinda\",\n  \"ading\",\n  \"adipati\",\n  \"adipenghantar\",\n  \"adiposa\",\n  \"adipositas\",\n  \"adipura\",\n  \"adiraja\",\n  \"adiratna\",\n  \"adisi\",\n  \"adisional\",\n  \"adisiswa\",\n  \"aditif\",\n  \"aditokoh\",\n  \"adiwangsa\",\n  \"adiwarna\",\n  \"adiwidia\",\n  \"adjektif\",\n  \"adjektiva\",\n  \"adjektival\",\n  \"adjuvan\",\n  \"administrasi\",\n  \"administratif\",\n  \"administrator\",\n  \"admiral\",\n  \"admisi\",\n  \"admitans\",\n  \"adnan\",\n  \"adolesens\",\n  \"adon\",\n  \"adopsi\",\n  \"adoptif\",\n  \"adpertensi\",\n  \"adrenal\",\n  \"adrenalin\",\n  \"adrenergik\",\n  \"adres\",\n  \"adsorben\",\n  \"adsorpi\",\n  \"adsorpsi\",\n  \"adstringen\",\n  \"adu\",\n  \"aduh\",\n  \"aduhai\",\n  \"aduk\",\n  \"aduksi\",\n  \"aduktor\",\n  \"adun\",\n  \"adveksi\",\n  \"adven\",\n  \"adventisia\",\n  \"adventisius\",\n  \"adverbia\",\n  \"adverbial\",\n  \"advertensi\",\n  \"advis\",\n  \"advokad\",\n  \"advokasi\",\n  \"advokat\",\n  \"aerasi\",\n  \"aerator\",\n  \"aerob\",\n  \"aerobatik\",\n  \"aerobik\",\n  \"aerobika\",\n  \"aerodinamik\",\n  \"aerodinamika\",\n  \"aerofisika\",\n  \"aerofisiologi\",\n  \"aerofon\",\n  \"aerogram\",\n  \"aerolit\",\n  \"aerologi\",\n  \"aerometer\",\n  \"aeromovel\",\n  \"aeronautika\",\n  \"aeroplangton\",\n  \"aeroplankton\",\n  \"aeroskop\",\n  \"aerosol\",\n  \"aerostat\",\n  \"aerostatika\",\n  \"aestetika\",\n  \"afair\",\n  \"afal\",\n  \"afasia\",\n  \"afdal\",\n  \"afdeling\",\n  \"afdruk\",\n  \"afek\",\n  \"afeksi\",\n  \"afektif\",\n  \"aferesis\",\n  \"afiat\",\n  \"afidavit\",\n  \"afiks\",\n  \"afiksasi\",\n  \"afiliasi\",\n  \"afinitas\",\n  \"afirmasi\",\n  \"afirmatif\",\n  \"afonia\",\n  \"aforisme\",\n  \"afotik\",\n  \"afrasia\",\n  \"afrikat\",\n  \"afrit\",\n  \"afrodisiak\",\n  \"afsun\",\n  \"afwah\",\n  \"aga\",\n  \"agah\",\n  \"agak\",\n  \"agak-agih\",\n  \"agal\",\n  \"agalaksia\",\n  \"agam\",\n  \"agama\",\n  \"agamais\",\n  \"agamawi\",\n  \"agamen\",\n  \"agamet\",\n  \"agami\",\n  \"agamogenesis\",\n  \"agan\",\n  \"agape\",\n  \"agar\",\n  \"agas\",\n  \"agen\",\n  \"agenda\",\n  \"agens\",\n  \"agentif\",\n  \"agih\",\n  \"agil\",\n  \"agio\",\n  \"agiria\",\n  \"agitasi\",\n  \"agitatif\",\n  \"agitator\",\n  \"aglikon\",\n  \"aglomerasi\",\n  \"aglomerat\",\n  \"aglutinasi\",\n  \"aglutinat\",\n  \"aglutinatif\",\n  \"aglutinin\",\n  \"agnosia\",\n  \"agnostik\",\n  \"agnostisisme\",\n  \"agogo\",\n  \"agometer\",\n  \"agon\",\n  \"agonia\",\n  \"agonis\",\n  \"agonistik\",\n  \"agorafobia\",\n  \"agradasi\",\n  \"agrafia\",\n  \"agraria\",\n  \"agraris\",\n  \"agregasi\",\n  \"agregat\",\n  \"agregatif\",\n  \"agresi\",\n  \"agresif\",\n  \"agresivitas\",\n  \"agresor\",\n  \"agriologi\",\n  \"agripnia\",\n  \"agrisilvikultur\",\n  \"agrobis\",\n  \"agrobisnis\",\n  \"agroekonomi\",\n  \"agroekosistem\",\n  \"agrogeologi\",\n  \"agroikos\",\n  \"agroindustri\",\n  \"agrokimia\",\n  \"agronom\",\n  \"agronomi\",\n  \"agrostologi\",\n  \"agrowisata\",\n  \"aguk\",\n  \"agul\",\n  \"agun\",\n  \"agung\",\n  \"agus\",\n  \"agustus\",\n  \"agut\",\n  \"ahad\",\n  \"ahadiat\",\n  \"ahimsa\",\n  \"ahistoris\",\n  \"ahkam\",\n  \"ahlan\",\n  \"ahli\",\n  \"ahlulbait\",\n  \"ahlulkitab\",\n  \"ahlulkubur\",\n  \"ahlunujum\",\n  \"ahlusuluk\",\n  \"ahlusunah\",\n  \"ahmak\",\n  \"ahmar\",\n  \"aho\",\n  \"ahsan\",\n  \"ahwal\",\n  \"aib\",\n  \"ain\",\n  \"ainulbanat\",\n  \"ainulyakin\",\n  \"ainunjariah\",\n  \"air\",\n  \"aja\",\n  \"ajab\",\n  \"ajaib\",\n  \"ajaibkhanah\",\n  \"ajak\",\n  \"ajal\",\n  \"ajang\",\n  \"ajar\",\n  \"ajek\",\n  \"ajektifa\",\n  \"ajektiva\",\n  \"ajengan\",\n  \"aji\",\n  \"ajigineng\",\n  \"ajimumpung\",\n  \"ajir\",\n  \"ajisaka\",\n  \"ajnabi\",\n  \"ajnas\",\n  \"ajojing\",\n  \"ajre\",\n  \"aju\",\n  \"ajudan\",\n  \"ajufan\",\n  \"ajujah\",\n  \"ajuk\",\n  \"ajun\",\n  \"ajung\",\n  \"ajur\",\n  \"ajuster\",\n  \"akad\",\n  \"akademi\",\n  \"akademik\",\n  \"akademikus\",\n  \"akademis\",\n  \"akademisi\",\n  \"akaid\",\n  \"akak\",\n  \"akal\",\n  \"akan\",\n  \"akang\",\n  \"akapela\",\n  \"akar\",\n  \"akas\",\n  \"akasia\",\n  \"akatalepsia\",\n  \"akbar\",\n  \"akene\",\n  \"akeo\",\n  \"akh\",\n  \"akhbar\",\n  \"akhir\",\n  \"akhirat\",\n  \"akhirulkalam\",\n  \"akhlak\",\n  \"akhlaki\",\n  \"akhwan\",\n  \"aki\",\n  \"akibat\",\n  \"akidah\",\n  \"akik\",\n  \"akikah\",\n  \"akil\",\n  \"aklamasi\",\n  \"aklasia\",\n  \"akli\",\n  \"akliah\",\n  \"aklimasi\",\n  \"aklimatisasi\",\n  \"akmal\",\n  \"akolade\",\n  \"akomodasi\",\n  \"akomodatif\",\n  \"akor\",\n  \"akordeon\",\n  \"akrab\",\n  \"akrawati\",\n  \"akreditasi\",\n  \"akriflavina\",\n  \"akrilat\",\n  \"akrilik\",\n  \"akrobat\",\n  \"akrobatik\",\n  \"akrofobia\",\n  \"akromegali\",\n  \"akrometer\",\n  \"akromion\",\n  \"akronim\",\n  \"aksa\",\n  \"aksara\",\n  \"akseleran\",\n  \"akselerasi\",\n  \"akselerator\",\n  \"akselerometer\",\n  \"aksen\",\n  \"aksentologi\",\n  \"aksentuasi\",\n  \"aksep\",\n  \"akseptabel\",\n  \"akseptabilitas\",\n  \"akseptasi\",\n  \"akseptor\",\n  \"akses\",\n  \"aksesibilitas\",\n  \"aksesori\",\n  \"aksi\",\n  \"aksidental\",\n  \"aksila\",\n  \"aksiologi\",\n  \"aksioma\",\n  \"aksiomatis\",\n  \"aksis\",\n  \"akson\",\n  \"aksostil\",\n  \"akta\",\n  \"aktentas\",\n  \"aktif\",\n  \"akting\",\n  \"aktinida\",\n  \"aktinik\",\n  \"aktinisme\",\n  \"aktinium\",\n  \"aktinokimia\",\n  \"aktinolit\",\n  \"aktinometer\",\n  \"aktiva\",\n  \"aktivis\",\n  \"aktivisme\",\n  \"aktivitas\",\n  \"aktor\",\n  \"aktris\",\n  \"aktual\",\n  \"aktualisasi\",\n  \"aktuaria\",\n  \"aktuaris\",\n  \"aku\",\n  \"akua\",\n  \"akuades\",\n  \"akuaduk\",\n  \"akuakultur\",\n  \"akualung\",\n  \"akuamarin\",\n  \"akuan\",\n  \"akuarel\",\n  \"akuaris\",\n  \"akuarium\",\n  \"akuarius\",\n  \"akuatik\",\n  \"akuifer\",\n  \"akuisisi\",\n  \"akuk\",\n  \"akulturasi\",\n  \"akumulasi\",\n  \"akumulatif\",\n  \"akumulator\",\n  \"akun\",\n  \"akuntabel\",\n  \"akuntabilitas\",\n  \"akuntan\",\n  \"akuntansi\",\n  \"akupungtur\",\n  \"akupungturis\",\n  \"akupunktur\",\n  \"akur\",\n  \"akurasi\",\n  \"akurat\",\n  \"akusatif\",\n  \"akustik\",\n  \"akustika\",\n  \"akut\",\n  \"akwal\",\n  \"ala\",\n  \"alabangka\",\n  \"alabio\",\n  \"alaf\",\n  \"alai\",\n  \"alai-belai\",\n  \"alaihisalam\",\n  \"alaika\",\n  \"alaikum\",\n  \"alak\",\n  \"alalia\",\n  \"alam\",\n  \"alamah\",\n  \"alamak\",\n  \"alamanda\",\n  \"alamas\",\n  \"alamat\",\n  \"alamatulhayat\",\n  \"alami\",\n  \"alamiah\",\n  \"alamin\",\n  \"alan-alan\",\n  \"alang\",\n  \"alangkah\",\n  \"alantois\",\n  \"alap\",\n  \"alarm\",\n  \"alas\",\n  \"alat\",\n  \"alau\",\n  \"alawar\",\n  \"alazon\",\n  \"albanat\",\n  \"albas\",\n  \"albatros\",\n  \"albedo\",\n  \"albedometer\",\n  \"albinisme\",\n  \"albino\",\n  \"albinoid\",\n  \"albit\",\n  \"albuginea\",\n  \"album\",\n  \"albumen\",\n  \"albumin\",\n  \"albuminoit\",\n  \"albuminometer\",\n  \"albuminuria\",\n  \"aldehida\",\n  \"alegori\",\n  \"alegoris\",\n  \"aleksandrit\",\n  \"aleksia\",\n  \"aleksin\",\n  \"alel\",\n  \"alem\",\n  \"alergen\",\n  \"alergi\",\n  \"alergis\",\n  \"alf\",\n  \"alfa\",\n  \"alfabet\",\n  \"alfabetis\",\n  \"alfaktorius\",\n  \"alfanumerik\",\n  \"alferes\",\n  \"alga\",\n  \"algilik\",\n  \"algoid\",\n  \"algojo\",\n  \"algologi\",\n  \"algometer\",\n  \"algoritme\",\n  \"algrafi\",\n  \"alhamdulillah\",\n  \"alhasil\",\n  \"ali\",\n  \"aliansi\",\n  \"alias\",\n  \"aliase\",\n  \"alibi\",\n  \"alienasi\",\n  \"alif\",\n  \"alifatik\",\n  \"alifbata\",\n  \"alih\",\n  \"alihragam\",\n  \"alik\",\n  \"alikuot\",\n  \"alim\",\n  \"alimbubu\",\n  \"alimentasi\",\n  \"alimenter\",\n  \"alimiah\",\n  \"alimiat\",\n  \"alimun\",\n  \"alin\",\n  \"alinea\",\n  \"aling\",\n  \"alip\",\n  \"alir\",\n  \"alis\",\n  \"alisiklik\",\n  \"alit\",\n  \"aliterasi\",\n  \"alizarin\",\n  \"aljabar\",\n  \"aljalil\",\n  \"alkabir\",\n  \"alkadim\",\n  \"alkadir\",\n  \"alkah\",\n  \"alkali\",\n  \"alkalinitas\",\n  \"alkalis\",\n  \"alkaloid\",\n  \"alkalometri\",\n  \"alkamar\",\n  \"alkana\",\n  \"alkari\",\n  \"alkasyaf\",\n  \"alkausar\",\n  \"alkena\",\n  \"alkil\",\n  \"alkimia\",\n  \"alkisah\",\n  \"alkitab\",\n  \"alkohol\",\n  \"alkoholis\",\n  \"alkoholisasi\",\n  \"alkoholisme\",\n  \"alkoholometer\",\n  \"alku\",\n  \"alkuna\",\n  \"alkus\",\n  \"allah\",\n  \"allahu\",\n  \"allahuma\",\n  \"almaktub\",\n  \"almalik\",\n  \"almalun\",\n  \"almamater\",\n  \"almanak\",\n  \"almandin\",\n  \"almandina\",\n  \"almandit\",\n  \"almarhum\",\n  \"almarhumah\",\n  \"almasih\",\n  \"almuazam\",\n  \"almukhlis\",\n  \"alobar\",\n  \"alofon\",\n  \"alograf\",\n  \"aloi\",\n  \"alokasi\",\n  \"alokron\",\n  \"aloleks\",\n  \"alomerisme\",\n  \"alomorf\",\n  \"alon\",\n  \"alonim\",\n  \"alopati\",\n  \"alopesia\",\n  \"alot\",\n  \"alotropi\",\n  \"alpa\",\n  \"alpaka\",\n  \"alperes\",\n  \"alpukah\",\n  \"alquran\",\n  \"altar\",\n  \"alter\",\n  \"alteratif\",\n  \"alternasi\",\n  \"alternatif\",\n  \"alternator\",\n  \"altimeter\",\n  \"alto\",\n  \"altokumulus\",\n  \"altostratus\",\n  \"altruis\",\n  \"altruisme\",\n  \"altruistis\",\n  \"alu\",\n  \"alufiru\",\n  \"alum\",\n  \"alumina\",\n  \"aluminium\",\n  \"alumni\",\n  \"alumnus\",\n  \"alun\",\n  \"alung\",\n  \"alup\",\n  \"alur\",\n  \"alusi\",\n  \"aluvial\",\n  \"aluvium\",\n  \"alveolar\",\n  \"alveolum\",\n  \"alveolus\",\n  \"alwah\",\n  \"alwasi\",\n  \"alwasia\",\n  \"ama\",\n  \"amabakdu\",\n  \"amah\",\n  \"amai-amai\",\n  \"amal\",\n  \"amalgam\",\n  \"amalgamasi\",\n  \"amalgamator\",\n  \"amaliah\",\n  \"aman\",\n  \"amanah\",\n  \"amanat\",\n  \"amandel\",\n  \"amandemen\",\n  \"amang\",\n  \"amanitin\",\n  \"amar\",\n  \"amarilis\",\n  \"amat\",\n  \"amatir\",\n  \"amatirisme\",\n  \"amatol\",\n  \"ambah\",\n  \"ambah-ambah\",\n  \"ambai\",\n  \"ambai-ambai\",\n  \"ambak\",\n  \"ambal\",\n  \"ambalang\",\n  \"ambalela\",\n  \"ambang\",\n  \"ambar\",\n  \"ambarau\",\n  \"ambasade\",\n  \"ambasador\",\n  \"ambau\",\n  \"ambeien\",\n  \"ambek\",\n  \"amben\",\n  \"amberal\",\n  \"ambergris\",\n  \"amberit\",\n  \"ambet\",\n  \"ambi\",\n  \"ambigu\",\n  \"ambiguitas\",\n  \"ambil\",\n  \"ambilingual\",\n  \"ambin\",\n  \"ambing\",\n  \"ambisi\",\n  \"ambisius\",\n  \"ambivalen\",\n  \"ambivalensi\",\n  \"amblas\",\n  \"amblek\",\n  \"ambles\",\n  \"ambliobia\",\n  \"amboi\",\n  \"ambreng-ambrengan\",\n  \"ambring\",\n  \"ambrol\",\n  \"ambruk\",\n  \"ambu-ambu\",\n  \"ambuh\",\n  \"ambul\",\n  \"ambulakral\",\n  \"ambulans\",\n  \"ambulatori\",\n  \"ambung\",\n  \"ambur\",\n  \"amburadul\",\n  \"ambyar\",\n  \"ameba\",\n  \"amebiasis\",\n  \"ameboid\",\n  \"amebosit\",\n  \"ameliorasi\",\n  \"amelioratif\",\n  \"amen\",\n  \"amendemen\",\n  \"amenorea\",\n  \"amensalisme\",\n  \"amenta\",\n  \"amerisium\",\n  \"amerospora\",\n  \"amerta\",\n  \"ametabola\",\n  \"ametis\",\n  \"ametobola\",\n  \"amfetamin\",\n  \"amfiartrosis\",\n  \"amfibi\",\n  \"amfibol\",\n  \"amfibolisme\",\n  \"amfiston\",\n  \"amfiteater\",\n  \"amfoterik\",\n  \"ami\",\n  \"amigdalin\",\n  \"amikal\",\n  \"amil\",\n  \"amilase\",\n  \"amilopektin\",\n  \"amin\",\n  \"amina\",\n  \"aminisasi\",\n  \"amino\",\n  \"amir\",\n  \"amirulbahar\",\n  \"amirulhaj\",\n  \"amirulmukminin\",\n  \"amis\",\n  \"amit\",\n  \"amitosir\",\n  \"amko\",\n  \"ammeter\",\n  \"amnesia\",\n  \"amnesti\",\n  \"amnion\",\n  \"amniotik\",\n  \"amoi\",\n  \"amonia\",\n  \"amonifikasi\",\n  \"amonit\",\n  \"amonium\",\n  \"amor\",\n  \"amoral\",\n  \"amorf\",\n  \"amortisasi\",\n  \"ampai\",\n  \"ampang\",\n  \"ampas\",\n  \"ampat\",\n  \"ampe\",\n  \"ampean\",\n  \"ampek\",\n  \"ampel\",\n  \"ampela\",\n  \"ampelam\",\n  \"ampelas\",\n  \"ampere\",\n  \"amperemeter\",\n  \"amperometri\",\n  \"ampisilin\",\n  \"amplas\",\n  \"amplifikasi\",\n  \"amplitudo\",\n  \"amplop\",\n  \"ampo\",\n  \"amprok\",\n  \"amprung\",\n  \"ampu\",\n  \"ampuh\",\n  \"ampuk\",\n  \"ampul\",\n  \"ampula\",\n  \"ampun\",\n  \"amput\",\n  \"amputasi\",\n  \"amra\",\n  \"amril\",\n  \"amsal\",\n  \"amtenar\",\n  \"amuba\",\n  \"amuh\",\n  \"amuk\",\n  \"amulet\",\n  \"amung\",\n  \"amunisi\",\n  \"ana\",\n  \"anabasis\",\n  \"anabiosis\",\n  \"anabolisme\",\n  \"anadrom\",\n  \"anaerob\",\n  \"anaerobik\",\n  \"anafilaksis\",\n  \"anafora\",\n  \"anaforis\",\n  \"anafrodisiak\",\n  \"anaglif\",\n  \"anai-anai\",\n  \"anak\",\n  \"anakoluton\",\n  \"anakronisme\",\n  \"anakronistis\",\n  \"anakrus\",\n  \"anal\",\n  \"analekta\",\n  \"analeptik\",\n  \"analgesik\",\n  \"analis\",\n  \"analisis\",\n  \"analitis\",\n  \"analog\",\n  \"analogi\",\n  \"analseks\",\n  \"analsit\",\n  \"anamel\",\n  \"anamnesis\",\n  \"anamorfosis\",\n  \"ananda\",\n  \"anang\",\n  \"anani\",\n  \"anapes\",\n  \"anaptiksis\",\n  \"anarki\",\n  \"anarkis\",\n  \"anarkisme\",\n  \"anarkistis\",\n  \"anasional\",\n  \"anasir\",\n  \"anastomosis\",\n  \"anatase\",\n  \"anatomi\",\n  \"anatomis\",\n  \"anbia\",\n  \"anca\",\n  \"ancai\",\n  \"ancak\",\n  \"ancala\",\n  \"ancam\",\n  \"ancang\",\n  \"ancar-ancar\",\n  \"ancoa\",\n  \"ancol\",\n  \"ancuk\",\n  \"anda\",\n  \"andai\",\n  \"andak\",\n  \"andaka\",\n  \"andal\",\n  \"andalas\",\n  \"andalusit\",\n  \"andam\",\n  \"andan\",\n  \"andang\",\n  \"andapita\",\n  \"andar\",\n  \"andarah\",\n  \"andeng-andeng\",\n  \"anderak\",\n  \"andesit\",\n  \"andewi\",\n  \"andika\",\n  \"andiko\",\n  \"andil\",\n  \"andilau\",\n  \"andok\",\n  \"andong\",\n  \"andragogi\",\n  \"andrawina\",\n  \"androgen\",\n  \"androgini\",\n  \"androgogi\",\n  \"androlog\",\n  \"andrologi\",\n  \"anduh\",\n  \"andur\",\n  \"aneh\",\n  \"aneka\",\n  \"anekdot\",\n  \"aneksasi\",\n  \"anemer\",\n  \"anemia\",\n  \"anemofili\",\n  \"anemograf\",\n  \"anemogram\",\n  \"anemometer\",\n  \"aneroid\",\n  \"anestesi\",\n  \"anestesia\",\n  \"anestesiolog\",\n  \"anestetis\",\n  \"aneuploid\",\n  \"aneurisme\",\n  \"anfas\",\n  \"angah\",\n  \"angan\",\n  \"angel\",\n  \"angga\",\n  \"anggai\",\n  \"anggak\",\n  \"anggal\",\n  \"anggan\",\n  \"anggap\",\n  \"anggar\",\n  \"anggara\",\n  \"anggau\",\n  \"anggerka\",\n  \"anggit\",\n  \"angglap\",\n  \"anggorokasih\",\n  \"anggota\",\n  \"anggrek\",\n  \"angguh\",\n  \"angguk\",\n  \"anggul\",\n  \"anggun\",\n  \"anggung\",\n  \"anggung-anggip\",\n  \"anggur\",\n  \"anggut\",\n  \"anghun\",\n  \"angin\",\n  \"angina\",\n  \"angiogenesis\",\n  \"angiologi\",\n  \"angiosperma\",\n  \"angit\",\n  \"angka\",\n  \"angkak\",\n  \"angkal-angkal\",\n  \"angkara\",\n  \"angkasa\",\n  \"angkat\",\n  \"angkel\",\n  \"angker\",\n  \"angket\",\n  \"angkin\",\n  \"angkit\",\n  \"angklung\",\n  \"angkong\",\n  \"angkring\",\n  \"angku\",\n  \"angkuh\",\n  \"angkuk\",\n  \"angkul-angkul\",\n  \"angkup\",\n  \"angkur\",\n  \"angkus\",\n  \"angkusa\",\n  \"angkut\",\n  \"angler\",\n  \"anglo\",\n  \"anglong\",\n  \"anglung\",\n  \"angon\",\n  \"angop\",\n  \"angot\",\n  \"angpau\",\n  \"angsa\",\n  \"angsana\",\n  \"angsoka\",\n  \"angsu\",\n  \"angsur\",\n  \"angus\",\n  \"angut\",\n  \"anhidrosis\",\n  \"ani\",\n  \"aniaya\",\n  \"anil\",\n  \"anilina\",\n  \"animasi\",\n  \"animis\",\n  \"animisme\",\n  \"animo\",\n  \"aning-aning\",\n  \"anion\",\n  \"aniridia\",\n  \"anis\",\n  \"anisogamet\",\n  \"anisogami\",\n  \"anisokoria\",\n  \"anisotropis\",\n  \"anja\",\n  \"anjak\",\n  \"anjal\",\n  \"anjang\",\n  \"anjangkarya\",\n  \"anjangsana\",\n  \"anjar\",\n  \"anjiman\",\n  \"anjing\",\n  \"anjir\",\n  \"anjlok\",\n  \"anju\",\n  \"anjung\",\n  \"anjur\",\n  \"ankilosis\",\n  \"anoa\",\n  \"anode\",\n  \"anodin\",\n  \"anofeles\",\n  \"anoksemia\",\n  \"anoksik\",\n  \"anom\",\n  \"anomali\",\n  \"anomi\",\n  \"anonim\",\n  \"anonimitas\",\n  \"anoreksia\",\n  \"anorganik\",\n  \"anorgastik\",\n  \"anortopia\",\n  \"anosmia\",\n  \"anotasi\",\n  \"ansa\",\n  \"ansambel\",\n  \"ansar\",\n  \"ansari\",\n  \"anta\",\n  \"antagonis\",\n  \"antagonisme\",\n  \"antagonistis\",\n  \"antah\",\n  \"antah-berantah\",\n  \"antakesuma\",\n  \"antalas\",\n  \"antalkali\",\n  \"antamir\",\n  \"antan\",\n  \"antap\",\n  \"antar\",\n  \"antara\",\n  \"antarbangsa\",\n  \"antarbenua\",\n  \"antardaerah\",\n  \"antari\",\n  \"antariksa\",\n  \"antarkelompok\",\n  \"antarlingkungan\",\n  \"antarmaster\",\n  \"antarmolekul\",\n  \"antarmuka\",\n  \"antarnegara\",\n  \"antarplanet\",\n  \"antarpribadi\",\n  \"antarpulau\",\n  \"antarras\",\n  \"antarruang\",\n  \"antarsel\",\n  \"antarsuku\",\n  \"antartika\",\n  \"antarwilayah\",\n  \"antasid\",\n  \"antasida\",\n  \"antawacana\",\n  \"ante\",\n  \"antedilivium\",\n  \"antediluvium\",\n  \"antefiks\",\n  \"antek\",\n  \"anteken\",\n  \"antelas\",\n  \"anteliks\",\n  \"antelmintik\",\n  \"antelop\",\n  \"antem\",\n  \"antemeridiem\",\n  \"antena\",\n  \"antenatal\",\n  \"anteng\",\n  \"antenul\",\n  \"antep\",\n  \"anter\",\n  \"antera\",\n  \"anteridium\",\n  \"anterior\",\n  \"antero\",\n  \"anteseden\",\n  \"anti\",\n  \"antianemia\",\n  \"antiartritik\",\n  \"antibarion\",\n  \"antibeku\",\n  \"antibiosis\",\n  \"antibiotik\",\n  \"antibodi\",\n  \"antidepresan\",\n  \"antidioksida\",\n  \"antidiuretik\",\n  \"antidot\",\n  \"antienzim\",\n  \"antiflogistik\",\n  \"antigen\",\n  \"antigravitasi\",\n  \"antih\",\n  \"antihistamin\",\n  \"antijasad\",\n  \"antik\",\n  \"antikarat\",\n  \"antikatalis\",\n  \"antiklimaks\",\n  \"antiklin\",\n  \"antiklinal\",\n  \"antiklor\",\n  \"antikonsepsi\",\n  \"antikristus\",\n  \"antikuari\",\n  \"antikuariat\",\n  \"antimateri\",\n  \"antimetari\",\n  \"antimonium\",\n  \"antimuntah\",\n  \"anting\",\n  \"antinomi\",\n  \"antinovel\",\n  \"antipartikel\",\n  \"antipati\",\n  \"antipenawar\",\n  \"antipiretik\",\n  \"antipode\",\n  \"antiproton\",\n  \"antipruritik\",\n  \"antisemitisme\",\n  \"antisepsis\",\n  \"antiseptik\",\n  \"antisiklogenesis\",\n  \"antisiklon\",\n  \"antisiklonal\",\n  \"antisiklonis\",\n  \"antisimpul\",\n  \"antisipasi\",\n  \"antisipatif\",\n  \"antitank\",\n  \"antitesis\",\n  \"antitoksin\",\n  \"antitragus\",\n  \"antiwirawan\",\n  \"antizarah\",\n  \"antoi\",\n  \"antologi\",\n  \"antonim\",\n  \"antonimi\",\n  \"antop\",\n  \"antosian\",\n  \"antraknosa\",\n  \"antraks\",\n  \"antrasena\",\n  \"antrasian\",\n  \"antrasit\",\n  \"antre\",\n  \"antri\",\n  \"antromometer\",\n  \"antromorfis\",\n  \"antropobiologi\",\n  \"antropoda\",\n  \"antropofagi\",\n  \"antropogeografi\",\n  \"antropoid\",\n  \"antropolog\",\n  \"antropologi\",\n  \"antropometer\",\n  \"antropomorfisme\",\n  \"antroponimi\",\n  \"antroposentris\",\n  \"antroposentrisme\",\n  \"antroposofi\",\n  \"antuk\",\n  \"antul\",\n  \"antun\",\n  \"antung-antung\",\n  \"antup\",\n  \"anturium\",\n  \"antusias\",\n  \"antusiasme\",\n  \"anu\",\n  \"anual\",\n  \"anugerah\",\n  \"anuitas\",\n  \"anulir\",\n  \"anulus\",\n  \"anumerta\",\n  \"anunasika\",\n  \"anuresis\",\n  \"anuria\",\n  \"anus\",\n  \"anuswara\",\n  \"anut\",\n  \"anyak\",\n  \"anyam\",\n  \"anyang\",\n  \"anyar\",\n  \"anyel\",\n  \"anyelir\",\n  \"anyep\",\n  \"anyes\",\n  \"anyik\",\n  \"anyir\",\n  \"aorta\",\n  \"apa\",\n  \"apabila\",\n  \"apak\",\n  \"apakah\",\n  \"apakala\",\n  \"apalagi\",\n  \"apam\",\n  \"apanase\",\n  \"apar\",\n  \"aparat\",\n  \"aparatur\",\n  \"aparatus\",\n  \"apartemen\",\n  \"apartemenisasi\",\n  \"apartheid\",\n  \"apartotel\",\n  \"apas\",\n  \"apatah\",\n  \"apati\",\n  \"apatis\",\n  \"apatride\",\n  \"ape\",\n  \"apek\",\n  \"apel\",\n  \"apelativa\",\n  \"apendektomi\",\n  \"apendiks\",\n  \"apendisitis\",\n  \"apepsi\",\n  \"apersepsi\",\n  \"apes\",\n  \"aphelion\",\n  \"apheliotropisme\",\n  \"api\",\n  \"apik\",\n  \"apikal\",\n  \"apikultur\",\n  \"apilan\",\n  \"aping\",\n  \"apion\",\n  \"apit\",\n  \"apium\",\n  \"apkir\",\n  \"aplasi\",\n  \"aplaus\",\n  \"aplikasi\",\n  \"aplikatif\",\n  \"aplus\",\n  \"apnea\",\n  \"apo\",\n  \"apodal\",\n  \"apoenzim\",\n  \"apogami\",\n  \"apoge\",\n  \"apograf\",\n  \"apok\",\n  \"apokalips\",\n  \"apokaliptik\",\n  \"apokope\",\n  \"apokrifa\",\n  \"apokrin\",\n  \"apokromatik\",\n  \"apolitis\",\n  \"apologetika\",\n  \"apologetis\",\n  \"apologi\",\n  \"apologia\",\n  \"apomiksis\",\n  \"apomorfin\",\n  \"apopleksi\",\n  \"aposematik\",\n  \"aposiopesis\",\n  \"aposisi\",\n  \"aposisional\",\n  \"apositif\",\n  \"apostasi\",\n  \"apostel\",\n  \"aposteriori\",\n  \"apostolik\",\n  \"apostrof\",\n  \"apotek\",\n  \"apoteker\",\n  \"apotik\",\n  \"apraksi\",\n  \"apraksia\",\n  \"apresiasi\",\n  \"apresiatif\",\n  \"apresorium\",\n  \"april\",\n  \"apriori\",\n  \"aprit\",\n  \"apron\",\n  \"apsara\",\n  \"apsari\",\n  \"aptasi\",\n  \"aptiklus\",\n  \"apu\",\n  \"apuh\",\n  \"apung\",\n  \"apuran\",\n  \"ara\",\n  \"arab\",\n  \"arababu\",\n  \"arabahu\",\n  \"arabes\",\n  \"arabesk\",\n  \"arabika\",\n  \"aragonit\",\n  \"arah\",\n  \"arai\",\n  \"arak\",\n  \"araknitis\",\n  \"araknoid\",\n  \"aral\",\n  \"aram\",\n  \"aramba\",\n  \"arang\",\n  \"aransemen\",\n  \"ararut\",\n  \"aras\",\n  \"arasy\",\n  \"arau\",\n  \"arbaa\",\n  \"arbab\",\n  \"arbei\",\n  \"arbiter\",\n  \"arbitrase\",\n  \"arbitrer\",\n  \"arboreal\",\n  \"arboretum\",\n  \"arborikultur\",\n  \"arca\",\n  \"arcas\",\n  \"ardi\",\n  \"are\",\n  \"area\",\n  \"areal\",\n  \"arek\",\n  \"arem-arem\",\n  \"aren\",\n  \"arena\",\n  \"areografi\",\n  \"areola\",\n  \"areometer\",\n  \"arerut\",\n  \"ares\",\n  \"arestasi\",\n  \"areta\",\n  \"argari\",\n  \"argentit\",\n  \"argentum\",\n  \"argirodit\",\n  \"argol\",\n  \"argometer\",\n  \"argon\",\n  \"argot\",\n  \"argumen\",\n  \"argumentasi\",\n  \"argumentatif\",\n  \"ari\",\n  \"aria\",\n  \"aries\",\n  \"arif\",\n  \"arifin\",\n  \"arih\",\n  \"arik\",\n  \"aril\",\n  \"aring\",\n  \"ariningsun\",\n  \"arip\",\n  \"aris\",\n  \"arisan\",\n  \"aristokrasi\",\n  \"aristokrat\",\n  \"aristokratis\",\n  \"aristotipe\",\n  \"arit\",\n  \"aritenoid\",\n  \"aritmetika\",\n  \"arja\",\n  \"arkade\",\n  \"arkais\",\n  \"arkaisme\",\n  \"arkan\",\n  \"arkati\",\n  \"arkegonium\",\n  \"arkeolog\",\n  \"arkeologi\",\n  \"arkeologis\",\n  \"arkeozoikum\",\n  \"arketipe\",\n  \"arkian\",\n  \"arkifonem\",\n  \"arkileksem\",\n  \"arkitraf\",\n  \"arktika\",\n  \"arku\",\n  \"arloji\",\n  \"armada\",\n  \"arnal\",\n  \"arogan\",\n  \"arogansi\",\n  \"aroma\",\n  \"aromatik\",\n  \"arombai\",\n  \"aron\",\n  \"arpus\",\n  \"arsenal\",\n  \"arsenik\",\n  \"arsenikum\",\n  \"arsip\",\n  \"arsipelago\",\n  \"arsir\",\n  \"arsis\",\n  \"arsitek\",\n  \"arsitektur\",\n  \"arta\",\n  \"artefak\",\n  \"arteri\",\n  \"arteriografi\",\n  \"arteriola\",\n  \"arteriosklerosis\",\n  \"artesis\",\n  \"artetis\",\n  \"arti\",\n  \"articok\",\n  \"artifak\",\n  \"artifisial\",\n  \"artik\",\n  \"artikel\",\n  \"artikulasi\",\n  \"artikulator\",\n  \"artileri\",\n  \"artiodaktil\",\n  \"artis\",\n  \"artisan\",\n  \"artistik\",\n  \"artisyok\",\n  \"artona\",\n  \"artotek\",\n  \"artrobrankium\",\n  \"artropoda\",\n  \"aru\",\n  \"aruan\",\n  \"aruda\",\n  \"aruk\",\n  \"arumba\",\n  \"arun\",\n  \"arung\",\n  \"arus\",\n  \"arwah\",\n  \"arwana\",\n  \"arya\",\n  \"aryaduta\",\n  \"arzak\",\n  \"asa\",\n  \"asabat\",\n  \"asabiah\",\n  \"asabiyah\",\n  \"asad\",\n  \"asah\",\n  \"asai\",\n  \"asak\",\n  \"asal\",\n  \"asali\",\n  \"asam\",\n  \"asan\",\n  \"asana\",\n  \"asap\",\n  \"asar\",\n  \"asas\",\n  \"asasi\",\n  \"asbak\",\n  \"asbes\",\n  \"asbut\",\n  \"aseksual\",\n  \"asemble\",\n  \"asembling\",\n  \"asepsis\",\n  \"aseptik\",\n  \"aseran\",\n  \"asese\",\n  \"aset\",\n  \"asetabulum\",\n  \"asetat\",\n  \"asetilena\",\n  \"asetimeter\",\n  \"aseton\",\n  \"asfal\",\n  \"asfar\",\n  \"asfiksia\",\n  \"asi\",\n  \"asibilan\",\n  \"asibilasi\",\n  \"asid\",\n  \"asidimeter\",\n  \"asidosis\",\n  \"asih\",\n  \"asiklik\",\n  \"asil\",\n  \"asilabis\",\n  \"asimetris\",\n  \"asimilasi\",\n  \"asimilatif\",\n  \"asimtot\",\n  \"asimus\",\n  \"asin\",\n  \"asindeton\",\n  \"asing\",\n  \"asinyor\",\n  \"asiri\",\n  \"asisten\",\n  \"asistensi\",\n  \"askar\",\n  \"askariasis\",\n  \"askarid\",\n  \"askese\",\n  \"asket\",\n  \"asketisisme\",\n  \"askon\",\n  \"askriptif\",\n  \"asli\",\n  \"asma\",\n  \"asmara\",\n  \"asmaradanta\",\n  \"asmaragama\",\n  \"asmaraloka\",\n  \"asmarandana\",\n  \"asnad\",\n  \"aso\",\n  \"asoi\",\n  \"asonansi\",\n  \"asong\",\n  \"asor\",\n  \"asortimen\",\n  \"asosial\",\n  \"asosiasi\",\n  \"asosiatif\",\n  \"aspal\",\n  \"asparaga\",\n  \"asparagus\",\n  \"aspartame\",\n  \"aspek\",\n  \"asperses\",\n  \"aspiran\",\n  \"aspirasi\",\n  \"aspirasional\",\n  \"aspirat\",\n  \"aspiratif\",\n  \"aspirator\",\n  \"aspirin\",\n  \"asprak\",\n  \"asrama\",\n  \"asrar\",\n  \"asri\",\n  \"assalamualaikum\",\n  \"asta\",\n  \"astadikpala\",\n  \"astaga\",\n  \"astagfirullah\",\n  \"astaka\",\n  \"astakona\",\n  \"astana\",\n  \"astasia\",\n  \"astatik\",\n  \"astatin\",\n  \"astenia\",\n  \"astenik\",\n  \"astenopia\",\n  \"asteositoma\",\n  \"aster\",\n  \"asteroid\",\n  \"astigmatis\",\n  \"astra\",\n  \"astral\",\n  \"astringen\",\n  \"astrofisika\",\n  \"astrolab\",\n  \"astrolog\",\n  \"astrologi\",\n  \"astronaut\",\n  \"astronautika\",\n  \"astronom\",\n  \"astronomi\",\n  \"astronomis\",\n  \"astrosit\",\n  \"asu\",\n  \"asuh\",\n  \"asumsi\",\n  \"asumtif\",\n  \"asung\",\n  \"asurador\",\n  \"asuransi\",\n  \"asusila\",\n  \"aswa\",\n  \"aswad\",\n  \"aswasada\",\n  \"asyera\",\n  \"asyik\",\n  \"asytoret\",\n  \"asyura\",\n  \"atak\",\n  \"ataksia\",\n  \"atap\",\n  \"atar\",\n  \"atas\",\n  \"atase\",\n  \"atau\",\n  \"atavisme\",\n  \"atebrin\",\n  \"ateis\",\n  \"ateisme\",\n  \"ateistis\",\n  \"atelir\",\n  \"atensi\",\n  \"atenuasi\",\n  \"ateret\",\n  \"atfal\",\n  \"ati\",\n  \"atlas\",\n  \"atlet\",\n  \"atletik\",\n  \"atma\",\n  \"atman\",\n  \"atmolisis\",\n  \"atmologi\",\n  \"atmometer\",\n  \"atmosfer\",\n  \"atmosferis\",\n  \"ato\",\n  \"atok\",\n  \"atol\",\n  \"atom\",\n  \"atomisasi\",\n  \"atomistis\",\n  \"atop\",\n  \"atos\",\n  \"atowa\",\n  \"atraksi\",\n  \"atraktan\",\n  \"atraktif\",\n  \"atresia\",\n  \"atret\",\n  \"atribut\",\n  \"atributif\",\n  \"atrisi\",\n  \"atrium\",\n  \"atrofi\",\n  \"atropin\",\n  \"atung\",\n  \"atur\",\n  \"atus\",\n  \"aubade\",\n  \"audiensi\",\n  \"audio\",\n  \"audiofil\",\n  \"audiofon\",\n  \"audiograf\",\n  \"audiogram\",\n  \"audiolingual\",\n  \"audiologi\",\n  \"audiometer\",\n  \"audiovisual\",\n  \"audit\",\n  \"auditor\",\n  \"auditorium\",\n  \"augmentatif\",\n  \"auk\",\n  \"auksanometer\",\n  \"auksi\",\n  \"auksin\",\n  \"aula\",\n  \"aulia\",\n  \"aum\",\n  \"aung\",\n  \"aur\",\n  \"aura\",\n  \"aural\",\n  \"aurat\",\n  \"aurikularia\",\n  \"aurora\",\n  \"aurum\",\n  \"aus\",\n  \"auskultasi\",\n  \"autad\",\n  \"autarki\",\n  \"autarkis\",\n  \"autentik\",\n  \"autentikasi\",\n  \"autentisitas\",\n  \"autisme\",\n  \"autistik\",\n  \"auto\",\n  \"autobiograf\",\n  \"autobiografi\",\n  \"autodidak\",\n  \"autodidaktik\",\n  \"autodin\",\n  \"autofon\",\n  \"autogami\",\n  \"autogen\",\n  \"autograf\",\n  \"autografi\",\n  \"autogram\",\n  \"autoklaf\",\n  \"autoklastik\",\n  \"autokrasi\",\n  \"autokrat\",\n  \"autokton\",\n  \"autoktonos\",\n  \"autolisis\",\n  \"autolitograf\",\n  \"autologi\",\n  \"automaton\",\n  \"automobil\",\n  \"automotif\",\n  \"autopsi\",\n  \"autoskop\",\n  \"autosom\",\n  \"autotoksin\",\n  \"autotrof\",\n  \"autotrofik\",\n  \"autotrop\",\n  \"autotropik\",\n  \"auzubillah\",\n  \"avalans\",\n  \"aven\",\n  \"aversi\",\n  \"avertebrata\",\n  \"avesta\",\n  \"avgas\",\n  \"aviari\",\n  \"aviasi\",\n  \"aviator\",\n  \"avifauna\",\n  \"avikultur\",\n  \"avirulen\",\n  \"avitaminosis\",\n  \"avokad\",\n  \"avontur\",\n  \"avonturir\",\n  \"avtur\",\n  \"avunkulokal\",\n  \"awa\",\n  \"awaair\",\n  \"awaarang\",\n  \"awabau\",\n  \"awabeku\",\n  \"awabulu\",\n  \"awabusa\",\n  \"awadara\",\n  \"awah\",\n  \"awahama\",\n  \"awai\",\n  \"awak\",\n  \"awal\",\n  \"awalengas\",\n  \"awam\",\n  \"awamineral\",\n  \"awan\",\n  \"awanama\",\n  \"awang\",\n  \"awar\",\n  \"awaracun\",\n  \"awas\",\n  \"awasenjata\",\n  \"awat\",\n  \"awawarna\",\n  \"awet\",\n  \"awewe\",\n  \"awi\",\n  \"awik-awik\",\n  \"awin\",\n  \"awur\",\n  \"awut\",\n  \"ayah\",\n  \"ayahan\",\n  \"ayahanda\",\n  \"ayak\",\n  \"ayal\",\n  \"ayam\",\n  \"ayan\",\n  \"ayanda\",\n  \"ayang-ayang\",\n  \"ayap\",\n  \"ayar\",\n  \"ayat\",\n  \"ayatullah\",\n  \"ayem\",\n  \"ayeng\",\n  \"ayid\",\n  \"ayit\",\n  \"ayo\",\n  \"ayom\",\n  \"ayu\",\n  \"ayuk\",\n  \"ayum\",\n  \"ayun\",\n  \"ayunda\",\n  \"ayut\",\n  \"azab\",\n  \"azal\",\n  \"azali\",\n  \"azam\",\n  \"azan\",\n  \"azeotrop\",\n  \"azimat\",\n  \"azimut\",\n  \"aziz\",\n  \"azmat\",\n  \"azoikum\",\n  \"azospermi\",\n  \"azurit\",\n  \"bab\",\n  \"baba\",\n  \"babad\",\n  \"babah\",\n  \"babak\",\n  \"babakan\",\n  \"babal\",\n  \"baban\",\n  \"babang\",\n  \"babar\",\n  \"babaring\",\n  \"babas\",\n  \"babat\",\n  \"babatan\",\n  \"babe\",\n  \"babesiasis\",\n  \"babet\",\n  \"babi\",\n  \"babil\",\n  \"babit\",\n  \"bablas\",\n  \"babon\",\n  \"babu\",\n  \"babun\",\n  \"babur\",\n  \"babut\",\n  \"baca\",\n  \"bacah\",\n  \"bacak\",\n  \"bacang\",\n  \"bacar\",\n  \"bacek\",\n  \"bacem\",\n  \"bacik\",\n  \"bacin\",\n  \"baco\",\n  \"bacok\",\n  \"bacot\",\n  \"bacul\",\n  \"bacut\",\n  \"bad\",\n  \"bada\",\n  \"badai\",\n  \"badak\",\n  \"badal\",\n  \"badam\",\n  \"badan\",\n  \"badang\",\n  \"badani\",\n  \"badar\",\n  \"badari\",\n  \"badasi\",\n  \"badau\",\n  \"bade\",\n  \"badi\",\n  \"badik\",\n  \"badminton\",\n  \"badong\",\n  \"badui\",\n  \"baduk\",\n  \"badung\",\n  \"badur\",\n  \"badut\",\n  \"baduyut\",\n  \"bafta\",\n  \"bagai\",\n  \"bagaimana\",\n  \"bagak\",\n  \"bagal\",\n  \"bagan\",\n  \"bagang\",\n  \"bagar\",\n  \"bagas\",\n  \"bagasi\",\n  \"bagat\",\n  \"bagau\",\n  \"bagea\",\n  \"bagi\",\n  \"baginda\",\n  \"bagong\",\n  \"bagor\",\n  \"baguk\",\n  \"bagul\",\n  \"bagur\",\n  \"bagus\",\n  \"bah\",\n  \"bahadur\",\n  \"bahaduri\",\n  \"bahagia\",\n  \"bahak\",\n  \"bahala\",\n  \"bahalan\",\n  \"baham\",\n  \"bahan\",\n  \"bahana\",\n  \"bahang\",\n  \"bahar\",\n  \"bahara\",\n  \"bahari\",\n  \"baharu\",\n  \"bahas\",\n  \"bahasa\",\n  \"bahaya\",\n  \"bahenol\",\n  \"baheula\",\n  \"bahimiah\",\n  \"bahkan\",\n  \"bahri\",\n  \"bahrulhayat\",\n  \"bahtera\",\n  \"bahu\",\n  \"bahuku\",\n  \"bahwa\",\n  \"bahwasanya\",\n  \"baiat\",\n  \"baid\",\n  \"baiduri\",\n  \"baik\",\n  \"bain\",\n  \"bainah\",\n  \"bais\",\n  \"bait\",\n  \"baitulharam\",\n  \"baitullah\",\n  \"baitulmakdis\",\n  \"baitulmakmur\",\n  \"baitulmal\",\n  \"baitulmukadas\",\n  \"baitulmukadis\",\n  \"baja\",\n  \"bajaj\",\n  \"bajak\",\n  \"bajan\",\n  \"bajang\",\n  \"bajar\",\n  \"bajau\",\n  \"bajetah\",\n  \"baji\",\n  \"bajigur\",\n  \"bajik\",\n  \"bajing\",\n  \"baju\",\n  \"bajul\",\n  \"bak\",\n  \"baka\",\n  \"bakak\",\n  \"bakal\",\n  \"bakalaureat\",\n  \"bakam\",\n  \"bakap\",\n  \"bakar\",\n  \"bakarat\",\n  \"bakas\",\n  \"bakat\",\n  \"bakau\",\n  \"bakda\",\n  \"bakdahu\",\n  \"bakdu\",\n  \"bakdul\",\n  \"bakelit\",\n  \"bakero\",\n  \"bakh\",\n  \"bakhil\",\n  \"baki\",\n  \"bakiak\",\n  \"bakik\",\n  \"bakir\",\n  \"bakmi\",\n  \"bako\",\n  \"bakpao\",\n  \"bakpia\",\n  \"baksi\",\n  \"baksis\",\n  \"bakso\",\n  \"baktau\",\n  \"bakteremia\",\n  \"bakteri\",\n  \"bakterin\",\n  \"bakteriofag\",\n  \"bakteriolisis\",\n  \"bakteriolog\",\n  \"bakteriologi\",\n  \"bakteriostatik\",\n  \"bakterisida\",\n  \"bakti\",\n  \"baku\",\n  \"bakul\",\n  \"bakung\",\n  \"bakup\",\n  \"bakut\",\n  \"bakwan\",\n  \"bal\",\n  \"bala\",\n  \"balabad\",\n  \"balad\",\n  \"balada\",\n  \"balah\",\n  \"balai\",\n  \"balairung\",\n  \"balak\",\n  \"balalaika\",\n  \"balam\",\n  \"balan\",\n  \"balang\",\n  \"balangkep\",\n  \"balans\",\n  \"balap\",\n  \"balar\",\n  \"balas\",\n  \"balau\",\n  \"balela\",\n  \"balen\",\n  \"balerina\",\n  \"balerong\",\n  \"balet\",\n  \"balgam\",\n  \"balian\",\n  \"balig\",\n  \"baliho\",\n  \"balik\",\n  \"baling\",\n  \"balistik\",\n  \"balistika\",\n  \"baliu\",\n  \"balkas\",\n  \"balkon\",\n  \"balneologi\",\n  \"balneoterapi\",\n  \"balok\",\n  \"balon\",\n  \"balong\",\n  \"balot\",\n  \"balsam\",\n  \"balseros\",\n  \"balu\",\n  \"baluarti\",\n  \"baluh\",\n  \"balui\",\n  \"baluk\",\n  \"balun\",\n  \"balung\",\n  \"balur\",\n  \"balut\",\n  \"bam\",\n  \"bambam\",\n  \"bambang\",\n  \"bambu\",\n  \"bambung\",\n  \"ban\",\n  \"bana\",\n  \"banal\",\n  \"banang\",\n  \"banar\",\n  \"banat\",\n  \"bancak\",\n  \"bancang\",\n  \"bancar\",\n  \"bancet\",\n  \"banci\",\n  \"bancik\",\n  \"bancuh\",\n  \"bancut\",\n  \"banda\",\n  \"bandan\",\n  \"bandang\",\n  \"bandar\",\n  \"bandara\",\n  \"bandarsah\",\n  \"bandasrayan\",\n  \"bandea\",\n  \"bandel\",\n  \"bandela\",\n  \"bandeng\",\n  \"bandering\",\n  \"banderol\",\n  \"banding\",\n  \"bandit\",\n  \"banditisme\",\n  \"bando\",\n  \"bandongan\",\n  \"bandos\",\n  \"bandot\",\n  \"bandrek\",\n  \"bandu\",\n  \"bandul\",\n  \"bandung\",\n  \"bandusa\",\n  \"bandut\",\n  \"bang\",\n  \"bangai\",\n  \"bangan\",\n  \"bangang\",\n  \"bangar\",\n  \"bangas\",\n  \"bangat\",\n  \"bangau\",\n  \"bangbung\",\n  \"banget\",\n  \"bangga\",\n  \"banggan\",\n  \"bangir\",\n  \"bangka\",\n  \"bangkah\",\n  \"bangkai\",\n  \"bangkal\",\n  \"bangkang\",\n  \"bangkar\",\n  \"bangkas\",\n  \"bangkasan\",\n  \"bangkeh\",\n  \"bangket\",\n  \"bangking\",\n  \"bangkir\",\n  \"bangkis\",\n  \"bangkit\",\n  \"bangkong\",\n  \"bangkot\",\n  \"bangkrut\",\n  \"bangku\",\n  \"bangkut\",\n  \"banglas\",\n  \"bangle\",\n  \"banglo\",\n  \"bango\",\n  \"bangor\",\n  \"bangpak\",\n  \"bangsa\",\n  \"bangsai\",\n  \"bangsal\",\n  \"bangsat\",\n  \"bangsi\",\n  \"bangun\",\n  \"bangus\",\n  \"bani\",\n  \"banian\",\n  \"baning\",\n  \"banir\",\n  \"banjang\",\n  \"banjar\",\n  \"banjaran\",\n  \"banji\",\n  \"banjir\",\n  \"banjur\",\n  \"bank\",\n  \"bankir\",\n  \"bantah\",\n  \"bantai\",\n  \"bantal\",\n  \"bantam\",\n  \"bantar\",\n  \"bantaran\",\n  \"bantat\",\n  \"bantau\",\n  \"banteng\",\n  \"banter\",\n  \"banting\",\n  \"bantu\",\n  \"bantun\",\n  \"bantut\",\n  \"banua\",\n  \"banyak\",\n  \"banyo\",\n  \"banyol\",\n  \"banyu\",\n  \"banyun\",\n  \"banzai\",\n  \"bao\",\n  \"bap\",\n  \"bapa\",\n  \"bapak\",\n  \"bapakisme\",\n  \"bapanda\",\n  \"bapang\",\n  \"bapet\",\n  \"baplang\",\n  \"baptis\",\n  \"bar\",\n  \"bara\",\n  \"baraat\",\n  \"baragajul\",\n  \"barah\",\n  \"barai\",\n  \"barak\",\n  \"barakat\",\n  \"barakatuh\",\n  \"baran\",\n  \"barang\",\n  \"barangan\",\n  \"barangkali\",\n  \"barap\",\n  \"baras\",\n  \"barat\",\n  \"barau-barau\",\n  \"barbar\",\n  \"barbarisme\",\n  \"barbel\",\n  \"barber\",\n  \"barbital\",\n  \"barbiton\",\n  \"barbiturat\",\n  \"barbur\",\n  \"bardi\",\n  \"bare-bare\",\n  \"barel\",\n  \"bareng\",\n  \"barep\",\n  \"baret\",\n  \"barga\",\n  \"bari\",\n  \"barid\",\n  \"barier\",\n  \"barik\",\n  \"barikade\",\n  \"baring\",\n  \"baringan\",\n  \"barion\",\n  \"baris\",\n  \"barisfer\",\n  \"barit\",\n  \"barita\",\n  \"bariton\",\n  \"barium\",\n  \"barjad\",\n  \"barkas\",\n  \"barkometer\",\n  \"barli\",\n  \"barograf\",\n  \"barogram\",\n  \"barok\",\n  \"barologi\",\n  \"barometer\",\n  \"barometri\",\n  \"baron\",\n  \"barong\",\n  \"barongan\",\n  \"barongsai\",\n  \"baroskop\",\n  \"barotermograf\",\n  \"barso\",\n  \"barter\",\n  \"baru\",\n  \"barua\",\n  \"baruh\",\n  \"baruje\",\n  \"baruna\",\n  \"barung-barung\",\n  \"barusan\",\n  \"barut\",\n  \"barzakh\",\n  \"barzanji\",\n  \"bas\",\n  \"basa\",\n  \"basa-basi\",\n  \"basah\",\n  \"basal\",\n  \"basalioma\",\n  \"basanit\",\n  \"basat\",\n  \"basau\",\n  \"basi\",\n  \"basil\",\n  \"basilari\",\n  \"basilika\",\n  \"basilus\",\n  \"basin\",\n  \"basir\",\n  \"basirah\",\n  \"basis\",\n  \"basit\",\n  \"baskara\",\n  \"baskat\",\n  \"basket\",\n  \"baskom\",\n  \"basmi\",\n  \"bastar\",\n  \"basuh\",\n  \"basung\",\n  \"basut\",\n  \"bata\",\n  \"batagor\",\n  \"batai\",\n  \"batak\",\n  \"batako\",\n  \"batal\",\n  \"batalion\",\n  \"batalyon\",\n  \"batang\",\n  \"batara\",\n  \"batari\",\n  \"batas\",\n  \"batekeng\",\n  \"batel\",\n  \"batela\",\n  \"baterai\",\n  \"bati\",\n  \"batih\",\n  \"batik\",\n  \"batil\",\n  \"batila\",\n  \"batimetri\",\n  \"batin\",\n  \"batiplankton\",\n  \"batir-batir\",\n  \"batis\",\n  \"batisfer\",\n  \"batok\",\n  \"batolit\",\n  \"baton\",\n  \"batu\",\n  \"batuk\",\n  \"batun\",\n  \"batung\",\n  \"bau\",\n  \"baud\",\n  \"bauk\",\n  \"bauksit\",\n  \"baun\",\n  \"baung\",\n  \"baur\",\n  \"baureksa\",\n  \"bausastra\",\n  \"bausuku\",\n  \"baut\",\n  \"bawa\",\n  \"bawab\",\n  \"bawah\",\n  \"bawak\",\n  \"bawal\",\n  \"bawang\",\n  \"bawasir\",\n  \"bawat\",\n  \"bawel\",\n  \"bawon\",\n  \"baya\",\n  \"bayak\",\n  \"bayam\",\n  \"bayan\",\n  \"bayang\",\n  \"bayangkara\",\n  \"bayangkari\",\n  \"bayar\",\n  \"bayas\",\n  \"bayat\",\n  \"bayata\",\n  \"bayati\",\n  \"bayem\",\n  \"bayi\",\n  \"bayonet\",\n  \"bayong\",\n  \"bayu\",\n  \"bayuh\",\n  \"bayun\",\n  \"bayung\",\n  \"bayur\",\n  \"bazar\",\n  \"bazoka\",\n  \"bea\",\n  \"beasiswa\",\n  \"beatifikasi\",\n  \"bebal\",\n  \"beban\",\n  \"bebandos\",\n  \"bebang\",\n  \"bebar\",\n  \"bebaru\",\n  \"bebas\",\n  \"bebat\",\n  \"bebe\",\n  \"bebek\",\n  \"bebekel\",\n  \"bebekisme\",\n  \"bebel\",\n  \"bebenah\",\n  \"beber\",\n  \"beberapa\",\n  \"beberas\",\n  \"bebesaran\",\n  \"bebi\",\n  \"bebodoran\",\n  \"bebotoh\",\n  \"bebrek\",\n  \"bebuyutan\",\n  \"becak\",\n  \"becek\",\n  \"beceng\",\n  \"becokok\",\n  \"becuk\",\n  \"becus\",\n  \"beda\",\n  \"bedah\",\n  \"bedak\",\n  \"bedal\",\n  \"bedama\",\n  \"bedan\",\n  \"bedar\",\n  \"bedaru\",\n  \"bedawi\",\n  \"bedaya\",\n  \"bedebah\",\n  \"bedegap\",\n  \"bedegong\",\n  \"bedel\",\n  \"bedeng\",\n  \"bedil\",\n  \"bedinde\",\n  \"bedo\",\n  \"bedol\",\n  \"bedudak\",\n  \"beduk\",\n  \"bedukang\",\n  \"bedung\",\n  \"beeng\",\n  \"bega\",\n  \"begadang\",\n  \"begah\",\n  \"begal\",\n  \"begana\",\n  \"begana-begini\",\n  \"begandering\",\n  \"begandring\",\n  \"begap\",\n  \"begar\",\n  \"begawan\",\n  \"begini\",\n  \"begitu\",\n  \"bego\",\n  \"begonia\",\n  \"begroting\",\n  \"begu\",\n  \"beguk\",\n  \"begundal\",\n  \"beha\",\n  \"behandel\",\n  \"behena\",\n  \"bejana\",\n  \"bejat\",\n  \"bek\",\n  \"beka\",\n  \"bekah\",\n  \"bekakak\",\n  \"bekakas\",\n  \"bekal\",\n  \"bekam\",\n  \"bekantan\",\n  \"bekap\",\n  \"bekas\",\n  \"bekat\",\n  \"bekatul\",\n  \"bekel\",\n  \"beken\",\n  \"beker\",\n  \"bekerma\",\n  \"bekicot\",\n  \"bekil\",\n  \"beking\",\n  \"bekisar\",\n  \"bekleding\",\n  \"bekles\",\n  \"beklit\",\n  \"beksan\",\n  \"beku\",\n  \"bekuk\",\n  \"bekuku\",\n  \"bekukung\",\n  \"bel\",\n  \"bela\",\n  \"belabas\",\n  \"belacak\",\n  \"belacan\",\n  \"belacu\",\n  \"belada\",\n  \"beladau\",\n  \"beladu\",\n  \"belah\",\n  \"belahak\",\n  \"belahong\",\n  \"belai\",\n  \"belak\",\n  \"belaka\",\n  \"belakang\",\n  \"belako\",\n  \"belalah\",\n  \"belalai\",\n  \"belalak\",\n  \"belalang\",\n  \"belam\",\n  \"belambang\",\n  \"belan\",\n  \"belanak\",\n  \"belanda\",\n  \"belandang\",\n  \"belandar\",\n  \"belandong\",\n  \"belandung\",\n  \"belang\",\n  \"belanga\",\n  \"belangah\",\n  \"belangir\",\n  \"belangkas\",\n  \"belangkin\",\n  \"belangkon\",\n  \"belanja\",\n  \"belantai\",\n  \"belantan\",\n  \"belantara\",\n  \"belantik\",\n  \"belantika\",\n  \"belantuk\",\n  \"belar\",\n  \"belarak\",\n  \"belas\",\n  \"belasah\",\n  \"belasting\",\n  \"belasungkawa\",\n  \"belasut\",\n  \"belat\",\n  \"belat-belit\",\n  \"belata\",\n  \"belater\",\n  \"belati\",\n  \"belatik\",\n  \"belatuk\",\n  \"belatung\",\n  \"belau\",\n  \"belawan\",\n  \"beldu\",\n  \"belebas\",\n  \"belebat\",\n  \"belecak\",\n  \"beleda\",\n  \"beledang\",\n  \"beledi\",\n  \"beledu\",\n  \"beleid\",\n  \"belek\",\n  \"belekek\",\n  \"belekok\",\n  \"belel\",\n  \"belelang\",\n  \"belembang\",\n  \"belencong\",\n  \"belendong\",\n  \"belendung\",\n  \"beleng\",\n  \"belenggu\",\n  \"belengket\",\n  \"belengkok\",\n  \"belengkong\",\n  \"belengset\",\n  \"belenting\",\n  \"belentung\",\n  \"belepas\",\n  \"belera\",\n  \"belerang\",\n  \"belerong\",\n  \"beleter\",\n  \"beli\",\n  \"belia\",\n  \"beliak\",\n  \"belian\",\n  \"beliau\",\n  \"belibas\",\n  \"belibat\",\n  \"belibis\",\n  \"belida\",\n  \"beligat\",\n  \"beligo\",\n  \"belik\",\n  \"belikan\",\n  \"belikat\",\n  \"beliku\",\n  \"belimbing\",\n  \"belincong\",\n  \"beling\",\n  \"belingkang\",\n  \"belingsat\",\n  \"belingut\",\n  \"belinjo\",\n  \"belintang\",\n  \"belis\",\n  \"belit\",\n  \"belitung\",\n  \"beliung\",\n  \"beliut\",\n  \"beloan\",\n  \"belobor\",\n  \"belodok\",\n  \"beloh\",\n  \"belok\",\n  \"belokok\",\n  \"belolang\",\n  \"belolok\",\n  \"belolong\",\n  \"belon\",\n  \"belonggok\",\n  \"belongkang\",\n  \"belongkeng\",\n  \"belongkot\",\n  \"belongkotan\",\n  \"belongsong\",\n  \"belontang\",\n  \"beloon\",\n  \"belot\",\n  \"belotong\",\n  \"belu\",\n  \"belu-belai\",\n  \"beluam\",\n  \"beluas\",\n  \"belubu\",\n  \"belubur\",\n  \"beludak\",\n  \"beludar\",\n  \"beludru\",\n  \"beluhan\",\n  \"beluk\",\n  \"belukap\",\n  \"belukar\",\n  \"beluku\",\n  \"belukut\",\n  \"belulang\",\n  \"beluluk\",\n  \"belulung\",\n  \"belum\",\n  \"belumpai\",\n  \"belungkang\",\n  \"belungkur\",\n  \"belungsing\",\n  \"belunjur\",\n  \"beluntas\",\n  \"beluru\",\n  \"belus\",\n  \"belusuk\",\n  \"belut\",\n  \"beluwek\",\n  \"bembam\",\n  \"bemban\",\n  \"bembar\",\n  \"bembarap\",\n  \"bembet\",\n  \"bemo\",\n  \"bemper\",\n  \"bena\",\n  \"benah\",\n  \"benak\",\n  \"benalu\",\n  \"benam\",\n  \"benang\",\n  \"benar\",\n  \"benara\",\n  \"benatu\",\n  \"bencah\",\n  \"bencana\",\n  \"bencat\",\n  \"benci\",\n  \"bencol\",\n  \"bencong\",\n  \"benda\",\n  \"bendahara\",\n  \"bendahari\",\n  \"bendala\",\n  \"bendalu\",\n  \"bendang\",\n  \"bendar\",\n  \"bendara\",\n  \"bendari\",\n  \"bendawat\",\n  \"bendawi\",\n  \"bende\",\n  \"bendel\",\n  \"bendela\",\n  \"bendera\",\n  \"benderang\",\n  \"benderung\",\n  \"bendesa\",\n  \"bendi\",\n  \"bendir\",\n  \"bendo\",\n  \"bendoro\",\n  \"bendu\",\n  \"benduan\",\n  \"bendul\",\n  \"bendung\",\n  \"benefaktif\",\n  \"bengah\",\n  \"bengal\",\n  \"bengang\",\n  \"bengang-bengut\",\n  \"bengap\",\n  \"bengawan\",\n  \"bengek\",\n  \"bengep\",\n  \"benggal\",\n  \"benggala\",\n  \"benggang\",\n  \"benggil\",\n  \"benggol\",\n  \"bengis\",\n  \"bengkah\",\n  \"bengkak\",\n  \"bengkal\",\n  \"bengkal-bengkil\",\n  \"bengkalai\",\n  \"bengkang-bengkok\",\n  \"bengkang-bengkong\",\n  \"bengkang-bengkung\",\n  \"bengkar\",\n  \"bengkarak\",\n  \"bengkarap\",\n  \"bengkaras\",\n  \"bengkarung\",\n  \"bengkatak\",\n  \"bengkawan\",\n  \"bengkawang\",\n  \"bengkayang\",\n  \"bengkel\",\n  \"bengkelai\",\n  \"bengkeng\",\n  \"bengker\",\n  \"bengkerap\",\n  \"bengkil\",\n  \"bengkok\",\n  \"bengkol\",\n  \"bengkong\",\n  \"bengkos\",\n  \"bengku\",\n  \"bengkuang\",\n  \"bengkudu\",\n  \"bengkunang\",\n  \"bengkung\",\n  \"bengoh\",\n  \"bengok\",\n  \"bengong\",\n  \"bengot\",\n  \"bengu\",\n  \"benguk\",\n  \"bengul\",\n  \"bengung\",\n  \"beni\",\n  \"benian\",\n  \"benih\",\n  \"bening\",\n  \"benitan\",\n  \"benjol\",\n  \"benjut\",\n  \"benkap\",\n  \"bensin\",\n  \"benta\",\n  \"bentak\",\n  \"bentala\",\n  \"bentan\",\n  \"bentang\",\n  \"bentangkan\",\n  \"bentangur\",\n  \"bentar\",\n  \"bentara\",\n  \"bentaus\",\n  \"benteh\",\n  \"benteng\",\n  \"bentes\",\n  \"bentet\",\n  \"bentik\",\n  \"bentoh\",\n  \"bentok\",\n  \"bentol\",\n  \"bentong\",\n  \"bentonit\",\n  \"bentos\",\n  \"bentrok\",\n  \"bentuk\",\n  \"bentul\",\n  \"bentulu\",\n  \"bentur\",\n  \"benturung\",\n  \"bentus\",\n  \"benua\",\n  \"benuang\",\n  \"benuaron\",\n  \"benulung\",\n  \"benum\",\n  \"benur\",\n  \"benyai\",\n  \"benyek\",\n  \"benyoh\",\n  \"benyot\",\n  \"benzedrin\",\n  \"benzena\",\n  \"benzil\",\n  \"benzoat\",\n  \"benzoil\",\n  \"benzoin\",\n  \"benzol\",\n  \"beo\",\n  \"beol\",\n  \"bera\",\n  \"berabe\",\n  \"beragan\",\n  \"berahi\",\n  \"berai\",\n  \"beraja\",\n  \"berak\",\n  \"berakah\",\n  \"beraksa\",\n  \"beram\",\n  \"berambang\",\n  \"beramin\",\n  \"beranang\",\n  \"beranda\",\n  \"berandal\",\n  \"berandang\",\n  \"berang\",\n  \"berangai\",\n  \"berangan\",\n  \"berangas\",\n  \"berangasan\",\n  \"berangga\",\n  \"berangkal\",\n  \"berangkat\",\n  \"berangsang\",\n  \"berangta\",\n  \"berangus\",\n  \"berani\",\n  \"beranta\",\n  \"berantak\",\n  \"berantas\",\n  \"berapa\",\n  \"beras\",\n  \"berat\",\n  \"bercak\",\n  \"berdikari\",\n  \"berdus\",\n  \"berebes\",\n  \"beredel\",\n  \"berek-berek\",\n  \"beremban\",\n  \"berembang\",\n  \"berendeng\",\n  \"bereng-bereng\",\n  \"berengau\",\n  \"berenggil\",\n  \"berengos\",\n  \"berengsek\",\n  \"berengut\",\n  \"berentang\",\n  \"bereo\",\n  \"bererot\",\n  \"beres\",\n  \"beresok\",\n  \"beret\",\n  \"berewok\",\n  \"bergajul\",\n  \"bergas\",\n  \"berguk\",\n  \"berhala\",\n  \"beri\",\n  \"beriang\",\n  \"beriani\",\n  \"berida\",\n  \"berik\",\n  \"beril\",\n  \"berilium\",\n  \"berinda\",\n  \"bering-bering\",\n  \"beringas\",\n  \"beringin\",\n  \"beringsang\",\n  \"berisik\",\n  \"berita\",\n  \"berkah\",\n  \"berkas\",\n  \"berkat\",\n  \"berkelium\",\n  \"berkik\",\n  \"berkil\",\n  \"berko\",\n  \"berkung\",\n  \"berlau\",\n  \"berlian\",\n  \"berma\",\n  \"bermat\",\n  \"bermi\",\n  \"bernas\",\n  \"bernga\",\n  \"beroci\",\n  \"beroga\",\n  \"berok\",\n  \"berokat\",\n  \"beron\",\n  \"beronang\",\n  \"berondok\",\n  \"berondong\",\n  \"berong\",\n  \"berongkos\",\n  \"berongsang\",\n  \"berongsong\",\n  \"beronjong\",\n  \"beronok\",\n  \"beronsang\",\n  \"berontak\",\n  \"berosot\",\n  \"beroti\",\n  \"beroya\",\n  \"bersat\",\n  \"bersih\",\n  \"bersil\",\n  \"bersin\",\n  \"bersit\",\n  \"bersut\",\n  \"bertam\",\n  \"bertih\",\n  \"beru\",\n  \"beruang\",\n  \"beruas\",\n  \"berubuh\",\n  \"berudu\",\n  \"berui\",\n  \"beruju\",\n  \"berujul\",\n  \"beruk\",\n  \"berumbun\",\n  \"berumbung\",\n  \"berunai\",\n  \"berunang\",\n  \"berungut\",\n  \"beruntus\",\n  \"beruri\",\n  \"berus\",\n  \"berwari\",\n  \"berzanji\",\n  \"besalen\",\n  \"besan\",\n  \"besar\",\n  \"besek\",\n  \"besel\",\n  \"besengek\",\n  \"beser\",\n  \"besero\",\n  \"beset\",\n  \"besi\",\n  \"besikal\",\n  \"besing\",\n  \"besit\",\n  \"beskal\",\n  \"beskap\",\n  \"beskat\",\n  \"beslah\",\n  \"beslit\",\n  \"besok\",\n  \"besot\",\n  \"bestari\",\n  \"bestek\",\n  \"bestel\",\n  \"bestialitas\",\n  \"bestik\",\n  \"bestir\",\n  \"bestral\",\n  \"besuk\",\n  \"besusu\",\n  \"besut\",\n  \"besuta\",\n  \"bet\",\n  \"beta\",\n  \"betah\",\n  \"betahak\",\n  \"betak-betak\",\n  \"betang\",\n  \"betapa\",\n  \"betara\",\n  \"betari\",\n  \"betas\",\n  \"betatas\",\n  \"betatron\",\n  \"betau\",\n  \"betet\",\n  \"beti\",\n  \"betik\",\n  \"betina\",\n  \"beting\",\n  \"betinga\",\n  \"betis\",\n  \"betok\",\n  \"beton\",\n  \"betonisasi\",\n  \"betot\",\n  \"betul\",\n  \"betung\",\n  \"betutu\",\n  \"bewok\",\n  \"bhayangkara\",\n  \"biadab\",\n  \"biadat\",\n  \"biadi\",\n  \"biah\",\n  \"biak\",\n  \"biang\",\n  \"bianglala\",\n  \"biaperi\",\n  \"biar\",\n  \"biara\",\n  \"biarpet\",\n  \"biarpun\",\n  \"bias\",\n  \"biasa\",\n  \"biat\",\n  \"biau\",\n  \"biawak\",\n  \"biawan\",\n  \"biawas\",\n  \"biaya\",\n  \"bibel\",\n  \"bibi\",\n  \"bibinda\",\n  \"bibir\",\n  \"bibit\",\n  \"biblio\",\n  \"bibliografi\",\n  \"bibliomania\",\n  \"bibliotek\",\n  \"bicana\",\n  \"bicara\",\n  \"bicokok\",\n  \"bicu\",\n  \"bida\",\n  \"bidadari\",\n  \"bidah\",\n  \"bidai\",\n  \"bidak\",\n  \"bidal\",\n  \"bidan\",\n  \"bidang\",\n  \"bidar\",\n  \"bidara\",\n  \"bidari\",\n  \"bidas\",\n  \"bidet\",\n  \"bidik\",\n  \"bido\",\n  \"biduan\",\n  \"biduanda\",\n  \"biduanita\",\n  \"biduk\",\n  \"bidur\",\n  \"biduri\",\n  \"bienial\",\n  \"biennale\",\n  \"bifasial\",\n  \"bifida\",\n  \"bigair\",\n  \"bigami\",\n  \"bigamis\",\n  \"bihi\",\n  \"bihun\",\n  \"bijak\",\n  \"bijaksana\",\n  \"bijan\",\n  \"bijana\",\n  \"biji\",\n  \"bijih\",\n  \"bik\",\n  \"bikameral\",\n  \"bikang\",\n  \"bikarbonat\",\n  \"bikin\",\n  \"bikini\",\n  \"bikir\",\n  \"bikonkaf\",\n  \"bikonveks\",\n  \"bikromat\",\n  \"biksah\",\n  \"biksu\",\n  \"biksuni\",\n  \"biku\",\n  \"bila\",\n  \"bilabial\",\n  \"bilah\",\n  \"bilai\",\n  \"bilakmata\",\n  \"bilal\",\n  \"bilamana\",\n  \"bilamasa\",\n  \"bilang\",\n  \"bilas\",\n  \"bilateral\",\n  \"bilateralisme\",\n  \"bilga\",\n  \"bilhak\",\n  \"biliar\",\n  \"bilik\",\n  \"bilineal\",\n  \"bilingual\",\n  \"bilingualisme\",\n  \"bilis\",\n  \"biliun\",\n  \"billahi\",\n  \"bilokal\",\n  \"bilur\",\n  \"bilyet\",\n  \"bimasakti\",\n  \"bimbang\",\n  \"bimbing\",\n  \"bimbit\",\n  \"bimetal\",\n  \"bin\",\n  \"bina\",\n  \"binal\",\n  \"binar\",\n  \"binara\",\n  \"binaraga\",\n  \"binasa\",\n  \"binatak\",\n  \"binatang\",\n  \"binatu\",\n  \"binawah\",\n  \"binayah\",\n  \"bincacak\",\n  \"bincang\",\n  \"bincang-bincut\",\n  \"bincu\",\n  \"bincul\",\n  \"bincut\",\n  \"bindam\",\n  \"bindeng\",\n  \"binder\",\n  \"bindu\",\n  \"bineka\",\n  \"binen\",\n  \"biner\",\n  \"bingas\",\n  \"bingit\",\n  \"bingka\",\n  \"bingkah\",\n  \"bingkai\",\n  \"bingkas\",\n  \"bingkatak\",\n  \"bingkis\",\n  \"bingung\",\n  \"bini\",\n  \"binjai\",\n  \"binjat\",\n  \"binokular\",\n  \"binomial\",\n  \"bintak\",\n  \"bintal\",\n  \"bintalak\",\n  \"bintan\",\n  \"bintang\",\n  \"bintara\",\n  \"binti\",\n  \"bintik\",\n  \"bintil\",\n  \"bintit\",\n  \"bintul\",\n  \"bintulbahar\",\n  \"bintur\",\n  \"binturung\",\n  \"biodata\",\n  \"biodin\",\n  \"biofera\",\n  \"biofilm\",\n  \"biofilter\",\n  \"biofisik\",\n  \"biofisika\",\n  \"biogas\",\n  \"biogenesis\",\n  \"biogenik\",\n  \"biogeografi\",\n  \"biografi\",\n  \"biokimia\",\n  \"bioklimatologi\",\n  \"biola\",\n  \"biolinguistik\",\n  \"biolit\",\n  \"biolog\",\n  \"biologi\",\n  \"biologis\",\n  \"bioluminesensi\",\n  \"biomassa\",\n  \"biomekani\",\n  \"biometeorologi\",\n  \"biometri\",\n  \"biometrika\",\n  \"bionomika\",\n  \"biopendar\",\n  \"bioplasma\",\n  \"biopsi\",\n  \"bioritme\",\n  \"bioritmik\",\n  \"biosekuen\",\n  \"biosfer\",\n  \"biosida\",\n  \"bioskop\",\n  \"biostatika\",\n  \"biota\",\n  \"biotek\",\n  \"bioteknologi\",\n  \"biotik\",\n  \"biotin\",\n  \"biotoksin\",\n  \"biotron\",\n  \"bipatride\",\n  \"bipolar\",\n  \"bipolaritas\",\n  \"bipolisentrisme\",\n  \"biprisma\",\n  \"bir\",\n  \"birah\",\n  \"birai\",\n  \"biram\",\n  \"birama\",\n  \"birang\",\n  \"biras\",\n  \"birat\",\n  \"biri-biri\",\n  \"biring\",\n  \"birit\",\n  \"biro\",\n  \"birofaks\",\n  \"birokrasi\",\n  \"birokrat\",\n  \"birokratis\",\n  \"birokratisasi\",\n  \"birokratisme\",\n  \"birsam\",\n  \"biru\",\n  \"bis\",\n  \"bisa\",\n  \"bisai\",\n  \"bisan\",\n  \"bisawab\",\n  \"bisbol\",\n  \"biseksual\",\n  \"bisektris\",\n  \"biseps\",\n  \"bisik\",\n  \"bising\",\n  \"bisinosis\",\n  \"biskuit\",\n  \"bismillah\",\n  \"bismut\",\n  \"bisnis\",\n  \"bison\",\n  \"bissu\",\n  \"bistik\",\n  \"bisu\",\n  \"bisul\",\n  \"bit\",\n  \"biti\",\n  \"biting\",\n  \"bitisik\",\n  \"bitumen\",\n  \"biuku\",\n  \"biumbai\",\n  \"bius\",\n  \"biut\",\n  \"bivak\",\n  \"biverbal\",\n  \"biyuh-biyuh\",\n  \"bizurai\",\n  \"blabar\",\n  \"blabitisme\",\n  \"blakblakan\",\n  \"blangko\",\n  \"blantik\",\n  \"blantika\",\n  \"blaster\",\n  \"blastostil\",\n  \"blazer\",\n  \"blek\",\n  \"blekek\",\n  \"blekok\",\n  \"blenda\",\n  \"blender\",\n  \"blepot\",\n  \"blewah\",\n  \"blirik\",\n  \"blog\",\n  \"bloger\",\n  \"blok\",\n  \"blokade\",\n  \"blokir\",\n  \"bloknot\",\n  \"blong\",\n  \"blower\",\n  \"bludrek\",\n  \"blues\",\n  \"blus\",\n  \"blustru\",\n  \"bobato\",\n  \"bobok\",\n  \"bobol\",\n  \"bobos\",\n  \"bobot\",\n  \"bobotok\",\n  \"bobrok\",\n  \"bocah\",\n  \"bocok\",\n  \"bocong\",\n  \"bocor\",\n  \"bodhi\",\n  \"bodhisatwa\",\n  \"bodi\",\n  \"bodoh\",\n  \"bodok\",\n  \"bodong\",\n  \"bodor\",\n  \"boga\",\n  \"bogam\",\n  \"bogel\",\n  \"bogem\",\n  \"bogi\",\n  \"bogol\",\n  \"bogor\",\n  \"bogot\",\n  \"bohemian\",\n  \"bohlam\",\n  \"bohong\",\n  \"bohorok\",\n  \"bohsia\",\n  \"boi\",\n  \"boikot\",\n  \"bois\",\n  \"bokar\",\n  \"bokca\",\n  \"bokek\",\n  \"boko\",\n  \"bokoh\",\n  \"bokong\",\n  \"bokop\",\n  \"bokor\",\n  \"boks\",\n  \"boksen\",\n  \"bokser\",\n  \"bokset\",\n  \"boksu\",\n  \"boku\",\n  \"bol\",\n  \"bola\",\n  \"bolak\",\n  \"bolak-balik\",\n  \"bolang-baling\",\n  \"boleh\",\n  \"bolero\",\n  \"bolide\",\n  \"boling\",\n  \"bolometer\",\n  \"bolong\",\n  \"bolos\",\n  \"bolot\",\n  \"bolotu\",\n  \"bolpoin\",\n  \"bolsak\",\n  \"bolu\",\n  \"bom\",\n  \"bombai\",\n  \"bombardemen\",\n  \"bombardir\",\n  \"bombas\",\n  \"bombastis\",\n  \"bomber\",\n  \"bomoh\",\n  \"bomseks\",\n  \"bon\",\n  \"bonafide\",\n  \"bonafiditas\",\n  \"bonang\",\n  \"bonanza\",\n  \"bonar\",\n  \"bonbon\",\n  \"boncel\",\n  \"bonceng\",\n  \"boncol\",\n  \"boncong\",\n  \"bondol\",\n  \"bondong\",\n  \"bondot\",\n  \"boneka\",\n  \"bonet\",\n  \"bong\",\n  \"bongak\",\n  \"bonggol\",\n  \"bongkah\",\n  \"bongkak\",\n  \"bongkar\",\n  \"bongkar-bangkir\",\n  \"bongkin\",\n  \"bongko\",\n  \"bongkol\",\n  \"bongkong\",\n  \"bongkor\",\n  \"bongkot\",\n  \"bongkrek\",\n  \"bonglai\",\n  \"bongmeh\",\n  \"bongo\",\n  \"bongok\",\n  \"bongsang\",\n  \"bongsor\",\n  \"bonjol\",\n  \"bonjor\",\n  \"bonsai\",\n  \"bontak\",\n  \"bonto\",\n  \"bontok\",\n  \"bontot\",\n  \"bonus\",\n  \"bonyok\",\n  \"bopeng\",\n  \"boplang\",\n  \"bopok\",\n  \"bopong\",\n  \"bor\",\n  \"bora\",\n  \"borak\",\n  \"boraks\",\n  \"borang\",\n  \"borat\",\n  \"borci\",\n  \"border\",\n  \"bordes\",\n  \"bordil\",\n  \"bordir\",\n  \"bordu\",\n  \"boreal\",\n  \"boreh\",\n  \"borek\",\n  \"borgol\",\n  \"borhan\",\n  \"borjuasi\",\n  \"borjuis\",\n  \"borkol\",\n  \"boro-boro\",\n  \"borok\",\n  \"boron\",\n  \"borong\",\n  \"boros\",\n  \"bortel\",\n  \"bos\",\n  \"bosan\",\n  \"boseta\",\n  \"bosman\",\n  \"boson\",\n  \"bosor\",\n  \"bosun\",\n  \"bot\",\n  \"bota\",\n  \"botak\",\n  \"botang\",\n  \"botani\",\n  \"botanikus\",\n  \"botanis\",\n  \"botelir\",\n  \"botlir\",\n  \"boto\",\n  \"botoh\",\n  \"botok\",\n  \"botol\",\n  \"botor\",\n  \"botridium\",\n  \"botulisme\",\n  \"bowo\",\n  \"boya\",\n  \"boyak\",\n  \"boyas\",\n  \"boyo-boyo\",\n  \"boyong\",\n  \"boyongan\",\n  \"bozah\",\n  \"bradikardi\",\n  \"brahma\",\n  \"brahmana\",\n  \"brahmani\",\n  \"brahmi\",\n  \"brahmin\",\n  \"braille\",\n  \"brakiasi\",\n  \"brakilogi\",\n  \"brakisefalik\",\n  \"brakistokron\",\n  \"brakiurus\",\n  \"braktea\",\n  \"bramacorah\",\n  \"brambang\",\n  \"brana\",\n  \"brander\",\n  \"brankar\",\n  \"brankas\",\n  \"branwir\",\n  \"braseri\",\n  \"brata\",\n  \"bratawali\",\n  \"bredel\",\n  \"breksi\",\n  \"breksia\",\n  \"brem\",\n  \"bren\",\n  \"brendi\",\n  \"brengsek\",\n  \"bretel\",\n  \"brevet\",\n  \"brifing\",\n  \"brigade\",\n  \"brigadir\",\n  \"brigidig\",\n  \"briket\",\n  \"brilian\",\n  \"briofita\",\n  \"briologi\",\n  \"briozoa\",\n  \"brisan\",\n  \"broiler\",\n  \"brokade\",\n  \"brokat\",\n  \"broker\",\n  \"brokoli\",\n  \"brom\",\n  \"bromat\",\n  \"bromida\",\n  \"bromin\",\n  \"bromisme\",\n  \"brompit\",\n  \"brongkos\",\n  \"bronkioli\",\n  \"bronkitis\",\n  \"bronkodilator\",\n  \"bronkotomi\",\n  \"bronkus\",\n  \"brontosaurus\",\n  \"bros\",\n  \"brosur\",\n  \"browser\",\n  \"bruder\",\n  \"bruk\",\n  \"brunai\",\n  \"brutal\",\n  \"brutalisme\",\n  \"bruto\",\n  \"bua\",\n  \"buah\",\n  \"buai\",\n  \"buak\",\n  \"bual\",\n  \"buana\",\n  \"buang\",\n  \"buani\",\n  \"buar\",\n  \"buari\",\n  \"buas\",\n  \"buat\",\n  \"buaya\",\n  \"bubar\",\n  \"bubo\",\n  \"bubu\",\n  \"bubuh\",\n  \"bubuhan\",\n  \"bubuk\",\n  \"bubul\",\n  \"bubun\",\n  \"bubung\",\n  \"bubur\",\n  \"bubus\",\n  \"bubut\",\n  \"bucu\",\n  \"budak\",\n  \"budanco\",\n  \"budaya\",\n  \"buddha\",\n  \"buddhis\",\n  \"buddhisme\",\n  \"bude\",\n  \"budek\",\n  \"budi\",\n  \"budian\",\n  \"budiman\",\n  \"budu\",\n  \"buduk\",\n  \"budur\",\n  \"bueng\",\n  \"bufer\",\n  \"bufet\",\n  \"bugar\",\n  \"bugenfil\",\n  \"bugenvil\",\n  \"bugi-bugi\",\n  \"bugil\",\n  \"buhuk\",\n  \"buhul\",\n  \"bui\",\n  \"buih\",\n  \"buil\",\n  \"bujal\",\n  \"bujam\",\n  \"bujang\",\n  \"bujangga\",\n  \"bujet\",\n  \"bujeter\",\n  \"bujuk\",\n  \"bujur\",\n  \"bujut\",\n  \"buk\",\n  \"buka\",\n  \"bukan\",\n  \"bukankah\",\n  \"bukantah\",\n  \"bukat\",\n  \"bukau\",\n  \"buket\",\n  \"bukit\",\n  \"buklet\",\n  \"bukti\",\n  \"buku\",\n  \"bukung\",\n  \"bukur\",\n  \"bukut\",\n  \"bulai\",\n  \"bulak\",\n  \"bulan\",\n  \"bulang\",\n  \"bulang-baling\",\n  \"bulangan\",\n  \"bular\",\n  \"bulat\",\n  \"bulbul\",\n  \"buldan\",\n  \"buldog\",\n  \"buldoser\",\n  \"bule\",\n  \"buleng\",\n  \"buletin\",\n  \"bulevar\",\n  \"bulgur\",\n  \"buli-buli\",\n  \"bulian\",\n  \"bulimia\",\n  \"bulir\",\n  \"bulsak\",\n  \"bulu\",\n  \"bulug\",\n  \"buluh\",\n  \"buluk\",\n  \"bulur\",\n  \"bulus\",\n  \"bum\",\n  \"bumantara\",\n  \"bumban\",\n  \"bumbu\",\n  \"bumbun\",\n  \"bumbung\",\n  \"bumel\",\n  \"bumerang\",\n  \"bumi\",\n  \"bumiah\",\n  \"bumiputra\",\n  \"bumper\",\n  \"bumpet\",\n  \"bumping\",\n  \"bun\",\n  \"buna\",\n  \"bunbunan\",\n  \"buncah\",\n  \"buncak\",\n  \"buncang\",\n  \"buncis\",\n  \"buncit\",\n  \"bunda\",\n  \"bundak\",\n  \"bundar\",\n  \"bundas\",\n  \"bundel\",\n  \"bunduk\",\n  \"bundung\",\n  \"bung\",\n  \"bunga\",\n  \"bungalo\",\n  \"bungar\",\n  \"bungkal\",\n  \"bungkam\",\n  \"bungkang\",\n  \"bungkas\",\n  \"bungker\",\n  \"bungkil\",\n  \"bungking\",\n  \"bungkuk\",\n  \"bungkul\",\n  \"bungkus\",\n  \"bunglai\",\n  \"bunglon\",\n  \"bungsil\",\n  \"bungsu\",\n  \"bungur\",\n  \"buni\",\n  \"bunian\",\n  \"bunjai\",\n  \"buntak\",\n  \"buntal\",\n  \"buntang\",\n  \"buntar\",\n  \"buntat\",\n  \"buntek\",\n  \"buntel\",\n  \"buntet\",\n  \"buntil\",\n  \"bunting\",\n  \"buntu\",\n  \"buntung\",\n  \"buntut\",\n  \"bunuh\",\n  \"bunut\",\n  \"bunyi\",\n  \"bupala\",\n  \"bupati\",\n  \"bupet\",\n  \"bur\",\n  \"bura\",\n  \"burai\",\n  \"burak\",\n  \"burakah\",\n  \"buraksa\",\n  \"buram\",\n  \"buras\",\n  \"burat\",\n  \"burayak\",\n  \"burdah\",\n  \"bureng\",\n  \"buret\",\n  \"burgundi\",\n  \"burhan\",\n  \"burik\",\n  \"burit\",\n  \"burjusumbulat\",\n  \"burkak\",\n  \"burnout\",\n  \"buron\",\n  \"bursa\",\n  \"buru\",\n  \"buruh\",\n  \"buruj\",\n  \"buruk\",\n  \"burun\",\n  \"burung\",\n  \"burut\",\n  \"bus\",\n  \"busa\",\n  \"busai\",\n  \"busana\",\n  \"busar\",\n  \"buset\",\n  \"bushido\",\n  \"busi\",\n  \"busik\",\n  \"bustan\",\n  \"buster\",\n  \"busuk\",\n  \"busung\",\n  \"busur\",\n  \"busut\",\n  \"buta\",\n  \"butadiena\",\n  \"butala\",\n  \"butana\",\n  \"butang\",\n  \"butarepan\",\n  \"butbut\",\n  \"butek\",\n  \"butik\",\n  \"butir\",\n  \"butirat\",\n  \"butongpai\",\n  \"butuh\",\n  \"butul\",\n  \"butun\",\n  \"butut\",\n  \"buwuh\",\n  \"buya\",\n  \"buyar\",\n  \"buyung\",\n  \"buyur\",\n  \"buyut\",\n  \"byarpet\",\n  \"caba\",\n  \"cabai\",\n  \"cabak\",\n  \"cabang\",\n  \"cabar\",\n  \"cabau\",\n  \"cabe\",\n  \"cabik\",\n  \"cabir\",\n  \"cabo\",\n  \"cabuh\",\n  \"cabuk\",\n  \"cabul\",\n  \"cabur\",\n  \"cabut\",\n  \"caca\",\n  \"cacah\",\n  \"cacak\",\n  \"cacap\",\n  \"cacar\",\n  \"cacat\",\n  \"cacau\",\n  \"caci\",\n  \"cacibar\",\n  \"cacil\",\n  \"cacing\",\n  \"cadai\",\n  \"cadang\",\n  \"cadar\",\n  \"cadas\",\n  \"cadel\",\n  \"cadik\",\n  \"cadok\",\n  \"caduk\",\n  \"cadung\",\n  \"caem\",\n  \"cagak\",\n  \"cagar\",\n  \"cagil\",\n  \"cagu\",\n  \"caguh\",\n  \"cagun\",\n  \"cagut\",\n  \"cah\",\n  \"cahang\",\n  \"cahar\",\n  \"cahari\",\n  \"cahaya\",\n  \"cahi\",\n  \"cailah\",\n  \"caima\",\n  \"caing\",\n  \"cair\",\n  \"cais\",\n  \"caisim\",\n  \"cak\",\n  \"cakah\",\n  \"cakak\",\n  \"cakalang\",\n  \"cakalele\",\n  \"cakap\",\n  \"cakar\",\n  \"cakawari\",\n  \"cakela\",\n  \"cakep\",\n  \"caki\",\n  \"cakiak\",\n  \"cakil\",\n  \"cakmar\",\n  \"cako\",\n  \"cakra\",\n  \"cakrabirawa\",\n  \"cakrabuana\",\n  \"cakram\",\n  \"cakrawala\",\n  \"cakruk\",\n  \"cakup\",\n  \"cakur\",\n  \"cakus\",\n  \"cal\",\n  \"calabikang\",\n  \"caladi\",\n  \"calak\",\n  \"calang\",\n  \"calar\",\n  \"calecer\",\n  \"calempong\",\n  \"caling\",\n  \"calir\",\n  \"calit\",\n  \"calo\",\n  \"calon\",\n  \"calui\",\n  \"caluk\",\n  \"calung\",\n  \"calus\",\n  \"cam\",\n  \"camar\",\n  \"camat\",\n  \"camau\",\n  \"cambahan\",\n  \"cambang\",\n  \"cambuk\",\n  \"cambul\",\n  \"cambung\",\n  \"camca\",\n  \"camil\",\n  \"campa\",\n  \"campah\",\n  \"campak\",\n  \"campang\",\n  \"campin\",\n  \"camping\",\n  \"camplungan\",\n  \"campuh\",\n  \"campung\",\n  \"campur\",\n  \"camuk\",\n  \"camur\",\n  \"canai\",\n  \"canak\",\n  \"canang\",\n  \"cancan\",\n  \"cancang\",\n  \"cancut\",\n  \"canda\",\n  \"candai\",\n  \"candak\",\n  \"candala\",\n  \"candang\",\n  \"candat\",\n  \"candi\",\n  \"candik\",\n  \"candit\",\n  \"candra\",\n  \"candradimuka\",\n  \"candramawa\",\n  \"candrasa\",\n  \"candrasengkala\",\n  \"candu\",\n  \"candung\",\n  \"cang\",\n  \"cangah\",\n  \"cangak\",\n  \"cangam\",\n  \"cangap\",\n  \"cangar\",\n  \"cangcang\",\n  \"cangga\",\n  \"canggaan\",\n  \"canggah\",\n  \"canggai\",\n  \"canggal\",\n  \"cangget\",\n  \"canggih\",\n  \"canggu\",\n  \"canggung\",\n  \"cangkang\",\n  \"cangkat\",\n  \"cangkel\",\n  \"cangkih\",\n  \"cangking\",\n  \"cangkir\",\n  \"cangklong\",\n  \"cangkok\",\n  \"cangkol\",\n  \"cangkrang\",\n  \"cangkrim\",\n  \"cangkriman\",\n  \"cangkring\",\n  \"cangkuk\",\n  \"cangkul\",\n  \"cangkulan\",\n  \"cangkum\",\n  \"cangkung\",\n  \"cangkup\",\n  \"canguk\",\n  \"cangut\",\n  \"cantas\",\n  \"cante\",\n  \"cantel\",\n  \"canteng\",\n  \"cantik\",\n  \"canting\",\n  \"cantol\",\n  \"cantrik\",\n  \"cantum\",\n  \"caos\",\n  \"cap\",\n  \"capa\",\n  \"capah\",\n  \"capai\",\n  \"capak\",\n  \"capal\",\n  \"capang\",\n  \"capar\",\n  \"capcai\",\n  \"cape\",\n  \"capek\",\n  \"capelin\",\n  \"capgome\",\n  \"capik\",\n  \"capil\",\n  \"caping\",\n  \"capit\",\n  \"capjiki\",\n  \"caplak\",\n  \"caplok\",\n  \"capuk\",\n  \"capung\",\n  \"cara\",\n  \"carah\",\n  \"carak\",\n  \"caraka\",\n  \"caram\",\n  \"caran\",\n  \"carang\",\n  \"caren\",\n  \"cari\",\n  \"carik\",\n  \"caring\",\n  \"carter\",\n  \"caruk\",\n  \"carut\",\n  \"cas\",\n  \"casciscus\",\n  \"cat\",\n  \"catat\",\n  \"catek\",\n  \"catu\",\n  \"catuk\",\n  \"catur\",\n  \"caturjalma\",\n  \"caturlarik\",\n  \"caturtunggal\",\n  \"caturwangsa\",\n  \"caturwarga\",\n  \"caturwarna\",\n  \"caturwulan\",\n  \"catut\",\n  \"caul\",\n  \"caung\",\n  \"cawai\",\n  \"cawak\",\n  \"cawan\",\n  \"cawangan\",\n  \"cawat\",\n  \"cawe-cawe\",\n  \"cawi\",\n  \"cawis\",\n  \"cebak\",\n  \"ceban\",\n  \"cebik\",\n  \"cebikas\",\n  \"cebil\",\n  \"cebir\",\n  \"cebis\",\n  \"cebok\",\n  \"cebol\",\n  \"cebong\",\n  \"cebur\",\n  \"cecah\",\n  \"cecak\",\n  \"cecap\",\n  \"cecar\",\n  \"cecawi\",\n  \"cece\",\n  \"ceceh\",\n  \"ceceng\",\n  \"cecengklok\",\n  \"cecer\",\n  \"cecere\",\n  \"cecok\",\n  \"cecongor\",\n  \"cecunguk\",\n  \"cedal\",\n  \"cedayam\",\n  \"cedera\",\n  \"ceding\",\n  \"cedok\",\n  \"cedong\",\n  \"ceduk\",\n  \"cegah\",\n  \"cegak\",\n  \"cegar\",\n  \"cegat\",\n  \"ceguk\",\n  \"cek\",\n  \"cekah\",\n  \"cekak\",\n  \"cekakak\",\n  \"cekakan\",\n  \"cekal\",\n  \"cekam\",\n  \"cekang\",\n  \"cekarau\",\n  \"cekat\",\n  \"cekau\",\n  \"cekcekcek\",\n  \"cekcok\",\n  \"cekdam\",\n  \"cekdel\",\n  \"cekek\",\n  \"cekel\",\n  \"ceker\",\n  \"cekeram\",\n  \"ceki\",\n  \"cekibar\",\n  \"cekih\",\n  \"cekik\",\n  \"cekikik\",\n  \"ceking\",\n  \"cekit\",\n  \"ceklek\",\n  \"cekluk\",\n  \"cekok\",\n  \"cekrem\",\n  \"cekres\",\n  \"ceku\",\n  \"cekuh\",\n  \"cekuk\",\n  \"cekung\",\n  \"cekup\",\n  \"cekur\",\n  \"cekut\",\n  \"cela\",\n  \"celaga\",\n  \"celah\",\n  \"celak\",\n  \"celaka\",\n  \"celampak\",\n  \"celana\",\n  \"celang\",\n  \"celangak\",\n  \"celangak-celinguk\",\n  \"celangap\",\n  \"celapak\",\n  \"celar\",\n  \"celari\",\n  \"celas\",\n  \"celas-celus\",\n  \"celat\",\n  \"celatuk\",\n  \"cele\",\n  \"celebuk\",\n  \"celedang-celedok\",\n  \"celek\",\n  \"celekeh\",\n  \"celemek\",\n  \"celemotan\",\n  \"celempong\",\n  \"celempung\",\n  \"celeng\",\n  \"celengan\",\n  \"celengkak-celengkok\",\n  \"celengkang\",\n  \"celentang\",\n  \"celep\",\n  \"celepik\",\n  \"celepuk\",\n  \"celetuk\",\n  \"celi\",\n  \"celih\",\n  \"celik\",\n  \"celinguk\",\n  \"celingus\",\n  \"celis\",\n  \"celok\",\n  \"celomes\",\n  \"celomok\",\n  \"celonok\",\n  \"celopar\",\n  \"celorot\",\n  \"celoteh\",\n  \"celsius\",\n  \"celuk\",\n  \"celum\",\n  \"celung\",\n  \"celup\",\n  \"celupak\",\n  \"celur\",\n  \"celuring\",\n  \"celurit\",\n  \"celurut\",\n  \"celus\",\n  \"celutak\",\n  \"celutuk\",\n  \"cema\",\n  \"cemani\",\n  \"cemar\",\n  \"cemara\",\n  \"cemas\",\n  \"cemat\",\n  \"cembeng\",\n  \"cemberut\",\n  \"cembul\",\n  \"cembung\",\n  \"cemburu\",\n  \"cemeeh\",\n  \"cemeh\",\n  \"cemek\",\n  \"cemekian\",\n  \"cemengkian\",\n  \"cemer\",\n  \"cemerlang\",\n  \"cemeti\",\n  \"cemetuk\",\n  \"cemomot\",\n  \"cemong\",\n  \"cemooh\",\n  \"cempa\",\n  \"cempaka\",\n  \"cempal\",\n  \"cempala\",\n  \"cempana\",\n  \"cempe\",\n  \"cempedak\",\n  \"cempek\",\n  \"cempelik\",\n  \"cempelung\",\n  \"cempeng\",\n  \"cempera\",\n  \"cemperai\",\n  \"cemperling\",\n  \"cempiang\",\n  \"cempil\",\n  \"cempin\",\n  \"cemping\",\n  \"cemplang\",\n  \"cemplung\",\n  \"cempor\",\n  \"cempreng\",\n  \"cempres\",\n  \"cempuling\",\n  \"cempung\",\n  \"cempurit\",\n  \"cemuas\",\n  \"cemuk\",\n  \"cena\",\n  \"cenak\",\n  \"cenal-cenil\",\n  \"cenangau\",\n  \"cenangga\",\n  \"cenangkas\",\n  \"cenayang\",\n  \"cencala\",\n  \"cencaluk\",\n  \"cencang\",\n  \"cencaru\",\n  \"cencawan\",\n  \"cencawi\",\n  \"cendala\",\n  \"cendana\",\n  \"cendang\",\n  \"cendawan\",\n  \"cendekia\",\n  \"cendera\",\n  \"cenderai\",\n  \"cenderasa\",\n  \"cenderawasih\",\n  \"cenderung\",\n  \"cendok\",\n  \"cendol\",\n  \"cenduai\",\n  \"cenela\",\n  \"ceng\",\n  \"cengal\",\n  \"cengam\",\n  \"cengang\",\n  \"cengap\",\n  \"cengar-cengir\",\n  \"cengbeng\",\n  \"cengeh\",\n  \"cengek\",\n  \"cengeng\",\n  \"cengengesan\",\n  \"cenggek\",\n  \"cengger\",\n  \"cenggeret\",\n  \"cengi\",\n  \"cengir-cengir\",\n  \"cengis\",\n  \"cengkal\",\n  \"cengkam\",\n  \"cengkar\",\n  \"cengkaruk\",\n  \"cengkau\",\n  \"cengkedi\",\n  \"cengkeh\",\n  \"cengkek\",\n  \"cengkelong\",\n  \"cengkeram\",\n  \"cengkerama\",\n  \"cengkerawak\",\n  \"cengkerik\",\n  \"cengkering\",\n  \"cengkerung\",\n  \"cengki\",\n  \"cengkiak\",\n  \"cengkih\",\n  \"cengking\",\n  \"cengkir\",\n  \"cengkiwing\",\n  \"cengkok\",\n  \"cengkol\",\n  \"cengkong\",\n  \"cengkung\",\n  \"cengkurai\",\n  \"cengli\",\n  \"cengung\",\n  \"cengut\",\n  \"centang\",\n  \"centangan\",\n  \"centeng\",\n  \"centet\",\n  \"centil\",\n  \"centong\",\n  \"centung\",\n  \"cenung\",\n  \"cepak\",\n  \"cepal\",\n  \"cepat\",\n  \"cepek\",\n  \"cepeng\",\n  \"cepengan\",\n  \"ceper\",\n  \"cepiau\",\n  \"ceplas-ceplos\",\n  \"ceples\",\n  \"ceplok\",\n  \"ceplos\",\n  \"cepo\",\n  \"cepol\",\n  \"cepu\",\n  \"cepuk\",\n  \"cerabah\",\n  \"cerabih\",\n  \"cerabut\",\n  \"ceracak\",\n  \"ceracam\",\n  \"ceracap\",\n  \"ceracau\",\n  \"cerah\",\n  \"cerai\",\n  \"cerai-berai\",\n  \"cerak\",\n  \"ceraka\",\n  \"cerakin\",\n  \"ceramah\",\n  \"cerana\",\n  \"cerancang\",\n  \"cerang\",\n  \"ceranggah\",\n  \"cerangka\",\n  \"cerap\",\n  \"cerat\",\n  \"ceratai\",\n  \"ceratuk\",\n  \"cerau\",\n  \"cerawat\",\n  \"cerbak\",\n  \"cerca\",\n  \"cercah\",\n  \"cercak\",\n  \"cercap\",\n  \"cerdas\",\n  \"cerdik\",\n  \"cere\",\n  \"cerecek\",\n  \"cerek\",\n  \"ceremai\",\n  \"cerempung\",\n  \"cerepu\",\n  \"ceret\",\n  \"cerewet\",\n  \"cergas\",\n  \"ceri\",\n  \"ceria\",\n  \"cericap\",\n  \"cericau\",\n  \"cericip\",\n  \"ceriga\",\n  \"cerih\",\n  \"cerita\",\n  \"ceriwis\",\n  \"cerkam\",\n  \"cerkau\",\n  \"cerlang\",\n  \"cerlih\",\n  \"cerling\",\n  \"cermai\",\n  \"cermat\",\n  \"cermin\",\n  \"cerna\",\n  \"ceroboh\",\n  \"cerobong\",\n  \"cerocok\",\n  \"cerocos\",\n  \"cerompong\",\n  \"ceronggah\",\n  \"ceropong\",\n  \"ceroteh\",\n  \"cerowok\",\n  \"cerpelai\",\n  \"cerpen\",\n  \"cerpenis\",\n  \"cerpu\",\n  \"cerucuh\",\n  \"cerucup\",\n  \"ceruh\",\n  \"ceruk\",\n  \"cerun\",\n  \"cerup\",\n  \"cerut\",\n  \"cerutu\",\n  \"cespleng\",\n  \"cetai\",\n  \"cetak\",\n  \"cetar\",\n  \"cetek\",\n  \"ceteng\",\n  \"ceter\",\n  \"cetera\",\n  \"ceteri\",\n  \"ceteria\",\n  \"ceti\",\n  \"cetok\",\n  \"cetus\",\n  \"ceuki\",\n  \"cewang\",\n  \"cewek\",\n  \"ciak\",\n  \"cialat\",\n  \"ciap\",\n  \"ciar\",\n  \"cibir\",\n  \"cibit\",\n  \"ciblon\",\n  \"cibuk\",\n  \"cicik\",\n  \"cicil\",\n  \"cicinda\",\n  \"cicip\",\n  \"cicit\",\n  \"cidomo\",\n  \"ciduk\",\n  \"cigak\",\n  \"cih\",\n  \"cihui\",\n  \"cik\",\n  \"cika\",\n  \"cikadas\",\n  \"cikal\",\n  \"cikar\",\n  \"cikok\",\n  \"cikrak\",\n  \"ciku\",\n  \"cikun\",\n  \"cikut\",\n  \"cilap\",\n  \"cilawagi\",\n  \"cili\",\n  \"cilik\",\n  \"ciling\",\n  \"cilok\",\n  \"ciluk\",\n  \"cilukba\",\n  \"cimplong\",\n  \"cina\",\n  \"cincang\",\n  \"cincau\",\n  \"cincin\",\n  \"cincong\",\n  \"cincu\",\n  \"cinda\",\n  \"cindai\",\n  \"cindaku\",\n  \"cinde\",\n  \"cindil\",\n  \"cindur\",\n  \"cing\",\n  \"cingak\",\n  \"cingam\",\n  \"cingangah\",\n  \"cingge\",\n  \"cingkat\",\n  \"cingkeh\",\n  \"cingkrang\",\n  \"cingur\",\n  \"cinta\",\n  \"cintamani\",\n  \"cinteng\",\n  \"cintrong\",\n  \"cip\",\n  \"cipai\",\n  \"cipan\",\n  \"ciplak\",\n  \"cipok\",\n  \"ciprat\",\n  \"cipta\",\n  \"cir\",\n  \"circir\",\n  \"ciri\",\n  \"cirit\",\n  \"ciriwangi\",\n  \"cis\",\n  \"cit\",\n  \"cita\",\n  \"citra\",\n  \"citraleka\",\n  \"ciu\",\n  \"cium\",\n  \"ciut\",\n  \"coak\",\n  \"coang\",\n  \"coba\",\n  \"coban\",\n  \"cobar-cabir\",\n  \"cobek\",\n  \"coblos\",\n  \"cocok\",\n  \"cocol\",\n  \"cocor\",\n  \"codak\",\n  \"codet\",\n  \"codot\",\n  \"cogah\",\n  \"cogan\",\n  \"cogok\",\n  \"cok\",\n  \"cokar\",\n  \"cokek\",\n  \"cokelat\",\n  \"coket\",\n  \"coklat\",\n  \"cokmar\",\n  \"coko\",\n  \"cokok\",\n  \"cokol\",\n  \"cokor\",\n  \"cokorda\",\n  \"cola-cala\",\n  \"colak\",\n  \"colak-caling\",\n  \"colang-caling\",\n  \"colek\",\n  \"coleng\",\n  \"colet\",\n  \"coli\",\n  \"colok\",\n  \"colong\",\n  \"colot\",\n  \"comat-comot\",\n  \"comberan\",\n  \"comblang\",\n  \"combong\",\n  \"comek\",\n  \"comel\",\n  \"comor\",\n  \"comot\",\n  \"compang-camping\",\n  \"compeng\",\n  \"compes\",\n  \"compoh\",\n  \"compreng\",\n  \"comro\",\n  \"concong\",\n  \"condong\",\n  \"conet\",\n  \"congak\",\n  \"congeh\",\n  \"congek\",\n  \"conggah-canggih\",\n  \"congget\",\n  \"conggok\",\n  \"congkah-cangkih\",\n  \"congkah-mangkih\",\n  \"congkak\",\n  \"congkel\",\n  \"congki\",\n  \"congklak\",\n  \"congklang\",\n  \"congkok\",\n  \"congkong\",\n  \"congo\",\n  \"congok\",\n  \"congol\",\n  \"congor\",\n  \"congsam\",\n  \"contek\",\n  \"conteng\",\n  \"contoh\",\n  \"contong\",\n  \"cop\",\n  \"copak-capik\",\n  \"copet\",\n  \"coplok\",\n  \"copot\",\n  \"cor\",\n  \"corak\",\n  \"corat-coret\",\n  \"corek\",\n  \"coreng\",\n  \"coret\",\n  \"coro\",\n  \"corob\",\n  \"corong\",\n  \"corot\",\n  \"cotet\",\n  \"cotok\",\n  \"cowok\",\n  \"cowokan\",\n  \"crat-crit\",\n  \"criping\",\n  \"cua\",\n  \"cuaca\",\n  \"cuai\",\n  \"cuak\",\n  \"cual\",\n  \"cuang\",\n  \"cuar\",\n  \"cuat\",\n  \"cubit\",\n  \"cublik\",\n  \"cubung\",\n  \"cuca\",\n  \"cucakrawa\",\n  \"cuci\",\n  \"cucu\",\n  \"cucuh\",\n  \"cucuk\",\n  \"cucun\",\n  \"cucunda\",\n  \"cucung\",\n  \"cucup\",\n  \"cucur\",\n  \"cucurut\",\n  \"cucut\",\n  \"cudang\",\n  \"cuek\",\n  \"cugat\",\n  \"cuh\",\n  \"cuik\",\n  \"cuil\",\n  \"cuit\",\n  \"cuk\",\n  \"cuka\",\n  \"cukai\",\n  \"cuki\",\n  \"cukil\",\n  \"cukimai\",\n  \"cukin\",\n  \"cukit\",\n  \"cukong\",\n  \"cuku\",\n  \"cukup\",\n  \"cukur\",\n  \"cula\",\n  \"culak\",\n  \"culan\",\n  \"culas\",\n  \"culi\",\n  \"culiah\",\n  \"culik\",\n  \"culika\",\n  \"culim\",\n  \"culun\",\n  \"cuma\",\n  \"cuman\",\n  \"cumbu\",\n  \"cumengkling\",\n  \"cumepak\",\n  \"cumi-cumi\",\n  \"cumil\",\n  \"cuming\",\n  \"cun\",\n  \"cunam\",\n  \"cundang\",\n  \"cundrik\",\n  \"cunduk\",\n  \"cung\",\n  \"cungap\",\n  \"cungkil\",\n  \"cungkup\",\n  \"cungo\",\n  \"cungul\",\n  \"cungur\",\n  \"cunia\",\n  \"cup\",\n  \"cupai\",\n  \"cupak\",\n  \"cupang\",\n  \"cupar\",\n  \"cupet\",\n  \"cuping\",\n  \"cuplik\",\n  \"cupu\",\n  \"cupul\",\n  \"cur\",\n  \"cura\",\n  \"curah\",\n  \"curai\",\n  \"curam\",\n  \"curang\",\n  \"curat\",\n  \"cureng\",\n  \"curi\",\n  \"curiah\",\n  \"curiga\",\n  \"curik\",\n  \"curna\",\n  \"curu\",\n  \"cus\",\n  \"cut\",\n  \"cutak\",\n  \"cutbrai\",\n  \"cutel\",\n  \"cuti\",\n  \"cuwil\",\n  \"daayah\",\n  \"dab\",\n  \"daba\",\n  \"dabak\",\n  \"dabal\",\n  \"dabat\",\n  \"dabih\",\n  \"dabik\",\n  \"dabing\",\n  \"dabir\",\n  \"dabit\",\n  \"dablek\",\n  \"dabol\",\n  \"dabung\",\n  \"dabus\",\n  \"dacin\",\n  \"dad\",\n  \"dada\",\n  \"dadah\",\n  \"dadaisme\",\n  \"dadak\",\n  \"dadal\",\n  \"dadali\",\n  \"dadap\",\n  \"dadar\",\n  \"dadek\",\n  \"dadi\",\n  \"dadih\",\n  \"dading\",\n  \"dadu\",\n  \"daduh\",\n  \"daduk\",\n  \"dadung\",\n  \"daeng\",\n  \"daerah\",\n  \"daerahisme\",\n  \"dafnah\",\n  \"daftar\",\n  \"daga\",\n  \"dagang\",\n  \"dage\",\n  \"dagel\",\n  \"dagi\",\n  \"daging\",\n  \"dagu\",\n  \"dah\",\n  \"dahaga\",\n  \"dahagi\",\n  \"dahak\",\n  \"daham\",\n  \"dahan\",\n  \"dahanam\",\n  \"dahar\",\n  \"dahi\",\n  \"dahiat\",\n  \"dahina\",\n  \"dahlia\",\n  \"dahriah\",\n  \"dahsyat\",\n  \"dahulu\",\n  \"dai\",\n  \"daidan\",\n  \"daidanco\",\n  \"daif\",\n  \"daim\",\n  \"daiman\",\n  \"daing\",\n  \"daitia\",\n  \"dajal\",\n  \"daka\",\n  \"dakah\",\n  \"dakaik\",\n  \"dakar\",\n  \"dakhil\",\n  \"daki\",\n  \"dakik\",\n  \"dakocan\",\n  \"dakon\",\n  \"dakron\",\n  \"daksa\",\n  \"daksina\",\n  \"daktil\",\n  \"daktilitis\",\n  \"daktilologi\",\n  \"daktiloskopi\",\n  \"daku\",\n  \"dakwa\",\n  \"dakwah\",\n  \"dal\",\n  \"dalal\",\n  \"dalalah\",\n  \"dalalat\",\n  \"dalam\",\n  \"dalang\",\n  \"daldaru\",\n  \"dalem\",\n  \"dalfin\",\n  \"dali-dali\",\n  \"dalih\",\n  \"dalil\",\n  \"daltonisme\",\n  \"dalu\",\n  \"daluang\",\n  \"dalung\",\n  \"dam\",\n  \"damah\",\n  \"damai\",\n  \"damak\",\n  \"damal\",\n  \"daman\",\n  \"damar\",\n  \"damaru\",\n  \"damas\",\n  \"damat\",\n  \"damba\",\n  \"dambin\",\n  \"dambir\",\n  \"dame\",\n  \"damen\",\n  \"dami\",\n  \"damik\",\n  \"damotin\",\n  \"dampak\",\n  \"dampal\",\n  \"dampan\",\n  \"dampar\",\n  \"dampeng\",\n  \"dampil\",\n  \"damping\",\n  \"dampit\",\n  \"damprat\",\n  \"dampung\",\n  \"dan\",\n  \"dana\",\n  \"danau\",\n  \"danawa\",\n  \"danda\",\n  \"dandan\",\n  \"dandang\",\n  \"dandanggula\",\n  \"dandapati\",\n  \"dandi\",\n  \"dang\",\n  \"dangai\",\n  \"dangar\",\n  \"dangau\",\n  \"dangdut\",\n  \"dange\",\n  \"danghyang\",\n  \"dangir\",\n  \"dangka\",\n  \"dangkal\",\n  \"dangkap\",\n  \"dangkar\",\n  \"dangkung\",\n  \"danguk\",\n  \"dansa\",\n  \"dansanak\",\n  \"danta\",\n  \"danuh\",\n  \"danur\",\n  \"danyang\",\n  \"dap\",\n  \"dapa\",\n  \"dapar\",\n  \"dapat\",\n  \"dapra\",\n  \"dapur\",\n  \"dar\",\n  \"dara\",\n  \"darab\",\n  \"darah\",\n  \"daras\",\n  \"darat\",\n  \"darau\",\n  \"dargah\",\n  \"dari\",\n  \"daripada\",\n  \"darji\",\n  \"darma\",\n  \"darmabakti\",\n  \"darmakelana\",\n  \"darmasiswa\",\n  \"darmatirta\",\n  \"darmawisata\",\n  \"daro\",\n  \"darpana\",\n  \"daru-daru\",\n  \"darulaitam\",\n  \"darulakhirat\",\n  \"darulbaka\",\n  \"darulfana\",\n  \"daruljalal\",\n  \"darun\",\n  \"darunu\",\n  \"darurat\",\n  \"darusalam\",\n  \"darwis\",\n  \"das\",\n  \"dasa\",\n  \"dasalomba\",\n  \"dasar\",\n  \"dasarian\",\n  \"dasasila\",\n  \"dasatitah\",\n  \"dasawarsa\",\n  \"dasbor\",\n  \"dasi\",\n  \"dasin\",\n  \"daster\",\n  \"dasun\",\n  \"data\",\n  \"datang\",\n  \"datar\",\n  \"datatamak\",\n  \"dati\",\n  \"datif\",\n  \"datu\",\n  \"datuk\",\n  \"datum\",\n  \"datung\",\n  \"dauk\",\n  \"daulat\",\n  \"daun\",\n  \"daur\",\n  \"dawai\",\n  \"dawan\",\n  \"dawat\",\n  \"dawet\",\n  \"daya\",\n  \"dayah\",\n  \"dayang\",\n  \"dayu\",\n  \"dayuh\",\n  \"dayuk\",\n  \"dayung\",\n  \"dayus\",\n  \"dealat\",\n  \"deaneksasi\",\n  \"debah\",\n  \"debak\",\n  \"debam\",\n  \"debap\",\n  \"debar\",\n  \"debarkasi\",\n  \"debas\",\n  \"debat\",\n  \"debet\",\n  \"debik\",\n  \"debil\",\n  \"debing\",\n  \"debirokratisasi\",\n  \"debit\",\n  \"debitase\",\n  \"debitor\",\n  \"debitur\",\n  \"debris\",\n  \"debu\",\n  \"debug\",\n  \"debuk\",\n  \"debum\",\n  \"debun\",\n  \"debung\",\n  \"debup\",\n  \"debur\",\n  \"debus\",\n  \"debut\",\n  \"decak\",\n  \"decap\",\n  \"deceh\",\n  \"decing\",\n  \"decit\",\n  \"decup\",\n  \"decur\",\n  \"decut\",\n  \"dedah\",\n  \"dedai\",\n  \"dedak\",\n  \"dedal\",\n  \"dedalu\",\n  \"dedap\",\n  \"dedar\",\n  \"dedara\",\n  \"dedare\",\n  \"dedas\",\n  \"dedau\",\n  \"dedek\",\n  \"dedel\",\n  \"dedemit\",\n  \"dedengkot\",\n  \"deder\",\n  \"dederuk\",\n  \"dedes\",\n  \"dedikasi\",\n  \"dedikatif\",\n  \"deduksi\",\n  \"deduktif\",\n  \"dedulang\",\n  \"deeskalasi\",\n  \"defaitisme\",\n  \"defekasi\",\n  \"defender\",\n  \"defensi\",\n  \"defensif\",\n  \"deferens\",\n  \"defile\",\n  \"definisi\",\n  \"definit\",\n  \"definitif\",\n  \"defisien\",\n  \"defisit\",\n  \"deflagrasi\",\n  \"deflagrator\",\n  \"deflasi\",\n  \"defleksi\",\n  \"deflorasi\",\n  \"defoliasi\",\n  \"defolisasi\",\n  \"defonologisasi\",\n  \"deforestasi\",\n  \"deformasi\",\n  \"deformatif\",\n  \"deg\",\n  \"degam\",\n  \"degan\",\n  \"degap\",\n  \"degar\",\n  \"degen\",\n  \"degenerasi\",\n  \"degeneratif\",\n  \"degil\",\n  \"deging\",\n  \"degradasi\",\n  \"degresi\",\n  \"deguk\",\n  \"degum\",\n  \"degung\",\n  \"degup\",\n  \"deh\",\n  \"deham\",\n  \"dehem\",\n  \"dehidrasi\",\n  \"dehidrat\",\n  \"dehidrogenasi\",\n  \"dehumanisasi\",\n  \"deideologisasi\",\n  \"deifikasi\",\n  \"deiksis\",\n  \"deiktis\",\n  \"deislamisasi\",\n  \"deisme\",\n  \"dek\",\n  \"dekade\",\n  \"dekaden\",\n  \"dekadensi\",\n  \"dekagram\",\n  \"dekah\",\n  \"dekak\",\n  \"dekaliter\",\n  \"dekam\",\n  \"dekameter\",\n  \"dekan\",\n  \"dekanal\",\n  \"dekantasi\",\n  \"dekap\",\n  \"dekapoda\",\n  \"dekar\",\n  \"dekare\",\n  \"dekat\",\n  \"dekik\",\n  \"dekil\",\n  \"deking\",\n  \"deklamasi\",\n  \"deklamator\",\n  \"deklarasi\",\n  \"deklaratif\",\n  \"deklasifikasi\",\n  \"deklerer\",\n  \"deklinasi\",\n  \"deklinometer\",\n  \"dekode\",\n  \"dekoder\",\n  \"dekolonisasi\",\n  \"dekomposer\",\n  \"dekomposisi\",\n  \"dekompresi\",\n  \"dekongestan\",\n  \"dekonsentrasi\",\n  \"dekontekstualisasi\",\n  \"dekor\",\n  \"dekorasi\",\n  \"dekoratif\",\n  \"dekorator\",\n  \"dekosistem\",\n  \"dekremeter\",\n  \"dekreolisasi\",\n  \"dekret\",\n  \"dekriminalisasi\",\n  \"deksa\",\n  \"dekstrin\",\n  \"dekstrosa\",\n  \"deksura\",\n  \"deku\",\n  \"dekunci\",\n  \"dekung\",\n  \"dekus\",\n  \"dekut\",\n  \"delabialisasi\",\n  \"delah\",\n  \"delamak\",\n  \"delan\",\n  \"delap\",\n  \"delapan\",\n  \"delas\",\n  \"delat\",\n  \"delegasi\",\n  \"delegat\",\n  \"delegitimasi\",\n  \"delepak\",\n  \"deler\",\n  \"delik\",\n  \"delikan\",\n  \"delikat\",\n  \"delikates\",\n  \"delima\",\n  \"delineasi\",\n  \"delinkuen\",\n  \"delinkuensi\",\n  \"delirium\",\n  \"delman\",\n  \"delong\",\n  \"delongop\",\n  \"delta\",\n  \"deltoid\",\n  \"delu\",\n  \"delusi\",\n  \"delusif\",\n  \"demabrasi\",\n  \"demagog\",\n  \"demagogi\",\n  \"demagogis\",\n  \"demah\",\n  \"demam\",\n  \"demang\",\n  \"demap\",\n  \"demarkasi\",\n  \"dembai\",\n  \"dembam\",\n  \"dembun\",\n  \"demek\",\n  \"demen\",\n  \"demes\",\n  \"demi\",\n  \"demik\",\n  \"demikian\",\n  \"demiliterisasi\",\n  \"demineralisasi\",\n  \"demisioner\",\n  \"demo\",\n  \"demobilisan\",\n  \"demobilisasi\",\n  \"demograf\",\n  \"demografi\",\n  \"demografis\",\n  \"demokrasi\",\n  \"demokrat\",\n  \"demokratis\",\n  \"demokratisasi\",\n  \"demon\",\n  \"demoniak\",\n  \"demonopolisasi\",\n  \"demonstran\",\n  \"demonstrasi\",\n  \"demonstratif\",\n  \"demonstrativa\",\n  \"demoralisasi\",\n  \"demosi\",\n  \"dempak\",\n  \"dempam\",\n  \"dempang\",\n  \"demper\",\n  \"dempet\",\n  \"dempir\",\n  \"demplon\",\n  \"dempok\",\n  \"dempuk\",\n  \"dempul\",\n  \"dempung\",\n  \"demung\",\n  \"den\",\n  \"dena\",\n  \"denah\",\n  \"denai\",\n  \"denak\",\n  \"denasalisasi\",\n  \"denasionalisasi\",\n  \"denawa\",\n  \"dencang\",\n  \"dencing\",\n  \"denda\",\n  \"dendam\",\n  \"dendang\",\n  \"dendeng\",\n  \"dendi\",\n  \"dendrokronologi\",\n  \"dendrologi\",\n  \"denervasi\",\n  \"dengak\",\n  \"dengan\",\n  \"dengap\",\n  \"dengar\",\n  \"dengih\",\n  \"denging\",\n  \"dengkang\",\n  \"dengkel\",\n  \"dengki\",\n  \"dengkik\",\n  \"dengking\",\n  \"dengkol\",\n  \"dengkul\",\n  \"dengkung\",\n  \"dengkur\",\n  \"dengkus\",\n  \"dengu\",\n  \"dengue\",\n  \"denguk\",\n  \"dengung\",\n  \"dengus\",\n  \"dengut\",\n  \"denim\",\n  \"denok\",\n  \"denominal\",\n  \"denominasi\",\n  \"denotasi\",\n  \"denotatif\",\n  \"densimeter\",\n  \"densitas\",\n  \"densitometer\",\n  \"densitometri\",\n  \"densometer\",\n  \"dental\",\n  \"dentam\",\n  \"dentang\",\n  \"dentat\",\n  \"dentin\",\n  \"denting\",\n  \"dentum\",\n  \"dentung\",\n  \"dentur\",\n  \"denudasi\",\n  \"denuklirisasi\",\n  \"denyar\",\n  \"denyit\",\n  \"denyut\",\n  \"deodoran\",\n  \"deoknumisasi\",\n  \"deontologi\",\n  \"depa\",\n  \"depak\",\n  \"depalatalisasi\",\n  \"depan\",\n  \"depang\",\n  \"depap\",\n  \"deparpolisasi\",\n  \"departemen\",\n  \"departemental\",\n  \"departementalisasi\",\n  \"dependen\",\n  \"dependensi\",\n  \"depersonalisasi\",\n  \"depersonifikasi\",\n  \"depigmentasi\",\n  \"depilasi\",\n  \"deplesi\",\n  \"depo\",\n  \"depolarisasi\",\n  \"depolitisasi\",\n  \"deponir\",\n  \"depopulasi\",\n  \"deportasi\",\n  \"deposan\",\n  \"deposit\",\n  \"deposito\",\n  \"depot\",\n  \"depresi\",\n  \"depresiasi\",\n  \"depresor\",\n  \"deprok\",\n  \"deprotonasi\",\n  \"depun\",\n  \"depus\",\n  \"deputasi\",\n  \"deputi\",\n  \"dera\",\n  \"deragem\",\n  \"derai\",\n  \"derajah\",\n  \"derajang\",\n  \"derajat\",\n  \"derak\",\n  \"deram\",\n  \"deran\",\n  \"derana\",\n  \"derang\",\n  \"derap\",\n  \"deras\",\n  \"derau\",\n  \"derawa\",\n  \"derebar\",\n  \"deregulasi\",\n  \"derek\",\n  \"derel\",\n  \"derep\",\n  \"deres\",\n  \"deresi\",\n  \"deret\",\n  \"dergama\",\n  \"derik\",\n  \"dering\",\n  \"deringo\",\n  \"deris\",\n  \"derit\",\n  \"derita\",\n  \"deritaan\",\n  \"derivasi\",\n  \"derivat\",\n  \"derivatif\",\n  \"derji\",\n  \"derma\",\n  \"dermaga\",\n  \"derman\",\n  \"dermatitis\",\n  \"dermatofitosis\",\n  \"dermatolog\",\n  \"dermatologi\",\n  \"dermatom\",\n  \"dermis\",\n  \"dermoid\",\n  \"dersana\",\n  \"dersik\",\n  \"deru\",\n  \"deruji\",\n  \"deruk\",\n  \"derum\",\n  \"derun\",\n  \"derung\",\n  \"derup\",\n  \"derus\",\n  \"derut\",\n  \"desa\",\n  \"desah\",\n  \"desain\",\n  \"desainer\",\n  \"desak\",\n  \"desakralisasi\",\n  \"desalinasi\",\n  \"desaneksasi\",\n  \"desar\",\n  \"desas-desus\",\n  \"desau\",\n  \"desegregasi\",\n  \"deselerasi\",\n  \"desember\",\n  \"desensitisasi\",\n  \"desentralisasi\",\n  \"deserebrasi\",\n  \"desersi\",\n  \"desertir\",\n  \"desibel\",\n  \"desidua\",\n  \"desigram\",\n  \"desih\",\n  \"desik\",\n  \"desikan\",\n  \"desikator\",\n  \"desil\",\n  \"desiliter\",\n  \"desiliun\",\n  \"desimal\",\n  \"desimeter\",\n  \"desinens\",\n  \"desinfeksi\",\n  \"desinfektan\",\n  \"desing\",\n  \"desintegrasi\",\n  \"desir\",\n  \"desis\",\n  \"desit\",\n  \"deskripsi\",\n  \"deskriptif\",\n  \"deskuamasi\",\n  \"desmonem\",\n  \"desmoplasia\",\n  \"desmosom\",\n  \"desorientasi\",\n  \"desorpsi\",\n  \"despot\",\n  \"despotik\",\n  \"despotisme\",\n  \"destabilisasi\",\n  \"destar\",\n  \"destinasi\",\n  \"destroyer\",\n  \"destruksi\",\n  \"destruktif\",\n  \"destruktor\",\n  \"desuk\",\n  \"desulfurisasi\",\n  \"desup\",\n  \"desur\",\n  \"desus\",\n  \"desut\",\n  \"detail\",\n  \"detak\",\n  \"detap\",\n  \"detar\",\n  \"detas\",\n  \"detasemen\",\n  \"detasering\",\n  \"detasir\",\n  \"deteksi\",\n  \"detektif\",\n  \"detektofon\",\n  \"detektor\",\n  \"detenidos\",\n  \"detensi\",\n  \"detente\",\n  \"detergen\",\n  \"deteriorasi\",\n  \"determinan\",\n  \"determinasi\",\n  \"determinatif\",\n  \"determinator\",\n  \"determinis\",\n  \"determinisme\",\n  \"detik\",\n  \"deting\",\n  \"detoksifikasi\",\n  \"detonasi\",\n  \"detonator\",\n  \"detritus\",\n  \"detrusor\",\n  \"detup\",\n  \"detus\",\n  \"deuterium\",\n  \"deuterokanonika\",\n  \"deuteron\",\n  \"deutranomalopia\",\n  \"deutranopia\",\n  \"devaluasi\",\n  \"developer\",\n  \"deverbal\",\n  \"deviasi\",\n  \"devisa\",\n  \"devosi\",\n  \"dewa\",\n  \"dewadaru\",\n  \"dewala\",\n  \"dewan\",\n  \"dewana\",\n  \"dewanagari\",\n  \"dewangga\",\n  \"dewasa\",\n  \"dewata\",\n  \"dewe\",\n  \"dewi\",\n  \"dia\",\n  \"diabetes\",\n  \"diad\",\n  \"diadem\",\n  \"diafon\",\n  \"diaforetik\",\n  \"diafragma\",\n  \"diagenesis\",\n  \"diagnosis\",\n  \"diagnostik\",\n  \"diagometer\",\n  \"diagonal\",\n  \"diagram\",\n  \"diaken\",\n  \"diakon\",\n  \"diakones\",\n  \"diakonia\",\n  \"diakritik\",\n  \"diakronis\",\n  \"dialek\",\n  \"dialektal\",\n  \"dialektik\",\n  \"dialektika\",\n  \"dialektis\",\n  \"dialektologi\",\n  \"dialinguistik\",\n  \"dialisis\",\n  \"dialog\",\n  \"dialogis\",\n  \"diam\",\n  \"diamagnetisme\",\n  \"diameter\",\n  \"diametral\",\n  \"diamorf\",\n  \"dian\",\n  \"diang\",\n  \"diaper\",\n  \"diapositif\",\n  \"diar\",\n  \"diare\",\n  \"dias\",\n  \"diasistem\",\n  \"diaspora\",\n  \"diastase\",\n  \"diastole\",\n  \"diat\",\n  \"diaterman\",\n  \"diatermi\",\n  \"diatermik\",\n  \"diatesis\",\n  \"diatipe\",\n  \"diatom\",\n  \"diatomit\",\n  \"diatonik\",\n  \"diatopik\",\n  \"diayah\",\n  \"dibasa\",\n  \"didaktik\",\n  \"didaktikus\",\n  \"didaktis\",\n  \"didih\",\n  \"didik\",\n  \"didis\",\n  \"didong\",\n  \"dielektrik\",\n  \"diensefalon\",\n  \"dies\",\n  \"diesel\",\n  \"diet\",\n  \"dietetika\",\n  \"difabel\",\n  \"diferensial\",\n  \"diferensiasi\",\n  \"difluens\",\n  \"difluensi\",\n  \"difraksi\",\n  \"difteri\",\n  \"diftong\",\n  \"difusi\",\n  \"digdaya\",\n  \"digenesis\",\n  \"digestif\",\n  \"digit\",\n  \"digital\",\n  \"digitalin\",\n  \"digitalis\",\n  \"digitalisasi\",\n  \"diglosia\",\n  \"digraf\",\n  \"digresi\",\n  \"digul\",\n  \"dihedral\",\n  \"dihidroksil\",\n  \"dik\",\n  \"dikara\",\n  \"dikau\",\n  \"dikit\",\n  \"diklorida\",\n  \"dikotil\",\n  \"dikotomi\",\n  \"dikroisme\",\n  \"dikromat\",\n  \"dikromatik\",\n  \"diksa\",\n  \"diksi\",\n  \"diktat\",\n  \"diktator\",\n  \"diktatorial\",\n  \"diktatoris\",\n  \"dikte\",\n  \"diktum\",\n  \"dil\",\n  \"dila\",\n  \"dilak\",\n  \"dilam\",\n  \"dilasi\",\n  \"dilatasi\",\n  \"dilatometer\",\n  \"dilema\",\n  \"dilematik\",\n  \"diler\",\n  \"diletan\",\n  \"diluvium\",\n  \"dim\",\n  \"dimensi\",\n  \"dimer\",\n  \"diminutif\",\n  \"dimorfik\",\n  \"dimorfisme\",\n  \"din\",\n  \"dina\",\n  \"dinamik\",\n  \"dinamika\",\n  \"dinamis\",\n  \"dinamisator\",\n  \"dinamisme\",\n  \"dinamit\",\n  \"dinamo\",\n  \"dinamometer\",\n  \"dinar\",\n  \"dinas\",\n  \"dinasti\",\n  \"dinding\",\n  \"dingin\",\n  \"dingkis\",\n  \"dingkit\",\n  \"dingklang\",\n  \"dingklik\",\n  \"dingo\",\n  \"dini\",\n  \"diniah\",\n  \"diniyah\",\n  \"dinosaurus\",\n  \"dinul-islam\",\n  \"diode\",\n  \"dioesis\",\n  \"dioksida\",\n  \"dioksin\",\n  \"diopsida\",\n  \"dioptase\",\n  \"dioptri\",\n  \"diorama\",\n  \"diorit\",\n  \"dioses\",\n  \"dipan\",\n  \"diplo\",\n  \"diploid\",\n  \"diploma\",\n  \"diplomasi\",\n  \"diplomat\",\n  \"diplomatik\",\n  \"diplomatis\",\n  \"dipsomania\",\n  \"diptera\",\n  \"diptotos\",\n  \"dirah\",\n  \"diraja\",\n  \"direk\",\n  \"direksi\",\n  \"direktorat\",\n  \"direktorium\",\n  \"direktris\",\n  \"direktur\",\n  \"dirgahayu\",\n  \"dirgantara\",\n  \"dirham\",\n  \"diri\",\n  \"dirigen\",\n  \"diris\",\n  \"dirus\",\n  \"disagio\",\n  \"disain\",\n  \"disainer\",\n  \"disakarida\",\n  \"disastria\",\n  \"disbursemen\",\n  \"disdrometer\",\n  \"disekuilibrium\",\n  \"disel\",\n  \"disensus\",\n  \"disentri\",\n  \"disertasi\",\n  \"disfonia\",\n  \"disfungsi\",\n  \"disharmoni\",\n  \"disiden\",\n  \"disilabik\",\n  \"disimilasi\",\n  \"disinfektan\",\n  \"disinformasi\",\n  \"disinsentif\",\n  \"disintegrasi\",\n  \"disiplin\",\n  \"disjoki\",\n  \"disjungsi\",\n  \"disjungtif\",\n  \"diska\",\n  \"disket\",\n  \"diskiasis\",\n  \"disklimaks\",\n  \"disko\",\n  \"diskoid\",\n  \"diskon\",\n  \"diskontinu\",\n  \"diskontinuitas\",\n  \"diskonto\",\n  \"diskordans\",\n  \"diskorobik\",\n  \"diskotek\",\n  \"diskredit\",\n  \"diskrepansi\",\n  \"diskresi\",\n  \"diskriminasi\",\n  \"diskriminatif\",\n  \"diskriminator\",\n  \"diskualifikasi\",\n  \"diskulpasi\",\n  \"diskursif\",\n  \"diskus\",\n  \"diskusi\",\n  \"dislalia\",\n  \"disleksia\",\n  \"dislokasi\",\n  \"dismembrasio\",\n  \"dismenorea\",\n  \"dismutasi\",\n  \"disolventia\",\n  \"disonansi\",\n  \"disoperasi\",\n  \"disorder\",\n  \"disorganisasi\",\n  \"disorientasi\",\n  \"disosiasi\",\n  \"dispareunia\",\n  \"disparitas\",\n  \"dispensasi\",\n  \"dispenser\",\n  \"dispepsia\",\n  \"dispersal\",\n  \"dispersi\",\n  \"disposisi\",\n  \"disposotio\",\n  \"disprosium\",\n  \"disrupsi\",\n  \"distabilitas\",\n  \"distal\",\n  \"distansi\",\n  \"distikiasis\",\n  \"distikon\",\n  \"distilasi\",\n  \"distilator\",\n  \"distingsi\",\n  \"distingtif\",\n  \"distoma\",\n  \"distorsi\",\n  \"distosia\",\n  \"distribusi\",\n  \"distributor\",\n  \"distrik\",\n  \"disuasi\",\n  \"disuria\",\n  \"dito\",\n  \"ditransitif\",\n  \"diuresis\",\n  \"diuretik\",\n  \"diurnal\",\n  \"divergen\",\n  \"divergensi\",\n  \"diversifikasi\",\n  \"diversitas\",\n  \"divestasi\",\n  \"dividen\",\n  \"divisi\",\n  \"diwala\",\n  \"doa\",\n  \"doang\",\n  \"dobel\",\n  \"dobi\",\n  \"doblangan\",\n  \"doble\",\n  \"dobol\",\n  \"dobolo\",\n  \"dobrak\",\n  \"dodekagon\",\n  \"dodekahedron\",\n  \"dodet\",\n  \"dodok\",\n  \"dodol\",\n  \"dodong\",\n  \"dodor\",\n  \"dodos\",\n  \"dodot\",\n  \"doeloe\",\n  \"dog\",\n  \"dogel\",\n  \"dogeng\",\n  \"doger\",\n  \"dogma\",\n  \"dogmatik\",\n  \"dogmatis\",\n  \"dogmatisme\",\n  \"dogol\",\n  \"dohok\",\n  \"dohyo\",\n  \"doi\",\n  \"dok\",\n  \"dokar\",\n  \"doko\",\n  \"dokoh\",\n  \"dokok-dokok\",\n  \"doksologi\",\n  \"dokter\",\n  \"doktor\",\n  \"doktoranda\",\n  \"doktorandus\",\n  \"doktrin\",\n  \"doku\",\n  \"dokumen\",\n  \"dokumentasi\",\n  \"dokumenter\",\n  \"dol\",\n  \"dolak-dalik\",\n  \"dolan\",\n  \"dolar\",\n  \"doldrum\",\n  \"dolfin\",\n  \"dolikosepalik\",\n  \"dolmen\",\n  \"dolok\",\n  \"dolomit\",\n  \"dom\",\n  \"domain\",\n  \"domba\",\n  \"domblong\",\n  \"domein\",\n  \"domestik\",\n  \"domestikasi\",\n  \"dominan\",\n  \"dominansi\",\n  \"dominasi\",\n  \"domine\",\n  \"dominggo\",\n  \"dominion\",\n  \"domino\",\n  \"domisili\",\n  \"domot\",\n  \"dompak\",\n  \"dompet\",\n  \"domplang\",\n  \"dompleng\",\n  \"dompol\",\n  \"don\",\n  \"donasi\",\n  \"donat\",\n  \"donatur\",\n  \"doncang\",\n  \"dondang\",\n  \"donder\",\n  \"dondon\",\n  \"dong\",\n  \"dongak\",\n  \"dongan\",\n  \"dongbret\",\n  \"dongeng\",\n  \"dongkak\",\n  \"dongkel\",\n  \"dongkok\",\n  \"dongkol\",\n  \"dongkrak\",\n  \"dongkrok\",\n  \"dongok\",\n  \"dongpan\",\n  \"dongsok\",\n  \"doni\",\n  \"donor\",\n  \"donto\",\n  \"dop\",\n  \"doping\",\n  \"dopis\",\n  \"dor\",\n  \"dorang\",\n  \"dorbi\",\n  \"dorbia\",\n  \"dorman\",\n  \"dormansi\",\n  \"dorna\",\n  \"dorong\",\n  \"dorsal\",\n  \"dorslah\",\n  \"dorsopalatal\",\n  \"dorsovelar\",\n  \"dorsum\",\n  \"dortrap\",\n  \"dos\",\n  \"dosa\",\n  \"dosen\",\n  \"dosin\",\n  \"dosir\",\n  \"dosis\",\n  \"dot\",\n  \"dowel\",\n  \"dower\",\n  \"doyak\",\n  \"doyan\",\n  \"doyang\",\n  \"doyo\",\n  \"doyong\",\n  \"draf\",\n  \"dragon\",\n  \"drai\",\n  \"drainase\",\n  \"drakula\",\n  \"dram\",\n  \"drama\",\n  \"dramatik\",\n  \"dramatikus\",\n  \"dramatis\",\n  \"dramatisasi\",\n  \"dramaturg\",\n  \"dramaturgi\",\n  \"draperi\",\n  \"drastis\",\n  \"drat\",\n  \"drel\",\n  \"dresoar\",\n  \"dresur\",\n  \"dribel\",\n  \"drif\",\n  \"dril\",\n  \"drip\",\n  \"drop\",\n  \"droping\",\n  \"dropsi\",\n  \"drum\",\n  \"drumben\",\n  \"drumer\",\n  \"druwe\",\n  \"dua\",\n  \"duafa\",\n  \"duai\",\n  \"duaja\",\n  \"dualis\",\n  \"dualisme\",\n  \"dualistis\",\n  \"duane\",\n  \"duang\",\n  \"duangsom\",\n  \"dub\",\n  \"dubalang\",\n  \"dubelir\",\n  \"dubes\",\n  \"dubila\",\n  \"dubing\",\n  \"dubius\",\n  \"duble\",\n  \"dublir\",\n  \"dubuk\",\n  \"dubur\",\n  \"duda\",\n  \"duduk\",\n  \"dudur\",\n  \"dudus\",\n  \"duel\",\n  \"duet\",\n  \"duga\",\n  \"dugal\",\n  \"dugang\",\n  \"dugas\",\n  \"dugdeng\",\n  \"dugder\",\n  \"duh\",\n  \"duha\",\n  \"duhai\",\n  \"duhe\",\n  \"duhu\",\n  \"duilah\",\n  \"duit\",\n  \"duk\",\n  \"duka\",\n  \"dukacarita\",\n  \"dukacita\",\n  \"dukan\",\n  \"dukana\",\n  \"dukat\",\n  \"dukaten\",\n  \"duktulus\",\n  \"duktus\",\n  \"duku\",\n  \"dukuh\",\n  \"dukun\",\n  \"dukung\",\n  \"dula\",\n  \"dulag\",\n  \"dulang\",\n  \"dulang-dulang\",\n  \"duli\",\n  \"dulur\",\n  \"dum\",\n  \"dumdum\",\n  \"dumi\",\n  \"dumping\",\n  \"dumung\",\n  \"dunah\",\n  \"dunak\",\n  \"dung\",\n  \"dungas\",\n  \"dungkelan\",\n  \"dungkul\",\n  \"dungu\",\n  \"dungun\",\n  \"dunia\",\n  \"duniawi\",\n  \"duodenum\",\n  \"duodesimal\",\n  \"duodrama\",\n  \"duopoli\",\n  \"dup\",\n  \"dupa\",\n  \"dupak\",\n  \"dupleks\",\n  \"duplik\",\n  \"duplikasi\",\n  \"duplikat\",\n  \"duplikator\",\n  \"duplisitas\",\n  \"duplo\",\n  \"dur\",\n  \"dura\",\n  \"duralumin\",\n  \"duramater\",\n  \"durasi\",\n  \"durat\",\n  \"duratif\",\n  \"duren\",\n  \"dureng\",\n  \"durhaka\",\n  \"duri\",\n  \"durian\",\n  \"durias\",\n  \"duriat\",\n  \"durja\",\n  \"durjana\",\n  \"durjasa\",\n  \"durkarsa\",\n  \"durma\",\n  \"durna\",\n  \"durno\",\n  \"durnois\",\n  \"durnoisme\",\n  \"durometer\",\n  \"dursila\",\n  \"duru\",\n  \"duruwiksa\",\n  \"dus\",\n  \"dusin\",\n  \"dusta\",\n  \"dustur\",\n  \"dusun\",\n  \"duta\",\n  \"duwegan\",\n  \"duwet\",\n  \"duyun\",\n  \"duyung\",\n  \"dwiarti\",\n  \"dwibahasa\",\n  \"dwidarma\",\n  \"dwidasawarsa\",\n  \"dwifungsi\",\n  \"dwiganda\",\n  \"dwiguna\",\n  \"dwilingga\",\n  \"dwimatra\",\n  \"dwiminggu\",\n  \"dwimuka\",\n  \"dwiperan\",\n  \"dwipurwa\",\n  \"dwisegi\",\n  \"dwitarung\",\n  \"dwitunggal\",\n  \"dwiwarna\",\n  \"dzal\",\n  \"ebam\",\n  \"eban\",\n  \"ebek\",\n  \"ebi\",\n  \"eboni\",\n  \"ebonit\",\n  \"ebro\",\n  \"eburina\",\n  \"ecek\",\n  \"eceng\",\n  \"ecer\",\n  \"eco\",\n  \"edafik\",\n  \"edafit\",\n  \"edafologi\",\n  \"edafon\",\n  \"edan\",\n  \"edar\",\n  \"edema\",\n  \"edentat\",\n  \"edisi\",\n  \"edit\",\n  \"editor\",\n  \"editorial\",\n  \"edukasi\",\n  \"edukatif\",\n  \"efedrina\",\n  \"efek\",\n  \"efektif\",\n  \"efektivitas\",\n  \"efektor\",\n  \"efelis\",\n  \"efendi\",\n  \"efisien\",\n  \"efisiensi\",\n  \"efloresensi\",\n  \"eforus\",\n  \"efusi\",\n  \"egah\",\n  \"egalisasi\",\n  \"egalitarian\",\n  \"egalitarianisme\",\n  \"egalitarisme\",\n  \"egaliter\",\n  \"egat\",\n  \"ego\",\n  \"egois\",\n  \"egoisme\",\n  \"egoistis\",\n  \"egol\",\n  \"egomania\",\n  \"egos\",\n  \"egosentris\",\n  \"egosentrisitas\",\n  \"egosentrisme\",\n  \"egrang\",\n  \"egresif\",\n  \"ehe\",\n  \"eidetik\",\n  \"eigendom\",\n  \"eikosan\",\n  \"einsteinium\",\n  \"eja\",\n  \"ejakulasi\",\n  \"ejan\",\n  \"ejawantah\",\n  \"ejek\",\n  \"ejektif\",\n  \"ejektor\",\n  \"ekabahasa\",\n  \"ekad\",\n  \"ekajati\",\n  \"ekakarsa\",\n  \"ekamatra\",\n  \"ekang\",\n  \"ekaristi\",\n  \"ekatantri\",\n  \"ekbalium\",\n  \"ekdemik\",\n  \"ekderon\",\n  \"ekdisis\",\n  \"ekeh\",\n  \"ekimosis\",\n  \"ekiofit\",\n  \"eklektik\",\n  \"eklektikus\",\n  \"eklektis\",\n  \"eklektisisme\",\n  \"eklektisme\",\n  \"eklips\",\n  \"ekliptika\",\n  \"ekliptis\",\n  \"eklosi\",\n  \"ekofisiologi\",\n  \"ekofraksia\",\n  \"ekofrasia\",\n  \"ekografi\",\n  \"ekogrup\",\n  \"ekoklimat\",\n  \"ekoklimatologi\",\n  \"ekokronologi\",\n  \"ekolabel\",\n  \"ekolalia\",\n  \"ekologi\",\n  \"ekologis\",\n  \"ekon\",\n  \"ekonom\",\n  \"ekonometri\",\n  \"ekonomi\",\n  \"ekonomis\",\n  \"ekopolitik\",\n  \"ekopraksia\",\n  \"ekor\",\n  \"ekornia\",\n  \"ekosfer\",\n  \"ekosistem\",\n  \"ekosistematika\",\n  \"ekospesies\",\n  \"ekostratigrafi\",\n  \"ekotipe\",\n  \"ekotipifikasi\",\n  \"ekoturisme\",\n  \"ekozona\",\n  \"ekrin\",\n  \"ekrinologi\",\n  \"eks\",\n  \"eksak\",\n  \"eksakta\",\n  \"eksaltasi\",\n  \"eksamen\",\n  \"eksaminasi\",\n  \"eksaminator\",\n  \"eksantem\",\n  \"eksantropus\",\n  \"eksarasi\",\n  \"eksegesis\",\n  \"ekseget\",\n  \"eksekusi\",\n  \"eksekutif\",\n  \"eksekutor\",\n  \"eksem\",\n  \"eksemplar\",\n  \"eksenterasi\",\n  \"eksentrik\",\n  \"eksepsi\",\n  \"ekseptor\",\n  \"ekses\",\n  \"eksesif\",\n  \"eksfoliasi\",\n  \"ekshalasi\",\n  \"ekshibisi\",\n  \"ekshibisionis\",\n  \"ekshibisionisme\",\n  \"ekshibitum\",\n  \"eksikator\",\n  \"eksin\",\n  \"eksipien\",\n  \"eksisi\",\n  \"eksistensi\",\n  \"eksistensialis\",\n  \"eksistensialisme\",\n  \"eksit\",\n  \"eksitasi\",\n  \"eksitus\",\n  \"ekskavasi\",\n  \"ekskavator\",\n  \"eksklave\",\n  \"eksklusif\",\n  \"eksklusivisme\",\n  \"ekskomunikasi\",\n  \"ekskresi\",\n  \"ekskreta\",\n  \"ekskursi\",\n  \"ekskursif\",\n  \"eksobiologi\",\n  \"eksobiotik\",\n  \"eksodermis\",\n  \"eksodos\",\n  \"eksodus\",\n  \"eksoenzim\",\n  \"eksoergik\",\n  \"eksofasia\",\n  \"eksofora\",\n  \"eksoftalmia\",\n  \"eksoftalmos\",\n  \"eksoftalmus\",\n  \"eksogam\",\n  \"eksogami\",\n  \"eksogen\",\n  \"eksogin\",\n  \"eksoisogami\",\n  \"eksordium\",\n  \"eksorsis\",\n  \"eksosfer\",\n  \"eksospora\",\n  \"eksostosis\",\n  \"eksoterik\",\n  \"eksotermik\",\n  \"eksotik\",\n  \"eksotis\",\n  \"eksotisme\",\n  \"ekspansi\",\n  \"ekspansif\",\n  \"ekspansionis\",\n  \"ekspansionisme\",\n  \"ekspansionistis\",\n  \"ekspatriasi\",\n  \"ekspatriat\",\n  \"ekspedisi\",\n  \"ekspeditor\",\n  \"ekspektoran\",\n  \"eksper\",\n  \"eksperimen\",\n  \"eksperimental\",\n  \"ekspirasi\",\n  \"eksplan\",\n  \"eksplikasi\",\n  \"eksplisit\",\n  \"eksploit\",\n  \"eksploitasi\",\n  \"eksploitir\",\n  \"eksplorasi\",\n  \"eksploratif\",\n  \"eksplorator\",\n  \"eksplosi\",\n  \"eksplosif\",\n  \"ekspo\",\n  \"eksponen\",\n  \"eksponensial\",\n  \"ekspor\",\n  \"eksportir\",\n  \"ekspos\",\n  \"ekspose\",\n  \"eksposisi\",\n  \"ekspres\",\n  \"ekspresi\",\n  \"ekspresif\",\n  \"ekspresionisme\",\n  \"ekspresionistik\",\n  \"ekspresivitas\",\n  \"ekstase\",\n  \"ekstasi\",\n  \"ekstensi\",\n  \"ekstensif\",\n  \"ekstensifikasi\",\n  \"ekstensor\",\n  \"eksterior\",\n  \"eksteriorisasi\",\n  \"eksteritorialitas\",\n  \"ekstern\",\n  \"eksternal\",\n  \"ekstin\",\n  \"ekstra\",\n  \"ekstradisi\",\n  \"ekstrak\",\n  \"ekstrakardial\",\n  \"ekstraksi\",\n  \"ekstraktif\",\n  \"ekstrakurikuler\",\n  \"ekstralinguistis\",\n  \"ekstramarital\",\n  \"ekstranei\",\n  \"ekstraparlementer\",\n  \"ekstrapolasi\",\n  \"ekstraseluler\",\n  \"ekstraterestrial\",\n  \"ekstrateritorialitas\",\n  \"ekstrauterin\",\n  \"ekstraversi\",\n  \"ekstrem\",\n  \"ekstremis\",\n  \"ekstremitas\",\n  \"ekstrinsik\",\n  \"ekstrospeksi\",\n  \"ekstrover\",\n  \"ekstrusi\",\n  \"eksudasi\",\n  \"eksudat\",\n  \"ektoblas\",\n  \"ektoderm\",\n  \"ektohormon\",\n  \"ektoparasit\",\n  \"ektoplasma\",\n  \"ektoterm\",\n  \"ektotermik\",\n  \"ekualitas\",\n  \"ekuatif\",\n  \"ekuator\",\n  \"ekuilibrium\",\n  \"ekuinoks\",\n  \"ekuitas\",\n  \"ekuiti\",\n  \"ekuivalen\",\n  \"ekuivalensi\",\n  \"ekuivokasi\",\n  \"ekumene\",\n  \"ekumenis\",\n  \"ekumenisme\",\n  \"ela\",\n  \"elaborasi\",\n  \"elak\",\n  \"elan\",\n  \"elang\",\n  \"elastik\",\n  \"elastin\",\n  \"elastis\",\n  \"elastisitas\",\n  \"elastomer\",\n  \"elatif\",\n  \"elefantiasis\",\n  \"elegan\",\n  \"elegansi\",\n  \"elegi\",\n  \"elektif\",\n  \"elektorat\",\n  \"elektret\",\n  \"elektrifikasi\",\n  \"elektrik\",\n  \"elektris\",\n  \"elektro\",\n  \"elektrode\",\n  \"elektrodinamika\",\n  \"elektroensefalogram\",\n  \"elektroforesis\",\n  \"elektrokardiogram\",\n  \"elektrokimia\",\n  \"elektrokoagulasi\",\n  \"elektrokusi\",\n  \"elektrolisi\",\n  \"elektrolisis\",\n  \"elektrolit\",\n  \"elektromagnet\",\n  \"elektromagnetik\",\n  \"elektromagnetisme\",\n  \"elektrometalurgi\",\n  \"elektromiografi\",\n  \"elektromotif\",\n  \"elektron\",\n  \"elektronegatif\",\n  \"elektronik\",\n  \"elektronika\",\n  \"elektronis\",\n  \"elektropatologi\",\n  \"elektropositif\",\n  \"elektroskop\",\n  \"elektrostatika\",\n  \"elektroteknik\",\n  \"elektroterapeutika\",\n  \"elektroterapi\",\n  \"elektrotipe\",\n  \"elektrum\",\n  \"elemen\",\n  \"elementer\",\n  \"elemi\",\n  \"eleng\",\n  \"elevasi\",\n  \"elevator\",\n  \"eliksir\",\n  \"eliminasi\",\n  \"eliminir\",\n  \"eling\",\n  \"elips\",\n  \"elipsis\",\n  \"elipsoid\",\n  \"elipsometer\",\n  \"elipsometri\",\n  \"eliptis\",\n  \"elite\",\n  \"elitis\",\n  \"elitron\",\n  \"elo\",\n  \"elok\",\n  \"elokuensi\",\n  \"elon\",\n  \"elongasi\",\n  \"elpiji\",\n  \"eltor\",\n  \"elu\",\n  \"eluat\",\n  \"eluen\",\n  \"elung\",\n  \"elus\",\n  \"elusi\",\n  \"elusian\",\n  \"elusif\",\n  \"elutriasi\",\n  \"eluvial\",\n  \"eluviasi\",\n  \"eluvium\",\n  \"email\",\n  \"emanasi\",\n  \"emang\",\n  \"emansipasi\",\n  \"emas\",\n  \"emaskulasi\",\n  \"emat\",\n  \"embacang\",\n  \"embah\",\n  \"embak\",\n  \"embal\",\n  \"embalase\",\n  \"embalau\",\n  \"emban\",\n  \"embar\",\n  \"embara\",\n  \"embarau\",\n  \"embargo\",\n  \"embarkasi\",\n  \"embaru\",\n  \"embat\",\n  \"embek\",\n  \"embel\",\n  \"ember\",\n  \"embih\",\n  \"embik\",\n  \"emblem\",\n  \"embok\",\n  \"embol\",\n  \"emboli\",\n  \"embolisme\",\n  \"embolus\",\n  \"embosur\",\n  \"embrat\",\n  \"embrio\",\n  \"embriogenesis\",\n  \"embriologi\",\n  \"embrionik\",\n  \"embuai\",\n  \"embuh\",\n  \"embun\",\n  \"embung\",\n  \"embus\",\n  \"embut\",\n  \"emendasi\",\n  \"emeraldin\",\n  \"emeritus\",\n  \"emetik\",\n  \"emetina\",\n  \"emfisema\",\n  \"emigran\",\n  \"emigrasi\",\n  \"eminen\",\n  \"eminensi\",\n  \"emir\",\n  \"emirat\",\n  \"emis\",\n  \"emisi\",\n  \"emisivitas\",\n  \"emitans\",\n  \"emiten\",\n  \"emoh\",\n  \"emol\",\n  \"emolumen\",\n  \"emong\",\n  \"emosi\",\n  \"emosional\",\n  \"emosionalisme\",\n  \"emotif\",\n  \"empal\",\n  \"empang\",\n  \"empap\",\n  \"empar\",\n  \"empas\",\n  \"empat\",\n  \"empati\",\n  \"empedal\",\n  \"empedu\",\n  \"empek\",\n  \"empela\",\n  \"empelas\",\n  \"empenak\",\n  \"empeng\",\n  \"emper\",\n  \"empet\",\n  \"empiema\",\n  \"empik\",\n  \"emping\",\n  \"empiri\",\n  \"empiris\",\n  \"empirisme\",\n  \"emplasemen\",\n  \"emplek\",\n  \"employe\",\n  \"empo\",\n  \"empoh\",\n  \"empok\",\n  \"emporium\",\n  \"empos\",\n  \"empot\",\n  \"emprak\",\n  \"empu\",\n  \"empuan\",\n  \"empuk\",\n  \"empul\",\n  \"empulur\",\n  \"empunya\",\n  \"emrat\",\n  \"emulasi\",\n  \"emulator\",\n  \"emulsi\",\n  \"emulsifikasi\",\n  \"emut\",\n  \"enak\",\n  \"enam\",\n  \"enamel\",\n  \"enap\",\n  \"enartrosis\",\n  \"enas\",\n  \"enau\",\n  \"encal\",\n  \"encang\",\n  \"enceh\",\n  \"encek\",\n  \"encel\",\n  \"encer\",\n  \"encik\",\n  \"encim\",\n  \"encit\",\n  \"encok\",\n  \"encot\",\n  \"endak\",\n  \"endal\",\n  \"endang\",\n  \"endap\",\n  \"endas\",\n  \"endasan\",\n  \"endemi\",\n  \"endemis\",\n  \"endilau\",\n  \"endoderm\",\n  \"endoderma\",\n  \"endodermis\",\n  \"endofit\",\n  \"endogami\",\n  \"endogen\",\n  \"endokardia\",\n  \"endokrin\",\n  \"endokrinologi\",\n  \"endolimfa\",\n  \"endometriosis\",\n  \"endometrium\",\n  \"endomiksis\",\n  \"endomiokarditis\",\n  \"endomisium\",\n  \"endon\",\n  \"endong\",\n  \"endoparasit\",\n  \"endoplasma\",\n  \"endorfin\",\n  \"endosemen\",\n  \"endosentris\",\n  \"endoskeleton\",\n  \"endoskop\",\n  \"endoskopi\",\n  \"endosmosis\",\n  \"endosperma\",\n  \"endotel\",\n  \"endoterm\",\n  \"endotermal\",\n  \"endotermis\",\n  \"endotoksin\",\n  \"endrin\",\n  \"enduk\",\n  \"endul\",\n  \"enduro\",\n  \"endus\",\n  \"endut\",\n  \"enek\",\n  \"eneng\",\n  \"energetik\",\n  \"energi\",\n  \"energik\",\n  \"enes\",\n  \"enfitotik\",\n  \"engah\",\n  \"engap-engap\",\n  \"engas\",\n  \"enggak\",\n  \"enggan\",\n  \"enggang\",\n  \"engget\",\n  \"enggil\",\n  \"enggok\",\n  \"engkah\",\n  \"engkak\",\n  \"engkang\",\n  \"engkau\",\n  \"engket-engket\",\n  \"engkoh\",\n  \"engkol\",\n  \"engkong\",\n  \"engku\",\n  \"engkuk\",\n  \"engsel\",\n  \"enigma\",\n  \"enjak\",\n  \"enjal\",\n  \"enjambemen\",\n  \"enjelai\",\n  \"enjin\",\n  \"enjut\",\n  \"enkapsulasi\",\n  \"enklave\",\n  \"enklitik\",\n  \"enkode\",\n  \"enkripsi\",\n  \"enkulturasi\",\n  \"enologi\",\n  \"enom\",\n  \"ensambel\",\n  \"ensefalitis\",\n  \"ensefalitogen\",\n  \"ensefalograf\",\n  \"ensefalografi\",\n  \"ensefalogram\",\n  \"ensefalomielitis\",\n  \"ensefalon\",\n  \"ensiform\",\n  \"ensiklik\",\n  \"ensiklopedia\",\n  \"ensiklopedis\",\n  \"ensopor\",\n  \"entah\",\n  \"entak\",\n  \"entalpi\",\n  \"entar\",\n  \"entas\",\n  \"ente\",\n  \"enten\",\n  \"enteng\",\n  \"entente\",\n  \"enteritis\",\n  \"enterograf\",\n  \"enterologi\",\n  \"enteron\",\n  \"enteropati\",\n  \"enterosel\",\n  \"enterostomi\",\n  \"enterotoksin\",\n  \"enterovirus\",\n  \"entit\",\n  \"entitas\",\n  \"entoderm\",\n  \"entogenus\",\n  \"entok\",\n  \"entomofili\",\n  \"entomolog\",\n  \"entomologi\",\n  \"entong\",\n  \"entot\",\n  \"entozoa\",\n  \"entozoik\",\n  \"entre\",\n  \"entrepot\",\n  \"entri\",\n  \"entropi\",\n  \"enukleasi\",\n  \"enumerasi\",\n  \"enuresis\",\n  \"envoi\",\n  \"enyah\",\n  \"enyak\",\n  \"enzim\",\n  \"enzimolisis\",\n  \"enzimologi\",\n  \"enzootik\",\n  \"eolit\",\n  \"eon\",\n  \"eosen\",\n  \"eosin\",\n  \"eozoikum\",\n  \"epak\",\n  \"epek\",\n  \"epentesis\",\n  \"epibentos\",\n  \"epidemi\",\n  \"epidemiologi\",\n  \"epidermis\",\n  \"epidiaskop\",\n  \"epifaring\",\n  \"epifil\",\n  \"epifiotik\",\n  \"epifisis\",\n  \"epifit\",\n  \"epifiton\",\n  \"epifora\",\n  \"epigastrium\",\n  \"epigenesis\",\n  \"epiglotis\",\n  \"epigon\",\n  \"epigraf\",\n  \"epigrafi\",\n  \"epigram\",\n  \"epik\",\n  \"epikotil\",\n  \"epikuris\",\n  \"epilepsi\",\n  \"epileptik\",\n  \"epilog\",\n  \"epimisium\",\n  \"epinasti\",\n  \"epinefrina\",\n  \"epinurim\",\n  \"episentrum\",\n  \"episiklik\",\n  \"episiotomi\",\n  \"episkopal\",\n  \"episkopat\",\n  \"episode\",\n  \"episodik\",\n  \"epispora\",\n  \"epistaksis\",\n  \"epistel\",\n  \"epistemologi\",\n  \"epistola\",\n  \"epitaf\",\n  \"epitaksi\",\n  \"epitel\",\n  \"epitelioma\",\n  \"epitermal\",\n  \"epitet\",\n  \"epizoik\",\n  \"epizootik\",\n  \"epok\",\n  \"epoksi\",\n  \"epolet\",\n  \"eponim\",\n  \"epos\",\n  \"epsilon\",\n  \"era\",\n  \"eradikasi\",\n  \"eradiksi\",\n  \"erak\",\n  \"eram\",\n  \"erang\",\n  \"erat\",\n  \"erata\",\n  \"erbis\",\n  \"erbium\",\n  \"ercis\",\n  \"ereh\",\n  \"erek-erek\",\n  \"ereksi\",\n  \"erektor\",\n  \"ereng\",\n  \"erepsin\",\n  \"eret\",\n  \"erg\",\n  \"ergasiofit\",\n  \"ergonomi\",\n  \"ergonomika\",\n  \"ergonomis\",\n  \"ergosterol\",\n  \"ergot\",\n  \"ergoterapi\",\n  \"erik\",\n  \"ering\",\n  \"erisipelas\",\n  \"eritema\",\n  \"eritroblas\",\n  \"eritrosit\",\n  \"erong\",\n  \"eror\",\n  \"erosentrisme\",\n  \"erosi\",\n  \"erot\",\n  \"erotik\",\n  \"erotika\",\n  \"erotis\",\n  \"erotisisme\",\n  \"erotisme\",\n  \"erpah\",\n  \"erpak\",\n  \"erti\",\n  \"eru\",\n  \"erupsi\",\n  \"es\",\n  \"esa\",\n  \"esai\",\n  \"esais\",\n  \"esak\",\n  \"esek\",\n  \"eselon\",\n  \"esembling\",\n  \"esens\",\n  \"esensi\",\n  \"esensial\",\n  \"esensialitas\",\n  \"eskader\",\n  \"eskadron\",\n  \"eskalasi\",\n  \"eskalator\",\n  \"eskapisme\",\n  \"eskas\",\n  \"eskatologi\",\n  \"eskatologis\",\n  \"esofagus\",\n  \"esok\",\n  \"esot\",\n  \"esoteris\",\n  \"estafet\",\n  \"ester\",\n  \"estesia\",\n  \"estetik\",\n  \"estetika\",\n  \"estetikus\",\n  \"estetis\",\n  \"estimasi\",\n  \"estriol\",\n  \"estrogen\",\n  \"estron\",\n  \"estrus\",\n  \"estuari\",\n  \"estuarin\",\n  \"eta\",\n  \"etalase\",\n  \"etana\",\n  \"etanol\",\n  \"etape\",\n  \"etatisme\",\n  \"etek\",\n  \"eter\",\n  \"eteris\",\n  \"eternit\",\n  \"etik\",\n  \"etika\",\n  \"etiket\",\n  \"etil\",\n  \"etilena\",\n  \"etimologi\",\n  \"etimologis\",\n  \"etimon\",\n  \"etiolin\",\n  \"etiologi\",\n  \"etis\",\n  \"etmoid\",\n  \"etnik\",\n  \"etnis\",\n  \"etnobotani\",\n  \"etnograf\",\n  \"etnografi\",\n  \"etnografis\",\n  \"etnolinguistik\",\n  \"etnolog\",\n  \"etnologi\",\n  \"etnologis\",\n  \"etnomusikolog\",\n  \"etnomusikologi\",\n  \"etnopolitik\",\n  \"etnosentrisme\",\n  \"etologi\",\n  \"etos\",\n  \"etsa\",\n  \"eudaemonisme\",\n  \"eufemisme\",\n  \"eufemistis\",\n  \"eufoni\",\n  \"eufonium\",\n  \"euforia\",\n  \"euforian\",\n  \"eugenetika\",\n  \"eugenika\",\n  \"eugenol\",\n  \"eukaliptol\",\n  \"eukaliptus\",\n  \"eukarion\",\n  \"eukariota\",\n  \"eulogi\",\n  \"euploid\",\n  \"eurasia\",\n  \"eurihalin\",\n  \"europium\",\n  \"eurosentris\",\n  \"euseksual\",\n  \"eusinantropus\",\n  \"eutanasia\",\n  \"eutektik\",\n  \"eutenika\",\n  \"eutrofikasi\",\n  \"evakuasi\",\n  \"evaluasi\",\n  \"evaluatif\",\n  \"evangeli\",\n  \"evangelis\",\n  \"evaporasi\",\n  \"evaporator\",\n  \"evaporimeter\",\n  \"evapotranspirasi\",\n  \"eversi\",\n  \"eviden\",\n  \"eviserasi\",\n  \"evokasi\",\n  \"evokatif\",\n  \"evolusi\",\n  \"evolusioner\",\n  \"evolusionisme\",\n  \"ewa\",\n  \"eyang\",\n  \"eyel\",\n  \"faal\",\n  \"faali\",\n  \"fabel\",\n  \"fabula\",\n  \"faden\",\n  \"fadihat\",\n  \"fadil\",\n  \"fadilat\",\n  \"faedah\",\n  \"fafa\",\n  \"fagosit\",\n  \"fagositosis\",\n  \"fagot\",\n  \"fahombe\",\n  \"fahrenheit\",\n  \"fahsya\",\n  \"fail\",\n  \"fajar\",\n  \"fakih\",\n  \"fakir\",\n  \"faks\",\n  \"faksi\",\n  \"faksimile\",\n  \"fakta\",\n  \"faktif\",\n  \"faktitius\",\n  \"faktor\",\n  \"faktual\",\n  \"faktur\",\n  \"fakultas\",\n  \"fakultatif\",\n  \"falah\",\n  \"falaj\",\n  \"falak\",\n  \"falakiah\",\n  \"falsafah\",\n  \"falsafi\",\n  \"fam\",\n  \"famili\",\n  \"familia\",\n  \"familier\",\n  \"familiisme\",\n  \"familisme\",\n  \"fana\",\n  \"fanatik\",\n  \"fanatisme\",\n  \"fanfare\",\n  \"fani\",\n  \"fantasi\",\n  \"fantastis\",\n  \"fantom\",\n  \"farad\",\n  \"faraid\",\n  \"faraj\",\n  \"farak\",\n  \"fardu\",\n  \"farik\",\n  \"faring\",\n  \"faringal\",\n  \"faringalisasi\",\n  \"faringitis\",\n  \"farisi\",\n  \"farji\",\n  \"farmakodinamika\",\n  \"farmakokinetika\",\n  \"farmakolog\",\n  \"farmakologi\",\n  \"farmakologis\",\n  \"farmakope\",\n  \"farmakoseutika\",\n  \"farmasi\",\n  \"farsakh\",\n  \"fasad\",\n  \"fasakh\",\n  \"fase\",\n  \"faset\",\n  \"fasia\",\n  \"fasid\",\n  \"fasih\",\n  \"fasihat\",\n  \"fasik\",\n  \"fasilitas\",\n  \"fasilitator\",\n  \"fasis\",\n  \"fasisme\",\n  \"fastabikhulkhairat\",\n  \"fatah\",\n  \"fatal\",\n  \"fatala\",\n  \"fatalis\",\n  \"fatalisme\",\n  \"fatalitas\",\n  \"fatamorgana\",\n  \"fatanah\",\n  \"fatihah\",\n  \"fatimah\",\n  \"fatir\",\n  \"fatom\",\n  \"fatometer\",\n  \"fatri\",\n  \"fatsun\",\n  \"fatur\",\n  \"fatwa\",\n  \"fauna\",\n  \"faunistik\",\n  \"favorit\",\n  \"favoritisme\",\n  \"febrin\",\n  \"februari\",\n  \"federal\",\n  \"federalis\",\n  \"federalisme\",\n  \"federalistis\",\n  \"federasi\",\n  \"feko\",\n  \"fekundasi\",\n  \"fekunditas\",\n  \"felon\",\n  \"felspar\",\n  \"feminin\",\n  \"feminisme\",\n  \"fenakit\",\n  \"fengsui\",\n  \"fenit\",\n  \"fenol\",\n  \"fenologi\",\n  \"fenomena\",\n  \"fenomenal\",\n  \"fenomenalisme\",\n  \"fenomenologi\",\n  \"fenosis\",\n  \"fenotipe\",\n  \"feodal\",\n  \"feodalisme\",\n  \"feodalistis\",\n  \"feral\",\n  \"feri\",\n  \"feritin\",\n  \"fermen\",\n  \"fermentasi\",\n  \"fermion\",\n  \"fermium\",\n  \"feromagnetik\",\n  \"feromagnetisme\",\n  \"feromon\",\n  \"feronikel\",\n  \"fertil\",\n  \"fertilasi\",\n  \"fertilisasi\",\n  \"fertilitas\",\n  \"fertilizin\",\n  \"ferum\",\n  \"feses\",\n  \"festival\",\n  \"fetis\",\n  \"fetor\",\n  \"fetus\",\n  \"fiasko\",\n  \"fiat\",\n  \"fiber\",\n  \"fibrasi\",\n  \"fibriblas\",\n  \"fibril\",\n  \"fibrilasi\",\n  \"fibrin\",\n  \"fibrinogen\",\n  \"fibrokistik\",\n  \"fidah\",\n  \"fider\",\n  \"fidiah\",\n  \"fidusia\",\n  \"fidyah\",\n  \"figur\",\n  \"figuran\",\n  \"figuratif\",\n  \"fiil\",\n  \"fikih\",\n  \"fikli\",\n  \"fikologi\",\n  \"fikrah\",\n  \"fiksasi\",\n  \"fiksi\",\n  \"fiktif\",\n  \"fikus\",\n  \"filamen\",\n  \"filantrop\",\n  \"filantropi\",\n  \"filantropis\",\n  \"filaria\",\n  \"filariasis\",\n  \"filateli\",\n  \"filatelik\",\n  \"filatelis\",\n  \"filharmoni\",\n  \"filial\",\n  \"filibuster\",\n  \"film\",\n  \"filmis\",\n  \"filo\",\n  \"filodendron\",\n  \"filogenesis\",\n  \"filogeni\",\n  \"filolog\",\n  \"filologi\",\n  \"filologis\",\n  \"filopur\",\n  \"filosof\",\n  \"filosofi\",\n  \"filosofis\",\n  \"filsafat\",\n  \"filsuf\",\n  \"filter\",\n  \"filtrasi\",\n  \"filtrat\",\n  \"filum\",\n  \"fimbria\",\n  \"final\",\n  \"finansial\",\n  \"finir\",\n  \"finis\",\n  \"fiolaks\",\n  \"firajullah\",\n  \"firasat\",\n  \"firauniah\",\n  \"firdaus\",\n  \"firdausi\",\n  \"firjatullah\",\n  \"firkah\",\n  \"firma\",\n  \"firman\",\n  \"firn\",\n  \"fisi\",\n  \"fisibel\",\n  \"fisibilitas\",\n  \"fisik\",\n  \"fisika\",\n  \"fisiognomi\",\n  \"fisiognomis\",\n  \"fisiologi\",\n  \"fisiologis\",\n  \"fisioterapi\",\n  \"fisis\",\n  \"fiskal\",\n  \"fit\",\n  \"fiting\",\n  \"fitnah\",\n  \"fitofag\",\n  \"fitofogus\",\n  \"fitogeni\",\n  \"fitogeografi\",\n  \"fitokimia\",\n  \"fitologi\",\n  \"fitometer\",\n  \"fiton\",\n  \"fitopatologi\",\n  \"fitosanitasi\",\n  \"fitososiologi\",\n  \"fitosterol\",\n  \"fitostrot\",\n  \"fitotoksin\",\n  \"fitotoksoid\",\n  \"fitotopografi\",\n  \"fitotron\",\n  \"fitrah\",\n  \"fitri\",\n  \"flakon\",\n  \"flamboyan\",\n  \"flamingo\",\n  \"flanel\",\n  \"flat\",\n  \"flegma\",\n  \"flegmatis\",\n  \"fleksi\",\n  \"fleksibel\",\n  \"fleksibilitas\",\n  \"fleksor\",\n  \"flensa\",\n  \"flip-plop\",\n  \"flis\",\n  \"floem\",\n  \"flop\",\n  \"flora\",\n  \"floret\",\n  \"flotasi\",\n  \"flotet\",\n  \"flu\",\n  \"fluensi\",\n  \"fluida\",\n  \"fluks\",\n  \"fluktuasi\",\n  \"fluktuatif\",\n  \"fluor\",\n  \"fluoresen\",\n  \"fluoresens\",\n  \"fluorin\",\n  \"fluorit\",\n  \"fobia\",\n  \"fokimeter\",\n  \"fokstrot\",\n  \"fokus\",\n  \"folder\",\n  \"foli\",\n  \"folikel\",\n  \"folio\",\n  \"folklor\",\n  \"folksong\",\n  \"fon\",\n  \"fonasi\",\n  \"fondamen\",\n  \"fondasi\",\n  \"fonds\",\n  \"fonem\",\n  \"fonemik\",\n  \"fonemis\",\n  \"fonetik\",\n  \"fonetis\",\n  \"fonik\",\n  \"fonis\",\n  \"fonograf\",\n  \"fonografi\",\n  \"fonologi\",\n  \"fonologis\",\n  \"fonon\",\n  \"fonotaktik\",\n  \"fonotipi\",\n  \"foramen\",\n  \"foraminifera\",\n  \"forensik\",\n  \"forklif\",\n  \"forma\",\n  \"formal\",\n  \"formalin\",\n  \"formalistis\",\n  \"formalitas\",\n  \"forman\",\n  \"formasi\",\n  \"format\",\n  \"formatif\",\n  \"formatir\",\n  \"formatur\",\n  \"formika\",\n  \"formula\",\n  \"formulasi\",\n  \"formulator\",\n  \"formulir\",\n  \"fornifikasi\",\n  \"fornikasi\",\n  \"forsep\",\n  \"forsir\",\n  \"forsit\",\n  \"forte\",\n  \"fortifikasi\",\n  \"fortin\",\n  \"forum\",\n  \"fosfat\",\n  \"fosfina\",\n  \"fosfit\",\n  \"fosfor\",\n  \"fosforesens\",\n  \"fosforilase\",\n  \"fosforus\",\n  \"fosgen\",\n  \"fosil\",\n  \"foto\",\n  \"fotodiode\",\n  \"fotoelektron\",\n  \"fotoemisi\",\n  \"fotogenik\",\n  \"fotograf\",\n  \"fotografer\",\n  \"fotografi\",\n  \"fotografis\",\n  \"fotograver\",\n  \"fotogravur\",\n  \"fotokimia\",\n  \"fotokonduksi\",\n  \"fotokonduktivitas\",\n  \"fotokonduktor\",\n  \"fotokopi\",\n  \"fotokromi\",\n  \"fotokromik\",\n  \"fotolisis\",\n  \"fotolitografi\",\n  \"fotometer\",\n  \"fotometri\",\n  \"fotomikrografi\",\n  \"fotomodel\",\n  \"foton\",\n  \"fotoperiodisme\",\n  \"fotosel\",\n  \"fotosfer\",\n  \"fotosintesis\",\n  \"fotostat\",\n  \"fototaksis\",\n  \"fototropis\",\n  \"fototustel\",\n  \"fovea\",\n  \"foya\",\n  \"fragmen\",\n  \"fragmentaris\",\n  \"fragmentasi\",\n  \"fraksi\",\n  \"fraksinasi\",\n  \"fraktur\",\n  \"fraktus\",\n  \"frambusia\",\n  \"fransium\",\n  \"frasa\",\n  \"frase\",\n  \"fraseologi\",\n  \"frater\",\n  \"fraternitas\",\n  \"freatofit\",\n  \"fregat\",\n  \"frekuen\",\n  \"frekuensi\",\n  \"frekuentatif\",\n  \"frenologi\",\n  \"freon\",\n  \"frib\",\n  \"frigid\",\n  \"frigorigraf\",\n  \"frigorimeter\",\n  \"frikatif\",\n  \"friksi\",\n  \"fron\",\n  \"front\",\n  \"frontal\",\n  \"fruktosa\",\n  \"frustrasi\",\n  \"fuad\",\n  \"fugasitas\",\n  \"fujur\",\n  \"fukaha\",\n  \"fukara\",\n  \"fuksina\",\n  \"fulgurit\",\n  \"fuli\",\n  \"fulminat\",\n  \"fulus\",\n  \"fumarol\",\n  \"fumigan\",\n  \"fumigasi\",\n  \"fumigator\",\n  \"fundamen\",\n  \"fundamental\",\n  \"fundamentalis\",\n  \"fundamentalisme\",\n  \"fundamentalistis\",\n  \"fungi\",\n  \"fungibel\",\n  \"fungisida\",\n  \"fungistatik\",\n  \"fungoid\",\n  \"fungsi\",\n  \"fungsional\",\n  \"fungsionalisasi\",\n  \"fungsionalisme\",\n  \"fungsionalitas\",\n  \"fungsionaris\",\n  \"fungus\",\n  \"furfural\",\n  \"furkan\",\n  \"furnitur\",\n  \"furqan\",\n  \"furuk\",\n  \"fusi\",\n  \"fusta\",\n  \"fusuk\",\n  \"futual\",\n  \"futur\",\n  \"futurisme\",\n  \"futuristik\",\n  \"futuristis\",\n  \"futurolog\",\n  \"futurologi\",\n  \"futurologis\",\n  \"fyord\",\n  \"gaba-gaba\",\n  \"gabah\",\n  \"gabai\",\n  \"gabak\",\n  \"gabardin\",\n  \"gabas\",\n  \"gabir\",\n  \"gableg\",\n  \"gablek\",\n  \"gabor\",\n  \"gabro\",\n  \"gabruk\",\n  \"gabuk\",\n  \"gabung\",\n  \"gabus\",\n  \"gaco\",\n  \"gacok\",\n  \"gacong\",\n  \"gada\",\n  \"gadai\",\n  \"gadamala\",\n  \"gadang\",\n  \"gading\",\n  \"gadis\",\n  \"gado\",\n  \"gadolinit\",\n  \"gadolinium\",\n  \"gadon\",\n  \"gaduh\",\n  \"gaduk\",\n  \"gadung\",\n  \"gadungan\",\n  \"gaek\",\n  \"gaet\",\n  \"gafar\",\n  \"gaflah\",\n  \"gaflat\",\n  \"gaftar\",\n  \"gafur\",\n  \"gaga\",\n  \"gagah\",\n  \"gagai\",\n  \"gagak\",\n  \"gagal\",\n  \"gagang\",\n  \"gagap\",\n  \"gagas\",\n  \"gagau\",\n  \"gagu\",\n  \"gaguk\",\n  \"gah\",\n  \"gaham\",\n  \"gahar\",\n  \"gahara\",\n  \"gahari\",\n  \"gaharu\",\n  \"gai\",\n  \"gaib\",\n  \"gail\",\n  \"gain\",\n  \"gaing\",\n  \"gairah\",\n  \"gait\",\n  \"gajah\",\n  \"gajak\",\n  \"gaji\",\n  \"gajih\",\n  \"gajul\",\n  \"gajus\",\n  \"gakang\",\n  \"gakari\",\n  \"gala\",\n  \"galaba\",\n  \"galaganjur\",\n  \"galagasi\",\n  \"galah\",\n  \"galai\",\n  \"galak\",\n  \"galaksi\",\n  \"galaktometer\",\n  \"galaktorea\",\n  \"galaktosa\",\n  \"galaktosemia\",\n  \"galaktosuria\",\n  \"galan\",\n  \"galang\",\n  \"galanggasi\",\n  \"galar\",\n  \"galas\",\n  \"galat\",\n  \"galau\",\n  \"galbani\",\n  \"galeng\",\n  \"galeri\",\n  \"galgal\",\n  \"gali\",\n  \"galias\",\n  \"galib\",\n  \"galibut\",\n  \"galih\",\n  \"galiot\",\n  \"galir\",\n  \"galium\",\n  \"galiung\",\n  \"galon\",\n  \"galu-galu\",\n  \"galuh\",\n  \"galung\",\n  \"galungan\",\n  \"galur\",\n  \"galvanis\",\n  \"galvanisasi\",\n  \"galvanometer\",\n  \"galvanometri\",\n  \"galvanoskop\",\n  \"galyas\",\n  \"gam\",\n  \"gama\",\n  \"gamak\",\n  \"gamal\",\n  \"gamalisasi\",\n  \"gamam\",\n  \"gaman\",\n  \"gamang\",\n  \"gamat\",\n  \"gambang\",\n  \"gambar\",\n  \"gambas\",\n  \"gambir\",\n  \"gamblang\",\n  \"gambling\",\n  \"gambuh\",\n  \"gambus\",\n  \"gambut\",\n  \"gambyong\",\n  \"gamelan\",\n  \"gamet\",\n  \"gametangium\",\n  \"gametofit\",\n  \"gametogenesis\",\n  \"gametosit\",\n  \"gamik\",\n  \"gamis\",\n  \"gamit\",\n  \"gamma\",\n  \"gamopetal\",\n  \"gamosepal\",\n  \"gampang\",\n  \"gampar\",\n  \"gamparan\",\n  \"gamping\",\n  \"gamuh\",\n  \"gana\",\n  \"gana-gini\",\n  \"ganal\",\n  \"ganang\",\n  \"ganar\",\n  \"ganas\",\n  \"gancang\",\n  \"gancar\",\n  \"ganco\",\n  \"gancu\",\n  \"ganda\",\n  \"gandal\",\n  \"gandapura\",\n  \"gandar\",\n  \"gandaria\",\n  \"gandarukem\",\n  \"gandarusa\",\n  \"gandarwa\",\n  \"gandasturi\",\n  \"gandasuli\",\n  \"gandek\",\n  \"gandem\",\n  \"ganden\",\n  \"gandeng\",\n  \"gandes\",\n  \"gandewa\",\n  \"gandi\",\n  \"gandik\",\n  \"gandin\",\n  \"ganding\",\n  \"gandok\",\n  \"gandola\",\n  \"gandos\",\n  \"gandringan\",\n  \"gandrung\",\n  \"gandu\",\n  \"ganduh\",\n  \"gandul\",\n  \"gandum\",\n  \"gandung\",\n  \"gang\",\n  \"ganggam\",\n  \"ganggang\",\n  \"ganggu\",\n  \"ganggut\",\n  \"ganglion\",\n  \"gangsa\",\n  \"gangsal\",\n  \"gangsar\",\n  \"gangsi\",\n  \"gangsir\",\n  \"gangster\",\n  \"gani\",\n  \"ganih\",\n  \"ganimah\",\n  \"ganja\",\n  \"ganjak\",\n  \"ganjal\",\n  \"ganjar\",\n  \"ganjat\",\n  \"ganjen\",\n  \"ganjil\",\n  \"ganjing\",\n  \"ganjling\",\n  \"ganjur\",\n  \"ganoid\",\n  \"gantal\",\n  \"gantang\",\n  \"gantar\",\n  \"gantel\",\n  \"ganteng\",\n  \"ganti\",\n  \"gantih\",\n  \"gantilan\",\n  \"ganting\",\n  \"gantol\",\n  \"gantole\",\n  \"gantung\",\n  \"ganyah\",\n  \"ganyang\",\n  \"ganyar\",\n  \"ganyong\",\n  \"ganyut\",\n  \"gaok\",\n  \"gap\",\n  \"gapah\",\n  \"gapah-gopoh\",\n  \"gapai\",\n  \"gapil\",\n  \"gapit\",\n  \"gaple\",\n  \"gaplek\",\n  \"gaplok\",\n  \"gapuk\",\n  \"gapura\",\n  \"gar\",\n  \"gara-gara\",\n  \"garah\",\n  \"garai\",\n  \"garam\",\n  \"garan\",\n  \"garang\",\n  \"garangan\",\n  \"garansi\",\n  \"garap\",\n  \"garasi\",\n  \"garau\",\n  \"garba\",\n  \"garbarata\",\n  \"garbis\",\n  \"garda\",\n  \"gardan\",\n  \"gardu\",\n  \"garebek\",\n  \"gari\",\n  \"garib\",\n  \"garindin\",\n  \"garing\",\n  \"garis\",\n  \"garit\",\n  \"garizah\",\n  \"garmen\",\n  \"garnet\",\n  \"garnis\",\n  \"garnisun\",\n  \"garong\",\n  \"garpu\",\n  \"garu\",\n  \"garuda\",\n  \"garuk\",\n  \"garung\",\n  \"garut\",\n  \"garwa\",\n  \"gas\",\n  \"gasab\",\n  \"gasak\",\n  \"gasal\",\n  \"gasang\",\n  \"gasatrin\",\n  \"gasifikasi\",\n  \"gasing\",\n  \"gasket\",\n  \"gasolin\",\n  \"gasometer\",\n  \"gaster\",\n  \"gastrektomi\",\n  \"gastrin\",\n  \"gastritis\",\n  \"gastroenteritis\",\n  \"gastroenterolog\",\n  \"gastroenterologi\",\n  \"gastrointestinal\",\n  \"gastronomi\",\n  \"gastrula\",\n  \"gastrulasi\",\n  \"gatal\",\n  \"gatot\",\n  \"gatra\",\n  \"gatrik\",\n  \"gatuk\",\n  \"gauk\",\n  \"gaukang\",\n  \"gaul\",\n  \"gaun\",\n  \"gaung\",\n  \"gaut\",\n  \"gawai\",\n  \"gawal\",\n  \"gawan\",\n  \"gawang\",\n  \"gawar\",\n  \"gawat\",\n  \"gawir\",\n  \"gaya\",\n  \"gayal\",\n  \"gayam\",\n  \"gayang\",\n  \"gayat\",\n  \"gayau\",\n  \"gayem\",\n  \"gayeng\",\n  \"gayuh\",\n  \"gayuk\",\n  \"gayun\",\n  \"gayung\",\n  \"gayut\",\n  \"gaz\",\n  \"gazal\",\n  \"gebah\",\n  \"gebang\",\n  \"gebar\",\n  \"gebeng\",\n  \"geber\",\n  \"geblak\",\n  \"geblek\",\n  \"geblok\",\n  \"gebogan\",\n  \"gebok\",\n  \"gebos\",\n  \"gebot\",\n  \"gebrak\",\n  \"gebu\",\n  \"gebuk\",\n  \"gebung\",\n  \"gebyah-uyah\",\n  \"gebyar\",\n  \"gebyur\",\n  \"gecar\",\n  \"gecek\",\n  \"gecer\",\n  \"gecul\",\n  \"gedabah\",\n  \"gedana-gedini\",\n  \"gedang\",\n  \"gede\",\n  \"gedebak-gedebuk\",\n  \"gedebar-gedebur\",\n  \"gedebeg\",\n  \"gedebok\",\n  \"gedebuk\",\n  \"gedebung\",\n  \"gedek\",\n  \"gedembai\",\n  \"gedembal\",\n  \"gedempol\",\n  \"gedeng\",\n  \"gedi\",\n  \"gedik\",\n  \"gedok\",\n  \"gedombak\",\n  \"gedombrongan\",\n  \"gedong\",\n  \"gedor\",\n  \"gedubang\",\n  \"gedung\",\n  \"geduyut\",\n  \"gegabah\",\n  \"gegadan\",\n  \"gegai\",\n  \"gegak\",\n  \"gegala\",\n  \"gegaman\",\n  \"gegana\",\n  \"gegaokan\",\n  \"gegap\",\n  \"gegar\",\n  \"gegares\",\n  \"gegas\",\n  \"gegat\",\n  \"gegau\",\n  \"gegep\",\n  \"geger\",\n  \"gegetar\",\n  \"gegetun\",\n  \"gegisik\",\n  \"gegua\",\n  \"geiger\",\n  \"geiser\",\n  \"gejah\",\n  \"gejala\",\n  \"gejolak\",\n  \"gejos\",\n  \"gejuju\",\n  \"gel\",\n  \"gela\",\n  \"gelabah\",\n  \"gelabir\",\n  \"gelabur\",\n  \"geladak\",\n  \"geladeri\",\n  \"geladi\",\n  \"geladir\",\n  \"geladrah\",\n  \"gelagah\",\n  \"gelagap\",\n  \"gelagar\",\n  \"gelagat\",\n  \"gelak\",\n  \"gelakak\",\n  \"gelalar\",\n  \"gelam\",\n  \"gelama\",\n  \"gelamai\",\n  \"gelambir\",\n  \"gelandang\",\n  \"gelandot\",\n  \"gelang\",\n  \"gelanggang\",\n  \"gelangsar\",\n  \"gelantang\",\n  \"gelanting\",\n  \"gelantung\",\n  \"gelap\",\n  \"gelapung\",\n  \"gelar\",\n  \"gelas\",\n  \"gelasak\",\n  \"gelasir\",\n  \"gelatak\",\n  \"gelatik\",\n  \"gelatin\",\n  \"gelatuk\",\n  \"gelayangan\",\n  \"gelayar\",\n  \"gelayut\",\n  \"gelebah\",\n  \"gelebap\",\n  \"gelebar\",\n  \"geleber\",\n  \"gelebuk\",\n  \"geleca\",\n  \"gelecik\",\n  \"geledah\",\n  \"geledang\",\n  \"geledek\",\n  \"geleding\",\n  \"geledur\",\n  \"gelegah\",\n  \"gelegak\",\n  \"gelegar\",\n  \"gelegata\",\n  \"gelek\",\n  \"gelekak\",\n  \"gelekek\",\n  \"gelema\",\n  \"gelemat\",\n  \"gelemberan\",\n  \"gelembong\",\n  \"gelembung\",\n  \"gelembur\",\n  \"gelempang\",\n  \"gelemprang\",\n  \"gelenang\",\n  \"gelendo\",\n  \"gelendong\",\n  \"gelendot\",\n  \"geleng\",\n  \"gelenggang\",\n  \"gelentang\",\n  \"gelenting\",\n  \"gelenyar\",\n  \"gelepai\",\n  \"gelepar\",\n  \"gelepek\",\n  \"gelepot\",\n  \"gelepung\",\n  \"gelepur\",\n  \"geler\",\n  \"gelesek\",\n  \"geleser\",\n  \"gelesot\",\n  \"geleta\",\n  \"geletak\",\n  \"geletar\",\n  \"geletek\",\n  \"geletik\",\n  \"geleting\",\n  \"geletis\",\n  \"geletuk\",\n  \"geli\",\n  \"geliang\",\n  \"geliat\",\n  \"gelibir\",\n  \"gelicik\",\n  \"geliga\",\n  \"geligi\",\n  \"geligin\",\n  \"geligis\",\n  \"geligit\",\n  \"gelignit\",\n  \"gelimang\",\n  \"gelimantang\",\n  \"gelimbir\",\n  \"gelimir\",\n  \"gelimpang\",\n  \"gelimun\",\n  \"gelincir\",\n  \"gelincuh\",\n  \"gelinding\",\n  \"gelinggam\",\n  \"gelinggaman\",\n  \"gelinggang\",\n  \"gelingsir\",\n  \"gelinjang\",\n  \"gelintang\",\n  \"gelintar\",\n  \"gelintin\",\n  \"gelinting\",\n  \"gelintir\",\n  \"gelipar\",\n  \"gelisah\",\n  \"gelita\",\n  \"gelitar\",\n  \"gelitik\",\n  \"gelo\",\n  \"gelobak\",\n  \"gelobok\",\n  \"gelocak\",\n  \"gelodar\",\n  \"gelodok\",\n  \"gelogok\",\n  \"gelohok\",\n  \"gelojoh\",\n  \"gelomang\",\n  \"gelombang\",\n  \"gelompar\",\n  \"gelondong\",\n  \"geloneng\",\n  \"gelonggong\",\n  \"gelongsor\",\n  \"gelontor\",\n  \"gelopak\",\n  \"gelora\",\n  \"gelosang\",\n  \"geloso\",\n  \"gelosok\",\n  \"gelotak\",\n  \"geluduk\",\n  \"geluga\",\n  \"gelugu\",\n  \"gelugur\",\n  \"gelugut\",\n  \"geluh\",\n  \"geluk\",\n  \"gelulur\",\n  \"gelumang\",\n  \"gelumat\",\n  \"geluncur\",\n  \"gelundung\",\n  \"gelung\",\n  \"gelup\",\n  \"gelupur\",\n  \"gelut\",\n  \"gema\",\n  \"gemah\",\n  \"gemak\",\n  \"gemal\",\n  \"geman\",\n  \"gemang\",\n  \"gemap\",\n  \"gemar\",\n  \"gemas\",\n  \"gemaung\",\n  \"gemawan\",\n  \"gembak\",\n  \"gembala\",\n  \"gembar-gembor\",\n  \"gembel\",\n  \"gembeng\",\n  \"gembil\",\n  \"gembili\",\n  \"gembira\",\n  \"gemblak\",\n  \"gembleng\",\n  \"gemblong\",\n  \"gemblung\",\n  \"gembok\",\n  \"gembol\",\n  \"gembolo\",\n  \"gembong\",\n  \"gembor\",\n  \"gembos\",\n  \"gembreng\",\n  \"gembrot\",\n  \"gembul\",\n  \"gembung\",\n  \"gembur\",\n  \"gembus\",\n  \"gembut\",\n  \"gemebyar\",\n  \"gemelentam\",\n  \"gemeletak\",\n  \"gemeletap\",\n  \"gemeletek\",\n  \"gemeletuk\",\n  \"gemelugut\",\n  \"gementam\",\n  \"gementar\",\n  \"gemercak\",\n  \"gemercik\",\n  \"gemerencang\",\n  \"gemerencik\",\n  \"gemerencing\",\n  \"gemerencung\",\n  \"gemeresak\",\n  \"gemeresik\",\n  \"gemeretak\",\n  \"gemeretuk\",\n  \"gemeretup\",\n  \"gemerlap\",\n  \"gemertak\",\n  \"gemertuk\",\n  \"gemerusuk\",\n  \"gemetar\",\n  \"gemi\",\n  \"gemik\",\n  \"gemilang\",\n  \"gemilap\",\n  \"geming\",\n  \"gemini\",\n  \"gemintang\",\n  \"geminte\",\n  \"gemirang\",\n  \"gempa\",\n  \"gempal\",\n  \"gempar\",\n  \"gempil\",\n  \"gempita\",\n  \"gempol\",\n  \"gempor\",\n  \"gempul-gempul\",\n  \"gempur\",\n  \"gemrobyos\",\n  \"gemuk\",\n  \"gemul\",\n  \"gemulai\",\n  \"gemulung\",\n  \"gemuntur\",\n  \"gemuruh\",\n  \"gen\",\n  \"gena\",\n  \"genah\",\n  \"genahar\",\n  \"genang\",\n  \"genap\",\n  \"gencar\",\n  \"gencat\",\n  \"gencel\",\n  \"gencer\",\n  \"gencet\",\n  \"gencir\",\n  \"gendak\",\n  \"gendala\",\n  \"gendam\",\n  \"gendang\",\n  \"gendar\",\n  \"gendarmeri\",\n  \"gendeng\",\n  \"gender\",\n  \"genderang\",\n  \"genderuwo\",\n  \"gendewa\",\n  \"gending\",\n  \"gendis\",\n  \"gendon\",\n  \"gendong\",\n  \"genduk\",\n  \"gendut\",\n  \"genealogi\",\n  \"genealogis\",\n  \"genegin\",\n  \"geneng\",\n  \"generalis\",\n  \"generalisasi\",\n  \"generalisimo\",\n  \"generasi\",\n  \"generatif\",\n  \"generator\",\n  \"generik\",\n  \"genesis\",\n  \"genetika\",\n  \"genetis\",\n  \"geng\",\n  \"genggam\",\n  \"genggang\",\n  \"genggong\",\n  \"gengsah\",\n  \"gengsi\",\n  \"gengsot\",\n  \"genial\",\n  \"genialitas\",\n  \"genikulum\",\n  \"genis\",\n  \"genit\",\n  \"genital\",\n  \"genitalia\",\n  \"genitif\",\n  \"genius\",\n  \"genjah\",\n  \"genjang\",\n  \"genjang-genjot\",\n  \"genjer\",\n  \"genjik\",\n  \"genjot\",\n  \"genjrang\",\n  \"genjring\",\n  \"genjur\",\n  \"genom\",\n  \"genosida\",\n  \"genotipe\",\n  \"genre\",\n  \"genta\",\n  \"gentala\",\n  \"gentar\",\n  \"gentas\",\n  \"gentat\",\n  \"gentayang\",\n  \"gentel\",\n  \"genteng\",\n  \"gentian\",\n  \"genting\",\n  \"gentong\",\n  \"gentrifikasi\",\n  \"gentur\",\n  \"gentus\",\n  \"genus\",\n  \"genyot\",\n  \"geobotani\",\n  \"geodesi\",\n  \"geofisika\",\n  \"geofisis\",\n  \"geofon\",\n  \"geognosi\",\n  \"geografi\",\n  \"geografis\",\n  \"geohidrologi\",\n  \"geokimia\",\n  \"geokronologi\",\n  \"geolog\",\n  \"geologi\",\n  \"geologis\",\n  \"geomansi\",\n  \"geometri\",\n  \"geometris\",\n  \"geomorfologi\",\n  \"geonomi\",\n  \"geopolitik\",\n  \"geosentris\",\n  \"geosinkronis\",\n  \"geostasioner\",\n  \"geostatika\",\n  \"geoteknik\",\n  \"geoteknologi\",\n  \"geotermal\",\n  \"geotermi\",\n  \"geotermometer\",\n  \"gepeng\",\n  \"gepit\",\n  \"geplak\",\n  \"gepok\",\n  \"geprak\",\n  \"gepuk\",\n  \"gera\",\n  \"gerabah\",\n  \"gerabak\",\n  \"gerabang\",\n  \"geradi\",\n  \"geragai\",\n  \"geragap\",\n  \"geragas\",\n  \"geragau\",\n  \"geragih\",\n  \"geragot\",\n  \"geraguk\",\n  \"gerah\",\n  \"geraham\",\n  \"gerai\",\n  \"gerak\",\n  \"geram\",\n  \"geraman\",\n  \"geramang\",\n  \"geramsut\",\n  \"geramus\",\n  \"gerang\",\n  \"gerangan\",\n  \"geranggang\",\n  \"geranium\",\n  \"gerantak\",\n  \"gerantang\",\n  \"geranyam\",\n  \"gerapai\",\n  \"gerapu\",\n  \"gerat\",\n  \"geratak\",\n  \"geratih\",\n  \"gerau\",\n  \"gerawan\",\n  \"gerawat\",\n  \"gerayah\",\n  \"gerayang\",\n  \"gerbak\",\n  \"gerbang\",\n  \"gerbas-gerbus\",\n  \"gerbera\",\n  \"gerbong\",\n  \"gerbus\",\n  \"gerda\",\n  \"gerdam\",\n  \"gerdan\",\n  \"gerdum\",\n  \"gerebek\",\n  \"gerecak\",\n  \"gerecok\",\n  \"gereget\",\n  \"gereh\",\n  \"gereja\",\n  \"gerejani\",\n  \"gerejawi\",\n  \"gerek\",\n  \"geremet\",\n  \"gerempang\",\n  \"gerencang\",\n  \"gerendel\",\n  \"gerendeng\",\n  \"gerenek\",\n  \"gereneng\",\n  \"gereng-gereng\",\n  \"gerengseng\",\n  \"gerenik\",\n  \"gerenjeng\",\n  \"gerenjet\",\n  \"gerentang\",\n  \"gerenyau\",\n  \"gerenyeng\",\n  \"gerenyet\",\n  \"gerenying\",\n  \"gerenyit\",\n  \"gerenyot\",\n  \"gerepe\",\n  \"gerepek\",\n  \"gerepes\",\n  \"geresek\",\n  \"geret\",\n  \"geretak\",\n  \"geretang\",\n  \"gergaji\",\n  \"gergajul\",\n  \"gergasi\",\n  \"gergeran\",\n  \"gerha\",\n  \"gerhana\",\n  \"geriak\",\n  \"geriak-geriuk\",\n  \"geriap\",\n  \"geriatrik\",\n  \"geribik\",\n  \"gericau\",\n  \"geridip\",\n  \"geridit\",\n  \"geriditpidit\",\n  \"gerigi\",\n  \"gerigik\",\n  \"gerigis\",\n  \"gerih\",\n  \"gerik\",\n  \"gerilya\",\n  \"gerim\",\n  \"gerimis\",\n  \"gerincing\",\n  \"gerinda\",\n  \"gerindin\",\n  \"gerinding\",\n  \"gering\",\n  \"geringging\",\n  \"geringgingan\",\n  \"geringsing\",\n  \"gerinjal\",\n  \"gerinjam\",\n  \"gerinting\",\n  \"gerinyau\",\n  \"gerip\",\n  \"geripir\",\n  \"geripis\",\n  \"gerisik\",\n  \"gerising\",\n  \"gerit\",\n  \"geriuk\",\n  \"gerlap\",\n  \"gerlip\",\n  \"germang\",\n  \"germanium\",\n  \"germinal\",\n  \"germisida\",\n  \"germo\",\n  \"germut\",\n  \"gero\",\n  \"geroak\",\n  \"gerobak\",\n  \"gerobok\",\n  \"gerobyak\",\n  \"gerocok\",\n  \"gerodak\",\n  \"gerogol\",\n  \"gerogot\",\n  \"gerohok\",\n  \"gerohong\",\n  \"gerojok\",\n  \"gerombol\",\n  \"gerombong\",\n  \"gerompok\",\n  \"gerong\",\n  \"geronggang\",\n  \"geronium\",\n  \"gerontokrasi\",\n  \"gerontol\",\n  \"gerontologi\",\n  \"geronyot\",\n  \"geropes\",\n  \"geropyok\",\n  \"geros\",\n  \"gerosak\",\n  \"gerot-gerot\",\n  \"gerowong\",\n  \"gerowot\",\n  \"gerpol\",\n  \"gersak\",\n  \"gersang\",\n  \"gersik\",\n  \"gertak\",\n  \"gertik\",\n  \"gertuk\",\n  \"geru\",\n  \"gerugut\",\n  \"geruh\",\n  \"geruit\",\n  \"gerumit\",\n  \"gerumpung\",\n  \"gerumuk\",\n  \"gerumut\",\n  \"gerun\",\n  \"gerundang\",\n  \"gerundel\",\n  \"gerung\",\n  \"gerunggung\",\n  \"gerunyam\",\n  \"gerup\",\n  \"gerupis\",\n  \"gerupuk\",\n  \"gerus\",\n  \"gerut\",\n  \"gerutu\",\n  \"gerutup\",\n  \"gerutus\",\n  \"gesa\",\n  \"gesek\",\n  \"gesel\",\n  \"geser\",\n  \"gesit\",\n  \"gesper\",\n  \"gestikulasi\",\n  \"geta\",\n  \"getah\",\n  \"getak-getuk\",\n  \"getang\",\n  \"getap\",\n  \"getar\",\n  \"getas\",\n  \"getek\",\n  \"getem-getem\",\n  \"geti-geti\",\n  \"getik\",\n  \"getil\",\n  \"getir\",\n  \"getis\",\n  \"getok\",\n  \"getol\",\n  \"getu\",\n  \"getuk\",\n  \"getun\",\n  \"geulis\",\n  \"gewang\",\n  \"gial\",\n  \"giam\",\n  \"giat\",\n  \"gibah\",\n  \"gibang\",\n  \"gibas\",\n  \"giblet\",\n  \"gibtah\",\n  \"gidik\",\n  \"gigahertz\",\n  \"gigantisme\",\n  \"gigi\",\n  \"gigih\",\n  \"gigil\",\n  \"gigir\",\n  \"gigis\",\n  \"gigit\",\n  \"gigolo\",\n  \"gila\",\n  \"gilang\",\n  \"gilap\",\n  \"gilas\",\n  \"gilbet\",\n  \"gili\",\n  \"gilik\",\n  \"giling\",\n  \"gilir\",\n  \"gim\",\n  \"gimbal\",\n  \"gimnasium\",\n  \"gimnastik\",\n  \"gimpal\",\n  \"gin\",\n  \"ginang\",\n  \"gincu\",\n  \"ginding\",\n  \"ginekolog\",\n  \"ginekologi\",\n  \"ginekomasti\",\n  \"ginesium\",\n  \"gingivitis\",\n  \"ginglimus\",\n  \"gingsir\",\n  \"gingsul\",\n  \"ginjal\",\n  \"ginjean\",\n  \"ginkang\",\n  \"ginogenesis\",\n  \"ginseng\",\n  \"gips\",\n  \"gipsi\",\n  \"gir\",\n  \"girah\",\n  \"giral\",\n  \"girang\",\n  \"girap-girap\",\n  \"giras\",\n  \"girasol\",\n  \"giri\",\n  \"girik\",\n  \"girikan\",\n  \"giring\",\n  \"giris\",\n  \"giro\",\n  \"giroskop\",\n  \"girostat\",\n  \"girostatika\",\n  \"gisar\",\n  \"gisik\",\n  \"gisil\",\n  \"gita\",\n  \"gitapati\",\n  \"gitar\",\n  \"gitaris\",\n  \"gites\",\n  \"gitik\",\n  \"gitok\",\n  \"giuk\",\n  \"giur\",\n  \"giwang\",\n  \"gizi\",\n  \"glabela\",\n  \"gladiator\",\n  \"gladiol\",\n  \"glamor\",\n  \"glandula\",\n  \"glans\",\n  \"glasial\",\n  \"glasir\",\n  \"glasnos\",\n  \"glaukoma\",\n  \"glegek\",\n  \"glenik\",\n  \"glenoid\",\n  \"gletser\",\n  \"glidik\",\n  \"glikogen\",\n  \"glikogenesis\",\n  \"glikogenolisis\",\n  \"glikol\",\n  \"glikolisis\",\n  \"glikosid\",\n  \"glikosida\",\n  \"glikosidasa\",\n  \"glikosidase\",\n  \"glikosuria\",\n  \"gliserida\",\n  \"gliserol\",\n  \"global\",\n  \"globalisasi\",\n  \"globalisme\",\n  \"globe\",\n  \"globulin\",\n  \"globus\",\n  \"glokidium\",\n  \"glomerulus\",\n  \"glomus\",\n  \"glosarium\",\n  \"glosem\",\n  \"glosematik\",\n  \"glositas\",\n  \"glositis\",\n  \"glotal\",\n  \"glotalisasi\",\n  \"glotis\",\n  \"glukagon\",\n  \"glukosa\",\n  \"glukosan\",\n  \"glukosida\",\n  \"gluten\",\n  \"gnomon\",\n  \"goak\",\n  \"gob\",\n  \"goba\",\n  \"gobak\",\n  \"gobang\",\n  \"gobar\",\n  \"gobek\",\n  \"gobet\",\n  \"goblok\",\n  \"gocap\",\n  \"gocek\",\n  \"gocoh\",\n  \"goda\",\n  \"godak\",\n  \"godam\",\n  \"godek\",\n  \"godok\",\n  \"godong\",\n  \"godot\",\n  \"goel\",\n  \"gogoh\",\n  \"gogok\",\n  \"gogos\",\n  \"gogrok\",\n  \"gohok\",\n  \"gohong\",\n  \"gojek\",\n  \"gojlok\",\n  \"gokar\",\n  \"gol\",\n  \"golak\",\n  \"golak-galik\",\n  \"golbi\",\n  \"golek\",\n  \"goleng\",\n  \"goler\",\n  \"golf\",\n  \"golok\",\n  \"golong\",\n  \"golput\",\n  \"gom\",\n  \"gombak\",\n  \"gombal\",\n  \"gombang\",\n  \"gombeng\",\n  \"gombrang\",\n  \"gombroh\",\n  \"gombyok\",\n  \"gompal\",\n  \"gompiok\",\n  \"gonad\",\n  \"gondang\",\n  \"gondas-gandes\",\n  \"gondok\",\n  \"gondol\",\n  \"gondola\",\n  \"gondong\",\n  \"gondorukem\",\n  \"gondrong\",\n  \"gong\",\n  \"gonggo\",\n  \"gonggok\",\n  \"gonggong\",\n  \"gongli\",\n  \"gongseng\",\n  \"gongyo\",\n  \"goni\",\n  \"gonidium\",\n  \"goniometri\",\n  \"gonjak\",\n  \"gonjang\",\n  \"gonjang-ganjing\",\n  \"gonjing\",\n  \"gonjlang\",\n  \"gonjlang-ganjling\",\n  \"gonjok\",\n  \"gonjong\",\n  \"gonokokus\",\n  \"gonore\",\n  \"gonrang\",\n  \"gontaganti\",\n  \"gontai\",\n  \"gontok\",\n  \"gonyak\",\n  \"gonyeh\",\n  \"gonyel\",\n  \"gonyoh\",\n  \"gopek\",\n  \"gopoh\",\n  \"gorap\",\n  \"gorden\",\n  \"gorek\",\n  \"goreng\",\n  \"gores\",\n  \"gori\",\n  \"gorila\",\n  \"gorilya\",\n  \"goroh\",\n  \"gorok\",\n  \"gorong-gorong\",\n  \"gosan\",\n  \"gosip\",\n  \"gosok\",\n  \"gosong\",\n  \"gospel\",\n  \"got\",\n  \"gotes\",\n  \"gotik\",\n  \"gotong\",\n  \"gotri\",\n  \"gotrok\",\n  \"gotun\",\n  \"gowok\",\n  \"goyah\",\n  \"goyak\",\n  \"goyang\",\n  \"grabadan\",\n  \"grad\",\n  \"gradasi\",\n  \"gradien\",\n  \"gradual\",\n  \"gradualisme\",\n  \"graf\",\n  \"grafem\",\n  \"grafemik\",\n  \"grafemis\",\n  \"grafetik\",\n  \"grafik\",\n  \"grafika\",\n  \"grafis\",\n  \"grafit\",\n  \"grafitasi\",\n  \"grafolog\",\n  \"grafologi\",\n  \"graha\",\n  \"grahita\",\n  \"gram\",\n  \"gramatika\",\n  \"gramatikal\",\n  \"grambyang\",\n  \"gramofon\",\n  \"granat\",\n  \"granit\",\n  \"granolitik\",\n  \"granula\",\n  \"granulasi\",\n  \"granulosit\",\n  \"grapyak\",\n  \"grasi\",\n  \"gratak\",\n  \"gratifikasi\",\n  \"gratis\",\n  \"gravel\",\n  \"graver\",\n  \"gravimeter\",\n  \"gravitas\",\n  \"gravitasi\",\n  \"grecok\",\n  \"gregarius\",\n  \"grehon\",\n  \"grempel\",\n  \"gres\",\n  \"gresek-gresek\",\n  \"gria\",\n  \"grip\",\n  \"griya\",\n  \"grogi\",\n  \"gronjong\",\n  \"gros\",\n  \"grosir\",\n  \"grup\",\n  \"gruwung\",\n  \"gua\",\n  \"gual\",\n  \"guam\",\n  \"guanidina\",\n  \"guanin\",\n  \"guanina\",\n  \"guano\",\n  \"guar\",\n  \"gubah\",\n  \"gubal\",\n  \"gubang\",\n  \"gubel\",\n  \"gubernemen\",\n  \"gubernur\",\n  \"gubit\",\n  \"gubris\",\n  \"gubuk\",\n  \"guci\",\n  \"gudam\",\n  \"gudang\",\n  \"gudangan\",\n  \"gude\",\n  \"gudeg\",\n  \"guderi\",\n  \"gudi\",\n  \"gudik\",\n  \"gudu-gudu\",\n  \"gue\",\n  \"gugah\",\n  \"gugat\",\n  \"gugu\",\n  \"guguh\",\n  \"guguk\",\n  \"gugup\",\n  \"gugur\",\n  \"gugus\",\n  \"guit\",\n  \"gujirak\",\n  \"gujirat\",\n  \"gukakas\",\n  \"gul\",\n  \"gula\",\n  \"gulah\",\n  \"gulai\",\n  \"gulali\",\n  \"gulam\",\n  \"gulambai\",\n  \"gulana\",\n  \"gulang-gulang\",\n  \"gulat\",\n  \"guli\",\n  \"guliga\",\n  \"guling\",\n  \"gulir\",\n  \"gulita\",\n  \"gulma\",\n  \"gulud\",\n  \"gulung\",\n  \"gulut\",\n  \"gum\",\n  \"guma\",\n  \"gumal\",\n  \"gumam\",\n  \"gumba\",\n  \"gumbaan\",\n  \"gumbang\",\n  \"gumbar\",\n  \"gumboro\",\n  \"gumbuk\",\n  \"gumebruk\",\n  \"gumelaran\",\n  \"gumpal\",\n  \"gumpil\",\n  \"gumuk\",\n  \"gumul\",\n  \"gumun\",\n  \"gun\",\n  \"guna\",\n  \"gunawan\",\n  \"guncang\",\n  \"gunci\",\n  \"gundah\",\n  \"gundal\",\n  \"gundala\",\n  \"gundang\",\n  \"gundar\",\n  \"gundi\",\n  \"gundik\",\n  \"gundu\",\n  \"gunduk\",\n  \"gundul\",\n  \"gung\",\n  \"gunggung\",\n  \"gunjai\",\n  \"gunjing\",\n  \"gunolugu\",\n  \"gunrit\",\n  \"gunseikan\",\n  \"guntai\",\n  \"guntak\",\n  \"guntang\",\n  \"guntil\",\n  \"gunting\",\n  \"guntung\",\n  \"guntur\",\n  \"gunung\",\n  \"gunyam\",\n  \"gup\",\n  \"gurab\",\n  \"gurah\",\n  \"guram\",\n  \"gurami\",\n  \"gurat\",\n  \"gurau\",\n  \"gurdan\",\n  \"gurdi\",\n  \"guri\",\n  \"gurih\",\n  \"gurik\",\n  \"gurindam\",\n  \"guring\",\n  \"gurit\",\n  \"gurita\",\n  \"gurnadur\",\n  \"guru\",\n  \"gurub\",\n  \"guruh\",\n  \"guruk\",\n  \"gurun\",\n  \"gurung\",\n  \"gurur\",\n  \"gus\",\n  \"gusah\",\n  \"gusar\",\n  \"gusel\",\n  \"gusi\",\n  \"gusrek\",\n  \"gusti\",\n  \"gusul\",\n  \"gusur\",\n  \"gutasi\",\n  \"gutik\",\n  \"gutuk\",\n  \"guyon\",\n  \"guyub\",\n  \"guyur\",\n  \"habenula\",\n  \"habib\",\n  \"habibi\",\n  \"habibulah\",\n  \"habibullah\",\n  \"habis\",\n  \"habitat\",\n  \"habituasi\",\n  \"habitus\",\n  \"habluk\",\n  \"hablun\",\n  \"hablur\",\n  \"habsyi\",\n  \"habuan\",\n  \"habuk\",\n  \"habung\",\n  \"had\",\n  \"hadanah\",\n  \"hadap\",\n  \"hadas\",\n  \"hadat\",\n  \"hadiah\",\n  \"hadir\",\n  \"hadirat\",\n  \"hadirin\",\n  \"hadis\",\n  \"hadron\",\n  \"hafal\",\n  \"hafiz\",\n  \"hafnium\",\n  \"hagiografi\",\n  \"hahnium\",\n  \"hai\",\n  \"haid\",\n  \"haik\",\n  \"haiking\",\n  \"haiku\",\n  \"hail\",\n  \"hailai\",\n  \"haj\",\n  \"hajah\",\n  \"hajar\",\n  \"hajat\",\n  \"haji\",\n  \"hajib\",\n  \"hajim\",\n  \"hajis\",\n  \"hak\",\n  \"hakaik\",\n  \"hakam\",\n  \"hakikat\",\n  \"hakiki\",\n  \"hakim\",\n  \"hakimah\",\n  \"hakul\",\n  \"hakulah\",\n  \"hakulyakin\",\n  \"hal\",\n  \"hala\",\n  \"halai-balai\",\n  \"halaik\",\n  \"halakah\",\n  \"halal\",\n  \"halalbihalal\",\n  \"halaman\",\n  \"halang\",\n  \"halau\",\n  \"halazon\",\n  \"halba\",\n  \"haleluya\",\n  \"halia\",\n  \"halilintar\",\n  \"halim\",\n  \"halimbubu\",\n  \"halimun\",\n  \"halimunan\",\n  \"halipan\",\n  \"halitosis\",\n  \"halkah\",\n  \"halma\",\n  \"halo\",\n  \"halobion\",\n  \"halofili\",\n  \"halofit\",\n  \"halofita\",\n  \"halofob\",\n  \"halogen\",\n  \"halogenasi\",\n  \"halotan\",\n  \"halsduk\",\n  \"halte\",\n  \"halter\",\n  \"haluan\",\n  \"halus\",\n  \"halusinasi\",\n  \"halusinogen\",\n  \"halwa\",\n  \"ham\",\n  \"hama\",\n  \"hamal\",\n  \"hamatum\",\n  \"hamba\",\n  \"hambali\",\n  \"hambar\",\n  \"hambat\",\n  \"hambur\",\n  \"hamburger\",\n  \"hamdalah\",\n  \"hamdu\",\n  \"hamik\",\n  \"hamil\",\n  \"haminte\",\n  \"hampa\",\n  \"hampang\",\n  \"hampar\",\n  \"hampir\",\n  \"hamud\",\n  \"hamulus\",\n  \"hamun\",\n  \"hamzah\",\n  \"hana\",\n  \"hanacaraka\",\n  \"hanafi\",\n  \"hancing\",\n  \"hancur\",\n  \"handai\",\n  \"handam\",\n  \"handaruan\",\n  \"handasah\",\n  \"handelar\",\n  \"handuk\",\n  \"hang\",\n  \"hangar\",\n  \"hangat\",\n  \"hanger\",\n  \"hanggar\",\n  \"hangit\",\n  \"hangus\",\n  \"hanif\",\n  \"hanjuang\",\n  \"hansop\",\n  \"hantai\",\n  \"hantam\",\n  \"hantap\",\n  \"hantar\",\n  \"hantir\",\n  \"hantu\",\n  \"hanya\",\n  \"hanyut\",\n  \"hap\",\n  \"hapetan\",\n  \"haplografi\",\n  \"haploid\",\n  \"haplologi\",\n  \"hapus\",\n  \"hara\",\n  \"harak\",\n  \"harakah\",\n  \"harakat\",\n  \"harakiri\",\n  \"haram\",\n  \"harap\",\n  \"harawan\",\n  \"harbi\",\n  \"hardik\",\n  \"harem\",\n  \"harendong\",\n  \"harfiah\",\n  \"harga\",\n  \"hari\",\n  \"haribaan\",\n  \"harimau\",\n  \"haring\",\n  \"harini\",\n  \"haris\",\n  \"harisah\",\n  \"harit\",\n  \"harkat\",\n  \"harmoni\",\n  \"harmonik\",\n  \"harmonika\",\n  \"harmonis\",\n  \"harmonisasi\",\n  \"harmonium\",\n  \"harnet\",\n  \"harpa\",\n  \"harpis\",\n  \"harpun\",\n  \"hart\",\n  \"harta\",\n  \"hartal\",\n  \"haru\",\n  \"haruan\",\n  \"harum\",\n  \"harungguan\",\n  \"harus\",\n  \"has\",\n  \"hasab\",\n  \"hasad\",\n  \"hasai\",\n  \"hasan\",\n  \"hasar\",\n  \"hasib\",\n  \"hasid\",\n  \"hasil\",\n  \"hasrat\",\n  \"hasta\",\n  \"hasta-wara\",\n  \"hasud\",\n  \"hasut\",\n  \"hasyiah\",\n  \"hasyis\",\n  \"hati\",\n  \"hatif\",\n  \"hatta\",\n  \"hatur\",\n  \"haud\",\n  \"haudah\",\n  \"haukalah\",\n  \"haul\",\n  \"haur\",\n  \"hauri\",\n  \"haus\",\n  \"haustorium\",\n  \"haver\",\n  \"hawa\",\n  \"hawar\",\n  \"hawari\",\n  \"hawiah\",\n  \"hayat\",\n  \"hayati\",\n  \"hayo\",\n  \"heban\",\n  \"hebat\",\n  \"heboh\",\n  \"hebras\",\n  \"hebring\",\n  \"hedonis\",\n  \"hedonisme\",\n  \"hegelianisme\",\n  \"hegemoni\",\n  \"hegemonik\",\n  \"hegemonisme\",\n  \"hegemonnisme\",\n  \"heiho\",\n  \"heksadesimal\",\n  \"heksagon\",\n  \"heksahedron\",\n  \"heksaklorida\",\n  \"heksameter\",\n  \"heksana\",\n  \"heksapoda\",\n  \"hektar\",\n  \"hektare\",\n  \"hektograf\",\n  \"hektogram\",\n  \"hektoliter\",\n  \"hektometer\",\n  \"hela\",\n  \"helah\",\n  \"helai\",\n  \"helat\",\n  \"helicak\",\n  \"helikopter\",\n  \"heling\",\n  \"heliofit\",\n  \"heliofobi\",\n  \"heliograf\",\n  \"heliogram\",\n  \"heliometer\",\n  \"heliosentrik\",\n  \"helioskop\",\n  \"heliotaksis\",\n  \"helioterapi\",\n  \"heliotrop\",\n  \"heliotropisme\",\n  \"helipad\",\n  \"helium\",\n  \"helm\",\n  \"helmintologi\",\n  \"hem\",\n  \"hemat\",\n  \"hematit\",\n  \"hematite\",\n  \"hematofobia\",\n  \"hematologi\",\n  \"hematom\",\n  \"hematometra\",\n  \"hematuri\",\n  \"hembak\",\n  \"hembalang\",\n  \"hembus\",\n  \"hemeralopi\",\n  \"hemikordat\",\n  \"hemiplegia\",\n  \"hemisfer\",\n  \"hemodialisis\",\n  \"hemofilia\",\n  \"hemoglobin\",\n  \"hemolisis\",\n  \"hemopoiesis\",\n  \"hemopteran\",\n  \"hemoragi\",\n  \"hemoroid\",\n  \"hemosit\",\n  \"hemositometer\",\n  \"hemostasis\",\n  \"hemostatik\",\n  \"hempap\",\n  \"hempas\",\n  \"hendak\",\n  \"hendam\",\n  \"hendel\",\n  \"heng\",\n  \"hengit\",\n  \"hengkang\",\n  \"hening\",\n  \"henoteisme\",\n  \"henry\",\n  \"hentar\",\n  \"henti\",\n  \"henyak\",\n  \"hepar\",\n  \"hepatitis\",\n  \"heptagon\",\n  \"heptahedron\",\n  \"heptameter\",\n  \"heptana\",\n  \"heraldik\",\n  \"heran\",\n  \"herba\",\n  \"herbarium\",\n  \"herbisida\",\n  \"herbivor\",\n  \"herbivora\",\n  \"herder\",\n  \"hereditas\",\n  \"herediter\",\n  \"heregistrasi\",\n  \"heresi\",\n  \"hering\",\n  \"hermafrodit\",\n  \"hermafroditisme\",\n  \"hermetis\",\n  \"hernia\",\n  \"hero\",\n  \"heroik\",\n  \"heroin\",\n  \"heroisme\",\n  \"herpes\",\n  \"herpetolog\",\n  \"herpetologi\",\n  \"hertz\",\n  \"hesperidin\",\n  \"heterodin\",\n  \"heterodoks\",\n  \"heterofemi\",\n  \"heterofil\",\n  \"heterofit\",\n  \"heterogamet\",\n  \"heterogami\",\n  \"heterogen\",\n  \"heterogenitas\",\n  \"heterograf\",\n  \"heterografi\",\n  \"heteroklitus\",\n  \"heteronim\",\n  \"heteronimi\",\n  \"heteronomi\",\n  \"heteroseksual\",\n  \"heteroseksualitas\",\n  \"heterosfer\",\n  \"heterosiklis\",\n  \"heterosis\",\n  \"heterospora\",\n  \"heterostili\",\n  \"heterotrof\",\n  \"heterozigot\",\n  \"heuristis\",\n  \"hewan\",\n  \"hewani\",\n  \"hia\",\n  \"hialin\",\n  \"hialit\",\n  \"hias\",\n  \"hiatus\",\n  \"hibah\",\n  \"hibal\",\n  \"hibat\",\n  \"hibernasi\",\n  \"hibiskus\",\n  \"hibob\",\n  \"hibrida\",\n  \"hibridis\",\n  \"hibridisasi\",\n  \"hibuk\",\n  \"hibur\",\n  \"hidang\",\n  \"hidatod\",\n  \"hidayah\",\n  \"hidayat\",\n  \"hidrasi\",\n  \"hidrat\",\n  \"hidraulik\",\n  \"hidraulika\",\n  \"hidraulis\",\n  \"hidrida\",\n  \"hidrodinamika\",\n  \"hidrofili\",\n  \"hidrofit\",\n  \"hidrofobia\",\n  \"hidrofoil\",\n  \"hidrofon\",\n  \"hidrogen\",\n  \"hidrogenasi\",\n  \"hidrogeologi\",\n  \"hidrograf\",\n  \"hidrografi\",\n  \"hidrogram\",\n  \"hidrokarbon\",\n  \"hidroklorida\",\n  \"hidrokori\",\n  \"hidroksida\",\n  \"hidroksil\",\n  \"hidrolika\",\n  \"hidrolisis\",\n  \"hidrologi\",\n  \"hidrometeorologi\",\n  \"hidrometer\",\n  \"hidrometri\",\n  \"hidromini\",\n  \"hidronan\",\n  \"hidropati\",\n  \"hidroperoksida\",\n  \"hidroponik\",\n  \"hidropsoma\",\n  \"hidrosfer\",\n  \"hidrosiklon\",\n  \"hidroskop\",\n  \"hidrostatika\",\n  \"hidrostatis\",\n  \"hidroterapi\",\n  \"hidrotermal\",\n  \"hidu\",\n  \"hidung\",\n  \"hidup\",\n  \"hiena\",\n  \"hierarki\",\n  \"hierarkis\",\n  \"hieroglif\",\n  \"hifa\",\n  \"higiene\",\n  \"higienis\",\n  \"higrograf\",\n  \"higrogram\",\n  \"higrometer\",\n  \"higrometri\",\n  \"higroskop\",\n  \"higroskopis\",\n  \"higrotermograf\",\n  \"higrotermogram\",\n  \"hijab\",\n  \"hijaiah\",\n  \"hijau\",\n  \"hijrah\",\n  \"hijriah\",\n  \"hikayat\",\n  \"hikmah\",\n  \"hikmat\",\n  \"hilal\",\n  \"hilang\",\n  \"hilap\",\n  \"hilau\",\n  \"hilir\",\n  \"hilofagus\",\n  \"himanga\",\n  \"himar\",\n  \"himen\",\n  \"himenium\",\n  \"himne\",\n  \"himpun\",\n  \"hina\",\n  \"hinap\",\n  \"hinayana\",\n  \"hindar\",\n  \"hindi\",\n  \"hindu\",\n  \"hinduisme\",\n  \"hingga\",\n  \"hinggap\",\n  \"hinggut\",\n  \"hio\",\n  \"hiosiamina\",\n  \"hiosin\",\n  \"hip\",\n  \"hipantium\",\n  \"hiperaktif\",\n  \"hiperamnesi\",\n  \"hiperbarik\",\n  \"hiperbol\",\n  \"hiperbolis\",\n  \"hiperemia\",\n  \"hiperestesia\",\n  \"hipergami\",\n  \"hiperkelas\",\n  \"hiperkinesis\",\n  \"hiperklas\",\n  \"hiperkorek\",\n  \"hiperkritis\",\n  \"hiperlipemia\",\n  \"hipermetropia\",\n  \"hiperon\",\n  \"hiperopia\",\n  \"hiperparasit\",\n  \"hiperplasia\",\n  \"hiperseks\",\n  \"hiperseksual\",\n  \"hipersensitif\",\n  \"hipersonik\",\n  \"hipersonika\",\n  \"hipertensi\",\n  \"hipertonik\",\n  \"hipertradisional\",\n  \"hipertrikosis\",\n  \"hipertrofi\",\n  \"hipervitaminosis\",\n  \"hipnosis\",\n  \"hipnoterapi\",\n  \"hipnotis\",\n  \"hipnotisme\",\n  \"hipoblas\",\n  \"hipodermis\",\n  \"hipodermoklisis\",\n  \"hipodrom\",\n  \"hipofisis\",\n  \"hipofremia\",\n  \"hipogen\",\n  \"hipoglikemia\",\n  \"hipokondria\",\n  \"hipokotil\",\n  \"hipokrisi\",\n  \"hipokrit\",\n  \"hipokritis\",\n  \"hipolimnion\",\n  \"hipomastia\",\n  \"hipomnesia\",\n  \"hiponim\",\n  \"hipopituitarisme\",\n  \"hipoplankton\",\n  \"hipoplasia\",\n  \"hipopotamus\",\n  \"hiposentrum\",\n  \"hipotaksis\",\n  \"hipotek\",\n  \"hipotensi\",\n  \"hipotenusa\",\n  \"hipotermia\",\n  \"hipotesis\",\n  \"hipotetis\",\n  \"hipotiroid\",\n  \"hipotiroidisme\",\n  \"hipotonik\",\n  \"hipovitaminosis\",\n  \"hipsometer\",\n  \"hipui\",\n  \"hirap\",\n  \"hirau\",\n  \"hirsutisme\",\n  \"hiru-biru\",\n  \"hiru-hara\",\n  \"hirudin\",\n  \"hiruk\",\n  \"hirup\",\n  \"his\",\n  \"hisab\",\n  \"histamina\",\n  \"histerektomi\",\n  \"histeria\",\n  \"histeris\",\n  \"histerisis\",\n  \"histidina\",\n  \"histogeni\",\n  \"histokimia\",\n  \"histologi\",\n  \"histon\",\n  \"histopatologi\",\n  \"histori\",\n  \"historikus\",\n  \"historiografi\",\n  \"historis\",\n  \"historisisme\",\n  \"historisitas\",\n  \"hit\",\n  \"hitam\",\n  \"hitung\",\n  \"hiu\",\n  \"hiyayat\",\n  \"hobat\",\n  \"hobi\",\n  \"hobo\",\n  \"hodadoda\",\n  \"hodah\",\n  \"hodometer\",\n  \"hoi\",\n  \"hokah\",\n  \"hoki\",\n  \"hol\",\n  \"holi\",\n  \"holisme\",\n  \"holistis\",\n  \"holmium\",\n  \"holobentos\",\n  \"holoenzim\",\n  \"holofit\",\n  \"holofitik\",\n  \"holofrasis\",\n  \"hologamet\",\n  \"hologami\",\n  \"holograf\",\n  \"holografis\",\n  \"hologram\",\n  \"holokrim\",\n  \"holokrin\",\n  \"holoplankton\",\n  \"holosen\",\n  \"holozoik\",\n  \"homeostasis\",\n  \"homili\",\n  \"hominid\",\n  \"hominoid\",\n  \"homo\",\n  \"homofon\",\n  \"homofoni\",\n  \"homogami\",\n  \"homogen\",\n  \"homogeni\",\n  \"homogenitas\",\n  \"homograf\",\n  \"homografi\",\n  \"homogram\",\n  \"homoiotermal\",\n  \"homolog\",\n  \"homologi\",\n  \"homonim\",\n  \"homonimi\",\n  \"homorgan\",\n  \"homoseks\",\n  \"homoseksual\",\n  \"homoseksualisme\",\n  \"homoseksualitas\",\n  \"homosfer\",\n  \"homospora\",\n  \"homoterm\",\n  \"homozigot\",\n  \"honae\",\n  \"honcoe\",\n  \"honji\",\n  \"honor\",\n  \"honorarium\",\n  \"honorer\",\n  \"honorifik\",\n  \"hop\",\n  \"hopagen\",\n  \"hopbiro\",\n  \"hopkantor\",\n  \"hopyes\",\n  \"horak\",\n  \"horas\",\n  \"hore\",\n  \"horizon\",\n  \"horizontal\",\n  \"hormat\",\n  \"hormon\",\n  \"hornblenda\",\n  \"horor\",\n  \"horoskop\",\n  \"hortikultura\",\n  \"hortikulturis\",\n  \"hoskut\",\n  \"hospital\",\n  \"hostel\",\n  \"hostes\",\n  \"hosti\",\n  \"hot\",\n  \"hotel\",\n  \"howitzer\",\n  \"huakiau\",\n  \"hubar\",\n  \"hubaya-hubaya\",\n  \"hububan\",\n  \"hubulwatan\",\n  \"hubung\",\n  \"huda\",\n  \"hudai\",\n  \"hudhud\",\n  \"hudud\",\n  \"hufaz\",\n  \"huh\",\n  \"hujah\",\n  \"hujaj\",\n  \"hujan\",\n  \"hujat\",\n  \"huji\",\n  \"hujin\",\n  \"hujung\",\n  \"hukah\",\n  \"hukama\",\n  \"hukum\",\n  \"hula-hula\",\n  \"hulam\",\n  \"huler\",\n  \"hulu\",\n  \"hulubalang\",\n  \"hulul\",\n  \"hulur\",\n  \"huma\",\n  \"human\",\n  \"humaniora\",\n  \"humanis\",\n  \"humanisasi\",\n  \"humanisme\",\n  \"humanistis\",\n  \"humanitas\",\n  \"humaniter\",\n  \"humas\",\n  \"humbalang\",\n  \"humektan\",\n  \"humerus\",\n  \"humidifikasi\",\n  \"humiditas\",\n  \"humifikasi\",\n  \"humin\",\n  \"humor\",\n  \"humoris\",\n  \"humoristis\",\n  \"humorolog\",\n  \"humus\",\n  \"hun\",\n  \"huncue\",\n  \"huni\",\n  \"hunjam\",\n  \"hunjuk\",\n  \"hunkue\",\n  \"hunus\",\n  \"hura-hura\",\n  \"hurah\",\n  \"huria\",\n  \"huriah\",\n  \"hurikan\",\n  \"huru-hara\",\n  \"huruf\",\n  \"hus\",\n  \"husnulkhatimah\",\n  \"hut\",\n  \"hutan\",\n  \"hutang\",\n  \"huyung\",\n  \"ialah\",\n  \"iambus\",\n  \"iatrogenik\",\n  \"iba\",\n  \"ibadah\",\n  \"ibadat\",\n  \"ibadurahman\",\n  \"iban\",\n  \"ibar-ibar\",\n  \"ibarat\",\n  \"ibayuh\",\n  \"ibid\",\n  \"ibidem\",\n  \"ibing\",\n  \"iblis\",\n  \"ibni\",\n  \"ibnu\",\n  \"ibra\",\n  \"ibrit\",\n  \"ibtida\",\n  \"ibtidaiah\",\n  \"ibu\",\n  \"ibul\",\n  \"ibun\",\n  \"ibunda\",\n  \"ibung\",\n  \"ibus\",\n  \"icak-icak\",\n  \"ida\",\n  \"idafi\",\n  \"idah\",\n  \"idam\",\n  \"idap\",\n  \"idarah\",\n  \"idas\",\n  \"ide\",\n  \"ideal\",\n  \"idealis\",\n  \"idealisasi\",\n  \"idealisme\",\n  \"idealistis\",\n  \"idem\",\n  \"identifikasi\",\n  \"identik\",\n  \"identitas\",\n  \"ideofon\",\n  \"ideograf\",\n  \"ideografi\",\n  \"ideografis\",\n  \"ideogram\",\n  \"ideologi\",\n  \"ideologis\",\n  \"ideosinkretik\",\n  \"idep\",\n  \"idiil\",\n  \"idiolek\",\n  \"idiom\",\n  \"idiomatis\",\n  \"idiomatologi\",\n  \"idiosi\",\n  \"idiosinkrasi\",\n  \"idiosinkretik\",\n  \"idiot\",\n  \"idola\",\n  \"idrak\",\n  \"idu\",\n  \"iduladha\",\n  \"idulfitri\",\n  \"ifah\",\n  \"ifrit\",\n  \"iftar\",\n  \"iftitah\",\n  \"iga\",\n  \"igal\",\n  \"igau\",\n  \"iglo\",\n  \"ihdad\",\n  \"ihram\",\n  \"ihsan\",\n  \"ihsanat\",\n  \"ihsas\",\n  \"ihtifal\",\n  \"ihtikar\",\n  \"ihtilam\",\n  \"ihtimal\",\n  \"ihwal\",\n  \"ijab\",\n  \"ijabat\",\n  \"ijajil\",\n  \"ijarah\",\n  \"ijas\",\n  \"ijazah\",\n  \"ijbar\",\n  \"ijeman\",\n  \"ijil\",\n  \"ijmak\",\n  \"ijmal\",\n  \"ijon\",\n  \"ijtihad\",\n  \"ijtimaiah\",\n  \"ijtimak\",\n  \"ijuk\",\n  \"ikab\",\n  \"ikal\",\n  \"ikamah\",\n  \"ikan\",\n  \"ikat\",\n  \"ikebana\",\n  \"ikhbar\",\n  \"ikhlas\",\n  \"ikhtiar\",\n  \"ikhtiari\",\n  \"ikhtilaf\",\n  \"ikhtiogeografi\",\n  \"ikhtiosarkotoksisme\",\n  \"ikhtiotoksisme\",\n  \"ikhtisar\",\n  \"ikhwan\",\n  \"iklan\",\n  \"iklim\",\n  \"ikon\",\n  \"ikonis\",\n  \"ikonograf\",\n  \"ikonografi\",\n  \"ikonoklasme\",\n  \"ikonometer\",\n  \"ikrab\",\n  \"ikram\",\n  \"ikrar\",\n  \"iktibar\",\n  \"iktidal\",\n  \"iktikad\",\n  \"iktikaf\",\n  \"iktiografi\",\n  \"iktiolit\",\n  \"iktiologi\",\n  \"iktiologis\",\n  \"iktirad\",\n  \"iktiraf\",\n  \"iktisab\",\n  \"ikuh\",\n  \"ikut\",\n  \"ilafi\",\n  \"ilah\",\n  \"ilahi\",\n  \"ilahiah\",\n  \"ilahiat\",\n  \"ilai\",\n  \"ilak\",\n  \"ilam-ilam\",\n  \"ilanun\",\n  \"ilar\",\n  \"ilas\",\n  \"ilat\",\n  \"ilegal\",\n  \"iler\",\n  \"iles\",\n  \"ileum\",\n  \"ilham\",\n  \"ili\",\n  \"ilian\",\n  \"iling\",\n  \"ilmiah\",\n  \"ilmu\",\n  \"ilu\",\n  \"iluminasi\",\n  \"ilusi\",\n  \"ilusif\",\n  \"ilusionis\",\n  \"ilustrasi\",\n  \"ilustratif\",\n  \"ilustrator\",\n  \"imago\",\n  \"imaji\",\n  \"imajinasi\",\n  \"imajinatif\",\n  \"imajiner\",\n  \"imak\",\n  \"imam\",\n  \"imamah\",\n  \"imamologi\",\n  \"iman\",\n  \"imanen\",\n  \"imanensi\",\n  \"imani\",\n  \"imbak\",\n  \"imbal\",\n  \"imbang\",\n  \"imbas\",\n  \"imbau\",\n  \"imbesil\",\n  \"imbesilitas\",\n  \"imbibisi\",\n  \"imbit\",\n  \"imbuh\",\n  \"imigran\",\n  \"imigrasi\",\n  \"iming-iming\",\n  \"imitasi\",\n  \"imitatif\",\n  \"imitator\",\n  \"imkan\",\n  \"imla\",\n  \"imlek\",\n  \"imobilisasi\",\n  \"impak\",\n  \"impas\",\n  \"impase\",\n  \"impedans\",\n  \"impedansi\",\n  \"impek\",\n  \"imperatif\",\n  \"imperfek\",\n  \"imperfeksi\",\n  \"imperial\",\n  \"imperialis\",\n  \"imperialisme\",\n  \"imperium\",\n  \"impersonal\",\n  \"impersonalia\",\n  \"impersonalitas\",\n  \"impi\",\n  \"impit\",\n  \"implan\",\n  \"implantasi\",\n  \"implemen\",\n  \"implementasi\",\n  \"implikasi\",\n  \"implisit\",\n  \"implosif\",\n  \"implosit\",\n  \"impor\",\n  \"importasi\",\n  \"importir\",\n  \"impoten\",\n  \"impotensi\",\n  \"impregnasi\",\n  \"impresariat\",\n  \"impresario\",\n  \"impresi\",\n  \"impresif\",\n  \"impresionis\",\n  \"impresionisme\",\n  \"impresionistik\",\n  \"imprimatur\",\n  \"improvisasi\",\n  \"impuls\",\n  \"impulsif\",\n  \"imsak\",\n  \"imsakiah\",\n  \"imtihan\",\n  \"imun\",\n  \"imunisasi\",\n  \"imunitas\",\n  \"imunokimia\",\n  \"imunokompromi\",\n  \"imunologi\",\n  \"imunologis\",\n  \"imunosupresi\",\n  \"imunoterapi\",\n  \"ina\",\n  \"inadaptabilitas\",\n  \"inai\",\n  \"inang\",\n  \"inangda\",\n  \"inap\",\n  \"inartikulat\",\n  \"inas\",\n  \"inaugurasi\",\n  \"inayat\",\n  \"inca\",\n  \"incang-incut\",\n  \"incar\",\n  \"inci\",\n  \"incit\",\n  \"incling\",\n  \"incrit\",\n  \"incu\",\n  \"incut\",\n  \"indah\",\n  \"indang\",\n  \"indap\",\n  \"indarus\",\n  \"indayang\",\n  \"indebitum\",\n  \"indehoi\",\n  \"indekos\",\n  \"indeks\",\n  \"inden\",\n  \"independen\",\n  \"inderawasih\",\n  \"indeterminisme\",\n  \"indigenos\",\n  \"indigo\",\n  \"indik\",\n  \"indikan\",\n  \"indikasi\",\n  \"indikatif\",\n  \"indikator\",\n  \"inding\",\n  \"indisipliner\",\n  \"indium\",\n  \"individu\",\n  \"individual\",\n  \"individualis\",\n  \"individualisasi\",\n  \"individualisme\",\n  \"individualistis\",\n  \"individualitas\",\n  \"individuasi\",\n  \"indoktrinasi\",\n  \"indolen\",\n  \"indolensi\",\n  \"indologi\",\n  \"indonesia\",\n  \"indonesianisasi\",\n  \"indra\",\n  \"indraloka\",\n  \"indranila\",\n  \"indria\",\n  \"indriawi\",\n  \"indu\",\n  \"induk\",\n  \"induksi\",\n  \"induktans\",\n  \"induktansi\",\n  \"induktif\",\n  \"induktor\",\n  \"indung\",\n  \"indusemen\",\n  \"industri\",\n  \"inefisiensi\",\n  \"inersia\",\n  \"infak\",\n  \"infanteri\",\n  \"infantil\",\n  \"infantilisasi\",\n  \"infantilisme\",\n  \"infarktus\",\n  \"infeksi\",\n  \"inferensi\",\n  \"inferensial\",\n  \"inferior\",\n  \"inferioritas\",\n  \"inferno\",\n  \"infertil\",\n  \"infertilitas\",\n  \"infiks\",\n  \"infiltrasi\",\n  \"infiltrometer\",\n  \"infinitif\",\n  \"infiradi\",\n  \"inflamasi\",\n  \"inflasi\",\n  \"inflatoar\",\n  \"infleksi\",\n  \"infleksibel\",\n  \"infleksif\",\n  \"infloresen\",\n  \"infloresens\",\n  \"influensa\",\n  \"influenza\",\n  \"info\",\n  \"informal\",\n  \"informan\",\n  \"informasi\",\n  \"informatif\",\n  \"informatika\",\n  \"inframerah\",\n  \"infrasonik\",\n  \"infrastruktur\",\n  \"infus\",\n  \"inga\",\n  \"ingar\",\n  \"ingat\",\n  \"ingau\",\n  \"inggang-inggung\",\n  \"inggris\",\n  \"inggu\",\n  \"inggung\",\n  \"ingin\",\n  \"ingkah\",\n  \"ingkar\",\n  \"ingkir\",\n  \"ingresif\",\n  \"ingsar\",\n  \"ingsun\",\n  \"ingsut\",\n  \"ingus\",\n  \"inheren\",\n  \"inhibisi\",\n  \"inhibitor\",\n  \"ini\",\n  \"inisial\",\n  \"inisiasi\",\n  \"inisiatif\",\n  \"inisiator\",\n  \"injak\",\n  \"injap\",\n  \"injeksi\",\n  \"injil\",\n  \"injin\",\n  \"inkarnasi\",\n  \"inkarserasi\",\n  \"inkarsunah\",\n  \"inkaso\",\n  \"inklaring\",\n  \"inklinasi\",\n  \"inklinometer\",\n  \"inklusif\",\n  \"inkognito\",\n  \"inkompabilitas\",\n  \"inkompatibilitas\",\n  \"inkompeten\",\n  \"inkomplet\",\n  \"inkonfeso\",\n  \"inkonsisten\",\n  \"inkonsistensi\",\n  \"inkonstitusional\",\n  \"inkonvensional\",\n  \"inkorporasi\",\n  \"inkremental\",\n  \"inkubasi\",\n  \"inkubator\",\n  \"inkulturasi\",\n  \"inlander\",\n  \"inohong\",\n  \"inokulasi\",\n  \"inovasi\",\n  \"inovatif\",\n  \"inovator\",\n  \"insaf\",\n  \"insan\",\n  \"insanan\",\n  \"insang\",\n  \"insani\",\n  \"insanulkamil\",\n  \"insar\",\n  \"insek\",\n  \"insekta\",\n  \"insektari\",\n  \"insektisida\",\n  \"insektivor\",\n  \"insektivora\",\n  \"insektologi\",\n  \"inseminasi\",\n  \"insentif\",\n  \"insersi\",\n  \"inses\",\n  \"inset\",\n  \"insiden\",\n  \"insidental\",\n  \"insinerator\",\n  \"insinuasi\",\n  \"insinuatif\",\n  \"insinye\",\n  \"insinyur\",\n  \"inskripsi\",\n  \"inslan\",\n  \"insolven\",\n  \"insomnia\",\n  \"inspeksi\",\n  \"inspektorat\",\n  \"inspektur\",\n  \"inspirasi\",\n  \"instabilitas\",\n  \"instalasi\",\n  \"instalatur\",\n  \"instan\",\n  \"instansi\",\n  \"insting\",\n  \"instingtif\",\n  \"institusi\",\n  \"institusional\",\n  \"institut\",\n  \"instruksi\",\n  \"instruksional\",\n  \"instruktif\",\n  \"instruktur\",\n  \"instrumen\",\n  \"instrumental\",\n  \"instrumentalia\",\n  \"instrumentalis\",\n  \"instrumentasi\",\n  \"insubordinasi\",\n  \"insulator\",\n  \"insuler\",\n  \"insulin\",\n  \"insulinde\",\n  \"insya\",\n  \"intai\",\n  \"intan\",\n  \"integral\",\n  \"integralistik\",\n  \"integrasi\",\n  \"integrasionis\",\n  \"integritas\",\n  \"integumen\",\n  \"intel\",\n  \"intelek\",\n  \"intelektual\",\n  \"intelektualisasi\",\n  \"intelektualisme\",\n  \"inteligen\",\n  \"inteligensi\",\n  \"inteligensia\",\n  \"intelijen\",\n  \"intendans\",\n  \"intens\",\n  \"intensi\",\n  \"intensif\",\n  \"intensifikasi\",\n  \"intensional\",\n  \"intensitas\",\n  \"interaksi\",\n  \"interaksionistik\",\n  \"interaktif\",\n  \"interdepartemental\",\n  \"interdependen\",\n  \"interdiksi\",\n  \"interdisipliner\",\n  \"interegnum\",\n  \"interelasi\",\n  \"interen\",\n  \"interes\",\n  \"interesan\",\n  \"interetnik\",\n  \"interferens\",\n  \"interferensi\",\n  \"interferometer\",\n  \"interferon\",\n  \"interglasial\",\n  \"interim\",\n  \"interinsuler\",\n  \"interior\",\n  \"interjeksi\",\n  \"interkom\",\n  \"interkoneksi\",\n  \"interkonsonantal\",\n  \"interkontinental\",\n  \"interlokal\",\n  \"interlokutor\",\n  \"interlud\",\n  \"intermeso\",\n  \"intermezo\",\n  \"intermolekuler\",\n  \"intern\",\n  \"internal\",\n  \"internalisasi\",\n  \"internasional\",\n  \"internasionalisasi\",\n  \"internat\",\n  \"internir\",\n  \"internis\",\n  \"internuntius\",\n  \"interogasi\",\n  \"interogatif\",\n  \"interogator\",\n  \"interpelan\",\n  \"interpelasi\",\n  \"interpelator\",\n  \"interpiu\",\n  \"interpolasi\",\n  \"interpretasi\",\n  \"interpretatif\",\n  \"interpretator\",\n  \"interpreter\",\n  \"intersepsi\",\n  \"intertestial\",\n  \"intertidal\",\n  \"interupsi\",\n  \"interval\",\n  \"intervensi\",\n  \"intervensionisme\",\n  \"interviu\",\n  \"interzona\",\n  \"inti\",\n  \"intifadah\",\n  \"intiha\",\n  \"intikad\",\n  \"intim\",\n  \"intima\",\n  \"intimasi\",\n  \"intimidasi\",\n  \"intip\",\n  \"intipati\",\n  \"intisari\",\n  \"intoksikasi\",\n  \"intoleran\",\n  \"intonasi\",\n  \"intradermal\",\n  \"intrakalimat\",\n  \"intrakurikuler\",\n  \"intralinguistis\",\n  \"intramembran\",\n  \"intramolekul\",\n  \"intramuskuler\",\n  \"intransitif\",\n  \"intraseluler\",\n  \"intrauniversiter\",\n  \"intravaskuler\",\n  \"intravena\",\n  \"intrik\",\n  \"intrinsik\",\n  \"intro\",\n  \"introduksi\",\n  \"introjeksi\",\n  \"introspeksi\",\n  \"introver\",\n  \"intrusi\",\n  \"intuisi\",\n  \"intuitif\",\n  \"intumesensi\",\n  \"invaginasi\",\n  \"invalid\",\n  \"invasi\",\n  \"invensi\",\n  \"inventaris\",\n  \"inventarisasi\",\n  \"inventif\",\n  \"inventor\",\n  \"inventori\",\n  \"inventoriminat\",\n  \"inversi\",\n  \"invertebrata\",\n  \"investasi\",\n  \"investigasi\",\n  \"investigatif\",\n  \"investor\",\n  \"invitasi\",\n  \"invois\",\n  \"involusi\",\n  \"inyik\",\n  \"inzar\",\n  \"inziaj\",\n  \"iodin\",\n  \"ion\",\n  \"ionisasi\",\n  \"ionosfer\",\n  \"iota\",\n  \"ipar\",\n  \"ipis\",\n  \"ipon\",\n  \"iprit\",\n  \"ipuh\",\n  \"ipuk\",\n  \"ipung\",\n  \"iqamat\",\n  \"iqra\",\n  \"ira\",\n  \"iradat\",\n  \"iradiasi\",\n  \"irafah\",\n  \"irah-irahan\",\n  \"iram\",\n  \"irama\",\n  \"iras\",\n  \"irasional\",\n  \"irasionalitas\",\n  \"iri\",\n  \"iridium\",\n  \"irigasi\",\n  \"irigator\",\n  \"irik\",\n  \"iring\",\n  \"iris\",\n  \"irit\",\n  \"iritabilitas\",\n  \"iritasi\",\n  \"iritatif\",\n  \"ironi\",\n  \"ironis\",\n  \"irsyad\",\n  \"irung\",\n  \"irus\",\n  \"isa\",\n  \"isak\",\n  \"isalohipse\",\n  \"isap\",\n  \"isbat\",\n  \"iseng\",\n  \"isentropik\",\n  \"isi\",\n  \"isim\",\n  \"isis\",\n  \"isit\",\n  \"iskemia\",\n  \"islah\",\n  \"islam\",\n  \"islami\",\n  \"islamiah\",\n  \"islamis\",\n  \"islamisasi\",\n  \"islamisme\",\n  \"islamologi\",\n  \"isoaglutinin\",\n  \"isobar\",\n  \"isobarik\",\n  \"isobat\",\n  \"isobron\",\n  \"isodin\",\n  \"isodinamik\",\n  \"isofase\",\n  \"isofen\",\n  \"isofet\",\n  \"isoflor\",\n  \"isofon\",\n  \"isogamet\",\n  \"isogami\",\n  \"isoglos\",\n  \"isogon\",\n  \"isogram\",\n  \"isohalin\",\n  \"isohel\",\n  \"isohiet\",\n  \"isohips\",\n  \"isokal\",\n  \"isokalori\",\n  \"isokemi\",\n  \"isokeraunik\",\n  \"isokor\",\n  \"isokorik\",\n  \"isokronisme\",\n  \"isolasi\",\n  \"isolasionisme\",\n  \"isolatif\",\n  \"isolator\",\n  \"isoleks\",\n  \"isolemen\",\n  \"isolir\",\n  \"isomer\",\n  \"isometrik\",\n  \"isomorf\",\n  \"isomorfis\",\n  \"isomorfisme\",\n  \"isonefel\",\n  \"isonomi\",\n  \"isopal\",\n  \"isopiestik\",\n  \"isoplet\",\n  \"isoriza\",\n  \"isosilabisme\",\n  \"isotah\",\n  \"isoterm\",\n  \"isotermal\",\n  \"isotop\",\n  \"isotrop\",\n  \"isotropik\",\n  \"isovolumik\",\n  \"isra\",\n  \"israf\",\n  \"istal\",\n  \"istan\",\n  \"istana\",\n  \"istanggi\",\n  \"istaz\",\n  \"istazah\",\n  \"istiadat\",\n  \"istianah\",\n  \"istiazah\",\n  \"istibdad\",\n  \"istibra\",\n  \"istidlal\",\n  \"istidraj\",\n  \"istifham\",\n  \"istigasah\",\n  \"istigfar\",\n  \"istihadah\",\n  \"istihsan\",\n  \"istikamah\",\n  \"istikharah\",\n  \"istikhlaf\",\n  \"istiklal\",\n  \"istikmal\",\n  \"istilah\",\n  \"istima\",\n  \"istimaiah\",\n  \"istimewa\",\n  \"istimna\",\n  \"istimtak\",\n  \"istinggar\",\n  \"istinja\",\n  \"istiqlal\",\n  \"istirahat\",\n  \"istislah\",\n  \"istislam\",\n  \"istisna\",\n  \"istitaah\",\n  \"istiwa\",\n  \"istri\",\n  \"isu\",\n  \"isya\",\n  \"isyarat\",\n  \"isytiak\",\n  \"isyu\",\n  \"italik\",\n  \"item\",\n  \"iterasi\",\n  \"iterbium\",\n  \"itibak\",\n  \"itibar\",\n  \"itidal\",\n  \"itifak\",\n  \"itihad\",\n  \"itik\",\n  \"itikad\",\n  \"itikaf\",\n  \"itil\",\n  \"itisal\",\n  \"itlak\",\n  \"itrium\",\n  \"itu\",\n  \"iudisasi\",\n  \"iur\",\n  \"iwad\",\n  \"iya\",\n  \"izah\",\n  \"izin\",\n  \"jaat\",\n  \"jab\",\n  \"jabal\",\n  \"jabang\",\n  \"jabar\",\n  \"jabariah\",\n  \"jabat\",\n  \"jabir\",\n  \"jables\",\n  \"jabrik\",\n  \"jabung\",\n  \"jadah\",\n  \"jadam\",\n  \"jadayat\",\n  \"jadi\",\n  \"jaduk\",\n  \"jadwal\",\n  \"jaga\",\n  \"jagabaya\",\n  \"jagabela\",\n  \"jagal\",\n  \"jagang\",\n  \"jagapati\",\n  \"jagaraga\",\n  \"jagat\",\n  \"jagawana\",\n  \"jago\",\n  \"jagra\",\n  \"jagrak\",\n  \"jaguar\",\n  \"jagung\",\n  \"jagur\",\n  \"jah\",\n  \"jaha\",\n  \"jahan\",\n  \"jahanam\",\n  \"jahar\",\n  \"jaharu\",\n  \"jahat\",\n  \"jahe\",\n  \"jahil\",\n  \"jahiliah\",\n  \"jahiriah\",\n  \"jahit\",\n  \"jahul\",\n  \"jail\",\n  \"jainisme\",\n  \"jaipong\",\n  \"jais\",\n  \"jaiz\",\n  \"jaja\",\n  \"jajah\",\n  \"jajak\",\n  \"jajal\",\n  \"jajan\",\n  \"jajar\",\n  \"jaka\",\n  \"jakal\",\n  \"jakas\",\n  \"jaket\",\n  \"jaksa\",\n  \"jaksi\",\n  \"jakun\",\n  \"jala\",\n  \"jalabria\",\n  \"jalad\",\n  \"jalak\",\n  \"jalal\",\n  \"jalan\",\n  \"jalang\",\n  \"jalangkote\",\n  \"jalangkung\",\n  \"jalar\",\n  \"jali\",\n  \"jalibut\",\n  \"jalil\",\n  \"jalin\",\n  \"jalma\",\n  \"jalu\",\n  \"jalur\",\n  \"jam\",\n  \"jamaah\",\n  \"jamadat\",\n  \"jamah\",\n  \"jamak\",\n  \"jamal\",\n  \"jaman\",\n  \"jamang\",\n  \"jambak\",\n  \"jambal\",\n  \"jamban\",\n  \"jambang\",\n  \"jambar\",\n  \"jambat\",\n  \"jambe\",\n  \"jambiah\",\n  \"jambian\",\n  \"jamblang\",\n  \"jambon\",\n  \"jambore\",\n  \"jambret\",\n  \"jambu\",\n  \"jambul\",\n  \"jambulan\",\n  \"jambur\",\n  \"jamhur\",\n  \"jamiah\",\n  \"jamiatul\",\n  \"jamik\",\n  \"jamil\",\n  \"jamin\",\n  \"jamis\",\n  \"jamiyah\",\n  \"jamiyatul\",\n  \"jampal\",\n  \"jampen\",\n  \"jampi\",\n  \"jampuk\",\n  \"jamrah\",\n  \"jamrud\",\n  \"jamu\",\n  \"jamung\",\n  \"jamur\",\n  \"janabah\",\n  \"janabijana\",\n  \"janah\",\n  \"janat\",\n  \"janda\",\n  \"jangak\",\n  \"jangan\",\n  \"jangar\",\n  \"jangat\",\n  \"janggal\",\n  \"janggelan\",\n  \"janggi\",\n  \"janggolan\",\n  \"janggung\",\n  \"janggut\",\n  \"jangka\",\n  \"jangkah\",\n  \"jangkang\",\n  \"jangkap\",\n  \"jangkar\",\n  \"jangkat\",\n  \"jangkau\",\n  \"jangki\",\n  \"jangkih\",\n  \"jangkih-mangkih\",\n  \"jangking\",\n  \"jangkir\",\n  \"jangkit\",\n  \"jangkrik\",\n  \"jangkung\",\n  \"jangla\",\n  \"jangol\",\n  \"jani\",\n  \"janik\",\n  \"janin\",\n  \"janjang\",\n  \"janji\",\n  \"jantan\",\n  \"jantang\",\n  \"jantina\",\n  \"jantuk\",\n  \"jantung\",\n  \"jantur\",\n  \"janturan\",\n  \"januari\",\n  \"janubi\",\n  \"janur\",\n  \"jap\",\n  \"japan\",\n  \"japin\",\n  \"japu\",\n  \"japuk\",\n  \"jara\",\n  \"jarab\",\n  \"jarah\",\n  \"jarak\",\n  \"jaram\",\n  \"jaran\",\n  \"jaranan\",\n  \"jarang\",\n  \"jaras\",\n  \"jarem\",\n  \"jargon\",\n  \"jari\",\n  \"jariah\",\n  \"jariji\",\n  \"jarimah\",\n  \"jaring\",\n  \"jarit\",\n  \"jarjau\",\n  \"jaro\",\n  \"jarotan\",\n  \"jarum\",\n  \"jarwa\",\n  \"jas\",\n  \"jasa\",\n  \"jasad\",\n  \"jasadi\",\n  \"jasmani\",\n  \"jasmaniah\",\n  \"jasus\",\n  \"jaswadi\",\n  \"jatah\",\n  \"jatayu\",\n  \"jati\",\n  \"jatilan\",\n  \"jatmika\",\n  \"jatuh\",\n  \"jatukrama\",\n  \"jauh\",\n  \"jauhar\",\n  \"jauhari\",\n  \"jauza\",\n  \"jawab\",\n  \"jawang\",\n  \"jawanisasi\",\n  \"jawara\",\n  \"jawat\",\n  \"jawawut\",\n  \"jawer\",\n  \"jawi\",\n  \"jawil\",\n  \"jaya\",\n  \"jayacihna\",\n  \"jayapatra\",\n  \"jayasong\",\n  \"jayastamba\",\n  \"jayeng\",\n  \"jaz\",\n  \"jazam\",\n  \"jazirah\",\n  \"jazirat\",\n  \"jebab\",\n  \"jebah\",\n  \"jebai\",\n  \"jebak\",\n  \"jebang\",\n  \"jebar\",\n  \"jebat\",\n  \"jeblok\",\n  \"jeblos\",\n  \"jebluk\",\n  \"jebol\",\n  \"jebor\",\n  \"jebrol\",\n  \"jebuh\",\n  \"jebung\",\n  \"jebur\",\n  \"jeda\",\n  \"jeding\",\n  \"jedot\",\n  \"jegal\",\n  \"jegang\",\n  \"jegil\",\n  \"jegogan\",\n  \"jegung\",\n  \"jejabah\",\n  \"jejak\",\n  \"jejaka\",\n  \"jejal\",\n  \"jejap\",\n  \"jejas\",\n  \"jejengkok\",\n  \"jejer\",\n  \"jejunum\",\n  \"jejuri\",\n  \"jeket\",\n  \"jeksi\",\n  \"jel\",\n  \"jela\",\n  \"jelabak\",\n  \"jelabir\",\n  \"jeladan\",\n  \"jeladren\",\n  \"jeladri\",\n  \"jelaga\",\n  \"jelagra\",\n  \"jelah\",\n  \"jelai\",\n  \"jelajah\",\n  \"jelak\",\n  \"jelalat\",\n  \"jelamprang\",\n  \"jelanak\",\n  \"jelang\",\n  \"jelangak\",\n  \"jelangkung\",\n  \"jelantah\",\n  \"jelapak\",\n  \"jelapang\",\n  \"jelar\",\n  \"jelarang\",\n  \"jelas\",\n  \"jelata\",\n  \"jelatang\",\n  \"jelau\",\n  \"jelawat\",\n  \"jelejeh\",\n  \"jelek\",\n  \"jelempah\",\n  \"jelengar\",\n  \"jelentik\",\n  \"jelepak\",\n  \"jelepok\",\n  \"jeli\",\n  \"jelih\",\n  \"jelijih\",\n  \"jelimet\",\n  \"jelimpat\",\n  \"jeling\",\n  \"jelir\",\n  \"jelit\",\n  \"jelita\",\n  \"jelma\",\n  \"jelu\",\n  \"jeluak\",\n  \"jeluang\",\n  \"jelujur\",\n  \"jeluk\",\n  \"jelum\",\n  \"jelungkap\",\n  \"jeluntung\",\n  \"jelunut\",\n  \"jelur-jelir\",\n  \"jelus\",\n  \"jelut\",\n  \"jelutung\",\n  \"jem\",\n  \"jemaah\",\n  \"jemaat\",\n  \"jemah\",\n  \"jemala\",\n  \"jemang\",\n  \"jemari\",\n  \"jemaring\",\n  \"jemawa\",\n  \"jemba\",\n  \"jembak\",\n  \"jembalang\",\n  \"jembar\",\n  \"jembatan\",\n  \"jembel\",\n  \"jember\",\n  \"jembiah\",\n  \"jembrana\",\n  \"jembut\",\n  \"jemeki\",\n  \"jemerlang\",\n  \"jempalik\",\n  \"jempalit\",\n  \"jempana\",\n  \"jemparing\",\n  \"jempol\",\n  \"jempul\",\n  \"jemput\",\n  \"jemu\",\n  \"jemuas\",\n  \"jemuju\",\n  \"jemur\",\n  \"jenahar\",\n  \"jenak\",\n  \"jenaka\",\n  \"jenama\",\n  \"jenang\",\n  \"jenangau\",\n  \"jenat\",\n  \"jenawi\",\n  \"jenayah\",\n  \"jenazah\",\n  \"jendal\",\n  \"jendala\",\n  \"jendel\",\n  \"jendela\",\n  \"jendera\",\n  \"jenderal\",\n  \"jendol\",\n  \"jendul\",\n  \"jenela\",\n  \"jeneng\",\n  \"jenewer\",\n  \"jeng\",\n  \"jengah\",\n  \"jengang\",\n  \"jengat\",\n  \"jengek\",\n  \"jenggala\",\n  \"jenggar\",\n  \"jengger\",\n  \"jengget\",\n  \"jengglong\",\n  \"jenggot\",\n  \"jengguk\",\n  \"jenggul\",\n  \"jenggut\",\n  \"jengit\",\n  \"jengkal\",\n  \"jengkang\",\n  \"jengkek\",\n  \"jengkel\",\n  \"jengkelit\",\n  \"jengkeng\",\n  \"jengker\",\n  \"jengket\",\n  \"jengki\",\n  \"jengking\",\n  \"jengkit\",\n  \"jengkol\",\n  \"jengkolet\",\n  \"jengkot\",\n  \"jenglong\",\n  \"jenguh\",\n  \"jenguk\",\n  \"jengul\",\n  \"jenis\",\n  \"jenius\",\n  \"jenjam\",\n  \"jenjang\",\n  \"jenjeng\",\n  \"jentaka\",\n  \"jentang\",\n  \"jentayu\",\n  \"jentelmen\",\n  \"jentera\",\n  \"jentik\",\n  \"jentur\",\n  \"jenu\",\n  \"jenuh\",\n  \"jepa\",\n  \"jepet\",\n  \"jepit\",\n  \"jeprat\",\n  \"jepret\",\n  \"jepun\",\n  \"jeput\",\n  \"jera\",\n  \"jerabai\",\n  \"jeradik\",\n  \"jeragih\",\n  \"jerah\",\n  \"jerahak\",\n  \"jerahap\",\n  \"jerait\",\n  \"jeram\",\n  \"jeramah\",\n  \"jerambah\",\n  \"jerambai\",\n  \"jerambang\",\n  \"jerambung\",\n  \"jerami\",\n  \"jeran\",\n  \"jerang\",\n  \"jerangan\",\n  \"jerangau\",\n  \"jerangkah\",\n  \"jerangkak\",\n  \"jerangkang\",\n  \"jerangkong\",\n  \"jerap\",\n  \"jerapah\",\n  \"jerat\",\n  \"jerau\",\n  \"jeraus\",\n  \"jerawat\",\n  \"jerba\",\n  \"jerbak\",\n  \"jereket\",\n  \"jeremak\",\n  \"jeremba\",\n  \"jerembap\",\n  \"jerembat\",\n  \"jerembet\",\n  \"jerembun\",\n  \"jerempak\",\n  \"jereng\",\n  \"jerepet\",\n  \"jeri\",\n  \"jeriau\",\n  \"jerigen\",\n  \"jerih\",\n  \"jeriji\",\n  \"jeriken\",\n  \"jering\",\n  \"jeringing\",\n  \"jerit\",\n  \"jerjak\",\n  \"jerkah\",\n  \"jerkat\",\n  \"jermal\",\n  \"jermang\",\n  \"jernang\",\n  \"jernih\",\n  \"jero\",\n  \"jeroan\",\n  \"jerohok\",\n  \"jerojol\",\n  \"jerongkang\",\n  \"jerongkes\",\n  \"jerongkok\",\n  \"jerongkong\",\n  \"jerubung\",\n  \"jeruji\",\n  \"jeruju\",\n  \"jeruk\",\n  \"jerukun\",\n  \"jerukup\",\n  \"jerum\",\n  \"jerumat\",\n  \"jerumbai\",\n  \"jerumun\",\n  \"jerumus\",\n  \"jerun\",\n  \"jerung\",\n  \"jerungkau\",\n  \"jerungkis\",\n  \"jerungkung\",\n  \"jerunuk\",\n  \"jerupih\",\n  \"jesben\",\n  \"jet\",\n  \"jetis\",\n  \"jetsam\",\n  \"jetset\",\n  \"jewer\",\n  \"jiawang\",\n  \"jib\",\n  \"jibaku\",\n  \"jibilah\",\n  \"jibrail\",\n  \"jibril\",\n  \"jibti\",\n  \"jibun\",\n  \"jicap\",\n  \"jicapgo\",\n  \"jicing\",\n  \"jidal\",\n  \"jidar\",\n  \"jidat\",\n  \"jidur\",\n  \"jigong\",\n  \"jigrah\",\n  \"jih\",\n  \"jihad\",\n  \"jihat\",\n  \"jijik\",\n  \"jijit\",\n  \"jijitsu\",\n  \"jika\",\n  \"jikalau\",\n  \"jil\",\n  \"jila\",\n  \"jilah\",\n  \"jilam\",\n  \"jilat\",\n  \"jilbab\",\n  \"jilid\",\n  \"jim\",\n  \"jimahir\",\n  \"jimak\",\n  \"jimakir\",\n  \"jimat\",\n  \"jimawal\",\n  \"jimbit\",\n  \"jimpit\",\n  \"jin\",\n  \"jinak\",\n  \"jinayah\",\n  \"jindra\",\n  \"jinem\",\n  \"jineman\",\n  \"jineng\",\n  \"jingap\",\n  \"jingau\",\n  \"jingga\",\n  \"jinggring\",\n  \"jingkat\",\n  \"jingkik\",\n  \"jingkrak\",\n  \"jingo\",\n  \"jingoisme\",\n  \"jingu\",\n  \"jinjang\",\n  \"jinjing\",\n  \"jinjit\",\n  \"jinsom\",\n  \"jintan\",\n  \"jip\",\n  \"jipang\",\n  \"jiplak\",\n  \"jipro\",\n  \"jir\",\n  \"jirak\",\n  \"jiran\",\n  \"jirat\",\n  \"jirian\",\n  \"jirus\",\n  \"jisim\",\n  \"jitah\",\n  \"jitak\",\n  \"jitok\",\n  \"jitu\",\n  \"jiwa\",\n  \"jiwat\",\n  \"jiwatman\",\n  \"jiwit\",\n  \"jizyah\",\n  \"jlegur\",\n  \"joang\",\n  \"jobak\",\n  \"jobong\",\n  \"jodang\",\n  \"jodoh\",\n  \"jodong\",\n  \"jogan\",\n  \"jogar\",\n  \"joget\",\n  \"joging\",\n  \"joglo\",\n  \"johan\",\n  \"johar\",\n  \"johari\",\n  \"jojing\",\n  \"jojol\",\n  \"jok\",\n  \"joki\",\n  \"jolak\",\n  \"jolek\",\n  \"joli\",\n  \"jolok\",\n  \"jolong\",\n  \"jolor\",\n  \"jombang\",\n  \"jomlo\",\n  \"jompak\",\n  \"jompo\",\n  \"jongang\",\n  \"jonget\",\n  \"jongga\",\n  \"jonggol\",\n  \"jonggolan\",\n  \"jongjorang\",\n  \"jongkang\",\n  \"jongkar-jangkir\",\n  \"jongkat-jangkit\",\n  \"jongki\",\n  \"jongko\",\n  \"jongkok\",\n  \"jongkong\",\n  \"jongos\",\n  \"jonjot\",\n  \"jontoh\",\n  \"jontor\",\n  \"jontrot\",\n  \"joran\",\n  \"joreng\",\n  \"jori\",\n  \"jorjoran\",\n  \"jorok\",\n  \"jorong\",\n  \"josna\",\n  \"jota\",\n  \"jotang\",\n  \"jotos\",\n  \"joule\",\n  \"jrambah\",\n  \"jreng\",\n  \"jua\",\n  \"juadah\",\n  \"juak\",\n  \"jual\",\n  \"juan\",\n  \"juandang\",\n  \"juang\",\n  \"juar\",\n  \"juara\",\n  \"jubah\",\n  \"jubel\",\n  \"jubin\",\n  \"jublag\",\n  \"jublek\",\n  \"judek\",\n  \"judes\",\n  \"judi\",\n  \"judo\",\n  \"judogi\",\n  \"judoka\",\n  \"judul\",\n  \"juek\",\n  \"juga\",\n  \"juhi\",\n  \"juhut\",\n  \"juih\",\n  \"juita\",\n  \"juja\",\n  \"jujah\",\n  \"jujai\",\n  \"jujitsu\",\n  \"juju\",\n  \"jujuh\",\n  \"jujur\",\n  \"jujuran\",\n  \"jujut\",\n  \"jukstaposisi\",\n  \"jukut\",\n  \"julab\",\n  \"julai\",\n  \"julang\",\n  \"julat\",\n  \"juli\",\n  \"juling\",\n  \"julir\",\n  \"julo\",\n  \"juluk\",\n  \"julung\",\n  \"julur\",\n  \"jumadilakhir\",\n  \"jumadilawal\",\n  \"jumantan\",\n  \"jumantara\",\n  \"jumat\",\n  \"jumbai\",\n  \"jumbil\",\n  \"jumbo\",\n  \"jumbuh\",\n  \"jumbul\",\n  \"jumeneng\",\n  \"jumhur\",\n  \"jumjumah\",\n  \"jumlah\",\n  \"jumpa\",\n  \"jumpalit\",\n  \"jumpang\",\n  \"jumpelang\",\n  \"jumpul\",\n  \"jumput\",\n  \"jumrah\",\n  \"jumud\",\n  \"jun\",\n  \"junam\",\n  \"jundai\",\n  \"jung\",\n  \"jungat\",\n  \"junggang\",\n  \"jungkal\",\n  \"jungkang\",\n  \"jungkar\",\n  \"jungkat\",\n  \"jungkir\",\n  \"jungkit\",\n  \"jungkol\",\n  \"jungur\",\n  \"jungut\",\n  \"juni\",\n  \"junior\",\n  \"junjung\",\n  \"junta\",\n  \"juntai\",\n  \"juntrung\",\n  \"junub\",\n  \"junun\",\n  \"jupang\",\n  \"jura\",\n  \"juragan\",\n  \"jurai\",\n  \"jurang\",\n  \"juri\",\n  \"jurik\",\n  \"juring\",\n  \"juris\",\n  \"jurit\",\n  \"jurnal\",\n  \"jurnalis\",\n  \"jurnalisme\",\n  \"jurnalistik\",\n  \"juru\",\n  \"juruh\",\n  \"jurung\",\n  \"jurus\",\n  \"jus\",\n  \"justifikasi\",\n  \"justru\",\n  \"juta\",\n  \"jute\",\n  \"juvenil\",\n  \"juz\",\n  \"kaabah\",\n  \"kaba\",\n  \"kabah\",\n  \"kabak\",\n  \"kabang-kabang\",\n  \"kabar\",\n  \"kabaret\",\n  \"kabat\",\n  \"kabau\",\n  \"kabel\",\n  \"kabihat\",\n  \"kabil\",\n  \"kabilah\",\n  \"kabin\",\n  \"kabinet\",\n  \"kabir\",\n  \"kabisat\",\n  \"kabit\",\n  \"kaboi\",\n  \"kabriolet\",\n  \"kabruk\",\n  \"kabu-kabu\",\n  \"kabuki\",\n  \"kabul\",\n  \"kabumbu\",\n  \"kabung\",\n  \"kabupaten\",\n  \"kabur\",\n  \"kabus\",\n  \"kabut\",\n  \"kaca\",\n  \"kacak\",\n  \"kacam\",\n  \"kacamata\",\n  \"kacang\",\n  \"kacapiring\",\n  \"kacapuri\",\n  \"kacar\",\n  \"kacau\",\n  \"kacau-balau\",\n  \"kacauan\",\n  \"kacek\",\n  \"kacer\",\n  \"kaci\",\n  \"kacici\",\n  \"kacip\",\n  \"kacir\",\n  \"kaco\",\n  \"kacrek\",\n  \"kacu\",\n  \"kacuk\",\n  \"kacukan\",\n  \"kacung\",\n  \"kad\",\n  \"kada\",\n  \"kadahajat\",\n  \"kadal\",\n  \"kadam\",\n  \"kadang\",\n  \"kadar\",\n  \"kadariah\",\n  \"kadas\",\n  \"kadaster\",\n  \"kadasteral\",\n  \"kadastral\",\n  \"kadaver\",\n  \"kade\",\n  \"kademat\",\n  \"kadensa\",\n  \"kader\",\n  \"kadera\",\n  \"kaderisasi\",\n  \"kades\",\n  \"kadet\",\n  \"kadi\",\n  \"kadim\",\n  \"kadipaten\",\n  \"kadir\",\n  \"kadiriah\",\n  \"kadmium\",\n  \"kado\",\n  \"kadofor\",\n  \"kadok\",\n  \"kadru\",\n  \"kadung\",\n  \"kadut\",\n  \"kaedah\",\n  \"kaf\",\n  \"kafaah\",\n  \"kafah\",\n  \"kafan\",\n  \"kafarat\",\n  \"kafe\",\n  \"kafeina\",\n  \"kafetaria\",\n  \"kafi\",\n  \"kafil\",\n  \"kafilah\",\n  \"kafir\",\n  \"kafiri\",\n  \"kaftan\",\n  \"kagak\",\n  \"kaget\",\n  \"kagok\",\n  \"kagum\",\n  \"kah\",\n  \"kahaf\",\n  \"kahak\",\n  \"kahan\",\n  \"kahang\",\n  \"kahar\",\n  \"kahat\",\n  \"kahin\",\n  \"kahrab\",\n  \"kahwa\",\n  \"kahwaji\",\n  \"kahyangan\",\n  \"kaidah\",\n  \"kaifiah\",\n  \"kaifiat\",\n  \"kail\",\n  \"kailalo\",\n  \"kaimat\",\n  \"kain\",\n  \"kaing\",\n  \"kainit\",\n  \"kainofobia\",\n  \"kais\",\n  \"kaisar\",\n  \"kait\",\n  \"kajai\",\n  \"kajang\",\n  \"kajangan\",\n  \"kajen\",\n  \"kaji\",\n  \"kak\",\n  \"kakaban\",\n  \"kakafoni\",\n  \"kakagau\",\n  \"kakah\",\n  \"kakak\",\n  \"kakaktua\",\n  \"kakanda\",\n  \"kakang\",\n  \"kakao\",\n  \"kakap\",\n  \"kakas\",\n  \"kakawin\",\n  \"kakbah\",\n  \"kakek\",\n  \"kakerlak\",\n  \"kaki\",\n  \"kakodil\",\n  \"kakofoni\",\n  \"kakografi\",\n  \"kakok\",\n  \"kakologi\",\n  \"kakostokrasi\",\n  \"kakrupukan\",\n  \"kaksa\",\n  \"kaktus\",\n  \"kaku\",\n  \"kakuminal\",\n  \"kakus\",\n  \"kala\",\n  \"kalah\",\n  \"kalai\",\n  \"kalajengking\",\n  \"kalaka\",\n  \"kalakanji\",\n  \"kalakati\",\n  \"kalakeran\",\n  \"kalakian\",\n  \"kalam\",\n  \"kalamba\",\n  \"kalamdan\",\n  \"kalamin\",\n  \"kalamisani\",\n  \"kalamkari\",\n  \"kalandar\",\n  \"kalander\",\n  \"kalang\",\n  \"kalap\",\n  \"kalar\",\n  \"kalas\",\n  \"kalat\",\n  \"kalau\",\n  \"kalaupun\",\n  \"kalawija\",\n  \"kalaza\",\n  \"kalbi\",\n  \"kalbu\",\n  \"kaldera\",\n  \"kaldron\",\n  \"kaldu\",\n  \"kalebas\",\n  \"kaleidoskop\",\n  \"kaleidoskopis\",\n  \"kalem\",\n  \"kalempagi\",\n  \"kalender\",\n  \"kaleng\",\n  \"kali\",\n  \"kalian\",\n  \"kaliber\",\n  \"kalibit\",\n  \"kalibrasi\",\n  \"kalibut\",\n  \"kalicau\",\n  \"kalifornium\",\n  \"kaligraf\",\n  \"kaligrafi\",\n  \"kaligrafis\",\n  \"kalih\",\n  \"kalikausar\",\n  \"kaliki\",\n  \"kalimah\",\n  \"kalimantang\",\n  \"kalimat\",\n  \"kalimatullah\",\n  \"kalimatusyahadat\",\n  \"kalimayah\",\n  \"kalimpanang\",\n  \"kalingan\",\n  \"kalio\",\n  \"kaliper\",\n  \"kalipso\",\n  \"kaliptra\",\n  \"kalis\",\n  \"kalistenik\",\n  \"kalium\",\n  \"kalk\",\n  \"kalkalah\",\n  \"kalkarium\",\n  \"kalkasar\",\n  \"kalkausar\",\n  \"kalkopirit\",\n  \"kalkosium\",\n  \"kalkulasi\",\n  \"kalkulator\",\n  \"kalkulus\",\n  \"kalkun\",\n  \"kalo\",\n  \"kalomel\",\n  \"kalong\",\n  \"kalongwese\",\n  \"kalongwewe\",\n  \"kalor\",\n  \"kalori\",\n  \"kalorimeter\",\n  \"kalorimetri\",\n  \"kalorisitas\",\n  \"kalowatan\",\n  \"kalpataru\",\n  \"kalsedon\",\n  \"kalsiferol\",\n  \"kalsifikasi\",\n  \"kalsinasi\",\n  \"kalsit\",\n  \"kalsium\",\n  \"kalui\",\n  \"kalumet\",\n  \"kalung\",\n  \"kalus\",\n  \"kalut\",\n  \"kam\",\n  \"kama\",\n  \"kamajaya\",\n  \"kamal\",\n  \"kamalir\",\n  \"kamantuhu\",\n  \"kamar\",\n  \"kamarban\",\n  \"kamariah\",\n  \"kamas\",\n  \"kamat\",\n  \"kamba\",\n  \"kamban\",\n  \"kambang\",\n  \"kambar\",\n  \"kambeh\",\n  \"kambeli\",\n  \"kamber\",\n  \"kambi\",\n  \"kambing\",\n  \"kambium\",\n  \"kambrik\",\n  \"kambrium\",\n  \"kambuh\",\n  \"kambus\",\n  \"kambut\",\n  \"kamelia\",\n  \"kamera\",\n  \"kamerad\",\n  \"kamfana\",\n  \"kamfer\",\n  \"kamfor\",\n  \"kamhar\",\n  \"kami\",\n  \"kamikaze\",\n  \"kamil\",\n  \"kamilmukamil\",\n  \"kamir\",\n  \"kamis\",\n  \"kamisa\",\n  \"kamisol\",\n  \"kamisosolen\",\n  \"kamit\",\n  \"kamitua\",\n  \"kamka\",\n  \"kamkama\",\n  \"kamomil\",\n  \"kamp\",\n  \"kampa\",\n  \"kampai\",\n  \"kampalogi\",\n  \"kampanologi\",\n  \"kampanye\",\n  \"kampas\",\n  \"kampemen\",\n  \"kamper\",\n  \"kampil\",\n  \"kamping\",\n  \"kampiun\",\n  \"kampos\",\n  \"kampret\",\n  \"kampuh\",\n  \"kampul\",\n  \"kampung\",\n  \"kampus\",\n  \"kamrad\",\n  \"kamsen\",\n  \"kamsia\",\n  \"kamu\",\n  \"kamuflase\",\n  \"kamus\",\n  \"kan\",\n  \"kana\",\n  \"kanaah\",\n  \"kanaat\",\n  \"kanabis\",\n  \"kanak-kanak\",\n  \"kanal\",\n  \"kanalisasi\",\n  \"kanan\",\n  \"kanang\",\n  \"kancah\",\n  \"kancap\",\n  \"kanceh\",\n  \"kancera\",\n  \"kancil\",\n  \"kancing\",\n  \"kancung\",\n  \"kancut\",\n  \"kanda\",\n  \"kandang\",\n  \"kandar\",\n  \"kandas\",\n  \"kandel\",\n  \"kandela\",\n  \"kandi\",\n  \"kandidat\",\n  \"kandidiasis\",\n  \"kandil\",\n  \"kandis\",\n  \"kandul\",\n  \"kandung\",\n  \"kandut\",\n  \"kane\",\n  \"kang\",\n  \"kangar\",\n  \"kangen\",\n  \"kangka\",\n  \"kangkang\",\n  \"kangkung\",\n  \"kangmas\",\n  \"kangsa\",\n  \"kangsar\",\n  \"kangtau\",\n  \"kanguru\",\n  \"kanibal\",\n  \"kanibalisasi\",\n  \"kanibalisme\",\n  \"kanigara\",\n  \"kanilem\",\n  \"kanina\",\n  \"kanisah\",\n  \"kanjal\",\n  \"kanjang\",\n  \"kanjar\",\n  \"kanjeng\",\n  \"kanji\",\n  \"kanker\",\n  \"kano\",\n  \"kanoman\",\n  \"kanon\",\n  \"kanonir\",\n  \"kanonis\",\n  \"kanopi\",\n  \"kans\",\n  \"kansel\",\n  \"kanselari\",\n  \"kanselir\",\n  \"kanser\",\n  \"kanstof\",\n  \"kanta\",\n  \"kantan\",\n  \"kantang\",\n  \"kantar\",\n  \"kantata\",\n  \"kanti\",\n  \"kantih\",\n  \"kantil\",\n  \"kantilever\",\n  \"kantin\",\n  \"kanto\",\n  \"kantong\",\n  \"kantor\",\n  \"kantuk\",\n  \"kantung\",\n  \"kanun\",\n  \"kanvas\",\n  \"kanya\",\n  \"kanyon\",\n  \"kaok\",\n  \"kaolin\",\n  \"kaon\",\n  \"kaos\",\n  \"kaotis\",\n  \"kap\",\n  \"kapa\",\n  \"kapabel\",\n  \"kapah\",\n  \"kapai\",\n  \"kapak\",\n  \"kapal\",\n  \"kapan\",\n  \"kapang\",\n  \"kapar\",\n  \"kaparinyo\",\n  \"kapas\",\n  \"kapasitans\",\n  \"kapasitas\",\n  \"kapasitor\",\n  \"kapat\",\n  \"kapel\",\n  \"kapela\",\n  \"kaper\",\n  \"kapi\",\n  \"kapilaritas\",\n  \"kapiler\",\n  \"kapiran\",\n  \"kapis\",\n  \"kapisa\",\n  \"kapit\",\n  \"kapita\",\n  \"kapital\",\n  \"kapitalis\",\n  \"kapitalisme\",\n  \"kapitalistis\",\n  \"kapitan\",\n  \"kapitol\",\n  \"kapitulasi\",\n  \"kapitulum\",\n  \"kaplares\",\n  \"kaplars\",\n  \"kapling\",\n  \"kaplok\",\n  \"kapok\",\n  \"kapon\",\n  \"kaporit\",\n  \"kappa\",\n  \"kaprah\",\n  \"kapri\",\n  \"kaprikornus\",\n  \"kapsalon\",\n  \"kapsel\",\n  \"kapstan\",\n  \"kapster\",\n  \"kapstok\",\n  \"kapsul\",\n  \"kapten\",\n  \"kapu\",\n  \"kapuk\",\n  \"kapung\",\n  \"kapur\",\n  \"kapurancang\",\n  \"kara\",\n  \"karabin\",\n  \"karaeng\",\n  \"karaf\",\n  \"karagen\",\n  \"karah\",\n  \"karahah\",\n  \"karakter\",\n  \"karakterisasi\",\n  \"karakteristik\",\n  \"karakterologi\",\n  \"karam\",\n  \"karamba\",\n  \"karambol\",\n  \"karamel\",\n  \"karang\",\n  \"karangkitri\",\n  \"karangwulu\",\n  \"karantina\",\n  \"karaoke\",\n  \"karap\",\n  \"karapaks\",\n  \"karapan\",\n  \"karar\",\n  \"karas\",\n  \"karat\",\n  \"karate\",\n  \"karategi\",\n  \"karateka\",\n  \"karau\",\n  \"karavan\",\n  \"karawitan\",\n  \"karbiah\",\n  \"karbid\",\n  \"karbida\",\n  \"karbohidrase\",\n  \"karbohidrat\",\n  \"karboksil\",\n  \"karbol\",\n  \"karbolat\",\n  \"karbolik\",\n  \"karbon\",\n  \"karbonado\",\n  \"karbonan\",\n  \"karbonat\",\n  \"karbonil\",\n  \"karbonisasi\",\n  \"karborundum\",\n  \"karburasi\",\n  \"karburator\",\n  \"karcis\",\n  \"kardamunggu\",\n  \"kardan\",\n  \"kardia\",\n  \"kardiak\",\n  \"kardigan\",\n  \"kardil\",\n  \"kardinal\",\n  \"kardiograf\",\n  \"kardiografi\",\n  \"kardiogram\",\n  \"kardiolog\",\n  \"kardiologi\",\n  \"kardiovaskular\",\n  \"karditis\",\n  \"kardus\",\n  \"karel\",\n  \"karembong\",\n  \"karena\",\n  \"karengga\",\n  \"kareseh-peseh\",\n  \"karet\",\n  \"kargo\",\n  \"kari\",\n  \"karib\",\n  \"karibu\",\n  \"karier\",\n  \"karies\",\n  \"karih\",\n  \"karikatur\",\n  \"karikatural\",\n  \"karikaturis\",\n  \"karil\",\n  \"karim\",\n  \"karimah\",\n  \"karina\",\n  \"karinasi\",\n  \"karisma\",\n  \"karismatik\",\n  \"karismatis\",\n  \"karitas\",\n  \"karitatif\",\n  \"karkas\",\n  \"karkata\",\n  \"karkum\",\n  \"karkun\",\n  \"karma\",\n  \"karmina\",\n  \"karminatif\",\n  \"karnaval\",\n  \"karnivor\",\n  \"karosel\",\n  \"karoseri\",\n  \"karotena\",\n  \"karotenoid\",\n  \"karotis\",\n  \"karpai\",\n  \"karpel\",\n  \"karper\",\n  \"karpet\",\n  \"karpopodil\",\n  \"karsa\",\n  \"karsinogen\",\n  \"karsinogenik\",\n  \"karsinologi\",\n  \"karsinoma\",\n  \"karst\",\n  \"karteker\",\n  \"kartel\",\n  \"karti\",\n  \"kartika\",\n  \"kartilago\",\n  \"kartografi\",\n  \"kartogram\",\n  \"karton\",\n  \"kartonase\",\n  \"kartotek\",\n  \"kartu\",\n  \"kartun\",\n  \"kartunis\",\n  \"karu\",\n  \"karuan\",\n  \"karuhun\",\n  \"karun\",\n  \"karung\",\n  \"karunia\",\n  \"karunkel\",\n  \"karusi\",\n  \"karut\",\n  \"karya\",\n  \"karyah\",\n  \"karyasiswa\",\n  \"karyat\",\n  \"karyawisata\",\n  \"kas\",\n  \"kasa\",\n  \"kasab\",\n  \"kasabandiah\",\n  \"kasad\",\n  \"kasah\",\n  \"kasai\",\n  \"kasak-kusuk\",\n  \"kasam\",\n  \"kasang\",\n  \"kasap\",\n  \"kasar\",\n  \"kasasi\",\n  \"kasatmata\",\n  \"kasau\",\n  \"kasdu\",\n  \"kasein\",\n  \"kasemat\",\n  \"kasemek\",\n  \"kasep\",\n  \"kaserin\",\n  \"kaserol\",\n  \"kaset\",\n  \"kasi\",\n  \"kasid\",\n  \"kasidah\",\n  \"kasih\",\n  \"kasihan\",\n  \"kasiku\",\n  \"kasim\",\n  \"kasima\",\n  \"kasino\",\n  \"kasintu\",\n  \"kasip\",\n  \"kasir\",\n  \"kasiterit\",\n  \"kaskade\",\n  \"kaskaya\",\n  \"kasmaran\",\n  \"kasmir\",\n  \"kasmutik\",\n  \"kaspe\",\n  \"kasrah\",\n  \"kasregister\",\n  \"kassia\",\n  \"kasta\",\n  \"kastal\",\n  \"kastanyet\",\n  \"kastel\",\n  \"kasti\",\n  \"kastrasi\",\n  \"kastroli\",\n  \"kasturi\",\n  \"kasual\",\n  \"kasualisme\",\n  \"kasualitas\",\n  \"kasuari\",\n  \"kasuarina\",\n  \"kasui\",\n  \"kasuis\",\n  \"kasuistik\",\n  \"kasur\",\n  \"kasus\",\n  \"kasut\",\n  \"kaswah\",\n  \"kata\",\n  \"katabalik\",\n  \"katabatik\",\n  \"katabolisme\",\n  \"katadrom\",\n  \"katafalk\",\n  \"katafora\",\n  \"katah\",\n  \"katai\",\n  \"katak\",\n  \"kataka\",\n  \"katakana\",\n  \"kataklisme\",\n  \"katakomba\",\n  \"katalase\",\n  \"katalepsi\",\n  \"katalina\",\n  \"katalis\",\n  \"katalisasi\",\n  \"katalisator\",\n  \"katalisis\",\n  \"katalisit\",\n  \"katalog\",\n  \"katalogisasi\",\n  \"katalogus\",\n  \"katamaran\",\n  \"katang-katang\",\n  \"katapel\",\n  \"katar\",\n  \"katarak\",\n  \"katarsis\",\n  \"katartik\",\n  \"katastrofe\",\n  \"katatoni\",\n  \"katatonia\",\n  \"katawi\",\n  \"kate\",\n  \"katebelece\",\n  \"katedral\",\n  \"kategori\",\n  \"kategorial\",\n  \"kategoris\",\n  \"kategorisasi\",\n  \"katek\",\n  \"katekese\",\n  \"katekis\",\n  \"katekisasi\",\n  \"katekismus\",\n  \"katekumen\",\n  \"katel\",\n  \"katelum\",\n  \"kater\",\n  \"katering\",\n  \"kates\",\n  \"kateter\",\n  \"katetometer\",\n  \"kati\",\n  \"katib\",\n  \"katibin\",\n  \"katifah\",\n  \"katifan\",\n  \"katik\",\n  \"katil\",\n  \"katimaha\",\n  \"katimumul\",\n  \"kation\",\n  \"katir\",\n  \"katirah\",\n  \"katiti\",\n  \"katode\",\n  \"katok\",\n  \"katolik\",\n  \"katrol\",\n  \"katuk\",\n  \"katul\",\n  \"katun\",\n  \"katung\",\n  \"katup\",\n  \"katut\",\n  \"katvanga\",\n  \"katwal\",\n  \"kau\",\n  \"kaukab\",\n  \"kaukasoid\",\n  \"kaukus\",\n  \"kaul\",\n  \"kaula\",\n  \"kauli\",\n  \"kaum\",\n  \"kaung\",\n  \"kaupui\",\n  \"kaus\",\n  \"kausa\",\n  \"kausal\",\n  \"kausalitas\",\n  \"kausatif\",\n  \"kaustik\",\n  \"kaustiksoda\",\n  \"kaut\",\n  \"kavaleri\",\n  \"kaveling\",\n  \"kaver\",\n  \"kaviar\",\n  \"kawa-kawa\",\n  \"kawah\",\n  \"kawak\",\n  \"kawal\",\n  \"kawan\",\n  \"kawang\",\n  \"kawanua\",\n  \"kawasan\",\n  \"kawat\",\n  \"kawi\",\n  \"kawih\",\n  \"kawijayan\",\n  \"kawin\",\n  \"kawista\",\n  \"kawruh\",\n  \"kawuk\",\n  \"kawula\",\n  \"kawung\",\n  \"kaya\",\n  \"kayai\",\n  \"kayak\",\n  \"kayambang\",\n  \"kayan\",\n  \"kayang\",\n  \"kayangan\",\n  \"kayau\",\n  \"kayu\",\n  \"kayuh\",\n  \"kayun\",\n  \"kebab\",\n  \"kebabal\",\n  \"kebah\",\n  \"kebaji\",\n  \"kebal\",\n  \"kebam\",\n  \"kebas\",\n  \"kebat\",\n  \"kebaya\",\n  \"kebayan\",\n  \"kebel\",\n  \"kebelet\",\n  \"kebembem\",\n  \"kebin\",\n  \"kebiri\",\n  \"keblangsak\",\n  \"keblinger\",\n  \"kebo\",\n  \"kebon\",\n  \"kebuk\",\n  \"kebul\",\n  \"kebuli\",\n  \"kebun\",\n  \"kebur\",\n  \"keburu\",\n  \"kebut\",\n  \"kebyar\",\n  \"kecai\",\n  \"kecak\",\n  \"kecalingan\",\n  \"kecam\",\n  \"kecambah\",\n  \"kecamuk\",\n  \"kecandan\",\n  \"kecantol\",\n  \"kecap\",\n  \"kecapi\",\n  \"kecar\",\n  \"kece\",\n  \"kecebong\",\n  \"kecek\",\n  \"kecele\",\n  \"keceng\",\n  \"kecepek\",\n  \"kecer\",\n  \"kecewa\",\n  \"keci\",\n  \"keciak\",\n  \"kecibak\",\n  \"kecibeling\",\n  \"kecik\",\n  \"kecil\",\n  \"kecimik\",\n  \"kecimpring\",\n  \"kecimpung\",\n  \"kecimus\",\n  \"kecipak\",\n  \"kecipir\",\n  \"kecipuk\",\n  \"kecit\",\n  \"keciut\",\n  \"kecoak\",\n  \"kecoh\",\n  \"kecombrang\",\n  \"kecong\",\n  \"kecrek\",\n  \"kecu\",\n  \"kecuali\",\n  \"kecubung\",\n  \"kecuh-kecah\",\n  \"kecumik\",\n  \"kecundang\",\n  \"kecup\",\n  \"kecut\",\n  \"kedabu\",\n  \"kedadak\",\n  \"kedah\",\n  \"kedai\",\n  \"kedak\",\n  \"kedal\",\n  \"kedaluwarsa\",\n  \"kedam\",\n  \"kedang\",\n  \"kedangkai\",\n  \"kedangkan\",\n  \"kedangsa\",\n  \"kedap\",\n  \"kedasih\",\n  \"kedau\",\n  \"kedaung\",\n  \"kedayan\",\n  \"kedebong\",\n  \"kedek\",\n  \"kedekai\",\n  \"kedeki\",\n  \"kedekik\",\n  \"kedekut\",\n  \"kedelai\",\n  \"kedele\",\n  \"kedemat\",\n  \"kedemplung\",\n  \"kedempung\",\n  \"kedengkang\",\n  \"kedengkik\",\n  \"keder\",\n  \"kedera\",\n  \"kederang\",\n  \"kedewaga\",\n  \"kedi\",\n  \"kedidi\",\n  \"kedik\",\n  \"kedikit\",\n  \"kedip\",\n  \"kedodoran\",\n  \"kedok\",\n  \"kedondong\",\n  \"kedongdong\",\n  \"kedongkok\",\n  \"kedot\",\n  \"keduduk\",\n  \"keduk\",\n  \"kedul\",\n  \"kedumung\",\n  \"kedung\",\n  \"kedut\",\n  \"keferdom\",\n  \"kehel\",\n  \"keibodan\",\n  \"kejai\",\n  \"kejam\",\n  \"kejamas\",\n  \"kejan\",\n  \"kejang\",\n  \"kejap\",\n  \"kejar\",\n  \"kejat\",\n  \"kejawen\",\n  \"kejen\",\n  \"kejer\",\n  \"keji\",\n  \"kejibeling\",\n  \"kejip\",\n  \"kejolak\",\n  \"kejora\",\n  \"keju\",\n  \"kejuju\",\n  \"kejur\",\n  \"kejut\",\n  \"kek\",\n  \"kekah\",\n  \"kekal\",\n  \"kekam\",\n  \"kekandi\",\n  \"kekang\",\n  \"kekapas\",\n  \"kekar\",\n  \"kekara\",\n  \"kekas\",\n  \"kekat\",\n  \"kekau\",\n  \"kekawin\",\n  \"kekeba\",\n  \"kekebik\",\n  \"kekeh\",\n  \"kekek\",\n  \"kekel\",\n  \"kekemben\",\n  \"kekep\",\n  \"keker\",\n  \"keki\",\n  \"kekitir\",\n  \"kekok\",\n  \"kekol\",\n  \"kekrupukan\",\n  \"kelab\",\n  \"kelabak\",\n  \"kelabang\",\n  \"kelabat\",\n  \"kelabau\",\n  \"kelabu\",\n  \"keladak\",\n  \"keladan\",\n  \"keladau\",\n  \"keladi\",\n  \"kelah\",\n  \"kelahi\",\n  \"kelai\",\n  \"kelak\",\n  \"kelak-kelik\",\n  \"kelak-keluk\",\n  \"kelakah\",\n  \"kelakanji\",\n  \"kelakar\",\n  \"kelalang\",\n  \"kelam\",\n  \"kelamai\",\n  \"kelamarin\",\n  \"kelambai\",\n  \"kelambir\",\n  \"kelambit\",\n  \"kelambu\",\n  \"kelambur\",\n  \"kelamin\",\n  \"kelamkari\",\n  \"kelana\",\n  \"kelandera\",\n  \"kelang\",\n  \"kelang-kelok\",\n  \"kelangkan\",\n  \"kelangkang\",\n  \"kelanjar\",\n  \"kelantang\",\n  \"kelap\",\n  \"kelapa\",\n  \"kelar\",\n  \"kelara\",\n  \"kelarah\",\n  \"kelarai\",\n  \"kelaras\",\n  \"kelari\",\n  \"kelas\",\n  \"kelasa\",\n  \"kelasah\",\n  \"kelasak\",\n  \"kelasi\",\n  \"kelat\",\n  \"kelati\",\n  \"kelawan\",\n  \"kelayan\",\n  \"kelayang\",\n  \"kelayu\",\n  \"kelder\",\n  \"kelebat\",\n  \"kelebek\",\n  \"kelebet\",\n  \"kelebu\",\n  \"kelebuk\",\n  \"kelebut\",\n  \"keledai\",\n  \"keledang\",\n  \"keledar\",\n  \"keledek\",\n  \"kelejat\",\n  \"kelek\",\n  \"kelekap\",\n  \"kelekatu\",\n  \"kelelap\",\n  \"kelelawar\",\n  \"kelelesa\",\n  \"kelelot\",\n  \"kelemak-kelemek\",\n  \"kelemantang\",\n  \"kelemayar\",\n  \"kelemayuh\",\n  \"kelembahang\",\n  \"kelembai\",\n  \"kelembak\",\n  \"kelemban\",\n  \"kelembuai\",\n  \"kelempai\",\n  \"kelemping\",\n  \"kelemton\",\n  \"kelemumur\",\n  \"kelemur\",\n  \"kelencer\",\n  \"kelendara\",\n  \"keleneng\",\n  \"kelengar\",\n  \"kelenggara\",\n  \"kelengkeng\",\n  \"kelengkiak\",\n  \"kelening\",\n  \"kelenjar\",\n  \"kelentang\",\n  \"kelenteng\",\n  \"kelentik\",\n  \"kelenting\",\n  \"kelentit\",\n  \"kelentong\",\n  \"kelentung\",\n  \"kelenung\",\n  \"kelenyit\",\n  \"kelep\",\n  \"kelepai\",\n  \"kelepak\",\n  \"kelepat\",\n  \"kelepek\",\n  \"kelepet\",\n  \"kelepik\",\n  \"kelepir\",\n  \"kelepit\",\n  \"kelepuk\",\n  \"kelepur\",\n  \"keler\",\n  \"kelereng\",\n  \"kelesa\",\n  \"kelesah\",\n  \"keleseh\",\n  \"kelesek\",\n  \"kelesot\",\n  \"keletah\",\n  \"keletak\",\n  \"keletang\",\n  \"keletar\",\n  \"keleti\",\n  \"keletik\",\n  \"keletuk\",\n  \"keletung\",\n  \"kelewang\",\n  \"keli\",\n  \"kelian\",\n  \"keliar\",\n  \"kelibang\",\n  \"kelibat\",\n  \"kelicap\",\n  \"kelici\",\n  \"kelicik\",\n  \"kelih\",\n  \"kelijak\",\n  \"kelik\",\n  \"kelika\",\n  \"kelikah\",\n  \"kelikat\",\n  \"keliki\",\n  \"kelikih\",\n  \"kelikik\",\n  \"kelikir\",\n  \"keliling\",\n  \"kelilip\",\n  \"kelim\",\n  \"kelimat\",\n  \"kelimpanan\",\n  \"kelimpungan\",\n  \"kelimun\",\n  \"kelimut\",\n  \"kelinci\",\n  \"kelincir\",\n  \"kelindan\",\n  \"keling\",\n  \"kelingking\",\n  \"kelingsir\",\n  \"kelining\",\n  \"kelinjat\",\n  \"kelintang\",\n  \"kelintar\",\n  \"kelinting\",\n  \"kelip\",\n  \"kelipat\",\n  \"kelir\",\n  \"keliru\",\n  \"kelis\",\n  \"kelisera\",\n  \"kelisere\",\n  \"kelit\",\n  \"keliti\",\n  \"kelitik\",\n  \"keliwon\",\n  \"kelobot\",\n  \"kelobotisme\",\n  \"kelocak\",\n  \"keloceh\",\n  \"kelodan\",\n  \"keloelektrovolt\",\n  \"keloid\",\n  \"kelojot\",\n  \"kelok\",\n  \"kelokak\",\n  \"kelola\",\n  \"kelolong\",\n  \"kelom\",\n  \"kelombeng\",\n  \"kelompang\",\n  \"kelompen\",\n  \"kelompok\",\n  \"kelon\",\n  \"keloneng\",\n  \"kelonet\",\n  \"kelong\",\n  \"kelongkong\",\n  \"kelongsong\",\n  \"kelontang\",\n  \"kelontang-kelantung\",\n  \"kelontong\",\n  \"kelonyo\",\n  \"kelop\",\n  \"kelopak\",\n  \"kelor\",\n  \"kelorak\",\n  \"kelos\",\n  \"kelosok\",\n  \"kelotok\",\n  \"keloyak\",\n  \"keloyang\",\n  \"keloyor\",\n  \"kelp\",\n  \"kelu\",\n  \"kelua\",\n  \"keluai\",\n  \"keluak\",\n  \"keluan\",\n  \"keluang\",\n  \"keluangsa\",\n  \"keluar\",\n  \"keluarga\",\n  \"kelubak\",\n  \"kelubi\",\n  \"keluburan\",\n  \"keluh\",\n  \"kelui\",\n  \"keluih\",\n  \"keluk\",\n  \"kelukup\",\n  \"kelukur\",\n  \"keluli\",\n  \"kelulu\",\n  \"kelulus\",\n  \"kelulut\",\n  \"kelumit\",\n  \"kelumpang\",\n  \"kelumun\",\n  \"kelun\",\n  \"keluna\",\n  \"kelunak\",\n  \"kelung\",\n  \"kelupas\",\n  \"kelupur\",\n  \"keluron\",\n  \"keluruk\",\n  \"kelurut\",\n  \"kelus\",\n  \"kelusuh-kelasah\",\n  \"kelut\",\n  \"kelutum\",\n  \"keluwung\",\n  \"keluyuk\",\n  \"keluyur\",\n  \"kemah\",\n  \"kemal\",\n  \"kemala\",\n  \"kemam\",\n  \"kemamang\",\n  \"keman\",\n  \"kemandang\",\n  \"kemandoran\",\n  \"kemang\",\n  \"kemangi\",\n  \"kemarau\",\n  \"kemari\",\n  \"kemarin\",\n  \"kemaruk\",\n  \"kemas\",\n  \"kemat\",\n  \"kematu\",\n  \"kematus\",\n  \"kemayu\",\n  \"kembal\",\n  \"kembali\",\n  \"kemban\",\n  \"kembang\",\n  \"kembar\",\n  \"kembara\",\n  \"kembatu\",\n  \"kembayat\",\n  \"kembeng\",\n  \"kembera\",\n  \"kembili\",\n  \"kemboja\",\n  \"kembol\",\n  \"kembu\",\n  \"kembuk\",\n  \"kembung\",\n  \"kembur\",\n  \"kembut\",\n  \"kemeja\",\n  \"kemejan\",\n  \"kemekmek\",\n  \"kemelut\",\n  \"kemenakan\",\n  \"kemendalam\",\n  \"kemendang\",\n  \"kemendur\",\n  \"kementam\",\n  \"kemenyan\",\n  \"kemerakan\",\n  \"kemesu\",\n  \"kemi\",\n  \"kemih\",\n  \"kemik\",\n  \"kemilap\",\n  \"kemiluminesens\",\n  \"kemiri\",\n  \"kemit\",\n  \"kemlaka\",\n  \"kemlandingan\",\n  \"kemloko\",\n  \"kemoceng\",\n  \"kemokinesis\",\n  \"kemon\",\n  \"kemopsikiatri\",\n  \"kemoterapi\",\n  \"kempa\",\n  \"kempal\",\n  \"kempang\",\n  \"kempas\",\n  \"kempek\",\n  \"kempes\",\n  \"kempetai\",\n  \"kempis\",\n  \"kempit\",\n  \"kemplang\",\n  \"kempot\",\n  \"kempu\",\n  \"kempuh\",\n  \"kempul\",\n  \"kempunan\",\n  \"kempung\",\n  \"kemput\",\n  \"kempyang\",\n  \"kemu\",\n  \"kemucing\",\n  \"kemudi\",\n  \"kemudian\",\n  \"kemudu\",\n  \"kemukus\",\n  \"kemul\",\n  \"kemumu\",\n  \"kemuncak\",\n  \"kemuncup\",\n  \"kemundir\",\n  \"kemung\",\n  \"kemungkus\",\n  \"kemuning\",\n  \"kemunting\",\n  \"kemurgi\",\n  \"kemut\",\n  \"kemutul\",\n  \"ken\",\n  \"kena\",\n  \"kenaf\",\n  \"kenal\",\n  \"kenan\",\n  \"kenang\",\n  \"kenanga\",\n  \"kenap\",\n  \"kenapa\",\n  \"kenapang\",\n  \"kenari\",\n  \"kenas\",\n  \"kencan\",\n  \"kencana\",\n  \"kencang\",\n  \"kencar\",\n  \"kenceng\",\n  \"kencing\",\n  \"kencit\",\n  \"kencong\",\n  \"kencrang-kencring\",\n  \"kencreng\",\n  \"kencung\",\n  \"kencur\",\n  \"kendaga\",\n  \"kendal\",\n  \"kendala\",\n  \"kendali\",\n  \"kendana\",\n  \"kendang\",\n  \"kendara\",\n  \"kendati\",\n  \"kendayakan\",\n  \"kendeka\",\n  \"kenderi\",\n  \"kendi\",\n  \"kendil\",\n  \"kendit\",\n  \"kendo\",\n  \"kendong\",\n  \"kenduduk\",\n  \"kendung\",\n  \"kendungan\",\n  \"kendur\",\n  \"kenduri\",\n  \"kenek\",\n  \"keneker\",\n  \"kenem\",\n  \"kenematik\",\n  \"kenes\",\n  \"keng\",\n  \"kengkang\",\n  \"kengkeng\",\n  \"kenidai\",\n  \"kenikir\",\n  \"kening\",\n  \"kenohong\",\n  \"kenong\",\n  \"kenop\",\n  \"kensel\",\n  \"kental\",\n  \"kentang\",\n  \"kentar\",\n  \"kentara\",\n  \"kenteng\",\n  \"kentrung\",\n  \"kentung\",\n  \"kentut\",\n  \"kenur\",\n  \"kenya\",\n  \"kenyal\",\n  \"kenyam\",\n  \"kenyang\",\n  \"kenyat\",\n  \"kenyat-kenyit\",\n  \"kenyet-kenyut\",\n  \"kenyi\",\n  \"kenyih\",\n  \"kenyir\",\n  \"kenyit\",\n  \"kenyut\",\n  \"keok\",\n  \"keong\",\n  \"kep\",\n  \"kepada\",\n  \"kepah\",\n  \"kepai\",\n  \"kepak\",\n  \"kepal\",\n  \"kepala\",\n  \"kepalang\",\n  \"kepam\",\n  \"kepang\",\n  \"kepar\",\n  \"keparat\",\n  \"kepayang\",\n  \"kepecong\",\n  \"kepek\",\n  \"kepel\",\n  \"kepencong\",\n  \"kepeng\",\n  \"keper\",\n  \"keperancak\",\n  \"kepet\",\n  \"kepetang\",\n  \"kepialu\",\n  \"kepiat\",\n  \"kepik\",\n  \"kepil\",\n  \"kepincut\",\n  \"kepinding\",\n  \"keping\",\n  \"kepingin\",\n  \"kepinis\",\n  \"kepinjal\",\n  \"kepiri\",\n  \"kepis\",\n  \"kepit\",\n  \"kepiting\",\n  \"keplak\",\n  \"kepleset\",\n  \"keplok\",\n  \"kepodang\",\n  \"kepoh\",\n  \"kepol\",\n  \"kepompong\",\n  \"keponakan\",\n  \"kepot\",\n  \"keprak\",\n  \"keprek\",\n  \"kepret\",\n  \"kepris\",\n  \"kepruk\",\n  \"kepuh\",\n  \"kepuk\",\n  \"kepul\",\n  \"kepulaga\",\n  \"kepundan\",\n  \"kepundung\",\n  \"kepung\",\n  \"kepurun\",\n  \"keputren\",\n  \"kepuyuk\",\n  \"kera\",\n  \"kerabang\",\n  \"kerabat\",\n  \"kerabik\",\n  \"kerabu\",\n  \"keracak\",\n  \"keracap\",\n  \"keraeng\",\n  \"kerah\",\n  \"kerahi\",\n  \"kerai\",\n  \"kerajang\",\n  \"kerajat\",\n  \"kerak\",\n  \"kerakah\",\n  \"kerakal\",\n  \"kerakap\",\n  \"kerakeling\",\n  \"keram\",\n  \"kerama\",\n  \"keraman\",\n  \"keramas\",\n  \"keramat\",\n  \"keramba\",\n  \"kerambil\",\n  \"kerambit\",\n  \"keramboja\",\n  \"keramik\",\n  \"keramikus\",\n  \"kerampagi\",\n  \"kerampang\",\n  \"keramunting\",\n  \"keran\",\n  \"kerancang\",\n  \"keranda\",\n  \"kerang\",\n  \"kerang-keroh\",\n  \"kerangas\",\n  \"kerangka\",\n  \"kerangkai\",\n  \"kerangkeng\",\n  \"kerani\",\n  \"keranjang\",\n  \"keranjat\",\n  \"keranji\",\n  \"keranjingan\",\n  \"keranta\",\n  \"kerantong\",\n  \"kerap\",\n  \"kerapu\",\n  \"keras\",\n  \"kerasan\",\n  \"kerat\",\n  \"keratabasa\",\n  \"keratin\",\n  \"keratitis\",\n  \"keratoelastin\",\n  \"keraton\",\n  \"kerau\",\n  \"kerawai\",\n  \"kerawak\",\n  \"kerawang\",\n  \"kerawat\",\n  \"kerawit\",\n  \"kerbang\",\n  \"kerbat\",\n  \"kerbau\",\n  \"kerbuk\",\n  \"kercap-kercip\",\n  \"kercap-kercup\",\n  \"kercing\",\n  \"kercit\",\n  \"kercup\",\n  \"kercut\",\n  \"kerdak\",\n  \"kerdam\",\n  \"kerdil\",\n  \"kerdom\",\n  \"kerdut\",\n  \"kere\",\n  \"kerebok\",\n  \"kereceng\",\n  \"kerecik\",\n  \"keredak\",\n  \"keredep\",\n  \"keredok\",\n  \"keredong\",\n  \"kerek\",\n  \"kereket\",\n  \"kerekot\",\n  \"kerekut\",\n  \"keremi\",\n  \"keremot\",\n  \"kerempagi\",\n  \"kerempeng\",\n  \"kerempung\",\n  \"keremus\",\n  \"keren\",\n  \"kerencang\",\n  \"kerencung\",\n  \"kerendang\",\n  \"kereneng\",\n  \"kereng\",\n  \"kerengga\",\n  \"kerenggamunggu\",\n  \"kerengkam\",\n  \"kerengkiang\",\n  \"kerentam\",\n  \"kerentang\",\n  \"kerenting\",\n  \"kerenyam\",\n  \"kerenyot\",\n  \"kerepas\",\n  \"kerepek\",\n  \"kerepes\",\n  \"kerepot\",\n  \"kerepyak\",\n  \"kerese\",\n  \"kerese-pese\",\n  \"keresek\",\n  \"kereseng\",\n  \"keresot\",\n  \"kereta\",\n  \"keretan\",\n  \"keretek\",\n  \"keretot\",\n  \"keretut\",\n  \"kereweng\",\n  \"keri\",\n  \"keriang-keriut\",\n  \"keriap\",\n  \"kerias\",\n  \"keriau\",\n  \"kerical\",\n  \"kericau\",\n  \"keridas\",\n  \"keridik\",\n  \"kerih\",\n  \"kerik\",\n  \"kerikal\",\n  \"kerikam\",\n  \"kerikil\",\n  \"kerikit\",\n  \"kerimut\",\n  \"kerinan\",\n  \"kerincing\",\n  \"kerinding\",\n  \"kering\",\n  \"keringat\",\n  \"keriningan\",\n  \"kerinjal\",\n  \"kerinjang\",\n  \"kerinjing\",\n  \"kerintil\",\n  \"kerinting\",\n  \"kerip\",\n  \"keripik\",\n  \"keriput\",\n  \"keris\",\n  \"kerisi\",\n  \"kerisik\",\n  \"kerising\",\n  \"kerisut\",\n  \"kerit\",\n  \"keritik\",\n  \"keriting\",\n  \"keriuk\",\n  \"keriut\",\n  \"kerja\",\n  \"kerjang\",\n  \"kerjantara\",\n  \"kerjap\",\n  \"kerkah\",\n  \"kerkak\",\n  \"kerkap\",\n  \"kerkau\",\n  \"kerkop\",\n  \"kerkup\",\n  \"kerlap\",\n  \"kerling\",\n  \"kerlip\",\n  \"kermak\",\n  \"kermanici\",\n  \"kermi\",\n  \"kernai\",\n  \"kerneli\",\n  \"kernet\",\n  \"kernu\",\n  \"kernyat-kernyut\",\n  \"kernyau\",\n  \"kernyih\",\n  \"kernying\",\n  \"kernyit\",\n  \"kernyut\",\n  \"kero\",\n  \"kerobak\",\n  \"kerobat\",\n  \"kerobek\",\n  \"keroco\",\n  \"kerocok\",\n  \"kerogen\",\n  \"keroh\",\n  \"kerok\",\n  \"kerokot\",\n  \"keromong\",\n  \"keron\",\n  \"keroncang\",\n  \"keroncong\",\n  \"keroncor\",\n  \"kerong\",\n  \"kerongkongan\",\n  \"kerongsang\",\n  \"kerontang\",\n  \"kerop\",\n  \"keropak\",\n  \"keropas-keropis\",\n  \"keropeng\",\n  \"keropok\",\n  \"keropong\",\n  \"keropos\",\n  \"kerosak\",\n  \"kerosek\",\n  \"kerosi\",\n  \"kerosin\",\n  \"kerosok\",\n  \"kerosong\",\n  \"kerot\",\n  \"kerotak\",\n  \"kerotot\",\n  \"keroyok\",\n  \"kerpai\",\n  \"kerpak\",\n  \"kerpas\",\n  \"kerpubesi\",\n  \"kerpuk\",\n  \"kerpus\",\n  \"kers\",\n  \"kersai\",\n  \"kersak\",\n  \"kersang\",\n  \"kersani\",\n  \"kersen\",\n  \"kersik\",\n  \"kersuk\",\n  \"kertaaji\",\n  \"kertah\",\n  \"kertak\",\n  \"kertang\",\n  \"kertap\",\n  \"kertas\",\n  \"kertau\",\n  \"kertuk\",\n  \"kertus\",\n  \"keruan\",\n  \"kerubim\",\n  \"kerubin\",\n  \"kerubung\",\n  \"kerubut\",\n  \"kerucil\",\n  \"kerucut\",\n  \"kerudung\",\n  \"keruh\",\n  \"keruing\",\n  \"keruit\",\n  \"keruk\",\n  \"kerukut\",\n  \"kerul\",\n  \"keruma\",\n  \"kerumit\",\n  \"kerumuk\",\n  \"kerumun\",\n  \"kerumus\",\n  \"kerun\",\n  \"kerung\",\n  \"kerunkel\",\n  \"keruntang-pungkang\",\n  \"kerunting\",\n  \"keruntung\",\n  \"kerunyut\",\n  \"kerup\",\n  \"kerupuk\",\n  \"kerut\",\n  \"kerutak\",\n  \"kerutup\",\n  \"keruyuk\",\n  \"kes\",\n  \"kesah\",\n  \"kesak\",\n  \"kesal\",\n  \"kesam\",\n  \"kesambet\",\n  \"kesambi\",\n  \"kesan\",\n  \"kesana\",\n  \"kesandung\",\n  \"kesang\",\n  \"kesangsang\",\n  \"kesap-kesip\",\n  \"kesasar\",\n  \"kesat\",\n  \"kesatria\",\n  \"kesek\",\n  \"kesel\",\n  \"keselak\",\n  \"keseleo\",\n  \"kesemek\",\n  \"kesengsem\",\n  \"keseran\",\n  \"keseser\",\n  \"keset\",\n  \"kesi\",\n  \"kesiap\",\n  \"kesik\",\n  \"kesima\",\n  \"kesimbukan\",\n  \"kesini\",\n  \"kesip\",\n  \"kesitu\",\n  \"kesiur\",\n  \"keskul\",\n  \"kesmaran\",\n  \"kesohor\",\n  \"kesomplok\",\n  \"kesongo\",\n  \"kesot\",\n  \"kesrakat\",\n  \"kesting\",\n  \"kesturi\",\n  \"kesu-kesi\",\n  \"kesuh-kesih\",\n  \"kesuk-kesik\",\n  \"kesuma\",\n  \"kesumat\",\n  \"kesumba\",\n  \"kesup\",\n  \"kesusu\",\n  \"kesut\",\n  \"keta\",\n  \"ketaban\",\n  \"ketai\",\n  \"ketak\",\n  \"ketakar\",\n  \"ketakong\",\n  \"ketal\",\n  \"ketam\",\n  \"ketambak\",\n  \"ketampi\",\n  \"ketan\",\n  \"ketang\",\n  \"ketap\",\n  \"ketapak\",\n  \"ketapang\",\n  \"ketapek\",\n  \"ketar\",\n  \"ketarap\",\n  \"ketat\",\n  \"ketaton\",\n  \"ketawa\",\n  \"ketaya\",\n  \"ketayap\",\n  \"ketegar\",\n  \"ketek\",\n  \"ketel\",\n  \"ketela\",\n  \"ketemu\",\n  \"keten\",\n  \"ketena\",\n  \"keteng\",\n  \"ketepel\",\n  \"ketepeng\",\n  \"keter\",\n  \"ketes\",\n  \"keteter\",\n  \"ketgat\",\n  \"keti\",\n  \"ketiak\",\n  \"ketial\",\n  \"ketiap\",\n  \"ketiau\",\n  \"ketiban\",\n  \"ketiding\",\n  \"ketik\",\n  \"ketika\",\n  \"ketil\",\n  \"ketilang\",\n  \"ketimbang\",\n  \"ketimbis\",\n  \"ketimbul\",\n  \"ketimbung\",\n  \"keting\",\n  \"ketinjau\",\n  \"ketinting\",\n  \"ketip\",\n  \"ketiplak\",\n  \"ketipung\",\n  \"ketirah\",\n  \"ketis\",\n  \"ketitir\",\n  \"ketlingsut\",\n  \"ketogenesis\",\n  \"ketok\",\n  \"ketola\",\n  \"ketombe\",\n  \"keton\",\n  \"ketonemia\",\n  \"ketonggeng\",\n  \"ketonuria\",\n  \"ketopong\",\n  \"ketoprak\",\n  \"ketosa\",\n  \"ketrek\",\n  \"ketu\",\n  \"ketua\",\n  \"ketuat\",\n  \"ketuban\",\n  \"ketuir\",\n  \"ketuk\",\n  \"ketul\",\n  \"ketumbar\",\n  \"ketumbi\",\n  \"ketumbit\",\n  \"ketumbu\",\n  \"ketumpang\",\n  \"ketun\",\n  \"ketungging\",\n  \"ketup\",\n  \"ketupa\",\n  \"ketupat\",\n  \"ketupuk\",\n  \"ketur\",\n  \"ketus\",\n  \"kev\",\n  \"kewalahan\",\n  \"keweni\",\n  \"kewer\",\n  \"kewes\",\n  \"kewuh\",\n  \"kha\",\n  \"khabis\",\n  \"khadam\",\n  \"khadim\",\n  \"khafi\",\n  \"khair\",\n  \"khairat\",\n  \"khalas\",\n  \"khalayak\",\n  \"khali\",\n  \"khalifah\",\n  \"khalifatulah\",\n  \"khalifatullah\",\n  \"khalik\",\n  \"khalikah\",\n  \"khalikul\",\n  \"khalil\",\n  \"khalilullah\",\n  \"khalis\",\n  \"khalwat\",\n  \"khamar\",\n  \"khamir\",\n  \"khamsin\",\n  \"khamzab\",\n  \"khanjar\",\n  \"kharab\",\n  \"khas\",\n  \"khasi\",\n  \"khasiat\",\n  \"khat\",\n  \"khatam\",\n  \"khatib\",\n  \"khatifah\",\n  \"khatimah\",\n  \"khatulistiwa\",\n  \"khauf\",\n  \"khaul\",\n  \"khawas\",\n  \"khawasulkhawas\",\n  \"khawatir\",\n  \"khayal\",\n  \"khayali\",\n  \"khazanah\",\n  \"khi\",\n  \"khianat\",\n  \"khiar\",\n  \"khidaah\",\n  \"khidmah\",\n  \"khidmat\",\n  \"khilaf\",\n  \"khilafiah\",\n  \"khinzir\",\n  \"khisit\",\n  \"khitah\",\n  \"khitan\",\n  \"khitbah\",\n  \"khizanatulkitab\",\n  \"khoja\",\n  \"khojah\",\n  \"khotbah\",\n  \"khuduk\",\n  \"khulafa\",\n  \"khuldi\",\n  \"khuluk\",\n  \"khunsa\",\n  \"khurafat\",\n  \"khusuf\",\n  \"khusus\",\n  \"khusyuk\",\n  \"kia\",\n  \"kiah\",\n  \"kiai\",\n  \"kiak\",\n  \"kial\",\n  \"kiam\",\n  \"kiamat\",\n  \"kiambang\",\n  \"kian\",\n  \"kiang-kiut\",\n  \"kiani\",\n  \"kiap\",\n  \"kiar\",\n  \"kiara\",\n  \"kias\",\n  \"kiasi\",\n  \"kiasmus\",\n  \"kiat\",\n  \"kiaupau\",\n  \"kibang\",\n  \"kibar\",\n  \"kibas\",\n  \"kibernetika\",\n  \"kibir\",\n  \"kiblat\",\n  \"kiblik\",\n  \"kibriah\",\n  \"kibul\",\n  \"kicang-kecoh\",\n  \"kicang-kicu\",\n  \"kicau\",\n  \"kici\",\n  \"kicik\",\n  \"kicu\",\n  \"kicuh\",\n  \"kicut\",\n  \"kida-kida\",\n  \"kidal\",\n  \"kidam\",\n  \"kidang\",\n  \"kidar\",\n  \"kidul\",\n  \"kidung\",\n  \"kifayah\",\n  \"kifoskaliose\",\n  \"kifoskaliosis\",\n  \"kihanat\",\n  \"kijai\",\n  \"kijang\",\n  \"kijil\",\n  \"kijing\",\n  \"kikih\",\n  \"kikik\",\n  \"kikil\",\n  \"kikir\",\n  \"kikis\",\n  \"kikitir\",\n  \"kikuk\",\n  \"kikus\",\n  \"kila\",\n  \"kilah\",\n  \"kilai\",\n  \"kilan\",\n  \"kilang\",\n  \"kilap\",\n  \"kilar\",\n  \"kilas\",\n  \"kilat\",\n  \"kilau\",\n  \"kili\",\n  \"kilik\",\n  \"kilir\",\n  \"kiln\",\n  \"kilo\",\n  \"kilogram\",\n  \"kilohertz\",\n  \"kilokalori\",\n  \"kiloliter\",\n  \"kilometer\",\n  \"kiloton\",\n  \"kilovolt\",\n  \"kilowatt\",\n  \"kilowattjam\",\n  \"kilus\",\n  \"kim\",\n  \"kima\",\n  \"kimah\",\n  \"kimantu\",\n  \"kimar\",\n  \"kimbah\",\n  \"kimbang\",\n  \"kimbul\",\n  \"kimia\",\n  \"kimiawi\",\n  \"kimkha\",\n  \"kimlo\",\n  \"kimo\",\n  \"kimograf\",\n  \"kimono\",\n  \"kimpal\",\n  \"kimpul\",\n  \"kimpus\",\n  \"kimput\",\n  \"kimus\",\n  \"kina\",\n  \"kinang\",\n  \"kinantan\",\n  \"kinanti\",\n  \"kinasa\",\n  \"kinasih\",\n  \"kinca\",\n  \"kincah\",\n  \"kincak\",\n  \"kincang\",\n  \"kincau\",\n  \"kincir\",\n  \"kincit\",\n  \"kincung\",\n  \"kincup\",\n  \"kindap\",\n  \"kinematika\",\n  \"kinematograf\",\n  \"kinesika\",\n  \"kinesimeter\",\n  \"kineskop\",\n  \"kinestesia\",\n  \"kinestesiometer\",\n  \"kinestesis\",\n  \"kinetik\",\n  \"kinetika\",\n  \"kinetokardiografi\",\n  \"kingking\",\n  \"kingkip\",\n  \"kingkit\",\n  \"kingkong\",\n  \"kini\",\n  \"kinine\",\n  \"kinja\",\n  \"kinjat\",\n  \"kinjeng\",\n  \"kinred\",\n  \"kintaka\",\n  \"kintal\",\n  \"kinte\",\n  \"kintil\",\n  \"kinyang\",\n  \"kio\",\n  \"kios\",\n  \"kipa\",\n  \"kipai\",\n  \"kipang\",\n  \"kipas\",\n  \"kiper\",\n  \"kiprah\",\n  \"kiprat\",\n  \"kipsiau\",\n  \"kipu\",\n  \"kir\",\n  \"kira\",\n  \"kiraah\",\n  \"kiraat\",\n  \"kirab\",\n  \"kirai\",\n  \"kiramat\",\n  \"kiran\",\n  \"kirana\",\n  \"kirap\",\n  \"kiras\",\n  \"kirau\",\n  \"kirbat\",\n  \"kiri\",\n  \"kirik\",\n  \"kirim\",\n  \"kirinyu\",\n  \"kirip\",\n  \"kiris\",\n  \"kirita\",\n  \"kirmizi\",\n  \"kiru\",\n  \"kiruh\",\n  \"kirung\",\n  \"kisa\",\n  \"kisah\",\n  \"kisai\",\n  \"kisar\",\n  \"kisas\",\n  \"kisat\",\n  \"kisi\",\n  \"kisik\",\n  \"kismat\",\n  \"kismis\",\n  \"kisruh\",\n  \"kista\",\n  \"kisut\",\n  \"kiswah\",\n  \"kit\",\n  \"kita\",\n  \"kitab\",\n  \"kitabulah\",\n  \"kitang\",\n  \"kitar\",\n  \"kitik\",\n  \"kitin\",\n  \"kiting\",\n  \"kitir\",\n  \"kitorang\",\n  \"kitri\",\n  \"kits\",\n  \"kiu\",\n  \"kiuk\",\n  \"kiwari\",\n  \"kiwi\",\n  \"kizib\",\n  \"klaim\",\n  \"klakklik\",\n  \"klakson\",\n  \"klamidospora\",\n  \"klan\",\n  \"klandestin\",\n  \"klangenan\",\n  \"klante\",\n  \"klarifikasi\",\n  \"klarinet\",\n  \"klasemen\",\n  \"klasifikasi\",\n  \"klasik\",\n  \"klasikal\",\n  \"klasis\",\n  \"klasisisme\",\n  \"klausa\",\n  \"klaustrofobia\",\n  \"klaustrum\",\n  \"klausul\",\n  \"klaver\",\n  \"klavikor\",\n  \"klavikula\",\n  \"klaviola\",\n  \"kleder\",\n  \"kleidotomi\",\n  \"kleistogami\",\n  \"klem\",\n  \"klemensi\",\n  \"klen\",\n  \"klenengan\",\n  \"klengkeng\",\n  \"klenik\",\n  \"klenteng\",\n  \"klep\",\n  \"klepon\",\n  \"klepsidra\",\n  \"kleptofobi\",\n  \"kleptoman\",\n  \"kleptomania\",\n  \"kleptomaniak\",\n  \"klerek\",\n  \"klerikal\",\n  \"klerikus\",\n  \"klerus\",\n  \"klien\",\n  \"klik\",\n  \"kliker\",\n  \"klimaks\",\n  \"klimakterium\",\n  \"klimaktorium\",\n  \"klimatografi\",\n  \"klimatolog\",\n  \"klimatologi\",\n  \"klimis\",\n  \"klimograf\",\n  \"klimosekuen\",\n  \"klimoskop\",\n  \"klin\",\n  \"klinik\",\n  \"klining\",\n  \"klinis\",\n  \"klinisi\",\n  \"klinometer\",\n  \"klip\",\n  \"kliping\",\n  \"klir\",\n  \"kliring\",\n  \"klise\",\n  \"klistron\",\n  \"klitelum\",\n  \"klitik\",\n  \"klitoris\",\n  \"kliwon\",\n  \"kliyengan\",\n  \"kloaka\",\n  \"klon\",\n  \"klona\",\n  \"kloning\",\n  \"klonograf\",\n  \"klonus\",\n  \"klop\",\n  \"klor\",\n  \"kloral\",\n  \"kloramina\",\n  \"klorat\",\n  \"klorida\",\n  \"kloridimeter\",\n  \"klorin\",\n  \"klorinasi\",\n  \"klorit\",\n  \"klorobenzena\",\n  \"klorofil\",\n  \"kloroform\",\n  \"kloroformat\",\n  \"klorokuin\",\n  \"klorolignin\",\n  \"kloroplas\",\n  \"kloroprena\",\n  \"klorosis\",\n  \"kloset\",\n  \"klub\",\n  \"kluntang-kluntung\",\n  \"klusium\",\n  \"knalpot\",\n  \"knop\",\n  \"knot\",\n  \"koa\",\n  \"koagel\",\n  \"koagregasi\",\n  \"koagulan\",\n  \"koagulasi\",\n  \"koak\",\n  \"koaksi\",\n  \"koaksial\",\n  \"koala\",\n  \"koalisi\",\n  \"koana\",\n  \"koar\",\n  \"kobah\",\n  \"kobak\",\n  \"kobalamin\",\n  \"kobalt\",\n  \"kobar\",\n  \"kober\",\n  \"koboi\",\n  \"koboisme\",\n  \"kobok\",\n  \"kobol\",\n  \"kobongan\",\n  \"kobra\",\n  \"kocah-kacih\",\n  \"kocak\",\n  \"kocar-kacir\",\n  \"kocek\",\n  \"koci\",\n  \"kocilembik\",\n  \"kocoh\",\n  \"kocok\",\n  \"kocolan\",\n  \"kocong\",\n  \"kocor\",\n  \"koda\",\n  \"kodak\",\n  \"kode\",\n  \"kodein\",\n  \"kodeks\",\n  \"kodi\",\n  \"kodifikasi\",\n  \"kodok\",\n  \"kodominan\",\n  \"kodrat\",\n  \"kodrati\",\n  \"koe\",\n  \"koedukasi\",\n  \"koefisien\",\n  \"koeksistensi\",\n  \"koenzim\",\n  \"koersi\",\n  \"koersif\",\n  \"kofaktor\",\n  \"kofein\",\n  \"kofermen\",\n  \"kognat\",\n  \"kognatif\",\n  \"kognisi\",\n  \"kognitif\",\n  \"koh\",\n  \"kohabitasi\",\n  \"koheren\",\n  \"koherensi\",\n  \"kohesi\",\n  \"kohesif\",\n  \"kohir\",\n  \"kohlea\",\n  \"kohol\",\n  \"kohong\",\n  \"kohor\",\n  \"koil\",\n  \"koin\",\n  \"koinseden\",\n  \"koinsiden\",\n  \"koinsidensi\",\n  \"koipuk\",\n  \"koit\",\n  \"koitus\",\n  \"koja\",\n  \"kojah\",\n  \"kojang\",\n  \"kojoh\",\n  \"kojol\",\n  \"kojor\",\n  \"kok\",\n  \"koka\",\n  \"kokah\",\n  \"kokaina\",\n  \"kokainisasi\",\n  \"kokainisme\",\n  \"kokang\",\n  \"kokarde\",\n  \"kokas\",\n  \"koki\",\n  \"kokila\",\n  \"koklea\",\n  \"kokoa\",\n  \"kokoh\",\n  \"kokok\",\n  \"kokokbeluk\",\n  \"kokol\",\n  \"kokon\",\n  \"kokosan\",\n  \"kokot\",\n  \"kokpit\",\n  \"koksa\",\n  \"koktail\",\n  \"kokurikuler\",\n  \"kokus\",\n  \"kol\",\n  \"kola\",\n  \"kolaborasi\",\n  \"kolaborator\",\n  \"kolagen\",\n  \"kolak\",\n  \"kolam\",\n  \"kolang-kaling\",\n  \"kolaps\",\n  \"kolaret\",\n  \"kolase\",\n  \"kolateral\",\n  \"kolator\",\n  \"kolega\",\n  \"kolegial\",\n  \"kolegialitas\",\n  \"koleh-koleh\",\n  \"kolek\",\n  \"koleksi\",\n  \"kolekte\",\n  \"kolektif\",\n  \"kolektivis\",\n  \"kolektivisasi\",\n  \"kolektivisme\",\n  \"kolektivitas\",\n  \"kolektor\",\n  \"kolembeng\",\n  \"kolemia\",\n  \"koleng\",\n  \"koleoptil\",\n  \"kolera\",\n  \"kolese\",\n  \"kolesom\",\n  \"kolesterin\",\n  \"kolesterol\",\n  \"koli\",\n  \"kolibri\",\n  \"koligasi\",\n  \"kolik\",\n  \"kolimasi\",\n  \"kolina\",\n  \"kolintang\",\n  \"koliseng\",\n  \"kolitis\",\n  \"kolkhoz\",\n  \"kolodion\",\n  \"kolofon\",\n  \"kologen\",\n  \"koloid\",\n  \"koloidal\",\n  \"kolok\",\n  \"kolokasi\",\n  \"kolokium\",\n  \"kolom\",\n  \"kolomben\",\n  \"kolon\",\n  \"kolone\",\n  \"kolonel\",\n  \"kolong\",\n  \"koloni\",\n  \"kolonial\",\n  \"kolonialis\",\n  \"kolonialisme\",\n  \"kolonis\",\n  \"kolonisasi\",\n  \"kolonoskop\",\n  \"kolonye\",\n  \"kolor\",\n  \"kolorimeter\",\n  \"kolorimetri\",\n  \"kolosal\",\n  \"kolosom\",\n  \"kolostomi\",\n  \"kolostrum\",\n  \"kolot\",\n  \"kolportir\",\n  \"kolt\",\n  \"kolum\",\n  \"kolumela\",\n  \"kolumnis\",\n  \"kolumnus\",\n  \"kolusi\",\n  \"koluvium\",\n  \"kom\",\n  \"koma\",\n  \"komaliwan\",\n  \"koman\",\n  \"komandan\",\n  \"komandemen\",\n  \"komanditer\",\n  \"komando\",\n  \"komaran\",\n  \"komat-kamit\",\n  \"kombat\",\n  \"kombinasi\",\n  \"kombo\",\n  \"kombor\",\n  \"kombusio\",\n  \"komedi\",\n  \"komedian\",\n  \"komendur\",\n  \"komeng\",\n  \"komensal\",\n  \"komensalisme\",\n  \"komentar\",\n  \"komentator\",\n  \"komersial\",\n  \"komersialisasi\",\n  \"komet\",\n  \"komfortabel\",\n  \"komidi\",\n  \"komik\",\n  \"komikal\",\n  \"komikus\",\n  \"kominusi\",\n  \"komis\",\n  \"komisar\",\n  \"komisariat\",\n  \"komisaris\",\n  \"komisi\",\n  \"komisioner\",\n  \"komisura\",\n  \"komit\",\n  \"komite\",\n  \"komitmen\",\n  \"komkoma\",\n  \"komoditas\",\n  \"komodo\",\n  \"komodor\",\n  \"kompak\",\n  \"kompanyon\",\n  \"komparasi\",\n  \"komparatif\",\n  \"komparator\",\n  \"kompartemen\",\n  \"kompas\",\n  \"kompatibel\",\n  \"kompatibilitas\",\n  \"kompatriot\",\n  \"kompendium\",\n  \"kompeni\",\n  \"kompensasi\",\n  \"kompes\",\n  \"kompeten\",\n  \"kompetensi\",\n  \"kompetisi\",\n  \"kompetitif\",\n  \"kompetitor\",\n  \"kompi\",\n  \"kompilasi\",\n  \"kompilator\",\n  \"komplain\",\n  \"kompleks\",\n  \"kompleksitas\",\n  \"komplemen\",\n  \"komplementer\",\n  \"komplet\",\n  \"komplikasi\",\n  \"komplikatif\",\n  \"komplimen\",\n  \"komplot\",\n  \"kompon\",\n  \"komponen\",\n  \"kompong\",\n  \"komponis\",\n  \"kompor\",\n  \"kompos\",\n  \"komposer\",\n  \"komposisi\",\n  \"komposit\",\n  \"kompositum\",\n  \"komprador\",\n  \"komprang\",\n  \"komprehensif\",\n  \"kompres\",\n  \"kompresi\",\n  \"kompresor\",\n  \"kompromi\",\n  \"kompromistis\",\n  \"kompulsi\",\n  \"kompulsif\",\n  \"komputer\",\n  \"komputerisasi\",\n  \"komtabilitas\",\n  \"komunal\",\n  \"komunalisme\",\n  \"komunalistik\",\n  \"komune\",\n  \"komuni\",\n  \"komunikabilitas\",\n  \"komunikan\",\n  \"komunikasi\",\n  \"komunikatif\",\n  \"komunikator\",\n  \"komunike\",\n  \"komunis\",\n  \"komunisme\",\n  \"komunistis\",\n  \"komunistofobi\",\n  \"komunistofobia\",\n  \"komunitas\",\n  \"komutator\",\n  \"komuter\",\n  \"konan\",\n  \"konco\",\n  \"koncoisme\",\n  \"kondang\",\n  \"kondangan\",\n  \"konde\",\n  \"kondektur\",\n  \"kondensasi\",\n  \"kondensat\",\n  \"kondensator\",\n  \"kondensor\",\n  \"kondilus\",\n  \"kondisi\",\n  \"kondom\",\n  \"kondominium\",\n  \"kondomisasi\",\n  \"kondor\",\n  \"kondrin\",\n  \"kondroblas\",\n  \"konduite\",\n  \"konduksi\",\n  \"konduktans\",\n  \"konduktimeter\",\n  \"konduktivitas\",\n  \"konduktor\",\n  \"kondusif\",\n  \"koneksi\",\n  \"koneksitas\",\n  \"konektor\",\n  \"konfederasi\",\n  \"konfeksi\",\n  \"konferensi\",\n  \"konfesi\",\n  \"konfigurasi\",\n  \"konfiks\",\n  \"konfirmasi\",\n  \"konflik\",\n  \"konform\",\n  \"konformitas\",\n  \"konfrontasi\",\n  \"konfrontatif\",\n  \"kongenital\",\n  \"kongesti\",\n  \"kongkalikong\",\n  \"kongko\",\n  \"kongkoan\",\n  \"kongkong\",\n  \"kongkret\",\n  \"konglomerasi\",\n  \"konglomerat\",\n  \"kongregasi\",\n  \"kongres\",\n  \"kongresis\",\n  \"kongsi\",\n  \"konifera\",\n  \"konis\",\n  \"konjugan\",\n  \"konjugasi\",\n  \"konjungsi\",\n  \"konjungter\",\n  \"konjungtif\",\n  \"konjungtiva\",\n  \"konjungtivitis\",\n  \"konjungtor\",\n  \"konjungtur\",\n  \"konkaf\",\n  \"konklaf\",\n  \"konklusi\",\n  \"konklusif\",\n  \"konkologi\",\n  \"konkomitan\",\n  \"konkordansi\",\n  \"konkordat\",\n  \"konkresi\",\n  \"konkret\",\n  \"konkretisasi\",\n  \"konkuisnador\",\n  \"konkuren\",\n  \"konkurensi\",\n  \"konkurs\",\n  \"konoid\",\n  \"konon\",\n  \"konosemen\",\n  \"konotasi\",\n  \"konotatif\",\n  \"konperensi\",\n  \"konsekrasi\",\n  \"konsekuen\",\n  \"konsekuensi\",\n  \"konsekutif\",\n  \"konseli\",\n  \"konseling\",\n  \"konselor\",\n  \"konsensus\",\n  \"konsentrasi\",\n  \"konsentrat\",\n  \"konsentrik\",\n  \"konsentris\",\n  \"konsep\",\n  \"konsepsi\",\n  \"konsepsional\",\n  \"konseptor\",\n  \"konseptual\",\n  \"konseptualisasi\",\n  \"konser\",\n  \"konsertina\",\n  \"konserto\",\n  \"konservasi\",\n  \"konservasionis\",\n  \"konservatif\",\n  \"konservatisme\",\n  \"konservator\",\n  \"konservatori\",\n  \"konservatorium\",\n  \"konsesi\",\n  \"konsesif\",\n  \"konsesional\",\n  \"konsiderans\",\n  \"konsiderasi\",\n  \"konsili\",\n  \"konsiliasi\",\n  \"konsinyasi\",\n  \"konsinyatir\",\n  \"konsisten\",\n  \"konsistensi\",\n  \"konsistori\",\n  \"konsol\",\n  \"konsolasi\",\n  \"konsolidasi\",\n  \"konsonan\",\n  \"konsonansi\",\n  \"konsonantal\",\n  \"konsorsium\",\n  \"konspirasi\",\n  \"konspiratif\",\n  \"konspirator\",\n  \"konstabel\",\n  \"konstan\",\n  \"konstanta\",\n  \"konstantagravitasi\",\n  \"konstatasi\",\n  \"konstatatif\",\n  \"konstatir\",\n  \"konstelasi\",\n  \"konstipasi\",\n  \"konstituante\",\n  \"konstituen\",\n  \"konstitusi\",\n  \"konstitusional\",\n  \"konstitusionalisme\",\n  \"konstriksi\",\n  \"konstriktor\",\n  \"konstruksi\",\n  \"konstruktif\",\n  \"konstruktivisme\",\n  \"konsul\",\n  \"konsulat\",\n  \"konsulen\",\n  \"konsuler\",\n  \"konsultan\",\n  \"konsultasi\",\n  \"konsumen\",\n  \"konsumer\",\n  \"konsumerisme\",\n  \"konsumsi\",\n  \"konsumtif\",\n  \"kontak\",\n  \"kontal-kantil\",\n  \"kontaminasi\",\n  \"kontan\",\n  \"kontang-kanting\",\n  \"konte\",\n  \"konteks\",\n  \"kontekstual\",\n  \"kontekstualisme\",\n  \"kontemplasi\",\n  \"kontemplatif\",\n  \"kontemporer\",\n  \"konten\",\n  \"konter\",\n  \"kontes\",\n  \"kontestan\",\n  \"kontet\",\n  \"kontiguitas\",\n  \"kontinen\",\n  \"kontinental\",\n  \"kontingen\",\n  \"kontinu\",\n  \"kontinuitas\",\n  \"kontinum\",\n  \"kontoid\",\n  \"kontol\",\n  \"kontra\",\n  \"kontrabande\",\n  \"kontrabas\",\n  \"kontradiksi\",\n  \"kontradiktif\",\n  \"kontraindikasi\",\n  \"kontrak\",\n  \"kontraksi\",\n  \"kontraktor\",\n  \"kontraktual\",\n  \"kontraproduktif\",\n  \"kontras\",\n  \"kontrasepsi\",\n  \"kontraseptif\",\n  \"kontravensi\",\n  \"kontribusi\",\n  \"kontributor\",\n  \"kontrol\",\n  \"kontrolir\",\n  \"kontroversi\",\n  \"kontroversial\",\n  \"kontur\",\n  \"konus\",\n  \"konveks\",\n  \"konveksi\",\n  \"konvektif\",\n  \"konvensi\",\n  \"konvensional\",\n  \"konvergen\",\n  \"konvergensi\",\n  \"konversasi\",\n  \"konversi\",\n  \"konveyor\",\n  \"konvoi\",\n  \"konvolusi\",\n  \"konvulsan\",\n  \"konvulsi\",\n  \"konyak\",\n  \"konyal\",\n  \"konyan\",\n  \"konyol\",\n  \"kooperasi\",\n  \"kooperatif\",\n  \"kooperativisme\",\n  \"kooperator\",\n  \"kooptasi\",\n  \"koordinasi\",\n  \"koordinat\",\n  \"koordinatif\",\n  \"koordinator\",\n  \"kop\",\n  \"kopah\",\n  \"kopaiba\",\n  \"kopak\",\n  \"kopal\",\n  \"kopat-kapit\",\n  \"kopbal\",\n  \"kopek\",\n  \"kopel\",\n  \"kopelrim\",\n  \"koper\",\n  \"koperasi\",\n  \"kopet\",\n  \"kopi\",\n  \"kopiah\",\n  \"kopilot\",\n  \"kopling\",\n  \"koplo\",\n  \"kopok\",\n  \"kopolimer\",\n  \"kopong\",\n  \"kopra\",\n  \"koprafagia\",\n  \"koprak\",\n  \"kopral\",\n  \"koprok\",\n  \"koprol\",\n  \"koprolit\",\n  \"kopula\",\n  \"kopulasi\",\n  \"kopulatif\",\n  \"kopyok\",\n  \"kopyor\",\n  \"kor\",\n  \"koral\",\n  \"koralit\",\n  \"koran\",\n  \"korano\",\n  \"korban\",\n  \"korden\",\n  \"kordial\",\n  \"kordit\",\n  \"kordon\",\n  \"korduroi\",\n  \"kored\",\n  \"koreferensialitas\",\n  \"korek\",\n  \"koreke\",\n  \"koreksi\",\n  \"korektif\",\n  \"korektor\",\n  \"korelasi\",\n  \"korelatif\",\n  \"korenah\",\n  \"koreng\",\n  \"koreograf\",\n  \"koreografer\",\n  \"koreografi\",\n  \"koreografis\",\n  \"kores\",\n  \"koresponden\",\n  \"korespondensi\",\n  \"koret\",\n  \"koridor\",\n  \"korion\",\n  \"kornea\",\n  \"kornel\",\n  \"korner\",\n  \"kornet\",\n  \"koroh\",\n  \"koroid\",\n  \"korok\",\n  \"korologi\",\n  \"korona\",\n  \"koronal\",\n  \"koroner\",\n  \"korong\",\n  \"korosi\",\n  \"korosif\",\n  \"korporasi\",\n  \"korporat\",\n  \"korporatif\",\n  \"korporatisme\",\n  \"korps\",\n  \"korpulensi\",\n  \"korpus\",\n  \"korsase\",\n  \"korsel\",\n  \"korselet\",\n  \"korset\",\n  \"korsleting\",\n  \"korteks\",\n  \"kortikulus\",\n  \"korting\",\n  \"kortison\",\n  \"korugator\",\n  \"korundum\",\n  \"korup\",\n  \"korupsi\",\n  \"koruptif\",\n  \"koruptor\",\n  \"korve\",\n  \"korvet\",\n  \"kosak-kasik\",\n  \"kosakata\",\n  \"kosar\",\n  \"kosbas\",\n  \"kosek\",\n  \"kosekan\",\n  \"kosel\",\n  \"kosen\",\n  \"koset\",\n  \"kosinus\",\n  \"kosmetik\",\n  \"kosmetilogi\",\n  \"kosmetolog\",\n  \"kosmetologi\",\n  \"kosmetologis\",\n  \"kosmis\",\n  \"kosmogoni\",\n  \"kosmografi\",\n  \"kosmologi\",\n  \"kosmologis\",\n  \"kosmonaut\",\n  \"kosmopolit\",\n  \"kosmopolitan\",\n  \"kosmopolitanisme\",\n  \"kosmos\",\n  \"kosmotron\",\n  \"kosokbali\",\n  \"kosong\",\n  \"kostum\",\n  \"kota\",\n  \"kotah\",\n  \"kotai\",\n  \"kotak\",\n  \"kotak-katik\",\n  \"kotaklema\",\n  \"kotek\",\n  \"koteka\",\n  \"koteks\",\n  \"koteng\",\n  \"koterek\",\n  \"kotes\",\n  \"kotiledon\",\n  \"kotipa\",\n  \"kotok\",\n  \"kotong\",\n  \"kotor\",\n  \"kotrek\",\n  \"kovalensi\",\n  \"kover\",\n  \"kowan\",\n  \"kowek\",\n  \"koyak\",\n  \"koyam\",\n  \"koyan\",\n  \"koyok\",\n  \"krai\",\n  \"krakal\",\n  \"kram\",\n  \"krama\",\n  \"kranapaksa\",\n  \"krangeyan\",\n  \"kraniologi\",\n  \"kraniometri\",\n  \"kraniotomi\",\n  \"kranium\",\n  \"krans\",\n  \"krasis\",\n  \"krayon\",\n  \"kreasi\",\n  \"kreatif\",\n  \"kreativitas\",\n  \"kreator\",\n  \"krebo\",\n  \"krecek\",\n  \"kredibilitas\",\n  \"kredit\",\n  \"kreditabel\",\n  \"kreditor\",\n  \"kredo\",\n  \"krem\",\n  \"kremasi\",\n  \"krematori\",\n  \"krematorium\",\n  \"kreol\",\n  \"kreolin\",\n  \"kreolisasi\",\n  \"kreosol\",\n  \"kresendo\",\n  \"kresol\",\n  \"kretin\",\n  \"kribo\",\n  \"kricak\",\n  \"krida\",\n  \"krifoli\",\n  \"krim\",\n  \"kriminal\",\n  \"kriminalis\",\n  \"kriminalisasi\",\n  \"kriminalitas\",\n  \"kriminolog\",\n  \"kriminologi\",\n  \"kriminologis\",\n  \"kring\",\n  \"krio\",\n  \"kriofil\",\n  \"kriofit\",\n  \"kriogen\",\n  \"kriogenika\",\n  \"krioterapi\",\n  \"kripta\",\n  \"kriptogam\",\n  \"kriptografi\",\n  \"kriptogram\",\n  \"kriptol\",\n  \"kripton\",\n  \"krisan\",\n  \"krisantemum\",\n  \"krisis\",\n  \"krisma\",\n  \"krisoberil\",\n  \"krisofil\",\n  \"krisolit\",\n  \"krisopras\",\n  \"krista\",\n  \"kristal\",\n  \"kristalisasi\",\n  \"kristalografi\",\n  \"kristaloid\",\n  \"kristalosa\",\n  \"kristen\",\n  \"kristiani\",\n  \"kristus\",\n  \"kriteria\",\n  \"kriterium\",\n  \"kritik\",\n  \"kritikus\",\n  \"kritis\",\n  \"kritisi\",\n  \"kriya\",\n  \"krobongan\",\n  \"kroco\",\n  \"kroket\",\n  \"krol\",\n  \"krom\",\n  \"kromat\",\n  \"kromatid\",\n  \"kromatika\",\n  \"kromatin\",\n  \"kromatis\",\n  \"kromatofor\",\n  \"kromatografi\",\n  \"kromit\",\n  \"kromium\",\n  \"kromo\",\n  \"kromofil\",\n  \"kromofob\",\n  \"kromogen\",\n  \"kromong\",\n  \"kromosfer\",\n  \"kromosom\",\n  \"kromotropi\",\n  \"krompyang\",\n  \"kronem\",\n  \"kroni\",\n  \"kronik\",\n  \"kroniometri\",\n  \"kronis\",\n  \"kronisme\",\n  \"kronobiologi\",\n  \"kronogram\",\n  \"kronologi\",\n  \"kronologis\",\n  \"kronometer\",\n  \"kronosekuen\",\n  \"kronoskop\",\n  \"krosboi\",\n  \"kroto\",\n  \"kru\",\n  \"kruistik\",\n  \"kruk\",\n  \"krukat\",\n  \"krusial\",\n  \"krustasea\",\n  \"ksatria\",\n  \"ksi\",\n  \"kuaci\",\n  \"kuadran\",\n  \"kuadrat\",\n  \"kuadratika\",\n  \"kuadratur\",\n  \"kuadratus\",\n  \"kuadrenium\",\n  \"kuadriliun\",\n  \"kuadripartit\",\n  \"kuadrisep\",\n  \"kuadrupel\",\n  \"kuadrupleks\",\n  \"kuadruplet\",\n  \"kuah\",\n  \"kuai\",\n  \"kuak\",\n  \"kuala\",\n  \"kualat\",\n  \"kuali\",\n  \"kualifikasi\",\n  \"kualitas\",\n  \"kualitatif\",\n  \"kualon\",\n  \"kuang\",\n  \"kuangkiut\",\n  \"kuangwung\",\n  \"kuantifikasi\",\n  \"kuantitas\",\n  \"kuantitatif\",\n  \"kuantum\",\n  \"kuap\",\n  \"kuar\",\n  \"kuari\",\n  \"kuarik\",\n  \"kuark\",\n  \"kuarsa\",\n  \"kuarsit\",\n  \"kuart\",\n  \"kuartal\",\n  \"kuarter\",\n  \"kuarterner\",\n  \"kuartet\",\n  \"kuartil\",\n  \"kuarto\",\n  \"kuas\",\n  \"kuasa\",\n  \"kuasar\",\n  \"kuasi\",\n  \"kuat\",\n  \"kuatren\",\n  \"kuau\",\n  \"kuaya\",\n  \"kuayah\",\n  \"kuayan\",\n  \"kubah\",\n  \"kubak\",\n  \"kubang\",\n  \"kubik\",\n  \"kubil\",\n  \"kubin\",\n  \"kubis\",\n  \"kubisme\",\n  \"kubistik\",\n  \"kubit\",\n  \"kuboid\",\n  \"kubra\",\n  \"kubti\",\n  \"kubu\",\n  \"kubul\",\n  \"kubung\",\n  \"kubur\",\n  \"kubus\",\n  \"kucai\",\n  \"kucak\",\n  \"kucam\",\n  \"kucandan\",\n  \"kucar-kacir\",\n  \"kucek\",\n  \"kucel\",\n  \"kucica\",\n  \"kucil\",\n  \"kucindan\",\n  \"kucing\",\n  \"kucir\",\n  \"kucup\",\n  \"kucur\",\n  \"kuda\",\n  \"kudai\",\n  \"kudang\",\n  \"kudap\",\n  \"kudeta\",\n  \"kudi\",\n  \"kudian\",\n  \"kudis\",\n  \"kudu\",\n  \"kuduk\",\n  \"kudung\",\n  \"kudup\",\n  \"kudus\",\n  \"kue\",\n  \"kueni\",\n  \"kuesioner\",\n  \"kuetiau\",\n  \"kufu\",\n  \"kufur\",\n  \"kui\",\n  \"kuih\",\n  \"kuil\",\n  \"kuilu\",\n  \"kuin\",\n  \"kuing\",\n  \"kuini\",\n  \"kuinina\",\n  \"kuintal\",\n  \"kuintesens\",\n  \"kuintet\",\n  \"kuintil\",\n  \"kuintiliun\",\n  \"kuintuplet\",\n  \"kuir\",\n  \"kuis\",\n  \"kuit\",\n  \"kuitansi\",\n  \"kujang\",\n  \"kujarat\",\n  \"kujung\",\n  \"kujur\",\n  \"kujut\",\n  \"kuk\",\n  \"kukabura\",\n  \"kukai\",\n  \"kukang\",\n  \"kukila\",\n  \"kuku\",\n  \"kukuh\",\n  \"kukuk\",\n  \"kukul\",\n  \"kukup\",\n  \"kukur\",\n  \"kukuruyuk\",\n  \"kukus\",\n  \"kulah\",\n  \"kulai\",\n  \"kulak\",\n  \"kulakasar\",\n  \"kulan\",\n  \"kulansing\",\n  \"kulasentana\",\n  \"kulat\",\n  \"kulawangsa\",\n  \"kuli\",\n  \"kuliah\",\n  \"kulik-kulik\",\n  \"kulikat\",\n  \"kulim\",\n  \"kulimat\",\n  \"kuliner\",\n  \"kulintang\",\n  \"kulir\",\n  \"kulit\",\n  \"kulkas\",\n  \"kulminasi\",\n  \"kulon\",\n  \"kulot\",\n  \"kult\",\n  \"kultivar\",\n  \"kultivasi\",\n  \"kultur\",\n  \"kultural\",\n  \"kulturisasi\",\n  \"kultus\",\n  \"kulub\",\n  \"kuluk\",\n  \"kulum\",\n  \"kulup\",\n  \"kulur\",\n  \"kulut\",\n  \"kulzum\",\n  \"kuma-kuma\",\n  \"kumai\",\n  \"kumal\",\n  \"kuman\",\n  \"kumandang\",\n  \"kumanga\",\n  \"kumat\",\n  \"kumba\",\n  \"kumbah\",\n  \"kumbang\",\n  \"kumbar\",\n  \"kumbik\",\n  \"kumbu\",\n  \"kumbuh\",\n  \"kumena\",\n  \"kumico\",\n  \"kuminter\",\n  \"kumis\",\n  \"kumkuma\",\n  \"kumpai\",\n  \"kumpal\",\n  \"kumpar\",\n  \"kumpi\",\n  \"kumpul\",\n  \"kumuh\",\n  \"kumulasi\",\n  \"kumulatif\",\n  \"kumulonimbus\",\n  \"kumulus\",\n  \"kumur\",\n  \"kumus\",\n  \"kumut\",\n  \"kunang-kunang\",\n  \"kunani\",\n  \"kunar-kunar\",\n  \"kunarpa\",\n  \"kunca\",\n  \"kuncah\",\n  \"kuncen\",\n  \"kunci\",\n  \"kuncir\",\n  \"kuncit\",\n  \"kuncung\",\n  \"kuncup\",\n  \"kundai\",\n  \"kundang\",\n  \"kundi\",\n  \"kundur\",\n  \"kunduran\",\n  \"kunfayakun\",\n  \"kung\",\n  \"kungfu\",\n  \"kungkang\",\n  \"kungki\",\n  \"kungkum\",\n  \"kungkung\",\n  \"kuning\",\n  \"kuningan\",\n  \"kunjung\",\n  \"kuno\",\n  \"kunta\",\n  \"kuntau\",\n  \"kuntilanak\",\n  \"kuntit\",\n  \"kuntuan\",\n  \"kuntul\",\n  \"kuntum\",\n  \"kuntung\",\n  \"kunut\",\n  \"kunyah\",\n  \"kunyam\",\n  \"kunyit\",\n  \"kunyuk\",\n  \"kuorum\",\n  \"kuosien\",\n  \"kuota\",\n  \"kup\",\n  \"kupa\",\n  \"kupahan\",\n  \"kupak\",\n  \"kupang\",\n  \"kupas\",\n  \"kupat\",\n  \"kupat-kapit\",\n  \"kupe\",\n  \"kupel\",\n  \"kupi\",\n  \"kupil\",\n  \"kuping\",\n  \"kupir\",\n  \"kuplet\",\n  \"kupluk\",\n  \"kupnat\",\n  \"kupon\",\n  \"kuproprotein\",\n  \"kuprum\",\n  \"kupu-kupu\",\n  \"kupui\",\n  \"kupur\",\n  \"kur\",\n  \"kura\",\n  \"kurai\",\n  \"kurambit\",\n  \"kurang\",\n  \"kurap\",\n  \"kuras\",\n  \"kurasani\",\n  \"kurasao\",\n  \"kuratif\",\n  \"kurator\",\n  \"kuratorium\",\n  \"kurau\",\n  \"kurawal\",\n  \"kurban\",\n  \"kurcaci\",\n  \"kuren\",\n  \"kuret\",\n  \"kuretase\",\n  \"kuria\",\n  \"kuricak\",\n  \"kurigram\",\n  \"kurik\",\n  \"kurikuler\",\n  \"kurikulum\",\n  \"kuring\",\n  \"kuriositas\",\n  \"kuripan\",\n  \"kurir\",\n  \"kuririk\",\n  \"kurium\",\n  \"kurkatovium\",\n  \"kurkuma\",\n  \"kurltase\",\n  \"kurma\",\n  \"kurs\",\n  \"kursemangat\",\n  \"kursi\",\n  \"kursif\",\n  \"kursor\",\n  \"kursus\",\n  \"kurtase\",\n  \"kurun\",\n  \"kurung\",\n  \"kurus\",\n  \"kuruyuk\",\n  \"kurva\",\n  \"kurvalinier\",\n  \"kurvatur\",\n  \"kus\",\n  \"kusa\",\n  \"kusal\",\n  \"kusam\",\n  \"kusanin\",\n  \"kusat-mesat\",\n  \"kusau\",\n  \"kusen\",\n  \"kusik\",\n  \"kusir\",\n  \"kuskus\",\n  \"kuspis\",\n  \"kusruk\",\n  \"kusta\",\n  \"kusu\",\n  \"kusuf\",\n  \"kusuk\",\n  \"kusuma\",\n  \"kusut\",\n  \"kuta\",\n  \"kutaha\",\n  \"kutak\",\n  \"kutang\",\n  \"kutat\",\n  \"kutat-kutet\",\n  \"kuteks\",\n  \"kuteri\",\n  \"kuti\",\n  \"kutik\",\n  \"kutikula\",\n  \"kutil\",\n  \"kutin\",\n  \"kuting\",\n  \"kutip\",\n  \"kutu\",\n  \"kutub\",\n  \"kutubaru\",\n  \"kutubusitah\",\n  \"kutuk\",\n  \"kutung\",\n  \"kutut\",\n  \"kuud\",\n  \"kuwu\",\n  \"kuwuk\",\n  \"kuwung-kuwung\",\n  \"kuwur\",\n  \"kuya\",\n  \"kuyang\",\n  \"kuyu\",\n  \"kuyuh\",\n  \"kuyup\",\n  \"kwartet\",\n  \"kwartir\",\n  \"kwasiorkor\",\n  \"kweni\",\n  \"kwetiau\",\n  \"kwosien\",\n  \"laal\",\n  \"lab\",\n  \"laba\",\n  \"labah-labah\",\n  \"labak\",\n  \"labang\",\n  \"labas\",\n  \"label\",\n  \"labelum\",\n  \"laberang\",\n  \"labi-labi\",\n  \"labial\",\n  \"labialisasi\",\n  \"labil\",\n  \"labiodental\",\n  \"labiovelar\",\n  \"labirin\",\n  \"labium\",\n  \"laboran\",\n  \"laboratoris\",\n  \"laboratorium\",\n  \"labrak\",\n  \"labrakan\",\n  \"labrang\",\n  \"labres\",\n  \"labrum\",\n  \"labu\",\n  \"labuda\",\n  \"labuh\",\n  \"labun\",\n  \"labur\",\n  \"labut\",\n  \"lacak\",\n  \"laci\",\n  \"lacur\",\n  \"lacut\",\n  \"lada\",\n  \"ladah\",\n  \"ladam\",\n  \"ladan\",\n  \"ladang\",\n  \"laden\",\n  \"ladi\",\n  \"lading\",\n  \"ladu\",\n  \"ladung\",\n  \"lafal\",\n  \"laga\",\n  \"lagak\",\n  \"lagam\",\n  \"lagan\",\n  \"lagang\",\n  \"lagau\",\n  \"lagi\",\n  \"lagiah\",\n  \"lago\",\n  \"lagonder\",\n  \"lagu\",\n  \"laguh-lagah\",\n  \"laguna\",\n  \"lagwu\",\n  \"lah\",\n  \"lahab\",\n  \"lahad\",\n  \"lahak\",\n  \"lahan\",\n  \"lahang\",\n  \"lahap\",\n  \"lahar\",\n  \"lahir\",\n  \"lahiriah\",\n  \"lai\",\n  \"laici\",\n  \"laif\",\n  \"laik\",\n  \"lailah\",\n  \"lailatulkadar\",\n  \"lain\",\n  \"lais\",\n  \"laja\",\n  \"lajak\",\n  \"lajang\",\n  \"lajat\",\n  \"lajnah\",\n  \"laju\",\n  \"lajur\",\n  \"lak\",\n  \"lakab\",\n  \"lakak\",\n  \"lakar\",\n  \"lakara\",\n  \"laken\",\n  \"lakeri\",\n  \"laki\",\n  \"laklak\",\n  \"laklakan\",\n  \"lakmus\",\n  \"laknat\",\n  \"laknatullah\",\n  \"lakon\",\n  \"lakonik\",\n  \"lakonisme\",\n  \"lakrimator\",\n  \"laksa\",\n  \"laksamana\",\n  \"laksana\",\n  \"laksatif\",\n  \"laksmi\",\n  \"laktase\",\n  \"laktasi\",\n  \"laktat\",\n  \"laktogen\",\n  \"laktoglobulin\",\n  \"laktometer\",\n  \"lakton\",\n  \"laktosa\",\n  \"laku\",\n  \"lakum\",\n  \"lakuna\",\n  \"lakur\",\n  \"lakustrin\",\n  \"lala\",\n  \"lalah\",\n  \"lalai\",\n  \"lalak\",\n  \"lalandak\",\n  \"lalang\",\n  \"lalap\",\n  \"lalat\",\n  \"lalau\",\n  \"laler\",\n  \"lali\",\n  \"lalim\",\n  \"lalu\",\n  \"lalu-lalang\",\n  \"lam\",\n  \"lama\",\n  \"lamalif\",\n  \"laman\",\n  \"lamang\",\n  \"lamar\",\n  \"lamat-lamat\",\n  \"lambai\",\n  \"lambak\",\n  \"lamban\",\n  \"lambang\",\n  \"lambar\",\n  \"lambat\",\n  \"lambda\",\n  \"lambe\",\n  \"lambert\",\n  \"lambit\",\n  \"lambo\",\n  \"lambu\",\n  \"lambuk\",\n  \"lambung\",\n  \"lambur\",\n  \"lamdukpai\",\n  \"lamela\",\n  \"lamender\",\n  \"lamin\",\n  \"lamina\",\n  \"laminah\",\n  \"laminasi\",\n  \"laminating\",\n  \"lampai\",\n  \"lampam\",\n  \"lampan\",\n  \"lampang\",\n  \"lampar\",\n  \"lampas\",\n  \"lampau\",\n  \"lampeni\",\n  \"lampes\",\n  \"lampias\",\n  \"lampik\",\n  \"lampin\",\n  \"lamping\",\n  \"lampion\",\n  \"lampir\",\n  \"lampit\",\n  \"lampok\",\n  \"lampor\",\n  \"lampu\",\n  \"lampung\",\n  \"lampus\",\n  \"lamtoro\",\n  \"lamtoronisasi\",\n  \"lamun\",\n  \"lamur\",\n  \"lamusir\",\n  \"lana\",\n  \"lanang\",\n  \"lanar\",\n  \"lanau\",\n  \"lanbau\",\n  \"lanca\",\n  \"lancang\",\n  \"lancap\",\n  \"lancar\",\n  \"lancia\",\n  \"lancing\",\n  \"lancip\",\n  \"lancit\",\n  \"lancong\",\n  \"lancung\",\n  \"lancur\",\n  \"lancut\",\n  \"landa\",\n  \"landahur\",\n  \"landai\",\n  \"landak\",\n  \"landang\",\n  \"landap\",\n  \"landas\",\n  \"landau\",\n  \"landors\",\n  \"landrad\",\n  \"landuk\",\n  \"landung\",\n  \"landur\",\n  \"lang\",\n  \"langah\",\n  \"langak-languk\",\n  \"langau\",\n  \"langen\",\n  \"langendrian\",\n  \"langenswara\",\n  \"langgah\",\n  \"langgai\",\n  \"langgam\",\n  \"langgan\",\n  \"langgang\",\n  \"langgar\",\n  \"langgas\",\n  \"langgayan\",\n  \"langgeng\",\n  \"langguk\",\n  \"langgung\",\n  \"langi\",\n  \"langir\",\n  \"langis\",\n  \"langit\",\n  \"langka\",\n  \"langkah\",\n  \"langkai\",\n  \"langkan\",\n  \"langkang\",\n  \"langkap\",\n  \"langkara\",\n  \"langkas\",\n  \"langkat\",\n  \"langkau\",\n  \"langking\",\n  \"langkisan\",\n  \"langkitang\",\n  \"langkong\",\n  \"langkup\",\n  \"langlai\",\n  \"langlang\",\n  \"langsai\",\n  \"langsam\",\n  \"langsang\",\n  \"langsar\",\n  \"langsat\",\n  \"langse\",\n  \"langseng\",\n  \"langsep\",\n  \"langsi\",\n  \"langsing\",\n  \"langsir\",\n  \"langsuir\",\n  \"langsung\",\n  \"langu\",\n  \"langut\",\n  \"lanhir\",\n  \"lanja\",\n  \"lanjai\",\n  \"lanjak\",\n  \"lanjam\",\n  \"lanjang\",\n  \"lanjar\",\n  \"lanjau\",\n  \"lanji\",\n  \"lanjuk\",\n  \"lanjung\",\n  \"lanjur\",\n  \"lanjut\",\n  \"lanolin\",\n  \"lanset\",\n  \"lansia\",\n  \"lansir\",\n  \"lanskap\",\n  \"lantah\",\n  \"lantai\",\n  \"lantak\",\n  \"lantam\",\n  \"lantan\",\n  \"lantang\",\n  \"lantanum\",\n  \"lantar\",\n  \"lantas\",\n  \"lantera\",\n  \"lantesari\",\n  \"lantik\",\n  \"lantin\",\n  \"lanting\",\n  \"lantip\",\n  \"lantun\",\n  \"lantung\",\n  \"lantur\",\n  \"lanugo\",\n  \"lanun\",\n  \"lanus\",\n  \"lanyah\",\n  \"lanyak\",\n  \"lanyau\",\n  \"laocu\",\n  \"laos\",\n  \"laoteng\",\n  \"lap\",\n  \"lapah\",\n  \"lapak\",\n  \"lapang\",\n  \"lapar\",\n  \"laparoskop\",\n  \"laparoskopi\",\n  \"lapat-lapat\",\n  \"lapektomi\",\n  \"lapel\",\n  \"lapih\",\n  \"lapik\",\n  \"lapili\",\n  \"lapir\",\n  \"lapis\",\n  \"lapislazuli\",\n  \"lapo\",\n  \"lapor\",\n  \"laptop\",\n  \"lapuk\",\n  \"lapun\",\n  \"lapur\",\n  \"lara\",\n  \"larah\",\n  \"larai\",\n  \"larak\",\n  \"laram\",\n  \"larang\",\n  \"larap\",\n  \"laras\",\n  \"larat\",\n  \"larau\",\n  \"largisimo\",\n  \"largo\",\n  \"lari\",\n  \"larih\",\n  \"larik\",\n  \"laring\",\n  \"laringal\",\n  \"laringitis\",\n  \"laringoskop\",\n  \"laris\",\n  \"larnaks\",\n  \"laron\",\n  \"lars\",\n  \"laru\",\n  \"larung\",\n  \"larut\",\n  \"larva\",\n  \"larvarium\",\n  \"las\",\n  \"lasa\",\n  \"lasah\",\n  \"lasak\",\n  \"lasana\",\n  \"lasat\",\n  \"laser\",\n  \"lasi\",\n  \"lasinia\",\n  \"laskar\",\n  \"laso\",\n  \"lasparaginase\",\n  \"lasuh\",\n  \"lat\",\n  \"lata\",\n  \"latah\",\n  \"latak\",\n  \"latam\",\n  \"latar\",\n  \"latas\",\n  \"lateks\",\n  \"laten\",\n  \"latensi\",\n  \"lateral\",\n  \"laterit\",\n  \"latif\",\n  \"latifundium\",\n  \"latih\",\n  \"lating\",\n  \"latis\",\n  \"latma\",\n  \"latosol\",\n  \"latuh\",\n  \"latuk\",\n  \"latung\",\n  \"latur\",\n  \"lauh\",\n  \"lauk\",\n  \"laun\",\n  \"laung\",\n  \"laur\",\n  \"laut\",\n  \"lauya\",\n  \"lava\",\n  \"lavase\",\n  \"lavendel\",\n  \"lavender\",\n  \"lawa\",\n  \"lawah\",\n  \"lawak\",\n  \"lawalata\",\n  \"lawamah\",\n  \"lawan\",\n  \"lawang\",\n  \"lawar\",\n  \"lawas\",\n  \"lawat\",\n  \"lawazim\",\n  \"lawe\",\n  \"lawean\",\n  \"lawi\",\n  \"lawina\",\n  \"lawon\",\n  \"lawrensium\",\n  \"layah\",\n  \"layak\",\n  \"layam\",\n  \"layan\",\n  \"layang\",\n  \"layap\",\n  \"layar\",\n  \"layas\",\n  \"layat\",\n  \"layer\",\n  \"layon\",\n  \"layu\",\n  \"layuh\",\n  \"layuk\",\n  \"layung\",\n  \"layur\",\n  \"layut\",\n  \"laza\",\n  \"lazim\",\n  \"lazuardi\",\n  \"leak\",\n  \"lebah\",\n  \"lebai\",\n  \"lebak\",\n  \"lebam\",\n  \"leban\",\n  \"lebang\",\n  \"lebap\",\n  \"lebar\",\n  \"lebaran\",\n  \"lebas\",\n  \"lebat\",\n  \"leber\",\n  \"lebih\",\n  \"lebuh\",\n  \"lebuk\",\n  \"lebum\",\n  \"lebun\",\n  \"lebung\",\n  \"lebur\",\n  \"lecah\",\n  \"lecak\",\n  \"lecap\",\n  \"lecat\",\n  \"leceh\",\n  \"lecek\",\n  \"lecer\",\n  \"lecet\",\n  \"leci\",\n  \"lecit\",\n  \"leco\",\n  \"lecok\",\n  \"lecuh\",\n  \"lecun\",\n  \"lecup\",\n  \"lecur\",\n  \"lecut\",\n  \"ledak\",\n  \"ledang\",\n  \"ledek\",\n  \"ledeng\",\n  \"ledes\",\n  \"leding\",\n  \"ledos\",\n  \"ledre\",\n  \"leduk\",\n  \"ledung\",\n  \"lefa\",\n  \"lega\",\n  \"legak-legok\",\n  \"legal\",\n  \"legalisasi\",\n  \"legalitas\",\n  \"legam\",\n  \"legap\",\n  \"legar\",\n  \"legasi\",\n  \"legasteni\",\n  \"legat\",\n  \"legataris\",\n  \"legato\",\n  \"legator\",\n  \"lege\",\n  \"legek\",\n  \"legen\",\n  \"legenda\",\n  \"legendaris\",\n  \"leger\",\n  \"leges\",\n  \"leghorn\",\n  \"legi\",\n  \"legih\",\n  \"legio\",\n  \"legislasi\",\n  \"legislatif\",\n  \"legislator\",\n  \"legisme\",\n  \"legit\",\n  \"legitimaris\",\n  \"legitimas\",\n  \"legitimasi\",\n  \"legitimitas\",\n  \"legiun\",\n  \"lego\",\n  \"legok\",\n  \"legong\",\n  \"legu\",\n  \"legum\",\n  \"legunder\",\n  \"legundi\",\n  \"legung\",\n  \"legup-legup\",\n  \"leha-leha\",\n  \"lehar\",\n  \"leher\",\n  \"lei\",\n  \"leja\",\n  \"lejang\",\n  \"lejar\",\n  \"lejas\",\n  \"lejit\",\n  \"lejok\",\n  \"leka\",\n  \"lekah\",\n  \"lekak-lekuk\",\n  \"lekam\",\n  \"lekang\",\n  \"lekap\",\n  \"lekap-lekup\",\n  \"lekar\",\n  \"lekas\",\n  \"lekat\",\n  \"lekemia\",\n  \"lekir\",\n  \"lekit\",\n  \"lekok\",\n  \"lekosit\",\n  \"leksem\",\n  \"leksikal\",\n  \"leksikograf\",\n  \"leksikografi\",\n  \"leksikografis\",\n  \"leksikolog\",\n  \"leksikologi\",\n  \"leksikon\",\n  \"leksikostatistik\",\n  \"leksis\",\n  \"lekton\",\n  \"lektor\",\n  \"lektur\",\n  \"leku\",\n  \"lekuh-lekih\",\n  \"lekuk\",\n  \"lekum\",\n  \"lekun\",\n  \"lekung\",\n  \"lekup-lekap\",\n  \"lela\",\n  \"lelabah\",\n  \"lelah\",\n  \"lelai\",\n  \"lelaki\",\n  \"lelancur\",\n  \"lelang\",\n  \"lelangon\",\n  \"lelangse\",\n  \"lelap\",\n  \"lelar\",\n  \"lelas\",\n  \"lelat\",\n  \"lelatu\",\n  \"lelawa\",\n  \"lele\",\n  \"leleh\",\n  \"lelembut\",\n  \"lelemuku\",\n  \"lelep\",\n  \"leler\",\n  \"leles\",\n  \"lelet\",\n  \"lelewa\",\n  \"leli\",\n  \"lelonobroto\",\n  \"leluasa\",\n  \"lelucon\",\n  \"leluhur\",\n  \"leluing\",\n  \"lelung\",\n  \"lelungit\",\n  \"leluri\",\n  \"lem\",\n  \"lema\",\n  \"lemah\",\n  \"lemak\",\n  \"lemang\",\n  \"lemari\",\n  \"lemas\",\n  \"lemata\",\n  \"lemau\",\n  \"lembaga\",\n  \"lembah\",\n  \"lembai\",\n  \"lembak\",\n  \"lembam\",\n  \"lemban\",\n  \"lembang\",\n  \"lembap\",\n  \"lembar\",\n  \"lembayung\",\n  \"lembega\",\n  \"lembek\",\n  \"lembeng\",\n  \"lembidang\",\n  \"lembing\",\n  \"lembok\",\n  \"lembora\",\n  \"lembu\",\n  \"lembung\",\n  \"lembur\",\n  \"lemburu\",\n  \"lembut\",\n  \"lemena\",\n  \"lemender\",\n  \"lemes\",\n  \"lemidi\",\n  \"lemo\",\n  \"lemon\",\n  \"lempah\",\n  \"lempai\",\n  \"lempang\",\n  \"lempap\",\n  \"lempar\",\n  \"lempari\",\n  \"lempaung\",\n  \"lempem\",\n  \"lempenai\",\n  \"lempeng\",\n  \"lemper\",\n  \"lemping\",\n  \"lempit\",\n  \"lempoh\",\n  \"lempuh\",\n  \"lempuk\",\n  \"lempung\",\n  \"lempuyang\",\n  \"lempuyangan\",\n  \"lemur\",\n  \"lemuru\",\n  \"lemusir\",\n  \"lena\",\n  \"lenan\",\n  \"lencana\",\n  \"lencang\",\n  \"lenceng\",\n  \"lencet\",\n  \"lenci\",\n  \"lencir\",\n  \"lencit\",\n  \"lencong\",\n  \"lencun\",\n  \"lenda\",\n  \"lendaian\",\n  \"lendeh\",\n  \"lender\",\n  \"lendir\",\n  \"lendot\",\n  \"lendung\",\n  \"lendut\",\n  \"leng\",\n  \"lenga\",\n  \"lengah\",\n  \"lengai\",\n  \"lengak\",\n  \"lengan\",\n  \"lengang\",\n  \"lengar\",\n  \"lengas\",\n  \"lengat\",\n  \"lenge\",\n  \"lenggak\",\n  \"lenggana\",\n  \"lengganan\",\n  \"lenggang\",\n  \"lenggara\",\n  \"lenggek\",\n  \"lengger\",\n  \"lenggok\",\n  \"lenggong\",\n  \"lenggor\",\n  \"lenggundi\",\n  \"lenggut\",\n  \"lengit\",\n  \"lengkai\",\n  \"lengkanas\",\n  \"lengkang\",\n  \"lengkap\",\n  \"lengkara\",\n  \"lengkeng\",\n  \"lengkesa\",\n  \"lengket\",\n  \"lengkiang\",\n  \"lengking\",\n  \"lengkitang\",\n  \"lengkok\",\n  \"lengkong\",\n  \"lengkuas\",\n  \"lengkung\",\n  \"lengkur\",\n  \"lengoh\",\n  \"lengong\",\n  \"lengos\",\n  \"lengseng\",\n  \"lengser\",\n  \"lengset\",\n  \"lenguh\",\n  \"lengung\",\n  \"lening\",\n  \"lenis\",\n  \"lenitrik\",\n  \"lenja\",\n  \"lenjan\",\n  \"lenjaran\",\n  \"lenjing\",\n  \"lenjuang\",\n  \"lenong\",\n  \"lenor\",\n  \"lens\",\n  \"lensa\",\n  \"lenser\",\n  \"lenset\",\n  \"lenso\",\n  \"lentam-lentum\",\n  \"lentang\",\n  \"lentang-lentok\",\n  \"lenteng\",\n  \"lentera\",\n  \"lentik\",\n  \"lenting\",\n  \"lentisel\",\n  \"lentoid\",\n  \"lentok\",\n  \"lentong\",\n  \"lentuk\",\n  \"lentum\",\n  \"lentung\",\n  \"lentur\",\n  \"lentus\",\n  \"lenung\",\n  \"lenyah\",\n  \"lenyai\",\n  \"lenyak\",\n  \"lenyap\",\n  \"lenyau\",\n  \"lenyeh\",\n  \"lenyet\",\n  \"lenyut\",\n  \"leo\",\n  \"leonid\",\n  \"leontin\",\n  \"leot\",\n  \"lepa\",\n  \"lepai\",\n  \"lepak\",\n  \"lepang\",\n  \"lepap\",\n  \"lepas\",\n  \"lepat\",\n  \"lepau\",\n  \"lepe\",\n  \"lepek\",\n  \"leper\",\n  \"leperi\",\n  \"lepes\",\n  \"lepet\",\n  \"lepih\",\n  \"lepik\",\n  \"lepit\",\n  \"leplap\",\n  \"lepoh\",\n  \"lepok\",\n  \"lepot\",\n  \"lepra\",\n  \"leproma\",\n  \"lepromin\",\n  \"leproseri\",\n  \"leptodos\",\n  \"leptoskop\",\n  \"leptosom\",\n  \"lepu\",\n  \"lepuh\",\n  \"lepuk\",\n  \"lepur\",\n  \"lerah\",\n  \"lerai\",\n  \"lerak\",\n  \"lerang\",\n  \"lerap\",\n  \"lereng\",\n  \"leret\",\n  \"lerok\",\n  \"lerot\",\n  \"lerum\",\n  \"les\",\n  \"lesa\",\n  \"lesak\",\n  \"lesan\",\n  \"lesang\",\n  \"lesap\",\n  \"lesat\",\n  \"lesbi\",\n  \"lesbian\",\n  \"lesbianisme\",\n  \"leseh\",\n  \"lesek\",\n  \"leset\",\n  \"lesi\",\n  \"lesing\",\n  \"lesir\",\n  \"lesit\",\n  \"lesitin\",\n  \"lesitina\",\n  \"lesnar\",\n  \"lesot\",\n  \"lesplang\",\n  \"lestari\",\n  \"lestek\",\n  \"lesterung\",\n  \"lesu\",\n  \"lesung\",\n  \"lesus\",\n  \"lesut\",\n  \"leta\",\n  \"letai\",\n  \"letak\",\n  \"letal\",\n  \"letalitas\",\n  \"letang\",\n  \"letargi\",\n  \"lete-lete\",\n  \"letek\",\n  \"leter\",\n  \"leterseter\",\n  \"letih\",\n  \"letik\",\n  \"leting\",\n  \"letis\",\n  \"letnan\",\n  \"letoi\",\n  \"letos\",\n  \"letraset\",\n  \"letuk\",\n  \"letum\",\n  \"letung\",\n  \"letup\",\n  \"letur\",\n  \"letus\",\n  \"leuca\",\n  \"leukemia\",\n  \"leukoderma\",\n  \"leukofit\",\n  \"leukoma\",\n  \"leukonisia\",\n  \"leukopenia\",\n  \"leukoplakia\",\n  \"leukore\",\n  \"leukorea\",\n  \"leukosit\",\n  \"leukositometer\",\n  \"leukositosis\",\n  \"level\",\n  \"lever\",\n  \"leveransir\",\n  \"levertran\",\n  \"levirat\",\n  \"levitin\",\n  \"levulosa\",\n  \"lewa\",\n  \"lewah\",\n  \"lewar\",\n  \"lewat\",\n  \"lewisid\",\n  \"lewu\",\n  \"leyeh\",\n  \"leyot\",\n  \"lezat\",\n  \"liabilitas\",\n  \"lian\",\n  \"liana\",\n  \"liang\",\n  \"liangliong\",\n  \"liar\",\n  \"lias\",\n  \"liat\",\n  \"liau\",\n  \"libas\",\n  \"libat\",\n  \"libei\",\n  \"liberal\",\n  \"liberalis\",\n  \"liberalisasi\",\n  \"liberalisme\",\n  \"liberalistis\",\n  \"liberasi\",\n  \"liberator\",\n  \"libero\",\n  \"libidis\",\n  \"libido\",\n  \"libitum\",\n  \"libra\",\n  \"librasi\",\n  \"libreto\",\n  \"libur\",\n  \"licak\",\n  \"licau\",\n  \"lici\",\n  \"licik\",\n  \"licin\",\n  \"licurai\",\n  \"lid\",\n  \"lidah\",\n  \"lidas\",\n  \"lidi\",\n  \"lidid\",\n  \"lifo\",\n  \"lift\",\n  \"lifter\",\n  \"liga\",\n  \"ligamen\",\n  \"ligan\",\n  \"ligar\",\n  \"ligas\",\n  \"ligasi\",\n  \"ligat\",\n  \"ligatur\",\n  \"ligih\",\n  \"lignin\",\n  \"lignit\",\n  \"lignoselulosa\",\n  \"lignosulfonat\",\n  \"lignotuber\",\n  \"lihai\",\n  \"lihat\",\n  \"lik\",\n  \"likantropi\",\n  \"likas\",\n  \"likat\",\n  \"likir\",\n  \"liku\",\n  \"likuid\",\n  \"likuida\",\n  \"likuidasi\",\n  \"likuiditas\",\n  \"likur\",\n  \"likut\",\n  \"lil\",\n  \"lila\",\n  \"lilah\",\n  \"lilan\",\n  \"lilau\",\n  \"lili\",\n  \"lilin\",\n  \"liliput\",\n  \"lilit\",\n  \"lillahi\",\n  \"lima\",\n  \"liman\",\n  \"limar\",\n  \"limas\",\n  \"limau\",\n  \"limbah\",\n  \"limbai\",\n  \"limbak\",\n  \"limban\",\n  \"limbang\",\n  \"limbat\",\n  \"limbing\",\n  \"limbubu\",\n  \"limbuk\",\n  \"limbung\",\n  \"limbur\",\n  \"limfa\",\n  \"limfadema\",\n  \"limfadenitis\",\n  \"limfadenoma\",\n  \"limfadenosis\",\n  \"limfaderitis\",\n  \"limfangioma\",\n  \"limfatik\",\n  \"limfoblartoma\",\n  \"limfoblas\",\n  \"limfoblastoma\",\n  \"limfografi\",\n  \"limfoma\",\n  \"limfonodus\",\n  \"limfopenia\",\n  \"limfosit\",\n  \"limfositopenia\",\n  \"limfositosis\",\n  \"limit\",\n  \"limitasi\",\n  \"limitatif\",\n  \"limnetik\",\n  \"limnologi\",\n  \"limnoplankton\",\n  \"limpa\",\n  \"limpah\",\n  \"limpap\",\n  \"limpapas\",\n  \"limpas\",\n  \"limpau\",\n  \"limpit\",\n  \"limpoh\",\n  \"limpung\",\n  \"limun\",\n  \"limusin\",\n  \"limut\",\n  \"lin\",\n  \"linang\",\n  \"linau\",\n  \"lincah\",\n  \"lincak\",\n  \"lincam\",\n  \"lincir\",\n  \"lincun\",\n  \"lindak\",\n  \"lindang\",\n  \"lindap\",\n  \"lindas\",\n  \"lindik\",\n  \"lindis\",\n  \"lindu\",\n  \"lindung\",\n  \"lindur\",\n  \"linear\",\n  \"linen\",\n  \"ling\",\n  \"lingar\",\n  \"lingat\",\n  \"lingga\",\n  \"linggam\",\n  \"linggata\",\n  \"linggayuran\",\n  \"linggi\",\n  \"linggis\",\n  \"lingkap\",\n  \"lingkar\",\n  \"lingkawa\",\n  \"lingkis\",\n  \"lingkung\",\n  \"lingkup\",\n  \"linglung\",\n  \"lingsa\",\n  \"lingsang\",\n  \"lingsir\",\n  \"lingsu\",\n  \"lingua\",\n  \"linguafon\",\n  \"linguis\",\n  \"linguistik\",\n  \"lini\",\n  \"linier\",\n  \"linimen\",\n  \"lining\",\n  \"linjak\",\n  \"linoleum\",\n  \"linsang\",\n  \"lintabung\",\n  \"lintadu\",\n  \"lintah\",\n  \"lintang\",\n  \"lintap\",\n  \"lintar\",\n  \"lintas\",\n  \"lintibang\",\n  \"linting\",\n  \"lintir\",\n  \"lintuh\",\n  \"lintup\",\n  \"linu\",\n  \"linuhung\",\n  \"linyak\",\n  \"linyar\",\n  \"lio\",\n  \"liofilisasi\",\n  \"liong\",\n  \"liontin\",\n  \"lipai\",\n  \"lipan\",\n  \"lipas\",\n  \"lipase\",\n  \"lipat\",\n  \"lipektomi\",\n  \"lipemia\",\n  \"lipid\",\n  \"lipiodol\",\n  \"lipit\",\n  \"liplap\",\n  \"lipoksidase\",\n  \"lipolisis\",\n  \"lipoprotein\",\n  \"lipstik\",\n  \"lipu\",\n  \"lipur\",\n  \"liput\",\n  \"lir\",\n  \"lira\",\n  \"lirida\",\n  \"lirih\",\n  \"lirik\",\n  \"liris\",\n  \"lis\",\n  \"lisah\",\n  \"lisan\",\n  \"lisani\",\n  \"lisensi\",\n  \"lisimeter\",\n  \"lisis\",\n  \"lisol\",\n  \"lisong\",\n  \"lisplang\",\n  \"lister\",\n  \"listeria\",\n  \"listrik\",\n  \"lisu\",\n  \"lisus\",\n  \"lisut\",\n  \"litah\",\n  \"litak\",\n  \"litani\",\n  \"liter\",\n  \"literator\",\n  \"literer\",\n  \"litium\",\n  \"litografi\",\n  \"litologi\",\n  \"litoral\",\n  \"litosfer\",\n  \"litotes\",\n  \"litotomi\",\n  \"litsus\",\n  \"liturgi\",\n  \"liturgis\",\n  \"liuk\",\n  \"liung-liung\",\n  \"liur\",\n  \"liut\",\n  \"liver\",\n  \"liwa\",\n  \"liwan\",\n  \"liwat\",\n  \"liwet\",\n  \"loak\",\n  \"lob\",\n  \"loba\",\n  \"lobak\",\n  \"loban\",\n  \"loberci\",\n  \"lobi\",\n  \"lobster\",\n  \"locok\",\n  \"locot\",\n  \"lodan\",\n  \"lodeh\",\n  \"lodoh\",\n  \"lodong\",\n  \"log\",\n  \"logam\",\n  \"logaritma\",\n  \"logat\",\n  \"logawiah\",\n  \"logika\",\n  \"logis\",\n  \"logistik\",\n  \"logo\",\n  \"logogram\",\n  \"logopedia\",\n  \"logotip\",\n  \"loh\",\n  \"loha\",\n  \"lohok\",\n  \"lohor\",\n  \"loji\",\n  \"lok\",\n  \"loka\",\n  \"lokacipta\",\n  \"lokakarya\",\n  \"lokal\",\n  \"lokalis\",\n  \"lokalisasi\",\n  \"lokan\",\n  \"lokananta\",\n  \"lokap\",\n  \"lokasi\",\n  \"lokastiti\",\n  \"lokatif\",\n  \"lokatikranta\",\n  \"lokatraya\",\n  \"lokawarta\",\n  \"lokawidura\",\n  \"lokawigna\",\n  \"lokawiruda\",\n  \"lokawisata\",\n  \"lokcuan\",\n  \"lokek\",\n  \"lokeswara\",\n  \"loket\",\n  \"loki\",\n  \"lokia\",\n  \"lokika\",\n  \"lokio\",\n  \"loklok\",\n  \"lokomobil\",\n  \"lokomotif\",\n  \"lokos\",\n  \"loksek\",\n  \"loksun\",\n  \"loktong\",\n  \"lokus\",\n  \"lokusi\",\n  \"lolak\",\n  \"loleng\",\n  \"loloh\",\n  \"lolohan\",\n  \"lolong\",\n  \"lolos\",\n  \"lomba\",\n  \"lombar\",\n  \"lombok\",\n  \"lombong\",\n  \"lomek\",\n  \"lomot\",\n  \"lompat\",\n  \"lompayang\",\n  \"lompok\",\n  \"lompong\",\n  \"lonan\",\n  \"loncat\",\n  \"loncek\",\n  \"lonceng\",\n  \"loncer\",\n  \"lonco\",\n  \"loncos\",\n  \"londang\",\n  \"londong\",\n  \"loneng\",\n  \"long\",\n  \"longak-longok\",\n  \"longdres\",\n  \"longgar\",\n  \"longgok\",\n  \"longgor\",\n  \"longitudinal\",\n  \"longo\",\n  \"longok\",\n  \"longong\",\n  \"longser\",\n  \"longsor\",\n  \"longtorso\",\n  \"lonjak\",\n  \"lonjong\",\n  \"lonjor\",\n  \"lonsong\",\n  \"lontai\",\n  \"lontang-lanting\",\n  \"lontang-lantung\",\n  \"lontar\",\n  \"lontara\",\n  \"lonte\",\n  \"lontok\",\n  \"lontong\",\n  \"lonyok\",\n  \"lop\",\n  \"lopak\",\n  \"lopek\",\n  \"loper\",\n  \"lopis\",\n  \"lopor\",\n  \"lor\",\n  \"lorah\",\n  \"loran\",\n  \"lorat\",\n  \"lorber\",\n  \"lorek\",\n  \"loreng\",\n  \"lori\",\n  \"lornyet\",\n  \"lorong\",\n  \"lorot\",\n  \"los\",\n  \"lose\",\n  \"losin\",\n  \"losion\",\n  \"losmen\",\n  \"loso\",\n  \"losong\",\n  \"lot\",\n  \"lota\",\n  \"lotak\",\n  \"lotek\",\n  \"loteng\",\n  \"lotis\",\n  \"lotong\",\n  \"lotre\",\n  \"lotus\",\n  \"lowong\",\n  \"loya\",\n  \"loyak\",\n  \"loyal\",\n  \"loyalis\",\n  \"loyalitas\",\n  \"loyang\",\n  \"loyar\",\n  \"loyo\",\n  \"loyong\",\n  \"lozenge\",\n  \"luah\",\n  \"luak\",\n  \"luang\",\n  \"luap\",\n  \"luar\",\n  \"luas\",\n  \"luat\",\n  \"luban\",\n  \"lubang\",\n  \"luber\",\n  \"lubuk\",\n  \"lucah\",\n  \"lucu\",\n  \"lucup\",\n  \"lucut\",\n  \"ludah\",\n  \"ludat\",\n  \"ludes\",\n  \"luding\",\n  \"ludruk\",\n  \"lues\",\n  \"lugas\",\n  \"lugu\",\n  \"lugut\",\n  \"luhak\",\n  \"luhmahful\",\n  \"luhung\",\n  \"luhur\",\n  \"luih\",\n  \"luik\",\n  \"luing\",\n  \"luk\",\n  \"luka\",\n  \"lukah\",\n  \"lukat\",\n  \"lukeh\",\n  \"lukis\",\n  \"luks\",\n  \"luku\",\n  \"lukut\",\n  \"lulai\",\n  \"luli\",\n  \"luluh\",\n  \"luluk\",\n  \"lulum\",\n  \"lulup\",\n  \"lulur\",\n  \"lulus\",\n  \"lulut\",\n  \"lum\",\n  \"lumai\",\n  \"lumang\",\n  \"lumar\",\n  \"lumas\",\n  \"lumat\",\n  \"lumayan\",\n  \"lumba-lumba\",\n  \"lumbal\",\n  \"lumbu\",\n  \"lumbung\",\n  \"lumen\",\n  \"lumer\",\n  \"lumi-lumi\",\n  \"luminositas\",\n  \"lumpang\",\n  \"lumpektomi\",\n  \"lumpia\",\n  \"lumping\",\n  \"lumpuh\",\n  \"lumpuk\",\n  \"lumpur\",\n  \"lumrah\",\n  \"lumsum\",\n  \"lumuh\",\n  \"lumur\",\n  \"lumus\",\n  \"lumut\",\n  \"lunak\",\n  \"lunas\",\n  \"lunau\",\n  \"luncai\",\n  \"luncas\",\n  \"luncung\",\n  \"luncur\",\n  \"lundang\",\n  \"lundi\",\n  \"lundu\",\n  \"luner\",\n  \"lung\",\n  \"lungguh\",\n  \"lungkah\",\n  \"lungkang\",\n  \"lungkum\",\n  \"lunglai\",\n  \"lunglung\",\n  \"lungsar\",\n  \"lungse\",\n  \"lungsin\",\n  \"lungsung\",\n  \"lungsur\",\n  \"lungun\",\n  \"lunjur\",\n  \"lunta\",\n  \"luntang\",\n  \"luntang-lantung\",\n  \"luntas\",\n  \"luntur\",\n  \"lunyah\",\n  \"lunyai\",\n  \"lup\",\n  \"lupa\",\n  \"lupat\",\n  \"lupi\",\n  \"lupuh\",\n  \"lupuk\",\n  \"lupung\",\n  \"lupus\",\n  \"luput\",\n  \"lurah\",\n  \"lurik\",\n  \"luru\",\n  \"lurub\",\n  \"luruh\",\n  \"lurus\",\n  \"lurut\",\n  \"lus\",\n  \"lusa\",\n  \"lusin\",\n  \"lustrum\",\n  \"lusuh\",\n  \"lut\",\n  \"lutetium\",\n  \"luti\",\n  \"lutu\",\n  \"lutung\",\n  \"lutut\",\n  \"luweng\",\n  \"luwes\",\n  \"luyak\",\n  \"luyu\",\n  \"luyut\",\n  \"maab\",\n  \"maaf\",\n  \"mabriuk\",\n  \"mabrur\",\n  \"mabuh\",\n  \"mabuk\",\n  \"mabul\",\n  \"macakal\",\n  \"macam\",\n  \"macan\",\n  \"macapat\",\n  \"mace\",\n  \"macet\",\n  \"macis\",\n  \"mad\",\n  \"mada\",\n  \"madah\",\n  \"madali\",\n  \"madam\",\n  \"madang\",\n  \"madani\",\n  \"madar\",\n  \"madat\",\n  \"madewi\",\n  \"madi\",\n  \"madia\",\n  \"madik\",\n  \"madinding\",\n  \"madmadah\",\n  \"mado\",\n  \"madona\",\n  \"madras\",\n  \"madrasah\",\n  \"madu\",\n  \"madukara\",\n  \"madumangsa\",\n  \"madya\",\n  \"maesan\",\n  \"maesenas\",\n  \"maestro\",\n  \"mafela\",\n  \"mafhum\",\n  \"mafia\",\n  \"mafioso\",\n  \"mafsadah\",\n  \"mafsadat\",\n  \"mag\",\n  \"magainin\",\n  \"magalah\",\n  \"magandi\",\n  \"magang\",\n  \"magasin\",\n  \"magel\",\n  \"magenta\",\n  \"magersari\",\n  \"magfirah\",\n  \"magfirat\",\n  \"magi\",\n  \"magis\",\n  \"magister\",\n  \"magistrat\",\n  \"maglub\",\n  \"magma\",\n  \"magnesium\",\n  \"magnesol\",\n  \"magnet\",\n  \"magnetik\",\n  \"magnetika\",\n  \"magnetis\",\n  \"magnetisme\",\n  \"magnetit\",\n  \"magnetometer\",\n  \"magnetor\",\n  \"magnetostatika\",\n  \"magnitudo\",\n  \"magrib\",\n  \"magribi\",\n  \"magrur\",\n  \"magun\",\n  \"mah\",\n  \"maha\",\n  \"mahabah\",\n  \"mahabintang\",\n  \"mahadewa\",\n  \"mahadewi\",\n  \"mahaduta\",\n  \"mahaguru\",\n  \"mahah\",\n  \"mahajana\",\n  \"mahakala\",\n  \"mahakarya\",\n  \"mahakuasa\",\n  \"mahal\",\n  \"mahamen\",\n  \"mahamenteri\",\n  \"mahamulia\",\n  \"mahang\",\n  \"mahaparana\",\n  \"mahapatih\",\n  \"mahar\",\n  \"maharaja\",\n  \"maharajalela\",\n  \"maharana\",\n  \"maharani\",\n  \"mahardika\",\n  \"maharesi\",\n  \"maharupa\",\n  \"mahasiswa\",\n  \"mahasiswi\",\n  \"mahasuci\",\n  \"mahatahu\",\n  \"mahatma\",\n  \"mahatur\",\n  \"mahayana\",\n  \"mahbub\",\n  \"mahbubah\",\n  \"mahbubat\",\n  \"mahdi\",\n  \"maherat\",\n  \"mahesa\",\n  \"maheswara\",\n  \"mahfuz\",\n  \"mahia\",\n  \"mahimahi\",\n  \"mahir\",\n  \"mahkamah\",\n  \"mahkota\",\n  \"mahligai\",\n  \"mahmud\",\n  \"mahoni\",\n  \"mahraj\",\n  \"mahram\",\n  \"mahsul\",\n  \"mahsyar\",\n  \"mahwu\",\n  \"mahyong\",\n  \"mahzurat\",\n  \"mai\",\n  \"maido\",\n  \"maimun\",\n  \"main\",\n  \"mair\",\n  \"mairat\",\n  \"maizena\",\n  \"maja\",\n  \"majaan\",\n  \"majakane\",\n  \"majakaya\",\n  \"majakeling\",\n  \"majal\",\n  \"majalah\",\n  \"majas\",\n  \"majasi\",\n  \"majati\",\n  \"majedub\",\n  \"majekeling\",\n  \"majelis\",\n  \"majemuk\",\n  \"majenun\",\n  \"majikan\",\n  \"majir\",\n  \"majizat\",\n  \"majong\",\n  \"maju\",\n  \"majuh\",\n  \"majuj\",\n  \"majun\",\n  \"majung\",\n  \"majusi\",\n  \"maka\",\n  \"makadam\",\n  \"makadasang\",\n  \"makadok\",\n  \"makalah\",\n  \"makalangkang\",\n  \"makam\",\n  \"makan\",\n  \"makantah\",\n  \"makantuh\",\n  \"makanya\",\n  \"makao\",\n  \"makaopo\",\n  \"makar\",\n  \"makara\",\n  \"makaroni\",\n  \"makas\",\n  \"makbud\",\n  \"makbul\",\n  \"makcik\",\n  \"makcomblang\",\n  \"makda\",\n  \"makdan\",\n  \"makelar\",\n  \"makerel\",\n  \"maket\",\n  \"makhdum\",\n  \"makhluk\",\n  \"makhraj\",\n  \"maki\",\n  \"makin\",\n  \"making\",\n  \"makiyah\",\n  \"makjuj\",\n  \"maklaf\",\n  \"maklum\",\n  \"maklumat\",\n  \"maklun\",\n  \"makmal\",\n  \"makmum\",\n  \"makmur\",\n  \"makna\",\n  \"maknawi\",\n  \"makramat\",\n  \"makrame\",\n  \"makrifat\",\n  \"makrifatullah\",\n  \"makro\",\n  \"makroekonomi\",\n  \"makrofita\",\n  \"makrofotografi\",\n  \"makroftalmus\",\n  \"makrogametosit\",\n  \"makrohistori\",\n  \"makrokosmos\",\n  \"makrokriminologi\",\n  \"makrolinguistik\",\n  \"makromelia\",\n  \"makrometeorologi\",\n  \"makromolekul\",\n  \"makrosefalik\",\n  \"makroskopis\",\n  \"makrosmatik\",\n  \"makrosmatis\",\n  \"makrososiologi\",\n  \"makruf\",\n  \"makruh\",\n  \"maksi\",\n  \"maksiat\",\n  \"maksila\",\n  \"maksim\",\n  \"maksimal\",\n  \"maksimum\",\n  \"maksud\",\n  \"maksum\",\n  \"maktab\",\n  \"maktub\",\n  \"makua\",\n  \"makul\",\n  \"makula\",\n  \"makulat\",\n  \"makurung\",\n  \"makuta\",\n  \"makyong\",\n  \"makzul\",\n  \"mal\",\n  \"mala\",\n  \"malabau\",\n  \"malabsorpsi\",\n  \"malafide\",\n  \"malafungsi\",\n  \"malagandang\",\n  \"malagizi\",\n  \"malah\",\n  \"malai\",\n  \"malaik\",\n  \"malaikat\",\n  \"malaikatulmaut\",\n  \"malaise\",\n  \"malak\",\n  \"malaka\",\n  \"malakama\",\n  \"malakat\",\n  \"malakit\",\n  \"malakofili\",\n  \"malakologi\",\n  \"malakut\",\n  \"malam\",\n  \"malan\",\n  \"malang\",\n  \"malangbang\",\n  \"malap\",\n  \"malapari\",\n  \"malapetaka\",\n  \"malapraktek\",\n  \"malapraktik\",\n  \"malar\",\n  \"malaria\",\n  \"malas\",\n  \"malasia\",\n  \"malasuai\",\n  \"malatindak\",\n  \"malau\",\n  \"maldistribusi\",\n  \"male\",\n  \"maleman\",\n  \"maleo\",\n  \"maleolus\",\n  \"mali-mali\",\n  \"maligai\",\n  \"malih\",\n  \"malik\",\n  \"maliki\",\n  \"malikuljabar\",\n  \"malikulmuluk\",\n  \"malim\",\n  \"maling\",\n  \"malis\",\n  \"malisol\",\n  \"malka\",\n  \"malnutrisi\",\n  \"maloklusi\",\n  \"malt\",\n  \"maltase\",\n  \"maltosa\",\n  \"malu\",\n  \"malun\",\n  \"malung\",\n  \"mam\",\n  \"mama\",\n  \"mamah\",\n  \"mamai\",\n  \"mamak\",\n  \"mamalia\",\n  \"maman\",\n  \"mamanah\",\n  \"mamanda\",\n  \"mamang\",\n  \"mamano\",\n  \"mamat\",\n  \"mambang\",\n  \"mambek\",\n  \"mambo\",\n  \"mambruk\",\n  \"mambu\",\n  \"mambung\",\n  \"mamduhah\",\n  \"mami\",\n  \"mamik\",\n  \"mamlakat\",\n  \"mamografi\",\n  \"mampai\",\n  \"mampat\",\n  \"mampir\",\n  \"mampu\",\n  \"mampung\",\n  \"mampus\",\n  \"mamut\",\n  \"man\",\n  \"mana\",\n  \"manah\",\n  \"manai\",\n  \"manajemen\",\n  \"manajer\",\n  \"manajerial\",\n  \"manakala\",\n  \"manakan\",\n  \"manakib\",\n  \"manalagi\",\n  \"manasik\",\n  \"manasongo\",\n  \"manasuka\",\n  \"manau\",\n  \"mancanegara\",\n  \"mancawarna\",\n  \"manci\",\n  \"mancis\",\n  \"mancung\",\n  \"mancur\",\n  \"manda\",\n  \"mandah\",\n  \"mandai\",\n  \"mandala\",\n  \"mandalika\",\n  \"mandam\",\n  \"mandar\",\n  \"mandarin\",\n  \"mandat\",\n  \"mandataris\",\n  \"mandau\",\n  \"mandeh\",\n  \"mandek\",\n  \"mandelevium\",\n  \"mandi\",\n  \"mandibula\",\n  \"mandil\",\n  \"mandir\",\n  \"mandiri\",\n  \"mandolin\",\n  \"mandor\",\n  \"mandraguna\",\n  \"mandril\",\n  \"mandrin\",\n  \"mandul\",\n  \"mandung\",\n  \"maneken\",\n  \"manerisme\",\n  \"manfaat\",\n  \"mang\",\n  \"mangan\",\n  \"mangap\",\n  \"mangas\",\n  \"mangau\",\n  \"mangayubagya\",\n  \"mangga\",\n  \"manggah\",\n  \"manggala\",\n  \"manggar\",\n  \"manggis\",\n  \"manggung\",\n  \"mangir\",\n  \"mangkak\",\n  \"mangkanya\",\n  \"mangkar\",\n  \"mangkas\",\n  \"mangkat\",\n  \"mangkel\",\n  \"mangkih\",\n  \"mangkir\",\n  \"mangkok\",\n  \"mangkubumi\",\n  \"mangkuk\",\n  \"mangkus\",\n  \"mangsa\",\n  \"mangsi\",\n  \"mangu\",\n  \"mangun\",\n  \"mangut\",\n  \"mani\",\n  \"mania\",\n  \"maniak\",\n  \"manifes\",\n  \"manifestasi\",\n  \"manifesto\",\n  \"manik\",\n  \"manik-depresif\",\n  \"manikam\",\n  \"manikdepresi\",\n  \"manikmaya\",\n  \"manikur\",\n  \"manila\",\n  \"manimba\",\n  \"manipol\",\n  \"manipulasi\",\n  \"manipulatif\",\n  \"manipulator\",\n  \"manira\",\n  \"manis\",\n  \"manise\",\n  \"manja\",\n  \"manjapada\",\n  \"manjau\",\n  \"manjeri\",\n  \"manjing\",\n  \"manjung\",\n  \"manjur\",\n  \"manol\",\n  \"manometer\",\n  \"manora\",\n  \"manostat\",\n  \"manset\",\n  \"mansiang\",\n  \"mansukh\",\n  \"manta\",\n  \"mantan\",\n  \"mantap\",\n  \"mantari\",\n  \"mantel\",\n  \"manten\",\n  \"manti\",\n  \"mantik\",\n  \"mantiki\",\n  \"mantisa\",\n  \"mantissa\",\n  \"mantra\",\n  \"mantram\",\n  \"mantri\",\n  \"mantu\",\n  \"mantuk\",\n  \"manual\",\n  \"manufaktur\",\n  \"manufakturing\",\n  \"manuk\",\n  \"manumisio\",\n  \"manumpak\",\n  \"manunggal\",\n  \"manusia\",\n  \"manusiawi\",\n  \"manuskrip\",\n  \"manut\",\n  \"manuver\",\n  \"manuwa\",\n  \"manyala\",\n  \"manyar\",\n  \"manzil\",\n  \"manzilah\",\n  \"maois\",\n  \"map\",\n  \"mapak\",\n  \"mapalus\",\n  \"mapan\",\n  \"mar\",\n  \"mara\",\n  \"marah\",\n  \"maraja\",\n  \"marak\",\n  \"marakas\",\n  \"marambung\",\n  \"maramus\",\n  \"maranta\",\n  \"marapulai\",\n  \"maras\",\n  \"maraton\",\n  \"marbling\",\n  \"marbut\",\n  \"marcapada\",\n  \"mardatilah\",\n  \"mardatillah\",\n  \"mardud\",\n  \"mare\",\n  \"marem\",\n  \"maret\",\n  \"marfuk\",\n  \"marga\",\n  \"margalit\",\n  \"margarin\",\n  \"margasatwa\",\n  \"margin\",\n  \"marginal\",\n  \"marginalisasi\",\n  \"marginalisme\",\n  \"margrit\",\n  \"marhaban\",\n  \"marhaen\",\n  \"marhaenis\",\n  \"marhaenisme\",\n  \"marhum\",\n  \"marhumah\",\n  \"mari\",\n  \"maria\",\n  \"marikan\",\n  \"marikh\",\n  \"marikultur\",\n  \"marimu\",\n  \"marina\",\n  \"marinade\",\n  \"marine\",\n  \"marinir\",\n  \"marinyo\",\n  \"marinyu\",\n  \"marital\",\n  \"maritim\",\n  \"mariyuana\",\n  \"marjik\",\n  \"marjinal\",\n  \"mark\",\n  \"marka\",\n  \"markado\",\n  \"markah\",\n  \"markas\",\n  \"markasit\",\n  \"marketri\",\n  \"markis\",\n  \"markisa\",\n  \"markoni\",\n  \"markonis\",\n  \"markusip\",\n  \"marlin\",\n  \"marmelade\",\n  \"marmer\",\n  \"marmot\",\n  \"maro\",\n  \"marpaud\",\n  \"mars\",\n  \"marsaoleh\",\n  \"marsekal\",\n  \"marsepen\",\n  \"marsose\",\n  \"martabak\",\n  \"martaban\",\n  \"martabat\",\n  \"martandang\",\n  \"martil\",\n  \"martini\",\n  \"martir\",\n  \"maru\",\n  \"marus\",\n  \"marut\",\n  \"marwas\",\n  \"marxisme\",\n  \"marzipan\",\n  \"mas\",\n  \"masa\",\n  \"masai\",\n  \"masak\",\n  \"masakan\",\n  \"masakat\",\n  \"masala\",\n  \"masalah\",\n  \"masam\",\n  \"masap\",\n  \"masase\",\n  \"masayu\",\n  \"masbuk\",\n  \"masdar\",\n  \"masehi\",\n  \"masektomi\",\n  \"maser\",\n  \"maserasi\",\n  \"mashaf\",\n  \"masif\",\n  \"masih\",\n  \"masin\",\n  \"masinal\",\n  \"masing-masing\",\n  \"masinis\",\n  \"masir\",\n  \"masjid\",\n  \"masjidilaksa\",\n  \"masjidilharam\",\n  \"maskanat\",\n  \"maskapai\",\n  \"maskara\",\n  \"maskat\",\n  \"maskawin\",\n  \"masker\",\n  \"maskodok\",\n  \"maskon\",\n  \"maskot\",\n  \"maskulin\",\n  \"maskulinitas\",\n  \"maskumambang\",\n  \"maslahat\",\n  \"masnawi\",\n  \"masohi\",\n  \"masoi\",\n  \"masokhis\",\n  \"masokhisme\",\n  \"masokisme\",\n  \"mason\",\n  \"masori\",\n  \"masrum\",\n  \"massa\",\n  \"massal\",\n  \"mastautin\",\n  \"mastektomi\",\n  \"master\",\n  \"masterplan\",\n  \"mastik\",\n  \"mastitis\",\n  \"mastodon\",\n  \"mastuli\",\n  \"masturbasi\",\n  \"masuk\",\n  \"masuliah\",\n  \"masya\",\n  \"masyakah\",\n  \"masyarakat\",\n  \"masygul\",\n  \"masyhadat\",\n  \"masyhur\",\n  \"masyrik\",\n  \"masyuk\",\n  \"mat\",\n  \"mata\",\n  \"matador\",\n  \"matahari\",\n  \"matakao\",\n  \"matalamat\",\n  \"matan\",\n  \"matang\",\n  \"mate\",\n  \"matematika\",\n  \"matematikus\",\n  \"matematis\",\n  \"materi\",\n  \"material\",\n  \"materialistis\",\n  \"materiil\",\n  \"mati\",\n  \"matine\",\n  \"matlak\",\n  \"matoa\",\n  \"maton\",\n  \"matra\",\n  \"matras\",\n  \"matres\",\n  \"matriarkal\",\n  \"matriarkat\",\n  \"matriks\",\n  \"matrikulasi\",\n  \"matrilineal\",\n  \"matrilokal\",\n  \"matris\",\n  \"matronim\",\n  \"matros\",\n  \"matu\",\n  \"matur\",\n  \"maturasi\",\n  \"maturitas\",\n  \"mau\",\n  \"mauizah\",\n  \"maujud\",\n  \"maujudat\",\n  \"maukhid\",\n  \"maukif\",\n  \"maukuf\",\n  \"maula\",\n  \"maulai\",\n  \"maulana\",\n  \"maulhayat\",\n  \"maulid\",\n  \"maulidurasul\",\n  \"maulud\",\n  \"maung\",\n  \"maupun\",\n  \"mausoleum\",\n  \"maut\",\n  \"mauz\",\n  \"mawadah\",\n  \"mawar\",\n  \"mawas\",\n  \"maweda\",\n  \"mawin\",\n  \"mawon\",\n  \"mawut\",\n  \"maya\",\n  \"mayam\",\n  \"mayang\",\n  \"mayangda\",\n  \"mayapada\",\n  \"mayas\",\n  \"mayat\",\n  \"mayeng\",\n  \"mayokratio\",\n  \"mayones\",\n  \"mayor\",\n  \"mayoret\",\n  \"mayoritas\",\n  \"mayung\",\n  \"mayur\",\n  \"mazarin\",\n  \"mazbah\",\n  \"mazhab\",\n  \"mazi\",\n  \"mazkur\",\n  \"mazmumah\",\n  \"mazmur\",\n  \"mbah\",\n  \"mbak\",\n  \"mbakyu\",\n  \"mbeling\",\n  \"mbok\",\n  \"mbokmas\",\n  \"meander\",\n  \"mebel\",\n  \"mecis\",\n  \"medali\",\n  \"medalion\",\n  \"medan\",\n  \"medang\",\n  \"mede\",\n  \"media\",\n  \"medial\",\n  \"median\",\n  \"mediasi\",\n  \"mediastinum\",\n  \"mediator\",\n  \"medik\",\n  \"medikamentosa\",\n  \"medikasi\",\n  \"mediko\",\n  \"medikolegal\",\n  \"medikus\",\n  \"medil\",\n  \"medio\",\n  \"medis\",\n  \"medisinal\",\n  \"medit\",\n  \"meditasi\",\n  \"mediterania\",\n  \"medium\",\n  \"medok\",\n  \"medu\",\n  \"medula\",\n  \"medusa\",\n  \"mega\",\n  \"megabyte\",\n  \"megafon\",\n  \"megah\",\n  \"megak\",\n  \"megakredit\",\n  \"megal-megol\",\n  \"megalit\",\n  \"megalitikum\",\n  \"megalomania\",\n  \"megalomaniak\",\n  \"megalopolis\",\n  \"megalosit\",\n  \"megamerger\",\n  \"megan\",\n  \"megaohm\",\n  \"megap-megap\",\n  \"megapolis\",\n  \"megaproyek\",\n  \"megar\",\n  \"megaspora\",\n  \"megasporangium\",\n  \"megasporofil\",\n  \"megat\",\n  \"megaton\",\n  \"megatren\",\n  \"megatruh\",\n  \"megawatt\",\n  \"meger\",\n  \"megrek-megrek\",\n  \"mei\",\n  \"meiosis\",\n  \"meja\",\n  \"mejam\",\n  \"mejan\",\n  \"mejana\",\n  \"mejeng\",\n  \"mek\",\n  \"mekanik\",\n  \"mekanika\",\n  \"mekanikgraha\",\n  \"mekanis\",\n  \"mekanisasi\",\n  \"mekanisme\",\n  \"mekanolinguistik\",\n  \"mekap\",\n  \"mekar\",\n  \"meko\",\n  \"mekonium\",\n  \"mel\",\n  \"melabuai\",\n  \"melambang\",\n  \"melamin\",\n  \"melanesia\",\n  \"melangkup\",\n  \"melanin\",\n  \"melanisme\",\n  \"melankolia\",\n  \"melankolis\",\n  \"melankonis\",\n  \"melanoderma\",\n  \"melar\",\n  \"melarat\",\n  \"melas\",\n  \"melase\",\n  \"melasma\",\n  \"melati\",\n  \"melawah\",\n  \"melayu\",\n  \"melek\",\n  \"melela\",\n  \"melempem\",\n  \"meleng\",\n  \"meler\",\n  \"melesek\",\n  \"meleset\",\n  \"melik\",\n  \"melilin\",\n  \"melinjo\",\n  \"melintir\",\n  \"melit\",\n  \"melitofili\",\n  \"meliwis\",\n  \"melodi\",\n  \"melodika\",\n  \"melodius\",\n  \"melodrama\",\n  \"melodramatik\",\n  \"melodramatis\",\n  \"melompong\",\n  \"melon\",\n  \"melor\",\n  \"melotot\",\n  \"melpari\",\n  \"melukut\",\n  \"melulu\",\n  \"melur\",\n  \"mem\",\n  \"memang\",\n  \"memar\",\n  \"membal\",\n  \"memble\",\n  \"membran\",\n  \"memedi\",\n  \"memek\",\n  \"memelas\",\n  \"memo\",\n  \"memoar\",\n  \"memorabilia\",\n  \"memorandum\",\n  \"memorat\",\n  \"memori\",\n  \"memorial\",\n  \"mempan\",\n  \"mempelai\",\n  \"mempelam\",\n  \"mempelas\",\n  \"mempelasari\",\n  \"mempening\",\n  \"memper\",\n  \"mempitis\",\n  \"memplak\",\n  \"mempurung\",\n  \"memutah\",\n  \"mena\",\n  \"menaga\",\n  \"menak\",\n  \"menampun\",\n  \"menang\",\n  \"menantu\",\n  \"menara\",\n  \"menat\",\n  \"mencak\",\n  \"mencelat\",\n  \"menceng\",\n  \"menceret\",\n  \"mencit\",\n  \"mencla-mencle\",\n  \"menclok\",\n  \"mencok\",\n  \"mencong\",\n  \"mencos\",\n  \"mencret\",\n  \"mendak\",\n  \"mendap\",\n  \"mendapa\",\n  \"mendeleka\",\n  \"mendelevium\",\n  \"mendeng\",\n  \"mendiang\",\n  \"mendikai\",\n  \"mending\",\n  \"mendira\",\n  \"mendoan\",\n  \"mendonan\",\n  \"mendong\",\n  \"mendreng\",\n  \"mendu\",\n  \"mendung\",\n  \"mendur\",\n  \"mendura\",\n  \"mendut\",\n  \"menep\",\n  \"menepaat\",\n  \"mengah\",\n  \"mengangah\",\n  \"mengap\",\n  \"mengapa\",\n  \"mengapmendam\",\n  \"mengeh\",\n  \"mengerawan\",\n  \"mengerna\",\n  \"menget\",\n  \"mengga\",\n  \"menggala\",\n  \"menggusta\",\n  \"mengi\",\n  \"mengiang\",\n  \"mengicip\",\n  \"mengirat\",\n  \"mengkal\",\n  \"mengkali\",\n  \"mengkara\",\n  \"mengkaras\",\n  \"mengkelan\",\n  \"mengkerang\",\n  \"mengkeret\",\n  \"mengking\",\n  \"mengkirai\",\n  \"mengkirik\",\n  \"mengkis\",\n  \"mengkona\",\n  \"mengkuang\",\n  \"mengkudu\",\n  \"mengok\",\n  \"mengor\",\n  \"mengot\",\n  \"mengsol\",\n  \"mengsong\",\n  \"mengung\",\n  \"menhir\",\n  \"meni\",\n  \"meningitis\",\n  \"menir\",\n  \"meniran\",\n  \"meniskus\",\n  \"menit\",\n  \"menjangan\",\n  \"menong\",\n  \"menopause\",\n  \"menor\",\n  \"menoragia\",\n  \"menostaksis\",\n  \"mens\",\n  \"menserendahi\",\n  \"mensiang\",\n  \"menstruasi\",\n  \"mensurasi\",\n  \"mentah\",\n  \"mentak\",\n  \"mental\",\n  \"mentalitas\",\n  \"mentang\",\n  \"mentari\",\n  \"mentaruh\",\n  \"mentas\",\n  \"mentaus\",\n  \"mentega\",\n  \"menteleng\",\n  \"menteng\",\n  \"mentereng\",\n  \"menteri\",\n  \"mentibu\",\n  \"mentifakta\",\n  \"mentigi\",\n  \"mentilau\",\n  \"mentimun\",\n  \"mentis\",\n  \"mentok\",\n  \"mentol\",\n  \"mentolo\",\n  \"mentor\",\n  \"mentora\",\n  \"mentua\",\n  \"mentul\",\n  \"menu\",\n  \"menuet\",\n  \"menung\",\n  \"menur\",\n  \"meong\",\n  \"mepet\",\n  \"meracang\",\n  \"meraga\",\n  \"meragi\",\n  \"merah\",\n  \"merajak\",\n  \"merak\",\n  \"merakan\",\n  \"meralgia\",\n  \"merambai\",\n  \"merambung\",\n  \"merana\",\n  \"merang\",\n  \"meranggi\",\n  \"merangsi\",\n  \"merangu\",\n  \"meranti\",\n  \"merapu\",\n  \"merat\",\n  \"merawal\",\n  \"merawan\",\n  \"merbah\",\n  \"merbau\",\n  \"merbaya\",\n  \"merbuk\",\n  \"merbulan\",\n  \"mercak-mercik\",\n  \"mercon\",\n  \"mercu\",\n  \"mercusuar\",\n  \"merdangga\",\n  \"merdeka\",\n  \"merdesa\",\n  \"merdinah\",\n  \"merdu\",\n  \"merduk\",\n  \"mere\",\n  \"merek\",\n  \"mereka\",\n  \"merem\",\n  \"merembung\",\n  \"mereng\",\n  \"meres\",\n  \"mergat\",\n  \"merger\",\n  \"mergul\",\n  \"meri\",\n  \"meriam\",\n  \"meriang\",\n  \"merica\",\n  \"meridian\",\n  \"merih\",\n  \"merik\",\n  \"merikan\",\n  \"merikarp\",\n  \"merinding\",\n  \"mering\",\n  \"meristem\",\n  \"merjan\",\n  \"merkah\",\n  \"merkantilisme\",\n  \"merkubang\",\n  \"merkuri\",\n  \"merkurium\",\n  \"merkurius\",\n  \"merkuro\",\n  \"merkurokrom\",\n  \"merlilin\",\n  \"merlimau\",\n  \"merogoni\",\n  \"merosot\",\n  \"merot\",\n  \"merpati\",\n  \"merpaud\",\n  \"merpitis\",\n  \"merpoyan\",\n  \"merserisasi\",\n  \"mersik\",\n  \"merta\",\n  \"mertamu\",\n  \"mertapal\",\n  \"mertayam\",\n  \"mertega\",\n  \"mertelu\",\n  \"mertua\",\n  \"meru\",\n  \"meruap\",\n  \"merubi\",\n  \"merunggai\",\n  \"merut\",\n  \"merwatin\",\n  \"mes\",\n  \"mesa\",\n  \"mesan\",\n  \"mesara\",\n  \"mesem\",\n  \"mesin\",\n  \"mesiu\",\n  \"mesjid\",\n  \"meskalin\",\n  \"meskalina\",\n  \"meski\",\n  \"mesmerisme\",\n  \"mesoderm\",\n  \"mesodermik\",\n  \"mesofili\",\n  \"mesofit\",\n  \"mesolitik\",\n  \"mesolitikum\",\n  \"mesometeorologi\",\n  \"mesomorf\",\n  \"meson\",\n  \"mesopause\",\n  \"mesosfer\",\n  \"mesotel\",\n  \"mesotoraks\",\n  \"mesozoa\",\n  \"mesozoikum\",\n  \"mesra\",\n  \"mester\",\n  \"mesti\",\n  \"mestika\",\n  \"mestizo\",\n  \"mesui\",\n  \"mesum\",\n  \"mesut\",\n  \"meta\",\n  \"metabahasa\",\n  \"metabolik\",\n  \"metabolis\",\n  \"metabolisme\",\n  \"metabolit\",\n  \"metafil\",\n  \"metafisik\",\n  \"metafisika\",\n  \"metafora\",\n  \"metaforis\",\n  \"metah\",\n  \"metai\",\n  \"metal\",\n  \"metalik\",\n  \"metalinguistik\",\n  \"metalografi\",\n  \"metaloid\",\n  \"metalurgi\",\n  \"metalurgis\",\n  \"metamorf\",\n  \"metamorfis\",\n  \"metamorfisme\",\n  \"metamorfosis\",\n  \"metana\",\n  \"metanefros\",\n  \"metanol\",\n  \"metari\",\n  \"metasenter\",\n  \"metastasis\",\n  \"metatarsus\",\n  \"metatesis\",\n  \"metazoa\",\n  \"mete\",\n  \"meteor\",\n  \"meteorit\",\n  \"meteorograf\",\n  \"meteorogram\",\n  \"meteoroid\",\n  \"meteorologi\",\n  \"meteorologis\",\n  \"meter\",\n  \"meterai\",\n  \"metil\",\n  \"metode\",\n  \"metodik\",\n  \"metodis\",\n  \"metodologi\",\n  \"metonimi\",\n  \"metonimia\",\n  \"metrik\",\n  \"metris\",\n  \"metro\",\n  \"metrologi\",\n  \"metromini\",\n  \"metronimik\",\n  \"metronom\",\n  \"metronomis\",\n  \"metropolis\",\n  \"metropolisasi\",\n  \"metropolitan\",\n  \"metroragia\",\n  \"metrum\",\n  \"meunasah\",\n  \"mewah\",\n  \"mewari\",\n  \"mewek\",\n  \"mezanin\",\n  \"mezbah\",\n  \"mezosopran\",\n  \"mi\",\n  \"miak\",\n  \"miana\",\n  \"miang\",\n  \"miap\",\n  \"miasma\",\n  \"midar\",\n  \"midi\",\n  \"midik\",\n  \"midodareni\",\n  \"mieloma\",\n  \"migrain\",\n  \"migran\",\n  \"migrasi\",\n  \"migren\",\n  \"mihrab\",\n  \"mihun\",\n  \"miiofili\",\n  \"mijil\",\n  \"miju\",\n  \"mik\",\n  \"mika\",\n  \"mikat\",\n  \"mikologi\",\n  \"mikoprotein\",\n  \"mikosis\",\n  \"mikotoksin\",\n  \"mikraj\",\n  \"mikro\",\n  \"mikroanalisis\",\n  \"mikroangiopati\",\n  \"mikrob\",\n  \"mikrobe\",\n  \"mikrobiologi\",\n  \"mikrobiologis\",\n  \"mikrobisida\",\n  \"mikrobus\",\n  \"mikroekonomi\",\n  \"mikroelektronika\",\n  \"mikroelemen\",\n  \"mikrofag\",\n  \"mikrofarad\",\n  \"mikrofilm\",\n  \"mikrofita\",\n  \"mikrofon\",\n  \"mikrofotografi\",\n  \"mikrogelombang\",\n  \"mikrograf\",\n  \"mikrografika\",\n  \"mikrogram\",\n  \"mikrohabitat\",\n  \"mikrohistori\",\n  \"mikrohm\",\n  \"mikroklimat\",\n  \"mikrokomputer\",\n  \"mikrokosmos\",\n  \"mikrolet\",\n  \"mikrolinguistik\",\n  \"mikrolit\",\n  \"mikrom\",\n  \"mikromanipulasi\",\n  \"mikrometer\",\n  \"mikrometri\",\n  \"mikron\",\n  \"mikroorganisme\",\n  \"mikroprosesor\",\n  \"mikrosefalia\",\n  \"mikrosekon\",\n  \"mikroskop\",\n  \"mikroskopis\",\n  \"mikrospora\",\n  \"mikrotom\",\n  \"mikrovilus\",\n  \"mikrowatt\",\n  \"mikser\",\n  \"miksoedema\",\n  \"mil\",\n  \"milad\",\n  \"milenium\",\n  \"miliampere\",\n  \"miliar\",\n  \"miliarder\",\n  \"miliaria\",\n  \"milibar\",\n  \"milieu\",\n  \"miligram\",\n  \"milik\",\n  \"mililiter\",\n  \"milimeter\",\n  \"milimikron\",\n  \"milimol\",\n  \"milioner\",\n  \"milir\",\n  \"milisi\",\n  \"militan\",\n  \"militansi\",\n  \"militer\",\n  \"militerisme\",\n  \"militeristis\",\n  \"miliun\",\n  \"miliuner\",\n  \"milivolt\",\n  \"milu\",\n  \"mim\",\n  \"mimbar\",\n  \"mimeograf\",\n  \"mimesis\",\n  \"mimi\",\n  \"mimik\",\n  \"mimikri\",\n  \"mimis\",\n  \"mimisan\",\n  \"mimosa\",\n  \"mimpi\",\n  \"min\",\n  \"mina\",\n  \"minangsraya\",\n  \"minat\",\n  \"minder\",\n  \"mindi\",\n  \"mindoan\",\n  \"mindring\",\n  \"mineral\",\n  \"mineralisasi\",\n  \"mineralogi\",\n  \"mineralogis\",\n  \"minggat\",\n  \"minggir\",\n  \"minggu\",\n  \"minhaj\",\n  \"mini\",\n  \"miniatur\",\n  \"minibasket\",\n  \"minibus\",\n  \"minikar\",\n  \"minikata\",\n  \"minikomputer\",\n  \"minim\",\n  \"minimal\",\n  \"minimarket\",\n  \"minimum\",\n  \"minium\",\n  \"minor\",\n  \"minoritas\",\n  \"minta\",\n  \"mintak\",\n  \"mintakat\",\n  \"mintakulburuj\",\n  \"mintal\",\n  \"minterat\",\n  \"mintuna\",\n  \"minum\",\n  \"minus\",\n  \"minyak\",\n  \"mioglobin\",\n  \"miokardia\",\n  \"mioma\",\n  \"miop\",\n  \"miopia\",\n  \"miosis\",\n  \"miotik\",\n  \"mipis\",\n  \"mirah\",\n  \"mirai\",\n  \"mirakel\",\n  \"mirat\",\n  \"miriapod\",\n  \"mirih\",\n  \"mirik\",\n  \"miring\",\n  \"mirip\",\n  \"miris\",\n  \"mirmekofag\",\n  \"mirmekofili\",\n  \"mirmekologi\",\n  \"misa\",\n  \"misai\",\n  \"misal\",\n  \"misan\",\n  \"misantrop\",\n  \"misbah\",\n  \"misdinar\",\n  \"misi\",\n  \"misil\",\n  \"misiologi\",\n  \"misionaris\",\n  \"misioner\",\n  \"miskal\",\n  \"miskin\",\n  \"miskram\",\n  \"misoa\",\n  \"misofobia\",\n  \"misogami\",\n  \"misoginis\",\n  \"mispersepsi\",\n  \"miss\",\n  \"mistar\",\n  \"mister\",\n  \"misteri\",\n  \"misterius\",\n  \"mistik\",\n  \"mistis\",\n  \"mistisisme\",\n  \"mistri\",\n  \"misuh\",\n  \"miswat\",\n  \"mitasi\",\n  \"mite\",\n  \"mitisida\",\n  \"mitogen\",\n  \"mitologi\",\n  \"mitologis\",\n  \"mitos\",\n  \"mitosis\",\n  \"mitra\",\n  \"mitraliur\",\n  \"mizab\",\n  \"mizan\",\n  \"mnemonik\",\n  \"moa\",\n  \"mob\",\n  \"mobil\",\n  \"mobilet\",\n  \"mobilisasi\",\n  \"mobilisator\",\n  \"mobilitas\",\n  \"moblong\",\n  \"mobokrasi\",\n  \"mochi\",\n  \"modal\",\n  \"modalitas\",\n  \"modar\",\n  \"mode\",\n  \"model\",\n  \"modeling\",\n  \"modem\",\n  \"moderamen\",\n  \"moderat\",\n  \"moderato\",\n  \"moderator\",\n  \"modern\",\n  \"modernisasi\",\n  \"modernisme\",\n  \"modernitas\",\n  \"modernomaniak\",\n  \"modifikasi\",\n  \"modifikatif\",\n  \"modin\",\n  \"modis\",\n  \"modiste\",\n  \"modol\",\n  \"modul\",\n  \"modular\",\n  \"modulasi\",\n  \"modulator\",\n  \"modus\",\n  \"mofet\",\n  \"moga\",\n  \"mogok\",\n  \"mohair\",\n  \"mohon\",\n  \"mohor\",\n  \"mojah\",\n  \"mojang\",\n  \"mok\",\n  \"moka\",\n  \"mokal\",\n  \"moke\",\n  \"moko\",\n  \"moksa\",\n  \"mol\",\n  \"mola\",\n  \"molar\",\n  \"mole\",\n  \"molek\",\n  \"molekul\",\n  \"molekuler\",\n  \"moler\",\n  \"moles\",\n  \"molibden\",\n  \"molibdenum\",\n  \"molor\",\n  \"molos\",\n  \"molotov\",\n  \"moluska\",\n  \"momen\",\n  \"momental\",\n  \"momentum\",\n  \"momok\",\n  \"momong\",\n  \"momot\",\n  \"monarki\",\n  \"moncong\",\n  \"moncor\",\n  \"mondar-mandir\",\n  \"mondeling\",\n  \"mondial\",\n  \"mondok\",\n  \"mondolan\",\n  \"mondong\",\n  \"monel\",\n  \"moneter\",\n  \"mong\",\n  \"monggo\",\n  \"monggol\",\n  \"mongkok\",\n  \"mongmong\",\n  \"mongolisme\",\n  \"mongoloid\",\n  \"monisme\",\n  \"monitor\",\n  \"mono\",\n  \"monoatom\",\n  \"monodi\",\n  \"monodrama\",\n  \"monofag\",\n  \"monofobia\",\n  \"monofonir\",\n  \"monogam\",\n  \"monogami\",\n  \"monogini\",\n  \"monografi\",\n  \"monogram\",\n  \"monokarpa\",\n  \"monokel\",\n  \"monokini\",\n  \"monoklin\",\n  \"monoklinal\",\n  \"monokotil\",\n  \"monokotiledon\",\n  \"monokrasi\",\n  \"monokrom\",\n  \"monokromatis\",\n  \"monokromator\",\n  \"monoksida\",\n  \"monokultur\",\n  \"monolingual\",\n  \"monolit\",\n  \"monolitik\",\n  \"monolog\",\n  \"monoloyalitas\",\n  \"monomania\",\n  \"monomer\",\n  \"monoploid\",\n  \"monopoli\",\n  \"monopolistik\",\n  \"monopsoni\",\n  \"monorel\",\n  \"monosakarida\",\n  \"monosem\",\n  \"monosemantik\",\n  \"monosemi\",\n  \"monosilabel\",\n  \"monosilabisme\",\n  \"monosit\",\n  \"monospermi\",\n  \"monoteis\",\n  \"monoteisme\",\n  \"monotipe\",\n  \"monoton\",\n  \"monsinyur\",\n  \"monster\",\n  \"monstera\",\n  \"monsun\",\n  \"montase\",\n  \"montering\",\n  \"montir\",\n  \"montit\",\n  \"montok\",\n  \"monumen\",\n  \"monumental\",\n  \"monyet\",\n  \"monyong\",\n  \"monyos\",\n  \"mop\",\n  \"mopela\",\n  \"mopit\",\n  \"morak\",\n  \"moral\",\n  \"moralis\",\n  \"moralisasi\",\n  \"moralisme\",\n  \"moralistis\",\n  \"moralitas\",\n  \"morat-marit\",\n  \"moratorium\",\n  \"morbiditas\",\n  \"morbili\",\n  \"mordan\",\n  \"moreng\",\n  \"mores\",\n  \"morf\",\n  \"morfem\",\n  \"morfemik\",\n  \"morfemis\",\n  \"morfin\",\n  \"morfinis\",\n  \"morfofonem\",\n  \"morfofonemik\",\n  \"morfofonemis\",\n  \"morfofonologi\",\n  \"morfogenesis\",\n  \"morfologi\",\n  \"mori\",\n  \"moril\",\n  \"mormon\",\n  \"moron\",\n  \"morong\",\n  \"morse\",\n  \"mortalitas\",\n  \"mortar\",\n  \"mortir\",\n  \"mosaik\",\n  \"mosi\",\n  \"mosok\",\n  \"moster\",\n  \"mota\",\n  \"motel\",\n  \"motif\",\n  \"motivasi\",\n  \"motivator\",\n  \"moto\",\n  \"motor\",\n  \"motorik\",\n  \"motoris\",\n  \"motorisasi\",\n  \"motorsaikel\",\n  \"moyang\",\n  \"mozah\",\n  \"mozaik\",\n  \"mu\",\n  \"mua\",\n  \"muadin\",\n  \"muai\",\n  \"muak\",\n  \"muakadah\",\n  \"mual\",\n  \"mualaf\",\n  \"mualamat\",\n  \"mualif\",\n  \"mualim\",\n  \"muamalah\",\n  \"muamalat\",\n  \"muanas\",\n  \"muara\",\n  \"muarikh\",\n  \"muas\",\n  \"muasasah\",\n  \"muasir\",\n  \"muat\",\n  \"muazam\",\n  \"muazin\",\n  \"mubah\",\n  \"mubalig\",\n  \"mubaligah\",\n  \"mubarak\",\n  \"mubarat\",\n  \"mubazir\",\n  \"mubtadi\",\n  \"mubut\",\n  \"mucikari\",\n  \"mud\",\n  \"muda\",\n  \"mudah\",\n  \"mudakar\",\n  \"mudarabah\",\n  \"mudarat\",\n  \"mudasir\",\n  \"mudat\",\n  \"mudigah\",\n  \"mudik\",\n  \"mudra\",\n  \"mudun\",\n  \"mufaham\",\n  \"mufakat\",\n  \"mufarik\",\n  \"mufasal\",\n  \"mufasir\",\n  \"muflis\",\n  \"mufrad\",\n  \"mufsidin\",\n  \"mufti\",\n  \"mugabat\",\n  \"muhabah\",\n  \"muhadarah\",\n  \"muhadat\",\n  \"muhajat\",\n  \"muhajir\",\n  \"muhajirin\",\n  \"muhal\",\n  \"muhalil\",\n  \"muhami\",\n  \"muhammad\",\n  \"muharam\",\n  \"muhasabah\",\n  \"muhib\",\n  \"muhibah\",\n  \"muhit\",\n  \"muhlikah\",\n  \"muhrim\",\n  \"muhsin\",\n  \"muhtasyam\",\n  \"muih\",\n  \"mujadalah\",\n  \"mujadid\",\n  \"mujahadat\",\n  \"mujahid\",\n  \"mujahidin\",\n  \"mujair\",\n  \"mujang\",\n  \"mujarab\",\n  \"mujarad\",\n  \"mujari\",\n  \"mujbir\",\n  \"mujtahid\",\n  \"mujtamak\",\n  \"mujur\",\n  \"muk\",\n  \"muka\",\n  \"mukabalah\",\n  \"mukadam\",\n  \"mukadas\",\n  \"mukadim\",\n  \"mukadimah\",\n  \"mukadin\",\n  \"mukadis\",\n  \"mukah\",\n  \"mukalaf\",\n  \"mukalid\",\n  \"mukaram\",\n  \"mukatabah\",\n  \"mukena\",\n  \"mukhabarah\",\n  \"mukhalaf\",\n  \"mukhalafah\",\n  \"mukhalif\",\n  \"mukhalis\",\n  \"mukhlis\",\n  \"mukhtasar\",\n  \"mukibat\",\n  \"mukim\",\n  \"mukimin\",\n  \"mukjizat\",\n  \"mukmin\",\n  \"mukminat\",\n  \"mukminin\",\n  \"mukoprotein\",\n  \"mukosa\",\n  \"mukositis\",\n  \"muktabar\",\n  \"muktamad\",\n  \"muktamar\",\n  \"muktamirin\",\n  \"muktazilah\",\n  \"mukun\",\n  \"mula\",\n  \"mulai\",\n  \"mulakat\",\n  \"mulamasah\",\n  \"mulas\",\n  \"mulat\",\n  \"mulato\",\n  \"mulazamah\",\n  \"mulhid\",\n  \"mulia\",\n  \"mullah\",\n  \"mulsa\",\n  \"multazam\",\n  \"multibahasa\",\n  \"multidimensi\",\n  \"multidisipliner\",\n  \"multietnik\",\n  \"multifaset\",\n  \"multifungsi\",\n  \"multigravida\",\n  \"multiguna\",\n  \"multikompleks\",\n  \"multikrisis\",\n  \"multikultur\",\n  \"multikulturalisme\",\n  \"multilateral\",\n  \"multilingual\",\n  \"multilingualisme\",\n  \"multimedia\",\n  \"multimeter\",\n  \"multimilioner\",\n  \"multinasional\",\n  \"multinegara\",\n  \"multiorgan\",\n  \"multipara\",\n  \"multipel\",\n  \"multipleks\",\n  \"multiplikasi\",\n  \"multiplikator\",\n  \"multipolar\",\n  \"multiprosesor\",\n  \"multirasial\",\n  \"multirasialisme\",\n  \"multiseluler\",\n  \"multivalen\",\n  \"multivalensi\",\n  \"multivitamin\",\n  \"muluk\",\n  \"mulur\",\n  \"mulus\",\n  \"mulut\",\n  \"mumayiz\",\n  \"mumbang\",\n  \"mumbul\",\n  \"mumbung\",\n  \"mumet\",\n  \"mumi\",\n  \"mumifikasi\",\n  \"mumpung\",\n  \"mumpuni\",\n  \"mumuk\",\n  \"mumur\",\n  \"mumut\",\n  \"munafik\",\n  \"munafikin\",\n  \"munajat\",\n  \"munajim\",\n  \"munasabah\",\n  \"muncang\",\n  \"munci\",\n  \"muncikari\",\n  \"muncrat\",\n  \"muncul\",\n  \"muncus\",\n  \"mundam\",\n  \"munding\",\n  \"mundu\",\n  \"mundur\",\n  \"mung\",\n  \"munggu\",\n  \"munggur\",\n  \"mungil\",\n  \"mungkar\",\n  \"mungkin\",\n  \"mungkir\",\n  \"mungkum\",\n  \"mungkur\",\n  \"mungmung\",\n  \"mungsi\",\n  \"mungut\",\n  \"munib\",\n  \"munjung\",\n  \"muno\",\n  \"munsyi\",\n  \"muntaber\",\n  \"muntah\",\n  \"muntaha\",\n  \"muntu\",\n  \"muntul\",\n  \"muntup\",\n  \"munyuk\",\n  \"muon\",\n  \"mupaham\",\n  \"muparik\",\n  \"mupus\",\n  \"mur\",\n  \"mura\",\n  \"murad\",\n  \"muradif\",\n  \"murah\",\n  \"murai\",\n  \"murakab\",\n  \"murakabi\",\n  \"mural\",\n  \"muram\",\n  \"murang\",\n  \"muras\",\n  \"murba\",\n  \"murbei\",\n  \"murca\",\n  \"muri\",\n  \"murid\",\n  \"muring\",\n  \"muris\",\n  \"murka\",\n  \"murni\",\n  \"mursal\",\n  \"mursyid\",\n  \"murtad\",\n  \"muruah\",\n  \"murung\",\n  \"murup\",\n  \"murus\",\n  \"mus\",\n  \"musaadah\",\n  \"musabab\",\n  \"musabaqah\",\n  \"musafir\",\n  \"musafirin\",\n  \"musakat\",\n  \"musala\",\n  \"musang\",\n  \"musara\",\n  \"museolog\",\n  \"museologi\",\n  \"museum\",\n  \"mushaf\",\n  \"musibah\",\n  \"musik\",\n  \"musikal\",\n  \"musikalisasi\",\n  \"musikalitas\",\n  \"musikolog\",\n  \"musikologi\",\n  \"musikologis\",\n  \"musikus\",\n  \"musim\",\n  \"musisi\",\n  \"muskil\",\n  \"muskovit\",\n  \"muslih\",\n  \"muslihat\",\n  \"muslim\",\n  \"muslimat\",\n  \"muslimin\",\n  \"muslin\",\n  \"musnah\",\n  \"muspra\",\n  \"mustahak\",\n  \"mustahik\",\n  \"mustahil\",\n  \"mustaid\",\n  \"mustajab\",\n  \"mustak\",\n  \"mustaka\",\n  \"mustakim\",\n  \"mustamik\",\n  \"mustang\",\n  \"musuh\",\n  \"musyarakah\",\n  \"musyarakat\",\n  \"musyarik\",\n  \"musyawarah\",\n  \"musyawarat\",\n  \"musyrik\",\n  \"musyrikin\",\n  \"musytak\",\n  \"musytari\",\n  \"mutabar\",\n  \"mutagen\",\n  \"mutah\",\n  \"mutakadim\",\n  \"mutakalim\",\n  \"mutakhir\",\n  \"mutaki\",\n  \"mutalaah\",\n  \"mutamad\",\n  \"mutan\",\n  \"mutasawif\",\n  \"mutasi\",\n  \"mutawif\",\n  \"mute\",\n  \"mutiara\",\n  \"mutih\",\n  \"mutilasi\",\n  \"mutisme\",\n  \"mutlak\",\n  \"mutmainah\",\n  \"mutu\",\n  \"mutualisme\",\n  \"mutung\",\n  \"muwafakat\",\n  \"muwahid\",\n  \"muwajahah\",\n  \"muwakal\",\n  \"muwakil\",\n  \"muwari\",\n  \"muzah\",\n  \"muzakar\",\n  \"muzakarah\",\n  \"muzaki\",\n  \"muzamil\",\n  \"muzawir\",\n  \"muzhab\",\n  \"naam\",\n  \"nabatah\",\n  \"nabati\",\n  \"nabi\",\n  \"nabtun\",\n  \"nabu\",\n  \"nada\",\n  \"nadi\",\n  \"nadim\",\n  \"nadir\",\n  \"naf\",\n  \"nafar\",\n  \"nafas\",\n  \"nafi\",\n  \"nafiri\",\n  \"nafkah\",\n  \"nafsi\",\n  \"nafsu\",\n  \"nafta\",\n  \"naftal\",\n  \"naftalena\",\n  \"naftena\",\n  \"naftol\",\n  \"naga\",\n  \"nagam\",\n  \"nagara\",\n  \"nagari\",\n  \"nagasari\",\n  \"nahak\",\n  \"nahas\",\n  \"nahdiyin\",\n  \"nahi\",\n  \"nahkoda\",\n  \"nahu\",\n  \"naib\",\n  \"naif\",\n  \"naik\",\n  \"naim\",\n  \"najam\",\n  \"najasah\",\n  \"najasat\",\n  \"najis\",\n  \"nak\",\n  \"naka\",\n  \"nakal\",\n  \"nakara\",\n  \"nakhoda\",\n  \"nal\",\n  \"nala\",\n  \"nalam\",\n  \"nalar\",\n  \"nali\",\n  \"nalih\",\n  \"naluri\",\n  \"naluriah\",\n  \"nama\",\n  \"namaskara\",\n  \"namatad\",\n  \"namatium\",\n  \"nambi\",\n  \"namnam\",\n  \"nampan\",\n  \"namun\",\n  \"nan\",\n  \"nanah\",\n  \"nanang\",\n  \"nanap\",\n  \"nanaplankton\",\n  \"nanar\",\n  \"nanas\",\n  \"nandu\",\n  \"nandung\",\n  \"nang\",\n  \"nangka\",\n  \"nangkoda\",\n  \"nangkring\",\n  \"nangui\",\n  \"naning\",\n  \"nanofarad\",\n  \"nanofosil\",\n  \"nanogram\",\n  \"nanometer\",\n  \"nanti\",\n  \"napal\",\n  \"napalm\",\n  \"napas\",\n  \"napuh\",\n  \"naqal\",\n  \"naqli\",\n  \"nara\",\n  \"narablog\",\n  \"narapati\",\n  \"narapidana\",\n  \"narapraja\",\n  \"narasi\",\n  \"narasumber\",\n  \"naratif\",\n  \"narator\",\n  \"narkolepsi\",\n  \"narkomaniak\",\n  \"narkose\",\n  \"narkosis\",\n  \"narkotik\",\n  \"narpati\",\n  \"narsis\",\n  \"narsisisme\",\n  \"narsisme\",\n  \"narwastu\",\n  \"nas\",\n  \"nasab\",\n  \"nasabah\",\n  \"nasakh\",\n  \"nasal\",\n  \"nasalisasi\",\n  \"nasar\",\n  \"nasehat\",\n  \"nasel\",\n  \"nasi\",\n  \"nasib\",\n  \"nasihat\",\n  \"nasion\",\n  \"nasional\",\n  \"nasionalis\",\n  \"nasionalisasi\",\n  \"nasionalisme\",\n  \"nasionalistis\",\n  \"nasionisme\",\n  \"naskah\",\n  \"nasofaring\",\n  \"nasrani\",\n  \"nasti\",\n  \"nasut\",\n  \"natal\",\n  \"natalis\",\n  \"natalitas\",\n  \"natang\",\n  \"natar\",\n  \"natijah\",\n  \"nativis\",\n  \"nativisme\",\n  \"nativistik\",\n  \"natolokal\",\n  \"natrium\",\n  \"natur\",\n  \"natura\",\n  \"natural\",\n  \"naturalis\",\n  \"naturalisasi\",\n  \"naturalisme\",\n  \"naturalistis\",\n  \"naturopatis\",\n  \"naung\",\n  \"nauplius\",\n  \"nausea\",\n  \"nautik\",\n  \"nautika\",\n  \"nautikal\",\n  \"nautilus\",\n  \"nauzubillah\",\n  \"navigasi\",\n  \"navigator\",\n  \"nawa\",\n  \"nawaitu\",\n  \"nawala\",\n  \"nawalapradata\",\n  \"nayaka\",\n  \"nayam\",\n  \"nayap\",\n  \"nazam\",\n  \"nazar\",\n  \"nazi\",\n  \"naziisme\",\n  \"nazim\",\n  \"nazir\",\n  \"ndoro\",\n  \"ndoroisme\",\n  \"neala\",\n  \"nealogi\",\n  \"nebeng\",\n  \"nebula\",\n  \"nebulium\",\n  \"neces\",\n  \"necis\",\n  \"nefoskop\",\n  \"nefrektomi\",\n  \"nefridium\",\n  \"nefrit\",\n  \"nefritis\",\n  \"nefroblastoma\",\n  \"nefrologi\",\n  \"nefron\",\n  \"nefrosis\",\n  \"negara\",\n  \"negasi\",\n  \"negatif\",\n  \"negativisme\",\n  \"negativistik\",\n  \"neger\",\n  \"negeri\",\n  \"negosi\",\n  \"negosiasi\",\n  \"negosiator\",\n  \"negrito\",\n  \"negro\",\n  \"negroid\",\n  \"negus\",\n  \"neka\",\n  \"nekad\",\n  \"nekara\",\n  \"nekat\",\n  \"nekel\",\n  \"neko\",\n  \"nekrofag\",\n  \"nekrofagus\",\n  \"nekrofili\",\n  \"nekrofilia\",\n  \"nekrogeografi\",\n  \"nekrolog\",\n  \"nekrologi\",\n  \"nekromansi\",\n  \"nekropolis\",\n  \"nekropsi\",\n  \"nekrosis\",\n  \"neksus\",\n  \"nektar\",\n  \"nelangsa\",\n  \"nelayan\",\n  \"nemagon\",\n  \"nematoda\",\n  \"nematologi\",\n  \"nematosida\",\n  \"nematosis\",\n  \"nenda\",\n  \"nendatan\",\n  \"nenek\",\n  \"nenekanda\",\n  \"nenen\",\n  \"nenenda\",\n  \"nener\",\n  \"nenes\",\n  \"neng\",\n  \"neodarwinisme\",\n  \"neodimium\",\n  \"neofeodalisme\",\n  \"neofeodalistis\",\n  \"neoiknologi\",\n  \"neoimpresionisme\",\n  \"neokarpi\",\n  \"neoklasik\",\n  \"neoklasisisme\",\n  \"neoklasisme\",\n  \"neokolonialisme\",\n  \"neoliberalisme\",\n  \"neolit\",\n  \"neolitik\",\n  \"neolitikum\",\n  \"neologi\",\n  \"neologisme\",\n  \"neolokal\",\n  \"neon\",\n  \"neonatal\",\n  \"neonatus\",\n  \"neontologi\",\n  \"neoplasma\",\n  \"neoplatonisme\",\n  \"neoprena\",\n  \"neositosis\",\n  \"neotipologi\",\n  \"neovirus\",\n  \"neozoikum\",\n  \"nepotis\",\n  \"nepotisme\",\n  \"neptunium\",\n  \"neptunus\",\n  \"neraca\",\n  \"nerak\",\n  \"neraka\",\n  \"neritik\",\n  \"neritopelagik\",\n  \"neritoplankton\",\n  \"neroglia\",\n  \"nervasi\",\n  \"nervur\",\n  \"nesa\",\n  \"nestapa\",\n  \"nestor\",\n  \"net\",\n  \"neting\",\n  \"neto\",\n  \"netra\",\n  \"netral\",\n  \"netralis\",\n  \"netralisasi\",\n  \"netralisme\",\n  \"netralitas\",\n  \"neural\",\n  \"neuralgia\",\n  \"neurastenia\",\n  \"neuritis\",\n  \"neuroblastoma\",\n  \"neuroglia\",\n  \"neurolinguistik\",\n  \"neurolog\",\n  \"neurologi\",\n  \"neurologis\",\n  \"neuron\",\n  \"neurosis\",\n  \"neurotik\",\n  \"neurotransmiter\",\n  \"neustonologi\",\n  \"neutrino\",\n  \"neutron\",\n  \"newton\",\n  \"ngabei\",\n  \"ngaben\",\n  \"ngablak\",\n  \"ngabur\",\n  \"ngakngikngok\",\n  \"ngalau\",\n  \"ngalor-ngidul\",\n  \"nganga\",\n  \"ngap-ngap\",\n  \"ngapain\",\n  \"ngarai\",\n  \"ngeang\",\n  \"ngebet\",\n  \"ngebut\",\n  \"ngeceng\",\n  \"ngeden\",\n  \"ngedumel\",\n  \"ngelindur\",\n  \"ngemil\",\n  \"ngenas\",\n  \"ngengat\",\n  \"ngenyek\",\n  \"ngeong\",\n  \"ngeres\",\n  \"ngeri\",\n  \"ngiang\",\n  \"ngilu\",\n  \"ngoko\",\n  \"ngos-ngosan\",\n  \"ngot-ngotan\",\n  \"ngowos\",\n  \"ngoyo\",\n  \"ngung\",\n  \"nia\",\n  \"niaga\",\n  \"nian\",\n  \"niasin\",\n  \"niat\",\n  \"nibung\",\n  \"nica\",\n  \"nidasi\",\n  \"nidera\",\n  \"nidikola\",\n  \"nidulus\",\n  \"nifak\",\n  \"nifas\",\n  \"nih\",\n  \"nihil\",\n  \"nihilis\",\n  \"nihilisme\",\n  \"nijas\",\n  \"nik\",\n  \"nikah\",\n  \"nikel\",\n  \"nikmat\",\n  \"nikotin\",\n  \"niktigami\",\n  \"nila\",\n  \"nilai\",\n  \"nilakandi\",\n  \"nilam\",\n  \"nilau\",\n  \"nilon\",\n  \"nimbostratus\",\n  \"nimbrung\",\n  \"nimfomania\",\n  \"ninabobo\",\n  \"ning\",\n  \"ningnong\",\n  \"ningrat\",\n  \"nini\",\n  \"ninik\",\n  \"ninitowok\",\n  \"niobium\",\n  \"nipah\",\n  \"nipis\",\n  \"nira\",\n  \"niraksara\",\n  \"nirgagasan\",\n  \"nirgesekan\",\n  \"nirguna\",\n  \"nirkabel\",\n  \"nirlaba\",\n  \"nirleka\",\n  \"nirmala\",\n  \"nirselera\",\n  \"nirwana\",\n  \"nirwarta\",\n  \"nisab\",\n  \"nisan\",\n  \"nisbah\",\n  \"nisbi\",\n  \"niscaya\",\n  \"niskala\",\n  \"nista\",\n  \"nistagmus\",\n  \"nistatin\",\n  \"nitrat\",\n  \"nitrifikasi\",\n  \"nitrobenzena\",\n  \"nitrofili\",\n  \"nitrofit\",\n  \"nitrogen\",\n  \"nitrogliserin\",\n  \"nitroselulosa\",\n  \"niyaga\",\n  \"noa\",\n  \"nobat\",\n  \"nobelium\",\n  \"noda\",\n  \"nodulus\",\n  \"nodus\",\n  \"noem\",\n  \"noja\",\n  \"noken\",\n  \"noktah\",\n  \"nokturia\",\n  \"nokturnal\",\n  \"nol\",\n  \"nomad\",\n  \"nomenklatur\",\n  \"nomina\",\n  \"nominal\",\n  \"nominalisasi\",\n  \"nominalisme\",\n  \"nominasi\",\n  \"nominatif\",\n  \"nominator\",\n  \"nomine\",\n  \"nomogram\",\n  \"nomokrasi\",\n  \"nomor\",\n  \"nomplok\",\n  \"non\",\n  \"nona\",\n  \"nonagresi\",\n  \"nonaktif\",\n  \"nonblok\",\n  \"nondepartemen\",\n  \"nondepartemental\",\n  \"none\",\n  \"nonekonomi\",\n  \"noneksakta\",\n  \"nonfiksi\",\n  \"nonformal\",\n  \"nong-nong\",\n  \"nongol\",\n  \"nongrata\",\n  \"nonhistoris\",\n  \"noni\",\n  \"nonilium\",\n  \"nonindustri\",\n  \"nonintervensi\",\n  \"nonius\",\n  \"nonkimia\",\n  \"nonkombatan\",\n  \"nonkonvensional\",\n  \"nonkooperasi\",\n  \"nonkooperatif\",\n  \"nonmedis\",\n  \"nonmigas\",\n  \"nonmiliter\",\n  \"nonok\",\n  \"nonol\",\n  \"nonong\",\n  \"nonpatogenik\",\n  \"nonpemerintah\",\n  \"nonpolitik\",\n  \"nonpredikatif\",\n  \"nonpribumi\",\n  \"nonproduktif\",\n  \"nonprofit\",\n  \"nonprotein\",\n  \"nonsens\",\n  \"nonsilabis\",\n  \"nonstandar\",\n  \"nonstop\",\n  \"nonteknis\",\n  \"nontradisional\",\n  \"nonverbal\",\n  \"nopek\",\n  \"norak\",\n  \"norit\",\n  \"norma\",\n  \"normal\",\n  \"normalisasi\",\n  \"normatif\",\n  \"nosologi\",\n  \"nostalgia\",\n  \"nostrum\",\n  \"not\",\n  \"nota\",\n  \"notabene\",\n  \"notariat\",\n  \"notaris\",\n  \"notasi\",\n  \"notes\",\n  \"notifikasi\",\n  \"notok\",\n  \"notula\",\n  \"notulis\",\n  \"nova\",\n  \"novel\",\n  \"novela\",\n  \"novelet\",\n  \"novelis\",\n  \"november\",\n  \"novena\",\n  \"novokaina\",\n  \"nrima\",\n  \"nuansa\",\n  \"nubuat\",\n  \"nudis\",\n  \"nudisme\",\n  \"nugat\",\n  \"nugraha\",\n  \"nujum\",\n  \"nukil\",\n  \"nukleat\",\n  \"nukleolus\",\n  \"nukleon\",\n  \"nukleoprotein\",\n  \"nukleus\",\n  \"nuklida\",\n  \"nuklir\",\n  \"nulipara\",\n  \"numeralia\",\n  \"numerik\",\n  \"numeris\",\n  \"numismatika\",\n  \"nun\",\n  \"nunatak\",\n  \"nung\",\n  \"nunsius\",\n  \"nunut\",\n  \"nur\",\n  \"nuraga\",\n  \"nurani\",\n  \"nurbisa\",\n  \"nuri\",\n  \"nuriah\",\n  \"nus\",\n  \"nusa\",\n  \"nusaindah\",\n  \"nusakambangan\",\n  \"nusantara\",\n  \"nusyu\",\n  \"nusyus\",\n  \"nutan\",\n  \"nutasi\",\n  \"nutfah\",\n  \"nutriea\",\n  \"nutrisi\",\n  \"nutrisionis\",\n  \"nutrisisme\",\n  \"nuzul\",\n  \"nuzulul\",\n  \"nyai\",\n  \"nyak\",\n  \"nyala\",\n  \"nyalang\",\n  \"nyalar\",\n  \"nyalawadi\",\n  \"nyale\",\n  \"nyali\",\n  \"nyaman\",\n  \"nyambing\",\n  \"nyamik\",\n  \"nyamleng\",\n  \"nyampang\",\n  \"nyamplung\",\n  \"nyamuk\",\n  \"nyamur\",\n  \"nyana\",\n  \"nyang\",\n  \"nyanya\",\n  \"nyanyah\",\n  \"nyanyang\",\n  \"nyanyar\",\n  \"nyanyi\",\n  \"nyanyu\",\n  \"nyanyuk\",\n  \"nyapang\",\n  \"nyapnyap\",\n  \"nyarang\",\n  \"nyarik\",\n  \"nyaring\",\n  \"nyaris\",\n  \"nyata\",\n  \"nyatuh\",\n  \"nyawa\",\n  \"nyawang\",\n  \"nyelekit\",\n  \"nyemplong\",\n  \"nyentrik\",\n  \"nyenyai\",\n  \"nyenyak\",\n  \"nyenyat\",\n  \"nyenyeh\",\n  \"nyenyep\",\n  \"nyenyet\",\n  \"nyepi\",\n  \"nyeri\",\n  \"nyerocos\",\n  \"nyi\",\n  \"nyilih\",\n  \"nyingnying\",\n  \"nyinyir\",\n  \"nyiri\",\n  \"nyiru\",\n  \"nyit\",\n  \"nyiur\",\n  \"nyolnyolan\",\n  \"nyolo\",\n  \"nyoman\",\n  \"nyong\",\n  \"nyonya\",\n  \"nyonyeh\",\n  \"nyonyong\",\n  \"nyonyor\",\n  \"nyungsung\",\n  \"nyunyut\",\n  \"nyureng\",\n  \"nyut\",\n  \"oase\",\n  \"oasis\",\n  \"obar\",\n  \"obat\",\n  \"obduksi\",\n  \"obelisk\",\n  \"obeng\",\n  \"obesitas\",\n  \"obi\",\n  \"obituarium\",\n  \"objek\",\n  \"objektif\",\n  \"objektivisme\",\n  \"objektivitas\",\n  \"oblak\",\n  \"oblasi\",\n  \"obligasi\",\n  \"oblong\",\n  \"obo\",\n  \"obor\",\n  \"obral\",\n  \"obras\",\n  \"obrol\",\n  \"obrus\",\n  \"observasi\",\n  \"observatorium\",\n  \"obsesi\",\n  \"obsesif\",\n  \"obsidian\",\n  \"obsolet\",\n  \"obstetri\",\n  \"obstruen\",\n  \"obstruksi\",\n  \"obversi\",\n  \"obviatif\",\n  \"obyek\",\n  \"obyektif\",\n  \"obyektivisme\",\n  \"obyektivitas\",\n  \"oceh\",\n  \"odalan\",\n  \"ode\",\n  \"odekolonye\",\n  \"odinometer\",\n  \"oditur\",\n  \"odoh\",\n  \"odol\",\n  \"odometer\",\n  \"odontoblas\",\n  \"odontoid\",\n  \"odontologi\",\n  \"odoran\",\n  \"oedipus-kompleks\",\n  \"oersted\",\n  \"ofensif\",\n  \"oferte\",\n  \"ofisial\",\n  \"ofset\",\n  \"oftalmia\",\n  \"oftalmoskop\",\n  \"oga\",\n  \"ogah\",\n  \"ogah-agih\",\n  \"ogak-agik\",\n  \"ogak-ogak\",\n  \"ogam\",\n  \"ogel\",\n  \"ogok\",\n  \"ogonium\",\n  \"ohm\",\n  \"ohmmeter\",\n  \"oikumene\",\n  \"oja\",\n  \"ojeg\",\n  \"ojek\",\n  \"ojok\",\n  \"okarina\",\n  \"oke\",\n  \"oker\",\n  \"oklokrasi\",\n  \"oklusi\",\n  \"oklusif\",\n  \"oknum\",\n  \"okok\",\n  \"oksalat\",\n  \"oksiasetilena\",\n  \"oksida\",\n  \"oksidan\",\n  \"oksidasi\",\n  \"oksidator\",\n  \"oksigen\",\n  \"oksigenase\",\n  \"oksimoron\",\n  \"oksitetrasiklin\",\n  \"oksiton\",\n  \"oktaf\",\n  \"oktagon\",\n  \"oktahedron\",\n  \"oktal\",\n  \"oktana\",\n  \"oktet\",\n  \"oktober\",\n  \"oktroi\",\n  \"okulasi\",\n  \"okuler\",\n  \"okulis\",\n  \"okultis\",\n  \"okultisme\",\n  \"okupasi\",\n  \"okupasional\",\n  \"olah\",\n  \"olahraga\",\n  \"olak\",\n  \"olak-alik\",\n  \"olanda\",\n  \"olang-aling\",\n  \"oleander\",\n  \"olefin\",\n  \"oleh\",\n  \"olek\",\n  \"oleng\",\n  \"oleografi\",\n  \"oleometer\",\n  \"oleovitamin\",\n  \"oles\",\n  \"olet\",\n  \"oleum\",\n  \"oli\",\n  \"olia\",\n  \"oligarki\",\n  \"oligofagus\",\n  \"oligofrenia\",\n  \"oligopoli\",\n  \"oligopolistis\",\n  \"oligopsoni\",\n  \"oligosen\",\n  \"oligositemia\",\n  \"oligotrofik\",\n  \"oliman\",\n  \"olimpiade\",\n  \"oliva\",\n  \"olivin\",\n  \"olok\",\n  \"olong-olong\",\n  \"om\",\n  \"oma\",\n  \"ombak\",\n  \"ombang-ambing\",\n  \"ombyok\",\n  \"omega\",\n  \"omel\",\n  \"omikron\",\n  \"omnibus\",\n  \"omnivor\",\n  \"omnivora\",\n  \"omong\",\n  \"ompol\",\n  \"ompong\",\n  \"ompreng\",\n  \"omprong\",\n  \"ompu\",\n  \"omset\",\n  \"omslah\",\n  \"omzet\",\n  \"onagata\",\n  \"onak\",\n  \"onani\",\n  \"onar\",\n  \"oncat\",\n  \"once\",\n  \"oncek\",\n  \"oncen\",\n  \"oncer\",\n  \"oncom\",\n  \"oncor\",\n  \"onde-onde\",\n  \"ondel-ondel\",\n  \"onder\",\n  \"onderdil\",\n  \"onderdistrik\",\n  \"onderneming\",\n  \"onderok\",\n  \"ondo\",\n  \"ondoafi\",\n  \"ondok\",\n  \"ondos\",\n  \"oneng-oneng\",\n  \"ong\",\n  \"ongahangih\",\n  \"ongeh\",\n  \"onggok\",\n  \"ongji\",\n  \"ongkang\",\n  \"ongkok\",\n  \"ongkos\",\n  \"ongok\",\n  \"ongol-ongol\",\n  \"oniks\",\n  \"onkogen\",\n  \"onkologi\",\n  \"onomasiologi\",\n  \"onomastika\",\n  \"onomatologi\",\n  \"onomatope\",\n  \"ons\",\n  \"onslah\",\n  \"ontogeni\",\n  \"ontologi\",\n  \"ontologis\",\n  \"ontran-ontran\",\n  \"onyah-anyih\",\n  \"onyak-anyik\",\n  \"onyang\",\n  \"onyok\",\n  \"onyot\",\n  \"oogenesis\",\n  \"oolit\",\n  \"opa\",\n  \"opak\",\n  \"opak-apik\",\n  \"opal\",\n  \"opalesen\",\n  \"opas\",\n  \"opasitas\",\n  \"opelet\",\n  \"open\",\n  \"opendim\",\n  \"openkap\",\n  \"oper\",\n  \"opera\",\n  \"operasi\",\n  \"operasional\",\n  \"operasionalisasi\",\n  \"operatif\",\n  \"operator\",\n  \"operet\",\n  \"operkulum\",\n  \"opini\",\n  \"opisometer\",\n  \"opium\",\n  \"oplah\",\n  \"oplet\",\n  \"oplos\",\n  \"opmak\",\n  \"opname\",\n  \"oponen\",\n  \"opor\",\n  \"oportunis\",\n  \"oportunisme\",\n  \"oportunistis\",\n  \"oportunitas\",\n  \"oposan\",\n  \"oposisi\",\n  \"oppo\",\n  \"opsen\",\n  \"opseter\",\n  \"opsi\",\n  \"opsin\",\n  \"opsinder\",\n  \"opsiner\",\n  \"opsional\",\n  \"opsir\",\n  \"opstal\",\n  \"optatif\",\n  \"optik\",\n  \"optika\",\n  \"optimal\",\n  \"optimalisasi\",\n  \"optimis\",\n  \"optimisme\",\n  \"optimistis\",\n  \"optimum\",\n  \"optis\",\n  \"optisien\",\n  \"optoelektronika\",\n  \"optometri\",\n  \"optometris\",\n  \"opus\",\n  \"orak\",\n  \"orak-arik\",\n  \"orakel\",\n  \"oral\",\n  \"oralit\",\n  \"orang\",\n  \"orang-aring\",\n  \"oranye\",\n  \"orasi\",\n  \"orat-oret\",\n  \"orator\",\n  \"oratoria\",\n  \"oratoris\",\n  \"oratorium\",\n  \"orbit\",\n  \"orbita\",\n  \"orbital\",\n  \"orde\",\n  \"order\",\n  \"ordi\",\n  \"ordinal\",\n  \"ordinasi\",\n  \"ordinat\",\n  \"ordiner\",\n  \"ordner\",\n  \"ordo\",\n  \"ordonans\",\n  \"ordonansi\",\n  \"oren\",\n  \"oreng\",\n  \"oreol\",\n  \"oret\",\n  \"organ\",\n  \"organdi\",\n  \"organel\",\n  \"organik\",\n  \"organis\",\n  \"organisasi\",\n  \"organisator\",\n  \"organisatoris\",\n  \"organisir\",\n  \"organisme\",\n  \"organismus\",\n  \"organogram\",\n  \"organon\",\n  \"orgasme\",\n  \"orgasmik\",\n  \"orgel\",\n  \"orien\",\n  \"oriental\",\n  \"orientalis\",\n  \"orientasi\",\n  \"origami\",\n  \"orion\",\n  \"orisinal\",\n  \"orisinalitas\",\n  \"orkes\",\n  \"orkestra\",\n  \"orkestrasi\",\n  \"ornamen\",\n  \"ornamental\",\n  \"ornamentasi\",\n  \"ornitologi\",\n  \"ornitologis\",\n  \"ornitosis\",\n  \"orografi\",\n  \"orografik\",\n  \"orografis\",\n  \"orok\",\n  \"orong-orong\",\n  \"ortodidaktik\",\n  \"ortodoks\",\n  \"ortodoksi\",\n  \"ortodrom\",\n  \"ortoepi\",\n  \"ortografi\",\n  \"ortografis\",\n  \"ortoklas\",\n  \"ortopedagogik\",\n  \"ortopedi\",\n  \"ortopedis\",\n  \"ose\",\n  \"osean\",\n  \"oseanarium\",\n  \"oseanografi\",\n  \"oseanologi\",\n  \"osifikasi\",\n  \"osikel\",\n  \"osilasi\",\n  \"osilator\",\n  \"osilograf\",\n  \"osilogram\",\n  \"osiloskop\",\n  \"oskilator\",\n  \"oskulum\",\n  \"osmium\",\n  \"osmometer\",\n  \"osmoregulasi\",\n  \"osmose\",\n  \"osmosis\",\n  \"osomosis\",\n  \"ostentasi\",\n  \"osteoblas\",\n  \"osteoklas\",\n  \"osteologi\",\n  \"osteopati\",\n  \"osteoporosis\",\n  \"ostium\",\n  \"otak\",\n  \"otak-atik\",\n  \"otak-otak\",\n  \"otar\",\n  \"otek\",\n  \"otentik\",\n  \"oto\",\n  \"otobus\",\n  \"otofon\",\n  \"otologi\",\n  \"otomat\",\n  \"otomatis\",\n  \"otomatisasi\",\n  \"otomobil\",\n  \"otomotif\",\n  \"otonom\",\n  \"otonomi\",\n  \"otopet\",\n  \"otorisasi\",\n  \"otoritas\",\n  \"otoriter\",\n  \"otoritet\",\n  \"otoskop\",\n  \"otot\",\n  \"ototipi\",\n  \"oval\",\n  \"ovarium\",\n  \"ovasi\",\n  \"oven\",\n  \"over\",\n  \"overaktif\",\n  \"overakting\",\n  \"overal\",\n  \"overdosis\",\n  \"overkompensasi\",\n  \"overpopulasi\",\n  \"overproduksi\",\n  \"oversimplifikasi\",\n  \"overste\",\n  \"oviduk\",\n  \"ovipar\",\n  \"oviparitas\",\n  \"ovipositor\",\n  \"ovitesis\",\n  \"ovovivipar\",\n  \"ovulasi\",\n  \"ovulum\",\n  \"ovum\",\n  \"oyak\",\n  \"oyek\",\n  \"oyok\",\n  \"oyong\",\n  \"oyot\",\n  \"ozokerit\",\n  \"ozon\",\n  \"ozonisasi\",\n  \"ozonisator\",\n  \"ozonometer\",\n  \"pabean\",\n  \"pabrik\",\n  \"pabrikan\",\n  \"pabrikasi\",\n  \"pacai\",\n  \"pacak\",\n  \"pacal\",\n  \"pacangan\",\n  \"pacar\",\n  \"pacat\",\n  \"pacau\",\n  \"pace\",\n  \"pacek\",\n  \"paceklik\",\n  \"pacet\",\n  \"pacih\",\n  \"pacik\",\n  \"pacok\",\n  \"pacu\",\n  \"pacuk\",\n  \"pacul\",\n  \"pada\",\n  \"padah\",\n  \"padahal\",\n  \"padak\",\n  \"padam\",\n  \"padan\",\n  \"padang\",\n  \"padas\",\n  \"padasan\",\n  \"padat\",\n  \"padepokan\",\n  \"padi\",\n  \"padma\",\n  \"padmasana\",\n  \"padmi\",\n  \"padri\",\n  \"padu\",\n  \"padudan\",\n  \"paduk\",\n  \"paduka\",\n  \"paduraksa\",\n  \"paedofil\",\n  \"paes\",\n  \"pagan\",\n  \"paganisme\",\n  \"pagar\",\n  \"pagas\",\n  \"pagebluk\",\n  \"pagelaran\",\n  \"pagi\",\n  \"pagina\",\n  \"pagoda\",\n  \"pagon\",\n  \"pagositosis\",\n  \"pagu\",\n  \"pagun\",\n  \"pagupon\",\n  \"pagut\",\n  \"paguyuban\",\n  \"pah\",\n  \"paha\",\n  \"pahala\",\n  \"paham\",\n  \"pahang\",\n  \"pahar\",\n  \"pahat\",\n  \"paheman\",\n  \"pahit\",\n  \"pahlawan\",\n  \"pahter\",\n  \"pai\",\n  \"paidon\",\n  \"pail\",\n  \"pailit\",\n  \"paing\",\n  \"paip\",\n  \"pair\",\n  \"pais\",\n  \"paitua\",\n  \"paja\",\n  \"pajak\",\n  \"pajan\",\n  \"pajang\",\n  \"pajuan\",\n  \"pajuh\",\n  \"pakai\",\n  \"pakal\",\n  \"pakan\",\n  \"pakanira\",\n  \"pakansi\",\n  \"pakar\",\n  \"pakaryan\",\n  \"pakat\",\n  \"pakau\",\n  \"pakcik\",\n  \"pakde\",\n  \"pakem\",\n  \"paket\",\n  \"pakihang\",\n  \"pakihi\",\n  \"paking\",\n  \"pakis\",\n  \"paklik\",\n  \"pakma\",\n  \"pakpui\",\n  \"pakpung\",\n  \"paksa\",\n  \"paksi\",\n  \"paksina\",\n  \"pakta\",\n  \"pakter\",\n  \"paku\",\n  \"pakuh\",\n  \"pakuk\",\n  \"pakuncen\",\n  \"pakus\",\n  \"pal\",\n  \"pala\",\n  \"paladium\",\n  \"palagan\",\n  \"palai\",\n  \"palak\",\n  \"palaka\",\n  \"palam\",\n  \"palamarta\",\n  \"palang\",\n  \"palapa\",\n  \"palar\",\n  \"palari\",\n  \"palas\",\n  \"palasik\",\n  \"palat\",\n  \"palatabilitas\",\n  \"palatal\",\n  \"palatalisasi\",\n  \"palatografi\",\n  \"palatogram\",\n  \"palatum\",\n  \"palau\",\n  \"palawa\",\n  \"palawija\",\n  \"paldu\",\n  \"pale\",\n  \"palem\",\n  \"palen\",\n  \"paleoantropologi\",\n  \"paleobotani\",\n  \"paleoekologi\",\n  \"paleogeografi\",\n  \"paleografi\",\n  \"paleografis\",\n  \"paleoklimatologi\",\n  \"paleolitik\",\n  \"paleolitikum\",\n  \"paleontologi\",\n  \"paleosen\",\n  \"paleozoikum\",\n  \"pales\",\n  \"palet\",\n  \"pali\",\n  \"paliatif\",\n  \"paliatip\",\n  \"palindrom\",\n  \"paling\",\n  \"palinologi\",\n  \"palis\",\n  \"palit\",\n  \"palka\",\n  \"pallawa\",\n  \"palmarosa\",\n  \"palmin\",\n  \"palmistri\",\n  \"palmit\",\n  \"palmitat\",\n  \"palolo\",\n  \"palpasi\",\n  \"palsu\",\n  \"paltu\",\n  \"palu\",\n  \"paluh\",\n  \"palun\",\n  \"palung\",\n  \"palut\",\n  \"pamah\",\n  \"paman\",\n  \"pameget\",\n  \"pamer\",\n  \"pamflet\",\n  \"pamit\",\n  \"pamong\",\n  \"pamor\",\n  \"pampa\",\n  \"pampan\",\n  \"pampang\",\n  \"pampas\",\n  \"pampat\",\n  \"pamper\",\n  \"pampiniform\",\n  \"pamrih\",\n  \"pamungkas\",\n  \"pan\",\n  \"pana\",\n  \"panah\",\n  \"panai\",\n  \"panakawan\",\n  \"panar\",\n  \"panas\",\n  \"panasea\",\n  \"panau\",\n  \"panca\",\n  \"pancabicara\",\n  \"pancabuta\",\n  \"pancacita\",\n  \"pancadarma\",\n  \"pancaindera\",\n  \"pancaindra\",\n  \"pancaka\",\n  \"pancakara\",\n  \"pancakembar\",\n  \"pancal\",\n  \"pancalima\",\n  \"pancalogam\",\n  \"pancalomba\",\n  \"pancalongok\",\n  \"pancamarga\",\n  \"pancamuka\",\n  \"pancang\",\n  \"pancaniti\",\n  \"pancapersada\",\n  \"pancar\",\n  \"pancaragam\",\n  \"pancarajadiraja\",\n  \"pancaroba\",\n  \"pancarona\",\n  \"pancasila\",\n  \"pancasilais\",\n  \"pancasona\",\n  \"pancasuara\",\n  \"pancasuda\",\n  \"pancausaha\",\n  \"pancawalikrama\",\n  \"pancawara\",\n  \"pancawarna\",\n  \"pancawarsa\",\n  \"panci\",\n  \"pancing\",\n  \"pancir\",\n  \"pancit\",\n  \"panco\",\n  \"pancong\",\n  \"pancung\",\n  \"pancur\",\n  \"pancut\",\n  \"pandai\",\n  \"pandak\",\n  \"pandam\",\n  \"pandan\",\n  \"pandang\",\n  \"pandau\",\n  \"pandawa\",\n  \"pandega\",\n  \"pandemi\",\n  \"pandemik\",\n  \"pandialektal\",\n  \"pandir\",\n  \"pandit\",\n  \"pandom\",\n  \"pandu\",\n  \"panekuk\",\n  \"panel\",\n  \"panelis\",\n  \"panembahan\",\n  \"panembrama\",\n  \"panen\",\n  \"panewu\",\n  \"pangabekti\",\n  \"pangah\",\n  \"pangan\",\n  \"pangeran\",\n  \"pangestu\",\n  \"panggak\",\n  \"panggal\",\n  \"panggang\",\n  \"panggar\",\n  \"panggau\",\n  \"panggih\",\n  \"panggil\",\n  \"panggon\",\n  \"panggu\",\n  \"panggul\",\n  \"panggung\",\n  \"pangkah\",\n  \"pangkai\",\n  \"pangkal\",\n  \"pangkas\",\n  \"pangkat\",\n  \"pangkek\",\n  \"pangkin\",\n  \"pangking\",\n  \"pangkon\",\n  \"pangku\",\n  \"pangkung\",\n  \"pangkur\",\n  \"panglima\",\n  \"pangling\",\n  \"panglong\",\n  \"pangolat\",\n  \"pangonan\",\n  \"pangpet\",\n  \"pangpung\",\n  \"pangreh\",\n  \"pangrehpraja\",\n  \"pangrukti\",\n  \"pangsa\",\n  \"pangsek\",\n  \"pangsi\",\n  \"pangsit\",\n  \"panguk\",\n  \"pangur\",\n  \"pangus\",\n  \"panik\",\n  \"paniki\",\n  \"panil\",\n  \"panili\",\n  \"paninggil\",\n  \"paningset\",\n  \"panir\",\n  \"paniradia\",\n  \"panitera\",\n  \"panitia\",\n  \"panja\",\n  \"panjak\",\n  \"panjang\",\n  \"panjar\",\n  \"panjarwala\",\n  \"panjat\",\n  \"panjer\",\n  \"panji\",\n  \"panjing\",\n  \"panjul\",\n  \"panjunan\",\n  \"panjut\",\n  \"pankreas\",\n  \"pankromatis\",\n  \"pankronis\",\n  \"panlektal\",\n  \"panleukapema\",\n  \"panleukopenia\",\n  \"panoptikum\",\n  \"panorama\",\n  \"panser\",\n  \"pantai\",\n  \"pantak\",\n  \"pantalon\",\n  \"pantang\",\n  \"pantar\",\n  \"pantas\",\n  \"pantat\",\n  \"pantau\",\n  \"panteis\",\n  \"panteisme\",\n  \"panteistis\",\n  \"pantek\",\n  \"pantekosta\",\n  \"panteon\",\n  \"panter\",\n  \"panti\",\n  \"pantik\",\n  \"panting\",\n  \"pantis\",\n  \"panto\",\n  \"pantofel\",\n  \"pantograf\",\n  \"pantomim\",\n  \"pantri\",\n  \"pantul\",\n  \"pantun\",\n  \"panus\",\n  \"panutan\",\n  \"panyembrama\",\n  \"pao-pao\",\n  \"papa\",\n  \"papacang\",\n  \"papah\",\n  \"papain\",\n  \"papak\",\n  \"papakerma\",\n  \"papan\",\n  \"papar\",\n  \"paparazi\",\n  \"papas\",\n  \"papat\",\n  \"papatong\",\n  \"papi\",\n  \"papil\",\n  \"papila\",\n  \"papirus\",\n  \"papras\",\n  \"paprika\",\n  \"papui\",\n  \"par\",\n  \"para\",\n  \"parab\",\n  \"parabasis\",\n  \"parabel\",\n  \"parabiosis\",\n  \"parabola\",\n  \"paradam\",\n  \"parade\",\n  \"paradigma\",\n  \"paradigmatis\",\n  \"paradiso\",\n  \"paradoks\",\n  \"paradoksal\",\n  \"parados\",\n  \"paraf\",\n  \"parafasia\",\n  \"parafemia\",\n  \"parafin\",\n  \"parafrasa\",\n  \"parafrase\",\n  \"parafrenia\",\n  \"paragaster\",\n  \"paragog\",\n  \"paragon\",\n  \"paragraf\",\n  \"parah\",\n  \"parak\",\n  \"paralaks\",\n  \"paraldehida\",\n  \"paralel\",\n  \"paralelisasi\",\n  \"paralelisme\",\n  \"paralelogram\",\n  \"paralgesia\",\n  \"paralinguistik\",\n  \"paralinguistis\",\n  \"paralipsis\",\n  \"paralisis\",\n  \"paralitis\",\n  \"param\",\n  \"paramaarta\",\n  \"paramarta\",\n  \"paramasastra\",\n  \"paramedis\",\n  \"paramen\",\n  \"parameter\",\n  \"paramiliter\",\n  \"parampara\",\n  \"paran\",\n  \"parang\",\n  \"paranoia\",\n  \"paranoid\",\n  \"paranormal\",\n  \"paranpara\",\n  \"parap\",\n  \"parapalatal\",\n  \"parapati\",\n  \"paraplasme\",\n  \"paraplegia\",\n  \"parapodium\",\n  \"parapsikolog\",\n  \"parapsikologi\",\n  \"paras\",\n  \"parasetamol\",\n  \"parasintesis\",\n  \"parasit\",\n  \"parasitisme\",\n  \"parasitoid\",\n  \"parasitologi\",\n  \"parasitoma\",\n  \"parasitopolis\",\n  \"parasut\",\n  \"parasutis\",\n  \"parataksis\",\n  \"parataktis\",\n  \"paratesis\",\n  \"paratifus\",\n  \"paratiroid\",\n  \"parau\",\n  \"pare\",\n  \"parenial\",\n  \"parenkim\",\n  \"parental\",\n  \"parentesis\",\n  \"parestesia\",\n  \"parewa\",\n  \"parfum\",\n  \"parga\",\n  \"parhelion\",\n  \"pari\",\n  \"paria\",\n  \"parididimis\",\n  \"parih\",\n  \"parik\",\n  \"parikan\",\n  \"paring\",\n  \"paripurna\",\n  \"paris\",\n  \"parit\",\n  \"paritas\",\n  \"pariwara\",\n  \"pariwisata\",\n  \"parji\",\n  \"parka\",\n  \"parket\",\n  \"parkinson\",\n  \"parkinsonisme\",\n  \"parkir\",\n  \"parkit\",\n  \"parlemen\",\n  \"parlementaria\",\n  \"parlementarisme\",\n  \"parlementer\",\n  \"parmitu\",\n  \"paro\",\n  \"parodi\",\n  \"paroki\",\n  \"parokial\",\n  \"parokialisme\",\n  \"parolfaktori\",\n  \"paron\",\n  \"paronim\",\n  \"paronisia\",\n  \"paronomasia\",\n  \"parotitis\",\n  \"pars\",\n  \"parser\",\n  \"parsi\",\n  \"parsial\",\n  \"partai\",\n  \"partenogenesis\",\n  \"partial\",\n  \"partikel\",\n  \"partikelir\",\n  \"partikularisme\",\n  \"partisan\",\n  \"partisi\",\n  \"partisipan\",\n  \"partisipasi\",\n  \"partitif\",\n  \"partitur\",\n  \"partner\",\n  \"partus\",\n  \"paru\",\n  \"paruh\",\n  \"parun\",\n  \"parut\",\n  \"parvenu\",\n  \"parwa\",\n  \"pas\",\n  \"pasah\",\n  \"pasai\",\n  \"pasak\",\n  \"pasal\",\n  \"pasang\",\n  \"pasanggiri\",\n  \"pasar\",\n  \"pasara\",\n  \"pasaraya\",\n  \"pasase\",\n  \"pasasir\",\n  \"pasat\",\n  \"pascabedah\",\n  \"pascadoktoral\",\n  \"pascajual\",\n  \"pascakawin\",\n  \"pascakrisis\",\n  \"pascalahir\",\n  \"pascalarva\",\n  \"pascalikuidasi\",\n  \"pascamodern\",\n  \"pascamodernisme\",\n  \"pascaoperasi\",\n  \"pascapanen\",\n  \"pascaperang\",\n  \"pascaproduksi\",\n  \"pascareformasi\",\n  \"pascasarjana\",\n  \"pascausaha\",\n  \"pascayuwana\",\n  \"paseban\",\n  \"paser\",\n  \"paset\",\n  \"pasfoto\",\n  \"pasi\",\n  \"pasien\",\n  \"pasif\",\n  \"pasifikasi\",\n  \"pasifisme\",\n  \"pasigrafi\",\n  \"pasik\",\n  \"pasilan\",\n  \"pasim\",\n  \"pasimologi\",\n  \"pasir\",\n  \"pasirah\",\n  \"pasit\",\n  \"pasiva\",\n  \"paskah\",\n  \"pasmat\",\n  \"pasmen\",\n  \"pasok\",\n  \"pasowan\",\n  \"paspor\",\n  \"pasrah\",\n  \"pasta\",\n  \"pastel\",\n  \"pasteur\",\n  \"pasteurisasi\",\n  \"pasti\",\n  \"pastiles\",\n  \"pastor\",\n  \"pastoral\",\n  \"pastoran\",\n  \"pastur\",\n  \"pastura\",\n  \"pasu\",\n  \"pasuel\",\n  \"pasuk\",\n  \"pasumandan\",\n  \"pasung\",\n  \"patah\",\n  \"pataka\",\n  \"patam\",\n  \"patang\",\n  \"patar\",\n  \"patek\",\n  \"patela\",\n  \"paten\",\n  \"pater\",\n  \"patera\",\n  \"pateram\",\n  \"paternalis\",\n  \"paternalisme\",\n  \"paternalistis\",\n  \"patet\",\n  \"patetis\",\n  \"patgulipat\",\n  \"pati\",\n  \"patih\",\n  \"patik\",\n  \"patikim\",\n  \"patil\",\n  \"patin\",\n  \"patina\",\n  \"pating\",\n  \"patio\",\n  \"patirasa\",\n  \"patiseri\",\n  \"patka\",\n  \"patogen\",\n  \"patogenesis\",\n  \"patogenik\",\n  \"patois\",\n  \"patok\",\n  \"patokimia\",\n  \"patol\",\n  \"patola\",\n  \"patolog\",\n  \"patologi\",\n  \"patologis\",\n  \"patolopolis\",\n  \"patos\",\n  \"patra\",\n  \"patrap\",\n  \"patri\",\n  \"patriark\",\n  \"patriarkat\",\n  \"patrilineal\",\n  \"patrimonium\",\n  \"patriot\",\n  \"patriotik\",\n  \"patriotisme\",\n  \"patroli\",\n  \"patron\",\n  \"patronasi\",\n  \"patrun\",\n  \"patuh\",\n  \"patuk\",\n  \"patung\",\n  \"patungan\",\n  \"patut\",\n  \"pauh\",\n  \"pauhi\",\n  \"pauk\",\n  \"paul\",\n  \"paun\",\n  \"paung\",\n  \"paus\",\n  \"pause\",\n  \"paut\",\n  \"paviliun\",\n  \"pawai\",\n  \"pawak\",\n  \"pawaka\",\n  \"pawana\",\n  \"pawang\",\n  \"pawiyatan\",\n  \"pawukon\",\n  \"paya\",\n  \"payah\",\n  \"payang\",\n  \"payar\",\n  \"payau\",\n  \"payet\",\n  \"payon\",\n  \"payu\",\n  \"payudara\",\n  \"payung\",\n  \"peang\",\n  \"pecah\",\n  \"pecai\",\n  \"pecak\",\n  \"pecal\",\n  \"pecara\",\n  \"pecat\",\n  \"pece\",\n  \"pecel\",\n  \"peci\",\n  \"pecicilan\",\n  \"pecinan\",\n  \"pecok\",\n  \"pecuk\",\n  \"pecun\",\n  \"pecut\",\n  \"peda\",\n  \"pedada\",\n  \"pedadah\",\n  \"pedagog\",\n  \"pedagogi\",\n  \"pedagogis\",\n  \"pedak\",\n  \"pedaka\",\n  \"pedal\",\n  \"pedanda\",\n  \"pedang\",\n  \"pedapa\",\n  \"pedar\",\n  \"pedas\",\n  \"pedati\",\n  \"pedel\",\n  \"pedena\",\n  \"pedendang\",\n  \"pedengan\",\n  \"pedepokan\",\n  \"pedestrian\",\n  \"pedet\",\n  \"pedewakan\",\n  \"pediatri\",\n  \"pedih\",\n  \"pedikur\",\n  \"pedis\",\n  \"pedisel\",\n  \"pedogenesis\",\n  \"pedok\",\n  \"pedologi\",\n  \"pedoman\",\n  \"pedometer\",\n  \"pedongkang\",\n  \"pedot\",\n  \"peduli\",\n  \"pedunkel\",\n  \"pedusi\",\n  \"pedut\",\n  \"pegagang\",\n  \"pegah\",\n  \"pegal\",\n  \"pegan\",\n  \"pegang\",\n  \"pegar\",\n  \"pegari\",\n  \"pegas\",\n  \"pegat\",\n  \"pegawai\",\n  \"pego\",\n  \"pegoh\",\n  \"pegon\",\n  \"peguam\",\n  \"pegun\",\n  \"pehong\",\n  \"pei\",\n  \"pejajaran\",\n  \"pejaka\",\n  \"pejal\",\n  \"pejam\",\n  \"pejatian\",\n  \"pejera\",\n  \"pek\",\n  \"peka\",\n  \"pekaja\",\n  \"pekak\",\n  \"pekakak\",\n  \"pekan\",\n  \"pekarang\",\n  \"pekasam\",\n  \"pekaseh\",\n  \"pekat\",\n  \"pekatu\",\n  \"pekatul\",\n  \"pekau\",\n  \"pekerti\",\n  \"pekik\",\n  \"peking\",\n  \"pekir\",\n  \"pekis\",\n  \"pekiwan\",\n  \"pekojan\",\n  \"peksi\",\n  \"pektik\",\n  \"pektil\",\n  \"pektin\",\n  \"peku\",\n  \"pekuk\",\n  \"pekulun\",\n  \"pekung\",\n  \"pekur\",\n  \"pel\",\n  \"pelabi\",\n  \"pelabur\",\n  \"pelaga\",\n  \"pelagas\",\n  \"pelagis\",\n  \"pelagra\",\n  \"pelah\",\n  \"pelak\",\n  \"pelalah\",\n  \"pelamin\",\n  \"pelampang\",\n  \"pelampung\",\n  \"pelan\",\n  \"pelana\",\n  \"pelancar\",\n  \"pelanduk\",\n  \"pelang\",\n  \"pelangai\",\n  \"pelanggi\",\n  \"pelangi\",\n  \"pelangkin\",\n  \"pelangpang\",\n  \"pelantar\",\n  \"pelanting\",\n  \"pelas\",\n  \"pelasah\",\n  \"pelasik\",\n  \"pelaspas\",\n  \"pelasuh\",\n  \"pelat\",\n  \"pelata\",\n  \"pelatuk\",\n  \"pelawa\",\n  \"pelayon\",\n  \"pelbagai\",\n  \"pelbak\",\n  \"pelbet\",\n  \"pelebat\",\n  \"pelebaya\",\n  \"pelebegu\",\n  \"pelebon\",\n  \"pelecet\",\n  \"pelecok\",\n  \"peleh\",\n  \"pelek\",\n  \"pelekat\",\n  \"pelekok\",\n  \"pelekuk\",\n  \"pelembaya\",\n  \"pelencit\",\n  \"pelengak\",\n  \"pelengan\",\n  \"pelengset\",\n  \"pelepah\",\n  \"peles\",\n  \"pelesat\",\n  \"peleset\",\n  \"pelesir\",\n  \"pelesit\",\n  \"pelet\",\n  \"peletek\",\n  \"peletik\",\n  \"peleting\",\n  \"peleton\",\n  \"pelias\",\n  \"pelihara\",\n  \"pelik\",\n  \"pelikan\",\n  \"pelikel\",\n  \"pelinggam\",\n  \"pelinteng\",\n  \"pelintir\",\n  \"pelipir\",\n  \"pelipis\",\n  \"pelir\",\n  \"pelisir\",\n  \"pelisit\",\n  \"pelit\",\n  \"pelita\",\n  \"pelitur\",\n  \"pelo\",\n  \"pelog\",\n  \"peloh\",\n  \"pelojok\",\n  \"pelonco\",\n  \"pelong\",\n  \"pelopor\",\n  \"pelor\",\n  \"pelorot\",\n  \"pelosok\",\n  \"pelosot\",\n  \"pelota\",\n  \"pelotaris\",\n  \"pelotot\",\n  \"pelples\",\n  \"pelpolisi\",\n  \"pels\",\n  \"peluang\",\n  \"peluh\",\n  \"peluit\",\n  \"peluk\",\n  \"peluluk\",\n  \"pelulut\",\n  \"pelumpung\",\n  \"pelungpung\",\n  \"pelupuh\",\n  \"pelupuk\",\n  \"peluru\",\n  \"peluruh\",\n  \"pelus\",\n  \"pelvis\",\n  \"pemair\",\n  \"pemali\",\n  \"pemarip\",\n  \"pematah\",\n  \"pematang\",\n  \"pemayang\",\n  \"pembarap\",\n  \"pembayan\",\n  \"pemendak\",\n  \"pemeo\",\n  \"pemetikan\",\n  \"pemidang\",\n  \"pemindang\",\n  \"peminggir\",\n  \"pempek\",\n  \"pemuda\",\n  \"pemudi\",\n  \"pemuras\",\n  \"pen\",\n  \"pena\",\n  \"penak\",\n  \"penaka\",\n  \"penalti\",\n  \"penampan\",\n  \"penampang\",\n  \"penanggah\",\n  \"penaram\",\n  \"penasaran\",\n  \"penat\",\n  \"penatu\",\n  \"penatua\",\n  \"penca\",\n  \"pencak\",\n  \"pencalang\",\n  \"pencar\",\n  \"pencet\",\n  \"pencil\",\n  \"pencok\",\n  \"pencong\",\n  \"pencu\",\n  \"pencut\",\n  \"penda\",\n  \"pendaga\",\n  \"pendahan\",\n  \"pendak\",\n  \"pendam\",\n  \"pendapa\",\n  \"pendar\",\n  \"pendaringan\",\n  \"pendek\",\n  \"pendekar\",\n  \"pendet\",\n  \"pendeta\",\n  \"pending\",\n  \"pendok\",\n  \"pendongkok\",\n  \"pendopo\",\n  \"pendua\",\n  \"penduk\",\n  \"pendulum\",\n  \"penembahan\",\n  \"penes\",\n  \"penetrasi\",\n  \"penetron\",\n  \"penewu\",\n  \"pengalasan\",\n  \"penganak\",\n  \"penganan\",\n  \"pengang\",\n  \"pengantin\",\n  \"pengap\",\n  \"pengapuh\",\n  \"pengar\",\n  \"pengaruh\",\n  \"pengat\",\n  \"pengatu\",\n  \"pengawinan\",\n  \"pengeng\",\n  \"pengerih\",\n  \"pengga\",\n  \"penggaga\",\n  \"penggah\",\n  \"penggal\",\n  \"penggar\",\n  \"penggawa\",\n  \"penghulu\",\n  \"pengin\",\n  \"pengkal\",\n  \"pengkar\",\n  \"pengki\",\n  \"pengkis\",\n  \"pengkol\",\n  \"pengkor\",\n  \"pengos\",\n  \"penguin\",\n  \"pengulun\",\n  \"peni\",\n  \"peniaram\",\n  \"pening\",\n  \"peningset\",\n  \"penis\",\n  \"penisilin\",\n  \"penisilinat\",\n  \"penitensi\",\n  \"peniti\",\n  \"penjajap\",\n  \"penjalin\",\n  \"penjara\",\n  \"penjaruman\",\n  \"penjor\",\n  \"penjuna\",\n  \"penjura\",\n  \"penjuru\",\n  \"penmes\",\n  \"penologi\",\n  \"penomah\",\n  \"pensi\",\n  \"pensil\",\n  \"pensiun\",\n  \"pentagin\",\n  \"pentagon\",\n  \"pentagor\",\n  \"pentagram\",\n  \"pentahedron\",\n  \"pental\",\n  \"pentameter\",\n  \"pentan\",\n  \"pentana\",\n  \"pentang\",\n  \"pentar\",\n  \"pentas\",\n  \"pentatonik\",\n  \"pentil\",\n  \"pentilasi\",\n  \"penting\",\n  \"pentode\",\n  \"pentol\",\n  \"pentosa\",\n  \"pentotal\",\n  \"pentung\",\n  \"penuh\",\n  \"penyap\",\n  \"penyek\",\n  \"penyet\",\n  \"penyok\",\n  \"penyu\",\n  \"peok\",\n  \"peot\",\n  \"pepagan\",\n  \"pepah\",\n  \"pepak\",\n  \"pepaku\",\n  \"peparu\",\n  \"pepas\",\n  \"pepat\",\n  \"pepatah\",\n  \"pepaya\",\n  \"pepe\",\n  \"pepek\",\n  \"pepeling\",\n  \"peper\",\n  \"pepermin\",\n  \"pepes\",\n  \"pepet\",\n  \"pepindan\",\n  \"peplum\",\n  \"pepsin\",\n  \"pepsina\",\n  \"pepsinogen\",\n  \"peptida\",\n  \"peptidase\",\n  \"peptik\",\n  \"pepton\",\n  \"pepuju\",\n  \"pepunden\",\n  \"pepung\",\n  \"peputut\",\n  \"per\",\n  \"pera\",\n  \"perabot\",\n  \"perabung\",\n  \"perada\",\n  \"peragat\",\n  \"perah\",\n  \"perahu\",\n  \"perai\",\n  \"peraji\",\n  \"perak\",\n  \"peraka\",\n  \"peram\",\n  \"perambut\",\n  \"peran\",\n  \"perancah\",\n  \"perang\",\n  \"perangah\",\n  \"perangai\",\n  \"peranggang\",\n  \"peranggu\",\n  \"peranggul\",\n  \"perangin\",\n  \"perangkap\",\n  \"perangkat\",\n  \"peranjat\",\n  \"peranti\",\n  \"peranye\",\n  \"perap\",\n  \"peras\",\n  \"peras-perus\",\n  \"perasat\",\n  \"perasukan\",\n  \"perat\",\n  \"perata\",\n  \"perawan\",\n  \"perawas\",\n  \"perawi\",\n  \"perawis\",\n  \"perbal\",\n  \"perban\",\n  \"perbani\",\n  \"perbatin\",\n  \"perbawa\",\n  \"perbegu\",\n  \"perbekel\",\n  \"perca\",\n  \"percaya\",\n  \"percik\",\n  \"percis\",\n  \"percit\",\n  \"percul\",\n  \"percuma\",\n  \"perdah\",\n  \"perdana\",\n  \"perdata\",\n  \"perdeo\",\n  \"perdikan\",\n  \"perdom\",\n  \"perdu\",\n  \"pere\",\n  \"peredus\",\n  \"pereh\",\n  \"perei\",\n  \"perek\",\n  \"perekik\",\n  \"perempuan\",\n  \"perencah\",\n  \"perenggan\",\n  \"perengkat\",\n  \"perengus\",\n  \"perengut\",\n  \"perenial\",\n  \"perenkum\",\n  \"perenyak\",\n  \"perenyuk\",\n  \"perepat\",\n  \"peres\",\n  \"peresau\",\n  \"peresih\",\n  \"perestroika\",\n  \"peretel\",\n  \"perewa\",\n  \"perfek\",\n  \"perfeksi\",\n  \"perfeksionis\",\n  \"perfeksionisme\",\n  \"perfektif\",\n  \"perforasi\",\n  \"perforator\",\n  \"performa\",\n  \"pergam\",\n  \"pergat\",\n  \"pergata\",\n  \"pergedel\",\n  \"pergi\",\n  \"pergok\",\n  \"pergol\",\n  \"pergola\",\n  \"perhati\",\n  \"peri\",\n  \"peria\",\n  \"perian\",\n  \"periang\",\n  \"periantium\",\n  \"peribahasa\",\n  \"periboga\",\n  \"peribudi\",\n  \"peridi\",\n  \"perifer\",\n  \"periferal\",\n  \"periferalis\",\n  \"periferi\",\n  \"perifiton\",\n  \"perifrasa\",\n  \"perifrase\",\n  \"perifrastis\",\n  \"perige\",\n  \"perigel\",\n  \"perigi\",\n  \"perih\",\n  \"perihal\",\n  \"perihelion\",\n  \"perikarditis\",\n  \"perikardium\",\n  \"perikemanusiaan\",\n  \"perikondrium\",\n  \"periksa\",\n  \"perilaku\",\n  \"perimbas\",\n  \"perimeter\",\n  \"perimisium\",\n  \"perimpin\",\n  \"perimping\",\n  \"perinci\",\n  \"perincit\",\n  \"perineorium\",\n  \"perineum\",\n  \"perineurium\",\n  \"pering\",\n  \"peringgan\",\n  \"peringgi\",\n  \"peringgitan\",\n  \"peringis\",\n  \"peringkat\",\n  \"perintah\",\n  \"periodat\",\n  \"periode\",\n  \"periodik\",\n  \"periodisasi\",\n  \"periodonsium\",\n  \"periodontium\",\n  \"periorbita\",\n  \"periosteum\",\n  \"perirana\",\n  \"perisa\",\n  \"perisai\",\n  \"periskop\",\n  \"perispora\",\n  \"peristalsis\",\n  \"peristaltik\",\n  \"peristerit\",\n  \"peristiwa\",\n  \"peristonium\",\n  \"perit\",\n  \"peritoneum\",\n  \"peritonitis\",\n  \"periuk\",\n  \"perivaskuler\",\n  \"perjaka\",\n  \"perji\",\n  \"perkakas\",\n  \"perkale\",\n  \"perkamen\",\n  \"perkara\",\n  \"perkasa\",\n  \"perkedel\",\n  \"perkelang\",\n  \"perkolar\",\n  \"perkolasi\",\n  \"perkolator\",\n  \"perkoler\",\n  \"perkosa\",\n  \"perkusi\",\n  \"perkutut\",\n  \"perlahan\",\n  \"perlak\",\n  \"perlambang\",\n  \"perleng\",\n  \"perlente\",\n  \"perlenteh\",\n  \"perli\",\n  \"perlina\",\n  \"perling\",\n  \"perlintih\",\n  \"perlip\",\n  \"perlit\",\n  \"perlop\",\n  \"perlu\",\n  \"perlup\",\n  \"perlus\",\n  \"permadani\",\n  \"permai\",\n  \"permaisuri\",\n  \"permak\",\n  \"permalin\",\n  \"permana\",\n  \"permanen\",\n  \"permanganat\",\n  \"permasan\",\n  \"permata\",\n  \"permeabel\",\n  \"permeabilitas\",\n  \"permen\",\n  \"permil\",\n  \"permisi\",\n  \"permisif\",\n  \"permutasi\",\n  \"pernah\",\n  \"pernak\",\n  \"pernekel\",\n  \"pernik\",\n  \"pernikel\",\n  \"pernis\",\n  \"perogol\",\n  \"perohong\",\n  \"peroi\",\n  \"peroksida\",\n  \"peroksidase\",\n  \"peroksisom\",\n  \"peroksisoma\",\n  \"peroman\",\n  \"perompak\",\n  \"peron\",\n  \"peroneal\",\n  \"peronyok\",\n  \"perop\",\n  \"perosok\",\n  \"perosot\",\n  \"perot\",\n  \"perpatih\",\n  \"perpetuasi\",\n  \"perponding\",\n  \"pers\",\n  \"persada\",\n  \"persangga\",\n  \"persegi\",\n  \"persekot\",\n  \"persekusi\",\n  \"persen\",\n  \"persentase\",\n  \"persentil\",\n  \"persepsi\",\n  \"perseptif\",\n  \"perseptivitas\",\n  \"persero\",\n  \"persetan\",\n  \"perseus\",\n  \"perseverasi\",\n  \"persih\",\n  \"persik\",\n  \"persil\",\n  \"persis\",\n  \"persisi\",\n  \"perslah\",\n  \"persneling\",\n  \"person\",\n  \"persona\",\n  \"personal\",\n  \"personalia\",\n  \"personalisme\",\n  \"personalitas\",\n  \"personel\",\n  \"personifikasi\",\n  \"perspektif\",\n  \"perspektivisme\",\n  \"persuasi\",\n  \"persuasif\",\n  \"pertal\",\n  \"pertama\",\n  \"pertepel\",\n  \"pertiwi\",\n  \"pertua\",\n  \"perturbasi\",\n  \"pertusis\",\n  \"peruak\",\n  \"peruan\",\n  \"peruang\",\n  \"perubalsem\",\n  \"perudang\",\n  \"peruk\",\n  \"perum\",\n  \"perumpung\",\n  \"perun\",\n  \"perunggu\",\n  \"perunjung\",\n  \"perupuk\",\n  \"perus\",\n  \"perusi\",\n  \"perut\",\n  \"perversi\",\n  \"perwara\",\n  \"perwira\",\n  \"pes\",\n  \"pesa\",\n  \"pesai\",\n  \"pesak\",\n  \"pesakin\",\n  \"pesam\",\n  \"pesan\",\n  \"pesanggrahan\",\n  \"pesantren\",\n  \"pesara\",\n  \"pesat\",\n  \"pesawat\",\n  \"pese\",\n  \"peseh\",\n  \"pesek\",\n  \"peser\",\n  \"pesero\",\n  \"peset\",\n  \"pesi\",\n  \"pesiar\",\n  \"pesimis\",\n  \"pesimisme\",\n  \"pesimistis\",\n  \"pesing\",\n  \"pesirah\",\n  \"pesisir\",\n  \"pesok\",\n  \"pesolot\",\n  \"pesona\",\n  \"pesong\",\n  \"pesta\",\n  \"pestaka\",\n  \"pestisida\",\n  \"pestol\",\n  \"pesuk\",\n  \"pesut\",\n  \"pet\",\n  \"peta\",\n  \"petah\",\n  \"petai\",\n  \"petak\",\n  \"petaka\",\n  \"petal\",\n  \"petala\",\n  \"petaling\",\n  \"petam\",\n  \"petamari\",\n  \"petan\",\n  \"petanen\",\n  \"petang\",\n  \"petaram\",\n  \"petarang\",\n  \"petarangan\",\n  \"petaruan\",\n  \"petas\",\n  \"petatang-peteteng\",\n  \"petatus\",\n  \"petegian\",\n  \"petek\",\n  \"petel\",\n  \"petenteng\",\n  \"petepete\",\n  \"peterana\",\n  \"peterseli\",\n  \"petes\",\n  \"peti\",\n  \"petia\",\n  \"petik\",\n  \"petikrah\",\n  \"petikut\",\n  \"petilan\",\n  \"peting\",\n  \"petinggi\",\n  \"petiolus\",\n  \"petir\",\n  \"petis\",\n  \"petisi\",\n  \"petitih\",\n  \"petitum\",\n  \"petogram\",\n  \"petola\",\n  \"petopan\",\n  \"petor\",\n  \"petrodolar\",\n  \"petrografi\",\n  \"petrogram\",\n  \"petrokimia\",\n  \"petrol\",\n  \"petrolatum\",\n  \"petroleum\",\n  \"petrologi\",\n  \"petromaks\",\n  \"petsai\",\n  \"petuah\",\n  \"petuding\",\n  \"petuduh\",\n  \"petuk\",\n  \"petunia\",\n  \"peturun\",\n  \"petus\",\n  \"petut\",\n  \"pewaka\",\n  \"pewat\",\n  \"peyek\",\n  \"peyorasi\",\n  \"peyot\",\n  \"phi\",\n  \"piadah\",\n  \"piagam\",\n  \"piah\",\n  \"piak\",\n  \"pial\",\n  \"piala\",\n  \"pialang\",\n  \"pialing\",\n  \"pialu\",\n  \"piama\",\n  \"piang\",\n  \"pianggang\",\n  \"pianggu\",\n  \"pianika\",\n  \"pianis\",\n  \"piano\",\n  \"pianola\",\n  \"piantan\",\n  \"piara\",\n  \"piarit\",\n  \"pias\",\n  \"piaster\",\n  \"piat\",\n  \"piatu\",\n  \"piawai\",\n  \"pica\",\n  \"picah\",\n  \"picik\",\n  \"picing\",\n  \"picis\",\n  \"picit\",\n  \"pico\",\n  \"picu\",\n  \"picung\",\n  \"pidana\",\n  \"pidato\",\n  \"pidi\",\n  \"piezoelektrik\",\n  \"piezoelektrisitas\",\n  \"piezometer\",\n  \"pigmen\",\n  \"pigmentasi\",\n  \"pigmi\",\n  \"pigura\",\n  \"pihak\",\n  \"pijah\",\n  \"pijak\",\n  \"pijar\",\n  \"pijat\",\n  \"pijin\",\n  \"pijinasi\",\n  \"pijit\",\n  \"pika\",\n  \"pikap\",\n  \"pikat\",\n  \"pikau\",\n  \"pike\",\n  \"piket\",\n  \"pikir\",\n  \"piknik\",\n  \"piknometer\",\n  \"pikofarad\",\n  \"pikogram\",\n  \"pikolo\",\n  \"piktografi\",\n  \"piktogram\",\n  \"pikul\",\n  \"pikun\",\n  \"pikup\",\n  \"pil\",\n  \"pilah\",\n  \"pilak\",\n  \"pilang\",\n  \"pilar\",\n  \"pilas\",\n  \"pilaster\",\n  \"pilau\",\n  \"pileh\",\n  \"pilek\",\n  \"pileren\",\n  \"pilih\",\n  \"pilin\",\n  \"pilis\",\n  \"pilon\",\n  \"pilong\",\n  \"pilorus\",\n  \"pilositas\",\n  \"pilot\",\n  \"pilsener\",\n  \"pilu\",\n  \"pilus\",\n  \"pimpel\",\n  \"pimpin\",\n  \"pimping\",\n  \"pin\",\n  \"pina-pina\",\n  \"pinak\",\n  \"pinang\",\n  \"pinar\",\n  \"pincang\",\n  \"pincuk\",\n  \"pincut\",\n  \"pinda\",\n  \"pindah\",\n  \"pindai\",\n  \"pindang\",\n  \"pines\",\n  \"pinga\",\n  \"pingai\",\n  \"pinggah\",\n  \"pinggan\",\n  \"pinggang\",\n  \"pinggir\",\n  \"pinggul\",\n  \"pingit\",\n  \"pingkal\",\n  \"pingkau\",\n  \"pingpong\",\n  \"pingsan\",\n  \"pingul\",\n  \"pinis\",\n  \"pinisepuh\",\n  \"pinisi\",\n  \"pinjal\",\n  \"pinjam\",\n  \"pinjung\",\n  \"pinset\",\n  \"pinta\",\n  \"pintal\",\n  \"pintan\",\n  \"pintang\",\n  \"pintar\",\n  \"pintas\",\n  \"pintil\",\n  \"pintu\",\n  \"pintur\",\n  \"pinus\",\n  \"piogenik\",\n  \"pion\",\n  \"pioner\",\n  \"piong\",\n  \"pionir\",\n  \"pipa\",\n  \"pipet\",\n  \"pipi\",\n  \"pipih\",\n  \"pipil\",\n  \"pipis\",\n  \"pipit\",\n  \"pir\",\n  \"pirai\",\n  \"piramid\",\n  \"piramida\",\n  \"piramidal\",\n  \"pirang\",\n  \"piranograf\",\n  \"piranogram\",\n  \"piranometer\",\n  \"pirasat\",\n  \"pirau\",\n  \"pireksia\",\n  \"pirektik\",\n  \"piretrum\",\n  \"pirian\",\n  \"piriform\",\n  \"pirik\",\n  \"piring\",\n  \"pirit\",\n  \"pirofilit\",\n  \"pirofobia\",\n  \"piroksen\",\n  \"pirolisis\",\n  \"piromania\",\n  \"pirometalurgi\",\n  \"pirometer\",\n  \"piroteknik\",\n  \"pirsa\",\n  \"piruet\",\n  \"pirus\",\n  \"pis\",\n  \"pisah\",\n  \"pisang\",\n  \"pisau\",\n  \"pises\",\n  \"pisiformis\",\n  \"pisik\",\n  \"pisin\",\n  \"pisit\",\n  \"pisitan\",\n  \"pisovonus\",\n  \"pispot\",\n  \"pistol\",\n  \"pistom\",\n  \"piston\",\n  \"pisuh\",\n  \"pit\",\n  \"pita\",\n  \"pitak\",\n  \"pitam\",\n  \"pitanggang\",\n  \"pitar\",\n  \"pitarah\",\n  \"pitawat\",\n  \"piting\",\n  \"pitiriasis\",\n  \"pitis\",\n  \"pitometer\",\n  \"piton\",\n  \"pitot\",\n  \"pitut\",\n  \"piuh\",\n  \"piung\",\n  \"piut\",\n  \"piutang\",\n  \"pivot\",\n  \"piwulang\",\n  \"piyik\",\n  \"piza\",\n  \"plafon\",\n  \"plagiarisme\",\n  \"plagiat\",\n  \"plagiator\",\n  \"plagioklas\",\n  \"plakat\",\n  \"plaket\",\n  \"plaksegel\",\n  \"plamir\",\n  \"plan\",\n  \"planaria\",\n  \"planel\",\n  \"planet\",\n  \"planetarium\",\n  \"planetoid\",\n  \"plang\",\n  \"plangkan\",\n  \"planimeter\",\n  \"planimetri\",\n  \"planing\",\n  \"planisfer\",\n  \"plankton\",\n  \"plano\",\n  \"planologi\",\n  \"planologis\",\n  \"planospora\",\n  \"plantase\",\n  \"planula\",\n  \"plasenta\",\n  \"plaser\",\n  \"plasma\",\n  \"plasmodium\",\n  \"plasmosis\",\n  \"plastid\",\n  \"plastik\",\n  \"plastin\",\n  \"plastis\",\n  \"plastisitas\",\n  \"plastogami\",\n  \"plastometer\",\n  \"plastron\",\n  \"platelet\",\n  \"platform\",\n  \"platina\",\n  \"platinoid\",\n  \"platinum\",\n  \"platisma\",\n  \"plato\",\n  \"platonik\",\n  \"platonisme\",\n  \"plaza\",\n  \"plebisit\",\n  \"pleidoi\",\n  \"pleiogami\",\n  \"pleistosen\",\n  \"pleksus\",\n  \"plengkung\",\n  \"pleno\",\n  \"pleonasme\",\n  \"pleopod\",\n  \"plerem\",\n  \"plester\",\n  \"pletora\",\n  \"pleura\",\n  \"plinplan\",\n  \"plintat-plintut\",\n  \"plinteng\",\n  \"plintit\",\n  \"pliosaurus\",\n  \"pliosen\",\n  \"ploi\",\n  \"ploidi\",\n  \"plombir\",\n  \"plonci\",\n  \"plonco\",\n  \"plong\",\n  \"plonga-plongo\",\n  \"plontos\",\n  \"plosif\",\n  \"plot\",\n  \"plug\",\n  \"plumbago\",\n  \"plumbum\",\n  \"plumbung\",\n  \"plural\",\n  \"pluralis\",\n  \"pluralisme\",\n  \"pluralistis\",\n  \"pluriform\",\n  \"plus\",\n  \"pluto\",\n  \"plutokrasi\",\n  \"plutonik\",\n  \"plutonium\",\n  \"pluvial\",\n  \"pluviograf\",\n  \"pluviometer\",\n  \"pneumatika\",\n  \"pneumatofos\",\n  \"pneumatokista\",\n  \"pneumonia\",\n  \"poal\",\n  \"poces\",\n  \"poci\",\n  \"pocok\",\n  \"pocong\",\n  \"podemporem\",\n  \"podikal\",\n  \"podium\",\n  \"poetika\",\n  \"pof\",\n  \"pogrom\",\n  \"pohon\",\n  \"poikilohalin\",\n  \"poikiloterm\",\n  \"poin\",\n  \"point\",\n  \"poise\",\n  \"poiseuille\",\n  \"pojok\",\n  \"pok\",\n  \"pokah\",\n  \"pokeng\",\n  \"poker\",\n  \"poket\",\n  \"poko\",\n  \"pokok\",\n  \"pokrol\",\n  \"poksai\",\n  \"pokta\",\n  \"pol\",\n  \"pola\",\n  \"polah\",\n  \"polan\",\n  \"polang\",\n  \"polarimeter\",\n  \"polarimetri\",\n  \"polaris\",\n  \"polarisasi\",\n  \"polaritas\",\n  \"poldan\",\n  \"polder\",\n  \"polemik\",\n  \"polemis\",\n  \"polen\",\n  \"poleng\",\n  \"polenter\",\n  \"poler\",\n  \"poles\",\n  \"polet\",\n  \"poliandri\",\n  \"poliantus\",\n  \"poliester\",\n  \"polifagia\",\n  \"polifase\",\n  \"polifoni\",\n  \"poligam\",\n  \"poligami\",\n  \"poligini\",\n  \"poliglot\",\n  \"poliglotisme\",\n  \"poligon\",\n  \"poligraf\",\n  \"polihalin\",\n  \"polikel\",\n  \"poliket\",\n  \"poliklinik\",\n  \"polikrom\",\n  \"polikultur\",\n  \"polimer\",\n  \"polimerisasi\",\n  \"polinia\",\n  \"polio\",\n  \"polip\",\n  \"polipeptida\",\n  \"polipetal\",\n  \"poliploid\",\n  \"polipropilena\",\n  \"polis\",\n  \"polisakarida\",\n  \"polisemi\",\n  \"polisentrisme\",\n  \"polisepal\",\n  \"polisi\",\n  \"polisiklis\",\n  \"polisilogisme\",\n  \"polisindeton\",\n  \"polisional\",\n  \"polispermi\",\n  \"polister\",\n  \"politbiro\",\n  \"politeis\",\n  \"politeisme\",\n  \"politeistis\",\n  \"politeknik\",\n  \"politena\",\n  \"politik\",\n  \"politika\",\n  \"politikus\",\n  \"politis\",\n  \"politisasi\",\n  \"poliuretan\",\n  \"polivini\",\n  \"polizoa\",\n  \"polka\",\n  \"polkadot\",\n  \"polmah\",\n  \"polo\",\n  \"polok\",\n  \"polones\",\n  \"polong\",\n  \"polonium\",\n  \"polonter\",\n  \"polos\",\n  \"polusi\",\n  \"polutan\",\n  \"polutif\",\n  \"poma\",\n  \"pomade\",\n  \"pomologi\",\n  \"pompa\",\n  \"pompang\",\n  \"pompon\",\n  \"pompong\",\n  \"pon\",\n  \"ponakan\",\n  \"ponco\",\n  \"pondamen\",\n  \"pondar\",\n  \"ponderabilitas\",\n  \"pondik\",\n  \"pondoh\",\n  \"pondok\",\n  \"pondong\",\n  \"pongah\",\n  \"ponggang\",\n  \"ponggok\",\n  \"pongkol\",\n  \"pongsu\",\n  \"poni\",\n  \"ponil\",\n  \"ponok\",\n  \"ponor\",\n  \"pons\",\n  \"pontang-panting\",\n  \"ponten\",\n  \"pontoh\",\n  \"ponton\",\n  \"poo\",\n  \"pop\",\n  \"popelin\",\n  \"popi\",\n  \"popok\",\n  \"popor\",\n  \"popularisasi\",\n  \"popularitas\",\n  \"populasi\",\n  \"populer\",\n  \"populis\",\n  \"populisme\",\n  \"pora\",\n  \"porah\",\n  \"porak-parik\",\n  \"porak-peranda\",\n  \"porak-poranda\",\n  \"porfiria\",\n  \"pori\",\n  \"porisitas\",\n  \"porno\",\n  \"pornografi\",\n  \"pornografis\",\n  \"porok\",\n  \"porong\",\n  \"poros\",\n  \"porositas\",\n  \"porot\",\n  \"porselen\",\n  \"porsi\",\n  \"porta\",\n  \"portabel\",\n  \"portal\",\n  \"portepel\",\n  \"portik\",\n  \"portir\",\n  \"porto\",\n  \"portofolio\",\n  \"pos\",\n  \"pose\",\n  \"poser\",\n  \"posesif\",\n  \"posisi\",\n  \"positif\",\n  \"positivisme\",\n  \"positivistik\",\n  \"positron\",\n  \"positronium\",\n  \"poskar\",\n  \"poso\",\n  \"posologi\",\n  \"postar\",\n  \"poster\",\n  \"posterior\",\n  \"postulat\",\n  \"postur\",\n  \"pot\",\n  \"potas\",\n  \"potasium\",\n  \"potator\",\n  \"potehi\",\n  \"potel\",\n  \"potensi\",\n  \"potensial\",\n  \"potensiometer\",\n  \"potia\",\n  \"potlot\",\n  \"potol\",\n  \"potong\",\n  \"potret\",\n  \"poundal\",\n  \"poyang\",\n  \"praanggapan\",\n  \"praba\",\n  \"prabu\",\n  \"pradana\",\n  \"pradesa\",\n  \"pradesain\",\n  \"pradini\",\n  \"praduga\",\n  \"pragmatik\",\n  \"pragmatika\",\n  \"pragmatis\",\n  \"pragmatisme\",\n  \"prah\",\n  \"prahara\",\n  \"prahoto\",\n  \"prairi\",\n  \"praja\",\n  \"prajaksa\",\n  \"prajurit\",\n  \"prakala\",\n  \"prakarsa\",\n  \"prakarya\",\n  \"prakata\",\n  \"prakilang\",\n  \"prakira\",\n  \"prakondisi\",\n  \"prakonsepsi\",\n  \"praksis\",\n  \"praktek\",\n  \"praktik\",\n  \"praktikan\",\n  \"praktikum\",\n  \"praktis\",\n  \"praktisi\",\n  \"pralahir\",\n  \"pramenstruasi\",\n  \"prameswari\",\n  \"pramodern\",\n  \"pramubakti\",\n  \"pramubarang\",\n  \"pramubayi\",\n  \"pramudi\",\n  \"pramugara\",\n  \"pramugari\",\n  \"pramujasa\",\n  \"pramuka\",\n  \"pramukamar\",\n  \"pramuniaga\",\n  \"pramupintu\",\n  \"pramuria\",\n  \"pramusaji\",\n  \"pramusiwi\",\n  \"pramutamu\",\n  \"pramuwisata\",\n  \"pramuwisma\",\n  \"pranala\",\n  \"pranata\",\n  \"pranatacara\",\n  \"pranatal\",\n  \"prangas\",\n  \"prangko\",\n  \"pranikah\",\n  \"prapalatal\",\n  \"prapatan\",\n  \"prapendapat\",\n  \"praperadilan\",\n  \"prapromosi\",\n  \"prapuber\",\n  \"prapubertas\",\n  \"prapuna\",\n  \"prapustaka\",\n  \"prarasa\",\n  \"prarekam\",\n  \"praremaja\",\n  \"prasaja\",\n  \"prasangka\",\n  \"prasaran\",\n  \"prasarana\",\n  \"prasasti\",\n  \"prasawya\",\n  \"prasejahtera\",\n  \"prasejarah\",\n  \"prasekolah\",\n  \"praseminar\",\n  \"praseodimium\",\n  \"prasetia\",\n  \"prasi\",\n  \"prasmanan\",\n  \"prastudi\",\n  \"prasyarat\",\n  \"pratersier\",\n  \"pratinjau\",\n  \"prawacana\",\n  \"prawira\",\n  \"prayang\",\n  \"prayitna\",\n  \"prayojana\",\n  \"prayuwana\",\n  \"preadvis\",\n  \"preambul\",\n  \"preantena\",\n  \"preasetabulum\",\n  \"predasi\",\n  \"predator\",\n  \"predestinasi\",\n  \"predikat\",\n  \"predikatif\",\n  \"prediksi\",\n  \"predisposisi\",\n  \"preferensi\",\n  \"prefiks\",\n  \"prehistori\",\n  \"prei\",\n  \"prekositas\",\n  \"prekursor\",\n  \"preliminer\",\n  \"prelude\",\n  \"preman\",\n  \"prematur\",\n  \"premi\",\n  \"premis\",\n  \"premium\",\n  \"premolar\",\n  \"prenatal\",\n  \"prenjak\",\n  \"preparat\",\n  \"preposisi\",\n  \"prepotensi\",\n  \"prerogatif\",\n  \"pres\",\n  \"presbiopia\",\n  \"presbiterium\",\n  \"preseden\",\n  \"presensi\",\n  \"presentabel\",\n  \"presentasi\",\n  \"presentil\",\n  \"preservasi\",\n  \"presesi\",\n  \"presiden\",\n  \"presidensial\",\n  \"presidentil\",\n  \"presidium\",\n  \"presiositas\",\n  \"presipitasi\",\n  \"presisi\",\n  \"preskripsi\",\n  \"preskriptif\",\n  \"prestasi\",\n  \"prestise\",\n  \"prestisius\",\n  \"presto\",\n  \"presumsi\",\n  \"pretel\",\n  \"pretensi\",\n  \"prevalensi\",\n  \"preventif\",\n  \"preview\",\n  \"prewangan\",\n  \"pria\",\n  \"priagung\",\n  \"priayi\",\n  \"pribadi\",\n  \"pribumi\",\n  \"prihatin\",\n  \"prima\",\n  \"primadona\",\n  \"primas\",\n  \"primata\",\n  \"primbon\",\n  \"primer\",\n  \"primitif\",\n  \"primogenetur\",\n  \"primordial\",\n  \"primordialisme\",\n  \"primpen\",\n  \"pringas-pringis\",\n  \"pringgitan\",\n  \"prinsip\",\n  \"prinsipiil\",\n  \"prioritas\",\n  \"pripih\",\n  \"pris\",\n  \"prisma\",\n  \"prit\",\n  \"privasi\",\n  \"privat\",\n  \"privatisasi\",\n  \"prive\",\n  \"privilese\",\n  \"pro\",\n  \"proaktif\",\n  \"probabilitas\",\n  \"problem\",\n  \"problematik\",\n  \"procot\",\n  \"prodemokrasi\",\n  \"prodeo\",\n  \"produk\",\n  \"produksi\",\n  \"produktif\",\n  \"produktivitas\",\n  \"produsen\",\n  \"produser\",\n  \"proenzim\",\n  \"prof\",\n  \"profan\",\n  \"profanitas\",\n  \"profase\",\n  \"profesi\",\n  \"profesional\",\n  \"profesionalisme\",\n  \"profesionalitas\",\n  \"profesor\",\n  \"profetik\",\n  \"profil\",\n  \"profilaksis\",\n  \"profit\",\n  \"profitabel\",\n  \"profitabilitas\",\n  \"proforma\",\n  \"progeni\",\n  \"progesteron\",\n  \"prognosis\",\n  \"program\",\n  \"programa\",\n  \"progres\",\n  \"progresif\",\n  \"progresivitas\",\n  \"prohibisi\",\n  \"proklamasi\",\n  \"proklamator\",\n  \"proklitik\",\n  \"proksimal\",\n  \"proksimat\",\n  \"prokurasi\",\n  \"prokurator\",\n  \"prolat\",\n  \"prolegomena\",\n  \"proleksem\",\n  \"proletar\",\n  \"proletariat\",\n  \"proletarisasi\",\n  \"proliferasi\",\n  \"prolog\",\n  \"promenade\",\n  \"prometium\",\n  \"prominen\",\n  \"prominensia\",\n  \"promiskuitas\",\n  \"promontorium\",\n  \"promosi\",\n  \"promotif\",\n  \"promotor\",\n  \"promovendus\",\n  \"pronomina\",\n  \"pronominal\",\n  \"pronominalisasi\",\n  \"prop\",\n  \"propaganda\",\n  \"propagandis\",\n  \"propana\",\n  \"propelan\",\n  \"propeler\",\n  \"properti\",\n  \"propfan\",\n  \"propilena\",\n  \"propinsi\",\n  \"proporsi\",\n  \"proporsional\",\n  \"proposal\",\n  \"proposisi\",\n  \"propulsi\",\n  \"prosa\",\n  \"prosais\",\n  \"prosede\",\n  \"prosedur\",\n  \"prosedural\",\n  \"prosenium\",\n  \"proses\",\n  \"prosesi\",\n  \"prosesor\",\n  \"proskonion\",\n  \"proskriptivisme\",\n  \"prosodi\",\n  \"prosodis\",\n  \"prospek\",\n  \"prospeksi\",\n  \"prospektif\",\n  \"prospektus\",\n  \"prostaglandin\",\n  \"prostat\",\n  \"prostitusi\",\n  \"protagonis\",\n  \"protaktinium\",\n  \"protandri\",\n  \"protandris\",\n  \"protasis\",\n  \"proteid\",\n  \"protein\",\n  \"proteinuria\",\n  \"proteksi\",\n  \"proteksionisme\",\n  \"protektif\",\n  \"protektorat\",\n  \"proteolisis\",\n  \"proteolitik\",\n  \"protes\",\n  \"protese\",\n  \"protesis\",\n  \"protestan\",\n  \"protestantisme\",\n  \"protista\",\n  \"proto\",\n  \"protofon\",\n  \"protogenesis\",\n  \"protokol\",\n  \"protokoler\",\n  \"protolisis\",\n  \"protolitik\",\n  \"proton\",\n  \"protoneolitik\",\n  \"protoplasma\",\n  \"protoraks\",\n  \"prototipe\",\n  \"protozoa\",\n  \"protrombin\",\n  \"protuberansia\",\n  \"provinsi\",\n  \"provinsialisme\",\n  \"provisi\",\n  \"provisional\",\n  \"provitamin\",\n  \"provokasi\",\n  \"provokatif\",\n  \"provokator\",\n  \"provokatur\",\n  \"provos\",\n  \"proyek\",\n  \"proyeksi\",\n  \"proyektil\",\n  \"proyektor\",\n  \"prudensial\",\n  \"prurigo\",\n  \"psalm\",\n  \"psamolitoral\",\n  \"pseudo\",\n  \"pseudokata\",\n  \"pseudomorf\",\n  \"pseudonim\",\n  \"psi\",\n  \"psike\",\n  \"psikiater\",\n  \"psikiatri\",\n  \"psikis\",\n  \"psikoanalisis\",\n  \"psikodrama\",\n  \"psikofarmakologi\",\n  \"psikofisiologis\",\n  \"psikokinesis\",\n  \"psikolepsi\",\n  \"psikolinguistik\",\n  \"psikolog\",\n  \"psikologi\",\n  \"psikologis\",\n  \"psikometri\",\n  \"psikometrika\",\n  \"psikomotor\",\n  \"psikomotorik\",\n  \"psikoneurosis\",\n  \"psikopat\",\n  \"psikopati\",\n  \"psikopatologi\",\n  \"psikosastra\",\n  \"psikoseksual\",\n  \"psikosis\",\n  \"psikosomatik\",\n  \"psikoteknik\",\n  \"psikoteknis\",\n  \"psikoterapi\",\n  \"psikotes\",\n  \"psikotropika\",\n  \"psikrofili\",\n  \"psikrometer\",\n  \"psikrometri\",\n  \"psitakosis\",\n  \"psoriasis\",\n  \"pterodaktil\",\n  \"pteropoda\",\n  \"ptialin\",\n  \"ptomaina\",\n  \"puadai\",\n  \"puah\",\n  \"puak\",\n  \"puaka\",\n  \"pual\",\n  \"pualam\",\n  \"puan\",\n  \"puas\",\n  \"puasa\",\n  \"puatang\",\n  \"pub\",\n  \"puber\",\n  \"pubertas\",\n  \"pubesens\",\n  \"publik\",\n  \"publikasi\",\n  \"publisis\",\n  \"publisistik\",\n  \"publisitas\",\n  \"pucang\",\n  \"pucat\",\n  \"pucik\",\n  \"pucuk\",\n  \"pucung\",\n  \"pudar\",\n  \"pudat\",\n  \"pudel\",\n  \"puder\",\n  \"pudi\",\n  \"puding\",\n  \"pudur\",\n  \"puerpera\",\n  \"puerperium\",\n  \"pugak\",\n  \"pugar\",\n  \"pugas\",\n  \"puguh\",\n  \"puih\",\n  \"puing\",\n  \"puisi\",\n  \"puitis\",\n  \"puitisasi\",\n  \"puja\",\n  \"pujangga\",\n  \"puji\",\n  \"pujuk\",\n  \"pujur\",\n  \"pujut\",\n  \"pukah\",\n  \"pukal\",\n  \"pukang\",\n  \"pukas\",\n  \"pukat\",\n  \"pukau\",\n  \"puki\",\n  \"pukul\",\n  \"pul\",\n  \"pula\",\n  \"pulai\",\n  \"pulan\",\n  \"pulang\",\n  \"pulas\",\n  \"pulasan\",\n  \"pulasari\",\n  \"pulau\",\n  \"pulen\",\n  \"pulih\",\n  \"pulik\",\n  \"pulover\",\n  \"pulp\",\n  \"pulpa\",\n  \"pulpen\",\n  \"pulper\",\n  \"pulsa\",\n  \"pulsar\",\n  \"pulsasi\",\n  \"puluh\",\n  \"pulun\",\n  \"pulung\",\n  \"pulut\",\n  \"puma\",\n  \"pumpun\",\n  \"pun\",\n  \"punah\",\n  \"punai\",\n  \"punakawan\",\n  \"punar\",\n  \"punat\",\n  \"punca\",\n  \"puncak\",\n  \"punci\",\n  \"pundak\",\n  \"punden\",\n  \"pundi\",\n  \"punding\",\n  \"punduh\",\n  \"punduk\",\n  \"pundung\",\n  \"pung\",\n  \"pungak-pinguk\",\n  \"punggah\",\n  \"punggai\",\n  \"punggal\",\n  \"punggawa\",\n  \"pungguk\",\n  \"punggung\",\n  \"punggur\",\n  \"pungkah\",\n  \"pungkang\",\n  \"pungkas\",\n  \"pungkur\",\n  \"pungli\",\n  \"pungsi\",\n  \"pungtuasi\",\n  \"punguk\",\n  \"pungut\",\n  \"punia\",\n  \"punjul\",\n  \"punjung\",\n  \"punjut\",\n  \"punk\",\n  \"puntal\",\n  \"punti\",\n  \"puntianak\",\n  \"puntir\",\n  \"puntuk\",\n  \"puntul\",\n  \"puntung\",\n  \"punuk\",\n  \"punya\",\n  \"pupa\",\n  \"pupil\",\n  \"pupu\",\n  \"pupuan\",\n  \"pupuh\",\n  \"pupuk\",\n  \"pupur\",\n  \"pupus\",\n  \"puput\",\n  \"pura\",\n  \"purba\",\n  \"purbakala\",\n  \"purbani\",\n  \"purbasangka\",\n  \"purbawisesa\",\n  \"purdah\",\n  \"pure\",\n  \"purgatif\",\n  \"puri\",\n  \"purifikasi\",\n  \"purik\",\n  \"puring\",\n  \"puris\",\n  \"purisme\",\n  \"puristis\",\n  \"puritan\",\n  \"puritanisme\",\n  \"purna\",\n  \"purnabakti\",\n  \"purnaintegrasi\",\n  \"purnajabatan\",\n  \"purnajual\",\n  \"purnakarya\",\n  \"purnama\",\n  \"purnapugar\",\n  \"purnasarjana\",\n  \"purnatugas\",\n  \"purnawaktu\",\n  \"purpura\",\n  \"purser\",\n  \"puruk\",\n  \"puruk-parak\",\n  \"purun\",\n  \"purus\",\n  \"purusa\",\n  \"purut\",\n  \"purwa\",\n  \"purwakanti\",\n  \"purwapada\",\n  \"purwarupa\",\n  \"pus\",\n  \"pusa\",\n  \"pusak\",\n  \"pusaka\",\n  \"pusang\",\n  \"pusar\",\n  \"pusara\",\n  \"pusat\",\n  \"puser\",\n  \"pusing\",\n  \"puskesmas\",\n  \"puso\",\n  \"puspa\",\n  \"puspadana\",\n  \"puspadanta\",\n  \"puspamala\",\n  \"pusparagam\",\n  \"puspas\",\n  \"puspawarna\",\n  \"puspita\",\n  \"pusta\",\n  \"pustaha\",\n  \"pustaka\",\n  \"pustakaloka\",\n  \"pusu\",\n  \"pusung\",\n  \"pusut\",\n  \"putar\",\n  \"putat\",\n  \"puter\",\n  \"puti\",\n  \"putih\",\n  \"putik\",\n  \"puting\",\n  \"putra\",\n  \"putranda\",\n  \"putrawali\",\n  \"putrefaksi\",\n  \"putresin\",\n  \"putri\",\n  \"putriditas\",\n  \"putu\",\n  \"putus\",\n  \"putut\",\n  \"puvi-puvi\",\n  \"puyan\",\n  \"puyeng\",\n  \"puyer\",\n  \"puyonghai\",\n  \"puyu\",\n  \"puyuh\",\n  \"qaf\",\n  \"qari\",\n  \"qariah\",\n  \"qasar\",\n  \"qiamulail\",\n  \"qiraah\",\n  \"qiraat\",\n  \"qudsi\",\n  \"quran\",\n  \"raba\",\n  \"raba-rubu\",\n  \"rabak\",\n  \"raban\",\n  \"rabana\",\n  \"rabani\",\n  \"rabas\",\n  \"rabat\",\n  \"rabet\",\n  \"rabi\",\n  \"rabies\",\n  \"rabik\",\n  \"rabit\",\n  \"rabiulakhir\",\n  \"rabiulawal\",\n  \"rabotase\",\n  \"rabu\",\n  \"rabuk\",\n  \"rabulizat\",\n  \"rabun\",\n  \"rabung\",\n  \"rabut\",\n  \"racak\",\n  \"racau\",\n  \"racik\",\n  \"racuh\",\n  \"racun\",\n  \"rad\",\n  \"rada\",\n  \"radaah\",\n  \"radah\",\n  \"radai\",\n  \"radak\",\n  \"radang\",\n  \"radar\",\n  \"radas\",\n  \"raden\",\n  \"rades\",\n  \"radi\",\n  \"radiah\",\n  \"radial\",\n  \"radian\",\n  \"radians\",\n  \"radiasi\",\n  \"radiator\",\n  \"radif\",\n  \"radikal\",\n  \"radikalisasi\",\n  \"radikalisme\",\n  \"radiks\",\n  \"radikula\",\n  \"radin\",\n  \"radio\",\n  \"radioaktif\",\n  \"radioaktivitas\",\n  \"radiogenetika\",\n  \"radiogoniometer\",\n  \"radiogoniometri\",\n  \"radiograf\",\n  \"radiografi\",\n  \"radiogram\",\n  \"radioisotop\",\n  \"radiokarbon\",\n  \"radiokimia\",\n  \"radiolisis\",\n  \"radiolog\",\n  \"radiologi\",\n  \"radiolokasi\",\n  \"radiometer\",\n  \"radiosonde\",\n  \"radiotelefoni\",\n  \"radiotelegrafi\",\n  \"radiotelegrafis\",\n  \"radioterapi\",\n  \"radis\",\n  \"radium\",\n  \"radius\",\n  \"radon\",\n  \"radu\",\n  \"radurisasi\",\n  \"rafak\",\n  \"rafaksi\",\n  \"rafe\",\n  \"rafi\",\n  \"rafia\",\n  \"rafidi\",\n  \"rafik\",\n  \"raflesia\",\n  \"raga\",\n  \"ragam\",\n  \"ragang\",\n  \"ragas\",\n  \"ragawi\",\n  \"ragi\",\n  \"ragib\",\n  \"ragil\",\n  \"ragu\",\n  \"raguk\",\n  \"ragum\",\n  \"ragung\",\n  \"ragut\",\n  \"rahak\",\n  \"rahang\",\n  \"rahap\",\n  \"raharja\",\n  \"rahasia\",\n  \"rahat\",\n  \"rahayu\",\n  \"rahib\",\n  \"rahim\",\n  \"rahimakallah\",\n  \"rahimakumullah\",\n  \"rahmah\",\n  \"rahman\",\n  \"rahmat\",\n  \"rahmatullah\",\n  \"rahu\",\n  \"rai\",\n  \"raib\",\n  \"raigedeg\",\n  \"raih\",\n  \"raimuna\",\n  \"rais\",\n  \"raja\",\n  \"rajab\",\n  \"rajabiah\",\n  \"rajah\",\n  \"rajalela\",\n  \"rajam\",\n  \"rajang\",\n  \"rajapati\",\n  \"rajawali\",\n  \"rajim\",\n  \"rajin\",\n  \"rajok\",\n  \"rajuk\",\n  \"rajul\",\n  \"rajungan\",\n  \"rajut\",\n  \"rak\",\n  \"raka\",\n  \"rakaat\",\n  \"rakah\",\n  \"rakanita\",\n  \"rakap\",\n  \"rakat\",\n  \"rakawira\",\n  \"rakbol\",\n  \"raket\",\n  \"rakila\",\n  \"rakis\",\n  \"rakit\",\n  \"rakitis\",\n  \"rakna\",\n  \"raksa\",\n  \"raksabumi\",\n  \"raksasa\",\n  \"raksi\",\n  \"rakuk\",\n  \"rakung\",\n  \"rakus\",\n  \"rakut\",\n  \"rakyat\",\n  \"rakyu\",\n  \"ralat\",\n  \"ralip\",\n  \"ram\",\n  \"rama\",\n  \"rama-rama\",\n  \"ramadan\",\n  \"ramah\",\n  \"ramai\",\n  \"ramal\",\n  \"ramanda\",\n  \"ramania\",\n  \"rambah\",\n  \"rambai\",\n  \"rambak\",\n  \"ramban\",\n  \"rambang\",\n  \"rambat\",\n  \"rambeh\",\n  \"rambih\",\n  \"rambu\",\n  \"rambun\",\n  \"rambung\",\n  \"rambut\",\n  \"rambutan\",\n  \"rambuti\",\n  \"rames\",\n  \"rami\",\n  \"ramin\",\n  \"ramirezi\",\n  \"rampa\",\n  \"rampai\",\n  \"rampak\",\n  \"rampang\",\n  \"rampas\",\n  \"rampat\",\n  \"ramping\",\n  \"rampok\",\n  \"rampuh\",\n  \"rampung\",\n  \"rampus\",\n  \"ramu\",\n  \"ramus\",\n  \"rana\",\n  \"ranah\",\n  \"ranai\",\n  \"ranap\",\n  \"ranca\",\n  \"rancah\",\n  \"rancak\",\n  \"rancam\",\n  \"rancang\",\n  \"rancap\",\n  \"rancau\",\n  \"rancu\",\n  \"rancung\",\n  \"randa\",\n  \"randa-rondo\",\n  \"randah\",\n  \"randai\",\n  \"randajawan\",\n  \"randak\",\n  \"randat\",\n  \"randau\",\n  \"randek\",\n  \"randi\",\n  \"randu\",\n  \"randuk\",\n  \"randung\",\n  \"rang\",\n  \"rangah\",\n  \"rangai\",\n  \"rangak\",\n  \"rangam\",\n  \"rangas\",\n  \"rangga\",\n  \"ranggah\",\n  \"ranggak\",\n  \"ranggas\",\n  \"ranggeh\",\n  \"ranggi\",\n  \"ranggit\",\n  \"ranggul\",\n  \"ranggung\",\n  \"rangin\",\n  \"rangina\",\n  \"rangka\",\n  \"rangkai\",\n  \"rangkak\",\n  \"rangkam\",\n  \"rangkang\",\n  \"rangkap\",\n  \"rangkaya\",\n  \"rangket\",\n  \"rangkiang\",\n  \"rangkik\",\n  \"rangking\",\n  \"rangkit\",\n  \"rangkok\",\n  \"rangkul\",\n  \"rangkum\",\n  \"rangkung\",\n  \"rangkup\",\n  \"rangkus\",\n  \"rangkut\",\n  \"rango-rango\",\n  \"rangrang\",\n  \"rangrangan\",\n  \"rangsang\",\n  \"rangu\",\n  \"rangum\",\n  \"rangup\",\n  \"rani\",\n  \"ranjah\",\n  \"ranjang\",\n  \"ranjau\",\n  \"ranji\",\n  \"ranjing\",\n  \"rankine\",\n  \"ransel\",\n  \"ransum\",\n  \"rantai\",\n  \"rantam\",\n  \"rantang\",\n  \"rantas\",\n  \"rantau\",\n  \"rante\",\n  \"ranti\",\n  \"ranting\",\n  \"rantuk\",\n  \"rantus\",\n  \"ranum\",\n  \"ranyah\",\n  \"ranyang\",\n  \"ranyau\",\n  \"ranyun\",\n  \"rap\",\n  \"rapah\",\n  \"rapai\",\n  \"rapak\",\n  \"rapal\",\n  \"rapang\",\n  \"rapat\",\n  \"rapel\",\n  \"rapi\",\n  \"rapiah\",\n  \"rapik\",\n  \"rapor\",\n  \"rapsodi\",\n  \"rapu\",\n  \"rapuh\",\n  \"rapun\",\n  \"rapung\",\n  \"rapus\",\n  \"raraha\",\n  \"rarai\",\n  \"rarak\",\n  \"rarangan\",\n  \"raras\",\n  \"ras\",\n  \"rasa\",\n  \"rasai\",\n  \"rasam\",\n  \"rasamala\",\n  \"rasan\",\n  \"rasau\",\n  \"rasberi\",\n  \"rase\",\n  \"rasem\",\n  \"rasi\",\n  \"rasia\",\n  \"rasial\",\n  \"rasialis\",\n  \"rasialisme\",\n  \"rasian\",\n  \"rasio\",\n  \"rasional\",\n  \"rasionalis\",\n  \"rasionalisasi\",\n  \"rasionalisme\",\n  \"rasionalitas\",\n  \"rasisme\",\n  \"raster\",\n  \"rasuk\",\n  \"rasul\",\n  \"rasuli\",\n  \"rasulullah\",\n  \"rasyid\",\n  \"rasywah\",\n  \"rat\",\n  \"rata\",\n  \"ratah\",\n  \"ratap\",\n  \"ratib\",\n  \"ratifikasi\",\n  \"ratna\",\n  \"ratu\",\n  \"ratus\",\n  \"rau\",\n  \"raudah\",\n  \"raudatul\",\n  \"raudatulatfal\",\n  \"raum\",\n  \"raun\",\n  \"raung\",\n  \"raup\",\n  \"raut\",\n  \"rawa\",\n  \"rawah\",\n  \"rawai\",\n  \"rawak\",\n  \"rawan\",\n  \"rawang\",\n  \"rawat\",\n  \"rawatib\",\n  \"rawi\",\n  \"rawin\",\n  \"rawit\",\n  \"rawon\",\n  \"rawuh\",\n  \"raya\",\n  \"rayah\",\n  \"rayan\",\n  \"rayang\",\n  \"rayap\",\n  \"rayau\",\n  \"rayon\",\n  \"rayonisasi\",\n  \"rayu\",\n  \"razia\",\n  \"reagen\",\n  \"reagensia\",\n  \"reak\",\n  \"reaksi\",\n  \"reaksioner\",\n  \"reaktan\",\n  \"reaktans\",\n  \"reaktansi\",\n  \"reaktif\",\n  \"reaktivitas\",\n  \"reakton\",\n  \"reaktor\",\n  \"reaktualisasi\",\n  \"real\",\n  \"realis\",\n  \"realisasi\",\n  \"realisme\",\n  \"realistis\",\n  \"realitas\",\n  \"realokasi\",\n  \"realpolitik\",\n  \"reasuransi\",\n  \"reaumur\",\n  \"reba\",\n  \"rebab\",\n  \"rebah\",\n  \"rebak\",\n  \"reban\",\n  \"rebana\",\n  \"rebas\",\n  \"rebat\",\n  \"rebeh\",\n  \"rebek\",\n  \"rebes\",\n  \"rebet\",\n  \"rebewes\",\n  \"reboisasi\",\n  \"rebon\",\n  \"rebu\",\n  \"rebuk\",\n  \"rebung\",\n  \"rebus\",\n  \"rebut\",\n  \"reca\",\n  \"recak\",\n  \"receh\",\n  \"recet\",\n  \"recik\",\n  \"recok\",\n  \"recup\",\n  \"reda\",\n  \"redah\",\n  \"redaksi\",\n  \"redaksional\",\n  \"redaktur\",\n  \"redam\",\n  \"redang\",\n  \"redap\",\n  \"redefinisi\",\n  \"redih\",\n  \"redik\",\n  \"redoks\",\n  \"reduksi\",\n  \"reduksionisme\",\n  \"redum\",\n  \"redup\",\n  \"reduplikasi\",\n  \"redusir\",\n  \"redut\",\n  \"reedukasi\",\n  \"reekspor\",\n  \"referat\",\n  \"referen\",\n  \"referendaris\",\n  \"referendum\",\n  \"referensi\",\n  \"referensial\",\n  \"reflasi\",\n  \"refleks\",\n  \"refleksi\",\n  \"reflektif\",\n  \"reflektor\",\n  \"reformasi\",\n  \"reformis\",\n  \"refraksi\",\n  \"refraktometer\",\n  \"refraktor\",\n  \"refrein\",\n  \"refrigerator\",\n  \"regah\",\n  \"regan\",\n  \"regang\",\n  \"regas\",\n  \"regat\",\n  \"regata\",\n  \"regel\",\n  \"regen\",\n  \"regenarasi\",\n  \"regenerasi\",\n  \"reges\",\n  \"regi\",\n  \"regio\",\n  \"region\",\n  \"regional\",\n  \"regionalisme\",\n  \"register\",\n  \"registrasi\",\n  \"regisur\",\n  \"reglemen\",\n  \"reglementer\",\n  \"regol\",\n  \"regresi\",\n  \"regresif\",\n  \"regu\",\n  \"reguk\",\n  \"regularisasi\",\n  \"regulasi\",\n  \"regulatif\",\n  \"regulator\",\n  \"reguler\",\n  \"regup\",\n  \"rehab\",\n  \"rehabilitasi\",\n  \"rehabilitatif\",\n  \"rehal\",\n  \"rehat\",\n  \"rehidrasi\",\n  \"reideologisasi\",\n  \"reindoktrinasi\",\n  \"reinkarnasi\",\n  \"reintegrasi\",\n  \"reinterpretasi\",\n  \"reinvestasi\",\n  \"reja\",\n  \"rejab\",\n  \"rejah\",\n  \"rejan\",\n  \"rejang\",\n  \"rejasa\",\n  \"rejeh\",\n  \"rejeng\",\n  \"rejuk\",\n  \"rek\",\n  \"reka\",\n  \"rekah\",\n  \"rekal\",\n  \"rekalkulasi\",\n  \"rekalsitran\",\n  \"rekam\",\n  \"rekan\",\n  \"rekanalisasi\",\n  \"rekanita\",\n  \"rekap\",\n  \"rekapangan\",\n  \"rekapitalisasi\",\n  \"rekapitulasi\",\n  \"rekat\",\n  \"rekata\",\n  \"rekayasa\",\n  \"reken\",\n  \"rekening\",\n  \"rekes\",\n  \"rekisitor\",\n  \"rekisitur\",\n  \"reklamasi\",\n  \"reklame\",\n  \"reklasering\",\n  \"reklasifikasi\",\n  \"rekognisi\",\n  \"rekoleksi\",\n  \"rekombinan\",\n  \"rekombinasi\",\n  \"rekomendasi\",\n  \"rekonsiliasi\",\n  \"rekonstruksi\",\n  \"rekonstruktif\",\n  \"rekonvensi\",\n  \"rekor\",\n  \"rekreasi\",\n  \"rekrut\",\n  \"rekrutmen\",\n  \"reksa\",\n  \"rekstok\",\n  \"rektifikasi\",\n  \"rekto\",\n  \"rektor\",\n  \"rekuiem\",\n  \"rekuisisi\",\n  \"rekuisitor\",\n  \"rekurs\",\n  \"rel\",\n  \"rela\",\n  \"relai\",\n  \"relaks\",\n  \"relaksasi\",\n  \"relang\",\n  \"relap\",\n  \"relas\",\n  \"relasi\",\n  \"relatif\",\n  \"relativisasi\",\n  \"relativisme\",\n  \"relativitas\",\n  \"relau\",\n  \"relban\",\n  \"relevan\",\n  \"relevansi\",\n  \"reli\",\n  \"reliabel\",\n  \"reliabilitas\",\n  \"relief\",\n  \"religi\",\n  \"religiositas\",\n  \"religius\",\n  \"relik\",\n  \"relikui\",\n  \"relikwi\",\n  \"relokasi\",\n  \"reluk\",\n  \"relung\",\n  \"rem\",\n  \"rema\",\n  \"remah\",\n  \"remai\",\n  \"remaja\",\n  \"remak\",\n  \"remanen\",\n  \"remang\",\n  \"remas\",\n  \"rematik\",\n  \"rematisme\",\n  \"rematoid\",\n  \"rembah\",\n  \"rembang\",\n  \"rembas\",\n  \"rembat\",\n  \"rembega\",\n  \"rembes\",\n  \"rembet\",\n  \"rembih\",\n  \"rembuk\",\n  \"rembulan\",\n  \"rembunai\",\n  \"remburs\",\n  \"rembut\",\n  \"remedi\",\n  \"remedial\",\n  \"remediasi\",\n  \"remeh\",\n  \"remenia\",\n  \"remet\",\n  \"remi\",\n  \"remiak\",\n  \"remiling\",\n  \"reminisensi\",\n  \"remis\",\n  \"remisi\",\n  \"remoh\",\n  \"rempa\",\n  \"rempah\",\n  \"rempak\",\n  \"rempela\",\n  \"rempelas\",\n  \"rempenai\",\n  \"rempeyek\",\n  \"rempong\",\n  \"rempuh\",\n  \"rempuk\",\n  \"rempus\",\n  \"remujung\",\n  \"remuk\",\n  \"remunerasi\",\n  \"remunggai\",\n  \"rena\",\n  \"renah\",\n  \"renai\",\n  \"renaisans\",\n  \"renal\",\n  \"renang\",\n  \"rencah\",\n  \"rencak\",\n  \"rencam\",\n  \"rencana\",\n  \"rencang\",\n  \"rencat\",\n  \"renceh\",\n  \"renceng\",\n  \"rencet\",\n  \"rencong\",\n  \"renda\",\n  \"rendabel\",\n  \"rendah\",\n  \"rendam\",\n  \"rendang\",\n  \"rendemen\",\n  \"rendeng\",\n  \"rendet\",\n  \"rendong\",\n  \"renegosiasi\",\n  \"renek\",\n  \"renes\",\n  \"reng\",\n  \"rengadean\",\n  \"rengap\",\n  \"rengas\",\n  \"rengat\",\n  \"rengeh\",\n  \"rengek\",\n  \"rengeng\",\n  \"rengga\",\n  \"renggam\",\n  \"renggang\",\n  \"renggat\",\n  \"renggek\",\n  \"rengges\",\n  \"rengginang\",\n  \"renggut\",\n  \"rengit\",\n  \"rengkah\",\n  \"rengkam\",\n  \"rengkeh\",\n  \"rengket\",\n  \"rengkit\",\n  \"rengkong\",\n  \"rengkudah\",\n  \"rengkuh\",\n  \"rengrengan\",\n  \"rengsa\",\n  \"rengus\",\n  \"rengut\",\n  \"renik\",\n  \"renin\",\n  \"renium\",\n  \"renjana\",\n  \"renjatan\",\n  \"renjeng\",\n  \"renjis\",\n  \"renjong\",\n  \"renjul\",\n  \"renkinang\",\n  \"renovasi\",\n  \"renta\",\n  \"rentabilitas\",\n  \"rentak\",\n  \"rentaka\",\n  \"rental\",\n  \"rentan\",\n  \"rentang\",\n  \"rentap\",\n  \"rentas\",\n  \"rente\",\n  \"renteng\",\n  \"rentenir\",\n  \"rentet\",\n  \"renti\",\n  \"rentik\",\n  \"renumerasi\",\n  \"renung\",\n  \"renvoi\",\n  \"renyah\",\n  \"renyai\",\n  \"renyam\",\n  \"renyang\",\n  \"renyap\",\n  \"renyau\",\n  \"renyeh\",\n  \"renyek\",\n  \"renyem\",\n  \"renyuk\",\n  \"renyut\",\n  \"reog\",\n  \"reol\",\n  \"reologi\",\n  \"reometri\",\n  \"reorganisasi\",\n  \"reorientasi\",\n  \"reostat\",\n  \"reot\",\n  \"rep-repan\",\n  \"repang\",\n  \"reparasi\",\n  \"repas\",\n  \"repatrian\",\n  \"repatriasi\",\n  \"repek\",\n  \"repertoar\",\n  \"repertorium\",\n  \"repes\",\n  \"repet\",\n  \"repeten\",\n  \"repetisi\",\n  \"repetitif\",\n  \"repetitor\",\n  \"repih\",\n  \"replik\",\n  \"replika\",\n  \"repolarisasi\",\n  \"repormir\",\n  \"reportase\",\n  \"reporter\",\n  \"reposisi\",\n  \"repot\",\n  \"representasi\",\n  \"representatif\",\n  \"represi\",\n  \"represif\",\n  \"reproduksi\",\n  \"reprografi\",\n  \"reptil\",\n  \"reptilia\",\n  \"republik\",\n  \"republiken\",\n  \"repuh\",\n  \"repui\",\n  \"reput\",\n  \"reputasi\",\n  \"rerak\",\n  \"rerangka\",\n  \"reranting\",\n  \"reras\",\n  \"rerata\",\n  \"reresanan\",\n  \"rerongkong\",\n  \"rerot\",\n  \"rerugi\",\n  \"reruntuk\",\n  \"resa\",\n  \"resah\",\n  \"resak\",\n  \"resam\",\n  \"resan\",\n  \"resap\",\n  \"resbang\",\n  \"resek\",\n  \"resensi\",\n  \"resensor\",\n  \"resep\",\n  \"resepsi\",\n  \"resepsionis\",\n  \"reseptif\",\n  \"reseptor\",\n  \"reserse\",\n  \"resersir\",\n  \"reservat\",\n  \"reserve\",\n  \"reservoir\",\n  \"reses\",\n  \"resesi\",\n  \"resi\",\n  \"residen\",\n  \"residivis\",\n  \"residivisme\",\n  \"residivistis\",\n  \"residu\",\n  \"resik\",\n  \"resiko\",\n  \"resimen\",\n  \"resin\",\n  \"resinol\",\n  \"resipien\",\n  \"resiprok\",\n  \"resiprokal\",\n  \"resistan\",\n  \"resistans\",\n  \"resistansi\",\n  \"resistor\",\n  \"resital\",\n  \"resitasi\",\n  \"resmi\",\n  \"resolusi\",\n  \"resonan\",\n  \"resonansi\",\n  \"resonator\",\n  \"resor\",\n  \"resorpsi\",\n  \"resorsinol\",\n  \"resosialisasi\",\n  \"respek\",\n  \"respirasi\",\n  \"respirator\",\n  \"responden\",\n  \"respons\",\n  \"responsi\",\n  \"responsif\",\n  \"restan\",\n  \"restiformis\",\n  \"restitusi\",\n  \"restoran\",\n  \"restorasi\",\n  \"restriksi\",\n  \"restriktif\",\n  \"restrukturisasi\",\n  \"restu\",\n  \"restung\",\n  \"resu\",\n  \"resultan\",\n  \"resume\",\n  \"resurjensi\",\n  \"ret\",\n  \"reta\",\n  \"retail\",\n  \"retak\",\n  \"retardasi\",\n  \"retas\",\n  \"retek\",\n  \"retenidos\",\n  \"retensi\",\n  \"retet\",\n  \"retih\",\n  \"retikuler\",\n  \"retina\",\n  \"retinakulum\",\n  \"retinitis\",\n  \"retok\",\n  \"retorik\",\n  \"retorika\",\n  \"retoris\",\n  \"retorsi\",\n  \"retradisionalisasi\",\n  \"retreatisme\",\n  \"retret\",\n  \"retribusi\",\n  \"retro\",\n  \"retroaktif\",\n  \"retrofleks\",\n  \"retrofleksi\",\n  \"retrogresi\",\n  \"retrogresif\",\n  \"retrolingual\",\n  \"retromamal\",\n  \"retromandibuler\",\n  \"retrospeksi\",\n  \"retur\",\n  \"retus\",\n  \"reumatismos\",\n  \"reuni\",\n  \"reunifikasi\",\n  \"revaksinasi\",\n  \"revaluasi\",\n  \"revans\",\n  \"reverberasi\",\n  \"revisi\",\n  \"revisibilitas\",\n  \"revisionis\",\n  \"revitalisasi\",\n  \"revolusi\",\n  \"revolusioner\",\n  \"revolver\",\n  \"rewak\",\n  \"rewan\",\n  \"rewanda\",\n  \"rewang\",\n  \"rewel\",\n  \"rewet\",\n  \"reyal\",\n  \"reyot\",\n  \"rezeki\",\n  \"rezim\",\n  \"rho\",\n  \"ria\",\n  \"riadat\",\n  \"riah\",\n  \"riak\",\n  \"rial\",\n  \"riam\",\n  \"rian\",\n  \"riang\",\n  \"riap\",\n  \"rias\",\n  \"riba\",\n  \"ribang\",\n  \"ribat\",\n  \"ribatat\",\n  \"riben\",\n  \"riboflavin\",\n  \"ribosom\",\n  \"ribu\",\n  \"ribut\",\n  \"rica\",\n  \"ricau\",\n  \"ricik\",\n  \"ricuh\",\n  \"rida\",\n  \"ridan\",\n  \"ridi\",\n  \"riding\",\n  \"ridip\",\n  \"ridu\",\n  \"rigai\",\n  \"rigi-rigi\",\n  \"rihat\",\n  \"rihlah\",\n  \"riil\",\n  \"rijal\",\n  \"rijalugaib\",\n  \"rijalulgaib\",\n  \"rijang\",\n  \"rikuh\",\n  \"rileks\",\n  \"rilis\",\n  \"rim\",\n  \"rima\",\n  \"rimas\",\n  \"rimata\",\n  \"rimba\",\n  \"rimbas\",\n  \"rimbat\",\n  \"rimbawan\",\n  \"rimbun\",\n  \"rime\",\n  \"rimis\",\n  \"rimpang\",\n  \"rimpel\",\n  \"rimpi\",\n  \"rimpuh\",\n  \"rimpung\",\n  \"rinai\",\n  \"rincih\",\n  \"rincis\",\n  \"rincu\",\n  \"rindang\",\n  \"rinding\",\n  \"rindu\",\n  \"ring\",\n  \"ringan\",\n  \"ringgit\",\n  \"ringih\",\n  \"ringik\",\n  \"ringin\",\n  \"ringis\",\n  \"ringkai\",\n  \"ringkas\",\n  \"ringkih\",\n  \"ringkik\",\n  \"ringking\",\n  \"ringkuk\",\n  \"ringkus\",\n  \"ringsek\",\n  \"ringsing\",\n  \"rini\",\n  \"rinitis\",\n  \"rinjing\",\n  \"rinoskop\",\n  \"rintang\",\n  \"rintas\",\n  \"rintih\",\n  \"rintik\",\n  \"rintis\",\n  \"rinyai\",\n  \"riol\",\n  \"ripit\",\n  \"ripta\",\n  \"ripuh\",\n  \"ripuk\",\n  \"ririt\",\n  \"risa\",\n  \"risak\",\n  \"risalah\",\n  \"risau\",\n  \"riset\",\n  \"risi\",\n  \"risik\",\n  \"risiko\",\n  \"risit\",\n  \"riskan\",\n  \"rit\",\n  \"ritel\",\n  \"ritma\",\n  \"ritme\",\n  \"ritmis\",\n  \"ritual\",\n  \"ritul\",\n  \"ritus\",\n  \"riuh\",\n  \"riuk\",\n  \"riung\",\n  \"rival\",\n  \"rivalitas\",\n  \"riwan\",\n  \"riwayat\",\n  \"robak-rabik\",\n  \"robat-rabit\",\n  \"robek\",\n  \"roboh\",\n  \"robok\",\n  \"robot\",\n  \"robotika\",\n  \"rocet\",\n  \"roda\",\n  \"rodan\",\n  \"rodat\",\n  \"rodensial\",\n  \"rodentisida\",\n  \"rodi\",\n  \"rodium\",\n  \"rodok\",\n  \"rodolit\",\n  \"rodong\",\n  \"roga\",\n  \"rogoh\",\n  \"rogok\",\n  \"rogol\",\n  \"roh\",\n  \"rohani\",\n  \"rohaniah\",\n  \"rohmat\",\n  \"rohulkudus\",\n  \"roi\",\n  \"rojeng\",\n  \"rojol\",\n  \"rok\",\n  \"rokade\",\n  \"roker\",\n  \"roket\",\n  \"roki\",\n  \"rokok\",\n  \"rol\",\n  \"rolet\",\n  \"rolpres\",\n  \"roma\",\n  \"roman\",\n  \"romanistik\",\n  \"romansa\",\n  \"romantik\",\n  \"romantika\",\n  \"romantikus\",\n  \"romantis\",\n  \"romantisisme\",\n  \"romawi\",\n  \"rombak\",\n  \"rombang-rambing\",\n  \"rombeng\",\n  \"rombik\",\n  \"rombohedron\",\n  \"romboid\",\n  \"rombok\",\n  \"rombong\",\n  \"rombus\",\n  \"romet\",\n  \"romok\",\n  \"romol-romol\",\n  \"romong\",\n  \"rompak\",\n  \"rompal\",\n  \"rompang\",\n  \"rompeng\",\n  \"rompes\",\n  \"rompi\",\n  \"rompoh\",\n  \"rompok\",\n  \"rompong\",\n  \"rompyok\",\n  \"romsus\",\n  \"romusa\",\n  \"rona\",\n  \"ronce\",\n  \"roncet\",\n  \"ronda\",\n  \"rondah-rondih\",\n  \"ronde\",\n  \"rondo\",\n  \"rondok\",\n  \"roneo\",\n  \"rong\",\n  \"rongak\",\n  \"rongga\",\n  \"ronggang\",\n  \"ronggeng\",\n  \"ronggok\",\n  \"ronggong\",\n  \"rongkoh\",\n  \"rongkok\",\n  \"rongkol\",\n  \"rongkong\",\n  \"rongos\",\n  \"rongrong\",\n  \"rongseng\",\n  \"rongsok\",\n  \"ronta\",\n  \"rontek\",\n  \"rontgen\",\n  \"rontok\",\n  \"ronyeh\",\n  \"ronyok\",\n  \"ropak-rapik\",\n  \"rorehe\",\n  \"rorod\",\n  \"ros\",\n  \"rosario\",\n  \"rosbang\",\n  \"rosela\",\n  \"roseng\",\n  \"roseola\",\n  \"roset\",\n  \"rosin\",\n  \"rosok\",\n  \"rosot\",\n  \"rotan\",\n  \"rotasi\",\n  \"rotator\",\n  \"roti\",\n  \"rotograf\",\n  \"rotok\",\n  \"rowa\",\n  \"rowot\",\n  \"royak\",\n  \"royal\",\n  \"royalti\",\n  \"royan\",\n  \"royemen\",\n  \"royer\",\n  \"royong\",\n  \"rua\",\n  \"ruadat\",\n  \"ruah\",\n  \"ruai\",\n  \"ruak\",\n  \"ruam\",\n  \"ruang\",\n  \"ruap\",\n  \"ruas\",\n  \"ruat\",\n  \"ruaya\",\n  \"ruba-ruba\",\n  \"rubah\",\n  \"rubai\",\n  \"rubaiat\",\n  \"ruban\",\n  \"rubanat\",\n  \"rubel\",\n  \"rubela\",\n  \"rubeola\",\n  \"rubiah\",\n  \"rubidium\",\n  \"rubik\",\n  \"rubin\",\n  \"rubing\",\n  \"rubrik\",\n  \"rubu\",\n  \"rubung\",\n  \"rucah\",\n  \"rudah\",\n  \"rudal\",\n  \"rudapaksa\",\n  \"rudi\",\n  \"rudimen\",\n  \"rudin\",\n  \"rudu\",\n  \"rudus\",\n  \"rugbi\",\n  \"rugi\",\n  \"ruh\",\n  \"ruhbahnat\",\n  \"ruhban\",\n  \"ruhbanat\",\n  \"ruhbaniat\",\n  \"ruilslag\",\n  \"ruing\",\n  \"ruit\",\n  \"rujah\",\n  \"rujak\",\n  \"ruji\",\n  \"rujuk\",\n  \"rukam\",\n  \"rukhsah\",\n  \"rukiah\",\n  \"ruko\",\n  \"ruku\",\n  \"rukuh\",\n  \"rukuk\",\n  \"rukun\",\n  \"rukyat\",\n  \"rukyatulhilal\",\n  \"rum\",\n  \"rumah\",\n  \"rumal\",\n  \"rumba\",\n  \"rumbah\",\n  \"rumbai\",\n  \"rumbia\",\n  \"rumbing\",\n  \"rumbu\",\n  \"rumen\",\n  \"rumenia\",\n  \"rumi\",\n  \"rumin\",\n  \"ruminansi\",\n  \"ruminansia\",\n  \"rumit\",\n  \"rumor\",\n  \"rumpakan\",\n  \"rumpang\",\n  \"rumpi\",\n  \"rumpil\",\n  \"rumpon\",\n  \"rumpun\",\n  \"rumput\",\n  \"rumrum\",\n  \"rumuk\",\n  \"rumung\",\n  \"rumus\",\n  \"runcing\",\n  \"runcit\",\n  \"runding\",\n  \"rundu-rundu\",\n  \"runduk\",\n  \"rundung\",\n  \"rungau\",\n  \"runggas\",\n  \"runggu\",\n  \"runggu-rangga\",\n  \"rungguh\",\n  \"runggut\",\n  \"rungkau\",\n  \"rungkuh\",\n  \"rungkun\",\n  \"rungkup\",\n  \"rungu\",\n  \"rungus\",\n  \"rungut\",\n  \"runjam\",\n  \"runjang\",\n  \"runjau\",\n  \"runjung\",\n  \"runtai\",\n  \"runtang-runtung\",\n  \"runtas\",\n  \"runti\",\n  \"runtih\",\n  \"runtuh\",\n  \"runtun\",\n  \"runtut\",\n  \"runut\",\n  \"runyam\",\n  \"runyut\",\n  \"ruok\",\n  \"rupa\",\n  \"rupee\",\n  \"rupiah\",\n  \"rurut\",\n  \"rusa\",\n  \"rusak\",\n  \"rusuh\",\n  \"rusuk\",\n  \"rutab\",\n  \"rute\",\n  \"rutenium\",\n  \"ruterfordium\",\n  \"rutin\",\n  \"rutuk\",\n  \"rutup\",\n  \"ruwah\",\n  \"ruwat\",\n  \"ruwet\",\n  \"ruyak\",\n  \"ruyap\",\n  \"ruyung\",\n  \"ruyup\",\n  \"saadah\",\n  \"saadin\",\n  \"saanen\",\n  \"saat\",\n  \"sab-sab\",\n  \"saba\",\n  \"sabah\",\n  \"sabak\",\n  \"saban\",\n  \"sabana\",\n  \"sabang\",\n  \"sabar\",\n  \"sabas\",\n  \"sabasani\",\n  \"sabat\",\n  \"sabatikal\",\n  \"sabda\",\n  \"sabel\",\n  \"saben\",\n  \"sabet\",\n  \"sabi\",\n  \"sabil\",\n  \"sabilillah\",\n  \"sabit\",\n  \"sabitah\",\n  \"sableng\",\n  \"sablon\",\n  \"sabo\",\n  \"sabot\",\n  \"sabotase\",\n  \"sabsab\",\n  \"sabtu\",\n  \"sabuk\",\n  \"sabun\",\n  \"sabung\",\n  \"sabur\",\n  \"sabut\",\n  \"sad\",\n  \"sadah\",\n  \"sadai\",\n  \"sadak\",\n  \"sadang\",\n  \"sadap\",\n  \"sadar\",\n  \"sadariah\",\n  \"sadarulkalam\",\n  \"sadarusalam\",\n  \"sadau\",\n  \"sadel\",\n  \"sadik\",\n  \"sadin\",\n  \"sading\",\n  \"sadir\",\n  \"sadis\",\n  \"sadisme\",\n  \"sadistis\",\n  \"sado\",\n  \"sadrah\",\n  \"sadran\",\n  \"sadu\",\n  \"sadur\",\n  \"saf\",\n  \"safa\",\n  \"safar\",\n  \"safari\",\n  \"safi\",\n  \"safih\",\n  \"safinah\",\n  \"safinatunajah\",\n  \"safir\",\n  \"safrah\",\n  \"safron\",\n  \"safsaf\",\n  \"safsah\",\n  \"saga\",\n  \"sagai\",\n  \"sagang\",\n  \"sagar\",\n  \"sagitarius\",\n  \"sagon\",\n  \"sagu\",\n  \"saguer\",\n  \"sagur\",\n  \"sah\",\n  \"sahabat\",\n  \"sahaja\",\n  \"saham\",\n  \"sahan\",\n  \"sahang\",\n  \"sahap\",\n  \"sahara\",\n  \"saharah\",\n  \"sahaya\",\n  \"sahayanda\",\n  \"sahda\",\n  \"sahdu\",\n  \"sahi\",\n  \"sahib\",\n  \"sahibulbait\",\n  \"sahibulhajat\",\n  \"sahibulhikayat\",\n  \"sahifah\",\n  \"sahih\",\n  \"sahir\",\n  \"sahkan\",\n  \"sahmura\",\n  \"sahur\",\n  \"sahut\",\n  \"sai\",\n  \"saif\",\n  \"sailan\",\n  \"sailo\",\n  \"saing\",\n  \"sains\",\n  \"saintis\",\n  \"sair\",\n  \"sais\",\n  \"saja\",\n  \"sajadah\",\n  \"sajak\",\n  \"sajang\",\n  \"sajen\",\n  \"saji\",\n  \"sak\",\n  \"saka\",\n  \"sakai\",\n  \"sakal\",\n  \"sakang\",\n  \"sakap\",\n  \"sakar\",\n  \"sakarida\",\n  \"sakarimeter\",\n  \"sakarin\",\n  \"sakarosa\",\n  \"sakat\",\n  \"sake\",\n  \"sakelar\",\n  \"sakelek\",\n  \"sakhawat\",\n  \"sakhi\",\n  \"sakhrat\",\n  \"sakhsi\",\n  \"saki\",\n  \"sakinah\",\n  \"saking\",\n  \"sakit\",\n  \"saklek\",\n  \"sakral\",\n  \"sakramen\",\n  \"sakramental\",\n  \"sakramentalia\",\n  \"sakratulmaut\",\n  \"sakrilegi\",\n  \"sakristi\",\n  \"sakrokoksigeal\",\n  \"sakrolumbal\",\n  \"sakrum\",\n  \"saksama\",\n  \"saksang\",\n  \"saksi\",\n  \"saksofon\",\n  \"sakti\",\n  \"saku\",\n  \"sakura\",\n  \"sal\",\n  \"sala\",\n  \"salaf\",\n  \"salah\",\n  \"salai\",\n  \"salak\",\n  \"salam\",\n  \"salang\",\n  \"salar\",\n  \"salaris\",\n  \"salasal\",\n  \"salat\",\n  \"salatin\",\n  \"saldo\",\n  \"sale\",\n  \"saleh\",\n  \"salem\",\n  \"salep\",\n  \"sali\",\n  \"salib\",\n  \"salihah\",\n  \"salim\",\n  \"salin\",\n  \"salina\",\n  \"salindia\",\n  \"salindra\",\n  \"saling\",\n  \"salinisasi\",\n  \"salinitas\",\n  \"salinometer\",\n  \"salip\",\n  \"salir\",\n  \"salira\",\n  \"salivasi\",\n  \"salju\",\n  \"salmon\",\n  \"salmonela\",\n  \"salon\",\n  \"salpeter\",\n  \"salping\",\n  \"saltasi\",\n  \"salto\",\n  \"saluir\",\n  \"saluk\",\n  \"salung\",\n  \"salur\",\n  \"salut\",\n  \"salvarsan\",\n  \"salvo\",\n  \"sama\",\n  \"samad\",\n  \"samak\",\n  \"saman\",\n  \"samanera\",\n  \"samaniah\",\n  \"samapta\",\n  \"samar\",\n  \"samara\",\n  \"samarium\",\n  \"samas\",\n  \"samawi\",\n  \"samba\",\n  \"sambal\",\n  \"sambalewa\",\n  \"sambang\",\n  \"sambangan\",\n  \"sambar\",\n  \"sambat\",\n  \"sambau\",\n  \"samben\",\n  \"sambet\",\n  \"sambi\",\n  \"sambil\",\n  \"sambiloto\",\n  \"sambit\",\n  \"sambuk\",\n  \"sambung\",\n  \"sambur\",\n  \"sambut\",\n  \"sami\",\n  \"samidra\",\n  \"samijaga\",\n  \"samin\",\n  \"samir\",\n  \"samo-samo\",\n  \"samovar\",\n  \"sampa\",\n  \"sampah\",\n  \"sampai\",\n  \"sampak\",\n  \"sampakan\",\n  \"sampan\",\n  \"sampang\",\n  \"sampanye\",\n  \"sampar\",\n  \"samparan\",\n  \"sampat\",\n  \"sampean\",\n  \"sampek\",\n  \"sampel\",\n  \"samper\",\n  \"sampeyan\",\n  \"sampil\",\n  \"sampilik\",\n  \"samping\",\n  \"sampir\",\n  \"sampling\",\n  \"samplok\",\n  \"sampo\",\n  \"sampu\",\n  \"sampuk\",\n  \"sampul\",\n  \"sampur\",\n  \"samsak\",\n  \"samsam\",\n  \"samseng\",\n  \"samsir\",\n  \"samsiti\",\n  \"samsu\",\n  \"samudra\",\n  \"samuh\",\n  \"samum\",\n  \"samun\",\n  \"samurai\",\n  \"sana\",\n  \"sanad\",\n  \"sanak\",\n  \"sanat\",\n  \"sanatogen\",\n  \"sanatorium\",\n  \"sanatulhijriah\",\n  \"sanatulmiladiah\",\n  \"sanawiah\",\n  \"sanca\",\n  \"sanda\",\n  \"sandal\",\n  \"sandang\",\n  \"sandar\",\n  \"sandel\",\n  \"sandera\",\n  \"sandi\",\n  \"sanding\",\n  \"sandiwara\",\n  \"sando\",\n  \"sandung\",\n  \"sandungan\",\n  \"sanering\",\n  \"sang\",\n  \"sanga\",\n  \"sangai\",\n  \"sangan\",\n  \"sangar\",\n  \"sangat\",\n  \"sangau\",\n  \"sangga\",\n  \"sanggah\",\n  \"sanggam\",\n  \"sanggama\",\n  \"sanggan\",\n  \"sanggang\",\n  \"sanggar\",\n  \"sanggarunggi\",\n  \"sanggat\",\n  \"sanggep\",\n  \"sanggerah\",\n  \"sangging\",\n  \"sanggit\",\n  \"sanggrah\",\n  \"sanggraloka\",\n  \"sanggul\",\n  \"sanggup\",\n  \"sanggurdi\",\n  \"sangha\",\n  \"sangih\",\n  \"sangir\",\n  \"sangit\",\n  \"sangka\",\n  \"sangkak\",\n  \"sangkakala\",\n  \"sangkal\",\n  \"sangkala\",\n  \"sangkan\",\n  \"sangkar\",\n  \"sangkil\",\n  \"sangku\",\n  \"sangkul\",\n  \"sangkur\",\n  \"sangkuriang\",\n  \"sangkut\",\n  \"sangkut-paut\",\n  \"sangli\",\n  \"sangling\",\n  \"sanglir\",\n  \"sangon\",\n  \"sangrai\",\n  \"sangsai\",\n  \"sangsam\",\n  \"sangsang\",\n  \"sangsi\",\n  \"sangu\",\n  \"sanguifikasi\",\n  \"sangulun\",\n  \"sangyang\",\n  \"sani\",\n  \"sanik\",\n  \"sanitas\",\n  \"sanitasi\",\n  \"saniter\",\n  \"sanjai\",\n  \"sanjak\",\n  \"sanjang\",\n  \"sanjung\",\n  \"sanksi\",\n  \"sano\",\n  \"sansai\",\n  \"sanseviera\",\n  \"sanskerta\",\n  \"santa\",\n  \"santai\",\n  \"santak\",\n  \"santam\",\n  \"santan\",\n  \"santap\",\n  \"santase\",\n  \"santau\",\n  \"santer\",\n  \"santet\",\n  \"santiaji\",\n  \"santing\",\n  \"santir\",\n  \"santo\",\n  \"santonin\",\n  \"santri\",\n  \"santun\",\n  \"santung\",\n  \"sanubari\",\n  \"sap\",\n  \"sapa\",\n  \"sapai\",\n  \"saparantu\",\n  \"sapat\",\n  \"sapau\",\n  \"sapersi\",\n  \"sapi\",\n  \"sapih\",\n  \"sapir\",\n  \"sapit\",\n  \"sapogenin\",\n  \"saponin\",\n  \"saprofit\",\n  \"sapta\",\n  \"saptadarma\",\n  \"saptamarga\",\n  \"saptapesona\",\n  \"sapu\",\n  \"saput\",\n  \"saputangan\",\n  \"sar\",\n  \"sara\",\n  \"saradasi\",\n  \"saraf\",\n  \"sarak\",\n  \"saran\",\n  \"sarana\",\n  \"sarang\",\n  \"sarangan\",\n  \"sarap\",\n  \"sarasehan\",\n  \"sarat\",\n  \"sarau\",\n  \"sarden\",\n  \"sardencis\",\n  \"sarean\",\n  \"sareh\",\n  \"sarekat\",\n  \"saren\",\n  \"sarengat\",\n  \"sarhad\",\n  \"sari\",\n  \"saridele\",\n  \"sarik\",\n  \"sarikan\",\n  \"saring\",\n  \"sarira\",\n  \"sarirah\",\n  \"sarit\",\n  \"sarjana\",\n  \"sarju\",\n  \"sarkasme\",\n  \"sarkastis\",\n  \"sarkode\",\n  \"sarkoderma\",\n  \"sarkofagus\",\n  \"sarkolema\",\n  \"sarkologi\",\n  \"sarkoma\",\n  \"sarkoplasma\",\n  \"saron\",\n  \"sarsaparila\",\n  \"sartan\",\n  \"saru\",\n  \"saruk\",\n  \"sarung\",\n  \"sarut\",\n  \"sarwa\",\n  \"sasa\",\n  \"sasak\",\n  \"sasakala\",\n  \"sasana\",\n  \"sasando\",\n  \"sasap\",\n  \"sasar\",\n  \"sasau\",\n  \"sasi\",\n  \"sasian\",\n  \"sasis\",\n  \"sasmita\",\n  \"sastra\",\n  \"sasus\",\n  \"sat\",\n  \"satai\",\n  \"satak\",\n  \"satang\",\n  \"satanologi\",\n  \"satar\",\n  \"sate\",\n  \"satelit\",\n  \"satih\",\n  \"satin\",\n  \"satinet\",\n  \"satir\",\n  \"satire\",\n  \"satiris\",\n  \"sato\",\n  \"satori\",\n  \"satpam\",\n  \"satria\",\n  \"satron\",\n  \"satu\",\n  \"saturnus\",\n  \"saturometer\",\n  \"satwa\",\n  \"satyagraha\",\n  \"satyalencana\",\n  \"satyawacana\",\n  \"sau\",\n  \"saudagar\",\n  \"saudara\",\n  \"saudari\",\n  \"sauh\",\n  \"saujana\",\n  \"sauk\",\n  \"saum\",\n  \"sauna\",\n  \"saung\",\n  \"saur\",\n  \"saus\",\n  \"saut\",\n  \"sauvinis\",\n  \"sauvinisme\",\n  \"sauvinistis\",\n  \"saw\",\n  \"sawa\",\n  \"sawab\",\n  \"sawah\",\n  \"sawai\",\n  \"sawala\",\n  \"sawan\",\n  \"sawang\",\n  \"sawangan\",\n  \"sawar\",\n  \"sawat\",\n  \"sawer\",\n  \"sawi\",\n  \"sawit\",\n  \"sawo\",\n  \"sawut\",\n  \"saya\",\n  \"sayak\",\n  \"sayang\",\n  \"sayap\",\n  \"sayat\",\n  \"sayembara\",\n  \"sayet\",\n  \"sayib\",\n  \"sayid\",\n  \"sayidani\",\n  \"sayidi\",\n  \"sayidina\",\n  \"sayu\",\n  \"sayung\",\n  \"sayup\",\n  \"sayur\",\n  \"seba\",\n  \"sebab\",\n  \"sebahat\",\n  \"sebai\",\n  \"sebak\",\n  \"sebal\",\n  \"sebam\",\n  \"sebar\",\n  \"sebarang\",\n  \"sebarau\",\n  \"sebasah\",\n  \"sebat\",\n  \"sebaur\",\n  \"sebekah\",\n  \"sebel\",\n  \"sebelas\",\n  \"sebeng\",\n  \"sebentar\",\n  \"seberang\",\n  \"seberhana\",\n  \"sebet\",\n  \"sebit\",\n  \"seblang\",\n  \"sebrot\",\n  \"sebu\",\n  \"sebuk\",\n  \"sebum\",\n  \"sebun\",\n  \"sebura\",\n  \"seburas\",\n  \"seburu\",\n  \"seburus\",\n  \"seburut\",\n  \"sebut\",\n  \"secang\",\n  \"seceng\",\n  \"secerek\",\n  \"secina\",\n  \"sedahan\",\n  \"sedak\",\n  \"sedam\",\n  \"sedan\",\n  \"sedang\",\n  \"sedap\",\n  \"sedat\",\n  \"sedatif\",\n  \"sedativa\",\n  \"sedawai\",\n  \"sedekah\",\n  \"sedekap\",\n  \"sedelinggam\",\n  \"sedeng\",\n  \"sederhana\",\n  \"sederum\",\n  \"sedia\",\n  \"sediakala\",\n  \"sedih\",\n  \"sedikit\",\n  \"sedimen\",\n  \"sedimentasi\",\n  \"sedimenter\",\n  \"sedingin\",\n  \"sedong\",\n  \"sedot\",\n  \"sedu\",\n  \"seduayah\",\n  \"seduh\",\n  \"sefalopoda\",\n  \"sefalotoraks\",\n  \"seg\",\n  \"sega\",\n  \"segah\",\n  \"segak\",\n  \"segala\",\n  \"segan\",\n  \"seganda\",\n  \"segani\",\n  \"segar\",\n  \"segara\",\n  \"segata\",\n  \"segeger\",\n  \"segeh\",\n  \"segel\",\n  \"segenap\",\n  \"segera\",\n  \"segi\",\n  \"segianya\",\n  \"segitiga\",\n  \"segmen\",\n  \"segmental\",\n  \"segmentasi\",\n  \"segregasi\",\n  \"seguna\",\n  \"seh\",\n  \"seharah\",\n  \"sehat\",\n  \"sehingga\",\n  \"seia\",\n  \"seilometer\",\n  \"sein\",\n  \"seismik\",\n  \"seismograf\",\n  \"seismogram\",\n  \"seismolog\",\n  \"seismologi\",\n  \"seismometer\",\n  \"sejahtera\",\n  \"sejajar\",\n  \"sejak\",\n  \"sejarah\",\n  \"sejarawan\",\n  \"sejari\",\n  \"sejat\",\n  \"sejati\",\n  \"sejingkat\",\n  \"sejuk\",\n  \"sek\",\n  \"seka\",\n  \"sekadar\",\n  \"sekah\",\n  \"sekak\",\n  \"sekakar\",\n  \"sekakmat\",\n  \"sekal\",\n  \"sekala\",\n  \"sekali\",\n  \"sekaligus\",\n  \"sekalipun\",\n  \"sekalor\",\n  \"sekam\",\n  \"sekan\",\n  \"sekang\",\n  \"sekap\",\n  \"sekapar\",\n  \"sekar\",\n  \"sekarang\",\n  \"sekarat\",\n  \"sekat\",\n  \"sekata\",\n  \"sekaten\",\n  \"sekati\",\n  \"sekaut\",\n  \"sekeber\",\n  \"sekebun\",\n  \"sekedeng\",\n  \"sekeduduk\",\n  \"sekedup\",\n  \"sekelat\",\n  \"sekelebatan\",\n  \"sekelian\",\n  \"sekema\",\n  \"sekendal\",\n  \"sekendi\",\n  \"sekengkeng\",\n  \"sekepat\",\n  \"sekeram\",\n  \"sekeri\",\n  \"sekerindangan\",\n  \"sekering\",\n  \"sekesel\",\n  \"seketeng\",\n  \"sekh\",\n  \"sekian\",\n  \"sekilwak\",\n  \"sekip\",\n  \"sekira\",\n  \"sekiram\",\n  \"sekitar\",\n  \"seko\",\n  \"sekoci\",\n  \"sekoi\",\n  \"sekolah\",\n  \"sekon\",\n  \"sekongkol\",\n  \"sekonyong-konyong\",\n  \"sekop\",\n  \"sekopong\",\n  \"sekoteng\",\n  \"sekrap\",\n  \"sekresi\",\n  \"sekret\",\n  \"sekreta\",\n  \"sekretariat\",\n  \"sekretaris\",\n  \"sekretin\",\n  \"sekring\",\n  \"sekrip\",\n  \"sekrup\",\n  \"seks\",\n  \"seksi\",\n  \"seksmaniak\",\n  \"seksolog\",\n  \"seksologi\",\n  \"seksologis\",\n  \"sekstan\",\n  \"sekstet\",\n  \"seksual\",\n  \"seksualitas\",\n  \"sektarian\",\n  \"sektarianisme\",\n  \"sekte\",\n  \"sektor\",\n  \"sektoral\",\n  \"sekuas\",\n  \"sekui\",\n  \"sekul\",\n  \"sekularis\",\n  \"sekularisasi\",\n  \"sekularisme\",\n  \"sekularitas\",\n  \"sekuler\",\n  \"sekulir\",\n  \"sekunar\",\n  \"sekunder\",\n  \"sekunyit\",\n  \"sekuritas\",\n  \"sekuriti\",\n  \"sekutu\",\n  \"sel\",\n  \"sela\",\n  \"selabar\",\n  \"selaber\",\n  \"selaberak\",\n  \"selada\",\n  \"seladang\",\n  \"seladon\",\n  \"selagi\",\n  \"selai\",\n  \"selain\",\n  \"selaju\",\n  \"selak\",\n  \"selaka\",\n  \"selakarang\",\n  \"selaku\",\n  \"selalu\",\n  \"selam\",\n  \"selamat\",\n  \"selamba\",\n  \"selampai\",\n  \"selampe\",\n  \"selampek\",\n  \"selampit\",\n  \"selan\",\n  \"selancak\",\n  \"selancang\",\n  \"selancar\",\n  \"selang\",\n  \"selangat\",\n  \"selangka\",\n  \"selangkang\",\n  \"selangkup\",\n  \"selanting\",\n  \"selap\",\n  \"selapan\",\n  \"selaput\",\n  \"selar\",\n  \"selara\",\n  \"selarak\",\n  \"selaras\",\n  \"selarung\",\n  \"selasa\",\n  \"selasar\",\n  \"selasih\",\n  \"selat\",\n  \"selatan\",\n  \"selawah\",\n  \"selawat\",\n  \"selawe\",\n  \"selaya\",\n  \"selayun\",\n  \"selayur\",\n  \"sele\",\n  \"selebaran\",\n  \"selebran\",\n  \"selebrasi\",\n  \"selebritas\",\n  \"selebriti\",\n  \"selebu\",\n  \"seleder\",\n  \"selederi\",\n  \"seledri\",\n  \"seleguri\",\n  \"selekeh\",\n  \"selekoh\",\n  \"selekor\",\n  \"seleksi\",\n  \"selekta\",\n  \"selektif\",\n  \"selektivitas\",\n  \"seleler\",\n  \"selembana\",\n  \"selembubu\",\n  \"selempada\",\n  \"selempang\",\n  \"selempukau\",\n  \"selempuri\",\n  \"selendang\",\n  \"selender\",\n  \"selendro\",\n  \"selenggara\",\n  \"selengkatan\",\n  \"selenium\",\n  \"selenografi\",\n  \"selenologi\",\n  \"selentang-selenting\",\n  \"selentik\",\n  \"selenting\",\n  \"seleo\",\n  \"selepa\",\n  \"selepang\",\n  \"selepat\",\n  \"selepe\",\n  \"seleper\",\n  \"selepetan\",\n  \"selepi\",\n  \"selera\",\n  \"selerak\",\n  \"selerang\",\n  \"seleret\",\n  \"selesa\",\n  \"selesai\",\n  \"selesma\",\n  \"seletuk\",\n  \"seleweng\",\n  \"selia\",\n  \"seliap\",\n  \"selibat\",\n  \"selibu\",\n  \"selibut\",\n  \"selidik\",\n  \"seligi\",\n  \"seligit\",\n  \"selimang\",\n  \"selimpang\",\n  \"selimpat\",\n  \"selimut\",\n  \"selinap\",\n  \"selindung\",\n  \"seling\",\n  \"selingar\",\n  \"selingkit\",\n  \"selingkuh\",\n  \"selingkup\",\n  \"selip\",\n  \"selipar\",\n  \"selir\",\n  \"selira\",\n  \"selirak\",\n  \"selirat\",\n  \"seliri\",\n  \"selisih\",\n  \"selisik\",\n  \"selisip\",\n  \"selisir\",\n  \"selit\",\n  \"seliwer\",\n  \"selo\",\n  \"selofan\",\n  \"selok\",\n  \"seloka\",\n  \"selokan\",\n  \"seloki\",\n  \"selom\",\n  \"selomot\",\n  \"selompret\",\n  \"selon\",\n  \"selonding\",\n  \"selong\",\n  \"selongkar\",\n  \"selongsong\",\n  \"selonjor\",\n  \"selonong\",\n  \"selop\",\n  \"seloroh\",\n  \"selot\",\n  \"seloyak\",\n  \"seloyong\",\n  \"selter\",\n  \"seluang\",\n  \"seluar\",\n  \"selubung\",\n  \"seludang\",\n  \"seludu\",\n  \"seluduk\",\n  \"seludup\",\n  \"selui\",\n  \"seluk\",\n  \"seluk-beluk\",\n  \"selukat\",\n  \"selukung\",\n  \"seluler\",\n  \"seluloid\",\n  \"selulosa\",\n  \"selulup\",\n  \"selulur\",\n  \"selumar\",\n  \"selumbar\",\n  \"selumbari\",\n  \"selumbat\",\n  \"selumu\",\n  \"selumur\",\n  \"seluncur\",\n  \"selundat\",\n  \"selundup\",\n  \"selungkang\",\n  \"selungkup\",\n  \"selup\",\n  \"selupan\",\n  \"selupat\",\n  \"selurah\",\n  \"seluru\",\n  \"seluruh\",\n  \"selusuh\",\n  \"selusup\",\n  \"selusur\",\n  \"selut\",\n  \"sema\",\n  \"semadi\",\n  \"semafor\",\n  \"semah\",\n  \"semai\",\n  \"semaja\",\n  \"semak\",\n  \"semalu\",\n  \"semambu\",\n  \"semampai\",\n  \"semampang\",\n  \"semampat\",\n  \"seman\",\n  \"semanak\",\n  \"semandan\",\n  \"semandarasa\",\n  \"semandarasah\",\n  \"semandera\",\n  \"semang\",\n  \"semangat\",\n  \"semanggi\",\n  \"semangka\",\n  \"semangkok\",\n  \"semangkuk\",\n  \"semantan\",\n  \"semantik\",\n  \"semantis\",\n  \"semantung\",\n  \"semaput\",\n  \"semara\",\n  \"semarai\",\n  \"semarak\",\n  \"semaram\",\n  \"semarmendem\",\n  \"semat\",\n  \"semata\",\n  \"semawang\",\n  \"semawar\",\n  \"semaya\",\n  \"semayam\",\n  \"semayi\",\n  \"sembab\",\n  \"sembabat\",\n  \"sembada\",\n  \"sembagi\",\n  \"sembah\",\n  \"sembahyang\",\n  \"sembai\",\n  \"sembak\",\n  \"sembam\",\n  \"sembap\",\n  \"sembar\",\n  \"sembarang\",\n  \"sembari\",\n  \"sembat\",\n  \"sembawang\",\n  \"sembayan\",\n  \"sembelih\",\n  \"sembelit\",\n  \"sember\",\n  \"semberap\",\n  \"semberip\",\n  \"sembesi\",\n  \"sembeta\",\n  \"sembiang\",\n  \"sembilan\",\n  \"sembilang\",\n  \"sembilik\",\n  \"sembilu\",\n  \"sembir\",\n  \"sembirat\",\n  \"semboyan\",\n  \"sembrani\",\n  \"sembrono\",\n  \"sembuang\",\n  \"sembuh\",\n  \"sembul\",\n  \"sembung\",\n  \"sembunyi\",\n  \"sembur\",\n  \"semburat\",\n  \"semburit\",\n  \"semecah\",\n  \"semedera\",\n  \"semejana\",\n  \"semeleh\",\n  \"sememeh\",\n  \"semen\",\n  \"semena\",\n  \"semenanjung\",\n  \"semenda\",\n  \"semendarasa\",\n  \"semenggah\",\n  \"semenjak\",\n  \"semenjana\",\n  \"sementang\",\n  \"sementara\",\n  \"sementasi\",\n  \"sementelah\",\n  \"sementung\",\n  \"semerawang\",\n  \"semerbak\",\n  \"semerdanta\",\n  \"semesta\",\n  \"semester\",\n  \"semi\",\n  \"semiang\",\n  \"semidiurnal\",\n  \"semifinal\",\n  \"semifinalis\",\n  \"semiidiom\",\n  \"semikonduktor\",\n  \"semilat\",\n  \"seminai\",\n  \"seminar\",\n  \"seminari\",\n  \"seminaris\",\n  \"seminau\",\n  \"semiologi\",\n  \"semiotik\",\n  \"semiotika\",\n  \"semipermanen\",\n  \"semir\",\n  \"semitisme\",\n  \"semivokal\",\n  \"semok\",\n  \"sempada\",\n  \"sempadan\",\n  \"sempak\",\n  \"sempal\",\n  \"sempalai\",\n  \"sempana\",\n  \"sempang\",\n  \"sempat\",\n  \"sempelah\",\n  \"sempena\",\n  \"sempil\",\n  \"sempit\",\n  \"semplak\",\n  \"sempoyong\",\n  \"sempoyongan\",\n  \"semprit\",\n  \"semprong\",\n  \"semprot\",\n  \"sempul\",\n  \"sempur\",\n  \"sempuras\",\n  \"sempurna\",\n  \"semrawut\",\n  \"semringah\",\n  \"semsem\",\n  \"semu\",\n  \"semua\",\n  \"semunding\",\n  \"semunian\",\n  \"semur\",\n  \"semut\",\n  \"sen\",\n  \"sena\",\n  \"senak\",\n  \"senam\",\n  \"senamaki\",\n  \"senandika\",\n  \"senandung\",\n  \"senang\",\n  \"senangin\",\n  \"senantan\",\n  \"senantiasa\",\n  \"senapan\",\n  \"senapati\",\n  \"senar\",\n  \"senarai\",\n  \"senario\",\n  \"senat\",\n  \"senator\",\n  \"senawan\",\n  \"senawar\",\n  \"senawat\",\n  \"senawi\",\n  \"senda\",\n  \"sendal\",\n  \"sendalu\",\n  \"sendam\",\n  \"sendang\",\n  \"sendar\",\n  \"sendarat\",\n  \"sendaren\",\n  \"sendat\",\n  \"sendawa\",\n  \"sendayan\",\n  \"sendayang\",\n  \"sendel\",\n  \"sendeng\",\n  \"sender\",\n  \"senderik\",\n  \"senderung\",\n  \"senderut\",\n  \"sendi\",\n  \"sending\",\n  \"sendiri\",\n  \"sendocong\",\n  \"sendok\",\n  \"sendon\",\n  \"sendorong\",\n  \"sendratari\",\n  \"sendu\",\n  \"senduduk\",\n  \"senduk\",\n  \"senen\",\n  \"senewen\",\n  \"seng\",\n  \"sengaja\",\n  \"sengal\",\n  \"sengam\",\n  \"sengangar\",\n  \"sengangkar\",\n  \"sengap\",\n  \"sengar\",\n  \"sengar-sengir\",\n  \"sengarat\",\n  \"sengaring\",\n  \"sengat\",\n  \"sengau\",\n  \"sengelat\",\n  \"senget\",\n  \"senggak\",\n  \"senggang\",\n  \"senggara\",\n  \"senggat\",\n  \"senggau\",\n  \"senggayut\",\n  \"senggerahan\",\n  \"senggeruk\",\n  \"sengget\",\n  \"senggiling\",\n  \"senggol\",\n  \"senggora\",\n  \"senggugu\",\n  \"senggugut\",\n  \"sengguk\",\n  \"senggulung\",\n  \"senggut\",\n  \"sengih\",\n  \"sengingih\",\n  \"sengir\",\n  \"sengit\",\n  \"sengkak\",\n  \"sengkal\",\n  \"sengkalan\",\n  \"sengkang\",\n  \"sengkar\",\n  \"sengkarut\",\n  \"sengkawang\",\n  \"sengkayan\",\n  \"sengked\",\n  \"sengkedan\",\n  \"sengkek\",\n  \"sengkela\",\n  \"sengkelang\",\n  \"sengkelat\",\n  \"sengkeling\",\n  \"sengkelit\",\n  \"sengkenit\",\n  \"sengker\",\n  \"sengketa\",\n  \"sengkil\",\n  \"sengkilit\",\n  \"sengkuang\",\n  \"sengkuap\",\n  \"sengon\",\n  \"sengsai\",\n  \"sengsam\",\n  \"sengsara\",\n  \"sengsem\",\n  \"sengsurit\",\n  \"senguk\",\n  \"sengungut\",\n  \"sengut\",\n  \"seni\",\n  \"senigai\",\n  \"senil\",\n  \"senilitas\",\n  \"seniman\",\n  \"senin\",\n  \"senior\",\n  \"senioritas\",\n  \"senja\",\n  \"senjak\",\n  \"senjang\",\n  \"senjata\",\n  \"senjolong\",\n  \"senjong\",\n  \"senohong\",\n  \"senonoh\",\n  \"senoyong\",\n  \"sensasi\",\n  \"sensasional\",\n  \"sensibel\",\n  \"sensibilitas\",\n  \"sensitif\",\n  \"sensitivitas\",\n  \"sensor\",\n  \"sensoris\",\n  \"sensual\",\n  \"sensualisme\",\n  \"sensualitas\",\n  \"sensur\",\n  \"sensus\",\n  \"senta\",\n  \"sentada\",\n  \"sentadu\",\n  \"sentagi\",\n  \"sentak\",\n  \"sentaka\",\n  \"sental\",\n  \"sentali\",\n  \"sentana\",\n  \"sentap\",\n  \"sentara\",\n  \"senteng\",\n  \"senter\",\n  \"senterpor\",\n  \"senti\",\n  \"sentiare\",\n  \"sentiasa\",\n  \"sentigram\",\n  \"sentil\",\n  \"sentiliter\",\n  \"sentimen\",\n  \"sentimental\",\n  \"sentimentalitas\",\n  \"sentimentil\",\n  \"sentimeter\",\n  \"senting\",\n  \"sentiong\",\n  \"sentiung\",\n  \"sentol\",\n  \"sentong\",\n  \"sentosa\",\n  \"sentra\",\n  \"sentral\",\n  \"sentralisasi\",\n  \"sentralistis\",\n  \"sentrifugal\",\n  \"sentripetal\",\n  \"sentrum\",\n  \"sentuh\",\n  \"sentuk\",\n  \"sentul\",\n  \"sentung\",\n  \"senu\",\n  \"senuh\",\n  \"senuk\",\n  \"senunggang\",\n  \"senur\",\n  \"senyampang\",\n  \"senyap\",\n  \"senyar\",\n  \"senyawa\",\n  \"senyum\",\n  \"senyur\",\n  \"seok\",\n  \"seolah-olah\",\n  \"sep\",\n  \"sepada\",\n  \"sepah\",\n  \"sepai\",\n  \"sepak\",\n  \"sepakat\",\n  \"sepal\",\n  \"sepala-pala\",\n  \"sepam\",\n  \"sepan\",\n  \"sepanar\",\n  \"sepandri\",\n  \"sepang\",\n  \"sepangkalan\",\n  \"separasi\",\n  \"separatis\",\n  \"separatisme\",\n  \"separbang\",\n  \"sepasin\",\n  \"sepat\",\n  \"sepatbor\",\n  \"sepatu\",\n  \"sepeda\",\n  \"sepedas\",\n  \"sepegoh\",\n  \"sepekuk\",\n  \"sepel\",\n  \"sepele\",\n  \"sepeling\",\n  \"sepen\",\n  \"sepenuh\",\n  \"seperah\",\n  \"seperantu\",\n  \"sepersi\",\n  \"seperti\",\n  \"sepesan\",\n  \"sepet\",\n  \"sepetir\",\n  \"sepi\",\n  \"sepih\",\n  \"sepiker\",\n  \"sepir\",\n  \"sepit\",\n  \"seples\",\n  \"sepoi\",\n  \"seprai\",\n  \"seprei\",\n  \"sepsis\",\n  \"september\",\n  \"septima\",\n  \"septum\",\n  \"sepuh\",\n  \"sepuit\",\n  \"sepuk\",\n  \"sepukal\",\n  \"sepul\",\n  \"sepulih\",\n  \"sepuluh\",\n  \"sepupu\",\n  \"sepur\",\n  \"seput\",\n  \"sera\",\n  \"serabi\",\n  \"serabut\",\n  \"serabutan\",\n  \"seraga\",\n  \"seragam\",\n  \"serah\",\n  \"serahi\",\n  \"serai\",\n  \"serak\",\n  \"serakah\",\n  \"seram\",\n  \"serama\",\n  \"serambi\",\n  \"serampang\",\n  \"serampin\",\n  \"serampu\",\n  \"serampuk\",\n  \"seran\",\n  \"serana\",\n  \"seranah\",\n  \"serandang\",\n  \"serandau\",\n  \"serandib\",\n  \"serandung\",\n  \"serang\",\n  \"serangga\",\n  \"serangguh\",\n  \"seranggung\",\n  \"serangkak\",\n  \"serangsang\",\n  \"serani\",\n  \"seranograf\",\n  \"seranometer\",\n  \"seranta\",\n  \"serap\",\n  \"serapah\",\n  \"serapat\",\n  \"serasa\",\n  \"serasah\",\n  \"serasi\",\n  \"serat\",\n  \"seratah\",\n  \"serati\",\n  \"seratung\",\n  \"serau\",\n  \"seraumeter\",\n  \"seraut\",\n  \"serawak\",\n  \"serawal\",\n  \"seraya\",\n  \"serba\",\n  \"serbaada\",\n  \"serbaakal\",\n  \"serbabaru\",\n  \"serbabisa\",\n  \"serbadua\",\n  \"serbaemas\",\n  \"serbaguna\",\n  \"serbah-serbih\",\n  \"serbaindah\",\n  \"serbak\",\n  \"serbakeemasan\",\n  \"serbakurang\",\n  \"serbamacam\",\n  \"serban\",\n  \"serbaneka\",\n  \"serbaputih\",\n  \"serbarumah\",\n  \"serbasalah\",\n  \"serbasama\",\n  \"serbasusah\",\n  \"serbat\",\n  \"serbausaha\",\n  \"serbet\",\n  \"serbi\",\n  \"serbu\",\n  \"serbuk\",\n  \"serdadu\",\n  \"serdak\",\n  \"serdam\",\n  \"serdang\",\n  \"serdawa\",\n  \"serdi\",\n  \"serdih\",\n  \"serealia\",\n  \"serealin\",\n  \"sereat\",\n  \"serebral\",\n  \"serebrospinal\",\n  \"serebrum\",\n  \"seregang\",\n  \"sereh\",\n  \"serembah-serembih\",\n  \"seremban\",\n  \"seremoni\",\n  \"seremonial\",\n  \"serempak\",\n  \"serempet\",\n  \"serempu\",\n  \"serendah\",\n  \"serendeng\",\n  \"sereng\",\n  \"serengam\",\n  \"serengeh\",\n  \"serengit\",\n  \"serenjak\",\n  \"serenjang\",\n  \"serenta\",\n  \"serentak\",\n  \"serep\",\n  \"seresin\",\n  \"seret\",\n  \"sergah\",\n  \"sergam\",\n  \"sergap\",\n  \"sergut\",\n  \"seri\",\n  \"serial\",\n  \"seriap\",\n  \"seriat\",\n  \"seriawan\",\n  \"seribulan\",\n  \"seriding\",\n  \"serigading\",\n  \"serigala\",\n  \"serigunting\",\n  \"serik\",\n  \"serikat\",\n  \"serikaya\",\n  \"serimala\",\n  \"serimpet\",\n  \"serimpi\",\n  \"serimpung\",\n  \"serindai\",\n  \"serindit\",\n  \"sering\",\n  \"seringai\",\n  \"seringing\",\n  \"seriosa\",\n  \"serit\",\n  \"serium\",\n  \"serius\",\n  \"serkah\",\n  \"serkai\",\n  \"serkap\",\n  \"serkup\",\n  \"serlah\",\n  \"serling\",\n  \"sermangin\",\n  \"sermet\",\n  \"sernak\",\n  \"sero\",\n  \"serobeh\",\n  \"serobok\",\n  \"serobot\",\n  \"serografi\",\n  \"seroja\",\n  \"serok\",\n  \"serologi\",\n  \"serombong\",\n  \"serompok\",\n  \"serondeng\",\n  \"serondok\",\n  \"serondol\",\n  \"serondong\",\n  \"serong\",\n  \"seronok\",\n  \"seroplastik\",\n  \"seropot\",\n  \"serositas\",\n  \"serosoh\",\n  \"serot\",\n  \"seroyong\",\n  \"serpentina\",\n  \"serpih\",\n  \"sersan\",\n  \"serse\",\n  \"sersi\",\n  \"serta\",\n  \"sertifikasi\",\n  \"sertifikat\",\n  \"sertu\",\n  \"seru\",\n  \"seruak\",\n  \"seruas\",\n  \"seruda\",\n  \"serudi\",\n  \"seruduk\",\n  \"serugah\",\n  \"serugat\",\n  \"seruh\",\n  \"serui\",\n  \"seruit\",\n  \"seruk\",\n  \"serul\",\n  \"seruling\",\n  \"serum\",\n  \"serumat\",\n  \"serumen\",\n  \"serumpu\",\n  \"serun\",\n  \"serunai\",\n  \"serunda\",\n  \"serundang\",\n  \"serundeng\",\n  \"seruni\",\n  \"serunjang\",\n  \"seruntun\",\n  \"serupih\",\n  \"seruput\",\n  \"seruru\",\n  \"serut\",\n  \"serutu\",\n  \"seruyuk\",\n  \"servis\",\n  \"sesah\",\n  \"sesai\",\n  \"sesaing\",\n  \"sesajen\",\n  \"sesak\",\n  \"sesal\",\n  \"sesam\",\n  \"sesamoid\",\n  \"sesanti\",\n  \"sesap\",\n  \"sesar\",\n  \"sesat\",\n  \"sesawi\",\n  \"sesenap\",\n  \"seser\",\n  \"sesi\",\n  \"sesil\",\n  \"sesira\",\n  \"sesium\",\n  \"sesoca\",\n  \"sespan\",\n  \"sestina\",\n  \"sesuai\",\n  \"sesuatu\",\n  \"sesumbar\",\n  \"set\",\n  \"seta\",\n  \"setabelan\",\n  \"setagen\",\n  \"setai\",\n  \"setaka\",\n  \"setakona\",\n  \"setal\",\n  \"setambun\",\n  \"setan\",\n  \"setana\",\n  \"setang\",\n  \"setangan\",\n  \"setanggi\",\n  \"setapak\",\n  \"setaria\",\n  \"setat\",\n  \"setawar\",\n  \"setebal\",\n  \"seteger\",\n  \"seteheng\",\n  \"setek\",\n  \"seteker\",\n  \"setel\",\n  \"setela\",\n  \"seteleng\",\n  \"setem\",\n  \"setempel\",\n  \"seten\",\n  \"setenggar\",\n  \"seter\",\n  \"seteranah\",\n  \"seteru\",\n  \"setewel\",\n  \"seti\",\n  \"setia\",\n  \"setiabu\",\n  \"setiar\",\n  \"setiga\",\n  \"setik\",\n  \"setin\",\n  \"setinggi\",\n  \"setip\",\n  \"setir\",\n  \"setirman\",\n  \"setiwel\",\n  \"setoka\",\n  \"setokin\",\n  \"setolop\",\n  \"setom\",\n  \"seton\",\n  \"setop\",\n  \"setoples\",\n  \"setor\",\n  \"setori\",\n  \"setoter\",\n  \"setra\",\n  \"setrap\",\n  \"setrat\",\n  \"setren\",\n  \"setreng\",\n  \"setrik\",\n  \"setrika\",\n  \"setrimin\",\n  \"setrip\",\n  \"setruk\",\n  \"setrum\",\n  \"setrup\",\n  \"setti\",\n  \"setu\",\n  \"setuil\",\n  \"setum\",\n  \"setung\",\n  \"setup\",\n  \"seturi\",\n  \"seturu\",\n  \"seudati\",\n  \"sewa\",\n  \"sewah\",\n  \"sewaka\",\n  \"sewal\",\n  \"sewar\",\n  \"sewat\",\n  \"sewot\",\n  \"sewu\",\n  \"sfenoidal\",\n  \"sferoid\",\n  \"sferometer\",\n  \"sfigmograf\",\n  \"sfigmomanometer\",\n  \"sfikmograf\",\n  \"sfingofili\",\n  \"sfingter\",\n  \"sfinks\",\n  \"sia\",\n  \"siaga\",\n  \"siah\",\n  \"siak\",\n  \"siakap\",\n  \"siakon\",\n  \"sial\",\n  \"sialang\",\n  \"sialit\",\n  \"siam\",\n  \"siamang\",\n  \"sian\",\n  \"sianamida\",\n  \"sianang\",\n  \"siang\",\n  \"sianggit\",\n  \"sianida\",\n  \"sianometer\",\n  \"sianometri\",\n  \"sianosis\",\n  \"siantan\",\n  \"siap\",\n  \"siap-sedia\",\n  \"siap-siaga\",\n  \"siapa\",\n  \"siapuh\",\n  \"siar\",\n  \"siarah\",\n  \"siarat\",\n  \"siasat\",\n  \"siat\",\n  \"siau\",\n  \"sibak\",\n  \"sibar\",\n  \"sibernetika\",\n  \"sibilan\",\n  \"sibir\",\n  \"sibuk\",\n  \"sibur\",\n  \"sibusuk\",\n  \"sice\",\n  \"sicerek\",\n  \"sida\",\n  \"sidai\",\n  \"sidamukti\",\n  \"sidang\",\n  \"sidat\",\n  \"siderit\",\n  \"sidi\",\n  \"sidik\",\n  \"siding\",\n  \"sidomukti\",\n  \"sidratulmuntaha\",\n  \"siduga\",\n  \"siduk\",\n  \"sif\",\n  \"sifat\",\n  \"sifatullah\",\n  \"sifer\",\n  \"sifilis\",\n  \"sifilobia\",\n  \"sifiloid\",\n  \"sifir\",\n  \"sifon\",\n  \"sigai\",\n  \"sigak\",\n  \"sigando\",\n  \"sigap\",\n  \"sigar\",\n  \"sigaret\",\n  \"sigasir\",\n  \"sigenting\",\n  \"siger\",\n  \"sigi\",\n  \"sigilografi\",\n  \"sigma\",\n  \"signifikan\",\n  \"signifikansi\",\n  \"signifikasi\",\n  \"sigot\",\n  \"sigung\",\n  \"sih\",\n  \"sihir\",\n  \"sijik\",\n  \"sijil\",\n  \"sika\",\n  \"sikah\",\n  \"sikai\",\n  \"sikak\",\n  \"sikap\",\n  \"sikari\",\n  \"sikas\",\n  \"sikat\",\n  \"sikedempung\",\n  \"sikeras\",\n  \"sikik\",\n  \"sikikih\",\n  \"sikin\",\n  \"sikit\",\n  \"siklik\",\n  \"siklis\",\n  \"sikloid\",\n  \"siklon\",\n  \"sikloparafin\",\n  \"siklotron\",\n  \"siklus\",\n  \"siksa\",\n  \"siku\",\n  \"sikudidi\",\n  \"sikudomba\",\n  \"sikut\",\n  \"sil\",\n  \"sila\",\n  \"silabel\",\n  \"silabis\",\n  \"silabus\",\n  \"silah\",\n  \"silalatu\",\n  \"silam\",\n  \"silampukau\",\n  \"silang\",\n  \"silap\",\n  \"silara\",\n  \"silase\",\n  \"silat\",\n  \"silaturahmi\",\n  \"silau\",\n  \"silengah\",\n  \"silet\",\n  \"silih\",\n  \"silik\",\n  \"silika\",\n  \"silikat\",\n  \"silikon\",\n  \"silikona\",\n  \"silikosis\",\n  \"silinder\",\n  \"silindris\",\n  \"silindroid\",\n  \"silir\",\n  \"silium\",\n  \"silo\",\n  \"silogisme\",\n  \"silok\",\n  \"silologi\",\n  \"silometer\",\n  \"siloptik\",\n  \"silsilah\",\n  \"silt\",\n  \"silu\",\n  \"siluet\",\n  \"siluk\",\n  \"siluman\",\n  \"silungkang\",\n  \"silvika\",\n  \"silvikultur\",\n  \"silvisida\",\n  \"simak\",\n  \"simalakama\",\n  \"simalu\",\n  \"simaung\",\n  \"simbah\",\n  \"simbai\",\n  \"simbang\",\n  \"simbar\",\n  \"simbat\",\n  \"simbion\",\n  \"simbiosis\",\n  \"simbiotis\",\n  \"simbiou\",\n  \"simbok\",\n  \"simbol\",\n  \"simbolis\",\n  \"simbolisme\",\n  \"simbukan\",\n  \"simbur\",\n  \"simetri\",\n  \"simetris\",\n  \"simfisis\",\n  \"simfoni\",\n  \"simifisis\",\n  \"simile\",\n  \"simpai\",\n  \"simpak\",\n  \"simpan\",\n  \"simpang\",\n  \"simpang-siur\",\n  \"simpanse\",\n  \"simpat\",\n  \"simpati\",\n  \"simpatik\",\n  \"simpatisan\",\n  \"simpel\",\n  \"simpetal\",\n  \"simping\",\n  \"simpir\",\n  \"simpleks\",\n  \"simplifikasi\",\n  \"simplistis\",\n  \"simposium\",\n  \"simpuh\",\n  \"simpuk\",\n  \"simpul\",\n  \"simpur\",\n  \"simtom\",\n  \"simtomatis\",\n  \"simtomatologi\",\n  \"simulasi\",\n  \"simulator\",\n  \"simulfiks\",\n  \"simultan\",\n  \"simuntu\",\n  \"sin\",\n  \"sinaga\",\n  \"sinagoga\",\n  \"sinagoge\",\n  \"sinambung\",\n  \"sinanaga\",\n  \"sinansari\",\n  \"sinar\",\n  \"sinatan\",\n  \"sinau\",\n  \"sinawar\",\n  \"sindap\",\n  \"sinden\",\n  \"sinder\",\n  \"sindeton\",\n  \"sindikalisme\",\n  \"sindikasi\",\n  \"sindikat\",\n  \"sindir\",\n  \"sindrom\",\n  \"sindur\",\n  \"sineas\",\n  \"sinekdoke\",\n  \"sinektika\",\n  \"sinema\",\n  \"sinemapleks\",\n  \"sinemaskop\",\n  \"sinematik\",\n  \"sinematograf\",\n  \"sinematografi\",\n  \"sinematografis\",\n  \"sinemikrografik\",\n  \"sineol\",\n  \"sinepleks\",\n  \"sinergi\",\n  \"sinergis\",\n  \"sinergisme\",\n  \"sineskop\",\n  \"sinestesia\",\n  \"sinetron\",\n  \"sing\",\n  \"singa\",\n  \"singahak\",\n  \"singelar\",\n  \"singga\",\n  \"singgah\",\n  \"singgan\",\n  \"singgang\",\n  \"singgasana\",\n  \"singgel\",\n  \"singgir\",\n  \"singgit\",\n  \"singgul\",\n  \"singgung\",\n  \"singit\",\n  \"singkak\",\n  \"singkang\",\n  \"singkap\",\n  \"singkat\",\n  \"singkeh\",\n  \"singkek\",\n  \"singkil\",\n  \"singkir\",\n  \"singkong\",\n  \"singkup\",\n  \"singkur\",\n  \"singlet\",\n  \"singsat\",\n  \"singse\",\n  \"singset\",\n  \"singsing\",\n  \"singularis\",\n  \"singulum\",\n  \"singulun\",\n  \"singunen\",\n  \"sini\",\n  \"sinis\",\n  \"sinisme\",\n  \"sinjang\",\n  \"sinklin\",\n  \"sinkonina\",\n  \"sinkope\",\n  \"sinkretis\",\n  \"sinkretisasi\",\n  \"sinkretisme\",\n  \"sinkron\",\n  \"sinkronis\",\n  \"sinkronisasi\",\n  \"sinkronisme\",\n  \"sinode\",\n  \"sinolog\",\n  \"sinologi\",\n  \"sinom\",\n  \"sinoman\",\n  \"sinonim\",\n  \"sinonimi\",\n  \"sinopsis\",\n  \"sinoptis\",\n  \"sinovia\",\n  \"sinovial\",\n  \"sinovitas\",\n  \"sinovitis\",\n  \"sinrili\",\n  \"sinse\",\n  \"sintagma\",\n  \"sintagmatis\",\n  \"sintaksis\",\n  \"sintaktis\",\n  \"sintal\",\n  \"sintar\",\n  \"sintas\",\n  \"sinter\",\n  \"sinterklas\",\n  \"sintese\",\n  \"sintesis\",\n  \"sintetik\",\n  \"sintetis\",\n  \"sinting\",\n  \"sintir\",\n  \"sintonik\",\n  \"sintren\",\n  \"sintua\",\n  \"sintuk\",\n  \"sintulang\",\n  \"sintung\",\n  \"sinu\",\n  \"sinuhun\",\n  \"sinus\",\n  \"sinusal\",\n  \"sinusitis\",\n  \"sinusoid\",\n  \"sinyal\",\n  \"sinyalemen\",\n  \"sinyalir\",\n  \"sinyo\",\n  \"sinyokolas\",\n  \"sio\",\n  \"sioca\",\n  \"siong\",\n  \"siongka\",\n  \"sip\",\n  \"sipahi\",\n  \"sipai\",\n  \"sipangkalan\",\n  \"sipat\",\n  \"sipatung\",\n  \"sipedas\",\n  \"sipesan\",\n  \"sipi\",\n  \"sipil\",\n  \"sipir\",\n  \"sipit\",\n  \"sipolan\",\n  \"sipongang\",\n  \"sipu\",\n  \"sipulut\",\n  \"siput\",\n  \"sir\",\n  \"sira\",\n  \"sirah\",\n  \"siram\",\n  \"sirangkak\",\n  \"sirap\",\n  \"sirat\",\n  \"siratalmustakim\",\n  \"siraut\",\n  \"sirene\",\n  \"sirep\",\n  \"siri\",\n  \"siriasis\",\n  \"sirib\",\n  \"sirih\",\n  \"sirik\",\n  \"siring\",\n  \"siringitis\",\n  \"sirip\",\n  \"sirkam\",\n  \"sirke\",\n  \"sirkol\",\n  \"sirkuit\",\n  \"sirkulasi\",\n  \"sirkuler\",\n  \"sirkumfiks\",\n  \"sirkumfleks\",\n  \"sirkus\",\n  \"sirlak\",\n  \"sirna\",\n  \"sirokumulus\",\n  \"sirop\",\n  \"sirostratus\",\n  \"sirsak\",\n  \"siru\",\n  \"sirup\",\n  \"sirus\",\n  \"sis\",\n  \"sisa\",\n  \"sisal\",\n  \"sisalak\",\n  \"sisi\",\n  \"sisih\",\n  \"sisik\",\n  \"sisip\",\n  \"sisir\",\n  \"sista\",\n  \"sistaltik\",\n  \"sistem\",\n  \"sistematik\",\n  \"sistematika\",\n  \"sistematis\",\n  \"sistematisasi\",\n  \"sistematisir\",\n  \"sistemis\",\n  \"sistemisasi\",\n  \"sisterna\",\n  \"sistitis\",\n  \"sistole\",\n  \"sistolik\",\n  \"sisurut\",\n  \"siswa\",\n  \"siswi\",\n  \"sit\",\n  \"sita\",\n  \"sitak\",\n  \"sitat\",\n  \"siter\",\n  \"siti\",\n  \"sitinggil\",\n  \"sitir\",\n  \"sitokrom\",\n  \"sitolilis\",\n  \"sitolisis\",\n  \"sitologi\",\n  \"sitoplasma\",\n  \"sitrat\",\n  \"sitrin\",\n  \"sitrun\",\n  \"situ\",\n  \"situasi\",\n  \"situasional\",\n  \"situn\",\n  \"situs\",\n  \"siuh\",\n  \"siuk\",\n  \"siul\",\n  \"siuman\",\n  \"siung\",\n  \"siur\",\n  \"siut\",\n  \"sivilisasi\",\n  \"siwalan\",\n  \"siwaratri\",\n  \"siwer\",\n  \"sizigi\",\n  \"skafa\",\n  \"skala\",\n  \"skalanisasi\",\n  \"skalar\",\n  \"skalop\",\n  \"skandal\",\n  \"skandium\",\n  \"skarifikasi\",\n  \"skatola\",\n  \"skatologi\",\n  \"skedul\",\n  \"skelet\",\n  \"skema\",\n  \"skematis\",\n  \"skenario\",\n  \"skene\",\n  \"skeptis\",\n  \"skeptisisme\",\n  \"sketsa\",\n  \"ski\",\n  \"skiameter\",\n  \"skiatika\",\n  \"skilot\",\n  \"skip\",\n  \"skiping\",\n  \"skisma\",\n  \"skizofrenia\",\n  \"skizoid\",\n  \"sklerenkima\",\n  \"sklerosis\",\n  \"skleroterapi\",\n  \"skolastik\",\n  \"skolastikus\",\n  \"skolastisi\",\n  \"skolastisisme\",\n  \"skombroid\",\n  \"skop\",\n  \"skopometer\",\n  \"skor\",\n  \"skorbut\",\n  \"skorpio\",\n  \"skors\",\n  \"skorsing\",\n  \"skrin\",\n  \"skrining\",\n  \"skrip\",\n  \"skripsi\",\n  \"skrobikulus\",\n  \"skrotum\",\n  \"skuadron\",\n  \"skuas\",\n  \"skuat\",\n  \"skuos\",\n  \"skuter\",\n  \"slagorde\",\n  \"slah\",\n  \"slang\",\n  \"slebor\",\n  \"slendro\",\n  \"sling\",\n  \"slintat-slintut\",\n  \"slip\",\n  \"slof\",\n  \"slogan\",\n  \"smes\",\n  \"smokel\",\n  \"snob\",\n  \"snobisme\",\n  \"soak\",\n  \"soal\",\n  \"soang\",\n  \"soarma\",\n  \"soba\",\n  \"soban\",\n  \"sobat\",\n  \"sobek\",\n  \"sobok\",\n  \"soda\",\n  \"sodet\",\n  \"sodium\",\n  \"sodok\",\n  \"sodomasosisme\",\n  \"sodomi\",\n  \"sodomia\",\n  \"sodor\",\n  \"soe\",\n  \"sofa\",\n  \"sofis\",\n  \"sofisme\",\n  \"sofistri\",\n  \"sofitel\",\n  \"soga\",\n  \"sogan\",\n  \"sogang\",\n  \"sogo\",\n  \"sogok\",\n  \"sohar\",\n  \"sohib\",\n  \"sohor\",\n  \"sohun\",\n  \"soja\",\n  \"sok\",\n  \"soka\",\n  \"sokah\",\n  \"soker\",\n  \"soket\",\n  \"sokom\",\n  \"sokong\",\n  \"sol\",\n  \"solah\",\n  \"solak\",\n  \"solang\",\n  \"solanina\",\n  \"solar\",\n  \"solarimeter\",\n  \"solder\",\n  \"solek\",\n  \"solempis\",\n  \"solenoide\",\n  \"solfatar\",\n  \"solfatara\",\n  \"solid\",\n  \"solidaritas\",\n  \"solider\",\n  \"soliditas\",\n  \"solilokui\",\n  \"solinometer\",\n  \"solipsisme\",\n  \"solis\",\n  \"soliter\",\n  \"solo\",\n  \"solois\",\n  \"solok\",\n  \"solokan\",\n  \"solot\",\n  \"solum\",\n  \"solusi\",\n  \"solvabilitas\",\n  \"solven\",\n  \"som\",\n  \"soma\",\n  \"somah\",\n  \"somasi\",\n  \"somatis\",\n  \"somatomegali\",\n  \"sombok\",\n  \"sombol\",\n  \"sombong\",\n  \"sombrero\",\n  \"someng\",\n  \"somnambulis\",\n  \"somnambulisme\",\n  \"sompek\",\n  \"sompeng\",\n  \"somplak\",\n  \"somplok\",\n  \"sompoh\",\n  \"sompok\",\n  \"sompong\",\n  \"sompret\",\n  \"sonar\",\n  \"sonata\",\n  \"sonatina\",\n  \"sondai\",\n  \"sondanco\",\n  \"sondang\",\n  \"sondase\",\n  \"sondek\",\n  \"sonder\",\n  \"sondok\",\n  \"sondong\",\n  \"soneta\",\n  \"songar\",\n  \"songel\",\n  \"songgeng\",\n  \"songket\",\n  \"songkok\",\n  \"songkro\",\n  \"songong\",\n  \"songsong\",\n  \"sonik\",\n  \"sono\",\n  \"sonogram\",\n  \"sonokeling\",\n  \"sonor\",\n  \"sonoran\",\n  \"sontak\",\n  \"sontek\",\n  \"sontok\",\n  \"sontoloyo\",\n  \"sop\",\n  \"sopak\",\n  \"sopan\",\n  \"sopek\",\n  \"sopi\",\n  \"sopir\",\n  \"soporifik\",\n  \"sopran\",\n  \"sorak\",\n  \"sorang\",\n  \"sorban\",\n  \"sorbet\",\n  \"sore\",\n  \"sorek\",\n  \"soren\",\n  \"sorgum\",\n  \"sori\",\n  \"sorog\",\n  \"sorok\",\n  \"sorong\",\n  \"sorot\",\n  \"sortir\",\n  \"sosi\",\n  \"sosial\",\n  \"sosialis\",\n  \"sosialisasi\",\n  \"sosialisme\",\n  \"sosialistis\",\n  \"sosio\",\n  \"sosio-kultural\",\n  \"sosiobiolog\",\n  \"sosiodemokrasi\",\n  \"sosiodrama\",\n  \"sosiokultural\",\n  \"sosiolek\",\n  \"sosiolinguistik\",\n  \"sosiolog\",\n  \"sosiologi\",\n  \"sosiologis\",\n  \"sosiometri\",\n  \"sosionasional\",\n  \"sosiopat\",\n  \"sosis\",\n  \"sositet\",\n  \"sosoh\",\n  \"sosok\",\n  \"sosor\",\n  \"soto\",\n  \"sotoh\",\n  \"sotong\",\n  \"sotor\",\n  \"soun\",\n  \"sowan\",\n  \"sowang\",\n  \"soyak\",\n  \"spageti\",\n  \"spalasi\",\n  \"span\",\n  \"spanduk\",\n  \"spaning\",\n  \"sparing\",\n  \"spasi\",\n  \"spasial\",\n  \"spasmodis\",\n  \"spasmus\",\n  \"spastik\",\n  \"spatbor\",\n  \"spatula\",\n  \"spedometer\",\n  \"spektakel\",\n  \"spektakuler\",\n  \"spektator\",\n  \"spektograf\",\n  \"spektogram\",\n  \"spektrograf\",\n  \"spektrogram\",\n  \"spektrokimia\",\n  \"spektrometer\",\n  \"spektroskop\",\n  \"spektrum\",\n  \"spekuk\",\n  \"spekulan\",\n  \"spekulasi\",\n  \"spekulatif\",\n  \"spekulator\",\n  \"speleologi\",\n  \"spelter\",\n  \"sperma\",\n  \"spermaseti\",\n  \"spermatid\",\n  \"spermatofora\",\n  \"spermatogenesis\",\n  \"spermatosit\",\n  \"spermatozoa\",\n  \"spermatozoid\",\n  \"spesial\",\n  \"spesialis\",\n  \"spesialisasi\",\n  \"spesialistis\",\n  \"spesies\",\n  \"spesifik\",\n  \"spesifikasi\",\n  \"spesimen\",\n  \"spidol\",\n  \"spidometer\",\n  \"spikul\",\n  \"spil\",\n  \"spina\",\n  \"spion\",\n  \"spionase\",\n  \"spiral\",\n  \"spiralisasi\",\n  \"spirilum\",\n  \"spirit\",\n  \"spiritis\",\n  \"spiritisme\",\n  \"spiritual\",\n  \"spiritualisasi\",\n  \"spiritualisme\",\n  \"spiritus\",\n  \"spirometer\",\n  \"spons\",\n  \"sponsor\",\n  \"spontan\",\n  \"spontanitas\",\n  \"spora\",\n  \"sporadis\",\n  \"sporangium\",\n  \"sporofil\",\n  \"sport\",\n  \"sportif\",\n  \"sportivitas\",\n  \"spring\",\n  \"sprint\",\n  \"sprinter\",\n  \"sputnik\",\n  \"sputum\",\n  \"sreg\",\n  \"sregep\",\n  \"srempet\",\n  \"sri\",\n  \"srigading\",\n  \"srigunggu\",\n  \"srigunting\",\n  \"srikandi\",\n  \"srikaya\",\n  \"srimanganti\",\n  \"sripah\",\n  \"sripanggung\",\n  \"sriti\",\n  \"stabil\",\n  \"stabilisasi\",\n  \"stabilisator\",\n  \"stabilitas\",\n  \"stabilizer\",\n  \"stadion\",\n  \"stadium\",\n  \"staf\",\n  \"stafilitis\",\n  \"stagnan\",\n  \"stagnasi\",\n  \"staking\",\n  \"stalagmit\",\n  \"stalagmometri\",\n  \"stalaktit\",\n  \"stalinisme\",\n  \"stalon\",\n  \"stamba\",\n  \"stambon\",\n  \"stambuk\",\n  \"stambul\",\n  \"stamen\",\n  \"stamina\",\n  \"stan\",\n  \"standar\",\n  \"standardisasi\",\n  \"stanplat\",\n  \"stanum\",\n  \"stanza\",\n  \"stapler\",\n  \"staples\",\n  \"start\",\n  \"starter\",\n  \"stasi\",\n  \"stasioner\",\n  \"stasis\",\n  \"stasiun\",\n  \"statis\",\n  \"statistik\",\n  \"statistika\",\n  \"statistis\",\n  \"stator\",\n  \"status\",\n  \"statuta\",\n  \"statuter\",\n  \"stearat\",\n  \"stearin\",\n  \"steatit\",\n  \"steatosis\",\n  \"stegodon\",\n  \"steik\",\n  \"stek\",\n  \"steker\",\n  \"stela\",\n  \"steling\",\n  \"stema\",\n  \"stemma\",\n  \"stempel\",\n  \"sten\",\n  \"stengun\",\n  \"steno\",\n  \"stenografer\",\n  \"stenografi\",\n  \"stenogram\",\n  \"stensil\",\n  \"step\",\n  \"stepa\",\n  \"stepler\",\n  \"steradian\",\n  \"stereo\",\n  \"stereofoni\",\n  \"stereofonik\",\n  \"stereognosis\",\n  \"stereograf\",\n  \"stereografi\",\n  \"stereoisomerisme\",\n  \"stereokimia\",\n  \"stereometri\",\n  \"stereoskop\",\n  \"stereotip\",\n  \"stereotipikal\",\n  \"steril\",\n  \"sterilisasi\",\n  \"sterilitas\",\n  \"steroid\",\n  \"steroidal\",\n  \"sterol\",\n  \"stetoskop\",\n  \"stevador\",\n  \"stibium\",\n  \"stigma\",\n  \"stigmata\",\n  \"stik\",\n  \"stiker\",\n  \"stilbestrol\",\n  \"stilir\",\n  \"stilistika\",\n  \"stilograf\",\n  \"stimulan\",\n  \"stimulans\",\n  \"stimulasi\",\n  \"stimulatif\",\n  \"stimulator\",\n  \"stimulus\",\n  \"stipendium\",\n  \"stipulasi\",\n  \"stirena\",\n  \"stoikiometri\",\n  \"stok\",\n  \"stokastik\",\n  \"stoker\",\n  \"stol\",\n  \"stoliditas\",\n  \"stolon\",\n  \"stomata\",\n  \"stomatitis\",\n  \"stomatogastrik\",\n  \"stomatoskop\",\n  \"stop\",\n  \"stoper\",\n  \"stopkeran\",\n  \"stopkontak\",\n  \"stoples\",\n  \"stori\",\n  \"stormking\",\n  \"strabotomi\",\n  \"strata\",\n  \"strategem\",\n  \"strategi\",\n  \"strategis\",\n  \"stratifikasi\",\n  \"stratigrafi\",\n  \"strato\",\n  \"stratokumulus\",\n  \"stratopause\",\n  \"stratopouse\",\n  \"stratosfer\",\n  \"stratum\",\n  \"stratus\",\n  \"streng\",\n  \"streptokokus\",\n  \"streptomisin\",\n  \"stres\",\n  \"striker\",\n  \"strimin\",\n  \"strip\",\n  \"striptis\",\n  \"stroberi\",\n  \"strobila\",\n  \"stroboskop\",\n  \"stroke\",\n  \"stromking\",\n  \"strontium\",\n  \"struktur\",\n  \"struktural\",\n  \"strukturalisasi\",\n  \"strukturalisme\",\n  \"struma\",\n  \"studen\",\n  \"studi\",\n  \"studio\",\n  \"stuko\",\n  \"stupa\",\n  \"sua\",\n  \"suah\",\n  \"suai\",\n  \"suak\",\n  \"suaka\",\n  \"suam\",\n  \"suami\",\n  \"suaminda\",\n  \"suang\",\n  \"suangi\",\n  \"suap\",\n  \"suar\",\n  \"suara\",\n  \"suarang\",\n  \"suargaloka\",\n  \"suari\",\n  \"suasa\",\n  \"suasana\",\n  \"suat\",\n  \"suatu\",\n  \"sub\",\n  \"subak\",\n  \"subal\",\n  \"subam\",\n  \"suban\",\n  \"subang\",\n  \"subbab\",\n  \"subbagian\",\n  \"subdirektorat\",\n  \"subentri\",\n  \"suberat\",\n  \"suberin\",\n  \"subetnik\",\n  \"subfilum\",\n  \"subgeneralisasi\",\n  \"subgenus\",\n  \"subhana\",\n  \"subhanallah\",\n  \"subhat\",\n  \"subirigasi\",\n  \"subjek\",\n  \"subjektif\",\n  \"subjektivisme\",\n  \"subkategorisasi\",\n  \"subkelas\",\n  \"subklas\",\n  \"subkontraktor\",\n  \"subkultur\",\n  \"sublema\",\n  \"subletal\",\n  \"sublim\",\n  \"sublimasi\",\n  \"sublimat\",\n  \"submarine\",\n  \"submukosa\",\n  \"subordinasi\",\n  \"subordinat\",\n  \"suborganisasi\",\n  \"subsider\",\n  \"subsidi\",\n  \"subskrip\",\n  \"subsonik\",\n  \"substandar\",\n  \"substansi\",\n  \"substansial\",\n  \"substantif\",\n  \"substitusi\",\n  \"substitutif\",\n  \"substrat\",\n  \"subtil\",\n  \"subtonik\",\n  \"subtropik\",\n  \"subuco\",\n  \"subuh\",\n  \"subunit\",\n  \"subur\",\n  \"subversi\",\n  \"subversif\",\n  \"subyek\",\n  \"subyektif\",\n  \"subyektivisme\",\n  \"suceng\",\n  \"suci\",\n  \"suda\",\n  \"sudah\",\n  \"sudet\",\n  \"sudi\",\n  \"sudip\",\n  \"sudoriferus\",\n  \"sudra\",\n  \"sudu\",\n  \"suduayah\",\n  \"suduk\",\n  \"sudung\",\n  \"sudut\",\n  \"suf\",\n  \"sufah\",\n  \"sufal\",\n  \"sufi\",\n  \"sufiks\",\n  \"sufisme\",\n  \"sufrah\",\n  \"sugar\",\n  \"sugesti\",\n  \"sugi\",\n  \"sugih\",\n  \"suguh\",\n  \"sugul\",\n  \"sugun\",\n  \"suh\",\n  \"suhad\",\n  \"suhian\",\n  \"suhu\",\n  \"suhuf\",\n  \"suhun\",\n  \"suiseki\",\n  \"suit\",\n  \"sujana\",\n  \"sujen\",\n  \"suji\",\n  \"sujud\",\n  \"suka\",\n  \"sukacita\",\n  \"sukade\",\n  \"sukamandi\",\n  \"sukan\",\n  \"sukar\",\n  \"sukarela\",\n  \"sukaria\",\n  \"sukat\",\n  \"sukduf\",\n  \"suke\",\n  \"suket\",\n  \"suki\",\n  \"suklapaksa\",\n  \"sukma\",\n  \"sukrosa\",\n  \"sukses\",\n  \"suksesi\",\n  \"suksesif\",\n  \"suku\",\n  \"sukuisme\",\n  \"sukun\",\n  \"sula\",\n  \"sulah\",\n  \"sulalah\",\n  \"sulalat\",\n  \"sulam\",\n  \"sulang\",\n  \"sulap\",\n  \"sulat-sulit\",\n  \"sulbi\",\n  \"sulfanasi\",\n  \"sulfanilamida\",\n  \"sulfat\",\n  \"sulfhidril\",\n  \"sulfolipid\",\n  \"sulfonamida\",\n  \"sulfur\",\n  \"sulfurasi\",\n  \"suli\",\n  \"sulih\",\n  \"suling\",\n  \"sulit\",\n  \"sultan\",\n  \"sultanat\",\n  \"sultani\",\n  \"suluh\",\n  \"suluk\",\n  \"sulung\",\n  \"sulur\",\n  \"sulut\",\n  \"sum\",\n  \"sumah\",\n  \"sumarah\",\n  \"sumare\",\n  \"sumasi\",\n  \"sumba\",\n  \"sumbang\",\n  \"sumbangsih\",\n  \"sumbar\",\n  \"sumbat\",\n  \"sumbel\",\n  \"sumber\",\n  \"sumbi\",\n  \"sumbing\",\n  \"sumbu\",\n  \"sumbuk\",\n  \"sumbul\",\n  \"sumbung\",\n  \"sumbur\",\n  \"sumbut\",\n  \"sumeh\",\n  \"sumengit\",\n  \"sumilir\",\n  \"sumir\",\n  \"sumirat\",\n  \"sumo\",\n  \"sumpah\",\n  \"sumpal\",\n  \"sumpek\",\n  \"sumpel\",\n  \"sumping\",\n  \"sumpit\",\n  \"sumsum\",\n  \"sumur\",\n  \"sumurung\",\n  \"sun\",\n  \"sunah\",\n  \"sunam\",\n  \"sunan\",\n  \"sunat\",\n  \"sunatullah\",\n  \"sunbulat\",\n  \"sundai\",\n  \"sundak\",\n  \"sundal\",\n  \"sundang\",\n  \"sundari\",\n  \"sundep\",\n  \"sunduk\",\n  \"sundul\",\n  \"sundus\",\n  \"sundusin\",\n  \"sundut\",\n  \"sungai\",\n  \"sungga\",\n  \"sunggi\",\n  \"sungging\",\n  \"sunggit\",\n  \"sungguh\",\n  \"sungguhpun\",\n  \"sungil\",\n  \"sungkah\",\n  \"sungkai\",\n  \"sungkal\",\n  \"sungkan\",\n  \"sungkap\",\n  \"sungkawa\",\n  \"sungkem\",\n  \"sungkit\",\n  \"sungkuk\",\n  \"sungkum\",\n  \"sungkup\",\n  \"sungkur\",\n  \"sungkuran\",\n  \"sungsang\",\n  \"sungu\",\n  \"sungut\",\n  \"suni\",\n  \"sunjam\",\n  \"sunti\",\n  \"suntiabu\",\n  \"suntih\",\n  \"suntik\",\n  \"sunting\",\n  \"suntuk\",\n  \"sunu\",\n  \"sunukung\",\n  \"sunyata\",\n  \"sunyi\",\n  \"sup\",\n  \"supa\",\n  \"supai\",\n  \"supaya\",\n  \"supel\",\n  \"super\",\n  \"superblok\",\n  \"supercepat\",\n  \"superfisial\",\n  \"superfosfat\",\n  \"superheterodin\",\n  \"superinfeksi\",\n  \"superintenden\",\n  \"superior\",\n  \"superioritas\",\n  \"superjet\",\n  \"superkomputer\",\n  \"superkonduktivitas\",\n  \"superkonduktor\",\n  \"superlatif\",\n  \"superlativisme\",\n  \"superlunar\",\n  \"supermarket\",\n  \"supermen\",\n  \"supernatural\",\n  \"supernova\",\n  \"superskrip\",\n  \"superskripsi\",\n  \"supersonik\",\n  \"superstar\",\n  \"superstruktur\",\n  \"supervisi\",\n  \"supervisor\",\n  \"suplai\",\n  \"suplemen\",\n  \"suplementasi\",\n  \"suplesi\",\n  \"supletoar\",\n  \"suporter\",\n  \"suportif\",\n  \"supra\",\n  \"supraalami\",\n  \"suprafiks\",\n  \"supramolekuler\",\n  \"supranasional\",\n  \"suprarene\",\n  \"suprarenoma\",\n  \"suprasasti\",\n  \"suprasegmental\",\n  \"supremasi\",\n  \"supresif\",\n  \"supresor\",\n  \"surah\",\n  \"surahi\",\n  \"surai\",\n  \"suralaya\",\n  \"suraloka\",\n  \"suram\",\n  \"surat\",\n  \"surati\",\n  \"surau\",\n  \"suraya\",\n  \"surealis\",\n  \"surealisme\",\n  \"suren\",\n  \"surfaktan\",\n  \"surga\",\n  \"surgaloka\",\n  \"surgawi\",\n  \"suri\",\n  \"surian\",\n  \"surih\",\n  \"surili\",\n  \"surjan\",\n  \"surogat\",\n  \"surplus\",\n  \"suruh\",\n  \"suruk\",\n  \"surup\",\n  \"surut\",\n  \"survei\",\n  \"surya\",\n  \"suryakanta\",\n  \"suryani\",\n  \"sus\",\n  \"susah\",\n  \"susastra\",\n  \"suseptibilitas\",\n  \"susila\",\n  \"susilat\",\n  \"suspender\",\n  \"suspensi\",\n  \"suster\",\n  \"susu\",\n  \"susuh\",\n  \"susuk\",\n  \"susul\",\n  \"susun\",\n  \"susung\",\n  \"susup\",\n  \"susur\",\n  \"susut\",\n  \"sut\",\n  \"sutan\",\n  \"suten\",\n  \"sutil\",\n  \"sutra\",\n  \"sutradara\",\n  \"sutura\",\n  \"suul\",\n  \"suun\",\n  \"suuzan\",\n  \"suvenir\",\n  \"suwarnabumi\",\n  \"suwarnadwipa\",\n  \"suwir\",\n  \"suwita\",\n  \"svedberg\",\n  \"swa\",\n  \"swabakar\",\n  \"swabela\",\n  \"swadana\",\n  \"swadarma\",\n  \"swadaya\",\n  \"swadesi\",\n  \"swadidik\",\n  \"swadisiplin\",\n  \"swagriya\",\n  \"swahara\",\n  \"swaharga\",\n  \"swaimbas\",\n  \"swak\",\n  \"swakaji\",\n  \"swakarsa\",\n  \"swakarya\",\n  \"swakelola\",\n  \"swakendali\",\n  \"swakontradiksi\",\n  \"swalayan\",\n  \"swanama\",\n  \"swanggi\",\n  \"swapraja\",\n  \"swarabakti\",\n  \"swasembada\",\n  \"swasensor\",\n  \"swasraya\",\n  \"swasta\",\n  \"swastanisasi\",\n  \"swastiastu\",\n  \"swastika\",\n  \"swatabur\",\n  \"swatantra\",\n  \"swausaha\",\n  \"sweter\",\n  \"swike\",\n  \"swimpak\",\n  \"swipoa\",\n  \"syabah\",\n  \"syabas\",\n  \"syafaat\",\n  \"syafakat\",\n  \"syafii\",\n  \"syah\",\n  \"syahadat\",\n  \"syahadatain\",\n  \"syahbandar\",\n  \"syahda\",\n  \"syahdan\",\n  \"syahdu\",\n  \"syahid\",\n  \"syahriah\",\n  \"syahsiah\",\n  \"syahwat\",\n  \"syair\",\n  \"syairi\",\n  \"syajar\",\n  \"syajarah\",\n  \"syak\",\n  \"syaka\",\n  \"syakban\",\n  \"syakduf\",\n  \"syakhsi\",\n  \"syakir\",\n  \"syal\",\n  \"syala\",\n  \"syam\",\n  \"syamali\",\n  \"syaman\",\n  \"syamanisme\",\n  \"syamsi\",\n  \"syamsiah\",\n  \"syamsir\",\n  \"syamsu\",\n  \"syantung\",\n  \"syar\",\n  \"syarab\",\n  \"syarah\",\n  \"syarak\",\n  \"syarat\",\n  \"syarbat\",\n  \"syarekat\",\n  \"syariat\",\n  \"syarif\",\n  \"syarifah\",\n  \"syarik\",\n  \"syarikat\",\n  \"syatar\",\n  \"syaulam\",\n  \"syawal\",\n  \"syeir\",\n  \"syekh\",\n  \"syeti\",\n  \"syiar\",\n  \"syikak\",\n  \"syin\",\n  \"syirik\",\n  \"syiwa\",\n  \"syiwaratri\",\n  \"syogun\",\n  \"syok\",\n  \"syubhat\",\n  \"syuhada\",\n  \"syukur\",\n  \"syumuliah\",\n  \"syur\",\n  \"syura\",\n  \"syurah\",\n  \"syuriah\",\n  \"syuruk\",\n  \"syuting\",\n  \"taajul\",\n  \"taala\",\n  \"taaruf\",\n  \"taasub\",\n  \"taat\",\n  \"taawud\",\n  \"taazur\",\n  \"tabah\",\n  \"tabak\",\n  \"tabal\",\n  \"taban\",\n  \"tabar-tabar\",\n  \"tabarak\",\n  \"tabaruk\",\n  \"tabayun\",\n  \"tabe\",\n  \"tabel\",\n  \"tabela\",\n  \"tabelaris\",\n  \"tabernakel\",\n  \"tabia\",\n  \"tabiat\",\n  \"tabib\",\n  \"tabii\",\n  \"tabiin\",\n  \"tabik\",\n  \"tabir\",\n  \"tablet\",\n  \"tablig\",\n  \"tablo\",\n  \"tabloid\",\n  \"tabo\",\n  \"tabok\",\n  \"tabrak\",\n  \"tabu\",\n  \"tabuh\",\n  \"tabuhan\",\n  \"tabula\",\n  \"tabulasi\",\n  \"tabulator\",\n  \"tabulatur\",\n  \"tabun\",\n  \"tabung\",\n  \"tabur\",\n  \"tabut\",\n  \"tabzir\",\n  \"taci\",\n  \"tadabur\",\n  \"tadah\",\n  \"tadaruk\",\n  \"tadarus\",\n  \"tadbir\",\n  \"tadi\",\n  \"tadir\",\n  \"tadung\",\n  \"tadwin\",\n  \"taekwondo\",\n  \"taeniasis\",\n  \"taf\",\n  \"tafadal\",\n  \"tafahus\",\n  \"tafakur\",\n  \"tafeta\",\n  \"tafsir\",\n  \"tagak\",\n  \"tagal\",\n  \"tagan\",\n  \"tagar\",\n  \"tageh\",\n  \"tagih\",\n  \"tago\",\n  \"tagut\",\n  \"tahajud\",\n  \"tahak\",\n  \"tahal\",\n  \"tahalul\",\n  \"tahan\",\n  \"tahana\",\n  \"tahang\",\n  \"tahap\",\n  \"tahar\",\n  \"taharah\",\n  \"tahbis\",\n  \"tahi\",\n  \"tahiat\",\n  \"tahil\",\n  \"tahir\",\n  \"tahkik\",\n  \"tahkim\",\n  \"tahlil\",\n  \"tahmid\",\n  \"tahniah\",\n  \"tahnik\",\n  \"tahsil\",\n  \"tahu\",\n  \"tahun\",\n  \"taib\",\n  \"taifun\",\n  \"taiga\",\n  \"taiko\",\n  \"taipan\",\n  \"tais\",\n  \"taiso\",\n  \"taja\",\n  \"tajak\",\n  \"tajali\",\n  \"tajam\",\n  \"tajarud\",\n  \"tajau\",\n  \"tajdid\",\n  \"tajen\",\n  \"taji\",\n  \"tajin\",\n  \"tajnis\",\n  \"tajribah\",\n  \"taju\",\n  \"tajuk\",\n  \"tajung\",\n  \"tajur\",\n  \"tajusalatin\",\n  \"tajwid\",\n  \"tak\",\n  \"takabur\",\n  \"takaful\",\n  \"takah\",\n  \"takak\",\n  \"takal\",\n  \"takang-takik\",\n  \"takar\",\n  \"takarir\",\n  \"takarub\",\n  \"takat\",\n  \"takbir\",\n  \"takbiratulihram\",\n  \"takdim\",\n  \"takdir\",\n  \"takdis\",\n  \"takeh\",\n  \"takel\",\n  \"takeyari\",\n  \"takhayul\",\n  \"takhlik\",\n  \"takhsis\",\n  \"takhta\",\n  \"taki\",\n  \"takigrafi\",\n  \"takik\",\n  \"takimeter\",\n  \"takir\",\n  \"takisme\",\n  \"takjil\",\n  \"takjub\",\n  \"taklid\",\n  \"taklif\",\n  \"taklik\",\n  \"taklikat\",\n  \"taklim\",\n  \"taklimat\",\n  \"takluk\",\n  \"takma\",\n  \"takmurni\",\n  \"takoah\",\n  \"takol\",\n  \"takometer\",\n  \"takraw\",\n  \"takrif\",\n  \"takrim\",\n  \"takrir\",\n  \"taksa\",\n  \"taksasi\",\n  \"taksem\",\n  \"taksi\",\n  \"taksidermi\",\n  \"taksimeter\",\n  \"taksin\",\n  \"taksir\",\n  \"taksologi\",\n  \"takson\",\n  \"taksonomi\",\n  \"taktik\",\n  \"taktil\",\n  \"taktis\",\n  \"takuh\",\n  \"takuk\",\n  \"takung\",\n  \"takur\",\n  \"takut\",\n  \"takwa\",\n  \"takwil\",\n  \"takwim\",\n  \"takwin\",\n  \"takyin\",\n  \"takziah\",\n  \"takzim\",\n  \"takzir\",\n  \"tal\",\n  \"tala\",\n  \"talabiah\",\n  \"talah\",\n  \"talak\",\n  \"talam\",\n  \"talang\",\n  \"talar\",\n  \"talas\",\n  \"talasemia\",\n  \"talasofit\",\n  \"talbiah\",\n  \"talek\",\n  \"talempong\",\n  \"talen\",\n  \"talenan\",\n  \"talenta\",\n  \"tali\",\n  \"talib\",\n  \"talibun\",\n  \"talium\",\n  \"talk\",\n  \"talkin\",\n  \"talon\",\n  \"talu\",\n  \"talun\",\n  \"talupuh\",\n  \"talut\",\n  \"tam\",\n  \"tamadun\",\n  \"tamah\",\n  \"tamak\",\n  \"tamam\",\n  \"taman\",\n  \"tamar\",\n  \"tamarinda\",\n  \"tamasya\",\n  \"tamat\",\n  \"tamatulkalam\",\n  \"tambah\",\n  \"tambak\",\n  \"tambakan\",\n  \"tambal\",\n  \"tamban\",\n  \"tambang\",\n  \"tambar\",\n  \"tambat\",\n  \"tamber\",\n  \"tambera\",\n  \"tambi\",\n  \"tambo\",\n  \"tamborin\",\n  \"tambuh\",\n  \"tambul\",\n  \"tambun\",\n  \"tambung\",\n  \"tambur\",\n  \"tambus\",\n  \"tameng\",\n  \"tamimah\",\n  \"tampah\",\n  \"tampak\",\n  \"tampal\",\n  \"tampan\",\n  \"tampang\",\n  \"tampar\",\n  \"tampas\",\n  \"tampel\",\n  \"tampi\",\n  \"tampik\",\n  \"tampil\",\n  \"tampin\",\n  \"tamping\",\n  \"tampon\",\n  \"tamponade\",\n  \"tampuk\",\n  \"tampung\",\n  \"tampus\",\n  \"tamsil\",\n  \"tamtam\",\n  \"tamtama\",\n  \"tamu\",\n  \"tamuk\",\n  \"tamyiz\",\n  \"tan\",\n  \"tanah\",\n  \"tanai\",\n  \"tanak\",\n  \"tanam\",\n  \"tanang\",\n  \"tanau\",\n  \"tanazul\",\n  \"tanbiat\",\n  \"tanbihat\",\n  \"tancang\",\n  \"tancap\",\n  \"tanda\",\n  \"tandak\",\n  \"tandan\",\n  \"tandang\",\n  \"tandas\",\n  \"tandem\",\n  \"tandik\",\n  \"tandikat\",\n  \"tandil\",\n  \"tanding\",\n  \"tandon\",\n  \"tandu\",\n  \"tanduk\",\n  \"tandun\",\n  \"tandur\",\n  \"tandus\",\n  \"tanfiziah\",\n  \"tang\",\n  \"tangan\",\n  \"tangap\",\n  \"tangar\",\n  \"tangas\",\n  \"tangeh\",\n  \"tangen\",\n  \"tangga\",\n  \"tanggah\",\n  \"tanggal\",\n  \"tanggam\",\n  \"tanggang\",\n  \"tanggap\",\n  \"tanggar\",\n  \"tanggetong\",\n  \"tangguh\",\n  \"tangguk\",\n  \"tanggul\",\n  \"tanggulang\",\n  \"tanggung\",\n  \"tangis\",\n  \"tangkah\",\n  \"tangkai\",\n  \"tangkaian\",\n  \"tangkal\",\n  \"tangkap\",\n  \"tangkar\",\n  \"tangkas\",\n  \"tangki\",\n  \"tangkil\",\n  \"tangkis\",\n  \"tangkue\",\n  \"tangkuk\",\n  \"tangkul\",\n  \"tangkup\",\n  \"tangkur\",\n  \"tangkut\",\n  \"tanglung\",\n  \"tango\",\n  \"tangsa\",\n  \"tangsel\",\n  \"tangsi\",\n  \"tani\",\n  \"tania\",\n  \"tanin\",\n  \"tanjak\",\n  \"tanji\",\n  \"tanjidor\",\n  \"tanju\",\n  \"tanjul\",\n  \"tanjung\",\n  \"tanjur\",\n  \"tank\",\n  \"tanker\",\n  \"tanpa\",\n  \"tansi\",\n  \"tantang\",\n  \"tante\",\n  \"tanti\",\n  \"tantiem\",\n  \"tantrisme\",\n  \"tanur\",\n  \"tanwin\",\n  \"tanwir\",\n  \"tanwujud\",\n  \"tanya\",\n  \"tanzih\",\n  \"tanzil\",\n  \"taocang\",\n  \"taoci\",\n  \"taoco\",\n  \"taoge\",\n  \"taoisme\",\n  \"taoke\",\n  \"taosi\",\n  \"tap\",\n  \"tapa\",\n  \"tapai\",\n  \"tapak\",\n  \"tapal\",\n  \"tapang\",\n  \"tapestri\",\n  \"tapi\",\n  \"tapih\",\n  \"tapin\",\n  \"tapioka\",\n  \"tapir\",\n  \"tapis\",\n  \"taplak\",\n  \"taprofit\",\n  \"taptibau\",\n  \"taptu\",\n  \"tapui\",\n  \"tapuk\",\n  \"tapung\",\n  \"tapus\",\n  \"tar\",\n  \"tara\",\n  \"taraf\",\n  \"tarah\",\n  \"tarak\",\n  \"taraksasin\",\n  \"taram\",\n  \"tarang\",\n  \"tarantisme\",\n  \"tarantula\",\n  \"tarap\",\n  \"taraqi\",\n  \"tarasul\",\n  \"tarawangsa\",\n  \"tarawih\",\n  \"tarbiah\",\n  \"tarbil\",\n  \"tarbus\",\n  \"tarcis\",\n  \"tarekat\",\n  \"target\",\n  \"tarhim\",\n  \"tari\",\n  \"tarif\",\n  \"tarik\",\n  \"tarikat\",\n  \"tarikh\",\n  \"taring\",\n  \"taris\",\n  \"tarjih\",\n  \"tarkas\",\n  \"tarling\",\n  \"tarmak\",\n  \"tarpaulin\",\n  \"tarsus\",\n  \"tartar\",\n  \"tartil\",\n  \"tartir\",\n  \"tartrat\",\n  \"taruh\",\n  \"taruk\",\n  \"taruko\",\n  \"tarum\",\n  \"tarung\",\n  \"tarup\",\n  \"tarzan\",\n  \"tas\",\n  \"tasa\",\n  \"tasai\",\n  \"tasak\",\n  \"tasalsul\",\n  \"tasamuh\",\n  \"tasaruf\",\n  \"tasawuf\",\n  \"tasbeh\",\n  \"tasbih\",\n  \"tasdik\",\n  \"tasel\",\n  \"tashih\",\n  \"tasik\",\n  \"taslim\",\n  \"tasmik\",\n  \"tasrif\",\n  \"tasrih\",\n  \"taswir\",\n  \"tasyahud\",\n  \"tasyakur\",\n  \"tasyaum\",\n  \"tasyayuh\",\n  \"tasybih\",\n  \"tasydid\",\n  \"tasyhid\",\n  \"tasyrih\",\n  \"tasyrik\",\n  \"tata\",\n  \"tataganing\",\n  \"tatah\",\n  \"tatai\",\n  \"tatak\",\n  \"tatal\",\n  \"tatami\",\n  \"tatanan\",\n  \"tatang\",\n  \"tatap\",\n  \"tatar\",\n  \"tatih\",\n  \"tating\",\n  \"tatkala\",\n  \"tato\",\n  \"tau\",\n  \"taubat\",\n  \"taucang\",\n  \"taufah\",\n  \"taufik\",\n  \"tauhid\",\n  \"tauhidiah\",\n  \"tauke\",\n  \"taul\",\n  \"tauliah\",\n  \"taun\",\n  \"taung\",\n  \"taur\",\n  \"taurat\",\n  \"tauret\",\n  \"taurus\",\n  \"taut\",\n  \"tautofoni\",\n  \"tautologi\",\n  \"tautomerisme\",\n  \"tautonimi\",\n  \"tautonomi\",\n  \"tawa\",\n  \"tawadu\",\n  \"tawaduk\",\n  \"tawaf\",\n  \"tawajuh\",\n  \"tawak\",\n  \"tawakal\",\n  \"tawan\",\n  \"tawang\",\n  \"tawar\",\n  \"tawarik\",\n  \"tawaruk\",\n  \"tawas\",\n  \"tawasul\",\n  \"tawes\",\n  \"tawon\",\n  \"tawur\",\n  \"tayamum\",\n  \"tayang\",\n  \"tayib\",\n  \"tayibah\",\n  \"tayub\",\n  \"tayum\",\n  \"tazkirah\",\n  \"tean\",\n  \"teater\",\n  \"teatris\",\n  \"tebah\",\n  \"tebak\",\n  \"tebal\",\n  \"teban\",\n  \"tebang\",\n  \"tebar\",\n  \"tebas\",\n  \"tebat\",\n  \"tebeng\",\n  \"teberau\",\n  \"tebing\",\n  \"tebok\",\n  \"tebon\",\n  \"tebu\",\n  \"tebuhar\",\n  \"tebuk\",\n  \"tebung\",\n  \"tebus\",\n  \"tedak\",\n  \"tedarus\",\n  \"tedas\",\n  \"tedeng\",\n  \"tedong\",\n  \"teduh\",\n  \"tedung\",\n  \"tefrit\",\n  \"tega\",\n  \"tegah\",\n  \"tegak\",\n  \"tegal\",\n  \"tegang\",\n  \"tegap\",\n  \"tegar\",\n  \"tegari\",\n  \"tegarun\",\n  \"tegas\",\n  \"tegel\",\n  \"tegil\",\n  \"tegmen\",\n  \"teguh\",\n  \"teguk\",\n  \"tegun\",\n  \"tegur\",\n  \"teh\",\n  \"teisme\",\n  \"teja\",\n  \"teji\",\n  \"teka\",\n  \"tekaan\",\n  \"tekad\",\n  \"tekah\",\n  \"tekak\",\n  \"tekalak\",\n  \"tekam\",\n  \"tekan\",\n  \"tekang\",\n  \"tekap\",\n  \"tekar\",\n  \"tekat\",\n  \"tekek\",\n  \"tekel\",\n  \"teken\",\n  \"teker\",\n  \"teki\",\n  \"tekidanto\",\n  \"tekik\",\n  \"tekis\",\n  \"teklek\",\n  \"teklok\",\n  \"teknifon\",\n  \"teknik\",\n  \"teknikus\",\n  \"teknis\",\n  \"teknisi\",\n  \"teknokrasi\",\n  \"teknokrat\",\n  \"teknokratik\",\n  \"teknokratisme\",\n  \"teknologi\",\n  \"teknonim\",\n  \"teknonimi\",\n  \"teko\",\n  \"tekoan\",\n  \"tekoh\",\n  \"tekokak\",\n  \"tekong\",\n  \"tekor\",\n  \"tekoran\",\n  \"tekpi\",\n  \"teks\",\n  \"tekstil\",\n  \"tekstur\",\n  \"tekstural\",\n  \"tekte\",\n  \"tektek\",\n  \"tektit\",\n  \"tektogenesa\",\n  \"tektonik\",\n  \"tektonis\",\n  \"tektum\",\n  \"tekua\",\n  \"tekuk\",\n  \"tekukur\",\n  \"tekun\",\n  \"tekung\",\n  \"tekur\",\n  \"tel\",\n  \"tela\",\n  \"telaah\",\n  \"telabang\",\n  \"telabat\",\n  \"telacak\",\n  \"teladan\",\n  \"teladas\",\n  \"telaga\",\n  \"telah\",\n  \"telajak\",\n  \"telak\",\n  \"telakup\",\n  \"telampung\",\n  \"telan\",\n  \"telancang\",\n  \"telang\",\n  \"telangkai\",\n  \"telangkup\",\n  \"telanjang\",\n  \"telanjur\",\n  \"telantar\",\n  \"telap\",\n  \"telapak\",\n  \"telas\",\n  \"telat\",\n  \"telatah\",\n  \"telatap\",\n  \"telaten\",\n  \"telau\",\n  \"tele\",\n  \"telearsika\",\n  \"teledek\",\n  \"teledor\",\n  \"teledrama\",\n  \"telefon\",\n  \"telefoni\",\n  \"telefoto\",\n  \"telegenik\",\n  \"telegraf\",\n  \"telegrafi\",\n  \"telegrafis\",\n  \"telegram\",\n  \"telegrap\",\n  \"telekan\",\n  \"telekap\",\n  \"telekinesis\",\n  \"telekomedi\",\n  \"telekomunikasi\",\n  \"teleks\",\n  \"teleku\",\n  \"telekung\",\n  \"telelensa\",\n  \"telemeter\",\n  \"telemetri\",\n  \"telempap\",\n  \"telempong\",\n  \"teleng\",\n  \"telenovela\",\n  \"telentang\",\n  \"teleologi\",\n  \"teleost\",\n  \"telepati\",\n  \"telepok\",\n  \"telepon\",\n  \"teleprinter\",\n  \"telepromter\",\n  \"telepuk\",\n  \"teler\",\n  \"telerang\",\n  \"teles\",\n  \"teleskop\",\n  \"telestesia\",\n  \"televisi\",\n  \"telgram\",\n  \"telik\",\n  \"telikung\",\n  \"telimpuh\",\n  \"telinak\",\n  \"telinga\",\n  \"telingkah\",\n  \"telingkung\",\n  \"teliti\",\n  \"telmotofit\",\n  \"telop\",\n  \"telor\",\n  \"telotak\",\n  \"telpon\",\n  \"teluh\",\n  \"teluk\",\n  \"teluki\",\n  \"telungkup\",\n  \"telunjuk\",\n  \"telur\",\n  \"telurat\",\n  \"telurit\",\n  \"telus\",\n  \"telusuk\",\n  \"telusur\",\n  \"telut\",\n  \"telutuh\",\n  \"telutur\",\n  \"telutut\",\n  \"tem\",\n  \"tema\",\n  \"temaah\",\n  \"temabur\",\n  \"temaha\",\n  \"temahak\",\n  \"temak\",\n  \"temalang\",\n  \"temali\",\n  \"teman\",\n  \"temangau\",\n  \"temangga\",\n  \"temanten\",\n  \"temara\",\n  \"temaram\",\n  \"temas\",\n  \"tematik\",\n  \"tematis\",\n  \"tematisasi\",\n  \"temayun\",\n  \"tembadau\",\n  \"tembaga\",\n  \"tembak\",\n  \"tembakang\",\n  \"tembakau\",\n  \"tembakul\",\n  \"tembam\",\n  \"tembang\",\n  \"tembarau\",\n  \"tembatar\",\n  \"tembatu\",\n  \"tembek\",\n  \"tembekar\",\n  \"tembel\",\n  \"tembelang\",\n  \"tembelian\",\n  \"tembeliung\",\n  \"tembelok\",\n  \"tembem\",\n  \"tembera\",\n  \"temberam\",\n  \"temberang\",\n  \"temberas\",\n  \"temberek\",\n  \"tembereng\",\n  \"temberih\",\n  \"temberos\",\n  \"tembesu\",\n  \"tembiang\",\n  \"tembikai\",\n  \"tembikar\",\n  \"tembilang\",\n  \"tembilar\",\n  \"tembiring\",\n  \"tembis\",\n  \"tembok\",\n  \"tembolok\",\n  \"tembong\",\n  \"tembosa\",\n  \"tembra\",\n  \"tembu\",\n  \"tembuk\",\n  \"tembuku\",\n  \"tembung\",\n  \"tembuni\",\n  \"tembus\",\n  \"tembusu\",\n  \"temegun\",\n  \"temeh\",\n  \"temengalan\",\n  \"temenggung\",\n  \"temenung\",\n  \"temesar\",\n  \"temetu\",\n  \"temiang\",\n  \"temilang\",\n  \"temin\",\n  \"temokus\",\n  \"temoleh\",\n  \"tempa\",\n  \"tempah\",\n  \"tempala\",\n  \"tempan\",\n  \"tempang\",\n  \"tempap\",\n  \"tempat\",\n  \"tempaus\",\n  \"tempawak\",\n  \"tempawan\",\n  \"tempayak\",\n  \"tempayan\",\n  \"tempayung\",\n  \"tempe\",\n  \"tempek\",\n  \"tempel\",\n  \"tempelak\",\n  \"tempeleng\",\n  \"temperamen\",\n  \"temperamental\",\n  \"temperas\",\n  \"temperatur\",\n  \"temperau\",\n  \"tempiar\",\n  \"tempias\",\n  \"tempik\",\n  \"tempilai\",\n  \"tempinah\",\n  \"tempinis\",\n  \"templek\",\n  \"templok\",\n  \"tempo\",\n  \"tempoh\",\n  \"tempolong\",\n  \"temponek\",\n  \"tempong\",\n  \"temporal\",\n  \"temporer\",\n  \"tempoyak\",\n  \"tempoyan\",\n  \"tempua\",\n  \"tempuh\",\n  \"tempui\",\n  \"tempuling\",\n  \"tempunai\",\n  \"tempunik\",\n  \"tempur\",\n  \"tempurung\",\n  \"tempus\",\n  \"tempuyung\",\n  \"temu\",\n  \"temucut\",\n  \"temukut\",\n  \"temungkul\",\n  \"temuras\",\n  \"temurat\",\n  \"temut-temut\",\n  \"tenaga\",\n  \"tenahak\",\n  \"tenak\",\n  \"tenam\",\n  \"tenang\",\n  \"tenar\",\n  \"tenat\",\n  \"tenda\",\n  \"tendang\",\n  \"tendas\",\n  \"tendensi\",\n  \"tendensius\",\n  \"tender\",\n  \"tendinitis\",\n  \"tendo\",\n  \"tendon\",\n  \"tener\",\n  \"teng\",\n  \"tengadah\",\n  \"tengah\",\n  \"tengak\",\n  \"tengalan\",\n  \"tengar\",\n  \"tengara\",\n  \"tengas\",\n  \"tenggadai\",\n  \"tenggak\",\n  \"tenggala\",\n  \"tenggalung\",\n  \"tenggan\",\n  \"tenggang\",\n  \"tenggara\",\n  \"tenggarang\",\n  \"tenggat\",\n  \"tenggayun\",\n  \"tenggayung\",\n  \"tenggehem\",\n  \"tenggek\",\n  \"tenggelam\",\n  \"tengger\",\n  \"tenggiling\",\n  \"tenggiri\",\n  \"tenggiring\",\n  \"tenggok\",\n  \"tenggorok\",\n  \"tengguli\",\n  \"tengik\",\n  \"tengil\",\n  \"tengkalak\",\n  \"tengkalang\",\n  \"tengkaluk\",\n  \"tengkam\",\n  \"tengkang\",\n  \"tengkar\",\n  \"tengkarah\",\n  \"tengkarap\",\n  \"tengkaras\",\n  \"tengkawang\",\n  \"tengkek\",\n  \"tengkel\",\n  \"tengkelek\",\n  \"tengker\",\n  \"tengkerong\",\n  \"tengkes\",\n  \"tengking\",\n  \"tengkoh\",\n  \"tengkolok\",\n  \"tengkorak\",\n  \"tengku\",\n  \"tengkujuh\",\n  \"tengkuk\",\n  \"tengkulak\",\n  \"tengkuluk\",\n  \"tengkurap\",\n  \"tengkuyung\",\n  \"tengok\",\n  \"tengteng\",\n  \"tengu\",\n  \"tenis\",\n  \"tenjet\",\n  \"tenok\",\n  \"tenong\",\n  \"tenor\",\n  \"tensi\",\n  \"tentakel\",\n  \"tentamen\",\n  \"tentang\",\n  \"tentara\",\n  \"tentatif\",\n  \"tentawan\",\n  \"tenteng\",\n  \"tenteram\",\n  \"tentir\",\n  \"tentu\",\n  \"tenuk\",\n  \"tenun\",\n  \"tenung\",\n  \"teodolit\",\n  \"teokrasi\",\n  \"teokratis\",\n  \"teolog\",\n  \"teologi\",\n  \"teologis\",\n  \"teoretikus\",\n  \"teoretis\",\n  \"teori\",\n  \"teorisasi\",\n  \"teosofi\",\n  \"teosofis\",\n  \"tepa\",\n  \"tepak\",\n  \"tepam\",\n  \"tepas\",\n  \"tepat\",\n  \"tepeh\",\n  \"tepek\",\n  \"tepekong\",\n  \"teperam\",\n  \"tepes\",\n  \"tepet\",\n  \"tepi\",\n  \"tepik\",\n  \"tepis\",\n  \"teplok\",\n  \"tepo\",\n  \"tepok\",\n  \"tepos\",\n  \"teptibau\",\n  \"tepu\",\n  \"tepuk\",\n  \"tepung\",\n  \"tepurang\",\n  \"tepus\",\n  \"ter\",\n  \"tera\",\n  \"teracak\",\n  \"terada\",\n  \"terajam\",\n  \"teraju\",\n  \"terak\",\n  \"terakota\",\n  \"terakup\",\n  \"teral\",\n  \"terala\",\n  \"terali\",\n  \"teraling\",\n  \"teramisin\",\n  \"terampil\",\n  \"teran\",\n  \"teranas\",\n  \"terang\",\n  \"terap\",\n  \"terapang\",\n  \"terapeutik\",\n  \"terapi\",\n  \"terarium\",\n  \"teras\",\n  \"terasi\",\n  \"teraso\",\n  \"terasul\",\n  \"teratai\",\n  \"teratak\",\n  \"teratap\",\n  \"teratologi\",\n  \"teratu\",\n  \"terau\",\n  \"terawang\",\n  \"teraweh\",\n  \"terban\",\n  \"terbang\",\n  \"terbis\",\n  \"terbit\",\n  \"terbium\",\n  \"terbul\",\n  \"terbut\",\n  \"terein\",\n  \"terem\",\n  \"terenang\",\n  \"terendak\",\n  \"terenen\",\n  \"terentang\",\n  \"terenyuh\",\n  \"teres\",\n  \"teret\",\n  \"teretet\",\n  \"teri\",\n  \"teriak\",\n  \"teriba\",\n  \"terigu\",\n  \"terik\",\n  \"terika\",\n  \"terikit\",\n  \"teriko\",\n  \"terima\",\n  \"terin\",\n  \"terindil\",\n  \"tering\",\n  \"teripang\",\n  \"terista\",\n  \"teritih\",\n  \"teritik\",\n  \"teritip\",\n  \"teritis\",\n  \"teritorial\",\n  \"teritorium\",\n  \"teriujung\",\n  \"terjal\",\n  \"terjang\",\n  \"terjemah\",\n  \"terjun\",\n  \"terka\",\n  \"terkadang\",\n  \"terkam\",\n  \"terkap\",\n  \"terkul\",\n  \"terkup\",\n  \"terlak\",\n  \"terlalu\",\n  \"terlut\",\n  \"term\",\n  \"termaestesia\",\n  \"termal\",\n  \"termin\",\n  \"terminal\",\n  \"terminasi\",\n  \"terminografi\",\n  \"terminologi\",\n  \"termion\",\n  \"termionika\",\n  \"termistor\",\n  \"termodinamika\",\n  \"termodinamis\",\n  \"termoelektris\",\n  \"termoelektrisitas\",\n  \"termofili\",\n  \"termofilik\",\n  \"termofosforesens\",\n  \"termograf\",\n  \"termogram\",\n  \"termohigrograf\",\n  \"termokimia\",\n  \"termoklin\",\n  \"termolabil\",\n  \"termolisis\",\n  \"termolistrik\",\n  \"termoluminesens\",\n  \"termometer\",\n  \"termonuklir\",\n  \"termoplastik\",\n  \"termos\",\n  \"termosfer\",\n  \"termostat\",\n  \"terna\",\n  \"ternak\",\n  \"terobos\",\n  \"terok\",\n  \"teroka\",\n  \"terombol\",\n  \"teromol\",\n  \"terompah\",\n  \"terompet\",\n  \"terondol\",\n  \"terong\",\n  \"terongko\",\n  \"teropong\",\n  \"teror\",\n  \"teroris\",\n  \"terorisme\",\n  \"terowongan\",\n  \"terpa\",\n  \"terpal\",\n  \"terpana\",\n  \"terpedo\",\n  \"terpentin\",\n  \"tersier\",\n  \"tertawa\",\n  \"tertib\",\n  \"terubuk\",\n  \"terubus\",\n  \"terucuk\",\n  \"terucukan\",\n  \"teruk\",\n  \"terum\",\n  \"terumba\",\n  \"terumbu\",\n  \"terumbuk\",\n  \"teruna\",\n  \"terung\",\n  \"terungku\",\n  \"teruntum\",\n  \"terup\",\n  \"terus\",\n  \"terusi\",\n  \"terwelu\",\n  \"terzina\",\n  \"tes\",\n  \"tesaurus\",\n  \"tesis\",\n  \"tesmak\",\n  \"testa\",\n  \"testamen\",\n  \"tester\",\n  \"testes\",\n  \"testikel\",\n  \"testimonium\",\n  \"testing\",\n  \"testis\",\n  \"testosteron\",\n  \"teta\",\n  \"tetak\",\n  \"tetal\",\n  \"tetampan\",\n  \"tetamu\",\n  \"tetangga\",\n  \"tetanus\",\n  \"tetap\",\n  \"tetapi\",\n  \"tetar\",\n  \"tetas\",\n  \"teteguk\",\n  \"teteh\",\n  \"tetek\",\n  \"tetelan\",\n  \"tetelo\",\n  \"teter\",\n  \"teterapan\",\n  \"tetes\",\n  \"tetibar\",\n  \"tetibau\",\n  \"tetikus\",\n  \"tetirah\",\n  \"tetiron\",\n  \"tetoron\",\n  \"tetra\",\n  \"tetrahidrokanabinol\",\n  \"tetrahidron\",\n  \"tetraklorida\",\n  \"tetraploid\",\n  \"tetris\",\n  \"tetua\",\n  \"tetuang\",\n  \"tewas\",\n  \"teyan\",\n  \"tezi\",\n  \"theta\",\n  \"tiada\",\n  \"tiaga\",\n  \"tiam\",\n  \"tian\",\n  \"tiang\",\n  \"tiangui\",\n  \"tiap\",\n  \"tiara\",\n  \"tiarap\",\n  \"tib\",\n  \"tiba\",\n  \"tiban\",\n  \"tidak\",\n  \"tidur\",\n  \"tifa\",\n  \"tifus\",\n  \"tiga\",\n  \"tigari\",\n  \"tigas\",\n  \"tihul\",\n  \"tijaniah\",\n  \"tik\",\n  \"tika\",\n  \"tikai\",\n  \"tikam\",\n  \"tikar\",\n  \"tikas\",\n  \"tike\",\n  \"tiket\",\n  \"tikim\",\n  \"tikpi\",\n  \"tikung\",\n  \"tikus\",\n  \"tilam\",\n  \"tilan\",\n  \"tilang\",\n  \"tilap\",\n  \"tilas\",\n  \"tilawah\",\n  \"tilde\",\n  \"tilik\",\n  \"tim\",\n  \"timah\",\n  \"timang\",\n  \"timarah\",\n  \"timba\",\n  \"timbal\",\n  \"timbang\",\n  \"timbau\",\n  \"timbel\",\n  \"timbil\",\n  \"timbo\",\n  \"timbre\",\n  \"timbrung\",\n  \"timbuk\",\n  \"timbul\",\n  \"timbun\",\n  \"timburu\",\n  \"timbus\",\n  \"timi\",\n  \"timol\",\n  \"timpa\",\n  \"timpal\",\n  \"timpang\",\n  \"timpani\",\n  \"timpanitis\",\n  \"timpanum\",\n  \"timpas\",\n  \"timpuh\",\n  \"timpuk\",\n  \"timpus\",\n  \"timu-timu\",\n  \"timun\",\n  \"timur\",\n  \"timus\",\n  \"tin\",\n  \"tindak\",\n  \"tindan\",\n  \"tindas\",\n  \"tindawan\",\n  \"tindih\",\n  \"tindik\",\n  \"tindis\",\n  \"tiner\",\n  \"ting\",\n  \"tinggal\",\n  \"tinggam\",\n  \"tinggi\",\n  \"tinggung\",\n  \"tingi\",\n  \"tingkah\",\n  \"tingkal\",\n  \"tingkalak\",\n  \"tingkap\",\n  \"tingkar\",\n  \"tingkarang\",\n  \"tingkarung\",\n  \"tingkas\",\n  \"tingkat\",\n  \"tingkeb\",\n  \"tingkis\",\n  \"tingkrang\",\n  \"tingkuh\",\n  \"tingting\",\n  \"tingtong\",\n  \"tingtur\",\n  \"tinja\",\n  \"tinjak\",\n  \"tinjau\",\n  \"tinju\",\n  \"tinta\",\n  \"tinting\",\n  \"tintir\",\n  \"tinulat\",\n  \"tip\",\n  \"tipar\",\n  \"tipe\",\n  \"tipi\",\n  \"tipikal\",\n  \"tipis\",\n  \"tipograf\",\n  \"tipografi\",\n  \"tipologi\",\n  \"tipologis\",\n  \"tipu\",\n  \"tir\",\n  \"tirah\",\n  \"tirai\",\n  \"tirakat\",\n  \"tiram\",\n  \"tiran\",\n  \"tirani\",\n  \"tiras\",\n  \"tiraton\",\n  \"tirau\",\n  \"tiri\",\n  \"tiris\",\n  \"tirkah\",\n  \"tiroid\",\n  \"tiroiditis\",\n  \"tiroksin\",\n  \"tirta\",\n  \"tiru\",\n  \"tirus\",\n  \"tis\",\n  \"tisik\",\n  \"tisotropi\",\n  \"tisu\",\n  \"titah\",\n  \"titanium\",\n  \"titar\",\n  \"titel\",\n  \"titer\",\n  \"titi\",\n  \"titik\",\n  \"titilasi\",\n  \"titimangsa\",\n  \"titinada\",\n  \"titip\",\n  \"titir\",\n  \"titis\",\n  \"titisara\",\n  \"titit\",\n  \"titrasi\",\n  \"titrimetri\",\n  \"tituler\",\n  \"tiung\",\n  \"tiup\",\n  \"tiwah\",\n  \"tiwikrama\",\n  \"tiwul\",\n  \"tmesis\",\n  \"toapekong\",\n  \"toas\",\n  \"tobak\",\n  \"tobang\",\n  \"tobat\",\n  \"toblos\",\n  \"toboh\",\n  \"tobong\",\n  \"tobralko\",\n  \"todak\",\n  \"todong\",\n  \"toga\",\n  \"togan\",\n  \"toge\",\n  \"togel\",\n  \"togok\",\n  \"toh\",\n  \"tohok\",\n  \"tohor\",\n  \"toilet\",\n  \"tok\",\n  \"tokak\",\n  \"tokcer\",\n  \"toke\",\n  \"tokek\",\n  \"toko\",\n  \"tokoh\",\n  \"tokok\",\n  \"tokong\",\n  \"toksemia\",\n  \"toksikogenik\",\n  \"toksikolog\",\n  \"toksikologi\",\n  \"toksin\",\n  \"toktok\",\n  \"tol\",\n  \"tolak\",\n  \"tolan\",\n  \"tolap\",\n  \"toleh\",\n  \"toleran\",\n  \"toleransi\",\n  \"tolerir\",\n  \"tolok\",\n  \"tolol\",\n  \"tolong\",\n  \"toluena\",\n  \"tom\",\n  \"toman\",\n  \"tomang\",\n  \"tomat\",\n  \"tombak\",\n  \"tomboi\",\n  \"tombok\",\n  \"tombol\",\n  \"tombola\",\n  \"tombong\",\n  \"tombru\",\n  \"tomong\",\n  \"tompel\",\n  \"ton\",\n  \"tona\",\n  \"tonase\",\n  \"tonem\",\n  \"tonetika\",\n  \"tong\",\n  \"tonggak\",\n  \"tonggara\",\n  \"tonggek\",\n  \"tonggeret\",\n  \"tonggok\",\n  \"tonggong\",\n  \"tonggos\",\n  \"tongkah\",\n  \"tongkang\",\n  \"tongkat\",\n  \"tongkeng\",\n  \"tongkol\",\n  \"tongkor\",\n  \"tongkrong\",\n  \"tongol\",\n  \"tongong\",\n  \"tongpes\",\n  \"tongsan\",\n  \"tongseng\",\n  \"tongsit\",\n  \"tongtong\",\n  \"tonik\",\n  \"tonikum\",\n  \"tonil\",\n  \"tonis\",\n  \"tonisitas\",\n  \"tonit\",\n  \"tonjok\",\n  \"tonjol\",\n  \"tonometer\",\n  \"tonsil\",\n  \"tonton\",\n  \"tonus\",\n  \"top\",\n  \"topan\",\n  \"topang\",\n  \"topas\",\n  \"topdal\",\n  \"topek\",\n  \"topeng\",\n  \"topes\",\n  \"tophit\",\n  \"topi\",\n  \"topiari\",\n  \"topik\",\n  \"topikalisasi\",\n  \"topikalitas\",\n  \"topo\",\n  \"topografi\",\n  \"topografis\",\n  \"topong\",\n  \"toponimi\",\n  \"torak\",\n  \"toraks\",\n  \"torani\",\n  \"toreh\",\n  \"torek\",\n  \"tores\",\n  \"torida\",\n  \"torium\",\n  \"tornado\",\n  \"torne\",\n  \"toro\",\n  \"torpedo\",\n  \"torpedor\",\n  \"torsi\",\n  \"torso\",\n  \"tortor\",\n  \"torus\",\n  \"tos\",\n  \"tosan\",\n  \"toserba\",\n  \"total\",\n  \"totalisator\",\n  \"totalitas\",\n  \"totaliter\",\n  \"totaliterisme\",\n  \"totau\",\n  \"totem\",\n  \"totemisme\",\n  \"totemproparte\",\n  \"totok\",\n  \"totol\",\n  \"towel\",\n  \"toya\",\n  \"toyor\",\n  \"tra\",\n  \"trabekula\",\n  \"tradisi\",\n  \"tradisional\",\n  \"tradisionalisme\",\n  \"trafo\",\n  \"tragedi\",\n  \"tragikomedi\",\n  \"tragis\",\n  \"tragus\",\n  \"trailer\",\n  \"trakeid\",\n  \"trakom\",\n  \"traksi\",\n  \"traktasi\",\n  \"traktat\",\n  \"traktir\",\n  \"traktor\",\n  \"traktus\",\n  \"trama\",\n  \"trampolin\",\n  \"trans\",\n  \"transaksi\",\n  \"transduksi\",\n  \"transek\",\n  \"transeksual\",\n  \"transenden\",\n  \"transendental\",\n  \"transfer\",\n  \"transfigurasi\",\n  \"transformasi\",\n  \"transformasionalis\",\n  \"transformatif\",\n  \"transformator\",\n  \"transfusi\",\n  \"transgenik\",\n  \"transisi\",\n  \"transistor\",\n  \"transit\",\n  \"transitif\",\n  \"transkrip\",\n  \"transkripsi\",\n  \"translasi\",\n  \"transliterasi\",\n  \"translokasi\",\n  \"translusens\",\n  \"transmigran\",\n  \"transmigrasi\",\n  \"transmisi\",\n  \"transmiter\",\n  \"transmogrifikasi\",\n  \"transmutasi\",\n  \"transnasional\",\n  \"transonik\",\n  \"transparan\",\n  \"transparansi\",\n  \"transpirasi\",\n  \"transplantasi\",\n  \"transpor\",\n  \"transportasi\",\n  \"transposisi\",\n  \"transversal\",\n  \"transvetisme\",\n  \"trap\",\n  \"trapesium\",\n  \"trapezoid\",\n  \"tras\",\n  \"trauler\",\n  \"trauma\",\n  \"traumatis\",\n  \"travesti\",\n  \"trawler\",\n  \"trayek\",\n  \"trek\",\n  \"trekbal\",\n  \"trem\",\n  \"trema\",\n  \"trematoda\",\n  \"trembesi\",\n  \"tremer\",\n  \"tremor\",\n  \"tren\",\n  \"trendi\",\n  \"trengginas\",\n  \"trenyuh\",\n  \"tres\",\n  \"tresna\",\n  \"tri\",\n  \"trias\",\n  \"triatlon\",\n  \"tribokelistrikan\",\n  \"tribologi\",\n  \"tribrata\",\n  \"tribunal\",\n  \"tribune\",\n  \"tributa\",\n  \"trica\",\n  \"tridarma\",\n  \"tridentat\",\n  \"trienial\",\n  \"triennale\",\n  \"trifoliat\",\n  \"triftong\",\n  \"trigatra\",\n  \"trigemius\",\n  \"trigliserida\",\n  \"trigonometri\",\n  \"trigraf\",\n  \"trihidrik\",\n  \"trik\",\n  \"triko\",\n  \"trikotomi\",\n  \"trikuspid\",\n  \"tril\",\n  \"trilateral\",\n  \"trilingga\",\n  \"trilipat\",\n  \"triliun\",\n  \"trilogi\",\n  \"trilomba\",\n  \"trim\",\n  \"trimatra\",\n  \"trimurti\",\n  \"trinil\",\n  \"trinitas\",\n  \"trinitrotoluena\",\n  \"trio\",\n  \"triode\",\n  \"trip\",\n  \"tripartit\",\n  \"tripleks\",\n  \"triplet\",\n  \"triplik\",\n  \"tripod\",\n  \"triprasetia\",\n  \"trips\",\n  \"tripsin\",\n  \"tripsinogen\",\n  \"triptofan\",\n  \"triptotos\",\n  \"trisep\",\n  \"trisula\",\n  \"tritunggal\",\n  \"triturasi\",\n  \"triumvirat\",\n  \"trivalen\",\n  \"trivialitas\",\n  \"triwangsa\",\n  \"triwindu\",\n  \"triwulan\",\n  \"trofi\",\n  \"trofoblas\",\n  \"troi\",\n  \"troika\",\n  \"trokanter\",\n  \"trokea\",\n  \"troli\",\n  \"trombin\",\n  \"trombon\",\n  \"trombosis\",\n  \"trombosit\",\n  \"trombus\",\n  \"tromol\",\n  \"trompet\",\n  \"trompong\",\n  \"tropik\",\n  \"tropika\",\n  \"tropis\",\n  \"tropisme\",\n  \"tropopause\",\n  \"troposfer\",\n  \"tropus\",\n  \"tros\",\n  \"trotoar\",\n  \"trubadur\",\n  \"truf\",\n  \"truk\",\n  \"truntum\",\n  \"trusa\",\n  \"tsar\",\n  \"tsunami\",\n  \"tsuru\",\n  \"tua\",\n  \"tuah\",\n  \"tuai\",\n  \"tuak\",\n  \"tual\",\n  \"tuala\",\n  \"tualang\",\n  \"tuam\",\n  \"tuan\",\n  \"tuang\",\n  \"tuangku\",\n  \"tuanku\",\n  \"tuap\",\n  \"tuar\",\n  \"tuarang\",\n  \"tuas\",\n  \"tuba\",\n  \"tubagus\",\n  \"tuban\",\n  \"tube\",\n  \"tubektomi\",\n  \"tuberkulosis\",\n  \"tubi\",\n  \"tubin\",\n  \"tubir\",\n  \"tubruk\",\n  \"tubuh\",\n  \"tuding\",\n  \"tuduh\",\n  \"tudung\",\n  \"tufa\",\n  \"tufah\",\n  \"tugal\",\n  \"tugar\",\n  \"tugas\",\n  \"tugi\",\n  \"tugu\",\n  \"tugur\",\n  \"tuhan\",\n  \"tuhfah\",\n  \"tuhfahlulajnas\",\n  \"tuhfahtulajnas\",\n  \"tuhfat\",\n  \"tuhmah\",\n  \"tuhu\",\n  \"tuidi\",\n  \"tuil\",\n  \"tuit\",\n  \"tujah\",\n  \"tuji\",\n  \"tuju\",\n  \"tujuh\",\n  \"tujul\",\n  \"tuk\",\n  \"tukai\",\n  \"tukak\",\n  \"tukal\",\n  \"tukam\",\n  \"tukang\",\n  \"tukar\",\n  \"tukas\",\n  \"tukik\",\n  \"tukil\",\n  \"tukmis\",\n  \"tuksedo\",\n  \"tuku\",\n  \"tukuk\",\n  \"tukul\",\n  \"tukun\",\n  \"tukung\",\n  \"tukup\",\n  \"tula\",\n  \"tulah\",\n  \"tulak\",\n  \"tulang\",\n  \"tular\",\n  \"tulat\",\n  \"tule\",\n  \"tulen\",\n  \"tuli\",\n  \"tulis\",\n  \"tulium\",\n  \"tulu\",\n  \"tulup\",\n  \"tulus\",\n  \"tum\",\n  \"tuma\",\n  \"tuman\",\n  \"tumang\",\n  \"tumbakan\",\n  \"tumbal\",\n  \"tumbang\",\n  \"tumbas\",\n  \"tumben\",\n  \"tumbu\",\n  \"tumbuh\",\n  \"tumbuk\",\n  \"tumbung\",\n  \"tumenggung\",\n  \"tumika\",\n  \"tumis\",\n  \"tumit\",\n  \"tumor\",\n  \"tumpah\",\n  \"tumpak\",\n  \"tumpal\",\n  \"tumpang\",\n  \"tumpang-tindih\",\n  \"tumpas\",\n  \"tumpat\",\n  \"tumpeng\",\n  \"tumper\",\n  \"tumpil\",\n  \"tumplak\",\n  \"tumplek\",\n  \"tumpu\",\n  \"tumpuk\",\n  \"tumpul\",\n  \"tumpur\",\n  \"tumtam\",\n  \"tumu\",\n  \"tumungkul\",\n  \"tumus\",\n  \"tun\",\n  \"tuna\",\n  \"tunaaksara\",\n  \"tunabusana\",\n  \"tunadaksa\",\n  \"tunaganda\",\n  \"tunagizi\",\n  \"tunagrahita\",\n  \"tunai\",\n  \"tunak\",\n  \"tunakarya\",\n  \"tunalaras\",\n  \"tunam\",\n  \"tunan\",\n  \"tunanetra\",\n  \"tunang\",\n  \"tunapolitik\",\n  \"tunarungu\",\n  \"tunas\",\n  \"tunasosial\",\n  \"tunasusila\",\n  \"tunatenaga\",\n  \"tunawicara\",\n  \"tunawisma\",\n  \"tunda\",\n  \"tundan\",\n  \"tundang\",\n  \"tundra\",\n  \"tunduk\",\n  \"tundun\",\n  \"tundung\",\n  \"tung\",\n  \"tungau\",\n  \"tunggak\",\n  \"tunggal\",\n  \"tungganai\",\n  \"tunggang\",\n  \"tunggik\",\n  \"tungging\",\n  \"tunggu\",\n  \"tunggul\",\n  \"tungkahan\",\n  \"tungkai\",\n  \"tungkak\",\n  \"tungkap\",\n  \"tungku\",\n  \"tungkul\",\n  \"tungkup\",\n  \"tungkus\",\n  \"tungro\",\n  \"tungsten\",\n  \"tungu\",\n  \"tunik\",\n  \"tunjal\",\n  \"tunjam\",\n  \"tunjang\",\n  \"tunjuk\",\n  \"tunjung\",\n  \"tuntas\",\n  \"tuntun\",\n  \"tuntung\",\n  \"tuntut\",\n  \"tunu\",\n  \"tupai\",\n  \"tur\",\n  \"tura\",\n  \"turang\",\n  \"turangga\",\n  \"turap\",\n  \"turas\",\n  \"turba\",\n  \"turbiditas\",\n  \"turbin\",\n  \"turbogenerator\",\n  \"turbojet\",\n  \"turbulen\",\n  \"turbulensi\",\n  \"turfat\",\n  \"turgor\",\n  \"turi\",\n  \"turiang\",\n  \"turinisasi\",\n  \"turis\",\n  \"turisme\",\n  \"turistik\",\n  \"turkuois\",\n  \"turmalin\",\n  \"turnamen\",\n  \"turne\",\n  \"turnoi\",\n  \"tursi\",\n  \"turun\",\n  \"turus\",\n  \"turut\",\n  \"tus\",\n  \"tusam\",\n  \"tusir\",\n  \"tuslah\",\n  \"tustel\",\n  \"tusuk\",\n  \"tuter\",\n  \"tutor\",\n  \"tutorial\",\n  \"tuts\",\n  \"tutu\",\n  \"tutuh\",\n  \"tutuk\",\n  \"tutul\",\n  \"tutung\",\n  \"tutup\",\n  \"tutur\",\n  \"tutut\",\n  \"tuwuhan\",\n  \"tuwung\",\n  \"tuyuk\",\n  \"tuyul\",\n  \"uai\",\n  \"uak\",\n  \"uan\",\n  \"uanda\",\n  \"uang\",\n  \"uap\",\n  \"uar\",\n  \"uba\",\n  \"ubah\",\n  \"uban\",\n  \"ubang\",\n  \"ubar\",\n  \"ubat\",\n  \"ubek\",\n  \"ubel\",\n  \"uber\",\n  \"ubet\",\n  \"ubi\",\n  \"ubikuitas\",\n  \"ubin\",\n  \"ubit\",\n  \"ubrak-abrik\",\n  \"ubub\",\n  \"ubudiah\",\n  \"ubun-ubun\",\n  \"ubung\",\n  \"ubur-ubur\",\n  \"ubyang-ubyung\",\n  \"ucap\",\n  \"ucek\",\n  \"uci-uci\",\n  \"ucis\",\n  \"ucok\",\n  \"ucu\",\n  \"ucus\",\n  \"uda\",\n  \"udak\",\n  \"udam\",\n  \"udang\",\n  \"udani\",\n  \"udap\",\n  \"udar\",\n  \"udara\",\n  \"ude\",\n  \"udek\",\n  \"udel\",\n  \"udeng\",\n  \"udet\",\n  \"udi\",\n  \"udik\",\n  \"udim\",\n  \"udo\",\n  \"udu\",\n  \"uduh\",\n  \"uduk\",\n  \"udut\",\n  \"uek\",\n  \"ufti\",\n  \"ufuk\",\n  \"ugahari\",\n  \"ugal-ugalan\",\n  \"ugem\",\n  \"uger\",\n  \"uget-uget\",\n  \"ugut\",\n  \"uhu\",\n  \"uih\",\n  \"uik\",\n  \"uir-uir\",\n  \"uis\",\n  \"uit\",\n  \"ujana\",\n  \"ujang\",\n  \"ujar\",\n  \"uji\",\n  \"uju\",\n  \"ujub\",\n  \"ujud\",\n  \"ujuk\",\n  \"ujul\",\n  \"ujung\",\n  \"ukas\",\n  \"ukhrawi\",\n  \"ukhuwah\",\n  \"ukik\",\n  \"ukir\",\n  \"uktab\",\n  \"ukulele\",\n  \"ukup\",\n  \"ukur\",\n  \"ula-ula\",\n  \"ulah\",\n  \"ulak\",\n  \"ulam\",\n  \"ulama\",\n  \"ulan\",\n  \"ulang\",\n  \"ulang-alik\",\n  \"ulang-aling\",\n  \"ulap-ulap\",\n  \"ular\",\n  \"ulas\",\n  \"ulat\",\n  \"ulayah\",\n  \"ulayat\",\n  \"ulek\",\n  \"ulem\",\n  \"ulen\",\n  \"ules\",\n  \"ulet\",\n  \"uli\",\n  \"ulik\",\n  \"ulin\",\n  \"uling\",\n  \"ulir\",\n  \"ulit\",\n  \"ulna\",\n  \"ulos\",\n  \"ultima\",\n  \"ultimatum\",\n  \"ultimo\",\n  \"ultimogenitur\",\n  \"ultra\",\n  \"ultrafilter\",\n  \"ultramarin\",\n  \"ultramikroskopik\",\n  \"ultramikroskopiks\",\n  \"ultramodern\",\n  \"ultrasonik\",\n  \"ultrasonika\",\n  \"ultrasonografi\",\n  \"ultraungu\",\n  \"ultraviolet\",\n  \"ulu\",\n  \"uluk\",\n  \"ulun\",\n  \"ulung\",\n  \"ulup\",\n  \"ulur\",\n  \"uma\",\n  \"umak\",\n  \"uman\",\n  \"umang-umang\",\n  \"umara\",\n  \"umat\",\n  \"umbai\",\n  \"umbalan\",\n  \"umban\",\n  \"umbang\",\n  \"umbang-ambing\",\n  \"umbar\",\n  \"umbara\",\n  \"umbi\",\n  \"umbilikus\",\n  \"umbin\",\n  \"umbisi\",\n  \"umbo\",\n  \"umbra\",\n  \"umbu\",\n  \"umbuk\",\n  \"umbul\",\n  \"umbur-umbur\",\n  \"umbut\",\n  \"umi\",\n  \"umlaut\",\n  \"umpak\",\n  \"umpama\",\n  \"umpan\",\n  \"umpat\",\n  \"umpet\",\n  \"umpil\",\n  \"umpuk\",\n  \"umpun\",\n  \"umput\",\n  \"umrah\",\n  \"umu\",\n  \"umuk\",\n  \"umum\",\n  \"umun\",\n  \"umur\",\n  \"unam\",\n  \"uncang\",\n  \"uncang-uncit\",\n  \"uncit\",\n  \"uncu\",\n  \"uncue\",\n  \"uncui\",\n  \"unda\",\n  \"undagi\",\n  \"undak\",\n  \"undan\",\n  \"undang\",\n  \"undi\",\n  \"unduh\",\n  \"unduk-unduk\",\n  \"undung-undung\",\n  \"undur\",\n  \"unek-unek\",\n  \"ungah-angih\",\n  \"ungam\",\n  \"ungar\",\n  \"unggah\",\n  \"unggal\",\n  \"unggang-anggit\",\n  \"unggas\",\n  \"unggat-unggit\",\n  \"unggis\",\n  \"unggit\",\n  \"unggul\",\n  \"unggun\",\n  \"unggut\",\n  \"ungka\",\n  \"ungkah\",\n  \"ungkai\",\n  \"ungkak\",\n  \"ungkal\",\n  \"ungkap\",\n  \"ungkat\",\n  \"ungkau\",\n  \"ungkil\",\n  \"ungkir\",\n  \"ungkit\",\n  \"ungkul\",\n  \"ungkur\",\n  \"ungsi\",\n  \"ungti\",\n  \"ungu\",\n  \"unguis\",\n  \"uni\",\n  \"uniat\",\n  \"unifikasi\",\n  \"uniform\",\n  \"uniformitas\",\n  \"unik\",\n  \"unilateral\",\n  \"unilineal\",\n  \"unilinear\",\n  \"union\",\n  \"uniseks\",\n  \"uniseluler\",\n  \"unit\",\n  \"unitaris\",\n  \"unitarisme\",\n  \"univalen\",\n  \"universal\",\n  \"universalia\",\n  \"universalisme\",\n  \"universalitas\",\n  \"universiade\",\n  \"universitas\",\n  \"universiter\",\n  \"universitet\",\n  \"universum\",\n  \"unjuk\",\n  \"unjun\",\n  \"unjung\",\n  \"unjur\",\n  \"unjut\",\n  \"unsur\",\n  \"unsuri\",\n  \"unta\",\n  \"untai\",\n  \"untal\",\n  \"untang-anting\",\n  \"unti\",\n  \"until\",\n  \"unting\",\n  \"untir\",\n  \"untuk\",\n  \"untun\",\n  \"untung\",\n  \"untut\",\n  \"unun\",\n  \"unyai\",\n  \"upa\",\n  \"upaboga\",\n  \"upacara\",\n  \"upaduta\",\n  \"upah\",\n  \"upajiwa\",\n  \"upak\",\n  \"upakara\",\n  \"upakarti\",\n  \"upam\",\n  \"upan\",\n  \"upanishad\",\n  \"upar\",\n  \"upau\",\n  \"upawasa\",\n  \"upaya\",\n  \"upet\",\n  \"upeti\",\n  \"upih\",\n  \"upik\",\n  \"upil\",\n  \"upsilon\",\n  \"ura-ura\",\n  \"uraemia\",\n  \"urah\",\n  \"urai\",\n  \"urak\",\n  \"urakus\",\n  \"uran-uran\",\n  \"uranisme\",\n  \"uranium\",\n  \"uranologi\",\n  \"uranus\",\n  \"urap\",\n  \"uras\",\n  \"urat\",\n  \"urban\",\n  \"urbanisasi\",\n  \"urbanisme\",\n  \"urdu\",\n  \"urea\",\n  \"uremia\",\n  \"ureter\",\n  \"uretra\",\n  \"uretritis\",\n  \"urgen\",\n  \"urgensi\",\n  \"uri\",\n  \"urian\",\n  \"uribang\",\n  \"urik\",\n  \"urinalisis\",\n  \"urine\",\n  \"uring\",\n  \"urinoar\",\n  \"urinometer\",\n  \"urip\",\n  \"uris\",\n  \"urit\",\n  \"urita\",\n  \"uritan\",\n  \"urna\",\n  \"urolog\",\n  \"urologi\",\n  \"uroskopi\",\n  \"uruk\",\n  \"urun\",\n  \"urung\",\n  \"urup\",\n  \"urus\",\n  \"urut\",\n  \"usada\",\n  \"usah\",\n  \"usaha\",\n  \"usai\",\n  \"usak\",\n  \"usali\",\n  \"usam\",\n  \"usang\",\n  \"usap\",\n  \"usar\",\n  \"usat\",\n  \"user-user\",\n  \"usia\",\n  \"usik\",\n  \"usil\",\n  \"usir\",\n  \"uskup\",\n  \"usrek\",\n  \"ustad\",\n  \"ustaz\",\n  \"ustazah\",\n  \"usuk\",\n  \"usul\",\n  \"usuluddin\",\n  \"usung\",\n  \"usur\",\n  \"usus\",\n  \"usut\",\n  \"uswah\",\n  \"utak-atik\",\n  \"utama\",\n  \"utang\",\n  \"utar-utar\",\n  \"utara\",\n  \"utarid\",\n  \"utas\",\n  \"uterus\",\n  \"utih\",\n  \"utik\",\n  \"utilitas\",\n  \"utopia\",\n  \"utopis\",\n  \"utopisme\",\n  \"utrikel\",\n  \"utrolokal\",\n  \"utuh\",\n  \"utus\",\n  \"uvula\",\n  \"uvular\",\n  \"uwar\",\n  \"uwungan\",\n  \"uwur\",\n  \"uyuh\",\n  \"uzlah\",\n  \"uzur\",\n  \"vagina\",\n  \"vak\",\n  \"vakansi\",\n  \"vakasi\",\n  \"vakatur\",\n  \"vakbon\",\n  \"vaksin\",\n  \"vaksinasi\",\n  \"vakum\",\n  \"vakuol\",\n  \"vakuola\",\n  \"valas\",\n  \"valensi\",\n  \"valentin\",\n  \"valentine\",\n  \"valeria\",\n  \"valid\",\n  \"validitas\",\n  \"valis\",\n  \"valium\",\n  \"valorisasi\",\n  \"valuta\",\n  \"vampir\",\n  \"vanadium\",\n  \"vandal\",\n  \"vandalisme\",\n  \"vandalistis\",\n  \"vandel\",\n  \"vanili\",\n  \"varia\",\n  \"variabel\",\n  \"variabilitas\",\n  \"varian\",\n  \"variansi\",\n  \"variasi\",\n  \"variatif\",\n  \"varietas\",\n  \"variola\",\n  \"varises\",\n  \"vas\",\n  \"vasal\",\n  \"vasektomi\",\n  \"vaselin\",\n  \"vaskular\",\n  \"vaskularisasi\",\n  \"vaskuler\",\n  \"vaskulum\",\n  \"vasodilasi\",\n  \"vasodilator\",\n  \"vasomotor\",\n  \"vatikan\",\n  \"vaucer\",\n  \"vedda\",\n  \"veddoid\",\n  \"veem\",\n  \"vegetarian\",\n  \"vegetarir\",\n  \"vegetaris\",\n  \"vegetarisme\",\n  \"vegetasi\",\n  \"vektor\",\n  \"velamentum\",\n  \"velar\",\n  \"velarisasi\",\n  \"velodrom\",\n  \"velositas\",\n  \"velum\",\n  \"vena\",\n  \"venal\",\n  \"venalitas\",\n  \"vendeta\",\n  \"vendor\",\n  \"ventilasi\",\n  \"ventilator\",\n  \"ventrikel\",\n  \"ventrikulus\",\n  \"venus\",\n  \"verba\",\n  \"verbal\",\n  \"verbalisan\",\n  \"verbalisasi\",\n  \"verbalisme\",\n  \"verbalistis\",\n  \"verbatim\",\n  \"verbena\",\n  \"verdigris\",\n  \"verifikasi\",\n  \"verifikatur\",\n  \"veritisme\",\n  \"verkoper\",\n  \"vermilium\",\n  \"vermiliun\",\n  \"vermiseli\",\n  \"vermisida\",\n  \"vernis\",\n  \"veronal\",\n  \"verset\",\n  \"versi\",\n  \"verso\",\n  \"verstek\",\n  \"versus\",\n  \"vertebra\",\n  \"vertebrata\",\n  \"vertikal\",\n  \"verzet\",\n  \"vespa\",\n  \"veste\",\n  \"vestibul\",\n  \"vestibula\",\n  \"vestibulum\",\n  \"vet\",\n  \"veter\",\n  \"veteran\",\n  \"veterinarian\",\n  \"veteriner\",\n  \"vetiver\",\n  \"veto\",\n  \"vetsin\",\n  \"via\",\n  \"viabel\",\n  \"viabilitas\",\n  \"viaduk\",\n  \"vibran\",\n  \"vibrasi\",\n  \"vibrator\",\n  \"vibrio\",\n  \"vide\",\n  \"video\",\n  \"videofon\",\n  \"videoklip\",\n  \"videoteks\",\n  \"vigia\",\n  \"vigili\",\n  \"vignet\",\n  \"vikariat\",\n  \"vikaris\",\n  \"vila\",\n  \"vinil\",\n  \"vinyet\",\n  \"viol\",\n  \"viola\",\n  \"violces\",\n  \"violet\",\n  \"violin\",\n  \"violinis\",\n  \"violis\",\n  \"virga\",\n  \"virginia\",\n  \"virgo\",\n  \"virilis\",\n  \"virilisme\",\n  \"virilitas\",\n  \"virilokal\",\n  \"virologi\",\n  \"virtual\",\n  \"virtuoso\",\n  \"virulen\",\n  \"virulensi\",\n  \"virus\",\n  \"visa\",\n  \"visera\",\n  \"visi\",\n  \"visibel\",\n  \"visibilitas\",\n  \"visioner\",\n  \"visitasi\",\n  \"visitator\",\n  \"visiun\",\n  \"viskometer\",\n  \"viskose\",\n  \"viskositas\",\n  \"vista\",\n  \"visual\",\n  \"visualisasi\",\n  \"visum\",\n  \"visus\",\n  \"vitakultur\",\n  \"vital\",\n  \"vitalitas\",\n  \"vitamin\",\n  \"vitelin\",\n  \"vitiligo\",\n  \"vitreositas\",\n  \"vitrifikasi\",\n  \"vitriol\",\n  \"vivarium\",\n  \"vivifikasi\",\n  \"vivipar\",\n  \"vla\",\n  \"vlek\",\n  \"voal\",\n  \"vodka\",\n  \"vokabularium\",\n  \"vokabuler\",\n  \"vokal\",\n  \"vokalia\",\n  \"vokalis\",\n  \"vokasional\",\n  \"vokatif\",\n  \"vokoid\",\n  \"volatil\",\n  \"volatilitas\",\n  \"voli\",\n  \"volt\",\n  \"voltameter\",\n  \"voltase\",\n  \"volume\",\n  \"volumeter\",\n  \"volumetri\",\n  \"volunter\",\n  \"vonis\",\n  \"vopo\",\n  \"vorteks\",\n  \"voting\",\n  \"votum\",\n  \"vrah\",\n  \"vrahoto\",\n  \"vulgar\",\n  \"vulgata\",\n  \"vulger\",\n  \"vulkan\",\n  \"vulkanis\",\n  \"vulkanisasi\",\n  \"vulkanolog\",\n  \"vulkanologi\",\n  \"vulkavit\",\n  \"vulpen\",\n  \"vulva\",\n  \"vulvektomi\",\n  \"vuring\",\n  \"waad\",\n  \"waadat\",\n  \"wabah\",\n  \"wabakdu\",\n  \"wabarakatuh\",\n  \"wacana\",\n  \"wadah\",\n  \"wadak\",\n  \"wadal\",\n  \"wadam\",\n  \"wadat\",\n  \"wadi\",\n  \"wadon\",\n  \"waduh\",\n  \"waduk\",\n  \"wadung\",\n  \"wafa\",\n  \"wafak\",\n  \"wafat\",\n  \"wage\",\n  \"wagon\",\n  \"wagu\",\n  \"wah\",\n  \"wahah\",\n  \"wahai\",\n  \"waham\",\n  \"wahana\",\n  \"wahdah\",\n  \"wahdaniah\",\n  \"wahdiah\",\n  \"wahib\",\n  \"wahid\",\n  \"wahyu\",\n  \"wai\",\n  \"waid\",\n  \"waima\",\n  \"waisak\",\n  \"waisya\",\n  \"waitankung\",\n  \"wajah\",\n  \"wajan\",\n  \"wajar\",\n  \"wajib\",\n  \"wajik\",\n  \"wak\",\n  \"wakaf\",\n  \"wakil\",\n  \"waktu\",\n  \"wakun\",\n  \"wakwak\",\n  \"walabi\",\n  \"walad\",\n  \"walafiat\",\n  \"walah\",\n  \"walak\",\n  \"walakhir\",\n  \"walakin\",\n  \"walang\",\n  \"walangkopo\",\n  \"walango\",\n  \"walat\",\n  \"walau\",\n  \"walaupun\",\n  \"waledan\",\n  \"waleh\",\n  \"walet\",\n  \"walhal\",\n  \"walhasil\",\n  \"wali\",\n  \"walikukun\",\n  \"walimah\",\n  \"walimana\",\n  \"waliullah\",\n  \"wallahi\",\n  \"wallahualam\",\n  \"wals\",\n  \"waluh\",\n  \"waluku\",\n  \"wambrau\",\n  \"wan\",\n  \"wana\",\n  \"wanara\",\n  \"wanawisata\",\n  \"wanda\",\n  \"wandu\",\n  \"wang\",\n  \"wangi\",\n  \"wangkang\",\n  \"wangsa\",\n  \"wangsit\",\n  \"wani\",\n  \"wanita\",\n  \"wanodya\",\n  \"wantah\",\n  \"wantek\",\n  \"wanti-wanti\",\n  \"wantilan\",\n  \"wara\",\n  \"warak\",\n  \"warakawuri\",\n  \"waralaba\",\n  \"warangan\",\n  \"waranggana\",\n  \"warangka\",\n  \"waras\",\n  \"warasah\",\n  \"warawiri\",\n  \"wardi\",\n  \"warga\",\n  \"wari\",\n  \"waria\",\n  \"warid\",\n  \"waringin\",\n  \"waris\",\n  \"warita\",\n  \"warkat\",\n  \"warna\",\n  \"warna-warni\",\n  \"warok\",\n  \"warsa\",\n  \"warta\",\n  \"waru\",\n  \"waruga\",\n  \"waruna\",\n  \"warung\",\n  \"warwar\",\n  \"wasahlan\",\n  \"wasak\",\n  \"wasal\",\n  \"wasalam\",\n  \"wasangka\",\n  \"wasi\",\n  \"wasiat\",\n  \"wasilah\",\n  \"wasir\",\n  \"wasit\",\n  \"wasitah\",\n  \"waskita\",\n  \"waskom\",\n  \"waslah\",\n  \"waslap\",\n  \"waspada\",\n  \"wastafel\",\n  \"waswas\",\n  \"watak\",\n  \"watan\",\n  \"watang\",\n  \"watas\",\n  \"watase\",\n  \"watermantel\",\n  \"watermark\",\n  \"waterpas\",\n  \"waterpruf\",\n  \"watt\",\n  \"watu\",\n  \"wau\",\n  \"wawa\",\n  \"wawancara\",\n  \"wawanmuka\",\n  \"wawanrembuk\",\n  \"wawas\",\n  \"wawu\",\n  \"wayang\",\n  \"wayuh\",\n  \"wazari\",\n  \"wazir\",\n  \"weda\",\n  \"wedam\",\n  \"wedana\",\n  \"wedang\",\n  \"wedani\",\n  \"wedar\",\n  \"wede\",\n  \"wedel\",\n  \"weduk\",\n  \"wegah\",\n  \"weh\",\n  \"weharima\",\n  \"wejang\",\n  \"wekel\",\n  \"weker\",\n  \"welahar\",\n  \"welas\",\n  \"weling\",\n  \"welirang\",\n  \"welit\",\n  \"welter\",\n  \"welut\",\n  \"wenang\",\n  \"wenter\",\n  \"werak\",\n  \"werangka\",\n  \"werda\",\n  \"werdatama\",\n  \"were\",\n  \"werek\",\n  \"wereng\",\n  \"werit\",\n  \"werst\",\n  \"wese\",\n  \"wesel\",\n  \"weselbor\",\n  \"wesi\",\n  \"wesket\",\n  \"westernis\",\n  \"westernisasi\",\n  \"wet\",\n  \"wetan\",\n  \"weton\",\n  \"wewarah\",\n  \"wewaton\",\n  \"wewe\",\n  \"wibawa\",\n  \"wicaksana\",\n  \"wicara\",\n  \"widi\",\n  \"widiaiswara\",\n  \"widiwasa\",\n  \"widodari\",\n  \"widoro\",\n  \"widuri\",\n  \"widyaiswara\",\n  \"widyawisata\",\n  \"wig\",\n  \"wigata\",\n  \"wihara\",\n  \"wijaya\",\n  \"wijayakusuma\",\n  \"wijayamala\",\n  \"wijayamulia\",\n  \"wijdaniah\",\n  \"wijen\",\n  \"wiji\",\n  \"wijik\",\n  \"wikalat\",\n  \"wiku\",\n  \"wiladah\",\n  \"wilah\",\n  \"wilangon\",\n  \"wilayah\",\n  \"wilis\",\n  \"wilwatikta\",\n  \"wimana\",\n  \"winaya\",\n  \"windu\",\n  \"wing\",\n  \"wingit\",\n  \"winglet\",\n  \"winter\",\n  \"wira\",\n  \"wirabank\",\n  \"wiracarita\",\n  \"wiraga\",\n  \"wirakarya\",\n  \"wirang\",\n  \"wiraniaga\",\n  \"wirasuara\",\n  \"wiraswasta\",\n  \"wirid\",\n  \"wiru\",\n  \"wisa\",\n  \"wisal\",\n  \"wisata\",\n  \"wisaya\",\n  \"wisesa\",\n  \"wisik\",\n  \"wiski\",\n  \"wisma\",\n  \"wisnu\",\n  \"wisuda\",\n  \"witir\",\n  \"wiwaha\",\n  \"wiweka\",\n  \"wiyaga\",\n  \"wiyata\",\n  \"wizurai\",\n  \"wodka\",\n  \"wol\",\n  \"wolanda\",\n  \"wolfram\",\n  \"wombat\",\n  \"won\",\n  \"wong\",\n  \"wora-wari\",\n  \"wortel\",\n  \"wosi\",\n  \"wotogal-agil\",\n  \"wrang\",\n  \"wreda\",\n  \"wredatama\",\n  \"wregu\",\n  \"wrisaba\",\n  \"wudani\",\n  \"wudu\",\n  \"wuduk\",\n  \"wujud\",\n  \"wuker\",\n  \"wukerar\",\n  \"wuku\",\n  \"wukuf\",\n  \"wulan\",\n  \"wulang\",\n  \"wulu\",\n  \"wulung\",\n  \"wungon\",\n  \"wungu\",\n  \"wuwungan\",\n  \"xantat\",\n  \"xantena\",\n  \"xantofil\",\n  \"xenia\",\n  \"xenofili\",\n  \"xenofobia\",\n  \"xenoglosia\",\n  \"xenograf\",\n  \"xenokrasi\",\n  \"xenolit\",\n  \"xenomania\",\n  \"xenon\",\n  \"xerofil\",\n  \"xerofit\",\n  \"xeroftalmia\",\n  \"xerografi\",\n  \"xerosis\",\n  \"xifoid\",\n  \"xilem\",\n  \"xilena\",\n  \"xilofon\",\n  \"xilograf\",\n  \"xilografi\",\n  \"xiloid\",\n  \"xiloidina\",\n  \"xilol\",\n  \"xilologi\",\n  \"xilonit\",\n  \"xilosa\",\n  \"yad\",\n  \"yahud\",\n  \"yahudi\",\n  \"yahudiah\",\n  \"yahwe\",\n  \"yais\",\n  \"yaitu\",\n  \"yakin\",\n  \"yakis\",\n  \"yakitori\",\n  \"yakjuj\",\n  \"yakni\",\n  \"yaksa\",\n  \"yakun\",\n  \"yakut\",\n  \"yamtuan\",\n  \"yang\",\n  \"yantra\",\n  \"yard\",\n  \"yargon\",\n  \"yasan\",\n  \"yasmin\",\n  \"yasti\",\n  \"yatim\",\n  \"yaum\",\n  \"yaumudin\",\n  \"yaumulakhir\",\n  \"yaumulaza\",\n  \"yaumuljamak\",\n  \"yaumuljaza\",\n  \"yaumulkiamah\",\n  \"yaumulmahsyar\",\n  \"yayasan\",\n  \"yayi\",\n  \"yayu\",\n  \"yehova\",\n  \"yel\",\n  \"yen\",\n  \"yeyunum\",\n  \"yodium\",\n  \"yoga\",\n  \"yoghurt\",\n  \"yogi\",\n  \"yogia\",\n  \"yohimbina\",\n  \"yojana\",\n  \"yokal\",\n  \"yolk\",\n  \"yos\",\n  \"yosong\",\n  \"yoyo\",\n  \"yubileum\",\n  \"yuda\",\n  \"yudikatif\",\n  \"yudisial\",\n  \"yudisium\",\n  \"yudo\",\n  \"yudoka\",\n  \"yuk\",\n  \"yunani\",\n  \"yunda\",\n  \"yunior\",\n  \"yunta\",\n  \"yupa\",\n  \"yupiter\",\n  \"yura\",\n  \"yuran\",\n  \"yuridis\",\n  \"yuris\",\n  \"yurisdiksi\",\n  \"yurisprudensi\",\n  \"yustisi\",\n  \"yute\",\n  \"yuvenil\",\n  \"yuwana\",\n  \"yuwaraja\",\n  \"yuyitsu\",\n  \"yuyu\",\n  \"zabah\",\n  \"zabaniah\",\n  \"zabarjad\",\n  \"zabib\",\n  \"zabur\",\n  \"zadah\",\n  \"zahid\",\n  \"zai\",\n  \"zaim\",\n  \"zair\",\n  \"zaitun\",\n  \"zakar\",\n  \"zakat\",\n  \"zakelek\",\n  \"zakiah\",\n  \"zakum\",\n  \"zal\",\n  \"zalim\",\n  \"zalir\",\n  \"zaman\",\n  \"zamin\",\n  \"zamindar\",\n  \"zamrud\",\n  \"zamzam\",\n  \"zan\",\n  \"zanggi\",\n  \"zantara\",\n  \"zarafah\",\n  \"zarah\",\n  \"zaratit\",\n  \"zariah\",\n  \"zariat\",\n  \"zat\",\n  \"zatua\",\n  \"zawal\",\n  \"zawiat\",\n  \"zebra\",\n  \"zebu\",\n  \"zelot\",\n  \"zen\",\n  \"zend-avesta\",\n  \"zendeling\",\n  \"zending\",\n  \"zeni\",\n  \"zenit\",\n  \"zeolit\",\n  \"zeoponik\",\n  \"zero\",\n  \"zet\",\n  \"zeta\",\n  \"ziadah\",\n  \"ziarah\",\n  \"zib\",\n  \"zig-zag\",\n  \"zigomorf\",\n  \"zigot\",\n  \"zikir\",\n  \"zilullah\",\n  \"zimase\",\n  \"zimi\",\n  \"zimogen\",\n  \"zimolisis\",\n  \"zimosis\",\n  \"zimotik\",\n  \"zimurgi\",\n  \"zina\",\n  \"zindik\",\n  \"zink\",\n  \"zinkografi\",\n  \"zion\",\n  \"zionis\",\n  \"zionisme\",\n  \"zirafah\",\n  \"zirah\",\n  \"zirbad\",\n  \"zirkonia\",\n  \"zirkonium\",\n  \"zirnikh\",\n  \"ziter\",\n  \"zodiak\",\n  \"zoetrop\",\n  \"zohal\",\n  \"zohrah\",\n  \"zohrat\",\n  \"zona\",\n  \"zonasi\",\n  \"zonder\",\n  \"zone\",\n  \"zoning\",\n  \"zoofit\",\n  \"zoofobia\",\n  \"zoogani\",\n  \"zoogeografi\",\n  \"zoologi\",\n  \"zoonosis\",\n  \"zoosemiotika\",\n  \"zuama\",\n  \"zuhud\",\n  \"zuhur\",\n  \"zulfikar\",\n  \"zulhijah\",\n  \"zulkaidah\",\n  \"zulmat\",\n  \"zulu\",\n  \"zurafah\",\n  \"zuriah\",\n  \"zus\",\n  \"\"\n]"
  },
  {
    "path": "lib/natural/stemmers/indonesian/prefix_rules.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n\nconst Removal = require('./removal')\n\n// Make global variable for dictionary\nconst dictionary = loadDictionary()\n\nfunction loadDictionary () {\n  const fin = require('./data/kata-dasar.json')\n  return new Set(fin.filter(Boolean))\n}\n\n// Find certain word in dictionary\nfunction find (word) {\n  return dictionary.has(word)\n}\n\nfunction PrefixRules () {\n  const PrefixRules = this\n\n  this.removal = undefined\n  this.currentWord = undefined\n\n  // Run the array of disambiguate rules on input word\n  function runDisambiguator (disambiguateRules, word) {\n    let result\n\n    for (const i in disambiguateRules) {\n      result = disambiguateRules[i](word)\n      if (find(result)) {\n        break\n      }\n    }\n\n    if (result === undefined) {\n      this.currentWord = word\n      this.removal = undefined\n      return this\n    }\n\n    return createResultObject(result, word, 'DP')\n  }\n\n  function createResultObject (result, word, type) {\n    const removedPart = word.replace(result, '')\n    const removal = new Removal(word, result, removedPart, type)\n\n    this.removal = removal\n    this.currentWord = result\n\n    return this\n  }\n\n  PrefixRules.RemovePlainPrefix = function (word) {\n    const result = word.replace(/^(di|ke|se)/, '')\n    if (result !== word) {\n      const removedPart = word.replace(result, '')\n\n      const removal = new Removal(word, result, removedPart, 'DP')\n\n      this.removal = removal\n    } else {\n      this.removal = undefined\n    }\n    this.currentWord = result\n    return this\n  }\n\n  // RULE 1\n  function disambiguateRule1A (word) {\n    // Rule 1a : berV -> ber-V\n    const matches = word.match(/^ber([aiueo].*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  function disambiguateRule1B (word) {\n    // Rule 1b : berV -> be-rV\n    const matches = word.match(/^ber([aiueo].*)$/)\n    if (matches) {\n      return 'r' + matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule1 = function (word) {\n    // Push rules 1A & 1B\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule1A)\n    disambiguateRules.push(disambiguateRule1B)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 2\n  function disambiguateRule2 (word) {\n    // Rule 2 : berCAP -> ber-CAP where C != 'r' AND P != 'er'\n    const matches = word.match(/^ber([bcdfghjklmnpqrstvwxyz])([a-z])(.*)/)\n    if (matches) {\n      if (matches[3].match(/^er(.*)$/)) {\n        return\n      }\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule2 = function (word) {\n    // Push rule 2\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule2)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 3\n  function disambiguateRule3 (word) {\n    // Rule 3 : berCAerV -> ber-CAerV where C != 'r'\n    const matches = word.match(/ber([bcdfghjklmnpqrstvwxyz])([a-z])er([aiueo])(.*)/)\n    if (matches) {\n      if (matches[1] === 'r') {\n        return\n      }\n      return matches[1] + matches[2] + 'er' + matches[3] + matches[4]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule3 = function (word) {\n    // Push rule 3\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule3)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 4\n  function disambiguateRule4 (word) {\n    // Rule 4 : belajar -> ajar\n    if (word === 'belajar') {\n      return 'ajar'\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule4 = function (word) {\n    // Push rule 4\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule4)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 5\n  function disambiguateRule5 (word) {\n    // Rule 5 : beC1erC2 -> be-C1erC2 where C1 != 'r'\n    const matches = word.match(/be([bcdfghjklmnpqstvwxyz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule5 = function (word) {\n    // Push rule 5\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule5)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 6\n  function disambiguateRule6a (word) {\n    // Rule 6a : terV -> ter-V\n    const matches = word.match(/^ter([aiueo].*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  function disambiguateRule6b (word) {\n    // Rule 6b : terV -> te-rV\n    const matches = word.match(/^ter([aiueo].*)$/)\n    if (matches) {\n      return 'r' + matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule6 = function (word) {\n    // Push rule 6\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule6a)\n    disambiguateRules.push(disambiguateRule6b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 7\n  function disambiguateRule7 (word) {\n    // Rule 7 : terCerv -> ter-CerV where C != 'r'\n    const matches = word.match(/^ter([bcdfghjklmnpqrstvwxyz])er([aiueo].*)$/)\n    if (matches) {\n      if (matches[1] === 'r') {\n        return\n      }\n      return matches[1] + 'er' + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule7 = function (word) {\n    // Push rule 7\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule7)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 8\n  function disambiguateRule8 (word) {\n    // Rule 8 : terCP -> ter-CP where C != 'r' and P != 'er'\n    const matches = word.match(/^ter([bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      if (matches[1] === 'r' || matches[2].match(/^er(.*)$/)) {\n        return\n      }\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule8 = function (word) {\n    // Push rule 8\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule8)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 9\n  function disambiguateRule9 (word) {\n    // Rule 9 : te-C1erC2 -> te-C1erC2 where C1 != 'r'\n    const matches = word.match(/^te([bcdfghjklmnpqrstvwxyz])er([bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      if (matches[1] === 'r') {\n        return\n      }\n      return matches[1] + 'er' + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule9 = function (word) {\n    // Push rule 9\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule9)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 10\n  function disambiguateRule10 (word) {\n    // Rule 10 : me{l|r|w|y}V -> me-{l|r|w|y}V\n    const matches = word.match(/^me([lrwy])([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule10 = function (word) {\n    // Push rule 10\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule10)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 11\n  function disambiguateRule11 (word) {\n    // Rule 11 : mem{b|f|v} -> mem-{b|f|v}\n    const matches = word.match(/^mem([bfv])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule11 = function (word) {\n    // Push rule 11\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule11)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 12\n  function disambiguateRule12 (word) {\n    // Nazief and Adriani Rule 12 : beC1erC2 -> be-C1erC2 where C1 != 'r'\n    // Modified by Jelita Asian's CS Rule 12 : mempe -> mem-pe to stem mempengaruhi\n    const matches = word.match(/^mempe(.*)$/)\n    if (matches) {\n      return 'pe' + matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule12 = function (word) {\n    // Push rule 12\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule12)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 13\n  function disambiguateRule13a (word) {\n    // Rule 13a : mem{rV|V} -> me-m{rV|V}\n    const matches = word.match(/^mem([aiueo])(.*)$/)\n    if (matches) {\n      return 'm' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule13b (word) {\n    // Rule 13b : mem{rV|V} -> me-p{rV|V}\n    const matches = word.match(/^mem([aiueo])(.*)$/)\n    if (matches) {\n      return 'p' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule13 = function (word) {\n    // Push rule 13\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule13a)\n    disambiguateRules.push(disambiguateRule13b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 14\n  function disambiguateRule14 (word) {\n    /* Rule 14 modified by Andy Librian : men{c|d|j|s|t|z} -> men-{c|d|j|s|t|z}\n        in order to stem mentaati\n\n        Rule 14 modified by ECS: men{c|d|j|s|z} -> men-{c|d|j|s|z}\n        in order to stem mensyaratkan, mensyukuri\n\n        Original CS Rule no 14 was : men{c|d|j|z} -> men-{c|d|j|z} */\n    const matches = word.match(/^men([cdjstz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule14 = function (word) {\n    // Push rule 14\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule14)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 15\n  function disambiguateRule15a (word) {\n    // Rule 15a : men{V} -> me-n{V}\n    const matches = word.match(/^men([aiueo])(.*)$/)\n    if (matches) {\n      return 'n' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule15b (word) {\n    // Rule 15b : men{V} -> me-t{V}\n    const matches = word.match(/^men([aiueo])(.*)$/)\n    if (matches) {\n      return 't' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule15 = function (word) {\n    // Push rule 15\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule15a)\n    disambiguateRules.push(disambiguateRule15b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 16\n  function disambiguateRule16 (word) {\n    // Original Nazief and Adriani's Rule 16 : meng{g|h|q} -> meng-{g|h|q}\n    // Modified Jelita Asian's CS Rule 16 : meng{g|h|q|k} -> meng-{g|h|q|k} to stem mengkritik\n    const matches = word.match(/^meng([g|h|q|k])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule16 = function (word) {\n    // Push rule 16\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule16)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 17\n  function disambiguateRule17a (word) {\n    // Rule 17a : mengV -> meng-V\n    const matches = word.match(/^meng([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule17b (word) {\n    // Rule 17b : mengV -> meng-kV\n    const matches = word.match(/^meng([aiueo])(.*)$/)\n    if (matches) {\n      return 'k' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule17c (word) {\n    // Rule 17c : mengV -> meng-V- where V = 'e'\n    const matches = word.match(/^menge(.*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  function disambiguateRule17d (word) {\n    // Rule 17d : mengV -> me-ngV\n    const matches = word.match(/^meng([aiueo])(.*)$/)\n    if (matches) {\n      return 'ng' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule17 = function (word) {\n    // Push rule 17\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule17a)\n    disambiguateRules.push(disambiguateRule17b)\n    disambiguateRules.push(disambiguateRule17c)\n    disambiguateRules.push(disambiguateRule17d)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 18\n  function disambiguateRule18a (word) {\n    // Rule 18a : menyV -> me-nyV to stem menyala -> nyala\n    const matches = word.match(/^meny([aiueo])(.*)$/)\n    if (matches) {\n      return 'ny' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule18b (word) {\n    // Original Rule 18b : menyV -> meny-sV\n    // Modified by CC (shifted into 18b, see also 18a)\n    const matches = word.match(/^meny([aiueo])(.*)$/)\n    if (matches) {\n      return 's' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule18 = function (word) {\n    // Push rule 18\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule18a)\n    disambiguateRules.push(disambiguateRule18b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 19\n  function disambiguateRule19 (word) {\n    // Original Rule 19 : mempV -> mem-pV where V != 'e'\n    // Modified Rule 19 by ECS : mempA -> mem-pA where A != 'e' in order to stem memproteksi\n    const matches = word.match(/^memp([abcdfghijklmopqrstuvwxyz])(.*)$/)\n    if (matches) {\n      return 'p' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule19 = function (word) {\n    // Push rule 19\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule19)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 20\n  function disambiguateRule20 (word) {\n    // Rule 20 : pe{w|y}V -> pe-{w|y}V\n    const matches = word.match(/^pe([wy])([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule20 = function (word) {\n    // Push rule 20\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule20)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 21\n  function disambiguateRule21a (word) {\n    // Rule 21a : perV -> per-V\n    const matches = word.match(/^per([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule21b (word) {\n    // Rule 21b : perV -> pe-rV\n    const matches = word.match(/^pe(r[aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule21 = function (word) {\n    // Push rule 21\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule21a)\n    disambiguateRules.push(disambiguateRule21b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 23\n  function disambiguateRule23 (word) {\n    // Rule 23 : perCAP -> per-CAP where C != 'r' AND P != 'er'\n    const matches = word.match(/^per([bcdfghjklmnpqrstvwxyz])([a-z])(.*)$/)\n    if (matches) {\n      if (matches[3].match(/^er(.*)$/)) {\n        return\n      }\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule23 = function (word) {\n    // Push rule 23\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule23)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 24\n  function disambiguateRule24 (word) {\n    // Rule 24 : perCAerV -> per-CAerV where C != 'r'\n    const matches = word.match(/^per([bcdfghjklmnpqrstvwxyz])([a-z])er([aiueo])(.*)$/)\n    if (matches) {\n      if (matches[1] === 'r') {\n        return\n      }\n      return matches[1] + matches[2] + 'er' + matches[3] + matches[4]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule24 = function (word) {\n  // Push rule 24\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule24)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 25\n  function disambiguateRule25 (word) {\n    // Rule 25 : pem{b|f|v} -> pem-{b|f|v}\n    const matches = word.match(/^pem([bfv])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule25 = function (word) {\n    // Push rule 25\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule25)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 26\n  function disambiguateRule26a (word) {\n    // Rule 26a : pem{rV|V} -> pe-m{rV|V}\n    const matches = word.match(/^pem([aiueo])(.*)$/)\n    if (matches) {\n      return 'm' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule26b (word) {\n    // Rule 26b : pem{rV|V} -> pe-p{rV|V}\n    const matches = word.match(/^pem([aiueo])(.*)$/)\n    if (matches) {\n      return 'p' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule26 = function (word) {\n    // Push rule 26\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule26a)\n    disambiguateRules.push(disambiguateRule26b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 27\n  function disambiguateRule27 (word) {\n    // Rule 27 : pen{c|d|j|s|t|z} -> pen-{c|d|j|s|t|z}\n    const matches = word.match(/^pen([cdjstz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule27 = function (word) {\n    // Push rule 27\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule27)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 28\n  function disambiguateRule28a (word) {\n    // Rule 28a : pen{V} -> pe-n{V}\n    const matches = word.match(/^pen([aiueo])(.*)$/)\n    if (matches) {\n      return 'n' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule28b (word) {\n    // Rule 28b : pen{V} -> pe-t{V}\n    const matches = word.match(/^pen([aiueo])(.*)$/)\n    if (matches) {\n      return 't' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule28 = function (word) {\n    // Push rule 28\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule28a)\n    disambiguateRules.push(disambiguateRule28b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 29\n  function disambiguateRule29 (word) {\n    // Rule 29 by ECS : pengC -> peng-C\n    const matches = word.match(/^peng([bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule29 = function (word) {\n    // Push rule 29\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule29)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 30\n  function disambiguateRule30a (word) {\n    // Rule 30a : pengV -> peng-V\n    const matches = word.match(/^peng([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule30b (word) {\n    // Rule 30b : pengV -> peng-kV\n    const matches = word.match(/^peng([aiueo])(.*)$/)\n    if (matches) {\n      return 'k' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule30c (word) {\n    // Rule 30c : pengV -> pengV- where V = 'e'\n    const matches = word.match(/^penge(.*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule30 = function (word) {\n    // Push rule 30\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule30a)\n    disambiguateRules.push(disambiguateRule30b)\n    disambiguateRules.push(disambiguateRule30c)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 31\n  function disambiguateRule31a (word) {\n    // Rule 31a : penyV -> pe-nyV\n    const matches = word.match(/^peny([aiueo])(.*)$/)\n    if (matches) {\n      return 'ny' + matches[1] + matches[2]\n    }\n  }\n\n  function disambiguateRule31b (word) {\n    // Original Rule 31 : penyV -> peny-sV\n    const matches = word.match(/^peny([aiueo])(.*)$/)\n    if (matches) {\n      return 's' + matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule31 = function (word) {\n    // Push rule 31\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule31a)\n    disambiguateRules.push(disambiguateRule31b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 32\n  function disambiguateRule32 (word) {\n    // Rule 32 : pelV -> pe-lV except pelajar -> ajar\n    if (word === 'pelajar') {\n      return 'ajar'\n    }\n    const matches = word.match(/^pe(l[aiueo])(.*)/)\n    if (matches) {\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule32 = function (word) {\n    // Push rule 32\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule32)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 34\n  function disambiguateRule34 (word) {\n    // Rule 34 : peCP -> pe-CP where C != {r|w|y|l|m|n} and P != 'er'\n    const matches = word.match(/^pe([bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      if (matches[2].match(/^er(.*)$/)) {\n        return\n      }\n      return matches[1] + matches[2]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule34 = function (word) {\n    // Push rule 34\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule34)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 35\n  function disambiguateRule35 (word) {\n    // Rule 35 : terC1erC2 -> ter-C1erC2 where C1 != {r}\n    const matches = word.match(/^ter([bcdfghjkpqstvxz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule35 = function (word) {\n    // Push rule 35\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule35)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 36\n  function disambiguateRule36 (word) {\n    // Rule 36 : peC1erC2 -> pe-C1erC2 where C1 != {r|w|y|l|m|n}\n    const matches = word.match(/^pe([bcdfghjkpqstvxz])(er[bcdfghjklmnpqrstvwxyz])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule36 = function (word) {\n    // Push rule 36\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule36)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 37\n  function disambiguateRule37a (word) {\n    // Rule 37a : CerV -> CerV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(er[aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  function disambiguateRule37b (word) {\n    // Rule 37b : CerV -> CV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])er([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule37 = function (word) {\n    // Push rule 37\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule37a)\n    disambiguateRules.push(disambiguateRule37b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 38\n  function disambiguateRule38a (word) {\n    // Rule 38a : CelV -> CelV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(el[aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  function disambiguateRule38b (word) {\n    // Rule 38b : CelV -> CV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])el([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule38 = function (word) {\n    // Push rule 38\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule38a)\n    disambiguateRules.push(disambiguateRule38b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 39\n  function disambiguateRule39a (word) {\n    // Rule 39a : CemV -> CemV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(em[aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  function disambiguateRule39b (word) {\n    // Rule 39b : CemV -> CV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])em([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule39 = function (word) {\n    // Push rule 39\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule39a)\n    disambiguateRules.push(disambiguateRule39b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 40\n  function disambiguateRule40a (word) {\n    // Rule 40a : CinV -> CinV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])(in[aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  function disambiguateRule40b (word) {\n    // Rule 40b : CinV -> CV\n    const matches = word.match(/^([bcdfghjklmnpqrstvwxyz])in([aiueo])(.*)$/)\n    if (matches) {\n      return matches[1] + matches[2] + matches[3]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule40 = function (word) {\n    // Push rule 40\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule40a)\n    disambiguateRules.push(disambiguateRule40b)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 41\n  function disambiguateRule41 (word) {\n    // Rule 41 : kuA -> ku-A\n    const matches = word.match(/^ku(.*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule41 = function (word) {\n    // Push rule 41\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule41)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n\n  // RULE 42\n  function disambiguateRule42 (word) {\n    // Rule 42 : kauA -> kau-A\n    const matches = word.match(/^kau(.*)$/)\n    if (matches) {\n      return matches[1]\n    }\n  }\n\n  PrefixRules.DisambiguatorPrefixRule42 = function (word) {\n    // Push rule 42\n    const disambiguateRules = []\n    disambiguateRules.push(disambiguateRule42)\n\n    return runDisambiguator(disambiguateRules, word)\n  }\n}\n\nmodule.exports = PrefixRules\n\n// Initalize prefix rules array\nconst rules = []\nconst pr = new PrefixRules()\n\n// Push all rules\nrules.push(pr.RemovePlainPrefix)\nrules.push(pr.DisambiguatorPrefixRule1)\nrules.push(pr.DisambiguatorPrefixRule2)\nrules.push(pr.DisambiguatorPrefixRule3)\nrules.push(pr.DisambiguatorPrefixRule4)\nrules.push(pr.DisambiguatorPrefixRule5)\nrules.push(pr.DisambiguatorPrefixRule6)\nrules.push(pr.DisambiguatorPrefixRule7)\nrules.push(pr.DisambiguatorPrefixRule8)\nrules.push(pr.DisambiguatorPrefixRule9)\nrules.push(pr.DisambiguatorPrefixRule10)\nrules.push(pr.DisambiguatorPrefixRule11)\nrules.push(pr.DisambiguatorPrefixRule12)\nrules.push(pr.DisambiguatorPrefixRule13)\nrules.push(pr.DisambiguatorPrefixRule14)\nrules.push(pr.DisambiguatorPrefixRule15)\nrules.push(pr.DisambiguatorPrefixRule16)\nrules.push(pr.DisambiguatorPrefixRule17)\nrules.push(pr.DisambiguatorPrefixRule18)\nrules.push(pr.DisambiguatorPrefixRule19)\nrules.push(pr.DisambiguatorPrefixRule20)\nrules.push(pr.DisambiguatorPrefixRule21)\nrules.push(pr.DisambiguatorPrefixRule23)\nrules.push(pr.DisambiguatorPrefixRule24)\nrules.push(pr.DisambiguatorPrefixRule25)\nrules.push(pr.DisambiguatorPrefixRule26)\nrules.push(pr.DisambiguatorPrefixRule27)\nrules.push(pr.DisambiguatorPrefixRule28)\nrules.push(pr.DisambiguatorPrefixRule29)\nrules.push(pr.DisambiguatorPrefixRule30)\nrules.push(pr.DisambiguatorPrefixRule31)\nrules.push(pr.DisambiguatorPrefixRule32)\nrules.push(pr.DisambiguatorPrefixRule34)\nrules.push(pr.DisambiguatorPrefixRule35)\nrules.push(pr.DisambiguatorPrefixRule36)\nrules.push(pr.DisambiguatorPrefixRule37)\nrules.push(pr.DisambiguatorPrefixRule38)\nrules.push(pr.DisambiguatorPrefixRule39)\nrules.push(pr.DisambiguatorPrefixRule40)\nrules.push(pr.DisambiguatorPrefixRule41)\nrules.push(pr.DisambiguatorPrefixRule42)\n\nPrefixRules.rules = rules\n"
  },
  {
    "path": "lib/natural/stemmers/indonesian/removal.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n\nfunction Removal (originalWord, result, removedPart, affixType) {\n  this.originalWord = originalWord\n  this.result = result\n  this.removedPart = removedPart\n  this.affixType = affixType\n}\n\nRemoval.prototype.getOriginalWord = function () {\n  return this.originalWord\n}\n\nRemoval.prototype.getResult = function () {\n  return this.result\n}\n\nRemoval.prototype.getRemovedPart = function () {\n  return this.removedPart\n}\n\nRemoval.prototype.getAffixType = function () {\n  return this.affixType\n}\n\nmodule.exports = Removal\n"
  },
  {
    "path": "lib/natural/stemmers/indonesian/stemmer_id.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst BaseStemmer = require('./base_stemmer_id')\nconst stemmer = new BaseStemmer()\n\n// Dictionary\nconst dictionary = loadDictionary()\n\n// Rules\nconst SuffixRules = require('./suffix_rules')\nconst PrefixRules = require('./prefix_rules')\n\nconst suffixRules = SuffixRules.rules\nconst prefixRules = PrefixRules.rules\n\n// Removals\nlet removals = null\n\n// Words\nlet originalWord = null\nlet currentWord = null\n\nmodule.exports = stemmer\n\n// perform full stemming algorithm on a single word\nstemmer.stem = function (token) {\n  // Cache stemmer not yet implemented\n  // Set to lowercase\n  token = token.toLowerCase()\n\n  // Initiate everything\n  removals = []\n\n  if (isPlural(token)) {\n    return stemPluralWord(token)\n  } else {\n    return stemSingularWord(token)\n  }\n}\n\n// Stem for plural word\nfunction stemPluralWord (pluralWord) {\n  let matches = pluralWord.match(/^(.*)-(.*)$/)\n  if (!matches) {\n    return pluralWord\n  }\n  const words = [matches[1], matches[2]]\n\n  // malaikat-malaikat-nya -> malaikat malaikat-nya\n  const suffix = words[1]\n  const suffixes = ['ku', 'mu', 'nya', 'lah', 'kah', 'tah', 'pun']\n  matches = words[0].match(/^(.*)-(.*)$/)\n  if (suffixes.indexOf(suffix) !== -1 && matches) {\n    words[0] = matches[1]\n    words[1] = matches[2] + '-' + suffix\n  }\n\n  // berbalas-balasan -> balas\n  const rootWord1 = stemSingularWord(words[0])\n  let rootWord2 = stemSingularWord(words[1])\n\n  // meniru-nirukan -> tiru\n  if (!find(words[1]) && rootWord2 === words[1]) {\n    rootWord2 = stemSingularWord('me' + words[1])\n  }\n  if (rootWord1 === rootWord2) {\n    return rootWord1\n  } else {\n    return pluralWord\n  }\n}\n\n// Stem for singular word\nfunction stemSingularWord (word) {\n  originalWord = word // Save the original word for reverting later\n  currentWord = word\n\n  // Step 1\n  if (currentWord.length > 3) {\n    // Step 2-5\n    stemmingProcess()\n  }\n\n  // Step 6\n  if (find(currentWord)) {\n    return currentWord\n  } else {\n    return originalWord\n  }\n}\n\n// Return true if word is in plural form ex: gelas-gelas, else false\nfunction isPlural (token) {\n  const matches = token.match(/^(.*)-(ku|mu|nya|lah|kah|tah|pun)$/)\n  if (matches) {\n    return matches[1].search('-') !== -1\n  }\n  return token.search('-') !== -1\n}\n\n// Find certain word in dictionary\nfunction find (word) {\n  return dictionary.has(word)\n}\n\nfunction loadDictionary () {\n  const fin = require('./data/kata-dasar.json')\n  return new Set(fin.filter(Boolean))\n}\n\n// Stemming from step 2-5\nfunction stemmingProcess () {\n  if (find(currentWord)) { return }\n\n  // Confix Stripping\n  // Try to remove prefixes first before suffixes if the specification is met\n  if (precedenceAdjustmentSpecification(originalWord)) {\n    // Step 4, 5\n    removePrefixes()\n    if (find(currentWord)) { return }\n\n    // Step 2, 3\n    removeSuffixes()\n    if (find(currentWord)) {\n      return\n    } else {\n      // if the trial is failed, restore the original word\n      // and continue to normal rule precedence (suffix first, prefix afterwards)\n      currentWord = originalWord\n      removals = []\n    }\n  }\n\n  // Step 2, 3\n  removeSuffixes()\n  if (find(currentWord)) { return }\n\n  // Step 4, 5\n  removePrefixes()\n  if (find(currentWord)) { return }\n\n  // ECS Loop Restore Prefixes\n  loopRestorePrefixes()\n}\n\n// Remove Suffixes\nfunction removeSuffixes () {\n  for (const i in suffixRules) {\n    const resultObj = suffixRules[i](currentWord)\n\n    // Add result to variable\n    if (resultObj.removal !== undefined) {\n      removals.push(resultObj.removal)\n    }\n    currentWord = resultObj.currentWord\n\n    if (find(currentWord)) { return currentWord }\n  }\n}\n\n// Remove Prefixes\nfunction removePrefixes () {\n  for (let i = 0; i < 3; i++) {\n    checkPrefixRules()\n    if (find(currentWord)) {\n      return currentWord\n    }\n  }\n}\n\nfunction checkPrefixRules () {\n  const removalCount = removals.length\n  let j = 0\n  for (j = 0; j < prefixRules.length; j++) {\n    const resultObj = prefixRules[j](currentWord)\n\n    // Add result to variable\n    if (resultObj.removal !== undefined) {\n      removals.push(resultObj.removal)\n    }\n    currentWord = resultObj.currentWord\n\n    if (find(currentWord)) {\n      return currentWord\n    }\n    if (removals.length > removalCount) {\n      return\n    }\n  }\n}\n\n// Loop Restore Prefixes\nfunction loopRestorePrefixes () {\n  restorePrefix()\n\n  const reversedRemovals = removals.reverse()\n  const tempCurrentWord = currentWord\n\n  for (const i in reversedRemovals) {\n    const currentRemoval = reversedRemovals[i]\n\n    if (!isSuffixRemovals(currentRemoval)) {\n      continue\n    }\n\n    if (currentRemoval.getRemovedPart() === 'kan') {\n      currentWord = currentRemoval.getResult() + 'k'\n\n      // Step 4, 5\n      removePrefixes()\n      if (find(currentWord)) {\n        return\n      }\n      currentWord = currentRemoval.getResult() + 'kan'\n    } else {\n      currentWord = currentRemoval.getOriginalWord()\n    }\n\n    // Step 4, 5\n    removePrefixes()\n    if (find(currentWord)) {\n      return\n    }\n\n    currentWord = tempCurrentWord\n  }\n}\n\nfunction isSuffixRemovals (removal) {\n  const type = removal.getAffixType()\n  if (type === 'DS' || type === 'PP' || type === 'P') {\n    return true\n  }\n  return false\n}\n\nfunction restorePrefix () {\n  for (let i = 0; i < removals.length; i++) {\n    currentWord = removals[i].getOriginalWord()\n    // break\n  }\n\n  for (let i = 0; i < removals.length; i++) {\n    if (removals[i].getAffixType() === 'DP') {\n      removals.splice(i, 1)\n      i--\n    }\n  }\n}\n\n// Check if word require precedence adjustment or not\n// Adjustment means remove prefix then suffix instead of remove suffix then prefix\nfunction precedenceAdjustmentSpecification (word) {\n  const regexRules = [\n    /^be(.*)lah$/,\n    /^be(.*)an$/,\n    /^me(.*)i$/,\n    /^di(.*)i$/,\n    /^pe(.*)i$/,\n    /^ter(.*)i$/\n  ]\n\n  for (const i in regexRules) {\n    if (word.match(regexRules[i])) {\n      return true\n    }\n  }\n  return false\n}\n\n// exports for tests\nstemmer.isPlural = isPlural\nstemmer.dictionary = Array.from(dictionary)\nstemmer.a = suffixRules[0]\n"
  },
  {
    "path": "lib/natural/stemmers/indonesian/suffix_rules.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n\nconst Removal = require('./removal')\n\nfunction SuffixRules () {\n  const SuffixRules = this\n\n  this.removal = undefined\n  this.currentWord = undefined\n\n  function createResultObject (result, word, type) {\n    if (result !== word) {\n      const removedPart = word.replace(result, '')\n\n      const removal = new Removal(word, result, removedPart, type)\n\n      this.removal = removal\n    } else {\n      this.removal = undefined\n    }\n    this.currentWord = result\n    return this\n  }\n\n  SuffixRules.RemoveInflectionalParticle = function (word) {\n    const result = word.replace(/-*(lah|kah|tah|pun)$/, '')\n    return createResultObject(result, word, 'P')\n  }\n\n  SuffixRules.RemoveInflectionalPossessivePronoun = function (word) {\n    const result = word.replace(/-*(ku|mu|nya)$/, '')\n    return createResultObject(result, word, 'PP')\n  }\n\n  SuffixRules.RemoveDerivationalSuffix = function (word) {\n    const result = word.replace(/(is|isme|isasi|i|kan|an)$/, '')\n    return createResultObject(result, word, 'DS')\n  }\n}\n\nmodule.exports = SuffixRules\n\n// Initalize suffix rules array\nconst rules = []\nconst sr = new SuffixRules()\n\nrules.push(sr.RemoveInflectionalParticle)\nrules.push(sr.RemoveInflectionalPossessivePronoun)\nrules.push(sr.RemoveDerivationalSuffix)\n\nSuffixRules.rules = rules\n"
  },
  {
    "path": "lib/natural/stemmers/lancaster_rules.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.rules = {\n  a: [\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'ia',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'a',\n      size: '1'\n    }\n  ],\n  b: [\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'bb',\n      size: '1'\n    }\n  ],\n  c: [\n    {\n      appendage: 's',\n      continuation: false,\n      intact: false,\n      pattern: 'ytic',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ic',\n      size: '2'\n    },\n    {\n      appendage: 't',\n      continuation: true,\n      intact: false,\n      pattern: 'nc',\n      size: '1'\n    }\n  ],\n  d: [\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'dd',\n      size: '1'\n    },\n    {\n      appendage: 'y',\n      continuation: true,\n      intact: false,\n      pattern: 'ied',\n      size: '3'\n    },\n    {\n      appendage: 'ss',\n      continuation: false,\n      intact: false,\n      pattern: 'ceed',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'eed',\n      size: '1'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ed',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'hood',\n      size: '4'\n    }\n  ],\n  e: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'e',\n      size: '1'\n    }\n  ],\n  f: [\n    {\n      appendage: 'v',\n      continuation: false,\n      intact: false,\n      pattern: 'lief',\n      size: '1'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'if',\n      size: '2'\n    }\n  ],\n  g: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ing',\n      size: '3'\n    },\n    {\n      appendage: 'y',\n      continuation: false,\n      intact: false,\n      pattern: 'iag',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ag',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'gg',\n      size: '1'\n    }\n  ],\n  h: [\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'th',\n      size: '2'\n    },\n    {\n      appendage: 'ct',\n      continuation: false,\n      intact: false,\n      pattern: 'guish',\n      size: '5'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ish',\n      size: '3'\n    }\n  ],\n  i: [\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'i',\n      size: '1'\n    },\n    {\n      appendage: 'y',\n      continuation: true,\n      intact: false,\n      pattern: 'i',\n      size: '1'\n    }\n  ],\n  j: [\n    {\n      appendage: 'd',\n      continuation: false,\n      intact: false,\n      pattern: 'ij',\n      size: '1'\n    },\n    {\n      appendage: 's',\n      continuation: false,\n      intact: false,\n      pattern: 'fuj',\n      size: '1'\n    },\n    {\n      appendage: 'd',\n      continuation: false,\n      intact: false,\n      pattern: 'uj',\n      size: '1'\n    },\n    {\n      appendage: 'd',\n      continuation: false,\n      intact: false,\n      pattern: 'oj',\n      size: '1'\n    },\n    {\n      appendage: 'r',\n      continuation: false,\n      intact: false,\n      pattern: 'hej',\n      size: '1'\n    },\n    {\n      appendage: 't',\n      continuation: false,\n      intact: false,\n      pattern: 'verj',\n      size: '1'\n    },\n    {\n      appendage: 't',\n      continuation: false,\n      intact: false,\n      pattern: 'misj',\n      size: '2'\n    },\n    {\n      appendage: 'd',\n      continuation: false,\n      intact: false,\n      pattern: 'nj',\n      size: '1'\n    },\n    {\n      appendage: 's',\n      continuation: false,\n      intact: false,\n      pattern: 'j',\n      size: '1'\n    }\n  ],\n  l: [\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ifiabl',\n      size: '6'\n    },\n    {\n      appendage: 'y',\n      continuation: false,\n      intact: false,\n      pattern: 'iabl',\n      size: '4'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'abl',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ibl',\n      size: '3'\n    },\n    {\n      appendage: 'l',\n      continuation: true,\n      intact: false,\n      pattern: 'bil',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'cl',\n      size: '1'\n    },\n    {\n      appendage: 'y',\n      continuation: false,\n      intact: false,\n      pattern: 'iful',\n      size: '4'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ful',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ul',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ial',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ual',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'al',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'll',\n      size: '1'\n    }\n  ],\n  m: [\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ium',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'um',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ism',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'mm',\n      size: '1'\n    }\n  ],\n  n: [\n    {\n      appendage: 'j',\n      continuation: true,\n      intact: false,\n      pattern: 'sion',\n      size: '4'\n    },\n    {\n      appendage: 'ct',\n      continuation: false,\n      intact: false,\n      pattern: 'xion',\n      size: '4'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ion',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ian',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'an',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'een',\n      size: '0'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'en',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'nn',\n      size: '1'\n    }\n  ],\n  p: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ship',\n      size: '4'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'pp',\n      size: '1'\n    }\n  ],\n  r: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'er',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ear',\n      size: '0'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ar',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'or',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ur',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'rr',\n      size: '1'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'tr',\n      size: '1'\n    },\n    {\n      appendage: 'y',\n      continuation: true,\n      intact: false,\n      pattern: 'ier',\n      size: '3'\n    }\n  ],\n  s: [\n    {\n      appendage: 'y',\n      continuation: true,\n      intact: false,\n      pattern: 'ies',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'sis',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'is',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ness',\n      size: '4'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ss',\n      size: '0'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ous',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: true,\n      pattern: 'us',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: true,\n      pattern: 's',\n      size: '1'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 's',\n      size: '0'\n    }\n  ],\n  t: [\n    {\n      appendage: 'y',\n      continuation: false,\n      intact: false,\n      pattern: 'plicat',\n      size: '4'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'at',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ment',\n      size: '4'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ent',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ant',\n      size: '3'\n    },\n    {\n      appendage: 'b',\n      continuation: false,\n      intact: false,\n      pattern: 'ript',\n      size: '2'\n    },\n    {\n      appendage: 'b',\n      continuation: false,\n      intact: false,\n      pattern: 'orpt',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'duct',\n      size: '1'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'sumpt',\n      size: '2'\n    },\n    {\n      appendage: 'iv',\n      continuation: false,\n      intact: false,\n      pattern: 'cept',\n      size: '2'\n    },\n    {\n      appendage: 'v',\n      continuation: false,\n      intact: false,\n      pattern: 'olut',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'sist',\n      size: '0'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ist',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'tt',\n      size: '1'\n    }\n  ],\n  u: [\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'iqu',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ogu',\n      size: '1'\n    }\n  ],\n  v: [\n    {\n      appendage: 'j',\n      continuation: true,\n      intact: false,\n      pattern: 'siv',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'eiv',\n      size: '0'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'iv',\n      size: '2'\n    }\n  ],\n  y: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'bly',\n      size: '1'\n    },\n    {\n      appendage: 'y',\n      continuation: true,\n      intact: false,\n      pattern: 'ily',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ply',\n      size: '0'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ly',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ogy',\n      size: '1'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'phy',\n      size: '1'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'omy',\n      size: '1'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'opy',\n      size: '1'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ity',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ety',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'lty',\n      size: '2'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'istry',\n      size: '5'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ary',\n      size: '3'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'ory',\n      size: '3'\n    },\n    {\n      continuation: false,\n      intact: false,\n      pattern: 'ify',\n      size: '3'\n    },\n    {\n      appendage: 't',\n      continuation: true,\n      intact: false,\n      pattern: 'ncy',\n      size: '2'\n    },\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'acy',\n      size: '3'\n    }\n  ],\n  z: [\n    {\n      continuation: true,\n      intact: false,\n      pattern: 'iz',\n      size: '2'\n    },\n    {\n      appendage: 's',\n      continuation: false,\n      intact: false,\n      pattern: 'yz',\n      size: '1'\n    }\n  ]\n}\n"
  },
  {
    "path": "lib/natural/stemmers/lancaster_stemmer.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer')\nconst ruleTable = require('./lancaster_rules').rules\n\nfunction acceptable (candidate) {\n  if (candidate.match(/^[aeiou]/)) { return (candidate.length > 1) } else { return (candidate.length > 2 && candidate.match(/[aeiouy]/)) }\n}\n\n// take a token, look up the applicatble rule section and attempt some stemming!\nfunction applyRuleSection (token, intact) {\n  const section = token.substr(-1)\n  const rules = ruleTable[section]\n\n  if (rules) {\n    for (let i = 0; i < rules.length; i++) {\n      if ((intact || !rules[i].intact) &&\n            // only apply intact rules to intact tokens\n            token.substr(0 - rules[i].pattern.length) === rules[i].pattern) {\n        // hack off only as much as the rule indicates\n        let result = token.substr(0, token.length - rules[i].size)\n\n        // if the rules wants us to apply an appendage do so\n        if (rules[i].appendage) { result += rules[i].appendage }\n\n        if (acceptable(result)) {\n          token = result\n\n          // see what the rules wants to do next\n          if (rules[i].continuation) {\n            // this rule thinks there still might be stem left. keep at it.\n            // since we've applied a change we'll pass false in for intact\n            return applyRuleSection(result, false)\n          } else {\n            // the rule thinks we're done stemming. drop out.\n            return result\n          }\n        }\n      }\n    }\n  }\n\n  return token\n}\n\nconst LancasterStemmer = new Stemmer()\nmodule.exports = LancasterStemmer\n\nLancasterStemmer.stem = function (token) {\n  return applyRuleSection(token.toLowerCase(), true)\n}\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer')\n\n// denote groups of consecutive consonants with a C and consecutive vowels\n// with a V.\nfunction categorizeGroups (token) {\n  return token.replace(/[^aeiouy]+y/g, 'CV').replace(/[aeiou]+/g, 'V').replace(/[^V]+/g, 'C')\n}\n\n// denote single consonants with a C and single vowels with a V\nfunction categorizeChars (token) {\n  return token.replace(/[^aeiouy]y/g, 'CV').replace(/[aeiou]/g, 'V').replace(/[^V]/g, 'C')\n}\n\n// calculate the \"measure\" M of a word. M is the count of VC sequences dropping\n// an initial C if it exists and a trailing V if it exists.\nfunction measure (token) {\n  if (!token) { return -1 }\n\n  return categorizeGroups(token).replace(/^C/, '').replace(/V$/, '').length / 2\n}\n\n// determine if a token end with a double consonant i.e. happ\nfunction endsWithDoublCons (token) {\n  return token.match(/([^aeiou])\\1$/)\n}\n\n// replace a pattern in a word. if a replacement occurs an optional callback\n// can be called to post-process the result. if no match is made NULL is\n// returned.\nfunction attemptReplace (token, pattern, replacement, callback) {\n  let result = null\n\n  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) }\n\n  if (result && callback) { return callback(result) } else { return result }\n}\n\n// attempt to replace a list of patterns/replacements on a token for a minimum\n// measure M.\nfunction attemptReplacePatterns (token, replacements, measureThreshold) {\n  let replacement = token\n\n  for (let i = 0; i < replacements.length; i++) {\n    if (measureThreshold == null || measure(attemptReplace(token, replacements[i][0], replacements[i][1])) > measureThreshold) {\n      replacement = attemptReplace(replacement, replacements[i][0], replacements[i][2]) || replacement\n    }\n  }\n\n  return replacement\n}\n\n// replace a list of patterns/replacements on a word. if no match is made return\n// the original token.\nfunction replacePatterns (token, replacements, measureThreshold) {\n  return attemptReplacePatterns(token, replacements, measureThreshold) || token\n}\n\n// TODO: this should replace all of the messy replacement stuff above\nfunction replaceRegex (token, regex, includeParts, minimumMeasure) {\n  let parts\n  let result = ''\n\n  if (regex.test(token)) {\n    parts = regex.exec(token)\n\n    includeParts.forEach(function (i) {\n      result += parts[i]\n    })\n  }\n\n  if (measure(result) > minimumMeasure) {\n    return result\n  }\n\n  return null\n}\n\n// step 1a as defined for the porter stemmer algorithm.\nfunction step1a (token) {\n  if (token.match(/(ss|i)es$/)) {\n    return token.replace(/(ss|i)es$/, '$1')\n  }\n\n  if (token.substr(-1) === 's' && token.substr(-2, 1) !== 's' && token.length > 2) {\n    return token.replace(/s?$/, '')\n  }\n\n  return token\n}\n\n// step 1b as defined for the porter stemmer algorithm.\nfunction step1b (token) {\n  let result\n  if (token.substr(-3) === 'eed') {\n    if (measure(token.substr(0, token.length - 3)) > 0) { return token.replace(/eed$/, 'ee') }\n  } else {\n    result = attemptReplace(token, /(ed|ing)$/, '', function (token) {\n      if (categorizeGroups(token).indexOf('V') >= 0) {\n        result = attemptReplacePatterns(token, [['at', '', 'ate'], ['bl', '', 'ble'], ['iz', '', 'ize']])\n\n        if (result !== token) {\n          return result\n        } else {\n          if (endsWithDoublCons(token) && token.match(/[^lsz]$/)) {\n            return token.replace(/([^aeiou])\\1$/, '$1')\n          }\n\n          if (measure(token) === 1 && categorizeChars(token).substr(-3) === 'CVC' && token.match(/[^wxy]$/)) {\n            return token + 'e'\n          }\n        }\n\n        return token\n      }\n\n      return null\n    })\n\n    if (result) {\n      return result\n    }\n  }\n\n  return token\n}\n\n// step 1c as defined for the porter stemmer algorithm.\nfunction step1c (token) {\n  const categorizedGroups = categorizeGroups(token)\n\n  if (token.substr(-1) === 'y' && categorizedGroups.substr(0, categorizedGroups.length - 1).indexOf('V') > -1) {\n    return token.replace(/y$/, 'i')\n  }\n\n  return token\n}\n\n// step 2 as defined for the porter stemmer algorithm.\nfunction step2 (token) {\n  token = replacePatterns(token, [['ational', '', 'ate'], ['tional', '', 'tion'], ['enci', '', 'ence'], ['anci', '', 'ance'],\n    ['izer', '', 'ize'], ['abli', '', 'able'], ['bli', '', 'ble'], ['alli', '', 'al'], ['entli', '', 'ent'], ['eli', '', 'e'],\n    ['ousli', '', 'ous'], ['ization', '', 'ize'], ['ation', '', 'ate'], ['ator', '', 'ate'], ['alism', '', 'al'],\n    ['iveness', '', 'ive'], ['fulness', '', 'ful'], ['ousness', '', 'ous'], ['aliti', '', 'al'],\n    ['iviti', '', 'ive'], ['biliti', '', 'ble'], ['logi', '', 'log']], 0)\n\n  return token\n}\n\n// step 3 as defined for the porter stemmer algorithm.\nfunction step3 (token) {\n  return replacePatterns(token, [['icate', '', 'ic'], ['ative', '', ''], ['alize', '', 'al'],\n    ['iciti', '', 'ic'], ['ical', '', 'ic'], ['ful', '', ''], ['ness', '', '']], 0)\n}\n\n// step 4 as defined for the porter stemmer algorithm.\nfunction step4 (token) {\n  return replaceRegex(token, /^(.+?)(al|ance|ence|er|ic|able|ible|ant|ement|ment|ent|ou|ism|ate|iti|ous|ive|ize)$/, [1], 1) ||\n        replaceRegex(token, /^(.+?)(s|t)(ion)$/, [1, 2], 1) ||\n        token\n}\n\n// step 5a as defined for the porter stemmer algorithm.\nfunction step5a (token) {\n  const m = measure(token.replace(/e$/, ''))\n\n  if (m > 1 || (m === 1 && !(categorizeChars(token).substr(-4, 3) === 'CVC' && token.match(/[^wxy].$/)))) {\n    token = token.replace(/e$/, '')\n  }\n\n  return token\n}\n\n// step 5b as defined for the porter stemmer algorithm.\nfunction step5b (token) {\n  if (measure(token) > 1) {\n    return token.replace(/ll$/, 'l')\n  }\n\n  return token\n}\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\n// perform full stemming algorithm on a single word\nPorterStemmer.stem = function (token) {\n  if (token.length < 3) return token.toString()\n  return step5b(step5a(step4(step3(step2(step1c(step1b(step1a(token.toLowerCase())))))))).toString()\n}\n\n// exports for tests\nPorterStemmer.categorizeGroups = categorizeGroups\nPorterStemmer.measure = measure\nPorterStemmer.step1a = step1a\nPorterStemmer.step1b = step1b\nPorterStemmer.step1c = step1c\nPorterStemmer.step2 = step2\nPorterStemmer.step3 = step3\nPorterStemmer.step4 = step4\nPorterStemmer.step5a = step5a\nPorterStemmer.step5b = step5b\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_de.js",
    "content": "/*\n * Original author: Joder Illi\n * Integration in Natural by Hugo W.L. ter Doest\n *\n * Copyright (c) 2010, FormBlitz AG\n * All rights reserved.\n * Implementation of the stemming algorithm from http://snowball.tartarus.org/algorithms/german/stemmer.html\n * Copyright of the algorithm is: Copyright (c) 2001, Dr Martin Porter and can be found at http://snowball.tartarus.org/license.php\n *\n * Redistribution and use in source and binary forms, with or without\n * modification, is covered by the standard BSD license.\n *\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer_de')\n\nconst PorterStemmer = new Stemmer()\nPorterStemmer.stem = stemm\nmodule.exports = PorterStemmer\n\n/* by Joder Illi, Snowball mailing list */\nfunction stemm (word, options = {}) {\n  /*\n  Put u and y between vowels into upper case\n  */\n  word = word.replace(/([aeiouyäöü])u([aeiouyäöü])/g, '$1U$2')\n  word = word.replace(/([aeiouyäöü])y([aeiouyäöü])/g, '$1Y$2')\n\n  /*\n  and then do the following mappings,\n  (a) replace ß with ss,\n  (a) replace ae with ä, Not doing these,\n  have trouble with diphtongs\n  (a) replace oe with ö, Not doing these,\n  have trouble with diphtongs\n  (a) replace ue with ü unless preceded by q. Not doing these,\n  have trouble with diphtongs\n  So in quelle, ue is not mapped to ü because it follows q, and in\n  feuer it is not mapped because the first part of the rule changes it to\n  feUer, so the u is not found.\n  */\n  word = word.replace(/ß/g, 'ss')\n  // word = word.replace(/ae/g, 'ä');\n  // word = word.replace(/oe/g, 'ö');\n  // word = word.replace(/([^q])ue/g, '$1ü');\n\n  /*\n  R1 and R2 are first set up in the standard way (see the note on R1\n  and R2), but then R1 is adjusted so that the region before it contains at\n  least 3 letters.\n  R1 is the region after the first non-vowel following a vowel, or is\n  the null region at the end of the word if there is no such non-vowel.\n  R2 is the region after the first non-vowel following a vowel in R1,\n  or is the null region at the end of the word if there is no such non-vowel.\n  */\n\n  let r1Index = word.search(/[aeiouyäöü][^aeiouyäöü]/)\n  let r1 = ''\n  if (r1Index !== -1) {\n    r1Index += 2\n    r1 = word.substring(r1Index)\n  }\n\n  let r2Index = -1\n  // let r2 = ''\n\n  if (r1Index !== -1) {\n    r2Index = r1.search(/[aeiouyäöü][^aeiouyäöü]/)\n    if (r2Index !== -1) {\n      r2Index += 2\n      // r2 = r1.substring(r2Index)\n      r2Index += r1Index\n    } else {\n      // r2 = ''\n    }\n  }\n\n  if (r1Index !== -1 && r1Index < 3) {\n    r1Index = 3\n    r1 = word.substring(r1Index)\n  }\n\n  /*\n  Define a valid s-ending as one of b, d, f, g, h, k, l, m, n, r or t.\n  Define a valid st-ending as the same list, excluding letter r.\n  */\n\n  /*\n  Do each of steps 1, 2 and 3.\n  */\n\n  /*\n  Step 1:\n  Search for the longest among the following suffixes,\n  (a) em ern er\n  (b) e en es\n  (c) s (preceded by a valid s-ending)\n  */\n  const a1Index = word.search(/(em|ern|er)$/g)\n  const b1Index = word.search(/(e|en|es)$/g)\n  let c1Index = word.search(/([bdfghklmnrt]s)$/g)\n  if (c1Index !== -1) {\n    c1Index++\n  }\n  let index1 = 10000\n  let optionUsed1 = ''\n  if (a1Index !== -1 && a1Index < index1) {\n    optionUsed1 = 'a'\n    index1 = a1Index\n  }\n  if (b1Index !== -1 && b1Index < index1) {\n    optionUsed1 = 'b'\n    index1 = b1Index\n  }\n  if (c1Index !== -1 && c1Index < index1) {\n    optionUsed1 = 'c'\n    index1 = c1Index\n  }\n\n  /*\n  and delete if in R1. (Of course the letter of the valid s-ending is\n  not necessarily in R1.) If an ending of group (b) is deleted, and the ending\n  is preceded by niss, delete the final s.\n  (For example, äckern -> äck, ackers -> acker, armes -> arm,\n  bedürfnissen -> bedürfnis)\n  */\n\n  if (index1 !== 10000 && r1Index !== -1) {\n    if (index1 >= r1Index) {\n      word = word.substring(0, index1)\n      if (optionUsed1 === 'b') {\n        if (word.search(/niss$/) !== -1) {\n          word = word.substring(0, word.length - 1)\n        }\n      }\n    }\n  }\n\n  /*\n  Step 2:\n  Search for the longest among the following suffixes,\n  (a) en er est\n  (b) st (preceded by a valid st-ending, itself preceded by at least 3\n  letters)\n  */\n\n  const a2Index = word.search(/(en|er|est)$/g)\n  let b2Index = word.search(/(.{3}[bdfghklmnt]st)$/g)\n  if (b2Index !== -1) {\n    b2Index += 4\n  }\n\n  let index2 = 10000\n  // const optionUsed2 = ''\n  if (a2Index !== -1 && a2Index < index2) {\n    // optionUsed2 = 'a'\n    index2 = a2Index\n  }\n  if (b2Index !== -1 && b2Index < index2) {\n    // optionUsed2 = 'b'\n    index2 = b2Index\n  }\n\n  /*\n  and delete if in R1.\n  (For example, derbsten -> derbst by step 1, and derbst -> derb by\n  step 2, since b is a valid st-ending, and is preceded by just 3 letters)\n  */\n\n  if (index2 !== 10000 && r1Index !== -1) {\n    if (index2 >= r1Index) {\n      word = word.substring(0, index2)\n    }\n  }\n\n  /*\n  Step 3: d-suffixes (*)\n  Search for the longest among the following suffixes, and perform the\n  action indicated.\n  end ung\n  delete if in R2\n  if preceded by ig, delete if in R2 and not preceded by e\n  ig ik isch\n  delete if in R2 and not preceded by e\n  lich heit\n  delete if in R2\n  if preceded by er or en, delete if in R1\n  keit\n  delete if in R2\n  if preceded by lich or ig, delete if in R2\n  */\n\n  const a3Index = word.search(/(end|ung)$/g)\n  let b3Index = word.search(/[^e](ig|ik|isch)$/g)\n  const c3Index = word.search(/(lich|heit)$/g)\n  const d3Index = word.search(/(keit)$/g)\n  if (b3Index !== -1) {\n    b3Index++\n  }\n\n  let index3 = 10000\n  let optionUsed3 = ''\n  if (a3Index !== -1 && a3Index < index3) {\n    optionUsed3 = 'a'\n    index3 = a3Index\n  }\n  if (b3Index !== -1 && b3Index < index3) {\n    optionUsed3 = 'b'\n    index3 = b3Index\n  }\n  if (c3Index !== -1 && c3Index < index3) {\n    optionUsed3 = 'c'\n    index3 = c3Index\n  }\n  if (d3Index !== -1 && d3Index < index3) {\n    optionUsed3 = 'd'\n    index3 = d3Index\n  }\n\n  if (index3 !== 10000 && r2Index !== -1) {\n    if (index3 >= r2Index) {\n      word = word.substring(0, index3)\n      let optionIndex = -1\n      // const optionSubsrt = ''\n      if (optionUsed3 === 'a') {\n        optionIndex = word.search(/[^e](ig)$/)\n        if (optionIndex !== -1) {\n          optionIndex++\n          if (optionIndex >= r2Index) {\n            word = word.substring(0, optionIndex)\n          }\n        }\n      } else if (optionUsed3 === 'c') {\n        optionIndex = word.search(/(er|en)$/)\n        if (optionIndex !== -1) {\n          if (optionIndex >= r1Index) {\n            word = word.substring(0, optionIndex)\n          }\n        }\n      } else if (optionUsed3 === 'd') {\n        optionIndex = word.search(/(lich|ig)$/)\n        if (optionIndex !== -1) {\n          if (optionIndex >= r2Index) {\n            word = word.substring(0, optionIndex)\n          }\n        }\n      }\n    }\n  }\n\n  /*\n  Finally,\n  turn U and Y back into lower case, and remove the umlaut accent from\n  a, o and u.\n  */\n  word = word.replace(/U/g, 'u')\n  word = word.replace(/Y/g, 'y')\n  if (options.preserveUmlauts) {\n    return word\n  }\n  word = word.replace(/ä/g, 'a')\n  word = word.replace(/ö/g, 'o')\n  word = word.replace(/ü/g, 'u')\n\n  return word\n}\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_es.js",
    "content": "/*\n  Copyright (c) 2018, Domingo Martín Mancera\n\n  Permission is hereby granted, free of charge, to any person obtaining a copy\n  of this software and associated documentation files (the \"Software\"), to deal\n  in the Software without restriction, including without limitation the rights\n  to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n  copies of the Software, and to permit persons to whom the Software is\n  furnished to do so, subject to the following conditions:\n\n  The above copyright notice and this permission notice shall be included in\n  all copies or substantial portions of the Software.\n\n  THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n  IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n  FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n  AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n  LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n  THE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer_es')\n\n// Inherit from the utility class in stemmer_es\nclass PorterStemmer extends Stemmer {\n  isVowel (c) {\n    const regex = /[aeiouáéíóú]/gi\n\n    return regex.test(c)\n  }\n\n  nextVowelPosition (word, start = 0) {\n    const length = word.length\n\n    for (let position = start; position < length; position++) {\n      if (this.isVowel(word[position])) {\n        return position\n      }\n    }\n\n    return length\n  }\n\n  nextConsonantPosition (word, start = 0) {\n    const length = word.length\n\n    for (let position = start; position < length; position++) {\n      if (!this.isVowel(word[position])) {\n        return position\n      }\n    }\n\n    return length\n  }\n\n  endsIn (word, suffix) {\n    if (word.length < suffix.length) {\n      return false\n    }\n\n    return (word.slice(-suffix.length) === suffix)\n  }\n\n  endsInArr (word, suffixes) {\n    const matches = []\n    for (const i in suffixes) {\n      if (this.endsIn(word, suffixes[i])) {\n        matches.push(suffixes[i])\n      }\n    }\n    const longest = matches.sort(function (a, b) {\n      return b.length - a.length\n    })[0]\n\n    if (longest) {\n      return longest\n    } else {\n      return ''\n    }\n  }\n\n  removeAccent (word) {\n    const accentedVowels = ['á', 'é', 'í', 'ó', 'ú']\n    const vowels = ['a', 'e', 'i', 'o', 'u']\n\n    for (const i in accentedVowels) {\n      word = word.replace(accentedVowels[i], vowels[i])\n    }\n\n    return word\n  }\n\n  stem (word) {\n    const length = word.length\n\n    word.toLowerCase()\n\n    if (length < 2) {\n      return this.removeAccent(word)\n    }\n\n    let r1, r2, rv\n    r1 = length\n    r2 = length\n    rv = length\n\n    // R1 is the region after the first non-vowel following a vowel, or is the null region\n    // at the end of the word if there is no such non-vowel.\n    for (let i = 0; i < (length - 1) && r1 === length; i++) {\n      if (this.isVowel(word[i]) && !this.isVowel(word[i + 1])) {\n        r1 = i + 2\n      }\n    }\n\n    // R2 is the region after the first non-vowel following a vowel in R1,\n    // or is the null region at the end of the word if there is no such non-vowel.\n    for (let i = r1; i < (length - 1) && r2 === length; i++) {\n      if (this.isVowel(word[i]) && !this.isVowel(word[i + 1])) {\n        r2 = i + 2\n      }\n    }\n\n    if (length > 3) {\n      if (!this.isVowel(word[1])) {\n        rv = this.nextVowelPosition(word, 2) + 1\n      } else if (this.isVowel(word[0]) && this.isVowel(word[1])) {\n        rv = this.nextConsonantPosition(word, 2) + 1\n      } else {\n        rv = 3\n      }\n    }\n\n    let r1Text = word.slice(r1)\n    let r2Text = word.slice(r2)\n    let rvText = word.slice(rv)\n    const originalWord = word\n\n    // Step 0: Attached pronoun\n    const pronounSuffix = ['me', 'se', 'sela', 'selo', 'selas', 'selos', 'la', 'le', 'lo', 'las', 'les', 'los', 'nos']\n    const pronounSuffixPre1 = ['iéndo', 'ándo', 'ár', 'ér', 'ír']\n    const pronounSuffixPre2 = ['iendo', 'ando', 'ar', 'er', 'ir']\n\n    const suffix = this.endsInArr(word, pronounSuffix)\n\n    if (suffix !== '') {\n      let preSuffix = this.endsInArr(rvText.slice(0, -suffix.length), pronounSuffixPre1)\n\n      if (preSuffix !== '') {\n        word = this.removeAccent(word.slice(0, -suffix.length))\n      } else {\n        preSuffix = this.endsInArr(rvText.slice(0, -suffix.length), pronounSuffixPre2)\n\n        if (preSuffix !== '' || (this.endsIn(word.slice(0, -suffix.length), 'uyendo'))) {\n          word = word.slice(0, -suffix.length)\n        }\n      }\n    }\n\n    if (word !== originalWord) {\n      r1Text = word.slice(r1)\n      r2Text = word.slice(r2)\n      rvText = word.slice(rv)\n    }\n\n    const wordAfter0 = word\n    let suf = null\n\n    if ((suf = this.endsInArr(r2Text, ['anza', 'anzas', 'ico', 'ica', 'icos', 'icas', 'ismo', 'ismos',\n      'able', 'ables', 'ible', 'ibles', 'ista', 'istas', 'oso', 'osa',\n      'osos', 'osas', 'amiento', 'amientos', 'imiento', 'imientos'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r2Text, ['icadora', 'icador', 'icación', 'icadoras', 'icadores', 'icaciones',\n      'icante', 'icantes', 'icancia', 'icancias', 'adora', 'ador', 'ación',\n      'adoras', 'adores', 'aciones', 'ante', 'antes', 'ancia', 'ancias'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r2Text, ['logía', 'logías'])) !== '') {\n      word = word.slice(0, -suf.length) + 'log'\n    } else if ((suf = this.endsInArr(r2Text, ['ución', 'uciones'])) !== '') {\n      word = word.slice(0, -suf.length) + 'u'\n    } else if ((suf = this.endsInArr(r2Text, ['encia', 'encias'])) !== '') {\n      word = word.slice(0, -suf.length) + 'ente'\n    } else if ((suf = this.endsInArr(r2Text, ['ativamente', 'ivamente', 'osamente', 'icamente', 'adamente'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r1Text, ['amente'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r2Text, ['antemente', 'ablemente', 'iblemente', 'mente'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r2Text, ['abilidad', 'abilidades', 'icidad', 'icidades', 'ividad', 'ividades', 'idad', 'idades'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((suf = this.endsInArr(r2Text, ['ativa', 'ativo', 'ativas', 'ativos', 'iva', 'ivo', 'ivas', 'ivos'])) !== '') {\n      word = word.slice(0, -suf.length)\n    }\n\n    if (word !== wordAfter0) {\n      r1Text = word.slice(r1)\n      r2Text = word.slice(r2)\n      rvText = word.slice(rv)\n    }\n    const wordAfter1 = word\n\n    if (wordAfter0 === wordAfter1) {\n      // Do step 2a if no ending was removed by step 1.\n      suf = this.endsInArr(rvText, ['ya', 'ye', 'yan', 'yen', 'yeron', 'yendo', 'yo', 'yó', 'yas', 'yes', 'yais', 'yamos'])\n\n      if (suf !== '' && (word.slice(-suf.length - 1, -suf.length) === 'u')) {\n        word = word.slice(0, -suf.length)\n      }\n\n      if (word !== wordAfter1) {\n        r1Text = word.slice(r1)\n        r2Text = word.slice(r2)\n        rvText = word.slice(rv)\n      }\n\n      const wordAfter2a = word\n      // Do Step 2b if step 2a was done, but failed to remove a suffix.\n      if (wordAfter2a === wordAfter1) {\n        if ((suf = this.endsInArr(rvText, ['arían', 'arías', 'arán', 'arás', 'aríais', 'aría', 'aréis',\n          'aríamos', 'aremos', 'ará', 'aré', 'erían', 'erías', 'erán',\n          'erás', 'eríais', 'ería', 'eréis', 'eríamos', 'eremos', 'erá',\n          'eré', 'irían', 'irías', 'irán', 'irás', 'iríais', 'iría', 'iréis',\n          'iríamos', 'iremos', 'irá', 'iré', 'aba', 'ada', 'ida', 'ía', 'ara',\n          'iera', 'ad', 'ed', 'id', 'ase', 'iese', 'aste', 'iste', 'an',\n          'aban', 'ían', 'aran', 'ieran', 'asen', 'iesen', 'aron', 'ieron',\n          'ado', 'ido', 'ando', 'iendo', 'ió', 'ar', 'er', 'ir', 'as', 'abas',\n          'adas', 'idas', 'ías', 'aras', 'ieras', 'ases', 'ieses', 'ís', 'áis',\n          'abais', 'íais', 'arais', 'ierais', '  aseis', 'ieseis', 'asteis',\n          'isteis', 'ados', 'idos', 'amos', 'ábamos', 'íamos', 'imos', 'áramos',\n          'iéramos', 'iésemos', 'ásemos'])) !== '') {\n          word = word.slice(0, -suf.length)\n        } else if ((suf = this.endsInArr(rvText, ['en', 'es', 'éis', 'emos'])) !== '') {\n          word = word.slice(0, -suf.length)\n          if (this.endsIn(word, 'gu')) {\n            word = word.slice(0, -1)\n          }\n        }\n      }\n    }\n\n    r1Text = word.slice(r1)\n    r2Text = word.slice(r2)\n    rvText = word.slice(rv)\n\n    if ((suf = this.endsInArr(rvText, ['os', 'a', 'o', 'á', 'í', 'ó'])) !== '') {\n      word = word.slice(0, -suf.length)\n    } else if ((this.endsInArr(rvText, ['e', 'é'])) !== '') {\n      word = word.slice(0, -1)\n      rvText = word.slice(rv)\n      if (this.endsIn(rvText, 'u') && this.endsIn(word, 'gu')) {\n        word = word.slice(0, -1)\n      }\n    }\n\n    return this.removeAccent(word)\n  }\n}\n\nmodule.exports = new PorterStemmer()\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_fa.js",
    "content": "/*\r\nCopyright (c) 2011, Chris Umbel\r\nFarsi Porter Stemmer by Fardin Koochaki <me@fardinak.com>\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst Stemmer = require('./stemmer_fa')\r\n\r\nconst PorterStemmer = new Stemmer()\r\nmodule.exports = PorterStemmer\r\n\r\n// disabled stemming for Farsi\r\n// Farsi stemming will be supported soon\r\nPorterStemmer.stem = function (token) {\r\n  return token\r\n}\r\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_fr.js",
    "content": "/*\nCopyright (c) 2014, Ismaël Héry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n/*\n * Spec for the French Porter Stemmer can be found at:\n * http://snowball.tartarus.org/algorithms/french/stemmer.html\n */\n\n'use strict'\n\nconst Stemmer = require('./stemmer_fr')\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\n// Export\nPorterStemmer.stem = stem\n\n// Exports for test purpose\nPorterStemmer.prelude = prelude\nPorterStemmer.regions = regions\nPorterStemmer.endsinArr = endsinArr\n\n/**\n * Stem a word thanks to Porter Stemmer rules\n * @param  {String} token Word to be stemmed\n * @return {String}       Stemmed word\n */\nfunction stem (token) {\n  token = prelude(token.toLowerCase())\n\n  if (token.length === 1) { return token }\n\n  const regs = regions(token)\n\n  let r1txt, r2txt, rvtxt\n  r1txt = token.substring(regs.r1)\n  r2txt = token.substring(regs.r2)\n  rvtxt = token.substring(regs.rv)\n\n  // Step 1\n  const beforeStep1 = token\n  let suf, letterBefore, letter2Before, i\n  let doStep2a = false\n\n  if ((suf = endsinArr(r2txt, ['ance', 'iqUe', 'isme', 'able', 'iste', 'eux', 'ances', 'iqUes', 'ismes', 'ables', 'istes'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(token, ['icatrice', 'icateur', 'ication', 'icatrices', 'icateurs', 'ications'])) !== '') {\n    if (endsinArr(r2txt, ['icatrice', 'icateur', 'ication', 'icatrices', 'icateurs', 'ications']) !== '') {\n      token = token.slice(0, -suf.length) // delete\n    } else {\n      token = token.slice(0, -suf.length) + 'iqU' // replace by iqU\n    }\n  } else if ((suf = endsinArr(r2txt, ['atrice', 'ateur', 'ation', 'atrices', 'ateurs', 'ations'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(r2txt, ['logie', 'logies'])) !== '') {\n    token = token.slice(0, -suf.length) + 'log' // replace with log\n  } else if ((suf = endsinArr(r2txt, ['usion', 'ution', 'usions', 'utions'])) !== '') {\n    token = token.slice(0, -suf.length) + 'u' // replace with u\n  } else if ((suf = endsinArr(r2txt, ['ence', 'ences'])) !== '') {\n    token = token.slice(0, -suf.length) + 'ent' // replace with ent\n  } else if ((suf = endsinArr(r1txt, ['issement', 'issements'])) !== '') {\n    if (!isVowel(token[token.length - suf.length - 1])) {\n      token = token.slice(0, -suf.length) // delete\n      r1txt = token.substring(regs.r1)\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n  } else if ((suf = endsinArr(r2txt, ['ativement', 'ativements'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(r2txt, ['ivement', 'ivements'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(token, ['eusement', 'eusements'])) !== '') {\n    if ((suf = endsinArr(r2txt, ['eusement', 'eusements'])) !== '') {\n      token = token.slice(0, -suf.length)\n    } else if ((suf = endsinArr(r1txt, ['eusement', 'eusements'])) !== '') {\n      token = token.slice(0, -suf.length) + 'eux'\n    } else if ((suf = endsinArr(rvtxt, ['ement', 'ements'])) !== '') {\n      token = token.slice(0, -suf.length)\n    } // delete\n  } else if ((suf = endsinArr(r2txt, ['ablement', 'ablements', 'iqUement', 'iqUements'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(rvtxt, ['ièrement', 'ièrements', 'Ièrement', 'Ièrements'])) !== '') {\n    token = token.slice(0, -suf.length) + 'i' // replace by i\n  } else if ((suf = endsinArr(rvtxt, ['ement', 'ements'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(token, ['icité', 'icités'])) !== '') {\n    if (endsinArr(r2txt, ['icité', 'icités']) !== '') {\n      token = token.slice(0, -suf.length)\n    } else {\n      token = token.slice(0, -suf.length) + 'iqU'\n    }\n  } else if ((suf = endsinArr(token, ['abilité', 'abilités'])) !== '') {\n    if (endsinArr(r2txt, ['abilité', 'abilités']) !== '') {\n      token = token.slice(0, -suf.length)\n    } else {\n      token = token.slice(0, -suf.length) + 'abl'\n    }\n  } else if ((suf = endsinArr(r2txt, ['ité', 'ités'])) !== '') {\n    token = token.slice(0, -suf.length) // delete if in R2\n  } else if ((suf = endsinArr(token, ['icatif', 'icative', 'icatifs', 'icatives'])) !== '') {\n    if ((suf = endsinArr(r2txt, ['icatif', 'icative', 'icatifs', 'icatives'])) !== '') {\n      token = token.slice(0, -suf.length) // delete\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n    if ((suf = endsinArr(r2txt, ['atif', 'ative', 'atifs', 'atives'])) !== '') {\n      token = token.slice(0, -suf.length - 2) + 'iqU' // replace with iqU\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n  } else if ((suf = endsinArr(r2txt, ['atif', 'ative', 'atifs', 'atives'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(r2txt, ['if', 'ive', 'ifs', 'ives'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(token, ['eaux'])) !== '') {\n    token = token.slice(0, -suf.length) + 'eau' // replace by eau\n  } else if ((suf = endsinArr(r1txt, ['aux'])) !== '') {\n    token = token.slice(0, -suf.length) + 'al' // replace by al\n  } else if ((suf = endsinArr(r2txt, ['euse', 'euses'])) !== '') {\n    token = token.slice(0, -suf.length) // delete\n  } else if ((suf = endsinArr(r1txt, ['euse', 'euses'])) !== '') {\n    token = token.slice(0, -suf.length) + 'eux' // replace by eux\n  } else if ((suf = endsinArr(rvtxt, ['amment'])) !== '') {\n    token = token.slice(0, -suf.length) + 'ant' // replace by ant\n    doStep2a = true\n  } else if ((suf = endsinArr(rvtxt, ['emment'])) !== '') {\n    token = token.slice(0, -suf.length) + 'ent' // replace by ent\n    doStep2a = true\n  } else if ((suf = endsinArr(rvtxt, ['ment', 'ments'])) !== '') {\n    // letter before must be a vowel in RV\n    letterBefore = token[token.length - suf.length - 1]\n    if (isVowel(letterBefore) && endsin(rvtxt, letterBefore + suf)) {\n      token = token.slice(0, -suf.length) // delete\n      doStep2a = true\n    }\n  }\n\n  // re compute regions\n  r1txt = token.substring(regs.r1)\n  r2txt = token.substring(regs.r2)\n  rvtxt = token.substring(regs.rv)\n\n  // Step 2a\n  const beforeStep2a = token\n  let step2aDone = false\n  if (beforeStep1 === token || doStep2a) {\n    step2aDone = true\n    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'])) !== '') {\n      letterBefore = token[token.length - suf.length - 1]\n      if (!isVowel(letterBefore) && endsin(rvtxt, letterBefore + suf)) { token = token.slice(0, -suf.length) } // delete\n    }\n  }\n\n  // Step 2b\n  if (step2aDone && token === beforeStep2a) {\n    if ((suf = endsinArr(rvtxt, ['é', 'ée', 'ées', 'és', 'èrent', 'er', 'era', 'erai', 'eraIent', 'erais', 'erait', 'eras', 'erez', 'eriez', 'erions', 'erons', 'eront', 'ez', 'iez', 'Iez'])) !== '') {\n      token = token.slice(0, -suf.length) // delete\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    } else if ((suf = endsinArr(rvtxt, ['ions'])) !== '' && endsinArr(r2txt, ['ions'])) {\n      token = token.slice(0, -suf.length) // delete\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    } else if ((suf = endsinArr(rvtxt, ['âmes', 'ât', 'âtes', 'a', 'ai', 'aIent', 'ais', 'ait', 'ant', 'ante', 'antes', 'ants', 'as', 'asse', 'assent', 'asses', 'assiez', 'assions'])) !== '') {\n      token = token.slice(0, -suf.length) // delete\n\n      letterBefore = token[token.length - 1]\n      if (letterBefore === 'e' && endsin(rvtxt, 'e' + suf)) { token = token.slice(0, -1) }\n\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n  }\n\n  // Step 3\n  if (!(token === beforeStep1)) {\n    if (token[token.length - 1] === 'Y') { token = token.slice(0, -1) + 'i' }\n    if (token[token.length - 1] === 'ç') { token = token.slice(0, -1) + 'c' }\n  } else {\n    // Step 4\n    letterBefore = token[token.length - 1]\n    letter2Before = token[token.length - 2]\n\n    if (letterBefore === 's' && ['a', 'i', 'o', 'u', 'è', 's'].indexOf(letter2Before) === -1) {\n      token = token.slice(0, -1)\n      r1txt = token.substring(regs.r1)\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n\n    if ((suf = endsinArr(r2txt, ['ion'])) !== '') {\n      letterBefore = token[token.length - suf.length - 1]\n      if (letterBefore === 's' || letterBefore === 't') {\n        token = token.slice(0, -suf.length) // delete\n        r1txt = token.substring(regs.r1)\n        r2txt = token.substring(regs.r2)\n        rvtxt = token.substring(regs.rv)\n      }\n    }\n\n    if ((suf = endsinArr(rvtxt, ['ier', 'ière', 'Ier', 'Ière'])) !== '') {\n      token = token.slice(0, -suf.length) + 'i' // replace by i\n      r1txt = token.substring(regs.r1)\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n    if ((suf = endsinArr(rvtxt, 'e')) !== '') {\n      token = token.slice(0, -suf.length) // delete\n      r1txt = token.substring(regs.r1)\n      r2txt = token.substring(regs.r2)\n      rvtxt = token.substring(regs.rv)\n    }\n    if ((suf = endsinArr(rvtxt, 'ë')) !== '') {\n      if (token.slice(token.length - 3, -1) === 'gu') { token = token.slice(0, -suf.length) } // delete\n    }\n  }\n\n  // Step 5\n  if ((suf = endsinArr(token, ['enn', 'onn', 'ett', 'ell', 'eill'])) !== '') {\n    token = token.slice(0, -1) // delete last letter\n  }\n\n  // Step 6\n  i = token.length - 1\n  while (i > 0) {\n    if (!isVowel(token[i])) {\n      i--\n    } else if (i !== token.length - 1 && (token[i] === 'é' || token[i] === 'è')) {\n      token = token.substring(0, i) + 'e' + token.substring(i + 1, token.length)\n      break\n    } else {\n      break\n    }\n  }\n\n  return token.toLowerCase()\n};\n\n/**\n * Compute r1, r2, rv regions as required by french porter stemmer algorithm\n * @param  {String} token Word to compute regions on\n * @return {Object}       Regions r1, r2, rv as offsets from the begining of the word\n */\nfunction regions (token) {\n  let r1, r2, rv, len\n  // var i\n\n  r1 = r2 = rv = len = token.length\n\n  // R1 is the region after the first non-vowel following a vowel,\n  for (let i = 0; i < len - 1 && r1 === len; i++) {\n    if (isVowel(token[i]) && !isVowel(token[i + 1])) {\n      r1 = i + 2\n    }\n  }\n  // Or is the null region at the end of the word if there is no such non-vowel.\n\n  // R2 is the region after the first non-vowel following a vowel in R1\n  for (let i = r1; i < len - 1 && r2 === len; i++) {\n    if (isVowel(token[i]) && !isVowel(token[i + 1])) {\n      r2 = i + 2\n    }\n  }\n  // Or is the null region at the end of the word if there is no such non-vowel.\n\n  // RV region\n  const three = token.slice(0, 3)\n  if (isVowel(token[0]) && isVowel(token[1])) {\n    rv = 3\n  }\n  if (three === 'par' || three === 'col' || three === 'tap') {\n    rv = 3\n  } else {\n  // the region after the first vowel not at the beginning of the word or null\n    for (let i = 1; i < len - 1 && rv === len; i++) {\n      if (isVowel(token[i])) {\n        rv = i + 1\n      }\n    }\n  }\n\n  return {\n    r1: r1,\n    r2: r2,\n    rv: rv\n  }\n};\n\n/**\n * Pre-process/prepare words as required by french porter stemmer algorithm\n * @param  {String} token Word to be prepared\n * @return {String}       Prepared word\n */\nfunction prelude (token) {\n  token = token.toLowerCase()\n\n  let result = ''\n  let i = 0\n\n  // special case for i = 0 to avoid '-1' index\n  if (token[i] === 'y' && isVowel(token[i + 1])) {\n    result += token[i].toUpperCase()\n  } else {\n    result += token[i]\n  }\n\n  for (i = 1; i < token.length; i++) {\n    if ((token[i] === 'u' || token[i] === 'i') && isVowel(token[i - 1]) && isVowel(token[i + 1])) {\n      result += token[i].toUpperCase()\n    } else if (token[i] === 'y' && (isVowel(token[i - 1]) || isVowel(token[i + 1]))) {\n      result += token[i].toUpperCase()\n    } else if (token[i] === 'u' && token[i - 1] === 'q') {\n      result += token[i].toUpperCase()\n    } else {\n      result += token[i]\n    }\n  }\n\n  return result\n};\n\n/**\n * Return longest matching suffixes for a token or '' if no suffix match\n * @param  {String} token    Word to find matching suffix\n * @param  {Array} suffixes  Array of suffixes to test matching\n * @return {String}          Longest found matching suffix or ''\n */\nfunction endsinArr (token, suffixes) {\n  let i; let longest = ''\n  for (i = 0; i < suffixes.length; i++) {\n    if (endsin(token, suffixes[i]) && suffixes[i].length > longest.length) { longest = suffixes[i] }\n  }\n\n  return longest\n};\n\nfunction isVowel (letter) {\n  return (letter === 'a' || letter === 'e' || letter === 'i' || letter === 'o' || letter === 'u' || letter === 'y' || letter === 'â' || letter === 'à' || letter === 'ë' ||\n    letter === 'é' || letter === 'ê' || letter === 'è' || letter === 'ï' || letter === 'î' || letter === 'ô' || letter === 'û' || letter === 'ù')\n};\n\nfunction endsin (token, suffix) {\n  if (token.length < suffix.length) return false\n  return (token.slice(-suffix.length) === suffix)\n};\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_it.js",
    "content": "/*\r\nCopyright (c) 2012, Leonardo Fenu, Chris Umbel\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst Stemmer = require('./stemmer_it')\r\n\r\nconst PorterStemmer = new Stemmer()\r\nmodule.exports = PorterStemmer\r\n\r\nfunction isVowel (letter) {\r\n  return (letter === 'a' || letter === 'e' || letter === 'i' || letter === 'o' || letter === 'u' || letter === 'à' ||\r\n    letter === 'è' || letter === 'ì' || letter === 'ò' || letter === 'ù')\r\n}\r\n\r\nfunction getNextVowelPos (token, start) {\r\n  start = start + 1\r\n  const length = token.length\r\n  for (let i = start; i < length; i++) {\r\n    if (isVowel(token[i])) {\r\n      return i\r\n    }\r\n  }\r\n  return length\r\n}\r\n\r\nfunction getNextConsonantPos (token, start) {\r\n  const length = token.length\r\n  for (let i = start; i < length; i++) { if (!isVowel(token[i])) return i }\r\n  return length\r\n}\r\n\r\nfunction endsin (token, suffix) {\r\n  if (token.length < suffix.length) return false\r\n  return (token.slice(-suffix.length) === suffix)\r\n}\r\n\r\nfunction endsinArr (token, suffixes) {\r\n  for (let i = 0; i < suffixes.length; i++) {\r\n    if (endsin(token, suffixes[i])) return suffixes[i]\r\n  }\r\n  return ''\r\n}\r\n\r\nfunction replaceAcute (token) {\r\n  let str = token.replace(/á/gi, 'à')\r\n  str = str.replace(/é/gi, 'è')\r\n  str = str.replace(/í/gi, 'ì')\r\n  str = str.replace(/ó/gi, 'ò')\r\n  str = str.replace(/ú/gi, 'ù')\r\n  return str\r\n}\r\n\r\nfunction vowelMarking (token) {\r\n  function replacer (match, p1, p2, p3) {\r\n    return p1 + p2.toUpperCase() + p3\r\n  }\r\n  const str = token.replace(/([aeiou])(i|u)([aeiou])/g, replacer)\r\n  return str\r\n}\r\n\r\n// perform full stemming algorithm on a single word\r\nPorterStemmer.stem = function (token) {\n  token = token.toLowerCase()\r\n  token = replaceAcute(token)\r\n  token = token.replace(/qu/g, 'qU')\r\n  token = vowelMarking(token)\r\n\r\n  if (token.length < 3) {\r\n    return token\r\n  }\r\n\r\n  let r1 = token.length\r\n  let r2 = token.length\r\n  let rv = token.length\r\n  const len = token.length\r\n  // R1 is the region after the first non-vowel following a vowel,\r\n  for (let i = 0; i < token.length - 1 && r1 === len; i++) {\r\n    if (isVowel(token[i]) && !isVowel(token[i + 1])) {\r\n      r1 = i + 2\r\n    }\r\n  }\r\n  // Or is the null region at the end of the word if there is no such non-vowel.\r\n\r\n  // R2 is the region after the first non-vowel following a vowel in R1\r\n  for (let i = r1; i < token.length - 1 && r2 === len; i++) {\r\n    if (isVowel(token[i]) && !isVowel(token[i + 1])) {\r\n      r2 = i + 2\r\n    }\r\n  }\r\n\r\n  // Or is the null region at the end of the word if there is no such non-vowel.\r\n\r\n  // If the second letter is a consonant, RV is the region after the next following vowel,\r\n\r\n  // RV as follow\r\n\r\n  if (len > 3) {\r\n    if (!isVowel(token[1])) {\r\n      // If the second letter is a consonant, RV is the region after the next following vowel\r\n      rv = getNextVowelPos(token, 1) + 1\r\n    } else if (isVowel(token[0]) && isVowel(token[1])) {\r\n      // or if the first two letters are vowels, RV is the region after the next consonant\r\n      rv = getNextConsonantPos(token, 2) + 1\r\n    } else {\r\n      // 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.\r\n      rv = 3\r\n    }\r\n  }\r\n\r\n  let r1txt = token.substring(r1)\r\n  let r2txt = token.substring(r2)\r\n  let rvtxt = token.substring(rv)\r\n\r\n  const tokenOrig = token\r\n\r\n  // Step 0: Attached pronoun\r\n\r\n  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']\r\n  const pronounSufPre1 = ['ando', 'endo']\r\n  const pronounSufPre2 = ['ar', 'er', 'ir']\r\n  let suf = endsinArr(token, pronounSuf)\r\n\r\n  if (suf !== '') {\r\n    const preSuff1 = endsinArr(rvtxt.slice(0, -suf.length), pronounSufPre1)\r\n    const preSuff2 = endsinArr(rvtxt.slice(0, -suf.length), pronounSufPre2)\r\n\r\n    if (preSuff1 !== '') {\r\n      token = token.slice(0, -suf.length)\r\n    }\r\n    if (preSuff2 !== '') {\r\n      token = token.slice(0, -suf.length) + 'e'\r\n    }\r\n  }\r\n\r\n  if (token !== tokenOrig) {\r\n    r1txt = token.substring(r1)\r\n    r2txt = token.substring(r2)\r\n    rvtxt = token.substring(rv)\r\n  }\r\n\r\n  const tokenAfter0 = token\r\n\r\n  // Step 1:  Standard suffix removal\r\n\r\n  if ((suf = endsinArr(r2txt, ['ativamente', 'abilamente', 'ivamente', 'osamente', 'icamente'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } else if ((suf = endsinArr(r2txt, ['icazione', 'icazioni', 'icatore', 'icatori', 'azione', 'azioni', 'atore', 'atori'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } else if ((suf = endsinArr(r2txt, ['logia', 'logie'])) !== '') {\r\n    token = token.slice(0, -suf.length) + 'log' // replace with log\r\n  } else if ((suf = endsinArr(r2txt, ['uzione', 'uzioni', 'usione', 'usioni'])) !== '') {\r\n    token = token.slice(0, -suf.length) + 'u' // replace with u\r\n  } else if ((suf = endsinArr(r2txt, ['enza', 'enze'])) !== '') {\r\n    token = token.slice(0, -suf.length) + 'ente' // replace with ente\r\n  } else if ((suf = endsinArr(rvtxt, ['amento', 'amenti', 'imento', 'imenti'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } else if ((suf = endsinArr(r1txt, ['amente'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } 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'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } else if ((suf = endsinArr(r2txt, ['abilità', 'icità', 'ività', 'ità'])) !== '') {\r\n    token = token.slice(0, -suf.length) // delete\r\n  } else if ((suf = endsinArr(r2txt, ['icativa', 'icativo', 'icativi', 'icative', 'ativa', 'ativo', 'ativi', 'ative', 'iva', 'ivo', 'ivi', 'ive'])) !== '') {\r\n    token = token.slice(0, -suf.length)\r\n  }\r\n\r\n  if (token !== tokenAfter0) {\r\n    r1txt = token.substring(r1)\r\n    r2txt = token.substring(r2)\r\n    rvtxt = token.substring(rv)\r\n  }\r\n\r\n  const tokenAfter1 = token\r\n\r\n  // Step 2:  Verb suffixes\r\n\r\n  if (tokenAfter0 === tokenAfter1) {\r\n    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'])) !== '') {\r\n      token = token.slice(0, -suf.length)\r\n    }\r\n  }\r\n\r\n  r1txt = token.substring(r1)\r\n  r2txt = token.substring(r2)\r\n  rvtxt = token.substring(rv)\r\n\r\n  // Always do step 3.\r\n\r\n  if ((suf = endsinArr(rvtxt, ['ia', 'ie', 'ii', 'io', 'ià', 'iè', 'iì', 'iò', 'a', 'e', 'i', 'o', 'à', 'è', 'ì', 'ò'])) !== '') {\r\n    token = token.slice(0, -suf.length)\r\n  }\r\n\r\n  r1txt = token.substring(r1)\r\n  r2txt = token.substring(r2)\r\n  rvtxt = token.substring(rv)\r\n\r\n  if ((suf = endsinArr(rvtxt, ['ch'])) !== '') {\r\n    token = token.slice(0, -suf.length) + 'c' // replace with c\r\n  } else if ((suf = endsinArr(rvtxt, ['gh'])) !== '') {\r\n    token = token.slice(0, -suf.length) + 'g' // replace with g\r\n  }\r\n\r\n  r1txt = token.substring(r1)\r\n  r2txt = token.substring(r2)\r\n  rvtxt = token.substring(rv)\r\n\r\n  return token.toLowerCase()\n}\r\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_nl.js",
    "content": "/*\nCopyright (c) 2018, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n/*\n * Spec for the Dutch Porter Stemmer can be found at:\n * http://snowball.tartarus.org/algorithms/dutch/stemmer.html\n */\n\n'use strict'\n\nconst Stemmer = require('./stemmer_nl')\n\nconst DEBUG = false\nconst vowels = 'aeiouèy'\n\nfunction isVowel (x) {\n  return vowels.indexOf(x) > -1\n}\n\n// * Return longest matching suffixes for a token or '' if no suffix match\nfunction endsinArr (str, suffixes) {\n  let i\n  let longest = ''\n  for (i = 0; i < suffixes.length; i++) {\n    if (endsin(str, suffixes[i]) && suffixes[i].length > longest.length) { longest = suffixes[i] }\n  }\n\n  if (DEBUG && longest !== '') {\n    console.log('Matched suffix: ' + longest)\n  }\n  return longest\n}\n\n// Returns true if token has suffix\nfunction endsin (str, suffix) {\n  if (str.length < suffix.length) return false\n  return (str.slice(-suffix.length) === suffix)\n}\n\n// Removes a suffix of len characters and returns the string\nfunction removeSuffix (str, len) {\n  return str.substr(0, str.length - len)\n}\n\n// Define undoubling the ending as removing the last letter if the word ends kk, dd or tt.\nfunction undoubleEnding (str) {\n  if (str.substr(-2) === 'kk' || str.substr(-2) === 'tt' || str.substr(-2) === 'dd') {\n    return str.substr(0, str.length - 1)\n  } else {\n    return str\n  }\n}\n\nclass PorterStemmer extends Stemmer {\n  replaceAccentedCharacters (word) {\n    const accentedCharactersMapping = {\n      ä: 'a',\n      ë: 'e',\n      ï: 'i',\n      ö: 'o',\n      ü: 'u',\n      á: 'a',\n      é: 'e',\n      í: 'i',\n      ó: 'o',\n      ú: 'u'\n    }\n    let result = word\n    for (const x in accentedCharactersMapping) {\n      result = result.replace(new RegExp(x, 'g'), accentedCharactersMapping[x])\n    }\n    if (DEBUG) {\n      console.log('replaceAccentedCharacters: ' + result)\n    }\n    return result\n  }\n\n  // Put initial y, y after a vowel, and i between vowels into upper case.\n  handleYI (word) {\n    // Initial y\n    let result = word.replace(/^y/, 'Y')\n    if (DEBUG) {\n      console.log('handleYI: initial y: ' + result)\n    }\n    // y after vowel\n    result = result.replace(/([aeioué])y/g, '$1Y')\n    if (DEBUG) {\n      console.log('handleYI: y after vowel: ' + result)\n    }\n    // i between vowels\n    result = result.replace(/([aeioué])i([aeioué])/g, '$1I$2')\n    if (DEBUG) {\n      console.log('handleYI: i between vowels:' + result)\n    }\n    return result\n  }\n\n  // Determines R1 and R2; adapted from the French Porter Stemmer\n  markRegions (token) {\n    let r1, r2, len\n\n    r1 = r2 = len = token.length\n\n    // R1 is the region after the first non-vowel following a vowel,\n    for (let i = 0; i < len - 1 && r1 === len; i++) {\n      if (isVowel(token[i]) && !isVowel(token[i + 1])) {\n        r1 = i + 2\n      }\n    }\n    // Or is the null region at the end of the word if there is no such non-vowel.\n\n    // R1 is adjusted such that the region before it contains at least 3 characters\n    if (r1 !== len) {\n      // R1 is not null\n      if (r1 < 3) {\n        // Region before does not contain at least 3 characters\n        if (len > 3) {\n          r1 = 3\n          // Now R1 contains at least 3 characters\n        } else {\n          // It is not possible to make the region before long enough\n          r1 = len\n        }\n      }\n    }\n\n    // R2 is the region after the first non-vowel following a vowel in R1\n    for (let i = r1; i < len - 1 && r2 === len; i++) {\n      if (isVowel(token[i]) && !isVowel(token[i + 1])) {\n        r2 = i + 2\n      }\n    }\n    // Or is the null region at the end of the word if there is no such non-vowel.\n\n    if (DEBUG) {\n      console.log('Regions r1 = ' + r1 + ' r2 = ' + r2)\n    }\n\n    this.r1 = r1\n    this.r2 = r2\n  }\n\n  prelude (word) {\n    let result = this.replaceAccentedCharacters(word)\n    result = this.handleYI(result)\n    this.markRegions(result)\n    if (DEBUG) {\n      console.log('Prelude: ' + result)\n    }\n    return result\n  }\n\n  // (1b) en   ene => delete if in R1 and preceded by a valid en-ending, and then undouble the ending\n  // Define a valid en-ending as a non-vowel, and not gem.\n  // Define undoubling the ending as removing the last letter if the word ends kk, dd or tt.\n  step1b (word, suffixes) {\n    let result = word\n\n    const match = endsinArr(result, suffixes)\n    if (match !== '') {\n      const pos = result.length - match.length\n      if (pos >= this.r1) {\n        // check the character before the matched en/ene AND check for gem\n        if (!isVowel(result[pos - 1]) && result.substr(pos - 3, 3) !== 'gem') {\n          // delete\n          result = removeSuffix(result, match.length)\n          // Undouble the ending\n          result = undoubleEnding(result)\n        }\n      }\n    }\n    if (DEBUG) {\n      console.log('step 1b: ' + result)\n    }\n    return result\n  }\n\n  step1 (word) {\n    let result = word\n    // (1a) heden => replace with heid if in R1\n    if (endsin(result, 'heden') && result.length - 5 >= this.r1) {\n      result = removeSuffix(result, 5)\n      result += 'heid'\n    }\n    if (DEBUG) {\n      console.log('step 1a: ' + result)\n    }\n\n    result = this.step1b(result, ['en', 'ene'])\n\n    // (1c) s   se => delete if in R1 and preceded by a valid s-ending\n    // Define a valid s-ending as a non-vowel other than j.\n    const match = endsinArr(result, ['se', 's'])\n    if (match !== '') {\n      const pos = result.length - match.length\n      if (pos >= this.r1) {\n        // check the character before the matched s/se\n        // HtD: if there is a s before the s/se the suffix should stay\n        // if (!isVowel(result[pos - 1]) && result[pos - 1] != \"j\") {\n        if (!isVowel(result[pos - 1]) && !result.match(/[js]se?$/)) {\n          result = removeSuffix(result, match.length)\n        }\n      }\n    }\n    if (DEBUG) {\n      console.log('step 1c: ' + result)\n    }\n    return result\n  }\n\n  // Delete suffix e if in R1 and preceded by a non-vowel, and then undouble the ending\n  step2 (word) {\n    let result = word\n    if (endsin(result, 'e') && this.r1 < result.length) {\n      if (result.length > 1 && !isVowel(result[result.length - 2])) {\n        // Delete\n        result = removeSuffix(result, 1)\n        this.suffixeRemoved = true\n        // Undouble the ending\n        result = undoubleEnding(result)\n      }\n    }\n\n    if (DEBUG) {\n      console.log('step2: ' + result)\n    }\n    return result\n  }\n\n  // Step 3a: heid => delete heid if in R2 and not preceded by c, and treat a preceding en as in step 1(b)\n  step3a (word) {\n    let result = word\n    if (endsin(result, 'heid') && result.length - 4 >= this.r2 && result[result.length - 5] !== 'c') {\n      // Delete\n      result = removeSuffix(result, 4)\n      // Treat a preceding en as in step 1b\n      result = this.step1b(result, ['en'])\n    }\n    if (DEBUG) {\n      console.log('step 3a: ' + result)\n    }\n    return result\n  }\n\n  // d suffixes: Search for the longest among the following suffixes, and perform the action indicated.\n  step3b (word) {\n    let result = word\n\n    // end   ing => delete if in R2; if preceded by ig, delete if in R2 and not preceded by e, otherwise undouble the ending\n    const suf = endsinArr(result, ['end', 'ing'])\n    if (suf) {\n      if ((result.length - 3) >= this.r2) {\n        // Delete suffix\n        result = removeSuffix(result, 3)\n        // this.regions(result);\n        if (endsin(result, 'ig') && (result.length - 2 >= this.r2) && result[result.length - 3] !== 'e') {\n          // Delete suffix\n          result = removeSuffix(result, 2)\n        } else {\n          result = undoubleEnding(result)\n        }\n      }\n    }\n\n    // ig => delete if in R2 and not preceded by e\n    if (endsin(result, 'ig') && this.r2 <= result.length - 2 && result[result.length - 3] !== 'e') {\n      result = removeSuffix(result, 2)\n    }\n\n    // lijk => delete if in R2, and then repeat step 2\n    if (endsin(result, 'lijk') && this.r2 <= result.length - 4) {\n      result = removeSuffix(result, 4)\n      // repeat step 2\n      result = this.step2(result)\n    }\n\n    // baar => delete if in R2\n    if (endsin(result, 'baar') && this.r2 <= result.length - 4) {\n      result = removeSuffix(result, 4)\n    }\n\n    // bar => delete if in R2 and if step 2 actually removed an e\n    if (endsin(result, 'bar') && this.r2 <= result.length - 3 && this.suffixeRemoved) {\n      result = removeSuffix(result, 3)\n    }\n\n    if (DEBUG) {\n      console.log('step 3b: ' + result)\n    }\n    return result\n  }\n\n  // undouble vowel => If the words ends CVD, where C is a non-vowel,\n  // D is a non-vowel other than I, and V is double a, e, o or u,\n  // remove one of the vowels from V (for example, maan -> man, brood -> brod)\n  step4 (word) {\n    let result = word\n\n    if (result.match(/[bcdfghjklmnpqrstvwxz](aa|ee|oo|uu)[bcdfghjklmnpqrstvwxz]$/)) {\n      result = result.substr(0, result.length - 2) + result[result.length - 1]\n    }\n\n    if (DEBUG) {\n      console.log('step4: ' + result)\n    }\n    return result\n  }\n\n  // Turn I and Y back into lower case.\n  postlude (word) {\n    return word.toLowerCase()\n  }\n\n  stem (word) {\n    return this.postlude(this.step4(this.step3b(this.step3a(this.step2(this.step1(this.prelude(word)))))))\n  }\n}\n\nmodule.exports = new PorterStemmer()\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_no.js",
    "content": "/*\nCopyright (c) 2014, Kristoffer Brabrand\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer_no')\n\n// Get the part of the token after the first non-vowel following a vowel\nfunction getR1 (token) {\n  const match = token.match(/[aeiouyæåø]{1}[^aeiouyæåø]([A-Za-z0-9_æøåÆØÅäÄöÖüÜ]+)/)\n\n  if (match) {\n    const preR1Length = match.index + 2\n\n    if (preR1Length < 3 && preR1Length > 0) {\n      return token.slice(3)\n    } else if (preR1Length >= 3) {\n      return match[1]\n    } else {\n      return token\n    }\n  }\n\n  return null\n}\n\nfunction step1 (token) {\n  // Perform step 1a-c\n  const step1aResult = step1a(token)\n  const step1bResult = step1b(token)\n  const step1cResult = step1c(token)\n\n  // Returne the shortest result string (from 1a, 1b and 1c)\n  if (step1aResult.length < step1bResult.length) {\n    return (step1aResult.length < step1cResult.length) ? step1aResult : step1cResult\n  } else {\n    return (step1bResult.length < step1cResult.length) ? step1bResult : step1cResult\n  }\n}\n\n// step 1a as defined for the porter stemmer algorithm.\nfunction step1a (token) {\n  const r1 = getR1(token)\n\n  if (!r1) {\n    return token\n  }\n\n  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)$/)\n\n  if (r1Match) {\n    return token.replace(new RegExp(r1Match[1] + '$'), '')\n  }\n\n  return token\n}\n\n// step 1b as defined for the porter stemmer algorithm.\nfunction step1b (token) {\n  const r1 = getR1(token)\n\n  if (!r1) {\n    return token\n  }\n\n  if (token.match(/(b|c|d|f|g|h|j|l|m|n|o|p|r|t|v|y|z)s$/)) {\n    return token.slice(0, -1)\n  }\n\n  if (token.match(/([^aeiouyæåø]k)s$/)) {\n    return token.slice(0, -1)\n  }\n\n  return token\n}\n\n// step 1c as defined for the porter stemmer algorithm.\nfunction step1c (token) {\n  const r1 = getR1(token)\n\n  if (!r1) {\n    return token\n  }\n\n  if (r1.match(/(erte|ert)$/)) {\n    return token.replace(/(erte|ert)$/, 'er')\n  }\n\n  return token\n}\n\n// step 2 as defined for the porter stemmer algorithm.\nfunction step2 (token) {\n  const r1 = getR1(token)\n\n  if (!r1) {\n    return token\n  }\n\n  if (r1.match(/(d|v)t$/)) {\n    return token.slice(0, -1)\n  }\n\n  return token\n}\n\n// step 3 as defined for the porter stemmer algorithm.\nfunction step3 (token) {\n  const r1 = getR1(token)\n\n  if (!r1) { return token }\n\n  const r1Match = r1.match(/(leg|eleg|ig|eig|lig|elig|els|lov|elov|slov|hetslov)$/)\n\n  if (r1Match) {\n    return token.replace(new RegExp(r1Match[1] + '$'), '')\n  }\n\n  return token\n}\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\n// perform full stemming algorithm on a single word\nPorterStemmer.stem = function (token) {\n  return step3(step2(step1(token.toLowerCase()))).toString()\n}\n\n// exports for tests\nPorterStemmer.getR1 = getR1\nPorterStemmer.step1 = step1\nPorterStemmer.step1a = step1a\nPorterStemmer.step1b = step1b\nPorterStemmer.step1c = step1c\nPorterStemmer.step2 = step2\nPorterStemmer.step3 = step3\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_pt.js",
    "content": "/*\nCopyright (c) 2015, Luís Rodrigues\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nmodule.exports = (function () {\n  const Stemmer = require('./stemmer_pt')\n  const Token = require('./token')\n  const PorterStemmer = new Stemmer()\n\n  /**\n   * Marks a region after the first non-vowel following a vowel, or the\n   * null region at the end of the word if there is no such non-vowel.\n   *\n   * @param {Object} token Token to stem.\n   * @param {Number} start Start index (defaults to 0).\n   * @param {Number}       Region start index.\n   */\n  const markRegionN = function (start) {\n    let index = start || 0\n    const length = this.string.length\n    let region = length\n\n    while (index < length - 1 && region === length) {\n      if (this.hasVowelAtIndex(index) && !this.hasVowelAtIndex(index + 1)) {\n        region = index + 2\n      }\n      index++\n    }\n\n    return region\n  }\n\n  /**\n   * Mark RV.\n   *\n   * @param  {Object} token Token to stem.\n   * @return {Number}       Region start index.\n   */\n  const markRegionV = function () {\n    let rv = this.string.length\n\n    if (rv > 3) {\n      if (!this.hasVowelAtIndex(1)) {\n        rv = this.nextVowelIndex(2) + 1\n      } else if (this.hasVowelAtIndex(0) && this.hasVowelAtIndex(1)) {\n        rv = this.nextConsonantIndex(2) + 1\n      } else {\n        rv = 3\n      }\n    }\n\n    return rv\n  }\n\n  /**\n   * Prelude.\n   *\n   * Nasalised vowel forms should be treated as a vowel followed by a consonant.\n   *\n   * @param  {String} token Word to stem.\n   * @return {String}       Stemmed token.\n   */\n  function prelude (token) {\n    return token\n      .replaceAll('ã', 'a~')\n      .replaceAll('õ', 'o~')\n  }\n\n  /**\n   * Step 1: Standard suffix removal.\n   *\n   * This step should always be performed.\n   *\n   * @param  {Token} token Word to stem.\n   * @return {Token}       Stemmed token.\n   */\n  function standardSuffix (token) {\n    token.replaceSuffixInRegion([\n      'amentos', 'imentos', 'aço~es', 'adoras', 'adores', 'amento', 'imento',\n\n      'aça~o', 'adora', 'ância', 'antes', 'ismos', 'istas',\n\n      'ador', 'ante', 'ável', 'ezas', 'icas', 'icos', 'ismo', 'ista', 'ível',\n      'osas', 'osos',\n\n      'eza', 'ica', 'ico', 'osa', 'oso'\n\n    ], '', 'r2')\n\n    token.replaceSuffixInRegion(['logias', 'logia'], 'log', 'r2')\n\n    // token.replaceSuffixInRegion(['uço~es', 'uça~o'], 'u', 'r1');\n\n    token.replaceSuffixInRegion(['ências', 'ência'], 'ente', 'r2')\n\n    token.replaceSuffixInRegion([\n      'ativamente', 'icamente', 'ivamente', 'osamente', 'adamente'\n    ], '', 'r2')\n\n    token.replaceSuffixInRegion('amente', '', 'r1')\n\n    token.replaceSuffixInRegion([\n      'antemente', 'avelmente', 'ivelmente', 'mente'\n    ], '', 'r2')\n\n    token.replaceSuffixInRegion([\n      'abilidades', 'abilidade',\n      'icidades', 'icidade',\n      'ividades', 'ividade',\n      'idades', 'idade'\n    ], '', 'r2')\n\n    token.replaceSuffixInRegion([\n      'ativas', 'ativos', 'ativa', 'ativo',\n      'ivas', 'ivos', 'iva', 'ivo'\n    ], '', 'r2')\n\n    if (token.hasSuffix('eiras') || token.hasSuffix('eira')) {\n      token.replaceSuffixInRegion(['iras', 'ira'], 'ir', 'rv')\n    }\n\n    return token\n  }\n\n  /**\n   * Step 2: Verb suffix removal.\n   *\n   * Perform this step if no ending was removed in step 1.\n   *\n   * @param  {Token} token   Token to stem.\n   * @return {Token}         Stemmed token.\n   */\n  function verbSuffix (token) {\n    token.replaceSuffixInRegion([\n      'aríamos', 'ássemos', 'eríamos', 'êssemos', 'iríamos', 'íssemos',\n\n      'áramos', 'aremos', 'aríeis', 'ásseis', 'ávamos', 'éramos', 'eremos',\n      'eríeis', 'ésseis', 'íramos', 'iremos', 'iríeis', 'ísseis',\n\n      'ara~o', 'ardes', 'areis', 'áreis', 'ariam', 'arias', 'armos', 'assem',\n      'asses', 'astes', 'áveis', 'era~o', 'erdes', 'ereis', 'éreis', 'eriam',\n      'erias', 'ermos', 'essem', 'esses', 'estes', 'íamos', 'ira~o', 'irdes',\n      'ireis', 'íreis', 'iriam', 'irias', 'irmos', 'issem', 'isses', 'istes',\n\n      'adas', 'ados', 'amos', 'ámos', 'ando', 'aram', 'aras', 'arás', 'arei',\n      'arem', 'ares', 'aria', 'asse', 'aste', 'avam', 'avas', 'emos', 'endo',\n      'eram', 'eras', 'erás', 'erei', 'erem', 'eres', 'eria', 'esse', 'este',\n      'idas', 'idos', 'íeis', 'imos', 'indo', 'iram', 'iras', 'irás', 'irei',\n      'irem', 'ires', 'iria', 'isse', 'iste',\n\n      'ada', 'ado', 'ais', 'ara', 'ará', 'ava', 'eis', 'era', 'erá', 'iam',\n      'ias', 'ida', 'ido', 'ira', 'irá',\n\n      'am', 'ar', 'as', 'ei', 'em', 'er', 'es', 'eu', 'ia', 'ir', 'is', 'iu', 'ou'\n\n    ], '', 'rv')\n\n    return token\n  }\n\n  /**\n   * Step 3: Delete suffix i.\n   *\n   * Perform this step if the word was changed, in RV and preceded by c.\n   *\n   * @param  {Token} token   Token to stem.\n   * @return {Token}         Stemmed token.\n   */\n  function iPrecededByCSuffix (token) {\n    if (token.hasSuffix('ci')) {\n      token.replaceSuffixInRegion('i', '', 'rv')\n    }\n\n    return token\n  }\n\n  /**\n   * Step 4: Residual suffix.\n   *\n   * Perform this step if steps 1 and 2 did not alter the word.\n   *\n   * @param  {Token} token Token to stem.\n   * @return {Token}       Stemmed token.\n   */\n  function residualSuffix (token) {\n    token.replaceSuffixInRegion(['os', 'a', 'i', 'o', 'á', 'í', 'ó'], '', 'rv')\n\n    return token\n  }\n\n  /**\n   * Step 5: Residual form.\n   *\n   * This step should always be performed.\n   *\n   * @param  {Token} token Token to stem.\n   * @return {Token}       Stemmed token.\n   */\n  function residualForm (token) {\n    const tokenString = token.string\n\n    if (token.hasSuffix('gue') || token.hasSuffix('gué') || token.hasSuffix('guê')) {\n      token.replaceSuffixInRegion(['ue', 'ué', 'uê'], '', 'rv')\n    }\n\n    if (token.hasSuffix('cie') || token.hasSuffix('cié') || token.hasSuffix('ciê')) {\n      token.replaceSuffixInRegion(['ie', 'ié', 'iê'], '', 'rv')\n    }\n\n    if (tokenString === token.string) {\n      token.replaceSuffixInRegion(['e', 'é', 'ê'], '', 'rv')\n    }\n\n    token.replaceSuffixInRegion('ç', 'c', 'all')\n\n    return token\n  }\n\n  /**\n   * Postlude.\n   *\n   * Turns a~, o~ back into ã, õ.\n   *\n   * @param  {String} token Word to stem.\n   * @return {String}       Stemmed token.\n   */\n  function postlude (token) {\n    return token\n      .replaceAll('a~', 'ã')\n      .replaceAll('o~', 'õ')\n  }\n\n  /**\n   * Stems a word using a Porter stemmer algorithm.\n   *\n   * @param  {String} word Word to stem.\n   * @return {String}      Stemmed token.\n   */\n  PorterStemmer.stem = function (word) {\n    let token = new Token(word.toLowerCase())\n\n    token = prelude(token)\n\n    token.usingVowels('aeiouáéíóúâêôàãõ')\n      .markRegion('all', 0)\n      .markRegion('r1', null, markRegionN)\n      .markRegion('r2', token.regions.r1, markRegionN)\n      .markRegion('rv', null, markRegionV)\n\n    const original = token.string\n\n    // Always do step 1.\n    token = standardSuffix(token)\n\n    // Do step 2 if no ending was removed by step 1.\n    if (token.string === original) {\n      token = verbSuffix(token)\n    }\n\n    // If the last step to be obeyed — either step 1 or 2 — altered the word,\n    // do step 3. Alternatively, if neither steps 1 nor 2 altered the word, do\n    // step 4.\n    token = token.string !== original ? iPrecededByCSuffix(token) : residualSuffix(token)\n\n    // Always do step 5.\n    token = residualForm(token)\n\n    token = postlude(token)\n\n    return token.string\n  }\n\n  return PorterStemmer\n})()\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_ru.js",
    "content": "/*\nCopyright (c) 2012, Polyakov Vladimir, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer_ru')\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\nfunction attemptReplacePatterns (token, patterns) {\n  let replacement = null\n  let i = 0; let isReplaced = false\n  while ((i < patterns.length) && !isReplaced) {\n    if (patterns[i][0].test(token)) {\n      replacement = token.replace(patterns[i][0], patterns[i][1])\n      isReplaced = true\n    }\n    i++\n  }\n  return replacement\n}\n\nfunction perfectiveGerund (token) {\n  const result = attemptReplacePatterns(token, [\n    [/[ая]в(ши|шись)$/g, ''],\n    [/(ив|ивши|ившись|ывши|ывшись|ыв)$/g, '']\n  ])\n  return result\n}\n\nfunction adjectival (token) {\n  let result = adjective(token)\n  if (result != null) {\n    const pariticipleResult = participle(result)\n    result = pariticipleResult || result\n  }\n  return result\n}\n\nfunction adjective (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ее|ие|ые|ое|ими|ыми|ей|ий|ый|ой|ем|им|ым|ом|его|ого|ему|ому|их|ых|ую|юю|ая|яя|ою|ею)$/g, '']\n  ])\n  return result\n}\n\nfunction participle (token) {\n  const result = attemptReplacePatterns(token, [\n    [/([ая])(ем|нн|вш|ющ|щ)$/g, '$1'],\n    [/(ивш|ывш|ующ)$/g, '']\n  ])\n  return result\n}\n\nfunction reflexive (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ся|сь)$/g, '']\n  ])\n  return result\n}\n\nfunction verb (token) {\n  const result = attemptReplacePatterns(token, [\n    [/([ая])(ла|на|ете|йте|ли|й|л|ем|н|ло|но|ет|ют|ны|ть|ешь|нно)$/g, '$1'],\n    [/(ила|ыла|ена|ейте|уйте|ите|или|ыли|ей|уй|ил|ыл|им|ым|ен|ило|ыло|ено|ят|ует|ит|ыт|ены|ить|ыть|ишь|ую|ю)$/g, '']\n  ])\n  return result\n}\n\nfunction noun (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(а|ев|ов|ие|ье|е|иями|ями|ами|еи|ии|и|ией|ей|ой|ий|й|иям|ям|ием|ем|ам|ом|о|у|ах|иях|ях|ы|ь|ию|ью|ю|ия|ья|я)$/g, '']\n  ])\n  return result\n}\n\nfunction superlative (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ейш|ейше)$/g, '']\n  ])\n  return result\n}\n\nfunction derivational (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ост|ость)$/g, '']\n  ])\n  return result\n}\n\n// perform full stemming algorithm on a single word\nPorterStemmer.stem = function (token) {\n  token = token.toLowerCase().replace(/ё/g, 'е')\n  const volwesRegexp = /^(.*?[аеиоюяуыиэ])(.*)$/g\n  let RV = volwesRegexp.exec(token)\n  if (!RV || RV.length < 3) {\n    return token\n  }\n  const head = RV[1]\n  RV = RV[2]\n  volwesRegexp.lastIndex = 0\n  const R2 = volwesRegexp.exec(RV)\n  let result = perfectiveGerund(RV)\n  if (result === null) {\n    const resultReflexive = reflexive(RV) || RV\n    result = adjectival(resultReflexive)\n    if (result === null) {\n      result = verb(resultReflexive)\n      if (result === null) {\n        result = noun(resultReflexive)\n        if (result === null) {\n          result = resultReflexive\n        }\n      }\n    }\n  }\n  result = result.replace(/и$/g, '')\n  let derivationalResult = result\n  if (R2 && R2[2]) {\n    derivationalResult = derivational(R2[2])\n    if (derivationalResult != null) {\n      derivationalResult = derivational(result)\n    } else {\n      derivationalResult = result\n    }\n  }\n\n  let superlativeResult = superlative(derivationalResult) || derivationalResult\n\n  superlativeResult = superlativeResult.replace(/(н)н/g, '$1')\n  superlativeResult = superlativeResult.replace(/ь$/g, '')\n  return head + superlativeResult\n}\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_sv.js",
    "content": "/*\nCopyright (c) 2017, Dogan Yazar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Stemmer = require('./stemmer_sv')\n\n// Get R1 region\nfunction getRegions (str) {\n  const match = str.match(/[aeiouyäåö][^aeiouyäåö]([a-zåäö]+)/)\n  let r1 = ''\n  if (match && match[1]) {\n    r1 = match[1]\n    if (match.index + 2 < 3) { // Not clear why we need this! Algorithm does not describe this part!\n      r1 = str.slice(3)\n    }\n  }\n  return {\n    r1,\n    rest: str.slice(0, str.length - r1.length)\n  }\n}\n\nfunction step1a (str, regions = getRegions(str)) {\n  const r1 = regions.r1\n  if (!r1) {\n    return str\n  }\n\n  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)$/\n  const match = r1.match(regEx)\n  return match ? regions.rest + r1.slice(0, match.index) : str\n}\n\nfunction step1b (str, regions = getRegions(str)) {\n  if (regions.r1 && str.match(/(b|c|d|f|g|h|j|k|l|m|n|o|p|r|t|v|y)s$/)) {\n    return str.slice(0, -1)\n  }\n\n  return str\n}\n\nfunction step1 (str) {\n  const regions = getRegions(str)\n  const resA = step1a(str, regions)\n  const resB = step1b(str, regions)\n\n  return resA.length < resB.length ? resA : resB\n}\n\nfunction step2 (str, regions = getRegions(str)) {\n  const r1 = regions.r1\n  if (r1 && r1.match(/(dd|gd|nn|dt|gt|kt|tt)$/)) {\n    return str.slice(0, -1)\n  }\n  return str\n}\n\nfunction step3 (str, regions = getRegions(str)) {\n  const r1 = regions.r1\n  if (r1) {\n    if (r1.match(/(lös|full)t$/)) {\n      return str.slice(0, -1)\n    }\n\n    const match = r1.match(/(lig|ig|els)$/)\n    return match ? regions.rest + r1.slice(0, match.index) : str\n  }\n\n  return str\n}\n\nfunction stem (_str) {\n  const str = _str.toLowerCase()\n  return step3(step2(step1(str)))\n}\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\n// perform full stemming algorithm on a single word\nPorterStemmer.stem = stem\n"
  },
  {
    "path": "lib/natural/stemmers/porter_stemmer_uk.js",
    "content": "'use strict'\n\nconst Stemmer = require('./stemmer_uk')\n\nconst PorterStemmer = new Stemmer()\nmodule.exports = PorterStemmer\n\nfunction attemptReplacePatterns (token, patterns) {\n  let replacement = null\n  let i = 0; let isReplaced = false\n  while ((i < patterns.length) && !isReplaced) {\n    if (patterns[i][0].test(token)) {\n      replacement = token.replace(patterns[i][0], patterns[i][1])\n      isReplaced = true\n    }\n    i++\n  }\n  return replacement\n}\n\nfunction perfectiveGerund (token) {\n  const result = attemptReplacePatterns(token, [\n    [/[ая]в(ши|шись)$/g, ''],\n    [/(ив|ивши|ившись)$/g, '']\n  ])\n  return result\n}\n\nfunction adjectival (token) {\n  let result = adjective(token)\n  if (result != null) {\n    const pariticipleResult = participle(result)\n    result = pariticipleResult || result\n  }\n  return result\n}\n\nfunction adjective (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ими|ій|ий|а|е|ова|ове|ів|є|їй|єє|еє|я|ім|ем|им|ім|их|іх|ою|йми|іми|у|ю|ого|ому|ої)$/g, '']\n  ])\n  return result\n}\n\nfunction participle (token) { // edit\n  const result = attemptReplacePatterns(token, [\n    [/(ий|ого|ому|им|ім|а|ій|у|ою|ій|і|их|йми|их)$/g, '']\n  ])\n  return result\n}\n\nfunction reflexive (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(с[яьи])$/g, '']\n  ])\n  return result\n}\n\nfunction verb (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(сь|ся|ив|ать|ять|у|ю|ав|али|учи|ячи|вши|ши|е|ме|ати|яти|є)$/g, '']\n  ])\n  return result\n}\n\nfunction noun (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(а|ев|ов|е|ями|ами|еи|и|ей|ой|ий|й|иям|ям|ием|ем|ам|ом|о|у|ах|иях|ях|ы|ь|ию|ью|ю|ия|ья|я|і|ові|ї|ею|єю|ою|є|еві|ем|єм|ів|їв|ю)$/g, '']\n  ])\n  return result\n}\n\nfunction superlative (token) {\n  const result = attemptReplacePatterns(token, [\n    [/(ейш|ейше)$/g, '']\n  ])\n  return result\n}\n\nfunction derivational (token) {\n  const result = attemptReplacePatterns(token, [\n    [/[^аеиоуюяіїє][аеиоуюяіїє]+[^аеиоуюяіїє]+[аеиоуюяіїє].*(?<=о)сть?$/g, '']\n  ])\n  return result\n}\n\n// perform full stemming algorithm on a single word\nPorterStemmer.stem = function (token) {\n  token = token.toLowerCase()\n  const volwesRegexp = /^(.*?[аеиоуюяіїє])(.*)$/g\n  let RV = volwesRegexp.exec(token)\n  if (!RV || RV.length < 3) {\n    return token\n  }\n  const head = RV[1]\n  RV = RV[2]\n  volwesRegexp.lastIndex = 0\n  const R2 = volwesRegexp.exec(RV)\n  let result = perfectiveGerund(RV)\n  if (result === null) {\n    const resultReflexive = reflexive(RV) || RV\n    result = adjectival(resultReflexive)\n    if (result === null) {\n      result = verb(resultReflexive)\n      if (result === null) {\n        result = noun(resultReflexive)\n        if (result === null) {\n          result = resultReflexive\n        }\n      }\n    }\n  }\n  result = result.replace(/и$/g, '')\n  let derivationalResult = result\n  if (R2 && R2[2]) {\n    derivationalResult = derivational(R2[2])\n    if (derivationalResult != null) {\n      derivationalResult = derivational(result)\n    } else {\n      derivationalResult = result\n    }\n  }\n\n  let superlativeResult = superlative(derivationalResult) || derivationalResult\n\n  superlativeResult = superlativeResult.replace(/(н)н/g, '$1')\n  superlativeResult = superlativeResult.replace(/ь$/g, '')\n  return head + superlativeResult\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.addStopWord = function (stopWord) {\n    stopwords.words.push(stopWord)\n  }\n\n  stemmer.addStopWords = function (moreStopWords) {\n    stopwords.words = stopwords.words.concat(moreStopWords)\n  }\n\n  stemmer.removeStopWord = function (stopWord) {\n    this.removeStopWords([stopWord])\n  }\n\n  stemmer.removeStopWords = function (moreStopWords) {\n    moreStopWords.forEach(function (stopWord) {\n      const idx = stopwords.words.indexOf(stopWord)\n      if (idx >= 0) {\n        stopwords.words.splice(idx, 1)\n      }\n    })\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n    const lowercaseText = text.toLowerCase()\n    const tokens = new Tokenizer().tokenize(lowercaseText)\n\n    if (keepStops) {\n      tokens.forEach(function (token) {\n        stemmedTokens.push(stemmer.stem(token))\n      })\n    } else {\n      tokens.forEach(function (token) {\n        if (stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) }\n      })\n    }\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_de.js",
    "content": "\n/*\nCopyright (c) 2023, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('stopwords-iso')\nconst englishStopWords = stopwords.de\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_de')\n\nclass Stemmer {\n  stem (token) {\n    return token\n  }\n\n  tokenizeAndStem (text, keepStops) {\n    const stemmedTokens = []\n\n    const that = this\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || englishStopWords.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        // if (resultToken.match(new RegExp('[a-záéíóúüñ0-9]+', 'gi'))) {\n        if (resultToken.match(/[a-záéíóúüñ0-9]+/gi)) {\n          resultToken = that.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n}\n\nmodule.exports = Stemmer\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_es.js",
    "content": "/*\nCopyright (c) 2012, 2018 David Przybilla, Chris Umbel, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_es')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_es')\n\nclass Stemmer {\n  stem (token) {\n    return token\n  }\n\n  tokenizeAndStem (text, keepStops) {\n    const stemmedTokens = []\n\n    const that = this\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        // if (resultToken.match(new RegExp('[a-záéíóúüñ0-9]+', 'gi'))) {\n        if (resultToken.match(/[a-záéíóúüñ0-9]+/gi)) {\n          resultToken = that.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  attach () {\n    const that = this\n    String.prototype.stem = function () {\n      return that.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return that.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n\nmodule.exports = Stemmer\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_fa.js",
    "content": "/*\r\nCopyright (c) 2011, Chris Umbel\r\nFarsi Stemmer by Fardin Koochaki <me@fardinak.com>\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst stopwords = require('../util/stopwords_fa')\r\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_fa')\r\n\r\nmodule.exports = function () {\r\n  const stemmer = this\r\n\r\n  stemmer.stem = function (token) {\r\n    return token\r\n  }\r\n\r\n  stemmer.tokenizeAndStem = function (text, keepStops) {\r\n    const stemmedTokens = []\r\n\r\n    new Tokenizer().tokenize(text).forEach(function (token) {\r\n      if (keepStops || stopwords.words.indexOf(token) === -1) { stemmedTokens.push(stemmer.stem(token)) }\r\n    })\r\n\r\n    return stemmedTokens\r\n  }\r\n\r\n  /*\r\n  stemmer.attach = function () {\r\n    String.prototype.stem = function () {\r\n      return stemmer.stem(this)\r\n    }\r\n\r\n    String.prototype.tokenizeAndStem = function (keepStops) {\r\n      return stemmer.tokenizeAndStem(this, keepStops)\r\n    }\r\n  }\r\n  */\r\n}\r\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_fr.js",
    "content": "/*\nCopyright (c) 2014, Ismaël Héry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_fr')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_fr')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      let resultToken = token.toLowerCase()\n      if (keepStops || stopwords.words.indexOf(resultToken) === -1) {\n        // var resultToken = token.toLowerCase();\n        if (resultToken.match(/[a-zâàëéêèïîôûùç0-9]/gi)) {\n          resultToken = stemmer.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_it.js",
    "content": "/*\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst stopwords = require('../util/stopwords_it')\r\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_it')\r\n\r\nmodule.exports = function () {\r\n  const stemmer = this\r\n\r\n  stemmer.stem = function (token) {\r\n    return token\r\n  }\r\n\r\n  stemmer.tokenizeAndStem = function (text, keepStops) {\r\n    const stemmedTokens = []\r\n\r\n    new Tokenizer().tokenize(text).forEach(function (token) {\r\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\r\n        let resultToken = token.toLowerCase()\r\n        if (resultToken.match(/[a-zàèìòù0-9]/gi)) {\r\n          resultToken = stemmer.stem(resultToken)\r\n        }\r\n        stemmedTokens.push(resultToken)\r\n      }\r\n    })\r\n\r\n    return stemmedTokens\r\n  }\r\n\r\n  /*\r\n  stemmer.attach = function () {\r\n    String.prototype.stem = function () {\r\n      return stemmer.stem(this)\r\n    }\r\n\r\n    String.prototype.tokenizeAndStem = function (keepStops) {\r\n      return stemmer.tokenizeAndStem(this, keepStops)\r\n    }\r\n  }\r\n  */\r\n}\r\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_ja.js",
    "content": "/*\n Copyright (c) 2012, Guillaume Marty\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n'use strict'\n\n/**\n * A very basic stemmer that performs the following steps:\n * * Stem katakana.\n * Inspired by:\n * http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/analysis/kuromoji/src/java/org/apache/lucene/analysis/ja/JapaneseKatakanaStemFilter.java\n *\n * This script assumes input is normalized using normalizer_ja().\n *\n * \\@todo Use .bind() in StemmerJa.prototype.attach().\n */\n\nconst Tokenizer = require('../tokenizers/tokenizer_ja')\nconst stopwords = require('../util/stopwords_ja').words\n\n/**\n * @constructor\n */\nconst StemmerJa = function () {\n}\n\n/**\n * Tokenize and stem a text.\n * Stop words are excluded except if the second argument is true.\n *\n * @param {string} text\n * @param {boolean} keepStops Whether to keep stop words from the output or not.\n * @return {Array.<string>}\n */\nStemmerJa.prototype.tokenizeAndStem = function (text, keepStops) {\n  const self = this\n  const stemmedTokens = []\n  const tokens = new Tokenizer().tokenize(text)\n\n  // This is probably faster than an if at each iteration.\n  if (keepStops) {\n    tokens.forEach(function (token) {\n      let resultToken = token.toLowerCase()\n      resultToken = self.stem(resultToken)\n      stemmedTokens.push(resultToken)\n    })\n  } else {\n    tokens.forEach(function (token) {\n      if (stopwords.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        resultToken = self.stem(resultToken)\n        stemmedTokens.push(resultToken)\n      }\n    })\n  }\n\n  return stemmedTokens\n}\n\n/**\n * Stem a term.\n *\n * @param {string} token\n * @return {string}\n */\nStemmerJa.prototype.stem = function (token) {\n  token = this.stemKatakana(token)\n\n  return token\n}\n\n/**\n * Remove the final prolonged sound mark on katakana if length is superior to\n * a threshold.\n *\n * @param {string} token A katakana string to stem.\n * @return {string} A katakana string stemmed.\n */\nStemmerJa.prototype.stemKatakana = function (token) {\n  const HIRAGANA_KATAKANA_PROLONGED_SOUND_MARK = 'ー'\n  const DEFAULT_MINIMUM_LENGTH = 4\n\n  if (token.length >= DEFAULT_MINIMUM_LENGTH &&\n      token.slice(-1) === HIRAGANA_KATAKANA_PROLONGED_SOUND_MARK &&\n      this.isKatakana(token)) {\n    token = token.slice(0, token.length - 1)\n  }\n  return token\n}\n\n/**\n * Is a string made of fullwidth katakana only?\n * This implementation is the fastest I know:\n * http://jsperf.com/string-contain-katakana-only/2\n *\n * @param {string} str A string.\n * @return {boolean} True if the string has katakana only.\n */\nStemmerJa.prototype.isKatakana = function (str) {\n  return !!str.match(/^[゠-ヿ]+$/)\n}\n\n/*\n// Expose an attach function that will patch String with new methods.\nStemmerJa.prototype.attach = function () {\n  const self = this\n\n  String.prototype.stem = function () {\n    return self.stem(this)\n  }\n\n  String.prototype.tokenizeAndStem = function (keepStops) {\n    return self.tokenizeAndStem(this, keepStops)\n  }\n}\n*/\n\nmodule.exports = new StemmerJa()\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_nl.js",
    "content": "/*\nCopyright (c) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_nl')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_nl')\n\nclass Stemmer {\n  stem (token) {\n    return token\n  };\n\n  tokenizeAndStem (text, keepStops) {\n    const stemmedTokens = []\n\n    const that = this\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        // if (resultToken.match(new RegExp('[a-zäëïöüáéíóúè0-9]+', 'gi'))) {\n        if (resultToken.match(/[a-zäëïöüáéíóúè0-9]+/gi)) {\n          resultToken = that.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  };\n\n  /*\n  attach () {\n    const that = this\n    String.prototype.stem = function () {\n      return that.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return that.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n\nmodule.exports = Stemmer\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_no.js",
    "content": "/*\nCopyright (c) 2014, Kristoffer Brabrand\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_no')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_no')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.addStopWord = function (stopWord) {\n    stopwords.words.push(stopWord)\n  }\n\n  stemmer.addStopWords = function (moreStopWords) {\n    stopwords.words = stopwords.words.concat(moreStopWords)\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) { stemmedTokens.push(stemmer.stem(token)) }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_pl.js",
    "content": "/*\nCopyright (c) 2013, Paweł Łaskarzewski\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_pl')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_pl')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        // if (resultToken.match(new RegExp('[a-zążśźęćńół0-9]+', 'gi'))) {\n        if (resultToken.match(/'[a-zążśźęćńół0-9]+/gi)) {\n          resultToken = stemmer.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_pt.js",
    "content": "/*\nCopyright (c) 2014, Ismaël Héry\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nmodule.exports = function () {\n  const Stemmer = this\n  const stopwords = require('../util/stopwords_pt')\n  const Tokenizer = require('../tokenizers/aggressive_tokenizer_pt')\n\n  Stemmer.stem = function (token) {\n    return token\n  }\n\n  Stemmer.addStopWords = function (word) {\n    stopwords.words.push(word)\n  }\n\n  Stemmer.addStopWords = function (words) {\n    stopwords.words = stopwords.words.concat(words)\n  }\n\n  Stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    const tokenStemmer = function (token) {\n      if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) {\n        stemmedTokens.push(Stemmer.stem(token))\n      }\n    }\n\n    new Tokenizer().tokenize(text).forEach(tokenStemmer)\n\n    return stemmedTokens\n  }\n\n  /*\n  Stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return Stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return Stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_ru.js",
    "content": "/*\nCopyright (c) 2012, Polyakov Vladimir, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_ru')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_ru')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        // if (resultToken.match(new RegExp('[а-яё0-9]+', 'gi'))) {\n        if (resultToken.match(/[а-яё0-9]+/gi)) {\n          resultToken = stemmer.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_sv.js",
    "content": "/*\nCopyright (c) 2017, Dogan Yazar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst stopwords = require('../util/stopwords_sv')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_sv')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.addStopWord = function (stopWord) {\n    stopwords.words.push(stopWord)\n  }\n\n  stemmer.addStopWords = function (moreStopWords) {\n    stopwords.words = stopwords.words.concat(moreStopWords)\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token.toLowerCase()) === -1) { stemmedTokens.push(stemmer.stem(token)) }\n    })\n\n    return stemmedTokens\n  }\n\n  /*\n  stemmer.attach = function () {\n    String.prototype.stem = function () {\n      return stemmer.stem(this)\n    }\n\n    String.prototype.tokenizeAndStem = function (keepStops) {\n      return stemmer.tokenizeAndStem(this, keepStops)\n    }\n  }\n  */\n}\n"
  },
  {
    "path": "lib/natural/stemmers/stemmer_uk.js",
    "content": "'use strict'\n\nconst stopwords = require('../util/stopwords_uk')\nconst Tokenizer = require('../tokenizers/aggressive_tokenizer_uk')\n\nmodule.exports = function () {\n  const stemmer = this\n\n  stemmer.stem = function (token) {\n    return token\n  }\n\n  stemmer.tokenizeAndStem = function (text, keepStops) {\n    const stemmedTokens = []\n\n    new Tokenizer().tokenize(text).forEach(function (token) {\n      if (keepStops || stopwords.words.indexOf(token) === -1) {\n        let resultToken = token.toLowerCase()\n        if (resultToken.match(/[а-яґєії0-9]+/gi)) {\n          resultToken = stemmer.stem(resultToken)\n        }\n        stemmedTokens.push(resultToken)\n      }\n    })\n\n    return stemmedTokens\n  }\n}\n"
  },
  {
    "path": "lib/natural/stemmers/token.js",
    "content": "/*\nCopyright (c) 2015, Luís Rodrigues\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/**\n * Stemmer token constructor.\n *\n * @param {String} string Token string.\n */\nfunction Token (string) {\n  this.vowels = ''\n  this.regions = {}\n  this.string = string\n  this.original = string\n}\n\n/**\n * Set vowels.\n *\n * @param  {String|Array} vowels List of vowels.\n * @return {Token}               Token instance.\n */\nToken.prototype.usingVowels = function (vowels) {\n  this.vowels = vowels\n  return this\n}\n\n/**\n * Marks a region by defining its starting index or providing a callback\n * function that does.\n *\n * @param  {String}       region   Region name.\n * @param  {Array|Number} args     Callback arguments or region start index.\n * @param  {Function}     callback Function that determines the start index (optional).\n * @param  {Object}       context  Callback context (optional, defaults to this).\n * @return {Token}                 Token instance.\n */\nToken.prototype.markRegion = function (region, args, callback, context) {\n  if (typeof callback === 'function') {\n    // this.regions[region] = callback.apply(context || this, [].concat(args))\n    this.regions[region] = callback.apply(context || this, [].concat(args))\n  } else if (!isNaN(args)) {\n    this.regions[region] = args\n  }\n\n  return this\n}\n\n/**\n * Replaces all instances of a string with another.\n *\n * @param  {String} find    String to be replaced.\n * @param  {String} replace Replacement string.\n * @return {Token}          Token instance.\n */\nToken.prototype.replaceAll = function (find, replace) {\n  this.string = this.string.split(find).join(replace)\n  return this\n}\n\n/**\n * Replaces the token suffix if in a region.\n *\n * @param  {String} suffix  Suffix to replace.\n * @param  {String} replace Replacement string.\n * @param  {String} region  Region name.\n * @return {Token}          Token instance.\n */\nToken.prototype.replaceSuffixInRegion = function (suffix, replace, region) {\n  const suffixes = [].concat(suffix)\n  for (let i = 0; i < suffixes.length; i++) {\n    if (this.hasSuffixInRegion(suffixes[i], region)) {\n      this.string = this.string.slice(0, -suffixes[i].length) + replace\n      return this\n    }\n  }\n  return this\n}\n\n/**\n * Determines whether the token has a vowel at the provided index.\n *\n * @param  {Integer} index Character index.\n * @return {Boolean}       Whether the token has a vowel at the provided index.\n */\nToken.prototype.hasVowelAtIndex = function (index) {\n  return this.vowels.indexOf(this.string[index]) !== -1\n}\n\n/**\n * Finds the next vowel in the token.\n *\n * @param  {Integer} start Starting index offset.\n * @return {Integer}       Vowel index, or the end of the string.\n */\nToken.prototype.nextVowelIndex = function (start) {\n  let index = (start >= 0 && start < this.string.length) ? start : this.string.length\n  while (index < this.string.length && !this.hasVowelAtIndex(index)) {\n    index++\n  }\n  return index\n}\n\n/**\n * Finds the next consonant in the token.\n *\n * @param  {Integer} start Starting index offset.\n * @return {Integer}       Consonant index, or the end of the string.\n */\nToken.prototype.nextConsonantIndex = function (start) {\n  let index = (start >= 0 && start < this.string.length) ? start : this.string.length\n  while (index < this.string.length && this.hasVowelAtIndex(index)) {\n    index++\n  }\n  return index\n}\n\n/**\n * Determines whether the token has the provided suffix.\n * @param  {String}  suffix Suffix to match.\n * @return {Boolean}        Whether the token string ends in suffix.\n */\nToken.prototype.hasSuffix = function (suffix) {\n  return this.string.slice(-suffix.length) === suffix\n}\n\n/**\n * Determines whether the token has the provided suffix within the specified\n * region.\n *\n * @param {String} suffix Suffix to match.\n * @param {String} region Region name.\n * @return {Boolean} Whether the token string ends in suffix.\n */\nToken.prototype.hasSuffixInRegion = function (suffix, region) {\n  const regionStart = this.regions[region] || 0\n  const suffixStart = this.string.length - suffix.length\n  return this.hasSuffix(suffix) && suffixStart >= regionStart\n}\n\nmodule.exports = Token\n"
  },
  {
    "path": "lib/natural/tfidf/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nDylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport type { Tokenizer } from '../tokenizers'\n\ndeclare type TfIdfCallback = (i: number, measure: number, key?: string | Record<string, any>) => void\n\ndeclare interface TfIdfTerm {\n  term: string\n  tf: number\n  idf: number\n  tfidf: number\n}\n\ndeclare type TfIdfDocument = Record<string, number>\n\nexport class TfIdf {\n  documents: TfIdfDocument[]\n  _idfCache: Record<string, number>\n\n  constructor (deserialized?: Record<string, unknown>)\n  idf (term: string, force?: boolean): number\n  addDocument (document: string | string[] | Record<string, string>, key?: Record<string, any> | any, restoreCache?: boolean): void\n  removeDocument (key: any): boolean\n  addFileSync (path: string, encoding?: string, key?: string, restoreCache?: boolean): void\n  tfidf (terms: string | string[], d: number): number\n  tfidfs (terms: string | string[], callback?: TfIdfCallback): number[]\n  listTerms (d: number): TfIdfTerm[]\n  setTokenizer (t: Tokenizer): void\n  setStopwords (customStopwords: string[]): boolean\n  static tf (term: string, document: TfIdfDocument): number\n}\n"
  },
  {
    "path": "lib/natural/tfidf/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.TfIdf = require('./tfidf')\n"
  },
  {
    "path": "lib/natural/tfidf/tfidf.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst _ = require('underscore')\nconst Tokenizer = require('../tokenizers/regexp_tokenizer').WordTokenizer\nlet tokenizer = new Tokenizer()\nlet stopwords = require('../util/stopwords').words\nconst fs = require('fs')\n\n// Returns a frequency map of word to frequency\n// Key is the document key and stored in the map that is returned as __keys\nfunction buildDocument (text, key) {\n  let stopOut\n\n  if (typeof text === 'string') {\n    text = tokenizer.tokenize(text.toLowerCase())\n    stopOut = true\n  } else if (!_.isArray(text)) {\n    stopOut = false\n    return text\n  }\n\n  return text.reduce(function (document, term) {\n    // next line solves https://github.com/NaturalNode/natural/issues/119\n    if (typeof document[term] === 'function') {\n      document[term] = 0\n    }\n    if (!stopOut || stopwords.indexOf(term) < 0) {\n      document[term] = (document[term] ? document[term] + 1 : 1)\n    }\n    return document\n  }, { __key: key })\n}\n\nfunction documentHasTerm (term, document) {\n  return document[term] && document[term] > 0\n}\n\n// backwards compatibility for < node 0.10\nfunction isEncoding (encoding) {\n  if (typeof Buffer.isEncoding !== 'undefined') { return Buffer.isEncoding(encoding) }\n  switch ((encoding + '').toLowerCase()) {\n    case 'hex':\n    case 'utf8':\n    case 'utf-8':\n    case 'ascii':\n    case 'binary':\n    case 'base64':\n    case 'ucs2':\n    case 'ucs-2':\n    case 'utf16le':\n    case 'utf-16le':\n    case 'raw':\n      return true\n  }\n  return false\n}\n\nclass TfIdf {\n  constructor (deserialized) {\n    if (deserialized) {\n      this.documents = deserialized.documents\n    } else {\n      this.documents = []\n    }\n    this._idfCache = {}\n  }\n\n  static tf (term, document) {\n    return document[term] ? document[term] : 0\n  }\n\n  // Returns the inverse document frequency of the term\n  // If force is true the cache will be invalidated and recomputed\n  idf (term, force) {\n    // Lookup the term in the New term-IDF caching,\n    // this will cut search times down exponentially on large document sets.\n    // if (this._idfCache[term] && this._idfCache.hasOwnProperty(term) && force !== true) { return this._idfCache[term] }\n    if (this._idfCache[term] && force !== true) {\n      return this._idfCache[term]\n    }\n\n    // Count the number of documents that contain the term\n    const docsWithTerm = this.documents.reduce(function (count, document) {\n      return count + (documentHasTerm(term, document) ? 1 : 0)\n    }, 0)\n\n    // Compute the inverse document frequency\n    const idf = 1 + Math.log((this.documents.length) / (1 + docsWithTerm))\n\n    // Add the idf to the term cache and return it\n    this._idfCache[term] = idf\n    return idf\n  }\n\n  // If restoreCache is set to true, all terms idf scores currently cached will be recomputed.\n  // Otherwise, the cache will just be wiped clean\n  addDocument (document, key, restoreCache) {\n    this.documents.push(buildDocument(document, key))\n\n    // make sure the cache is invalidated when new documents arrive\n    if (restoreCache === true) {\n      for (const term in this._idfCache) {\n        // invoking idf with the force option set will\n        // force a recomputation of the idf, and it will\n        // automatically refresh the cache value.\n        this.idf(term, true)\n      }\n    } else {\n      // this._idfCache = {}\n      // so that we do not have trouble with terms that match property names\n      this._idfCache = Object.create(null)\n    }\n  }\n\n  // Remove a document from the corpus\n  // Returns true if the document was found\n  // Returns false if the document was not found\n  removeDocument (key) {\n    // Find the document\n    const index = this.documents.findIndex(function (document) {\n      return document.__key === key\n    })\n    // If found, remove it\n    if (index > -1) {\n      this.documents.splice(index, 1)\n      // Invalidate the cache\n      this._idfCache = Object.create(null)\n      return true\n    }\n\n    return false\n  }\n\n  // If restoreCache is set to true, all terms idf scores currently cached will be recomputed.\n  // Otherwise, the cache will just be wiped clean\n  addFileSync (path, encoding, key, restoreCache) {\n    if (!encoding) { encoding = 'utf8' }\n    if (!isEncoding(encoding)) { throw new Error('Invalid encoding: ' + encoding) }\n\n    const document = fs.readFileSync(path, encoding)\n    this.documents.push(buildDocument(document, key))\n\n    // make sure the cache is invalidated when new documents arrive\n    if (restoreCache === true) {\n      for (const term in this._idfCache) {\n        // invoking idf with the force option set will\n        // force a recomputation of the idf, and it will\n        // automatically refresh the cache value.\n        this.idf(term, true)\n      }\n    } else {\n      this._idfCache = {}\n    }\n  }\n\n  tfidf (terms, d) {\n    const _this = this\n\n    if (!_.isArray(terms)) {\n      terms = tokenizer.tokenize(terms.toString().toLowerCase())\n    }\n\n    return terms.reduce(function (value, term) {\n      let idf = _this.idf(term)\n      idf = idf === Infinity ? 0 : idf\n      return value + (TfIdf.tf(term, _this.documents[d]) * idf)\n    }, 0.0)\n  }\n\n  listTerms (d) {\n    const terms = []\n    const _this = this\n    for (const term in this.documents[d]) {\n      if (this.documents[d]) {\n        if (term !== '__key') {\n          terms.push({\n            term,\n            tf: TfIdf.tf(term, _this.documents[d]),\n            idf: _this.idf(term),\n            tfidf: _this.tfidf([term], d)\n          })\n        }\n      }\n    }\n\n    return terms.sort(function (x, y) { return y.tfidf - x.tfidf })\n  }\n\n  tfidfs (terms, callback) {\n    const tfidfs = new Array(this.documents.length)\n\n    for (let i = 0; i < this.documents.length; i++) {\n      tfidfs[i] = this.tfidf(terms, i)\n\n      if (callback) { callback(i, tfidfs[i], this.documents[i].__key) }\n    }\n\n    return tfidfs\n  }\n\n  // Define a tokenizer other than the default \"WordTokenizer\"\n  setTokenizer (t) {\n    if (!_.isFunction(t.tokenize)) { throw new Error('Expected a valid Tokenizer') }\n    tokenizer = t\n  }\n\n  // Define a stopwords other than the default\n  setStopwords (customStopwords) {\n    if (!Array.isArray(customStopwords)) { return false }\n\n    let wrongElement = false\n    customStopwords.forEach(stopword => {\n      if ((typeof stopword) !== 'string') {\n        wrongElement = true\n      }\n    })\n    if (wrongElement) {\n      return false\n    }\n\n    stopwords = customStopwords\n    return true\n  }\n}\n\nmodule.exports = TfIdf\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    // underscore is considered to be non word character\n    // Old splitter:\n    // return this.trim(text.split(/[\\W|_]+/))\n    // New splitter:\n    // Explicitly mentions which characters make up words.\n    // So words may contain hyphen -, single quote ' and slash /\n    return this.trim(text.split(/[^a-zA-Z0-9'\\-/]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_de.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel, Martijn de Boer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.trim(text.split(/[^a-zA-Z0-9ßäöü_'-]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_es.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel,David Przybilla\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.trim(text.split(/[^a-zA-Zá-úÁ-ÚñÑüÜ]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_fa.js",
    "content": "/*\r\nCopyright (c) 2011, Chris Umbel\r\nFarsi Aggressive Tokenizer by Fardin Koochaki <me@fardinak.com>\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst Tokenizer = require('./tokenizer')\r\n\r\nclass AggressiveTokenizer extends Tokenizer {\r\n  clearEmptyString (array) {\r\n    return array.filter(function (a) {\r\n      return a !== ''\r\n    })\r\n  }\r\n\r\n  clearText (text) {\r\n    return text.replace(/.:\\+-=\\(\\)\"'!\\?،,؛;/g, ' ')\r\n  }\r\n\r\n  tokenize (text) {\r\n    // break a string up into an array of tokens by anything non-word\r\n    text = this.clearText(text)\r\n    return this.clearEmptyString(text.split(/\\s+/))\r\n  }\r\n}\r\n\r\nmodule.exports = AggressiveTokenizer\r\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_fr.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.trim(text.split(/[^a-z0-9äâàéèëêïîöôùüûœç-]+/i))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_hi.js",
    "content": "/*\nfile aggressive_tokenizer_hi.js , located at lib\\natural\\tokenizers\\aggressive_tokenizer_hi.js is licensed as follows:\n- (The MIT License)\n- Copyright (c) 2023 Mukesh Singh Bisht\n\nPermission is hereby granted, free of charge, to any person or entity obtaining a copy\nof file aggressive_tokenizer_hi.js and its content(the \"Software\"), to deal in the\nSoftware without restriction, including without limitation the rights to use, copy,\nmodify, merge, publish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so, subject to the following\nconditions:\n\n1. The above copyright notice and this permission notice shall be included in all copies\n   or substantial portions of the Software.\n\n2. Proper credit must be given to the original author Mukesh Singh Bisht, along with the\n   date of authorship specified as July 23, 2023, in any usage, distribution, or\n   modification of the Software.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE\nFOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR\nOTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\n/*\nTo know more on hindi\nImportant links:\n1.https://viahindi.in/hindi-vyakaran/%E0%A4%B8%E0%A4%AE%E0%A4%BE%E0%A4%B8-samas-in-hindi\n2.https://hindigrammar.in/\n3.https://www.unicode.org/charts/PDF/U0900.pdf\n*/\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    const response = this.trim(text.replace(/[\\u0964\\u0965...?,]/g, '').split(/\\s+|(?![\\u0900-\\u097F\\u0020-\\u007F])./u)).filter(Boolean)\n    return response\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_id.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  // Remove all non alphanumeric characters except '-'\n  // Replace more than one space character to ' '\n  normalizeText (text) {\n    const result = text.replace(/[^a-z0-9 -]/g, ' ').replace(/( +)/g, ' ')\n    return result\n  }\n\n  tokenize (text) {\n    // break a string up into an array of tokens by space\n    text = this.normalizeText(text)\n    return this.trim(text.split(' '))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_it.js",
    "content": "/*\r\nCopyright (c) 2011, Chris Umbel,David Przybilla\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\nconst Tokenizer = require('./tokenizer')\r\n\r\nclass AggressiveTokenizer extends Tokenizer {\r\n  tokenize (text) {\r\n    // break a string up into an array of tokens by anything non-word\r\n    return this.trim(text.split(/\\W+/))\r\n  }\r\n}\r\n\r\nmodule.exports = AggressiveTokenizer\r\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_nl.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel, Martijn de Boer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.trim(text.split(/[^a-zA-Z0-9_'-]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_no.js",
    "content": "/*\nCopyright (c) 2014, Kristoffer Brabrand\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\nconst normalizer = require('../normalizers/normalizer_no')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    text = normalizer.removeDiacritics(text)\n\n    // break a string up into an array of tokens by anything non-word\n    return this.trim(text.split(/[^A-Za-z0-9_æøåÆØÅäÄöÖüÜ]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_pl.js",
    "content": "/*\nCopyright (c) 2013, Paweł Łaskarzewski\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  withoutEmpty (array) {\n    return array.filter(function (a) { return a })\n  }\n\n  clearText (text) {\n    return text.replace(/[^a-zążśźęćńół0-9]/gi, ' ').replace(/[\\s\\n]+/g, ' ').trim()\n  }\n\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.withoutEmpty(this.clearText(text).split(' '))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_pt.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel,David Przybilla\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  withoutEmpty (array) {\n    return array.filter(function (a) { return a })\n  }\n\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.withoutEmpty(this.trim(text.split(/[^a-zA-Zà-úÀ-Ú]/)))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_ru.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  withoutEmpty (array) {\n    return array.filter(function (a) { return a })\n  }\n\n  clearText (text) {\n    return text.replace(/[^a-zа-яё0-9]/gi, ' ').replace(/[\\s\\n]+/g, ' ').trim()\n  }\n\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.withoutEmpty(this.clearText(text).split(' '))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_sv.js",
    "content": "/*\nCopyright (c) 2017, Dogan Yazar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\nconst normalizer = require('../normalizers/normalizer_sv')\n\nclass AggressiveTokenizer extends Tokenizer {\n  tokenize (text) {\n    text = normalizer.removeDiacritics(text)\n\n    // break a string up into an array of tokens by anything non-word\n    // Ü is not part of swedish alphabet but there are words using it like müsli and München\n    return this.trim(text.split(/[^A-Za-z0-9_åÅäÄöÖüÜ-]+/))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_uk.js",
    "content": "/*\nCopyright (c) 2023, Pluto Rotegott\nTokenizer for Ukrainian\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  withoutEmpty (array) {\n    return array.filter(function (a) { return a })\n  }\n\n  clearText (text) {\n    return text.replace(/[^a-zа-яґєії0-9]/gi, ' ').replace(/[\\s\\n]+/g, ' ').trim()\n  }\n\n  tokenize (text) {\n    // break a string up into an array of tokens by anything non-word\n    return this.withoutEmpty(this.clearText(text).split(' '))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/aggressive_tokenizer_vi.js",
    "content": "/*\nCopyright (c) 2018, Javis1205 (Github account name)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nclass AggressiveTokenizer extends Tokenizer {\n  // break a string up into an array of tokens by anything non-word\n  tokenize (text) {\n    return this.trim(text.split(/[^a-z0-9àáảãạăắằẳẵặâấầẩẫậéèẻẽẹêếềểễệíìỉĩịóòỏõọôốồổỗộơớờởỡợúùủũụưứừửữựýỳỷỹỵđ]+/i))\n  }\n}\n\nmodule.exports = AggressiveTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>, Emily Marigold Klassen <https://github.com/forivall>, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\ndeclare class Tokenizer {\n  trim: (array: string[]) => string[]\n}\n\nexport class AggressiveTokenizerNl extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerFa extends Tokenizer {\n  clearEmptyString (array: string[]): string[]\n  clearText (text: string): string\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerFr extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerDe extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerRu extends Tokenizer {\n  withoutEmpty (array: string[]): string[]\n  clearText (text: string): string\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerEs extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerIt extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerPl extends Tokenizer {\n  withoutEmpty (array: string[]): string[]\n  clearText (text: string): string\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerPt extends Tokenizer {\n  withoutEmpty (array: string[]): string[]\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerNo extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerSv extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerVi extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerId extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerHi extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizerUk extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class AggressiveTokenizer extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class CaseTokenizer extends Tokenizer {\n  tokenize (text: string, preserveApostrophe?: boolean): string[]\n}\n\ndeclare interface RegexTokenizerOptions {\n  pattern?: RegExp\n  discardEmpty?: boolean\n  gaps?: boolean\n}\n\nexport class RegexpTokenizer extends Tokenizer {\n  constructor (opts?: RegexTokenizerOptions)\n  tokenize (text: string): string[]\n}\n\ndeclare interface OrthographyTokenizerOptions extends RegexTokenizerOptions {\n  language: string\n}\n\nexport class OrthographyTokenizer extends RegexpTokenizer {\n  constructor (options: OrthographyTokenizerOptions)\n}\n\nexport class WordTokenizer extends RegexpTokenizer {\n  constructor (options?: RegexTokenizerOptions)\n}\n\nexport class WordPunctTokenizer extends RegexpTokenizer {\n  constructor (options?: RegexTokenizerOptions)\n}\n\nexport class TreebankWordTokenizer extends Tokenizer {\n  tokenize (text: string): string[]\n}\n\nexport class TokenizerJa extends Tokenizer {\n  removePuncTokens (tokens: string[]): string[]\n  tokenize (text: string): string[]\n}\n\nexport class SentenceTokenizer extends Tokenizer {\n  constructor (abbreviations: string[], sentenceDemarkers?: string[])\n  tokenize (text: string): string[]\n}\n"
  },
  {
    "path": "lib/natural/tokenizers/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.AggressiveTokenizerNl = require('./aggressive_tokenizer_nl')\nexports.AggressiveTokenizerFa = require('./aggressive_tokenizer_fa')\nexports.AggressiveTokenizerFr = require('./aggressive_tokenizer_fr')\nexports.AggressiveTokenizerDe = require('./aggressive_tokenizer_de')\nexports.AggressiveTokenizerRu = require('./aggressive_tokenizer_ru')\nexports.AggressiveTokenizerEs = require('./aggressive_tokenizer_es')\nexports.AggressiveTokenizerIt = require('./aggressive_tokenizer_it')\nexports.AggressiveTokenizerPl = require('./aggressive_tokenizer_pl')\nexports.AggressiveTokenizerPt = require('./aggressive_tokenizer_pt')\nexports.AggressiveTokenizerNo = require('./aggressive_tokenizer_no')\nexports.AggressiveTokenizerSv = require('./aggressive_tokenizer_sv')\nexports.AggressiveTokenizerVi = require('./aggressive_tokenizer_vi')\nexports.AggressiveTokenizerId = require('./aggressive_tokenizer_id')\nexports.AggressiveTokenizerHi = require('./aggressive_tokenizer_hi')\nexports.AggressiveTokenizerUk = require('./aggressive_tokenizer_uk')\nexports.AggressiveTokenizer = require('./aggressive_tokenizer')\nexports.CaseTokenizer = require('./tokenizer_case')\nexports.RegexpTokenizer = require('./regexp_tokenizer').RegexpTokenizer\nexports.OrthographyTokenizer = require('./regexp_tokenizer').OrthographyTokenizer\nexports.WordTokenizer = require('./regexp_tokenizer').WordTokenizer\nexports.WordPunctTokenizer = require('./regexp_tokenizer').WordPunctTokenizer\nexports.TreebankWordTokenizer = require('./treebank_word_tokenizer')\nexports.TokenizerJa = require('./tokenizer_ja')\nexports.SentenceTokenizer = require('./sentence_tokenizer')\nexports.SentenceTokenizerNew = require('./sentence_tokenizer')\n"
  },
  {
    "path": "lib/natural/tokenizers/orthography_matchers.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n/***\n * RegExp definitions for tokenizing text in a specific language based\n * on its alphabet. Each language is keyed by the two-letter code per\n * ISO 639-1, and defines a RegExp that excludes alphabetic characters.\n */\n\n'use strict'\n\nconst matchers = {\n  fi: /[^A-Za-zÅåÄäÖö]/\n}\n\nmodule.exports = matchers\n"
  },
  {
    "path": "lib/natural/tokenizers/regexp_tokenizer.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst DEBUG = false\n\nconst Tokenizer = require('./tokenizer')\nconst _ = require('underscore')\n\nclass RegexpTokenizer extends Tokenizer {\n  constructor (opts) {\n    super(opts)\n    const options = opts || {}\n    this._pattern = options.pattern || this._pattern\n    this.discardEmpty = options.discardEmpty || true\n\n    // Match and split on GAPS not the actual WORDS\n    this._gaps = options.gaps\n\n    if (this._gaps === undefined) {\n      this._gaps = true\n    }\n  }\n\n  tokenize (s) {\n    let results\n\n    if (this._gaps) {\n      results = s.split(this._pattern)\n      return (this.discardEmpty) ? _.without(results, '', ' ') : results\n    } else {\n      return s.match(this._pattern)\n    }\n  }\n}\n\nexports.RegexpTokenizer = RegexpTokenizer\n\nconst orthographyMatchers = require('./orthography_matchers')\n\nclass OrthographyTokenizer {\n  constructor (options) {\n    const pattern = orthographyMatchers[options.language]\n    DEBUG && console.log(pattern)\n\n    if (!pattern) {\n      this.tokenizer = new WordTokenizer()\n    } else {\n      this.tokenizer = new RegexpTokenizer(options)\n      this.tokenizer._pattern = pattern\n      DEBUG && console.log(this.tokenizer)\n    }\n  }\n\n  tokenize (text) {\n    return this.tokenizer.tokenize(text)\n  }\n}\n\nexports.OrthographyTokenizer = OrthographyTokenizer\n\n/***\n * A tokenizer that divides a text into sequences of alphabetic and\n * non-alphabetic characters.  E.g.:\n *\n *      >>> WordTokenizer().tokenize(\"She said 'hello'.\")\n *      ['She', 'said', 'hello']\n *\n */\nclass WordTokenizer extends RegexpTokenizer {\n  constructor (options) {\n    super(options)\n    this._pattern = /[^A-Za-zА-Яа-я0-9_]+/\n  }\n}\n\nexports.WordTokenizer = WordTokenizer\n\n/***\n * A tokenizer that divides a text into sequences of alphabetic and\n * non-alphabetic characters.  E.g.:\n *\n *      >>> WordPunctTokenizer().tokenize(\"She said 'hello'.\")\n *      [\"She\",\"said\",\"'\",\"hello\",\"'\",\".\"]\n *\n */\nclass WordPunctTokenizer extends RegexpTokenizer {\n  constructor (options) {\n    if (!options) {\n      options = {}\n    }\n    options.pattern = /([A-Za-zÀ-ÿ-]+|[0-9._]+|.|!|\\?|'|\"|:|;|,|-)/i\n    super(options)\n  }\n}\n\nexports.WordPunctTokenizer = WordPunctTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/sentence_tokenizer.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst Tokenizer = require('./tokenizer')\n\n// Strings that will be used to create placeholders\nconst NUM = 'NUMBER'\nconst DELIM = 'DELIM'\nconst URI = 'URI'\nconst ABBREV = 'ABBREV'\n\nconst DEBUG = false\n\nfunction generateUniqueCode (base, index) {\n  // Surround the placeholder with {{}} to prevent shorter numbers to be recognized\n  // in larger numbers\n  return `{{${base}_${index}}}`\n}\n\nfunction escapeRegExp (string) {\n  return string.replace(/[.*+?^${}()|[\\]\\\\]/g, '\\\\$&')\n}\n\nclass SentenceTokenizer extends Tokenizer {\n  constructor (abbreviations, trimSentences) {\n    super()\n    if (abbreviations) {\n      this.abbreviations = abbreviations\n    } else {\n      this.abbreviations = []\n    }\n    if (trimSentences === undefined) {\n      this.trimSentences = true\n    } else {\n      this.trimSentences = trimSentences\n    }\n    this.replacementMap = null\n    this.replacementCounter = 0\n  }\n\n  replaceUrisWithPlaceholders (text) {\n    const urlPattern = /(https?:\\/\\/\\S+|www\\.\\S+|ftp:\\/\\/\\S+|(mailto:)?[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}|file:\\/\\/\\S+)/gi\n\n    const modifiedText = text.replace(urlPattern, (match) => {\n      const placeholder = generateUniqueCode(URI, this.replacementCounter++)\n      this.replacementMap.set(placeholder, match)\n      return placeholder\n    })\n\n    return modifiedText\n  }\n\n  replaceAbbreviations (text) {\n    if (this.abbreviations.length === 0) {\n      return text\n    }\n    const pattern = new RegExp(`(${this.abbreviations.map(abbrev => escapeRegExp(abbrev)).join('|')})`, 'gi')\n    const replacedText = text.replace(pattern, match => {\n      const code = generateUniqueCode(ABBREV, this.replacementCounter++)\n      this.replacementMap.set(code, match)\n      return code\n    })\n\n    return replacedText\n  }\n\n  replaceDelimitersWithPlaceholders (text) {\n    // Regular expression for sentence delimiters optionally followed by a bracket or quote\n    // Multiple delimiters with spaces in between are allowed\n    // The expression makes sure that the sentence delimiter group ends with a sentence delimiter\n    const delimiterPattern = /([.?!… ]*)([.?!…])([\"'”’)}\\]]?)/g\n    const modifiedText = text.replace(delimiterPattern, (match, p1, p2, p3) => {\n      const placeholder = generateUniqueCode(DELIM, this.replacementCounter++)\n      this.delimiterMap.set(placeholder, p1 + p2 + p3)\n      return placeholder\n    })\n\n    return modifiedText\n  }\n\n  splitOnPlaceholders (text, placeholders) {\n    if (this.delimiterMap.size === 0) {\n      return [text]\n    }\n\n    const keys = Array.from(this.delimiterMap.keys())\n    const pattern = new RegExp(`(${keys.map(escapeRegExp).join('|')})`)\n    const parts = text.split(pattern)\n\n    const sentences = []\n    for (let i = 0; i < parts.length; i += 2) {\n      const sentence = parts[i]\n      const placeholder = parts[i + 1] || ''\n      sentences.push(sentence + placeholder)\n    }\n\n    return sentences\n  }\n\n  replaceNumbersWithCode (text) {\n    // Regular expression to match numbers, including decimal points and commas\n    const numberPattern = /\\b\\d{1,3}(?:,\\d{3})*(?:\\.\\d+)?\\b/g\n\n    const replacedText = text.replace(numberPattern, match => {\n      const code = generateUniqueCode(NUM, this.replacementCounter++)\n      this.replacementMap.set(code, match)\n      return code\n    })\n\n    return replacedText\n  }\n\n  revertReplacements (text) {\n    let originalText = text\n    for (const [placeholder, replacement] of this.replacementMap.entries()) {\n      const pattern = new RegExp(escapeRegExp(placeholder), 'g')\n      originalText = originalText.replace(pattern, replacement)\n    }\n\n    return originalText\n  }\n\n  revertDelimiters (text) {\n    let originalText = text\n    for (const [placeholder, replacement] of this.delimiterMap.entries()) {\n      const pattern = new RegExp(escapeRegExp(placeholder), 'g')\n      originalText = originalText.replace(pattern, replacement)\n    }\n\n    return originalText\n  }\n\n  tokenize (text) {\n    this.replacementCounter = 0\n    this.replacementMap = new Map()\n    this.delimiterMap = new Map()\n\n    DEBUG && console.log('---Start of sentence tokenization-----------------------')\n    DEBUG && console.log('Original input: >>>' + text + '<<<')\n    // Replace abbreviations\n    const result1 = this.replaceAbbreviations(text)\n    DEBUG && console.log('Phase 1: replacing abbreviations: ' + JSON.stringify(result1))\n\n    // Replace URIs\n    const result2 = this.replaceUrisWithPlaceholders(result1)\n    DEBUG && console.log('Phase 2: replacing URIs: ' + JSON.stringify(result2))\n\n    // Replace delimiters followed by optional quotes, brackets, and braces\n    const result3 = this.replaceNumbersWithCode(result2)\n    DEBUG && console.log('Phase 3: replacing numbers with placeholders: ' + JSON.stringify(result3))\n\n    // Replace delimiters followed by optional quotes, brackets, and braces\n    const result4 = this.replaceDelimitersWithPlaceholders(result3)\n    DEBUG && console.log('Phase 4: replacing delimiters with placeholders: ' + JSON.stringify(result4))\n\n    // Split on placeholders for sentence delimiters\n    const sentences = this.splitOnPlaceholders(result4)\n    DEBUG && console.log('Phase 5: splitting into sentences on placeholders: ' + JSON.stringify(sentences))\n\n    // Replace back all abbreviations, URIs, and delimiters\n    const newSentences = sentences.map(s => {\n      const s1 = this.revertReplacements(s)\n      return this.revertDelimiters(s1)\n    })\n    DEBUG && console.log('Phase 6: replacing back abbreviations, URIs, numbers and delimiters: ' + JSON.stringify(newSentences))\n\n    const trimmedSentences = this.trim(newSentences)\n    DEBUG && console.log('Phase 7: trimming array of empty sentences: ' + JSON.stringify(trimmedSentences))\n\n    const trimmedSentences2 = trimmedSentences.map(sent => this.trimSentences ? sent.trim() : sent)\n    DEBUG && console.log('Phase 8: trimming sentences from surrounding whitespace: ' + JSON.stringify(trimmedSentences2))\n    DEBUG && console.log('---End of sentence tokenization--------------------------')\n    DEBUG && console.log('---Replacement map---------------------------------------')\n    DEBUG && console.log([...this.replacementMap.entries()])\n    DEBUG && console.log('---Delimiter map-----------------------------------------')\n    DEBUG && console.log([...this.delimiterMap.entries()])\n    DEBUG && console.log('---------------------------------------------------------')\n\n    return trimmedSentences2\n  }\n}\n\nmodule.exports = SentenceTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/sentence_tokenizer_deprecated.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\n\nconst DEBUG = false\n\nclass SentenceTokenizer extends Tokenizer {\n  tokenize (text) {\n    // Break string up in to sentences based on punctation and quotation marks\n    // See https://gist.github.com/Hugo-ter-Doest/4ed21fb7eb5077814d998fa61a726566\n    // for a breakdown of the regular expression\n    let tokens = text.match(/(?<=\\s+|^)[\"'‘“'\"[({⟨]?(.*?[.?!…]|.+)(\\s[.?!…])*[\"'’”'\"\\])}⟩]?(?=\\s+|$)/g)\n\n    DEBUG && console.log('SentenceTokenizer.tokenize: ' + tokens)\n\n    if (!tokens) {\n      return [text]\n    }\n\n    // remove unecessary white space\n    tokens = tokens.map(Function.prototype.call, String.prototype.trim)\n\n    DEBUG && console.log('SentenceTokenizer.tokenize: tokens after removing whitespace ' + tokens)\n\n    return this.trim(tokens)\n  }\n}\n\nmodule.exports = SentenceTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/tokenizer.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nclass Tokenizer {\n  trim (array) {\n    while (array[array.length - 1] === '') { array.pop() }\n\n    while (array[0] === '') { array.shift() }\n\n    return array\n  }\n}\n\nmodule.exports = Tokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/tokenizer_case.js",
    "content": "/*\n Copyright (c) 2011, Chris Umbel, Alex Langberg\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\nconst Tokenizer = require('./tokenizer')\n\n// Idea from Seagull: http://stackoverflow.com/a/26482650\nclass CaseTokenizer extends Tokenizer {\n  tokenize (text, preserveApostrophe) {\n    const whitelist = ['0', '1', '2', '3', '4', '5', '6', '7', '8', '9']\n    const lower = text.toLowerCase()\n    const upper = text.toUpperCase()\n    let result = ''\n    let i\n\n    for (i = 0; i < lower.length; ++i) {\n      if (lower[i] !== upper[i] || whitelist.indexOf(lower[i]) > -1 || (text[i] === '\\'' && preserveApostrophe)) {\n        result += text[i]\n      } else {\n        result += ' '\n      }\n    }\n\n    return this.trim(result.replace(/\\s+/g, ' ').split(' '))\n  }\n}\n\nmodule.exports = CaseTokenizer\n"
  },
  {
    "path": "lib/natural/tokenizers/tokenizer_ja.js",
    "content": "// Original copyright:\n/*\n Copyright (c) 2008, Taku Kudo\n\n All rights reserved.\n\n Redistribution and use in source and binary forms, with or without\n modification, are permitted provided that the following conditions are met:\n\n * Redistributions of source code must retain the above copyright notice,\n this list of conditions and the following disclaimer.\n * Redistributions in binary form must reproduce the above copyright\n notice, this list of conditions and the following disclaimer in the\n documentation and/or other materials provided with the distribution.\n * Neither the name of the <ORGANIZATION> nor the names of its\n contributors may be used to endorse or promote products derived from this\n software without specific prior written permission.\n\n THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS\n \"AS IS\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT\n LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR\n A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR\n CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,\n EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,\n PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR\n PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF\n LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING\n NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS\n SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.\n */\n\n// This version:\n/*\n Copyright (c) 2012, Guillaume Marty\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n// TinySegmenter 0.1 -- Super compact Japanese tokenizer in Javascript\n// (c) 2008 Taku Kudo <taku@chasen.org>\n// TinySegmenter is freely distributable under the terms of a new BSD licence.\n// For details, see http://chasen.org/~taku/software/TinySegmenter/LICENCE.txt\n\n'use strict'\n\nconst Tokenizer = require('./tokenizer')\nconst normalize = require('../normalizers/normalizer_ja').normalizeJa\nconst util = require('util')\n\n/**\n * @constructor\n */\nconst TokenizerJa = function () {\n  this.chartype_ = [\n    [/[〇一二三四五六七八九十百千万億兆]/, 'M'],\n    [/[一-鿌〆]/, 'H'],\n    [/[ぁ-ゟ]/, 'I'],\n    [/[゠-ヿ]/, 'K'],\n    [/[a-zA-Z]/, 'A'],\n    [/[0-9]/, 'N']\n  ]\n\n  this.BIAS__ = -332\n  this.BC1__ = { HH: 6, II: 2461, KH: 406, OH: -1378 }\n  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 }\n  this.BC3__ = { HH: 996, HI: 626, HK: -721, HN: -1307, HO: -836, IH: -301, KK: 2762, MK: 1079, MM: 4034, OA: -1652, OH: 266 }\n  this.BP1__ = { BB: 295, OB: 304, OO: -125, UB: 352 }\n  this.BP2__ = { BO: 60, OO: -1762 }\n  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 }\n  this.BQ2__ = { BHH: 118, BHI: -1159, BHM: 466, BIH: -919, BKK: -1720, BKO: 864, OHH: -1139, OHM: -181, OIH: 153, UHI: -1146 }\n  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 }\n  this.BQ4__ = { BHH: -3895, BIH: 3761, BII: -4654, BIK: 1348, BKK: -1806, BMI: -3385, BOO: -12396, OAH: 926, OHH: 266, OHK: -2036, ONN: -973 }\n  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 }\n  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 }\n  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 }\n  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 }\n  this.TC2__ = { HHO: 2088, HII: -1023, HMM: -1154, IHI: -1965, KKH: 703, OII: -2649 }\n  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 }\n  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 }\n  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 }\n  this.TQ2__ = { BIHH: -1401, BIII: -1033, BKAK: -543, BOOO: -5591 }\n  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 }\n  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 }\n  this.TW1__ = { につい: -4681, 東京都: 2026 }\n  this.TW2__ = { ある程: -2049, いった: -1256, ころが: -2434, しょう: 3873, その後: -4430, だって: -1049, ていた: 1833, として: -4657, ともに: -4517, もので: 1882, 一気に: -792, 初めて: -1512, 同時に: -8097, 大きな: -1255, 対して: -2721, 社会党: -3216 }\n  this.TW3__ = { いただ: -1734, してい: 1314, として: -4314, につい: -5483, にとっ: -5989, に当た: -6247, 'ので，': -727, 'ので、': -727, のもの: -600, れから: -3752, 十二月: -2287 }\n  this.TW4__ = { 'いう．': 8576, 'いう。': 8576, からな: -2348, してい: 2958, 'たが，': 1516, 'たが、': 1516, ている: 1538, という: 1349, ました: 5543, ません: 1097, ようと: -4258, よると: 5865 }\n  this.UC1__ = { A: 484, K: 93, M: 645, O: -505 }\n  this.UC2__ = { A: 819, H: 1059, I: 409, M: 3987, N: 5775, O: 646 }\n  this.UC3__ = { A: -1370, I: 2311 }\n  this.UC4__ = { A: -2643, H: 1809, I: -1032, K: -3450, M: 3565, N: 3876, O: 6646 }\n  this.UC5__ = { H: 313, I: -1238, K: -799, M: 539, O: -831 }\n  this.UC6__ = { H: -506, I: -253, K: 87, M: 247, O: -387 }\n  this.UP1__ = { O: -214 }\n  this.UP2__ = { B: 69, O: 935 }\n  this.UP3__ = { B: 189 }\n  this.UQ1__ = { BH: 21, BI: -12, BK: -99, BN: 142, BO: -56, OH: -95, OI: 477, OK: 410, OO: -2422 }\n  this.UQ2__ = { BH: 216, BI: 113, OK: 1759 }\n  this.UQ3__ = { BA: -479, BH: 42, BI: 1913, BK: -7198, BM: 3160, BN: 6427, BO: 14761, OI: -827, ON: -3212 }\n  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 }\n  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 }\n  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 }\n  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 }\n  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 }\n  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 }\n\n  return this\n}\n\nutil.inherits(TokenizerJa, Tokenizer)\n\n/**\n * @param {string} str\n * @return {string}\n * @private\n */\nTokenizerJa.prototype.ctype_ = function (str) {\n  for (let i = 0, length = this.chartype_.length; i < length; i++) {\n    if (str.match(this.chartype_[i][0])) {\n      return this.chartype_[i][1]\n    }\n  }\n  return 'O'\n}\n\n/**\n * @param {string} v\n * @return {number}\n * @private\n */\nTokenizerJa.prototype.ts_ = function (v) {\n  if (v) { return v }\n  return 0\n}\n\n/**\n * Remove punctuations signs from tokens.\n *\n * @param {Array.<string>} tokens An array of tokens.\n * @return {Array.<string>} An array of tokens.\n * @private\n */\nTokenizerJa.prototype.removePuncTokens = function (tokens) {\n  return tokens\n    .map(function (token) {\n      return token.replace(/[＿－・，、；：！？．。（）［］｛｝｢｣＠＊＼／＆＃％｀＾＋＜＝＞｜～≪≫─＄＂_\\-･,､;:!?.｡()[\\]{}「」@*/&#%`^+<=>|~«»$\"\\s]+/g, '')\n    })\n    .filter(function (token) {\n      return token !== ''\n    })\n}\n\n/**\n * @param {string} text\n * @return {Array.<string>}\n */\nTokenizerJa.prototype.tokenize = function (text) {\n  if (text === null || text === undefined || text === '') {\n    return []\n  }\n  text = normalize(text)\n  let result = []\n  const seg = ['B3', 'B2', 'B1']\n  const ctype = ['O', 'O', 'O']\n  const o = text.split('')\n  let i\n  let length\n  for (i = 0, length = o.length; i < length; ++i) {\n    seg.push(o[i])\n    ctype.push(this.ctype_(o[i]))\n  }\n  seg.push('E1')\n  seg.push('E2')\n  seg.push('E3')\n  ctype.push('O')\n  ctype.push('O')\n  ctype.push('O')\n  let word = seg[3]\n  let p1 = 'U'\n  let p2 = 'U'\n  let p3 = 'U'\n  for (i = 4, length = seg.length - 3; i < length; ++i) {\n    let score = this.BIAS__\n    const w1 = seg[i - 3]\n    const w2 = seg[i - 2]\n    const w3 = seg[i - 1]\n    const w4 = seg[i]\n    const w5 = seg[i + 1]\n    const w6 = seg[i + 2]\n    const c1 = ctype[i - 3]\n    const c2 = ctype[i - 2]\n    const c3 = ctype[i - 1]\n    const c4 = ctype[i]\n    const c5 = ctype[i + 1]\n    const c6 = ctype[i + 2]\n    score += this.ts_(this.UP1__[p1])\n    score += this.ts_(this.UP2__[p2])\n    score += this.ts_(this.UP3__[p3])\n    score += this.ts_(this.BP1__[p1 + p2])\n    score += this.ts_(this.BP2__[p2 + p3])\n    score += this.ts_(this.UW1__[w1])\n    score += this.ts_(this.UW2__[w2])\n    score += this.ts_(this.UW3__[w3])\n    score += this.ts_(this.UW4__[w4])\n    score += this.ts_(this.UW5__[w5])\n    score += this.ts_(this.UW6__[w6])\n    score += this.ts_(this.BW1__[w2 + w3])\n    score += this.ts_(this.BW2__[w3 + w4])\n    score += this.ts_(this.BW3__[w4 + w5])\n    score += this.ts_(this.TW1__[w1 + w2 + w3])\n    score += this.ts_(this.TW2__[w2 + w3 + w4])\n    score += this.ts_(this.TW3__[w3 + w4 + w5])\n    score += this.ts_(this.TW4__[w4 + w5 + w6])\n    score += this.ts_(this.UC1__[c1])\n    score += this.ts_(this.UC2__[c2])\n    score += this.ts_(this.UC3__[c3])\n    score += this.ts_(this.UC4__[c4])\n    score += this.ts_(this.UC5__[c5])\n    score += this.ts_(this.UC6__[c6])\n    score += this.ts_(this.BC1__[c2 + c3])\n    score += this.ts_(this.BC2__[c3 + c4])\n    score += this.ts_(this.BC3__[c4 + c5])\n    score += this.ts_(this.TC1__[c1 + c2 + c3])\n    score += this.ts_(this.TC2__[c2 + c3 + c4])\n    score += this.ts_(this.TC3__[c3 + c4 + c5])\n    score += this.ts_(this.TC4__[c4 + c5 + c6])\n    // score += this.ts_(this.TC5__[c4 + c5 + c6]);\n    score += this.ts_(this.UQ1__[p1 + c1])\n    score += this.ts_(this.UQ2__[p2 + c2])\n    score += this.ts_(this.UQ3__[p3 + c3])\n    score += this.ts_(this.BQ1__[p2 + c2 + c3])\n    score += this.ts_(this.BQ2__[p2 + c3 + c4])\n    score += this.ts_(this.BQ3__[p3 + c2 + c3])\n    score += this.ts_(this.BQ4__[p3 + c3 + c4])\n    score += this.ts_(this.TQ1__[p2 + c1 + c2 + c3])\n    score += this.ts_(this.TQ2__[p2 + c2 + c3 + c4])\n    score += this.ts_(this.TQ3__[p3 + c1 + c2 + c3])\n    score += this.ts_(this.TQ4__[p3 + c2 + c3 + c4])\n    let p = 'O'\n    if (score > 0) {\n      result.push(word)\n      word = ''\n      p = 'B'\n    }\n    p1 = p2\n    p2 = p3\n    p3 = p\n    word += seg[i]\n  }\n  result.push(word)\n\n  result = this.removePuncTokens(result)\n\n  return result\n}\n\nmodule.exports = TokenizerJa\n"
  },
  {
    "path": "lib/natural/tokenizers/treebank_word_tokenizer.js",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst Tokenizer = require('./tokenizer')\nconst util = require('util')\nconst _ = require('underscore')\n\nconst contractions2 = [\n  /(.)('ll|'re|'ve|n't|'s|'m|'d)\\b/ig,\n  /\\b(can)(not)\\b/ig,\n  /\\b(D)('ye)\\b/ig,\n  /\\b(Gim)(me)\\b/ig,\n  /\\b(Gon)(na)\\b/ig,\n  /\\b(Got)(ta)\\b/ig,\n  /\\b(Lem)(me)\\b/ig,\n  /\\b(Mor)('n)\\b/ig,\n  /\\b(T)(is)\\b/ig,\n  /\\b(T)(was)\\b/ig,\n  /\\b(Wan)(na)\\b/ig]\n\nconst contractions3 = [\n  /\\b(Whad)(dd)(ya)\\b/ig,\n  /\\b(Wha)(t)(cha)\\b/ig\n]\n\nconst TreebankWordTokenizer = function () {\n}\n\nutil.inherits(TreebankWordTokenizer, Tokenizer)\n\nTreebankWordTokenizer.prototype.tokenize = function (text) {\n  contractions2.forEach(function (regexp) {\n    text = text.replace(regexp, '$1 $2')\n  })\n\n  contractions3.forEach(function (regexp) {\n    text = text.replace(regexp, '$1 $2 $3')\n  })\n\n  // most punctuation\n  text = text.replace(/([^\\w.'\\-/+<>,&])/g, ' $1 ')\n\n  // commas if followed by space\n  text = text.replace(/(,\\s)/g, ' $1')\n\n  // single quotes if followed by a space\n  text = text.replace(/('\\s)/g, ' $1')\n\n  // periods before newline or end of string\n  text = text.replace(/\\. *(\\n|$)/g, ' . ')\n\n  return _.without(text.split(/\\s+/), '')\n}\n\nmodule.exports = TreebankWordTokenizer\n"
  },
  {
    "path": "lib/natural/transliterators/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport let TransliterateJa: (s: string) => string\n"
  },
  {
    "path": "lib/natural/transliterators/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.TransliterateJa = require('./ja')\n"
  },
  {
    "path": "lib/natural/transliterators/ja/index.js",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/**\n * A transliteration of Katakana & Hiragana to roman characters using the\n * modified Hepburn system.\n * Rules based on CLDR transform rule set `Katakana-Latin-BGN.xml` but with\n * several bugs fixed:\n *  * Missing ū\n *  * Missing tsu + voiced kana\n *  * typos on my~ transliterations\n *  * support for long vowel sign\n *  * support for final small tsu\n *  * support for u + small vowels\n *  * support for su/shi/ji + small vowels\n *  * support for tchi/tsu/te/to + small vowels\n *  * support for fu + small vowels\n *  * support for katakana middle dot\n *\n * \\@todo Take iteration marks into account.\n */\n\nconst replacer = require('../../util/utils').replacer\n\nconst transliterationTable1 = {\n  ウァ: 'wa', // KATAKANA LETTER U + SMALL A\n  ウィ: 'wi', // KATAKANA LETTER U + SMALL I\n  ウェ: 'we', // KATAKANA LETTER U + SMALL E\n  ウォ: 'wo', // KATAKANA LETTER U + SMALL O\n  ウー: 'ū', // KATAKANA LETTER VU + PROLONGED SOUND MARK\n\n  ヴァ: 'va', // KATAKANA LETTER VU + SMALL A\n  ヴィ: 'vi', // KATAKANA LETTER VU + SMALL I\n  ヴェ: 've', // KATAKANA LETTER VU + SMALL E\n  ヴォ: 'vo', // KATAKANA LETTER VU + SMALL O\n  ヴュ: 'vyu', // KATAKANA LETTER VU + SMALL YU\n\n  うぁ: 'wa', // HIRAGANA LETTER U + SMALL A\n  うぃ: 'wi', // HIRAGANA LETTER U + SMALL I\n  うぇ: 'we', // HIRAGANA LETTER U + SMALL E\n  うぉ: 'wo', // HIRAGANA LETTER U + SMALL O\n  うー: 'ū', // HIRAGANA LETTER VU + PROLONGED SOUND MARK\n\n  ゔぁ: 'va', // HIRAGANA LETTER VU + SMALL A\n  ゔぃ: 'vi', // HIRAGANA LETTER VU + SMALL I\n  ゔぇ: 've', // HIRAGANA LETTER VU + SMALL E\n  ゔぉ: 'vo', // HIRAGANA LETTER VU + SMALL O\n  ゔゅ: 'vyu' // HIRAGANA LETTER VU + SMALL YU\n}\n\nconst transliterationTable2 = {\n  イェ: 'ye', // KATAKANA LETTER I + SMALL E\n\n  ア: 'a', // KATAKANA LETTER A\n  イ: 'i', // KATAKANA LETTER I\n  ウウ: 'ū', // KATAKANA LETTER U + U\n  ウ: 'u', // KATAKANA LETTER U\n  エ: 'e', // KATAKANA LETTER E\n  オウ: 'ō', // KATAKANA LETTER O + U\n  オ: 'o', // KATAKANA LETTER O\n\n  クァ: 'kwa', // KATAKANA LETTER KU + SMALL A\n  クィ: 'kwi', // KATAKANA LETTER KU + SMALL I\n  クェ: 'kwe', // KATAKANA LETTER KU + SMALL E\n  クォ: 'kwo', // KATAKANA LETTER KU + SMALL O\n\n  カ: 'ka', // KATAKANA LETTER KA\n  キョウ: 'kyō', // KATAKANA LETTER KI + SMALL YO + U\n  キュウ: 'kyū', // KATAKANA LETTER KI + SMALL YU + U\n  キャ: 'kya', // KATAKANA LETTER KI + SMALL YA\n  キョ: 'kyo', // KATAKANA LETTER KI + SMALL YO\n  キュ: 'kyu', // KATAKANA LETTER KI + SMALL YU\n  キ: 'ki', // KATAKANA LETTER KI\n  ク: 'ku', // KATAKANA LETTER KU\n  ケ: 'ke', // KATAKANA LETTER KE\n  コウ: 'kō', // KATAKANA LETTER KO + U\n  コ: 'ko', // KATAKANA LETTER KO\n\n  シェ: 'she', // KATAKANA LETTER SI + SMALL E\n  スィ: 'si', // KATAKANA LETTER SU + SMALL I\n\n  サ: 'sa', // KATAKANA LETTER SA\n  ショウ: 'shō', // KATAKANA LETTER SI + SMALL YO + U\n  シュウ: 'shū', // KATAKANA LETTER SI + SMALL YU + U\n  シャ: 'sha', // KATAKANA LETTER SI + SMALL YA\n  ショ: 'sho', // KATAKANA LETTER SI + SMALL YO\n  シュ: 'shu', // KATAKANA LETTER SI + SMALL YU\n  シ: 'shi', // KATAKANA LETTER SI\n  スウ: 'sū', // KATAKANA LETTER SU + U\n  ス: 'su', // KATAKANA LETTER SU\n  セ: 'se', // KATAKANA LETTER SE\n  ソウ: 'sō', // KATAKANA LETTER SO + U\n  ソ: 'so', // KATAKANA LETTER SO\n\n  チェ: 'che', // KATAKANA LETTER TI + SMALL E\n  ツァ: 'tsa', // KATAKANA LETTER TU + SMALL A\n  ツィ: 'tsi', // KATAKANA LETTER TU + SMALL I\n  ツェ: 'tse', // KATAKANA LETTER TU + SMALL E\n  ツォ: 'tso', // KATAKANA LETTER TU + SMALL O\n  ティ: 'ti', // KATAKANA LETTER TE + SMALL I\n  ディ: 'di', // KATAKANA LETTER DE + SMALL I\n  テュ: 'tyu', // KATAKANA LETTER TE + SMALL YU\n  デュ: 'dyu', // KATAKANA LETTER DE + SMALL YU\n  トィ: 'twi', // KATAKANA LETTER TO + SMALL I\n  トゥ: 'tu', // KATAKANA LETTER TO + SMALL U\n  ドィ: 'dwi', // KATAKANA LETTER DO + SMALL I\n  ドゥ: 'du', // KATAKANA LETTER DO + SMALL U\n\n  タ: 'ta', // KATAKANA LETTER TA\n  チョウ: 'chō', // KATAKANA LETTER TI + SMALL YO + U\n  チュウ: 'chū', // KATAKANA LETTER TI + SMALL YU + U\n  チャ: 'cha', // KATAKANA LETTER TI + SMALL YA\n  チョ: 'cho', // KATAKANA LETTER TI + SMALL YO\n  チュ: 'chu', // KATAKANA LETTER TI + SMALL YU\n  チ: 'chi', // KATAKANA LETTER TI\n  ツウ: 'tsū', // KATAKANA LETTER TU + U\n  ツ: 'tsu', // KATAKANA LETTER TU\n  テ: 'te', // KATAKANA LETTER TE\n  トウ: 'tō', // KATAKANA LETTER TO + U\n  ト: 'to', // KATAKANA LETTER TO\n\n  ナ: 'na', // KATAKANA LETTER NA\n  ニョウ: 'nyō', // KATAKANA LETTER NI + SMALL YO + U\n  ニュウ: 'nyū', // KATAKANA LETTER NI + SMALL YU + U\n  ニャ: 'nya', // KATAKANA LETTER NI + SMALL YA\n  ニョ: 'nyo', // KATAKANA LETTER NI + SMALL YO\n  ニュ: 'nyu', // KATAKANA LETTER NI + SMALL YU\n  ニ: 'ni', // KATAKANA LETTER NI\n  ヌウ: 'nū', // KATAKANA LETTER NU + U\n  ヌ: 'nu', // KATAKANA LETTER NU\n  ネ: 'ne', // KATAKANA LETTER NE\n  ノウ: 'nō', // KATAKANA LETTER NO + U\n  ノ: 'no', // KATAKANA LETTER NO\n\n  ファ: 'fa', // KATAKANA LETTER HU + SMALL A\n  フィ: 'fi', // KATAKANA LETTER HU + SMALL I\n  // 'フゥ': 'fu', // KATAKANA LETTER HU + SMALL U\n  フェ: 'fe', // KATAKANA LETTER HU + SMALL E\n  フォ: 'fo', // KATAKANA LETTER HU + SMALL O\n  フュ: 'fyu', // KATAKANA LETTER HU + SMALL YU\n  ホェ: 'hwe', // KATAKANA LETTER HO + SMALL E\n\n  ハ: 'ha', // KATAKANA LETTER HA\n  ヒョウ: 'hyō', // KATAKANA LETTER HI + SMALL YO + U\n  ヒュウ: 'hyū', // KATAKANA LETTER HI + SMALL YU + U\n  ヒャ: 'hya', // KATAKANA LETTER HI + SMALL YA\n  ヒョ: 'hyo', // KATAKANA LETTER HI + SMALL YO\n  ヒュ: 'hyu', // KATAKANA LETTER HI + SMALL YU\n  ヒ: 'hi', // KATAKANA LETTER HI\n  フウ: 'fū', // KATAKANA LETTER HU + U\n  フ: 'fu', // KATAKANA LETTER HU\n  ヘ: 'he', // KATAKANA LETTER HE\n  ホウ: 'hō', // KATAKANA LETTER HO + U\n  ホ: 'ho', // KATAKANA LETTER HO\n\n  マ: 'ma', // KATAKANA LETTER MA\n  ミョウ: 'myō', // KATAKANA LETTER MI + SMALL YO + U\n  ミュウ: 'myū', // KATAKANA LETTER MI + SMALL YU + U\n  ミャ: 'mya', // KATAKANA LETTER MI + SMALL YA\n  ミョ: 'myo', // KATAKANA LETTER MI + SMALL YO\n  ミュ: 'myu', // KATAKANA LETTER MI + SMALL YU\n  ミ: 'mi', // KATAKANA LETTER MI\n  ムウ: 'mū', // KATAKANA LETTER MU + U\n  ム: 'mu', // KATAKANA LETTER MU\n  メ: 'me', // KATAKANA LETTER ME\n  モウ: 'mō', // KATAKANA LETTER MO + U\n  モ: 'mo', // KATAKANA LETTER MO\n\n  ヤ: 'ya', // KATAKANA LETTER YA\n  ユウ: 'yū', // KATAKANA LETTER YU + U\n  ユ: 'yu', // KATAKANA LETTER YU\n  ヨウ: 'yō', // KATAKANA LETTER YO + U\n  ヨ: 'yo', // KATAKANA LETTER YO\n\n  リェ: 'rye', // KATAKANA LETTER RI + SMALL E\n\n  ラ: 'ra', // KATAKANA LETTER RA\n  リョウ: 'ryō', // KATAKANA LETTER RI + SMALL YO + U\n  リュウ: 'ryū', // KATAKANA LETTER RI + SMALL YU + U\n  リャ: 'rya', // KATAKANA LETTER RI + SMALL YA\n  リョ: 'ryo', // KATAKANA LETTER RI + SMALL YO\n  リュ: 'ryu', // KATAKANA LETTER RI + SMALL YU\n  リ: 'ri', // KATAKANA LETTER RI\n  ルウ: 'rū', // KATAKANA LETTER RU + U\n  ル: 'ru', // KATAKANA LETTER RU\n  レ: 're', // KATAKANA LETTER RE\n  ロウ: 'rō', // KATAKANA LETTER RO + U\n  ロ: 'ro', // KATAKANA LETTER RO\n\n  ワ: 'wa', // KATAKANA LETTER WA\n  ヰ: 'i', // KATAKANA LETTER WI\n  ヱ: 'e', // KATAKANA LETTER WE\n  ヲ: 'o', // KATAKANA LETTER WO\n\n  ン: 'n', // KATAKANA LETTER N\n\n  グァ: 'gwa', // KATAKANA LETTER GU + SMALL A\n  グィ: 'gwi', // KATAKANA LETTER GU + SMALL I\n  グェ: 'gwe', // KATAKANA LETTER GU + SMALL E\n  グォ: 'gwo', // KATAKANA LETTER GU + SMALL O\n\n  ガ: 'ga', // KATAKANA LETTER GA\n  ギョウ: 'gyō', // KATAKANA LETTER GI + SMALL YO + U\n  ギュウ: 'gyū', // KATAKANA LETTER GI + SMALL YU + U\n  ギャ: 'gya', // KATAKANA LETTER GI + SMALL YA\n  ギョ: 'gyo', // KATAKANA LETTER GI + SMALL YO\n  ギュ: 'gyu', // KATAKANA LETTER GI + SMALL YU\n  ギ: 'gi', // KATAKANA LETTER GI\n  グウ: 'gū', // KATAKANA LETTER GU + U\n  グ: 'gu', // KATAKANA LETTER GU\n  ゲ: 'ge', // KATAKANA LETTER GE\n  ゴウ: 'gō', // KATAKANA LETTER GO + U\n  ゴ: 'go', // KATAKANA LETTER GO\n\n  ジェ: 'je', // KATAKANA LETTER ZI + SMALL E\n  ズィ: 'zi', // KATAKANA LETTER ZU + SMALL I\n\n  ザ: 'za', // KATAKANA LETTER ZA\n  ジョウ: 'jō', // KATAKANA LETTER ZI + SMALL YO + U\n  ジュウ: 'jū', // KATAKANA LETTER ZI + SMALL YU + U\n  ジャ: 'ja', // KATAKANA LETTER ZI + SMALL YA\n  ジョ: 'jo', // KATAKANA LETTER ZI + SMALL YO\n  ジュ: 'ju', // KATAKANA LETTER ZI + SMALL YU\n  ジ: 'ji', // KATAKANA LETTER ZI\n  ズウ: 'zū', // KATAKANA LETTER ZU + U\n  ズ: 'zu', // KATAKANA LETTER ZU\n  ゼ: 'ze', // KATAKANA LETTER ZE\n  ゾウ: 'zō', // KATAKANA LETTER ZO + U\n  ゾ: 'zo', // KATAKANA LETTER ZO\n\n  ダ: 'da', // KATAKANA LETTER DA\n  ヂ: 'ji', // KATAKANA LETTER DI\n  ヅウ: 'zū', // KATAKANA LETTER DU + U\n  ヅ: 'zu', // KATAKANA LETTER DU\n  デ: 'de', // KATAKANA LETTER DE\n  ドウ: 'dō', // KATAKANA LETTER DO + U\n  ド: 'do', // KATAKANA LETTER DO\n\n  ブュ: 'byu', // KATAKANA LETTER BU + SMALL YU\n\n  バ: 'ba', // KATAKANA LETTER BA\n  ビョウ: 'byō', // KATAKANA LETTER BI + SMALL YO + U\n  ビュウ: 'byū', // KATAKANA LETTER BI + SMALL YU + U\n  ビャ: 'bya', // KATAKANA LETTER BI + SMALL YA\n  ビョ: 'byo', // KATAKANA LETTER BI + SMALL YO\n  ビュ: 'byu', // KATAKANA LETTER BI + SMALL YU\n  ビ: 'bi', // KATAKANA LETTER BI\n  ブウ: 'bū', // KATAKANA LETTER BU + U\n  ブ: 'bu', // KATAKANA LETTER BU\n  ベ: 'be', // KATAKANA LETTER BE\n  ボウ: 'bō', // KATAKANA LETTER BO + U\n  ボ: 'bo', // KATAKANA LETTER BO\n\n  パ: 'pa', // KATAKANA LETTER PA\n  ピョウ: 'pyō', // KATAKANA LETTER PI + SMALL YO + U\n  ピュウ: 'pyū', // KATAKANA LETTER PI + SMALL YU + U\n  ピャ: 'pya', // KATAKANA LETTER PI + SMALL YA\n  ピョ: 'pyo', // KATAKANA LETTER PI + SMALL YO\n  ピュ: 'pyu', // KATAKANA LETTER PI + SMALL YU\n  ピ: 'pi', // KATAKANA LETTER PI\n  プウ: 'pū', // KATAKANA LETTER PU + U\n  プ: 'pu', // KATAKANA LETTER PU\n  ペ: 'pe', // KATAKANA LETTER PE\n  ポウ: 'pō', // KATAKANA LETTER PO + U\n  ポ: 'po', // KATAKANA LETTER PO\n\n  ヴ: 'v', // KATAKANA LETTER VU\n\n  '・': ' ', // KATAKANA MIDDLE DOT\n\n  いぇ: 'ye', // HIRAGANA LETTER I + SMALL E\n\n  あ: 'a', // HIRAGANA LETTER A\n  い: 'i', // HIRAGANA LETTER I\n  うう: 'ū', // HIRAGANA LETTER U + U\n  う: 'u', // HIRAGANA LETTER U\n  え: 'e', // HIRAGANA LETTER E\n  おう: 'ō', // HIRAGANA LETTER O + U\n  お: 'o', // HIRAGANA LETTER O\n\n  くぁ: 'kwa', // HIRAGANA LETTER KU + SMALL A\n  くぃ: 'kwi', // HIRAGANA LETTER KU + SMALL I\n  くぇ: 'kwe', // HIRAGANA LETTER KU + SMALL E\n  くぉ: 'kwo', // HIRAGANA LETTER KU + SMALL O\n\n  か: 'ka', // HIRAGANA LETTER KA\n  きょう: 'kyō', // HIRAGANA LETTER KI + SMALL YO + U\n  きゅう: 'kyū', // HIRAGANA LETTER KI + SMALL YU + U\n  きゃ: 'kya', // HIRAGANA LETTER KI + SMALL YA\n  きょ: 'kyo', // HIRAGANA LETTER KI + SMALL YO\n  きゅ: 'kyu', // HIRAGANA LETTER KI + SMALL YU\n  き: 'ki', // HIRAGANA LETTER KI\n  くう: 'kū', // HIRAGANA LETTER KU + U\n  く: 'ku', // HIRAGANA LETTER KU\n  け: 'ke', // HIRAGANA LETTER KE\n  こう: 'kō', // HIRAGANA LETTER KO + U\n  こ: 'ko', // HIRAGANA LETTER KO\n\n  しぇ: 'she', // HIRAGANA LETTER SI + SMALL E\n  すぃ: 'si', // HIRAGANA LETTER SU + SMALL I\n\n  さ: 'sa', // HIRAGANA LETTER SA\n  しょう: 'shō', // HIRAGANA LETTER SI + SMALL YO + U\n  しゅう: 'shū', // HIRAGANA LETTER SI + SMALL YU + U\n  しゃ: 'sha', // HIRAGANA LETTER SI + SMALL YA\n  しょ: 'sho', // HIRAGANA LETTER SI + SMALL YO\n  しゅ: 'shu', // HIRAGANA LETTER SI + SMALL YU\n  し: 'shi', // HIRAGANA LETTER SI\n  すう: 'sū', // HIRAGANA LETTER SU + U\n  す: 'su', // HIRAGANA LETTER SU\n  せ: 'se', // HIRAGANA LETTER SE\n  そう: 'sō', // HIRAGANA LETTER SO + U\n  そ: 'so', // HIRAGANA LETTER SO\n\n  ちぇ: 'che', // HIRAGANA LETTER TI + SMALL E\n  つぁ: 'tsa', // HIRAGANA LETTER TU + SMALL A\n  つぃ: 'tsi', // HIRAGANA LETTER TU + SMALL I\n  つぇ: 'tse', // HIRAGANA LETTER TU + SMALL E\n  つぉ: 'tso', // HIRAGANA LETTER TU + SMALL O\n  てぃ: 'ti', // HIRAGANA LETTER TE + SMALL I\n  でぃ: 'di', // HIRAGANA LETTER DE + SMALL I\n  てゅ: 'tyu', // HIRAGANA LETTER TE + SMALL YU\n  でゅ: 'dyu', // HIRAGANA LETTER DE + SMALL YU\n  とぃ: 'twi', // HIRAGANA LETTER TO + SMALL I\n  とぅ: 'tu', // HIRAGANA LETTER TO + SMALL U\n  どぃ: 'dwi', // HIRAGANA LETTER DO + SMALL I\n  どぅ: 'du', // HIRAGANA LETTER DO + SMALL U\n\n  た: 'ta', // HIRAGANA LETTER TA\n  ちょう: 'chō', // HIRAGANA LETTER TI + SMALL YO + U\n  ちゅう: 'chū', // HIRAGANA LETTER TI + SMALL YU + U\n  ちゃ: 'cha', // HIRAGANA LETTER TI + SMALL YA\n  ちょ: 'cho', // HIRAGANA LETTER TI + SMALL YO\n  ちゅ: 'chu', // HIRAGANA LETTER TI + SMALL YU\n  ち: 'chi', // HIRAGANA LETTER TI\n  つう: 'tsū', // HIRAGANA LETTER TU + U\n  つ: 'tsu', // HIRAGANA LETTER TU\n  て: 'te', // HIRAGANA LETTER TE\n  とう: 'tō', // HIRAGANA LETTER TO + U\n  と: 'to', // HIRAGANA LETTER TO\n\n  な: 'na', // HIRAGANA LETTER NA\n  にょう: 'nyō', // HIRAGANA LETTER NI + SMALL YO + U\n  にゅう: 'nyū', // HIRAGANA LETTER NI + SMALL YU + U\n  にゃ: 'nya', // HIRAGANA LETTER NI + SMALL YA\n  にょ: 'nyo', // HIRAGANA LETTER NI + SMALL YO\n  にゅ: 'nyu', // HIRAGANA LETTER NI + SMALL YU\n  に: 'ni', // HIRAGANA LETTER NI\n  ぬう: 'nū', // HIRAGANA LETTER NU + U\n  ぬ: 'nu', // HIRAGANA LETTER NU\n  ね: 'ne', // HIRAGANA LETTER NE\n  のう: 'nō', // HIRAGANA LETTER NO + U\n  の: 'no', // HIRAGANA LETTER NO\n\n  ふぁ: 'fa', // HIRAGANA LETTER HU + SMALL A\n  ふぃ: 'fi', // HIRAGANA LETTER HU + SMALL I\n  // 'ふぅ': 'fu', // HIRAGANA LETTER HU + SMALL U\n  ふぇ: 'fe', // HIRAGANA LETTER HU + SMALL E\n  ふぉ: 'fo', // HIRAGANA LETTER HU + SMALL O\n  ふゅ: 'fyu', // HIRAGANA LETTER HU + SMALL YU\n  ほぇ: 'hwe', // HIRAGANA LETTER HO + SMALL E\n\n  は: 'ha', // HIRAGANA LETTER HA\n  ひょう: 'hyō', // HIRAGANA LETTER HI + SMALL YO + U\n  ひゅう: 'hyū', // HIRAGANA LETTER HI + SMALL YU + U\n  ひゃ: 'hya', // HIRAGANA LETTER HI + SMALL YA\n  ひょ: 'hyo', // HIRAGANA LETTER HI + SMALL YO\n  ひゅ: 'hyu', // HIRAGANA LETTER HI + SMALL YU\n  ひ: 'hi', // HIRAGANA LETTER HI\n  ふう: 'fū', // HIRAGANA LETTER HU + U\n  ふ: 'fu', // HIRAGANA LETTER HU\n  へ: 'he', // HIRAGANA LETTER HE\n  ほう: 'hō', // HIRAGANA LETTER HO + U\n  ほ: 'ho', // HIRAGANA LETTER HO\n\n  ま: 'ma', // HIRAGANA LETTER MA\n  みょう: 'myō', // HIRAGANA LETTER MI + SMALL YO + U\n  みゅう: 'myū', // HIRAGANA LETTER MI + SMALL YU + U\n  みゃ: 'mya', // HIRAGANA LETTER MI + SMALL YA\n  みょ: 'myo', // HIRAGANA LETTER MI + SMALL YO\n  みゅ: 'myu', // HIRAGANA LETTER MI + SMALL YU\n  み: 'mi', // HIRAGANA LETTER MI\n  むう: 'mū', // HIRAGANA LETTER MU + U\n  む: 'mu', // HIRAGANA LETTER MU\n  め: 'me', // HIRAGANA LETTER ME\n  もう: 'mō', // HIRAGANA LETTER MO + U\n  も: 'mo', // HIRAGANA LETTER MO\n\n  や: 'ya', // HIRAGANA LETTER YA\n  ゆう: 'yū', // HIRAGANA LETTER YU + U\n  ゆ: 'yu', // HIRAGANA LETTER YU\n  よう: 'yō', // HIRAGANA LETTER YO + U\n  よ: 'yo', // HIRAGANA LETTER YO\n\n  りぇ: 'rye', // HIRAGANA LETTER RI + SMALL E\n\n  ら: 'ra', // HIRAGANA LETTER RA\n  りょう: 'ryō', // HIRAGANA LETTER RI + SMALL YO + U\n  りゅう: 'ryū', // HIRAGANA LETTER RI + SMALL YU + U\n  りゃ: 'rya', // HIRAGANA LETTER RI + SMALL YA\n  りょ: 'ryo', // HIRAGANA LETTER RI + SMALL YO\n  りゅ: 'ryu', // HIRAGANA LETTER RI + SMALL YU\n  り: 'ri', // HIRAGANA LETTER RI\n  るう: 'rū', // HIRAGANA LETTER RU + U\n  る: 'ru', // HIRAGANA LETTER RU\n  れ: 're', // HIRAGANA LETTER RE\n  ろう: 'rō', // HIRAGANA LETTER RO + U\n  ろ: 'ro', // HIRAGANA LETTER RO\n\n  わ: 'wa', // HIRAGANA LETTER WA\n  ゐ: 'i', // HIRAGANA LETTER WI\n  ゑ: 'e', // HIRAGANA LETTER WE\n  を: 'o', // HIRAGANA LETTER WO\n\n  ん: 'n', // HIRAGANA LETTER N\n\n  ぐぁ: 'gwa', // HIRAGANA LETTER GU + SMALL A\n  ぐぃ: 'gwi', // HIRAGANA LETTER GU + SMALL I\n  ぐぇ: 'gwe', // HIRAGANA LETTER GU + SMALL E\n  ぐぉ: 'gwo', // HIRAGANA LETTER GU + SMALL O\n\n  が: 'ga', // HIRAGANA LETTER GA\n  ぎょう: 'gyō', // HIRAGANA LETTER GI + SMALL YO + U\n  ぎゅう: 'gyū', // HIRAGANA LETTER GI + SMALL YU + U\n  ぎゃ: 'gya', // HIRAGANA LETTER GI + SMALL YA\n  ぎょ: 'gyo', // HIRAGANA LETTER GI + SMALL YO\n  ぎゅ: 'gyu', // HIRAGANA LETTER GI + SMALL YU\n  ぎ: 'gi', // HIRAGANA LETTER GI\n  ぐう: 'gū', // HIRAGANA LETTER GU + U\n  ぐ: 'gu', // HIRAGANA LETTER GU\n  げ: 'ge', // HIRAGANA LETTER GE\n  ごう: 'gō', // HIRAGANA LETTER GO + U\n  ご: 'go', // HIRAGANA LETTER GO\n\n  じぇ: 'je', // HIRAGANA LETTER ZI + SMALL E\n  ずぃ: 'zi', // HIRAGANA LETTER ZU + SMALL I\n\n  ざ: 'za', // HIRAGANA LETTER ZA\n  じょう: 'jō', // HIRAGANA LETTER ZI + SMALL YO + U\n  じゅう: 'jū', // HIRAGANA LETTER ZI + SMALL YU + U\n  じゃ: 'ja', // HIRAGANA LETTER ZI + SMALL YA\n  じょ: 'jo', // HIRAGANA LETTER ZI + SMALL YO\n  じゅ: 'ju', // HIRAGANA LETTER ZI + SMALL YU\n  じ: 'ji', // HIRAGANA LETTER ZI\n  ずう: 'zū', // HIRAGANA LETTER ZU + U\n  ず: 'zu', // HIRAGANA LETTER ZU\n  ぜ: 'ze', // HIRAGANA LETTER ZE\n  ぞう: 'zō', // HIRAGANA LETTER ZO + U\n  ぞ: 'zo', // HIRAGANA LETTER ZO\n\n  だ: 'da', // HIRAGANA LETTER DA\n  ぢ: 'ji', // HIRAGANA LETTER DI\n  づう: 'zū', // HIRAGANA LETTER DU + U\n  づ: 'zu', // HIRAGANA LETTER DU\n  で: 'de', // HIRAGANA LETTER DE\n  どう: 'dō', // HIRAGANA LETTER DO + U\n  ど: 'do', // HIRAGANA LETTER DO\n\n  ぶゅ: 'byu', // HIRAGANA LETTER BU + SMALL YU\n\n  ば: 'ba', // HIRAGANA LETTER BA\n  びょう: 'byō', // HIRAGANA LETTER BI + SMALL YO + U\n  びゅう: 'byū', // HIRAGANA LETTER BI + SMALL YU + U\n  びゃ: 'bya', // HIRAGANA LETTER BI + SMALL YA\n  びょ: 'byo', // HIRAGANA LETTER BI + SMALL YO\n  びゅ: 'byu', // HIRAGANA LETTER BI + SMALL YU\n  び: 'bi', // HIRAGANA LETTER BI\n  ぶう: 'bū', // HIRAGANA LETTER BU + U\n  ぶ: 'bu', // HIRAGANA LETTER BU\n  べ: 'be', // HIRAGANA LETTER BE\n  ぼう: 'bō', // HIRAGANA LETTER BO + U\n  ぼ: 'bo', // HIRAGANA LETTER BO\n\n  ぱ: 'pa', // HIRAGANA LETTER PA\n  ぴょう: 'pyō', // HIRAGANA LETTER PI + SMALL YO + U\n  ぴゅう: 'pyū', // HIRAGANA LETTER PI + SMALL YU + U\n  ぴゃ: 'pya', // HIRAGANA LETTER PI + SMALL YA\n  ぴょ: 'pyo', // HIRAGANA LETTER PI + SMALL YO\n  ぴゅ: 'pyu', // HIRAGANA LETTER PI + SMALL YU\n  ぴ: 'pi', // HIRAGANA LETTER PI\n  ぷう: 'pū', // HIRAGANA LETTER PU + U\n  ぷ: 'pu', // HIRAGANA LETTER PU\n  ぺ: 'pe', // HIRAGANA LETTER PE\n  ぽう: 'pō', // HIRAGANA LETTER PO + U\n  ぽ: 'po', // HIRAGANA LETTER PO\n\n  ゔ: 'v' // HIRAGANA LETTER VU\n}\n\nconst transliterationTable3 = {\n  aァ: 'ā',\n  aぁ: 'ā',\n  iィー: 'ī',\n  iィ: 'ī',\n  iぃー: 'ī',\n  iぃ: 'ī',\n  aー: 'ā',\n  iー: 'ī',\n  uー: 'ū',\n  eー: 'ē',\n  oー: 'ō',\n\n  // Fallback for small vowels\n  ァ: 'a',\n  ィ: 'i',\n  ゥ: 'u',\n  ェ: 'e',\n  ォ: 'o',\n  ぁ: 'a',\n  ぃ: 'i',\n  ぅ: 'u',\n  ぇ: 'e',\n  ぉ: 'o'\n}\n\nconst replace1 = replacer(transliterationTable1)\nconst replace2 = replacer(transliterationTable2)\nconst replace3 = replacer(transliterationTable3)\n\nmodule.exports = function (str) {\n  str = replace1(str)\n\n  str = str\n    .replace(/ッ(?=[ン])/g, 'n')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[ん])/g, 'n')// HIRAGANA LETTER SMALL TU\n    .replace(/ン(?=[バビブベボパピプペポマミムメモ])/g, 'm')// KATAKANA LETTER N\n    .replace(/ん(?=[ばびぶべぼぱぴぷぺぽまみむめも])/g, 'm')// HIRAGANA LETTER N\n    .replace(/ン(?=[ヤユヨアイウエオ])/g, \"n'\")// KATAKANA LETTER N\n    .replace(/ん(?=[やゆよあいうえお])/g, \"n'\")// HIRAGANA LETTER N\n  str = str\n    .replace(/ッ(?=[カキクケコ])/g, 'k')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[かきくけこ])/g, 'k')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ガギグゲゴ])/g, 'g')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[がぎぐげご])/g, 'g')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[サシスセソ])/g, 's')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[さしすせそ])/g, 's')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ザズゼゾ])/g, 'z')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[ざずぜぞ])/g, 'z')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ジ])/g, 'j')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[じ])/g, 'j')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[タチツテト])/g, 't')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[たちつてと])/g, 't')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ダヂヅデド])/g, 't')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[だぢづでど])/g, 't')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ハヒヘホ])/g, 'h')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[はひへほ])/g, 'h')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[フ])/g, 'f')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[ふ])/g, 'f')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[バビブベボ])/g, 'b')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[ばびぶべぼ])/g, 'b')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[パピプペポ])/g, 'p')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[ぱぴぷぺぽ])/g, 'p')// HIRAGANA LETTER SMALL TU\n    .replace(/ッ(?=[ラリルレロ])/g, 'r')// KATAKANA LETTER SMALL TU\n    .replace(/っ(?=[らりるれろ])/g, 'r')// HIRAGANA LETTER SMALL TU\n\n  str = replace2(str)\n  str = replace3(str)\n\n  str = str\n    .replace(/(ッ|っ)\\B/g, 't')// FINAL KATAKANA LETTER SMALL TU\n\n  return str\n}\n"
  },
  {
    "path": "lib/natural/trie/index.d.ts",
    "content": "/*\nCopyright (c) 2022, Dylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport class Trie {\n  constructor (caseSensitive?: boolean)\n  addString (string: string): boolean\n  addStrings (list: string[]): void\n  contains (string: string): boolean\n  findPrefix (search: string): Array<string | null>\n  findMatchesOnPath (search: string): string[]\n  keysWithPrefix (prefix: string): string[]\n  getSize (): number\n}\n"
  },
  {
    "path": "lib/natural/trie/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.Trie = require('./trie')\n"
  },
  {
    "path": "lib/natural/trie/trie.js",
    "content": "/*\nCopyright (c) 2014 Ken Koch\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/**\n * The basis of the TRIE structure.\n **/\nclass Trie {\n  constructor (caseSensitive) {\n    this.dictionary = Object.create(null) // {}\n    this.$ = false\n\n    if (typeof caseSensitive === 'undefined') {\n      caseSensitive = true\n    }\n\n    this.cs = caseSensitive\n  }\n\n  /**\n   * Add a single string to the TRIE, returns true if the word was already in the\n   * trie.\n   **/\n  addString (string) {\n    if (this.cs === false) {\n      string = string.toLowerCase()\n    }\n\n    // If the string has only one letter, mark this as a word.\n    if (string.length === 0) {\n      const wasWord = this.$\n      this.$ = true\n      return wasWord\n    }\n\n    // Make sure theres a Trie node in our dictionary\n    let next = this.dictionary[string[0]]\n\n    if (!next) {\n      this.dictionary[string[0]] = new Trie(this.cs)\n      next = this.dictionary[string[0]]\n    }\n\n    // Continue adding the string\n    return next.addString(string.substring(1))\n  }\n\n  /**\n   * Add multiple strings to the TRIE\n   **/\n  addStrings (list) {\n    for (const i in list) {\n      this.addString(list[i])\n    }\n  }\n\n  /**\n   * A function to search the TRIE and return an array of\n   * words which have same prefix <prefix>\n   * for example if we had the following words in our database:\n   * a, ab, bc, cd, abc, abd\n   * and we search the string: a\n   * we will get :\n   * [a, ab, abc, abd]\n   **/\n  keysWithPrefix (prefix) {\n    if (this.caseSensitive === false) {\n      prefix = prefix.toLowerCase()\n    }\n\n    function isEmpty (object) {\n      for (const key in object) if (object[key]) return false\n      return true\n    }\n\n    function get (node, word) {\n      if (!node) return null\n      if (word.length === 0) return node\n      return get(node.dictionary[word[0]], word.substring(1))\n    }\n\n    function recurse (node, stringAgg, resultsAgg) {\n      if (!node) return\n\n      // Check if this is a word\n      if (node.$) {\n        resultsAgg.push(stringAgg)\n      }\n\n      if (isEmpty(node.dictionary)) {\n        return\n      }\n\n      for (const c in node.dictionary) {\n        recurse(node.dictionary[c], stringAgg + c, resultsAgg)\n      }\n    }\n\n    const results = []\n    recurse(get(this, prefix), prefix, results)\n    return results\n  }\n\n  /**\n   * A function to search the given string and return true if it lands\n   * on on a word. Essentially testing if the word exists in the database.\n   **/\n  contains (string) {\n    if (this.cs === false) {\n      string = string.toLowerCase()\n    }\n\n    if (string.length === 0) {\n      return this.$\n    }\n\n    // Otherwise, we need to continue searching\n    const firstLetter = string[0]\n    const next = this.dictionary[firstLetter]\n\n    // If we don't have a node, this isn't a word\n    if (!next) {\n      return false\n    }\n\n    // Otherwise continue the search at the next node\n    return next.contains(string.substring(1))\n  }\n\n  /**\n   * A function to search the TRIE and return an array of words which were encountered along the way.\n   * This will only return words with full prefix matches.\n   * for example if we had the following words in our database:\n   * a, ab, bc, cd, abc\n   * and we searched the string: abcd\n   * we would get only:\n   * [a, ab, abc]\n   **/\n  findMatchesOnPath (search) {\n    if (this.cs === false) {\n      search = search.toLowerCase()\n    }\n\n    function recurse (node, search, stringAgg, resultsAgg) {\n      // Check if this is a word.\n      if (node.$) {\n        resultsAgg.push(stringAgg)\n      }\n\n      // Check if the have completed the seearch\n      if (search.length === 0) {\n        return resultsAgg\n      }\n\n      // Otherwise, continue searching\n      const next = node.dictionary[search[0]]\n      if (!next) {\n        return resultsAgg\n      }\n      return recurse(next, search.substring(1), stringAgg + search[0], resultsAgg)\n    };\n\n    return recurse(this, search, '', [])\n  }\n\n  /**\n   * Returns the longest match and the remaining part that could not be matched.\n   * inspired by [NLTK containers.trie.find_prefix](http://nltk.googlecode.com/svn-/trunk/doc/api/nltk.containers.Trie-class.html).\n   **/\n  findPrefix (search) {\n    if (this.cs === false) {\n      search = search.toLowerCase()\n    }\n\n    function recurse (node, search, stringAgg, lastWord) {\n      // Check if this is a word\n      if (node.$) {\n        lastWord = stringAgg\n      }\n\n      // Check if we have no more to search\n      if (search.length === 0) {\n        return [lastWord, search]\n      }\n\n      // Continue searching\n      const next = node.dictionary[search[0]]\n      if (!next) {\n        return [lastWord, search]\n      }\n      return recurse(next, search.substring(1), stringAgg + search[0], lastWord)\n    };\n\n    return recurse(this, search, '', null)\n  }\n\n  /**\n   * Computes the number of actual nodes from this node to the end.\n   * Note: This involves traversing the entire structure and may not be\n   * good for frequent use.\n   **/\n  getSize () {\n    let total = 1\n    for (const c in this.dictionary) {\n      total += this.dictionary[c].getSize()\n    }\n    return total\n  }\n}\n\n/**\n * EXPORT THE TRIE\n **/\nmodule.exports = Trie\n"
  },
  {
    "path": "lib/natural/util/abbreviations_en.js",
    "content": "const knownAbbreviations = [\n  'approx.',\n  'appt.',\n  'apt.',\n  'A.S.A.P.',\n  'B.Y.O.B.',\n  'c/o',\n  'dept.',\n  'D.I.Y.',\n  'Dr.',\n  'e.g.',\n  'est.',\n  'E.T.A.',\n  'Inc.',\n  'min.',\n  'misc.',\n  'Mr.',\n  'Mrs.',\n  'no.',\n  'R.S.V.P.',\n  'tel.',\n  'temp.',\n  'vet.',\n  'vs.',\n  'i.e.'\n]\n\nexports.knownAbbreviations = knownAbbreviations\n"
  },
  {
    "path": "lib/natural/util/abbreviations_es.js",
    "content": "const knownAbbreviations = [\n  // Titles (Sir, Doctor, etc)\n  'Sr.', 'Sra.', 'Srta.', 'Srs.', 'Sras.', 'Dr.', 'Dra.', 'Drs.', 'Dras.',\n  'Lic.', 'Licda.', 'Licdo.', 'Licds.', 'Ings.', 'Ing.', 'Arq.', 'Arqs.', 'Prof.', 'Profa.', 'Profs.', 'Profas.',\n\n  // Generals\n  'etc.', 'e.g.', 'i.e.', 'p.ej.', 'p.e.', 'a.m.', 'p.m.',\n  'núm.', 'núms.', 'n.os', 'n.os.', 'ud.', 'uds.',\n  'c/ap.', 'c/u.', 's/n.', 'av.', 'pto.', 'ptos.', 'pág.', 'págs.', 'vol.', 'vols.', 'ed.', 'eds.', 'cap.', 'caps.',\n  'mín.', 'máx.', 'aprox.', 'ant.', 'sig.', 'hist.', 'biol.', 'quím.', 'mat.', 'psic.',\n  'adj.', 'adv.', 'art.', 'arts.', 'vb.', 'vbs.', 'sust.', 'susts.', 'prep.', 'preps.',\n\n  // Legal written in Spanish\n  'Art.', 'Arts.', 'Inc.', 'Incs.', 'const.', 'Cód.', 'Códs.',\n  'C.C.', 'C.P.', 'C.N.', 'DNU.', 'DTO.', 'Res.', 'Disp.', 'Disps.', 'C.P.C.C.', 'C.C.Y.C.',\n  'expte.', 'exptes.', 'fs.', 'fjs.', 'op.', 'cf.', 'cit.', 'loc. cit.', 'ut supra.', 'vgr.', 'ap.', 'cfr.', 'ss.',\n\n  // Latin-legal written in Spanish\n  'et al.', 'ibid.', 'ibíd.', 'op. cit.', 'loc. cit.', 'id.', 'vs.', 'a priori.', 'a posteriori.', 'sine die.'\n]\n\nexports.knownAbbreviations = knownAbbreviations\n"
  },
  {
    "path": "lib/natural/util/bag.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nclass Bag {\n  constructor () {\n    this.dictionary = []\n    this.nElement = 0\n  }\n\n  add (element) {\n    this.dictionary.push(element)\n    this.nElement++\n    return this\n  }\n\n  isEmpty () {\n    return this.nElement > 0\n  }\n\n  contains (item) {\n    return this.dictionary.indexOf(item) >= 0\n  }\n\n  /**\n   * unpack the bag , and get all items\n  */\n  unpack () {\n    // return a copy is better than original\n    return this.dictionary.slice()\n  }\n}\n\nmodule.exports = Bag\n"
  },
  {
    "path": "lib/natural/util/directed_edge.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst util = require('util')\n\nclass DirectedEdge {\n  constructor (start, end, weight) {\n    this.start = start\n    this.end = end\n    this.weight = weight\n  }\n\n  weight () {\n    return this.weight\n  }\n\n  from () {\n    return this.start\n  }\n\n  to () {\n    return this.end\n  }\n\n  toString () {\n    return util.format('%s -> %s, %s', this.start, this.end, this.weight)\n  }\n}\n\nmodule.exports = DirectedEdge\n"
  },
  {
    "path": "lib/natural/util/edge_weighted_digraph.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst Bag = require('./bag')\nconst DirectedEdge = require('./directed_edge')\n\nclass EdgeWeightedDigraph {\n  constructor () {\n    this.edgesNum = 0\n    this.adj = [] // adjacency list\n  }\n\n  /**\n   * the number of vertexs saved.\n   */\n  v () {\n    return this.adj.length\n  }\n\n  /**\n   * the number of edges saved.\n   */\n  e () {\n    return this.edgesNum\n  }\n\n  add (start, end, weight) {\n    const e = new DirectedEdge(start, end, weight)\n    this.addEdge(e)\n  }\n\n  addEdge (e) {\n    if (!this.adj[e.from()]) {\n      this.adj[e.from()] = new Bag()\n    }\n    this.adj[e.from()].add(e)\n    this.edgesNum++\n  }\n\n  /**\n   * use callback on all edges from v.\n   */\n  getAdj (v) {\n    if (!this.adj[v]) return []\n    return this.adj[v].unpack()\n  }\n\n  /**\n   * use callback on all edges.\n   */\n  edges () {\n    const adj = this.adj\n    const list = new Bag()\n    for (const i in adj) {\n      adj[i].unpack().forEach(function (item) {\n        list.add(item)\n      })\n    }\n    return list.unpack()\n  }\n\n  toString () {\n    const result = []\n    const list = this.edges()\n    list.forEach(function (edge) {\n      result.push(edge.toString())\n    })\n    return result.join('\\n')\n  }\n}\n\nmodule.exports = EdgeWeightedDigraph\n"
  },
  {
    "path": "lib/natural/util/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nDylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport let stopwords: string[]\n\nexport let abbreviations: string[]\nexport let abbreviationsEs: string[]\n\ndeclare class Bag<T> {\n  add (element: T): Bag<T>\n  isEmpty (): boolean\n  contains (item: T): boolean\n  unpack (): T[]\n}\n\ndeclare class DirectedEdge {\n  constructor (start: number, end: number, weight: number)\n  weight (): number\n  from (): number\n  to (): number\n  toString (): string\n}\n\nexport class EdgeWeightedDigraph {\n  edgesNum: number\n  adj: Array<Bag<DirectedEdge>>\n\n  add (start: number, end: number, weight: number): void\n  addEdge (e: DirectedEdge): void\n  v (): number\n  e (): number\n  getAdj (v: number): DirectedEdge[]\n  edges (): DirectedEdge[]\n  toString (): string\n}\n\nexport class ShortestPathTree {\n  constructor (diagraph: EdgeWeightedDigraph, start: number)\n  relaxEdge (e: DirectedEdge): void\n  relaxVertex (digraph: EdgeWeightedDigraph, vertex: number, tree: ShortestPathTree): void\n  getDistTo (vertex: number): number\n  hasPathTo (vertex: number): boolean\n  pathTo (vertex: number): number[]\n}\n\nexport class LongestPathTree {\n  constructor (diagraph: EdgeWeightedDigraph, start: number)\n  relaxEdge (e: DirectedEdge): void\n  relaxVertex (digraph: EdgeWeightedDigraph, vertex: number, tree: LongestPathTree): void\n  getDistTo (vertex: number): number\n  hasPathTo (vertex: number): boolean\n  pathTo (vertex: number): number[]\n}\n\nexport class Topological {\n  constructor (digraph: EdgeWeightedDigraph)\n  isDAG (): boolean\n  order (): number[]\n}\n\nexport * from './storage'\n"
  },
  {
    "path": "lib/natural/util/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.stopwords = require('./stopwords').words\nexports.abbreviations = require('./abbreviations_en').knownAbbreviations\nexports.abbreviations_es = require('./abbreviations_es').knownAbbreviations\nexports.ShortestPathTree = require('./shortest_path_tree')\nexports.LongestPathTree = require('./longest_path_tree')\nexports.DirectedEdge = require('./directed_edge')\nexports.EdgeWeightedDigraph = require('./edge_weighted_digraph')\nexports.Topological = require('./topological')\nexports.StorageBackend = require('./storage')\n"
  },
  {
    "path": "lib/natural/util/longest_path_tree.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// const EdgeWeightedDigraph = require('./edge_weighted_digraph')\nconst Topological = require('./topological')\n\n/**\n  *  The LongestPathTree represents a data type for solving the\n  *  single-source longest paths problem in edge-weighted directed\n  *  acyclic graphs (DAGs). The edge weights can be positive, negative, or zero.\n  *  This implementation uses a topological-sort based algorithm.\n  *  the distTo() and hasPathTo() methods take\n  *  constant time and the pathTo() method takes time proportional to the\n  *  number of edges in the longest path returned.\n  */\nclass LongestPathTree {\n  constructor (digraph, start) {\n    const _this = this\n    this.edgeTo = []\n    this.distTo = []\n    this.distTo[start] = 0.0\n    this.start = start\n    this.top = new Topological(digraph)\n    this.top.order().forEach(function (vertex) {\n      _this.relaxVertex(digraph, vertex, _this)\n    })\n  }\n\n  relaxEdge (e) {\n    const distTo = this.distTo\n    const edgeTo = this.edgeTo\n    const v = e.from(); const w = e.to()\n    if (distTo[w] < distTo[v] + e.weight) {\n      distTo[w] = distTo[v] + e.weight\n      edgeTo[w] = e\n    }\n  }\n\n  /**\n   * relax a vertex v in the specified digraph g\n   * @param {EdgeWeightedDigraph} the apecified digraph\n   * @param {Vertex} v vertex to be relaxed\n   */\n  relaxVertex (digraph, vertex, tree) {\n    const distTo = tree.distTo\n    const edgeTo = tree.edgeTo\n\n    digraph.getAdj(vertex).forEach(function (edge) {\n      const w = edge.to()\n      distTo[w] = distTo[w] || 0.0\n      distTo[vertex] = distTo[vertex] || 0.0\n      if (distTo[w] < distTo[vertex] + edge.weight) {\n        // in case of the result of 0.28+0.34 is 0.62000001\n        distTo[w] = parseFloat((distTo[vertex] + edge.weight).toFixed(2))\n        edgeTo[w] = edge\n      }\n    })\n  }\n\n  getDistTo (v) {\n    return this.distTo[v]\n  }\n\n  hasPathTo (v) {\n    return !!this.distTo[v]\n  }\n\n  pathTo (v) {\n    if (!this.hasPathTo(v)) return []\n    const path = []\n    const edgeTo = this.edgeTo\n    for (let e = edgeTo[v]; e; e = edgeTo[e.from()]) {\n      path.push(e.to())\n    }\n    path.push(this.start)\n    return path.reverse()\n  }\n}\n\nmodule.exports = LongestPathTree\n"
  },
  {
    "path": "lib/natural/util/shortest_path_tree.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// const EdgeWeightedDigraph = require('./edge_weighted_digraph')\nconst Topological = require('./topological')\n\n/**\n  *  The ShortestPathTree represents a data type for solving the\n  *  single-source shortest paths problem in edge-weighted directed\n  *  acyclic graphs (DAGs). The edge weights can be positive, negative, or zero.\n  *  This implementation uses a topological-sort based algorithm.\n  *  the distTo() and hasPathTo() methods take\n  *  constant time and the pathTo() method takes time proportional to the\n  *  number of edges in the longest path returned.\n  */\nclass ShortestPathTree {\n  constructor (digraph, start) {\n    const _this = this\n    this.edgeTo = []\n    this.distTo = []\n    this.distTo[start] = 0.0\n    this.start = start\n    this.top = new Topological(digraph)\n    this.top.order().forEach(function (vertex) {\n      _this.relaxVertex(digraph, vertex, _this)\n    })\n  }\n\n  relaxEdge (e) {\n    const distTo = this.distTo\n    const edgeTo = this.edgeTo\n    const v = e.from(); const w = e.to()\n    if (distTo[w] > distTo[v] + e.weight) {\n      distTo[w] = distTo[v] + e.weight\n      edgeTo[w] = e\n    }\n  }\n\n  /**\n   * relax a vertex v in the specified digraph g\n   * @param {EdgeWeightedDigraph} the apecified digraph\n   * @param {Vertex} v vertex to be relaxed\n   */\n  relaxVertex (digraph, vertex, tree) {\n    const distTo = tree.distTo\n    const edgeTo = tree.edgeTo\n    digraph.getAdj(vertex).forEach(function (edge) {\n      const w = edge.to()\n      distTo[w] = /\\d/.test(distTo[w]) ? distTo[w] : Number.MAX_VALUE\n      distTo[vertex] = distTo[vertex] || 0\n      if (distTo[w] > distTo[vertex] + edge.weight) {\n        // in case of the result of 0.28+0.34 is 0.62000001\n        distTo[w] = parseFloat((distTo[vertex] + edge.weight).toFixed(2))\n        edgeTo[w] = edge\n      }\n    })\n  }\n\n  getDistTo (v) {\n    return this.distTo[v]\n  }\n\n  hasPathTo (v) {\n    const dist = this.distTo[v]\n    if (v === this.start) return false\n    return /\\d/.test(dist) ? dist !== Number.MAX_VALUE : false\n  }\n\n  pathTo (v) {\n    if (!this.hasPathTo(v) || v === this.start) return []\n    const path = []\n    const edgeTo = this.edgeTo\n    for (let e = edgeTo[v]; e; e = edgeTo[e.from()]) {\n      path.push(e.to())\n    }\n    path.push(this.start)\n    return path.reverse()\n  }\n}\n\nmodule.exports = ShortestPathTree\n"
  },
  {
    "path": "lib/natural/util/stopwords.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'about', 'above', 'after', 'again', 'all', 'also', 'am', 'an', 'and', 'another',\n  'any', 'are', 'as', 'at', 'be', 'because', 'been', 'before', 'being', 'below',\n  'between', 'both', 'but', 'by', 'came', 'can', 'cannot', 'come', 'could', 'did',\n  'do', 'does', 'doing', 'during', 'each', 'few', 'for', 'from', 'further', 'get',\n  'got', 'has', 'had', 'he', 'have', 'her', 'here', 'him', 'himself', 'his', 'how',\n  'if', 'in', 'into', 'is', 'it', 'its', 'itself', 'like', 'make', 'many', 'me',\n  'might', 'more', 'most', 'much', 'must', 'my', 'myself', 'never', 'now', 'of', 'on',\n  'only', 'or', 'other', 'our', 'ours', 'ourselves', 'out', 'over', 'own',\n  'said', 'same', 'see', 'she', 'should', 'since', 'so', 'some', 'still', 'such', 'take', 'than',\n  'that', 'the', 'their', 'theirs', 'them', 'themselves', 'then', 'there', 'these', 'they',\n  'this', 'those', 'through', 'to', 'too', 'under', 'until', 'up', 'very', 'was',\n  'way', 'we', 'well', 'were', 'what', 'where', 'when', 'which', 'while', 'who',\n  'whom', 'with', 'would', 'why', 'you', 'your', 'yours', 'yourself',\n  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',\n  'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '$', '1',\n  '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_es.js",
    "content": "/*\nCopyright (c) 2011, David Przybilla, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'a', 'un', 'el', 'ella', 'y', 'sobre', 'de', 'la', 'que', 'en',\n  'los', 'del', 'se', 'las', 'por', 'un', 'para', 'con', 'no',\n  'una', 'su', 'al', 'lo', 'como', 'más', 'pero', 'sus', 'le',\n  'ya', 'o', 'porque', 'cuando', 'muy', 'sin', 'sobre', 'también',\n  'me', 'hasta', 'donde', 'quien', 'desde', 'nos', 'durante', 'uno',\n  'ni', 'contra', 'ese', 'eso', 'mí', 'qué', 'otro', 'él', 'cual',\n  'poco', 'mi', 'tú', 'te', 'ti', 'sí',\n  '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_fa.js",
    "content": "/*\r\nCopyright (c) 2011, Chris Umbel\r\nFarsi Stop Words by Fardin Koochaki <me@fardinak.com>\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\n// a list of commonly used words that have little meaning and can be excluded\r\n// from analysis.\r\nconst words = [\r\n  // Words\r\n  'از', 'با', 'یه', 'برای', 'و', 'باید', 'شاید',\r\n\r\n  // Symbols\r\n  '؟', '!', '٪', '.', '،', '؛', ':', ';', ',',\r\n\r\n  // Numbers\r\n  '۱', '۲', '۳', '۴', '۵', '۶', '۷', '۸', '۹', '۰'\r\n]\r\n\r\n// tell the world about the noise words.\r\nexports.words = words\r\n"
  },
  {
    "path": "lib/natural/util/stopwords_fr.js",
    "content": "/*\n Copyright (c) 2014, Ismaël Héry\n\n Permission is hereby granted, free of charge, to any person obtaining a copy\n of this software and associated documentation files (the \"Software\"), to deal\n in the Software without restriction, including without limitation the rights\n to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n copies of the Software, and to permit persons to whom the Software is\n furnished to do so, subject to the following conditions:\n\n The above copyright notice and this permission notice shall be included in\n all copies or substantial portions of the Software.\n\n THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\n THE SOFTWARE.\n */\n\n// A list of commonly used french words that have little meaning and can be excluded\n// from analysis.\n\n'use strict'\n\nconst words = ['être', 'avoir', 'faire',\n  'a',\n  'au',\n  'aux',\n  'avec',\n  'ce',\n  'ces',\n  'dans',\n  'de',\n  'des',\n  'du',\n  'elle',\n  'en',\n  'et',\n  'eux',\n  'il',\n  'je',\n  'la',\n  'le',\n  'leur',\n  'lui',\n  'ma',\n  'mais',\n  'me',\n  'même',\n  'mes',\n  'moi',\n  'mon',\n  'ne',\n  'nos',\n  'notre',\n  'nous',\n  'on',\n  'ou',\n  'où',\n  'par',\n  'pas',\n  'pour',\n  'qu',\n  'que',\n  'qui',\n  'sa',\n  'se',\n  'ses',\n  'son',\n  'sur',\n  'ta',\n  'te',\n  'tes',\n  'toi',\n  'ton',\n  'tu',\n  'un',\n  'une',\n  'vos',\n  'votre',\n  'vous',\n  'c',\n  'd',\n  'j',\n  'l',\n  'à',\n  'm',\n  'n',\n  's',\n  't',\n  'y',\n  'été',\n  'étée',\n  'étées',\n  'étés',\n  'étant',\n  'suis',\n  'es',\n  'est',\n  'sommes',\n  'êtes',\n  'sont',\n  'serai',\n  'seras',\n  'sera',\n  'serons',\n  'serez',\n  'seront',\n  'serais',\n  'serait',\n  'serions',\n  'seriez',\n  'seraient',\n  'étais',\n  'était',\n  'étions',\n  'étiez',\n  'étaient',\n  'fus',\n  'fut',\n  'fûmes',\n  'fûtes',\n  'furent',\n  'sois',\n  'soit',\n  'soyons',\n  'soyez',\n  'soient',\n  'fusse',\n  'fusses',\n  'fût',\n  'fussions',\n  'fussiez',\n  'fussent',\n  'ayant',\n  'eu',\n  'eue',\n  'eues',\n  'eus',\n  'ai',\n  'as',\n  'avons',\n  'avez',\n  'ont',\n  'aurai',\n  'auras',\n  'aura',\n  'aurons',\n  'aurez',\n  'auront',\n  'aurais',\n  'aurait',\n  'aurions',\n  'auriez',\n  'auraient',\n  'avais',\n  'avait',\n  'avions',\n  'aviez',\n  'avaient',\n  'eut',\n  'eûmes',\n  'eûtes',\n  'eurent',\n  'aie',\n  'aies',\n  'ait',\n  'ayons',\n  'ayez',\n  'aient',\n  'eusse',\n  'eusses',\n  'eût',\n  'eussions',\n  'eussiez',\n  'eussent',\n  'ceci',\n  'cela',\n  'cet',\n  'cette',\n  'ici',\n  'ils',\n  'les',\n  'leurs',\n  'quel',\n  'quels',\n  'quelle',\n  'quelles',\n  'sans',\n  'soi'\n]\n\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_id.js",
    "content": "/*\nCopyright (c) 2017, Alif Bhaskoro, Andy Librian, R. Kukuh (Reimplemented from https://github.com/sastrawi/sastrawi)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n\n'use strict'\n\nconst words =\n  ['a', 'ada', 'adalah', 'adanya', 'adapun', 'agak', 'agaknya', 'agar', 'akan', 'akankah', 'akhir',\n    'akhiri', 'akhirnya', 'aku', 'akulah', 'amat', 'amatlah', 'anda', 'andalah', 'antar', 'antara',\n    'antaranya', 'apa', 'apaan', 'apabila', 'apakah', 'apalagi', 'apatah', 'arti', 'artinya', 'asal',\n    'asalkan', 'atas', 'atau', 'ataukah', 'ataupun', 'awal', 'awalnya', 'b', 'bagai', 'bagaikan',\n    'bagaimana', 'bagaimanakah', 'bagaimanapun', 'bagainamakah', 'bagi', 'bagian', 'bahkan', 'bahwa',\n    'bahwasannya', 'bahwasanya', 'baik', 'baiklah', 'bakal', 'bakalan', 'balik', 'banyak', 'bapak',\n    'baru', 'bawah', 'beberapa', 'begini', 'beginian', 'beginikah', 'beginilah', 'begitu', 'begitukah',\n    'begitulah', 'begitupun', 'bekerja', 'belakang', 'belakangan', 'belum', 'belumlah', 'benar',\n    'benarkah', 'benarlah', 'berada', 'berakhir', 'berakhirlah', 'berakhirnya', 'berapa', 'berapakah',\n    'berapalah', 'berapapun', 'berarti', 'berawal', 'berbagai', 'berdatangan', 'beri', 'berikan',\n    'berikut', 'berikutnya', 'berjumlah', 'berkali-kali', 'berkata', 'berkehendak', 'berkeinginan',\n    'berkenaan', 'berlainan', 'berlalu', 'berlangsung', 'berlebihan', 'bermacam', 'bermacam-macam',\n    'bermaksud', 'bermula', 'bersama', 'bersama-sama', 'bersiap', 'bersiap-siap', 'bertanya',\n    'bertanya-tanya', 'berturut', 'berturut-turut', 'bertutur', 'berujar', 'berupa', 'besar',\n    'betul', 'betulkah', 'biasa', 'biasanya', 'bila', 'bilakah', 'bisa', 'bisakah', 'boleh', 'bolehkah',\n    'bolehlah', 'buat', 'bukan', 'bukankah', 'bukanlah', 'bukannya', 'bulan', 'bung', 'c', 'cara',\n    'caranya', 'cukup', 'cukupkah', 'cukuplah', 'cuma', 'd', 'dahulu', 'dalam', 'dan', 'dapat', 'dari',\n    'daripada', 'datang', 'dekat', 'demi', 'demikian', 'demikianlah', 'dengan', 'depan', 'di', 'dia',\n    'diakhiri', 'diakhirinya', 'dialah', 'diantara', 'diantaranya', 'diberi', 'diberikan', 'diberikannya',\n    'dibuat', 'dibuatnya', 'didapat', 'didatangkan', 'digunakan', 'diibaratkan', 'diibaratkannya',\n    'diingat', 'diingatkan', 'diinginkan', 'dijawab', 'dijelaskan', 'dijelaskannya', 'dikarenakan',\n    'dikatakan', 'dikatakannya', 'dikerjakan', 'diketahui', 'diketahuinya', 'dikira', 'dilakukan',\n    'dilalui', 'dilihat', 'dimaksud', 'dimaksudkan', 'dimaksudkannya', 'dimaksudnya', 'diminta',\n    'dimintai', 'dimisalkan', 'dimulai', 'dimulailah', 'dimulainya', 'dimungkinkan', 'dini', 'dipastikan',\n    'diperbuat', 'diperbuatnya', 'dipergunakan', 'diperkirakan', 'diperlihatkan', 'diperlukan',\n    'diperlukannya', 'dipersoalkan', 'dipertanyakan', 'dipunyai', 'diri', 'dirinya', 'disampaikan',\n    'disebut', 'disebutkan', 'disebutkannya', 'disini', 'disinilah', 'ditambahkan', 'ditandaskan',\n    'ditanya', 'ditanyai', 'ditanyakan', 'ditegaskan', 'ditujukan', 'ditunjuk', 'ditunjuki', 'ditunjukkan',\n    'ditunjukkannya', 'ditunjuknya', 'dituturkan', 'dituturkannya', 'diucapkan', 'diucapkannya',\n    'diungkapkan', 'dong', 'dua', 'dulu', 'e', 'empat', 'enak', 'enggak', 'enggaknya', 'entah', 'entahlah',\n    'f', 'g', 'guna', 'gunakan', 'h', 'hadap', 'hai', 'hal', 'halo', 'hallo', 'hampir', 'hanya', 'hanyalah',\n    'hari', 'harus', 'haruslah', 'harusnya', 'helo', 'hello', 'hendak', 'hendaklah', 'hendaknya', 'hingga',\n    'i', 'ia', 'ialah', 'ibarat', 'ibaratkan', 'ibaratnya', 'ibu', 'ikut', 'ingat', 'ingat-ingat', 'ingin',\n    'inginkah', 'inginkan', 'ini', 'inikah', 'inilah', 'itu', 'itukah', 'itulah', 'j', 'jadi', 'jadilah',\n    'jadinya', 'jangan', 'jangankan', 'janganlah', 'jauh', 'jawab', 'jawaban', 'jawabnya', 'jelas',\n    'jelaskan', 'jelaslah', 'jelasnya', 'jika', 'jikalau', 'juga', 'jumlah', 'jumlahnya', 'justru',\n    'k', 'kadar', 'kala', 'kalau', 'kalaulah', 'kalaupun', 'kali', 'kalian', 'kami', 'kamilah', 'kamu',\n    'kamulah', 'kan', 'kapan', 'kapankah', 'kapanpun', 'karena', 'karenanya', 'kasus', 'kata', 'katakan',\n    'katakanlah', 'katanya', 'ke', 'keadaan', 'kebetulan', 'kecil', 'kedua', 'keduanya', 'keinginan',\n    'kelamaan', 'kelihatan', 'kelihatannya', 'kelima', 'keluar', 'kembali', 'kemudian', 'kemungkinan',\n    'kemungkinannya', 'kena', 'kenapa', 'kepada', 'kepadanya', 'kerja', 'kesampaian', 'keseluruhan',\n    'keseluruhannya', 'keterlaluan', 'ketika', 'khusus', 'khususnya', 'kini', 'kinilah', 'kira',\n    'kira-kira', 'kiranya', 'kita', 'kitalah', 'kok', 'kurang', 'l', 'lagi', 'lagian', 'lah', 'lain',\n    'lainnya', 'laku', 'lalu', 'lama', 'lamanya', 'langsung', 'lanjut', 'lanjutnya', 'lebih', 'lewat',\n    'lihat', 'lima', 'luar', 'm', 'macam', 'maka', 'makanya', 'makin', 'maksud', 'malah', 'malahan',\n    'mampu', 'mampukah', 'mana', 'manakala', 'manalagi', 'masa', 'masalah', 'masalahnya', 'masih',\n    'masihkah', 'masing', 'masing-masing', 'masuk', 'mata', 'mau', 'maupun', 'melainkan', 'melakukan',\n    'melalui', 'melihat', 'melihatnya', 'memang', 'memastikan', 'memberi', 'memberikan', 'membuat',\n    'memerlukan', 'memihak', 'meminta', 'memintakan', 'memisalkan', 'memperbuat', 'mempergunakan',\n    'memperkirakan', 'memperlihatkan', 'mempersiapkan', 'mempersoalkan', 'mempertanyakan', 'mempunyai',\n    'memulai', 'memungkinkan', 'menaiki', 'menambahkan', 'menandaskan', 'menanti', 'menanti-nanti',\n    'menantikan', 'menanya', 'menanyai', 'menanyakan', 'mendapat', 'mendapatkan', 'mendatang', 'mendatangi',\n    'mendatangkan', 'menegaskan', 'mengakhiri', 'mengapa', 'mengatakan', 'mengatakannya', 'mengenai',\n    'mengerjakan', 'mengetahui', 'menggunakan', 'menghendaki', 'mengibaratkan', 'mengibaratkannya',\n    'mengingat', 'mengingatkan', 'menginginkan', 'mengira', 'mengucapkan', 'mengucapkannya', 'mengungkapkan',\n    'menjadi', 'menjawab', 'menjelaskan', 'menuju', 'menunjuk', 'menunjuki', 'menunjukkan', 'menunjuknya',\n    'menurut', 'menuturkan', 'menyampaikan', 'menyangkut', 'menyatakan', 'menyebutkan', 'menyeluruh',\n    'menyiapkan', 'merasa', 'mereka', 'merekalah', 'merupakan', 'meski', 'meskipun', 'meyakini', 'meyakinkan',\n    'minta', 'mirip', 'misal', 'misalkan', 'misalnya', 'mohon', 'mula', 'mulai', 'mulailah', 'mulanya', 'mungkin',\n    'mungkinkah', 'n', 'nah', 'naik', 'namun', 'nanti', 'nantinya', 'nya', 'nyaris', 'nyata', 'nyatanya',\n    'o', 'oleh', 'olehnya', 'orang', 'p', 'pada', 'padahal', 'padanya', 'pak', 'paling', 'panjang', 'pantas',\n    'para', 'pasti', 'pastilah', 'penting', 'pentingnya', 'per', 'percuma', 'perlu', 'perlukah', 'perlunya',\n    'pernah', 'persoalan', 'pertama', 'pertama-tama', 'pertanyaan', 'pertanyakan', 'pihak', 'pihaknya',\n    'pukul', 'pula', 'pun', 'punya', 'q', 'r', 'rasa', 'rasanya', 'rupa', 'rupanya', 's', 'saat', 'saatnya', 'saja',\n    'sajalah', 'salam', 'saling', 'sama', 'sama-sama', 'sambil', 'sampai', 'sampai-sampai', 'sampaikan', 'sana',\n    'sangat', 'sangatlah', 'sangkut', 'satu', 'saya', 'sayalah', 'se', 'sebab', 'sebabnya', 'sebagai',\n    'sebagaimana', 'sebagainya', 'sebagian', 'sebaik', 'sebaik-baiknya', 'sebaiknya', 'sebaliknya',\n    'sebanyak', 'sebegini', 'sebegitu', 'sebelum', 'sebelumnya', 'sebenarnya', 'seberapa', 'sebesar',\n    'sebetulnya', 'sebisanya', 'sebuah', 'sebut', 'sebutlah', 'sebutnya', 'secara', 'secukupnya', 'sedang',\n    'sedangkan', 'sedemikian', 'sedikit', 'sedikitnya', 'seenaknya', 'segala', 'segalanya', 'segera',\n    'seharusnya', 'sehingga', 'seingat', 'sejak', 'sejauh', 'sejenak', 'sejumlah', 'sekadar', 'sekadarnya',\n    'sekali', 'sekali-kali', 'sekalian', 'sekaligus', 'sekalipun', 'sekarang', 'sekaranglah', 'sekecil',\n    'seketika', 'sekiranya', 'sekitar', 'sekitarnya', 'sekurang-kurangnya', 'sekurangnya', 'sela', 'selain',\n    'selaku', 'selalu', 'selama', 'selama-lamanya', 'selamanya', 'selanjutnya', 'seluruh', 'seluruhnya',\n    'semacam', 'semakin', 'semampu', 'semampunya', 'semasa', 'semasih', 'semata', 'semata-mata', 'semaunya',\n    'sementara', 'semisal', 'semisalnya', 'sempat', 'semua', 'semuanya', 'semula', 'sendiri', 'sendirian',\n    'sendirinya', 'seolah', 'seolah-olah', 'seorang', 'sepanjang', 'sepantasnya', 'sepantasnyalah',\n    'seperlunya', 'seperti', 'sepertinya', 'sepihak', 'sering', 'seringnya', 'serta', 'serupa', 'sesaat',\n    'sesama', 'sesampai', 'sesegera', 'sesekali', 'seseorang', 'sesuatu', 'sesuatunya', 'sesudah',\n    'sesudahnya', 'setelah', 'setempat', 'setengah', 'seterusnya', 'setiap', 'setiba', 'setibanya',\n    'setidak-tidaknya', 'setidaknya', 'setinggi', 'seusai', 'sewaktu', 'siap', 'siapa', 'siapakah',\n    'siapapun', 'sini', 'sinilah', 'soal', 'soalnya', 'suatu', 'sudah', 'sudahkah', 'sudahlah', 'supaya',\n    't', 'tadi', 'tadinya', 'tahu', 'tak', 'tambah', 'tambahnya', 'tampak', 'tampaknya', 'tandas', 'tandasnya',\n    'tanpa', 'tanya', 'tanyakan', 'tanyanya', 'tapi', 'tegas', 'tegasnya', 'telah', 'tempat', 'tentang', 'tentu',\n    'tentulah', 'tentunya', 'tepat', 'terakhir', 'terasa', 'terbanyak', 'terdahulu', 'terdapat', 'terdiri',\n    'terhadap', 'terhadapnya', 'teringat', 'teringat-ingat', 'terjadi', 'terjadilah', 'terjadinya', 'terkira',\n    'terlalu', 'terlebih', 'terlihat', 'termasuk', 'ternyata', 'tersampaikan', 'tersebut', 'tersebutlah',\n    'tertentu', 'tertuju', 'terus', 'terutama', 'tetap', 'tetapi', 'tiap', 'tiba', 'tiba-tiba', 'tidak',\n    'tidakkah', 'tidaklah', 'tiga', 'toh', 'tuju', 'tunjuk', 'turut', 'tutur', 'tuturnya', 'u', 'ucap', 'ucapnya',\n    'ujar', 'ujarnya', 'umumnya', 'ungkap', 'ungkapnya', 'untuk', 'usah', 'usai', 'v', 'w', 'waduh', 'wah', 'wahai',\n    'waktunya', 'walau', 'walaupun', 'wong', 'x', 'y', 'ya', 'yaitu', 'yakin', 'yakni', 'yang', 'z']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_it.js",
    "content": "/*\r\nCopyright (c) 2011, David Przybilla, Chris Umbel\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\n// a list of commonly used words that have little meaning and can be excluded\r\n// from analysis.\r\nconst words = [\r\n  'ad', 'al', 'allo', 'ai', 'agli', 'all', 'agl', 'alla', 'alle', 'con', 'col', 'coi', 'da', 'dal', 'dallo',\r\n  'dai', 'dagli', 'dall', 'dagl', 'dalla', 'dalle', 'di', 'del', 'dello', 'dei', 'degli', 'dell', 'degl',\r\n  'della', 'delle', 'in', 'nel', 'nello', 'nei', 'negli', 'nell', 'negl', 'nella', 'nelle', 'su', 'sul',\r\n  'sullo', 'sui', 'sugli', 'sull', 'sugl', 'sulla', 'sulle', 'per', 'tra', 'contro', 'io', 'tu', 'lui',\r\n  'lei', 'noi', 'voi', 'loro', 'mio', 'mia', 'miei', 'mie', 'tuo', 'tua', 'tuoi', 'tue', 'suo', 'sua', 'suoi',\r\n  'sue', 'nostro', 'nostra', 'nostri', 'nostre', 'vostro', 'vostra', 'vostri', 'vostre', 'mi', 'ti', 'ci',\r\n  'vi', 'lo', 'la', 'li', 'le', 'gli', 'ne', 'il', 'un', 'uno', 'una', 'ma', 'ed', 'se', 'perché', 'anche', 'come',\r\n  'dov', 'dove', 'che', 'chi', 'cui', 'non', 'più', 'quale', 'quanto', 'quanti', 'quanta', 'quante', 'quello',\r\n  'quelli', 'quella', 'quelle', 'questo', 'questi', 'questa', 'queste', 'si', 'tutto', 'tutti', 'a', 'c', 'e',\r\n  'i', 'l', 'o', 'ho', 'hai', 'ha', 'abbiamo', 'avete', 'hanno', 'abbia', 'abbiate', 'abbiano', 'avrò', 'avrai',\r\n  'avrà', 'avremo', 'avrete', 'avranno', 'avrei', 'avresti', 'avrebbe', 'avremmo', 'avreste', 'avrebbero',\r\n  'avevo', 'avevi', 'aveva', 'avevamo', 'avevate', 'avevano', 'ebbi', 'avesti', 'ebbe', 'avemmo', 'aveste',\r\n  'ebbero', 'avessi', 'avesse', 'avessimo', 'avessero', 'avendo', 'avuto', 'avuta', 'avuti', 'avute', 'sono',\r\n  'sei', 'è', 'siamo', 'siete', 'sia', 'siate', 'siano', 'sarò', 'sarai', 'sarà', 'saremo', 'sarete', 'saranno',\r\n  'sarei', 'saresti', 'sarebbe', 'saremmo', 'sareste', 'sarebbero', 'ero', 'eri', 'era', 'eravamo', 'eravate',\r\n  'erano', 'fui', 'fosti', 'fu', 'fummo', 'foste', 'furono', 'fossi', 'fosse', 'fossimo', 'fossero', 'essendo',\r\n  'faccio', 'fai', 'facciamo', 'fanno', 'faccia', 'facciate', 'facciano', 'farò', 'farai', 'farà', 'faremo',\r\n  'farete', 'faranno', 'farei', 'faresti', 'farebbe', 'faremmo', 'fareste', 'farebbero', 'facevo', 'facevi',\r\n  'faceva', 'facevamo', 'facevate', 'facevano', 'feci', 'facesti', 'fece', 'facemmo', 'faceste', 'fecero',\r\n  'facessi', 'facesse', 'facessimo', 'facessero', 'facendo', 'sto', 'stai', 'sta', 'stiamo', 'stanno', 'stia',\r\n  'stiate', 'stiano', 'starò', 'starai', 'starà', 'staremo', 'starete', 'staranno', 'starei', 'staresti',\r\n  'starebbe', 'staremmo', 'stareste', 'starebbero', 'stavo', 'stavi', 'stava', 'stavamo', 'stavate', 'stavano',\r\n  'stetti', 'stesti', 'stette', 'stemmo', 'steste', 'stettero', 'stessi', 'stesse', 'stessimo', 'stessero', 'stando',\r\n  '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\r\n\r\n// tell the world about the noise words.\r\nexports.words = words\r\n"
  },
  {
    "path": "lib/natural/util/stopwords_ja.js",
    "content": "// Original copyright:\n/*\n Licensed to the Apache Software Foundation (ASF) under one or more\n contributor license agreements.  See the NOTICE file distributed with\n this work for additional information regarding copyright ownership.\n The ASF licenses this file to You under the Apache License, Version 2.0\n the \"License\"); you may not use this file except in compliance with\n the License.  You may obtain a copy of the License at\n\n http://www.apache.org/licenses/LICENSE-2.0\n\n Unless required by applicable law or agreed to in writing, software\n distributed under the License is distributed on an \"AS IS\" BASIS,\n WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n See the License for the specific language governing permissions and\n limitations under the License.\n*/\n\n// This version:\n/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n// Original location:\n// http://svn.apache.org/repos/asf/lucene/dev/trunk/lucene/analysis/kuromoji/src/resources/org/apache/lucene/analysis/ja/stopwords.txt\nconst words = ['の', 'に', 'は', 'を', 'た', 'が', 'で', 'て', 'と', 'し', 'れ', 'さ',\n  'ある', 'いる', 'も', 'する', 'から', 'な', 'こと', 'として', 'い', 'や', 'れる',\n  'など', 'なっ', 'ない', 'この', 'ため', 'その', 'あっ', 'よう', 'また', 'もの',\n  'という', 'あり', 'まで', 'られ', 'なる', 'へ', 'か', 'だ', 'これ', 'によって',\n  'により', 'おり', 'より', 'による', 'ず', 'なり', 'られる', 'において', 'ば', 'なかっ',\n  'なく', 'しかし', 'について', 'せ', 'だっ', 'その後', 'できる', 'それ', 'う', 'ので',\n  'なお', 'のみ', 'でき', 'き', 'つ', 'における', 'および', 'いう', 'さらに', 'でも',\n  'ら', 'たり', 'その他', 'に関する', 'たち', 'ます', 'ん', 'なら', 'に対して', '特に',\n  'せる', '及び', 'これら', 'とき', 'では', 'にて', 'ほか', 'ながら', 'うち', 'そして',\n  'とともに', 'ただし', 'かつて', 'それぞれ', 'または', 'お', 'ほど', 'ものの', 'に対する',\n  'ほとんど', 'と共に', 'といった', 'です', 'とも', 'ところ', 'ここ']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_nl.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel, Martijn de Boer, Damien van Holten\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n// This dutch wordlist has been parsed from a list created by Damien van Holten\n// source: http://www.damienvanholten.com/blog/dutch-stop-words/\nconst words = [\n  'aan', 'af', 'al', 'alles', 'als', 'altijd', 'andere', 'ben', 'bij', 'daar',\n  'dan', 'dat', 'de', 'der', 'deze', 'die', 'dit', 'doch', 'doen', 'door', 'dus',\n  'een', 'eens', 'en', 'er', 'ge', 'geen', 'geweest', 'haar', 'had', 'heb',\n  'hebben', 'heeft', 'hem', 'het', 'hier', 'hij', 'hoe', 'hun', 'iemand', 'iets',\n  'ik', 'in', 'is', 'ja', 'je ', 'kan', 'kon', 'kunnen', 'maar', 'me', 'meer',\n  'men', 'met', 'mij', 'mijn', 'moet', 'na', 'naar', 'niet', 'niets', 'nog', 'nu',\n  'of', 'om', 'omdat', 'ons', 'ook', 'op', 'over', 'reeds', 'te', 'tegen', 'toch',\n  'toen', 'tot', 'u', 'uit', 'uw', 'van', 'veel', 'voor', 'want', 'waren', 'was',\n  'wat', 'we', 'wel', 'werd', 'wezen', 'wie', 'wij', 'wil', 'worden', 'zal', 'ze',\n  'zei', 'zelf', 'zich', 'zij', 'zijn', 'zo', 'zonder', 'zou',\n  'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i', 'j', 'k', 'l', 'm', 'n',\n  'o', 'p', 'q', 'r', 's', 't', 'u', 'v', 'w', 'x', 'y', 'z', '$', '1',\n  '2', '3', '4', '5', '6', '7', '8', '9', '0', '_', '-']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_no.js",
    "content": "/*\nCopyright (c) 2014, Kristoffer Brabrand\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'og', 'i', 'jeg', 'det', 'at', 'en', 'et', 'den', 'til', 'er', 'som',\n  'på', 'de', 'med', 'han', 'av', 'ikke', 'der', 'så', 'var', 'meg',\n  'seg', 'men', 'ett', 'har', 'om', 'vi', 'min', 'mitt', 'ha', 'hadde',\n  'hun', 'nå', 'over', 'da', 'ved', 'fra', 'du', 'ut', 'sin', 'dem',\n  'oss', 'opp', 'man', 'kan', 'hans', 'hvor', 'eller', 'hva', 'skal',\n  'selv', 'sjøl', 'her', 'alle', 'vil', 'bli', 'ble', 'blitt', 'kunne',\n  'inn', 'når', 'være', 'kom', 'noen', 'noe', 'ville', 'dere', 'som',\n  'deres', 'kun', 'ja', 'etter', 'ned', 'skulle', 'denne', 'for', 'deg',\n  'si', 'sine', 'sitt', 'mot', 'å', 'meget', 'hvorfor', 'dette', 'disse',\n  'uten', 'hvordan', 'ingen', 'din', 'ditt', 'blir', 'samme', 'hvilken',\n  'hvilke', 'sånn', 'inni', 'mellom', 'vår', 'hver', 'hvem', 'vors',\n  'hvis', 'både', 'bare', 'enn', 'fordi', 'før', 'mange', 'også', 'slik',\n  'vært', 'være', 'begge', 'siden', 'henne', 'hennar', 'hennes',\n  '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_pl.js",
    "content": "/*\nCopyright (c) 2013, Paweł Łaskarzewski\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\n// list based on: http://pl.wikipedia.org/wiki/Wikipedia:Stopwords\nconst words = [\n  'a', 'aby', 'ach', 'acz', 'aczkolwiek', 'aj', 'albo', 'ale', 'ależ', 'ani',\n  'aż', 'bardziej', 'bardzo', 'bo', 'bowiem', 'by', 'byli', 'bynajmniej',\n  'być', 'był', 'była', 'było', 'były', 'będzie', 'będą', 'cali', 'cała',\n  'cały', 'ci', 'cię', 'ciebie', 'co', 'cokolwiek', 'coś', 'czasami',\n  'czasem', 'czemu', 'czy', 'czyli', 'daleko', 'dla', 'dlaczego', 'dlatego',\n  'do', 'dobrze', 'dokąd', 'dość', 'dużo', 'dwa', 'dwaj', 'dwie', 'dwoje',\n  'dziś', 'dzisiaj', 'gdy', 'gdyby', 'gdyż', 'gdzie', 'gdziekolwiek',\n  'gdzieś', 'i', 'ich', 'ile', 'im', 'inna', 'inne', 'inny', 'innych', 'iż',\n  'ja', 'ją', 'jak', 'jakaś', 'jakby', 'jaki', 'jakichś', 'jakie', 'jakiś',\n  'jakiż', 'jakkolwiek', 'jako', 'jakoś', 'je', 'jeden', 'jedna', 'jedno',\n  'jednak', 'jednakże', 'jego', 'jej', 'jemu', 'jest', 'jestem', 'jeszcze',\n  'jeśli', 'jeżeli', 'już', 'ją', 'każdy', 'kiedy', 'kilka', 'kimś', 'kto',\n  'ktokolwiek', 'ktoś', 'która', 'które', 'którego', 'której', 'który',\n  'których', 'którym', 'którzy', 'ku', 'lat', 'lecz', 'lub', 'ma', 'mają',\n  'mało', 'mam', 'mi', 'mimo', 'między', 'mną', 'mnie', 'mogą', 'moi', 'moim',\n  'moja', 'moje', 'może', 'możliwe', 'można', 'mój', 'mu', 'musi', 'my', 'na',\n  'nad', 'nam', 'nami', 'nas', 'nasi', 'nasz', 'nasza', 'nasze', 'naszego',\n  'naszych', 'natomiast', 'natychmiast', 'nawet', 'nią', 'nic', 'nich', 'nie',\n  'niech', 'niego', 'niej', 'niemu', 'nigdy', 'nim', 'nimi', 'niż', 'no', 'o',\n  'obok', 'od', 'około', 'on', 'ona', 'one', 'oni', 'ono', 'oraz', 'oto',\n  'owszem', 'pan', 'pana', 'pani', 'po', 'pod', 'podczas', 'pomimo', 'ponad',\n  'ponieważ', 'powinien', 'powinna', 'powinni', 'powinno', 'poza', 'prawie',\n  'przecież', 'przed', 'przede', 'przedtem', 'przez', 'przy', 'roku',\n  'również', 'sam', 'sama', 'są', 'się', 'skąd', 'sobie', 'sobą', 'sposób',\n  'swoje', 'ta', 'tak', 'taka', 'taki', 'takie', 'także', 'tam', 'te', 'tego',\n  'tej', 'temu', 'ten', 'teraz', 'też', 'to', 'tobą', 'tobie', 'toteż',\n  'trzeba', 'tu', 'tutaj', 'twoi', 'twoim', 'twoja', 'twoje', 'twym', 'twój',\n  'ty', 'tych', 'tylko', 'tym', 'u', 'w', 'wam', 'wami', 'was', 'wasz', 'zaś',\n  'wasza', 'wasze', 'we', 'według', 'wiele', 'wielu', 'więc', 'więcej', 'tę',\n  'wszyscy', 'wszystkich', 'wszystkie', 'wszystkim', 'wszystko', 'wtedy',\n  'wy', 'właśnie', 'z', 'za', 'zapewne', 'zawsze', 'ze', 'zł', 'znowu',\n  'znów', 'został', 'żaden', 'żadna', 'żadne', 'żadnych', 'że', 'żeby',\n  '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_pt.js",
    "content": "/*\nCopyright (c) 2011, Luís Rodrigues\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'a',\n  'à',\n  'ao',\n  'aos',\n  'aquela',\n  'aquelas',\n  'aquele',\n  'aqueles',\n  'aquilo',\n  'as',\n  'às',\n  'até',\n  'com',\n  'como',\n  'da',\n  'das',\n  'de',\n  'dela',\n  'delas',\n  'dele',\n  'deles',\n  'depois',\n  'do',\n  'dos',\n  'e',\n  'ela',\n  'elas',\n  'ele',\n  'eles',\n  'em',\n  'entre',\n  'essa',\n  'essas',\n  'esse',\n  'esses',\n  'esta',\n  'estas',\n  'este',\n  'estes',\n  'eu',\n  'isso',\n  'isto',\n  'já',\n  'lhe',\n  'lhes',\n  'mais',\n  'mas',\n  'me',\n  'mesmo',\n  'meu',\n  'meus',\n  'minha',\n  'minhas',\n  'muito',\n  'muitos',\n  'na',\n  'não',\n  'nas',\n  'nem',\n  'no',\n  'nos',\n  'nós',\n  'nossa',\n  'nossas',\n  'nosso',\n  'nossos',\n  'num',\n  'nuns',\n  'numa',\n  'numas',\n  'o',\n  'os',\n  'ou',\n  'para',\n  'pela',\n  'pelas',\n  'pelo',\n  'pelos',\n  'por',\n  'quais',\n  'qual',\n  'quando',\n  'que',\n  'quem',\n  'se',\n  'sem',\n  'seu',\n  'seus',\n  'só',\n  'sua',\n  'suas',\n  'também',\n  'te',\n  'teu',\n  'teus',\n  'tu',\n  'tua',\n  'tuas',\n  'um',\n  'uma',\n  'umas',\n  'você',\n  'vocês',\n  'vos',\n  'vosso',\n  'vossos',\n  '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_'\n]\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_ru.js",
    "content": "/*\nCopyright (c) 2011, Polyakov Vladimir, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'о', 'после', 'все', 'также', 'и', 'другие', 'все', 'как', 'во', 'быть',\n  'потому', 'был', 'до', 'являюсь', 'между', 'все', 'но', 'от', 'иди', 'могу',\n  'подойди', 'мог', 'делал', 'делаю', 'каждый', 'для', 'откуда', 'иметь', 'имел',\n  'он', 'имеет', 'её', 'здесь', 'его', 'как', 'если', 'в', 'оно', 'за',\n  'делать', 'много', 'я', 'может быть', 'более', 'самый', 'должен',\n  'мой', 'никогда', 'сейчас', 'из', 'на', 'только', 'или', 'другой', 'другая',\n  'другое', 'наше', 'вне', 'конец', 'сказал', 'сказала', 'также', 'видел', 'c',\n  'немного', 'все еще', 'так', 'затем', 'тот', 'их', 'там', 'этот', 'они', 'те',\n  'через', 'тоже', 'под', 'над', 'очень', 'был', 'путь', 'мы', 'хорошо',\n  'что', 'где', 'который', 'пока', 'кто', 'с кем', 'хотел бы', 'ты', 'твои',\n  'а', 'б', 'в', 'г', 'д', 'е', 'ё', 'ж', 'з', 'и', 'й', 'к', 'л', 'м', 'н',\n  'o', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ', 'ъ', 'ы', 'ь',\n  'э', 'ю', 'я', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_sv.js",
    "content": "/*\nCopyright (c) 2017, Dogan Yazar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = ['aderton', 'adertonde', 'adjö', 'aldrig', 'alla', 'allas', 'allt', 'alltid',\n  'alltså', 'andra', 'andras', 'annan', 'annat', 'artonde', 'artonn', 'att', 'av', 'bakom',\n  'bara', 'behöva', 'behövas', 'behövde', 'behövt', 'beslut', 'beslutat', 'beslutit', 'bland',\n  'blev', 'bli', 'blir', 'blivit', 'bort', 'borta', 'bra', 'bäst', 'bättre', 'båda', 'bådas',\n  'dag', 'dagar', 'dagarna', 'dagen', 'de', 'del', 'delen', 'dem', 'den', 'denna', 'deras',\n  'dess', 'dessa', 'det', 'detta', 'dig', 'din', 'dina', 'dit', 'ditt', 'dock', 'dom', 'du',\n  'där', 'därför', 'då', 'e', 'efter', 'eftersom', 'ej', 'elfte', 'eller', 'elva', 'emot', 'en',\n  'enkel', 'enkelt', 'enkla', 'enligt', 'ens', 'er', 'era', 'ers', 'ert', 'ett', 'ettusen',\n  'fanns', 'fem', 'femte', 'femtio', 'femtionde', 'femton', 'femtonde', 'fick', 'fin',\n  'finnas', 'finns', 'fjorton', 'fjortonde', 'fjärde', 'fler', 'flera', 'flesta', 'fram',\n  'framför', 'från', 'fyra', 'fyrtio', 'fyrtionde', 'få', 'får', 'fått', 'följande', 'för',\n  'före', 'förlåt', 'förra', 'första', 'genast', 'genom', 'gick', 'gjorde', 'gjort', 'god',\n  'goda', 'godare', 'godast', 'gott', 'gälla', 'gäller', 'gällt', 'gärna', 'gå', 'går', 'gått',\n  'gör', 'göra', 'ha', 'hade', 'haft', 'han', 'hans', 'har', 'heller', 'hellre', 'helst', 'helt',\n  'henne', 'hennes', 'hit', 'hon', 'honom', 'hundra', 'hundraen', 'hundraett', 'hur', 'här',\n  'hög', 'höger', 'högre', 'högst', 'i', 'ibland', 'icke', 'idag', 'igen', 'igår', 'imorgon',\n  'in', 'inför', 'inga', 'ingen', 'ingenting', 'inget', 'innan', 'inne', 'inom', 'inte',\n  'inuti', 'ja', 'jag', 'jo', 'ju', 'just', 'jämfört', 'kan', 'kanske', 'knappast', 'kom',\n  'komma', 'kommer', 'kommit', 'kr', 'kunde', 'kunna', 'kunnat', 'kvar', 'legat', 'ligga',\n  'ligger', 'lika', 'likställd', 'likställda', 'lilla', 'lite', 'liten', 'litet', 'länge',\n  'längre', 'längst', 'lätt', 'lättare', 'lättast', 'långsam', 'långsammare', 'långsammast',\n  'långsamt', 'långt', 'låt', 'man', 'med', 'mej', 'mellan', 'men', 'mer', 'mera', 'mest', 'mig',\n  'min', 'mina', 'mindre', 'minst', 'mitt', 'mittemot', 'mot', 'mycket', 'många', 'måste',\n  'möjlig', 'möjligen', 'möjligt', 'möjligtvis', 'ned', 'nederst', 'nedersta', 'nedre',\n  'nej', 'ner', 'ni', 'nio', 'nionde', 'nittio', 'nittionde', 'nitton', 'nittonde', 'nog',\n  'noll', 'nr', 'nu', 'nummer', 'när', 'nästa', 'någon', 'någonting', 'något', 'några', 'nån',\n  'nånting', 'nåt', 'nödvändig', 'nödvändiga', 'nödvändigt', 'nödvändigtvis', 'och', 'också',\n  'ofta', 'oftast', 'olika', 'olikt', 'om', 'oss', 'på', 'rakt', 'redan', 'rätt', 'sa', 'sade',\n  'sagt', 'samma', 'sedan', 'senare', 'senast', 'sent', 'sex', 'sextio', 'sextionde', 'sexton',\n  'sextonde', 'sig', 'sin', 'sina', 'sist', 'sista', 'siste', 'sitt', 'sitta', 'sju', 'sjunde',\n  'sjuttio', 'sjuttionde', 'sjutton', 'sjuttonde', 'själv', 'sjätte', 'ska', 'skall', 'skulle',\n  'slutligen', 'små', 'smått', 'snart', 'som', 'stor', 'stora', 'stort', 'större', 'störst',\n  'säga', 'säger', 'sämre', 'sämst', 'så', 'sådan', 'sådana', 'sådant', 'ta', 'tack', 'tar',\n  'tidig', 'tidigare', 'tidigast', 'tidigt', 'till', 'tills', 'tillsammans', 'tio', 'tionde',\n  'tjugo', 'tjugoen', 'tjugoett', 'tjugonde', 'tjugotre', 'tjugotvå', 'tjungo', 'tolfte',\n  'tolv', 'tre', 'tredje', 'trettio', 'trettionde', 'tretton', 'trettonde', 'två', 'tvåhundra',\n  'under', 'upp', 'ur', 'ursäkt', 'ut', 'utan', 'utanför', 'ute', 'va', 'vad', 'var', 'vara',\n  'varför', 'varifrån', 'varit', 'varje', 'varken', 'vars', 'varsågod', 'vart', 'vem', 'vems',\n  'verkligen', 'vi', 'vid', 'vidare', 'viktig', 'viktigare', 'viktigast', 'viktigt', 'vilka',\n  'vilkas', 'vilken', 'vilket', 'vill', 'väl', 'vänster', 'vänstra', 'värre', 'vår', 'våra',\n  'vårt', 'än', 'ännu', 'är', 'även', 'åt', 'åtminstone', 'åtta', 'åttio', 'åttionde',\n  'åttonde', 'över', 'övermorgon', 'överst', 'övre', '1', '2', '3', '4', '5', '6', '7',\n  '8', '9', '0']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_uk.js",
    "content": "'use strict'\n\n// a list of commonly used words that have little meaning and can be excluded\n// from analysis.\nconst words = [\n  'о', 'після', 'всі', 'також', 'і', 'інші', 'все', 'як', 'в', 'бути',\n  'тому', 'був', 'до', 'є', 'між', 'вся', 'але', 'від', 'іди', 'можу',\n  'підійди', 'міг', 'робив', 'роблю', 'кожен', 'для', 'звідки', 'мав',\n  'він', 'має', 'її', 'тут', 'його', 'якщо', 'у', 'воно', 'за',\n  'робити', 'багато', 'може бути', 'самий', 'повинен',\n  'мій', 'ніколи', 'зараз', 'із', 'на', 'тільки', 'або', 'наше', 'поза',\n  'кінець', 'сказав', 'сказала', 'бачив', 'з',\n  'трохи', 'все ще', 'так', 'потім', 'той', 'їх', 'там', 'цей', 'вони', 'те',\n  'через', 'теж', 'під', 'над', 'дуже', 'був', 'добре',\n  'що', 'де', 'який', 'доки', 'хто', 'хотів би',\n  'а', 'б', 'в', 'г', 'ґ', 'д', 'е', 'є', 'ж', 'з', 'и', 'і', 'й', 'ї', 'к',\n  'л', 'м', 'н', 'o', 'п', 'р', 'с', 'т', 'у', 'ф', 'х', 'ц', 'ч', 'ш', 'щ',\n  'ь', 'ю', 'я', '$', '1', '2', '3', '4', '5', '6', '7', '8', '9', '0', '_']\n\n// tell the world about the noise words.\nexports.words = words\n"
  },
  {
    "path": "lib/natural/util/stopwords_zh.js",
    "content": "/*\r\nCopyright (c) 2011, David Przybilla, Chris Umbel\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n*/\r\n\r\n'use strict'\r\n\r\n// a list of commonly used words that have little meaning and can be excluded\r\n// from analysis.\r\nconst words = [\r\n  '的', '地', '得', '和', '跟',\r\n  '与', '及', '向', '并', '等',\r\n  '更', '已', '含', '做', '我',\r\n  '你', '他', '她', '们', '某',\r\n  '该', '各', '每', '这', '那',\r\n  '哪', '什', '么', '谁', '年',\r\n  '月', '日', '时', '分', '秒',\r\n  '几', '多', '来', '在', '就',\r\n  '又', '很', '呢', '吧', '吗',\r\n  '了', '嘛', '哇', '儿', '哼',\r\n  '啊', '嗯', '是', '着', '都',\r\n  '不', '说', '也', '看', '把',\r\n  '还', '个', '有', '小', '到',\r\n  '一', '为', '中', '于', '对',\r\n  '会', '之', '第', '此', '或',\r\n  '共', '按', '请'\r\n]\r\n\r\n// tell the world about the noise words.\r\nexports.words = words\r\n"
  },
  {
    "path": "lib/natural/util/storage/File.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nrequire('dotenv').config()\nconst { v4: uuidv4 } = require('uuid')\nconst fs = require('fs').promises\nconst path = process.env.FS_PATH\n\n// Class for creating file-based storage\nclass FilePlugin {\n  async store (object, options) {\n    const key = uuidv4()\n    const data = JSON.stringify(object)\n    await fs.writeFile(path + '/' + key + '.json', data)\n    return key\n  }\n\n  async retrieve (key, options) {\n    const data = await fs.readFile(path + '/' + key + '.json', 'utf8')\n    return JSON.parse(data)\n  }\n}\n\nmodule.exports = FilePlugin\n"
  },
  {
    "path": "lib/natural/util/storage/Memcached.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst { v4: uuidv4 } = require('uuid')\nrequire('dotenv').config()\nconst memjs = require('memjs')\nconst memCachedConnectionString = process.env.MEM_HOST + ':' +\n  process.env.MEM_PORT\nconst memCachedExpiration = process.env.MEM_EXPIRES || 2\n\n// Class for creating memcached client including store and retrieve methods\nclass MemcachedPlugin {\n  constructor () {\n    this.client = memjs.Client.create(memCachedConnectionString)\n  }\n\n  async store (object, options) {\n    const key = uuidv4()\n    const data = JSON.stringify(object)\n    const isStored = await this.client.set(key, data, { expires: memCachedExpiration })\n    return isStored ? key : null\n  }\n\n  async retrieve (key, options) {\n    const result = await this.client.get(key)\n    return JSON.parse(result.value.toString())\n  }\n}\n\nmodule.exports = MemcachedPlugin\n"
  },
  {
    "path": "lib/natural/util/storage/MongoDB.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nrequire('dotenv').config()\nconst mongoose = require('mongoose')\nconst mongoDBConnectionString = 'mongodb://' + process.env.MONGO_HOST + ':' +\n  process.env.MONGO_PORT + '/' + process.env.MONGO_DATABASE\nconst objectModelName = process.env.MONGO_OBJECTMODEL\n\nclass MongoDBPlugin {\n  constructor () {\n    mongoose.connect(mongoDBConnectionString, {})\n\n    if (!mongoose.models[objectModelName]) {\n      // We do not enforce a schema with MongoDB\n      this.ObjectModel = mongoose.model(objectModelName, new mongoose.Schema({},\n        { strict: false, versionKey: false }))\n    } else {\n      this.ObjectModel = mongoose.models[objectModelName]\n    }\n  }\n\n  async store (object, options) {\n    // To make sure the payload is stored as a whole and nog merged with the id object\n    const objectToStore = { naturalObject: object }\n    const storedObject = await this.ObjectModel.create(objectToStore)\n    return storedObject._id\n  }\n\n  async retrieve (key, options) {\n    const retrievedObject = await this.ObjectModel.findById(key)\n    return retrievedObject.naturalObject\n  }\n}\n\nmodule.exports = MongoDBPlugin\n"
  },
  {
    "path": "lib/natural/util/storage/Postgres.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst postgres = require('pg')\nrequire('dotenv').config()\n\nclass PostgresPlugin {\n  constructor () {\n    this.postgresClient = null\n  }\n\n  async configPostgres () {\n    // Initialize connection to Postgres\n    const client = new postgres.Client({\n      user: process.env.POSTGRES_USER,\n      host: process.env.POSTGRES_HOST,\n      database: process.env.POSTGRES_DB,\n      password: process.env.POSTGRES_PASSWORD,\n      port: process.env.POSTGRES_PORT\n    })\n    this.postgresClient = client\n    this.postgresTableName = process.env.POSTGRES_TABLE\n\n    // Connect to the database\n    await client.connect()\n\n    // Call the function to create the table\n    await this.createTableIfNotExists(client, this.postgresTableName)\n\n    // Don't forget to close the connection when done\n    // await client.end()\n  }\n\n  // Function to create the table\n  async createTableIfNotExists (client, tableName) {\n    // Check if the table exists\n    const query = `SELECT to_regclass('${tableName}')`\n    const result = await client.query(query)\n\n    if (result.rows[0].to_regclass === null) {\n      // Table does not exist, create it\n      const createTableQuery = `\n        CREATE TABLE ${tableName} (\n          id SERIAL PRIMARY KEY,\n          data JSONB\n        );\n      `\n      await client.query(createTableQuery)\n      console.log('table created')\n    }\n  }\n\n  // Function to insert a JavaScript object by key\n  // Returns the id generated by the database\n  async store (object, options) {\n    try {\n      const query = `INSERT INTO ${this.postgresTableName} (data) VALUES ($1)  RETURNING id;`\n      const result = await this.postgresClient.query(query, [object])\n      if (result.rowCount > 0) {\n        return result.rows[0].id\n      } else {\n        return null\n      }\n    } catch (error) {\n      console.error('Error inserting object:', error)\n    }\n  }\n\n  // Function to retrieve a JavaScript object by key\n  async retrieve (key, options) {\n    try {\n      const query = `SELECT data FROM ${this.postgresTableName} WHERE id = $1`\n      const result = await this.postgresClient.query(query, [key])\n      if (result.rows.length > 0) {\n        return result.rows[0].data\n      } else {\n        console.log('No object found with the specified key')\n        return null\n      }\n    } catch (error) {\n      console.error('Error retrieving object:', error)\n      return null\n    }\n  }\n}\n\nmodule.exports = PostgresPlugin\n"
  },
  {
    "path": "lib/natural/util/storage/Redis.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst { v4: uuidv4 } = require('uuid')\nrequire('dotenv').config()\nconst redis = require('redis')\nconst redisConnectionString = 'redis://' + process.env.REDIS_HOST + ':' +\n  process.env.REDIS_PORT\n\nclass RedisPlugin {\n  constructor () {\n    this.configRedis()\n  }\n\n  async configRedis () {\n    this.redisClient = await redis.createClient(redisConnectionString)\n    this.redisClient\n      .on('error', err => console.log('Redis Client Error', err))\n      .connect()\n  }\n\n  async store (object, options) {\n    const key = uuidv4()\n    const data = JSON.stringify(object)\n    await this.redisClient.set(key, data)\n    return key\n  }\n\n  async retrieve (key, options) {\n    const result = await this.redisClient.get(key)\n    return JSON.parse(result)\n  }\n}\n\nmodule.exports = RedisPlugin\n"
  },
  {
    "path": "lib/natural/util/storage/StorageBackend.js",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nconst PostgresPlugin = require('./Postgres')\nconst MongoDBPlugin = require('./MongoDB')\nconst RedisPlugin = require('./Redis')\nconst MemcachedPlugin = require('./Memcached')\nconst FilePlugin = require('./File')\n\n// Enum for different types of storage backends that can be used\nconst STORAGE_TYPES = {\n  POSTGRES: 'POSTGRES',\n  REDIS: 'REDIS',\n  MONGODB: 'MONGODB',\n  MEMCACHED: 'MEMCACHED',\n  FILE: 'FILE'\n}\n\n// Standard behaviour of the backend is:\n// - Javascript in and out, so JSON.stringify and JSON.parse is done here.\n// - A key is returned after storing an object.\n// - The key is determined by the storage method, if possible: MongoDB and Postgres can do this.\n//   If not, a uuid is created.\n// - File-based storage is no different: a uuid is created and used as filename: uuid.json\nclass StorageBackend {\n  constructor (storageType, options) {\n    if (storageType) {\n      this.setStorageType(storageType, options)\n    }\n  }\n\n  // Sets the storage type. Valid values are POSTGRES, REDIS, MONGODB, MEMCACHED, FILE\n  async setStorageType (storageType) {\n    if (!storageType) {\n      throw new Error('No storage type specified')\n    }\n    if (this.storageType) {\n      throw new Error('Storage type already set')\n    }\n    this.storageType = storageType\n    switch (storageType) {\n      case STORAGE_TYPES.POSTGRES:\n        this.client = new PostgresPlugin()\n        await this.client.configPostgres()\n        break\n      case STORAGE_TYPES.REDIS:\n        this.client = new RedisPlugin()\n        break\n      case STORAGE_TYPES.MONGODB:\n        this.client = new MongoDBPlugin()\n        break\n      case STORAGE_TYPES.MEMCACHED:\n        this.client = new MemcachedPlugin()\n        break\n      case STORAGE_TYPES.FILE:\n        this.client = new FilePlugin()\n        break\n      default:\n        throw new Error('Invalid storage type')\n    }\n  }\n\n  // Stores value to the selected storage type.\n  async store (object) {\n    if (this.storageType && this.client) {\n      return await this.client.store(object)\n    } else {\n      throw new Error('Storage type or client not set')\n    }\n  }\n\n  async retrieve (key) {\n    if (this.storageType && this.client) {\n      return await this.client.retrieve(key)\n    } else {\n      throw new Error('Storage type or client not set')\n    }\n  }\n}\n\nmodule.exports = { StorageBackend, STORAGE_TYPES }\n"
  },
  {
    "path": "lib/natural/util/storage/docker-compose.yml",
    "content": "version: '3'\n\nservices:\n  postgres:\n    image: postgres:latest\n    environment:\n      POSTGRES_DB: naturaldb\n      POSTGRES_USER: user\n      POSTGRES_PASSWORD: password\n    ports:\n      - \"5432:5432\"\n\n  mongodb:\n    image: mongo:latest\n    environment:\n      MONGO_INITDB_DATABASE: naturaldb\n    ports:\n      - \"27017:27017\"\n\n  redis:\n    image: redis:latest\n    ports:\n      - \"6379:6379\"\n\n  memcached:\n    image: memcached:latest\n    ports:\n      - \"11211:11211\"\n"
  },
  {
    "path": "lib/natural/util/storage/index.d.ts",
    "content": "/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexport declare enum STORAGE_TYPES {\n  POSTGRES = 'POSTGRES',\n  REDIS = 'REDIS',\n  MONGODB = 'MONGODB',\n  MEMCACHED = 'MEMCACHED',\n  FILE = 'FILE'\n}\n\nexport class StorageBackend {\n  private readonly storageType: STORAGE_TYPES\n  private readonly client: any\n\n  constructor (type: STORAGE_TYPES)\n  setStorageType (storageType: STORAGE_TYPES): void\n  store (key: string, value: any): Promise<string>\n  retrieve (key: string): Promise<any>\n}\n"
  },
  {
    "path": "lib/natural/util/storage/index.js",
    "content": "\n/*\nCopyright (c) 2024, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nexports.StorageBackend = require('./StorageBackend')\n"
  },
  {
    "path": "lib/natural/util/topological.js",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/**\n * a topo sort for a digraph\n * @param {Digraph}\n */\nclass Topological {\n  constructor (g) {\n    this.isDag = true\n    this.sorted = topoSort(uniqueVertexs(g.edges()), g.edges())\n  }\n\n  isDAG () {\n    return this.isDag\n  }\n\n  /**\n   * get ordered vertexs of digraph\n   */\n  order () {\n    return this.sorted.slice()\n  }\n}\n\n/**\n * @param {Array} all vertex in digraph\n * @param {Object} all edges in the digraph\n */\nfunction topoSort (vertexs, edges) {\n  const sorted = []\n  let cursor = vertexs.length\n  const visited = {}\n  let i = cursor\n  while (i--) {\n    if (!visited[i]) visit(vertexs[i], i, [])\n  }\n\n  return sorted.reverse()\n\n  function visit (vertex, i, predecessors) {\n    if (predecessors.indexOf(vertex) >= 0) {\n      throw new Error('Cyclic dependency:' + JSON.stringify(vertex))\n    }\n\n    if (visited[i]) return\n    visited[i] = true\n\n    const outgoing = edges.filter(function (edge) {\n      return edge.to() === vertex\n    })\n\n    let preds = []\n    if (outgoing.length > 0) {\n      preds = predecessors.concat(vertex)\n    }\n    let from\n    outgoing.forEach(function (edge) {\n      from = edge.from()\n      visit(from, vertexs.indexOf(from), preds)\n    })\n\n    sorted[--cursor] = vertex\n  }\n}\n\nfunction uniqueVertexs (edges) {\n  const vertexs = []\n  let from, to\n  edges.forEach(function (edge) {\n    from = edge.from()\n    to = edge.to()\n    if (vertexs.indexOf(from) < 0) vertexs.push(from)\n    if (vertexs.indexOf(to) < 0) vertexs.push(to)\n  })\n  return vertexs\n}\n\nmodule.exports = Topological\n"
  },
  {
    "path": "lib/natural/util/utils.js",
    "content": "/*\r\nCopyright (c) 2012, Guillaume Marty\r\n\r\nPermission is hereby granted, free of charge, to any person obtaining a copy\r\nof this software and associated documentation files (the \"Software\"), to deal\r\nin the Software without restriction, including without limitation the rights\r\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\r\ncopies of the Software, and to permit persons to whom the Software is\r\nfurnished to do so, subject to the following conditions:\r\n\r\nThe above copyright notice and this permission notice shall be included in\r\nall copies or substantial portions of the Software.\r\n\r\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\r\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\r\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\r\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\r\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\r\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\r\nTHE SOFTWARE.\r\n */\r\n\r\n'use strict'\r\n\r\n/**\r\n * Generate a replacing function given a table of patterns. Inspired by:\r\n * http://code.google.com/p/jslibs/wiki/JavascriptTips#String_converter\r\n * The order of elements is significant. Longer elements should be listed first.\r\n * @see Speed test http://jsperf.com/build-a-regexp-table\r\n *\r\n * @param {Object.<string, string>} translationTable The translation table of key value.\r\n * @return {function(string): string} A translating function.\r\n */\r\nfunction replacer (translationTable) {\r\n  /**\r\n   * An array of translationTable keys.\r\n   * @type {Array.<string>}\r\n   */\r\n  const pattern = []\r\n\r\n  /**\r\n   * Used to iterate over translationTable.\r\n   * @type {string}\r\n   */\r\n  let key\r\n\r\n  for (key in translationTable) {\r\n    // Escaping regexp special chars.\r\n    // @see Speed test for type casting to string http://jsperf.com/string-type-casting/2\r\n    // @see http://closure-library.googlecode.com/svn/docs/closure_goog_string_string.js.source.html#line956\r\n    /* eslint-disable no-control-regex */\r\n    const key1 = ('' + key).replace(/([-()[\\]{}+?*.$^|,:#<!\\\\/])/g, '\\\\$1')\r\n      .replace(/\\x08/g, '\\\\x08')\r\n\r\n    pattern.push(key1)\r\n  }\r\n\r\n  /**\r\n   * The regular expression doing the replacement job.\r\n   * @type {RegExp}\r\n   */\r\n  const regExp = new RegExp(pattern.join('|'), 'g')\r\n\r\n  /**\r\n   * @param {string} str Input string.\r\n   * @return {string} The string replaced.\r\n   */\r\n  return function (str) {\r\n    return str.replace(regExp, function (str) {\r\n      return translationTable[str]\r\n    })\r\n  }\r\n}\r\n\r\n/**\r\n * Exchanges all keys with their associated values in an object.\r\n *\r\n * @param {Object.<string, string>} obj An object of strings.\r\n * @return {Object.<string, string>} An object of strings.\r\n */\r\nfunction flip (obj) {\r\n  const newObj = Object.create(null)\r\n  let key\r\n\r\n  for (key in obj) {\r\n    newObj[obj[key]] = key\r\n  }\r\n\r\n  return newObj\r\n}\r\n\r\n/**\r\n * Merge several objects. Properties from earlier objects are overwritten by\r\n * laters's in case of conflict.\r\n *\r\n * @param {...Object.<string, string>} var_args One or more objects of strings.\r\n * @return {!Object.<string, string>} An object of strings.\r\n */\r\nfunction merge (varArgs) {\r\n  const args = [].slice.call(arguments)\r\n  const newObj = Object.create(null)\r\n  let id = 0; let key\r\n\r\n  while (args[id]) {\r\n    for (key in args[id]) {\r\n      newObj[key] = args[id][key]\r\n    }\r\n\r\n    id++\r\n  }\r\n\r\n  return newObj\r\n}\r\n\r\nexports.replacer = replacer\r\nexports.flip = flip\r\nexports.merge = merge\r\n"
  },
  {
    "path": "lib/natural/wordnet/data_file.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst WordNetFile = require('./wordnet_file')\nconst util = require('util')\n\nfunction get (location, callbackFunction) {\n  const buff = Buffer.alloc(4096)\n\n  this.open(function (err, fd, done) {\n    if (err) {\n      console.log(err)\n      return\n    }\n    WordNetFile.appendLineChar(fd, location, 0, buff, function (line) {\n      done()\n      const data = line.split('| ')\n      const tokens = data[0].split(/\\s+/)\n      const ptrs = []\n      const wCnt = parseInt(tokens[3], 16)\n      const synonyms = []\n\n      for (let i = 0; i < wCnt; i++) {\n        synonyms.push(tokens[4 + i * 2])\n      }\n\n      const ptrOffset = (wCnt - 1) * 2 + 6\n      for (let i = 0; i < parseInt(tokens[ptrOffset], 10); i++) {\n        ptrs.push({\n          pointerSymbol: tokens[ptrOffset + 1 + i * 4],\n          synsetOffset: parseInt(tokens[ptrOffset + 2 + i * 4], 10),\n          pos: tokens[ptrOffset + 3 + i * 4],\n          sourceTarget: tokens[ptrOffset + 4 + i * 4]\n        })\n      }\n\n      // break \"gloss\" into definition vs. examples\n      const glossArray = data[1].split('; ')\n      const definition = glossArray[0]\n      const examples = glossArray.slice(1)\n\n      for (let k = 0; k < examples.length; k++) {\n        examples[k] = examples[k].replace(/\"/g, '').replace(/\\s\\s+/g, '')\n      }\n\n      callbackFunction({\n        synsetOffset: parseInt(tokens[0], 10),\n        lexFilenum: parseInt(tokens[1], 10),\n        pos: tokens[2],\n        wCnt: wCnt,\n        lemma: tokens[4],\n        synonyms: synonyms,\n        lexId: tokens[5],\n        ptrs: ptrs,\n        gloss: data[1],\n        def: definition,\n        exp: examples\n      })\n    })\n  })\n}\n\nconst DataFile = function (dataDir, name) {\n  WordNetFile.call(this, dataDir, 'data.' + name)\n}\n\nutil.inherits(DataFile, WordNetFile)\nDataFile.prototype.get = get\n\nmodule.exports = DataFile\n"
  },
  {
    "path": "lib/natural/wordnet/index.d.ts",
    "content": "/*\nCopyright (c) 2022,\nDylan R. E. Moonfire <https://github.com/dmoonfire>,\nEmily Marigold Klassen <https://github.com/forivall>,\nHugo W.L. ter Doest <https://github.com/Hugo-ter-Doest>\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\ndeclare interface DataPtr {\n  pointerSymbol: string\n  synsetOffset: number\n  pos: string\n  sourceTarget: string\n}\n\ndeclare interface DataRecord {\n  synsetOffset: number\n  lexFilenum: number\n  pos: string\n  wCnt: number\n  lemma: string\n  synonyms: string[]\n  lexId: string\n  ptrs: DataPtr[]\n  gloss: string\n  def: string\n  exp: string[]\n}\n\ndeclare type DataRecordCallback = (results: DataRecord) => void\ndeclare type DataRecordsCallback = (results: DataRecord[]) => void\n\ndeclare class DataFile {\n  constructor (dataDir: string, name: string)\n  get (location: number, callback: DataRecordCallback): void\n}\n\ndeclare interface IndexRecord {\n  lemma: string\n  pos: string\n  ptrSymbol: string[]\n  senseCnt: number\n  tagsenseCnt: number\n  synsetOffset: number[]\n}\n\ndeclare type IndexRecordCallback = (results: IndexRecord) => void\n\ndeclare interface IndexFind {\n  status: string\n  key: string\n  line: string\n  tokens: string[]\n}\n\ndeclare type IndexFindCallback = (results: IndexFind) => void\n\ndeclare class IndexFile {\n  constructor (dataDir: string, name: string)\n  lookup (word: string, callback: IndexRecordCallback): void\n  lookupFromFile (word: string, callback: IndexRecordCallback): void\n  find (word: string, callback: IndexFindCallback): void\n}\n\ndeclare interface WordNetLookupFile {\n  index: IndexFile\n  data: DataFile\n}\n\nexport class WordNet {\n  constructor (dataDir?: string)\n  get (synsetOffset: number, pos: string, callback: DataRecordCallback): void\n  lookup (word: string, callback: DataRecordsCallback): void\n  lookupFromFiles (files: WordNetLookupFile[], results: DataRecord[], word: string, callback: DataRecordsCallback): void\n  pushResults (data: DataFile, results: DataRecord[], offsets: number[], callback: DataRecordsCallback): void\n  loadResultSynonyms (synonyms: DataRecord[], results: DataRecord[], callback: DataRecordsCallback): void\n  loadSynonyms (synonyms: DataRecord[], results: DataRecord[], ptrs: DataPtr[], callback: DataRecordsCallback): void\n  lookupSynonyms (word: string, callback: DataRecordsCallback): void\n  getSynonyms (record: DataRecord, callback: DataRecordsCallback): void\n  getDataFile (pos: string): DataFile\n}\n"
  },
  {
    "path": "lib/natural/wordnet/index.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nexports.WordNet = require('./wordnet')\n"
  },
  {
    "path": "lib/natural/wordnet/index_file.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst WordNetFile = require('./wordnet_file')\nconst fs = require('fs')\nconst util = require('util')\n\nfunction getFileSize (path) {\n  const stat = fs.statSync(path)\n  return stat.size\n}\n\nfunction findPrevEOL (fd, pos, callbackFunction) {\n  const buff = Buffer.alloc(1024)\n  if (pos === 0) { callbackFunction(0) } else {\n    fs.read(fd, buff, 0, 1, pos, function (err, count) {\n      if (err) {\n        console.log(err)\n        return\n      }\n      if (buff[0] === 10) {\n        callbackFunction(pos + 1)\n      } else {\n        findPrevEOL(fd, pos - 1, callbackFunction)\n      }\n    })\n  }\n}\n\nfunction readLine (fd, pos, callback) {\n  const buff = Buffer.alloc(1024)\n  findPrevEOL(fd, pos, function (pos) {\n    WordNetFile.appendLineChar(fd, pos, 0, buff, callback)\n  })\n}\n\nfunction miss (callbackFunction) {\n  callbackFunction({ status: 'miss' })\n}\n\nfunction findAt (fd, size, pos, lastPos, adjustment, searchKey, callbackFunction, lastKey) {\n  if (lastPos === pos || pos >= size) {\n    miss(callbackFunction)\n  } else {\n    readLine(fd, pos, function (line) {\n      const tokens = line.split(/\\s+/)\n      const key = tokens[0]\n\n      if (key === searchKey) {\n        callbackFunction({ status: 'hit', key: key, line: line, tokens: tokens })\n      } else if (adjustment === 1 || key === lastKey) {\n        miss(callbackFunction)\n      } else {\n        adjustment = Math.ceil(adjustment * 0.5)\n\n        if (key < searchKey) {\n          findAt(fd, size, pos + adjustment, pos, adjustment, searchKey, callbackFunction, key)\n        } else {\n          findAt(fd, size, pos - adjustment, pos, adjustment, searchKey, callbackFunction, key)\n        }\n      }\n    })\n  }\n}\n\nfunction find (searchKey, callback) {\n  const indexFile = this\n\n  indexFile.open(function (err, fd, done) {\n    if (err) {\n      console.log(err)\n    } else {\n      const size = getFileSize(indexFile.filePath) - 1\n      const pos = Math.ceil(size / 2)\n      findAt(fd, size, pos, null, pos, searchKey,\n        function (result) { callback(result); done() })\n    }\n  })\n}\n\nfunction lookupFromFile (word, callback) {\n  this.find(word, function (record) {\n    let indexRecord = null\n\n    if (record.status === 'hit') {\n      const ptrs = []; const offsets = []\n\n      for (let i = 0; i < parseInt(record.tokens[3]); i++) { ptrs.push(record.tokens[i]) }\n\n      for (let i = 0; i < parseInt(record.tokens[2]); i++) { offsets.push(parseInt(record.tokens[ptrs.length + 6 + i], 10)) }\n\n      indexRecord = {\n        lemma: record.tokens[0],\n        pos: record.tokens[1],\n        ptrSymbol: ptrs,\n        senseCnt: parseInt(record.tokens[ptrs.length + 4], 10),\n        tagsenseCnt: parseInt(record.tokens[ptrs.length + 5], 10),\n        synsetOffset: offsets\n      }\n    }\n\n    callback(indexRecord)\n  })\n}\n\nfunction lookup (word, callback) {\n  this.lookupFromFile(word, callback)\n}\n\nconst IndexFile = function (dataDir, name) {\n  WordNetFile.call(this, dataDir, 'index.' + name)\n}\n\nutil.inherits(IndexFile, WordNetFile)\n\nIndexFile.prototype.lookupFromFile = lookupFromFile\nIndexFile.prototype.lookup = lookup\nIndexFile.prototype.find = find\n\nIndexFile.prototype._findAt = findAt\n\nmodule.exports = IndexFile\n"
  },
  {
    "path": "lib/natural/wordnet/wordnet.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst IndexFile = require('./index_file')\nconst DataFile = require('./data_file')\n\nfunction pushResults (data, results, offsets, callback) {\n  const wordnet = this\n\n  if (offsets.length === 0) {\n    callback(results)\n  } else {\n    data.get(offsets.pop(), function (record) {\n      results.push(record)\n      wordnet.pushResults(data, results, offsets, callback)\n    })\n  }\n}\n\nfunction lookupFromFiles (files, results, word, callback) {\n  const wordnet = this\n\n  if (files.length === 0) { callback(results) } else {\n    const file = files.pop()\n\n    file.index.lookup(word, function (record) {\n      if (record) {\n        wordnet.pushResults(file.data, results, record.synsetOffset, function () {\n          wordnet.lookupFromFiles(files, results, word, callback)\n        })\n      } else {\n        wordnet.lookupFromFiles(files, results, word, callback)\n      }\n    })\n  }\n}\n\nfunction lookup (word, callback) {\n  word = word.toLowerCase().replace(/\\s+/g, '_')\n\n  this.lookupFromFiles([\n    { index: this.nounIndex, data: this.nounData },\n    { index: this.verbIndex, data: this.verbData },\n    { index: this.adjIndex, data: this.adjData },\n    { index: this.advIndex, data: this.advData }\n  ], [], word, callback)\n}\n\nfunction get (synsetOffset, pos, callback) {\n  const dataFile = this.getDataFile(pos)\n\n  dataFile.get(synsetOffset, function (result) {\n    callback(result)\n  })\n}\n\nfunction getDataFile (pos) {\n  switch (pos) {\n    case 'n':\n      return this.nounData\n    case 'v':\n      return this.verbData\n    case 'a': case 's':\n      return this.adjData\n    case 'r':\n      return this.advData\n  }\n}\n\nfunction loadSynonyms (synonyms, results, ptrs, callback) {\n  const wordnet = this\n\n  if (ptrs.length > 0) {\n    const ptr = ptrs.pop()\n\n    this.get(ptr.synsetOffset, ptr.pos, function (result) {\n      synonyms.push(result)\n      wordnet.loadSynonyms(synonyms, results, ptrs, callback)\n    })\n  } else {\n    wordnet.loadResultSynonyms(synonyms, results, callback)\n  }\n}\n\nfunction loadResultSynonyms (synonyms, results, callback) {\n  const wordnet = this\n\n  if (results.length > 0) {\n    const result = results.pop()\n    wordnet.loadSynonyms(synonyms, results, result.ptrs, callback)\n  } else { callback(synonyms) }\n}\n\nfunction lookupSynonyms (word, callback) {\n  const wordnet = this\n\n  wordnet.lookup(word, function (results) {\n    wordnet.loadResultSynonyms([], results, callback)\n  })\n}\n\nfunction getSynonyms () {\n  const wordnet = this\n  const callback = arguments[2] ? arguments[2] : arguments[1]\n  const pos = arguments[0].pos ? arguments[0].pos : arguments[1]\n  const synsetOffset = arguments[0].synsetOffset ? arguments[0].synsetOffset : arguments[0]\n\n  this.get(synsetOffset, pos, function (result) {\n    wordnet.loadSynonyms([], [], result.ptrs, callback)\n  })\n}\n\nfunction WordNet (dataDir) {\n  let WNdb = null\n  if (!dataDir) {\n    try {\n      WNdb = require('wordnet-db')\n    } catch (e) {\n      console.error(\"Please 'npm install wordnet-db' before using WordNet module or specify a dict directory.\")\n      throw e\n    }\n    dataDir = WNdb.path\n  }\n\n  this.nounIndex = new IndexFile(dataDir, 'noun')\n  this.verbIndex = new IndexFile(dataDir, 'verb')\n  this.adjIndex = new IndexFile(dataDir, 'adj')\n  this.advIndex = new IndexFile(dataDir, 'adv')\n\n  this.nounData = new DataFile(dataDir, 'noun')\n  this.verbData = new DataFile(dataDir, 'verb')\n  this.adjData = new DataFile(dataDir, 'adj')\n  this.advData = new DataFile(dataDir, 'adv')\n\n  this.get = get\n  this.lookup = lookup\n  this.lookupFromFiles = lookupFromFiles\n  this.pushResults = pushResults\n  this.loadResultSynonyms = loadResultSynonyms\n  this.loadSynonyms = loadSynonyms\n  this.lookupSynonyms = lookupSynonyms\n  this.getSynonyms = getSynonyms\n  this.getDataFile = getDataFile\n}\n\nmodule.exports = WordNet\n"
  },
  {
    "path": "lib/natural/wordnet/wordnet_file.js",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nconst fs = require('fs')\n\nfunction appendLineChar (fd, pos, buffPos, buff, callbackFunction) {\n  if (buffPos >= buff.length) {\n    const newBuff = Buffer.alloc(buff.length * 2)\n    buff.copy(newBuff, 0, 0, buff.length)\n    buff = newBuff\n  }\n\n  fs.read(fd, buff, buffPos, 1, pos, function (err, count) {\n    if (err) { console.log(err) } else {\n      if (buff[buffPos] === 10 || buffPos === buff.length) {\n        callbackFunction(buff.slice(0, buffPos).toString('UTF-8'))\n      } else {\n        appendLineChar(fd, pos + 1, buffPos + 1, buff, callbackFunction)\n      }\n    }\n  })\n}\n\nfunction open (callback) {\n  const filePath = this.filePath\n\n  fs.open(filePath, 'r', null, function (err, fd) {\n    if (err) {\n      console.log('Unable to open %s', filePath)\n      return\n    }\n    callback(err, fd, function () {\n      fs.close(fd, function (error) {\n        if (error) {\n          throw error\n        }\n      })\n    })\n  })\n}\n\nconst WordNetFile = function (dataDir, fileName) {\n  this.dataDir = dataDir\n  this.fileName = fileName\n  this.filePath = require('path').join(this.dataDir, this.fileName)\n}\n\nWordNetFile.prototype.open = open\nWordNetFile.appendLineChar = appendLineChar\n\nmodule.exports = WordNetFile\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"natural\",\n  \"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.\",\n  \"version\": \"8.1.1\",\n  \"homepage\": \"https://github.com/NaturalNode/natural\",\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"git://github.com/NaturalNode/natural.git\"\n  },\n  \"engines\": {\n    \"node\": \">=0.4.10\"\n  },\n  \"dependencies\": {\n    \"afinn-165\": \"^2.0.2\",\n    \"afinn-165-financialmarketnews\": \"^3.0.0\",\n    \"apparatus\": \"^0.0.10\",\n    \"dotenv\": \"^17.3.1\",\n    \"memjs\": \"^1.3.2\",\n    \"mongoose\": \"^9.2.1\",\n    \"pg\": \"^8.18.0\",\n    \"redis\": \"^5.11.0\",\n    \"safe-stable-stringify\": \"^2.5.0\",\n    \"stopwords-iso\": \"^1.1.0\",\n    \"sylvester\": \"^0.0.21\",\n    \"underscore\": \"^1.13.0\",\n    \"uuid\": \"^13.0.0\",\n    \"wordnet-db\": \"^3.1.14\"\n  },\n  \"devDependencies\": {\n    \"@rollup/plugin-commonjs\": \"^29.0.0\",\n    \"@rollup/plugin-json\": \"^6.1.0\",\n    \"@rollup/plugin-node-resolve\": \"^16.0.3\",\n    \"@types/jasmine\": \"^6.0.0\",\n    \"@types/node\": \"^25.2.3\",\n    \"@typescript-eslint/eslint-plugin\": \"^6.21.0\",\n    \"cross-env\": \"^10.1.0\",\n    \"eslint\": \"^8.57.0\",\n    \"eslint-config-standard-with-typescript\": \"^43.0.1\",\n    \"eslint-plugin-import\": \"^2.32.0\",\n    \"eslint-plugin-n\": \"^16.6.2\",\n    \"eslint-plugin-promise\": \"^6.6.0\",\n    \"jasmine\": \"^6.0.0\",\n    \"jasmine-core\": \"^6.0.0\",\n    \"ncp\": \"^2.0.0\",\n    \"nyc\": \"^15.1.0\",\n    \"pegjs\": \"^0.10.0\",\n    \"proxyquire\": \"^2.1.3\",\n    \"rimraf\": \"^5.0.0\",\n    \"rollup\": \"^4.57.1\",\n    \"sinon\": \"^17.0.0\",\n    \"source-map-support\": \"^0.5.21\",\n    \"ts-node\": \"^10.9.2\",\n    \"typescript\": \"^5.9.3\"\n  },\n  \"jscpd\": {\n    \"ignore\": [\n      \"lib/natural/brill_pos_tagger/lib/TF_Parser.js\",\n      \"lib/natural/tokenizers/parser_sentence_tokenizer.js\"\n    ]\n  },\n  \"scripts\": {\n    \"benchmark\": \"node benchmarks\",\n    \"build\": \"npm run build:tests & npm run build:esm\",\n    \"build:esm\": \"rollup -c\",\n    \"build:tests\": \"tsc\",\n    \"clean\": \"rimraf *~ #* *classifier.json dist io_spec/tmp/*.json coverage\",\n    \"test_io\": \"jasmine --random=false io_spec/*_spec.js\",\n    \"test\": \"cross-env NODE_PATH=. jasmine --random=false dist/cjs/spec/*_spec.js\",\n    \"smoke:esm\": \"node spec/esm/smoke.mjs\",\n    \"coverage\": \"nyc --no-clean npm run test && nyc --no-clean npm run test_io\",\n    \"lint\": \"eslint . --ext .ts\"\n  },\n  \"license\": \"MIT\",\n  \"author\": \"Chris Umbel <chris@chrisumbel.com>\",\n  \"keywords\": [\n    \"natural language processing\",\n    \"artifical intelligence\",\n    \"statistics\",\n    \"Porter stemmer\",\n    \"Lancaster stemmer\",\n    \"tokenizer\",\n    \"bigram\",\n    \"trigram\",\n    \"quadgram\",\n    \"ngram\",\n    \"stemmer\",\n    \"bayes\",\n    \"classifier\",\n    \"phonetic\",\n    \"metaphone\",\n    \"inflector\",\n    \"Wordnet\",\n    \"tf-idf\",\n    \"logistic regression\",\n    \"doublemetaphone\",\n    \"double\",\n    \"jaro-winkler distance\",\n    \"levenshtein distance\",\n    \"string distance\",\n    \"part-of-speech tagger\",\n    \"Eric Brill\",\n    \"Brill tagger\",\n    \"sentiment analysis\",\n    \"maximum entropy modelling\"\n  ],\n  \"main\": \"./lib/natural/index.js\",\n  \"types\": \"./lib/natural/index.d.ts\",\n  \"maintainers\": [\n    {\n      \"name\": \"Chris Umbel\",\n      \"email\": \"chris@chrisumbel.com\",\n      \"web\": \"http://www.chrisumbel.com\"\n    },\n    {\n      \"name\": \"Rob Ellis\",\n      \"email\": \"rob@silentrob.me\"\n    },\n    {\n      \"name\": \"Ken Koch\",\n      \"email\": \"kkoch986@gmail.com\"\n    },\n    {\n      \"name\": \"Hugo W.L. ter Doest\",\n      \"email\": \"hwl.ter.doest@gmail.com\"\n    }\n  ]\n}\n"
  },
  {
    "path": "rollup.config.mjs",
    "content": "import resolve from '@rollup/plugin-node-resolve'\nimport commonjs from '@rollup/plugin-commonjs'\nimport json from '@rollup/plugin-json'\nimport { builtinModules, createRequire } from 'node:module'\n\nconst require = createRequire(import.meta.url)\nconst pkg = require('./package.json')\n\nconst deps = Object.keys(pkg.dependencies || {})\nconst peerDeps = Object.keys(pkg.peerDependencies || {})\n\nconst jsonEntryDeps = new Set(\n  deps.filter((dep) => {\n    try {\n      return require.resolve(dep).endsWith('.json')\n    } catch {\n      return false\n    }\n  })\n)\nconst nodeBuiltins = builtinModules.flatMap((name) => (\n  name.startsWith('node:') ? [name, name.slice(5)] : [name, `node:${name}`]\n))\n\nconst external = (id) => (\n  nodeBuiltins.includes(id) ||\n  deps.some((dep) => (id === dep || id.startsWith(`${dep}/`)) && !jsonEntryDeps.has(dep)) ||\n  peerDeps.some((dep) => id === dep || id.startsWith(`${dep}/`))\n)\n\nexport default {\n  input: 'lib/natural/index.js', // Your entry point\n  external,\n  output: {\n    dir: 'dist/esm', // Output directory for ESM build\n    format: 'esm', // Output format as ESM\n    sourcemap: true, // Optional: generate source maps\n    preserveModules: true,\n    preserveModulesRoot: 'lib/natural'\n  },\n  plugins: [\n    resolve({\n      preferBuiltins: true // Prefer Node.js built-in modules over local modules\n    }), // Resolve modules from node_modules\n    commonjs({\n      esmExternals: (id) => !nodeBuiltins.includes(id),\n      requireReturnsDefault: 'auto'\n    }), // Convert CommonJS modules to ES modules\n    json() // Add the JSON plugin to handle JSON imports\n  ]\n}\n"
  },
  {
    "path": "spec/MaxEntClassifier_spec.ts",
    "content": "/*\nUnit test of Classifier\nCopyright (C) 2018 Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  Context,\n  FeatureSet,\n  Sample,\n  MaxEntClassifier as Classifier,\n  SEElement\n} from 'lib/natural'\n\nimport type { Element } from 'lib/natural'\n\nconst classifierFilename = 'classifier.json'\nconst minImprovement = 0.01\nconst nrIterations = 20\n\nlet sample: Sample\nlet featureSet: FeatureSet\nlet classifier: Classifier\n\nconst DEBUG = false\n\ndescribe('The MaxEnt module', function () {\n  it('The Sample class creates a sample', function () {\n    sample = new Sample()\n    sample.addElement(new SEElement('x', new Context('0')))\n    sample.addElement(new SEElement('x', new Context('0')))\n    sample.addElement(new SEElement('x', new Context('0')))\n    sample.addElement(new SEElement('y', new Context('0')))\n    sample.addElement(new SEElement('y', new Context('0')))\n    sample.addElement(new SEElement('y', new Context('0')))\n\n    sample.addElement(new SEElement('x', new Context('1')))\n    sample.addElement(new SEElement('y', new Context('1')))\n    sample.addElement(new SEElement('y', new Context('1')))\n    sample.addElement(new SEElement('y', new Context('1')))\n\n    expect(sample.size()).toBe(10)\n  })\n\n  it('The FeatureSet class creates a feature set', function () {\n    featureSet = new FeatureSet()\n    sample.generateFeatures(featureSet)\n\n    expect(featureSet.size()).toBe(2)\n  })\n\n  it('The Classifier class creates a classifier', function () {\n    // Create a classifier\n    classifier = new Classifier(featureSet, sample)\n\n    expect(classifier).toBeDefined()\n  })\n\n  it('Classifier does not need a correction feature', function () {\n\n  })\n\n  it('The classifier stops training after a specified number or iterations ' +\n    'or when the minimum improvement in likelihood is reached', function () {\n    classifier.train(nrIterations, minImprovement)\n\n    expect(classifier.scaler.iteration).toBeLessThan(nrIterations + 1)\n    if (classifier.scaler.iteration < nrIterations) {\n      expect(classifier.scaler.improvement).toBeLessThan(minImprovement)\n    }\n  })\n\n  it('Save classifer to a file', function (done) {\n    classifier.save(classifierFilename, function (err, c) {\n      if (err !== null) {\n        console.log(err)\n      } else {\n        DEBUG && console.log('Classifier saved to ' + classifierFilename)\n      }\n      done()\n    })\n  })\n\n  let newClassifier: Classifier\n  it('Load classifer', function (done) {\n    classifier.load(classifierFilename, SEElement as unknown as Element, function (err, c) {\n      if (err !== null) {\n        console.log(err)\n      } else if (c !== undefined) {\n        DEBUG && console.log('Classifier loaded from ' + classifierFilename)\n        newClassifier = c\n      }\n      done()\n    })\n    if (newClassifier !== undefined) {\n      classifier = newClassifier\n    }\n  })\n\n  it('The classifier classifies events', function () {\n    let context = new Context('0')\n    DEBUG && console.log('Classes plus scores ' + JSON.stringify(classifier.getClassifications(context)))\n    let classification = classifier.classify(context)\n    expect(classification).toBe('x')\n\n    context = new Context('1')\n    DEBUG && console.log('Classes plus scores ' + JSON.stringify(classifier.getClassifications(context)))\n    classification = classifier.classify(context)\n    expect(classification).toBe('y')\n  })\n})\n"
  },
  {
    "path": "spec/SentimentAnalyzer_spec.ts",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  SentimentAnalyzer as Analyzer,\n  PorterStemmer,\n  PorterStemmerPt,\n  PorterStemmerNl,\n  PorterStemmerEs,\n  PorterStemmerFr,\n  PorterStemmerIt\n} from 'lib/natural'\n\nimport type { Stemmer } from 'lib/natural'\n\nconst testConfigurations = [\n  {\n    language: 'Basque',\n    stemmer: '',\n    vocabularyType: 'senticon',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Catalan',\n    stemmer: '',\n    vocabularyType: 'senticon',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Dutch',\n    stemmer: 'PorterStemmerNl',\n    vocabularyType: 'pattern',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'English',\n    stemmer: 'PorterStemmer',\n    vocabularyType: 'afinn',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'English',\n    stemmer: 'PorterStemmer',\n    vocabularyType: 'senticon',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n\n    ]\n  },\n  {\n    language: 'English',\n    stemmer: 'PorterStemmer',\n    vocabularyType: 'pattern',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { sentence: 'constructor hasOwnProperty toString setPrototypeOf', score: 0 }\n    ]\n  },\n  {\n    language: 'French',\n    stemmer: 'PorterStemmerFr',\n    vocabularyType: 'pattern',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Galician',\n    stemmer: '',\n    vocabularyType: 'senticon',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Italian',\n    stemmer: 'PorterStemmerIt',\n    vocabularyType: 'pattern',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Spanish',\n    stemmer: 'PorterStemmerEs',\n    vocabularyType: 'afinn',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Spanish',\n    stemmer: 'PorterStemmerEs',\n    vocabularyType: 'senticon',\n    testSentences: [\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 },\n      { 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 }\n    ]\n  },\n  {\n    language: 'Portuguese',\n    stemmer: 'PorterStemmerPt',\n    vocabularyType: 'afinn',\n    testSentences: [\n      { sentence: 'Juan Carlos prepara regresso a Espanha. Victoria Federica, neta do rei emérito, confirmou a informação à imprensa.', score: 0 },\n      { sentence: 'fortalecimento', score: 2 },\n      { sentence: 'fortalecimento controverso', score: 0 }\n    ]\n  }\n\n]\n\nfunction detStemmer (st: string): Stemmer | undefined {\n  switch (st) {\n    case 'PorterStemmerPt':\n      return PorterStemmerPt\n    case 'PorterStemmerEs':\n      return PorterStemmerEs\n    case 'PorterStemmerIt':\n      return PorterStemmerIt\n    case 'PorterStemmerFr':\n      return PorterStemmerFr\n    case 'PorterStemmerNl':\n      return PorterStemmerNl\n    case 'PorterStemmer':\n      return PorterStemmer\n    default:\n      return undefined\n  }\n}\n\ndescribe('The sentiment analyzer analyzes the sentiment of sentences in multiple languages using different types of vocabularies', function () {\n  testConfigurations.forEach((config, index) => {\n    it('Should analyze a set of sentences with each configuration ' +\n      '(' + config.language + ', ' + config.vocabularyType + ', ' + (config.stemmer ?? 'without stemmer') + ')', function () {\n      // Create the stemmer\n      const stemmer = detStemmer(config.stemmer)\n      // Create analyzer\n      const analyzer = new Analyzer(config.language, stemmer, config.vocabularyType)\n\n      config.testSentences.forEach(sentencePlusScore => {\n        const words = sentencePlusScore.sentence.split(/\\s+/)\n        const score = analyzer.getSentiment(words)\n        expect(score).toEqual(sentencePlusScore.score)\n        if (score !== sentencePlusScore.score) {\n          console.log(`Wrong score for sentence ${sentencePlusScore.sentence}: \\\n            expected ${sentencePlusScore.score} but got \\\n            ${score}.Sentence: sentencePlusScore.sentence`)\n        }\n      })\n    })\n  })\n})\n"
  },
  {
    "path": "spec/WordPunctTokenizer_spec.ts",
    "content": "/*\nCopyright (c) 2018, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { WordPunctTokenizer } from 'lib/natural'\nconst tokenizer = new WordPunctTokenizer()\n\nconst sentences = [\n  'Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie',\n  '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.',\n  \"'Oftewel 50 basispunten, dat zijn heel dure basispunten', zei Knot donderdag in de Tweede Kamer.\",\n  'Door: Robert Giebels 5 februari 2015, 21:55 Bron: ANP',\n  'De financiële specialisten onder de Kamerleden hadden Knot gevraagd uitleg te geven over het ECB-besluit van 22 januari.;',\n  'Hoe gaat de tokenizer om met? vraagtekens ?',\n  'Verbindingsstreepje in  een woord: ECB-besluit',\n  'Gedachtestreepje in een zin met spaties eromheen - dit is de gedachte na het streepje ! '\n]\n\nconst expectedResults = [\n  ['Knot', ':', 'geldpers', 'aanzetten', 'is', 'paardenmiddel', 'voor', 'half', 'procent', 'inflatie'],\n  ['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.'],\n  [\"'\", 'Oftewel', '50', 'basispunten', ',', 'dat', 'zijn', 'heel', 'dure', 'basispunten', \"'\", ',', 'zei', 'Knot', 'donderdag', 'in', 'de', 'Tweede', 'Kamer', '.'],\n  ['Door', ':', 'Robert', 'Giebels', '5', 'februari', '2015', ',', '21', ':', '55', 'Bron', ':', 'ANP'],\n  ['De', 'financiële', 'specialisten', 'onder', 'de', 'Kamerleden', 'hadden', 'Knot', 'gevraagd', 'uitleg', 'te', 'geven', 'over', 'het', 'ECB-besluit', 'van', '22', 'januari', '.', ';'],\n  ['Hoe', 'gaat', 'de', 'tokenizer', 'om', 'met', '?', 'vraagtekens', '?'],\n  ['Verbindingsstreepje', 'in', 'een', 'woord', ':', 'ECB-besluit'],\n  ['Gedachtestreepje', 'in', 'een', 'zin', 'met', 'spaties', 'eromheen', '-', 'dit', 'is', 'de', 'gedachte', 'na', 'het', 'streepje', '!']\n]\n\ndescribe('Word Punctuation Tokenizer', function () {\n  it('should correctly tokenize words and punctuation symbols', function () {\n    sentences.forEach((sentence, index) => {\n      const result = tokenizer.tokenize(sentence)\n      expect(result).toEqual(expectedResults[index])\n    })\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_de_spec.ts",
    "content": "/*\nCopyright (c) 2023, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerDe } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerDe()\n\ndescribe('aggressive_tokenizer (de)', function () {\n  it('should tokenize strings with diacritics ä, ö and ü, and esszet ß', function () {\n    expect(tokenizer.tokenize('Es werden nur Maßnahmen gefördert, die nicht aufgrund einer Rechtsvorschrift umgesetzt werden müssen.')).toEqual(\n      ['Es', 'werden', 'nur', 'Maßnahmen', 'gefördert', 'die', 'nicht', 'aufgrund', 'einer',\n        'Rechtsvorschrift', 'umgesetzt', 'werden', 'müssen'])\n    expect(tokenizer.tokenize('Anträge sind vor Beginn der jeweiligen Maßnahme zu stellen.')).toEqual(\n      ['Anträge', 'sind', 'vor', 'Beginn', 'der', 'jeweiligen', 'Maßnahme', 'zu', 'stellen'])\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_es_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWé.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerEs } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerEs()\n\ndescribe('aggressive_tokenizer (es)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('hola yo me llamo eduardo y esudié ingeniería')).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería'])\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('hola yo me llamo eduardo y esudié ingeniería'.tokenize()).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']);\n  });\n  */\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_fr_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerFr } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerFr()\n\nconst 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.\"\n\nconst tokenized = ['Affectueusement',\n  'surnommé',\n  'Gabo',\n  'dans',\n  'toute',\n  'l',\n  'Amérique',\n  'latine',\n  'le',\n  'Colombien',\n  'Gabriel',\n  'Garcia',\n  'Marquez',\n  'prix',\n  'Nobel',\n  'de',\n  'littérature',\n  '1982',\n  'l',\n  'un',\n  'des',\n  'plus',\n  'grands',\n  'écrivains',\n  'du',\n  'XXe',\n  'siècle',\n  'est',\n  'mort',\n  'À',\n  'son',\n  'domicile',\n  'de',\n  'Mexico',\n  'jeudi',\n  '17',\n  'avril',\n  'Il',\n  'était',\n  'âgé',\n  'de',\n  '87',\n  'ans',\n  'Son',\n  'Œuvre',\n  'a',\n  'été',\n  'traduite',\n  'dans',\n  'toutes',\n  'les',\n  'langues',\n  'ou',\n  'presque',\n  'et',\n  'vendue',\n  'à',\n  'quelque',\n  '50',\n  'millions',\n  'd',\n  'exemplaires']\n\ndescribe('aggressive_tokenizer (fr)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize(text)).toEqual(tokenized)\n  })\n\n  it('should handle hyphens in words correctly', function () {\n    const sentence = 'Des sous-pages dans le sous-bois de la ville de Paris'\n    const res = tokenizer.tokenize(sentence)\n    const expectedRes = ['Des', 'sous-pages', 'dans', 'le', 'sous-bois', 'de', 'la', 'ville', 'de', 'Paris']\n    expect(res).toEqual(expectedRes)\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect(text.tokenize()).toEqual(tokenized);\n  });\n  */\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_hi_spec.ts",
    "content": "/*\nfile aggressive_tokenizer_hi_spec.js , located at spec\\aggressive_tokenizer_hi_spec.js is licensed as follows:\n- (The MIT License)\n- Copyright (c) 2023 Mukesh Singh Bisht\n\nPermission is hereby granted, free of charge, to any person or entity obtaining a copy\nof  file aggressive_tokenizer_hi_spec.js and its content(the \"Software\"), to deal in the\nSoftware without restriction, including without limitation the rights to use, copy,\nmodify, merge, publish, distribute, sublicense, and/or sell copies of the Software,\nand to permit persons to whom the Software is furnished to do so, subject to the following\nconditions:\n\n1. The above copyright notice and this permission notice shall be included in all copies\n   or substantial portions of the Software.\n\n2. Proper credit must be given to the original author Mukesh Singh Bisht, along with the\n   date of authorship specified as July 23, 2023, in any usage, distribution, or\n   modification of the Software.\n\nTHIS SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,\nINCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR\nPURPOSE, AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE\nFOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT, OR\nOTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER\nDEALINGS IN THE SOFTWARE.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerHi } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerHi()\n\ndescribe('aggressive_tokenizer (hi)', function () {\n  it('should tokenize strings', function () {\n    const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं'\n    const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n  it('should tokenize strings including english words', function () {\n    const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं congrats mukesh'\n    const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं', 'congrats', 'mukesh']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n\n  it('should swallow viram(stop) symbols', function () {\n    const string = 'स्वतंत्रता दिवस की हार्दिक शुभकामनाएं । congrats mukesh'\n    const expectedArray = ['स्वतंत्रता', 'दिवस', 'की', 'हार्दिक', 'शुभकामनाएं', 'congrats', 'mukesh']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n  it('should swallow dirgh viram(stop) symbols', function () {\n    const string = 'राजा बाजीराव ॥ '\n    const expectedArray = ['राजा', 'बाजीराव']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n  it('should swallow trailing off symbols', function () {\n    const string = 'राजा बाजीराव ...'\n    const expectedArray = ['राजा', 'बाजीराव']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n  it('should swallow question mark symbols', function () {\n    const string = 'राजा बाजीराव ?'\n    const expectedArray = ['राजा', 'बाजीराव']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n  it('should swallow comma mark symbols', function () {\n    const string = 'राजा, बाजीराव'\n    const expectedArray = ['राजा', 'बाजीराव']\n    expect(tokenizer.tokenize(string)).toEqual(expectedArray)\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_nl_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel, Martijn de Boer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWé.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerNl } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerNl()\n\ndescribe('aggressive_tokenizer (nl)', function () {\n  it('should tokenize strings', function () {\n    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'])\n  })\n\n  it('should handle hyphens in words correctly', function () {\n    const sentence = 'clearing-systeem front-office-automatisering christelijk-historisch mond-op-mond, kant-en-klaar, kruidje-roer-me-niet, doe-het-zelver'\n    const res = tokenizer.tokenize(sentence)\n    const expectedRes = ['clearing-systeem', 'front-office-automatisering', 'christelijk-historisch', 'mond-op-mond', 'kant-en-klaar', 'kruidje-roer-me-niet', 'doe-het-zelver']\n    expect(res).toEqual(expectedRes)\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_pt_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWé.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerPt } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerPt()\n\ndescribe('aggressive_tokenizer (pt)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('isso é coração')).toEqual(['isso', 'é', 'coração'])\n  })\n\n  it('should swallow punctuation', function () {\n    expect(tokenizer.tokenize('isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('isso é coração, no?')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('eu vou... pause')).toEqual(['eu', 'vou', 'pause'])\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizer } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizer()\n\ndescribe('aggressive_tokenizer (en)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('these are things')).toEqual(['these', 'are', 'things'])\n  })\n\n  it('should swallow punctuation', function () {\n    expect(tokenizer.tokenize('these are things, no')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('these are things, no?')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.these are things, no')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('i shal... pause')).toEqual(['i', 'shal', 'pause'])\n  })\n\n  it('should remove underscores', function () {\n    expect(tokenizer.tokenize('_ hi_this_is_a_test_case_ for__removing___underscores_')).toEqual(['hi', 'this', 'is', 'a', 'test', 'case', 'for', 'removing', 'underscores'])\n  })\n\n  it('should handle the use of hyphen inside words (issue #656)', function () {\n    expect(tokenizer.tokenize('links text-based opposed image-based links/CTA\\'s')).toEqual(\n      ['links', 'text-based', 'opposed', 'image-based', 'links/CTA\\'s'])\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_sv_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerSv } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerSv()\n\ndescribe('aggressive_tokenizer (sv)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Ett tu tre')).toEqual(['Ett', 'tu', 'tre'])\n  })\n\n  it('should swallow punctuation', function () {\n    expect(tokenizer.tokenize('Ett, tu, tre')).toEqual(['Ett', 'tu', 'tre'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('Ett, tu, tre?')).toEqual(['Ett', 'tu', 'tre'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.Ett, tu, tre')).toEqual(['Ett', 'tu', 'tre'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('Ett, tu... tre')).toEqual(['Ett', 'tu', 'tre'])\n  })\n\n  it('should not split on hyphen or Swedish letters', function () {\n    expect(tokenizer.tokenize('It-bolaget ägs av en 30-åring')).toEqual(['It-bolaget', 'ägs', 'av', 'en', '30-åring'])\n  })\n})\n"
  },
  {
    "path": "spec/aggressive_tokenizer_vi_spec.ts",
    "content": "/*\nCopyright (c) 2018, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { AggressiveTokenizerVi } from 'lib/natural'\nconst tokenizer = new AggressiveTokenizerVi()\n\ndescribe('aggressive_tokenizer (vi)', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Tôi bị lạc')).toEqual(['Tôi', 'bị', 'lạc'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('Làm ơn đợi một lát!')).toEqual(['Làm', 'ơn', 'đợi', 'một', 'lát'])\n    expect(tokenizer.tokenize('Tôi đang tìm John.')).toEqual(['Tôi', 'đang', 'tìm', 'John'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.Đi thẳng, sau đó rẽ trái / phải')).toEqual(['Đi', 'thẳng', 'sau', 'đó', 'rẽ', 'trái', 'phải'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('.Xin giữ máy!')).toEqual(['Xin', 'giữ', 'máy'])\n  })\n})\n"
  },
  {
    "path": "spec/bayes_classifier_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { BayesClassifier, PorterStemmer } from 'lib/natural'\n\nfunction setupClassifier (): BayesClassifier {\n  const classifier = new BayesClassifier()\n  classifier.addDocument(['fix', 'box'], 'computing')\n  classifier.addDocument(['write', 'code'], 'computing')\n  classifier.addDocument(['script', 'code'], 'computing')\n  classifier.addDocument(['write', 'book'], 'literature')\n  classifier.addDocument(['read', 'book'], 'literature')\n  classifier.addDocument(['study', 'book'], 'literature')\n  return classifier\n}\n\ndescribe('bayes classifier', function () {\n  describe('classifier', function () {\n    it('should classify with arrays', function () {\n      const classifier = setupClassifier()\n      classifier.train()\n      expect(classifier.classify(['bug', 'code'])).toBe('computing')\n      expect(classifier.classify(['read', 'thing'])).toBe('literature')\n    })\n\n    it('should classify with parallel training', function () {\n      const classifier = setupClassifier()\n      // Check for parallel method\n      if (classifier.Threads !== null) {\n        classifier.trainParallel(2, function (err) {\n          if (err !== null) {\n            console.log(err)\n            return\n          }\n          expect(classifier.classify(['bug', 'code'])).toBe('computing')\n          expect(classifier.classify(['read', 'thing'])).toBe('literature')\n        })\n      }\n    })\n\n    it('should classify with parallel batched training', function () {\n      const classifier = setupClassifier()\n      // Check for parallel method\n      if (classifier.Threads !== null) {\n        classifier.on('doneTraining', function () {\n          expect(classifier.classify(['bug', 'code'])).toBe('computing')\n          expect(classifier.classify(['read', 'thing'])).toBe('literature')\n          // asyncSpecDone();\n        })\n        classifier.trainParallelBatches({ numThreads: 2, batchSize: 2 })\n      }\n    })\n\n    it('should provide all classification scores', function () {\n      const classifier = setupClassifier()\n      classifier.train()\n\n      expect(classifier.getClassifications('i write code')[0].label).toBe('computing')\n      expect(classifier.getClassifications('i write code')[1].label).toBe('literature')\n    })\n\n    function setupClassifierWithSentences (): BayesClassifier {\n      const classifier = new BayesClassifier()\n      classifier.addDocument('i fixed the box', 'computing')\n      classifier.addDocument('i write code', 'computing')\n      classifier.addDocument('nasty script code', 'computing')\n      classifier.addDocument('write a book', 'literature')\n      classifier.addDocument('read a book', 'literature')\n      classifier.addDocument('study the books', 'literature')\n      return classifier\n    }\n\n    it('should classify with strings', function () {\n      const classifier = setupClassifierWithSentences()\n      classifier.train()\n      expect(classifier.classify('a bug in the code')).toBe('computing')\n      expect(classifier.classify('read all the books')).toBe('literature')\n    })\n\n    it('should classify and re-classify after document-removal', function () {\n      const classifier = new BayesClassifier()\n      const classifications = new Map<string, number>()\n\n      // Add some good/bad docs and train\n      classifier.addDocument('foo bar baz', 'good')\n      classifier.addDocument('qux zooby', 'bad')\n      classifier.addDocument('asdf qwer', 'bad')\n      classifier.train()\n\n      expect(classifier.classify('foo')).toBe('good')\n      expect(classifier.classify('qux')).toBe('bad')\n\n      // Remove one of the bad docs, retrain\n      classifier.removeDocument('qux zooby', 'bad')\n      classifier.retrain()\n\n      // Simple `classify` will still return a single result, even if\n      // ratio for each side is equal -- have to compare actual values in\n      // the classifications, should be equal since qux is unclassified\n      const arr = classifier.getClassifications('qux')\n      let item: { label: string, value: number }\n      for (let i = 0, ii = arr.length; i < ii; i++) {\n        item = arr[i]\n        classifications.set(item.label, item.value)\n      }\n      expect(classifications.get('good')).toEqual(classifications.get('bad'))\n\n      // Re-classify as good, retrain\n      classifier.addDocument('qux zooby', 'good')\n      classifier.retrain()\n\n      // Should now be good, original docs should be unaffected\n      expect(classifier.classify('foo')).toBe('good')\n      expect(classifier.classify('qux')).toBe('good')\n    })\n\n    it('should serialize and deserialize a working classifier', function () {\n      const classifier = setupClassifierWithSentences()\n      const objAsString = JSON.stringify(classifier)\n      const obj: Record<string, unknown> = JSON.parse(objAsString)\n      const newClassifier = BayesClassifier.restore(obj)\n\n      newClassifier.addDocument('kick a ball', 'sports')\n      newClassifier.addDocument('hit some balls', 'sports')\n      newClassifier.addDocument('kick and punch', 'sports')\n\n      newClassifier.train()\n\n      expect(newClassifier.classify('a bug in the code')).toBe('computing')\n      expect(newClassifier.classify('read all the books')).toBe('literature')\n      expect(newClassifier.classify('kick butt')).toBe('sports')\n    })\n\n    it('should accept an optional smoothing parameter for the Bayesian estimates', function () {\n      const defaultClassifier = new BayesClassifier()\n      const newClassifier1 = new BayesClassifier(PorterStemmer)\n      const newClassifier2 = new BayesClassifier(PorterStemmer, 0.1)\n\n      expect(defaultClassifier.classifier.smoothing).toBe(1.0)\n      expect(newClassifier1.classifier.smoothing).toBe(1.0)\n      expect(newClassifier2.classifier.smoothing).toBe(0.1)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/brill_pos_tagger_spec.ts",
    "content": "/*\nUnit test for Brill's POS Tagger: test against the pos module\nCopyright (C) 2019 Hugo W.L. ter Doest\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nimport { WordTokenizer, Lexicon, RuleSet, BrillPOSTagger } from 'lib/natural'\nimport type { Sentence, TagResults } from 'lib/natural'\n\nimport * as englishSentences from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json'\n\nimport jsonData from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans_expected_tag_results.json'\n\nimport * as dutchSentences from '../spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json'\n\nconst englishTagResults: TagResults = jsonData as TagResults\nconst DEBUG = false\n\n// Compares two tagged sentences. First one is in the old POSJS format, i.e.\n// an array of two position arrays. The second one is a Sentence object\n// that holds an array of objects for each position {token: \"string\", tag: \"string\"}\nfunction compareTaggedSentences (sentenceInOldFormat: string[][], sentenceInNewFormat: Sentence): boolean {\n  let equal = true\n  sentenceInOldFormat.forEach(function (wordPlusTag: string[], index: number) {\n    equal = equal &&\n      (wordPlusTag[1] === sentenceInNewFormat.taggedWords[index].tag)\n    DEBUG && console.log(wordPlusTag[1] + ' ' + sentenceInNewFormat.taggedWords[index].tag)\n  })\n  return equal\n}\n\ndescribe('Brill\\'s POS Tagger', function () {\n  let brillPOSTagger: BrillPOSTagger\n  let lexicon: Lexicon\n  let ruleSet: RuleSet\n  const tokenizer = new WordTokenizer()\n\n  it('should process an English newspaper article just like the dariusk/pos-js module', function () {\n    lexicon = new Lexicon('EN', 'NN')\n    expect(lexicon.nrEntries()).toBeGreaterThan(0)\n    ruleSet = new RuleSet('EN')\n    expect(ruleSet.nrRules()).toBeGreaterThan(0)\n    brillPOSTagger = new BrillPOSTagger(lexicon, ruleSet)\n\n    englishSentences.sentences.forEach(function (sentence: string, index: number) {\n      const tokenizedSentence = tokenizer.tokenize(sentence)\n      const taggedSentence = brillPOSTagger.tag(tokenizedSentence)\n      expect(compareTaggedSentences(englishTagResults.results[index], taggedSentence)).toBe(true)\n    })\n  })\n\n  it('should tag a Dutch news paper article', function () {\n    lexicon = new Lexicon('DU', 'N')\n    expect(lexicon.nrEntries()).toBeGreaterThan(0)\n    const ruleSet = new RuleSet('DU')\n    expect(ruleSet.nrRules()).toBeGreaterThan(0)\n    brillPOSTagger = new BrillPOSTagger(lexicon, ruleSet)\n\n    dutchSentences.sentences.forEach(function (sentence, index) {\n      const tokenizedSentence = tokenizer.tokenize(sentence)\n      const taggedSentence = brillPOSTagger.tag(tokenizedSentence)\n      expect(tokenizedSentence.length).toEqual(taggedSentence.taggedWords.length)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/brill_pos_trainer_spec.ts",
    "content": "/*\nUnit test for Brill's POS Trainer\nCopyright (C) 2019 Hugo W.L. ter Doest\n\nThis program is free software: you can redistribute it and/or modify\nit under the terms of the GNU General Public License as published by\nthe Free Software Foundation, either version 3 of the License, or\n(at your option) any later version.\n\nThis program is distributed in the hope that it will be useful,\nbut WITHOUT ANY WARRANTY; without even the implied warranty of\nMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the\nGNU General Public License for more details.\n\nYou should have received a copy of the GNU General Public License\nalong with this program.  If not, see <http://www.gnu.org/licenses/>.\n*/\n\n'use strict'\n\nimport {\n  Corpus,\n  ruleTemplates,\n  RuleTemplate,\n  Sentence,\n  BrillPOSTrainer,\n  BrillPOSTagger,\n  BrillPOSTester\n} from 'lib/natural'\n\nimport type {\n  Lexicon,\n  RuleSet\n} from 'lib/natural'\n\n// Import a JSON file with the brown corpus\nimport brownCorpus from '../spec/test_data/browntag_nolines_excerpt.json'\n\nconst DEBUG = false\nconst JSON_FLAG = 2\n\nfunction selectRuleTemplates (templateNames: string[]): RuleTemplate[] {\n  const templates: RuleTemplate[] = []\n  templateNames.forEach(function (name: string) {\n    if (ruleTemplates[name] !== undefined) {\n      const template = new RuleTemplate(name, ruleTemplates[name])\n      templates.push(template)\n    }\n  })\n  return templates\n}\n\ndescribe('Brill\\'s POS Trainer', function () {\n  let corpus = null\n  let corpora: Corpus[]\n  const percentageTrain = 60\n  let trainLexicon: Lexicon\n  // Templates consider only tags, no words\n  const templateNames = [\n    'NEXT-TAG',\n    'PREV-TAG',\n    'PREV-1-OR-2-OR-3-TAG',\n    'PREV-1-OR-2-TAG',\n    'NEXT1OR2TAG',\n    'NEXT1OR2OR3TAG',\n    'SURROUNDTAG',\n    'PREV2TAG',\n    'NEXT2TAG'\n  ]\n  let templates: RuleTemplate[]\n  let trainer = null\n  let ruleSet: RuleSet\n\n  it('should split the corpus in a training and testing corpus', function () {\n    corpus = new Corpus(brownCorpus, JSON_FLAG, Sentence)\n    DEBUG && console.log('Corpus: ' + JSON.stringify(corpus, null, 2))\n    corpora = corpus.splitInTrainAndTest(percentageTrain)\n    expect(corpora[0].nrSentences() + corpora[1].nrSentences()).toEqual(corpus.nrSentences())\n  })\n\n  it('should build a lexicon from the training corpus', function () {\n    trainLexicon = corpora[0].buildLexicon()\n    // Set default category to noun (NN)\n    // and default category for capitalised words to proper noun (NP)\n    trainLexicon.setDefaultCategories('NN', 'NP')\n    expect(trainLexicon.nrEntries()).not.toEqual(0)\n  })\n\n  it('should set up the rule templates', function () {\n    templates = selectRuleTemplates(templateNames)\n    expect(templates.length).toEqual(templateNames.length)\n  })\n\n  it('should train on the training corpus to derive transformation rules', function () {\n    trainer = new BrillPOSTrainer(1)\n    ruleSet = trainer.train(corpora[0], templates, trainLexicon)\n    expect(ruleSet.nrRules()).toBeGreaterThan(0)\n    expect(trainer.printRulesWithScores()).not.toEqual('')\n  })\n\n  it('should test the derived transformation rules on the test corpus', function () {\n    const tagger = new BrillPOSTagger(trainLexicon, ruleSet)\n    const tester = new BrillPOSTester()\n    const scores = tester.test(corpora[1], tagger)\n    expect(scores[1]).toBeGreaterThan(0)\n  })\n})\n"
  },
  {
    "path": "spec/carry_stemmer_fr_spec.ts",
    "content": "/*\nCopyright (c) 2020, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { CarryStemmerFr as stemmer } from 'lib/natural'\n\n// const snowBallDict = require('spec/test_data/snowball_fr.json')\n\nconst tests = [\n  {\n    input: 'action',\n    output: 'ac'\n  },\n  {\n    input: 'acteur',\n    output: 'ac'\n  },\n  {\n    input: 'actrices',\n    output: 'ac'\n  },\n  {\n    input: 'Dleyton',\n    output: 'Dleyton'\n  },\n  {\n    input: 'volera',\n    output: 'vol'\n  }\n]\n\nconst testSentences = [\n  {\n    input: 'Le petit cheval de manège',\n    output: ['pet', 'cheval', 'manèg']\n  }\n]\n\ndescribe('Carry stemmer', function () {\n  tests.forEach(test => {\n    it('stems ' + test.input + ' correctly', function () {\n      expect(stemmer.stem(test.input)).toBe(test.output)\n    })\n  })\n\n  testSentences.forEach(test => {\n    it('tokenizes and stems ' + test.input + ' correctly', function () {\n      expect(stemmer.tokenizeAndStem(test.input)).toEqual(test.output)\n    })\n  })\n\n  /*\n  it('should perform stemming on a lot of words', function() {\n    var ok = [];\n    var ko = [];\n\n    Object.keys(snowBallDict).forEach(word => {\n\n      var stemmed = stemmer.stem(word);\n      var expectedStem = snowBallDict[word];\n\n      if (stemmed === expectedStem) {\n        ok.push(word);\n      }\n      else {\n        ko.push({\n          word: word,\n          expected: expectedStem,\n          actual: stemmed\n        });\n      }\n    });\n\n    expect(ko.length).toBe(0);\n  });\n*/\n})\n"
  },
  {
    "path": "spec/classifier_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { BayesClassifier } from 'lib/natural'\n\ndescribe('classifier', function () {\n  describe('addDocument', function () {\n    it('should ignore an empty document', function () {\n      const classifier = new BayesClassifier()\n      classifier.addDocument('', 'philosophy')\n      expect(classifier.docs.length).toBe(0)\n    })\n\n    it('should increment features', function () {\n      const classifier = new BayesClassifier()\n      classifier.addDocument('foo', '')\n      classifier.addDocument('foo', '')\n      classifier.addDocument('bar', '')\n      classifier.addDocument('bar', '')\n      classifier.addDocument('bar', '')\n      classifier.addDocument('baz', '')\n      expect(classifier.docs.length).toBe(6)\n      expect(classifier.features.foo).toBe(2)\n      expect(classifier.features.bar).toBe(3)\n      expect(classifier.features.baz).toBe(1)\n    })\n  })\n\n  describe('Classifier - part 1', function () {\n    const pushedEvents: any[] = []\n    function eventRegister (obj: any): void {\n      pushedEvents.push(obj)\n    }\n\n    function assertEventResults (): void {\n      expect(pushedEvents[0].index).toBe(0)\n      expect(pushedEvents[0].total).toBe(6)\n      expect(pushedEvents.length).toBe(6)\n    }\n\n    it('should emit events when documents are added or training is finished', function () {\n      const classifier = new BayesClassifier()\n      classifier.on('trainedWithDocument', eventRegister)\n      classifier.on('doneTraining', assertEventResults)\n\n      classifier.addDocument('i fixed the box', 'computing')\n      classifier.addDocument('i write code', 'computing')\n      classifier.addDocument('nasty script code', 'computing')\n      classifier.addDocument('write a book', 'literature')\n      classifier.addDocument('read a book', 'literature')\n      classifier.addDocument('study the books', 'literature')\n\n      classifier.train()\n      classifier.removeListener('trainedWithDocument', eventRegister)\n      classifier.removeListener('doneTraining', assertEventResults)\n    })\n  })\n\n  describe('Classifier - part 2', function () {\n    let classifier: BayesClassifier\n    beforeEach(function () {\n      classifier = new BayesClassifier()\n      classifier.addDocument('i fixed the box', 'computing')\n      classifier.addDocument('i write code', 'computing')\n      classifier.addDocument('write a book', 'literature')\n      classifier.addDocument('study the books', 'literature')\n    })\n\n    it('should do nothing if text is not a string', function () {\n      expect(classifier.docs.length).toBe(4)\n      classifier.removeDocument(['write a book'], 'literature')\n      classifier.removeDocument(['study the books'], 'literature')\n      expect(classifier.docs.length).toBe(4)\n    })\n\n    it('should do nothing if text is not a match', function () {\n      expect(classifier.docs.length).toBe(4)\n      classifier.removeDocument('something else', 'literature')\n      classifier.removeDocument('another thing', 'literature')\n      expect(classifier.docs.length).toBe(4)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/count_inflector_fr_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { CountInflectorFr } from 'lib/natural'\nconst inflector = new CountInflectorFr()\n\ndescribe('count_inflector (fr)', function () {\n  it('should handle 1er cases', function () {\n    expect(inflector.nth(1)).toBe('1er')\n  })\n\n  it('should handle the 2e cases', function () {\n    expect(inflector.nth(0)).toBe('0e')\n    expect(inflector.nth(2)).toBe('2e')\n    expect(inflector.nth(3)).toBe('3e')\n    expect(inflector.nth(5)).toBe('5e')\n    expect(inflector.nth(11)).toBe('11e')\n    expect(inflector.nth(100)).toBe('100e')\n    expect(inflector.nth(999)).toBe('999e')\n  })\n\n  it('should handle roman numerals', function () {\n    expect(inflector.nth('I')).toBe('Ier')\n    expect(inflector.nth('XX')).toBe('XXe')\n  })\n})\n"
  },
  {
    "path": "spec/count_inflector_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { CountInflector } from 'lib/natural'\nconst inflector = new CountInflector()\n\ndescribe('count_inflector (en)', function () {\n  it('should handle 1st cases', function () {\n    expect(inflector.nth(1)).toBe('1st')\n    expect(inflector.nth(101)).toBe('101st')\n    expect(inflector.nth(11)).not.toBe('11st')\n    expect(inflector.nth(111)).not.toBe('111st')\n  })\n\n  it('should handle the 12th cases', function () {\n    expect(inflector.nth(12)).toBe('12th')\n    expect(inflector.nth(112)).toBe('112th')\n    expect(inflector.nth(1112)).toBe('1112th')\n  })\n\n  it('should handle the 11th cases', function () {\n    expect(inflector.nth(11)).toBe('11th')\n    expect(inflector.nth(111)).toBe('111th')\n    expect(inflector.nth(1111)).toBe('1111th')\n  })\n\n  it('should handle the 13th cases', function () {\n    expect(inflector.nth(13)).toBe('13th')\n    expect(inflector.nth(113)).toBe('113th')\n    expect(inflector.nth(1113)).toBe('1113th')\n  })\n\n  it('should handle the th cases', function () {\n    expect(inflector.nth(10)).toBe('10th')\n    expect(inflector.nth(4)).toBe('4th')\n    expect(inflector.nth(400)).toBe('400th')\n    expect(inflector.nth(404)).toBe('404th')\n    expect(inflector.nth(5)).toBe('5th')\n    expect(inflector.nth(5000)).toBe('5000th')\n    expect(inflector.nth(5005)).toBe('5005th')\n    expect(inflector.nth(9)).toBe('9th')\n    expect(inflector.nth(90009)).toBe('90009th')\n    expect(inflector.nth(90000)).toBe('90000th')\n  })\n\n  it('should handle 2nd cases', function () {\n    expect(inflector.nth(2)).toBe('2nd')\n    expect(inflector.nth(12)).not.toBe('12nd')\n  })\n\n  it('should handle 3rd cases', function () {\n    expect(inflector.nth(3)).toBe('3rd')\n    expect(inflector.nth(13)).not.toBe('13rd')\n  })\n})\n"
  },
  {
    "path": "spec/damerau_levenshtein_spec.ts",
    "content": "'use strict'\n\nimport { DamerauLevenshteinDistance, DamerauLevenshteinDistanceSearch } from 'lib/natural'\n\ndescribe('DamerauLevenshtein', function () {\n  describe('default', function () {\n    it('should be 0 when given equal strings', function () {\n      expect(DamerauLevenshteinDistance('test', 'test')).toBe(0)\n    })\n\n    it('should calculate 1 for adjacent transposition', function () {\n      expect(DamerauLevenshteinDistance('za', 'az')).toBe(1)\n      expect(DamerauLevenshteinDistance('Tomato', 'oTmato')).toBe(1)\n    })\n\n    it('should handle custom transposition_cost', function () {\n      expect(DamerauLevenshteinDistance('za', 'az', { transposition_cost: 0 })).toBe(0)\n    })\n\n    it('should calculate 2 when there are 2 transpositions', function () {\n      expect(DamerauLevenshteinDistance('tomato', 'otmaot')).toBe(2)\n    })\n\n    it('should calculate 2 for 1 transposition and 1 insertion', function () {\n      expect(DamerauLevenshteinDistance('CA', 'ABC')).toBe(2)\n      expect(DamerauLevenshteinDistance('a cat', 'a abct')).toBe(2)\n    })\n  })\n\n  describe('options.restricted = true', function () {\n    const restricted = { restricted: true }\n    it('should calculate 0 for equal strings', function () {\n      expect(DamerauLevenshteinDistance('identity', 'identity', restricted)).toBe(0)\n    })\n    it('should calculate 1 for an adjacent transposition', function () {\n      expect(DamerauLevenshteinDistance('za', 'az', restricted)).toBe(1)\n    })\n    it('should not count transposition more than 1 char away', function () {\n      expect(DamerauLevenshteinDistance('CA', 'ABC', restricted)).toBe(3)\n    })\n  })\n\n  it('should combine search with Damerau', function () {\n    const source = 'The RainCoat BookStore'\n    const target = 'All the best books are here at the Rain Coats Book Store'\n    const result = DamerauLevenshteinDistanceSearch(source, target)\n    expect(result).toEqual({\n      substring: 'the Rain Coats Book Store',\n      distance: 4,\n      offset: 31\n    })\n  })\n})\n"
  },
  {
    "path": "spec/dice_coefficient_spec.ts",
    "content": "'use strict'\n\nimport { DiceCoefficient as dice } from 'lib/natural'\nimport text1 from '../spec/test_data/Wikipedia_EN_FrenchRevolution.json'\nimport text2 from '../spec/test_data/Wikipedia_EN_InfluenceOfTheFrenchRevolution.json'\n\ndescribe('dice', function () {\n  it('should handle exact matches', function () {\n    expect(dice('john', 'john')).toBe(1)\n  })\n\n  it('should match single character words', function () {\n    expect(dice('a', 'a')).toBe(1)\n    expect(dice('a', 'b')).toBe(0)\n  })\n\n  it('should handle total mis-matches', function () {\n    expect(dice('john', 'matt')).toBe(0)\n  })\n\n  // Example from http://en.wikipedia.org/wiki/Dice's_coefficient\n  it('should handle a typical case', function () {\n    expect(dice('night', 'nacht')).toBe(0.25)\n  })\n\n  it('should sanitize case', function () {\n    expect(dice('night', 'NIGHT')).toBe(1)\n  })\n\n  it('should sanitize spacing', function () {\n    expect(dice('the   space', 'the space')).toBe(1)\n  })\n\n  it('should compare complete texts', function () {\n    expect(dice(text1.text, text2.text)).toBe(0.7939374395356337)\n  })\n})\n"
  },
  {
    "path": "spec/double_metaphone_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { DoubleMetaphone } from 'lib/natural'\nconst doubleMetaphone = new DoubleMetaphone()\n\ndescribe('double metaphone', function () {\n  describe('vowels', function () {\n    it('should consider initial vowels to be A', function () {\n      let encodings = doubleMetaphone.process('England')\n      expect(encodings[0]).toMatch(/^A/)\n      expect(encodings[1]).toMatch(/^A/)\n\n      encodings = doubleMetaphone.process('astromech')\n      expect(encodings[0]).toMatch(/^A/)\n      expect(encodings[1]).toMatch(/^A/)\n\n      encodings = doubleMetaphone.process('être')\n      expect(encodings[0]).toMatch(/^A/)\n      expect(encodings[1]).toMatch(/^A/)\n\n      encodings = doubleMetaphone.process('éte')\n      expect(encodings[0]).toMatch(/^A/)\n      expect(encodings[1]).toMatch(/^A/)\n    })\n  })\n\n  describe('B', function () {\n    it('should encode B to P', function () {\n      const encodings = doubleMetaphone.process('berry')\n      expect(encodings[0]).toMatch(/^P/)\n      expect(encodings[1]).toMatch(/^P/)\n    })\n\n    it('should encode BB to P', function () {\n      const encodings = doubleMetaphone.process('tabby')\n      expect(encodings[0]).toContain('P')\n      expect(encodings[0]).not.toContain('PP')\n      expect(encodings[0]).not.toContain('PB')\n      expect(encodings[1]).toContain('P')\n      expect(encodings[1]).not.toContain('PP')\n      expect(encodings[1]).not.toContain('PB')\n    })\n  })\n\n  describe('C', function () {\n    it(\"should encode MACHER's C to K\", function () {\n      const encodings = doubleMetaphone.process('stomacher')\n      expect(encodings[0]).toContain('K')\n      expect(encodings[1]).toContain('K')\n    })\n\n    it(\"should encode CEASAR's C to S\", function () {\n      const encodings = doubleMetaphone.process('ceasar')\n      expect(encodings[0]).toMatch(/^S/)\n      expect(encodings[1]).toMatch(/S/)\n    })\n\n    it(\"should encode chianti's C to K\", function () {\n      const encodings = doubleMetaphone.process('chianti')\n      expect(encodings[0]).toMatch(/^K/)\n      expect(encodings[1]).toMatch(/^K/)\n    })\n\n    it('should encode CHAE to K,X', function () {\n      const encodings = doubleMetaphone.process('archaeology')\n      expect(encodings[0]).toContain('K')\n      expect(encodings[1]).toContain('X')\n    })\n\n    it('should encode CHarac to K', function () {\n      const encodings = doubleMetaphone.process('character')\n      expect(encodings[0]).toMatch(/^K/)\n      expect(encodings[1]).toMatch(/^K/)\n    })\n\n    it('should encode C after von to K', function () {\n      const encodings = doubleMetaphone.process('von Chor')\n      expect(encodings[0]).toMatch(/^..K/)\n      expect(encodings[1]).toMatch(/^..K/)\n    })\n\n    it('should encode some CH to K', function () {\n      const encodings = doubleMetaphone.process('orchestrational')\n      expect(encodings[0]).toMatch(/^..K/)\n      expect(encodings[1]).toMatch(/^..K/)\n    })\n\n    it('should encode CH before some cons as K', function () {\n      const encodings = doubleMetaphone.process('chthonic')\n      expect(encodings[0]).toMatch(/^K/)\n      expect(encodings[1]).toMatch(/^K/)\n    })\n\n    it('should encode Irish mC to K', function () {\n      const encodings = doubleMetaphone.process('McHenry')\n      expect(encodings[0]).toMatch(/^.K/)\n      expect(encodings[1]).toMatch(/^.K/)\n    })\n\n    it('should encode CH to X,K generally', function () {\n      const encodings = doubleMetaphone.process('achievement')\n      expect(encodings[0]).toMatch(/^.X/)\n      expect(encodings[1]).toMatch(/^.K/)\n    })\n\n    it('shoud encode Polish WICZ to S,X', function () {\n      const encodings = doubleMetaphone.process('markiewicz')\n      expect(encodings[0]).toMatch(/S$/)\n      expect(encodings[1]).toMatch(/X$/)\n    })\n\n    it('should encode CIA to X', function () {\n      const encodings = doubleMetaphone.process('indicia')\n      expect(encodings[0]).toMatch(/X$/)\n      expect(encodings[1]).toMatch(/X$/)\n    })\n\n    it('should encode Italian CCI to X', function () {\n      const encodings = doubleMetaphone.process('bacci')\n      expect(encodings[0]).toContain('X')\n      expect(encodings[1]).toContain('X')\n    })\n\n    it('should encode some CCes to K', function () {\n      const encodings = doubleMetaphone.process('success')\n      expect(encodings[0]).toMatch(/^SKS/)\n      expect(encodings[1]).toMatch(/^SKS/)\n    })\n\n    it('should encode some CC to K', function () {\n      const encodings = doubleMetaphone.process('yucca')\n      expect(encodings[0]).toMatch(/K$/)\n      expect(encodings[1]).toMatch(/K$/)\n    })\n\n    it('should encode CQ to K', function () {\n      const encodings = doubleMetaphone.process('racquetball')\n      expect(encodings[0]).toMatch(/^.K/)\n      expect(encodings[1]).toMatch(/^.K/)\n    })\n\n    it('should encode CIO to S,X', function () {\n      const encodings = doubleMetaphone.process('sociopath')\n      expect(encodings[0]).toMatch(/^.S/)\n      expect(encodings[1]).toMatch(/^.X/)\n    })\n\n    it('should encode CI to S', function () {\n      const encodings = doubleMetaphone.process('city')\n      expect(encodings[0]).toMatch(/^S/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode Scotch maC to K', function () {\n      const encodings = doubleMetaphone.process('Mac Ghille dhuibh')\n      expect(encodings[0]).toMatch(/^MK/)\n      expect(encodings[1]).toMatch(/^MK/)\n    })\n  })\n\n  describe('Ç', function () {\n    it('should encode case Ç (French) to S', function () {\n      const encodings = doubleMetaphone.process('leçon')\n      expect(encodings[0]).toContain('S')\n      expect(encodings[1]).toContain('S')\n    })\n  })\n\n  describe('D', function () {\n    it('should encode D to T', function () {\n      const encodings = doubleMetaphone.process('double')\n      expect(encodings[0]).toMatch(/^T/)\n      expect(encodings[1]).toMatch(/^T/)\n    })\n\n    it('should encode DD to T', function () {\n      const encodings = doubleMetaphone.process('fiddle')\n      expect(encodings[0]).toContain('T')\n      expect(encodings[0]).not.toContain('TT')\n      expect(encodings[0]).not.toContain('D')\n\n      expect(encodings[1]).toContain('T')\n      expect(encodings[1]).not.toContain('TT')\n      expect(encodings[1]).not.toContain('D')\n    })\n\n    it('should encode DG to J', function () {\n      const encodings = doubleMetaphone.process('ledge')\n      expect(encodings[0]).toContain('J')\n      expect(encodings[0]).not.toContain('T')\n      expect(encodings[1]).toContain('J')\n      expect(encodings[1]).not.toContain('T')\n    })\n\n    it('should encode DT to T', function () {\n      const encodings = doubleMetaphone.process('bundt')\n      expect(encodings[0]).toMatch(/[^D]T$/)\n      expect(encodings[1]).toMatch(/[^D]T$/)\n    })\n  })\n\n  describe('F', function () {\n    it('should encode F', function () {\n      const encodings = doubleMetaphone.process('far')\n      expect(encodings[0]).toContain('F')\n      expect(encodings[1]).toContain('F')\n    })\n\n    it('should encode FF to F', function () {\n      const encodings = doubleMetaphone.process('effect')\n      expect(encodings[0]).toContain('F')\n      expect(encodings[0]).not.toContain('FF')\n      expect(encodings[1]).toContain('F')\n      expect(encodings[1]).not.toContain('FF')\n    })\n  })\n\n  describe('G', function () {\n    it('should encode G to F following U and 4 after certain cons', function () {\n      const encodings = doubleMetaphone.process('tough')\n      expect(encodings[0]).toMatch('F$')\n      expect(encodings[1]).toMatch('F$')\n    })\n\n    it('should encode G to K', function () {\n      const encodings = doubleMetaphone.process('gift')\n      expect(encodings[0]).toMatch('^K')\n      expect(encodings[1]).toMatch('^K')\n    })\n\n    it('should ignore G a few letters after D, H, B', function () {\n      const encodings = doubleMetaphone.process('fig')\n      expect(encodings[0]).toMatch('K$')\n      expect(encodings[1]).toMatch('K$')\n      const encodings2 = doubleMetaphone.process('hugh')\n      expect(encodings2[0]).toBe('H')\n      expect(encodings2[1]).toBe('H')\n    })\n\n    it('should encode G to J when staring a word whose 3rd legger is I', function () {\n      const encodings = doubleMetaphone.process('ghislaine')\n      expect(encodings[0]).toMatch(/^J/)\n      expect(encodings[1]).toMatch(/^J/)\n    })\n\n    it('should encode G to K when staring words whose 3rd letter is not I', function () {\n      const encodings = doubleMetaphone.process('consign')\n      expect(encodings[0]).toMatch(/N$/)\n      expect(encodings[1]).toMatch(/KN$/)\n    })\n\n    it('should encode GH to K if not succeeding a cons', function () {\n      const encodings = doubleMetaphone.process('Afghani')\n      expect(encodings[0]).toContain('K')\n      expect(encodings[1]).toContain('K')\n    })\n\n    it('should encode GN to N/KN generally', function () {\n      const encodings = doubleMetaphone.process('consign')\n      expect(encodings[0]).toMatch(/N$/)\n      expect(encodings[1]).toMatch(/KN$/)\n    })\n\n    it('should encode G to KN/N for the second letter following vowels', function () {\n      const encodings = doubleMetaphone.process('agnosia')\n      expect(encodings[0]).toMatch(/^.KN/)\n      expect(encodings[1]).toMatch(/^.N/)\n    })\n\n    it('should encode G to K,J when starting some words', function () {\n      const encodings = doubleMetaphone.process('germany')\n      expect(encodings[0]).toMatch(/^K/)\n      expect(encodings[1]).toMatch(/^J/)\n    })\n\n    it('should encode GL to KL, L', function () {\n      const encodings = doubleMetaphone.process('taglianetti')\n      expect(encodings[0]).toMatch(/KL/)\n      expect(encodings[1]).toMatch(/[^K]L/)\n    })\n\n    it('should encode GG to K', function () {\n      const encodings = doubleMetaphone.process('daggers')\n      expect(encodings[0]).toContain('K')\n      expect(encodings[0]).not.toContain('KK')\n      expect(encodings[1]).toContain('K')\n      expect(encodings[1]).not.toContain('KK')\n    })\n  })\n\n  describe('H', function () {\n    it('should keep initial Hs', function () {\n      const encodings = doubleMetaphone.process('hardly')\n      expect(encodings[0]).toMatch(/^H/)\n      expect(encodings[1]).toMatch(/^H/)\n    })\n\n    it('should keep Hs between vowels', function () {\n      const encodings = doubleMetaphone.process('ahoi')\n      expect(encodings[0]).toContain('H')\n      expect(encodings[1]).toContain('H')\n    })\n\n    it('should drop Hs in words if not surrounded by vowels or starting', function () {\n      const encodings = doubleMetaphone.process('charlie')\n      expect(encodings[0]).not.toContain('H')\n      expect(encodings[1]).not.toContain('H')\n    })\n  })\n\n  describe('J', function () {\n    it('should encode spainish Js to Hs in the middle of words', function () {\n      const encodings = doubleMetaphone.process('bajador')\n      expect(encodings[0]).toMatch(/^.J/)\n      expect(encodings[1]).toMatch(/^.H/)\n    })\n\n    it('should encode J to J,A', function () {\n      const encodings = doubleMetaphone.process('jumble')\n      expect(encodings[0]).toMatch(/^J/)\n      expect(encodings[1]).toMatch(/^A/)\n    })\n\n    it('should encode J to J,\" \" at the end of words', function () {\n      const encodings = doubleMetaphone.process('hadj')\n      expect(encodings[0]).toMatch(/J$/)\n      expect(encodings[1]).toMatch(/\\s$/)\n    })\n\n    it('should encode JJ to J', function () {\n      const encodings = doubleMetaphone.process('hajj')\n      expect(encodings[0]).toMatch(/J$/)\n      expect(encodings[1]).toMatch(/J$/)\n    })\n\n    it('should encode J to H in saint names (cities)', function () {\n      const encodings = doubleMetaphone.process('san juan')\n      expect(encodings[0]).toContain('H')\n      expect(encodings[1]).toContain('H')\n    })\n  })\n\n  describe('L', function () {\n    it('should encode L', function () {\n      const encodings = doubleMetaphone.process('last')\n      expect(encodings[0]).toMatch(/^L/)\n      expect(encodings[1]).toMatch(/^L/)\n    })\n\n    it('should encode L to LL', function () {\n      const encodings = doubleMetaphone.process('functionally')\n      expect(encodings[0]).toContain('L')\n      expect(encodings[0]).not.toContain('LL')\n      expect(encodings[1]).toContain('L')\n      expect(encodings[1]).not.toContain('LL')\n    })\n\n    it('should encode ignore spainish-style LL entirely in secondary', function () {\n      const encodings = doubleMetaphone.process('cabrillo')\n      expect(encodings[0]).toContain('L')\n      expect(encodings[1]).not.toContain('LL')\n    })\n  })\n\n  describe('M', function () {\n    it('should encode M', function () {\n      const encodings = doubleMetaphone.process('meter')\n      expect(encodings[0]).toMatch(/^M/)\n      // expect(encodings[1]).not.toContain(/^M/)\n    })\n\n    it('should skip B after M', function () {\n      const encodings = doubleMetaphone.process('thumb')\n      expect(encodings[0]).toMatch(/M$/)\n      // expect(encodings[1]).not.toContain(/M$/)\n    })\n  })\n\n  describe('N', function () {\n    it('should encode Ns', function () {\n      const encodings = doubleMetaphone.process('natural')\n      expect(encodings[0]).toContain('N')\n      expect(encodings[1]).toContain('N')\n    })\n\n    it('should encode NN to N', function () {\n      const encodings = doubleMetaphone.process('fanny')\n      expect(encodings[0]).toContain('N')\n      expect(encodings[1]).toContain('N')\n\n      expect(encodings[0]).not.toContain('NN')\n      expect(encodings[1]).not.toContain('NN')\n    })\n\n    it('should treat a spainish Ñ as a N', function () {\n      const encodings = doubleMetaphone.process('jalapeño')\n      expect(encodings[0]).toContain('N')\n      expect(encodings[1]).toContain('N')\n    })\n  })\n\n  describe('P', function () {\n    it('should encode PH to F', function () {\n      const encodings = doubleMetaphone.process('phone')\n      expect(encodings[0]).toMatch(/^F/)\n      expect(encodings[1]).toMatch(/^F/)\n    })\n\n    it('should encode P', function () {\n      const encodings = doubleMetaphone.process('party')\n      expect(encodings[0]).toContain('P')\n      expect(encodings[1]).toContain('P')\n    })\n\n    it('should encode PP to P', function () {\n      const encodings = doubleMetaphone.process('sappy')\n      expect(encodings[0]).toContain('P')\n      expect(encodings[0]).not.toContain('PP')\n      expect(encodings[1]).toContain('P')\n      expect(encodings[1]).not.toContain('PP')\n    })\n\n    /* jscpd:ignore-start */\n    it('should skip P before B i.e. raspberry', function () {\n      const encodings = doubleMetaphone.process('raspberry')\n      expect(encodings[0]).toContain('P')\n      expect(encodings[0]).not.toContain('PP')\n      expect(encodings[0]).not.toContain('PB')\n      expect(encodings[1]).toContain('P')\n      expect(encodings[1]).not.toContain('PP')\n      expect(encodings[1]).not.toContain('PB')\n    })\n    /* jscpd:ignore-end */\n  })\n\n  describe('Q', function () {\n    it('should encode Q to K', function () {\n      const encodings = doubleMetaphone.process('quarry')\n      expect(encodings[0]).toContain('K')\n      expect(encodings[1]).toContain('K')\n    })\n  })\n\n  describe('R', function () {\n    it('should encode R', function () {\n      const encodings = doubleMetaphone.process('raspberry')\n      expect(encodings[0]).toMatch(/^R/)\n      expect(encodings[1]).toMatch(/^R/)\n    })\n\n    it('should ignore trailing French Rs', function () {\n      const encodings = doubleMetaphone.process('papier')\n      expect(encodings[0]).toMatch(/[^R]$/)\n      expect(encodings[1]).toMatch(/R$/)\n    })\n  })\n\n  describe('S', function () {\n    it('should skip S between I and L', function () {\n      const encodings = doubleMetaphone.process('isle')\n      expect(encodings[0]).toMatch(/^AL/)\n      expect(encodings[1]).toMatch(/^AL/)\n    })\n\n    it(\"should encode sugar's S to X\", function () {\n      const encodings = doubleMetaphone.process('sugar')\n      expect(encodings[0]).toMatch(/^X/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode general SH to X', function () {\n      const encodings = doubleMetaphone.process('share')\n      expect(encodings[0]).toMatch(/^X/)\n      expect(encodings[1]).toMatch(/^X/)\n    })\n\n    it('should encode certain germanic SHs to S', function () {\n      const encodings = doubleMetaphone.process('Sholmer')\n      expect(encodings[0]).toMatch(/^S/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode SION to S,X generally', function () {\n      const encodings = doubleMetaphone.process('tension')\n      expect(encodings[0]).toContain('S')\n      expect(encodings[1]).toContain('X')\n    })\n\n    it('should encode SCHool to SK', function () {\n      const encodings = doubleMetaphone.process('school')\n      expect(encodings[0]).toMatch(/^SK/)\n      expect(encodings[1]).toMatch(/^SK/)\n    })\n\n    it('should encode SCHER to X,SK', function () {\n      const encodings = doubleMetaphone.process('scherzando')\n      expect(encodings[0]).toMatch(/^X/)\n      expect(encodings[1]).toMatch(/^SK/)\n    })\n\n    it('should encode SCHL to X,S', function () {\n      const encodings = doubleMetaphone.process('schlump')\n      expect(encodings[0]).toMatch(/^X/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode SC to SK generally', function () {\n      const encodings = doubleMetaphone.process('scumbag')\n      expect(encodings[0]).toMatch(/^SK/)\n      expect(encodings[1]).toMatch(/^SK/)\n    })\n  })\n\n  describe('T', function () {\n    it('should encode TION to XN', function () {\n      const encodings = doubleMetaphone.process('nation')\n      expect(encodings[0]).toMatch(/XN$/)\n      expect(encodings[1]).toMatch(/XN$/)\n    })\n\n    it('should encode CH sounds to X', function () {\n      const encodings = doubleMetaphone.process('thatch')\n      expect(encodings[0]).toMatch(/X$/)\n      expect(encodings[1]).toMatch(/X$/)\n    })\n\n    it('should encode hard TH to T', function () {\n      const encodings = doubleMetaphone.process('thomas')\n      expect(encodings[0]).toMatch(/^T/)\n      expect(encodings[1]).toMatch(/^T/)\n    })\n\n    it('should encode soft TH to 0,T', function () {\n      const encodings = doubleMetaphone.process('this')\n      expect(encodings[0]).toMatch(/^0/)\n      expect(encodings[1]).toMatch(/^T/)\n    })\n\n    it('should encode TT to T', function () {\n      const encodings = doubleMetaphone.process('matta')\n      expect(encodings[0]).toMatch(/[^T]T/)\n      expect(encodings[1]).toMatch(/[^T]T/)\n    })\n\n    it('should encode TD to T', function () {\n      const encodings = doubleMetaphone.process('countdown')\n      expect(encodings[0]).toContain('T')\n      expect(encodings[0]).not.toContain('D')\n      expect(encodings[1]).toContain('T')\n      expect(encodings[1]).not.toContain('D')\n    })\n  })\n\n  describe('V', function () {\n    it('should encode V to F', function () {\n      const encodings = doubleMetaphone.process('very')\n      expect(encodings[0]).toContain('F')\n      expect(encodings[1]).toContain('F')\n    })\n\n    it('should encode VV to F', function () {\n      const encodings = doubleMetaphone.process('savvy')\n      expect(encodings[0]).toContain('F')\n      expect(encodings[0]).not.toContain('FF')\n      expect(encodings[0]).not.toContain('FV')\n      expect(encodings[1]).toContain('F')\n      expect(encodings[1]).not.toContain('FF')\n      expect(encodings[1]).not.toContain('FV')\n    })\n  })\n\n  describe('W', function () {\n    it('should encode WR to R', function () {\n      const encodings = doubleMetaphone.process('wrong')\n      expect(encodings[0]).toMatch('^R')\n      expect(encodings[1]).toMatch('^R')\n    })\n\n    it('should encode WH to A at the start of a word', function () {\n      const encodings = doubleMetaphone.process('wheat')\n      expect(encodings[0]).toMatch('^A')\n      expect(encodings[1]).toMatch('^A')\n    })\n\n    it('should encode WH to A,F if followed by a vowel at start', function () {\n      const encodings = doubleMetaphone.process('wolfgang')\n      expect(encodings[0]).toMatch('^A')\n      expect(encodings[1]).toMatch('^F')\n    })\n\n    it('should encode OWSKY alternately to F(V)', function () {\n      const encodings = doubleMetaphone.process('lebowski')\n      expect(encodings[0]).not.toContain('F')\n      expect(encodings[1]).toContain('F')\n    })\n\n    it('should encode WICZ', function () {\n      const encodings = doubleMetaphone.process('Lowicz')\n      expect(encodings[0]).toMatch('TS$')\n      expect(encodings[1]).toMatch('FX$')\n    })\n  })\n\n  describe('X', function () {\n    it('should encode X as S at start', function () {\n      const encodings = doubleMetaphone.process('xenophobia')\n      expect(encodings[0]).toMatch(/^S/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode X as KS at end for non-French words', function () {\n      const encodings = doubleMetaphone.process('box')\n      expect(encodings[0]).toMatch(/KS$/)\n      expect(encodings[1]).toMatch(/KS$/)\n    })\n\n    it('should skip X end for French words', function () {\n      const encodings = doubleMetaphone.process('lemieux')\n      expect(encodings[0]).not.toMatch(/KS$/)\n      expect(encodings[1]).not.toMatch(/KS$/)\n    })\n  })\n\n  describe('Z', function () {\n    it('should encode Z to S', function () {\n      const encodings = doubleMetaphone.process('zookeeper')\n      expect(encodings[0]).toMatch(/^S/)\n      expect(encodings[1]).toMatch(/^S/)\n    })\n\n    it('should encode Chinese ZH to J', function () {\n      const encodings = doubleMetaphone.process('zheng')\n      expect(encodings[0]).toMatch(/^J/)\n      expect(encodings[1]).toMatch(/^J/)\n    })\n\n    it('should encode ZZA to S, TS', function () {\n      const encodings = doubleMetaphone.process('pizza')\n      expect(encodings[0]).toContain('S')\n      expect(encodings[1]).toContain('TS')\n    })\n  })\n\n  describe('general', function () {\n    it('should detect vowels', function () {\n      expect(doubleMetaphone.isVowel('a')).toBeTruthy()\n      expect(doubleMetaphone.isVowel('e')).toBeTruthy()\n      expect(doubleMetaphone.isVowel('b')).toBeFalsy()\n    })\n\n    it('should encode general words', function () {\n      let encodings = doubleMetaphone.process('complete')\n      expect(encodings[0]).toMatch(/KMPLT/)\n      expect(encodings[1]).toMatch(/KMPLT/)\n\n      encodings = doubleMetaphone.process('Matrix')\n      expect(encodings[0]).toMatch(/MTRKS/)\n      expect(encodings[1]).toMatch(/MTRKS/)\n\n      encodings = doubleMetaphone.process('appropriate')\n      expect(encodings[0]).toMatch(/APRPRT/)\n      expect(encodings[1]).toMatch(/APRPRT/)\n\n      encodings = doubleMetaphone.process('intervention')\n\n      expect(encodings[0]).toBe('ANTRFNXN')\n      expect(encodings[1]).toBe('ANTRFNXN')\n\n      encodings = doubleMetaphone.process('Français')\n      expect(encodings[0]).toBe('FRNS')\n      expect(encodings[1]).toBe('FRNSS')\n    })\n\n    it('should truncate codes if specified', function () {\n      let encodings = doubleMetaphone.process('Matrix', 4)\n      expect(encodings[0]).toBe('MTRK')\n      expect(encodings[1]).toBe('MTRK')\n\n      encodings = doubleMetaphone.process('Français', 4)\n      expect(encodings[0]).toBe('FRNS')\n      expect(encodings[1]).toBe('FRNS')\n    })\n\n    it('should not truncate code is shorter than specification', function () {\n      let encodings = doubleMetaphone.process('Matrix', 32)\n      expect(encodings[0]).toBe('MTRKS')\n      expect(encodings[1]).toBe('MTRKS')\n\n      encodings = doubleMetaphone.process('Français', 5)\n      expect(encodings[0]).toBe('FRNS')\n      expect(encodings[1]).toBe('FRNSS')\n    })\n\n    it('should compare', function () {\n      expect(doubleMetaphone.compare('love', 'hate')).toBeFalsy()\n      expect(doubleMetaphone.compare('love', 'luv')).toBeTruthy()\n    })\n  })\n\n  describe('issue #34', function () {\n    it('terminate words ending in H', function () {\n      expect(doubleMetaphone.process('ptah')).toEqual(['PT', 'PT'])\n    })\n  })\n\n  describe('issue #173', function () {\n    it('handle initial cons correctly', function () {\n      expect(doubleMetaphone.process('ceasar')).toEqual(['SSR', 'SSR'])\n      expect(doubleMetaphone.process('ach')).toEqual(['AK', 'AK'])\n      expect(doubleMetaphone.process('chemical')).toEqual(['KMKL', 'KMKL'])\n      expect(doubleMetaphone.process('choral')).toEqual(['KRL', 'KRL'])\n    })\n  })\n})\n"
  },
  {
    "path": "spec/esm/smoke.mjs",
    "content": "const naturalModuleUrl = new URL('../../dist/esm/index.js', import.meta.url)\n\ntry {\n\tconst { default: natural } = await import(naturalModuleUrl.href)\n\n\tconst result = natural?.PorterStemmer?.stem('running')\n\tif (result !== 'run') {\n\t\tthrow new Error(`Unexpected stem result: ${result}`)\n\t}\n\n\tconsole.log('ESM smoke test: OK')\n} catch (error) {\n\tconsole.error('ESM smoke test: FAIL')\n\tconsole.error(error)\n\tprocess.exitCode = 1\n}\n"
  },
  {
    "path": "spec/hamming_distance_spec.ts",
    "content": "/*\nCopyright (c) 2018, Hugo ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { HammingDistance as hammingDistance } from 'lib/natural'\n\n// Convert the following to a Javascript object\nconst stringsToCompare = [{\n  string1: 'karolin',\n  string2: 'kathrin',\n  ignoreCase: false,\n  expected: 3\n}, {\n  string1: 'karolin',\n  string2: 'kerstin',\n  ignoreCase: false,\n  expected: 3\n}, {\n  string1: '1011101',\n  string2: '1001001',\n  ignoreCase: false,\n  expected: 2\n}, {\n  string1: '2173896',\n  string2: '2233796',\n  ignoreCase: false,\n  expected: 3\n}, {\n  string1: 'different',\n  string2: 'length',\n  ignoreCase: false,\n  expected: -1\n}, {\n  string1: 'ignorecase',\n  string2: 'IgnoreCase',\n  ignoreCase: true,\n  expected: 0\n}]\n\ndescribe('The Hamming distance function compares strings of equal length', function () {\n  stringsToCompare.forEach(function (record, index) {\n    it(`should calculate the difference between two strings correctly ${index}`, function () {\n      expect(hammingDistance(record.string1, record.string2, record.ignoreCase)).toEqual(record.expected)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/jaro-winkler_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { JaroWinklerDistance } from 'lib/natural'\n\n/*\nDo not change the prototype of native types\nNumber.prototype.approxEql = function (val) {\n  return Math.abs(this - val) < 1e-5\n}\n*/\n\nfunction approxEql (val1: number, val2: number): boolean {\n  return Math.abs(val1 - val2) < 1e-5\n}\n\ndescribe('jaro-winkler', function () {\n  it('should evaluate string similarity', function () {\n    expect(approxEql(JaroWinklerDistance('DIXON', 'DICKSONX', {}), 0.81333)).toBeTruthy()\n    expect(approxEql(JaroWinklerDistance('DWAYNE', 'DUANE', {}), 0.84)).toBeTruthy()\n  })\n\n  it('should handle exact matches', function () {\n    expect(JaroWinklerDistance('RICK', 'RICK', {})).toBe(1)\n    expect(JaroWinklerDistance('abc', 'abc', {})).toBe(1)\n    expect(JaroWinklerDistance('abcd', 'abcd', {})).toBe(1)\n    expect(JaroWinklerDistance('seddon', 'seddon', {})).toBe(1)\n  })\n\n  it('should handle total mis-matches', function () {\n    expect(JaroWinklerDistance('NOT', 'SAME', {})).toBe(0)\n  })\n\n  it('should handle partial mis-matches', function () {\n    expect(approxEql(JaroWinklerDistance('aaa', 'abcd', {}), 0.575)).toBeTruthy()\n  })\n\n  it('should handle transpositions', function () {\n    expect(approxEql(JaroWinklerDistance('MARTHA', 'MARHTA', {}), 0.96111)).toBeTruthy()\n  })\n\n  it('should handle transpositions regardless of string order', function () {\n    expect(approxEql(JaroWinklerDistance('class', 'clams', {}), 0.90666)).toBeTruthy()\n    expect(approxEql(JaroWinklerDistance('clams', 'class', {}), 0.90666)).toBeTruthy()\n  })\n\n  it('should ignore case when asked to', function () {\n    expect(JaroWinklerDistance('aaa', 'aAa', { ignoreCase: true })).toEqual(JaroWinklerDistance('aaa', 'aaa', {}))\n    expect(JaroWinklerDistance('aaa', 'aAa', {})).not.toEqual(JaroWinklerDistance('aaa', 'aaa', {}))\n    expect(JaroWinklerDistance('dixon', 'DICKSONX', { ignoreCase: true })).toEqual(JaroWinklerDistance('DIXON', 'DICKSONX', {}))\n    expect(JaroWinklerDistance('seddon', 'SEDDON', { ignoreCase: true })).toEqual(JaroWinklerDistance('SEDDON', 'SEDDON', {}))\n    expect(approxEql(JaroWinklerDistance('MARTHA', 'MARHTA', { ignoreCase: true }), 0.96111)).toBeTruthy()\n    expect(JaroWinklerDistance('abcd', 'ABCD', { ignoreCase: true })).toBe(1)\n  })\n  it('should not fail while passing no options', function () {\n    expect(approxEql(JaroWinklerDistance('check', 'chakk'), 0.78666)).toBeTruthy()\n  })\n})\n"
  },
  {
    "path": "spec/lancaster_stemmer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { LancasterStemmer as stemmer } from 'lib/natural'\n\ndescribe('lancaster_stemmer', function () {\n  it('should stem', function () {\n    expect(stemmer.stem('marks')).toBe('mark')\n    expect(stemmer.stem('MARKs')).toBe('mark')\n  })\n\n  it('should stop running rules where appropriate', function () {\n    expect(stemmer.stem('living')).toBe('liv')\n    expect(stemmer.stem('thing')).toBe('thing')\n    expect(stemmer.stem('ear')).toBe('ear')\n    expect(stemmer.stem('string')).toBe('string')\n  })\n\n  it('should only pop the size specified by the rule', function () {\n    expect(stemmer.stem('triplicate')).toBe('triply')\n    expect(stemmer.stem('triPlicAte')).toBe('triply')\n  })\n\n  it('should stem and append and recurse', function () {\n    expect(stemmer.stem('classified')).toBe('class')\n    expect(stemmer.stem('ClaSsiFied')).toBe('class')\n  })\n\n  it('should apply intact rules only to intact string', function () {\n    expect(stemmer.stem('maximum')).toBe('maxim')\n    expect(stemmer.stem('presumably')).toBe('presum')\n    expect(stemmer.stem('MAXIMUM')).toBe('maxim')\n    expect(stemmer.stem('PRESUMABLY')).toBe('presum')\n  })\n\n  it('#171 and #174, exceed, anguish, affluxion, discept', function () {\n    expect(stemmer.stem('exceed')).toBe('excess')\n    expect(stemmer.stem('anguish')).toBe('anct')\n    expect(stemmer.stem('affluxion')).toBe('affluct')\n    expect(stemmer.stem('discept')).toBe('disceiv')\n  })\n})\n"
  },
  {
    "path": "spec/levenshtein_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  LevenshteinDistance as levenshteinDistance,\n  LevenshteinDistanceSearch as levenshteinDistanceSearch\n} from 'lib/natural/distance/levenshtein_distance'\n\ndescribe('levenshtein_distance', function () {\n  describe('options.search = true', function () {\n    it('should find cheapest substring', function () {\n      expect(levenshteinDistanceSearch('kitten', 'sitting'))\n        .toEqual({ substring: 'sittin', distance: 2, offset: 0 })\n    })\n\n    it('should find 0 cost substring in target', function () {\n      expect(levenshteinDistanceSearch('doctor', 'the doctor is in'))\n        .toEqual({ substring: 'doctor', distance: 0, offset: 4 })\n    })\n\n    it('should find 1 cost substring in target', function () {\n      expect(levenshteinDistanceSearch('doctor', 'the doktor is in'))\n        .toEqual({ substring: 'doktor', distance: 1, offset: 4 })\n    })\n\n    it('should return empty substring when that is cleapest match', function () {\n      expect(levenshteinDistanceSearch('doctor', '000000000000'))\n        .toEqual({ substring: '', distance: 6, offset: 0 })\n    })\n\n    it('different insertion costs should work', function () {\n      // delete 10 0's at cost 1 and insert the letters for doctor at cost -1\n      expect(levenshteinDistanceSearch('0000000000', 'doctor', { insertion_cost: -1 }))\n        .toEqual({ substring: 'doctor', distance: 4, offset: 0 })\n    })\n\n    it('different deletion costs should work', function () {\n      // delete 10 0's at cost -10\n      expect(levenshteinDistanceSearch('0000000000', 'doctor', { deletion_cost: -1 }))\n        .toEqual({ substring: '', distance: -10, offset: 0 })\n    })\n  })\n\n  describe('default / options.search = false', function () {\n    it('should replace 2', function () {\n      expect(levenshteinDistance('doctor', 'doktor')).toBe(1)\n    })\n\n    it('should allow altering replacement value', function () {\n      expect(levenshteinDistance('doctor', 'doktor', { substitution_cost: 1 })).toBe(1)\n    })\n\n    it('should delete 1', function () {\n      expect(levenshteinDistance('doctor', 'docto')).toBe(1)\n    })\n\n    it('should insert 1', function () {\n      expect(levenshteinDistance('flat', 'flats')).toBe(1)\n    })\n\n    it('should combine operations', function () {\n      expect(levenshteinDistance('flad', 'flaten')).toBe(3)\n      expect(levenshteinDistance('flaten', 'flad')).toBe(3)\n    })\n\n    it('should consider perfect matches 0', function () {\n      expect(levenshteinDistance('one', 'one')).toBe(0)\n    })\n\n    it('different deletion cost should work', function () {\n      expect(levenshteinDistance('ones', 'one', { deletion_cost: 3 })).toBe(3)\n    })\n\n    it('different insertion cost should work', function () {\n      expect(levenshteinDistance('one', 'ones', { deletion_cost: 3, insertion_cost: 5 })).toBe(5)\n    })\n\n    it('delete all characters with -ve cost', function () {\n      expect(levenshteinDistance('delete', '', { deletion_cost: -1 })).toBe(-6)\n    })\n\n    it('insert all characters', function () {\n      expect(levenshteinDistance('', 'insert')).toBe(6)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/logistic_regression_classifier_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { LogisticRegressionClassifier } from 'lib/natural'\n\ndescribe('logistic regression', function () {\n  it('should classify with individually trained documents', function () {\n    const classifier = new LogisticRegressionClassifier()\n\n    classifier.addDocument(['have', 'computer'], 'IT')\n    classifier.addDocument(['have', 'phone'], 'IT')\n    classifier.addDocument(['computer', 'suck'], 'IT')\n    classifier.addDocument(['field', 'goal'], 'sports')\n    classifier.addDocument(['score', 'goal'], 'sports')\n    classifier.addDocument(['great', 'speed'], 'sports')\n\n    classifier.train()\n\n    expect(classifier.classify(['hate', 'computer'])).toBe('IT')\n    expect(classifier.classify(['score', 'please'])).toBe('sports')\n  })\n\n  it('should provide all classification scores', function () {\n    const classifier = new LogisticRegressionClassifier()\n    classifier.addDocument(['fix', 'box'], 'computing')\n    classifier.addDocument(['write', 'code'], 'computing')\n    classifier.addDocument(['script', 'code'], 'computing')\n    classifier.addDocument(['write', 'book'], 'literature')\n    classifier.addDocument(['read', 'book'], 'literature')\n    classifier.addDocument(['study', 'book'], 'literature')\n\n    classifier.train()\n\n    expect(classifier.getClassifications('i write code')[0].label).toBe('computing')\n    expect(classifier.getClassifications('i write code')[1].label).toBe('literature')\n  })\n\n  function createClassifier (): LogisticRegressionClassifier {\n    const classifier = new LogisticRegressionClassifier()\n    classifier.addDocument('i fixed the box', 'computing')\n    classifier.addDocument('i write code', 'computing')\n    classifier.addDocument('nasty script code', 'computing')\n    classifier.addDocument('write a book', 'literature')\n    classifier.addDocument('read a book', 'literature')\n    classifier.addDocument('study the books', 'literature')\n    return classifier\n  }\n\n  it('should classify with arrays', function () {\n    const classifier = createClassifier()\n    classifier.train()\n    expect(classifier.classify('a bug in the code')).toBe('computing')\n    expect(classifier.classify('read all the books')).toBe('literature')\n  })\n\n  it('should serialize and deserialize a working classifier', function () {\n    const classifier = createClassifier()\n    const objString = JSON.stringify(classifier)\n    const obj: Record<string, unknown> = JSON.parse(objString)\n    const newClassifier = LogisticRegressionClassifier.restore(obj)\n\n    newClassifier.addDocument('kick a ball', 'sports')\n    newClassifier.addDocument('hit some balls', 'sports')\n    newClassifier.addDocument('kick and punch', 'sports')\n\n    newClassifier.train()\n\n    expect(newClassifier.classify('a bug in the code')).toBe('computing')\n    expect(newClassifier.classify('read all the books')).toBe('literature')\n    expect(newClassifier.classify('kick butt')).toBe('sports')\n  })\n})\n"
  },
  {
    "path": "spec/longest_path_tree_spec.ts",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  LongestPathTree as LPT,\n  Topological,\n  EdgeWeightedDigraph\n} from 'lib/natural'\n\ndescribe('shortest path tree', function () {\n  const digraph = new EdgeWeightedDigraph()\n  digraph.add(5, 4, 0.35)\n  digraph.add(4, 7, 0.37)\n  digraph.add(5, 7, 0.28)\n  digraph.add(5, 1, 0.32)\n  digraph.add(4, 0, 0.38)\n  digraph.add(0, 2, 0.26)\n  digraph.add(3, 7, 0.39)\n  digraph.add(1, 3, 0.29)\n  digraph.add(7, 2, 0.34)\n  digraph.add(6, 2, 0.40)\n  digraph.add(3, 6, 0.52)\n  digraph.add(6, 0, 0.58)\n  digraph.add(6, 4, 0.93)\n  describe('edge weighted digraph normal operations', function () {\n    it('should get the numbers of vertexs', function () {\n      expect(digraph.v()).toBe(8)\n    })\n    it('should get the numbers of edges', function () {\n      expect(digraph.e()).toBe(13)\n    })\n    it('should print all item in digraph', function () {\n      expect(digraph.toString()).toBe('0 -> 2, 0.26\\n' +\n                                            '1 -> 3, 0.29\\n' +\n                                            '3 -> 7, 0.39\\n' +\n                                            '3 -> 6, 0.52\\n' +\n                                            '4 -> 7, 0.37\\n' +\n                                            '4 -> 0, 0.38\\n' +\n                                            '5 -> 4, 0.35\\n' +\n                                            '5 -> 7, 0.28\\n' +\n                                            '5 -> 1, 0.32\\n' +\n                                            '6 -> 2, 0.4\\n' +\n                                            '6 -> 0, 0.58\\n' +\n                                            '6 -> 4, 0.93\\n' +\n                                            '7 -> 2, 0.34')\n    })\n  })\n\n  describe('topo sort for digraph', function () {\n    it('should sort all the vertexs', function () {\n      const topoSort = new Topological(digraph)\n      expect(topoSort.isDAG()).toBe(true)\n      expect(topoSort.order()).toEqual([5, 1, 3, 6, 4, 7, 0, 2])\n    })\n  })\n\n  describe('shortest path tree normal operations', function () {\n    const lpt = new LPT(digraph, 5)\n    it('should determine existence of paths', function () {\n      expect(lpt.hasPathTo(0)).toBe(true)\n      expect(lpt.hasPathTo(1)).toBe(true)\n      expect(lpt.hasPathTo(2)).toBe(true)\n      expect(lpt.hasPathTo(3)).toBe(true)\n      expect(lpt.hasPathTo(4)).toBe(true)\n      expect(lpt.hasPathTo(5)).toBe(false)\n      expect(lpt.hasPathTo(6)).toBe(true)\n      expect(lpt.hasPathTo(7)).toBe(true)\n    })\n    it('should determine paths', function () {\n      expect(lpt.pathTo(0)).toEqual([5, 1, 3, 6, 4, 0])\n      expect(lpt.pathTo(1)).toEqual([5, 1])\n      expect(lpt.pathTo(2)).toEqual([5, 1, 3, 6, 4, 7, 2])\n      expect(lpt.pathTo(3)).toEqual([5, 1, 3])\n      expect(lpt.pathTo(4)).toEqual([5, 1, 3, 6, 4])\n      expect(lpt.pathTo(5)).toEqual([])\n      expect(lpt.pathTo(6)).toEqual([5, 1, 3, 6])\n      expect(lpt.pathTo(7)).toEqual([5, 1, 3, 6, 4, 7])\n    })\n    it('should calculate distances', function () {\n      expect(lpt.getDistTo(0)).toBe(2.44)\n      expect(lpt.getDistTo(1)).toBe(0.32)\n      expect(lpt.getDistTo(2)).toBe(2.77)\n      expect(lpt.getDistTo(3)).toBe(0.61)\n      expect(lpt.getDistTo(4)).toBe(2.06)\n      expect(lpt.getDistTo(5)).toBe(0)\n      expect(lpt.getDistTo(6)).toBe(1.13)\n      expect(lpt.getDistTo(7)).toBe(2.43)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/metaphone_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { Metaphone } from 'lib/natural'\nconst metaphone = new Metaphone()\n\ndescribe('metaphone', function () {\n  it('should drop duplicate adjacent letters, except C', function () {\n    expect(metaphone.dedup('dropping')).toBe('droping')\n  })\n\n  it('should not drop duplicat C', function () {\n    expect(metaphone.dedup('accelerate')).toBe('accelerate')\n  })\n\n  it('should drop some initial letters', function () {\n    expect(metaphone.dropInitialLetters('knuth')).toBe('nuth')\n    expect(metaphone.dropInitialLetters('gnat')).toBe('nat')\n    expect(metaphone.dropInitialLetters('aegis')).toBe('egis')\n    expect(metaphone.dropInitialLetters('pneumatic')).toBe('neumatic')\n    expect(metaphone.dropInitialLetters('wrack')).toBe('rack')\n  })\n\n  it('should not drop other initial letters', function () {\n    expect(metaphone.dropInitialLetters('garbage')).toBe('garbage')\n  })\n\n  it('should b if if words end with mb', function () {\n    expect(metaphone.dropBafterMAtEnd('dumb')).toBe('dum')\n  })\n\n  it('should not drop b after m if not at end of word', function () {\n    expect(metaphone.dropBafterMAtEnd('dumbo')).toBe('dumbo')\n  })\n\n  it('should replace CH to X', function () {\n    expect(metaphone.cTransform('change')).toBe('xhange')\n  })\n\n  it('should not replace CH to X if part of SCH', function () {\n    expect(metaphone.cTransform('discharger')).toBe('diskharger')\n  })\n\n  it('should replace CIA to X', function () {\n    expect(metaphone.cTransform('aesthetician')).toBe('aesthetixian')\n  })\n\n  it('C should become S if followed by I, E, or Y', function () {\n    expect(metaphone.cTransform('cieling')).toBe('sieling')\n  })\n\n  it('should transform other C\\'s to K', function () {\n    expect(metaphone.cTransform('cuss')).toBe('kuss')\n  })\n\n  it('should transform D to J if followed by GE, GY, GI', function () {\n    expect(metaphone.dTransform('abridge')).toBe('abrijge')\n  })\n\n  it('should transform D to T if not followed by GE, GY, GI', function () {\n    expect(metaphone.dTransform('bid')).toBe('bit')\n  })\n\n  it('should drop G before H if not at the end or before vowell', function () {\n    expect(metaphone.dropG('alight')).toBe('aliht')\n    expect(metaphone.dropG('fright')).toBe('friht')\n  })\n\n  it('should drop G if followed by N or NED at the end', function () {\n    expect(metaphone.dropG('aligned')).toBe('alined')\n    expect(metaphone.dropG('align')).toBe('alin')\n  })\n\n  it('should transform G to J if followed by I, E or Y and not preceeded by G', function () {\n    expect(metaphone.transformG('age')).toBe('aje')\n    expect(metaphone.transformG('gin')).toBe('jin')\n  })\n\n  it('should transform G to K', function () {\n    expect(metaphone.transformG('august')).toBe('aukust')\n  })\n\n  it('should reduce GG to G before turning to K', function () {\n    expect(metaphone.transformG('aggrade')).toBe('akrade')\n  })\n\n  it('should drop H if after vowell and not before vowell', function () {\n    expect(metaphone.dropH('alriht')).toBe('alrit')\n  })\n\n  it('should not drop H if after vowell', function () {\n    expect(metaphone.dropH('that')).toBe('that')\n  })\n\n  it('should not drop H if not before vowell', function () {\n    expect(metaphone.dropH('chump')).toBe('chump')\n  })\n\n  it('should transform CK to K', function () {\n    expect(metaphone.transformCK('check')).toBe('chek')\n  })\n\n  it('should transform PH to F', function () {\n    expect(metaphone.transformPH('phone')).toBe('fone')\n  })\n\n  it('should transform Q to K', function () {\n    expect(metaphone.transformQ('quack')).toBe('kuack')\n  })\n\n  it('should transform S to X if followed by H, IO, or IA', function () {\n    expect(metaphone.transformS('shack')).toBe('xhack')\n    expect(metaphone.transformS('sialagogues')).toBe('xialagogues')\n    expect(metaphone.transformS('asia')).toBe('axia')\n  })\n\n  it('should not transform S to X if not followed by H, IO, or IA', function () {\n    expect(metaphone.transformS('substance')).toBe('substance')\n  })\n\n  it('should transform T to X if followed by IA or IO', function () {\n    expect(metaphone.transformT('dementia')).toBe('demenxia')\n    expect(metaphone.transformT('abbreviation')).toBe('abbreviaxion')\n  })\n\n  it('should transform TH to 0', function () {\n    expect(metaphone.transformT('that')).toBe('0at')\n  })\n\n  it('should drop T if followed by CH', function () {\n    expect(metaphone.dropT('backstitch')).toBe('backstich')\n  })\n\n  it('should transform V to F', function () {\n    expect(metaphone.transformV('vestige')).toBe('festige')\n  })\n\n  it('should transform WH to W if at beginning', function () {\n    expect(metaphone.transformWH('whisper')).toBe('wisper')\n  })\n\n  it('should drop W if not followed by vowell', function () {\n    expect(metaphone.dropW('bowl')).toBe('bol')\n    expect(metaphone.dropW('warsaw')).toBe('warsa')\n  })\n\n  it('should transform X to S if at beginning', function () {\n    expect(metaphone.transformX('xenophile')).toBe('senophile')\n  })\n\n  it('should transform X to KS if not at beginning', function () {\n    expect(metaphone.transformX('admixed')).toBe('admiksed')\n  })\n\n  it('should drop Y of not followed by a vowell', function () {\n    expect(metaphone.dropY('analyzer')).toBe('analzer')\n    expect(metaphone.dropY('specify')).toBe('specif')\n  })\n\n  it('should not drop Y of followed by a vowell', function () {\n    expect(metaphone.dropY('allying')).toBe('allying')\n  })\n\n  it('should transform Z to S', function () {\n    expect(metaphone.transformZ('blaze')).toBe('blase')\n  })\n\n  it('should drop all vowels except initial', function () {\n    expect(metaphone.dropVowels('ablaze')).toBe('ablz')\n    expect(metaphone.dropVowels('adamantium')).toBe('admntm')\n  })\n\n  it('should do all', function () {\n    expect(metaphone.process('ablaze')).toBe('ABLS')\n    expect(metaphone.process('transition')).toBe('TRNSXN')\n    expect(metaphone.process('astronomical')).toBe('ASTRNMKL')\n    expect(metaphone.process('buzzard')).toBe('BSRT')\n    expect(metaphone.process('wonderer')).toBe('WNTRR')\n    expect(metaphone.process('district')).toBe('TSTRKT')\n    expect(metaphone.process('hockey')).toBe('HK')\n    expect(metaphone.process('capital')).toBe('KPTL')\n    expect(metaphone.process('penguin')).toBe('PNKN')\n    expect(metaphone.process('garbonzo')).toBe('KRBNS')\n    expect(metaphone.process('lightning')).toBe('LTNNK')\n    expect(metaphone.process('light')).toBe('LT')\n  })\n\n  it('should compare strings', function () {\n    expect(metaphone.compare('phonetics', 'fonetix')).toBeTruthy()\n    expect(metaphone.compare('phonetics', 'garbonzo')).toBeFalsy()\n    expect(metaphone.compare('PHONETICS', 'fonetix')).toBeTruthy()\n    expect(metaphone.compare('PHONETICS', 'garbonzo')).toBeFalsy()\n  })\n\n  /*\n  it('#173', function () {\n    expect(metaphone.process('caesar')).toBe('KSR')\n    expect(metaphone.process('chemical')).toBe('KMKL')\n  })\n  */\n\n  /*\n    it('should compare strings with string patch', function() {\n        metaphone.attach();\n        expect('phonetics'.soundsLike('fonetix')).toBeTruthy();\n        expect('phonetics'.soundsLike('garbonzo')).toBeFalsy();\n        expect('PHONETICS'.soundsLike('fonetix')).toBeTruthy();\n        expect('PHONETICS'.soundsLike('garbonzo')).toBeFalsy();\n    });\n\n    it('should return string phonetics with string patch', function() {\n        metaphone.attach();\n        expect('phonetics'.phonetics()).toBe('FNTKS');\n        expect('PHONETICS'.phonetics()).toBe('FNTKS');\n    });\n\n    it('should transform PH to F #169', function() {\n      expect('pharaoh'.phonetics()).toBe('FR');\n      expect('tough'.phonetics()).toBe('TF');\n    });\n\n    it('should tokenize and return string phonetics with string patch', function() {\n        metaphone.attach();\n        expect('phonetics'.tokenizeAndPhoneticize()).toEqual(['FNTKS']);\n        expect('phonetics garbonzo'.tokenizeAndPhoneticize()).toEqual(['FNTKS', 'KRBNS']);\n        expect('phonetics garbonzo lightning'.tokenizeAndPhoneticize()).toEqual(['FNTKS', 'KRBNS', 'LTNNK']);\n    });\n    */\n\n  it('should truncate to length specified if code exceeds', function () {\n    expect(metaphone.process('phonetics', 4)).toBe('FNTK')\n  })\n\n  it('should not truncate to length specified if code does not exceed', function () {\n    expect(metaphone.process('phonetics', 8)).toBe('FNTKS')\n  })\n})\n"
  },
  {
    "path": "spec/ngram_spec.ts",
    "content": "/*\nCopyright (c) 2019, Rob Ellis, Chris Umbel, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { NGrams, AggressiveTokenizerFr, AggressiveTokenizer } from 'lib/natural'\nimport text from '../spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json'\n\ndescribe('ngrams', function () {\n  it('should bigram a string via ngrams', function () {\n    expect(NGrams.ngrams('these are some words', 2)).toEqual([['these', 'are'],\n      ['are', 'some'], ['some', 'words']])\n  })\n\n  it('should bigram an array via ngrams', function () {\n    expect(NGrams.ngrams(['these', 'are', 'some', 'words'], 2)).toEqual([['these', 'are'],\n      ['are', 'some'], ['some', 'words']])\n  })\n\n  it('should trigram a string via ngrams', function () {\n    expect(NGrams.ngrams('these are some words', 3)).toEqual([['these', 'are', 'some'],\n      ['are', 'some', 'words']])\n  })\n\n  it('should trigram an array via ngrams', function () {\n    expect(NGrams.ngrams(['these', 'are', 'some', 'words'], 3)).toEqual([['these', 'are', 'some'],\n      ['are', 'some', 'words']])\n  })\n\n  describe('bigrams', function () {\n    it('should bigram a string', function () {\n      expect(NGrams.bigrams('these are some words')).toEqual([['these', 'are'],\n        ['are', 'some'], ['some', 'words']])\n    })\n\n    it('should bigram an array', function () {\n      expect(NGrams.bigrams(['these', 'are', 'some', 'words'])).toEqual([['these', 'are'],\n        ['are', 'some'], ['some', 'words']])\n    })\n  })\n\n  describe('trigrams', function () {\n    it('should bigram a string', function () {\n      expect(NGrams.trigrams('these are some words')).toEqual([['these', 'are', 'some'],\n        ['are', 'some', 'words']])\n    })\n\n    it('should bigram an array', function () {\n      expect(NGrams.trigrams(['these', 'are', 'some', 'words'])).toEqual([['these', 'are', 'some'],\n        ['are', 'some', 'words']])\n    })\n  })\n\n  // New Start/End Symbols Feature\n  it('should bigram a string with start and end symbols', function () {\n    expect(NGrams.ngrams('these are some words', 2, '[start]', '[end]')).toEqual([\n      ['[start]', 'these'],\n      ['these', 'are'],\n      ['are', 'some'],\n      ['some', 'words'],\n      ['words', '[end]']\n    ])\n  })\n\n  it('should bigram a string with start symbols only', function () {\n    expect(NGrams.ngrams('these are some words', 2, '[start]')).toEqual([\n      ['[start]', 'these'],\n      ['these', 'are'],\n      ['are', 'some'],\n      ['some', 'words']\n    ])\n  })\n\n  it('should bigram a string with end symbols only', function () {\n    expect(NGrams.ngrams('these are some words', 2, null, '[end]')).toEqual([\n      ['these', 'are'],\n      ['are', 'some'],\n      ['some', 'words'],\n      ['words', '[end]']\n    ])\n  })\n\n  it('should trigram a string with start and end symbols', function () {\n    expect(NGrams.ngrams('these are some words', 3, '[start]', '[end]')).toEqual([\n      ['[start]', '[start]', 'these'],\n      ['[start]', 'these', 'are'],\n      ['these', 'are', 'some'],\n      ['are', 'some', 'words'],\n      ['some', 'words', '[end]'],\n      ['words', '[end]', '[end]']\n    ])\n  })\n\n  it('should 4-gram a string with start and end symbols', function () {\n    expect(NGrams.ngrams('these are some words', 4, '[start]', '[end]')).toEqual([\n      ['[start]', '[start]', '[start]', 'these'],\n      ['[start]', '[start]', 'these', 'are'],\n      ['[start]', 'these', 'are', 'some'],\n      ['these', 'are', 'some', 'words'],\n      ['are', 'some', 'words', '[end]'],\n      ['some', 'words', '[end]', '[end]'],\n      ['words', '[end]', '[end]', '[end]']\n    ])\n  })\n\n  it('should use french tokenizer', function () {\n    const t = new AggressiveTokenizerFr()\n    NGrams.setTokenizer(t)\n    expect(NGrams.ngrams('Un Éléphant rouge', 2)).toEqual([['Un', 'Éléphant'],\n      ['Éléphant', 'rouge']])\n  })\n\n  it('should trigram a string via ngrams including statistics', function () {\n    const t = new AggressiveTokenizer()\n    NGrams.setTokenizer(t)\n    text.sentences.forEach(sentence => {\n      const result = NGrams.ngrams(sentence, 3, null, null, true)\n      let nrNgrams = 0\n      Object.keys(result.Nr).forEach(function (f) {\n        const n = parseInt(f, 10)\n        nrNgrams += result.Nr[n] * n\n      })\n      expect(nrNgrams).toEqual(result.numberOfNgrams)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/ngram_zh_spec.ts",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { NGramsZH } from 'lib/natural'\n\ndescribe('ngrams (zh)', function () {\n  it('should bigram a string via ngrams', function () {\n    expect(NGramsZH.ngrams('中文文本测试', 2)).toEqual([['中', '文'],\n      ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']])\n  })\n\n  it('should bigram an array via ngrams', function () {\n    expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 2)).toEqual([['中', '文'],\n      ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']])\n  })\n\n  it('should trigram a string via ngrams', function () {\n    expect(NGramsZH.ngrams('中文文本测试', 3)).toEqual([['中', '文', '文'],\n      ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']])\n  })\n\n  it('should trigram an array via ngrams', function () {\n    expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 3)).toEqual([['中', '文', '文'],\n      ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']])\n  })\n\n  describe('bigrams', function () {\n    it('should bigram a string', function () {\n      expect(NGramsZH.bigrams('中文文本测试')).toEqual([['中', '文'],\n        ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']])\n    })\n\n    it('should bigram an array', function () {\n      expect(NGramsZH.bigrams(['中', '文', '文', '本', '测', '试'])).toEqual([['中', '文'],\n        ['文', '文'], ['文', '本'], ['本', '测'], ['测', '试']])\n    })\n  })\n\n  describe('trigrams', function () {\n    /*\n    it('should trigram a string', function () {\n      expect(NGramsZH.ngrams('中文文本测试', 3)).toEqual([['中', '文', '文'],\n        ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']])\n    })\n    */\n\n    it('should bigram an array', function () {\n      expect(NGramsZH.ngrams(['中', '文', '文', '本', '测', '试'], 3)).toEqual([['中', '文', '文'],\n        ['文', '文', '本'], ['文', '本', '测'], ['本', '测', '试']])\n    })\n  })\n\n  it('should bigram a string with start and end symbols', function () {\n    expect(NGramsZH.ngrams('中文测试', 2, '[start]', '[end]')).toEqual([\n      ['[start]', '中'],\n      ['中', '文'],\n      ['文', '测'],\n      ['测', '试'],\n      ['试', '[end]']\n    ])\n  })\n\n  it('should bigram a string with start symbols only', function () {\n    expect(NGramsZH.ngrams('中文测试', 2, '[start]')).toEqual([\n      ['[start]', '中'],\n      ['中', '文'],\n      ['文', '测'],\n      ['测', '试']\n    ])\n  })\n\n  it('should bigram a string with end symbols only', function () {\n    expect(NGramsZH.ngrams('中文测试', 2, null, '[end]')).toEqual([\n      ['中', '文'],\n      ['文', '测'],\n      ['测', '试'],\n      ['试', '[end]']\n    ])\n  })\n\n  it('should trigram a string with start and end symbols', function () {\n    expect(NGramsZH.ngrams('中文测试', 3, '[start]', '[end]')).toEqual([\n      ['[start]', '[start]', '中'],\n      ['[start]', '中', '文'],\n      ['中', '文', '测'],\n      ['文', '测', '试'],\n      ['测', '试', '[end]'],\n      ['试', '[end]', '[end]']\n    ])\n  })\n\n  it('should 4-gram a string with start and end symbols', function () {\n    expect(NGramsZH.ngrams('中文测试', 4, '[start]', '[end]')).toEqual([\n      ['[start]', '[start]', '[start]', '中'],\n      ['[start]', '[start]', '中', '文'],\n      ['[start]', '中', '文', '测'],\n      ['中', '文', '测', '试'],\n      ['文', '测', '试', '[end]'],\n      ['测', '试', '[end]', '[end]'],\n      ['试', '[end]', '[end]', '[end]']\n    ])\n  })\n})\n"
  },
  {
    "path": "spec/normalizer_ja_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n */\n\n'use strict'\n\nimport {\n  normalizeJa,\n  Converters\n} from 'lib/natural'\nconst converters = new Converters()\n\ndescribe('normalizeJa', function () {\n  it('should fix badly formed hiragana', function () {\n    expect(normalizeJa('う゛か゛き゛く゛は゜ひ゜ふ゜')).toEqual('ゔがぎぐぱぴぷ')\n    expect(normalizeJa('うﾞかﾞきﾞくﾞはﾟひﾟふﾟ')).toEqual('ゔがぎぐぱぴぷ')\n    expect(normalizeJa('まっなか')).toEqual('まんなか')\n  })\n\n  it('should fix badly formed fullwidth katakana', function () {\n    expect(normalizeJa('ウ゛カ゛キ゛ク゛ハ゜ヒ゜フ゜')).toEqual('ヴガギグパピプ')\n    expect(normalizeJa('ウﾞカﾞキﾞクﾞハﾟヒﾟフﾟ')).toEqual('ヴガギグパピプ')\n  })\n\n  it('should fix badly formed halfwidth katakana', function () {\n    expect(normalizeJa('ｳ゛ｶ゛ｷ゛ｸ゛ﾊ゜ﾋ゜ﾌ゜')).toEqual('ヴガギグパピプ')\n    expect(normalizeJa('ｳﾞｶﾞｷﾞｸﾞﾊﾟﾋﾟﾌﾟ')).toEqual('ヴガギグパピプ')\n  })\n\n  it('should transform halfwidth katakana to fullwidth', function () {\n    expect(normalizeJa('ｶﾀｶﾅ')).toEqual('カタカナ')\n  })\n\n  it('should transform fullwidth alphanumerical characters to halfwidth', function () {\n    expect(normalizeJa('ＡＢＣ１２３')).toEqual('ABC123')\n  })\n\n  it('should transform fullwidth spaces to halfwidth', function () {\n    expect(normalizeJa('空　空　空')).toEqual('空 空 空')\n  })\n\n  it('should transform halfwidth punctuation signs to fullwidth', function () {\n    // Taken from http://unicode.org/cldr/trac/browser/trunk/common/main/ja.xml\n    expect(normalizeJa('〜 ・ ･ 、､ 。｡ 「｢ 」｣'))\n      .toEqual('〜 ・ ・ 、、 。。 「「 」」')\n  })\n\n  it('should transform fullwidth symbols to halfwidth', function () {\n    // Taken from http://unicode.org/cldr/trac/browser/trunk/common/main/ja.xml\n    expect(normalizeJa('‾ _＿ -－ ‐ — ― ,， ;； :： !！ ?？ .． ‥ … ＇＼ ‘ ’ \"＂ “ ” (（ )） [［ ]］ {｛ }｝ 〈 〉 《 》 『 』 【 】 〔 〕 ‖ § ¶ @＠ +＋ ^＾ $＄ *＊ /／ ＼\\\\ &＆ #＃ %％ ‰ † ‡ ′ ″ 〃 ※'))\n      .toEqual('‾ __ -- ‐ — ― ,, ;; :: !! ?? .. ‥ … ＇\\\\ ‘ ’ \"\" “ ” (( )) [[ ]] {{ }} 〈 〉 《 》 『 』 【 】 〔 〕 ‖ § ¶ @@ ++ ^^ $$ ** // \\\\\\\\ && ## %% ‰ † ‡ ′ ″ 〃 ※')\n  })\n\n  it('should replace repeat characters', function () {\n    expect(normalizeJa('時々刻々')).toEqual('時時刻刻')\n    expect(normalizeJa('甲斐々々しい')).toEqual('甲斐甲斐しい')\n  })\n\n  it('should replace composite symbols', function () {\n    expect(normalizeJa('㍼54年㋃㏪')).toEqual('昭和54年4月11日')\n    expect(normalizeJa('㍧〜㍬')).toEqual('15点〜20点')\n    expect(normalizeJa('カンパニー㍿')).toEqual('カンパニー株式会社')\n    expect(normalizeJa('100㌫')).toEqual('100パーセント')\n    expect(normalizeJa('70㌔')).toEqual('70キロ')\n    expect(normalizeJa('㍇')).toEqual('マンション')\n  })\n})\n\nconst sample = 'ABC ＡＢＣ　123１２３.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ'\n\ndescribe('converters', function () {\n  it('should all be reversible', function () {\n    const sample = '半角カナ（はんかくカナ）とは、JIS X 0208など片仮名を含む他の文字集合と同時に運用される場合におけるJIS X 0201の片仮名文字集合の通称である。漢字を含む文字集合で定義された片仮名に対して、半分の文字幅で表示されることが一般的であったためこのように呼ばれる。JIS X 0201で規定される8ビット符号化およびShift_JISにおいて0xA1-0xDFの範囲の1バイト文字がこれにあたる。また、Shift_JISやEUC-JPなどの符号化方式やUnicodeでも互換性の目的でこの文字集合をもっている。'\n    expect(converters.alphabetHF(converters.alphabetFH(sample))).toEqual(converters.alphabetHF(sample))\n    expect(converters.alphabetFH(converters.alphabetHF(sample))).toEqual(converters.alphabetFH(sample))\n    expect(converters.numbersHF(converters.numbersFH(sample))).toEqual(converters.numbersHF(sample))\n    expect(converters.numbersFH(converters.numbersHF(sample))).toEqual(converters.numbersFH(sample))\n    expect(converters.punctuationHF(converters.punctuationFH(sample))).toEqual(converters.punctuationHF(sample))\n    expect(converters.punctuationFH(converters.punctuationHF(sample))).toEqual(converters.punctuationFH(sample))\n    expect(converters.katakanaHF(converters.katakanaFH(sample))).toEqual(converters.katakanaHF(sample))\n    expect(converters.katakanaFH(converters.katakanaHF(sample))).toEqual(converters.katakanaFH(sample))\n  })\n\n  describe('.fullwidthToHalfwidth', function () {\n    describe('.alphabet', function () {\n      it('should transform fullwidth roman characters and space to halfwidth', function () {\n        expect(converters.alphabetFH(sample)).toEqual('ABC ABC 123１２３.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.numbers', function () {\n      it('should transform fullwidth numerical characters to halfwidth', function () {\n        expect(converters.numbersFH(sample)).toEqual('ABC ＡＢＣ　123123.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.punctuation', function () {\n      it('should transform fullwidth punctuation signs to halfwidth', function () {\n        expect(converters.punctuationFH(sample)).toEqual('ABC ＡＢＣ　123１２３.,-.,-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.katakana', function () {\n      it('should transform fullwidth katakana to halfwidth', function () {\n        expect(converters.katakanaFH(sample)).toEqual('ABC ＡＢＣ　123１２３.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟｳﾞｶｷｸｹｺﾊﾊﾞﾊﾟ')\n      })\n    })\n  })\n\n  describe('.halfwidthToFullwidth', function () {\n    describe('.alphabet', function () {\n      it('should transform halfwidth roman characters and space to fullwidth', function () {\n        expect(converters.alphabetHF(sample)).toEqual('ＡＢＣ　ＡＢＣ　123１２３.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.numbers', function () {\n      it('should transform halfwidth numerical characters to fullwidth', function () {\n        expect(converters.numbersHF(sample)).toEqual('ABC ＡＢＣ　１２３１２３.,-．，-ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.punctuation', function () {\n      it('should transform halfwidth punctuation signs to fullwidth', function () {\n        expect(converters.punctuationHF(sample)).toEqual('ABC ＡＢＣ　123１２３．，─．，─ゔあいうえおはばぱｶｷｸｹｺﾊﾊﾞﾊﾟヴカキクケコハバパ')\n      })\n    })\n\n    describe('.katakana', function () {\n      it('should transform halfwidth katakana to fullwidth', function () {\n        expect(converters.katakanaHF(sample)).toEqual('ABC ＡＢＣ　123１２３.,-．，-ゔあいうえおはばぱカキクケコハバパヴカキクケコハバパ')\n      })\n    })\n  })\n\n  describe('.hiraganaToKatakana', function () {\n    it('should transform hiragana to katakana', function () {\n      expect(converters.hiraganaToKatakana(sample)).toEqual('ABC ＡＢＣ　123１２３.,-．，-ヴアイウエオハバパカキクケコハバパヴカキクケコハバパ')\n    })\n  })\n\n  describe('.katakanaToHiragana', function () {\n    it('should transform katakana to hiragana', function () {\n      expect(converters.katakanaToHiragana(sample)).toEqual('ABC ＡＢＣ　123１２３.,-．，-ゔあいうえおはばぱかきくけこはばぱゔかきくけこはばぱ')\n    })\n  })\n})\n"
  },
  {
    "path": "spec/normalizer_no_spec.ts",
    "content": "/*\nCopyright (c) 2014, Kristoffer Brabrand\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { normalizeNo as normalizer } from 'lib/natural'\n\ndescribe('normalizer_no', function () {\n  /**\n     * Test character normalization\n     **/\n  describe('Normalization of diacritical marks', function () {\n    it(\"should leave uppercase and lowercase ä's untouched\", function () {\n      expect(normalizer('ä')).toBe('ä')\n      expect(normalizer('Ä')).toBe('Ä')\n    })\n\n    it(\"should leave uppercase and lowercase ö's untouched\", function () {\n      expect(normalizer('ö')).toBe('ö')\n      expect(normalizer('Ö')).toBe('Ö')\n    })\n\n    it(\"should leave uppercase and lowercase ü's untouched\", function () {\n      expect(normalizer('ü')).toBe('ü')\n      expect(normalizer('Ü')).toBe('Ü')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase a's with grave accents\", function () {\n      expect(normalizer('à')).toBe('a')\n      expect(normalizer('À')).toBe('A')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase a's with acute accents\", function () {\n      expect(normalizer('á')).toBe('a')\n      expect(normalizer('Á')).toBe('A')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase a's with circumflex accents\", function () {\n      expect(normalizer('â')).toBe('a')\n      expect(normalizer('Â')).toBe('A')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase c's with cedillas\", function () {\n      expect(normalizer('ç')).toBe('c')\n      expect(normalizer('Ç')).toBe('C')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase e's with grave accents\", function () {\n      expect(normalizer('è')).toBe('e')\n      expect(normalizer('È')).toBe('E')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase e's with acute accents\", function () {\n      expect(normalizer('é')).toBe('e')\n      expect(normalizer('É')).toBe('E')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase e's with circumflex accents\", function () {\n      expect(normalizer('ê')).toBe('e')\n      expect(normalizer('Ê')).toBe('E')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase i's with circumflex accents\", function () {\n      expect(normalizer('î')).toBe('i')\n      expect(normalizer('Î')).toBe('I')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase n's with tildes\", function () {\n      expect(normalizer('ñ')).toBe('n')\n      expect(normalizer('Ñ')).toBe('N')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase o's with acute accents\", function () {\n      expect(normalizer('ó')).toBe('o')\n      expect(normalizer('Ó')).toBe('O')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase o's with circumflex accents\", function () {\n      expect(normalizer('ô')).toBe('o')\n      expect(normalizer('Ô')).toBe('O')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase u's with circumflex accents\", function () {\n      expect(normalizer('û')).toBe('u')\n      expect(normalizer('Û')).toBe('U')\n    })\n\n    it(\"should correctly normalize uppercase and lowercase s's with caron/wedge accents\", function () {\n      expect(normalizer('š')).toBe('s')\n      expect(normalizer('Š')).toBe('S')\n    })\n  })\n})\n"
  },
  {
    "path": "spec/normalizer_spec.ts",
    "content": "/*\nCopyright (c) 2013, Ken Koch\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { normalize as normalizer } from 'lib/natural'\n\ndescribe('normalizer', function () {\n  /**\n     * Test Normal Execution. This tests that the basic rules are sound and does not consider special cases.\n     **/\n  describe('normal operations (rule execution)', function () {\n    it(\"should correctly normalize n't as not\", function () {\n      expect(JSON.stringify(normalizer([\"hasn't\"]))).toBe(JSON.stringify(['has', 'not']))\n      expect(JSON.stringify(normalizer([\"hadn't\"]))).toBe(JSON.stringify(['had', 'not']))\n      expect(JSON.stringify(normalizer([\"haven't\"]))).toBe(JSON.stringify(['have', 'not']))\n    })\n\n    it(\"should correctly normalize 's as is\", function () {\n      expect(JSON.stringify(normalizer([\"it's\"]))).toBe(JSON.stringify(['it', 'is']))\n      expect(JSON.stringify(normalizer([\"he's\"]))).toBe(JSON.stringify(['he', 'is']))\n      expect(JSON.stringify(normalizer([\"here's\"]))).toBe(JSON.stringify(['here', 'is']))\n    })\n\n    it(\"should correctly normalize 'll as will\", function () {\n      expect(JSON.stringify(normalizer([\"we'll\"]))).toBe(JSON.stringify(['we', 'will']))\n      expect(JSON.stringify(normalizer([\"he'll\"]))).toBe(JSON.stringify(['he', 'will']))\n      expect(JSON.stringify(normalizer([\"I'll\"]))).toBe(JSON.stringify(['I', 'will']))\n    })\n\n    it(\"should correctly normalize 're as are\", function () {\n      expect(JSON.stringify(normalizer([\"we're\"]))).toBe(JSON.stringify(['we', 'are']))\n      expect(JSON.stringify(normalizer([\"how're\"]))).toBe(JSON.stringify(['how', 'are']))\n    })\n\n    it(\"should correctly normalize 'd as would\", function () {\n      expect(JSON.stringify(normalizer([\"he'd\"]))).toBe(JSON.stringify(['he', 'would']))\n      expect(JSON.stringify(normalizer([\"I'd\"]))).toBe(JSON.stringify(['I', 'would']))\n    })\n  })\n\n  /**\n     * Test special case execution, this ensures that special cases are correctly normalized.\n     **/\n  describe('special cases', function () {\n    it(\"should convert can't to cannot\", function () {\n      expect(JSON.stringify(normalizer([\"can't\"]))).toBe(JSON.stringify(['can', 'not']))\n    })\n\n    it(\"should convert couldn't've as could not have\", function () {\n      expect(JSON.stringify(normalizer([\"couldn't've\"]))).toBe(JSON.stringify(['could', 'not', 'have']))\n    })\n\n    it(\"should convert how'd to how did\", function () {\n      expect(JSON.stringify(normalizer([\"how'd\"]))).toBe(JSON.stringify(['how', 'did']))\n    })\n\n    it(\"should correctly normalize I'm as I am\", function () {\n      expect(JSON.stringify(normalizer([\"I'm\"]))).toBe(JSON.stringify(['I', 'am']))\n    })\n  })\n\n  /**\n     * Test some basic properties of the normailization.\n     **/\n  describe('basic properties', function () {\n    it('should handle different cases on special case conversion', function () {\n      expect(JSON.stringify(normalizer([\"I'm\"]))).toBe(JSON.stringify(['I', 'am']))\n      expect(JSON.stringify(normalizer([\"i'm\"]))).toBe(JSON.stringify(['I', 'am']))\n      expect(JSON.stringify(normalizer([\"can't\"]))).toBe(JSON.stringify(['can', 'not']))\n      expect(JSON.stringify(normalizer([\"Can't\"]))).toBe(JSON.stringify(['can', 'not']))\n      expect(JSON.stringify(normalizer([\"CaN'T\"]))).toBe(JSON.stringify(['can', 'not']))\n      expect(JSON.stringify(normalizer([\"how'd\"]))).toBe(JSON.stringify(['how', 'did']))\n      expect(JSON.stringify(normalizer([\"how'D\"]))).toBe(JSON.stringify(['how', 'did']))\n      expect(JSON.stringify(normalizer([\"HOw'd\"]))).toBe(JSON.stringify(['how', 'did']))\n      expect(JSON.stringify(normalizer([\"COULDN't've\"]))).toBe(JSON.stringify(['could', 'not', 'have']))\n      expect(JSON.stringify(normalizer([\"couldn'T've\"]))).toBe(JSON.stringify(['could', 'not', 'have']))\n      expect(JSON.stringify(normalizer([\"couldn't'VE\"]))).toBe(JSON.stringify(['could', 'not', 'have']))\n    })\n\n    // Note: In rule-based conversion, case will be preserved on the base word.\n    it('should handle different cases on rule-based conversion', function () {\n      expect(JSON.stringify(normalizer([\"Hasn't\"]))).toBe(JSON.stringify(['Has', 'not']))\n      expect(JSON.stringify(normalizer([\"HAsn't\"]))).toBe(JSON.stringify(['HAs', 'not']))\n      expect(JSON.stringify(normalizer([\"hasn'T\"]))).toBe(JSON.stringify(['has', 'not']))\n      expect(JSON.stringify(normalizer([\"It's\"]))).toBe(JSON.stringify(['It', 'is']))\n      expect(JSON.stringify(normalizer([\"IT's\"]))).toBe(JSON.stringify(['IT', 'is']))\n      expect(JSON.stringify(normalizer([\"it'S\"]))).toBe(JSON.stringify(['it', 'is']))\n      expect(JSON.stringify(normalizer([\"We'll\"]))).toBe(JSON.stringify(['We', 'will']))\n      expect(JSON.stringify(normalizer([\"WE'll\"]))).toBe(JSON.stringify(['WE', 'will']))\n      expect(JSON.stringify(normalizer([\"we'Ll\"]))).toBe(JSON.stringify(['we', 'will']))\n      expect(JSON.stringify(normalizer([\"How're\"]))).toBe(JSON.stringify(['How', 'are']))\n      expect(JSON.stringify(normalizer([\"hOW're\"]))).toBe(JSON.stringify(['hOW', 'are']))\n      expect(JSON.stringify(normalizer([\"how'RE\"]))).toBe(JSON.stringify(['how', 'are']))\n      expect(JSON.stringify(normalizer([\"I'd\"]))).toBe(JSON.stringify(['I', 'would']))\n      expect(JSON.stringify(normalizer([\"i'd\"]))).toBe(JSON.stringify(['i', 'would']))\n      expect(JSON.stringify(normalizer([\"I'D\"]))).toBe(JSON.stringify(['I', 'would']))\n    })\n\n    it('should convert a string to an array for normalization', function () {\n      expect(JSON.stringify(normalizer(\"I'D\"))).toBe(JSON.stringify(['I', 'would']))\n    })\n\n    it('should simply tokenize a string that does not match a rule', function () {\n      expect(JSON.stringify(normalizer(['Has', 'not']))).toBe(JSON.stringify(['Has', 'not']))\n      expect(JSON.stringify(normalizer(['HAs', 'not']))).toBe(JSON.stringify(['HAs', 'not']))\n      expect(JSON.stringify(normalizer(['has', 'noT']))).toBe(JSON.stringify(['has', 'noT']))\n      expect(JSON.stringify(normalizer(['It', 'is']))).toBe(JSON.stringify(['It', 'is']))\n      expect(JSON.stringify(normalizer(['IT', 'is']))).toBe(JSON.stringify(['IT', 'is']))\n      expect(JSON.stringify(normalizer(['it', 'iS']))).toBe(JSON.stringify(['it', 'iS']))\n      expect(JSON.stringify(normalizer(['We', 'will']))).toBe(JSON.stringify(['We', 'will']))\n      expect(JSON.stringify(normalizer(['WE', 'will']))).toBe(JSON.stringify(['WE', 'will']))\n      expect(JSON.stringify(normalizer(['we', 'wiLl']))).toBe(JSON.stringify(['we', 'wiLl']))\n      expect(JSON.stringify(normalizer(['How', 'are']))).toBe(JSON.stringify(['How', 'are']))\n      expect(JSON.stringify(normalizer(['hOW', 'are']))).toBe(JSON.stringify(['hOW', 'are']))\n      expect(JSON.stringify(normalizer(['how', 'aRE']))).toBe(JSON.stringify(['how', 'aRE']))\n      expect(JSON.stringify(normalizer(['I', 'would']))).toBe(JSON.stringify(['I', 'would']))\n      expect(JSON.stringify(normalizer(['i', 'would']))).toBe(JSON.stringify(['i', 'would']))\n      expect(JSON.stringify(normalizer(['I', 'woulD']))).toBe(JSON.stringify(['I', 'woulD']))\n    })\n  })\n})\n"
  },
  {
    "path": "spec/noun_inflector_fr_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n */\n\n'use strict'\n\nimport { NounInflectorFr } from 'lib/natural'\nconst inflector = new NounInflectorFr()\n\ndescribe('NounInflector (fr)', function () {\n  describe('.pluralize()', function () {\n    it('should pluralize exception nouns ending by -al', function () {\n      expect(inflector.pluralize('carnaval')).toBe('carnavals')\n      expect(inflector.pluralize('narval')).toBe('narvals')\n      expect(inflector.pluralize('récital')).toBe('récitals')\n    })\n\n    it('should pluralize regular nouns ending by -al', function () {\n      expect(inflector.pluralize('amiral')).toBe('amiraux')\n      expect(inflector.pluralize('cheval')).toBe('chevaux')\n      expect(inflector.pluralize('général')).toBe('généraux')\n    })\n\n    it('should pluralize exception nouns ending by -ail', function () {\n      expect(inflector.pluralize('bail')).toBe('baux')\n      expect(inflector.pluralize('vitrail')).toBe('vitraux')\n      expect(inflector.pluralize('émail')).toBe('émaux')\n    })\n\n    it('should pluralize regular nouns ending by -ail', function () {\n      expect(inflector.pluralize('détail')).toBe('détails')\n      expect(inflector.pluralize('poitrail')).toBe('poitrails')\n      expect(inflector.pluralize('chandail')).toBe('chandails')\n    })\n\n    it('should pluralize exception nouns ending by -il', function () {\n      expect(inflector.pluralize('ciel')).toBe('cieux')\n      expect(inflector.pluralize('œil')).toBe('yeux')\n    })\n\n    it('should pluralize exception nouns ending by -ou', function () {\n      expect(inflector.pluralize('bijou')).toBe('bijoux')\n      expect(inflector.pluralize('joujou')).toBe('joujoux')\n      expect(inflector.pluralize('hibou')).toBe('hiboux')\n    })\n\n    it('should pluralize regular nouns ending by -ou', function () {\n      expect(inflector.pluralize('trou')).toBe('trous')\n      expect(inflector.pluralize('bambou')).toBe('bambous')\n      expect(inflector.pluralize('toutou')).toBe('toutous')\n    })\n\n    it('should pluralize exception nouns ending by -au', function () {\n      expect(inflector.pluralize('berimbau')).toBe('berimbaus')\n      expect(inflector.pluralize('landau')).toBe('landaus')\n      expect(inflector.pluralize('pilau')).toBe('pilaus')\n    })\n\n    it('should pluralize regular nouns ending by -au', function () {\n      expect(inflector.pluralize('cadeau')).toBe('cadeaux')\n      expect(inflector.pluralize('beau')).toBe('beaux')\n      expect(inflector.pluralize('étau')).toBe('étaux')\n    })\n\n    it('should pluralize exception nouns ending by -eu', function () {\n      expect(inflector.pluralize('bleu')).toBe('bleus')\n      expect(inflector.pluralize('émeu')).toBe('émeus')\n      expect(inflector.pluralize('pneu')).toBe('pneus')\n    })\n\n    it('should pluralize regular nouns ending by -eu', function () {\n      expect(inflector.pluralize('pieu')).toBe('pieux')\n      expect(inflector.pluralize('lieu')).toBe('lieux')\n      expect(inflector.pluralize('feu')).toBe('feux')\n    })\n\n    it('should pluralize regular nouns ending by -eau', function () {\n      expect(inflector.pluralize('eau')).toBe('eaux')\n      expect(inflector.pluralize('manteau')).toBe('manteaux')\n      expect(inflector.pluralize('arbrisseau')).toBe('arbrisseaux')\n    })\n\n    it('should pluralize regular nouns ending by -œu', function () {\n      expect(inflector.pluralize('vœu')).toBe('vœux')\n    })\n\n    it('should pluralize regular nouns ending by -s, -x or -z', function () {\n      expect(inflector.pluralize('os')).toBe('os')\n      expect(inflector.pluralize('cas')).toBe('cas')\n      expect(inflector.pluralize('rhinocéros')).toBe('rhinocéros')\n\n      expect(inflector.pluralize('houx')).toBe('houx')\n      expect(inflector.pluralize('lynx')).toBe('lynx')\n      expect(inflector.pluralize('roux')).toBe('roux')\n\n      expect(inflector.pluralize('gaz')).toBe('gaz')\n      expect(inflector.pluralize('quartz')).toBe('quartz')\n      expect(inflector.pluralize('quiz')).toBe('quiz')\n    })\n\n    it('should pluralize exception nouns', function () {\n      expect(inflector.pluralize('ail')).toBe('aulx')\n      expect(inflector.pluralize('bétail')).toBe('bestiaux')\n    })\n\n    it('should pluralize regular nouns', function () {\n      expect(inflector.pluralize('chai')).toBe('chais')\n      expect(inflector.pluralize('vérité')).toBe('vérités')\n      expect(inflector.pluralize('orange')).toBe('oranges')\n    })\n  })\n\n  describe('.singularize() - part 1', function () {\n    it('should singularize regular nouns ending by -aux', function () {\n      expect(inflector.singularize('amiraux')).toBe('amiral')\n      expect(inflector.singularize('chevaux')).toBe('cheval')\n      expect(inflector.singularize('généraux')).toBe('général')\n      expect(inflector.singularize('baux')).toBe('bail')\n      expect(inflector.singularize('vitraux')).toBe('vitrail')\n      expect(inflector.singularize('émaux')).toBe('émail')\n      expect(inflector.singularize('cadeaux')).toBe('cadeau')\n      expect(inflector.singularize('beaux')).toBe('beau')\n      expect(inflector.singularize('étaux')).toBe('étau')\n    })\n\n    it('should singularize nouns with multiple plural forms', function () {\n      expect(inflector.singularize('ails')).toBe('ail')\n      expect(inflector.singularize('aulx')).toBe('ail')\n      expect(inflector.singularize('ciels')).toBe('ciel')\n      expect(inflector.singularize('cieux')).toBe('ciel')\n      expect(inflector.singularize('œils')).toBe('œil')\n      expect(inflector.singularize('yeux')).toBe('œil')\n      expect(inflector.singularize('aïeuls')).toBe('aïeul') // Regular\n      expect(inflector.singularize('aïeux')).toBe('aïeul')\n      expect(inflector.singularize('bisaïeuls')).toBe('bisaïeul') // Regular\n      expect(inflector.singularize('bisaïeux')).toBe('bisaïeul')\n      expect(inflector.singularize('craus')).toBe('crau')\n      expect(inflector.singularize('craux')).toBe('crau')\n      expect(inflector.singularize('graus')).toBe('grau')\n      expect(inflector.singularize('graux')).toBe('grau')\n      expect(inflector.singularize('sénaus')).toBe('sénau')\n      expect(inflector.singularize('sénaux')).toBe('sénau')\n      expect(inflector.singularize('tussaus')).toBe('tussau')\n      expect(inflector.singularize('tussaux')).toBe('tussau')\n      expect(inflector.singularize('emposieus')).toBe('emposieu')\n      expect(inflector.singularize('emposieux')).toBe('emposieu')\n      expect(inflector.singularize('richelieus')).toBe('richelieu')\n      expect(inflector.singularize('richelieux')).toBe('richelieu')\n      // expect(inflector.singularize('feus')).toBe('feu'); // This one is an adjective.\n      expect(inflector.singularize('feux')).toBe('feu')\n      expect(inflector.singularize('lieus')).toBe('lieu') // Fish\n      expect(inflector.singularize('lieux')).toBe('lieu')\n      expect(inflector.singularize('corails')).toBe('corail')\n      expect(inflector.singularize('coraux')).toBe('corail')\n    })\n\n    it('should singularize exception nouns ending by -oux', function () {\n      expect(inflector.singularize('bijoux')).toBe('bijou')\n      expect(inflector.singularize('joujoux')).toBe('joujou')\n      expect(inflector.singularize('hiboux')).toBe('hibou')\n    })\n\n    it('should singularize exception nouns ending by -eus', function () {\n      expect(inflector.singularize('bleus')).toBe('bleu')\n      expect(inflector.singularize('émeus')).toBe('émeu')\n      expect(inflector.singularize('pneus')).toBe('pneu')\n    })\n\n    it('should singularize regular nouns ending by -eux', function () {\n      expect(inflector.singularize('pieux')).toBe('pieu')\n      expect(inflector.singularize('lieux')).toBe('lieu')\n      expect(inflector.singularize('feux')).toBe('feu')\n    })\n\n    it('should singularize regular nouns ending by -eaux', function () {\n      expect(inflector.singularize('eaux')).toBe('eau')\n      expect(inflector.singularize('manteaux')).toBe('manteau')\n      expect(inflector.singularize('arbrisseaux')).toBe('arbrisseau')\n    })\n\n    it('should singularize regular nouns ending by -œux', function () {\n      expect(inflector.singularize('vœux')).toBe('vœu')\n    })\n\n    it('should singularize regular nouns ending by -s, -x or -z', function () {\n      expect(inflector.singularize('cas')).toBe('cas')\n      expect(inflector.singularize('os')).toBe('os')\n      expect(inflector.singularize('rhinocéros')).toBe('rhinocéros')\n\n      expect(inflector.singularize('houx')).toBe('houx')\n      expect(inflector.singularize('lynx')).toBe('lynx')\n      expect(inflector.singularize('roux')).toBe('roux')\n\n      expect(inflector.singularize('gaz')).toBe('gaz')\n      expect(inflector.singularize('quartz')).toBe('quartz')\n      expect(inflector.singularize('quiz')).toBe('quiz')\n    })\n\n    it('should singularize exception nouns', function () {\n      expect(inflector.singularize('bestiaux')).toBe('bétail')\n    })\n\n    it('should singularize regular nouns', function () {\n      expect(inflector.singularize('chais')).toBe('chai')\n      expect(inflector.singularize('vérités')).toBe('vérité')\n      expect(inflector.singularize('oranges')).toBe('orange')\n\n      // Exception nouns ending by -als\n      expect(inflector.singularize('carnavals')).toBe('carnaval')\n      expect(inflector.singularize('narvals')).toBe('narval')\n      expect(inflector.singularize('récitals')).toBe('récital')\n\n      // Regular nouns ending by -ails\n      expect(inflector.singularize('détails')).toBe('détail')\n      expect(inflector.singularize('poitrails')).toBe('poitrail')\n      expect(inflector.singularize('chandails')).toBe('chandail')\n\n      // Regular nouns ending by -ous\n      expect(inflector.singularize('trous')).toBe('trou')\n      expect(inflector.singularize('bambous')).toBe('bambou')\n      expect(inflector.singularize('toutous')).toBe('toutou')\n\n      // Exception nouns ending by -aus\n      expect(inflector.singularize('berimbaus')).toBe('berimbau')\n      expect(inflector.singularize('landaus')).toBe('landau')\n      expect(inflector.singularize('pilaus')).toBe('pilau')\n    })\n  })\n\n  /*\n    These tests ensure pluralizing plurals or singularizing singulars\n    won't lead to wrong results.\n   */\n  describe('pluralize()', function () {\n    it('should pluralize exception nouns ending by -al', function () {\n      expect(inflector.pluralize('carnavals')).toBe('carnavals')\n      expect(inflector.pluralize('narvals')).toBe('narvals')\n      expect(inflector.pluralize('récitals')).toBe('récitals')\n    })\n\n    it('should pluralize regular nouns ending by -al', function () {\n      expect(inflector.pluralize('amiraux')).toBe('amiraux')\n      expect(inflector.pluralize('chevaux')).toBe('chevaux')\n      expect(inflector.pluralize('généraux')).toBe('généraux')\n    })\n\n    it('should pluralize exception nouns ending by -ail', function () {\n      expect(inflector.pluralize('baux')).toBe('baux')\n      expect(inflector.pluralize('vitraux')).toBe('vitraux')\n      expect(inflector.pluralize('émaux')).toBe('émaux')\n    })\n\n    it('should pluralize regular nouns ending by -ail', function () {\n      expect(inflector.pluralize('détails')).toBe('détails')\n      expect(inflector.pluralize('poitrails')).toBe('poitrails')\n      expect(inflector.pluralize('chandails')).toBe('chandails')\n    })\n\n    it('should pluralize exception nouns ending by -il', function () {\n      expect(inflector.pluralize('cieux')).toBe('cieux')\n      expect(inflector.pluralize('yeux')).toBe('yeux')\n    })\n\n    it('should pluralize exception nouns ending by -ou', function () {\n      expect(inflector.pluralize('bijoux')).toBe('bijoux')\n      expect(inflector.pluralize('joujoux')).toBe('joujoux')\n      expect(inflector.pluralize('hiboux')).toBe('hiboux')\n    })\n\n    it('should pluralize regular nouns ending by -ou', function () {\n      expect(inflector.pluralize('trous')).toBe('trous')\n      expect(inflector.pluralize('bambous')).toBe('bambous')\n      expect(inflector.pluralize('toutous')).toBe('toutous')\n    })\n\n    it('should pluralize exception nouns ending by -au', function () {\n      expect(inflector.pluralize('berimbaus')).toBe('berimbaus')\n      expect(inflector.pluralize('landaus')).toBe('landaus')\n      expect(inflector.pluralize('pilaus')).toBe('pilaus')\n    })\n\n    it('should pluralize regular nouns ending by -au', function () {\n      expect(inflector.pluralize('cadeaux')).toBe('cadeaux')\n      expect(inflector.pluralize('beaux')).toBe('beaux')\n      expect(inflector.pluralize('étaux')).toBe('étaux')\n    })\n\n    it('should pluralize exception nouns ending by -eu', function () {\n      expect(inflector.pluralize('bleus')).toBe('bleus')\n      expect(inflector.pluralize('émeus')).toBe('émeus')\n      expect(inflector.pluralize('pneus')).toBe('pneus')\n    })\n\n    it('should pluralize regular nouns ending by -eu', function () {\n      expect(inflector.pluralize('pieux')).toBe('pieux')\n      expect(inflector.pluralize('lieux')).toBe('lieux')\n      expect(inflector.pluralize('feux')).toBe('feux')\n    })\n\n    it('should pluralize regular nouns ending by -eau', function () {\n      expect(inflector.pluralize('eaux')).toBe('eaux')\n      expect(inflector.pluralize('manteaux')).toBe('manteaux')\n      expect(inflector.pluralize('arbrisseaux')).toBe('arbrisseaux')\n    })\n\n    it('should pluralize regular nouns ending by -œu', function () {\n      expect(inflector.pluralize('vœux')).toBe('vœux')\n    })\n\n    /*\n    it('should pluralize regular nouns ending by -s, -x or -z', function () {\n      expect(inflector.pluralize('os')).toBe('os')\n      expect(inflector.pluralize('cas')).toBe('cas')\n      expect(inflector.pluralize('rhinocéros')).toBe('rhinocéros')\n\n      expect(inflector.pluralize('houx')).toBe('houx')\n      expect(inflector.pluralize('lynx')).toBe('lynx')\n      expect(inflector.pluralize('roux')).toBe('roux')\n\n      expect(inflector.pluralize('gaz')).toBe('gaz')\n      expect(inflector.pluralize('quartz')).toBe('quartz')\n      expect(inflector.pluralize('quiz')).toBe('quiz')\n    })\n    */\n\n    it('should pluralize exception nouns', function () {\n      expect(inflector.pluralize('aulx')).toBe('aulx')\n      expect(inflector.pluralize('bestiaux')).toBe('bestiaux')\n    })\n\n    it('should pluralize regular nouns', function () {\n      expect(inflector.pluralize('chais')).toBe('chais')\n      expect(inflector.pluralize('vérités')).toBe('vérités')\n      expect(inflector.pluralize('oranges')).toBe('oranges')\n    })\n  })\n\n  describe('.singularize() - part 2', function () {\n    it('should singularize regular nouns ending by -aux', function () {\n      expect(inflector.singularize('amiral')).toBe('amiral')\n      expect(inflector.singularize('cheval')).toBe('cheval')\n      expect(inflector.singularize('général')).toBe('général')\n      expect(inflector.singularize('bail')).toBe('bail')\n      expect(inflector.singularize('vitrail')).toBe('vitrail')\n      expect(inflector.singularize('émail')).toBe('émail')\n      expect(inflector.singularize('cadeau')).toBe('cadeau')\n      expect(inflector.singularize('beau')).toBe('beau')\n      expect(inflector.singularize('étau')).toBe('étau')\n    })\n\n    it('should singularize nouns with multiple plural forms', function () {\n      expect(inflector.singularize('ail')).toBe('ail')\n      expect(inflector.singularize('ciel')).toBe('ciel')\n      expect(inflector.singularize('œil')).toBe('œil')\n      expect(inflector.singularize('aïeul')).toBe('aïeul')\n      expect(inflector.singularize('bisaïeul')).toBe('bisaïeul')\n      expect(inflector.singularize('crau')).toBe('crau')\n      expect(inflector.singularize('grau')).toBe('grau')\n      expect(inflector.singularize('sénau')).toBe('sénau')\n      expect(inflector.singularize('tussau')).toBe('tussau')\n      expect(inflector.singularize('emposieu')).toBe('emposieu')\n      expect(inflector.singularize('richelieu')).toBe('richelieu')\n      expect(inflector.singularize('feu')).toBe('feu')\n      expect(inflector.singularize('lieu')).toBe('lieu') // Fish\n      expect(inflector.singularize('corail')).toBe('corail')\n    })\n\n    it('should singularize exception nouns ending by -oux', function () {\n      expect(inflector.singularize('bijou')).toBe('bijou')\n      expect(inflector.singularize('joujou')).toBe('joujou')\n      expect(inflector.singularize('hibou')).toBe('hibou')\n    })\n\n    it('should singularize exception nouns ending by -eus', function () {\n      expect(inflector.singularize('bleu')).toBe('bleu')\n      expect(inflector.singularize('émeu')).toBe('émeu')\n      expect(inflector.singularize('pneu')).toBe('pneu')\n    })\n\n    it('should singularize regular nouns ending by -eux', function () {\n      expect(inflector.singularize('pieu')).toBe('pieu')\n      expect(inflector.singularize('lieu')).toBe('lieu')\n      expect(inflector.singularize('feu')).toBe('feu')\n    })\n\n    it('should singularize regular nouns ending by -eaux', function () {\n      expect(inflector.singularize('eau')).toBe('eau')\n      expect(inflector.singularize('manteau')).toBe('manteau')\n      expect(inflector.singularize('arbrisseau')).toBe('arbrisseau')\n    })\n\n    it('should singularize regular nouns ending by -œux', function () {\n      expect(inflector.singularize('vœu')).toBe('vœu')\n    })\n\n    /*\n    it('should singularize regular nouns ending by -s, -x or -z', function () {\n      expect(inflector.singularize('cas')).toBe('cas')\n      expect(inflector.singularize('os')).toBe('os')\n      expect(inflector.singularize('rhinocéros')).toBe('rhinocéros')\n\n      expect(inflector.singularize('houx')).toBe('houx')\n      expect(inflector.singularize('lynx')).toBe('lynx')\n      expect(inflector.singularize('roux')).toBe('roux')\n\n      expect(inflector.singularize('gaz')).toBe('gaz')\n      expect(inflector.singularize('quartz')).toBe('quartz')\n      expect(inflector.singularize('quiz')).toBe('quiz')\n    })\n    */\n\n    it('should singularize exception nouns', function () {\n      expect(inflector.singularize('bétail')).toBe('bétail')\n    })\n\n    it('should singularize regular nouns', function () {\n      expect(inflector.singularize('chai')).toBe('chai')\n      expect(inflector.singularize('vérité')).toBe('vérité')\n      expect(inflector.singularize('orange')).toBe('orange')\n\n      // Exception nouns ending by -als\n      expect(inflector.singularize('carnaval')).toBe('carnaval')\n      expect(inflector.singularize('narval')).toBe('narval')\n      expect(inflector.singularize('récital')).toBe('récital')\n\n      // Regular nouns ending by -ails\n      expect(inflector.singularize('détail')).toBe('détail')\n      expect(inflector.singularize('poitrail')).toBe('poitrail')\n      expect(inflector.singularize('chandail')).toBe('chandail')\n\n      // Regular nouns ending by -ous\n      expect(inflector.singularize('trou')).toBe('trou')\n      expect(inflector.singularize('bambou')).toBe('bambou')\n      expect(inflector.singularize('toutou')).toBe('toutou')\n\n      // Exception nouns ending by -aus\n      expect(inflector.singularize('berimbau')).toBe('berimbau')\n      expect(inflector.singularize('landau')).toBe('landau')\n      expect(inflector.singularize('pilau')).toBe('pilau')\n    })\n  })\n})\n"
  },
  {
    "path": "spec/noun_inflector_ja_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n */\n\n'use strict'\n\nimport { NounInflectorJa } from 'lib/natural'\nconst inflector = new NounInflectorJa()\n\ndescribe('NounInflector (ja)', function () {\n  describe('.pluralize()', function () {\n    it('should pluralize nouns', function () {\n      expect(inflector.pluralize('ひと')).toBe('ひとたち')\n      expect(inflector.pluralize('わたし')).toBe('わたしたち')\n      expect(inflector.pluralize('私')).toBe('私たち')\n    })\n\n    it('should not pluralize exceptions', function () {\n      expect(inflector.pluralize('ともだち')).toBe('ともだち')\n      expect(inflector.pluralize('友だち')).toBe('友だち')\n      expect(inflector.pluralize('友達')).toBe('友達')\n    })\n\n    it('should pluralize archaic forms', function () {\n      expect(inflector.pluralize('神')).toBe('神神')\n      expect(inflector.pluralize('人')).toBe('人人')\n      expect(inflector.pluralize('我')).toBe('我我')\n    })\n  })\n\n  describe('.singularize()', function () {\n    it('should singularize regular nouns ending by -tachi in Hiragana', function () {\n      expect(inflector.singularize('わたしたち')).toBe('わたし')\n      expect(inflector.singularize('人たち')).toBe('人')\n      expect(inflector.singularize('りかたち')).toBe('りか')\n    })\n\n    it('should not singularize exception nouns ending by -tachi in Hiragana', function () {\n      expect(inflector.singularize('ついたち')).toBe('ついたち')\n      expect(inflector.singularize('かたち')).toBe('かたち')\n      expect(inflector.singularize('はたち')).toBe('はたち')\n    })\n\n    it('should singularize regular nouns ending by -tachi in Kanji', function () {\n      expect(inflector.singularize('わたし達')).toBe('わたし')\n      expect(inflector.singularize('人達')).toBe('人')\n      expect(inflector.singularize('日伊達')).toBe('日伊')\n    })\n\n    it('should not singularize exception nouns ending by -tachi in Kanji', function () {\n      expect(inflector.singularize('上達')).toBe('上達')\n      expect(inflector.singularize('配達')).toBe('配達')\n      expect(inflector.singularize('発達')).toBe('発達')\n    })\n\n    it('should singularize regular nouns ending by -ra in Kanji', function () {\n      expect(inflector.singularize('僕等')).toBe('僕')\n      expect(inflector.singularize('貴様等')).toBe('貴様')\n      expect(inflector.singularize('圭一等')).toBe('圭一')\n    })\n\n    it('should not singularize exception nouns ending by -ra in Kanji', function () {\n      expect(inflector.singularize('下等')).toBe('下等')\n      expect(inflector.singularize('初等')).toBe('初等')\n      expect(inflector.singularize('一等')).toBe('一等')\n    })\n\n    it('should singularize regular nouns ending by -gata', function () {\n      expect(inflector.singularize('神様方')).toBe('神様')\n      expect(inflector.singularize('先生方')).toBe('先生')\n      expect(inflector.singularize('あなたがた')).toBe('あなた')\n    })\n\n    it('should singularize regular nouns ending by -domo', function () {\n      expect(inflector.singularize('人間共')).toBe('人間')\n      expect(inflector.singularize('野郎共')).toBe('野郎')\n      expect(inflector.singularize('ガキども')).toBe('ガキ')\n    })\n\n    it('should pluralize archaic forms', function () {\n      expect(inflector.singularize('神神')).toBe('神')\n      expect(inflector.singularize('人人')).toBe('人')\n      expect(inflector.singularize('我我')).toBe('我')\n    })\n  })\n\n  /*\n  describe('.attach()', function() {\n    it('should attach new methods to String', function() {\n      inflector.attach();\n      expect('私'.pluralizeNoun()).toBe('私たち');\n      expect('私たち'.singularizeNoun()).toBe('私');\n      expect('人'.pluralizeNoun()).toBe('人人');\n      expect('人人'.singularizeNoun()).toBe('人');\n    });\n  });\n  */\n})\n"
  },
  {
    "path": "spec/noun_inflector_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { NounInflector } from 'lib/natural'\nconst inflector = new NounInflector()\n\ndescribe('noun inflector (en)', function () {\n  describe('singularization', function () {\n    it('should drop an S by default', function () {\n      expect(inflector.singularize('rrrs')).toBe('rrr')\n      expect(inflector.singularize('hackers')).toBe('hacker')\n      expect(inflector.singularize('movies')).toBe('movie')\n\n      // MAN cases that don't pluralize to MEN\n      expect(inflector.singularize('talismans')).toBe('talisman')\n      expect(inflector.singularize('humans')).toBe('human')\n      expect(inflector.singularize('prehumans')).toBe('prehuman')\n    })\n\n    it('should handle ambiguous form', function () {\n      expect(inflector.singularize('deer')).toBe('deer')\n      expect(inflector.singularize('fish')).toBe('fish')\n      expect(inflector.singularize('series')).toBe('series')\n      expect(inflector.singularize('sheep')).toBe('sheep')\n      expect(inflector.singularize('trout')).toBe('trout')\n    })\n\n    it('should convert plurals ending SES to S', function () {\n      expect(inflector.singularize('statuses')).toBe('status')\n      expect(inflector.singularize('buses')).toBe('bus')\n    })\n\n    it('should match irregulars', function () {\n      expect(inflector.singularize('people')).toBe('person')\n      expect(inflector.singularize('children')).toBe('child')\n      expect(inflector.singularize('oxen')).toBe('ox')\n      expect(inflector.singularize('clothes')).toBe('cloth')\n      expect(inflector.singularize('heroes')).toBe('hero')\n      expect(inflector.singularize('torsi')).toBe('torso')\n    })\n\n    it('should handle IX cases', function () {\n      expect(inflector.singularize('matrices')).toBe('matrix')\n      expect(inflector.singularize('indices')).toBe('index')\n      expect(inflector.singularize('cortices')).toBe('cortex')\n\n      // our pluralizer won''t cause this form of appendix (appendicies)\n      // but we should handle it\n      expect(inflector.singularize('appendices')).toBe('appendix')\n    })\n\n    it('should regulars to ES', function () {\n      expect(inflector.singularize('churches')).toBe('church')\n      expect(inflector.singularize('appendixes')).toBe('appendix')\n      expect(inflector.singularize('messes')).toBe('mess')\n      expect(inflector.singularize('quizes')).toBe('quiz')\n      expect(inflector.singularize('shoes')).toBe('shoe')\n      expect(inflector.singularize('funguses')).toBe('fungus')\n    })\n\n    it('should handle SIS cases', function () {\n      expect(inflector.singularize('synopses')).toBe('synopsis')\n      expect(inflector.singularize('parentheses')).toBe('parenthesis')\n    })\n\n    it('should handle special OES cases', function () {\n      expect(inflector.singularize('tomatoes')).toBe('tomato')\n    })\n\n    it('should handle I cases', function () {\n      expect(inflector.singularize('octopi')).toBe('octopus')\n      expect(inflector.singularize('stimuli')).toBe('stimulus')\n      expect(inflector.singularize('radii')).toBe('radius')\n      expect(inflector.singularize('nuclei')).toBe('nucleus')\n      expect(inflector.singularize('fungi')).toBe('fungus')\n      expect(inflector.singularize('cacti')).toBe('cactus')\n      expect(inflector.singularize('alumni')).toBe('alumnus')\n      expect(inflector.singularize('calculi')).toBe('calculus')\n      expect(inflector.singularize('hippopotami')).toBe('hippopotamus')\n      expect(inflector.singularize('macrofungi')).toBe('macrofungus')\n      expect(inflector.singularize('phoeti')).toBe('phoetus')\n      expect(inflector.singularize('syllabi')).toBe('syllabus')\n      expect(inflector.singularize('trophi')).toBe('trophus')\n    })\n\n    it('should handle IVES cases', function () {\n      expect(inflector.singularize('lives')).toBe('life')\n      expect(inflector.singularize('knives')).toBe('knife')\n    })\n\n    it('should handle Y cases', function () {\n      expect(inflector.singularize('parties')).toBe('party')\n      expect(inflector.singularize('flies')).toBe('fly')\n      expect(inflector.singularize('victories')).toBe('victory')\n      expect(inflector.singularize('monstrosities')).toBe('monstrosity')\n    })\n\n    it('should handle SS cases', function () {\n      expect(inflector.singularize('dresses')).toBe('dress')\n      expect(inflector.singularize('dress')).toBe('dress')\n      expect(inflector.singularize('messes')).toBe('mess')\n    })\n\n    it('should handle MAN->MAN cases', function () {\n      expect(inflector.singularize('men')).toBe('man')\n      expect(inflector.singularize('women')).toBe('woman')\n      expect(inflector.singularize('workmen')).toBe('workman')\n      expect(inflector.singularize('riflemen')).toBe('rifleman')\n    })\n\n    it('should handle irregular cases', function () {\n      expect(inflector.singularize('feet')).toBe('foot')\n      expect(inflector.singularize('geese')).toBe('goose')\n      expect(inflector.singularize('teeth')).toBe('tooth')\n      expect(inflector.singularize('ephemerides')).toBe('ephemeris')\n    })\n\n    it('should handle AE cases', function () {\n      expect(inflector.singularize('antennae')).toBe('antenna')\n      expect(inflector.singularize('formulae')).toBe('formula')\n      expect(inflector.singularize('nebulae')).toBe('nebula')\n      expect(inflector.singularize('vertebrae')).toBe('vertebra')\n      expect(inflector.singularize('vitae')).toBe('vita')\n    })\n\n    it('should allow AE cases to be S', function () {\n      expect(inflector.singularize('antennas')).toBe('antenna')\n      expect(inflector.singularize('formulas')).toBe('formula')\n    })\n  })\n\n  describe('pluralization', function () {\n    it('should append an S by default', function () {\n      expect(inflector.pluralize('rrr')).toBe('rrrs')\n      expect(inflector.pluralize('hacker')).toBe('hackers')\n      expect(inflector.pluralize('movie')).toBe('movies')\n    })\n\n    it('should handle ambiguous form', function () {\n      expect(inflector.pluralize('deer')).toBe('deer')\n      expect(inflector.pluralize('fish')).toBe('fish')\n      expect(inflector.pluralize('series')).toBe('series')\n      expect(inflector.pluralize('sheep')).toBe('sheep')\n      expect(inflector.pluralize('trout')).toBe('trout')\n    })\n\n    it('should convert singulars ending s to ses', function () {\n      expect(inflector.pluralize('status')).toBe('statuses')\n      expect(inflector.pluralize('bus')).toBe('buses')\n    })\n\n    it('should match irregulars', function () {\n      expect(inflector.pluralize('person')).toBe('people')\n      expect(inflector.pluralize('child')).toBe('children')\n      expect(inflector.pluralize('ox')).toBe('oxen')\n    })\n\n    it('should maintain case of irregulars', function () {\n      expect(inflector.pluralize('OX')).toBe('OXEN')\n      expect(inflector.pluralize('Person')).toBe('People')\n      expect(inflector.pluralize('child')).toBe('children')\n      expect(inflector.pluralize('cloth')).toBe('clothes')\n    })\n\n    it('should handle IX cases', function () {\n      expect(inflector.pluralize('matrix')).toBe('matrices')\n      expect(inflector.pluralize('index')).toBe('indices')\n      expect(inflector.pluralize('cortex')).toBe('cortices')\n    })\n\n    it('should regulars to ES', function () {\n      expect(inflector.pluralize('church')).toBe('churches')\n      expect(inflector.pluralize('appendix')).toBe('appendixes')\n      expect(inflector.pluralize('mess')).toBe('messes')\n      expect(inflector.pluralize('quiz')).toBe('quizes')\n      expect(inflector.pluralize('shoe')).toBe('shoes')\n    })\n\n    it('should handle SIS cases', function () {\n      expect(inflector.pluralize('synopsis')).toBe('synopses')\n      expect(inflector.pluralize('parenthesis')).toBe('parentheses')\n    })\n\n    it('should handle special OES cases', function () {\n      expect(inflector.pluralize('tomato')).toBe('tomatoes')\n      expect(inflector.pluralize('buffalo')).toBe('buffaloes')\n      expect(inflector.pluralize('tornado')).toBe('tornadoes')\n    })\n\n    it('should handle I cases', function () {\n      expect(inflector.pluralize('radius')).toBe('radii')\n      expect(inflector.pluralize('octopus')).toBe('octopi')\n      expect(inflector.pluralize('stimulus')).toBe('stimuli')\n      expect(inflector.pluralize('nucleus')).toBe('nuclei')\n      expect(inflector.pluralize('fungus')).toBe('fungi')\n      expect(inflector.pluralize('cactus')).toBe('cacti')\n    })\n\n    it('should handle IVES cases', function () {\n      expect(inflector.pluralize('knife')).toBe('knives')\n      expect(inflector.pluralize('life')).toBe('lives')\n    })\n\n    it('should handle Y cases', function () {\n      expect(inflector.pluralize('party')).toBe('parties')\n      expect(inflector.pluralize('fly')).toBe('flies')\n      expect(inflector.pluralize('victory')).toBe('victories')\n      expect(inflector.pluralize('monstrosity')).toBe('monstrosities')\n    })\n\n    it('should handle [aeiou]Y cases', function () {\n      expect(inflector.pluralize('day')).toBe('days')\n      expect(inflector.pluralize('toy')).toBe('toys')\n      expect(inflector.pluralize('journey')).toBe('journeys')\n    })\n\n    it('should handle SS cases', function () {\n      expect(inflector.pluralize('dress')).toBe('dresses')\n      expect(inflector.pluralize('dresses')).toBe('dresses')\n      expect(inflector.pluralize('mess')).toBe('messes')\n    })\n\n    it('should handle MAN->MEN cases', function () {\n      expect(inflector.pluralize('man')).toBe('men')\n      expect(inflector.pluralize('woman')).toBe('women')\n      expect(inflector.pluralize('workman')).toBe('workmen')\n      expect(inflector.pluralize('rifleman')).toBe('riflemen')\n    })\n\n    it('should handle irregular cases', function () {\n      expect(inflector.pluralize('foot')).toBe('feet')\n      expect(inflector.pluralize('goose')).toBe('geese')\n      expect(inflector.pluralize('tooth')).toBe('teeth')\n      expect(inflector.pluralize('ephemeris')).toBe('ephemerides')\n\n      // MAN cases that don't pluralize to MEN\n      expect(inflector.pluralize('talisman')).toBe('talismans')\n      expect(inflector.pluralize('human')).toBe('humans')\n      expect(inflector.pluralize('prehuman')).toBe('prehumans')\n    })\n\n    it('should handle AE cases', function () {\n      expect(inflector.pluralize('antenna')).toBe('antennae')\n      expect(inflector.pluralize('formula')).toBe('formulae')\n      expect(inflector.pluralize('nebula')).toBe('nebulae')\n      expect(inflector.pluralize('vertebra')).toBe('vertebrae')\n      expect(inflector.pluralize('vita')).toBe('vitae')\n    })\n  })\n\n  it('should pluralize and singularize string from patch', function () {\n    expect(inflector.pluralize('synopsis')).toBe('synopses')\n    expect(inflector.singularize('synopses')).toBe('synopsis')\n    expect(inflector.pluralize('mess')).toBe('messes')\n    expect(inflector.singularize('messes')).toBe('mess')\n  })\n\n  describe('custom inflections', function () {\n    it('should pluralize and singularize custom forms', function () {\n      const myInflector = new NounInflector()\n      myInflector.addPlural(/(code|ware)/i, '$1z')\n      myInflector.addSingular(/(code|ware)z/i, '$1')\n      expect(myInflector.pluralize('code')).toBe('codez')\n      expect(myInflector.pluralize('ware')).toBe('warez')\n      expect(myInflector.singularize('codez')).toBe('code')\n      expect(myInflector.singularize('warez')).toBe('ware')\n    })\n\n    it('should not break regular forms', function () {\n      const myInflector = new NounInflector()\n      myInflector.addPlural(/(code|ware)/i, '$1z')\n      myInflector.addSingular(/(code|ware)z/i, '$1')\n      expect(myInflector.pluralize('bus')).toBe('buses')\n      expect(myInflector.singularize('buses')).toBe('bus')\n    })\n  })\n\n  describe('should handle words ending in f, ff, ffe', function () {\n    it('should handle words ending in ff and ffe', function () {\n      const myInflector = new NounInflector()\n      expect(myInflector.pluralize('sherriff')).toBe('sherriffs')\n      expect(myInflector.pluralize('giraffe')).toBe('giraffes')\n      expect(myInflector.singularize('sherriffs')).toBe('sherriff')\n      expect(myInflector.singularize('giraffes')).toBe('giraffe')\n    })\n\n    it('should handle words ending in f', function () {\n      const myInflector = new NounInflector()\n      expect(myInflector.pluralize('roof')).toBe('roofs')\n      expect(myInflector.pluralize('chief')).toBe('chiefs')\n      expect(myInflector.pluralize('oaf')).toBe('oafs')\n      expect(myInflector.singularize('roofs')).toBe('roof')\n      expect(myInflector.singularize('chiefs')).toBe('chief')\n      expect(myInflector.singularize('oafs')).toBe('oaf')\n    })\n\n    it('should handle words ending in f or fe', function () {\n      const myInflector = new NounInflector()\n      expect(myInflector.pluralize('leaf')).toBe('leaves')\n      expect(myInflector.pluralize('wolf')).toBe('wolves')\n      expect(myInflector.pluralize('calf')).toBe('calves')\n      expect(myInflector.pluralize('half')).toBe('halves')\n      expect(myInflector.pluralize('knife')).toBe('knives')\n      expect(myInflector.pluralize('loaf')).toBe('loaves')\n      expect(myInflector.pluralize('life')).toBe('lives')\n      expect(myInflector.pluralize('wife')).toBe('wives')\n      expect(myInflector.pluralize('shelf')).toBe('shelves')\n      expect(myInflector.pluralize('thief')).toBe('thieves')\n      expect(myInflector.pluralize('yourself')).toBe('yourselves')\n\n      expect(myInflector.singularize('leaves')).toBe('leaf')\n      expect(myInflector.singularize('wolves')).toBe('wolf')\n      expect(myInflector.singularize('calves')).toBe('calf')\n      expect(myInflector.singularize('halves')).toBe('half')\n      expect(myInflector.singularize('knives')).toBe('knife')\n      expect(myInflector.singularize('loaves')).toBe('loaf')\n      expect(myInflector.singularize('lives')).toBe('life')\n      expect(myInflector.singularize('wives')).toBe('wife')\n      expect(myInflector.singularize('shelves')).toBe('shelf')\n      expect(myInflector.singularize('thieves')).toBe('thief')\n      expect(myInflector.singularize('yourselves')).toBe('yourself')\n    })\n\n    it('should handle words ending in rf', function () {\n      const myInflector = new NounInflector()\n      expect(myInflector.pluralize('scarf')).toBe('scarfs')\n      expect(myInflector.pluralize('dwarf')).toBe('dwarfs')\n      expect(myInflector.pluralize('handkerchief')).toBe('handkerchiefs')\n      expect(myInflector.pluralize('wharf')).toBe('wharfs')\n      expect(myInflector.singularize('scarfs')).toBe('scarf')\n      expect(myInflector.singularize('dwarfs')).toBe('dwarf')\n      expect(myInflector.singularize('wharfs')).toBe('wharf')\n      expect(myInflector.singularize('handkerchiefs')).toBe('handkerchief')\n      expect(myInflector.singularize('scarves')).toBe('scarf')\n      expect(myInflector.singularize('dwarves')).toBe('dwarf')\n      expect(myInflector.singularize('wharves')).toBe('wharf')\n      expect(myInflector.singularize('handkerchieves')).toBe('handkerchief')\n      expect(myInflector.singularize('expenses')).toBe('expense')\n      expect(myInflector.singularize('defenses')).toBe('defense')\n      expect(myInflector.pluralize('expense')).toBe('expenses')\n      expect(myInflector.pluralize('defense')).toBe('defenses')\n    })\n  })\n})\n"
  },
  {
    "path": "spec/orthography_tokenizer_spec.ts",
    "content": "/*\nCopyright (c) 2018, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { OrthographyTokenizer } from 'lib/natural'\n\nconst sentencesInFinnish = [\n  'Mikä sinun nimesi on?',\n  'Hyvää kiitos, entä sinulle?',\n  'Tämä herrasmies maksaa kaiken'\n]\n\nconst results = [\n  ['Mikä', 'sinun', 'nimesi', 'on'],\n  ['Hyvää', 'kiitos', 'entä', 'sinulle'],\n  ['Tämä', 'herrasmies', 'maksaa', 'kaiken']\n]\n\ndescribe('The orthography tokenizer tokenizes sentences in Finnish', function () {\n  const tokenizer = new OrthographyTokenizer({ language: 'fi' })\n  sentencesInFinnish.forEach(function (sentence, index) {\n    it('It should correctly tokenize the following sentence: ' + sentence, function () {\n      // console.log(tokenizer.tokenize(sentencePlusResult[0]));\n      expect(tokenizer.tokenize(sentence)).toEqual(results[index])\n    })\n  })\n})\n"
  },
  {
    "path": "spec/porter_stemmer_de_spec.ts",
    "content": "/*\nCopyright (c) 2023, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerDe as stemmer } from 'lib/natural'\nimport rawJson from '../spec/test_data/snowball_de.json'\nconst snowBallDict = rawJson as Record<string, string>\nconst DEBUG = false\n\ndescribe('porter_stemmer (de)', function () {\n  it('should perform stemming on a lot of words', function () {\n    const ok = []\n    const ko = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n      DEBUG && console.log(word + ' -> ' + stemmed)\n\n      if (stemmed === expectedStem) {\n        ok.push(word)\n      } else {\n        ko.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    expect(ko.length).toBe(0)\n  })\n\n  it('should preserve umlauts when the option is set', function () {\n    const word = 'fröhlich'\n    const stemmed = stemmer.stem(word, { preserveUmlauts: true })\n    expect(stemmed).toBe('fröhlich')\n  })\n})\n"
  },
  {
    "path": "spec/porter_stemmer_es_spec.ts",
    "content": "/*\nCopyright (c) 2019, Luís Rodrigues (adapted for Spanish stemmer), Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerEs as PorterStemmer } from 'lib/natural'\nimport rawJson from '../spec/test_data/snowball_es.json'\nconst snowBallDict = rawJson as Record<string, string>\nconst DEBUG = false\n\ndescribe('porter_stemmer (es)', function () {\n  it('should perform stemming on a lot of words', function () {\n    const errors = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = PorterStemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n      if (stemmed !== snowBallDict[word]) {\n        DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed)\n        errors.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    expect(errors.length).toBe(0)\n  })\n\n  it('should tokenize a piece of text', function () {\n    expect(PorterStemmer.tokenizeAndStem('Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis.', true)).toEqual(\n      ['pues', 'en', 'efect', 'es', 'sol', 'el', 'plan', 'y', 'lo', 'que', 'muestr', 'aquell', 'que', 'interes', 'a', 'zemeckis'])\n  })\n\n/*\n    it('should work with the attached notation', function() {\n      PorterStemmer.attach();\n      expect(\"efecto\".stem()).toEqual(\"efect\");\n      expect(\"Pues, en efecto, es solo el plano y lo que muestra aquello que interesa a Zemeckis.\".tokenizeAndStem(true)).toEqual(\n        [ 'pues', 'en', 'efect', 'es', 'sol', 'el', 'plan', 'y', 'lo', 'que', 'muestr', 'aquell', 'que', 'interes', 'a', 'zemeckis' ]);\n    });\n*/\n})\n"
  },
  {
    "path": "spec/porter_stemmer_fr_spec.ts",
    "content": "/*\nCopyright (c) 2019, Ismaël Héry, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerFr as stemmer } from 'lib/natural'\nimport rawJson from '../spec/test_data/snowball_fr.json'\nconst snowBallDict = rawJson as Record<string, string>\n\ndescribe('porter_stemmer (fr)', function () {\n  it('should prelude', function () {\n    expect(stemmer.prelude('JOUER')).toBe('joUer')\n    expect(stemmer.prelude('ennuie')).toBe('ennuIe')\n    expect(stemmer.prelude('yeux')).toBe('Yeux')\n    expect(stemmer.prelude('quand')).toBe('qUand')\n  })\n\n  it('should compute regions', function () {\n    expect(stemmer.regions('fameusement').r1).toBe(3)\n    expect(stemmer.regions('fameusement').r2).toBe(6)\n\n    expect(stemmer.regions('taii').r1).toBe(4)\n    expect(stemmer.regions('taii').r2).toBe(4)\n\n    expect(stemmer.regions('parade').rv).toBe(3)\n    expect(stemmer.regions('colet').rv).toBe(3)\n    expect(stemmer.regions('tapis').rv).toBe(3)\n    expect(stemmer.regions('aimer').rv).toBe(3)\n    expect(stemmer.regions('adorer').rv).toBe(3)\n    expect(stemmer.regions('voler').rv).toBe(2)\n    expect(stemmer.regions('tue').rv).toBe(2)\n  })\n\n  it('should compute longest suffix ends in Arr', function () {\n    expect(stemmer.endsinArr('voudriez', ['ez', 'iez', 'z'])).toBe('iez')\n  })\n\n  it('should stem some word', function () {\n    expect(stemmer.stem('volera')).toBe('vol')\n    expect(stemmer.stem('volerait')).toBe('vol')\n    expect(stemmer.stem('subitement')).toBe('subit')\n    expect(stemmer.stem('tempérament')).toBe('temper')\n    expect(stemmer.stem('voudriez')).toBe('voudr')\n    expect(stemmer.stem('vengeait')).toBe('veng')\n    expect(stemmer.stem('saisissement')).toBe('sais')\n    expect(stemmer.stem('transatlantique')).toBe('transatlant')\n    expect(stemmer.stem('premièrement')).toBe('premi')\n    expect(stemmer.stem('instruments')).toBe('instrument')\n    expect(stemmer.stem('trouverions')).toBe('trouv')\n    expect(stemmer.stem('voyiez')).toBe('voi')\n    expect(stemmer.stem('publicité')).toBe('publiqu')\n    expect(stemmer.stem('pitoyable')).toBe('pitoi')\n  })\n\n  it('should perform stemming on a lot of words', function () {\n    const ok = []\n    const ko = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n\n      const regs = stemmer.regions(word)\n      const txtRegions = {\n        r1: word.substring(regs.r1),\n        r2: word.substring(regs.r2),\n        rv: word.substring(regs.rv)\n      }\n\n      if (stemmed === expectedStem) {\n        ok.push(word)\n      } else {\n        ko.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed,\n          regions: txtRegions\n        })\n      }\n    })\n\n    expect(ko.length).toBe(0)\n  })\n})\n"
  },
  {
    "path": "spec/porter_stemmer_it_spec.ts",
    "content": "/*\nCopyright (c) 2019, Leonardo Fenu, Chris Umbel, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerIt as stemmer } from 'lib/natural'\nimport rawJson from '../spec/test_data/snowball_it.json'\nconst snowBallDict = rawJson as Record<string, string>\n\ndescribe('porter_stemmer (it)', function () {\n  it('should perform stem', function () {\n    const errors = []\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n      if (stemmed !== snowBallDict[word]) {\n        console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed)\n        errors.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    expect(errors.length).toEqual(0)\n  })\n\n  /*\n  it('should tokenize and stem attached', function() {\n    stemmer.attach();\n\n    expect('SOPRA la panca la capra CAMPA'.tokenizeAndStem()).toEqual([ 'sopr', 'panc', 'capr', 'camp' ]);\n    expect('SOTTO la panca la capra CREPA'.tokenizeAndStem()).toEqual([ 'sott', 'panc', 'capr', 'crep' ]);\n  });\n  */\n})\n"
  },
  {
    "path": "spec/porter_stemmer_nl_spec.ts",
    "content": "/*\nCopyright (c) 2019, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerNl as stemmer } from 'lib/natural'\nimport rawObj from '../spec/test_data/snowball_nl.json'\nconst snowBallDict = rawObj as Record<string, string>\n// const dutchSentences = require('spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json')\n// const dutchStemResults = require('spec/test_data/dutchStemResults.json')\n\nconst DEBUG = false\n\ndescribe('porter_stemmer (nl)', function () {\n  it('should perform stemming on a lot of words', function () {\n    const errors = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n      if (stemmed !== snowBallDict[word]) {\n        DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed)\n        errors.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    // The stemmer has an error count of 237 against the snowball list for nl that has 45669 entries\n    expect(errors.length).toEqual(237)\n  })\n\n  // Commented out because hyphens are not processed correctly in the expected results\n  /*\n  it('should tokenize a piece of text', function () {\n    dutchSentences.sentences.forEach((sentence, index) => {\n      const result = stemmer.tokenizeAndStem(sentence, true)\n      DEBUG && console.log(result)\n      expect(result).toEqual(dutchStemResults.results[index])\n    })\n  })\n  */\n\n  /*\n  it('should work with the attached notation', function() {\n    stemmer.attach();\n    expect(\"mogelijkheid\".stem()).toEqual(\"mogelijk\");\n    expect(\"Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie\".tokenizeAndStem(true)).toEqual(\n      [ 'knot', 'geldper', 'aanzet', 'is', 'paardenmiddel', 'vor', 'half', 'procent', 'inflatie' ]);\n  });\n  */\n})\n"
  },
  {
    "path": "spec/porter_stemmer_no_spec.ts",
    "content": "/*\nCopyright (c) 2019, Kristoffer Brabrand, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerNo as stemmer } from 'lib/natural'\nimport rawObj from '../spec/test_data/snowball_no.json'\nconst snowBallDict = rawObj as Record<string, string>\n\ndescribe('porter_stemmer (no)', function () {\n  it('should perform step 1a', function () {\n    expect(stemmer.step1a('forenkla')).toBe('forenkl')\n    expect(stemmer.step1a('aase')).toBe('aas')\n    expect(stemmer.step1a('allerede')).toBe('aller')\n    expect(stemmer.step1a('aukande')).toBe('auk')\n    expect(stemmer.step1a('avbøtende')).toBe('avbøt')\n    expect(stemmer.step1a('avdelingane')).toBe('avdeling')\n    expect(stemmer.step1a('avgiftene')).toBe('avgift')\n    expect(stemmer.step1a('havnevirksomhetene')).toBe('havnevirksom')\n    expect(stemmer.step1a('heimelen')).toBe('heimel')\n    expect(stemmer.step1a('hovedvirksomheten')).toBe('hovedvirksom')\n    expect(stemmer.step1a('hovudreglar')).toBe('hovudregl')\n    expect(stemmer.step1a('hugger')).toBe('hugg')\n    expect(stemmer.step1a('importvirksomheter')).toBe('importvirksom')\n    expect(stemmer.step1a('ivaretas')).toBe('ivaret')\n    expect(stemmer.step1a('iverksettes')).toBe('iverksett')\n    expect(stemmer.step1a('konsekvensutredes')).toBe('konsekvensutr')\n    expect(stemmer.step1a('oversendes')).toBe('overs')\n    expect(stemmer.step1a('pensjonenes')).toBe('pensjon')\n    expect(stemmer.step1a('myndighetenes')).toBe('myndig')\n    expect(stemmer.step1a('møteleiarens')).toBe('møteleiar')\n    expect(stemmer.step1a('virksomhetens')).toBe('virksom')\n    expect(stemmer.step1a('aktørers')).toBe('aktør')\n    expect(stemmer.step1a('arbeidslivets')).toBe('arbeidsliv')\n    expect(stemmer.step1a('arbeidskapasitet')).toBe('arbeidskapasit')\n    expect(stemmer.step1a('arealknapphet')).toBe('arealknapp')\n    expect(stemmer.step1a('attgjevast')).toBe('attgjev')\n  })\n\n  it('should perform step 1b', function () {\n    expect(stemmer.step1b('hinder')).toBe('hinder')\n    expect(stemmer.step1b('erwerbs')).toBe('erwerb')\n    expect(stemmer.step1b('alltids')).toBe('alltid')\n  })\n\n  it('should perform step 1c', function () {\n    expect(stemmer.step1c('akkumulerte')).toBe('akkumuler')\n    expect(stemmer.step1c('akseptert')).toBe('aksepter')\n  })\n\n  it('should perform step 1 (a-c)', function () {\n    expect(stemmer.step1('andelar')).toBe('andel')\n    expect(stemmer.step1('andeleigar')).toBe('andeleig')\n    expect(stemmer.step1('andeleigarane')).toBe('andeleigar')\n    expect(stemmer.step1('andeleigarbok')).toBe('andeleigarbok')\n    expect(stemmer.step1('andelen')).toBe('andel')\n    expect(stemmer.step1('andelene')).toBe('andel')\n    expect(stemmer.step1('andeler')).toBe('andel')\n    expect(stemmer.step1('andelsbevis')).toBe('andelsbevis')\n    expect(stemmer.step1('andelsbok')).toBe('andelsbok')\n    expect(stemmer.step1('andelsboka')).toBe('andelsbok')\n    expect(stemmer.step1('andelsboligforening')).toBe('andelsboligforening')\n    expect(stemmer.step1('andelsboligforeninger')).toBe('andelsboligforening')\n    expect(stemmer.step1('andelsboligorganisation')).toBe('andelsboligorganisation')\n    expect(stemmer.step1('andelsboligorganisationer')).toBe('andelsboligorganisation')\n    expect(stemmer.step1('andelsbrev')).toBe('andelsbrev')\n  })\n\n  it('should perform step 2', function () {\n    expect(stemmer.step2('hvorvidt')).toBe('hvorvid')\n    expect(stemmer.step2('innovativt')).toBe('innovativ')\n  })\n\n  it('should perform step 3', function () {\n    expect(stemmer.step3('lovleg')).toBe('lov')\n    expect(stemmer.step3('konkurranseskadeleg')).toBe('konkurranseskad')\n    expect(stemmer.step3('lystig')).toBe('lyst')\n    expect(stemmer.step3('utrolig')).toBe('utro')\n    expect(stemmer.step3('utrøstelig')).toBe('utrøst')\n    expect(stemmer.step3('boliglov')).toBe('bolig')\n    expect(stemmer.step3('samvirkelov')).toBe('samvirk')\n    expect(stemmer.step3('arveavgiftslov')).toBe('arveavgift')\n  })\n\n  it('should perform stemming on a lot of words', function () {\n    const ok = []\n    const ko = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n\n      if (stemmed === expectedStem) {\n        ok.push(word)\n      } else {\n        ko.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    expect(ko.length).toBe(0)\n  })\n\n  it('should perform complete stemming', function () {\n    /*\n    expect(stemmer.step1a('forenkla')).toBe('forenkl')\n    expect(stemmer.step1a('aase')).toBe('aas')\n    expect(stemmer.step1a('allerede')).toBe('aller')\n    expect(stemmer.step1a('aukande')).toBe('auk')\n    */\n    expect(stemmer.step1a('avbøtende')).toBe('avbøt')\n    expect(stemmer.step1b('hinder')).toBe('hinder')\n    expect(stemmer.step1b('erwerbs')).toBe('erwerb')\n    expect(stemmer.step3('boliglov')).toBe('bolig')\n    expect(stemmer.step3('samvirkelov')).toBe('samvirk')\n    expect(stemmer.step3('arveavgiftslov')).toBe('arveavgift')\n  })\n\n  /*\n    it('should tokenize and stem attached', function() {\n        stemmer.attach();\n        expect('forebygger vedlikeholdsbehovene'.tokenizeAndStem()).toEqual(['forebygg', 'vedlikeholdsbehov']);\n        expect('FOREBYGGER VEDLIKEHOLDSBEHOVENE'.tokenizeAndStem()).toEqual(['forebygg', 'vedlikeholdsbehov']);\n    });\n    */\n})\n"
  },
  {
    "path": "spec/porter_stemmer_pt_spec.ts",
    "content": "/*\nCopyright (c) 2019, Luís Rodrigues, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerPt as stemmer } from 'lib/natural'\nimport rawObj from '../spec/test_data/snowball_pt.json'\nconst snowBallDict = rawObj as Record<string, string>\n\nconst DEBUG = false\n\ndescribe('porter_stemmer (pt)', function () {\n  it('should perform stemming on a lot of words', function () {\n    const errors = []\n\n    Object.keys(snowBallDict).forEach(word => {\n      const stemmed = stemmer.stem(word)\n      const expectedStem = snowBallDict[word]\n      if (stemmed !== snowBallDict[word]) {\n        DEBUG && console.log('Error:', word, 'Expected:', expectedStem, 'Got:', stemmed)\n        errors.push({\n          word,\n          expected: expectedStem,\n          actual: stemmed\n        })\n      }\n    })\n\n    expect(errors.length).toEqual(0)\n  })\n})\n"
  },
  {
    "path": "spec/porter_stemmer_ru_spec.ts",
    "content": "/*\nCopyright (c) 2011, Polyakov Vladimir, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerRu as stemmer } from 'lib/natural'\n\nconst test = [\n  'в', 'вавиловка', 'вагнера', 'вагон', 'вагона', 'вагоне', 'вагонов', 'вагоном', 'вагоны',\n  'важная', 'важнее', 'важнейшие', 'важнейшими', 'важничал', 'важно', 'важного', 'важное',\n  'важной', 'важном', 'важному', 'важности', 'важностию', 'важность', 'важностью', 'важную',\n  'важны', 'важные', 'важный', 'важным', 'важных', 'вазах', 'вазы', 'вакса', 'вакханка', 'вал',\n  'валандался', 'валентина', 'валериановых', 'валерию', 'валетами', 'вали', 'валил', 'валился',\n  'валится', 'валов', 'вальдшнепа', 'вальс', 'вальса', 'вальсе', 'вальсишку', 'вальтера', 'валяется',\n  'валялась', 'валялись', 'валялось', 'валялся', 'валять', 'валяются', 'вам', 'вами', 'п', 'па', 'пава',\n  'павел', 'павильон', 'павильонам', 'павла', 'павлиний', 'павлиньи', 'павлиньим', 'павлович', 'павловна',\n  'павловне', 'павловной', 'павловну', 'павловны', 'павловцы', 'павлыч', 'павлыча', 'пагубная', 'падает',\n  'падай', 'падал', 'падала', 'падаль', 'падать', 'падаю', 'падают', 'падающего', 'падающие', 'падеж', 'падение',\n  'падением', 'падении', 'падений', 'падения', 'паденье', 'паденья', 'падет', 'падут', 'падучая', 'падчерицей',\n  'падчерицы', 'падшая', 'падшей', 'падшему', 'падший', 'падшим', 'падших', 'падшую', 'паек', 'пазухи', 'пазуху',\n  'пай', 'пакет', 'пакетом', 'пакеты', 'пакостей', 'пакостно', 'пал']\n\nconst testResult = [\n  'в', 'вавиловк', 'вагнер', 'вагон', 'вагон', 'вагон', 'вагон', 'вагон', 'вагон', 'важн', 'важн', 'важн',\n  'важн', 'важнича', 'важн', 'важн', 'важн', 'важн', 'важн', 'важн', 'важност', 'важност', 'важност',\n  'важност', 'важн', 'важн', 'важн', 'важн', 'важн', 'важн', 'ваз', 'ваз', 'вакс', 'вакханк', 'вал',\n  'валанда', 'валентин', 'валерианов', 'валер', 'валет', 'вал', 'вал', 'вал', 'вал', 'вал', 'вальдшнеп',\n  'вальс', 'вальс', 'вальс', 'вальсишк', 'вальтер', 'валя', 'валя', 'валя', 'валя', 'валя', 'валя', 'валя',\n  'вам', 'вам', 'п', 'па', 'пав', 'павел', 'павильон', 'павильон', 'павл', 'павлин', 'павлин', 'павлин',\n  'павлович', 'павловн', 'павловн', 'павловн', 'павловн', 'павловн', 'павловц', 'павлыч', 'павлыч', 'пагубн',\n  'пада', 'пада', 'пада', 'пада', 'падал', 'пада', 'пада', 'пада', 'пада', 'пада', 'падеж', 'паден', 'паден',\n  'паден', 'паден', 'паден', 'паден', 'паден', 'падет', 'падут', 'падуч', 'падчериц', 'падчериц', 'падш', 'падш',\n  'падш', 'падш', 'падш', 'падш', 'падш', 'паек', 'пазух', 'пазух', 'па', 'пакет', 'пакет', 'пакет', 'пакост',\n  'пакостн', 'пал']\n\ndescribe('porter_stemmer (ru)', function () {\n  it('should permof stem', function () {\n    for (let i = 0; i < test.length; i++) {\n      expect(stemmer.stem(test[i])).toBe(testResult[i])\n    }\n  })/*,\n  it('should tokenize and stem attached', function() {\n    stemmer.attach();\n    expect('мама мыла раму'.tokenizeAndStem()).toEqual(['мам', 'мыл', 'рам']);\n    expect('МАМА МЫЛА РАМУ'.tokenizeAndStem()).toEqual(['мам', 'мыл', 'рам']);\n  });\n*/\n})\n"
  },
  {
    "path": "spec/porter_stemmer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  PorterStemmer as stemmer,\n  stopwords\n} from 'lib/natural'\n\ndescribe('porter_stemmer (en)', function () {\n  it('should categorizeGroups', function () {\n    expect(stemmer.categorizeGroups('syllog')).toBe('CVCVC')\n    expect(stemmer.categorizeGroups('gypsy')).toBe('CVCV')\n  })\n\n  it('should measure', function () {\n    expect(stemmer.measure('syllog')).toBe(2)\n  })\n\n  it('should perform step 1a', function () {\n    expect(stemmer.step1a('caresses')).toBe('caress')\n    expect(stemmer.step1a('ponies')).toBe('poni')\n    expect(stemmer.step1a('ties')).toBe('ti')\n    expect(stemmer.step1a('caress')).toBe('caress')\n    expect(stemmer.step1a('cats')).toBe('cat')\n  })\n\n  it('should perform step 1b', function () {\n    expect(stemmer.step1b('feed')).toBe('feed')\n    expect(stemmer.step1b('agreed')).toBe('agree')\n    expect(stemmer.step1b('plastered')).toBe('plaster')\n    expect(stemmer.step1b('bled')).toBe('bled')\n    expect(stemmer.step1b('motoring')).toBe('motor')\n    expect(stemmer.step1b('sing')).toBe('sing')\n  })\n\n  it('should perform step 1c', function () {\n    expect(stemmer.step1c('happy')).toBe('happi')\n    expect(stemmer.step1c('sky')).toBe('sky')\n  })\n\n  it('should perform step 2', function () {\n    expect(stemmer.step2('relational')).toBe('relate')\n    expect(stemmer.step2('conditional')).toBe('condition')\n    expect(stemmer.step2('rational')).toBe('rational')\n    expect(stemmer.step2('valenci')).toBe('valence')\n    expect(stemmer.step2('hesitanci')).toBe('hesitance')\n    expect(stemmer.step2('digitizer')).toBe('digitize')\n    expect(stemmer.step2('conformabli')).toBe('conformable')\n    expect(stemmer.step2('radicalli')).toBe('radical')\n    expect(stemmer.step2('differentli')).toBe('different')\n    expect(stemmer.step2('vileli')).toBe('vile')\n    expect(stemmer.step2('analogousli')).toBe('analogous')\n    expect(stemmer.step2('vietnamization')).toBe('vietnamize')\n    expect(stemmer.step2('predication')).toBe('predicate')\n    expect(stemmer.step2('operator')).toBe('operate')\n    expect(stemmer.step2('feudalism')).toBe('feudal')\n    expect(stemmer.step2('decisiveness')).toBe('decisive')\n    expect(stemmer.step2('hopefulness')).toBe('hopeful')\n    expect(stemmer.step2('callousness')).toBe('callous')\n    expect(stemmer.step2('formaliti')).toBe('formal')\n    expect(stemmer.step2('sensitiviti')).toBe('sensitive')\n    expect(stemmer.step2('sensibiliti')).toBe('sensible')\n  })\n\n  it('should perform step 3', function () {\n    expect(stemmer.step3('triplicate')).toBe('triplic')\n    expect(stemmer.step3('formative')).toBe('form')\n    expect(stemmer.step3('formalize')).toBe('formal')\n    expect(stemmer.step3('electriciti')).toBe('electric')\n    expect(stemmer.step3('electrical')).toBe('electric')\n    expect(stemmer.step3('hopeful')).toBe('hope')\n    expect(stemmer.step3('goodness')).toBe('good')\n  })\n\n  it('should perform step 4', function () {\n    expect(stemmer.step4('revival')).toBe('reviv')\n    expect(stemmer.step4('allowance')).toBe('allow')\n    expect(stemmer.step4('inference')).toBe('infer')\n    expect(stemmer.step4('airliner')).toBe('airlin')\n    expect(stemmer.step4('gyroscopic')).toBe('gyroscop')\n    expect(stemmer.step4('adjustable')).toBe('adjust')\n    expect(stemmer.step4('defensible')).toBe('defens')\n    expect(stemmer.step4('irritant')).toBe('irrit')\n    expect(stemmer.step4('replacement')).toBe('replac')\n    expect(stemmer.step4('adjustment')).toBe('adjust')\n    expect(stemmer.step4('dependent')).toBe('depend')\n    expect(stemmer.step4('adoption')).toBe('adopt')\n    expect(stemmer.step4('homologou')).toBe('homolog')\n    expect(stemmer.step4('communism')).toBe('commun')\n    expect(stemmer.step4('activate')).toBe('activ')\n    expect(stemmer.step4('angulariti')).toBe('angular')\n    expect(stemmer.step4('homologous')).toBe('homolog')\n    expect(stemmer.step4('effective')).toBe('effect')\n    expect(stemmer.step4('bowdlerize')).toBe('bowdler')\n  })\n\n  it('should perform step 5a', function () {\n    expect(stemmer.step5a('probate')).toBe('probat')\n    expect(stemmer.step5a('rate')).toBe('rate')\n    expect(stemmer.step5a('cease')).toBe('ceas')\n  })\n\n  it('should perform step5b', function () {\n    expect(stemmer.step5b('controll')).toBe('control')\n    expect(stemmer.step5b('roll')).toBe('roll')\n  })\n\n  it('should perform complete stemming', function () {\n    expect(stemmer.stem('scoring')).toBe('score')\n    expect(stemmer.stem('scored')).toBe('score')\n    expect(stemmer.stem('scores')).toBe('score')\n    expect(stemmer.stem('score')).toBe('score')\n    expect(stemmer.stem('SCORING')).toBe('score')\n    expect(stemmer.stem('SCORED')).toBe('score')\n    expect(stemmer.stem('SCORES')).toBe('score')\n    expect(stemmer.stem('SCORE')).toBe('score')\n    expect(stemmer.stem('nationals')).toBe('nation')\n    expect(stemmer.stem('doing')).toBe('do')\n  })\n\n  it('should perform stem animated to anim', function () {\n    expect(stemmer.stem('animated')).toBe('anim')\n  })\n\n  it('issue 176 - attemptReplace ed|ing', function () {\n    expect(stemmer.stem('aedile')).toBe('aedil')\n    expect(stemmer.stem('adoptedly')).toBe('adoptedli')\n  })\n\n  it('issue 176 - minimum length for final e', function () {\n    expect(stemmer.stem('ace')).toBe('ac')\n  })\n\n  it('issue 176 - minimum length for final s', function () {\n    expect(stemmer.stem('yes')).toBe('ye')\n  })\n\n  it('issue 176 - s/tion measure', function () {\n    expect(stemmer.stem('invasion')).toBe('invas')\n  })\n\n  it('issue 176 - vehement - step 4', function () {\n    expect(stemmer.stem('vehement')).toBe('vehement')\n    expect(stemmer.stem('syllogism')).toBe('syllog')\n    expect(stemmer.stem('gypsy')).toBe('gypsi')\n  })\n\n  it('issue 176 step 2', function () {\n    expect(stemmer.stem('terribly')).toBe('terribl')\n    expect(stemmer.stem('apology')).toBe('apolog')\n  })\n\n  it('issue 176 - step 5a', function () {\n    expect(stemmer.stem('type')).toBe('type')\n  })\n\n  it('issue 176 - corruptiblity', function () {\n    expect(stemmer.stem('corruptibility')).toBe('corrupt')\n  })\n\n  /*\n  it('should tokenize and stem attached', function() {\n    stemmer.attach();\n    expect('scoring stinks'.tokenizeAndStem()).toEqual(['score', 'stink']);\n    expect('SCORING STINKS'.tokenizeAndStem()).toEqual(['score', 'stink']);\n  });\n*/\n\n  it('should tokenize and stem ignoring stopwords', function () {\n    expect(stemmer.tokenizeAndStem('My dog is very fun TO play with And another thing, he is A poodle.')).toEqual(['dog', 'fun', 'plai', 'thing', 'poodl'])\n  })\n\n  it('should tokenize and stem ignoring all capital stopwords', function () {\n    const allCapitalStopwords: string = stopwords.join(' ').toUpperCase()\n    expect(stemmer.tokenizeAndStem(allCapitalStopwords)).toEqual([])\n  })\n\n  it('should tokenize and stem including stopwords', function () {\n    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'])\n  })\n})\n"
  },
  {
    "path": "spec/porter_stemmer_sv_spec.ts",
    "content": "/*\nCopyright (c) 2017, Dogan Yazar\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { PorterStemmerSv as stemmer } from 'lib/natural'\nimport { words, stemmedWords } from '../spec/test_data/sv_stemmer_sample.js'\n\ndescribe('porter_stemmer_sv', function () {\n  it('Stem whole sample data', function () {\n    const res = words.map(w => stemmer.stem(w))\n    expect(res).toEqual(stemmedWords)\n  })\n\n  /*\n  it('should tokenize and stem attached', function() {\n    stemmer.attach();\n    expect('björks jaktbössa'.tokenizeAndStem()).toEqual(['björk', 'jaktböss'])\n    expect('bJöRks JaKtböSsa'.tokenizeAndStem()).toEqual(['björk', 'jaktböss'])\n  })\n  */\n})\n"
  },
  {
    "path": "spec/present_verb_inflector_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport { PresentVerbInflector } from 'lib/natural'\nconst inflector = new PresentVerbInflector()\n\ndescribe('present verb inflector', function () {\n  describe('singularization', function () {\n    it('should singularize regular ES forms', function () {\n      expect(inflector.singularize('catch')).toBe('catches')\n      expect(inflector.singularize('do')).toBe('does')\n      expect(inflector.singularize('go')).toBe('goes')\n    })\n\n    it('should handle [CS]HES forms', function () {\n      expect(inflector.singularize('cash')).toBe('cashes')\n      expect(inflector.singularize('ach')).toBe('aches')\n    })\n\n    it('should ignore XES forms', function () {\n      expect(inflector.singularize('annex')).toBe('annexes')\n    })\n\n    it('should handle SSES forms', function () {\n      expect(inflector.singularize('access')).toBe('accesses')\n    })\n\n    it('should ignore ZZES forms', function () {\n      expect(inflector.singularize('buzz')).toBe('buzzes')\n    })\n\n    it('should singularize regular S forms', function () {\n      expect(inflector.singularize('claim')).toBe('claims')\n      expect(inflector.singularize('drink')).toBe('drinks')\n      expect(inflector.singularize('become')).toBe('becomes')\n    })\n\n    it('should singularize irregular forms', function () {\n      expect(inflector.singularize('are')).toBe('is')\n      expect(inflector.singularize('were')).toBe('was')\n      expect(inflector.singularize('have')).toBe('has')\n    })\n\n    it('should singularize ies forms', function () {\n      expect(inflector.singularize('fly')).toBe('flies')\n      expect(inflector.singularize('try')).toBe('tries')\n    })\n\n    it('should handle ambiguous forms', function () {\n      expect(inflector.singularize('will')).toBe('will')\n    })\n  })\n\n  describe('pluralization', function () {\n    it('should pluralize regular ES forms', function () {\n      expect(inflector.pluralize('catches')).toBe('catch')\n      expect(inflector.pluralize('does')).toBe('do')\n      expect(inflector.pluralize('goes')).toBe('go')\n    })\n\n    it('should handle [CS]HES forms', function () {\n      expect(inflector.pluralize('cashes')).toBe('cash')\n      expect(inflector.pluralize('aches')).toBe('ach')\n    })\n\n    it('should handle XES forms', function () {\n      expect(inflector.pluralize('annexes')).toBe('annex')\n    })\n\n    it('should handle SSES forms', function () {\n      expect(inflector.pluralize('accesses')).toBe('access')\n    })\n\n    it('should handle ZZES forms', function () {\n      expect(inflector.pluralize('buzzes')).toBe('buzz')\n    })\n\n    it('should pluralize regular S forms that done drop e', function () {\n      expect(inflector.pluralize('becomes')).toBe('become')\n    })\n\n    it('should pluralize regular S forms', function () {\n      expect(inflector.pluralize('drinks')).toBe('drink')\n      expect(inflector.pluralize('claims')).toBe('claim')\n    })\n\n    it('should pluralize irregular forms', function () {\n      expect(inflector.pluralize('was')).toBe('were')\n      expect(inflector.pluralize('is')).toBe('are')\n      expect(inflector.pluralize('am')).toBe('are')\n      expect(inflector.pluralize('has')).toBe('have')\n    })\n\n    it('should pluralize ies forms', function () {\n      expect(inflector.pluralize('flies')).toBe('fly')\n      expect(inflector.pluralize('tries')).toBe('try')\n    })\n\n    it('should handle ambiguous forms', function () {\n      expect(inflector.pluralize('will')).toBe('will')\n    })\n  })\n\n  it('should pluralize and singularize string', function () {\n    expect(inflector.pluralize('becomes')).toBe('become')\n    expect(inflector.singularize('become')).toBe('becomes')\n  })\n})\n"
  },
  {
    "path": "spec/remove_diacritics_spec.ts",
    "content": "/*\nCopyright (c) 2013, Ken Koch\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\nimport { removeDiacritics } from 'lib/natural'\n\ndescribe('remove_diacritics', function () {\n  it('should correctly remove diacritics', function () {\n    const originalPhrase = 'piñon ça va über résumé œdipe'\n    expect(removeDiacritics(originalPhrase)).toEqual('pinon ca va uber resume oedipe')\n  })\n})\n"
  },
  {
    "path": "spec/sentence_analyzer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n/* eslint-disable no-new */\nimport { SentenceAnalyzer } from 'lib/natural'\nimport { SenType } from 'lib/natural/analyzers/SenType'\nimport type {\n  TaggedSentence,\n  TaggedWord,\n  PunctuationFunction,\n  PunctuationMapping,\n  CallbackFunction\n} from 'lib/natural'\n\ndeclare type Tests = Array<{\n  token?: string\n  result: string | boolean\n  argument?: string\n  index?: string\n}>\n\ndescribe('sentence analyzer', function () {\n  function testSentenceAnalyzer (sentenceTags: TaggedWord[], tests: Tests, callback: CallbackFunction): void {\n    new SentenceAnalyzer({ tags: sentenceTags, punct: function () { return [] } }, function (analyzer) {\n      analyzer.part(function (part) {\n        const posTags = part.posObj.tags\n        for (let tagNum = 0; tagNum < posTags.length; tagNum++) {\n          const posTag = posTags[tagNum]\n          tests.forEach(t => {\n            if (posTag.token === t.token && t.argument !== undefined) {\n              expect(posTag[t.argument]).toEqual(t.result)\n            }\n          })\n        }\n        const lastTagNum = posTags.length - 1\n        tests.forEach(t => {\n          if (t.index !== undefined && t.argument !== undefined) {\n            expect(posTags[lastTagNum][t.argument]).toEqual(t.result)\n          }\n        })\n      })\n      callback(analyzer)\n    })\n  }\n\n  it('should determine PP and SP, given a POS', function () {\n    const sentenceTags: TaggedWord[] = [\n      { token: 'The', pos: 'DT' },\n      { token: 'angry', pos: 'JJ' },\n      { token: 'bear', pos: 'NN' },\n      { token: 'chased', pos: 'VB' },\n      { token: 'the', pos: 'DT' },\n      { token: 'frightened', pos: 'JJ' },\n      { token: 'little', pos: 'JJ' },\n      { token: 'squirrel', pos: 'NN' }\n    ]\n\n    const tests: Tests = [\n      {\n        token: 'angry',\n        argument: 'spos',\n        result: 'SP'\n      },\n      {\n        token: 'squirrel',\n        argument: 'spos',\n        result: 'PP'\n      }\n    ]\n\n    testSentenceAnalyzer(sentenceTags, tests, function (analyzer) {\n      expect(analyzer.subjectToString().trim()).toEqual('The angry bear')\n      expect(analyzer.predicateToString().trim()).toEqual('chased the frightened little squirrel')\n      expect(analyzer.toString().trim()).toEqual('The angry bear chased the frightened little squirrel')\n      expect(analyzer.implicitYou()).toEqual(false)\n    })\n  })\n\n  it('should determine PP and SP given a POS that begins with a verb', function () {\n    const sentenceTags = [\n      { token: 'Vote', pos: 'VB' },\n      { token: 'for', pos: 'IN' },\n      { token: 'me', pos: 'PRP' }\n    ]\n\n    const tests: Tests = [\n      {\n        token: 'Vote',\n        argument: 'spos',\n        result: 'PP'\n      },\n      {\n        token: 'me',\n        argument: 'pp',\n        result: true\n      },\n      {\n        index: 'LAST',\n        argument: 'token',\n        result: 'You'\n      },\n      {\n        index: 'LAST',\n        argument: 'pos',\n        result: 'PRP'\n      },\n      {\n        index: 'LAST',\n        argument: 'added',\n        result: true\n      }\n    ]\n\n    testSentenceAnalyzer(sentenceTags, tests, function (analyzer) {\n      expect(analyzer.implicitYou()).toEqual(true)\n    })\n  })\n\n  it('should look for EX before VB', function () {\n    const sentenceTags = [\n      { token: 'There', pos: 'EX' },\n      { token: 'is', pos: 'VB' },\n      { token: 'a', pos: 'DT' },\n      { token: 'house', pos: 'NN' },\n      { token: 'in', pos: 'IN' },\n      { token: 'the', pos: 'DT' },\n      { token: 'valley', pos: 'DT' }\n    ]\n\n    const tests = [\n      {\n        token: 'There',\n        argument: 'spos',\n        result: 'SP'\n      },\n      {\n        token: 'is',\n        argument: 'spos',\n        result: 'SP'\n      }\n    ]\n\n    testSentenceAnalyzer(sentenceTags, tests, function (analyzer) {\n      expect(analyzer.subjectToString().trim()).toEqual('There is a house')\n      expect(analyzer.predicateToString().trim()).toEqual('')\n      expect(analyzer.toString().trim()).toEqual('There is a house in the valley')\n      expect(analyzer.implicitYou()).toEqual(false)\n    })\n  })\n\n  function testSentenceType (args: TaggedSentence, sentenceType: SenType, callback: CallbackFunction | null): void {\n    new SentenceAnalyzer(args, function (analyzer) {\n      analyzer.part(function () {\n        analyzer.type(function (type) {\n          expect(analyzer.senType).toEqual(sentenceType)\n        })\n      })\n      if (callback !== null) {\n        callback(analyzer)\n      }\n    })\n  }\n\n  describe('#type', function () {\n    it('should determine a command without punctuation', function () {\n      const sentenceTags = [\n        { token: 'Vote', pos: 'VB' },\n        { token: 'for', pos: 'IN' },\n        { token: 'me', pos: 'PRP' }\n      ]\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return []\n      }\n\n      testSentenceType({ tags: sentenceTags, punct }, SenType.Command, null)\n    })\n\n    it('should determine an interrogative beginning with who', function () {\n      const sentenceTags = [\n        { token: 'Who', pos: 'WP' },\n        { token: 'voted', pos: 'VB' }\n      ]\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return []\n      }\n\n      testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null)\n    })\n\n    it('should determine an interrogative ending with a personal pronoun', function () {\n      const sentenceTags = [\n        { token: 'Should', pos: 'MD' },\n        { token: 'we', pos: 'PRP' }\n      ]\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return ''\n      }\n\n      testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null)\n    })\n\n    it('should classify other sentences as unknown', function () {\n      const sentenceTags = [\n        { token: 'I', pos: 'PRP' },\n        { token: 'am', pos: 'VB' },\n        { token: 'unsure', pos: 'JJ' }\n      ]\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return ''\n      }\n\n      testSentenceType({ tags: sentenceTags, punct }, SenType.Unknown, null)\n    })\n\n    it('should determine an interrogative ending with a question mark', function () {\n      const sentenceTags = [\n        { token: 'Do', pos: 'VB' },\n        { token: 'I', pos: 'PRP' },\n        { token: 'care', pos: 'VB' }\n      ]\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return [{ token: '?', pos: '.' }]\n      }\n\n      testSentenceType({ tags: sentenceTags, punct }, SenType.Interrogative, null)\n    })\n\n    const taggedSentForCommand = [\n      { token: 'Vote', pos: 'VB' },\n      { token: 'for', pos: 'IN' },\n      { token: 'me', pos: 'PRP' }\n    ]\n\n    it('should determine a command ending in an exclamation point', function () {\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return [{ token: '!', pos: '.' }]\n      }\n\n      testSentenceType({ tags: taggedSentForCommand, punct }, SenType.Command, null)\n    })\n\n    it('should determine a command ending with .', function () {\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return [{ token: '.', pos: '.' }]\n      }\n\n      testSentenceType({ tags: taggedSentForCommand, punct }, SenType.Command, null)\n    })\n\n    const taggedSentenceForExclam = [\n      { token: 'We', pos: 'PRP' },\n      { token: 'like', pos: 'VB' },\n      { token: 'sheep', pos: 'NN' }\n    ]\n\n    it('should determine an exclamation ending in an exclamation point', function () {\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return [{ token: '!', pos: '.' }]\n      }\n\n      testSentenceType({ tags: taggedSentenceForExclam, punct }, SenType.Exclamatory, null)\n    })\n\n    it('should determine a declaration ending with a .', function () {\n      const punct: PunctuationFunction = function (): PunctuationMapping {\n        return [{ token: '.', pos: '.' }]\n      }\n\n      testSentenceType({ tags: taggedSentenceForExclam, punct }, SenType.Declarative, null)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/sentence_tokenizer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { SentenceTokenizer as Tokenizer } from 'lib/natural'\n\nconst testData = [\n  {\n    it: 'should tokenize strings and trim whitespace',\n    input: 'This is a sentence. This is another sentence.',\n    output: ['This is a sentence.', 'This is another sentence.']\n  },\n  {\n    it: 'should include quotation marks',\n    input: '\"This is a sentence.\" This is another sentence.',\n    output: ['\"This is a sentence.\"', 'This is another sentence.']\n  },\n  {\n    it: 'should include brackets',\n    input: 'This is a sentence. [This is another sentence.]',\n    output: ['This is a sentence.', '[This is another sentence.]']\n  },\n  {\n    it: 'should handle repetitive punctuation',\n    input: 'I love you!! Do you love me??',\n    output: ['I love you!!', 'Do you love me??']\n  },\n  {\n    it: 'should handle repetitive punctuation with space',\n    input: 'I love you! ! Do you love me? ?',\n    output: ['I love you! !', 'Do you love me? ?']\n  },\n  {\n    it: 'should handle decimal points in numbers',\n    input: 'Pi is approximately equal to 3.14.',\n    output: ['Pi is approximately equal to 3.14.']\n  },\n  {\n    it: 'should tokenize text with a number like \"1)\" present ',\n    input: \"This is a sentence that can't 1) be parsed with SentenceTokenizerNew. Here is another sentence.\",\n    output: [\n      \"This is a sentence that can't 1) be parsed with SentenceTokenizerNew.\",\n      'Here is another sentence.'\n    ]\n  },\n  {\n    it: 'should handle periods in email addresses',\n    input: 'My email address is batman@example.com.',\n    output: ['My email address is batman@example.com.']\n  },\n  {\n    it: 'should handle periods in web addresses',\n    input: 'My twitter feed can be found at https://twitter.com/user1.',\n    output: ['My twitter feed can be found at https://twitter.com/user1.']\n  },\n  {\n    it: 'should handle an ellipsis followed by punctuation',\n    input: 'Is this the end for our heroes...?',\n    output: ['Is this the end for our heroes...?']\n  },\n  {\n    it: 'should handle multiple spaces separating sentences',\n    input: 'Tune in tomorrow and find out!  Same Bat-Time!  Same Bat-Channel!',\n    output: [\n      'Tune in tomorrow and find out!',\n      'Same Bat-Time!',\n      'Same Bat-Channel!'\n    ]\n  },\n  {\n    it: 'should handle braces and quotes (issue #591) part 1',\n    input: 'Teste. Test test. Test test: “Test.”',\n    output: [\n      'Teste.',\n      'Test test.',\n      'Test test: “Test.”'\n    ]\n  },\n  {\n    it: 'should handle braces and quotes (issue #591) part 2',\n    input: 'Test Test. Test test, test test (test test) test: “Test.”',\n    output: [\n      'Test Test.',\n      'Test test, test test (test test) test: “Test.”'\n    ]\n  },\n  {\n    it: 'should handle braces and quotes (issue #591) part 3',\n    input: 'Test Test. Test test, test (test) test (test test) test: “Test.”',\n    output: [\n      'Test Test.',\n      'Test test, test (test) test (test test) test: “Test.”'\n    ]\n  },\n  {\n    it: 'should handle braces and quotes (issue #591) part 4',\n    input: 'Test: Test (test) test “Test.”',\n    output: ['Test: Test (test) test “Test.”']\n  },\n  {\n    it: 'Should handle text with the ellipsis symbol … (issue #648)',\n    input: 'We’re heading for a catastrophic global temperature rise… Fires are blazing from the Amazon to the Arctic.',\n    output: [\n      'We’re heading for a catastrophic global temperature rise…',\n      'Fires are blazing from the Amazon to the Arctic.'\n    ]\n  },\n  {\n    it: 'It should handle last sentence without punctuation (issue #648)',\n    input: 'We’re heading for a catastrophic global temperature rise. Fires are blazing from the Amazon to the Arctic',\n    output: [\n      'We’re heading for a catastrophic global temperature rise.',\n      'Fires are blazing from the Amazon to the Arctic'\n    ]\n  },\n  {\n    it: 'It should handle the example from issue #689 correctly',\n    input: `This is some test content.\n\n      We're trying to figure out variations in versions of the package.`,\n    output: [\n      'This is some test content.',\n      'We\\'re trying to figure out variations in versions of the package.'\n    ]\n  },\n  {\n    it: 'should handle abbreviations correctly 1',\n    input: 'i.e.',\n    output: ['i.e.']\n  },\n  {\n    it: 'should handle abbreviations correctly 2',\n    input: 'Acme, Inc. is creating exciting products. Use at your own risk.',\n    output: [\n      'Acme, Inc. is creating exciting products.',\n      'Use at your own risk.'\n    ]\n  },\n  {\n    it: 'should handle abbreviations correctly 3',\n    input: 'I need the parts A.S.A.P. please. Send them when they are ready',\n    // input: 'I A.S.A.P. read',\n    output: [\n      'I need the parts A.S.A.P. please.',\n      'Send them when they are ready'\n    ]\n  },\n  {\n    it: 'should handle abbreviations correctly 4',\n    input: 'I need the parts from Inc.. Send them when they are ready!',\n    output: [\n      'I need the parts from Inc..',\n      'Send them when they are ready!'\n    ]\n  },\n  {\n    it: 'It should handle the example from issue #750 correctly',\n    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).\"',\n    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).\"']\n  },\n  {\n    it: 'should handle a sentence that does not end with punctuation (issue #549))',\n    input: 'This is a sentence. But is this also one',\n    output: [\n      'This is a sentence.',\n      'But is this also one'\n    ]\n  },\n  {\n    it: 'should handle a sentence that contains a quoted phrase (issue #550 but with . and ’ reversed))',\n    input: 'This is a sentence. And another where ‘Someone says something’.',\n    output: [\n      'This is a sentence.',\n      'And another where ‘Someone says something’.'\n    ]\n  },\n  {\n    it: 'Should correctly parse multiple sentences with a subset of the sentences surrounded with quotes',\n    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.',\n    output: [\n      '\"All ticketed passengers should now be in the Blue Concourse sleep lounge.',\n      'Make sure your validation papers are in order.',\n      'Thank you.\"',\n      'The upstairs lounge was not at all grungy.'\n    ]\n  }\n]\n\ndescribe('sentence_tokenizer', function () {\n  let tokenizer: Tokenizer\n\n  beforeAll(function () {\n    tokenizer = new Tokenizer(['i.e.', 'etc.', 'vs.', 'Inc.', 'A.S.A.P.'],\n      ['.', '!', '?', '\\n', '\\r', '...', '…'])\n  })\n\n  testData.forEach(({ it: description, input, output }) => {\n    it(description, function () {\n      expect(tokenizer.tokenize(input)).toEqual(output)\n    })\n  })\n})\n\n// describe('sentence_tokenizer with trimSentences set to false', function () {\n//   let tokenizer: Tokenizer\n\n//   beforeAll(function () {\n//     tokenizer = new Tokenizer(['i.e.', 'etc.', 'vs.', 'Inc.', 'A.S.A.P.'],\n//       ['.', '!', '?', '\\n', '\\r', '...', '…'], false)\n//   })\n\n//   it('should tokenize strings but not trim whitespace if trimSentences is false', function () {\n//     expect(tokenizer.tokenize('This is a sentence. This is another sentence.')).toEqual(['This is a sentence. ', 'This is another sentence.'])\n//   })\n// })\n"
  },
  {
    "path": "spec/shortest_path_tree_spec.ts",
    "content": "/*\nCopyright (c) 2014, Lee Wenzhu\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  ShortestPathTree as SPT,\n  Topological,\n  EdgeWeightedDigraph\n} from 'lib/natural'\n\ndescribe('shortest path tree (1)', function () {\n  const digraph = new EdgeWeightedDigraph()\n  digraph.add(5, 4, 0.35)\n  digraph.add(4, 7, 0.37)\n  digraph.add(5, 7, 0.28)\n  digraph.add(5, 1, 0.32)\n  digraph.add(4, 0, 0.38)\n  digraph.add(0, 2, 0.26)\n  digraph.add(3, 7, 0.39)\n  digraph.add(1, 3, 0.29)\n  digraph.add(7, 2, 0.34)\n  digraph.add(6, 2, 0.40)\n  digraph.add(3, 6, 0.52)\n  digraph.add(6, 0, 0.58)\n  digraph.add(6, 4, 0.93)\n  describe('edge weighted digraph normal operations', function () {\n    it('should get the numbers of vertexs', function () {\n      expect(digraph.v()).toBe(8)\n    })\n    it('should get the numbers of edges', function () {\n      expect(digraph.e()).toBe(13)\n    })\n    it('should print all item in digraph', function () {\n      expect(digraph.toString()).toBe('0 -> 2, 0.26\\n' +\n                                            '1 -> 3, 0.29\\n' +\n                                            '3 -> 7, 0.39\\n' +\n                                            '3 -> 6, 0.52\\n' +\n                                            '4 -> 7, 0.37\\n' +\n                                            '4 -> 0, 0.38\\n' +\n                                            '5 -> 4, 0.35\\n' +\n                                            '5 -> 7, 0.28\\n' +\n                                            '5 -> 1, 0.32\\n' +\n                                            '6 -> 2, 0.4\\n' +\n                                            '6 -> 0, 0.58\\n' +\n                                            '6 -> 4, 0.93\\n' +\n                                            '7 -> 2, 0.34')\n    })\n  })\n\n  describe('topo sort for digraph', function () {\n    it('should sort all the vertexs', function () {\n      const topoSort = new Topological(digraph)\n      expect(topoSort.isDAG()).toBe(true)\n      expect(topoSort.order()).toEqual([5, 1, 3, 6, 4, 7, 0, 2])\n    })\n  })\n\n  describe('shortest path tree normal operations', function () {\n    const lpt = new SPT(digraph, 5)\n    it('should determine existence of paths', function () {\n      expect(lpt.hasPathTo(0)).toBe(true)\n      expect(lpt.hasPathTo(1)).toBe(true)\n      expect(lpt.hasPathTo(2)).toBe(true)\n      expect(lpt.hasPathTo(3)).toBe(true)\n      expect(lpt.hasPathTo(4)).toBe(true)\n      expect(lpt.hasPathTo(5)).toBe(false)\n      expect(lpt.hasPathTo(6)).toBe(true)\n      expect(lpt.hasPathTo(7)).toBe(true)\n    })\n    it('should determine paths', function () {\n      expect(lpt.pathTo(0)).toEqual([5, 4, 0])\n      expect(lpt.pathTo(1)).toEqual([5, 1])\n      expect(lpt.pathTo(2)).toEqual([5, 7, 2])\n      expect(lpt.pathTo(3)).toEqual([5, 1, 3])\n      expect(lpt.pathTo(4)).toEqual([5, 4])\n      expect(lpt.pathTo(5)).toEqual([])\n      expect(lpt.pathTo(6)).toEqual([5, 1, 3, 6])\n      expect(lpt.pathTo(7)).toEqual([5, 7])\n    })\n    it('should calculate distances', function () {\n      expect(lpt.getDistTo(0)).toBe(0.73)\n      expect(lpt.getDistTo(1)).toBe(0.32)\n      expect(lpt.getDistTo(2)).toBe(0.62)\n      expect(lpt.getDistTo(3)).toBe(0.61)\n      expect(lpt.getDistTo(4)).toBe(0.35)\n      expect(lpt.getDistTo(5)).toBe(0)\n      expect(lpt.getDistTo(6)).toBe(1.13)\n      expect(lpt.getDistTo(7)).toBe(0.28)\n    })\n  })\n\n  /**\n     * Check the issue #150\n     **/\n  describe('lightest weight path', function () {\n    it('should find the lightest weight path - part 1', function () {\n      const digraph = new EdgeWeightedDigraph()\n\n      digraph.add(1, 3, 0.29)\n      digraph.add(1, 6, 0)\n      digraph.add(3, 6, 0)\n\n      const spt = new SPT(digraph, 1)\n      const path = spt.pathTo(6)\n      expect(path).toEqual([1, 6])\n    })\n    it('should find the lightest weight path - part 2', function () {\n      const digraph = new EdgeWeightedDigraph()\n\n      digraph.add(1, 3, -1)\n      digraph.add(1, 6, 0)\n      digraph.add(3, 6, 0)\n\n      const spt = new SPT(digraph, 1)\n      const path = spt.pathTo(6)\n      const hasPath = spt.hasPathTo(6)\n      expect(hasPath).toBe(true)\n      expect(path).toEqual([1, 3, 6])\n    })\n  })\n})\n"
  },
  {
    "path": "spec/soundex_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { SoundEx } from 'lib/natural'\nconst soundex = new SoundEx()\n\ndescribe('soundex', function () {\n  describe('transformLipps', function () {\n    it('should replace B, F, P, and V with 1', function () {\n      expect(soundex.transformLipps('bopper')).toBe('1o11er')\n      expect(soundex.transformLipps('valumf')).toBe('1alum1')\n    })\n  })\n\n  describe('transformThroats', function () {\n    it('should replace C, G, J, K, Q, S, X, Z with 2', function () {\n      expect(soundex.transformLipps('bopper')).toBe('1o11er')\n      expect(soundex.transformLipps('valumf')).toBe('1alum1')\n    })\n  })\n\n  describe('transformTongue', function () {\n    it('should replace D and T with 3', function () {\n      expect(soundex.transformToungue('dat')).toBe('3a3')\n    })\n  })\n\n  describe('transformL', function () {\n    it('should replace L with 4', function () {\n      expect(soundex.transformL('lala')).toBe('4a4a')\n    })\n  })\n\n  describe('transformHum', function () {\n    it('should replace M and N with 5', function () {\n      expect(soundex.transformHum('mummification')).toBe('5u55ificatio5')\n    })\n  })\n\n  describe('transformR', function () {\n    it('should replace R with 6', function () {\n      expect(soundex.transformR('render')).toBe('6ende6')\n    })\n  })\n\n  describe('condense', function () {\n    it('sound condense sequences', function () {\n      expect(soundex.condense('11222556')).toBe('1256')\n    })\n  })\n\n  describe('padRight0', function () {\n    it('sound padd zeros on the right to a lenght of 3', function () {\n      expect(soundex.padRight0('1')).toBe('100')\n      expect(soundex.padRight0('11')).toBe('110')\n      expect(soundex.padRight0('111')).toBe('111')\n    })\n  })\n\n  it('should not code the first character', function () {\n    expect(soundex.process('render').charAt(0)).toBe('R')\n  })\n\n  it('should pad right with zeros', function () {\n    expect(soundex.process('super')).toBe('S160')\n    expect(soundex.process('butt')).toBe('B300')\n    expect(soundex.process('a')).toBe('A000')\n    expect(soundex.process('but')).toBe('B300')\n  })\n\n  it('should perform soundex', function () {\n    expect(soundex.process('BLACKBERRY')).toBe('B421')\n    expect(soundex.process('blackberry')).toBe('B421')\n    expect(soundex.process('calculate')).toBe('C424')\n    expect(soundex.process('CALCULATE')).toBe('C424')\n    expect(soundex.process('fox')).toBe('F200')\n    expect(soundex.process('FOX')).toBe('F200')\n    expect(soundex.process('jump')).toBe('J510')\n    expect(soundex.process('JUMP')).toBe('J510')\n    expect(soundex.process('phonetics')).toBe('P532')\n    expect(soundex.process('PHONETICS')).toBe('P532')\n  })\n\n  it('should perform soundex via compare method', function () {\n    expect(soundex.compare('ant', 'and')).toBeTruthy()\n    expect(soundex.compare('ant', 'anne')).toBeFalsy()\n    expect(soundex.compare('band', 'bant')).toBeTruthy()\n    expect(soundex.compare('band', 'gand')).toBeFalsy()\n  })\n\n  /*\n    it('should perform soundex via attached soundsLike String patch', function() {\n        soundex.attach();\n        expect('ant'.soundsLike('ant')).toBeTruthy();\n        expect('ant'.soundsLike('anne')).toBeFalsy();\n        expect('band'.soundsLike('bant')).toBeTruthy();\n        expect('band'.soundsLike('gand')).toBeFalsy();\n    });\n\n    it('should return string phonetics with string patch', function() {\n        soundex.attach();\n        expect('phonetics'.phonetics()).toBe('P532');\n        expect('PHONETICS'.phonetics()).toBe('P532');\n    });\n\n    it('issue 221 -- inital vowels that duplicate cons codes', function() {\n        soundex.attach();\n        expect('Lloyd'.phonetics()).toBe('L300');\n        expect('Pfister'.phonetics()).toBe('P236');\n\n        expect('manhattan'.phonetics()).toBe('M535');\n        expect('Lukasiewicz'.phonetics()).toBe('L222');\n\n        expect('Gauss'.phonetics()).toBe('G200');\n        expect('Tymczak'.phonetics()).toBe('T522');\n        expect('Jackson'.phonetics()).toBe('J250');\n    });\n\n    it('should tokenize and return string phonetics with string patch', function() {\n        soundex.attach();\n        expect('phonetics'.tokenizeAndPhoneticize()).toEqual(['P532']);\n        expect('phonetics jump'.tokenizeAndPhoneticize()).toEqual(['P532', 'J510']);\n        expect('phonetics jump calculate'.tokenizeAndPhoneticize()).toEqual(['P532', 'J510', 'C424']);\n    });\n    */\n\n  it('should max out at four characters long by default', function () {\n    expect(soundex.process('supercalifragilisticexpialidocious').length).toBe(4)\n  })\n\n  it('should truncate to specified length if maxLength passed', function () {\n    expect(soundex.process('supercalifragilisticexpialidocious', 8).length).toBe(8)\n  })\n\n  it('should handle a maxLength beyond code length', function () {\n    expect(soundex.process('JUMP', 8)).toBe('J510')\n  })\n})\n"
  },
  {
    "path": "spec/spellcheck_spec.ts",
    "content": "/*\nCopyright (c) 2011\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { Spellcheck } from 'lib/natural'\n\ndescribe('spellcheck', function () {\n  describe('distance 1 corrections', function () {\n    const spellcheck = new Spellcheck(['something'])\n\n    it('should fix deletions', function () {\n      expect(spellcheck.getCorrections('smething')).toContain('something')\n    })\n    it('should fix insertions', function () {\n      expect(spellcheck.getCorrections('somethhing')).toContain('something')\n    })\n    it('should fix transpositions', function () {\n      expect(spellcheck.getCorrections('somehting')).toContain('something')\n    })\n    it('should fix replacements', function () {\n      expect(spellcheck.getCorrections('sometzing')).toContain('something')\n    })\n  })\n\n  describe('distance 2 corrections', function () {\n    const spellcheck = new Spellcheck(['something'])\n\n    it('should fix a deletion then a transposition', function () {\n      expect(spellcheck.getCorrections('smtehing', 2)).toContain('something')\n    })\n  })\n\n  describe('edits', function () {\n    const spellcheck = new Spellcheck([])\n    const edits = spellcheck.edits('ab')\n\n    it('should compute insertions', function () {\n      const insertions = ['xab', 'axb', 'abx']\n      insertions.forEach(insertion => {\n        expect(edits.indexOf(insertion)).toBeGreaterThan(-1)\n      })\n    })\n    it('should compute deletions', function () {\n      const deletions = ['a', 'b']\n      deletions.forEach(deletion => {\n        expect(edits.indexOf(deletion)).toBeGreaterThan(-1)\n      })\n    })\n    it('should compute transpositions', function () {\n      const transpositions = ['ba']\n      transpositions.forEach(transposition => {\n        expect(edits.indexOf(transposition)).toBeGreaterThan(-1)\n      })\n    })\n    it('should compute replacements', function () {\n      const replacements = ['zb', 'af']\n      replacements.forEach(replacement => {\n        expect(edits.indexOf(replacement)).toBeGreaterThan(-1)\n      })\n    })\n  })\n\n  describe('edits up to distance', function () {\n    const spellcheck = new Spellcheck([])\n\n    it('should correctly compute edits at distance', function () {\n      const edits = spellcheck.editsWithMaxDistance('abc', 2)\n      expect(edits[1].indexOf('abzc')).toBeGreaterThan(-1) // 1 insertion\n      expect(edits[2].indexOf('a')).toBeGreaterThan(-1) // 2 deletions\n    })\n  })\n\n  describe('boolean spellcheck', function () {\n    const spellcheck = new Spellcheck(['cat'])\n\n    it('should consider cat a word', function () {\n      expect(spellcheck.isCorrect('cat')).toBe(true)\n    })\n\n    it('should not consider dog a word', function () {\n      expect(spellcheck.isCorrect('dog')).toBe(false)\n    })\n  })\n\n  describe('special cases', function () {\n    const spellcheck = new Spellcheck(['cat'])\n\n    it('should return the input word as the most probable correction if it is already correct', function () {\n      expect(spellcheck.getCorrections('cat').indexOf('cat')).toBe(0)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/stemmer_id_spec.ts",
    "content": "/*\nCopyright (c) 2018\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this softwé and associated documentation files (the \"Softwé\"), to deal\nin the Softwé without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Softwé, and to permit persons to whom the Softwé is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Softwé.\n\nTHE SOFTWé IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWé OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\n// Adapted from original Mocha test script in tests folder\n\nimport { StemmerId as Stemmer } from 'lib/natural'\n\ndeclare type Tests = Array<[string, string]>\nconst data: Tests = []\n\n// THE TESTCASES\n// don't stem short words\ndata.push(['mei', 'mei'])\ndata.push(['bui', 'bui'])\n\n// lookup up the dictionary, to prevent overstemming\n// don't stem nilai to nila\ndata.push(['nilai', 'nilai'])\n\n// lah|kah|tah|pun\ndata.push(['hancurlah', 'hancur'])\n// data.push(['benarkah', 'benar']);\n// data.push(['apatah', 'apa']);\n// data.push(['siapapun', 'siapa']);\n\n// ku|mu|nya\ndata.push(['jubahku', 'jubah'])\ndata.push(['bajumu', 'baju'])\ndata.push(['celananya', 'celana'])\n\n// i|kan|an\ndata.push(['hantui', 'hantu'])\n// data.push(['belikan', 'beli']);\ndata.push(['jualan', 'jual'])\n\n// combination of suffixes\ndata.push(['bukumukah', 'buku']) // gagal karena -ku dianggap suffix dan dihilangkan\ndata.push(['miliknyalah', 'milik'])\ndata.push(['kulitkupun', 'kulit']) // gagal karena -ku dianggap suffix dan dihilangkan\ndata.push(['berikanku', 'beri'])\ndata.push(['sakitimu', 'sakit'])\ndata.push(['beriannya', 'beri'])\ndata.push(['kasihilah', 'kasih'])\n\n// plain prefix\ndata.push(['dibuang', 'buang'])\ndata.push(['kesakitan', 'sakit'])\ndata.push(['sesuap', 'suap'])\n\n// data.push(['teriakanmu', 'teriak']); // wtf? kok jadi ria?\n// teriakanmu -> te-ria-kan-mu\n\n// template formulas for derivation prefix rules (disambiguation) //\n\n// rule 1a : berV -> ber-V\ndata.push(['beradu', 'adu'])\n\n// rule 1b : berV -> be-rV\ndata.push(['berambut', 'rambut'])\n\n// rule 2 : berCAP -> ber-CAP\ndata.push(['bersuara', 'suara'])\n\n// rule 3 : berCAerV -> ber-CAerV where C != 'r'\ndata.push(['berdaerah', 'daerah'])\n\n// rule 4 : belajar -> bel-ajar\ndata.push(['belajar', 'ajar'])\n\n// rule 5 : beC1erC2 -> be-C1erC2 where C1 != {'r'|'l'}\n// data.push(['bekerja', 'kerja']);\ndata.push(['beternak', 'ternak'])\n\n// rule 6a : terV -> ter-V\ndata.push(['terasing', 'asing'])\n\n// rule 6b : terV -> te-rV\ndata.push(['teraup', 'raup'])\n\n// rule 7 : terCerV -> ter-CerV where C != 'r'\ndata.push(['tergerak', 'gerak'])\n\n// rule 8 : terCP -> ter-CP where C != 'r' and P != 'er'\ndata.push(['terpuruk', 'puruk'])\n\n// rule 9 : teC1erC2 -> te-C1erC2 where C1 != 'r'\ndata.push(['teterbang', 'terbang'])\n\n// rule 10 : me{l|r|w|y}V -> me-{l|r|w|y}V\ndata.push(['melipat', 'lipat'])\ndata.push(['meringkas', 'ringkas'])\ndata.push(['mewarnai', 'warna'])\n// data.push(['meyakinkan', 'yakin']);\n\n// rule 11 : mem{b|f|v} -> mem-{b|f|v}\ndata.push(['membangun', 'bangun'])\ndata.push(['memfitnah', 'fitnah'])\ndata.push(['memvonis', 'vonis'])\n\n// rule 12 : mempe{r|l} -> mem-pe\ndata.push(['memperbarui', 'baru'])\ndata.push(['mempelajari', 'ajar'])\n\n// rule 13a : mem{rV|V} -> mem{rV|V}\ndata.push(['meminum', 'minum'])\n\n// rule 13b : mem{rV|V} -> me-p{rV|V}\ndata.push(['memukul', 'pukul'])\n\n// rule 14 : men{c|d|j|z} -> men-{c|d|j|z}\ndata.push(['mencinta', 'cinta'])\ndata.push(['mendua', 'dua'])\ndata.push(['menjauh', 'jauh'])\ndata.push(['menziarah', 'ziarah'])\n\n// rule 15a : men{V} -> me-n{V}\ndata.push(['menuklir', 'nuklir'])\n\n// rule 15b : men{V} -> me-t{V}\ndata.push(['menangkap', 'tangkap'])\n\n// rule 16 : meng{g|h|q} -> meng-{g|h|q}\ndata.push(['menggila', 'gila'])\ndata.push(['menghajar', 'hajar'])\ndata.push(['mengqasar', 'qasar'])\n\n// rule 17a : mengV -> meng-V\ndata.push(['mengudara', 'udara'])\n\n// rule 17b : mengV -> meng-kV\ndata.push(['mengupas', 'kupas'])\n\n// rule 18 : menyV -> meny-sV\ndata.push(['menyuarakan', 'suara'])\n\n// rule 19 : mempV -> mem-pV where V != 'e'\ndata.push(['mempopulerkan', 'populer'])\n\n// rule 20 : pe{w|y}V -> pe-{w|y}V\ndata.push(['pewarna', 'warna'])\ndata.push(['peyoga', 'yoga'])\n\n// rule 21a : perV -> per-V\ndata.push(['peradilan', 'adil'])\n\n// rule 21b : perV -> pe-rV\ndata.push(['perumahan', 'rumah'])\n\n// rule 22 is missing in the document?\n\n// rule 23 : perCAP -> per-CAP where C != 'r' and P != 'er'\ndata.push(['permuka', 'muka'])\n\n// rule 24 : perCAerV -> per-CAerV where C != 'r'\ndata.push(['perdaerah', 'daerah'])\n\n// rule 25 : pem{b|f|v} -> pem-{b|f|v}\ndata.push(['pembangun', 'bangun'])\ndata.push(['pemfitnah', 'fitnah'])\ndata.push(['pemvonis', 'vonis'])\n\n// rule 26a : pem{rV|V} -> pe-m{rV|V}\ndata.push(['peminum', 'minum'])\n\n// rule 26b : pem{rV|V} -> pe-p{rV|V}\ndata.push(['pemukul', 'pukul'])\n\n// rule 27 : men{c|d|j|z} -> men-{c|d|j|z}\ndata.push(['pencinta', 'cinta'])\ndata.push(['pendahulu', 'dahulu'])\ndata.push(['penjarah', 'jarah'])\ndata.push(['penziarah', 'ziarah'])\n\n// rule 28a : pen{V} -> pe-n{V}\ndata.push(['penasihat', 'nasihat'])\n\n// rule 28b : pen{V} -> pe-t{V}\ndata.push(['penangkap', 'tangkap'])\n\n// rule 29 : peng{g|h|q} -> peng-{g|h|q}\ndata.push(['penggila', 'gila'])\ndata.push(['penghajar', 'hajar'])\ndata.push(['pengqasar', 'qasar'])\n\n// rule 30a : pengV -> peng-V\ndata.push(['pengudara', 'udara'])\n\n// rule 30b : pengV -> peng-kV\ndata.push(['pengupas', 'kupas'])\n\n// rule 31 : penyV -> peny-sV\ndata.push(['penyuara', 'suara'])\n\n// rule 32 : pelV -> pe-lV except pelajar -> ajar\ndata.push(['pelajar', 'ajar'])\ndata.push(['pelabuhan', 'labuh'])\n\n// rule 33 : peCerV -> per-erV where C != {r|w|y|l|m|n}\n// TODO : find the examples\n\n// rule 34 : peCP -> pe-CP where C != {r|w|y|l|m|n} and P != 'er'\ndata.push(['petarung', 'tarung'])\n\n// CS additional rules\n\n// rule 35 : terC1erC2 -> ter-C1erC2 where C1 != 'r'\ndata.push(['terpercaya', 'percaya'])\n\n// rule 36 : peC1erC2 -> pe-C1erC2 where C1 != {r|w|y|l|m|n}\ndata.push(['pekerja', 'kerja'])\ndata.push(['peserta', 'serta'])\n\n// CS modify rule 12\ndata.push(['mempengaruhi', 'pengaruh'])\n\n// CS modify rule 16\ndata.push(['mengkritik', 'kritik'])\n\n// CS adjusting rule precedence\ndata.push(['bersekolah', 'sekolah']) // gagal sekolah -> seko why?\ndata.push(['bertahan', 'tahan'])\ndata.push(['mencapai', 'capai']) // gagal mencapai -> capa\n// data.push(['dimulai', 'mulai']);\ndata.push(['petani', 'tani']) // gagal petani -> petan\ndata.push(['terabai', 'abai']) // gagal terabai -> aba\n\n// ECS\ndata.push(['mensyaratkan', 'syarat'])\ndata.push(['mensyukuri', 'syukur'])\ndata.push(['mengebom', 'bom'])\ndata.push(['mempromosikan', 'promosi'])\ndata.push(['memproteksi', 'proteksi'])\ndata.push(['memprediksi', 'prediksi'])\ndata.push(['pengkajian', 'kaji'])\ndata.push(['pengebom', 'bom'])\n\n// ECS loop pengembalian akhiran\ndata.push(['bersembunyi', 'sembunyi'])\ndata.push(['bersembunyilah', 'sembunyi'])\ndata.push(['pelanggan', 'langgan'])\ndata.push(['pelaku', 'laku'])\ndata.push(['pelangganmukah', 'langgan'])\ndata.push(['pelakunyalah', 'laku'])\n\ndata.push(['perbaikan', 'baik'])\ndata.push(['kebaikannya', 'baik'])\ndata.push(['bisikan', 'bisik'])\n// data.push(['menerangi', 'terang']);\n// data.push(['berimanlah', 'iman']);\n\n// data.push(['memuaskan', 'puas']);\ndata.push(['berpelanggan', 'langgan'])\ndata.push(['bermakanan', 'makan'])\n\n// CC (Modified ECS)\ndata.push(['menyala', 'nyala'])\ndata.push(['menyanyikan', 'nyanyi'])\ndata.push(['menyatakannya', 'nyata'])\n\ndata.push(['penyanyi', 'nyanyi'])\ndata.push(['penyawaan', 'nyawa'])\n\n// CC infix\n// data.push(['rerata', 'rata']);\n// data.push(['lelembut', 'lembut']);\ndata.push(['lemigas', 'ligas'])\ndata.push(['kinerja', 'kerja'])\n\n// plurals\ndata.push(['buku-buku', 'buku'])\ndata.push(['berbalas-balasan', 'balas'])\ndata.push(['bolak-balik', 'bolak-balik'])\n\n// combination of prefix + suffix\ndata.push(['bertebaran', 'tebar'])\ndata.push(['terasingkan', 'asing'])\ndata.push(['membangunkan', 'bangun'])\ndata.push(['mencintai', 'cinta'])\ndata.push(['menduakan', 'dua'])\ndata.push(['menjauhi', 'jauh'])\ndata.push(['menggilai', 'gila'])\ndata.push(['pembangunan', 'bangun'])\n\n// return the word if not found in the dictionary\ndata.push(['marwan', 'marwan'])\ndata.push(['subarkah', 'subarkah'])\n\n// recursively remove prefix\ndata.push(['memberdayakan', 'daya'])\ndata.push(['persemakmuran', 'makmur'])\ndata.push(['keberuntunganmu', 'untung'])\ndata.push(['kesepersepuluhnya', 'sepuluh'])\n\n// test stem sentence\n// data.push(['siapakah memberdayakan pembangunan', 'siapa daya bangun']);\n\n// issues\ndata.push(['Perekonomian', 'ekonomi'])\ndata.push(['menahan', 'tahan'])\n\n// test stem multiple sentences\n// var multipleSentence1 = 'Cinta telah bertebaran.Keduanya saling mencintai.';\n// var multipleSentence2 = \"(Cinta telah bertebaran)\\n\\n\\n\\nKeduanya saling mencintai.\";\n// data.push([multipleSentence1, 'cinta telah tebar dua saling cinta']);\n// data.push([multipleSentence2, 'cinta telah tebar dua saling cinta']);\n\n// failed on other method / algorithm but we should succeed\ndata.push(['peranan', 'peran'])\n// data.push(['memberikan', 'beri']);\ndata.push(['medannya', 'medan'])\n\n// TODO:\n// data.push(['sebagai', 'bagai']);\n// data.push(['bagian', 'bagian']);\ndata.push(['berbadan', 'badan'])\ndata.push(['abdullah', 'abdullah'])\n\n// adopted foreign suffixes\n// data.push(['budayawan', 'budaya']);\n// data.push(['karyawati', 'karya']);\n// data.push(['idealis', 'ideal']);\n// data.push(['idealisme', 'ideal']);\ndata.push(['finalisasi', 'final'])\n\n// sastrawi additional rules\ndata.push(['penstabilan', 'stabil'])\ndata.push(['pentranskripsi', 'transkripsi'])\n\ndata.push(['mentaati', 'taat'])\ndata.push(['meniru-nirukan', 'tiru'])\ndata.push(['menyepak-nyepak', 'sepak'])\n\ndata.push(['melewati', 'lewat'])\ndata.push(['menganga', 'nganga'])\n\ndata.push(['kupukul', 'pukul'])\ndata.push(['kauhajar', 'hajar'])\n\ndata.push(['kuasa-Mu', 'kuasa'])\ndata.push(['malaikat-malaikat-Nya', 'malaikat'])\ndata.push(['nikmat-Ku', 'nikmat'])\ndata.push(['allah-lah', 'allah'])\n\ndescribe('Indonesian stemmer', function () {\n  data.forEach(function (testPair) {\n    it('should correctly tokenize and stem ' + testPair[0] + ' to ' + testPair[1], function () {\n      const output = Stemmer.tokenizeAndStem(testPair[0])\n      const outputConcat = output.join(' ')\n      // console.log(output);\n      expect(outputConcat).toEqual(testPair[1])\n    })\n  })\n})\n"
  },
  {
    "path": "spec/stemmer_ja_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { StemmerJa as stemmer } from 'lib/natural'\n\nconst test = ['コピー', 'コーヒー', 'タクシー', 'パーティー', 'パーティ', 'ヘルプ・センター']\nconst testResult = ['コピー', 'コーヒ', 'タクシ', 'パーティ', 'パーティ', 'ヘルプ・センタ']\nconst text = '明後日パーティーに行く予定がある。図書館で資料をコピーしました。'\n\ndescribe('StemmerJa', function () {\n  it('should stem words', function () {\n    for (let i = 0; i < test.length; i++) {\n      expect(stemmer.stem(test[i])).toBe(testResult[i])\n    }\n  })\n\n  it('should not tokenize halfwidth katakana', function () {\n    expect(stemmer.stem('ﾀｸｼｰ')).toEqual('ﾀｸｼｰ')\n  })\n\n  it('should tokenize, stem and exclude stop words (default behavior)', function () {\n    const tokens = [\n      '明後日', 'パーティ', '行く', '予定', // パーティー should be stemmed\n      '図書館', '資料', 'コピー', 'まし']\n    expect(stemmer.tokenizeAndStem(text)).toEqual(tokens)\n    expect(stemmer.tokenizeAndStem(text, false)).toEqual(tokens)\n  })\n\n  it('should tokenize, stem and keep stop words', function () {\n    expect(stemmer.tokenizeAndStem(text, true)).toEqual([\n      '明後日', 'パーティ', 'に', '行く', '予定', 'が', 'ある',\n      '図書館', 'で', '資料', 'を', 'コピー', 'し', 'まし', 'た'])\n  })\n\n  /*\n  it('should attach new methods to String', function() {\n    stemmer.attach();\n    expect('コーヒー'.stem()).toEqual('コーヒ');\n    expect('コピー'.stem()).toEqual('コピー');\n    expect('図書館で資料をコピーしました。'.tokenizeAndStem()).toEqual([\n      '図書館', '資料', 'コピー', 'まし']);\n    expect('図書館で資料をコピーしました。'.tokenizeAndStem(false)).toEqual([\n      '図書館', '資料', 'コピー', 'まし']);\n    expect('図書館で資料をコピーしました。'.tokenizeAndStem(true)).toEqual([\n      '図書館', 'で', '資料', 'を', 'コピー', 'し', 'まし', 'た']);\n  });\n  */\n})\n"
  },
  {
    "path": "spec/stemmer_token_spec.ts",
    "content": "/*\nCopyright (c) 2014, Luís Rodrigues\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { Token } from 'lib/natural'\n\ndescribe('stemmer token', function () {\n  it('should receive a string', function () {\n    const string = 'test'\n    const token = new Token(string)\n\n    expect(token.string).toBe(string)\n  })\n\n  it('should hold the original token string', function () {\n    const string = 'test'\n    const token = new Token(string)\n\n    expect(token.original).toBe(string)\n  })\n\n  it('should replace all instances of a string', function () {\n    const string = 'tester'\n    const token = new Token(string)\n\n    token.replaceAll('e', 'a')\n    expect(token.string).toBe('tastar')\n\n    token.replaceAll('ar', 'er')\n    expect(token.string).toBe('taster')\n\n    token.replaceAll('r', '')\n    expect(token.string).toBe('taste')\n  })\n\n  it('should allow vowels to be set', function () {\n    const vowels = 'aeiou'\n    const vowelsArray = vowels.split('')\n    const token = new Token('')\n\n    token.usingVowels(vowels)\n    expect(token.vowels).toBe(vowels)\n\n    token.usingVowels(vowelsArray)\n    expect(token.vowels).toBe(vowelsArray)\n  })\n\n  it('should check for vowels', function () {\n    const vowels = 'aeiou'\n    const token = new Token('test')\n\n    token.usingVowels(vowels)\n\n    expect(token.hasVowelAtIndex(0)).toBe(false)\n    expect(token.hasVowelAtIndex(1)).toBe(true)\n    expect(token.hasVowelAtIndex(99)).toBe(false)\n\n    token.usingVowels(vowels.split(''))\n\n    expect(token.hasVowelAtIndex(0)).toBe(false)\n    expect(token.hasVowelAtIndex(1)).toBe(true)\n    expect(token.hasVowelAtIndex(99)).toBe(false)\n  })\n\n  it('should find the next vowel', function () {\n    const token = new Token('tester').usingVowels('aeiou')\n\n    expect(token.nextVowelIndex(0)).toBe(1)\n    expect(token.nextVowelIndex(1)).toBe(1)\n    expect(token.nextVowelIndex(2)).toBe(4)\n    expect(token.nextVowelIndex(5)).toBe(6)\n    expect(token.nextVowelIndex(99)).toBe(6)\n    expect(token.nextVowelIndex(-1)).toBe(6)\n  })\n\n  it('should find the next consonant', function () {\n    const token = new Token('testee').usingVowels('aeiou')\n\n    expect(token.nextConsonantIndex(0)).toBe(0)\n    expect(token.nextConsonantIndex(1)).toBe(2)\n    expect(token.nextConsonantIndex(5)).toBe(6)\n    expect(token.nextConsonantIndex(99)).toBe(6)\n    expect(token.nextConsonantIndex(-1)).toBe(6)\n  })\n\n  it('should mark regions', function () {\n    const token = new Token('tester')\n\n    token.markRegion('test', 1)\n    expect(token.regions.test).toBe(1)\n  })\n\n  it('should mark regions with a callback', function () {\n    const token = new Token('tester')\n    const context = { value: 99 }\n\n    token.markRegion('test', 1, function (arg) { return arg })\n    expect(token.regions.test).toBe(1)\n\n    token.markRegion('test', [1], function (arg) { return arg })\n    expect(token.regions.test).toBe(1)\n\n    token.markRegion('test', [1, 1], function (a1, a2) { return a1 + a2 })\n    expect(token.regions.test).toBe(2)\n\n    token.markRegion('test', null, function (this: Token) {\n      return this.string.length\n    })\n    expect(token.regions.test).toBe(6)\n\n    token.markRegion('test', null, function (this: any) { return this.value }, context)\n    expect(token.regions.test).toBe(99)\n  })\n\n  it('should check for suffixes', function () {\n    const token = new Token('tester')\n\n    expect(token.hasSuffix('er')).toBeTruthy()\n    expect(token.hasSuffix('st')).toBeFalsy()\n  })\n\n  it('should check for suffixes within a region', function () {\n    const token = new Token('tester').markRegion('region', 2)\n\n    expect(token.hasSuffixInRegion('st', 'region')).toBe(false)\n    expect(token.hasSuffixInRegion('ster', 'region')).toBe(true)\n    expect(token.hasSuffixInRegion('ester', 'region')).toBe(false)\n  })\n\n  it('should replace the suffix within a region', function () {\n    const t1 = new Token('tester').markRegion('region', 4)\n    const t2 = new Token('tester').markRegion('region', 0)\n\n    t1.replaceSuffixInRegion('ter', '<s>', 'region')\n    expect(t1.string).toBe('tester')\n\n    t1.replaceSuffixInRegion('er', '<s>', 'region')\n    expect(t1.string).toBe('test<s>')\n\n    t2.replaceSuffixInRegion('protester', '<s>', 'region')\n    expect(t2.string).toBe('tester')\n  })\n})\n"
  },
  {
    "path": "spec/support/count_tests.js",
    "content": "const fs = require('fs')\nconst path = require('path')\n\nfunction countTests (filePath) {\n  const fileContent = fs.readFileSync(filePath, 'utf8')\n  // const itRegex = /it\\((.*?)\\)/g\n  // const describeRegex = /describe\\((.*?)\\)/g\n  const expectRegex = /expect\\((.*?)\\)/g\n  // const itCount = (fileContent.match(itRegex) || []).length\n  // const describeCount = (fileContent.match(describeRegex) || []).length\n  const expectCount = (fileContent.match(expectRegex) || []).length\n  return expectCount\n}\n\nfunction countTestsInSpecFiles (specFilesPath, extension) {\n  const specFiles = fs.readdirSync(specFilesPath)\n  const testCounts = {}\n\n  specFiles.forEach(file => {\n    const filePath = path.join(specFilesPath, file)\n    const stats = fs.statSync(filePath)\n\n    if (stats.isFile() && path.extname(file) === extension) {\n      const parsedPath = path.parse(file)\n      const filenameWithoutExtension = parsedPath.name\n      const testCount = countTests(filePath)\n      testCounts[filenameWithoutExtension] = testCount\n    }\n  })\n  return testCounts\n}\n\nconst specFilesPath = path.resolve(__dirname, '..')\nconsole.log(specFilesPath)\nconst testCountsJs = countTestsInSpecFiles(specFilesPath, '.ts')\nconsole.log(testCountsJs)\n"
  },
  {
    "path": "spec/support/jasmine.json",
    "content": "{\n  \"spec_dir\": \"spec\",\n  \"spec_files\": [\n    \"**/*[sS]pec.js\"\n  ],\n  \"helpers\": [],\n  \"stopSpecOnExpectationFailure\": false,\n  \"random\": false,\n  \"forbidDuplicateNames\": false\n}\n"
  },
  {
    "path": "spec/test_data/ConvertSnowballDict.js",
    "content": "/*\nCopyright (c) 2023, Hugo W.L. ter Doest\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n// Converts a diff file from snowball.tartarus.org to a JSON file\n\nconst fs = require('fs')\nconst filenameIn = './snowball-de-diffs.txt'\nconst dict = {}\nconst filenameOut = './snowball_de.json'\n\nfs.readFile(filenameIn, 'utf8', function (err, data) {\n  if (err) {\n    console.log(err)\n  } else {\n    console.log('Raw data read from ' + filenameIn)\n    const lines = data.split(/[\\r\\n]+/)\n    lines.forEach(line => {\n      const pair = line.split(/\\s+/)\n      dict[pair[0]] = pair[1]\n    })\n  }\n  fs.writeFile(filenameOut, JSON.stringify(dict, null, 2), null, function (err) {\n    if (err) {\n      console.log(err)\n    } else {\n      console.log('Dictionary written to ' + filenameOut)\n    }\n  })\n})\n"
  },
  {
    "path": "spec/test_data/NYT-20150205-picassos-granddaughter-plans-to-sell-art-worrying-the-market.json",
    "content": "{\n  \"sentences\": [\n    \"MARSEILLE, France\",\n    \"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.\",\n    \"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. \",\n    \"Through 15 years of therapy, she dissected bitter family memories of her grandfather’s perceived indifference and her brother’s suicide. \",\n    \"In her 2001 memoir, “Picasso: My Grandfather,” she bared her pain and anger at the Picasso clan.\",\n    \"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.\",\n    \"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. \",\n    \"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.\",\n    \"Ms. Picasso has been regularly selling her grandfather’s works for years to support herself and her charities.\",\n    \"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.\",\n    \"But her decision to sell them on her own suggests a more aggressive effort to purge herself of her legacy. \",\n    \"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.\",\n    \"“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. \",\n    \"“I have paintings, of course, that I can use to support these projects.”\",\n    \"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. \",\n    \"That is leading to speculation that she could flood the market and depress prices. \",\n    \"“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. \",\n    \"“I’ve been asked by odd people who tell me, ‘We are in on a great deal, and Marina is selling all her stuff.’ ”\",\n    \"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. \",\n    \"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.\",\n    \"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. \",\n    \"But she knows which piece she will sell first: “La Famille,” a 1935 portrait of a family surrounded by an arid landscape.\",\n    \"“It’s symbolic because I was born in a great family, but it was a family that was not a family,” Ms. Picasso said. \",\n    \"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. \",\n    \"Ms. Picasso is the daughter of Picasso’s son Paulo, and she has long kept her distance from the rest of the family. \",\n    \"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.\",\n    \"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.” \",\n    \"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.\",\n    \"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.\",\n    \"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.\",\n    \"Ms. Picasso said that she had no photos of herself with her grandfather and had none of his works until she received her inheritance. \",\n    \"She recalled that he would fashion flowers out of paper for her, but she was never allowed to keep the trinkets.\",\n    \"Her father, Paulo, was the son of Picasso and his first wife, Olga Khokhlova, a Russian ballerina. \",\n    \"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.\",\n    \"Her mother, Emiliénne, split from her father after a brief marriage and struggled with alcoholism. \",\n    \"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. \",\n    \"“I didn’t have a grandfather.”\",\n    \"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. \",\n    \"A few days later her brother committed suicide by drinking bleach. \",\n    \"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.\",\n    \"Picasso left no will when he died at 91, setting off a bitter struggle among his widow, children and grandchildren. \",\n    \"Unexpectedly, Marina Picasso was named an heir and inherited a fifth of the estate, including the villa.\",\n    \"“People say I should appreciate my inheritance and I do,” Ms. Picasso said, “but it is an inheritance without love.”\",\n    \"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. \",\n    \"“I think because of it I developed my sense of humanity and my desire to help others.”\",\n    \"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. \",\n    \"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.\",\n    \"“We need to be honest,” he said. \",\n    \"“Pablo Picasso was not the cause of all of this. Her mother had exclusive custody. \",\n    \"Picasso didn’t want to give money to her mother because he worried she wouldn’t spend it on the children. \",\n    \"So he paid directly for their schooling.”\",\n    \"He said he was surprised to learn about Ms. Picasso’s sales approach. \",\n    \"“All the heirs have always worked with major dealers, like Picasso did in his life,” he said. \",\n    \"“They know the market and the buyers and work to avoid any bad moves.”\",\n    \"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.\",\n    \"Ms. Picasso has not publicly disclosed what she is hoping to earn.\",\n    \"“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.\",\n    \"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. \",\n    \"In just the last year, she has donated 1.5 million euros, roughly $1.7 million, to the Hospital Foundation of Paris and France. \",\n    \"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.\",\n    \"“I live now in the present,” she said. \",\n    \"“The past rests in the past. \",\n    \"But I will never forget, never. \",\n    \"I respect my grandfather and his stature as an artist. \",\n    \"I was his grandchild and his heir, but never the grandchild of his heart.”\",\n    \"Correction: February 4, 2015\",\n    \"An earlier version of this article included an erroneous reference to Marina Picasso's marital status. \",\n    \"She has never married, thus it is not the case that she is divorced.\"\n  ]\n}"
  },
  {
    "path": "spec/test_data/NYT-20150205-picassos-granddaughter-plans_expected_tag_results.json",
    "content": "{\n  \"results\":\n    [\n      [\n        [\n          \"MARSEILLE\",\n          \"NN\"\n        ],\n        [\n          \"France\",\n          \"NNP\"\n        ]\n      ],\n      [\n        [\n          \"Since\",\n          \"IN\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"child\",\n          \"NN\"\n        ],\n        [\n          \"living\",\n          \"VBG\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"edge\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"poverty\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"lingering\",\n          \"VBG\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"gates\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"French\",\n          \"JJ\"\n        ],\n        [\n          \"villa\",\n          \"NN\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"father\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"plead\",\n          \"VB\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"allowance\",\n          \"NN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"Pablo\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"struggled\",\n          \"VBD\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"burden\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"artist\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"towering\",\n          \"JJ\"\n        ],\n        [\n          \"legacy\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"When\",\n          \"WRB\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"20s\",\n          \"CD\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"inherited\",\n          \"VBN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"19th\",\n          \"CD\"\n        ],\n        [\n          \"century\",\n          \"NN\"\n        ],\n        [\n          \"villa\",\n          \"NN\"\n        ],\n        [\n          \"La\",\n          \"NNP\"\n        ],\n        [\n          \"Californie\",\n          \"NN\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"well\",\n          \"RB\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"vast\",\n          \"JJ\"\n        ],\n        [\n          \"trove\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"treasures\",\n          \"NNS\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"turned\",\n          \"VBD\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"paintings\",\n          \"NNS\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"face\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"walls\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"resentment\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Through\",\n          \"IN\"\n        ],\n        [\n          \"15\",\n          \"CD\"\n        ],\n        [\n          \"years\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"therapy\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"dissected\",\n          \"VBD\"\n        ],\n        [\n          \"bitter\",\n          \"JJ\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"memories\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"perceived\",\n          \"VBN\"\n        ],\n        [\n          \"indifference\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"brother\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"suicide\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"In\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"2001\",\n          \"CD\"\n        ],\n        [\n          \"memoir\",\n          \"NN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"My\",\n          \"PRP$\"\n        ],\n        [\n          \"Grandfather\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"bared\",\n          \"VBD\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"pain\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"anger\",\n          \"NN\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"clan\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Now\",\n          \"RB\"\n        ],\n        [\n          \"64\",\n          \"CD\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"acknowledges\",\n          \"VBZ\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"expanding\",\n          \"VBG\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"rebellion\",\n          \"NN\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"preparing\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"off\",\n          \"IN\"\n        ],\n        [\n          \"many\",\n          \"JJ\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"artworks\",\n          \"NNS\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"finance\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"broaden\",\n          \"VB\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"philanthropy\",\n          \"NN\"\n        ],\n        [\n          \"aid\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"pediatric\",\n          \"JJ\"\n        ],\n        [\n          \"hospital\",\n          \"JJ\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"Vietnam\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"projects\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"France\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"Switzerland\",\n          \"NNP\"\n        ],\n        [\n          \"benefiting\",\n          \"VBG\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"elderly\",\n          \"RB\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"troubled\",\n          \"JJ\"\n        ],\n        [\n          \"teenagers\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"And\",\n          \"CC\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"unconventional\",\n          \"JJ\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"approach\",\n          \"NN\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"reverberating\",\n          \"VBG\"\n        ],\n        [\n          \"through\",\n          \"IN\"\n        ],\n        [\n          \"international\",\n          \"JJ\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"markets\",\n          \"NNS\"\n        ],\n        [\n          \"worrying\",\n          \"VBG\"\n        ],\n        [\n          \"dealers\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"auctioneers\",\n          \"NNS\"\n        ],\n        [\n          \"accustomed\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"playing\",\n          \"VBG\"\n        ],\n        [\n          \"key\",\n          \"JJ\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"lucrative\",\n          \"JJ\"\n        ],\n        [\n          \"roles\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"sale\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"renowned\",\n          \"JJ\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"In\",\n          \"IN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"interview\",\n          \"NN\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"would\",\n          \"MD\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"privately\",\n          \"RB\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"would\",\n          \"MD\"\n        ],\n        [\n          \"judge\",\n          \"VB\"\n        ],\n        [\n          \"one\",\n          \"NN\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"one\",\n          \"NN\"\n        ],\n        [\n          \"based\",\n          \"VBN\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"need\",\n          \"VBN\"\n        ],\n        [\n          \"how\",\n          \"WRB\"\n        ],\n        [\n          \"many\",\n          \"JJ\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"which\",\n          \"WDT\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"remaining\",\n          \"VBG\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"about\",\n          \"IN\"\n        ],\n        [\n          \"10\",\n          \"CD\"\n        ],\n        [\n          \"000\",\n          \"CD\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"inherited\",\n          \"VBN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"would\",\n          \"MD\"\n        ],\n        [\n          \"put\",\n          \"VB\"\n        ],\n        [\n          \"up\",\n          \"IN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"sale\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"been\",\n          \"VBN\"\n        ],\n        [\n          \"regularly\",\n          \"RB\"\n        ],\n        [\n          \"selling\",\n          \"VBG\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"years\",\n          \"NNS\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"support\",\n          \"NN\"\n        ],\n        [\n          \"herself\",\n          \"PRP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"charities\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"And\",\n          \"CC\"\n        ],\n        [\n          \"since\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"death\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"longtime\",\n          \"JJ\"\n        ],\n        [\n          \"dealer\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"2008\",\n          \"CD\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"tried\",\n          \"VBD\"\n        ],\n        [\n          \"various\",\n          \"JJ\"\n        ],\n        [\n          \"strategies\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"market\",\n          \"NN\"\n        ],\n        [\n          \"auctioning\",\n          \"VBG\"\n        ],\n        [\n          \"two\",\n          \"NN\"\n        ],\n        [\n          \"major\",\n          \"JJ\"\n        ],\n        [\n          \"paintings\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"2013\",\n          \"CD\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"displaying\",\n          \"VBG\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"collection\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"nude\",\n          \"JJ\"\n        ],\n        [\n          \"drawings\",\n          \"NNS\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"Sotheby\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"Paris\",\n          \"NNP\"\n        ],\n        [\n          \"last\",\n          \"JJ\"\n        ],\n        [\n          \"year\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"But\",\n          \"CC\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"decision\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"them\",\n          \"PRP\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"own\",\n          \"JJ\"\n        ],\n        [\n          \"suggests\",\n          \"VBZ\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"more\",\n          \"JJR\"\n        ],\n        [\n          \"aggressive\",\n          \"JJ\"\n        ],\n        [\n          \"effort\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"purge\",\n          \"NN\"\n        ],\n        [\n          \"herself\",\n          \"PRP\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"legacy\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"And\",\n          \"CC\"\n        ],\n        [\n          \"while\",\n          \"IN\"\n        ],\n        [\n          \"other\",\n          \"JJ\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"heirs\",\n          \"NNS\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"occasionally\",\n          \"RB\"\n        ],\n        [\n          \"sold\",\n          \"VBN\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"only\",\n          \"RB\"\n        ],\n        [\n          \"one\",\n          \"NN\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"seems\",\n          \"VBZ\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"accelerating\",\n          \"VBG\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"sale\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"objects\",\n          \"NNS\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"Enrique\",\n          \"NNP\"\n        ],\n        [\n          \"Mallen\",\n          \"NN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"history\",\n          \"NN\"\n        ],\n        [\n          \"professor\",\n          \"NN\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"Sam\",\n          \"NNP\"\n        ],\n        [\n          \"Houston\",\n          \"NNP\"\n        ],\n        [\n          \"State\",\n          \"NNP\"\n        ],\n        [\n          \"University\",\n          \"NNP\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"Texas\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"created\",\n          \"VBN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"Online\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"Project\",\n          \"NNP\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"track\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"It\",\n          \"PRP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"better\",\n          \"JJR\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"me\",\n          \"PRP\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"preserve\",\n          \"VB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"money\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"redistribute\",\n          \"VB\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"humanitarian\",\n          \"JJ\"\n        ],\n        [\n          \"causes\",\n          \"NNS\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"speaking\",\n          \"VBG\"\n        ],\n        [\n          \"publicly\",\n          \"RB\"\n        ],\n        [\n          \"about\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"new\",\n          \"JJ\"\n        ],\n        [\n          \"strategy\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"first\",\n          \"NN\"\n        ],\n        [\n          \"time\",\n          \"NN\"\n        ],\n        [\n          \"while\",\n          \"IN\"\n        ],\n        [\n          \"inspecting\",\n          \"VBG\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"hospital\",\n          \"JJ\"\n        ],\n        [\n          \"site\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"Marseille\",\n          \"NN\"\n        ],\n        [\n          \"where\",\n          \"WRB\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"funding\",\n          \"VBG\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"psychiatric\",\n          \"JJ\"\n        ],\n        [\n          \"unit\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"teenagers\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"crisis\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"paintings\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"course\",\n          \"NN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"can\",\n          \"MD\"\n        ],\n        [\n          \"use\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"support\",\n          \"NN\"\n        ],\n        [\n          \"these\",\n          \"DT\"\n        ],\n        [\n          \"projects\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"The\",\n          \"DT\"\n        ],\n        [\n          \"news\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"unusual\",\n          \"JJ\"\n        ],\n        [\n          \"strategy\",\n          \"NN\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"spreading\",\n          \"VBG\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"select\",\n          \"VB\"\n        ],\n        [\n          \"circles\",\n          \"NNS\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"word\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"mouth\",\n          \"NN\"\n        ],\n        [\n          \"generating\",\n          \"VBG\"\n        ],\n        [\n          \"rumors\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"misinformation\",\n          \"NN\"\n        ],\n        [\n          \"including\",\n          \"VBG\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"recent\",\n          \"JJ\"\n        ],\n        [\n          \"tabloid\",\n          \"NN\"\n        ],\n        [\n          \"report\",\n          \"NN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"planned\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"off\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"villa\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"seven\",\n          \"NN\"\n        ],\n        [\n          \"major\",\n          \"JJ\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"That\",\n          \"DT\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"leading\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"speculation\",\n          \"NN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"could\",\n          \"MD\"\n        ],\n        [\n          \"flood\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"market\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"depress\",\n          \"VB\"\n        ],\n        [\n          \"prices\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Instead\",\n          \"RB\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"having\",\n          \"VBG\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"dealer\",\n          \"NN\"\n        ],\n        [\n          \"show\",\n          \"NN\"\n        ],\n        [\n          \"them\",\n          \"PRP\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"been\",\n          \"VBN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"open\",\n          \"JJ\"\n        ],\n        [\n          \"secret\",\n          \"JJ\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"there\",\n          \"EX\"\n        ],\n        [\n          \"are\",\n          \"VBP\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"sale\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"people\",\n          \"NNS\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"been\",\n          \"VBN\"\n        ],\n        [\n          \"asking\",\n          \"VBG\"\n        ],\n        [\n          \"other\",\n          \"JJ\"\n        ],\n        [\n          \"people\",\n          \"NNS\"\n        ],\n        [\n          \"if\",\n          \"IN\"\n        ],\n        [\n          \"they\",\n          \"PRP\"\n        ],\n        [\n          \"would\",\n          \"MD\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"interested\",\n          \"JJ\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"John\",\n          \"NNP\"\n        ],\n        [\n          \"Richardson\",\n          \"NNP\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"historian\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"biographer\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"New\",\n          \"NNP\"\n        ],\n        [\n          \"York\",\n          \"NNP\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"ve\",\n          \"NN\"\n        ],\n        [\n          \"been\",\n          \"VBN\"\n        ],\n        [\n          \"asked\",\n          \"VBD\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"odd\",\n          \"JJ\"\n        ],\n        [\n          \"people\",\n          \"NNS\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"tell\",\n          \"VB\"\n        ],\n        [\n          \"me\",\n          \"PRP\"\n        ],\n        [\n          \"We\",\n          \"PRP\"\n        ],\n        [\n          \"are\",\n          \"VBP\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"great\",\n          \"JJ\"\n        ],\n        [\n          \"deal\",\n          \"JJ\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"selling\",\n          \"VBG\"\n        ],\n        [\n          \"all\",\n          \"DT\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"stuff\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"While\",\n          \"IN\"\n        ],\n        [\n          \"bypassing\",\n          \"VBG\"\n        ],\n        [\n          \"dealers\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"auction\",\n          \"NN\"\n        ],\n        [\n          \"houses\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"sale\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"major\",\n          \"JJ\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"unusual\",\n          \"JJ\"\n        ],\n        [\n          \"sellers\",\n          \"NNS\"\n        ],\n        [\n          \"going\",\n          \"VBG\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"alone\",\n          \"RB\"\n        ],\n        [\n          \"can\",\n          \"MD\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"disadvantage\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"trying\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"estimate\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"value\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"their\",\n          \"PRP$\"\n        ],\n        [\n          \"own\",\n          \"JJ\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"vet\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"buyers\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"their\",\n          \"PRP$\"\n        ],\n        [\n          \"source\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"funds\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"At\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"same\",\n          \"JJ\"\n        ],\n        [\n          \"time\",\n          \"NN\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"some\",\n          \"DT\"\n        ],\n        [\n          \"auction\",\n          \"NN\"\n        ],\n        [\n          \"houses\",\n          \"NNS\"\n        ],\n        [\n          \"increasing\",\n          \"VBG\"\n        ],\n        [\n          \"their\",\n          \"PRP$\"\n        ],\n        [\n          \"fees\",\n          \"NNS\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"can\",\n          \"MD\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"smart\",\n          \"JJ\"\n        ],\n        [\n          \"move\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"end\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"seller\",\n          \"NN\"\n        ],\n        [\n          \"eager\",\n          \"JJ\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"make\",\n          \"VB\"\n        ],\n        [\n          \"more\",\n          \"JJR\"\n        ],\n        [\n          \"money\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"inherited\",\n          \"VBN\"\n        ],\n        [\n          \"about\",\n          \"IN\"\n        ],\n        [\n          \"300\",\n          \"CD\"\n        ],\n        [\n          \"paintings\",\n          \"NNS\"\n        ],\n        [\n          \"among\",\n          \"IN\"\n        ],\n        [\n          \"those\",\n          \"DT\"\n        ],\n        [\n          \"10\",\n          \"CD\"\n        ],\n        [\n          \"000\",\n          \"CD\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"artworks\",\n          \"NNS\"\n        ],\n        [\n          \"ceramics\",\n          \"NNS\"\n        ],\n        [\n          \"drawings\",\n          \"NNS\"\n        ],\n        [\n          \"etchings\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"sculptures\",\n          \"NNS\"\n        ],\n        [\n          \"are\",\n          \"VBP\"\n        ],\n        [\n          \"among\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"others\",\n          \"NNS\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"decided\",\n          \"VBD\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"number\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"sold\",\n          \"VBN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"no\",\n          \"DT\"\n        ],\n        [\n          \"plan\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"put\",\n          \"VB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"villa\",\n          \"NN\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"market\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"But\",\n          \"CC\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"knows\",\n          \"VBZ\"\n        ],\n        [\n          \"which\",\n          \"WDT\"\n        ],\n        [\n          \"piece\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"will\",\n          \"MD\"\n        ],\n        [\n          \"sell\",\n          \"VB\"\n        ],\n        [\n          \"first\",\n          \"NN\"\n        ],\n        [\n          \"La\",\n          \"NNP\"\n        ],\n        [\n          \"Famille\",\n          \"FW\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"1935\",\n          \"CD\"\n        ],\n        [\n          \"portrait\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"surrounded\",\n          \"VBN\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"arid\",\n          \"JJ\"\n        ],\n        [\n          \"landscape\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"It\",\n          \"PRP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"symbolic\",\n          \"JJ\"\n        ],\n        [\n          \"because\",\n          \"IN\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"born\",\n          \"VBN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"great\",\n          \"JJ\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"By\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"time\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"death\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"1973\",\n          \"CD\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"created\",\n          \"VBN\"\n        ],\n        [\n          \"some\",\n          \"DT\"\n        ],\n        [\n          \"50\",\n          \"CD\"\n        ],\n        [\n          \"000\",\n          \"CD\"\n        ],\n        [\n          \"artworks\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"left\",\n          \"VBN\"\n        ],\n        [\n          \"behind\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"tangled\",\n          \"JJ\"\n        ],\n        [\n          \"brood\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"four\",\n          \"NN\"\n        ],\n        [\n          \"children\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"eight\",\n          \"NN\"\n        ],\n        [\n          \"grandchildren\",\n          \"NNS\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"well\",\n          \"RB\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"wives\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"muses\",\n          \"VBZ\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"long\",\n          \"JJ\"\n        ],\n        [\n          \"running\",\n          \"VBG\"\n        ],\n        [\n          \"battle\",\n          \"NN\"\n        ],\n        [\n          \"over\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"estate\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"legacy\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"daughter\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"son\",\n          \"NN\"\n        ],\n        [\n          \"Paulo\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"long\",\n          \"JJ\"\n        ],\n        [\n          \"kept\",\n          \"VBD\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"distance\",\n          \"NN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"rest\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ]\n      ],\n      [\n        [\n          \"For\",\n          \"IN\"\n        ],\n        [\n          \"years\",\n          \"NNS\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"guided\",\n          \"VBN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"Jan\",\n          \"NNP\"\n        ],\n        [\n          \"Krugier\",\n          \"NN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"Swiss\",\n          \"JJ\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"dealer\",\n          \"NN\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"curated\",\n          \"VBN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"sold\",\n          \"VBN\"\n        ],\n        [\n          \"off\",\n          \"IN\"\n        ],\n        [\n          \"many\",\n          \"JJ\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"best\",\n          \"JJS\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"collection\",\n          \"NN\"\n        ],\n        [\n          \"until\",\n          \"IN\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"died\",\n          \"VBD\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"2008\",\n          \"CD\"\n        ]\n      ],\n      [\n        [\n          \"She\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"disappointed\",\n          \"VBN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"other\",\n          \"JJ\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"routes\",\n          \"NNS\"\n        ],\n        [\n          \"such\",\n          \"JJ\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"2013\",\n          \"CD\"\n        ],\n        [\n          \"Sotheby\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"auction\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"two\",\n          \"NN\"\n        ],\n        [\n          \"major\",\n          \"JJ\"\n        ],\n        [\n          \"paintings\",\n          \"NNS\"\n        ],\n        [\n          \"including\",\n          \"VBG\"\n        ],\n        [\n          \"Femme\",\n          \"FW\"\n        ],\n        [\n          \"Assise\",\n          \"NN\"\n        ],\n        [\n          \"en\",\n          \"IN\"\n        ],\n        [\n          \"Robe\",\n          \"NN\"\n        ],\n        [\n          \"Grise\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"The\",\n          \"DT\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"drew\",\n          \"VBD\"\n        ],\n        [\n          \"6\",\n          \"CD\"\n        ],\n        [\n          \"8\",\n          \"CD\"\n        ],\n        [\n          \"million\",\n          \"NN\"\n        ],\n        [\n          \"according\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"Sotheby\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"Paris\",\n          \"NNP\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"expected\",\n          \"VBN\"\n        ],\n        [\n          \"more\",\n          \"JJR\"\n        ],\n        [\n          \"because\",\n          \"IN\"\n        ],\n        [\n          \"buyers\",\n          \"NNS\"\n        ],\n        [\n          \"knew\",\n          \"VBD\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"money\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"going\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"support\",\n          \"NN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"charities\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Her\",\n          \"PRP$\"\n        ],\n        [\n          \"timing\",\n          \"VBG\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"good\",\n          \"JJ\"\n        ],\n        [\n          \"Last\",\n          \"JJ\"\n        ],\n        [\n          \"year\",\n          \"NN\"\n        ],\n        [\n          \"auction\",\n          \"NN\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picassos\",\n          \"NNPS\"\n        ],\n        [\n          \"were\",\n          \"VBD\"\n        ],\n        [\n          \"second\",\n          \"NN\"\n        ],\n        [\n          \"only\",\n          \"RB\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"those\",\n          \"DT\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Andy\",\n          \"NNP\"\n        ],\n        [\n          \"Warhol\",\n          \"NNP\"\n        ],\n        [\n          \"449\",\n          \"CD\"\n        ],\n        [\n          \"million\",\n          \"NN\"\n        ],\n        [\n          \"last\",\n          \"JJ\"\n        ],\n        [\n          \"year\",\n          \"NN\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"16\",\n          \"CD\"\n        ],\n        [\n          \"1\",\n          \"CD\"\n        ],\n        [\n          \"billion\",\n          \"NN\"\n        ],\n        [\n          \"international\",\n          \"JJ\"\n        ],\n        [\n          \"market\",\n          \"NN\"\n        ],\n        [\n          \"according\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"Artnet\",\n          \"NN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"New\",\n          \"NNP\"\n        ],\n        [\n          \"York\",\n          \"NNP\"\n        ],\n        [\n          \"based\",\n          \"VBN\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"researcher\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"But\",\n          \"CC\"\n        ],\n        [\n          \"while\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"will\",\n          \"MD\"\n        ],\n        [\n          \"broaden\",\n          \"VB\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"philanthropy\",\n          \"NN\"\n        ],\n        [\n          \"they\",\n          \"PRP\"\n        ],\n        [\n          \"will\",\n          \"MD\"\n        ],\n        [\n          \"also\",\n          \"RB\"\n        ],\n        [\n          \"help\",\n          \"VB\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"move\",\n          \"NN\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"burden\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"family\",\n          \"RB\"\n        ],\n        [\n          \"history\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"no\",\n          \"DT\"\n        ],\n        [\n          \"photos\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"herself\",\n          \"PRP\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"none\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"works\",\n          \"NNS\"\n        ],\n        [\n          \"until\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"received\",\n          \"VBD\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"inheritance\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"She\",\n          \"PRP\"\n        ],\n        [\n          \"recalled\",\n          \"VBD\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"would\",\n          \"MD\"\n        ],\n        [\n          \"fashion\",\n          \"VB\"\n        ],\n        [\n          \"flowers\",\n          \"NNS\"\n        ],\n        [\n          \"out\",\n          \"IN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"paper\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"never\",\n          \"RB\"\n        ],\n        [\n          \"allowed\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"keep\",\n          \"VB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"trinkets\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Her\",\n          \"PRP$\"\n        ],\n        [\n          \"father\",\n          \"NN\"\n        ],\n        [\n          \"Paulo\",\n          \"NNP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"son\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"first\",\n          \"NN\"\n        ],\n        [\n          \"wife\",\n          \"NN\"\n        ],\n        [\n          \"Olga\",\n          \"NNP\"\n        ],\n        [\n          \"Khokhlova\",\n          \"NN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"Russian\",\n          \"NNP\"\n        ],\n        [\n          \"ballerina\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"still\",\n          \"RB\"\n        ],\n        [\n          \"suffered\",\n          \"VBD\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"memories\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Paulo\",\n          \"NNP\"\n        ],\n        [\n          \"serving\",\n          \"VBG\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"chauffeur\",\n          \"NN\"\n        ],\n        [\n          \"among\",\n          \"IN\"\n        ],\n        [\n          \"other\",\n          \"JJ\"\n        ],\n        [\n          \"lowly\",\n          \"RB\"\n        ],\n        [\n          \"roles\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"begging\",\n          \"VBG\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"money\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Her\",\n          \"PRP$\"\n        ],\n        [\n          \"mother\",\n          \"NN\"\n        ],\n        [\n          \"Emili\",\n          \"NN\"\n        ],\n        [\n          \"nne\",\n          \"NN\"\n        ],\n        [\n          \"split\",\n          \"NN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"father\",\n          \"NN\"\n        ],\n        [\n          \"after\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"brief\",\n          \"JJ\"\n        ],\n        [\n          \"marriage\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"struggled\",\n          \"VBD\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"alcoholism\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"She\",\n          \"PRP\"\n        ],\n        [\n          \"relied\",\n          \"VBN\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"handouts\",\n          \"NNS\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"ex\",\n          \"FW\"\n        ],\n        [\n          \"husband\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"raise\",\n          \"VB\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"older\",\n          \"JJR\"\n        ],\n        [\n          \"brother\",\n          \"NN\"\n        ],\n        [\n          \"Pablito\",\n          \"NN\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"saw\",\n          \"VBD\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"father\",\n          \"NN\"\n        ],\n        [\n          \"very\",\n          \"RB\"\n        ],\n        [\n          \"little\",\n          \"JJ\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"didn\",\n          \"VBD\"\n        ],\n        [\n          \"t\",\n          \"NN\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Her\",\n          \"PRP$\"\n        ],\n        [\n          \"alienation\",\n          \"NN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"entourage\",\n          \"NN\"\n        ],\n        [\n          \"intensified\",\n          \"VBN\"\n        ],\n        [\n          \"after\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"brother\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"barred\",\n          \"VBN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"funeral\",\n          \"JJ\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"1973\",\n          \"CD\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"artist\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"second\",\n          \"NN\"\n        ],\n        [\n          \"wife\",\n          \"NN\"\n        ],\n        [\n          \"Jacqueline\",\n          \"NNP\"\n        ],\n        [\n          \"Roque\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"A\",\n          \"DT\"\n        ],\n        [\n          \"few\",\n          \"JJ\"\n        ],\n        [\n          \"days\",\n          \"NNS\"\n        ],\n        [\n          \"later\",\n          \"RB\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"brother\",\n          \"NN\"\n        ],\n        [\n          \"committed\",\n          \"VBN\"\n        ],\n        [\n          \"suicide\",\n          \"NN\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"drinking\",\n          \"VBG\"\n        ],\n        [\n          \"bleach\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Contributions\",\n          \"NNS\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"friends\",\n          \"NNS\"\n        ],\n        [\n          \"paid\",\n          \"VBN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"Pablito\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"funeral\",\n          \"JJ\"\n        ],\n        [\n          \"according\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"supported\",\n          \"VBN\"\n        ],\n        [\n          \"herself\",\n          \"PRP\"\n        ],\n        [\n          \"then\",\n          \"RB\"\n        ],\n        [\n          \"by\",\n          \"IN\"\n        ],\n        [\n          \"working\",\n          \"VBG\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"hospice\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"autistic\",\n          \"JJ\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"mentally\",\n          \"RB\"\n        ],\n        [\n          \"ill\",\n          \"JJ\"\n        ],\n        [\n          \"children\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"left\",\n          \"VBN\"\n        ],\n        [\n          \"no\",\n          \"DT\"\n        ],\n        [\n          \"will\",\n          \"MD\"\n        ],\n        [\n          \"when\",\n          \"WRB\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"died\",\n          \"VBD\"\n        ],\n        [\n          \"at\",\n          \"IN\"\n        ],\n        [\n          \"91\",\n          \"CD\"\n        ],\n        [\n          \"setting\",\n          \"VBG\"\n        ],\n        [\n          \"off\",\n          \"IN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"bitter\",\n          \"JJ\"\n        ],\n        [\n          \"struggle\",\n          \"NN\"\n        ],\n        [\n          \"among\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"widow\",\n          \"NN\"\n        ],\n        [\n          \"children\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"grandchildren\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Unexpectedly\",\n          \"RB\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"named\",\n          \"VBN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"heir\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"inherited\",\n          \"VBN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"fifth\",\n          \"JJ\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"estate\",\n          \"NN\"\n        ],\n        [\n          \"including\",\n          \"VBG\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"villa\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"People\",\n          \"NNS\"\n        ],\n        [\n          \"say\",\n          \"VBP\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"should\",\n          \"MD\"\n        ],\n        [\n          \"appreciate\",\n          \"VB\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"inheritance\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"do\",\n          \"VBP\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"inheritance\",\n          \"NN\"\n        ],\n        [\n          \"without\",\n          \"IN\"\n        ],\n        [\n          \"love\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"In\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"end\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"learned\",\n          \"VBD\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"past\",\n          \"JJ\"\n        ],\n        [\n          \"It\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"really\",\n          \"RB\"\n        ],\n        [\n          \"difficult\",\n          \"JJ\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"carry\",\n          \"VB\"\n        ],\n        [\n          \"this\",\n          \"DT\"\n        ],\n        [\n          \"celebrated\",\n          \"VBN\"\n        ],\n        [\n          \"name\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"difficult\",\n          \"JJ\"\n        ],\n        [\n          \"financial\",\n          \"JJ\"\n        ],\n        [\n          \"life\",\n          \"NN\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"think\",\n          \"VBP\"\n        ],\n        [\n          \"because\",\n          \"IN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"developed\",\n          \"VBN\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"sense\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"humanity\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"desire\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"help\",\n          \"VB\"\n        ],\n        [\n          \"others\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Olivier\",\n          \"NNP\"\n        ],\n        [\n          \"Widmaier\",\n          \"NN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"grandson\",\n          \"NN\"\n        ],\n        [\n          \"descended\",\n          \"VBD\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"artist\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"mistress\",\n          \"NN\"\n        ],\n        [\n          \"Marie\",\n          \"NNP\"\n        ],\n        [\n          \"Th\",\n          \"DT\"\n        ],\n        [\n          \"r\",\n          \"NN\"\n        ],\n        [\n          \"se\",\n          \"FW\"\n        ],\n        [\n          \"Walter\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"published\",\n          \"VBN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"own\",\n          \"JJ\"\n        ],\n        [\n          \"biography\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"holds\",\n          \"VBZ\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"more\",\n          \"JJR\"\n        ],\n        [\n          \"benign\",\n          \"JJ\"\n        ],\n        [\n          \"view\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"legacy\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"As\",\n          \"IN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"whom\",\n          \"WP\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"tangled\",\n          \"JJ\"\n        ],\n        [\n          \"when\",\n          \"WRB\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"tried\",\n          \"VBD\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"brand\",\n          \"NN\"\n        ],\n        [\n          \"Citro\",\n          \"NN\"\n        ],\n        [\n          \"n\",\n          \"NN\"\n        ],\n        [\n          \"cars\",\n          \"NNS\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"name\",\n          \"NN\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"sympathizes\",\n          \"NN\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"pain\",\n          \"NN\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"thinks\",\n          \"VBZ\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"misplaced\",\n          \"VBN\"\n        ]\n      ],\n      [\n        [\n          \"We\",\n          \"PRP\"\n        ],\n        [\n          \"need\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"be\",\n          \"VB\"\n        ],\n        [\n          \"honest\",\n          \"JJ\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"Pablo\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"cause\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"all\",\n          \"DT\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"this\",\n          \"DT\"\n        ],\n        [\n          \"Her\",\n          \"PRP$\"\n        ],\n        [\n          \"mother\",\n          \"NN\"\n        ],\n        [\n          \"had\",\n          \"VBD\"\n        ],\n        [\n          \"exclusive\",\n          \"JJ\"\n        ],\n        [\n          \"custody\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"didn\",\n          \"VBD\"\n        ],\n        [\n          \"t\",\n          \"NN\"\n        ],\n        [\n          \"want\",\n          \"VBP\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"give\",\n          \"VB\"\n        ],\n        [\n          \"money\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"mother\",\n          \"NN\"\n        ],\n        [\n          \"because\",\n          \"IN\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"worried\",\n          \"VBN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"wouldn\",\n          \"NN\"\n        ],\n        [\n          \"t\",\n          \"NN\"\n        ],\n        [\n          \"spend\",\n          \"VB\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"on\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"children\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"So\",\n          \"RB\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"paid\",\n          \"VBN\"\n        ],\n        [\n          \"directly\",\n          \"RB\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"their\",\n          \"PRP$\"\n        ],\n        [\n          \"schooling\",\n          \"VBG\"\n        ]\n      ],\n      [\n        [\n          \"He\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"surprised\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"learn\",\n          \"VB\"\n        ],\n        [\n          \"about\",\n          \"IN\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"sales\",\n          \"NNS\"\n        ],\n        [\n          \"approach\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"All\",\n          \"DT\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"heirs\",\n          \"NNS\"\n        ],\n        [\n          \"have\",\n          \"VBP\"\n        ],\n        [\n          \"always\",\n          \"RB\"\n        ],\n        [\n          \"worked\",\n          \"VBD\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"major\",\n          \"JJ\"\n        ],\n        [\n          \"dealers\",\n          \"NNS\"\n        ],\n        [\n          \"like\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"did\",\n          \"VBD\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"life\",\n          \"NN\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"They\",\n          \"PRP\"\n        ],\n        [\n          \"know\",\n          \"VB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"market\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"buyers\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"work\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"avoid\",\n          \"VB\"\n        ],\n        [\n          \"any\",\n          \"DT\"\n        ],\n        [\n          \"bad\",\n          \"JJ\"\n        ],\n        [\n          \"moves\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"In\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"1970s\",\n          \"CD\"\n        ],\n        [\n          \"when\",\n          \"WRB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"estate\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"divided\",\n          \"VBN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"pay\",\n          \"VB\"\n        ],\n        [\n          \"off\",\n          \"IN\"\n        ],\n        [\n          \"taxes\",\n          \"NNS\"\n        ],\n        [\n          \"La\",\n          \"NNP\"\n        ],\n        [\n          \"Famille\",\n          \"FW\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"considered\",\n          \"VBN\"\n        ],\n        [\n          \"one\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"most\",\n          \"RBS\"\n        ],\n        [\n          \"valuable\",\n          \"JJ\"\n        ],\n        [\n          \"because\",\n          \"IN\"\n        ],\n        [\n          \"its\",\n          \"PRP$\"\n        ],\n        [\n          \"realistic\",\n          \"JJ\"\n        ],\n        [\n          \"style\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"so\",\n          \"RB\"\n        ],\n        [\n          \"unusual\",\n          \"JJ\"\n        ],\n        [\n          \"he\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"publicly\",\n          \"RB\"\n        ],\n        [\n          \"disclosed\",\n          \"VBN\"\n        ],\n        [\n          \"what\",\n          \"WP\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"hoping\",\n          \"VBG\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"earn\",\n          \"VB\"\n        ]\n      ],\n      [\n        [\n          \"The\",\n          \"DT\"\n        ],\n        [\n          \"scale\",\n          \"NN\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"enormous\",\n          \"JJ\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"obviously\",\n          \"RB\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"important\",\n          \"JJ\"\n        ],\n        [\n          \"work\",\n          \"NN\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"James\",\n          \"NNP\"\n        ],\n        [\n          \"Roundell\",\n          \"NN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"dealer\",\n          \"NN\"\n        ],\n        [\n          \"with\",\n          \"IN\"\n        ],\n        [\n          \"Simon\",\n          \"NNP\"\n        ],\n        [\n          \"Dickinson\",\n          \"NNP\"\n        ],\n        [\n          \"Fine\",\n          \"NNP\"\n        ],\n        [\n          \"Art\",\n          \"NNP\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"London\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"says\",\n          \"VBZ\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"worth\",\n          \"JJ\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"millions\",\n          \"NNS\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"dollars\",\n          \"NNS\"\n        ]\n      ],\n      [\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"who\",\n          \"WP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"five\",\n          \"NN\"\n        ],\n        [\n          \"children\",\n          \"NNS\"\n        ],\n        [\n          \"three\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"them\",\n          \"PRP\"\n        ],\n        [\n          \"adopted\",\n          \"VBN\"\n        ],\n        [\n          \"from\",\n          \"IN\"\n        ],\n        [\n          \"Vietnam\",\n          \"NNP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"selling\",\n          \"VBG\"\n        ],\n        [\n          \"more\",\n          \"JJR\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"art\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"expand\",\n          \"VB\"\n        ],\n        [\n          \"her\",\n          \"PRP$\"\n        ],\n        [\n          \"charities\",\n          \"NNS\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"fitting\",\n          \"JJ\"\n        ],\n        [\n          \"use\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"In\",\n          \"IN\"\n        ],\n        [\n          \"just\",\n          \"RB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"last\",\n          \"JJ\"\n        ],\n        [\n          \"year\",\n          \"NN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"donated\",\n          \"VBN\"\n        ],\n        [\n          \"1\",\n          \"CD\"\n        ],\n        [\n          \"5\",\n          \"CD\"\n        ],\n        [\n          \"million\",\n          \"NN\"\n        ],\n        [\n          \"euros\",\n          \"NNS\"\n        ],\n        [\n          \"roughly\",\n          \"RB\"\n        ],\n        [\n          \"1\",\n          \"CD\"\n        ],\n        [\n          \"7\",\n          \"CD\"\n        ],\n        [\n          \"million\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"Hospital\",\n          \"NNP\"\n        ],\n        [\n          \"Foundation\",\n          \"NNP\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"Paris\",\n          \"NNP\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"France\",\n          \"NNP\"\n        ]\n      ],\n      [\n        [\n          \"Some\",\n          \"DT\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"went\",\n          \"VBD\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"psychiatric\",\n          \"JJ\"\n        ],\n        [\n          \"emergency\",\n          \"NN\"\n        ],\n        [\n          \"unit\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"teenagers\",\n          \"NNS\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"Ms\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"also\",\n          \"RB\"\n        ],\n        [\n          \"financed\",\n          \"VBN\"\n        ],\n        [\n          \"a\",\n          \"DT\"\n        ],\n        [\n          \"project\",\n          \"NN\"\n        ],\n        [\n          \"for\",\n          \"IN\"\n        ],\n        [\n          \"elderly\",\n          \"RB\"\n        ],\n        [\n          \"patients\",\n          \"NNS\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"long\",\n          \"JJ\"\n        ],\n        [\n          \"term\",\n          \"NN\"\n        ],\n        [\n          \"hospital\",\n          \"JJ\"\n        ],\n        [\n          \"care\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"live\",\n          \"VB\"\n        ],\n        [\n          \"now\",\n          \"RB\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"present\",\n          \"JJ\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"said\",\n          \"VBD\"\n        ]\n      ],\n      [\n        [\n          \"The\",\n          \"DT\"\n        ],\n        [\n          \"past\",\n          \"JJ\"\n        ],\n        [\n          \"rests\",\n          \"VBZ\"\n        ],\n        [\n          \"in\",\n          \"IN\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"past\",\n          \"JJ\"\n        ]\n      ],\n      [\n        [\n          \"But\",\n          \"CC\"\n        ],\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"will\",\n          \"MD\"\n        ],\n        [\n          \"never\",\n          \"RB\"\n        ],\n        [\n          \"forget\",\n          \"VB\"\n        ],\n        [\n          \"never\",\n          \"RB\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"respect\",\n          \"NN\"\n        ],\n        [\n          \"my\",\n          \"PRP$\"\n        ],\n        [\n          \"grandfather\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"stature\",\n          \"NN\"\n        ],\n        [\n          \"as\",\n          \"IN\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"artist\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"I\",\n          \"NN\"\n        ],\n        [\n          \"was\",\n          \"VBD\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"grandchild\",\n          \"NN\"\n        ],\n        [\n          \"and\",\n          \"CC\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"heir\",\n          \"NN\"\n        ],\n        [\n          \"but\",\n          \"CC\"\n        ],\n        [\n          \"never\",\n          \"RB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"grandchild\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"his\",\n          \"PRP$\"\n        ],\n        [\n          \"heart\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"Correction\",\n          \"NN\"\n        ],\n        [\n          \"February\",\n          \"NNP\"\n        ],\n        [\n          \"4\",\n          \"CD\"\n        ],\n        [\n          \"2015\",\n          \"CD\"\n        ]\n      ],\n      [\n        [\n          \"An\",\n          \"DT\"\n        ],\n        [\n          \"earlier\",\n          \"RBR\"\n        ],\n        [\n          \"version\",\n          \"NN\"\n        ],\n        [\n          \"of\",\n          \"IN\"\n        ],\n        [\n          \"this\",\n          \"DT\"\n        ],\n        [\n          \"article\",\n          \"NN\"\n        ],\n        [\n          \"included\",\n          \"VBD\"\n        ],\n        [\n          \"an\",\n          \"DT\"\n        ],\n        [\n          \"erroneous\",\n          \"JJ\"\n        ],\n        [\n          \"reference\",\n          \"NN\"\n        ],\n        [\n          \"to\",\n          \"TO\"\n        ],\n        [\n          \"Marina\",\n          \"NNP\"\n        ],\n        [\n          \"Picasso\",\n          \"NNP\"\n        ],\n        [\n          \"s\",\n          \"PRP\"\n        ],\n        [\n          \"marital\",\n          \"JJ\"\n        ],\n        [\n          \"status\",\n          \"NN\"\n        ]\n      ],\n      [\n        [\n          \"She\",\n          \"PRP\"\n        ],\n        [\n          \"has\",\n          \"VBZ\"\n        ],\n        [\n          \"never\",\n          \"RB\"\n        ],\n        [\n          \"married\",\n          \"VBN\"\n        ],\n        [\n          \"thus\",\n          \"RB\"\n        ],\n        [\n          \"it\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"not\",\n          \"RB\"\n        ],\n        [\n          \"the\",\n          \"DT\"\n        ],\n        [\n          \"case\",\n          \"NN\"\n        ],\n        [\n          \"that\",\n          \"IN\"\n        ],\n        [\n          \"she\",\n          \"PRP\"\n        ],\n        [\n          \"is\",\n          \"VBZ\"\n        ],\n        [\n          \"divorced\",\n          \"VBN\"\n        ]\n      ]\n    ]\n}\n"
  },
  {
    "path": "spec/test_data/Volkskrant-20150205-Knot-geldpers-aanzetten-is-paardenmiddel-voor-half-procent-inflatie.json",
    "content": "{\n  \"sentences\": [\n    \"Knot: geldpers aanzetten is paardenmiddel voor half procent inflatie\",\n    \"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. \",\n    \"'Oftewel 50 basispunten, dat zijn heel dure basispunten', zei Knot donderdag in de Tweede Kamer.\",\n    \"Door: Robert Giebels 5 februari 2015, 21:55 Bron: ANP\",\n    \"De financiële specialisten onder de Kamerleden hadden Knot gevraagd uitleg te geven over het ECB-besluit van 22 januari. \",\n    \"De centrale bank van de eurozone gaat voor 60 miljard euro per maand staatsschulden opkopen. \",\n    \"Dat komt neer op het aanzetten van de geldpers om de inflatie en de economie aan te jagen.\",\n    \"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. \",\n    \"Vrij uitzonderlijk was dat Knot bekendmaakte een van de vijf tegenstemmers te zijn. \",\n    \"Hij vindt de zogenoemde kwantitatieve verruiming noodzakelijk noch effectief.\",\n    \"Maar, zei Knot gisteren tot de Kamer, dat besluit is een gegeven. \",\n    \"'Nu gaan bespreken of het een goed of slecht besluit was, is mosterd na de maaltijd.' \",\n    \"In het vervolg van zijn betoog kon Knot zich evenwel niet losmaken van zijn weerzin ertegen.\",\n    \"De DNB-president maakte duidelijk dat het op grote schaal aanzetten van de geldpers vooral een sprong in het diepe is. \",\n    \"'Het is geen flauwekul, maar het is ook niet de silver bullet - de oplossing van alle kwalen.'\",\n    \"Deflatiespook\",\n    \"Eén komma één triljoen euro voor een half procent inflatie\",\n    \"Het effect van de geldinjectie is dan ook een kwestie van appreciatie, meent Knot: 'Welk risico acht je het grootst.' \",\n    \"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.\",\n    \"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.'\",\n    \"De tegenstemmers zoals Knot vinden het risico van deflatie niet groot. \",\n    \"'Ongeveer 60 procent van de dalende prijzen komt door de lage olieprijs en dat is tijdelijk', zei hij. \",\n    \"Het risico op bijvoorbeeld zeepbellen op de beurs en in de huizenmarkt acht Knot veel reëler.\",\n    \"De kwantitatieve verruiming jaagt de prijzen van aandelen, obligaties en vastgoed op tot een niveau dat volgens Knot losstaat van de economische werkelijkheid. \",\n    \"Dat vergroot de verschillen tussen vermogenden en minder vermogenden.\",\n    \"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.\"\n  ]\n}"
  },
  {
    "path": "spec/test_data/Wikipedia_EN_FrenchRevolution.json",
    "content": "{\n  \"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}}<br \\/>({{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&nbsp;million to 26&nbsp;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&nbsp;million in 1700 to 26&nbsp;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&nbsp;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&nbsp;million, versus 4&nbsp;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&nbsp;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&nbsp;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,<ref>{{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.<ref>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}}''.<ref>{{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.<ref name=\\\"autogenerated1\\\">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.<ref>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.<ref name=\\\"De Gouges Writings 564\\u2013568\\\">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<blockquote>\\\"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.\\\"<ref>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.<ref>{{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><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).<ref>{{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.<ref>{{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><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.<ref>Furet, ed., ''A Critical Dictionary of the French Revolution,'' pp. 479\\u201393<\\/ref><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.<ref>{{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.\\\"<ref name=\\\":0\\\">{{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.<ref name=\\\":0\\\" \\/>\\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.\\\"<ref>{{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}}<!--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.<ref>{{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.<ref>{{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.<ref>Emma Vincent Macleod, ''A War of Ideas: British Attitudes to the War against Revolutionary France, 1792\\u20131802'' (1999)<\\/ref><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.<ref>{{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.<ref>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\\\".<ref>{{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.<ref>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.<ref>{{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]].<ref>{{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]].<ref>Marc H. Lerner, \\\"The Helvetic Republic: An Ambivalent Reception of French Revolutionary Liberty,\\\" ''French History'' (2004) 18#1 pp. 50\\u201375.<\\/ref><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.<ref>{{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.<ref>Bernard A. Cook, ''Belgium'' (2005) pp. 49\\u201354<\\/ref><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.<ref>{{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.<ref name=\\\"canimmg\\\">{{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]]).<ref name=\\\"canimmg\\\" \\/> 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.<ref name=\\\"canimmg\\\" \\/>\\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.<ref>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.<ref>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.<ref>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.<ref>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]].<ref>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.<ref>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.<ref>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.<ref>{{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.<ref name=\\\"Rebecca L. Spang, Paradigms and Paranoia\\\">{{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><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.<ref name=\\\"Rebecca L. Spang, Paradigms and Paranoia\\\" \\/>\\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]]\\\".<ref>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.<ref>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.<ref name=\\\"RiemerSimon1997\\\">{{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.&nbsp;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.&nbsp;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.&nbsp;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.&nbsp;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.&nbsp;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.&nbsp;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.&nbsp;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.&nbsp;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| ]]<!--eponymous category first-->\\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\"\n}\n"
  },
  {
    "path": "spec/test_data/Wikipedia_EN_InfluenceOfTheFrenchRevolution.json",
    "content": "{\n  \"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.<ref>Linda S. Frey and Marsha L. Frey, ''The French Revolution'' (2004), Foreword.<\\/ref><ref>R.R. Palmer and Joel Colton, ''A History of the Modern World'' (5th ed. 1978), p. 341<\\/ref><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.<ref>Mike Rapport and Peter McPhee. \\\"The International Repercussions of the French Revolution\\\", in ''A Companion to the French Revolution'' (2013), pp 379\\u201396.<\\/ref><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.<ref name=\\\"Artz\\\">Frederick B. Artz, ''Reaction & Revolution: 1814\\u20131832'' (Rise of Modern Europe) (1934), pp. 142\\u201343<!--publishing info needed--><\\/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.<ref name=\\\"Artz\\\"\\/>\\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.<ref>William Martin, ''Histoire de la Suisse'' (Paris, 1926), pp 187\\u201388, quoted in Crane Brinson, ''A Decade of Revolution: 1789\\u20131799'' (1934), p. 235.<!--publisher needed--><\\/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.<ref>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.<ref>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.\\\"<ref>{{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.\\\"<ref>{{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.<ref>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.<ref>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.<ref>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.<ref>Alexander Grab, ''Napoleon and the Transformation of Europe'' (2003) pp 62\\u201365, 78\\u201379, 88\\u201396, 115\\u201317, 154\\u201359<\\/ref><ref>Palmer, ''The Age of the Democratic Revolution'' 2:293\\u2013326, 365\\u201394<\\/ref><br>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.<ref name=\\\"Artz\\\"\\/>\\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.\\\"<ref>{{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).<ref>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.<ref>Carlton J. H. Hayes, ''The Historical Evolution of Modern Nationalism'' (1931), ch 2\\u20133<\\/ref><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}}<!--ISSN\\/ISBN needed--><\\/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.<ref>Emma Vincent Macleod, ''A War of Ideas: British Attitudes to the War against Revolutionary France, 1792\\u20131802'' (1999)<\\/ref><ref>Palmer, ''The Age of the Democratic Revolution: The Struggle, Volume II'' (1970), pp 459\\u2013505.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>{{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><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.<ref>James J. Sheehan, ''German History, 1770\\u20131866'' (1993), pp. 207\\u2013322.<!--publisher, page(s); ISSN\\/ISBN needed--><\\/ref><ref>Palmer, ''The Age of the Democratic Revolution'' 2:425-58<\\/ref><ref>Blanning Blanning, \\\"The French Revolution and the Modernization of Germany\\\", in ''Central European History'' (1989) 22#2, pp 109\\u201329.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>{{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.<ref>T. C. W. Blanning, ''The French Revolution in Germany: Occupation and Resistance in the Rhineland 1792\\u20131802'' (1983)<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>Hajo Holborn, ''A History of Modern Germany, 1648\\u20131840 (1964), pp 386\\u201387.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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).<ref>Michael Rowe, ''From Reich to state: the Rhineland in the revolutionary age, 1780\\u20131830'' (2003)<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>Lerner, Marc H.  Lerner, \\\"The Helvetic Republic: An Ambivalent Reception of French Revolutionary Liberty\\\", ''French History'' (2004) 18#1, pp 50\\u201375.<!--publisher, pages, ISSN\\/ISBN needed--><\\/ref><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.<ref>{{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.<ref>William Martin, ''Histoire de la Suisse'' (Paris, 1926), pp 187\\u201388, quoted in Crane Brinson, ''A Decade of Revolution: 1789\\u20131799'' (1934), p. 235.<!-- publishing info needed --><\\/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.<ref>E.H. Kossmann, ''The Low Countries: 1780\\u20131940'' (1978) pp 65\\u201381, 101\\u201302.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>Bernard A. Cook, ''Belgium'' (2005) pp 49\\u201354<\\/ref><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.<ref>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.<ref>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<!--publisher, pages, ISSN\\/ISBN needed--><\\/ref><ref>H. Arnold Barton, ''Scandinavia in the Revolutionary Era, 1760\\u20131815'' (1986)<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>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),<ref>Alan Palmer, ''Bernadotte: Napoleon's Marshal, Sweden's King'' (1991)<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>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.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref name=canimmg>{{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]]).<ref name=canimmg\\/> 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]].<ref name=canimmg\\/>\\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.<ref>{{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.<ref>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.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.<ref>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]].<ref>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.<ref name=\\\"am & fre similarities\\\">{{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.<ref name=\\\"Statue of liberty\\\">{{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.<ref name=\\\"scholar.library.miami.edu\\\">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.<ref name=\\\"scholar.library.miami.edu\\\"\\/> 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 Haiti<ref name=\\\"Ghachem, Malick W 2012\\\">Ghachem, 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.<ref name=\\\"haitianrevolutionfblock.weebly.com\\\">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.<ref>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.<ref>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.<!--publisher, pages, ISSN\\/ISBN needed--><\\/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.&nbsp;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.&nbsp;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\"\n}\n"
  },
  {
    "path": "spec/test_data/browntag_nolines_excerpt.json",
    "content": "{\n  \"wordCount\": 1421,\n  \"sentences\": [\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"Friday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"investigation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"recent\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"produced\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"no\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"evidence\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"any\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"irregularities\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"took\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"place\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"further\",\n          \"tag\": \"RBR\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"term-end\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"presentments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Executive\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Committee\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"had\",\n          \"tag\": \"HVD\"\n        },\n        {\n          \"token\": \"over-all\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"charge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"deserves\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"praise\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"thanks\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"manner\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"conducted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"September-October\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"term\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"had\",\n          \"tag\": \"HVD\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"charged\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Superior\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Court\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Judge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Durwood\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Pye\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"investigate\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"reports\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"possible\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"irregularities\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"hard-fought\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"won\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Mayor-nominate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Ivan\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Allen\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Jr.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"only\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"relative\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"handful\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"such\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"reports\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"received\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"considering\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"widespread\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"interest\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"number\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"voters\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"size\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"did\",\n          \"tag\": \"DOD\"\n        },\n        {\n          \"token\": \"find\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"many\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Georgia's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"registration\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"laws\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"are\",\n          \"tag\": \"BER\"\n        },\n        {\n          \"token\": \"outmoded\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"or\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"inadequate\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"often\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"ambiguous\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"recommended\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"legislators\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"act\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"have\",\n          \"tag\": \"HV\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"laws\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"studied\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"revised\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"end\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"modernizing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"improving\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"them\",\n          \"tag\": \"PPO\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"commented\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"number\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"other\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"topics\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"among\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"them\",\n          \"tag\": \"PPO\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"purchasing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"departments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"are\",\n          \"tag\": \"BER\"\n        },\n        {\n          \"token\": \"well\",\n          \"tag\": \"QL\"\n        },\n        {\n          \"token\": \"operated\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"follow\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"generally\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"accepted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"practices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"inure\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"best\",\n          \"tag\": \"JJT\"\n        },\n        {\n          \"token\": \"interest\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"both\",\n          \"tag\": \"ABX\"\n        },\n        {\n          \"token\": \"governments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"merger\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"proposed\",\n          \"tag\": \"VBN\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"however\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"believes\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"two\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"offices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"combined\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"achieve\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"greater\",\n          \"tag\": \"JJR\"\n        },\n        {\n          \"token\": \"efficiency\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"reduce\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"cost\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"administration\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Purchasing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"lacking\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"experienced\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"clerical\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"personnel\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"result\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"personnel\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"policies\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"urged\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"take\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"steps\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"remedy\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"problem\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"implementation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Georgia's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"automobile\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"title\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"law\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"also\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"recommended\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"outgoing\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"urged\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"next\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"Legislature\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"provide\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"enabling\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"funds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"re-set\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"effective\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"date\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"so\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"orderly\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"implementation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"law\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"may\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"effected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"took\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"swipe\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"at\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"State\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Welfare\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Department's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"handling\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"federal\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"funds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"granted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"child\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"welfare\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"services\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"foster\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"homes\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"one\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"major\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"items\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"general\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"assistance\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"program\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"but\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"State\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Welfare\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"seen\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"fit\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"distribute\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"funds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"through\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"welfare\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"departments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"all\",\n          \"tag\": \"ABN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"counties\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"state\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"with\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"exception\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"receives\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"none\",\n          \"tag\": \"PN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"money\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jurors\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"they\",\n          \"tag\": \"PPSS\"\n        },\n        {\n          \"token\": \"realize\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"proportionate\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"distribution\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"funds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"might\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"disable\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"program\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"our\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"less\",\n          \"tag\": \"QL\"\n        },\n        {\n          \"token\": \"populous\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"counties\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"nevertheless\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"we\",\n          \"tag\": \"PPSS\"\n        },\n        {\n          \"token\": \"feel\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"future\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"receive\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"some\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"portion\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"available\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"funds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jurors\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"failure\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"do\",\n          \"tag\": \"DO\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"continue\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"place\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"disproportionate\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"burden\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"taxpayers\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"also\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"commented\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"ordinary's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"court\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"under\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"fire\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"its\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"practices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"appointment\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"appraisers\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"guardians\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"administrators\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"awarding\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"fees\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"compensation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"wards\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"protected\",\n          \"tag\": \"VBN\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"found\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"court\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"incorporated\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"into\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"its\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"operating\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"procedures\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"recommendations\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"two\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"previous\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"juries\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Bar\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Association\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"interim\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"citizens\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"committee\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"actions\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"serve\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"protect\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"fact\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"effect\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"court's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"wards\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"from\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"undue\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"costs\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"its\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"appointed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"elected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"servants\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"from\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"unmeritorious\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"criticisms\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"regarding\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"new\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"multi-million-dollar\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"airport\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"recommended\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"when\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"new\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"management\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"takes\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"charge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Jan.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"1\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"airport\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"operated\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"manner\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"WPS\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"eliminate\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"political\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"influences\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"did\",\n          \"tag\": \"DOD\"\n        },\n        {\n          \"token\": \"not\",\n          \"tag\": \"*\"\n        },\n        {\n          \"token\": \"elaborate\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"but\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"added\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"there\",\n          \"tag\": \"EX\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"periodic\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"surveillance\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"pricing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"practices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"concessionaires\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"purpose\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"keeping\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"prices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"reasonable\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"ask\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"jail\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"deputies\",\n          \"tag\": \"NNS\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"other\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"matters\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"recommended\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \":\",\n          \"tag\": \":\"\n        },\n        {\n          \"token\": \"1\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"four\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"additional\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"deputies\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"employed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"at\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Jail\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"doctor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"medical\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"intern\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"or\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"extern\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"employed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"night\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"weekend\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"duty\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"at\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jail\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"2\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"legislators\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"work\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"with\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"officials\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"pass\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"enabling\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"legislation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"WPS\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"permit\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"establishment\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"fair\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"equitable\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"pension\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"plan\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"employes\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"praised\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"administration\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"operation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Police\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Tax\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Commissioner's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"Office\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Bellwood\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"Alpharetta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"prison\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"farms\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"Grady\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Hospital\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Health\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Mayor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"William\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"B.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Hartsfield\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"filed\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"suit\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"divorce\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"from\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"wife\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"Pearl\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Williams\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Hartsfield\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Superior\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Court\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Friday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"petition\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"charged\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"mental\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"cruelty\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"couple\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"married\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"Aug.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"2\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"1913\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"they\",\n          \"tag\": \"PPSS\"\n        },\n        {\n          \"token\": \"have\",\n          \"tag\": \"HV\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"son\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"William\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Berry\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Jr.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"daughter\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"Mrs.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"J.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"M.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Cheshire\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Griffin\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"attorneys\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"mayor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"amicable\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"property\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"settlement\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"agreed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"upon\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"petition\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"listed\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"mayor's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"occupation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"attorney\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"age\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"71\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"listed\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"wife's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"age\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"74\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"place\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"birth\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"Opelika\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"Ala.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"petition\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"couple\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"not\",\n          \"tag\": \"*\"\n        },\n        {\n          \"token\": \"lived\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"together\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"man\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"wife\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"more\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"than\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"year\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Hartsfield\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"home\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"at\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"637\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"E.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Pelham\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Rd.\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"J\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Henry\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"L.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Bowden\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"listed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"petition\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"mayor's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"attorney\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Hartsfield\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"mayor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"with\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"exception\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"one\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"brief\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"interlude\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"since\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"1937\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"political\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"career\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"goes\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"back\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"council\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"1923\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"mayor's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"present\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"term\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"office\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"expires\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"Jan.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"1\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"he\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"succeeded\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Ivan\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Allen\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Jr.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"who\",\n          \"tag\": \"WPS\"\n        },\n        {\n          \"token\": \"became\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"candidate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Sept.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"13\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"after\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"Mayor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Hartsfield\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"announced\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"he\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"would\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"not\",\n          \"tag\": \"*\"\n        },\n        {\n          \"token\": \"run\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"reelection\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Georgia\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Republicans\",\n          \"tag\": \"NPS\"\n        },\n        {\n          \"token\": \"are\",\n          \"tag\": \"BER\"\n        },\n        {\n          \"token\": \"getting\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"strong\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"encouragement\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"enter\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"candidate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"1962\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"governor's\",\n          \"tag\": \"NN$\"\n        },\n        {\n          \"token\": \"race\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"top\",\n          \"tag\": \"JJS\"\n        },\n        {\n          \"token\": \"official\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"Wednesday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Robert\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Snodgrass\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"state\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"J\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"chairman\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"meeting\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"held\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"Tuesday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"night\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Blue\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Ridge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"brought\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"enthusiastic\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"responses\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"from\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"audience\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"State\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Party\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Chairman\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"James\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"W.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Dorsey\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"added\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"enthusiasm\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"picking\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"up\",\n          \"tag\": \"RP\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"state\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"rally\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"held\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"Sept.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"8\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Savannah\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"at\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"newly\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"elected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"Texas\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Sen.\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"John\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Tower\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"featured\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"speaker\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Blue\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Ridge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"meeting\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"audience\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"warned\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"entering\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"candidate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"governor\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"would\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"force\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPO\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"take\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"petitions\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"out\",\n          \"tag\": \"RP\"\n        },\n        {\n          \"token\": \"into\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"voting\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"precincts\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"obtain\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"signatures\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"registered\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"voters\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"despite\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"warning\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"there\",\n          \"tag\": \"EX\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"unanimous\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"vote\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"enter\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"candidate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"according\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Republicans\",\n          \"tag\": \"NPS\"\n        },\n        {\n          \"token\": \"who\",\n          \"tag\": \"WPS\"\n        },\n        {\n          \"token\": \"attended\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"when\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"crowd\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"asked\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"whether\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"wanted\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"wait\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"one\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"more\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"term\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"make\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"race\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"voted\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"no\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"--\",\n          \"tag\": \"--\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"there\",\n          \"tag\": \"EX\"\n        },\n        {\n          \"token\": \"were\",\n          \"tag\": \"BED\"\n        },\n        {\n          \"token\": \"no\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"dissents\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"largest\",\n          \"tag\": \"JJT\"\n        },\n        {\n          \"token\": \"hurdle\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Republicans\",\n          \"tag\": \"NPS\"\n        },\n        {\n          \"token\": \"would\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"have\",\n          \"tag\": \"HV\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"face\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"state\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"law\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"says\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"before\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"making\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"first\",\n          \"tag\": \"OD\"\n        },\n        {\n          \"token\": \"race\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"one\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"two\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"alternative\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"courses\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"must\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"taken\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \":\",\n          \"tag\": \":\"\n        },\n        {\n          \"token\": \"1\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"five\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"per\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"cent\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"voters\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"each\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"county\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"must\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"sign\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"petitions\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"requesting\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Republicans\",\n          \"tag\": \"NPS\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"allowed\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"place\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"names\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"candidates\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"general\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"ballot\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"or\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"2\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Republicans\",\n          \"tag\": \"NPS\"\n        },\n        {\n          \"token\": \"must\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"hold\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"under\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"county\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"unit\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"system\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"--\",\n          \"tag\": \"--\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"system\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"party\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"opposes\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"its\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"platform\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Sam\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Caldwell\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"State\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Highway\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"public\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"relations\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"director\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"resigned\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"Tuesday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"work\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Lt.\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Gov.\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Garland\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Byrd's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"campaign\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Caldwell's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"resignation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"had\",\n          \"tag\": \"HVD\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"expected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"some\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"time\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"he\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"succeeded\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Rob\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Ledford\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Gainesville\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"who\",\n          \"tag\": \"WPS\"\n        },\n        {\n          \"token\": \"has\",\n          \"tag\": \"HVZ\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"assistant\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"more\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"than\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"three\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"years\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"when\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"gubernatorial\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"campaign\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"starts\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"Caldwell\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"expected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"become\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"campaign\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"coordinator\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Byrd\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Georgia\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Legislature\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"wind\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"up\",\n          \"tag\": \"RP\"\n        },\n        {\n          \"token\": \"its\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"1961\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"session\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Monday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"head\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"home\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"--\",\n          \"tag\": \"--\"\n        },\n        {\n          \"token\": \"where\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \"some\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"highway\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"bond\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"money\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"approved\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"follow\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"shortly\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"before\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"adjournment\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Monday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"afternoon\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Senate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"expected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"approve\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"study\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"number\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"legislators\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"allotted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"rural\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"urban\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"areas\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"determine\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"what\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"adjustments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"made\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Gov.\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Vandiver\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"expected\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"make\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"traditional\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"visit\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"both\",\n          \"tag\": \"ABX\"\n        },\n        {\n          \"token\": \"chambers\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"they\",\n          \"tag\": \"PPSS\"\n        },\n        {\n          \"token\": \"work\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"toward\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"adjournment\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"Vandiver\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"likely\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"mention\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"$100\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"million\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"highway\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"bond\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"issue\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"approved\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"earlier\",\n          \"tag\": \"RBR\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"session\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"his\",\n          \"tag\": \"PP$\"\n        },\n        {\n          \"token\": \"first\",\n          \"tag\": \"OD\"\n        },\n        {\n          \"token\": \"priority\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"item\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"construction\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"bonds\",\n          \"tag\": \"NNS\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"meanwhile\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"learned\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"State\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Highway\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"very\",\n          \"tag\": \"QL\"\n        },\n        {\n          \"token\": \"near\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"being\",\n          \"tag\": \"BEG\"\n        },\n        {\n          \"token\": \"ready\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"issue\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"first\",\n          \"tag\": \"OD\"\n        },\n        {\n          \"token\": \"$30\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"million\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"worth\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"highway\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"reconstruction\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"bonds\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"bond\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"issue\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"go\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"state\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"courts\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"friendly\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"test\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"suit\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"test\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"validity\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"act\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"then\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"sales\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"will\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"begin\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"contracts\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"let\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"repair\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"work\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"some\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Georgia's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"most\",\n          \"tag\": \"QL\"\n        },\n        {\n          \"token\": \"heavily\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"traveled\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"highways\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "spec/test_data/browntag_nolines_excerpt_maxent.json",
    "content": "{\n  \"wordCount\": 264,\n  \"sentences\": [\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"Friday\",\n          \"tag\": \"NR\"\n        },\n        {\n          \"token\": \"an\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"investigation\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"recent\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"produced\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"no\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"evidence\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"any\",\n          \"tag\": \"DTI\"\n        },\n        {\n          \"token\": \"irregularities\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"took\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"place\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"further\",\n          \"tag\": \"RBR\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"term-end\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"presentments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Executive\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Committee\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"had\",\n          \"tag\": \"HVD\"\n        },\n        {\n          \"token\": \"over-all\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"charge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"deserves\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"praise\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"thanks\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"for\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"manner\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"conducted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"September-October\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"term\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"had\",\n          \"tag\": \"HVD\"\n        },\n        {\n          \"token\": \"been\",\n          \"tag\": \"BEN\"\n        },\n        {\n          \"token\": \"charged\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Superior\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"Court\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Judge\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Durwood\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Pye\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"investigate\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"reports\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"possible\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"irregularities\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"hard-fought\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"primary\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"won\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"by\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Mayor-nominate\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Ivan\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Allen\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"Jr.\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"only\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"relative\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"handful\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"such\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"reports\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"was\",\n          \"tag\": \"BEDZ\"\n        },\n        {\n          \"token\": \"received\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"considering\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"widespread\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"interest\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"number\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"voters\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"size\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"this\",\n          \"tag\": \"DT\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"did\",\n          \"tag\": \"DOD\"\n        },\n        {\n          \"token\": \"find\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"many\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"Georgia's\",\n          \"tag\": \"NP$\"\n        },\n        {\n          \"token\": \"registration\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"election\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"laws\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"are\",\n          \"tag\": \"BER\"\n        },\n        {\n          \"token\": \"outmoded\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"or\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"inadequate\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"often\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"ambiguous\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"recommended\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"that\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"legislators\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"act\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"have\",\n          \"tag\": \"HV\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"laws\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"studied\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"revised\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"end\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"modernizing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"improving\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"them\",\n          \"tag\": \"PPO\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"grand\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"commented\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"on\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"number\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"other\",\n          \"tag\": \"AP\"\n        },\n        {\n          \"token\": \"topics\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"among\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"them\",\n          \"tag\": \"PPO\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"Atlanta\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"Fulton\",\n          \"tag\": \"NP\"\n        },\n        {\n          \"token\": \"County\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"purchasing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"departments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"are\",\n          \"tag\": \"BER\"\n        },\n        {\n          \"token\": \"well\",\n          \"tag\": \"QL\"\n        },\n        {\n          \"token\": \"operated\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"follow\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"generally\",\n          \"tag\": \"RB\"\n        },\n        {\n          \"token\": \"accepted\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"practices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"which\",\n          \"tag\": \"WDT\"\n        },\n        {\n          \"token\": \"inure\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"best\",\n          \"tag\": \"JJT\"\n        },\n        {\n          \"token\": \"interest\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"both\",\n          \"tag\": \"ABX\"\n        },\n        {\n          \"token\": \"governments\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"merger\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"proposed\",\n          \"tag\": \"VBN\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"however\",\n          \"tag\": \"WRB\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \"it\",\n          \"tag\": \"PPS\"\n        },\n        {\n          \"token\": \"believes\",\n          \"tag\": \"VBZ\"\n        },\n        {\n          \"token\": \"these\",\n          \"tag\": \"DTS\"\n        },\n        {\n          \"token\": \"two\",\n          \"tag\": \"CD\"\n        },\n        {\n          \"token\": \"offices\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"should\",\n          \"tag\": \"MD\"\n        },\n        {\n          \"token\": \"be\",\n          \"tag\": \"BE\"\n        },\n        {\n          \"token\": \"combined\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"to\",\n          \"tag\": \"TO\"\n        },\n        {\n          \"token\": \"achieve\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"greater\",\n          \"tag\": \"JJR\"\n        },\n        {\n          \"token\": \"efficiency\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"and\",\n          \"tag\": \"CC\"\n        },\n        {\n          \"token\": \"reduce\",\n          \"tag\": \"VB\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"cost\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"administration\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    },\n    {\n      \"taggedWords\": [\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"City\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"Purchasing\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"Department\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"the\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"jury\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"said\",\n          \"tag\": \"VBD\"\n        },\n        {\n          \"token\": \",\",\n          \"tag\": \",\"\n        },\n        {\n          \"token\": \"is\",\n          \"tag\": \"BEZ\"\n        },\n        {\n          \"token\": \"lacking\",\n          \"tag\": \"VBG\"\n        },\n        {\n          \"token\": \"in\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"experienced\",\n          \"tag\": \"VBN\"\n        },\n        {\n          \"token\": \"clerical\",\n          \"tag\": \"JJ\"\n        },\n        {\n          \"token\": \"personnel\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"as\",\n          \"tag\": \"CS\"\n        },\n        {\n          \"token\": \"a\",\n          \"tag\": \"AT\"\n        },\n        {\n          \"token\": \"result\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"of\",\n          \"tag\": \"IN\"\n        },\n        {\n          \"token\": \"city\",\n          \"tag\": \"NN\"\n        },\n        {\n          \"token\": \"personnel\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \"policies\",\n          \"tag\": \"NNS\"\n        },\n        {\n          \"token\": \".\",\n          \"tag\": \".\"\n        }\n      ]\n    }\n  ]\n}"
  },
  {
    "path": "spec/test_data/dutchStemResults.json",
    "content": "{\n  \"results\": [\n  [\n    \"knot\",\n    \"geldper\",\n    \"aanzet\",\n    \"is\",\n    \"paardenmiddel\",\n    \"vor\",\n    \"half\",\n    \"procent\",\n    \"inflatie\"\n  ],\n  [\n  \"de\",\n  \"president\",\n  \"van\",\n  \"de\",\n  \"nederlandsch\",\n  \"bank\",\n  \"klas\",\n  \"knot\",\n  \"vindt\",\n  \"de\",\n  \"geldinjectie\",\n  \"in\",\n  \"de\",\n  \"europes\",\n  \"economie\",\n  \"van\",\n  \"ruim\",\n  \"1\",\n  \"100\",\n  \"miljard\",\n  \"euro\",\n  \"vel\",\n  \"te\",\n  \"hog\",\n  \"vor\",\n  \"het\",\n  \"beoogd\",\n  \"resultat\",\n  \"een\",\n  \"half\",\n  \"procent\",\n  \"inflatie\",\n  \"in\",\n  \"2016\"\n  ],\n  [\n  \"oftewel\",\n  \"50\",\n  \"basispunt\",\n  \"dat\",\n  \"zijn\",\n  \"hel\",\n  \"dur\",\n  \"basispunt\",\n  \"zei\",\n  \"knot\",\n  \"donderdag\",\n  \"in\",\n  \"de\",\n  \"twed\",\n  \"kamer\"\n  ],\n  [\n  \"dor\",\n  \"robert\",\n  \"giebel\",\n  \"5\",\n  \"februari\",\n  \"2015\",\n  \"21\",\n  \"55\",\n  \"bron\",\n  \"anp\"\n  ],\n  [\n  \"de\",\n  \"financi\",\n  \"le\",\n  \"specialist\",\n  \"onder\",\n  \"de\",\n  \"kamerled\",\n  \"had\",\n  \"knot\",\n  \"gevraagd\",\n  \"uitleg\",\n  \"te\",\n  \"gev\",\n  \"over\",\n  \"het\",\n  \"ecb\",\n  \"besluit\",\n  \"van\",\n  \"22\",\n  \"januari\"\n  ],\n  [\n  \"de\",\n  \"central\",\n  \"bank\",\n  \"van\",\n  \"de\",\n  \"eurozon\",\n  \"gat\",\n  \"vor\",\n  \"60\",\n  \"miljard\",\n  \"euro\",\n  \"per\",\n  \"maand\",\n  \"staatsschuld\",\n  \"opkop\"\n  ],\n  [\n  \"dat\",\n  \"komt\",\n  \"ner\",\n  \"op\",\n  \"het\",\n  \"aanzet\",\n  \"van\",\n  \"de\",\n  \"geldper\",\n  \"om\",\n  \"de\",\n  \"inflatie\",\n  \"en\",\n  \"de\",\n  \"economie\",\n  \"aan\",\n  \"te\",\n  \"jag\"\n  ],\n  [\n  \"het\",\n  \"ecb\",\n  \"bestur\",\n  \"de\",\n  \"president\",\n  \"van\",\n  \"de\",\n  \"national\",\n  \"central\",\n  \"bank\",\n  \"van\",\n  \"evenzovel\",\n  \"euroland\",\n  \"en\",\n  \"zes\",\n  \"vast\",\n  \"bestuurder\",\n  \"beslot\",\n  \"daartoe\",\n  \"met\",\n  \"20\",\n  \"vor\",\n  \"en\",\n  \"5\",\n  \"teg\"\n  ],\n  [\n  \"vrij\",\n  \"uitzonder\",\n  \"was\",\n  \"dat\",\n  \"knot\",\n  \"bekendmaakt\",\n  \"een\",\n  \"van\",\n  \"de\",\n  \"vijf\",\n  \"tegenstemmer\",\n  \"te\",\n  \"zijn\"\n  ],\n  [\n  \"hij\",\n  \"vindt\",\n  \"de\",\n  \"zogenoemd\",\n  \"kwantitatiev\",\n  \"verruim\",\n  \"noodzak\",\n  \"noch\",\n  \"effectief\"\n  ],\n  [\n  \"mar\",\n  \"zei\",\n  \"knot\",\n  \"gister\",\n  \"tot\",\n  \"de\",\n  \"kamer\",\n  \"dat\",\n  \"besluit\",\n  \"is\",\n  \"een\",\n  \"gegev\"\n  ],\n  [\n  \"nu\",\n  \"gan\",\n  \"besprek\",\n  \"of\",\n  \"het\",\n  \"een\",\n  \"goed\",\n  \"of\",\n  \"slecht\",\n  \"besluit\",\n  \"was\",\n  \"is\",\n  \"mosterd\",\n  \"na\",\n  \"de\",\n  \"maaltijd\"\n  ],\n  [\n  \"in\",\n  \"het\",\n  \"vervolg\",\n  \"van\",\n  \"zijn\",\n  \"betog\",\n  \"kon\",\n  \"knot\",\n  \"zich\",\n  \"evenwel\",\n  \"niet\",\n  \"losmak\",\n  \"van\",\n  \"zijn\",\n  \"weerzin\",\n  \"erteg\"\n  ],\n  [\n  \"de\",\n  \"dnb\",\n  \"president\",\n  \"maakt\",\n  \"duidelijk\",\n  \"dat\",\n  \"het\",\n  \"op\",\n  \"grot\",\n  \"schal\",\n  \"aanzet\",\n  \"van\",\n  \"de\",\n  \"geldper\",\n  \"vooral\",\n  \"een\",\n  \"sprong\",\n  \"in\",\n  \"het\",\n  \"diep\",\n  \"is\"\n  ],\n  [\n  \"het\",\n  \"is\",\n  \"gen\",\n  \"flauwekul\",\n  \"mar\",\n  \"het\",\n  \"is\",\n  \"ook\",\n  \"niet\",\n  \"de\",\n  \"silver\",\n  \"bullet\",\n  \"de\",\n  \"oploss\",\n  \"van\",\n  \"all\",\n  \"kwal\"\n  ],\n  [\"deflatiespok\"],\n  [\n  \"e\",\n  \"n\",\n  \"komma\",\n  \"n\",\n  \"triljoen\",\n  \"euro\",\n  \"vor\",\n  \"een\",\n  \"half\",\n  \"procent\",\n  \"inflatie\"\n  ],\n  [\n  \"het\",\n  \"effect\",\n  \"van\",\n  \"de\",\n  \"geldinjectie\",\n  \"is\",\n  \"dan\",\n  \"ook\",\n  \"een\",\n  \"kwestie\",\n  \"van\",\n  \"appreciatie\",\n  \"meent\",\n  \"knot\",\n  \"welk\",\n  \"risico\",\n  \"acht\",\n  \"je\",\n  \"het\",\n  \"grootst\"\n  ],\n  [\n  \"de\",\n  \"meerder\",\n  \"van\",\n  \"de\",\n  \"ecb\",\n  \"vindt\",\n  \"het\",\n  \"risico\",\n  \"van\",\n  \"deflatie\",\n  \"het\",\n  \"grootst\",\n  \"de\",\n  \"economie\",\n  \"komt\",\n  \"tot\",\n  \"stilstand\",\n  \"omdat\",\n  \"iederen\",\n  \"denkt\",\n  \"dat\",\n  \"alles\",\n  \"later\",\n  \"goedkoper\",\n  \"wordt\",\n  \"en\",\n  \"op\",\n  \"dat\",\n  \"later\",\n  \"gat\",\n  \"wacht\"\n  ],\n  [\n  \"om\",\n  \"dat\",\n  \"deflatiespok\",\n  \"enigszin\",\n  \"buit\",\n  \"de\",\n  \"deur\",\n  \"te\",\n  \"houd\",\n  \"wordt\",\n  \"zo\",\n  \"constateert\",\n  \"knot\",\n  \"een\",\n  \"paardenmiddel\",\n  \"ingezet\",\n  \"e\",\n  \"n\",\n  \"komma\",\n  \"n\",\n  \"triljoen\",\n  \"euro\",\n  \"vor\",\n  \"een\",\n  \"half\",\n  \"procent\",\n  \"inflatie\"\n  ],\n  [\n  \"de\",\n  \"tegenstemmer\",\n  \"zoal\",\n  \"knot\",\n  \"vind\",\n  \"het\",\n  \"risico\",\n  \"van\",\n  \"deflatie\",\n  \"niet\",\n  \"grot\"\n  ],\n  [\n  \"ongever\",\n  \"60\",\n  \"procent\",\n  \"van\",\n  \"de\",\n  \"dalend\",\n  \"prijz\",\n  \"komt\",\n  \"dor\",\n  \"de\",\n  \"lag\",\n  \"olieprijs\",\n  \"en\",\n  \"dat\",\n  \"is\",\n  \"tijdelijk\",\n  \"zei\",\n  \"hij\"\n  ],\n  [\n  \"het\",\n  \"risico\",\n  \"op\",\n  \"bijvoorbeeld\",\n  \"zeepbell\",\n  \"op\",\n  \"de\",\n  \"beur\",\n  \"en\",\n  \"in\",\n  \"de\",\n  \"huizenmarkt\",\n  \"acht\",\n  \"knot\",\n  \"vel\",\n  \"re\",\n  \"ler\"\n  ],\n  [\n  \"de\",\n  \"kwantitatiev\",\n  \"verruim\",\n  \"jaagt\",\n  \"de\",\n  \"prijz\",\n  \"van\",\n  \"aandel\",\n  \"obligaties\",\n  \"en\",\n  \"vastgoed\",\n  \"op\",\n  \"tot\",\n  \"een\",\n  \"niveau\",\n  \"dat\",\n  \"volgen\",\n  \"knot\",\n  \"losstat\",\n  \"van\",\n  \"de\",\n  \"economisch\",\n  \"werkelijk\"\n  ],\n  [\n  \"dat\",\n  \"vergrot\",\n  \"de\",\n  \"verschill\",\n  \"tuss\",\n  \"vermog\",\n  \"en\",\n  \"minder\",\n  \"vermog\"\n  ],\n  [\n  \"gen\",\n  \"risico\",\n  \"mar\",\n  \"een\",\n  \"vaststaand\",\n  \"negatief\",\n  \"effect\",\n  \"van\",\n  \"de\",\n  \"kunstmat\",\n  \"lag\",\n  \"rent\",\n  \"dor\",\n  \"de\",\n  \"geldper\",\n  \"aan\",\n  \"te\",\n  \"zet\",\n  \"is\",\n  \"volgen\",\n  \"knot\",\n  \"bovendien\",\n  \"dat\",\n  \"land\",\n  \"dor\",\n  \"de\",\n  \"actie\",\n  \"van\",\n  \"de\",\n  \"ecb\",\n  \"minder\",\n  \"gemotiveerd\",\n  \"zull\",\n  \"zijn\",\n  \"economisch\",\n  \"en\",\n  \"monetair\",\n  \"te\",\n  \"hervorm\"\n  ]\n]\n}\n"
  },
  {
    "path": "spec/test_data/index.document1.txt",
    "content": "this document is about node."
  },
  {
    "path": "spec/test_data/snowball_de.json",
    "content": "{\n  \"a\": \"a\",\n  \"aa\": \"aa\",\n  \"aalglatten\": \"aalglatt\",\n  \"aargau\": \"aargau\",\n  \"aargauer\": \"aargau\",\n  \"aasen\": \"aas\",\n  \"aasgeruch\": \"aasgeruch\",\n  \"aashöllen\": \"aasholl\",\n  \"ab\": \"ab\",\n  \"abaddon\": \"abaddon\",\n  \"abarten\": \"abart\",\n  \"abbeisst\": \"abbeisst\",\n  \"abbild\": \"abbild\",\n  \"abbildung\": \"abbild\",\n  \"abbiss\": \"abbiss\",\n  \"abbrechen\": \"abbrech\",\n  \"abbruch\": \"abbruch\",\n  \"abend\": \"abend\",\n  \"abendbrot\": \"abendbrot\",\n  \"abenddämmerung\": \"abenddammer\",\n  \"abenddunklen\": \"abenddunkl\",\n  \"abende\": \"abend\",\n  \"abendessen\": \"abendess\",\n  \"abendherren\": \"abendherr\",\n  \"abendhimmel\": \"abendhimmel\",\n  \"abendländischem\": \"abendland\",\n  \"abendländischen\": \"abendland\",\n  \"abendlichen\": \"abend\",\n  \"abendlichte\": \"abendlicht\",\n  \"abendluft\": \"abendluft\",\n  \"abendmahl\": \"abendmahl\",\n  \"abendröte\": \"abendrot\",\n  \"abends\": \"abend\",\n  \"abendschein\": \"abendschein\",\n  \"abendscheine\": \"abendschein\",\n  \"abendschöppchen\": \"abendschoppch\",\n  \"abendsonne\": \"abendsonn\",\n  \"abendstern\": \"abend\",\n  \"abendtanz\": \"abendtanz\",\n  \"abendwind\": \"abendwind\",\n  \"abendzeit\": \"abendzeit\",\n  \"abenteuer\": \"abenteu\",\n  \"abenteuerlich\": \"abenteu\",\n  \"abenteuerliche\": \"abenteu\",\n  \"abenteuerlichem\": \"abenteu\",\n  \"abenteuerliches\": \"abenteu\",\n  \"abenteuern\": \"abenteu\",\n  \"abenteuers\": \"abenteu\",\n  \"abenteuerspielplätzen\": \"abenteuerspielplatz\",\n  \"abenteurer\": \"abenteur\",\n  \"aber\": \"aber\",\n  \"aberglaube\": \"aberglaub\",\n  \"aberglauben\": \"aberglaub\",\n  \"abermalige\": \"abermal\",\n  \"abermaligen\": \"abermal\",\n  \"abermals\": \"abermal\",\n  \"abertausend\": \"abertaus\",\n  \"aberwitzigen\": \"aberwitz\",\n  \"abfahrt\": \"abfahrt\",\n  \"abfall\": \"abfall\",\n  \"abfallen\": \"abfall\",\n  \"abfällige\": \"abfall\",\n  \"abfallkorb\": \"abfallkorb\",\n  \"abfällsel\": \"abfallsel\",\n  \"abfällt\": \"abfallt\",\n  \"abfeuernd\": \"abfeuernd\",\n  \"abfielen\": \"abfiel\",\n  \"abfinden\": \"abfind\",\n  \"abflughalle\": \"abflughall\",\n  \"abfressen\": \"abfress\",\n  \"abfuhr\": \"abfuhr\",\n  \"abführung\": \"abfuhr\",\n  \"abgab\": \"abgab\",\n  \"abgabe\": \"abgab\",\n  \"abgaben\": \"abgab\",\n  \"abgang\": \"abgang\",\n  \"abge\": \"abg\",\n  \"abgebe\": \"abgeb\",\n  \"abgeben\": \"abgeb\",\n  \"abgebildet\": \"abgebildet\",\n  \"abgebracht\": \"abgebracht\",\n  \"abgebrannten\": \"abgebrannt\",\n  \"abgebrochen\": \"abgebroch\",\n  \"abgebrochene\": \"abgebroch\",\n  \"abgebrochenes\": \"abgebroch\",\n  \"abgebürstet\": \"abgeburstet\",\n  \"abgedient\": \"abgedient\",\n  \"abgedruckt\": \"abgedruckt\",\n  \"abgefallen\": \"abgefall\",\n  \"abgefangen\": \"abgefang\",\n  \"abgefertigt\": \"abgefertigt\",\n  \"abgeführt\": \"abgefuhrt\",\n  \"abgefunden\": \"abgefund\",\n  \"abgegebene\": \"abgegeb\",\n  \"abgegrenzt\": \"abgegrenzt\",\n  \"abgegriffene\": \"abgegriff\",\n  \"abgehalten\": \"abgehalt\",\n  \"abgehandelt\": \"abgehandelt\",\n  \"abgehandelten\": \"abgehandelt\",\n  \"abgehängen\": \"abgehang\",\n  \"abgehärmte\": \"abgeharmt\",\n  \"abgehärteten\": \"abgehartet\",\n  \"abgehauen\": \"abgehau\",\n  \"abgehen\": \"abgeh\",\n  \"abgeholt\": \"abgeholt\",\n  \"abgehört\": \"abgehort\",\n  \"abgeht\": \"abgeht\",\n  \"abgekauft\": \"abgekauft\",\n  \"abgekommen\": \"abgekomm\",\n  \"abgeladen\": \"abgelad\",\n  \"abgelagertes\": \"abgelagert\",\n  \"abgelassen\": \"abgelass\",\n  \"abgelaufen\": \"abgelauf\",\n  \"abgelebte\": \"abgelebt\",\n  \"abgelegenen\": \"abgeleg\",\n  \"abgelegt\": \"abgelegt\",\n  \"abgelehnt\": \"abgelehnt\",\n  \"abgeleitet\": \"abgeleitet\",\n  \"abgeleitete\": \"abgeleitet\",\n  \"abgeleiteten\": \"abgeleitet\",\n  \"abgeleitetes\": \"abgeleitet\",\n  \"abgelenkt\": \"abgelenkt\",\n  \"abgeleugnet\": \"abgeleugnet\",\n  \"abgelöst\": \"abgelost\",\n  \"abgemagert\": \"abgemagert\",\n  \"abgemessenheit\": \"abgemess\",\n  \"abgenagten\": \"abgenagt\",\n  \"abgeneigt\": \"abgeneigt\",\n  \"abgenommen\": \"abgenomm\",\n  \"abgenutzten\": \"abgenutzt\",\n  \"abgeödet\": \"abgeodet\",\n  \"abgeödete\": \"abgeodet\",\n  \"abgeordnetenversammlung\": \"abgeordnetenversamml\",\n  \"abgeordneter\": \"abgeordnet\",\n  \"abgepfändet\": \"abgepfandet\",\n  \"abgepflückt\": \"abgepfluckt\",\n  \"abgeplatzt\": \"abgeplatzt\",\n  \"abgeraten\": \"abgerat\",\n  \"abgerieben\": \"abgerieb\",\n  \"abgerissen\": \"abgeriss\",\n  \"abgerissenen\": \"abgeriss\",\n  \"abgesandt\": \"abgesandt\",\n  \"abgeschabtes\": \"abgeschabt\",\n  \"abgescheuert\": \"abgescheuert\",\n  \"abgeschieden\": \"abgeschied\",\n  \"abgeschiedenen\": \"abgeschied\",\n  \"abgeschlagen\": \"abgeschlag\",\n  \"abgeschliffen\": \"abgeschliff\",\n  \"abgeschmolzen\": \"abgeschmolz\",\n  \"abgeschnitten\": \"abgeschnitt\",\n  \"abgeschossenes\": \"abgeschoss\",\n  \"abgeschreckt\": \"abgeschreckt\",\n  \"abgeschwächt\": \"abgeschwacht\",\n  \"abgesehen\": \"abgeseh\",\n  \"abgesessen\": \"abgesess\",\n  \"abgesondert\": \"abgesondert\",\n  \"abgesonderten\": \"abgesondert\",\n  \"abgespannt\": \"abgespannt\",\n  \"abgesperrt\": \"abgesperrt\",\n  \"abgesprochen\": \"abgesproch\",\n  \"abgesprungen\": \"abgespr\",\n  \"abgestellt\": \"abgestellt\",\n  \"abgestohlene\": \"abgestohl\",\n  \"abgestossene\": \"abgestoss\",\n  \"abgestritten\": \"abgestritt\",\n  \"abgetan\": \"abgetan\",\n  \"abgeteilt\": \"abgeteilt\",\n  \"abgeteilten\": \"abgeteilt\",\n  \"abgetötet\": \"abgetotet\",\n  \"abgetreten\": \"abgetret\",\n  \"abgewandt\": \"abgewandt\",\n  \"abgewandte\": \"abgewandt\",\n  \"abgewandtem\": \"abgewandt\",\n  \"abgewartet\": \"abgewartet\",\n  \"abgewaschen\": \"abgewasch\",\n  \"abgewendet\": \"abgewendet\",\n  \"abgewetzte\": \"abgewetzt\",\n  \"abgewetzten\": \"abgewetzt\",\n  \"abgewichen\": \"abgewich\",\n  \"abgewickelt\": \"abgewickelt\",\n  \"abgewinnen\": \"abgewinn\",\n  \"abgewirtschaftet\": \"abgewirtschaftet\",\n  \"abgewogen\": \"abgewog\",\n  \"abgewöhnen\": \"abgewohn\",\n  \"abgewürdigt\": \"abgewurdigt\",\n  \"abgezäunt\": \"abgezaunt\",\n  \"abgezehrt\": \"abgezehrt\",\n  \"abgezirkelten\": \"abgezirkelt\",\n  \"abgezogen\": \"abgezog\",\n  \"abgezogene\": \"abgezog\",\n  \"abgezogenen\": \"abgezog\",\n  \"abgezogenheit\": \"abgezog\",\n  \"abgibt\": \"abgibt\",\n  \"abglitten\": \"abglitt\",\n  \"abgötterei\": \"abgotterei\",\n  \"abgöttereien\": \"abgotterei\",\n  \"abgöttisches\": \"abgott\",\n  \"abgrund\": \"abgrund\",\n  \"abgrunde\": \"abgrund\",\n  \"abgründe\": \"abgrund\",\n  \"abgründen\": \"abgrund\",\n  \"abgrundes\": \"abgrund\",\n  \"abgrunds\": \"abgrund\",\n  \"abhalten\": \"abhalt\",\n  \"abhandlung\": \"abhandl\",\n  \"abhang\": \"abhang\",\n  \"abhange\": \"abhang\",\n  \"abhänge\": \"abhang\",\n  \"abhängen\": \"abhang\",\n  \"abhängend\": \"abhang\",\n  \"abhängig\": \"abhang\",\n  \"abhängigen\": \"abhang\",\n  \"abhängiger\": \"abhang\",\n  \"abhängigkeit\": \"abhang\",\n  \"abhängt\": \"abhangt\",\n  \"abhauen\": \"abhau\",\n  \"abhaut\": \"abhaut\",\n  \"abhebenden\": \"abheb\",\n  \"abhelfen\": \"abhelf\",\n  \"abhielten\": \"abhielt\",\n  \"abhob\": \"abhob\",\n  \"abhoben\": \"abhob\",\n  \"abholen\": \"abhol\",\n  \"abholt\": \"abholt\",\n  \"abhören\": \"abhor\",\n  \"abi\": \"abi\",\n  \"abiasaph\": \"abiasaph\",\n  \"abigrissen\": \"abigriss\",\n  \"abigstiegen\": \"abigstieg\",\n  \"abihu\": \"abihu\",\n  \"abimelech\": \"abimelech\",\n  \"abirrung\": \"abirr\",\n  \"abirrungen\": \"abirr\",\n  \"abjagen\": \"abjag\",\n  \"abkartelt\": \"abkartelt\",\n  \"abkaufen\": \"abkauf\",\n  \"abkehr\": \"abkehr\",\n  \"abklärungen\": \"abklar\",\n  \"abkommens\": \"abkomm\",\n  \"abkühlendes\": \"abkuhl\",\n  \"abkühlung\": \"abkuhl\",\n  \"abkunft\": \"abkunft\",\n  \"ablasse\": \"ablass\",\n  \"ablassen\": \"ablass\",\n  \"ablässt\": \"ablasst\",\n  \"abläßt\": \"ablasst\",\n  \"ablauf\": \"ablauf\",\n  \"ablaufen\": \"ablauf\",\n  \"ablaufende\": \"ablauf\",\n  \"abläutete\": \"ablautet\",\n  \"ablegen\": \"ableg\",\n  \"ablehnen\": \"ablehn\",\n  \"ablehnung\": \"ablehn\",\n  \"ableiten\": \"ableit\",\n  \"ableiter\": \"ableit\",\n  \"ableitet\": \"ableitet\",\n  \"ableitungen\": \"ableit\",\n  \"ablenken\": \"ablenk\",\n  \"ablenkend\": \"ablenk\",\n  \"ablesen\": \"ables\",\n  \"ablesend\": \"ables\",\n  \"ablief\": \"ablief\",\n  \"abliefe\": \"ablief\",\n  \"ablösung\": \"ablos\",\n  \"ablutschen\": \"ablutsch\",\n  \"abmarschiert\": \"abmarschiert\",\n  \"abmühten\": \"abmuht\",\n  \"abnahm\": \"abnahm\",\n  \"abnahme\": \"abnahm\",\n  \"abnehmen\": \"abnehm\",\n  \"abnehmende\": \"abnehm\",\n  \"abnehmenden\": \"abnehm\",\n  \"abneigung\": \"abneig\",\n  \"abnimmt\": \"abnimmt\",\n  \"abnutzen\": \"abnutz\",\n  \"aböden\": \"abod\",\n  \"abödet\": \"abodet\",\n  \"abödung\": \"abod\",\n  \"abödungen\": \"abod\",\n  \"abolent\": \"abolent\",\n  \"abonnieren\": \"abonni\",\n  \"about\": \"about\",\n  \"abquälen\": \"abqual\",\n  \"abraham\": \"abraham\",\n  \"abrahams\": \"abraham\",\n  \"abram\": \"abram\",\n  \"abrams\": \"abram\",\n  \"abraten\": \"abrat\",\n  \"abrechnen\": \"abrechn\",\n  \"abrede\": \"abred\",\n  \"abreiben\": \"abreib\",\n  \"abreise\": \"abreis\",\n  \"abreissen\": \"abreiss\",\n  \"abreißen\": \"abreiss\",\n  \"abrisse\": \"abriss\",\n  \"abrufen\": \"abruf\",\n  \"abrundung\": \"abrund\",\n  \"absage\": \"absag\",\n  \"absalon\": \"absalon\",\n  \"absatz\": \"absatz\",\n  \"abschaffen\": \"abschaff\",\n  \"abschaffung\": \"abschaff\",\n  \"abschaum\": \"abschaum\",\n  \"abscheu\": \"abscheu\",\n  \"abscheuern\": \"abscheu\",\n  \"abscheues\": \"abscheu\",\n  \"abscheulich\": \"abscheulich\",\n  \"abscheuliche\": \"abscheulich\",\n  \"abscheulichen\": \"abscheulich\",\n  \"abscheulicher\": \"abscheulich\",\n  \"abscheulicheres\": \"abscheulich\",\n  \"abscheuliches\": \"abscheulich\",\n  \"abscheulichste\": \"abscheulich\",\n  \"abscheus\": \"abscheus\",\n  \"abschied\": \"abschied\",\n  \"abschiedes\": \"abschied\",\n  \"abschiessen\": \"abschiess\",\n  \"abschlagen\": \"abschlag\",\n  \"abschlägt\": \"abschlagt\",\n  \"abschliessen\": \"abschliess\",\n  \"abschliessender\": \"abschliess\",\n  \"abschliesst\": \"abschliesst\",\n  \"abschließt\": \"abschliesst\",\n  \"abschliessung\": \"abschliess\",\n  \"abschließung\": \"abschliess\",\n  \"abschloss\": \"abschloss\",\n  \"abschlug\": \"abschlug\",\n  \"abschluss\": \"abschluss\",\n  \"abschluß\": \"abschluss\",\n  \"abschneiden\": \"abschneid\",\n  \"abschneidung\": \"abschneid\",\n  \"abschnitt\": \"abschnitt\",\n  \"abschnitte\": \"abschnitt\",\n  \"abschnitten\": \"abschnitt\",\n  \"abschnitts\": \"abschnitt\",\n  \"abschrecken\": \"abschreck\",\n  \"abschrieb\": \"abschrieb\",\n  \"abschrift\": \"abschrift\",\n  \"abschüsse\": \"abschuss\",\n  \"abschüssigen\": \"abschuss\",\n  \"abschütteln\": \"abschutteln\",\n  \"abschüttelten\": \"abschuttelt\",\n  \"abschwächt\": \"abschwacht\",\n  \"abschweifungen\": \"abschweif\",\n  \"abschwenken\": \"abschwenk\",\n  \"absehbar\": \"absehbar\",\n  \"absehen\": \"abseh\",\n  \"absehlichen\": \"abseh\",\n  \"abseits\": \"abseit\",\n  \"absenden\": \"absend\",\n  \"absender\": \"absend\",\n  \"absetzen\": \"absetz\",\n  \"absetzte\": \"absetzt\",\n  \"absicht\": \"absicht\",\n  \"absichten\": \"absicht\",\n  \"absichtlich\": \"absicht\",\n  \"absieht\": \"absieht\",\n  \"absingung\": \"absing\",\n  \"absolut\": \"absolut\",\n  \"absolute\": \"absolut\",\n  \"absolutes\": \"absolut\",\n  \"absolviert\": \"absolviert\",\n  \"absolvierte\": \"absolviert\",\n  \"absonderliche\": \"absond\",\n  \"absonderlichen\": \"absond\",\n  \"absonderlicher\": \"absond\",\n  \"absondert\": \"absondert\",\n  \"absonderungen\": \"absonder\",\n  \"abspenstig\": \"abspenst\",\n  \"abspielten\": \"abspielt\",\n  \"absprang\": \"absprang\",\n  \"abspringend\": \"abspring\",\n  \"abspülen\": \"abspul\",\n  \"abstahl\": \"abstahl\",\n  \"abstamme\": \"abstamm\",\n  \"abstammen\": \"abstamm\",\n  \"abstammenden\": \"abstamm\",\n  \"abstammte\": \"abstammt\",\n  \"abstammten\": \"abstammt\",\n  \"abstammung\": \"abstamm\",\n  \"abstammungen\": \"abstamm\",\n  \"abstatten\": \"abstatt\",\n  \"abstechend\": \"abstech\",\n  \"abstecher\": \"abstech\",\n  \"abstehen\": \"absteh\",\n  \"absteht\": \"absteht\",\n  \"absteigen\": \"absteig\",\n  \"abstellte\": \"abstellt\",\n  \"abstimmung\": \"abstimm\",\n  \"abstimmungdie\": \"abstimmungdi\",\n  \"abstirbt\": \"abstirbt\",\n  \"abstossendes\": \"abstoss\",\n  \"abstoßendes\": \"abstoss\",\n  \"abstracto\": \"abstracto\",\n  \"abstrahieren\": \"abstrahi\",\n  \"abstrahiert\": \"abstrahiert\",\n  \"abstrakt\": \"abstrakt\",\n  \"abstrakten\": \"abstrakt\",\n  \"abstrakter\": \"abstrakt\",\n  \"abstraktion\": \"abstraktion\",\n  \"abstreiten\": \"abstreit\",\n  \"abstufungen\": \"abstuf\",\n  \"abstumpfung\": \"abstumpf\",\n  \"absturz\": \"absturz\",\n  \"abstürze\": \"absturz\",\n  \"abstürzen\": \"absturz\",\n  \"absuchen\": \"absuch\",\n  \"absuchte\": \"absucht\",\n  \"absurden\": \"absurd\",\n  \"abteilung\": \"abteil\",\n  \"abteilungen\": \"abteil\",\n  \"abtraten\": \"abtrat\",\n  \"abtreiben\": \"abtreib\",\n  \"abtreten\": \"abtret\",\n  \"abtun\": \"abtun\",\n  \"aburteilen\": \"aburteil\",\n  \"abwandte\": \"abwandt\",\n  \"abwarten\": \"abwart\",\n  \"abwärts\": \"abwart\",\n  \"abwärtsrichtung\": \"abwartsricht\",\n  \"abwaschbaren\": \"abwaschbar\",\n  \"abwaschen\": \"abwasch\",\n  \"abwaschung\": \"abwasch\",\n  \"abwechselnd\": \"abwechselnd\",\n  \"abwechselndem\": \"abwechselnd\",\n  \"abwechselnder\": \"abwechselnd\",\n  \"abwechselung\": \"abwechsel\",\n  \"abwechslung\": \"abwechsl\",\n  \"abwege\": \"abweg\",\n  \"abwehr\": \"abwehr\",\n  \"abwehrend\": \"abwehr\",\n  \"abwehrendes\": \"abwehr\",\n  \"abwehrmassnahme\": \"abwehrmassnahm\",\n  \"abwehrung\": \"abwehr\",\n  \"abweichen\": \"abweich\",\n  \"abweicht\": \"abweicht\",\n  \"abweichung\": \"abweich\",\n  \"abweiden\": \"abweid\",\n  \"abweisen\": \"abweis\",\n  \"abweisend\": \"abweis\",\n  \"abweist\": \"abweist\",\n  \"abweisung\": \"abweis\",\n  \"abwende\": \"abwend\",\n  \"abwenden\": \"abwend\",\n  \"abwendend\": \"abwend\",\n  \"abwendet\": \"abwendet\",\n  \"abwendig\": \"abwend\",\n  \"abwendung\": \"abwend\",\n  \"abwerfen\": \"abwerf\",\n  \"abwesend\": \"abwes\",\n  \"abwesenden\": \"abwes\",\n  \"abwesenheit\": \"abwes\",\n  \"abwich\": \"abwich\",\n  \"abwickeln\": \"abwickeln\",\n  \"abwinkte\": \"abwinkt\",\n  \"abwischen\": \"abwisch\",\n  \"abwischte\": \"abwischt\",\n  \"abwürdigten\": \"abwurdigt\",\n  \"abwusch\": \"abwusch\",\n  \"abzehrung\": \"abzehr\",\n  \"abziehen\": \"abzieh\",\n  \"abziehenden\": \"abzieh\",\n  \"abzielen\": \"abziel\",\n  \"abzielt\": \"abzielt\",\n  \"abzubeuteln\": \"abzubeuteln\",\n  \"abzubinden\": \"abzubind\",\n  \"abzubringen\": \"abzubring\",\n  \"abzufinden\": \"abzufind\",\n  \"abzuflauen\": \"abzuflau\",\n  \"abzug\": \"abzug\",\n  \"abzuge\": \"abzug\",\n  \"abzugeben\": \"abzugeb\",\n  \"abzugewinnen\": \"abzugewinn\",\n  \"abzugsgräben\": \"abzugsgrab\",\n  \"abzugsschnur\": \"abzugsschnur\",\n  \"abzuhalten\": \"abzuhalt\",\n  \"abzuholen\": \"abzuhol\",\n  \"abzuhören\": \"abzuhor\",\n  \"abzukühlen\": \"abzukuhl\",\n  \"abzukürzen\": \"abzukurz\",\n  \"abzuladen\": \"abzulad\",\n  \"abzulassen\": \"abzulass\",\n  \"abzulaufen\": \"abzulauf\",\n  \"abzulauschen\": \"abzulausch\",\n  \"abzulegen\": \"abzuleg\",\n  \"abzulehnenden\": \"abzulehn\",\n  \"abzuleugnen\": \"abzuleugn\",\n  \"abzumachen\": \"abzumach\",\n  \"abzupflücken\": \"abzupfluck\",\n  \"abzureisen\": \"abzureis\",\n  \"abzureissen\": \"abzureiss\",\n  \"abzuschicken\": \"abzuschick\",\n  \"abzuschlagen\": \"abzuschlag\",\n  \"abzuschliessen\": \"abzuschliess\",\n  \"abzuschrecken\": \"abzuschreck\",\n  \"abzuschütteln\": \"abzuschutteln\",\n  \"abzusehen\": \"abzuseh\",\n  \"abzusprengen\": \"abzuspreng\",\n  \"abzustehen\": \"abzusteh\",\n  \"abzustreiten\": \"abzustreit\",\n  \"abzustumpfen\": \"abzustumpf\",\n  \"abzutreten\": \"abzutret\",\n  \"abzuwarten\": \"abzuwart\",\n  \"abzuwehren\": \"abzuwehr\",\n  \"abzuwenden\": \"abzuw\",\n  \"abzuwischen\": \"abzuw\",\n  \"abzuziehen\": \"abzuzieh\",\n  \"abzweckt\": \"abzweckt\",\n  \"abzweckung\": \"abzweck\",\n  \"accidens\": \"accid\",\n  \"ach\": \"ach\",\n  \"achias\": \"achias\",\n  \"achijas\": \"achijas\",\n  \"achis\": \"achis\",\n  \"achitophel\": \"achitophel\",\n  \"achseln\": \"achseln\",\n  \"achselzucken\": \"achselzuck\",\n  \"achselzuckend\": \"achselzuck\",\n  \"acht\": \"acht\",\n  \"achtbarsten\": \"achtbarst\",\n  \"achte\": \"acht\",\n  \"achten\": \"acht\",\n  \"achtes\": \"acht\",\n  \"achtet\": \"achtet\",\n  \"achtete\": \"achtet\",\n  \"achteten\": \"achtet\",\n  \"achtgab\": \"achtgab\",\n  \"achtgeben\": \"achtgeb\",\n  \"achtgegeben\": \"achtgegeb\",\n  \"achthundert\": \"achthundert\",\n  \"achtjähriges\": \"achtjahr\",\n  \"achtliche\": \"achtlich\",\n  \"achtlos\": \"achtlos\",\n  \"achtlose\": \"achtlos\",\n  \"achtsam\": \"achtsam\",\n  \"achtsamkeit\": \"achtsam\",\n  \"achtundvierzig\": \"achtundvierz\",\n  \"achtundzwanzig\": \"achtundzwanz\",\n  \"achtung\": \"achtung\",\n  \"achtungsvoller\": \"achtungsvoll\",\n  \"achtungsvolles\": \"achtungsvoll\",\n  \"achtungswerten\": \"achtungswert\",\n  \"achtzehn\": \"achtzehn\",\n  \"achtzehnjährigem\": \"achtzehnjahr\",\n  \"achtzehnjährigen\": \"achtzehnjahr\",\n  \"achtzig\": \"achtzig\",\n  \"achtziger\": \"achtzig\",\n  \"achtzugeben\": \"achtzugeb\",\n  \"ächzen\": \"achz\",\n  \"ächzendes\": \"achzend\",\n  \"acker\": \"ack\",\n  \"äcker\": \"ack\",\n  \"ackerfeld\": \"ackerfeld\",\n  \"ackerland\": \"ackerland\",\n  \"ackerleute\": \"ackerleut\",\n  \"äckern\": \"ack\",\n  \"ackers\": \"ack\",\n  \"ackersmann\": \"ackersmann\",\n  \"ackerstein\": \"ackerstein\",\n  \"ackerstreifen\": \"ackerstreif\",\n  \"ackerwirtschaft\": \"ackerwirtschaft\",\n  \"ackerzipfel\": \"ackerzipfel\",\n  \"ackerzipfelchen\": \"ackerzipfelch\",\n  \"ad\": \"ad\",\n  \"ada\": \"ada\",\n  \"adah\": \"adah\",\n  \"adam\": \"adam\",\n  \"adamah\": \"adamah\",\n  \"adams\": \"adam\",\n  \"adamshof\": \"adamshof\",\n  \"adäquat\": \"adaquat\",\n  \"adäquaten\": \"adaquat\",\n  \"ade\": \"ade\",\n  \"adel\": \"adel\",\n  \"adelaide\": \"adelaid\",\n  \"adele\": \"adel\",\n  \"adelsgespons\": \"adelsgespon\",\n  \"adelsherrn\": \"adelsherrn\",\n  \"adelshochmut\": \"adelshochmut\",\n  \"adelsliebchen\": \"adelsliebch\",\n  \"adepten\": \"adept\",\n  \"ader\": \"ader\",\n  \"aderlassen\": \"aderlass\",\n  \"aderlassmännchen\": \"aderlassmannch\",\n  \"adern\": \"adern\",\n  \"adieu\": \"adieu\",\n  \"adjektiv\": \"adjektiv\",\n  \"adler\": \"adl\",\n  \"adlerflügeln\": \"adlerflugeln\",\n  \"adlerweibchen\": \"adlerweibch\",\n  \"adn\": \"adn\",\n  \"adoration\": \"adoration\",\n  \"adresse\": \"adress\",\n  \"advanced\": \"advanced\",\n  \"advokat\": \"advokat\",\n  \"advokaten\": \"advokat\",\n  \"advokatenarbeit\": \"advokatenarbeit\",\n  \"advokatenkreisen\": \"advokatenkreis\",\n  \"advokatenzimmer\": \"advokatenzimm\",\n  \"aeternitatis\": \"aeternitatis\",\n  \"affäre\": \"affar\",\n  \"äffchen\": \"affch\",\n  \"affe\": \"aff\",\n  \"affectio\": \"affectio\",\n  \"affectiones\": \"affection\",\n  \"affekt\": \"affekt\",\n  \"affen\": \"aff\",\n  \"äffen\": \"aff\",\n  \"affenschwänze\": \"affenschwanz\",\n  \"affinitates\": \"affinitat\",\n  \"affizierenden\": \"affizier\",\n  \"affiziert\": \"affiziert\",\n  \"affizierten\": \"affiziert\",\n  \"afrika\": \"afrika\",\n  \"afrikanischen\": \"afrikan\",\n  \"aftermiete\": \"aftermiet\",\n  \"againdabei\": \"againdabei\",\n  \"agathon\": \"agathon\",\n  \"agck\": \"agck\",\n  \"agent\": \"agent\",\n  \"agenten\": \"agent\",\n  \"ager\": \"ager\",\n  \"agnetendorfer\": \"agnetendorf\",\n  \"agwnistikon\": \"agwnistikon\",\n  \"ägypten\": \"agypt\",\n  \"ägyptenland\": \"agyptenland\",\n  \"ägyptenlandes\": \"agyptenland\",\n  \"ägyptenlands\": \"agyptenland\",\n  \"ägyptens\": \"agypt\",\n  \"ägypter\": \"agypt\",\n  \"ägyptern\": \"agypt\",\n  \"ägypters\": \"agypt\",\n  \"ägyptischen\": \"agypt\",\n  \"ägyptischer\": \"agypt\",\n  \"ah\": \"ah\",\n  \"aharon\": \"aharon\",\n  \"aharons\": \"aharon\",\n  \"ahmten\": \"ahmt\",\n  \"ahndung\": \"ahndung\",\n  \"ahne\": \"ahn\",\n  \"ahnen\": \"ahn\",\n  \"ahnherr\": \"ahnherr\",\n  \"ahnl\": \"ahnl\",\n  \"ähnlich\": \"ahnlich\",\n  \"ähnliche\": \"ahnlich\",\n  \"ähnlichem\": \"ahnlich\",\n  \"ähnlichen\": \"ahnlich\",\n  \"ähnlicher\": \"ahnlich\",\n  \"ahnliches\": \"ahnlich\",\n  \"ähnliches\": \"ahnlich\",\n  \"ähnlichkeit\": \"ahnlich\",\n  \"ähnlichkeiten\": \"ahnlich\",\n  \"ahnt\": \"ahnt\",\n  \"ahnte\": \"ahnt\",\n  \"ahnung\": \"ahnung\",\n  \"ahnungen\": \"ahnung\",\n  \"ahnungslos\": \"ahnungslos\",\n  \"ahornbäume\": \"ahornbaum\",\n  \"ahornstämmchen\": \"ahornstammch\",\n  \"ähre\": \"ahr\",\n  \"ähren\": \"ahr\",\n  \"ai\": \"ai\",\n  \"aimer\": \"aim\",\n  \"airfares\": \"airfar\",\n  \"airline\": \"airlin\",\n  \"aiso\": \"aiso\",\n  \"akazien\": \"akazi\",\n  \"akkommodements\": \"akkommodement\",\n  \"akkompagnierend\": \"akkompagnier\",\n  \"akkorde\": \"akkord\",\n  \"akkorden\": \"akkord\",\n  \"akkordes\": \"akkord\",\n  \"akkusativ\": \"akkusativ\",\n  \"akkusative\": \"akkusativ\",\n  \"akrat\": \"akrat\",\n  \"akt\": \"akt\",\n  \"akten\": \"akt\",\n  \"aktendiebstählen\": \"aktendiebstahl\",\n  \"aktien\": \"akti\",\n  \"aktienbierbrauerei\": \"aktienbierbrauerei\",\n  \"aktienbrauerei\": \"aktienbrauerei\",\n  \"aktienhopfenpflanzung\": \"aktienhopfenpflanz\",\n  \"aktienschwindels\": \"aktienschwindel\",\n  \"aktion\": \"aktion\",\n  \"aktionen\": \"aktion\",\n  \"aktivdienstgeneration\": \"aktivdienstgeneration\",\n  \"aktiven\": \"aktiv\",\n  \"aktivitäten\": \"aktivitat\",\n  \"aktuell\": \"aktuell\",\n  \"akustik\": \"akust\",\n  \"akustikfreien\": \"akustikfrei\",\n  \"akustische\": \"akust\",\n  \"akustisehen\": \"akustiseh\",\n  \"akzeptiert\": \"akzeptiert\",\n  \"akzidentell\": \"akzidentell\",\n  \"alar\": \"alar\",\n  \"alarm\": \"alarm\",\n  \"alarmknopf\": \"alarmknopf\",\n  \"alato\": \"alato\",\n  \"albern\": \"alb\",\n  \"albernen\": \"albern\",\n  \"albernes\": \"albern\",\n  \"albernheit\": \"albern\",\n  \"album\": \"album\",\n  \"alcopops\": \"alcopops\",\n  \"aleviten\": \"alevit\",\n  \"alex\": \"alex\",\n  \"alfred\": \"alfred\",\n  \"alga\": \"alga\",\n  \"algen\": \"alg\",\n  \"algier\": \"algi\",\n  \"alhjeia\": \"alhjeia\",\n  \"aliud\": \"aliud\",\n  \"alkali\": \"alkali\",\n  \"alkohol\": \"alkohol\",\n  \"alkoholgesetz\": \"alkoholgesetz\",\n  \"alkoholhaltige\": \"alkoholhalt\",\n  \"alkoholiker\": \"alkohol\",\n  \"alkoholischer\": \"alkohol\",\n  \"alkoholkonsum\": \"alkoholkonsum\",\n  \"alkoholverwaltung\": \"alkoholverwalt\",\n  \"all\": \"all\",\n  \"allabendlich\": \"allabend\",\n  \"allabentlich\": \"allabent\",\n  \"allbereits\": \"allbereit\",\n  \"allda\": \"allda\",\n  \"alldem\": \"alld\",\n  \"alle\": \"all\",\n  \"alledem\": \"alled\",\n  \"allee\": \"alle\",\n  \"alleebäumen\": \"alleebaum\",\n  \"allegorie\": \"allegori\",\n  \"allein\": \"allein\",\n  \"alleinherrschaft\": \"alleinherrschaft\",\n  \"alleinige\": \"allein\",\n  \"alleinigen\": \"allein\",\n  \"allem\": \"all\",\n  \"allemal\": \"allemal\",\n  \"allen\": \"all\",\n  \"allendlich\": \"allend\",\n  \"allenfalls\": \"allenfall\",\n  \"allenthalben\": \"allenthalb\",\n  \"aller\": \"all\",\n  \"allerallgemeinste\": \"allerallgemein\",\n  \"allerallgemeinsten\": \"allerallgemein\",\n  \"alleräusserlichste\": \"allerauss\",\n  \"allerbescheidenstes\": \"allerbescheiden\",\n  \"allerdings\": \"allerding\",\n  \"allerdurchtriebenste\": \"allerdurchtrieben\",\n  \"allereinzelnsten\": \"allereinzeln\",\n  \"allerengsten\": \"allereng\",\n  \"allerentferntesten\": \"allerentfernt\",\n  \"allererst\": \"allererst\",\n  \"allerersten\": \"allererst\",\n  \"allergelindeste\": \"allergelind\",\n  \"allergrösste\": \"allergrosst\",\n  \"allerhand\": \"allerhand\",\n  \"allerheiligste\": \"allerheil\",\n  \"allerherzlichste\": \"allerherz\",\n  \"allerkleinsten\": \"allerklein\",\n  \"allerkleinstes\": \"allerklein\",\n  \"allerkostbarsten\": \"allerkostbarst\",\n  \"allerkürzeste\": \"allerkurz\",\n  \"allerlei\": \"allerlei\",\n  \"allerletzt\": \"allerletzt\",\n  \"allerliebste\": \"allerlieb\",\n  \"allerliebstes\": \"allerlieb\",\n  \"allernächster\": \"allernach\",\n  \"allerniederträchtigstes\": \"allerniedertracht\",\n  \"allerorten\": \"allerort\",\n  \"allerschlimmste\": \"allerschlimm\",\n  \"allerschlimmsten\": \"allerschlimm\",\n  \"allerschönste\": \"allerschon\",\n  \"allerschönsten\": \"allerschon\",\n  \"allerseits\": \"allerseit\",\n  \"allerseltsamsten\": \"allerseltsam\",\n  \"allerunheimlichste\": \"allerunheim\",\n  \"allerunterste\": \"allerunterst\",\n  \"allerverkehrteste\": \"allerverkehrt\",\n  \"allervernünftigsten\": \"allervernunft\",\n  \"allerwegen\": \"allerweg\",\n  \"allerweissesten\": \"allerweiss\",\n  \"allerwenigsten\": \"allerwen\",\n  \"alles\": \"all\",\n  \"allezeit\": \"allezeit\",\n  \"allfort\": \"allfort\",\n  \"allgegenwart\": \"allgegenwart\",\n  \"allgegenwärtig\": \"allgegenwart\",\n  \"allgemein\": \"allgemein\",\n  \"allgemeine\": \"allgemein\",\n  \"allgemeinem\": \"allgemein\",\n  \"allgemeinen\": \"allgemein\",\n  \"allgemeiner\": \"allgemein\",\n  \"allgemeinere\": \"allgemein\",\n  \"allgemeineren\": \"allgemein\",\n  \"allgemeines\": \"allgemein\",\n  \"allgemeingültigkeit\": \"allgemeingult\",\n  \"allgemeinheit\": \"allgemein\",\n  \"allgemeinste\": \"allgemein\",\n  \"allgemeinsten\": \"allgemein\",\n  \"allgemeinstes\": \"allgemein\",\n  \"allgewaltige\": \"allgewalt\",\n  \"allgewaltigen\": \"allgewalt\",\n  \"allgütigkeit\": \"allgut\",\n  \"allherbstlich\": \"allherbst\",\n  \"allhier\": \"allhi\",\n  \"alljährlich\": \"alljahr\",\n  \"allmacht\": \"allmacht\",\n  \"allmächtig\": \"allmacht\",\n  \"allmächtige\": \"allmacht\",\n  \"allmächtigen\": \"allmacht\",\n  \"allmählich\": \"allmah\",\n  \"allmähliche\": \"allmah\",\n  \"allmählig\": \"allmahl\",\n  \"allmal\": \"allmal\",\n  \"allnächtlich\": \"allnacht\",\n  \"allnirgends\": \"allnirg\",\n  \"allobrogische\": \"allobrog\",\n  \"allobrogischen\": \"allobrog\",\n  \"alls\": \"all\",\n  \"alltag\": \"alltag\",\n  \"alltäglich\": \"alltag\",\n  \"alltägliche\": \"alltag\",\n  \"allumfassende\": \"allumfass\",\n  \"allumfassenden\": \"allumfass\",\n  \"allwaltende\": \"allwalt\",\n  \"allwärts\": \"allwart\",\n  \"allweg\": \"allweg\",\n  \"allweil\": \"allweil\",\n  \"allwissend\": \"allwiss\",\n  \"allwissenheit\": \"allwiss\",\n  \"allwo\": \"allwo\",\n  \"allwöchentlich\": \"allwochent\",\n  \"allzeit\": \"allzeit\",\n  \"allzu\": \"allzu\",\n  \"allzulange\": \"allzulang\",\n  \"allzumal\": \"allzumal\",\n  \"allzunahen\": \"allzunah\",\n  \"allzusehr\": \"allzusehr\",\n  \"alm\": \"alm\",\n  \"almen\": \"alm\",\n  \"almrausch\": \"almrausch\",\n  \"alpennatur\": \"alpennatur\",\n  \"als\": \"als\",\n  \"alsbald\": \"alsbald\",\n  \"alsdann\": \"alsdann\",\n  \"also\": \"also\",\n  \"alsobald\": \"alsobald\",\n  \"alsogleich\": \"alsogleich\",\n  \"alt\": \"alt\",\n  \"altar\": \"altar\",\n  \"altare\": \"altar\",\n  \"altäre\": \"altar\",\n  \"altären\": \"altar\",\n  \"altars\": \"altar\",\n  \"altbekannten\": \"altbekannt\",\n  \"alte\": \"alt\",\n  \"altem\": \"alt\",\n  \"alten\": \"alt\",\n  \"alter\": \"alt\",\n  \"älter\": \"alt\",\n  \"ältere\": \"alt\",\n  \"älteren\": \"alt\",\n  \"älterer\": \"alt\",\n  \"ältern\": \"alt\",\n  \"alternative\": \"alternativ\",\n  \"alternativen\": \"alternativ\",\n  \"alternativpolitik\": \"alternativpolit\",\n  \"alternde\": \"alternd\",\n  \"alternden\": \"alternd\",\n  \"alters\": \"alt\",\n  \"altersleiden\": \"altersleid\",\n  \"altersschwäche\": \"altersschwach\",\n  \"altert\": \"altert\",\n  \"altertum\": \"altertum\",\n  \"altertümlichen\": \"altertum\",\n  \"altertums\": \"altertum\",\n  \"altes\": \"alt\",\n  \"älteste\": \"alt\",\n  \"ältesten\": \"alt\",\n  \"alteweibersommers\": \"alteweibersomm\",\n  \"altjungferngesicht\": \"altjungferngesicht\",\n  \"ältliche\": \"altlich\",\n  \"altmodisch\": \"altmod\",\n  \"altranning\": \"altranning\",\n  \"alts\": \"alt\",\n  \"altstimme\": \"altstimm\",\n  \"altväterische\": \"altvater\",\n  \"altväterischer\": \"altvater\",\n  \"alumnus\": \"alumnus\",\n  \"am\": \"am\",\n  \"amal\": \"amal\",\n  \"amalek\": \"amalek\",\n  \"amalie\": \"amali\",\n  \"amazonenhafter\": \"amazonenhaft\",\n  \"ambiente\": \"ambient\",\n  \"ambros\": \"ambros\",\n  \"ameise\": \"ameis\",\n  \"ameisen\": \"ameis\",\n  \"amen\": \"amen\",\n  \"amer\": \"amer\",\n  \"amerika\": \"amerika\",\n  \"amerikaner\": \"amerikan\",\n  \"amerikanern\": \"amerikan\",\n  \"amerikanische\": \"amerikan\",\n  \"amerikanischen\": \"amerikan\",\n  \"amhag\": \"amhag\",\n  \"amiga\": \"amiga\",\n  \"amme\": \"amm\",\n  \"amminadabs\": \"amminadab\",\n  \"ammoniter\": \"ammonit\",\n  \"ammons\": \"ammon\",\n  \"amnestie\": \"amnesti\",\n  \"amnesty\": \"amnesty\",\n  \"amol\": \"amol\",\n  \"amor\": \"amor\",\n  \"amörchen\": \"amorch\",\n  \"amores\": \"amor\",\n  \"amoribus\": \"amoribus\",\n  \"amoriter\": \"amorit\",\n  \"amoriters\": \"amorit\",\n  \"amos\": \"amos\",\n  \"amour\": \"amour\",\n  \"amrain\": \"amrain\",\n  \"amram\": \"amram\",\n  \"amrans\": \"amran\",\n  \"amsterdam\": \"amsterdam\",\n  \"amt\": \"amt\",\n  \"ämtchen\": \"amtch\",\n  \"amte\": \"amt\",\n  \"ämter\": \"amt\",\n  \"amtes\": \"amt\",\n  \"amtleute\": \"amtleut\",\n  \"amtleuten\": \"amtleut\",\n  \"amtlich\": \"amtlich\",\n  \"amtsdauer\": \"amtsdau\",\n  \"amtsdauern\": \"amtsdau\",\n  \"amtsgeheimnisse\": \"amtsgeheimnis\",\n  \"amtsrat\": \"amtsrat\",\n  \"amtsrates\": \"amtsrat\",\n  \"amtsrats\": \"amtsrat\",\n  \"amtssprache\": \"amtssprach\",\n  \"amtsstube\": \"amtsstub\",\n  \"amüsant\": \"amusant\",\n  \"amüsieren\": \"amusi\",\n  \"amüsiert\": \"amusiert\",\n  \"an\": \"an\",\n  \"anaks\": \"anak\",\n  \"analogie\": \"analogi\",\n  \"analogisch\": \"analog\",\n  \"analogon\": \"analogon\",\n  \"analysierbarer\": \"analysierbar\",\n  \"analysieren\": \"analysi\",\n  \"analyticis\": \"analyticis\",\n  \"analytik\": \"analyt\",\n  \"analytisch\": \"analyt\",\n  \"analytischen\": \"analyt\",\n  \"anap\": \"anap\",\n  \"anarchie\": \"anarchi\",\n  \"anarchischen\": \"anarch\",\n  \"anaskeuazein\": \"anaskeuazein\",\n  \"anaskeuazomen\": \"anaskeuazom\",\n  \"anaxagoras\": \"anaxagoras\",\n  \"anbaueten\": \"anbauet\",\n  \"anbeginn\": \"anbeginn\",\n  \"anbehalten\": \"anbehalt\",\n  \"anbelangt\": \"anbelangt\",\n  \"anbellte\": \"anbellt\",\n  \"anbeten\": \"anbet\",\n  \"anbeter\": \"anbet\",\n  \"anbetern\": \"anbet\",\n  \"anbetet\": \"anbetet\",\n  \"anbetete\": \"anbetet\",\n  \"anbeteten\": \"anbetet\",\n  \"anbetrifft\": \"anbetrifft\",\n  \"anbetung\": \"anbet\",\n  \"anbey\": \"anbey\",\n  \"anbieten\": \"anbiet\",\n  \"anbietend\": \"anbiet\",\n  \"anbietet\": \"anbietet\",\n  \"anbildet\": \"anbildet\",\n  \"anbinden\": \"anbind\",\n  \"anbindung\": \"anbind\",\n  \"anbissen\": \"anbiss\",\n  \"anblick\": \"anblick\",\n  \"anblicke\": \"anblick\",\n  \"anblicken\": \"anblick\",\n  \"anblicks\": \"anblick\",\n  \"anblickte\": \"anblickt\",\n  \"anbot\": \"anbot\",\n  \"anböten\": \"anbot\",\n  \"anbringen\": \"anbring\",\n  \"anbruch\": \"anbruch\",\n  \"and\": \"and\",\n  \"andacht\": \"andacht\",\n  \"andächtig\": \"andacht\",\n  \"andächtige\": \"andacht\",\n  \"andächtigen\": \"andacht\",\n  \"andächtiger\": \"andacht\",\n  \"andauernde\": \"andauernd\",\n  \"andenken\": \"andenk\",\n  \"andenkens\": \"andenk\",\n  \"ander\": \"and\",\n  \"anderau\": \"anderau\",\n  \"anderckens\": \"anderck\",\n  \"andere\": \"and\",\n  \"anderem\": \"and\",\n  \"anderen\": \"and\",\n  \"anderer\": \"and\",\n  \"andererseits\": \"andererseit\",\n  \"anderes\": \"and\",\n  \"anderl\": \"anderl\",\n  \"anderls\": \"anderl\",\n  \"anderm\": \"anderm\",\n  \"andern\": \"and\",\n  \"ändern\": \"and\",\n  \"anders\": \"and\",\n  \"anderseits\": \"anderseit\",\n  \"anderswo\": \"anderswo\",\n  \"anderswoher\": \"anderswoh\",\n  \"anderswohin\": \"anderswohin\",\n  \"ändert\": \"andert\",\n  \"änderte\": \"andert\",\n  \"anderthalb\": \"anderthalb\",\n  \"änderung\": \"ander\",\n  \"änderungen\": \"ander\",\n  \"anderwärts\": \"anderwart\",\n  \"anderweis\": \"anderweis\",\n  \"anderweitig\": \"anderweit\",\n  \"anderweitige\": \"anderweit\",\n  \"anderweitigen\": \"anderweit\",\n  \"andeutet\": \"andeutet\",\n  \"andeutungsweise\": \"andeutungsweis\",\n  \"andre\": \"andr\",\n  \"andreas\": \"andreas\",\n  \"andrer\": \"andr\",\n  \"andrerseits\": \"andrerseit\",\n  \"andres\": \"andr\",\n  \"andringling\": \"andringling\",\n  \"androhung\": \"androh\",\n  \"androhungen\": \"androh\",\n  \"aneignen\": \"aneign\",\n  \"aneignet\": \"aneignet\",\n  \"aneignete\": \"aneignet\",\n  \"aneigneten\": \"aneignet\",\n  \"aneignung\": \"aneign\",\n  \"aneinander\": \"aneinand\",\n  \"aneinandergebracht\": \"aneinandergebracht\",\n  \"aneinandergelehnt\": \"aneinandergelehnt\",\n  \"aneinandergeschmiegt\": \"aneinandergeschmiegt\",\n  \"anerbieten\": \"anerbiet\",\n  \"anererbtem\": \"anererbt\",\n  \"anererbten\": \"anererbt\",\n  \"anererbtes\": \"anererbt\",\n  \"anerkannt\": \"anerkannt\",\n  \"anerkannte\": \"anerkannt\",\n  \"anerkannten\": \"anerkannt\",\n  \"anerkanntesten\": \"anerkannt\",\n  \"anerkenne\": \"anerkenn\",\n  \"anerkennen\": \"anerkenn\",\n  \"anerkennt\": \"anerkennt\",\n  \"anerkennung\": \"anerkenn\",\n  \"anfahren\": \"anfahr\",\n  \"anfall\": \"anfall\",\n  \"anfälle\": \"anfall\",\n  \"anfällen\": \"anfall\",\n  \"anfang\": \"anfang\",\n  \"anfange\": \"anfang\",\n  \"anfänge\": \"anfang\",\n  \"anfangen\": \"anfang\",\n  \"anfängen\": \"anfang\",\n  \"anfangend\": \"anfang\",\n  \"anfanges\": \"anfang\",\n  \"anfänglich\": \"anfang\",\n  \"anfangs\": \"anfang\",\n  \"anfängt\": \"anfangt\",\n  \"anfassen\": \"anfass\",\n  \"anfechten\": \"anfecht\",\n  \"anfechtende\": \"anfecht\",\n  \"anfechtenden\": \"anfecht\",\n  \"anfechter\": \"anfecht\",\n  \"anfechtern\": \"anfecht\",\n  \"anfechtung\": \"anfecht\",\n  \"anfechtungen\": \"anfecht\",\n  \"anfeinden\": \"anfeind\",\n  \"anfertigen\": \"anfert\",\n  \"anficht\": \"anficht\",\n  \"anfing\": \"anfing\",\n  \"anfinge\": \"anfing\",\n  \"anfingen\": \"anfing\",\n  \"anflehen\": \"anfleh\",\n  \"anflehend\": \"anfleh\",\n  \"anfleht\": \"anfleht\",\n  \"anflehte\": \"anfleht\",\n  \"anflug\": \"anflug\",\n  \"anfocht\": \"anfocht\",\n  \"anfochten\": \"anfocht\",\n  \"anforderungen\": \"anforder\",\n  \"anforderungsprofil\": \"anforderungsprofil\",\n  \"anfrage\": \"anfrag\",\n  \"anfragen\": \"anfrag\",\n  \"anführen\": \"anfuhr\",\n  \"anfüllen\": \"anfull\",\n  \"anfüllte\": \"anfullt\",\n  \"ang\": \"ang\",\n  \"angab\": \"angab\",\n  \"angabe\": \"angab\",\n  \"angaben\": \"angab\",\n  \"angafften\": \"angafft\",\n  \"angähnte\": \"angahnt\",\n  \"angeb\": \"angeb\",\n  \"angebaut\": \"angebaut\",\n  \"angeben\": \"angeb\",\n  \"angebetet\": \"angebetet\",\n  \"angebissene\": \"angebiss\",\n  \"angeblich\": \"angeb\",\n  \"angeblichen\": \"angeb\",\n  \"angeblicher\": \"angeb\",\n  \"angeboren\": \"angebor\",\n  \"angeborenen\": \"angebor\",\n  \"angeborener\": \"angebor\",\n  \"angeborne\": \"angeborn\",\n  \"angebornen\": \"angeborn\",\n  \"angebot\": \"angebot\",\n  \"angebote\": \"angebot\",\n  \"angeboten\": \"angebot\",\n  \"angebotenem\": \"angebot\",\n  \"angebotenen\": \"angebot\",\n  \"angebotenes\": \"angebot\",\n  \"angebotes\": \"angebot\",\n  \"angebracht\": \"angebracht\",\n  \"angebrannt\": \"angebrannt\",\n  \"angebrochen\": \"angebroch\",\n  \"angebunden\": \"angebund\",\n  \"angebundenen\": \"angebund\",\n  \"angedeutet\": \"angedeutet\",\n  \"angedreht\": \"angedreht\",\n  \"angedroht\": \"angedroht\",\n  \"angeeignet\": \"angeeignet\",\n  \"angefangen\": \"angefang\",\n  \"angefangenen\": \"angefang\",\n  \"angefasst\": \"angefasst\",\n  \"angefaßt\": \"angefasst\",\n  \"angefeindet\": \"angefeindet\",\n  \"angefeuert\": \"angefeuert\",\n  \"angefleht\": \"angefleht\",\n  \"angefochten\": \"angefocht\",\n  \"angefragt\": \"angefragt\",\n  \"angeführt\": \"angefuhrt\",\n  \"angeführten\": \"angefuhrt\",\n  \"angefüllt\": \"angefullt\",\n  \"angefüllten\": \"angefullt\",\n  \"angegeben\": \"angegeb\",\n  \"angegebenen\": \"angegeb\",\n  \"angegriffen\": \"angegriff\",\n  \"angehaftet\": \"angehaftet\",\n  \"angehalten\": \"angehalt\",\n  \"angehängt\": \"angehangt\",\n  \"angehängte\": \"angehangt\",\n  \"angehängten\": \"angehangt\",\n  \"angehe\": \"angeh\",\n  \"angehende\": \"angeh\",\n  \"angehenden\": \"angeh\",\n  \"angehoben\": \"angehob\",\n  \"angehör\": \"angehor\",\n  \"angehöre\": \"angehor\",\n  \"angehören\": \"angehor\",\n  \"angehörend\": \"angehor\",\n  \"angehöret\": \"angehoret\",\n  \"angehörig\": \"angehor\",\n  \"angehörige\": \"angehor\",\n  \"angehörigen\": \"angehor\",\n  \"angehöriges\": \"angehor\",\n  \"angehört\": \"angehort\",\n  \"angehörte\": \"angehort\",\n  \"angehörten\": \"angehort\",\n  \"angeht\": \"angeht\",\n  \"angekauften\": \"angekauft\",\n  \"angeklagt\": \"angeklagt\",\n  \"angeklagte\": \"angeklagt\",\n  \"angeklagten\": \"angeklagt\",\n  \"angeklagter\": \"angeklagt\",\n  \"angeklammert\": \"angeklammert\",\n  \"angeklatschtem\": \"angeklatscht\",\n  \"angeklebt\": \"angeklebt\",\n  \"angeklebte\": \"angeklebt\",\n  \"angekleidet\": \"angekleidet\",\n  \"angeknüpft\": \"angeknupft\",\n  \"angeknurrt\": \"angeknurrt\",\n  \"angekommen\": \"angekomm\",\n  \"angekündigt\": \"angekundigt\",\n  \"angel\": \"angel\",\n  \"angelangt\": \"angelangt\",\n  \"angelaufen\": \"angelauf\",\n  \"angelegenen\": \"angeleg\",\n  \"angelegenheit\": \"angeleg\",\n  \"angelegenheiten\": \"angeleg\",\n  \"angelegentlich\": \"angelegent\",\n  \"angelegentlichen\": \"angelegent\",\n  \"angelegentlicher\": \"angelegent\",\n  \"angelegentlichste\": \"angelegent\",\n  \"angelegt\": \"angelegt\",\n  \"angelegten\": \"angelegt\",\n  \"angelegtes\": \"angelegt\",\n  \"angeleitet\": \"angeleitet\",\n  \"angelika\": \"angelika\",\n  \"angeln\": \"angeln\",\n  \"angelrute\": \"angelrut\",\n  \"angelte\": \"angelt\",\n  \"angemachten\": \"angemacht\",\n  \"angemasst\": \"angemasst\",\n  \"angemaßt\": \"angemasst\",\n  \"angemassten\": \"angemasst\",\n  \"angemessen\": \"angemess\",\n  \"angemessene\": \"angemess\",\n  \"angemessenen\": \"angemess\",\n  \"angemessener\": \"angemess\",\n  \"angemessenheit\": \"angemess\",\n  \"angenagelt\": \"angenagelt\",\n  \"angenehm\": \"angenehm\",\n  \"angenehme\": \"angenehm\",\n  \"angenehmen\": \"angenehm\",\n  \"angenehmer\": \"angenehm\",\n  \"angenehmeres\": \"angenehm\",\n  \"angenehmes\": \"angenehm\",\n  \"angenehmste\": \"angenehm\",\n  \"angenehmsten\": \"angenehm\",\n  \"angenommen\": \"angenomm\",\n  \"angenommene\": \"angenomm\",\n  \"angenommenen\": \"angenomm\",\n  \"angenommenes\": \"angenomm\",\n  \"angeordnet\": \"angeordnet\",\n  \"angepasst\": \"angepasst\",\n  \"angepaßt\": \"angepasst\",\n  \"angepflanzt\": \"angepflanzt\",\n  \"angeplanscht\": \"angeplanscht\",\n  \"angepumpt\": \"angepumpt\",\n  \"anger\": \"ang\",\n  \"angeredet\": \"angeredet\",\n  \"angeregt\": \"angeregt\",\n  \"angeregter\": \"angeregt\",\n  \"angereist\": \"angereist\",\n  \"angerichtet\": \"angerichtet\",\n  \"angeriemten\": \"angeriemt\",\n  \"angerufen\": \"angeruf\",\n  \"angerührt\": \"angeruhrt\",\n  \"angesagteste\": \"angesagt\",\n  \"angesammelte\": \"angesammelt\",\n  \"angeschafft\": \"angeschafft\",\n  \"angeschaut\": \"angeschaut\",\n  \"angeschickt\": \"angeschickt\",\n  \"angeschlossen\": \"angeschloss\",\n  \"angeschlurft\": \"angeschlurft\",\n  \"angeschrieben\": \"angeschrieb\",\n  \"angeschrien\": \"angeschri\",\n  \"angeschwollen\": \"angeschwoll\",\n  \"angesehen\": \"angeseh\",\n  \"angesehensten\": \"angesehen\",\n  \"angesetzt\": \"angesetzt\",\n  \"angesicht\": \"angesicht\",\n  \"angesichte\": \"angesicht\",\n  \"angesichten\": \"angesicht\",\n  \"angesichter\": \"angesicht\",\n  \"angesichtern\": \"angesicht\",\n  \"angesichtes\": \"angesicht\",\n  \"angesichts\": \"angesicht\",\n  \"angesiedelt\": \"angesiedelt\",\n  \"angesprochen\": \"angesproch\",\n  \"angesteckt\": \"angesteckt\",\n  \"angestellt\": \"angestellt\",\n  \"angestellte\": \"angestellt\",\n  \"angestellten\": \"angestellt\",\n  \"angestellter\": \"angestellt\",\n  \"angestiert\": \"angestiert\",\n  \"angestrengt\": \"angestrengt\",\n  \"angestrengten\": \"angestrengt\",\n  \"angestrengter\": \"angestrengt\",\n  \"angestrengteste\": \"angestrengt\",\n  \"angestrichen\": \"angestrich\",\n  \"angestrichene\": \"angestrich\",\n  \"angetan\": \"angetan\",\n  \"angetane\": \"angetan\",\n  \"angetastet\": \"angetastet\",\n  \"angetrieben\": \"angetrieb\",\n  \"angetroffen\": \"angetroff\",\n  \"angewachsen\": \"angewachs\",\n  \"angewandt\": \"angewandt\",\n  \"angewandte\": \"angewandt\",\n  \"angewendet\": \"angewendet\",\n  \"angewiesen\": \"angewies\",\n  \"angewöhnt\": \"angewohnt\",\n  \"angezeigt\": \"angezeigt\",\n  \"angezogen\": \"angezog\",\n  \"angezogene\": \"angezog\",\n  \"angezündet\": \"angezundet\",\n  \"angezweckt\": \"angezweckt\",\n  \"angfangt\": \"angfangt\",\n  \"anghört\": \"anghort\",\n  \"angibt\": \"angibt\",\n  \"anging\": \"anging\",\n  \"angreifen\": \"angreif\",\n  \"angreifenden\": \"angreif\",\n  \"angreifern\": \"angreif\",\n  \"angrenzenden\": \"angrenz\",\n  \"angriff\": \"angriff\",\n  \"angriffe\": \"angriff\",\n  \"angschaut\": \"angschaut\",\n  \"angst\": \"angst\",\n  \"ängste\": \"angst\",\n  \"angstfrühstück\": \"angstfruhstuck\",\n  \"ängstigte\": \"angstigt\",\n  \"ängstlich\": \"angstlich\",\n  \"angstvoll\": \"angstvoll\",\n  \"anguckte\": \"anguckt\",\n  \"anguckten\": \"anguckt\",\n  \"angues\": \"angu\",\n  \"angustia\": \"angustia\",\n  \"anhabe\": \"anhab\",\n  \"anhaben\": \"anhab\",\n  \"anhaftende\": \"anhaft\",\n  \"anhaltend\": \"anhalt\",\n  \"anhaltende\": \"anhalt\",\n  \"anhaltenden\": \"anhalt\",\n  \"anhaltender\": \"anhalt\",\n  \"anhaltst\": \"anhalt\",\n  \"anhang\": \"anhang\",\n  \"anhangen\": \"anhang\",\n  \"anhängen\": \"anhang\",\n  \"anhänger\": \"anhang\",\n  \"anhängerinnen\": \"anhangerinn\",\n  \"anhänglich\": \"anhang\",\n  \"anhänglichkeit\": \"anhang\",\n  \"anhängsel\": \"anhangsel\",\n  \"anhängt\": \"anhangt\",\n  \"anhat\": \"anhat\",\n  \"anhäuft\": \"anhauft\",\n  \"anhäuften\": \"anhauft\",\n  \"anhebt\": \"anhebt\",\n  \"anheilte\": \"anheilt\",\n  \"anheim\": \"anheim\",\n  \"anheimfallen\": \"anheimfall\",\n  \"anheimfällt\": \"anheimfallt\",\n  \"anheimfiel\": \"anheimfiel\",\n  \"anheimgegeben\": \"anheimgegeb\",\n  \"anher\": \"anh\",\n  \"anhieb\": \"anhieb\",\n  \"anhielt\": \"anhielt\",\n  \"anhing\": \"anhing\",\n  \"anhinge\": \"anhing\",\n  \"anhingen\": \"anhing\",\n  \"anhöhe\": \"anhoh\",\n  \"anhören\": \"anhor\",\n  \"anhört\": \"anhort\",\n  \"anhörte\": \"anhort\",\n  \"anhörten\": \"anhort\",\n  \"anima\": \"anima\",\n  \"animadvertentia\": \"animadvertentia\",\n  \"animalia\": \"animalia\",\n  \"animalium\": \"animalium\",\n  \"animi\": \"animi\",\n  \"anjene\": \"anj\",\n  \"anjetzt\": \"anjetzt\",\n  \"ankam\": \"ankam\",\n  \"ankäme\": \"ankam\",\n  \"ankamen\": \"ankam\",\n  \"ankara\": \"ankara\",\n  \"ankäufe\": \"ankauf\",\n  \"anker\": \"ank\",\n  \"anklage\": \"anklag\",\n  \"anklagen\": \"anklag\",\n  \"anklagend\": \"anklag\",\n  \"anklagepunkte\": \"anklagepunkt\",\n  \"anklageschrift\": \"anklageschrift\",\n  \"anklagt\": \"anklagt\",\n  \"anklagte\": \"anklagt\",\n  \"anklagten\": \"anklagt\",\n  \"ankleben\": \"ankleb\",\n  \"anklebenden\": \"ankleb\",\n  \"anklebte\": \"anklebt\",\n  \"anklopfen\": \"anklopf\",\n  \"anknabbern\": \"anknabb\",\n  \"ankomme\": \"ankomm\",\n  \"ankommen\": \"ankomm\",\n  \"ankommender\": \"ankomm\",\n  \"ankömmlingen\": \"ankommling\",\n  \"ankommt\": \"ankommt\",\n  \"ankündigen\": \"ankund\",\n  \"ankündigte\": \"ankundigt\",\n  \"ankündigung\": \"ankund\",\n  \"ankunft\": \"ankunft\",\n  \"ankunfthalle\": \"ankunfthall\",\n  \"anlächelte\": \"anlachelt\",\n  \"anlachen\": \"anlach\",\n  \"anlachte\": \"anlacht\",\n  \"anlage\": \"anlag\",\n  \"anlagen\": \"anlag\",\n  \"anlangt\": \"anlangt\",\n  \"anlangte\": \"anlangt\",\n  \"anlass\": \"anlass\",\n  \"anlaß\": \"anlass\",\n  \"anlässe\": \"anlass\",\n  \"anlaufstelle\": \"anlaufstell\",\n  \"anläuft\": \"anlauft\",\n  \"anlegen\": \"anleg\",\n  \"anlegte\": \"anlegt\",\n  \"anlegten\": \"anlegt\",\n  \"anlegung\": \"anleg\",\n  \"anlehnung\": \"anlehn\",\n  \"anleitung\": \"anleit\",\n  \"anleitungen\": \"anleit\",\n  \"anliegen\": \"anlieg\",\n  \"anliegendes\": \"anlieg\",\n  \"anlockte\": \"anlockt\",\n  \"anlockungen\": \"anlock\",\n  \"anlügt\": \"anlugt\",\n  \"anm\": \"anm\",\n  \"anmassen\": \"anmass\",\n  \"anmaßen\": \"anmass\",\n  \"anmasst\": \"anmasst\",\n  \"anmassung\": \"anmass\",\n  \"anmassungen\": \"anmass\",\n  \"anmelden\": \"anmeld\",\n  \"anmerkung\": \"anmerk\",\n  \"anmerkungen\": \"anmerk\",\n  \"anmut\": \"anmut\",\n  \"anmutig\": \"anmut\",\n  \"anmutige\": \"anmut\",\n  \"anmutigen\": \"anmut\",\n  \"anmutiger\": \"anmut\",\n  \"anmutiges\": \"anmut\",\n  \"anmutigste\": \"anmut\",\n  \"anmutungen\": \"anmut\",\n  \"anna\": \"anna\",\n  \"annäherung\": \"annaher\",\n  \"annäherungsweise\": \"annaherungsweis\",\n  \"annahm\": \"annahm\",\n  \"annahme\": \"annahm\",\n  \"annähme\": \"annahm\",\n  \"annahmen\": \"annahm\",\n  \"anne\": \"ann\",\n  \"annehmbaren\": \"annehmbar\",\n  \"annehme\": \"annehm\",\n  \"annehmen\": \"annehm\",\n  \"annehmlich\": \"annehm\",\n  \"annehmlichkeit\": \"annehm\",\n  \"annehmung\": \"annehm\",\n  \"annelieschen\": \"anneliesch\",\n  \"anneliese\": \"annelies\",\n  \"annelieses\": \"annelies\",\n  \"annimmst\": \"annimm\",\n  \"annimmt\": \"annimmt\",\n  \"annneliese\": \"annnelies\",\n  \"anno\": \"anno\",\n  \"anordnung\": \"anordn\",\n  \"anpacken\": \"anpack\",\n  \"anpackt\": \"anpackt\",\n  \"anprallen\": \"anprall\",\n  \"anpreisen\": \"anpreis\",\n  \"anpumpen\": \"anpump\",\n  \"anrätig\": \"anrat\",\n  \"anratungswürdiger\": \"anratungswurd\",\n  \"anreden\": \"anred\",\n  \"anredete\": \"anredet\",\n  \"anregen\": \"anreg\",\n  \"anregend\": \"anreg\",\n  \"anregt\": \"anregt\",\n  \"anregung\": \"anreg\",\n  \"anregungen\": \"anreg\",\n  \"anreihte\": \"anreiht\",\n  \"anreizen\": \"anreiz\",\n  \"anrichten\": \"anricht\",\n  \"anrichtete\": \"anrichtet\",\n  \"anrief\": \"anrief\",\n  \"anruf\": \"anruf\",\n  \"anrufbeantworter\": \"anrufbeantwort\",\n  \"anrufen\": \"anruf\",\n  \"anrufung\": \"anruf\",\n  \"anrühren\": \"anruhr\",\n  \"anrührte\": \"anruhrt\",\n  \"ans\": \"ans\",\n  \"ansagen\": \"ansag\",\n  \"ansah\": \"ansah\",\n  \"ansähe\": \"ansah\",\n  \"ansahen\": \"ansah\",\n  \"ansammelten\": \"ansammelt\",\n  \"ansammlungen\": \"ansamml\",\n  \"ansatz\": \"ansatz\",\n  \"anschafft\": \"anschafft\",\n  \"anschauen\": \"anschau\",\n  \"anschauend\": \"anschau\",\n  \"anschaulich\": \"anschaulich\",\n  \"anschaun\": \"anschaun\",\n  \"anschaut\": \"anschaut\",\n  \"anschauung\": \"anschau\",\n  \"anschauungen\": \"anschau\",\n  \"anschauungsfähigkeit\": \"anschauungsfah\",\n  \"anschauungsweise\": \"anschauungsweis\",\n  \"anschein\": \"anschein\",\n  \"anscheine\": \"anschein\",\n  \"anscheinend\": \"anschein\",\n  \"anscheinender\": \"anschein\",\n  \"anschlag\": \"anschlag\",\n  \"anschlagen\": \"anschlag\",\n  \"anschlägt\": \"anschlagt\",\n  \"anschliessen\": \"anschliess\",\n  \"anschließen\": \"anschliess\",\n  \"anschliessend\": \"anschliess\",\n  \"anschliesst\": \"anschliesst\",\n  \"anschließt\": \"anschliesst\",\n  \"anschloss\": \"anschloss\",\n  \"anschloß\": \"anschloss\",\n  \"anschluss\": \"anschluss\",\n  \"anschluß\": \"anschluss\",\n  \"anschneiden\": \"anschneid\",\n  \"ansehe\": \"anseh\",\n  \"ansehen\": \"anseh\",\n  \"ansehn\": \"ansehn\",\n  \"ansehnliche\": \"ansehn\",\n  \"ansehnlicher\": \"ansehn\",\n  \"ansehnliches\": \"ansehn\",\n  \"ansehung\": \"anseh\",\n  \"ansicht\": \"ansicht\",\n  \"ansichten\": \"ansicht\",\n  \"ansieht\": \"ansieht\",\n  \"ansitz\": \"ansitz\",\n  \"ansitzen\": \"ansitz\",\n  \"ansonst\": \"anson\",\n  \"ansonsten\": \"anson\",\n  \"anspannen\": \"anspann\",\n  \"anspielte\": \"anspielt\",\n  \"anspielung\": \"anspiel\",\n  \"anspielungen\": \"anspiel\",\n  \"anspornung\": \"ansporn\",\n  \"ansprache\": \"ansprach\",\n  \"ansprechen\": \"ansprech\",\n  \"ansprechend\": \"ansprech\",\n  \"ansprechende\": \"ansprech\",\n  \"anspricht\": \"anspricht\",\n  \"anspringt\": \"anspringt\",\n  \"anspruch\": \"anspruch\",\n  \"ansprüche\": \"anspruch\",\n  \"anspruchlosen\": \"anspruchlos\",\n  \"anspruchlosesten\": \"anspruchlos\",\n  \"anspruchsvollen\": \"anspruchsvoll\",\n  \"anstach\": \"anstach\",\n  \"anstalt\": \"anstalt\",\n  \"anstalten\": \"anstalt\",\n  \"anstand\": \"anstand\",\n  \"anständig\": \"anstand\",\n  \"anständige\": \"anstand\",\n  \"anständigen\": \"anstand\",\n  \"anständiger\": \"anstand\",\n  \"anständigere\": \"anstand\",\n  \"anständiges\": \"anstand\",\n  \"anstarren\": \"anstarr\",\n  \"anstatt\": \"anstatt\",\n  \"ansteckend\": \"ansteck\",\n  \"anstehe\": \"ansteh\",\n  \"ansteht\": \"ansteht\",\n  \"ansteigende\": \"ansteig\",\n  \"ansteigenden\": \"ansteig\",\n  \"anstelle\": \"anstell\",\n  \"anstellen\": \"anstell\",\n  \"anstellig\": \"anstell\",\n  \"anstellte\": \"anstellt\",\n  \"anstiess\": \"anstiess\",\n  \"anstoss\": \"anstoss\",\n  \"anstoß\": \"anstoss\",\n  \"anstösse\": \"anstoss\",\n  \"anstöße\": \"anstoss\",\n  \"anstossen\": \"anstoss\",\n  \"anstoßen\": \"anstoss\",\n  \"anstosses\": \"anstoss\",\n  \"anstoßes\": \"anstoss\",\n  \"anstösst\": \"anstosst\",\n  \"anstößt\": \"anstosst\",\n  \"anstrengend\": \"anstreng\",\n  \"anstrengende\": \"anstreng\",\n  \"anstrengenden\": \"anstreng\",\n  \"anstrengung\": \"anstreng\",\n  \"anstrengungen\": \"anstreng\",\n  \"anstrich\": \"anstrich\",\n  \"anstürmen\": \"ansturm\",\n  \"antat\": \"antat\",\n  \"anteil\": \"anteil\",\n  \"anteilhaber\": \"anteilhab\",\n  \"anteils\": \"anteil\",\n  \"antelephoniert\": \"antelephoniert\",\n  \"anthropomorphismen\": \"anthropomorphism\",\n  \"anthropomorphismus\": \"anthropomorphismus\",\n  \"anthropomorphistisch\": \"anthropomorphist\",\n  \"anthropomorphistische\": \"anthropomorphist\",\n  \"anti\": \"anti\",\n  \"antikeimenon\": \"antikeimenon\",\n  \"antin\": \"antin\",\n  \"antinomie\": \"antinomi\",\n  \"antipathie\": \"antipathi\",\n  \"antlitz\": \"antlitz\",\n  \"antorten\": \"antort\",\n  \"anträfe\": \"antraf\",\n  \"anträge\": \"antrag\",\n  \"antragsteller\": \"antragstell\",\n  \"antreffen\": \"antreff\",\n  \"antreiben\": \"antreib\",\n  \"antreibend\": \"antreib\",\n  \"antreibt\": \"antreibt\",\n  \"antretet\": \"antretet\",\n  \"antrieb\": \"antrieb\",\n  \"antriebe\": \"antrieb\",\n  \"antrieben\": \"antrieb\",\n  \"antriebs\": \"antrieb\",\n  \"antrifft\": \"antrifft\",\n  \"antritt\": \"antritt\",\n  \"antun\": \"antun\",\n  \"antut\": \"antut\",\n  \"antwort\": \"antwort\",\n  \"antworte\": \"antwort\",\n  \"antworten\": \"antwort\",\n  \"antwortet\": \"antwortet\",\n  \"antwortete\": \"antwortet\",\n  \"antworteten\": \"antwortet\",\n  \"anvertraue\": \"anvertrau\",\n  \"anvertrauet\": \"anvertrauet\",\n  \"anvertraute\": \"anvertraut\",\n  \"anvertrauten\": \"anvertraut\",\n  \"anverwandten\": \"anverwandt\",\n  \"anvisierte\": \"anvisiert\",\n  \"anwachs\": \"anwach\",\n  \"anwachsen\": \"anwachs\",\n  \"anwälten\": \"anwalt\",\n  \"anwandeln\": \"anwandeln\",\n  \"anwandlung\": \"anwandl\",\n  \"anwandten\": \"anwandt\",\n  \"anweisung\": \"anweis\",\n  \"anweisungen\": \"anweis\",\n  \"anwendbar\": \"anwendbar\",\n  \"anwendbare\": \"anwendbar\",\n  \"anwenden\": \"anwend\",\n  \"anwendet\": \"anwendet\",\n  \"anwendeten\": \"anwendet\",\n  \"anwendung\": \"anwend\",\n  \"anwerben\": \"anwerb\",\n  \"anwesen\": \"anwes\",\n  \"anwesend\": \"anwes\",\n  \"anwesenden\": \"anwes\",\n  \"anwesenheit\": \"anwes\",\n  \"anwünscht\": \"anwunscht\",\n  \"anzahl\": \"anzahl\",\n  \"anzeichen\": \"anzeich\",\n  \"anzeige\": \"anzeig\",\n  \"anzeigen\": \"anzeig\",\n  \"anzeigete\": \"anzeiget\",\n  \"anzengruber\": \"anzengrub\",\n  \"anziehen\": \"anzieh\",\n  \"anziehend\": \"anzieh\",\n  \"anziehende\": \"anzieh\",\n  \"anziehungskraft\": \"anziehungskraft\",\n  \"anzog\": \"anzog\",\n  \"anzogen\": \"anzog\",\n  \"anzublicken\": \"anzublick\",\n  \"anzudrehen\": \"anzudreh\",\n  \"anzuerkennen\": \"anzuerkenn\",\n  \"anzufahren\": \"anzufahr\",\n  \"anzufangen\": \"anzufang\",\n  \"anzufechten\": \"anzufecht\",\n  \"anzufertigen\": \"anzufert\",\n  \"anzuführen\": \"anzufuhr\",\n  \"anzug\": \"anzug\",\n  \"anzuge\": \"anzug\",\n  \"anzüge\": \"anzug\",\n  \"anzugeben\": \"anzugeb\",\n  \"anzugreifen\": \"anzugreif\",\n  \"anzuhalten\": \"anzuhalt\",\n  \"anzuhängen\": \"anzuhang\",\n  \"anzuheben\": \"anzuheb\",\n  \"anzukämpfen\": \"anzukampf\",\n  \"anzukaufen\": \"anzukauf\",\n  \"anzuklingen\": \"anzukling\",\n  \"anzuklopfen\": \"anzuklopf\",\n  \"anzukünden\": \"anzukund\",\n  \"anzulachen\": \"anzulach\",\n  \"anzulegen\": \"anzuleg\",\n  \"anzumassen\": \"anzumass\",\n  \"anzünden\": \"anzund\",\n  \"anzündet\": \"anzundet\",\n  \"anzündete\": \"anzundet\",\n  \"anzunehmen\": \"anzunehm\",\n  \"anzupeilen\": \"anzupeil\",\n  \"anzurufen\": \"anzuruf\",\n  \"anzuschauen\": \"anzuschau\",\n  \"anzuschauenden\": \"anzuschau\",\n  \"anzuschliessen\": \"anzuschliess\",\n  \"anzuschließen\": \"anzuschliess\",\n  \"anzusehen\": \"anzuseh\",\n  \"anzusetzen\": \"anzusetz\",\n  \"anzusiedeln\": \"anzusiedeln\",\n  \"anzuspannen\": \"anzuspann\",\n  \"anzusprechen\": \"anzusprech\",\n  \"anzustellen\": \"anzustell\",\n  \"anzutreffen\": \"anzutreff\",\n  \"anzutreiben\": \"anzutreib\",\n  \"anzuweisen\": \"anzuweis\",\n  \"anzuwenden\": \"anzuw\",\n  \"anzuzeigen\": \"anzuzeig\",\n  \"anzuzetteln\": \"anzuzetteln\",\n  \"anzuziehen\": \"anzuzieh\",\n  \"apfel\": \"apfel\",\n  \"äpfel\": \"apfel\",\n  \"apfelbaum\": \"apfelbaum\",\n  \"apfelbäumchens\": \"apfelbaumch\",\n  \"apfelbaumes\": \"apfelbaum\",\n  \"apfelblüten\": \"apfelblut\",\n  \"apfelblütenhauchen\": \"apfelblutenhauch\",\n  \"äpfelchen\": \"apfelch\",\n  \"äpfeln\": \"apfeln\",\n  \"apfelsaft\": \"apfelsaft\",\n  \"aphras\": \"aphras\",\n  \"apodiktisch\": \"apodikt\",\n  \"apodiktischen\": \"apodikt\",\n  \"apodiktischer\": \"apodikt\",\n  \"apodiktisches\": \"apodikt\",\n  \"apokrisewv\": \"apokrisewv\",\n  \"apollyon\": \"apollyon\",\n  \"apologie\": \"apologi\",\n  \"apostel\": \"apostel\",\n  \"apostolische\": \"apostol\",\n  \"apparat\": \"apparat\",\n  \"apparentia\": \"apparentia\",\n  \"apparet\": \"apparet\",\n  \"appartement\": \"appartement\",\n  \"appell\": \"appell\",\n  \"appetimus\": \"appetimus\",\n  \"appetit\": \"appetit\",\n  \"applaus\": \"applaus\",\n  \"applicat\": \"applicat\",\n  \"approbation\": \"approbation\",\n  \"aprikosen\": \"aprikos\",\n  \"april\": \"april\",\n  \"aquarien\": \"aquari\",\n  \"ara\": \"ara\",\n  \"arabien\": \"arabi\",\n  \"arabiens\": \"arabi\",\n  \"arabische\": \"arab\",\n  \"arbeit\": \"arbeit\",\n  \"arbeite\": \"arbeit\",\n  \"arbeiten\": \"arbeit\",\n  \"arbeitenden\": \"arbeit\",\n  \"arbeiter\": \"arbeit\",\n  \"arbeiterkittel\": \"arbeiterkittel\",\n  \"arbeitern\": \"arbeit\",\n  \"arbeitet\": \"arbeitet\",\n  \"arbeitete\": \"arbeitet\",\n  \"arbeiteten\": \"arbeitet\",\n  \"arbeitsam\": \"arbeitsam\",\n  \"arbeitsamen\": \"arbeitsam\",\n  \"arbeitsaufnahme\": \"arbeitsaufnahm\",\n  \"arbeitsbeschaffung\": \"arbeitsbeschaff\",\n  \"arbeitserfolge\": \"arbeitserfolg\",\n  \"arbeitserlaubnis\": \"arbeitserlaubnis\",\n  \"arbeitsfähigkeit\": \"arbeitsfah\",\n  \"arbeitsgemeinschaft\": \"arbeitsgemeinschaft\",\n  \"arbeitsgemeinschaften\": \"arbeitsgemeinschaft\",\n  \"arbeitsgeminschaft\": \"arbeitsgeminschaft\",\n  \"arbeitskraft\": \"arbeitskraft\",\n  \"arbeitslohn\": \"arbeitslohn\",\n  \"arbeitslosigkeit\": \"arbeitslos\",\n  \"arbeitsplatzes\": \"arbeitsplatz\",\n  \"arbeitsschurz\": \"arbeitsschurz\",\n  \"arbeitsstelle\": \"arbeitsstell\",\n  \"arbeitsstrenge\": \"arbeitsstreng\",\n  \"arbeitsstube\": \"arbeitsstub\",\n  \"arbeitsteilung\": \"arbeitsteil\",\n  \"arbeitstreue\": \"arbeitstreu\",\n  \"arbeitsverkehr\": \"arbeitsverkehr\",\n  \"arbeitsvermittlung\": \"arbeitsvermittl\",\n  \"arbeitsvertrag\": \"arbeitsvertrag\",\n  \"arbeitsvolles\": \"arbeitsvoll\",\n  \"arbeitszimmer\": \"arbeitszimm\",\n  \"arbeitszimmers\": \"arbeitszimm\",\n  \"arbet\": \"arbet\",\n  \"archetypa\": \"archetypa\",\n  \"architekt\": \"architekt\",\n  \"archiv\": \"archiv\",\n  \"arg\": \"arg\",\n  \"arge\": \"arg\",\n  \"argen\": \"arg\",\n  \"ärger\": \"arg\",\n  \"ärgere\": \"arg\",\n  \"ärgeren\": \"arg\",\n  \"ärgerlich\": \"arg\",\n  \"ärgerlichen\": \"arg\",\n  \"ärgern\": \"arg\",\n  \"ärgernis\": \"argernis\",\n  \"ärgernisse\": \"argernis\",\n  \"ärgert\": \"argert\",\n  \"ärgerte\": \"argert\",\n  \"ärgerten\": \"argert\",\n  \"arges\": \"arg\",\n  \"arglos\": \"arglos\",\n  \"arglosen\": \"arglos\",\n  \"argloser\": \"arglos\",\n  \"argloses\": \"arglos\",\n  \"ärgste\": \"argst\",\n  \"ärgsten\": \"argst\",\n  \"arguet\": \"arguet\",\n  \"argument\": \"argument\",\n  \"argumentation\": \"argumentation\",\n  \"argumente\": \"argument\",\n  \"argumentiert\": \"argumentiert\",\n  \"argwohn\": \"argwohn\",\n  \"aristokraten\": \"aristokrat\",\n  \"aristokratie\": \"aristokrati\",\n  \"aristokratischer\": \"aristokrat\",\n  \"aristoteles\": \"aristotel\",\n  \"aristotelischen\": \"aristotel\",\n  \"arm\": \"arm\",\n  \"armbändern\": \"armband\",\n  \"armbrust\": \"armbrust\",\n  \"ärmchen\": \"armch\",\n  \"arme\": \"arm\",\n  \"armee\": \"arme\",\n  \"armeeabschaffungsinitiative\": \"armeeabschaffungsinitiativ\",\n  \"armen\": \"arm\",\n  \"armenisch\": \"armen\",\n  \"armenpfleger\": \"armenpfleg\",\n  \"armenti\": \"armenti\",\n  \"armer\": \"arm\",\n  \"ärmere\": \"arm\",\n  \"armes\": \"arm\",\n  \"armhöhe\": \"armhoh\",\n  \"armin\": \"armin\",\n  \"armkraft\": \"armkraft\",\n  \"ärmlich\": \"armlich\",\n  \"ärmlichen\": \"armlich\",\n  \"ärmlicher\": \"armlich\",\n  \"arms\": \"arm\",\n  \"armselige\": \"armsel\",\n  \"armseligste\": \"armsel\",\n  \"ärmste\": \"armst\",\n  \"ärmsten\": \"armst\",\n  \"armut\": \"armut\",\n  \"army\": \"army\",\n  \"arphachsad\": \"arphachsad\",\n  \"arrnbrust\": \"arrnbrust\",\n  \"arrogantia\": \"arrogantia\",\n  \"arroganz\": \"arroganz\",\n  \"art\": \"art\",\n  \"arten\": \"art\",\n  \"artes\": \"art\",\n  \"arthur\": \"arthur\",\n  \"artig\": \"artig\",\n  \"artige\": \"artig\",\n  \"artigen\": \"artig\",\n  \"artiger\": \"artig\",\n  \"artiges\": \"artig\",\n  \"artigkeit\": \"artig\",\n  \"artikel\": \"artikel\",\n  \"artikeln\": \"artikeln\",\n  \"artikulierten\": \"artikuliert\",\n  \"artilleriegeneral\": \"artilleriegeneral\",\n  \"artilleriewesen\": \"artilleriewes\",\n  \"artlich\": \"artlich\",\n  \"arts\": \"art\",\n  \"arznei\": \"arznei\",\n  \"arzneimittel\": \"arzneimittel\",\n  \"arzneimittelvertreter\": \"arzneimittelvertret\",\n  \"ärzte\": \"arzt\",\n  \"ärztliche\": \"arztlich\",\n  \"ärztlicher\": \"arztlich\",\n  \"ascendenten\": \"ascendent\",\n  \"asche\": \"asch\",\n  \"aschen\": \"asch\",\n  \"aschenbecher\": \"aschenbech\",\n  \"aschenbechern\": \"aschenbech\",\n  \"ascher\": \"asch\",\n  \"aschgraue\": \"aschgrau\",\n  \"aschur\": \"aschur\",\n  \"aschurs\": \"aschur\",\n  \"aseka\": \"aseka\",\n  \"äsen\": \"asen\",\n  \"äsend\": \"asend\",\n  \"äser\": \"aser\",\n  \"asiatische\": \"asiat\",\n  \"asien\": \"asi\",\n  \"aspekt\": \"aspekt\",\n  \"aspekte\": \"aspekt\",\n  \"aspides\": \"aspid\",\n  \"aspik\": \"aspik\",\n  \"ass\": \"ass\",\n  \"aß\": \"ass\",\n  \"assen\": \"ass\",\n  \"aßen\": \"ass\",\n  \"ässen\": \"ass\",\n  \"äßen\": \"ass\",\n  \"assertorisch\": \"assertor\",\n  \"assir\": \"assir\",\n  \"assistieren\": \"assisti\",\n  \"associated\": \"associated\",\n  \"associe\": \"associ\",\n  \"assoziationen\": \"assoziation\",\n  \"assoziativer\": \"assoziativ\",\n  \"assoziierung\": \"assoziier\",\n  \"assyrer\": \"assyr\",\n  \"ast\": \"ast\",\n  \"aste\": \"ast\",\n  \"äste\": \"ast\",\n  \"asten\": \"ast\",\n  \"ästen\": \"ast\",\n  \"aster\": \"ast\",\n  \"astern\": \"ast\",\n  \"ästhetik\": \"asthet\",\n  \"ästhetisch\": \"asthet\",\n  \"ästhetische\": \"asthet\",\n  \"ästhetischen\": \"asthet\",\n  \"ästhetisches\": \"asthet\",\n  \"aststümpchen\": \"aststumpch\",\n  \"asung\": \"asung\",\n  \"atak\": \"atak\",\n  \"atelier\": \"ateli\",\n  \"ateliers\": \"ateli\",\n  \"atem\": \"atem\",\n  \"atemlos\": \"atemlos\",\n  \"atemlose\": \"atemlos\",\n  \"atemlosen\": \"atemlos\",\n  \"atemnot\": \"atemnot\",\n  \"atemzug\": \"atemzug\",\n  \"atemzüge\": \"atemzug\",\n  \"atemzügen\": \"atemzug\",\n  \"atheist\": \"atheist\",\n  \"äther\": \"ath\",\n  \"ätherglast\": \"atherglast\",\n  \"ätherglocke\": \"atherglock\",\n  \"ätherisches\": \"ather\",\n  \"ätherlüfte\": \"atherluft\",\n  \"äthiopien\": \"athiopi\",\n  \"äthiopiens\": \"athiopi\",\n  \"äthiopier\": \"athiopi\",\n  \"atlantischen\": \"atlant\",\n  \"atmen\": \"atm\",\n  \"atmend\": \"atmend\",\n  \"atmens\": \"atm\",\n  \"atmet\": \"atmet\",\n  \"atmete\": \"atmet\",\n  \"atmeten\": \"atmet\",\n  \"atmosphäre\": \"atmosphar\",\n  \"atmungsbeschwerde\": \"atmungsbeschwerd\",\n  \"atome\": \"atom\",\n  \"ätsch\": \"atsch\",\n  \"attribute\": \"attribut\",\n  \"au\": \"au\",\n  \"auch\": \"auch\",\n  \"aue\": \"aue\",\n  \"auen\": \"auen\",\n  \"auerhahn\": \"auerhahn\",\n  \"auf\": \"auf\",\n  \"aufatmen\": \"aufatm\",\n  \"aufatmend\": \"aufatm\",\n  \"aufatmenden\": \"aufatm\",\n  \"aufatmete\": \"aufatmet\",\n  \"aufbau\": \"aufbau\",\n  \"aufbauen\": \"aufbau\",\n  \"aufbaute\": \"aufbaut\",\n  \"aufbauten\": \"aufbaut\",\n  \"aufbehalten\": \"aufbehalt\",\n  \"aufbewahren\": \"aufbewahr\",\n  \"aufbewahrerin\": \"aufbewahrerin\",\n  \"aufbewahrt\": \"aufbewahrt\",\n  \"aufbewahrte\": \"aufbewahrt\",\n  \"aufbewahrten\": \"aufbewahrt\",\n  \"aufbewahrung\": \"aufbewahr\",\n  \"aufbietung\": \"aufbiet\",\n  \"aufblicken\": \"aufblick\",\n  \"aufblickte\": \"aufblickt\",\n  \"aufblies\": \"aufbli\",\n  \"aufblitzen\": \"aufblitz\",\n  \"aufblitzte\": \"aufblitzt\",\n  \"aufblühende\": \"aufbluh\",\n  \"aufblühenden\": \"aufbluh\",\n  \"aufblühten\": \"aufbluht\",\n  \"aufbrechen\": \"aufbrech\",\n  \"aufbrennenden\": \"aufbrenn\",\n  \"aufbringen\": \"aufbring\",\n  \"aufbrochen\": \"aufbroch\",\n  \"aufbruch\": \"aufbruch\",\n  \"aufbürdete\": \"aufburdet\",\n  \"aufdeckte\": \"aufdeckt\",\n  \"aufdermauer\": \"aufdermau\",\n  \"aufdringen\": \"aufdring\",\n  \"aufdringlich\": \"aufdring\",\n  \"aufdringt\": \"aufdringt\",\n  \"aufeinander\": \"aufeinand\",\n  \"aufeinanderbiss\": \"aufeinanderbiss\",\n  \"aufeinanderfolge\": \"aufeinanderfolg\",\n  \"aufeinanderfolgen\": \"aufeinanderfolg\",\n  \"aufeinanderfolgend\": \"aufeinanderfolg\",\n  \"aufeinanderfolgende\": \"aufeinanderfolg\",\n  \"aufeinanderfolgenden\": \"aufeinanderfolg\",\n  \"aufeinanderfolgender\": \"aufeinanderfolg\",\n  \"aufeinanderfolgt\": \"aufeinanderfolgt\",\n  \"aufeinanderfolgten\": \"aufeinanderfolgt\",\n  \"aufeinanderschlügen\": \"aufeinanderschlug\",\n  \"aufenthalt\": \"aufenthalt\",\n  \"aufenthalten\": \"aufenthalt\",\n  \"aufenthaltes\": \"aufenthalt\",\n  \"auferlegen\": \"auferleg\",\n  \"auferlegt\": \"auferlegt\",\n  \"auferlegten\": \"auferlegt\",\n  \"auferstand\": \"auferstand\",\n  \"auferstanden\": \"auferstand\",\n  \"auferstehen\": \"aufersteh\",\n  \"aufersteht\": \"aufersteht\",\n  \"auferstehung\": \"aufersteh\",\n  \"auferstünde\": \"auferstund\",\n  \"auferwecken\": \"auferweck\",\n  \"auferweckt\": \"auferweckt\",\n  \"auferzogen\": \"auferzog\",\n  \"aufessen\": \"aufess\",\n  \"auffa\": \"auffa\",\n  \"auffallen\": \"auffall\",\n  \"auffallend\": \"auffall\",\n  \"auffallenden\": \"auffall\",\n  \"auffallender\": \"auffall\",\n  \"auffällig\": \"auffall\",\n  \"auffälligen\": \"auffall\",\n  \"auffälliges\": \"auffall\",\n  \"auffassen\": \"auffass\",\n  \"auffasst\": \"auffasst\",\n  \"auffaßt\": \"auffasst\",\n  \"auffassung\": \"auffass\",\n  \"auffassungsvermögen\": \"auffassungsvermog\",\n  \"auffi\": \"auffi\",\n  \"auffiel\": \"auffiel\",\n  \"auffinden\": \"auffind\",\n  \"auffindung\": \"auffind\",\n  \"aufflammt\": \"aufflammt\",\n  \"aufforderden\": \"aufforderd\",\n  \"auffordern\": \"aufford\",\n  \"aufforderte\": \"auffordert\",\n  \"aufforderung\": \"aufforder\",\n  \"auffrass\": \"auffrass\",\n  \"auffraß\": \"auffrass\",\n  \"auffressen\": \"auffress\",\n  \"auffuhren\": \"auffuhr\",\n  \"aufführen\": \"auffuhr\",\n  \"aufführung\": \"auffuhr\",\n  \"aufg\": \"aufg\",\n  \"aufgab\": \"aufgab\",\n  \"aufgabe\": \"aufgab\",\n  \"aufgaben\": \"aufgab\",\n  \"aufgabenfeld\": \"aufgabenfeld\",\n  \"aufgang\": \"aufgang\",\n  \"aufgange\": \"aufgang\",\n  \"aufgangs\": \"aufgang\",\n  \"aufgearbeitet\": \"aufgearbeitet\",\n  \"aufgebaut\": \"aufgebaut\",\n  \"aufgebe\": \"aufgeb\",\n  \"aufgeben\": \"aufgeb\",\n  \"aufgebläht\": \"aufgeblaht\",\n  \"aufgeblasen\": \"aufgeblas\",\n  \"aufgebracht\": \"aufgebracht\",\n  \"aufgebrachte\": \"aufgebracht\",\n  \"aufgebrachter\": \"aufgebracht\",\n  \"aufgebrochen\": \"aufgebroch\",\n  \"aufgedeckt\": \"aufgedeckt\",\n  \"aufgedrungenes\": \"aufgedr\",\n  \"aufgefahren\": \"aufgefahr\",\n  \"aufgefallen\": \"aufgefall\",\n  \"aufgefangen\": \"aufgefang\",\n  \"aufgefasst\": \"aufgefasst\",\n  \"aufgefaßt\": \"aufgefasst\",\n  \"aufgefressen\": \"aufgefress\",\n  \"aufgeführt\": \"aufgefuhrt\",\n  \"aufgefunden\": \"aufgefund\",\n  \"aufgegangen\": \"aufgegang\",\n  \"aufgegeben\": \"aufgegeb\",\n  \"aufgegebenen\": \"aufgegeb\",\n  \"aufgegessen\": \"aufgegess\",\n  \"aufgehalten\": \"aufgehalt\",\n  \"aufgehängt\": \"aufgehangt\",\n  \"aufgehäuft\": \"aufgehauft\",\n  \"aufgehellt\": \"aufgehellt\",\n  \"aufgehen\": \"aufgeh\",\n  \"aufgehenden\": \"aufgeh\",\n  \"aufgehoben\": \"aufgehob\",\n  \"aufgehobene\": \"aufgehob\",\n  \"aufgehört\": \"aufgehort\",\n  \"aufgeht\": \"aufgeht\",\n  \"aufgeklärt\": \"aufgeklart\",\n  \"aufgeklärten\": \"aufgeklart\",\n  \"aufgekommen\": \"aufgekomm\",\n  \"aufgekommenen\": \"aufgekomm\",\n  \"aufgeladen\": \"aufgelad\",\n  \"aufgelegt\": \"aufgelegt\",\n  \"aufgelegte\": \"aufgelegt\",\n  \"aufgelesen\": \"aufgeles\",\n  \"aufgelöset\": \"aufgeloset\",\n  \"aufgelöst\": \"aufgelost\",\n  \"aufgemacht\": \"aufgemacht\",\n  \"aufgemerkt\": \"aufgemerkt\",\n  \"aufgemuntert\": \"aufgemuntert\",\n  \"aufgenommen\": \"aufgenomm\",\n  \"aufgepasst\": \"aufgepasst\",\n  \"aufgepflanzt\": \"aufgepflanzt\",\n  \"aufgepluschtem\": \"aufgepluscht\",\n  \"aufgeplusterten\": \"aufgeplustert\",\n  \"aufgeräumt\": \"aufgeraumt\",\n  \"aufgereckt\": \"aufgereckt\",\n  \"aufgeregt\": \"aufgeregt\",\n  \"aufgeregten\": \"aufgeregt\",\n  \"aufgeregter\": \"aufgeregt\",\n  \"aufgeregtes\": \"aufgeregt\",\n  \"aufgereihten\": \"aufgereiht\",\n  \"aufgerichtet\": \"aufgerichtet\",\n  \"aufgerieben\": \"aufgerieb\",\n  \"aufgerissen\": \"aufgeriss\",\n  \"aufgerissenen\": \"aufgeriss\",\n  \"aufgerüttelt\": \"aufgeruttelt\",\n  \"aufgesammelt\": \"aufgesammelt\",\n  \"aufgeschaltet\": \"aufgeschaltet\",\n  \"aufgeschichtet\": \"aufgeschichtet\",\n  \"aufgeschlagen\": \"aufgeschlag\",\n  \"aufgeschlossen\": \"aufgeschloss\",\n  \"aufgeschossener\": \"aufgeschoss\",\n  \"aufgeschreckt\": \"aufgeschreckt\",\n  \"aufgeschrieben\": \"aufgeschrieb\",\n  \"aufgeschürzt\": \"aufgeschurzt\",\n  \"aufgesehen\": \"aufgeseh\",\n  \"aufgesperrten\": \"aufgesperrt\",\n  \"aufgesprungen\": \"aufgespr\",\n  \"aufgestachelt\": \"aufgestachelt\",\n  \"aufgestanden\": \"aufgestand\",\n  \"aufgestapelt\": \"aufgestapelt\",\n  \"aufgestellt\": \"aufgestellt\",\n  \"aufgestellte\": \"aufgestellt\",\n  \"aufgestellten\": \"aufgestellt\",\n  \"aufgestiegen\": \"aufgestieg\",\n  \"aufgetan\": \"aufgetan\",\n  \"aufgetaucht\": \"aufgetaucht\",\n  \"aufgeteilt\": \"aufgeteilt\",\n  \"aufgetragen\": \"aufgetrag\",\n  \"aufgewachsen\": \"aufgewachs\",\n  \"aufgeweckt\": \"aufgeweckt\",\n  \"aufgeweckten\": \"aufgeweckt\",\n  \"aufgeworfene\": \"aufgeworf\",\n  \"aufgeworfenen\": \"aufgeworf\",\n  \"aufgezählt\": \"aufgezahlt\",\n  \"aufgezehrt\": \"aufgezehrt\",\n  \"aufgezeichnet\": \"aufgezeichnet\",\n  \"aufgezettelt\": \"aufgezettelt\",\n  \"aufging\": \"aufging\",\n  \"aufginge\": \"aufging\",\n  \"aufgreifen\": \"aufgreif\",\n  \"aufgriff\": \"aufgriff\",\n  \"aufgrund\": \"aufgrund\",\n  \"aufgschnauft\": \"aufgschnauft\",\n  \"aufgsprungen\": \"aufgsprung\",\n  \"aufhalsen\": \"aufhals\",\n  \"aufhält\": \"aufhalt\",\n  \"aufhalte\": \"aufhalt\",\n  \"aufhalten\": \"aufhalt\",\n  \"aufhängen\": \"aufhang\",\n  \"aufhäuften\": \"aufhauft\",\n  \"aufheben\": \"aufheb\",\n  \"aufhebt\": \"aufhebt\",\n  \"aufhebung\": \"aufheb\",\n  \"aufheiternde\": \"aufheiternd\",\n  \"aufhellen\": \"aufhell\",\n  \"aufheulen\": \"aufheul\",\n  \"aufheulend\": \"aufheul\",\n  \"aufhielt\": \"aufhielt\",\n  \"aufhob\": \"aufhob\",\n  \"aufhorchte\": \"aufhorcht\",\n  \"aufhören\": \"aufhor\",\n  \"aufhört\": \"aufhort\",\n  \"aufhörte\": \"aufhort\",\n  \"aufhörten\": \"aufhort\",\n  \"aufkam\": \"aufkam\",\n  \"aufkeimt\": \"aufkeimt\",\n  \"aufklappte\": \"aufklappt\",\n  \"aufklärte\": \"aufklart\",\n  \"aufklärung\": \"aufklar\",\n  \"aufkomme\": \"aufkomm\",\n  \"aufkommen\": \"aufkomm\",\n  \"aufkroch\": \"aufkroch\",\n  \"aufkrochen\": \"aufkroch\",\n  \"auflachen\": \"auflach\",\n  \"auflachten\": \"auflacht\",\n  \"auflage\": \"auflag\",\n  \"auflas\": \"auflas\",\n  \"aufläufen\": \"auflauf\",\n  \"auflegen\": \"aufleg\",\n  \"aufleuchtende\": \"aufleucht\",\n  \"aufleuchtenden\": \"aufleucht\",\n  \"auflösen\": \"auflos\",\n  \"auflösung\": \"auflos\",\n  \"aufmache\": \"aufmach\",\n  \"aufmachen\": \"aufmach\",\n  \"aufmachte\": \"aufmacht\",\n  \"aufmerken\": \"aufmerk\",\n  \"aufmerkend\": \"aufmerk\",\n  \"aufmerkende\": \"aufmerk\",\n  \"aufmerkens\": \"aufmerk\",\n  \"aufmerksam\": \"aufmerksam\",\n  \"aufmerksame\": \"aufmerksam\",\n  \"aufmerksamen\": \"aufmerksam\",\n  \"aufmerksamer\": \"aufmerksam\",\n  \"aufmerksamkeit\": \"aufmerksam\",\n  \"aufmerksamkeiten\": \"aufmerksam\",\n  \"aufmerkt\": \"aufmerkt\",\n  \"aufmerkte\": \"aufmerkt\",\n  \"aufmunterung\": \"aufmunter\",\n  \"aufnahm\": \"aufnahm\",\n  \"aufnahme\": \"aufnahm\",\n  \"aufnahmegefäss\": \"aufnahmegefass\",\n  \"aufnahmegefäß\": \"aufnahmegefass\",\n  \"aufnahmegefässe\": \"aufnahmegefass\",\n  \"aufnahmegefäße\": \"aufnahmegefass\",\n  \"aufnahmen\": \"aufnahm\",\n  \"aufnahmeprüfungen\": \"aufnahmepruf\",\n  \"aufnahmsfähig\": \"aufnahmsfah\",\n  \"aufnahmsfähigkeit\": \"aufnahmsfah\",\n  \"aufnahmsorgan\": \"aufnahmsorgan\",\n  \"aufnehme\": \"aufnehm\",\n  \"aufnehmen\": \"aufnehm\",\n  \"aufnehmende\": \"aufnehm\",\n  \"aufnehmenden\": \"aufnehm\",\n  \"aufnehmendes\": \"aufnehm\",\n  \"äufner\": \"aufn\",\n  \"äufnete\": \"aufnet\",\n  \"aufnimmt\": \"aufnimmt\",\n  \"aufopfernd\": \"aufopfernd\",\n  \"aufopferung\": \"aufopfer\",\n  \"aufpassen\": \"aufpass\",\n  \"aufpasser\": \"aufpass\",\n  \"aufpasst\": \"aufpasst\",\n  \"aufpassten\": \"aufpasst\",\n  \"aufpflanzte\": \"aufpflanzt\",\n  \"aufputz\": \"aufputz\",\n  \"aufragen\": \"aufrag\",\n  \"aufrappeln\": \"aufrappeln\",\n  \"aufräume\": \"aufraum\",\n  \"aufrechnen\": \"aufrechn\",\n  \"aufrecht\": \"aufrecht\",\n  \"aufrechten\": \"aufrecht\",\n  \"aufrechterhalten\": \"aufrechterhalt\",\n  \"aufregen\": \"aufreg\",\n  \"aufregende\": \"aufreg\",\n  \"aufregendsten\": \"aufreg\",\n  \"aufreger\": \"aufreg\",\n  \"aufregung\": \"aufreg\",\n  \"aufregungen\": \"aufreg\",\n  \"aufreiben\": \"aufreib\",\n  \"aufreissend\": \"aufreiss\",\n  \"aufreißend\": \"aufreiss\",\n  \"aufrichten\": \"aufricht\",\n  \"aufrichtete\": \"aufrichtet\",\n  \"aufrichteten\": \"aufrichtet\",\n  \"aufrichtig\": \"aufricht\",\n  \"aufrichtige\": \"aufricht\",\n  \"aufrichtigen\": \"aufricht\",\n  \"aufrichtiger\": \"aufricht\",\n  \"aufrichtigkeit\": \"aufricht\",\n  \"aufriss\": \"aufriss\",\n  \"aufriß\": \"aufriss\",\n  \"aufrissen\": \"aufriss\",\n  \"aufrollten\": \"aufrollt\",\n  \"aufrufe\": \"aufruf\",\n  \"aufruhr\": \"aufruhr\",\n  \"aufrühren\": \"aufruhr\",\n  \"aufrührend\": \"aufruhr\",\n  \"aufs\": \"auf\",\n  \"aufsagen\": \"aufsag\",\n  \"aufsah\": \"aufsah\",\n  \"aufsätze\": \"aufsatz\",\n  \"aufschauten\": \"aufschaut\",\n  \"aufschichtete\": \"aufschichtet\",\n  \"aufschieben\": \"aufschieb\",\n  \"aufschlag\": \"aufschlag\",\n  \"aufschlagen\": \"aufschlag\",\n  \"aufschlug\": \"aufschlug\",\n  \"aufschlugen\": \"aufschlug\",\n  \"aufschluss\": \"aufschluss\",\n  \"aufschluß\": \"aufschluss\",\n  \"aufschlüsse\": \"aufschluss\",\n  \"aufschrei\": \"aufschrei\",\n  \"aufschreiben\": \"aufschreib\",\n  \"aufschreiende\": \"aufschreiend\",\n  \"aufschriften\": \"aufschrift\",\n  \"aufschub\": \"aufschub\",\n  \"aufschwung\": \"aufschwung\",\n  \"aufsehen\": \"aufseh\",\n  \"aufseher\": \"aufseh\",\n  \"aufsetzen\": \"aufsetz\",\n  \"aufsetzte\": \"aufsetzt\",\n  \"aufseufzte\": \"aufseufzt\",\n  \"aufsicht\": \"aufsicht\",\n  \"aufsperrte\": \"aufsperrt\",\n  \"aufspielen\": \"aufspiel\",\n  \"aufspielt\": \"aufspielt\",\n  \"aufspiessen\": \"aufspiess\",\n  \"aufspießen\": \"aufspiess\",\n  \"aufsprang\": \"aufsprang\",\n  \"aufsprangen\": \"aufsprang\",\n  \"aufspringen\": \"aufspring\",\n  \"aufspringenden\": \"aufspring\",\n  \"aufsprossen\": \"aufspross\",\n  \"aufsprosst\": \"aufsprosst\",\n  \"aufsproßt\": \"aufsprosst\",\n  \"aufsprosste\": \"aufsprosst\",\n  \"aufsproßte\": \"aufsprosst\",\n  \"aufstand\": \"aufstand\",\n  \"aufstanden\": \"aufstand\",\n  \"aufstehen\": \"aufsteh\",\n  \"aufstehend\": \"aufsteh\",\n  \"aufstehn\": \"aufstehn\",\n  \"aufsteht\": \"aufsteht\",\n  \"aufsteigen\": \"aufsteig\",\n  \"aufsteigendem\": \"aufsteig\",\n  \"aufsteigenden\": \"aufsteig\",\n  \"aufsteigt\": \"aufsteigt\",\n  \"aufstellen\": \"aufstell\",\n  \"aufstellt\": \"aufstellt\",\n  \"aufstellte\": \"aufstellt\",\n  \"aufstellung\": \"aufstell\",\n  \"aufstieg\": \"aufstieg\",\n  \"aufstiegsangebote\": \"aufstiegsangebot\",\n  \"aufstiegschancen\": \"aufstiegschanc\",\n  \"aufstiess\": \"aufstiess\",\n  \"aufstieß\": \"aufstiess\",\n  \"aufstöhnend\": \"aufstohn\",\n  \"aufsuchen\": \"aufsuch\",\n  \"aufsucht\": \"aufsucht\",\n  \"aufsuchte\": \"aufsucht\",\n  \"auftat\": \"auftat\",\n  \"auftaucht\": \"auftaucht\",\n  \"auftauchten\": \"auftaucht\",\n  \"auftrag\": \"auftrag\",\n  \"auftrage\": \"auftrag\",\n  \"aufträge\": \"auftrag\",\n  \"auftrags\": \"auftrag\",\n  \"auftragt\": \"auftragt\",\n  \"auftreiben\": \"auftreib\",\n  \"auftreten\": \"auftret\",\n  \"auftrieb\": \"auftrieb\",\n  \"auftrieben\": \"auftrieb\",\n  \"auftritt\": \"auftritt\",\n  \"auftritten\": \"auftritt\",\n  \"auftrittslied\": \"auftrittslied\",\n  \"auftut\": \"auftut\",\n  \"aufwach\": \"aufwach\",\n  \"aufwachst\": \"aufwach\",\n  \"aufwachte\": \"aufwacht\",\n  \"aufwachten\": \"aufwacht\",\n  \"aufwallten\": \"aufwallt\",\n  \"aufwallung\": \"aufwall\",\n  \"aufwallungen\": \"aufwall\",\n  \"aufwand\": \"aufwand\",\n  \"aufwarten\": \"aufwart\",\n  \"aufwartenden\": \"aufwart\",\n  \"aufwärter\": \"aufwart\",\n  \"aufwärts\": \"aufwart\",\n  \"aufweist\": \"aufweist\",\n  \"aufwendige\": \"aufwend\",\n  \"aufwüchse\": \"aufwuchs\",\n  \"aufwuchsen\": \"aufwuchs\",\n  \"aufzählt\": \"aufzahlt\",\n  \"aufzählung\": \"aufzahl\",\n  \"aufzehren\": \"aufzehr\",\n  \"aufzeichnung\": \"aufzeichn\",\n  \"aufzeigen\": \"aufzeig\",\n  \"aufziehenden\": \"aufzieh\",\n  \"aufzuatmen\": \"aufzuatm\",\n  \"aufzubauen\": \"aufzubau\",\n  \"aufzublasen\": \"aufzublas\",\n  \"aufzublicken\": \"aufzublick\",\n  \"aufzubrauchen\": \"aufzubrauch\",\n  \"aufzubrechen\": \"aufzubrech\",\n  \"aufzubringen\": \"aufzubring\",\n  \"aufzubürden\": \"aufzuburd\",\n  \"aufzuckt\": \"aufzuckt\",\n  \"aufzuessen\": \"aufzuess\",\n  \"aufzufassen\": \"aufzufass\",\n  \"aufzuführen\": \"aufzufuhr\",\n  \"aufzug\": \"aufzug\",\n  \"aufzuge\": \"aufzug\",\n  \"aufzugeben\": \"aufzugeb\",\n  \"aufzugskabine\": \"aufzugskabin\",\n  \"aufzuhalsen\": \"aufzuhals\",\n  \"aufzuhalten\": \"aufzuhalt\",\n  \"aufzuheben\": \"aufzuheb\",\n  \"aufzuheitern\": \"aufzuheit\",\n  \"aufzuhören\": \"aufzuhor\",\n  \"aufzukommen\": \"aufzukomm\",\n  \"aufzulösen\": \"aufzulos\",\n  \"aufzumachen\": \"aufzumach\",\n  \"aufzumuntern\": \"aufzumunt\",\n  \"aufzunehmen\": \"aufzunehm\",\n  \"aufzupassen\": \"aufzupass\",\n  \"aufzuraffen\": \"aufzuraff\",\n  \"aufzurollen\": \"aufzuroll\",\n  \"aufzuschlagen\": \"aufzuschlag\",\n  \"aufzuschreiben\": \"aufzuschreib\",\n  \"aufzusehen\": \"aufzuseh\",\n  \"aufzusparen\": \"aufzuspar\",\n  \"aufzuspringen\": \"aufzuspring\",\n  \"aufzustellen\": \"aufzustell\",\n  \"aufzustellende\": \"aufzustell\",\n  \"aufzusuchen\": \"aufzusuch\",\n  \"aufzutragen\": \"aufzutrag\",\n  \"aufzutreiben\": \"aufzutreib\",\n  \"aufzutun\": \"aufzutun\",\n  \"aufzuwecken\": \"aufzuweck\",\n  \"aufzuweisen\": \"aufzuweis\",\n  \"aufzuwerten\": \"aufzuwert\",\n  \"aufzuwiegen\": \"aufzuwieg\",\n  \"aug\": \"aug\",\n  \"auge\": \"aug\",\n  \"äugelchen\": \"augelch\",\n  \"äugelein\": \"augelein\",\n  \"augen\": \"aug\",\n  \"augenaufschlag\": \"augenaufschlag\",\n  \"augenblick\": \"augenblick\",\n  \"augenblicke\": \"augenblick\",\n  \"augenblicken\": \"augenblick\",\n  \"augenblicklich\": \"augenblick\",\n  \"augenblicklichen\": \"augenblick\",\n  \"augenbogen\": \"augenbog\",\n  \"augenbraunen\": \"augenbraun\",\n  \"äugender\": \"augend\",\n  \"augenlider\": \"augenlid\",\n  \"augenmerk\": \"augenmerk\",\n  \"augenschein\": \"augenschein\",\n  \"augenscheinlich\": \"augenschein\",\n  \"augenscheinliche\": \"augenschein\",\n  \"augenscheinlicher\": \"augenschein\",\n  \"augenschwache\": \"augenschwach\",\n  \"augenwinkel\": \"augenwinkel\",\n  \"auges\": \"aug\",\n  \"äuglein\": \"auglein\",\n  \"augsburg\": \"augsburg\",\n  \"augst\": \"augst\",\n  \"august\": \"august\",\n  \"aura\": \"aura\",\n  \"aus\": \"aus\",\n  \"ausarbeiten\": \"ausarbeit\",\n  \"ausartet\": \"ausartet\",\n  \"ausartung\": \"ausart\",\n  \"ausbesserung\": \"ausbesser\",\n  \"ausbeutete\": \"ausbeutet\",\n  \"ausbeutung\": \"ausbeut\",\n  \"ausbilden\": \"ausbild\",\n  \"ausbildete\": \"ausbildet\",\n  \"ausbildung\": \"ausbild\",\n  \"ausblase\": \"ausblas\",\n  \"ausbleiben\": \"ausbleib\",\n  \"ausbleibt\": \"ausbleibt\",\n  \"ausblick\": \"ausblick\",\n  \"ausbrach\": \"ausbrach\",\n  \"ausbreche\": \"ausbrech\",\n  \"ausbrechen\": \"ausbrech\",\n  \"ausbrechend\": \"ausbrech\",\n  \"ausbrechendem\": \"ausbrech\",\n  \"ausbrechenden\": \"ausbrech\",\n  \"ausbreite\": \"ausbreit\",\n  \"ausbreiten\": \"ausbreit\",\n  \"ausbreitet\": \"ausbreitet\",\n  \"ausbreitete\": \"ausbreitet\",\n  \"ausbreiteten\": \"ausbreitet\",\n  \"ausbreitung\": \"ausbreit\",\n  \"ausbricht\": \"ausbricht\",\n  \"ausbruch\": \"ausbruch\",\n  \"ausbrüten\": \"ausbrut\",\n  \"ausbund\": \"ausbund\",\n  \"ausdachte\": \"ausdacht\",\n  \"ausdauer\": \"ausdau\",\n  \"ausdauernd\": \"ausdauernd\",\n  \"ausdehnen\": \"ausdehn\",\n  \"ausdehnt\": \"ausdehnt\",\n  \"ausdehnung\": \"ausdehn\",\n  \"ausdenken\": \"ausdenk\",\n  \"ausdeuteten\": \"ausdeutet\",\n  \"ausdruck\": \"ausdruck\",\n  \"ausdrucke\": \"ausdruck\",\n  \"ausdrücke\": \"ausdruck\",\n  \"ausdrücken\": \"ausdruck\",\n  \"ausdrücklich\": \"ausdruck\",\n  \"ausdrückliche\": \"ausdruck\",\n  \"ausdrucks\": \"ausdruck\",\n  \"ausdrucksweise\": \"ausdrucksweis\",\n  \"ausdrückt\": \"ausdruckt\",\n  \"ausdrückte\": \"ausdruckt\",\n  \"ausdrückten\": \"ausdruckt\",\n  \"ausdünstet\": \"ausdunstet\",\n  \"ausdünstungen\": \"ausdunst\",\n  \"auseinander\": \"auseinand\",\n  \"auseinanderfahren\": \"auseinanderfahr\",\n  \"auseinanderfalteten\": \"auseinanderfaltet\",\n  \"auseinandergeschnitten\": \"auseinandergeschnitt\",\n  \"auseinanderhuschten\": \"auseinanderhuscht\",\n  \"auseinanderjagte\": \"auseinanderjagt\",\n  \"auseinanderschneiden\": \"auseinanderschneid\",\n  \"auseinandersetzen\": \"auseinandersetz\",\n  \"auseinandersetzt\": \"auseinandersetzt\",\n  \"auseinandersetzung\": \"auseinandersetz\",\n  \"auseinanderteilte\": \"auseinanderteilt\",\n  \"auseinanderzugehen\": \"auseinanderzugeh\",\n  \"auseinanderzukeilen\": \"auseinanderzukeil\",\n  \"auseinanderzusetzen\": \"auseinanderzusetz\",\n  \"ausersehen\": \"auserseh\",\n  \"auserwählen\": \"auserwahl\",\n  \"auserwählt\": \"auserwahlt\",\n  \"auserwählte\": \"auserwahlt\",\n  \"auserwählten\": \"auserwahlt\",\n  \"auserwähltes\": \"auserwahlt\",\n  \"ausfallen\": \"ausfall\",\n  \"ausfiel\": \"ausfiel\",\n  \"ausfiele\": \"ausfiel\",\n  \"ausfindig\": \"ausfind\",\n  \"ausfliesst\": \"ausfliesst\",\n  \"ausfließt\": \"ausfliesst\",\n  \"ausflucht\": \"ausflucht\",\n  \"ausflüge\": \"ausflug\",\n  \"ausflüsse\": \"ausfluss\",\n  \"ausflüssen\": \"ausfluss\",\n  \"ausforschen\": \"ausforsch\",\n  \"ausführen\": \"ausfuhr\",\n  \"ausführlich\": \"ausfuhr\",\n  \"ausführlichen\": \"ausfuhr\",\n  \"ausführlicher\": \"ausfuhr\",\n  \"ausführlichere\": \"ausfuhr\",\n  \"ausführlichst\": \"ausfuhr\",\n  \"ausführst\": \"ausfuhrst\",\n  \"ausführt\": \"ausfuhrt\",\n  \"ausführte\": \"ausfuhrt\",\n  \"ausführung\": \"ausfuhr\",\n  \"ausfüllen\": \"ausfull\",\n  \"ausg\": \"ausg\",\n  \"ausgab\": \"ausgab\",\n  \"ausgabe\": \"ausgab\",\n  \"ausgaben\": \"ausgab\",\n  \"ausgäben\": \"ausgab\",\n  \"ausgang\": \"ausgang\",\n  \"ausgangs\": \"ausgang\",\n  \"ausgangspunkt\": \"ausgangspunkt\",\n  \"ausgearbeitet\": \"ausgearbeitet\",\n  \"ausgeben\": \"ausgeb\",\n  \"ausgebeutet\": \"ausgebeutet\",\n  \"ausgebildet\": \"ausgebildet\",\n  \"ausgebildete\": \"ausgebildet\",\n  \"ausgeblasen\": \"ausgeblas\",\n  \"ausgeblasene\": \"ausgeblas\",\n  \"ausgeblieben\": \"ausgeblieb\",\n  \"ausgebliebenen\": \"ausgeblieb\",\n  \"ausgeboren\": \"ausgebor\",\n  \"ausgebrannt\": \"ausgebrannt\",\n  \"ausgebreitet\": \"ausgebreitet\",\n  \"ausgebrüteten\": \"ausgebrutet\",\n  \"ausgedacht\": \"ausgedacht\",\n  \"ausgedehnt\": \"ausgedehnt\",\n  \"ausgedehnten\": \"ausgedehnt\",\n  \"ausgedehntes\": \"ausgedehnt\",\n  \"ausgediente\": \"ausgedient\",\n  \"ausgedienten\": \"ausgedient\",\n  \"ausgedientes\": \"ausgedient\",\n  \"ausgedörrten\": \"ausgedorrt\",\n  \"ausgedörrtes\": \"ausgedorrt\",\n  \"ausgedrückt\": \"ausgedruckt\",\n  \"ausgedruckte\": \"ausgedruckt\",\n  \"ausgefallen\": \"ausgefall\",\n  \"ausgeflossen\": \"ausgefloss\",\n  \"ausgeforscht\": \"ausgeforscht\",\n  \"ausgefragt\": \"ausgefragt\",\n  \"ausgeführt\": \"ausgefuhrt\",\n  \"ausgefüllt\": \"ausgefullt\",\n  \"ausgegangen\": \"ausgegang\",\n  \"ausgegangene\": \"ausgegang\",\n  \"ausgegeben\": \"ausgegeb\",\n  \"ausgegebendie\": \"ausgegebendi\",\n  \"ausgeglichen\": \"ausgeg\",\n  \"ausgegossen\": \"ausgegoss\",\n  \"ausgegraben\": \"ausgegrab\",\n  \"ausgehaucht\": \"ausgehaucht\",\n  \"ausgehauen\": \"ausgehau\",\n  \"ausgehe\": \"ausgeh\",\n  \"ausgeheckt\": \"ausgeheckt\",\n  \"ausgehen\": \"ausgeh\",\n  \"ausgehend\": \"ausgeh\",\n  \"ausgehende\": \"ausgeh\",\n  \"ausgehenden\": \"ausgeh\",\n  \"ausgehn\": \"ausgehn\",\n  \"ausgehorcht\": \"ausgehorcht\",\n  \"ausgeht\": \"ausgeht\",\n  \"ausgehungerte\": \"ausgehungert\",\n  \"ausgehungertes\": \"ausgehungert\",\n  \"ausgeklügelt\": \"ausgeklugelt\",\n  \"ausgekratzt\": \"ausgekratzt\",\n  \"ausgelacht\": \"ausgelacht\",\n  \"ausgelassen\": \"ausgelass\",\n  \"ausgelassene\": \"ausgelass\",\n  \"ausgelassenheit\": \"ausgelass\",\n  \"ausgelassenste\": \"ausgelassen\",\n  \"ausgelassensten\": \"ausgelassen\",\n  \"ausgelastet\": \"ausgelastet\",\n  \"ausgelegt\": \"ausgelegt\",\n  \"ausgelöscht\": \"ausgeloscht\",\n  \"ausgelöschte\": \"ausgeloscht\",\n  \"ausgemacht\": \"ausgemacht\",\n  \"ausgemachte\": \"ausgemacht\",\n  \"ausgemalten\": \"ausgemalt\",\n  \"ausgemittelt\": \"ausgemittelt\",\n  \"ausgenommen\": \"ausgenomm\",\n  \"ausgenommene\": \"ausgenomm\",\n  \"ausgenossen\": \"ausgenoss\",\n  \"ausgenutzt\": \"ausgenutzt\",\n  \"ausgepeitscht\": \"ausgepeitscht\",\n  \"ausgepustet\": \"ausgepustet\",\n  \"ausgeputzt\": \"ausgeputzt\",\n  \"ausgequetschten\": \"ausgequetscht\",\n  \"ausgerechnet\": \"ausgerechnet\",\n  \"ausgereckt\": \"ausgereckt\",\n  \"ausgereiften\": \"ausgereift\",\n  \"ausgerichtet\": \"ausgerichtet\",\n  \"ausgerissen\": \"ausgeriss\",\n  \"ausgeritten\": \"ausgeritt\",\n  \"ausgerottet\": \"ausgerottet\",\n  \"ausgerückt\": \"ausgeruckt\",\n  \"ausgerufen\": \"ausgeruf\",\n  \"ausgerufenen\": \"ausgeruf\",\n  \"ausgerüstet\": \"ausgerustet\",\n  \"ausgesagt\": \"ausgesagt\",\n  \"ausgesandt\": \"ausgesandt\",\n  \"ausgesandte\": \"ausgesandt\",\n  \"ausgeschaltet\": \"ausgeschaltet\",\n  \"ausgeschickt\": \"ausgeschickt\",\n  \"ausgeschieden\": \"ausgeschied\",\n  \"ausgeschlachtet\": \"ausgeschlachtet\",\n  \"ausgeschlafen\": \"ausgeschlaf\",\n  \"ausgeschlagen\": \"ausgeschlag\",\n  \"ausgeschlossen\": \"ausgeschloss\",\n  \"ausgeschnitzt\": \"ausgeschnitzt\",\n  \"ausgeschoben\": \"ausgeschob\",\n  \"ausgeschrieben\": \"ausgeschrieb\",\n  \"ausgeschrieen\": \"ausgeschrie\",\n  \"ausgeschüttet\": \"ausgeschuttet\",\n  \"ausgeschweiften\": \"ausgeschweift\",\n  \"ausgesehen\": \"ausgeseh\",\n  \"ausgesetzt\": \"ausgesetzt\",\n  \"ausgesetzte\": \"ausgesetzt\",\n  \"ausgesondert\": \"ausgesondert\",\n  \"ausgesonnen\": \"ausgesonn\",\n  \"ausgespannt\": \"ausgespannt\",\n  \"ausgespart\": \"ausgespart\",\n  \"ausgesprochen\": \"ausgesproch\",\n  \"ausgesprochenen\": \"ausgesproch\",\n  \"ausgestaltung\": \"ausgestalt\",\n  \"ausgestattet\": \"ausgestattet\",\n  \"ausgestatteter\": \"ausgestattet\",\n  \"ausgesteckt\": \"ausgesteckt\",\n  \"ausgesteckten\": \"ausgesteckt\",\n  \"ausgestellt\": \"ausgestellt\",\n  \"ausgestorben\": \"ausgestorb\",\n  \"ausgestossen\": \"ausgestoss\",\n  \"ausgestoßen\": \"ausgestoss\",\n  \"ausgestrahlt\": \"ausgestrahlt\",\n  \"ausgestreckt\": \"ausgestreckt\",\n  \"ausgestreckte\": \"ausgestreckt\",\n  \"ausgestrecktem\": \"ausgestreckt\",\n  \"ausgestreckten\": \"ausgestreckt\",\n  \"ausgesuchte\": \"ausgesucht\",\n  \"ausgesuchten\": \"ausgesucht\",\n  \"ausgetauscht\": \"ausgetauscht\",\n  \"ausgeteilt\": \"ausgeteilt\",\n  \"ausgeteilte\": \"ausgeteilt\",\n  \"ausgetilgt\": \"ausgetilgt\",\n  \"ausgetragen\": \"ausgetrag\",\n  \"ausgetreten\": \"ausgetret\",\n  \"ausgetretene\": \"ausgetret\",\n  \"ausgetrieben\": \"ausgetrieb\",\n  \"ausgetrocknet\": \"ausgetrocknet\",\n  \"ausgeübt\": \"ausgeubt\",\n  \"ausgewandert\": \"ausgewandert\",\n  \"ausgeweidet\": \"ausgeweidet\",\n  \"ausgewischt\": \"ausgewischt\",\n  \"ausgewogen\": \"ausgewog\",\n  \"ausgeworfen\": \"ausgeworf\",\n  \"ausgezackten\": \"ausgezackt\",\n  \"ausgezeichnet\": \"ausgezeichnet\",\n  \"ausgezeichnete\": \"ausgezeichnet\",\n  \"ausgezeichneten\": \"ausgezeichnet\",\n  \"ausgezeichnetes\": \"ausgezeichnet\",\n  \"ausgezeichnetrückbesinnung\": \"ausgezeichnetruckbesinn\",\n  \"ausgeziechnet\": \"ausgeziechnet\",\n  \"ausgezogen\": \"ausgezog\",\n  \"ausgezogene\": \"ausgezog\",\n  \"ausgezogenen\": \"ausgezog\",\n  \"ausgiebigen\": \"ausgieb\",\n  \"ausgiebigkeit\": \"ausgieb\",\n  \"ausgiessen\": \"ausgiess\",\n  \"ausgießen\": \"ausgiess\",\n  \"ausging\": \"ausging\",\n  \"ausginge\": \"ausging\",\n  \"ausgingen\": \"ausging\",\n  \"ausgmacht\": \"ausgmacht\",\n  \"ausgoss\": \"ausgoss\",\n  \"ausgoß\": \"ausgoss\",\n  \"ausgredt\": \"ausgredt\",\n  \"ausgstossen\": \"ausgstoss\",\n  \"ausgwichen\": \"ausgwich\",\n  \"ausgworfen\": \"ausgworf\",\n  \"aushalt\": \"aushalt\",\n  \"aushält\": \"aushalt\",\n  \"aushalten\": \"aushalt\",\n  \"ausharren\": \"ausharr\",\n  \"aushauchte\": \"aushaucht\",\n  \"aushauen\": \"aushau\",\n  \"aushielt\": \"aushielt\",\n  \"aushilfe\": \"aushilf\",\n  \"ausholend\": \"aushol\",\n  \"aushungern\": \"aushung\",\n  \"auskennen\": \"auskenn\",\n  \"ausklang\": \"ausklang\",\n  \"auskneifer\": \"auskneif\",\n  \"auskommen\": \"auskomm\",\n  \"auskommens\": \"auskomm\",\n  \"auskröchen\": \"auskroch\",\n  \"auskunft\": \"auskunft\",\n  \"auslachen\": \"auslach\",\n  \"auslachte\": \"auslacht\",\n  \"ausladungen\": \"auslad\",\n  \"auslagen\": \"auslag\",\n  \"ausland\": \"ausland\",\n  \"ausländischen\": \"ausland\",\n  \"auslassen\": \"auslass\",\n  \"auslaufen\": \"auslauf\",\n  \"ausläuft\": \"auslauft\",\n  \"auslebte\": \"auslebt\",\n  \"ausleeren\": \"ausle\",\n  \"auslegen\": \"ausleg\",\n  \"auslegt\": \"auslegt\",\n  \"auslegung\": \"ausleg\",\n  \"ausliesse\": \"ausliess\",\n  \"ausließe\": \"ausliess\",\n  \"auslöschen\": \"auslosch\",\n  \"auslöscht\": \"ausloscht\",\n  \"auslöschte\": \"ausloscht\",\n  \"auslöschung\": \"auslosch\",\n  \"ausmache\": \"ausmach\",\n  \"ausmachen\": \"ausmach\",\n  \"ausmacht\": \"ausmacht\",\n  \"ausmachte\": \"ausmacht\",\n  \"ausmachten\": \"ausmacht\",\n  \"ausmass\": \"ausmass\",\n  \"ausmaß\": \"ausmass\",\n  \"ausmündung\": \"ausmund\",\n  \"ausnahme\": \"ausnahm\",\n  \"ausnähme\": \"ausnahm\",\n  \"ausnahmen\": \"ausnahm\",\n  \"ausnahmsweise\": \"ausnahmsweis\",\n  \"ausnehmen\": \"ausnehm\",\n  \"ausnehmend\": \"ausnehm\",\n  \"ausnutzen\": \"ausnutz\",\n  \"auspfiff\": \"auspfiff\",\n  \"ausräumen\": \"ausraum\",\n  \"ausrecken\": \"ausreck\",\n  \"ausreden\": \"ausred\",\n  \"ausreichenden\": \"ausreich\",\n  \"ausreicht\": \"ausreicht\",\n  \"ausreissen\": \"ausreiss\",\n  \"ausrichten\": \"ausricht\",\n  \"ausrichtet\": \"ausrichtet\",\n  \"ausrief\": \"ausrief\",\n  \"ausrotten\": \"ausrott\",\n  \"ausrottet\": \"ausrottet\",\n  \"ausrücken\": \"ausruck\",\n  \"ausrückt\": \"ausruckt\",\n  \"ausruf\": \"ausruf\",\n  \"ausrufe\": \"ausruf\",\n  \"ausruhen\": \"ausruh\",\n  \"ausruhet\": \"ausruhet\",\n  \"ausrüstung\": \"ausrust\",\n  \"ausrüstungsgegenständen\": \"ausrustungsgegenstand\",\n  \"aussaat\": \"aussaat\",\n  \"aussage\": \"aussag\",\n  \"aussagen\": \"aussag\",\n  \"aussagenden\": \"aussag\",\n  \"aussah\": \"aussah\",\n  \"aussähe\": \"aussah\",\n  \"aussahen\": \"aussah\",\n  \"aussatz\": \"aussatz\",\n  \"aussatzes\": \"aussatz\",\n  \"aussätzig\": \"aussatz\",\n  \"aussätzige\": \"aussatz\",\n  \"aussätzigen\": \"aussatz\",\n  \"ausschalten\": \"ausschalt\",\n  \"ausschicken\": \"ausschick\",\n  \"ausschied\": \"ausschied\",\n  \"ausschlag\": \"ausschlag\",\n  \"ausschließen\": \"ausschliess\",\n  \"ausschliesslich\": \"ausschliess\",\n  \"ausschließlich\": \"ausschliess\",\n  \"ausschliessliches\": \"ausschliess\",\n  \"ausschließliches\": \"ausschliess\",\n  \"ausschliesst\": \"ausschliesst\",\n  \"ausschliessungsweise\": \"ausschliessungsweis\",\n  \"ausschlugen\": \"ausschlug\",\n  \"ausschmückten\": \"ausschmuckt\",\n  \"ausschneiden\": \"ausschneid\",\n  \"ausschnitt\": \"ausschnitt\",\n  \"ausschnitte\": \"ausschnitt\",\n  \"ausschuss\": \"ausschuss\",\n  \"ausschütten\": \"ausschutt\",\n  \"ausschwenkend\": \"ausschwenk\",\n  \"aussehe\": \"ausseh\",\n  \"aussehen\": \"ausseh\",\n  \"aussehender\": \"ausseh\",\n  \"aussehens\": \"ausseh\",\n  \"aussen\": \"auss\",\n  \"außen\": \"auss\",\n  \"aussenden\": \"aussend\",\n  \"aussendung\": \"aussend\",\n  \"aussenminister\": \"aussenminist\",\n  \"aussenpolitik\": \"aussenpolit\",\n  \"aussenwerke\": \"aussenwerk\",\n  \"außenwerke\": \"aussenwerk\",\n  \"ausser\": \"auss\",\n  \"außer\": \"auss\",\n  \"ausserdem\": \"ausserd\",\n  \"außerdem\": \"ausserd\",\n  \"äussere\": \"auss\",\n  \"äußere\": \"auss\",\n  \"äusserem\": \"auss\",\n  \"äußerem\": \"auss\",\n  \"äusseren\": \"auss\",\n  \"äußeren\": \"auss\",\n  \"äusserer\": \"auss\",\n  \"äußerer\": \"auss\",\n  \"äusseres\": \"auss\",\n  \"äußeres\": \"auss\",\n  \"aussergewöhnliche\": \"aussergewohn\",\n  \"außergewöhnliche\": \"aussergewohn\",\n  \"aussergewöhnliches\": \"aussergewohn\",\n  \"ausserhalb\": \"ausserhalb\",\n  \"außerhalb\": \"ausserhalb\",\n  \"äusserlich\": \"auss\",\n  \"äußerlich\": \"auss\",\n  \"äusserliche\": \"auss\",\n  \"äußerliche\": \"auss\",\n  \"äusserlichen\": \"auss\",\n  \"äußerlichen\": \"auss\",\n  \"äusserlicher\": \"auss\",\n  \"äußerlicher\": \"auss\",\n  \"äusserliches\": \"auss\",\n  \"äußerliches\": \"auss\",\n  \"äusserlichkeiten\": \"ausser\",\n  \"äußerlichkeiten\": \"ausser\",\n  \"äusserlichsten\": \"auss\",\n  \"äußerlichsten\": \"auss\",\n  \"äussern\": \"auss\",\n  \"äußern\": \"auss\",\n  \"äussernden\": \"aussernd\",\n  \"ausserordentlich\": \"ausserordent\",\n  \"außerordentlich\": \"ausserordent\",\n  \"ausserordentliche\": \"ausserordent\",\n  \"ausserordentlichen\": \"ausserordent\",\n  \"außerordentlichen\": \"ausserordent\",\n  \"äusserst\": \"ausserst\",\n  \"äußerst\": \"ausserst\",\n  \"äusserste\": \"ausserst\",\n  \"äußerste\": \"ausserst\",\n  \"äussersten\": \"ausserst\",\n  \"äußersten\": \"ausserst\",\n  \"äusserster\": \"ausserst\",\n  \"äußerster\": \"ausserst\",\n  \"äusserstes\": \"ausserst\",\n  \"äußerstes\": \"ausserst\",\n  \"äussert\": \"aussert\",\n  \"äußert\": \"aussert\",\n  \"äusserung\": \"ausser\",\n  \"äußerung\": \"ausser\",\n  \"äusserungen\": \"ausser\",\n  \"äußerungen\": \"ausser\",\n  \"aussetzen\": \"aussetz\",\n  \"aussetzend\": \"aussetz\",\n  \"aussetzte\": \"aussetzt\",\n  \"aussetzten\": \"aussetzt\",\n  \"aussi\": \"aussi\",\n  \"aussicht\": \"aussicht\",\n  \"aussichten\": \"aussicht\",\n  \"aussichtslos\": \"aussichtslos\",\n  \"aussichtspunkte\": \"aussichtspunkt\",\n  \"aussiehst\": \"aussieh\",\n  \"aussieht\": \"aussieht\",\n  \"aussigraspelt\": \"aussigraspelt\",\n  \"aussigsprungen\": \"aussigspr\",\n  \"aussiheiret\": \"aussiheiret\",\n  \"aussilassen\": \"aussilass\",\n  \"aussinnen\": \"aussinn\",\n  \"aussischickt\": \"aussischickt\",\n  \"aussizahlt\": \"aussizahlt\",\n  \"ausspähenden\": \"ausspah\",\n  \"ausspannen\": \"ausspann\",\n  \"ausspannt\": \"ausspannt\",\n  \"ausspannung\": \"ausspann\",\n  \"ausspielen\": \"ausspiel\",\n  \"aussprach\": \"aussprach\",\n  \"aussprache\": \"aussprach\",\n  \"aussprachen\": \"aussprach\",\n  \"aussprechen\": \"aussprech\",\n  \"ausspricht\": \"ausspricht\",\n  \"ausspruch\": \"ausspruch\",\n  \"ausspruche\": \"ausspruch\",\n  \"aussprüchen\": \"ausspruch\",\n  \"ausspuckend\": \"ausspuck\",\n  \"ausspüren\": \"ausspur\",\n  \"ausstand\": \"ausstand\",\n  \"ausstarb\": \"ausstarb\",\n  \"ausstattung\": \"ausstatt\",\n  \"ausstehen\": \"aussteh\",\n  \"ausstehendes\": \"aussteh\",\n  \"aussteigen\": \"aussteig\",\n  \"ausstellung\": \"ausstell\",\n  \"aussteuer\": \"aussteu\",\n  \"ausstieg\": \"ausstieg\",\n  \"ausstiess\": \"ausstiess\",\n  \"ausstieß\": \"ausstiess\",\n  \"ausstossen\": \"ausstoss\",\n  \"ausstoßen\": \"ausstoss\",\n  \"ausstrahlen\": \"ausstrahl\",\n  \"ausstrahlt\": \"ausstrahlt\",\n  \"ausstrahlung\": \"ausstrahl\",\n  \"ausstrecke\": \"ausstreck\",\n  \"ausstrecken\": \"ausstreck\",\n  \"ausstreckt\": \"ausstreckt\",\n  \"ausstreckte\": \"ausstreckt\",\n  \"ausstreckung\": \"ausstreck\",\n  \"ausströmen\": \"ausstrom\",\n  \"aussuchst\": \"aussuch\",\n  \"austausch\": \"austausch\",\n  \"austauschen\": \"austausch\",\n  \"austauschte\": \"austauscht\",\n  \"austeilende\": \"austeil\",\n  \"austellers\": \"austell\",\n  \"austern\": \"aust\",\n  \"austilgten\": \"austilgt\",\n  \"australien\": \"australi\",\n  \"austraten\": \"austrat\",\n  \"austreibe\": \"austreib\",\n  \"austrinken\": \"austrink\",\n  \"austritte\": \"austritt\",\n  \"austrittstrenddie\": \"austrittstrenddi\",\n  \"austrittswelle\": \"austrittswell\",\n  \"austrocknen\": \"austrockn\",\n  \"austrocknet\": \"austrocknet\",\n  \"austrocknete\": \"austrocknet\",\n  \"ausübe\": \"ausub\",\n  \"ausüben\": \"ausub\",\n  \"ausübt\": \"ausubt\",\n  \"ausübung\": \"ausub\",\n  \"auswahl\": \"auswahl\",\n  \"auswandern\": \"auswand\",\n  \"auswanderung\": \"auswander\",\n  \"auswanderungsziel\": \"auswanderungsziel\",\n  \"auswarf\": \"auswarf\",\n  \"auswärtige\": \"auswart\",\n  \"auswärtigem\": \"auswart\",\n  \"auswärtigen\": \"auswart\",\n  \"auswärts\": \"auswart\",\n  \"ausweg\": \"ausweg\",\n  \"auswege\": \"ausweg\",\n  \"ausweis\": \"ausweis\",\n  \"ausweisen\": \"ausweis\",\n  \"ausweiset\": \"ausweiset\",\n  \"ausweisst\": \"ausweisst\",\n  \"auswendig\": \"auswend\",\n  \"auswendige\": \"auswend\",\n  \"auswendigere\": \"auswend\",\n  \"auswendigeren\": \"auswend\",\n  \"auswendigeres\": \"auswend\",\n  \"auswendiges\": \"auswend\",\n  \"auswendiglernen\": \"auswendiglern\",\n  \"auswendigsten\": \"auswend\",\n  \"auswerfen\": \"auswerf\",\n  \"auswichen\": \"auswich\",\n  \"auswirft\": \"auswirft\",\n  \"auswüchse\": \"auswuchs\",\n  \"auswuchsen\": \"auswuchs\",\n  \"auszahlen\": \"auszahl\",\n  \"auszahlte\": \"auszahlt\",\n  \"auszählung\": \"auszahl\",\n  \"auszehrung\": \"auszehr\",\n  \"auszeichnen\": \"auszeichn\",\n  \"auszeichnender\": \"auszeichn\",\n  \"auszeichnet\": \"auszeichnet\",\n  \"auszeichnung\": \"auszeichn\",\n  \"ausziehen\": \"auszieh\",\n  \"ausziehenden\": \"auszieh\",\n  \"auszieht\": \"auszieht\",\n  \"ausziehtisch\": \"auszieht\",\n  \"auszog\": \"auszog\",\n  \"auszogen\": \"auszog\",\n  \"auszuarbeiten\": \"auszuarbeit\",\n  \"auszubauen\": \"auszubau\",\n  \"auszubilden\": \"auszubild\",\n  \"auszudehnen\": \"auszudehn\",\n  \"auszudrücken\": \"auszudruck\",\n  \"auszufahren\": \"auszufahr\",\n  \"auszuführen\": \"auszufuhr\",\n  \"auszufüllen\": \"auszufull\",\n  \"auszug\": \"auszug\",\n  \"auszüge\": \"auszug\",\n  \"auszugeben\": \"auszugeb\",\n  \"auszugehen\": \"auszugeh\",\n  \"auszügen\": \"auszug\",\n  \"auszuhalten\": \"auszuhalt\",\n  \"auszuklagen\": \"auszuklag\",\n  \"auszukneifen\": \"auszukneif\",\n  \"auszukochen\": \"auszukoch\",\n  \"auszukosten\": \"auszukost\",\n  \"auszulachen\": \"auszulach\",\n  \"auszulassen\": \"auszulass\",\n  \"auszulöschen\": \"auszulosch\",\n  \"auszumachen\": \"auszumach\",\n  \"auszunutzen\": \"auszunutz\",\n  \"auszupacken\": \"auszupack\",\n  \"auszuputzen\": \"auszuputz\",\n  \"auszureissen\": \"auszureiss\",\n  \"auszureuten\": \"auszureut\",\n  \"auszurichten\": \"auszuricht\",\n  \"auszurotten\": \"auszurott\",\n  \"auszurücken\": \"auszuruck\",\n  \"auszurufen\": \"auszuruf\",\n  \"auszuruhen\": \"auszuruh\",\n  \"auszurüsten\": \"auszurust\",\n  \"auszuschlagen\": \"auszuschlag\",\n  \"auszuschliessen\": \"auszuschliess\",\n  \"auszuschmücken\": \"auszuschmuck\",\n  \"auszuschreiten\": \"auszuschreit\",\n  \"auszusehen\": \"auszuseh\",\n  \"auszusetzen\": \"auszusetz\",\n  \"auszusinnen\": \"auszusinn\",\n  \"auszuspannen\": \"auszuspann\",\n  \"auszusperren\": \"auszusperr\",\n  \"auszusprechen\": \"auszusprech\",\n  \"auszustaffieren\": \"auszustaffi\",\n  \"auszustossen\": \"auszustoss\",\n  \"auszustrecken\": \"auszustreck\",\n  \"auszuteilen\": \"auszuteil\",\n  \"auszuweichen\": \"auszuweich\",\n  \"auszuziehen\": \"auszuzieh\",\n  \"auto\": \"auto\",\n  \"autokratischen\": \"autokrat\",\n  \"automatisch\": \"automat\",\n  \"automobil\": \"automobil\",\n  \"autonomie\": \"autonomi\",\n  \"autor\": \"autor\",\n  \"autorität\": \"autoritat\",\n  \"autos\": \"autos\",\n  \"autoverkäufen\": \"autoverkauf\",\n  \"available\": \"availabl\",\n  \"avancierte\": \"avanciert\",\n  \"avanti\": \"avanti\",\n  \"aven\": \"aven\",\n  \"aversamur\": \"aversamur\",\n  \"axt\": \"axt\",\n  \"äxten\": \"axt\",\n  \"aydin\": \"aydin\",\n  \"b\": \"b\",\n  \"baam\": \"baam\",\n  \"baaselbieterdütsch\": \"baaselbieterdutsch\",\n  \"babel\": \"babel\",\n  \"babels\": \"babel\",\n  \"baby\": \"baby\",\n  \"babylon\": \"babylon\",\n  \"babylonische\": \"babylon\",\n  \"bacchanal\": \"bacchanal\",\n  \"bach\": \"bach\",\n  \"bache\": \"bach\",\n  \"bäche\": \"bach\",\n  \"bächen\": \"bach\",\n  \"baches\": \"bach\",\n  \"bachforellen\": \"bachforell\",\n  \"bächlein\": \"bachlein\",\n  \"bachs\": \"bach\",\n  \"bachtal\": \"bachtal\",\n  \"bachweiden\": \"bachweid\",\n  \"bachwellen\": \"bachwell\",\n  \"backbirnen\": \"backbirn\",\n  \"bäckchen\": \"backch\",\n  \"backe\": \"back\",\n  \"backen\": \"back\",\n  \"backenbärtchen\": \"backenbartch\",\n  \"bäcker\": \"back\",\n  \"backofen\": \"backof\",\n  \"backsteinplatte\": \"backsteinplatt\",\n  \"backtröge\": \"backtrog\",\n  \"backwerk\": \"backwerk\",\n  \"baco\": \"baco\",\n  \"bad\": \"bad\",\n  \"bademantels\": \"bademantel\",\n  \"baden\": \"bad\",\n  \"badeplatz\": \"badeplatz\",\n  \"badepüppchen\": \"badepuppch\",\n  \"badewanne\": \"badewann\",\n  \"badische\": \"badisch\",\n  \"bagatellwechseln\": \"bagatellwechseln\",\n  \"bagels\": \"bagel\",\n  \"bah\": \"bah\",\n  \"bahn\": \"bahn\",\n  \"bahnbrechenden\": \"bahnbrech\",\n  \"bahnen\": \"bahn\",\n  \"bahnhof\": \"bahnhof\",\n  \"bahnhofes\": \"bahnhof\",\n  \"bahnte\": \"bahnt\",\n  \"bahrtuch\": \"bahrtuch\",\n  \"bajonett\": \"bajonett\",\n  \"balaenae\": \"balaena\",\n  \"balance\": \"balanc\",\n  \"bald\": \"bald\",\n  \"baldige\": \"baldig\",\n  \"balester\": \"bal\",\n  \"balken\": \"balk\",\n  \"balkone\": \"balkon\",\n  \"balkonen\": \"balkon\",\n  \"ball\": \"ball\",\n  \"ballade\": \"ballad\",\n  \"balles\": \"ball\",\n  \"balsam\": \"balsam\",\n  \"balsamfläschchen\": \"balsamflaschch\",\n  \"band\": \"band\",\n  \"bandapparat\": \"bandapparat\",\n  \"bändchen\": \"bandch\",\n  \"bande\": \"band\",\n  \"bände\": \"band\",\n  \"bandelier\": \"bandeli\",\n  \"bandeliere\": \"bandeli\",\n  \"banden\": \"band\",\n  \"bänder\": \"band\",\n  \"bändern\": \"band\",\n  \"bandgerät\": \"bandgerat\",\n  \"bändigen\": \"bandig\",\n  \"bändigung\": \"bandig\",\n  \"banditenähnlichen\": \"banditenahn\",\n  \"bandschnippel\": \"bandschnippel\",\n  \"bang\": \"bang\",\n  \"bange\": \"bang\",\n  \"bangen\": \"bang\",\n  \"banger\": \"bang\",\n  \"bangigkeit\": \"bangig\",\n  \"bänglich\": \"banglich\",\n  \"bank\": \"bank\",\n  \"bankbeamte\": \"bankbeamt\",\n  \"bankbeamten\": \"bankbeamt\",\n  \"bankel\": \"bankel\",\n  \"banken\": \"bank\",\n  \"bänken\": \"bank\",\n  \"bankett\": \"bankett\",\n  \"bankgeschäft\": \"bankgeschaft\",\n  \"bankhause\": \"bankhaus\",\n  \"bankier\": \"banki\",\n  \"bankiere\": \"banki\",\n  \"bankiers\": \"banki\",\n  \"bankiervereinigung\": \"bankierverein\",\n  \"bankkonto\": \"bankkonto\",\n  \"bankl\": \"bankl\",\n  \"bänklein\": \"banklein\",\n  \"banknote\": \"banknot\",\n  \"bankratib\": \"bankratib\",\n  \"bankraub\": \"bankraub\",\n  \"bankräuber\": \"bankraub\",\n  \"bankräuberin\": \"bankrauberin\",\n  \"banküberfall\": \"bankuberfall\",\n  \"banküberfällen\": \"bankuberfall\",\n  \"bann\": \"bann\",\n  \"bar\": \"bar\",\n  \"bär\": \"bar\",\n  \"barauslage\": \"barauslag\",\n  \"barbaren\": \"barbar\",\n  \"barbarischen\": \"barbar\",\n  \"barbiergesellen\": \"barbiergesell\",\n  \"bare\": \"bar\",\n  \"baren\": \"bar\",\n  \"bären\": \"bar\",\n  \"bärenfell\": \"barenfell\",\n  \"bärenschinken\": \"barenschink\",\n  \"bärenstall\": \"barenstall\",\n  \"bärentanz\": \"barentanz\",\n  \"bares\": \"bar\",\n  \"barfuss\": \"barfuss\",\n  \"barfuß\": \"barfuss\",\n  \"barg\": \"barg\",\n  \"barhäuptig\": \"barhaupt\",\n  \"barmherzig\": \"barmherz\",\n  \"barmherziger\": \"barmherz\",\n  \"barmherzigkeit\": \"barmherz\",\n  \"barmherzigkeiten\": \"barmherz\",\n  \"bars\": \"bar\",\n  \"barsängerin\": \"barsangerin\",\n  \"barsch\": \"barsch\",\n  \"barschaft\": \"barschaft\",\n  \"barsche\": \"barsch\",\n  \"barsches\": \"barsch\",\n  \"bart\": \"bart\",\n  \"barte\": \"bart\",\n  \"bartes\": \"bart\",\n  \"barthaare\": \"barthaar\",\n  \"barthel\": \"barthel\",\n  \"bartholomaios\": \"bartholomaios\",\n  \"bartstrahn\": \"bartstrahn\",\n  \"bartwichse\": \"bartwichs\",\n  \"baschans\": \"baschan\",\n  \"bäschen\": \"basch\",\n  \"base\": \"bas\",\n  \"basel\": \"basel\",\n  \"baselder\": \"baseld\",\n  \"baseler\": \"basel\",\n  \"baselland\": \"baselland\",\n  \"basellandschäftler\": \"basellandschaftl\",\n  \"basilisk\": \"basilisk\",\n  \"basilisken\": \"basilisk\",\n  \"basiliskeneier\": \"basiliskenei\",\n  \"basis\": \"basis\",\n  \"basler\": \"basl\",\n  \"bass\": \"bass\",\n  \"bassewitz\": \"bassewitz\",\n  \"bassgeige\": \"bassgeig\",\n  \"bassgeigenkonzert\": \"bassgeigenkonzert\",\n  \"bassgeiger\": \"bassgeig\",\n  \"bassstimme\": \"bassstimm\",\n  \"baßstimme\": \"bassstimm\",\n  \"bast\": \"bast\",\n  \"basteln\": \"basteln\",\n  \"bastelten\": \"bastelt\",\n  \"basthaar\": \"basthaar\",\n  \"bat\": \"bat\",\n  \"baten\": \"bat\",\n  \"bath\": \"bath\",\n  \"batley\": \"batley\",\n  \"batterie\": \"batteri\",\n  \"batzen\": \"batz\",\n  \"bau\": \"bau\",\n  \"bauamtsleiter\": \"bauamtsleit\",\n  \"bauart\": \"bauart\",\n  \"bauch\": \"bauch\",\n  \"bauche\": \"bauch\",\n  \"bäuchen\": \"bauch\",\n  \"bauches\": \"bauch\",\n  \"bauchflasche\": \"bauchflasch\",\n  \"bäuchlein\": \"bauchlein\",\n  \"bauchschmerzen\": \"bauchschmerz\",\n  \"bauchwitz\": \"bauchwitz\",\n  \"baudenweibe\": \"baudenweib\",\n  \"bauen\": \"bau\",\n  \"bauer\": \"bau\",\n  \"bäuerin\": \"bauerin\",\n  \"bäuerinnen\": \"bauerinn\",\n  \"bäuerlein\": \"bauerlein\",\n  \"bäuerliche\": \"bau\",\n  \"bäuerlichen\": \"bau\",\n  \"bäuerlicher\": \"bau\",\n  \"bauern\": \"bau\",\n  \"bauerngehöftes\": \"bauerngehoft\",\n  \"bauernhand\": \"bauernhand\",\n  \"bauernhause\": \"bauernhaus\",\n  \"bauernhof\": \"bauernhof\",\n  \"bauernhöfe\": \"bauernhof\",\n  \"bauernklotzes\": \"bauernklotz\",\n  \"bauernknecht\": \"bauernknecht\",\n  \"bauernmadl\": \"bauernmadl\",\n  \"bauernpack\": \"bauernpack\",\n  \"bauernregeln\": \"bauernregeln\",\n  \"bauernsohn\": \"bauernsohn\",\n  \"bauernstube\": \"bauernstub\",\n  \"bauernwirt\": \"bauernwirt\",\n  \"bauers\": \"bau\",\n  \"bauersleute\": \"bauersleut\",\n  \"bauersmann\": \"bauersmann\",\n  \"bauerssohn\": \"bauerssohn\",\n  \"baues\": \"bau\",\n  \"bauet\": \"bauet\",\n  \"bauete\": \"bauet\",\n  \"baufälliges\": \"baufall\",\n  \"baulichkeiten\": \"baulich\",\n  \"baum\": \"baum\",\n  \"baumast\": \"baumast\",\n  \"baumblätter\": \"baumblatt\",\n  \"bäumchen\": \"baumch\",\n  \"baume\": \"baum\",\n  \"bäume\": \"baum\",\n  \"baumeln\": \"baumeln\",\n  \"baumelnd\": \"baumelnd\",\n  \"baumelte\": \"baumelt\",\n  \"bäumen\": \"baum\",\n  \"baumes\": \"baum\",\n  \"baumgespenster\": \"baumgespen\",\n  \"baumhöhe\": \"baumhoh\",\n  \"baumklötze\": \"baumklotz\",\n  \"baumknospen\": \"baumknosp\",\n  \"baumstamm\": \"baumstamm\",\n  \"baumstamme\": \"baumstamm\",\n  \"baumstöcke\": \"baumstock\",\n  \"baumstumpf\": \"baumstumpf\",\n  \"baumwipfel\": \"baumwipfel\",\n  \"baumwipfeln\": \"baumwipfeln\",\n  \"baumwolle\": \"baumwoll\",\n  \"baumwollene\": \"baumwoll\",\n  \"baumwurzel\": \"baumwurzel\",\n  \"bäurin\": \"baurin\",\n  \"baut\": \"baut\",\n  \"baute\": \"baut\",\n  \"bauten\": \"baut\",\n  \"bauverständiger\": \"bauverstand\",\n  \"bauwerk\": \"bauwerk\",\n  \"bauz\": \"bauz\",\n  \"bayer\": \"bay\",\n  \"bayerischer\": \"bayer\",\n  \"bayern\": \"bay\",\n  \"bayers\": \"bay\",\n  \"baz\": \"baz\",\n  \"bdellium\": \"bdellium\",\n  \"be\": \"be\",\n  \"bea\": \"bea\",\n  \"beabsichtige\": \"beabsicht\",\n  \"beabsichtigen\": \"beabsicht\",\n  \"beabsichtigt\": \"beabsichtigt\",\n  \"beabsichtigte\": \"beabsichtigt\",\n  \"beabsichtigten\": \"beabsichtigt\",\n  \"beachte\": \"beacht\",\n  \"beachten\": \"beacht\",\n  \"beachtet\": \"beachtet\",\n  \"beachtete\": \"beachtet\",\n  \"beachteten\": \"beachtet\",\n  \"beachtung\": \"beachtung\",\n  \"beamte\": \"beamt\",\n  \"beamten\": \"beamt\",\n  \"beamtenschaft\": \"beamtenschaft\",\n  \"beamtenstellen\": \"beamtenstell\",\n  \"beamtenwelt\": \"beamtenwelt\",\n  \"beamter\": \"beamt\",\n  \"beängstigt\": \"beangstigt\",\n  \"beängstigung\": \"beangstig\",\n  \"beanstanden\": \"beanstand\",\n  \"beantworten\": \"beantwort\",\n  \"beantwortete\": \"beantwortet\",\n  \"beantwortung\": \"beantwort\",\n  \"bearbeiten\": \"bearbeit\",\n  \"bearbeitend\": \"bearbeit\",\n  \"bearbeitet\": \"bearbeitet\",\n  \"bearbeitung\": \"bearbeit\",\n  \"beatrix\": \"beatrix\",\n  \"beaufsichtigen\": \"beaufsicht\",\n  \"beaufsichtigungsrecht\": \"beaufsichtigungsrecht\",\n  \"beauftragen\": \"beauftrag\",\n  \"beauftragt\": \"beauftragt\",\n  \"beauftragte\": \"beauftragt\",\n  \"beauftragter\": \"beauftragt\",\n  \"bebauen\": \"bebau\",\n  \"bebaut\": \"bebaut\",\n  \"bebaute\": \"bebaut\",\n  \"bebauung\": \"bebau\",\n  \"beben\": \"beb\",\n  \"bebend\": \"bebend\",\n  \"beblühte\": \"bebluht\",\n  \"bebte\": \"bebt\",\n  \"becher\": \"bech\",\n  \"becken\": \"beck\",\n  \"bedacht\": \"bedacht\",\n  \"bedachte\": \"bedacht\",\n  \"bedachtem\": \"bedacht\",\n  \"bedächtig\": \"bedacht\",\n  \"bedachtlosen\": \"bedachtlos\",\n  \"bedachtsam\": \"bedachtsam\",\n  \"bedanke\": \"bedank\",\n  \"bedanken\": \"bedank\",\n  \"bedankt\": \"bedankt\",\n  \"bedankten\": \"bedankt\",\n  \"bedarf\": \"bedarf\",\n  \"bedauere\": \"bedau\",\n  \"bedauerlich\": \"bedau\",\n  \"bedauern\": \"bedau\",\n  \"bedauernswerter\": \"bedauernswert\",\n  \"bedauerte\": \"bedauert\",\n  \"bedecken\": \"bedeck\",\n  \"bedeckt\": \"bedeckt\",\n  \"bedeckte\": \"bedeckt\",\n  \"bedeckten\": \"bedeckt\",\n  \"bedeckung\": \"bedeck\",\n  \"bedenke\": \"bedenk\",\n  \"bedenken\": \"bedenk\",\n  \"bedenkendie\": \"bedenkendi\",\n  \"bedenklich\": \"bedenk\",\n  \"bedenkliche\": \"bedenk\",\n  \"bedenklichen\": \"bedenk\",\n  \"bedenklicher\": \"bedenk\",\n  \"bedenklichsten\": \"bedenk\",\n  \"bedenkt\": \"bedenkt\",\n  \"bedeute\": \"bedeut\",\n  \"bedeuten\": \"bedeut\",\n  \"bedeutend\": \"bedeut\",\n  \"bedeutende\": \"bedeut\",\n  \"bedeutenden\": \"bedeut\",\n  \"bedeutendsten\": \"bedeut\",\n  \"bedeutet\": \"bedeutet\",\n  \"bedeutete\": \"bedeutet\",\n  \"bedeuteten\": \"bedeutet\",\n  \"bedeutsam\": \"bedeutsam\",\n  \"bedeutsames\": \"bedeutsam\",\n  \"bedeutsamkeit\": \"bedeutsam\",\n  \"bedeutsamsten\": \"bedeutsam\",\n  \"bedeutung\": \"bedeut\",\n  \"bedeutungen\": \"bedeut\",\n  \"bedeutungslos\": \"bedeutungslos\",\n  \"bedeutungslose\": \"bedeutungslos\",\n  \"bedeutungsvollen\": \"bedeutungsvoll\",\n  \"bediene\": \"bedi\",\n  \"bedienen\": \"bedi\",\n  \"bedient\": \"bedient\",\n  \"bediente\": \"bedient\",\n  \"bedienten\": \"bedient\",\n  \"bedienung\": \"bedien\",\n  \"bedinge\": \"beding\",\n  \"bedingt\": \"bedingt\",\n  \"bedingte\": \"bedingt\",\n  \"bedingten\": \"bedingt\",\n  \"bedingter\": \"bedingt\",\n  \"bedingung\": \"beding\",\n  \"bedingungen\": \"beding\",\n  \"bedrängen\": \"bedrang\",\n  \"bedrängt\": \"bedrangt\",\n  \"bedrängte\": \"bedrangt\",\n  \"bedrohete\": \"bedrohet\",\n  \"bedroht\": \"bedroht\",\n  \"bedrohung\": \"bedroh\",\n  \"bedrücken\": \"bedruck\",\n  \"bedrückende\": \"bedruck\",\n  \"bedrückt\": \"bedruckt\",\n  \"bedrückten\": \"bedruckt\",\n  \"beduinen\": \"beduin\",\n  \"bedünken\": \"bedunk\",\n  \"bedünkte\": \"bedunkt\",\n  \"bedürfe\": \"bedurf\",\n  \"bedürfen\": \"bedurf\",\n  \"bedürfnis\": \"bedurfnis\",\n  \"bedürfnisse\": \"bedurfnis\",\n  \"bedürfnissen\": \"bedurfnis\",\n  \"bedürfnisses\": \"bedurfnis\",\n  \"bedurfte\": \"bedurft\",\n  \"bedurften\": \"bedurft\",\n  \"bedürftig\": \"bedurft\",\n  \"bedürftige\": \"bedurft\",\n  \"bedürftiger\": \"bedurft\",\n  \"bedürftiges\": \"bedurft\",\n  \"beeile\": \"beeil\",\n  \"beeilen\": \"beeil\",\n  \"beeilte\": \"beeilt\",\n  \"beeilten\": \"beeilt\",\n  \"beeindruckendsten\": \"beeindruck\",\n  \"beeindruckt\": \"beeindruckt\",\n  \"beeindruckte\": \"beeindruckt\",\n  \"beeinflusst\": \"beeinflusst\",\n  \"beeinflußt\": \"beeinflusst\",\n  \"beeinträchtigen\": \"beeintracht\",\n  \"beenden\": \"beend\",\n  \"beendet\": \"beendet\",\n  \"beendigt\": \"beendigt\",\n  \"beendigung\": \"beendig\",\n  \"beengte\": \"beengt\",\n  \"beengung\": \"beengung\",\n  \"beer\": \"beer\",\n  \"beerchen\": \"beerch\",\n  \"beerdigt\": \"beerdigt\",\n  \"beerdigungsinstitutes\": \"beerdigungsinstitut\",\n  \"beere\": \"beer\",\n  \"beeren\": \"beer\",\n  \"beerenkraut\": \"beerenkraut\",\n  \"beerensträucher\": \"beerenstrauch\",\n  \"beerensträuchern\": \"beerenstrauch\",\n  \"beerscheba\": \"beerscheba\",\n  \"beet\": \"beet\",\n  \"beete\": \"beet\",\n  \"beethovens\": \"beethov\",\n  \"befähigt\": \"befahigt\",\n  \"befahl\": \"befahl\",\n  \"befahlen\": \"befahl\",\n  \"befällt\": \"befallt\",\n  \"befand\": \"befand\",\n  \"befanden\": \"befand\",\n  \"befänden\": \"befand\",\n  \"befangen\": \"befang\",\n  \"befangenheit\": \"befang\",\n  \"befassen\": \"befass\",\n  \"befassend\": \"befass\",\n  \"befassete\": \"befasset\",\n  \"befasst\": \"befasst\",\n  \"befehden\": \"befehd\",\n  \"befehl\": \"befehl\",\n  \"befehle\": \"befehl\",\n  \"befehlen\": \"befehl\",\n  \"befehls\": \"befehl\",\n  \"befehlsartig\": \"befehlsart\",\n  \"befehlshaber\": \"befehlshab\",\n  \"befehlt\": \"befehlt\",\n  \"befestigen\": \"befest\",\n  \"befestigt\": \"befestigt\",\n  \"befestigte\": \"befestigt\",\n  \"befestigten\": \"befestigt\",\n  \"befiel\": \"befiel\",\n  \"befinde\": \"befind\",\n  \"befinden\": \"befind\",\n  \"befindet\": \"befindet\",\n  \"befindliche\": \"befind\",\n  \"befindlichen\": \"befind\",\n  \"befleckt\": \"befleckt\",\n  \"befleissigt\": \"befleissigt\",\n  \"befleissigte\": \"befleissigt\",\n  \"beflissen\": \"befliss\",\n  \"beflügeltes\": \"beflugelt\",\n  \"befohlen\": \"befohl\",\n  \"befolgen\": \"befolg\",\n  \"befolgt\": \"befolgt\",\n  \"befolgte\": \"befolgt\",\n  \"befolgten\": \"befolgt\",\n  \"befolgung\": \"befolg\",\n  \"beförderlich\": \"beford\",\n  \"befördern\": \"beford\",\n  \"befördert\": \"befordert\",\n  \"beförderung\": \"beforder\",\n  \"beförderungsmittel\": \"beforderungsmittel\",\n  \"befrachten\": \"befracht\",\n  \"befrage\": \"befrag\",\n  \"befragen\": \"befrag\",\n  \"befragt\": \"befragt\",\n  \"befragungen\": \"befrag\",\n  \"befreie\": \"befrei\",\n  \"befreien\": \"befrei\",\n  \"befreit\": \"befreit\",\n  \"befreite\": \"befreit\",\n  \"befreiung\": \"befreiung\",\n  \"befremden\": \"befremd\",\n  \"befremdet\": \"befremdet\",\n  \"befreundet\": \"befreundet\",\n  \"befriedigen\": \"befried\",\n  \"befriedigt\": \"befriedigt\",\n  \"befriedigte\": \"befriedigt\",\n  \"befriedigten\": \"befriedigt\",\n  \"befriedigung\": \"befried\",\n  \"befristet\": \"befristet\",\n  \"befruchten\": \"befrucht\",\n  \"befruchtet\": \"befruchtet\",\n  \"befruchtung\": \"befrucht\",\n  \"befruchtungen\": \"befrucht\",\n  \"befugnis\": \"befugnis\",\n  \"befugnisse\": \"befugnis\",\n  \"befugt\": \"befugt\",\n  \"befühlt\": \"befuhlt\",\n  \"befühlten\": \"befuhlt\",\n  \"befunden\": \"befund\",\n  \"befürchten\": \"befurcht\",\n  \"befürchtend\": \"befurcht\",\n  \"befürchtete\": \"befurchtet\",\n  \"befürchteten\": \"befurchtet\",\n  \"befürchtung\": \"befurcht\",\n  \"befürchtungen\": \"befurcht\",\n  \"begab\": \"begab\",\n  \"begaben\": \"begab\",\n  \"begabt\": \"begabt\",\n  \"begabteste\": \"begabt\",\n  \"begangen\": \"begang\",\n  \"begangene\": \"begang\",\n  \"begangenen\": \"begang\",\n  \"begann\": \"begann\",\n  \"begannen\": \"begann\",\n  \"begeben\": \"begeb\",\n  \"begebend\": \"begeb\",\n  \"begebenheit\": \"begeb\",\n  \"begebenheiten\": \"begeb\",\n  \"begegnen\": \"begegn\",\n  \"begegnet\": \"begegnet\",\n  \"begegnete\": \"begegnet\",\n  \"begegneten\": \"begegnet\",\n  \"begegnung\": \"begegn\",\n  \"begegnungen\": \"begegn\",\n  \"begehen\": \"begeh\",\n  \"begehre\": \"begehr\",\n  \"begehren\": \"begehr\",\n  \"begehrens\": \"begehr\",\n  \"begehrenswert\": \"begehrenswert\",\n  \"begehret\": \"begehret\",\n  \"begehrlichkeit\": \"begehr\",\n  \"begehrt\": \"begehrt\",\n  \"begehrte\": \"begehrt\",\n  \"begehrten\": \"begehrt\",\n  \"begehrung\": \"begehr\",\n  \"begehrungen\": \"begehr\",\n  \"begehrungs\": \"begehr\",\n  \"begehrungsvermögen\": \"begehrungsvermog\",\n  \"begehrungsvermögens\": \"begehrungsvermog\",\n  \"begeht\": \"begeht\",\n  \"begeistert\": \"begeistert\",\n  \"begeisterung\": \"begeister\",\n  \"begeisterungsstürmen\": \"begeisterungssturm\",\n  \"begib\": \"begib\",\n  \"begibt\": \"begibt\",\n  \"begiedren\": \"begiedr\",\n  \"begierde\": \"begierd\",\n  \"begierden\": \"begierd\",\n  \"begierig\": \"begier\",\n  \"begierigen\": \"begier\",\n  \"begieriger\": \"begier\",\n  \"begiessen\": \"begiess\",\n  \"begine\": \"begin\",\n  \"beging\": \"beging\",\n  \"beginn\": \"beginn\",\n  \"beginne\": \"beginn\",\n  \"beginnen\": \"beginn\",\n  \"beginnt\": \"beginnt\",\n  \"beglaubigen\": \"beglaub\",\n  \"beglaubigt\": \"beglaubigt\",\n  \"beglaubigte\": \"beglaubigt\",\n  \"begleiten\": \"begleit\",\n  \"begleitend\": \"begleit\",\n  \"begleiter\": \"begleit\",\n  \"begleitern\": \"begleit\",\n  \"begleiters\": \"begleit\",\n  \"begleitet\": \"begleitet\",\n  \"begleitete\": \"begleitet\",\n  \"begleiteten\": \"begleitet\",\n  \"begleitherren\": \"begleitherr\",\n  \"begleitung\": \"begleit\",\n  \"beglücken\": \"begluck\",\n  \"beglückte\": \"begluckt\",\n  \"beglückwünschen\": \"begluckwunsch\",\n  \"begnüge\": \"begnug\",\n  \"begnügt\": \"begnugt\",\n  \"begnügte\": \"begnugt\",\n  \"begonnen\": \"begonn\",\n  \"begoss\": \"begoss\",\n  \"begossenen\": \"begoss\",\n  \"begraben\": \"begrab\",\n  \"begräbnis\": \"begrabnis\",\n  \"begräbnisse\": \"begrabnis\",\n  \"begrasten\": \"begrast\",\n  \"begreif\": \"begreif\",\n  \"begreife\": \"begreif\",\n  \"begreifen\": \"begreif\",\n  \"begreiflich\": \"begreif\",\n  \"begreiflichen\": \"begreif\",\n  \"begreiflicher\": \"begreif\",\n  \"begreiflichkeit\": \"begreif\",\n  \"begreift\": \"begreift\",\n  \"begrenzen\": \"begrenz\",\n  \"begrenzt\": \"begrenzt\",\n  \"begrenzte\": \"begrenzt\",\n  \"begrenztheit\": \"begrenzt\",\n  \"begrenzung\": \"begrenz\",\n  \"begriff\": \"begriff\",\n  \"begriffe\": \"begriff\",\n  \"begriffen\": \"begriff\",\n  \"begriffener\": \"begriff\",\n  \"begriffenes\": \"begriff\",\n  \"begriffes\": \"begriff\",\n  \"begriffs\": \"begriff\",\n  \"begriffsstutziger\": \"begriffsstutz\",\n  \"begriffsverhältnisse\": \"begriffsverhaltnis\",\n  \"begrub\": \"begrub\",\n  \"begruben\": \"begrub\",\n  \"begründe\": \"begrund\",\n  \"begründen\": \"begrund\",\n  \"begründendem\": \"begrund\",\n  \"begründendes\": \"begrund\",\n  \"begründet\": \"begrundet\",\n  \"begründete\": \"begrundet\",\n  \"begründeten\": \"begrundet\",\n  \"begründung\": \"begrund\",\n  \"begründungen\": \"begrund\",\n  \"begrüssen\": \"begruss\",\n  \"begrüßen\": \"begruss\",\n  \"begrüssend\": \"begruss\",\n  \"begrüssenden\": \"begruss\",\n  \"begrüsst\": \"begrusst\",\n  \"begrüßt\": \"begrusst\",\n  \"begrüsste\": \"begrusst\",\n  \"begrüssten\": \"begrusst\",\n  \"begrüssung\": \"begruss\",\n  \"begrüßung\": \"begruss\",\n  \"begrüssungsknicks\": \"begrussungsknick\",\n  \"begucken\": \"beguck\",\n  \"beguckten\": \"beguckt\",\n  \"begünstigen\": \"begunst\",\n  \"begünstigt\": \"begunstigt\",\n  \"begünstigte\": \"begunstigt\",\n  \"begünstigung\": \"begunst\",\n  \"begürtet\": \"begurtet\",\n  \"begürtete\": \"begurtet\",\n  \"begüterte\": \"begutert\",\n  \"behaarung\": \"behaar\",\n  \"behaftet\": \"behaftet\",\n  \"behagen\": \"behag\",\n  \"behaglich\": \"behag\",\n  \"behaglicher\": \"behag\",\n  \"behagliches\": \"behag\",\n  \"behaglichkeit\": \"behag\",\n  \"behagte\": \"behagt\",\n  \"behagten\": \"behagt\",\n  \"behält\": \"behalt\",\n  \"behalte\": \"behalt\",\n  \"behalten\": \"behalt\",\n  \"behälter\": \"behalt\",\n  \"behältern\": \"behalt\",\n  \"behaltet\": \"behaltet\",\n  \"behältnis\": \"behaltnis\",\n  \"behältnisse\": \"behaltnis\",\n  \"behandeln\": \"behandeln\",\n  \"behandelt\": \"behandelt\",\n  \"behandelte\": \"behandelt\",\n  \"behandelten\": \"behandelt\",\n  \"behandle\": \"behandl\",\n  \"behandlung\": \"behandl\",\n  \"behängt\": \"behangt\",\n  \"beharre\": \"beharr\",\n  \"beharren\": \"beharr\",\n  \"beharrlich\": \"beharr\",\n  \"beharrlichkeit\": \"beharr\",\n  \"beharrt\": \"beharrt\",\n  \"beharrte\": \"beharrt\",\n  \"beharrungsvermögen\": \"beharrungsvermog\",\n  \"behauchten\": \"behaucht\",\n  \"behaupte\": \"behaupt\",\n  \"behaupten\": \"behaupt\",\n  \"behauptend\": \"behaupt\",\n  \"behauptet\": \"behauptet\",\n  \"behauptete\": \"behauptet\",\n  \"behaupteten\": \"behauptet\",\n  \"behauptung\": \"behaupt\",\n  \"behauptungen\": \"behaupt\",\n  \"behausung\": \"behaus\",\n  \"behelfen\": \"behelf\",\n  \"behende\": \"behend\",\n  \"beherbergen\": \"beherberg\",\n  \"beherbergte\": \"beherbergt\",\n  \"beherrschen\": \"beherrsch\",\n  \"beherrschend\": \"beherrsch\",\n  \"beherrschenden\": \"beherrsch\",\n  \"beherrscht\": \"beherrscht\",\n  \"beherrschte\": \"beherrscht\",\n  \"beherrschung\": \"beherrsch\",\n  \"beherzten\": \"beherzt\",\n  \"beherzter\": \"beherzt\",\n  \"behielt\": \"behielt\",\n  \"behilflich\": \"behilf\",\n  \"behindern\": \"behind\",\n  \"behindert\": \"behindert\",\n  \"behörde\": \"behord\",\n  \"behörden\": \"behord\",\n  \"behuf\": \"behuf\",\n  \"behufe\": \"behuf\",\n  \"behufs\": \"behuf\",\n  \"behüt\": \"behut\",\n  \"behüte\": \"behut\",\n  \"behüten\": \"behut\",\n  \"behütet\": \"behutet\",\n  \"behutsam\": \"behutsam\",\n  \"behutsames\": \"behutsam\",\n  \"bei\": \"bei\",\n  \"beibehalten\": \"beibehalt\",\n  \"beibehaltender\": \"beibehalt\",\n  \"beibrachte\": \"beibracht\",\n  \"beibringen\": \"beibring\",\n  \"beichte\": \"beicht\",\n  \"beichtete\": \"beichtet\",\n  \"beichtstuhl\": \"beichtstuhl\",\n  \"beide\": \"beid\",\n  \"beiden\": \"beid\",\n  \"beider\": \"beid\",\n  \"beiderlei\": \"beiderlei\",\n  \"beiderseitig\": \"beiderseit\",\n  \"beiderseits\": \"beiderseit\",\n  \"beides\": \"beid\",\n  \"beieinander\": \"beieinand\",\n  \"beifall\": \"beifall\",\n  \"beifälligem\": \"beifall\",\n  \"beifälliges\": \"beifall\",\n  \"beifallklatschen\": \"beifallklatsch\",\n  \"beifalls\": \"beifall\",\n  \"beifallsgeschrei\": \"beifallsgeschrei\",\n  \"beifügen\": \"beifug\",\n  \"beifügten\": \"beifugt\",\n  \"beigebracht\": \"beigebracht\",\n  \"beigefallen\": \"beigefall\",\n  \"beigefügt\": \"beigefugt\",\n  \"beigegeben\": \"beigegeb\",\n  \"beigegebene\": \"beigegeb\",\n  \"beigegebenes\": \"beigegeb\",\n  \"beigelegt\": \"beigelegt\",\n  \"beigemessen\": \"beigemess\",\n  \"beigemischt\": \"beigemischt\",\n  \"beigeordnet\": \"beigeordnet\",\n  \"beigesellen\": \"beigesell\",\n  \"beigesellet\": \"beigesellet\",\n  \"beigesellt\": \"beigesellt\",\n  \"beigesellte\": \"beigesellt\",\n  \"beigesellten\": \"beigesellt\",\n  \"beigesellung\": \"beigesell\",\n  \"beigesetzt\": \"beigesetzt\",\n  \"beigesteckt\": \"beigesteckt\",\n  \"beigestimmt\": \"beigestimmt\",\n  \"beigewohnt\": \"beigewohnt\",\n  \"beihilfe\": \"beihilf\",\n  \"beikommen\": \"beikomm\",\n  \"beile\": \"beil\",\n  \"beilege\": \"beileg\",\n  \"beilegen\": \"beileg\",\n  \"beilegt\": \"beilegt\",\n  \"beilegte\": \"beilegt\",\n  \"beilegung\": \"beileg\",\n  \"beileib\": \"beileib\",\n  \"beiliegend\": \"beilieg\",\n  \"beim\": \"beim\",\n  \"beimessen\": \"beimess\",\n  \"beimischung\": \"beimisch\",\n  \"bein\": \"bein\",\n  \"beinah\": \"beinah\",\n  \"beinahe\": \"beinah\",\n  \"beinamen\": \"beinam\",\n  \"beinchen\": \"beinch\",\n  \"beinchenende\": \"beinchen\",\n  \"beincheneroberung\": \"beinchenerober\",\n  \"beinchengeschichte\": \"beinchengeschicht\",\n  \"beinchens\": \"beinch\",\n  \"beine\": \"bein\",\n  \"beinen\": \"bein\",\n  \"beines\": \"bein\",\n  \"beinkleider\": \"beinkleid\",\n  \"beinkleidern\": \"beinkleid\",\n  \"beinwerks\": \"beinwerk\",\n  \"beirrte\": \"beirrt\",\n  \"beisammen\": \"beisamm\",\n  \"beisatz\": \"beisatz\",\n  \"beiseit\": \"beiseit\",\n  \"beiseite\": \"beiseit\",\n  \"beispiel\": \"beispiel\",\n  \"beispiele\": \"beispiel\",\n  \"beispielen\": \"beispiel\",\n  \"beispielsweise\": \"beispielsweis\",\n  \"beissbares\": \"beissbar\",\n  \"beissen\": \"beiss\",\n  \"beißen\": \"beiss\",\n  \"beissend\": \"beissend\",\n  \"beißend\": \"beissend\",\n  \"beissenden\": \"beissend\",\n  \"beisst\": \"beisst\",\n  \"beißt\": \"beisst\",\n  \"beistand\": \"beistand\",\n  \"beistehen\": \"beisteh\",\n  \"beisteher\": \"beisteh\",\n  \"beistimmendes\": \"beistimm\",\n  \"beistimmt\": \"beistimmt\",\n  \"beistimmte\": \"beistimmt\",\n  \"beistimmung\": \"beistimm\",\n  \"beitrag\": \"beitrag\",\n  \"beitragen\": \"beitrag\",\n  \"beitritt\": \"beitritt\",\n  \"beitritte\": \"beitritt\",\n  \"beiwohnen\": \"beiwohn\",\n  \"beizeiten\": \"beizeit\",\n  \"beizte\": \"beizt\",\n  \"beizubringen\": \"beizubring\",\n  \"beizulegen\": \"beizuleg\",\n  \"beizuspringen\": \"beizuspring\",\n  \"beizustehen\": \"beizusteh\",\n  \"beizusteuern\": \"beizusteu\",\n  \"beizutragen\": \"beizutrag\",\n  \"beizutreiben\": \"beizutreib\",\n  \"beizutreten\": \"beizutret\",\n  \"beizuwohnen\": \"beizuwohn\",\n  \"bejahend\": \"bejah\",\n  \"bejahrten\": \"bejahrt\",\n  \"bejahung\": \"bejah\",\n  \"bekam\": \"bekam\",\n  \"bekäme\": \"bekam\",\n  \"bekamen\": \"bekam\",\n  \"bekämen\": \"bekam\",\n  \"bekämpfen\": \"bekampf\",\n  \"bekämpft\": \"bekampft\",\n  \"bekämpfung\": \"bekampf\",\n  \"bekannt\": \"bekannt\",\n  \"bekannte\": \"bekannt\",\n  \"bekannten\": \"bekannt\",\n  \"bekanntgeworden\": \"bekanntgeword\",\n  \"bekanntlich\": \"bekannt\",\n  \"bekanntschaft\": \"bekanntschaft\",\n  \"bekanntschaften\": \"bekanntschaft\",\n  \"bekehre\": \"bekehr\",\n  \"bekehren\": \"bekehr\",\n  \"bekehrer\": \"bekehr\",\n  \"bekehret\": \"bekehret\",\n  \"bekehrt\": \"bekehrt\",\n  \"bekehrten\": \"bekehrt\",\n  \"bekehrung\": \"bekehr\",\n  \"bekenne\": \"bekenn\",\n  \"bekennen\": \"bekenn\",\n  \"bekennt\": \"bekennt\",\n  \"bekenntnis\": \"bekenntnis\",\n  \"bekenntnisse\": \"bekenntnis\",\n  \"bekenntnissen\": \"bekenntnis\",\n  \"bekir\": \"bekir\",\n  \"beklagen\": \"beklag\",\n  \"beklagenswert\": \"beklagenswert\",\n  \"beklagt\": \"beklagt\",\n  \"beklagte\": \"beklagt\",\n  \"beklebt\": \"beklebt\",\n  \"bekleiden\": \"bekleid\",\n  \"bekleidet\": \"bekleidet\",\n  \"bekleidete\": \"bekleidet\",\n  \"bekleidung\": \"bekleid\",\n  \"beklemmung\": \"beklemm\",\n  \"beklommen\": \"beklomm\",\n  \"beklommenheit\": \"beklomm\",\n  \"bekomm\": \"bekomm\",\n  \"bekomme\": \"bekomm\",\n  \"bekommen\": \"bekomm\",\n  \"bekommst\": \"bekomm\",\n  \"bekommt\": \"bekommt\",\n  \"beköstigung\": \"bekost\",\n  \"bekräftigt\": \"bekraftigt\",\n  \"bekräftigung\": \"bekraft\",\n  \"bekräftigungen\": \"bekraft\",\n  \"bekränzt\": \"bekranzt\",\n  \"bekreuzte\": \"bekreuzt\",\n  \"bekreuzten\": \"bekreuzt\",\n  \"bekriegten\": \"bekriegt\",\n  \"bekümmern\": \"bekumm\",\n  \"bekümmert\": \"bekummert\",\n  \"bekümmerte\": \"bekummert\",\n  \"beladen\": \"belad\",\n  \"beladenes\": \"belad\",\n  \"belagern\": \"belag\",\n  \"belagert\": \"belagert\",\n  \"belagerung\": \"belager\",\n  \"belanglos\": \"belanglos\",\n  \"belangloseste\": \"belanglos\",\n  \"belangt\": \"belangt\",\n  \"belassen\": \"belass\",\n  \"belastend\": \"belast\",\n  \"belastet\": \"belastet\",\n  \"belastete\": \"belastet\",\n  \"belästigen\": \"belast\",\n  \"belästigt\": \"belastigt\",\n  \"belästigte\": \"belastigt\",\n  \"belastung\": \"belast\",\n  \"belaubte\": \"belaubt\",\n  \"belaubter\": \"belaubt\",\n  \"belebbar\": \"belebbar\",\n  \"belebe\": \"beleb\",\n  \"beleben\": \"beleb\",\n  \"belebende\": \"beleb\",\n  \"belebt\": \"belebt\",\n  \"belebte\": \"belebt\",\n  \"belebtes\": \"belebt\",\n  \"belege\": \"beleg\",\n  \"belegen\": \"beleg\",\n  \"belegexemplar\": \"belegexemplar\",\n  \"belegt\": \"belegt\",\n  \"belehren\": \"belehr\",\n  \"belehrt\": \"belehrt\",\n  \"belehrte\": \"belehrt\",\n  \"belehrung\": \"belehr\",\n  \"beleibt\": \"beleibt\",\n  \"beleibtheit\": \"beleibt\",\n  \"beleidigen\": \"beleid\",\n  \"beleidigend\": \"beleid\",\n  \"beleidigender\": \"beleid\",\n  \"beleidigendste\": \"beleid\",\n  \"beleidigt\": \"beleidigt\",\n  \"beleidigte\": \"beleidigt\",\n  \"beleidigten\": \"beleidigt\",\n  \"beleidigung\": \"beleid\",\n  \"beleidigungen\": \"beleid\",\n  \"beleidung\": \"beleid\",\n  \"beleuchtet\": \"beleuchtet\",\n  \"beleuchtete\": \"beleuchtet\",\n  \"beleuchteten\": \"beleuchtet\",\n  \"beleuchtung\": \"beleucht\",\n  \"belial\": \"belial\",\n  \"belieben\": \"belieb\",\n  \"beliebig\": \"belieb\",\n  \"beliebige\": \"belieb\",\n  \"beliebigen\": \"belieb\",\n  \"beliebt\": \"beliebt\",\n  \"beliebte\": \"beliebt\",\n  \"beliebten\": \"beliebt\",\n  \"beliefen\": \"belief\",\n  \"bellen\": \"bell\",\n  \"bellkommando\": \"bellkommando\",\n  \"bellprobe\": \"bellprob\",\n  \"bellstrophe\": \"bellstroph\",\n  \"bellte\": \"bellt\",\n  \"belobt\": \"belobt\",\n  \"belobte\": \"belobt\",\n  \"belog\": \"belog\",\n  \"belohnen\": \"belohn\",\n  \"belohnt\": \"belohnt\",\n  \"belohnung\": \"belohn\",\n  \"belud\": \"belud\",\n  \"beluden\": \"belud\",\n  \"belüftung\": \"beluft\",\n  \"belügst\": \"belug\",\n  \"belustigen\": \"belust\",\n  \"belustigt\": \"belustigt\",\n  \"belustigten\": \"belustigt\",\n  \"belustigung\": \"belust\",\n  \"bemächtigen\": \"bemacht\",\n  \"bemalt\": \"bemalt\",\n  \"bemalte\": \"bemalt\",\n  \"bemalten\": \"bemalt\",\n  \"bemaltes\": \"bemalt\",\n  \"bemassen\": \"bemass\",\n  \"bemerke\": \"bemerk\",\n  \"bemerken\": \"bemerk\",\n  \"bemerklich\": \"bemerk\",\n  \"bemerkt\": \"bemerkt\",\n  \"bemerkte\": \"bemerkt\",\n  \"bemerkten\": \"bemerkt\",\n  \"bemerkung\": \"bemerk\",\n  \"bemerkungen\": \"bemerk\",\n  \"bemesset\": \"bemesset\",\n  \"bemitleiden\": \"bemitleid\",\n  \"bemoosten\": \"bemoost\",\n  \"bemühen\": \"bemuh\",\n  \"bemühet\": \"bemuhet\",\n  \"bemüht\": \"bemuht\",\n  \"bemühte\": \"bemuht\",\n  \"bemühung\": \"bemuh\",\n  \"bemühungen\": \"bemuh\",\n  \"ben\": \"ben\",\n  \"benachbarte\": \"benachbart\",\n  \"benachbarten\": \"benachbart\",\n  \"benahm\": \"benahm\",\n  \"benahmen\": \"benahm\",\n  \"benannt\": \"benannt\",\n  \"benannten\": \"benannt\",\n  \"benediktinerpater\": \"benediktinerpat\",\n  \"benediktus\": \"benediktus\",\n  \"benefizanlass\": \"benefizanlass\",\n  \"benehmen\": \"benehm\",\n  \"benehmens\": \"benehm\",\n  \"beneiden\": \"beneid\",\n  \"beneidenswürdige\": \"beneidenswurd\",\n  \"beneidet\": \"beneidet\",\n  \"beneidete\": \"beneidet\",\n  \"benennen\": \"benenn\",\n  \"benennens\": \"benenn\",\n  \"benennung\": \"benenn\",\n  \"benennungen\": \"benenn\",\n  \"benetzt\": \"benetzt\",\n  \"benetzte\": \"benetzt\",\n  \"benieselt\": \"benieselt\",\n  \"benimm\": \"benimm\",\n  \"benimmt\": \"benimmt\",\n  \"benjamin\": \"benjamin\",\n  \"benkert\": \"benkert\",\n  \"benommen\": \"benomm\",\n  \"benötigen\": \"benot\",\n  \"benötigt\": \"benotigt\",\n  \"benötigte\": \"benotigt\",\n  \"benötigten\": \"benotigt\",\n  \"benutzen\": \"benutz\",\n  \"benutzt\": \"benutzt\",\n  \"benutzte\": \"benutzt\",\n  \"benützte\": \"benutzt\",\n  \"benutzten\": \"benutzt\",\n  \"benützten\": \"benutzt\",\n  \"benützung\": \"benutz\",\n  \"beobachte\": \"beobacht\",\n  \"beobachten\": \"beobacht\",\n  \"beobachtens\": \"beobacht\",\n  \"beobachter\": \"beobacht\",\n  \"beobachtet\": \"beobachtet\",\n  \"beobachtete\": \"beobachtet\",\n  \"beobachteten\": \"beobachtet\",\n  \"beobachtung\": \"beobacht\",\n  \"beobachtungen\": \"beobacht\",\n  \"beordert\": \"beordert\",\n  \"bepackt\": \"bepackt\",\n  \"bepflanzt\": \"bepflanzt\",\n  \"bequem\": \"bequ\",\n  \"bequeme\": \"bequem\",\n  \"bequemen\": \"bequem\",\n  \"bequemer\": \"bequem\",\n  \"bequemes\": \"bequem\",\n  \"bequemliche\": \"bequem\",\n  \"bequemlichkeit\": \"bequem\",\n  \"bequemlichkeiten\": \"bequem\",\n  \"bequemte\": \"bequemt\",\n  \"beranger\": \"berang\",\n  \"beraten\": \"berat\",\n  \"berater\": \"berat\",\n  \"beratschlagen\": \"beratschlag\",\n  \"beratschlagt\": \"beratschlagt\",\n  \"beratung\": \"berat\",\n  \"beratungen\": \"berat\",\n  \"beratungsstelle\": \"beratungsstell\",\n  \"beratungsstellen\": \"beratungsstell\",\n  \"berauben\": \"beraub\",\n  \"beraubt\": \"beraubt\",\n  \"beraubte\": \"beraubt\",\n  \"beraubten\": \"beraubt\",\n  \"beraubter\": \"beraubt\",\n  \"beraubung\": \"beraub\",\n  \"berauscht\": \"berauscht\",\n  \"berchtesgaden\": \"berchtesgad\",\n  \"berchtesgadenerland\": \"berchtesgadenerland\",\n  \"berechnet\": \"berechnet\",\n  \"berechnung\": \"berechn\",\n  \"berechtigen\": \"berecht\",\n  \"berechtigt\": \"berechtigt\",\n  \"berechtigung\": \"berecht\",\n  \"bereden\": \"bered\",\n  \"beredet\": \"beredet\",\n  \"beredete\": \"beredet\",\n  \"beredeten\": \"beredet\",\n  \"beredsamkeit\": \"beredsam\",\n  \"beredt\": \"beredt\",\n  \"beredten\": \"beredt\",\n  \"beredteste\": \"beredt\",\n  \"beredung\": \"bered\",\n  \"beredungen\": \"bered\",\n  \"beredungsglauben\": \"beredungsglaub\",\n  \"beredungsglaubens\": \"beredungsglaub\",\n  \"beredungswahrheit\": \"beredungswahr\",\n  \"bereffend\": \"bereff\",\n  \"bereich\": \"bereich\",\n  \"bereichern\": \"bereich\",\n  \"bereichert\": \"bereichert\",\n  \"bereicherten\": \"bereichert\",\n  \"bereicherung\": \"bereicher\",\n  \"bereiften\": \"bereift\",\n  \"bereit\": \"bereit\",\n  \"bereiten\": \"bereit\",\n  \"bereitet\": \"bereitet\",\n  \"bereitete\": \"bereitet\",\n  \"bereiteten\": \"bereitet\",\n  \"bereitlagen\": \"bereitlag\",\n  \"bereitliege\": \"bereitlieg\",\n  \"bereits\": \"bereit\",\n  \"bereitschaft\": \"bereitschaft\",\n  \"bereitstand\": \"bereitstand\",\n  \"bereitstellen\": \"bereitstell\",\n  \"bereitung\": \"bereit\",\n  \"bereitwillig\": \"bereitwill\",\n  \"bereitwilligkeit\": \"bereitwill\",\n  \"bereue\": \"bereu\",\n  \"bereust\": \"bereust\",\n  \"bereut\": \"bereut\",\n  \"bereute\": \"bereut\",\n  \"berg\": \"berg\",\n  \"bergamsel\": \"bergamsel\",\n  \"berge\": \"berg\",\n  \"bergen\": \"berg\",\n  \"bergend\": \"bergend\",\n  \"berges\": \"berg\",\n  \"bergfeuer\": \"bergfeu\",\n  \"bergfeuern\": \"bergfeu\",\n  \"berggeist\": \"berggeist\",\n  \"berggipfel\": \"berggipfel\",\n  \"berggipfels\": \"berggipfel\",\n  \"berghalde\": \"berghald\",\n  \"berghang\": \"berghang\",\n  \"bergherz\": \"bergherz\",\n  \"berghöhlen\": \"berghohl\",\n  \"bergier\": \"bergi\",\n  \"bergigen\": \"bergig\",\n  \"bergkessel\": \"bergkessel\",\n  \"bergkräuter\": \"bergkraut\",\n  \"bergland\": \"bergland\",\n  \"berglüften\": \"bergluft\",\n  \"bergmann\": \"bergmann\",\n  \"bergnase\": \"bergnas\",\n  \"bergnebel\": \"bergnebel\",\n  \"bergraben\": \"bergrab\",\n  \"bergschatten\": \"bergschatt\",\n  \"bergschenke\": \"bergschenk\",\n  \"bergschlucht\": \"bergschlucht\",\n  \"bergschluchten\": \"bergschlucht\",\n  \"bergstämmen\": \"bergstamm\",\n  \"bergsteiger\": \"bergsteig\",\n  \"bergstimmen\": \"bergstimm\",\n  \"bergstock\": \"bergstock\",\n  \"bergwald\": \"bergwald\",\n  \"bergwaldes\": \"bergwald\",\n  \"bergwand\": \"bergwand\",\n  \"bergwasser\": \"bergwass\",\n  \"bergweg\": \"bergweg\",\n  \"bergwege\": \"bergweg\",\n  \"bergwegen\": \"bergweg\",\n  \"bergwellen\": \"bergwell\",\n  \"bergwerk\": \"bergwerk\",\n  \"bergwiesen\": \"bergwies\",\n  \"bergwind\": \"bergwind\",\n  \"bergzinne\": \"bergzinn\",\n  \"berhren\": \"berhr\",\n  \"bericht\": \"bericht\",\n  \"berichte\": \"bericht\",\n  \"berichten\": \"bericht\",\n  \"berichtet\": \"berichtet\",\n  \"berichtete\": \"berichtet\",\n  \"berichtigung\": \"bericht\",\n  \"beriechen\": \"beriech\",\n  \"berief\": \"berief\",\n  \"berieselt\": \"berieselt\",\n  \"berieten\": \"beriet\",\n  \"berlin\": \"berlin\",\n  \"berliner\": \"berlin\",\n  \"berlinfergus\": \"berlinfergus\",\n  \"bern\": \"bern\",\n  \"bernan\": \"bernan\",\n  \"bernard\": \"bernard\",\n  \"berner\": \"bern\",\n  \"bernischen\": \"bernisch\",\n  \"berns\": \"bern\",\n  \"bernstein\": \"bernstein\",\n  \"bernwas\": \"bernwas\",\n  \"berthold\": \"berthold\",\n  \"berücken\": \"beruck\",\n  \"berücksichtigen\": \"berucksicht\",\n  \"berücksichtigt\": \"berucksichtigt\",\n  \"berückt\": \"beruckt\",\n  \"beruf\": \"beruf\",\n  \"berufen\": \"beruf\",\n  \"berufenen\": \"beruf\",\n  \"beruflichen\": \"beruf\",\n  \"berufsabsichten\": \"berufsabsicht\",\n  \"berufsgenossen\": \"berufsgenoss\",\n  \"berufsmäßigen\": \"berufsmass\",\n  \"berufsmäßiger\": \"berufsmass\",\n  \"berufsschulen\": \"berufsschul\",\n  \"berufssoldat\": \"berufssoldat\",\n  \"berufswunsch\": \"berufswunsch\",\n  \"berufung\": \"beruf\",\n  \"beruhe\": \"beruh\",\n  \"beruhen\": \"beruh\",\n  \"beruhenden\": \"beruh\",\n  \"beruhet\": \"beruhet\",\n  \"beruhigen\": \"beruh\",\n  \"beruhigend\": \"beruh\",\n  \"beruhigenden\": \"beruh\",\n  \"beruhigt\": \"beruhigt\",\n  \"beruhigte\": \"beruhigt\",\n  \"beruhigten\": \"beruhigt\",\n  \"beruhigung\": \"beruh\",\n  \"beruhigungsmittel\": \"beruhigungsmittel\",\n  \"berühmen\": \"beruhm\",\n  \"berühmt\": \"beruhmt\",\n  \"berühmte\": \"beruhmt\",\n  \"berühmten\": \"beruhmt\",\n  \"berühmtesten\": \"beruhmt\",\n  \"berühmtheit\": \"beruhmt\",\n  \"berühre\": \"beruhr\",\n  \"berühren\": \"beruhr\",\n  \"berührende\": \"beruhr\",\n  \"berührt\": \"beruhrt\",\n  \"berührte\": \"beruhrt\",\n  \"berührten\": \"beruhrt\",\n  \"berührung\": \"beruhr\",\n  \"beruht\": \"beruht\",\n  \"beruhte\": \"beruht\",\n  \"berusstem\": \"berusst\",\n  \"besäen\": \"besa\",\n  \"besäest\": \"besa\",\n  \"besäet\": \"besaet\",\n  \"besagt\": \"besagt\",\n  \"besagte\": \"besagt\",\n  \"besagtem\": \"besagt\",\n  \"besagten\": \"besagt\",\n  \"besagtes\": \"besagt\",\n  \"besah\": \"besah\",\n  \"besahen\": \"besah\",\n  \"besamen\": \"besam\",\n  \"besamende\": \"besam\",\n  \"besamt\": \"besamt\",\n  \"besänftigen\": \"besanft\",\n  \"besänftigt\": \"besanftigt\",\n  \"besänftigte\": \"besanftigt\",\n  \"besänftigung\": \"besanft\",\n  \"besann\": \"besann\",\n  \"besannen\": \"besann\",\n  \"besass\": \"besass\",\n  \"besaß\": \"besass\",\n  \"besässe\": \"besass\",\n  \"besassen\": \"besass\",\n  \"besaßen\": \"besass\",\n  \"besät\": \"besat\",\n  \"besaufen\": \"besauf\",\n  \"beschädigen\": \"beschad\",\n  \"beschädigt\": \"beschadigt\",\n  \"beschädigte\": \"beschadigt\",\n  \"beschädigten\": \"beschadigt\",\n  \"beschaffen\": \"beschaff\",\n  \"beschaffenen\": \"beschaff\",\n  \"beschaffenheit\": \"beschaff\",\n  \"beschäftige\": \"beschaft\",\n  \"beschäftigen\": \"beschaft\",\n  \"beschäftigt\": \"beschaftigt\",\n  \"beschäftigte\": \"beschaftigt\",\n  \"beschäftigten\": \"beschaftigt\",\n  \"beschäftigter\": \"beschaftigt\",\n  \"beschäftigung\": \"beschaft\",\n  \"beschämen\": \"bescham\",\n  \"beschämt\": \"beschamt\",\n  \"beschämte\": \"beschamt\",\n  \"beschattet\": \"beschattet\",\n  \"beschaulich\": \"beschaulich\",\n  \"beschaulichen\": \"beschaulich\",\n  \"beschaulichkeit\": \"beschaulich\",\n  \"beschaust\": \"beschaust\",\n  \"beschaute\": \"beschaut\",\n  \"bescheid\": \"bescheid\",\n  \"bescheiden\": \"bescheid\",\n  \"bescheidend\": \"bescheid\",\n  \"bescheidenem\": \"bescheid\",\n  \"bescheidenen\": \"bescheid\",\n  \"bescheidener\": \"bescheid\",\n  \"bescheidenere\": \"bescheiden\",\n  \"bescheidenes\": \"bescheid\",\n  \"bescheidenheit\": \"bescheid\",\n  \"bescheinen\": \"beschein\",\n  \"beschenkt\": \"beschenkt\",\n  \"bescherung\": \"bescher\",\n  \"beschieden\": \"beschied\",\n  \"beschien\": \"beschi\",\n  \"beschienenen\": \"beschien\",\n  \"beschimmelten\": \"beschimmelt\",\n  \"beschimpft\": \"beschimpft\",\n  \"beschimpfte\": \"beschimpft\",\n  \"beschimpfung\": \"beschimpf\",\n  \"beschirmt\": \"beschirmt\",\n  \"beschirmung\": \"beschirm\",\n  \"beschlag\": \"beschlag\",\n  \"beschlagnahmt\": \"beschlagnahmt\",\n  \"beschleunigen\": \"beschleun\",\n  \"beschleunigt\": \"beschleunigt\",\n  \"beschleunigte\": \"beschleunigt\",\n  \"beschleunigung\": \"beschleun\",\n  \"beschlich\": \"beschlich\",\n  \"beschliessen\": \"beschliess\",\n  \"beschloss\": \"beschloss\",\n  \"beschloß\": \"beschloss\",\n  \"beschlossen\": \"beschloss\",\n  \"beschlossenen\": \"beschloss\",\n  \"beschluss\": \"beschluss\",\n  \"beschmiert\": \"beschmiert\",\n  \"beschmierte\": \"beschmiert\",\n  \"beschneiden\": \"beschneid\",\n  \"beschneidung\": \"beschneid\",\n  \"beschneit\": \"beschneit\",\n  \"beschnitt\": \"beschnitt\",\n  \"beschnitten\": \"beschnitt\",\n  \"beschnüffelte\": \"beschnuffelt\",\n  \"beschönigen\": \"beschon\",\n  \"beschönigt\": \"beschonigt\",\n  \"beschränken\": \"beschrank\",\n  \"beschränkt\": \"beschrankt\",\n  \"beschränkte\": \"beschrankt\",\n  \"beschränkteste\": \"beschrankt\",\n  \"beschränktheit\": \"beschrankt\",\n  \"beschreiben\": \"beschreib\",\n  \"beschreibt\": \"beschreibt\",\n  \"beschreibung\": \"beschreib\",\n  \"beschrieb\": \"beschrieb\",\n  \"beschriebe\": \"beschrieb\",\n  \"beschrieben\": \"beschrieb\",\n  \"beschriebene\": \"beschrieb\",\n  \"beschriebenen\": \"beschrieb\",\n  \"beschritt\": \"beschritt\",\n  \"beschuhte\": \"beschuht\",\n  \"beschuldigungen\": \"beschuld\",\n  \"beschützen\": \"beschutz\",\n  \"beschützer\": \"beschutz\",\n  \"beschützern\": \"beschutz\",\n  \"beschützt\": \"beschutzt\",\n  \"beschweige\": \"beschweig\",\n  \"beschweigen\": \"beschweig\",\n  \"beschwer\": \"beschw\",\n  \"beschwerden\": \"beschwerd\",\n  \"beschweren\": \"beschw\",\n  \"beschwerliche\": \"beschw\",\n  \"beschwerlichkeiten\": \"beschwer\",\n  \"beschwert\": \"beschwert\",\n  \"beschwerte\": \"beschwert\",\n  \"beschwerung\": \"beschwer\",\n  \"beschwichtigen\": \"beschwicht\",\n  \"beschwor\": \"beschwor\",\n  \"beschworen\": \"beschwor\",\n  \"beschwören\": \"beschwor\",\n  \"beschwörer\": \"beschwor\",\n  \"beschwörung\": \"beschwor\",\n  \"beschwörungen\": \"beschwor\",\n  \"beseelt\": \"beseelt\",\n  \"beseelte\": \"beseelt\",\n  \"beseeltes\": \"beseelt\",\n  \"besehen\": \"beseh\",\n  \"besehn\": \"besehn\",\n  \"beseitigen\": \"beseit\",\n  \"beseitigt\": \"beseitigt\",\n  \"beseitigung\": \"beseit\",\n  \"besen\": \"bes\",\n  \"besens\": \"bes\",\n  \"besenstiel\": \"besenstiel\",\n  \"besessen\": \"besess\",\n  \"besessener\": \"besess\",\n  \"besetzen\": \"besetz\",\n  \"besetzerkneipen\": \"besetzerkneip\",\n  \"besetzerleben\": \"besetzerleb\",\n  \"besetzt\": \"besetzt\",\n  \"besetzten\": \"besetzt\",\n  \"besichtigen\": \"besicht\",\n  \"besichtigung\": \"besicht\",\n  \"besiegen\": \"besieg\",\n  \"besiegt\": \"besiegt\",\n  \"besiegte\": \"besiegt\",\n  \"besinne\": \"besinn\",\n  \"besinnen\": \"besinn\",\n  \"besinnt\": \"besinnt\",\n  \"besinnung\": \"besinn\",\n  \"besinnungslose\": \"besinnungslos\",\n  \"besitz\": \"besitz\",\n  \"besitze\": \"besitz\",\n  \"besitzen\": \"besitz\",\n  \"besitzer\": \"besitz\",\n  \"besitzerin\": \"besitzerin\",\n  \"besitzes\": \"besitz\",\n  \"besitzlustige\": \"besitzlust\",\n  \"besitzstände\": \"besitzstand\",\n  \"besitzt\": \"besitzt\",\n  \"besitztum\": \"besitztum\",\n  \"besitztume\": \"besitztum\",\n  \"besitztümer\": \"besitztum\",\n  \"besitzungen\": \"besitz\",\n  \"besoldet\": \"besoldet\",\n  \"besondere\": \"besond\",\n  \"besonderem\": \"besond\",\n  \"besonderen\": \"besond\",\n  \"besonderer\": \"besond\",\n  \"besonderes\": \"besond\",\n  \"besonderheiten\": \"besond\",\n  \"besondern\": \"besond\",\n  \"besonders\": \"besond\",\n  \"besonnen\": \"besonn\",\n  \"besonnener\": \"besonn\",\n  \"besonnenheit\": \"besonn\",\n  \"besonnten\": \"besonnt\",\n  \"besonnter\": \"besonnt\",\n  \"besorgen\": \"besorg\",\n  \"besorgnis\": \"besorgnis\",\n  \"besorgnisse\": \"besorgnis\",\n  \"besorgt\": \"besorgt\",\n  \"besorgte\": \"besorgt\",\n  \"besorgten\": \"besorgt\",\n  \"besorgter\": \"besorgt\",\n  \"besorgtes\": \"besorgt\",\n  \"bespannt\": \"bespannt\",\n  \"bespanntes\": \"bespannt\",\n  \"besponnen\": \"besponn\",\n  \"besprechen\": \"besprech\",\n  \"besprechungen\": \"besprech\",\n  \"besprengung\": \"bespreng\",\n  \"besprochen\": \"besproch\",\n  \"besprochene\": \"besproch\",\n  \"besser\": \"bess\",\n  \"bessere\": \"bess\",\n  \"besseren\": \"bess\",\n  \"besserer\": \"bess\",\n  \"besseres\": \"bess\",\n  \"bessern\": \"bess\",\n  \"bessers\": \"bess\",\n  \"bessert\": \"bessert\",\n  \"besserte\": \"bessert\",\n  \"besserung\": \"besser\",\n  \"besserungen\": \"besser\",\n  \"besserungswerk\": \"besserungswerk\",\n  \"best\": \"best\",\n  \"bestand\": \"bestand\",\n  \"bestände\": \"bestand\",\n  \"bestanden\": \"bestand\",\n  \"beständig\": \"bestand\",\n  \"beständiger\": \"bestand\",\n  \"beständiges\": \"bestand\",\n  \"bestandstück\": \"bestandstuck\",\n  \"bestandstücks\": \"bestandstuck\",\n  \"bestandteile\": \"bestandteil\",\n  \"bestandteilen\": \"bestandteil\",\n  \"bestani\": \"bestani\",\n  \"bestärken\": \"bestark\",\n  \"bestärkt\": \"bestarkt\",\n  \"bestärkte\": \"bestarkt\",\n  \"bestärkung\": \"bestark\",\n  \"bestätigen\": \"bestat\",\n  \"bestätigend\": \"bestat\",\n  \"bestätigenden\": \"bestat\",\n  \"bestätigt\": \"bestatigt\",\n  \"bestätigte\": \"bestatigt\",\n  \"bestätigten\": \"bestatigt\",\n  \"bestätigung\": \"bestat\",\n  \"bestätigungen\": \"bestat\",\n  \"bestätigungsgründe\": \"bestatigungsgrund\",\n  \"bestaunten\": \"bestaunt\",\n  \"beste\": \"best\",\n  \"besteche\": \"bestech\",\n  \"bestechen\": \"bestech\",\n  \"bestechende\": \"bestech\",\n  \"bestechliche\": \"bestech\",\n  \"bestechung\": \"bestech\",\n  \"bestechungssumme\": \"bestechungssumm\",\n  \"besteck\": \"besteck\",\n  \"besteckt\": \"besteckt\",\n  \"bestehe\": \"besteh\",\n  \"bestehen\": \"besteh\",\n  \"bestehend\": \"besteh\",\n  \"bestehende\": \"besteh\",\n  \"bestehendes\": \"besteh\",\n  \"besteht\": \"besteht\",\n  \"besteigen\": \"besteig\",\n  \"bestellen\": \"bestell\",\n  \"bestellt\": \"bestellt\",\n  \"bestellte\": \"bestellt\",\n  \"bestellung\": \"bestell\",\n  \"bestellungen\": \"bestell\",\n  \"bestem\": \"best\",\n  \"besten\": \"best\",\n  \"bestenfalls\": \"bestenfall\",\n  \"bestens\": \"best\",\n  \"bester\": \"best\",\n  \"bestia\": \"bestia\",\n  \"bestiae\": \"bestia\",\n  \"besticht\": \"besticht\",\n  \"bestickt\": \"bestickt\",\n  \"bestie\": \"besti\",\n  \"bestieg\": \"bestieg\",\n  \"bestiegen\": \"bestieg\",\n  \"bestien\": \"besti\",\n  \"bestiis\": \"bestiis\",\n  \"bestimmbar\": \"bestimmbar\",\n  \"bestimmbare\": \"bestimmbar\",\n  \"bestimmbaren\": \"bestimmbar\",\n  \"bestimmbares\": \"bestimmbar\",\n  \"bestimmbarkeit\": \"bestimmbar\",\n  \"bestimme\": \"bestimm\",\n  \"bestimmen\": \"bestimm\",\n  \"bestimmende\": \"bestimm\",\n  \"bestimmenden\": \"bestimm\",\n  \"bestimmt\": \"bestimmt\",\n  \"bestimmte\": \"bestimmt\",\n  \"bestimmten\": \"bestimmt\",\n  \"bestimmter\": \"bestimmt\",\n  \"bestimmtes\": \"bestimmt\",\n  \"bestimmtesten\": \"bestimmt\",\n  \"bestimmtheit\": \"bestimmt\",\n  \"bestimmung\": \"bestimm\",\n  \"bestimmungen\": \"bestimm\",\n  \"bestimmungsgrund\": \"bestimmungsgrund\",\n  \"bestimmungsgrunde\": \"bestimmungsgrund\",\n  \"bestimmungsgründe\": \"bestimmungsgrund\",\n  \"bestimmungsgründen\": \"bestimmungsgrund\",\n  \"bestimmungsgrundes\": \"bestimmungsgrund\",\n  \"bestirnte\": \"bestirnt\",\n  \"bestmöglichst\": \"bestmog\",\n  \"bestochen\": \"bestoch\",\n  \"bestrafen\": \"bestraf\",\n  \"bestraft\": \"bestraft\",\n  \"bestrafung\": \"bestraf\",\n  \"bestrafungen\": \"bestraf\",\n  \"bestreben\": \"bestreb\",\n  \"bestrebt\": \"bestrebt\",\n  \"bestrebung\": \"bestreb\",\n  \"bestrebungen\": \"bestreb\",\n  \"bestreift\": \"bestreift\",\n  \"bestreiten\": \"bestreit\",\n  \"bestreitet\": \"bestreitet\",\n  \"bestreut\": \"bestreut\",\n  \"bestreuten\": \"bestreut\",\n  \"bestritt\": \"bestritt\",\n  \"bestünde\": \"bestund\",\n  \"bestürmte\": \"besturmt\",\n  \"bestürmten\": \"besturmt\",\n  \"bestürzt\": \"besturzt\",\n  \"bestürzten\": \"besturzt\",\n  \"besuch\": \"besuch\",\n  \"besuche\": \"besuch\",\n  \"besuchen\": \"besuch\",\n  \"besucher\": \"besuch\",\n  \"besucht\": \"besucht\",\n  \"besuchte\": \"besucht\",\n  \"besuchten\": \"besucht\",\n  \"besudelt\": \"besudelt\",\n  \"besudelten\": \"besudelt\",\n  \"betaste\": \"betast\",\n  \"betasten\": \"betast\",\n  \"betastete\": \"betastet\",\n  \"betätigt\": \"betatigt\",\n  \"betäuben\": \"betaub\",\n  \"betäubt\": \"betaubt\",\n  \"betäubung\": \"betaub\",\n  \"betbüchl\": \"betbuchl\",\n  \"beteiligt\": \"beteiligt\",\n  \"beteiligten\": \"beteiligt\",\n  \"beten\": \"bet\",\n  \"betend\": \"betend\",\n  \"betet\": \"betet\",\n  \"betete\": \"betet\",\n  \"beteten\": \"betet\",\n  \"beteuerte\": \"beteuert\",\n  \"beth\": \"beth\",\n  \"bethesda\": \"bethesda\",\n  \"betitelt\": \"betitelt\",\n  \"betont\": \"betont\",\n  \"betörenden\": \"betor\",\n  \"betört\": \"betort\",\n  \"betracht\": \"betracht\",\n  \"betrachte\": \"betracht\",\n  \"betrachten\": \"betracht\",\n  \"betrachtend\": \"betracht\",\n  \"betrachtet\": \"betrachtet\",\n  \"betrachtete\": \"betrachtet\",\n  \"betrachteten\": \"betrachtet\",\n  \"beträchtlich\": \"betracht\",\n  \"beträchtliche\": \"betracht\",\n  \"betrachtung\": \"betracht\",\n  \"betrachtungen\": \"betracht\",\n  \"betraf\": \"betraf\",\n  \"beträfe\": \"betraf\",\n  \"betragen\": \"betrag\",\n  \"betragens\": \"betrag\",\n  \"beträgt\": \"betragt\",\n  \"betrat\": \"betrat\",\n  \"betraten\": \"betrat\",\n  \"betraut\": \"betraut\",\n  \"betrauten\": \"betraut\",\n  \"betreff\": \"betreff\",\n  \"betreffen\": \"betreff\",\n  \"betreffend\": \"betreff\",\n  \"betreffende\": \"betreff\",\n  \"betreffenden\": \"betreff\",\n  \"betreffs\": \"betreff\",\n  \"betreiben\": \"betreib\",\n  \"betreibt\": \"betreibt\",\n  \"betreibung\": \"betreib\",\n  \"betresst\": \"betresst\",\n  \"betreßt\": \"betresst\",\n  \"betreten\": \"betret\",\n  \"betreuen\": \"betreu\",\n  \"betrieb\": \"betrieb\",\n  \"betrieben\": \"betrieb\",\n  \"betrifft\": \"betrifft\",\n  \"betritt\": \"betritt\",\n  \"betroffen\": \"betroff\",\n  \"betrogen\": \"betrog\",\n  \"betrogene\": \"betrog\",\n  \"betrogenen\": \"betrog\",\n  \"betrübe\": \"betrub\",\n  \"betrüblich\": \"betrub\",\n  \"betrübnis\": \"betrubnis\",\n  \"betrübt\": \"betrubt\",\n  \"betrübte\": \"betrubt\",\n  \"betrübten\": \"betrubt\",\n  \"betrug\": \"betrug\",\n  \"betrüge\": \"betrug\",\n  \"betrügen\": \"betrug\",\n  \"betrüger\": \"betrug\",\n  \"betrügereien\": \"betrugerei\",\n  \"betrügerisch\": \"betruger\",\n  \"betrügerisches\": \"betruger\",\n  \"betrüglich\": \"betrug\",\n  \"betrügst\": \"betrug\",\n  \"betrunken\": \"betrunk\",\n  \"betrunkenen\": \"betrunk\",\n  \"betrunkener\": \"betrunk\",\n  \"bett\": \"bett\",\n  \"bettchen\": \"bettch\",\n  \"bette\": \"bett\",\n  \"bettelei\": \"bettelei\",\n  \"betteljunge\": \"bettelj\",\n  \"betteln\": \"betteln\",\n  \"bettelte\": \"bettelt\",\n  \"betten\": \"bett\",\n  \"bettentruhe\": \"bettentruh\",\n  \"bettes\": \"bett\",\n  \"betteten\": \"bettet\",\n  \"bettlächrig\": \"bettlachr\",\n  \"bettstatt\": \"bettstatt\",\n  \"bettstelle\": \"bettstell\",\n  \"bettzeug\": \"bettzeug\",\n  \"betupft\": \"betupft\",\n  \"beugen\": \"beug\",\n  \"beugt\": \"beugt\",\n  \"beugte\": \"beugt\",\n  \"beugten\": \"beugt\",\n  \"beule\": \"beul\",\n  \"beulen\": \"beul\",\n  \"beunruhigen\": \"beunruh\",\n  \"beunruhigende\": \"beunruh\",\n  \"beunruhigt\": \"beunruhigt\",\n  \"beunruhigung\": \"beunruh\",\n  \"beurkundet\": \"beurkundet\",\n  \"beurkundete\": \"beurkundet\",\n  \"beurlaube\": \"beurlaub\",\n  \"beurlaubten\": \"beurlaubt\",\n  \"beurlaubung\": \"beurlaub\",\n  \"beurteilen\": \"beurteil\",\n  \"beurteilenden\": \"beurteil\",\n  \"beurteilt\": \"beurteilt\",\n  \"beurteilte\": \"beurteilt\",\n  \"beurteilung\": \"beurteil\",\n  \"beurteilungen\": \"beurteil\",\n  \"beute\": \"beut\",\n  \"beutel\": \"beutel\",\n  \"beutelchen\": \"beutelch\",\n  \"beuten\": \"beut\",\n  \"bevölkert\": \"bevolkert\",\n  \"bevölkerung\": \"bevolker\",\n  \"bevor\": \"bevor\",\n  \"bevorhautet\": \"bevorhautet\",\n  \"bevorhautete\": \"bevorhautet\",\n  \"bevorstand\": \"bevorstand\",\n  \"bevorstehenden\": \"bevorsteh\",\n  \"bevorsteht\": \"bevorsteht\",\n  \"bewachsen\": \"bewachs\",\n  \"bewachsenen\": \"bewachs\",\n  \"bewaffnet\": \"bewaffnet\",\n  \"bewaffnete\": \"bewaffnet\",\n  \"bewaffneten\": \"bewaffnet\",\n  \"bewaffneter\": \"bewaffnet\",\n  \"bewahre\": \"bewahr\",\n  \"bewahren\": \"bewahr\",\n  \"bewähren\": \"bewahr\",\n  \"bewahrt\": \"bewahrt\",\n  \"bewährt\": \"bewahrt\",\n  \"bewahrte\": \"bewahrt\",\n  \"bewährte\": \"bewahrt\",\n  \"bewährter\": \"bewahrt\",\n  \"bewährtes\": \"bewahrt\",\n  \"bewahrtest\": \"bewahrt\",\n  \"bewahrung\": \"bewahr\",\n  \"bewältigen\": \"bewalt\",\n  \"bewandt\": \"bewandt\",\n  \"bewandtnis\": \"bewandtnis\",\n  \"bewarben\": \"bewarb\",\n  \"bewässern\": \"bewass\",\n  \"bewässert\": \"bewassert\",\n  \"bewässerte\": \"bewassert\",\n  \"bewässerten\": \"bewassert\",\n  \"bewässerter\": \"bewassert\",\n  \"bewege\": \"beweg\",\n  \"bewegen\": \"beweg\",\n  \"bewegende\": \"beweg\",\n  \"bewegenden\": \"beweg\",\n  \"beweggründe\": \"beweggrund\",\n  \"beweglich\": \"beweg\",\n  \"bewegliche\": \"beweg\",\n  \"beweglichkeit\": \"beweg\",\n  \"bewegt\": \"bewegt\",\n  \"bewegte\": \"bewegt\",\n  \"bewegten\": \"bewegt\",\n  \"bewegtes\": \"bewegt\",\n  \"bewegung\": \"beweg\",\n  \"bewegungen\": \"beweg\",\n  \"bewegungsgrund\": \"bewegungsgrund\",\n  \"bewegungsgrunde\": \"bewegungsgrund\",\n  \"bewegungsgründe\": \"bewegungsgrund\",\n  \"bewegungsgründen\": \"bewegungsgrund\",\n  \"bewegursache\": \"bewegursach\",\n  \"bewegursachen\": \"bewegursach\",\n  \"beweis\": \"beweis\",\n  \"beweise\": \"beweis\",\n  \"beweisen\": \"beweis\",\n  \"beweisend\": \"beweis\",\n  \"beweises\": \"beweis\",\n  \"beweiset\": \"beweiset\",\n  \"beweisführende\": \"beweisfuhr\",\n  \"beweisgründen\": \"beweisgrund\",\n  \"beweist\": \"beweist\",\n  \"beweistümer\": \"beweistum\",\n  \"bewerben\": \"bewerb\",\n  \"bewerbung\": \"bewerb\",\n  \"bewerkstelligte\": \"bewerkstelligt\",\n  \"bewies\": \"bewi\",\n  \"bewiesen\": \"bewies\",\n  \"bewilligen\": \"bewill\",\n  \"bewilligt\": \"bewilligt\",\n  \"bewimpelt\": \"bewimpelt\",\n  \"bewirbt\": \"bewirbt\",\n  \"bewirke\": \"bewirk\",\n  \"bewirken\": \"bewirk\",\n  \"bewirkt\": \"bewirkt\",\n  \"bewirkte\": \"bewirkt\",\n  \"bewirkten\": \"bewirkt\",\n  \"bewirkung\": \"bewirk\",\n  \"bewirte\": \"bewirt\",\n  \"bewirtete\": \"bewirtet\",\n  \"bewirtung\": \"bewirt\",\n  \"bewogen\": \"bewog\",\n  \"bewohnen\": \"bewohn\",\n  \"bewohner\": \"bewohn\",\n  \"bewohnern\": \"bewohn\",\n  \"bewohners\": \"bewohn\",\n  \"bewohnt\": \"bewohnt\",\n  \"bewohnte\": \"bewohnt\",\n  \"bewohnten\": \"bewohnt\",\n  \"bewölkten\": \"bewolkt\",\n  \"bewundern\": \"bewund\",\n  \"bewundernd\": \"bewundernd\",\n  \"bewunderten\": \"bewundert\",\n  \"bewunderung\": \"bewunder\",\n  \"bewurf\": \"bewurf\",\n  \"bewusst\": \"bewusst\",\n  \"bewußt\": \"bewusst\",\n  \"bewusste\": \"bewusst\",\n  \"bewußte\": \"bewusst\",\n  \"bewussten\": \"bewusst\",\n  \"bewußten\": \"bewusst\",\n  \"bewusster\": \"bewusst\",\n  \"bewusstlos\": \"bewusstlos\",\n  \"bewusstlosen\": \"bewusstlos\",\n  \"bewusstsein\": \"bewusstsein\",\n  \"bewußtsein\": \"bewusstsein\",\n  \"bewusstseins\": \"bewusstsein\",\n  \"bewußtseins\": \"bewusstsein\",\n  \"bezahlbarer\": \"bezahlbar\",\n  \"bezahlen\": \"bezahl\",\n  \"bezahlt\": \"bezahlt\",\n  \"bezahlte\": \"bezahlt\",\n  \"bezahlung\": \"bezahl\",\n  \"bezähmt\": \"bezahmt\",\n  \"bezaleel\": \"bezaleel\",\n  \"bezankenden\": \"bezank\",\n  \"bezaubern\": \"bezaub\",\n  \"bezeichne\": \"bezeichn\",\n  \"bezeichnen\": \"bezeichn\",\n  \"bezeichnend\": \"bezeichn\",\n  \"bezeichnende\": \"bezeichn\",\n  \"bezeichnendes\": \"bezeichn\",\n  \"bezeichnet\": \"bezeichnet\",\n  \"bezeichnete\": \"bezeichnet\",\n  \"bezeichneten\": \"bezeichnet\",\n  \"bezeichnung\": \"bezeichn\",\n  \"bezeichnungen\": \"bezeichn\",\n  \"bezeigen\": \"bezeig\",\n  \"bezeigten\": \"bezeigt\",\n  \"bezeugen\": \"bezeug\",\n  \"bezeugst\": \"bezeug\",\n  \"bezeugten\": \"bezeugt\",\n  \"beziehe\": \"bezieh\",\n  \"beziehen\": \"bezieh\",\n  \"bezieht\": \"bezieht\",\n  \"beziehung\": \"bezieh\",\n  \"beziehungen\": \"bezieh\",\n  \"beziehungsweise\": \"beziehungsweis\",\n  \"beziele\": \"beziel\",\n  \"bezielt\": \"bezielt\",\n  \"bezirk\": \"bezirk\",\n  \"bezirke\": \"bezirk\",\n  \"bezirksrat\": \"bezirksrat\",\n  \"bezirksversammlung\": \"bezirksversamml\",\n  \"bezog\": \"bezog\",\n  \"bezogen\": \"bezog\",\n  \"bezug\": \"bezug\",\n  \"bezüglich\": \"bezug\",\n  \"bezüglichen\": \"bezug\",\n  \"bezwang\": \"bezwang\",\n  \"bezwecken\": \"bezweck\",\n  \"bezweckt\": \"bezweckt\",\n  \"bezweckte\": \"bezweckt\",\n  \"bezweifeln\": \"bezweifeln\",\n  \"bezweifle\": \"bezweifl\",\n  \"bezwingen\": \"bezwing\",\n  \"bezwingt\": \"bezwingt\",\n  \"bezwingung\": \"bezwing\",\n  \"bezwungen\": \"bezwung\",\n  \"bfu\": \"bfu\",\n  \"bibberten\": \"bibbert\",\n  \"bibel\": \"bibel\",\n  \"bibelan\": \"bibelan\",\n  \"bibelgesellschaft\": \"bibelgesellschaft\",\n  \"biberach\": \"biberach\",\n  \"bibliothek\": \"bibliothek\",\n  \"bibliotheken\": \"bibliothek\",\n  \"biblische\": \"biblisch\",\n  \"biedenkopf\": \"biedenkopf\",\n  \"biederen\": \"bied\",\n  \"biederer\": \"bied\",\n  \"biegen\": \"bieg\",\n  \"biegung\": \"biegung\",\n  \"biene\": \"bien\",\n  \"bienen\": \"bien\",\n  \"bienenwachs\": \"bienenwach\",\n  \"bier\": \"bier\",\n  \"bieranstalt\": \"bieranstalt\",\n  \"bierkrug\": \"bierkrug\",\n  \"bierkrügen\": \"bierkrug\",\n  \"bierkutscher\": \"bierkutsch\",\n  \"biertrinken\": \"biertrink\",\n  \"biertrinker\": \"biertrink\",\n  \"biest\": \"biest\",\n  \"biestigen\": \"biestig\",\n  \"bieten\": \"biet\",\n  \"bietend\": \"bietend\",\n  \"bietet\": \"bietet\",\n  \"bild\": \"bild\",\n  \"bildchen\": \"bildch\",\n  \"bilde\": \"bild\",\n  \"bilden\": \"bild\",\n  \"bildende\": \"bildend\",\n  \"bilder\": \"bild\",\n  \"bilderbücher\": \"bilderbuch\",\n  \"bilderbücherwiese\": \"bilderbucherwies\",\n  \"bilderchen\": \"bilderch\",\n  \"bildern\": \"bild\",\n  \"bildet\": \"bildet\",\n  \"bildete\": \"bildet\",\n  \"bildeten\": \"bildet\",\n  \"bildner\": \"bildn\",\n  \"bildsauber\": \"bildsaub\",\n  \"bildsaubre\": \"bildsaubr\",\n  \"bildsäule\": \"bildsaul\",\n  \"bildschöne\": \"bildschon\",\n  \"bildschönes\": \"bildschon\",\n  \"bildung\": \"bildung\",\n  \"bildungen\": \"bildung\",\n  \"bildungschancen\": \"bildungschanc\",\n  \"bildungsgut\": \"bildungsgut\",\n  \"bildzeitung\": \"bildzeit\",\n  \"bileam\": \"bileam\",\n  \"bileams\": \"bileam\",\n  \"billige\": \"billig\",\n  \"billigen\": \"billig\",\n  \"billigenden\": \"billig\",\n  \"billiger\": \"billig\",\n  \"billigkeit\": \"billig\",\n  \"billigste\": \"billig\",\n  \"billigung\": \"billig\",\n  \"bimmelglöcklein\": \"bimmelglocklein\",\n  \"bin\": \"bin\",\n  \"bind\": \"bind\",\n  \"binde\": \"bind\",\n  \"binden\": \"bind\",\n  \"bindet\": \"bindet\",\n  \"bindfaden\": \"bindfad\",\n  \"binse\": \"bins\",\n  \"biographien\": \"biographi\",\n  \"birgt\": \"birgt\",\n  \"birke\": \"birk\",\n  \"birkenzweiglein\": \"birkenzweiglein\",\n  \"birnen\": \"birn\",\n  \"birnenstiel\": \"birnenstiel\",\n  \"bis\": \"bis\",\n  \"bischof\": \"bischof\",\n  \"bischöfe\": \"bischof\",\n  \"bischofs\": \"bischof\",\n  \"bischofskonferenz\": \"bischofskonferenz\",\n  \"bischofswiesen\": \"bischofswies\",\n  \"bisher\": \"bish\",\n  \"bisherige\": \"bisher\",\n  \"bisherigen\": \"bisher\",\n  \"bisheriges\": \"bisher\",\n  \"bislang\": \"bislang\",\n  \"biss\": \"biss\",\n  \"bisschen\": \"bissch\",\n  \"bißchen\": \"bissch\",\n  \"bissel\": \"bissel\",\n  \"bissen\": \"biss\",\n  \"bisserl\": \"bisserl\",\n  \"bissl\": \"bissl\",\n  \"bist\": \"bist\",\n  \"bistum\": \"bistum\",\n  \"bisweilen\": \"bisweil\",\n  \"bitt\": \"bitt\",\n  \"bitte\": \"bitt\",\n  \"bitten\": \"bitt\",\n  \"bittend\": \"bittend\",\n  \"bittenden\": \"bittend\",\n  \"bitter\": \"bitt\",\n  \"bittere\": \"bitt\",\n  \"bitteren\": \"bitt\",\n  \"bitterer\": \"bitt\",\n  \"bitteres\": \"bitt\",\n  \"bitterkalten\": \"bitterkalt\",\n  \"bitterkeit\": \"bitter\",\n  \"bitterlich\": \"bitt\",\n  \"bitterlicher\": \"bitt\",\n  \"bittern\": \"bitt\",\n  \"bitterste\": \"bitterst\",\n  \"bittersten\": \"bitterst\",\n  \"bittest\": \"bitt\",\n  \"bittet\": \"bittet\",\n  \"biwakspässe\": \"biwakspass\",\n  \"biwakspäße\": \"biwakspass\",\n  \"blachfeld\": \"blachfeld\",\n  \"blagen\": \"blag\",\n  \"blähet\": \"blahet\",\n  \"blähte\": \"blaht\",\n  \"blank\": \"blank\",\n  \"blanke\": \"blank\",\n  \"blanken\": \"blank\",\n  \"blanker\": \"blank\",\n  \"blankes\": \"blank\",\n  \"blankgepanzerte\": \"blankgepanzert\",\n  \"bläschen\": \"blasch\",\n  \"blase\": \"blas\",\n  \"blasebalg\": \"blasebalg\",\n  \"blasebälgen\": \"blasebalg\",\n  \"blasen\": \"blas\",\n  \"blasensteigen\": \"blasensteig\",\n  \"blasiert\": \"blasiert\",\n  \"blasierten\": \"blasiert\",\n  \"blasinstrument\": \"blasinstrument\",\n  \"blasinstrumente\": \"blasinstrument\",\n  \"blass\": \"blass\",\n  \"blaß\": \"blass\",\n  \"blasse\": \"blass\",\n  \"blässe\": \"blass\",\n  \"blassen\": \"blass\",\n  \"blasser\": \"blass\",\n  \"blasses\": \"blass\",\n  \"bläst\": \"blast\",\n  \"blatt\": \"blatt\",\n  \"blättchen\": \"blattch\",\n  \"blatte\": \"blatt\",\n  \"blatteln\": \"blatteln\",\n  \"blatten\": \"blatt\",\n  \"blätter\": \"blatt\",\n  \"blattern\": \"blatt\",\n  \"blättern\": \"blatt\",\n  \"blatterngeschwüre\": \"blatterngeschwur\",\n  \"blätterreste\": \"blatterr\",\n  \"blätterte\": \"blattert\",\n  \"blätterten\": \"blattert\",\n  \"blattes\": \"blatt\",\n  \"blau\": \"blau\",\n  \"blaue\": \"blau\",\n  \"blauem\": \"blau\",\n  \"blauen\": \"blau\",\n  \"blaues\": \"blau\",\n  \"blauesten\": \"blau\",\n  \"blaufärber\": \"blaufarb\",\n  \"blaugefärbter\": \"blaugefarbt\",\n  \"blaugrün\": \"blaugrun\",\n  \"bläulich\": \"blaulich\",\n  \"bläulichen\": \"blaulich\",\n  \"blausamt\": \"blausamt\",\n  \"blauseidenen\": \"blauseid\",\n  \"blauweissen\": \"blauweiss\",\n  \"bleamerln\": \"bleamerln\",\n  \"blech\": \"blech\",\n  \"blecherne\": \"blechern\",\n  \"blechkerl\": \"blechkerl\",\n  \"blechlöffeln\": \"blechloffeln\",\n  \"blechmusik\": \"blechmus\",\n  \"blechschachtel\": \"blechschachtel\",\n  \"blechschilde\": \"blechschild\",\n  \"blei\": \"blei\",\n  \"bleib\": \"bleib\",\n  \"bleibe\": \"bleib\",\n  \"bleiben\": \"bleib\",\n  \"bleibend\": \"bleibend\",\n  \"bleibende\": \"bleibend\",\n  \"bleibenden\": \"bleibend\",\n  \"bleibender\": \"bleibend\",\n  \"bleibendes\": \"bleibend\",\n  \"bleibestätten\": \"bleibestatt\",\n  \"bleibet\": \"bleibet\",\n  \"bleibn\": \"bleibn\",\n  \"bleibst\": \"bleib\",\n  \"bleibt\": \"bleibt\",\n  \"bleich\": \"bleich\",\n  \"bleiche\": \"bleich\",\n  \"bleichen\": \"bleich\",\n  \"bleicher\": \"bleich\",\n  \"bleihände\": \"bleihand\",\n  \"bleikugeln\": \"bleikugeln\",\n  \"bleischweren\": \"bleischw\",\n  \"bleistift\": \"bleistift\",\n  \"bleistifte\": \"bleistift\",\n  \"blendend\": \"blendend\",\n  \"blendenden\": \"blendend\",\n  \"blendendes\": \"blendend\",\n  \"blendendweisse\": \"blendendweiss\",\n  \"blendet\": \"blendet\",\n  \"blendlaterne\": \"blendlatern\",\n  \"blendwerk\": \"blendwerk\",\n  \"blessierter\": \"blessiert\",\n  \"blick\": \"blick\",\n  \"blicke\": \"blick\",\n  \"blicken\": \"blick\",\n  \"blickend\": \"blickend\",\n  \"blickenden\": \"blickend\",\n  \"blickes\": \"blick\",\n  \"blickt\": \"blickt\",\n  \"blickte\": \"blickt\",\n  \"blickten\": \"blickt\",\n  \"blieb\": \"blieb\",\n  \"bliebe\": \"blieb\",\n  \"blieben\": \"blieb\",\n  \"bliebn\": \"bliebn\",\n  \"bliem\": \"bliem\",\n  \"blies\": \"blies\",\n  \"bliesen\": \"blies\",\n  \"blind\": \"blind\",\n  \"blinde\": \"blind\",\n  \"blinden\": \"blind\",\n  \"blinder\": \"blind\",\n  \"blindes\": \"blind\",\n  \"blindgeborenen\": \"blindgebor\",\n  \"blindlings\": \"blindling\",\n  \"blinkend\": \"blinkend\",\n  \"blinkenden\": \"blinkend\",\n  \"blinkten\": \"blinkt\",\n  \"blinzeln\": \"blinzeln\",\n  \"blinzelnd\": \"blinzelnd\",\n  \"blinzelte\": \"blinzelt\",\n  \"blitz\": \"blitz\",\n  \"blitzblank\": \"blitzblank\",\n  \"blitze\": \"blitz\",\n  \"blitzeblank\": \"blitzeblank\",\n  \"blitzen\": \"blitz\",\n  \"blitzend\": \"blitzend\",\n  \"blitzende\": \"blitzend\",\n  \"blitzenden\": \"blitzend\",\n  \"blitzender\": \"blitzend\",\n  \"blitzendes\": \"blitzend\",\n  \"blitzhexe\": \"blitzhex\",\n  \"blitzschnell\": \"blitzschnell\",\n  \"blitzschnelle\": \"blitzschnell\",\n  \"blitzschnellen\": \"blitzschnell\",\n  \"blitzschrecken\": \"blitzschreck\",\n  \"blitzt\": \"blitzt\",\n  \"blitzten\": \"blitzt\",\n  \"block\": \"block\",\n  \"blöcke\": \"block\",\n  \"blockiert\": \"blockiert\",\n  \"blocksberg\": \"blocksberg\",\n  \"blödigkeit\": \"blodig\",\n  \"blödsinne\": \"blodsinn\",\n  \"blödsinnig\": \"blodsinn\",\n  \"blödsinnige\": \"blodsinn\",\n  \"blökende\": \"blokend\",\n  \"blökender\": \"blokend\",\n  \"blond\": \"blond\",\n  \"blonden\": \"blond\",\n  \"blondes\": \"blond\",\n  \"blondhaar\": \"blondhaar\",\n  \"bloss\": \"bloss\",\n  \"bloß\": \"bloss\",\n  \"blosse\": \"bloss\",\n  \"bloße\": \"bloss\",\n  \"blösse\": \"bloss\",\n  \"blöße\": \"bloss\",\n  \"blossem\": \"bloss\",\n  \"blossen\": \"bloss\",\n  \"bloßen\": \"bloss\",\n  \"blosser\": \"bloss\",\n  \"bloßer\": \"bloss\",\n  \"blosses\": \"bloss\",\n  \"bloßes\": \"bloss\",\n  \"blossfüssiger\": \"blossfuss\",\n  \"bloßfüßiger\": \"blossfuss\",\n  \"blosslegung\": \"blossleg\",\n  \"bloßlegung\": \"blossleg\",\n  \"blouse\": \"blous\",\n  \"blousengestalt\": \"blousengestalt\",\n  \"blousenmann\": \"blousenmann\",\n  \"blousenmannes\": \"blousenmann\",\n  \"blubber\": \"blubb\",\n  \"blubberquacks\": \"blubberquack\",\n  \"bluet\": \"bluet\",\n  \"blühen\": \"bluh\",\n  \"blühend\": \"bluhend\",\n  \"blühendem\": \"bluhend\",\n  \"blühenden\": \"bluhend\",\n  \"blühendes\": \"bluhend\",\n  \"blühendsten\": \"bluhend\",\n  \"blühn\": \"bluhn\",\n  \"blüht\": \"bluht\",\n  \"blühte\": \"bluht\",\n  \"blühten\": \"bluht\",\n  \"blümchen\": \"blumch\",\n  \"blume\": \"blum\",\n  \"blumen\": \"blum\",\n  \"blumenbouquets\": \"blumenbouquet\",\n  \"blumenduft\": \"blumenduft\",\n  \"blumengeschmückte\": \"blumengeschmuckt\",\n  \"blumenglas\": \"blumenglas\",\n  \"blumenhaufen\": \"blumenhauf\",\n  \"blumenköpfe\": \"blumenkopf\",\n  \"blumenkränzen\": \"blumenkranz\",\n  \"blumenstrauss\": \"blumenstrauss\",\n  \"blumenstrauß\": \"blumenstrauss\",\n  \"blumentöpfe\": \"blumentopf\",\n  \"blut\": \"blut\",\n  \"blutarmen\": \"blutarm\",\n  \"blutbräutigam\": \"blutbrautigam\",\n  \"blutbräutigams\": \"blutbrautigam\",\n  \"blutdürstige\": \"blutdurst\",\n  \"blute\": \"blut\",\n  \"blüte\": \"blut\",\n  \"blüten\": \"blut\",\n  \"blütenknopsen\": \"blutenknops\",\n  \"blutes\": \"blut\",\n  \"blutete\": \"blutet\",\n  \"blütezeit\": \"blutezeit\",\n  \"blutgericht\": \"blutgericht\",\n  \"blutgeruch\": \"blutgeruch\",\n  \"blutgestank\": \"blutgestank\",\n  \"blutgieriges\": \"blutgier\",\n  \"blutig\": \"blutig\",\n  \"blutigel\": \"blutigel\",\n  \"blutigen\": \"blutig\",\n  \"blutlose\": \"blutlos\",\n  \"blutmensch\": \"blutmensch\",\n  \"blutrot\": \"blutrot\",\n  \"blutroten\": \"blutrot\",\n  \"blutschlangen\": \"blutschlang\",\n  \"blutschulden\": \"blutschuld\",\n  \"blutsfreundschaft\": \"blutsfreundschaft\",\n  \"blutsfreundschaften\": \"blutsfreundschaft\",\n  \"blutstropfen\": \"blutstropf\",\n  \"blutsverwandten\": \"blutsverwandt\",\n  \"blutumlauf\": \"blutumlauf\",\n  \"blutungen\": \"blutung\",\n  \"blutwelle\": \"blutwell\",\n  \"bm\": \"bm\",\n  \"bock\": \"bock\",\n  \"böckchen\": \"bockch\",\n  \"bocke\": \"bock\",\n  \"böcke\": \"bock\",\n  \"bockelt\": \"bockelt\",\n  \"böcken\": \"bock\",\n  \"bockes\": \"bock\",\n  \"bockreiter\": \"bockreit\",\n  \"bocksbeutel\": \"bocksbeutel\",\n  \"bocksgemäcker\": \"bocksgemack\",\n  \"bockt\": \"bockt\",\n  \"boden\": \"bod\",\n  \"bodenraum\": \"bodenraum\",\n  \"bodens\": \"bod\",\n  \"boell\": \"boell\",\n  \"bog\": \"bog\",\n  \"bogen\": \"bog\",\n  \"böhmerwald\": \"bohmerwald\",\n  \"bohnen\": \"bohn\",\n  \"bohnenstangen\": \"bohnenstang\",\n  \"bohnenwäldchen\": \"bohnenwaldch\",\n  \"böhni\": \"bohni\",\n  \"bohrt\": \"bohrt\",\n  \"bohrten\": \"bohrt\",\n  \"bold\": \"bold\",\n  \"bolen\": \"bol\",\n  \"böll\": \"boll\",\n  \"böllerschüsse\": \"bollerschuss\",\n  \"bollwerk\": \"bollwerk\",\n  \"bologna\": \"bologna\",\n  \"bologneser\": \"bolognes\",\n  \"bolzenburg\": \"bolzenburg\",\n  \"bombardierte\": \"bombardiert\",\n  \"bomben\": \"bomb\",\n  \"bombenschlag\": \"bombenschlag\",\n  \"bona\": \"bona\",\n  \"bonbonbüchse\": \"bonbonbuchs\",\n  \"bonbonknospen\": \"bonbonknosp\",\n  \"bonbons\": \"bonbon\",\n  \"bonbonsträucher\": \"bonbonstrauch\",\n  \"bondevik\": \"bondev\",\n  \"boni\": \"boni\",\n  \"bonum\": \"bonum\",\n  \"bonus\": \"bonus\",\n  \"boot\": \"boot\",\n  \"bootes\": \"boot\",\n  \"bordeaux\": \"bordeaux\",\n  \"borden\": \"bord\",\n  \"borer\": \"bor\",\n  \"born\": \"born\",\n  \"börse\": \"bors\",\n  \"borste\": \"borst\",\n  \"bös\": \"bos\",\n  \"bösartig\": \"bosart\",\n  \"bösartiger\": \"bosart\",\n  \"bösartigkeit\": \"bosart\",\n  \"böschung\": \"boschung\",\n  \"böse\": \"bos\",\n  \"bösem\": \"bos\",\n  \"bösen\": \"bos\",\n  \"böser\": \"bos\",\n  \"böses\": \"bos\",\n  \"bösestun\": \"bosestun\",\n  \"bösewicht\": \"bosewicht\",\n  \"bösewichte\": \"bosewicht\",\n  \"boshafte\": \"boshaft\",\n  \"boshaftes\": \"boshaft\",\n  \"bosheit\": \"bosheit\",\n  \"bössein\": \"bossein\",\n  \"böswillige\": \"boswill\",\n  \"böswilliges\": \"boswill\",\n  \"böswilligkeit\": \"boswill\",\n  \"bot\": \"bot\",\n  \"bote\": \"bot\",\n  \"boten\": \"bot\",\n  \"botschaft\": \"botschaft\",\n  \"botschafter\": \"botschaft\",\n  \"botschafters\": \"botschaft\",\n  \"botta\": \"botta\",\n  \"böttcher\": \"bottch\",\n  \"bouffonerie\": \"bouffoneri\",\n  \"boutique\": \"boutiqu\",\n  \"boykottieren\": \"boykotti\",\n  \"brabanter\": \"brabant\",\n  \"brach\": \"brach\",\n  \"brachen\": \"brach\",\n  \"brachlägen\": \"brachlag\",\n  \"bracht\": \"bracht\",\n  \"brächt\": \"bracht\",\n  \"brachte\": \"bracht\",\n  \"brächte\": \"bracht\",\n  \"brachten\": \"bracht\",\n  \"brächten\": \"bracht\",\n  \"bracken\": \"brack\",\n  \"braffs\": \"braff\",\n  \"brand\": \"brand\",\n  \"brande\": \"brand\",\n  \"brände\": \"brand\",\n  \"branden\": \"brand\",\n  \"brandenburg\": \"brandenburg\",\n  \"brandgefilde\": \"brandgefild\",\n  \"brandmauern\": \"brandmau\",\n  \"brandopfer\": \"brandopf\",\n  \"brandopfern\": \"brandopf\",\n  \"brandroten\": \"brandrot\",\n  \"brandrotes\": \"brandrot\",\n  \"brandschnur\": \"brandschnur\",\n  \"brandung\": \"brandung\",\n  \"brannte\": \"brannt\",\n  \"brannten\": \"brannt\",\n  \"bratapfel\": \"bratapfel\",\n  \"brate\": \"brat\",\n  \"braten\": \"brat\",\n  \"bratenfett\": \"bratenfett\",\n  \"bratenspässen\": \"bratenspass\",\n  \"bratenspiess\": \"bratenspiess\",\n  \"bratenspieß\": \"bratenspiess\",\n  \"bratspiess\": \"bratspiess\",\n  \"bratwurst\": \"bratwurst\",\n  \"brauch\": \"brauch\",\n  \"brauchbar\": \"brauchbar\",\n  \"brauchbaren\": \"brauchbar\",\n  \"brauchbarer\": \"brauchbar\",\n  \"brauche\": \"brauch\",\n  \"brauchen\": \"brauch\",\n  \"brauchet\": \"brauchet\",\n  \"brauchst\": \"brauch\",\n  \"braucht\": \"braucht\",\n  \"brauchte\": \"braucht\",\n  \"brauchten\": \"braucht\",\n  \"brauchtet\": \"brauchtet\",\n  \"brauen\": \"brau\",\n  \"brauervieh\": \"brauervieh\",\n  \"braun\": \"braun\",\n  \"braune\": \"braun\",\n  \"braunem\": \"braun\",\n  \"braunen\": \"braun\",\n  \"brauner\": \"braun\",\n  \"braunes\": \"braun\",\n  \"braungebranntem\": \"braungebrannt\",\n  \"braungoldene\": \"braungold\",\n  \"braunkariertes\": \"braunkariert\",\n  \"bräunliche\": \"braunlich\",\n  \"bräunlichen\": \"braunlich\",\n  \"braunrotes\": \"braunrot\",\n  \"braunschweig\": \"braunschweig\",\n  \"brausen\": \"braus\",\n  \"brauste\": \"braust\",\n  \"brausten\": \"braust\",\n  \"braut\": \"braut\",\n  \"brautbett\": \"brautbett\",\n  \"brautgeschenke\": \"brautgeschenk\",\n  \"bräutigam\": \"brautigam\",\n  \"bräutigams\": \"brautigam\",\n  \"bräutlein\": \"brautlein\",\n  \"brautpaar\": \"brautpaar\",\n  \"brautwesen\": \"brautwes\",\n  \"brav\": \"brav\",\n  \"brave\": \"brav\",\n  \"braven\": \"brav\",\n  \"braver\": \"brav\",\n  \"braves\": \"brav\",\n  \"bravo\": \"bravo\",\n  \"breche\": \"brech\",\n  \"brechen\": \"brech\",\n  \"brechend\": \"brechend\",\n  \"brechenden\": \"brechend\",\n  \"brei\": \"brei\",\n  \"breies\": \"breies\",\n  \"breit\": \"breit\",\n  \"breite\": \"breit\",\n  \"breiten\": \"breit\",\n  \"breiter\": \"breit\",\n  \"breites\": \"breit\",\n  \"breitet\": \"breitet\",\n  \"breitete\": \"breitet\",\n  \"breiteten\": \"breitet\",\n  \"breitgerissenen\": \"breitgeriss\",\n  \"breitgewordenen\": \"breitgeword\",\n  \"breitkrempigen\": \"breitkremp\",\n  \"breitschultrige\": \"breitschultr\",\n  \"breitspurigkeit\": \"breitspur\",\n  \"bremner\": \"bremn\",\n  \"brenne\": \"brenn\",\n  \"brennen\": \"brenn\",\n  \"brennend\": \"brennend\",\n  \"brennendem\": \"brennend\",\n  \"brennenden\": \"brennend\",\n  \"brennendes\": \"brennend\",\n  \"brennt\": \"brennt\",\n  \"brenzelte\": \"brenzelt\",\n  \"brenzlig\": \"brenzlig\",\n  \"brett\": \"brett\",\n  \"brette\": \"brett\",\n  \"bretter\": \"brett\",\n  \"bretternägel\": \"bretternagel\",\n  \"bricht\": \"bricht\",\n  \"bridge\": \"bridg\",\n  \"bridgefreundinnen\": \"bridgefreundinn\",\n  \"brief\": \"brief\",\n  \"briefe\": \"brief\",\n  \"briefes\": \"brief\",\n  \"brieflich\": \"brieflich\",\n  \"briefstelle\": \"briefstell\",\n  \"briefsteller\": \"briefstell\",\n  \"brieftasche\": \"brieftasch\",\n  \"briet\": \"briet\",\n  \"brille\": \"brill\",\n  \"bring\": \"bring\",\n  \"bringe\": \"bring\",\n  \"bringen\": \"bring\",\n  \"bringenden\": \"bringend\",\n  \"bringet\": \"bringet\",\n  \"bringt\": \"bringt\",\n  \"brite\": \"brit\",\n  \"briten\": \"brit\",\n  \"britische\": \"britisch\",\n  \"britischen\": \"britisch\",\n  \"brits\": \"brit\",\n  \"brochen\": \"broch\",\n  \"bröckeln\": \"brockeln\",\n  \"bröckelt\": \"brockelt\",\n  \"brocken\": \"brock\",\n  \"brokatene\": \"brokat\",\n  \"broldin\": \"broldin\",\n  \"brosamen\": \"brosam\",\n  \"broschek\": \"broschek\",\n  \"broscheks\": \"broschek\",\n  \"broschüre\": \"broschur\",\n  \"brot\": \"brot\",\n  \"brotbissen\": \"brotbiss\",\n  \"brötchen\": \"brotch\",\n  \"brote\": \"brot\",\n  \"broten\": \"brot\",\n  \"brotes\": \"brot\",\n  \"brotessen\": \"brotess\",\n  \"brotlaib\": \"brotlaib\",\n  \"brotrinde\": \"brotrind\",\n  \"brots\": \"brot\",\n  \"brotteller\": \"brottell\",\n  \"brrrrrrrr\": \"brrrrrrrr\",\n  \"brsg\": \"brsg\",\n  \"bruch\": \"bruch\",\n  \"brüche\": \"bruch\",\n  \"bruchstückweise\": \"bruchstuckweis\",\n  \"bruchus\": \"bruchus\",\n  \"bruchwand\": \"bruchwand\",\n  \"brücke\": \"bruck\",\n  \"brückenbauer\": \"bruckenbau\",\n  \"brudder\": \"brudd\",\n  \"bruder\": \"brud\",\n  \"brüder\": \"brud\",\n  \"brüderlich\": \"brud\",\n  \"brüdern\": \"brud\",\n  \"bruders\": \"brud\",\n  \"bruderschaft\": \"bruderschaft\",\n  \"brüderschaft\": \"bruderschaft\",\n  \"bruderschaften\": \"bruderschaft\",\n  \"brühe\": \"bruh\",\n  \"brüllen\": \"brull\",\n  \"brüllend\": \"brullend\",\n  \"brüller\": \"brull\",\n  \"brüllet\": \"brullet\",\n  \"brüllte\": \"brullt\",\n  \"brumm\": \"brumm\",\n  \"brummbass\": \"brummbass\",\n  \"brummbässe\": \"brummbass\",\n  \"brummbassgezeter\": \"brummbassgezet\",\n  \"brummbaßgezeter\": \"brummbassgezet\",\n  \"brummen\": \"brumm\",\n  \"brummend\": \"brummend\",\n  \"brummenden\": \"brummend\",\n  \"brummkonzert\": \"brummkonzert\",\n  \"brummt\": \"brummt\",\n  \"brummte\": \"brummt\",\n  \"brunnen\": \"brunn\",\n  \"brunnenbank\": \"brunnenbank\",\n  \"brunnens\": \"brunn\",\n  \"brunnenschwengel\": \"brunnenschwengel\",\n  \"brunnenschwengeln\": \"brunnenschwengeln\",\n  \"brunnenstrahl\": \"brunnenstrahl\",\n  \"brünstig\": \"brunstig\",\n  \"brünstigem\": \"brunstig\",\n  \"brüssel\": \"brussel\",\n  \"brust\": \"brust\",\n  \"brustbildern\": \"brustbild\",\n  \"brüste\": \"brust\",\n  \"brustfleck\": \"brustfleck\",\n  \"brustgewand\": \"brustgewand\",\n  \"brustkorb\": \"brustkorb\",\n  \"brustlatz\": \"brustlatz\",\n  \"brustschild\": \"brustschild\",\n  \"brustschildlein\": \"brustschildlein\",\n  \"brusttasche\": \"brusttasch\",\n  \"brüstung\": \"brustung\",\n  \"brustwehr\": \"brustwehr\",\n  \"brütend\": \"brutend\",\n  \"brüteten\": \"brutet\",\n  \"brütige\": \"brutig\",\n  \"bschlachter\": \"bschlacht\",\n  \"bscht\": \"bscht\",\n  \"bsorgen\": \"bsorg\",\n  \"bsucht\": \"bsucht\",\n  \"bua\": \"bua\",\n  \"bub\": \"bub\",\n  \"bübchen\": \"bubch\",\n  \"buben\": \"bub\",\n  \"bubenmädchen\": \"bubenmadch\",\n  \"bübisch\": \"bubisch\",\n  \"buch\": \"buch\",\n  \"buchbinder\": \"buchbind\",\n  \"buchbindergesellen\": \"buchbindergesell\",\n  \"buchbinders\": \"buchbind\",\n  \"buche\": \"buch\",\n  \"büchelchen\": \"buchelch\",\n  \"buchen\": \"buch\",\n  \"buchenast\": \"buchenast\",\n  \"buchenholz\": \"buchenholz\",\n  \"buchenknorren\": \"buchenknorr\",\n  \"buchenlaub\": \"buchenlaub\",\n  \"buchenwäldchen\": \"buchenwaldch\",\n  \"buchenwipfel\": \"buchenwipfel\",\n  \"bücher\": \"buch\",\n  \"büchereien\": \"bucherei\",\n  \"büchern\": \"buch\",\n  \"bücherschränken\": \"bucherschrank\",\n  \"buches\": \"buch\",\n  \"buchhalter\": \"buchhalt\",\n  \"buchhandlungen\": \"buchhandl\",\n  \"büchlein\": \"buchlein\",\n  \"büchschen\": \"buchsch\",\n  \"büchse\": \"buchs\",\n  \"büchsen\": \"buchs\",\n  \"büchsenlicht\": \"buchsenlicht\",\n  \"büchsenmacher\": \"buchsenmach\",\n  \"büchsenmacherei\": \"buchsenmacherei\",\n  \"büchsenschmied\": \"buchsenschmied\",\n  \"büchsenschuss\": \"buchsenschuss\",\n  \"büchsenstein\": \"buchsenstein\",\n  \"büchsflinte\": \"buchsflint\",\n  \"buchstabe\": \"buchstab\",\n  \"buchstaben\": \"buchstab\",\n  \"buchstabens\": \"buchstab\",\n  \"buchstabensinn\": \"buchstabensinn\",\n  \"buchstabensinne\": \"buchstabensinn\",\n  \"buchstabensinns\": \"buchstabensinn\",\n  \"buchstäbliche\": \"buchstab\",\n  \"buchstäblichen\": \"buchstab\",\n  \"buchungsbelegen\": \"buchungsbeleg\",\n  \"bücke\": \"buck\",\n  \"buckel\": \"buckel\",\n  \"bücken\": \"buck\",\n  \"bucklige\": \"bucklig\",\n  \"buckligen\": \"bucklig\",\n  \"buckliger\": \"bucklig\",\n  \"buckliges\": \"bucklig\",\n  \"buckskin\": \"buckskin\",\n  \"bückt\": \"buckt\",\n  \"bückte\": \"buckt\",\n  \"buden\": \"bud\",\n  \"budgetiert\": \"budgetiert\",\n  \"büfettier\": \"bufetti\",\n  \"büffel\": \"buffel\",\n  \"büffet\": \"buffet\",\n  \"bügeleisen\": \"bugeleis\",\n  \"bügelgestemmte\": \"bugelgestemmt\",\n  \"bügelte\": \"bugelt\",\n  \"buhlerisches\": \"buhler\",\n  \"buhlerlohn\": \"buhlerlohn\",\n  \"buhleten\": \"buhlet\",\n  \"bühnenmanagerin\": \"buhnenmanagerin\",\n  \"bujv\": \"bujv\",\n  \"bulle\": \"bull\",\n  \"bullern\": \"bull\",\n  \"bullerte\": \"bullert\",\n  \"bum\": \"bum\",\n  \"bums\": \"bum\",\n  \"bund\": \"bund\",\n  \"bunde\": \"bund\",\n  \"bünde\": \"bund\",\n  \"bündel\": \"bundel\",\n  \"bündelchen\": \"bundelch\",\n  \"bündelein\": \"bundelein\",\n  \"bündeln\": \"bundeln\",\n  \"bündelturme\": \"bundelturm\",\n  \"bündelweise\": \"bundelweis\",\n  \"bundes\": \"bund\",\n  \"bundesebene\": \"bundeseb\",\n  \"bundesgenossen\": \"bundesgenoss\",\n  \"bundesgetz\": \"bundesgetz\",\n  \"bundeslade\": \"bundeslad\",\n  \"bundesland\": \"bundesland\",\n  \"bundeslandes\": \"bundesland\",\n  \"bundesleben\": \"bundesleb\",\n  \"bundespräsident\": \"bundesprasident\",\n  \"bundesrat\": \"bundesrat\",\n  \"bundesräte\": \"bundesrat\",\n  \"bundessache\": \"bundessach\",\n  \"bundesverwaltung\": \"bundesverwalt\",\n  \"bundeswehr\": \"bundeswehr\",\n  \"bündner\": \"bundn\",\n  \"bündnis\": \"bundnis\",\n  \"bündnisse\": \"bundnis\",\n  \"bündnissen\": \"bundnis\",\n  \"bünger\": \"bung\",\n  \"bunt\": \"bunt\",\n  \"buntbemalte\": \"buntbemalt\",\n  \"bunte\": \"bunt\",\n  \"buntem\": \"bunt\",\n  \"bunten\": \"bunt\",\n  \"bunter\": \"bunt\",\n  \"buntes\": \"bunt\",\n  \"buntesten\": \"bunt\",\n  \"buntester\": \"bunt\",\n  \"buntscheckigen\": \"buntscheck\",\n  \"bünzli\": \"bunzli\",\n  \"bünzlin\": \"bunzlin\",\n  \"buomberger\": \"buomberg\",\n  \"bur\": \"bur\",\n  \"bureau\": \"bureau\",\n  \"bureaus\": \"bureaus\",\n  \"burg\": \"burg\",\n  \"burgen\": \"burg\",\n  \"bürger\": \"burg\",\n  \"bürgerhut\": \"burgerhut\",\n  \"bürgerinnen\": \"burgerinn\",\n  \"bürgerkriegen\": \"burgerkrieg\",\n  \"bürgerlich\": \"burg\",\n  \"bürgerliche\": \"burg\",\n  \"bürgerlichem\": \"burg\",\n  \"bürgerlichen\": \"burg\",\n  \"bürgermeister\": \"burgermeist\",\n  \"bürgern\": \"burg\",\n  \"bürgernest\": \"burgern\",\n  \"bürgerrock\": \"burgerrock\",\n  \"bürgerschaft\": \"burgerschaft\",\n  \"bürgersinn\": \"burgersinn\",\n  \"bürgertugend\": \"burgertug\",\n  \"burgfenster\": \"burgfen\",\n  \"burghofe\": \"burghof\",\n  \"bürgschaft\": \"burgschaft\",\n  \"burgtor\": \"burgtor\",\n  \"burnus\": \"burnus\",\n  \"burnusträgern\": \"burnustrag\",\n  \"büro\": \"buro\",\n  \"bürokratischer\": \"burokrat\",\n  \"büroräume\": \"buroraum\",\n  \"büros\": \"buros\",\n  \"bürozeit\": \"burozeit\",\n  \"bursch\": \"bursch\",\n  \"bürschchen\": \"burschch\",\n  \"bursche\": \"bursch\",\n  \"burschen\": \"bursch\",\n  \"burschikosen\": \"burschikos\",\n  \"bürschlein\": \"burschlein\",\n  \"bürstchen\": \"burstch\",\n  \"bürste\": \"burst\",\n  \"bürstete\": \"burstet\",\n  \"bürstner\": \"burstn\",\n  \"bürstners\": \"burstn\",\n  \"bus\": \"bus\",\n  \"busch\": \"busch\",\n  \"büsche\": \"busch\",\n  \"büschel\": \"buschel\",\n  \"büschen\": \"busch\",\n  \"buschigem\": \"buschig\",\n  \"buschigen\": \"buschig\",\n  \"buschwerk\": \"buschwerk\",\n  \"busen\": \"bus\",\n  \"busens\": \"bus\",\n  \"busse\": \"buss\",\n  \"buße\": \"buss\",\n  \"büste\": \"bust\",\n  \"bütte\": \"butt\",\n  \"butter\": \"butt\",\n  \"butterblume\": \"butterblum\",\n  \"butterbrot\": \"butterbrot\",\n  \"butterfett\": \"butterfett\",\n  \"buttertopf\": \"buttertopf\",\n  \"byssus\": \"byssus\",\n  \"bz\": \"bz\",\n  \"bzw\": \"bzw\",\n  \"ca\": \"ca\",\n  \"cabaret\": \"cabaret\",\n  \"cadens\": \"cad\",\n  \"café\": \"café\",\n  \"camelia\": \"camelia\",\n  \"canaille\": \"canaill\",\n  \"canailles\": \"canaill\",\n  \"canoro\": \"canoro\",\n  \"capua\": \"capua\",\n  \"care\": \"car\",\n  \"caritas\": \"caritas\",\n  \"carl\": \"carl\",\n  \"carriere\": \"carri\",\n  \"castor\": \"castor\",\n  \"catigo\": \"catigo\",\n  \"causa\": \"causa\",\n  \"causam\": \"causam\",\n  \"causas\": \"causas\",\n  \"cd\": \"cd\",\n  \"cdu\": \"cdu\",\n  \"cenis\": \"cenis\",\n  \"center\": \"cent\",\n  \"central\": \"central\",\n  \"centre\": \"centr\",\n  \"ch\": \"ch\",\n  \"chaldäer\": \"chalda\",\n  \"chaldäern\": \"chalda\",\n  \"cham\": \"cham\",\n  \"chambery\": \"chambery\",\n  \"champagner\": \"champagn\",\n  \"champagnerflasche\": \"champagnerflasch\",\n  \"champagnerkelch\": \"champagnerkelch\",\n  \"chance\": \"chanc\",\n  \"chancen\": \"chanc\",\n  \"channa\": \"channa\",\n  \"chanoch\": \"chanoch\",\n  \"chanochs\": \"chanoch\",\n  \"chaos\": \"chaos\",\n  \"chaotischen\": \"chaotisch\",\n  \"character\": \"charact\",\n  \"charakter\": \"charakt\",\n  \"charakterisieren\": \"charakterisi\",\n  \"charakteristik\": \"charakterist\",\n  \"charakteristisch\": \"charakterist\",\n  \"charakteristische\": \"charakterist\",\n  \"charakters\": \"charakt\",\n  \"charakterzug\": \"charakterzug\",\n  \"charitas\": \"charitas\",\n  \"chateau\": \"chateau\",\n  \"chaussee\": \"chausse\",\n  \"chavah\": \"chavah\",\n  \"chavillah\": \"chavillah\",\n  \"chazors\": \"chazor\",\n  \"che\": \"che\",\n  \"chebron\": \"chebron\",\n  \"check\": \"check\",\n  \"checque\": \"checqu\",\n  \"cheese\": \"chees\",\n  \"chef\": \"chef\",\n  \"cheflektor\": \"cheflektor\",\n  \"chemie\": \"chemi\",\n  \"chemikalien\": \"chemikali\",\n  \"chemist\": \"chemist\",\n  \"chen\": \"chen\",\n  \"cheres\": \"cher\",\n  \"cherub\": \"cherub\",\n  \"cherube\": \"cherub\",\n  \"cheruben\": \"cherub\",\n  \"cherubim\": \"cherubim\",\n  \"cherubs\": \"cherub\",\n  \"chethiterin\": \"chethiterin\",\n  \"chezron\": \"chezron\",\n  \"chiddekel\": \"chiddekel\",\n  \"chigen\": \"chig\",\n  \"chimärische\": \"chimar\",\n  \"china\": \"china\",\n  \"chinesischen\": \"chines\",\n  \"chinesischer\": \"chines\",\n  \"chips\": \"chips\",\n  \"chirurgen\": \"chirurg\",\n  \"chirurgiegehilfen\": \"chirurgiegehilf\",\n  \"chirurgische\": \"chirurg\",\n  \"choke\": \"chok\",\n  \"choleriker\": \"choler\",\n  \"chomer\": \"chom\",\n  \"chomers\": \"chom\",\n  \"chöre\": \"chor\",\n  \"chören\": \"chor\",\n  \"chp\": \"chp\",\n  \"christ\": \"christ\",\n  \"christa\": \"christa\",\n  \"christdemokratischen\": \"christdemokrat\",\n  \"christen\": \"christ\",\n  \"christenglauben\": \"christenglaub\",\n  \"christenheit\": \"christ\",\n  \"christentum\": \"christentum\",\n  \"christentums\": \"christentum\",\n  \"christi\": \"christi\",\n  \"christian\": \"christian\",\n  \"christinnen\": \"christinn\",\n  \"christkindchen\": \"christkindch\",\n  \"christkindchens\": \"christkindch\",\n  \"christl\": \"christl\",\n  \"christlich\": \"christlich\",\n  \"christliche\": \"christlich\",\n  \"christlichen\": \"christlich\",\n  \"christlicher\": \"christlich\",\n  \"christlicherseits\": \"christlicherseit\",\n  \"christls\": \"christl\",\n  \"christo\": \"christo\",\n  \"christoph\": \"christoph\",\n  \"christopher\": \"christoph\",\n  \"christus\": \"christus\",\n  \"chronik\": \"chronik\",\n  \"chronischen\": \"chronisch\",\n  \"chrysopras\": \"chrysopras\",\n  \"cicero\": \"cicero\",\n  \"citi\": \"citi\",\n  \"city\": \"city\",\n  \"claire\": \"clair\",\n  \"claude\": \"claud\",\n  \"close\": \"clos\",\n  \"club\": \"club\",\n  \"co\": \"co\",\n  \"coeleste\": \"coel\",\n  \"coelesti\": \"coelesti\",\n  \"coelestis\": \"coelestis\",\n  \"cogitare\": \"cogitar\",\n  \"coles\": \"col\",\n  \"college\": \"colleg\",\n  \"colores\": \"color\",\n  \"comedian\": \"comedian\",\n  \"committee\": \"committe\",\n  \"communia\": \"communia\",\n  \"communique\": \"communiqu\",\n  \"comparationis\": \"comparationis\",\n  \"computer\": \"comput\",\n  \"computern\": \"comput\",\n  \"computertomographie\": \"computertomographi\",\n  \"concreto\": \"concreto\",\n  \"condito\": \"condito\",\n  \"conference\": \"conferenc\",\n  \"conjugio\": \"conjugio\",\n  \"consatant\": \"consatant\",\n  \"consummatum\": \"consummatum\",\n  \"continens\": \"contin\",\n  \"contraria\": \"contraria\",\n  \"contrarias\": \"contrarias\",\n  \"copulatus\": \"copulatus\",\n  \"copy\": \"copy\",\n  \"corpora\": \"corpora\",\n  \"corporis\": \"corporis\",\n  \"corpus\": \"corpus\",\n  \"cosmic\": \"cosmic\",\n  \"costum\": \"costum\",\n  \"cotti\": \"cotti\",\n  \"couch\": \"couch\",\n  \"council\": \"council\",\n  \"couplet\": \"couplet\",\n  \"cream\": \"cream\",\n  \"credos\": \"credos\",\n  \"crescenz\": \"crescenz\",\n  \"crossair\": \"crossair\",\n  \"csp\": \"csp\",\n  \"cultores\": \"cultor\",\n  \"cum\": \"cum\",\n  \"customer\": \"custom\",\n  \"cutta\": \"cutta\",\n  \"cylinderhut\": \"cylinderhut\",\n  \"cyperwein\": \"cyperwein\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"dabei\": \"dabei\",\n  \"dabeistand\": \"dabeistand\",\n  \"dabeizusein\": \"dabeizusein\",\n  \"dableiben\": \"dableib\",\n  \"dach\": \"dach\",\n  \"dachboden\": \"dachbod\",\n  \"dache\": \"dach\",\n  \"dächer\": \"dach\",\n  \"dächern\": \"dach\",\n  \"daches\": \"dach\",\n  \"dachorganisation\": \"dachorganisation\",\n  \"dachrinne\": \"dachrinn\",\n  \"dachs\": \"dach\",\n  \"dachse\": \"dachs\",\n  \"dachsfell\": \"dachsfell\",\n  \"dachsfellen\": \"dachsfell\",\n  \"dachte\": \"dacht\",\n  \"dachten\": \"dacht\",\n  \"dächten\": \"dacht\",\n  \"dachtraufe\": \"dachtrauf\",\n  \"dachtürmchen\": \"dachturmch\",\n  \"dackel\": \"dackel\",\n  \"dackeln\": \"dackeln\",\n  \"dackels\": \"dackel\",\n  \"dackelzüchterei\": \"dackelzuchterei\",\n  \"dadrauf\": \"dadrauf\",\n  \"dadurch\": \"dadurch\",\n  \"dafür\": \"dafur\",\n  \"dag\": \"dag\",\n  \"dageblieben\": \"dageblieb\",\n  \"dagegen\": \"dageg\",\n  \"dagesessen\": \"dagesess\",\n  \"dagestanden\": \"dagestand\",\n  \"dagewesen\": \"dagewes\",\n  \"daheim\": \"daheim\",\n  \"daher\": \"dah\",\n  \"dahergefahren\": \"dahergefahr\",\n  \"dahergerannt\": \"dahergerannt\",\n  \"dahergeschlenkert\": \"dahergeschlenkert\",\n  \"daherging\": \"daherging\",\n  \"daherkam\": \"daherkam\",\n  \"daherkommenden\": \"daherkomm\",\n  \"daherkommt\": \"daherkommt\",\n  \"daherspringen\": \"daherspring\",\n  \"dahi\": \"dahi\",\n  \"dahin\": \"dahin\",\n  \"dahinfährt\": \"dahinfahrt\",\n  \"dahinfuhr\": \"dahinfuhr\",\n  \"dahingerafft\": \"dahingerafft\",\n  \"dahingezogen\": \"dahingezog\",\n  \"dahingingen\": \"dahinging\",\n  \"dahinschritt\": \"dahinschritt\",\n  \"dahinter\": \"dahint\",\n  \"dahinterkomme\": \"dahinterkomm\",\n  \"dahintersteckte\": \"dahintersteckt\",\n  \"dahinzog\": \"dahinzog\",\n  \"dalag\": \"dalag\",\n  \"daliegen\": \"dalieg\",\n  \"daliegende\": \"dalieg\",\n  \"daliegenden\": \"dalieg\",\n  \"daliessest\": \"daliess\",\n  \"damal\": \"damal\",\n  \"damalige\": \"damal\",\n  \"damaligen\": \"damal\",\n  \"damaliger\": \"damal\",\n  \"damals\": \"damal\",\n  \"damaskus\": \"damaskus\",\n  \"damc\": \"damc\",\n  \"dame\": \"dam\",\n  \"damen\": \"dam\",\n  \"damenbesuch\": \"damenbesuch\",\n  \"damenuhr\": \"damenuhr\",\n  \"damenwelt\": \"damenwelt\",\n  \"damit\": \"damit\",\n  \"dämme\": \"damm\",\n  \"dämmerigen\": \"dammer\",\n  \"dämmeriges\": \"dammer\",\n  \"dämmerlicht\": \"dammerlicht\",\n  \"dämmern\": \"damm\",\n  \"dämmerschein\": \"dammerschein\",\n  \"dämmerte\": \"dammert\",\n  \"dämmerung\": \"dammer\",\n  \"dämmrigen\": \"dammrig\",\n  \"dämon\": \"damon\",\n  \"dämonen\": \"damon\",\n  \"dämonische\": \"damon\",\n  \"dampfenden\": \"dampfend\",\n  \"dampfstrahl\": \"dampfstrahl\",\n  \"dämpfte\": \"dampft\",\n  \"dan\": \"dan\",\n  \"danach\": \"danach\",\n  \"daneben\": \"daneb\",\n  \"dänemark\": \"danemark\",\n  \"danggen\": \"dangg\",\n  \"daniel\": \"daniel\",\n  \"dänischen\": \"danisch\",\n  \"dank\": \"dank\",\n  \"dankbar\": \"dankbar\",\n  \"dankbare\": \"dankbar\",\n  \"dankbarer\": \"dankbar\",\n  \"dankbares\": \"dankbar\",\n  \"dankbarkeit\": \"dankbar\",\n  \"dankbarst\": \"dankbarst\",\n  \"danke\": \"dank\",\n  \"danken\": \"dank\",\n  \"dankes\": \"dank\",\n  \"danket\": \"danket\",\n  \"dankte\": \"dankt\",\n  \"dann\": \"dann\",\n  \"dannen\": \"dann\",\n  \"dantine\": \"dantin\",\n  \"dar\": \"dar\",\n  \"daran\": \"daran\",\n  \"darangehen\": \"darangeh\",\n  \"darangesetzt\": \"darangesetzt\",\n  \"darauf\": \"darauf\",\n  \"darauffolgenden\": \"darauffolg\",\n  \"daraufstellen\": \"daraufstell\",\n  \"daraus\": \"daraus\",\n  \"darben\": \"darb\",\n  \"darbieten\": \"darbiet\",\n  \"darbietende\": \"darbiet\",\n  \"darbietendes\": \"darbiet\",\n  \"darbietet\": \"darbietet\",\n  \"darbrachte\": \"darbracht\",\n  \"darbrachten\": \"darbracht\",\n  \"darbringen\": \"darbring\",\n  \"darbringt\": \"darbringt\",\n  \"darbringung\": \"darbring\",\n  \"darein\": \"darein\",\n  \"darf\": \"darf\",\n  \"darfst\": \"darf\",\n  \"därfst\": \"darf\",\n  \"dargebracht\": \"dargebracht\",\n  \"dargelegt\": \"dargelegt\",\n  \"dargereicht\": \"dargereicht\",\n  \"dargestellt\": \"dargestellt\",\n  \"dargetan\": \"dargetan\",\n  \"darin\": \"darin\",\n  \"darinnen\": \"darinn\",\n  \"darlegen\": \"darleg\",\n  \"darlegt\": \"darlegt\",\n  \"darlehen\": \"darleh\",\n  \"darling\": \"darling\",\n  \"darnach\": \"darnach\",\n  \"darnieder\": \"darnied\",\n  \"darniederliegen\": \"darniederlieg\",\n  \"darreichen\": \"darreich\",\n  \"darreichte\": \"darreicht\",\n  \"darstelle\": \"darstell\",\n  \"darstellen\": \"darstell\",\n  \"darstellenden\": \"darstell\",\n  \"darstelleten\": \"darstellet\",\n  \"darstellt\": \"darstellt\",\n  \"darstellte\": \"darstellt\",\n  \"darstellten\": \"darstellt\",\n  \"darstellung\": \"darstell\",\n  \"darstellungsbild\": \"darstellungsbild\",\n  \"dartun\": \"dartun\",\n  \"dartust\": \"dartust\",\n  \"darüber\": \"darub\",\n  \"darüberhinaus\": \"daruberhinaus\",\n  \"darum\": \"darum\",\n  \"darunter\": \"darunt\",\n  \"darzustellen\": \"darzustell\",\n  \"das\": \"das\",\n  \"dasass\": \"dasass\",\n  \"dasassen\": \"dasass\",\n  \"dasaßen\": \"dasass\",\n  \"daschiesst\": \"daschiesst\",\n  \"daseiende\": \"daseiend\",\n  \"dasein\": \"dasein\",\n  \"daseins\": \"dasein\",\n  \"daselbst\": \"daselb\",\n  \"dasige\": \"dasig\",\n  \"dasitzen\": \"dasitz\",\n  \"dasitzenden\": \"dasitz\",\n  \"dasjenige\": \"dasjen\",\n  \"dasmal\": \"dasmal\",\n  \"dass\": \"dass\",\n  \"daß\": \"dass\",\n  \"dasselbe\": \"dasselb\",\n  \"dastand\": \"dastand\",\n  \"dastehen\": \"dasteh\",\n  \"dasteht\": \"dasteht\",\n  \"data\": \"data\",\n  \"datis\": \"datis\",\n  \"dativ\": \"dativ\",\n  \"dative\": \"dativ\",\n  \"dativen\": \"dativ\",\n  \"dato\": \"dato\",\n  \"datum\": \"datum\",\n  \"dauer\": \"dau\",\n  \"dauerhaft\": \"dauerhaft\",\n  \"dauerhafte\": \"dauerhaft\",\n  \"dauerhaftem\": \"dauerhaft\",\n  \"dauerhaften\": \"dauerhaft\",\n  \"dauerhaftigkeit\": \"dauerhaft\",\n  \"dauern\": \"dau\",\n  \"dauernd\": \"dauernd\",\n  \"dauernde\": \"dauernd\",\n  \"dauernden\": \"dauernd\",\n  \"dauert\": \"dauert\",\n  \"dauerte\": \"dauert\",\n  \"dauerten\": \"dauert\",\n  \"daumen\": \"daum\",\n  \"daumschrauben\": \"daumschraub\",\n  \"david\": \"david\",\n  \"davids\": \"david\",\n  \"davon\": \"davon\",\n  \"davonfuhr\": \"davonfuhr\",\n  \"davongangen\": \"davongang\",\n  \"davongegangen\": \"davongegang\",\n  \"davonging\": \"davonging\",\n  \"davonkäme\": \"davonkam\",\n  \"davonlief\": \"davonlief\",\n  \"davonrannte\": \"davonrannt\",\n  \"davonzureisen\": \"davonzureis\",\n  \"davonzutragen\": \"davonzutrag\",\n  \"davor\": \"davor\",\n  \"dawider\": \"dawid\",\n  \"dazu\": \"dazu\",\n  \"dazua\": \"dazua\",\n  \"dazubleiben\": \"dazubleib\",\n  \"dazumal\": \"dazumal\",\n  \"dazustehen\": \"dazusteh\",\n  \"dazutun\": \"dazutun\",\n  \"dazwischen\": \"dazwisch\",\n  \"dazwischenliegender\": \"dazwischenlieg\",\n  \"ddr\": \"ddr\",\n  \"de\": \"de\",\n  \"deandl\": \"deandl\",\n  \"deanerl\": \"deanerl\",\n  \"debatte\": \"debatt\",\n  \"debatten\": \"debatt\",\n  \"deberjackl\": \"deberjackl\",\n  \"december\": \"decemb\",\n  \"deckbett\": \"deckbett\",\n  \"deckchen\": \"deckch\",\n  \"decke\": \"deck\",\n  \"deckel\": \"deckel\",\n  \"decken\": \"deck\",\n  \"deckte\": \"deckt\",\n  \"deckten\": \"deckt\",\n  \"deckung\": \"deckung\",\n  \"deduktion\": \"deduktion\",\n  \"deduzieren\": \"deduzi\",\n  \"defekt\": \"defekt\",\n  \"definieren\": \"defini\",\n  \"definiert\": \"definiert\",\n  \"definition\": \"definition\",\n  \"definitum\": \"definitum\",\n  \"degen\": \"deg\",\n  \"degengehänge\": \"degengehang\",\n  \"degradieren\": \"degradi\",\n  \"dehne\": \"dehn\",\n  \"dehnt\": \"dehnt\",\n  \"dehnte\": \"dehnt\",\n  \"dehnten\": \"dehnt\",\n  \"dei\": \"dei\",\n  \"deiche\": \"deich\",\n  \"dein\": \"dein\",\n  \"deine\": \"dein\",\n  \"deinem\": \"dein\",\n  \"deinen\": \"dein\",\n  \"deiner\": \"dein\",\n  \"deines\": \"dein\",\n  \"deinetwillen\": \"deinetwill\",\n  \"deinigen\": \"deinig\",\n  \"dekalog\": \"dekalog\",\n  \"dekalogs\": \"dekalog\",\n  \"dekalogus\": \"dekalogus\",\n  \"deklinierbuch\": \"deklinierbuch\",\n  \"delegationen\": \"delegation\",\n  \"delegieren\": \"delegi\",\n  \"delegiertenversammlungen\": \"delegiertenversamml\",\n  \"delicatessen\": \"delicatess\",\n  \"delikaten\": \"delikat\",\n  \"delikatesse\": \"delikatess\",\n  \"delikt\": \"delikt\",\n  \"delphin\": \"delphin\",\n  \"dem\": \"dem\",\n  \"demgemäss\": \"demgemass\",\n  \"demgemäß\": \"demgemass\",\n  \"demjenigen\": \"demjen\",\n  \"demnach\": \"demnach\",\n  \"demokratische\": \"demokrat\",\n  \"demokrit\": \"demokrit\",\n  \"demoliert\": \"demoliert\",\n  \"demolierten\": \"demoliert\",\n  \"demonstration\": \"demonstration\",\n  \"demselben\": \"demselb\",\n  \"demselbigen\": \"demselb\",\n  \"demut\": \"demut\",\n  \"demütig\": \"demut\",\n  \"demütige\": \"demut\",\n  \"demütigen\": \"demut\",\n  \"demütigend\": \"demut\",\n  \"demütiger\": \"demut\",\n  \"demütigt\": \"demutigt\",\n  \"demütigte\": \"demutigt\",\n  \"demütigung\": \"demut\",\n  \"demutshaltung\": \"demutshalt\",\n  \"demutvollen\": \"demutvoll\",\n  \"demzufolge\": \"demzufolg\",\n  \"den\": \"den\",\n  \"dene\": \"den\",\n  \"denen\": \"den\",\n  \"denjenigen\": \"denjen\",\n  \"denk\": \"denk\",\n  \"denkbar\": \"denkbar\",\n  \"denkbaren\": \"denkbar\",\n  \"denkbarer\": \"denkbar\",\n  \"denke\": \"denk\",\n  \"denken\": \"denk\",\n  \"denkende\": \"denkend\",\n  \"denkens\": \"denk\",\n  \"denker\": \"denk\",\n  \"denket\": \"denket\",\n  \"denkmal\": \"denkmal\",\n  \"denkst\": \"denk\",\n  \"denkt\": \"denkt\",\n  \"denkungsart\": \"denkungsart\",\n  \"denkvorstellung\": \"denkvorstell\",\n  \"denkvorstellungen\": \"denkvorstell\",\n  \"denkweise\": \"denkweis\",\n  \"denn\": \"denn\",\n  \"dennoch\": \"dennoch\",\n  \"denselben\": \"denselb\",\n  \"dep\": \"dep\",\n  \"departements\": \"departement\",\n  \"departementschef\": \"departementschef\",\n  \"deperditum\": \"deperditum\",\n  \"depeschen\": \"depesch\",\n  \"deponierten\": \"deponiert\",\n  \"depot\": \"depot\",\n  \"depressionen\": \"depression\",\n  \"der\": \"der\",\n  \"derart\": \"derart\",\n  \"derartig\": \"derart\",\n  \"derartige\": \"derart\",\n  \"derartigen\": \"derart\",\n  \"derartiger\": \"derart\",\n  \"derartiges\": \"derart\",\n  \"derbarmt\": \"derbarmt\",\n  \"derbe\": \"derb\",\n  \"derben\": \"derb\",\n  \"derbknochige\": \"derbknoch\",\n  \"derbsten\": \"derb\",\n  \"dereinst\": \"derein\",\n  \"deren\": \"der\",\n  \"derentweg\": \"derentweg\",\n  \"derentwillen\": \"derentwill\",\n  \"derer\": \"der\",\n  \"dergestalt\": \"dergestalt\",\n  \"dergibt\": \"dergibt\",\n  \"dergl\": \"dergl\",\n  \"dergleichen\": \"dergleich\",\n  \"derheim\": \"derheim\",\n  \"derjenige\": \"derjen\",\n  \"derjenigen\": \"derjen\",\n  \"derleb\": \"derleb\",\n  \"derlebt\": \"derlebt\",\n  \"derlei\": \"derlei\",\n  \"derleiden\": \"derleid\",\n  \"dermassen\": \"dermass\",\n  \"dern\": \"dern\",\n  \"dero\": \"dero\",\n  \"derschlagen\": \"derschlag\",\n  \"derselbe\": \"derselb\",\n  \"derselben\": \"derselb\",\n  \"derwart\": \"derwart\",\n  \"derweil\": \"derweil\",\n  \"derwischt\": \"derwischt\",\n  \"des\": \"des\",\n  \"desdemona\": \"desdemona\",\n  \"deserteur\": \"deserteur\",\n  \"deserteure\": \"deserteur\",\n  \"desertion\": \"desertion\",\n  \"desgleichen\": \"desgleich\",\n  \"deshalb\": \"deshalb\",\n  \"deshalben\": \"deshalb\",\n  \"design\": \"design\",\n  \"designer\": \"design\",\n  \"desinteressiert\": \"desinteressiert\",\n  \"desjenigen\": \"desjen\",\n  \"desna\": \"desna\",\n  \"desolatio\": \"desolatio\",\n  \"desolationes\": \"desolation\",\n  \"desselben\": \"desselb\",\n  \"dessen\": \"dess\",\n  \"dessentwegen\": \"dessentweg\",\n  \"dessentwillen\": \"dessentwill\",\n  \"dessert\": \"dessert\",\n  \"desto\": \"desto\",\n  \"deswegen\": \"desweg\",\n  \"deswillen\": \"deswill\",\n  \"detailliert\": \"detailliert\",\n  \"details\": \"detail\",\n  \"determinatum\": \"determinatum\",\n  \"detonation\": \"detonation\",\n  \"deuchte\": \"deucht\",\n  \"deuschland\": \"deuschland\",\n  \"deut\": \"deut\",\n  \"deutbare\": \"deutbar\",\n  \"deuten\": \"deut\",\n  \"deutete\": \"deutet\",\n  \"deutlich\": \"deutlich\",\n  \"deutliche\": \"deutlich\",\n  \"deutlichen\": \"deutlich\",\n  \"deutlicher\": \"deutlich\",\n  \"deutlichere\": \"deutlich\",\n  \"deutliches\": \"deutlich\",\n  \"deutlichkeit\": \"deutlich\",\n  \"deutlichste\": \"deutlich\",\n  \"deutsch\": \"deutsch\",\n  \"deutsche\": \"deutsch\",\n  \"deutschen\": \"deutsch\",\n  \"deutscher\": \"deutsch\",\n  \"deutschland\": \"deutschland\",\n  \"deutschlands\": \"deutschland\",\n  \"deutschlehrerin\": \"deutschlehrerin\",\n  \"deutschschweiz\": \"deutschschweiz\",\n  \"deutschsein\": \"deutschsein\",\n  \"deutseher\": \"deutseh\",\n  \"deza\": \"deza\",\n  \"dezember\": \"dezemb\",\n  \"dezenz\": \"dezenz\",\n  \"dgl\": \"dgl\",\n  \"di\": \"di\",\n  \"diabolischen\": \"diabol\",\n  \"diademe\": \"diadem\",\n  \"diademen\": \"diadem\",\n  \"diakonie\": \"diakoni\",\n  \"diakoniekapitel\": \"diakoniekapitel\",\n  \"dialectica\": \"dialectica\",\n  \"dialekt\": \"dialekt\",\n  \"dialektik\": \"dialekt\",\n  \"dialektikh\": \"dialektikh\",\n  \"dialektisch\": \"dialekt\",\n  \"dialektische\": \"dialekt\",\n  \"dialektischen\": \"dialekt\",\n  \"dialektliedern\": \"dialektlied\",\n  \"dialog\": \"dialog\",\n  \"dialogorientierung\": \"dialogorientier\",\n  \"dialogs\": \"dialog\",\n  \"diamant\": \"diamant\",\n  \"diamanten\": \"diamant\",\n  \"diamantenschimmer\": \"diamantenschimm\",\n  \"dich\": \"dich\",\n  \"dicht\": \"dicht\",\n  \"dichte\": \"dicht\",\n  \"dichtem\": \"dicht\",\n  \"dichten\": \"dicht\",\n  \"dichter\": \"dicht\",\n  \"dichtes\": \"dicht\",\n  \"dichteste\": \"dicht\",\n  \"dichtesten\": \"dicht\",\n  \"dichtester\": \"dicht\",\n  \"dichtgeschlossenen\": \"dichtgeschloss\",\n  \"dichtheit\": \"dichtheit\",\n  \"dick\": \"dick\",\n  \"dickbauch\": \"dickbauch\",\n  \"dicke\": \"dick\",\n  \"dickem\": \"dick\",\n  \"dicken\": \"dick\",\n  \"dicker\": \"dick\",\n  \"dickeren\": \"dick\",\n  \"dickicht\": \"dickicht\",\n  \"dickichts\": \"dickicht\",\n  \"dickleibig\": \"dickleib\",\n  \"dicks\": \"dick\",\n  \"dicksten\": \"dick\",\n  \"dickung\": \"dickung\",\n  \"dictamen\": \"dictam\",\n  \"dictavit\": \"dictavit\",\n  \"didac\": \"didac\",\n  \"dideldudeldei\": \"dideldudeldei\",\n  \"dideldumdei\": \"dideldumdei\",\n  \"die\": \"die\",\n  \"dieb\": \"dieb\",\n  \"diebe\": \"dieb\",\n  \"diebin\": \"diebin\",\n  \"diebshehler\": \"diebshehl\",\n  \"diebstahl\": \"diebstahl\",\n  \"diefer\": \"dief\",\n  \"diejenige\": \"diejen\",\n  \"diejenigen\": \"diejen\",\n  \"diele\": \"diel\",\n  \"diemal\": \"diemal\",\n  \"diene\": \"dien\",\n  \"dienen\": \"dien\",\n  \"dienend\": \"dienend\",\n  \"diener\": \"dien\",\n  \"dienern\": \"dien\",\n  \"dienerschaft\": \"dienerschaft\",\n  \"dienerten\": \"dienert\",\n  \"dienet\": \"dienet\",\n  \"dienete\": \"dienet\",\n  \"dienlich\": \"dienlich\",\n  \"dienst\": \"dien\",\n  \"dienstag\": \"dienstag\",\n  \"dienstagmorgen\": \"dienstagmorg\",\n  \"dienstbar\": \"dienstbar\",\n  \"dienstbarer\": \"dienstbar\",\n  \"dienstbarkeit\": \"dienstbar\",\n  \"dienstbarkeiten\": \"dienstbar\",\n  \"dienstboten\": \"dienstbot\",\n  \"dienstbuben\": \"dienstbub\",\n  \"dienste\": \"dien\",\n  \"diensten\": \"dien\",\n  \"dienstes\": \"dien\",\n  \"dienstfertig\": \"dienstfert\",\n  \"dienstleistung\": \"dienstleist\",\n  \"dienstleistungen\": \"dienstleist\",\n  \"dienstliche\": \"dienstlich\",\n  \"dienstmädchen\": \"dienstmadch\",\n  \"dienstmägde\": \"dienstmagd\",\n  \"dienstmägden\": \"dienstmagd\",\n  \"dienstmänner\": \"dienstmann\",\n  \"dienstrevier\": \"dienstrevi\",\n  \"dienstverkehr\": \"dienstverkehr\",\n  \"dienstvorschriften\": \"dienstvorschrift\",\n  \"dienstzeit\": \"dienstzeit\",\n  \"dient\": \"dient\",\n  \"diente\": \"dient\",\n  \"dienten\": \"dient\",\n  \"dies\": \"dies\",\n  \"diesbezüglich\": \"diesbezug\",\n  \"diese\": \"dies\",\n  \"dieselbe\": \"dieselb\",\n  \"dieselben\": \"dieselb\",\n  \"diesem\": \"dies\",\n  \"diesen\": \"dies\",\n  \"diesenging\": \"diesenging\",\n  \"dieser\": \"dies\",\n  \"diesergestalt\": \"diesergestalt\",\n  \"dieserhalb\": \"dieserhalb\",\n  \"dieses\": \"dies\",\n  \"diesjährigen\": \"diesjahr\",\n  \"diesmal\": \"diesmal\",\n  \"diesseitigen\": \"diesseit\",\n  \"dietegen\": \"dieteg\",\n  \"dietrich\": \"dietrich\",\n  \"dieweil\": \"dieweil\",\n  \"differenz\": \"differenz\",\n  \"differenzen\": \"differenz\",\n  \"differenzierter\": \"differenziert\",\n  \"differieren\": \"differi\",\n  \"dimension\": \"dimension\",\n  \"dimensionen\": \"dimension\",\n  \"ding\": \"ding\",\n  \"dinge\": \"ding\",\n  \"dingen\": \"ding\",\n  \"dinger\": \"ding\",\n  \"dinges\": \"ding\",\n  \"dinkel\": \"dinkel\",\n  \"dinkels\": \"dinkel\",\n  \"dinte\": \"dint\",\n  \"diog\": \"diog\",\n  \"diogenes\": \"diog\",\n  \"diplom\": \"diplom\",\n  \"dir\": \"dir\",\n  \"diras\": \"diras\",\n  \"direkt\": \"direkt\",\n  \"direkten\": \"direkt\",\n  \"direktion\": \"direktion\",\n  \"direktionszimmer\": \"direktionszimm\",\n  \"direktor\": \"direktor\",\n  \"direktorium\": \"direktorium\",\n  \"direktors\": \"direktor\",\n  \"dirn\": \"dirn\",\n  \"dirnchen\": \"dirnch\",\n  \"dirndl\": \"dirndl\",\n  \"dirne\": \"dirn\",\n  \"discover\": \"discov\",\n  \"diskursiv\": \"diskursiv\",\n  \"diskussion\": \"diskussion\",\n  \"diskussionen\": \"diskussion\",\n  \"diskutieren\": \"diskuti\",\n  \"diskutierend\": \"diskutier\",\n  \"diskutiert\": \"diskutiert\",\n  \"disneyland\": \"disneyland\",\n  \"disposition\": \"disposition\",\n  \"disputation\": \"disputation\",\n  \"disputieren\": \"disputi\",\n  \"disputierende\": \"disputier\",\n  \"disputierens\": \"disputier\",\n  \"disputiert\": \"disputiert\",\n  \"distel\": \"distel\",\n  \"disteln\": \"disteln\",\n  \"distelstauden\": \"distelstaud\",\n  \"distinktionen\": \"distinktion\",\n  \"disziplin\": \"disziplin\",\n  \"disziplinarverfahren\": \"disziplinarverfahr\",\n  \"dithyrambische\": \"dithyramb\",\n  \"divergieren\": \"divergi\",\n  \"diversa\": \"diversa\",\n  \"diverse\": \"divers\",\n  \"dntt\": \"dntt\",\n  \"do\": \"do\",\n  \"dö\": \"do\",\n  \"docet\": \"docet\",\n  \"doch\": \"doch\",\n  \"docht\": \"docht\",\n  \"doctrina\": \"doctrina\",\n  \"doctrinalia\": \"doctrinalia\",\n  \"document\": \"document\",\n  \"dogder\": \"dogd\",\n  \"dogmata\": \"dogmata\",\n  \"doktor\": \"doktor\",\n  \"dokumentieren\": \"dokumenti\",\n  \"dolmetscherin\": \"dolmetscherin\",\n  \"dolmusfahrer\": \"dolmusfahr\",\n  \"dom\": \"dom\",\n  \"domes\": \"dom\",\n  \"domini\": \"domini\",\n  \"dominicus\": \"dominicus\",\n  \"dominierten\": \"dominiert\",\n  \"dominikus\": \"dominikus\",\n  \"domplatz\": \"domplatz\",\n  \"domui\": \"domui\",\n  \"domus\": \"domus\",\n  \"don\": \"don\",\n  \"donner\": \"donn\",\n  \"donnerbrummen\": \"donnerbrumm\",\n  \"dönnerchen\": \"donnerch\",\n  \"donnergetümmel\": \"donnergetummel\",\n  \"donnermann\": \"donnermann\",\n  \"donnern\": \"donn\",\n  \"donnernd\": \"donnernd\",\n  \"donnerndes\": \"donnernd\",\n  \"donnerriese\": \"donnerries\",\n  \"donnerriesen\": \"donnerries\",\n  \"donners\": \"donn\",\n  \"donnerschlag\": \"donnerschlag\",\n  \"donnerstag\": \"donnerstag\",\n  \"donnerstimmen\": \"donnerstimm\",\n  \"donnerte\": \"donnert\",\n  \"donnerwetter\": \"donnerwett\",\n  \"doppelbüchse\": \"doppelbuchs\",\n  \"doppelgänger\": \"doppelgang\",\n  \"doppelglas\": \"doppelglas\",\n  \"doppelkinns\": \"doppelkinn\",\n  \"doppelt\": \"doppelt\",\n  \"doppelte\": \"doppelt\",\n  \"doppelten\": \"doppelt\",\n  \"doppelter\": \"doppelt\",\n  \"dorf\": \"dorf\",\n  \"dörfchens\": \"dorfch\",\n  \"dorfe\": \"dorf\",\n  \"dörfer\": \"dorf\",\n  \"dörfern\": \"dorf\",\n  \"dorfes\": \"dorf\",\n  \"dorfgenossen\": \"dorfgenoss\",\n  \"dorfhange\": \"dorfhang\",\n  \"dorfköter\": \"dorfkot\",\n  \"dorfkretscham\": \"dorfkretscham\",\n  \"dörfler\": \"dorfl\",\n  \"dörflerische\": \"dorfler\",\n  \"dorfschaften\": \"dorfschaft\",\n  \"dorfschönen\": \"dorfschon\",\n  \"dorfschulmeistern\": \"dorfschulmeist\",\n  \"dorfschützer\": \"dorfschutz\",\n  \"dorfschützern\": \"dorfschutz\",\n  \"dorfspaziergängen\": \"dorfspaziergang\",\n  \"dorfvorsteher\": \"dorfvorsteh\",\n  \"dorfvorstehers\": \"dorfvorsteh\",\n  \"dorn\": \"dorn\",\n  \"dornbusch\": \"dornbusch\",\n  \"dornbusche\": \"dornbusch\",\n  \"dornbusches\": \"dornbusch\",\n  \"dornbuschs\": \"dornbusch\",\n  \"dornen\": \"dorn\",\n  \"dornengesträuch\": \"dornengestrauch\",\n  \"dornenrüstung\": \"dornenrust\",\n  \"dornsträucher\": \"dornstrauch\",\n  \"dort\": \"dort\",\n  \"dorthin\": \"dorthin\",\n  \"dortige\": \"dortig\",\n  \"dortigen\": \"dortig\",\n  \"dortiger\": \"dortig\",\n  \"dös\": \"dos\",\n  \"döschen\": \"dosch\",\n  \"dose\": \"dos\",\n  \"doxa\": \"doxa\",\n  \"dozentin\": \"dozentin\",\n  \"dr\": \"dr\",\n  \"drache\": \"drach\",\n  \"drachen\": \"drach\",\n  \"drachengift\": \"drachengift\",\n  \"drachenknopf\": \"drachenknopf\",\n  \"drachenschlange\": \"drachenschlang\",\n  \"draht\": \"draht\",\n  \"drahtig\": \"drahtig\",\n  \"dramatischen\": \"dramat\",\n  \"dran\": \"dran\",\n  \"drang\": \"drang\",\n  \"drange\": \"drang\",\n  \"drangegeben\": \"drangegeb\",\n  \"drangen\": \"drang\",\n  \"drängen\": \"drang\",\n  \"drangsal\": \"drangsal\",\n  \"drängt\": \"drangt\",\n  \"drängte\": \"drangt\",\n  \"drängten\": \"drangt\",\n  \"drapierte\": \"drapiert\",\n  \"drauf\": \"drauf\",\n  \"draufging\": \"draufging\",\n  \"draus\": \"draus\",\n  \"draussen\": \"drauss\",\n  \"draußen\": \"drauss\",\n  \"dreck\": \"dreck\",\n  \"drehen\": \"dreh\",\n  \"drehend\": \"drehend\",\n  \"drehscheibe\": \"drehscheib\",\n  \"dreht\": \"dreht\",\n  \"drehte\": \"dreht\",\n  \"drehten\": \"dreht\",\n  \"drei\": \"drei\",\n  \"dreiangel\": \"dreiangel\",\n  \"dreibeinigen\": \"dreibein\",\n  \"dreieck\": \"dreieck\",\n  \"dreiecke\": \"dreieck\",\n  \"dreieckes\": \"dreieck\",\n  \"dreieckiger\": \"dreieckig\",\n  \"dreieinige\": \"dreieinig\",\n  \"dreieinigkeit\": \"dreieinig\",\n  \"dreien\": \"dreien\",\n  \"dreier\": \"dreier\",\n  \"dreifach\": \"dreifach\",\n  \"dreifache\": \"dreifach\",\n  \"dreifachen\": \"dreifach\",\n  \"dreihundert\": \"dreihundert\",\n  \"dreihundertfünfzig\": \"dreihundertfunfz\",\n  \"dreihundertfünfzigtausend\": \"dreihundertfunfzigtaus\",\n  \"dreimal\": \"dreimal\",\n  \"drein\": \"drein\",\n  \"dreingeb\": \"dreingeb\",\n  \"dreinsah\": \"dreinsah\",\n  \"dreinschicken\": \"dreinschick\",\n  \"dreiröhrenhut\": \"dreirohrenhut\",\n  \"dreissig\": \"dreissig\",\n  \"dreißig\": \"dreissig\",\n  \"dreissiger\": \"dreissig\",\n  \"dreissigster\": \"dreissig\",\n  \"dreißigster\": \"dreissig\",\n  \"dreißiig\": \"dreissiig\",\n  \"dreist\": \"dreist\",\n  \"dreiundachtzig\": \"dreiundachtz\",\n  \"dreiundzwanzigstem\": \"dreiundzwanz\",\n  \"dreizackigen\": \"dreizack\",\n  \"dreizehn\": \"dreizehn\",\n  \"dreschen\": \"dresch\",\n  \"dresden\": \"dresd\",\n  \"drewes\": \"drew\",\n  \"drfe\": \"drfe\",\n  \"drin\": \"drin\",\n  \"dringen\": \"dring\",\n  \"dringend\": \"dringend\",\n  \"dringende\": \"dringend\",\n  \"dringendes\": \"dringend\",\n  \"dringendste\": \"dringend\",\n  \"dringlich\": \"dringlich\",\n  \"dringt\": \"dringt\",\n  \"drinks\": \"drink\",\n  \"drinnen\": \"drinn\",\n  \"drisch\": \"drisch\",\n  \"dritt\": \"dritt\",\n  \"dritte\": \"dritt\",\n  \"drittehalb\": \"drittehalb\",\n  \"drittel\": \"drittel\",\n  \"drittem\": \"dritt\",\n  \"dritten\": \"dritt\",\n  \"drittenmal\": \"drittenmal\",\n  \"drittens\": \"dritt\",\n  \"dritter\": \"dritt\",\n  \"drittes\": \"dritt\",\n  \"dritthalb\": \"dritthalb\",\n  \"droben\": \"drob\",\n  \"drogenpolitik\": \"drogenpolit\",\n  \"drohen\": \"droh\",\n  \"drohend\": \"drohend\",\n  \"drohende\": \"drohend\",\n  \"drohenden\": \"drohend\",\n  \"drohendes\": \"drohend\",\n  \"drohete\": \"drohet\",\n  \"dröhnend\": \"drohnend\",\n  \"dröhnte\": \"drohnt\",\n  \"droht\": \"droht\",\n  \"drohte\": \"droht\",\n  \"drohten\": \"droht\",\n  \"drohungen\": \"drohung\",\n  \"drollig\": \"drollig\",\n  \"drollige\": \"drollig\",\n  \"drolligen\": \"drollig\",\n  \"drolliges\": \"drollig\",\n  \"dromedare\": \"dromedar\",\n  \"drüben\": \"drub\",\n  \"drüber\": \"drub\",\n  \"druck\": \"druck\",\n  \"drucke\": \"druck\",\n  \"drücken\": \"druck\",\n  \"drückend\": \"druckend\",\n  \"drückenden\": \"druckend\",\n  \"druckes\": \"druck\",\n  \"drucks\": \"druck\",\n  \"drucksorten\": \"drucksort\",\n  \"druckt\": \"druckt\",\n  \"drückte\": \"druckt\",\n  \"drückten\": \"druckt\",\n  \"drum\": \"drum\",\n  \"drunt\": \"drunt\",\n  \"drunten\": \"drunt\",\n  \"drüppelei\": \"druppelei\",\n  \"drüppeln\": \"druppeln\",\n  \"drüppelü\": \"druppelu\",\n  \"drüsen\": \"drus\",\n  \"du\": \"du\",\n  \"ducken\": \"duck\",\n  \"duckmäuser\": \"duckmaus\",\n  \"duckt\": \"duckt\",\n  \"duckte\": \"duckt\",\n  \"duckten\": \"duckt\",\n  \"dudlerei\": \"dudlerei\",\n  \"duell\": \"duell\",\n  \"duft\": \"duft\",\n  \"duftende\": \"duftend\",\n  \"duftenden\": \"duftend\",\n  \"duftet\": \"duftet\",\n  \"duftete\": \"duftet\",\n  \"duftgewebe\": \"duftgeweb\",\n  \"duftig\": \"duftig\",\n  \"duftwolken\": \"duftwolk\",\n  \"duht\": \"duht\",\n  \"dukaten\": \"dukat\",\n  \"dulden\": \"duld\",\n  \"dulderin\": \"dulderin\",\n  \"duldete\": \"duldet\",\n  \"duldeten\": \"duldet\",\n  \"duldsamkeit\": \"duldsam\",\n  \"duldung\": \"duldung\",\n  \"dumm\": \"dumm\",\n  \"dumme\": \"dumm\",\n  \"dummen\": \"dumm\",\n  \"dummer\": \"dumm\",\n  \"dümmer\": \"dumm\",\n  \"dummes\": \"dumm\",\n  \"dummglotzenden\": \"dummglotz\",\n  \"dummheit\": \"dummheit\",\n  \"dummheiten\": \"dummheit\",\n  \"dummkopf\": \"dummkopf\",\n  \"dummköpfe\": \"dummkopf\",\n  \"dummköpfen\": \"dummkopf\",\n  \"dümmling\": \"dummling\",\n  \"dumms\": \"dumm\",\n  \"dumpf\": \"dumpf\",\n  \"dumpfem\": \"dumpf\",\n  \"dumpfen\": \"dumpf\",\n  \"dumpfhallend\": \"dumpfhall\",\n  \"dunggestank\": \"dunggestank\",\n  \"dunkel\": \"dunkel\",\n  \"dunkelblau\": \"dunkelblau\",\n  \"dunkelblauen\": \"dunkelblau\",\n  \"dunkelbraunen\": \"dunkelbraun\",\n  \"dunkele\": \"dunkel\",\n  \"dunkelgrauen\": \"dunkelgrau\",\n  \"dunkelgrüne\": \"dunkelgrun\",\n  \"dunkelgrünen\": \"dunkelgrun\",\n  \"dunkelhaariges\": \"dunkelhaar\",\n  \"dunkelheit\": \"dunkel\",\n  \"dunkelheiten\": \"dunkel\",\n  \"dunkeln\": \"dunkeln\",\n  \"dunkelrot\": \"dunkelrot\",\n  \"dunkelrotem\": \"dunkelrot\",\n  \"dunkelrotes\": \"dunkelrot\",\n  \"dunkels\": \"dunkel\",\n  \"dunkeltal\": \"dunkeltal\",\n  \"dunkelte\": \"dunkelt\",\n  \"dünkelvoller\": \"dunkelvoll\",\n  \"dünken\": \"dunk\",\n  \"dünkenden\": \"dunkend\",\n  \"dunkle\": \"dunkl\",\n  \"dunklem\": \"dunkl\",\n  \"dunklen\": \"dunkl\",\n  \"dunkler\": \"dunkl\",\n  \"dunkleren\": \"dunkl\",\n  \"dunkleres\": \"dunkl\",\n  \"dunkles\": \"dunkl\",\n  \"dünkt\": \"dunkt\",\n  \"dünkte\": \"dunkt\",\n  \"dünkten\": \"dunkt\",\n  \"dünn\": \"dunn\",\n  \"dünne\": \"dunn\",\n  \"dünnen\": \"dunn\",\n  \"dünner\": \"dunn\",\n  \"dünnes\": \"dunn\",\n  \"dunst\": \"dunst\",\n  \"dünste\": \"dunst\",\n  \"dünsten\": \"dunst\",\n  \"dunstwölkchen\": \"dunstwolkch\",\n  \"durch\": \"durch\",\n  \"durcharbeiten\": \"durcharbeit\",\n  \"durchaus\": \"durchaus\",\n  \"durchblättern\": \"durchblatt\",\n  \"durchblätterte\": \"durchblattert\",\n  \"durchblicken\": \"durchblick\",\n  \"durchbohrt\": \"durchbohrt\",\n  \"durchbohrte\": \"durchbohrt\",\n  \"durchbohrten\": \"durchbohrt\",\n  \"durchbohrter\": \"durchbohrt\",\n  \"durchbohrung\": \"durchbohr\",\n  \"durchbrechen\": \"durchbrech\",\n  \"durchbrochen\": \"durchbroch\",\n  \"durchbrochenem\": \"durchbroch\",\n  \"durchbruch\": \"durchbruch\",\n  \"durchdacht\": \"durchdacht\",\n  \"durchdrang\": \"durchdrang\",\n  \"durchdringen\": \"durchdring\",\n  \"durchdrungen\": \"durchdrung\",\n  \"durchduftete\": \"durchduftet\",\n  \"durcheinander\": \"durcheinand\",\n  \"durcheinanderhingen\": \"durcheinanderhing\",\n  \"durcheinanderliefen\": \"durcheinanderlief\",\n  \"durcheinanderwimmelnden\": \"durcheinanderwimmelnd\",\n  \"durcheinanderwirbelte\": \"durcheinanderwirbelt\",\n  \"durchfallen\": \"durchfall\",\n  \"durchfliessen\": \"durchfliess\",\n  \"durchfließen\": \"durchfliess\",\n  \"durchforscht\": \"durchforscht\",\n  \"durchfuhr\": \"durchfuhr\",\n  \"durchfuhren\": \"durchfuhr\",\n  \"durchführte\": \"durchfuhrt\",\n  \"durchführung\": \"durchfuhr\",\n  \"durchgackerten\": \"durchgackert\",\n  \"durchgang\": \"durchgang\",\n  \"durchgängig\": \"durchgang\",\n  \"durchgängigen\": \"durchgang\",\n  \"durchgangsasyl\": \"durchgangsasyl\",\n  \"durchgeführt\": \"durchgefuhrt\",\n  \"durchgegeben\": \"durchgegeb\",\n  \"durchgehechelt\": \"durchgehechelt\",\n  \"durchgehen\": \"durchgeh\",\n  \"durchgeht\": \"durchgeht\",\n  \"durchgekämpft\": \"durchgekampft\",\n  \"durchgekaute\": \"durchgekaut\",\n  \"durchgelassen\": \"durchgelass\",\n  \"durchgelaufen\": \"durchgelauf\",\n  \"durchgereist\": \"durchgereist\",\n  \"durchgeschleppt\": \"durchgeschleppt\",\n  \"durchgreifende\": \"durchgreif\",\n  \"durchkommen\": \"durchkomm\",\n  \"durchläuft\": \"durchlauft\",\n  \"durchleben\": \"durchleb\",\n  \"durchlief\": \"durchlief\",\n  \"durchliess\": \"durchliess\",\n  \"durchlöchern\": \"durchloch\",\n  \"durchmass\": \"durchmass\",\n  \"durchmustern\": \"durchmust\",\n  \"durchmusterte\": \"durchmustert\",\n  \"durchquerte\": \"durchquert\",\n  \"durchs\": \"durch\",\n  \"durchschauerte\": \"durchschauert\",\n  \"durchschaute\": \"durchschaut\",\n  \"durchschauten\": \"durchschaut\",\n  \"durchscheinen\": \"durchschein\",\n  \"durchscheinend\": \"durchschein\",\n  \"durchscheinenden\": \"durchschein\",\n  \"durchschimmern\": \"durchschimm\",\n  \"durchschimmerte\": \"durchschimmert\",\n  \"durchschlagen\": \"durchschlag\",\n  \"durchschneiden\": \"durchschneid\",\n  \"durchschnittenen\": \"durchschnitt\",\n  \"durchschnittsleben\": \"durchschnittsleb\",\n  \"durchschritten\": \"durchschritt\",\n  \"durchschwemmt\": \"durchschwemmt\",\n  \"durchsetzen\": \"durchsetz\",\n  \"durchsetzt\": \"durchsetzt\",\n  \"durchsetzung\": \"durchsetz\",\n  \"durchsichtig\": \"durchsicht\",\n  \"durchsichtige\": \"durchsicht\",\n  \"durchsichtigem\": \"durchsicht\",\n  \"durchsichtigen\": \"durchsicht\",\n  \"durchsichtiger\": \"durchsicht\",\n  \"durchsichtigkeit\": \"durchsicht\",\n  \"durchsickern\": \"durchsick\",\n  \"durchsonnte\": \"durchsonnt\",\n  \"durchstrichen\": \"durchstrich\",\n  \"durchströmt\": \"durchstromt\",\n  \"durchsuchen\": \"durchsuch\",\n  \"durchsucht\": \"durchsucht\",\n  \"durchsuchte\": \"durchsucht\",\n  \"durchsuchten\": \"durchsucht\",\n  \"durchsuchungen\": \"durchsuch\",\n  \"durchtrieben\": \"durchtrieb\",\n  \"durchtriebener\": \"durchtrieb\",\n  \"durchwanderten\": \"durchwandert\",\n  \"durchweg\": \"durchweg\",\n  \"durchwegs\": \"durchweg\",\n  \"durchweicht\": \"durchweicht\",\n  \"durchzogen\": \"durchzog\",\n  \"durchzogener\": \"durchzog\",\n  \"durchzuckte\": \"durchzuckt\",\n  \"durchzulesen\": \"durchzules\",\n  \"durchzuschlagen\": \"durchzuschlag\",\n  \"durchzusehen\": \"durchzuseh\",\n  \"durchzuwandern\": \"durchzuwand\",\n  \"dürfe\": \"durf\",\n  \"dürfen\": \"durf\",\n  \"dürfet\": \"durfet\",\n  \"dürft\": \"durft\",\n  \"durfte\": \"durft\",\n  \"dürfte\": \"durft\",\n  \"durften\": \"durft\",\n  \"dürften\": \"durft\",\n  \"dürftet\": \"durftet\",\n  \"dürftig\": \"durftig\",\n  \"dürftige\": \"durftig\",\n  \"dürftigem\": \"durftig\",\n  \"dürftigen\": \"durftig\",\n  \"dürftigkeit\": \"durftig\",\n  \"dürr\": \"durr\",\n  \"dürre\": \"durr\",\n  \"dürrem\": \"durr\",\n  \"dürren\": \"durr\",\n  \"dürrer\": \"durr\",\n  \"dürres\": \"durr\",\n  \"durst\": \"durst\",\n  \"dürste\": \"durst\",\n  \"dursten\": \"durst\",\n  \"dürsten\": \"durst\",\n  \"dürstende\": \"durstend\",\n  \"dürstenden\": \"durstend\",\n  \"durstet\": \"durstet\",\n  \"dürsteten\": \"durstet\",\n  \"durstige\": \"durstig\",\n  \"durstiger\": \"durstig\",\n  \"duselnden\": \"duselnd\",\n  \"duselt\": \"duselt\",\n  \"düster\": \"dust\",\n  \"düstere\": \"dust\",\n  \"düsterem\": \"dust\",\n  \"düsterer\": \"dust\",\n  \"düte\": \"dut\",\n  \"düten\": \"dut\",\n  \"dutzend\": \"dutzend\",\n  \"dutzenden\": \"dutzend\",\n  \"dutzendmal\": \"dutzendmal\",\n  \"dutzendweise\": \"dutzendweis\",\n  \"dv\": \"dv\",\n  \"dynamischen\": \"dynam\",\n  \"dyp\": \"dyp\",\n  \"e\": \"e\",\n  \"eahm\": \"eahm\",\n  \"eandemque\": \"eandemqu\",\n  \"earth\": \"earth\",\n  \"easy\": \"easy\",\n  \"ebbes\": \"ebb\",\n  \"eben\": \"eben\",\n  \"ebenbild\": \"ebenbild\",\n  \"ebenbürtig\": \"ebenburt\",\n  \"ebenbürtigen\": \"ebenburt\",\n  \"ebendaher\": \"ebendah\",\n  \"ebendamit\": \"ebendamit\",\n  \"ebendarum\": \"ebendarum\",\n  \"ebendaselbst\": \"ebendaselb\",\n  \"ebendasselbe\": \"ebendasselb\",\n  \"ebendenselben\": \"ebendenselb\",\n  \"ebenderselben\": \"ebenderselb\",\n  \"ebendiese\": \"ebendies\",\n  \"ebendieselbe\": \"ebendieselb\",\n  \"ebendieselben\": \"ebendieselb\",\n  \"ebendort\": \"ebendort\",\n  \"ebene\": \"eben\",\n  \"ebenen\": \"eben\",\n  \"ebenerdige\": \"ebenerd\",\n  \"ebenfahls\": \"ebenfahl\",\n  \"ebenfalls\": \"ebenfall\",\n  \"ebenso\": \"ebenso\",\n  \"ebensogut\": \"ebensogut\",\n  \"ebensoviel\": \"ebensoviel\",\n  \"ebensowenig\": \"ebensowen\",\n  \"ebensowohl\": \"ebensowohl\",\n  \"eber\": \"eber\",\n  \"ebereschen\": \"eberesch\",\n  \"ebne\": \"ebn\",\n  \"ebnete\": \"ebnet\",\n  \"ecclesiae\": \"ecclesia\",\n  \"echo\": \"echo\",\n  \"echt\": \"echt\",\n  \"echte\": \"echt\",\n  \"echten\": \"echt\",\n  \"echter\": \"echt\",\n  \"ecke\": \"eck\",\n  \"ecken\": \"eck\",\n  \"eckig\": \"eckig\",\n  \"ecksäulen\": \"ecksaul\",\n  \"eckzimmer\": \"eckzimm\",\n  \"ectypa\": \"ectypa\",\n  \"eda\": \"eda\",\n  \"edel\": \"edel\",\n  \"edelgeformten\": \"edelgeformt\",\n  \"edelherr\": \"edelherr\",\n  \"edelherren\": \"edelherr\",\n  \"edelherrn\": \"edelherrn\",\n  \"edelmann\": \"edelmann\",\n  \"edelmanns\": \"edelmann\",\n  \"edelmannstracht\": \"edelmannstracht\",\n  \"edelmütig\": \"edelmut\",\n  \"edelpferden\": \"edelpferd\",\n  \"edelste\": \"edel\",\n  \"edelstein\": \"edelstein\",\n  \"edelsteine\": \"edelstein\",\n  \"edelsteinen\": \"edelstein\",\n  \"edelsten\": \"edel\",\n  \"edelweib\": \"edelweib\",\n  \"edelweiss\": \"edelweiss\",\n  \"eden\": \"eden\",\n  \"edens\": \"eden\",\n  \"ediert\": \"ediert\",\n  \"edith\": \"edith\",\n  \"edle\": \"edl\",\n  \"edlem\": \"edl\",\n  \"edlen\": \"edl\",\n  \"edler\": \"edl\",\n  \"edlere\": \"edl\",\n  \"edleren\": \"edl\",\n  \"edleres\": \"edl\",\n  \"edles\": \"edl\",\n  \"edom\": \"edom\",\n  \"edoms\": \"edom\",\n  \"eeccs\": \"eeccs\",\n  \"eerv\": \"eerv\",\n  \"efeu\": \"efeu\",\n  \"effekt\": \"effekt\",\n  \"efficere\": \"effic\",\n  \"effigies\": \"effigi\",\n  \"egal\": \"egal\",\n  \"eglaim\": \"eglaim\",\n  \"eh\": \"eh\",\n  \"ehandelt\": \"ehandelt\",\n  \"ehe\": \"ehe\",\n  \"ehebrechen\": \"ehebrech\",\n  \"ehebrecher\": \"ehebrech\",\n  \"ehebrechers\": \"ehebrech\",\n  \"ehebruch\": \"ehebruch\",\n  \"ehebrüche\": \"ehebruch\",\n  \"ehebruchs\": \"ehebruch\",\n  \"ehedem\": \"ehed\",\n  \"ehefrau\": \"ehefrau\",\n  \"ehegemahls\": \"ehegemahl\",\n  \"ehegesponsin\": \"ehegesponsin\",\n  \"eheherren\": \"eheherr\",\n  \"eheleuten\": \"eheleut\",\n  \"eheliche\": \"ehelich\",\n  \"ehelichen\": \"ehelich\",\n  \"ehemalige\": \"ehemal\",\n  \"ehemaligen\": \"ehemal\",\n  \"ehemaliger\": \"ehemal\",\n  \"ehemaliges\": \"ehemal\",\n  \"ehemals\": \"ehemal\",\n  \"ehemann\": \"ehemann\",\n  \"ehemannes\": \"ehemann\",\n  \"ehen\": \"ehen\",\n  \"ehepaar\": \"ehepaar\",\n  \"eher\": \"eher\",\n  \"eherne\": \"ehern\",\n  \"ehesten\": \"ehest\",\n  \"ehestens\": \"ehest\",\n  \"eheweiber\": \"eheweib\",\n  \"ehr\": \"ehr\",\n  \"ehrbar\": \"ehrbar\",\n  \"ehrbare\": \"ehrbar\",\n  \"ehrbarem\": \"ehrbar\",\n  \"ehrbaren\": \"ehrbar\",\n  \"ehrbarer\": \"ehrbar\",\n  \"ehrbareres\": \"ehrbar\",\n  \"ehrbares\": \"ehrbar\",\n  \"ehrbarkeit\": \"ehrbar\",\n  \"ehre\": \"ehr\",\n  \"ehren\": \"ehr\",\n  \"ehrenamtliche\": \"ehrenamt\",\n  \"ehrenbürgerin\": \"ehrenburgerin\",\n  \"ehrenbürgerinfür\": \"ehrenburgerinfur\",\n  \"ehrenbürgerrecht\": \"ehrenburgerrecht\",\n  \"ehrend\": \"ehrend\",\n  \"ehrenfest\": \"ehrenf\",\n  \"ehrenfesten\": \"ehrenf\",\n  \"ehrennamen\": \"ehrennam\",\n  \"ehrenplatz\": \"ehrenplatz\",\n  \"ehrenreich\": \"ehrenreich\",\n  \"ehrenstellen\": \"ehrenstell\",\n  \"ehrenstellung\": \"ehrenstell\",\n  \"ehrentitel\": \"ehrentitel\",\n  \"ehrenwerte\": \"ehrenwert\",\n  \"ehrerbietig\": \"ehrerbiet\",\n  \"ehrerbietung\": \"ehrerbiet\",\n  \"ehrest\": \"ehr\",\n  \"ehrfurcht\": \"ehrfurcht\",\n  \"ehrfurchtsvolle\": \"ehrfurchtsvoll\",\n  \"ehrgeizigen\": \"ehrgeiz\",\n  \"ehrgeiziger\": \"ehrgeiz\",\n  \"ehrlich\": \"ehrlich\",\n  \"ehrliche\": \"ehrlich\",\n  \"ehrlichen\": \"ehrlich\",\n  \"ehrlicher\": \"ehrlich\",\n  \"ehrlichkeit\": \"ehrlich\",\n  \"ehrsame\": \"ehrsam\",\n  \"ehrsames\": \"ehrsam\",\n  \"ehrt\": \"ehrt\",\n  \"ehrte\": \"ehrt\",\n  \"ehrvergessenen\": \"ehrvergess\",\n  \"ehrwürdig\": \"ehrwurd\",\n  \"ehrwürdige\": \"ehrwurd\",\n  \"ehrwürdiger\": \"ehrwurd\",\n  \"ei\": \"ei\",\n  \"eia\": \"eia\",\n  \"eibenbäumchen\": \"eibenbaumch\",\n  \"eiche\": \"eich\",\n  \"eichen\": \"eich\",\n  \"eichenast\": \"eichenast\",\n  \"eichendorff\": \"eichendorff\",\n  \"eichenen\": \"eich\",\n  \"eichenstämme\": \"eichenstamm\",\n  \"eichentisch\": \"eichent\",\n  \"eichhörnchen\": \"eichhornch\",\n  \"eichkatzl\": \"eichkatzl\",\n  \"eichwald\": \"eichwald\",\n  \"eiden\": \"eid\",\n  \"eidgenossenschaft\": \"eidgenossenschaft\",\n  \"eidgenössische\": \"eidgenoss\",\n  \"eidgenössischen\": \"eidgenoss\",\n  \"eier\": \"eier\",\n  \"eierbecher\": \"eierbech\",\n  \"eierbrot\": \"eierbrot\",\n  \"eierkuchen\": \"eierkuch\",\n  \"eierkuchens\": \"eierkuch\",\n  \"eierlast\": \"eierlast\",\n  \"eiern\": \"eiern\",\n  \"eiertanz\": \"eiertanz\",\n  \"eifer\": \"eif\",\n  \"eifers\": \"eif\",\n  \"eifersucht\": \"eifersucht\",\n  \"eifersüchtig\": \"eifersucht\",\n  \"eiferten\": \"eifert\",\n  \"eiffelturm\": \"eiffelturm\",\n  \"eifrig\": \"eifrig\",\n  \"eifrige\": \"eifrig\",\n  \"eifrigen\": \"eifrig\",\n  \"eifriger\": \"eifrig\",\n  \"eifrigsten\": \"eifrig\",\n  \"eigen\": \"eig\",\n  \"eigenanteile\": \"eigenanteil\",\n  \"eigenartige\": \"eigenart\",\n  \"eigendünkel\": \"eigendunkel\",\n  \"eigene\": \"eig\",\n  \"eigenem\": \"eig\",\n  \"eigenen\": \"eig\",\n  \"eigener\": \"eig\",\n  \"eigenes\": \"eig\",\n  \"eigenhändig\": \"eigenhand\",\n  \"eigenheiten\": \"eig\",\n  \"eigenliebe\": \"eigenlieb\",\n  \"eigenliebige\": \"eigenlieb\",\n  \"eigenname\": \"eigennam\",\n  \"eigennutz\": \"eigennutz\",\n  \"eigennützige\": \"eigennutz\",\n  \"eigennützigen\": \"eigennutz\",\n  \"eigennütziger\": \"eigennutz\",\n  \"eigens\": \"eig\",\n  \"eigenschafren\": \"eigenschafr\",\n  \"eigenschaft\": \"eigenschaft\",\n  \"eigenschaften\": \"eigenschaft\",\n  \"eigenschaftung\": \"eigenschaft\",\n  \"eigensinn\": \"eigensinn\",\n  \"eigensinnig\": \"eigensinn\",\n  \"eigensinnigen\": \"eigensinn\",\n  \"eigensinniger\": \"eigensinn\",\n  \"eigenst\": \"eigen\",\n  \"eigenste\": \"eigen\",\n  \"eigensten\": \"eigen\",\n  \"eigenstes\": \"eigen\",\n  \"eigensüchtigen\": \"eigensucht\",\n  \"eigentlich\": \"eigent\",\n  \"eigentliche\": \"eigent\",\n  \"eigentlichen\": \"eigent\",\n  \"eigentliches\": \"eigent\",\n  \"eigentlichst\": \"eigent\",\n  \"eigentlichste\": \"eigent\",\n  \"eigentum\": \"eigentum\",\n  \"eigentümer\": \"eigentum\",\n  \"eigentümers\": \"eigentum\",\n  \"eigentümlich\": \"eigentum\",\n  \"eigentümliche\": \"eigentum\",\n  \"eigentümlichem\": \"eigentum\",\n  \"eigentümlichen\": \"eigentum\",\n  \"eigentümlicher\": \"eigentum\",\n  \"eigentümlicherweise\": \"eigentumlicherweis\",\n  \"eigentümliches\": \"eigentum\",\n  \"eigentümlichkeit\": \"eigentum\",\n  \"eigentümlichkeiten\": \"eigentum\",\n  \"eigentums\": \"eigentum\",\n  \"eigenwillen\": \"eigenwill\",\n  \"eigne\": \"eign\",\n  \"eignen\": \"eign\",\n  \"eignet\": \"eignet\",\n  \"eignungsprüfung\": \"eignungspruf\",\n  \"eil\": \"eil\",\n  \"eilanden\": \"eiland\",\n  \"eile\": \"eil\",\n  \"eilen\": \"eil\",\n  \"eilend\": \"eilend\",\n  \"eilenden\": \"eilend\",\n  \"eilender\": \"eilend\",\n  \"eilendes\": \"eilend\",\n  \"eilends\": \"eilend\",\n  \"eilet\": \"eilet\",\n  \"eilfertig\": \"eilfert\",\n  \"eilig\": \"eilig\",\n  \"eiligen\": \"eilig\",\n  \"eiligst\": \"eilig\",\n  \"eilt\": \"eilt\",\n  \"eilte\": \"eilt\",\n  \"eilten\": \"eilt\",\n  \"eim\": \"eim\",\n  \"eimer\": \"eim\",\n  \"eimern\": \"eim\",\n  \"eimers\": \"eim\",\n  \"ein\": \"ein\",\n  \"einander\": \"einand\",\n  \"einband\": \"einband\",\n  \"einbanddeckel\": \"einbanddeckel\",\n  \"einberufung\": \"einberuf\",\n  \"einbilde\": \"einbild\",\n  \"einbilden\": \"einbild\",\n  \"einbildete\": \"einbildet\",\n  \"einbildeten\": \"einbildet\",\n  \"einbildung\": \"einbild\",\n  \"einbildungen\": \"einbild\",\n  \"einbildungskraft\": \"einbildungskraft\",\n  \"einblick\": \"einblick\",\n  \"einbrächten\": \"einbracht\",\n  \"einbrechende\": \"einbrech\",\n  \"einbringen\": \"einbring\",\n  \"einbringt\": \"einbringt\",\n  \"einbringung\": \"einbring\",\n  \"einbruch\": \"einbruch\",\n  \"einbürgern\": \"einburg\",\n  \"einbusse\": \"einbuss\",\n  \"einbuße\": \"einbuss\",\n  \"einbüssung\": \"einbuss\",\n  \"einchecken\": \"eincheck\",\n  \"eincheckens\": \"eincheck\",\n  \"eindeutig\": \"eindeut\",\n  \"eindrang\": \"eindrang\",\n  \"eindringe\": \"eindring\",\n  \"eindringen\": \"eindring\",\n  \"eindringendsten\": \"eindring\",\n  \"eindringlich\": \"eindring\",\n  \"eindringlichen\": \"eindring\",\n  \"eindringlichkeit\": \"eindring\",\n  \"eindringlinge\": \"eindringling\",\n  \"eindringt\": \"eindringt\",\n  \"eindruck\": \"eindruck\",\n  \"eindrücken\": \"eindruck\",\n  \"eine\": \"ein\",\n  \"eineinviertel\": \"eineinviertel\",\n  \"einem\": \"ein\",\n  \"einen\": \"ein\",\n  \"einer\": \"ein\",\n  \"einerlei\": \"einerlei\",\n  \"einerleiheit\": \"einerlei\",\n  \"einernten\": \"einernt\",\n  \"einerseits\": \"einerseit\",\n  \"eines\": \"ein\",\n  \"einesteils\": \"einesteil\",\n  \"einfach\": \"einfach\",\n  \"einfachbauweise\": \"einfachbauweis\",\n  \"einfache\": \"einfach\",\n  \"einfachen\": \"einfach\",\n  \"einfacher\": \"einfach\",\n  \"einfaches\": \"einfach\",\n  \"einfachheit\": \"einfach\",\n  \"einfachste\": \"einfach\",\n  \"einfachsten\": \"einfach\",\n  \"einfahrt\": \"einfahrt\",\n  \"einfall\": \"einfall\",\n  \"einfälle\": \"einfall\",\n  \"einfallen\": \"einfall\",\n  \"einfällt\": \"einfallt\",\n  \"einfalt\": \"einfalt\",\n  \"einfältig\": \"einfalt\",\n  \"einfältige\": \"einfalt\",\n  \"einfältigem\": \"einfalt\",\n  \"einfältigen\": \"einfalt\",\n  \"einfältiger\": \"einfalt\",\n  \"einfältiges\": \"einfalt\",\n  \"einfand\": \"einfand\",\n  \"einfanden\": \"einfand\",\n  \"einfange\": \"einfang\",\n  \"einfangen\": \"einfang\",\n  \"einfasste\": \"einfasst\",\n  \"einfenstrige\": \"einfenstr\",\n  \"einfenstriges\": \"einfenstr\",\n  \"einfiel\": \"einfiel\",\n  \"einfinden\": \"einfind\",\n  \"einfindet\": \"einfindet\",\n  \"einfliesse\": \"einfliess\",\n  \"einfließe\": \"einfliess\",\n  \"einfliessen\": \"einfliess\",\n  \"einfließen\": \"einfliess\",\n  \"einfliessende\": \"einfliess\",\n  \"einfließende\": \"einfliess\",\n  \"einfliessenden\": \"einfliess\",\n  \"einfließenden\": \"einfliess\",\n  \"einfliessendes\": \"einfliess\",\n  \"einfließendes\": \"einfliess\",\n  \"einfliesst\": \"einfliesst\",\n  \"einfließt\": \"einfliesst\",\n  \"einfloss\": \"einfloss\",\n  \"einfloß\": \"einfloss\",\n  \"einflösse\": \"einfloss\",\n  \"einflöße\": \"einfloss\",\n  \"einflössen\": \"einfloss\",\n  \"einflößen\": \"einfloss\",\n  \"einflösst\": \"einflosst\",\n  \"einflößt\": \"einflosst\",\n  \"einflössten\": \"einflosst\",\n  \"einflößten\": \"einflosst\",\n  \"einflössung\": \"einfloss\",\n  \"einflößung\": \"einfloss\",\n  \"einfluss\": \"einfluss\",\n  \"einfluß\": \"einfluss\",\n  \"einflusse\": \"einfluss\",\n  \"einflüsse\": \"einfluss\",\n  \"einflusses\": \"einfluss\",\n  \"einflussreiche\": \"einflussreich\",\n  \"einflußreiche\": \"einflussreich\",\n  \"einflussreichen\": \"einflussreich\",\n  \"einflußreichen\": \"einflussreich\",\n  \"einflüstern\": \"einflust\",\n  \"einförmig\": \"einform\",\n  \"einförmige\": \"einform\",\n  \"einfühlungsvermögen\": \"einfuhlungsvermog\",\n  \"einfuhr\": \"einfuhr\",\n  \"einführen\": \"einfuhr\",\n  \"einführung\": \"einfuhr\",\n  \"eingab\": \"eingab\",\n  \"eingabe\": \"eingab\",\n  \"eingaben\": \"eingab\",\n  \"eingang\": \"eingang\",\n  \"eingange\": \"eingang\",\n  \"eingänge\": \"eingang\",\n  \"eingangen\": \"eingang\",\n  \"eingängen\": \"eingang\",\n  \"eingangstor\": \"eingangstor\",\n  \"eingangstür\": \"eingangstur\",\n  \"eingeäscherten\": \"eingeaschert\",\n  \"eingebildet\": \"eingebildet\",\n  \"eingebildete\": \"eingebildet\",\n  \"eingebildeten\": \"eingebildet\",\n  \"eingebildetes\": \"eingebildet\",\n  \"eingeblasen\": \"eingeblas\",\n  \"eingebogen\": \"eingebog\",\n  \"eingeborene\": \"eingebor\",\n  \"eingeborenen\": \"eingebor\",\n  \"eingebracht\": \"eingebracht\",\n  \"eingebunden\": \"eingebund\",\n  \"eingebung\": \"eingeb\",\n  \"eingebüsst\": \"eingebusst\",\n  \"eingedämmt\": \"eingedammt\",\n  \"eingedenk\": \"eingedenk\",\n  \"eingedrückten\": \"eingedruckt\",\n  \"eingefahren\": \"eingefahr\",\n  \"eingefallen\": \"eingefall\",\n  \"eingefasst\": \"eingefasst\",\n  \"eingefaßt\": \"eingefasst\",\n  \"eingefleischten\": \"eingefleischt\",\n  \"eingeflochten\": \"eingeflocht\",\n  \"eingeflösst\": \"eingeflosst\",\n  \"eingeflößt\": \"eingeflosst\",\n  \"eingeflösste\": \"eingeflosst\",\n  \"eingeflößte\": \"eingeflosst\",\n  \"eingeflösstes\": \"eingeflosst\",\n  \"eingeflößtes\": \"eingeflosst\",\n  \"eingefügt\": \"eingefugt\",\n  \"eingeführt\": \"eingefuhrt\",\n  \"eingefunden\": \"eingefund\",\n  \"eingegangen\": \"eingegang\",\n  \"eingegangenen\": \"eingegang\",\n  \"eingegeben\": \"eingegeb\",\n  \"eingegebnen\": \"eingegebn\",\n  \"eingegitterten\": \"eingegittert\",\n  \"eingegraben\": \"eingegrab\",\n  \"eingehandelt\": \"eingehandelt\",\n  \"eingehängt\": \"eingehangt\",\n  \"eingehaucht\": \"eingehaucht\",\n  \"eingehen\": \"eingeh\",\n  \"eingehenden\": \"eingeh\",\n  \"eingehet\": \"eingehet\",\n  \"eingeholt\": \"eingeholt\",\n  \"eingeht\": \"eingeht\",\n  \"eingehüllt\": \"eingehullt\",\n  \"eingekauft\": \"eingekauft\",\n  \"eingeklebt\": \"eingeklebt\",\n  \"eingekleidet\": \"eingekleidet\",\n  \"eingeklemmt\": \"eingeklemmt\",\n  \"eingekniffenem\": \"eingekniff\",\n  \"eingeladen\": \"eingelad\",\n  \"eingelassen\": \"eingelass\",\n  \"eingelassenen\": \"eingelass\",\n  \"eingelassenwerden\": \"eingelassenwerd\",\n  \"eingelegt\": \"eingelegt\",\n  \"eingelegte\": \"eingelegt\",\n  \"eingeleitet\": \"eingeleitet\",\n  \"eingeleitete\": \"eingeleitet\",\n  \"eingemachte\": \"eingemacht\",\n  \"eingemengt\": \"eingemengt\",\n  \"eingemischt\": \"eingemischt\",\n  \"eingenommen\": \"eingenomm\",\n  \"eingenommenen\": \"eingenomm\",\n  \"eingepackt\": \"eingepackt\",\n  \"eingepackten\": \"eingepackt\",\n  \"eingepferchte\": \"eingepfercht\",\n  \"eingepflanzt\": \"eingepflanzt\",\n  \"eingepflanzte\": \"eingepflanzt\",\n  \"eingepflanzten\": \"eingepflanzt\",\n  \"eingepflanztes\": \"eingepflanzt\",\n  \"eingepfropfte\": \"eingepfropft\",\n  \"eingeprägt\": \"eingepragt\",\n  \"eingeräumt\": \"eingeraumt\",\n  \"eingeräumte\": \"eingeraumt\",\n  \"eingeredet\": \"eingeredet\",\n  \"eingeredeten\": \"eingeredet\",\n  \"eingereiht\": \"eingereiht\",\n  \"eingerichtet\": \"eingerichtet\",\n  \"eingerichteten\": \"eingerichtet\",\n  \"eingerichtetes\": \"eingerichtet\",\n  \"eingerissenes\": \"eingeriss\",\n  \"eingesät\": \"eingesat\",\n  \"eingeschenkten\": \"eingeschenkt\",\n  \"eingeschlafen\": \"eingeschlaf\",\n  \"eingeschlagen\": \"eingeschlag\",\n  \"eingeschlagenen\": \"eingeschlag\",\n  \"eingeschlossen\": \"eingeschloss\",\n  \"eingeschlossene\": \"eingeschloss\",\n  \"eingeschlossenen\": \"eingeschloss\",\n  \"eingeschmiert\": \"eingeschmiert\",\n  \"eingeschossen\": \"eingeschoss\",\n  \"eingeschränkt\": \"eingeschrankt\",\n  \"eingeschränkten\": \"eingeschrankt\",\n  \"eingeschrieben\": \"eingeschrieb\",\n  \"eingeschriebene\": \"eingeschrieb\",\n  \"eingeschüchterten\": \"eingeschuchtert\",\n  \"eingeschult\": \"eingeschult\",\n  \"eingesehen\": \"eingeseh\",\n  \"eingesetzt\": \"eingesetzt\",\n  \"eingesperrt\": \"eingesperrt\",\n  \"eingeständlich\": \"eingestand\",\n  \"eingestehe\": \"eingesteh\",\n  \"eingestehen\": \"eingesteh\",\n  \"eingestellt\": \"eingestellt\",\n  \"eingestreut\": \"eingestreut\",\n  \"eingetan\": \"eingetan\",\n  \"eingeteilt\": \"eingeteilt\",\n  \"eingetragen\": \"eingetrag\",\n  \"eingetreten\": \"eingetret\",\n  \"eingetrieben\": \"eingetrieb\",\n  \"eingetrockneten\": \"eingetrocknet\",\n  \"eingetroffen\": \"eingetroff\",\n  \"eingetürmt\": \"eingeturmt\",\n  \"eingeübt\": \"eingeubt\",\n  \"eingeübten\": \"eingeubt\",\n  \"eingeweide\": \"eingeweid\",\n  \"eingeweiden\": \"eingeweid\",\n  \"eingeweiht\": \"eingeweiht\",\n  \"eingeweihten\": \"eingeweiht\",\n  \"eingewickelte\": \"eingewickelt\",\n  \"eingewirkt\": \"eingewirkt\",\n  \"eingewobene\": \"eingewob\",\n  \"eingeworfene\": \"eingeworf\",\n  \"eingewurzelt\": \"eingewurzelt\",\n  \"eingewurzelte\": \"eingewurzelt\",\n  \"eingezogen\": \"eingezog\",\n  \"eingezogenheit\": \"eingezog\",\n  \"eingezwängt\": \"eingezwangt\",\n  \"eingiessen\": \"eingiess\",\n  \"eingießen\": \"eingiess\",\n  \"eingingen\": \"einging\",\n  \"eingoss\": \"eingoss\",\n  \"eingoß\": \"eingoss\",\n  \"eingossen\": \"eingoss\",\n  \"eingraben\": \"eingrab\",\n  \"eingreifen\": \"eingreif\",\n  \"eingreifens\": \"eingreif\",\n  \"eingriff\": \"eingriff\",\n  \"eingschlafen\": \"eingschlaf\",\n  \"eingsperrt\": \"eingsperrt\",\n  \"eingstanden\": \"eingstand\",\n  \"einhängen\": \"einhang\",\n  \"einhauchen\": \"einhauch\",\n  \"einheimische\": \"einheim\",\n  \"einheimsen\": \"einheims\",\n  \"einheit\": \"einheit\",\n  \"einheiten\": \"einheit\",\n  \"einheitenkillenden\": \"einheitenkill\",\n  \"einhellig\": \"einhell\",\n  \"einher\": \"einh\",\n  \"einherfährt\": \"einherfahrt\",\n  \"einhergejagt\": \"einhergejagt\",\n  \"einherging\": \"einherging\",\n  \"einherkrabbelte\": \"einherkrabbelt\",\n  \"einherliefen\": \"einherlief\",\n  \"einherschritt\": \"einherschritt\",\n  \"einherspringen\": \"einherspring\",\n  \"einhertanzten\": \"einhertanzt\",\n  \"einholen\": \"einhol\",\n  \"einhorn\": \"einhorn\",\n  \"einhundertvierunddreißigmal\": \"einhundertvierunddreissigmal\",\n  \"einhundertzwanzig\": \"einhundertzwanz\",\n  \"eini\": \"eini\",\n  \"einifoahrn\": \"einifoahrn\",\n  \"einig\": \"einig\",\n  \"einige\": \"einig\",\n  \"einigem\": \"einig\",\n  \"einigemal\": \"einigemal\",\n  \"einigen\": \"einig\",\n  \"einiger\": \"einig\",\n  \"einigermassen\": \"einigermass\",\n  \"einigermaßen\": \"einigermass\",\n  \"einiges\": \"einig\",\n  \"einigkeit\": \"einig\",\n  \"einigsprungen\": \"einigspr\",\n  \"einigten\": \"einigt\",\n  \"einikommt\": \"einikommt\",\n  \"einischütten\": \"einischutt\",\n  \"einispringen\": \"einispring\",\n  \"einjagt\": \"einjagt\",\n  \"einjährige\": \"einjahr\",\n  \"einkassierte\": \"einkassiert\",\n  \"einkauf\": \"einkauf\",\n  \"einkäufe\": \"einkauf\",\n  \"einkaufen\": \"einkauf\",\n  \"einkaufszentrum\": \"einkaufszentrum\",\n  \"einkaufszentrumdie\": \"einkaufszentrumdi\",\n  \"einkehr\": \"einkehr\",\n  \"einkehren\": \"einkehr\",\n  \"einkleben\": \"einkleb\",\n  \"einkommen\": \"einkomm\",\n  \"einkommens\": \"einkomm\",\n  \"einkommensunterschiede\": \"einkommensunterschied\",\n  \"einkrümmung\": \"einkrumm\",\n  \"einkünfte\": \"einkunft\",\n  \"einladend\": \"einlad\",\n  \"einladung\": \"einlad\",\n  \"einlassen\": \"einlass\",\n  \"einlässt\": \"einlasst\",\n  \"einläßt\": \"einlasst\",\n  \"einlaufen\": \"einlauf\",\n  \"einlegte\": \"einlegt\",\n  \"einleitenden\": \"einleit\",\n  \"einleitendes\": \"einleit\",\n  \"einleitung\": \"einleit\",\n  \"einlenkte\": \"einlenkt\",\n  \"einleuchten\": \"einleucht\",\n  \"einleuchtend\": \"einleucht\",\n  \"einlud\": \"einlud\",\n  \"einluden\": \"einlud\",\n  \"einmal\": \"einmal\",\n  \"einmalige\": \"einmal\",\n  \"einmaliger\": \"einmal\",\n  \"einmengende\": \"einmeng\",\n  \"einmischt\": \"einmischt\",\n  \"einmischte\": \"einmischt\",\n  \"einnahm\": \"einnahm\",\n  \"einnahmen\": \"einnahm\",\n  \"einnahmenüberschuss\": \"einnahmenuberschuss\",\n  \"einnehme\": \"einnehm\",\n  \"einnehmen\": \"einnehm\",\n  \"einnimmt\": \"einnimmt\",\n  \"einöde\": \"einod\",\n  \"einöden\": \"einod\",\n  \"einpersonenhaushalte\": \"einpersonenhaushalt\",\n  \"einpflanzt\": \"einpflanzt\",\n  \"einpflanzte\": \"einpflanzt\",\n  \"einpflanzung\": \"einpflanz\",\n  \"einpfropfung\": \"einpfropf\",\n  \"einprägte\": \"einpragt\",\n  \"einprägten\": \"einpragt\",\n  \"einquartierungen\": \"einquartier\",\n  \"einräumen\": \"einraum\",\n  \"einräumte\": \"einraumt\",\n  \"einreden\": \"einred\",\n  \"einredet\": \"einredet\",\n  \"einreissen\": \"einreiss\",\n  \"einreisst\": \"einreisst\",\n  \"einrichten\": \"einricht\",\n  \"einrichtet\": \"einrichtet\",\n  \"einrichtung\": \"einricht\",\n  \"einrichtungen\": \"einricht\",\n  \"einrichtungsfanatikern\": \"einrichtungsfanat\",\n  \"einrückte\": \"einruckt\",\n  \"eins\": \"ein\",\n  \"einsah\": \"einsah\",\n  \"einsähe\": \"einsah\",\n  \"einsam\": \"einsam\",\n  \"einsame\": \"einsam\",\n  \"einsamen\": \"einsam\",\n  \"einsames\": \"einsam\",\n  \"einsamkeit\": \"einsam\",\n  \"einsamkeiten\": \"einsam\",\n  \"einsammeln\": \"einsammeln\",\n  \"einsamsten\": \"einsam\",\n  \"einsatz\": \"einsatz\",\n  \"einsatze\": \"einsatz\",\n  \"einsaugt\": \"einsaugt\",\n  \"einschätzung\": \"einschatz\",\n  \"einschenken\": \"einschenk\",\n  \"einschlafen\": \"einschlaf\",\n  \"einschläft\": \"einschlaft\",\n  \"einschlagen\": \"einschlag\",\n  \"einschleichen\": \"einschleich\",\n  \"einschlief\": \"einschlief\",\n  \"einschliefen\": \"einschlief\",\n  \"einschliessen\": \"einschliess\",\n  \"einschließen\": \"einschliess\",\n  \"einschliesst\": \"einschliesst\",\n  \"einschließt\": \"einschliesst\",\n  \"einschlossen\": \"einschloss\",\n  \"einschlug\": \"einschlug\",\n  \"einschmeichelnd\": \"einschmeichelnd\",\n  \"einschmeichelndsten\": \"einschmeichelnd\",\n  \"einschmuggelten\": \"einschmuggelt\",\n  \"einschränke\": \"einschrank\",\n  \"einschränken\": \"einschrank\",\n  \"einschränkende\": \"einschrank\",\n  \"einschränkenden\": \"einschrank\",\n  \"einschränkt\": \"einschrankt\",\n  \"einschränkung\": \"einschrank\",\n  \"einschränkungen\": \"einschrank\",\n  \"einschreiten\": \"einschreit\",\n  \"einsehen\": \"einseh\",\n  \"einseht\": \"einseht\",\n  \"einseitige\": \"einseit\",\n  \"einsetzen\": \"einsetz\",\n  \"einsetzte\": \"einsetzt\",\n  \"einsetzung\": \"einsetz\",\n  \"einsicht\": \"einsicht\",\n  \"einsichten\": \"einsicht\",\n  \"einsichtsfähigkeit\": \"einsichtsfah\",\n  \"einsichtsvoll\": \"einsichtsvoll\",\n  \"einsichtsvolle\": \"einsichtsvoll\",\n  \"einsichtsvollen\": \"einsichtsvoll\",\n  \"einsichtsvolleren\": \"einsichtsvoll\",\n  \"einsiedler\": \"einsiedl\",\n  \"einsieht\": \"einsieht\",\n  \"einsilbig\": \"einsilb\",\n  \"einsilbigen\": \"einsilb\",\n  \"einsilbiger\": \"einsilb\",\n  \"einsilbiges\": \"einsilb\",\n  \"einsinkt\": \"einsinkt\",\n  \"einsmals\": \"einsmal\",\n  \"einsogen\": \"einsog\",\n  \"einspänner\": \"einspann\",\n  \"einsperrte\": \"einsperrt\",\n  \"einsprache\": \"einsprach\",\n  \"einsprechen\": \"einsprech\",\n  \"einst\": \"einst\",\n  \"einsteckte\": \"einsteckt\",\n  \"einstellen\": \"einstell\",\n  \"einstellt\": \"einstellt\",\n  \"einstiges\": \"einstig\",\n  \"einstimmen\": \"einstimm\",\n  \"einstimmig\": \"einstimm\",\n  \"einstimmige\": \"einstimm\",\n  \"einstimmung\": \"einstimm\",\n  \"einstudierten\": \"einstudiert\",\n  \"einstündige\": \"einstund\",\n  \"einstweilen\": \"einstweil\",\n  \"einstweilige\": \"einstweil\",\n  \"eintägigen\": \"eintag\",\n  \"eintauche\": \"eintauch\",\n  \"eintausend\": \"eintaus\",\n  \"einteilen\": \"einteil\",\n  \"einteilenden\": \"einteil\",\n  \"einteilung\": \"einteil\",\n  \"eintönig\": \"einton\",\n  \"eintönigen\": \"einton\",\n  \"eintöniger\": \"einton\",\n  \"eintraccht\": \"eintraccht\",\n  \"eintracht\": \"eintracht\",\n  \"einträchtig\": \"eintracht\",\n  \"einträchtiger\": \"eintracht\",\n  \"eintrafen\": \"eintraf\",\n  \"eintrag\": \"eintrag\",\n  \"eintragt\": \"eintragt\",\n  \"eintrat\": \"eintrat\",\n  \"eintraten\": \"eintrat\",\n  \"eintreffen\": \"eintreff\",\n  \"eintreiben\": \"eintreib\",\n  \"eintrete\": \"eintret\",\n  \"eintreten\": \"eintret\",\n  \"eintretende\": \"eintret\",\n  \"eintretenden\": \"eintret\",\n  \"eintretens\": \"eintret\",\n  \"eintrieb\": \"eintrieb\",\n  \"eintrieben\": \"eintrieb\",\n  \"eintrinken\": \"eintrink\",\n  \"eintritt\": \"eintritt\",\n  \"eintritte\": \"eintritt\",\n  \"eintrittskarte\": \"eintrittskart\",\n  \"einunddreissigsten\": \"einunddreiss\",\n  \"einunddreißigsten\": \"einunddreiss\",\n  \"einundsechzigjährige\": \"einundsechzigjahr\",\n  \"einverleibt\": \"einverleibt\",\n  \"einvernahme\": \"einvernahm\",\n  \"einvernahmen\": \"einvernahm\",\n  \"einverstanden\": \"einverstand\",\n  \"einverständnis\": \"einverstandnis\",\n  \"einwand\": \"einwand\",\n  \"einwände\": \"einwand\",\n  \"einwanderer\": \"einwand\",\n  \"einwanderungsland\": \"einwanderungsland\",\n  \"einwandfrei\": \"einwandfrei\",\n  \"einwandfreien\": \"einwandfrei\",\n  \"einwärts\": \"einwart\",\n  \"einweihen\": \"einweih\",\n  \"einweihung\": \"einweih\",\n  \"einweihungen\": \"einweih\",\n  \"einwende\": \"einwend\",\n  \"einwendung\": \"einwend\",\n  \"einwendungen\": \"einwend\",\n  \"einwickelpapier\": \"einwickelpapi\",\n  \"einwilligung\": \"einwill\",\n  \"einwirken\": \"einwirk\",\n  \"einwirkt\": \"einwirkt\",\n  \"einwirkte\": \"einwirkt\",\n  \"einwirkung\": \"einwirk\",\n  \"einwohner\": \"einwohn\",\n  \"einwohnerin\": \"einwohnerin\",\n  \"einwürfe\": \"einwurf\",\n  \"einwurzelt\": \"einwurzelt\",\n  \"einzahl\": \"einzahl\",\n  \"einzahlen\": \"einzahl\",\n  \"einzelfragen\": \"einzelfrag\",\n  \"einzelheit\": \"einzel\",\n  \"einzelheiten\": \"einzel\",\n  \"einzeln\": \"einzeln\",\n  \"einzelne\": \"einzeln\",\n  \"einzelnen\": \"einzeln\",\n  \"einzelner\": \"einzeln\",\n  \"einzelnes\": \"einzeln\",\n  \"einzelnheiten\": \"einzeln\",\n  \"einzelnste\": \"einzeln\",\n  \"einzelnsten\": \"einzeln\",\n  \"einziehen\": \"einzieh\",\n  \"einzig\": \"einzig\",\n  \"einzige\": \"einzig\",\n  \"einzigem\": \"einzig\",\n  \"einzigen\": \"einzig\",\n  \"einziger\": \"einzig\",\n  \"einziges\": \"einzig\",\n  \"einzog\": \"einzog\",\n  \"einzubalsamieren\": \"einzubalsami\",\n  \"einzubilden\": \"einzubild\",\n  \"einzubohren\": \"einzubohr\",\n  \"einzubürgern\": \"einzuburg\",\n  \"einzudringen\": \"einzudring\",\n  \"einzufinden\": \"einzufind\",\n  \"einzuflössen\": \"einzufloss\",\n  \"einzuflößen\": \"einzufloss\",\n  \"einzuführen\": \"einzufuhr\",\n  \"einzug\": \"einzug\",\n  \"einzugehen\": \"einzugeh\",\n  \"einzugehn\": \"einzugehn\",\n  \"einzuges\": \"einzug\",\n  \"einzugestehen\": \"einzugesteh\",\n  \"einzugreifen\": \"einzugreif\",\n  \"einzuhängen\": \"einzuhang\",\n  \"einzuholen\": \"einzuhol\",\n  \"einzuknöpfen\": \"einzuknopf\",\n  \"einzulassen\": \"einzulass\",\n  \"einzuräumen\": \"einzuraum\",\n  \"einzureichen\": \"einzureich\",\n  \"einzureiten\": \"einzureit\",\n  \"einzuschlagen\": \"einzuschlag\",\n  \"einzuschüchtern\": \"einzuschucht\",\n  \"einzusehen\": \"einzuseh\",\n  \"einzusperren\": \"einzusperr\",\n  \"einzustehen\": \"einzusteh\",\n  \"einzutreffen\": \"einzutreff\",\n  \"einzutreten\": \"einzutret\",\n  \"einzuwenden\": \"einzuw\",\n  \"einzuwerfen\": \"einzuwerf\",\n  \"einzuwirken\": \"einzuwirk\",\n  \"einzuwühlen\": \"einzuwuhl\",\n  \"einzuziehen\": \"einzuzieh\",\n  \"eis\": \"eis\",\n  \"eisbärenmässig\": \"eisbarenmass\",\n  \"eisblumensträusschen\": \"eisblumenstraussch\",\n  \"eisekalt\": \"eisekalt\",\n  \"eisen\": \"eis\",\n  \"eisenbahn\": \"eisenbahn\",\n  \"eisenbahnkönige\": \"eisenbahnkon\",\n  \"eisengeschienten\": \"eisengeschient\",\n  \"eisenhaken\": \"eisenhak\",\n  \"eisenhut\": \"eisenhut\",\n  \"eisenketten\": \"eisenkett\",\n  \"eisenkörben\": \"eisenkorb\",\n  \"eisens\": \"eis\",\n  \"eisenschimmel\": \"eisenschimmel\",\n  \"eisenstange\": \"eisenstang\",\n  \"eisenwerk\": \"eisenwerk\",\n  \"eiserne\": \"eisern\",\n  \"eiserner\": \"eisern\",\n  \"eisgeschwister\": \"eisgeschwist\",\n  \"eisgeschwistern\": \"eisgeschwist\",\n  \"eisgraue\": \"eisgrau\",\n  \"eisgrauer\": \"eisgrau\",\n  \"eisig\": \"eisig\",\n  \"eiskalten\": \"eiskalt\",\n  \"eiskalter\": \"eiskalt\",\n  \"eiskristallen\": \"eiskristall\",\n  \"eismax\": \"eismax\",\n  \"eisschloss\": \"eisschloss\",\n  \"eitel\": \"eitel\",\n  \"eitelkeit\": \"eitel\",\n  \"eitelkeiten\": \"eitel\",\n  \"eiteln\": \"eiteln\",\n  \"eitle\": \"eitl\",\n  \"eitlen\": \"eitl\",\n  \"eitler\": \"eitl\",\n  \"eitles\": \"eitl\",\n  \"eitrig\": \"eitrig\",\n  \"ekd\": \"ekd\",\n  \"ekelhafter\": \"ekelhaft\",\n  \"ekeln\": \"ekeln\",\n  \"ekels\": \"ekel\",\n  \"ekelte\": \"ekelt\",\n  \"ekkehard\": \"ekkehard\",\n  \"elastisch\": \"elast\",\n  \"elastisches\": \"elast\",\n  \"elater\": \"elat\",\n  \"eleasar\": \"eleasar\",\n  \"elefant\": \"elefant\",\n  \"elefanten\": \"elefant\",\n  \"elefantenzähnen\": \"elefantenzahn\",\n  \"elegant\": \"elegant\",\n  \"elegante\": \"elegant\",\n  \"elegantem\": \"elegant\",\n  \"eleganten\": \"elegant\",\n  \"elektrische\": \"elektr\",\n  \"elektrischen\": \"elektr\",\n  \"elektrizität\": \"elektrizitat\",\n  \"element\": \"element\",\n  \"elementarbegriffe\": \"elementarbegriff\",\n  \"elementare\": \"elementar\",\n  \"elementarfeuer\": \"elementarfeu\",\n  \"elementarlehre\": \"elementarlehr\",\n  \"elemente\": \"element\",\n  \"elements\": \"element\",\n  \"elenchis\": \"elenchis\",\n  \"elend\": \"elend\",\n  \"elende\": \"elend\",\n  \"elenden\": \"elend\",\n  \"elender\": \"elend\",\n  \"elenderfüllten\": \"elenderfullt\",\n  \"elendern\": \"elend\",\n  \"elendes\": \"elend\",\n  \"elendiglich\": \"elendig\",\n  \"elends\": \"elend\",\n  \"elf\": \"elf\",\n  \"elfenbein\": \"elfenbein\",\n  \"elfenbeinfarbenen\": \"elfenbeinfarb\",\n  \"elfjährigen\": \"elfjahr\",\n  \"elften\": \"elft\",\n  \"elias\": \"elias\",\n  \"elisa\": \"elisa\",\n  \"elisabeth\": \"elisabeth\",\n  \"elisabethen\": \"elisabeth\",\n  \"elisabethenkrankenhaus\": \"elisabethenkrankenhaus\",\n  \"eliseba\": \"eliseba\",\n  \"elkanah\": \"elkanah\",\n  \"ellbög\": \"ellbog\",\n  \"ellbogen\": \"ellbog\",\n  \"elle\": \"ell\",\n  \"ellen\": \"ell\",\n  \"ellenbogen\": \"ellenbog\",\n  \"elmsfeuerchen\": \"elmsfeuerch\",\n  \"elohim\": \"elohim\",\n  \"eltern\": \"elt\",\n  \"elternhauses\": \"elternhaus\",\n  \"elternpaar\": \"elternpaar\",\n  \"elzaphan\": \"elzaphan\",\n  \"emanuel\": \"emanuel\",\n  \"emanuela\": \"emanuela\",\n  \"emes\": \"emes\",\n  \"emigranten\": \"emigrant\",\n  \"emigrierten\": \"emigriert\",\n  \"emim\": \"emim\",\n  \"emin\": \"emin\",\n  \"eminenten\": \"eminent\",\n  \"eminonü\": \"eminonu\",\n  \"emmeline\": \"emmelin\",\n  \"empfahl\": \"empfahl\",\n  \"empfand\": \"empfand\",\n  \"empfanden\": \"empfand\",\n  \"empfänden\": \"empfand\",\n  \"empfang\": \"empfang\",\n  \"empfangen\": \"empfang\",\n  \"empfangene\": \"empfang\",\n  \"empfangenen\": \"empfang\",\n  \"empfänglichkeit\": \"empfang\",\n  \"empfängnis\": \"empfangnis\",\n  \"empfängnisse\": \"empfangnis\",\n  \"empfangszimmer\": \"empfangszimm\",\n  \"empfängt\": \"empfangt\",\n  \"empfehlen\": \"empfehl\",\n  \"empfehlende\": \"empfehl\",\n  \"empfehlung\": \"empfehl\",\n  \"empfiehlt\": \"empfiehlt\",\n  \"empfinde\": \"empfind\",\n  \"empfinden\": \"empfind\",\n  \"empfindenden\": \"empfind\",\n  \"empfindet\": \"empfindet\",\n  \"empfindlich\": \"empfind\",\n  \"empfindliches\": \"empfind\",\n  \"empfindsamen\": \"empfindsam\",\n  \"empfindsamkeit\": \"empfindsam\",\n  \"empfindung\": \"empfind\",\n  \"empfindungen\": \"empfind\",\n  \"empfindungszustand\": \"empfindungszustand\",\n  \"empfing\": \"empfing\",\n  \"empfingen\": \"empfing\",\n  \"empfmg\": \"empfmg\",\n  \"empfohlen\": \"empfohl\",\n  \"empfunden\": \"empfund\",\n  \"emphatisch\": \"emphat\",\n  \"empirisch\": \"empir\",\n  \"empirische\": \"empir\",\n  \"empirischen\": \"empir\",\n  \"empirischer\": \"empir\",\n  \"empirisches\": \"empir\",\n  \"empirismus\": \"empirismus\",\n  \"empor\": \"empor\",\n  \"empörend\": \"empor\",\n  \"empörender\": \"empor\",\n  \"emporgehoben\": \"emporgehob\",\n  \"emporgeschossene\": \"emporgeschoss\",\n  \"emporgestiegen\": \"emporgestieg\",\n  \"emporhebt\": \"emporhebt\",\n  \"emporhob\": \"emporhob\",\n  \"emporkommen\": \"emporkomm\",\n  \"emporkömmlinge\": \"emporkommling\",\n  \"emporragte\": \"emporragt\",\n  \"emporragten\": \"emporragt\",\n  \"emporschwangen\": \"emporschwang\",\n  \"emporschwimmt\": \"emporschwimmt\",\n  \"emporstarren\": \"emporstarr\",\n  \"empört\": \"emport\",\n  \"emportauchen\": \"emportauch\",\n  \"empörter\": \"emport\",\n  \"emportürmte\": \"emporturmt\",\n  \"emporzuheben\": \"emporzuheb\",\n  \"emporzutragen\": \"emporzutrag\",\n  \"emsig\": \"emsig\",\n  \"emsigkeit\": \"emsig\",\n  \"emsigsten\": \"emsig\",\n  \"en\": \"en\",\n  \"enakim\": \"enakim\",\n  \"enaks\": \"enak\",\n  \"end\": \"end\",\n  \"endchen\": \"endch\",\n  \"ende\": \"end\",\n  \"enden\": \"end\",\n  \"endete\": \"endet\",\n  \"endgültig\": \"endgult\",\n  \"endgültige\": \"endgult\",\n  \"endgültigen\": \"endgult\",\n  \"endigen\": \"endig\",\n  \"endigt\": \"endigt\",\n  \"endigte\": \"endigt\",\n  \"endlich\": \"endlich\",\n  \"endliche\": \"endlich\",\n  \"endlichen\": \"endlich\",\n  \"endlicher\": \"endlich\",\n  \"endliches\": \"endlich\",\n  \"endlichkeit\": \"endlich\",\n  \"endlos\": \"endlos\",\n  \"endlosen\": \"endlos\",\n  \"endoxa\": \"endoxa\",\n  \"endpunkt\": \"endpunkt\",\n  \"endpunkte\": \"endpunkt\",\n  \"endstücke\": \"endstuck\",\n  \"endzweck\": \"endzweck\",\n  \"enen\": \"enen\",\n  \"energie\": \"energi\",\n  \"energisch\": \"energ\",\n  \"energischer\": \"energ\",\n  \"energisches\": \"energ\",\n  \"eng\": \"eng\",\n  \"engadiner\": \"engadin\",\n  \"engagement\": \"engagement\",\n  \"engagieren\": \"engagi\",\n  \"engagiert\": \"engagiert\",\n  \"engagierte\": \"engagiert\",\n  \"engagierter\": \"engagiert\",\n  \"enge\": \"eng\",\n  \"engedi\": \"engedi\",\n  \"engel\": \"engel\",\n  \"engelartig\": \"engelart\",\n  \"engelchören\": \"engelchor\",\n  \"engelgeister\": \"engelgeist\",\n  \"engelgeistes\": \"engelgeist\",\n  \"engelische\": \"engel\",\n  \"engelischen\": \"engel\",\n  \"engelland\": \"engelland\",\n  \"engeln\": \"engeln\",\n  \"engels\": \"engel\",\n  \"engelscharen\": \"engelschar\",\n  \"engelsgeistern\": \"engelsgeist\",\n  \"engelshimmel\": \"engelshimmel\",\n  \"engelsrede\": \"engelsred\",\n  \"engelstimmchen\": \"engelstimmch\",\n  \"engelswesen\": \"engelswes\",\n  \"engen\": \"eng\",\n  \"enger\": \"eng\",\n  \"engere\": \"eng\",\n  \"engeren\": \"eng\",\n  \"engerer\": \"eng\",\n  \"england\": \"england\",\n  \"engländer\": \"england\",\n  \"engländern\": \"england\",\n  \"englisch\": \"englisch\",\n  \"englische\": \"englisch\",\n  \"englischen\": \"englisch\",\n  \"englischer\": \"englisch\",\n  \"englisches\": \"englisch\",\n  \"englischlehrerin\": \"englischlehrerin\",\n  \"englischsprachige\": \"englischsprach\",\n  \"englischsprachigen\": \"englischsprach\",\n  \"english\": \"english\",\n  \"engschlucht\": \"engschlucht\",\n  \"engste\": \"engst\",\n  \"engsten\": \"engst\",\n  \"engtälern\": \"engtal\",\n  \"enim\": \"enim\",\n  \"enk\": \"enk\",\n  \"enkel\": \"enkel\",\n  \"enkelin\": \"enkelin\",\n  \"enosch\": \"enosch\",\n  \"enoschs\": \"enosch\",\n  \"ent\": \"ent\",\n  \"entartung\": \"entart\",\n  \"entbehren\": \"entbehr\",\n  \"entbehrlich\": \"entbehr\",\n  \"entbehrt\": \"entbehrt\",\n  \"entbehrte\": \"entbehrt\",\n  \"entbehrung\": \"entbehr\",\n  \"entblösst\": \"entblosst\",\n  \"entblößt\": \"entblosst\",\n  \"entbrannt\": \"entbrannt\",\n  \"entbrannte\": \"entbrannt\",\n  \"entbrannten\": \"entbrannt\",\n  \"entbrennen\": \"entbrenn\",\n  \"entdecken\": \"entdeck\",\n  \"entdecker\": \"entdeck\",\n  \"entdeckt\": \"entdeckt\",\n  \"entdeckte\": \"entdeckt\",\n  \"entdeckten\": \"entdeckt\",\n  \"entdeckung\": \"entdeck\",\n  \"entehrt\": \"entehrt\",\n  \"enten\": \"ent\",\n  \"entenadler\": \"entenadl\",\n  \"entenfüssen\": \"entenfuss\",\n  \"enterben\": \"enterb\",\n  \"entfallen\": \"entfall\",\n  \"entfalten\": \"entfalt\",\n  \"entfaltet\": \"entfaltet\",\n  \"entfaltete\": \"entfaltet\",\n  \"entfärbt\": \"entfarbt\",\n  \"entferne\": \"entfern\",\n  \"entfernen\": \"entfern\",\n  \"entfernet\": \"entfernet\",\n  \"entfernst\": \"entfern\",\n  \"entfernt\": \"entfernt\",\n  \"entfernte\": \"entfernt\",\n  \"entfernten\": \"entfernt\",\n  \"entfernter\": \"entfernt\",\n  \"entfernteres\": \"entfernt\",\n  \"entferntesten\": \"entfernt\",\n  \"entferntwerden\": \"entferntwerd\",\n  \"entfernung\": \"entfern\",\n  \"entfernungen\": \"entfern\",\n  \"entfessle\": \"entfessl\",\n  \"entfeßle\": \"entfessl\",\n  \"entflammen\": \"entflamm\",\n  \"entfliehen\": \"entflieh\",\n  \"entfloh\": \"entfloh\",\n  \"entflohen\": \"entfloh\",\n  \"entflohene\": \"entfloh\",\n  \"entflohenen\": \"entfloh\",\n  \"entfremdet\": \"entfremdet\",\n  \"entfremdete\": \"entfremdet\",\n  \"entfremdetem\": \"entfremdet\",\n  \"entfremdeten\": \"entfremdet\",\n  \"entfremdung\": \"entfremd\",\n  \"entführten\": \"entfuhrt\",\n  \"entgangen\": \"entgang\",\n  \"entgegen\": \"entgeg\",\n  \"entgegenarbeiten\": \"entgegenarbeit\",\n  \"entgegenbringen\": \"entgegenbring\",\n  \"entgegeneilen\": \"entgegeneil\",\n  \"entgegenflossen\": \"entgegenfloss\",\n  \"entgegengefahren\": \"entgegengefahr\",\n  \"entgegengehen\": \"entgegengeh\",\n  \"entgegengekehrt\": \"entgegengekehrt\",\n  \"entgegengesetzt\": \"entgegengesetzt\",\n  \"entgegengesetzte\": \"entgegengesetzt\",\n  \"entgegengesetzten\": \"entgegengesetzt\",\n  \"entgegengesetzter\": \"entgegengesetzt\",\n  \"entgegengesetztes\": \"entgegengesetzt\",\n  \"entgegengetreten\": \"entgegengetret\",\n  \"entgegenhandle\": \"entgegenhandl\",\n  \"entgegenhielt\": \"entgegenhielt\",\n  \"entgegenkam\": \"entgegenkam\",\n  \"entgegenkommen\": \"entgegenkomm\",\n  \"entgegenkommende\": \"entgegenkomm\",\n  \"entgegennehmen\": \"entgegennehm\",\n  \"entgegensetzen\": \"entgegensetz\",\n  \"entgegensetzt\": \"entgegensetzt\",\n  \"entgegensetzung\": \"entgegensetz\",\n  \"entgegenstehende\": \"entgegensteh\",\n  \"entgegensteht\": \"entgegensteht\",\n  \"entgegenstellen\": \"entgegenstell\",\n  \"entgegenstellte\": \"entgegenstellt\",\n  \"entgegenstreckte\": \"entgegenstreckt\",\n  \"entgegenstrich\": \"entgegenstrich\",\n  \"entgegentrat\": \"entgegentrat\",\n  \"entgegenwandernd\": \"entgegenwandernd\",\n  \"entgegenzusehen\": \"entgegenzuseh\",\n  \"entgegnete\": \"entgegnet\",\n  \"entgehe\": \"entgeh\",\n  \"entgehen\": \"entgeh\",\n  \"entgeht\": \"entgeht\",\n  \"entgeld\": \"entgeld\",\n  \"entging\": \"entging\",\n  \"entgleiten\": \"entgleit\",\n  \"enthält\": \"enthalt\",\n  \"enthalte\": \"enthalt\",\n  \"enthalten\": \"enthalt\",\n  \"enthaltende\": \"enthalt\",\n  \"enthaltenden\": \"enthalt\",\n  \"enthaltene\": \"enthalt\",\n  \"enthaltsam\": \"enthaltsam\",\n  \"enthaltsamkeit\": \"enthaltsam\",\n  \"entheiligt\": \"entheiligt\",\n  \"entheiligung\": \"entheil\",\n  \"entheiligungen\": \"entheil\",\n  \"enthielt\": \"enthielt\",\n  \"enthielte\": \"enthielt\",\n  \"enthielten\": \"enthielt\",\n  \"enthoben\": \"enthob\",\n  \"enthüllen\": \"enthull\",\n  \"enthüllt\": \"enthullt\",\n  \"enthusiasmus\": \"enthusiasmus\",\n  \"enthusiasten\": \"enthusiast\",\n  \"entkam\": \"entkam\",\n  \"entkleidet\": \"entkleidet\",\n  \"entkleidete\": \"entkleidet\",\n  \"entkleideten\": \"entkleidet\",\n  \"entkommen\": \"entkomm\",\n  \"entkommene\": \"entkomm\",\n  \"entkorkten\": \"entkorkt\",\n  \"entkräften\": \"entkraft\",\n  \"entkräfteter\": \"entkraftet\",\n  \"entlang\": \"entlang\",\n  \"entlanggerast\": \"entlanggerast\",\n  \"entlass\": \"entlass\",\n  \"entlaß\": \"entlass\",\n  \"entlasse\": \"entlass\",\n  \"entlassen\": \"entlass\",\n  \"entlässest\": \"entlass\",\n  \"entlässet\": \"entlasset\",\n  \"entlässt\": \"entlasst\",\n  \"entläßt\": \"entlasst\",\n  \"entlassung\": \"entlass\",\n  \"entlassungen\": \"entlass\",\n  \"entlastet\": \"entlastet\",\n  \"entlastetder\": \"entlastetd\",\n  \"entledigen\": \"entled\",\n  \"entledigt\": \"entledigt\",\n  \"entledigung\": \"entled\",\n  \"entleeren\": \"entle\",\n  \"entleerte\": \"entleert\",\n  \"entleerten\": \"entleert\",\n  \"entlegene\": \"entleg\",\n  \"entlegenen\": \"entleg\",\n  \"entlegenste\": \"entlegen\",\n  \"entlehnen\": \"entlehn\",\n  \"entlehnten\": \"entlehnt\",\n  \"entliess\": \"entliess\",\n  \"entließ\": \"entliess\",\n  \"entliessen\": \"entliess\",\n  \"entlocken\": \"entlock\",\n  \"entlockte\": \"entlockt\",\n  \"entlohnen\": \"entlohn\",\n  \"entnahm\": \"entnahm\",\n  \"entnehmen\": \"entnehm\",\n  \"entnommen\": \"entnomm\",\n  \"entpuppte\": \"entpuppt\",\n  \"entränne\": \"entrann\",\n  \"entreissen\": \"entreiss\",\n  \"entreißen\": \"entreiss\",\n  \"entrinnen\": \"entrinn\",\n  \"entriss\": \"entriss\",\n  \"entrissen\": \"entriss\",\n  \"entronnenen\": \"entronn\",\n  \"entrüstet\": \"entrustet\",\n  \"entrüstung\": \"entrust\",\n  \"entsage\": \"entsag\",\n  \"entsagen\": \"entsag\",\n  \"entsagens\": \"entsag\",\n  \"entsagung\": \"entsag\",\n  \"entsagungsfähigkeit\": \"entsagungsfah\",\n  \"entsandet\": \"entsandet\",\n  \"entschädigen\": \"entschad\",\n  \"entschädigung\": \"entschad\",\n  \"entscheiden\": \"entscheid\",\n  \"entscheidend\": \"entscheid\",\n  \"entscheidende\": \"entscheid\",\n  \"entscheidenden\": \"entscheid\",\n  \"entscheidender\": \"entscheid\",\n  \"entscheidendes\": \"entscheid\",\n  \"entscheidet\": \"entscheidet\",\n  \"entscheidung\": \"entscheid\",\n  \"entscheidungen\": \"entscheid\",\n  \"entscheidungsgrund\": \"entscheidungsgrund\",\n  \"entscheidungskampf\": \"entscheidungskampf\",\n  \"entschiede\": \"entschied\",\n  \"entschieden\": \"entschied\",\n  \"entschiedene\": \"entschied\",\n  \"entschiedenen\": \"entschied\",\n  \"entschiedenheit\": \"entschied\",\n  \"entschlafen\": \"entschlaf\",\n  \"entschlief\": \"entschlief\",\n  \"entschliessen\": \"entschliess\",\n  \"entschliessung\": \"entschliess\",\n  \"entschließung\": \"entschliess\",\n  \"entschliessungen\": \"entschliess\",\n  \"entschloss\": \"entschloss\",\n  \"entschloß\": \"entschloss\",\n  \"entschlossen\": \"entschloss\",\n  \"entschlossene\": \"entschloss\",\n  \"entschlossenen\": \"entschloss\",\n  \"entschlossener\": \"entschloss\",\n  \"entschlossenes\": \"entschloss\",\n  \"entschlossenheit\": \"entschloss\",\n  \"entschlüpfe\": \"entschlupf\",\n  \"entschlüpfen\": \"entschlupf\",\n  \"entschluss\": \"entschluss\",\n  \"entschluß\": \"entschluss\",\n  \"entschlusse\": \"entschluss\",\n  \"entschuldige\": \"entschuld\",\n  \"entschuldigen\": \"entschuld\",\n  \"entschuldigende\": \"entschuld\",\n  \"entschuldigt\": \"entschuldigt\",\n  \"entschuldigung\": \"entschuld\",\n  \"entschwand\": \"entschwand\",\n  \"entschwebte\": \"entschwebt\",\n  \"entschwindet\": \"entschwindet\",\n  \"entschwunden\": \"entschwund\",\n  \"entseelt\": \"entseelt\",\n  \"entsetzen\": \"entsetz\",\n  \"entsetzlich\": \"entsetz\",\n  \"entsetzliche\": \"entsetz\",\n  \"entsetzlichen\": \"entsetz\",\n  \"entsetzliches\": \"entsetz\",\n  \"entsetzt\": \"entsetzt\",\n  \"entsinne\": \"entsinn\",\n  \"entsinnen\": \"entsinn\",\n  \"entsinnst\": \"entsinn\",\n  \"entsittlichung\": \"entsittlich\",\n  \"entspann\": \"entspann\",\n  \"entspannt\": \"entspannt\",\n  \"entsprach\": \"entsprach\",\n  \"entspränge\": \"entsprang\",\n  \"entsprangen\": \"entsprang\",\n  \"entspreche\": \"entsprech\",\n  \"entsprechen\": \"entsprech\",\n  \"entsprechend\": \"entsprech\",\n  \"entsprechende\": \"entsprech\",\n  \"entsprechenden\": \"entsprech\",\n  \"entsprechender\": \"entsprech\",\n  \"entsprechendes\": \"entsprech\",\n  \"entsprechung\": \"entsprech\",\n  \"entsprechungen\": \"entsprech\",\n  \"entsprechungsverhältnis\": \"entsprechungsverhaltnis\",\n  \"entspricht\": \"entspricht\",\n  \"entspringe\": \"entspring\",\n  \"entspringen\": \"entspring\",\n  \"entspringend\": \"entspring\",\n  \"entspringt\": \"entspringt\",\n  \"entsprungen\": \"entsprung\",\n  \"entstand\": \"entstand\",\n  \"entstände\": \"entstand\",\n  \"entstanden\": \"entstand\",\n  \"entstehe\": \"entsteh\",\n  \"entstehen\": \"entsteh\",\n  \"entstehende\": \"entsteh\",\n  \"entstehens\": \"entsteh\",\n  \"entstehn\": \"entstehn\",\n  \"entsteht\": \"entsteht\",\n  \"entstehung\": \"entsteh\",\n  \"entstehungsursache\": \"entstehungsursach\",\n  \"entstehungsursachen\": \"entstehungsursach\",\n  \"entströmen\": \"entstrom\",\n  \"entströmten\": \"entstromt\",\n  \"entsündigen\": \"entsund\",\n  \"entsündigung\": \"entsund\",\n  \"enttäuschend\": \"enttausch\",\n  \"enttäuschung\": \"enttausch\",\n  \"enttäuschungen\": \"enttausch\",\n  \"entvölkerte\": \"entvolkert\",\n  \"entwaffnet\": \"entwaffnet\",\n  \"entwand\": \"entwand\",\n  \"entwarf\": \"entwarf\",\n  \"entweder\": \"entwed\",\n  \"entweicht\": \"entweicht\",\n  \"entweihe\": \"entweih\",\n  \"entweihen\": \"entweih\",\n  \"entweiher\": \"entweih\",\n  \"entweihern\": \"entweih\",\n  \"entweiht\": \"entweiht\",\n  \"entweihte\": \"entweiht\",\n  \"entweihten\": \"entweiht\",\n  \"entweihtes\": \"entweiht\",\n  \"entweihung\": \"entweih\",\n  \"entweihungen\": \"entweih\",\n  \"entwendet\": \"entwendet\",\n  \"entwendete\": \"entwendet\",\n  \"entwerfen\": \"entwerf\",\n  \"entwich\": \"entwich\",\n  \"entwichen\": \"entwich\",\n  \"entwichene\": \"entwich\",\n  \"entwichenen\": \"entwich\",\n  \"entwickeln\": \"entwickeln\",\n  \"entwickelt\": \"entwickelt\",\n  \"entwickelte\": \"entwickelt\",\n  \"entwickelten\": \"entwickelt\",\n  \"entwickelung\": \"entwickel\",\n  \"entwicklung\": \"entwickl\",\n  \"entwicklungen\": \"entwickl\",\n  \"entwicklungsstufe\": \"entwicklungsstuf\",\n  \"entwinden\": \"entwind\",\n  \"entwirft\": \"entwirft\",\n  \"entwischen\": \"entwisch\",\n  \"entwischest\": \"entwisch\",\n  \"entwöhnt\": \"entwohnt\",\n  \"entwölkte\": \"entwolkt\",\n  \"entworfen\": \"entworf\",\n  \"entworfenen\": \"entworf\",\n  \"entwürdigend\": \"entwurd\",\n  \"entwurfes\": \"entwurf\",\n  \"entziehen\": \"entzieh\",\n  \"entziehung\": \"entzieh\",\n  \"entzog\": \"entzog\",\n  \"entzogen\": \"entzog\",\n  \"entzögen\": \"entzog\",\n  \"entzücken\": \"entzuck\",\n  \"entzückend\": \"entzuck\",\n  \"entzückt\": \"entzuckt\",\n  \"entzünden\": \"entzund\",\n  \"entzündete\": \"entzundet\",\n  \"entzündliches\": \"entzund\",\n  \"entzwei\": \"entzwei\",\n  \"entzweigesägt\": \"entzweigesagt\",\n  \"entzweiging\": \"entzweiging\",\n  \"eorum\": \"eorum\",\n  \"epd\": \"epd\",\n  \"epha\": \"epha\",\n  \"ephas\": \"ephas\",\n  \"ephod\": \"ephod\",\n  \"ephode\": \"ephod\",\n  \"ephods\": \"ephod\",\n  \"ephraim\": \"ephraim\",\n  \"epidermis\": \"epidermis\",\n  \"epijumhtikon\": \"epijumhtikon\",\n  \"epikur\": \"epikur\",\n  \"epikureer\": \"epikure\",\n  \"epods\": \"epod\",\n  \"er\": \"er\",\n  \"erbarme\": \"erbarm\",\n  \"erbarmen\": \"erbarm\",\n  \"erbarmer\": \"erbarm\",\n  \"erbärmlich\": \"erbarm\",\n  \"erbärmliche\": \"erbarm\",\n  \"erbärmlichen\": \"erbarm\",\n  \"erbärmliches\": \"erbarm\",\n  \"erbärmlichsten\": \"erbarm\",\n  \"erbarmt\": \"erbarmt\",\n  \"erbarmte\": \"erbarmt\",\n  \"erbarmung\": \"erbarm\",\n  \"erbarmungen\": \"erbarm\",\n  \"erbarmungslosen\": \"erbarmungslos\",\n  \"erbat\": \"erbat\",\n  \"erbauer\": \"erbau\",\n  \"erbaulich\": \"erbaulich\",\n  \"erbaulichen\": \"erbaulich\",\n  \"erbaulicher\": \"erbaulich\",\n  \"erbauliches\": \"erbaulich\",\n  \"erbaut\": \"erbaut\",\n  \"erbaute\": \"erbaut\",\n  \"erbauungsbuch\": \"erbauungsbuch\",\n  \"erbböse\": \"erbbos\",\n  \"erbbösen\": \"erbbos\",\n  \"erbböses\": \"erbbos\",\n  \"erbe\": \"erb\",\n  \"erbeben\": \"erbeb\",\n  \"erbebt\": \"erbebt\",\n  \"erbebte\": \"erbebt\",\n  \"erben\": \"erb\",\n  \"erbes\": \"erb\",\n  \"erbeten\": \"erbet\",\n  \"erbetenen\": \"erbet\",\n  \"erbeutete\": \"erbeutet\",\n  \"erbeuteten\": \"erbeutet\",\n  \"erbeutung\": \"erbeut\",\n  \"erbfeind\": \"erbfeind\",\n  \"erbgrafen\": \"erbgraf\",\n  \"erbgüter\": \"erbgut\",\n  \"erbherren\": \"erbherr\",\n  \"erbherrn\": \"erbherrn\",\n  \"erbinnen\": \"erbinn\",\n  \"erbittere\": \"erbitt\",\n  \"erbittert\": \"erbittert\",\n  \"erblassen\": \"erblass\",\n  \"erblasste\": \"erblasst\",\n  \"erblassten\": \"erblasst\",\n  \"erbleichende\": \"erbleich\",\n  \"erbleichte\": \"erbleicht\",\n  \"erblich\": \"erblich\",\n  \"erbliche\": \"erblich\",\n  \"erblicke\": \"erblick\",\n  \"erblicken\": \"erblick\",\n  \"erblickt\": \"erblickt\",\n  \"erblickte\": \"erblickt\",\n  \"erblindeten\": \"erblindet\",\n  \"erbost\": \"erbost\",\n  \"erboste\": \"erbost\",\n  \"erbosten\": \"erbost\",\n  \"erboster\": \"erbost\",\n  \"erbracht\": \"erbracht\",\n  \"erbrechen\": \"erbrech\",\n  \"erbringen\": \"erbring\",\n  \"erbschaft\": \"erbschaft\",\n  \"erbschaften\": \"erbschaft\",\n  \"erbsen\": \"erbs\",\n  \"erbsenkost\": \"erbsenkost\",\n  \"erbte\": \"erbt\",\n  \"erbteil\": \"erbteil\",\n  \"erbtum\": \"erbtum\",\n  \"erdacht\": \"erdacht\",\n  \"erdachten\": \"erdacht\",\n  \"erdball\": \"erdball\",\n  \"erdbeben\": \"erdbeb\",\n  \"erdbeere\": \"erdbe\",\n  \"erdboden\": \"erdbod\",\n  \"erdbodens\": \"erdbod\",\n  \"erde\": \"erd\",\n  \"erden\": \"erd\",\n  \"erdenken\": \"erdenk\",\n  \"erdenklichen\": \"erdenk\",\n  \"erdgeruch\": \"erdgeruch\",\n  \"erdgeschoss\": \"erdgeschoss\",\n  \"erdgeschoßwerkstätten\": \"erdgeschosswerkstatt\",\n  \"erdharz\": \"erdharz\",\n  \"erdharzes\": \"erdharz\",\n  \"erdichten\": \"erdicht\",\n  \"erdichtete\": \"erdichtet\",\n  \"erdichtetem\": \"erdichtet\",\n  \"erdichteten\": \"erdichtet\",\n  \"erdichtetes\": \"erdichtet\",\n  \"erdkreis\": \"erdkreis\",\n  \"erdkreises\": \"erdkreis\",\n  \"erdmolch\": \"erdmolch\",\n  \"erdreich\": \"erdreich\",\n  \"erdrosselt\": \"erdrosselt\",\n  \"erdulden\": \"erduld\",\n  \"erduldet\": \"erduldet\",\n  \"erdwelle\": \"erdwell\",\n  \"ereignen\": \"ereign\",\n  \"ereignenden\": \"ereign\",\n  \"ereignet\": \"ereignet\",\n  \"ereignete\": \"ereignet\",\n  \"ereignis\": \"ereignis\",\n  \"ereignisse\": \"ereignis\",\n  \"ereignissen\": \"ereignis\",\n  \"ereignisses\": \"ereignis\",\n  \"ererbt\": \"ererbt\",\n  \"ererbten\": \"ererbt\",\n  \"erfahre\": \"erfahr\",\n  \"erfahren\": \"erfahr\",\n  \"erfahrene\": \"erfahr\",\n  \"erfahrenern\": \"erfahr\",\n  \"erfahrner\": \"erfahrn\",\n  \"erfährt\": \"erfahrt\",\n  \"erfahrung\": \"erfahr\",\n  \"erfahrungen\": \"erfahr\",\n  \"erfahrungsbeweise\": \"erfahrungsbeweis\",\n  \"erfahrungsfalle\": \"erfahrungsfall\",\n  \"erfahrungsfolgen\": \"erfahrungsfolg\",\n  \"erfahrungsgegenstände\": \"erfahrungsgegenstand\",\n  \"erfahrungsgemäss\": \"erfahrungsgemass\",\n  \"erfahrungsgemäß\": \"erfahrungsgemass\",\n  \"erfahrungsurteilen\": \"erfahrungsurteil\",\n  \"erfand\": \"erfand\",\n  \"erfanden\": \"erfand\",\n  \"erfassen\": \"erfass\",\n  \"erfasst\": \"erfasst\",\n  \"erfaßt\": \"erfasst\",\n  \"erfasste\": \"erfasst\",\n  \"erfinde\": \"erfind\",\n  \"erfinden\": \"erfind\",\n  \"erfindung\": \"erfind\",\n  \"erfindungsgabe\": \"erfindungsgab\",\n  \"erfindungsgenie\": \"erfindungsgeni\",\n  \"erfindungsreiche\": \"erfindungsreich\",\n  \"erfindungsreiches\": \"erfindungsreich\",\n  \"erflehen\": \"erfleh\",\n  \"erfolg\": \"erfolg\",\n  \"erfolge\": \"erfolg\",\n  \"erfolgen\": \"erfolg\",\n  \"erfolgenden\": \"erfolg\",\n  \"erfolges\": \"erfolg\",\n  \"erfolglos\": \"erfolglos\",\n  \"erfolglosen\": \"erfolglos\",\n  \"erfolgreich\": \"erfolgreich\",\n  \"erfolgsrezept\": \"erfolgsrezept\",\n  \"erfolgt\": \"erfolgt\",\n  \"erfolgte\": \"erfolgt\",\n  \"erforderlich\": \"erford\",\n  \"erforderliche\": \"erford\",\n  \"erforderlichen\": \"erford\",\n  \"erfordern\": \"erford\",\n  \"erfordert\": \"erfordert\",\n  \"erforderte\": \"erfordert\",\n  \"erforsche\": \"erforsch\",\n  \"erforschen\": \"erforsch\",\n  \"erforscht\": \"erforscht\",\n  \"erforschten\": \"erforscht\",\n  \"erforschung\": \"erforsch\",\n  \"erforschungen\": \"erforsch\",\n  \"erfreuen\": \"erfreu\",\n  \"erfreuete\": \"erfreuet\",\n  \"erfreulich\": \"erfreulich\",\n  \"erfreuliche\": \"erfreulich\",\n  \"erfreut\": \"erfreut\",\n  \"erfreute\": \"erfreut\",\n  \"erfreuten\": \"erfreut\",\n  \"erfrischen\": \"erfrisch\",\n  \"erfrischte\": \"erfrischt\",\n  \"erfrischung\": \"erfrisch\",\n  \"erfroren\": \"erfror\",\n  \"erfrorenen\": \"erfror\",\n  \"erfuhr\": \"erfuhr\",\n  \"erfuhren\": \"erfuhr\",\n  \"erfüllen\": \"erfull\",\n  \"erfüllet\": \"erfullet\",\n  \"erfüllt\": \"erfullt\",\n  \"erfüllte\": \"erfullt\",\n  \"erfüllten\": \"erfullt\",\n  \"erfüllung\": \"erfull\",\n  \"erfunden\": \"erfund\",\n  \"erfundenen\": \"erfund\",\n  \"ergab\": \"ergab\",\n  \"ergaben\": \"ergab\",\n  \"ergangen\": \"ergang\",\n  \"ergänzen\": \"erganz\",\n  \"ergänzenden\": \"erganz\",\n  \"ergänzt\": \"erganzt\",\n  \"ergänzte\": \"erganzt\",\n  \"ergänzung\": \"erganz\",\n  \"ergänzungsband\": \"erganzungsband\",\n  \"ergebe\": \"ergeb\",\n  \"ergeben\": \"ergeb\",\n  \"ergebenen\": \"ergeb\",\n  \"ergebenheit\": \"ergeb\",\n  \"ergebenst\": \"ergeben\",\n  \"ergebnis\": \"ergebnis\",\n  \"ergebnisse\": \"ergebnis\",\n  \"ergebnissen\": \"ergebnis\",\n  \"ergebung\": \"ergeb\",\n  \"ergebungsvoll\": \"ergebungsvoll\",\n  \"ergehen\": \"ergeh\",\n  \"ergeht\": \"ergeht\",\n  \"ergibt\": \"ergibt\",\n  \"ergiebiger\": \"ergieb\",\n  \"ergiessen\": \"ergiess\",\n  \"ergießen\": \"ergiess\",\n  \"ergiessung\": \"ergiess\",\n  \"ergießung\": \"ergiess\",\n  \"erging\": \"erging\",\n  \"erglänzten\": \"erglanzt\",\n  \"erglühen\": \"ergluh\",\n  \"ergoss\": \"ergoss\",\n  \"ergoß\": \"ergoss\",\n  \"ergötzen\": \"ergotz\",\n  \"ergötzlich\": \"ergotz\",\n  \"ergötzt\": \"ergotzt\",\n  \"ergötzte\": \"ergotzt\",\n  \"ergötzten\": \"ergotzt\",\n  \"ergötzung\": \"ergotz\",\n  \"ergötzungen\": \"ergotz\",\n  \"ergraute\": \"ergraut\",\n  \"ergrauten\": \"ergraut\",\n  \"ergreife\": \"ergreif\",\n  \"ergreifen\": \"ergreif\",\n  \"ergreifend\": \"ergreif\",\n  \"ergreift\": \"ergreift\",\n  \"ergriff\": \"ergriff\",\n  \"ergriffen\": \"ergriff\",\n  \"ergrimmt\": \"ergrimmt\",\n  \"ergrübeln\": \"ergrubeln\",\n  \"ergründen\": \"ergrund\",\n  \"erhaben\": \"erhab\",\n  \"erhabene\": \"erhab\",\n  \"erhabenes\": \"erhab\",\n  \"erhabenheit\": \"erhab\",\n  \"erhabnen\": \"erhabn\",\n  \"erhalt\": \"erhalt\",\n  \"erhält\": \"erhalt\",\n  \"erhalte\": \"erhalt\",\n  \"erhalten\": \"erhalt\",\n  \"erhaltende\": \"erhalt\",\n  \"erhalter\": \"erhalt\",\n  \"erhältst\": \"erhalt\",\n  \"erhaltung\": \"erhalt\",\n  \"erhandelt\": \"erhandelt\",\n  \"erhängt\": \"erhangt\",\n  \"erhängte\": \"erhangt\",\n  \"erhärtet\": \"erhartet\",\n  \"erhaschen\": \"erhasch\",\n  \"erhebe\": \"erheb\",\n  \"erheben\": \"erheb\",\n  \"erhebend\": \"erheb\",\n  \"erhebenden\": \"erheb\",\n  \"erheblich\": \"erheb\",\n  \"erheblichen\": \"erheb\",\n  \"erheblichkeit\": \"erheb\",\n  \"erhebst\": \"erheb\",\n  \"erhebt\": \"erhebt\",\n  \"erhebung\": \"erheb\",\n  \"erhebungen\": \"erheb\",\n  \"erheischt\": \"erheischt\",\n  \"erhellen\": \"erhell\",\n  \"erhellt\": \"erhellt\",\n  \"erhellte\": \"erhellt\",\n  \"erheucheltes\": \"erheuchelt\",\n  \"erhielt\": \"erhielt\",\n  \"erhielten\": \"erhielt\",\n  \"erhieltst\": \"erhielt\",\n  \"erhitzen\": \"erhitz\",\n  \"erhitzt\": \"erhitzt\",\n  \"erhitzten\": \"erhitzt\",\n  \"erhob\": \"erhob\",\n  \"erhoben\": \"erhob\",\n  \"erhobenen\": \"erhob\",\n  \"erhobener\": \"erhob\",\n  \"erhofft\": \"erhofft\",\n  \"erhofften\": \"erhofft\",\n  \"erhöhen\": \"erhoh\",\n  \"erhöht\": \"erhoht\",\n  \"erhöhte\": \"erhoht\",\n  \"erhöhten\": \"erhoht\",\n  \"erhöhter\": \"erhoht\",\n  \"erhöhung\": \"erhoh\",\n  \"erholt\": \"erholt\",\n  \"erholte\": \"erholt\",\n  \"erholten\": \"erholt\",\n  \"erholung\": \"erhol\",\n  \"erholungspause\": \"erholungspaus\",\n  \"erhörest\": \"erhor\",\n  \"erhört\": \"erhort\",\n  \"erich\": \"erich\",\n  \"erinnere\": \"erinn\",\n  \"erinnerlich\": \"erinn\",\n  \"erinnern\": \"erinn\",\n  \"erinnernd\": \"erinnernd\",\n  \"erinnert\": \"erinnert\",\n  \"erinnerte\": \"erinnert\",\n  \"erinnerten\": \"erinnert\",\n  \"erinnerung\": \"erinner\",\n  \"erinnerungen\": \"erinner\",\n  \"erinnerungskräfte\": \"erinnerungskraft\",\n  \"eristica\": \"eristica\",\n  \"eristik\": \"erist\",\n  \"eristikouv\": \"eristikouv\",\n  \"eristische\": \"erist\",\n  \"eristischen\": \"erist\",\n  \"eriugena\": \"eriugena\",\n  \"erjagen\": \"erjag\",\n  \"erjebenst\": \"erjeben\",\n  \"erkämpfen\": \"erkampf\",\n  \"erkannt\": \"erkannt\",\n  \"erkannte\": \"erkannt\",\n  \"erkannten\": \"erkannt\",\n  \"erkaufen\": \"erkauf\",\n  \"erkennbar\": \"erkennbar\",\n  \"erkennbarem\": \"erkennbar\",\n  \"erkennbaren\": \"erkennbar\",\n  \"erkenne\": \"erkenn\",\n  \"erkennen\": \"erkenn\",\n  \"erkennenden\": \"erkenn\",\n  \"erkennest\": \"erkenn\",\n  \"erkennet\": \"erkennet\",\n  \"erkennst\": \"erkenn\",\n  \"erkennt\": \"erkennt\",\n  \"erkenntnis\": \"erkenntnis\",\n  \"erkenntnisgründe\": \"erkenntnisgrund\",\n  \"erkenntnisgründen\": \"erkenntnisgrund\",\n  \"erkenntnisse\": \"erkenntnis\",\n  \"erkenntnissen\": \"erkenntnis\",\n  \"erkenntnisses\": \"erkenntnis\",\n  \"erkenntnisvermögen\": \"erkenntnisvermog\",\n  \"erkenntnisvermögens\": \"erkenntnisvermog\",\n  \"erkennung\": \"erkenn\",\n  \"erker\": \"erk\",\n  \"erkläre\": \"erklar\",\n  \"erklären\": \"erklar\",\n  \"erklärlich\": \"erklar\",\n  \"erklärliche\": \"erklar\",\n  \"erklärst\": \"erklarst\",\n  \"erklärt\": \"erklart\",\n  \"erklärte\": \"erklart\",\n  \"erklärten\": \"erklart\",\n  \"erklärung\": \"erklar\",\n  \"erklärungen\": \"erklar\",\n  \"erklärungsgrund\": \"erklarungsgrund\",\n  \"erklärungsweise\": \"erklarungsweis\",\n  \"erkleckliche\": \"erkleck\",\n  \"erklecklichen\": \"erkleck\",\n  \"erkleckliches\": \"erkleck\",\n  \"erkletterten\": \"erklettert\",\n  \"erkundigt\": \"erkundigt\",\n  \"erkundigte\": \"erkundigt\",\n  \"erkünstelt\": \"erkunstelt\",\n  \"erlahmten\": \"erlahmt\",\n  \"erlangen\": \"erlang\",\n  \"erlangende\": \"erlang\",\n  \"erlangte\": \"erlangt\",\n  \"erlassen\": \"erlass\",\n  \"erlassung\": \"erlass\",\n  \"erlaube\": \"erlaub\",\n  \"erlauben\": \"erlaub\",\n  \"erlaubnis\": \"erlaubnis\",\n  \"erlaubt\": \"erlaubt\",\n  \"erlaubte\": \"erlaubt\",\n  \"erlaubten\": \"erlaubt\",\n  \"erlaucht\": \"erlaucht\",\n  \"erlauchte\": \"erlaucht\",\n  \"erlauchten\": \"erlaucht\",\n  \"erläutert\": \"erlautert\",\n  \"erläuterung\": \"erlauter\",\n  \"erle\": \"erl\",\n  \"erlebe\": \"erleb\",\n  \"erleben\": \"erleb\",\n  \"erlebnis\": \"erlebnis\",\n  \"erlebnisse\": \"erlebnis\",\n  \"erlebnissen\": \"erlebnis\",\n  \"erlebt\": \"erlebt\",\n  \"erlebte\": \"erlebt\",\n  \"erledigen\": \"erled\",\n  \"erledigt\": \"erledigt\",\n  \"erledigung\": \"erled\",\n  \"erlegt\": \"erlegt\",\n  \"erlegten\": \"erlegt\",\n  \"erlegung\": \"erleg\",\n  \"erleichtern\": \"erleicht\",\n  \"erleichternder\": \"erleichternd\",\n  \"erleichtert\": \"erleichtert\",\n  \"erleichterte\": \"erleichtert\",\n  \"erleiden\": \"erleid\",\n  \"erlenzeilen\": \"erlenzeil\",\n  \"erlernen\": \"erlern\",\n  \"erlernt\": \"erlernt\",\n  \"erlernte\": \"erlernt\",\n  \"erleuchte\": \"erleucht\",\n  \"erleuchten\": \"erleucht\",\n  \"erleuchtet\": \"erleuchtet\",\n  \"erleuchtete\": \"erleuchtet\",\n  \"erleuchteten\": \"erleuchtet\",\n  \"erleuchtung\": \"erleucht\",\n  \"erleuchtungen\": \"erleucht\",\n  \"erlitt\": \"erlitt\",\n  \"erlitten\": \"erlitt\",\n  \"erlittenen\": \"erlitt\",\n  \"erlös\": \"erlos\",\n  \"erloschen\": \"erlosch\",\n  \"erlöschen\": \"erlosch\",\n  \"erlöse\": \"erlos\",\n  \"erlösen\": \"erlos\",\n  \"erlöser\": \"erlos\",\n  \"erlöset\": \"erloset\",\n  \"erlöst\": \"erlost\",\n  \"erlösten\": \"erlost\",\n  \"erlösung\": \"erlos\",\n  \"erlösungsgelder\": \"erlosungsgeld\",\n  \"erlösungswerk\": \"erlosungswerk\",\n  \"erlustigen\": \"erlust\",\n  \"ermächtigt\": \"ermachtigt\",\n  \"ermahne\": \"ermahn\",\n  \"ermahnen\": \"ermahn\",\n  \"ermahnt\": \"ermahnt\",\n  \"ermahnte\": \"ermahnt\",\n  \"ermahnung\": \"ermahn\",\n  \"ermahnungen\": \"ermahn\",\n  \"ermangelte\": \"ermangelt\",\n  \"ermangelung\": \"ermangel\",\n  \"ermannen\": \"ermann\",\n  \"ermannte\": \"ermannt\",\n  \"ermattetes\": \"ermattet\",\n  \"ermattung\": \"ermatt\",\n  \"ermessens\": \"ermess\",\n  \"ermessensspielraum\": \"ermessensspielraum\",\n  \"ermesset\": \"ermesset\",\n  \"ermöglichen\": \"ermog\",\n  \"ermöglicht\": \"ermoglicht\",\n  \"ermordet\": \"ermordet\",\n  \"ermordete\": \"ermordet\",\n  \"ermordeten\": \"ermordet\",\n  \"ermüden\": \"ermud\",\n  \"ermüdenden\": \"ermud\",\n  \"ermüdet\": \"ermudet\",\n  \"ermüdeten\": \"ermudet\",\n  \"ermüdetes\": \"ermudet\",\n  \"ermuntern\": \"ermunt\",\n  \"ermunterte\": \"ermuntert\",\n  \"ermunterten\": \"ermuntert\",\n  \"ermutigungen\": \"ermut\",\n  \"erna\": \"erna\",\n  \"ernähren\": \"ernahr\",\n  \"ernährer\": \"ernahr\",\n  \"ernährt\": \"ernahrt\",\n  \"ernährung\": \"ernahr\",\n  \"ernährungsmethode\": \"ernahrungsmethod\",\n  \"ernannt\": \"ernannt\",\n  \"ernannte\": \"ernannt\",\n  \"ernennung\": \"ernenn\",\n  \"erneuere\": \"erneu\",\n  \"erneuern\": \"erneu\",\n  \"erneuerst\": \"erneuerst\",\n  \"erneuert\": \"erneuert\",\n  \"erneuerte\": \"erneuert\",\n  \"erneuerung\": \"erneuer\",\n  \"erneure\": \"erneur\",\n  \"erniedrige\": \"erniedr\",\n  \"erniedrigen\": \"erniedr\",\n  \"erniedrigten\": \"erniedrigt\",\n  \"erniedrigung\": \"erniedr\",\n  \"ernst\": \"ernst\",\n  \"ernste\": \"ernst\",\n  \"ernsten\": \"ernst\",\n  \"ernster\": \"ernst\",\n  \"ernstes\": \"ernst\",\n  \"ernstesten\": \"ernst\",\n  \"ernsthaft\": \"ernsthaft\",\n  \"ernsthafte\": \"ernsthaft\",\n  \"ernsthaften\": \"ernsthaft\",\n  \"ernsthafter\": \"ernsthaft\",\n  \"ernsthaftes\": \"ernsthaft\",\n  \"ernstlich\": \"ernstlich\",\n  \"ernstliche\": \"ernstlich\",\n  \"ernte\": \"ernt\",\n  \"erntesegen\": \"ernteseg\",\n  \"erntete\": \"erntet\",\n  \"erobern\": \"erob\",\n  \"erobert\": \"erobert\",\n  \"eroberung\": \"erober\",\n  \"eroberungen\": \"erober\",\n  \"eröffnen\": \"eroffn\",\n  \"eröffnet\": \"eroffnet\",\n  \"eröffnete\": \"eroffnet\",\n  \"eröffnung\": \"eroffn\",\n  \"erörtert\": \"erortert\",\n  \"erörterten\": \"erortert\",\n  \"erproben\": \"erprob\",\n  \"erprüften\": \"erpruft\",\n  \"erquicken\": \"erquick\",\n  \"erquickt\": \"erquickt\",\n  \"erquickte\": \"erquickt\",\n  \"erquickung\": \"erquick\",\n  \"erraten\": \"errat\",\n  \"erregen\": \"erreg\",\n  \"erregend\": \"erreg\",\n  \"erregt\": \"erregt\",\n  \"erregte\": \"erregt\",\n  \"erregten\": \"erregt\",\n  \"erregung\": \"erreg\",\n  \"erregungen\": \"erreg\",\n  \"erreichbar\": \"erreichbar\",\n  \"erreichbare\": \"erreichbar\",\n  \"erreiche\": \"erreich\",\n  \"erreichen\": \"erreich\",\n  \"erreicht\": \"erreicht\",\n  \"erreichte\": \"erreicht\",\n  \"erreichten\": \"erreicht\",\n  \"erreichung\": \"erreich\",\n  \"errette\": \"errett\",\n  \"erretten\": \"errett\",\n  \"errettet\": \"errettet\",\n  \"errichten\": \"erricht\",\n  \"errichtet\": \"errichtet\",\n  \"errichtete\": \"errichtet\",\n  \"errichteten\": \"errichtet\",\n  \"errichtung\": \"erricht\",\n  \"erriet\": \"erriet\",\n  \"erringen\": \"erring\",\n  \"erröte\": \"errot\",\n  \"erröten\": \"errot\",\n  \"errötend\": \"errot\",\n  \"errötete\": \"errotet\",\n  \"erröteten\": \"errotet\",\n  \"errungenschaft\": \"errungenschaft\",\n  \"ersah\": \"ersah\",\n  \"ersann\": \"ersann\",\n  \"ersannen\": \"ersann\",\n  \"ersatz\": \"ersatz\",\n  \"ersäufen\": \"ersauf\",\n  \"ersäuft\": \"ersauft\",\n  \"erschaffen\": \"erschaff\",\n  \"erschaffenden\": \"erschaff\",\n  \"erschaffene\": \"erschaff\",\n  \"erschaffenen\": \"erschaff\",\n  \"erschauten\": \"erschaut\",\n  \"erscheine\": \"erschein\",\n  \"erscheinen\": \"erschein\",\n  \"erscheinende\": \"erschein\",\n  \"erscheinenden\": \"erschein\",\n  \"erscheinens\": \"erschein\",\n  \"erscheint\": \"erscheint\",\n  \"erscheinung\": \"erschein\",\n  \"erscheinungen\": \"erschein\",\n  \"erscheinungsformen\": \"erscheinungsform\",\n  \"erschien\": \"erschi\",\n  \"erschiene\": \"erschi\",\n  \"erschienen\": \"erschi\",\n  \"erschienenen\": \"erschien\",\n  \"erschlage\": \"erschlag\",\n  \"erschlagen\": \"erschlag\",\n  \"erschlagener\": \"erschlag\",\n  \"erschleichens\": \"erschleich\",\n  \"erschlichen\": \"erschlich\",\n  \"erschlichene\": \"erschlich\",\n  \"erschliessen\": \"erschliess\",\n  \"erschließen\": \"erschliess\",\n  \"erschlüge\": \"erschlug\",\n  \"erschnappt\": \"erschnappt\",\n  \"erscholl\": \"erscholl\",\n  \"erschöpfen\": \"erschopf\",\n  \"erschöpfend\": \"erschopf\",\n  \"erschöpft\": \"erschopft\",\n  \"erschossen\": \"erschoss\",\n  \"erschrak\": \"erschrak\",\n  \"erschrecken\": \"erschreck\",\n  \"erschrecklicher\": \"erschreck\",\n  \"erschreckt\": \"erschreckt\",\n  \"erschreckte\": \"erschreckt\",\n  \"erschreckter\": \"erschreckt\",\n  \"erschrocken\": \"erschrock\",\n  \"erschrockenen\": \"erschrock\",\n  \"erschrockener\": \"erschrock\",\n  \"erschüttern\": \"erschutt\",\n  \"erschütternd\": \"erschutternd\",\n  \"erschüttert\": \"erschuttert\",\n  \"erschütterte\": \"erschuttert\",\n  \"erschütterten\": \"erschuttert\",\n  \"erschütterung\": \"erschutter\",\n  \"erschwert\": \"erschwert\",\n  \"ersehe\": \"erseh\",\n  \"ersehen\": \"erseh\",\n  \"ersehnt\": \"ersehnt\",\n  \"ersehnte\": \"ersehnt\",\n  \"ersehnten\": \"ersehnt\",\n  \"ersetzen\": \"ersetz\",\n  \"ersetzt\": \"ersetzt\",\n  \"ersetzte\": \"ersetzt\",\n  \"ersichtlich\": \"ersicht\",\n  \"ersieht\": \"ersieht\",\n  \"ersinnen\": \"ersinn\",\n  \"ersonnen\": \"ersonn\",\n  \"erspähen\": \"erspah\",\n  \"erspähend\": \"erspah\",\n  \"erspäht\": \"erspaht\",\n  \"erspare\": \"erspar\",\n  \"ersparen\": \"erspar\",\n  \"ersparnis\": \"ersparnis\",\n  \"ersparnisse\": \"ersparnis\",\n  \"ersparnissen\": \"ersparnis\",\n  \"erspart\": \"erspart\",\n  \"ersparten\": \"erspart\",\n  \"erspriesslich\": \"erspriess\",\n  \"ersprießlich\": \"erspriess\",\n  \"erspriessliche\": \"erspriess\",\n  \"erspriessliches\": \"erspriess\",\n  \"erst\": \"erst\",\n  \"erstand\": \"erstand\",\n  \"erstanden\": \"erstand\",\n  \"erstandenen\": \"erstand\",\n  \"erstarben\": \"erstarb\",\n  \"erstarken\": \"erstark\",\n  \"erstarkt\": \"erstarkt\",\n  \"erstarrt\": \"erstarrt\",\n  \"erstarrten\": \"erstarrt\",\n  \"erstarrung\": \"erstarr\",\n  \"erstatte\": \"erstatt\",\n  \"erstattet\": \"erstattet\",\n  \"erstattete\": \"erstattet\",\n  \"erstaunen\": \"erstaun\",\n  \"erstaunlich\": \"erstaun\",\n  \"erstaunlichen\": \"erstaun\",\n  \"erstaunt\": \"erstaunt\",\n  \"erstaunte\": \"erstaunt\",\n  \"erstaunten\": \"erstaunt\",\n  \"erstauntes\": \"erstaunt\",\n  \"erstdruck\": \"erstdruck\",\n  \"erste\": \"erst\",\n  \"erstehen\": \"ersteh\",\n  \"ersteht\": \"ersteht\",\n  \"erstellt\": \"erstellt\",\n  \"erstellung\": \"erstell\",\n  \"erstemal\": \"erstemal\",\n  \"ersten\": \"erst\",\n  \"erstenmal\": \"erstenmal\",\n  \"erstens\": \"erst\",\n  \"erster\": \"erst\",\n  \"erstere\": \"erst\",\n  \"ersteren\": \"erst\",\n  \"ersterer\": \"erst\",\n  \"ersterm\": \"ersterm\",\n  \"erstern\": \"erst\",\n  \"erstes\": \"erst\",\n  \"erstgeborene\": \"erstgebor\",\n  \"erstgeborenen\": \"erstgebor\",\n  \"erstgeborener\": \"erstgebor\",\n  \"erstgeburt\": \"erstgeburt\",\n  \"erstgeburten\": \"erstgeburt\",\n  \"ersticken\": \"erstick\",\n  \"erstickend\": \"erstick\",\n  \"erstickenden\": \"erstick\",\n  \"erstickt\": \"erstickt\",\n  \"erstickte\": \"erstickt\",\n  \"erstickung\": \"erstick\",\n  \"erstige\": \"erstig\",\n  \"erstirbt\": \"erstirbt\",\n  \"erstlich\": \"erstlich\",\n  \"erstlinge\": \"erstling\",\n  \"erstmals\": \"erstmal\",\n  \"erstochene\": \"erstoch\",\n  \"erstreckt\": \"erstreckt\",\n  \"erstreckte\": \"erstreckt\",\n  \"erstreckten\": \"erstreckt\",\n  \"erstritt\": \"erstritt\",\n  \"ersuche\": \"ersuch\",\n  \"ersucht\": \"ersucht\",\n  \"ersuchten\": \"ersucht\",\n  \"ertappen\": \"ertapp\",\n  \"ertappte\": \"ertappt\",\n  \"erteilen\": \"erteil\",\n  \"erteilt\": \"erteilt\",\n  \"erteilte\": \"erteilt\",\n  \"ertönen\": \"erton\",\n  \"ertönt\": \"ertont\",\n  \"ertönte\": \"ertont\",\n  \"ertönten\": \"ertont\",\n  \"ertötet\": \"ertotet\",\n  \"ertrag\": \"ertrag\",\n  \"ertrage\": \"ertrag\",\n  \"ertragen\": \"ertrag\",\n  \"ertragener\": \"ertrag\",\n  \"erträglichen\": \"ertrag\",\n  \"erträglicher\": \"ertrag\",\n  \"erträgliches\": \"ertrag\",\n  \"erträgt\": \"ertragt\",\n  \"ertrank\": \"ertrank\",\n  \"ertrinkens\": \"ertrink\",\n  \"ertrotzen\": \"ertrotz\",\n  \"ertrug\": \"ertrug\",\n  \"ertrugen\": \"ertrug\",\n  \"erwachend\": \"erwach\",\n  \"erwachende\": \"erwach\",\n  \"erwachendem\": \"erwach\",\n  \"erwachenden\": \"erwach\",\n  \"erwachender\": \"erwach\",\n  \"erwachsen\": \"erwachs\",\n  \"erwachsene\": \"erwachs\",\n  \"erwachsenem\": \"erwachs\",\n  \"erwachsenen\": \"erwachs\",\n  \"erwachsener\": \"erwachs\",\n  \"erwächst\": \"erwach\",\n  \"erwacht\": \"erwacht\",\n  \"erwachte\": \"erwacht\",\n  \"erwachten\": \"erwacht\",\n  \"erwägen\": \"erwag\",\n  \"erwägt\": \"erwagt\",\n  \"erwählen\": \"erwahl\",\n  \"erwählet\": \"erwahlet\",\n  \"erwählt\": \"erwahlt\",\n  \"erwählten\": \"erwahlt\",\n  \"erwählung\": \"erwahl\",\n  \"erwähnen\": \"erwahn\",\n  \"erwähnt\": \"erwahnt\",\n  \"erwähnte\": \"erwahnt\",\n  \"erwähnten\": \"erwahnt\",\n  \"erwähnung\": \"erwahn\",\n  \"erwähnungen\": \"erwahn\",\n  \"erwarb\": \"erwarb\",\n  \"erwärmt\": \"erwarmt\",\n  \"erwarte\": \"erwart\",\n  \"erwarten\": \"erwart\",\n  \"erwartest\": \"erwart\",\n  \"erwartet\": \"erwartet\",\n  \"erwartete\": \"erwartet\",\n  \"erwarteten\": \"erwartet\",\n  \"erwartung\": \"erwart\",\n  \"erwartungen\": \"erwart\",\n  \"erwartungsvollem\": \"erwartungsvoll\",\n  \"erwecken\": \"erweck\",\n  \"erweckt\": \"erweckt\",\n  \"erweckte\": \"erweckt\",\n  \"erweckten\": \"erweckt\",\n  \"erweicht\": \"erweicht\",\n  \"erweisen\": \"erweis\",\n  \"erweislichen\": \"erweis\",\n  \"erweisung\": \"erweis\",\n  \"erweitern\": \"erweit\",\n  \"erweiternd\": \"erweiternd\",\n  \"erweiterndes\": \"erweiternd\",\n  \"erweitert\": \"erweitert\",\n  \"erweiterte\": \"erweitert\",\n  \"erweiterten\": \"erweitert\",\n  \"erweiterung\": \"erweiter\",\n  \"erweiterungen\": \"erweiter\",\n  \"erwerb\": \"erwerb\",\n  \"erwerben\": \"erwerb\",\n  \"erwerbende\": \"erwerb\",\n  \"erwerbenden\": \"erwerb\",\n  \"erwerbmittel\": \"erwerbmittel\",\n  \"erwerbs\": \"erwerb\",\n  \"erwidern\": \"erwid\",\n  \"erwiderte\": \"erwidert\",\n  \"erwiderung\": \"erwider\",\n  \"erwies\": \"erwi\",\n  \"erwiesen\": \"erwies\",\n  \"erwiesenermassen\": \"erwiesenermass\",\n  \"erwirbt\": \"erwirbt\",\n  \"erwischen\": \"erwisch\",\n  \"erwischt\": \"erwischt\",\n  \"erwischte\": \"erwischt\",\n  \"erwogen\": \"erwog\",\n  \"erworben\": \"erworb\",\n  \"erworbene\": \"erworb\",\n  \"erworbenen\": \"erworb\",\n  \"erwthsewv\": \"erwthsewv\",\n  \"erwünscht\": \"erwunscht\",\n  \"erwünschte\": \"erwunscht\",\n  \"erwürge\": \"erwurg\",\n  \"erwürgen\": \"erwurg\",\n  \"erwürgt\": \"erwurgt\",\n  \"erwürgte\": \"erwurgt\",\n  \"erz\": \"erz\",\n  \"erzähl\": \"erzahl\",\n  \"erzähle\": \"erzahl\",\n  \"erzählen\": \"erzahl\",\n  \"erzählende\": \"erzahl\",\n  \"erzähler\": \"erzahl\",\n  \"erzählest\": \"erzahl\",\n  \"erzählet\": \"erzahlet\",\n  \"erzählst\": \"erzahl\",\n  \"erzählt\": \"erzahlt\",\n  \"erzählte\": \"erzahlt\",\n  \"erzählten\": \"erzahlt\",\n  \"erzähltwerden\": \"erzahltwerd\",\n  \"erzählung\": \"erzahl\",\n  \"erzählungen\": \"erzahl\",\n  \"erzeigen\": \"erzeig\",\n  \"erzeigt\": \"erzeigt\",\n  \"erzengel\": \"erzengel\",\n  \"erzes\": \"erz\",\n  \"erzeugen\": \"erzeug\",\n  \"erzeuger\": \"erzeug\",\n  \"erzeugerin\": \"erzeugerin\",\n  \"erzeugnis\": \"erzeugnis\",\n  \"erzeugnisse\": \"erzeugnis\",\n  \"erzeugnisses\": \"erzeugnis\",\n  \"erzeugt\": \"erzeugt\",\n  \"erzeugte\": \"erzeugt\",\n  \"erziehen\": \"erzieh\",\n  \"erzieher\": \"erzieh\",\n  \"erzieherei\": \"erzieherei\",\n  \"erzieherin\": \"erzieherin\",\n  \"erzieherisch\": \"erzieher\",\n  \"erziehung\": \"erzieh\",\n  \"erziehungskunst\": \"erziehungskun\",\n  \"erziehungsleute\": \"erziehungsleut\",\n  \"erziehungsmassregeln\": \"erziehungsmassregeln\",\n  \"erziehungsmühe\": \"erziehungsmuh\",\n  \"erziehungsresultat\": \"erziehungsresultat\",\n  \"erziehungswerk\": \"erziehungswerk\",\n  \"erziele\": \"erziel\",\n  \"erzielen\": \"erziel\",\n  \"erzielt\": \"erzielt\",\n  \"erzittere\": \"erzitt\",\n  \"erzittern\": \"erzitt\",\n  \"erzitterte\": \"erzittert\",\n  \"erzog\": \"erzog\",\n  \"erzogen\": \"erzog\",\n  \"erzürnt\": \"erzurnt\",\n  \"erzürnte\": \"erzurnt\",\n  \"erzwungene\": \"erzwung\",\n  \"erzwungenen\": \"erzwung\",\n  \"es\": \"es\",\n  \"esau\": \"esau\",\n  \"esaus\": \"esaus\",\n  \"eschenstab\": \"eschenstab\",\n  \"esel\": \"esel\",\n  \"eselein\": \"eselein\",\n  \"eselfüllen\": \"eselfull\",\n  \"eseln\": \"eseln\",\n  \"esels\": \"esel\",\n  \"esers\": \"eser\",\n  \"espenlaub\": \"espenlaub\",\n  \"essangelegenheiten\": \"essangeleg\",\n  \"essayistischen\": \"essayist\",\n  \"essbare\": \"essbar\",\n  \"essbares\": \"essbar\",\n  \"essbegierige\": \"essbegier\",\n  \"essbestecke\": \"essbesteck\",\n  \"esse\": \"ess\",\n  \"essen\": \"ess\",\n  \"essend\": \"essend\",\n  \"essens\": \"ess\",\n  \"esser\": \"ess\",\n  \"esset\": \"esset\",\n  \"essig\": \"essig\",\n  \"essighafen\": \"essighaf\",\n  \"esst\": \"esst\",\n  \"eßt\": \"esst\",\n  \"esszimmer\": \"esszimm\",\n  \"eßzimmer\": \"esszimm\",\n  \"esszimmers\": \"esszimm\",\n  \"eßzimmers\": \"esszimm\",\n  \"est\": \"est\",\n  \"estherchen\": \"estherch\",\n  \"estherchens\": \"estherch\",\n  \"estherlein\": \"estherlein\",\n  \"esti\": \"esti\",\n  \"estrich\": \"estrich\",\n  \"estrichs\": \"estrich\",\n  \"et\": \"et\",\n  \"etc\": \"etc\",\n  \"ethische\": \"ethisch\",\n  \"ethnographischer\": \"ethnograph\",\n  \"etliche\": \"etlich\",\n  \"etlicher\": \"etlich\",\n  \"etwa\": \"etwa\",\n  \"etwaigen\": \"etwaig\",\n  \"etwanigen\": \"etwan\",\n  \"etwas\": \"etwas\",\n  \"euch\": \"euch\",\n  \"euer\": \"euer\",\n  \"euere\": \"euer\",\n  \"euerm\": \"euerm\",\n  \"euern\": \"euern\",\n  \"eule\": \"eul\",\n  \"eulen\": \"eul\",\n  \"eulenspiegelei\": \"eulenspiegelei\",\n  \"eulenvogel\": \"eulenvogel\",\n  \"euphrat\": \"euphrat\",\n  \"eure\": \"eur\",\n  \"eurem\": \"eur\",\n  \"euren\": \"eur\",\n  \"eurer\": \"eur\",\n  \"eures\": \"eur\",\n  \"euretwegen\": \"euretweg\",\n  \"europa\": \"europa\",\n  \"europäern\": \"europa\",\n  \"europäische\": \"europa\",\n  \"europäischen\": \"europa\",\n  \"europapokal\": \"europapokal\",\n  \"europas\": \"europas\",\n  \"eustachius\": \"eustachius\",\n  \"eva\": \"eva\",\n  \"evangelii\": \"evangelii\",\n  \"evangelikale\": \"evangelikal\",\n  \"evangelikalen\": \"evangelikal\",\n  \"evangelikalenin\": \"evangelikalenin\",\n  \"evangelisch\": \"evangel\",\n  \"evangelische\": \"evangel\",\n  \"evangelischen\": \"evangel\",\n  \"evangelischer\": \"evangel\",\n  \"evangelisches\": \"evangel\",\n  \"evangelium\": \"evangelium\",\n  \"eventuelle\": \"eventuell\",\n  \"evident\": \"evident\",\n  \"evidenz\": \"evidenz\",\n  \"ewig\": \"ewig\",\n  \"ewige\": \"ewig\",\n  \"ewigem\": \"ewig\",\n  \"ewigen\": \"ewig\",\n  \"ewiger\": \"ewig\",\n  \"ewiges\": \"ewig\",\n  \"ewigkeit\": \"ewig\",\n  \"ewigkeiten\": \"ewig\",\n  \"ewiglich\": \"ewig\",\n  \"ex\": \"ex\",\n  \"exakte\": \"exakt\",\n  \"exakten\": \"exakt\",\n  \"excitatur\": \"excitatur\",\n  \"exekutive\": \"exekutiv\",\n  \"exempel\": \"exempel\",\n  \"exemplar\": \"exemplar\",\n  \"exerzieren\": \"exerzi\",\n  \"exerziermeistern\": \"exerziermeist\",\n  \"exil\": \"exil\",\n  \"existat\": \"existat\",\n  \"existentialsatz\": \"existentialsatz\",\n  \"existentiellen\": \"existentiell\",\n  \"existenz\": \"existenz\",\n  \"existenzminimum\": \"existenzminimum\",\n  \"existiere\": \"existi\",\n  \"existieren\": \"existi\",\n  \"existierenden\": \"existier\",\n  \"existiert\": \"existiert\",\n  \"existit\": \"existit\",\n  \"exit\": \"exit\",\n  \"exklusi\": \"exklusi\",\n  \"exklusives\": \"exklusiv\",\n  \"exkrementen\": \"exkrement\",\n  \"expedition\": \"expedition\",\n  \"experientia\": \"experientia\",\n  \"experiment\": \"experiment\",\n  \"expertenkommission\": \"expertenkommission\",\n  \"explorare\": \"explorar\",\n  \"explosion\": \"explosion\",\n  \"explosiv\": \"explosiv\",\n  \"explosive\": \"explosiv\",\n  \"expressen\": \"express\",\n  \"extra\": \"extra\",\n  \"extrapostillion\": \"extrapostillion\",\n  \"extras\": \"extras\",\n  \"extraurlaub\": \"extraurlaub\",\n  \"exzellenz\": \"exzellenz\",\n  \"ezw\": \"ezw\",\n  \"f\": \"f\",\n  \"fabelhafte\": \"fabelhaft\",\n  \"fabelhaftes\": \"fabelhaft\",\n  \"fabeln\": \"fabeln\",\n  \"fabrik\": \"fabrik\",\n  \"fabrikant\": \"fabrikant\",\n  \"fabrikanten\": \"fabrikant\",\n  \"fabriken\": \"fabrik\",\n  \"fächern\": \"fach\",\n  \"faciles\": \"facil\",\n  \"facit\": \"facit\",\n  \"fackel\": \"fackel\",\n  \"fackeln\": \"fackeln\",\n  \"facto\": \"facto\",\n  \"factor\": \"factor\",\n  \"faden\": \"fad\",\n  \"fäden\": \"fad\",\n  \"fadendünnen\": \"fadendunn\",\n  \"fadenscheinigen\": \"fadenschein\",\n  \"fades\": \"fad\",\n  \"fähig\": \"fahig\",\n  \"fähiger\": \"fahig\",\n  \"fähigkeit\": \"fahig\",\n  \"fähigkeiten\": \"fahig\",\n  \"fahl\": \"fahl\",\n  \"fahlen\": \"fahl\",\n  \"fahler\": \"fahl\",\n  \"fahne\": \"fahn\",\n  \"fahnen\": \"fahn\",\n  \"fähnlein\": \"fahnlein\",\n  \"fähnleins\": \"fahnlein\",\n  \"fahr\": \"fahr\",\n  \"fahren\": \"fahr\",\n  \"fahrenden\": \"fahrend\",\n  \"fahrendes\": \"fahrend\",\n  \"fahrenzum\": \"fahrenzum\",\n  \"fahrer\": \"fahr\",\n  \"fahrhabe\": \"fahrhab\",\n  \"fährlichkeit\": \"fahrlich\",\n  \"fahrst\": \"fahrst\",\n  \"fahrt\": \"fahrt\",\n  \"fährt\": \"fahrt\",\n  \"fährte\": \"fahrt\",\n  \"fahrten\": \"fahrt\",\n  \"fährten\": \"fahrt\",\n  \"fahrwasser\": \"fahrwass\",\n  \"fahrweg\": \"fahrweg\",\n  \"fahrzeit\": \"fahrzeit\",\n  \"fahrzeug\": \"fahrzeug\",\n  \"fahrzeugs\": \"fahrzeug\",\n  \"fair\": \"fair\",\n  \"faktischen\": \"faktisch\",\n  \"faktotum\": \"faktotum\",\n  \"faktum\": \"faktum\",\n  \"fakultät\": \"fakultat\",\n  \"fall\": \"fall\",\n  \"falle\": \"fall\",\n  \"fälle\": \"fall\",\n  \"fallen\": \"fall\",\n  \"fällen\": \"fall\",\n  \"fallend\": \"fallend\",\n  \"fallende\": \"fallend\",\n  \"fallenden\": \"fallend\",\n  \"falles\": \"fall\",\n  \"fallet\": \"fallet\",\n  \"falliert\": \"falliert\",\n  \"fallimentes\": \"falliment\",\n  \"falliten\": \"fallit\",\n  \"falls\": \"fall\",\n  \"fallstrick\": \"fallstrick\",\n  \"fallstricke\": \"fallstrick\",\n  \"fallt\": \"fallt\",\n  \"fällt\": \"fallt\",\n  \"falsch\": \"falsch\",\n  \"falsche\": \"falsch\",\n  \"falschem\": \"falsch\",\n  \"falschen\": \"falsch\",\n  \"falscher\": \"falsch\",\n  \"falsches\": \"falsch\",\n  \"falschesten\": \"falsch\",\n  \"falschheit\": \"falschheit\",\n  \"falschheiten\": \"falschheit\",\n  \"fälschlich\": \"falschlich\",\n  \"fälschungen\": \"falschung\",\n  \"falte\": \"falt\",\n  \"falten\": \"falt\",\n  \"falter\": \"falt\",\n  \"faltete\": \"faltet\",\n  \"falteten\": \"faltet\",\n  \"faltigen\": \"faltig\",\n  \"fameses\": \"fames\",\n  \"familie\": \"famili\",\n  \"familien\": \"famili\",\n  \"familienerbstück\": \"familienerbstuck\",\n  \"familiengeschichte\": \"familiengeschicht\",\n  \"familienglück\": \"familiengluck\",\n  \"familienvater\": \"familienvat\",\n  \"familienverfolgung\": \"familienverfolg\",\n  \"famosen\": \"famos\",\n  \"fanatisierten\": \"fanatisiert\",\n  \"fanatizismus\": \"fanatizismus\",\n  \"fanchon\": \"fanchon\",\n  \"fand\": \"fand\",\n  \"fände\": \"fand\",\n  \"fanden\": \"fand\",\n  \"fanfaren\": \"fanfar\",\n  \"fang\": \"fang\",\n  \"fangen\": \"fang\",\n  \"fanges\": \"fang\",\n  \"fangnetze\": \"fangnetz\",\n  \"fängst\": \"fang\",\n  \"fangt\": \"fangt\",\n  \"fängt\": \"fangt\",\n  \"fantasie\": \"fantasi\",\n  \"fantastischen\": \"fantast\",\n  \"farbe\": \"farb\",\n  \"farben\": \"farb\",\n  \"färbende\": \"farbend\",\n  \"farbenwesen\": \"farbenwes\",\n  \"farbigen\": \"farbig\",\n  \"farbiges\": \"farbig\",\n  \"farblosen\": \"farblos\",\n  \"farbtupfer\": \"farbtupf\",\n  \"fare\": \"far\",\n  \"farnblättern\": \"farnblatt\",\n  \"farnen\": \"farn\",\n  \"farren\": \"farr\",\n  \"fas\": \"fas\",\n  \"fasching\": \"fasching\",\n  \"faselnackt\": \"faselnackt\",\n  \"faseriges\": \"faser\",\n  \"fasern\": \"fas\",\n  \"fass\": \"fass\",\n  \"fässchen\": \"fassch\",\n  \"fasse\": \"fass\",\n  \"fassen\": \"fass\",\n  \"fässer\": \"fass\",\n  \"fasset\": \"fasset\",\n  \"fasslich\": \"fasslich\",\n  \"faßlich\": \"fasslich\",\n  \"fasst\": \"fasst\",\n  \"faßt\": \"fasst\",\n  \"fasste\": \"fasst\",\n  \"faßte\": \"fasst\",\n  \"fassten\": \"fasst\",\n  \"faßten\": \"fasst\",\n  \"fassung\": \"fassung\",\n  \"fassungen\": \"fassung\",\n  \"fassungskraft\": \"fassungskraft\",\n  \"fast\": \"fast\",\n  \"fasten\": \"fast\",\n  \"fastenopfer\": \"fastenopf\",\n  \"fastnacht\": \"fastnacht\",\n  \"fastnachtslüge\": \"fastnachtslug\",\n  \"fastnachtszeit\": \"fastnachtszeit\",\n  \"fasziniert\": \"fasziniert\",\n  \"fatale\": \"fatal\",\n  \"fatalen\": \"fatal\",\n  \"fatum\": \"fatum\",\n  \"fauchende\": \"fauchend\",\n  \"fauchte\": \"faucht\",\n  \"faul\": \"faul\",\n  \"faule\": \"faul\",\n  \"faulenzen\": \"faulenz\",\n  \"fauler\": \"faul\",\n  \"faulheit\": \"faulheit\",\n  \"faust\": \"faust\",\n  \"fäustchen\": \"faustch\",\n  \"fäuste\": \"faust\",\n  \"fäusten\": \"faust\",\n  \"faustgrosse\": \"faustgross\",\n  \"faustrechtes\": \"faustrecht\",\n  \"fauteuil\": \"fauteuil\",\n  \"fauteuils\": \"fauteuil\",\n  \"fax\": \"fax\",\n  \"faxen\": \"fax\",\n  \"fazit\": \"fazit\",\n  \"feature\": \"featur\",\n  \"febr\": \"febr\",\n  \"februar\": \"februar\",\n  \"fecht\": \"fecht\",\n  \"fechten\": \"fecht\",\n  \"fechtenden\": \"fechtend\",\n  \"fechtkunst\": \"fechtkun\",\n  \"fechtmeister\": \"fechtmeist\",\n  \"fechtschul\": \"fechtschul\",\n  \"feder\": \"fed\",\n  \"federführung\": \"federfuhr\",\n  \"federhüte\": \"federhut\",\n  \"federkraft\": \"federkraft\",\n  \"federlesens\": \"federles\",\n  \"federn\": \"fed\",\n  \"fee\": \"fee\",\n  \"feenhafte\": \"feenhaft\",\n  \"fegefeuer\": \"fegefeu\",\n  \"fegenden\": \"fegend\",\n  \"fegezeit\": \"fegezeit\",\n  \"fehl\": \"fehl\",\n  \"fehle\": \"fehl\",\n  \"fehlen\": \"fehl\",\n  \"fehler\": \"fehl\",\n  \"fehlern\": \"fehl\",\n  \"fehlete\": \"fehlet\",\n  \"fehlschlug\": \"fehlschlug\",\n  \"fehlschusses\": \"fehlschuss\",\n  \"fehlt\": \"fehlt\",\n  \"fehlte\": \"fehlt\",\n  \"fehlten\": \"fehlt\",\n  \"feier\": \"feier\",\n  \"feierabend\": \"feierab\",\n  \"feiere\": \"feier\",\n  \"feierlich\": \"feierlich\",\n  \"feierliche\": \"feierlich\",\n  \"feierlichen\": \"feierlich\",\n  \"feierlicher\": \"feierlich\",\n  \"feierliches\": \"feierlich\",\n  \"feiern\": \"feiern\",\n  \"feiert\": \"feiert\",\n  \"feiertage\": \"feiertag\",\n  \"feiertagen\": \"feiertag\",\n  \"feiertagsgwand\": \"feiertagsgwand\",\n  \"feiertagsröcken\": \"feiertagsrock\",\n  \"feierte\": \"feiert\",\n  \"feierten\": \"feiert\",\n  \"feig\": \"feig\",\n  \"feige\": \"feig\",\n  \"feigen\": \"feig\",\n  \"feigenbaum\": \"feigenbaum\",\n  \"feigenbäume\": \"feigenbaum\",\n  \"feigenbaumes\": \"feigenbaum\",\n  \"feigenbaums\": \"feigenbaum\",\n  \"feigenblätter\": \"feigenblatt\",\n  \"feigern\": \"feig\",\n  \"feigheit\": \"feigheit\",\n  \"feigling\": \"feigling\",\n  \"feigwarzen\": \"feigwarz\",\n  \"feilenstaub\": \"feilenstaub\",\n  \"fein\": \"fein\",\n  \"feind\": \"feind\",\n  \"feinde\": \"feind\",\n  \"feinden\": \"feind\",\n  \"feindes\": \"feind\",\n  \"feindin\": \"feindin\",\n  \"feindlich\": \"feindlich\",\n  \"feindlichen\": \"feindlich\",\n  \"feindschaft\": \"feindschaft\",\n  \"feindselig\": \"feindsel\",\n  \"feindseligen\": \"feindsel\",\n  \"feindseligkeit\": \"feindsel\",\n  \"feindseligkeiten\": \"feindsel\",\n  \"feine\": \"fein\",\n  \"feinem\": \"fein\",\n  \"feinen\": \"fein\",\n  \"feiner\": \"fein\",\n  \"feinere\": \"fein\",\n  \"feineren\": \"fein\",\n  \"feinern\": \"fein\",\n  \"feines\": \"fein\",\n  \"feinfühlend\": \"feinfuhl\",\n  \"feinschaft\": \"feinschaft\",\n  \"feinschmecker\": \"feinschmeck\",\n  \"feinsten\": \"fein\",\n  \"feist\": \"feist\",\n  \"feistes\": \"feist\",\n  \"feisthirsch\": \"feisthirsch\",\n  \"feistzeit\": \"feistzeit\",\n  \"feixt\": \"feixt\",\n  \"feld\": \"feld\",\n  \"felde\": \"feld\",\n  \"felder\": \"feld\",\n  \"feldern\": \"feld\",\n  \"felderzeugnis\": \"felderzeugnis\",\n  \"feldes\": \"feld\",\n  \"feldfrüchte\": \"feldfrucht\",\n  \"feldfutter\": \"feldfutt\",\n  \"feldgeschrei\": \"feldgeschrei\",\n  \"feldherde\": \"feldherd\",\n  \"feldherr\": \"feldherr\",\n  \"feldleutnant\": \"feldleutnant\",\n  \"feldprediger\": \"feldpred\",\n  \"feldrande\": \"feldrand\",\n  \"feldseite\": \"feldseit\",\n  \"feldsteinen\": \"feldstein\",\n  \"feldwebelsgang\": \"feldwebelsgang\",\n  \"feldweg\": \"feldweg\",\n  \"feldzug\": \"feldzug\",\n  \"feldzuges\": \"feldzug\",\n  \"felix\": \"felix\",\n  \"fell\": \"fell\",\n  \"fellchen\": \"fellch\",\n  \"felle\": \"fell\",\n  \"felleisen\": \"felleis\",\n  \"felleisenfuhrwerke\": \"felleisenfuhrwerk\",\n  \"felleisens\": \"felleis\",\n  \"fellen\": \"fell\",\n  \"fels\": \"fel\",\n  \"felsan\": \"felsan\",\n  \"felsblock\": \"felsblock\",\n  \"felsblöcke\": \"felsblock\",\n  \"felsen\": \"fels\",\n  \"felsenkette\": \"felsenkett\",\n  \"felsennase\": \"felsennas\",\n  \"felsentor\": \"felsentor\",\n  \"felsgestalten\": \"felsgestalt\",\n  \"felsgetürme\": \"felsgeturm\",\n  \"felskegel\": \"felskegel\",\n  \"felskolossen\": \"felskoloss\",\n  \"felsmassen\": \"felsmass\",\n  \"felsnase\": \"felsnas\",\n  \"felsplateau\": \"felsplateau\",\n  \"felsplatte\": \"felsplatt\",\n  \"felsplatten\": \"felsplatt\",\n  \"felssteine\": \"felsstein\",\n  \"felstisch\": \"felstisch\",\n  \"felswand\": \"felswand\",\n  \"felswänden\": \"felswand\",\n  \"felszacke\": \"felszack\",\n  \"femgesehen\": \"femgeseh\",\n  \"fenn\": \"fenn\",\n  \"fenster\": \"fenst\",\n  \"fensterbrett\": \"fensterbrett\",\n  \"fensterchen\": \"fensterch\",\n  \"fensterflügel\": \"fensterflugel\",\n  \"fenstern\": \"fenst\",\n  \"fensternische\": \"fenstern\",\n  \"fensterrand\": \"fensterrand\",\n  \"fensters\": \"fenst\",\n  \"fensterscheiben\": \"fensterscheib\",\n  \"fenstersimse\": \"fenstersims\",\n  \"fenstervorhänge\": \"fenstervorhang\",\n  \"fergus\": \"fergus\",\n  \"ferien\": \"feri\",\n  \"ferienjob\": \"ferienjob\",\n  \"ferienstübchens\": \"ferienstubch\",\n  \"feris\": \"feris\",\n  \"ferkelgequiek\": \"ferkelgequiek\",\n  \"fern\": \"fern\",\n  \"fernab\": \"fernab\",\n  \"ferne\": \"fern\",\n  \"fernem\": \"fern\",\n  \"fernen\": \"fern\",\n  \"ferner\": \"fern\",\n  \"fernere\": \"fern\",\n  \"ferneren\": \"fern\",\n  \"ferneres\": \"fern\",\n  \"fernerhin\": \"fernerhin\",\n  \"fernes\": \"fern\",\n  \"fernher\": \"fernh\",\n  \"fernrohr\": \"fernrohr\",\n  \"fernrohrs\": \"fernrohr\",\n  \"fernsehen\": \"fernseh\",\n  \"fernsichtige\": \"fernsicht\",\n  \"fernsten\": \"fern\",\n  \"ferse\": \"fers\",\n  \"fersen\": \"fers\",\n  \"fertig\": \"fertig\",\n  \"fertigbrachte\": \"fertigbracht\",\n  \"fertige\": \"fertig\",\n  \"fertigen\": \"fertig\",\n  \"fertiggestellt\": \"fertiggestellt\",\n  \"fertigzubringen\": \"fertigzubring\",\n  \"fesseln\": \"fesseln\",\n  \"fesselte\": \"fesselt\",\n  \"fest\": \"fest\",\n  \"festband\": \"festband\",\n  \"feste\": \"fest\",\n  \"festem\": \"fest\",\n  \"festen\": \"fest\",\n  \"fester\": \"fest\",\n  \"festerem\": \"fest\",\n  \"festes\": \"fest\",\n  \"festgebannt\": \"festgebannt\",\n  \"festgebauten\": \"festgebaut\",\n  \"festgebunden\": \"festgebund\",\n  \"festgehalten\": \"festgehalt\",\n  \"festgeklebt\": \"festgeklebt\",\n  \"festgeklemmt\": \"festgeklemmt\",\n  \"festgelegt\": \"festgelegt\",\n  \"festgemachte\": \"festgemacht\",\n  \"festgesetzte\": \"festgesetzt\",\n  \"festgestellt\": \"festgestellt\",\n  \"festgottesdienst\": \"festgottesdien\",\n  \"festhalten\": \"festhalt\",\n  \"festivitatum\": \"festivitatum\",\n  \"festland\": \"festland\",\n  \"festlich\": \"festlich\",\n  \"festlichen\": \"festlich\",\n  \"festmal\": \"festmal\",\n  \"festnahme\": \"festnahm\",\n  \"festnehmen\": \"festnehm\",\n  \"festpredigt\": \"festpredigt\",\n  \"festsaale\": \"festsaal\",\n  \"festschmaus\": \"festschmaus\",\n  \"festsetzt\": \"festsetzt\",\n  \"festsetzte\": \"festsetzt\",\n  \"festsetzten\": \"festsetzt\",\n  \"feststehende\": \"feststeh\",\n  \"feststellen\": \"feststell\",\n  \"feststellt\": \"feststellt\",\n  \"feststellung\": \"feststell\",\n  \"festung\": \"festung\",\n  \"festungen\": \"festung\",\n  \"festzuhalten\": \"festzuhalt\",\n  \"festzusetzen\": \"festzusetz\",\n  \"festzustellen\": \"festzustell\",\n  \"fett\": \"fett\",\n  \"fette\": \"fett\",\n  \"fetten\": \"fett\",\n  \"fetter\": \"fett\",\n  \"fettes\": \"fett\",\n  \"fettigkeit\": \"fettig\",\n  \"fettigkeiten\": \"fettig\",\n  \"fettwerden\": \"fettwerd\",\n  \"fetzchen\": \"fetzch\",\n  \"fetzel\": \"fetzel\",\n  \"fetzen\": \"fetz\",\n  \"feucht\": \"feucht\",\n  \"feuchten\": \"feucht\",\n  \"feuchtes\": \"feucht\",\n  \"feuer\": \"feu\",\n  \"feuerbauche\": \"feuerbauch\",\n  \"feuerberg\": \"feuerberg\",\n  \"feuerchen\": \"feuerch\",\n  \"feuerduft\": \"feuerduft\",\n  \"feuerfarben\": \"feuerfarb\",\n  \"feuerflamme\": \"feuerflamm\",\n  \"feuerflammen\": \"feuerflamm\",\n  \"feuerglanz\": \"feuerglanz\",\n  \"feuerherde\": \"feuerherd\",\n  \"feuerhölle\": \"feuerholl\",\n  \"feuerkohlen\": \"feuerkohl\",\n  \"feuern\": \"feu\",\n  \"feuerofen\": \"feuerof\",\n  \"feuerpfuhl\": \"feuerpfuhl\",\n  \"feuerrot\": \"feuerrot\",\n  \"feuerröte\": \"feuerrot\",\n  \"feuers\": \"feu\",\n  \"feuersäule\": \"feuersaul\",\n  \"feuersbrünsten\": \"feuersbrun\",\n  \"feuerschlacht\": \"feuerschlacht\",\n  \"feuerschlange\": \"feuerschlang\",\n  \"feuerspeienden\": \"feuerspei\",\n  \"feuerstrom\": \"feuerstrom\",\n  \"feuerung\": \"feuer\",\n  \"feuerwaffen\": \"feuerwaff\",\n  \"feuerwehrmann\": \"feuerwehrmann\",\n  \"feuerwerk\": \"feuerwerk\",\n  \"feuerzungen\": \"feuerz\",\n  \"feurig\": \"feurig\",\n  \"feurige\": \"feurig\",\n  \"feurigem\": \"feurig\",\n  \"feurigen\": \"feurig\",\n  \"feuriges\": \"feurig\",\n  \"feurigsten\": \"feurig\",\n  \"fiber\": \"fib\",\n  \"fiberchen\": \"fiberch\",\n  \"fibern\": \"fib\",\n  \"ficht\": \"ficht\",\n  \"fichten\": \"ficht\",\n  \"fichtenast\": \"fichtenast\",\n  \"fichtenbusch\": \"fichtenbusch\",\n  \"fichtenbüschlein\": \"fichtenbuschlein\",\n  \"fichtengebüsche\": \"fichtengebusch\",\n  \"fichtengestrüpp\": \"fichtengestrupp\",\n  \"fichtenwipfel\": \"fichtenwipfel\",\n  \"fichtenzweigen\": \"fichtenzweig\",\n  \"fidel\": \"fidel\",\n  \"fieber\": \"fieb\",\n  \"fieberhaft\": \"fieberhaft\",\n  \"fieberhaften\": \"fieberhaft\",\n  \"fiebernde\": \"fiebernd\",\n  \"fiebernder\": \"fiebernd\",\n  \"fieberte\": \"fiebert\",\n  \"fiedelmann\": \"fiedelmann\",\n  \"fiel\": \"fiel\",\n  \"fiele\": \"fiel\",\n  \"fielen\": \"fiel\",\n  \"figur\": \"figur\",\n  \"figürchen\": \"figurch\",\n  \"figuren\": \"figur\",\n  \"filiale\": \"filial\",\n  \"film\": \"film\",\n  \"filmfestival\": \"filmfestival\",\n  \"filmfirma\": \"filmfirma\",\n  \"filmversion\": \"filmversion\",\n  \"filz\": \"filz\",\n  \"filzhütchen\": \"filzhutch\",\n  \"filzkleider\": \"filzkleid\",\n  \"finanziell\": \"finanziell\",\n  \"finanzielle\": \"finanziell\",\n  \"finanziellen\": \"finanziell\",\n  \"finanzieren\": \"finanzi\",\n  \"finanziert\": \"finanziert\",\n  \"finanzleistungen\": \"finanzleist\",\n  \"finanzpolitisches\": \"finanzpolit\",\n  \"finanzstadt\": \"finanzstadt\",\n  \"find\": \"find\",\n  \"finde\": \"find\",\n  \"finden\": \"find\",\n  \"findende\": \"findend\",\n  \"finder\": \"find\",\n  \"findest\": \"find\",\n  \"findet\": \"findet\",\n  \"findige\": \"findig\",\n  \"findt\": \"findt\",\n  \"fing\": \"fing\",\n  \"fingen\": \"fing\",\n  \"finger\": \"fing\",\n  \"fingerabdruck\": \"fingerabdruck\",\n  \"fingerchen\": \"fingerch\",\n  \"fingerhut\": \"fingerhut\",\n  \"fingern\": \"fing\",\n  \"fingers\": \"fing\",\n  \"fingerspitzen\": \"fingerspitz\",\n  \"fingerstellung\": \"fingerstell\",\n  \"fink\": \"fink\",\n  \"finken\": \"fink\",\n  \"finster\": \"finst\",\n  \"finstere\": \"finst\",\n  \"finsteren\": \"finst\",\n  \"finsteres\": \"finst\",\n  \"finsterm\": \"finsterm\",\n  \"finstern\": \"finst\",\n  \"finsternis\": \"finsternis\",\n  \"finsternissen\": \"finsternis\",\n  \"finten\": \"fint\",\n  \"fir\": \"fir\",\n  \"firlefanz\": \"firlefanz\",\n  \"firma\": \"firma\",\n  \"firmen\": \"firm\",\n  \"first\": \"first\",\n  \"firste\": \"first\",\n  \"firti\": \"firti\",\n  \"fisch\": \"fisch\",\n  \"fischblattern\": \"fischblatt\",\n  \"fischchen\": \"fischch\",\n  \"fische\": \"fisch\",\n  \"fischeimer\": \"fischeim\",\n  \"fischen\": \"fisch\",\n  \"fischer\": \"fisch\",\n  \"fischerei\": \"fischerei\",\n  \"fischergeräte\": \"fischergerat\",\n  \"fischern\": \"fisch\",\n  \"fisches\": \"fisch\",\n  \"fischesser\": \"fischess\",\n  \"fischest\": \"fisch\",\n  \"fischgattungen\": \"fischgatt\",\n  \"fischlein\": \"fischlein\",\n  \"fish\": \"fish\",\n  \"fittiche\": \"fittich\",\n  \"fittichen\": \"fittich\",\n  \"fittichs\": \"fittich\",\n  \"fixe\": \"fix\",\n  \"fixen\": \"fix\",\n  \"fläche\": \"flach\",\n  \"flachen\": \"flach\",\n  \"flächen\": \"flach\",\n  \"flächendeckend\": \"flachendeck\",\n  \"flachs\": \"flach\",\n  \"flächsenen\": \"flachs\",\n  \"flachses\": \"flachs\",\n  \"flackernde\": \"flackernd\",\n  \"flackerten\": \"flackert\",\n  \"fladenkuchen\": \"fladenkuch\",\n  \"flair\": \"flair\",\n  \"flämmchen\": \"flammch\",\n  \"flamme\": \"flamm\",\n  \"flammen\": \"flamm\",\n  \"flammenbart\": \"flammenbart\",\n  \"flammende\": \"flammend\",\n  \"flammenden\": \"flammend\",\n  \"flammendes\": \"flammend\",\n  \"flammenmeer\": \"flammenme\",\n  \"flanke\": \"flank\",\n  \"fläschchen\": \"flaschch\",\n  \"flasche\": \"flasch\",\n  \"flaschen\": \"flasch\",\n  \"flats\": \"flat\",\n  \"flattergeräusch\": \"flattergerausch\",\n  \"flattern\": \"flatt\",\n  \"flatternde\": \"flatternd\",\n  \"flatternden\": \"flatternd\",\n  \"flatterspiel\": \"flatterspiel\",\n  \"flatterte\": \"flattert\",\n  \"flatterten\": \"flattert\",\n  \"flaum\": \"flaum\",\n  \"flaumkissen\": \"flaumkiss\",\n  \"flavio\": \"flavio\",\n  \"flechte\": \"flecht\",\n  \"flechtenfelde\": \"flechtenfeld\",\n  \"flechtengetrümmer\": \"flechtengetrumm\",\n  \"fleck\": \"fleck\",\n  \"fleckchen\": \"fleckch\",\n  \"flecken\": \"fleck\",\n  \"fledermäuschen\": \"fledermausch\",\n  \"flegelei\": \"flegelei\",\n  \"flehen\": \"fleh\",\n  \"flehend\": \"flehend\",\n  \"flehenden\": \"flehend\",\n  \"flehens\": \"fleh\",\n  \"flehet\": \"flehet\",\n  \"fleht\": \"fleht\",\n  \"flehte\": \"fleht\",\n  \"fleisch\": \"fleisch\",\n  \"fleischbrühe\": \"fleischbruh\",\n  \"fleische\": \"fleisch\",\n  \"fleischer\": \"fleisch\",\n  \"fleischermesser\": \"fleischermess\",\n  \"fleisches\": \"fleisch\",\n  \"fleischigem\": \"fleischig\",\n  \"fleischlich\": \"fleischlich\",\n  \"fleischliche\": \"fleischlich\",\n  \"fleischlichen\": \"fleischlich\",\n  \"fleiss\": \"fleiss\",\n  \"fleiß\": \"fleiss\",\n  \"fleissig\": \"fleissig\",\n  \"fleißig\": \"fleissig\",\n  \"fleissigen\": \"fleissig\",\n  \"fleissiger\": \"fleissig\",\n  \"fleißiger\": \"fleissig\",\n  \"fleissigsten\": \"fleissig\",\n  \"fleißigsten\": \"fleissig\",\n  \"fletschte\": \"fletscht\",\n  \"flicht\": \"flicht\",\n  \"flickte\": \"flickt\",\n  \"fliederbusch\": \"fliederbusch\",\n  \"fliederwerk\": \"fliederwerk\",\n  \"fliege\": \"flieg\",\n  \"fliegeliedchen\": \"fliegeliedch\",\n  \"fliegen\": \"flieg\",\n  \"fliegend\": \"fliegend\",\n  \"fliegende\": \"fliegend\",\n  \"fliegenden\": \"fliegend\",\n  \"fliegender\": \"fliegend\",\n  \"fliegenmutter\": \"fliegenmutt\",\n  \"fliegt\": \"fliegt\",\n  \"fliehen\": \"flieh\",\n  \"fliehet\": \"fliehet\",\n  \"flieht\": \"flieht\",\n  \"fliese\": \"flies\",\n  \"fliesen\": \"flies\",\n  \"fliessen\": \"fliess\",\n  \"fließen\": \"fliess\",\n  \"fliessende\": \"fliessend\",\n  \"fliessendes\": \"fliessend\",\n  \"fliesst\": \"fliesst\",\n  \"fließt\": \"fliesst\",\n  \"flimmerte\": \"flimmert\",\n  \"flink\": \"flink\",\n  \"flinke\": \"flink\",\n  \"flinker\": \"flink\",\n  \"flinkfüssigen\": \"flinkfuss\",\n  \"flinten\": \"flint\",\n  \"flittchen\": \"flittch\",\n  \"flittergoldes\": \"flittergold\",\n  \"flitterstaat\": \"flitterstaat\",\n  \"flocht\": \"flocht\",\n  \"flochten\": \"flocht\",\n  \"flocke\": \"flock\",\n  \"flocken\": \"flock\",\n  \"flog\": \"flog\",\n  \"flogen\": \"flog\",\n  \"flögen\": \"flog\",\n  \"floh\": \"floh\",\n  \"flohen\": \"floh\",\n  \"flor\": \"flor\",\n  \"florenz\": \"florenz\",\n  \"florian\": \"florian\",\n  \"floss\": \"floss\",\n  \"floß\": \"floss\",\n  \"flossen\": \"floss\",\n  \"flössen\": \"floss\",\n  \"flößen\": \"floss\",\n  \"flösste\": \"flosst\",\n  \"flöte\": \"flot\",\n  \"flöten\": \"flot\",\n  \"flötenden\": \"flotend\",\n  \"flötenspieler\": \"flotenspiel\",\n  \"flottmachen\": \"flottmach\",\n  \"fluch\": \"fluch\",\n  \"flüche\": \"fluch\",\n  \"fluchen\": \"fluch\",\n  \"fluchens\": \"fluch\",\n  \"flucht\": \"flucht\",\n  \"fluchte\": \"flucht\",\n  \"fluchten\": \"flucht\",\n  \"flüchteten\": \"fluchtet\",\n  \"fluchtgedanken\": \"fluchtgedank\",\n  \"fluchtgelder\": \"fluchtgeld\",\n  \"flüchtig\": \"fluchtig\",\n  \"flüchtige\": \"fluchtig\",\n  \"flüchtigem\": \"fluchtig\",\n  \"flüchtigen\": \"fluchtig\",\n  \"flüchtiger\": \"fluchtig\",\n  \"flüchtiges\": \"fluchtig\",\n  \"flüchtigsten\": \"fluchtig\",\n  \"flüchtling\": \"fluchtling\",\n  \"flüchtlinge\": \"fluchtling\",\n  \"flüchtlingscamp\": \"fluchtlingscamp\",\n  \"flüchtlingslager\": \"fluchtlingslag\",\n  \"flüchtlingslagers\": \"fluchtlingslag\",\n  \"fluchtriss\": \"fluchtriss\",\n  \"flug\": \"flug\",\n  \"fluge\": \"flug\",\n  \"flügel\": \"flugel\",\n  \"flügelchen\": \"flugelch\",\n  \"flügelein\": \"flugelein\",\n  \"flügelmann\": \"flugelmann\",\n  \"flügeln\": \"flugeln\",\n  \"flügelschläge\": \"flugelschlag\",\n  \"flügeltüren\": \"flugeltur\",\n  \"flügelzuge\": \"flugelzug\",\n  \"fluggästen\": \"fluggast\",\n  \"flügge\": \"flugg\",\n  \"flüggen\": \"flugg\",\n  \"fluggesellschaft\": \"fluggesellschaft\",\n  \"flughafen\": \"flughaf\",\n  \"flughafengebäude\": \"flughafengebaud\",\n  \"flughafenpolizei\": \"flughafenpolizei\",\n  \"flughafens\": \"flughaf\",\n  \"flugmaschinchen\": \"flugmaschinch\",\n  \"flugmaschinen\": \"flugmaschin\",\n  \"flugplatz\": \"flugplatz\",\n  \"flugs\": \"flug\",\n  \"flugzeug\": \"flugzeug\",\n  \"fluktuationsrate\": \"fluktuationsrat\",\n  \"flur\": \"flur\",\n  \"flure\": \"flur\",\n  \"fluren\": \"flur\",\n  \"fluss\": \"fluss\",\n  \"fluß\": \"fluss\",\n  \"flusse\": \"fluss\",\n  \"flüsse\": \"fluss\",\n  \"flüssen\": \"fluss\",\n  \"flusses\": \"fluss\",\n  \"flüstern\": \"flust\",\n  \"flüsternde\": \"flusternd\",\n  \"flüstert\": \"flustert\",\n  \"flüsterte\": \"flustert\",\n  \"flüsterten\": \"flustert\",\n  \"flut\": \"flut\",\n  \"fluten\": \"flut\",\n  \"focht\": \"focht\",\n  \"focis\": \"focis\",\n  \"fodern\": \"fod\",\n  \"foemina\": \"foemina\",\n  \"föhnstiefel\": \"fohnstiefel\",\n  \"föhre\": \"fohr\",\n  \"föhrenstrunke\": \"fohrenstrunk\",\n  \"folg\": \"folg\",\n  \"folge\": \"folg\",\n  \"folgen\": \"folg\",\n  \"folgend\": \"folgend\",\n  \"folgende\": \"folgend\",\n  \"folgendem\": \"folgend\",\n  \"folgenden\": \"folgend\",\n  \"folgender\": \"folgend\",\n  \"folgendermassen\": \"folgendermass\",\n  \"folgendermaßen\": \"folgendermass\",\n  \"folgendes\": \"folgend\",\n  \"folgern\": \"folg\",\n  \"folgerung\": \"folger\",\n  \"folgerungen\": \"folger\",\n  \"folget\": \"folget\",\n  \"folgezeit\": \"folgezeit\",\n  \"folglich\": \"folglich\",\n  \"folgsam\": \"folgsam\",\n  \"folgsames\": \"folgsam\",\n  \"folgsamkeit\": \"folgsam\",\n  \"folgt\": \"folgt\",\n  \"folgte\": \"folgt\",\n  \"folgten\": \"folgt\",\n  \"folie\": \"foli\",\n  \"folter\": \"folt\",\n  \"foltern\": \"folt\",\n  \"fonds\": \"fond\",\n  \"fontenelle\": \"fontenell\",\n  \"foppe\": \"fopp\",\n  \"for\": \"for\",\n  \"force\": \"forc\",\n  \"fordere\": \"ford\",\n  \"förderer\": \"ford\",\n  \"fordern\": \"ford\",\n  \"fördern\": \"ford\",\n  \"fordert\": \"fordert\",\n  \"forderten\": \"fordert\",\n  \"forderung\": \"forder\",\n  \"forderungen\": \"forder\",\n  \"forelle\": \"forell\",\n  \"forellen\": \"forell\",\n  \"foren\": \"for\",\n  \"form\": \"form\",\n  \"formal\": \"formal\",\n  \"formalen\": \"formal\",\n  \"formaler\": \"formal\",\n  \"formalien\": \"formali\",\n  \"formationen\": \"formation\",\n  \"formel\": \"formel\",\n  \"formell\": \"formell\",\n  \"formelle\": \"formell\",\n  \"formeln\": \"formeln\",\n  \"formen\": \"form\",\n  \"formenwesens\": \"formenwes\",\n  \"formierte\": \"formiert\",\n  \"formierten\": \"formiert\",\n  \"förmig\": \"formig\",\n  \"förmlich\": \"formlich\",\n  \"förmliche\": \"formlich\",\n  \"förmlichen\": \"formlich\",\n  \"förmlichkeit\": \"formlich\",\n  \"formulieren\": \"formuli\",\n  \"formulierung\": \"formulier\",\n  \"forschen\": \"forsch\",\n  \"forschend\": \"forschend\",\n  \"forschende\": \"forschend\",\n  \"forscherin\": \"forscherin\",\n  \"forschung\": \"forschung\",\n  \"forschungen\": \"forschung\",\n  \"förster\": \"forst\",\n  \"försterbart\": \"forsterbart\",\n  \"försterin\": \"forsterin\",\n  \"forstgehilfen\": \"forstgehilf\",\n  \"forsthaus\": \"forsthaus\",\n  \"forsthauses\": \"forsthaus\",\n  \"forstmannsuniformen\": \"forstmannsuniform\",\n  \"forstmeister\": \"forstmeist\",\n  \"forstverwaltung\": \"forstverwalt\",\n  \"fort\": \"fort\",\n  \"fortan\": \"fortan\",\n  \"fortbestand\": \"fortbestand\",\n  \"fortbestehen\": \"fortbesteh\",\n  \"fortbetrieb\": \"fortbetrieb\",\n  \"fortbewegte\": \"fortbewegt\",\n  \"fortdauer\": \"fortdau\",\n  \"fortdauern\": \"fortdau\",\n  \"fortdauernde\": \"fortdauernd\",\n  \"fortdauernden\": \"fortdauernd\",\n  \"fortdauert\": \"fortdauert\",\n  \"fortdauerten\": \"fortdauert\",\n  \"fortfahren\": \"fortfahr\",\n  \"fortfahrend\": \"fortfahr\",\n  \"fortflog\": \"fortflog\",\n  \"fortfuhr\": \"fortfuhr\",\n  \"fortführte\": \"fortfuhrt\",\n  \"fortgang\": \"fortgang\",\n  \"fortgange\": \"fortgang\",\n  \"fortgeführt\": \"fortgefuhrt\",\n  \"fortgegangen\": \"fortgegang\",\n  \"fortgeh\": \"fortgeh\",\n  \"fortgehen\": \"fortgeh\",\n  \"fortgehend\": \"fortgeh\",\n  \"fortgehender\": \"fortgeh\",\n  \"fortgejagt\": \"fortgejagt\",\n  \"fortgeleitet\": \"fortgeleitet\",\n  \"fortgepflanzt\": \"fortgepflanzt\",\n  \"fortgepustet\": \"fortgepustet\",\n  \"fortgeritten\": \"fortgeritt\",\n  \"fortgerückt\": \"fortgeruckt\",\n  \"fortgesetzt\": \"fortgesetzt\",\n  \"fortgesetzte\": \"fortgesetzt\",\n  \"fortgesetzten\": \"fortgesetzt\",\n  \"fortgetrieben\": \"fortgetrieb\",\n  \"fortgeworfen\": \"fortgeworf\",\n  \"fortgezogen\": \"fortgezog\",\n  \"fortging\": \"fortging\",\n  \"fortkomme\": \"fortkomm\",\n  \"fortkommen\": \"fortkomm\",\n  \"fortlassen\": \"fortlass\",\n  \"fortlaufend\": \"fortlauf\",\n  \"fortlaufende\": \"fortlauf\",\n  \"fortlaufenden\": \"fortlauf\",\n  \"fortleben\": \"fortleb\",\n  \"fortlebend\": \"fortleb\",\n  \"fortpflanzung\": \"fortpflanz\",\n  \"fortpflanzungen\": \"fortpflanz\",\n  \"fortreisst\": \"fortreisst\",\n  \"fortreißt\": \"fortreisst\",\n  \"fortriss\": \"fortriss\",\n  \"fortriß\": \"fortriss\",\n  \"fortschickte\": \"fortschickt\",\n  \"fortschreite\": \"fortschreit\",\n  \"fortschreiten\": \"fortschreit\",\n  \"fortschreitend\": \"fortschreit\",\n  \"fortschreitende\": \"fortschreit\",\n  \"fortschreitens\": \"fortschreit\",\n  \"fortschreitet\": \"fortschreitet\",\n  \"fortschreitung\": \"fortschreit\",\n  \"fortschritt\": \"fortschritt\",\n  \"fortschritte\": \"fortschritt\",\n  \"fortschritten\": \"fortschritt\",\n  \"fortsetzen\": \"fortsetz\",\n  \"fortsetzte\": \"fortsetzt\",\n  \"fortsetzung\": \"fortsetz\",\n  \"forttragen\": \"forttrag\",\n  \"forttreiben\": \"forttreib\",\n  \"fortuna\": \"fortuna\",\n  \"fortwährend\": \"fortwahr\",\n  \"fortwährende\": \"fortwahr\",\n  \"fortwährenden\": \"fortwahr\",\n  \"fortwährender\": \"fortwahr\",\n  \"fortwährendes\": \"fortwahr\",\n  \"fortwarf\": \"fortwarf\",\n  \"fortwuchern\": \"fortwuch\",\n  \"fortzeugen\": \"fortzeug\",\n  \"fortzog\": \"fortzog\",\n  \"fortzubewegen\": \"fortzubeweg\",\n  \"fortzureissen\": \"fortzureiss\",\n  \"fortzuscheuchen\": \"fortzuscheuch\",\n  \"fortzusetzen\": \"fortzusetz\",\n  \"forum\": \"forum\",\n  \"forumein\": \"forumein\",\n  \"fotografiert\": \"fotografiert\",\n  \"fotomodell\": \"fotomodell\",\n  \"fotos\": \"fotos\",\n  \"foyer\": \"foy\",\n  \"frack\": \"frack\",\n  \"frag\": \"frag\",\n  \"frage\": \"frag\",\n  \"fragebogen\": \"fragebog\",\n  \"fragen\": \"frag\",\n  \"fragend\": \"fragend\",\n  \"fraget\": \"fraget\",\n  \"fragliche\": \"fraglich\",\n  \"fraglichen\": \"fraglich\",\n  \"fragsucht\": \"fragsucht\",\n  \"fragt\": \"fragt\",\n  \"fragte\": \"fragt\",\n  \"fragten\": \"fragt\",\n  \"françois\": \"françois\",\n  \"frank\": \"frank\",\n  \"franken\": \"frank\",\n  \"frankfurt\": \"frankfurt\",\n  \"frankierten\": \"frankiert\",\n  \"frankreich\": \"frankreich\",\n  \"frankreichs\": \"frankreich\",\n  \"fransen\": \"frans\",\n  \"franz\": \"franz\",\n  \"franzens\": \"franz\",\n  \"franziskus\": \"franziskus\",\n  \"franzl\": \"franzl\",\n  \"franzosen\": \"franzos\",\n  \"französisch\": \"franzos\",\n  \"französische\": \"franzos\",\n  \"französischen\": \"franzos\",\n  \"französischer\": \"franzos\",\n  \"frass\": \"frass\",\n  \"frassen\": \"frass\",\n  \"fraßen\": \"frass\",\n  \"frau\": \"frau\",\n  \"frauchen\": \"frauch\",\n  \"frauen\": \"frau\",\n  \"frauenbild\": \"frauenbild\",\n  \"frauenbund\": \"frauenbund\",\n  \"frauenbusen\": \"frauenbus\",\n  \"frauenfahrzeug\": \"frauenfahrzeug\",\n  \"frauengemütes\": \"frauengemut\",\n  \"frauengesichter\": \"frauengesicht\",\n  \"frauenhilfe\": \"frauenhilf\",\n  \"frauenkirche\": \"frauenkirch\",\n  \"frauenkleider\": \"frauenkleid\",\n  \"frauenmund\": \"frauenmund\",\n  \"frauennamen\": \"frauennam\",\n  \"frauensarg\": \"frauensarg\",\n  \"frauensleute\": \"frauensleut\",\n  \"frauensperson\": \"frauensperson\",\n  \"frauenstimmen\": \"frauenstimm\",\n  \"frauentums\": \"frauentum\",\n  \"frauenzimmer\": \"frauenzimm\",\n  \"frauenzimmerchen\": \"frauenzimmerch\",\n  \"frauenzimmern\": \"frauenzimm\",\n  \"frauenzimmers\": \"frauenzimm\",\n  \"fräulein\": \"fraulein\",\n  \"fräuleins\": \"fraulein\",\n  \"freakszene\": \"freaksz\",\n  \"frech\": \"frech\",\n  \"freche\": \"frech\",\n  \"frechen\": \"frech\",\n  \"frecher\": \"frech\",\n  \"freches\": \"frech\",\n  \"frechheit\": \"frechheit\",\n  \"frechheiten\": \"frechheit\",\n  \"frechste\": \"frech\",\n  \"frechstem\": \"frech\",\n  \"frechsten\": \"frech\",\n  \"free\": \"free\",\n  \"frei\": \"frei\",\n  \"freiblieb\": \"freiblieb\",\n  \"freiburg\": \"freiburg\",\n  \"freiburger\": \"freiburg\",\n  \"freie\": \"freie\",\n  \"freiem\": \"freiem\",\n  \"freien\": \"freien\",\n  \"freier\": \"freier\",\n  \"freiern\": \"freiern\",\n  \"freiersleuten\": \"freiersleut\",\n  \"freies\": \"freies\",\n  \"freigebe\": \"freigeb\",\n  \"freigeben\": \"freigeb\",\n  \"freigebig\": \"freigeb\",\n  \"freigebiger\": \"freigeb\",\n  \"freigegeben\": \"freigegeb\",\n  \"freigelassen\": \"freigelass\",\n  \"freiheit\": \"freiheit\",\n  \"freiheiten\": \"freiheit\",\n  \"freiheitliche\": \"freiheit\",\n  \"freilassen\": \"freilass\",\n  \"freilich\": \"freilich\",\n  \"freiliessen\": \"freiliess\",\n  \"freiließen\": \"freiliess\",\n  \"freimännin\": \"freimannin\",\n  \"freimanns\": \"freimann\",\n  \"freimannsenkelin\": \"freimannsenkelin\",\n  \"freimannshäusl\": \"freimannshausl\",\n  \"freischaren\": \"freischar\",\n  \"freischärler\": \"freischarl\",\n  \"freisinnig\": \"freisinn\",\n  \"freisinnigen\": \"freisinn\",\n  \"freisinnigkeit\": \"freisinn\",\n  \"freitag\": \"freitag\",\n  \"freitreppe\": \"freitrepp\",\n  \"freiwillig\": \"freiwill\",\n  \"freiwillige\": \"freiwill\",\n  \"freiwilligem\": \"freiwill\",\n  \"freiwilligen\": \"freiwill\",\n  \"freiwilliger\": \"freiwill\",\n  \"freiwilliges\": \"freiwill\",\n  \"freiwilligkeit\": \"freiwill\",\n  \"freizügern\": \"freizug\",\n  \"freizulassen\": \"freizulass\",\n  \"freizustellen\": \"freizustell\",\n  \"frelmännin\": \"frelmannin\",\n  \"fremd\": \"fremd\",\n  \"fremdartig\": \"fremdart\",\n  \"fremdartigen\": \"fremdart\",\n  \"fremdartiger\": \"fremdart\",\n  \"fremdartigkeit\": \"fremdart\",\n  \"fremde\": \"fremd\",\n  \"fremden\": \"fremd\",\n  \"fremder\": \"fremd\",\n  \"fremdes\": \"fremd\",\n  \"fremdling\": \"fremdling\",\n  \"fremdlinge\": \"fremdling\",\n  \"freskomalereien\": \"freskomalerei\",\n  \"fress\": \"fress\",\n  \"fresse\": \"fress\",\n  \"fressen\": \"fress\",\n  \"fresser\": \"fress\",\n  \"freud\": \"freud\",\n  \"freude\": \"freud\",\n  \"freuden\": \"freud\",\n  \"freudenähnliches\": \"freudenahn\",\n  \"freudenberg\": \"freudenberg\",\n  \"freudenfest\": \"freudenf\",\n  \"freudenreichen\": \"freudenreich\",\n  \"freudenruf\": \"freudenruf\",\n  \"freudenrufs\": \"freudenruf\",\n  \"freudenschüsse\": \"freudenschuss\",\n  \"freudentage\": \"freudentag\",\n  \"freudentanz\": \"freudentanz\",\n  \"freudestrahlend\": \"freudestrahl\",\n  \"freudig\": \"freudig\",\n  \"freudigem\": \"freudig\",\n  \"freudigen\": \"freudig\",\n  \"freudiger\": \"freudig\",\n  \"freudigkeit\": \"freudig\",\n  \"freue\": \"freu\",\n  \"freuen\": \"freu\",\n  \"freuend\": \"freuend\",\n  \"freuet\": \"freuet\",\n  \"freuete\": \"freuet\",\n  \"freund\": \"freund\",\n  \"freunde\": \"freund\",\n  \"freunden\": \"freund\",\n  \"freundes\": \"freund\",\n  \"freundesarme\": \"freundesarm\",\n  \"freundin\": \"freundin\",\n  \"freundinnen\": \"freundinn\",\n  \"freundlich\": \"freundlich\",\n  \"freundliche\": \"freundlich\",\n  \"freundlichem\": \"freundlich\",\n  \"freundlichen\": \"freundlich\",\n  \"freundlicher\": \"freundlich\",\n  \"freundliches\": \"freundlich\",\n  \"freundlichkeit\": \"freundlich\",\n  \"freundlichste\": \"freundlich\",\n  \"freundnachbarliche\": \"freundnachbar\",\n  \"freundschaft\": \"freundschaft\",\n  \"freundschaftlich\": \"freundschaft\",\n  \"freundschaftlichen\": \"freundschaft\",\n  \"freut\": \"freut\",\n  \"freute\": \"freut\",\n  \"freuten\": \"freut\",\n  \"frevel\": \"frevel\",\n  \"frevelhaft\": \"frevelhaft\",\n  \"frevels\": \"frevel\",\n  \"fridolin\": \"fridolin\",\n  \"fridolins\": \"fridolin\",\n  \"friede\": \"fried\",\n  \"frieden\": \"fried\",\n  \"friedens\": \"fried\",\n  \"friedensbewegung\": \"friedensbeweg\",\n  \"friedensbruch\": \"friedensbruch\",\n  \"friedensbund\": \"friedensbund\",\n  \"friedensopfers\": \"friedensopf\",\n  \"friedensprodukte\": \"friedensprodukt\",\n  \"friedensrichter\": \"friedensricht\",\n  \"friedensruhe\": \"friedensruh\",\n  \"friedenszeiten\": \"friedenszeit\",\n  \"friedfertig\": \"friedfert\",\n  \"friedfertigen\": \"friedfert\",\n  \"friedfertiges\": \"friedfert\",\n  \"friedfertigkeit\": \"friedfert\",\n  \"friedhofscafe\": \"friedhofscaf\",\n  \"friedhofsmauer\": \"friedhofsmau\",\n  \"friedlich\": \"friedlich\",\n  \"friedliche\": \"friedlich\",\n  \"friedlichen\": \"friedlich\",\n  \"friedliches\": \"friedlich\",\n  \"friedlichsten\": \"friedlich\",\n  \"friedliebende\": \"friedlieb\",\n  \"friedrich\": \"friedrich\",\n  \"friends\": \"friend\",\n  \"frierenden\": \"frierend\",\n  \"friert\": \"friert\",\n  \"friher\": \"frih\",\n  \"frisch\": \"frisch\",\n  \"frischduftende\": \"frischduft\",\n  \"frische\": \"frisch\",\n  \"frischen\": \"frisch\",\n  \"frischer\": \"frisch\",\n  \"frisches\": \"frisch\",\n  \"frisierten\": \"frisiert\",\n  \"friss\": \"friss\",\n  \"frissest\": \"friss\",\n  \"frisst\": \"frisst\",\n  \"frißt\": \"frisst\",\n  \"frist\": \"frist\",\n  \"fristen\": \"frist\",\n  \"fristeten\": \"fristet\",\n  \"fritz\": \"fritz\",\n  \"fritzchen\": \"fritzch\",\n  \"fritzens\": \"fritz\",\n  \"froh\": \"froh\",\n  \"frohe\": \"froh\",\n  \"frohen\": \"froh\",\n  \"fröhlich\": \"frohlich\",\n  \"fröhliche\": \"frohlich\",\n  \"fröhlichen\": \"frohlich\",\n  \"fröhlicher\": \"frohlich\",\n  \"fröhliches\": \"frohlich\",\n  \"fröhlichkeit\": \"frohlich\",\n  \"fröhlichste\": \"frohlich\",\n  \"fröhlichsten\": \"frohlich\",\n  \"frohlocken\": \"frohlock\",\n  \"frohsinn\": \"frohsinn\",\n  \"fromm\": \"fromm\",\n  \"fromme\": \"fromm\",\n  \"frommen\": \"fromm\",\n  \"frommer\": \"fromm\",\n  \"frommes\": \"fromm\",\n  \"frömmigkeit\": \"frommig\",\n  \"frömmlichen\": \"frommlich\",\n  \"frommt\": \"frommt\",\n  \"fronen\": \"fron\",\n  \"frönen\": \"fron\",\n  \"front\": \"front\",\n  \"frönte\": \"front\",\n  \"fronten\": \"front\",\n  \"frontpage\": \"frontpag\",\n  \"fronvögte\": \"fronvogt\",\n  \"froren\": \"fror\",\n  \"frosch\": \"frosch\",\n  \"froscharme\": \"froscharm\",\n  \"frösche\": \"frosch\",\n  \"fröschen\": \"frosch\",\n  \"froschmaul\": \"froschmaul\",\n  \"froschmäulig\": \"froschmaul\",\n  \"frost\": \"frost\",\n  \"froste\": \"frost\",\n  \"fröstelte\": \"frostelt\",\n  \"frucht\": \"frucht\",\n  \"fruchtbar\": \"fruchtbar\",\n  \"fruchtbaren\": \"fruchtbar\",\n  \"fruchtbarer\": \"fruchtbar\",\n  \"fruchtbaum\": \"fruchtbaum\",\n  \"früchte\": \"frucht\",\n  \"fruchten\": \"frucht\",\n  \"früchten\": \"frucht\",\n  \"fruchtlos\": \"fruchtlos\",\n  \"fruchtsaft\": \"fruchtsaft\",\n  \"früh\": \"fruh\",\n  \"frühaufsteher\": \"fruhaufsteh\",\n  \"frühe\": \"fruh\",\n  \"frühen\": \"fruh\",\n  \"früher\": \"fruh\",\n  \"frühere\": \"fruh\",\n  \"früheren\": \"fruh\",\n  \"früherer\": \"fruh\",\n  \"früheres\": \"fruh\",\n  \"frühesten\": \"fruh\",\n  \"frühester\": \"fruh\",\n  \"frühjahr\": \"fruhjahr\",\n  \"frühleben\": \"fruhleb\",\n  \"frühlicht\": \"fruhlicht\",\n  \"frühling\": \"fruhling\",\n  \"frühlings\": \"fruhling\",\n  \"frühlingsanfang\": \"fruhlingsanfang\",\n  \"frühlingsbäche\": \"fruhlingsbach\",\n  \"frühlingshimmel\": \"fruhlingshimmel\",\n  \"frühlingslebens\": \"fruhlingsleb\",\n  \"frühlingslicht\": \"fruhlingslicht\",\n  \"frühlingslied\": \"fruhlingslied\",\n  \"frühlingslüftlein\": \"fruhlingsluftlein\",\n  \"frühlingsmorgen\": \"fruhlingsmorg\",\n  \"frühlingsritt\": \"fruhlingsritt\",\n  \"frühlingsritter\": \"fruhlingsritt\",\n  \"frühlingssonne\": \"fruhlingssonn\",\n  \"frühlingssonnenwelt\": \"fruhlingssonnenwelt\",\n  \"frühlingstag\": \"fruhlingstag\",\n  \"frühlingstage\": \"fruhlingstag\",\n  \"frühlingstagen\": \"fruhlingstag\",\n  \"frühlingstages\": \"fruhlingstag\",\n  \"frühlingswärme\": \"fruhlingswarm\",\n  \"frühpirsch\": \"fruhpirsch\",\n  \"frühreifen\": \"fruhreif\",\n  \"frührot\": \"fruhrot\",\n  \"frühschoppen\": \"fruhschopp\",\n  \"frühstück\": \"fruhstuck\",\n  \"frühstücken\": \"fruhstuck\",\n  \"frühstücks\": \"fruhstuck\",\n  \"frühstücksei\": \"fruhstucksei\",\n  \"frühstücksgeschirr\": \"fruhstucksgeschirr\",\n  \"frühwolken\": \"fruhwolk\",\n  \"frumm\": \"frumm\",\n  \"frummen\": \"frumm\",\n  \"frustra\": \"frustra\",\n  \"fuchs\": \"fuch\",\n  \"füchs\": \"fuch\",\n  \"füchse\": \"fuchs\",\n  \"fuchsen\": \"fuchs\",\n  \"füchsin\": \"fuchsin\",\n  \"fuchsriegeln\": \"fuchsriegeln\",\n  \"fuchtelnd\": \"fuchtelnd\",\n  \"fuchtelte\": \"fuchtelt\",\n  \"fuerunt\": \"fuerunt\",\n  \"fufzg\": \"fufzg\",\n  \"füge\": \"fug\",\n  \"fügen\": \"fug\",\n  \"fügt\": \"fugt\",\n  \"fügte\": \"fugt\",\n  \"fügung\": \"fugung\",\n  \"fühlbar\": \"fuhlbar\",\n  \"fühlbare\": \"fuhlbar\",\n  \"fühle\": \"fuhl\",\n  \"fühlen\": \"fuhl\",\n  \"fühlend\": \"fuhlend\",\n  \"fühlenden\": \"fuhlend\",\n  \"fühlerhörnchen\": \"fuhlerhornch\",\n  \"fühlern\": \"fuhl\",\n  \"fühlhörnchen\": \"fuhlhornch\",\n  \"fühlhörner\": \"fuhlhorn\",\n  \"fühllosen\": \"fuhllos\",\n  \"fühllosigkeit\": \"fuhllos\",\n  \"fühlst\": \"fuhl\",\n  \"fühlt\": \"fuhlt\",\n  \"fühlte\": \"fuhlt\",\n  \"fühlten\": \"fuhlt\",\n  \"fuhr\": \"fuhr\",\n  \"fuhre\": \"fuhr\",\n  \"führe\": \"fuhr\",\n  \"fuhren\": \"fuhr\",\n  \"führen\": \"fuhr\",\n  \"führende\": \"fuhrend\",\n  \"führenden\": \"fuhrend\",\n  \"führer\": \"fuhr\",\n  \"führerschein\": \"fuhrerschein\",\n  \"führest\": \"fuhr\",\n  \"führet\": \"fuhret\",\n  \"führete\": \"fuhret\",\n  \"fuhrknecht\": \"fuhrknecht\",\n  \"fuhrleute\": \"fuhrleut\",\n  \"führt\": \"fuhrt\",\n  \"führte\": \"fuhrt\",\n  \"führten\": \"fuhrt\",\n  \"führung\": \"fuhrung\",\n  \"führungsleute\": \"fuhrungsleut\",\n  \"führungszeugnis\": \"fuhrungszeugnis\",\n  \"fuhrwerk\": \"fuhrwerk\",\n  \"fuhrwerke\": \"fuhrwerk\",\n  \"fuhrwerklein\": \"fuhrwerklein\",\n  \"füll\": \"full\",\n  \"fülle\": \"full\",\n  \"füllen\": \"full\",\n  \"füllenden\": \"fullend\",\n  \"füllet\": \"fullet\",\n  \"füllfederhalter\": \"fullfederhalt\",\n  \"füllt\": \"fullt\",\n  \"füllte\": \"fullt\",\n  \"füllten\": \"fullt\",\n  \"fummelt\": \"fummelt\",\n  \"fun\": \"fun\",\n  \"fundament\": \"fundament\",\n  \"fundamente\": \"fundament\",\n  \"funden\": \"fund\",\n  \"fundenseetauern\": \"fundenseetau\",\n  \"fundiert\": \"fundiert\",\n  \"fünf\": \"funf\",\n  \"fünfbeiniges\": \"funfbein\",\n  \"fünfe\": \"funf\",\n  \"fünfen\": \"funf\",\n  \"fünfer\": \"funf\",\n  \"fünfhundert\": \"funfhundert\",\n  \"fünfhundertmarkscheine\": \"funfhundertmarkschein\",\n  \"fünfhundertmarkscheinen\": \"funfhundertmarkschein\",\n  \"fünfjähriges\": \"funfjahr\",\n  \"fünfte\": \"funft\",\n  \"fünftelminute\": \"funftelminut\",\n  \"fünften\": \"funft\",\n  \"fünftes\": \"funft\",\n  \"fünfunddreissigjährigen\": \"funfunddreissigjahr\",\n  \"fünfunddreißigmal\": \"funfunddreissigmal\",\n  \"fünfundneunzig\": \"funfundneunz\",\n  \"fünfundsechzig\": \"funfundsechz\",\n  \"fünfundvierziger\": \"funfundvierz\",\n  \"fünfundzwanzig\": \"funfundzwanz\",\n  \"fünfzehn\": \"funfzehn\",\n  \"fünfzehnmal\": \"funfzehnmal\",\n  \"fünfzehnten\": \"funfzehnt\",\n  \"fünfzig\": \"funfzig\",\n  \"fünfziger\": \"funfzig\",\n  \"fünfzigjährigen\": \"funfzigjahr\",\n  \"fünfzigsten\": \"funfzig\",\n  \"fungiert\": \"fungiert\",\n  \"funk\": \"funk\",\n  \"fünkchen\": \"funkch\",\n  \"funkelhelle\": \"funkelhell\",\n  \"funkeln\": \"funkeln\",\n  \"funkelnden\": \"funkelnd\",\n  \"funkelte\": \"funkelt\",\n  \"funkelten\": \"funkelt\",\n  \"funken\": \"funk\",\n  \"funkendampf\": \"funkendampf\",\n  \"funkenknopf\": \"funkenknopf\",\n  \"funkhaus\": \"funkhaus\",\n  \"funkhauses\": \"funkhaus\",\n  \"funkleute\": \"funkleut\",\n  \"funktion\": \"funktion\",\n  \"funktionen\": \"funktion\",\n  \"funktionieren\": \"funktioni\",\n  \"funktionierende\": \"funktionier\",\n  \"funktionierte\": \"funktioniert\",\n  \"fur\": \"fur\",\n  \"für\": \"fur\",\n  \"fürbass\": \"furbass\",\n  \"fürbaß\": \"furbass\",\n  \"fürbittbuch\": \"furbittbuch\",\n  \"fürbitte\": \"furbitt\",\n  \"fürbittgebet\": \"furbittgebet\",\n  \"fürbringen\": \"furbring\",\n  \"furche\": \"furch\",\n  \"furchen\": \"furch\",\n  \"furcht\": \"furcht\",\n  \"fürcht\": \"furcht\",\n  \"furchtbar\": \"furchtbar\",\n  \"furchtbare\": \"furchtbar\",\n  \"furchtbarem\": \"furchtbar\",\n  \"furchtbaren\": \"furchtbar\",\n  \"furchtbarste\": \"furchtbarst\",\n  \"fürchte\": \"furcht\",\n  \"fürchten\": \"furcht\",\n  \"fürchtende\": \"furchtend\",\n  \"fürchtenden\": \"furchtend\",\n  \"fürchterlich\": \"furcht\",\n  \"fürchterliche\": \"furcht\",\n  \"fürchterlichen\": \"furcht\",\n  \"fürchterliches\": \"furcht\",\n  \"fürchtet\": \"furchtet\",\n  \"fürchtete\": \"furchtet\",\n  \"fürchteten\": \"furchtet\",\n  \"furchtlosigkeit\": \"furchtlos\",\n  \"furchtsam\": \"furchtsam\",\n  \"furchtsamen\": \"furchtsam\",\n  \"furchtsames\": \"furchtsam\",\n  \"fürder\": \"furd\",\n  \"fürdere\": \"furd\",\n  \"füreinander\": \"fureinand\",\n  \"fürgschützt\": \"furgschutzt\",\n  \"fürgstreckt\": \"furgstreckt\",\n  \"fürnehmere\": \"furnehm\",\n  \"fürplärren\": \"furplarr\",\n  \"fürs\": \"fur\",\n  \"fürschlag\": \"furschlag\",\n  \"fürsichtige\": \"fursicht\",\n  \"fürst\": \"furst\",\n  \"fürsten\": \"furst\",\n  \"fürstenhochzeit\": \"furstenhochzeit\",\n  \"fürstenmantel\": \"furstenmantel\",\n  \"fürstentodes\": \"furstentod\",\n  \"fürstlich\": \"furstlich\",\n  \"fürstlichen\": \"furstlich\",\n  \"fürstpröpstlichen\": \"furstpropst\",\n  \"furt\": \"furt\",\n  \"furtghadert\": \"furtghadert\",\n  \"fürwahr\": \"furwahr\",\n  \"fürwahrhalten\": \"furwahrhalt\",\n  \"fürwahrhaltens\": \"furwahrhalt\",\n  \"fuss\": \"fuss\",\n  \"fuß\": \"fuss\",\n  \"füss\": \"fuss\",\n  \"fussball\": \"fussball\",\n  \"fussballteam\": \"fussballteam\",\n  \"fussballverein\": \"fussballverein\",\n  \"fussboden\": \"fussbod\",\n  \"fußboden\": \"fussbod\",\n  \"füsschen\": \"fussch\",\n  \"fusse\": \"fuss\",\n  \"fuße\": \"fuss\",\n  \"füsse\": \"fuss\",\n  \"füße\": \"fuss\",\n  \"füssen\": \"fuss\",\n  \"füßen\": \"fuss\",\n  \"fussende\": \"fussend\",\n  \"fusses\": \"fuss\",\n  \"fußes\": \"fuss\",\n  \"fussgänger\": \"fussgang\",\n  \"fusspfad\": \"fusspfad\",\n  \"fussschemelchen\": \"fussschemelch\",\n  \"fusssohle\": \"fusssohl\",\n  \"fußsohle\": \"fusssohl\",\n  \"fusssohlen\": \"fusssohl\",\n  \"fußsohlen\": \"fusssohl\",\n  \"fussspitze\": \"fussspitz\",\n  \"fußspitze\": \"fussspitz\",\n  \"fussspitzen\": \"fussspitz\",\n  \"fußspitzen\": \"fussspitz\",\n  \"fusstritt\": \"fusstritt\",\n  \"fusstritten\": \"fusstritt\",\n  \"futter\": \"futt\",\n  \"futterbarren\": \"futterbarr\",\n  \"füttere\": \"futt\",\n  \"füttern\": \"futt\",\n  \"füttert\": \"futtert\",\n  \"g\": \"g\",\n  \"gab\": \"gab\",\n  \"gäb\": \"gab\",\n  \"gabe\": \"gab\",\n  \"gäbe\": \"gab\",\n  \"gabel\": \"gabel\",\n  \"gabelhirsch\": \"gabelhirsch\",\n  \"gaben\": \"gab\",\n  \"gäbst\": \"gabst\",\n  \"gackernden\": \"gackernd\",\n  \"gad\": \"gad\",\n  \"gaffen\": \"gaff\",\n  \"gaffende\": \"gaffend\",\n  \"gaffer\": \"gaff\",\n  \"gahlings\": \"gahling\",\n  \"gähnte\": \"gahnt\",\n  \"galantinen\": \"galantin\",\n  \"galerie\": \"galeri\",\n  \"galgen\": \"galg\",\n  \"galgenhund\": \"galgenhund\",\n  \"galgenlaune\": \"galgenlaun\",\n  \"galion\": \"galion\",\n  \"galions\": \"galion\",\n  \"galle\": \"gall\",\n  \"gallen\": \"gall\",\n  \"galler\": \"gall\",\n  \"gallige\": \"gallig\",\n  \"galligen\": \"gallig\",\n  \"galopp\": \"galopp\",\n  \"galoppierte\": \"galoppiert\",\n  \"galt\": \"galt\",\n  \"gälte\": \"galt\",\n  \"galten\": \"galt\",\n  \"gamsbart\": \"gamsbart\",\n  \"gan\": \"gan\",\n  \"gang\": \"gang\",\n  \"gangbar\": \"gangbar\",\n  \"gangbaren\": \"gangbar\",\n  \"gange\": \"gang\",\n  \"gänge\": \"gang\",\n  \"gängelband\": \"gangelband\",\n  \"gangen\": \"gang\",\n  \"gängen\": \"gang\",\n  \"gans\": \"gan\",\n  \"gäns\": \"gan\",\n  \"gänse\": \"gans\",\n  \"gänsen\": \"gans\",\n  \"gänsestall\": \"gansestall\",\n  \"ganz\": \"ganz\",\n  \"ganze\": \"ganz\",\n  \"ganzem\": \"ganz\",\n  \"ganzen\": \"ganz\",\n  \"ganzer\": \"ganz\",\n  \"ganzes\": \"ganz\",\n  \"gänzlich\": \"ganzlich\",\n  \"gänzliche\": \"ganzlich\",\n  \"gänzlichen\": \"ganzlich\",\n  \"gänzlicher\": \"ganzlich\",\n  \"gar\": \"gar\",\n  \"garantie\": \"garanti\",\n  \"garaus\": \"garaus\",\n  \"garben\": \"garb\",\n  \"garderobe\": \"garderob\",\n  \"garderobestücken\": \"garderobestuck\",\n  \"gardine\": \"gardin\",\n  \"gardinen\": \"gardin\",\n  \"gardinenstange\": \"gardinenstang\",\n  \"gare\": \"gar\",\n  \"gärende\": \"garend\",\n  \"gärenden\": \"garend\",\n  \"garn\": \"garn\",\n  \"garne\": \"garn\",\n  \"garnflechten\": \"garnflecht\",\n  \"garniert\": \"garniert\",\n  \"garnsbock\": \"garnsbock\",\n  \"garstig\": \"garstig\",\n  \"garstige\": \"garstig\",\n  \"garstiger\": \"garstig\",\n  \"garstiges\": \"garstig\",\n  \"garten\": \"gart\",\n  \"gärten\": \"gart\",\n  \"garteng\": \"garteng\",\n  \"gartenhäuschen\": \"gartenhausch\",\n  \"gartenmitte\": \"gartenmitt\",\n  \"gartens\": \"gart\",\n  \"gartenwege\": \"gartenweg\",\n  \"gartenzaun\": \"gartenzaun\",\n  \"gärtner\": \"gartn\",\n  \"gässchen\": \"gassch\",\n  \"gasse\": \"gass\",\n  \"gassen\": \"gass\",\n  \"gassenbuben\": \"gassenbub\",\n  \"gassenjunge\": \"gassenj\",\n  \"gassenjungen\": \"gassenj\",\n  \"gassenmädchen\": \"gassenmadch\",\n  \"gast\": \"gast\",\n  \"gaste\": \"gast\",\n  \"gäste\": \"gast\",\n  \"gästen\": \"gast\",\n  \"gastes\": \"gast\",\n  \"gastfreunde\": \"gastfreund\",\n  \"gastfreundlichen\": \"gastfreund\",\n  \"gastgebenden\": \"gastgeb\",\n  \"gastgeber\": \"gastgeb\",\n  \"gastgebers\": \"gastgeb\",\n  \"gasthaus\": \"gasthaus\",\n  \"gasthause\": \"gasthaus\",\n  \"gasthauses\": \"gasthaus\",\n  \"gasthof\": \"gasthof\",\n  \"gasthofe\": \"gasthof\",\n  \"gasthofes\": \"gasthof\",\n  \"gastliche\": \"gastlich\",\n  \"gastlichen\": \"gastlich\",\n  \"gastmahle\": \"gastmahl\",\n  \"gastspiel\": \"gastspiel\",\n  \"gaststube\": \"gaststub\",\n  \"gaststuben\": \"gaststub\",\n  \"gastwirt\": \"gastwirt\",\n  \"gates\": \"gat\",\n  \"gatte\": \"gatt\",\n  \"gatten\": \"gatt\",\n  \"gattentreue\": \"gattentreu\",\n  \"gattin\": \"gattin\",\n  \"gattung\": \"gattung\",\n  \"gattungen\": \"gattung\",\n  \"gattungs\": \"gattung\",\n  \"gau\": \"gau\",\n  \"gaukelei\": \"gaukelei\",\n  \"gäule\": \"gaul\",\n  \"gaumen\": \"gaum\",\n  \"gazegewänder\": \"gazegewand\",\n  \"gazeschleier\": \"gazeschlei\",\n  \"gb\": \"gb\",\n  \"ge\": \"ge\",\n  \"geachtet\": \"geachtet\",\n  \"geädert\": \"geadert\",\n  \"geahnt\": \"geahnt\",\n  \"gealterten\": \"gealtert\",\n  \"gealttätige\": \"gealttat\",\n  \"geändert\": \"geandert\",\n  \"geängstigtes\": \"geangstigt\",\n  \"geantwortet\": \"geantwortet\",\n  \"gearbeitet\": \"gearbeitet\",\n  \"gearbeiteten\": \"gearbeitet\",\n  \"geärgert\": \"geargert\",\n  \"geartet\": \"geartet\",\n  \"geäussert\": \"geaussert\",\n  \"geäußert\": \"geaussert\",\n  \"geb\": \"geb\",\n  \"gebacken\": \"geback\",\n  \"gebackene\": \"geback\",\n  \"gebackenen\": \"geback\",\n  \"gebadet\": \"gebadet\",\n  \"gebahnt\": \"gebahnt\",\n  \"gebälks\": \"gebalk\",\n  \"geballt\": \"geballt\",\n  \"geballte\": \"geballt\",\n  \"gebar\": \"gebar\",\n  \"gebärde\": \"gebard\",\n  \"gebärden\": \"gebard\",\n  \"gebärdend\": \"gebard\",\n  \"gebärdenden\": \"gebard\",\n  \"gebärdenspiel\": \"gebardenspiel\",\n  \"gebärdet\": \"gebardet\",\n  \"gebärdete\": \"gebardet\",\n  \"gebären\": \"gebar\",\n  \"gebärerin\": \"gebarerin\",\n  \"gebäude\": \"gebaud\",\n  \"gebauet\": \"gebauet\",\n  \"gebaumelt\": \"gebaumelt\",\n  \"gebaut\": \"gebaut\",\n  \"gebaute\": \"gebaut\",\n  \"gebe\": \"geb\",\n  \"gebein\": \"gebein\",\n  \"gebeine\": \"gebein\",\n  \"gebeinen\": \"gebein\",\n  \"gebell\": \"gebell\",\n  \"gebellt\": \"gebellt\",\n  \"geben\": \"geb\",\n  \"gebend\": \"gebend\",\n  \"gebessert\": \"gebessert\",\n  \"gebest\": \"geb\",\n  \"gebet\": \"gebet\",\n  \"gebetbuch\": \"gebetbuch\",\n  \"gebete\": \"gebet\",\n  \"gebeten\": \"gebet\",\n  \"gebetet\": \"gebetet\",\n  \"gebetläuten\": \"gebetlaut\",\n  \"gebetskapelle\": \"gebetskapell\",\n  \"gebettet\": \"gebettet\",\n  \"gebeugt\": \"gebeugt\",\n  \"gebeugte\": \"gebeugt\",\n  \"gebeugtes\": \"gebeugt\",\n  \"gebiert\": \"gebiert\",\n  \"gebiet\": \"gebiet\",\n  \"gebiete\": \"gebiet\",\n  \"gebieten\": \"gebiet\",\n  \"gebietenden\": \"gebiet\",\n  \"gebieter\": \"gebiet\",\n  \"gebieterin\": \"gebieterin\",\n  \"gebieterisch\": \"gebieter\",\n  \"gebietes\": \"gebiet\",\n  \"gebietet\": \"gebietet\",\n  \"gebilde\": \"gebild\",\n  \"gebilden\": \"gebild\",\n  \"gebildet\": \"gebildet\",\n  \"gebildeten\": \"gebildet\",\n  \"gebildeter\": \"gebildet\",\n  \"gebirg\": \"gebirg\",\n  \"gebirge\": \"gebirg\",\n  \"gebirges\": \"gebirg\",\n  \"gebirgsflecken\": \"gebirgsfleck\",\n  \"gebirgskräutermilch\": \"gebirgskrautermilch\",\n  \"gebirgsweib\": \"gebirgsweib\",\n  \"gebirgswildnis\": \"gebirgswildnis\",\n  \"gebissen\": \"gebiss\",\n  \"geblähten\": \"geblaht\",\n  \"gebläuter\": \"geblaut\",\n  \"geblendet\": \"geblendet\",\n  \"geblickt\": \"geblickt\",\n  \"geblieben\": \"geblieb\",\n  \"gebliebener\": \"geblieb\",\n  \"geblüt\": \"geblut\",\n  \"geblüte\": \"geblut\",\n  \"geblütes\": \"geblut\",\n  \"gebogen\": \"gebog\",\n  \"gebogenen\": \"gebog\",\n  \"gebohntem\": \"gebohnt\",\n  \"geboren\": \"gebor\",\n  \"geborene\": \"gebor\",\n  \"geborener\": \"gebor\",\n  \"geborgen\": \"geborg\",\n  \"geborgene\": \"geborg\",\n  \"geborgt\": \"geborgt\",\n  \"gebot\": \"gebot\",\n  \"gebote\": \"gebot\",\n  \"geboten\": \"gebot\",\n  \"gebotene\": \"gebot\",\n  \"gebotenen\": \"gebot\",\n  \"gebots\": \"gebot\",\n  \"gebrach\": \"gebrach\",\n  \"gebracht\": \"gebracht\",\n  \"gebrachte\": \"gebracht\",\n  \"gebrannt\": \"gebrannt\",\n  \"gebraten\": \"gebrat\",\n  \"gebratene\": \"gebrat\",\n  \"gebratenen\": \"gebrat\",\n  \"gebrauch\": \"gebrauch\",\n  \"gebrauche\": \"gebrauch\",\n  \"gebräuche\": \"gebrauch\",\n  \"gebrauchen\": \"gebrauch\",\n  \"gebräuchen\": \"gebrauch\",\n  \"gebrauches\": \"gebrauch\",\n  \"gebräuchlich\": \"gebrauch\",\n  \"gebräuchlicher\": \"gebrauch\",\n  \"gebrauchs\": \"gebrauch\",\n  \"gebraucht\": \"gebraucht\",\n  \"gebrauchte\": \"gebraucht\",\n  \"gebrauchten\": \"gebraucht\",\n  \"gebräunte\": \"gebraunt\",\n  \"gebräunten\": \"gebraunt\",\n  \"gebräuntes\": \"gebraunt\",\n  \"gebreitet\": \"gebreitet\",\n  \"gebremst\": \"gebrem\",\n  \"gebricht\": \"gebricht\",\n  \"gebrochen\": \"gebroch\",\n  \"gebrochener\": \"gebroch\",\n  \"gebrüll\": \"gebrull\",\n  \"gebrumm\": \"gebrumm\",\n  \"gebrummt\": \"gebrummt\",\n  \"gebt\": \"gebt\",\n  \"gebückt\": \"gebuckt\",\n  \"gebühr\": \"gebuhr\",\n  \"gebührend\": \"gebuhr\",\n  \"gebührt\": \"gebuhrt\",\n  \"gebührte\": \"gebuhrt\",\n  \"gebumst\": \"gebum\",\n  \"gebunden\": \"gebund\",\n  \"gebundenen\": \"gebund\",\n  \"gebundenes\": \"gebund\",\n  \"gebürsteten\": \"geburstet\",\n  \"geburt\": \"geburt\",\n  \"geburten\": \"geburt\",\n  \"gebürtig\": \"geburt\",\n  \"geburtsorte\": \"geburtsort\",\n  \"geburtsschein\": \"geburtsschein\",\n  \"geburtstag\": \"geburtstag\",\n  \"geburtstage\": \"geburtstag\",\n  \"geburtstages\": \"geburtstag\",\n  \"geburtstags\": \"geburtstag\",\n  \"gebüsch\": \"gebusch\",\n  \"gebüsche\": \"gebusch\",\n  \"gebüsst\": \"gebusst\",\n  \"gedacht\": \"gedacht\",\n  \"gedachte\": \"gedacht\",\n  \"gedachten\": \"gedacht\",\n  \"gedächten\": \"gedacht\",\n  \"gedächtnis\": \"gedachtnis\",\n  \"gedächtnisglauben\": \"gedachtnisglaub\",\n  \"gedächtnisse\": \"gedachtnis\",\n  \"gedächtnissen\": \"gedachtnis\",\n  \"gedächtnisses\": \"gedachtnis\",\n  \"gedämpft\": \"gedampft\",\n  \"gedämpftes\": \"gedampft\",\n  \"gedanke\": \"gedank\",\n  \"gedanken\": \"gedank\",\n  \"gedankenaustausch\": \"gedankenaustausch\",\n  \"gedankenform\": \"gedankenform\",\n  \"gedankengang\": \"gedankengang\",\n  \"gedankenlos\": \"gedankenlos\",\n  \"gedankenlose\": \"gedankenlos\",\n  \"gedankenlosen\": \"gedankenlos\",\n  \"gedankenlosigkeit\": \"gedankenlos\",\n  \"gedankenplanes\": \"gedankenplan\",\n  \"gedankenreichen\": \"gedankenreich\",\n  \"gedankenreihen\": \"gedankenreih\",\n  \"gedankens\": \"gedank\",\n  \"gedankenspäne\": \"gedankenspan\",\n  \"gedankenspielen\": \"gedankenspiel\",\n  \"gedankensprung\": \"gedankenspr\",\n  \"gedeckt\": \"gedeckt\",\n  \"gedeckten\": \"gedeckt\",\n  \"gedehnt\": \"gedehnt\",\n  \"gedeihen\": \"gedeih\",\n  \"gedeihens\": \"gedeih\",\n  \"gedeihliche\": \"gedeih\",\n  \"gedeihlichste\": \"gedeih\",\n  \"gedeiht\": \"gedeiht\",\n  \"gedemütigt\": \"gedemutigt\",\n  \"gedenk\": \"gedenk\",\n  \"gedenke\": \"gedenk\",\n  \"gedenken\": \"gedenk\",\n  \"gedenket\": \"gedenket\",\n  \"gedenkfeiern\": \"gedenkfei\",\n  \"gedenkmedaille\": \"gedenkmedaill\",\n  \"gedenkst\": \"gedenk\",\n  \"gedenkt\": \"gedenkt\",\n  \"gedenktag\": \"gedenktag\",\n  \"gedicht\": \"gedicht\",\n  \"gedichten\": \"gedicht\",\n  \"gediegenes\": \"gedieg\",\n  \"gediegne\": \"gediegn\",\n  \"gedieh\": \"gedieh\",\n  \"gediehen\": \"gedieh\",\n  \"gedient\": \"gedient\",\n  \"gediente\": \"gedient\",\n  \"gedonnerkracht\": \"gedonnerkracht\",\n  \"gedörrt\": \"gedorrt\",\n  \"gedörrte\": \"gedorrt\",\n  \"gedörrten\": \"gedorrt\",\n  \"gedränge\": \"gedrang\",\n  \"gedrängt\": \"gedrangt\",\n  \"gedreht\": \"gedreht\",\n  \"gedrehter\": \"gedreht\",\n  \"gedruckt\": \"gedruckt\",\n  \"gedrückt\": \"gedruckt\",\n  \"gedruckten\": \"gedruckt\",\n  \"gedrucktes\": \"gedruckt\",\n  \"gedrücktes\": \"gedruckt\",\n  \"gedrücktheit\": \"gedruckt\",\n  \"geduld\": \"geduld\",\n  \"geduldet\": \"geduldet\",\n  \"geduldig\": \"geduld\",\n  \"geduldigen\": \"geduld\",\n  \"geduldspiel\": \"geduldspiel\",\n  \"geduscht\": \"geduscht\",\n  \"geehrt\": \"geehrt\",\n  \"geehrtam\": \"geehrtam\",\n  \"geehrte\": \"geehrt\",\n  \"geehrten\": \"geehrt\",\n  \"geehrter\": \"geehrt\",\n  \"geeignet\": \"geeignet\",\n  \"geeigneten\": \"geeignet\",\n  \"geeigneter\": \"geeignet\",\n  \"geeilt\": \"geeilt\",\n  \"geeinten\": \"geeint\",\n  \"geendet\": \"geendet\",\n  \"geendigt\": \"geendigt\",\n  \"geerbt\": \"geerbt\",\n  \"geerntet\": \"geerntet\",\n  \"gefahr\": \"gefahr\",\n  \"gefährde\": \"gefahrd\",\n  \"gefährdet\": \"gefahrdet\",\n  \"gefährdung\": \"gefahrd\",\n  \"gefahren\": \"gefahr\",\n  \"gefährlich\": \"gefahr\",\n  \"gefährliche\": \"gefahr\",\n  \"gefährlichen\": \"gefahr\",\n  \"gefährlicher\": \"gefahr\",\n  \"gefährliches\": \"gefahr\",\n  \"gefährlichkeit\": \"gefahr\",\n  \"gefahrlos\": \"gefahrlos\",\n  \"gefährt\": \"gefahrt\",\n  \"gefährte\": \"gefahrt\",\n  \"gefährten\": \"gefahrt\",\n  \"gefährtin\": \"gefahrtin\",\n  \"gefallen\": \"gefall\",\n  \"gefällig\": \"gefall\",\n  \"gefälligkeit\": \"gefall\",\n  \"gefälligst\": \"gefall\",\n  \"gefällt\": \"gefallt\",\n  \"gefälschte\": \"gefalscht\",\n  \"gefälseht\": \"gefalseht\",\n  \"gefaltet\": \"gefaltet\",\n  \"gefalteten\": \"gefaltet\",\n  \"gefangen\": \"gefang\",\n  \"gefangene\": \"gefang\",\n  \"gefangenen\": \"gefang\",\n  \"gefangener\": \"gefang\",\n  \"gefangennahme\": \"gefangennahm\",\n  \"gefangennehmung\": \"gefangennehm\",\n  \"gefangenschaft\": \"gefangenschaft\",\n  \"gefangenschaften\": \"gefangenschaft\",\n  \"gefängnis\": \"gefangnis\",\n  \"gefängnisses\": \"gefangnis\",\n  \"gefärbt\": \"gefarbt\",\n  \"gefärbte\": \"gefarbt\",\n  \"gefärbten\": \"gefarbt\",\n  \"gefäss\": \"gefass\",\n  \"gefäß\": \"gefass\",\n  \"gefässe\": \"gefass\",\n  \"gefäße\": \"gefass\",\n  \"gefässen\": \"gefass\",\n  \"gefäßen\": \"gefass\",\n  \"gefasst\": \"gefasst\",\n  \"gefaßt\": \"gefasst\",\n  \"gefasste\": \"gefasst\",\n  \"gefassten\": \"gefasst\",\n  \"gefastet\": \"gefastet\",\n  \"gefecht\": \"gefecht\",\n  \"gefechtlärmens\": \"gefechtlarm\",\n  \"gefegt\": \"gefegt\",\n  \"gefehlt\": \"gefehlt\",\n  \"gefeiert\": \"gefeiert\",\n  \"gefeierte\": \"gefeiert\",\n  \"gefeit\": \"gefeit\",\n  \"gefertigt\": \"gefertigt\",\n  \"gefesselt\": \"gefesselt\",\n  \"gefiel\": \"gefiel\",\n  \"gefilde\": \"gefild\",\n  \"gefilmt\": \"gefilmt\",\n  \"gefilzt\": \"gefilzt\",\n  \"geflammten\": \"geflammt\",\n  \"geflecht\": \"geflecht\",\n  \"geflochten\": \"geflocht\",\n  \"geflogen\": \"geflog\",\n  \"geflohen\": \"gefloh\",\n  \"geflüchtet\": \"gefluchtet\",\n  \"geflügelte\": \"geflugelt\",\n  \"geflügelten\": \"geflugelt\",\n  \"gefolge\": \"gefolg\",\n  \"gefolgt\": \"gefolgt\",\n  \"gefordert\": \"gefordert\",\n  \"gefördert\": \"gefordert\",\n  \"geformt\": \"geformt\",\n  \"geformte\": \"geformt\",\n  \"geformten\": \"geformt\",\n  \"geformtes\": \"geformt\",\n  \"gefragt\": \"gefragt\",\n  \"gefressen\": \"gefress\",\n  \"gefrorener\": \"gefror\",\n  \"gefrühstückt\": \"gefruhstuckt\",\n  \"gefühl\": \"gefuhl\",\n  \"gefühle\": \"gefuhl\",\n  \"gefühlen\": \"gefuhl\",\n  \"gefühllos\": \"gefuhllos\",\n  \"gefühllosigkeit\": \"gefuhllos\",\n  \"gefühls\": \"gefuhl\",\n  \"gefühlt\": \"gefuhlt\",\n  \"gefühlvoller\": \"gefuhlvoll\",\n  \"geführet\": \"gefuhret\",\n  \"geführt\": \"gefuhrt\",\n  \"gefüllt\": \"gefullt\",\n  \"gefüllte\": \"gefullt\",\n  \"gefunden\": \"gefund\",\n  \"gefundenen\": \"gefund\",\n  \"gefundenes\": \"gefund\",\n  \"gefurchte\": \"gefurcht\",\n  \"gefurchten\": \"gefurcht\",\n  \"gefürchtet\": \"gefurchtet\",\n  \"gefürchtete\": \"gefurchtet\",\n  \"gefüttert\": \"gefuttert\",\n  \"gegangen\": \"gegang\",\n  \"gegangenen\": \"gegang\",\n  \"gegeben\": \"gegeb\",\n  \"gegebene\": \"gegeb\",\n  \"gegebenen\": \"gegeb\",\n  \"gegebenheiten\": \"gegeb\",\n  \"gegen\": \"geg\",\n  \"gegenargument\": \"gegenargument\",\n  \"gegenbild\": \"gegenbild\",\n  \"gegend\": \"gegend\",\n  \"gegenden\": \"gegend\",\n  \"gegeneinander\": \"gegeneinand\",\n  \"gegenfinanzierung\": \"gegenfinanzier\",\n  \"gegengewichts\": \"gegengewicht\",\n  \"gegengründe\": \"gegengrund\",\n  \"gegenliebe\": \"gegenlieb\",\n  \"gegensatz\": \"gegensatz\",\n  \"gegensatze\": \"gegensatz\",\n  \"gegensätze\": \"gegensatz\",\n  \"gegensätzen\": \"gegensatz\",\n  \"gegenseitig\": \"gegenseit\",\n  \"gegenseitige\": \"gegenseit\",\n  \"gegenseitigkeit\": \"gegenseit\",\n  \"gegenstand\": \"gegenstand\",\n  \"gegenstande\": \"gegenstand\",\n  \"gegenstände\": \"gegenstand\",\n  \"gegenständen\": \"gegenstand\",\n  \"gegenstandes\": \"gegenstand\",\n  \"gegenteil\": \"gegenteil\",\n  \"gegenüber\": \"gegenub\",\n  \"gegenüberliegende\": \"gegenuberlieg\",\n  \"gegenüberliegenden\": \"gegenuberlieg\",\n  \"gegenüberstanden\": \"gegenuberstand\",\n  \"gegenüberstehende\": \"gegenubersteh\",\n  \"gegenwart\": \"gegenwart\",\n  \"gegenwärtig\": \"gegenwart\",\n  \"gegenwärtige\": \"gegenwart\",\n  \"gegenwärtigem\": \"gegenwart\",\n  \"gegenwärtigen\": \"gegenwart\",\n  \"gegenwärtiger\": \"gegenwart\",\n  \"gegenwärtigeren\": \"gegenwart\",\n  \"gegenwehr\": \"gegenwehr\",\n  \"gegenwirkung\": \"gegenwirk\",\n  \"gegessen\": \"gegess\",\n  \"gegewelt\": \"gegewelt\",\n  \"geglänzt\": \"geglanzt\",\n  \"geglättete\": \"geglattet\",\n  \"geglätteten\": \"geglattet\",\n  \"geglaubt\": \"geglaubt\",\n  \"geglückt\": \"gegluckt\",\n  \"geglückte\": \"gegluckt\",\n  \"geglückten\": \"gegluckt\",\n  \"geglüht\": \"gegluht\",\n  \"gegner\": \"gegn\",\n  \"gegnerische\": \"gegner\",\n  \"gegnern\": \"gegn\",\n  \"gegners\": \"gegn\",\n  \"gegolten\": \"gegolt\",\n  \"gegönnt\": \"gegonnt\",\n  \"gegraben\": \"gegrab\",\n  \"gegröl\": \"gegrol\",\n  \"gegrübelt\": \"gegrubelt\",\n  \"gegründet\": \"gegrundet\",\n  \"gegründeten\": \"gegrundet\",\n  \"gegrüsst\": \"gegrusst\",\n  \"geguckt\": \"geguckt\",\n  \"geh\": \"geh\",\n  \"gehabt\": \"gehabt\",\n  \"gehaftet\": \"gehaftet\",\n  \"gehalt\": \"gehalt\",\n  \"gehalten\": \"gehalt\",\n  \"gehaltene\": \"gehalt\",\n  \"gehaltenes\": \"gehalt\",\n  \"gehaltlosigkeiten\": \"gehaltlos\",\n  \"gehalts\": \"gehalt\",\n  \"gehaltvollste\": \"gehaltvoll\",\n  \"gehandelt\": \"gehandelt\",\n  \"gehänge\": \"gehang\",\n  \"gehangen\": \"gehang\",\n  \"gehängen\": \"gehang\",\n  \"gehängt\": \"gehangt\",\n  \"gehängten\": \"gehangt\",\n  \"gehänselt\": \"gehanselt\",\n  \"geharrt\": \"geharrt\",\n  \"gehässigkeiten\": \"gehass\",\n  \"gehasst\": \"gehasst\",\n  \"gehaßt\": \"gehasst\",\n  \"gehassten\": \"gehasst\",\n  \"gehätschelt\": \"gehatschelt\",\n  \"gehaucht\": \"gehaucht\",\n  \"gehauen\": \"gehau\",\n  \"gehauenen\": \"gehau\",\n  \"gehäuft\": \"gehauft\",\n  \"gehäufte\": \"gehauft\",\n  \"gehäuften\": \"gehauft\",\n  \"gehaust\": \"gehaust\",\n  \"gehe\": \"geh\",\n  \"geheftet\": \"geheftet\",\n  \"gehefteten\": \"geheftet\",\n  \"gehege\": \"geheg\",\n  \"geheiliget\": \"geheiliget\",\n  \"geheiligt\": \"geheiligt\",\n  \"geheiligte\": \"geheiligt\",\n  \"geheilt\": \"geheilt\",\n  \"geheim\": \"geheim\",\n  \"geheime\": \"geheim\",\n  \"geheimen\": \"geheim\",\n  \"geheimer\": \"geheim\",\n  \"geheimes\": \"geheim\",\n  \"geheimnis\": \"geheimnis\",\n  \"geheimnisse\": \"geheimnis\",\n  \"geheimnissen\": \"geheimnis\",\n  \"geheimnisses\": \"geheimnis\",\n  \"geheimnisvoll\": \"geheimnisvoll\",\n  \"geheimnisvolle\": \"geheimnisvoll\",\n  \"geheimnisvollen\": \"geheimnisvoll\",\n  \"geheimnisvoller\": \"geheimnisvoll\",\n  \"geheimnisvolles\": \"geheimnisvoll\",\n  \"geheimnisvollste\": \"geheimnisvoll\",\n  \"geheimsten\": \"geheim\",\n  \"geheiratet\": \"geheiratet\",\n  \"geheissen\": \"geheiss\",\n  \"geheißen\": \"geheiss\",\n  \"geheizt\": \"geheizt\",\n  \"gehemmt\": \"gehemmt\",\n  \"gehen\": \"geh\",\n  \"gehend\": \"gehend\",\n  \"gehenden\": \"gehend\",\n  \"gehenkter\": \"gehenkt\",\n  \"gehet\": \"gehet\",\n  \"gehetzt\": \"gehetzt\",\n  \"gehetzten\": \"gehetzt\",\n  \"geheuer\": \"geheu\",\n  \"gehilfe\": \"gehilf\",\n  \"gehilfenprüfung\": \"gehilfenpruf\",\n  \"gehindert\": \"gehindert\",\n  \"gehirn\": \"gehirn\",\n  \"gehirne\": \"gehirn\",\n  \"gehirns\": \"gehirn\",\n  \"gehn\": \"gehn\",\n  \"gehoben\": \"gehob\",\n  \"gehofft\": \"gehofft\",\n  \"gehoffte\": \"gehofft\",\n  \"gehöften\": \"gehoft\",\n  \"geholfen\": \"geholf\",\n  \"geholt\": \"geholt\",\n  \"gehölz\": \"geholz\",\n  \"gehölze\": \"geholz\",\n  \"gehölzes\": \"geholz\",\n  \"gehör\": \"gehor\",\n  \"gehorchen\": \"gehorch\",\n  \"gehorchend\": \"gehorch\",\n  \"gehorchet\": \"gehorchet\",\n  \"gehorchst\": \"gehorch\",\n  \"gehorcht\": \"gehorcht\",\n  \"gehorchten\": \"gehorcht\",\n  \"gehöre\": \"gehor\",\n  \"gehören\": \"gehor\",\n  \"gehörig\": \"gehor\",\n  \"gehörige\": \"gehor\",\n  \"gehörigen\": \"gehor\",\n  \"gehöriger\": \"gehor\",\n  \"gehöriges\": \"gehor\",\n  \"gehörnte\": \"gehornt\",\n  \"gehörs\": \"gehor\",\n  \"gehorsam\": \"gehorsam\",\n  \"gehörst\": \"gehorst\",\n  \"gehört\": \"gehort\",\n  \"gehörte\": \"gehort\",\n  \"gehörten\": \"gehort\",\n  \"gehörtest\": \"gehort\",\n  \"gehrock\": \"gehrock\",\n  \"gehröcken\": \"gehrock\",\n  \"gehst\": \"gehst\",\n  \"geht\": \"geht\",\n  \"gehüllt\": \"gehullt\",\n  \"gehuret\": \"gehuret\",\n  \"gehuscht\": \"gehuscht\",\n  \"gehütet\": \"gehutet\",\n  \"geige\": \"geig\",\n  \"geigelein\": \"geigelein\",\n  \"geigen\": \"geig\",\n  \"geigender\": \"geigend\",\n  \"geigensumsemann\": \"geigensumsemann\",\n  \"geiger\": \"geig\",\n  \"geigers\": \"geig\",\n  \"geigte\": \"geigt\",\n  \"geirrt\": \"geirrt\",\n  \"geiss\": \"geiss\",\n  \"geissel\": \"geissel\",\n  \"geißel\": \"geissel\",\n  \"geist\": \"geist\",\n  \"geiste\": \"geist\",\n  \"geister\": \"geist\",\n  \"geisterblaue\": \"geisterblau\",\n  \"geistergesellschaft\": \"geistergesellschaft\",\n  \"geistergrauen\": \"geistergrau\",\n  \"geisterheere\": \"geisterhe\",\n  \"geistern\": \"geist\",\n  \"geisterrede\": \"geisterred\",\n  \"geistersprache\": \"geistersprach\",\n  \"geisterwelt\": \"geisterwelt\",\n  \"geistes\": \"geist\",\n  \"geistesgaben\": \"geistesgab\",\n  \"geistesgegenwart\": \"geistesgegenwart\",\n  \"geisteskräfte\": \"geisteskraft\",\n  \"geisteskranke\": \"geisteskrank\",\n  \"geistestalente\": \"geistestalent\",\n  \"geistesübung\": \"geistesub\",\n  \"geistig\": \"geistig\",\n  \"geistige\": \"geistig\",\n  \"geistigem\": \"geistig\",\n  \"geistigen\": \"geistig\",\n  \"geistiger\": \"geistig\",\n  \"geistigeren\": \"geistig\",\n  \"geistigeres\": \"geistig\",\n  \"geistiges\": \"geistig\",\n  \"geistigkeit\": \"geistig\",\n  \"geistigste\": \"geistig\",\n  \"geistigsten\": \"geistig\",\n  \"geistlich\": \"geistlich\",\n  \"geistliche\": \"geistlich\",\n  \"geistlichen\": \"geistlich\",\n  \"geistlichkeit\": \"geistlich\",\n  \"geistlose\": \"geistlos\",\n  \"geistreich\": \"geistreich\",\n  \"geistreiches\": \"geistreich\",\n  \"geistreichste\": \"geistreich\",\n  \"geiz\": \"geiz\",\n  \"gejagt\": \"gejagt\",\n  \"gekämmt\": \"gekammt\",\n  \"gekämpft\": \"gekampft\",\n  \"gekannt\": \"gekannt\",\n  \"gekauft\": \"gekauft\",\n  \"gekauften\": \"gekauft\",\n  \"gekehrt\": \"gekehrt\",\n  \"gekeltert\": \"gekeltert\",\n  \"gekerbt\": \"gekerbt\",\n  \"gekitzelt\": \"gekitzelt\",\n  \"gekläff\": \"geklaff\",\n  \"geklagt\": \"geklagt\",\n  \"geklammert\": \"geklammert\",\n  \"geklappert\": \"geklappert\",\n  \"geklaut\": \"geklaut\",\n  \"geklebt\": \"geklebt\",\n  \"geklebten\": \"geklebt\",\n  \"gekleidet\": \"gekleidet\",\n  \"gekleideten\": \"gekleidet\",\n  \"gekleidetes\": \"gekleidet\",\n  \"geklemmt\": \"geklemmt\",\n  \"geklettert\": \"geklettert\",\n  \"gekneift\": \"gekneift\",\n  \"geknurre\": \"geknurr\",\n  \"gekocht\": \"gekocht\",\n  \"gekommen\": \"gekomm\",\n  \"gekonnt\": \"gekonnt\",\n  \"geköpft\": \"gekopft\",\n  \"gekostet\": \"gekostet\",\n  \"gekränkt\": \"gekrankt\",\n  \"gekräuselte\": \"gekrauselt\",\n  \"gekreisst\": \"gekreisst\",\n  \"gekreißt\": \"gekreisst\",\n  \"gekreuzigt\": \"gekreuzigt\",\n  \"gekreuzt\": \"gekreuzt\",\n  \"gekreuzten\": \"gekreuzt\",\n  \"gekriegt\": \"gekriegt\",\n  \"gekrönt\": \"gekront\",\n  \"gekrönten\": \"gekront\",\n  \"gekühlt\": \"gekuhlt\",\n  \"gelächelt\": \"gelachelt\",\n  \"gelacht\": \"gelacht\",\n  \"gelächter\": \"gelacht\",\n  \"gelächters\": \"gelacht\",\n  \"geladen\": \"gelad\",\n  \"geladenen\": \"gelad\",\n  \"gelage\": \"gelag\",\n  \"gelagen\": \"gelag\",\n  \"gelagerten\": \"gelagert\",\n  \"gelähmte\": \"gelahmt\",\n  \"gelähmten\": \"gelahmt\",\n  \"gelände\": \"geland\",\n  \"geländer\": \"geland\",\n  \"gelandet\": \"gelandet\",\n  \"gelang\": \"gelang\",\n  \"gelänge\": \"gelang\",\n  \"gelangen\": \"gelang\",\n  \"gelangest\": \"gelang\",\n  \"gelangt\": \"gelangt\",\n  \"gelangte\": \"gelangt\",\n  \"gelangten\": \"gelangt\",\n  \"gelangung\": \"gelang\",\n  \"gelangweilt\": \"gelangweilt\",\n  \"gelass\": \"gelass\",\n  \"gelassen\": \"gelass\",\n  \"gelassenen\": \"gelass\",\n  \"gelassener\": \"gelass\",\n  \"gelassenheit\": \"gelass\",\n  \"gelaufe\": \"gelauf\",\n  \"gelaufen\": \"gelauf\",\n  \"gelaunt\": \"gelaunt\",\n  \"gelauscht\": \"gelauscht\",\n  \"geläute\": \"gelaut\",\n  \"geläutet\": \"gelautet\",\n  \"gelb\": \"gelb\",\n  \"gelbe\": \"gelb\",\n  \"gelben\": \"gelb\",\n  \"gelber\": \"gelb\",\n  \"gelbes\": \"gelb\",\n  \"gelbleuchtende\": \"gelbleucht\",\n  \"gelblich\": \"gelblich\",\n  \"geld\": \"geld\",\n  \"geldabfluss\": \"geldabfluss\",\n  \"geldaufzählens\": \"geldaufzahl\",\n  \"geldbeutel\": \"geldbeutel\",\n  \"geldbörse\": \"geldbors\",\n  \"geldbürgschaft\": \"geldburgschaft\",\n  \"geldbussen\": \"geldbuss\",\n  \"geldchen\": \"geldch\",\n  \"gelde\": \"geld\",\n  \"gelder\": \"geld\",\n  \"geldes\": \"geld\",\n  \"geldgier\": \"geldgi\",\n  \"geldklemme\": \"geldklemm\",\n  \"geldmachen\": \"geldmach\",\n  \"geldmännern\": \"geldmann\",\n  \"geldmittel\": \"geldmittel\",\n  \"geldmitteln\": \"geldmitteln\",\n  \"geldnöten\": \"geldnot\",\n  \"geldstück\": \"geldstuck\",\n  \"geldsummen\": \"geldsumm\",\n  \"geldtransfer\": \"geldtransf\",\n  \"gelebt\": \"gelebt\",\n  \"geleckten\": \"geleckt\",\n  \"geleert\": \"geleert\",\n  \"gelees\": \"gele\",\n  \"gelegen\": \"geleg\",\n  \"gelegenen\": \"geleg\",\n  \"gelegenheit\": \"geleg\",\n  \"gelegenheiten\": \"geleg\",\n  \"gelegentlich\": \"gelegent\",\n  \"gelegentliche\": \"gelegent\",\n  \"gelegt\": \"gelegt\",\n  \"gelegtes\": \"gelegt\",\n  \"gelehnt\": \"gelehnt\",\n  \"gelehret\": \"gelehret\",\n  \"gelehrsamkeit\": \"gelehrsam\",\n  \"gelehrt\": \"gelehrt\",\n  \"gelehrte\": \"gelehrt\",\n  \"gelehrten\": \"gelehrt\",\n  \"gelehrter\": \"gelehrt\",\n  \"gelehrteste\": \"gelehrt\",\n  \"geleistet\": \"geleistet\",\n  \"geleit\": \"geleit\",\n  \"geleitet\": \"geleitet\",\n  \"geleitete\": \"geleitet\",\n  \"gelenkchen\": \"gelenkch\",\n  \"gelenken\": \"gelenk\",\n  \"gelenkige\": \"gelenk\",\n  \"gelenkt\": \"gelenkt\",\n  \"gelernt\": \"gelernt\",\n  \"gelesen\": \"geles\",\n  \"geleuchtet\": \"geleuchtet\",\n  \"geleugnet\": \"geleugnet\",\n  \"geliebet\": \"geliebet\",\n  \"geliebt\": \"geliebt\",\n  \"geliebte\": \"geliebt\",\n  \"geliebten\": \"geliebt\",\n  \"geliebter\": \"geliebt\",\n  \"geliebtesten\": \"geliebt\",\n  \"geliefert\": \"geliefert\",\n  \"geliehen\": \"gelieh\",\n  \"gelinde\": \"gelind\",\n  \"gelinden\": \"gelind\",\n  \"gelindert\": \"gelindert\",\n  \"gelindes\": \"gelind\",\n  \"gelindesten\": \"gelind\",\n  \"gelingen\": \"geling\",\n  \"gelingens\": \"geling\",\n  \"gelingt\": \"gelingt\",\n  \"gelitten\": \"gelitt\",\n  \"gellend\": \"gellend\",\n  \"gellenden\": \"gellend\",\n  \"gellte\": \"gellt\",\n  \"gelobet\": \"gelobet\",\n  \"gelobt\": \"gelobt\",\n  \"gelobte\": \"gelobt\",\n  \"gelockt\": \"gelockt\",\n  \"gelogen\": \"gelog\",\n  \"gelöscht\": \"geloscht\",\n  \"gelöst\": \"gelost\",\n  \"gelt\": \"gelt\",\n  \"gelte\": \"gelt\",\n  \"gelten\": \"gelt\",\n  \"geltend\": \"geltend\",\n  \"geltende\": \"geltend\",\n  \"geltenden\": \"geltend\",\n  \"geltendmachen\": \"geltendmach\",\n  \"geltens\": \"gelt\",\n  \"gelübde\": \"gelubd\",\n  \"gelübden\": \"gelubd\",\n  \"gelungen\": \"gelung\",\n  \"gelungene\": \"gelung\",\n  \"gelungenen\": \"gelung\",\n  \"gelüste\": \"gelust\",\n  \"gelüsten\": \"gelust\",\n  \"gelüstig\": \"gelust\",\n  \"gelüstigkeit\": \"gelust\",\n  \"gemach\": \"gemach\",\n  \"gemächer\": \"gemach\",\n  \"gemächern\": \"gemach\",\n  \"gemächlich\": \"gemach\",\n  \"gemächliches\": \"gemach\",\n  \"gemachs\": \"gemach\",\n  \"gemacht\": \"gemacht\",\n  \"gemachten\": \"gemacht\",\n  \"gemachter\": \"gemacht\",\n  \"gemahl\": \"gemahl\",\n  \"gemahle\": \"gemahl\",\n  \"gemahlin\": \"gemahlin\",\n  \"gemahnt\": \"gemahnt\",\n  \"gemahnte\": \"gemahnt\",\n  \"gemähte\": \"gemaht\",\n  \"gemähtes\": \"gemaht\",\n  \"gemälde\": \"gemald\",\n  \"gemalt\": \"gemalt\",\n  \"gemalten\": \"gemalt\",\n  \"gemarterten\": \"gemartert\",\n  \"gemäss\": \"gemass\",\n  \"gemäß\": \"gemass\",\n  \"gemässe\": \"gemass\",\n  \"gemässes\": \"gemass\",\n  \"gemäßes\": \"gemass\",\n  \"gemässigt\": \"gemassigt\",\n  \"gemäßigt\": \"gemassigt\",\n  \"gemästet\": \"gemastet\",\n  \"gemästeten\": \"gemastet\",\n  \"gemäuer\": \"gemau\",\n  \"gemecker\": \"gemeck\",\n  \"gemehret\": \"gemehret\",\n  \"gemein\": \"gemein\",\n  \"gemeinde\": \"gemeind\",\n  \"gemeindeammann\": \"gemeindeammann\",\n  \"gemeindedienste\": \"gemeindedien\",\n  \"gemeindegliedern\": \"gemeindeglied\",\n  \"gemeindegutes\": \"gemeindegut\",\n  \"gemeinden\": \"gemeind\",\n  \"gemeindepfarrer\": \"gemeindepfarr\",\n  \"gemeindepräsident\": \"gemeindeprasident\",\n  \"gemeindeschreiber\": \"gemeindeschreib\",\n  \"gemeindespritze\": \"gemeindespritz\",\n  \"gemeine\": \"gemein\",\n  \"gemeinen\": \"gemein\",\n  \"gemeiner\": \"gemein\",\n  \"gemeingut\": \"gemeingut\",\n  \"gemeinheit\": \"gemein\",\n  \"gemeinhin\": \"gemeinhin\",\n  \"gemeiniglich\": \"gemeinig\",\n  \"gemeinnützig\": \"gemeinnutz\",\n  \"gemeinnützige\": \"gemeinnutz\",\n  \"gemeinsam\": \"gemeinsam\",\n  \"gemeinsame\": \"gemeinsam\",\n  \"gemeinsamen\": \"gemeinsam\",\n  \"gemeinsamkeiten\": \"gemeinsam\",\n  \"gemeinschaft\": \"gemeinschaft\",\n  \"gemeinschaften\": \"gemeinschaft\",\n  \"gemeinschaftlich\": \"gemeinschaft\",\n  \"gemeinschaftliche\": \"gemeinschaft\",\n  \"gemeinschaftlichen\": \"gemeinschaft\",\n  \"gemeinschaftliches\": \"gemeinschaft\",\n  \"gemeinschaftsbadezimmern\": \"gemeinschaftsbadezimm\",\n  \"gemeinste\": \"gemein\",\n  \"gemeinsten\": \"gemein\",\n  \"gemeint\": \"gemeint\",\n  \"gemeinte\": \"gemeint\",\n  \"gemeinwesen\": \"gemeinwes\",\n  \"gemeisselt\": \"gemeisselt\",\n  \"gemeldet\": \"gemeldet\",\n  \"gemengt\": \"gemengt\",\n  \"gemerkt\": \"gemerkt\",\n  \"gemessene\": \"gemess\",\n  \"gemessenen\": \"gemess\",\n  \"gemessener\": \"gemess\",\n  \"gemieden\": \"gemied\",\n  \"gemiedene\": \"gemied\",\n  \"gemieteten\": \"gemietet\",\n  \"gemildert\": \"gemildert\",\n  \"gemindert\": \"gemindert\",\n  \"gemisch\": \"gemisch\",\n  \"gemischt\": \"gemischt\",\n  \"gemischten\": \"gemischt\",\n  \"gemischtes\": \"gemischt\",\n  \"gemordet\": \"gemordet\",\n  \"gemsbart\": \"gemsbart\",\n  \"gemsbärte\": \"gemsbart\",\n  \"gemshorn\": \"gemshorn\",\n  \"gemüllhaufen\": \"gemullhauf\",\n  \"gemurrt\": \"gemurrt\",\n  \"gemüse\": \"gemus\",\n  \"gemüsegarten\": \"gemusegart\",\n  \"gemüsegartens\": \"gemusegart\",\n  \"gemüseplatz\": \"gemuseplatz\",\n  \"gemusst\": \"gemusst\",\n  \"gemüt\": \"gemut\",\n  \"gemüte\": \"gemut\",\n  \"gemüter\": \"gemut\",\n  \"gemütes\": \"gemut\",\n  \"gemütlich\": \"gemut\",\n  \"gemütliche\": \"gemut\",\n  \"gemütlichen\": \"gemut\",\n  \"gemütlicher\": \"gemut\",\n  \"gemütlichkeit\": \"gemut\",\n  \"gemüts\": \"gemut\",\n  \"gemütsanlage\": \"gemutsanlag\",\n  \"gemütsart\": \"gemutsart\",\n  \"gemütsbeschaffenheit\": \"gemutsbeschaff\",\n  \"gemütskräfte\": \"gemutskraft\",\n  \"gemütsverfassung\": \"gemutsverfass\",\n  \"gemütswesen\": \"gemutswes\",\n  \"gemütvolle\": \"gemutvoll\",\n  \"gen\": \"gen\",\n  \"genagelt\": \"genagelt\",\n  \"genähert\": \"genahert\",\n  \"genährt\": \"genahrt\",\n  \"genannt\": \"genannt\",\n  \"genannte\": \"genannt\",\n  \"genanntem\": \"genannt\",\n  \"genannten\": \"genannt\",\n  \"genarrtes\": \"genarrt\",\n  \"genau\": \"genau\",\n  \"genaue\": \"genau\",\n  \"genauen\": \"genau\",\n  \"genauer\": \"genau\",\n  \"genauere\": \"genau\",\n  \"genaueres\": \"genau\",\n  \"genaues\": \"genau\",\n  \"genaueste\": \"genau\",\n  \"genauso\": \"genauso\",\n  \"genausten\": \"genaust\",\n  \"genehm\": \"genehm\",\n  \"genehmigt\": \"genehmigt\",\n  \"geneigt\": \"geneigt\",\n  \"geneigte\": \"geneigt\",\n  \"geneigtem\": \"geneigt\",\n  \"geneigter\": \"geneigt\",\n  \"geneigtheit\": \"geneigt\",\n  \"genera\": \"genera\",\n  \"general\": \"general\",\n  \"generäle\": \"general\",\n  \"generalen\": \"general\",\n  \"generalsekretär\": \"generalsekretar\",\n  \"generalstreik\": \"generalstreik\",\n  \"generalsynode\": \"generalsynod\",\n  \"generation\": \"generation\",\n  \"generell\": \"generell\",\n  \"generelles\": \"generell\",\n  \"genesen\": \"genes\",\n  \"genesis\": \"genesis\",\n  \"genesung\": \"genes\",\n  \"genf\": \"genf\",\n  \"genfer\": \"genf\",\n  \"genialen\": \"genial\",\n  \"genick\": \"genick\",\n  \"genickt\": \"genickt\",\n  \"genie\": \"geni\",\n  \"genien\": \"geni\",\n  \"genieren\": \"geni\",\n  \"geniert\": \"geniert\",\n  \"genies\": \"geni\",\n  \"genieschwüngen\": \"genieschwung\",\n  \"geniessen\": \"geniess\",\n  \"genießen\": \"geniess\",\n  \"geniessest\": \"geniess\",\n  \"geniesst\": \"geniesst\",\n  \"genießt\": \"geniesst\",\n  \"genitiv\": \"genitiv\",\n  \"genitive\": \"genitiv\",\n  \"genius\": \"genius\",\n  \"genommen\": \"genomm\",\n  \"genommnen\": \"genommn\",\n  \"genoss\": \"genoss\",\n  \"genoß\": \"genoss\",\n  \"genosse\": \"genoss\",\n  \"genossen\": \"genoss\",\n  \"genossene\": \"genoss\",\n  \"genossenen\": \"genoss\",\n  \"genossin\": \"genossin\",\n  \"genötigt\": \"genotigt\",\n  \"gens\": \"gen\",\n  \"gentliche\": \"gentlich\",\n  \"genug\": \"genug\",\n  \"genüge\": \"genug\",\n  \"genügen\": \"genug\",\n  \"genügend\": \"genug\",\n  \"genügenden\": \"genug\",\n  \"genügender\": \"genug\",\n  \"genugsam\": \"genugsam\",\n  \"genügsam\": \"genugsam\",\n  \"genugsamem\": \"genugsam\",\n  \"genugsamer\": \"genugsam\",\n  \"genügsamkeit\": \"genugsam\",\n  \"genügt\": \"genugt\",\n  \"genügte\": \"genugt\",\n  \"genugtuung\": \"genugtu\",\n  \"genus\": \"genus\",\n  \"genuss\": \"genuss\",\n  \"genuß\": \"genuss\",\n  \"genussarten\": \"genussart\",\n  \"genusse\": \"genuss\",\n  \"genüsse\": \"genuss\",\n  \"genüssen\": \"genuss\",\n  \"genusses\": \"genuss\",\n  \"genussreich\": \"genussreich\",\n  \"genußreich\": \"genussreich\",\n  \"genützt\": \"genutzt\",\n  \"geoffenbart\": \"geoffenbart\",\n  \"geoffenbarte\": \"geoffenbart\",\n  \"geoffenbartem\": \"geoffenbart\",\n  \"geoffenbarten\": \"geoffenbart\",\n  \"geöffnet\": \"geoffnet\",\n  \"geöffnete\": \"geoffnet\",\n  \"geöffneten\": \"geoffnet\",\n  \"geöffnetwerden\": \"geoffnetwerd\",\n  \"geographiebuch\": \"geographiebuch\",\n  \"geographiebuche\": \"geographiebuch\",\n  \"geographiebuches\": \"geographiebuch\",\n  \"geohrfeigt\": \"geohrfeigt\",\n  \"geölte\": \"geolt\",\n  \"geometer\": \"geomet\",\n  \"geometrie\": \"geometri\",\n  \"geometrische\": \"geometr\",\n  \"geometrischen\": \"geometr\",\n  \"geopfert\": \"geopfert\",\n  \"geordnet\": \"geordnet\",\n  \"georg\": \"georg\",\n  \"gepaart\": \"gepaart\",\n  \"gepäck\": \"gepack\",\n  \"gepäckes\": \"gepack\",\n  \"gepackt\": \"gepackt\",\n  \"gepäckwagen\": \"gepackwag\",\n  \"gepanzerter\": \"gepanzert\",\n  \"gepasst\": \"gepasst\",\n  \"gepaßt\": \"gepasst\",\n  \"gepeinigt\": \"gepeinigt\",\n  \"gepeinigter\": \"gepeinigt\",\n  \"gepeitscht\": \"gepeitscht\",\n  \"gepfeife\": \"gepfeif\",\n  \"gepflanzt\": \"gepflanzt\",\n  \"gepflanzte\": \"gepflanzt\",\n  \"gepflasterten\": \"gepflastert\",\n  \"gepflegt\": \"gepflegt\",\n  \"gepflegte\": \"gepflegt\",\n  \"gepflegter\": \"gepflegt\",\n  \"gepflogen\": \"gepflog\",\n  \"gepflückt\": \"gepfluckt\",\n  \"gepflügt\": \"gepflugt\",\n  \"gepfropft\": \"gepfropft\",\n  \"geplagt\": \"geplagt\",\n  \"geplante\": \"geplant\",\n  \"geplanten\": \"geplant\",\n  \"geplättet\": \"geplattet\",\n  \"geplauder\": \"geplaud\",\n  \"geplünderten\": \"geplundert\",\n  \"gepolsterter\": \"gepolstert\",\n  \"geprägt\": \"gepragt\",\n  \"gepränge\": \"geprang\",\n  \"gepredigt\": \"gepredigt\",\n  \"gepressten\": \"gepresst\",\n  \"gepresster\": \"gepresst\",\n  \"gepriesen\": \"gepries\",\n  \"geprüft\": \"gepruft\",\n  \"geprügelt\": \"geprugelt\",\n  \"geprügelten\": \"geprugelt\",\n  \"geputzt\": \"geputzt\",\n  \"geputzte\": \"geputzt\",\n  \"geputzter\": \"geputzt\",\n  \"gequält\": \"gequalt\",\n  \"gequälten\": \"gequalt\",\n  \"gerächt\": \"geracht\",\n  \"gerade\": \"gerad\",\n  \"geraden\": \"gerad\",\n  \"gerader\": \"gerad\",\n  \"geradeso\": \"geradeso\",\n  \"geradewegs\": \"geradeweg\",\n  \"geradezu\": \"geradezu\",\n  \"geradheit\": \"gerad\",\n  \"geradso\": \"geradso\",\n  \"gerannt\": \"gerannt\",\n  \"gerassel\": \"gerassel\",\n  \"gerasselt\": \"gerasselt\",\n  \"gerast\": \"gerast\",\n  \"gerastet\": \"gerastet\",\n  \"gerät\": \"gerat\",\n  \"geraten\": \"gerat\",\n  \"gerätes\": \"gerat\",\n  \"geratewohl\": \"geratewohl\",\n  \"gerattere\": \"geratt\",\n  \"gerauft\": \"gerauft\",\n  \"geraume\": \"geraum\",\n  \"geraumer\": \"geraum\",\n  \"geräumige\": \"geraum\",\n  \"geräumigen\": \"geraum\",\n  \"geräusch\": \"gerausch\",\n  \"geräusches\": \"gerausch\",\n  \"geräuschlosen\": \"gerauschlos\",\n  \"geräuschvollen\": \"gerauschvoll\",\n  \"geräuschvollsten\": \"gerauschvoll\",\n  \"gerdt\": \"gerdt\",\n  \"gerechnet\": \"gerechnet\",\n  \"gerecht\": \"gerecht\",\n  \"gerechte\": \"gerecht\",\n  \"gerechten\": \"gerecht\",\n  \"gerechter\": \"gerecht\",\n  \"gerechtfertigt\": \"gerechtfertigt\",\n  \"gerechtfertigter\": \"gerechtfertigt\",\n  \"gerechtigkeit\": \"gerecht\",\n  \"gerechtigkeitsformen\": \"gerechtigkeitsform\",\n  \"gerede\": \"gered\",\n  \"geredet\": \"geredet\",\n  \"geregnet\": \"geregnet\",\n  \"gereicht\": \"gereicht\",\n  \"gereigte\": \"gereigt\",\n  \"gereimtes\": \"gereimt\",\n  \"gereinigt\": \"gereinigt\",\n  \"gereinigten\": \"gereinigt\",\n  \"gereist\": \"gereist\",\n  \"gereizt\": \"gereizt\",\n  \"gereiztheit\": \"gereizt\",\n  \"gerettet\": \"gerettet\",\n  \"gerettete\": \"gerettet\",\n  \"geretteten\": \"gerettet\",\n  \"gereue\": \"gereu\",\n  \"gereuen\": \"gereu\",\n  \"gereuend\": \"gereu\",\n  \"gereut\": \"gereut\",\n  \"gereute\": \"gereut\",\n  \"gereuungen\": \"gereu\",\n  \"gericht\": \"gericht\",\n  \"gerichte\": \"gericht\",\n  \"gerichten\": \"gericht\",\n  \"gerichtes\": \"gericht\",\n  \"gerichtet\": \"gerichtet\",\n  \"gerichtete\": \"gerichtet\",\n  \"gerichtetes\": \"gerichtet\",\n  \"gerichtlich\": \"gericht\",\n  \"gerichts\": \"gericht\",\n  \"gerichtsbeamten\": \"gerichtsbeamt\",\n  \"gerichtsbeschluss\": \"gerichtsbeschluss\",\n  \"gerichtsbeschluß\": \"gerichtsbeschluss\",\n  \"gerichtsdiener\": \"gerichtsdi\",\n  \"gerichtshöfe\": \"gerichtshof\",\n  \"gerichtshöfen\": \"gerichtshof\",\n  \"gerichtskanzleien\": \"gerichtskanzlei\",\n  \"gerichtsorganisation\": \"gerichtsorganisation\",\n  \"gerichtsorganismus\": \"gerichtsorganismus\",\n  \"gerichtssache\": \"gerichtssach\",\n  \"gerichtsschranken\": \"gerichtsschrank\",\n  \"gerichtsschriften\": \"gerichtsschrift\",\n  \"gerichtsverhandlung\": \"gerichtsverhandl\",\n  \"gerichtswesens\": \"gerichtswes\",\n  \"gerichtszimmer\": \"gerichtszimm\",\n  \"gerieben\": \"gerieb\",\n  \"geriebener\": \"gerieb\",\n  \"geriegelt\": \"geriegelt\",\n  \"geriet\": \"geriet\",\n  \"gerieten\": \"geriet\",\n  \"gering\": \"gering\",\n  \"geringe\": \"gering\",\n  \"geringem\": \"gering\",\n  \"geringen\": \"gering\",\n  \"geringer\": \"gering\",\n  \"geringere\": \"gering\",\n  \"geringerer\": \"gering\",\n  \"geringeres\": \"gering\",\n  \"geringes\": \"gering\",\n  \"geringfügig\": \"geringfug\",\n  \"geringfügige\": \"geringfug\",\n  \"geringfügigsten\": \"geringfug\",\n  \"geringgeschätzt\": \"geringgeschatzt\",\n  \"geringschätzig\": \"geringschatz\",\n  \"geringschätzung\": \"geringschatz\",\n  \"geringste\": \"gering\",\n  \"geringsten\": \"gering\",\n  \"gerinnen\": \"gerinn\",\n  \"gerippe\": \"geripp\",\n  \"geripptes\": \"gerippt\",\n  \"gerissen\": \"geriss\",\n  \"geritten\": \"geritt\",\n  \"german\": \"german\",\n  \"germanen\": \"german\",\n  \"germanischen\": \"german\",\n  \"gern\": \"gern\",\n  \"gerne\": \"gern\",\n  \"gerochen\": \"geroch\",\n  \"geröllhalde\": \"gerollhald\",\n  \"geröllhalden\": \"gerollhald\",\n  \"geröllhang\": \"gerollhang\",\n  \"geröstete\": \"gerostet\",\n  \"gerösteten\": \"gerostet\",\n  \"geröstetes\": \"gerostet\",\n  \"gerötet\": \"gerotet\",\n  \"gerötete\": \"gerotet\",\n  \"geröteter\": \"gerotet\",\n  \"gersom\": \"gersom\",\n  \"gerson\": \"gerson\",\n  \"gersons\": \"gerson\",\n  \"gerste\": \"gerst\",\n  \"gerstenbrot\": \"gerstenbrot\",\n  \"gerte\": \"gert\",\n  \"geruch\": \"geruch\",\n  \"gerüche\": \"geruch\",\n  \"geruches\": \"geruch\",\n  \"geruchs\": \"geruch\",\n  \"gerücht\": \"gerucht\",\n  \"gerüchte\": \"gerucht\",\n  \"gerüchteweise\": \"geruchteweis\",\n  \"gerüchtweise\": \"geruchtweis\",\n  \"gerufen\": \"geruf\",\n  \"gerufenwerdens\": \"gerufenwerd\",\n  \"gerührt\": \"geruhrt\",\n  \"gerührter\": \"geruhrt\",\n  \"geruhsamen\": \"geruhsam\",\n  \"geruht\": \"geruht\",\n  \"gerumpel\": \"gerumpel\",\n  \"gerümpel\": \"gerumpel\",\n  \"gerümpelfuhre\": \"gerumpelfuhr\",\n  \"gerüste\": \"gerust\",\n  \"gerüstet\": \"gerustet\",\n  \"gerüsteten\": \"gerustet\",\n  \"gerutscht\": \"gerutscht\",\n  \"gerüttelt\": \"geruttelt\",\n  \"gerütteltes\": \"geruttelt\",\n  \"gesäet\": \"gesaet\",\n  \"gesagt\": \"gesagt\",\n  \"gesagten\": \"gesagt\",\n  \"gesäht\": \"gesaht\",\n  \"gesalbt\": \"gesalbt\",\n  \"gesalbte\": \"gesalbt\",\n  \"gesalbten\": \"gesalbt\",\n  \"gesalzenem\": \"gesalz\",\n  \"gesammelt\": \"gesammelt\",\n  \"gesammelte\": \"gesammelt\",\n  \"gesammeltes\": \"gesammelt\",\n  \"gesamt\": \"gesamt\",\n  \"gesamtanschauung\": \"gesamtanschau\",\n  \"gesamte\": \"gesamt\",\n  \"gesamten\": \"gesamt\",\n  \"gesamtheit\": \"gesamt\",\n  \"gesamtlage\": \"gesamtlag\",\n  \"gesamtleistung\": \"gesamtleist\",\n  \"gesandt\": \"gesandt\",\n  \"gesandte\": \"gesandt\",\n  \"gesandten\": \"gesandt\",\n  \"gesandtschaft\": \"gesandtschaft\",\n  \"gesang\": \"gesang\",\n  \"gesänge\": \"gesang\",\n  \"gesängen\": \"gesang\",\n  \"gesanges\": \"gesang\",\n  \"gesangs\": \"gesang\",\n  \"gesangsstimmen\": \"gesangsstimm\",\n  \"gesät\": \"gesat\",\n  \"gesättigt\": \"gesattigt\",\n  \"gesäuberten\": \"gesaubert\",\n  \"gesäugt\": \"gesaugt\",\n  \"gesaust\": \"gesaust\",\n  \"geschadet\": \"geschadet\",\n  \"geschaffen\": \"geschaff\",\n  \"geschaffene\": \"geschaff\",\n  \"geschaffenen\": \"geschaff\",\n  \"geschaffenes\": \"geschaff\",\n  \"geschafft\": \"geschafft\",\n  \"geschäft\": \"geschaft\",\n  \"geschäfte\": \"geschaft\",\n  \"geschäften\": \"geschaft\",\n  \"geschäftes\": \"geschaft\",\n  \"geschäftig\": \"geschaft\",\n  \"geschäftige\": \"geschaft\",\n  \"geschäftigkeit\": \"geschaft\",\n  \"geschäftliche\": \"geschaft\",\n  \"geschäftlichen\": \"geschaft\",\n  \"geschäftsauslagen\": \"geschaftsauslag\",\n  \"geschäftsbuch\": \"geschaftsbuch\",\n  \"geschäftsfragen\": \"geschaftsfrag\",\n  \"geschäftsfreund\": \"geschaftsfreund\",\n  \"geschäftsführung\": \"geschaftsfuhr\",\n  \"geschäftsjahren\": \"geschaftsjahr\",\n  \"geschäftsleiter\": \"geschaftsleit\",\n  \"geschäftsleuten\": \"geschaftsleut\",\n  \"geschäftsmann\": \"geschaftsmann\",\n  \"geschäftsmänner\": \"geschaftsmann\",\n  \"geschäftsmännern\": \"geschaftsmann\",\n  \"geschäftsprüfungskommission\": \"geschaftsprufungskommission\",\n  \"geschäftsreise\": \"geschaftsreis\",\n  \"geschäftsschwankung\": \"geschaftsschwank\",\n  \"geschäftsstelle\": \"geschaftsstell\",\n  \"geschäftsweg\": \"geschaftsweg\",\n  \"geschah\": \"geschah\",\n  \"geschahen\": \"geschah\",\n  \"geschändete\": \"geschandet\",\n  \"geschärft\": \"gescharft\",\n  \"geschärftes\": \"gescharft\",\n  \"geschätzt\": \"geschatzt\",\n  \"geschätzten\": \"geschatzt\",\n  \"geschaut\": \"geschaut\",\n  \"geschehe\": \"gescheh\",\n  \"geschehen\": \"gescheh\",\n  \"geschehene\": \"gescheh\",\n  \"geschehenen\": \"gescheh\",\n  \"geschehnisse\": \"geschehnis\",\n  \"gescheit\": \"gescheit\",\n  \"gescheitert\": \"gescheitert\",\n  \"gescheites\": \"gescheit\",\n  \"gescheiteste\": \"gescheit\",\n  \"geschenk\": \"geschenk\",\n  \"geschenke\": \"geschenk\",\n  \"geschenken\": \"geschenk\",\n  \"geschenkt\": \"geschenkt\",\n  \"gescherzt\": \"gescherzt\",\n  \"gescheucht\": \"gescheucht\",\n  \"gescheuchten\": \"gescheucht\",\n  \"gescheuerte\": \"gescheuert\",\n  \"geschichtartig\": \"geschichtart\",\n  \"geschichtartigen\": \"geschichtart\",\n  \"geschichte\": \"geschicht\",\n  \"geschichten\": \"geschicht\",\n  \"geschichtliche\": \"geschicht\",\n  \"geschichtlichen\": \"geschicht\",\n  \"geschichtliches\": \"geschicht\",\n  \"geschichts\": \"geschicht\",\n  \"geschick\": \"geschick\",\n  \"geschicke\": \"geschick\",\n  \"geschickes\": \"geschick\",\n  \"geschicklichkeit\": \"geschick\",\n  \"geschickt\": \"geschickt\",\n  \"geschickte\": \"geschickt\",\n  \"geschickten\": \"geschickt\",\n  \"geschickter\": \"geschickt\",\n  \"geschieden\": \"geschied\",\n  \"geschiedenen\": \"geschied\",\n  \"geschiedener\": \"geschied\",\n  \"geschiedenes\": \"geschied\",\n  \"geschieht\": \"geschieht\",\n  \"geschielt\": \"geschielt\",\n  \"geschildert\": \"geschildert\",\n  \"geschirr\": \"geschirr\",\n  \"geschirre\": \"geschirr\",\n  \"geschirrkasten\": \"geschirrkast\",\n  \"geschlafen\": \"geschlaf\",\n  \"geschlagen\": \"geschlag\",\n  \"geschlagener\": \"geschlag\",\n  \"geschlagenes\": \"geschlag\",\n  \"geschlecht\": \"geschlecht\",\n  \"geschlechte\": \"geschlecht\",\n  \"geschlechter\": \"geschlecht\",\n  \"geschlechtern\": \"geschlecht\",\n  \"geschlechtes\": \"geschlecht\",\n  \"geschlechts\": \"geschlecht\",\n  \"geschlechtsverzeichnis\": \"geschlechtsverzeichnis\",\n  \"geschleift\": \"geschleift\",\n  \"geschleudert\": \"geschleudert\",\n  \"geschlossen\": \"geschloss\",\n  \"geschlossene\": \"geschloss\",\n  \"geschlossenen\": \"geschloss\",\n  \"geschlossener\": \"geschloss\",\n  \"geschlungen\": \"geschlung\",\n  \"geschmack\": \"geschmack\",\n  \"geschmacke\": \"geschmack\",\n  \"geschmacklos\": \"geschmacklos\",\n  \"geschmacks\": \"geschmack\",\n  \"geschmacksgründen\": \"geschmacksgrund\",\n  \"geschmackvolle\": \"geschmackvoll\",\n  \"geschmackvollen\": \"geschmackvoll\",\n  \"geschmälerten\": \"geschmalert\",\n  \"geschmeckt\": \"geschmeckt\",\n  \"geschmeichelt\": \"geschmeichelt\",\n  \"geschmeidigen\": \"geschmeid\",\n  \"geschmerzt\": \"geschmerzt\",\n  \"geschmiedetes\": \"geschmiedet\",\n  \"geschmiegt\": \"geschmiegt\",\n  \"geschmissen\": \"geschmiss\",\n  \"geschmolzenes\": \"geschmolz\",\n  \"geschmückt\": \"geschmuckt\",\n  \"geschmückten\": \"geschmuckt\",\n  \"geschmücktes\": \"geschmuckt\",\n  \"geschnappt\": \"geschnappt\",\n  \"geschnatterwesen\": \"geschnatterwes\",\n  \"geschnaubt\": \"geschnaubt\",\n  \"geschneit\": \"geschneit\",\n  \"geschniegelten\": \"geschniegelt\",\n  \"geschnitten\": \"geschnitt\",\n  \"geschnittenen\": \"geschnitt\",\n  \"geschnitzte\": \"geschnitzt\",\n  \"geschnitzten\": \"geschnitzt\",\n  \"geschnürt\": \"geschnurt\",\n  \"geschoben\": \"geschob\",\n  \"gescholten\": \"gescholt\",\n  \"geschöpf\": \"geschopf\",\n  \"geschöpfchen\": \"geschopfch\",\n  \"geschöpfe\": \"geschopf\",\n  \"geschöpfen\": \"geschopf\",\n  \"geschöpfes\": \"geschopf\",\n  \"geschöpfs\": \"geschopf\",\n  \"geschöpft\": \"geschopft\",\n  \"geschoren\": \"geschor\",\n  \"geschossen\": \"geschoss\",\n  \"geschrei\": \"geschrei\",\n  \"geschreis\": \"geschreis\",\n  \"geschrieben\": \"geschrieb\",\n  \"geschriebene\": \"geschrieb\",\n  \"geschriebenen\": \"geschrieb\",\n  \"geschriebenes\": \"geschrieb\",\n  \"geschrieen\": \"geschrie\",\n  \"geschrien\": \"geschri\",\n  \"geschrumpft\": \"geschrumpft\",\n  \"geschulten\": \"geschult\",\n  \"geschüttelt\": \"geschuttelt\",\n  \"geschüttet\": \"geschuttet\",\n  \"geschützt\": \"geschutzt\",\n  \"geschwächt\": \"geschwacht\",\n  \"geschwächten\": \"geschwacht\",\n  \"geschwader\": \"geschwad\",\n  \"geschwänzelt\": \"geschwanzelt\",\n  \"geschwärzt\": \"geschwarzt\",\n  \"geschwätz\": \"geschwatz\",\n  \"geschwätzig\": \"geschwatz\",\n  \"geschwätzigen\": \"geschwatz\",\n  \"geschwätzigkeit\": \"geschwatz\",\n  \"geschwatzt\": \"geschwatzt\",\n  \"geschwebt\": \"geschwebt\",\n  \"geschweifte\": \"geschweift\",\n  \"geschweige\": \"geschweig\",\n  \"geschwiegen\": \"geschwieg\",\n  \"geschwind\": \"geschwind\",\n  \"geschwindigkeit\": \"geschwind\",\n  \"geschwister\": \"geschwist\",\n  \"geschwistern\": \"geschwist\",\n  \"geschwollen\": \"geschwoll\",\n  \"geschwollnen\": \"geschwolln\",\n  \"geschworen\": \"geschwor\",\n  \"geschwulst\": \"geschwul\",\n  \"geschwunden\": \"geschwund\",\n  \"geschwungen\": \"geschwung\",\n  \"geschwungener\": \"geschwung\",\n  \"geschwür\": \"geschwur\",\n  \"geschwüre\": \"geschwur\",\n  \"geschwüren\": \"geschwur\",\n  \"geschwürs\": \"geschwur\",\n  \"gesegnen\": \"gesegn\",\n  \"gesegnet\": \"gesegnet\",\n  \"gesegneten\": \"gesegnet\",\n  \"gesegnetes\": \"gesegnet\",\n  \"gesehen\": \"geseh\",\n  \"gesehene\": \"geseh\",\n  \"gesehn\": \"gesehn\",\n  \"gesehnt\": \"gesehnt\",\n  \"gesell\": \"gesell\",\n  \"geselle\": \"gesell\",\n  \"gesellen\": \"gesell\",\n  \"gesellenschritt\": \"gesellenschritt\",\n  \"gesellschaft\": \"gesellschaft\",\n  \"gesellschaften\": \"gesellschaft\",\n  \"gesellschafter\": \"gesellschaft\",\n  \"gesellschaftliche\": \"gesellschaft\",\n  \"gesellschaftlichen\": \"gesellschaft\",\n  \"gesellschafts\": \"gesellschaft\",\n  \"gesellt\": \"gesellt\",\n  \"gesellte\": \"gesellt\",\n  \"gesellten\": \"gesellt\",\n  \"gesendet\": \"gesendet\",\n  \"gesenkt\": \"gesenkt\",\n  \"gesenktem\": \"gesenkt\",\n  \"gesenkten\": \"gesenkt\",\n  \"gesessen\": \"gesess\",\n  \"gesetz\": \"gesetz\",\n  \"gesetzbücher\": \"gesetzbuch\",\n  \"gesetze\": \"gesetz\",\n  \"gesetzen\": \"gesetz\",\n  \"gesetzes\": \"gesetz\",\n  \"gesetzesstelle\": \"gesetzesstell\",\n  \"gesetzestreue\": \"gesetzestreu\",\n  \"gesetzesübertretungen\": \"gesetzesubertret\",\n  \"gesetzgebend\": \"gesetzgeb\",\n  \"gesetzgebenden\": \"gesetzgeb\",\n  \"gesetzgeber\": \"gesetzgeb\",\n  \"gesetzgeberin\": \"gesetzgeberin\",\n  \"gesetzgebung\": \"gesetzgeb\",\n  \"gesetzlich\": \"gesetz\",\n  \"gesetzliche\": \"gesetz\",\n  \"gesetzlichen\": \"gesetz\",\n  \"gesetzmässig\": \"gesetzmass\",\n  \"gesetzmässige\": \"gesetzmass\",\n  \"gesetzmässigen\": \"gesetzmass\",\n  \"gesetzmässigkeit\": \"gesetzmass\",\n  \"gesetzsammlung\": \"gesetzsamml\",\n  \"gesetzt\": \"gesetzt\",\n  \"gesetzte\": \"gesetzt\",\n  \"gesetzwidrig\": \"gesetzwidr\",\n  \"gesichert\": \"gesichert\",\n  \"gesicherte\": \"gesichert\",\n  \"gesicht\": \"gesicht\",\n  \"gesichtchen\": \"gesichtch\",\n  \"gesichte\": \"gesicht\",\n  \"gesichter\": \"gesicht\",\n  \"gesichtern\": \"gesicht\",\n  \"gesichtes\": \"gesicht\",\n  \"gesichts\": \"gesicht\",\n  \"gesichtsart\": \"gesichtsart\",\n  \"gesichtsfarbe\": \"gesichtsfarb\",\n  \"gesichtskreis\": \"gesichtskreis\",\n  \"gesichtskreise\": \"gesichtskreis\",\n  \"gesichtspunkt\": \"gesichtspunkt\",\n  \"gesichtszüge\": \"gesichtszug\",\n  \"gesichtszügen\": \"gesichtszug\",\n  \"gesiegt\": \"gesiegt\",\n  \"gesimse\": \"gesims\",\n  \"gesimsen\": \"gesims\",\n  \"gesind\": \"gesind\",\n  \"gesinde\": \"gesind\",\n  \"gesindehaus\": \"gesindehaus\",\n  \"gesindel\": \"gesindel\",\n  \"gesindes\": \"gesind\",\n  \"gesinnt\": \"gesinnt\",\n  \"gesinnung\": \"gesinn\",\n  \"gesinnungen\": \"gesinn\",\n  \"gesinnungsart\": \"gesinnungsart\",\n  \"gesinnungslosigkeit\": \"gesinnungslos\",\n  \"gesoffen\": \"gesoff\",\n  \"gesonnen\": \"gesonn\",\n  \"gesorgt\": \"gesorgt\",\n  \"gespann\": \"gespann\",\n  \"gespannt\": \"gespannt\",\n  \"gespannte\": \"gespannt\",\n  \"gespannten\": \"gespannt\",\n  \"gespannter\": \"gespannt\",\n  \"gespart\": \"gespart\",\n  \"gespeistwerden\": \"gespeistwerd\",\n  \"gespenst\": \"gespen\",\n  \"gespenste\": \"gespen\",\n  \"gespensterbäume\": \"gespensterbaum\",\n  \"gespenstisch\": \"gespenst\",\n  \"gesperrt\": \"gesperrt\",\n  \"gespickt\": \"gespickt\",\n  \"gespickten\": \"gespickt\",\n  \"gespielt\": \"gespielt\",\n  \"gespiesen\": \"gespies\",\n  \"gespitzt\": \"gespitzt\",\n  \"gesplittertes\": \"gesplittert\",\n  \"gesponnen\": \"gesponn\",\n  \"gespornt\": \"gespornt\",\n  \"gespornten\": \"gespornt\",\n  \"gespött\": \"gespott\",\n  \"gespötte\": \"gespott\",\n  \"gespräch\": \"gesprach\",\n  \"gespräche\": \"gesprach\",\n  \"gesprächen\": \"gesprach\",\n  \"gesprächigkeit\": \"gesprach\",\n  \"gesprächs\": \"gesprach\",\n  \"gesprächskapitel\": \"gesprachskapitel\",\n  \"gesprächsthema\": \"gesprachsthema\",\n  \"gespreizt\": \"gespreizt\",\n  \"gespreizten\": \"gespreizt\",\n  \"gesprengt\": \"gesprengt\",\n  \"gesprenkelte\": \"gesprenkelt\",\n  \"gespritzt\": \"gespritzt\",\n  \"gesprochen\": \"gesproch\",\n  \"gesprochenen\": \"gesproch\",\n  \"gesprochenes\": \"gesproch\",\n  \"gesprosst\": \"gesprosst\",\n  \"gesproßt\": \"gesprosst\",\n  \"gesprungen\": \"gesprung\",\n  \"gessen\": \"gess\",\n  \"gestalt\": \"gestalt\",\n  \"gestalten\": \"gestalt\",\n  \"gestaltet\": \"gestaltet\",\n  \"gestaltete\": \"gestaltet\",\n  \"gestaltung\": \"gestalt\",\n  \"gestand\": \"gestand\",\n  \"gestanden\": \"gestand\",\n  \"geständnis\": \"gestandnis\",\n  \"geständnisse\": \"gestandnis\",\n  \"gestank\": \"gestank\",\n  \"gestärkt\": \"gestarkt\",\n  \"gestatten\": \"gestatt\",\n  \"gestattet\": \"gestattet\",\n  \"gestattete\": \"gestattet\",\n  \"geste\": \"gest\",\n  \"gesteckt\": \"gesteckt\",\n  \"gesteckten\": \"gesteckt\",\n  \"gestehen\": \"gesteh\",\n  \"gestehn\": \"gestehn\",\n  \"gesteigert\": \"gesteigert\",\n  \"gesteigertem\": \"gesteigert\",\n  \"gestein\": \"gestein\",\n  \"gesteinigt\": \"gesteinigt\",\n  \"gestellt\": \"gestellt\",\n  \"gestellter\": \"gestellt\",\n  \"gestemmt\": \"gestemmt\",\n  \"gestern\": \"gest\",\n  \"gestiefelt\": \"gestiefelt\",\n  \"gestiefelten\": \"gestiefelt\",\n  \"gestiegen\": \"gestieg\",\n  \"gestiftet\": \"gestiftet\",\n  \"gestikulieren\": \"gestikuli\",\n  \"gestimmt\": \"gestimmt\",\n  \"gestirn\": \"gestirn\",\n  \"gestirne\": \"gestirn\",\n  \"gestirnes\": \"gestirn\",\n  \"gestochen\": \"gestoch\",\n  \"gestohlen\": \"gestohl\",\n  \"gestohlenen\": \"gestohl\",\n  \"gestopft\": \"gestopft\",\n  \"gestorben\": \"gestorb\",\n  \"gestört\": \"gestort\",\n  \"gestossen\": \"gestoss\",\n  \"gestoßen\": \"gestoss\",\n  \"gestraft\": \"gestraft\",\n  \"gestrahlt\": \"gestrahlt\",\n  \"gesträuch\": \"gestrauch\",\n  \"gesträuche\": \"gestrauch\",\n  \"gestrebt\": \"gestrebt\",\n  \"gestreckt\": \"gestreckt\",\n  \"gestreckten\": \"gestreckt\",\n  \"gestreift\": \"gestreift\",\n  \"gestreifte\": \"gestreift\",\n  \"gestreiften\": \"gestreift\",\n  \"gestrenge\": \"gestreng\",\n  \"gestrengen\": \"gestreng\",\n  \"gestressten\": \"gestresst\",\n  \"gestreut\": \"gestreut\",\n  \"gestrichen\": \"gestrich\",\n  \"gestrichenen\": \"gestrich\",\n  \"gestrickte\": \"gestrickt\",\n  \"gestrige\": \"gestrig\",\n  \"gestrigen\": \"gestrig\",\n  \"gestritten\": \"gestritt\",\n  \"gestrüpp\": \"gestrupp\",\n  \"gesturm\": \"gesturm\",\n  \"gestürzt\": \"gesturzt\",\n  \"gestützt\": \"gestutzt\",\n  \"gesuch\": \"gesuch\",\n  \"gesucht\": \"gesucht\",\n  \"gesuchten\": \"gesucht\",\n  \"gesuchter\": \"gesucht\",\n  \"gesumm\": \"gesumm\",\n  \"gesund\": \"gesund\",\n  \"gesunde\": \"gesund\",\n  \"gesunden\": \"gesund\",\n  \"gesunder\": \"gesund\",\n  \"gesünderen\": \"gesund\",\n  \"gesünderer\": \"gesund\",\n  \"gesundes\": \"gesund\",\n  \"gesundheit\": \"gesund\",\n  \"gesundheitsamt\": \"gesundheitsamt\",\n  \"gesündigt\": \"gesundigt\",\n  \"gesungen\": \"gesung\",\n  \"gesungenen\": \"gesung\",\n  \"gesunken\": \"gesunk\",\n  \"getäfelten\": \"getafelt\",\n  \"getan\": \"getan\",\n  \"getändelt\": \"getandelt\",\n  \"getanzt\": \"getanzt\",\n  \"getauchte\": \"getaucht\",\n  \"getauchten\": \"getaucht\",\n  \"getauft\": \"getauft\",\n  \"getauften\": \"getauft\",\n  \"getaumelt\": \"getaumelt\",\n  \"getauscht\": \"getauscht\",\n  \"getäuscht\": \"getauscht\",\n  \"geteilt\": \"geteilt\",\n  \"gethsemane\": \"gethseman\",\n  \"getier\": \"geti\",\n  \"getilgt\": \"getilgt\",\n  \"getöne\": \"geton\",\n  \"getönt\": \"getont\",\n  \"getöse\": \"getos\",\n  \"getötet\": \"getotet\",\n  \"getöteten\": \"getotet\",\n  \"getöteter\": \"getotet\",\n  \"getragen\": \"getrag\",\n  \"getragene\": \"getrag\",\n  \"getragenen\": \"getrag\",\n  \"geträllert\": \"getrallert\",\n  \"getränk\": \"getrank\",\n  \"getränke\": \"getrank\",\n  \"getränkemischungen\": \"getrankemisch\",\n  \"getränken\": \"getrank\",\n  \"getränkes\": \"getrank\",\n  \"getränkt\": \"getrankt\",\n  \"getränkter\": \"getrankt\",\n  \"getrauert\": \"getrauert\",\n  \"geträumt\": \"getraumt\",\n  \"geträumte\": \"getraumt\",\n  \"getraut\": \"getraut\",\n  \"getraute\": \"getraut\",\n  \"getreide\": \"getreid\",\n  \"getrennt\": \"getrennt\",\n  \"getrennte\": \"getrennt\",\n  \"getrennten\": \"getrennt\",\n  \"getrennter\": \"getrennt\",\n  \"getreten\": \"getret\",\n  \"getreu\": \"getreu\",\n  \"getreue\": \"getreu\",\n  \"getreuen\": \"getreu\",\n  \"getreulich\": \"getreulich\",\n  \"getriebe\": \"getrieb\",\n  \"getrieben\": \"getrieb\",\n  \"getriebene\": \"getrieb\",\n  \"getriebenes\": \"getrieb\",\n  \"getroffen\": \"getroff\",\n  \"getroffenen\": \"getroff\",\n  \"getrost\": \"getrost\",\n  \"getröstet\": \"getrostet\",\n  \"getrübt\": \"getrubt\",\n  \"getrunken\": \"getrunk\",\n  \"gets\": \"get\",\n  \"getupf\": \"getupf\",\n  \"geübt\": \"geubt\",\n  \"geübter\": \"geubt\",\n  \"geurteilt\": \"geurteilt\",\n  \"gevatter\": \"gevatt\",\n  \"gevatterschaften\": \"gevatterschaft\",\n  \"gevattersfrau\": \"gevattersfrau\",\n  \"gewächs\": \"gewach\",\n  \"gewächse\": \"gewachs\",\n  \"gewachsen\": \"gewachs\",\n  \"gewachsenes\": \"gewachs\",\n  \"gewacht\": \"gewacht\",\n  \"gewagt\": \"gewagt\",\n  \"gewählt\": \"gewahlt\",\n  \"gewählte\": \"gewahlt\",\n  \"gewählten\": \"gewahlt\",\n  \"gewähltfranks\": \"gewahltfrank\",\n  \"gewähnt\": \"gewahnt\",\n  \"gewahren\": \"gewahr\",\n  \"gewähren\": \"gewahr\",\n  \"gewahrend\": \"gewahr\",\n  \"gewahrsam\": \"gewahrsam\",\n  \"gewahrt\": \"gewahrt\",\n  \"gewährt\": \"gewahrt\",\n  \"gewahrte\": \"gewahrt\",\n  \"gewährte\": \"gewahrt\",\n  \"gewahrten\": \"gewahrt\",\n  \"gewährten\": \"gewahrt\",\n  \"gewalt\": \"gewalt\",\n  \"gewaltder\": \"gewaltd\",\n  \"gewalthabende\": \"gewalthab\",\n  \"gewaltig\": \"gewalt\",\n  \"gewaltige\": \"gewalt\",\n  \"gewaltigem\": \"gewalt\",\n  \"gewaltigen\": \"gewalt\",\n  \"gewaltiger\": \"gewalt\",\n  \"gewaltiges\": \"gewalt\",\n  \"gewaltigsten\": \"gewalt\",\n  \"gewaltlos\": \"gewaltlos\",\n  \"gewaltlosen\": \"gewaltlos\",\n  \"gewaltsam\": \"gewaltsam\",\n  \"gewaltsamer\": \"gewaltsam\",\n  \"gewalttat\": \"gewalttat\",\n  \"gewalttätigen\": \"gewalttat\",\n  \"gewalttätiger\": \"gewalttat\",\n  \"gewalttätigkeit\": \"gewalttat\",\n  \"gewand\": \"gewand\",\n  \"gewande\": \"gewand\",\n  \"gewandelt\": \"gewandelt\",\n  \"gewänder\": \"gewand\",\n  \"gewandert\": \"gewandert\",\n  \"gewandes\": \"gewand\",\n  \"gewandt\": \"gewandt\",\n  \"gewandte\": \"gewandt\",\n  \"gewandten\": \"gewandt\",\n  \"gewandtheit\": \"gewandt\",\n  \"gewann\": \"gewann\",\n  \"gewannen\": \"gewann\",\n  \"gewarnt\": \"gewarnt\",\n  \"gewartet\": \"gewartet\",\n  \"gewärtig\": \"gewart\",\n  \"gewärtigen\": \"gewart\",\n  \"gewaschen\": \"gewasch\",\n  \"gewaschene\": \"gewasch\",\n  \"gewässer\": \"gewass\",\n  \"gewässerter\": \"gewassert\",\n  \"gewebe\": \"geweb\",\n  \"gewebeproben\": \"gewebeprob\",\n  \"gewechselt\": \"gewechselt\",\n  \"geweckt\": \"geweckt\",\n  \"gewehlbe\": \"gewehlb\",\n  \"gewehr\": \"gewehr\",\n  \"gewehre\": \"gewehr\",\n  \"gewehren\": \"gewehr\",\n  \"gewehrlauf\": \"gewehrlauf\",\n  \"geweigert\": \"geweigert\",\n  \"geweih\": \"geweih\",\n  \"geweihbildung\": \"geweihbild\",\n  \"geweihes\": \"geweih\",\n  \"geweihete\": \"geweihet\",\n  \"geweissagt\": \"geweissagt\",\n  \"geweisst\": \"geweisst\",\n  \"geweisstes\": \"geweisst\",\n  \"gewendet\": \"gewendet\",\n  \"gewendeter\": \"gewendet\",\n  \"gewerbe\": \"gewerb\",\n  \"gewerkschaft\": \"gewerkschaft\",\n  \"gewerkschaftsdemonstration\": \"gewerkschaftsdemonstration\",\n  \"gewesen\": \"gewes\",\n  \"gewesenen\": \"gewes\",\n  \"gewichen\": \"gewich\",\n  \"gewicht\": \"gewicht\",\n  \"gewichtigen\": \"gewicht\",\n  \"gewickelt\": \"gewickelt\",\n  \"gewiegter\": \"gewiegt\",\n  \"gewiesen\": \"gewies\",\n  \"gewildes\": \"gewild\",\n  \"gewillt\": \"gewillt\",\n  \"gewinn\": \"gewinn\",\n  \"gewinne\": \"gewinn\",\n  \"gewinnen\": \"gewinn\",\n  \"gewinnende\": \"gewinn\",\n  \"gewinnes\": \"gewinn\",\n  \"gewinnt\": \"gewinnt\",\n  \"gewirkt\": \"gewirkt\",\n  \"gewiss\": \"gewiss\",\n  \"gewiß\": \"gewiss\",\n  \"gewisse\": \"gewiss\",\n  \"gewissem\": \"gewiss\",\n  \"gewissen\": \"gewiss\",\n  \"gewissenhaft\": \"gewissenhaft\",\n  \"gewissenhafter\": \"gewissenhaft\",\n  \"gewissenlos\": \"gewissenlos\",\n  \"gewissenloser\": \"gewissenlos\",\n  \"gewissenlosigkeit\": \"gewissenlos\",\n  \"gewissenlosigkeiten\": \"gewissenlos\",\n  \"gewissens\": \"gewiss\",\n  \"gewissensangst\": \"gewissensang\",\n  \"gewissensbedenken\": \"gewissensbedenk\",\n  \"gewissensbisse\": \"gewissensbiss\",\n  \"gewissensbürde\": \"gewissensburd\",\n  \"gewissensfreien\": \"gewissensfrei\",\n  \"gewissensgründen\": \"gewissensgrund\",\n  \"gewissenskonflikt\": \"gewissenskonflikt\",\n  \"gewissenskonfliktes\": \"gewissenskonflikt\",\n  \"gewissenspein\": \"gewissenspein\",\n  \"gewissensqualen\": \"gewissensqual\",\n  \"gewisser\": \"gewiss\",\n  \"gewissermassen\": \"gewissermass\",\n  \"gewissermaßen\": \"gewissermass\",\n  \"gewisses\": \"gewiss\",\n  \"gewisseste\": \"gewiss\",\n  \"gewissesten\": \"gewiss\",\n  \"gewissheit\": \"gewiss\",\n  \"gewißheit\": \"gewiss\",\n  \"gewisslich\": \"gewiss\",\n  \"gewißlich\": \"gewiss\",\n  \"gewitter\": \"gewitt\",\n  \"gewitterregen\": \"gewitterreg\",\n  \"gewitterstürme\": \"gewittersturm\",\n  \"gewitterwolken\": \"gewitterwolk\",\n  \"gewitzter\": \"gewitzt\",\n  \"gewogen\": \"gewog\",\n  \"gewogt\": \"gewogt\",\n  \"gewöhnen\": \"gewohn\",\n  \"gewohnheit\": \"gewohn\",\n  \"gewohnheiten\": \"gewohn\",\n  \"gewöhnlich\": \"gewohn\",\n  \"gewöhnliche\": \"gewohn\",\n  \"gewöhnlichen\": \"gewohn\",\n  \"gewöhnlicher\": \"gewohn\",\n  \"gewöhnlichste\": \"gewohn\",\n  \"gewöhnlichsten\": \"gewohn\",\n  \"gewohnt\": \"gewohnt\",\n  \"gewöhnt\": \"gewohnt\",\n  \"gewöhnte\": \"gewohnt\",\n  \"gewohnten\": \"gewohnt\",\n  \"gewohnterweise\": \"gewohnterweis\",\n  \"gewöhnung\": \"gewohn\",\n  \"gewölk\": \"gewolk\",\n  \"gewollt\": \"gewollt\",\n  \"gewönne\": \"gewonn\",\n  \"gewonnen\": \"gewonn\",\n  \"gewonnenen\": \"gewonn\",\n  \"geworben\": \"geworb\",\n  \"geworden\": \"geword\",\n  \"gewordene\": \"geword\",\n  \"gewordenen\": \"geword\",\n  \"gewordener\": \"geword\",\n  \"geworfen\": \"geworf\",\n  \"geworfene\": \"geworf\",\n  \"geworfenen\": \"geworf\",\n  \"gewühl\": \"gewuhl\",\n  \"gewunden\": \"gewund\",\n  \"gewundene\": \"gewund\",\n  \"gewünschtdie\": \"gewunschtdi\",\n  \"gewünschten\": \"gewunscht\",\n  \"gewünschtes\": \"gewunscht\",\n  \"gewürdigt\": \"gewurdigt\",\n  \"gewürfelte\": \"gewurfelt\",\n  \"gewürm\": \"gewurm\",\n  \"gewürme\": \"gewurm\",\n  \"gewürms\": \"gewurm\",\n  \"gewurzelt\": \"gewurzelt\",\n  \"gewürzen\": \"gewurz\",\n  \"gewürzes\": \"gewurz\",\n  \"gewürzmörser\": \"gewurzmors\",\n  \"gewürznägelein\": \"gewurznagelein\",\n  \"gewürzt\": \"gewurzt\",\n  \"gewusst\": \"gewusst\",\n  \"gewußt\": \"gewusst\",\n  \"gezählt\": \"gezahlt\",\n  \"gezahnten\": \"gezahnt\",\n  \"gezaubert\": \"gezaubert\",\n  \"gezecht\": \"gezecht\",\n  \"gezeichnet\": \"gezeichnet\",\n  \"gezeigt\": \"gezeigt\",\n  \"gezeigten\": \"gezeigt\",\n  \"gezerrt\": \"gezerrt\",\n  \"gezeugt\": \"gezeugt\",\n  \"gezielt\": \"gezielt\",\n  \"geziemenden\": \"geziem\",\n  \"geziemender\": \"geziem\",\n  \"geziemt\": \"geziemt\",\n  \"geziere\": \"gezi\",\n  \"geziert\": \"geziert\",\n  \"gezierten\": \"geziert\",\n  \"gezimmerte\": \"gezimmert\",\n  \"gezittert\": \"gezittert\",\n  \"gezogen\": \"gezog\",\n  \"gezogene\": \"gezog\",\n  \"gezogenen\": \"gezog\",\n  \"gezücht\": \"gezucht\",\n  \"gezüchtet\": \"gezuchtet\",\n  \"gezüchtigt\": \"gezuchtigt\",\n  \"gezweig\": \"gezweig\",\n  \"gezwitscher\": \"gezwitsch\",\n  \"gezwungen\": \"gezwung\",\n  \"gezwungene\": \"gezwung\",\n  \"gfahln\": \"gfahln\",\n  \"gfallen\": \"gfall\",\n  \"gfallt\": \"gfallt\",\n  \"gflickt\": \"gflickt\",\n  \"gfressen\": \"gfress\",\n  \"gfunden\": \"gfund\",\n  \"ghabt\": \"ghabt\",\n  \"ghear\": \"ghear\",\n  \"gheart\": \"gheart\",\n  \"ghört\": \"ghort\",\n  \"gian\": \"gian\",\n  \"gib\": \"gib\",\n  \"gibeon\": \"gibeon\",\n  \"gibeoniten\": \"gibeonit\",\n  \"gibeoniter\": \"gibeonit\",\n  \"gibst\": \"gibst\",\n  \"gibt\": \"gibt\",\n  \"gibts\": \"gibt\",\n  \"gichon\": \"gichon\",\n  \"gichtschmerzen\": \"gichtschmerz\",\n  \"gideon\": \"gideon\",\n  \"gier\": \"gier\",\n  \"gierig\": \"gierig\",\n  \"gierigkeit\": \"gierig\",\n  \"gierten\": \"giert\",\n  \"giessbach\": \"giessbach\",\n  \"gießbach\": \"giessbach\",\n  \"giessbäche\": \"giessbach\",\n  \"gießbäche\": \"giessbach\",\n  \"giesse\": \"giess\",\n  \"gieße\": \"giess\",\n  \"giessen\": \"giess\",\n  \"giesskanne\": \"giesskann\",\n  \"giesst\": \"giesst\",\n  \"gießt\": \"giesst\",\n  \"gift\": \"gift\",\n  \"gifte\": \"gift\",\n  \"giftes\": \"gift\",\n  \"giftig\": \"giftig\",\n  \"giftige\": \"giftig\",\n  \"giftigen\": \"giftig\",\n  \"giftmischerinnen\": \"giftmischerinn\",\n  \"giftpilzen\": \"giftpilz\",\n  \"gilead\": \"gilead\",\n  \"gilt\": \"gilt\",\n  \"ging\": \"ging\",\n  \"ginge\": \"ging\",\n  \"gingen\": \"ging\",\n  \"gipfel\": \"gipfel\",\n  \"gipfeln\": \"gipfeln\",\n  \"gipfelpunkt\": \"gipfelpunkt\",\n  \"gipsarbeiter\": \"gipsarbeit\",\n  \"gissgen\": \"gissg\",\n  \"gitarre\": \"gitarr\",\n  \"gitarrebegleiten\": \"gitarrebegleit\",\n  \"gitter\": \"gitt\",\n  \"gitterchen\": \"gitterch\",\n  \"glacht\": \"glacht\",\n  \"gladiolos\": \"gladiolos\",\n  \"glanz\": \"glanz\",\n  \"glanzalter\": \"glanzalt\",\n  \"glanze\": \"glanz\",\n  \"glänzen\": \"glanz\",\n  \"glänzend\": \"glanzend\",\n  \"glänzende\": \"glanzend\",\n  \"glänzendem\": \"glanzend\",\n  \"glänzenden\": \"glanzend\",\n  \"glänzender\": \"glanzend\",\n  \"glänzendes\": \"glanzend\",\n  \"glänzendsten\": \"glanzend\",\n  \"glanzlosen\": \"glanzlos\",\n  \"glänzt\": \"glanzt\",\n  \"glänzte\": \"glanzt\",\n  \"glänzten\": \"glanzt\",\n  \"glanzzeit\": \"glanzzeit\",\n  \"glas\": \"glas\",\n  \"gläschen\": \"glasch\",\n  \"glase\": \"glas\",\n  \"glaser\": \"glas\",\n  \"gläser\": \"glas\",\n  \"gläsern\": \"glas\",\n  \"gläserne\": \"glasern\",\n  \"gläsernen\": \"glasern\",\n  \"glasglöckchen\": \"glasglockch\",\n  \"glashelle\": \"glashell\",\n  \"glaskanzel\": \"glaskanzel\",\n  \"glaskästchen\": \"glaskastch\",\n  \"glaskeulen\": \"glaskeul\",\n  \"glaskutsche\": \"glaskutsch\",\n  \"glasperlen\": \"glasperl\",\n  \"glasschneiden\": \"glasschneid\",\n  \"glassteinchen\": \"glassteinch\",\n  \"glasstoff\": \"glasstoff\",\n  \"glaswand\": \"glaswand\",\n  \"glasziegeln\": \"glasziegeln\",\n  \"glatt\": \"glatt\",\n  \"glätte\": \"glatt\",\n  \"glatten\": \"glatt\",\n  \"glätten\": \"glatt\",\n  \"glättete\": \"glattet\",\n  \"glaub\": \"glaub\",\n  \"glaube\": \"glaub\",\n  \"glauben\": \"glaub\",\n  \"glaubenden\": \"glaubend\",\n  \"glaubens\": \"glaub\",\n  \"glaubensartikel\": \"glaubensartikel\",\n  \"glaubensbekenntnis\": \"glaubensbekenntnis\",\n  \"glaubenserkenntnisse\": \"glaubenserkenntnis\",\n  \"glaubenserkenntnissen\": \"glaubenserkenntnis\",\n  \"glaubensfragen\": \"glaubensfrag\",\n  \"glaubensgeheimnis\": \"glaubensgeheimnis\",\n  \"glaubensgeheimnisse\": \"glaubensgeheimnis\",\n  \"glaubensguten\": \"glaubensgut\",\n  \"glaubensleben\": \"glaubensleb\",\n  \"glaubenslebens\": \"glaubensleb\",\n  \"glaubenslehre\": \"glaubenslehr\",\n  \"glaubenslehren\": \"glaubenslehr\",\n  \"glaubenssache\": \"glaubenssach\",\n  \"glaubenssachen\": \"glaubenssach\",\n  \"glaubensüberreste\": \"glaubensuberr\",\n  \"glaubensvorschriften\": \"glaubensvorschrift\",\n  \"glaubenswahre\": \"glaubenswahr\",\n  \"glaubenswahren\": \"glaubenswahr\",\n  \"glaubenswahres\": \"glaubenswahr\",\n  \"glaubenswahrheit\": \"glaubenswahr\",\n  \"glaubenswahrheiten\": \"glaubenswahr\",\n  \"glaubenswissenschaft\": \"glaubenswissenschaft\",\n  \"glaubest\": \"glaub\",\n  \"glaubet\": \"glaubet\",\n  \"gläubige\": \"glaubig\",\n  \"gläubigen\": \"glaubig\",\n  \"gläubiger\": \"glaubig\",\n  \"gläubigern\": \"glaubig\",\n  \"glaubst\": \"glaub\",\n  \"glaubt\": \"glaubt\",\n  \"glaubte\": \"glaubt\",\n  \"glaubten\": \"glaubt\",\n  \"glaubtet\": \"glaubtet\",\n  \"glaubwürdig\": \"glaubwurd\",\n  \"glaubwürdige\": \"glaubwurd\",\n  \"glaubwürdigkeit\": \"glaubwurd\",\n  \"glegen\": \"gleg\",\n  \"glegenheit\": \"gleg\",\n  \"gleich\": \"gleich\",\n  \"gleichartig\": \"gleichart\",\n  \"gleichartiges\": \"gleichart\",\n  \"gleichbedeutend\": \"gleichbedeut\",\n  \"gleiche\": \"gleich\",\n  \"gleichem\": \"gleich\",\n  \"gleichen\": \"gleich\",\n  \"gleichentags\": \"gleichentag\",\n  \"gleicher\": \"gleich\",\n  \"gleichermassen\": \"gleichermass\",\n  \"gleicherzeit\": \"gleicherzeit\",\n  \"gleiches\": \"gleich\",\n  \"gleichfalls\": \"gleichfall\",\n  \"gleichförmig\": \"gleichform\",\n  \"gleichgeschätzt\": \"gleichgeschatzt\",\n  \"gleichgesetzt\": \"gleichgesetzt\",\n  \"gleichgewicht\": \"gleichgewicht\",\n  \"gleichgültig\": \"gleichgult\",\n  \"gleichgültigkeit\": \"gleichgult\",\n  \"gleichgültigste\": \"gleichgult\",\n  \"gleichheit\": \"gleichheit\",\n  \"gleichmass\": \"gleichmass\",\n  \"gleichmaß\": \"gleichmass\",\n  \"gleichmässig\": \"gleichmass\",\n  \"gleichmässige\": \"gleichmass\",\n  \"gleichmässigen\": \"gleichmass\",\n  \"gleichmut\": \"gleichmut\",\n  \"gleichmütig\": \"gleichmut\",\n  \"gleichnis\": \"gleichnis\",\n  \"gleichnissen\": \"gleichnis\",\n  \"gleichsah\": \"gleichsah\",\n  \"gleichsam\": \"gleichsam\",\n  \"gleichsehend\": \"gleichseh\",\n  \"gleichstellte\": \"gleichstellt\",\n  \"gleicht\": \"gleicht\",\n  \"gleichung\": \"gleichung\",\n  \"gleichviel\": \"gleichviel\",\n  \"gleichwie\": \"gleichwi\",\n  \"gleichwohl\": \"gleichwohl\",\n  \"gleichzeitig\": \"gleichzeit\",\n  \"gleichzeitigen\": \"gleichzeit\",\n  \"gleichzumachen\": \"gleichzumach\",\n  \"gleis\": \"gleis\",\n  \"gleise\": \"gleis\",\n  \"gleissnerei\": \"gleissnerei\",\n  \"gleitet\": \"gleitet\",\n  \"glesen\": \"gles\",\n  \"glich\": \"glich\",\n  \"glichen\": \"glich\",\n  \"glied\": \"glied\",\n  \"glieder\": \"glied\",\n  \"gliederlein\": \"gliederlein\",\n  \"gliedern\": \"glied\",\n  \"glimmenden\": \"glimmend\",\n  \"glimmrigen\": \"glimmrig\",\n  \"glitt\": \"glitt\",\n  \"glitten\": \"glitt\",\n  \"glitzernde\": \"glitzernd\",\n  \"glitzernden\": \"glitzernd\",\n  \"glöckchen\": \"glockch\",\n  \"glocke\": \"glock\",\n  \"glocken\": \"glock\",\n  \"glockengeläute\": \"glockengelaut\",\n  \"glockenschläge\": \"glockenschlag\",\n  \"glockenschnur\": \"glockenschnur\",\n  \"glockenschönen\": \"glockenschon\",\n  \"glockenspiel\": \"glockenspiel\",\n  \"glockenstimme\": \"glockenstimm\",\n  \"glöcklein\": \"glocklein\",\n  \"gloria\": \"gloria\",\n  \"glorie\": \"glori\",\n  \"glorreichen\": \"glorreich\",\n  \"glotzäugelchen\": \"glotzaugelch\",\n  \"glotzaugen\": \"glotzaug\",\n  \"glotzäugig\": \"glotzaug\",\n  \"glotzte\": \"glotzt\",\n  \"glotzten\": \"glotzt\",\n  \"glück\": \"gluck\",\n  \"glücke\": \"gluck\",\n  \"glückes\": \"gluck\",\n  \"glückhaften\": \"gluckhaft\",\n  \"glücklich\": \"glucklich\",\n  \"glückliche\": \"glucklich\",\n  \"glücklichen\": \"glucklich\",\n  \"glücklicher\": \"glucklich\",\n  \"glücklicheren\": \"glucklich\",\n  \"glücklichern\": \"glucklich\",\n  \"glücklicherweise\": \"glucklicherweis\",\n  \"glücklichste\": \"glucklich\",\n  \"glücklichsten\": \"glucklich\",\n  \"glücks\": \"gluck\",\n  \"glückselig\": \"glucksel\",\n  \"glückselige\": \"glucksel\",\n  \"glückseligen\": \"glucksel\",\n  \"glückseliger\": \"glucksel\",\n  \"glückseligkeit\": \"glucksel\",\n  \"glückseligkeitslehre\": \"gluckseligkeitslehr\",\n  \"glückseligkeitsprinzip\": \"gluckseligkeitsprinzip\",\n  \"glückseligkeitsprinzips\": \"gluckseligkeitsprinzips\",\n  \"glucksen\": \"glucks\",\n  \"glücksfall\": \"glucksfall\",\n  \"glücksgefühle\": \"glucksgefuhl\",\n  \"glückskind\": \"gluckskind\",\n  \"glückt\": \"gluckt\",\n  \"glückwunsch\": \"gluckwunsch\",\n  \"glühen\": \"gluh\",\n  \"glühend\": \"gluhend\",\n  \"glühende\": \"gluhend\",\n  \"glühenden\": \"gluhend\",\n  \"glühender\": \"gluhend\",\n  \"glühendes\": \"gluhend\",\n  \"glühendrot\": \"gluhendrot\",\n  \"glühendste\": \"gluhend\",\n  \"glühlampe\": \"gluhlamp\",\n  \"glühte\": \"gluht\",\n  \"glühten\": \"gluht\",\n  \"glühwürmchen\": \"gluhwurmch\",\n  \"glupft\": \"glupft\",\n  \"glut\": \"glut\",\n  \"gmacht\": \"gmacht\",\n  \"gmeint\": \"gmeint\",\n  \"gmerkt\": \"gmerkt\",\n  \"gnade\": \"gnad\",\n  \"gnaden\": \"gnad\",\n  \"gnadenbrot\": \"gnadenbrot\",\n  \"gnadensonne\": \"gnadensonn\",\n  \"gnadenstuhl\": \"gnadenstuhl\",\n  \"gnadenstuhls\": \"gnadenstuhl\",\n  \"gnädig\": \"gnadig\",\n  \"gnädige\": \"gnadig\",\n  \"gnädiger\": \"gnadig\",\n  \"gnädiglich\": \"gnadig\",\n  \"gnädigste\": \"gnadig\",\n  \"gnante\": \"gnant\",\n  \"gnau\": \"gnau\",\n  \"gnommen\": \"gnomm\",\n  \"gnug\": \"gnug\",\n  \"gockelhahn\": \"gockelhahn\",\n  \"gockelhahns\": \"gockelhahn\",\n  \"goethe\": \"goeth\",\n  \"gog\": \"gog\",\n  \"göhl\": \"gohl\",\n  \"gold\": \"gold\",\n  \"goldach\": \"goldach\",\n  \"goldacher\": \"goldach\",\n  \"goldbecher\": \"goldbech\",\n  \"goldbefrackter\": \"goldbefrackt\",\n  \"goldbestecke\": \"goldbesteck\",\n  \"goldbeutel\": \"goldbeutel\",\n  \"goldblatt\": \"goldblatt\",\n  \"goldblätter\": \"goldblatt\",\n  \"goldblonden\": \"goldblond\",\n  \"goldbörtchen\": \"goldbortch\",\n  \"goldbuchstaben\": \"goldbuchstab\",\n  \"golddress\": \"golddress\",\n  \"golddreß\": \"golddress\",\n  \"golddukaten\": \"golddukat\",\n  \"golde\": \"gold\",\n  \"goldene\": \"gold\",\n  \"goldenem\": \"gold\",\n  \"goldenen\": \"gold\",\n  \"goldener\": \"gold\",\n  \"goldenes\": \"gold\",\n  \"goldes\": \"gold\",\n  \"goldfische\": \"goldfisch\",\n  \"goldfuchs\": \"goldfuch\",\n  \"goldfuchse\": \"goldfuchs\",\n  \"goldgelbes\": \"goldgelb\",\n  \"goldgeschäfte\": \"goldgeschaft\",\n  \"goldgrube\": \"goldgrub\",\n  \"goldgülden\": \"goldguld\",\n  \"goldhäubchen\": \"goldhaubch\",\n  \"goldhelm\": \"goldhelm\",\n  \"goldig\": \"goldig\",\n  \"goldigen\": \"goldig\",\n  \"goldketten\": \"goldkett\",\n  \"goldkieswege\": \"goldkiesweg\",\n  \"goldknechte\": \"goldknecht\",\n  \"goldkugeln\": \"goldkugeln\",\n  \"goldlack\": \"goldlack\",\n  \"goldne\": \"goldn\",\n  \"goldnen\": \"goldn\",\n  \"goldpapier\": \"goldpapi\",\n  \"goldreserven\": \"goldreserv\",\n  \"goldscheibe\": \"goldscheib\",\n  \"goldschlangen\": \"goldschlang\",\n  \"goldschmied\": \"goldschmied\",\n  \"goldschnüren\": \"goldschnur\",\n  \"goldstickereien\": \"goldstickerei\",\n  \"goldstück\": \"goldstuck\",\n  \"goldstücke\": \"goldstuck\",\n  \"goldtaler\": \"goldtal\",\n  \"goldtalern\": \"goldtal\",\n  \"goldtresse\": \"goldtress\",\n  \"goldwaage\": \"goldwaag\",\n  \"gölte\": \"golt\",\n  \"gomorrah\": \"gomorrah\",\n  \"gomorrahs\": \"gomorrah\",\n  \"gönne\": \"gonn\",\n  \"gönnen\": \"gonn\",\n  \"gönner\": \"gonn\",\n  \"gönnte\": \"gonnt\",\n  \"goodbye\": \"goodby\",\n  \"gopher\": \"goph\",\n  \"gosen\": \"gos\",\n  \"goss\": \"goss\",\n  \"goß\": \"goss\",\n  \"gotisches\": \"gotisch\",\n  \"gott\": \"gott\",\n  \"götter\": \"gott\",\n  \"götterbilder\": \"gotterbild\",\n  \"göttern\": \"gott\",\n  \"gottes\": \"gott\",\n  \"gottesdienst\": \"gottesdien\",\n  \"gottesdienstbesucher\": \"gottesdienstbesuch\",\n  \"gottesdienste\": \"gottesdien\",\n  \"gottesdiensten\": \"gottesdien\",\n  \"gottesdienstes\": \"gottesdien\",\n  \"gottesgelehrten\": \"gottesgelehrt\",\n  \"gottesgelehrter\": \"gottesgelehrt\",\n  \"gottesgläubig\": \"gottesglaub\",\n  \"gotteslästerlichsten\": \"gotteslast\",\n  \"gottesmannes\": \"gottesmann\",\n  \"gottesverehrung\": \"gottesverehr\",\n  \"gottfried\": \"gottfried\",\n  \"gotthard\": \"gotthard\",\n  \"gottheit\": \"gottheit\",\n  \"göttin\": \"gottin\",\n  \"göttlich\": \"gottlich\",\n  \"göttliche\": \"gottlich\",\n  \"göttlichen\": \"gottlich\",\n  \"göttlicher\": \"gottlich\",\n  \"göttliches\": \"gottlich\",\n  \"gottlose\": \"gottlos\",\n  \"gottlosen\": \"gottlos\",\n  \"gottloser\": \"gottlos\",\n  \"gotts\": \"gott\",\n  \"gottsnamen\": \"gottsnam\",\n  \"gottverfluchts\": \"gottverflucht\",\n  \"gottverlassene\": \"gottverlass\",\n  \"götzen\": \"gotz\",\n  \"götzenbild\": \"gotzenbild\",\n  \"götzenbilder\": \"gotzenbild\",\n  \"götzenbildes\": \"gotzenbild\",\n  \"götzendienerisch\": \"gotzendiener\",\n  \"götzendienerische\": \"gotzendiener\",\n  \"götzendienerischen\": \"gotzendiener\",\n  \"götzendienerisches\": \"gotzendiener\",\n  \"götzendienst\": \"gotzendien\",\n  \"götzensteine\": \"gotzenstein\",\n  \"gouvernement\": \"gouvernement\",\n  \"gouverneur\": \"gouverneur\",\n  \"gouverneurs\": \"gouverneur\",\n  \"grab\": \"grab\",\n  \"grabbegleitung\": \"grabbegleit\",\n  \"grabe\": \"grab\",\n  \"graben\": \"grab\",\n  \"gräben\": \"grab\",\n  \"gräber\": \"grab\",\n  \"gräbern\": \"grab\",\n  \"grabesstill\": \"grabesstill\",\n  \"grabtuch\": \"grabtuch\",\n  \"grabtuchs\": \"grabtuch\",\n  \"grad\": \"grad\",\n  \"gradaus\": \"gradaus\",\n  \"gradausfahrendes\": \"gradausfahr\",\n  \"grade\": \"grad\",\n  \"graden\": \"grad\",\n  \"grades\": \"grad\",\n  \"gradezu\": \"gradezu\",\n  \"gradheit\": \"gradheit\",\n  \"gradlinigen\": \"gradlin\",\n  \"graf\": \"graf\",\n  \"grafen\": \"graf\",\n  \"grafenrock\": \"grafenrock\",\n  \"grafensohn\": \"grafensohn\",\n  \"gräfin\": \"grafin\",\n  \"gräfliche\": \"graflich\",\n  \"gräflichem\": \"graflich\",\n  \"gräflichen\": \"graflich\",\n  \"gram\": \"gram\",\n  \"grämen\": \"gram\",\n  \"grammaticale\": \"grammatical\",\n  \"grammatik\": \"grammat\",\n  \"grammophon\": \"grammophon\",\n  \"gramvollen\": \"gramvoll\",\n  \"granatbaum\": \"granatbaum\",\n  \"granatblütenstrauss\": \"granatblutenstrauss\",\n  \"granatwerfer\": \"granatwerf\",\n  \"granen\": \"gran\",\n  \"granitklotz\": \"granitklotz\",\n  \"gras\": \"gras\",\n  \"grase\": \"gras\",\n  \"grasen\": \"gras\",\n  \"gräser\": \"gras\",\n  \"gräsern\": \"gras\",\n  \"grashälmchen\": \"grashalmch\",\n  \"grasigen\": \"grasig\",\n  \"grasreich\": \"grasreich\",\n  \"grasreichen\": \"grasreich\",\n  \"gräßlich\": \"grasslich\",\n  \"grässliche\": \"grasslich\",\n  \"gräßliche\": \"grasslich\",\n  \"grässlichen\": \"grasslich\",\n  \"gräßlichen\": \"grasslich\",\n  \"grässlichsten\": \"grasslich\",\n  \"grasten\": \"grast\",\n  \"grasteufeln\": \"grasteufeln\",\n  \"grasüberwachsene\": \"grasuberwachs\",\n  \"grat\": \"grat\",\n  \"gratis\": \"gratis\",\n  \"gratulierte\": \"gratuliert\",\n  \"grau\": \"grau\",\n  \"graubärtigen\": \"graubart\",\n  \"graublauen\": \"graublau\",\n  \"graue\": \"grau\",\n  \"grauem\": \"grau\",\n  \"grauen\": \"grau\",\n  \"grauendem\": \"grauend\",\n  \"grauenvollen\": \"grauenvoll\",\n  \"grauer\": \"grau\",\n  \"graues\": \"grau\",\n  \"graumeliertes\": \"graumeliert\",\n  \"grausam\": \"grausam\",\n  \"grausamen\": \"grausam\",\n  \"grausamerweise\": \"grausamerweis\",\n  \"grausames\": \"grausam\",\n  \"grausamkeit\": \"grausam\",\n  \"grauschwarzen\": \"grauschwarz\",\n  \"grausen\": \"graus\",\n  \"grausens\": \"graus\",\n  \"graute\": \"graut\",\n  \"grauweiss\": \"grauweiss\",\n  \"grauweissen\": \"grauweiss\",\n  \"grauzone\": \"grauzon\",\n  \"gravierende\": \"gravier\",\n  \"gravierenden\": \"gravier\",\n  \"gravität\": \"gravitat\",\n  \"gravitätisch\": \"gravitat\",\n  \"grazilsten\": \"grazil\",\n  \"gredt\": \"gredt\",\n  \"grehm\": \"grehm\",\n  \"greifen\": \"greif\",\n  \"greifenden\": \"greifend\",\n  \"greifliche\": \"greiflich\",\n  \"greift\": \"greift\",\n  \"greinige\": \"greinig\",\n  \"greinstimme\": \"greinstimm\",\n  \"greis\": \"greis\",\n  \"greise\": \"greis\",\n  \"greisen\": \"greis\",\n  \"greisenalter\": \"greisenalt\",\n  \"greisengestalt\": \"greisengestalt\",\n  \"greisenhafter\": \"greisenhaft\",\n  \"greisenhaftigkeit\": \"greisenhaft\",\n  \"greisentums\": \"greisentum\",\n  \"grell\": \"grell\",\n  \"grellen\": \"grell\",\n  \"gremium\": \"gremium\",\n  \"grendelmeier\": \"grendelmei\",\n  \"grenz\": \"grenz\",\n  \"grenzbauden\": \"grenzbaud\",\n  \"grenzbestimmung\": \"grenzbestimm\",\n  \"grenzbezirk\": \"grenzbezirk\",\n  \"grenze\": \"grenz\",\n  \"grenzen\": \"grenz\",\n  \"grenzenlos\": \"grenzenlos\",\n  \"grenzenlose\": \"grenzenlos\",\n  \"grenzenlosen\": \"grenzenlos\",\n  \"grenzscheide\": \"grenzscheid\",\n  \"grenzschenke\": \"grenzschenk\",\n  \"grenzt\": \"grenzt\",\n  \"grenzte\": \"grenzt\",\n  \"grete\": \"gret\",\n  \"greuel\": \"greuel\",\n  \"greuelhafte\": \"greuelhaft\",\n  \"greuelhaftes\": \"greuelhaft\",\n  \"greueln\": \"greueln\",\n  \"greuels\": \"greuel\",\n  \"greueltaten\": \"greueltat\",\n  \"greulich\": \"greulich\",\n  \"greuliche\": \"greulich\",\n  \"greulichem\": \"greulich\",\n  \"greulichen\": \"greulich\",\n  \"greulicher\": \"greulich\",\n  \"greuliches\": \"greulich\",\n  \"greve\": \"grev\",\n  \"griechen\": \"griech\",\n  \"griechenland\": \"griechenland\",\n  \"griechische\": \"griechisch\",\n  \"griechischem\": \"griechisch\",\n  \"griechischen\": \"griechisch\",\n  \"griff\": \"griff\",\n  \"griffen\": \"griff\",\n  \"grille\": \"grill\",\n  \"grillen\": \"grill\",\n  \"grimassen\": \"grimass\",\n  \"grimm\": \"grimm\",\n  \"grimmig\": \"grimmig\",\n  \"grimmige\": \"grimmig\",\n  \"grimmigem\": \"grimmig\",\n  \"grimmigen\": \"grimmig\",\n  \"grimmiger\": \"grimmig\",\n  \"grimmiges\": \"grimmig\",\n  \"grimmigste\": \"grimmig\",\n  \"grimms\": \"grimm\",\n  \"grind\": \"grind\",\n  \"gringsten\": \"gring\",\n  \"grinsend\": \"grinsend\",\n  \"grinste\": \"grin\",\n  \"grissen\": \"griss\",\n  \"grissend\": \"grissend\",\n  \"grob\": \"grob\",\n  \"grobe\": \"grob\",\n  \"grobem\": \"grob\",\n  \"groben\": \"grob\",\n  \"grober\": \"grob\",\n  \"gröber\": \"grob\",\n  \"gröberen\": \"grob\",\n  \"gröbern\": \"grob\",\n  \"grobes\": \"grob\",\n  \"grobheit\": \"grobheit\",\n  \"gröblich\": \"groblich\",\n  \"gröbsten\": \"grob\",\n  \"grölen\": \"grol\",\n  \"groll\": \"groll\",\n  \"grolle\": \"groll\",\n  \"grollend\": \"grollend\",\n  \"grollendem\": \"grollend\",\n  \"grollenden\": \"grollend\",\n  \"grollte\": \"grollt\",\n  \"groove\": \"groov\",\n  \"gross\": \"gross\",\n  \"groß\": \"gross\",\n  \"grossartig\": \"grossart\",\n  \"großartig\": \"grossart\",\n  \"grossartige\": \"grossart\",\n  \"großartige\": \"grossart\",\n  \"grossartiger\": \"grossart\",\n  \"großartiger\": \"grossart\",\n  \"großartiges\": \"grossart\",\n  \"grossartigte\": \"grossartigt\",\n  \"grossaupa\": \"grossaupa\",\n  \"großaupa\": \"grossaupa\",\n  \"grossbanken\": \"grossbank\",\n  \"grossblumigen\": \"grossblum\",\n  \"grossbritannien\": \"grossbritanni\",\n  \"grosse\": \"gross\",\n  \"große\": \"gross\",\n  \"grösse\": \"gross\",\n  \"größe\": \"gross\",\n  \"grossem\": \"gross\",\n  \"großem\": \"gross\",\n  \"grossen\": \"gross\",\n  \"großen\": \"gross\",\n  \"grössen\": \"gross\",\n  \"grosser\": \"gross\",\n  \"großer\": \"gross\",\n  \"grösser\": \"gross\",\n  \"größer\": \"gross\",\n  \"grössere\": \"gross\",\n  \"größere\": \"gross\",\n  \"grösserem\": \"gross\",\n  \"größerem\": \"gross\",\n  \"grösseren\": \"gross\",\n  \"größeren\": \"gross\",\n  \"grösserer\": \"gross\",\n  \"größerer\": \"gross\",\n  \"grösseres\": \"gross\",\n  \"größeres\": \"gross\",\n  \"grösserm\": \"grosserm\",\n  \"grössern\": \"gross\",\n  \"grosses\": \"gross\",\n  \"großes\": \"gross\",\n  \"grossherrn\": \"grossherrn\",\n  \"großkariertes\": \"grosskariert\",\n  \"grosskhan\": \"grosskhan\",\n  \"grossknecht\": \"grossknecht\",\n  \"grossmächtige\": \"grossmacht\",\n  \"grossmächtigen\": \"grossmacht\",\n  \"grossmächtiges\": \"grossmacht\",\n  \"grossmut\": \"grossmut\",\n  \"grossmütige\": \"grossmut\",\n  \"grossmütigen\": \"grossmut\",\n  \"grossmutter\": \"grossmutt\",\n  \"großmutter\": \"grossmutt\",\n  \"großmütter\": \"grossmutt\",\n  \"grossratsmitglied\": \"grossratsmitglied\",\n  \"großstadt\": \"grossstadt\",\n  \"grossstädte\": \"grossstadt\",\n  \"grösste\": \"grosst\",\n  \"größte\": \"grosst\",\n  \"grössten\": \"grosst\",\n  \"größten\": \"grosst\",\n  \"grösstenteils\": \"grosstenteil\",\n  \"größtenteils\": \"grosstenteil\",\n  \"grösster\": \"grosst\",\n  \"grösstes\": \"grosst\",\n  \"größtes\": \"grosst\",\n  \"grösstmögliche\": \"grosstmog\",\n  \"grosstuerei\": \"grosstuerei\",\n  \"grossvater\": \"grossvat\",\n  \"großvater\": \"grossvat\",\n  \"grossvaters\": \"grossvat\",\n  \"großvaters\": \"grossvat\",\n  \"grossvaterstuhl\": \"grossvaterstuhl\",\n  \"grosszügigen\": \"grosszug\",\n  \"grosszuziehen\": \"grosszuzieh\",\n  \"grub\": \"grub\",\n  \"grubach\": \"grubach\",\n  \"grube\": \"grub\",\n  \"grübeleien\": \"grubelei\",\n  \"grübelt\": \"grubelt\",\n  \"grübelte\": \"grubelt\",\n  \"gruben\": \"grub\",\n  \"grubenkessel\": \"grubenkessel\",\n  \"grüblerisch\": \"grubler\",\n  \"grüblerische\": \"grubler\",\n  \"grumpelt\": \"grumpelt\",\n  \"grün\": \"grun\",\n  \"grünbemaltes\": \"grunbemalt\",\n  \"grund\": \"grund\",\n  \"grundbegriff\": \"grundbegriff\",\n  \"grundbesitzer\": \"grundbesitz\",\n  \"grunddienst\": \"grunddien\",\n  \"grunde\": \"grund\",\n  \"gründe\": \"grund\",\n  \"gründen\": \"grund\",\n  \"gründende\": \"grundend\",\n  \"gründer\": \"grund\",\n  \"grundes\": \"grund\",\n  \"gründet\": \"grundet\",\n  \"gründete\": \"grundet\",\n  \"grundfalschen\": \"grundfalsch\",\n  \"grundfesten\": \"grundf\",\n  \"grundgesetz\": \"grundgesetz\",\n  \"grundgesetzes\": \"grundgesetz\",\n  \"grundherrlichen\": \"grundherr\",\n  \"grundlage\": \"grundlag\",\n  \"grundlagen\": \"grundlag\",\n  \"grundlegenden\": \"grundleg\",\n  \"gründlich\": \"grundlich\",\n  \"gründlichen\": \"grundlich\",\n  \"gründliches\": \"grundlich\",\n  \"gründlinge\": \"grundling\",\n  \"grundlos\": \"grundlos\",\n  \"grundlose\": \"grundlos\",\n  \"grundmauern\": \"grundmau\",\n  \"gründonnerstag\": \"grundonnerstag\",\n  \"grundsatz\": \"grundsatz\",\n  \"grundsatze\": \"grundsatz\",\n  \"grundsätze\": \"grundsatz\",\n  \"grundsätzen\": \"grundsatz\",\n  \"grundsatzes\": \"grundsatz\",\n  \"grundsätzlich\": \"grundsatz\",\n  \"grundsprache\": \"grundsprach\",\n  \"grundstein\": \"grundstein\",\n  \"grundtext\": \"grundtext\",\n  \"grundtone\": \"grundton\",\n  \"gründung\": \"grundung\",\n  \"grüne\": \"grun\",\n  \"grünem\": \"grun\",\n  \"grünen\": \"grun\",\n  \"grüner\": \"grun\",\n  \"grünes\": \"grun\",\n  \"grünfräckiger\": \"grunfrack\",\n  \"grünliche\": \"grunlich\",\n  \"grünlichen\": \"grunlich\",\n  \"grünrot\": \"grunrot\",\n  \"grünseidenen\": \"grunseid\",\n  \"grünspecht\": \"grunspecht\",\n  \"grünst\": \"grun\",\n  \"grunzen\": \"grunz\",\n  \"grunzend\": \"grunzend\",\n  \"gruppe\": \"grupp\",\n  \"gruppen\": \"grupp\",\n  \"gruppenweise\": \"gruppenweis\",\n  \"gruseligen\": \"grusel\",\n  \"gruss\": \"gruss\",\n  \"gruß\": \"gruss\",\n  \"grüss\": \"gruss\",\n  \"grussadresse\": \"grussadress\",\n  \"grusse\": \"gruss\",\n  \"grüsse\": \"gruss\",\n  \"grüße\": \"gruss\",\n  \"grüssen\": \"gruss\",\n  \"grüssend\": \"grussend\",\n  \"grüßend\": \"grussend\",\n  \"grüsste\": \"grusst\",\n  \"grüßte\": \"grusst\",\n  \"grüssten\": \"grusst\",\n  \"grüßten\": \"grusst\",\n  \"grusswort\": \"grusswort\",\n  \"gsagt\": \"gsagt\",\n  \"gsangl\": \"gsangl\",\n  \"gsangln\": \"gsangln\",\n  \"gschäft\": \"gschaft\",\n  \"gscheid\": \"gscheid\",\n  \"gscheids\": \"gscheid\",\n  \"gschicht\": \"gschicht\",\n  \"gschieht\": \"gschieht\",\n  \"gschwind\": \"gschwind\",\n  \"gschwister\": \"gschwist\",\n  \"gsessen\": \"gsess\",\n  \"gsetzt\": \"gsetzt\",\n  \"gsicht\": \"gsicht\",\n  \"gspart\": \"gspart\",\n  \"gsperrt\": \"gsperrt\",\n  \"gspitzt\": \"gspitzt\",\n  \"gstanden\": \"gstand\",\n  \"gstanzln\": \"gstanzln\",\n  \"gstorben\": \"gstorb\",\n  \"gstorbener\": \"gstorb\",\n  \"gstritten\": \"gstritt\",\n  \"gsucht\": \"gsucht\",\n  \"gsungen\": \"gsung\",\n  \"guck\": \"guck\",\n  \"gucken\": \"guck\",\n  \"guckfenster\": \"guckfen\",\n  \"guckt\": \"guckt\",\n  \"guckte\": \"guckt\",\n  \"guckten\": \"guckt\",\n  \"guet\": \"guet\",\n  \"guillotine\": \"guillotin\",\n  \"guisan\": \"guisan\",\n  \"gulden\": \"guld\",\n  \"gültbrief\": \"gultbrief\",\n  \"gültig\": \"gultig\",\n  \"gültige\": \"gultig\",\n  \"gültiges\": \"gultig\",\n  \"gültigkeit\": \"gultig\",\n  \"gummi\": \"gummi\",\n  \"gummigegend\": \"gummigeg\",\n  \"gummiteich\": \"gummiteich\",\n  \"gummiteichen\": \"gummiteich\",\n  \"gündem\": \"gund\",\n  \"gungeline\": \"gungelin\",\n  \"gunnar\": \"gunnar\",\n  \"gunst\": \"gunst\",\n  \"gunsten\": \"gunst\",\n  \"günstig\": \"gunstig\",\n  \"günstige\": \"gunstig\",\n  \"günstigem\": \"gunstig\",\n  \"günstigen\": \"gunstig\",\n  \"günstiger\": \"gunstig\",\n  \"günstiges\": \"gunstig\",\n  \"gür\": \"gur\",\n  \"gurgel\": \"gurgel\",\n  \"gurgeln\": \"gurgeln\",\n  \"gurgelnden\": \"gurgelnd\",\n  \"gurken\": \"gurk\",\n  \"gürpinar\": \"gurpinar\",\n  \"gurren\": \"gurr\",\n  \"gurt\": \"gurt\",\n  \"gürtel\": \"gurtel\",\n  \"gürteln\": \"gurteln\",\n  \"gürten\": \"gurt\",\n  \"gürteten\": \"gurtet\",\n  \"gussbild\": \"gussbild\",\n  \"gußbild\": \"gussbild\",\n  \"gut\": \"gut\",\n  \"gutartig\": \"gutart\",\n  \"gutartige\": \"gutart\",\n  \"gutbesorgten\": \"gutbesorgt\",\n  \"gutdünkt\": \"gutdunkt\",\n  \"gute\": \"gut\",\n  \"güte\": \"gut\",\n  \"gutem\": \"gut\",\n  \"guten\": \"gut\",\n  \"gutenacht\": \"gutenacht\",\n  \"gutenmorgenkuss\": \"gutenmorgenkuss\",\n  \"guter\": \"gut\",\n  \"güter\": \"gut\",\n  \"gütern\": \"gut\",\n  \"gutes\": \"gut\",\n  \"gutestun\": \"gutestun\",\n  \"gutgesinntheit\": \"gutgesinnt\",\n  \"gutheiten\": \"gutheit\",\n  \"gütige\": \"gutig\",\n  \"gütigen\": \"gutig\",\n  \"gütiges\": \"gutig\",\n  \"gütigkeit\": \"gutig\",\n  \"gütigst\": \"gutig\",\n  \"gütlich\": \"gutlich\",\n  \"gutmachen\": \"gutmach\",\n  \"gutmütig\": \"gutmut\",\n  \"gutmütige\": \"gutmut\",\n  \"gutmütigkeit\": \"gutmut\",\n  \"gutnacht\": \"gutnacht\",\n  \"guts\": \"gut\",\n  \"gutsherren\": \"gutsherr\",\n  \"gutsherrn\": \"gutsherrn\",\n  \"güzel\": \"guzel\",\n  \"gwalt\": \"gwalt\",\n  \"gwaltsame\": \"gwaltsam\",\n  \"gwart\": \"gwart\",\n  \"gweint\": \"gweint\",\n  \"gwesen\": \"gwes\",\n  \"gwitter\": \"gwitt\",\n  \"gwöhnen\": \"gwohn\",\n  \"gwöhnt\": \"gwohnt\",\n  \"gymnasiastin\": \"gymnasiastin\",\n  \"gynäkologen\": \"gynakolog\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"haar\": \"haar\",\n  \"haarbürste\": \"haarburst\",\n  \"haardenkmal\": \"haardenkmal\",\n  \"haare\": \"haar\",\n  \"haaren\": \"haar\",\n  \"haares\": \"haar\",\n  \"haarflechten\": \"haarflecht\",\n  \"haarige\": \"haarig\",\n  \"haarschnitt\": \"haarschnitt\",\n  \"haarwild\": \"haarwild\",\n  \"haarwuchs\": \"haarwuch\",\n  \"hab\": \"hab\",\n  \"habe\": \"hab\",\n  \"habel\": \"habel\",\n  \"habels\": \"habel\",\n  \"haben\": \"hab\",\n  \"habenichts\": \"habenicht\",\n  \"häberlin\": \"haberlin\",\n  \"habermus\": \"habermus\",\n  \"habet\": \"habet\",\n  \"habhaft\": \"habhaft\",\n  \"habicht\": \"habicht\",\n  \"habit\": \"habit\",\n  \"habitus\": \"habitus\",\n  \"habs\": \"hab\",\n  \"habseliges\": \"habsel\",\n  \"habseligkeit\": \"habsel\",\n  \"habseligkeiten\": \"habsel\",\n  \"habsucht\": \"habsucht\",\n  \"habt\": \"habt\",\n  \"haci\": \"haci\",\n  \"hacken\": \"hack\",\n  \"hackn\": \"hackn\",\n  \"häcksel\": \"hacksel\",\n  \"hackte\": \"hackt\",\n  \"hadad\": \"hadad\",\n  \"hadep\": \"hadep\",\n  \"hader\": \"had\",\n  \"haderlumpen\": \"haderlump\",\n  \"hadern\": \"had\",\n  \"haemorrheos\": \"haemorrheos\",\n  \"häfelein\": \"hafelein\",\n  \"haferbrei\": \"haferbrei\",\n  \"haft\": \"haft\",\n  \"hafte\": \"haft\",\n  \"haften\": \"haft\",\n  \"haftet\": \"haftet\",\n  \"häftlein\": \"haftlein\",\n  \"haftstrafen\": \"haftstraf\",\n  \"hag\": \"hag\",\n  \"hagel\": \"hagel\",\n  \"hagelflut\": \"hagelflut\",\n  \"hagelhans\": \"hagelhan\",\n  \"hageln\": \"hageln\",\n  \"hagelperlen\": \"hagelperl\",\n  \"hagelregen\": \"hagelreg\",\n  \"hagelregens\": \"hagelreg\",\n  \"hagels\": \"hagel\",\n  \"hagelschlag\": \"hagelschlag\",\n  \"hagelstein\": \"hagelstein\",\n  \"hagelsteine\": \"hagelstein\",\n  \"hagelsteinen\": \"hagelstein\",\n  \"hagelstücke\": \"hagelstuck\",\n  \"hagen\": \"hag\",\n  \"hagere\": \"hag\",\n  \"hagerer\": \"hag\",\n  \"haggai\": \"haggai\",\n  \"haha\": \"haha\",\n  \"hahahaha\": \"hahahaha\",\n  \"häher\": \"hah\",\n  \"hahn\": \"hahn\",\n  \"hähnekrähen\": \"hahnekrah\",\n  \"haider\": \"haid\",\n  \"hain\": \"hain\",\n  \"hains\": \"hain\",\n  \"häkchen\": \"hakch\",\n  \"haken\": \"hak\",\n  \"hakkari\": \"hakkari\",\n  \"häklich\": \"haklich\",\n  \"häklichen\": \"haklich\",\n  \"halb\": \"halb\",\n  \"halbbogen\": \"halbbog\",\n  \"halbdunkel\": \"halbdunkel\",\n  \"halbe\": \"halb\",\n  \"halbem\": \"halb\",\n  \"halben\": \"halb\",\n  \"halber\": \"halb\",\n  \"halbes\": \"halb\",\n  \"halbfinal\": \"halbfinal\",\n  \"halbfinalder\": \"halbfinald\",\n  \"halbgeschlossenen\": \"halbgeschloss\",\n  \"halbheit\": \"halbheit\",\n  \"halbjährigen\": \"halbjahr\",\n  \"halbkreis\": \"halbkreis\",\n  \"halbkreise\": \"halbkreis\",\n  \"halbkugel\": \"halbkugel\",\n  \"halbkugeln\": \"halbkugeln\",\n  \"halblange\": \"halblang\",\n  \"halblauten\": \"halblaut\",\n  \"halblauter\": \"halblaut\",\n  \"halbreife\": \"halbreif\",\n  \"halbring\": \"halbring\",\n  \"halbschatten\": \"halbschatt\",\n  \"halbstummen\": \"halbstumm\",\n  \"halbstündigen\": \"halbstund\",\n  \"halbstündiger\": \"halbstund\",\n  \"halbtagsjob\": \"halbtagsjob\",\n  \"halbtot\": \"halbtot\",\n  \"halbtotes\": \"halbtot\",\n  \"halbträumender\": \"halbtraum\",\n  \"halbvermoderte\": \"halbvermodert\",\n  \"halbvollendeten\": \"halbvollendet\",\n  \"halbwegs\": \"halbweg\",\n  \"halbwüchsige\": \"halbwuchs\",\n  \"halden\": \"hald\",\n  \"half\": \"half\",\n  \"halfen\": \"half\",\n  \"hälfte\": \"halft\",\n  \"hall\": \"hall\",\n  \"halle\": \"hall\",\n  \"hallen\": \"hall\",\n  \"halleo\": \"halleo\",\n  \"hallo\": \"hallo\",\n  \"hallunkischen\": \"hallunk\",\n  \"halm\": \"halm\",\n  \"halmen\": \"halm\",\n  \"hals\": \"hal\",\n  \"halsband\": \"halsband\",\n  \"halse\": \"hals\",\n  \"hälse\": \"hals\",\n  \"halskette\": \"halskett\",\n  \"halskragen\": \"halskrag\",\n  \"halstuch\": \"halstuch\",\n  \"halstüchelchen\": \"halstuchelch\",\n  \"halt\": \"halt\",\n  \"hält\": \"halt\",\n  \"haltbare\": \"haltbar\",\n  \"haltbaren\": \"haltbar\",\n  \"halte\": \"halt\",\n  \"halten\": \"halt\",\n  \"haltend\": \"haltend\",\n  \"haltenden\": \"haltend\",\n  \"haltet\": \"haltet\",\n  \"haltlosen\": \"haltlos\",\n  \"haltrufen\": \"haltruf\",\n  \"haltrufer\": \"haltruf\",\n  \"hältst\": \"halt\",\n  \"haltung\": \"haltung\",\n  \"halunkische\": \"halunk\",\n  \"ham\": \"ham\",\n  \"hamburg\": \"hamburg\",\n  \"hamburger\": \"hamburg\",\n  \"hämisch\": \"hamisch\",\n  \"hamlet\": \"hamlet\",\n  \"hammelbraten\": \"hammelbrat\",\n  \"hammelkeule\": \"hammelkeul\",\n  \"hammer\": \"hamm\",\n  \"hämmern\": \"hamm\",\n  \"hämmerte\": \"hammert\",\n  \"hämmerten\": \"hammert\",\n  \"hammerwerk\": \"hammerwerk\",\n  \"hampelhänschen\": \"hampelhansch\",\n  \"hampelmann\": \"hampelmann\",\n  \"hampelmänner\": \"hampelmann\",\n  \"hampelmännern\": \"hampelmann\",\n  \"hand\": \"hand\",\n  \"handbewegung\": \"handbeweg\",\n  \"handbibel\": \"handbibel\",\n  \"handbuch\": \"handbuch\",\n  \"händchen\": \"handch\",\n  \"hände\": \"hand\",\n  \"händeklatschen\": \"handeklatsch\",\n  \"handel\": \"handel\",\n  \"händel\": \"handel\",\n  \"händelführer\": \"handelfuhr\",\n  \"handeln\": \"handeln\",\n  \"händeln\": \"handeln\",\n  \"handelnde\": \"handelnd\",\n  \"händels\": \"handel\",\n  \"handelsabkommen\": \"handelsabkomm\",\n  \"handelsanfang\": \"handelsanfang\",\n  \"handelserwerb\": \"handelserwerb\",\n  \"handelsfreunden\": \"handelsfreund\",\n  \"handelsgeschäfte\": \"handelsgeschaft\",\n  \"handelsgeschäften\": \"handelsgeschaft\",\n  \"handelskrisen\": \"handelskris\",\n  \"handelsleute\": \"handelsleut\",\n  \"handelsstadt\": \"handelsstadt\",\n  \"handelsvertretungen\": \"handelsvertret\",\n  \"handelt\": \"handelt\",\n  \"handelte\": \"handelt\",\n  \"händen\": \"hand\",\n  \"händereibend\": \"handereib\",\n  \"handfeste\": \"handf\",\n  \"handfester\": \"handf\",\n  \"handfestes\": \"handf\",\n  \"handgelenken\": \"handgelenk\",\n  \"handgreiflichen\": \"handgreif\",\n  \"handgriffe\": \"handgriff\",\n  \"handgrosses\": \"handgross\",\n  \"handhabe\": \"handhab\",\n  \"handhaben\": \"handhab\",\n  \"handhabte\": \"handhabt\",\n  \"handhabten\": \"handhabt\",\n  \"handkarren\": \"handkarr\",\n  \"handkuss\": \"handkuss\",\n  \"handkuß\": \"handkuss\",\n  \"handle\": \"handl\",\n  \"händler\": \"handl\",\n  \"händlerin\": \"handlerin\",\n  \"handlich\": \"handlich\",\n  \"handlichen\": \"handlich\",\n  \"handlichkeit\": \"handlich\",\n  \"handlung\": \"handlung\",\n  \"handlungen\": \"handlung\",\n  \"handlungsart\": \"handlungsart\",\n  \"handlungsschwanger\": \"handlungsschwang\",\n  \"handlungsschwangerer\": \"handlungsschwang\",\n  \"handlungsstarke\": \"handlungsstark\",\n  \"handlungsweise\": \"handlungsweis\",\n  \"handreibungen\": \"handreib\",\n  \"handreichung\": \"handreich\",\n  \"handschrift\": \"handschrift\",\n  \"handschuh\": \"handschuh\",\n  \"handschuhe\": \"handschuh\",\n  \"handschuhen\": \"handschuh\",\n  \"handstreich\": \"handstreich\",\n  \"handstreiche\": \"handstreich\",\n  \"handtäschchen\": \"handtaschch\",\n  \"handtasche\": \"handtasch\",\n  \"handumdrehen\": \"handumdreh\",\n  \"handvoll\": \"handvoll\",\n  \"handwerk\": \"handwerk\",\n  \"handwerksbursch\": \"handwerksbursch\",\n  \"handwerksburschen\": \"handwerksbursch\",\n  \"handwerksgesell\": \"handwerksgesell\",\n  \"handwerksgesellen\": \"handwerksgesell\",\n  \"handzwehle\": \"handzwehl\",\n  \"hanfschnüren\": \"hanfschnur\",\n  \"hang\": \"hang\",\n  \"hange\": \"hang\",\n  \"hänge\": \"hang\",\n  \"hangen\": \"hang\",\n  \"hängen\": \"hang\",\n  \"hängend\": \"hangend\",\n  \"hängenden\": \"hangend\",\n  \"hängengeblieben\": \"hangengeblieb\",\n  \"hanges\": \"hang\",\n  \"hängt\": \"hangt\",\n  \"hängte\": \"hangt\",\n  \"hängten\": \"hangt\",\n  \"hannibal\": \"hannibal\",\n  \"hans\": \"han\",\n  \"hänse\": \"hans\",\n  \"hansnarren\": \"hansnarr\",\n  \"hantierte\": \"hantiert\",\n  \"hantierung\": \"hantier\",\n  \"hantierungen\": \"hantier\",\n  \"hapert\": \"hapert\",\n  \"hapertes\": \"hapert\",\n  \"happening\": \"happening\",\n  \"happs\": \"happs\",\n  \"happy\": \"happy\",\n  \"harald\": \"harald\",\n  \"harbst\": \"harb\",\n  \"häretische\": \"haret\",\n  \"harfe\": \"harf\",\n  \"harfen\": \"harf\",\n  \"harfenspieler\": \"harfenspiel\",\n  \"harfentöne\": \"harfenton\",\n  \"harkenstiel\": \"harkenstiel\",\n  \"harmlos\": \"harmlos\",\n  \"harmlose\": \"harmlos\",\n  \"harmlosen\": \"harmlos\",\n  \"harmloser\": \"harmlos\",\n  \"harmlosigkeit\": \"harmlos\",\n  \"harmlosigkeiten\": \"harmlos\",\n  \"harmonie\": \"harmoni\",\n  \"harmonien\": \"harmoni\",\n  \"harmonikaförmigen\": \"harmonikaform\",\n  \"harmonisch\": \"harmon\",\n  \"harmonische\": \"harmon\",\n  \"harmonists\": \"harmonist\",\n  \"härmte\": \"harmt\",\n  \"harnisch\": \"harnisch\",\n  \"harnischreste\": \"harnischr\",\n  \"harren\": \"harr\",\n  \"harrend\": \"harrend\",\n  \"harrten\": \"harrt\",\n  \"hart\": \"hart\",\n  \"harte\": \"hart\",\n  \"härte\": \"hart\",\n  \"hartem\": \"hart\",\n  \"harten\": \"hart\",\n  \"harter\": \"hart\",\n  \"härter\": \"hart\",\n  \"härtere\": \"hart\",\n  \"härteres\": \"hart\",\n  \"hartes\": \"hart\",\n  \"härteste\": \"hart\",\n  \"hartherzige\": \"hartherz\",\n  \"hartherzigem\": \"hartherz\",\n  \"hartherzigen\": \"hartherz\",\n  \"hartherzigkeiten\": \"hartherz\",\n  \"hartmann\": \"hartmann\",\n  \"hartnäckig\": \"hartnack\",\n  \"hartnäckige\": \"hartnack\",\n  \"hartnäckigen\": \"hartnack\",\n  \"hartnäckiger\": \"hartnack\",\n  \"hartnäckigeren\": \"hartnack\",\n  \"hartnäckigkeit\": \"hartnack\",\n  \"hartnäckigste\": \"hartnack\",\n  \"hartwerden\": \"hartwerd\",\n  \"harz\": \"harz\",\n  \"hasan\": \"hasan\",\n  \"hasardspiel\": \"hasardspiel\",\n  \"haschen\": \"hasch\",\n  \"häschen\": \"hasch\",\n  \"haschte\": \"hascht\",\n  \"haselanten\": \"haselant\",\n  \"haselnussstauden\": \"haselnussstaud\",\n  \"haselwanter\": \"haselwant\",\n  \"hasen\": \"has\",\n  \"haserl\": \"haserl\",\n  \"häslein\": \"haslein\",\n  \"haslers\": \"hasl\",\n  \"haspelte\": \"haspelt\",\n  \"hass\": \"hass\",\n  \"haß\": \"hass\",\n  \"hasse\": \"hass\",\n  \"hassen\": \"hass\",\n  \"hasser\": \"hass\",\n  \"haßerfüllten\": \"hasserfullt\",\n  \"hasses\": \"hass\",\n  \"hässiges\": \"hassig\",\n  \"hässlich\": \"hasslich\",\n  \"häßlich\": \"hasslich\",\n  \"hässliche\": \"hasslich\",\n  \"häßliche\": \"hasslich\",\n  \"hässlichen\": \"hasslich\",\n  \"häßlichen\": \"hasslich\",\n  \"hässlicheres\": \"hasslich\",\n  \"häßlicheres\": \"hasslich\",\n  \"hässliches\": \"hasslich\",\n  \"häßliches\": \"hasslich\",\n  \"hässlichsten\": \"hasslich\",\n  \"hasst\": \"hasst\",\n  \"haßt\": \"hasst\",\n  \"hasste\": \"hasst\",\n  \"haßte\": \"hasst\",\n  \"hast\": \"hast\",\n  \"hasterer\": \"hast\",\n  \"hastig\": \"hastig\",\n  \"hastige\": \"hastig\",\n  \"hastigen\": \"hastig\",\n  \"hat\": \"hat\",\n  \"hatr\": \"hatr\",\n  \"hats\": \"hat\",\n  \"hätschelte\": \"hatschelt\",\n  \"hatschen\": \"hatsch\",\n  \"hatt\": \"hatt\",\n  \"hätt\": \"hatt\",\n  \"hatte\": \"hatt\",\n  \"hätte\": \"hatt\",\n  \"hatten\": \"hatt\",\n  \"hätten\": \"hatt\",\n  \"hättens\": \"hatt\",\n  \"hattest\": \"hatt\",\n  \"hättest\": \"hatt\",\n  \"hättet\": \"hattet\",\n  \"hau\": \"hau\",\n  \"haube\": \"haub\",\n  \"hauben\": \"haub\",\n  \"hauch\": \"hauch\",\n  \"hauchen\": \"hauch\",\n  \"hauchte\": \"haucht\",\n  \"hauchten\": \"haucht\",\n  \"hauen\": \"hau\",\n  \"häufchen\": \"haufch\",\n  \"haufe\": \"hauf\",\n  \"haufen\": \"hauf\",\n  \"häufen\": \"hauf\",\n  \"haufenweise\": \"haufenweis\",\n  \"häufig\": \"haufig\",\n  \"häufige\": \"haufig\",\n  \"häufiger\": \"haufig\",\n  \"häuflein\": \"hauflein\",\n  \"häuft\": \"hauft\",\n  \"haupt\": \"haupt\",\n  \"hauptaufgabe\": \"hauptaufgab\",\n  \"hauptbeschäftigung\": \"hauptbeschaft\",\n  \"hauptbestandteil\": \"hauptbestandteil\",\n  \"hauptbürde\": \"hauptburd\",\n  \"hauptchristen\": \"hauptchrist\",\n  \"haupte\": \"haupt\",\n  \"haupteingang\": \"haupteingang\",\n  \"häupten\": \"haupt\",\n  \"häupter\": \"haupt\",\n  \"häuptern\": \"haupt\",\n  \"hauptes\": \"haupt\",\n  \"hauptgattungen\": \"hauptgatt\",\n  \"hauptgebäude\": \"hauptgebaud\",\n  \"hauptgegenstände\": \"hauptgegenstand\",\n  \"hauptliebhaberei\": \"hauptliebhaberei\",\n  \"häuptling\": \"hauptling\",\n  \"häuptlingen\": \"hauptling\",\n  \"hauptmann\": \"hauptmann\",\n  \"hauptmittel\": \"hauptmittel\",\n  \"hauptort\": \"hauptort\",\n  \"hauptperson\": \"hauptperson\",\n  \"hauptpunkte\": \"hauptpunkt\",\n  \"hauptpunkten\": \"hauptpunkt\",\n  \"hauptquartier\": \"hauptquarti\",\n  \"hauptredaktor\": \"hauptredaktor\",\n  \"hauptsache\": \"hauptsach\",\n  \"hauptsachen\": \"hauptsach\",\n  \"hauptsächlich\": \"hauptsach\",\n  \"hauptsächlichstes\": \"hauptsach\",\n  \"hauptschmuckes\": \"hauptschmuck\",\n  \"hauptsitzung\": \"hauptsitz\",\n  \"hauptspass\": \"hauptspass\",\n  \"hauptstadt\": \"hauptstadt\",\n  \"hauptstrasse\": \"hauptstrass\",\n  \"hauptstück\": \"hauptstuck\",\n  \"hauptstücke\": \"hauptstuck\",\n  \"haupttafel\": \"haupttafel\",\n  \"haupttätigkeit\": \"haupttat\",\n  \"haupttreppe\": \"haupttrepp\",\n  \"hauptursache\": \"hauptursach\",\n  \"hauptveränderung\": \"hauptverander\",\n  \"hauptverkehrsstrasse\": \"hauptverkehrsstrass\",\n  \"hauptwahlen\": \"hauptwahl\",\n  \"hauptwechsel\": \"hauptwechsel\",\n  \"hauptweg\": \"hauptweg\",\n  \"hauptwert\": \"hauptwert\",\n  \"hauptziel\": \"hauptziel\",\n  \"hauptzierde\": \"hauptzierd\",\n  \"hauptzweck\": \"hauptzweck\",\n  \"haus\": \"haus\",\n  \"hausapotheke\": \"hausapothek\",\n  \"hausbackenes\": \"hausback\",\n  \"hausbau\": \"hausbau\",\n  \"hausbesetzer\": \"hausbesetz\",\n  \"häuschen\": \"hausch\",\n  \"hausdurchsuchungen\": \"hausdurchsuch\",\n  \"hause\": \"haus\",\n  \"hausecke\": \"hauseck\",\n  \"hausehre\": \"hausehr\",\n  \"hausen\": \"haus\",\n  \"häuser\": \"haus\",\n  \"häusermauer\": \"hausermau\",\n  \"häusermauern\": \"hausermau\",\n  \"häusern\": \"haus\",\n  \"hauses\": \"haus\",\n  \"hausflur\": \"hausflur\",\n  \"hausfrau\": \"hausfrau\",\n  \"hausfreund\": \"hausfreund\",\n  \"hausgebrauch\": \"hausgebrauch\",\n  \"hausgeister\": \"hausgeist\",\n  \"hausgenossin\": \"hausgenossin\",\n  \"hausglocke\": \"hausglock\",\n  \"haushalte\": \"haushalt\",\n  \"hausherr\": \"hausherr\",\n  \"hausknecht\": \"hausknecht\",\n  \"hausknechte\": \"hausknecht\",\n  \"häusl\": \"hausl\",\n  \"häuslich\": \"hauslich\",\n  \"häusliche\": \"hauslich\",\n  \"häuslichen\": \"hauslich\",\n  \"hausmütterlich\": \"hausmutt\",\n  \"hausrat\": \"hausrat\",\n  \"hausschlüssel\": \"hausschlussel\",\n  \"hausschwelle\": \"hausschwell\",\n  \"hausstande\": \"hausstand\",\n  \"hauste\": \"haust\",\n  \"haustierchen\": \"haustierch\",\n  \"haustracht\": \"haustracht\",\n  \"haustür\": \"haustur\",\n  \"haustüre\": \"haustur\",\n  \"haustüren\": \"haustur\",\n  \"hausvater\": \"hausvat\",\n  \"hauswesen\": \"hauswes\",\n  \"haut\": \"haut\",\n  \"häutchen\": \"hautch\",\n  \"häute\": \"haut\",\n  \"hautfalte\": \"hautfalt\",\n  \"hautfarbe\": \"hautfarb\",\n  \"häutige\": \"hautig\",\n  \"hautnah\": \"hautnah\",\n  \"hazim\": \"hazim\",\n  \"hazims\": \"hazim\",\n  \"hc\": \"hc\",\n  \"hebe\": \"heb\",\n  \"heben\": \"heb\",\n  \"hebend\": \"hebend\",\n  \"hebet\": \"hebet\",\n  \"hebopfer\": \"hebopf\",\n  \"hebr\": \"hebr\",\n  \"hebräer\": \"hebra\",\n  \"hebräerinnen\": \"hebraerinn\",\n  \"hebräisch\": \"hebraisch\",\n  \"hebräische\": \"hebraisch\",\n  \"hebräischen\": \"hebraisch\",\n  \"hebt\": \"hebt\",\n  \"hecht\": \"hecht\",\n  \"hechtbauche\": \"hechtbauch\",\n  \"hechte\": \"hecht\",\n  \"hechtes\": \"hecht\",\n  \"hechtseiten\": \"hechtseit\",\n  \"hecken\": \"heck\",\n  \"heer\": \"heer\",\n  \"heere\": \"heer\",\n  \"heeren\": \"heer\",\n  \"heeres\": \"heer\",\n  \"heerhaufen\": \"heerhauf\",\n  \"heerlager\": \"heerlag\",\n  \"hefe\": \"hef\",\n  \"heft\": \"heft\",\n  \"heften\": \"heft\",\n  \"heftete\": \"heftet\",\n  \"heftig\": \"heftig\",\n  \"heftige\": \"heftig\",\n  \"heftigem\": \"heftig\",\n  \"heftigen\": \"heftig\",\n  \"heftiger\": \"heftig\",\n  \"heftiges\": \"heftig\",\n  \"heftigkeit\": \"heftig\",\n  \"heftigste\": \"heftig\",\n  \"heftigsten\": \"heftig\",\n  \"hege\": \"heg\",\n  \"hegen\": \"heg\",\n  \"hegt\": \"hegt\",\n  \"hegte\": \"hegt\",\n  \"hegten\": \"hegt\",\n  \"hehr\": \"hehr\",\n  \"hei\": \"hei\",\n  \"heiden\": \"heid\",\n  \"heidengeld\": \"heidengeld\",\n  \"heidi\": \"heidi\",\n  \"heidnischen\": \"heidnisch\",\n  \"heiducken\": \"heiduck\",\n  \"heil\": \"heil\",\n  \"heiland\": \"heiland\",\n  \"heilbar\": \"heilbar\",\n  \"heile\": \"heil\",\n  \"heilig\": \"heilig\",\n  \"heilige\": \"heilig\",\n  \"heiligem\": \"heilig\",\n  \"heiligen\": \"heilig\",\n  \"heiligenschein\": \"heiligenschein\",\n  \"heiliger\": \"heilig\",\n  \"heiliges\": \"heilig\",\n  \"heiligkeit\": \"heilig\",\n  \"heiligste\": \"heilig\",\n  \"heiligsten\": \"heilig\",\n  \"heiligte\": \"heiligt\",\n  \"heiligtum\": \"heiligtum\",\n  \"heiligtümer\": \"heiligtum\",\n  \"heiligung\": \"heilig\",\n  \"heiligungen\": \"heilig\",\n  \"heillosen\": \"heillos\",\n  \"heils\": \"heil\",\n  \"heilsamer\": \"heilsam\",\n  \"heilsamkeit\": \"heilsam\",\n  \"heilstoll\": \"heilstoll\",\n  \"heilt\": \"heilt\",\n  \"heilte\": \"heilt\",\n  \"heilung\": \"heilung\",\n  \"heim\": \"heim\",\n  \"heimat\": \"heimat\",\n  \"heimatdorf\": \"heimatdorf\",\n  \"heimatkunde\": \"heimatkund\",\n  \"heimatlich\": \"heimat\",\n  \"heimatlichen\": \"heimat\",\n  \"heimatlosen\": \"heimatlos\",\n  \"heimatschein\": \"heimatschein\",\n  \"heimatsrecht\": \"heimatsrecht\",\n  \"heimattal\": \"heimattal\",\n  \"heimgalopp\": \"heimgalopp\",\n  \"heimgebracht\": \"heimgebracht\",\n  \"heimgekehrt\": \"heimgekehrt\",\n  \"heimgekommen\": \"heimgekomm\",\n  \"heimgeschickt\": \"heimgeschickt\",\n  \"heimgeschickten\": \"heimgeschickt\",\n  \"heimgesucht\": \"heimgesucht\",\n  \"heimisch\": \"heimisch\",\n  \"heimischen\": \"heimisch\",\n  \"heimkam\": \"heimkam\",\n  \"heimkehr\": \"heimkehr\",\n  \"heimkommen\": \"heimkomm\",\n  \"heimkommt\": \"heimkommt\",\n  \"heimlaufen\": \"heimlauf\",\n  \"heimlich\": \"heimlich\",\n  \"heimliche\": \"heimlich\",\n  \"heimlichem\": \"heimlich\",\n  \"heimlichen\": \"heimlich\",\n  \"heimlicher\": \"heimlich\",\n  \"heimlicherweise\": \"heimlicherweis\",\n  \"heimliches\": \"heimlich\",\n  \"heimschicken\": \"heimschick\",\n  \"heimsuchen\": \"heimsuch\",\n  \"heimsuchung\": \"heimsuch\",\n  \"heimtückisch\": \"heimtuck\",\n  \"heimtückische\": \"heimtuck\",\n  \"heimwärts\": \"heimwart\",\n  \"heimweg\": \"heimweg\",\n  \"heimwege\": \"heimweg\",\n  \"heimwegs\": \"heimweg\",\n  \"heimweh\": \"heimweh\",\n  \"heimzog\": \"heimzog\",\n  \"heimzukehren\": \"heimzukehr\",\n  \"heimzusuchen\": \"heimzusuch\",\n  \"heimzuweisen\": \"heimzuweis\",\n  \"heinrich\": \"heinrich\",\n  \"heinrichs\": \"heinrich\",\n  \"heinze\": \"heinz\",\n  \"heinzer\": \"heinz\",\n  \"heirat\": \"heirat\",\n  \"heiraten\": \"heirat\",\n  \"heiratest\": \"heirat\",\n  \"heiratet\": \"heiratet\",\n  \"heiratete\": \"heiratet\",\n  \"heiratsabsichten\": \"heiratsabsicht\",\n  \"heiratsfrage\": \"heiratsfrag\",\n  \"heiratsgut\": \"heiratsgut\",\n  \"heiratslustigen\": \"heiratslust\",\n  \"heiratssachen\": \"heiratssach\",\n  \"heiret\": \"heiret\",\n  \"heiss\": \"heiss\",\n  \"heiß\": \"heiss\",\n  \"heisse\": \"heiss\",\n  \"heiße\": \"heiss\",\n  \"heissen\": \"heiss\",\n  \"heißen\": \"heiss\",\n  \"heisser\": \"heiss\",\n  \"heisses\": \"heiss\",\n  \"heisset\": \"heisset\",\n  \"heißet\": \"heisset\",\n  \"heisshunger\": \"heisshung\",\n  \"heissmachen\": \"heissmach\",\n  \"heisst\": \"heisst\",\n  \"heißt\": \"heisst\",\n  \"heiter\": \"heit\",\n  \"heitere\": \"heit\",\n  \"heiteren\": \"heit\",\n  \"heiterer\": \"heit\",\n  \"heiterkeit\": \"heiter\",\n  \"heiterm\": \"heiterm\",\n  \"heizen\": \"heiz\",\n  \"heizet\": \"heizet\",\n  \"heks\": \"hek\",\n  \"hektik\": \"hektik\",\n  \"hektor\": \"hektor\",\n  \"helas\": \"helas\",\n  \"helbart\": \"helbart\",\n  \"helbarte\": \"helbart\",\n  \"held\": \"held\",\n  \"helden\": \"held\",\n  \"heldenhaftes\": \"heldenhaft\",\n  \"heldenwerk\": \"heldenwerk\",\n  \"helena\": \"helena\",\n  \"helfe\": \"helf\",\n  \"helfen\": \"helf\",\n  \"helfet\": \"helfet\",\n  \"hell\": \"hell\",\n  \"hellauf\": \"hellauf\",\n  \"helldunklen\": \"helldunkl\",\n  \"helle\": \"hell\",\n  \"hellem\": \"hell\",\n  \"hellen\": \"hell\",\n  \"heller\": \"hell\",\n  \"hellerleuchteten\": \"hellerleuchtet\",\n  \"hellerlichten\": \"hellerlicht\",\n  \"helles\": \"hell\",\n  \"hellgrüner\": \"hellgrun\",\n  \"hellichten\": \"hellicht\",\n  \"hellsehend\": \"hellseh\",\n  \"hellsehenden\": \"hellseh\",\n  \"hellste\": \"hell\",\n  \"helmspitze\": \"helmspitz\",\n  \"helmzier\": \"helmzi\",\n  \"helvetas\": \"helvetas\",\n  \"hemd\": \"hemd\",\n  \"hemdärmel\": \"hemdarmel\",\n  \"hemdärmeln\": \"hemdarmeln\",\n  \"hemdärmliche\": \"hemdarm\",\n  \"hemdchen\": \"hemdch\",\n  \"hemde\": \"hemd\",\n  \"hemdenmätze\": \"hemdenmatz\",\n  \"hemdenmätzen\": \"hemdenmatz\",\n  \"hemdkragen\": \"hemdkrag\",\n  \"hemdzipfelchen\": \"hemdzipfelch\",\n  \"hemmen\": \"hemm\",\n  \"hendeln\": \"hendeln\",\n  \"henkel\": \"henkel\",\n  \"henken\": \"henk\",\n  \"henker\": \"henk\",\n  \"henkers\": \"henk\",\n  \"henne\": \"henn\",\n  \"hennensteigen\": \"hennensteig\",\n  \"henrici\": \"henrici\",\n  \"henriettental\": \"henriettental\",\n  \"hep\": \"hep\",\n  \"her\": \"her\",\n  \"herab\": \"herab\",\n  \"herabfallen\": \"herabfall\",\n  \"herabfliesst\": \"herabfliesst\",\n  \"herabfließt\": \"herabfliesst\",\n  \"herabgebracht\": \"herabgebracht\",\n  \"herabgekommen\": \"herabgekomm\",\n  \"herabgekommener\": \"herabgekomm\",\n  \"herabgelassen\": \"herabgelass\",\n  \"herabgeworfen\": \"herabgeworf\",\n  \"herabhing\": \"herabhing\",\n  \"herabkam\": \"herabkam\",\n  \"herabkommen\": \"herabkomm\",\n  \"herabkommt\": \"herabkommt\",\n  \"herablassen\": \"herablass\",\n  \"herablassend\": \"herablass\",\n  \"herablässt\": \"herablasst\",\n  \"herabläßt\": \"herablasst\",\n  \"herabredete\": \"herabredet\",\n  \"herabregnen\": \"herabregn\",\n  \"herabsehend\": \"herabseh\",\n  \"herabsetzt\": \"herabsetzt\",\n  \"herabsinken\": \"herabsink\",\n  \"herabsinkt\": \"herabsinkt\",\n  \"herabstimmen\": \"herabstimm\",\n  \"herabzusetzen\": \"herabzusetz\",\n  \"herabzustimmen\": \"herabzustimm\",\n  \"heran\": \"heran\",\n  \"heranbrach\": \"heranbrach\",\n  \"heranbrüllte\": \"heranbrullt\",\n  \"herandrängte\": \"herandrangt\",\n  \"heranfuhren\": \"heranfuhr\",\n  \"herangebraust\": \"herangebraust\",\n  \"herangeflogen\": \"herangeflog\",\n  \"herangeholt\": \"herangeholt\",\n  \"herangekommen\": \"herangekomm\",\n  \"herangesaust\": \"herangesaust\",\n  \"herangeschwänzelt\": \"herangeschwanzelt\",\n  \"herangetanzt\": \"herangetanzt\",\n  \"herangetreten\": \"herangetret\",\n  \"herangewachsen\": \"herangewachs\",\n  \"herankommen\": \"herankomm\",\n  \"heranmachten\": \"heranmacht\",\n  \"herannahen\": \"herannah\",\n  \"heranrollte\": \"heranrollt\",\n  \"heranrutschte\": \"heranrutscht\",\n  \"heranschwoll\": \"heranschwoll\",\n  \"herantobenden\": \"herantob\",\n  \"herantritt\": \"herantritt\",\n  \"heranziehen\": \"heranzieh\",\n  \"heranzubilden\": \"heranzubild\",\n  \"heranzukommen\": \"heranzukomm\",\n  \"heranzuwehen\": \"heranzuweh\",\n  \"herauf\": \"herauf\",\n  \"heraufbeförderte\": \"heraufbefordert\",\n  \"heraufbeschworen\": \"heraufbeschwor\",\n  \"heraufbringen\": \"heraufbring\",\n  \"heraufführen\": \"herauffuhr\",\n  \"heraufgefahren\": \"heraufgefahr\",\n  \"heraufgewundenen\": \"heraufgewund\",\n  \"heraufkäme\": \"heraufkam\",\n  \"heraufkamen\": \"heraufkam\",\n  \"heraufkommen\": \"heraufkomm\",\n  \"heraufsteigen\": \"heraufsteig\",\n  \"heraufsteigt\": \"heraufsteigt\",\n  \"heraufziehen\": \"heraufzieh\",\n  \"heraufzuholen\": \"heraufzuhol\",\n  \"heraufzusäuseln\": \"heraufzusauseln\",\n  \"heraus\": \"heraus\",\n  \"herausbrachte\": \"herausbracht\",\n  \"herausbringen\": \"herausbring\",\n  \"herausbrüllten\": \"herausbrullt\",\n  \"herausfischen\": \"herausf\",\n  \"herausfliegen\": \"herausflieg\",\n  \"herausforderung\": \"herausforder\",\n  \"herausführen\": \"herausfuhr\",\n  \"herausführt\": \"herausfuhrt\",\n  \"herausgeben\": \"herausgeb\",\n  \"herausgefordert\": \"herausgefordert\",\n  \"herausgeführt\": \"herausgefuhrt\",\n  \"herausgegeben\": \"herausgegeb\",\n  \"herausgegriffen\": \"herausgegriff\",\n  \"herausgehen\": \"herausgeh\",\n  \"herausgeholt\": \"herausgeholt\",\n  \"herausgekommen\": \"herausgekomm\",\n  \"herausgelassen\": \"herausgelass\",\n  \"herausgelesen\": \"herausgeles\",\n  \"herausgenommen\": \"herausgenomm\",\n  \"herausgereicht\": \"herausgereicht\",\n  \"herausgeschnitten\": \"herausgeschnitt\",\n  \"herausgestellt\": \"herausgestellt\",\n  \"herausgezaubert\": \"herausgezaubert\",\n  \"herausgezogen\": \"herausgezog\",\n  \"herausgezupft\": \"herausgezupft\",\n  \"herausguckten\": \"herausguckt\",\n  \"heraushilft\": \"heraushilft\",\n  \"herausholen\": \"heraushol\",\n  \"herauskam\": \"herauskam\",\n  \"herauskamen\": \"herauskam\",\n  \"herausklauben\": \"herausklaub\",\n  \"herauskommen\": \"herauskomm\",\n  \"herauskommt\": \"herauskommt\",\n  \"herauskriegen\": \"herauskrieg\",\n  \"herauslügens\": \"herauslug\",\n  \"herausmachen\": \"herausmach\",\n  \"herausnehmen\": \"herausnehm\",\n  \"herausnimmt\": \"herausnimmt\",\n  \"herausplatzt\": \"herausplatzt\",\n  \"herauspurzelten\": \"herauspurzelt\",\n  \"herausreisst\": \"herausreisst\",\n  \"herausreißt\": \"herausreisst\",\n  \"herausschneiden\": \"herausschneid\",\n  \"herausschrieb\": \"herausschrieb\",\n  \"heraussen\": \"herauss\",\n  \"herausspritzte\": \"herausspritzt\",\n  \"heraussteigt\": \"heraussteigt\",\n  \"herausstellen\": \"herausstell\",\n  \"herausstellt\": \"herausstellt\",\n  \"herausstiess\": \"herausstiess\",\n  \"heraustauchte\": \"heraustaucht\",\n  \"heraustraten\": \"heraustrat\",\n  \"heraustritt\": \"heraustritt\",\n  \"herausziehen\": \"herauszieh\",\n  \"herauszubringen\": \"herauszubring\",\n  \"herauszufordern\": \"herauszuford\",\n  \"herauszufragen\": \"herauszufrag\",\n  \"herauszuführen\": \"herauszufuhr\",\n  \"herauszugehen\": \"herauszugeh\",\n  \"herauszukommen\": \"herauszukomm\",\n  \"herauszuschneiden\": \"herauszuschneid\",\n  \"herauszuschreiben\": \"herauszuschreib\",\n  \"herauszustreichen\": \"herauszustreich\",\n  \"herauszwingen\": \"herauszwing\",\n  \"herbe\": \"herb\",\n  \"herbei\": \"herbei\",\n  \"herbeibringen\": \"herbeibring\",\n  \"herbeieilenden\": \"herbeieil\",\n  \"herbeiführe\": \"herbeifuhr\",\n  \"herbeiführt\": \"herbeifuhrt\",\n  \"herbeiführte\": \"herbeifuhrt\",\n  \"herbeiführung\": \"herbeifuhr\",\n  \"herbeigebracht\": \"herbeigebracht\",\n  \"herbeigeführt\": \"herbeigefuhrt\",\n  \"herbeigeführte\": \"herbeigefuhrt\",\n  \"herbeigekommen\": \"herbeigekomm\",\n  \"herbeigelaufen\": \"herbeigelauf\",\n  \"herbeigetragen\": \"herbeigetrag\",\n  \"herbeigezogen\": \"herbeigezog\",\n  \"herbeikam\": \"herbeikam\",\n  \"herbeikamen\": \"herbeikam\",\n  \"herbeikommen\": \"herbeikomm\",\n  \"herbeikommt\": \"herbeikommt\",\n  \"herbeiströmen\": \"herbeistrom\",\n  \"herbeizuführen\": \"herbeizufuhr\",\n  \"herbeizuholen\": \"herbeizuhol\",\n  \"herbeizuschaffen\": \"herbeizuschaff\",\n  \"herberge\": \"herberg\",\n  \"herbergskammern\": \"herbergskamm\",\n  \"herbeste\": \"herb\",\n  \"herbringen\": \"herbring\",\n  \"herbst\": \"herb\",\n  \"herbstabendhimmel\": \"herbstabendhimmel\",\n  \"herbstabends\": \"herbstab\",\n  \"herbsteigen\": \"herbsteig\",\n  \"herbstes\": \"herb\",\n  \"herbstmorgens\": \"herbstmorg\",\n  \"herbstnachmittag\": \"herbstnachmittag\",\n  \"herbstnebel\": \"herbstnebel\",\n  \"herbstsonnenschein\": \"herbstsonnenschein\",\n  \"herbstwetter\": \"herbstwett\",\n  \"herchen\": \"herch\",\n  \"herd\": \"herd\",\n  \"herde\": \"herd\",\n  \"herden\": \"herd\",\n  \"herdfeuer\": \"herdfeu\",\n  \"herein\": \"herein\",\n  \"hereinbräche\": \"hereinbrach\",\n  \"hereinbrächen\": \"hereinbrach\",\n  \"hereinbrechen\": \"hereinbrech\",\n  \"hereinbricht\": \"hereinbricht\",\n  \"hereingebrachte\": \"hereingebracht\",\n  \"hereingebrachtes\": \"hereingebracht\",\n  \"hereingepeitscht\": \"hereingepeitscht\",\n  \"hereingesendet\": \"hereingesendet\",\n  \"hereingetölpelt\": \"hereingetolpelt\",\n  \"hereingeworfenes\": \"hereingeworf\",\n  \"hereinguckte\": \"hereinguckt\",\n  \"hereinkam\": \"hereinkam\",\n  \"hereinkommen\": \"hereinkomm\",\n  \"hereinragte\": \"hereinragt\",\n  \"hereinwatschelte\": \"hereinwatschelt\",\n  \"hereinzukommen\": \"hereinzukomm\",\n  \"heresibus\": \"heresibus\",\n  \"herfahren\": \"herfahr\",\n  \"herflatterte\": \"herflattert\",\n  \"herflatterten\": \"herflattert\",\n  \"herg\": \"herg\",\n  \"hergeben\": \"hergeb\",\n  \"hergefahren\": \"hergefahr\",\n  \"hergeführt\": \"hergefuhrt\",\n  \"hergegeben\": \"hergegeb\",\n  \"hergehen\": \"hergeh\",\n  \"hergehend\": \"hergeh\",\n  \"hergehst\": \"hergeh\",\n  \"hergeht\": \"hergeht\",\n  \"hergekommen\": \"hergekomm\",\n  \"hergeleitet\": \"hergeleitet\",\n  \"hergeleuchtet\": \"hergeleuchtet\",\n  \"hergemacht\": \"hergemacht\",\n  \"hergenommen\": \"hergenomm\",\n  \"hergerufen\": \"hergeruf\",\n  \"hergesagt\": \"hergesagt\",\n  \"hergesandt\": \"hergesandt\",\n  \"hergestellt\": \"hergestellt\",\n  \"hergestellten\": \"hergestellt\",\n  \"hergetrieben\": \"hergetrieb\",\n  \"hergewandert\": \"hergewandert\",\n  \"hergezogen\": \"hergezog\",\n  \"herging\": \"herging\",\n  \"hering\": \"hering\",\n  \"heringe\": \"hering\",\n  \"heringen\": \"hering\",\n  \"herjagte\": \"herjagt\",\n  \"herkam\": \"herkam\",\n  \"herkämen\": \"herkam\",\n  \"herkomme\": \"herkomm\",\n  \"herkommen\": \"herkomm\",\n  \"herkommenden\": \"herkomm\",\n  \"herkommt\": \"herkommt\",\n  \"herkunft\": \"herkunft\",\n  \"hermann\": \"hermann\",\n  \"hermarschiert\": \"hermarschiert\",\n  \"hermsdorf\": \"hermsdorf\",\n  \"hernach\": \"hernach\",\n  \"hernahm\": \"hernahm\",\n  \"hernehmen\": \"hernehm\",\n  \"hernehmt\": \"hernehmt\",\n  \"hernieder\": \"hernied\",\n  \"herniederregneten\": \"herniederregnet\",\n  \"herniedersahen\": \"herniedersah\",\n  \"herniedersank\": \"herniedersank\",\n  \"hernimmt\": \"hernimmt\",\n  \"heroisch\": \"heroisch\",\n  \"heroischer\": \"heroisch\",\n  \"heroismus\": \"heroismus\",\n  \"heros\": \"heros\",\n  \"herr\": \"herr\",\n  \"herreden\": \"herred\",\n  \"herren\": \"herr\",\n  \"herrengesellschaften\": \"herrengesellschaft\",\n  \"herrenhaus\": \"herrenhaus\",\n  \"herrenlos\": \"herrenlos\",\n  \"herrenlose\": \"herrenlos\",\n  \"herrenlosen\": \"herrenlos\",\n  \"herrenrointhütte\": \"herrenrointhutt\",\n  \"herrentafel\": \"herrentafel\",\n  \"herrentross\": \"herrentross\",\n  \"herrentroß\": \"herrentross\",\n  \"herrgott\": \"herrgott\",\n  \"herrgottswinkel\": \"herrgottswinkel\",\n  \"herrin\": \"herrin\",\n  \"herrisch\": \"herrisch\",\n  \"herrlich\": \"herrlich\",\n  \"herrliche\": \"herrlich\",\n  \"herrlichem\": \"herrlich\",\n  \"herrlichen\": \"herrlich\",\n  \"herrlicher\": \"herrlich\",\n  \"herrliches\": \"herrlich\",\n  \"herrlichkeit\": \"herrlich\",\n  \"herrlichkeiten\": \"herrlich\",\n  \"herrlichste\": \"herrlich\",\n  \"herrlichsten\": \"herrlich\",\n  \"herrn\": \"herrn\",\n  \"herrsch\": \"herrsch\",\n  \"herrschaft\": \"herrschaft\",\n  \"herrschaften\": \"herrschaft\",\n  \"herrschaftlichen\": \"herrschaft\",\n  \"herrschaftlicher\": \"herrschaft\",\n  \"herrsche\": \"herrsch\",\n  \"herrschen\": \"herrsch\",\n  \"herrschend\": \"herrschend\",\n  \"herrschende\": \"herrschend\",\n  \"herrschenden\": \"herrschend\",\n  \"herrschens\": \"herrsch\",\n  \"herrscherinnen\": \"herrscherinn\",\n  \"herrschest\": \"herrsch\",\n  \"herrschet\": \"herrschet\",\n  \"herrscht\": \"herrscht\",\n  \"herrschte\": \"herrscht\",\n  \"herrschten\": \"herrscht\",\n  \"herrühre\": \"herruhr\",\n  \"herrührt\": \"herruhrt\",\n  \"herrührten\": \"herruhrt\",\n  \"herschritt\": \"herschritt\",\n  \"herstammend\": \"herstamm\",\n  \"herstammende\": \"herstamm\",\n  \"herstammenden\": \"herstamm\",\n  \"herstammt\": \"herstammt\",\n  \"herstammte\": \"herstammt\",\n  \"herstammten\": \"herstammt\",\n  \"herstelle\": \"herstell\",\n  \"herstellen\": \"herstell\",\n  \"hersteller\": \"herstell\",\n  \"herstellung\": \"herstell\",\n  \"herüber\": \"herub\",\n  \"herübergeworfen\": \"herubergeworf\",\n  \"herüberkommen\": \"heruberkomm\",\n  \"herüberzukommen\": \"heruberzukomm\",\n  \"herum\": \"herum\",\n  \"herumbiegend\": \"herumbieg\",\n  \"herumfliegt\": \"herumfliegt\",\n  \"herumflog\": \"herumflog\",\n  \"herumführte\": \"herumfuhrt\",\n  \"herumgeflogen\": \"herumgeflog\",\n  \"herumgefuchtelt\": \"herumgefuchtelt\",\n  \"herumgehen\": \"herumgeh\",\n  \"herumgeschlagen\": \"herumgeschlag\",\n  \"herumgeschlüpft\": \"herumgeschlupft\",\n  \"herumgeschnitten\": \"herumgeschnitt\",\n  \"herumgesprochen\": \"herumgesproch\",\n  \"herumgetrieben\": \"herumgetrieb\",\n  \"herumging\": \"herumging\",\n  \"herumhing\": \"herumhing\",\n  \"herumhocken\": \"herumhock\",\n  \"herumhuschten\": \"herumhuscht\",\n  \"herumkollerte\": \"herumkollert\",\n  \"herumlagen\": \"herumlag\",\n  \"herumlaufe\": \"herumlauf\",\n  \"herumlaufen\": \"herumlauf\",\n  \"herumlief\": \"herumlief\",\n  \"herumliefe\": \"herumlief\",\n  \"herumliegen\": \"herumlieg\",\n  \"herumlungern\": \"heruml\",\n  \"herumlungerns\": \"herumlungern\",\n  \"herumplätscherte\": \"herumplatschert\",\n  \"herumrutschten\": \"herumrutscht\",\n  \"herumsäete\": \"herumsaet\",\n  \"herumscharrten\": \"herumscharrt\",\n  \"herumschleichen\": \"herumschleich\",\n  \"herumschleppte\": \"herumschleppt\",\n  \"herumschlichen\": \"herumsch\",\n  \"herumschlug\": \"herumschlug\",\n  \"herumschlugen\": \"herumschlug\",\n  \"herumschweben\": \"herumschweb\",\n  \"herumschweifen\": \"herumschweif\",\n  \"herumschwenken\": \"herumschwenk\",\n  \"herumspazieren\": \"herumspazi\",\n  \"herumsprang\": \"herumsprang\",\n  \"herumsprangen\": \"herumsprang\",\n  \"herumstand\": \"herumstand\",\n  \"herumstanden\": \"herumstand\",\n  \"herumständern\": \"herumstand\",\n  \"herumstocherte\": \"herumstochert\",\n  \"herumstreicht\": \"herumstreicht\",\n  \"herumstreifende\": \"herumstreif\",\n  \"herumstreifte\": \"herumstreift\",\n  \"herumstreite\": \"herumstreit\",\n  \"herumstrich\": \"herumstrich\",\n  \"herumtänzeln\": \"herumtanzeln\",\n  \"herumtappt\": \"herumtappt\",\n  \"herumtragen\": \"herumtrag\",\n  \"herumtreibe\": \"herumtreib\",\n  \"herumtreiben\": \"herumtreib\",\n  \"herumtreiber\": \"herumtreib\",\n  \"herumtrug\": \"herumtrug\",\n  \"herumtrüge\": \"herumtrug\",\n  \"herumtummelte\": \"herumtummelt\",\n  \"herumwälzte\": \"herumwalzt\",\n  \"herumwandle\": \"herumwandl\",\n  \"herumwarf\": \"herumwarf\",\n  \"herumzerrt\": \"herumzerrt\",\n  \"herumzerrte\": \"herumzerrt\",\n  \"herumziehende\": \"herumzieh\",\n  \"herumzuärgern\": \"herumzuarg\",\n  \"herumzufuchteln\": \"herumzufuchteln\",\n  \"herumzukreuzen\": \"herumzukreuz\",\n  \"herumzurasen\": \"herumzuras\",\n  \"herumzuschweifen\": \"herumzuschweif\",\n  \"herumzustreichen\": \"herumzustreich\",\n  \"herumzusummen\": \"herumzusumm\",\n  \"herumzutummeln\": \"herumzutummeln\",\n  \"herumzuturnen\": \"herumzuturn\",\n  \"herumzuziehen\": \"herumzuzieh\",\n  \"herunter\": \"herunt\",\n  \"herunterblickte\": \"herunterblickt\",\n  \"herunterfinden\": \"herunterfind\",\n  \"herunterflog\": \"herunterflog\",\n  \"heruntergebracht\": \"heruntergebracht\",\n  \"heruntergebrannt\": \"heruntergebrannt\",\n  \"heruntergekommen\": \"heruntergekomm\",\n  \"heruntergekommene\": \"heruntergekomm\",\n  \"herunterholen\": \"herunterhol\",\n  \"herunterkam\": \"herunterkam\",\n  \"herunterkommen\": \"herunterkomm\",\n  \"herunternehmen\": \"herunternehm\",\n  \"herunterpurzeln\": \"herunterpurzeln\",\n  \"herunterpurzelten\": \"herunterpurzelt\",\n  \"herunterstreifte\": \"herunterstreift\",\n  \"herunterwarf\": \"herunterwarf\",\n  \"herunterwehte\": \"herunterweht\",\n  \"herunterwickelte\": \"herunterwickelt\",\n  \"herunterziehen\": \"herunterzieh\",\n  \"herunterzuholen\": \"herunterzuhol\",\n  \"herunterzuschlagen\": \"herunterzuschlag\",\n  \"herunterzustossen\": \"herunterzustoss\",\n  \"hervor\": \"hervor\",\n  \"hervorblitzte\": \"hervorblitzt\",\n  \"hervorbrach\": \"hervorbrach\",\n  \"hervorbrachte\": \"hervorbracht\",\n  \"hervorbrechen\": \"hervorbrech\",\n  \"hervorbrechenden\": \"hervorbrech\",\n  \"hervorbricht\": \"hervorbricht\",\n  \"hervorbringe\": \"hervorbring\",\n  \"hervorbringen\": \"hervorbring\",\n  \"hervorbringt\": \"hervorbringt\",\n  \"hervorbringung\": \"hervorbring\",\n  \"hervorfliessen\": \"hervorfliess\",\n  \"hervorfließen\": \"hervorfliess\",\n  \"hervorgebracht\": \"hervorgebracht\",\n  \"hervorgebrochen\": \"hervorgebroch\",\n  \"hervorgegangen\": \"hervorgegang\",\n  \"hervorgegangene\": \"hervorgegang\",\n  \"hervorgehen\": \"hervorgeh\",\n  \"hervorgehende\": \"hervorgeh\",\n  \"hervorgehenden\": \"hervorgeh\",\n  \"hervorgeholt\": \"hervorgeholt\",\n  \"hervorgeht\": \"hervorgeht\",\n  \"hervorgerufen\": \"hervorgeruf\",\n  \"hervorgetan\": \"hervorgetan\",\n  \"hervorgetreten\": \"hervorgetret\",\n  \"hervorgewandelt\": \"hervorgewandelt\",\n  \"hervorgezogen\": \"hervorgezog\",\n  \"hervorgingen\": \"hervorging\",\n  \"hervorheben\": \"hervorheb\",\n  \"hervorholen\": \"hervorhol\",\n  \"hervorholten\": \"hervorholt\",\n  \"hervorkehrte\": \"hervorkehrt\",\n  \"hervorkommt\": \"hervorkommt\",\n  \"hervorkriechen\": \"hervorkriech\",\n  \"hervorleuchtet\": \"hervorleuchtet\",\n  \"hervorleuchtete\": \"hervorleuchtet\",\n  \"hervornahm\": \"hervornahm\",\n  \"hervorquillt\": \"hervorquillt\",\n  \"hervorragender\": \"hervorrag\",\n  \"hervorragten\": \"hervorragt\",\n  \"hervorsahen\": \"hervorsah\",\n  \"hervorschielte\": \"hervorschielt\",\n  \"hervorschimmern\": \"hervorschimm\",\n  \"hervorschimmerten\": \"hervorschimmert\",\n  \"hervorsprang\": \"hervorsprang\",\n  \"hervorsprossen\": \"hervorspross\",\n  \"hervorsprudeln\": \"hervorsprudeln\",\n  \"hervorstechend\": \"hervorstech\",\n  \"hervorstrahlende\": \"hervorstrahl\",\n  \"hervorstrahlt\": \"hervorstrahlt\",\n  \"hervorstrahlte\": \"hervorstrahlt\",\n  \"hervorsuchte\": \"hervorsucht\",\n  \"hervortaten\": \"hervortat\",\n  \"hervortrat\": \"hervortrat\",\n  \"hervortraten\": \"hervortrat\",\n  \"hervortreten\": \"hervortret\",\n  \"hervortritt\": \"hervortritt\",\n  \"hervortrittst\": \"hervortritt\",\n  \"hervortut\": \"hervortut\",\n  \"hervorwallenden\": \"hervorwall\",\n  \"hervorwimmeln\": \"hervorwimmeln\",\n  \"hervorziehen\": \"hervorzieh\",\n  \"hervorzog\": \"hervorzog\",\n  \"hervorzubringen\": \"hervorzubring\",\n  \"hervorzuheben\": \"hervorzuheb\",\n  \"hervorzuholen\": \"hervorzuhol\",\n  \"hervorzutreten\": \"hervorzutret\",\n  \"herwachsen\": \"herwachs\",\n  \"herweg\": \"herweg\",\n  \"herz\": \"herz\",\n  \"herze\": \"herz\",\n  \"herzeleid\": \"herzeleid\",\n  \"herzen\": \"herz\",\n  \"herzens\": \"herz\",\n  \"herzensfröhlichkeit\": \"herzensfroh\",\n  \"herzensgründen\": \"herzensgrund\",\n  \"herzensgutes\": \"herzensgut\",\n  \"herzenshärtigkeit\": \"herzenshart\",\n  \"herzensqual\": \"herzensqual\",\n  \"herzensunterwerfung\": \"herzensunterwerf\",\n  \"herzensweh\": \"herzensweh\",\n  \"herzerl\": \"herzerl\",\n  \"herzhafte\": \"herzhaft\",\n  \"herziehen\": \"herzieh\",\n  \"herziehens\": \"herzieh\",\n  \"herziges\": \"herzig\",\n  \"herzigs\": \"herzig\",\n  \"herzklopfen\": \"herzklopf\",\n  \"herzlich\": \"herzlich\",\n  \"herzliche\": \"herzlich\",\n  \"herzlichen\": \"herzlich\",\n  \"herzlos\": \"herzlos\",\n  \"herzloser\": \"herzlos\",\n  \"herzmanndi\": \"herzmanndi\",\n  \"herzmannskerl\": \"herzmannskerl\",\n  \"herzmannski\": \"herzmannski\",\n  \"herzmannskis\": \"herzmannskis\",\n  \"herzog\": \"herzog\",\n  \"herzogin\": \"herzogin\",\n  \"herzogs\": \"herzog\",\n  \"herzschlag\": \"herzschlag\",\n  \"herzschlägen\": \"herzschlag\",\n  \"herzu\": \"herzu\",\n  \"herzufallen\": \"herzufall\",\n  \"herzuführen\": \"herzufuhr\",\n  \"herzugeben\": \"herzugeb\",\n  \"herzugebrachten\": \"herzugebracht\",\n  \"herzugeritten\": \"herzugeritt\",\n  \"herzugetragen\": \"herzugetrag\",\n  \"herzunahen\": \"herzunah\",\n  \"herzurühren\": \"herzuruhr\",\n  \"herzuschaffen\": \"herzuschaff\",\n  \"herzustellen\": \"herzustell\",\n  \"herzutragen\": \"herzutrag\",\n  \"herzuträte\": \"herzutrat\",\n  \"herzutreten\": \"herzutret\",\n  \"hes\": \"hes\",\n  \"hesekiel\": \"hesekiel\",\n  \"heteronomie\": \"heteronomi\",\n  \"hethiter\": \"hethit\",\n  \"hettlinger\": \"hettling\",\n  \"hetze\": \"hetz\",\n  \"hetzen\": \"hetz\",\n  \"hetzjagd\": \"hetzjagd\",\n  \"hetzte\": \"hetzt\",\n  \"heu\": \"heu\",\n  \"heuboden\": \"heubod\",\n  \"heuchelei\": \"heuchelei\",\n  \"heucheln\": \"heucheln\",\n  \"heuchelt\": \"heuchelt\",\n  \"heuchler\": \"heuchl\",\n  \"heuchlerischem\": \"heuchler\",\n  \"heugabel\": \"heugabel\",\n  \"heulen\": \"heul\",\n  \"heulend\": \"heulend\",\n  \"heulender\": \"heulend\",\n  \"heulet\": \"heulet\",\n  \"heult\": \"heult\",\n  \"heulte\": \"heult\",\n  \"heulten\": \"heult\",\n  \"heuschiff\": \"heuschiff\",\n  \"heuschrecke\": \"heuschreck\",\n  \"heuschrecken\": \"heuschreck\",\n  \"heuschreckenschwarm\": \"heuschreckenschwarm\",\n  \"heuss\": \"heuss\",\n  \"heustock\": \"heustock\",\n  \"heut\": \"heut\",\n  \"heute\": \"heut\",\n  \"heutige\": \"heutig\",\n  \"heutigen\": \"heutig\",\n  \"heutiges\": \"heutig\",\n  \"heutzutage\": \"heutzutag\",\n  \"heviter\": \"hevit\",\n  \"heviters\": \"hevit\",\n  \"hexe\": \"hex\",\n  \"hexen\": \"hex\",\n  \"hexenküche\": \"hexenkuch\",\n  \"hexenmeister\": \"hexenmeist\",\n  \"hexenmeisters\": \"hexenmeist\",\n  \"hexenwerk\": \"hexenwerk\",\n  \"hexer\": \"hex\",\n  \"hexerei\": \"hexerei\",\n  \"hg\": \"hg\",\n  \"hie\": \"hie\",\n  \"hieb\": \"hieb\",\n  \"hiebe\": \"hieb\",\n  \"hiebei\": \"hiebei\",\n  \"hieber\": \"hieb\",\n  \"hiedurch\": \"hiedurch\",\n  \"hiefür\": \"hiefur\",\n  \"hiegegen\": \"hiegeg\",\n  \"hieher\": \"hieh\",\n  \"hielt\": \"hielt\",\n  \"hielte\": \"hielt\",\n  \"hielten\": \"hielt\",\n  \"hiemit\": \"hiemit\",\n  \"hienach\": \"hienach\",\n  \"hier\": \"hier\",\n  \"hieran\": \"hieran\",\n  \"hierarchie\": \"hierarchi\",\n  \"hierauf\": \"hierauf\",\n  \"hieraus\": \"hieraus\",\n  \"hierbei\": \"hierbei\",\n  \"hierbleiben\": \"hierbleib\",\n  \"hierdurch\": \"hierdurch\",\n  \"hierfür\": \"hierfur\",\n  \"hierher\": \"hierh\",\n  \"hierhergekommen\": \"hierhergekomm\",\n  \"hierherkamen\": \"hierherkam\",\n  \"hierherzukommen\": \"hierherzukomm\",\n  \"hierhin\": \"hierhin\",\n  \"hierin\": \"hierin\",\n  \"hierlassen\": \"hierlass\",\n  \"hiermit\": \"hiermit\",\n  \"hieroglyphen\": \"hieroglyph\",\n  \"hierüber\": \"hierub\",\n  \"hierunter\": \"hierunt\",\n  \"hiervon\": \"hiervon\",\n  \"hierzu\": \"hierzu\",\n  \"hierzubleiben\": \"hierzubleib\",\n  \"hierzulande\": \"hierzuland\",\n  \"hiesigen\": \"hiesig\",\n  \"hiess\": \"hiess\",\n  \"hieß\": \"hiess\",\n  \"hiesse\": \"hiess\",\n  \"hieße\": \"hiess\",\n  \"hiessen\": \"hiess\",\n  \"hießen\": \"hiess\",\n  \"hievon\": \"hievon\",\n  \"hiezu\": \"hiezu\",\n  \"hiifsregisseur\": \"hiifsregisseur\",\n  \"hildegard\": \"hildegard\",\n  \"hildesheim\": \"hildesheim\",\n  \"hilf\": \"hilf\",\n  \"hilfe\": \"hilf\",\n  \"hilflos\": \"hilflos\",\n  \"hilflosigkeit\": \"hilflos\",\n  \"hilfsbereitschaft\": \"hilfsbereitschaft\",\n  \"hilfsbremser\": \"hilfsbrems\",\n  \"hilfskräfte\": \"hilfskraft\",\n  \"hilfsmittel\": \"hilfsmittel\",\n  \"hilfsquellen\": \"hilfsquell\",\n  \"hilfsregisseur\": \"hilfsregisseur\",\n  \"hilfsregisseurs\": \"hilfsregisseur\",\n  \"hilfswerk\": \"hilfswerk\",\n  \"hilfswerke\": \"hilfswerk\",\n  \"hilft\": \"hilft\",\n  \"himmel\": \"himmel\",\n  \"himmelbett\": \"himmelbett\",\n  \"himmelblaue\": \"himmelblau\",\n  \"himmelblauen\": \"himmelblau\",\n  \"himmelblaues\": \"himmelblau\",\n  \"himmelerschütterndem\": \"himmelerschutternd\",\n  \"himmelhoch\": \"himmelhoch\",\n  \"himmelhohe\": \"himmelhoh\",\n  \"himmelhohen\": \"himmelhoh\",\n  \"himmeln\": \"himmeln\",\n  \"himmelreich\": \"himmelreich\",\n  \"himmels\": \"himmel\",\n  \"himmelsbesen\": \"himmelsbes\",\n  \"himmelsbewohnern\": \"himmelsbewohn\",\n  \"himmelschoten\": \"himmelschot\",\n  \"himmelschreiendes\": \"himmelschrei\",\n  \"himmelsfeste\": \"himmelsf\",\n  \"himmelsfürst\": \"himmelsfurst\",\n  \"himmelsgeheimnissen\": \"himmelsgeheimnis\",\n  \"himmelsgestirn\": \"himmelsgestirn\",\n  \"himmelsgrund\": \"himmelsgrund\",\n  \"himmelsheeren\": \"himmelshe\",\n  \"himmelsheim\": \"himmelsheim\",\n  \"himmelshöhen\": \"himmelshoh\",\n  \"himmelskühe\": \"himmelskuh\",\n  \"himmelslicht\": \"himmelslicht\",\n  \"himmelslichtes\": \"himmelslicht\",\n  \"himmelsraketenmässig\": \"himmelsraketenmass\",\n  \"himmelsraum\": \"himmelsraum\",\n  \"himmelsraums\": \"himmelsraum\",\n  \"himmelsrichtungen\": \"himmelsricht\",\n  \"himmelsschön\": \"himmelsschon\",\n  \"himmelssphäre\": \"himmelssphar\",\n  \"himmelsweide\": \"himmelsweid\",\n  \"himmelswiese\": \"himmelswies\",\n  \"himmelszelt\": \"himmelszelt\",\n  \"himmelsziegen\": \"himmelszieg\",\n  \"himmelsziegenhörnchen\": \"himmelsziegenhornch\",\n  \"himmelwärts\": \"himmelwart\",\n  \"himmelweit\": \"himmelweit\",\n  \"himmlisch\": \"himmlisch\",\n  \"himmlische\": \"himmlisch\",\n  \"himmlischem\": \"himmlisch\",\n  \"himmlischen\": \"himmlisch\",\n  \"himmlischer\": \"himmlisch\",\n  \"himmlisches\": \"himmlisch\",\n  \"hin\": \"hin\",\n  \"hinab\": \"hinab\",\n  \"hinabfahren\": \"hinabfahr\",\n  \"hinabfuhr\": \"hinabfuhr\",\n  \"hinabgegangen\": \"hinabgegang\",\n  \"hinabgelassen\": \"hinabgelass\",\n  \"hinabgerissen\": \"hinabgeriss\",\n  \"hinabgesprungen\": \"hinabgespr\",\n  \"hinabgestossen\": \"hinabgestoss\",\n  \"hinabgestoßen\": \"hinabgestoss\",\n  \"hinabgestürzt\": \"hinabgesturzt\",\n  \"hinabgeworfen\": \"hinabgeworf\",\n  \"hinabgingen\": \"hinabging\",\n  \"hinabkommen\": \"hinabkomm\",\n  \"hinablassen\": \"hinablass\",\n  \"hinabsanken\": \"hinabsank\",\n  \"hinabsankst\": \"hinabsank\",\n  \"hinabsausten\": \"hinabsaust\",\n  \"hinabsenkt\": \"hinabsenkt\",\n  \"hinabsinken\": \"hinabsink\",\n  \"hinabspringen\": \"hinabspring\",\n  \"hinabsteigen\": \"hinabsteig\",\n  \"hinabstossen\": \"hinabstoss\",\n  \"hinabstoßen\": \"hinabstoss\",\n  \"hinabtauchte\": \"hinabtaucht\",\n  \"hinabtreibend\": \"hinabtreib\",\n  \"hinabversetzt\": \"hinabversetzt\",\n  \"hinabwerfen\": \"hinabwerf\",\n  \"hinabziehen\": \"hinabzieh\",\n  \"hinabzog\": \"hinabzog\",\n  \"hinabzugehen\": \"hinabzugeh\",\n  \"hinabzusteigen\": \"hinabzusteig\",\n  \"hinabzustürzen\": \"hinabzusturz\",\n  \"hinan\": \"hinan\",\n  \"hinanfuhren\": \"hinanfuhr\",\n  \"hinangeleiten\": \"hinangeleit\",\n  \"hinanstieg\": \"hinanstieg\",\n  \"hinauf\": \"hinauf\",\n  \"hinaufbringen\": \"hinaufbring\",\n  \"hinaufführen\": \"hinauffuhr\",\n  \"hinaufführte\": \"hinauffuhrt\",\n  \"hinauffuhrwerkte\": \"hinauffuhrwerkt\",\n  \"hinaufgefahren\": \"hinaufgefahr\",\n  \"hinaufgehen\": \"hinaufgeh\",\n  \"hinaufgehoben\": \"hinaufgehob\",\n  \"hinaufgeschossen\": \"hinaufgeschoss\",\n  \"hinaufgestiegen\": \"hinaufgestieg\",\n  \"hinaufgestrauchelt\": \"hinaufgestrauchelt\",\n  \"hinaufgetrieben\": \"hinaufgetrieb\",\n  \"hinaufging\": \"hinaufging\",\n  \"hinaufkommen\": \"hinaufkomm\",\n  \"hinauflief\": \"hinauflief\",\n  \"hinaufrufen\": \"hinaufruf\",\n  \"hinaufspähte\": \"hinaufspaht\",\n  \"hinaufsprang\": \"hinaufsprang\",\n  \"hinaufsteigen\": \"hinaufsteig\",\n  \"hinaufstieg\": \"hinaufstieg\",\n  \"hinaufstreckte\": \"hinaufstreckt\",\n  \"hinaufstürmte\": \"hinaufsturmt\",\n  \"hinaufwollte\": \"hinaufwollt\",\n  \"hinaufzuführen\": \"hinaufzufuhr\",\n  \"hinaufzukommen\": \"hinaufzukomm\",\n  \"hinaufzutreiben\": \"hinaufzutreib\",\n  \"hinaus\": \"hinaus\",\n  \"hinausarbeiten\": \"hinausarbeit\",\n  \"hinausbefördert\": \"hinausbefordert\",\n  \"hinausbegleiten\": \"hinausbegleit\",\n  \"hinausfliehen\": \"hinausflieh\",\n  \"hinausg\": \"hinausg\",\n  \"hinausgebauten\": \"hinausgebaut\",\n  \"hinausgeführt\": \"hinausgefuhrt\",\n  \"hinausgegangen\": \"hinausgegang\",\n  \"hinausgehe\": \"hinausgeh\",\n  \"hinausgehen\": \"hinausgeh\",\n  \"hinausgeht\": \"hinausgeht\",\n  \"hinausgeleitet\": \"hinausgeleitet\",\n  \"hinausgerücktes\": \"hinausgeruckt\",\n  \"hinausgeschafft\": \"hinausgeschafft\",\n  \"hinausgeschlichen\": \"hinausgesch\",\n  \"hinausgeschnitten\": \"hinausgeschnitt\",\n  \"hinausgesetzt\": \"hinausgesetzt\",\n  \"hinausgesprengt\": \"hinausgesprengt\",\n  \"hinausgeworfen\": \"hinausgeworf\",\n  \"hinausginge\": \"hinausging\",\n  \"hinausgingen\": \"hinausging\",\n  \"hinauskommen\": \"hinauskomm\",\n  \"hinauskomplementiert\": \"hinauskomplementiert\",\n  \"hinausläuft\": \"hinauslauft\",\n  \"hinaussahen\": \"hinaussah\",\n  \"hinausschallte\": \"hinausschallt\",\n  \"hinausschauen\": \"hinausschau\",\n  \"hinausschaute\": \"hinausschaut\",\n  \"hinausschieben\": \"hinausschieb\",\n  \"hinausschrie\": \"hinausschri\",\n  \"hinausschweift\": \"hinausschweift\",\n  \"hinaussieht\": \"hinaussieht\",\n  \"hinausspringen\": \"hinausspring\",\n  \"hinausspringenden\": \"hinausspring\",\n  \"hinausstossen\": \"hinausstoss\",\n  \"hinausstoßen\": \"hinausstoss\",\n  \"hinaustrat\": \"hinaustrat\",\n  \"hinaustreten\": \"hinaustret\",\n  \"hinaustrollte\": \"hinaustrollt\",\n  \"hinauswandern\": \"hinauswand\",\n  \"hinauswillst\": \"hinauswill\",\n  \"hinauszufliegen\": \"hinauszuflieg\",\n  \"hinauszustossen\": \"hinauszustoss\",\n  \"hinauszustoßen\": \"hinauszustoss\",\n  \"hinauszuziehen\": \"hinauszuzieh\",\n  \"hinbeugte\": \"hinbeugt\",\n  \"hinblicken\": \"hinblick\",\n  \"hinblickte\": \"hinblickt\",\n  \"hindern\": \"hind\",\n  \"hindernis\": \"hindernis\",\n  \"hindernisse\": \"hindernis\",\n  \"hindernisses\": \"hindernis\",\n  \"hindert\": \"hindert\",\n  \"hinderte\": \"hindert\",\n  \"hindin\": \"hindin\",\n  \"hindinnen\": \"hindinn\",\n  \"hindostanische\": \"hindostan\",\n  \"hindu\": \"hindu\",\n  \"hindurch\": \"hindurch\",\n  \"hindurchfliessen\": \"hindurchfliess\",\n  \"hindurchfließen\": \"hindurchfliess\",\n  \"hindurchfliessens\": \"hindurchfliess\",\n  \"hindurchfließens\": \"hindurchfliess\",\n  \"hindurchfliesst\": \"hindurchfliesst\",\n  \"hindurchfließt\": \"hindurchfliesst\",\n  \"hindurchfloss\": \"hindurchfloss\",\n  \"hindurchfloß\": \"hindurchfloss\",\n  \"hindurchführte\": \"hindurchfuhrt\",\n  \"hindurchgegangen\": \"hindurchgegang\",\n  \"hindurchgehende\": \"hindurchgeh\",\n  \"hindurchgeht\": \"hindurchgeht\",\n  \"hindurchgeschlüpft\": \"hindurchgeschlupft\",\n  \"hindurchging\": \"hindurchging\",\n  \"hineilte\": \"hineilt\",\n  \"hinein\": \"hinein\",\n  \"hineinbringen\": \"hineinbring\",\n  \"hineinfahren\": \"hineinfahr\",\n  \"hineinfällt\": \"hineinfallt\",\n  \"hineingebaut\": \"hineingebaut\",\n  \"hineingebracht\": \"hineingebracht\",\n  \"hineingefahren\": \"hineingefahr\",\n  \"hineingegangen\": \"hineingegang\",\n  \"hineingehen\": \"hineingeh\",\n  \"hineingeht\": \"hineingeht\",\n  \"hineingekrochen\": \"hineingekroch\",\n  \"hineingeladen\": \"hineingelad\",\n  \"hineingelegten\": \"hineingelegt\",\n  \"hineingeraten\": \"hineingerat\",\n  \"hineingesehen\": \"hineingeseh\",\n  \"hineingesperrt\": \"hineingesperrt\",\n  \"hineingeworfen\": \"hineingeworf\",\n  \"hineingeworfene\": \"hineingeworf\",\n  \"hineinging\": \"hineinging\",\n  \"hineingrub\": \"hineingrub\",\n  \"hineinkleben\": \"hineinkleb\",\n  \"hineinkomme\": \"hineinkomm\",\n  \"hineinkommen\": \"hineinkomm\",\n  \"hineinladen\": \"hineinlad\",\n  \"hineinlegen\": \"hineinleg\",\n  \"hineinliess\": \"hineinliess\",\n  \"hineinritt\": \"hineinritt\",\n  \"hineinschien\": \"hineinschi\",\n  \"hineinschrie\": \"hineinschri\",\n  \"hineinsprang\": \"hineinsprang\",\n  \"hineinstellte\": \"hineinstellt\",\n  \"hineinstrecken\": \"hineinstreck\",\n  \"hineinträgt\": \"hineintragt\",\n  \"hineintrugen\": \"hineintrug\",\n  \"hineinversetzen\": \"hineinversetz\",\n  \"hineinversetzt\": \"hineinversetzt\",\n  \"hineinwerfen\": \"hineinwerf\",\n  \"hineinwuchs\": \"hineinwuch\",\n  \"hineinzukleben\": \"hineinzukleb\",\n  \"hineinzulassen\": \"hineinzulass\",\n  \"hineinzuschreiten\": \"hineinzuschreit\",\n  \"hineinzusehen\": \"hineinzuseh\",\n  \"hineinzuspringen\": \"hineinzuspring\",\n  \"hineinzuwandeln\": \"hineinzuwandeln\",\n  \"hinfiel\": \"hinfiel\",\n  \"hinfort\": \"hinfort\",\n  \"hinführen\": \"hinfuhr\",\n  \"hing\": \"hing\",\n  \"hingabe\": \"hingab\",\n  \"hingaben\": \"hingab\",\n  \"hingeben\": \"hingeb\",\n  \"hingebettet\": \"hingebettet\",\n  \"hingebung\": \"hingeb\",\n  \"hingebungsvoll\": \"hingebungsvoll\",\n  \"hingeführt\": \"hingefuhrt\",\n  \"hingegangen\": \"hingegang\",\n  \"hingegeben\": \"hingegeb\",\n  \"hingegebenes\": \"hingegeb\",\n  \"hingegen\": \"hingeg\",\n  \"hingehalten\": \"hingehalt\",\n  \"hingehen\": \"hingeh\",\n  \"hingekommen\": \"hingekomm\",\n  \"hingeleiten\": \"hingeleit\",\n  \"hingelenkt\": \"hingelenkt\",\n  \"hingen\": \"hing\",\n  \"hingenommen\": \"hingenomm\",\n  \"hingerissen\": \"hingeriss\",\n  \"hingeschickt\": \"hingeschickt\",\n  \"hingeschieden\": \"hingeschied\",\n  \"hingesehen\": \"hingeseh\",\n  \"hingestellt\": \"hingestellt\",\n  \"hingestreckt\": \"hingestreckt\",\n  \"hingestreut\": \"hingestreut\",\n  \"hingetragen\": \"hingetrag\",\n  \"hingetreten\": \"hingetret\",\n  \"hingewandert\": \"hingewandert\",\n  \"hingewandt\": \"hingewandt\",\n  \"hingewendet\": \"hingewendet\",\n  \"hingewiesen\": \"hingewies\",\n  \"hingeworfen\": \"hingeworf\",\n  \"hinging\": \"hinging\",\n  \"hinglitt\": \"hinglitt\",\n  \"hinhalten\": \"hinhalt\",\n  \"hinhältst\": \"hinhalt\",\n  \"hinirren\": \"hinirr\",\n  \"hinkam\": \"hinkam\",\n  \"hinken\": \"hink\",\n  \"hinkenden\": \"hinkend\",\n  \"hinkendes\": \"hinkend\",\n  \"hinklopft\": \"hinklopft\",\n  \"hinkommen\": \"hinkomm\",\n  \"hinkt\": \"hinkt\",\n  \"hinlänglich\": \"hinlang\",\n  \"hinlängliche\": \"hinlang\",\n  \"hinleg\": \"hinleg\",\n  \"hinlegen\": \"hinleg\",\n  \"hinlief\": \"hinlief\",\n  \"hinnahm\": \"hinnahm\",\n  \"hinnehmen\": \"hinnehm\",\n  \"hinneigen\": \"hinneig\",\n  \"hinneigt\": \"hinneigt\",\n  \"hinneigten\": \"hinneigt\",\n  \"hinnen\": \"hinn\",\n  \"hinrasen\": \"hinras\",\n  \"hinreiche\": \"hinreich\",\n  \"hinreichen\": \"hinreich\",\n  \"hinreichend\": \"hinreich\",\n  \"hinreichende\": \"hinreich\",\n  \"hinreichenden\": \"hinreich\",\n  \"hinreichender\": \"hinreich\",\n  \"hinreichte\": \"hinreicht\",\n  \"hinreissen\": \"hinreiss\",\n  \"hinreißen\": \"hinreiss\",\n  \"hinreissend\": \"hinreiss\",\n  \"hinsah\": \"hinsah\",\n  \"hinsandte\": \"hinsandt\",\n  \"hinschauten\": \"hinschaut\",\n  \"hinscheiden\": \"hinscheid\",\n  \"hinschiessenden\": \"hinschiess\",\n  \"hinschnitt\": \"hinschnitt\",\n  \"hinschob\": \"hinschob\",\n  \"hinschritt\": \"hinschritt\",\n  \"hinschwebte\": \"hinschwebt\",\n  \"hinsehen\": \"hinseh\",\n  \"hinsetzend\": \"hinsetz\",\n  \"hinsicht\": \"hinsicht\",\n  \"hinsichtlich\": \"hinsicht\",\n  \"hinsieht\": \"hinsieht\",\n  \"hinsingt\": \"hinsingt\",\n  \"hinspediert\": \"hinspediert\",\n  \"hinstellen\": \"hinstell\",\n  \"hinstellte\": \"hinstellt\",\n  \"hinsterben\": \"hinsterb\",\n  \"hinstreckten\": \"hinstreckt\",\n  \"hinstürzt\": \"hinsturzt\",\n  \"hinstürzte\": \"hinsturzt\",\n  \"hinten\": \"hint\",\n  \"hintendrein\": \"hintendrein\",\n  \"hinter\": \"hint\",\n  \"hintereinander\": \"hintereinand\",\n  \"hinteren\": \"hint\",\n  \"hinterfragen\": \"hinterfrag\",\n  \"hinterfragt\": \"hinterfragt\",\n  \"hinterfüsse\": \"hinterfuss\",\n  \"hintergehen\": \"hintergeh\",\n  \"hintergestell\": \"hintergestell\",\n  \"hintergrund\": \"hintergrund\",\n  \"hintergrunde\": \"hintergrund\",\n  \"hintergrundes\": \"hintergrund\",\n  \"hintergrundregelmässig\": \"hintergrundregelmass\",\n  \"hinterhalt\": \"hinterhalt\",\n  \"hinterher\": \"hinterh\",\n  \"hinterhoftheater\": \"hinterhoftheat\",\n  \"hinterlassen\": \"hinterlass\",\n  \"hinterlegten\": \"hinterlegt\",\n  \"hinterliess\": \"hinterliess\",\n  \"hinterlist\": \"hinterlist\",\n  \"hinterlistigen\": \"hinterlist\",\n  \"hintern\": \"hint\",\n  \"hinterrücks\": \"hinterruck\",\n  \"hinters\": \"hint\",\n  \"hinterstübchen\": \"hinterstubch\",\n  \"hintertreiben\": \"hintertreib\",\n  \"hintrat\": \"hintrat\",\n  \"hintreten\": \"hintret\",\n  \"hintri\": \"hintri\",\n  \"hinüber\": \"hinub\",\n  \"hinübergehen\": \"hinubergeh\",\n  \"hinübergetragen\": \"hinubergetrag\",\n  \"hinübergewandt\": \"hinubergewandt\",\n  \"hinüberkommen\": \"hinuberkomm\",\n  \"hinüberreiten\": \"hinuberreit\",\n  \"hinüberrudern\": \"hinuberrud\",\n  \"hinübersah\": \"hinubersah\",\n  \"hinüberschritten\": \"hinuberschritt\",\n  \"hinübersehen\": \"hinuberseh\",\n  \"hinübertragen\": \"hinubertrag\",\n  \"hinunter\": \"hinunt\",\n  \"hinunterblicken\": \"hinunterblick\",\n  \"hinunterfahren\": \"hinunterfahr\",\n  \"hinunterführte\": \"hinunterfuhrt\",\n  \"hinuntergebeugt\": \"hinuntergebeugt\",\n  \"hinuntergesprungen\": \"hinuntergespr\",\n  \"hinuntergestossen\": \"hinuntergestoss\",\n  \"hinuntergestoßen\": \"hinuntergestoss\",\n  \"hinunterging\": \"hinunterging\",\n  \"hinunterhängenden\": \"hinunterhang\",\n  \"hinunterkommen\": \"hinunterkomm\",\n  \"hinunterlachte\": \"hinunterlacht\",\n  \"hinunterrutschen\": \"hinunterrutsch\",\n  \"hinuntersah\": \"hinuntersah\",\n  \"hinunterschaute\": \"hinunterschaut\",\n  \"hinuntersenkte\": \"hinuntersenkt\",\n  \"hinunterstossen\": \"hinunterstoss\",\n  \"hinunterstoßen\": \"hinunterstoss\",\n  \"hinuntertragen\": \"hinuntertrag\",\n  \"hinunterwerfen\": \"hinunterwerf\",\n  \"hinunterzerrte\": \"hinunterzerrt\",\n  \"hinwandelt\": \"hinwandelt\",\n  \"hinwanderten\": \"hinwandert\",\n  \"hinwandte\": \"hinwandt\",\n  \"hinweg\": \"hinweg\",\n  \"hinweggegangen\": \"hinweggegang\",\n  \"hinweggehen\": \"hinweggeh\",\n  \"hinweggeholfen\": \"hinweggeholf\",\n  \"hinweggerattert\": \"hinweggerattert\",\n  \"hinwegkommen\": \"hinwegkomm\",\n  \"hinwegliefen\": \"hinweglief\",\n  \"hinwegnehmen\": \"hinwegnehm\",\n  \"hinwegschaffen\": \"hinwegschaff\",\n  \"hinweise\": \"hinweis\",\n  \"hinweisen\": \"hinweis\",\n  \"hinwenden\": \"hinwend\",\n  \"hinwendung\": \"hinwend\",\n  \"hinwerfen\": \"hinwerf\",\n  \"hinwerfung\": \"hinwerf\",\n  \"hinwieder\": \"hinwied\",\n  \"hinziehen\": \"hinzieh\",\n  \"hinzog\": \"hinzog\",\n  \"hinzogen\": \"hinzog\",\n  \"hinzu\": \"hinzu\",\n  \"hinzubegeben\": \"hinzubegeb\",\n  \"hinzublicken\": \"hinzublick\",\n  \"hinzufüge\": \"hinzufug\",\n  \"hinzufügen\": \"hinzufug\",\n  \"hinzufügt\": \"hinzufugt\",\n  \"hinzuführen\": \"hinzufuhr\",\n  \"hinzugefügt\": \"hinzugefugt\",\n  \"hinzugehen\": \"hinzugeh\",\n  \"hinzugekommen\": \"hinzugekomm\",\n  \"hinzugesetzt\": \"hinzugesetzt\",\n  \"hinzugetan\": \"hinzugetan\",\n  \"hinzuhalten\": \"hinzuhalt\",\n  \"hinzukommen\": \"hinzukomm\",\n  \"hinzukommenden\": \"hinzukomm\",\n  \"hinzulegen\": \"hinzuleg\",\n  \"hinzuschielen\": \"hinzuschiel\",\n  \"hinzuschleichen\": \"hinzuschleich\",\n  \"hinzusehen\": \"hinzuseh\",\n  \"hinzustrecken\": \"hinzustreck\",\n  \"hinzustürzen\": \"hinzusturz\",\n  \"hinzutraten\": \"hinzutrat\",\n  \"hinzutreten\": \"hinzutret\",\n  \"hinzutun\": \"hinzutun\",\n  \"hinzuweisen\": \"hinzuweis\",\n  \"hinzuzufügen\": \"hinzuzufug\",\n  \"hiob\": \"hiob\",\n  \"hirn\": \"hirn\",\n  \"hirngespenstern\": \"hirngespen\",\n  \"hirngespinst\": \"hirngespin\",\n  \"hirngespinste\": \"hirngespin\",\n  \"hirnhäute\": \"hirnhaut\",\n  \"hirnschale\": \"hirnschal\",\n  \"hirsch\": \"hirsch\",\n  \"hirsche\": \"hirsch\",\n  \"hirschen\": \"hirsch\",\n  \"hirsches\": \"hirsch\",\n  \"hirschgeweih\": \"hirschgeweih\",\n  \"hirschkuh\": \"hirschkuh\",\n  \"hirt\": \"hirt\",\n  \"hirte\": \"hirt\",\n  \"hirten\": \"hirt\",\n  \"historie\": \"histori\",\n  \"historiker\": \"histor\",\n  \"historikerin\": \"historikerin\",\n  \"historikers\": \"histor\",\n  \"historisch\": \"histor\",\n  \"historische\": \"histor\",\n  \"historischen\": \"histor\",\n  \"historischer\": \"histor\",\n  \"hitler\": \"hitl\",\n  \"hitlerrede\": \"hitlerred\",\n  \"hitz\": \"hitz\",\n  \"hitze\": \"hitz\",\n  \"hitzige\": \"hitzig\",\n  \"hitzigen\": \"hitzig\",\n  \"hitziger\": \"hitzig\",\n  \"hitzkopf\": \"hitzkopf\",\n  \"hm\": \"hm\",\n  \"hmmm\": \"hmmm\",\n  \"ho\": \"ho\",\n  \"hob\": \"hob\",\n  \"hobelbänke\": \"hobelbank\",\n  \"hoben\": \"hob\",\n  \"hoc\": \"hoc\",\n  \"hoch\": \"hoch\",\n  \"hochachtung\": \"hochacht\",\n  \"hochachtungsvohlst\": \"hochachtungsvohl\",\n  \"hochamt\": \"hochamt\",\n  \"hochaufatmend\": \"hochaufatm\",\n  \"hochdeutsch\": \"hochdeutsch\",\n  \"hochebene\": \"hocheb\",\n  \"hochfahrenden\": \"hochfahr\",\n  \"hochfuhr\": \"hochfuhr\",\n  \"hochgebettete\": \"hochgebettet\",\n  \"hochgebrochenen\": \"hochgebroch\",\n  \"hochgefahren\": \"hochgefahr\",\n  \"hochgehoben\": \"hochgehob\",\n  \"hochgelegen\": \"hochgeleg\",\n  \"hochgenuss\": \"hochgenuss\",\n  \"hochgepriesene\": \"hochgepries\",\n  \"hochgeschäfteten\": \"hochgeschaftet\",\n  \"hochgewölbten\": \"hochgewolbt\",\n  \"hochgipfel\": \"hochgipfel\",\n  \"hochheilig\": \"hochheil\",\n  \"hochheilige\": \"hochheil\",\n  \"hochheiliges\": \"hochheil\",\n  \"hochkam\": \"hochkam\",\n  \"hochklingenden\": \"hochkling\",\n  \"höchlich\": \"hochlich\",\n  \"hochmoore\": \"hochmoor\",\n  \"hochmut\": \"hochmut\",\n  \"hochmütig\": \"hochmut\",\n  \"hochmütige\": \"hochmut\",\n  \"hochnäsig\": \"hochnas\",\n  \"hochnäsige\": \"hochnas\",\n  \"hochpreisungen\": \"hochpreis\",\n  \"hochsahen\": \"hochsah\",\n  \"hochschätzung\": \"hochschatz\",\n  \"hochsitze\": \"hochsitz\",\n  \"hochsommer\": \"hochsomm\",\n  \"höchst\": \"hoch\",\n  \"hochstämmige\": \"hochstamm\",\n  \"hochstapfen\": \"hochstapf\",\n  \"höchste\": \"hoch\",\n  \"höchstem\": \"hoch\",\n  \"höchsten\": \"hoch\",\n  \"höchstens\": \"hochst\",\n  \"höchster\": \"hoch\",\n  \"höchstes\": \"hoch\",\n  \"höchstnötig\": \"hochstnot\",\n  \"hochtrabende\": \"hochtrab\",\n  \"hochverpönt\": \"hochverpont\",\n  \"hochverpönte\": \"hochverpont\",\n  \"hochverpöntes\": \"hochverpont\",\n  \"hochverrat\": \"hochverrat\",\n  \"hochwild\": \"hochwild\",\n  \"hochzeit\": \"hochzeit\",\n  \"hochzeitbett\": \"hochzeitbett\",\n  \"hochzeiten\": \"hochzeit\",\n  \"hochzeiter\": \"hochzeit\",\n  \"hochzeitgäste\": \"hochzeitgast\",\n  \"hochzeitgeleite\": \"hochzeitgeleit\",\n  \"hochzeitkammer\": \"hochzeitkamm\",\n  \"hochzeitmahl\": \"hochzeitmahl\",\n  \"hochzeitmorgen\": \"hochzeitmorg\",\n  \"hochzeitpaar\": \"hochzeitpaar\",\n  \"hochzeitstruhe\": \"hochzeitstruh\",\n  \"hochzet\": \"hochzet\",\n  \"hochzubrüllen\": \"hochzubrull\",\n  \"hockte\": \"hockt\",\n  \"hockten\": \"hockt\",\n  \"hof\": \"hof\",\n  \"hofe\": \"hof\",\n  \"höfe\": \"hof\",\n  \"höfen\": \"hof\",\n  \"hofes\": \"hof\",\n  \"hoffart\": \"hoffart\",\n  \"hoffärtigen\": \"hoffart\",\n  \"hoffärtiger\": \"hoffart\",\n  \"hoffe\": \"hoff\",\n  \"hoffen\": \"hoff\",\n  \"hoffend\": \"hoffend\",\n  \"hoffenster\": \"hoffen\",\n  \"hoffentlich\": \"hoffent\",\n  \"hoffmann\": \"hoffmann\",\n  \"hoffmannstropfen\": \"hoffmannstropf\",\n  \"hoffnung\": \"hoffnung\",\n  \"hoffnungen\": \"hoffnung\",\n  \"hoffnungsarme\": \"hoffnungsarm\",\n  \"hoffnungsfaser\": \"hoffnungsfas\",\n  \"hoffnungsfreudig\": \"hoffnungsfreud\",\n  \"hoffnungslos\": \"hoffnungslos\",\n  \"hoffnungslose\": \"hoffnungslos\",\n  \"hoffnungsloser\": \"hoffnungslos\",\n  \"hoffnungslosigkeit\": \"hoffnungslos\",\n  \"hoffnungsreichem\": \"hoffnungsreich\",\n  \"hoffnungsvolle\": \"hoffnungsvoll\",\n  \"hoffte\": \"hofft\",\n  \"hofhaltung\": \"hofhalt\",\n  \"hofleben\": \"hofleb\",\n  \"hofleute\": \"hofleut\",\n  \"höflich\": \"hoflich\",\n  \"höfliche\": \"hoflich\",\n  \"höflichem\": \"hoflich\",\n  \"höflichen\": \"hoflich\",\n  \"höflicher\": \"hoflich\",\n  \"höflichkeit\": \"hoflich\",\n  \"höflichkeiten\": \"hoflich\",\n  \"hofrat\": \"hofrat\",\n  \"hofraum\": \"hofraum\",\n  \"hofstaats\": \"hofstaat\",\n  \"höft\": \"hoft\",\n  \"hofwinkels\": \"hofwinkel\",\n  \"höh\": \"hoh\",\n  \"hohe\": \"hoh\",\n  \"höhe\": \"hoh\",\n  \"hoheit\": \"hoheit\",\n  \"hohem\": \"hoh\",\n  \"hohen\": \"hoh\",\n  \"höhen\": \"hoh\",\n  \"höhenflüge\": \"hohenflug\",\n  \"höhenlüften\": \"hohenluft\",\n  \"höhenstrichen\": \"hohenstrich\",\n  \"höhepunktes\": \"hohepunkt\",\n  \"hoher\": \"hoh\",\n  \"höher\": \"hoh\",\n  \"höhere\": \"hoh\",\n  \"höherem\": \"hoh\",\n  \"höheren\": \"hoh\",\n  \"höherer\": \"hoh\",\n  \"höheres\": \"hoh\",\n  \"höhern\": \"hoh\",\n  \"hohes\": \"hoh\",\n  \"hohfentlich\": \"hohfent\",\n  \"hohle\": \"hohl\",\n  \"hohlem\": \"hohl\",\n  \"hohlen\": \"hohl\",\n  \"höhlen\": \"hohl\",\n  \"hohler\": \"hohl\",\n  \"hohles\": \"hohl\",\n  \"höhlung\": \"hohlung\",\n  \"hohlziegel\": \"hohlziegel\",\n  \"hohn\": \"hohn\",\n  \"höhnisch\": \"hohnisch\",\n  \"höhnischen\": \"hohnisch\",\n  \"höhnisches\": \"hohnisch\",\n  \"höhnten\": \"hohnt\",\n  \"hoho\": \"hoho\",\n  \"höi\": \"hoi\",\n  \"hol\": \"hol\",\n  \"hold\": \"hold\",\n  \"holde\": \"hold\",\n  \"holden\": \"hold\",\n  \"holdes\": \"hold\",\n  \"holdselig\": \"holdsel\",\n  \"holdseligste\": \"holdsel\",\n  \"hole\": \"hol\",\n  \"holen\": \"hol\",\n  \"holimanns\": \"holimann\",\n  \"holla\": \"holla\",\n  \"holle\": \"holl\",\n  \"hölle\": \"holl\",\n  \"höllen\": \"holl\",\n  \"höllenfeuer\": \"hollenfeu\",\n  \"höllengeister\": \"hollengeist\",\n  \"höllengeistern\": \"hollengeist\",\n  \"höllenlärm\": \"hollenlarm\",\n  \"höllisch\": \"hollisch\",\n  \"höllische\": \"hollisch\",\n  \"höllischem\": \"hollisch\",\n  \"höllischen\": \"hollisch\",\n  \"höllischer\": \"hollisch\",\n  \"höllisches\": \"hollisch\",\n  \"holocaust\": \"holocaust\",\n  \"holsteiner\": \"holstein\",\n  \"holt\": \"holt\",\n  \"holte\": \"holt\",\n  \"holten\": \"holt\",\n  \"holterdiepolter\": \"holterdiepolt\",\n  \"holunderbäume\": \"holunderbaum\",\n  \"holz\": \"holz\",\n  \"holzbank\": \"holzbank\",\n  \"hölzchen\": \"holzch\",\n  \"holzdieb\": \"holzdieb\",\n  \"holze\": \"holz\",\n  \"hölzerne\": \"holzern\",\n  \"hölzernen\": \"holzern\",\n  \"hölzerner\": \"holzern\",\n  \"hölzernes\": \"holzern\",\n  \"holzes\": \"holz\",\n  \"holzgetäfel\": \"holzgetafel\",\n  \"holzhauer\": \"holzhau\",\n  \"holzkannen\": \"holzkann\",\n  \"holzkeil\": \"holzkeil\",\n  \"holzknecht\": \"holzknecht\",\n  \"holzknechte\": \"holzknecht\",\n  \"holzkreuz\": \"holzkreuz\",\n  \"holzscheite\": \"holzscheit\",\n  \"holzschwert\": \"holzschwert\",\n  \"holzstall\": \"holzstall\",\n  \"holzstoss\": \"holzstoss\",\n  \"holztisch\": \"holztisch\",\n  \"holztreppe\": \"holztrepp\",\n  \"home\": \"hom\",\n  \"homepage\": \"homepag\",\n  \"homers\": \"hom\",\n  \"hon\": \"hon\",\n  \"honecker\": \"honeck\",\n  \"honetter\": \"honett\",\n  \"honig\": \"honig\",\n  \"honigfässchen\": \"honigfassch\",\n  \"honigfäßchen\": \"honigfassch\",\n  \"honigs\": \"honig\",\n  \"honigscheibe\": \"honigscheib\",\n  \"honneurs\": \"honneur\",\n  \"honorar\": \"honorar\",\n  \"hooch\": \"hooch\",\n  \"hopp\": \"hopp\",\n  \"hoppelt\": \"hoppelt\",\n  \"hoppla\": \"hoppla\",\n  \"hopsele\": \"hopsel\",\n  \"hör\": \"hor\",\n  \"hörbar\": \"horbar\",\n  \"horche\": \"horch\",\n  \"horchen\": \"horch\",\n  \"horcht\": \"horcht\",\n  \"horchte\": \"horcht\",\n  \"horchten\": \"horcht\",\n  \"höre\": \"hor\",\n  \"horeb\": \"horeb\",\n  \"hören\": \"hor\",\n  \"hörend\": \"horend\",\n  \"hörende\": \"horend\",\n  \"hörer\": \"hor\",\n  \"hörerbrief\": \"horerbrief\",\n  \"hörerin\": \"horerin\",\n  \"hörest\": \"hor\",\n  \"höret\": \"horet\",\n  \"hörfolge\": \"horfolg\",\n  \"horizonte\": \"horizont\",\n  \"horlinger\": \"horling\",\n  \"horn\": \"horn\",\n  \"hornbläsern\": \"hornblas\",\n  \"hörnchen\": \"hornch\",\n  \"hörner\": \"horn\",\n  \"hörnern\": \"horn\",\n  \"hornstriegeln\": \"hornstriegeln\",\n  \"horon\": \"horon\",\n  \"hörrohr\": \"horrohr\",\n  \"hörspielabteilung\": \"horspielabteil\",\n  \"horst\": \"horst\",\n  \"hörst\": \"horst\",\n  \"horste\": \"horst\",\n  \"hört\": \"hort\",\n  \"hörte\": \"hort\",\n  \"hörten\": \"hort\",\n  \"hörtest\": \"hort\",\n  \"hos\": \"hos\",\n  \"hosas\": \"hosas\",\n  \"hose\": \"hos\",\n  \"hosen\": \"hos\",\n  \"hosengürtel\": \"hosengurtel\",\n  \"hosenträgern\": \"hosentrag\",\n  \"hosianna\": \"hosianna\",\n  \"hospiz\": \"hospiz\",\n  \"hospizgruppe\": \"hospizgrupp\",\n  \"hotel\": \"hotel\",\n  \"hoteltür\": \"hoteltur\",\n  \"hub\": \"hub\",\n  \"hüben\": \"hub\",\n  \"huber\": \"hub\",\n  \"hubertus\": \"hubertus\",\n  \"hubertusjüngern\": \"hubertusjung\",\n  \"hübsch\": \"hubsch\",\n  \"hübsche\": \"hubsch\",\n  \"hübschen\": \"hubsch\",\n  \"hübscher\": \"hubsch\",\n  \"hübsches\": \"hubsch\",\n  \"huckepack\": \"huckepack\",\n  \"huckige\": \"huckig\",\n  \"hudelkopf\": \"hudelkopf\",\n  \"hudelvölkchen\": \"hudelvolkch\",\n  \"huf\": \"huf\",\n  \"hufe\": \"huf\",\n  \"hufeisentreppe\": \"hufeisentrepp\",\n  \"hufen\": \"huf\",\n  \"hüfte\": \"huft\",\n  \"hüften\": \"huft\",\n  \"hügel\": \"hugel\",\n  \"hügelchen\": \"hugelch\",\n  \"hügeligen\": \"hugel\",\n  \"hügeliges\": \"hugel\",\n  \"hügeln\": \"hugeln\",\n  \"hügels\": \"hugel\",\n  \"huglieme\": \"hugliem\",\n  \"huhn\": \"huhn\",\n  \"hühner\": \"huhn\",\n  \"hühnerjagd\": \"huhnerjagd\",\n  \"hühnern\": \"huhn\",\n  \"hühnerschwärmen\": \"huhnerschwarm\",\n  \"huhnes\": \"huhn\",\n  \"huhu\": \"huhu\",\n  \"hui\": \"hui\",\n  \"huld\": \"huld\",\n  \"huldigten\": \"huldigt\",\n  \"huldreich\": \"huldreich\",\n  \"huldreichen\": \"huldreich\",\n  \"hülfe\": \"hulf\",\n  \"hülflos\": \"hulflos\",\n  \"hülle\": \"hull\",\n  \"hüllen\": \"hull\",\n  \"hüllte\": \"hullt\",\n  \"hülse\": \"huls\",\n  \"humane\": \"human\",\n  \"humanen\": \"human\",\n  \"humanismus\": \"humanismus\",\n  \"humanistischen\": \"humanist\",\n  \"humanitäre\": \"humanitar\",\n  \"humanitären\": \"humanitar\",\n  \"hume\": \"hum\",\n  \"humes\": \"hum\",\n  \"humische\": \"humisch\",\n  \"humkoke\": \"humkok\",\n  \"hummeln\": \"hummeln\",\n  \"humor\": \"humor\",\n  \"humorlose\": \"humorlos\",\n  \"humus\": \"humus\",\n  \"hund\": \"hund\",\n  \"hunde\": \"hund\",\n  \"hunden\": \"hund\",\n  \"hunderl\": \"hunderl\",\n  \"hundert\": \"hundert\",\n  \"hundertdreiunddreissig\": \"hundertdreiunddreiss\",\n  \"hundertdreiunddreißig\": \"hundertdreiunddreiss\",\n  \"hunderte\": \"hundert\",\n  \"hunderten\": \"hundert\",\n  \"hunderterlei\": \"hunderterlei\",\n  \"hundertfach\": \"hundertfach\",\n  \"hundertfacher\": \"hundertfach\",\n  \"hundertfältig\": \"hundertfalt\",\n  \"hundertmal\": \"hundertmal\",\n  \"hundertsiebenunddreissig\": \"hundertsiebenunddreiss\",\n  \"hundertsiebenunddreißig\": \"hundertsiebenunddreiss\",\n  \"hundertsten\": \"hundert\",\n  \"hundertstimmigem\": \"hundertstimm\",\n  \"hunderttausend\": \"hunderttaus\",\n  \"hunderttausende\": \"hunderttaus\",\n  \"hundertundfünfzig\": \"hundertundfunfz\",\n  \"hundertvierundvierzig\": \"hundertvierundvierz\",\n  \"hundertvierzig\": \"hundertvierz\",\n  \"hundertzwanzig\": \"hundertzwanz\",\n  \"hundes\": \"hund\",\n  \"hundeseele\": \"hundeseel\",\n  \"hundl\": \"hundl\",\n  \"hündlein\": \"hundlein\",\n  \"hundsfott\": \"hundsfott\",\n  \"hundsseele\": \"hundsseel\",\n  \"hunger\": \"hung\",\n  \"hungerlohn\": \"hungerlohn\",\n  \"hungern\": \"hung\",\n  \"hungers\": \"hung\",\n  \"hungerte\": \"hungert\",\n  \"hungrig\": \"hungrig\",\n  \"hungrige\": \"hungrig\",\n  \"hungrigen\": \"hungrig\",\n  \"hungriger\": \"hungrig\",\n  \"hüpfende\": \"hupfend\",\n  \"hüpfenden\": \"hupfend\",\n  \"hüpfte\": \"hupft\",\n  \"hupften\": \"hupft\",\n  \"hüpften\": \"hupft\",\n  \"hupschi\": \"hupschi\",\n  \"hürde\": \"hurd\",\n  \"hürden\": \"hurd\",\n  \"hure\": \"hur\",\n  \"hurend\": \"hurend\",\n  \"hurerei\": \"hurerei\",\n  \"hurereien\": \"hurerei\",\n  \"hurra\": \"hurra\",\n  \"hurtig\": \"hurtig\",\n  \"husaren\": \"husar\",\n  \"husch\": \"husch\",\n  \"huschen\": \"husch\",\n  \"huschte\": \"huscht\",\n  \"huschten\": \"huscht\",\n  \"hüseyin\": \"huseyin\",\n  \"hüstelte\": \"hustelt\",\n  \"husten\": \"hust\",\n  \"hut\": \"hut\",\n  \"hüt\": \"hut\",\n  \"hütchen\": \"hutch\",\n  \"hute\": \"hut\",\n  \"hüte\": \"hut\",\n  \"hüten\": \"hut\",\n  \"hüter\": \"hut\",\n  \"hüterbub\": \"huterbub\",\n  \"hütet\": \"hutet\",\n  \"hütete\": \"hutet\",\n  \"hüteten\": \"hutet\",\n  \"hütl\": \"hutl\",\n  \"hütte\": \"hutt\",\n  \"hütten\": \"hutt\",\n  \"hüttenfest\": \"huttenf\",\n  \"huwiler\": \"huwil\",\n  \"hv\": \"hv\",\n  \"hyazinth\": \"hyazinth\",\n  \"hyazinthfarbe\": \"hyazinthfarb\",\n  \"hypochondrischen\": \"hypochondr\",\n  \"hypothekschulden\": \"hypothekschuld\",\n  \"hypothese\": \"hypothes\",\n  \"hypothesen\": \"hypothes\",\n  \"hypothetische\": \"hypothet\",\n  \"hysterisch\": \"hyster\",\n  \"i\": \"i\",\n  \"iang\": \"iang\",\n  \"ich\": \"ich\",\n  \"ichs\": \"ich\",\n  \"idea\": \"idea\",\n  \"ideal\": \"ideal\",\n  \"ideale\": \"ideal\",\n  \"idealisch\": \"ideal\",\n  \"idealischen\": \"ideal\",\n  \"idee\": \"ide\",\n  \"ideen\": \"ide\",\n  \"ideenkiste\": \"ideenkist\",\n  \"ideenulrich\": \"ideenulrich\",\n  \"identische\": \"ident\",\n  \"identität\": \"identitat\",\n  \"identitizierung\": \"identitizier\",\n  \"ideologisierung\": \"ideologisier\",\n  \"idion\": \"idion\",\n  \"idioten\": \"idiot\",\n  \"ieh\": \"ieh\",\n  \"ierte\": \"iert\",\n  \"igel\": \"igel\",\n  \"igelbürste\": \"igelburst\",\n  \"ignorieren\": \"ignori\",\n  \"ihd\": \"ihd\",\n  \"ihm\": \"ihm\",\n  \"ihn\": \"ihn\",\n  \"ihnen\": \"ihn\",\n  \"ihr\": \"ihr\",\n  \"ihre\": \"ihr\",\n  \"ihrem\": \"ihr\",\n  \"ihren\": \"ihr\",\n  \"ihrer\": \"ihr\",\n  \"ihres\": \"ihr\",\n  \"ihrethalben\": \"ihrethalb\",\n  \"ihretwegen\": \"ihretweg\",\n  \"ihrige\": \"ihrig\",\n  \"ihrigen\": \"ihrig\",\n  \"ihro\": \"ihro\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"ikea\": \"ikea\",\n  \"illa\": \"illa\",\n  \"ille\": \"ill\",\n  \"illegal\": \"illegal\",\n  \"illegalen\": \"illegal\",\n  \"illud\": \"illud\",\n  \"illumination\": \"illumination\",\n  \"illusion\": \"illusion\",\n  \"illusorisch\": \"illusor\",\n  \"im\": \"im\",\n  \"image\": \"imag\",\n  \"imago\": \"imago\",\n  \"imbiss\": \"imbiss\",\n  \"imgleichen\": \"imgleich\",\n  \"immanent\": \"immanent\",\n  \"immanuel\": \"immanuel\",\n  \"immaterielle\": \"immateriell\",\n  \"immateriellen\": \"immateriell\",\n  \"immenstand\": \"immenstand\",\n  \"immer\": \"imm\",\n  \"immerdar\": \"immerdar\",\n  \"immerfort\": \"immerfort\",\n  \"immergrünen\": \"immergrun\",\n  \"immerhin\": \"immerhin\",\n  \"immerwährend\": \"immerwahr\",\n  \"immerwährende\": \"immerwahr\",\n  \"immerwährendes\": \"immerwahr\",\n  \"immerzu\": \"immerzu\",\n  \"imogen\": \"imog\",\n  \"imperativ\": \"imperativ\",\n  \"imperative\": \"imperativ\",\n  \"imperativen\": \"imperativ\",\n  \"imperativs\": \"imperativs\",\n  \"impressum\": \"impressum\",\n  \"impulse\": \"impuls\",\n  \"imstande\": \"imstand\",\n  \"in\": \"in\",\n  \"inan\": \"inan\",\n  \"inbegriff\": \"inbegriff\",\n  \"inbesondere\": \"inbesond\",\n  \"inbrunst\": \"inbrun\",\n  \"inbrünstig\": \"inbrunst\",\n  \"indem\": \"ind\",\n  \"indes\": \"ind\",\n  \"indessen\": \"indess\",\n  \"indianer\": \"indian\",\n  \"indie\": \"indi\",\n  \"indien\": \"indi\",\n  \"indiennekleid\": \"indiennekleid\",\n  \"indierinnen\": \"indierinn\",\n  \"indifferent\": \"indifferent\",\n  \"indirekt\": \"indirekt\",\n  \"indischen\": \"indisch\",\n  \"indobritischen\": \"indobrit\",\n  \"indoles\": \"indol\",\n  \"indulgent\": \"indulgent\",\n  \"industrie\": \"industri\",\n  \"ineinander\": \"ineinand\",\n  \"ineinandergefahren\": \"ineinandergefahr\",\n  \"inernet\": \"inernet\",\n  \"infam\": \"infam\",\n  \"infanteriegewehr\": \"infanteriegewehr\",\n  \"infanteriekaserne\": \"infanteriekasern\",\n  \"inferiore\": \"inferior\",\n  \"inferiorität\": \"inferioritat\",\n  \"info\": \"info\",\n  \"infolge\": \"infolg\",\n  \"infolgedessen\": \"infolgedess\",\n  \"information\": \"information\",\n  \"informationen\": \"information\",\n  \"informationsbeauftragte\": \"informationsbeauftragt\",\n  \"informieren\": \"informi\",\n  \"informiert\": \"informiert\",\n  \"infos\": \"infos\",\n  \"ingenio\": \"ingenio\",\n  \"ingrimm\": \"ingrimm\",\n  \"ingwer\": \"ingw\",\n  \"inhaber\": \"inhab\",\n  \"inhalt\": \"inhalt\",\n  \"inhalte\": \"inhalt\",\n  \"inhaltlich\": \"inhalt\",\n  \"inhalts\": \"inhalt\",\n  \"inhaltsverzeichnissen\": \"inhaltsverzeichnis\",\n  \"initiative\": \"initiativ\",\n  \"inland\": \"inland\",\n  \"inländischen\": \"inland\",\n  \"inlandsarbeit\": \"inlandsarbeit\",\n  \"inmitten\": \"inmitt\",\n  \"inne\": \"inn\",\n  \"innegewordene\": \"innegeword\",\n  \"innegewordenen\": \"innegeword\",\n  \"innehalten\": \"innehalt\",\n  \"innehat\": \"innehat\",\n  \"innehielt\": \"innehielt\",\n  \"innehielten\": \"innehielt\",\n  \"innen\": \"inn\",\n  \"innere\": \"inn\",\n  \"innerem\": \"inn\",\n  \"inneren\": \"inn\",\n  \"innerer\": \"inn\",\n  \"inneres\": \"inn\",\n  \"innerhalb\": \"innerhalb\",\n  \"innerlich\": \"inn\",\n  \"innerliche\": \"inn\",\n  \"innerlichen\": \"inn\",\n  \"innerlicher\": \"inn\",\n  \"innerlichere\": \"inn\",\n  \"innerlicheres\": \"inn\",\n  \"innerliches\": \"inn\",\n  \"innern\": \"inn\",\n  \"innerste\": \"innerst\",\n  \"innerstem\": \"innerst\",\n  \"innersten\": \"innerst\",\n  \"innerster\": \"innerst\",\n  \"innerstes\": \"innerst\",\n  \"innewerden\": \"innewerd\",\n  \"innewerdend\": \"innewerd\",\n  \"innewerdende\": \"innewerd\",\n  \"innewerdens\": \"innewerd\",\n  \"innewerdungen\": \"innewerd\",\n  \"innewohnen\": \"innewohn\",\n  \"innewohnend\": \"innewohn\",\n  \"innewohnt\": \"innewohnt\",\n  \"innewohnte\": \"innewohnt\",\n  \"innewurde\": \"innewurd\",\n  \"innezuwerden\": \"innezuwerd\",\n  \"innig\": \"innig\",\n  \"innige\": \"innig\",\n  \"innigen\": \"innig\",\n  \"inniger\": \"innig\",\n  \"innigere\": \"innig\",\n  \"innigkeit\": \"innig\",\n  \"inniglich\": \"innig\",\n  \"innigsten\": \"innig\",\n  \"inningst\": \"inning\",\n  \"innre\": \"innr\",\n  \"ins\": \"ins\",\n  \"insbesondere\": \"insbesond\",\n  \"insbesondereeine\": \"insbesondereein\",\n  \"insbesonders\": \"insbesond\",\n  \"inschrift\": \"inschrift\",\n  \"insekt\": \"insekt\",\n  \"insekten\": \"insekt\",\n  \"insektenbefall\": \"insektenbefall\",\n  \"insel\": \"insel\",\n  \"inselgruppe\": \"inselgrupp\",\n  \"inseln\": \"inseln\",\n  \"inseratenkampagne\": \"inseratenkampagn\",\n  \"inservit\": \"inservit\",\n  \"insgeheim\": \"insgeheim\",\n  \"insgesamt\": \"insgesamt\",\n  \"insitam\": \"insitam\",\n  \"insofern\": \"insof\",\n  \"insonderheit\": \"insond\",\n  \"insonderlich\": \"insond\",\n  \"insoweit\": \"insoweit\",\n  \"inspiration\": \"inspiration\",\n  \"instant\": \"instant\",\n  \"instinkt\": \"instinkt\",\n  \"instinkte\": \"instinkt\",\n  \"instinkten\": \"instinkt\",\n  \"instinktiv\": \"instinktiv\",\n  \"institut\": \"institut\",\n  \"institution\": \"institution\",\n  \"institutionen\": \"institution\",\n  \"instituts\": \"institut\",\n  \"instrument\": \"instrument\",\n  \"instrumente\": \"instrument\",\n  \"instrumenten\": \"instrument\",\n  \"inszenierte\": \"inszeniert\",\n  \"integration\": \"integration\",\n  \"intellecta\": \"intellecta\",\n  \"intellectuales\": \"intellectual\",\n  \"intellektuell\": \"intellektuell\",\n  \"intellektuelle\": \"intellektuell\",\n  \"intellektuellem\": \"intellektuell\",\n  \"intellektuellen\": \"intellektuell\",\n  \"intellektuelles\": \"intellektuell\",\n  \"intelligent\": \"intelligent\",\n  \"intelligente\": \"intelligent\",\n  \"intelligenz\": \"intelligenz\",\n  \"intelligenzen\": \"intelligenz\",\n  \"intelligibele\": \"intelligibel\",\n  \"intelligibelen\": \"intelligibel\",\n  \"intendant\": \"intendant\",\n  \"intendanten\": \"intendant\",\n  \"intensivität\": \"intensivitat\",\n  \"inter\": \"int\",\n  \"interessant\": \"interessant\",\n  \"interessante\": \"interessant\",\n  \"interessanten\": \"interessant\",\n  \"interessanter\": \"interessant\",\n  \"interessanterweise\": \"interessanterweis\",\n  \"interessantes\": \"interessant\",\n  \"interesse\": \"interess\",\n  \"interessen\": \"interess\",\n  \"interessenvertretung\": \"interessenvertret\",\n  \"interesses\": \"interess\",\n  \"interessieren\": \"interessi\",\n  \"interessiert\": \"interessiert\",\n  \"interessierte\": \"interessiert\",\n  \"interessierten\": \"interessiert\",\n  \"interesssant\": \"interesssant\",\n  \"interiori\": \"interiori\",\n  \"interius\": \"interius\",\n  \"intermezzo\": \"intermezzo\",\n  \"international\": \"international\",\n  \"internationale\": \"international\",\n  \"internationalen\": \"international\",\n  \"internes\": \"intern\",\n  \"internet\": \"internet\",\n  \"internetdie\": \"internetdi\",\n  \"interneteine\": \"internetein\",\n  \"internetseiten\": \"internetseit\",\n  \"internetsurfenam\": \"internetsurfenam\",\n  \"interpretation\": \"interpretation\",\n  \"interpretieren\": \"interpreti\",\n  \"interview\": \"interview\",\n  \"intimeren\": \"intim\",\n  \"inwendig\": \"inwend\",\n  \"inwendige\": \"inwend\",\n  \"inwendigem\": \"inwend\",\n  \"inwendigen\": \"inwend\",\n  \"inwendiger\": \"inwend\",\n  \"inwendigere\": \"inwend\",\n  \"inwendigerem\": \"inwend\",\n  \"inwendigeren\": \"inwend\",\n  \"inwendigeres\": \"inwend\",\n  \"inwendiges\": \"inwend\",\n  \"inwendigst\": \"inwend\",\n  \"inwendigste\": \"inwend\",\n  \"inwendigsten\": \"inwend\",\n  \"inwendigster\": \"inwend\",\n  \"inwieweit\": \"inwieweit\",\n  \"inzichten\": \"inzicht\",\n  \"inzwischen\": \"inzwisch\",\n  \"ipso\": \"ipso\",\n  \"irad\": \"irad\",\n  \"irard\": \"irard\",\n  \"irdene\": \"ird\",\n  \"irdenen\": \"ird\",\n  \"irdisch\": \"irdisch\",\n  \"irdische\": \"irdisch\",\n  \"irdischen\": \"irdisch\",\n  \"irdisches\": \"irdisch\",\n  \"irdisdien\": \"irdisdi\",\n  \"irgend\": \"irgend\",\n  \"irgendein\": \"irgendein\",\n  \"irgendeine\": \"irgendein\",\n  \"irgendeinem\": \"irgendein\",\n  \"irgendeinen\": \"irgendein\",\n  \"irgendeiner\": \"irgendein\",\n  \"irgendeines\": \"irgendein\",\n  \"irgendetwas\": \"irgendetwas\",\n  \"irgendwann\": \"irgendwann\",\n  \"irgendwelche\": \"irgendwelch\",\n  \"irgendwelchen\": \"irgendwelch\",\n  \"irgendwelches\": \"irgendwelch\",\n  \"irgendwie\": \"irgendwi\",\n  \"irgendwo\": \"irgendwo\",\n  \"irland\": \"irland\",\n  \"irländischen\": \"irland\",\n  \"irn\": \"irn\",\n  \"ironie\": \"ironi\",\n  \"ironisch\": \"iron\",\n  \"ironischen\": \"iron\",\n  \"irre\": \"irr\",\n  \"irreführendem\": \"irrefuhr\",\n  \"irregeführt\": \"irregefuhrt\",\n  \"irregeführte\": \"irregefuhrt\",\n  \"irreleitend\": \"irreleit\",\n  \"irren\": \"irr\",\n  \"irrenden\": \"irrend\",\n  \"irret\": \"irret\",\n  \"irrgänger\": \"irrgang\",\n  \"irrlehre\": \"irrlehr\",\n  \"irrlehren\": \"irrlehr\",\n  \"irrlichter\": \"irrlicht\",\n  \"irrlichterfischchen\": \"irrlichterfischch\",\n  \"irrsinnig\": \"irrsinn\",\n  \"irrt\": \"irrt\",\n  \"irrte\": \"irrt\",\n  \"irrten\": \"irrt\",\n  \"irrtum\": \"irrtum\",\n  \"irrtümer\": \"irrtum\",\n  \"irrtümern\": \"irrtum\",\n  \"irrwegen\": \"irrweg\",\n  \"is\": \"is\",\n  \"isabelle\": \"isabell\",\n  \"isabellen\": \"isabell\",\n  \"isabellengespann\": \"isabellengespann\",\n  \"isabellenpferden\": \"isabellenpferd\",\n  \"isgard\": \"isgard\",\n  \"isherwood\": \"isherwood\",\n  \"ismail\": \"ismail\",\n  \"isolation\": \"isolation\",\n  \"isolationistische\": \"isolationist\",\n  \"isoliert\": \"isoliert\",\n  \"israel\": \"israel\",\n  \"israeliten\": \"israelit\",\n  \"israelitische\": \"israelit\",\n  \"israelitischen\": \"israelit\",\n  \"israels\": \"israel\",\n  \"iss\": \"iss\",\n  \"issest\": \"iss\",\n  \"isset\": \"isset\",\n  \"isst\": \"isst\",\n  \"ißt\": \"isst\",\n  \"ist\": \"ist\",\n  \"istanbul\": \"istanbul\",\n  \"istanbuler\": \"istanbul\",\n  \"ists\": \"ist\",\n  \"italian\": \"italian\",\n  \"italien\": \"itali\",\n  \"italiener\": \"itali\",\n  \"italienisch\": \"italien\",\n  \"italienische\": \"italien\",\n  \"italienischen\": \"italien\",\n  \"italienisches\": \"italien\",\n  \"item\": \"item\",\n  \"ithamar\": \"ithamar\",\n  \"iv\": \"iv\",\n  \"ix\": \"ix\",\n  \"izmir\": \"izmir\",\n  \"j\": \"j\",\n  \"ja\": \"ja\",\n  \"jaaa\": \"jaaa\",\n  \"jabal\": \"jabal\",\n  \"jaccoud\": \"jaccoud\",\n  \"jach\": \"jach\",\n  \"jache\": \"jach\",\n  \"jachen\": \"jach\",\n  \"jachenau\": \"jachenau\",\n  \"jachenauer\": \"jachenau\",\n  \"jacher\": \"jach\",\n  \"jachin\": \"jachin\",\n  \"jachsten\": \"jach\",\n  \"jacke\": \"jack\",\n  \"jacobi\": \"jacobi\",\n  \"jadwiga\": \"jadwiga\",\n  \"jaels\": \"jael\",\n  \"jagd\": \"jagd\",\n  \"jagdart\": \"jagdart\",\n  \"jagdaufseher\": \"jagdaufseh\",\n  \"jagdausflügen\": \"jagdausflug\",\n  \"jagdausrüstung\": \"jagdausrust\",\n  \"jagdführer\": \"jagdfuhr\",\n  \"jagdgast\": \"jagdgast\",\n  \"jagdgebieten\": \"jagdgebiet\",\n  \"jagdgehilf\": \"jagdgehilf\",\n  \"jagdgehilfe\": \"jagdgehilf\",\n  \"jagdgehilfen\": \"jagdgehilf\",\n  \"jagdgeräte\": \"jagdgerat\",\n  \"jagdgeschichten\": \"jagdgeschicht\",\n  \"jagdgrenze\": \"jagdgrenz\",\n  \"jagdgrund\": \"jagdgrund\",\n  \"jagdherr\": \"jagdherr\",\n  \"jagdhütte\": \"jagdhutt\",\n  \"jagdkarte\": \"jagdkart\",\n  \"jagdtrophäen\": \"jagdtropha\",\n  \"jagdwagen\": \"jagdwag\",\n  \"jagen\": \"jag\",\n  \"jagend\": \"jagend\",\n  \"jagender\": \"jagend\",\n  \"jager\": \"jag\",\n  \"jäger\": \"jag\",\n  \"jägerarbeit\": \"jagerarbeit\",\n  \"jägerei\": \"jagerei\",\n  \"jägerheim\": \"jagerheim\",\n  \"jagerischen\": \"jager\",\n  \"jägerlatein\": \"jagerlatein\",\n  \"jägerleben\": \"jagerleb\",\n  \"jägermässigem\": \"jagermass\",\n  \"jagern\": \"jag\",\n  \"jägern\": \"jag\",\n  \"jägerohren\": \"jagerohr\",\n  \"jägerruhe\": \"jagerruh\",\n  \"jägers\": \"jag\",\n  \"jägersleute\": \"jagersleut\",\n  \"jägersmann\": \"jagersmann\",\n  \"jägersmanne\": \"jagersmann\",\n  \"jägersprache\": \"jagersprach\",\n  \"jägerssohn\": \"jagerssohn\",\n  \"jaget\": \"jaget\",\n  \"jagt\": \"jagt\",\n  \"jagte\": \"jagt\",\n  \"jah\": \"jah\",\n  \"jäh\": \"jah\",\n  \"jähen\": \"jah\",\n  \"jähes\": \"jah\",\n  \"jählings\": \"jahling\",\n  \"jahr\": \"jahr\",\n  \"jahraus\": \"jahraus\",\n  \"jährchen\": \"jahrch\",\n  \"jahre\": \"jahr\",\n  \"jahrein\": \"jahrein\",\n  \"jahrelang\": \"jahrelang\",\n  \"jahren\": \"jahr\",\n  \"jahres\": \"jahr\",\n  \"jahresbericht\": \"jahresbericht\",\n  \"jahresrechnung\": \"jahresrechn\",\n  \"jahresrente\": \"jahresrent\",\n  \"jahrestagung\": \"jahrestag\",\n  \"jahreszahlen\": \"jahreszahl\",\n  \"jahreszeit\": \"jahreszeit\",\n  \"jahrhundert\": \"jahrhundert\",\n  \"jahrhunderte\": \"jahrhundert\",\n  \"jahrhunderten\": \"jahrhundert\",\n  \"jahrhunderts\": \"jahrhundert\",\n  \"jährige\": \"jahrig\",\n  \"jährigen\": \"jahrig\",\n  \"jahrl\": \"jahrl\",\n  \"jährlich\": \"jahrlich\",\n  \"jährliche\": \"jahrlich\",\n  \"jahrln\": \"jahrln\",\n  \"jahrmarkt\": \"jahrmarkt\",\n  \"jahrmärkte\": \"jahrmarkt\",\n  \"jahrs\": \"jahr\",\n  \"jahrshoffnungen\": \"jahrshoffn\",\n  \"jahrszeit\": \"jahrszeit\",\n  \"jahrtausendwende\": \"jahrtausendw\",\n  \"jahrzahlen\": \"jahrzahl\",\n  \"jahrzehnten\": \"jahrzehnt\",\n  \"jähsten\": \"jahst\",\n  \"jähzorn\": \"jahzorn\",\n  \"jähzornig\": \"jahzorn\",\n  \"jähzornige\": \"jahzorn\",\n  \"jähzornigen\": \"jahzorn\",\n  \"jähzorniger\": \"jahzorn\",\n  \"jaja\": \"jaja\",\n  \"jakob\": \"jakob\",\n  \"jakobiner\": \"jakobin\",\n  \"jakobs\": \"jakob\",\n  \"jakobsbrunnen\": \"jakobsbrunn\",\n  \"jamin\": \"jamin\",\n  \"jammer\": \"jamm\",\n  \"jammerbild\": \"jammerbild\",\n  \"jammerfalten\": \"jammerfalt\",\n  \"jammergeschrei\": \"jammergeschrei\",\n  \"jämmerlich\": \"jamm\",\n  \"jämmerlichem\": \"jamm\",\n  \"jämmerlichen\": \"jamm\",\n  \"jämmerlicher\": \"jamm\",\n  \"jämmerliches\": \"jamm\",\n  \"jämmerlichste\": \"jamm\",\n  \"jammern\": \"jamm\",\n  \"jammernd\": \"jammernd\",\n  \"jammerpipps\": \"jammerpipps\",\n  \"jammerte\": \"jammert\",\n  \"januar\": \"januar\",\n  \"janzer\": \"janz\",\n  \"japanischer\": \"japan\",\n  \"japheth\": \"japheth\",\n  \"jappender\": \"jappend\",\n  \"jared\": \"jared\",\n  \"jareds\": \"jared\",\n  \"jaspis\": \"jaspis\",\n  \"jätete\": \"jatet\",\n  \"jatz\": \"jatz\",\n  \"jauchzen\": \"jauchz\",\n  \"jauchzend\": \"jauchzend\",\n  \"jauchzende\": \"jauchzend\",\n  \"jauchzer\": \"jauchz\",\n  \"jauchzet\": \"jauchzet\",\n  \"jaulte\": \"jault\",\n  \"javan\": \"javan\",\n  \"jawohl\": \"jawohl\",\n  \"je\": \"je\",\n  \"jean\": \"jean\",\n  \"jebusiter\": \"jebusit\",\n  \"jebusiters\": \"jebusit\",\n  \"jede\": \"jed\",\n  \"jedem\": \"jed\",\n  \"jeden\": \"jed\",\n  \"jedenfalls\": \"jedenfall\",\n  \"jeder\": \"jed\",\n  \"jedermann\": \"jedermann\",\n  \"jederzeit\": \"jederzeit\",\n  \"jedes\": \"jed\",\n  \"jedesmal\": \"jedesmal\",\n  \"jedoch\": \"jedoch\",\n  \"jedsmal\": \"jedsmal\",\n  \"jedweden\": \"jedwed\",\n  \"jedweder\": \"jedwed\",\n  \"jefreut\": \"jefreut\",\n  \"jegliche\": \"jeglich\",\n  \"jeglichem\": \"jeglich\",\n  \"jeglichen\": \"jeglich\",\n  \"jeglicher\": \"jeglich\",\n  \"jegliches\": \"jeglich\",\n  \"jeher\": \"jeh\",\n  \"jehorsamst\": \"jehorsam\",\n  \"jehova\": \"jehova\",\n  \"jehovah\": \"jehovah\",\n  \"jehovahs\": \"jehovah\",\n  \"jehovas\": \"jehovas\",\n  \"jehovih\": \"jehovih\",\n  \"jehudah\": \"jehudah\",\n  \"jehudahs\": \"jehudah\",\n  \"jehus\": \"jehus\",\n  \"jekühlte\": \"jekuhlt\",\n  \"jelek\": \"jelek\",\n  \"jemals\": \"jemal\",\n  \"jemand\": \"jemand\",\n  \"jemandem\": \"jemand\",\n  \"jemanden\": \"jemand\",\n  \"jemandes\": \"jemand\",\n  \"jemands\": \"jemand\",\n  \"jemuel\": \"jemuel\",\n  \"jene\": \"jen\",\n  \"jenem\": \"jen\",\n  \"jenen\": \"jen\",\n  \"jener\": \"jen\",\n  \"jenes\": \"jen\",\n  \"jenseitigen\": \"jenseit\",\n  \"jenseits\": \"jenseit\",\n  \"jereist\": \"jereist\",\n  \"jerem\": \"jer\",\n  \"jeremias\": \"jeremias\",\n  \"jerusalem\": \"jerusal\",\n  \"jerusalems\": \"jerusalem\",\n  \"jes\": \"jes\",\n  \"jesaja\": \"jesaja\",\n  \"jesajas\": \"jesajas\",\n  \"jesses\": \"jess\",\n  \"jesu\": \"jesu\",\n  \"jesum\": \"jesum\",\n  \"jesus\": \"jesus\",\n  \"jethro\": \"jethro\",\n  \"jethros\": \"jethros\",\n  \"jetzigen\": \"jetzig\",\n  \"jetziges\": \"jetzig\",\n  \"jetzo\": \"jetzo\",\n  \"jetzt\": \"jetzt\",\n  \"jeweilige\": \"jeweil\",\n  \"jeweiligen\": \"jeweil\",\n  \"jeweils\": \"jeweil\",\n  \"jewish\": \"jewish\",\n  \"jewriav\": \"jewriav\",\n  \"jez\": \"jez\",\n  \"jezuweilen\": \"jezuweil\",\n  \"jhdt\": \"jhdt\",\n  \"jim\": \"jim\",\n  \"jisaschar\": \"jisaschar\",\n  \"jischak\": \"jischak\",\n  \"jischaks\": \"jischak\",\n  \"jischmael\": \"jischmael\",\n  \"jischmaels\": \"jischmael\",\n  \"jizhar\": \"jizhar\",\n  \"jizhars\": \"jizhar\",\n  \"jletscherhafter\": \"jletscherhaft\",\n  \"jobbt\": \"jobbt\",\n  \"jobbte\": \"jobbt\",\n  \"jobs\": \"job\",\n  \"jobst\": \"jobst\",\n  \"jobsten\": \"jobst\",\n  \"jobstens\": \"jobst\",\n  \"joch\": \"joch\",\n  \"jochebed\": \"jochebed\",\n  \"joches\": \"joch\",\n  \"jochs\": \"joch\",\n  \"jodelläufen\": \"jodellauf\",\n  \"jodler\": \"jodl\",\n  \"joel\": \"joel\",\n  \"joh\": \"joh\",\n  \"johann\": \"johann\",\n  \"johannes\": \"johann\",\n  \"johannis\": \"johannis\",\n  \"johlend\": \"johlend\",\n  \"john\": \"john\",\n  \"jon\": \"jon\",\n  \"jona\": \"jona\",\n  \"jonas\": \"jonas\",\n  \"jonathan\": \"jonathan\",\n  \"jöppchens\": \"joppch\",\n  \"joppe\": \"jopp\",\n  \"joppentasche\": \"joppentasch\",\n  \"jordan\": \"jordan\",\n  \"jordans\": \"jordan\",\n  \"jörg\": \"jorg\",\n  \"jos\": \"jos\",\n  \"josef\": \"josef\",\n  \"joseph\": \"joseph\",\n  \"josephs\": \"joseph\",\n  \"josias\": \"josias\",\n  \"josua\": \"josua\",\n  \"josuas\": \"josuas\",\n  \"jota\": \"jota\",\n  \"journalisten\": \"journalist\",\n  \"jreuliche\": \"jreulich\",\n  \"juan\": \"juan\",\n  \"jubal\": \"jubal\",\n  \"jubel\": \"jubel\",\n  \"jubelfeier\": \"jubelfei\",\n  \"jubelfreude\": \"jubelfreud\",\n  \"jubelnd\": \"jubelnd\",\n  \"jubelnder\": \"jubelnd\",\n  \"jubelsang\": \"jubelsang\",\n  \"jubelschrei\": \"jubelschrei\",\n  \"jubelt\": \"jubelt\",\n  \"jubelten\": \"jubelt\",\n  \"jubilieren\": \"jubili\",\n  \"jubilierende\": \"jubilier\",\n  \"juble\": \"jubl\",\n  \"juchezt\": \"juchezt\",\n  \"juchheen\": \"juchhe\",\n  \"juchhei\": \"juchhei\",\n  \"juchzend\": \"juchzend\",\n  \"jückt\": \"juckt\",\n  \"judah\": \"judah\",\n  \"judas\": \"judas\",\n  \"jude\": \"jud\",\n  \"juden\": \"jud\",\n  \"judentum\": \"judentum\",\n  \"jüdisch\": \"judisch\",\n  \"jüdische\": \"judisch\",\n  \"jüdischen\": \"judisch\",\n  \"jüdischer\": \"judisch\",\n  \"jüdisches\": \"judisch\",\n  \"judith\": \"judith\",\n  \"judithsie\": \"judithsi\",\n  \"jugend\": \"jugend\",\n  \"jugendarbeit\": \"jugendarbeit\",\n  \"jugendgarten\": \"jugendgart\",\n  \"jugendgespielen\": \"jugendgespiel\",\n  \"jugendheimat\": \"jugendheimat\",\n  \"jugendliche\": \"jugend\",\n  \"jugendlichen\": \"jugend\",\n  \"jugendlicher\": \"jugend\",\n  \"jugendlichkeit\": \"jugend\",\n  \"jugendschutzmassnahmen\": \"jugendschutzmassnahm\",\n  \"jugendweihe\": \"jugendweih\",\n  \"jugendzeit\": \"jugendzeit\",\n  \"juju\": \"juju\",\n  \"juli\": \"juli\",\n  \"julia\": \"julia\",\n  \"julie\": \"juli\",\n  \"julimonat\": \"julimonat\",\n  \"julisonne\": \"julisonn\",\n  \"julitag\": \"julitag\",\n  \"julius\": \"julius\",\n  \"juliusstrasse\": \"juliusstrass\",\n  \"juliusstraße\": \"juliusstrass\",\n  \"jumoeidev\": \"jumoeidev\",\n  \"jung\": \"jung\",\n  \"junge\": \"jung\",\n  \"jungem\": \"jung\",\n  \"jungen\": \"jung\",\n  \"jungeninternat\": \"jungeninternat\",\n  \"junger\": \"jung\",\n  \"jünger\": \"jung\",\n  \"jüngere\": \"jung\",\n  \"jüngern\": \"jung\",\n  \"junges\": \"jung\",\n  \"jungfer\": \"jungf\",\n  \"jungfern\": \"jungf\",\n  \"jungfilmer\": \"jungfilm\",\n  \"jungfrau\": \"jungfrau\",\n  \"jungfrauen\": \"jungfrau\",\n  \"jungfrauenalters\": \"jungfrauenalt\",\n  \"jungfräulein\": \"jungfraulein\",\n  \"jungfrauschaft\": \"jungfrauschaft\",\n  \"junggesellen\": \"junggesell\",\n  \"jungholz\": \"jungholz\",\n  \"jüngling\": \"jungling\",\n  \"jünglinge\": \"jungling\",\n  \"jünglings\": \"jungling\",\n  \"jünglingsalter\": \"junglingsalt\",\n  \"jüngste\": \"jung\",\n  \"jüngsten\": \"jung\",\n  \"jüngster\": \"jung\",\n  \"jungunternehmer\": \"jungunternehm\",\n  \"jungweibe\": \"jungweib\",\n  \"juni\": \"juni\",\n  \"junker\": \"junk\",\n  \"jüppe\": \"jupp\",\n  \"jürgen\": \"jurg\",\n  \"juristen\": \"jurist\",\n  \"juristische\": \"jurist\",\n  \"juristischen\": \"jurist\",\n  \"just\": \"just\",\n  \"juvenes\": \"juv\",\n  \"k\": \"k\",\n  \"kabine\": \"kabin\",\n  \"kabylen\": \"kabyl\",\n  \"kachelofen\": \"kachelof\",\n  \"käfer\": \"kaf\",\n  \"käferchen\": \"kaferch\",\n  \"käferherzens\": \"kaferherz\",\n  \"käferlein\": \"kaferlein\",\n  \"käfermann\": \"kafermann\",\n  \"käfermatz\": \"kafermatz\",\n  \"käfern\": \"kaf\",\n  \"käfertierchen\": \"kafertierch\",\n  \"kaffee\": \"kaffe\",\n  \"kaffeegesellschaften\": \"kaffeegesellschaft\",\n  \"kaffeehaus\": \"kaffeehaus\",\n  \"kaffeehauses\": \"kaffeehaus\",\n  \"kaffeekanne\": \"kaffeekann\",\n  \"kaffeekannen\": \"kaffeekann\",\n  \"kaffeeklatsch\": \"kaffeeklatsch\",\n  \"kaffeelöffelchen\": \"kaffeeloffelch\",\n  \"kaffeetasse\": \"kaffeetass\",\n  \"käfig\": \"kafig\",\n  \"kafka\": \"kafka\",\n  \"kahl\": \"kahl\",\n  \"kahle\": \"kahl\",\n  \"kahlen\": \"kahl\",\n  \"kahlköpfiger\": \"kahlkopf\",\n  \"kahn\": \"kahn\",\n  \"kähnchens\": \"kahnch\",\n  \"kahne\": \"kahn\",\n  \"kai\": \"kai\",\n  \"kain\": \"kain\",\n  \"kainiten\": \"kainit\",\n  \"kains\": \"kain\",\n  \"kaiser\": \"kais\",\n  \"kaiserlichen\": \"kais\",\n  \"kaiserreich\": \"kaiserreich\",\n  \"kaiserstadt\": \"kaiserstadt\",\n  \"kakan\": \"kakan\",\n  \"kakaobüchse\": \"kakaobuchs\",\n  \"kalaschnikows\": \"kalaschnikows\",\n  \"kalb\": \"kalb\",\n  \"kalben\": \"kalb\",\n  \"kälbern\": \"kalb\",\n  \"kälberstücke\": \"kalberstuck\",\n  \"kalbes\": \"kalb\",\n  \"kalender\": \"kalend\",\n  \"kalifornien\": \"kaliforni\",\n  \"kalk\": \"kalk\",\n  \"kalkerde\": \"kalkerd\",\n  \"kalmus\": \"kalmus\",\n  \"kalt\": \"kalt\",\n  \"kaltblütig\": \"kaltblut\",\n  \"kalte\": \"kalt\",\n  \"kälte\": \"kalt\",\n  \"kalten\": \"kalt\",\n  \"kaltenkellerschlag\": \"kaltenkellerschlag\",\n  \"kalter\": \"kalt\",\n  \"kälter\": \"kalt\",\n  \"kaltes\": \"kalt\",\n  \"kam\": \"kam\",\n  \"käm\": \"kam\",\n  \"kämbel\": \"kambel\",\n  \"käme\": \"kam\",\n  \"kamel\": \"kamel\",\n  \"kamele\": \"kamel\",\n  \"kamelen\": \"kamel\",\n  \"kamelhaaren\": \"kamelhaar\",\n  \"kamen\": \"kam\",\n  \"kämen\": \"kam\",\n  \"kameraden\": \"kamerad\",\n  \"kameraderie\": \"kameraderi\",\n  \"kameradinnen\": \"kameradinn\",\n  \"kamet\": \"kamet\",\n  \"kaminer\": \"kamin\",\n  \"kaminfeger\": \"kaminfeg\",\n  \"kamins\": \"kamin\",\n  \"kamm\": \"kamm\",\n  \"kämma\": \"kamma\",\n  \"kammacher\": \"kammach\",\n  \"kammachergeschäft\": \"kammachergeschaft\",\n  \"kammachergeschäfts\": \"kammachergeschaft\",\n  \"kammachermeister\": \"kammachermeist\",\n  \"kämme\": \"kamm\",\n  \"kämmen\": \"kamm\",\n  \"kammer\": \"kamm\",\n  \"kammerbodens\": \"kammerbod\",\n  \"kämmerchen\": \"kammerch\",\n  \"kammerdiener\": \"kammerdi\",\n  \"kammerfrau\": \"kammerfrau\",\n  \"kammerjungfer\": \"kammerjungf\",\n  \"kammern\": \"kamm\",\n  \"kämmet\": \"kammet\",\n  \"kammfabrikchen\": \"kammfabrikch\",\n  \"kammgräsern\": \"kammgras\",\n  \"kammhöhe\": \"kammhoh\",\n  \"kammmacher\": \"kammmach\",\n  \"kämmte\": \"kammt\",\n  \"kammwaren\": \"kammwar\",\n  \"kammwiesen\": \"kammwies\",\n  \"kampagne\": \"kampagn\",\n  \"kampf\": \"kampf\",\n  \"kampfe\": \"kampf\",\n  \"kämpfe\": \"kampf\",\n  \"kämpfen\": \"kampf\",\n  \"kämpfende\": \"kampfend\",\n  \"kämpfer\": \"kampf\",\n  \"kampfes\": \"kampf\",\n  \"kampflust\": \"kampflust\",\n  \"kampfplatz\": \"kampfplatz\",\n  \"kampfplatze\": \"kampfplatz\",\n  \"kämpft\": \"kampft\",\n  \"kampftages\": \"kampftag\",\n  \"kämpfte\": \"kampft\",\n  \"kampfwahlen\": \"kampfwahl\",\n  \"kampierten\": \"kampiert\",\n  \"kanaan\": \"kanaan\",\n  \"kanaaniter\": \"kanaanit\",\n  \"kanaanitin\": \"kanaanitin\",\n  \"kanaans\": \"kanaan\",\n  \"kanal\": \"kanal\",\n  \"kanäle\": \"kanal\",\n  \"kanapee\": \"kanape\",\n  \"kanarienkäficht\": \"kanarienkaficht\",\n  \"kandidat\": \"kandidat\",\n  \"kaninchen\": \"kaninch\",\n  \"kann\": \"kann\",\n  \"kännchen\": \"kannch\",\n  \"kanne\": \"kann\",\n  \"kannegiesser\": \"kannegiess\",\n  \"kannegiesserin\": \"kannegiesserin\",\n  \"kannegiessern\": \"kannegiess\",\n  \"kannen\": \"kann\",\n  \"kannst\": \"kann\",\n  \"kannt\": \"kannt\",\n  \"kannte\": \"kannt\",\n  \"kannten\": \"kannt\",\n  \"kanone\": \"kanon\",\n  \"kanonenkügelchen\": \"kanonenkugelch\",\n  \"kanonenkugeln\": \"kanonenkugeln\",\n  \"kanonenlauf\": \"kanonenlauf\",\n  \"kanonenmündung\": \"kanonenmund\",\n  \"kanonenrohres\": \"kanonenrohr\",\n  \"kanonenwischer\": \"kanonenw\",\n  \"kanonik\": \"kanon\",\n  \"kant\": \"kant\",\n  \"kante\": \"kant\",\n  \"kanten\": \"kant\",\n  \"kantine\": \"kantin\",\n  \"kantinenraumes\": \"kantinenraum\",\n  \"kanton\": \"kanton\",\n  \"kantonalkirche\": \"kantonalkirch\",\n  \"kantonalkirchen\": \"kantonalkirch\",\n  \"kantonalsouveränetät\": \"kantonalsouveranetat\",\n  \"kantone\": \"kanton\",\n  \"kantons\": \"kanton\",\n  \"kantonsrats\": \"kantonsrat\",\n  \"kanzel\": \"kanzel\",\n  \"kanzlei\": \"kanzlei\",\n  \"kanzleidirektor\": \"kanzleidirektor\",\n  \"kanzleien\": \"kanzlei\",\n  \"kap\": \"kap\",\n  \"kapital\": \"kapital\",\n  \"kapitale\": \"kapital\",\n  \"kapitalist\": \"kapitalist\",\n  \"kapitaltier\": \"kapitalti\",\n  \"kapitän\": \"kapitan\",\n  \"kapitel\": \"kapitel\",\n  \"kapiteln\": \"kapiteln\",\n  \"kapitels\": \"kapitel\",\n  \"kapitelsherren\": \"kapitelsherr\",\n  \"kappe\": \"kapp\",\n  \"kappenzipfel\": \"kappenzipfel\",\n  \"käpplein\": \"kapplein\",\n  \"kapriolen\": \"kapriol\",\n  \"kapsel\": \"kapsel\",\n  \"kaputt\": \"kaputt\",\n  \"kaputtgehen\": \"kaputtgeh\",\n  \"karaffe\": \"karaff\",\n  \"karaffen\": \"karaff\",\n  \"karbonarimantel\": \"karbonarimantel\",\n  \"kardinäle\": \"kardinal\",\n  \"karfunkelsteinen\": \"karfunkelstein\",\n  \"karikiere\": \"kariki\",\n  \"karl\": \"karl\",\n  \"karmi\": \"karmi\",\n  \"karneolfarbigen\": \"karneolfarb\",\n  \"karneval\": \"karneval\",\n  \"karpfen\": \"karpf\",\n  \"karpfenururgrosspapa\": \"karpfenururgrosspapa\",\n  \"karren\": \"karr\",\n  \"karriere\": \"karri\",\n  \"karten\": \"kart\",\n  \"kartenschlagen\": \"kartenschlag\",\n  \"kartoffel\": \"kartoffel\",\n  \"kartoffelacker\": \"kartoffelack\",\n  \"kartoffelbrei\": \"kartoffelbrei\",\n  \"kartoffelfeld\": \"kartoffelfeld\",\n  \"kartoffelgebirge\": \"kartoffelgebirg\",\n  \"kartoffeln\": \"kartoffeln\",\n  \"kartoffelsuppe\": \"kartoffelsupp\",\n  \"karton\": \"karton\",\n  \"kartons\": \"karton\",\n  \"karussell\": \"karussell\",\n  \"käse\": \"kas\",\n  \"käsen\": \"kas\",\n  \"kasia\": \"kasia\",\n  \"kaspar\": \"kaspar\",\n  \"kasparn\": \"kasparn\",\n  \"käsrinde\": \"kasrind\",\n  \"kassberger\": \"kassberg\",\n  \"kasse\": \"kass\",\n  \"kassieren\": \"kassi\",\n  \"kassierer\": \"kassi\",\n  \"kastanie\": \"kastani\",\n  \"kastanien\": \"kastani\",\n  \"kastanienbäume\": \"kastanienbaum\",\n  \"kastanienblättern\": \"kastanienblatt\",\n  \"kastanienritter\": \"kastanienritt\",\n  \"kästchen\": \"kastch\",\n  \"kästchens\": \"kastch\",\n  \"kasten\": \"kast\",\n  \"kastens\": \"kast\",\n  \"kasuale\": \"kasual\",\n  \"kasualverschiebung\": \"kasualverschieb\",\n  \"kasus\": \"kasus\",\n  \"kasweiss\": \"kasweiss\",\n  \"katalog\": \"katalog\",\n  \"kataskeuazein\": \"kataskeuazein\",\n  \"kataskeuazomen\": \"kataskeuazom\",\n  \"katastrophal\": \"katastrophal\",\n  \"katastrophe\": \"katastroph\",\n  \"katastrophen\": \"katastroph\",\n  \"katastropheneinsatz\": \"katastropheneinsatz\",\n  \"katechismus\": \"katechismus\",\n  \"kategorie\": \"kategori\",\n  \"kategorien\": \"kategori\",\n  \"kategorisch\": \"kategor\",\n  \"kategorische\": \"kategor\",\n  \"kategorischen\": \"kategor\",\n  \"kategorischer\": \"kategor\",\n  \"kater\": \"kat\",\n  \"katerliede\": \"katerlied\",\n  \"katern\": \"kat\",\n  \"katers\": \"kat\",\n  \"käthchen\": \"kathch\",\n  \"kathedrale\": \"kathedral\",\n  \"kathinka\": \"kathinka\",\n  \"katholik\": \"kathol\",\n  \"katholische\": \"kathol\",\n  \"katholischen\": \"kathol\",\n  \"katholischer\": \"kathol\",\n  \"kattun\": \"kattun\",\n  \"kattunhalstücher\": \"kattunhalstuch\",\n  \"katz\": \"katz\",\n  \"kätzchen\": \"katzch\",\n  \"kätzchens\": \"katzch\",\n  \"katze\": \"katz\",\n  \"katzen\": \"katz\",\n  \"katzenschmer\": \"katzenschm\",\n  \"katzensprung\": \"katzenspr\",\n  \"katzenwürde\": \"katzenwurd\",\n  \"kätzin\": \"katzin\",\n  \"kätzlein\": \"katzlein\",\n  \"katzmann\": \"katzmann\",\n  \"kauen\": \"kau\",\n  \"kauerte\": \"kauert\",\n  \"kauf\": \"kauf\",\n  \"kaufe\": \"kauf\",\n  \"kaufen\": \"kauf\",\n  \"käufer\": \"kauf\",\n  \"kauffahrer\": \"kauffahr\",\n  \"kaufherr\": \"kaufherr\",\n  \"kaufleute\": \"kaufleut\",\n  \"käuflich\": \"kauflich\",\n  \"kaufmann\": \"kaufmann\",\n  \"kaufmanns\": \"kaufmann\",\n  \"kaufmannschaft\": \"kaufmannschaft\",\n  \"kaufmannsnamen\": \"kaufmannsnam\",\n  \"kaufpreis\": \"kaufpreis\",\n  \"kaufpreises\": \"kaufpreis\",\n  \"kaufst\": \"kauf\",\n  \"kauft\": \"kauft\",\n  \"kaufte\": \"kauft\",\n  \"kaum\": \"kaum\",\n  \"kausalbegriffe\": \"kausalbegriff\",\n  \"kausalität\": \"kausalitat\",\n  \"kausalverbindung\": \"kausalverbind\",\n  \"kausalverhältnisse\": \"kausalverhaltnis\",\n  \"kaute\": \"kaut\",\n  \"kaution\": \"kaution\",\n  \"käuze\": \"kauz\",\n  \"käuzen\": \"kauz\",\n  \"käuzlein\": \"kauzlein\",\n  \"kavalier\": \"kavali\",\n  \"kavaliere\": \"kavali\",\n  \"kaweida\": \"kaweida\",\n  \"kdv\": \"kdv\",\n  \"keck\": \"keck\",\n  \"kecken\": \"keck\",\n  \"keckes\": \"keck\",\n  \"kedars\": \"kedar\",\n  \"kegel\": \"kegel\",\n  \"kegelbahn\": \"kegelbahn\",\n  \"kegelbahnen\": \"kegelbahn\",\n  \"kegelpartie\": \"kegelparti\",\n  \"kegelspiel\": \"kegelspiel\",\n  \"kehath\": \"kehath\",\n  \"kehaths\": \"kehath\",\n  \"kehats\": \"kehat\",\n  \"kehle\": \"kehl\",\n  \"kehlen\": \"kehl\",\n  \"kehr\": \"kehr\",\n  \"kehre\": \"kehr\",\n  \"kehren\": \"kehr\",\n  \"kehret\": \"kehret\",\n  \"kehricht\": \"kehricht\",\n  \"kehrseite\": \"kehrseit\",\n  \"kehrt\": \"kehrt\",\n  \"kehrte\": \"kehrt\",\n  \"kehrten\": \"kehrt\",\n  \"kei\": \"kei\",\n  \"keim\": \"keim\",\n  \"kein\": \"kein\",\n  \"keine\": \"kein\",\n  \"keinem\": \"kein\",\n  \"keinen\": \"kein\",\n  \"keiner\": \"kein\",\n  \"keinerlei\": \"keinerlei\",\n  \"keines\": \"kein\",\n  \"keinesfalls\": \"keinesfall\",\n  \"keineswegs\": \"keinesweg\",\n  \"keins\": \"kein\",\n  \"keksdose\": \"keksdos\",\n  \"kelch\": \"kelch\",\n  \"keller\": \"kell\",\n  \"kellereien\": \"kellerei\",\n  \"kellerhals\": \"kellerhal\",\n  \"kellerpflanzen\": \"kellerpflanz\",\n  \"kellner\": \"kelln\",\n  \"kellnerin\": \"kellnerin\",\n  \"kellnerinnen\": \"kellnerinn\",\n  \"kelter\": \"kelt\",\n  \"keltern\": \"kelt\",\n  \"kenan\": \"kenan\",\n  \"kenans\": \"kenan\",\n  \"kenn\": \"kenn\",\n  \"kennbar\": \"kennbar\",\n  \"kenne\": \"kenn\",\n  \"kennen\": \"kenn\",\n  \"kennenlernen\": \"kennenlern\",\n  \"kennens\": \"kenn\",\n  \"kennenzulernen\": \"kennenzulern\",\n  \"kenner\": \"kenn\",\n  \"kennerblicken\": \"kennerblick\",\n  \"kennest\": \"kenn\",\n  \"kennete\": \"kennet\",\n  \"kennst\": \"kenn\",\n  \"kennt\": \"kennt\",\n  \"kenntlich\": \"kenntlich\",\n  \"kenntnis\": \"kenntnis\",\n  \"kenntnisse\": \"kenntnis\",\n  \"kenntnissen\": \"kenntnis\",\n  \"kennzeichen\": \"kennzeich\",\n  \"kerbholz\": \"kerbholz\",\n  \"kerker\": \"kerk\",\n  \"kerkern\": \"kerk\",\n  \"kerl\": \"kerl\",\n  \"kerlchen\": \"kerlch\",\n  \"kerls\": \"kerl\",\n  \"kern\": \"kern\",\n  \"kernpunkt\": \"kernpunkt\",\n  \"kerstin\": \"kerstin\",\n  \"kerze\": \"kerz\",\n  \"kerzen\": \"kerz\",\n  \"kesselflicken\": \"kesselflick\",\n  \"kesselförmiges\": \"kesselform\",\n  \"kesseltal\": \"kesseltal\",\n  \"kesselvolk\": \"kesselvolk\",\n  \"kette\": \"kett\",\n  \"ketten\": \"kett\",\n  \"kettlein\": \"kettlein\",\n  \"ketzer\": \"ketz\",\n  \"ketzerei\": \"ketzerei\",\n  \"ketzereien\": \"ketzerei\",\n  \"ketzerische\": \"ketzer\",\n  \"ketzerischen\": \"ketzer\",\n  \"keuchend\": \"keuchend\",\n  \"keuchenden\": \"keuchend\",\n  \"keuchte\": \"keucht\",\n  \"keulenkörner\": \"keulenkorn\",\n  \"keuschheit\": \"keuschheit\",\n  \"kg\": \"kg\",\n  \"kichern\": \"kich\",\n  \"kids\": \"kid\",\n  \"kiel\": \"kiel\",\n  \"kielwasser\": \"kielwass\",\n  \"kienholzgefüllten\": \"kienholzgefullt\",\n  \"kiepenheuer\": \"kiepenheu\",\n  \"kiesel\": \"kiesel\",\n  \"kieseln\": \"kieseln\",\n  \"kieselstein\": \"kieselstein\",\n  \"kiesige\": \"kiesig\",\n  \"kieswege\": \"kiesweg\",\n  \"kikeriki\": \"kikeriki\",\n  \"kilo\": \"kilo\",\n  \"kilometer\": \"kilomet\",\n  \"kind\": \"kind\",\n  \"kindchen\": \"kindch\",\n  \"kinde\": \"kind\",\n  \"kinder\": \"kind\",\n  \"kinderaugen\": \"kinderaug\",\n  \"kinderchen\": \"kinderch\",\n  \"kinderfest\": \"kinderf\",\n  \"kindergärten\": \"kindergart\",\n  \"kinderjahren\": \"kinderjahr\",\n  \"kinderkehlen\": \"kinderkehl\",\n  \"kinderlein\": \"kinderlein\",\n  \"kinderlos\": \"kinderlos\",\n  \"kinderlosigkeit\": \"kinderlos\",\n  \"kindern\": \"kind\",\n  \"kinderschar\": \"kinderschar\",\n  \"kinderspiel\": \"kinderspiel\",\n  \"kinderstimmengelächter\": \"kinderstimmengelacht\",\n  \"kinderstube\": \"kinderstub\",\n  \"kinderstühlchen\": \"kinderstuhlch\",\n  \"kindertaufen\": \"kindertauf\",\n  \"kinderwägelchen\": \"kinderwagelch\",\n  \"kinderwäsche\": \"kinderwasch\",\n  \"kinderzeit\": \"kinderzeit\",\n  \"kinderzimmerchen\": \"kinderzimmerch\",\n  \"kindes\": \"kind\",\n  \"kindesbeinen\": \"kindesbein\",\n  \"kindesgedanken\": \"kindesgedank\",\n  \"kindesstatt\": \"kindesstatt\",\n  \"kindestreue\": \"kindestreu\",\n  \"kindheit\": \"kindheit\",\n  \"kindisch\": \"kindisch\",\n  \"kindische\": \"kindisch\",\n  \"kindischer\": \"kindisch\",\n  \"kindlein\": \"kindlein\",\n  \"kindlich\": \"kindlich\",\n  \"kindliche\": \"kindlich\",\n  \"kindlichen\": \"kindlich\",\n  \"kindliches\": \"kindlich\",\n  \"kindlichkeit\": \"kindlich\",\n  \"kindskopf\": \"kindskopf\",\n  \"kinn\": \"kinn\",\n  \"kinnbacken\": \"kinnback\",\n  \"kinnbart\": \"kinnbart\",\n  \"kino\": \"kino\",\n  \"kippe\": \"kipp\",\n  \"kippen\": \"kipp\",\n  \"kippod\": \"kippod\",\n  \"kirch\": \"kirch\",\n  \"kirchbankeck\": \"kirchbankeck\",\n  \"kirchdorf\": \"kirchdorf\",\n  \"kirche\": \"kirch\",\n  \"kirchedie\": \"kirchedi\",\n  \"kirchemit\": \"kirchemit\",\n  \"kirchen\": \"kirch\",\n  \"kirchenauftritt\": \"kirchenauftritt\",\n  \"kirchenbesuch\": \"kirchenbesuch\",\n  \"kirchenbund\": \"kirchenbund\",\n  \"kirchenbundes\": \"kirchenbund\",\n  \"kirchenbundesdie\": \"kirchenbundesdi\",\n  \"kirchenerhaltdie\": \"kirchenerhaltdi\",\n  \"kirchenführer\": \"kirchenfuhr\",\n  \"kirchenglocken\": \"kirchenglock\",\n  \"kirchenkritiker\": \"kirchenkrit\",\n  \"kirchenlehre\": \"kirchenlehr\",\n  \"kirchenlied\": \"kirchenlied\",\n  \"kirchenmaus\": \"kirchenmaus\",\n  \"kirchenmitglieder\": \"kirchenmitglied\",\n  \"kirchenmitgliedschaft\": \"kirchenmitgliedschaft\",\n  \"kirchennahen\": \"kirchennah\",\n  \"kirchenpatronin\": \"kirchenpatronin\",\n  \"kirchenpflegemitglieder\": \"kirchenpflegemitglied\",\n  \"kirchenpflegen\": \"kirchenpfleg\",\n  \"kirchenpresse\": \"kirchenpress\",\n  \"kirchenrates\": \"kirchenrat\",\n  \"kirchenrechtlich\": \"kirchenrecht\",\n  \"kirchenrechtlichen\": \"kirchenrecht\",\n  \"kirchensteuer\": \"kirchensteu\",\n  \"kirchensteuerpflicht\": \"kirchensteuerpflicht\",\n  \"kirchenstreit\": \"kirchenstreit\",\n  \"kirchensynoden\": \"kirchensynod\",\n  \"kirchentag\": \"kirchentag\",\n  \"kirchentage\": \"kirchentag\",\n  \"kirchentagen\": \"kirchentag\",\n  \"kirchentages\": \"kirchentag\",\n  \"kirchenverantwortlichen\": \"kirchenverantwort\",\n  \"kirchenwesen\": \"kirchenwes\",\n  \"kirchenzeit\": \"kirchenzeit\",\n  \"kirchenzeitung\": \"kirchenzeit\",\n  \"kirchgang\": \"kirchgang\",\n  \"kirchgemeinde\": \"kirchgemeind\",\n  \"kirchgemeinden\": \"kirchgemeind\",\n  \"kirchgemeinderäte\": \"kirchgemeinderat\",\n  \"kirchgemeinderäten\": \"kirchgemeinderat\",\n  \"kirchhof\": \"kirchhof\",\n  \"kirchlich\": \"kirchlich\",\n  \"kirchliche\": \"kirchlich\",\n  \"kirchlichen\": \"kirchlich\",\n  \"kirchliches\": \"kirchlich\",\n  \"kirchstühl\": \"kirchstuhl\",\n  \"kirchtürme\": \"kirchturm\",\n  \"kirchturmspitz\": \"kirchturmspitz\",\n  \"kirchweih\": \"kirchweih\",\n  \"kirkgesit\": \"kirkgesit\",\n  \"kirschen\": \"kirsch\",\n  \"kirschenlippen\": \"kirschenlipp\",\n  \"kirschgeist\": \"kirschgeist\",\n  \"kirschkern\": \"kirschk\",\n  \"kirschlorbeerwasser\": \"kirschlorbeerwass\",\n  \"kirschrot\": \"kirschrot\",\n  \"kirschrote\": \"kirschrot\",\n  \"kirschrotem\": \"kirschrot\",\n  \"kirschroten\": \"kirschrot\",\n  \"kissen\": \"kiss\",\n  \"kiste\": \"kist\",\n  \"kisten\": \"kist\",\n  \"kitschige\": \"kitschig\",\n  \"kitschiges\": \"kitschig\",\n  \"kittel\": \"kittel\",\n  \"kitz\": \"kitz\",\n  \"kitzelt\": \"kitzelt\",\n  \"kitzlein\": \"kitzlein\",\n  \"klack\": \"klack\",\n  \"kläffer\": \"klaff\",\n  \"klage\": \"klag\",\n  \"klagel\": \"klagel\",\n  \"klagen\": \"klag\",\n  \"klagend\": \"klagend\",\n  \"klagenden\": \"klagend\",\n  \"kläger\": \"klag\",\n  \"klagetönen\": \"klageton\",\n  \"kläglich\": \"klaglich\",\n  \"klägliche\": \"klaglich\",\n  \"kläglicher\": \"klaglich\",\n  \"klaglosen\": \"klaglos\",\n  \"klagt\": \"klagt\",\n  \"klagte\": \"klagt\",\n  \"klagten\": \"klagt\",\n  \"klammerarmen\": \"klammerarm\",\n  \"klammernd\": \"klammernd\",\n  \"klammerte\": \"klammert\",\n  \"klang\": \"klang\",\n  \"klange\": \"klang\",\n  \"klänge\": \"klang\",\n  \"klangen\": \"klang\",\n  \"klanglos\": \"klanglos\",\n  \"klangvolle\": \"klangvoll\",\n  \"klangvoller\": \"klangvoll\",\n  \"klapperig\": \"klapper\",\n  \"klappern\": \"klapp\",\n  \"klappernden\": \"klappernd\",\n  \"klapperte\": \"klappert\",\n  \"klappte\": \"klappt\",\n  \"klaps\": \"klaps\",\n  \"klar\": \"klar\",\n  \"klare\": \"klar\",\n  \"klaren\": \"klar\",\n  \"klarer\": \"klar\",\n  \"klareren\": \"klar\",\n  \"klares\": \"klar\",\n  \"klarheit\": \"klarheit\",\n  \"klarstellung\": \"klarstell\",\n  \"klarsten\": \"klarst\",\n  \"klärt\": \"klart\",\n  \"klass\": \"klass\",\n  \"klasse\": \"klass\",\n  \"klassen\": \"klass\",\n  \"klassikers\": \"klassik\",\n  \"klassische\": \"klassisch\",\n  \"klatschen\": \"klatsch\",\n  \"klatschend\": \"klatschend\",\n  \"klatschereien\": \"klatscherei\",\n  \"klatschrose\": \"klatschros\",\n  \"klatschrosen\": \"klatschros\",\n  \"klatschte\": \"klatscht\",\n  \"klatschten\": \"klatscht\",\n  \"klaubte\": \"klaubt\",\n  \"klaue\": \"klau\",\n  \"klauen\": \"klau\",\n  \"klavierstunde\": \"klavierstund\",\n  \"klebe\": \"kleb\",\n  \"kleben\": \"kleb\",\n  \"klebet\": \"klebet\",\n  \"klebt\": \"klebt\",\n  \"klebte\": \"klebt\",\n  \"klebten\": \"klebt\",\n  \"klecks\": \"kleck\",\n  \"kleckschen\": \"klecksch\",\n  \"kleckse\": \"klecks\",\n  \"klecksigen\": \"klecksig\",\n  \"klee\": \"klee\",\n  \"kleeblatt\": \"kleeblatt\",\n  \"kleesamen\": \"kleesam\",\n  \"kleid\": \"kleid\",\n  \"kleide\": \"kleid\",\n  \"kleiden\": \"kleid\",\n  \"kleider\": \"kleid\",\n  \"kleiderbedarf\": \"kleiderbedarf\",\n  \"kleiderkasten\": \"kleiderkast\",\n  \"kleidern\": \"kleid\",\n  \"kleiderschrank\": \"kleiderschrank\",\n  \"kleides\": \"kleid\",\n  \"kleidete\": \"kleidet\",\n  \"kleidung\": \"kleidung\",\n  \"kleidungsstück\": \"kleidungsstuck\",\n  \"kleie\": \"kleie\",\n  \"kleiekörner\": \"kleiekorn\",\n  \"klein\": \"klein\",\n  \"kleine\": \"klein\",\n  \"kleinedelmann\": \"kleinedelmann\",\n  \"kleinedelmanne\": \"kleinedelmann\",\n  \"kleinem\": \"klein\",\n  \"kleinen\": \"klein\",\n  \"kleiner\": \"klein\",\n  \"kleinere\": \"klein\",\n  \"kleineren\": \"klein\",\n  \"kleinern\": \"klein\",\n  \"kleines\": \"klein\",\n  \"kleinheit\": \"kleinheit\",\n  \"kleinigkeit\": \"kleinig\",\n  \"kleinigkeiten\": \"kleinig\",\n  \"kleinlaut\": \"kleinlaut\",\n  \"kleinlich\": \"kleinlich\",\n  \"kleinliche\": \"kleinlich\",\n  \"kleinlichen\": \"kleinlich\",\n  \"kleinlicher\": \"kleinlich\",\n  \"kleinlichsten\": \"kleinlich\",\n  \"kleinmachnow\": \"kleinmachnow\",\n  \"kleinmütig\": \"kleinmut\",\n  \"kleinod\": \"kleinod\",\n  \"kleinstädterinnen\": \"kleinstadterinn\",\n  \"kleinste\": \"klein\",\n  \"kleinsten\": \"klein\",\n  \"kleinster\": \"klein\",\n  \"kleinstes\": \"klein\",\n  \"kleinviehs\": \"kleinvieh\",\n  \"klemme\": \"klemm\",\n  \"klemmte\": \"klemmt\",\n  \"kletterns\": \"klettern\",\n  \"kletterte\": \"klettert\",\n  \"kletterten\": \"klettert\",\n  \"klickklackklecks\": \"klickklackkleck\",\n  \"klicks\": \"klick\",\n  \"klient\": \"klient\",\n  \"klingel\": \"klingel\",\n  \"klingelte\": \"klingelt\",\n  \"klingen\": \"kling\",\n  \"klingende\": \"klingend\",\n  \"klingenden\": \"klingend\",\n  \"klingender\": \"klingend\",\n  \"klingt\": \"klingt\",\n  \"klinke\": \"klink\",\n  \"klippe\": \"klipp\",\n  \"klippen\": \"klipp\",\n  \"klirren\": \"klirr\",\n  \"klirrenden\": \"klirrend\",\n  \"klirrrr\": \"klirrrr\",\n  \"klirrte\": \"klirrt\",\n  \"klirrten\": \"klirrt\",\n  \"kloan\": \"kloan\",\n  \"klopfen\": \"klopf\",\n  \"klopfendem\": \"klopfend\",\n  \"klopfenden\": \"klopfend\",\n  \"klopfte\": \"klopft\",\n  \"klösschen\": \"klossch\",\n  \"kloster\": \"klost\",\n  \"klöster\": \"klost\",\n  \"klosters\": \"klost\",\n  \"klotziger\": \"klotzig\",\n  \"kluft\": \"kluft\",\n  \"klüfteten\": \"kluftet\",\n  \"klug\": \"klug\",\n  \"kluge\": \"klug\",\n  \"klugen\": \"klug\",\n  \"kluger\": \"klug\",\n  \"klüger\": \"klug\",\n  \"kluges\": \"klug\",\n  \"klugheit\": \"klugheit\",\n  \"klugheitsregel\": \"klugheitsregel\",\n  \"klüglich\": \"kluglich\",\n  \"klügste\": \"klug\",\n  \"klümpchen\": \"klumpch\",\n  \"klumpen\": \"klump\",\n  \"knab\": \"knab\",\n  \"knabbern\": \"knabb\",\n  \"knäbchen\": \"knabch\",\n  \"knabe\": \"knab\",\n  \"knaben\": \"knab\",\n  \"knabenalter\": \"knabenalt\",\n  \"knäblein\": \"knablein\",\n  \"knäbleins\": \"knablein\",\n  \"knackende\": \"knackend\",\n  \"knall\": \"knall\",\n  \"knallen\": \"knall\",\n  \"knallgelber\": \"knallgelb\",\n  \"knallt\": \"knallt\",\n  \"knapp\": \"knapp\",\n  \"knarrte\": \"knarrt\",\n  \"knatter\": \"knatt\",\n  \"knäuel\": \"knauel\",\n  \"knäufen\": \"knauf\",\n  \"knauserig\": \"knauser\",\n  \"knebel\": \"knebel\",\n  \"knecht\": \"knecht\",\n  \"knechtchen\": \"knechtch\",\n  \"knechte\": \"knecht\",\n  \"knechten\": \"knecht\",\n  \"knechtes\": \"knecht\",\n  \"knechtisch\": \"knechtisch\",\n  \"knechts\": \"knecht\",\n  \"knechtschaft\": \"knechtschaft\",\n  \"kneipchen\": \"kneipch\",\n  \"kneipe\": \"kneip\",\n  \"kneipen\": \"kneip\",\n  \"kneipentisch\": \"kneipent\",\n  \"kneten\": \"knet\",\n  \"knicks\": \"knick\",\n  \"knickse\": \"knicks\",\n  \"knickste\": \"knick\",\n  \"knickte\": \"knickt\",\n  \"knickten\": \"knickt\",\n  \"knie\": \"knie\",\n  \"kniee\": \"kniee\",\n  \"knieen\": \"knieen\",\n  \"knieholzäste\": \"knieholzast\",\n  \"kniehosen\": \"kniehos\",\n  \"knien\": \"knien\",\n  \"kniete\": \"kniet\",\n  \"knieten\": \"kniet\",\n  \"kniff\": \"kniff\",\n  \"knirschen\": \"knirsch\",\n  \"knirschend\": \"knirschend\",\n  \"knisternd\": \"knisternd\",\n  \"knisternden\": \"knisternd\",\n  \"knisterte\": \"knistert\",\n  \"knisterten\": \"knistert\",\n  \"knitternden\": \"knitternd\",\n  \"knobeln\": \"knobeln\",\n  \"knobelten\": \"knobelt\",\n  \"knöchel\": \"knochel\",\n  \"knochen\": \"knoch\",\n  \"knochengerippe\": \"knochengeripp\",\n  \"knochenjobs\": \"knochenjob\",\n  \"knöchern\": \"knoch\",\n  \"knöchernes\": \"knochern\",\n  \"knochige\": \"knochig\",\n  \"knochiges\": \"knochig\",\n  \"knopf\": \"knopf\",\n  \"knöpfe\": \"knopf\",\n  \"knöpfen\": \"knopf\",\n  \"knopfmacher\": \"knopfmach\",\n  \"knopfmacherei\": \"knopfmacherei\",\n  \"knorpel\": \"knorpel\",\n  \"knorrige\": \"knorrig\",\n  \"knospen\": \"knosp\",\n  \"knospenden\": \"knospend\",\n  \"knösperl\": \"knosperl\",\n  \"knoten\": \"knot\",\n  \"knotige\": \"knotig\",\n  \"knüffe\": \"knuff\",\n  \"knüffen\": \"knuff\",\n  \"knüllte\": \"knullt\",\n  \"knüpfen\": \"knupf\",\n  \"knüpfend\": \"knupfend\",\n  \"knüpfte\": \"knupft\",\n  \"knüpperte\": \"knuppert\",\n  \"knusprig\": \"knusprig\",\n  \"knutenpeitsche\": \"knutenpeitsch\",\n  \"koalitionskrise\": \"koalitionskris\",\n  \"koalitionssystem\": \"koalitionssyst\",\n  \"koalitionsversuche\": \"koalitionsversuch\",\n  \"koan\": \"koan\",\n  \"kobold\": \"kobold\",\n  \"koch\": \"koch\",\n  \"kochen\": \"koch\",\n  \"kochherd\": \"kochherd\",\n  \"köchin\": \"kochin\",\n  \"kocht\": \"kocht\",\n  \"kochte\": \"kocht\",\n  \"kock\": \"kock\",\n  \"koffer\": \"koff\",\n  \"kognak\": \"kognak\",\n  \"kohl\": \"kohl\",\n  \"kohle\": \"kohl\",\n  \"kohlen\": \"kohl\",\n  \"kohlenbrennern\": \"kohlenbrenn\",\n  \"kohlkräuter\": \"kohlkraut\",\n  \"kokette\": \"kokett\",\n  \"koketterie\": \"koketteri\",\n  \"kolben\": \"kolb\",\n  \"kollaboration\": \"kollaboration\",\n  \"kollaboriert\": \"kollaboriert\",\n  \"kollakowsky\": \"kollakowsky\",\n  \"kollakowskys\": \"kollakowskys\",\n  \"kollege\": \"kolleg\",\n  \"kollegen\": \"kolleg\",\n  \"kollegium\": \"kollegium\",\n  \"kollekteur\": \"kollekteur\",\n  \"köllen\": \"koll\",\n  \"koller\": \"koll\",\n  \"kollerte\": \"kollert\",\n  \"kölner\": \"koln\",\n  \"kölnischem\": \"kolnisch\",\n  \"kolonne\": \"kolonn\",\n  \"kolorit\": \"kolorit\",\n  \"kolossal\": \"kolossal\",\n  \"kolossale\": \"kolossal\",\n  \"kolossales\": \"kolossal\",\n  \"kolumbus\": \"kolumbus\",\n  \"kom\": \"kom\",\n  \"kombattant\": \"kombattant\",\n  \"kombinationen\": \"kombination\",\n  \"kombinierten\": \"kombiniert\",\n  \"komet\": \"komet\",\n  \"kometenkohl\": \"kometenkohl\",\n  \"komiker\": \"komik\",\n  \"komikergrinsen\": \"komikergrins\",\n  \"komikers\": \"komik\",\n  \"komisch\": \"komisch\",\n  \"komische\": \"komisch\",\n  \"komischen\": \"komisch\",\n  \"komitee\": \"komite\",\n  \"komm\": \"komm\",\n  \"kommandeur\": \"kommandeur\",\n  \"kommandieren\": \"kommandi\",\n  \"kommando\": \"kommando\",\n  \"kommandowort\": \"kommandowort\",\n  \"komme\": \"komm\",\n  \"kommen\": \"komm\",\n  \"kommend\": \"kommend\",\n  \"kommende\": \"kommend\",\n  \"kommenden\": \"kommend\",\n  \"kommendes\": \"kommend\",\n  \"kommens\": \"komm\",\n  \"kommentar\": \"kommentar\",\n  \"kommet\": \"kommet\",\n  \"kommission\": \"kommission\",\n  \"kommissionen\": \"kommission\",\n  \"kommode\": \"kommod\",\n  \"kommr\": \"kommr\",\n  \"kommst\": \"komm\",\n  \"kommt\": \"kommt\",\n  \"kommunalverwaltung\": \"kommunalverwalt\",\n  \"kommunikationshindernis\": \"kommunikationshindernis\",\n  \"komödie\": \"komodi\",\n  \"komödien\": \"komodi\",\n  \"kompagnie\": \"kompagni\",\n  \"kompagnien\": \"kompagni\",\n  \"kompagnon\": \"kompagnon\",\n  \"kompaniechef\": \"kompaniechef\",\n  \"kompass\": \"kompass\",\n  \"kompensation\": \"kompensation\",\n  \"komplikationen\": \"komplikation\",\n  \"kompliment\": \"kompliment\",\n  \"komplimenten\": \"kompliment\",\n  \"komplimentierten\": \"komplimentiert\",\n  \"komponiert\": \"komponiert\",\n  \"komptoirs\": \"komptoir\",\n  \"kon\": \"kon\",\n  \"kön\": \"kon\",\n  \"konfekt\": \"konfekt\",\n  \"konfirmationsschein\": \"konfirmationsschein\",\n  \"konfirmationsunterrichte\": \"konfirmationsunterricht\",\n  \"konfirmiert\": \"konfirmiert\",\n  \"konfisziert\": \"konfisziert\",\n  \"konflikt\": \"konflikt\",\n  \"konflikten\": \"konflikt\",\n  \"konfrontiert\": \"konfrontiert\",\n  \"konfundieren\": \"konfundi\",\n  \"konfus\": \"konfus\",\n  \"könig\": \"konig\",\n  \"könige\": \"konig\",\n  \"königen\": \"konig\",\n  \"königin\": \"konigin\",\n  \"königinnen\": \"koniginn\",\n  \"königl\": \"konigl\",\n  \"königlich\": \"konig\",\n  \"königliche\": \"konig\",\n  \"königlichen\": \"konig\",\n  \"königlichsten\": \"konig\",\n  \"königreich\": \"konigreich\",\n  \"königreichen\": \"konigreich\",\n  \"königreiches\": \"konigreich\",\n  \"königs\": \"konig\",\n  \"königsmantel\": \"konigsmantel\",\n  \"königspaar\": \"konigspaar\",\n  \"königsschiessen\": \"konigsschiess\",\n  \"königssee\": \"konigsse\",\n  \"königsseer\": \"konigsse\",\n  \"königssohn\": \"konigssohn\",\n  \"konjunktiv\": \"konjunktiv\",\n  \"konkreten\": \"konkret\",\n  \"konkurse\": \"konkurs\",\n  \"könn\": \"konn\",\n  \"könne\": \"konn\",\n  \"können\": \"konn\",\n  \"könnet\": \"konnet\",\n  \"konnt\": \"konnt\",\n  \"könnt\": \"konnt\",\n  \"konnte\": \"konnt\",\n  \"könnte\": \"konnt\",\n  \"konnten\": \"konnt\",\n  \"könnten\": \"konnt\",\n  \"könntest\": \"konnt\",\n  \"konsequent\": \"konsequent\",\n  \"konsequente\": \"konsequent\",\n  \"konservatismus\": \"konservatismus\",\n  \"konservativ\": \"konservativ\",\n  \"konservativen\": \"konservativ\",\n  \"konservativer\": \"konservativ\",\n  \"konserviert\": \"konserviert\",\n  \"konstantinopel\": \"konstantinopel\",\n  \"konstellationen\": \"konstellation\",\n  \"konstitutiv\": \"konstitutiv\",\n  \"konstruiert\": \"konstruiert\",\n  \"konstruktion\": \"konstruktion\",\n  \"konsum\": \"konsum\",\n  \"konsumenten\": \"konsument\",\n  \"konsumieren\": \"konsumi\",\n  \"konsumiert\": \"konsumiert\",\n  \"konsumkredit\": \"konsumkredit\",\n  \"konsumwelle\": \"konsumwell\",\n  \"kontakt\": \"kontakt\",\n  \"kontakte\": \"kontakt\",\n  \"kontemplative\": \"kontemplativ\",\n  \"kontinent\": \"kontinent\",\n  \"kontinental\": \"kontinental\",\n  \"kontinuierlichen\": \"kontinui\",\n  \"konto\": \"konto\",\n  \"kontorstuhl\": \"kontorstuhl\",\n  \"kontradiktorisch\": \"kontradiktor\",\n  \"kontrakt\": \"kontrakt\",\n  \"kontraktwidrigen\": \"kontraktwidr\",\n  \"kontrast\": \"kontrast\",\n  \"kontrastierte\": \"kontrastiert\",\n  \"kontraventionsbusse\": \"kontraventionsbuss\",\n  \"kontrolliert\": \"kontrolliert\",\n  \"kontroverse\": \"kontrovers\",\n  \"konventikel\": \"konventikel\",\n  \"konvertiert\": \"konvertiert\",\n  \"konzentriert\": \"konzentriert\",\n  \"konzert\": \"konzert\",\n  \"kooperation\": \"kooperation\",\n  \"koordiniert\": \"koordiniert\",\n  \"kopf\": \"kopf\",\n  \"köpfchen\": \"kopfch\",\n  \"kopfe\": \"kopf\",\n  \"köpfe\": \"kopf\",\n  \"köpfen\": \"kopf\",\n  \"kopfes\": \"kopf\",\n  \"kopfhängen\": \"kopfhang\",\n  \"kopfkissen\": \"kopfkiss\",\n  \"köpflings\": \"kopfling\",\n  \"kopfnicken\": \"kopfnick\",\n  \"kopfputz\": \"kopfputz\",\n  \"kopfschmerzen\": \"kopfschmerz\",\n  \"kopfschüttelnd\": \"kopfschuttelnd\",\n  \"kopftuches\": \"kopftuch\",\n  \"kopfüber\": \"kopfub\",\n  \"kopfweh\": \"kopfweh\",\n  \"kopfwendung\": \"kopfwend\",\n  \"kopfzerbrechen\": \"kopfzerbrech\",\n  \"kopien\": \"kopi\",\n  \"kopiermaschinen\": \"kopiermaschin\",\n  \"koppe\": \"kopp\",\n  \"koppelpferde\": \"koppelpferd\",\n  \"koppenhöhe\": \"koppenhoh\",\n  \"koppenluft\": \"koppenluft\",\n  \"koppenplan\": \"koppenplan\",\n  \"koppenplanes\": \"koppenplan\",\n  \"kopulieren\": \"kopuli\",\n  \"kor\": \"kor\",\n  \"korah\": \"korah\",\n  \"korahiten\": \"korahit\",\n  \"korahs\": \"korah\",\n  \"korallenschnur\": \"korallenschnur\",\n  \"korb\": \"korb\",\n  \"körbchen\": \"korbch\",\n  \"korbe\": \"korb\",\n  \"körbe\": \"korb\",\n  \"körben\": \"korb\",\n  \"korbträgern\": \"korbtrag\",\n  \"korn\": \"korn\",\n  \"kornähre\": \"kornahr\",\n  \"kornblumen\": \"kornblum\",\n  \"korne\": \"korn\",\n  \"kornes\": \"korn\",\n  \"kornfeld\": \"kornfeld\",\n  \"kornsäcken\": \"kornsack\",\n  \"körper\": \"korp\",\n  \"körperbau\": \"korperbau\",\n  \"körperlich\": \"korp\",\n  \"körperliche\": \"korp\",\n  \"körperlichen\": \"korp\",\n  \"körperlicher\": \"korp\",\n  \"körperliches\": \"korp\",\n  \"körpern\": \"korp\",\n  \"körpers\": \"korp\",\n  \"körpersinne\": \"korpersinn\",\n  \"korrekt\": \"korrekt\",\n  \"korrekturen\": \"korrektur\",\n  \"korrespondenz\": \"korrespondenz\",\n  \"korrespondiere\": \"korrespondi\",\n  \"korrespondieren\": \"korrespondi\",\n  \"korrespondierend\": \"korrespondier\",\n  \"korrespondierende\": \"korrespondier\",\n  \"korrespondierendes\": \"korrespondier\",\n  \"korrespondiert\": \"korrespondiert\",\n  \"korridor\": \"korridor\",\n  \"korrigieren\": \"korrigi\",\n  \"korrigiert\": \"korrigiert\",\n  \"kosenamen\": \"kosenam\",\n  \"kosmiseher\": \"kosmiseh\",\n  \"kosmologische\": \"kosmolog\",\n  \"kost\": \"kost\",\n  \"kostbar\": \"kostbar\",\n  \"kostbare\": \"kostbar\",\n  \"kostbaren\": \"kostbar\",\n  \"kostbarer\": \"kostbar\",\n  \"kostbares\": \"kostbar\",\n  \"kostbarsten\": \"kostbarst\",\n  \"kosten\": \"kost\",\n  \"kostenfreien\": \"kostenfrei\",\n  \"kostenpunkt\": \"kostenpunkt\",\n  \"kostet\": \"kostet\",\n  \"kostete\": \"kostet\",\n  \"kosteten\": \"kostet\",\n  \"köstlich\": \"kostlich\",\n  \"köstliche\": \"kostlich\",\n  \"köstlichen\": \"kostlich\",\n  \"köstliches\": \"kostlich\",\n  \"köstlichkeiten\": \"kostlich\",\n  \"köstlichste\": \"kostlich\",\n  \"kostspieliges\": \"kostspiel\",\n  \"kostümierte\": \"kostumiert\",\n  \"kot\": \"kot\",\n  \"kotelettes\": \"kotelett\",\n  \"köter\": \"kot\",\n  \"kothöllen\": \"kotholl\",\n  \"krabbelige\": \"krabbel\",\n  \"krabbelte\": \"krabbelt\",\n  \"krach\": \"krach\",\n  \"krachen\": \"krach\",\n  \"krachend\": \"krachend\",\n  \"krachmandel\": \"krachmandel\",\n  \"krachmandelkies\": \"krachmandelki\",\n  \"kracht\": \"kracht\",\n  \"krachte\": \"kracht\",\n  \"krächzen\": \"krachz\",\n  \"krächzende\": \"krachzend\",\n  \"krack\": \"krack\",\n  \"kraft\": \"kraft\",\n  \"kraftanwendung\": \"kraftanwend\",\n  \"kräfte\": \"kraft\",\n  \"kräften\": \"kraft\",\n  \"kräftig\": \"kraftig\",\n  \"kräftige\": \"kraftig\",\n  \"kräftigem\": \"kraftig\",\n  \"kräftigen\": \"kraftig\",\n  \"kräftiger\": \"kraftig\",\n  \"kräftigere\": \"kraftig\",\n  \"kräftigst\": \"kraftig\",\n  \"kraftmänner\": \"kraftmann\",\n  \"kragen\": \"krag\",\n  \"krähe\": \"krah\",\n  \"krähen\": \"krah\",\n  \"kräht\": \"kraht\",\n  \"krähte\": \"kraht\",\n  \"krakacks\": \"krakack\",\n  \"kram\": \"kram\",\n  \"krämer\": \"kram\",\n  \"kramladen\": \"kramlad\",\n  \"krammetsvogel\": \"krammetsvogel\",\n  \"krammetsvögel\": \"krammetsvogel\",\n  \"krammetsvogels\": \"krammetsvogel\",\n  \"krampf\": \"krampf\",\n  \"krampfhaft\": \"krampfhaft\",\n  \"krampfhaften\": \"krampfhaft\",\n  \"krampfhafter\": \"krampfhaft\",\n  \"krank\": \"krank\",\n  \"kranke\": \"krank\",\n  \"kränkelnder\": \"krankelnd\",\n  \"kränkelt\": \"krankelt\",\n  \"kranken\": \"krank\",\n  \"kränken\": \"krank\",\n  \"krankenbett\": \"krankenbett\",\n  \"krankenbette\": \"krankenbett\",\n  \"krankenbettes\": \"krankenbett\",\n  \"kränkend\": \"krankend\",\n  \"kränkenden\": \"krankend\",\n  \"krankenstand\": \"krankenstand\",\n  \"krankenversicherung\": \"krankenversicher\",\n  \"krankenwärter\": \"krankenwart\",\n  \"krankhafter\": \"krankhaft\",\n  \"krankheit\": \"krankheit\",\n  \"krankheiten\": \"krankheit\",\n  \"krankheitsbildern\": \"krankheitsbild\",\n  \"kränkt\": \"krankt\",\n  \"kränkte\": \"krankt\",\n  \"kränkung\": \"krankung\",\n  \"kranz\": \"kranz\",\n  \"kranze\": \"kranz\",\n  \"kränzen\": \"kranz\",\n  \"kratz\": \"kratz\",\n  \"krätze\": \"kratz\",\n  \"kratzen\": \"kratz\",\n  \"kratzfuss\": \"kratzfuss\",\n  \"kratzfüsschen\": \"kratzfussch\",\n  \"kratzte\": \"kratzt\",\n  \"kratzten\": \"kratzt\",\n  \"krault\": \"krault\",\n  \"kraus\": \"kraus\",\n  \"krause\": \"kraus\",\n  \"kräuselhaare\": \"krauselhaar\",\n  \"kräuselten\": \"krauselt\",\n  \"krausen\": \"kraus\",\n  \"kraut\": \"kraut\",\n  \"kräutchen\": \"krautch\",\n  \"kräuter\": \"kraut\",\n  \"kräutermann\": \"krautermann\",\n  \"kräutern\": \"kraut\",\n  \"kräutersäcke\": \"krautersack\",\n  \"kräuterwuchs\": \"krauterwuch\",\n  \"kräuterwust\": \"krauterwust\",\n  \"krautes\": \"kraut\",\n  \"krauts\": \"kraut\",\n  \"kravatte\": \"kravatt\",\n  \"kreatur\": \"kreatur\",\n  \"kreaturen\": \"kreatur\",\n  \"krebs\": \"kreb\",\n  \"krebspatienten\": \"krebspatient\",\n  \"krebsscheren\": \"krebssch\",\n  \"kredit\": \"kredit\",\n  \"kredite\": \"kredit\",\n  \"kredites\": \"kredit\",\n  \"kreditgetzes\": \"kreditgetz\",\n  \"kreideblass\": \"kreideblass\",\n  \"kreis\": \"kreis\",\n  \"kreischen\": \"kreisch\",\n  \"kreischenden\": \"kreischend\",\n  \"kreischte\": \"kreischt\",\n  \"kreise\": \"kreis\",\n  \"kreiselndes\": \"kreiselnd\",\n  \"kreiselte\": \"kreiselt\",\n  \"kreisen\": \"kreis\",\n  \"kreises\": \"kreis\",\n  \"kreislauf\": \"kreislauf\",\n  \"kreisläufe\": \"kreislauf\",\n  \"kreisrunde\": \"kreisrund\",\n  \"kreissen\": \"kreiss\",\n  \"kreißen\": \"kreiss\",\n  \"kreissenden\": \"kreissend\",\n  \"kreißenden\": \"kreissend\",\n  \"kreissest\": \"kreiss\",\n  \"kreißest\": \"kreiss\",\n  \"kreisst\": \"kreisst\",\n  \"kreißt\": \"kreisst\",\n  \"kreiswehrersatzamt\": \"kreiswehrersatzamt\",\n  \"kreizer\": \"kreiz\",\n  \"kreizl\": \"kreizl\",\n  \"kresse\": \"kress\",\n  \"kretinismus\": \"kretinismus\",\n  \"kreucht\": \"kreucht\",\n  \"kreuz\": \"kreuz\",\n  \"kreuzberger\": \"kreuzberg\",\n  \"kreuze\": \"kreuz\",\n  \"kreuzen\": \"kreuz\",\n  \"kreuzenden\": \"kreuzend\",\n  \"kreuzer\": \"kreuz\",\n  \"kreuzes\": \"kreuz\",\n  \"kreuzfahrers\": \"kreuzfahr\",\n  \"kreuzl\": \"kreuzl\",\n  \"kreuzritterzuge\": \"kreuzritterzug\",\n  \"kreuzspinnen\": \"kreuzspinn\",\n  \"kreuzstrasse\": \"kreuzstrass\",\n  \"kreuzte\": \"kreuzt\",\n  \"kreuzten\": \"kreuzt\",\n  \"kreuzweg\": \"kreuzweg\",\n  \"kreuzwegbäu\": \"kreuzwegbau\",\n  \"kreuzwegbauer\": \"kreuzwegbau\",\n  \"kreuzweghof\": \"kreuzweghof\",\n  \"kreuzweghofbauer\": \"kreuzweghofbau\",\n  \"kreuzweis\": \"kreuzweis\",\n  \"kribbeln\": \"kribbeln\",\n  \"krick\": \"krick\",\n  \"kriechen\": \"kriech\",\n  \"kriechend\": \"kriechend\",\n  \"kriechende\": \"kriechend\",\n  \"kriechenden\": \"kriechend\",\n  \"kriechendes\": \"kriechend\",\n  \"kriecht\": \"kriecht\",\n  \"kriechtier\": \"kriechti\",\n  \"kriechtiere\": \"kriechti\",\n  \"kriechtieren\": \"kriechti\",\n  \"krieg\": \"krieg\",\n  \"kriege\": \"krieg\",\n  \"kriegen\": \"krieg\",\n  \"krieger\": \"krieg\",\n  \"kriegerisch\": \"krieger\",\n  \"kriegerischen\": \"krieger\",\n  \"krieges\": \"krieg\",\n  \"krieget\": \"krieget\",\n  \"kriegsdienst\": \"kriegsdien\",\n  \"kriegsdienste\": \"kriegsdien\",\n  \"kriegsdienstes\": \"kriegsdien\",\n  \"kriegsdienstverweigerer\": \"kriegsdienstverweig\",\n  \"kriegsdienstverweigerung\": \"kriegsdienstverweiger\",\n  \"kriegsführung\": \"kriegsfuhr\",\n  \"kriegsgetümmel\": \"kriegsgetummel\",\n  \"kriegsheeren\": \"kriegshe\",\n  \"kriegskameraden\": \"kriegskamerad\",\n  \"kriegskasse\": \"kriegskass\",\n  \"kriegskleid\": \"kriegskleid\",\n  \"kriegsleute\": \"kriegsleut\",\n  \"kriegslied\": \"kriegslied\",\n  \"kriegslist\": \"kriegslist\",\n  \"kriegsmann\": \"kriegsmann\",\n  \"kriegsmänner\": \"kriegsmann\",\n  \"kriegsmannes\": \"kriegsmann\",\n  \"kriegsmöglichkeiten\": \"kriegsmog\",\n  \"kriegsoberst\": \"kriegsoberst\",\n  \"kriegsstrapazen\": \"kriegsstrapaz\",\n  \"kriegsvölker\": \"kriegsvolk\",\n  \"kriegswaffen\": \"kriegswaff\",\n  \"kriegswesen\": \"kriegswes\",\n  \"kriegswichtigen\": \"kriegswicht\",\n  \"kriegt\": \"kriegt\",\n  \"kriegte\": \"kriegt\",\n  \"krieje\": \"kriej\",\n  \"kriminalverbrechen\": \"kriminalverbrech\",\n  \"kriminell\": \"kriminell\",\n  \"kriminelle\": \"kriminell\",\n  \"kriminelles\": \"kriminell\",\n  \"krise\": \"kris\",\n  \"krisen\": \"kris\",\n  \"kristall\": \"kristall\",\n  \"kristalle\": \"kristall\",\n  \"kritik\": \"kritik\",\n  \"kritikpunkt\": \"kritikpunkt\",\n  \"kritisch\": \"kritisch\",\n  \"kritische\": \"kritisch\",\n  \"kritischen\": \"kritisch\",\n  \"kritischer\": \"kritisch\",\n  \"kritisieren\": \"kritisi\",\n  \"kritisiert\": \"kritisiert\",\n  \"kroch\": \"kroch\",\n  \"krochen\": \"kroch\",\n  \"krochy\": \"krochy\",\n  \"krokodil\": \"krokodil\",\n  \"krönchen\": \"kronch\",\n  \"krone\": \"kron\",\n  \"kronen\": \"kron\",\n  \"krönen\": \"kron\",\n  \"kronleuchtern\": \"kronleucht\",\n  \"krönte\": \"kront\",\n  \"kropf\": \"kropf\",\n  \"kropfige\": \"kropfig\",\n  \"kropfigen\": \"kropfig\",\n  \"kropfiger\": \"kropfig\",\n  \"kropfschlinge\": \"kropfschling\",\n  \"kröten\": \"krot\",\n  \"kruge\": \"krug\",\n  \"krügelchen\": \"krugelch\",\n  \"krümel\": \"krumel\",\n  \"krumm\": \"krumm\",\n  \"krummbeinige\": \"krummbein\",\n  \"krumme\": \"krumm\",\n  \"krummen\": \"krumm\",\n  \"krümmen\": \"krumm\",\n  \"krummholz\": \"krummholz\",\n  \"krummholzbusche\": \"krummholzbusch\",\n  \"krummholzbuschwerk\": \"krummholzbuschwerk\",\n  \"krummholzzweigen\": \"krummholzzweig\",\n  \"krummrückiger\": \"krummruck\",\n  \"krümmte\": \"krummt\",\n  \"krümmten\": \"krummt\",\n  \"krümmung\": \"krummung\",\n  \"krüppel\": \"kruppel\",\n  \"krustengebirge\": \"krustengebirg\",\n  \"kruzifix\": \"kruzifix\",\n  \"kts\": \"kts\",\n  \"kuba\": \"kuba\",\n  \"kübel\": \"kubel\",\n  \"kübler\": \"kubl\",\n  \"küche\": \"kuch\",\n  \"kuchen\": \"kuch\",\n  \"kuchenappetit\": \"kuchenappetit\",\n  \"kuchenbacken\": \"kuchenback\",\n  \"küchenchef\": \"kuchenchef\",\n  \"kuchenduft\": \"kuchenduft\",\n  \"küchenjungen\": \"kuchenj\",\n  \"küchenlampe\": \"kuchenlamp\",\n  \"kuchenpäckchen\": \"kuchenpackch\",\n  \"kuchenteller\": \"kuchentell\",\n  \"küchentüre\": \"kuchentur\",\n  \"kuckuck\": \"kuckuck\",\n  \"kugel\": \"kugel\",\n  \"kugeln\": \"kugeln\",\n  \"kugelrund\": \"kugelrund\",\n  \"kugelrunde\": \"kugelrund\",\n  \"kugelrunden\": \"kugelrund\",\n  \"kugelrundes\": \"kugelrund\",\n  \"kugelschreiber\": \"kugelschreib\",\n  \"kugelstift\": \"kugelstift\",\n  \"kuh\": \"kuh\",\n  \"küh\": \"kuh\",\n  \"kühe\": \"kuh\",\n  \"kuhgespann\": \"kuhgespann\",\n  \"kuhknecht\": \"kuhknecht\",\n  \"kuhknechte\": \"kuhknecht\",\n  \"kühl\": \"kuhl\",\n  \"kühle\": \"kuhl\",\n  \"kühlen\": \"kuhl\",\n  \"kühler\": \"kuhl\",\n  \"kühlten\": \"kuhlt\",\n  \"kuhmagd\": \"kuhmagd\",\n  \"kühn\": \"kuhn\",\n  \"kühne\": \"kuhn\",\n  \"kühnen\": \"kuhn\",\n  \"kühnere\": \"kuhn\",\n  \"kühneren\": \"kuhn\",\n  \"kühnheit\": \"kuhnheit\",\n  \"kühnlich\": \"kuhnlich\",\n  \"kühnrich\": \"kuhnrich\",\n  \"kühnsten\": \"kuhn\",\n  \"kuhpfluge\": \"kuhpflug\",\n  \"kulisse\": \"kuliss\",\n  \"kullerbällchen\": \"kullerballch\",\n  \"kullerten\": \"kullert\",\n  \"kullich\": \"kullich\",\n  \"kultivieren\": \"kultivi\",\n  \"kultivierte\": \"kultiviert\",\n  \"kultur\": \"kultur\",\n  \"kulturell\": \"kulturell\",\n  \"kulturelle\": \"kulturell\",\n  \"kulturellen\": \"kulturell\",\n  \"kulturen\": \"kultur\",\n  \"kulturvereine\": \"kulturverein\",\n  \"kulturwort\": \"kulturwort\",\n  \"kummen\": \"kumm\",\n  \"kummer\": \"kumm\",\n  \"kümmerlich\": \"kumm\",\n  \"kümmerliche\": \"kumm\",\n  \"kümmerlichen\": \"kumm\",\n  \"kümmerlicher\": \"kumm\",\n  \"kümmern\": \"kumm\",\n  \"kümmernis\": \"kummernis\",\n  \"kümmernisse\": \"kummernis\",\n  \"kümmerst\": \"kummerst\",\n  \"kümmert\": \"kummert\",\n  \"kümmerte\": \"kummert\",\n  \"kümmerten\": \"kummert\",\n  \"kummervoll\": \"kummervoll\",\n  \"kumpan\": \"kumpan\",\n  \"kumpane\": \"kumpan\",\n  \"kund\": \"kund\",\n  \"kunde\": \"kund\",\n  \"kunden\": \"kund\",\n  \"kundgab\": \"kundgab\",\n  \"kundgetan\": \"kundgetan\",\n  \"kundig\": \"kundig\",\n  \"kundigen\": \"kundig\",\n  \"kündigen\": \"kundig\",\n  \"kündigte\": \"kundigt\",\n  \"kündigten\": \"kundigt\",\n  \"kündigung\": \"kundig\",\n  \"kundin\": \"kundin\",\n  \"kundschaft\": \"kundschaft\",\n  \"kundschafter\": \"kundschaft\",\n  \"künftig\": \"kunftig\",\n  \"künftige\": \"kunftig\",\n  \"künftigen\": \"kunftig\",\n  \"küng\": \"kung\",\n  \"kunnt\": \"kunnt\",\n  \"kunnten\": \"kunnt\",\n  \"kunst\": \"kunst\",\n  \"kunstdenkmäler\": \"kunstdenkmal\",\n  \"künste\": \"kunst\",\n  \"künsten\": \"kunst\",\n  \"kunstfertigkeit\": \"kunstfert\",\n  \"kunstgriff\": \"kunstgriff\",\n  \"kunstgriffe\": \"kunstgriff\",\n  \"kunsthistorische\": \"kunsthistor\",\n  \"künstler\": \"kunstl\",\n  \"künstlerische\": \"kunstler\",\n  \"künstlerischen\": \"kunstler\",\n  \"künstlers\": \"kunstl\",\n  \"künstlich\": \"kunstlich\",\n  \"künstliche\": \"kunstlich\",\n  \"künstlichem\": \"kunstlich\",\n  \"künstlichen\": \"kunstlich\",\n  \"künstlicher\": \"kunstlich\",\n  \"kunstliebhaber\": \"kunstliebhab\",\n  \"kunstlos\": \"kunstlos\",\n  \"kunstpfeifer\": \"kunstpfeif\",\n  \"kunstreichen\": \"kunstreich\",\n  \"kunstreicher\": \"kunstreich\",\n  \"kunstreiches\": \"kunstreich\",\n  \"kunststück\": \"kunststuck\",\n  \"kunststückchen\": \"kunststuckch\",\n  \"kunststücke\": \"kunststuck\",\n  \"kunstverständigen\": \"kunstverstand\",\n  \"kunstvoll\": \"kunstvoll\",\n  \"kunstvoller\": \"kunstvoll\",\n  \"kunstwerke\": \"kunstwerk\",\n  \"kunstwerken\": \"kunstwerk\",\n  \"kunterbunt\": \"kunterbunt\",\n  \"küpe\": \"kup\",\n  \"kupfer\": \"kupf\",\n  \"kupfern\": \"kupf\",\n  \"kupferstiche\": \"kupferstich\",\n  \"kuppel\": \"kuppel\",\n  \"kuppeln\": \"kuppeln\",\n  \"kuppen\": \"kupp\",\n  \"kuppler\": \"kuppl\",\n  \"kur\": \"kur\",\n  \"kurasch\": \"kurasch\",\n  \"kürassiere\": \"kurassi\",\n  \"kürassiers\": \"kurassi\",\n  \"kürbisse\": \"kurbiss\",\n  \"kurden\": \"kurd\",\n  \"kurdisch\": \"kurdisch\",\n  \"kurdische\": \"kurdisch\",\n  \"kurdischen\": \"kurdisch\",\n  \"kurdistan\": \"kurdistan\",\n  \"kurfürsten\": \"kurfurst\",\n  \"kurieren\": \"kuri\",\n  \"kurierte\": \"kuriert\",\n  \"kurrenten\": \"kurrent\",\n  \"kurs\": \"kur\",\n  \"kursus\": \"kursus\",\n  \"kurt\": \"kurt\",\n  \"kurubas\": \"kurubas\",\n  \"kurwochen\": \"kurwoch\",\n  \"kurz\": \"kurz\",\n  \"kürz\": \"kurz\",\n  \"kurzatmiger\": \"kurzatm\",\n  \"kurzbesuch\": \"kurzbesuch\",\n  \"kurze\": \"kurz\",\n  \"kürze\": \"kurz\",\n  \"kurzem\": \"kurz\",\n  \"kurzen\": \"kurz\",\n  \"kurzer\": \"kurz\",\n  \"kürzer\": \"kurz\",\n  \"kürzere\": \"kurz\",\n  \"kurzerhand\": \"kurzerhand\",\n  \"kurzes\": \"kurz\",\n  \"kurzfristig\": \"kurzfrist\",\n  \"kurzgeschoren\": \"kurzgeschor\",\n  \"kurzhörspiel\": \"kurzhorspiel\",\n  \"kürzlich\": \"kurzlich\",\n  \"kurzsichtig\": \"kurzsicht\",\n  \"kurzum\": \"kurzum\",\n  \"kurzweg\": \"kurzweg\",\n  \"kurzweil\": \"kurzweil\",\n  \"kurzweilig\": \"kurzweil\",\n  \"kurzweiligen\": \"kurzweil\",\n  \"kurzweiliges\": \"kurzweil\",\n  \"kurzweiligste\": \"kurzweil\",\n  \"kusch\": \"kusch\",\n  \"kuschs\": \"kusch\",\n  \"kuss\": \"kuss\",\n  \"kuß\": \"kuss\",\n  \"küss\": \"kuss\",\n  \"küsschen\": \"kussch\",\n  \"küsse\": \"kuss\",\n  \"küssen\": \"kuss\",\n  \"küssend\": \"kussend\",\n  \"küsserei\": \"kusserei\",\n  \"kusshändchen\": \"kusshandch\",\n  \"küsslein\": \"kusslein\",\n  \"küsst\": \"kusst\",\n  \"küßt\": \"kusst\",\n  \"küsste\": \"kusst\",\n  \"küßte\": \"kusst\",\n  \"küssten\": \"kusst\",\n  \"küsten\": \"kust\",\n  \"küstern\": \"kust\",\n  \"kutsche\": \"kutsch\",\n  \"kutscher\": \"kutsch\",\n  \"kutschers\": \"kutsch\",\n  \"kutschieren\": \"kutschi\",\n  \"kutschierte\": \"kutschiert\",\n  \"kutte\": \"kutt\",\n  \"kuv\": \"kuv\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"laban\": \"laban\",\n  \"labe\": \"lab\",\n  \"label\": \"label\",\n  \"laboratorium\": \"laboratorium\",\n  \"labyrinth\": \"labyrinth\",\n  \"labyrinthe\": \"labyrinth\",\n  \"lachchors\": \"lachchor\",\n  \"lächeln\": \"lacheln\",\n  \"lächelnd\": \"lachelnd\",\n  \"lächelnde\": \"lachelnd\",\n  \"lächelndem\": \"lachelnd\",\n  \"lächelnden\": \"lachelnd\",\n  \"lächelnder\": \"lachelnd\",\n  \"lächelt\": \"lachelt\",\n  \"lächelte\": \"lachelt\",\n  \"lächelten\": \"lachelt\",\n  \"lachen\": \"lach\",\n  \"lachend\": \"lachend\",\n  \"lachende\": \"lachend\",\n  \"lachendem\": \"lachend\",\n  \"lachenden\": \"lachend\",\n  \"lachendes\": \"lachend\",\n  \"lächerlich\": \"lach\",\n  \"lächerlichen\": \"lach\",\n  \"lächerliches\": \"lach\",\n  \"lächerlichkeit\": \"lacher\",\n  \"lächerlichsten\": \"lach\",\n  \"lachkrampf\": \"lachkrampf\",\n  \"lachs\": \"lach\",\n  \"lacht\": \"lacht\",\n  \"lachte\": \"lacht\",\n  \"lachten\": \"lacht\",\n  \"lachtest\": \"lacht\",\n  \"lachtöne\": \"lachton\",\n  \"lackieren\": \"lacki\",\n  \"lackiert\": \"lackiert\",\n  \"lackierten\": \"lackiert\",\n  \"lackl\": \"lackl\",\n  \"lädchen\": \"ladch\",\n  \"lädchens\": \"ladch\",\n  \"lade\": \"lad\",\n  \"laden\": \"lad\",\n  \"läden\": \"lad\",\n  \"ladend\": \"ladend\",\n  \"ladendiebin\": \"ladendiebin\",\n  \"ladenkasse\": \"ladenkass\",\n  \"ladentür\": \"ladentur\",\n  \"ladies\": \"ladi\",\n  \"lädt\": \"ladt\",\n  \"ladung\": \"ladung\",\n  \"lady\": \"lady\",\n  \"laert\": \"laert\",\n  \"laertius\": \"laertius\",\n  \"lag\": \"lag\",\n  \"lage\": \"lag\",\n  \"läge\": \"lag\",\n  \"lagen\": \"lag\",\n  \"lägen\": \"lag\",\n  \"lager\": \"lag\",\n  \"lagern\": \"lag\",\n  \"lagernd\": \"lagernd\",\n  \"lagers\": \"lag\",\n  \"lagerstätte\": \"lagerstatt\",\n  \"lagert\": \"lagert\",\n  \"lagerte\": \"lagert\",\n  \"lahme\": \"lahm\",\n  \"lahmen\": \"lahm\",\n  \"lahmgewordenen\": \"lahmgeword\",\n  \"lahnstreif\": \"lahnstreif\",\n  \"laie\": \"laie\",\n  \"laien\": \"laien\",\n  \"lallt\": \"lallt\",\n  \"lamech\": \"lamech\",\n  \"lamechs\": \"lamech\",\n  \"lamentieren\": \"lamenti\",\n  \"lamentierte\": \"lamentiert\",\n  \"lamm\": \"lamm\",\n  \"lämmchen\": \"lammch\",\n  \"lamme\": \"lamm\",\n  \"lämmer\": \"lamm\",\n  \"lämmerwölkchen\": \"lammerwolkch\",\n  \"lammes\": \"lamm\",\n  \"lammgeduld\": \"lammgeduld\",\n  \"lämmlein\": \"lammlein\",\n  \"lämpchen\": \"lampch\",\n  \"lampe\": \"lamp\",\n  \"lamperl\": \"lamperl\",\n  \"lanciert\": \"lanciert\",\n  \"land\": \"land\",\n  \"landarmee\": \"landarme\",\n  \"landauer\": \"landau\",\n  \"landbursche\": \"landbursch\",\n  \"ländchen\": \"landch\",\n  \"ländchens\": \"landch\",\n  \"lande\": \"land\",\n  \"landen\": \"land\",\n  \"länder\": \"land\",\n  \"länderfernen\": \"landerfern\",\n  \"ländern\": \"land\",\n  \"landes\": \"land\",\n  \"landesautoritäten\": \"landesautoritat\",\n  \"landesfürst\": \"landesfurst\",\n  \"landeskirche\": \"landeskirch\",\n  \"landeskirchen\": \"landeskirch\",\n  \"landeskirchliche\": \"landeskirch\",\n  \"landesmehrheit\": \"landesmehr\",\n  \"landesüblichen\": \"landesub\",\n  \"landesverteidigung\": \"landesverteid\",\n  \"landeswohl\": \"landeswohl\",\n  \"landete\": \"landet\",\n  \"landeten\": \"landet\",\n  \"landflüchtige\": \"landflucht\",\n  \"landfrau\": \"landfrau\",\n  \"landfriedenbrecher\": \"landfriedenbrech\",\n  \"landgericht\": \"landgericht\",\n  \"landhaus\": \"landhaus\",\n  \"landläufige\": \"landlauf\",\n  \"landleben\": \"landleb\",\n  \"landleute\": \"landleut\",\n  \"landleuten\": \"landleut\",\n  \"ländliche\": \"landlich\",\n  \"ländlichen\": \"landlich\",\n  \"landmädchen\": \"landmadch\",\n  \"landmann\": \"landmann\",\n  \"landmänner\": \"landmann\",\n  \"landpartie\": \"landparti\",\n  \"landpartien\": \"landparti\",\n  \"landrock\": \"landrock\",\n  \"landschaft\": \"landschaft\",\n  \"landschaften\": \"landschaft\",\n  \"landsitz\": \"landsitz\",\n  \"landsleute\": \"landsleut\",\n  \"landsmann\": \"landsmann\",\n  \"landsmannes\": \"landsmann\",\n  \"landstrasse\": \"landstrass\",\n  \"landstrassen\": \"landstrass\",\n  \"landstraßen\": \"landstrass\",\n  \"landstreicher\": \"landstreich\",\n  \"landstrich\": \"landstrich\",\n  \"landstriches\": \"landstrich\",\n  \"landsturm\": \"landsturm\",\n  \"landungsstelle\": \"landungsstell\",\n  \"landvolk\": \"landvolk\",\n  \"landvolkes\": \"landvolk\",\n  \"landwirtschaft\": \"landwirtschaft\",\n  \"lang\": \"lang\",\n  \"langbeinen\": \"langbein\",\n  \"lange\": \"lang\",\n  \"länge\": \"lang\",\n  \"langem\": \"lang\",\n  \"langen\": \"lang\",\n  \"langer\": \"lang\",\n  \"länger\": \"lang\",\n  \"längere\": \"lang\",\n  \"längeren\": \"lang\",\n  \"längerer\": \"lang\",\n  \"langes\": \"lang\",\n  \"langeweile\": \"langeweil\",\n  \"langgezogenen\": \"langgezog\",\n  \"langhingestreckte\": \"langhingestreckt\",\n  \"langjährige\": \"langjahr\",\n  \"langjährigen\": \"langjahr\",\n  \"längliche\": \"langlich\",\n  \"länglichen\": \"langlich\",\n  \"längliches\": \"langlich\",\n  \"langmut\": \"langmut\",\n  \"langmütig\": \"langmut\",\n  \"langriemige\": \"langriem\",\n  \"langrollende\": \"langroll\",\n  \"langsam\": \"langsam\",\n  \"langsame\": \"langsam\",\n  \"langsamen\": \"langsam\",\n  \"langsamer\": \"langsam\",\n  \"langsamkeit\": \"langsam\",\n  \"längst\": \"lang\",\n  \"längste\": \"lang\",\n  \"längsten\": \"lang\",\n  \"längstens\": \"langst\",\n  \"langstündige\": \"langstund\",\n  \"langte\": \"langt\",\n  \"langweilen\": \"langweil\",\n  \"langweilig\": \"langweil\",\n  \"langweilige\": \"langweil\",\n  \"langweiligen\": \"langweil\",\n  \"lanz\": \"lanz\",\n  \"lanze\": \"lanz\",\n  \"läppische\": \"lappisch\",\n  \"lärchenstämmchen\": \"larchenstammch\",\n  \"largo\": \"largo\",\n  \"larifari\": \"larifari\",\n  \"lärm\": \"larm\",\n  \"lärmen\": \"larm\",\n  \"lärmende\": \"larmend\",\n  \"lärmendes\": \"larmend\",\n  \"lärmten\": \"larmt\",\n  \"las\": \"las\",\n  \"lasen\": \"las\",\n  \"lass\": \"lass\",\n  \"laß\": \"lass\",\n  \"lasse\": \"lass\",\n  \"lassen\": \"lass\",\n  \"lässest\": \"lass\",\n  \"lasset\": \"lasset\",\n  \"lässig\": \"lassig\",\n  \"lasst\": \"lasst\",\n  \"laßt\": \"lasst\",\n  \"lässt\": \"lasst\",\n  \"läßt\": \"lasst\",\n  \"last\": \"last\",\n  \"lasten\": \"last\",\n  \"laster\": \"last\",\n  \"lasterhaften\": \"lasterhaft\",\n  \"lästerliche\": \"last\",\n  \"lästerliches\": \"last\",\n  \"lästerlichstem\": \"last\",\n  \"lastern\": \"last\",\n  \"lästern\": \"last\",\n  \"lästerns\": \"lastern\",\n  \"lästert\": \"lastert\",\n  \"lästerte\": \"lastert\",\n  \"lästerten\": \"lastert\",\n  \"lästerung\": \"laster\",\n  \"lästerungen\": \"laster\",\n  \"lastete\": \"lastet\",\n  \"lastfuhren\": \"lastfuhr\",\n  \"lästig\": \"lastig\",\n  \"lästige\": \"lastig\",\n  \"lastschlitten\": \"lastschlitt\",\n  \"lat\": \"lat\",\n  \"lateiner\": \"latein\",\n  \"lateinerte\": \"lateinert\",\n  \"lateinisch\": \"latein\",\n  \"lateinische\": \"latein\",\n  \"lateinischen\": \"latein\",\n  \"lateinschuljahr\": \"lateinschuljahr\",\n  \"laternchen\": \"laternch\",\n  \"laterne\": \"latern\",\n  \"laternen\": \"latern\",\n  \"lattenzaunes\": \"lattenzaun\",\n  \"lattichblatt\": \"lattichblatt\",\n  \"laub\": \"laub\",\n  \"laube\": \"laub\",\n  \"lauben\": \"laub\",\n  \"laubhütten\": \"laubhutt\",\n  \"laubmassen\": \"laubmass\",\n  \"lauen\": \"lau\",\n  \"lauer\": \"lau\",\n  \"lauerten\": \"lauert\",\n  \"lauf\": \"lauf\",\n  \"laufbahn\": \"laufbahn\",\n  \"laufe\": \"lauf\",\n  \"laufen\": \"lauf\",\n  \"laufend\": \"laufend\",\n  \"laufendem\": \"laufend\",\n  \"laufenden\": \"laufend\",\n  \"läufer\": \"lauf\",\n  \"laufes\": \"lauf\",\n  \"laufet\": \"laufet\",\n  \"laufs\": \"lauf\",\n  \"lauft\": \"lauft\",\n  \"läuft\": \"lauft\",\n  \"laune\": \"laun\",\n  \"launen\": \"laun\",\n  \"launigen\": \"launig\",\n  \"laurens\": \"laur\",\n  \"lausanne\": \"lausann\",\n  \"lauschend\": \"lauschend\",\n  \"lauschens\": \"lausch\",\n  \"lauscher\": \"lausch\",\n  \"lauschte\": \"lauscht\",\n  \"lauschten\": \"lauscht\",\n  \"läuse\": \"laus\",\n  \"lausekerl\": \"lausekerl\",\n  \"läusen\": \"laus\",\n  \"laut\": \"laut\",\n  \"laute\": \"laut\",\n  \"lautem\": \"laut\",\n  \"lauten\": \"laut\",\n  \"läuten\": \"laut\",\n  \"lauter\": \"laut\",\n  \"lautere\": \"laut\",\n  \"lauterem\": \"laut\",\n  \"lauteren\": \"laut\",\n  \"lauterkeit\": \"lauter\",\n  \"läutern\": \"laut\",\n  \"läuternd\": \"lauternd\",\n  \"lautes\": \"laut\",\n  \"lautet\": \"lautet\",\n  \"läutet\": \"lautet\",\n  \"lautete\": \"lautet\",\n  \"läutete\": \"lautet\",\n  \"lautlos\": \"lautlos\",\n  \"lautlose\": \"lautlos\",\n  \"lautloser\": \"lautlos\",\n  \"lautsprecher\": \"lautsprech\",\n  \"lautsprechern\": \"lautsprech\",\n  \"lautstarke\": \"lautstark\",\n  \"lazare\": \"lazar\",\n  \"lazarus\": \"lazarus\",\n  \"le\": \"le\",\n  \"leah\": \"leah\",\n  \"leb\": \"leb\",\n  \"lebe\": \"leb\",\n  \"leben\": \"leb\",\n  \"lebend\": \"lebend\",\n  \"lebende\": \"lebend\",\n  \"lebenden\": \"lebend\",\n  \"lebendes\": \"lebend\",\n  \"lebendig\": \"lebend\",\n  \"lebendige\": \"lebend\",\n  \"lebendigem\": \"lebend\",\n  \"lebendigen\": \"lebend\",\n  \"lebendiger\": \"lebend\",\n  \"lebendiges\": \"lebend\",\n  \"lebendigsten\": \"lebend\",\n  \"lebens\": \"leb\",\n  \"lebensabschnitt\": \"lebensabschnitt\",\n  \"lebensähnliches\": \"lebensahn\",\n  \"lebensalter\": \"lebensalt\",\n  \"lebensart\": \"lebensart\",\n  \"lebensbedingungen\": \"lebensbeding\",\n  \"lebensbedürfnis\": \"lebensbedurfnis\",\n  \"lebensbeschreibung\": \"lebensbeschreib\",\n  \"lebensbuche\": \"lebensbuch\",\n  \"lebenselixier\": \"lebenselixi\",\n  \"lebensfahrt\": \"lebensfahrt\",\n  \"lebensfeuer\": \"lebensfeu\",\n  \"lebensformen\": \"lebensform\",\n  \"lebensfreude\": \"lebensfreud\",\n  \"lebensfroh\": \"lebensfroh\",\n  \"lebensgefühl\": \"lebensgefuhl\",\n  \"lebensgeister\": \"lebensgeist\",\n  \"lebensgeschichte\": \"lebensgeschicht\",\n  \"lebensglück\": \"lebensgluck\",\n  \"lebensglücke\": \"lebensgluck\",\n  \"lebensguten\": \"lebensgut\",\n  \"lebenshelfer\": \"lebenshelf\",\n  \"lebensjahr\": \"lebensjahr\",\n  \"lebenskatastrophe\": \"lebenskatastroph\",\n  \"lebenskraft\": \"lebenskraft\",\n  \"lebenskräftig\": \"lebenskraft\",\n  \"lebenslanges\": \"lebenslang\",\n  \"lebenslauf\": \"lebenslauf\",\n  \"lebensläufen\": \"lebenslauf\",\n  \"lebenslicht\": \"lebenslicht\",\n  \"lebenslust\": \"lebenslust\",\n  \"lebenslustigen\": \"lebenslust\",\n  \"lebensmittel\": \"lebensmittel\",\n  \"lebensmittelembargos\": \"lebensmittelembargos\",\n  \"lebensmitteln\": \"lebensmitteln\",\n  \"lebensmut\": \"lebensmut\",\n  \"lebensordnung\": \"lebensordn\",\n  \"lebensordnungen\": \"lebensordn\",\n  \"lebensregeln\": \"lebensregeln\",\n  \"lebensretter\": \"lebensrett\",\n  \"lebenssache\": \"lebenssach\",\n  \"lebenssachverhalten\": \"lebenssachverhalt\",\n  \"lebensseligkeit\": \"lebenssel\",\n  \"lebenssituation\": \"lebenssituation\",\n  \"lebensstunde\": \"lebensstund\",\n  \"lebenstagen\": \"lebenstag\",\n  \"lebenstrieb\": \"lebenstrieb\",\n  \"lebenswandel\": \"lebenswandel\",\n  \"lebenswandels\": \"lebenswandel\",\n  \"lebenswasser\": \"lebenswass\",\n  \"lebensweg\": \"lebensweg\",\n  \"lebensweise\": \"lebensweis\",\n  \"lebensweisen\": \"lebensweis\",\n  \"lebensweisheit\": \"lebensweis\",\n  \"lebenszustand\": \"lebenszustand\",\n  \"lebenszustände\": \"lebenszustand\",\n  \"leber\": \"leb\",\n  \"leberwurst\": \"leberwurst\",\n  \"lebest\": \"leb\",\n  \"lebewohl\": \"lebewohl\",\n  \"lebhaft\": \"lebhaft\",\n  \"lebhafte\": \"lebhaft\",\n  \"lebhaftem\": \"lebhaft\",\n  \"lebhaften\": \"lebhaft\",\n  \"lebhafter\": \"lebhaft\",\n  \"lebhaftesten\": \"lebhaft\",\n  \"lebhaftigkeit\": \"lebhaft\",\n  \"lebkuchen\": \"lebkuch\",\n  \"leblos\": \"leblos\",\n  \"leblose\": \"leblos\",\n  \"leblosen\": \"leblos\",\n  \"lebloses\": \"leblos\",\n  \"lebst\": \"lebst\",\n  \"lebt\": \"lebt\",\n  \"lebtag\": \"lebtag\",\n  \"lebte\": \"lebt\",\n  \"lebten\": \"lebt\",\n  \"lebzeiten\": \"lebzeit\",\n  \"lechleitner\": \"lechleitn\",\n  \"lechneitner\": \"lechneitn\",\n  \"lechzt\": \"lechzt\",\n  \"lechzte\": \"lechzt\",\n  \"lechzten\": \"lechzt\",\n  \"lecken\": \"leck\",\n  \"lecker\": \"leck\",\n  \"leckerbissen\": \"leckerbiss\",\n  \"leckere\": \"leck\",\n  \"leckeren\": \"leck\",\n  \"leckeres\": \"leck\",\n  \"leckermäuler\": \"leckermaul\",\n  \"leckte\": \"leckt\",\n  \"leder\": \"led\",\n  \"lederkäppchen\": \"lederkappch\",\n  \"lederkleidung\": \"lederkleid\",\n  \"ledernen\": \"ledern\",\n  \"lederpantoffeln\": \"lederpantoffeln\",\n  \"ledersäckchen\": \"ledersackch\",\n  \"ledersofa\": \"ledersofa\",\n  \"ledertapeten\": \"ledertapet\",\n  \"lederzeug\": \"lederzeug\",\n  \"ledig\": \"ledig\",\n  \"ledige\": \"ledig\",\n  \"lediglich\": \"ledig\",\n  \"leer\": \"leer\",\n  \"leere\": \"leer\",\n  \"leeren\": \"leer\",\n  \"leerer\": \"leer\",\n  \"leeres\": \"leer\",\n  \"leerheit\": \"leerheit\",\n  \"leerraum\": \"leerraum\",\n  \"leerstehende\": \"leersteh\",\n  \"leerte\": \"leert\",\n  \"leg\": \"leg\",\n  \"legalität\": \"legalitat\",\n  \"lege\": \"leg\",\n  \"legen\": \"leg\",\n  \"legendenbildung\": \"legendenbild\",\n  \"leget\": \"leget\",\n  \"legislative\": \"legislativ\",\n  \"legitimation\": \"legitimation\",\n  \"legitimationspapier\": \"legitimationspapi\",\n  \"legitimationspapiere\": \"legitimationspapi\",\n  \"legt\": \"legt\",\n  \"legte\": \"legt\",\n  \"legten\": \"legt\",\n  \"lehmann\": \"lehmann\",\n  \"lehmiger\": \"lehmig\",\n  \"lehne\": \"lehn\",\n  \"lehnsessel\": \"lehnsessel\",\n  \"lehnt\": \"lehnt\",\n  \"lehnte\": \"lehnt\",\n  \"lehnten\": \"lehnt\",\n  \"lehr\": \"lehr\",\n  \"lehramtes\": \"lehramt\",\n  \"lehrbegriff\": \"lehrbegriff\",\n  \"lehrbegriffe\": \"lehrbegriff\",\n  \"lehrbestimmungen\": \"lehrbestimm\",\n  \"lehre\": \"lehr\",\n  \"lehren\": \"lehr\",\n  \"lehrende\": \"lehrend\",\n  \"lehrenden\": \"lehrend\",\n  \"lehrens\": \"lehr\",\n  \"lehrer\": \"lehr\",\n  \"lehrerin\": \"lehrerin\",\n  \"lehrern\": \"lehr\",\n  \"lehrerpult\": \"lehrerpult\",\n  \"lehret\": \"lehret\",\n  \"lehrgegenstände\": \"lehrgegenstand\",\n  \"lehrjahren\": \"lehrjahr\",\n  \"lehrling\": \"lehrling\",\n  \"lehrlinge\": \"lehrling\",\n  \"lehrmeinungen\": \"lehrmein\",\n  \"lehrpunkte\": \"lehrpunkt\",\n  \"lehrreichen\": \"lehrreich\",\n  \"lehrreicher\": \"lehrreich\",\n  \"lehrreiches\": \"lehrreich\",\n  \"lehrsatz\": \"lehrsatz\",\n  \"lehrsätze\": \"lehrsatz\",\n  \"lehrsätzen\": \"lehrsatz\",\n  \"lehrstück\": \"lehrstuck\",\n  \"lehrstücke\": \"lehrstuck\",\n  \"lehrt\": \"lehrt\",\n  \"lehrte\": \"lehrt\",\n  \"lehrten\": \"lehrt\",\n  \"lehrwahrheiten\": \"lehrwahr\",\n  \"leib\": \"leib\",\n  \"leibarzt\": \"leibarzt\",\n  \"leibe\": \"leib\",\n  \"leiber\": \"leib\",\n  \"leibes\": \"leib\",\n  \"leibesgestalt\": \"leibesgestalt\",\n  \"leibesleben\": \"leibesleb\",\n  \"leibesnahrung\": \"leibesnahr\",\n  \"leibesorgane\": \"leibesorgan\",\n  \"leibesübungen\": \"leibesub\",\n  \"leibgericht\": \"leibgericht\",\n  \"leibgerichte\": \"leibgericht\",\n  \"leibhafte\": \"leibhaft\",\n  \"leibhaftige\": \"leibhaft\",\n  \"leibhornisten\": \"leibhornist\",\n  \"leibjäger\": \"leibjag\",\n  \"leibjägern\": \"leibjag\",\n  \"leiblich\": \"leiblich\",\n  \"leibliche\": \"leiblich\",\n  \"leiblichen\": \"leiblich\",\n  \"leiblicher\": \"leiblich\",\n  \"leibliches\": \"leiblich\",\n  \"leibpferd\": \"leibpferd\",\n  \"leibröcke\": \"leibrock\",\n  \"leibsessel\": \"leibsessel\",\n  \"leibt\": \"leibt\",\n  \"leibte\": \"leibt\",\n  \"leibteller\": \"leibtell\",\n  \"leiche\": \"leich\",\n  \"leichen\": \"leich\",\n  \"leichenbegängnis\": \"leichenbegangnis\",\n  \"leichengestank\": \"leichengestank\",\n  \"leichenschmaus\": \"leichenschmaus\",\n  \"leichnam\": \"leichnam\",\n  \"leichname\": \"leichnam\",\n  \"leichnamen\": \"leichnam\",\n  \"leicht\": \"leicht\",\n  \"leichtbeschwingte\": \"leichtbeschwingt\",\n  \"leichte\": \"leicht\",\n  \"leichten\": \"leicht\",\n  \"leichter\": \"leicht\",\n  \"leichtere\": \"leicht\",\n  \"leichtes\": \"leicht\",\n  \"leichtfertige\": \"leichtfert\",\n  \"leichtfertigem\": \"leichtfert\",\n  \"leichtfertiges\": \"leichtfert\",\n  \"leichthin\": \"leichthin\",\n  \"leichtigkeit\": \"leichtig\",\n  \"leichtlich\": \"leichtlich\",\n  \"leichtsinn\": \"leichtsinn\",\n  \"leichtsinnig\": \"leichtsinn\",\n  \"leichtsinnige\": \"leichtsinn\",\n  \"leichtsinnigen\": \"leichtsinn\",\n  \"leichtsinniger\": \"leichtsinn\",\n  \"leichtsinnigkeit\": \"leichtsinn\",\n  \"leichtsinns\": \"leichtsinn\",\n  \"leid\": \"leid\",\n  \"leide\": \"leid\",\n  \"leiden\": \"leid\",\n  \"leidend\": \"leidend\",\n  \"leidende\": \"leidend\",\n  \"leidenden\": \"leidend\",\n  \"leidendes\": \"leidend\",\n  \"leidens\": \"leid\",\n  \"leidenschaft\": \"leidenschaft\",\n  \"leidenschaften\": \"leidenschaft\",\n  \"leidenschaftlich\": \"leidenschaft\",\n  \"leidenschaftliche\": \"leidenschaft\",\n  \"leidenschaftlicher\": \"leidenschaft\",\n  \"leidenschaftlichkeit\": \"leidenschaft\",\n  \"leidensgenossen\": \"leidensgenoss\",\n  \"leidentlich\": \"leident\",\n  \"leider\": \"leid\",\n  \"leides\": \"leid\",\n  \"leidet\": \"leidet\",\n  \"leidige\": \"leidig\",\n  \"leidlich\": \"leidlich\",\n  \"leids\": \"leid\",\n  \"leierkasten\": \"leierkast\",\n  \"leiermann\": \"leiermann\",\n  \"leiermänner\": \"leiermann\",\n  \"leihen\": \"leih\",\n  \"leim\": \"leim\",\n  \"leimrute\": \"leimrut\",\n  \"lein\": \"lein\",\n  \"leine\": \"lein\",\n  \"leinen\": \"lein\",\n  \"leinene\": \"lein\",\n  \"leinenen\": \"lein\",\n  \"leinentüchern\": \"leinentuch\",\n  \"leins\": \"lein\",\n  \"leinwand\": \"leinwand\",\n  \"leinwandbinde\": \"leinwandbind\",\n  \"leinwandgewändern\": \"leinwandgewand\",\n  \"leinwandne\": \"leinwandn\",\n  \"leinwandstreifen\": \"leinwandstreif\",\n  \"leipzig\": \"leipzig\",\n  \"leis\": \"leis\",\n  \"leisbewegte\": \"leisbewegt\",\n  \"leise\": \"leis\",\n  \"leisen\": \"leis\",\n  \"leiser\": \"leis\",\n  \"leises\": \"leis\",\n  \"leiseste\": \"leis\",\n  \"leisten\": \"leist\",\n  \"leistet\": \"leistet\",\n  \"leistete\": \"leistet\",\n  \"leisteten\": \"leistet\",\n  \"leistung\": \"leistung\",\n  \"leistungen\": \"leistung\",\n  \"leistungsfähigen\": \"leistungsfah\",\n  \"leit\": \"leit\",\n  \"leite\": \"leit\",\n  \"leiten\": \"leit\",\n  \"leiter\": \"leit\",\n  \"leiterchen\": \"leiterch\",\n  \"leiterin\": \"leiterin\",\n  \"leiters\": \"leit\",\n  \"leitest\": \"leit\",\n  \"leitet\": \"leitet\",\n  \"leitete\": \"leitet\",\n  \"leitner\": \"leitn\",\n  \"leitnermali\": \"leitnermali\",\n  \"leitseil\": \"leitseil\",\n  \"leitstern\": \"leit\",\n  \"leitung\": \"leitung\",\n  \"leitwort\": \"leitwort\",\n  \"lenden\": \"lend\",\n  \"leni\": \"leni\",\n  \"lenis\": \"lenis\",\n  \"lenken\": \"lenk\",\n  \"lenkerin\": \"lenkerin\",\n  \"lenkt\": \"lenkt\",\n  \"lenkte\": \"lenkt\",\n  \"lenzlichte\": \"lenzlicht\",\n  \"lenzwind\": \"lenzwind\",\n  \"leopard\": \"leopard\",\n  \"lerche\": \"lerch\",\n  \"lerchen\": \"lerch\",\n  \"lerne\": \"lern\",\n  \"lernen\": \"lern\",\n  \"lernens\": \"lern\",\n  \"lernt\": \"lernt\",\n  \"lernte\": \"lernt\",\n  \"lesebücher\": \"lesebuch\",\n  \"lesen\": \"les\",\n  \"leser\": \"les\",\n  \"leserforum\": \"leserforum\",\n  \"lestungen\": \"lestung\",\n  \"lettern\": \"lett\",\n  \"letzt\": \"letzt\",\n  \"letzte\": \"letzt\",\n  \"letzten\": \"letzt\",\n  \"letztenmal\": \"letztenmal\",\n  \"letzter\": \"letzt\",\n  \"letztere\": \"letzt\",\n  \"letzterem\": \"letzt\",\n  \"letzteren\": \"letzt\",\n  \"letzterer\": \"letzt\",\n  \"letzteres\": \"letzt\",\n  \"letztern\": \"letzt\",\n  \"letztes\": \"letzt\",\n  \"letztesmal\": \"letztesmal\",\n  \"letzthin\": \"letzthin\",\n  \"letztlich\": \"letztlich\",\n  \"leuchte\": \"leucht\",\n  \"leuchten\": \"leucht\",\n  \"leuchtend\": \"leuchtend\",\n  \"leuchtende\": \"leuchtend\",\n  \"leuchtendem\": \"leuchtend\",\n  \"leuchtenden\": \"leuchtend\",\n  \"leuchtender\": \"leuchtend\",\n  \"leuchter\": \"leucht\",\n  \"leuchtern\": \"leucht\",\n  \"leuchtet\": \"leuchtet\",\n  \"leuchtete\": \"leuchtet\",\n  \"leuchteten\": \"leuchtet\",\n  \"leuchtkäfer\": \"leuchtkaf\",\n  \"leugnen\": \"leugn\",\n  \"leugnet\": \"leugnet\",\n  \"leugneten\": \"leugnet\",\n  \"leugnung\": \"leugnung\",\n  \"leut\": \"leut\",\n  \"leutchen\": \"leutch\",\n  \"leute\": \"leut\",\n  \"leuten\": \"leut\",\n  \"leutlein\": \"leutlein\",\n  \"leutnants\": \"leutnant\",\n  \"leutselig\": \"leutsel\",\n  \"leutseligkeit\": \"leutsel\",\n  \"levi\": \"levi\",\n  \"leviathan\": \"leviathan\",\n  \"leviathans\": \"leviathan\",\n  \"levis\": \"levis\",\n  \"levit\": \"levit\",\n  \"levite\": \"levit\",\n  \"leviten\": \"levit\",\n  \"lex\": \"lex\",\n  \"lhrem\": \"lhrem\",\n  \"libanon\": \"libanon\",\n  \"libanons\": \"libanon\",\n  \"libellen\": \"libell\",\n  \"liber\": \"lib\",\n  \"liberale\": \"liberal\",\n  \"liberalen\": \"liberal\",\n  \"liberaler\": \"liberal\",\n  \"libero\": \"libero\",\n  \"libni\": \"libni\",\n  \"libyer\": \"liby\",\n  \"lich\": \"lich\",\n  \"liche\": \"lich\",\n  \"licht\": \"licht\",\n  \"lichtarten\": \"lichtart\",\n  \"lichtbahn\": \"lichtbahn\",\n  \"lichtbraunes\": \"lichtbraun\",\n  \"lichte\": \"licht\",\n  \"lichtecke\": \"lichteck\",\n  \"lichtem\": \"licht\",\n  \"lichten\": \"licht\",\n  \"lichter\": \"licht\",\n  \"lichterchen\": \"lichterch\",\n  \"lichteren\": \"licht\",\n  \"lichterloh\": \"lichterloh\",\n  \"lichtern\": \"licht\",\n  \"lichtes\": \"licht\",\n  \"lichtete\": \"lichtet\",\n  \"lichtfeld\": \"lichtfeld\",\n  \"lichtflocken\": \"lichtflock\",\n  \"lichtpünktchen\": \"lichtpunktch\",\n  \"lichts\": \"licht\",\n  \"lichtstrahlen\": \"lichtstrahl\",\n  \"lichtstrahlungen\": \"lichtstrahl\",\n  \"lichtung\": \"lichtung\",\n  \"lichtungen\": \"lichtung\",\n  \"lichtvoll\": \"lichtvoll\",\n  \"lider\": \"lid\",\n  \"lieb\": \"lieb\",\n  \"liebchen\": \"liebch\",\n  \"liebe\": \"lieb\",\n  \"liebegutes\": \"liebegut\",\n  \"lieben\": \"lieb\",\n  \"liebende\": \"liebend\",\n  \"liebenden\": \"liebend\",\n  \"liebenswürdig\": \"liebenswurd\",\n  \"liebenswürdige\": \"liebenswurd\",\n  \"liebenswürdigen\": \"liebenswurd\",\n  \"liebenswürdiger\": \"liebenswurd\",\n  \"liebenswürdigkeit\": \"liebenswurd\",\n  \"liebenswürdigste\": \"liebenswurd\",\n  \"lieber\": \"lieb\",\n  \"lieberasenden\": \"lieberas\",\n  \"liebes\": \"lieb\",\n  \"liebesaffäre\": \"liebesaffar\",\n  \"liebesarten\": \"liebesart\",\n  \"liebesbezeugungen\": \"liebesbezeug\",\n  \"liebesbriefe\": \"liebesbrief\",\n  \"liebeserklärung\": \"liebeserklar\",\n  \"liebeserklärungen\": \"liebeserklar\",\n  \"liebesfeuer\": \"liebesfeu\",\n  \"liebesfurcht\": \"liebesfurcht\",\n  \"liebesgedanken\": \"liebesgedank\",\n  \"liebesgeschichte\": \"liebesgeschicht\",\n  \"liebesgeschwellten\": \"liebesgeschwellt\",\n  \"liebesgetändel\": \"liebesgetandel\",\n  \"liebesglut\": \"liebesglut\",\n  \"liebesgschicht\": \"liebesgschicht\",\n  \"liebeshandel\": \"liebeshandel\",\n  \"liebeshaus\": \"liebeshaus\",\n  \"liebeslauten\": \"liebeslaut\",\n  \"liebesliebe\": \"liebeslieb\",\n  \"liebesliteratur\": \"liebesliteratur\",\n  \"liebeslocken\": \"liebeslock\",\n  \"liebesneigungen\": \"liebesneig\",\n  \"liebespflicht\": \"liebespflicht\",\n  \"liebestolle\": \"liebestoll\",\n  \"liebestriebe\": \"liebestrieb\",\n  \"liebestrieben\": \"liebestrieb\",\n  \"liebeswerke\": \"liebeswerk\",\n  \"liebeswerken\": \"liebeswerk\",\n  \"liebet\": \"liebet\",\n  \"liebevoll\": \"liebevoll\",\n  \"liebevollen\": \"liebevoll\",\n  \"liebfrauenkirche\": \"liebfrauenkirch\",\n  \"liebhaben\": \"liebhab\",\n  \"liebhaber\": \"liebhab\",\n  \"liebhabern\": \"liebhab\",\n  \"liebkosen\": \"liebkos\",\n  \"liebkosendes\": \"liebkos\",\n  \"liebkost\": \"liebkost\",\n  \"liebkoste\": \"liebkost\",\n  \"liebkosungen\": \"liebkos\",\n  \"lieblich\": \"lieblich\",\n  \"liebliche\": \"lieblich\",\n  \"lieblichem\": \"lieblich\",\n  \"lieblichen\": \"lieblich\",\n  \"lieblicher\": \"lieblich\",\n  \"liebliches\": \"lieblich\",\n  \"lieblichkeit\": \"lieblich\",\n  \"lieblichste\": \"lieblich\",\n  \"lieblichsten\": \"lieblich\",\n  \"liebling\": \"liebling\",\n  \"lieblingsbilder\": \"lieblingsbild\",\n  \"lieblos\": \"lieblos\",\n  \"liebreich\": \"liebreich\",\n  \"liebreizenden\": \"liebreiz\",\n  \"liebs\": \"lieb\",\n  \"liebsleut\": \"liebsleut\",\n  \"liebst\": \"lieb\",\n  \"liebste\": \"lieb\",\n  \"liebsten\": \"lieb\",\n  \"liebster\": \"lieb\",\n  \"liebstes\": \"lieb\",\n  \"liebt\": \"liebt\",\n  \"liebtätigkeit\": \"liebtat\",\n  \"liebtätigkeitswerke\": \"liebtatigkeitswerk\",\n  \"liebte\": \"liebt\",\n  \"liebten\": \"liebt\",\n  \"lied\": \"lied\",\n  \"liedchen\": \"liedch\",\n  \"liede\": \"lied\",\n  \"lieder\": \"lied\",\n  \"liederbuch\": \"liederbuch\",\n  \"liederchen\": \"liederch\",\n  \"liedergäste\": \"liedergast\",\n  \"liederlich\": \"lied\",\n  \"liederlichen\": \"lied\",\n  \"liederlicher\": \"lied\",\n  \"liedern\": \"lied\",\n  \"liedes\": \"lied\",\n  \"liedl\": \"liedl\",\n  \"liedln\": \"liedln\",\n  \"lief\": \"lief\",\n  \"liefe\": \"lief\",\n  \"liefen\": \"lief\",\n  \"liefern\": \"lief\",\n  \"liefert\": \"liefert\",\n  \"lieferung\": \"liefer\",\n  \"lieg\": \"lieg\",\n  \"liege\": \"lieg\",\n  \"liegen\": \"lieg\",\n  \"liegend\": \"liegend\",\n  \"liegende\": \"liegend\",\n  \"liegenden\": \"liegend\",\n  \"liegendes\": \"liegend\",\n  \"liegengeblieben\": \"liegengeblieb\",\n  \"liegengelassen\": \"liegengelass\",\n  \"liegenlassen\": \"liegenlass\",\n  \"liegst\": \"lieg\",\n  \"liegt\": \"liegt\",\n  \"lieh\": \"lieh\",\n  \"lieschen\": \"liesch\",\n  \"liese\": \"lies\",\n  \"liess\": \"liess\",\n  \"ließ\": \"liess\",\n  \"liesse\": \"liess\",\n  \"ließe\": \"liess\",\n  \"liessen\": \"liess\",\n  \"ließen\": \"liess\",\n  \"liest\": \"liest\",\n  \"liestal\": \"liestal\",\n  \"life\": \"lif\",\n  \"liked\": \"liked\",\n  \"limonade\": \"limonad\",\n  \"limonaden\": \"limonad\",\n  \"lind\": \"lind\",\n  \"linde\": \"lind\",\n  \"linden\": \"lind\",\n  \"lindenblättchen\": \"lindenblattch\",\n  \"lindenbolz\": \"lindenbolz\",\n  \"lindengebüsches\": \"lindengebusch\",\n  \"lindenkranze\": \"lindenkranz\",\n  \"lindern\": \"lind\",\n  \"lineal\": \"lineal\",\n  \"linie\": \"lini\",\n  \"linien\": \"lini\",\n  \"linienschiffe\": \"linienschiff\",\n  \"linke\": \"link\",\n  \"linken\": \"link\",\n  \"linker\": \"link\",\n  \"linkes\": \"link\",\n  \"linkische\": \"linkisch\",\n  \"links\": \"link\",\n  \"linnen\": \"linn\",\n  \"linum\": \"linum\",\n  \"lipp\": \"lipp\",\n  \"lippe\": \"lipp\",\n  \"lippen\": \"lipp\",\n  \"lippenbeissen\": \"lippenbeiss\",\n  \"lippenbeißen\": \"lippenbeiss\",\n  \"lippenbewegungen\": \"lippenbeweg\",\n  \"lipps\": \"lipps\",\n  \"liquidierte\": \"liquidiert\",\n  \"lischer\": \"lisch\",\n  \"lischsprachiges\": \"lischsprach\",\n  \"lispeln\": \"lispeln\",\n  \"lissabon\": \"lissabon\",\n  \"list\": \"list\",\n  \"liste\": \"list\",\n  \"listen\": \"list\",\n  \"listig\": \"listig\",\n  \"listige\": \"listig\",\n  \"listigen\": \"listig\",\n  \"listiger\": \"listig\",\n  \"listigerweise\": \"listigerweis\",\n  \"listiges\": \"listig\",\n  \"liter\": \"lit\",\n  \"literatur\": \"literatur\",\n  \"literaturliste\": \"literaturlist\",\n  \"litt\": \"litt\",\n  \"litte\": \"litt\",\n  \"litten\": \"litt\",\n  \"living\": \"living\",\n  \"livius\": \"livius\",\n  \"livree\": \"livre\",\n  \"ln\": \"ln\",\n  \"lndikativ\": \"lndikativ\",\n  \"load\": \"load\",\n  \"lob\": \"lob\",\n  \"lobe\": \"lob\",\n  \"loben\": \"lob\",\n  \"lobenden\": \"lobend\",\n  \"lobet\": \"lobet\",\n  \"lobgesang\": \"lobgesang\",\n  \"löblicher\": \"loblich\",\n  \"lobpreisen\": \"lobpreis\",\n  \"lobpreisung\": \"lobpreis\",\n  \"lobsingen\": \"lobsing\",\n  \"lobsinget\": \"lobsinget\",\n  \"lobt\": \"lobt\",\n  \"lobte\": \"lobt\",\n  \"loch\": \"loch\",\n  \"löchelchen\": \"lochelch\",\n  \"löcher\": \"loch\",\n  \"loci\": \"loci\",\n  \"locis\": \"locis\",\n  \"löckchen\": \"lockch\",\n  \"locken\": \"lock\",\n  \"lockend\": \"lockend\",\n  \"lockenden\": \"lockend\",\n  \"lockenhaar\": \"lockenhaar\",\n  \"lockenkopfe\": \"lockenkopf\",\n  \"lockerten\": \"lockert\",\n  \"lockort\": \"lockort\",\n  \"lockruf\": \"lockruf\",\n  \"lockte\": \"lockt\",\n  \"locus\": \"locus\",\n  \"lodenmantel\": \"lodenmantel\",\n  \"loeb\": \"loeb\",\n  \"löffel\": \"loffel\",\n  \"löffeln\": \"loffeln\",\n  \"log\": \"log\",\n  \"loge\": \"log\",\n  \"logik\": \"logik\",\n  \"logisch\": \"logisch\",\n  \"logische\": \"logisch\",\n  \"logischen\": \"logisch\",\n  \"logouv\": \"logouv\",\n  \"logwn\": \"logwn\",\n  \"lohe\": \"loh\",\n  \"lohender\": \"lohend\",\n  \"lohengrin\": \"lohengrin\",\n  \"lohete\": \"lohet\",\n  \"lohn\": \"lohn\",\n  \"lohne\": \"lohn\",\n  \"lohnes\": \"lohn\",\n  \"lohnkutscher\": \"lohnkutsch\",\n  \"lohnt\": \"lohnt\",\n  \"lohnte\": \"lohnt\",\n  \"lohnverhältnis\": \"lohnverhaltnis\",\n  \"lokal\": \"lokal\",\n  \"lokale\": \"lokal\",\n  \"lokalen\": \"lokal\",\n  \"lokomotive\": \"lokomotiv\",\n  \"london\": \"london\",\n  \"londoner\": \"london\",\n  \"lorbeeren\": \"lorbe\",\n  \"lorbeerkränze\": \"lorbeerkranz\",\n  \"los\": \"los\",\n  \"lösche\": \"losch\",\n  \"löschen\": \"losch\",\n  \"löschpapierne\": \"loschpapiern\",\n  \"löscht\": \"loscht\",\n  \"lose\": \"los\",\n  \"lösegeld\": \"losegeld\",\n  \"lösen\": \"los\",\n  \"lösenden\": \"losend\",\n  \"losfahren\": \"losfahr\",\n  \"losgebrochen\": \"losgebroch\",\n  \"losgebrochener\": \"losgebroch\",\n  \"losgehen\": \"losgeh\",\n  \"losgerissen\": \"losgeriss\",\n  \"losgeschlagen\": \"losgeschlag\",\n  \"losgetrennt\": \"losgetrennt\",\n  \"loskaufen\": \"loskauf\",\n  \"loskettete\": \"loskettet\",\n  \"loskommen\": \"loskomm\",\n  \"loslassen\": \"loslass\",\n  \"losmachen\": \"losmach\",\n  \"losreissen\": \"losreiss\",\n  \"losrennen\": \"losrenn\",\n  \"lossagung\": \"lossag\",\n  \"losschlug\": \"losschlug\",\n  \"löst\": \"lost\",\n  \"löste\": \"lost\",\n  \"lösten\": \"lost\",\n  \"losung\": \"losung\",\n  \"lösung\": \"losung\",\n  \"loswinden\": \"loswind\",\n  \"loszubinden\": \"loszubind\",\n  \"loszubrennen\": \"loszubrenn\",\n  \"loszubringen\": \"loszubring\",\n  \"loszukaufen\": \"loszukauf\",\n  \"loszukommen\": \"loszukomm\",\n  \"loszulassen\": \"loszulass\",\n  \"loszumachen\": \"loszumach\",\n  \"loszureissen\": \"loszureiss\",\n  \"loszuschlagen\": \"loszuschlag\",\n  \"loszuschreien\": \"loszuschrei\",\n  \"loszuspringen\": \"loszuspring\",\n  \"lot\": \"lot\",\n  \"lotterie\": \"lotteri\",\n  \"lotteriemann\": \"lotteriemann\",\n  \"lotterien\": \"lotteri\",\n  \"lotteriespiel\": \"lotteriespiel\",\n  \"lotterieverkehr\": \"lotterieverkehr\",\n  \"lotterige\": \"lotter\",\n  \"lotterleben\": \"lotterleb\",\n  \"lotterneste\": \"lottern\",\n  \"louisdors\": \"louisdor\",\n  \"louison\": \"louison\",\n  \"louisons\": \"louison\",\n  \"love\": \"lov\",\n  \"low\": \"low\",\n  \"löwe\": \"low\",\n  \"löwen\": \"low\",\n  \"löwenhaut\": \"lowenhaut\",\n  \"löwenjagd\": \"lowenjagd\",\n  \"löwin\": \"lowin\",\n  \"lucelle\": \"lucell\",\n  \"lucinde\": \"lucind\",\n  \"lücke\": \"luck\",\n  \"lücken\": \"luck\",\n  \"lückenbüsser\": \"luckenbuss\",\n  \"lückenhaft\": \"luckenhaft\",\n  \"lud\": \"lud\",\n  \"luden\": \"lud\",\n  \"luder\": \"lud\",\n  \"ludwig\": \"ludwig\",\n  \"luft\": \"luft\",\n  \"luftballon\": \"luftballon\",\n  \"luftballons\": \"luftballon\",\n  \"luftblasen\": \"luftblas\",\n  \"lüftchen\": \"luftch\",\n  \"luftdrucks\": \"luftdruck\",\n  \"lüfte\": \"luft\",\n  \"lüften\": \"luft\",\n  \"lufterscheinung\": \"lufterschein\",\n  \"lüftete\": \"luftet\",\n  \"luftgebilde\": \"luftgebild\",\n  \"lufthauch\": \"lufthauch\",\n  \"luftig\": \"luftig\",\n  \"luftige\": \"luftig\",\n  \"luftigen\": \"luftig\",\n  \"luftjagd\": \"luftjagd\",\n  \"luftlosen\": \"luftlos\",\n  \"luftraum\": \"luftraum\",\n  \"luftsänger\": \"luftsang\",\n  \"luftschloss\": \"luftschloss\",\n  \"luftschlösser\": \"luftschloss\",\n  \"luga\": \"luga\",\n  \"lüge\": \"lug\",\n  \"lügen\": \"lug\",\n  \"lügenberichten\": \"lugenbericht\",\n  \"lügenhaft\": \"lugenhaft\",\n  \"lügenhafte\": \"lugenhaft\",\n  \"lügner\": \"lugn\",\n  \"lügnerin\": \"lugnerin\",\n  \"lügners\": \"lugn\",\n  \"lugst\": \"lugst\",\n  \"lügst\": \"lugst\",\n  \"lügt\": \"lugt\",\n  \"luitpold\": \"luitpold\",\n  \"luk\": \"luk\",\n  \"lukas\": \"lukas\",\n  \"lukasevangelium\": \"lukasevangelium\",\n  \"luke\": \"luk\",\n  \"lümmel\": \"lummel\",\n  \"lümmelte\": \"lummelt\",\n  \"lumpen\": \"lump\",\n  \"lumpenhund\": \"lumpenhund\",\n  \"lumpenhunde\": \"lumpenhund\",\n  \"lumpenkleider\": \"lumpenkleid\",\n  \"lumpenkleidung\": \"lumpenkleid\",\n  \"lunch\": \"lunch\",\n  \"lunge\": \"lung\",\n  \"lungen\": \"lung\",\n  \"lungenflügel\": \"lungenflugel\",\n  \"lungenschuss\": \"lungenschuss\",\n  \"lust\": \"lust\",\n  \"lustbarkeit\": \"lustbar\",\n  \"lustbarkeiten\": \"lustbar\",\n  \"lüste\": \"lust\",\n  \"lüstern\": \"lust\",\n  \"lüsternem\": \"lustern\",\n  \"lüsternheit\": \"lustern\",\n  \"lustig\": \"lustig\",\n  \"lustige\": \"lustig\",\n  \"lustigen\": \"lustig\",\n  \"lustiger\": \"lustig\",\n  \"lustiges\": \"lustig\",\n  \"lustigkeit\": \"lustig\",\n  \"lustigsten\": \"lustig\",\n  \"lustreiz\": \"lustreiz\",\n  \"lustreize\": \"lustreiz\",\n  \"lustreizen\": \"lustreiz\",\n  \"lustspielen\": \"lustspiel\",\n  \"lustwald\": \"lustwald\",\n  \"lustwälder\": \"lustwald\",\n  \"lustwandelnden\": \"lustwandelnd\",\n  \"lustwandelte\": \"lustwandelt\",\n  \"lutherisch\": \"luther\",\n  \"lutherische\": \"luther\",\n  \"lutherischem\": \"luther\",\n  \"lutherischen\": \"luther\",\n  \"lutherischer\": \"luther\",\n  \"lutherland\": \"lutherland\",\n  \"lutherstädte\": \"lutherstadt\",\n  \"lutum\": \"lutum\",\n  \"lütütü\": \"lututu\",\n  \"lux\": \"lux\",\n  \"luxerl\": \"luxerl\",\n  \"luxerls\": \"luxerl\",\n  \"luxuriösen\": \"luxurios\",\n  \"luzifer\": \"luzif\",\n  \"lwb\": \"lwb\",\n  \"lydia\": \"lydia\",\n  \"lydias\": \"lydias\",\n  \"lydier\": \"lydi\",\n  \"lyon\": \"lyon\",\n  \"lyra\": \"lyra\",\n  \"lyrik\": \"lyrik\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"maastricht\": \"maastricht\",\n  \"maastrichter\": \"maastricht\",\n  \"macbeth\": \"macbeth\",\n  \"macbeths\": \"macbeth\",\n  \"mach\": \"mach\",\n  \"mache\": \"mach\",\n  \"machen\": \"mach\",\n  \"machend\": \"machend\",\n  \"machenden\": \"machend\",\n  \"macher\": \"mach\",\n  \"machers\": \"mach\",\n  \"machet\": \"machet\",\n  \"macheten\": \"machet\",\n  \"machiavelli\": \"machiavelli\",\n  \"machli\": \"machli\",\n  \"machst\": \"mach\",\n  \"macht\": \"macht\",\n  \"machte\": \"macht\",\n  \"mächte\": \"macht\",\n  \"machten\": \"macht\",\n  \"mächten\": \"macht\",\n  \"machtest\": \"macht\",\n  \"machthabenden\": \"machthab\",\n  \"machthaber\": \"machthab\",\n  \"mächtig\": \"machtig\",\n  \"mächtige\": \"machtig\",\n  \"mächtigen\": \"machtig\",\n  \"mächtiger\": \"machtig\",\n  \"mächtiges\": \"machtig\",\n  \"mächtigste\": \"machtig\",\n  \"machtlos\": \"machtlos\",\n  \"machtmittel\": \"machtmittel\",\n  \"machtvoll\": \"machtvoll\",\n  \"mad\": \"mad\",\n  \"mädchen\": \"madch\",\n  \"mädchenhaft\": \"madchenhaft\",\n  \"mädchenhaften\": \"madchenhaft\",\n  \"mädchens\": \"madch\",\n  \"madehen\": \"madeh\",\n  \"mädel\": \"madel\",\n  \"madeleine\": \"madelein\",\n  \"mädels\": \"madel\",\n  \"madl\": \"madl\",\n  \"madln\": \"madln\",\n  \"mag\": \"mag\",\n  \"magazin\": \"magazin\",\n  \"magd\": \"magd\",\n  \"mägde\": \"magd\",\n  \"mägden\": \"magd\",\n  \"magen\": \"mag\",\n  \"mager\": \"mag\",\n  \"magere\": \"mag\",\n  \"mageren\": \"mag\",\n  \"magerer\": \"mag\",\n  \"magerkeit\": \"mager\",\n  \"magerten\": \"magert\",\n  \"magi\": \"magi\",\n  \"magica\": \"magica\",\n  \"magie\": \"magi\",\n  \"magier\": \"magi\",\n  \"magiern\": \"magi\",\n  \"magisch\": \"magisch\",\n  \"magische\": \"magisch\",\n  \"magischen\": \"magisch\",\n  \"mäglein\": \"maglein\",\n  \"magnaten\": \"magnat\",\n  \"magnet\": \"magnet\",\n  \"magnetgebirge\": \"magnetgebirg\",\n  \"magst\": \"magst\",\n  \"mahal\": \"mahal\",\n  \"mahalalel\": \"mahalalel\",\n  \"mahalalels\": \"mahalalel\",\n  \"mahl\": \"mahl\",\n  \"mahle\": \"mahl\",\n  \"mahlen\": \"mahl\",\n  \"mahles\": \"mahl\",\n  \"mählich\": \"mahlich\",\n  \"mahlzeit\": \"mahlzeit\",\n  \"mahlzeiten\": \"mahlzeit\",\n  \"mahm\": \"mahm\",\n  \"mähne\": \"mahn\",\n  \"mahnte\": \"mahnt\",\n  \"mahnung\": \"mahnung\",\n  \"mahomets\": \"mahomet\",\n  \"mai\": \"mai\",\n  \"maigesang\": \"maigesang\",\n  \"maiglöckchenblatt\": \"maiglockchenblatt\",\n  \"maikäfer\": \"maikaf\",\n  \"maikäferballade\": \"maikaferballad\",\n  \"maikäferbein\": \"maikaferbein\",\n  \"maikäferbeinchen\": \"maikaferbeinch\",\n  \"maikäferhafte\": \"maikaferhaft\",\n  \"maikäferherz\": \"maikaferherz\",\n  \"maikäferlein\": \"maikaferlein\",\n  \"maikäfermann\": \"maikafermann\",\n  \"maikäfern\": \"maikaf\",\n  \"maikäfertänzchen\": \"maikafertanzch\",\n  \"maikäfertänze\": \"maikafertanz\",\n  \"mail\": \"mail\",\n  \"mailand\": \"mailand\",\n  \"mailänder\": \"mailand\",\n  \"mailändischen\": \"mailand\",\n  \"main\": \"main\",\n  \"maison\": \"maison\",\n  \"maisonne\": \"maisonn\",\n  \"majestät\": \"majestat\",\n  \"majestätisch\": \"majestat\",\n  \"majorität\": \"majoritat\",\n  \"makaber\": \"makab\",\n  \"makarius\": \"makarius\",\n  \"mal\": \"mal\",\n  \"male\": \"mal\",\n  \"malen\": \"mal\",\n  \"maler\": \"mal\",\n  \"malerei\": \"malerei\",\n  \"malerisch\": \"maler\",\n  \"malerische\": \"maler\",\n  \"mali\": \"mali\",\n  \"malis\": \"malis\",\n  \"malottke\": \"malottk\",\n  \"malottkes\": \"malottk\",\n  \"malte\": \"malt\",\n  \"malum\": \"malum\",\n  \"malzeichen\": \"malzeich\",\n  \"man\": \"man\",\n  \"manch\": \"manch\",\n  \"manche\": \"manch\",\n  \"manchem\": \"manch\",\n  \"manchen\": \"manch\",\n  \"mancher\": \"manch\",\n  \"mancherlei\": \"mancherlei\",\n  \"manches\": \"manch\",\n  \"manchesterjacke\": \"manchesterjack\",\n  \"manchmal\": \"manchmal\",\n  \"mandat\": \"mandat\",\n  \"mandelkern\": \"mandelk\",\n  \"mandeln\": \"mandeln\",\n  \"mandeltorte\": \"mandeltort\",\n  \"mandieren\": \"mandi\",\n  \"manfred\": \"manfred\",\n  \"mangel\": \"mangel\",\n  \"mängel\": \"mangel\",\n  \"mangelhaft\": \"mangelhaft\",\n  \"mangelhafte\": \"mangelhaft\",\n  \"mangelhaftem\": \"mangelhaft\",\n  \"mangelndes\": \"mangelnd\",\n  \"mangelt\": \"mangelt\",\n  \"mangelte\": \"mangelt\",\n  \"manier\": \"mani\",\n  \"manieren\": \"mani\",\n  \"manierlich\": \"mani\",\n  \"mann\": \"mann\",\n  \"manna\": \"manna\",\n  \"mannbares\": \"mannbar\",\n  \"männchen\": \"mannch\",\n  \"männchens\": \"mannch\",\n  \"manndi\": \"manndi\",\n  \"manne\": \"mann\",\n  \"männer\": \"mann\",\n  \"männern\": \"mann\",\n  \"männerstimme\": \"mannerstimm\",\n  \"mannes\": \"mann\",\n  \"mannesalter\": \"mannesalt\",\n  \"mannesbilde\": \"mannesbild\",\n  \"mannestränen\": \"mannestran\",\n  \"mannestugend\": \"mannestug\",\n  \"mannhaft\": \"mannhaft\",\n  \"mannhaftigkeit\": \"mannhaft\",\n  \"mannichfachen\": \"mannichfach\",\n  \"mannichfaltigkeit\": \"mannichfalt\",\n  \"mannigfach\": \"mannigfach\",\n  \"mannigfachem\": \"mannigfach\",\n  \"mannigfacher\": \"mannigfach\",\n  \"mannigfaltige\": \"mannigfalt\",\n  \"mannigfaltigen\": \"mannigfalt\",\n  \"mannigfaltigkeit\": \"mannigfalt\",\n  \"mannigfaltigkeiten\": \"mannigfalt\",\n  \"mannigfaltigsten\": \"mannigfalt\",\n  \"männin\": \"mannin\",\n  \"männlein\": \"mannlein\",\n  \"mannlich\": \"mannlich\",\n  \"männlich\": \"mannlich\",\n  \"männliche\": \"mannlich\",\n  \"männlichen\": \"mannlich\",\n  \"männlichkeit\": \"mannlich\",\n  \"mannschaft\": \"mannschaft\",\n  \"mannshohen\": \"mannshoh\",\n  \"mannsleute\": \"mannsleut\",\n  \"mannstiefen\": \"mannstief\",\n  \"manoah\": \"manoah\",\n  \"manövriert\": \"manovriert\",\n  \"manschetten\": \"manschett\",\n  \"mantel\": \"mantel\",\n  \"mantels\": \"mantel\",\n  \"mantelsack\": \"mantelsack\",\n  \"mantelträger\": \"manteltrag\",\n  \"manuskript\": \"manuskript\",\n  \"manuskripte\": \"manuskript\",\n  \"manuskripten\": \"manuskript\",\n  \"manz\": \"manz\",\n  \"manzen\": \"manz\",\n  \"manzens\": \"manz\",\n  \"manzin\": \"manzin\",\n  \"mar\": \"mar\",\n  \"marah\": \"marah\",\n  \"march\": \"march\",\n  \"märchen\": \"march\",\n  \"marcs\": \"marcs\",\n  \"mard\": \"mard\",\n  \"marderdreck\": \"marderdreck\",\n  \"mardin\": \"mardin\",\n  \"maria\": \"maria\",\n  \"mariand\": \"mariand\",\n  \"marienbild\": \"marienbild\",\n  \"marienkäferkinderchen\": \"marienkaferkinderch\",\n  \"marinelli\": \"marinelli\",\n  \"mario\": \"mario\",\n  \"marionettenspiel\": \"marionettenspiel\",\n  \"maritata\": \"maritata\",\n  \"mark\": \"mark\",\n  \"markierte\": \"markiert\",\n  \"markln\": \"markln\",\n  \"marks\": \"mark\",\n  \"markstückl\": \"markstuckl\",\n  \"marksubstanz\": \"marksubstanz\",\n  \"markt\": \"markt\",\n  \"marktplatz\": \"marktplatz\",\n  \"marktsegment\": \"marktsegment\",\n  \"marktwirtschaft\": \"marktwirtschaft\",\n  \"marmor\": \"marmor\",\n  \"marotte\": \"marott\",\n  \"marquis\": \"marquis\",\n  \"marsala\": \"marsala\",\n  \"marsch\": \"marsch\",\n  \"märsche\": \"marsch\",\n  \"marschiert\": \"marschiert\",\n  \"marschierte\": \"marschiert\",\n  \"marschierten\": \"marschiert\",\n  \"marschrichtung\": \"marschricht\",\n  \"marseilingen\": \"marseiling\",\n  \"marseille\": \"marseill\",\n  \"marterl\": \"marterl\",\n  \"marterleib\": \"marterleib\",\n  \"marterls\": \"marterl\",\n  \"marti\": \"marti\",\n  \"martialischen\": \"martial\",\n  \"martin\": \"martin\",\n  \"martis\": \"martis\",\n  \"märtyrer\": \"martyr\",\n  \"marx\": \"marx\",\n  \"märz\": \"marz\",\n  \"marzipan\": \"marzipan\",\n  \"marzipanschweinezüchterei\": \"marzipanschweinezuchterei\",\n  \"marzipanstrassen\": \"marzipanstrass\",\n  \"märzwoche\": \"marzwoch\",\n  \"maschen\": \"masch\",\n  \"maschine\": \"maschin\",\n  \"maschinengewehren\": \"maschinengewehr\",\n  \"maschinenwerk\": \"maschinenwerk\",\n  \"maschinenwesen\": \"maschinenwes\",\n  \"masculus\": \"masculus\",\n  \"maske\": \"mask\",\n  \"masken\": \"mask\",\n  \"maskenfahrt\": \"maskenfahrt\",\n  \"maskenzuges\": \"maskenzug\",\n  \"maskerade\": \"maskerad\",\n  \"maskiert\": \"maskiert\",\n  \"mass\": \"mass\",\n  \"maß\": \"mass\",\n  \"masse\": \"mass\",\n  \"maße\": \"mass\",\n  \"massen\": \"mass\",\n  \"maßen\": \"mass\",\n  \"massenhaft\": \"massenhaft\",\n  \"masses\": \"mass\",\n  \"maßes\": \"mass\",\n  \"massgabe\": \"massgab\",\n  \"maßgabe\": \"massgab\",\n  \"massgebenden\": \"massgeb\",\n  \"maßgebenden\": \"massgeb\",\n  \"mässig\": \"massig\",\n  \"mässige\": \"massig\",\n  \"mässigen\": \"massig\",\n  \"mässiger\": \"massig\",\n  \"mäßiger\": \"massig\",\n  \"mässigkeit\": \"massig\",\n  \"mässigt\": \"massigt\",\n  \"mäßigt\": \"massigt\",\n  \"mässigte\": \"massigt\",\n  \"mässigung\": \"massig\",\n  \"mäßigung\": \"massig\",\n  \"massiv\": \"massiv\",\n  \"massive\": \"massiv\",\n  \"massiven\": \"massiv\",\n  \"massiver\": \"massiv\",\n  \"maßlos\": \"masslos\",\n  \"massnahmen\": \"massnahm\",\n  \"massnehmen\": \"massnehm\",\n  \"massregeln\": \"massregeln\",\n  \"massstab\": \"massstab\",\n  \"maßstab\": \"massstab\",\n  \"massstabe\": \"massstab\",\n  \"maßstabe\": \"massstab\",\n  \"maßstäbe\": \"massstab\",\n  \"masste\": \"masst\",\n  \"maßte\": \"masst\",\n  \"mastbaum\": \"mastbaum\",\n  \"masterminded\": \"masterminded\",\n  \"mästung\": \"mastung\",\n  \"mastvieh\": \"mastvieh\",\n  \"material\": \"material\",\n  \"materiale\": \"material\",\n  \"materialen\": \"material\",\n  \"materialer\": \"material\",\n  \"materie\": \"materi\",\n  \"materiell\": \"materiell\",\n  \"materielle\": \"materiell\",\n  \"materiellen\": \"materiell\",\n  \"materieller\": \"materiell\",\n  \"materielles\": \"materiell\",\n  \"mathäus\": \"mathaus\",\n  \"mathematik\": \"mathemat\",\n  \"mathematisch\": \"mathemat\",\n  \"mathematische\": \"mathemat\",\n  \"mathematischen\": \"mathemat\",\n  \"matrose\": \"matros\",\n  \"matt\": \"matt\",\n  \"matten\": \"matt\",\n  \"matth\": \"matth\",\n  \"matthias\": \"matthias\",\n  \"mattigkeit\": \"mattig\",\n  \"mauer\": \"mau\",\n  \"mauern\": \"mau\",\n  \"mauertür\": \"mauertur\",\n  \"mauerwerk\": \"mauerwerk\",\n  \"mauerwinkel\": \"mauerwinkel\",\n  \"maul\": \"maul\",\n  \"maulaffen\": \"maulaff\",\n  \"maulbeerbäume\": \"maulbeerbaum\",\n  \"mäulchen\": \"maulch\",\n  \"maule\": \"maul\",\n  \"mäuler\": \"maul\",\n  \"mäulern\": \"maul\",\n  \"maulkorb\": \"maulkorb\",\n  \"maultasche\": \"maultasch\",\n  \"maulvoll\": \"maulvoll\",\n  \"maulwurf\": \"maulwurf\",\n  \"maurienne\": \"maurienn\",\n  \"maus\": \"maus\",\n  \"mäuschen\": \"mausch\",\n  \"mäuschenstill\": \"mauschenstill\",\n  \"mäuse\": \"maus\",\n  \"mäusefallen\": \"mausefall\",\n  \"mausen\": \"maus\",\n  \"mäuslein\": \"mauslein\",\n  \"mauslöchern\": \"mausloch\",\n  \"maxime\": \"maxim\",\n  \"maximen\": \"maxim\",\n  \"mechanisch\": \"mechan\",\n  \"mechanismus\": \"mechanismus\",\n  \"mechujael\": \"mechujael\",\n  \"meckern\": \"meck\",\n  \"meckerndes\": \"meckernd\",\n  \"meckerte\": \"meckert\",\n  \"meckerten\": \"meckert\",\n  \"mecklenburg\": \"mecklenburg\",\n  \"medaille\": \"medaill\",\n  \"medaillon\": \"medaillon\",\n  \"medien\": \"medi\",\n  \"medikament\": \"medikament\",\n  \"meditativen\": \"meditativ\",\n  \"medizin\": \"medizin\",\n  \"medizinisch\": \"medizin\",\n  \"meer\": \"meer\",\n  \"meerblauen\": \"meerblau\",\n  \"meere\": \"meer\",\n  \"meeren\": \"meer\",\n  \"meeres\": \"meer\",\n  \"meeresgewächs\": \"meeresgewach\",\n  \"meerestiefen\": \"meerestief\",\n  \"meergrünen\": \"meergrun\",\n  \"meerschiffe\": \"meerschiff\",\n  \"meerwasser\": \"meerwass\",\n  \"meerwunder\": \"meerwund\",\n  \"mehr\": \"mehr\",\n  \"mehre\": \"mehr\",\n  \"mehren\": \"mehr\",\n  \"mehrenteils\": \"mehrenteil\",\n  \"mehrer\": \"mehr\",\n  \"mehrere\": \"mehr\",\n  \"mehrerem\": \"mehr\",\n  \"mehreren\": \"mehr\",\n  \"mehrerer\": \"mehr\",\n  \"mehreres\": \"mehr\",\n  \"mehrertrag\": \"mehrertrag\",\n  \"mehresten\": \"mehr\",\n  \"mehret\": \"mehret\",\n  \"mehrfach\": \"mehrfach\",\n  \"mehrfache\": \"mehrfach\",\n  \"mehrfachen\": \"mehrfach\",\n  \"mehrheit\": \"mehrheit\",\n  \"mehrheitsfähig\": \"mehrheitsfah\",\n  \"mehrjährige\": \"mehrjahr\",\n  \"mehrmals\": \"mehrmal\",\n  \"mehrstimmiges\": \"mehrstimm\",\n  \"mehrte\": \"mehrt\",\n  \"mehrten\": \"mehrt\",\n  \"mehrzahl\": \"mehrzahl\",\n  \"mei\": \"mei\",\n  \"meiden\": \"meid\",\n  \"meilen\": \"meil\",\n  \"meilenstein\": \"meilenstein\",\n  \"meilensteine\": \"meilenstein\",\n  \"mein\": \"mein\",\n  \"meine\": \"mein\",\n  \"meineidbauer\": \"meineidbau\",\n  \"meineidiger\": \"meineid\",\n  \"meinem\": \"mein\",\n  \"meinen\": \"mein\",\n  \"meiner\": \"mein\",\n  \"meines\": \"mein\",\n  \"meinetwegen\": \"meinetweg\",\n  \"meinetwillen\": \"meinetwill\",\n  \"meinige\": \"meinig\",\n  \"meinigen\": \"meinig\",\n  \"meins\": \"mein\",\n  \"meinst\": \"mein\",\n  \"meint\": \"meint\",\n  \"meinte\": \"meint\",\n  \"meinten\": \"meint\",\n  \"meinung\": \"meinung\",\n  \"meinungen\": \"meinung\",\n  \"meisen\": \"meis\",\n  \"meisseln\": \"meisseln\",\n  \"meist\": \"meist\",\n  \"meistbietenden\": \"meistbiet\",\n  \"meiste\": \"meist\",\n  \"meisten\": \"meist\",\n  \"meistens\": \"meist\",\n  \"meistenteils\": \"meistenteil\",\n  \"meister\": \"meist\",\n  \"meisterhaft\": \"meisterhaft\",\n  \"meisterhand\": \"meisterhand\",\n  \"meisterin\": \"meisterin\",\n  \"meisterinnen\": \"meisterinn\",\n  \"meisterlich\": \"meist\",\n  \"meistern\": \"meist\",\n  \"meisters\": \"meist\",\n  \"meisterschaft\": \"meisterschaft\",\n  \"meitli\": \"meitli\",\n  \"melancholisch\": \"melanchol\",\n  \"melancholische\": \"melanchol\",\n  \"melancholischen\": \"melanchol\",\n  \"melcher\": \"melch\",\n  \"melchior\": \"melchior\",\n  \"melde\": \"meld\",\n  \"melden\": \"meld\",\n  \"meldet\": \"meldet\",\n  \"meldete\": \"meldet\",\n  \"meldung\": \"meldung\",\n  \"melodie\": \"melodi\",\n  \"melzergrunde\": \"melzergrund\",\n  \"memorandum\": \"memorandum\",\n  \"memorierungen\": \"memorier\",\n  \"menasse\": \"menass\",\n  \"menge\": \"meng\",\n  \"mengen\": \"meng\",\n  \"meninges\": \"mening\",\n  \"mensch\": \"mensch\",\n  \"menschen\": \"mensch\",\n  \"menschenähnliches\": \"menschenahn\",\n  \"menschenähnlichkeit\": \"menschenahn\",\n  \"menschenalter\": \"menschenalt\",\n  \"menschenauge\": \"menschenaug\",\n  \"menschenfeindlich\": \"menschenfeind\",\n  \"menschenfresser\": \"menschenfress\",\n  \"menschenführung\": \"menschenfuhr\",\n  \"menschengeistes\": \"menschengeist\",\n  \"menschengeschlecht\": \"menschengeschlecht\",\n  \"menschengeschlechte\": \"menschengeschlecht\",\n  \"menschengeschlechts\": \"menschengeschlecht\",\n  \"menschengesichter\": \"menschengesicht\",\n  \"menschenhaut\": \"menschenhaut\",\n  \"menschenherde\": \"menschenherd\",\n  \"menschenkenntnis\": \"menschenkenntnis\",\n  \"menschenkind\": \"menschenkind\",\n  \"menschenleben\": \"menschenleb\",\n  \"menschenleeren\": \"menschenle\",\n  \"menschenliebe\": \"menschenlieb\",\n  \"menschenmenge\": \"menschenmeng\",\n  \"menschenmörder\": \"menschenmord\",\n  \"menschensamen\": \"menschensam\",\n  \"menschenseele\": \"menschenseel\",\n  \"menschensohn\": \"menschensohn\",\n  \"menschensöhne\": \"menschensohn\",\n  \"menschenvernunft\": \"menschenvernunft\",\n  \"menschenverstand\": \"menschenverstand\",\n  \"menschenverstande\": \"menschenverstand\",\n  \"menschenverstandes\": \"menschenverstand\",\n  \"menschenwohnungen\": \"menschenwohn\",\n  \"menschgeschlecht\": \"menschgeschlecht\",\n  \"menschheit\": \"menschheit\",\n  \"menschlein\": \"menschlein\",\n  \"menschlich\": \"menschlich\",\n  \"menschliche\": \"menschlich\",\n  \"menschlichen\": \"menschlich\",\n  \"menschlicher\": \"menschlich\",\n  \"menschliches\": \"menschlich\",\n  \"menschlichkeit\": \"menschlich\",\n  \"menschlichkeiten\": \"menschlich\",\n  \"menseh\": \"menseh\",\n  \"mentale\": \"mental\",\n  \"mentalitat\": \"mentalitat\",\n  \"menü\": \"menu\",\n  \"mer\": \"mer\",\n  \"merari\": \"merari\",\n  \"meraris\": \"meraris\",\n  \"merk\": \"merk\",\n  \"merke\": \"merk\",\n  \"merken\": \"merk\",\n  \"merklich\": \"merklich\",\n  \"merklichem\": \"merklich\",\n  \"merkmal\": \"merkmal\",\n  \"merkmale\": \"merkmal\",\n  \"merkt\": \"merkt\",\n  \"merkte\": \"merkt\",\n  \"merkten\": \"merkt\",\n  \"merkwürdig\": \"merkwurd\",\n  \"merkwürdige\": \"merkwurd\",\n  \"merkwürdigen\": \"merkwurd\",\n  \"merkwürdiger\": \"merkwurd\",\n  \"merkwürdigerweise\": \"merkwurdigerweis\",\n  \"merkwürdiges\": \"merkwurd\",\n  \"merkwürdigkeit\": \"merkwurd\",\n  \"merkwürdigkeiten\": \"merkwurd\",\n  \"merkwürdigste\": \"merkwurd\",\n  \"merkwürdigsten\": \"merkwurd\",\n  \"meschech\": \"meschech\",\n  \"mesmer\": \"mesm\",\n  \"mess\": \"mess\",\n  \"messe\": \"mess\",\n  \"messen\": \"mess\",\n  \"messer\": \"mess\",\n  \"messias\": \"messias\",\n  \"messiaschristlich\": \"messiaschrist\",\n  \"messiasfrage\": \"messiasfrag\",\n  \"messingdrahtes\": \"messingdraht\",\n  \"messmer\": \"messm\",\n  \"messrohr\": \"messrohr\",\n  \"meßrohr\": \"messrohr\",\n  \"messung\": \"messung\",\n  \"metall\": \"metall\",\n  \"metalle\": \"metall\",\n  \"metaphysik\": \"metaphys\",\n  \"metaphysische\": \"metaphys\",\n  \"metaphysischen\": \"metaphys\",\n  \"meter\": \"met\",\n  \"meterlang\": \"meterlang\",\n  \"meterlange\": \"meterlang\",\n  \"methode\": \"method\",\n  \"methoden\": \"method\",\n  \"methodenlehre\": \"methodenlehr\",\n  \"methodisch\": \"method\",\n  \"methodische\": \"method\",\n  \"methodischen\": \"method\",\n  \"methuschael\": \"methuschael\",\n  \"methuschelach\": \"methuschelach\",\n  \"methuschelachs\": \"methuschelach\",\n  \"metier\": \"meti\",\n  \"metropole\": \"metropol\",\n  \"metropolitane\": \"metropolitan\",\n  \"metzger\": \"metzg\",\n  \"metzgerwägelchen\": \"metzgerwagelch\",\n  \"meuchelmörder\": \"meuchelmord\",\n  \"meusal\": \"meusal\",\n  \"mfs\": \"mfs\",\n  \"mi\": \"mi\",\n  \"miau\": \"miau\",\n  \"miauend\": \"miauend\",\n  \"mich\": \"mich\",\n  \"micha\": \"micha\",\n  \"microsoftboss\": \"microsoftboss\",\n  \"midian\": \"midian\",\n  \"midianiter\": \"midianit\",\n  \"midians\": \"midian\",\n  \"mieder\": \"mied\",\n  \"mielke\": \"mielk\",\n  \"miene\": \"mien\",\n  \"mienen\": \"mien\",\n  \"mierte\": \"miert\",\n  \"miesen\": \"mies\",\n  \"miete\": \"miet\",\n  \"mieter\": \"miet\",\n  \"mietern\": \"miet\",\n  \"mietete\": \"mietet\",\n  \"miethäuser\": \"miethaus\",\n  \"mietsmann\": \"mietsmann\",\n  \"migros\": \"migros\",\n  \"mikrofon\": \"mikrofon\",\n  \"mikrofons\": \"mikrofon\",\n  \"milch\": \"milch\",\n  \"milchbäume\": \"milchbaum\",\n  \"milchgesichtern\": \"milchgesicht\",\n  \"milchkannen\": \"milchkann\",\n  \"milchmachens\": \"milchmach\",\n  \"milchstrasse\": \"milchstrass\",\n  \"milchstrassen\": \"milchstrass\",\n  \"milchstrassenhonig\": \"milchstrassenhon\",\n  \"milchstrassenmann\": \"milchstrassenmann\",\n  \"milchstrassenmannes\": \"milchstrassenmann\",\n  \"milchstrassenschlagsahne\": \"milchstrassenschlagsahn\",\n  \"milchtöpfe\": \"milchtopf\",\n  \"milde\": \"mild\",\n  \"mildem\": \"mild\",\n  \"milden\": \"mild\",\n  \"milder\": \"mild\",\n  \"milderen\": \"mild\",\n  \"milderes\": \"mild\",\n  \"mildert\": \"mildert\",\n  \"mildes\": \"mild\",\n  \"mildesten\": \"mild\",\n  \"militär\": \"militar\",\n  \"militärdienst\": \"militardien\",\n  \"militärgelände\": \"militargeland\",\n  \"militärhistoriker\": \"militarhistor\",\n  \"militärisch\": \"militar\",\n  \"militärische\": \"militar\",\n  \"militärischer\": \"militar\",\n  \"militärperson\": \"militarperson\",\n  \"militärs\": \"militar\",\n  \"militärzeit\": \"militarzeit\",\n  \"milliarden\": \"milliard\",\n  \"million\": \"million\",\n  \"millionär\": \"millionar\",\n  \"millionärin\": \"millionarin\",\n  \"millionen\": \"million\",\n  \"mimische\": \"mimisch\",\n  \"mincha\": \"mincha\",\n  \"minder\": \"mind\",\n  \"mindere\": \"mind\",\n  \"minderheit\": \"mind\",\n  \"minderheiten\": \"mind\",\n  \"minderheitensituation\": \"minderheitensituation\",\n  \"minderjährige\": \"minderjahr\",\n  \"mindern\": \"mind\",\n  \"minderte\": \"mindert\",\n  \"minderwertigkeit\": \"minderwert\",\n  \"mindeste\": \"mind\",\n  \"mindesten\": \"mind\",\n  \"mindestens\": \"mindest\",\n  \"minimum\": \"minimum\",\n  \"ministerpräsident\": \"ministerprasident\",\n  \"ministerpräsidenten\": \"ministerprasident\",\n  \"minna\": \"minna\",\n  \"minnespiel\": \"minnespiel\",\n  \"minnig\": \"minnig\",\n  \"minorität\": \"minoritat\",\n  \"minute\": \"minut\",\n  \"minuten\": \"minut\",\n  \"minutenlang\": \"minutenlang\",\n  \"minutenlangen\": \"minutenlang\",\n  \"minutenzeiger\": \"minutenzeig\",\n  \"mir\": \"mir\",\n  \"mirakels\": \"mirakel\",\n  \"mirl\": \"mirl\",\n  \"mischael\": \"mischael\",\n  \"mischen\": \"misch\",\n  \"mischt\": \"mischt\",\n  \"mischte\": \"mischt\",\n  \"mischten\": \"mischt\",\n  \"mischung\": \"mischung\",\n  \"miserabligs\": \"miserabl\",\n  \"miss\": \"miss\",\n  \"miß\": \"miss\",\n  \"missbrauch\": \"missbrauch\",\n  \"mißbrauch\": \"missbrauch\",\n  \"missbräuche\": \"missbrauch\",\n  \"mißbräuche\": \"missbrauch\",\n  \"missbrauchen\": \"missbrauch\",\n  \"mißbrauchen\": \"missbrauch\",\n  \"missbrauchsdebatte\": \"missbrauchsdebatt\",\n  \"missbrauchten\": \"missbraucht\",\n  \"mißbrauchten\": \"missbraucht\",\n  \"missdeutung\": \"missdeut\",\n  \"missdeutungen\": \"missdeut\",\n  \"missen\": \"miss\",\n  \"missetat\": \"missetat\",\n  \"missetaten\": \"missetat\",\n  \"missetäter\": \"missetat\",\n  \"mißfallen\": \"missfall\",\n  \"missfällig\": \"missfall\",\n  \"mißfällig\": \"missfall\",\n  \"missfiel\": \"missfiel\",\n  \"missfielen\": \"missfiel\",\n  \"missgeschick\": \"missgeschick\",\n  \"missgestaltetes\": \"missgestaltet\",\n  \"mißgestaltetes\": \"missgestaltet\",\n  \"mißglückte\": \"missgluckt\",\n  \"missgriff\": \"missgriff\",\n  \"missgunst\": \"missgun\",\n  \"misshandeln\": \"misshandeln\",\n  \"misshandelt\": \"misshandelt\",\n  \"mißhandelt\": \"misshandelt\",\n  \"misshandelte\": \"misshandelt\",\n  \"misshandle\": \"misshandl\",\n  \"misshandlung\": \"misshandl\",\n  \"mission\": \"mission\",\n  \"missionarisch\": \"missionar\",\n  \"missionieren\": \"missioni\",\n  \"missioniert\": \"missioniert\",\n  \"missionsfeld\": \"missionsfeld\",\n  \"missionsgesellschaft\": \"missionsgesellschaft\",\n  \"missionswille\": \"missionswill\",\n  \"misslang\": \"misslang\",\n  \"misslich\": \"misslich\",\n  \"missliebig\": \"misslieb\",\n  \"misslungenen\": \"misslung\",\n  \"missmanagement\": \"missmanagement\",\n  \"missmutig\": \"missmut\",\n  \"misst\": \"misst\",\n  \"mißt\": \"misst\",\n  \"misste\": \"misst\",\n  \"misstrauen\": \"misstrau\",\n  \"misstrauisch\": \"misstrau\",\n  \"mißtrauisch\": \"misstrau\",\n  \"misstrauischem\": \"misstrau\",\n  \"misstrauischen\": \"misstrau\",\n  \"mißtrauischer\": \"misstrau\",\n  \"misstrauten\": \"misstraut\",\n  \"missvergnügt\": \"missvergnugt\",\n  \"missverstande\": \"missverstand\",\n  \"missverstanden\": \"missverstand\",\n  \"mißverstanden\": \"missverstand\",\n  \"missverständlich\": \"missverstand\",\n  \"mißverständlich\": \"missverstand\",\n  \"missverständlichen\": \"missverstand\",\n  \"mißverständlichen\": \"missverstand\",\n  \"missverständnis\": \"missverstandnis\",\n  \"mißverständnis\": \"missverstandnis\",\n  \"missverständnisse\": \"missverstandnis\",\n  \"mißverständnisse\": \"missverstandnis\",\n  \"missverstehen\": \"missversteh\",\n  \"mißverstehen\": \"missversteh\",\n  \"missversteht\": \"missversteht\",\n  \"misswachs\": \"misswach\",\n  \"mistbauer\": \"mistbau\",\n  \"mistviech\": \"mistviech\",\n  \"mit\": \"mit\",\n  \"mitanand\": \"mitanand\",\n  \"mitarbeit\": \"mitarbeit\",\n  \"mitarbeitenden\": \"mitarbeit\",\n  \"mitarbeiter\": \"mitarbeit\",\n  \"mitarbeiterinnen\": \"mitarbeiterinn\",\n  \"mitarbeitern\": \"mitarbeit\",\n  \"mitass\": \"mitass\",\n  \"mitaß\": \"mitass\",\n  \"mitbegreifen\": \"mitbegreif\",\n  \"mitbesitzer\": \"mitbesitz\",\n  \"mitbrachte\": \"mitbracht\",\n  \"mitbrächte\": \"mitbracht\",\n  \"mitbrachten\": \"mitbracht\",\n  \"mitbringen\": \"mitbring\",\n  \"mitbringt\": \"mitbringt\",\n  \"mitbürger\": \"mitburg\",\n  \"mitbürgern\": \"mitburg\",\n  \"miteinand\": \"miteinand\",\n  \"miteinander\": \"miteinand\",\n  \"miteinzubeziehen\": \"miteinzubezieh\",\n  \"miterleben\": \"miterleb\",\n  \"mitfahren\": \"mitfahr\",\n  \"mitfahrer\": \"mitfahr\",\n  \"mitführt\": \"mitfuhrt\",\n  \"mitführte\": \"mitfuhrt\",\n  \"mitg\": \"mitg\",\n  \"mitgeben\": \"mitgeb\",\n  \"mitgebracht\": \"mitgebracht\",\n  \"mitgedachte\": \"mitgedacht\",\n  \"mitgeführt\": \"mitgefuhrt\",\n  \"mitgegeben\": \"mitgegeb\",\n  \"mitgehen\": \"mitgeh\",\n  \"mitgeht\": \"mitgeht\",\n  \"mitgenommen\": \"mitgenomm\",\n  \"mitgerechnet\": \"mitgerechnet\",\n  \"mitgerissen\": \"mitgeriss\",\n  \"mitgesandt\": \"mitgesandt\",\n  \"mitgesellen\": \"mitgesell\",\n  \"mitgestaltet\": \"mitgestaltet\",\n  \"mitgesungen\": \"mitges\",\n  \"mitgetan\": \"mitgetan\",\n  \"mitgeteilt\": \"mitgeteilt\",\n  \"mitgewirkt\": \"mitgewirkt\",\n  \"mitgift\": \"mitgift\",\n  \"mitginge\": \"mitging\",\n  \"mitglied\": \"mitglied\",\n  \"mitglieder\": \"mitglied\",\n  \"mitgliedern\": \"mitglied\",\n  \"mitgliederversammlung\": \"mitgliederversamml\",\n  \"mitgliedkirchen\": \"mitgliedkirch\",\n  \"mitgliedskirchen\": \"mitgliedskirch\",\n  \"mithalten\": \"mithalt\",\n  \"mithelfen\": \"mithelf\",\n  \"mithilfe\": \"mithilf\",\n  \"mithin\": \"mithin\",\n  \"mithumpeln\": \"mithumpeln\",\n  \"mititium\": \"mititium\",\n  \"mitkommen\": \"mitkomm\",\n  \"mitkommt\": \"mitkommt\",\n  \"mitlachen\": \"mitlach\",\n  \"mitleid\": \"mitleid\",\n  \"mitleidenschaft\": \"mitleidenschaft\",\n  \"mitleidig\": \"mitleid\",\n  \"mitleids\": \"mitleid\",\n  \"mitmachte\": \"mitmacht\",\n  \"mitmanaged\": \"mitmanaged\",\n  \"mitmenschen\": \"mitmensch\",\n  \"mitn\": \"mitn\",\n  \"mitnahm\": \"mitnahm\",\n  \"mitnähme\": \"mitnahm\",\n  \"mitnahmen\": \"mitnahm\",\n  \"mitnehmen\": \"mitnehm\",\n  \"mitnichten\": \"mitnicht\",\n  \"mitschuldig\": \"mitschuld\",\n  \"mitschuldigen\": \"mitschuld\",\n  \"mitspielen\": \"mitspiel\",\n  \"mitstreiten\": \"mitstreit\",\n  \"mitstritten\": \"mitstritt\",\n  \"mitt\": \"mitt\",\n  \"mittag\": \"mittag\",\n  \"mittagbrot\": \"mittagbrot\",\n  \"mittagessen\": \"mittagess\",\n  \"mittags\": \"mittag\",\n  \"mittagseite\": \"mittagseit\",\n  \"mittagshelle\": \"mittagshell\",\n  \"mittagsmahl\": \"mittagsmahl\",\n  \"mittagspausen\": \"mittagspaus\",\n  \"mittagsschläfchen\": \"mittagsschlafch\",\n  \"mittagssonne\": \"mittagssonn\",\n  \"mittagsstunde\": \"mittagsstund\",\n  \"mittagszeit\": \"mittagszeit\",\n  \"mitte\": \"mitt\",\n  \"mitteilen\": \"mitteil\",\n  \"mitteilsam\": \"mitteilsam\",\n  \"mitteilsamer\": \"mitteilsam\",\n  \"mitteilt\": \"mitteilt\",\n  \"mitteilte\": \"mitteilt\",\n  \"mitteilten\": \"mitteilt\",\n  \"mitteilung\": \"mitteil\",\n  \"mittel\": \"mittel\",\n  \"mittelalter\": \"mittelalt\",\n  \"mittelbar\": \"mittelbar\",\n  \"mittelbare\": \"mittelbar\",\n  \"mittelbaren\": \"mittelbar\",\n  \"mittelbarer\": \"mittelbar\",\n  \"mittelchen\": \"mittelch\",\n  \"mittelding\": \"mittelding\",\n  \"mittelgrosses\": \"mittelgross\",\n  \"mittelgroßes\": \"mittelgross\",\n  \"mittelmässigkeit\": \"mittelmass\",\n  \"mitteln\": \"mitteln\",\n  \"mittelpunkt\": \"mittelpunkt\",\n  \"mittelpunkte\": \"mittelpunkt\",\n  \"mittels\": \"mittel\",\n  \"mittelsmann\": \"mittelsmann\",\n  \"mittelsperson\": \"mittelsperson\",\n  \"mittelst\": \"mittel\",\n  \"mittelzustande\": \"mittelzustand\",\n  \"mittelzwecke\": \"mittelzweck\",\n  \"mitten\": \"mitt\",\n  \"mittendrin\": \"mittendrin\",\n  \"mittenwald\": \"mittenwald\",\n  \"mitternacht\": \"mitternacht\",\n  \"mitternachts\": \"mitternacht\",\n  \"mitternachtsessen\": \"mitternachtsess\",\n  \"mitternachtsgottesdiensten\": \"mitternachtsgottesdien\",\n  \"mittler\": \"mittl\",\n  \"mittleramt\": \"mittleramt\",\n  \"mittlere\": \"mittl\",\n  \"mittleren\": \"mittl\",\n  \"mittlerer\": \"mittl\",\n  \"mittleres\": \"mittl\",\n  \"mittlern\": \"mittl\",\n  \"mittlerweile\": \"mittlerweil\",\n  \"mittun\": \"mittun\",\n  \"mittwoch\": \"mittwoch\",\n  \"mitverursacht\": \"mitverursacht\",\n  \"mitwandern\": \"mitwand\",\n  \"mitwirken\": \"mitwirk\",\n  \"mitwirkung\": \"mitwirk\",\n  \"mitzubringen\": \"mitzubring\",\n  \"mitzufahren\": \"mitzufahr\",\n  \"mitzugehen\": \"mitzugeh\",\n  \"mitzuhelfen\": \"mitzuhelf\",\n  \"mitzumachen\": \"mitzumach\",\n  \"mitzunehmen\": \"mitzunehm\",\n  \"mitzuteilen\": \"mitzuteil\",\n  \"mitzuzählen\": \"mitzuzahl\",\n  \"mitzwanzigerin\": \"mitzwanzigerin\",\n  \"mixer\": \"mix\",\n  \"mo\": \"mo\",\n  \"moab\": \"moab\",\n  \"moabiter\": \"moabit\",\n  \"moabs\": \"moab\",\n  \"möbel\": \"mobel\",\n  \"möbeln\": \"mobeln\",\n  \"möbelpacker\": \"mobelpack\",\n  \"möbelstück\": \"mobelstuck\",\n  \"mobile\": \"mobil\",\n  \"mobilisieren\": \"mobilisi\",\n  \"möcht\": \"mocht\",\n  \"mochte\": \"mocht\",\n  \"möchte\": \"mocht\",\n  \"mochten\": \"mocht\",\n  \"möchten\": \"mocht\",\n  \"möchtest\": \"mocht\",\n  \"möchtet\": \"mochtet\",\n  \"modalitäten\": \"modalitat\",\n  \"mode\": \"mod\",\n  \"modell\": \"modell\",\n  \"moder\": \"mod\",\n  \"moderdunst\": \"moderdun\",\n  \"modern\": \"mod\",\n  \"moderne\": \"modern\",\n  \"moderner\": \"modern\",\n  \"modified\": \"modified\",\n  \"modifikationen\": \"modifikation\",\n  \"modifiziert\": \"modifiziert\",\n  \"mödite\": \"modit\",\n  \"möge\": \"mog\",\n  \"mögen\": \"mog\",\n  \"mögest\": \"mog\",\n  \"möget\": \"moget\",\n  \"möglich\": \"moglich\",\n  \"mögliche\": \"moglich\",\n  \"möglichen\": \"moglich\",\n  \"möglicher\": \"moglich\",\n  \"möglicherweise\": \"moglicherweis\",\n  \"möglichkeit\": \"moglich\",\n  \"möglichkeiten\": \"moglich\",\n  \"möglichst\": \"moglich\",\n  \"möglichstem\": \"moglich\",\n  \"möglichster\": \"moglich\",\n  \"mögt\": \"mogt\",\n  \"mohammedaner\": \"mohammedan\",\n  \"mohnblume\": \"mohnblum\",\n  \"mohnblumen\": \"mohnblum\",\n  \"mohnrosen\": \"mohnros\",\n  \"molche\": \"molch\",\n  \"molestierten\": \"molestiert\",\n  \"molliger\": \"mollig\",\n  \"moment\": \"moment\",\n  \"momentan\": \"momentan\",\n  \"momente\": \"moment\",\n  \"momenten\": \"moment\",\n  \"mon\": \"mon\",\n  \"monat\": \"monat\",\n  \"monate\": \"monat\",\n  \"monaten\": \"monat\",\n  \"monatlich\": \"monat\",\n  \"monatszeitschrift\": \"monatszeitschrift\",\n  \"mönch\": \"monch\",\n  \"mönchsgesicht\": \"monchsgesicht\",\n  \"mond\": \"mond\",\n  \"mondbeglänzten\": \"mondbeglanzt\",\n  \"mondberg\": \"mondberg\",\n  \"mondberges\": \"mondberg\",\n  \"mondbeschienene\": \"mondbeschien\",\n  \"mondblumen\": \"mondblum\",\n  \"mondbuch\": \"mondbuch\",\n  \"mondbutter\": \"mondbutt\",\n  \"monde\": \"mond\",\n  \"mondes\": \"mond\",\n  \"mondfahrt\": \"mondfahrt\",\n  \"mondgegend\": \"mondgeg\",\n  \"mondhelle\": \"mondhell\",\n  \"mondhügel\": \"mondhugel\",\n  \"mondkälber\": \"mondkalb\",\n  \"mondkälbern\": \"mondkalb\",\n  \"mondkanone\": \"mondkanon\",\n  \"mondkrone\": \"mondkron\",\n  \"mondkruste\": \"mondkrust\",\n  \"mondland\": \"mondland\",\n  \"mondlandschaft\": \"mondlandschaft\",\n  \"mondlederstiefel\": \"mondlederstiefel\",\n  \"mondlicht\": \"mondlicht\",\n  \"mondlichtes\": \"mondlicht\",\n  \"mondmann\": \"mondmann\",\n  \"mondmanns\": \"mondmann\",\n  \"mondnächte\": \"mondnacht\",\n  \"mondschäfchen\": \"mondschafch\",\n  \"mondschein\": \"mondschein\",\n  \"mondscheinfladen\": \"mondscheinflad\",\n  \"mondschlitten\": \"mondschlitt\",\n  \"mondsichel\": \"mondsichel\",\n  \"mondspinat\": \"mondspinat\",\n  \"mondstaub\": \"mondstaub\",\n  \"mondstich\": \"mondstich\",\n  \"mondstrahlen\": \"mondstrahl\",\n  \"mondwüste\": \"mondwust\",\n  \"money\": \"money\",\n  \"monokel\": \"monokel\",\n  \"monokelherr\": \"monokelherr\",\n  \"monsieur\": \"monsieur\",\n  \"monstra\": \"monstra\",\n  \"mont\": \"mont\",\n  \"montag\": \"montag\",\n  \"montagnachmittag\": \"montagnachmittag\",\n  \"montarcy\": \"montarcy\",\n  \"montsalvatsch\": \"montsalvatsch\",\n  \"montur\": \"montur\",\n  \"monument\": \"monument\",\n  \"moorlache\": \"moorlach\",\n  \"moorwiesen\": \"moorwies\",\n  \"moorzotteln\": \"moorzotteln\",\n  \"moos\": \"moos\",\n  \"moose\": \"moos\",\n  \"moosfasern\": \"moosfas\",\n  \"moosgraben\": \"moosgrab\",\n  \"moosgrund\": \"moosgrund\",\n  \"moosigen\": \"moosig\",\n  \"moosklee\": \"mooskle\",\n  \"moosplatte\": \"moosplatt\",\n  \"moph\": \"moph\",\n  \"moral\": \"moral\",\n  \"moralisch\": \"moral\",\n  \"moralischbesseren\": \"moralischbess\",\n  \"moralische\": \"moral\",\n  \"moralischen\": \"moral\",\n  \"moralischer\": \"moral\",\n  \"moralisches\": \"moral\",\n  \"moralität\": \"moralitat\",\n  \"moralphilosoph\": \"moralphilosoph\",\n  \"mord\": \"mord\",\n  \"mordbrenner\": \"mordbrenn\",\n  \"morden\": \"mord\",\n  \"mörder\": \"mord\",\n  \"mörderisch\": \"morder\",\n  \"mörderischen\": \"morder\",\n  \"mörderlich\": \"mord\",\n  \"mörders\": \"mord\",\n  \"mordio\": \"mordio\",\n  \"mordtat\": \"mordtat\",\n  \"mordversuchs\": \"mordversuch\",\n  \"more\": \"mor\",\n  \"morgen\": \"morg\",\n  \"morgenbrot\": \"morgenbrot\",\n  \"morgende\": \"morgend\",\n  \"morgenden\": \"morgend\",\n  \"morgenferne\": \"morgenfern\",\n  \"morgenlande\": \"morgenland\",\n  \"morgenlandes\": \"morgenland\",\n  \"morgenländischen\": \"morgenland\",\n  \"morgenlands\": \"morgenland\",\n  \"morgenliedchen\": \"morgenliedch\",\n  \"morgenluft\": \"morgenluft\",\n  \"morgenmantel\": \"morgenmantel\",\n  \"morgenpirsch\": \"morgenpirsch\",\n  \"morgenrot\": \"morgenrot\",\n  \"morgenröte\": \"morgenrot\",\n  \"morgens\": \"morg\",\n  \"morgensonne\": \"morgensonn\",\n  \"morgenstern\": \"morgen\",\n  \"morgensterne\": \"morgenstern\",\n  \"morgental\": \"morgental\",\n  \"morgenwindchen\": \"morgenwindch\",\n  \"morgigen\": \"morgig\",\n  \"moring\": \"moring\",\n  \"moritz\": \"moritz\",\n  \"morose\": \"moros\",\n  \"morosität\": \"morositat\",\n  \"morsche\": \"morsch\",\n  \"morschen\": \"morsch\",\n  \"morscher\": \"morsch\",\n  \"mörser\": \"mors\",\n  \"mörserchen\": \"morserch\",\n  \"mörtelbrocken\": \"mortelbrock\",\n  \"moscheh\": \"moscheh\",\n  \"moschus\": \"moschus\",\n  \"mose\": \"mos\",\n  \"moses\": \"mos\",\n  \"moskau\": \"moskau\",\n  \"most\": \"most\",\n  \"mostes\": \"most\",\n  \"motion\": \"motion\",\n  \"motionen\": \"motion\",\n  \"motitans\": \"motitan\",\n  \"motiv\": \"motiv\",\n  \"motive\": \"motiv\",\n  \"motor\": \"motor\",\n  \"motorradclub\": \"motorradclub\",\n  \"motorräder\": \"motorrad\",\n  \"motto\": \"motto\",\n  \"mozartsche\": \"mozartsch\",\n  \"mta\": \"mta\",\n  \"mücke\": \"muck\",\n  \"mücken\": \"muck\",\n  \"mucksen\": \"mucks\",\n  \"muckser\": \"mucks\",\n  \"muckwitz\": \"muckwitz\",\n  \"müde\": \"mud\",\n  \"müden\": \"mud\",\n  \"müdes\": \"mud\",\n  \"müdigkeit\": \"mudig\",\n  \"muess\": \"muess\",\n  \"müesst\": \"muesst\",\n  \"mühe\": \"muh\",\n  \"mühelosigkeit\": \"muhelos\",\n  \"mühen\": \"muh\",\n  \"mühevoll\": \"muhevoll\",\n  \"mühevolle\": \"muhevoll\",\n  \"mühevoller\": \"muhevoll\",\n  \"mühlsteine\": \"muhlstein\",\n  \"muhme\": \"muhm\",\n  \"mühsal\": \"muhsal\",\n  \"mühsam\": \"muhsam\",\n  \"mühsame\": \"muhsam\",\n  \"mühselig\": \"muhsel\",\n  \"mühseligen\": \"muhsel\",\n  \"mühseligkeit\": \"muhsel\",\n  \"müht\": \"muht\",\n  \"mühten\": \"muht\",\n  \"mul\": \"mul\",\n  \"mulack\": \"mulack\",\n  \"mulde\": \"muld\",\n  \"mullack\": \"mullack\",\n  \"müllerjungen\": \"mullerj\",\n  \"multext\": \"multext\",\n  \"multikulturelle\": \"multikulturell\",\n  \"multipliziert\": \"multipliziert\",\n  \"multis\": \"multis\",\n  \"münchen\": \"munch\",\n  \"münchener\": \"munch\",\n  \"mund\": \"mund\",\n  \"mundart\": \"mundart\",\n  \"mundbärtchen\": \"mundbartch\",\n  \"mündchen\": \"mundch\",\n  \"munde\": \"mund\",\n  \"munden\": \"mund\",\n  \"mundes\": \"mund\",\n  \"mündet\": \"mundet\",\n  \"mündete\": \"mundet\",\n  \"mundeten\": \"mundet\",\n  \"mundgefässe\": \"mundgefass\",\n  \"mundgefäße\": \"mundgefass\",\n  \"mundkoch\": \"mundkoch\",\n  \"mündlich\": \"mundlich\",\n  \"mündlichkeit\": \"mundlich\",\n  \"mundraub\": \"mundraub\",\n  \"mundtot\": \"mundtot\",\n  \"mündung\": \"mundung\",\n  \"mundwerk\": \"mundwerk\",\n  \"mundwinkel\": \"mundwinkel\",\n  \"mundwinkeln\": \"mundwinkeln\",\n  \"münsingen\": \"munsing\",\n  \"munter\": \"munt\",\n  \"muntere\": \"munt\",\n  \"munteren\": \"munt\",\n  \"munterkeit\": \"munter\",\n  \"muntern\": \"munt\",\n  \"munterte\": \"muntert\",\n  \"münze\": \"munz\",\n  \"münzen\": \"munz\",\n  \"mürb\": \"murb\",\n  \"mürbe\": \"murb\",\n  \"murke\": \"murk\",\n  \"murkes\": \"murk\",\n  \"murmelkugeln\": \"murmelkugeln\",\n  \"murmeln\": \"murmeln\",\n  \"murmelte\": \"murmelt\",\n  \"murmeltier\": \"murmelti\",\n  \"murmeltiere\": \"murmelti\",\n  \"murren\": \"murr\",\n  \"mürrisch\": \"murrisch\",\n  \"murrkopf\": \"murrkopf\",\n  \"murrte\": \"murrt\",\n  \"murrten\": \"murrt\",\n  \"mus\": \"mus\",\n  \"muschelförmige\": \"muschelform\",\n  \"muscheln\": \"muscheln\",\n  \"muschelschiff\": \"muschelschiff\",\n  \"muschi\": \"muschi\",\n  \"museum\": \"museum\",\n  \"musik\": \"musik\",\n  \"musikalisch\": \"musikal\",\n  \"musikalisches\": \"musikal\",\n  \"musikanten\": \"musikant\",\n  \"musikbusiness\": \"musikbusiness\",\n  \"musiker\": \"musik\",\n  \"musikindustrie\": \"musikindustri\",\n  \"musikstück\": \"musikstuck\",\n  \"musikszene\": \"musiksz\",\n  \"musizierende\": \"musizier\",\n  \"musizierte\": \"musiziert\",\n  \"muskelfasern\": \"muskelfas\",\n  \"muskete\": \"musket\",\n  \"muskulatur\": \"muskulatur\",\n  \"muss\": \"muss\",\n  \"muß\": \"muss\",\n  \"musse\": \"muss\",\n  \"müsse\": \"muss\",\n  \"musselinhalstuch\": \"musselinhalstuch\",\n  \"müssen\": \"muss\",\n  \"mussestunden\": \"mussestund\",\n  \"müssig\": \"mussig\",\n  \"müßig\": \"mussig\",\n  \"müssige\": \"mussig\",\n  \"müssigen\": \"mussig\",\n  \"müßigen\": \"mussig\",\n  \"müssiges\": \"mussig\",\n  \"müssiggang\": \"mussiggang\",\n  \"müssiggange\": \"mussiggang\",\n  \"müssiggänger\": \"mussiggang\",\n  \"müssigganges\": \"mussiggang\",\n  \"musst\": \"musst\",\n  \"mußt\": \"musst\",\n  \"müsst\": \"musst\",\n  \"müßt\": \"musst\",\n  \"musste\": \"musst\",\n  \"mußte\": \"musst\",\n  \"müsste\": \"musst\",\n  \"müßte\": \"musst\",\n  \"mussten\": \"musst\",\n  \"mußten\": \"musst\",\n  \"müssten\": \"musst\",\n  \"müßten\": \"musst\",\n  \"müsstest\": \"musst\",\n  \"muster\": \"must\",\n  \"mustergültig\": \"mustergult\",\n  \"musterkarte\": \"musterkart\",\n  \"musterte\": \"mustert\",\n  \"musterung\": \"muster\",\n  \"mut\": \"mut\",\n  \"mütchen\": \"mutch\",\n  \"mute\": \"mut\",\n  \"mutes\": \"mut\",\n  \"mutesäusserung\": \"mutesausser\",\n  \"mutig\": \"mutig\",\n  \"mutige\": \"mutig\",\n  \"mutigen\": \"mutig\",\n  \"mütlichen\": \"mutlich\",\n  \"mutlos\": \"mutlos\",\n  \"mutmassen\": \"mutmass\",\n  \"mutmassliche\": \"mutmass\",\n  \"mutoid\": \"mutoid\",\n  \"muttchen\": \"muttch\",\n  \"mutter\": \"mutt\",\n  \"mütterchen\": \"mutterch\",\n  \"mutterdurchbruch\": \"mutterdurchbruch\",\n  \"muttergottes\": \"muttergott\",\n  \"mutterkirche\": \"mutterkirch\",\n  \"mutterleib\": \"mutterleib\",\n  \"mutterleibe\": \"mutterleib\",\n  \"mütterlichen\": \"mutt\",\n  \"mütterlicher\": \"mutt\",\n  \"mütterliches\": \"mutt\",\n  \"mutterliebe\": \"mutterlieb\",\n  \"muttern\": \"mutt\",\n  \"müttern\": \"mutt\",\n  \"mutterseelenallein\": \"mutterseelenallein\",\n  \"muttersprache\": \"muttersprach\",\n  \"muttersprachler\": \"muttersprachl\",\n  \"mutterwitz\": \"mutterwitz\",\n  \"mutvoll\": \"mutvoll\",\n  \"mutwillen\": \"mutwill\",\n  \"mutwillens\": \"mutwill\",\n  \"mutwillig\": \"mutwill\",\n  \"mutwillige\": \"mutwill\",\n  \"mutwilligen\": \"mutwill\",\n  \"mutwilliges\": \"mutwill\",\n  \"mutwilligsten\": \"mutwill\",\n  \"mütze\": \"mutz\",\n  \"mützen\": \"mutz\",\n  \"mützenabnehmen\": \"mutzenabnehm\",\n  \"myriaden\": \"myriad\",\n  \"myrrhen\": \"myrrh\",\n  \"mysterien\": \"mysteri\",\n  \"mystica\": \"mystica\",\n  \"mystiker\": \"mystik\",\n  \"mystizismus\": \"mystizismus\",\n  \"mythen\": \"myth\",\n  \"mythos\": \"mythos\",\n  \"n\": \"n\",\n  \"na\": \"na\",\n  \"naamah\": \"naamah\",\n  \"nabel\": \"nabel\",\n  \"nach\": \"nach\",\n  \"nacha\": \"nacha\",\n  \"nachäffen\": \"nachaff\",\n  \"nachäffte\": \"nachafft\",\n  \"nachahmer\": \"nachahm\",\n  \"nachahmt\": \"nachahmt\",\n  \"nachahmung\": \"nachahm\",\n  \"nachassons\": \"nachasson\",\n  \"nachbar\": \"nachbar\",\n  \"nachbaräckern\": \"nachbarack\",\n  \"nachbaren\": \"nachbar\",\n  \"nachbarhäuser\": \"nachbarhaus\",\n  \"nachbarin\": \"nachbarin\",\n  \"nachbarkirche\": \"nachbarkirch\",\n  \"nachbarn\": \"nachbarn\",\n  \"nachbarregierung\": \"nachbarregier\",\n  \"nachbars\": \"nachbar\",\n  \"nachbarschaft\": \"nachbarschaft\",\n  \"nachbarsleute\": \"nachbarsleut\",\n  \"nachbilden\": \"nachbild\",\n  \"nachbildeten\": \"nachbildet\",\n  \"nachblickend\": \"nachblick\",\n  \"nachdachte\": \"nachdacht\",\n  \"nachdem\": \"nachd\",\n  \"nachdenken\": \"nachdenk\",\n  \"nachdenkende\": \"nachdenk\",\n  \"nachdenkens\": \"nachdenk\",\n  \"nachdenklich\": \"nachdenk\",\n  \"nachdenklichkeit\": \"nachdenk\",\n  \"nachdenkt\": \"nachdenkt\",\n  \"nachdruck\": \"nachdruck\",\n  \"nachdrücklichen\": \"nachdruck\",\n  \"nacheiferten\": \"nacheifert\",\n  \"nacheiferung\": \"nacheifer\",\n  \"nacheinander\": \"nacheinand\",\n  \"nacheinanderfolgende\": \"nacheinanderfolg\",\n  \"nachen\": \"nach\",\n  \"nacher\": \"nach\",\n  \"nachernte\": \"nachernt\",\n  \"nachflogen\": \"nachflog\",\n  \"nachfolgende\": \"nachfolg\",\n  \"nachfolgenden\": \"nachfolg\",\n  \"nachfolgt\": \"nachfolgt\",\n  \"nachforschen\": \"nachforsch\",\n  \"nachforscht\": \"nachforscht\",\n  \"nachforschte\": \"nachforscht\",\n  \"nachforschten\": \"nachforscht\",\n  \"nachforschung\": \"nachforsch\",\n  \"nachforschungen\": \"nachforsch\",\n  \"nachfrage\": \"nachfrag\",\n  \"nachfragen\": \"nachfrag\",\n  \"nachfühlte\": \"nachfuhlt\",\n  \"nachg\": \"nachg\",\n  \"nachgangen\": \"nachgang\",\n  \"nachgeahmten\": \"nachgeahmt\",\n  \"nachgeben\": \"nachgeb\",\n  \"nachgebildet\": \"nachgebildet\",\n  \"nachgebildete\": \"nachgebildet\",\n  \"nachgedacht\": \"nachgedacht\",\n  \"nachgefolgt\": \"nachgefolgt\",\n  \"nachgehen\": \"nachgeh\",\n  \"nachgehn\": \"nachgehn\",\n  \"nachgeht\": \"nachgeht\",\n  \"nachgekommen\": \"nachgekomm\",\n  \"nachgeschaut\": \"nachgeschaut\",\n  \"nachgeschickte\": \"nachgeschickt\",\n  \"nachgeschlagen\": \"nachgeschlag\",\n  \"nachgesehen\": \"nachgeseh\",\n  \"nachgesetzt\": \"nachgesetzt\",\n  \"nachgestiegen\": \"nachgestieg\",\n  \"nachgewiesen\": \"nachgewies\",\n  \"nachgezählt\": \"nachgezahlt\",\n  \"nachgiebigkeit\": \"nachgieb\",\n  \"nachging\": \"nachging\",\n  \"nachgingen\": \"nachging\",\n  \"nachgrübelte\": \"nachgrubelt\",\n  \"nachhaltig\": \"nachhalt\",\n  \"nachhausefahren\": \"nachhausefahr\",\n  \"nachhausewege\": \"nachhauseweg\",\n  \"nachher\": \"nachh\",\n  \"nachherigen\": \"nachher\",\n  \"nachhinein\": \"nachhinein\",\n  \"nachholen\": \"nachhol\",\n  \"nachjagend\": \"nachjag\",\n  \"nachkam\": \"nachkam\",\n  \"nachkommen\": \"nachkomm\",\n  \"nachkommenschaft\": \"nachkommenschaft\",\n  \"nachkommenschaften\": \"nachkommenschaft\",\n  \"nachlass\": \"nachlass\",\n  \"nachlaß\": \"nachlass\",\n  \"nachlassen\": \"nachlass\",\n  \"nachlässig\": \"nachlass\",\n  \"nachlässigkeit\": \"nachlass\",\n  \"nachlaufen\": \"nachlauf\",\n  \"nachlese\": \"nachles\",\n  \"nachlesen\": \"nachles\",\n  \"nachliefen\": \"nachlief\",\n  \"nachmachen\": \"nachmach\",\n  \"nachmalen\": \"nachmal\",\n  \"nachmals\": \"nachmal\",\n  \"nachmittag\": \"nachmittag\",\n  \"nachmittage\": \"nachmittag\",\n  \"nachmittags\": \"nachmittag\",\n  \"nachmittagsunterhaltung\": \"nachmittagsunterhalt\",\n  \"nachricht\": \"nachricht\",\n  \"nachrichten\": \"nachricht\",\n  \"nachrichtenagentur\": \"nachrichtenagentur\",\n  \"nachrichtenlosen\": \"nachrichtenlos\",\n  \"nachrichtenmagazin\": \"nachrichtenmagazin\",\n  \"nachsagen\": \"nachsag\",\n  \"nachsah\": \"nachsah\",\n  \"nachschau\": \"nachschau\",\n  \"nachschauen\": \"nachschau\",\n  \"nachschaute\": \"nachschaut\",\n  \"nachschicken\": \"nachschick\",\n  \"nachsehe\": \"nachseh\",\n  \"nachsehen\": \"nachseh\",\n  \"nachsicht\": \"nachsicht\",\n  \"nachsichtig\": \"nachsicht\",\n  \"nachsinnen\": \"nachsinn\",\n  \"nachspiele\": \"nachspiel\",\n  \"nachspringen\": \"nachspring\",\n  \"nächst\": \"nach\",\n  \"nächstbeste\": \"nachstb\",\n  \"nächstbesten\": \"nachstb\",\n  \"nächstdem\": \"nachstd\",\n  \"nächste\": \"nach\",\n  \"nächsten\": \"nach\",\n  \"nächstenliebe\": \"nachstenlieb\",\n  \"nächstens\": \"nachst\",\n  \"nächster\": \"nach\",\n  \"nächstgelegene\": \"nachstgeleg\",\n  \"nächstliegenden\": \"nachstlieg\",\n  \"nacht\": \"nacht\",\n  \"nachtarbeit\": \"nachtarbeit\",\n  \"nachtcafe\": \"nachtcaf\",\n  \"nachtcafé\": \"nachtcafé\",\n  \"nachtclub\": \"nachtclub\",\n  \"nächte\": \"nacht\",\n  \"nachteil\": \"nachteil\",\n  \"nachteile\": \"nachteil\",\n  \"nachteiligen\": \"nachteil\",\n  \"nächten\": \"nacht\",\n  \"nachtessen\": \"nachtess\",\n  \"nachteulen\": \"nachteul\",\n  \"nachtfahne\": \"nachtfahn\",\n  \"nachtfalter\": \"nachtfalt\",\n  \"nachtfaltern\": \"nachtfalt\",\n  \"nachtfee\": \"nachtfe\",\n  \"nachtgebet\": \"nachtgebet\",\n  \"nachtgejaide\": \"nachtgejaid\",\n  \"nachthäubchen\": \"nachthaubch\",\n  \"nachthemd\": \"nachthemd\",\n  \"nachthemdchen\": \"nachthemdch\",\n  \"nachthimmel\": \"nachthimmel\",\n  \"nachtig\": \"nachtig\",\n  \"nachtigall\": \"nachtigall\",\n  \"nachtigallen\": \"nachtigall\",\n  \"nachtisch\": \"nachtisch\",\n  \"nachtjoppe\": \"nachtjopp\",\n  \"nachtklee\": \"nachtkle\",\n  \"nächtlich\": \"nachtlich\",\n  \"nächtliche\": \"nachtlich\",\n  \"nächtlichen\": \"nachtlich\",\n  \"nächtlicher\": \"nachtlich\",\n  \"nachtluft\": \"nachtluft\",\n  \"nachtmützen\": \"nachtmutz\",\n  \"nachtnebel\": \"nachtnebel\",\n  \"nachtragen\": \"nachtrag\",\n  \"nachträglich\": \"nachtrag\",\n  \"nachtrauern\": \"nachtrau\",\n  \"nachts\": \"nacht\",\n  \"nachtschmetterlinge\": \"nachtschmetterling\",\n  \"nachtschwarzen\": \"nachtschwarz\",\n  \"nachtstillen\": \"nachtstill\",\n  \"nachttau\": \"nachttau\",\n  \"nachtwächter\": \"nachtwacht\",\n  \"nachtwächtern\": \"nachtwacht\",\n  \"nachtwandel\": \"nachtwandel\",\n  \"nachtwandler\": \"nachtwandl\",\n  \"nachvollziehen\": \"nachvollzieh\",\n  \"nachwandelten\": \"nachwandelt\",\n  \"nachwelt\": \"nachwelt\",\n  \"nachwuchs\": \"nachwuch\",\n  \"nachzählte\": \"nachzahlt\",\n  \"nachzottelte\": \"nachzottelt\",\n  \"nachzuahmen\": \"nachzuahm\",\n  \"nachzubilden\": \"nachzubild\",\n  \"nachzublicken\": \"nachzublick\",\n  \"nachzudenken\": \"nachzudenk\",\n  \"nachzufahren\": \"nachzufahr\",\n  \"nachzufragen\": \"nachzufrag\",\n  \"nachzufüllen\": \"nachzufull\",\n  \"nachzugehen\": \"nachzugeh\",\n  \"nachzuhängen\": \"nachzuhang\",\n  \"nachzuholen\": \"nachzuhol\",\n  \"nachzurufen\": \"nachzuruf\",\n  \"nachzuschauen\": \"nachzuschau\",\n  \"nachzusehen\": \"nachzuseh\",\n  \"nachzuspüren\": \"nachzuspur\",\n  \"nachzustreben\": \"nachzustreb\",\n  \"nachzusuchen\": \"nachzusuch\",\n  \"nachzuweisen\": \"nachzuweis\",\n  \"nacken\": \"nack\",\n  \"nacketes\": \"nacket\",\n  \"nackt\": \"nackt\",\n  \"nackte\": \"nackt\",\n  \"nackten\": \"nackt\",\n  \"nacktheit\": \"nacktheit\",\n  \"nadab\": \"nadab\",\n  \"nadel\": \"nadel\",\n  \"nadelbüchse\": \"nadelbuchs\",\n  \"nadelgras\": \"nadelgras\",\n  \"nadelöhr\": \"nadelohr\",\n  \"nadelzunge\": \"nadelz\",\n  \"nagel\": \"nagel\",\n  \"nägelein\": \"nagelein\",\n  \"nägeln\": \"nageln\",\n  \"nagelschuhe\": \"nagelschuh\",\n  \"nagende\": \"nagend\",\n  \"nagerln\": \"nagerln\",\n  \"nagerlstock\": \"nagerlstock\",\n  \"nah\": \"nah\",\n  \"nahe\": \"nah\",\n  \"nähe\": \"nah\",\n  \"nahegelegenen\": \"nahegeleg\",\n  \"nahegelegt\": \"nahegelegt\",\n  \"nahekommen\": \"nahekomm\",\n  \"naheliegendste\": \"nahelieg\",\n  \"nahen\": \"nah\",\n  \"nahend\": \"nahend\",\n  \"nahende\": \"nahend\",\n  \"nahenden\": \"nahend\",\n  \"naher\": \"nah\",\n  \"näher\": \"nah\",\n  \"näheren\": \"nah\",\n  \"näherer\": \"nah\",\n  \"näheres\": \"nah\",\n  \"nähern\": \"nah\",\n  \"nähert\": \"nahert\",\n  \"näherte\": \"nahert\",\n  \"näherten\": \"nahert\",\n  \"nähertreten\": \"nahertret\",\n  \"nähete\": \"nahet\",\n  \"näheten\": \"nahet\",\n  \"nahezu\": \"nahezu\",\n  \"nahm\": \"nahm\",\n  \"nähme\": \"nahm\",\n  \"nahmen\": \"nahm\",\n  \"nähmen\": \"nahm\",\n  \"nähren\": \"nahr\",\n  \"nahrhaft\": \"nahrhaft\",\n  \"nährmitteln\": \"nahrmitteln\",\n  \"nährte\": \"nahrt\",\n  \"nahrung\": \"nahrung\",\n  \"nahrungsmittel\": \"nahrungsmittel\",\n  \"naht\": \"naht\",\n  \"nahtbeflissenen\": \"nahtbefliss\",\n  \"nahte\": \"naht\",\n  \"nähten\": \"naht\",\n  \"nahum\": \"nahum\",\n  \"nai\": \"nai\",\n  \"naiv\": \"naiv\",\n  \"näm\": \"nam\",\n  \"name\": \"nam\",\n  \"namen\": \"nam\",\n  \"namenlose\": \"namenlos\",\n  \"namenlosen\": \"namenlos\",\n  \"namens\": \"nam\",\n  \"namenstag\": \"namenstag\",\n  \"namenstage\": \"namenstag\",\n  \"namentlich\": \"nament\",\n  \"namevor\": \"namevor\",\n  \"namhafte\": \"namhaft\",\n  \"nämlich\": \"namlich\",\n  \"nämliche\": \"namlich\",\n  \"nämlichen\": \"namlich\",\n  \"nannte\": \"nannt\",\n  \"nannten\": \"nannt\",\n  \"nanu\": \"nanu\",\n  \"näpheg\": \"napheg\",\n  \"naphthali\": \"naphthali\",\n  \"napoleon\": \"napoleon\",\n  \"napoleonischen\": \"napoleon\",\n  \"napoleons\": \"napoleon\",\n  \"napoleonsbild\": \"napoleonsbild\",\n  \"narben\": \"narb\",\n  \"narbenbein\": \"narbenbein\",\n  \"narr\": \"narr\",\n  \"närrchen\": \"narrch\",\n  \"narren\": \"narr\",\n  \"narrenspossen\": \"narrensposs\",\n  \"narret\": \"narret\",\n  \"narretei\": \"narretei\",\n  \"narrheit\": \"narrheit\",\n  \"närrin\": \"narrin\",\n  \"närrische\": \"narrisch\",\n  \"närrischem\": \"narrisch\",\n  \"närrischen\": \"narrisch\",\n  \"närrischer\": \"narrisch\",\n  \"naschen\": \"nasch\",\n  \"näschen\": \"nasch\",\n  \"nascherei\": \"nascherei\",\n  \"naschhaftigkeit\": \"naschhaft\",\n  \"nase\": \"nas\",\n  \"nasegrün\": \"nasegrun\",\n  \"nasen\": \"nas\",\n  \"nasenringe\": \"nasenring\",\n  \"nasenspitze\": \"nasenspitz\",\n  \"nasenstüber\": \"nasenstub\",\n  \"nasenwurzel\": \"nasenwurzel\",\n  \"nashorn\": \"nashorn\",\n  \"nass\": \"nass\",\n  \"naß\": \"nass\",\n  \"nassauer\": \"nassau\",\n  \"nasse\": \"nass\",\n  \"nässe\": \"nass\",\n  \"nassen\": \"nass\",\n  \"nati\": \"nati\",\n  \"nation\": \"nation\",\n  \"nationalbank\": \"nationalbank\",\n  \"nationaldenkmal\": \"nationaldenkmal\",\n  \"nationale\": \"national\",\n  \"nationalen\": \"national\",\n  \"nationalhelden\": \"nationalheld\",\n  \"nationalrat\": \"nationalrat\",\n  \"nationalräte\": \"nationalrat\",\n  \"nationalrätliche\": \"nationalrat\",\n  \"nationen\": \"nation\",\n  \"natur\": \"natur\",\n  \"natura\": \"natura\",\n  \"naturae\": \"natura\",\n  \"naturanstalt\": \"naturanstalt\",\n  \"naturbedürfnis\": \"naturbedurfnis\",\n  \"naturbegriffe\": \"naturbegriff\",\n  \"naturbetrachtung\": \"naturbetracht\",\n  \"natureinfalt\": \"natureinfalt\",\n  \"natureinrichtungen\": \"natureinricht\",\n  \"naturen\": \"natur\",\n  \"naturerkenntnis\": \"naturerkenntnis\",\n  \"naturerscheinungen\": \"naturerschein\",\n  \"naturfreund\": \"naturfreund\",\n  \"naturgabe\": \"naturgab\",\n  \"naturgange\": \"naturgang\",\n  \"naturganzes\": \"naturganz\",\n  \"naturgegenstände\": \"naturgegenstand\",\n  \"naturgeheimnisse\": \"naturgeheimnis\",\n  \"naturgeister\": \"naturgeist\",\n  \"naturgeistern\": \"naturgeist\",\n  \"naturgesetz\": \"naturgesetz\",\n  \"naturgesetze\": \"naturgesetz\",\n  \"naturgesetzen\": \"naturgesetz\",\n  \"naturgesetzes\": \"naturgesetz\",\n  \"naturgewalten\": \"naturgewalt\",\n  \"naturkenntnis\": \"naturkenntnis\",\n  \"naturkette\": \"naturkett\",\n  \"naturkräfte\": \"naturkraft\",\n  \"naturlaufe\": \"naturlauf\",\n  \"natürlich\": \"natur\",\n  \"natürliche\": \"natur\",\n  \"natürlichem\": \"natur\",\n  \"natürlichen\": \"natur\",\n  \"natürlicher\": \"natur\",\n  \"natürliches\": \"natur\",\n  \"natürlichkeit\": \"natur\",\n  \"natürlichste\": \"natur\",\n  \"natürlieh\": \"naturlieh\",\n  \"naturmechanismus\": \"naturmechanismus\",\n  \"naturnotwendigkeit\": \"naturnotwend\",\n  \"naturordnung\": \"naturordn\",\n  \"naturspiel\": \"naturspiel\",\n  \"naturursachen\": \"naturursach\",\n  \"naturvergötterung\": \"naturvergotter\",\n  \"naturverknüpfung\": \"naturverknupf\",\n  \"naturvermögen\": \"naturvermog\",\n  \"naturvollkommenheit\": \"naturvollkomm\",\n  \"naturwege\": \"naturweg\",\n  \"naturwissenschaft\": \"naturwissenschaft\",\n  \"naturwissenschafter\": \"naturwissenschaft\",\n  \"naturwüchsige\": \"naturwuchs\",\n  \"naus\": \"naus\",\n  \"nauszahlen\": \"nauszahl\",\n  \"nazi\": \"nazi\",\n  \"nazigold\": \"nazigold\",\n  \"nazimi\": \"nazimi\",\n  \"nazis\": \"nazis\",\n  \"ne\": \"ne\",\n  \"neapel\": \"neapel\",\n  \"neb\": \"neb\",\n  \"nebajoths\": \"nebajoth\",\n  \"nebel\": \"nebel\",\n  \"nebelfahnen\": \"nebelfahn\",\n  \"nebelfetzen\": \"nebelfetz\",\n  \"nebelfrauen\": \"nebelfrau\",\n  \"nebelhafte\": \"nebelhaft\",\n  \"nebelkrähe\": \"nebelkrah\",\n  \"nebelluft\": \"nebelluft\",\n  \"nebelmassen\": \"nebelmass\",\n  \"nebeln\": \"nebeln\",\n  \"nebelspalter\": \"nebelspalt\",\n  \"nebelstreif\": \"nebelstreif\",\n  \"nebelweg\": \"nebelweg\",\n  \"nebelwind\": \"nebelwind\",\n  \"nebelzug\": \"nebelzug\",\n  \"neben\": \"neb\",\n  \"nebenämter\": \"nebenamt\",\n  \"nebenan\": \"nebenan\",\n  \"nebenbei\": \"nebenbei\",\n  \"nebenbestimmungen\": \"nebenbestimm\",\n  \"nebenbuhler\": \"nebenbuhl\",\n  \"nebenbuhlern\": \"nebenbuhl\",\n  \"nebeneinander\": \"nebeneinand\",\n  \"nebeneinanderliegende\": \"nebeneinanderlieg\",\n  \"nebengebäuden\": \"nebengebaud\",\n  \"nebengesellen\": \"nebengesell\",\n  \"nebenherlaufen\": \"nebenherlauf\",\n  \"nebenmenschen\": \"nebenmensch\",\n  \"nebensache\": \"nebensach\",\n  \"nebenstube\": \"nebenstub\",\n  \"nebenzimmer\": \"nebenzimm\",\n  \"nebenzimmers\": \"nebenzimm\",\n  \"nebst\": \"nebst\",\n  \"nebukadnezar\": \"nebukadnezar\",\n  \"nebukadnezars\": \"nebukadnezar\",\n  \"necesse\": \"necess\",\n  \"neckt\": \"neckt\",\n  \"neckte\": \"neckt\",\n  \"nefas\": \"nefas\",\n  \"neffe\": \"neff\",\n  \"neffen\": \"neff\",\n  \"negativ\": \"negativ\",\n  \"negative\": \"negativ\",\n  \"negativen\": \"negativ\",\n  \"negatives\": \"negativ\",\n  \"nehme\": \"nehm\",\n  \"nehmen\": \"nehm\",\n  \"nehmend\": \"nehmend\",\n  \"nehmenden\": \"nehmend\",\n  \"nehmet\": \"nehmet\",\n  \"nehmt\": \"nehmt\",\n  \"neid\": \"neid\",\n  \"neides\": \"neid\",\n  \"neideswut\": \"neideswut\",\n  \"neidisch\": \"neidisch\",\n  \"neigen\": \"neig\",\n  \"neigend\": \"neigend\",\n  \"neiget\": \"neiget\",\n  \"neigt\": \"neigt\",\n  \"neigte\": \"neigt\",\n  \"neigten\": \"neigt\",\n  \"neigung\": \"neigung\",\n  \"neigungen\": \"neigung\",\n  \"nein\": \"nein\",\n  \"nelke\": \"nelk\",\n  \"nem\": \"nem\",\n  \"nen\": \"nen\",\n  \"nenne\": \"nenn\",\n  \"nennen\": \"nenn\",\n  \"nennest\": \"nenn\",\n  \"nennete\": \"nennet\",\n  \"nennst\": \"nenn\",\n  \"nennt\": \"nennt\",\n  \"nephaim\": \"nephaim\",\n  \"nephalim\": \"nephalim\",\n  \"nephilim\": \"nephilim\",\n  \"ner\": \"ner\",\n  \"nervenden\": \"nervend\",\n  \"nervenfieber\": \"nervenfieb\",\n  \"nervös\": \"nervos\",\n  \"nervöse\": \"nervos\",\n  \"nervösem\": \"nervos\",\n  \"nervöser\": \"nervos\",\n  \"nessel\": \"nessel\",\n  \"nesseln\": \"nesseln\",\n  \"nest\": \"nest\",\n  \"neste\": \"nest\",\n  \"nesterchen\": \"nesterch\",\n  \"nestes\": \"nest\",\n  \"net\": \"net\",\n  \"netscape\": \"netscap\",\n  \"nett\": \"nett\",\n  \"nettchen\": \"nettch\",\n  \"nettchens\": \"nettch\",\n  \"nette\": \"nett\",\n  \"netten\": \"nett\",\n  \"netter\": \"nett\",\n  \"nettes\": \"nett\",\n  \"netz\": \"netz\",\n  \"netze\": \"netz\",\n  \"netzwerk\": \"netzwerk\",\n  \"neu\": \"neu\",\n  \"neuangekommene\": \"neuangekomm\",\n  \"neuaufbau\": \"neuaufbau\",\n  \"neubauten\": \"neubaut\",\n  \"neubebaute\": \"neubebaut\",\n  \"neubelebung\": \"neubeleb\",\n  \"neubesetzung\": \"neubesetz\",\n  \"neue\": \"neu\",\n  \"neuem\": \"neu\",\n  \"neuen\": \"neu\",\n  \"neuer\": \"neu\",\n  \"neuerdings\": \"neuerding\",\n  \"neueren\": \"neu\",\n  \"neuerliche\": \"neu\",\n  \"neuern\": \"neu\",\n  \"neues\": \"neu\",\n  \"neuesdas\": \"neuesdas\",\n  \"neueste\": \"neu\",\n  \"neuesten\": \"neu\",\n  \"neugeborene\": \"neugebor\",\n  \"neugeborenen\": \"neugebor\",\n  \"neugegründeten\": \"neugegrundet\",\n  \"neugeschaffen\": \"neugeschaff\",\n  \"neugesprochenen\": \"neugesproch\",\n  \"neugestählter\": \"neugestahlt\",\n  \"neugier\": \"neugi\",\n  \"neugierde\": \"neugierd\",\n  \"neugierig\": \"neugier\",\n  \"neugierigen\": \"neugier\",\n  \"neugieriger\": \"neugier\",\n  \"neugotischem\": \"neugot\",\n  \"neuigkeit\": \"neuig\",\n  \"neulich\": \"neulich\",\n  \"neumonde\": \"neumond\",\n  \"neun\": \"neun\",\n  \"neunhundert\": \"neunhundert\",\n  \"neunte\": \"neunt\",\n  \"neunten\": \"neunt\",\n  \"neuntes\": \"neunt\",\n  \"neunundneunzig\": \"neunundneunz\",\n  \"neunundsechzig\": \"neunundsechz\",\n  \"neunundsiebzig\": \"neunundsiebz\",\n  \"neunundvierzigsten\": \"neunundvierz\",\n  \"neunzehn\": \"neunzehn\",\n  \"neunzig\": \"neunzig\",\n  \"neutestamentler\": \"neutestamentl\",\n  \"neutrale\": \"neutral\",\n  \"neuübersetzung\": \"neuubersetz\",\n  \"neuwahlen\": \"neuwahl\",\n  \"neuyork\": \"neuyork\",\n  \"new\": \"new\",\n  \"newroz\": \"newroz\",\n  \"nich\": \"nich\",\n  \"nichs\": \"nich\",\n  \"nicht\": \"nicht\",\n  \"nichtachtung\": \"nichtacht\",\n  \"nichtadligen\": \"nichtadl\",\n  \"nichtanfechtung\": \"nichtanfecht\",\n  \"nichtannahme\": \"nichtannahm\",\n  \"nichtanwendung\": \"nichtanwend\",\n  \"nichtaussprechen\": \"nichtaussprech\",\n  \"nichtbefreiung\": \"nichtbefrei\",\n  \"nichten\": \"nicht\",\n  \"nichtglauben\": \"nichtglaub\",\n  \"nichtglaubens\": \"nichtglaub\",\n  \"nichtgute\": \"nichtgut\",\n  \"nichtig\": \"nichtig\",\n  \"nichtige\": \"nichtig\",\n  \"nichtigen\": \"nichtig\",\n  \"nichtigkeiten\": \"nichtig\",\n  \"nichtinnewerden\": \"nichtinnewerd\",\n  \"nichtmaterielle\": \"nichtmateriell\",\n  \"nichtmediziner\": \"nichtmedizin\",\n  \"nichtmerken\": \"nichtmerk\",\n  \"nichtökonomische\": \"nichtokonom\",\n  \"nichtregistrierung\": \"nichtregistrier\",\n  \"nichts\": \"nicht\",\n  \"nichtsdestominder\": \"nichtsdestomind\",\n  \"nichtsdestoweniger\": \"nichtsdestowen\",\n  \"nichtsehender\": \"nichtseh\",\n  \"nichtsein\": \"nichtsein\",\n  \"nichtsnutzigen\": \"nichtsnutz\",\n  \"nichtsnutzigsten\": \"nichtsnutz\",\n  \"nichtssagend\": \"nichtssag\",\n  \"nichtssagende\": \"nichtssag\",\n  \"nichtssagenden\": \"nichtssag\",\n  \"nichtstun\": \"nichtstun\",\n  \"nichtswürdige\": \"nichtswurd\",\n  \"nichtswürdigkeit\": \"nichtswurd\",\n  \"nichttaten\": \"nichttat\",\n  \"nichtwähler\": \"nichtwahl\",\n  \"nichtwahren\": \"nichtwahr\",\n  \"nichtwahrheiten\": \"nichtwahr\",\n  \"nichtwahrnehmen\": \"nichtwahrnehm\",\n  \"nicken\": \"nick\",\n  \"nickend\": \"nickend\",\n  \"nickt\": \"nickt\",\n  \"nickte\": \"nickt\",\n  \"nickten\": \"nickt\",\n  \"nidit\": \"nidit\",\n  \"nie\": \"nie\",\n  \"nieder\": \"nied\",\n  \"niederbeugen\": \"niederbeug\",\n  \"niederbeugend\": \"niederbeug\",\n  \"niederblickend\": \"niederblick\",\n  \"niederdrücken\": \"niederdruck\",\n  \"niederdrückt\": \"niederdruckt\",\n  \"niedere\": \"nied\",\n  \"niederen\": \"nied\",\n  \"niederfiel\": \"niederfiel\",\n  \"niederfielen\": \"niederfiel\",\n  \"niederfloss\": \"niederfloss\",\n  \"niederfloß\": \"niederfloss\",\n  \"niedergang\": \"niedergang\",\n  \"niedergänge\": \"niedergang\",\n  \"niedergebeugt\": \"niedergebeugt\",\n  \"niedergebrannt\": \"niedergebrannt\",\n  \"niedergefahren\": \"niedergefahr\",\n  \"niedergefallen\": \"niedergefall\",\n  \"niedergehend\": \"niedergeh\",\n  \"niedergelassen\": \"niedergelass\",\n  \"niedergelegt\": \"niedergelegt\",\n  \"niedergeschlagen\": \"niedergeschlag\",\n  \"niedergeschlagenen\": \"niedergeschlag\",\n  \"niedergestiegen\": \"niedergestieg\",\n  \"niedergeworfen\": \"niedergeworf\",\n  \"niederging\": \"niederging\",\n  \"niedergleiten\": \"niedergleit\",\n  \"niedergschlagen\": \"niedergschlag\",\n  \"niederhängt\": \"niederhangt\",\n  \"niederklatschen\": \"niederklatsch\",\n  \"niederknien\": \"niederkni\",\n  \"niederkniend\": \"niederkni\",\n  \"niederknieten\": \"niederkniet\",\n  \"niederkommen\": \"niederkomm\",\n  \"niederlächelnd\": \"niederlachelnd\",\n  \"niederlage\": \"niederlag\",\n  \"niederlagen\": \"niederlag\",\n  \"niederlassen\": \"niederlass\",\n  \"niederliess\": \"niederliess\",\n  \"niederließ\": \"niederliess\",\n  \"niederregneten\": \"niederregnet\",\n  \"niederschlagen\": \"niederschlag\",\n  \"niederschlägt\": \"niederschlagt\",\n  \"niederschlug\": \"niederschlug\",\n  \"niederschmetternder\": \"niederschmetternd\",\n  \"niederschoss\": \"niederschoss\",\n  \"niedersetzte\": \"niedersetzt\",\n  \"niederstäubte\": \"niederstaubt\",\n  \"niederste\": \"niederst\",\n  \"niedersten\": \"niederst\",\n  \"niederstes\": \"niederst\",\n  \"niederstrich\": \"niederstrich\",\n  \"niederträchtige\": \"niedertracht\",\n  \"niederträchtigen\": \"niedertracht\",\n  \"niedertritt\": \"niedertritt\",\n  \"niedertropften\": \"niedertropft\",\n  \"niederwärts\": \"niederwart\",\n  \"niederwerfen\": \"niederwerf\",\n  \"niederzubeugen\": \"niederzubeug\",\n  \"niederzulassen\": \"niederzulass\",\n  \"niedlich\": \"niedlich\",\n  \"niedliche\": \"niedlich\",\n  \"niedlichen\": \"niedlich\",\n  \"niedlicher\": \"niedlich\",\n  \"niedrig\": \"niedrig\",\n  \"niedrige\": \"niedrig\",\n  \"niedrigen\": \"niedrig\",\n  \"niedriger\": \"niedrig\",\n  \"niedrigere\": \"niedrig\",\n  \"niedrigeren\": \"niedrig\",\n  \"niedrigerer\": \"niedrig\",\n  \"niedrigkeit\": \"niedrig\",\n  \"niedrigre\": \"niedrigr\",\n  \"niedrigste\": \"niedrig\",\n  \"niedrigsten\": \"niedrig\",\n  \"niemals\": \"niemal\",\n  \"niemand\": \"niemand\",\n  \"niemandem\": \"niemand\",\n  \"niemanden\": \"niemand\",\n  \"niemands\": \"niemand\",\n  \"niemandsland\": \"niemandsland\",\n  \"nieren\": \"nier\",\n  \"nierenfett\": \"nierenfett\",\n  \"niesen\": \"nies\",\n  \"nieste\": \"niest\",\n  \"nietzsche\": \"nietzsch\",\n  \"nievergelt\": \"nievergelt\",\n  \"nigen\": \"nig\",\n  \"niggli\": \"niggli\",\n  \"nihil\": \"nihil\",\n  \"nikodemus\": \"nikodemus\",\n  \"nikolaus\": \"nikolaus\",\n  \"nikosia\": \"nikosia\",\n  \"nils\": \"nil\",\n  \"nimm\": \"nimm\",\n  \"nimmer\": \"nimm\",\n  \"nimmermehr\": \"nimmermehr\",\n  \"nimmst\": \"nimm\",\n  \"nimmt\": \"nimmt\",\n  \"nimrien\": \"nimri\",\n  \"nimriens\": \"nimri\",\n  \"ninive\": \"niniv\",\n  \"ninives\": \"niniv\",\n  \"nippte\": \"nippt\",\n  \"nirgend\": \"nirgend\",\n  \"nirgends\": \"nirgend\",\n  \"nirgendwo\": \"nirgendwo\",\n  \"nische\": \"nisch\",\n  \"nisi\": \"nisi\",\n  \"nisten\": \"nist\",\n  \"nisteten\": \"nistet\",\n  \"nit\": \"nit\",\n  \"nitrit\": \"nitrit\",\n  \"nitritkapsel\": \"nitritkapsel\",\n  \"nitroglyzerin\": \"nitroglyzerin\",\n  \"nivellierung\": \"nivellier\",\n  \"nix\": \"nix\",\n  \"no\": \"no\",\n  \"noaaaaaa\": \"noaaaaaa\",\n  \"noach\": \"noach\",\n  \"noachs\": \"noach\",\n  \"nobel\": \"nobel\",\n  \"noblen\": \"nobl\",\n  \"nobler\": \"nobl\",\n  \"noch\": \"noch\",\n  \"nochmal\": \"nochmal\",\n  \"nochmals\": \"nochmal\",\n  \"nod\": \"nod\",\n  \"nominationskommission\": \"nominationskommission\",\n  \"nominative\": \"nominativ\",\n  \"nominativen\": \"nominativ\",\n  \"nommen\": \"nomm\",\n  \"non\": \"non\",\n  \"nonnenartiger\": \"nonnenart\",\n  \"nord\": \"nord\",\n  \"nordamerikanischen\": \"nordamerikan\",\n  \"norddeutschland\": \"norddeutschland\",\n  \"norden\": \"nord\",\n  \"nordengland\": \"nordengland\",\n  \"nordischen\": \"nordisch\",\n  \"nordlondon\": \"nordlondon\",\n  \"nordpol\": \"nordpol\",\n  \"nordwärts\": \"nordwart\",\n  \"nordwestschweiz\": \"nordwestschweiz\",\n  \"nordzypern\": \"nordzyp\",\n  \"normal\": \"normal\",\n  \"normale\": \"normal\",\n  \"normalen\": \"normal\",\n  \"normalerweise\": \"normalerweis\",\n  \"norwegische\": \"norweg\",\n  \"norwegischen\": \"norweg\",\n  \"nostalgie\": \"nostalgi\",\n  \"not\": \"not\",\n  \"notar\": \"notar\",\n  \"notaufnahme\": \"notaufnahm\",\n  \"notburga\": \"notburga\",\n  \"notdürftig\": \"notdurft\",\n  \"notdürftigsten\": \"notdurft\",\n  \"note\": \"not\",\n  \"nöten\": \"not\",\n  \"notenbank\": \"notenbank\",\n  \"notenblätter\": \"notenblatt\",\n  \"notenlinien\": \"notenlini\",\n  \"notfall\": \"notfall\",\n  \"notfällen\": \"notfall\",\n  \"notfalls\": \"notfall\",\n  \"notgezwungenen\": \"notgezw\",\n  \"notieren\": \"noti\",\n  \"notiert\": \"notiert\",\n  \"notierte\": \"notiert\",\n  \"nötig\": \"notig\",\n  \"nötige\": \"notig\",\n  \"nötigen\": \"notig\",\n  \"nötiger\": \"notig\",\n  \"nötigte\": \"notigt\",\n  \"nötigung\": \"notig\",\n  \"notizbuch\": \"notizbuch\",\n  \"notizbücher\": \"notizbuch\",\n  \"notizen\": \"notiz\",\n  \"notlüge\": \"notlug\",\n  \"notpfennige\": \"notpfenn\",\n  \"notrfälle\": \"notrfall\",\n  \"notstand\": \"notstand\",\n  \"notwehr\": \"notwehr\",\n  \"notwendig\": \"notwend\",\n  \"notwendige\": \"notwend\",\n  \"notwendigen\": \"notwend\",\n  \"notwendiger\": \"notwend\",\n  \"notwendigere\": \"notwend\",\n  \"notwendigerweise\": \"notwendigerweis\",\n  \"notwendiges\": \"notwend\",\n  \"notwendigkeit\": \"notwend\",\n  \"notwendigkeiten\": \"notwend\",\n  \"notwendigste\": \"notwend\",\n  \"noumen\": \"noum\",\n  \"noumenen\": \"noum\",\n  \"noumenon\": \"noumenon\",\n  \"novellen\": \"novell\",\n  \"november\": \"novemb\",\n  \"novembertage\": \"novembertag\",\n  \"novum\": \"novum\",\n  \"nr\": \"nr\",\n  \"nu\": \"nu\",\n  \"nuance\": \"nuanc\",\n  \"nüber\": \"nub\",\n  \"nüchtern\": \"nucht\",\n  \"nüchternen\": \"nuchtern\",\n  \"nüchternes\": \"nuchtern\",\n  \"nücken\": \"nuck\",\n  \"null\": \"null\",\n  \"nummer\": \"numm\",\n  \"nun\": \"nun\",\n  \"nunmehr\": \"nunmehr\",\n  \"nur\": \"nur\",\n  \"nürnberg\": \"nurnberg\",\n  \"nuss\": \"nuss\",\n  \"nussbaumholz\": \"nussbaumholz\",\n  \"nussbaumlade\": \"nussbaumlad\",\n  \"nussbaumschrank\": \"nussbaumschrank\",\n  \"nüsschen\": \"nussch\",\n  \"nüsse\": \"nuss\",\n  \"nüssen\": \"nuss\",\n  \"nutz\": \"nutz\",\n  \"nutzbare\": \"nutzbar\",\n  \"nutzbringende\": \"nutzbring\",\n  \"nütze\": \"nutz\",\n  \"nutzen\": \"nutz\",\n  \"nützen\": \"nutz\",\n  \"nutzens\": \"nutz\",\n  \"nutzenschaffen\": \"nutzenschaff\",\n  \"nutzenschaffens\": \"nutzenschaff\",\n  \"nutzleistungen\": \"nutzleist\",\n  \"nützlich\": \"nutzlich\",\n  \"nützliche\": \"nutzlich\",\n  \"nützlichen\": \"nutzlich\",\n  \"nützlicher\": \"nutzlich\",\n  \"nützlichere\": \"nutzlich\",\n  \"nützlicheres\": \"nutzlich\",\n  \"nützlichkeit\": \"nutzlich\",\n  \"nützlichste\": \"nutzlich\",\n  \"nutzlos\": \"nutzlos\",\n  \"nutzlose\": \"nutzlos\",\n  \"nutzloses\": \"nutzlos\",\n  \"nutzniessung\": \"nutzniess\",\n  \"nutzt\": \"nutzt\",\n  \"nützt\": \"nutzt\",\n  \"nutzwirkungen\": \"nutzwirk\",\n  \"nutzzwecke\": \"nutzzweck\",\n  \"nutzzwecken\": \"nutzzweck\",\n  \"nutzzwecks\": \"nutzzweck\",\n  \"nzz\": \"nzz\",\n  \"o\": \"o\",\n  \"oam\": \"oam\",\n  \"oan\": \"oan\",\n  \"ob\": \"ob\",\n  \"obacht\": \"obacht\",\n  \"obdach\": \"obdach\",\n  \"oben\": \"oben\",\n  \"obenauf\": \"obenauf\",\n  \"obendrein\": \"obendrein\",\n  \"obenein\": \"obenein\",\n  \"obenhin\": \"obenhin\",\n  \"obenhinaus\": \"obenhinaus\",\n  \"ober\": \"ober\",\n  \"oberbayrischer\": \"oberbayr\",\n  \"oberbehörde\": \"oberbehord\",\n  \"oberduffendorf\": \"oberduffendorf\",\n  \"obere\": \"ober\",\n  \"oberen\": \"ober\",\n  \"oberes\": \"ober\",\n  \"oberfläche\": \"oberflach\",\n  \"oberflächen\": \"oberflach\",\n  \"oberflächlich\": \"oberflach\",\n  \"oberflächlicher\": \"oberflach\",\n  \"oberflächlichkeit\": \"oberflach\",\n  \"oberförster\": \"oberforst\",\n  \"oberhalb\": \"oberhalb\",\n  \"oberhand\": \"oberhand\",\n  \"oberhaupt\": \"oberhaupt\",\n  \"oberherrschaft\": \"oberherrschaft\",\n  \"oberkirchenrat\": \"oberkirchenrat\",\n  \"oberlippe\": \"oberlipp\",\n  \"obern\": \"obern\",\n  \"oberpriester\": \"oberpri\",\n  \"obersatze\": \"obersatz\",\n  \"oberst\": \"oberst\",\n  \"oberste\": \"oberst\",\n  \"obersten\": \"oberst\",\n  \"oberstes\": \"oberst\",\n  \"oberstleutnants\": \"oberstleutnant\",\n  \"obgleich\": \"obgleich\",\n  \"obhut\": \"obhut\",\n  \"obige\": \"obig\",\n  \"obigem\": \"obig\",\n  \"obigen\": \"obig\",\n  \"obiger\": \"obig\",\n  \"objective\": \"objectiv\",\n  \"objekt\": \"objekt\",\n  \"objekte\": \"objekt\",\n  \"objekten\": \"objekt\",\n  \"objektiv\": \"objektiv\",\n  \"objektive\": \"objektiv\",\n  \"objektivem\": \"objektiv\",\n  \"objektiven\": \"objektiv\",\n  \"objektiver\": \"objektiv\",\n  \"objekts\": \"objekt\",\n  \"oblag\": \"oblag\",\n  \"obliegende\": \"oblieg\",\n  \"obliegenheit\": \"oblieg\",\n  \"obligationen\": \"obligation\",\n  \"obristen\": \"obrist\",\n  \"obschon\": \"obschon\",\n  \"observantione\": \"observantion\",\n  \"obsiegen\": \"obsieg\",\n  \"obst\": \"obst\",\n  \"obstbäumen\": \"obstbaum\",\n  \"obste\": \"obst\",\n  \"obsthändler\": \"obsthandl\",\n  \"obstinatio\": \"obstinatio\",\n  \"obwohl\": \"obwohl\",\n  \"obzwar\": \"obzwar\",\n  \"ocak\": \"ocak\",\n  \"ochak\": \"ochak\",\n  \"ochs\": \"och\",\n  \"ochse\": \"ochs\",\n  \"ochsen\": \"ochs\",\n  \"ochsenhorn\": \"ochsenhorn\",\n  \"ochsenkopfe\": \"ochsenkopf\",\n  \"odd\": \"odd\",\n  \"öde\": \"ode\",\n  \"odem\": \"odem\",\n  \"öden\": \"oden\",\n  \"oder\": \"oder\",\n  \"ödungen\": \"odung\",\n  \"of\": \"of\",\n  \"ofen\": \"ofen\",\n  \"öfen\": \"ofen\",\n  \"ofenruss\": \"ofenruss\",\n  \"ofenruß\": \"ofenruss\",\n  \"ofens\": \"ofen\",\n  \"off\": \"off\",\n  \"offen\": \"off\",\n  \"offenb\": \"offenb\",\n  \"offenbach\": \"offenbach\",\n  \"offenbar\": \"offenbar\",\n  \"offenbare\": \"offenbar\",\n  \"offenbaren\": \"offenbar\",\n  \"offenbarende\": \"offenbar\",\n  \"offenbarer\": \"offenbar\",\n  \"offenbarlich\": \"offenbar\",\n  \"offenbart\": \"offenbart\",\n  \"offenbarung\": \"offenbar\",\n  \"offenbarungen\": \"offenbar\",\n  \"offene\": \"off\",\n  \"offenekirche\": \"offenekirch\",\n  \"offenem\": \"off\",\n  \"offenen\": \"off\",\n  \"offener\": \"off\",\n  \"offenes\": \"off\",\n  \"offengebliebene\": \"offengeblieb\",\n  \"offenheit\": \"off\",\n  \"offenkundigen\": \"offenkund\",\n  \"offensichtlich\": \"offensicht\",\n  \"offensiv\": \"offensiv\",\n  \"offenstehe\": \"offensteh\",\n  \"offenstehend\": \"offensteh\",\n  \"offenstehende\": \"offensteh\",\n  \"offenstehenden\": \"offensteh\",\n  \"öffentlich\": \"offent\",\n  \"öffentliche\": \"offent\",\n  \"öffentlichen\": \"offent\",\n  \"öffentlicher\": \"offent\",\n  \"öffentliches\": \"offent\",\n  \"öffentlichkeit\": \"offent\",\n  \"offizielle\": \"offiziell\",\n  \"offiziellen\": \"offiziell\",\n  \"offizier\": \"offizi\",\n  \"offiziere\": \"offizi\",\n  \"offizieren\": \"offizi\",\n  \"offnen\": \"offn\",\n  \"öffnen\": \"offn\",\n  \"öffnet\": \"offnet\",\n  \"öffnete\": \"offnet\",\n  \"öffneten\": \"offnet\",\n  \"oft\": \"oft\",\n  \"öfter\": \"oft\",\n  \"öftere\": \"oft\",\n  \"öfteren\": \"oft\",\n  \"öftern\": \"oft\",\n  \"öfters\": \"oft\",\n  \"oftmals\": \"oftmal\",\n  \"oh\": \"oh\",\n  \"ohad\": \"ohad\",\n  \"ohn\": \"ohn\",\n  \"ohne\": \"ohn\",\n  \"ohnedem\": \"ohned\",\n  \"ohnedies\": \"ohnedi\",\n  \"ohnehin\": \"ohnehin\",\n  \"ohnmacht\": \"ohnmacht\",\n  \"ohnmächtig\": \"ohnmacht\",\n  \"oho\": \"oho\",\n  \"ohr\": \"ohr\",\n  \"ohre\": \"ohr\",\n  \"ohren\": \"ohr\",\n  \"ohrenbetäubener\": \"ohrenbetaub\",\n  \"ohres\": \"ohr\",\n  \"ohrfeige\": \"ohrfeig\",\n  \"ohrfeigen\": \"ohrfeig\",\n  \"ohrfeigte\": \"ohrfeigt\",\n  \"ohrlappen\": \"ohrlapp\",\n  \"oke\": \"oke\",\n  \"ökono\": \"okono\",\n  \"ökonomisch\": \"okonom\",\n  \"ökonomischen\": \"okonom\",\n  \"ökonomisches\": \"okonom\",\n  \"oktober\": \"oktob\",\n  \"ökumene\": \"okum\",\n  \"ökumenische\": \"okumen\",\n  \"ökumenischen\": \"okumen\",\n  \"öl\": \"ol\",\n  \"ölbaumes\": \"olbaum\",\n  \"oldenburg\": \"oldenburg\",\n  \"oldenburger\": \"oldenburg\",\n  \"oleander\": \"oleand\",\n  \"oleandergebüsch\": \"oleandergebusch\",\n  \"ölfarbe\": \"olfarb\",\n  \"olgemälde\": \"olgemald\",\n  \"ölig\": \"olig\",\n  \"öls\": \"ols\",\n  \"ombudsmann\": \"ombudsmann\",\n  \"omni\": \"omni\",\n  \"omnium\": \"omnium\",\n  \"on\": \"on\",\n  \"onan\": \"onan\",\n  \"onkel\": \"onkel\",\n  \"onkels\": \"onkel\",\n  \"ontologia\": \"ontologia\",\n  \"ontologischen\": \"ontolog\",\n  \"oooh\": \"oooh\",\n  \"oooooh\": \"oooooh\",\n  \"opera\": \"opera\",\n  \"operation\": \"operation\",\n  \"opes\": \"opes\",\n  \"opfer\": \"opf\",\n  \"opfere\": \"opf\",\n  \"opfergabe\": \"opfergab\",\n  \"opfergaben\": \"opfergab\",\n  \"opfern\": \"opf\",\n  \"opfers\": \"opf\",\n  \"opfert\": \"opfert\",\n  \"opferte\": \"opfert\",\n  \"ophir\": \"ophir\",\n  \"ophirs\": \"ophir\",\n  \"opposition\": \"opposition\",\n  \"optimismus\": \"optimismus\",\n  \"optischen\": \"optisch\",\n  \"orangeblüten\": \"orangeblut\",\n  \"orangefarbenen\": \"orangefarb\",\n  \"orangen\": \"orang\",\n  \"orangenbäume\": \"orangenbaum\",\n  \"orangenhaine\": \"orangenhain\",\n  \"orangensaft\": \"orangensaft\",\n  \"orbitz\": \"orbitz\",\n  \"ordentlich\": \"ordent\",\n  \"ordentliche\": \"ordent\",\n  \"ordentlichen\": \"ordent\",\n  \"ordentlicher\": \"ordent\",\n  \"ordentliches\": \"ordent\",\n  \"ordinäre\": \"ordinar\",\n  \"ordinärsten\": \"ordinarst\",\n  \"ordiniertdem\": \"ordiniertd\",\n  \"ordne\": \"ordn\",\n  \"ordnen\": \"ordn\",\n  \"ordnende\": \"ordnend\",\n  \"ordnet\": \"ordnet\",\n  \"ordnete\": \"ordnet\",\n  \"ordneten\": \"ordnet\",\n  \"ordnung\": \"ordnung\",\n  \"ordnungen\": \"ordnung\",\n  \"ordnungs\": \"ordnung\",\n  \"ordnungsgemäss\": \"ordnungsgemass\",\n  \"ordnungsgemässe\": \"ordnungsgemass\",\n  \"ordnungsgesetz\": \"ordnungsgesetz\",\n  \"ordnungsliebe\": \"ordnungslieb\",\n  \"ordnungssinn\": \"ordnungssinn\",\n  \"ordonnanzgewehre\": \"ordonnanzgewehr\",\n  \"organ\": \"organ\",\n  \"organe\": \"organ\",\n  \"organen\": \"organ\",\n  \"organisation\": \"organisation\",\n  \"organisationen\": \"organisation\",\n  \"organische\": \"organ\",\n  \"organischen\": \"organ\",\n  \"organisieren\": \"organisi\",\n  \"organisiert\": \"organisiert\",\n  \"organisierte\": \"organisiert\",\n  \"organismen\": \"organism\",\n  \"organismus\": \"organismus\",\n  \"orgel\": \"orgel\",\n  \"orgelkasten\": \"orgelkast\",\n  \"orgelspieler\": \"orgelspiel\",\n  \"orgelspielers\": \"orgelspiel\",\n  \"orientieren\": \"orienti\",\n  \"orientteppiche\": \"orientteppich\",\n  \"original\": \"original\",\n  \"originalität\": \"originalitat\",\n  \"originalkorrespondenz\": \"originalkorrespondenz\",\n  \"originarium\": \"originarium\",\n  \"originelles\": \"originell\",\n  \"orione\": \"orion\",\n  \"örk\": \"ork\",\n  \"orkan\": \"orkan\",\n  \"ort\": \"ort\",\n  \"orte\": \"ort\",\n  \"orten\": \"ort\",\n  \"örter\": \"ort\",\n  \"ortes\": \"ort\",\n  \"orthodoxe\": \"orthodox\",\n  \"orthodoxen\": \"orthodox\",\n  \"ortlichkeiten\": \"ortlich\",\n  \"ortsansäs\": \"ortsansas\",\n  \"ortschaft\": \"ortschaft\",\n  \"ortschaften\": \"ortschaft\",\n  \"ortsvorschlägen\": \"ortsvorschlag\",\n  \"oslo\": \"oslo\",\n  \"ost\": \"ost\",\n  \"ostberlin\": \"ostberlin\",\n  \"ostberliner\": \"ostberlin\",\n  \"ostdeutschen\": \"ostdeutsch\",\n  \"ostdeutschland\": \"ostdeutschland\",\n  \"osten\": \"ost\",\n  \"ostens\": \"ost\",\n  \"osteransprache\": \"osteransprach\",\n  \"osterei\": \"osterei\",\n  \"ostereier\": \"osterei\",\n  \"osterfest\": \"osterf\",\n  \"osterfestgebete\": \"osterfestgebet\",\n  \"osterhäschen\": \"osterhasch\",\n  \"ostern\": \"ost\",\n  \"osternacht\": \"osternacht\",\n  \"osternest\": \"ostern\",\n  \"osternestes\": \"ostern\",\n  \"österreich\": \"osterreich\",\n  \"österreichern\": \"osterreich\",\n  \"osteuropa\": \"osteuropa\",\n  \"ostindien\": \"ostindi\",\n  \"ostindischen\": \"ostind\",\n  \"ostländischen\": \"ostland\",\n  \"östlich\": \"ostlich\",\n  \"östliche\": \"ostlich\",\n  \"östlichen\": \"ostlich\",\n  \"ostrolenka\": \"ostrolenka\",\n  \"ostschweiz\": \"ostschweiz\",\n  \"ostschweizer\": \"ostschweiz\",\n  \"ostwind\": \"ostwind\",\n  \"ostwindes\": \"ostwind\",\n  \"ottenschlag\": \"ottenschlag\",\n  \"otter\": \"ott\",\n  \"ottern\": \"ott\",\n  \"otterngezüchte\": \"otterngezucht\",\n  \"otterngift\": \"otterngift\",\n  \"out\": \"out\",\n  \"overview\": \"overview\",\n  \"oxford\": \"oxford\",\n  \"ozean\": \"ozean\",\n  \"özgur\": \"ozgur\",\n  \"p\": \"p\",\n  \"paar\": \"paar\",\n  \"paare\": \"paar\",\n  \"paaren\": \"paar\",\n  \"paares\": \"paar\",\n  \"paarmal\": \"paarmal\",\n  \"paarung\": \"paarung\",\n  \"paarweise\": \"paarweis\",\n  \"pacht\": \"pacht\",\n  \"pachtzins\": \"pachtzin\",\n  \"pack\": \"pack\",\n  \"päckchen\": \"packch\",\n  \"packen\": \"pack\",\n  \"päcklein\": \"packlein\",\n  \"packt\": \"packt\",\n  \"packte\": \"packt\",\n  \"packten\": \"packt\",\n  \"pädagogik\": \"padagog\",\n  \"paddeln\": \"paddeln\",\n  \"paffte\": \"pafft\",\n  \"pagen\": \"pag\",\n  \"pair\": \"pair\",\n  \"paket\": \"paket\",\n  \"paketchen\": \"paketch\",\n  \"palast\": \"palast\",\n  \"paläste\": \"palast\",\n  \"palästen\": \"palast\",\n  \"palea\": \"palea\",\n  \"paleae\": \"palea\",\n  \"pallu\": \"pallu\",\n  \"palme\": \"palm\",\n  \"palmen\": \"palm\",\n  \"palmzweige\": \"palmzweig\",\n  \"palmzweigen\": \"palmzweig\",\n  \"panamahut\": \"panamahut\",\n  \"panier\": \"pani\",\n  \"pankraz\": \"pankraz\",\n  \"pankräzchens\": \"pankrazch\",\n  \"pankrazens\": \"pankraz\",\n  \"pankrazius\": \"pankrazius\",\n  \"pankräzlein\": \"pankrazlein\",\n  \"panorama\": \"panorama\",\n  \"panspfeife\": \"panspfeif\",\n  \"pantinengänger\": \"pantinengang\",\n  \"pantoffelfüssen\": \"pantoffelfuss\",\n  \"pantoffeln\": \"pantoffeln\",\n  \"panzer\": \"panz\",\n  \"panzerfahrzeugen\": \"panzerfahrzeug\",\n  \"panzerreiter\": \"panzerreit\",\n  \"papa\": \"papa\",\n  \"papagei\": \"papagei\",\n  \"papier\": \"papi\",\n  \"papiere\": \"papi\",\n  \"papieren\": \"papi\",\n  \"papierne\": \"papiern\",\n  \"papierstauden\": \"papierstaud\",\n  \"papparbeit\": \"papparbeit\",\n  \"pappel\": \"pappel\",\n  \"pappkartons\": \"pappkarton\",\n  \"pappkästchen\": \"pappkastch\",\n  \"papst\": \"papst\",\n  \"papstes\": \"papst\",\n  \"paradies\": \"paradi\",\n  \"paradiese\": \"paradies\",\n  \"paradiesgärtchen\": \"paradiesgartch\",\n  \"paradiesgärtels\": \"paradiesgartel\",\n  \"paradiesgärtlein\": \"paradiesgartlein\",\n  \"paradiesische\": \"paradies\",\n  \"paradiesvogel\": \"paradiesvogel\",\n  \"paraklet\": \"paraklet\",\n  \"parallele\": \"parallel\",\n  \"paralogismen\": \"paralogism\",\n  \"parapluie\": \"paraplui\",\n  \"parat\": \"parat\",\n  \"pärchen\": \"parch\",\n  \"pardel\": \"pardel\",\n  \"parfümiert\": \"parfumiert\",\n  \"parieren\": \"pari\",\n  \"paris\": \"paris\",\n  \"pariser\": \"paris\",\n  \"park\": \"park\",\n  \"parke\": \"park\",\n  \"parkett\": \"parkett\",\n  \"parks\": \"park\",\n  \"parsimoniae\": \"parsimonia\",\n  \"parte\": \"part\",\n  \"partei\": \"partei\",\n  \"parteien\": \"partei\",\n  \"parteigänger\": \"parteigang\",\n  \"parteigenossen\": \"parteigenoss\",\n  \"parteiischen\": \"parteiisch\",\n  \"parteileute\": \"parteileut\",\n  \"partie\": \"parti\",\n  \"partien\": \"parti\",\n  \"partners\": \"partn\",\n  \"parvulus\": \"parvulus\",\n  \"pascha\": \"pascha\",\n  \"pascher\": \"pasch\",\n  \"paspeliert\": \"paspeliert\",\n  \"pass\": \"pass\",\n  \"passable\": \"passabl\",\n  \"passah\": \"passah\",\n  \"passahfest\": \"passahf\",\n  \"passahtieres\": \"passahti\",\n  \"passanten\": \"passant\",\n  \"passargument\": \"passargument\",\n  \"pässe\": \"pass\",\n  \"passen\": \"pass\",\n  \"passend\": \"passend\",\n  \"passende\": \"passend\",\n  \"passenden\": \"passend\",\n  \"passender\": \"passend\",\n  \"passendes\": \"passend\",\n  \"passeten\": \"passet\",\n  \"passieren\": \"passi\",\n  \"passiert\": \"passiert\",\n  \"passierte\": \"passiert\",\n  \"passiertem\": \"passiert\",\n  \"passierten\": \"passiert\",\n  \"passivem\": \"passiv\",\n  \"passt\": \"passt\",\n  \"paßt\": \"passt\",\n  \"passte\": \"passt\",\n  \"passten\": \"passt\",\n  \"pastete\": \"pastet\",\n  \"pasteten\": \"pastet\",\n  \"patent\": \"patent\",\n  \"patentierung\": \"patentier\",\n  \"pater\": \"pat\",\n  \"paternoster\": \"paternost\",\n  \"paternosteraufzug\": \"paternosteraufzug\",\n  \"paternosters\": \"paternost\",\n  \"paters\": \"pat\",\n  \"pathologisch\": \"patholog\",\n  \"pathologischen\": \"patholog\",\n  \"patieneen\": \"patiene\",\n  \"patienten\": \"patient\",\n  \"patriarch\": \"patriarch\",\n  \"patriarchen\": \"patriarch\",\n  \"patron\": \"patron\",\n  \"patronen\": \"patron\",\n  \"patronhilsen\": \"patronhils\",\n  \"patrontasche\": \"patrontasch\",\n  \"patrouille\": \"patrouill\",\n  \"patrouillen\": \"patrouill\",\n  \"patsch\": \"patsch\",\n  \"patsche\": \"patsch\",\n  \"patschelte\": \"patschelt\",\n  \"patschnass\": \"patschnass\",\n  \"pauke\": \"pauk\",\n  \"pauken\": \"pauk\",\n  \"paukenbegleitung\": \"paukenbegleit\",\n  \"paukenden\": \"paukend\",\n  \"paukenklöppel\": \"paukenkloppel\",\n  \"paukenkonzert\": \"paukenkonzert\",\n  \"paukenstock\": \"paukenstock\",\n  \"paul\": \"paul\",\n  \"pausbäckige\": \"pausback\",\n  \"pause\": \"paus\",\n  \"pausen\": \"paus\",\n  \"pavia\": \"pavia\",\n  \"pavillon\": \"pavillon\",\n  \"pavillons\": \"pavillon\",\n  \"pech\": \"pech\",\n  \"pechdunkeln\": \"pechdunkeln\",\n  \"peche\": \"pech\",\n  \"pechfinster\": \"pechfin\",\n  \"pechnarben\": \"pechnarb\",\n  \"pechs\": \"pech\",\n  \"pechschwarz\": \"pechschwarz\",\n  \"pechschwarzen\": \"pechschwarz\",\n  \"pechsiedern\": \"pechsied\",\n  \"pechstreif\": \"pechstreif\",\n  \"pechverbandes\": \"pechverband\",\n  \"pecoris\": \"pecoris\",\n  \"pedanten\": \"pedant\",\n  \"pedanterie\": \"pedanteri\",\n  \"pegasus\": \"pegasus\",\n  \"pein\": \"pein\",\n  \"peinigen\": \"peinig\",\n  \"peiniger\": \"peinig\",\n  \"peinigt\": \"peinigt\",\n  \"peinigte\": \"peinigt\",\n  \"peinlich\": \"peinlich\",\n  \"peinliche\": \"peinlich\",\n  \"peinlicher\": \"peinlich\",\n  \"peinlichste\": \"peinlich\",\n  \"peinlichsten\": \"peinlich\",\n  \"peinvoll\": \"peinvoll\",\n  \"peirastik\": \"peirast\",\n  \"peitsche\": \"peitsch\",\n  \"peitschen\": \"peitsch\",\n  \"peitschenknall\": \"peitschenknall\",\n  \"peleg\": \"peleg\",\n  \"pelz\": \"pelz\",\n  \"pelzen\": \"pelz\",\n  \"pelzes\": \"pelz\",\n  \"pelzmütze\": \"pelzmutz\",\n  \"pelzverbrämten\": \"pelzverbramt\",\n  \"pelzwerk\": \"pelzwerk\",\n  \"pension\": \"pension\",\n  \"pentarchie\": \"pentarchi\",\n  \"pepiniere\": \"pepini\",\n  \"per\": \"per\",\n  \"perceptio\": \"perceptio\",\n  \"perceptiones\": \"perception\",\n  \"perceptionis\": \"perceptionis\",\n  \"perceptivum\": \"perceptivum\",\n  \"percipere\": \"percip\",\n  \"perez\": \"perez\",\n  \"perfectissimum\": \"perfectissimum\",\n  \"peri\": \"peri\",\n  \"periode\": \"period\",\n  \"perioden\": \"period\",\n  \"periodischen\": \"period\",\n  \"perlen\": \"perl\",\n  \"perlenband\": \"perlenband\",\n  \"perlmutter\": \"perlmutt\",\n  \"permanenter\": \"permanent\",\n  \"perpetuum\": \"perpetuum\",\n  \"persifliert\": \"persifliert\",\n  \"person\": \"person\",\n  \"personen\": \"person\",\n  \"persönlich\": \"person\",\n  \"persönliche\": \"person\",\n  \"persönlichem\": \"person\",\n  \"persönlichen\": \"person\",\n  \"persönlichkeit\": \"person\",\n  \"persönlichkeiten\": \"person\",\n  \"perspektive\": \"perspektiv\",\n  \"perspicacia\": \"perspicacia\",\n  \"persuasiones\": \"persuasion\",\n  \"pest\": \"pest\",\n  \"pestischer\": \"pestisch\",\n  \"petent\": \"petent\",\n  \"peter\": \"pet\",\n  \"peterchen\": \"peterch\",\n  \"peterchens\": \"peterch\",\n  \"petersburg\": \"petersburg\",\n  \"petitpierre\": \"petitpierr\",\n  \"petrarum\": \"petrarum\",\n  \"petrus\": \"petrus\",\n  \"petschiert\": \"petschiert\",\n  \"petz\": \"petz\",\n  \"petzbären\": \"petzbar\",\n  \"pfad\": \"pfad\",\n  \"pfade\": \"pfad\",\n  \"pfaden\": \"pfad\",\n  \"pfades\": \"pfad\",\n  \"pfaffen\": \"pfaff\",\n  \"pfäfflein\": \"pfafflein\",\n  \"pfahl\": \"pfahl\",\n  \"pfahles\": \"pfahl\",\n  \"pfännchen\": \"pfannch\",\n  \"pfanne\": \"pfann\",\n  \"pfannen\": \"pfann\",\n  \"pfarr\": \"pfarr\",\n  \"pfarrämter\": \"pfarramt\",\n  \"pfarreien\": \"pfarrei\",\n  \"pfarrer\": \"pfarr\",\n  \"pfarrerdie\": \"pfarrerdi\",\n  \"pfarrerstochter\": \"pfarrerstocht\",\n  \"pfarrerweiterbildung\": \"pfarrerweiterbild\",\n  \"pfarrpersonen\": \"pfarrperson\",\n  \"pfarrverein\": \"pfarrverein\",\n  \"pfauenfedern\": \"pfauenfed\",\n  \"pfeffer\": \"pfeff\",\n  \"pfefferkuchen\": \"pfefferkuch\",\n  \"pfefferkuchenbäume\": \"pfefferkuchenbaum\",\n  \"pfefferkuchenmännchen\": \"pfefferkuchenmannch\",\n  \"pfefferkuchenpäckchen\": \"pfefferkuchenpackch\",\n  \"pfefferkuchensprüche\": \"pfefferkuchenspruch\",\n  \"pfefferkuchenzweigen\": \"pfefferkuchenzweig\",\n  \"pfefferminzplätzchen\": \"pfefferminzplatzch\",\n  \"pfefferminztee\": \"pfefferminzte\",\n  \"pfeifchen\": \"pfeifch\",\n  \"pfeife\": \"pfeif\",\n  \"pfeifen\": \"pfeif\",\n  \"pfeifend\": \"pfeifend\",\n  \"pfeifenden\": \"pfeifend\",\n  \"pfeifenköpfen\": \"pfeifenkopf\",\n  \"pfeifmelodie\": \"pfeifmelodi\",\n  \"pfeil\": \"pfeil\",\n  \"pfeile\": \"pfeil\",\n  \"pfennig\": \"pfennig\",\n  \"pfennige\": \"pfennig\",\n  \"pferchen\": \"pferch\",\n  \"pferd\": \"pferd\",\n  \"pferdchen\": \"pferdch\",\n  \"pferde\": \"pferd\",\n  \"pferdeäpfel\": \"pferdeapfel\",\n  \"pferdehufen\": \"pferdehuf\",\n  \"pferdekräfte\": \"pferdekraft\",\n  \"pferden\": \"pferd\",\n  \"pferdes\": \"pferd\",\n  \"pfiff\": \"pfiff\",\n  \"pfiffe\": \"pfiff\",\n  \"pfiffige\": \"pfiffig\",\n  \"pfiffigem\": \"pfiffig\",\n  \"pfingstsonntag\": \"pfingstsonntag\",\n  \"pflänzchen\": \"pflanzch\",\n  \"pflanze\": \"pflanz\",\n  \"pflanzen\": \"pflanz\",\n  \"pflanzensamen\": \"pflanzensam\",\n  \"pflanzerzigarre\": \"pflanzerzigarr\",\n  \"pflanzt\": \"pflanzt\",\n  \"pflanzte\": \"pflanzt\",\n  \"pflanzung\": \"pflanzung\",\n  \"pflanzungen\": \"pflanzung\",\n  \"pflaster\": \"pflast\",\n  \"pflaume\": \"pflaum\",\n  \"pflaumen\": \"pflaum\",\n  \"pflaumenaug\": \"pflaumenaug\",\n  \"pflaumenkern\": \"pflaumenk\",\n  \"pflege\": \"pfleg\",\n  \"pflegen\": \"pfleg\",\n  \"pflegst\": \"pfleg\",\n  \"pflegt\": \"pflegt\",\n  \"pflegte\": \"pflegt\",\n  \"pflegten\": \"pflegt\",\n  \"pflicht\": \"pflicht\",\n  \"pflichtbewußtsein\": \"pflichtbewusstsein\",\n  \"pflichten\": \"pflicht\",\n  \"pflichterfüllung\": \"pflichterfull\",\n  \"pflichtgemäss\": \"pflichtgemass\",\n  \"pflichtgemäß\": \"pflichtgemass\",\n  \"pflichtgemässe\": \"pflichtgemass\",\n  \"pflichtmässig\": \"pflichtmass\",\n  \"pflichtmässigen\": \"pflichtmass\",\n  \"pflichtveranstaltung\": \"pflichtveranstalt\",\n  \"pflichtvergessene\": \"pflichtvergess\",\n  \"pflug\": \"pflug\",\n  \"pfluge\": \"pflug\",\n  \"pflüge\": \"pflug\",\n  \"pflügen\": \"pflug\",\n  \"pflüger\": \"pflug\",\n  \"pflügte\": \"pflugt\",\n  \"pflügten\": \"pflugt\",\n  \"pflugviehs\": \"pflugvieh\",\n  \"pflugzüge\": \"pflugzug\",\n  \"pforte\": \"pfort\",\n  \"pforten\": \"pfort\",\n  \"pförtlein\": \"pfortlein\",\n  \"pfötchen\": \"pfotch\",\n  \"pfote\": \"pfot\",\n  \"pfoten\": \"pfot\",\n  \"pfründe\": \"pfrund\",\n  \"pfüet\": \"pfuet\",\n  \"pfuhl\": \"pfuhl\",\n  \"pfühl\": \"pfuhl\",\n  \"pfui\": \"pfui\",\n  \"pfülmen\": \"pfulm\",\n  \"pfund\": \"pfund\",\n  \"pfuschern\": \"pfusch\",\n  \"pfuschte\": \"pfuscht\",\n  \"pfütze\": \"pfutz\",\n  \"pfützen\": \"pfutz\",\n  \"pfütznassen\": \"pfutznass\",\n  \"phäakenaufschwung\": \"phaakenaufschw\",\n  \"phaethon\": \"phaethon\",\n  \"phänomene\": \"phanom\",\n  \"phänomenen\": \"phanom\",\n  \"phantasie\": \"phantasi\",\n  \"phantasielos\": \"phantasielos\",\n  \"phantasien\": \"phantasi\",\n  \"phantasierte\": \"phantasiert\",\n  \"phantasterei\": \"phantasterei\",\n  \"phantastisch\": \"phantast\",\n  \"pharao\": \"pharao\",\n  \"pharaos\": \"pharaos\",\n  \"pharisäer\": \"pharisa\",\n  \"pharisäern\": \"pharisa\",\n  \"pheresiter\": \"pheresit\",\n  \"pheresiters\": \"pheresit\",\n  \"philanthropie\": \"philanthropi\",\n  \"philautia\": \"philautia\",\n  \"philipp\": \"philipp\",\n  \"philippus\": \"philippus\",\n  \"philistäa\": \"philistaa\",\n  \"philister\": \"philist\",\n  \"philisterhafter\": \"philisterhaft\",\n  \"philisterhaftigkeit\": \"philisterhaft\",\n  \"philistern\": \"philist\",\n  \"philisterseelen\": \"philisterseel\",\n  \"philoso\": \"philoso\",\n  \"philosoph\": \"philosoph\",\n  \"philosophen\": \"philosoph\",\n  \"philosophie\": \"philosophi\",\n  \"philosophiert\": \"philosophiert\",\n  \"philosophin\": \"philosophin\",\n  \"philosophisch\": \"philosoph\",\n  \"philosophischem\": \"philosoph\",\n  \"philosophischen\": \"philosoph\",\n  \"philosophischer\": \"philosoph\",\n  \"philosophisches\": \"philosoph\",\n  \"phische\": \"phisch\",\n  \"photographien\": \"photographi\",\n  \"phrasen\": \"phras\",\n  \"phrath\": \"phrath\",\n  \"physik\": \"physik\",\n  \"physische\": \"physisch\",\n  \"physischen\": \"physisch\",\n  \"pianisten\": \"pianist\",\n  \"pick\": \"pick\",\n  \"piepen\": \"piep\",\n  \"pietätlosigkeit\": \"pietatlos\",\n  \"pijanon\": \"pijanon\",\n  \"pikierten\": \"pikiert\",\n  \"pilatus\": \"pilatus\",\n  \"pilgerfahrten\": \"pilgerfahrt\",\n  \"pilgerstab\": \"pilgerstab\",\n  \"pilotprojekt\": \"pilotprojekt\",\n  \"pilze\": \"pilz\",\n  \"pinehas\": \"pinehas\",\n  \"pineiss\": \"pineiss\",\n  \"pineissens\": \"pineiss\",\n  \"pinsel\": \"pinsel\",\n  \"pipsernden\": \"pipsernd\",\n  \"pirsch\": \"pirsch\",\n  \"pirsche\": \"pirsch\",\n  \"pirschgang\": \"pirschgang\",\n  \"pirschwetter\": \"pirschwett\",\n  \"pischon\": \"pischon\",\n  \"pispernd\": \"pispernd\",\n  \"pistole\": \"pistol\",\n  \"pistolen\": \"pistol\",\n  \"pistolengeschütz\": \"pistolengeschutz\",\n  \"pithom\": \"pithom\",\n  \"pitschnassen\": \"pitschnass\",\n  \"plafonds\": \"plafond\",\n  \"plage\": \"plag\",\n  \"plagen\": \"plag\",\n  \"plagten\": \"plagt\",\n  \"plakat\": \"plakat\",\n  \"plakate\": \"plakat\",\n  \"plakaten\": \"plakat\",\n  \"plan\": \"plan\",\n  \"plane\": \"plan\",\n  \"pläne\": \"plan\",\n  \"planet\": \"planet\",\n  \"planeten\": \"planet\",\n  \"plangemäss\": \"plangemass\",\n  \"plankenzaun\": \"plankenzaun\",\n  \"plant\": \"plant\",\n  \"plappermaul\": \"plappermaul\",\n  \"platane\": \"platan\",\n  \"platanen\": \"platan\",\n  \"plato\": \"plato\",\n  \"platonis\": \"platonis\",\n  \"platos\": \"platos\",\n  \"platschte\": \"platscht\",\n  \"platte\": \"platt\",\n  \"plattenproduzent\": \"plattenproduzent\",\n  \"plättete\": \"plattet\",\n  \"plattform\": \"plattform\",\n  \"plattner\": \"plattn\",\n  \"platz\": \"platz\",\n  \"plätzchen\": \"platzch\",\n  \"plätzchens\": \"platzch\",\n  \"platze\": \"platz\",\n  \"plätze\": \"platz\",\n  \"platzen\": \"platz\",\n  \"plätzen\": \"platz\",\n  \"platzes\": \"platz\",\n  \"platzl\": \"platzl\",\n  \"platzregen\": \"platzreg\",\n  \"platzt\": \"platzt\",\n  \"platzten\": \"platzt\",\n  \"plauderei\": \"plauderei\",\n  \"plaudern\": \"plaud\",\n  \"plaudernd\": \"plaudernd\",\n  \"plaudert\": \"plaudert\",\n  \"plauderte\": \"plaudert\",\n  \"plauderten\": \"plaudert\",\n  \"plausibel\": \"plausibel\",\n  \"plausibilität\": \"plausibilitat\",\n  \"playactors\": \"playactor\",\n  \"plebejisch\": \"plebej\",\n  \"plötzlich\": \"plotzlich\",\n  \"plötzliche\": \"plotzlich\",\n  \"plötzlichen\": \"plotzlich\",\n  \"plötzlicher\": \"plotzlich\",\n  \"plötzliches\": \"plotzlich\",\n  \"plötzlichkeit\": \"plotzlich\",\n  \"plump\": \"plump\",\n  \"plumpe\": \"plump\",\n  \"plumpen\": \"plump\",\n  \"plumpheit\": \"plumpheit\",\n  \"plumsdibums\": \"plumsdibum\",\n  \"plunder\": \"plund\",\n  \"plündergut\": \"plundergut\",\n  \"plündern\": \"plund\",\n  \"plus\": \"plus\",\n  \"plusterröcken\": \"plusterrock\",\n  \"plusterte\": \"plustert\",\n  \"pochen\": \"poch\",\n  \"pochenden\": \"pochend\",\n  \"pochte\": \"pocht\",\n  \"podium\": \"podium\",\n  \"podiums\": \"podium\",\n  \"podiumsgespräch\": \"podiumsgesprach\",\n  \"poesie\": \"poesi\",\n  \"pokalsieger\": \"pokalsieg\",\n  \"polacke\": \"polack\",\n  \"polackei\": \"polackei\",\n  \"polacken\": \"polack\",\n  \"polarkreises\": \"polarkreis\",\n  \"polen\": \"pol\",\n  \"polenmütze\": \"polenmutz\",\n  \"poliert\": \"poliert\",\n  \"polierten\": \"poliert\",\n  \"politik\": \"polit\",\n  \"politiker\": \"polit\",\n  \"politisch\": \"polit\",\n  \"politische\": \"polit\",\n  \"politischen\": \"polit\",\n  \"politischer\": \"polit\",\n  \"politisieren\": \"politisi\",\n  \"polizei\": \"polizei\",\n  \"polizeiakten\": \"polizeiakt\",\n  \"polizeianstalt\": \"polizeianstalt\",\n  \"polizeiliches\": \"polizei\",\n  \"polizeimann\": \"polizeimann\",\n  \"polizeistation\": \"polizeistation\",\n  \"polizeiwagen\": \"polizeiwag\",\n  \"polizist\": \"polizist\",\n  \"polizisten\": \"polizist\",\n  \"pollux\": \"pollux\",\n  \"polnisch\": \"polnisch\",\n  \"polnische\": \"polnisch\",\n  \"polnischen\": \"polnisch\",\n  \"polnischer\": \"polnisch\",\n  \"polnisches\": \"polnisch\",\n  \"polster\": \"polst\",\n  \"polstersessel\": \"polstersessel\",\n  \"polsterstuhle\": \"polsterstuhl\",\n  \"polsterstühle\": \"polsterstuhl\",\n  \"polterabend\": \"polterab\",\n  \"poltern\": \"polt\",\n  \"polterte\": \"poltert\",\n  \"pomade\": \"pomad\",\n  \"pomphafte\": \"pomphaft\",\n  \"pönitenz\": \"ponitenz\",\n  \"pontius\": \"pontius\",\n  \"pop\": \"pop\",\n  \"popanze\": \"popanz\",\n  \"populäres\": \"popular\",\n  \"popularitätstief\": \"popularitatstief\",\n  \"populismus\": \"populismus\",\n  \"portier\": \"porti\",\n  \"portiers\": \"porti\",\n  \"portierte\": \"portiert\",\n  \"portierten\": \"portiert\",\n  \"portion\": \"portion\",\n  \"portionen\": \"portion\",\n  \"portionenweise\": \"portionenweis\",\n  \"porto\": \"porto\",\n  \"portokosten\": \"portokost\",\n  \"porträt\": \"portrat\",\n  \"porträts\": \"portrat\",\n  \"porzellan\": \"porzellan\",\n  \"porzellanköpfchen\": \"porzellankopfch\",\n  \"porzellansplitter\": \"porzellansplitt\",\n  \"porzia\": \"porzia\",\n  \"posaunen\": \"posaun\",\n  \"posaunenbläser\": \"posaunenblas\",\n  \"posaunenschall\": \"posaunenschall\",\n  \"posaunensturmstimme\": \"posaunensturmstimm\",\n  \"posaunt\": \"posaunt\",\n  \"posaunte\": \"posaunt\",\n  \"position\": \"position\",\n  \"positionen\": \"position\",\n  \"positiv\": \"positiv\",\n  \"positive\": \"positiv\",\n  \"positiven\": \"positiv\",\n  \"positiver\": \"positiv\",\n  \"positives\": \"positiv\",\n  \"positur\": \"positur\",\n  \"possen\": \"poss\",\n  \"possierliche\": \"possi\",\n  \"possierlichen\": \"possi\",\n  \"possierlichkeit\": \"possier\",\n  \"post\": \"post\",\n  \"postabschluss\": \"postabschluss\",\n  \"postabschluß\": \"postabschluss\",\n  \"posten\": \"post\",\n  \"postfach\": \"postfach\",\n  \"posthorntönen\": \"posthornton\",\n  \"postieren\": \"posti\",\n  \"postulat\": \"postulat\",\n  \"postulate\": \"postulat\",\n  \"postulaten\": \"postulat\",\n  \"postulats\": \"postulat\",\n  \"postulieren\": \"postuli\",\n  \"postuliert\": \"postuliert\",\n  \"postwendend\": \"postwend\",\n  \"potsdam\": \"potsdam\",\n  \"potz\": \"potz\",\n  \"poularde\": \"poulard\",\n  \"prä\": \"pra\",\n  \"pracht\": \"pracht\",\n  \"prächtig\": \"prachtig\",\n  \"prächtige\": \"prachtig\",\n  \"prächtigen\": \"prachtig\",\n  \"prächtiger\": \"prachtig\",\n  \"prächtiges\": \"prachtig\",\n  \"prächtigste\": \"prachtig\",\n  \"prachtkleid\": \"prachtkleid\",\n  \"prachtvoll\": \"prachtvoll\",\n  \"prachtvolle\": \"prachtvoll\",\n  \"prädikat\": \"pradikat\",\n  \"prädikate\": \"pradikat\",\n  \"praedestinatione\": \"praedestination\",\n  \"praedestinationes\": \"praedestination\",\n  \"prag\": \"prag\",\n  \"praga\": \"praga\",\n  \"pragmateia\": \"pragmateia\",\n  \"prägten\": \"pragt\",\n  \"prahlen\": \"prahl\",\n  \"prahler\": \"prahl\",\n  \"prahlerisch\": \"prahler\",\n  \"prahlerischen\": \"prahler\",\n  \"prahlerischer\": \"prahler\",\n  \"präjudizien\": \"prajudizi\",\n  \"praktikum\": \"praktikum\",\n  \"praktisch\": \"praktisch\",\n  \"praktische\": \"praktisch\",\n  \"praktischem\": \"praktisch\",\n  \"praktischen\": \"praktisch\",\n  \"praktischer\": \"praktisch\",\n  \"praktisches\": \"praktisch\",\n  \"praktizierende\": \"praktizier\",\n  \"prälaten\": \"pralat\",\n  \"präludium\": \"praludium\",\n  \"prangt\": \"prangt\",\n  \"prangte\": \"prangt\",\n  \"präparaten\": \"praparat\",\n  \"präpariere\": \"prapari\",\n  \"prarrerschaft\": \"prarrerschaft\",\n  \"prarrkapitel\": \"prarrkapitel\",\n  \"präsent\": \"prasent\",\n  \"präsentiert\": \"prasentiert\",\n  \"präsentierteller\": \"prasentiertell\",\n  \"präses\": \"pras\",\n  \"präsident\": \"prasident\",\n  \"präsidenten\": \"prasident\",\n  \"präsidentin\": \"prasidentin\",\n  \"präsidierte\": \"prasidiert\",\n  \"prasselten\": \"prasselt\",\n  \"präventiven\": \"praventiv\",\n  \"predigen\": \"predig\",\n  \"prediger\": \"predig\",\n  \"prediget\": \"prediget\",\n  \"predigt\": \"predigt\",\n  \"predigten\": \"predigt\",\n  \"preis\": \"preis\",\n  \"preisausschreiben\": \"preisausschreib\",\n  \"preisen\": \"preis\",\n  \"preises\": \"preis\",\n  \"preiset\": \"preiset\",\n  \"preisgegeben\": \"preisgegeb\",\n  \"preisgibt\": \"preisgibt\",\n  \"preisträger\": \"preistrag\",\n  \"preiszugeben\": \"preiszugeb\",\n  \"prenzlauer\": \"prenzlau\",\n  \"presse\": \"press\",\n  \"pressedienst\": \"pressedien\",\n  \"pressedienstes\": \"pressedien\",\n  \"pressemiteilung\": \"pressemiteil\",\n  \"pressemitteilung\": \"pressemitteil\",\n  \"pressemittteilung\": \"pressemittteil\",\n  \"pressieren\": \"pressi\",\n  \"presste\": \"presst\",\n  \"prester\": \"prest\",\n  \"prickelte\": \"prickelt\",\n  \"pries\": \"pries\",\n  \"priester\": \"priest\",\n  \"priestern\": \"priest\",\n  \"priesters\": \"priest\",\n  \"priesterstöchter\": \"priesterstocht\",\n  \"priestertalar\": \"priestertalar\",\n  \"priestertum\": \"priestertum\",\n  \"priestertume\": \"priestertum\",\n  \"priestertums\": \"priestertum\",\n  \"primat\": \"primat\",\n  \"primate\": \"primat\",\n  \"principia\": \"principia\",\n  \"principiis\": \"principiis\",\n  \"prinz\": \"prinz\",\n  \"prinzen\": \"prinz\",\n  \"prinzess\": \"prinzess\",\n  \"prinzip\": \"prinzip\",\n  \"prinzipien\": \"prinzipi\",\n  \"prinzips\": \"prinzips\",\n  \"priori\": \"priori\",\n  \"priorität\": \"prioritat\",\n  \"prioritäten\": \"prioritat\",\n  \"prisen\": \"pris\",\n  \"prius\": \"prius\",\n  \"private\": \"privat\",\n  \"privaten\": \"privat\",\n  \"privates\": \"privat\",\n  \"privatgeschäfte\": \"privatgeschaft\",\n  \"privatleidenschaft\": \"privatleidenschaft\",\n  \"privatneigungen\": \"privatneig\",\n  \"privatpersonen\": \"privatperson\",\n  \"privilegien\": \"privilegi\",\n  \"pro\": \"pro\",\n  \"probabilia\": \"probabilia\",\n  \"probe\": \"prob\",\n  \"probemetall\": \"probemetall\",\n  \"probesprechen\": \"probesprech\",\n  \"probieren\": \"probi\",\n  \"probiert\": \"probiert\",\n  \"probierte\": \"probiert\",\n  \"probierten\": \"probiert\",\n  \"problem\": \"probl\",\n  \"problematisch\": \"problemat\",\n  \"problematischen\": \"problemat\",\n  \"problematischer\": \"problemat\",\n  \"probleme\": \"problem\",\n  \"problemen\": \"problem\",\n  \"problems\": \"problem\",\n  \"problemwelle\": \"problemwell\",\n  \"produkt\": \"produkt\",\n  \"produkte\": \"produkt\",\n  \"produktion\": \"produktion\",\n  \"produktionsassistentin\": \"produktionsassistentin\",\n  \"produktionsverbot\": \"produktionsverbot\",\n  \"produzent\": \"produzent\",\n  \"produzentin\": \"produzentin\",\n  \"produzieren\": \"produzi\",\n  \"profession\": \"profession\",\n  \"professionelle\": \"professionell\",\n  \"professor\": \"professor\",\n  \"profi\": \"profi\",\n  \"profil\": \"profil\",\n  \"profitieren\": \"profiti\",\n  \"programm\": \"programm\",\n  \"programmheft\": \"programmheft\",\n  \"progressiv\": \"progressiv\",\n  \"progressus\": \"progressus\",\n  \"prohibet\": \"prohibet\",\n  \"project\": \"project\",\n  \"projekt\": \"projekt\",\n  \"projektarbeit\": \"projektarbeit\",\n  \"projekte\": \"projekt\",\n  \"projektes\": \"projekt\",\n  \"prokurist\": \"prokurist\",\n  \"prokuristen\": \"prokurist\",\n  \"promenaden\": \"promenad\",\n  \"promovet\": \"promovet\",\n  \"promoviert\": \"promoviert\",\n  \"prophet\": \"prophet\",\n  \"propheten\": \"prophet\",\n  \"prophetenbildern\": \"prophetenbild\",\n  \"prophetische\": \"prophet\",\n  \"prophetischen\": \"prophet\",\n  \"prophezeiungen\": \"prophezei\",\n  \"propinquitates\": \"propinquitat\",\n  \"proportion\": \"proportion\",\n  \"proportionierlich\": \"proportioni\",\n  \"proportionierte\": \"proportioniert\",\n  \"proportionierten\": \"proportioniert\",\n  \"proprium\": \"proprium\",\n  \"prosdialegomenwn\": \"prosdialegomenwn\",\n  \"prospekte\": \"prospekt\",\n  \"protestant\": \"protestant\",\n  \"protestantismus\": \"protestantismus\",\n  \"protestieren\": \"protesti\",\n  \"protestierte\": \"protestiert\",\n  \"protestschreien\": \"protestschrei\",\n  \"protokoll\": \"protokoll\",\n  \"provenzalischen\": \"provenzal\",\n  \"proviant\": \"proviant\",\n  \"provinz\": \"provinz\",\n  \"provinzen\": \"provinz\",\n  \"provision\": \"provision\",\n  \"provisorischen\": \"provisor\",\n  \"provozieren\": \"provozi\",\n  \"provoziert\": \"provoziert\",\n  \"prozent\": \"prozent\",\n  \"prozentsatz\": \"prozentsatz\",\n  \"prozess\": \"prozess\",\n  \"prozeß\": \"prozess\",\n  \"prozesse\": \"prozess\",\n  \"prozesses\": \"prozess\",\n  \"prozessstadien\": \"prozessstadi\",\n  \"prozeßstadien\": \"prozessstadi\",\n  \"prozessstadium\": \"prozessstadium\",\n  \"prozeßstadium\": \"prozessstadium\",\n  \"prüfe\": \"pruf\",\n  \"prüfen\": \"pruf\",\n  \"prüfend\": \"prufend\",\n  \"prüfenden\": \"prufend\",\n  \"prüfte\": \"pruft\",\n  \"prüften\": \"pruft\",\n  \"prüfung\": \"prufung\",\n  \"prüfungslauf\": \"prufungslauf\",\n  \"prüfungsmerkmal\": \"prufungsmerkmal\",\n  \"prüfungsraum\": \"prufungsraum\",\n  \"prügel\": \"prugel\",\n  \"prügelfertig\": \"prugelfert\",\n  \"prügeln\": \"prugeln\",\n  \"prügelstrafe\": \"prugelstraf\",\n  \"prügelte\": \"prugelt\",\n  \"prügle\": \"prugl\",\n  \"prügler\": \"prugl\",\n  \"prunkbauten\": \"prunkbaut\",\n  \"prunkenden\": \"prunkend\",\n  \"prunkendes\": \"prunkend\",\n  \"prunkwagen\": \"prunkwag\",\n  \"prusten\": \"prust\",\n  \"prustend\": \"prustend\",\n  \"prustete\": \"prustet\",\n  \"prutzeln\": \"prutzeln\",\n  \"ps\": \"ps\",\n  \"psalmen\": \"psalm\",\n  \"psyche\": \"psych\",\n  \"psychischen\": \"psychisch\",\n  \"psychologie\": \"psychologi\",\n  \"psychologisch\": \"psycholog\",\n  \"psychologische\": \"psycholog\",\n  \"psychologischen\": \"psycholog\",\n  \"psychologischer\": \"psycholog\",\n  \"puah\": \"puah\",\n  \"publikationen\": \"publikation\",\n  \"publikum\": \"publikum\",\n  \"pudel\": \"pudel\",\n  \"pudelhund\": \"pudelhund\",\n  \"pudelmütze\": \"pudelmutz\",\n  \"puerulus\": \"puerulus\",\n  \"püffe\": \"puff\",\n  \"puffen\": \"puff\",\n  \"püffen\": \"puff\",\n  \"puffte\": \"pufft\",\n  \"puh\": \"puh\",\n  \"puls\": \"pul\",\n  \"pult\": \"pult\",\n  \"pulver\": \"pulv\",\n  \"pulverdampf\": \"pulverdampf\",\n  \"pulverrauch\": \"pulverrauch\",\n  \"pumpe\": \"pump\",\n  \"pumpender\": \"pumpend\",\n  \"punkt\": \"punkt\",\n  \"pünktchen\": \"punktch\",\n  \"punkte\": \"punkt\",\n  \"punkten\": \"punkt\",\n  \"punktionen\": \"punktion\",\n  \"pünktlich\": \"punktlich\",\n  \"pünktlichen\": \"punktlich\",\n  \"pünktlichkeit\": \"punktlich\",\n  \"pünktlichste\": \"punktlich\",\n  \"punktum\": \"punktum\",\n  \"punsch\": \"punsch\",\n  \"pupille\": \"pupill\",\n  \"püppchen\": \"puppch\",\n  \"puppe\": \"pupp\",\n  \"puppen\": \"pupp\",\n  \"puppengarten\": \"puppengart\",\n  \"puppenkind\": \"puppenkind\",\n  \"puppenshow\": \"puppenshow\",\n  \"puppenstube\": \"puppenstub\",\n  \"purpur\": \"purpur\",\n  \"purpurlippen\": \"purpurlipp\",\n  \"purpurrose\": \"purpurros\",\n  \"purpurroten\": \"purpurrot\",\n  \"purzelbaum\": \"purzelbaum\",\n  \"purzelbäumchen\": \"purzelbaumch\",\n  \"purzelbäume\": \"purzelbaum\",\n  \"purzeln\": \"purzeln\",\n  \"purzelnd\": \"purzelnd\",\n  \"purzelte\": \"purzelt\",\n  \"purzelten\": \"purzelt\",\n  \"pusterohr\": \"pusterohr\",\n  \"pustete\": \"pustet\",\n  \"puteo\": \"puteo\",\n  \"puterrot\": \"puterrot\",\n  \"puth\": \"puth\",\n  \"putiels\": \"putiel\",\n  \"putsch\": \"putsch\",\n  \"pütschli\": \"putschli\",\n  \"putschpitschpatsch\": \"putschpitschpatsch\",\n  \"puttperwutt\": \"puttperwutt\",\n  \"putz\": \"putz\",\n  \"putzen\": \"putz\",\n  \"putzer\": \"putz\",\n  \"putzläppchen\": \"putzlappch\",\n  \"putzte\": \"putzt\",\n  \"pyramide\": \"pyramid\",\n  \"pyrop\": \"pyrop\",\n  \"pyropen\": \"pyrop\",\n  \"qm\": \"qm\",\n  \"qua\": \"qua\",\n  \"quacken\": \"quack\",\n  \"quae\": \"quae\",\n  \"quakend\": \"quakend\",\n  \"quaksend\": \"quaksend\",\n  \"quakte\": \"quakt\",\n  \"qual\": \"qual\",\n  \"quale\": \"qual\",\n  \"quäle\": \"qual\",\n  \"quälen\": \"qual\",\n  \"quälend\": \"qualend\",\n  \"quälenden\": \"qualend\",\n  \"quälerei\": \"qualerei\",\n  \"qualifikation\": \"qualifikation\",\n  \"qualität\": \"qualitat\",\n  \"qualm\": \"qualm\",\n  \"quält\": \"qualt\",\n  \"quälte\": \"qualt\",\n  \"quälten\": \"qualt\",\n  \"quantität\": \"quantitat\",\n  \"quartierbewohnern\": \"quartierbewohn\",\n  \"quartiere\": \"quarti\",\n  \"quasi\": \"quasi\",\n  \"quax\": \"quax\",\n  \"quell\": \"quell\",\n  \"quelle\": \"quell\",\n  \"quellen\": \"quell\",\n  \"quellenangabe\": \"quellenangab\",\n  \"quellenden\": \"quellend\",\n  \"quentchen\": \"quentch\",\n  \"quer\": \"quer\",\n  \"querbalken\": \"querbalk\",\n  \"quere\": \"quer\",\n  \"querhölzchen\": \"querholzch\",\n  \"querköpfigkeiten\": \"querkopf\",\n  \"quertäler\": \"quertal\",\n  \"quiekend\": \"quiekend\",\n  \"quiekenden\": \"quiekend\",\n  \"quiekte\": \"quiekt\",\n  \"quietschte\": \"quietscht\",\n  \"quint\": \"quint\",\n  \"quintessenz\": \"quintessenz\",\n  \"quirlige\": \"quirlig\",\n  \"quirlte\": \"quirlt\",\n  \"quod\": \"quod\",\n  \"quoll\": \"quoll\",\n  \"quollen\": \"quoll\",\n  \"quoque\": \"quoqu\",\n  \"r\": \"r\",\n  \"raamas\": \"raamas\",\n  \"raamses\": \"raams\",\n  \"rabbi\": \"rabbi\",\n  \"raben\": \"rab\",\n  \"rabenschwarzes\": \"rabenschwarz\",\n  \"rabensteiner\": \"rabenstein\",\n  \"race\": \"rac\",\n  \"rache\": \"rach\",\n  \"rachegefühl\": \"rachegefuhl\",\n  \"rachel\": \"rachel\",\n  \"rachen\": \"rach\",\n  \"rächen\": \"rach\",\n  \"rachgier\": \"rachgi\",\n  \"rachgierigen\": \"rachgier\",\n  \"rachsucht\": \"rachsucht\",\n  \"rachsüchtigen\": \"rachsucht\",\n  \"rächte\": \"racht\",\n  \"rächten\": \"racht\",\n  \"rad\": \"rad\",\n  \"rädelsführer\": \"radelsfuhr\",\n  \"rademacher\": \"rademach\",\n  \"räder\": \"rad\",\n  \"räderchen\": \"raderch\",\n  \"rädergerassels\": \"radergerassel\",\n  \"rädern\": \"rad\",\n  \"radfahrlegitimation\": \"radfahrlegitimation\",\n  \"radikales\": \"radikal\",\n  \"radikalismus\": \"radikalismus\",\n  \"radio\": \"radio\",\n  \"radiosender\": \"radios\",\n  \"radmantel\": \"radmantel\",\n  \"radotiert\": \"radotiert\",\n  \"raffiniert\": \"raffiniert\",\n  \"rafft\": \"rafft\",\n  \"raffte\": \"rafft\",\n  \"rage\": \"rag\",\n  \"ragte\": \"ragt\",\n  \"ragten\": \"ragt\",\n  \"rahm\": \"rahm\",\n  \"rahmen\": \"rahm\",\n  \"rahmschüsseln\": \"rahmschusseln\",\n  \"rain\": \"rain\",\n  \"raines\": \"rain\",\n  \"raka\": \"raka\",\n  \"räkelte\": \"rakelt\",\n  \"ramsau\": \"ramsau\",\n  \"ran\": \"ran\",\n  \"rand\": \"rand\",\n  \"rande\": \"rand\",\n  \"rang\": \"rang\",\n  \"rangen\": \"rang\",\n  \"rangordnung\": \"rangordn\",\n  \"ränke\": \"rank\",\n  \"ranken\": \"rank\",\n  \"rankte\": \"rankt\",\n  \"rankten\": \"rankt\",\n  \"rann\": \"rann\",\n  \"rannte\": \"rannt\",\n  \"rannten\": \"rannt\",\n  \"ränzchen\": \"ranzch\",\n  \"ränzel\": \"ranzel\",\n  \"ranzen\": \"ranz\",\n  \"raphael\": \"raphael\",\n  \"rappeln\": \"rappeln\",\n  \"rappelte\": \"rappelt\",\n  \"rapps\": \"rapps\",\n  \"rar\": \"rar\",\n  \"rasanter\": \"rasant\",\n  \"rasch\": \"rasch\",\n  \"rasche\": \"rasch\",\n  \"rascheln\": \"rascheln\",\n  \"raschelnden\": \"raschelnd\",\n  \"raschelt\": \"raschelt\",\n  \"raschelte\": \"raschelt\",\n  \"raschem\": \"rasch\",\n  \"raschen\": \"rasch\",\n  \"rascher\": \"rasch\",\n  \"rasches\": \"rasch\",\n  \"rasen\": \"ras\",\n  \"rasenbrocken\": \"rasenbrock\",\n  \"rasend\": \"rasend\",\n  \"rasender\": \"rasend\",\n  \"rasendes\": \"rasend\",\n  \"rasenfelder\": \"rasenfeld\",\n  \"raset\": \"raset\",\n  \"rasierapparat\": \"rasierapparat\",\n  \"rasieren\": \"rasi\",\n  \"räsonnieren\": \"rasonni\",\n  \"rasselfritzen\": \"rasselfritz\",\n  \"rasseln\": \"rasseln\",\n  \"rasselns\": \"rasseln\",\n  \"rasselte\": \"rasselt\",\n  \"rasselten\": \"rasselt\",\n  \"raste\": \"rast\",\n  \"rastlos\": \"rastlos\",\n  \"rastlosen\": \"rastlos\",\n  \"rastloses\": \"rastlos\",\n  \"rat\": \"rat\",\n  \"rate\": \"rat\",\n  \"raten\": \"rat\",\n  \"rates\": \"rat\",\n  \"ratgeber\": \"ratgeb\",\n  \"ratgebern\": \"ratgeb\",\n  \"rathaus\": \"rathaus\",\n  \"rathause\": \"rathaus\",\n  \"ratio\": \"ratio\",\n  \"ratiocinari\": \"ratiocinari\",\n  \"ration\": \"ration\",\n  \"rationale\": \"rational\",\n  \"rationalen\": \"rational\",\n  \"rationales\": \"rational\",\n  \"rationalismus\": \"rationalismus\",\n  \"ratione\": \"ration\",\n  \"rationelle\": \"rationell\",\n  \"rationes\": \"ration\",\n  \"ratlos\": \"ratlos\",\n  \"ratlosen\": \"ratlos\",\n  \"rats\": \"rat\",\n  \"ratsam\": \"ratsam\",\n  \"ratschläge\": \"ratschlag\",\n  \"ratschlägen\": \"ratschlag\",\n  \"ratschlagten\": \"ratschlagt\",\n  \"rätsel\": \"ratsel\",\n  \"rätselhafte\": \"ratselhaft\",\n  \"ratsherren\": \"ratsherr\",\n  \"ratsvorsitzende\": \"ratsvorsitz\",\n  \"ratszimmer\": \"ratszimm\",\n  \"raub\": \"raub\",\n  \"rauben\": \"raub\",\n  \"räuber\": \"raub\",\n  \"räubereien\": \"rauberei\",\n  \"räuberhauptmann\": \"rauberhauptmann\",\n  \"räuberhöhle\": \"rauberhohl\",\n  \"räubern\": \"raub\",\n  \"raubersbestie\": \"raubersbesti\",\n  \"raubkunst\": \"raubkun\",\n  \"raubt\": \"raubt\",\n  \"raubte\": \"raubt\",\n  \"raubtier\": \"raubti\",\n  \"raubtiere\": \"raubti\",\n  \"raubversuch\": \"raubversuch\",\n  \"rauch\": \"rauch\",\n  \"rauche\": \"rauch\",\n  \"rauchen\": \"rauch\",\n  \"rauchend\": \"rauchend\",\n  \"rauchende\": \"rauchend\",\n  \"rauchenden\": \"rauchend\",\n  \"rauchendes\": \"rauchend\",\n  \"räucherig\": \"raucher\",\n  \"rauchern\": \"rauch\",\n  \"rauchfaden\": \"rauchfad\",\n  \"rauchsäulen\": \"rauchsaul\",\n  \"rauchtabak\": \"rauchtabak\",\n  \"rauchte\": \"raucht\",\n  \"rauchten\": \"raucht\",\n  \"rauchtisch\": \"rauchtisch\",\n  \"rauchwerk\": \"rauchwerk\",\n  \"rauchwerks\": \"rauchwerk\",\n  \"rauchwolken\": \"rauchwolk\",\n  \"rauchzeug\": \"rauchzeug\",\n  \"räude\": \"raud\",\n  \"raufereien\": \"rauferei\",\n  \"rauheit\": \"rauheit\",\n  \"rauhen\": \"rauh\",\n  \"rauhes\": \"rauh\",\n  \"raum\": \"raum\",\n  \"raume\": \"raum\",\n  \"räume\": \"raum\",\n  \"räumen\": \"raum\",\n  \"raumes\": \"raum\",\n  \"räumliche\": \"raumlich\",\n  \"räumlichkeiten\": \"raumlich\",\n  \"räumt\": \"raumt\",\n  \"raupe\": \"raup\",\n  \"raus\": \"raus\",\n  \"rausch\": \"rausch\",\n  \"rausche\": \"rausch\",\n  \"rauschen\": \"rausch\",\n  \"rauschend\": \"rauschend\",\n  \"rauschende\": \"rauschend\",\n  \"rauschenden\": \"rauschend\",\n  \"rauscht\": \"rauscht\",\n  \"rauschte\": \"rauscht\",\n  \"rauschten\": \"rauscht\",\n  \"rausg\": \"rausg\",\n  \"rausgeschmissen\": \"rausgeschmiss\",\n  \"rausschneiden\": \"rausschneid\",\n  \"rauszuschneiden\": \"rauszuschneid\",\n  \"ravensburg\": \"ravensburg\",\n  \"re\": \"re\",\n  \"reader\": \"read\",\n  \"reagieren\": \"reagi\",\n  \"real\": \"real\",\n  \"reale\": \"real\",\n  \"realen\": \"real\",\n  \"reales\": \"real\",\n  \"realisier\": \"realisi\",\n  \"realisieren\": \"realisi\",\n  \"realisiert\": \"realisiert\",\n  \"realisierung\": \"realisier\",\n  \"realistisch\": \"realist\",\n  \"realität\": \"realitat\",\n  \"rebecka\": \"rebecka\",\n  \"rebellischen\": \"rebell\",\n  \"rebenlaube\": \"rebenlaub\",\n  \"rebenschossen\": \"rebenschoss\",\n  \"rebhühner\": \"rebhuhn\",\n  \"rebhühnern\": \"rebhuhn\",\n  \"rebhuhnpastete\": \"rebhuhnpastet\",\n  \"rechen\": \"rech\",\n  \"rechenbuch\": \"rechenbuch\",\n  \"rechenmeister\": \"rechenmeist\",\n  \"rechenschaft\": \"rechenschaft\",\n  \"recherchieren\": \"recherchi\",\n  \"rechne\": \"rechn\",\n  \"rechnen\": \"rechn\",\n  \"rechnereien\": \"rechnerei\",\n  \"rechnet\": \"rechnet\",\n  \"rechnete\": \"rechnet\",\n  \"rechnung\": \"rechnung\",\n  \"rechnungen\": \"rechnung\",\n  \"rechnungsabschluss\": \"rechnungsabschluss\",\n  \"rechobs\": \"rechob\",\n  \"recht\": \"recht\",\n  \"rechtbehalten\": \"rechtbehalt\",\n  \"rechte\": \"recht\",\n  \"rechten\": \"recht\",\n  \"rechter\": \"recht\",\n  \"rechtes\": \"recht\",\n  \"rechtfertige\": \"rechtfert\",\n  \"rechtfertigen\": \"rechtfert\",\n  \"rechtfertigende\": \"rechtfert\",\n  \"rechtfertigt\": \"rechtfertigt\",\n  \"rechtfertigung\": \"rechtfert\",\n  \"rechtfertigungserklärung\": \"rechtfertigungserklar\",\n  \"rechtfertigungserklärungder\": \"rechtfertigungserklarungd\",\n  \"rechtfertigungslehre\": \"rechtfertigungslehr\",\n  \"rechthaben\": \"rechthab\",\n  \"rechtlich\": \"rechtlich\",\n  \"rechtliche\": \"rechtlich\",\n  \"rechtlichen\": \"rechtlich\",\n  \"rechtlicher\": \"rechtlich\",\n  \"rechtliches\": \"rechtlich\",\n  \"rechtlichkeit\": \"rechtlich\",\n  \"rechtmässig\": \"rechtmass\",\n  \"rechtmässige\": \"rechtmass\",\n  \"rechtmässigem\": \"rechtmass\",\n  \"rechtmässigen\": \"rechtmass\",\n  \"rechts\": \"recht\",\n  \"rechtsangelegenheit\": \"rechtsangeleg\",\n  \"rechtsbewusstsein\": \"rechtsbewusstsein\",\n  \"rechtschaffen\": \"rechtschaff\",\n  \"rechtschaffene\": \"rechtschaff\",\n  \"rechtschaffenen\": \"rechtschaff\",\n  \"rechtschaffener\": \"rechtschaff\",\n  \"rechtschaffenheit\": \"rechtschaff\",\n  \"rechtskräftig\": \"rechtskraft\",\n  \"rechtsordnungen\": \"rechtsordn\",\n  \"rechtssinn\": \"rechtssinn\",\n  \"rechtsstaat\": \"rechtsstaat\",\n  \"rechtswissenschaft\": \"rechtswissenschaft\",\n  \"rechtzeitig\": \"rechtzeit\",\n  \"recke\": \"reck\",\n  \"recken\": \"reck\",\n  \"reckend\": \"reckend\",\n  \"reckte\": \"reckt\",\n  \"red\": \"red\",\n  \"redakteur\": \"redakteur\",\n  \"redaktion\": \"redaktion\",\n  \"redaktorin\": \"redaktorin\",\n  \"rede\": \"red\",\n  \"reden\": \"red\",\n  \"redend\": \"redend\",\n  \"redende\": \"redend\",\n  \"redenden\": \"redend\",\n  \"redendes\": \"redend\",\n  \"redens\": \"red\",\n  \"redensart\": \"redensart\",\n  \"redensarten\": \"redensart\",\n  \"redesätze\": \"redesatz\",\n  \"redest\": \"red\",\n  \"redet\": \"redet\",\n  \"redete\": \"redet\",\n  \"redeten\": \"redet\",\n  \"redeweise\": \"redeweis\",\n  \"redewendung\": \"redewend\",\n  \"redezeichen\": \"redezeich\",\n  \"redigiert\": \"redigiert\",\n  \"redigierte\": \"redigiert\",\n  \"redlich\": \"redlich\",\n  \"redliche\": \"redlich\",\n  \"redlichen\": \"redlich\",\n  \"redlicher\": \"redlich\",\n  \"redlichkeit\": \"redlich\",\n  \"redner\": \"redn\",\n  \"rednerische\": \"redner\",\n  \"redselig\": \"redsel\",\n  \"redt\": \"redt\",\n  \"réduit\": \"réduit\",\n  \"reduktion\": \"reduktion\",\n  \"reduktionen\": \"reduktion\",\n  \"reeder\": \"reed\",\n  \"refa\": \"refa\",\n  \"refah\": \"refah\",\n  \"referent\": \"referent\",\n  \"referenz\": \"referenz\",\n  \"reflektieren\": \"reflekti\",\n  \"reflektiert\": \"reflektiert\",\n  \"reflexion\": \"reflexion\",\n  \"reform\": \"reform\",\n  \"reformation\": \"reformation\",\n  \"reformen\": \"reform\",\n  \"reformierte\": \"reformiert\",\n  \"reformierten\": \"reformiert\",\n  \"refutieren\": \"refuti\",\n  \"regal\": \"regal\",\n  \"rege\": \"reg\",\n  \"regel\": \"regel\",\n  \"regelmässig\": \"regelmass\",\n  \"regelmäßig\": \"regelmass\",\n  \"regelmässige\": \"regelmass\",\n  \"regelmässigen\": \"regelmass\",\n  \"regelmässiger\": \"regelmass\",\n  \"regelmässigkeit\": \"regelmass\",\n  \"regeln\": \"regeln\",\n  \"regelrecht\": \"regelrecht\",\n  \"regelrechte\": \"regelrecht\",\n  \"regen\": \"reg\",\n  \"regenbogen\": \"regenbog\",\n  \"regende\": \"regend\",\n  \"regenden\": \"regend\",\n  \"regenfritz\": \"regenfritz\",\n  \"regenfritzen\": \"regenfritz\",\n  \"regengüssen\": \"regenguss\",\n  \"regenhose\": \"regenhos\",\n  \"regennacht\": \"regennacht\",\n  \"regennassen\": \"regennass\",\n  \"regenrauschen\": \"regenrausch\",\n  \"regens\": \"reg\",\n  \"regenschirm\": \"regenschirm\",\n  \"regentagen\": \"regentag\",\n  \"regentropfen\": \"regentropf\",\n  \"regentschaft\": \"regentschaft\",\n  \"regenwasserfass\": \"regenwasserfass\",\n  \"regenwurm\": \"regenwurm\",\n  \"regenwürmer\": \"regenwurm\",\n  \"regiere\": \"regi\",\n  \"regieren\": \"regi\",\n  \"regierende\": \"regier\",\n  \"regierenden\": \"regier\",\n  \"regierer\": \"regi\",\n  \"regierers\": \"regier\",\n  \"regiert\": \"regiert\",\n  \"regierte\": \"regiert\",\n  \"regierung\": \"regier\",\n  \"regierungskrisedie\": \"regierungskrisedi\",\n  \"regierungsrat\": \"regierungsrat\",\n  \"regiment\": \"regiment\",\n  \"regimente\": \"regiment\",\n  \"regimentes\": \"regiment\",\n  \"regimentskommandeurs\": \"regimentskommandeur\",\n  \"region\": \"region\",\n  \"regionalstelle\": \"regionalstell\",\n  \"regionen\": \"region\",\n  \"registrieren\": \"registri\",\n  \"registriert\": \"registriert\",\n  \"reglos\": \"reglos\",\n  \"reglosen\": \"reglos\",\n  \"regnat\": \"regnat\",\n  \"regnen\": \"regn\",\n  \"regnerische\": \"regner\",\n  \"regnerischer\": \"regner\",\n  \"regnete\": \"regnet\",\n  \"regt\": \"regt\",\n  \"regte\": \"regt\",\n  \"reguel\": \"reguel\",\n  \"reguels\": \"reguel\",\n  \"regula\": \"regula\",\n  \"regulären\": \"regular\",\n  \"regulative\": \"regulativ\",\n  \"regulieren\": \"reguli\",\n  \"reguliert\": \"reguliert\",\n  \"regulos\": \"regulos\",\n  \"regung\": \"regung\",\n  \"regungen\": \"regung\",\n  \"regungslos\": \"regungslos\",\n  \"regungslosen\": \"regungslos\",\n  \"reh\": \"reh\",\n  \"rehabilitiert\": \"rehabilitiert\",\n  \"rehbock\": \"rehbock\",\n  \"rehböcken\": \"rehbock\",\n  \"rehcherl\": \"rehcherl\",\n  \"rehe\": \"reh\",\n  \"rehen\": \"reh\",\n  \"rehes\": \"reh\",\n  \"rehfussgriff\": \"rehfussgriff\",\n  \"rehgeiss\": \"rehgeiss\",\n  \"reiben\": \"reib\",\n  \"reich\": \"reich\",\n  \"reiche\": \"reich\",\n  \"reichem\": \"reich\",\n  \"reichen\": \"reich\",\n  \"reichenhall\": \"reichenhall\",\n  \"reicher\": \"reich\",\n  \"reichere\": \"reich\",\n  \"reiches\": \"reich\",\n  \"reichgekleidete\": \"reichgekleidet\",\n  \"reichhaltiges\": \"reichhalt\",\n  \"reichlich\": \"reichlich\",\n  \"reichliche\": \"reichlich\",\n  \"reichlichem\": \"reichlich\",\n  \"reichlichen\": \"reichlich\",\n  \"reichlichere\": \"reichlich\",\n  \"reichlicheres\": \"reichlich\",\n  \"reichs\": \"reich\",\n  \"reichsfeind\": \"reichsfeind\",\n  \"reichskristallnacht\": \"reichskristallnacht\",\n  \"reichspogrom\": \"reichspogrom\",\n  \"reichste\": \"reich\",\n  \"reichsten\": \"reich\",\n  \"reicht\": \"reicht\",\n  \"reichte\": \"reicht\",\n  \"reichten\": \"reicht\",\n  \"reichtstag\": \"reichtstag\",\n  \"reichtum\": \"reichtum\",\n  \"reichtümer\": \"reichtum\",\n  \"reichtümern\": \"reichtum\",\n  \"reif\": \"reif\",\n  \"reife\": \"reif\",\n  \"reifen\": \"reif\",\n  \"reifende\": \"reifend\",\n  \"reifenden\": \"reifend\",\n  \"reiflich\": \"reiflich\",\n  \"reifrocke\": \"reifrock\",\n  \"reifte\": \"reift\",\n  \"reigen\": \"reig\",\n  \"reihe\": \"reih\",\n  \"reihen\": \"reih\",\n  \"reihenfolge\": \"reihenfolg\",\n  \"reiher\": \"reih\",\n  \"reihte\": \"reiht\",\n  \"reime\": \"reim\",\n  \"reimt\": \"reimt\",\n  \"rein\": \"rein\",\n  \"reine\": \"rein\",\n  \"reinem\": \"rein\",\n  \"reinen\": \"rein\",\n  \"reiner\": \"rein\",\n  \"reinerem\": \"rein\",\n  \"reineren\": \"rein\",\n  \"reines\": \"rein\",\n  \"reinheit\": \"reinheit\",\n  \"reinhold\": \"reinhold\",\n  \"reinigen\": \"reinig\",\n  \"reinigend\": \"reinig\",\n  \"reinigkeit\": \"reinig\",\n  \"reinigung\": \"reinig\",\n  \"reinigungen\": \"reinig\",\n  \"reinlich\": \"reinlich\",\n  \"reinliche\": \"reinlich\",\n  \"reinlichen\": \"reinlich\",\n  \"reinliches\": \"reinlich\",\n  \"reinlichkeit\": \"reinlich\",\n  \"reinreichen\": \"reinreich\",\n  \"reinsten\": \"rein\",\n  \"reinzukleben\": \"reinzukleb\",\n  \"reis\": \"reis\",\n  \"reise\": \"reis\",\n  \"reiseanzügen\": \"reiseanzug\",\n  \"reisebegleiter\": \"reisebegleit\",\n  \"reisebeschreibung\": \"reisebeschreib\",\n  \"reisebüro\": \"reiseburo\",\n  \"reisebürofrau\": \"reiseburofrau\",\n  \"reisegefährten\": \"reisegefahrt\",\n  \"reisegeld\": \"reisegeld\",\n  \"reisen\": \"reis\",\n  \"reisenden\": \"reisend\",\n  \"reisender\": \"reisend\",\n  \"reisern\": \"reis\",\n  \"reiset\": \"reiset\",\n  \"reisetasche\": \"reisetasch\",\n  \"reisete\": \"reiset\",\n  \"reisetruhe\": \"reisetruh\",\n  \"reiseveranstalter\": \"reiseveranstalt\",\n  \"reisewagen\": \"reisewag\",\n  \"reisig\": \"reisig\",\n  \"reisigbündel\": \"reisigbundel\",\n  \"reissaus\": \"reissaus\",\n  \"reisse\": \"reiss\",\n  \"reiße\": \"reiss\",\n  \"reissen\": \"reiss\",\n  \"reißen\": \"reiss\",\n  \"reissende\": \"reissend\",\n  \"reissenden\": \"reissend\",\n  \"reißenden\": \"reissend\",\n  \"reissender\": \"reissend\",\n  \"reißender\": \"reissend\",\n  \"reisst\": \"reisst\",\n  \"reist\": \"reist\",\n  \"reiste\": \"reist\",\n  \"reiten\": \"reit\",\n  \"reiter\": \"reit\",\n  \"reiterei\": \"reiterei\",\n  \"reitergesellschaft\": \"reitergesellschaft\",\n  \"reitern\": \"reit\",\n  \"reitertrupps\": \"reitertrupps\",\n  \"reitet\": \"reitet\",\n  \"reitpeitsche\": \"reitpeitsch\",\n  \"reitpeitschen\": \"reitpeitsch\",\n  \"reittier\": \"reitti\",\n  \"reiz\": \"reiz\",\n  \"reizbar\": \"reizbar\",\n  \"reize\": \"reiz\",\n  \"reizen\": \"reiz\",\n  \"reizend\": \"reizend\",\n  \"reizende\": \"reizend\",\n  \"reizendem\": \"reizend\",\n  \"reizenden\": \"reizend\",\n  \"reizender\": \"reizend\",\n  \"reizendes\": \"reizend\",\n  \"reizte\": \"reizt\",\n  \"reizvolle\": \"reizvoll\",\n  \"rekruten\": \"rekrut\",\n  \"rekrutiert\": \"rekrutiert\",\n  \"relativ\": \"relativ\",\n  \"relativen\": \"relativ\",\n  \"relativiert\": \"relativiert\",\n  \"religion\": \"religion\",\n  \"religionen\": \"religion\",\n  \"religionreligionsunterricht\": \"religionreligionsunterricht\",\n  \"religions\": \"religion\",\n  \"religionsgebräuche\": \"religionsgebrauch\",\n  \"religionsgemeinschaft\": \"religionsgemeinschaft\",\n  \"religionslehre\": \"religionslehr\",\n  \"religionsleuten\": \"religionsleut\",\n  \"religiös\": \"religios\",\n  \"religiöse\": \"religios\",\n  \"religiösen\": \"religios\",\n  \"reliquiae\": \"reliquia\",\n  \"remalja\": \"remalja\",\n  \"remaljas\": \"remaljas\",\n  \"reminiszenz\": \"reminiszenz\",\n  \"rempelte\": \"rempelt\",\n  \"rennen\": \"renn\",\n  \"rennens\": \"renn\",\n  \"renner\": \"renn\",\n  \"rennern\": \"renn\",\n  \"rennt\": \"rennt\",\n  \"renntier\": \"rennti\",\n  \"renommierten\": \"renommiert\",\n  \"renoviert\": \"renoviert\",\n  \"renovierte\": \"renoviert\",\n  \"renten\": \"rent\",\n  \"rephaim\": \"rephaim\",\n  \"reporter\": \"report\",\n  \"repräsentanten\": \"reprasentant\",\n  \"repräsentantinnennach\": \"reprasentantinnennach\",\n  \"republik\": \"republ\",\n  \"republikaner\": \"republikan\",\n  \"reserve\": \"reserv\",\n  \"residenz\": \"residenz\",\n  \"residenzstadt\": \"residenzstadt\",\n  \"resolut\": \"resolut\",\n  \"resoluten\": \"resolut\",\n  \"respekt\": \"respekt\",\n  \"respektablen\": \"respektabl\",\n  \"respektieren\": \"respekti\",\n  \"respekts\": \"respekt\",\n  \"ressiert\": \"ressiert\",\n  \"ressort\": \"ressort\",\n  \"rest\": \"rest\",\n  \"restchen\": \"restch\",\n  \"reste\": \"rest\",\n  \"resten\": \"rest\",\n  \"restitution\": \"restitution\",\n  \"restlichen\": \"restlich\",\n  \"resultat\": \"resultat\",\n  \"resultate\": \"resultat\",\n  \"resümiert\": \"resumiert\",\n  \"reto\": \"reto\",\n  \"rette\": \"rett\",\n  \"retten\": \"rett\",\n  \"rettende\": \"rettend\",\n  \"rettenden\": \"rettend\",\n  \"retter\": \"rett\",\n  \"retterin\": \"retterin\",\n  \"rettete\": \"rettet\",\n  \"rettung\": \"rettung\",\n  \"rettungsanker\": \"rettungsank\",\n  \"rettungsgedanken\": \"rettungsgedank\",\n  \"rettungsgesellschaft\": \"rettungsgesellschaft\",\n  \"reue\": \"reu\",\n  \"reuen\": \"reu\",\n  \"reuet\": \"reuet\",\n  \"reuete\": \"reuet\",\n  \"reulos\": \"reulos\",\n  \"reuss\": \"reuss\",\n  \"reut\": \"reut\",\n  \"reute\": \"reut\",\n  \"revier\": \"revi\",\n  \"revolution\": \"revolution\",\n  \"revolutionäre\": \"revolutionar\",\n  \"rezept\": \"rezept\",\n  \"rezepten\": \"rezept\",\n  \"rezeptivität\": \"rezeptivitat\",\n  \"rezin\": \"rezin\",\n  \"rezins\": \"rezin\",\n  \"rhauderfehn\": \"rhauderfehn\",\n  \"rhein\": \"rhein\",\n  \"rheinische\": \"rheinisch\",\n  \"rheinstrom\": \"rheinstrom\",\n  \"rhetorik\": \"rhetor\",\n  \"rhetorischen\": \"rhetor\",\n  \"richard\": \"richard\",\n  \"richt\": \"richt\",\n  \"richte\": \"richt\",\n  \"richten\": \"richt\",\n  \"richter\": \"richt\",\n  \"richteramt\": \"richteramt\",\n  \"richterlichen\": \"richt\",\n  \"richtern\": \"richt\",\n  \"richters\": \"richt\",\n  \"richterstuhl\": \"richterstuhl\",\n  \"richtes\": \"richt\",\n  \"richtet\": \"richtet\",\n  \"richtete\": \"richtet\",\n  \"richteten\": \"richtet\",\n  \"richtig\": \"richtig\",\n  \"richtige\": \"richtig\",\n  \"richtigem\": \"richtig\",\n  \"richtigen\": \"richtig\",\n  \"richtiger\": \"richtig\",\n  \"richtiges\": \"richtig\",\n  \"richtigkeit\": \"richtig\",\n  \"richtigs\": \"richtig\",\n  \"richtigsten\": \"richtig\",\n  \"richtscheit\": \"richtscheit\",\n  \"richtschnur\": \"richtschnur\",\n  \"richtung\": \"richtung\",\n  \"richtungen\": \"richtung\",\n  \"rieb\": \"rieb\",\n  \"rieben\": \"rieb\",\n  \"riechen\": \"riech\",\n  \"riechschwämmchen\": \"riechschwammch\",\n  \"riecht\": \"riecht\",\n  \"rief\": \"rief\",\n  \"riefen\": \"rief\",\n  \"riegel\": \"riegel\",\n  \"riegelte\": \"riegelt\",\n  \"riemen\": \"riem\",\n  \"riese\": \"ries\",\n  \"rieseln\": \"rieseln\",\n  \"rieselt\": \"rieselt\",\n  \"rieselte\": \"rieselt\",\n  \"rieselten\": \"rieselt\",\n  \"riesen\": \"ries\",\n  \"riesenfülle\": \"riesenfull\",\n  \"riesengebirge\": \"riesengebirg\",\n  \"riesengebirges\": \"riesengebirg\",\n  \"riesengross\": \"riesengross\",\n  \"riesengrosse\": \"riesengross\",\n  \"riesengrosser\": \"riesengross\",\n  \"riesengrosses\": \"riesengross\",\n  \"riesengrund\": \"riesengrund\",\n  \"riesenhafte\": \"riesenhaft\",\n  \"riesenhafter\": \"riesenhaft\",\n  \"riesenhund\": \"riesenhund\",\n  \"riesenkamme\": \"riesenkamm\",\n  \"riesenkanone\": \"riesenkanon\",\n  \"riesenköpfige\": \"riesenkopf\",\n  \"riesenkraft\": \"riesenkraft\",\n  \"riesenlanges\": \"riesenlang\",\n  \"riesenmade\": \"riesenmad\",\n  \"riesenmässiger\": \"riesenmass\",\n  \"riesenpferde\": \"riesenpferd\",\n  \"riesenzacken\": \"riesenzack\",\n  \"riesige\": \"riesig\",\n  \"riesigen\": \"riesig\",\n  \"riesiger\": \"riesig\",\n  \"riet\": \"riet\",\n  \"rieten\": \"riet\",\n  \"rin\": \"rin\",\n  \"rina\": \"rina\",\n  \"rinde\": \"rind\",\n  \"rindenklunsen\": \"rindenkluns\",\n  \"rindensubstanz\": \"rindensubstanz\",\n  \"rindensubstanzen\": \"rindensubstanz\",\n  \"rinder\": \"rind\",\n  \"rindern\": \"rind\",\n  \"rinderwahn\": \"rinderwahn\",\n  \"rindes\": \"rind\",\n  \"rindfleisch\": \"rindfleisch\",\n  \"rindvieh\": \"rindvieh\",\n  \"rindviehs\": \"rindvieh\",\n  \"ring\": \"ring\",\n  \"ringe\": \"ring\",\n  \"ringelchen\": \"ringelch\",\n  \"ringellocken\": \"ringellock\",\n  \"ringelreih\": \"ringelreih\",\n  \"ringelten\": \"ringelt\",\n  \"ringen\": \"ring\",\n  \"ringenden\": \"ringend\",\n  \"ringern\": \"ring\",\n  \"ringes\": \"ring\",\n  \"ringetausch\": \"ringetausch\",\n  \"ringgeschmückten\": \"ringgeschmuckt\",\n  \"ringier\": \"ringi\",\n  \"ringlein\": \"ringlein\",\n  \"ringmauer\": \"ringmau\",\n  \"ringmauern\": \"ringmau\",\n  \"rings\": \"ring\",\n  \"ringsherum\": \"ringsherum\",\n  \"ringsum\": \"ringsum\",\n  \"ringsumher\": \"ringsumh\",\n  \"ringvorlesung\": \"ringvorles\",\n  \"rinne\": \"rinn\",\n  \"rinnen\": \"rinn\",\n  \"rinnt\": \"rinnt\",\n  \"rippe\": \"ripp\",\n  \"rippen\": \"ripp\",\n  \"rippenbrüche\": \"rippenbruch\",\n  \"rippenstösse\": \"rippenstoss\",\n  \"risiken\": \"risik\",\n  \"risiko\": \"risiko\",\n  \"riskiert\": \"riskiert\",\n  \"riss\": \"riss\",\n  \"riß\": \"riss\",\n  \"risse\": \"riss\",\n  \"rissen\": \"riss\",\n  \"risses\": \"riss\",\n  \"rith\": \"rith\",\n  \"ritikül\": \"ritikul\",\n  \"ritt\": \"ritt\",\n  \"ritten\": \"ritt\",\n  \"ritter\": \"ritt\",\n  \"ritterdienst\": \"ritterdien\",\n  \"ritterherr\": \"ritterherr\",\n  \"ritterherrlichen\": \"ritterherr\",\n  \"ritterlich\": \"ritt\",\n  \"ritterliche\": \"ritt\",\n  \"ritterlichen\": \"ritt\",\n  \"ritterlichkeit\": \"ritter\",\n  \"rittern\": \"ritt\",\n  \"ritternase\": \"ritternas\",\n  \"ritterrüstung\": \"ritterrust\",\n  \"ritters\": \"ritt\",\n  \"ritterschaft\": \"ritterschaft\",\n  \"rittersherr\": \"rittersherr\",\n  \"rittersherrn\": \"rittersherrn\",\n  \"rittersmann\": \"rittersmann\",\n  \"ritterstab\": \"ritterstab\",\n  \"rittes\": \"ritt\",\n  \"rittlings\": \"rittling\",\n  \"rituale\": \"ritual\",\n  \"ritus\": \"ritus\",\n  \"ritzen\": \"ritz\",\n  \"rivalen\": \"rival\",\n  \"rnit\": \"rnit\",\n  \"road\": \"road\",\n  \"robespierre\": \"robespierr\",\n  \"roch\": \"roch\",\n  \"röche\": \"roch\",\n  \"rock\": \"rock\",\n  \"röck\": \"rock\",\n  \"rockärmel\": \"rockarmel\",\n  \"röckchen\": \"rockch\",\n  \"rocke\": \"rock\",\n  \"röcke\": \"rock\",\n  \"röcken\": \"rock\",\n  \"rockes\": \"rock\",\n  \"rockschlippchenende\": \"rockschlippchen\",\n  \"rockschoss\": \"rockschoss\",\n  \"rocktasche\": \"rocktasch\",\n  \"rocktaschen\": \"rocktasch\",\n  \"rodeten\": \"rodet\",\n  \"roh\": \"roh\",\n  \"rohe\": \"roh\",\n  \"roheiten\": \"roheit\",\n  \"rohen\": \"roh\",\n  \"roher\": \"roh\",\n  \"rohes\": \"roh\",\n  \"rohesten\": \"roh\",\n  \"rohr\": \"rohr\",\n  \"rohrdurchwachsenen\": \"rohrdurchwachs\",\n  \"röhre\": \"rohr\",\n  \"rohrstock\": \"rohrstock\",\n  \"rolf\": \"rolf\",\n  \"rolle\": \"roll\",\n  \"rollen\": \"roll\",\n  \"rollenden\": \"rollend\",\n  \"rollendes\": \"rollend\",\n  \"rollfeld\": \"rollfeld\",\n  \"rollsteine\": \"rollstein\",\n  \"rollt\": \"rollt\",\n  \"rollte\": \"rollt\",\n  \"rollten\": \"rollt\",\n  \"rollwalze\": \"rollwalz\",\n  \"rom\": \"rom\",\n  \"roman\": \"roman\",\n  \"romane\": \"roman\",\n  \"romanes\": \"roman\",\n  \"romanhelden\": \"romanheld\",\n  \"romanshorn\": \"romanshorn\",\n  \"romantische\": \"romant\",\n  \"romantischer\": \"romant\",\n  \"romantisches\": \"romant\",\n  \"romeo\": \"romeo\",\n  \"römisch\": \"romisch\",\n  \"römischen\": \"romisch\",\n  \"rosafarbenes\": \"rosafarb\",\n  \"rosan\": \"rosan\",\n  \"röschen\": \"rosch\",\n  \"rose\": \"ros\",\n  \"rosen\": \"ros\",\n  \"rosenbäumchen\": \"rosenbaumch\",\n  \"rosenbüsche\": \"rosenbusch\",\n  \"rosengärtchen\": \"rosengartch\",\n  \"rosenroten\": \"rosenrot\",\n  \"rosenroter\": \"rosenrot\",\n  \"rosenschimmer\": \"rosenschimm\",\n  \"rosental\": \"rosental\",\n  \"rosenwäldchen\": \"rosenwaldch\",\n  \"rosiges\": \"rosig\",\n  \"rosigster\": \"rosig\",\n  \"rosine\": \"rosin\",\n  \"rosinen\": \"rosin\",\n  \"röslein\": \"roslein\",\n  \"rosmarin\": \"rosmarin\",\n  \"rosmaringärtchen\": \"rosmaringartch\",\n  \"rosoli\": \"rosoli\",\n  \"ross\": \"ross\",\n  \"roß\": \"ross\",\n  \"rosse\": \"ross\",\n  \"rosselenker\": \"rosselenk\",\n  \"rossen\": \"ross\",\n  \"rosstäuscher\": \"rosstausch\",\n  \"roßtäuscher\": \"rosstausch\",\n  \"rost\": \"rost\",\n  \"rostige\": \"rostig\",\n  \"rostigen\": \"rostig\",\n  \"rostiger\": \"rostig\",\n  \"rostiges\": \"rostig\",\n  \"rot\": \"rot\",\n  \"rotbäckigen\": \"rotback\",\n  \"rotbäckiger\": \"rotback\",\n  \"rotbäckiges\": \"rotback\",\n  \"rotbekleidete\": \"rotbekleidet\",\n  \"rote\": \"rot\",\n  \"röte\": \"rot\",\n  \"rotem\": \"rot\",\n  \"roten\": \"rot\",\n  \"roter\": \"rot\",\n  \"rotes\": \"rot\",\n  \"rotgelbem\": \"rotgelb\",\n  \"rotgelben\": \"rotgelb\",\n  \"rothaarig\": \"rothaar\",\n  \"rothaarige\": \"rothaar\",\n  \"rothaarigen\": \"rothaar\",\n  \"rothäutigen\": \"rothaut\",\n  \"rotieren\": \"roti\",\n  \"rötliche\": \"rotlich\",\n  \"rötlichem\": \"rotlich\",\n  \"rötlichen\": \"rotlich\",\n  \"rötlicher\": \"rotlich\",\n  \"rötliches\": \"rotlich\",\n  \"rotseidenes\": \"rotseid\",\n  \"rotte\": \"rott\",\n  \"rottenweise\": \"rottenweis\",\n  \"rotwein\": \"rotwein\",\n  \"roulierende\": \"roulier\",\n  \"routine\": \"routin\",\n  \"routinesendung\": \"routinesend\",\n  \"rpd\": \"rpd\",\n  \"ruben\": \"rub\",\n  \"rüben\": \"rub\",\n  \"rubens\": \"rub\",\n  \"rübezahl\": \"rubezahl\",\n  \"rübezahls\": \"rubezahl\",\n  \"rubin\": \"rubin\",\n  \"rubinfunken\": \"rubinfunk\",\n  \"rubrik\": \"rubrik\",\n  \"rubriken\": \"rubrik\",\n  \"rübzählischen\": \"rubzahl\",\n  \"ruchbar\": \"ruchbar\",\n  \"ruchlosen\": \"ruchlos\",\n  \"ruchlosigkeit\": \"ruchlos\",\n  \"ruck\": \"ruck\",\n  \"rückantwortcouverts\": \"ruckantwortcouvert\",\n  \"rücke\": \"ruck\",\n  \"ruckelt\": \"ruckelt\",\n  \"rücken\": \"ruck\",\n  \"rückfall\": \"ruckfall\",\n  \"rückflug\": \"ruckflug\",\n  \"rückgängig\": \"ruckgang\",\n  \"rückgesetzten\": \"ruckgesetzt\",\n  \"rückhalt\": \"ruckhalt\",\n  \"rückhaltlos\": \"ruckhaltlos\",\n  \"rückhaltlose\": \"ruckhaltlos\",\n  \"rückhaltlosen\": \"ruckhaltlos\",\n  \"rückhaltlosigkeit\": \"ruckhaltlos\",\n  \"rückkehr\": \"ruckkehr\",\n  \"rucksack\": \"rucksack\",\n  \"rucksäcken\": \"rucksack\",\n  \"rückschauen\": \"ruckschau\",\n  \"rückschluss\": \"ruckschluss\",\n  \"rückseiten\": \"ruckseit\",\n  \"rücksicht\": \"rucksicht\",\n  \"rücksichten\": \"rucksicht\",\n  \"rücksichtslos\": \"rucksichtslos\",\n  \"rücksichtsloser\": \"rucksichtslos\",\n  \"rücksichtsloseste\": \"rucksichtslos\",\n  \"rücksichtslosigkeit\": \"rucksichtslos\",\n  \"rücksitze\": \"rucksitz\",\n  \"rückspiel\": \"ruckspiel\",\n  \"rückt\": \"ruckt\",\n  \"rückte\": \"ruckt\",\n  \"rücktritt\": \"rucktritt\",\n  \"rücktritten\": \"rucktritt\",\n  \"rücktrittszahlen\": \"rucktrittszahl\",\n  \"rückübertragung\": \"ruckubertrag\",\n  \"rückwärtigen\": \"ruckwart\",\n  \"rückwärts\": \"ruckwart\",\n  \"rückwechsel\": \"ruckwechsel\",\n  \"rückweg\": \"ruckweg\",\n  \"rückwege\": \"ruckweg\",\n  \"rückwirkungen\": \"ruckwirk\",\n  \"rückzahlungsrate\": \"ruckzahlungsrat\",\n  \"rückzug\": \"ruckzug\",\n  \"rudel\": \"rudel\",\n  \"rudeln\": \"rudeln\",\n  \"rudels\": \"rudel\",\n  \"ruder\": \"rud\",\n  \"ruderbank\": \"ruderbank\",\n  \"rudern\": \"rud\",\n  \"ruderte\": \"rudert\",\n  \"rudi\": \"rudi\",\n  \"rüdiger\": \"rudig\",\n  \"rue\": \"rue\",\n  \"ruedi\": \"ruedi\",\n  \"ruf\": \"ruf\",\n  \"rufe\": \"ruf\",\n  \"rufen\": \"ruf\",\n  \"rufende\": \"rufend\",\n  \"rufenden\": \"rufend\",\n  \"rufens\": \"ruf\",\n  \"rufes\": \"ruf\",\n  \"rufet\": \"rufet\",\n  \"ruft\": \"ruft\",\n  \"rüge\": \"rug\",\n  \"ruh\": \"ruh\",\n  \"ruhe\": \"ruh\",\n  \"ruhekissen\": \"ruhekiss\",\n  \"ruhen\": \"ruh\",\n  \"ruhende\": \"ruhend\",\n  \"ruhepunkten\": \"ruhepunkt\",\n  \"ruhet\": \"ruhet\",\n  \"ruhete\": \"ruhet\",\n  \"ruhevoll\": \"ruhevoll\",\n  \"ruhig\": \"ruhig\",\n  \"ruhige\": \"ruhig\",\n  \"ruhigem\": \"ruhig\",\n  \"ruhigen\": \"ruhig\",\n  \"ruhiger\": \"ruhig\",\n  \"ruhigeren\": \"ruhig\",\n  \"ruhiges\": \"ruhig\",\n  \"ruhigste\": \"ruhig\",\n  \"ruhigsten\": \"ruhig\",\n  \"ruhm\": \"ruhm\",\n  \"ruhme\": \"ruhm\",\n  \"rühmen\": \"ruhm\",\n  \"rühmenswerte\": \"ruhmenswert\",\n  \"ruhmes\": \"ruhm\",\n  \"rühmt\": \"ruhmt\",\n  \"rühmte\": \"ruhmt\",\n  \"ruhn\": \"ruhn\",\n  \"rühre\": \"ruhr\",\n  \"rühren\": \"ruhr\",\n  \"rührend\": \"ruhrend\",\n  \"rührenden\": \"ruhrend\",\n  \"rührender\": \"ruhrend\",\n  \"rühret\": \"ruhret\",\n  \"ruhrgebiet\": \"ruhrgebiet\",\n  \"rühriger\": \"ruhrig\",\n  \"rührigkeit\": \"ruhrig\",\n  \"rührt\": \"ruhrt\",\n  \"rührte\": \"ruhrt\",\n  \"rührten\": \"ruhrt\",\n  \"rührung\": \"ruhrung\",\n  \"ruht\": \"ruht\",\n  \"ruhte\": \"ruht\",\n  \"ruhten\": \"ruht\",\n  \"ruine\": \"ruin\",\n  \"ruiniert\": \"ruiniert\",\n  \"ruinierte\": \"ruiniert\",\n  \"rum\": \"rum\",\n  \"rumgebrumsel\": \"rumgebrumsel\",\n  \"rummelplatz\": \"rummelplatz\",\n  \"rumorte\": \"rumort\",\n  \"rumpelkammer\": \"rumpelkamm\",\n  \"rumpfe\": \"rumpf\",\n  \"rümpfte\": \"rumpft\",\n  \"rumrennen\": \"rumrenn\",\n  \"rund\": \"rund\",\n  \"runde\": \"rund\",\n  \"runden\": \"rund\",\n  \"runder\": \"rund\",\n  \"rundes\": \"rund\",\n  \"rundfunk\": \"rundfunk\",\n  \"rundfunks\": \"rundfunk\",\n  \"rundgang\": \"rundgang\",\n  \"rundheit\": \"rundheit\",\n  \"rundlich\": \"rundlich\",\n  \"rundlichen\": \"rundlich\",\n  \"rundschrift\": \"rundschrift\",\n  \"rundung\": \"rundung\",\n  \"runge\": \"rung\",\n  \"runterbracht\": \"runterbracht\",\n  \"runzeln\": \"runzeln\",\n  \"runzelreiche\": \"runzelreich\",\n  \"runzlige\": \"runzlig\",\n  \"runzligen\": \"runzlig\",\n  \"russ\": \"russ\",\n  \"ruß\": \"russ\",\n  \"russenpeitsche\": \"russenpeitsch\",\n  \"russes\": \"russ\",\n  \"rußes\": \"russ\",\n  \"russgesichtige\": \"russgesicht\",\n  \"russigen\": \"russig\",\n  \"russiger\": \"russig\",\n  \"russisch\": \"russisch\",\n  \"russland\": \"russland\",\n  \"rüstet\": \"rustet\",\n  \"rüstig\": \"rustig\",\n  \"rüstige\": \"rustig\",\n  \"rüstigen\": \"rustig\",\n  \"rüstiger\": \"rustig\",\n  \"rüstigkeit\": \"rustig\",\n  \"rüstung\": \"rustung\",\n  \"rute\": \"rut\",\n  \"ruten\": \"rut\",\n  \"rutenhieb\": \"rutenhieb\",\n  \"rutenstreiche\": \"rutenstreich\",\n  \"rutenwald\": \"rutenwald\",\n  \"rutschbahn\": \"rutschbahn\",\n  \"rutschbahnen\": \"rutschbahn\",\n  \"rutschte\": \"rutscht\",\n  \"rütteln\": \"rutteln\",\n  \"rüttelte\": \"ruttelt\",\n  \"rüttelten\": \"ruttelt\",\n  \"s\": \"s\",\n  \"saal\": \"saal\",\n  \"saale\": \"saal\",\n  \"saales\": \"saal\",\n  \"saalhälfte\": \"saalhalft\",\n  \"saat\": \"saat\",\n  \"saaten\": \"saat\",\n  \"saatfeld\": \"saatfeld\",\n  \"sabbath\": \"sabbath\",\n  \"sabbathe\": \"sabbath\",\n  \"sabbaths\": \"sabbath\",\n  \"sabbattollen\": \"sabbattoll\",\n  \"säbel\": \"sabel\",\n  \"säbelhieben\": \"sabelhieb\",\n  \"säbels\": \"sabel\",\n  \"sabine\": \"sabin\",\n  \"sacconex\": \"sacconex\",\n  \"sach\": \"sach\",\n  \"sache\": \"sach\",\n  \"sachen\": \"sach\",\n  \"sacherklärungen\": \"sacherklar\",\n  \"sachgemäss\": \"sachgemass\",\n  \"sachgemässen\": \"sachgemass\",\n  \"sachlage\": \"sachlag\",\n  \"sachliche\": \"sachlich\",\n  \"sachs\": \"sach\",\n  \"sachse\": \"sachs\",\n  \"sachsen\": \"sachs\",\n  \"sächsische\": \"sachsisch\",\n  \"sächsischen\": \"sachsisch\",\n  \"sacht\": \"sacht\",\n  \"sachte\": \"sacht\",\n  \"sachten\": \"sacht\",\n  \"sachverständigen\": \"sachverstand\",\n  \"sachzusammenhang\": \"sachzusammenhang\",\n  \"sack\": \"sack\",\n  \"säckchen\": \"sackch\",\n  \"säcke\": \"sack\",\n  \"säcken\": \"sack\",\n  \"sackgasse\": \"sackgass\",\n  \"sackuhr\": \"sackuhr\",\n  \"sacrosanctum\": \"sacrosanctum\",\n  \"saeculi\": \"saeculi\",\n  \"säet\": \"saet\",\n  \"saffianschuhe\": \"saffianschuh\",\n  \"saft\": \"saft\",\n  \"sag\": \"sag\",\n  \"sage\": \"sag\",\n  \"sagen\": \"sag\",\n  \"sägespäneleib\": \"sagespaneleib\",\n  \"saget\": \"saget\",\n  \"sagst\": \"sagst\",\n  \"sagt\": \"sagt\",\n  \"sägt\": \"sagt\",\n  \"sagte\": \"sagt\",\n  \"sagten\": \"sagt\",\n  \"sah\": \"sah\",\n  \"sähe\": \"sah\",\n  \"sahen\": \"sah\",\n  \"sähen\": \"sah\",\n  \"sahest\": \"sah\",\n  \"sahet\": \"sahet\",\n  \"sähet\": \"sahet\",\n  \"saint\": \"saint\",\n  \"saiten\": \"sait\",\n  \"saiteninstrument\": \"saiteninstrument\",\n  \"saiteninstrumente\": \"saiteninstrument\",\n  \"saitenspieler\": \"saitenspiel\",\n  \"sakra\": \"sakra\",\n  \"sakramente\": \"sakrament\",\n  \"sakramenten\": \"sakrament\",\n  \"sakramentsverwaltung\": \"sakramentsverwalt\",\n  \"säkular\": \"sakular\",\n  \"salami\": \"salami\",\n  \"salat\": \"salat\",\n  \"salatblatt\": \"salatblatt\",\n  \"salbte\": \"salbt\",\n  \"salbung\": \"salbung\",\n  \"salbungsvoll\": \"salbungsvoll\",\n  \"säle\": \"sal\",\n  \"sali\": \"sali\",\n  \"salis\": \"salis\",\n  \"salomo\": \"salomo\",\n  \"salomon\": \"salomon\",\n  \"salomos\": \"salomos\",\n  \"salutieren\": \"saluti\",\n  \"salutierend\": \"salutier\",\n  \"salvieren\": \"salvi\",\n  \"salz\": \"salz\",\n  \"salzbüchsl\": \"salzbuchsl\",\n  \"salzburg\": \"salzburg\",\n  \"salzburger\": \"salzburg\",\n  \"salze\": \"salz\",\n  \"salzgeist\": \"salzgeist\",\n  \"salzknappe\": \"salzknapp\",\n  \"salzknappen\": \"salzknapp\",\n  \"sam\": \"sam\",\n  \"sämann\": \"samann\",\n  \"samaria\": \"samaria\",\n  \"same\": \"sam\",\n  \"samen\": \"sam\",\n  \"samenkörner\": \"samenkorn\",\n  \"samenkraut\": \"samenkraut\",\n  \"samenreste\": \"samenr\",\n  \"samens\": \"sam\",\n  \"samm\": \"samm\",\n  \"sammelaktion\": \"sammelaktion\",\n  \"sammeln\": \"sammeln\",\n  \"sammelnd\": \"sammelnd\",\n  \"sammelt\": \"sammelt\",\n  \"sammelte\": \"sammelt\",\n  \"sammelten\": \"sammelt\",\n  \"sammet\": \"sammet\",\n  \"sammetfutter\": \"sammetfutt\",\n  \"sammetkleide\": \"sammetkleid\",\n  \"sammetrasen\": \"sammetras\",\n  \"sammetschärpe\": \"sammetscharp\",\n  \"sammetweste\": \"sammetw\",\n  \"sammle\": \"samml\",\n  \"sammlung\": \"sammlung\",\n  \"sammlungen\": \"sammlung\",\n  \"sample\": \"sampl\",\n  \"samstag\": \"samstag\",\n  \"samstagabend\": \"samstagab\",\n  \"samt\": \"samt\",\n  \"sämtlich\": \"samtlich\",\n  \"sämtliche\": \"samtlich\",\n  \"sämtlichen\": \"samtlich\",\n  \"sämtlicher\": \"samtlich\",\n  \"samtwämschen\": \"samtwamsch\",\n  \"samuel\": \"samuel\",\n  \"samuels\": \"samuel\",\n  \"sand\": \"sand\",\n  \"sande\": \"sand\",\n  \"sandes\": \"sand\",\n  \"sandige\": \"sandig\",\n  \"sandkörnern\": \"sandkorn\",\n  \"sandmann\": \"sandmann\",\n  \"sandmännchen\": \"sandmannch\",\n  \"sandmännchens\": \"sandmannch\",\n  \"sandmännchenschlitten\": \"sandmannchenschlitt\",\n  \"sandmanns\": \"sandmann\",\n  \"sandsiegel\": \"sandsiegel\",\n  \"sandstein\": \"sandstein\",\n  \"sandte\": \"sandt\",\n  \"sandten\": \"sandt\",\n  \"sanft\": \"sanft\",\n  \"sanfte\": \"sanft\",\n  \"sänfte\": \"sanft\",\n  \"sanftem\": \"sanft\",\n  \"sanften\": \"sanft\",\n  \"sänften\": \"sanft\",\n  \"sanfter\": \"sanft\",\n  \"sanftes\": \"sanft\",\n  \"sanftesten\": \"sanft\",\n  \"sanftleuchtenden\": \"sanftleucht\",\n  \"sanftmut\": \"sanftmut\",\n  \"sanftmütige\": \"sanftmut\",\n  \"sanftmütiger\": \"sanftmut\",\n  \"sanftsäuselndes\": \"sanftsauselnd\",\n  \"sang\": \"sang\",\n  \"sänge\": \"sang\",\n  \"sangen\": \"sang\",\n  \"sängen\": \"sang\",\n  \"sänger\": \"sang\",\n  \"sängerin\": \"sangerin\",\n  \"sangesbrüder\": \"sangesbrud\",\n  \"sank\": \"sank\",\n  \"sänke\": \"sank\",\n  \"sanken\": \"sank\",\n  \"sankt\": \"sankt\",\n  \"sanktionen\": \"sanktion\",\n  \"sanktionslos\": \"sanktionslos\",\n  \"sann\": \"sann\",\n  \"saphir\": \"saphir\",\n  \"saphirstein\": \"saphirstein\",\n  \"saphirsteines\": \"saphirstein\",\n  \"saphirsteins\": \"saphirstein\",\n  \"sapperlöter\": \"sapperlot\",\n  \"sappermenter\": \"sapperment\",\n  \"sarah\": \"sarah\",\n  \"sardes\": \"sard\",\n  \"sarg\": \"sarg\",\n  \"sarge\": \"sarg\",\n  \"särgen\": \"sarg\",\n  \"sarnen\": \"sarn\",\n  \"sass\": \"sass\",\n  \"saß\": \"sass\",\n  \"sässe\": \"sass\",\n  \"sassen\": \"sass\",\n  \"saßen\": \"sass\",\n  \"sässen\": \"sass\",\n  \"sät\": \"sat\",\n  \"satan\": \"satan\",\n  \"satanischen\": \"satan\",\n  \"satansunternehmen\": \"satansunternehm\",\n  \"säte\": \"sat\",\n  \"satellitenschüssel\": \"satellitenschussel\",\n  \"satirisch\": \"satir\",\n  \"satirische\": \"satir\",\n  \"satrap\": \"satrap\",\n  \"satt\": \"satt\",\n  \"sattelbandage\": \"sattelbandag\",\n  \"satteln\": \"satteln\",\n  \"sätteln\": \"satteln\",\n  \"sattgegessen\": \"sattgegess\",\n  \"sättigen\": \"sattig\",\n  \"sättigst\": \"sattig\",\n  \"sättigung\": \"sattig\",\n  \"sattsam\": \"sattsam\",\n  \"sattzuessen\": \"sattzuess\",\n  \"saturnalien\": \"saturnali\",\n  \"satz\": \"satz\",\n  \"satze\": \"satz\",\n  \"sätze\": \"satz\",\n  \"sätzen\": \"satz\",\n  \"satzes\": \"satz\",\n  \"satzung\": \"satzung\",\n  \"satzungen\": \"satzung\",\n  \"sau\": \"sau\",\n  \"sauber\": \"saub\",\n  \"saubere\": \"saub\",\n  \"sauberen\": \"saub\",\n  \"säuberlich\": \"saub\",\n  \"säubernde\": \"saubernd\",\n  \"sauberste\": \"sauberst\",\n  \"säuberte\": \"saubert\",\n  \"säubrer\": \"saubr\",\n  \"sauer\": \"sau\",\n  \"sauereien\": \"sauerei\",\n  \"sauerkraut\": \"sauerkraut\",\n  \"sauersüss\": \"sauersuss\",\n  \"säugamme\": \"saugamm\",\n  \"säugammen\": \"saugamm\",\n  \"säuge\": \"saug\",\n  \"saugen\": \"saug\",\n  \"säugen\": \"saug\",\n  \"säugende\": \"saugend\",\n  \"säugenden\": \"saugend\",\n  \"säugendes\": \"saugend\",\n  \"säugerin\": \"saugerin\",\n  \"saugeröhrchen\": \"saugerohrch\",\n  \"sauget\": \"sauget\",\n  \"säugling\": \"saugling\",\n  \"säuglinge\": \"saugling\",\n  \"säuglings\": \"saugling\",\n  \"säugt\": \"saugt\",\n  \"säugte\": \"saugt\",\n  \"säugung\": \"saugung\",\n  \"saul\": \"saul\",\n  \"säule\": \"saul\",\n  \"säulen\": \"saul\",\n  \"säulengängen\": \"saulengang\",\n  \"saum\": \"saum\",\n  \"saume\": \"saum\",\n  \"säume\": \"saum\",\n  \"säumend\": \"saumend\",\n  \"saumensch\": \"saumensch\",\n  \"säumet\": \"saumet\",\n  \"säumnis\": \"saumnis\",\n  \"säumte\": \"saumt\",\n  \"saus\": \"saus\",\n  \"sauschwab\": \"sauschwab\",\n  \"säuseln\": \"sauseln\",\n  \"säuselte\": \"sauselt\",\n  \"sausen\": \"saus\",\n  \"sausendem\": \"sausend\",\n  \"sauser\": \"saus\",\n  \"sausergelüste\": \"sausergelust\",\n  \"sausers\": \"saus\",\n  \"sauste\": \"saust\",\n  \"sausten\": \"saust\",\n  \"sautopf\": \"sautopf\",\n  \"savoyarde\": \"savoyard\",\n  \"savoyarden\": \"savoyard\",\n  \"savoyardenkinder\": \"savoyardenkind\",\n  \"savoyardenkindern\": \"savoyardenkind\",\n  \"savoyardin\": \"savoyardin\",\n  \"savoyen\": \"savoy\",\n  \"savoyens\": \"savoy\",\n  \"savoyische\": \"savoy\",\n  \"savoyischen\": \"savoy\",\n  \"schabernack\": \"schabernack\",\n  \"schäbig\": \"schabig\",\n  \"schäbige\": \"schabig\",\n  \"schabracken\": \"schabrack\",\n  \"schach\": \"schach\",\n  \"schachtel\": \"schachtel\",\n  \"schächtelchen\": \"schachtelch\",\n  \"schachteln\": \"schachteln\",\n  \"schad\": \"schad\",\n  \"schaddai\": \"schaddai\",\n  \"schaddais\": \"schaddais\",\n  \"schade\": \"schad\",\n  \"schädel\": \"schadel\",\n  \"schädelplatte\": \"schadelplatt\",\n  \"schaden\": \"schad\",\n  \"schäden\": \"schad\",\n  \"schadenfreude\": \"schadenfreud\",\n  \"schadenfrohem\": \"schadenfroh\",\n  \"schadet\": \"schadet\",\n  \"schadete\": \"schadet\",\n  \"schadhaft\": \"schadhaft\",\n  \"schädlich\": \"schadlich\",\n  \"schadlos\": \"schadlos\",\n  \"schaf\": \"schaf\",\n  \"schäfchen\": \"schafch\",\n  \"schäfchenhimmel\": \"schafchenhimmel\",\n  \"schäfchenstall\": \"schafchenstall\",\n  \"schafe\": \"schaf\",\n  \"schafen\": \"schaf\",\n  \"schäfer\": \"schaf\",\n  \"schäferhunde\": \"schaferhund\",\n  \"schafes\": \"schaf\",\n  \"schaff\": \"schaff\",\n  \"schaffen\": \"schaff\",\n  \"schaffl\": \"schaffl\",\n  \"schafft\": \"schafft\",\n  \"schaffte\": \"schafft\",\n  \"schafherde\": \"schafherd\",\n  \"schafhirt\": \"schafhirt\",\n  \"schafotte\": \"schafott\",\n  \"schafsköpf\": \"schafskopf\",\n  \"schafspelz\": \"schafspelz\",\n  \"schaft\": \"schaft\",\n  \"schakale\": \"schakal\",\n  \"schäkernd\": \"schakernd\",\n  \"schäkerte\": \"schakert\",\n  \"schal\": \"schal\",\n  \"schale\": \"schal\",\n  \"schalen\": \"schal\",\n  \"schälen\": \"schal\",\n  \"schalkhafter\": \"schalkhaft\",\n  \"schalkheit\": \"schalkheit\",\n  \"schalksblick\": \"schalksblick\",\n  \"schall\": \"schall\",\n  \"schallen\": \"schall\",\n  \"schallenden\": \"schallend\",\n  \"schallplatte\": \"schallplatt\",\n  \"schalt\": \"schalt\",\n  \"schalter\": \"schalt\",\n  \"schalterraum\": \"schalterraum\",\n  \"schalterschluß\": \"schalterschluss\",\n  \"schaltete\": \"schaltet\",\n  \"scham\": \"scham\",\n  \"schäme\": \"scham\",\n  \"schämen\": \"scham\",\n  \"schamhaft\": \"schamhaft\",\n  \"schamlosigkeit\": \"schamlos\",\n  \"schämst\": \"scham\",\n  \"schämt\": \"schamt\",\n  \"schämte\": \"schamt\",\n  \"schämten\": \"schamt\",\n  \"schand\": \"schand\",\n  \"schande\": \"schand\",\n  \"schändlich\": \"schandlich\",\n  \"schändliche\": \"schandlich\",\n  \"schar\": \"schar\",\n  \"scharen\": \"schar\",\n  \"scharf\": \"scharf\",\n  \"scharfe\": \"scharf\",\n  \"schärfe\": \"scharf\",\n  \"scharfen\": \"scharf\",\n  \"schärfen\": \"scharf\",\n  \"scharfer\": \"scharf\",\n  \"schärfer\": \"scharf\",\n  \"scharfes\": \"scharf\",\n  \"scharfsichtig\": \"scharfsicht\",\n  \"scharfsinn\": \"scharfsinn\",\n  \"scharfsinnig\": \"scharfsinn\",\n  \"scharfsinnige\": \"scharfsinn\",\n  \"scharfsinniger\": \"scharfsinn\",\n  \"scharfsinnigkeit\": \"scharfsinn\",\n  \"scharlach\": \"scharlach\",\n  \"scharlachuniform\": \"scharlachuniform\",\n  \"scharren\": \"scharr\",\n  \"scharrten\": \"scharrt\",\n  \"scharten\": \"schart\",\n  \"schatten\": \"schatt\",\n  \"schattenbilder\": \"schattenbild\",\n  \"schattendunklen\": \"schattendunkl\",\n  \"schattenreichen\": \"schattenreich\",\n  \"schattens\": \"schatt\",\n  \"schattenseite\": \"schattenseit\",\n  \"schattige\": \"schattig\",\n  \"schattigen\": \"schattig\",\n  \"schattiger\": \"schattig\",\n  \"schatz\": \"schatz\",\n  \"schätzbarste\": \"schatzbarst\",\n  \"schätzchen\": \"schatzch\",\n  \"schatze\": \"schatz\",\n  \"schätze\": \"schatz\",\n  \"schätzen\": \"schatz\",\n  \"schatzerl\": \"schatzerl\",\n  \"schatzgräber\": \"schatzgrab\",\n  \"schatzhause\": \"schatzhaus\",\n  \"schatzhäuser\": \"schatzhaus\",\n  \"schatzhäusern\": \"schatzhaus\",\n  \"schatzkästlein\": \"schatzkastlein\",\n  \"schätzt\": \"schatzt\",\n  \"schätzte\": \"schatzt\",\n  \"schätzten\": \"schatzt\",\n  \"schatzung\": \"schatzung\",\n  \"schau\": \"schau\",\n  \"schaubrote\": \"schaubrot\",\n  \"schaubroten\": \"schaubrot\",\n  \"schaubühne\": \"schaubuhn\",\n  \"schauder\": \"schaud\",\n  \"schauderhaft\": \"schauderhaft\",\n  \"schauderhaften\": \"schauderhaft\",\n  \"schaudern\": \"schaud\",\n  \"schaudert\": \"schaudert\",\n  \"schaue\": \"schau\",\n  \"schauen\": \"schau\",\n  \"schauer\": \"schau\",\n  \"schauergeschichten\": \"schauergeschicht\",\n  \"schauerlich\": \"schau\",\n  \"schauerlichen\": \"schau\",\n  \"schauerte\": \"schauert\",\n  \"schauet\": \"schauet\",\n  \"schaukelpferd\": \"schaukelpferd\",\n  \"schaukelpferdchen\": \"schaukelpferdch\",\n  \"schaukelte\": \"schaukelt\",\n  \"schaukelten\": \"schaukelt\",\n  \"schaum\": \"schaum\",\n  \"schäumend\": \"schaumend\",\n  \"schäumenden\": \"schaumend\",\n  \"schaumigen\": \"schaumig\",\n  \"schäumt\": \"schaumt\",\n  \"schauplatz\": \"schauplatz\",\n  \"schauplatze\": \"schauplatz\",\n  \"schaurig\": \"schaurig\",\n  \"schauspiel\": \"schauspiel\",\n  \"schauspiele\": \"schauspiel\",\n  \"schauspieler\": \"schauspiel\",\n  \"schauspielerin\": \"schauspielerin\",\n  \"schauspielern\": \"schauspiel\",\n  \"schauspielkunst\": \"schauspielkun\",\n  \"schauspielschule\": \"schauspielschul\",\n  \"schaust\": \"schaust\",\n  \"schaustellung\": \"schaustell\",\n  \"schaustellungen\": \"schaustell\",\n  \"schaut\": \"schaut\",\n  \"schautanz\": \"schautanz\",\n  \"schaute\": \"schaut\",\n  \"schauten\": \"schaut\",\n  \"scheba\": \"scheba\",\n  \"schebas\": \"schebas\",\n  \"scheelen\": \"scheel\",\n  \"scheht\": \"scheht\",\n  \"scheibe\": \"scheib\",\n  \"scheiben\": \"scheib\",\n  \"scheibenberaubten\": \"scheibenberaubt\",\n  \"scheibenstand\": \"scheibenstand\",\n  \"scheide\": \"scheid\",\n  \"scheidebrief\": \"scheidebrief\",\n  \"scheidekünstler\": \"scheidekunstl\",\n  \"scheiden\": \"scheid\",\n  \"scheidendes\": \"scheidend\",\n  \"scheidet\": \"scheidet\",\n  \"scheidewege\": \"scheideweg\",\n  \"scheidung\": \"scheidung\",\n  \"scheidungsritual\": \"scheidungsritual\",\n  \"schein\": \"schein\",\n  \"scheinbar\": \"scheinbar\",\n  \"scheinbare\": \"scheinbar\",\n  \"scheinbarem\": \"scheinbar\",\n  \"scheinbaren\": \"scheinbar\",\n  \"scheinbarer\": \"scheinbar\",\n  \"scheinbarere\": \"scheinbar\",\n  \"scheinbares\": \"scheinbar\",\n  \"scheinbarkeiten\": \"scheinbar\",\n  \"scheine\": \"schein\",\n  \"scheinen\": \"schein\",\n  \"scheinende\": \"scheinend\",\n  \"scheinendes\": \"scheinend\",\n  \"scheines\": \"schein\",\n  \"scheinet\": \"scheinet\",\n  \"scheinfürsten\": \"scheinfurst\",\n  \"scheingründe\": \"scheingrund\",\n  \"scheingutem\": \"scheingut\",\n  \"scheinheilig\": \"scheinheil\",\n  \"scheins\": \"schein\",\n  \"scheint\": \"scheint\",\n  \"scheintoten\": \"scheintot\",\n  \"scheinverkehr\": \"scheinverkehr\",\n  \"scheinwahrem\": \"scheinwahr\",\n  \"scheißkasten\": \"scheisskast\",\n  \"scheit\": \"scheit\",\n  \"scheitel\": \"scheitel\",\n  \"scheiterhaufen\": \"scheiterhauf\",\n  \"scheiterte\": \"scheitert\",\n  \"schelach\": \"schelach\",\n  \"schellenklang\": \"schellenklang\",\n  \"schellenspiel\": \"schellenspiel\",\n  \"schellte\": \"schellt\",\n  \"schelm\": \"schelm\",\n  \"schelme\": \"schelm\",\n  \"schelmenkind\": \"schelmenkind\",\n  \"schelmische\": \"schelmisch\",\n  \"scheloniten\": \"schelonit\",\n  \"schelten\": \"schelt\",\n  \"scheltende\": \"scheltend\",\n  \"scheltens\": \"schelt\",\n  \"schem\": \"schem\",\n  \"schema\": \"schema\",\n  \"schemata\": \"schemata\",\n  \"schemate\": \"schemat\",\n  \"schemel\": \"schemel\",\n  \"schemelchen\": \"schemelch\",\n  \"schemen\": \"schem\",\n  \"schenk\": \"schenk\",\n  \"schenke\": \"schenk\",\n  \"schenkeläufer\": \"schenkelauf\",\n  \"schenkeln\": \"schenkeln\",\n  \"schenken\": \"schenk\",\n  \"schenkst\": \"schenk\",\n  \"schenkstuben\": \"schenkstub\",\n  \"schenkte\": \"schenkt\",\n  \"schenkwirtes\": \"schenkwirt\",\n  \"schenkwirtschaft\": \"schenkwirtschaft\",\n  \"scherben\": \"scherb\",\n  \"schere\": \"scher\",\n  \"scherz\": \"scherz\",\n  \"scherze\": \"scherz\",\n  \"scherzen\": \"scherz\",\n  \"scherzend\": \"scherzend\",\n  \"scherzhafte\": \"scherzhaft\",\n  \"scherzhafterweise\": \"scherzhafterweis\",\n  \"scherzreden\": \"scherzred\",\n  \"scheth\": \"scheth\",\n  \"scheths\": \"scheth\",\n  \"scheu\": \"scheu\",\n  \"scheuchen\": \"scheuch\",\n  \"scheuchte\": \"scheucht\",\n  \"scheue\": \"scheu\",\n  \"scheuen\": \"scheu\",\n  \"scheuer\": \"scheu\",\n  \"scheuernden\": \"scheuernd\",\n  \"scheuert\": \"scheuert\",\n  \"scheuerte\": \"scheuert\",\n  \"scheuete\": \"scheuet\",\n  \"scheunchen\": \"scheunch\",\n  \"scheune\": \"scheun\",\n  \"scheunenböden\": \"scheunenbod\",\n  \"scheunentor\": \"scheunentor\",\n  \"scheusale\": \"scheusal\",\n  \"scheusslich\": \"scheusslich\",\n  \"scheusslichen\": \"scheusslich\",\n  \"scheußlichen\": \"scheusslich\",\n  \"scheut\": \"scheut\",\n  \"scheuten\": \"scheut\",\n  \"schichors\": \"schichor\",\n  \"schichten\": \"schicht\",\n  \"schick\": \"schick\",\n  \"schicken\": \"schick\",\n  \"schickende\": \"schickend\",\n  \"schicklich\": \"schicklich\",\n  \"schicklichen\": \"schicklich\",\n  \"schicklicher\": \"schicklich\",\n  \"schicksal\": \"schicksal\",\n  \"schicksalhaft\": \"schicksalhaft\",\n  \"schicksals\": \"schicksal\",\n  \"schicksalsrufe\": \"schicksalsruf\",\n  \"schicksalswendungen\": \"schicksalswend\",\n  \"schickt\": \"schickt\",\n  \"schickte\": \"schickt\",\n  \"schickten\": \"schickt\",\n  \"schiebend\": \"schiebend\",\n  \"schiebt\": \"schiebt\",\n  \"schiechen\": \"schiech\",\n  \"schied\": \"schied\",\n  \"schieden\": \"schied\",\n  \"schief\": \"schief\",\n  \"schiefe\": \"schief\",\n  \"schiefer\": \"schief\",\n  \"schiefertafeln\": \"schiefertafeln\",\n  \"schiefes\": \"schief\",\n  \"schieläugigen\": \"schielaug\",\n  \"schielen\": \"schiel\",\n  \"schielten\": \"schielt\",\n  \"schien\": \"schien\",\n  \"schiene\": \"schien\",\n  \"schienen\": \"schien\",\n  \"schier\": \"schier\",\n  \"schiess\": \"schiess\",\n  \"schiessbaumwolle\": \"schiessbaumwoll\",\n  \"schiessbaumwollpatrone\": \"schiessbaumwollpatron\",\n  \"schiessen\": \"schiess\",\n  \"schießen\": \"schiess\",\n  \"schiessend\": \"schiessend\",\n  \"schiessenden\": \"schiessend\",\n  \"schiessn\": \"schiessn\",\n  \"schiessprügel\": \"schiessprugel\",\n  \"schiesst\": \"schiesst\",\n  \"schiff\": \"schiff\",\n  \"schiffbaren\": \"schiffbar\",\n  \"schiffe\": \"schiff\",\n  \"schiffen\": \"schiff\",\n  \"schiffer\": \"schiff\",\n  \"schiffern\": \"schiff\",\n  \"schiffleute\": \"schiffleut\",\n  \"schiffshauptmann\": \"schiffshauptmann\",\n  \"schiffslände\": \"schiffsland\",\n  \"schiffsleuten\": \"schiffsleut\",\n  \"schild\": \"schild\",\n  \"schilde\": \"schild\",\n  \"schildern\": \"schild\",\n  \"schildert\": \"schildert\",\n  \"schilderten\": \"schildert\",\n  \"schilderung\": \"schilder\",\n  \"schildkröte\": \"schildkrot\",\n  \"schildkrötenbouillon\": \"schildkrotenbouillon\",\n  \"schildkrötschalen\": \"schildkrotschal\",\n  \"schildpattgewölbe\": \"schildpattgewolb\",\n  \"schildpattkämme\": \"schildpattkamm\",\n  \"schilf\": \"schilf\",\n  \"schilfkeulen\": \"schilfkeul\",\n  \"schilfmeer\": \"schilfme\",\n  \"schilfmeeres\": \"schilfme\",\n  \"schilfrohr\": \"schilfrohr\",\n  \"schilfrohrs\": \"schilfrohr\",\n  \"schilfs\": \"schilf\",\n  \"schilfstöckchen\": \"schilfstockch\",\n  \"schilfwiesen\": \"schilfwies\",\n  \"schillernden\": \"schillernd\",\n  \"schillers\": \"schill\",\n  \"schimeon\": \"schimeon\",\n  \"schimeons\": \"schimeon\",\n  \"schimmel\": \"schimmel\",\n  \"schimmer\": \"schimm\",\n  \"schimmern\": \"schimm\",\n  \"schimmernd\": \"schimmernd\",\n  \"schimmernde\": \"schimmernd\",\n  \"schimmernden\": \"schimmernd\",\n  \"schimmernder\": \"schimmernd\",\n  \"schimmert\": \"schimmert\",\n  \"schimmerte\": \"schimmert\",\n  \"schimmerten\": \"schimmert\",\n  \"schimpf\": \"schimpf\",\n  \"schimpfen\": \"schimpf\",\n  \"schimpfendes\": \"schimpfend\",\n  \"schimpflichen\": \"schimpflich\",\n  \"schimpfworten\": \"schimpfwort\",\n  \"schindanger\": \"schindang\",\n  \"schinde\": \"schind\",\n  \"schindeldach\": \"schindeldach\",\n  \"schinden\": \"schind\",\n  \"schinken\": \"schink\",\n  \"schiphra\": \"schiphra\",\n  \"schirm\": \"schirm\",\n  \"schirren\": \"schirr\",\n  \"schirrl\": \"schirrl\",\n  \"schla\": \"schla\",\n  \"schlacht\": \"schlacht\",\n  \"schlachte\": \"schlacht\",\n  \"schlachten\": \"schlacht\",\n  \"schlachtheeren\": \"schlachthe\",\n  \"schlachtopfer\": \"schlachtopf\",\n  \"schlachtopfern\": \"schlachtopf\",\n  \"schlachtung\": \"schlachtung\",\n  \"schlaf\": \"schlaf\",\n  \"schlafe\": \"schlaf\",\n  \"schläfe\": \"schlaf\",\n  \"schlafen\": \"schlaf\",\n  \"schläfen\": \"schlaf\",\n  \"schlafend\": \"schlafend\",\n  \"schlafende\": \"schlafend\",\n  \"schlafenden\": \"schlafend\",\n  \"schlafender\": \"schlafend\",\n  \"schlafes\": \"schlaf\",\n  \"schlaffen\": \"schlaff\",\n  \"schlafgefährten\": \"schlafgefahrt\",\n  \"schlafkammer\": \"schlafkamm\",\n  \"schlafkammern\": \"schlafkamm\",\n  \"schlafkappen\": \"schlafkapp\",\n  \"schlaflied\": \"schlaflied\",\n  \"schlaflose\": \"schlaflos\",\n  \"schlafloser\": \"schlaflos\",\n  \"schlaflust\": \"schlaflust\",\n  \"schläfrig\": \"schlafrig\",\n  \"schlafrock\": \"schlafrock\",\n  \"schlafrockzipfel\": \"schlafrockzipfel\",\n  \"schläfst\": \"schlaf\",\n  \"schläft\": \"schlaft\",\n  \"schlaftrunken\": \"schlaftrunk\",\n  \"schlafwandel\": \"schlafwandel\",\n  \"schlafzimmer\": \"schlafzimm\",\n  \"schlag\": \"schlag\",\n  \"schläg\": \"schlag\",\n  \"schlage\": \"schlag\",\n  \"schläge\": \"schlag\",\n  \"schlagen\": \"schlag\",\n  \"schlägen\": \"schlag\",\n  \"schlagend\": \"schlagend\",\n  \"schlager\": \"schlag\",\n  \"schlages\": \"schlag\",\n  \"schlaget\": \"schlaget\",\n  \"schlagfertig\": \"schlagfert\",\n  \"schlagn\": \"schlagn\",\n  \"schlagsahne\": \"schlagsahn\",\n  \"schlagsahnenkegel\": \"schlagsahnenkegel\",\n  \"schlagschatten\": \"schlagschatt\",\n  \"schlägst\": \"schlag\",\n  \"schlägt\": \"schlagt\",\n  \"schlang\": \"schlang\",\n  \"schlange\": \"schlang\",\n  \"schlängeln\": \"schlangeln\",\n  \"schlängelte\": \"schlangelt\",\n  \"schlangen\": \"schlang\",\n  \"schlangengifte\": \"schlangengift\",\n  \"schlangenstirn\": \"schlangenstirn\",\n  \"schlänglein\": \"schlanglein\",\n  \"schlank\": \"schlank\",\n  \"schlankaufgerichtet\": \"schlankaufgerichtet\",\n  \"schlanke\": \"schlank\",\n  \"schlankem\": \"schlank\",\n  \"schlanken\": \"schlank\",\n  \"schlanker\": \"schlank\",\n  \"schlankere\": \"schlank\",\n  \"schlankes\": \"schlank\",\n  \"schlankgewachsenes\": \"schlankgewachs\",\n  \"schlankheit\": \"schlankheit\",\n  \"schlappen\": \"schlapp\",\n  \"schlappschuhen\": \"schlappschuh\",\n  \"schlau\": \"schlau\",\n  \"schlauchboot\": \"schlauchboot\",\n  \"schlaucherl\": \"schlaucherl\",\n  \"schlaue\": \"schlau\",\n  \"schlauen\": \"schlau\",\n  \"schlauer\": \"schlau\",\n  \"schlaues\": \"schlau\",\n  \"schlauheit\": \"schlauheit\",\n  \"schlauheiten\": \"schlauheit\",\n  \"schlecht\": \"schlecht\",\n  \"schlechte\": \"schlecht\",\n  \"schlechtem\": \"schlecht\",\n  \"schlechten\": \"schlecht\",\n  \"schlechter\": \"schlecht\",\n  \"schlechterdings\": \"schlechterding\",\n  \"schlechteren\": \"schlecht\",\n  \"schlechteres\": \"schlecht\",\n  \"schlechtes\": \"schlecht\",\n  \"schlechteste\": \"schlecht\",\n  \"schlechtesten\": \"schlecht\",\n  \"schlechthin\": \"schlechthin\",\n  \"schlechtigkeit\": \"schlechtig\",\n  \"schlechtigkeitsmesser\": \"schlechtigkeitsmess\",\n  \"schlechtweg\": \"schlechtweg\",\n  \"schlecken\": \"schleck\",\n  \"schleckerfritze\": \"schleckerfritz\",\n  \"schlegel\": \"schlegel\",\n  \"schlegelschuss\": \"schlegelschuss\",\n  \"schleiche\": \"schleich\",\n  \"schleichen\": \"schleich\",\n  \"schleichenden\": \"schleichend\",\n  \"schleicher\": \"schleich\",\n  \"schleichst\": \"schleich\",\n  \"schleicht\": \"schleicht\",\n  \"schleier\": \"schleier\",\n  \"schleifen\": \"schleif\",\n  \"schleifte\": \"schleift\",\n  \"schleiften\": \"schleift\",\n  \"schlemmen\": \"schlemm\",\n  \"schlemmer\": \"schlemm\",\n  \"schlendernd\": \"schlendernd\",\n  \"schlenderte\": \"schlendert\",\n  \"schlenkerte\": \"schlenkert\",\n  \"schleppe\": \"schlepp\",\n  \"schleppen\": \"schlepp\",\n  \"schleppenden\": \"schleppend\",\n  \"schlepptau\": \"schlepptau\",\n  \"schleppte\": \"schleppt\",\n  \"schleppten\": \"schleppt\",\n  \"schlesier\": \"schlesi\",\n  \"schleswig\": \"schleswig\",\n  \"schleuder\": \"schleud\",\n  \"schleudern\": \"schleud\",\n  \"schleuderte\": \"schleudert\",\n  \"schleunig\": \"schleunig\",\n  \"schleunigst\": \"schleunig\",\n  \"schleuse\": \"schleus\",\n  \"schleusen\": \"schleus\",\n  \"schlich\": \"schlich\",\n  \"schlichen\": \"schlich\",\n  \"schlicht\": \"schlicht\",\n  \"schlichte\": \"schlicht\",\n  \"schlichten\": \"schlicht\",\n  \"schlichtesten\": \"schlicht\",\n  \"schlichtet\": \"schlichtet\",\n  \"schlickversteckens\": \"schlickversteck\",\n  \"schlief\": \"schlief\",\n  \"schliefen\": \"schlief\",\n  \"schliess\": \"schliess\",\n  \"schließ\": \"schliess\",\n  \"schliesse\": \"schliess\",\n  \"schliessen\": \"schliess\",\n  \"schließen\": \"schliess\",\n  \"schliessend\": \"schliessend\",\n  \"schliesslich\": \"schliesslich\",\n  \"schließlich\": \"schliesslich\",\n  \"schliesslichen\": \"schliesslich\",\n  \"schließlichen\": \"schliesslich\",\n  \"schliesst\": \"schliesst\",\n  \"schließt\": \"schliesst\",\n  \"schlimm\": \"schlimm\",\n  \"schlimme\": \"schlimm\",\n  \"schlimmen\": \"schlimm\",\n  \"schlimmer\": \"schlimm\",\n  \"schlimmere\": \"schlimm\",\n  \"schlimmeres\": \"schlimm\",\n  \"schlimmern\": \"schlimm\",\n  \"schlimmes\": \"schlimm\",\n  \"schlimmste\": \"schlimm\",\n  \"schlimmsten\": \"schlimm\",\n  \"schlinge\": \"schling\",\n  \"schlingen\": \"schling\",\n  \"schlingt\": \"schlingt\",\n  \"schlitten\": \"schlitt\",\n  \"schlittenbahn\": \"schlittenbahn\",\n  \"schlittenfahrt\": \"schlittenfahrt\",\n  \"schlittens\": \"schlitt\",\n  \"schlittenzierat\": \"schlittenzierat\",\n  \"schlittenzug\": \"schlittenzug\",\n  \"schlohweissseidenen\": \"schlohweissseid\",\n  \"schlohweißseidenen\": \"schlohweissseid\",\n  \"schloss\": \"schloss\",\n  \"schloß\": \"schloss\",\n  \"schlosse\": \"schloss\",\n  \"schlossen\": \"schloss\",\n  \"schlösser\": \"schloss\",\n  \"schlosses\": \"schloss\",\n  \"schlossgesellschaft\": \"schlossgesellschaft\",\n  \"schloßgesellschaft\": \"schlossgesellschaft\",\n  \"schlosshof\": \"schlosshof\",\n  \"schloßhof\": \"schlosshof\",\n  \"schlossstall\": \"schlossstall\",\n  \"schloßstall\": \"schlossstall\",\n  \"schlossstil\": \"schlossstil\",\n  \"schloßstil\": \"schlossstil\",\n  \"schlosstor\": \"schlosstor\",\n  \"schloßtor\": \"schlosstor\",\n  \"schlottrig\": \"schlottrig\",\n  \"schlottrige\": \"schlottrig\",\n  \"schlucht\": \"schlucht\",\n  \"schluchten\": \"schlucht\",\n  \"schluchzend\": \"schluchzend\",\n  \"schluchzte\": \"schluchzt\",\n  \"schluchzten\": \"schluchzt\",\n  \"schluck\": \"schluck\",\n  \"schluckend\": \"schluckend\",\n  \"schlücklein\": \"schlucklein\",\n  \"schluckte\": \"schluckt\",\n  \"schlug\": \"schlug\",\n  \"schlugen\": \"schlug\",\n  \"schlummerlosen\": \"schlummerlos\",\n  \"schlummertrunkenen\": \"schlummertrunk\",\n  \"schlund\": \"schlund\",\n  \"schlüpfen\": \"schlupf\",\n  \"schlüpferig\": \"schlupfer\",\n  \"schlüpft\": \"schlupft\",\n  \"schlüpfte\": \"schlupft\",\n  \"schlüpften\": \"schlupft\",\n  \"schlupfwinkel\": \"schlupfwinkel\",\n  \"schlupfwinkeln\": \"schlupfwinkeln\",\n  \"schlurfen\": \"schlurf\",\n  \"schlürft\": \"schlurft\",\n  \"schluss\": \"schluss\",\n  \"schluß\": \"schluss\",\n  \"schlussabrechnung\": \"schlussabrechn\",\n  \"schlußabrechnung\": \"schlussabrechn\",\n  \"schlusse\": \"schluss\",\n  \"schlüsse\": \"schluss\",\n  \"schlüssel\": \"schlussel\",\n  \"schlüsselblumen\": \"schlusselblum\",\n  \"schlüsselloch\": \"schlusselloch\",\n  \"schlüssen\": \"schluss\",\n  \"schlusses\": \"schluss\",\n  \"schlussfolgerungen\": \"schlussfolger\",\n  \"schlußfolgerungen\": \"schlussfolger\",\n  \"schlussform\": \"schlussform\",\n  \"schlußform\": \"schlussform\",\n  \"schlusshandlung\": \"schlusshandl\",\n  \"schlüssig\": \"schlussig\",\n  \"schlusspunkt\": \"schlusspunkt\",\n  \"schlußpunkt\": \"schlusspunkt\",\n  \"schlusspunkte\": \"schlusspunkt\",\n  \"schlußpunkte\": \"schlusspunkt\",\n  \"schlusssatze\": \"schlusssatz\",\n  \"schmach\": \"schmach\",\n  \"schmachten\": \"schmacht\",\n  \"schmachtend\": \"schmachtend\",\n  \"schmachtet\": \"schmachtet\",\n  \"schmachtete\": \"schmachtet\",\n  \"schmächtig\": \"schmachtig\",\n  \"schmächtige\": \"schmachtig\",\n  \"schmäher\": \"schmah\",\n  \"schmählich\": \"schmahlich\",\n  \"schmählichste\": \"schmahlich\",\n  \"schmal\": \"schmal\",\n  \"schmale\": \"schmal\",\n  \"schmalem\": \"schmal\",\n  \"schmalen\": \"schmal\",\n  \"schmaler\": \"schmal\",\n  \"schmäler\": \"schmal\",\n  \"schmales\": \"schmal\",\n  \"schmatzend\": \"schmatzend\",\n  \"schmatzte\": \"schmatzt\",\n  \"schmauchend\": \"schmauchend\",\n  \"schmaucht\": \"schmaucht\",\n  \"schmauchte\": \"schmaucht\",\n  \"schmeckt\": \"schmeckt\",\n  \"schmeckte\": \"schmeckt\",\n  \"schmeckten\": \"schmeckt\",\n  \"schmeichel\": \"schmeichel\",\n  \"schmeichelei\": \"schmeichelei\",\n  \"schmeichelhaft\": \"schmeichelhaft\",\n  \"schmeichelhafter\": \"schmeichelhaft\",\n  \"schmeicheln\": \"schmeicheln\",\n  \"schmeichelnder\": \"schmeichelnd\",\n  \"schmeichelt\": \"schmeichelt\",\n  \"schmeichelte\": \"schmeichelt\",\n  \"schmeichelten\": \"schmeichelt\",\n  \"schmeißt\": \"schmeisst\",\n  \"schmelzend\": \"schmelzend\",\n  \"schmelzende\": \"schmelzend\",\n  \"schmelzer\": \"schmelz\",\n  \"schmelzers\": \"schmelz\",\n  \"schmelzt\": \"schmelzt\",\n  \"schmer\": \"schmer\",\n  \"schmerz\": \"schmerz\",\n  \"schmerze\": \"schmerz\",\n  \"schmerzen\": \"schmerz\",\n  \"schmerzens\": \"schmerz\",\n  \"schmerzes\": \"schmerz\",\n  \"schmerzhaft\": \"schmerzhaft\",\n  \"schmerzhaften\": \"schmerzhaft\",\n  \"schmerzhafter\": \"schmerzhaft\",\n  \"schmerzhaftesten\": \"schmerzhaft\",\n  \"schmerzlich\": \"schmerzlich\",\n  \"schmerzlichen\": \"schmerzlich\",\n  \"schmerzlicher\": \"schmerzlich\",\n  \"schmerzlos\": \"schmerzlos\",\n  \"schmerzlose\": \"schmerzlos\",\n  \"schmerzt\": \"schmerzt\",\n  \"schmerzte\": \"schmerzt\",\n  \"schmerzten\": \"schmerzt\",\n  \"schmerzvollen\": \"schmerzvoll\",\n  \"schmetterlinge\": \"schmetterling\",\n  \"schmetternde\": \"schmetternd\",\n  \"schmetternden\": \"schmetternd\",\n  \"schmetterten\": \"schmettert\",\n  \"schmid\": \"schmid\",\n  \"schmied\": \"schmied\",\n  \"schmiedeberg\": \"schmiedeberg\",\n  \"schmiegsam\": \"schmiegsam\",\n  \"schmiegt\": \"schmiegt\",\n  \"schmiegte\": \"schmiegt\",\n  \"schmiegten\": \"schmiegt\",\n  \"schmierseife\": \"schmierseif\",\n  \"schmierte\": \"schmiert\",\n  \"schmirgel\": \"schmirgel\",\n  \"schmolle\": \"schmoll\",\n  \"schmollen\": \"schmoll\",\n  \"schmollend\": \"schmollend\",\n  \"schmollende\": \"schmollend\",\n  \"schmollenden\": \"schmollend\",\n  \"schmollendes\": \"schmollend\",\n  \"schmollens\": \"schmoll\",\n  \"schmoller\": \"schmoll\",\n  \"schmollerei\": \"schmollerei\",\n  \"schmollkunst\": \"schmollkun\",\n  \"schmollte\": \"schmollt\",\n  \"schmollwesen\": \"schmollwes\",\n  \"schmolz\": \"schmolz\",\n  \"schmuck\": \"schmuck\",\n  \"schmucke\": \"schmuck\",\n  \"schmucken\": \"schmuck\",\n  \"schmücken\": \"schmuck\",\n  \"schmucker\": \"schmuck\",\n  \"schmuckes\": \"schmuck\",\n  \"schmuckkämme\": \"schmuckkamm\",\n  \"schmucks\": \"schmuck\",\n  \"schmückte\": \"schmuckt\",\n  \"schmunzeln\": \"schmunzeln\",\n  \"schmunzelnd\": \"schmunzelnd\",\n  \"schmunzelte\": \"schmunzelt\",\n  \"schmutz\": \"schmutz\",\n  \"schmutzig\": \"schmutzig\",\n  \"schmutzige\": \"schmutzig\",\n  \"schmutzigem\": \"schmutzig\",\n  \"schmutzigen\": \"schmutzig\",\n  \"schmutziges\": \"schmutzig\",\n  \"schnäbel\": \"schnabel\",\n  \"schnäbelchen\": \"schnabelch\",\n  \"schnabulieren\": \"schnabuli\",\n  \"schnabulierte\": \"schnabuliert\",\n  \"schnallen\": \"schnall\",\n  \"schnallte\": \"schnallt\",\n  \"schnalzenden\": \"schnalzend\",\n  \"schnalzte\": \"schnalzt\",\n  \"schnappen\": \"schnapp\",\n  \"schnappende\": \"schnappend\",\n  \"schnappte\": \"schnappt\",\n  \"schnappten\": \"schnappt\",\n  \"schnaps\": \"schnaps\",\n  \"schnäpschen\": \"schnapsch\",\n  \"schnäpse\": \"schnaps\",\n  \"schnarrte\": \"schnarrt\",\n  \"schnaubte\": \"schnaubt\",\n  \"schnaubten\": \"schnaubt\",\n  \"schnaufen\": \"schnauf\",\n  \"schnaufend\": \"schnaufend\",\n  \"schnaufender\": \"schnaufend\",\n  \"schnaufte\": \"schnauft\",\n  \"schnauze\": \"schnauz\",\n  \"schnäuzer\": \"schnauz\",\n  \"schnauzte\": \"schnauzt\",\n  \"schnecken\": \"schneck\",\n  \"schnee\": \"schnee\",\n  \"schneebällchen\": \"schneeballch\",\n  \"schneeberge\": \"schneeberg\",\n  \"schneeflocken\": \"schneeflock\",\n  \"schneegeschichten\": \"schneegeschicht\",\n  \"schneegestöber\": \"schneegestob\",\n  \"schneegestöbers\": \"schneegestob\",\n  \"schneeglanz\": \"schneeglanz\",\n  \"schneegrube\": \"schneegrub\",\n  \"schneegrubenwand\": \"schneegrubenwand\",\n  \"schneehaarige\": \"schneehaar\",\n  \"schneeige\": \"schneeig\",\n  \"schneeiges\": \"schneeig\",\n  \"schneeliedem\": \"schneelied\",\n  \"schneelieder\": \"schneelied\",\n  \"schneemeer\": \"schneeme\",\n  \"schneesendungen\": \"schneesend\",\n  \"schneeweiss\": \"schneeweiss\",\n  \"schneeweisse\": \"schneeweiss\",\n  \"schneeweissem\": \"schneeweiss\",\n  \"schneeweissen\": \"schneeweiss\",\n  \"schneeweißen\": \"schneeweiss\",\n  \"schneeweisser\": \"schneeweiss\",\n  \"schneeweisses\": \"schneeweiss\",\n  \"schneide\": \"schneid\",\n  \"schneiden\": \"schneid\",\n  \"schneidend\": \"schneidend\",\n  \"schneidenden\": \"schneidend\",\n  \"schneider\": \"schneid\",\n  \"schneiderberufe\": \"schneiderberuf\",\n  \"schneiderblütchen\": \"schneiderblutch\",\n  \"schneiderfestzug\": \"schneiderfestzug\",\n  \"schneidergesellen\": \"schneidergesell\",\n  \"schneidergruppen\": \"schneidergrupp\",\n  \"schneiderlein\": \"schneiderlein\",\n  \"schneidermässig\": \"schneidermass\",\n  \"schneidermeister\": \"schneidermeist\",\n  \"schneidermeisters\": \"schneidermeist\",\n  \"schneiders\": \"schneid\",\n  \"schneidersleute\": \"schneidersleut\",\n  \"schneiderwelt\": \"schneiderwelt\",\n  \"schneiderwesen\": \"schneiderwes\",\n  \"schneidest\": \"schneid\",\n  \"schneidet\": \"schneidet\",\n  \"schneidigste\": \"schneidig\",\n  \"schneien\": \"schneien\",\n  \"schneit\": \"schneit\",\n  \"schneite\": \"schneit\",\n  \"schnell\": \"schnell\",\n  \"schnelläufer\": \"schnellauf\",\n  \"schnelle\": \"schnell\",\n  \"schnellen\": \"schnell\",\n  \"schneller\": \"schnell\",\n  \"schnelles\": \"schnell\",\n  \"schnelligkeit\": \"schnellig\",\n  \"schnellsten\": \"schnell\",\n  \"schnellte\": \"schnellt\",\n  \"schnepfe\": \"schnepf\",\n  \"schnepfen\": \"schnepf\",\n  \"schnepfengarn\": \"schnepfengarn\",\n  \"schnepflein\": \"schnepflein\",\n  \"schnepper\": \"schnepp\",\n  \"schneppers\": \"schnepp\",\n  \"schneuz\": \"schneuz\",\n  \"schneuzen\": \"schneuz\",\n  \"schnippchen\": \"schnippch\",\n  \"schnippel\": \"schnippel\",\n  \"schnippeln\": \"schnippeln\",\n  \"schnippisch\": \"schnippisch\",\n  \"schnitt\": \"schnitt\",\n  \"schnitthaaren\": \"schnitthaar\",\n  \"schnitzarbeit\": \"schnitzarbeit\",\n  \"schnitzbild\": \"schnitzbild\",\n  \"schnitzbildern\": \"schnitzbild\",\n  \"schnitzelten\": \"schnitzelt\",\n  \"schnitzereien\": \"schnitzerei\",\n  \"schnitzwerk\": \"schnitzwerk\",\n  \"schnöde\": \"schnod\",\n  \"schnöden\": \"schnod\",\n  \"schnöder\": \"schnod\",\n  \"schnödes\": \"schnod\",\n  \"schnörkel\": \"schnorkel\",\n  \"schnörkels\": \"schnorkel\",\n  \"schnüffelnd\": \"schnuffelnd\",\n  \"schnüffelte\": \"schnuffelt\",\n  \"schnupfen\": \"schnupf\",\n  \"schnupfennase\": \"schnupfennas\",\n  \"schnupft\": \"schnupft\",\n  \"schnupftuch\": \"schnupftuch\",\n  \"schnuppengestöber\": \"schnuppengestob\",\n  \"schnuppern\": \"schnupp\",\n  \"schnupperte\": \"schnuppert\",\n  \"schnur\": \"schnur\",\n  \"schnürchen\": \"schnurch\",\n  \"schnüre\": \"schnur\",\n  \"schnüren\": \"schnur\",\n  \"schnürlein\": \"schnurlein\",\n  \"schnurr\": \"schnurr\",\n  \"schnurrbart\": \"schnurrbart\",\n  \"schnurrbärtchen\": \"schnurrbartch\",\n  \"schnürst\": \"schnurst\",\n  \"schnürte\": \"schnurt\",\n  \"schnürten\": \"schnurt\",\n  \"schob\": \"schob\",\n  \"schoben\": \"schob\",\n  \"schoham\": \"schoham\",\n  \"schokolade\": \"schokolad\",\n  \"schokoladenplätzchen\": \"schokoladenplatzch\",\n  \"schokoladenplätzchenkies\": \"schokoladenplatzchenki\",\n  \"schokoladenwege\": \"schokoladenweg\",\n  \"scholl\": \"scholl\",\n  \"schollen\": \"scholl\",\n  \"schon\": \"schon\",\n  \"schön\": \"schon\",\n  \"schöne\": \"schon\",\n  \"schönem\": \"schon\",\n  \"schonen\": \"schon\",\n  \"schönen\": \"schon\",\n  \"schonende\": \"schonend\",\n  \"schöner\": \"schon\",\n  \"schönere\": \"schon\",\n  \"schöneres\": \"schon\",\n  \"schönern\": \"schon\",\n  \"schöners\": \"schon\",\n  \"schönes\": \"schon\",\n  \"schöngebautes\": \"schongebaut\",\n  \"schöngelegenes\": \"schongeleg\",\n  \"schönheit\": \"schonheit\",\n  \"schonn\": \"schonn\",\n  \"schöns\": \"schon\",\n  \"schönst\": \"schon\",\n  \"schönste\": \"schon\",\n  \"schönsten\": \"schon\",\n  \"schönstes\": \"schon\",\n  \"schonung\": \"schonung\",\n  \"schonungslos\": \"schonungslos\",\n  \"school\": \"school\",\n  \"schopenhauer\": \"schopenhau\",\n  \"schopenhauers\": \"schopenhau\",\n  \"schöpfe\": \"schopf\",\n  \"schöpfen\": \"schopf\",\n  \"schöpfer\": \"schopf\",\n  \"schöpft\": \"schopft\",\n  \"schöpfte\": \"schopft\",\n  \"schöpften\": \"schopft\",\n  \"schöpfung\": \"schopfung\",\n  \"schöpfungstage\": \"schopfungstag\",\n  \"schöppchen\": \"schoppch\",\n  \"schoppen\": \"schopp\",\n  \"schöpsenfleisch\": \"schopsenfleisch\",\n  \"schorf\": \"schorf\",\n  \"schornstein\": \"schornstein\",\n  \"schornsteinfeger\": \"schornsteinfeg\",\n  \"schoss\": \"schoss\",\n  \"schoß\": \"schoss\",\n  \"schosse\": \"schoss\",\n  \"schoße\": \"schoss\",\n  \"schossen\": \"schoss\",\n  \"schoten\": \"schot\",\n  \"schottischen\": \"schottisch\",\n  \"schrabenhauser\": \"schrabenhaus\",\n  \"schräg\": \"schrag\",\n  \"schräger\": \"schrag\",\n  \"schrak\": \"schrak\",\n  \"schrammelquartett\": \"schrammelquartett\",\n  \"schrammen\": \"schramm\",\n  \"schrank\": \"schrank\",\n  \"schränke\": \"schrank\",\n  \"schranken\": \"schrank\",\n  \"schrankes\": \"schrank\",\n  \"schrauben\": \"schraub\",\n  \"schraubte\": \"schraubt\",\n  \"schreck\": \"schreck\",\n  \"schreckbare\": \"schreckbar\",\n  \"schreckbarste\": \"schreckbarst\",\n  \"schrecken\": \"schreck\",\n  \"schreckens\": \"schreck\",\n  \"schreckensherrschaft\": \"schreckensherrschaft\",\n  \"schrecket\": \"schrecket\",\n  \"schrecklich\": \"schrecklich\",\n  \"schreckliche\": \"schrecklich\",\n  \"schrecklichen\": \"schrecklich\",\n  \"schrecklicher\": \"schrecklich\",\n  \"schreckmittel\": \"schreckmittel\",\n  \"schrei\": \"schrei\",\n  \"schreibart\": \"schreibart\",\n  \"schreibe\": \"schreib\",\n  \"schreiben\": \"schreib\",\n  \"schreiber\": \"schreib\",\n  \"schreibereien\": \"schreiberei\",\n  \"schreibmaschinenfräulein\": \"schreibmaschinenfraulein\",\n  \"schreibpapier\": \"schreibpapi\",\n  \"schreibt\": \"schreibt\",\n  \"schreibtafel\": \"schreibtafel\",\n  \"schreibtisch\": \"schreibtisch\",\n  \"schreibtischs\": \"schreibtisch\",\n  \"schreibzeug\": \"schreibzeug\",\n  \"schreien\": \"schreien\",\n  \"schreiend\": \"schreiend\",\n  \"schreiende\": \"schreiend\",\n  \"schreit\": \"schreit\",\n  \"schreiten\": \"schreit\",\n  \"schreitendes\": \"schreitend\",\n  \"schreitet\": \"schreitet\",\n  \"schrie\": \"schrie\",\n  \"schrieb\": \"schrieb\",\n  \"schrieben\": \"schrieb\",\n  \"schrieen\": \"schrieen\",\n  \"schrift\": \"schrift\",\n  \"schriften\": \"schrift\",\n  \"schriftgelehrten\": \"schriftgelehrt\",\n  \"schriftgelehrter\": \"schriftgelehrt\",\n  \"schriftlich\": \"schriftlich\",\n  \"schriftlicher\": \"schriftlich\",\n  \"schriftsteller\": \"schriftstell\",\n  \"schriftstellern\": \"schriftstell\",\n  \"schriftstücke\": \"schriftstuck\",\n  \"schrill\": \"schrill\",\n  \"schrille\": \"schrill\",\n  \"schrillem\": \"schrill\",\n  \"schrillend\": \"schrillend\",\n  \"schriller\": \"schrill\",\n  \"schritt\": \"schritt\",\n  \"schritte\": \"schritt\",\n  \"schritten\": \"schritt\",\n  \"schrittes\": \"schritt\",\n  \"schrofen\": \"schrof\",\n  \"schroffe\": \"schroff\",\n  \"schroffes\": \"schroff\",\n  \"schröpfköpfe\": \"schropfkopf\",\n  \"schrörschnauzaschenbecher\": \"schrorschnauzaschenbech\",\n  \"schrörschnauzaschenbechern\": \"schrorschnauzaschenbech\",\n  \"schrotkörner\": \"schrotkorn\",\n  \"schrott\": \"schrott\",\n  \"schubert\": \"schubert\",\n  \"schuberts\": \"schubert\",\n  \"schublade\": \"schublad\",\n  \"schubladen\": \"schublad\",\n  \"schüchtern\": \"schucht\",\n  \"schüchterne\": \"schuchtern\",\n  \"schüchternen\": \"schuchtern\",\n  \"schüchternheit\": \"schuchtern\",\n  \"schuchzend\": \"schuchzend\",\n  \"schuf\": \"schuf\",\n  \"schuft\": \"schuft\",\n  \"schufte\": \"schuft\",\n  \"schuh\": \"schuh\",\n  \"schuhe\": \"schuh\",\n  \"schuhen\": \"schuh\",\n  \"schuhläden\": \"schuhlad\",\n  \"schuhmacher\": \"schuhmach\",\n  \"schuhnägeln\": \"schuhnageln\",\n  \"schuhsohlen\": \"schuhsohl\",\n  \"schul\": \"schul\",\n  \"schulbücher\": \"schulbuch\",\n  \"schuld\": \"schuld\",\n  \"schulden\": \"schuld\",\n  \"schuldenschreiber\": \"schuldenschreib\",\n  \"schuldenverkehrs\": \"schuldenverkehr\",\n  \"schuldenwesen\": \"schuldenwes\",\n  \"schuldig\": \"schuldig\",\n  \"schuldige\": \"schuldig\",\n  \"schuldigen\": \"schuldig\",\n  \"schuldigkeit\": \"schuldig\",\n  \"schuldlos\": \"schuldlos\",\n  \"schuldlosen\": \"schuldlos\",\n  \"schuldnern\": \"schuldn\",\n  \"schuldopfers\": \"schuldopf\",\n  \"schuldscheinen\": \"schuldschein\",\n  \"schuldverhältnis\": \"schuldverhaltnis\",\n  \"schuldverschreibungen\": \"schuldverschreib\",\n  \"schule\": \"schul\",\n  \"schulen\": \"schul\",\n  \"schüler\": \"schul\",\n  \"schulgehilfe\": \"schulgehilf\",\n  \"schulgehilfen\": \"schulgehilf\",\n  \"schulgerecht\": \"schulgerecht\",\n  \"schulgerechter\": \"schulgerecht\",\n  \"schulkind\": \"schulkind\",\n  \"schulknaben\": \"schulknab\",\n  \"schullehrer\": \"schullehr\",\n  \"schulmässig\": \"schulmass\",\n  \"schulmäßig\": \"schulmass\",\n  \"schulmeister\": \"schulmeist\",\n  \"schulpflichtigen\": \"schulpflicht\",\n  \"schulstaub\": \"schulstaub\",\n  \"schulten\": \"schult\",\n  \"schulter\": \"schult\",\n  \"schultern\": \"schult\",\n  \"schulterstücken\": \"schulterstuck\",\n  \"schultheisse\": \"schultheiss\",\n  \"schuppen\": \"schupp\",\n  \"schur\": \"schur\",\n  \"schurke\": \"schurk\",\n  \"schürze\": \"schurz\",\n  \"schürzen\": \"schurz\",\n  \"schürzenband\": \"schurzenband\",\n  \"schürzte\": \"schurzt\",\n  \"schuss\": \"schuss\",\n  \"schusse\": \"schuss\",\n  \"schüsse\": \"schuss\",\n  \"schüssel\": \"schussel\",\n  \"schüsseln\": \"schusseln\",\n  \"schusses\": \"schuss\",\n  \"schusslinie\": \"schusslini\",\n  \"schussplatz\": \"schussplatz\",\n  \"schuster\": \"schust\",\n  \"schusterten\": \"schustert\",\n  \"schutte\": \"schutt\",\n  \"schütteln\": \"schutteln\",\n  \"schüttelt\": \"schuttelt\",\n  \"schüttelte\": \"schuttelt\",\n  \"schüttelten\": \"schuttelt\",\n  \"schütteren\": \"schutt\",\n  \"schüttet\": \"schuttet\",\n  \"schüttete\": \"schuttet\",\n  \"schütteten\": \"schuttet\",\n  \"schutz\": \"schutz\",\n  \"schutzdienst\": \"schutzdien\",\n  \"schutze\": \"schutz\",\n  \"schütze\": \"schutz\",\n  \"schützen\": \"schutz\",\n  \"schützend\": \"schutzend\",\n  \"schützende\": \"schutzend\",\n  \"schützendem\": \"schutzend\",\n  \"schützengraben\": \"schutzengrab\",\n  \"schützenwaffe\": \"schutzenwaff\",\n  \"schützer\": \"schutz\",\n  \"schutzschürze\": \"schutzschurz\",\n  \"schützt\": \"schutzt\",\n  \"schützte\": \"schutzt\",\n  \"schützten\": \"schutzt\",\n  \"schutzumschlag\": \"schutzumschlag\",\n  \"schwaar\": \"schwaar\",\n  \"schwabbelgegend\": \"schwabbelgeg\",\n  \"schwäbchen\": \"schwabch\",\n  \"schwäbchens\": \"schwabch\",\n  \"schwabe\": \"schwab\",\n  \"schwaben\": \"schwab\",\n  \"schwäbische\": \"schwabisch\",\n  \"schwäbischen\": \"schwabisch\",\n  \"schwäblein\": \"schwablein\",\n  \"schwach\": \"schwach\",\n  \"schwache\": \"schwach\",\n  \"schwäche\": \"schwach\",\n  \"schwachen\": \"schwach\",\n  \"schwacher\": \"schwach\",\n  \"schwächer\": \"schwach\",\n  \"schwächere\": \"schwach\",\n  \"schwaches\": \"schwach\",\n  \"schwachheit\": \"schwachheit\",\n  \"schwachheiten\": \"schwachheit\",\n  \"schwachkopf\": \"schwachkopf\",\n  \"schwachköpfe\": \"schwachkopf\",\n  \"schwächlichsten\": \"schwachlich\",\n  \"schwachnervigen\": \"schwachnerv\",\n  \"schwachsinnig\": \"schwachsinn\",\n  \"schwächt\": \"schwacht\",\n  \"schwächte\": \"schwacht\",\n  \"schwaden\": \"schwad\",\n  \"schwäher\": \"schwah\",\n  \"schwähers\": \"schwah\",\n  \"schwalbennest\": \"schwalbenn\",\n  \"schwamm\": \"schwamm\",\n  \"schwammen\": \"schwamm\",\n  \"schwane\": \"schwan\",\n  \"schwang\": \"schwang\",\n  \"schwange\": \"schwang\",\n  \"schwangeren\": \"schwang\",\n  \"schwänke\": \"schwank\",\n  \"schwanken\": \"schwank\",\n  \"schwankend\": \"schwankend\",\n  \"schwankende\": \"schwankend\",\n  \"schwankenden\": \"schwankend\",\n  \"schwankes\": \"schwank\",\n  \"schwankhafte\": \"schwankhaft\",\n  \"schwankt\": \"schwankt\",\n  \"schwankte\": \"schwankt\",\n  \"schwankten\": \"schwankt\",\n  \"schwanz\": \"schwanz\",\n  \"schwänzchen\": \"schwanzch\",\n  \"schwanze\": \"schwanz\",\n  \"schwänze\": \"schwanz\",\n  \"schwänzelnd\": \"schwanzelnd\",\n  \"schwänzelte\": \"schwanzelt\",\n  \"schwänzen\": \"schwanz\",\n  \"schwanzes\": \"schwanz\",\n  \"schwanzflosse\": \"schwanzfloss\",\n  \"schwänzlein\": \"schwanzlein\",\n  \"schwapp\": \"schwapp\",\n  \"schwärme\": \"schwarm\",\n  \"schwärmen\": \"schwarm\",\n  \"schwärmende\": \"schwarmend\",\n  \"schwärmenden\": \"schwarmend\",\n  \"schwärmer\": \"schwarm\",\n  \"schwärmerei\": \"schwarmerei\",\n  \"schwärmerisches\": \"schwarmer\",\n  \"schwärmern\": \"schwarm\",\n  \"schwärmte\": \"schwarmt\",\n  \"schwärmten\": \"schwarmt\",\n  \"schwartenhälse\": \"schwartenhals\",\n  \"schwarz\": \"schwarz\",\n  \"schwarzbrot\": \"schwarzbrot\",\n  \"schwarze\": \"schwarz\",\n  \"schwärze\": \"schwarz\",\n  \"schwarzem\": \"schwarz\",\n  \"schwarzen\": \"schwarz\",\n  \"schwärzen\": \"schwarz\",\n  \"schwarzer\": \"schwarz\",\n  \"schwarzes\": \"schwarz\",\n  \"schwarzgekleideter\": \"schwarzgekleidet\",\n  \"schwarzgelbes\": \"schwarzgelb\",\n  \"schwärzliche\": \"schwarzlich\",\n  \"schwärzlichen\": \"schwarzlich\",\n  \"schwarzmeerküste\": \"schwarzmeerkust\",\n  \"schwarzseidenes\": \"schwarzseid\",\n  \"schwärzt\": \"schwarzt\",\n  \"schwärzte\": \"schwarzt\",\n  \"schwarzwollene\": \"schwarzwoll\",\n  \"schwatze\": \"schwatz\",\n  \"schwatzen\": \"schwatz\",\n  \"schwatzend\": \"schwatzend\",\n  \"schwätzer\": \"schwatz\",\n  \"schwätzerei\": \"schwatzerei\",\n  \"schwatzt\": \"schwatzt\",\n  \"schwatzte\": \"schwatzt\",\n  \"schwatzten\": \"schwatzt\",\n  \"schwebe\": \"schweb\",\n  \"schweben\": \"schweb\",\n  \"schwebend\": \"schwebend\",\n  \"schwebt\": \"schwebt\",\n  \"schwebte\": \"schwebt\",\n  \"schwebten\": \"schwebt\",\n  \"schweden\": \"schwed\",\n  \"schwedenkönigs\": \"schwedenkon\",\n  \"schwefel\": \"schwefel\",\n  \"schwefelduft\": \"schwefelduft\",\n  \"schwefelgelb\": \"schwefelgelb\",\n  \"schwefelgelbe\": \"schwefelgelb\",\n  \"schwefelgelbem\": \"schwefelgelb\",\n  \"schwefelgestank\": \"schwefelgestank\",\n  \"schwefelholz\": \"schwefelholz\",\n  \"schwefelhölzl\": \"schwefelholzl\",\n  \"schwefelig\": \"schwefel\",\n  \"schwefels\": \"schwefel\",\n  \"schwefelstoff\": \"schwefelstoff\",\n  \"schweifen\": \"schweif\",\n  \"schweifte\": \"schweift\",\n  \"schweig\": \"schweig\",\n  \"schweige\": \"schweig\",\n  \"schweigen\": \"schweig\",\n  \"schweigend\": \"schweigend\",\n  \"schweigende\": \"schweigend\",\n  \"schweigenden\": \"schweigend\",\n  \"schweigsam\": \"schweigsam\",\n  \"schweinchen\": \"schweinch\",\n  \"schweine\": \"schwein\",\n  \"schweinerei\": \"schweinerei\",\n  \"schweinestall\": \"schweinestall\",\n  \"schweinigel\": \"schweinigel\",\n  \"schweinsborste\": \"schweinsborst\",\n  \"schweiss\": \"schweiss\",\n  \"schweiß\": \"schweiss\",\n  \"schweisse\": \"schweiss\",\n  \"schweiße\": \"schweiss\",\n  \"schweisses\": \"schweiss\",\n  \"schweißes\": \"schweiss\",\n  \"schweissfleckigen\": \"schweissfleck\",\n  \"schweisshund\": \"schweisshund\",\n  \"schweisstriefend\": \"schweisstrief\",\n  \"schweißtröpfchen\": \"schweisstropfch\",\n  \"schweißtropfen\": \"schweisstropf\",\n  \"schweiz\": \"schweiz\",\n  \"schweizer\": \"schweiz\",\n  \"schweizerdegen\": \"schweizerdeg\",\n  \"schweizerische\": \"schweizer\",\n  \"schweizerischen\": \"schweizer\",\n  \"schweizerlande\": \"schweizerland\",\n  \"schweizerorten\": \"schweizerort\",\n  \"schweizerstadtkirche\": \"schweizerstadtkirch\",\n  \"schweizin\": \"schweizin\",\n  \"schwelle\": \"schwell\",\n  \"schwellt\": \"schwellt\",\n  \"schwellte\": \"schwellt\",\n  \"schwendling\": \"schwendling\",\n  \"schwenken\": \"schwenk\",\n  \"schwenkend\": \"schwenkend\",\n  \"schwenkte\": \"schwenkt\",\n  \"schwenkten\": \"schwenkt\",\n  \"schwer\": \"schwer\",\n  \"schwere\": \"schwer\",\n  \"schwerem\": \"schwer\",\n  \"schweren\": \"schwer\",\n  \"schwerenöter\": \"schwerenot\",\n  \"schwerer\": \"schwer\",\n  \"schweres\": \"schwer\",\n  \"schwerfällig\": \"schwerfall\",\n  \"schwerfälliges\": \"schwerfall\",\n  \"schwerfälligkeit\": \"schwerfall\",\n  \"schwergeschmiedeten\": \"schwergeschmiedet\",\n  \"schwerhörig\": \"schwerhor\",\n  \"schwerlich\": \"schwerlich\",\n  \"schwermut\": \"schwermut\",\n  \"schwermütig\": \"schwermut\",\n  \"schwermütigen\": \"schwermut\",\n  \"schwermütiges\": \"schwermut\",\n  \"schwert\": \"schwert\",\n  \"schwerte\": \"schwert\",\n  \"schwerter\": \"schwert\",\n  \"schwertern\": \"schwert\",\n  \"schwertes\": \"schwert\",\n  \"schwertfeger\": \"schwertfeg\",\n  \"schwerts\": \"schwert\",\n  \"schwerwiegende\": \"schwerwieg\",\n  \"schwester\": \"schwest\",\n  \"schwesterchen\": \"schwesterch\",\n  \"schwestern\": \"schwest\",\n  \"schwieg\": \"schwieg\",\n  \"schwiegen\": \"schwieg\",\n  \"schwiegermutter\": \"schwiegermutt\",\n  \"schwiegersohn\": \"schwiegersohn\",\n  \"schwiegersöhne\": \"schwiegersohn\",\n  \"schwiegertochter\": \"schwiegertocht\",\n  \"schwiegertöchter\": \"schwiegertocht\",\n  \"schwieligen\": \"schwielig\",\n  \"schwierig\": \"schwierig\",\n  \"schwierige\": \"schwierig\",\n  \"schwierigen\": \"schwierig\",\n  \"schwieriger\": \"schwierig\",\n  \"schwierigkeit\": \"schwierig\",\n  \"schwierigkeiten\": \"schwierig\",\n  \"schwierigsten\": \"schwierig\",\n  \"schwimmen\": \"schwimm\",\n  \"schwimmende\": \"schwimmend\",\n  \"schwimmenden\": \"schwimmend\",\n  \"schwindel\": \"schwindel\",\n  \"schwindelanfall\": \"schwindelanfall\",\n  \"schwindelanfällen\": \"schwindelanfall\",\n  \"schwinden\": \"schwind\",\n  \"schwindet\": \"schwindet\",\n  \"schwindler\": \"schwindl\",\n  \"schwindlig\": \"schwindlig\",\n  \"schwingen\": \"schwing\",\n  \"schwingend\": \"schwingend\",\n  \"schwippte\": \"schwippt\",\n  \"schwirrte\": \"schwirrt\",\n  \"schwitzen\": \"schwitz\",\n  \"schwitzte\": \"schwitzt\",\n  \"schwitzten\": \"schwitzt\",\n  \"schwoll\": \"schwoll\",\n  \"schwor\": \"schwor\",\n  \"schwör\": \"schwor\",\n  \"schwöre\": \"schwor\",\n  \"schwören\": \"schwor\",\n  \"schwört\": \"schwort\",\n  \"schwül\": \"schwul\",\n  \"schwüler\": \"schwul\",\n  \"schwules\": \"schwul\",\n  \"schwüles\": \"schwul\",\n  \"schwung\": \"schwung\",\n  \"schwunge\": \"schwung\",\n  \"schwüngen\": \"schwung\",\n  \"schwupp\": \"schwupp\",\n  \"schwur\": \"schwur\",\n  \"schwuren\": \"schwur\",\n  \"scil\": \"scil\",\n  \"scotus\": \"scotus\",\n  \"se\": \"se\",\n  \"sebas\": \"sebas\",\n  \"sebastian\": \"sebastian\",\n  \"sebulon\": \"sebulon\",\n  \"sechs\": \"sech\",\n  \"sechsfache\": \"sechsfach\",\n  \"sechsmal\": \"sechsmal\",\n  \"sechste\": \"sech\",\n  \"sechsten\": \"sech\",\n  \"sechster\": \"sech\",\n  \"sechstes\": \"sech\",\n  \"sechsunddreissig\": \"sechsunddreiss\",\n  \"sechsundsiebenzig\": \"sechsundsiebenz\",\n  \"sechszehn\": \"sechszehn\",\n  \"sechzehn\": \"sechzehn\",\n  \"sechzehnjährigen\": \"sechzehnjahr\",\n  \"sechzehnten\": \"sechzehnt\",\n  \"sechzig\": \"sechzig\",\n  \"sechzigste\": \"sechzig\",\n  \"second\": \"second\",\n  \"sed\": \"sed\",\n  \"see\": \"see\",\n  \"seegrund\": \"seegrund\",\n  \"seehäfen\": \"seehaf\",\n  \"seejungfern\": \"seejungf\",\n  \"seekrank\": \"seekrank\",\n  \"seel\": \"seel\",\n  \"seele\": \"seel\",\n  \"seeleitner\": \"seeleitn\",\n  \"seeleitnerhauses\": \"seeleitnerhaus\",\n  \"seeleitnersbuben\": \"seeleitnersbub\",\n  \"seeleitnersleut\": \"seeleitnersleut\",\n  \"seeleitnersleute\": \"seeleitnersleut\",\n  \"seelen\": \"seel\",\n  \"seelenallein\": \"seelenallein\",\n  \"seelenerhebung\": \"seelenerheb\",\n  \"seelengrösse\": \"seelengross\",\n  \"seelenkämpfe\": \"seelenkampf\",\n  \"seelenkräfte\": \"seelenkraft\",\n  \"seelenkunde\": \"seelenkund\",\n  \"seelenleiden\": \"seelenleid\",\n  \"seelenruhe\": \"seelenruh\",\n  \"seelenschwäche\": \"seelenschwach\",\n  \"seelenstärke\": \"seelenstark\",\n  \"seelenvergnügt\": \"seelenvergnugt\",\n  \"seelenvoll\": \"seelenvoll\",\n  \"seelenvolle\": \"seelenvoll\",\n  \"seeleute\": \"seeleut\",\n  \"seelon\": \"seelon\",\n  \"seelsorge\": \"seelsorg\",\n  \"seen\": \"seen\",\n  \"sees\": \"sees\",\n  \"seespiegel\": \"seespiegel\",\n  \"seetal\": \"seetal\",\n  \"seetang\": \"seetang\",\n  \"seetiere\": \"seeti\",\n  \"seeufer\": \"seeuf\",\n  \"seeungeheuer\": \"seeungeheu\",\n  \"segel\": \"segel\",\n  \"segelboot\": \"segelboot\",\n  \"segelte\": \"segelt\",\n  \"segen\": \"seg\",\n  \"segens\": \"seg\",\n  \"segensreiche\": \"segensreich\",\n  \"segensspruch\": \"segensspruch\",\n  \"segn\": \"segn\",\n  \"segne\": \"segn\",\n  \"segnen\": \"segn\",\n  \"segnender\": \"segnend\",\n  \"segnet\": \"segnet\",\n  \"segnete\": \"segnet\",\n  \"segnungen\": \"segnung\",\n  \"seh\": \"seh\",\n  \"sehe\": \"seh\",\n  \"sehen\": \"seh\",\n  \"sehend\": \"sehend\",\n  \"sehende\": \"sehend\",\n  \"sehenden\": \"sehend\",\n  \"sehendie\": \"sehendi\",\n  \"sehenswürdigkeiten\": \"sehenswurd\",\n  \"sehest\": \"seh\",\n  \"sehet\": \"sehet\",\n  \"sehn\": \"sehn\",\n  \"sehnen\": \"sehn\",\n  \"sehnippel\": \"sehnippel\",\n  \"sehnlich\": \"sehnlich\",\n  \"sehnsucht\": \"sehnsucht\",\n  \"sehnsuchten\": \"sehnsucht\",\n  \"sehnsüchtig\": \"sehnsucht\",\n  \"sehnsüchtige\": \"sehnsucht\",\n  \"sehnsüchtiger\": \"sehnsucht\",\n  \"sehnsüchtiges\": \"sehnsucht\",\n  \"sehnte\": \"sehnt\",\n  \"sehnten\": \"sehnt\",\n  \"sehr\": \"sehr\",\n  \"seht\": \"seht\",\n  \"sehvermögen\": \"sehvermog\",\n  \"sei\": \"sei\",\n  \"seicht\": \"seicht\",\n  \"seichte\": \"seicht\",\n  \"seichten\": \"seicht\",\n  \"seichter\": \"seicht\",\n  \"seichtigkeit\": \"seichtig\",\n  \"seid\": \"seid\",\n  \"seide\": \"seid\",\n  \"seiden\": \"seid\",\n  \"seidenartig\": \"seidenart\",\n  \"seidendamast\": \"seidendamast\",\n  \"seidene\": \"seid\",\n  \"seidenen\": \"seid\",\n  \"seidenes\": \"seid\",\n  \"seidenfäden\": \"seidenfad\",\n  \"seidenfarben\": \"seidenfarb\",\n  \"seidengewand\": \"seidengewand\",\n  \"seidenkleid\": \"seidenkleid\",\n  \"seidens\": \"seid\",\n  \"seidenzeug\": \"seidenzeug\",\n  \"seider\": \"seid\",\n  \"seien\": \"seien\",\n  \"seiest\": \"seiest\",\n  \"seife\": \"seif\",\n  \"seifenblasen\": \"seifenblas\",\n  \"seifengalerie\": \"seifengaleri\",\n  \"seifenschaum\": \"seifenschaum\",\n  \"seifensieder\": \"seifensied\",\n  \"seifenstücken\": \"seifenstuck\",\n  \"seigneur\": \"seigneur\",\n  \"seile\": \"seil\",\n  \"sein\": \"sein\",\n  \"seine\": \"sein\",\n  \"seinem\": \"sein\",\n  \"seinen\": \"sein\",\n  \"seiner\": \"sein\",\n  \"seinerseits\": \"seinerseit\",\n  \"seinerzeit\": \"seinerzeit\",\n  \"seines\": \"sein\",\n  \"seinesgleichen\": \"seinesgleich\",\n  \"seinetwegen\": \"seinetweg\",\n  \"seinige\": \"seinig\",\n  \"seinigen\": \"seinig\",\n  \"seins\": \"sein\",\n  \"seir\": \"seir\",\n  \"seist\": \"seist\",\n  \"seit\": \"seit\",\n  \"seitdem\": \"seitd\",\n  \"seite\": \"seit\",\n  \"seiten\": \"seit\",\n  \"seitenblick\": \"seitenblick\",\n  \"seiteneingang\": \"seiteneingang\",\n  \"seitengang\": \"seitengang\",\n  \"seitengasse\": \"seitengass\",\n  \"seitenplätzchen\": \"seitenplatzch\",\n  \"seitenschiff\": \"seitenschiff\",\n  \"seitenschiffe\": \"seitenschiff\",\n  \"seitenstrassen\": \"seitenstrass\",\n  \"seitenstück\": \"seitenstuck\",\n  \"seitental\": \"seitental\",\n  \"seitentälern\": \"seitental\",\n  \"seitenwegen\": \"seitenweg\",\n  \"seither\": \"seith\",\n  \"seitlich\": \"seitlich\",\n  \"seitwärts\": \"seitwart\",\n  \"sek\": \"sek\",\n  \"sekelbewahrer\": \"sekelbewahr\",\n  \"sekretariat\": \"sekretariat\",\n  \"sekretärin\": \"sekretarin\",\n  \"sekten\": \"sekt\",\n  \"sektierern\": \"sekti\",\n  \"sekunde\": \"sekund\",\n  \"sekunden\": \"sekund\",\n  \"sekundenlange\": \"sekundenlang\",\n  \"sekundenzeiger\": \"sekundenzeig\",\n  \"sel\": \"sel\",\n  \"selbe\": \"selb\",\n  \"selbem\": \"selb\",\n  \"selben\": \"selb\",\n  \"selber\": \"selb\",\n  \"selbige\": \"selbig\",\n  \"selbigen\": \"selbig\",\n  \"selbiger\": \"selbig\",\n  \"selbiges\": \"selbig\",\n  \"selbigsmal\": \"selbigsmal\",\n  \"selbst\": \"selb\",\n  \"selbständig\": \"selbstand\",\n  \"selbständige\": \"selbstand\",\n  \"selbständigen\": \"selbstand\",\n  \"selbständigkeit\": \"selbstand\",\n  \"selbstanklagen\": \"selbstanklag\",\n  \"selbstbeherrschung\": \"selbstbeherrsch\",\n  \"selbstberedung\": \"selbstbered\",\n  \"selbstberedungen\": \"selbstbered\",\n  \"selbstbewussten\": \"selbstbewusst\",\n  \"selbstbewusstsein\": \"selbstbewusstsein\",\n  \"selbstentäusserung\": \"selbstentausser\",\n  \"selbsterkenntnis\": \"selbsterkenntnis\",\n  \"selbsterniedrigung\": \"selbsterniedr\",\n  \"selbstgefälligkeit\": \"selbstgefall\",\n  \"selbstgemacht\": \"selbstgemacht\",\n  \"selbstgenugsamkeit\": \"selbstgenugsam\",\n  \"selbstgerechtigkeit\": \"selbstgerecht\",\n  \"selbstgeschaffenem\": \"selbstgeschaff\",\n  \"selbstgewählten\": \"selbstgewahlt\",\n  \"selbstgezogen\": \"selbstgezog\",\n  \"selbstherrlichkeit\": \"selbstherr\",\n  \"selbstigen\": \"selbstig\",\n  \"selbstliebe\": \"selbstlieb\",\n  \"selbstmord\": \"selbstmord\",\n  \"selbstprüfung\": \"selbstpruf\",\n  \"selbstregierung\": \"selbstregier\",\n  \"selbstschätzung\": \"selbstschatz\",\n  \"selbstsucht\": \"selbstsucht\",\n  \"selbstsüchtige\": \"selbstsucht\",\n  \"selbsttätige\": \"selbsttat\",\n  \"selbsttätigen\": \"selbsttat\",\n  \"selbstverantwortung\": \"selbstverantwort\",\n  \"selbstverdammung\": \"selbstverdamm\",\n  \"selbstvergessen\": \"selbstvergess\",\n  \"selbstvergessenheit\": \"selbstvergess\",\n  \"selbstvergnügten\": \"selbstvergnugt\",\n  \"selbstverherrlichung\": \"selbstverherrlich\",\n  \"selbstverständlich\": \"selbstverstand\",\n  \"selbstverständlichen\": \"selbstverstand\",\n  \"selbstvertrauen\": \"selbstvertrau\",\n  \"selbstverwalteten\": \"selbstverwaltet\",\n  \"selbstzufrieden\": \"selbstzufried\",\n  \"selbstzufriedenheit\": \"selbstzufried\",\n  \"seldwyl\": \"seldwyl\",\n  \"seldwyla\": \"seldwyla\",\n  \"seldwyler\": \"seldwyl\",\n  \"seldwylerinnen\": \"seldwylerinn\",\n  \"seldwylern\": \"seldwyl\",\n  \"seldwylers\": \"seldwyl\",\n  \"seldwylertagen\": \"seldwylertag\",\n  \"selig\": \"selig\",\n  \"selige\": \"selig\",\n  \"seligem\": \"selig\",\n  \"seligen\": \"selig\",\n  \"seliges\": \"selig\",\n  \"seligkeit\": \"selig\",\n  \"seligkeiten\": \"selig\",\n  \"seligmachende\": \"seligmach\",\n  \"seligmachenden\": \"seligmach\",\n  \"seligmachung\": \"seligmach\",\n  \"seligwerden\": \"seligwerd\",\n  \"selk\": \"selk\",\n  \"selm\": \"selm\",\n  \"selten\": \"selt\",\n  \"seltene\": \"selt\",\n  \"seltenen\": \"selt\",\n  \"seltener\": \"selt\",\n  \"seltenheit\": \"selt\",\n  \"seltensten\": \"selten\",\n  \"seltsam\": \"seltsam\",\n  \"seltsame\": \"seltsam\",\n  \"seltsamem\": \"seltsam\",\n  \"seltsamen\": \"seltsam\",\n  \"seltsamer\": \"seltsam\",\n  \"seltsamerweise\": \"seltsamerweis\",\n  \"seltsames\": \"seltsam\",\n  \"seltsamkeit\": \"seltsam\",\n  \"seltsamlich\": \"seltsam\",\n  \"sem\": \"sem\",\n  \"semen\": \"sem\",\n  \"semester\": \"sem\",\n  \"semmelbröseln\": \"semmelbroseln\",\n  \"sende\": \"send\",\n  \"sendeminute\": \"sendeminut\",\n  \"senden\": \"send\",\n  \"sender\": \"send\",\n  \"sendest\": \"send\",\n  \"sendet\": \"sendet\",\n  \"sendlinge\": \"sendling\",\n  \"sendung\": \"sendung\",\n  \"sendungen\": \"sendung\",\n  \"senf\": \"senf\",\n  \"senfkorn\": \"senfkorn\",\n  \"senke\": \"senk\",\n  \"senken\": \"senk\",\n  \"senkend\": \"senkend\",\n  \"senket\": \"senket\",\n  \"senkrecht\": \"senkrecht\",\n  \"senkt\": \"senkt\",\n  \"senkte\": \"senkt\",\n  \"senkten\": \"senkt\",\n  \"senkung\": \"senkung\",\n  \"sennerin\": \"sennerin\",\n  \"sennhütte\": \"sennhutt\",\n  \"sensatio\": \"sensatio\",\n  \"sense\": \"sens\",\n  \"sentimentale\": \"sentimental\",\n  \"september\": \"septemb\",\n  \"septembergegend\": \"septembergeg\",\n  \"septembermorgen\": \"septembermorg\",\n  \"sequentium\": \"sequentium\",\n  \"serach\": \"serach\",\n  \"serie\": \"seri\",\n  \"serpentum\": \"serpentum\",\n  \"service\": \"servic\",\n  \"servieren\": \"servi\",\n  \"serviert\": \"serviert\",\n  \"servierter\": \"serviert\",\n  \"serviette\": \"serviett\",\n  \"servietten\": \"serviett\",\n  \"sessel\": \"sessel\",\n  \"sesselchen\": \"sesselch\",\n  \"sesselkleber\": \"sesselkleb\",\n  \"sessellehne\": \"sessellehn\",\n  \"sesshaft\": \"sesshaft\",\n  \"sesshaften\": \"sesshaft\",\n  \"settember\": \"settemb\",\n  \"setz\": \"setz\",\n  \"setze\": \"setz\",\n  \"setzen\": \"setz\",\n  \"setzet\": \"setzet\",\n  \"setzt\": \"setzt\",\n  \"setzte\": \"setzt\",\n  \"setzten\": \"setzt\",\n  \"seu\": \"seu\",\n  \"seuchengefahr\": \"seuchengefahr\",\n  \"seufzen\": \"seufz\",\n  \"seufzend\": \"seufzend\",\n  \"seufzens\": \"seufz\",\n  \"seufzer\": \"seufz\",\n  \"seufzern\": \"seufz\",\n  \"seufzt\": \"seufzt\",\n  \"seufzte\": \"seufzt\",\n  \"seufzten\": \"seufzt\",\n  \"sexologie\": \"sexologi\",\n  \"sexuelle\": \"sexuell\",\n  \"shakespeare\": \"shakespear\",\n  \"shoa\": \"shoa\",\n  \"shylocks\": \"shylock\",\n  \"si\": \"si\",\n  \"sialiquid\": \"sialiquid\",\n  \"sich\": \"sich\",\n  \"sichbearbeiten\": \"sichbearbeit\",\n  \"sicheln\": \"sicheln\",\n  \"sicher\": \"sich\",\n  \"sichere\": \"sich\",\n  \"sicheren\": \"sich\",\n  \"sicherer\": \"sich\",\n  \"sicheres\": \"sich\",\n  \"sichergehenden\": \"sichergeh\",\n  \"sicherheit\": \"sich\",\n  \"sicherheitsbeamten\": \"sicherheitsbeamt\",\n  \"sicherheitsbehörden\": \"sicherheitsbehord\",\n  \"sicherheitshalber\": \"sicherheitshalb\",\n  \"sicherheitskontrolle\": \"sicherheitskontroll\",\n  \"sicherheitskräfte\": \"sicherheitskraft\",\n  \"sicherheitskräften\": \"sicherheitskraft\",\n  \"sicherheitsleute\": \"sicherheitsleut\",\n  \"sicherheitspolizei\": \"sicherheitspolizei\",\n  \"sicherheitsregeln\": \"sicherheitsregeln\",\n  \"sicherheitsstation\": \"sicherheitsstation\",\n  \"sicherlich\": \"sich\",\n  \"sichern\": \"sich\",\n  \"sicherste\": \"sicherst\",\n  \"sichersten\": \"sicherst\",\n  \"sicherte\": \"sichert\",\n  \"sicherung\": \"sicher\",\n  \"sichniederwerfen\": \"sichniederwerf\",\n  \"sichri\": \"sichri\",\n  \"sichs\": \"sich\",\n  \"sicht\": \"sicht\",\n  \"sichtbar\": \"sichtbar\",\n  \"sichtbare\": \"sichtbar\",\n  \"sichtbaren\": \"sichtbar\",\n  \"sichtende\": \"sichtend\",\n  \"sichtlich\": \"sichtlich\",\n  \"sichtlichen\": \"sichtlich\",\n  \"sichtlicher\": \"sichtlich\",\n  \"sichtweite\": \"sichtweit\",\n  \"sickert\": \"sickert\",\n  \"sicut\": \"sicut\",\n  \"sie\": \"sie\",\n  \"sieben\": \"sieb\",\n  \"siebenfach\": \"siebenfach\",\n  \"siebenfältig\": \"siebenfalt\",\n  \"siebenhundert\": \"siebenhundert\",\n  \"siebenköpfigen\": \"siebenkopf\",\n  \"siebenmal\": \"siebenmal\",\n  \"siebensächelchen\": \"siebensachelch\",\n  \"siebensachen\": \"siebensach\",\n  \"siebente\": \"siebent\",\n  \"siebenten\": \"siebent\",\n  \"siebenter\": \"siebent\",\n  \"siebentes\": \"siebent\",\n  \"siebenundachtzig\": \"siebenundachtz\",\n  \"siebenundsiebzig\": \"siebenundsiebz\",\n  \"siebenundwanzig\": \"siebenundwanz\",\n  \"siebenundzwanzig\": \"siebenundzwanz\",\n  \"siebenundzwanzigmal\": \"siebenundzwanzigmal\",\n  \"siebenundzwanzigmalige\": \"siebenundzwanzigmal\",\n  \"siebenzahl\": \"siebenzahl\",\n  \"siebenzig\": \"siebenz\",\n  \"siebenzigmal\": \"siebenzigmal\",\n  \"siebsten\": \"sieb\",\n  \"siebte\": \"siebt\",\n  \"siebzehn\": \"siebzehn\",\n  \"siebzehnten\": \"siebzehnt\",\n  \"siebzig\": \"siebzig\",\n  \"siebziger\": \"siebzig\",\n  \"siebzigmal\": \"siebzigmal\",\n  \"siech\": \"siech\",\n  \"siede\": \"sied\",\n  \"siedeln\": \"siedeln\",\n  \"siedende\": \"siedend\",\n  \"siedendheiss\": \"siedendheiss\",\n  \"sieg\": \"sieg\",\n  \"siege\": \"sieg\",\n  \"siegel\": \"siegel\",\n  \"siegellack\": \"siegellack\",\n  \"siegeln\": \"siegeln\",\n  \"siegelring\": \"siegelring\",\n  \"siegen\": \"sieg\",\n  \"siegende\": \"siegend\",\n  \"sieger\": \"sieg\",\n  \"sieges\": \"sieg\",\n  \"sieghafte\": \"sieghaft\",\n  \"sieghaften\": \"sieghaft\",\n  \"siegte\": \"siegt\",\n  \"sieh\": \"sieh\",\n  \"siehe\": \"sieh\",\n  \"siehst\": \"sieh\",\n  \"sieht\": \"sieht\",\n  \"siena\": \"siena\",\n  \"sige\": \"sig\",\n  \"signal\": \"signal\",\n  \"silbe\": \"silb\",\n  \"silber\": \"silb\",\n  \"silberbechern\": \"silberbech\",\n  \"silberborten\": \"silberbort\",\n  \"silberbschlagene\": \"silberbschlag\",\n  \"silberbügel\": \"silberbugel\",\n  \"silbergewölk\": \"silbergewolk\",\n  \"silberglöckchen\": \"silberglockch\",\n  \"silbergrauen\": \"silbergrau\",\n  \"silberhaarige\": \"silberhaar\",\n  \"silberhelle\": \"silberhell\",\n  \"silberkleidern\": \"silberkleid\",\n  \"silberlicht\": \"silberlicht\",\n  \"silbermesser\": \"silbermess\",\n  \"silberne\": \"silbern\",\n  \"silbernem\": \"silbern\",\n  \"silbernen\": \"silbern\",\n  \"silberner\": \"silbern\",\n  \"silbernes\": \"silbern\",\n  \"silberreinen\": \"silberrein\",\n  \"silbers\": \"silb\",\n  \"silbersand\": \"silbersand\",\n  \"silberschleiern\": \"silberschlei\",\n  \"silberschüssel\": \"silberschussel\",\n  \"silberseidigsten\": \"silberseid\",\n  \"silberstimmchen\": \"silberstimmch\",\n  \"silberwolle\": \"silberwoll\",\n  \"silbrige\": \"silbrig\",\n  \"siloam\": \"siloam\",\n  \"simei\": \"simei\",\n  \"similitudo\": \"similitudo\",\n  \"simmsen\": \"simms\",\n  \"simon\": \"simon\",\n  \"simpel\": \"simpel\",\n  \"simple\": \"simpl\",\n  \"simsen\": \"sims\",\n  \"simson\": \"simson\",\n  \"simus\": \"simus\",\n  \"sinai\": \"sinai\",\n  \"sind\": \"sind\",\n  \"sine\": \"sin\",\n  \"sing\": \"sing\",\n  \"singbuch\": \"singbuch\",\n  \"singe\": \"sing\",\n  \"singen\": \"sing\",\n  \"singend\": \"singend\",\n  \"singende\": \"singend\",\n  \"singenden\": \"singend\",\n  \"singender\": \"singend\",\n  \"singerei\": \"singerei\",\n  \"singet\": \"singet\",\n  \"singst\": \"sing\",\n  \"singt\": \"singt\",\n  \"sinken\": \"sink\",\n  \"sinkende\": \"sinkend\",\n  \"sinkendem\": \"sinkend\",\n  \"sinkenden\": \"sinkend\",\n  \"sinkens\": \"sink\",\n  \"sinkt\": \"sinkt\",\n  \"sinn\": \"sinn\",\n  \"sinnbild\": \"sinnbild\",\n  \"sinnbilder\": \"sinnbild\",\n  \"sinnbildern\": \"sinnbild\",\n  \"sinne\": \"sinn\",\n  \"sinnen\": \"sinn\",\n  \"sinnend\": \"sinnend\",\n  \"sinnenwelt\": \"sinnenwelt\",\n  \"sinnenwesens\": \"sinnenwes\",\n  \"sinnes\": \"sinn\",\n  \"sinnesart\": \"sinnesart\",\n  \"sinnesarten\": \"sinnesart\",\n  \"sinnestäuschungen\": \"sinnestausch\",\n  \"sinnesvorstellungen\": \"sinnesvorstell\",\n  \"sinneswahrnehmung\": \"sinneswahrnehm\",\n  \"sinnet\": \"sinnet\",\n  \"sinngebung\": \"sinngeb\",\n  \"sinniert\": \"sinniert\",\n  \"sinnig\": \"sinnig\",\n  \"sinnige\": \"sinnig\",\n  \"sinnlich\": \"sinnlich\",\n  \"sinnlichbedingten\": \"sinnlichbedingt\",\n  \"sinnliche\": \"sinnlich\",\n  \"sinnlichem\": \"sinnlich\",\n  \"sinnlichen\": \"sinnlich\",\n  \"sinnlicher\": \"sinnlich\",\n  \"sinnliches\": \"sinnlich\",\n  \"sinnlichkeit\": \"sinnlich\",\n  \"sinnlos\": \"sinnlos\",\n  \"sinnlose\": \"sinnlos\",\n  \"sinnlosem\": \"sinnlos\",\n  \"sinnloser\": \"sinnlos\",\n  \"sinnloses\": \"sinnlos\",\n  \"sinnlosigkeit\": \"sinnlos\",\n  \"sinnorganen\": \"sinnorgan\",\n  \"sinnorganes\": \"sinnorgan\",\n  \"sinnreich\": \"sinnreich\",\n  \"sinnreiche\": \"sinnreich\",\n  \"sinnreichen\": \"sinnreich\",\n  \"sinns\": \"sinn\",\n  \"sinnstiftung\": \"sinnstift\",\n  \"sinnt\": \"sinnt\",\n  \"sinnverwirrter\": \"sinnverwirrt\",\n  \"sinnvoll\": \"sinnvoll\",\n  \"sinnvolle\": \"sinnvoll\",\n  \"sinnvollere\": \"sinnvoll\",\n  \"sinnwidrigen\": \"sinnwidr\",\n  \"sinnzusammenhang\": \"sinnzusammenhang\",\n  \"sirnak\": \"sirnak\",\n  \"sirrr\": \"sirrr\",\n  \"sirrrrrrr\": \"sirrrrrrr\",\n  \"sithri\": \"sithri\",\n  \"sitte\": \"sitt\",\n  \"sitten\": \"sitt\",\n  \"sittengesetz\": \"sittengesetz\",\n  \"sittengesetze\": \"sittengesetz\",\n  \"sittengesetzes\": \"sittengesetz\",\n  \"sittenlehre\": \"sittenlehr\",\n  \"sittig\": \"sittig\",\n  \"sittlich\": \"sittlich\",\n  \"sittliche\": \"sittlich\",\n  \"sittlichen\": \"sittlich\",\n  \"sittlicher\": \"sittlich\",\n  \"sittlichguten\": \"sittlichgut\",\n  \"sittlichkeit\": \"sittlich\",\n  \"sittsam\": \"sittsam\",\n  \"sittsamkeit\": \"sittsam\",\n  \"situation\": \"situation\",\n  \"situationen\": \"situation\",\n  \"sitz\": \"sitz\",\n  \"sitze\": \"sitz\",\n  \"sitzen\": \"sitz\",\n  \"sitzende\": \"sitzend\",\n  \"sitzerei\": \"sitzerei\",\n  \"sitzest\": \"sitz\",\n  \"sitzgegend\": \"sitzgeg\",\n  \"sitzgelegenheit\": \"sitzgeleg\",\n  \"sitzplatz\": \"sitzplatz\",\n  \"sitzt\": \"sitzt\",\n  \"sitzung\": \"sitzung\",\n  \"sitzungssaal\": \"sitzungssaal\",\n  \"sitzungstagen\": \"sitzungstag\",\n  \"sitzungszimmer\": \"sitzungszimm\",\n  \"sitzungszimmers\": \"sitzungszimm\",\n  \"skeptisch\": \"skeptisch\",\n  \"skeptizismus\": \"skeptizismus\",\n  \"skf\": \"skf\",\n  \"skizziert\": \"skizziert\",\n  \"sklave\": \"sklav\",\n  \"skorpionen\": \"skorpion\",\n  \"skribenten\": \"skribent\",\n  \"skrupel\": \"skrupel\",\n  \"slangs\": \"slang\",\n  \"smaragd\": \"smaragd\",\n  \"smidt\": \"smidt\",\n  \"smyrna\": \"smyrna\",\n  \"smyrnateppich\": \"smyrnateppich\",\n  \"so\": \"so\",\n  \"sö\": \"so\",\n  \"sobald\": \"sobald\",\n  \"social\": \"social\",\n  \"sociantis\": \"sociantis\",\n  \"socinianer\": \"socinian\",\n  \"socken\": \"sock\",\n  \"sodalitia\": \"sodalitia\",\n  \"sodann\": \"sodann\",\n  \"sodass\": \"sodass\",\n  \"sodom\": \"sodom\",\n  \"sodoms\": \"sodom\",\n  \"soeben\": \"soeb\",\n  \"sofa\": \"sofa\",\n  \"sofern\": \"sof\",\n  \"sofort\": \"sofort\",\n  \"sofortige\": \"sofort\",\n  \"sog\": \"sog\",\n  \"sogar\": \"sogar\",\n  \"sogen\": \"sog\",\n  \"sogenannte\": \"sogenannt\",\n  \"sogenannten\": \"sogenannt\",\n  \"sogenannter\": \"sogenannt\",\n  \"sogenanntes\": \"sogenannt\",\n  \"sogleich\": \"sogleich\",\n  \"sohle\": \"sohl\",\n  \"sohlen\": \"sohl\",\n  \"sohn\": \"sohn\",\n  \"söhnchen\": \"sohnch\",\n  \"sohne\": \"sohn\",\n  \"söhne\": \"sohn\",\n  \"söhnen\": \"sohn\",\n  \"sohnes\": \"sohn\",\n  \"sohnessohn\": \"sohnessohn\",\n  \"söhnlein\": \"sohnlein\",\n  \"sokrates\": \"sokrat\",\n  \"solang\": \"solang\",\n  \"solange\": \"solang\",\n  \"solch\": \"solch\",\n  \"solche\": \"solch\",\n  \"solchem\": \"solch\",\n  \"solchen\": \"solch\",\n  \"solchenen\": \"solch\",\n  \"solcher\": \"solch\",\n  \"solcherart\": \"solcherart\",\n  \"solchergestalt\": \"solchergestalt\",\n  \"solcherlei\": \"solcherlei\",\n  \"solcherweise\": \"solcherweis\",\n  \"solches\": \"solch\",\n  \"sold\": \"sold\",\n  \"soldat\": \"soldat\",\n  \"soldaten\": \"soldat\",\n  \"soldatengesicht\": \"soldatengesicht\",\n  \"soldatenhaufen\": \"soldatenhauf\",\n  \"soldatenlebens\": \"soldatenleb\",\n  \"soldatenrock\": \"soldatenrock\",\n  \"soldatentum\": \"soldatentum\",\n  \"soldateska\": \"soldateska\",\n  \"solde\": \"sold\",\n  \"soli\": \"soli\",\n  \"solid\": \"solid\",\n  \"solidarische\": \"solidar\",\n  \"solidarisierung\": \"solidarisier\",\n  \"solidaritässtiftung\": \"solidaritasstift\",\n  \"solidarität\": \"solidaritat\",\n  \"solidaritätsbeiträge\": \"solidaritatsbeitrag\",\n  \"solidaritätsfonds\": \"solidaritatsfond\",\n  \"solidaritätsstiftung\": \"solidaritatsstift\",\n  \"soliden\": \"solid\",\n  \"solider\": \"solid\",\n  \"solipsismus\": \"solipsismus\",\n  \"soll\": \"soll\",\n  \"solle\": \"soll\",\n  \"sollen\": \"soll\",\n  \"söller\": \"soll\",\n  \"sollet\": \"sollet\",\n  \"sollst\": \"soll\",\n  \"sollt\": \"sollt\",\n  \"sollte\": \"sollt\",\n  \"sollten\": \"sollt\",\n  \"solltest\": \"sollt\",\n  \"solution\": \"solution\",\n  \"somit\": \"somit\",\n  \"sommer\": \"somm\",\n  \"sommerabend\": \"sommerab\",\n  \"sommerbier\": \"sommerbi\",\n  \"sommerbieres\": \"sommerbi\",\n  \"sommerferien\": \"sommerferi\",\n  \"sommerfrische\": \"sommerfr\",\n  \"sommerhell\": \"sommerhell\",\n  \"sommerhirsch\": \"sommerhirsch\",\n  \"sommerhitz\": \"sommerhitz\",\n  \"sommerkleid\": \"sommerkleid\",\n  \"sommernachmittag\": \"sommernachmittag\",\n  \"sommernacht\": \"sommernacht\",\n  \"sommerrehe\": \"sommerreh\",\n  \"sommerruhe\": \"sommerruh\",\n  \"sommers\": \"somm\",\n  \"sommersaison\": \"sommersaison\",\n  \"sommersonne\": \"sommersonn\",\n  \"sommerspass\": \"sommerspass\",\n  \"sommerspaß\": \"sommerspass\",\n  \"sommerszeit\": \"sommerszeit\",\n  \"sommertag\": \"sommertag\",\n  \"sommertage\": \"sommertag\",\n  \"sommervergnügen\": \"sommervergnug\",\n  \"sonach\": \"sonach\",\n  \"sonderbar\": \"sonderbar\",\n  \"sonderbare\": \"sonderbar\",\n  \"sonderbaren\": \"sonderbar\",\n  \"sonderbarer\": \"sonderbar\",\n  \"sonderbarerweise\": \"sonderbarerweis\",\n  \"sonderbares\": \"sonderbar\",\n  \"sonderbarste\": \"sonderbarst\",\n  \"sonderbarsten\": \"sonderbarst\",\n  \"sonderlich\": \"sond\",\n  \"sonderliche\": \"sond\",\n  \"sonderlichen\": \"sond\",\n  \"sonderliches\": \"sond\",\n  \"sonderling\": \"sonderling\",\n  \"sondern\": \"sond\",\n  \"sonders\": \"sond\",\n  \"sonderschau\": \"sonderschau\",\n  \"sonderweg\": \"sonderweg\",\n  \"sonn\": \"sonn\",\n  \"sonnbeschienen\": \"sonnbeschi\",\n  \"sonne\": \"sonn\",\n  \"sonnen\": \"sonn\",\n  \"sonnenartig\": \"sonnenart\",\n  \"sonnenauf\": \"sonnenauf\",\n  \"sonnenaufgang\": \"sonnenaufgang\",\n  \"sonnenberg\": \"sonnenberg\",\n  \"sonnenblick\": \"sonnenblick\",\n  \"sonnenbrand\": \"sonnenbrand\",\n  \"sonnenbraunes\": \"sonnenbraun\",\n  \"sonnenbrille\": \"sonnenbrill\",\n  \"sonnenfeuer\": \"sonnenfeu\",\n  \"sonnenglut\": \"sonnenglut\",\n  \"sonnenhelle\": \"sonnenhell\",\n  \"sonnenhöhe\": \"sonnenhoh\",\n  \"sonnenland\": \"sonnenland\",\n  \"sonnenlicht\": \"sonnenlicht\",\n  \"sonnenluft\": \"sonnenluft\",\n  \"sonnennebel\": \"sonnennebel\",\n  \"sonnennebeln\": \"sonnennebeln\",\n  \"sonnenringel\": \"sonnenringel\",\n  \"sonnenschein\": \"sonnenschein\",\n  \"sonnenscheine\": \"sonnenschein\",\n  \"sonnenschirmchen\": \"sonnenschirmch\",\n  \"sonnenstrahl\": \"sonnenstrahl\",\n  \"sonnenstrahlen\": \"sonnenstrahl\",\n  \"sonnenuhr\": \"sonnenuhr\",\n  \"sonnenuntergang\": \"sonnenuntergang\",\n  \"sonnenwärme\": \"sonnenwarm\",\n  \"sonngebräunten\": \"sonngebraunt\",\n  \"sonnige\": \"sonnig\",\n  \"sonnigen\": \"sonnig\",\n  \"sonniger\": \"sonnig\",\n  \"sonnigsten\": \"sonnig\",\n  \"sonntag\": \"sonntag\",\n  \"sonntagabend\": \"sonntagab\",\n  \"sonntage\": \"sonntag\",\n  \"sonntagen\": \"sonntag\",\n  \"sonntäglich\": \"sonntag\",\n  \"sonntäglichen\": \"sonntag\",\n  \"sonntagmorgen\": \"sonntagmorg\",\n  \"sonntagnachmittag\": \"sonntagnachmittag\",\n  \"sonntagnachmittags\": \"sonntagnachmittag\",\n  \"sonntags\": \"sonntag\",\n  \"sonntagskleid\": \"sonntagskleid\",\n  \"sonntagskleide\": \"sonntagskleid\",\n  \"sonntagsrock\": \"sonntagsrock\",\n  \"sonntagsschlafrock\": \"sonntagsschlafrock\",\n  \"sonntagsschuhe\": \"sonntagsschuh\",\n  \"sonntagsstaat\": \"sonntagsstaat\",\n  \"sonntagsstille\": \"sonntagsstill\",\n  \"sonntagvormittag\": \"sonntagvormittag\",\n  \"sonnte\": \"sonnt\",\n  \"sono\": \"sono\",\n  \"sonst\": \"sonst\",\n  \"sonstige\": \"sonstig\",\n  \"sonstigen\": \"sonstig\",\n  \"sonstwie\": \"sonstwi\",\n  \"sonstwo\": \"sonstwo\",\n  \"sony\": \"sony\",\n  \"sooft\": \"sooft\",\n  \"sopha\": \"sopha\",\n  \"sophienstrasse\": \"sophienstrass\",\n  \"sophismata\": \"sophismata\",\n  \"sophisterei\": \"sophisterei\",\n  \"sophisticis\": \"sophisticis\",\n  \"sophistik\": \"sophist\",\n  \"sophistische\": \"sophist\",\n  \"sophistischen\": \"sophist\",\n  \"sorge\": \"sorg\",\n  \"sorgen\": \"sorg\",\n  \"sorgenbefreite\": \"sorgenbefreit\",\n  \"sorgende\": \"sorgend\",\n  \"sorgenlos\": \"sorgenlos\",\n  \"sorgenvolle\": \"sorgenvoll\",\n  \"sorgfalt\": \"sorgfalt\",\n  \"sorgfältig\": \"sorgfalt\",\n  \"sorgfältigste\": \"sorgfalt\",\n  \"sorgfältigsten\": \"sorgfalt\",\n  \"sorglich\": \"sorglich\",\n  \"sorglicher\": \"sorglich\",\n  \"sorglos\": \"sorglos\",\n  \"sorglosem\": \"sorglos\",\n  \"sorgloser\": \"sorglos\",\n  \"sorglosigkeit\": \"sorglos\",\n  \"sorgsam\": \"sorgsam\",\n  \"sorgte\": \"sorgt\",\n  \"sorry\": \"sorry\",\n  \"sorte\": \"sort\",\n  \"sosehr\": \"sosehr\",\n  \"soubrette\": \"soubrett\",\n  \"soundso\": \"soundso\",\n  \"souper\": \"soup\",\n  \"sous\": \"sous\",\n  \"souterrain\": \"souterrain\",\n  \"souverän\": \"souveran\",\n  \"soviel\": \"soviel\",\n  \"sowas\": \"sowas\",\n  \"soweit\": \"soweit\",\n  \"sowenig\": \"sowen\",\n  \"sowie\": \"sowi\",\n  \"sowieso\": \"sowieso\",\n  \"sowohl\": \"sowohl\",\n  \"sozialarbeit\": \"sozialarbeit\",\n  \"soziale\": \"sozial\",\n  \"sozialen\": \"sozial\",\n  \"soziales\": \"sozial\",\n  \"sozialhilfe\": \"sozialhilf\",\n  \"sozialisten\": \"sozialist\",\n  \"sozialsystem\": \"sozialsyst\",\n  \"sozinianern\": \"sozinian\",\n  \"sozusagen\": \"sozusag\",\n  \"spähen\": \"spah\",\n  \"spähend\": \"spahend\",\n  \"spähete\": \"spahet\",\n  \"spähte\": \"spaht\",\n  \"spalt\": \"spalt\",\n  \"spalten\": \"spalt\",\n  \"spaltet\": \"spaltet\",\n  \"spaltung\": \"spaltung\",\n  \"späne\": \"span\",\n  \"spanien\": \"spani\",\n  \"spaniern\": \"spani\",\n  \"spaniolen\": \"spaniol\",\n  \"spanische\": \"spanisch\",\n  \"spann\": \"spann\",\n  \"spanne\": \"spann\",\n  \"spannende\": \"spannend\",\n  \"spannender\": \"spannend\",\n  \"spannt\": \"spannt\",\n  \"spannte\": \"spannt\",\n  \"spannten\": \"spannt\",\n  \"spannung\": \"spannung\",\n  \"spannungen\": \"spannung\",\n  \"spannungsgeladen\": \"spannungsgelad\",\n  \"spannungsvolle\": \"spannungsvoll\",\n  \"sparbüchse\": \"sparbuchs\",\n  \"spare\": \"spar\",\n  \"sparen\": \"spar\",\n  \"spargel\": \"spargel\",\n  \"sparkasse\": \"sparkass\",\n  \"spärliche\": \"sparlich\",\n  \"spärlichen\": \"sparlich\",\n  \"sparpfennig\": \"sparpfenn\",\n  \"sparsam\": \"sparsam\",\n  \"sparsame\": \"sparsam\",\n  \"sparsamer\": \"sparsam\",\n  \"sparsamkeit\": \"sparsam\",\n  \"sparte\": \"spart\",\n  \"spass\": \"spass\",\n  \"spaß\": \"spass\",\n  \"spasse\": \"spass\",\n  \"spässe\": \"spass\",\n  \"späße\": \"spass\",\n  \"spasshaft\": \"spasshaft\",\n  \"spasshafte\": \"spasshaft\",\n  \"spasshaften\": \"spasshaft\",\n  \"spassig\": \"spassig\",\n  \"spassiges\": \"spassig\",\n  \"spät\": \"spat\",\n  \"späten\": \"spat\",\n  \"später\": \"spat\",\n  \"spätere\": \"spat\",\n  \"späterhin\": \"spaterhin\",\n  \"spätesten\": \"spat\",\n  \"spätestens\": \"spatest\",\n  \"spätregen\": \"spatreg\",\n  \"spatzen\": \"spatz\",\n  \"spazier\": \"spazi\",\n  \"spazieren\": \"spazi\",\n  \"spazierengeflogen\": \"spazierengeflog\",\n  \"spazierengehen\": \"spazierengeh\",\n  \"spazierenzugehen\": \"spazierenzugeh\",\n  \"spazierest\": \"spazier\",\n  \"spaziergang\": \"spaziergang\",\n  \"spaziergange\": \"spaziergang\",\n  \"spaziergänger\": \"spaziergang\",\n  \"spazierstock\": \"spazierstock\",\n  \"spazierstöckchen\": \"spazierstockch\",\n  \"spazierstöckl\": \"spazierstockl\",\n  \"spazierte\": \"spaziert\",\n  \"spe\": \"spe\",\n  \"spechtes\": \"specht\",\n  \"speciem\": \"speci\",\n  \"species\": \"speci\",\n  \"speck\": \"speck\",\n  \"speckriemchen\": \"speckriemch\",\n  \"speckseite\": \"speckseit\",\n  \"spediteure\": \"spediteur\",\n  \"speeres\": \"speer\",\n  \"speichel\": \"speichel\",\n  \"speichern\": \"speich\",\n  \"speise\": \"speis\",\n  \"speisedüfte\": \"speiseduft\",\n  \"speisen\": \"speis\",\n  \"speisesaal\": \"speisesaal\",\n  \"speiset\": \"speiset\",\n  \"speisete\": \"speiset\",\n  \"speisetisch\": \"speiset\",\n  \"speisewagen\": \"speisewag\",\n  \"speisezettel\": \"speisezettel\",\n  \"speisopfer\": \"speisopf\",\n  \"speisopfern\": \"speisopf\",\n  \"speiste\": \"speist\",\n  \"spektakel\": \"spektakel\",\n  \"spektrum\": \"spektrum\",\n  \"spekulant\": \"spekulant\",\n  \"spekulanten\": \"spekulant\",\n  \"spekulation\": \"spekulation\",\n  \"spekulationsbetätigung\": \"spekulationsbetat\",\n  \"spekulativ\": \"spekulativ\",\n  \"spekulative\": \"spekulativ\",\n  \"spekulativen\": \"spekulativ\",\n  \"spekulativer\": \"spekulativ\",\n  \"spekulatives\": \"spekulativ\",\n  \"spekulierten\": \"spekuliert\",\n  \"spelt\": \"spelt\",\n  \"spelts\": \"spelt\",\n  \"spelunke\": \"spelunk\",\n  \"spelunkelein\": \"spelunkelein\",\n  \"spenden\": \"spend\",\n  \"spendierte\": \"spendiert\",\n  \"spenser\": \"spens\",\n  \"sperling\": \"sperling\",\n  \"sperlinge\": \"sperling\",\n  \"sperrmäuler\": \"sperrmaul\",\n  \"sperrte\": \"sperrt\",\n  \"sperrten\": \"sperrt\",\n  \"spezereien\": \"spezerei\",\n  \"spezialfonds\": \"spezialfond\",\n  \"speziellen\": \"speziell\",\n  \"spezielles\": \"speziell\",\n  \"spezies\": \"spezi\",\n  \"spezifisch\": \"spezif\",\n  \"sphäre\": \"sphar\",\n  \"sphären\": \"sphar\",\n  \"spieen\": \"spieen\",\n  \"spiegel\": \"spiegel\",\n  \"spiegelbild\": \"spiegelbild\",\n  \"spiegelchen\": \"spiegelch\",\n  \"spiegelein\": \"spiegelein\",\n  \"spiegels\": \"spiegel\",\n  \"spiegelt\": \"spiegelt\",\n  \"spiegelte\": \"spiegelt\",\n  \"spiegelwände\": \"spiegelwand\",\n  \"spiel\": \"spiel\",\n  \"spielchen\": \"spielch\",\n  \"spiele\": \"spiel\",\n  \"spielen\": \"spiel\",\n  \"spielend\": \"spielend\",\n  \"spielenden\": \"spielend\",\n  \"spielerei\": \"spielerei\",\n  \"spielet\": \"spielet\",\n  \"spielgelde\": \"spielgeld\",\n  \"spielgesellen\": \"spielgesell\",\n  \"spielkameraden\": \"spielkamerad\",\n  \"spielkugel\": \"spielkugel\",\n  \"spielraum\": \"spielraum\",\n  \"spielregeln\": \"spielregeln\",\n  \"spielschulden\": \"spielschuld\",\n  \"spielstätte\": \"spielstatt\",\n  \"spielt\": \"spielt\",\n  \"spielte\": \"spielt\",\n  \"spielten\": \"spielt\",\n  \"spieltisch\": \"spieltisch\",\n  \"spielwerke\": \"spielwerk\",\n  \"spielzeug\": \"spielzeug\",\n  \"spielzeuglandschaft\": \"spielzeuglandschaft\",\n  \"spielzeugmaikäfer\": \"spielzeugmaikaf\",\n  \"spielzeugvögelchen\": \"spielzeugvogelch\",\n  \"spielzeugwaffen\": \"spielzeugwaff\",\n  \"spiess\": \"spiess\",\n  \"spiesse\": \"spiess\",\n  \"spiessen\": \"spiess\",\n  \"spinne\": \"spinn\",\n  \"spinnen\": \"spinn\",\n  \"spinnenlied\": \"spinnenlied\",\n  \"spinnerei\": \"spinnerei\",\n  \"spinneweben\": \"spinneweb\",\n  \"spinnrädchen\": \"spinnradch\",\n  \"spinnrocken\": \"spinnrock\",\n  \"spinnweben\": \"spinnweb\",\n  \"spion\": \"spion\",\n  \"spiraculim\": \"spiraculim\",\n  \"spirieren\": \"spiri\",\n  \"spirituale\": \"spiritual\",\n  \"spiritualis\": \"spiritualis\",\n  \"spiritus\": \"spiritus\",\n  \"spiritusfeuer\": \"spiritusfeu\",\n  \"spitakl\": \"spitakl\",\n  \"spital\": \"spital\",\n  \"spittel\": \"spittel\",\n  \"spitting\": \"spitting\",\n  \"spitz\": \"spitz\",\n  \"spitzbart\": \"spitzbart\",\n  \"spitzbauch\": \"spitzbauch\",\n  \"spitzbube\": \"spitzbub\",\n  \"spitzbuben\": \"spitzbub\",\n  \"spitze\": \"spitz\",\n  \"spitzen\": \"spitz\",\n  \"spitzenkandidat\": \"spitzenkandidat\",\n  \"spitzes\": \"spitz\",\n  \"spitzfindigkeiten\": \"spitzfind\",\n  \"spitzgras\": \"spitzgras\",\n  \"spitzig\": \"spitzig\",\n  \"spitzige\": \"spitzig\",\n  \"spitzigen\": \"spitzig\",\n  \"spitzigsten\": \"spitzig\",\n  \"spitzte\": \"spitzt\",\n  \"splitternackt\": \"splitternackt\",\n  \"sponton\": \"sponton\",\n  \"sporen\": \"spor\",\n  \"spornstreichs\": \"spornstreich\",\n  \"spornte\": \"spornt\",\n  \"sport\": \"sport\",\n  \"spott\": \"spott\",\n  \"spotten\": \"spott\",\n  \"spötter\": \"spott\",\n  \"spottet\": \"spottet\",\n  \"spottete\": \"spottet\",\n  \"spottgeburten\": \"spottgeburt\",\n  \"spöttisch\": \"spottisch\",\n  \"spöttische\": \"spottisch\",\n  \"spöttischem\": \"spottisch\",\n  \"spöttischen\": \"spottisch\",\n  \"spottlaus\": \"spottlaus\",\n  \"spottlust\": \"spottlust\",\n  \"spp\": \"spp\",\n  \"sprach\": \"sprach\",\n  \"sprache\": \"sprach\",\n  \"spräche\": \"sprach\",\n  \"sprachen\": \"sprach\",\n  \"sprächest\": \"sprach\",\n  \"sprachgebrauche\": \"sprachgebrauch\",\n  \"sprachigen\": \"sprachig\",\n  \"sprachlehre\": \"sprachlehr\",\n  \"sprachrohr\": \"sprachrohr\",\n  \"sprachst\": \"sprach\",\n  \"sprang\": \"sprang\",\n  \"sprangen\": \"sprang\",\n  \"spreche\": \"sprech\",\n  \"sprechen\": \"sprech\",\n  \"sprechend\": \"sprechend\",\n  \"sprechenden\": \"sprechend\",\n  \"sprechender\": \"sprechend\",\n  \"sprechens\": \"sprech\",\n  \"sprecht\": \"sprecht\",\n  \"sprechzeit\": \"sprechzeit\",\n  \"spree\": \"spree\",\n  \"spreemetropole\": \"spreemetropol\",\n  \"spreizen\": \"spreiz\",\n  \"spreizte\": \"spreizt\",\n  \"sprengen\": \"spreng\",\n  \"sprengkapseln\": \"sprengkapseln\",\n  \"sprengt\": \"sprengt\",\n  \"sprengte\": \"sprengt\",\n  \"spreu\": \"spreu\",\n  \"sprich\": \"sprich\",\n  \"sprichst\": \"sprich\",\n  \"spricht\": \"spricht\",\n  \"sprichwort\": \"sprichwort\",\n  \"sprichwörter\": \"sprichwort\",\n  \"sprichwortes\": \"sprichwort\",\n  \"spring\": \"spring\",\n  \"springen\": \"spring\",\n  \"springer\": \"spring\",\n  \"springt\": \"springt\",\n  \"spritze\": \"spritz\",\n  \"spritzen\": \"spritz\",\n  \"spröde\": \"sprod\",\n  \"sprödeste\": \"sprod\",\n  \"sprödigkeit\": \"sprodig\",\n  \"spross\": \"spross\",\n  \"sproß\": \"spross\",\n  \"sprosse\": \"spross\",\n  \"sprossen\": \"spross\",\n  \"sprossend\": \"sprossend\",\n  \"sprossenden\": \"sprossend\",\n  \"sprösslinge\": \"sprossling\",\n  \"sprößlinge\": \"sprossling\",\n  \"sprosste\": \"sprosst\",\n  \"sproßte\": \"sprosst\",\n  \"spruch\": \"spruch\",\n  \"sprüche\": \"spruch\",\n  \"spruches\": \"spruch\",\n  \"sprüchlein\": \"spruchlein\",\n  \"spruchversen\": \"spruchvers\",\n  \"spruchweise\": \"spruchweis\",\n  \"sprudel\": \"sprudel\",\n  \"sprudelflasche\": \"sprudelflasch\",\n  \"sprühende\": \"spruhend\",\n  \"sprung\": \"sprung\",\n  \"sprungbrett\": \"sprungbrett\",\n  \"sprunge\": \"sprung\",\n  \"sprünge\": \"sprung\",\n  \"sprüngen\": \"sprung\",\n  \"spucke\": \"spuck\",\n  \"spuckte\": \"spuckt\",\n  \"spuk\": \"spuk\",\n  \"spülte\": \"spult\",\n  \"spur\": \"spur\",\n  \"spür\": \"spur\",\n  \"spürbar\": \"spurbar\",\n  \"spuren\": \"spur\",\n  \"spüren\": \"spur\",\n  \"spürte\": \"spurt\",\n  \"sputet\": \"sputet\",\n  \"sputete\": \"sputet\",\n  \"squat\": \"squat\",\n  \"sr\": \"sr\",\n  \"st\": \"st\",\n  \"staat\": \"staat\",\n  \"staate\": \"staat\",\n  \"staaten\": \"staat\",\n  \"staates\": \"staat\",\n  \"staatlich\": \"staatlich\",\n  \"staatliche\": \"staatlich\",\n  \"staatlicher\": \"staatlich\",\n  \"staatlicherseits\": \"staatlicherseit\",\n  \"staatsanwalt\": \"staatsanwalt\",\n  \"staatsbürgerbewußtsein\": \"staatsburgerbewusstsein\",\n  \"staatskirche\": \"staatskirch\",\n  \"staatskirchen\": \"staatskirch\",\n  \"staatskleid\": \"staatskleid\",\n  \"staatsknete\": \"staatsknet\",\n  \"staatsprüfungen\": \"staatspruf\",\n  \"staatsschuld\": \"staatsschuld\",\n  \"staatssicherheits\": \"staatssich\",\n  \"staatsverschuldung\": \"staatsverschuld\",\n  \"staatswesen\": \"staatswes\",\n  \"stab\": \"stab\",\n  \"stäbchen\": \"stabch\",\n  \"stabe\": \"stab\",\n  \"stäbe\": \"stab\",\n  \"stäben\": \"stab\",\n  \"stabes\": \"stab\",\n  \"stabil\": \"stabil\",\n  \"stabilisierend\": \"stabilisier\",\n  \"stabilisierende\": \"stabilisier\",\n  \"stabsoffiziere\": \"stabsoffizi\",\n  \"stach\": \"stach\",\n  \"stachel\": \"stachel\",\n  \"stachelgesträuch\": \"stachelgestrauch\",\n  \"stachelgewächs\": \"stachelgewach\",\n  \"stacheln\": \"stacheln\",\n  \"stachelstrauch\": \"stachelstrauch\",\n  \"stachen\": \"stach\",\n  \"stachlige\": \"stachlig\",\n  \"stachligen\": \"stachlig\",\n  \"stad\": \"stad\",\n  \"stadien\": \"stadi\",\n  \"stadium\": \"stadium\",\n  \"stadt\": \"stadt\",\n  \"städtchen\": \"stadtch\",\n  \"städtchens\": \"stadtch\",\n  \"städte\": \"stadt\",\n  \"städten\": \"stadt\",\n  \"städter\": \"stadt\",\n  \"stadtfrau\": \"stadtfrau\",\n  \"stadtgesetze\": \"stadtgesetz\",\n  \"stadthexenmeister\": \"stadthexenmeist\",\n  \"städtisch\": \"stadtisch\",\n  \"städtischen\": \"stadtisch\",\n  \"städtlein\": \"stadtlein\",\n  \"stadtmauer\": \"stadtmau\",\n  \"stadtname\": \"stadtnam\",\n  \"stadtpfarrer\": \"stadtpfarr\",\n  \"stadtrand\": \"stadtrand\",\n  \"stadtschreiber\": \"stadtschreib\",\n  \"stadtschule\": \"stadtschul\",\n  \"stadtteil\": \"stadtteil\",\n  \"stadtviertel\": \"stadtviertel\",\n  \"stadtvierteln\": \"stadtvierteln\",\n  \"stadtwohnung\": \"stadtwohn\",\n  \"stadtzürcher\": \"stadtzurch\",\n  \"staffiert\": \"staffiert\",\n  \"stagnation\": \"stagnation\",\n  \"stahl\": \"stahl\",\n  \"stahlblauen\": \"stahlblau\",\n  \"stählen\": \"stahl\",\n  \"stak\": \"stak\",\n  \"stäken\": \"stak\",\n  \"staketen\": \"staket\",\n  \"stall\": \"stall\",\n  \"stalle\": \"stall\",\n  \"ställe\": \"stall\",\n  \"stallkette\": \"stallkett\",\n  \"stallknechte\": \"stallknecht\",\n  \"stalltür\": \"stalltur\",\n  \"stalsett\": \"stalsett\",\n  \"stamina\": \"stamina\",\n  \"stamm\": \"stamm\",\n  \"stämmchen\": \"stammch\",\n  \"stamme\": \"stamm\",\n  \"stämme\": \"stamm\",\n  \"stammelte\": \"stammelt\",\n  \"stammen\": \"stamm\",\n  \"stämmen\": \"stamm\",\n  \"stammende\": \"stammend\",\n  \"stammenden\": \"stammend\",\n  \"stammlokal\": \"stammlokal\",\n  \"stammschlosses\": \"stammschloss\",\n  \"stammt\": \"stammt\",\n  \"stammtafel\": \"stammtafel\",\n  \"stammte\": \"stammt\",\n  \"stammten\": \"stammt\",\n  \"stammtischfeierlichkeit\": \"stammtischfeier\",\n  \"stammväter\": \"stammvat\",\n  \"stammvaters\": \"stammvat\",\n  \"stampfe\": \"stampf\",\n  \"stampfen\": \"stampf\",\n  \"stampfens\": \"stampf\",\n  \"stand\": \"stand\",\n  \"ständchen\": \"standch\",\n  \"stande\": \"stand\",\n  \"stände\": \"stand\",\n  \"standen\": \"stand\",\n  \"standenes\": \"stand\",\n  \"ständerat\": \"standerat\",\n  \"standhalten\": \"standhalt\",\n  \"ständig\": \"standig\",\n  \"ständige\": \"standig\",\n  \"standort\": \"standort\",\n  \"standpunkt\": \"standpunkt\",\n  \"standpunkte\": \"standpunkt\",\n  \"standrecht\": \"standrecht\",\n  \"stange\": \"stang\",\n  \"stangen\": \"stang\",\n  \"stank\": \"stank\",\n  \"stänker\": \"stank\",\n  \"stapften\": \"stapft\",\n  \"starb\": \"starb\",\n  \"starben\": \"starb\",\n  \"stärger\": \"starg\",\n  \"stark\": \"stark\",\n  \"starke\": \"stark\",\n  \"stärke\": \"stark\",\n  \"starkem\": \"stark\",\n  \"starken\": \"stark\",\n  \"stärken\": \"stark\",\n  \"starker\": \"stark\",\n  \"stärker\": \"stark\",\n  \"stärkere\": \"stark\",\n  \"stärkeren\": \"stark\",\n  \"stärkern\": \"stark\",\n  \"starkes\": \"stark\",\n  \"stärkest\": \"stark\",\n  \"stärkste\": \"stark\",\n  \"stärksten\": \"stark\",\n  \"stärkte\": \"starkt\",\n  \"stärkung\": \"starkung\",\n  \"starnberg\": \"starnberg\",\n  \"starnberger\": \"starnberg\",\n  \"starr\": \"starr\",\n  \"starre\": \"starr\",\n  \"starren\": \"starr\",\n  \"starrkopf\": \"starrkopf\",\n  \"starrte\": \"starrt\",\n  \"starrten\": \"starrt\",\n  \"starten\": \"start\",\n  \"statdanzeiger\": \"statdanzeig\",\n  \"station\": \"station\",\n  \"statistik\": \"statist\",\n  \"statistisch\": \"statist\",\n  \"statt\": \"statt\",\n  \"stattdessen\": \"stattdess\",\n  \"stätte\": \"statt\",\n  \"statten\": \"statt\",\n  \"stattfand\": \"stattfand\",\n  \"stattfände\": \"stattfand\",\n  \"stattfanden\": \"stattfand\",\n  \"stattfinde\": \"stattfind\",\n  \"stattfinden\": \"stattfind\",\n  \"stattfindenden\": \"stattfind\",\n  \"stattfindet\": \"stattfindet\",\n  \"stattgefunden\": \"stattgefund\",\n  \"statthatte\": \"statthatt\",\n  \"stattlich\": \"stattlich\",\n  \"stattliche\": \"stattlich\",\n  \"stattlichen\": \"stattlich\",\n  \"stattliches\": \"stattlich\",\n  \"stattlichkeit\": \"stattlich\",\n  \"statue\": \"statu\",\n  \"status\": \"status\",\n  \"statuta\": \"statuta\",\n  \"statutum\": \"statutum\",\n  \"staub\": \"staub\",\n  \"stäubchen\": \"staubch\",\n  \"staube\": \"staub\",\n  \"staubes\": \"staub\",\n  \"staubhemden\": \"staubhemd\",\n  \"staubigen\": \"staubig\",\n  \"staubte\": \"staubt\",\n  \"staubwolke\": \"staubwolk\",\n  \"staude\": \"staud\",\n  \"stauden\": \"staud\",\n  \"staune\": \"staun\",\n  \"staunen\": \"staun\",\n  \"staunend\": \"staunend\",\n  \"staunte\": \"staunt\",\n  \"stechen\": \"stech\",\n  \"stechend\": \"stechend\",\n  \"stechender\": \"stechend\",\n  \"stechpalme\": \"stechpalm\",\n  \"stecke\": \"steck\",\n  \"stecken\": \"steck\",\n  \"steckenblieb\": \"steckenblieb\",\n  \"steckend\": \"steckend\",\n  \"steckenden\": \"steckend\",\n  \"steckengeblieben\": \"steckengeblieb\",\n  \"steckleinspringer\": \"steckleinspring\",\n  \"stecknadel\": \"stecknadel\",\n  \"stecknadelaugen\": \"stecknadelaug\",\n  \"steckt\": \"steckt\",\n  \"steckte\": \"steckt\",\n  \"steckten\": \"steckt\",\n  \"steg\": \"steg\",\n  \"stege\": \"steg\",\n  \"stegemann\": \"stegemann\",\n  \"stegreif\": \"stegreif\",\n  \"steh\": \"steh\",\n  \"stehe\": \"steh\",\n  \"stehen\": \"steh\",\n  \"stehenbleiben\": \"stehenbleib\",\n  \"stehenbleibend\": \"stehenbleib\",\n  \"stehenbleibens\": \"stehenbleib\",\n  \"stehenbleibt\": \"stehenbleibt\",\n  \"stehenblieb\": \"stehenblieb\",\n  \"stehend\": \"stehend\",\n  \"stehenden\": \"stehend\",\n  \"stehender\": \"stehend\",\n  \"stehengeblieben\": \"stehengeblieb\",\n  \"stehenliess\": \"stehenliess\",\n  \"stehens\": \"steh\",\n  \"stehest\": \"steh\",\n  \"stehet\": \"stehet\",\n  \"stehle\": \"stehl\",\n  \"stehlen\": \"stehl\",\n  \"stehn\": \"stehn\",\n  \"stehnblieben\": \"stehnblieb\",\n  \"stehst\": \"steh\",\n  \"steht\": \"steht\",\n  \"steif\": \"steif\",\n  \"steifbeinig\": \"steifbein\",\n  \"steife\": \"steif\",\n  \"steifen\": \"steif\",\n  \"steifendem\": \"steifend\",\n  \"steifer\": \"steif\",\n  \"steig\": \"steig\",\n  \"steigbügel\": \"steigbugel\",\n  \"steige\": \"steig\",\n  \"steigen\": \"steig\",\n  \"steigend\": \"steigend\",\n  \"steigende\": \"steigend\",\n  \"steigern\": \"steig\",\n  \"steigerte\": \"steigert\",\n  \"steigerung\": \"steiger\",\n  \"steiget\": \"steiget\",\n  \"steigt\": \"steigt\",\n  \"steil\": \"steil\",\n  \"steile\": \"steil\",\n  \"steilen\": \"steil\",\n  \"stein\": \"stein\",\n  \"steinbeschwerte\": \"steinbeschwert\",\n  \"steinblöcke\": \"steinblock\",\n  \"steinboden\": \"steinbod\",\n  \"steinbruch\": \"steinbruch\",\n  \"steinbrüche\": \"steinbruch\",\n  \"steinbruches\": \"steinbruch\",\n  \"steinchen\": \"steinch\",\n  \"steindinge\": \"steinding\",\n  \"steine\": \"stein\",\n  \"steineiche\": \"steineich\",\n  \"steinen\": \"stein\",\n  \"steinerne\": \"steinern\",\n  \"steinernen\": \"steinern\",\n  \"steinernes\": \"steinern\",\n  \"steinfleckes\": \"steinfleck\",\n  \"steingeröll\": \"steingeroll\",\n  \"steingraue\": \"steingrau\",\n  \"steinhaufen\": \"steinhauf\",\n  \"steinige\": \"steinig\",\n  \"steinigen\": \"steinig\",\n  \"steinigens\": \"steinig\",\n  \"steiniges\": \"steinig\",\n  \"steinigung\": \"steinig\",\n  \"steinkamm\": \"steinkamm\",\n  \"steinklotz\": \"steinklotz\",\n  \"steinlagern\": \"steinlag\",\n  \"steinlasten\": \"steinlast\",\n  \"steinmasse\": \"steinmass\",\n  \"steinpieper\": \"steinpiep\",\n  \"steinpiepers\": \"steinpiep\",\n  \"steinrand\": \"steinrand\",\n  \"steins\": \"stein\",\n  \"steinwerk\": \"steinwerk\",\n  \"stell\": \"stell\",\n  \"stelle\": \"stell\",\n  \"stelledie\": \"stelledi\",\n  \"stellen\": \"stell\",\n  \"stelleninhaber\": \"stelleninhab\",\n  \"stellenleiters\": \"stellenleit\",\n  \"stellt\": \"stellt\",\n  \"stellte\": \"stellt\",\n  \"stellten\": \"stellt\",\n  \"stellung\": \"stellung\",\n  \"stellungen\": \"stellung\",\n  \"stellungnahmen\": \"stellungnahm\",\n  \"stellvertretende\": \"stellvertret\",\n  \"stellvertreter\": \"stellvertret\",\n  \"stellvertreters\": \"stellvertret\",\n  \"stelzten\": \"stelzt\",\n  \"stemmte\": \"stemmt\",\n  \"stempel\": \"stempel\",\n  \"stemraketen\": \"stemraket\",\n  \"sten\": \"sten\",\n  \"stengel\": \"stengel\",\n  \"steppen\": \"stepp\",\n  \"sterbe\": \"sterb\",\n  \"sterbebegleiterdie\": \"sterbebegleiterdi\",\n  \"sterbebegleitungs\": \"sterbebegleit\",\n  \"sterbebette\": \"sterbebett\",\n  \"sterbeforscherin\": \"sterbeforscherin\",\n  \"sterbeforschung\": \"sterbeforsch\",\n  \"sterben\": \"sterb\",\n  \"sterbend\": \"sterbend\",\n  \"sterbenden\": \"sterbend\",\n  \"sterbendes\": \"sterbend\",\n  \"sterbenswörtchen\": \"sterbenswortch\",\n  \"sterbet\": \"sterbet\",\n  \"sterblichen\": \"sterblich\",\n  \"sterblicher\": \"sterblich\",\n  \"sterbn\": \"sterbn\",\n  \"sterbstund\": \"sterbstund\",\n  \"stern\": \"stern\",\n  \"sternbild\": \"sternbild\",\n  \"sternbilder\": \"sternbild\",\n  \"sternblumen\": \"sternblum\",\n  \"sternblumenklee\": \"sternblumenkle\",\n  \"sternblumenwiese\": \"sternblumenwies\",\n  \"sternchen\": \"sternch\",\n  \"sternchenkuss\": \"sternchenkuss\",\n  \"sterndeutung\": \"sterndeut\",\n  \"sterne\": \"stern\",\n  \"sternen\": \"stern\",\n  \"sternenbilde\": \"sternenbild\",\n  \"sternenhimmel\": \"sternenhimmel\",\n  \"sternenkinder\": \"sternenkind\",\n  \"sternenkindern\": \"sternenkind\",\n  \"sternenmädchen\": \"sternenmadch\",\n  \"sternenmädchens\": \"sternenmadch\",\n  \"sternenschule\": \"sternenschul\",\n  \"sternenstühlchen\": \"sternenstuhlch\",\n  \"sternenwiese\": \"sternenwies\",\n  \"sternlein\": \"sternlein\",\n  \"sternpünktchen\": \"sternpunktch\",\n  \"sternschnuppen\": \"sternschnupp\",\n  \"sternschnuppengemüse\": \"sternschnuppengemus\",\n  \"sternschnuppenwolke\": \"sternschnuppenwolk\",\n  \"sterzenbacher\": \"sterzenbach\",\n  \"stete\": \"stet\",\n  \"steten\": \"stet\",\n  \"stetig\": \"stetig\",\n  \"stetige\": \"stetig\",\n  \"stets\": \"stet\",\n  \"stett\": \"stett\",\n  \"steuer\": \"steu\",\n  \"steuerausfalls\": \"steuerausfall\",\n  \"steuerbeleg\": \"steuerbeleg\",\n  \"steuerhinterziehung\": \"steuerhinterzieh\",\n  \"steuern\": \"steu\",\n  \"steuersünder\": \"steuersund\",\n  \"steuert\": \"steuert\",\n  \"steuerte\": \"steuert\",\n  \"steward\": \"steward\",\n  \"steyrerhut\": \"steyrerhut\",\n  \"steyrerhute\": \"steyrerhut\",\n  \"stibitzt\": \"stibitzt\",\n  \"stich\": \"stich\",\n  \"sticheln\": \"sticheln\",\n  \"stickerei\": \"stickerei\",\n  \"stickstoffgehaltes\": \"stickstoffgehalt\",\n  \"stickstoffhaltige\": \"stickstoffhalt\",\n  \"stiebten\": \"stiebt\",\n  \"stiefel\": \"stiefel\",\n  \"stiefeln\": \"stiefeln\",\n  \"stiefelsohlen\": \"stiefelsohl\",\n  \"stiefmütterlich\": \"stiefmutt\",\n  \"stieg\": \"stieg\",\n  \"stiegen\": \"stieg\",\n  \"stiehlt\": \"stiehlt\",\n  \"stiel\": \"stiel\",\n  \"stielen\": \"stiel\",\n  \"stier\": \"stier\",\n  \"stiere\": \"stier\",\n  \"stierer\": \"stier\",\n  \"stierte\": \"stiert\",\n  \"stiess\": \"stiess\",\n  \"stieß\": \"stiess\",\n  \"stiessen\": \"stiess\",\n  \"stießen\": \"stiess\",\n  \"stiften\": \"stift\",\n  \"stifter\": \"stift\",\n  \"stiftern\": \"stift\",\n  \"stiftsdamen\": \"stiftsdam\",\n  \"stiftshütte\": \"stiftshutt\",\n  \"stiftung\": \"stiftung\",\n  \"stiftungen\": \"stiftung\",\n  \"stigma\": \"stigma\",\n  \"stil\": \"stil\",\n  \"stile\": \"stil\",\n  \"stiles\": \"stil\",\n  \"still\": \"still\",\n  \"stillblaue\": \"stillblau\",\n  \"stille\": \"still\",\n  \"stillen\": \"still\",\n  \"stiller\": \"still\",\n  \"stilles\": \"still\",\n  \"stillgewordenen\": \"stillgeword\",\n  \"stillhalten\": \"stillhalt\",\n  \"stillhielt\": \"stillhielt\",\n  \"stillschweigend\": \"stillschweig\",\n  \"stillschweigende\": \"stillschweig\",\n  \"stillstand\": \"stillstand\",\n  \"stillständer\": \"stillstand\",\n  \"stimmabgabe\": \"stimmabgab\",\n  \"stimmberechtigten\": \"stimmberechtigt\",\n  \"stimmbezirke\": \"stimmbezirk\",\n  \"stimmchen\": \"stimmch\",\n  \"stimme\": \"stimm\",\n  \"stimmen\": \"stimm\",\n  \"stimmenzähler\": \"stimmenzahl\",\n  \"stimmenzählern\": \"stimmenzahl\",\n  \"stimmfähig\": \"stimmfah\",\n  \"stimmlisten\": \"stimmlist\",\n  \"stimmt\": \"stimmt\",\n  \"stimmte\": \"stimmt\",\n  \"stimmten\": \"stimmt\",\n  \"stimmung\": \"stimmung\",\n  \"stimmungen\": \"stimmung\",\n  \"stimmzettel\": \"stimmzettel\",\n  \"stingel\": \"stingel\",\n  \"stinke\": \"stink\",\n  \"stinken\": \"stink\",\n  \"stinkend\": \"stinkend\",\n  \"stinkenden\": \"stinkend\",\n  \"stinkige\": \"stinkig\",\n  \"stinkt\": \"stinkt\",\n  \"stirb\": \"stirb\",\n  \"stirbt\": \"stirbt\",\n  \"stirn\": \"stirn\",\n  \"stirnband\": \"stirnband\",\n  \"stirne\": \"stirn\",\n  \"stirnen\": \"stirn\",\n  \"stob\": \"stob\",\n  \"stoben\": \"stob\",\n  \"stöberte\": \"stobert\",\n  \"stocherte\": \"stochert\",\n  \"stock\": \"stock\",\n  \"stöckchen\": \"stockch\",\n  \"stocke\": \"stock\",\n  \"stöcke\": \"stock\",\n  \"stöcken\": \"stock\",\n  \"stockender\": \"stockend\",\n  \"stöckerte\": \"stockert\",\n  \"stockfinsteren\": \"stockfinst\",\n  \"stocksteife\": \"stocksteif\",\n  \"stockte\": \"stockt\",\n  \"stockten\": \"stockt\",\n  \"stockungeheuer\": \"stockungeheu\",\n  \"stockwerk\": \"stockwerk\",\n  \"stockwerke\": \"stockwerk\",\n  \"stockwerkes\": \"stockwerk\",\n  \"stockwerks\": \"stockwerk\",\n  \"stockzähnen\": \"stockzahn\",\n  \"stoff\": \"stoff\",\n  \"stoffe\": \"stoff\",\n  \"stöhnend\": \"stohnend\",\n  \"stöhnte\": \"stohnt\",\n  \"stoiker\": \"stoik\",\n  \"stoikern\": \"stoik\",\n  \"stoische\": \"stoisch\",\n  \"stoischer\": \"stoisch\",\n  \"stollen\": \"stoll\",\n  \"stollenkleider\": \"stollenkleid\",\n  \"stolperte\": \"stolpert\",\n  \"stolperten\": \"stolpert\",\n  \"stolz\": \"stolz\",\n  \"stolze\": \"stolz\",\n  \"stolzen\": \"stolz\",\n  \"stolzer\": \"stolz\",\n  \"stolzes\": \"stolz\",\n  \"stolzieren\": \"stolzi\",\n  \"stolzierten\": \"stolziert\",\n  \"stonsdorfer\": \"stonsdorf\",\n  \"stopfte\": \"stopft\",\n  \"stoppelbart\": \"stoppelbart\",\n  \"stoppeln\": \"stoppeln\",\n  \"storb\": \"storb\",\n  \"störche\": \"storch\",\n  \"störe\": \"stor\",\n  \"stören\": \"stor\",\n  \"störend\": \"storend\",\n  \"störenden\": \"storend\",\n  \"störenfried\": \"storenfried\",\n  \"störenfriedes\": \"storenfried\",\n  \"storren\": \"storr\",\n  \"störrig\": \"storrig\",\n  \"stört\": \"stort\",\n  \"störte\": \"stort\",\n  \"störung\": \"storung\",\n  \"störungen\": \"storung\",\n  \"stoss\": \"stoss\",\n  \"stoß\": \"stoss\",\n  \"stössel\": \"stossel\",\n  \"stossen\": \"stoss\",\n  \"stoßen\": \"stoss\",\n  \"stossend\": \"stossend\",\n  \"stösst\": \"stosst\",\n  \"stößt\": \"stosst\",\n  \"stotternder\": \"stotternd\",\n  \"stotterte\": \"stottert\",\n  \"strack\": \"strack\",\n  \"stracks\": \"strack\",\n  \"strafe\": \"straf\",\n  \"strafen\": \"straf\",\n  \"straff\": \"straff\",\n  \"strafgerichte\": \"strafgericht\",\n  \"strafgerichtes\": \"strafgericht\",\n  \"strafgesetzes\": \"strafgesetz\",\n  \"strafkolonie\": \"strafkoloni\",\n  \"strafpredigt\": \"strafpredigt\",\n  \"strafprozess\": \"strafprozess\",\n  \"strafprozeß\": \"strafprozess\",\n  \"straft\": \"straft\",\n  \"strafte\": \"straft\",\n  \"strafübel\": \"strafubel\",\n  \"strafwürdig\": \"strafwurd\",\n  \"strafwürdigen\": \"strafwurd\",\n  \"strahl\": \"strahl\",\n  \"strahle\": \"strahl\",\n  \"strahlen\": \"strahl\",\n  \"strahlend\": \"strahlend\",\n  \"strahlenden\": \"strahlend\",\n  \"strahlender\": \"strahlend\",\n  \"strahlenkrone\": \"strahlenkron\",\n  \"strahlenkronen\": \"strahlenkron\",\n  \"strahlt\": \"strahlt\",\n  \"strahlte\": \"strahlt\",\n  \"strahlten\": \"strahlt\",\n  \"strähnig\": \"strahnig\",\n  \"stramen\": \"stram\",\n  \"straminis\": \"straminis\",\n  \"stramm\": \"stramm\",\n  \"strampampelt\": \"strampampelt\",\n  \"strampelei\": \"strampelei\",\n  \"strampelte\": \"strampelt\",\n  \"strampelten\": \"strampelt\",\n  \"strapazierst\": \"strapazierst\",\n  \"strapinski\": \"strapinski\",\n  \"strapinskis\": \"strapinskis\",\n  \"strass\": \"strass\",\n  \"strassburg\": \"strassburg\",\n  \"strässchen\": \"strassch\",\n  \"strasse\": \"strass\",\n  \"straße\": \"strass\",\n  \"strassen\": \"strass\",\n  \"straßen\": \"strass\",\n  \"straßenbahn\": \"strassenbahn\",\n  \"strassenecke\": \"strasseneck\",\n  \"straßenecke\": \"strasseneck\",\n  \"strassenfestes\": \"strassenf\",\n  \"strassengraben\": \"strassengrab\",\n  \"strassenkörper\": \"strassenkorp\",\n  \"strassenmann\": \"strassenmann\",\n  \"strassenniveau\": \"strassenniveau\",\n  \"straßenniveau\": \"strassenniveau\",\n  \"strassenrand\": \"strassenrand\",\n  \"strassenschlachten\": \"strassenschlacht\",\n  \"strassenseite\": \"strassenseit\",\n  \"straßenseite\": \"strassenseit\",\n  \"strassenverkehr\": \"strassenverkehr\",\n  \"straßenverkehr\": \"strassenverkehr\",\n  \"strassl\": \"strassl\",\n  \"stratagemata\": \"stratagemata\",\n  \"strategischen\": \"strateg\",\n  \"sträubte\": \"straubt\",\n  \"strauch\": \"strauch\",\n  \"straucheln\": \"straucheln\",\n  \"strauchelt\": \"strauchelt\",\n  \"sträucher\": \"strauch\",\n  \"sträuchern\": \"strauch\",\n  \"strauchwitz\": \"strauchwitz\",\n  \"strauss\": \"strauss\",\n  \"strausse\": \"strauss\",\n  \"sträusserl\": \"strausserl\",\n  \"streben\": \"streb\",\n  \"strebens\": \"streb\",\n  \"strebsamer\": \"strebsam\",\n  \"strebt\": \"strebt\",\n  \"strebte\": \"strebt\",\n  \"strebten\": \"strebt\",\n  \"strecke\": \"streck\",\n  \"strecken\": \"streck\",\n  \"streckt\": \"streckt\",\n  \"streckte\": \"streckt\",\n  \"streckten\": \"streckt\",\n  \"streich\": \"streich\",\n  \"streiche\": \"streich\",\n  \"streicheln\": \"streicheln\",\n  \"streichelt\": \"streichelt\",\n  \"streichelte\": \"streichelt\",\n  \"streichelten\": \"streichelt\",\n  \"streichen\": \"streich\",\n  \"streichholz\": \"streichholz\",\n  \"streicht\": \"streicht\",\n  \"streif\": \"streif\",\n  \"streifen\": \"streif\",\n  \"streift\": \"streift\",\n  \"streifte\": \"streift\",\n  \"streiften\": \"streift\",\n  \"streifzug\": \"streifzug\",\n  \"streifzügen\": \"streifzug\",\n  \"streit\": \"streit\",\n  \"streiten\": \"streit\",\n  \"streitende\": \"streitend\",\n  \"streitenden\": \"streitend\",\n  \"streiter\": \"streit\",\n  \"streites\": \"streit\",\n  \"streitet\": \"streitet\",\n  \"streitige\": \"streitig\",\n  \"streitigen\": \"streitig\",\n  \"streitigkeiten\": \"streitig\",\n  \"streits\": \"streit\",\n  \"streng\": \"streng\",\n  \"strenge\": \"streng\",\n  \"strengem\": \"streng\",\n  \"strengen\": \"streng\",\n  \"strenger\": \"streng\",\n  \"strenges\": \"streng\",\n  \"strenggenommen\": \"strenggenomm\",\n  \"strenggeschnittenen\": \"strenggeschnitt\",\n  \"strengste\": \"streng\",\n  \"strengsten\": \"streng\",\n  \"streßgeplagt\": \"stressgeplagt\",\n  \"streue\": \"streu\",\n  \"streuen\": \"streu\",\n  \"streut\": \"streut\",\n  \"streute\": \"streut\",\n  \"strich\": \"strich\",\n  \"strichen\": \"strich\",\n  \"striches\": \"strich\",\n  \"strichlein\": \"strichlein\",\n  \"strichweise\": \"strichweis\",\n  \"strick\": \"strick\",\n  \"stricke\": \"strick\",\n  \"stricken\": \"strick\",\n  \"stricklein\": \"stricklein\",\n  \"strickmaschine\": \"strickmaschin\",\n  \"strickschlingen\": \"strickschling\",\n  \"strickzeug\": \"strickzeug\",\n  \"stritten\": \"stritt\",\n  \"strittigen\": \"strittig\",\n  \"stroh\": \"stroh\",\n  \"strohhut\": \"strohhut\",\n  \"strohhüte\": \"strohhut\",\n  \"strohköpfe\": \"strohkopf\",\n  \"strohpuppe\": \"strohpupp\",\n  \"strohs\": \"stroh\",\n  \"strolche\": \"strolch\",\n  \"strom\": \"strom\",\n  \"stromaufwärts\": \"stromaufwart\",\n  \"strome\": \"strom\",\n  \"ströme\": \"strom\",\n  \"strömen\": \"strom\",\n  \"stromes\": \"strom\",\n  \"stroms\": \"strom\",\n  \"strömt\": \"stromt\",\n  \"strömte\": \"stromt\",\n  \"strömten\": \"stromt\",\n  \"strömung\": \"stromung\",\n  \"strophe\": \"stroph\",\n  \"strotzende\": \"strotzend\",\n  \"strub\": \"strub\",\n  \"strudel\": \"strudel\",\n  \"strukturen\": \"struktur\",\n  \"strukturwandlungen\": \"strukturwandl\",\n  \"strumpf\": \"strumpf\",\n  \"strumpfe\": \"strumpf\",\n  \"strümpfe\": \"strumpf\",\n  \"strümpfen\": \"strumpf\",\n  \"strumpfes\": \"strumpf\",\n  \"strunk\": \"strunk\",\n  \"strychnin\": \"strychnin\",\n  \"strychninbrocken\": \"strychninbrock\",\n  \"stübchen\": \"stubch\",\n  \"stübchens\": \"stubch\",\n  \"stube\": \"stub\",\n  \"stuben\": \"stub\",\n  \"stubenreinheit\": \"stubenrein\",\n  \"stubenschlüssel\": \"stubenschlussel\",\n  \"stubentür\": \"stubentur\",\n  \"stubentüre\": \"stubentur\",\n  \"stück\": \"stuck\",\n  \"stückchen\": \"stuckch\",\n  \"stücke\": \"stuck\",\n  \"stücken\": \"stuck\",\n  \"stücklein\": \"stucklein\",\n  \"stücks\": \"stuck\",\n  \"studen\": \"stud\",\n  \"student\": \"student\",\n  \"studenten\": \"student\",\n  \"studentenmütze\": \"studentenmutz\",\n  \"studentin\": \"studentin\",\n  \"studie\": \"studi\",\n  \"studien\": \"studi\",\n  \"studieren\": \"studi\",\n  \"studiert\": \"studiert\",\n  \"studierte\": \"studiert\",\n  \"studierten\": \"studiert\",\n  \"studio\": \"studio\",\n  \"studios\": \"studios\",\n  \"studium\": \"studium\",\n  \"stufe\": \"stuf\",\n  \"stufen\": \"stuf\",\n  \"stufenweise\": \"stufenweis\",\n  \"stuhl\": \"stuhl\",\n  \"stuhlbeine\": \"stuhlbein\",\n  \"stühlchen\": \"stuhlch\",\n  \"stuhle\": \"stuhl\",\n  \"stühle\": \"stuhl\",\n  \"stühlen\": \"stuhl\",\n  \"stuhles\": \"stuhl\",\n  \"stukkaturarbeiten\": \"stukkaturarbeit\",\n  \"stumm\": \"stumm\",\n  \"stumme\": \"stumm\",\n  \"stummen\": \"stumm\",\n  \"stummer\": \"stumm\",\n  \"stümperhaft\": \"stumperhaft\",\n  \"stumpf\": \"stumpf\",\n  \"stumpfbesen\": \"stumpfbes\",\n  \"stumpfheit\": \"stumpfheit\",\n  \"stumpfnäschen\": \"stumpfnasch\",\n  \"stumpfsinn\": \"stumpfsinn\",\n  \"stumpfsinnig\": \"stumpfsinn\",\n  \"stumpfsinniges\": \"stumpfsinn\",\n  \"stund\": \"stund\",\n  \"stündchen\": \"stundch\",\n  \"stunde\": \"stund\",\n  \"stünde\": \"stund\",\n  \"stündel\": \"stundel\",\n  \"stunden\": \"stund\",\n  \"stünden\": \"stund\",\n  \"stundenlang\": \"stundenlang\",\n  \"stundenlange\": \"stundenlang\",\n  \"stundenlangen\": \"stundenlang\",\n  \"stundenweit\": \"stundenweit\",\n  \"stundenzeiger\": \"stundenzeig\",\n  \"stündleins\": \"stundlein\",\n  \"stündlich\": \"stundlich\",\n  \"stupender\": \"stupend\",\n  \"sturm\": \"sturm\",\n  \"stürme\": \"sturm\",\n  \"stürmen\": \"sturm\",\n  \"sturmflockenwirbel\": \"sturmflockenwirbel\",\n  \"sturmhusche\": \"sturmhusch\",\n  \"stürmisch\": \"sturmisch\",\n  \"stürmischer\": \"sturmisch\",\n  \"sturmriese\": \"sturmries\",\n  \"sturmriesen\": \"sturmries\",\n  \"stürmte\": \"sturmt\",\n  \"stürmten\": \"sturmt\",\n  \"sturmwind\": \"sturmwind\",\n  \"sturz\": \"sturz\",\n  \"sturze\": \"sturz\",\n  \"stürze\": \"sturz\",\n  \"stürzen\": \"sturz\",\n  \"stürzet\": \"sturzet\",\n  \"stürzt\": \"sturzt\",\n  \"stürzte\": \"sturzt\",\n  \"stürzten\": \"sturzt\",\n  \"stuttgart\": \"stuttgart\",\n  \"stuttgarter\": \"stuttgart\",\n  \"stütze\": \"stutz\",\n  \"stutzen\": \"stutz\",\n  \"stützen\": \"stutz\",\n  \"stützend\": \"stutzend\",\n  \"stutzerhaft\": \"stutzerhaft\",\n  \"stützt\": \"stutzt\",\n  \"stutzte\": \"stutzt\",\n  \"stützte\": \"stutzt\",\n  \"stützten\": \"stutzt\",\n  \"sub\": \"sub\",\n  \"subjectis\": \"subjectis\",\n  \"subjekt\": \"subjekt\",\n  \"subjekte\": \"subjekt\",\n  \"subjekten\": \"subjekt\",\n  \"subjektiv\": \"subjektiv\",\n  \"subjektive\": \"subjektiv\",\n  \"subjektiven\": \"subjektiv\",\n  \"subjektiver\": \"subjektiv\",\n  \"subjekts\": \"subjekt\",\n  \"subkultur\": \"subkultur\",\n  \"sublimsten\": \"sublim\",\n  \"subreptionis\": \"subreptionis\",\n  \"substantielle\": \"substantiell\",\n  \"substantiellen\": \"substantiell\",\n  \"substanz\": \"substanz\",\n  \"substanzen\": \"substanz\",\n  \"subsumtion\": \"subsumtion\",\n  \"subtil\": \"subtil\",\n  \"subtile\": \"subtil\",\n  \"subtilen\": \"subtil\",\n  \"subtiler\": \"subtil\",\n  \"subtilste\": \"subtil\",\n  \"success\": \"success\",\n  \"successiva\": \"successiva\",\n  \"suche\": \"such\",\n  \"suchen\": \"such\",\n  \"suchenden\": \"suchend\",\n  \"suchet\": \"suchet\",\n  \"suchst\": \"such\",\n  \"sucht\": \"sucht\",\n  \"suchtbereitschaft\": \"suchtbereitschaft\",\n  \"suchte\": \"sucht\",\n  \"suchten\": \"sucht\",\n  \"suchtforscher\": \"suchtforsch\",\n  \"süchtig\": \"suchtig\",\n  \"suchtmittelkonsum\": \"suchtmittelkonsum\",\n  \"süd\": \"sud\",\n  \"süditalien\": \"suditali\",\n  \"südliches\": \"sudlich\",\n  \"südlondon\": \"sudlondon\",\n  \"südseite\": \"sudseit\",\n  \"südwärts\": \"sudwart\",\n  \"südwestfunk\": \"sudwestfunk\",\n  \"sühnen\": \"suhn\",\n  \"sultan\": \"sultan\",\n  \"sülzpastete\": \"sulzpastet\",\n  \"summ\": \"summ\",\n  \"summarisch\": \"summar\",\n  \"sümmchen\": \"summch\",\n  \"summe\": \"summ\",\n  \"summen\": \"summ\",\n  \"summende\": \"summend\",\n  \"summte\": \"summt\",\n  \"sumpfig\": \"sumpfig\",\n  \"sumpfigen\": \"sumpfig\",\n  \"sumpflöcher\": \"sumpfloch\",\n  \"sumsemann\": \"sumsemann\",\n  \"sumsemännchen\": \"sumsemannch\",\n  \"sumsemänner\": \"sumsemann\",\n  \"sumsemännern\": \"sumsemann\",\n  \"sumsemanns\": \"sumsemann\",\n  \"sumsiselsei\": \"sumsiselsei\",\n  \"sünde\": \"sund\",\n  \"sünden\": \"sund\",\n  \"sündenlose\": \"sundenlos\",\n  \"sünder\": \"sund\",\n  \"sündflut\": \"sundflut\",\n  \"sündhafte\": \"sundhaft\",\n  \"sündigen\": \"sundig\",\n  \"sündigt\": \"sundigt\",\n  \"sunntäg\": \"sunntag\",\n  \"sunt\": \"sunt\",\n  \"superlativ\": \"superlativ\",\n  \"superstition\": \"superstition\",\n  \"suph\": \"suph\",\n  \"suppe\": \"supp\",\n  \"suppenkelle\": \"suppenkell\",\n  \"suppentopf\": \"suppentopf\",\n  \"supremum\": \"supremum\",\n  \"surfen\": \"surf\",\n  \"surfstation\": \"surfstation\",\n  \"suspendierten\": \"suspendiert\",\n  \"süss\": \"suss\",\n  \"süß\": \"suss\",\n  \"süsse\": \"suss\",\n  \"süße\": \"suss\",\n  \"süssem\": \"suss\",\n  \"süssen\": \"suss\",\n  \"süßen\": \"suss\",\n  \"süsser\": \"suss\",\n  \"süsses\": \"suss\",\n  \"süsseste\": \"suss\",\n  \"süssigkeit\": \"sussig\",\n  \"süssigkeiten\": \"sussig\",\n  \"süsslich\": \"susslich\",\n  \"suyu\": \"suyu\",\n  \"sweetheart\": \"sweetheart\",\n  \"swissaid\": \"swissaid\",\n  \"swissair\": \"swissair\",\n  \"sykomoren\": \"sykomor\",\n  \"sylvia\": \"sylvia\",\n  \"symbol\": \"symbol\",\n  \"symbola\": \"symbola\",\n  \"symbole\": \"symbol\",\n  \"symmetrie\": \"symmetri\",\n  \"sympathielage\": \"sympathielag\",\n  \"sympathien\": \"sympathi\",\n  \"sympathiestränge\": \"sympathiestrang\",\n  \"sympathische\": \"sympath\",\n  \"sympathischen\": \"sympath\",\n  \"sympathischer\": \"sympath\",\n  \"symposium\": \"symposium\",\n  \"synkretistischen\": \"synkretist\",\n  \"synodalrat\": \"synodalrat\",\n  \"synodalrätin\": \"synodalratin\",\n  \"synode\": \"synod\",\n  \"synonyme\": \"synonym\",\n  \"synthesis\": \"synthesis\",\n  \"synthetisch\": \"synthet\",\n  \"synthetische\": \"synthet\",\n  \"synthetischen\": \"synthet\",\n  \"synthetischer\": \"synthet\",\n  \"syrien\": \"syri\",\n  \"syriens\": \"syri\",\n  \"system\": \"syst\",\n  \"systematisch\": \"systemat\",\n  \"systematische\": \"systemat\",\n  \"systematischen\": \"systemat\",\n  \"systemen\": \"system\",\n  \"sz\": \"sz\",\n  \"szene\": \"szen\",\n  \"t\": \"t\",\n  \"ta\": \"ta\",\n  \"tabak\": \"tabak\",\n  \"tabaks\": \"tabak\",\n  \"tabaksqualme\": \"tabaksqualm\",\n  \"tabaksteig\": \"tabaksteig\",\n  \"tadel\": \"tadel\",\n  \"tadelloser\": \"tadellos\",\n  \"tadeln\": \"tadeln\",\n  \"tadelswürdig\": \"tadelswurd\",\n  \"tadelte\": \"tadelt\",\n  \"tafel\": \"tafel\",\n  \"tafeldecker\": \"tafeldeck\",\n  \"tafeldeckern\": \"tafeldeck\",\n  \"tafelgeschenke\": \"tafelgeschenk\",\n  \"tafeln\": \"tafeln\",\n  \"tafelseite\": \"tafelseit\",\n  \"tafeltuch\": \"tafeltuch\",\n  \"taferlklass\": \"taferlklass\",\n  \"taft\": \"taft\",\n  \"tag\": \"tag\",\n  \"täg\": \"tag\",\n  \"tage\": \"tag\",\n  \"tagelang\": \"tagelang\",\n  \"tagelohn\": \"tagelohn\",\n  \"tagelöhner\": \"tagelohn\",\n  \"tagelöhnermädchen\": \"tagelohnermadch\",\n  \"tagen\": \"tag\",\n  \"tagereisen\": \"tagereis\",\n  \"tages\": \"tag\",\n  \"tagesanbruch\": \"tagesanbruch\",\n  \"tagesanzeiger\": \"tagesanzeig\",\n  \"tagesgäste\": \"tagesgast\",\n  \"tageshelle\": \"tageshell\",\n  \"tageskasse\": \"tageskass\",\n  \"tageslauf\": \"tageslauf\",\n  \"tageslicht\": \"tageslicht\",\n  \"tagesordnung\": \"tagesordn\",\n  \"tageszeiten\": \"tageszeit\",\n  \"tagewerk\": \"tagewerk\",\n  \"tagi\": \"tagi\",\n  \"täglich\": \"taglich\",\n  \"tägliche\": \"taglich\",\n  \"täglichen\": \"taglich\",\n  \"taglicht\": \"taglicht\",\n  \"taglöhners\": \"taglohn\",\n  \"tagreisen\": \"tagreis\",\n  \"tags\": \"tag\",\n  \"tagtäglich\": \"tagtag\",\n  \"tagträumen\": \"tagtraum\",\n  \"taiga\": \"taiga\",\n  \"takt\": \"takt\",\n  \"takte\": \"takt\",\n  \"taktik\": \"taktik\",\n  \"taktischen\": \"taktisch\",\n  \"tal\": \"tal\",\n  \"talar\": \"talar\",\n  \"tale\": \"tal\",\n  \"talent\": \"talent\",\n  \"taler\": \"tal\",\n  \"täler\": \"tal\",\n  \"talern\": \"tal\",\n  \"talerstücke\": \"talerstuck\",\n  \"tales\": \"tal\",\n  \"talglichten\": \"talglicht\",\n  \"talgrunde\": \"talgrund\",\n  \"talhängen\": \"talhang\",\n  \"tals\": \"tal\",\n  \"talwärts\": \"talwart\",\n  \"tambour\": \"tambour\",\n  \"tamburin\": \"tamburin\",\n  \"tan\": \"tan\",\n  \"tändle\": \"tandl\",\n  \"tanne\": \"tann\",\n  \"tannebaum\": \"tannebaum\",\n  \"tannen\": \"tann\",\n  \"tannenbäumchen\": \"tannenbaumch\",\n  \"tannenbusch\": \"tannenbusch\",\n  \"tannenen\": \"tann\",\n  \"tannengestrüpp\": \"tannengestrupp\",\n  \"tannengetäfels\": \"tannengetafel\",\n  \"tannenhähers\": \"tannenhah\",\n  \"tannenwäldchen\": \"tannenwaldch\",\n  \"tante\": \"tant\",\n  \"tanz\": \"tanz\",\n  \"tanzbein\": \"tanzbein\",\n  \"tanze\": \"tanz\",\n  \"tänze\": \"tanz\",\n  \"tänzelnden\": \"tanzelnd\",\n  \"tänzelte\": \"tanzelt\",\n  \"tanzen\": \"tanz\",\n  \"tanzende\": \"tanzend\",\n  \"tanzenden\": \"tanzend\",\n  \"tanzendes\": \"tanzend\",\n  \"tanzmusik\": \"tanzmus\",\n  \"tanzplatz\": \"tanzplatz\",\n  \"tanzsaal\": \"tanzsaal\",\n  \"tanzsaales\": \"tanzsaal\",\n  \"tanzschritten\": \"tanzschritt\",\n  \"tanzt\": \"tanzt\",\n  \"tanzte\": \"tanzt\",\n  \"tanzten\": \"tanzt\",\n  \"tapet\": \"tapet\",\n  \"tapete\": \"tapet\",\n  \"tapfer\": \"tapf\",\n  \"tapfere\": \"tapf\",\n  \"tapferen\": \"tapf\",\n  \"tapferes\": \"tapf\",\n  \"tapferkeit\": \"tapfer\",\n  \"tapfern\": \"tapf\",\n  \"tappen\": \"tapp\",\n  \"tapper\": \"tapp\",\n  \"täppet\": \"tappet\",\n  \"tappte\": \"tappt\",\n  \"tasche\": \"tasch\",\n  \"taschen\": \"tasch\",\n  \"taschengeld\": \"taschengeld\",\n  \"taschentuch\": \"taschentuch\",\n  \"taschentüchern\": \"taschentuch\",\n  \"taschenuhr\": \"taschenuhr\",\n  \"task\": \"task\",\n  \"tasse\": \"tass\",\n  \"tassen\": \"tass\",\n  \"tasten\": \"tast\",\n  \"tasteten\": \"tastet\",\n  \"tat\": \"tat\",\n  \"tät\": \"tat\",\n  \"täte\": \"tat\",\n  \"taten\": \"tat\",\n  \"täten\": \"tat\",\n  \"tatendrang\": \"tatendrang\",\n  \"tatendranges\": \"tatendrang\",\n  \"tatendurst\": \"tatendurst\",\n  \"täter\": \"tat\",\n  \"tätig\": \"tatig\",\n  \"tätige\": \"tatig\",\n  \"tätigen\": \"tatig\",\n  \"tätiger\": \"tatig\",\n  \"tätiges\": \"tatig\",\n  \"tätigkeit\": \"tatig\",\n  \"tätigkeiten\": \"tatig\",\n  \"tätigkeitsbereiche\": \"tatigkeitsbereich\",\n  \"tätigkeitstriebe\": \"tatigkeitstrieb\",\n  \"tatkraft\": \"tatkraft\",\n  \"tatkräftige\": \"tatkraft\",\n  \"tatkräftiges\": \"tatkraft\",\n  \"tatlust\": \"tatlust\",\n  \"tatsache\": \"tatsach\",\n  \"tatsachen\": \"tatsach\",\n  \"tatsächlich\": \"tatsach\",\n  \"tatsächlichen\": \"tatsach\",\n  \"tätschelten\": \"tatschelt\",\n  \"tatwirklichkeiten\": \"tatwirk\",\n  \"tatzen\": \"tatz\",\n  \"tau\": \"tau\",\n  \"taub\": \"taub\",\n  \"taube\": \"taub\",\n  \"tauben\": \"taub\",\n  \"tauchen\": \"tauch\",\n  \"taucht\": \"taucht\",\n  \"tauchte\": \"taucht\",\n  \"tauchten\": \"taucht\",\n  \"taufe\": \"tauf\",\n  \"taufen\": \"tauf\",\n  \"täufer\": \"tauf\",\n  \"taufnamen\": \"taufnam\",\n  \"taufschein\": \"taufschein\",\n  \"taufstein\": \"taufstein\",\n  \"taufzettel\": \"taufzettel\",\n  \"taugen\": \"taug\",\n  \"taugenichts\": \"taugenicht\",\n  \"tauglich\": \"tauglich\",\n  \"taugliche\": \"tauglich\",\n  \"tauglichen\": \"tauglich\",\n  \"tauglicheres\": \"tauglich\",\n  \"tauglichkeit\": \"tauglich\",\n  \"tauglichsten\": \"tauglich\",\n  \"taugt\": \"taugt\",\n  \"tauige\": \"tauig\",\n  \"tauigen\": \"tauig\",\n  \"taumariechen\": \"taumariech\",\n  \"taumariechens\": \"taumariech\",\n  \"taumeln\": \"taumeln\",\n  \"taumelnd\": \"taumelnd\",\n  \"taumelnder\": \"taumelnd\",\n  \"taumelte\": \"taumelt\",\n  \"taunassen\": \"taunass\",\n  \"tauschen\": \"tausch\",\n  \"täuschen\": \"tausch\",\n  \"täuschender\": \"tauschend\",\n  \"täuscht\": \"tauscht\",\n  \"täuschte\": \"tauscht\",\n  \"täuschung\": \"tauschung\",\n  \"täuschungen\": \"tauschung\",\n  \"tauschwitz\": \"tauschwitz\",\n  \"tausee\": \"tause\",\n  \"tausees\": \"tause\",\n  \"tausend\": \"tausend\",\n  \"tausende\": \"tausend\",\n  \"tausenden\": \"tausend\",\n  \"tausendfachem\": \"tausendfach\",\n  \"tausendfältigen\": \"tausendfalt\",\n  \"tausendkünstlern\": \"tausendkunstl\",\n  \"tausendmal\": \"tausendmal\",\n  \"tausendsgeschichten\": \"tausendsgeschicht\",\n  \"tausendskerl\": \"tausendskerl\",\n  \"tausendskind\": \"tausendskind\",\n  \"tausendsmensch\": \"tausendsmensch\",\n  \"tausendste\": \"tausend\",\n  \"tausig\": \"tausig\",\n  \"taverne\": \"tavern\",\n  \"tax\": \"tax\",\n  \"taxen\": \"tax\",\n  \"taxi\": \"taxi\",\n  \"taxifahrer\": \"taxifahr\",\n  \"technicus\": \"technicus\",\n  \"techniker\": \"technik\",\n  \"technisch\": \"technisch\",\n  \"technischen\": \"technisch\",\n  \"technisches\": \"technisch\",\n  \"techno\": \"techno\",\n  \"teckel\": \"teckel\",\n  \"tecnh\": \"tecnh\",\n  \"tee\": \"tee\",\n  \"teebeutel\": \"teebeutel\",\n  \"teekanne\": \"teekann\",\n  \"teelöffel\": \"teeloffel\",\n  \"tees\": \"tees\",\n  \"teich\": \"teich\",\n  \"teiche\": \"teich\",\n  \"teifi\": \"teifi\",\n  \"teig\": \"teig\",\n  \"teigs\": \"teig\",\n  \"teil\": \"teil\",\n  \"teile\": \"teil\",\n  \"teilen\": \"teil\",\n  \"teilete\": \"teilet\",\n  \"teilhaben\": \"teilhab\",\n  \"teilhaft\": \"teilhaft\",\n  \"teilhaftig\": \"teilhaft\",\n  \"teilnahm\": \"teilnahm\",\n  \"teilnahme\": \"teilnahm\",\n  \"teilnahmlos\": \"teilnahmlos\",\n  \"teilnehmen\": \"teilnehm\",\n  \"teilnehmende\": \"teilnehm\",\n  \"teilnehmer\": \"teilnehm\",\n  \"teilnehmung\": \"teilnehm\",\n  \"teilnimmt\": \"teilnimmt\",\n  \"teils\": \"teil\",\n  \"teilt\": \"teilt\",\n  \"teilte\": \"teilt\",\n  \"teilten\": \"teilt\",\n  \"teilung\": \"teilung\",\n  \"teilweise\": \"teilweis\",\n  \"teilzunehmen\": \"teilzunehm\",\n  \"tel\": \"tel\",\n  \"telefon\": \"telefon\",\n  \"telefonanrufe\": \"telefonanruf\",\n  \"telefone\": \"telefon\",\n  \"telefonen\": \"telefon\",\n  \"telefonhörer\": \"telefonhor\",\n  \"telefoniert\": \"telefoniert\",\n  \"telefonierte\": \"telefoniert\",\n  \"telefonisch\": \"telefon\",\n  \"telegrafisch\": \"telegraf\",\n  \"telegramm\": \"telegramm\",\n  \"telegraphisch\": \"telegraph\",\n  \"telepathische\": \"telepath\",\n  \"telephonieren\": \"telephoni\",\n  \"telephonierten\": \"telephoniert\",\n  \"telephonisch\": \"telephon\",\n  \"telephonische\": \"telephon\",\n  \"telephonischen\": \"telephon\",\n  \"telephonischer\": \"telephon\",\n  \"teller\": \"tell\",\n  \"tellerleckerei\": \"tellerleckerei\",\n  \"tellers\": \"tell\",\n  \"tempel\": \"tempel\",\n  \"tempels\": \"tempel\",\n  \"temperatur\": \"temperatur\",\n  \"tempora\": \"tempora\",\n  \"tendenz\": \"tendenz\",\n  \"tendenzen\": \"tendenz\",\n  \"tennen\": \"tenn\",\n  \"tenöre\": \"tenor\",\n  \"teppich\": \"teppich\",\n  \"teppichartigen\": \"teppichart\",\n  \"teppiche\": \"teppich\",\n  \"teppichen\": \"teppich\",\n  \"teppichweber\": \"teppichweb\",\n  \"termin\": \"termin\",\n  \"terminantur\": \"terminantur\",\n  \"terminus\": \"terminus\",\n  \"terra\": \"terra\",\n  \"terrasse\": \"terrass\",\n  \"terrassen\": \"terrass\",\n  \"territorium\": \"territorium\",\n  \"terroristisch\": \"terrorist\",\n  \"terroristischen\": \"terrorist\",\n  \"terroristischer\": \"terrorist\",\n  \"tertium\": \"tertium\",\n  \"tessiner\": \"tessin\",\n  \"testament\": \"testament\",\n  \"testamentarisch\": \"testamentar\",\n  \"testaments\": \"testament\",\n  \"teuer\": \"teu\",\n  \"teueren\": \"teu\",\n  \"teuerste\": \"teuerst\",\n  \"teufel\": \"teufel\",\n  \"teufels\": \"teufel\",\n  \"teufelsbrücke\": \"teufelsbruck\",\n  \"teufelsgeduld\": \"teufelsgeduld\",\n  \"teufelshexlein\": \"teufelshexlein\",\n  \"teufelshörner\": \"teufelshorn\",\n  \"teufelskünste\": \"teufelskun\",\n  \"teufelsreitern\": \"teufelsreit\",\n  \"teuflisch\": \"teuflisch\",\n  \"teuflische\": \"teuflisch\",\n  \"teuflischen\": \"teuflisch\",\n  \"teure\": \"teur\",\n  \"texas\": \"texas\",\n  \"text\": \"text\",\n  \"thachpanches\": \"thachpanch\",\n  \"thamar\": \"thamar\",\n  \"tharschisch\": \"tharschisch\",\n  \"the\": \"the\",\n  \"theater\": \"theat\",\n  \"theaterbillet\": \"theaterbillet\",\n  \"theatergruppe\": \"theatergrupp\",\n  \"theaterkarten\": \"theaterkart\",\n  \"theaterprinzessin\": \"theaterprinzessin\",\n  \"theaterprospekt\": \"theaterprospekt\",\n  \"theaterszene\": \"theatersz\",\n  \"theke\": \"thek\",\n  \"thema\": \"thema\",\n  \"thematisiert\": \"thematisiert\",\n  \"themen\": \"them\",\n  \"themse\": \"thems\",\n  \"theodor\": \"theodor\",\n  \"theologe\": \"theolog\",\n  \"theologen\": \"theolog\",\n  \"theologie\": \"theologi\",\n  \"theologin\": \"theologin\",\n  \"theologinnen\": \"theologinn\",\n  \"theologisch\": \"theolog\",\n  \"theologische\": \"theolog\",\n  \"theologischen\": \"theolog\",\n  \"theophrastos\": \"theophrastos\",\n  \"theoretisch\": \"theoret\",\n  \"theoretische\": \"theoret\",\n  \"theoretischen\": \"theoret\",\n  \"theoretischer\": \"theoret\",\n  \"theoretisches\": \"theoret\",\n  \"theorie\": \"theori\",\n  \"theorien\": \"theori\",\n  \"theosophen\": \"theosoph\",\n  \"theosophische\": \"theosoph\",\n  \"theresa\": \"theresa\",\n  \"thesen\": \"thes\",\n  \"thesis\": \"thesis\",\n  \"thiel\": \"thiel\",\n  \"thomas\": \"thomas\",\n  \"thron\": \"thron\",\n  \"throne\": \"thron\",\n  \"thronen\": \"thron\",\n  \"thrones\": \"thron\",\n  \"throns\": \"thron\",\n  \"thronstufen\": \"thronstuf\",\n  \"thront\": \"thront\",\n  \"thronte\": \"thront\",\n  \"thubal\": \"thubal\",\n  \"thubalkain\": \"thubalkain\",\n  \"thubalkains\": \"thubalkain\",\n  \"thurgau\": \"thurgau\",\n  \"thv\": \"thv\",\n  \"ti\": \"ti\",\n  \"ticket\": \"ticket\",\n  \"tief\": \"tief\",\n  \"tiefblauem\": \"tiefblau\",\n  \"tiefblauen\": \"tiefblau\",\n  \"tiefe\": \"tief\",\n  \"tiefem\": \"tief\",\n  \"tiefen\": \"tief\",\n  \"tiefer\": \"tief\",\n  \"tiefere\": \"tief\",\n  \"tieferen\": \"tief\",\n  \"tiefern\": \"tief\",\n  \"tiefes\": \"tief\",\n  \"tiefpunkt\": \"tiefpunkt\",\n  \"tiefschwarzes\": \"tiefschwarz\",\n  \"tiefsinnig\": \"tiefsinn\",\n  \"tiefsinnigen\": \"tiefsinn\",\n  \"tiefsinniges\": \"tiefsinn\",\n  \"tiefste\": \"tief\",\n  \"tiefsten\": \"tief\",\n  \"tiefster\": \"tief\",\n  \"tieftönenden\": \"tiefton\",\n  \"tier\": \"tier\",\n  \"tierarzt\": \"tierarzt\",\n  \"tierchen\": \"tierch\",\n  \"tiere\": \"tier\",\n  \"tieren\": \"tier\",\n  \"tieres\": \"tier\",\n  \"tierfabel\": \"tierfabel\",\n  \"tiergattungen\": \"tiergatt\",\n  \"tierheit\": \"tierheit\",\n  \"tierische\": \"tierisch\",\n  \"tierischen\": \"tierisch\",\n  \"tierklaue\": \"tierklau\",\n  \"tierlebens\": \"tierleb\",\n  \"tierlein\": \"tierlein\",\n  \"tiernatur\": \"tiernatur\",\n  \"tiersamen\": \"tiersam\",\n  \"tierschutzverein\": \"tierschutzverein\",\n  \"tierseele\": \"tierseel\",\n  \"tierwelt\": \"tierwelt\",\n  \"tiger\": \"tig\",\n  \"tigern\": \"tig\",\n  \"tiiid\": \"tiiid\",\n  \"tilgen\": \"tilg\",\n  \"tinte\": \"tint\",\n  \"tinten\": \"tint\",\n  \"tintenflaschen\": \"tintenflasch\",\n  \"tintenstrichen\": \"tintenstrich\",\n  \"tippte\": \"tippt\",\n  \"tirilieren\": \"tirili\",\n  \"tirilierte\": \"tiriliert\",\n  \"tisch\": \"tisch\",\n  \"tischbeins\": \"tischbein\",\n  \"tischchen\": \"tischch\",\n  \"tische\": \"tisch\",\n  \"tischen\": \"tisch\",\n  \"tisches\": \"tisch\",\n  \"tischgebet\": \"tischgebet\",\n  \"tischlade\": \"tischlad\",\n  \"tischler\": \"tischl\",\n  \"tischplatte\": \"tischplatt\",\n  \"tischtuch\": \"tischtuch\",\n  \"tischwein\": \"tischwein\",\n  \"titel\": \"titel\",\n  \"titelblatt\": \"titelblatt\",\n  \"titeln\": \"titeln\",\n  \"titelt\": \"titelt\",\n  \"tl\": \"tl\",\n  \"to\": \"to\",\n  \"toaste\": \"toast\",\n  \"toasts\": \"toast\",\n  \"toben\": \"tob\",\n  \"tobende\": \"tobend\",\n  \"tobenden\": \"tobend\",\n  \"tobendes\": \"tobend\",\n  \"tobias\": \"tobias\",\n  \"tobt\": \"tobt\",\n  \"tobte\": \"tobt\",\n  \"tochter\": \"tocht\",\n  \"töchter\": \"tocht\",\n  \"töchtern\": \"tocht\",\n  \"tod\": \"tod\",\n  \"todbette\": \"todbett\",\n  \"todbringend\": \"todbring\",\n  \"tode\": \"tod\",\n  \"todes\": \"tod\",\n  \"todesangst\": \"todesang\",\n  \"todesaussichten\": \"todesaussicht\",\n  \"todesfurcht\": \"todesfurcht\",\n  \"todeskampf\": \"todeskampf\",\n  \"todeskandidaten\": \"todeskandidat\",\n  \"todesschattens\": \"todesschatt\",\n  \"todesschrecken\": \"todesschreck\",\n  \"todesschwadronen\": \"todesschwadron\",\n  \"todesstrafe\": \"todesstraf\",\n  \"todesstrafen\": \"todesstraf\",\n  \"todesstunde\": \"todesstund\",\n  \"todesurteil\": \"todesurteil\",\n  \"todeswerkzeuge\": \"todeswerkzeug\",\n  \"tödlich\": \"todlich\",\n  \"tödliche\": \"todlich\",\n  \"tödlichen\": \"todlich\",\n  \"tödlicher\": \"todlich\",\n  \"todsünd\": \"todsund\",\n  \"todsündigen\": \"todsund\",\n  \"todvollste\": \"todvoll\",\n  \"töff\": \"toff\",\n  \"töfffahrer\": \"tofffahr\",\n  \"toile\": \"toil\",\n  \"toilette\": \"toilett\",\n  \"toilettenstücke\": \"toilettenstuck\",\n  \"toilettenwerkzeug\": \"toilettenwerkzeug\",\n  \"tokaier\": \"tokai\",\n  \"tol\": \"tol\",\n  \"toll\": \"toll\",\n  \"tolle\": \"toll\",\n  \"tollen\": \"toll\",\n  \"toller\": \"toll\",\n  \"tolleren\": \"toll\",\n  \"tolles\": \"toll\",\n  \"tollhaus\": \"tollhaus\",\n  \"tollhäusler\": \"tollhausl\",\n  \"tollheit\": \"tollheit\",\n  \"tollkühnen\": \"tollkuhn\",\n  \"tollste\": \"toll\",\n  \"tollsten\": \"toll\",\n  \"tollte\": \"tollt\",\n  \"tolpatsch\": \"tolpatsch\",\n  \"tolpatschig\": \"tolpatsch\",\n  \"tölpel\": \"tolpel\",\n  \"tölpelhafter\": \"tolpelhaft\",\n  \"tölpeln\": \"tolpeln\",\n  \"tölz\": \"tolz\",\n  \"tombakschnalle\": \"tombakschnall\",\n  \"ton\": \"ton\",\n  \"tonart\": \"tonart\",\n  \"tonbandschnippel\": \"tonbandschnippel\",\n  \"tone\": \"ton\",\n  \"töne\": \"ton\",\n  \"tönen\": \"ton\",\n  \"tönende\": \"tonend\",\n  \"tonfall\": \"tonfall\",\n  \"tonfetzen\": \"tonfetz\",\n  \"toni\": \"toni\",\n  \"tons\": \"ton\",\n  \"tönt\": \"tont\",\n  \"tönte\": \"tont\",\n  \"tönten\": \"tont\",\n  \"top\": \"top\",\n  \"topas\": \"topas\",\n  \"topf\": \"topf\",\n  \"topfbodens\": \"topfbod\",\n  \"töpfchen\": \"topfch\",\n  \"töpfe\": \"topf\",\n  \"töpfen\": \"topf\",\n  \"töpfer\": \"topf\",\n  \"töpfergeschirre\": \"topfergeschirr\",\n  \"töpfers\": \"topf\",\n  \"topfwagens\": \"topfwag\",\n  \"topheth\": \"topheth\",\n  \"topi\": \"topi\",\n  \"topica\": \"topica\",\n  \"topicis\": \"topicis\",\n  \"topik\": \"topik\",\n  \"topoi\": \"topoi\",\n  \"topov\": \"topov\",\n  \"topus\": \"topus\",\n  \"tor\": \"tor\",\n  \"torbogen\": \"torbog\",\n  \"tore\": \"tor\",\n  \"toreinfahrt\": \"toreinfahrt\",\n  \"toren\": \"tor\",\n  \"torenwerk\": \"torenwerk\",\n  \"tores\": \"tor\",\n  \"torgau\": \"torgau\",\n  \"torheit\": \"torheit\",\n  \"torheiten\": \"torheit\",\n  \"töricht\": \"toricht\",\n  \"törichte\": \"toricht\",\n  \"törichten\": \"toricht\",\n  \"torkelte\": \"torkelt\",\n  \"tornister\": \"tornist\",\n  \"tort\": \"tort\",\n  \"torte\": \"tort\",\n  \"tosende\": \"tosend\",\n  \"tot\": \"tot\",\n  \"total\": \"total\",\n  \"totale\": \"total\",\n  \"totalen\": \"total\",\n  \"totalität\": \"totalitat\",\n  \"tote\": \"tot\",\n  \"töte\": \"tot\",\n  \"toten\": \"tot\",\n  \"töten\": \"tot\",\n  \"totenbahre\": \"totenbahr\",\n  \"totenbleich\": \"totenbleich\",\n  \"tötendes\": \"totend\",\n  \"totengebeine\": \"totengebein\",\n  \"totenmusik\": \"totenmus\",\n  \"tötens\": \"tot\",\n  \"totenstill\": \"totenstill\",\n  \"toter\": \"tot\",\n  \"totes\": \"tot\",\n  \"tötet\": \"totet\",\n  \"tötete\": \"totet\",\n  \"töteten\": \"totet\",\n  \"totgemacht\": \"totgemacht\",\n  \"totgeprügelt\": \"totgeprugelt\",\n  \"totgeschlagen\": \"totgeschlag\",\n  \"totgestellt\": \"totgestellt\",\n  \"totlachen\": \"totlach\",\n  \"totmachen\": \"totmach\",\n  \"totmachte\": \"totmacht\",\n  \"totschlag\": \"totschlag\",\n  \"totschlagen\": \"totschlag\",\n  \"totstellen\": \"totstell\",\n  \"tottrat\": \"tottrat\",\n  \"tötung\": \"totung\",\n  \"touv\": \"touv\",\n  \"traam\": \"traam\",\n  \"trab\": \"trab\",\n  \"trabe\": \"trab\",\n  \"tracht\": \"tracht\",\n  \"trachten\": \"tracht\",\n  \"trachtet\": \"trachtet\",\n  \"trachtete\": \"trachtet\",\n  \"trachteten\": \"trachtet\",\n  \"tradition\": \"tradition\",\n  \"traditionellen\": \"traditionell\",\n  \"traditionen\": \"tradition\",\n  \"traf\": \"traf\",\n  \"trafen\": \"traf\",\n  \"trag\": \"trag\",\n  \"träg\": \"trag\",\n  \"tragbar\": \"tragbar\",\n  \"trage\": \"trag\",\n  \"träge\": \"trag\",\n  \"tragen\": \"trag\",\n  \"trägen\": \"trag\",\n  \"tragend\": \"tragend\",\n  \"tragenden\": \"tragend\",\n  \"träger\": \"trag\",\n  \"trägerschaft\": \"tragerschaft\",\n  \"trägheit\": \"tragheit\",\n  \"tragik\": \"tragik\",\n  \"tragisch\": \"tragisch\",\n  \"tragische\": \"tragisch\",\n  \"tragischen\": \"tragisch\",\n  \"trägt\": \"tragt\",\n  \"training\": \"training\",\n  \"traktätchen\": \"traktatch\",\n  \"traktatus\": \"traktatus\",\n  \"trällern\": \"trall\",\n  \"tranchierens\": \"tranchier\",\n  \"träne\": \"tran\",\n  \"tränen\": \"tran\",\n  \"tränenbrot\": \"tranenbrot\",\n  \"trank\": \"trank\",\n  \"tranken\": \"trank\",\n  \"tränken\": \"trank\",\n  \"tränket\": \"tranket\",\n  \"trankopfer\": \"trankopf\",\n  \"trankst\": \"trank\",\n  \"tränkst\": \"trank\",\n  \"tränkte\": \"trankt\",\n  \"tranlämpchen\": \"tranlampch\",\n  \"transzendent\": \"transzendent\",\n  \"transzendental\": \"transzendental\",\n  \"transzendentale\": \"transzendental\",\n  \"transzendentalen\": \"transzendental\",\n  \"transzendentales\": \"transzendental\",\n  \"transzendente\": \"transzendent\",\n  \"transzendenten\": \"transzendent\",\n  \"transzendenz\": \"transzendenz\",\n  \"trapfenden\": \"trapfend\",\n  \"trapfhirsch\": \"trapfhirsch\",\n  \"trat\": \"trat\",\n  \"traten\": \"trat\",\n  \"trau\": \"trau\",\n  \"traube\": \"traub\",\n  \"trauben\": \"traub\",\n  \"trauen\": \"trau\",\n  \"trauer\": \"trau\",\n  \"trauere\": \"trau\",\n  \"trauergang\": \"trauergang\",\n  \"trauerkapelle\": \"trauerkapell\",\n  \"trauern\": \"trau\",\n  \"trauernd\": \"trauernd\",\n  \"trauernde\": \"trauernd\",\n  \"trauernden\": \"trauernd\",\n  \"trauernder\": \"trauernd\",\n  \"trauerspiel\": \"trauerspiel\",\n  \"trauerspielen\": \"trauerspiel\",\n  \"trauert\": \"trauert\",\n  \"trauerte\": \"trauert\",\n  \"trauerzeit\": \"trauerzeit\",\n  \"trauet\": \"trauet\",\n  \"traufe\": \"trauf\",\n  \"träufeln\": \"traufeln\",\n  \"träufelt\": \"traufelt\",\n  \"träufelten\": \"traufelt\",\n  \"traulich\": \"traulich\",\n  \"traulichen\": \"traulich\",\n  \"traum\": \"traum\",\n  \"traumberuf\": \"traumberuf\",\n  \"traumbüchlein\": \"traumbuchlein\",\n  \"traume\": \"traum\",\n  \"träume\": \"traum\",\n  \"träumen\": \"traum\",\n  \"träumenden\": \"traumend\",\n  \"träumereien\": \"traumerei\",\n  \"träumerisch\": \"traumer\",\n  \"träumerischen\": \"traumer\",\n  \"traumhafter\": \"traumhaft\",\n  \"traumlicht\": \"traumlicht\",\n  \"traumseligkeit\": \"traumsel\",\n  \"träumst\": \"traum\",\n  \"träumt\": \"traumt\",\n  \"träumte\": \"traumt\",\n  \"träumten\": \"traumt\",\n  \"traurig\": \"traurig\",\n  \"traurige\": \"traurig\",\n  \"traurigen\": \"traurig\",\n  \"trauriger\": \"traurig\",\n  \"trauriges\": \"traurig\",\n  \"traurigkeit\": \"traurig\",\n  \"traurigs\": \"traurig\",\n  \"traurigste\": \"traurig\",\n  \"traut\": \"traut\",\n  \"traute\": \"traut\",\n  \"trauten\": \"traut\",\n  \"trautes\": \"traut\",\n  \"trauung\": \"trauung\",\n  \"treffe\": \"treff\",\n  \"treffen\": \"treff\",\n  \"treffenden\": \"treffend\",\n  \"trefflich\": \"trefflich\",\n  \"trefflichen\": \"trefflich\",\n  \"trefflicher\": \"trefflich\",\n  \"treffliches\": \"trefflich\",\n  \"treib\": \"treib\",\n  \"treiben\": \"treib\",\n  \"treibend\": \"treibend\",\n  \"treibenden\": \"treibend\",\n  \"treiber\": \"treib\",\n  \"treibern\": \"treib\",\n  \"treibst\": \"treib\",\n  \"treibt\": \"treibt\",\n  \"tremolierte\": \"tremoliert\",\n  \"trend\": \"trend\",\n  \"trennen\": \"trenn\",\n  \"trennt\": \"trennt\",\n  \"trennte\": \"trennt\",\n  \"trennten\": \"trennt\",\n  \"trennung\": \"trennung\",\n  \"trennungen\": \"trennung\",\n  \"treppe\": \"trepp\",\n  \"treppen\": \"trepp\",\n  \"treppenabsatz\": \"treppenabsatz\",\n  \"treppenaufgänge\": \"treppenaufgang\",\n  \"treppengeländer\": \"treppengeland\",\n  \"treppenhaus\": \"treppenhaus\",\n  \"treppenstufen\": \"treppenstuf\",\n  \"trete\": \"tret\",\n  \"treten\": \"tret\",\n  \"tretet\": \"tretet\",\n  \"treu\": \"treu\",\n  \"treue\": \"treu\",\n  \"treuem\": \"treu\",\n  \"treuen\": \"treu\",\n  \"treuer\": \"treu\",\n  \"treuere\": \"treu\",\n  \"treues\": \"treu\",\n  \"treugeliebter\": \"treugeliebt\",\n  \"treuherzig\": \"treuherz\",\n  \"treuherzige\": \"treuherz\",\n  \"treuherzigen\": \"treuherz\",\n  \"treuherziges\": \"treuherz\",\n  \"treulich\": \"treulich\",\n  \"treulos\": \"treulos\",\n  \"treulosen\": \"treulos\",\n  \"treuloser\": \"treulos\",\n  \"treulosigkeit\": \"treulos\",\n  \"treuste\": \"treust\",\n  \"triangel\": \"triangel\",\n  \"tribut\": \"tribut\",\n  \"trieb\": \"trieb\",\n  \"triebe\": \"trieb\",\n  \"trieben\": \"trieb\",\n  \"triebene\": \"trieb\",\n  \"triebfeder\": \"triebfed\",\n  \"triebfedern\": \"triebfed\",\n  \"triefaugen\": \"triefaug\",\n  \"triefend\": \"triefend\",\n  \"triefenden\": \"triefend\",\n  \"triefendes\": \"triefend\",\n  \"triefigen\": \"triefig\",\n  \"trieften\": \"trieft\",\n  \"trifft\": \"trifft\",\n  \"triften\": \"trift\",\n  \"triller\": \"trill\",\n  \"trillernde\": \"trillernd\",\n  \"trinken\": \"trink\",\n  \"trinkenden\": \"trinkend\",\n  \"trinkest\": \"trink\",\n  \"trinkgeld\": \"trinkgeld\",\n  \"trinkhallen\": \"trinkhall\",\n  \"trinkschale\": \"trinkschal\",\n  \"trinkt\": \"trinkt\",\n  \"tritt\": \"tritt\",\n  \"trittbrett\": \"trittbrett\",\n  \"tritte\": \"tritt\",\n  \"tritten\": \"tritt\",\n  \"trittst\": \"tritt\",\n  \"triumph\": \"triumph\",\n  \"triumphe\": \"triumph\",\n  \"triumphieren\": \"triumphi\",\n  \"triumphierend\": \"triumphier\",\n  \"triviale\": \"trivial\",\n  \"trivialität\": \"trivialitat\",\n  \"trivialitäten\": \"trivialitat\",\n  \"trocken\": \"trock\",\n  \"trockene\": \"trock\",\n  \"trockenen\": \"trock\",\n  \"trockener\": \"trock\",\n  \"trockenes\": \"trock\",\n  \"trockenstangen\": \"trockenstang\",\n  \"trocknen\": \"trockn\",\n  \"trocknend\": \"trocknend\",\n  \"trocknete\": \"trocknet\",\n  \"trockneten\": \"trocknet\",\n  \"troddel\": \"troddel\",\n  \"troddeln\": \"troddeln\",\n  \"trog\": \"trog\",\n  \"troge\": \"trog\",\n  \"trollen\": \"troll\",\n  \"trollt\": \"trollt\",\n  \"trommel\": \"trommel\",\n  \"trommelfell\": \"trommelfell\",\n  \"trommeln\": \"trommeln\",\n  \"trommelte\": \"trommelt\",\n  \"trompeten\": \"trompet\",\n  \"trompeter\": \"trompet\",\n  \"trompeters\": \"trompet\",\n  \"tropf\": \"tropf\",\n  \"tröpfe\": \"tropf\",\n  \"tropfen\": \"tropf\",\n  \"tropfensaum\": \"tropfensaum\",\n  \"tropfenschweren\": \"tropfenschw\",\n  \"tröpflein\": \"tropflein\",\n  \"tropft\": \"tropft\",\n  \"tropften\": \"tropft\",\n  \"trophäe\": \"tropha\",\n  \"tross\": \"tross\",\n  \"troß\": \"tross\",\n  \"trosse\": \"tross\",\n  \"trossknechte\": \"trossknecht\",\n  \"troßknechte\": \"trossknecht\",\n  \"trost\": \"trost\",\n  \"tröst\": \"trost\",\n  \"trösten\": \"trost\",\n  \"tröstende\": \"trostend\",\n  \"tröstenden\": \"trostend\",\n  \"tröster\": \"trost\",\n  \"trostes\": \"trost\",\n  \"tröstet\": \"trostet\",\n  \"tröstete\": \"trostet\",\n  \"trostlos\": \"trostlos\",\n  \"trostlose\": \"trostlos\",\n  \"trostlosen\": \"trostlos\",\n  \"trostlosesten\": \"trostlos\",\n  \"trostlosigkeit\": \"trostlos\",\n  \"tröstungen\": \"trostung\",\n  \"trottel\": \"trottel\",\n  \"trottete\": \"trottet\",\n  \"trotz\": \"trotz\",\n  \"trotzdem\": \"trotzd\",\n  \"trotzig\": \"trotzig\",\n  \"trotzige\": \"trotzig\",\n  \"trotzigen\": \"trotzig\",\n  \"trotziges\": \"trotzig\",\n  \"trotzten\": \"trotzt\",\n  \"trübe\": \"trub\",\n  \"trubel\": \"trubel\",\n  \"trüben\": \"trub\",\n  \"trüber\": \"trub\",\n  \"trübes\": \"trub\",\n  \"trübsal\": \"trubsal\",\n  \"trübsale\": \"trubsal\",\n  \"trübselig\": \"trubsel\",\n  \"trübselige\": \"trubsel\",\n  \"trübseligen\": \"trubsel\",\n  \"trübseliger\": \"trubsel\",\n  \"trübt\": \"trubt\",\n  \"trübte\": \"trubt\",\n  \"trüffeln\": \"truffeln\",\n  \"trug\": \"trug\",\n  \"trüge\": \"trug\",\n  \"trugen\": \"trug\",\n  \"trügerische\": \"truger\",\n  \"trügerischer\": \"truger\",\n  \"truggestalten\": \"truggestalt\",\n  \"truggründe\": \"truggrund\",\n  \"trüglich\": \"truglich\",\n  \"trüglicher\": \"truglich\",\n  \"trüglichkeit\": \"truglich\",\n  \"trugvoll\": \"trugvoll\",\n  \"trummen\": \"trumm\",\n  \"trümmer\": \"trumm\",\n  \"trümmerhaufen\": \"trummerhauf\",\n  \"trümmern\": \"trumm\",\n  \"trunken\": \"trunk\",\n  \"trunkenen\": \"trunk\",\n  \"trunkener\": \"trunk\",\n  \"trupp\": \"trupp\",\n  \"trüppchen\": \"truppch\",\n  \"truppe\": \"trupp\",\n  \"truppen\": \"trupp\",\n  \"trupps\": \"trupps\",\n  \"trutzig\": \"trutzig\",\n  \"tu\": \"tu\",\n  \"tü\": \"tu\",\n  \"tubalkain\": \"tubalkain\",\n  \"tuch\": \"tuch\",\n  \"tuche\": \"tuch\",\n  \"tüchel\": \"tuchel\",\n  \"tücher\": \"tuch\",\n  \"tuchhose\": \"tuchhos\",\n  \"tüchl\": \"tuchl\",\n  \"tüchtig\": \"tuchtig\",\n  \"tüchtige\": \"tuchtig\",\n  \"tüchtigem\": \"tuchtig\",\n  \"tüchtigen\": \"tuchtig\",\n  \"tüchtiger\": \"tuchtig\",\n  \"tüchtiges\": \"tuchtig\",\n  \"tüchtigkeit\": \"tuchtig\",\n  \"tücke\": \"tuck\",\n  \"tücken\": \"tuck\",\n  \"tückischer\": \"tuckisch\",\n  \"tue\": \"tue\",\n  \"tuest\": \"tuest\",\n  \"tüftelte\": \"tuftelt\",\n  \"tugend\": \"tugend\",\n  \"tugenden\": \"tugend\",\n  \"tugendgesinnung\": \"tugendgesinn\",\n  \"tugendhaft\": \"tugendhaft\",\n  \"tugendhafte\": \"tugendhaft\",\n  \"tugendhaften\": \"tugendhaft\",\n  \"tugendhafter\": \"tugendhaft\",\n  \"tugendhafteste\": \"tugendhaft\",\n  \"tugendsame\": \"tugendsam\",\n  \"tummel\": \"tummel\",\n  \"tummelte\": \"tummelt\",\n  \"tümpel\": \"tumpel\",\n  \"tumult\": \"tumult\",\n  \"tun\": \"tun\",\n  \"tünche\": \"tunch\",\n  \"tünchen\": \"tunch\",\n  \"tundra\": \"tundra\",\n  \"tunika\": \"tunika\",\n  \"tunlich\": \"tunlich\",\n  \"tunlichkeit\": \"tunlich\",\n  \"tuns\": \"tun\",\n  \"tüp\": \"tup\",\n  \"tür\": \"tur\",\n  \"turbane\": \"turban\",\n  \"türe\": \"tur\",\n  \"türen\": \"tur\",\n  \"türflügel\": \"turflugel\",\n  \"türfüllung\": \"turfull\",\n  \"turin\": \"turin\",\n  \"turiner\": \"turin\",\n  \"turkelte\": \"turkelt\",\n  \"türken\": \"turk\",\n  \"türkisch\": \"turkisch\",\n  \"türkische\": \"turkisch\",\n  \"türkischem\": \"turkisch\",\n  \"türkischen\": \"turkisch\",\n  \"türkischer\": \"turkisch\",\n  \"türklinke\": \"turklink\",\n  \"turm\": \"turm\",\n  \"turmartigen\": \"turmart\",\n  \"türmchen\": \"turmch\",\n  \"turme\": \"turm\",\n  \"türme\": \"turm\",\n  \"türmen\": \"turm\",\n  \"turmknöpfe\": \"turmknopf\",\n  \"turmstube\": \"turmstub\",\n  \"türmte\": \"turmt\",\n  \"turmuhr\": \"turmuhr\",\n  \"turnübung\": \"turnub\",\n  \"türöffner\": \"turoffn\",\n  \"türöffners\": \"turoffn\",\n  \"türschloss\": \"turschloss\",\n  \"türseite\": \"turseit\",\n  \"turteltäubchen\": \"turteltaubch\",\n  \"turteltauben\": \"turteltaub\",\n  \"tuscheln\": \"tuscheln\",\n  \"tust\": \"tust\",\n  \"tut\": \"tut\",\n  \"tvn\": \"tvn\",\n  \"typen\": \"typ\",\n  \"typik\": \"typik\",\n  \"typisches\": \"typisch\",\n  \"typus\": \"typus\",\n  \"tyrannei\": \"tyrannei\",\n  \"tyrannen\": \"tyrann\",\n  \"tyrus\": \"tyrus\",\n  \"u\": \"u\",\n  \"uax\": \"uax\",\n  \"üb\": \"ub\",\n  \"übel\": \"ubel\",\n  \"übelgenommen\": \"ubelgenomm\",\n  \"übelgeruch\": \"ubelgeruch\",\n  \"übelgerüche\": \"ubelgeruch\",\n  \"übelklänge\": \"ubelklang\",\n  \"übeln\": \"ubeln\",\n  \"übels\": \"ubel\",\n  \"übeltäter\": \"ubeltat\",\n  \"übeltun\": \"ubeltun\",\n  \"übelwollend\": \"ubelwoll\",\n  \"übelzunehmen\": \"ubelzunehm\",\n  \"üben\": \"uben\",\n  \"über\": \"uber\",\n  \"uberall\": \"uberall\",\n  \"überall\": \"uberall\",\n  \"überallhin\": \"uberallhin\",\n  \"überaus\": \"uberaus\",\n  \"überbelegt\": \"uberbelegt\",\n  \"überbieten\": \"uberbiet\",\n  \"überbleibsel\": \"uberbleibsel\",\n  \"überbleibseln\": \"uberbleibseln\",\n  \"überbleibsels\": \"uberbleibsel\",\n  \"überblick\": \"uberblick\",\n  \"überbot\": \"uberbot\",\n  \"überboten\": \"uberbot\",\n  \"überbracht\": \"uberbracht\",\n  \"überbrachte\": \"uberbracht\",\n  \"überbringen\": \"uberbring\",\n  \"überbringenden\": \"uberbring\",\n  \"überbringer\": \"uberbring\",\n  \"überdachte\": \"uberdacht\",\n  \"überdachten\": \"uberdacht\",\n  \"überdeckt\": \"uberdeckt\",\n  \"überdem\": \"uberd\",\n  \"überdies\": \"uberdi\",\n  \"überdimensionalen\": \"uberdimensional\",\n  \"überdruss\": \"uberdruss\",\n  \"überdruß\": \"uberdruss\",\n  \"überdrusses\": \"uberdruss\",\n  \"überdrüssig\": \"uberdruss\",\n  \"übereilen\": \"ubereil\",\n  \"übereilung\": \"ubereil\",\n  \"überein\": \"uberein\",\n  \"übereinand\": \"ubereinand\",\n  \"übereinander\": \"ubereinand\",\n  \"übereinandergestellten\": \"ubereinandergestellt\",\n  \"übereinstimmen\": \"ubereinstimm\",\n  \"übereinstimmende\": \"ubereinstimm\",\n  \"übereinstimmt\": \"ubereinstimmt\",\n  \"übereinstimmte\": \"ubereinstimmt\",\n  \"übereinstimmung\": \"ubereinstimm\",\n  \"übereinstimmungen\": \"ubereinstimm\",\n  \"übereinwirkten\": \"ubereinwirkt\",\n  \"übereinzustimmen\": \"ubereinzustimm\",\n  \"überempfindlich\": \"uberempfind\",\n  \"überfahren\": \"uberfahr\",\n  \"überfall\": \"uberfall\",\n  \"überfalle\": \"uberfall\",\n  \"überfallen\": \"uberfall\",\n  \"überfein\": \"uberfein\",\n  \"überfiel\": \"uberfiel\",\n  \"überfliessendes\": \"uberfliess\",\n  \"überfließendes\": \"uberfliess\",\n  \"überflog\": \"uberflog\",\n  \"überfloss\": \"uberfloss\",\n  \"überflügeln\": \"uberflugeln\",\n  \"überfluss\": \"uberfluss\",\n  \"überfluß\": \"uberfluss\",\n  \"überflusse\": \"uberfluss\",\n  \"überflüssig\": \"uberfluss\",\n  \"überflüssige\": \"uberfluss\",\n  \"überflüssigkeit\": \"uberfluss\",\n  \"überfluten\": \"uberflut\",\n  \"überflutenden\": \"uberflut\",\n  \"überflutender\": \"uberflut\",\n  \"überflutung\": \"uberflut\",\n  \"überfordern\": \"uberford\",\n  \"überfüllten\": \"uberfullt\",\n  \"übergab\": \"ubergab\",\n  \"übergang\": \"ubergang\",\n  \"übergange\": \"ubergang\",\n  \"übergänge\": \"ubergang\",\n  \"übergangsdomizil\": \"ubergangsdomizil\",\n  \"übergangsphase\": \"ubergangsphas\",\n  \"übergeben\": \"ubergeb\",\n  \"übergegangen\": \"ubergegang\",\n  \"übergehen\": \"ubergeh\",\n  \"übergeht\": \"ubergeht\",\n  \"übergeleitet\": \"ubergeleitet\",\n  \"übergeordneten\": \"ubergeordnet\",\n  \"übergepanscht\": \"ubergepanscht\",\n  \"übergepflanzt\": \"ubergepflanzt\",\n  \"übergeschnappt\": \"ubergeschnappt\",\n  \"übergewicht\": \"ubergewicht\",\n  \"übergingen\": \"uberging\",\n  \"überglücklich\": \"ubergluck\",\n  \"übergossen\": \"ubergoss\",\n  \"übergossenen\": \"ubergoss\",\n  \"übergriffe\": \"ubergriff\",\n  \"übergrosse\": \"ubergross\",\n  \"übergrünten\": \"ubergrunt\",\n  \"überhasten\": \"uberhast\",\n  \"überhäuft\": \"uberhauft\",\n  \"überhäufte\": \"uberhauft\",\n  \"überhaupt\": \"uberhaupt\",\n  \"überheben\": \"uberheb\",\n  \"überhebung\": \"uberheb\",\n  \"überholte\": \"uberholt\",\n  \"überholten\": \"uberholt\",\n  \"überhöre\": \"uberhor\",\n  \"überhören\": \"uberhor\",\n  \"überhört\": \"uberhort\",\n  \"überhörte\": \"uberhort\",\n  \"überhuschten\": \"uberhuscht\",\n  \"überkam\": \"uberkam\",\n  \"überkamen\": \"uberkam\",\n  \"überkollerte\": \"uberkollert\",\n  \"überkommen\": \"uberkomm\",\n  \"überlagerung\": \"uberlager\",\n  \"überlasse\": \"uberlass\",\n  \"überlassen\": \"uberlass\",\n  \"überlasset\": \"uberlasset\",\n  \"überlasst\": \"uberlasst\",\n  \"überlässt\": \"uberlasst\",\n  \"überläßt\": \"uberlasst\",\n  \"überlaufenem\": \"uberlauf\",\n  \"überlaufenes\": \"uberlauf\",\n  \"überleben\": \"uberleb\",\n  \"überlebenstechnischen\": \"uberlebenstechn\",\n  \"überlebt\": \"uberlebt\",\n  \"überleg\": \"uberleg\",\n  \"überlegen\": \"uberleg\",\n  \"überlegend\": \"uberleg\",\n  \"überlegene\": \"uberleg\",\n  \"überlegenheit\": \"uberleg\",\n  \"überlegt\": \"uberlegt\",\n  \"überlegte\": \"uberlegt\",\n  \"überlegten\": \"uberlegt\",\n  \"überlegung\": \"uberleg\",\n  \"überlegungen\": \"uberleg\",\n  \"überlieferungen\": \"uberliefer\",\n  \"überliess\": \"uberliess\",\n  \"überließ\": \"uberliess\",\n  \"überliesse\": \"uberliess\",\n  \"überliessen\": \"uberliess\",\n  \"überlistet\": \"uberlistet\",\n  \"überlud\": \"uberlud\",\n  \"überm\": \"uberm\",\n  \"übermacht\": \"ubermacht\",\n  \"übermächtigen\": \"ubermacht\",\n  \"übermannt\": \"ubermannt\",\n  \"übermässig\": \"ubermass\",\n  \"übermäßig\": \"ubermass\",\n  \"übermorgen\": \"ubermorg\",\n  \"übermüdet\": \"ubermudet\",\n  \"übermüdeten\": \"ubermudet\",\n  \"übermut\": \"ubermut\",\n  \"übermütig\": \"ubermut\",\n  \"übermütige\": \"ubermut\",\n  \"übermütigem\": \"ubermut\",\n  \"übermütigen\": \"ubermut\",\n  \"übermütiger\": \"ubermut\",\n  \"übernachten\": \"ubernacht\",\n  \"übernahm\": \"ubernahm\",\n  \"übernamen\": \"ubernam\",\n  \"übernehmen\": \"ubernehm\",\n  \"übernimmt\": \"ubernimmt\",\n  \"übernommen\": \"ubernomm\",\n  \"überparteiliche\": \"uberpartei\",\n  \"überprüfe\": \"uberpruf\",\n  \"überprüfen\": \"uberpruf\",\n  \"überquer\": \"uberqu\",\n  \"überquert\": \"uberquert\",\n  \"überragte\": \"uberragt\",\n  \"überrasche\": \"uberrasch\",\n  \"überraschen\": \"uberrasch\",\n  \"überraschend\": \"uberrasch\",\n  \"überraschenden\": \"uberrasch\",\n  \"überraschenderweise\": \"uberraschenderweis\",\n  \"überrascht\": \"uberrascht\",\n  \"überraschte\": \"uberrascht\",\n  \"überraschten\": \"uberrascht\",\n  \"überraschung\": \"uberrasch\",\n  \"überreden\": \"uberred\",\n  \"überredet\": \"uberredet\",\n  \"überredung\": \"uberred\",\n  \"überredungen\": \"uberred\",\n  \"überredungsgiften\": \"uberredungsgift\",\n  \"überreichen\": \"uberreich\",\n  \"überreicht\": \"uberreicht\",\n  \"überreizung\": \"uberreiz\",\n  \"überrest\": \"uberr\",\n  \"überreste\": \"uberr\",\n  \"überresten\": \"uberr\",\n  \"überrock\": \"uberrock\",\n  \"überrocks\": \"uberrock\",\n  \"überrumpeln\": \"uberrumpeln\",\n  \"übers\": \"uber\",\n  \"übersäete\": \"ubersaet\",\n  \"übersandt\": \"ubersandt\",\n  \"übersät\": \"ubersat\",\n  \"überschattet\": \"uberschattet\",\n  \"überschatteten\": \"uberschattet\",\n  \"überschätzt\": \"uberschatzt\",\n  \"überschauen\": \"uberschau\",\n  \"überschauend\": \"uberschau\",\n  \"überschaute\": \"uberschaut\",\n  \"überschigg\": \"uberschigg\",\n  \"überschlagend\": \"uberschlag\",\n  \"überschlug\": \"uberschlug\",\n  \"überschreiten\": \"uberschreit\",\n  \"überschrieben\": \"uberschrieb\",\n  \"überschrift\": \"uberschrift\",\n  \"überschriften\": \"uberschrift\",\n  \"überschritten\": \"uberschritt\",\n  \"überschwemmt\": \"uberschwemmt\",\n  \"überschwemmung\": \"uberschwemm\",\n  \"überschwemmungen\": \"uberschwemm\",\n  \"überschwenglich\": \"uberschweng\",\n  \"überschwengliche\": \"uberschweng\",\n  \"überschwenglichen\": \"uberschweng\",\n  \"überschwengliches\": \"uberschweng\",\n  \"übersee\": \"uberse\",\n  \"übersehbaren\": \"ubersehbar\",\n  \"übersehen\": \"uberseh\",\n  \"übersehenden\": \"uberseh\",\n  \"übersetzen\": \"ubersetz\",\n  \"übersetzt\": \"ubersetzt\",\n  \"übersetzte\": \"ubersetzt\",\n  \"übersetzung\": \"ubersetz\",\n  \"übersiedeln\": \"ubersiedeln\",\n  \"übersiedelt\": \"ubersiedelt\",\n  \"übersiedelte\": \"ubersiedelt\",\n  \"übersiedelten\": \"ubersiedelt\",\n  \"übersiedlung\": \"ubersiedl\",\n  \"übersinnlich\": \"ubersinn\",\n  \"übersinnliche\": \"ubersinn\",\n  \"übersinnlichen\": \"ubersinn\",\n  \"übersinnlicher\": \"ubersinn\",\n  \"übersinnliches\": \"ubersinn\",\n  \"überspannt\": \"uberspannt\",\n  \"übersponnen\": \"ubersponn\",\n  \"übersprang\": \"ubersprang\",\n  \"überstanden\": \"uberstand\",\n  \"überstehen\": \"ubersteh\",\n  \"übersteigt\": \"ubersteigt\",\n  \"überstieg\": \"uberstieg\",\n  \"überstiegen\": \"uberstieg\",\n  \"überstrapaziert\": \"uberstrapaziert\",\n  \"überstrichen\": \"uberstrich\",\n  \"überströmendem\": \"uberstrom\",\n  \"überströmender\": \"uberstrom\",\n  \"überstürzend\": \"ubersturz\",\n  \"übertönen\": \"uberton\",\n  \"übertrage\": \"ubertrag\",\n  \"übertragen\": \"ubertrag\",\n  \"übertragenen\": \"ubertrag\",\n  \"übertreibe\": \"ubertreib\",\n  \"übertreiben\": \"ubertreib\",\n  \"übertreibungen\": \"ubertreib\",\n  \"übertreten\": \"ubertret\",\n  \"übertretung\": \"ubertret\",\n  \"übertretungen\": \"ubertret\",\n  \"übertrieb\": \"ubertrieb\",\n  \"übertrieben\": \"ubertrieb\",\n  \"übertriebener\": \"ubertrieb\",\n  \"übertrifft\": \"ubertrifft\",\n  \"übertroffen\": \"ubertroff\",\n  \"überverdienstlicher\": \"uberverdienst\",\n  \"übervölkert\": \"ubervolkert\",\n  \"übervorteilen\": \"ubervorteil\",\n  \"übervorteilend\": \"ubervorteil\",\n  \"überwachen\": \"uberwach\",\n  \"überwachsen\": \"uberwachs\",\n  \"überwacht\": \"uberwacht\",\n  \"überwachte\": \"uberwacht\",\n  \"überwachung\": \"uberwach\",\n  \"überwältigen\": \"uberwalt\",\n  \"überwältigt\": \"uberwaltigt\",\n  \"überwand\": \"uberwand\",\n  \"überweisen\": \"uberweis\",\n  \"überwiegend\": \"uberwieg\",\n  \"überwiegender\": \"uberwieg\",\n  \"überwiegt\": \"uberwiegt\",\n  \"überwies\": \"uberwi\",\n  \"überwiesen\": \"uberwies\",\n  \"überwinden\": \"uberwind\",\n  \"überwinder\": \"uberwind\",\n  \"überwindet\": \"uberwindet\",\n  \"überwindung\": \"uberwind\",\n  \"überwog\": \"uberwog\",\n  \"überworfen\": \"uberworf\",\n  \"überwuchert\": \"uberwuchert\",\n  \"überwucherte\": \"uberwuchert\",\n  \"überwunden\": \"uberwund\",\n  \"überwundener\": \"uberwund\",\n  \"überzeuge\": \"uberzeug\",\n  \"überzeugen\": \"uberzeug\",\n  \"überzeugend\": \"uberzeug\",\n  \"überzeugende\": \"uberzeug\",\n  \"überzeugt\": \"uberzeugt\",\n  \"überzeugte\": \"uberzeugt\",\n  \"überzeugten\": \"uberzeugt\",\n  \"überzeugung\": \"uberzeug\",\n  \"überzeugungen\": \"uberzeug\",\n  \"überzieht\": \"uberzieht\",\n  \"überzogen\": \"uberzog\",\n  \"überzogenen\": \"uberzog\",\n  \"überzuspringen\": \"uberzuspring\",\n  \"übet\": \"ubet\",\n  \"üble\": \"ubl\",\n  \"üblen\": \"ubl\",\n  \"übler\": \"ubl\",\n  \"übles\": \"ubl\",\n  \"üblich\": \"ublich\",\n  \"übliche\": \"ublich\",\n  \"übrig\": \"ubrig\",\n  \"übrigbleiben\": \"ubrigbleib\",\n  \"übrigbleibt\": \"ubrigbleibt\",\n  \"übrigblieb\": \"ubrigblieb\",\n  \"übrigblieben\": \"ubrigblieb\",\n  \"übrige\": \"ubrig\",\n  \"übrigen\": \"ubrig\",\n  \"übrigens\": \"ubrig\",\n  \"übriger\": \"ubrig\",\n  \"übriges\": \"ubrig\",\n  \"übriggeblieben\": \"ubriggeblieb\",\n  \"übriggebliebene\": \"ubriggeblieb\",\n  \"übriggebliebenen\": \"ubriggeblieb\",\n  \"übriggelassen\": \"ubriggelass\",\n  \"übriglassen\": \"ubriglass\",\n  \"übriglasset\": \"ubriglasset\",\n  \"übriglässt\": \"ubriglasst\",\n  \"übt\": \"ubt\",\n  \"übte\": \"ubt\",\n  \"übung\": \"ubung\",\n  \"übungen\": \"ubung\",\n  \"uchtenhagen\": \"uchtenhag\",\n  \"uf\": \"uf\",\n  \"ufer\": \"ufer\",\n  \"uferloche\": \"uferloch\",\n  \"ufern\": \"ufern\",\n  \"ufers\": \"ufer\",\n  \"uff\": \"uff\",\n  \"ufhangen\": \"ufhang\",\n  \"ugelassen\": \"ugelass\",\n  \"uhr\": \"uhr\",\n  \"uhren\": \"uhr\",\n  \"uhrenmacher\": \"uhrenmach\",\n  \"uhrfeder\": \"uhrfed\",\n  \"uhrgehäuse\": \"uhrgehaus\",\n  \"uhrkette\": \"uhrkett\",\n  \"uhrmacher\": \"uhrmach\",\n  \"uhrwerk\": \"uhrwerk\",\n  \"ulla\": \"ulla\",\n  \"ulm\": \"ulm\",\n  \"ulmen\": \"ulm\",\n  \"um\": \"um\",\n  \"umanandhocken\": \"umanandhock\",\n  \"umänderung\": \"umander\",\n  \"umarmen\": \"umarm\",\n  \"umarmt\": \"umarmt\",\n  \"umarmte\": \"umarmt\",\n  \"umarmten\": \"umarmt\",\n  \"umarmung\": \"umarm\",\n  \"umarmungen\": \"umarm\",\n  \"umband\": \"umband\",\n  \"umbarmherziger\": \"umbarmherz\",\n  \"umbildung\": \"umbild\",\n  \"umblühet\": \"umbluhet\",\n  \"umbringen\": \"umbring\",\n  \"umbruchgewinnler\": \"umbruchgewinnl\",\n  \"umdrehen\": \"umdreh\",\n  \"umdrehte\": \"umdreht\",\n  \"umdrehungen\": \"umdreh\",\n  \"umeinander\": \"umeinand\",\n  \"umfallen\": \"umfall\",\n  \"umfang\": \"umfang\",\n  \"umfange\": \"umfang\",\n  \"umfangen\": \"umfang\",\n  \"umfanges\": \"umfang\",\n  \"umfassen\": \"umfass\",\n  \"umfassender\": \"umfass\",\n  \"umfasst\": \"umfasst\",\n  \"umfaßt\": \"umfasst\",\n  \"umfasste\": \"umfasst\",\n  \"umfaßte\": \"umfasst\",\n  \"umfassten\": \"umfasst\",\n  \"umfeld\": \"umfeld\",\n  \"umfing\": \"umfing\",\n  \"umfingen\": \"umfing\",\n  \"umflochten\": \"umflocht\",\n  \"umflossen\": \"umfloss\",\n  \"umfuhr\": \"umfuhr\",\n  \"umfunkelt\": \"umfunkelt\",\n  \"umg\": \"umg\",\n  \"umgab\": \"umgab\",\n  \"umgäbe\": \"umgab\",\n  \"umgaben\": \"umgab\",\n  \"umgang\": \"umgang\",\n  \"umgange\": \"umgang\",\n  \"umgänglich\": \"umgang\",\n  \"umgarnt\": \"umgarnt\",\n  \"umgeändert\": \"umgeandert\",\n  \"umgebe\": \"umgeb\",\n  \"umgeben\": \"umgeb\",\n  \"umgebenden\": \"umgeb\",\n  \"umgebildet\": \"umgebildet\",\n  \"umgebracht\": \"umgebracht\",\n  \"umgebung\": \"umgeb\",\n  \"umgebungen\": \"umgeb\",\n  \"umgefallen\": \"umgefall\",\n  \"umgefallenen\": \"umgefall\",\n  \"umgehängt\": \"umgehangt\",\n  \"umgehen\": \"umgeh\",\n  \"umgehende\": \"umgeh\",\n  \"umgehendes\": \"umgeh\",\n  \"umgeht\": \"umgeht\",\n  \"umgekehrt\": \"umgekehrt\",\n  \"umgekehrte\": \"umgekehrt\",\n  \"umgekehrten\": \"umgekehrt\",\n  \"umgekehrter\": \"umgekehrt\",\n  \"umgekommen\": \"umgekomm\",\n  \"umgekommenen\": \"umgekomm\",\n  \"umgepflügt\": \"umgepflugt\",\n  \"umgeschlagen\": \"umgeschlag\",\n  \"umgesehen\": \"umgeseh\",\n  \"umgesehn\": \"umgesehn\",\n  \"umgespritzt\": \"umgespritzt\",\n  \"umgespritzten\": \"umgespritzt\",\n  \"umgestülpt\": \"umgestulpt\",\n  \"umgestürzten\": \"umgesturzt\",\n  \"umgetan\": \"umgetan\",\n  \"umgewandelt\": \"umgewandelt\",\n  \"umgewandte\": \"umgewandt\",\n  \"umgeworfene\": \"umgeworf\",\n  \"umgezogen\": \"umgezog\",\n  \"umgibt\": \"umgibt\",\n  \"umgrenzen\": \"umgrenz\",\n  \"umgriffen\": \"umgriff\",\n  \"umgsprungen\": \"umgsprung\",\n  \"umgürtet\": \"umgurtet\",\n  \"umgürtete\": \"umgurtet\",\n  \"umhalste\": \"umhal\",\n  \"umhalsten\": \"umhal\",\n  \"umhang\": \"umhang\",\n  \"umhangen\": \"umhang\",\n  \"umhegten\": \"umhegt\",\n  \"umher\": \"umh\",\n  \"umherbieten\": \"umherbiet\",\n  \"umherblickt\": \"umherblickt\",\n  \"umherfloss\": \"umherfloss\",\n  \"umhergehen\": \"umhergeh\",\n  \"umhergeworfene\": \"umhergeworf\",\n  \"umherging\": \"umherging\",\n  \"umherhupfte\": \"umherhupft\",\n  \"umherirren\": \"umherirr\",\n  \"umherirrenden\": \"umherirr\",\n  \"umherlaufen\": \"umherlauf\",\n  \"umherlief\": \"umherlief\",\n  \"umherrollenden\": \"umherroll\",\n  \"umherschweifen\": \"umherschweif\",\n  \"umherschweiften\": \"umherschweift\",\n  \"umhersprangen\": \"umhersprang\",\n  \"umherstreute\": \"umherstreut\",\n  \"umhertrat\": \"umhertrat\",\n  \"umhertrieb\": \"umhertrieb\",\n  \"umherwatschelte\": \"umherwatschelt\",\n  \"umherzubieten\": \"umherzubiet\",\n  \"umherzublicken\": \"umherzublick\",\n  \"umhin\": \"umhin\",\n  \"umhing\": \"umhing\",\n  \"umkamen\": \"umkam\",\n  \"umkehren\": \"umkehr\",\n  \"umkehrt\": \"umkehrt\",\n  \"umkehrte\": \"umkehrt\",\n  \"umkehrung\": \"umkehr\",\n  \"umklammert\": \"umklammert\",\n  \"umklammerte\": \"umklammert\",\n  \"umkleidende\": \"umkleid\",\n  \"umkleidete\": \"umkleidet\",\n  \"umkleideter\": \"umkleidet\",\n  \"umkommen\": \"umkomm\",\n  \"umkrallung\": \"umkrall\",\n  \"umkreis\": \"umkreis\",\n  \"umkreise\": \"umkreis\",\n  \"umlagert\": \"umlagert\",\n  \"umlagerte\": \"umlagert\",\n  \"umlagerung\": \"umlager\",\n  \"umlauf\": \"umlauf\",\n  \"umlenken\": \"umlenk\",\n  \"umliegenden\": \"umlieg\",\n  \"umliegender\": \"umlieg\",\n  \"ummi\": \"ummi\",\n  \"ummifahren\": \"ummifahr\",\n  \"ummifahret\": \"ummifahret\",\n  \"ummiglacht\": \"ummiglacht\",\n  \"ummispring\": \"ummispring\",\n  \"umpfiffen\": \"umpfiff\",\n  \"umreissen\": \"umreiss\",\n  \"umreißen\": \"umreiss\",\n  \"umringen\": \"umring\",\n  \"umringt\": \"umringt\",\n  \"umringten\": \"umringt\",\n  \"umrisse\": \"umriss\",\n  \"umrührten\": \"umruhrt\",\n  \"ums\": \"ums\",\n  \"umsahen\": \"umsah\",\n  \"umsatz\": \"umsatz\",\n  \"umschifft\": \"umschifft\",\n  \"umschlag\": \"umschlag\",\n  \"umschläge\": \"umschlag\",\n  \"umschlägt\": \"umschlagt\",\n  \"umschlang\": \"umschlang\",\n  \"umschleierte\": \"umschleiert\",\n  \"umschliessen\": \"umschliess\",\n  \"umschließen\": \"umschliess\",\n  \"umschliesst\": \"umschliesst\",\n  \"umschliessung\": \"umschliess\",\n  \"umschließung\": \"umschliess\",\n  \"umschlingen\": \"umschling\",\n  \"umschloss\": \"umschloss\",\n  \"umschlug\": \"umschlug\",\n  \"umschlungen\": \"umschlung\",\n  \"umschweben\": \"umschweb\",\n  \"umschwebt\": \"umschwebt\",\n  \"umschweife\": \"umschweif\",\n  \"umschwunges\": \"umschwung\",\n  \"umsehen\": \"umseh\",\n  \"umsehend\": \"umseh\",\n  \"umsetzwohnung\": \"umsetzwohn\",\n  \"umsicht\": \"umsicht\",\n  \"umsichtige\": \"umsicht\",\n  \"umsieht\": \"umsieht\",\n  \"umso\": \"umso\",\n  \"umsonst\": \"umson\",\n  \"umsonstdas\": \"umsonstdas\",\n  \"umspannte\": \"umspannt\",\n  \"umspielten\": \"umspielt\",\n  \"umstand\": \"umstand\",\n  \"umstände\": \"umstand\",\n  \"umstanden\": \"umstand\",\n  \"umständen\": \"umstand\",\n  \"umständlich\": \"umstand\",\n  \"umständlichen\": \"umstand\",\n  \"umstehenden\": \"umsteh\",\n  \"umstellung\": \"umstell\",\n  \"umstiess\": \"umstiess\",\n  \"umstossen\": \"umstoss\",\n  \"umstoßen\": \"umstoss\",\n  \"umstossend\": \"umstoss\",\n  \"umstoßend\": \"umstoss\",\n  \"umstösst\": \"umstosst\",\n  \"umstößt\": \"umstosst\",\n  \"umstrittenen\": \"umstritt\",\n  \"umstrittensten\": \"umstritten\",\n  \"umsturz\": \"umsturz\",\n  \"umtreiben\": \"umtreib\",\n  \"umtriebe\": \"umtrieb\",\n  \"umtrieben\": \"umtrieb\",\n  \"umtun\": \"umtun\",\n  \"umundum\": \"umundum\",\n  \"umverteilen\": \"umverteil\",\n  \"umverteilung\": \"umverteil\",\n  \"umverteilungssystem\": \"umverteilungssyst\",\n  \"umwanden\": \"umwand\",\n  \"umwandlung\": \"umwandl\",\n  \"umwarf\": \"umwarf\",\n  \"umweg\": \"umweg\",\n  \"umwegen\": \"umweg\",\n  \"umweltbewegung\": \"umweltbeweg\",\n  \"umwerfen\": \"umwerf\",\n  \"umwerfend\": \"umwerf\",\n  \"umwickelt\": \"umwickelt\",\n  \"umwickelte\": \"umwickelt\",\n  \"umwogt\": \"umwogt\",\n  \"umwunden\": \"umwund\",\n  \"umzingelt\": \"umzingelt\",\n  \"umzublasen\": \"umzublas\",\n  \"umzubringen\": \"umzubring\",\n  \"umzuckte\": \"umzuckt\",\n  \"umzugehen\": \"umzugeh\",\n  \"umzugsfirma\": \"umzugsfirma\",\n  \"umzukehren\": \"umzukehr\",\n  \"umzusehen\": \"umzuseh\",\n  \"umzustossen\": \"umzustoss\",\n  \"umzustoßen\": \"umzustoss\",\n  \"un\": \"un\",\n  \"unabänderlich\": \"unaband\",\n  \"unabänderliche\": \"unaband\",\n  \"unabhängig\": \"unabhang\",\n  \"unabhängige\": \"unabhang\",\n  \"unabhängigen\": \"unabhang\",\n  \"unabhängiges\": \"unabhang\",\n  \"unabhängigkeit\": \"unabhang\",\n  \"unablässig\": \"unablass\",\n  \"unabsehbare\": \"unabsehbar\",\n  \"unabsehbaren\": \"unabsehbar\",\n  \"unabsehlich\": \"unabseh\",\n  \"unabtrennlich\": \"unabtrenn\",\n  \"unähnlich\": \"unahn\",\n  \"unähnlichkeit\": \"unahn\",\n  \"unam\": \"unam\",\n  \"unangebautes\": \"unangebaut\",\n  \"unangemeldet\": \"unangemeldet\",\n  \"unangenehm\": \"unangenehm\",\n  \"unangenehme\": \"unangenehm\",\n  \"unangenehmen\": \"unangenehm\",\n  \"unangesehen\": \"unangeseh\",\n  \"unangetastet\": \"unangetastet\",\n  \"unangezündet\": \"unangezundet\",\n  \"unannehmlichkeit\": \"unannehm\",\n  \"unannehmlichkeiten\": \"unannehm\",\n  \"unansehnliche\": \"unansehn\",\n  \"unansehnlicher\": \"unansehn\",\n  \"unanständig\": \"unanstand\",\n  \"unanständiges\": \"unanstand\",\n  \"unanständigsten\": \"unanstand\",\n  \"unappetitlichen\": \"unappetit\",\n  \"unappetitliches\": \"unappetit\",\n  \"unart\": \"unart\",\n  \"unartig\": \"unart\",\n  \"unartikuliertes\": \"unartikuliert\",\n  \"unästhetischem\": \"unasthet\",\n  \"unaufgedeckte\": \"unaufgedeckt\",\n  \"unaufgelösete\": \"unaufgeloset\",\n  \"unaufhaltsam\": \"unaufhaltsam\",\n  \"unaufhörlich\": \"unaufhor\",\n  \"unaufhörliche\": \"unaufhor\",\n  \"unaufhörlichen\": \"unaufhor\",\n  \"unauflöslich\": \"unauflos\",\n  \"unauflösliches\": \"unauflos\",\n  \"unaufmerksam\": \"unaufmerksam\",\n  \"unaufmerksamkeit\": \"unaufmerksam\",\n  \"unausbleiblich\": \"unausbleib\",\n  \"unausgefüllt\": \"unausgefullt\",\n  \"unausgesprochen\": \"unausgesproch\",\n  \"unauslöschlicher\": \"unauslosch\",\n  \"unaussprechlich\": \"unaussprech\",\n  \"unaussprechliche\": \"unaussprech\",\n  \"unaussprechlichen\": \"unaussprech\",\n  \"unaussprechlicher\": \"unaussprech\",\n  \"unaussprechliches\": \"unaussprech\",\n  \"unausstehlich\": \"unaussteh\",\n  \"unausstehliche\": \"unaussteh\",\n  \"unbändig\": \"unband\",\n  \"unbarmherzig\": \"unbarmherz\",\n  \"unbarmherziger\": \"unbarmherz\",\n  \"unbarmherzigere\": \"unbarmherz\",\n  \"unbarmherzigkeit\": \"unbarmherz\",\n  \"unbe\": \"unb\",\n  \"unbeachtete\": \"unbeachtet\",\n  \"unbebautes\": \"unbebaut\",\n  \"unbedacht\": \"unbedacht\",\n  \"unbedachten\": \"unbedacht\",\n  \"unbedenklich\": \"unbedenk\",\n  \"unbedeutend\": \"unbedeut\",\n  \"unbedeutende\": \"unbedeut\",\n  \"unbedeutenden\": \"unbedeut\",\n  \"unbedingt\": \"unbedingt\",\n  \"unbedingte\": \"unbedingt\",\n  \"unbedingten\": \"unbedingt\",\n  \"unbedingterweise\": \"unbedingterweis\",\n  \"unbefangen\": \"unbefang\",\n  \"unbefangene\": \"unbefang\",\n  \"unbefangenen\": \"unbefang\",\n  \"unbefangenes\": \"unbefang\",\n  \"unbefangenheit\": \"unbefang\",\n  \"unbegreiflich\": \"unbegreif\",\n  \"unbegreifliche\": \"unbegreif\",\n  \"unbegreiflichen\": \"unbegreif\",\n  \"unbegreiflicher\": \"unbegreif\",\n  \"unbegreifliches\": \"unbegreif\",\n  \"unbegrenzte\": \"unbegrenzt\",\n  \"unbegrenztes\": \"unbegrenzt\",\n  \"unbegründet\": \"unbegrundet\",\n  \"unbehagen\": \"unbehag\",\n  \"unbehaglich\": \"unbehag\",\n  \"unbehaglicher\": \"unbehag\",\n  \"unbehagliches\": \"unbehag\",\n  \"unbeholfen\": \"unbeholf\",\n  \"unbekannnten\": \"unbekannnt\",\n  \"unbekannt\": \"unbekannt\",\n  \"unbekannte\": \"unbekannt\",\n  \"unbekannten\": \"unbekannt\",\n  \"unbekannter\": \"unbekannt\",\n  \"unbekanntes\": \"unbekannt\",\n  \"unbekümmert\": \"unbekummert\",\n  \"unbelebt\": \"unbelebt\",\n  \"unbeliebt\": \"unbeliebt\",\n  \"unbemerkt\": \"unbemerkt\",\n  \"unbemittelte\": \"unbemittelt\",\n  \"unbemittelten\": \"unbemittelt\",\n  \"unbenutzt\": \"unbenutzt\",\n  \"unbenutzten\": \"unbenutzt\",\n  \"unbeobachtet\": \"unbeobachtet\",\n  \"unbequem\": \"unbequ\",\n  \"unbequemen\": \"unbequem\",\n  \"unbequemlichkeit\": \"unbequem\",\n  \"unberechenbare\": \"unberechenbar\",\n  \"unbeschädigt\": \"unbeschadigt\",\n  \"unbeschäftigt\": \"unbeschaftigt\",\n  \"unbeschäftigter\": \"unbeschaftigt\",\n  \"unbescheidener\": \"unbescheid\",\n  \"unbescheidenheit\": \"unbescheid\",\n  \"unbeschnitten\": \"unbeschnitt\",\n  \"unbeschnittene\": \"unbeschnitt\",\n  \"unbeschnittenen\": \"unbeschnitt\",\n  \"unbeschnittenes\": \"unbeschnitt\",\n  \"unbescholtenheit\": \"unbescholt\",\n  \"unbeschränkt\": \"unbeschrankt\",\n  \"unbeschränkte\": \"unbeschrankt\",\n  \"unbeschreiblich\": \"unbeschreib\",\n  \"unbeschreibliche\": \"unbeschreib\",\n  \"unbeschreiblicher\": \"unbeschreib\",\n  \"unbeschreibliches\": \"unbeschreib\",\n  \"unbeschwert\": \"unbeschwert\",\n  \"unbeseelt\": \"unbeseelt\",\n  \"unbeseeltes\": \"unbeseelt\",\n  \"unbesonnenen\": \"unbesonn\",\n  \"unbesonnenheit\": \"unbesonn\",\n  \"unbestimmbar\": \"unbestimmbar\",\n  \"unbestimmt\": \"unbestimmt\",\n  \"unbestimmte\": \"unbestimmt\",\n  \"unbestimmter\": \"unbestimmt\",\n  \"unbeteiligt\": \"unbeteiligt\",\n  \"unbewachten\": \"unbewacht\",\n  \"unbeweglich\": \"unbeweg\",\n  \"unbewohnte\": \"unbewohnt\",\n  \"unbewusst\": \"unbewusst\",\n  \"unbewusste\": \"unbewusst\",\n  \"unbewussten\": \"unbewusst\",\n  \"unbezähmbare\": \"unbezahmbar\",\n  \"unbezweifeltes\": \"unbezweifelt\",\n  \"unbezwinglicher\": \"unbezwing\",\n  \"unbiegsam\": \"unbiegsam\",\n  \"unbillige\": \"unbill\",\n  \"unbrauchbar\": \"unbrauchbar\",\n  \"unbrauchbare\": \"unbrauchbar\",\n  \"unbrauchbarkeit\": \"unbrauchbar\",\n  \"und\": \"und\",\n  \"undank\": \"undank\",\n  \"undenklichen\": \"undenk\",\n  \"undenklicher\": \"undenk\",\n  \"undeutlich\": \"undeut\",\n  \"unding\": \"unding\",\n  \"undurchsichtige\": \"undurchsicht\",\n  \"uneben\": \"uneb\",\n  \"unebene\": \"uneb\",\n  \"unebenheiten\": \"uneb\",\n  \"unecht\": \"unecht\",\n  \"unechte\": \"unecht\",\n  \"unechter\": \"unecht\",\n  \"unedel\": \"unedel\",\n  \"unedler\": \"unedl\",\n  \"unehre\": \"unehr\",\n  \"uneigennützig\": \"uneigennutz\",\n  \"uneigennützige\": \"uneigennutz\",\n  \"uneigennützigen\": \"uneigennutz\",\n  \"uneigennützigkeit\": \"uneigennutz\",\n  \"uneigennützigste\": \"uneigennutz\",\n  \"uneigentlich\": \"uneigent\",\n  \"uneingeschränktheit\": \"uneingeschrankt\",\n  \"uneinigkeit\": \"unein\",\n  \"unempfindlichen\": \"unempfind\",\n  \"unendlich\": \"unend\",\n  \"unendliche\": \"unend\",\n  \"unendlichen\": \"unend\",\n  \"unendlichkeit\": \"unend\",\n  \"unentbehrlich\": \"unentbehr\",\n  \"unentbehrlichen\": \"unentbehr\",\n  \"unentbehrliches\": \"unentbehr\",\n  \"unentschieden\": \"unentschied\",\n  \"unentschlossen\": \"unentschloss\",\n  \"unentwegten\": \"unentwegt\",\n  \"unerachtet\": \"unerachtet\",\n  \"unerbittlich\": \"unerbitt\",\n  \"unerbittliche\": \"unerbitt\",\n  \"unerbittlicher\": \"unerbitt\",\n  \"unerfahren\": \"unerfahr\",\n  \"unerfahrene\": \"unerfahr\",\n  \"unerfahrener\": \"unerfahr\",\n  \"unerfahrenheit\": \"unerfahr\",\n  \"unerfindlichen\": \"unerfind\",\n  \"unerfindlicher\": \"unerfind\",\n  \"unerforschliche\": \"unerforsch\",\n  \"unergründliche\": \"unergrund\",\n  \"unergründlichkeit\": \"unergrund\",\n  \"unerhört\": \"unerhort\",\n  \"unerhörte\": \"unerhort\",\n  \"unerhörten\": \"unerhort\",\n  \"unerhörter\": \"unerhort\",\n  \"unerhörtes\": \"unerhort\",\n  \"unerklärlichen\": \"unerklar\",\n  \"unerklärliches\": \"unerklar\",\n  \"unerläßlich\": \"unerlass\",\n  \"unerlaubt\": \"unerlaubt\",\n  \"unerlaubtes\": \"unerlaubt\",\n  \"unermesslich\": \"unermess\",\n  \"unermeßlich\": \"unermess\",\n  \"unermessliche\": \"unermess\",\n  \"unermeßliche\": \"unermess\",\n  \"unermüdlich\": \"unermud\",\n  \"unermüdlicher\": \"unermud\",\n  \"unerreichbar\": \"unerreichbar\",\n  \"unerreichbare\": \"unerreichbar\",\n  \"unerreichbaren\": \"unerreichbar\",\n  \"unersättlich\": \"unersatt\",\n  \"unerschöpfliche\": \"unerschopf\",\n  \"unerschöpflicher\": \"unerschopf\",\n  \"unerschrocken\": \"unerschrock\",\n  \"unerschrockene\": \"unerschrock\",\n  \"unerschrockenen\": \"unerschrock\",\n  \"unerschrockenheit\": \"unerschrock\",\n  \"unerschütterlich\": \"unerschutt\",\n  \"unerschütterliche\": \"unerschutt\",\n  \"unerschüttert\": \"unerschuttert\",\n  \"unersteiglicher\": \"unersteig\",\n  \"unerträglich\": \"unertrag\",\n  \"unerträgliche\": \"unertrag\",\n  \"unerwachsenen\": \"unerwachs\",\n  \"unerwartet\": \"unerwartet\",\n  \"unerwartete\": \"unerwartet\",\n  \"unerwarteter\": \"unerwartet\",\n  \"unerwarteterweise\": \"unerwarteterweis\",\n  \"unerwartetes\": \"unerwartet\",\n  \"unfähig\": \"unfah\",\n  \"unfähigkeit\": \"unfah\",\n  \"unfallopfern\": \"unfallopf\",\n  \"unfallverhütung\": \"unfallverhut\",\n  \"unfehlbar\": \"unfehlbar\",\n  \"unfehlbare\": \"unfehlbar\",\n  \"unfehlbares\": \"unfehlbar\",\n  \"unfern\": \"unf\",\n  \"unflat\": \"unflat\",\n  \"unfreiheit\": \"unfreiheit\",\n  \"unfreisinn\": \"unfreisinn\",\n  \"unfreundlich\": \"unfreund\",\n  \"unfreundlichen\": \"unfreund\",\n  \"unfreundlichkeit\": \"unfreund\",\n  \"unfriede\": \"unfried\",\n  \"unfruchtbar\": \"unfruchtbar\",\n  \"unfruchtbare\": \"unfruchtbar\",\n  \"unfug\": \"unfug\",\n  \"ungangbar\": \"ungangbar\",\n  \"ungeachtet\": \"ungeachtet\",\n  \"ungebahnten\": \"ungebahnt\",\n  \"ungebärdig\": \"ungebard\",\n  \"ungebildet\": \"ungebildet\",\n  \"ungebildeter\": \"ungebildet\",\n  \"ungebildetes\": \"ungebildet\",\n  \"ungebraucht\": \"ungebraucht\",\n  \"ungebrochen\": \"ungebroch\",\n  \"ungebrochener\": \"ungebroch\",\n  \"ungeduld\": \"ungeduld\",\n  \"ungeduldig\": \"ungeduld\",\n  \"ungeduldigen\": \"ungeduld\",\n  \"ungeduldigeren\": \"ungeduld\",\n  \"ungeeignete\": \"ungeeignet\",\n  \"ungefahr\": \"ungefahr\",\n  \"ungefähr\": \"ungefahr\",\n  \"ungefährdet\": \"ungefahrdet\",\n  \"ungefälliger\": \"ungefall\",\n  \"ungefärbten\": \"ungefarbt\",\n  \"ungefügen\": \"ungefug\",\n  \"ungefüger\": \"ungefug\",\n  \"ungefügigen\": \"ungefug\",\n  \"ungefunden\": \"ungefund\",\n  \"ungehalten\": \"ungehalt\",\n  \"ungeheuer\": \"ungeheu\",\n  \"ungeheure\": \"ungeheur\",\n  \"ungeheuren\": \"ungeheur\",\n  \"ungeheures\": \"ungeheur\",\n  \"ungehindert\": \"ungehindert\",\n  \"ungehörige\": \"ungehor\",\n  \"ungehöriger\": \"ungehor\",\n  \"ungehöriges\": \"ungehor\",\n  \"ungehorsam\": \"ungehorsam\",\n  \"ungeistig\": \"ungeist\",\n  \"ungeistigen\": \"ungeist\",\n  \"ungekämmten\": \"ungekammt\",\n  \"ungelegener\": \"ungeleg\",\n  \"ungelegten\": \"ungelegt\",\n  \"ungelehrt\": \"ungelehrt\",\n  \"ungelenk\": \"ungelenk\",\n  \"ungelesen\": \"ungeles\",\n  \"ungelinden\": \"ungelind\",\n  \"ungemein\": \"ungemein\",\n  \"ungemütlich\": \"ungemut\",\n  \"ungenossen\": \"ungenoss\",\n  \"ungenügende\": \"ungenug\",\n  \"ungerächet\": \"ungerachet\",\n  \"ungerechnet\": \"ungerechnet\",\n  \"ungerecht\": \"ungerecht\",\n  \"ungerechte\": \"ungerecht\",\n  \"ungerechten\": \"ungerecht\",\n  \"ungerechterweise\": \"ungerechterweis\",\n  \"ungerechtes\": \"ungerecht\",\n  \"ungerechtigkeit\": \"ungerecht\",\n  \"ungerechtigkeiten\": \"ungerecht\",\n  \"ungereimt\": \"ungereimt\",\n  \"ungern\": \"ung\",\n  \"ungesäuerten\": \"ungesauert\",\n  \"ungesäumt\": \"ungesaumt\",\n  \"ungeschehen\": \"ungescheh\",\n  \"ungeschicklichkeit\": \"ungeschick\",\n  \"ungeschickt\": \"ungeschickt\",\n  \"ungeschickte\": \"ungeschickt\",\n  \"ungeschickten\": \"ungeschickt\",\n  \"ungeschickterweise\": \"ungeschickterweis\",\n  \"ungeschicktes\": \"ungeschickt\",\n  \"ungeschoren\": \"ungeschor\",\n  \"ungeschorene\": \"ungeschor\",\n  \"ungesehen\": \"ungeseh\",\n  \"ungesehene\": \"ungeseh\",\n  \"ungesetzliche\": \"ungesetz\",\n  \"ungestört\": \"ungestort\",\n  \"ungestörter\": \"ungestort\",\n  \"ungestörtheit\": \"ungestort\",\n  \"ungestraften\": \"ungestraft\",\n  \"ungestüm\": \"ungestum\",\n  \"ungestüme\": \"ungestum\",\n  \"ungestümes\": \"ungestum\",\n  \"ungesungenen\": \"unges\",\n  \"ungeteilt\": \"ungeteilt\",\n  \"ungetrübte\": \"ungetrubt\",\n  \"ungetüm\": \"ungetum\",\n  \"ungeübten\": \"ungeubt\",\n  \"ungewiss\": \"ungewiss\",\n  \"ungewiß\": \"ungewiss\",\n  \"ungewisser\": \"ungewiss\",\n  \"ungewissheit\": \"ungewiss\",\n  \"ungewöhnlich\": \"ungewohn\",\n  \"ungewöhnliche\": \"ungewohn\",\n  \"ungewöhnlichem\": \"ungewohn\",\n  \"ungewöhnlichen\": \"ungewohn\",\n  \"ungewöhnliches\": \"ungewohn\",\n  \"ungewohnt\": \"ungewohnt\",\n  \"ungewohnte\": \"ungewohnt\",\n  \"ungewohnten\": \"ungewohnt\",\n  \"ungezählten\": \"ungezahlt\",\n  \"ungeziefer\": \"ungezief\",\n  \"ungeziefers\": \"ungezief\",\n  \"ungezweifelt\": \"ungezweifelt\",\n  \"ungezweifelten\": \"ungezweifelt\",\n  \"unglaube\": \"unglaub\",\n  \"unglauben\": \"unglaub\",\n  \"unglaubens\": \"unglaub\",\n  \"ungläubig\": \"unglaub\",\n  \"unglaublich\": \"unglaub\",\n  \"unglaubliche\": \"unglaub\",\n  \"unglaublichen\": \"unglaub\",\n  \"unglaubliches\": \"unglaub\",\n  \"unglaubwürdige\": \"unglaubwurd\",\n  \"ungleich\": \"ungleich\",\n  \"ungleichartig\": \"ungleichart\",\n  \"ungleichartigen\": \"ungleichart\",\n  \"ungleichartiger\": \"ungleichart\",\n  \"ungleichartigkeit\": \"ungleichart\",\n  \"ungleiche\": \"ungleich\",\n  \"ungleichen\": \"ungleich\",\n  \"ungleichheit\": \"ungleich\",\n  \"unglück\": \"ungluck\",\n  \"unglückes\": \"ungluck\",\n  \"unglücklich\": \"ungluck\",\n  \"unglückliche\": \"ungluck\",\n  \"unglücklichen\": \"ungluck\",\n  \"unglücklicher\": \"ungluck\",\n  \"unglücklicherweise\": \"unglucklicherweis\",\n  \"unglücks\": \"ungluck\",\n  \"unglückseligen\": \"unglucksel\",\n  \"unglücksfällen\": \"unglucksfall\",\n  \"unglücksfelde\": \"unglucksfeld\",\n  \"unglücksstätte\": \"unglucksstatt\",\n  \"ungünstig\": \"ungunst\",\n  \"ungünstigen\": \"ungunst\",\n  \"ungut\": \"ungut\",\n  \"unguten\": \"ungut\",\n  \"ungwohnte\": \"ungwohnt\",\n  \"unheil\": \"unheil\",\n  \"unheilbar\": \"unheilbar\",\n  \"unheilig\": \"unheil\",\n  \"unheilige\": \"unheil\",\n  \"unheiligem\": \"unheil\",\n  \"unheiligen\": \"unheil\",\n  \"unheiliges\": \"unheil\",\n  \"unheilvolle\": \"unheilvoll\",\n  \"unheimlich\": \"unheim\",\n  \"unheimliche\": \"unheim\",\n  \"unheimlichen\": \"unheim\",\n  \"unheimliches\": \"unheim\",\n  \"unheimlichsten\": \"unheim\",\n  \"unhöflich\": \"unhof\",\n  \"unhöflichen\": \"unhof\",\n  \"unhöfliches\": \"unhof\",\n  \"unhöflichkeit\": \"unhof\",\n  \"unhold\": \"unhold\",\n  \"unholdes\": \"unhold\",\n  \"unhörbar\": \"unhorbar\",\n  \"unifomierter\": \"unifomiert\",\n  \"uniform\": \"uniform\",\n  \"uniformen\": \"uniform\",\n  \"uniformierten\": \"uniformiert\",\n  \"uninteressiert\": \"uninteressiert\",\n  \"union\": \"union\",\n  \"uniondie\": \"uniondi\",\n  \"universalis\": \"universalis\",\n  \"universaliter\": \"universalit\",\n  \"universalsprache\": \"universalsprach\",\n  \"universelle\": \"universell\",\n  \"universellen\": \"universell\",\n  \"universeller\": \"universell\",\n  \"universelles\": \"universell\",\n  \"universität\": \"universitat\",\n  \"universum\": \"universum\",\n  \"unjewöhnliche\": \"unjewohn\",\n  \"unken\": \"unk\",\n  \"unkenntnis\": \"unkenntnis\",\n  \"unkindlichkeit\": \"unkind\",\n  \"unklar\": \"unklar\",\n  \"unklug\": \"unklug\",\n  \"unkluge\": \"unklug\",\n  \"unkonventionell\": \"unkonventionell\",\n  \"unkonventionellen\": \"unkonventionell\",\n  \"unkosten\": \"unkost\",\n  \"unkraut\": \"unkraut\",\n  \"unkräutern\": \"unkraut\",\n  \"unkriegerisches\": \"unkrieger\",\n  \"unkultivierte\": \"unkultiviert\",\n  \"unkunde\": \"unkund\",\n  \"unlauterkeit\": \"unlauter\",\n  \"unleugbar\": \"unleugbar\",\n  \"unleugbare\": \"unleugbar\",\n  \"unliebenswürdigen\": \"unliebenswurd\",\n  \"unliebliche\": \"unlieb\",\n  \"unliebsamen\": \"unliebsam\",\n  \"unlust\": \"unlust\",\n  \"unlustigen\": \"unlust\",\n  \"unmännlich\": \"unmann\",\n  \"unmässig\": \"unmass\",\n  \"unmässige\": \"unmass\",\n  \"unmenschen\": \"unmensch\",\n  \"unmenschlich\": \"unmensch\",\n  \"unmenschliche\": \"unmensch\",\n  \"unmenschlichste\": \"unmensch\",\n  \"unmerklich\": \"unmerk\",\n  \"unmittelbar\": \"unmittelbar\",\n  \"unmittelbare\": \"unmittelbar\",\n  \"unmittelbaren\": \"unmittelbar\",\n  \"unmittelbarer\": \"unmittelbar\",\n  \"unmittelbares\": \"unmittelbar\",\n  \"unmittelbarste\": \"unmittelbarst\",\n  \"unmöglich\": \"unmog\",\n  \"unmögliche\": \"unmog\",\n  \"unmöglicher\": \"unmog\",\n  \"unmögliches\": \"unmog\",\n  \"unmöglichkeit\": \"unmog\",\n  \"unmut\": \"unmut\",\n  \"unmutig\": \"unmut\",\n  \"unmutigen\": \"unmut\",\n  \"unmutiges\": \"unmut\",\n  \"unnachahmlich\": \"unnachahm\",\n  \"unnachlasslich\": \"unnachlass\",\n  \"unnachlasslichen\": \"unnachlass\",\n  \"unnachsichtlich\": \"unnachsicht\",\n  \"unnachsichtlichen\": \"unnachsicht\",\n  \"unnahbar\": \"unnahbar\",\n  \"unnatürlich\": \"unnatur\",\n  \"unnötig\": \"unnot\",\n  \"unnötige\": \"unnot\",\n  \"unnötigerweise\": \"unnotigerweis\",\n  \"unnütz\": \"unnutz\",\n  \"unnütze\": \"unnutz\",\n  \"unnützen\": \"unnutz\",\n  \"unnützes\": \"unnutz\",\n  \"unordentlich\": \"unordent\",\n  \"unordentliche\": \"unordent\",\n  \"unordnung\": \"unordn\",\n  \"unorthodoxe\": \"unorthodox\",\n  \"unparteiischen\": \"unpartei\",\n  \"unparteiischer\": \"unpartei\",\n  \"unparteilichkeit\": \"unpartei\",\n  \"unrasiert\": \"unrasiert\",\n  \"unrecht\": \"unrecht\",\n  \"unrechte\": \"unrecht\",\n  \"unrechten\": \"unrecht\",\n  \"unrechtes\": \"unrecht\",\n  \"unrechtleider\": \"unrechtleid\",\n  \"unrechtliche\": \"unrecht\",\n  \"unrechtliches\": \"unrecht\",\n  \"unrechtmässig\": \"unrechtmass\",\n  \"unrechtmässige\": \"unrechtmass\",\n  \"unrechts\": \"unrecht\",\n  \"unredliche\": \"unred\",\n  \"unredlichen\": \"unred\",\n  \"unredlichkeit\": \"unred\",\n  \"unregelmässigkeit\": \"unregelmass\",\n  \"unregelmässigkeiten\": \"unregelmass\",\n  \"unreif\": \"unreif\",\n  \"unreifen\": \"unreif\",\n  \"unrein\": \"unrein\",\n  \"unreine\": \"unrein\",\n  \"unreinem\": \"unrein\",\n  \"unreinen\": \"unrein\",\n  \"unreiner\": \"unrein\",\n  \"unreines\": \"unrein\",\n  \"unreinigkeit\": \"unrein\",\n  \"unrichtig\": \"unricht\",\n  \"unruh\": \"unruh\",\n  \"unruhe\": \"unruh\",\n  \"unruhig\": \"unruh\",\n  \"unruhige\": \"unruh\",\n  \"unruhigen\": \"unruh\",\n  \"uns\": \"uns\",\n  \"unsäglich\": \"unsag\",\n  \"unsägliche\": \"unsag\",\n  \"unsäglicher\": \"unsag\",\n  \"unsaubere\": \"unsaub\",\n  \"unsauberen\": \"unsaub\",\n  \"unsauberer\": \"unsaub\",\n  \"unsauberes\": \"unsaub\",\n  \"unsauberkeiten\": \"unsauber\",\n  \"unsaubern\": \"unsaub\",\n  \"unschädlich\": \"unschad\",\n  \"unschädlichen\": \"unschad\",\n  \"unscheinbare\": \"unscheinbar\",\n  \"unscheinbaren\": \"unscheinbar\",\n  \"unscheinbares\": \"unscheinbar\",\n  \"unscheinbarste\": \"unscheinbarst\",\n  \"unschicklich\": \"unschick\",\n  \"unschicklichkeiten\": \"unschick\",\n  \"unschlüssig\": \"unschluss\",\n  \"unschön\": \"unschon\",\n  \"unschöne\": \"unschon\",\n  \"unschönen\": \"unschon\",\n  \"unschuld\": \"unschuld\",\n  \"unschuldig\": \"unschuld\",\n  \"unschuldige\": \"unschuld\",\n  \"unschuldigen\": \"unschuld\",\n  \"unschuldiger\": \"unschuld\",\n  \"unschuldigeren\": \"unschuld\",\n  \"unschuldiges\": \"unschuld\",\n  \"unselige\": \"unsel\",\n  \"unseligkeit\": \"unsel\",\n  \"unser\": \"uns\",\n  \"unsere\": \"uns\",\n  \"unsereinen\": \"unserein\",\n  \"unsereiner\": \"unserein\",\n  \"unserem\": \"uns\",\n  \"unseren\": \"uns\",\n  \"unserer\": \"uns\",\n  \"unseres\": \"uns\",\n  \"unseresgleichen\": \"unseresgleich\",\n  \"unserm\": \"unserm\",\n  \"unsern\": \"uns\",\n  \"unsers\": \"uns\",\n  \"unsicher\": \"unsich\",\n  \"unsicherer\": \"unsich\",\n  \"unsicherheit\": \"unsich\",\n  \"unsichern\": \"unsich\",\n  \"unsichtbar\": \"unsichtbar\",\n  \"unsichtbaren\": \"unsichtbar\",\n  \"unsichtbarer\": \"unsichtbar\",\n  \"unsinn\": \"unsinn\",\n  \"unsinnig\": \"unsinn\",\n  \"unsinnige\": \"unsinn\",\n  \"unsinnigen\": \"unsinn\",\n  \"unsinniger\": \"unsinn\",\n  \"unsinniges\": \"unsinn\",\n  \"unsinnigkeit\": \"unsinn\",\n  \"unsinnigkeiten\": \"unsinn\",\n  \"unsinnigsten\": \"unsinn\",\n  \"unsittlich\": \"unsitt\",\n  \"unsittliche\": \"unsitt\",\n  \"unsittlicher\": \"unsitt\",\n  \"unsittlichkeit\": \"unsitt\",\n  \"unsre\": \"unsr\",\n  \"unsrer\": \"unsr\",\n  \"unsres\": \"unsr\",\n  \"unsrige\": \"unsrig\",\n  \"unstäte\": \"unstat\",\n  \"unsterblich\": \"unsterb\",\n  \"unsterbliche\": \"unsterb\",\n  \"unsterblichkeit\": \"unsterb\",\n  \"unstern\": \"unst\",\n  \"unsterns\": \"unstern\",\n  \"unstet\": \"unstet\",\n  \"unstetes\": \"unstet\",\n  \"unsträflich\": \"unstraf\",\n  \"unstreitig\": \"unstreit\",\n  \"unsympathisch\": \"unsympath\",\n  \"untat\": \"untat\",\n  \"untätig\": \"untat\",\n  \"untauglich\": \"untaug\",\n  \"untaugliche\": \"untaug\",\n  \"unteilbar\": \"unteilbar\",\n  \"unteilbare\": \"unteilbar\",\n  \"unteilbares\": \"unteilbar\",\n  \"unten\": \"unt\",\n  \"unter\": \"unt\",\n  \"unterabteilung\": \"unterabteil\",\n  \"unterarten\": \"unterart\",\n  \"unterbezahlt\": \"unterbezahlt\",\n  \"unterbrach\": \"unterbrach\",\n  \"unterbrachen\": \"unterbrach\",\n  \"unterbreche\": \"unterbrech\",\n  \"unterbrechend\": \"unterbrech\",\n  \"unterbreiten\": \"unterbreit\",\n  \"unterbringen\": \"unterbring\",\n  \"unterbrochen\": \"unterbroch\",\n  \"unterbrochenen\": \"unterbroch\",\n  \"unterdessen\": \"unterdess\",\n  \"unterdrücken\": \"unterdruck\",\n  \"unterdrückend\": \"unterdruck\",\n  \"unterdrückt\": \"unterdruckt\",\n  \"unterdrückte\": \"unterdruckt\",\n  \"unterdrückten\": \"unterdruckt\",\n  \"unterdrückter\": \"unterdruckt\",\n  \"unterdrücktes\": \"unterdruckt\",\n  \"unterdrückung\": \"unterdruck\",\n  \"unterdrückungen\": \"unterdruck\",\n  \"untere\": \"unt\",\n  \"untereinander\": \"untereinand\",\n  \"unterem\": \"unt\",\n  \"unteren\": \"unt\",\n  \"unteres\": \"unt\",\n  \"unterfand\": \"unterfand\",\n  \"unterfangen\": \"unterfang\",\n  \"untergang\": \"untergang\",\n  \"untergange\": \"untergang\",\n  \"unterganges\": \"untergang\",\n  \"untergangs\": \"untergang\",\n  \"untergebene\": \"untergeb\",\n  \"untergebenen\": \"untergeb\",\n  \"untergebenheit\": \"untergeb\",\n  \"untergebracht\": \"untergebracht\",\n  \"untergegangen\": \"untergegang\",\n  \"untergehen\": \"untergeh\",\n  \"untergehende\": \"untergeh\",\n  \"untergeht\": \"untergeht\",\n  \"untergekommen\": \"untergekomm\",\n  \"untergelegt\": \"untergelegt\",\n  \"untergeordnet\": \"untergeordnet\",\n  \"untergeordnete\": \"untergeordnet\",\n  \"untergeordneten\": \"untergeordnet\",\n  \"untergeordneter\": \"untergeordnet\",\n  \"untergeordnetere\": \"untergeordnet\",\n  \"untergeschoben\": \"untergeschob\",\n  \"unterging\": \"unterging\",\n  \"unterginge\": \"unterging\",\n  \"untergingen\": \"unterging\",\n  \"unterhalb\": \"unterhalb\",\n  \"unterhält\": \"unterhalt\",\n  \"unterhalten\": \"unterhalt\",\n  \"unterhaltung\": \"unterhalt\",\n  \"unterhaltungen\": \"unterhalt\",\n  \"unterhaltungsabteilung\": \"unterhaltungsabteil\",\n  \"unterhaltungsminute\": \"unterhaltungsminut\",\n  \"unterhaltungsspieles\": \"unterhaltungsspiel\",\n  \"unterhändlern\": \"unterhandl\",\n  \"unterhandlungen\": \"unterhandl\",\n  \"unterhielt\": \"unterhielt\",\n  \"unterhielten\": \"unterhielt\",\n  \"unterichtsstunden\": \"unterichtsstund\",\n  \"unterjochen\": \"unterjoch\",\n  \"unterjocht\": \"unterjocht\",\n  \"unterjochung\": \"unterjoch\",\n  \"unterjochungsbestreben\": \"unterjochungsbestreb\",\n  \"unterkiefer\": \"unterkief\",\n  \"unterköchen\": \"unterkoch\",\n  \"unterkommen\": \"unterkomm\",\n  \"unterkommst\": \"unterkomm\",\n  \"unterlage\": \"unterlag\",\n  \"unterlagen\": \"unterlag\",\n  \"unterlass\": \"unterlass\",\n  \"unterlaß\": \"unterlass\",\n  \"unterlassen\": \"unterlass\",\n  \"unterlassest\": \"unterlass\",\n  \"unterlaufen\": \"unterlauf\",\n  \"unterlegen\": \"unterleg\",\n  \"unterlegt\": \"unterlegt\",\n  \"unterlegten\": \"unterlegt\",\n  \"unterlehrer\": \"unterlehr\",\n  \"unterliege\": \"unterlieg\",\n  \"unterliegen\": \"unterlieg\",\n  \"unterliegt\": \"unterliegt\",\n  \"unterliessen\": \"unterliess\",\n  \"unterlippe\": \"unterlipp\",\n  \"unterm\": \"unterm\",\n  \"unterminierte\": \"unterminiert\",\n  \"unternahm\": \"unternahm\",\n  \"unternähme\": \"unternahm\",\n  \"unternahmen\": \"unternahm\",\n  \"unternehmen\": \"unternehm\",\n  \"unternehmend\": \"unternehm\",\n  \"unternehmender\": \"unternehm\",\n  \"unternehmer\": \"unternehm\",\n  \"unternehmung\": \"unternehm\",\n  \"unternehmungen\": \"unternehm\",\n  \"unternehmungsgeist\": \"unternehmungsgeist\",\n  \"unternehmungslust\": \"unternehmungslust\",\n  \"unternehmungslustigen\": \"unternehmungslust\",\n  \"unternommen\": \"unternomm\",\n  \"unteroffizier\": \"unteroffizi\",\n  \"unteroffizieren\": \"unteroffizi\",\n  \"unteroffiziers\": \"unteroffizi\",\n  \"unterordnung\": \"unterordn\",\n  \"unterpfand\": \"unterpfand\",\n  \"unterredung\": \"unterred\",\n  \"unterricht\": \"unterricht\",\n  \"unterrichten\": \"unterricht\",\n  \"unterrichtet\": \"unterrichtet\",\n  \"unterröcke\": \"unterrock\",\n  \"untersatze\": \"untersatz\",\n  \"untersberges\": \"untersberg\",\n  \"unterscheiden\": \"unterscheid\",\n  \"unterscheidend\": \"unterscheid\",\n  \"unterscheidet\": \"unterscheidet\",\n  \"unterscheidung\": \"unterscheid\",\n  \"unterscheidungsgrund\": \"unterscheidungsgrund\",\n  \"unterscheidungszeichen\": \"unterscheidungszeich\",\n  \"unterschiebt\": \"unterschiebt\",\n  \"unterschied\": \"unterschied\",\n  \"unterschiede\": \"unterschied\",\n  \"unterschieden\": \"unterschied\",\n  \"unterschiedene\": \"unterschied\",\n  \"unterschiedenem\": \"unterschied\",\n  \"unterschiedenen\": \"unterschied\",\n  \"unterschiedenes\": \"unterschied\",\n  \"unterschiedes\": \"unterschied\",\n  \"unterschiedlichdie\": \"unterschiedlichdi\",\n  \"unterschiedliche\": \"unterschied\",\n  \"unterschiedlicher\": \"unterschied\",\n  \"unterschiedlichkeiten\": \"unterschied\",\n  \"unterschleif\": \"unterschleif\",\n  \"unterschleife\": \"unterschleif\",\n  \"unterschreiben\": \"unterschreib\",\n  \"unterschrift\": \"unterschrift\",\n  \"unterst\": \"unterst\",\n  \"unterstand\": \"unterstand\",\n  \"unterste\": \"unterst\",\n  \"unterstein\": \"unterstein\",\n  \"unterstellen\": \"unterstell\",\n  \"unterstellt\": \"unterstellt\",\n  \"untersten\": \"unterst\",\n  \"unterstes\": \"unterst\",\n  \"unterstützen\": \"unterstutz\",\n  \"unterstützt\": \"unterstutzt\",\n  \"unterstützte\": \"unterstutzt\",\n  \"unterstützung\": \"unterstutz\",\n  \"untersuchen\": \"untersuch\",\n  \"untersuchend\": \"untersuch\",\n  \"untersucht\": \"untersucht\",\n  \"untersuchte\": \"untersucht\",\n  \"untersuchten\": \"untersucht\",\n  \"untersuchung\": \"untersuch\",\n  \"untersuchungen\": \"untersuch\",\n  \"untersuchungsansätzen\": \"untersuchungsansatz\",\n  \"untersuchungskommission\": \"untersuchungskommission\",\n  \"untersuchungsraum\": \"untersuchungsraum\",\n  \"untersuchungsrichter\": \"untersuchungsricht\",\n  \"untersuchungsrichtern\": \"untersuchungsricht\",\n  \"untersuchungsrichters\": \"untersuchungsricht\",\n  \"untersuchungstag\": \"untersuchungstag\",\n  \"untersuchungszimmer\": \"untersuchungszimm\",\n  \"untersuchungszimmers\": \"untersuchungszimm\",\n  \"untertan\": \"untertan\",\n  \"untertanen\": \"untertan\",\n  \"untertänigkeit\": \"untertan\",\n  \"untertaucht\": \"untertaucht\",\n  \"untertrat\": \"untertrat\",\n  \"untertreten\": \"untertret\",\n  \"unterwarf\": \"unterwarf\",\n  \"unterwarfen\": \"unterwarf\",\n  \"unterweges\": \"unterweg\",\n  \"unterwegs\": \"unterweg\",\n  \"unterweisen\": \"unterweis\",\n  \"unterweisend\": \"unterweis\",\n  \"unterweisung\": \"unterweis\",\n  \"unterwelt\": \"unterwelt\",\n  \"unterwerfen\": \"unterwerf\",\n  \"unterwerfung\": \"unterwerf\",\n  \"unterwies\": \"unterwi\",\n  \"unterwiesen\": \"unterwies\",\n  \"unterworfen\": \"unterworf\",\n  \"unterwürfigkeit\": \"unterwurf\",\n  \"unterzeichnet\": \"unterzeichnet\",\n  \"unterzeichnete\": \"unterzeichnet\",\n  \"unterziehe\": \"unterzieh\",\n  \"unterziehen\": \"unterzieh\",\n  \"unterzog\": \"unterzog\",\n  \"unterzogen\": \"unterzog\",\n  \"unterzubringen\": \"unterzubring\",\n  \"unterzukommen\": \"unterzukomm\",\n  \"untiefe\": \"untief\",\n  \"untier\": \"unti\",\n  \"untrennbar\": \"untrennbar\",\n  \"untreu\": \"untreu\",\n  \"untreue\": \"untreu\",\n  \"untreuen\": \"untreu\",\n  \"untröstlich\": \"untrost\",\n  \"unübertrefflich\": \"unubertreff\",\n  \"unüberwindliche\": \"unuberwind\",\n  \"unum\": \"unum\",\n  \"unumgänglich\": \"unumgang\",\n  \"ununterbrochen\": \"ununterbroch\",\n  \"ununterbrochene\": \"ununterbroch\",\n  \"ununterbrochener\": \"ununterbroch\",\n  \"unverabredet\": \"unverabredet\",\n  \"unveränderlich\": \"unverand\",\n  \"unveränderliche\": \"unverand\",\n  \"unveränderlichem\": \"unverand\",\n  \"unveränderlichen\": \"unverand\",\n  \"unverändert\": \"unverandert\",\n  \"unverbrüchlichen\": \"unverbruch\",\n  \"unverdächtige\": \"unverdacht\",\n  \"unverdaulichkeit\": \"unverdau\",\n  \"unverdorbener\": \"unverdorb\",\n  \"unverdrossen\": \"unverdross\",\n  \"unvereinbar\": \"unvereinbar\",\n  \"unverfänglich\": \"unverfang\",\n  \"unvergleichlich\": \"unvergleich\",\n  \"unvergoldete\": \"unvergoldet\",\n  \"unverhehlt\": \"unverhehlt\",\n  \"unverhehlter\": \"unverhehlt\",\n  \"unverheiratet\": \"unverheiratet\",\n  \"unverhofft\": \"unverhofft\",\n  \"unverhoffte\": \"unverhofft\",\n  \"unverhoffter\": \"unverhofft\",\n  \"unverhofftes\": \"unverhofft\",\n  \"unverkennbar\": \"unverkennbar\",\n  \"unverletzlich\": \"unverletz\",\n  \"unverletzliche\": \"unverletz\",\n  \"unverletzliches\": \"unverletz\",\n  \"unverletzlichkeit\": \"unverletz\",\n  \"unvermeidlich\": \"unvermeid\",\n  \"unvermeidliche\": \"unvermeid\",\n  \"unvermeidlichen\": \"unvermeid\",\n  \"unvermeidlicher\": \"unvermeid\",\n  \"unvermengt\": \"unvermengt\",\n  \"unvermerkt\": \"unvermerkt\",\n  \"unvermögend\": \"unvermog\",\n  \"unvermögens\": \"unvermog\",\n  \"unvermutet\": \"unvermutet\",\n  \"unvernünftig\": \"unvernunft\",\n  \"unvernünftige\": \"unvernunft\",\n  \"unvernünftigen\": \"unvernunft\",\n  \"unvernünftiger\": \"unvernunft\",\n  \"unverputzte\": \"unverputzt\",\n  \"unverrückbaren\": \"unverruckbar\",\n  \"unverschämt\": \"unverschamt\",\n  \"unverschämte\": \"unverschamt\",\n  \"unverschämtheit\": \"unverschamt\",\n  \"unverschlossen\": \"unverschloss\",\n  \"unversehens\": \"unverseh\",\n  \"unversehrt\": \"unversehrt\",\n  \"unversehrter\": \"unversehrt\",\n  \"unversiegbare\": \"unversiegbar\",\n  \"unversöhnlich\": \"unversohn\",\n  \"unversöhnlicher\": \"unversohn\",\n  \"unverstande\": \"unverstand\",\n  \"unverständigen\": \"unverstand\",\n  \"unverständlich\": \"unverstand\",\n  \"unverständliche\": \"unverstand\",\n  \"unverständlichen\": \"unverstand\",\n  \"unvertilgbaren\": \"unvertilgbar\",\n  \"unverwahrt\": \"unverwahrt\",\n  \"unverwandt\": \"unverwandt\",\n  \"unverweilt\": \"unverweilt\",\n  \"unverwüstliche\": \"unverwust\",\n  \"unverwüstlichen\": \"unverwust\",\n  \"unverzagt\": \"unverzagt\",\n  \"unverzeihliches\": \"unverzeih\",\n  \"unverzeihlichsten\": \"unverzeih\",\n  \"unverzichtbar\": \"unverzichtbar\",\n  \"unverzichtbare\": \"unverzichtbar\",\n  \"unverzüglich\": \"unverzug\",\n  \"unvollkommene\": \"unvollkomm\",\n  \"unvollkommenen\": \"unvollkomm\",\n  \"unvordenklichen\": \"unvordenk\",\n  \"unvorhergesehene\": \"unvorhergeseh\",\n  \"unvorsichtig\": \"unvorsicht\",\n  \"unvorsichtigkeit\": \"unvorsicht\",\n  \"unwahr\": \"unwahr\",\n  \"unwahrscheinlich\": \"unwahrschein\",\n  \"unwahrscheinliche\": \"unwahrschein\",\n  \"unwahrscheinlichen\": \"unwahrschein\",\n  \"unwandelbar\": \"unwandelbar\",\n  \"unwandelbaren\": \"unwandelbar\",\n  \"unwandelbarkeit\": \"unwandelbar\",\n  \"unweidmännischen\": \"unweidmann\",\n  \"unweise\": \"unweis\",\n  \"unweiser\": \"unweis\",\n  \"unweit\": \"unweit\",\n  \"unwert\": \"unwert\",\n  \"unwerter\": \"unwert\",\n  \"unwesen\": \"unwes\",\n  \"unwetter\": \"unwett\",\n  \"unwichtig\": \"unwicht\",\n  \"unwichtigen\": \"unwicht\",\n  \"unwiderleglich\": \"unwiderleg\",\n  \"unwiderruflich\": \"unwiderruf\",\n  \"unwiderrufliches\": \"unwiderruf\",\n  \"unwidersprechlich\": \"unwidersprech\",\n  \"unwiderstehlich\": \"unwidersteh\",\n  \"unwiderstehliche\": \"unwidersteh\",\n  \"unwiderstehlichen\": \"unwidersteh\",\n  \"unwiederbringlicher\": \"unwiederbring\",\n  \"unwillen\": \"unwill\",\n  \"unwillig\": \"unwill\",\n  \"unwillkommen\": \"unwillkomm\",\n  \"unwillkürlich\": \"unwillkur\",\n  \"unwillkürliche\": \"unwillkur\",\n  \"unwirksam\": \"unwirksam\",\n  \"unwirsch\": \"unwirsch\",\n  \"unwissend\": \"unwiss\",\n  \"unwissende\": \"unwiss\",\n  \"unwissenden\": \"unwiss\",\n  \"unwissenheit\": \"unwiss\",\n  \"unwohl\": \"unwohl\",\n  \"unwohlsein\": \"unwohlsein\",\n  \"unwohnlichen\": \"unwohn\",\n  \"unwort\": \"unwort\",\n  \"unwürdig\": \"unwurd\",\n  \"unwürdige\": \"unwurd\",\n  \"unwürdigen\": \"unwurd\",\n  \"unwürdiger\": \"unwurd\",\n  \"unzählig\": \"unzahl\",\n  \"unzählige\": \"unzahl\",\n  \"unzähligem\": \"unzahl\",\n  \"unzähligemal\": \"unzahligemal\",\n  \"unzähligen\": \"unzahl\",\n  \"unzähliger\": \"unzahl\",\n  \"unzähligere\": \"unzahl\",\n  \"unzähliges\": \"unzahl\",\n  \"unzeit\": \"unzeit\",\n  \"unzersplittertes\": \"unzersplittert\",\n  \"unzertrennlich\": \"unzertrenn\",\n  \"unzertrennliche\": \"unzertrenn\",\n  \"unziemlich\": \"unziem\",\n  \"unziemliche\": \"unziem\",\n  \"unziemliches\": \"unziem\",\n  \"unziemlichsten\": \"unziem\",\n  \"unzucht\": \"unzucht\",\n  \"unzufrieden\": \"unzufried\",\n  \"unzufriedenheit\": \"unzufried\",\n  \"unzugänglich\": \"unzugang\",\n  \"unzugängliche\": \"unzugang\",\n  \"unzukömmlichkeit\": \"unzukomm\",\n  \"unzukömmlichkeiten\": \"unzukomm\",\n  \"unzulänglichkeit\": \"unzulang\",\n  \"unzulässig\": \"unzulass\",\n  \"unzureichend\": \"unzureich\",\n  \"unzusammenhängend\": \"unzusammenhang\",\n  \"unzusammenhängendes\": \"unzusammenhang\",\n  \"unzweckmässigkeit\": \"unzweckmass\",\n  \"unzweifelhaft\": \"unzweifelhaft\",\n  \"unzweifelhafte\": \"unzweifelhaft\",\n  \"unzweifelhafteste\": \"unzweifelhaft\",\n  \"uphas\": \"uphas\",\n  \"üppig\": \"uppig\",\n  \"üppige\": \"uppig\",\n  \"üppigen\": \"uppig\",\n  \"ur\": \"ur\",\n  \"urahn\": \"urahn\",\n  \"uralte\": \"uralt\",\n  \"uralten\": \"uralt\",\n  \"uralter\": \"uralt\",\n  \"urbeginn\": \"urbeginn\",\n  \"urbild\": \"urbild\",\n  \"urbilder\": \"urbild\",\n  \"urbildliche\": \"urbild\",\n  \"urenkel\": \"urenkel\",\n  \"urfeld\": \"urfeld\",\n  \"urfelder\": \"urfeld\",\n  \"urgrossvater\": \"urgrossvat\",\n  \"urgroßvater\": \"urgrossvat\",\n  \"urgrossvaters\": \"urgrossvat\",\n  \"urgroßvaters\": \"urgrossvat\",\n  \"urgrunde\": \"urgrund\",\n  \"urgrundes\": \"urgrund\",\n  \"urheber\": \"urheb\",\n  \"urhebers\": \"urheb\",\n  \"urkirche\": \"urkirch\",\n  \"urlaub\": \"urlaub\",\n  \"urmensch\": \"urmensch\",\n  \"urmenschen\": \"urmensch\",\n  \"urne\": \"urn\",\n  \"urplötzlich\": \"urplotz\",\n  \"ursache\": \"ursach\",\n  \"ursachen\": \"ursach\",\n  \"ursächlich\": \"ursach\",\n  \"ursächlichen\": \"ursach\",\n  \"ursprung\": \"ursprung\",\n  \"ursprunge\": \"ursprung\",\n  \"ursprunges\": \"ursprung\",\n  \"ursprünglich\": \"ursprung\",\n  \"ursprüngliche\": \"ursprung\",\n  \"ursprünglichen\": \"ursprung\",\n  \"ursprüngliches\": \"ursprung\",\n  \"ursprungs\": \"ursprung\",\n  \"ursprungsort\": \"ursprungsort\",\n  \"urteil\": \"urteil\",\n  \"urteile\": \"urteil\",\n  \"urteilen\": \"urteil\",\n  \"urteilenden\": \"urteil\",\n  \"urteils\": \"urteil\",\n  \"urteilskraft\": \"urteilskraft\",\n  \"urteilt\": \"urteilt\",\n  \"ururgrosspapa\": \"ururgrosspapa\",\n  \"ururgrossvater\": \"ururgrossvat\",\n  \"ururgroßvater\": \"ururgrossvat\",\n  \"urvater\": \"urvat\",\n  \"urväter\": \"urvat\",\n  \"urwald\": \"urwald\",\n  \"urwesen\": \"urwes\",\n  \"urwesens\": \"urwes\",\n  \"urzeit\": \"urzeit\",\n  \"usa\": \"usa\",\n  \"usf\": \"usf\",\n  \"ussiel\": \"ussiel\",\n  \"ussiels\": \"ussiel\",\n  \"usurpator\": \"usurpator\",\n  \"usw\": \"usw\",\n  \"utopien\": \"utopi\",\n  \"uxor\": \"uxor\",\n  \"uxores\": \"uxor\",\n  \"v\": \"v\",\n  \"vagantur\": \"vagantur\",\n  \"vagari\": \"vagari\",\n  \"vagus\": \"vagus\",\n  \"vakant\": \"vakant\",\n  \"vallotton\": \"vallotton\",\n  \"vamp\": \"vamp\",\n  \"van\": \"van\",\n  \"varia\": \"varia\",\n  \"variationen\": \"variation\",\n  \"vasallentreue\": \"vasallentreu\",\n  \"vaschwör\": \"vaschwor\",\n  \"vastatio\": \"vastatio\",\n  \"vastationes\": \"vastation\",\n  \"vater\": \"vat\",\n  \"väter\": \"vat\",\n  \"vaterhaus\": \"vaterhaus\",\n  \"vaterhause\": \"vaterhaus\",\n  \"vaterhäusern\": \"vaterhaus\",\n  \"vaterland\": \"vaterland\",\n  \"vaterlande\": \"vaterland\",\n  \"vaterlandes\": \"vaterland\",\n  \"väterliche\": \"vat\",\n  \"väterlichen\": \"vat\",\n  \"väterliches\": \"vat\",\n  \"vatermörder\": \"vatermord\",\n  \"vätern\": \"vat\",\n  \"vaters\": \"vat\",\n  \"vaterunser\": \"vateruns\",\n  \"vatet\": \"vatet\",\n  \"vatikan\": \"vatikan\",\n  \"vaudevilletheatern\": \"vaudevilletheat\",\n  \"veb\": \"veb\",\n  \"vehikel\": \"vehikel\",\n  \"veigerl\": \"veigerl\",\n  \"veilchen\": \"veilch\",\n  \"veilchenblaue\": \"veilchenblau\",\n  \"veilchenburg\": \"veilchenburg\",\n  \"veilchenkoppe\": \"veilchenkopp\",\n  \"veilchenzeit\": \"veilchenzeit\",\n  \"veit\": \"veit\",\n  \"vemünftiger\": \"vemunft\",\n  \"ven\": \"ven\",\n  \"venedig\": \"vened\",\n  \"venezianischen\": \"venezian\",\n  \"ver\": \"ver\",\n  \"vera\": \"vera\",\n  \"verab\": \"verab\",\n  \"verabredet\": \"verabredet\",\n  \"verabredeten\": \"verabredet\",\n  \"verabredung\": \"verabred\",\n  \"verabreichten\": \"verabreicht\",\n  \"verabscheuen\": \"verabscheu\",\n  \"verabscheuungsvermögens\": \"verabscheuungsvermog\",\n  \"verabschiedet\": \"verabschiedet\",\n  \"verabschiedete\": \"verabschiedet\",\n  \"verabschiedeten\": \"verabschiedet\",\n  \"verachte\": \"veracht\",\n  \"verachten\": \"veracht\",\n  \"verachtet\": \"verachtet\",\n  \"verachtete\": \"verachtet\",\n  \"verachteten\": \"verachtet\",\n  \"verächtlich\": \"veracht\",\n  \"verächtlichen\": \"veracht\",\n  \"verachtung\": \"veracht\",\n  \"verähnlicht\": \"verahnlicht\",\n  \"verähnlichten\": \"verahnlicht\",\n  \"veraltet\": \"veraltet\",\n  \"verändere\": \"verand\",\n  \"veränderlichkeit\": \"verander\",\n  \"verändern\": \"verand\",\n  \"verändert\": \"verandert\",\n  \"veränderte\": \"verandert\",\n  \"veränderten\": \"verandert\",\n  \"verändertes\": \"verandert\",\n  \"veränderung\": \"verander\",\n  \"veränderungen\": \"verander\",\n  \"veränderungsleistung\": \"veranderungsleist\",\n  \"verängstigt\": \"verangstigt\",\n  \"veranlassen\": \"veranlass\",\n  \"veranlasst\": \"veranlasst\",\n  \"veranlaßt\": \"veranlasst\",\n  \"veranlasste\": \"veranlasst\",\n  \"veranlasster\": \"veranlasst\",\n  \"veranlassung\": \"veranlass\",\n  \"veranschaulichung\": \"veranschaulich\",\n  \"veranstalten\": \"veranstalt\",\n  \"veranstaltet\": \"veranstaltet\",\n  \"veranstaltete\": \"veranstaltet\",\n  \"veranstalteten\": \"veranstaltet\",\n  \"veranstaltung\": \"veranstalt\",\n  \"veranstaltungen\": \"veranstalt\",\n  \"verantworten\": \"verantwort\",\n  \"verantwortete\": \"verantwortet\",\n  \"verantwortlich\": \"verantwort\",\n  \"verantwortlichen\": \"verantwort\",\n  \"verantwortung\": \"verantwort\",\n  \"verarbeitet\": \"verarbeitet\",\n  \"verarmten\": \"verarmt\",\n  \"verarmung\": \"verarm\",\n  \"verbal\": \"verbal\",\n  \"verbale\": \"verbal\",\n  \"verband\": \"verband\",\n  \"verbanden\": \"verband\",\n  \"verbandes\": \"verband\",\n  \"verbannt\": \"verbannt\",\n  \"verbannung\": \"verbann\",\n  \"verbarg\": \"verbarg\",\n  \"verbargen\": \"verbarg\",\n  \"verbat\": \"verbat\",\n  \"verbereitung\": \"verbereit\",\n  \"verbergen\": \"verberg\",\n  \"verberget\": \"verberget\",\n  \"verbesserlichkeit\": \"verbesser\",\n  \"verbessern\": \"verbess\",\n  \"verbesserte\": \"verbessert\",\n  \"verbesserungen\": \"verbesser\",\n  \"verbesserungsbedürftigkeit\": \"verbesserungsbedurft\",\n  \"verbesserungsvorschläge\": \"verbesserungsvorschlag\",\n  \"verbeugend\": \"verbeug\",\n  \"verbeugte\": \"verbeugt\",\n  \"verbeugten\": \"verbeugt\",\n  \"verbeugung\": \"verbeug\",\n  \"verbeugungen\": \"verbeug\",\n  \"verbeulten\": \"verbeult\",\n  \"verbiegt\": \"verbiegt\",\n  \"verbiete\": \"verbiet\",\n  \"verbieten\": \"verbiet\",\n  \"verbinde\": \"verbind\",\n  \"verbinden\": \"verbind\",\n  \"verbindet\": \"verbindet\",\n  \"verbindlichkeit\": \"verbind\",\n  \"verbindlichkeiten\": \"verbind\",\n  \"verbindung\": \"verbind\",\n  \"verbindungen\": \"verbind\",\n  \"verbindungsmittel\": \"verbindungsmittel\",\n  \"verbirg\": \"verbirg\",\n  \"verbirgst\": \"verbirg\",\n  \"verbirgt\": \"verbirgt\",\n  \"verbis\": \"verbis\",\n  \"verbissen\": \"verbiss\",\n  \"verbissenheit\": \"verbiss\",\n  \"verbittert\": \"verbittert\",\n  \"verbitterte\": \"verbittert\",\n  \"verbitterten\": \"verbittert\",\n  \"verbittertwerden\": \"verbittertwerd\",\n  \"verbleib\": \"verbleib\",\n  \"verbleibe\": \"verbleib\",\n  \"verbleiben\": \"verbleib\",\n  \"verbleibt\": \"verbleibt\",\n  \"verblenden\": \"verblend\",\n  \"verblendet\": \"verblendet\",\n  \"verblendeten\": \"verblendet\",\n  \"verblendung\": \"verblend\",\n  \"verblichen\": \"verblich\",\n  \"verblichenen\": \"verblich\",\n  \"verbliebe\": \"verblieb\",\n  \"verblieben\": \"verblieb\",\n  \"verbliebenen\": \"verblieb\",\n  \"verblüffen\": \"verbluff\",\n  \"verblüfft\": \"verblufft\",\n  \"verblüfften\": \"verblufft\",\n  \"verblüfftesten\": \"verblufft\",\n  \"verblüffung\": \"verbluff\",\n  \"verblüht\": \"verbluht\",\n  \"verblümt\": \"verblumt\",\n  \"verblümtes\": \"verblumt\",\n  \"verborgen\": \"verborg\",\n  \"verborgene\": \"verborg\",\n  \"verborgenen\": \"verborg\",\n  \"verborgener\": \"verborg\",\n  \"verborgenes\": \"verborg\",\n  \"verborgenheit\": \"verborg\",\n  \"verborgenheiten\": \"verborg\",\n  \"verborgenwerden\": \"verborgenwerd\",\n  \"verbot\": \"verbot\",\n  \"verboten\": \"verbot\",\n  \"verbracht\": \"verbracht\",\n  \"verbrachte\": \"verbracht\",\n  \"verbrachtem\": \"verbracht\",\n  \"verbrachten\": \"verbracht\",\n  \"verbrämt\": \"verbramt\",\n  \"verbrannt\": \"verbrannt\",\n  \"verbrannte\": \"verbrannt\",\n  \"verbrannten\": \"verbrannt\",\n  \"verbraucht\": \"verbraucht\",\n  \"verbrechen\": \"verbrech\",\n  \"verbrecherischen\": \"verbrecher\",\n  \"verbreiten\": \"verbreit\",\n  \"verbreitet\": \"verbreitet\",\n  \"verbreitete\": \"verbreitet\",\n  \"verbrennen\": \"verbrenn\",\n  \"verbrennt\": \"verbrennt\",\n  \"verbrennung\": \"verbrenn\",\n  \"verbringe\": \"verbring\",\n  \"verbringen\": \"verbring\",\n  \"verbringt\": \"verbringt\",\n  \"verbrüderung\": \"verbruder\",\n  \"verbrühen\": \"verbruh\",\n  \"verbuhltes\": \"verbuhlt\",\n  \"verbum\": \"verbum\",\n  \"verbunden\": \"verbund\",\n  \"verbundene\": \"verbund\",\n  \"verbundenen\": \"verbund\",\n  \"verbundenes\": \"verbund\",\n  \"verdacht\": \"verdacht\",\n  \"verdachte\": \"verdacht\",\n  \"verdächtig\": \"verdacht\",\n  \"verdächtiges\": \"verdacht\",\n  \"verdächtigt\": \"verdachtigt\",\n  \"verdamme\": \"verdamm\",\n  \"verdammen\": \"verdamm\",\n  \"verdammlich\": \"verdamm\",\n  \"verdammnis\": \"verdammnis\",\n  \"verdammt\": \"verdammt\",\n  \"verdammte\": \"verdammt\",\n  \"verdammtem\": \"verdammt\",\n  \"verdammten\": \"verdammt\",\n  \"verdammungen\": \"verdamm\",\n  \"verdampften\": \"verdampft\",\n  \"verdanke\": \"verdank\",\n  \"verdanken\": \"verdank\",\n  \"verdankt\": \"verdankt\",\n  \"verdarb\": \"verdarb\",\n  \"verdarben\": \"verdarb\",\n  \"verdauen\": \"verdau\",\n  \"verdeckt\": \"verdeckt\",\n  \"verdeckte\": \"verdeckt\",\n  \"verdenken\": \"verdenk\",\n  \"verderbe\": \"verderb\",\n  \"verderben\": \"verderb\",\n  \"verderbende\": \"verderb\",\n  \"verderbenden\": \"verderb\",\n  \"verderber\": \"verderb\",\n  \"verderblich\": \"verderb\",\n  \"verderbliche\": \"verderb\",\n  \"verderblichen\": \"verderb\",\n  \"verderbnis\": \"verderbnis\",\n  \"verderbt\": \"verderbt\",\n  \"verderbtheit\": \"verderbt\",\n  \"verdichtet\": \"verdichtet\",\n  \"verdienen\": \"verdi\",\n  \"verdienst\": \"verdien\",\n  \"verdienste\": \"verdien\",\n  \"verdienstlich\": \"verdienst\",\n  \"verdienstlichen\": \"verdienst\",\n  \"verdienstlicher\": \"verdienst\",\n  \"verdient\": \"verdient\",\n  \"verdiente\": \"verdient\",\n  \"verdientermassen\": \"verdientermass\",\n  \"verdientermaßen\": \"verdientermass\",\n  \"verdingen\": \"verding\",\n  \"verdirbt\": \"verdirbt\",\n  \"verdoppelt\": \"verdoppelt\",\n  \"verdoppeltem\": \"verdoppelt\",\n  \"verdoppelten\": \"verdoppelt\",\n  \"verdorben\": \"verdorb\",\n  \"verdorbene\": \"verdorb\",\n  \"verdorbenen\": \"verdorb\",\n  \"verdorbenerweise\": \"verdorbenerweis\",\n  \"verdorren\": \"verdorr\",\n  \"verdorrt\": \"verdorrt\",\n  \"verdorrte\": \"verdorrt\",\n  \"verdorrter\": \"verdorrt\",\n  \"verdrängen\": \"verdrang\",\n  \"verdrängt\": \"verdrangt\",\n  \"verdrehen\": \"verdreh\",\n  \"verdrehend\": \"verdreh\",\n  \"verdreht\": \"verdreht\",\n  \"verdrehte\": \"verdreht\",\n  \"verdrehten\": \"verdreht\",\n  \"verdrehter\": \"verdreht\",\n  \"verdrehtheit\": \"verdreht\",\n  \"verdreifachen\": \"verdreifach\",\n  \"verdriesslich\": \"verdriess\",\n  \"verdrießlich\": \"verdriess\",\n  \"verdrossen\": \"verdross\",\n  \"verdruss\": \"verdruss\",\n  \"verdruß\": \"verdruss\",\n  \"verdunkeln\": \"verdunkeln\",\n  \"verdunkelt\": \"verdunkelt\",\n  \"verdunkelte\": \"verdunkelt\",\n  \"verdunkelten\": \"verdunkelt\",\n  \"verdunkelung\": \"verdunkel\",\n  \"verdunklung\": \"verdunkl\",\n  \"verdursten\": \"verdurst\",\n  \"verdutzt\": \"verdutzt\",\n  \"verdutzte\": \"verdutzt\",\n  \"verdutztes\": \"verdutzt\",\n  \"veredelt\": \"veredelt\",\n  \"verehelichen\": \"verehe\",\n  \"verehelicht\": \"verehelicht\",\n  \"verehren\": \"verehr\",\n  \"verehrer\": \"verehr\",\n  \"verehrt\": \"verehrt\",\n  \"verehrte\": \"verehrt\",\n  \"verehrten\": \"verehrt\",\n  \"verehrung\": \"verehr\",\n  \"verehrungswürdig\": \"verehrungswurd\",\n  \"verein\": \"verein\",\n  \"vereinbarung\": \"vereinbar\",\n  \"vereine\": \"verein\",\n  \"vereinicht\": \"vereinicht\",\n  \"vereinigen\": \"verein\",\n  \"vereinigende\": \"verein\",\n  \"vereinigt\": \"vereinigt\",\n  \"vereinigte\": \"vereinigt\",\n  \"vereinigung\": \"verein\",\n  \"vereins\": \"verein\",\n  \"vereinsversammlung\": \"vereinsversamml\",\n  \"vereint\": \"vereint\",\n  \"vereinte\": \"vereint\",\n  \"vereinten\": \"vereint\",\n  \"vereinzelte\": \"vereinzelt\",\n  \"vereinzelten\": \"vereinzelt\",\n  \"vereinzeltes\": \"vereinzelt\",\n  \"vereiteln\": \"vereiteln\",\n  \"vereitelt\": \"vereitelt\",\n  \"verena\": \"verena\",\n  \"verendet\": \"verendet\",\n  \"vererbt\": \"vererbt\",\n  \"vererbten\": \"vererbt\",\n  \"vererbung\": \"vererb\",\n  \"verfahre\": \"verfahr\",\n  \"verfahren\": \"verfahr\",\n  \"verfahrens\": \"verfahr\",\n  \"verfahrensweisen\": \"verfahrensweis\",\n  \"verfährt\": \"verfahrt\",\n  \"verfall\": \"verfall\",\n  \"verfalle\": \"verfall\",\n  \"verfallen\": \"verfall\",\n  \"verfällt\": \"verfallt\",\n  \"verfälschen\": \"verfalsch\",\n  \"verfälscher\": \"verfalsch\",\n  \"verfälscht\": \"verfalscht\",\n  \"verfälschte\": \"verfalscht\",\n  \"verfälschtem\": \"verfalscht\",\n  \"verfälschten\": \"verfalscht\",\n  \"verfälschtes\": \"verfalscht\",\n  \"verfälschung\": \"verfalsch\",\n  \"verfälschungen\": \"verfalsch\",\n  \"verfängliche\": \"verfang\",\n  \"verfänglichen\": \"verfang\",\n  \"verfasser\": \"verfass\",\n  \"verfasst\": \"verfasst\",\n  \"verfaßt\": \"verfasst\",\n  \"verfassten\": \"verfasst\",\n  \"verfassung\": \"verfass\",\n  \"verfassungs\": \"verfass\",\n  \"verfassungsänderung\": \"verfassungsander\",\n  \"verfassungsrevisoren\": \"verfassungsrevisor\",\n  \"verfaulen\": \"verfaul\",\n  \"verfeature\": \"verfeatur\",\n  \"verfeaturt\": \"verfeaturt\",\n  \"verfechten\": \"verfecht\",\n  \"verfehlt\": \"verfehlt\",\n  \"verfehlter\": \"verfehlt\",\n  \"verfeinden\": \"verfeind\",\n  \"verfeindet\": \"verfeindet\",\n  \"verfeindeten\": \"verfeindet\",\n  \"verfertigen\": \"verfert\",\n  \"verfertigt\": \"verfertigt\",\n  \"verfertigte\": \"verfertigt\",\n  \"verfertigten\": \"verfertigt\",\n  \"verfertigung\": \"verfert\",\n  \"verfiel\": \"verfiel\",\n  \"verfielen\": \"verfiel\",\n  \"verfilztes\": \"verfilzt\",\n  \"verfing\": \"verfing\",\n  \"verfinstern\": \"verfin\",\n  \"verfinstert\": \"verfinstert\",\n  \"verfinsterte\": \"verfinstert\",\n  \"verfinsterten\": \"verfinstert\",\n  \"verfinstertwerden\": \"verfinstertwerd\",\n  \"verflacht\": \"verflacht\",\n  \"verfliegt\": \"verfliegt\",\n  \"verflochtenen\": \"verflocht\",\n  \"verflogen\": \"verflog\",\n  \"verfloss\": \"verfloss\",\n  \"verflossen\": \"verfloss\",\n  \"verfluche\": \"verfluch\",\n  \"verfluchen\": \"verfluch\",\n  \"verfluchend\": \"verfluch\",\n  \"verflucht\": \"verflucht\",\n  \"verfluchte\": \"verflucht\",\n  \"verfluchten\": \"verflucht\",\n  \"verflüchtigt\": \"verfluchtigt\",\n  \"verfolgen\": \"verfolg\",\n  \"verfolger\": \"verfolg\",\n  \"verfolgern\": \"verfolg\",\n  \"verfolgt\": \"verfolgt\",\n  \"verfolgte\": \"verfolgt\",\n  \"verfolgten\": \"verfolgt\",\n  \"verfolgung\": \"verfolg\",\n  \"verfremdung\": \"verfremd\",\n  \"verfriere\": \"verfri\",\n  \"verfügen\": \"verfug\",\n  \"verfügt\": \"verfugt\",\n  \"verfügte\": \"verfugt\",\n  \"verfügung\": \"verfug\",\n  \"verfügungsrecht\": \"verfugungsrecht\",\n  \"verfuhr\": \"verfuhr\",\n  \"verfuhren\": \"verfuhr\",\n  \"verführen\": \"verfuhr\",\n  \"verführer\": \"verfuhr\",\n  \"verführerische\": \"verfuhrer\",\n  \"verführerischen\": \"verfuhrer\",\n  \"verführt\": \"verfuhrt\",\n  \"verführte\": \"verfuhrt\",\n  \"vergabte\": \"vergabt\",\n  \"vergangen\": \"vergang\",\n  \"vergangene\": \"vergang\",\n  \"vergangenen\": \"vergang\",\n  \"vergangenheit\": \"vergang\",\n  \"vergänglich\": \"vergang\",\n  \"vergänglichkeit\": \"vergang\",\n  \"vergass\": \"vergass\",\n  \"vergaß\": \"vergass\",\n  \"vergassen\": \"vergass\",\n  \"vergaßen\": \"vergass\",\n  \"vergeben\": \"vergeb\",\n  \"vergebens\": \"vergeb\",\n  \"vergeblich\": \"vergeb\",\n  \"vergebliche\": \"vergeb\",\n  \"vergeblichen\": \"vergeb\",\n  \"vergebliches\": \"vergeb\",\n  \"vergeblichkeit\": \"vergeb\",\n  \"vergebung\": \"vergeb\",\n  \"vergegenwärtigte\": \"vergegenwartigt\",\n  \"vergehen\": \"vergeh\",\n  \"vergehet\": \"vergehet\",\n  \"vergehn\": \"vergehn\",\n  \"vergeht\": \"vergeht\",\n  \"vergelten\": \"vergelt\",\n  \"vergelts\": \"vergelt\",\n  \"vergeltung\": \"vergelt\",\n  \"vergessen\": \"vergess\",\n  \"vergessend\": \"vergess\",\n  \"vergessene\": \"vergess\",\n  \"vergessener\": \"vergess\",\n  \"vergessenheit\": \"vergess\",\n  \"vergesslichkeit\": \"vergess\",\n  \"vergeßlichkeit\": \"vergess\",\n  \"vergesst\": \"vergesst\",\n  \"vergeuden\": \"vergeud\",\n  \"vergib\": \"vergib\",\n  \"vergibst\": \"vergib\",\n  \"vergiessen\": \"vergiess\",\n  \"vergießen\": \"vergiess\",\n  \"vergiessend\": \"vergiess\",\n  \"vergiesst\": \"vergiesst\",\n  \"vergießt\": \"vergiesst\",\n  \"vergiftet\": \"vergiftet\",\n  \"vergilbter\": \"vergilbt\",\n  \"vergilt\": \"vergilt\",\n  \"verging\": \"verging\",\n  \"vergingen\": \"verging\",\n  \"vergiss\": \"vergiss\",\n  \"vergissest\": \"vergiss\",\n  \"vergissmeinnicht\": \"vergissmeinnicht\",\n  \"vergissmeinnichtschnäpschen\": \"vergissmeinnichtschnapsch\",\n  \"vergissmeinnichtschnäpse\": \"vergissmeinnichtschnaps\",\n  \"vergisst\": \"vergisst\",\n  \"vergleich\": \"vergleich\",\n  \"vergleiche\": \"vergleich\",\n  \"vergleichen\": \"vergleich\",\n  \"vergleichsfällen\": \"vergleichsfall\",\n  \"vergleichskriterium\": \"vergleichskriterium\",\n  \"vergleichsweise\": \"vergleichsweis\",\n  \"vergleicht\": \"vergleicht\",\n  \"vergleichung\": \"vergleich\",\n  \"vergleichungen\": \"vergleich\",\n  \"verglichen\": \"verglich\",\n  \"vergnügen\": \"vergnug\",\n  \"vergnügenden\": \"vergnug\",\n  \"vergnügens\": \"vergnug\",\n  \"vergnüglich\": \"vergnug\",\n  \"vergnüglichen\": \"vergnug\",\n  \"vergnügliches\": \"vergnug\",\n  \"vergnügt\": \"vergnugt\",\n  \"vergnügte\": \"vergnugt\",\n  \"vergnügtem\": \"vergnugt\",\n  \"vergnügten\": \"vergnugt\",\n  \"vergnügter\": \"vergnugt\",\n  \"vergnügteste\": \"vergnugt\",\n  \"vergnügtheit\": \"vergnugt\",\n  \"vergnügungen\": \"vergnug\",\n  \"vergnügungslokalen\": \"vergnugungslokal\",\n  \"vergnügungssucht\": \"vergnugungssucht\",\n  \"vergnügungstagen\": \"vergnugungstag\",\n  \"vergoldet\": \"vergoldet\",\n  \"vergoldete\": \"vergoldet\",\n  \"vergoldetem\": \"vergoldet\",\n  \"vergoldeten\": \"vergoldet\",\n  \"vergoldeter\": \"vergoldet\",\n  \"vergoldetes\": \"vergoldet\",\n  \"vergolten\": \"vergolt\",\n  \"vergönnt\": \"vergonnt\",\n  \"vergoss\": \"vergoss\",\n  \"vergoß\": \"vergoss\",\n  \"vergossen\": \"vergoss\",\n  \"vergöttert\": \"vergottert\",\n  \"vergraben\": \"vergrab\",\n  \"vergrämt\": \"vergramt\",\n  \"vergrössern\": \"vergross\",\n  \"vergrößern\": \"vergross\",\n  \"vergrössert\": \"vergrossert\",\n  \"vergrub\": \"vergrub\",\n  \"vergüten\": \"vergut\",\n  \"verhaftbefehl\": \"verhaftbefehl\",\n  \"verhaften\": \"verhaft\",\n  \"verhaftet\": \"verhaftet\",\n  \"verhafteten\": \"verhaftet\",\n  \"verhaftung\": \"verhaft\",\n  \"verhalf\": \"verhalf\",\n  \"verhallende\": \"verhall\",\n  \"verhallte\": \"verhallt\",\n  \"verhält\": \"verhalt\",\n  \"verhalte\": \"verhalt\",\n  \"verhalten\": \"verhalt\",\n  \"verhaltend\": \"verhalt\",\n  \"verhaltenen\": \"verhalt\",\n  \"verhaltener\": \"verhalt\",\n  \"verhaltens\": \"verhalt\",\n  \"verhältnis\": \"verhaltnis\",\n  \"verhältnismässig\": \"verhaltnismass\",\n  \"verhältnismäßig\": \"verhaltnismass\",\n  \"verhältnisse\": \"verhaltnis\",\n  \"verhältnissen\": \"verhaltnis\",\n  \"verhältnisses\": \"verhaltnis\",\n  \"verhandeln\": \"verhandeln\",\n  \"verhandelte\": \"verhandelt\",\n  \"verhandlung\": \"verhandl\",\n  \"verhandlungen\": \"verhandl\",\n  \"verhängnis\": \"verhangnis\",\n  \"verhängnisvollen\": \"verhangnisvoll\",\n  \"verhängnisvollste\": \"verhangnisvoll\",\n  \"verhärmten\": \"verharmt\",\n  \"verharre\": \"verharr\",\n  \"verharrte\": \"verharrt\",\n  \"verhärten\": \"verhart\",\n  \"verhärtet\": \"verhartet\",\n  \"verhärtete\": \"verhartet\",\n  \"verhärteten\": \"verhartet\",\n  \"verhärtung\": \"verhart\",\n  \"verhasst\": \"verhasst\",\n  \"verhassten\": \"verhasst\",\n  \"verhasster\": \"verhasst\",\n  \"verheerenden\": \"verheer\",\n  \"verheert\": \"verheert\",\n  \"verheerung\": \"verheer\",\n  \"verhehlten\": \"verhehlt\",\n  \"verheimlichen\": \"verheim\",\n  \"verheiraten\": \"verheirat\",\n  \"verheiratet\": \"verheiratet\",\n  \"verheiratete\": \"verheiratet\",\n  \"verheirateten\": \"verheiratet\",\n  \"verheiratetes\": \"verheiratet\",\n  \"verheissen\": \"verheiss\",\n  \"verheißen\": \"verheiss\",\n  \"verheissende\": \"verheiss\",\n  \"verheißende\": \"verheiss\",\n  \"verheisst\": \"verheisst\",\n  \"verheissung\": \"verheiss\",\n  \"verheißung\": \"verheiss\",\n  \"verhelfen\": \"verhelf\",\n  \"verherrliche\": \"verherr\",\n  \"verherrlichen\": \"verherr\",\n  \"verherrlichet\": \"verherrlichet\",\n  \"verherrlicht\": \"verherrlicht\",\n  \"verherrlichten\": \"verherrlicht\",\n  \"verherrlichung\": \"verherrlich\",\n  \"verhext\": \"verhext\",\n  \"verhielt\": \"verhielt\",\n  \"verhielten\": \"verhielt\",\n  \"verhindere\": \"verhind\",\n  \"verhindern\": \"verhind\",\n  \"verhindert\": \"verhindert\",\n  \"verhinderte\": \"verhindert\",\n  \"verhinderten\": \"verhindert\",\n  \"verhofften\": \"verhofft\",\n  \"verhöhnen\": \"verhohn\",\n  \"verhöhnt\": \"verhohnt\",\n  \"verhöhnung\": \"verhohn\",\n  \"verholfen\": \"verholf\",\n  \"verhör\": \"verhor\",\n  \"verhöre\": \"verhor\",\n  \"verhören\": \"verhor\",\n  \"verhülle\": \"verhull\",\n  \"verhüllt\": \"verhullt\",\n  \"verhüllte\": \"verhullt\",\n  \"verhüllung\": \"verhull\",\n  \"verhundertfacht\": \"verhundertfacht\",\n  \"verhungert\": \"verhungert\",\n  \"verhungertes\": \"verhungert\",\n  \"verhüten\": \"verhut\",\n  \"verhütet\": \"verhutet\",\n  \"verint\": \"verint\",\n  \"verirren\": \"verirr\",\n  \"verirrt\": \"verirrt\",\n  \"verirrte\": \"verirrt\",\n  \"verirrung\": \"verirr\",\n  \"veritas\": \"veritas\",\n  \"verjährt\": \"verjahrt\",\n  \"verjährte\": \"verjahrt\",\n  \"verkauf\": \"verkauf\",\n  \"verkaufen\": \"verkauf\",\n  \"verkaufssumme\": \"verkaufssumm\",\n  \"verkauft\": \"verkauft\",\n  \"verkauften\": \"verkauft\",\n  \"verkehr\": \"verkehr\",\n  \"verkehren\": \"verkehr\",\n  \"verkehrs\": \"verkehr\",\n  \"verkehrt\": \"verkehrt\",\n  \"verkehrte\": \"verkehrt\",\n  \"verkehrten\": \"verkehrt\",\n  \"verkehrtes\": \"verkehrt\",\n  \"verkehrtheit\": \"verkehrt\",\n  \"verkehrtheiten\": \"verkehrt\",\n  \"verkehrung\": \"verkehr\",\n  \"verkehrungen\": \"verkehr\",\n  \"verkennen\": \"verkenn\",\n  \"verkennt\": \"verkennt\",\n  \"verklammert\": \"verklammert\",\n  \"verklang\": \"verklang\",\n  \"verklärt\": \"verklart\",\n  \"verklärten\": \"verklart\",\n  \"verklärtes\": \"verklart\",\n  \"verklebe\": \"verkleb\",\n  \"verklebt\": \"verklebt\",\n  \"verklebte\": \"verklebt\",\n  \"verkleiden\": \"verkleid\",\n  \"verkleidet\": \"verkleidet\",\n  \"verkleidung\": \"verkleid\",\n  \"verkleinern\": \"verklein\",\n  \"verklungen\": \"verklung\",\n  \"verkneifen\": \"verkneif\",\n  \"verkniff\": \"verkniff\",\n  \"verkniffen\": \"verkniff\",\n  \"verkniffenen\": \"verkniff\",\n  \"verknüpfe\": \"verknupf\",\n  \"verknüpfen\": \"verknupf\",\n  \"verknüpft\": \"verknupft\",\n  \"verknüpfte\": \"verknupft\",\n  \"verknüpften\": \"verknupft\",\n  \"verknüpfung\": \"verknupf\",\n  \"verknüpfungen\": \"verknupf\",\n  \"verkommenen\": \"verkomm\",\n  \"verkommenheit\": \"verkomm\",\n  \"verkriecht\": \"verkriecht\",\n  \"verkrochen\": \"verkroch\",\n  \"verkrümmelten\": \"verkrummelt\",\n  \"verkrüppelt\": \"verkruppelt\",\n  \"verkühlung\": \"verkuhl\",\n  \"verkünden\": \"verkund\",\n  \"verkündet\": \"verkundet\",\n  \"verkündete\": \"verkundet\",\n  \"verkündeten\": \"verkundet\",\n  \"verkündige\": \"verkund\",\n  \"verkündigen\": \"verkund\",\n  \"verkündigt\": \"verkundigt\",\n  \"verkündigte\": \"verkundigt\",\n  \"verkündigung\": \"verkund\",\n  \"verkünstelt\": \"verkunstelt\",\n  \"verkürzen\": \"verkurz\",\n  \"verlachen\": \"verlach\",\n  \"verlacht\": \"verlacht\",\n  \"verlag\": \"verlag\",\n  \"verlages\": \"verlag\",\n  \"verlagsmitteilung\": \"verlagsmitteil\",\n  \"verlange\": \"verlang\",\n  \"verlangen\": \"verlang\",\n  \"verlangend\": \"verlang\",\n  \"verlängern\": \"verlang\",\n  \"verlängert\": \"verlangert\",\n  \"verlängerten\": \"verlangert\",\n  \"verlangst\": \"verlang\",\n  \"verlangt\": \"verlangt\",\n  \"verlangte\": \"verlangt\",\n  \"verlangten\": \"verlangt\",\n  \"verlas\": \"verlas\",\n  \"verlass\": \"verlass\",\n  \"verlassen\": \"verlass\",\n  \"verlassene\": \"verlass\",\n  \"verlassenen\": \"verlass\",\n  \"verlassener\": \"verlass\",\n  \"verlassenes\": \"verlass\",\n  \"verlassenheit\": \"verlass\",\n  \"verlasset\": \"verlasset\",\n  \"verlässet\": \"verlasset\",\n  \"verlässt\": \"verlasst\",\n  \"verläßt\": \"verlasst\",\n  \"verlaub\": \"verlaub\",\n  \"verlauf\": \"verlauf\",\n  \"verlaufe\": \"verlauf\",\n  \"verlaufen\": \"verlauf\",\n  \"verlaufende\": \"verlauf\",\n  \"verlaufs\": \"verlauf\",\n  \"verläuft\": \"verlauft\",\n  \"verlauten\": \"verlaut\",\n  \"verlebten\": \"verlebt\",\n  \"verlegen\": \"verleg\",\n  \"verlegenen\": \"verleg\",\n  \"verlegener\": \"verleg\",\n  \"verlegenheit\": \"verleg\",\n  \"verleger\": \"verleg\",\n  \"verlegt\": \"verlegt\",\n  \"verlegte\": \"verlegt\",\n  \"verlegten\": \"verlegt\",\n  \"verleihe\": \"verleih\",\n  \"verleihen\": \"verleih\",\n  \"verleiht\": \"verleiht\",\n  \"verleiten\": \"verleit\",\n  \"verleitet\": \"verleitet\",\n  \"verleitete\": \"verleitet\",\n  \"verletze\": \"verletz\",\n  \"verletzen\": \"verletz\",\n  \"verletzt\": \"verletzt\",\n  \"verletzte\": \"verletzt\",\n  \"verletzten\": \"verletzt\",\n  \"verletztheit\": \"verletzt\",\n  \"verletzung\": \"verletz\",\n  \"verleugne\": \"verleugn\",\n  \"verleugnet\": \"verleugnet\",\n  \"verleugnete\": \"verleugnet\",\n  \"verleumden\": \"verleumd\",\n  \"verleumdern\": \"verleumd\",\n  \"verleumdet\": \"verleumdet\",\n  \"verleumdungswesen\": \"verleumdungswes\",\n  \"verlieben\": \"verlieb\",\n  \"verliebt\": \"verliebt\",\n  \"verliebte\": \"verliebt\",\n  \"verliebten\": \"verliebt\",\n  \"verliebter\": \"verliebt\",\n  \"verliebtheit\": \"verliebt\",\n  \"verlief\": \"verlief\",\n  \"verlieh\": \"verlieh\",\n  \"verliehen\": \"verlieh\",\n  \"verlieren\": \"verli\",\n  \"verliert\": \"verliert\",\n  \"verliess\": \"verliess\",\n  \"verließ\": \"verliess\",\n  \"verlobt\": \"verlobt\",\n  \"verlobung\": \"verlob\",\n  \"verlocken\": \"verlock\",\n  \"verlockend\": \"verlock\",\n  \"verlockendes\": \"verlock\",\n  \"verlockt\": \"verlockt\",\n  \"verlockte\": \"verlockt\",\n  \"verlockung\": \"verlock\",\n  \"verlockungen\": \"verlock\",\n  \"verlogenen\": \"verlog\",\n  \"verlogenes\": \"verlog\",\n  \"verlor\": \"verlor\",\n  \"verlöre\": \"verlor\",\n  \"verloren\": \"verlor\",\n  \"verlorene\": \"verlor\",\n  \"verlorenen\": \"verlor\",\n  \"verlorener\": \"verlor\",\n  \"verlorenes\": \"verlor\",\n  \"verlorengegangen\": \"verlorengegang\",\n  \"verlorengehe\": \"verlorengeh\",\n  \"verlorengehen\": \"verlorengeh\",\n  \"verlorengeht\": \"verlorengeht\",\n  \"verlorenging\": \"verlorenging\",\n  \"verlorengingen\": \"verlorenging\",\n  \"verlorensein\": \"verlorensein\",\n  \"verlöschen\": \"verlosch\",\n  \"verlotterten\": \"verlottert\",\n  \"verlumpete\": \"verlumpet\",\n  \"verlumpte\": \"verlumpt\",\n  \"verlumpungen\": \"verlump\",\n  \"verlust\": \"verlust\",\n  \"verlustig\": \"verlust\",\n  \"verlusts\": \"verlust\",\n  \"vermachte\": \"vermacht\",\n  \"vermag\": \"vermag\",\n  \"vermählt\": \"vermahlt\",\n  \"vermählte\": \"vermahlt\",\n  \"vermählten\": \"vermahlt\",\n  \"vermähltes\": \"vermahlt\",\n  \"vermählung\": \"vermahl\",\n  \"vermählungen\": \"vermahl\",\n  \"vermahnen\": \"vermahn\",\n  \"vermauern\": \"vermau\",\n  \"vermehren\": \"vermehr\",\n  \"vermehrt\": \"vermehrt\",\n  \"vermehrten\": \"vermehrt\",\n  \"vermehrter\": \"vermehrt\",\n  \"vermehrung\": \"vermehr\",\n  \"vermehrungen\": \"vermehr\",\n  \"vermeiden\": \"vermeid\",\n  \"vermeidung\": \"vermeid\",\n  \"vermeinte\": \"vermeint\",\n  \"vermeinten\": \"vermeint\",\n  \"vermeinter\": \"vermeint\",\n  \"vermeintlich\": \"vermeint\",\n  \"vermeldete\": \"vermeldet\",\n  \"vermengt\": \"vermengt\",\n  \"vermerkt\": \"vermerkt\",\n  \"vermied\": \"vermied\",\n  \"vermieden\": \"vermied\",\n  \"vermieter\": \"vermiet\",\n  \"vermindern\": \"vermind\",\n  \"vermindernden\": \"vermindernd\",\n  \"vermindert\": \"vermindert\",\n  \"verminderung\": \"verminder\",\n  \"vermischen\": \"vermisch\",\n  \"vermischt\": \"vermischt\",\n  \"vermischte\": \"vermischt\",\n  \"vermischten\": \"vermischt\",\n  \"vermischung\": \"vermisch\",\n  \"vermischungen\": \"vermisch\",\n  \"vermissen\": \"vermiss\",\n  \"vermisst\": \"vermisst\",\n  \"vermisste\": \"vermisst\",\n  \"vermißte\": \"vermisst\",\n  \"vermittelnde\": \"vermittelnd\",\n  \"vermittelndes\": \"vermittelnd\",\n  \"vermittels\": \"vermittel\",\n  \"vermittelst\": \"vermittel\",\n  \"vermittlerin\": \"vermittlerin\",\n  \"vermittlung\": \"vermittl\",\n  \"vermittlungen\": \"vermittl\",\n  \"vermocht\": \"vermocht\",\n  \"vermochte\": \"vermocht\",\n  \"vermöchte\": \"vermocht\",\n  \"vermochten\": \"vermocht\",\n  \"vermöge\": \"vermog\",\n  \"vermögen\": \"vermog\",\n  \"vermögend\": \"vermog\",\n  \"vermögenden\": \"vermog\",\n  \"vermögens\": \"vermog\",\n  \"vermögensstand\": \"vermogensstand\",\n  \"vermute\": \"vermut\",\n  \"vermuten\": \"vermut\",\n  \"vermutet\": \"vermutet\",\n  \"vermutete\": \"vermutet\",\n  \"vermutlich\": \"vermut\",\n  \"vermutlichen\": \"vermut\",\n  \"vermutung\": \"vermut\",\n  \"vermutungen\": \"vermut\",\n  \"vernachlässige\": \"vernachlass\",\n  \"vernachlässigt\": \"vernachlassigt\",\n  \"vernachlässigte\": \"vernachlassigt\",\n  \"vernachlässigten\": \"vernachlassigt\",\n  \"vernachlässigung\": \"vernachlass\",\n  \"vernagelt\": \"vernagelt\",\n  \"vernagelten\": \"vernagelt\",\n  \"vernahm\": \"vernahm\",\n  \"vernähme\": \"vernahm\",\n  \"vernahmen\": \"vernahm\",\n  \"vernarbendes\": \"vernarb\",\n  \"vernarren\": \"vernarr\",\n  \"vernarrt\": \"vernarrt\",\n  \"vernehmbar\": \"vernehmbar\",\n  \"vernehmbare\": \"vernehmbar\",\n  \"vernehmen\": \"vernehm\",\n  \"vernehmet\": \"vernehmet\",\n  \"vernehmlassungsverfahrens\": \"vernehmlassungsverfahr\",\n  \"vernehmlichem\": \"vernehm\",\n  \"vernehmlichen\": \"vernehm\",\n  \"vernehmnisse\": \"vernehmnis\",\n  \"verneigen\": \"verneig\",\n  \"verneigend\": \"verneig\",\n  \"verneigt\": \"verneigt\",\n  \"verneigte\": \"verneigt\",\n  \"verneinen\": \"vernein\",\n  \"verneinenden\": \"vernein\",\n  \"verneinung\": \"vernein\",\n  \"verneinungen\": \"vernein\",\n  \"verneunfacht\": \"verneunfacht\",\n  \"vernichte\": \"vernicht\",\n  \"vernichten\": \"vernicht\",\n  \"vernichtet\": \"vernichtet\",\n  \"vernichteten\": \"vernichtet\",\n  \"vernichtung\": \"vernicht\",\n  \"vernichtungsgenie\": \"vernichtungsgeni\",\n  \"vernimmt\": \"vernimmt\",\n  \"vernommen\": \"vernomm\",\n  \"vernunft\": \"vernunft\",\n  \"vernunftähnliches\": \"vernunftahn\",\n  \"vernunftanschauungen\": \"vernunftanschau\",\n  \"vernunftbedingung\": \"vernunftbeding\",\n  \"vernunftbedürfnis\": \"vernunftbedurfnis\",\n  \"vernunftbegriffe\": \"vernunftbegriff\",\n  \"vernunftbegriffen\": \"vernunftbegriff\",\n  \"vernunftbestimmung\": \"vernunftbestimm\",\n  \"vernunfteinsicht\": \"vernunfteinsicht\",\n  \"vernünftelei\": \"vernunftelei\",\n  \"vernünfteleien\": \"vernunftelei\",\n  \"vernünfteln\": \"vernunfteln\",\n  \"vernünftelnde\": \"vernunftelnd\",\n  \"vernünftelt\": \"vernunftelt\",\n  \"vernünftelten\": \"vernunftelt\",\n  \"vernunfterkenntnisse\": \"vernunfterkenntnis\",\n  \"vernunfterkenntnisses\": \"vernunfterkenntnis\",\n  \"vernunftgebote\": \"vernunftgebot\",\n  \"vernunftgebots\": \"vernunftgebot\",\n  \"vernunftgebrauch\": \"vernunftgebrauch\",\n  \"vernunftgebrauche\": \"vernunftgebrauch\",\n  \"vernunftgebrauchs\": \"vernunftgebrauch\",\n  \"vernunftgemässe\": \"vernunftgemass\",\n  \"vernunftgemässen\": \"vernunftgemass\",\n  \"vernunftgesetz\": \"vernunftgesetz\",\n  \"vernunftgesetze\": \"vernunftgesetz\",\n  \"vernunftglaube\": \"vernunftglaub\",\n  \"vernunftglaubens\": \"vernunftglaub\",\n  \"vernunftgründe\": \"vernunftgrund\",\n  \"vernunftgründen\": \"vernunftgrund\",\n  \"vernunftidee\": \"vernunftide\",\n  \"vernunftideen\": \"vernunftide\",\n  \"vernünftig\": \"vernunft\",\n  \"vernünftige\": \"vernunft\",\n  \"vernünftigen\": \"vernunft\",\n  \"vernünftiger\": \"vernunft\",\n  \"vernünftiges\": \"vernunft\",\n  \"vernünftigkeit\": \"vernunft\",\n  \"vernünftigsein\": \"vernunftigsein\",\n  \"vernunftkraft\": \"vernunftkraft\",\n  \"vernünftler\": \"vernunftl\",\n  \"vernünftlern\": \"vernunftl\",\n  \"vernunftlos\": \"vernunftlos\",\n  \"vernunftmässiges\": \"vernunftmass\",\n  \"vernunftmäßiges\": \"vernunftmass\",\n  \"vernunftprinzip\": \"vernunftprinzip\",\n  \"vernunftschlüsse\": \"vernunftschluss\",\n  \"vernunftschlusses\": \"vernunftschluss\",\n  \"vernunfttheologie\": \"vernunfttheologi\",\n  \"vernunftverhältnisse\": \"vernunftverhaltnis\",\n  \"vernunftvermögen\": \"vernunftvermog\",\n  \"vernunftvermögens\": \"vernunftvermog\",\n  \"vernunftvorstellungen\": \"vernunftvorstell\",\n  \"vernunftwahres\": \"vernunftwahr\",\n  \"vernunftwahrheiten\": \"vernunftwahr\",\n  \"vernunftwillens\": \"vernunftwill\",\n  \"vernunftwissenschaften\": \"vernunftwissenschaft\",\n  \"verödenden\": \"verod\",\n  \"verödet\": \"verodet\",\n  \"verödeten\": \"verodet\",\n  \"verödung\": \"verod\",\n  \"verödungen\": \"verod\",\n  \"veröffentlicht\": \"veroffentlicht\",\n  \"veröffentlichung\": \"veroffentlich\",\n  \"verordnung\": \"verordn\",\n  \"verordnungen\": \"verordn\",\n  \"verorientieren\": \"verorienti\",\n  \"verpachteten\": \"verpachtet\",\n  \"verpacken\": \"verpack\",\n  \"verpackt\": \"verpackt\",\n  \"verpfändet\": \"verpfandet\",\n  \"verpfändeten\": \"verpfandet\",\n  \"verpflichten\": \"verpflicht\",\n  \"verpflichtet\": \"verpflichtet\",\n  \"verpflichtung\": \"verpflicht\",\n  \"verpflichtungen\": \"verpflicht\",\n  \"verpichen\": \"verpich\",\n  \"verpicht\": \"verpicht\",\n  \"verpichtwerden\": \"verpichtwerd\",\n  \"verpichung\": \"verpich\",\n  \"verplaudern\": \"verplaud\",\n  \"verpönt\": \"verpont\",\n  \"verpustete\": \"verpustet\",\n  \"verrannt\": \"verrannt\",\n  \"verrät\": \"verrat\",\n  \"verraten\": \"verrat\",\n  \"verrechnen\": \"verrechn\",\n  \"verregnet\": \"verregnet\",\n  \"verreisen\": \"verreis\",\n  \"verreiste\": \"verreist\",\n  \"verrenkungen\": \"verrenk\",\n  \"verrichten\": \"verricht\",\n  \"verrichtet\": \"verrichtet\",\n  \"verrichtete\": \"verrichtet\",\n  \"verrichteten\": \"verrichtet\",\n  \"verrichtung\": \"verricht\",\n  \"verrichtungen\": \"verricht\",\n  \"verriet\": \"verriet\",\n  \"verriete\": \"verriet\",\n  \"verrieten\": \"verriet\",\n  \"verringern\": \"verring\",\n  \"verringert\": \"verringert\",\n  \"verrollen\": \"verroll\",\n  \"verrostetes\": \"verrostet\",\n  \"verrückt\": \"verruckt\",\n  \"verruckte\": \"verruckt\",\n  \"verrückte\": \"verruckt\",\n  \"verrufen\": \"verruf\",\n  \"verrufenen\": \"verruf\",\n  \"vers\": \"ver\",\n  \"versagender\": \"versag\",\n  \"versagt\": \"versagt\",\n  \"versagte\": \"versagt\",\n  \"versagten\": \"versagt\",\n  \"versah\": \"versah\",\n  \"versammeln\": \"versammeln\",\n  \"versammelt\": \"versammelt\",\n  \"versammelte\": \"versammelt\",\n  \"versammelten\": \"versammelt\",\n  \"versammle\": \"versamml\",\n  \"versammlung\": \"versamml\",\n  \"versammlungszimmer\": \"versammlungszimm\",\n  \"versandet\": \"versandet\",\n  \"versandt\": \"versandt\",\n  \"versank\": \"versank\",\n  \"versanken\": \"versank\",\n  \"versäumen\": \"versaum\",\n  \"versäumt\": \"versaumt\",\n  \"versäumte\": \"versaumt\",\n  \"verschaffe\": \"verschaff\",\n  \"verschaffen\": \"verschaff\",\n  \"verschafft\": \"verschafft\",\n  \"verschaffte\": \"verschafft\",\n  \"verschämt\": \"verschamt\",\n  \"verschärfung\": \"verscharf\",\n  \"verschärfungen\": \"verscharf\",\n  \"verschattung\": \"verschatt\",\n  \"verschäumte\": \"verschaumt\",\n  \"verschen\": \"versch\",\n  \"verschenken\": \"verschenk\",\n  \"verscherzt\": \"verscherzt\",\n  \"verscheuchen\": \"verscheuch\",\n  \"verscheuchten\": \"verscheucht\",\n  \"verschiebung\": \"verschieb\",\n  \"verschieden\": \"verschied\",\n  \"verschiedenartig\": \"verschiedenart\",\n  \"verschiedenartigen\": \"verschiedenart\",\n  \"verschiedenartiges\": \"verschiedenart\",\n  \"verschiedenartigste\": \"verschiedenart\",\n  \"verschiedene\": \"verschied\",\n  \"verschiedenem\": \"verschied\",\n  \"verschiedenen\": \"verschied\",\n  \"verschiedener\": \"verschied\",\n  \"verschiedenes\": \"verschied\",\n  \"verschiedenheit\": \"verschied\",\n  \"verschiedenheiten\": \"verschied\",\n  \"verschiedenste\": \"verschieden\",\n  \"verschiedensten\": \"verschieden\",\n  \"verschiedentlich\": \"verschiedent\",\n  \"verschlafen\": \"verschlaf\",\n  \"verschlage\": \"verschlag\",\n  \"verschlagen\": \"verschlag\",\n  \"verschlang\": \"verschlang\",\n  \"verschlangen\": \"verschlang\",\n  \"verschlechterung\": \"verschlechter\",\n  \"verschleiern\": \"verschlei\",\n  \"verschleiert\": \"verschleiert\",\n  \"verschleudert\": \"verschleudert\",\n  \"verschliessen\": \"verschliess\",\n  \"verschließen\": \"verschliess\",\n  \"verschlimmern\": \"verschlimm\",\n  \"verschlimmert\": \"verschlimmert\",\n  \"verschlinge\": \"verschling\",\n  \"verschlingen\": \"verschling\",\n  \"verschlingungen\": \"verschling\",\n  \"verschloss\": \"verschloss\",\n  \"verschlossen\": \"verschloss\",\n  \"verschlossenen\": \"verschloss\",\n  \"verschlossenes\": \"verschloss\",\n  \"verschluckt\": \"verschluckt\",\n  \"verschlungen\": \"verschlung\",\n  \"verschlungenen\": \"verschlung\",\n  \"verschluss\": \"verschluss\",\n  \"verschlusses\": \"verschluss\",\n  \"verschmachten\": \"verschmacht\",\n  \"verschmähe\": \"verschmah\",\n  \"verschmähen\": \"verschmah\",\n  \"verschmähst\": \"verschmah\",\n  \"verschmäht\": \"verschmaht\",\n  \"verschmähte\": \"verschmaht\",\n  \"verschmähten\": \"verschmaht\",\n  \"verschmelzen\": \"verschmelz\",\n  \"verschmerzen\": \"verschmerz\",\n  \"verschmierten\": \"verschmiert\",\n  \"verschmitzt\": \"verschmitzt\",\n  \"verschmitztheit\": \"verschmitzt\",\n  \"verschnaufen\": \"verschnauf\",\n  \"verschnaufte\": \"verschnauft\",\n  \"verschnittene\": \"verschnitt\",\n  \"verschnittenen\": \"verschnitt\",\n  \"verschnürte\": \"verschnurt\",\n  \"verschob\": \"verschob\",\n  \"verschollene\": \"verscholl\",\n  \"verschollenen\": \"verscholl\",\n  \"verschonen\": \"verschon\",\n  \"verschönert\": \"verschonert\",\n  \"verschont\": \"verschont\",\n  \"verschossen\": \"verschoss\",\n  \"verschränkung\": \"verschrank\",\n  \"verschulden\": \"verschuld\",\n  \"verschuldet\": \"verschuldet\",\n  \"verschuldung\": \"verschuld\",\n  \"verschuldungen\": \"verschuld\",\n  \"verschustern\": \"verschust\",\n  \"verschüttet\": \"verschuttet\",\n  \"verschwammen\": \"verschwamm\",\n  \"verschwand\": \"verschwand\",\n  \"verschwanden\": \"verschwand\",\n  \"verschweigen\": \"verschweig\",\n  \"verschwenden\": \"verschwend\",\n  \"verschwenderisch\": \"verschwender\",\n  \"verschwendet\": \"verschwendet\",\n  \"verschwendung\": \"verschwend\",\n  \"verschwieg\": \"verschwieg\",\n  \"verschwiegenes\": \"verschwieg\",\n  \"verschwinde\": \"verschwind\",\n  \"verschwinden\": \"verschwind\",\n  \"verschwindet\": \"verschwindet\",\n  \"verschworen\": \"verschwor\",\n  \"verschworene\": \"verschwor\",\n  \"verschwunden\": \"verschwund\",\n  \"verschwundene\": \"verschwund\",\n  \"verschwundenen\": \"verschwund\",\n  \"verse\": \"vers\",\n  \"versehen\": \"verseh\",\n  \"versehn\": \"versehn\",\n  \"versen\": \"vers\",\n  \"versengen\": \"verseng\",\n  \"versenken\": \"versenk\",\n  \"versenkt\": \"versenkt\",\n  \"versenkte\": \"versenkt\",\n  \"versenkten\": \"versenkt\",\n  \"versenkung\": \"versenk\",\n  \"versenkungen\": \"versenk\",\n  \"versessen\": \"versess\",\n  \"versetze\": \"versetz\",\n  \"versetzen\": \"versetz\",\n  \"versetzt\": \"versetzt\",\n  \"versetzte\": \"versetzt\",\n  \"versetzung\": \"versetz\",\n  \"versichern\": \"versich\",\n  \"versichert\": \"versichert\",\n  \"versicherte\": \"versichert\",\n  \"versicherten\": \"versichert\",\n  \"versicherung\": \"versicher\",\n  \"versiegelt\": \"versiegelt\",\n  \"versiegen\": \"versieg\",\n  \"versiegle\": \"versiegl\",\n  \"versiegt\": \"versiegt\",\n  \"versiert\": \"versiert\",\n  \"versilbert\": \"versilbert\",\n  \"versimpelter\": \"versimpelt\",\n  \"versinke\": \"versink\",\n  \"versinken\": \"versink\",\n  \"versinkt\": \"versinkt\",\n  \"versinnlichung\": \"versinnlich\",\n  \"version\": \"version\",\n  \"versöhnen\": \"versohn\",\n  \"versöhnlichen\": \"versohn\",\n  \"versöhnt\": \"versohnt\",\n  \"versöhnung\": \"versohn\",\n  \"versöhnungsversuch\": \"versohnungsversuch\",\n  \"versorgen\": \"versorg\",\n  \"versorgt\": \"versorgt\",\n  \"versorgten\": \"versorgt\",\n  \"verspart\": \"verspart\",\n  \"verspätet\": \"verspatet\",\n  \"verspätetes\": \"verspatet\",\n  \"verspätung\": \"verspat\",\n  \"verspeist\": \"verspeist\",\n  \"versperren\": \"versperr\",\n  \"versperrt\": \"versperrt\",\n  \"versperrte\": \"versperrt\",\n  \"verspotten\": \"verspott\",\n  \"versprach\": \"versprach\",\n  \"versprachen\": \"versprach\",\n  \"verspreche\": \"versprech\",\n  \"versprechen\": \"versprech\",\n  \"verspricht\": \"verspricht\",\n  \"versprochen\": \"versproch\",\n  \"versprochene\": \"versproch\",\n  \"verspüren\": \"verspur\",\n  \"verspürt\": \"verspurt\",\n  \"verspürte\": \"verspurt\",\n  \"verspürten\": \"verspurt\",\n  \"verstand\": \"verstand\",\n  \"verstande\": \"verstand\",\n  \"verstanden\": \"verstand\",\n  \"verstandes\": \"verstand\",\n  \"verstandesbegriff\": \"verstandesbegriff\",\n  \"verstandesbegriffe\": \"verstandesbegriff\",\n  \"verstandesbegriffen\": \"verstandesbegriff\",\n  \"verstandesbegriffs\": \"verstandesbegriff\",\n  \"verstandesform\": \"verstandesform\",\n  \"verstandesgebiet\": \"verstandesgebiet\",\n  \"verstandesgebietes\": \"verstandesgebiet\",\n  \"verstandesglauben\": \"verstandesglaub\",\n  \"verstandeskräfte\": \"verstandeskraft\",\n  \"verstandeslicht\": \"verstandeslicht\",\n  \"verstandesvermögen\": \"verstandesvermog\",\n  \"verstandesvermögens\": \"verstandesvermog\",\n  \"verstandeswelt\": \"verstandeswelt\",\n  \"verstandeswesen\": \"verstandeswes\",\n  \"verständig\": \"verstand\",\n  \"verständige\": \"verstand\",\n  \"verständigen\": \"verstand\",\n  \"verständiger\": \"verstand\",\n  \"verständiges\": \"verstand\",\n  \"verständigkeit\": \"verstand\",\n  \"verständigste\": \"verstand\",\n  \"verständigt\": \"verstandigt\",\n  \"verständigte\": \"verstandigt\",\n  \"verständigung\": \"verstand\",\n  \"verständlich\": \"verstand\",\n  \"verständlicher\": \"verstand\",\n  \"verständlicherweise\": \"verstandlicherweis\",\n  \"verständlichkeit\": \"verstand\",\n  \"verständnis\": \"verstandnis\",\n  \"verständnisinnig\": \"verstandnisinn\",\n  \"verständnisinnigkeit\": \"verstandnisinn\",\n  \"verständnislosen\": \"verstandnislos\",\n  \"verständnisse\": \"verstandnis\",\n  \"verständnisses\": \"verstandnis\",\n  \"verstandnisvoll\": \"verstandnisvoll\",\n  \"verständnisvoll\": \"verstandnisvoll\",\n  \"verständnisvoller\": \"verstandnisvoll\",\n  \"verstänkert\": \"verstankert\",\n  \"verstärkt\": \"verstarkt\",\n  \"verstärkte\": \"verstarkt\",\n  \"verstärkter\": \"verstarkt\",\n  \"verstatte\": \"verstatt\",\n  \"verstatten\": \"verstatt\",\n  \"verstattet\": \"verstattet\",\n  \"verstecke\": \"versteck\",\n  \"verstecken\": \"versteck\",\n  \"versteckspielen\": \"versteckspiel\",\n  \"versteckt\": \"versteckt\",\n  \"versteckte\": \"versteckt\",\n  \"verstecktes\": \"versteckt\",\n  \"versteh\": \"versteh\",\n  \"verstehe\": \"versteh\",\n  \"verstehen\": \"versteh\",\n  \"verstehens\": \"versteh\",\n  \"verstehet\": \"verstehet\",\n  \"verstehn\": \"verstehn\",\n  \"verstehst\": \"versteh\",\n  \"versteht\": \"versteht\",\n  \"versteigerung\": \"versteiger\",\n  \"versteinert\": \"versteinert\",\n  \"versteinerte\": \"versteinert\",\n  \"verstellen\": \"verstell\",\n  \"verstellte\": \"verstellt\",\n  \"verstellten\": \"verstellt\",\n  \"verstellter\": \"verstellt\",\n  \"verstellung\": \"verstell\",\n  \"verstimmt\": \"verstimmt\",\n  \"verstimmter\": \"verstimmt\",\n  \"verstocke\": \"verstock\",\n  \"verstocken\": \"verstock\",\n  \"verstockt\": \"verstockt\",\n  \"verstockte\": \"verstockt\",\n  \"verstocktes\": \"verstockt\",\n  \"verstocktwerdens\": \"verstocktwerd\",\n  \"verstockung\": \"verstock\",\n  \"verstohlen\": \"verstohl\",\n  \"verstohlener\": \"verstohl\",\n  \"verstopfe\": \"verstopf\",\n  \"verstopfen\": \"verstopf\",\n  \"verstopft\": \"verstopft\",\n  \"verstopfte\": \"verstopft\",\n  \"verstorben\": \"verstorb\",\n  \"verstorbene\": \"verstorb\",\n  \"verstorbenen\": \"verstorb\",\n  \"verstört\": \"verstort\",\n  \"verstörten\": \"verstort\",\n  \"verstörtes\": \"verstort\",\n  \"verstösse\": \"verstoss\",\n  \"verstossen\": \"verstoss\",\n  \"verstoßen\": \"verstoss\",\n  \"verstossenen\": \"verstoss\",\n  \"verstossener\": \"verstoss\",\n  \"verstossung\": \"verstoss\",\n  \"verstoßung\": \"verstoss\",\n  \"verstreichen\": \"verstreich\",\n  \"verstummte\": \"verstummt\",\n  \"verstummten\": \"verstummt\",\n  \"verstünde\": \"verstund\",\n  \"versuch\": \"versuch\",\n  \"versuche\": \"versuch\",\n  \"versuchen\": \"versuch\",\n  \"versuchend\": \"versuch\",\n  \"versuchsweise\": \"versuchsweis\",\n  \"versucht\": \"versucht\",\n  \"versuchte\": \"versucht\",\n  \"versuchten\": \"versucht\",\n  \"versuchteste\": \"versucht\",\n  \"versuchung\": \"versuch\",\n  \"versuchungen\": \"versuch\",\n  \"versuchungsschmerzen\": \"versuchungsschmerz\",\n  \"versündigt\": \"versundigt\",\n  \"versunken\": \"versunk\",\n  \"versunkene\": \"versunk\",\n  \"versunkenes\": \"versunk\",\n  \"vertäfelung\": \"vertafel\",\n  \"vertauschen\": \"vertausch\",\n  \"vertauscht\": \"vertauscht\",\n  \"vertausendfacht\": \"vertausendfacht\",\n  \"verteidige\": \"verteid\",\n  \"verteidigen\": \"verteid\",\n  \"verteidiger\": \"verteid\",\n  \"verteidigern\": \"verteid\",\n  \"verteidigt\": \"verteidigt\",\n  \"verteidigte\": \"verteidigt\",\n  \"verteidigung\": \"verteid\",\n  \"verteidigungsschrift\": \"verteidigungsschrift\",\n  \"verteilen\": \"verteil\",\n  \"verteilt\": \"verteilt\",\n  \"verteilungsgerechtigkeit\": \"verteilungsgerecht\",\n  \"verteuerung\": \"verteuer\",\n  \"vertiefen\": \"vertief\",\n  \"vertieft\": \"vertieft\",\n  \"vertiefte\": \"vertieft\",\n  \"vertiefung\": \"vertief\",\n  \"vertilge\": \"vertilg\",\n  \"vertilgen\": \"vertilg\",\n  \"vertilgt\": \"vertilgt\",\n  \"vertilgte\": \"vertilgt\",\n  \"vertilgung\": \"vertilg\",\n  \"vertrackt\": \"vertrackt\",\n  \"vertrackten\": \"vertrackt\",\n  \"vertrag\": \"vertrag\",\n  \"vertragen\": \"vertrag\",\n  \"vertrages\": \"vertrag\",\n  \"verträglich\": \"vertrag\",\n  \"vertragsbestimmungen\": \"vertragsbestimm\",\n  \"vertragsmässig\": \"vertragsmass\",\n  \"vertragsmässige\": \"vertragsmass\",\n  \"verträgt\": \"vertragt\",\n  \"vertraten\": \"vertrat\",\n  \"vertraue\": \"vertrau\",\n  \"vertrauen\": \"vertrau\",\n  \"vertrauensmann\": \"vertrauensmann\",\n  \"vertraulich\": \"vertraulich\",\n  \"verträulich\": \"vertraulich\",\n  \"vertrauliche\": \"vertraulich\",\n  \"vertrauliches\": \"vertraulich\",\n  \"verträumten\": \"vertraumt\",\n  \"vertraut\": \"vertraut\",\n  \"vertraute\": \"vertraut\",\n  \"vertrauten\": \"vertraut\",\n  \"vertrauter\": \"vertraut\",\n  \"vertrautester\": \"vertraut\",\n  \"vertreiben\": \"vertreib\",\n  \"vertreibenden\": \"vertreib\",\n  \"vertreibung\": \"vertreib\",\n  \"vertreter\": \"vertret\",\n  \"vertretern\": \"vertret\",\n  \"vertretung\": \"vertret\",\n  \"vertrieb\": \"vertrieb\",\n  \"vertrieben\": \"vertrieb\",\n  \"vertriebenen\": \"vertrieb\",\n  \"vertrocknen\": \"vertrockn\",\n  \"vertrocknet\": \"vertrocknet\",\n  \"vertrockneten\": \"vertrocknet\",\n  \"vertrödeln\": \"vertrodeln\",\n  \"vertrösten\": \"vertrost\",\n  \"vertröstete\": \"vertrostet\",\n  \"vertrug\": \"vertrug\",\n  \"vertrunkenen\": \"vertrunk\",\n  \"vertuschen\": \"vertusch\",\n  \"verüben\": \"verub\",\n  \"verübt\": \"verubt\",\n  \"verübte\": \"verubt\",\n  \"verulamio\": \"verulamio\",\n  \"verunglückt\": \"verungluckt\",\n  \"verunglückten\": \"verungluckt\",\n  \"verunreinigen\": \"verunrein\",\n  \"verunreinigt\": \"verunreinigt\",\n  \"verunreinigungen\": \"verunrein\",\n  \"verunsichert\": \"verunsichert\",\n  \"verunstalten\": \"verunstalt\",\n  \"verunstaltet\": \"verunstaltet\",\n  \"verursache\": \"verursach\",\n  \"verursachen\": \"verursach\",\n  \"verursacht\": \"verursacht\",\n  \"verursachte\": \"verursacht\",\n  \"verurteilt\": \"verurteilt\",\n  \"verurteilung\": \"verurteil\",\n  \"vervielfältigen\": \"vervielfalt\",\n  \"vervielfältigend\": \"vervielfalt\",\n  \"vervielfältigt\": \"vervielfaltigt\",\n  \"vervielfältigten\": \"vervielfaltigt\",\n  \"vervielfältigungen\": \"vervielfalt\",\n  \"vervollkommnen\": \"vervollkommn\",\n  \"vervollkommnet\": \"vervollkommnet\",\n  \"vervollständigen\": \"vervollstand\",\n  \"verwahrt\": \"verwahrt\",\n  \"verwahrte\": \"verwahrt\",\n  \"verwahrung\": \"verwahr\",\n  \"verwaist\": \"verwaist\",\n  \"verwalten\": \"verwalt\",\n  \"verwaltend\": \"verwalt\",\n  \"verwaltenden\": \"verwalt\",\n  \"verwalter\": \"verwalt\",\n  \"verwaltete\": \"verwaltet\",\n  \"verwaltung\": \"verwalt\",\n  \"verwaltungen\": \"verwalt\",\n  \"verwaltungsmann\": \"verwaltungsmann\",\n  \"verwaltungsräte\": \"verwaltungsrat\",\n  \"verwaltungsrechnung\": \"verwaltungsrechn\",\n  \"verwandeln\": \"verwandeln\",\n  \"verwandelt\": \"verwandelt\",\n  \"verwandelte\": \"verwandelt\",\n  \"verwandelten\": \"verwandelt\",\n  \"verwandle\": \"verwandl\",\n  \"verwandlung\": \"verwandl\",\n  \"verwandt\": \"verwandt\",\n  \"verwandte\": \"verwandt\",\n  \"verwandten\": \"verwandt\",\n  \"verwandter\": \"verwandt\",\n  \"verwandtschaft\": \"verwandtschaft\",\n  \"verwandtschaften\": \"verwandtschaft\",\n  \"verwandtschaftsverhältnissen\": \"verwandtschaftsverhaltnis\",\n  \"verwarf\": \"verwarf\",\n  \"verwarfen\": \"verwarf\",\n  \"verwaschen\": \"verwasch\",\n  \"verwaschenen\": \"verwasch\",\n  \"verwaschenes\": \"verwasch\",\n  \"verwässert\": \"verwassert\",\n  \"verwebt\": \"verwebt\",\n  \"verwechselt\": \"verwechselt\",\n  \"verwechselten\": \"verwechselt\",\n  \"verwegen\": \"verweg\",\n  \"verwegene\": \"verweg\",\n  \"verwegenen\": \"verweg\",\n  \"verwehenden\": \"verweh\",\n  \"verwehrt\": \"verwehrt\",\n  \"verweht\": \"verweht\",\n  \"verwehten\": \"verweht\",\n  \"verweichlichen\": \"verweich\",\n  \"verweigern\": \"verweig\",\n  \"verweigert\": \"verweigert\",\n  \"verweigerte\": \"verweigert\",\n  \"verweigerten\": \"verweigert\",\n  \"verweigerung\": \"verweiger\",\n  \"verweilen\": \"verweil\",\n  \"verweilt\": \"verweilt\",\n  \"verweilte\": \"verweilt\",\n  \"verweinte\": \"verweint\",\n  \"verweis\": \"verweis\",\n  \"verweise\": \"verweis\",\n  \"verweisend\": \"verweis\",\n  \"verweist\": \"verweist\",\n  \"verweisung\": \"verweis\",\n  \"verwelken\": \"verwelk\",\n  \"verwelkt\": \"verwelkt\",\n  \"verwenden\": \"verwend\",\n  \"verwendet\": \"verwendet\",\n  \"verwendete\": \"verwendet\",\n  \"verwendeten\": \"verwendet\",\n  \"verwendung\": \"verwend\",\n  \"verwerfen\": \"verwerf\",\n  \"verwerfung\": \"verwerf\",\n  \"verwickeln\": \"verwickeln\",\n  \"verwickelt\": \"verwickelt\",\n  \"verwickelte\": \"verwickelt\",\n  \"verwickelten\": \"verwickelt\",\n  \"verwickelter\": \"verwickelt\",\n  \"verwiesen\": \"verwies\",\n  \"verwilderte\": \"verwildert\",\n  \"verwildertem\": \"verwildert\",\n  \"verwilderten\": \"verwildert\",\n  \"verwildertes\": \"verwildert\",\n  \"verwilderung\": \"verwilder\",\n  \"verwinden\": \"verwind\",\n  \"verwirft\": \"verwirft\",\n  \"verwirklicht\": \"verwirklicht\",\n  \"verwirklichung\": \"verwirklich\",\n  \"verwirren\": \"verwirr\",\n  \"verwirrende\": \"verwirr\",\n  \"verwirret\": \"verwirret\",\n  \"verwirrt\": \"verwirrt\",\n  \"verwirrte\": \"verwirrt\",\n  \"verwirrtem\": \"verwirrt\",\n  \"verwirrten\": \"verwirrt\",\n  \"verwirrung\": \"verwirr\",\n  \"verwirrungen\": \"verwirr\",\n  \"verwirrungsrecht\": \"verwirrungsrecht\",\n  \"verwischt\": \"verwischt\",\n  \"verwittert\": \"verwittert\",\n  \"verwitterte\": \"verwittert\",\n  \"verwitterter\": \"verwittert\",\n  \"verwittertes\": \"verwittert\",\n  \"verworfen\": \"verworf\",\n  \"verworfene\": \"verworf\",\n  \"verworfnen\": \"verworfn\",\n  \"verworrene\": \"verworr\",\n  \"verworrenen\": \"verworr\",\n  \"verworrenes\": \"verworr\",\n  \"verwucherten\": \"verwuchert\",\n  \"verwunden\": \"verwund\",\n  \"verwunderlicher\": \"verwund\",\n  \"verwundern\": \"verwund\",\n  \"verwundert\": \"verwundert\",\n  \"verwunderten\": \"verwundert\",\n  \"verwunderung\": \"verwunder\",\n  \"verwundet\": \"verwundet\",\n  \"verwundr\": \"verwundr\",\n  \"verwunschenen\": \"verwunsch\",\n  \"verwünschte\": \"verwunscht\",\n  \"verwünschten\": \"verwunscht\",\n  \"verwünschungen\": \"verwunsch\",\n  \"verwüste\": \"verwust\",\n  \"verwüsten\": \"verwust\",\n  \"verwüstende\": \"verwust\",\n  \"verwüster\": \"verwust\",\n  \"verwüstet\": \"verwustet\",\n  \"verwüstete\": \"verwustet\",\n  \"verwüsteten\": \"verwustet\",\n  \"verwüstung\": \"verwust\",\n  \"verwüstungen\": \"verwust\",\n  \"verzagen\": \"verzag\",\n  \"verzagt\": \"verzagt\",\n  \"verzagte\": \"verzagt\",\n  \"verzählen\": \"verzahl\",\n  \"verzählt\": \"verzahlt\",\n  \"verzäuner\": \"verzaun\",\n  \"verzehren\": \"verzehr\",\n  \"verzehrende\": \"verzehr\",\n  \"verzehrenden\": \"verzehr\",\n  \"verzehrender\": \"verzehr\",\n  \"verzehrendes\": \"verzehr\",\n  \"verzehrer\": \"verzehr\",\n  \"verzehret\": \"verzehret\",\n  \"verzehrt\": \"verzehrt\",\n  \"verzehrte\": \"verzehrt\",\n  \"verzehrten\": \"verzehrt\",\n  \"verzeichnen\": \"verzeichn\",\n  \"verzeichnet\": \"verzeichnet\",\n  \"verzeichnete\": \"verzeichnet\",\n  \"verzeichnis\": \"verzeichnis\",\n  \"verzeih\": \"verzeih\",\n  \"verzeihen\": \"verzeih\",\n  \"verzeihliche\": \"verzeih\",\n  \"verzeihst\": \"verzeih\",\n  \"verzeiht\": \"verzeiht\",\n  \"verzeihung\": \"verzeih\",\n  \"verzerrten\": \"verzerrt\",\n  \"verzicht\": \"verzicht\",\n  \"verzichten\": \"verzicht\",\n  \"verzichtet\": \"verzichtet\",\n  \"verzichtete\": \"verzichtet\",\n  \"verzieh\": \"verzieh\",\n  \"verziehen\": \"verzieh\",\n  \"verziert\": \"verziert\",\n  \"verzierte\": \"verziert\",\n  \"verzierungen\": \"verzier\",\n  \"verzog\": \"verzog\",\n  \"verzogen\": \"verzog\",\n  \"verzogene\": \"verzog\",\n  \"verzögert\": \"verzogert\",\n  \"verzögerte\": \"verzogert\",\n  \"verzweifelt\": \"verzweifelt\",\n  \"verzweifelte\": \"verzweifelt\",\n  \"verzweifelten\": \"verzweifelt\",\n  \"verzweifeltsten\": \"verzweifelt\",\n  \"verzweiflung\": \"verzweifl\",\n  \"verzweiflungsvolles\": \"verzweiflungsvoll\",\n  \"verzwickten\": \"verzwickt\",\n  \"vesperbrote\": \"vesperbrot\",\n  \"vesperkaffees\": \"vesperkaffe\",\n  \"vestalinnen\": \"vestalinn\",\n  \"vesuvius\": \"vesuvius\",\n  \"veterinärschul\": \"veterinarschul\",\n  \"veto\": \"veto\",\n  \"vetsch\": \"vetsch\",\n  \"vetter\": \"vett\",\n  \"vetters\": \"vett\",\n  \"vexieren\": \"vexi\",\n  \"vexiergasse\": \"vexiergass\",\n  \"vfb\": \"vfb\",\n  \"vi\": \"vi\",\n  \"vicomtesse\": \"vicomtess\",\n  \"victory\": \"victory\",\n  \"vide\": \"vid\",\n  \"videofilmer\": \"videofilm\",\n  \"videokamera\": \"videokamera\",\n  \"viecherl\": \"viecherl\",\n  \"vieh\": \"vieh\",\n  \"viehhandel\": \"viehhandel\",\n  \"viehherden\": \"viehherd\",\n  \"viehhürdenbewohner\": \"viehhurdenbewohn\",\n  \"viehs\": \"vieh\",\n  \"viehzucht\": \"viehzucht\",\n  \"viel\": \"viel\",\n  \"vielbesucht\": \"vielbesucht\",\n  \"viele\": \"viel\",\n  \"vielem\": \"viel\",\n  \"vielen\": \"viel\",\n  \"vieler\": \"viel\",\n  \"vielerlei\": \"vielerlei\",\n  \"vieles\": \"viel\",\n  \"vielfach\": \"vielfach\",\n  \"vielfache\": \"vielfach\",\n  \"vielfaches\": \"vielfach\",\n  \"vielfalt\": \"vielfalt\",\n  \"vielfältig\": \"vielfalt\",\n  \"vielfältige\": \"vielfalt\",\n  \"vielfältiger\": \"vielfalt\",\n  \"vielgestaltige\": \"vielgestalt\",\n  \"vielgewordene\": \"vielgeword\",\n  \"vieljährige\": \"vieljahr\",\n  \"vielköpfigen\": \"vielkopf\",\n  \"vielle\": \"viell\",\n  \"vielleicht\": \"vielleicht\",\n  \"vielmals\": \"vielmal\",\n  \"vielmehr\": \"vielmehr\",\n  \"vielverschlungenen\": \"vielverschl\",\n  \"vielweniger\": \"vielwen\",\n  \"vier\": \"vier\",\n  \"viereckig\": \"viereck\",\n  \"viereckigen\": \"viereck\",\n  \"viereckiger\": \"viereck\",\n  \"viereinhalb\": \"viereinhalb\",\n  \"vieren\": \"vier\",\n  \"vierhundertdrei\": \"vierhundertdrei\",\n  \"vierhundertdreissig\": \"vierhundertdreiss\",\n  \"vierhundertdreißig\": \"vierhundertdreiss\",\n  \"vierhundertertundzweimal\": \"vierhundertertundzweimal\",\n  \"vierjährigen\": \"vierjahr\",\n  \"vierköpfige\": \"vierkopf\",\n  \"viermal\": \"viermal\",\n  \"vierschrötige\": \"vierschrot\",\n  \"vierspännige\": \"vierspann\",\n  \"vierspännigen\": \"vierspann\",\n  \"vierstündige\": \"vierstund\",\n  \"viertägige\": \"viertag\",\n  \"vierte\": \"viert\",\n  \"viertel\": \"viertel\",\n  \"vierteljahr\": \"vierteljahr\",\n  \"vierteljährchen\": \"vierteljahrch\",\n  \"vierteljahrhundert\": \"vierteljahrhundert\",\n  \"viertelstündchen\": \"viertelstundch\",\n  \"viertelstunde\": \"viertelstund\",\n  \"viertelstündl\": \"viertelstundl\",\n  \"viertelswandseite\": \"viertelswandseit\",\n  \"vierten\": \"viert\",\n  \"viertes\": \"viert\",\n  \"vierunddreißig\": \"vierunddreiss\",\n  \"vierundzwanzig\": \"vierundzwanz\",\n  \"vierundzwanzigstündiger\": \"vierundzwanzigstund\",\n  \"vierzehn\": \"vierzehn\",\n  \"vierzehnten\": \"vierzehnt\",\n  \"vierzig\": \"vierzig\",\n  \"vierzigjähriger\": \"vierzigjahr\",\n  \"vierzigste\": \"vierzig\",\n  \"vii\": \"vii\",\n  \"viii\": \"viii\",\n  \"villarson\": \"villarson\",\n  \"vim\": \"vim\",\n  \"violettes\": \"violett\",\n  \"viper\": \"vip\",\n  \"vipern\": \"vip\",\n  \"vipernarten\": \"vipernart\",\n  \"virginien\": \"virgini\",\n  \"virtuelle\": \"virtuell\",\n  \"virtuosen\": \"virtuos\",\n  \"visiers\": \"visi\",\n  \"vision\": \"vision\",\n  \"visir\": \"visir\",\n  \"visit\": \"visit\",\n  \"visitenstuben\": \"visitenstub\",\n  \"vita\": \"vita\",\n  \"vital\": \"vital\",\n  \"vitale\": \"vital\",\n  \"vitalen\": \"vital\",\n  \"vitaler\": \"vital\",\n  \"vitalitat\": \"vitalitat\",\n  \"vitalität\": \"vitalitat\",\n  \"vitaminreiche\": \"vitaminreich\",\n  \"vitium\": \"vitium\",\n  \"vivificandum\": \"vivificandum\",\n  \"vogel\": \"vogel\",\n  \"vögel\": \"vogel\",\n  \"vogelbeerbüscheln\": \"vogelbeerbuscheln\",\n  \"vogelbeeren\": \"vogelbe\",\n  \"vögelchen\": \"vogelch\",\n  \"vögeln\": \"vogeln\",\n  \"vogels\": \"vogel\",\n  \"vogelstellers\": \"vogelstell\",\n  \"vogelstimmen\": \"vogelstimm\",\n  \"vöglein\": \"voglein\",\n  \"vögte\": \"vogt\",\n  \"vögten\": \"vogt\",\n  \"vokabeln\": \"vokabeln\",\n  \"vokabular\": \"vokabular\",\n  \"vokativ\": \"vokativ\",\n  \"vokative\": \"vokativ\",\n  \"volcker\": \"volck\",\n  \"volk\": \"volk\",\n  \"völkchen\": \"volkch\",\n  \"volke\": \"volk\",\n  \"völker\": \"volk\",\n  \"völkern\": \"volk\",\n  \"völkerschaft\": \"volkerschaft\",\n  \"völkerschaften\": \"volkerschaft\",\n  \"völkerstrich\": \"volkerstrich\",\n  \"völkerwanderung\": \"volkerwander\",\n  \"volkes\": \"volk\",\n  \"völklein\": \"volklein\",\n  \"volks\": \"volk\",\n  \"volksfest\": \"volksf\",\n  \"volkskircheflavio\": \"volkskircheflavio\",\n  \"volksliedchen\": \"volksliedch\",\n  \"volkslieder\": \"volkslied\",\n  \"volksliedes\": \"volkslied\",\n  \"volkssänger\": \"volkssang\",\n  \"volksversammlung\": \"volksversamml\",\n  \"volksweisen\": \"volksweis\",\n  \"voll\": \"voll\",\n  \"vollauf\": \"vollauf\",\n  \"vollbart\": \"vollbart\",\n  \"vollbesetzt\": \"vollbesetzt\",\n  \"vollbestand\": \"vollbestand\",\n  \"vollbracht\": \"vollbracht\",\n  \"vollbrachte\": \"vollbracht\",\n  \"vollbrachten\": \"vollbracht\",\n  \"vollbrachter\": \"vollbracht\",\n  \"vollbrachtes\": \"vollbracht\",\n  \"vollbringen\": \"vollbring\",\n  \"vollbringung\": \"vollbring\",\n  \"volle\": \"voll\",\n  \"vollem\": \"voll\",\n  \"vollen\": \"voll\",\n  \"vollenden\": \"vollend\",\n  \"vollendet\": \"vollendet\",\n  \"vollendete\": \"vollendet\",\n  \"vollendeten\": \"vollendet\",\n  \"vollends\": \"vollend\",\n  \"vollendung\": \"vollend\",\n  \"voller\": \"voll\",\n  \"völlerei\": \"vollerei\",\n  \"vollführt\": \"vollfuhrt\",\n  \"vollführte\": \"vollfuhrt\",\n  \"vollgepfropften\": \"vollgepfropft\",\n  \"vollgestopft\": \"vollgestopft\",\n  \"völlig\": \"vollig\",\n  \"völlige\": \"vollig\",\n  \"völligem\": \"vollig\",\n  \"völligen\": \"vollig\",\n  \"völliger\": \"vollig\",\n  \"vollkommen\": \"vollkomm\",\n  \"vollkommene\": \"vollkomm\",\n  \"vollkommenen\": \"vollkomm\",\n  \"vollkommener\": \"vollkomm\",\n  \"vollkommenere\": \"vollkommen\",\n  \"vollkommeneren\": \"vollkommen\",\n  \"vollkommenerer\": \"vollkommen\",\n  \"vollkommeneres\": \"vollkommen\",\n  \"vollkommenheit\": \"vollkomm\",\n  \"vollkommenheiten\": \"vollkomm\",\n  \"vollkommenste\": \"vollkommen\",\n  \"vollkommensten\": \"vollkommen\",\n  \"vollmacht\": \"vollmacht\",\n  \"vollmond\": \"vollmond\",\n  \"vollständig\": \"vollstand\",\n  \"vollständige\": \"vollstand\",\n  \"vollständigen\": \"vollstand\",\n  \"vollständiger\": \"vollstand\",\n  \"vollständiges\": \"vollstand\",\n  \"vollständigkeit\": \"vollstand\",\n  \"vollsten\": \"voll\",\n  \"vollster\": \"voll\",\n  \"vollstreckung\": \"vollstreck\",\n  \"vollzählig\": \"vollzahl\",\n  \"vollziehend\": \"vollzieh\",\n  \"vollziehest\": \"vollzieh\",\n  \"vollzogen\": \"vollzog\",\n  \"vollzupacken\": \"vollzupack\",\n  \"voluntaria\": \"voluntaria\",\n  \"voluntarium\": \"voluntarium\",\n  \"vom\": \"vom\",\n  \"von\": \"von\",\n  \"voneinander\": \"voneinand\",\n  \"vonstatten\": \"vonstatt\",\n  \"vor\": \"vor\",\n  \"vorabend\": \"vorab\",\n  \"vorabendan\": \"vorabendan\",\n  \"voran\": \"voran\",\n  \"vorangehen\": \"vorangeh\",\n  \"vorangeht\": \"vorangeht\",\n  \"vorangestellt\": \"vorangestellt\",\n  \"voranging\": \"voranging\",\n  \"voranschickung\": \"voranschick\",\n  \"voranstellte\": \"voranstellt\",\n  \"vorantrug\": \"vorantrug\",\n  \"voranzuschicken\": \"voranzuschick\",\n  \"voraus\": \"voraus\",\n  \"vorausfliegen\": \"vorausflieg\",\n  \"vorausgefahrenen\": \"vorausgefahr\",\n  \"vorausgehen\": \"vorausgeh\",\n  \"vorausgehende\": \"vorausgeh\",\n  \"vorausgeht\": \"vorausgeht\",\n  \"vorausgeigen\": \"vorausgeig\",\n  \"vorausgesagt\": \"vorausgesagt\",\n  \"vorausgeschickt\": \"vorausgeschickt\",\n  \"vorausgeschickten\": \"vorausgeschickt\",\n  \"vorausgesehen\": \"vorausgeseh\",\n  \"vorausgesetzt\": \"vorausgesetzt\",\n  \"vorausnehmen\": \"vorausnehm\",\n  \"voraussah\": \"voraussah\",\n  \"voraussahen\": \"voraussah\",\n  \"voraussehen\": \"vorausseh\",\n  \"voraussetze\": \"voraussetz\",\n  \"voraussetzen\": \"voraussetz\",\n  \"voraussetzet\": \"voraussetzet\",\n  \"voraussetzt\": \"voraussetzt\",\n  \"voraussetzte\": \"voraussetzt\",\n  \"voraussetzung\": \"voraussetz\",\n  \"voraussetzungen\": \"voraussetz\",\n  \"voraussicht\": \"voraussicht\",\n  \"voraussichtlich\": \"voraussicht\",\n  \"vorauswissen\": \"vorauswiss\",\n  \"vorauszufahren\": \"vorauszufahr\",\n  \"vorauszuschickenden\": \"vorauszuschick\",\n  \"vorauszusehen\": \"vorauszuseh\",\n  \"vorauszusetzen\": \"vorauszusetz\",\n  \"vorbedacht\": \"vorbedacht\",\n  \"vorbedachten\": \"vorbedacht\",\n  \"vorbei\": \"vorbei\",\n  \"vorbeigehn\": \"vorbeigehn\",\n  \"vorbeikam\": \"vorbeikam\",\n  \"vorbeireitens\": \"vorbeireit\",\n  \"vorbeistob\": \"vorbeistob\",\n  \"vorbeizogen\": \"vorbeizog\",\n  \"vorbemerkungen\": \"vorbemerk\",\n  \"vorbereitender\": \"vorbereit\",\n  \"vorbereitet\": \"vorbereitet\",\n  \"vorbereitete\": \"vorbereitet\",\n  \"vorbereitung\": \"vorbereit\",\n  \"vorbereitungen\": \"vorbereit\",\n  \"vorberg\": \"vorberg\",\n  \"vorbestimmt\": \"vorbestimmt\",\n  \"vorbeugen\": \"vorbeug\",\n  \"vorbild\": \"vorbild\",\n  \"vorbilde\": \"vorbild\",\n  \"vorbilden\": \"vorbild\",\n  \"vorbildende\": \"vorbild\",\n  \"vorbilder\": \"vorbild\",\n  \"vorbildern\": \"vorbild\",\n  \"vorbildet\": \"vorbildet\",\n  \"vorbildete\": \"vorbildet\",\n  \"vorbildeten\": \"vorbildet\",\n  \"vorbildlich\": \"vorbild\",\n  \"vorbildliche\": \"vorbild\",\n  \"vorbildlichen\": \"vorbild\",\n  \"vorbildliches\": \"vorbild\",\n  \"vorbildung\": \"vorbild\",\n  \"vorbildungen\": \"vorbild\",\n  \"vorbrachte\": \"vorbracht\",\n  \"vorbrechenden\": \"vorbrech\",\n  \"vorbringen\": \"vorbring\",\n  \"vordem\": \"vord\",\n  \"vordere\": \"vord\",\n  \"vorderen\": \"vord\",\n  \"vordergrund\": \"vordergrund\",\n  \"vorderhand\": \"vorderhand\",\n  \"vorderkrällchen\": \"vorderkrallch\",\n  \"vorderriss\": \"vorderriss\",\n  \"vordersten\": \"vorderst\",\n  \"vorderster\": \"vorderst\",\n  \"vordringen\": \"vordring\",\n  \"voreilig\": \"voreil\",\n  \"voreiligen\": \"voreil\",\n  \"voreinander\": \"voreinand\",\n  \"voreingenommenheit\": \"voreingenomm\",\n  \"voreltern\": \"vorelt\",\n  \"vorenthalten\": \"vorenthalt\",\n  \"vorenthielt\": \"vorenthielt\",\n  \"vorerst\": \"vorerst\",\n  \"vorfahren\": \"vorfahr\",\n  \"vorfall\": \"vorfall\",\n  \"vorfalle\": \"vorfall\",\n  \"vorfälle\": \"vorfall\",\n  \"vorfalles\": \"vorfall\",\n  \"vorfand\": \"vorfand\",\n  \"vorfiel\": \"vorfiel\",\n  \"vorfielen\": \"vorfiel\",\n  \"vorfinden\": \"vorfind\",\n  \"vorfindet\": \"vorfindet\",\n  \"vorg\": \"vorg\",\n  \"vorgab\": \"vorgab\",\n  \"vorgang\": \"vorgang\",\n  \"vorgänger\": \"vorgang\",\n  \"vorganges\": \"vorgang\",\n  \"vorgeben\": \"vorgeb\",\n  \"vorgebeugt\": \"vorgebeugt\",\n  \"vorgebildet\": \"vorgebildet\",\n  \"vorgebildete\": \"vorgebildet\",\n  \"vorgebildeten\": \"vorgebildet\",\n  \"vorgebogenem\": \"vorgebog\",\n  \"vorgebracht\": \"vorgebracht\",\n  \"vorgebrachten\": \"vorgebracht\",\n  \"vorgefahren\": \"vorgefahr\",\n  \"vorgefassten\": \"vorgefasst\",\n  \"vorgefaßten\": \"vorgefasst\",\n  \"vorgefühl\": \"vorgefuhl\",\n  \"vorgegangen\": \"vorgegang\",\n  \"vorgehalten\": \"vorgehalt\",\n  \"vorgehe\": \"vorgeh\",\n  \"vorgehen\": \"vorgeh\",\n  \"vorgehenden\": \"vorgeh\",\n  \"vorgeht\": \"vorgeht\",\n  \"vorgeladen\": \"vorgelad\",\n  \"vorgelassen\": \"vorgelass\",\n  \"vorgelegt\": \"vorgelegt\",\n  \"vorgelegten\": \"vorgelegt\",\n  \"vorgemacht\": \"vorgemacht\",\n  \"vorgenommen\": \"vorgenomm\",\n  \"vorgenommene\": \"vorgenomm\",\n  \"vorgerückt\": \"vorgeruckt\",\n  \"vorgerückteren\": \"vorgeruckt\",\n  \"vorgesagt\": \"vorgesagt\",\n  \"vorgeschlagen\": \"vorgeschlag\",\n  \"vorgeschoben\": \"vorgeschob\",\n  \"vorgeschrieben\": \"vorgeschrieb\",\n  \"vorgeschriebene\": \"vorgeschrieb\",\n  \"vorgesehen\": \"vorgeseh\",\n  \"vorgesehene\": \"vorgeseh\",\n  \"vorgesetzt\": \"vorgesetzt\",\n  \"vorgesetzte\": \"vorgesetzt\",\n  \"vorgesetzten\": \"vorgesetzt\",\n  \"vorgesetzter\": \"vorgesetzt\",\n  \"vorgesetztes\": \"vorgesetzt\",\n  \"vorgesteckt\": \"vorgesteckt\",\n  \"vorgestellet\": \"vorgestellet\",\n  \"vorgestellt\": \"vorgestellt\",\n  \"vorgestern\": \"vorg\",\n  \"vorgestreckten\": \"vorgestreckt\",\n  \"vorgetragen\": \"vorgetrag\",\n  \"vorgezogen\": \"vorgezog\",\n  \"vorgezogene\": \"vorgezog\",\n  \"vorging\": \"vorging\",\n  \"vorhabe\": \"vorhab\",\n  \"vorhaben\": \"vorhab\",\n  \"vorhabenden\": \"vorhab\",\n  \"vorhalle\": \"vorhall\",\n  \"vorhält\": \"vorhalt\",\n  \"vorhalten\": \"vorhalt\",\n  \"vorhanden\": \"vorhand\",\n  \"vorhandenen\": \"vorhand\",\n  \"vorhang\": \"vorhang\",\n  \"vorhänge\": \"vorhang\",\n  \"vorhangs\": \"vorhang\",\n  \"vorhast\": \"vorhast\",\n  \"vorhat\": \"vorhat\",\n  \"vorhatte\": \"vorhatt\",\n  \"vorhatten\": \"vorhatt\",\n  \"vorhaut\": \"vorhaut\",\n  \"vorhemdchen\": \"vorhemdch\",\n  \"vorhemden\": \"vorhemd\",\n  \"vorher\": \"vorh\",\n  \"vorherbestimmt\": \"vorherbestimmt\",\n  \"vorherbestimmten\": \"vorherbestimmt\",\n  \"vorherbestimmung\": \"vorherbestimm\",\n  \"vorhergegangen\": \"vorhergegang\",\n  \"vorhergehen\": \"vorhergeh\",\n  \"vorhergehend\": \"vorhergeh\",\n  \"vorhergehende\": \"vorhergeh\",\n  \"vorhergehenden\": \"vorhergeh\",\n  \"vorhergehendes\": \"vorhergeh\",\n  \"vorhergehn\": \"vorhergehn\",\n  \"vorhergeht\": \"vorhergeht\",\n  \"vorhergenannten\": \"vorhergenannt\",\n  \"vorhergesagt\": \"vorhergesagt\",\n  \"vorhergesehen\": \"vorhergeseh\",\n  \"vorherging\": \"vorherging\",\n  \"vorherigen\": \"vorher\",\n  \"vorherrschaft\": \"vorherrschaft\",\n  \"vorherrschende\": \"vorherrsch\",\n  \"vorherrscht\": \"vorherrscht\",\n  \"vorhersage\": \"vorhersag\",\n  \"vorhersah\": \"vorhersah\",\n  \"vorhersehe\": \"vorherseh\",\n  \"vorhersehen\": \"vorherseh\",\n  \"vorhersehung\": \"vorherseh\",\n  \"vorhersieht\": \"vorhersieht\",\n  \"vorherverkündigung\": \"vorherverkund\",\n  \"vorhielte\": \"vorhielt\",\n  \"vorhin\": \"vorhin\",\n  \"vorhof\": \"vorhof\",\n  \"vorhöfe\": \"vorhof\",\n  \"vorhöfen\": \"vorhof\",\n  \"vorhofes\": \"vorhof\",\n  \"vorhofs\": \"vorhof\",\n  \"vorige\": \"vorig\",\n  \"vorigen\": \"vorig\",\n  \"voriger\": \"vorig\",\n  \"vorkam\": \"vorkam\",\n  \"vorkamen\": \"vorkam\",\n  \"vorkomme\": \"vorkomm\",\n  \"vorkommen\": \"vorkomm\",\n  \"vorkommenden\": \"vorkomm\",\n  \"vorkommendenfalls\": \"vorkommendenfall\",\n  \"vorkommt\": \"vorkommt\",\n  \"vorläßt\": \"vorlasst\",\n  \"vorläufer\": \"vorlauf\",\n  \"vorläufererfahrungen\": \"vorlaufererfahr\",\n  \"vorläufig\": \"vorlauf\",\n  \"vorläufigen\": \"vorlauf\",\n  \"vorlaut\": \"vorlaut\",\n  \"vorlegen\": \"vorleg\",\n  \"vorlegung\": \"vorleg\",\n  \"vorlesen\": \"vorles\",\n  \"vorlesung\": \"vorles\",\n  \"vorlieb\": \"vorlieb\",\n  \"vorliebe\": \"vorlieb\",\n  \"vorliegenden\": \"vorlieg\",\n  \"vorliegt\": \"vorliegt\",\n  \"vormachen\": \"vormach\",\n  \"vormachte\": \"vormacht\",\n  \"vormals\": \"vormal\",\n  \"vormittag\": \"vormittag\",\n  \"vormittags\": \"vormittag\",\n  \"vormittagsarbeit\": \"vormittagsarbeit\",\n  \"vormittagsimbiss\": \"vormittagsimbiss\",\n  \"vormittagsstunden\": \"vormittagsstund\",\n  \"vormöge\": \"vormog\",\n  \"vormund\": \"vormund\",\n  \"vormünder\": \"vormund\",\n  \"vormundschaftliche\": \"vormundschaft\",\n  \"vorn\": \"vorn\",\n  \"vornahm\": \"vornahm\",\n  \"vorne\": \"vorn\",\n  \"vorneherein\": \"vorneherein\",\n  \"vornehm\": \"vornehm\",\n  \"vornehme\": \"vornehm\",\n  \"vornehmen\": \"vornehm\",\n  \"vornehmer\": \"vornehm\",\n  \"vornehmes\": \"vornehm\",\n  \"vornehmheit\": \"vornehm\",\n  \"vornehmlich\": \"vornehm\",\n  \"vornehmste\": \"vornehm\",\n  \"vornehmsten\": \"vornehm\",\n  \"vornherein\": \"vornherein\",\n  \"vornüber\": \"vornub\",\n  \"vorort\": \"vorort\",\n  \"vorragendste\": \"vorrag\",\n  \"vorrang\": \"vorrang\",\n  \"vorrat\": \"vorrat\",\n  \"vorräte\": \"vorrat\",\n  \"vorratshause\": \"vorratshaus\",\n  \"vorratshäuser\": \"vorratshaus\",\n  \"vorratshäusern\": \"vorratshaus\",\n  \"vorratslager\": \"vorratslag\",\n  \"vorraum\": \"vorraum\",\n  \"vorrecht\": \"vorrecht\",\n  \"vorrechte\": \"vorrecht\",\n  \"vorrede\": \"vorred\",\n  \"vorrichtungen\": \"vorricht\",\n  \"vors\": \"vor\",\n  \"vorsagen\": \"vorsag\",\n  \"vorsagte\": \"vorsagt\",\n  \"vorsatz\": \"vorsatz\",\n  \"vorsatze\": \"vorsatz\",\n  \"vorsätzlich\": \"vorsatz\",\n  \"vorsätzliche\": \"vorsatz\",\n  \"vorschein\": \"vorschein\",\n  \"vorschlag\": \"vorschlag\",\n  \"vorschläge\": \"vorschlag\",\n  \"vorschlagen\": \"vorschlag\",\n  \"vorschlug\": \"vorschlug\",\n  \"vorschneider\": \"vorschneid\",\n  \"vorschreibt\": \"vorschreibt\",\n  \"vorschrift\": \"vorschrift\",\n  \"vorschriften\": \"vorschrift\",\n  \"vorschub\": \"vorschub\",\n  \"vorschulalter\": \"vorschulalt\",\n  \"vorschule\": \"vorschul\",\n  \"vorschussmilliarde\": \"vorschussmilliard\",\n  \"vorschützen\": \"vorschutz\",\n  \"vorsehen\": \"vorseh\",\n  \"vorsehung\": \"vorseh\",\n  \"vorsetzen\": \"vorsetz\",\n  \"vorsetzlich\": \"vorsetz\",\n  \"vorsetzt\": \"vorsetzt\",\n  \"vorsetzte\": \"vorsetzt\",\n  \"vorsicht\": \"vorsicht\",\n  \"vorsichtig\": \"vorsicht\",\n  \"vorsichtigem\": \"vorsicht\",\n  \"vorsichtiger\": \"vorsicht\",\n  \"vorsieht\": \"vorsieht\",\n  \"vorsingen\": \"vorsing\",\n  \"vorsitz\": \"vorsitz\",\n  \"vorsitze\": \"vorsitz\",\n  \"vorsitzender\": \"vorsitz\",\n  \"vorsorge\": \"vorsorg\",\n  \"vorspannt\": \"vorspannt\",\n  \"vorspiegelungen\": \"vorspiegel\",\n  \"vorspiel\": \"vorspiel\",\n  \"vorsprung\": \"vorsprung\",\n  \"vorstadt\": \"vorstadt\",\n  \"vorstadtstrasse\": \"vorstadtstrass\",\n  \"vorstadtstraße\": \"vorstadtstrass\",\n  \"vorstand\": \"vorstand\",\n  \"vorstandes\": \"vorstand\",\n  \"vorstehenden\": \"vorsteh\",\n  \"vorsteherin\": \"vorsteherin\",\n  \"vorstelle\": \"vorstell\",\n  \"vorstellen\": \"vorstell\",\n  \"vorstellend\": \"vorstell\",\n  \"vorstelleten\": \"vorstellet\",\n  \"vorstellte\": \"vorstellt\",\n  \"vorstellten\": \"vorstellt\",\n  \"vorstellung\": \"vorstell\",\n  \"vorstellungen\": \"vorstell\",\n  \"vorstellungsart\": \"vorstellungsart\",\n  \"vorstellungsweise\": \"vorstellungsweis\",\n  \"vorsündflutlichen\": \"vorsundflut\",\n  \"vorteil\": \"vorteil\",\n  \"vorteile\": \"vorteil\",\n  \"vorteilen\": \"vorteil\",\n  \"vorteilhaft\": \"vorteilhaft\",\n  \"vorteilhaften\": \"vorteilhaft\",\n  \"vorteilhaftes\": \"vorteilhaft\",\n  \"vorteilhaftesten\": \"vorteilhaft\",\n  \"vorteils\": \"vorteil\",\n  \"vortrag\": \"vortrag\",\n  \"vortrage\": \"vortrag\",\n  \"vorträge\": \"vortrag\",\n  \"vortragen\": \"vortrag\",\n  \"vorträgen\": \"vortrag\",\n  \"vorträgt\": \"vortragt\",\n  \"vortrefflich\": \"vortreff\",\n  \"vortreffliche\": \"vortreff\",\n  \"vortrefflichen\": \"vortreff\",\n  \"vortrefflicher\": \"vortreff\",\n  \"vortrefflichkeit\": \"vortreff\",\n  \"vortrefflichste\": \"vortreff\",\n  \"vortritt\": \"vortritt\",\n  \"vortrug\": \"vortrug\",\n  \"vortuch\": \"vortuch\",\n  \"vortuchbandeln\": \"vortuchbandeln\",\n  \"vorüber\": \"vorub\",\n  \"vorüberdrehte\": \"voruberdreht\",\n  \"vorübergegangen\": \"vorubergegang\",\n  \"vorübergehen\": \"vorubergeh\",\n  \"vorübergehend\": \"vorubergeh\",\n  \"vorübergehenden\": \"vorubergeh\",\n  \"vorübergehendste\": \"vorubergeh\",\n  \"vorübergeht\": \"vorubergeht\",\n  \"vorüberging\": \"voruberging\",\n  \"vorübergingen\": \"voruberging\",\n  \"vorüberkam\": \"voruberkam\",\n  \"vorüberkamen\": \"voruberkam\",\n  \"vorüberlässt\": \"voruberlasst\",\n  \"vorüberreiten\": \"voruberreit\",\n  \"vorüberschwebte\": \"voruberschwebt\",\n  \"vorüberwallte\": \"voruberwallt\",\n  \"vorüberwehen\": \"voruberweh\",\n  \"vorüberzieht\": \"voruberzieht\",\n  \"vorurteilen\": \"vorurteil\",\n  \"vorverhandlungen\": \"vorverhandl\",\n  \"vorversammlungen\": \"vorversamml\",\n  \"vorwalten\": \"vorwalt\",\n  \"vorwaltender\": \"vorwalt\",\n  \"vorwaltet\": \"vorwaltet\",\n  \"vorwand\": \"vorwand\",\n  \"vorwärts\": \"vorwart\",\n  \"vorwärtsgehen\": \"vorwartsgeh\",\n  \"vorwärtszukommen\": \"vorwartszukomm\",\n  \"vorwegstiehlt\": \"vorwegstiehlt\",\n  \"vorweihnachtlichen\": \"vorweihnacht\",\n  \"vorweisen\": \"vorweis\",\n  \"vorwelt\": \"vorwelt\",\n  \"vorwerfen\": \"vorwerf\",\n  \"vorwiegend\": \"vorwieg\",\n  \"vorwort\": \"vorwort\",\n  \"vorwurf\": \"vorwurf\",\n  \"vorwürfe\": \"vorwurf\",\n  \"vorwürfen\": \"vorwurf\",\n  \"vorzeichen\": \"vorzeich\",\n  \"vorzeichnung\": \"vorzeichn\",\n  \"vorzeit\": \"vorzeit\",\n  \"vorziehen\": \"vorzieh\",\n  \"vorzieht\": \"vorzieht\",\n  \"vorzimmer\": \"vorzimm\",\n  \"vorzimmern\": \"vorzimm\",\n  \"vorzimmers\": \"vorzimm\",\n  \"vorzog\": \"vorzog\",\n  \"vorzogen\": \"vorzog\",\n  \"vorzubereiten\": \"vorzubereit\",\n  \"vorzubilden\": \"vorzubild\",\n  \"vorzubringen\": \"vorzubring\",\n  \"vorzufliegen\": \"vorzuflieg\",\n  \"vorzug\": \"vorzug\",\n  \"vorzuge\": \"vorzug\",\n  \"vorzüge\": \"vorzug\",\n  \"vorzugeben\": \"vorzugeb\",\n  \"vorzügen\": \"vorzug\",\n  \"vorzuges\": \"vorzug\",\n  \"vorzüglich\": \"vorzug\",\n  \"vorzügliche\": \"vorzug\",\n  \"vorzüglichen\": \"vorzug\",\n  \"vorzügliches\": \"vorzug\",\n  \"vorzüglichste\": \"vorzug\",\n  \"vorzüglichsten\": \"vorzug\",\n  \"vorzüglichstes\": \"vorzug\",\n  \"vorzugsweise\": \"vorzugsweis\",\n  \"vorzuhalten\": \"vorzuhalt\",\n  \"vorzumachen\": \"vorzumach\",\n  \"vorzunehmen\": \"vorzunehm\",\n  \"vorzurücken\": \"vorzuruck\",\n  \"vorzuschlagen\": \"vorzuschlag\",\n  \"vorzuspielen\": \"vorzuspiel\",\n  \"vorzustellen\": \"vorzustell\",\n  \"vorzuwerfen\": \"vorzuwerf\",\n  \"vorzuziehen\": \"vorzuzieh\",\n  \"vox\": \"vox\",\n  \"vreeli\": \"vreeli\",\n  \"vrenchen\": \"vrench\",\n  \"vrenchens\": \"vrench\",\n  \"vrenches\": \"vrench\",\n  \"vrenggel\": \"vrenggel\",\n  \"vroni\": \"vroni\",\n  \"vulgo\": \"vulgo\",\n  \"vulkan\": \"vulkan\",\n  \"w\": \"w\",\n  \"waadtländer\": \"waadtland\",\n  \"waage\": \"waag\",\n  \"waagwirt\": \"waagwirt\",\n  \"waagwirtes\": \"waagwirt\",\n  \"waar\": \"waar\",\n  \"wach\": \"wach\",\n  \"wachdienst\": \"wachdien\",\n  \"wache\": \"wach\",\n  \"wachen\": \"wach\",\n  \"wachenden\": \"wachend\",\n  \"wachender\": \"wachend\",\n  \"wacherhalten\": \"wacherhalt\",\n  \"wachet\": \"wachet\",\n  \"wacholderkraut\": \"wacholderkraut\",\n  \"wachs\": \"wach\",\n  \"wachsam\": \"wachsam\",\n  \"wachsames\": \"wachsam\",\n  \"wachsen\": \"wachs\",\n  \"wachsende\": \"wachsend\",\n  \"wachsenden\": \"wachsend\",\n  \"wachsender\": \"wachsend\",\n  \"wachskerzen\": \"wachskerz\",\n  \"wachsleinwand\": \"wachsleinwand\",\n  \"wachslichter\": \"wachslicht\",\n  \"wächst\": \"wach\",\n  \"wachstum\": \"wachstum\",\n  \"wachsweissem\": \"wachsweiss\",\n  \"wacht\": \"wacht\",\n  \"wachte\": \"wacht\",\n  \"wachtel\": \"wachtel\",\n  \"wachteln\": \"wachteln\",\n  \"wächter\": \"wacht\",\n  \"wächtern\": \"wacht\",\n  \"wächters\": \"wacht\",\n  \"wachtmeister\": \"wachtmeist\",\n  \"wackeligen\": \"wackel\",\n  \"wackeln\": \"wackeln\",\n  \"wackelte\": \"wackelt\",\n  \"wacker\": \"wack\",\n  \"wackere\": \"wack\",\n  \"wackeren\": \"wack\",\n  \"wackeres\": \"wack\",\n  \"wackern\": \"wack\",\n  \"waden\": \"wad\",\n  \"wadenmuskeln\": \"wadenmuskeln\",\n  \"wadenstrümpfen\": \"wadenstrumpf\",\n  \"waffe\": \"waff\",\n  \"waffeleisen\": \"waffeleis\",\n  \"waffen\": \"waff\",\n  \"waffenstillstand\": \"waffenstillstand\",\n  \"wägelchen\": \"wagelch\",\n  \"wagemutes\": \"wagemut\",\n  \"wagen\": \"wag\",\n  \"wagenpolster\": \"wagenpol\",\n  \"wagens\": \"wag\",\n  \"wagenschmiere\": \"wagenschmi\",\n  \"wagenverkehr\": \"wagenverkehr\",\n  \"wagerl\": \"wagerl\",\n  \"wäget\": \"waget\",\n  \"waghalsigen\": \"waghals\",\n  \"wagner\": \"wagn\",\n  \"wagt\": \"wagt\",\n  \"wagte\": \"wagt\",\n  \"wagten\": \"wagt\",\n  \"wahl\": \"wahl\",\n  \"wahlablauf\": \"wahlablauf\",\n  \"wahlbehinderung\": \"wahlbehinder\",\n  \"wahlbenachrichtigung\": \"wahlbenachricht\",\n  \"wahlbeobachter\": \"wahlbeobacht\",\n  \"wahlbeobachterinnen\": \"wahlbeobachterinn\",\n  \"wahlbeobachtung\": \"wahlbeobacht\",\n  \"wahlberechtigte\": \"wahlberechtigt\",\n  \"wahlberechtigten\": \"wahlberechtigt\",\n  \"wahlberechtigung\": \"wahlberecht\",\n  \"wahlberliner\": \"wahlberlin\",\n  \"wahlbezirken\": \"wahlbezirk\",\n  \"wahlbüro\": \"wahlburo\",\n  \"wahlbüros\": \"wahlburos\",\n  \"wähle\": \"wahl\",\n  \"wahlen\": \"wahl\",\n  \"wählen\": \"wahl\",\n  \"wählenden\": \"wahlend\",\n  \"wähler\": \"wahl\",\n  \"wahlergebnis\": \"wahlergebnis\",\n  \"wahlergebnisse\": \"wahlergebnis\",\n  \"wählerinnen\": \"wahlerinn\",\n  \"wählete\": \"wahlet\",\n  \"wahlgeschäft\": \"wahlgeschaft\",\n  \"wahlhandlung\": \"wahlhandl\",\n  \"wahlhelfer\": \"wahlhelf\",\n  \"wählig\": \"wahlig\",\n  \"wähligem\": \"wahlig\",\n  \"wahljahr\": \"wahljahr\",\n  \"wahlkabine\": \"wahlkabin\",\n  \"wahlkampagne\": \"wahlkampagn\",\n  \"wahlkampf\": \"wahlkampf\",\n  \"wahlkampfes\": \"wahlkampf\",\n  \"wahlkommission\": \"wahlkommission\",\n  \"wahlkommissionen\": \"wahlkommission\",\n  \"wahlkreis\": \"wahlkreis\",\n  \"wahlkundgebung\": \"wahlkundgeb\",\n  \"wahlleiter\": \"wahlleit\",\n  \"wahlleiters\": \"wahlleit\",\n  \"wahlliste\": \"wahllist\",\n  \"wahllisten\": \"wahllist\",\n  \"wahllokal\": \"wahllokal\",\n  \"wahlmorgen\": \"wahlmorg\",\n  \"wahlspruch\": \"wahlspruch\",\n  \"wählt\": \"wahlt\",\n  \"wahltag\": \"wahltag\",\n  \"wahltage\": \"wahltag\",\n  \"wählte\": \"wahlt\",\n  \"wählten\": \"wahlt\",\n  \"wahlumschlag\": \"wahlumschlag\",\n  \"wahlunregelmässigkeiten\": \"wahlunregelmass\",\n  \"wahlurnen\": \"wahlurn\",\n  \"wahlvorgang\": \"wahlvorgang\",\n  \"wahlvorgängen\": \"wahlvorgang\",\n  \"wahlzettel\": \"wahlzettel\",\n  \"wahn\": \"wahn\",\n  \"wahne\": \"wahn\",\n  \"wähnen\": \"wahn\",\n  \"wähnend\": \"wahnend\",\n  \"wahnsinn\": \"wahnsinn\",\n  \"wahnsinnig\": \"wahnsinn\",\n  \"wahnsinns\": \"wahnsinn\",\n  \"wähnt\": \"wahnt\",\n  \"wähnte\": \"wahnt\",\n  \"wähnten\": \"wahnt\",\n  \"wahr\": \"wahr\",\n  \"wahre\": \"wahr\",\n  \"währe\": \"wahr\",\n  \"wahrem\": \"wahr\",\n  \"wahren\": \"wahr\",\n  \"während\": \"wahrend\",\n  \"währenddessen\": \"wahrenddess\",\n  \"wahrer\": \"wahr\",\n  \"wahres\": \"wahr\",\n  \"währete\": \"wahret\",\n  \"wahrgenommen\": \"wahrgenomm\",\n  \"wahrhaft\": \"wahrhaft\",\n  \"wahrhafte\": \"wahrhaft\",\n  \"wahrhaftig\": \"wahrhaft\",\n  \"wahrhaftige\": \"wahrhaft\",\n  \"wahrhaftiger\": \"wahrhaft\",\n  \"wahrhaftigkeit\": \"wahrhaft\",\n  \"wahrhaftigsten\": \"wahrhaft\",\n  \"wahrheit\": \"wahrheit\",\n  \"wahrheiten\": \"wahrheit\",\n  \"wahrlich\": \"wahrlich\",\n  \"wahrnahm\": \"wahrnahm\",\n  \"wahrnehmbar\": \"wahrnehmbar\",\n  \"wahrnehmbarer\": \"wahrnehmbar\",\n  \"wahrnehme\": \"wahrnehm\",\n  \"wahrnehmen\": \"wahrnehm\",\n  \"wahrnehmung\": \"wahrnehm\",\n  \"wahrnehmungen\": \"wahrnehm\",\n  \"wahrnimmt\": \"wahrnimmt\",\n  \"wahrsagen\": \"wahrsag\",\n  \"wahrsager\": \"wahrsag\",\n  \"wahrsagern\": \"wahrsag\",\n  \"wahrschein\": \"wahrschein\",\n  \"wahrscheinlich\": \"wahrschein\",\n  \"wahrscheinlicherweise\": \"wahrscheinlicherweis\",\n  \"wahrscheinlichkeit\": \"wahrschein\",\n  \"wahrscheinlichste\": \"wahrschein\",\n  \"währt\": \"wahrt\",\n  \"wahrte\": \"wahrt\",\n  \"währte\": \"wahrt\",\n  \"währungsunion\": \"wahrungsunion\",\n  \"wahrzeichen\": \"wahrzeich\",\n  \"wahrzunehmen\": \"wahrzunehm\",\n  \"waisen\": \"wais\",\n  \"waisenfelde\": \"waisenfeld\",\n  \"waisenkind\": \"waisenkind\",\n  \"waisenvogt\": \"waisenvogt\",\n  \"walchensee\": \"walchense\",\n  \"walchental\": \"walchental\",\n  \"wald\": \"wald\",\n  \"waldboden\": \"waldbod\",\n  \"wäldchen\": \"waldch\",\n  \"walde\": \"wald\",\n  \"waldecke\": \"waldeck\",\n  \"wälder\": \"wald\",\n  \"wäldern\": \"wald\",\n  \"waldes\": \"wald\",\n  \"waldesel\": \"waldesel\",\n  \"waldflächen\": \"waldflach\",\n  \"waldfrevel\": \"waldfrevel\",\n  \"waldfrohen\": \"waldfroh\",\n  \"waldgras\": \"waldgras\",\n  \"waldgrund\": \"waldgrund\",\n  \"waldhorn\": \"waldhorn\",\n  \"waldhornbläser\": \"waldhornblas\",\n  \"waldigen\": \"waldig\",\n  \"waldmoose\": \"waldmoos\",\n  \"waldpfade\": \"waldpfad\",\n  \"waldpfades\": \"waldpfad\",\n  \"waldrand\": \"waldrand\",\n  \"waldrevier\": \"waldrevi\",\n  \"waldrücken\": \"waldruck\",\n  \"waldsaum\": \"waldsaum\",\n  \"waldstämme\": \"waldstamm\",\n  \"waldsträsschen\": \"waldstrassch\",\n  \"waldstrasse\": \"waldstrass\",\n  \"waldtiere\": \"waldti\",\n  \"waldungen\": \"waldung\",\n  \"waldwegen\": \"waldweg\",\n  \"waldweges\": \"waldweg\",\n  \"walfisch\": \"walfisch\",\n  \"walfische\": \"walfisch\",\n  \"wall\": \"wall\",\n  \"wallen\": \"wall\",\n  \"wallende\": \"wallend\",\n  \"wallte\": \"wallt\",\n  \"walten\": \"walt\",\n  \"waltende\": \"waltend\",\n  \"waltet\": \"waltet\",\n  \"waltete\": \"waltet\",\n  \"wälze\": \"walz\",\n  \"wälzen\": \"walz\",\n  \"walzer\": \"walz\",\n  \"wälzte\": \"walzt\",\n  \"wammen\": \"wamm\",\n  \"wams\": \"wam\",\n  \"wämsern\": \"wams\",\n  \"wand\": \"wand\",\n  \"wände\": \"wand\",\n  \"wandel\": \"wandel\",\n  \"wandellose\": \"wandellos\",\n  \"wandeln\": \"wandeln\",\n  \"wandelnd\": \"wandelnd\",\n  \"wandelnde\": \"wandelnd\",\n  \"wandelnden\": \"wandelnd\",\n  \"wandelndes\": \"wandelnd\",\n  \"wandels\": \"wandel\",\n  \"wandelt\": \"wandelt\",\n  \"wandelte\": \"wandelt\",\n  \"wandelten\": \"wandelt\",\n  \"wänden\": \"wand\",\n  \"wanderbuch\": \"wanderbuch\",\n  \"wanderbücher\": \"wanderbuch\",\n  \"wanderbum\": \"wanderbum\",\n  \"wanderburn\": \"wanderburn\",\n  \"wanderer\": \"wand\",\n  \"wandergeräte\": \"wandergerat\",\n  \"wanderjünglinge\": \"wanderjungling\",\n  \"wandern\": \"wand\",\n  \"wanderschaft\": \"wanderschaft\",\n  \"wandert\": \"wandert\",\n  \"wanderte\": \"wandert\",\n  \"wanderten\": \"wandert\",\n  \"wanderung\": \"wander\",\n  \"wanderungen\": \"wander\",\n  \"wanderzeit\": \"wanderzeit\",\n  \"wandle\": \"wandl\",\n  \"wandrer\": \"wandr\",\n  \"wandschränkchen\": \"wandschrankch\",\n  \"wandte\": \"wandt\",\n  \"wandten\": \"wandt\",\n  \"wanduhr\": \"wanduhr\",\n  \"wandwinkel\": \"wandwinkel\",\n  \"wange\": \"wang\",\n  \"wangen\": \"wang\",\n  \"wanke\": \"wank\",\n  \"wanken\": \"wank\",\n  \"wann\": \"wann\",\n  \"wanne\": \"wann\",\n  \"wannenbreit\": \"wannenbreit\",\n  \"wanze\": \"wanz\",\n  \"wanzen\": \"wanz\",\n  \"wapp\": \"wapp\",\n  \"wappen\": \"wapp\",\n  \"war\": \"war\",\n  \"wär\": \"war\",\n  \"ward\": \"ward\",\n  \"ware\": \"war\",\n  \"wäre\": \"war\",\n  \"waren\": \"war\",\n  \"wären\": \"war\",\n  \"warenlager\": \"warenlag\",\n  \"warenmagazinen\": \"warenmagazin\",\n  \"wärest\": \"war\",\n  \"wäret\": \"waret\",\n  \"warf\": \"warf\",\n  \"warfen\": \"warf\",\n  \"warm\": \"warm\",\n  \"warme\": \"warm\",\n  \"wärme\": \"warm\",\n  \"warmen\": \"warm\",\n  \"wärmen\": \"warm\",\n  \"warmer\": \"warm\",\n  \"wärmer\": \"warm\",\n  \"warmes\": \"warm\",\n  \"wärmsten\": \"warm\",\n  \"warne\": \"warn\",\n  \"warnend\": \"warnend\",\n  \"warnenden\": \"warnend\",\n  \"warnt\": \"warnt\",\n  \"warnung\": \"warnung\",\n  \"warnungsruf\": \"warnungsruf\",\n  \"warst\": \"warst\",\n  \"wärst\": \"warst\",\n  \"wart\": \"wart\",\n  \"warte\": \"wart\",\n  \"wartei\": \"wartei\",\n  \"warteliste\": \"wartelist\",\n  \"warten\": \"wart\",\n  \"wartendes\": \"wartend\",\n  \"wartet\": \"wartet\",\n  \"wartete\": \"wartet\",\n  \"warteten\": \"wartet\",\n  \"wartst\": \"wart\",\n  \"warum\": \"warum\",\n  \"was\": \"was\",\n  \"waschbottich\": \"waschbottich\",\n  \"waschbündel\": \"waschbundel\",\n  \"wäsche\": \"wasch\",\n  \"waschen\": \"wasch\",\n  \"wäschepacken\": \"waschepack\",\n  \"wäscherei\": \"wascherei\",\n  \"wäscherin\": \"wascherin\",\n  \"wäschestück\": \"waschestuck\",\n  \"waschtisch\": \"waschtisch\",\n  \"waschungen\": \"waschung\",\n  \"washingtoner\": \"washington\",\n  \"wasser\": \"wass\",\n  \"wasseramsel\": \"wasseramsel\",\n  \"wasseraugen\": \"wasseraug\",\n  \"wasserblaue\": \"wasserblau\",\n  \"wasserdünste\": \"wasserdun\",\n  \"wassereimer\": \"wassereim\",\n  \"wasserfläche\": \"wasserflach\",\n  \"wasserflut\": \"wasserflut\",\n  \"wasserfluten\": \"wasserflut\",\n  \"wasserfrau\": \"wasserfrau\",\n  \"wasserfürsten\": \"wasserfurst\",\n  \"wassergegend\": \"wassergeg\",\n  \"wassergewimmels\": \"wassergewimmel\",\n  \"wasserhose\": \"wasserhos\",\n  \"wasserhosen\": \"wasserhos\",\n  \"wässerig\": \"wasser\",\n  \"wässeriger\": \"wasser\",\n  \"wässerlein\": \"wasserlein\",\n  \"wasserleitung\": \"wasserleit\",\n  \"wasserleitungen\": \"wasserleit\",\n  \"wassermann\": \"wassermann\",\n  \"wassermanns\": \"wassermann\",\n  \"wassern\": \"wass\",\n  \"wässern\": \"wass\",\n  \"wässerndem\": \"wassernd\",\n  \"wassernixen\": \"wassernix\",\n  \"wasserpfuscherei\": \"wasserpfuscherei\",\n  \"wasserpolacken\": \"wasserpolack\",\n  \"wasserquelle\": \"wasserquell\",\n  \"wasserquellen\": \"wasserquell\",\n  \"wasserrosen\": \"wasserros\",\n  \"wassers\": \"wass\",\n  \"wasserscheu\": \"wasserscheu\",\n  \"wasserschlange\": \"wasserschlang\",\n  \"wasserschlangen\": \"wasserschlang\",\n  \"wassersee\": \"wasserse\",\n  \"wasserseen\": \"wasserse\",\n  \"wasserspritzen\": \"wasserspritz\",\n  \"wasserstar\": \"wasserstar\",\n  \"wasserstrahl\": \"wasserstrahl\",\n  \"wasserstreif\": \"wasserstreif\",\n  \"wassersturz\": \"wassersturz\",\n  \"wässert\": \"wassert\",\n  \"wässerte\": \"wassert\",\n  \"wasserträger\": \"wassertrag\",\n  \"wassertrog\": \"wassertrog\",\n  \"wassertropfen\": \"wassertropf\",\n  \"wassertümpel\": \"wassertumpel\",\n  \"waste\": \"wast\",\n  \"watteweissen\": \"watteweiss\",\n  \"wattierten\": \"wattiert\",\n  \"watzmann\": \"watzmann\",\n  \"we\": \"we\",\n  \"web\": \"web\",\n  \"weben\": \"web\",\n  \"weber\": \"web\",\n  \"weberschiffchen\": \"weberschiffch\",\n  \"website\": \"websit\",\n  \"webt\": \"webt\",\n  \"webte\": \"webt\",\n  \"wechsel\": \"wechsel\",\n  \"wechselbalg\": \"wechselbalg\",\n  \"wechselbriefe\": \"wechselbrief\",\n  \"wechselgesang\": \"wechselgesang\",\n  \"wechseln\": \"wechseln\",\n  \"wechselnden\": \"wechselnd\",\n  \"wechselseitig\": \"wechselseit\",\n  \"wechselt\": \"wechselt\",\n  \"wechselte\": \"wechselt\",\n  \"wechselten\": \"wechselt\",\n  \"weck\": \"weck\",\n  \"wecken\": \"weck\",\n  \"weckt\": \"weckt\",\n  \"weckte\": \"weckt\",\n  \"weckten\": \"weckt\",\n  \"wedelnden\": \"wedelnd\",\n  \"weder\": \"wed\",\n  \"weg\": \"weg\",\n  \"wegbereit\": \"wegbereit\",\n  \"wegbiegung\": \"wegbieg\",\n  \"wegbleiben\": \"wegbleib\",\n  \"wegblendete\": \"wegblendet\",\n  \"wegblickt\": \"wegblickt\",\n  \"wegbringen\": \"wegbring\",\n  \"wege\": \"weg\",\n  \"wegekrautes\": \"wegekraut\",\n  \"wegen\": \"weg\",\n  \"weges\": \"weg\",\n  \"wegfahren\": \"wegfahr\",\n  \"wegfliegen\": \"wegflieg\",\n  \"wegführe\": \"wegfuhr\",\n  \"wegführen\": \"wegfuhr\",\n  \"wegg\": \"wegg\",\n  \"weggebracht\": \"weggebracht\",\n  \"weggefahren\": \"weggefahr\",\n  \"weggefallen\": \"weggefall\",\n  \"weggefegt\": \"weggefegt\",\n  \"weggeflogen\": \"weggeflog\",\n  \"weggeführt\": \"weggefuhrt\",\n  \"weggegangen\": \"weggegang\",\n  \"weggehen\": \"weggeh\",\n  \"weggehoben\": \"weggehob\",\n  \"weggeholt\": \"weggeholt\",\n  \"weggekommen\": \"weggekomm\",\n  \"weggeleugnet\": \"weggeleugnet\",\n  \"weggenommen\": \"weggenomm\",\n  \"weggerafft\": \"weggerafft\",\n  \"weggerissen\": \"weggeriss\",\n  \"weggeschafft\": \"weggeschafft\",\n  \"weggeschoben\": \"weggeschob\",\n  \"weggespült\": \"weggespult\",\n  \"weggestorben\": \"weggestorb\",\n  \"weggetrieben\": \"weggetrieb\",\n  \"weggewendet\": \"weggewendet\",\n  \"weggeworfen\": \"weggeworf\",\n  \"weggezerrt\": \"weggezerrt\",\n  \"weggezogen\": \"weggezog\",\n  \"weggingest\": \"wegging\",\n  \"weggucht\": \"weggucht\",\n  \"wegkommen\": \"wegkomm\",\n  \"wegliessen\": \"wegliess\",\n  \"wegmachen\": \"wegmach\",\n  \"wegmarschierte\": \"wegmarschiert\",\n  \"wegnahme\": \"wegnahm\",\n  \"wegnehme\": \"wegnehm\",\n  \"wegnehmen\": \"wegnehm\",\n  \"wegnimmt\": \"wegnimmt\",\n  \"wegräumung\": \"wegraum\",\n  \"wegrichtung\": \"wegricht\",\n  \"wegsah\": \"wegsah\",\n  \"wegschaffen\": \"wegschaff\",\n  \"wegschaffung\": \"wegschaff\",\n  \"wegsetzt\": \"wegsetzt\",\n  \"wegsortiert\": \"wegsortiert\",\n  \"wegspringen\": \"wegspring\",\n  \"wegstiesse\": \"wegstiess\",\n  \"wegstrebten\": \"wegstrebt\",\n  \"wegströmte\": \"wegstromt\",\n  \"wegstunde\": \"wegstund\",\n  \"wegtragen\": \"wegtrag\",\n  \"wegtreiben\": \"wegtreib\",\n  \"wegtreibt\": \"wegtreibt\",\n  \"wegtrieb\": \"wegtrieb\",\n  \"wegtrieben\": \"wegtrieb\",\n  \"wegvernünfteln\": \"wegvernunfteln\",\n  \"wegwenden\": \"wegwend\",\n  \"wegwerfen\": \"wegwerf\",\n  \"wegwerfend\": \"wegwerf\",\n  \"wegwischen\": \"wegwisch\",\n  \"wegwürfe\": \"wegwurf\",\n  \"wegzogen\": \"wegzog\",\n  \"wegzubringen\": \"wegzubring\",\n  \"wegzufahren\": \"wegzufahr\",\n  \"wegzufangen\": \"wegzufang\",\n  \"wegzugehen\": \"wegzugeh\",\n  \"wegzuheben\": \"wegzuheb\",\n  \"wegzuholen\": \"wegzuhol\",\n  \"wegzukommen\": \"wegzukomm\",\n  \"wegzumachen\": \"wegzumach\",\n  \"wegzunehmen\": \"wegzunehm\",\n  \"wegzupraktizieren\": \"wegzupraktizi\",\n  \"wegzuraffen\": \"wegzuraff\",\n  \"wegzuschaffen\": \"wegzuschaff\",\n  \"wegzuschicken\": \"wegzuschick\",\n  \"weh\": \"weh\",\n  \"wehe\": \"weh\",\n  \"wehen\": \"weh\",\n  \"wehendem\": \"wehend\",\n  \"wehenden\": \"wehend\",\n  \"wehes\": \"weh\",\n  \"wehet\": \"wehet\",\n  \"wehetuender\": \"wehetu\",\n  \"wehklage\": \"wehklag\",\n  \"wehklagen\": \"wehklag\",\n  \"wehklagenden\": \"wehklag\",\n  \"wehmut\": \"wehmut\",\n  \"wehmütig\": \"wehmut\",\n  \"wehmütige\": \"wehmut\",\n  \"wehmutsvoll\": \"wehmutsvoll\",\n  \"wehmutter\": \"wehmutt\",\n  \"wehmütter\": \"wehmutt\",\n  \"wehmüttern\": \"wehmutt\",\n  \"weho\": \"weho\",\n  \"wehr\": \"wehr\",\n  \"wehrbaren\": \"wehrbar\",\n  \"wehrbarkeit\": \"wehrbar\",\n  \"wehrdienst\": \"wehrdien\",\n  \"wehren\": \"wehr\",\n  \"wehrend\": \"wehrend\",\n  \"wehret\": \"wehret\",\n  \"wehrhaft\": \"wehrhaft\",\n  \"wehrhaften\": \"wehrhaft\",\n  \"wehrlos\": \"wehrlos\",\n  \"wehrlosen\": \"wehrlos\",\n  \"wehrte\": \"wehrt\",\n  \"wehselig\": \"wehsel\",\n  \"weht\": \"weht\",\n  \"wehte\": \"weht\",\n  \"wehten\": \"weht\",\n  \"wehtun\": \"wehtun\",\n  \"wehwehchen\": \"wehwehch\",\n  \"weib\": \"weib\",\n  \"weibchen\": \"weibch\",\n  \"weibe\": \"weib\",\n  \"weibel\": \"weibel\",\n  \"weiber\": \"weib\",\n  \"weibergut\": \"weibergut\",\n  \"weibergute\": \"weibergut\",\n  \"weibergutes\": \"weibergut\",\n  \"weiberhaare\": \"weiberhaar\",\n  \"weiberkleidern\": \"weiberkleid\",\n  \"weiberl\": \"weiberl\",\n  \"weiberlaunischen\": \"weiberlaun\",\n  \"weibern\": \"weib\",\n  \"weibernücken\": \"weibernuck\",\n  \"weiberschuhe\": \"weiberschuh\",\n  \"weibervolk\": \"weibervolk\",\n  \"weibes\": \"weib\",\n  \"weiblein\": \"weiblein\",\n  \"weibleins\": \"weiblein\",\n  \"weiblich\": \"weiblich\",\n  \"weibliche\": \"weiblich\",\n  \"weiblichen\": \"weiblich\",\n  \"weiblicher\": \"weiblich\",\n  \"weibliches\": \"weiblich\",\n  \"weiblichkeit\": \"weiblich\",\n  \"weibsbild\": \"weibsbild\",\n  \"weibsbilder\": \"weibsbild\",\n  \"weibsleut\": \"weibsleut\",\n  \"weibsleute\": \"weibsleut\",\n  \"weibsperson\": \"weibsperson\",\n  \"weibstück\": \"weibstuck\",\n  \"weich\": \"weich\",\n  \"weiche\": \"weich\",\n  \"weichen\": \"weich\",\n  \"weicher\": \"weich\",\n  \"weicheren\": \"weich\",\n  \"weiches\": \"weich\",\n  \"weichet\": \"weichet\",\n  \"weichherzigen\": \"weichherz\",\n  \"weichlichen\": \"weichlich\",\n  \"weichquark\": \"weichquark\",\n  \"weichsel\": \"weichsel\",\n  \"weichste\": \"weich\",\n  \"weicht\": \"weicht\",\n  \"weide\": \"weid\",\n  \"weiden\": \"weid\",\n  \"weidenbaum\": \"weidenbaum\",\n  \"weidenden\": \"weidend\",\n  \"weidenringe\": \"weidenring\",\n  \"weidenröschen\": \"weidenrosch\",\n  \"weidenrosen\": \"weidenros\",\n  \"weidenstauden\": \"weidenstaud\",\n  \"weidet\": \"weidet\",\n  \"weidete\": \"weidet\",\n  \"weidgerechteste\": \"weidgerecht\",\n  \"weidlich\": \"weidlich\",\n  \"weidmann\": \"weidmann\",\n  \"weidmannes\": \"weidmann\",\n  \"weidmannsfreude\": \"weidmannsfreud\",\n  \"weidmannspech\": \"weidmannspech\",\n  \"weidmannstod\": \"weidmannstod\",\n  \"weidwerk\": \"weidwerk\",\n  \"weidwund\": \"weidwund\",\n  \"weigern\": \"weig\",\n  \"weigerst\": \"weigerst\",\n  \"weigert\": \"weigert\",\n  \"weigerung\": \"weiger\",\n  \"weih\": \"weih\",\n  \"weihbischof\": \"weihbischof\",\n  \"weihe\": \"weih\",\n  \"weihen\": \"weih\",\n  \"weihevollen\": \"weihevoll\",\n  \"weihnachten\": \"weihnacht\",\n  \"weihnachtsbäumchen\": \"weihnachtsbaumch\",\n  \"weihnachtsbäumen\": \"weihnachtsbaum\",\n  \"weihnachtsengelchen\": \"weihnachtsengelch\",\n  \"weihnachtsgarten\": \"weihnachtsgart\",\n  \"weihnachtslied\": \"weihnachtslied\",\n  \"weihnachtsmann\": \"weihnachtsmann\",\n  \"weihnachtsnüsse\": \"weihnachtsnuss\",\n  \"weihnachtsstube\": \"weihnachtsstub\",\n  \"weihnachtssüssigkeiten\": \"weihnachtssuss\",\n  \"weihnachtstisch\": \"weihnachtst\",\n  \"weihnachtsvesper\": \"weihnachtsvesp\",\n  \"weihnachtswiese\": \"weihnachtswies\",\n  \"weihrauch\": \"weihrauch\",\n  \"weil\": \"weil\",\n  \"weilchen\": \"weilch\",\n  \"weile\": \"weil\",\n  \"weilen\": \"weil\",\n  \"weilt\": \"weilt\",\n  \"weilte\": \"weilt\",\n  \"wein\": \"wein\",\n  \"weinbeere\": \"weinbe\",\n  \"weinberg\": \"weinberg\",\n  \"weinberge\": \"weinberg\",\n  \"weinbergswachteln\": \"weinbergswachteln\",\n  \"weine\": \"wein\",\n  \"weinen\": \"wein\",\n  \"weinend\": \"weinend\",\n  \"weinendes\": \"weinend\",\n  \"weinerlich\": \"wein\",\n  \"weines\": \"wein\",\n  \"weinet\": \"weinet\",\n  \"weinflaschen\": \"weinflasch\",\n  \"weingärtner\": \"weingartn\",\n  \"weingefässe\": \"weingefass\",\n  \"weingefäße\": \"weingefass\",\n  \"weinreben\": \"weinreb\",\n  \"weinrot\": \"weinrot\",\n  \"weins\": \"wein\",\n  \"weinsorten\": \"weinsort\",\n  \"weinstock\": \"weinstock\",\n  \"weint\": \"weint\",\n  \"weinte\": \"weint\",\n  \"weinten\": \"weint\",\n  \"weintrinken\": \"weintrink\",\n  \"weintrinker\": \"weintrink\",\n  \"weise\": \"weis\",\n  \"weisen\": \"weis\",\n  \"weiser\": \"weis\",\n  \"weisesten\": \"weis\",\n  \"weisheit\": \"weisheit\",\n  \"weisheiten\": \"weisheit\",\n  \"weisheitslehre\": \"weisheitslehr\",\n  \"weisheitslehrer\": \"weisheitslehr\",\n  \"weislich\": \"weislich\",\n  \"weiss\": \"weiss\",\n  \"weiß\": \"weiss\",\n  \"weissage\": \"weissag\",\n  \"weissagen\": \"weissag\",\n  \"weissagenden\": \"weissag\",\n  \"weissagt\": \"weissagt\",\n  \"weissagte\": \"weissagt\",\n  \"weissagung\": \"weissag\",\n  \"weissbefilzte\": \"weissbefilzt\",\n  \"weißbefilzte\": \"weissbefilzt\",\n  \"weissbrot\": \"weissbrot\",\n  \"weisse\": \"weiss\",\n  \"weiße\": \"weiss\",\n  \"weissem\": \"weiss\",\n  \"weißem\": \"weiss\",\n  \"weissen\": \"weiss\",\n  \"weißen\": \"weiss\",\n  \"weisser\": \"weiss\",\n  \"weißer\": \"weiss\",\n  \"weisseren\": \"weiss\",\n  \"weisses\": \"weiss\",\n  \"weißes\": \"weiss\",\n  \"weissgetünchten\": \"weissgetuncht\",\n  \"weißgetünchten\": \"weissgetuncht\",\n  \"weissgetüpfeltem\": \"weissgetupfelt\",\n  \"weissglasierte\": \"weissglasiert\",\n  \"weisshaarige\": \"weisshaar\",\n  \"weißhaarige\": \"weisshaar\",\n  \"weisshaupt\": \"weisshaupt\",\n  \"weisskohl\": \"weisskohl\",\n  \"weissleinen\": \"weisslein\",\n  \"weißleinen\": \"weisslein\",\n  \"weissseidenen\": \"weissseid\",\n  \"weißseidenen\": \"weissseid\",\n  \"weisst\": \"weisst\",\n  \"weißt\": \"weisst\",\n  \"weist\": \"weist\",\n  \"weisung\": \"weisung\",\n  \"weisungen\": \"weisung\",\n  \"weisungsbefugnisse\": \"weisungsbefugnis\",\n  \"weit\": \"weit\",\n  \"weite\": \"weit\",\n  \"weitem\": \"weit\",\n  \"weiten\": \"weit\",\n  \"weitentlegenen\": \"weitentleg\",\n  \"weiter\": \"weit\",\n  \"weitere\": \"weit\",\n  \"weiterem\": \"weit\",\n  \"weiteren\": \"weit\",\n  \"weiterer\": \"weit\",\n  \"weiteres\": \"weit\",\n  \"weiterfliehen\": \"weiterflieh\",\n  \"weiterführen\": \"weiterfuhr\",\n  \"weitergang\": \"weitergang\",\n  \"weitergebildet\": \"weitergebildet\",\n  \"weitergebracht\": \"weitergebracht\",\n  \"weitergegangen\": \"weitergegang\",\n  \"weitergegeben\": \"weitergegeb\",\n  \"weitergehen\": \"weitergeh\",\n  \"weitergezogen\": \"weitergezog\",\n  \"weiterhin\": \"weiterhin\",\n  \"weiterjagte\": \"weiterjagt\",\n  \"weitern\": \"weit\",\n  \"weiterrutschte\": \"weiterrutscht\",\n  \"weiters\": \"weit\",\n  \"weiterschritten\": \"weiterschritt\",\n  \"weitersprach\": \"weitersprach\",\n  \"weiterverkauft\": \"weiterverkauft\",\n  \"weiterziehen\": \"weiterzieh\",\n  \"weiterzogen\": \"weiterzog\",\n  \"weiterzuführen\": \"weiterzufuhr\",\n  \"weiterzureden\": \"weiterzured\",\n  \"weites\": \"weit\",\n  \"weitesten\": \"weit\",\n  \"weitgedehnte\": \"weitgedehnt\",\n  \"weitgehend\": \"weitgeh\",\n  \"weitgespannten\": \"weitgespannt\",\n  \"weitherausstehenden\": \"weitheraussteh\",\n  \"weithin\": \"weithin\",\n  \"weithingestreckt\": \"weithingestreckt\",\n  \"weitläufig\": \"weitlauf\",\n  \"weitläufige\": \"weitlauf\",\n  \"weitläufigen\": \"weitlauf\",\n  \"weitschwingende\": \"weitschwing\",\n  \"weizen\": \"weiz\",\n  \"weizenbrot\": \"weizenbrot\",\n  \"weizenmehl\": \"weizenmehl\",\n  \"weizens\": \"weiz\",\n  \"welch\": \"welch\",\n  \"welche\": \"welch\",\n  \"welchem\": \"welch\",\n  \"welchen\": \"welch\",\n  \"welcher\": \"welch\",\n  \"welcherart\": \"welcherart\",\n  \"welcherlei\": \"welcherlei\",\n  \"welches\": \"welch\",\n  \"welk\": \"welk\",\n  \"welken\": \"welk\",\n  \"welkenden\": \"welkend\",\n  \"well\": \"well\",\n  \"welle\": \"well\",\n  \"wellen\": \"well\",\n  \"wellenfurchen\": \"wellenfurch\",\n  \"welt\": \"welt\",\n  \"weltall\": \"weltall\",\n  \"weltalls\": \"weltall\",\n  \"weltanschauung\": \"weltanschau\",\n  \"weltanschauungfragen\": \"weltanschauungfrag\",\n  \"weltbau\": \"weltbau\",\n  \"weltbegebenheiten\": \"weltbegeb\",\n  \"weltbetrachtung\": \"weltbetracht\",\n  \"weltbewegenden\": \"weltbeweg\",\n  \"weltbund\": \"weltbund\",\n  \"weltbundes\": \"weltbund\",\n  \"welten\": \"welt\",\n  \"weltenmenge\": \"weltenmeng\",\n  \"weltenraum\": \"weltenraum\",\n  \"weltgebäudes\": \"weltgebaud\",\n  \"weltkongress\": \"weltkongress\",\n  \"weltkörper\": \"weltkorp\",\n  \"weltkreis\": \"weltkreis\",\n  \"weltkreises\": \"weltkreis\",\n  \"weltkrieg\": \"weltkrieg\",\n  \"weltkriegs\": \"weltkrieg\",\n  \"weltlich\": \"weltlich\",\n  \"weltliche\": \"weltlich\",\n  \"weltlichen\": \"weltlich\",\n  \"weltlicher\": \"weltlich\",\n  \"weltliches\": \"weltlich\",\n  \"weltlicht\": \"weltlicht\",\n  \"weltliebe\": \"weltlieb\",\n  \"weltmann\": \"weltmann\",\n  \"weltmeers\": \"weltme\",\n  \"weltnacht\": \"weltnacht\",\n  \"weltordnung\": \"weltordn\",\n  \"weltregierer\": \"weltregi\",\n  \"weltschmerzlich\": \"weltschmerz\",\n  \"weltschöpfer\": \"weltschopf\",\n  \"weltstrome\": \"weltstrom\",\n  \"weltteilen\": \"weltteil\",\n  \"welturheber\": \"welturheb\",\n  \"welturhebers\": \"welturheb\",\n  \"weltursachen\": \"weltursach\",\n  \"weltverantwortung\": \"weltverantwort\",\n  \"weltweisheit\": \"weltweis\",\n  \"weltweit\": \"weltweit\",\n  \"wem\": \"wem\",\n  \"wen\": \"wen\",\n  \"wende\": \"wend\",\n  \"wenden\": \"wend\",\n  \"wendend\": \"wendend\",\n  \"wendenden\": \"wendend\",\n  \"wendet\": \"wendet\",\n  \"wendete\": \"wendet\",\n  \"wendeten\": \"wendet\",\n  \"wendrich\": \"wendrich\",\n  \"wendung\": \"wendung\",\n  \"wendungen\": \"wendung\",\n  \"wenig\": \"wenig\",\n  \"wenige\": \"wenig\",\n  \"wenigem\": \"wenig\",\n  \"wenigen\": \"wenig\",\n  \"weniger\": \"wenig\",\n  \"wenigere\": \"wenig\",\n  \"weniges\": \"wenig\",\n  \"wenigsten\": \"wenig\",\n  \"wenigstens\": \"wenigst\",\n  \"wenn\": \"wenn\",\n  \"wenngleich\": \"wenngleich\",\n  \"wenzel\": \"wenzel\",\n  \"wer\": \"wer\",\n  \"werbebeschränkungen\": \"werbebeschrank\",\n  \"werben\": \"werb\",\n  \"werd\": \"werd\",\n  \"werde\": \"werd\",\n  \"werden\": \"werd\",\n  \"werdend\": \"werdend\",\n  \"werdende\": \"werdend\",\n  \"werdenden\": \"werdend\",\n  \"werdest\": \"werd\",\n  \"werdet\": \"werdet\",\n  \"werfe\": \"werf\",\n  \"werfen\": \"werf\",\n  \"werften\": \"werft\",\n  \"werg\": \"werg\",\n  \"wergg\": \"wergg\",\n  \"werk\": \"werk\",\n  \"werke\": \"werk\",\n  \"werkeltagskleider\": \"werkeltagskleid\",\n  \"werken\": \"werk\",\n  \"werkes\": \"werk\",\n  \"werkführer\": \"werkfuhr\",\n  \"werkführers\": \"werkfuhr\",\n  \"werkmeister\": \"werkmeist\",\n  \"werkstatt\": \"werkstatt\",\n  \"werktag\": \"werktag\",\n  \"werktagen\": \"werktag\",\n  \"werktagsmontur\": \"werktagsmontur\",\n  \"werktätigen\": \"werktat\",\n  \"werktätigkeit\": \"werktat\",\n  \"werkzeug\": \"werkzeug\",\n  \"werkzeuge\": \"werkzeug\",\n  \"werkzeugliches\": \"werkzeug\",\n  \"wert\": \"wert\",\n  \"werte\": \"wert\",\n  \"werten\": \"wert\",\n  \"werterziehung\": \"werterzieh\",\n  \"werteste\": \"wert\",\n  \"werteverfall\": \"werteverfall\",\n  \"wertlos\": \"wertlos\",\n  \"wertlose\": \"wertlos\",\n  \"wertlosigkeit\": \"wertlos\",\n  \"werts\": \"wert\",\n  \"wertvoll\": \"wertvoll\",\n  \"wertvolle\": \"wertvoll\",\n  \"wertvollen\": \"wertvoll\",\n  \"wertvollste\": \"wertvoll\",\n  \"wes\": \"wes\",\n  \"wesen\": \"wes\",\n  \"wesenlosen\": \"wesenlos\",\n  \"wesens\": \"wes\",\n  \"wesentlich\": \"wesent\",\n  \"wesentliche\": \"wesent\",\n  \"wesentlichen\": \"wesent\",\n  \"wesentlicher\": \"wesent\",\n  \"wesentliches\": \"wesent\",\n  \"wesentlichste\": \"wesent\",\n  \"weshalb\": \"weshalb\",\n  \"wespe\": \"wesp\",\n  \"wessen\": \"wess\",\n  \"west\": \"west\",\n  \"westdeutschen\": \"westdeutsch\",\n  \"westdeutscher\": \"westdeutsch\",\n  \"westdeutschland\": \"westdeutschland\",\n  \"weste\": \"west\",\n  \"westen\": \"west\",\n  \"westenstoff\": \"westenstoff\",\n  \"westenstreifen\": \"westenstreif\",\n  \"westfalen\": \"westfal\",\n  \"westfirmen\": \"westfirm\",\n  \"westlertum\": \"westlertum\",\n  \"westlichen\": \"westlich\",\n  \"westliches\": \"westlich\",\n  \"westschweizer\": \"westschweiz\",\n  \"westtürkischen\": \"westturk\",\n  \"westwind\": \"westwind\",\n  \"westwindes\": \"westwind\",\n  \"weswegen\": \"wesweg\",\n  \"wette\": \"wett\",\n  \"wetteifern\": \"wetteif\",\n  \"wetteiferten\": \"wetteifert\",\n  \"wetten\": \"wett\",\n  \"wetter\": \"wett\",\n  \"wetterbeschädigten\": \"wetterbeschadigt\",\n  \"wetternacht\": \"wetternacht\",\n  \"wetters\": \"wett\",\n  \"wetterwendisch\": \"wetterwend\",\n  \"wetterwind\": \"wetterwind\",\n  \"wettkampf\": \"wettkampf\",\n  \"wettlauf\": \"wettlauf\",\n  \"wettlaufens\": \"wettlauf\",\n  \"wettstreit\": \"wettstreit\",\n  \"wetzend\": \"wetzend\",\n  \"wetzte\": \"wetzt\",\n  \"wich\": \"wich\",\n  \"wichen\": \"wich\",\n  \"wichte\": \"wicht\",\n  \"wichtig\": \"wichtig\",\n  \"wichtige\": \"wichtig\",\n  \"wichtigem\": \"wichtig\",\n  \"wichtigen\": \"wichtig\",\n  \"wichtiger\": \"wichtig\",\n  \"wichtigere\": \"wichtig\",\n  \"wichtigeren\": \"wichtig\",\n  \"wichtiges\": \"wichtig\",\n  \"wichtigkeit\": \"wichtig\",\n  \"wichtigste\": \"wichtig\",\n  \"wichtigsten\": \"wichtig\",\n  \"wichtigtuerei\": \"wichtigtuerei\",\n  \"wickelkindchen\": \"wickelkindch\",\n  \"wickelte\": \"wickelt\",\n  \"widder\": \"widd\",\n  \"widderfellen\": \"widderfell\",\n  \"widdern\": \"widd\",\n  \"widders\": \"widd\",\n  \"wide\": \"wid\",\n  \"wider\": \"wid\",\n  \"widerfahre\": \"widerfahr\",\n  \"widerfahren\": \"widerfahr\",\n  \"widerfährt\": \"widerfahrt\",\n  \"widerfuhr\": \"widerfuhr\",\n  \"widergehallt\": \"widergehallt\",\n  \"widergöttlich\": \"widergott\",\n  \"widerhaarig\": \"widerhaar\",\n  \"widerhall\": \"widerhall\",\n  \"widerhallte\": \"widerhallt\",\n  \"widerhallten\": \"widerhallt\",\n  \"widerlegen\": \"widerleg\",\n  \"widerlegt\": \"widerlegt\",\n  \"widerlegung\": \"widerleg\",\n  \"widerlegungen\": \"widerleg\",\n  \"widerlich\": \"wid\",\n  \"widerlichen\": \"wid\",\n  \"widerred\": \"widerred\",\n  \"widerrede\": \"widerred\",\n  \"widersacher\": \"widersach\",\n  \"widerschein\": \"widerschein\",\n  \"widersetzen\": \"widersetz\",\n  \"widersetzlichkeit\": \"widersetz\",\n  \"widersetzt\": \"widersetzt\",\n  \"widersetzte\": \"widersetzt\",\n  \"widersetzten\": \"widersetzt\",\n  \"widersetzung\": \"widersetz\",\n  \"widersinnig\": \"widersinn\",\n  \"widersinnisch\": \"widersinn\",\n  \"widerspenstig\": \"widerspenst\",\n  \"widerspenstige\": \"widerspenst\",\n  \"widerspenstigsten\": \"widerspenst\",\n  \"widerspiele\": \"widerspiel\",\n  \"widersprach\": \"widersprach\",\n  \"widerspreche\": \"widersprech\",\n  \"widersprechen\": \"widersprech\",\n  \"widersprechend\": \"widersprech\",\n  \"widersprechende\": \"widersprech\",\n  \"widersprechenden\": \"widersprech\",\n  \"widersprechender\": \"widersprech\",\n  \"widerspricht\": \"widerspricht\",\n  \"widerspruch\": \"widerspruch\",\n  \"widersprüche\": \"widerspruch\",\n  \"widerspruchs\": \"widerspruch\",\n  \"widerstand\": \"widerstand\",\n  \"widerstande\": \"widerstand\",\n  \"widerstanden\": \"widerstand\",\n  \"widerstandes\": \"widerstand\",\n  \"widerstandslos\": \"widerstandslos\",\n  \"widerstehen\": \"widersteh\",\n  \"widerstehende\": \"widersteh\",\n  \"widerstehendes\": \"widersteh\",\n  \"widersteht\": \"widersteht\",\n  \"widerstrebe\": \"widerstreb\",\n  \"widerstreben\": \"widerstreb\",\n  \"widerstrebend\": \"widerstreb\",\n  \"widerstrebt\": \"widerstrebt\",\n  \"widerstrebte\": \"widerstrebt\",\n  \"widerstrebung\": \"widerstreb\",\n  \"widerstreit\": \"widerstreit\",\n  \"widerstreiten\": \"widerstreit\",\n  \"widerstreitende\": \"widerstreit\",\n  \"widerstreitet\": \"widerstreitet\",\n  \"widerstreits\": \"widerstreit\",\n  \"widertönen\": \"widerton\",\n  \"widerwärtig\": \"widerwart\",\n  \"widerwärtige\": \"widerwart\",\n  \"widerwärtiger\": \"widerwart\",\n  \"widerwärtigsten\": \"widerwart\",\n  \"widerwillen\": \"widerwill\",\n  \"widerwillens\": \"widerwill\",\n  \"widerwillig\": \"widerwill\",\n  \"widerwilliges\": \"widerwill\",\n  \"widmen\": \"widm\",\n  \"widmet\": \"widmet\",\n  \"widmete\": \"widmet\",\n  \"widrig\": \"widrig\",\n  \"widrige\": \"widrig\",\n  \"widrigen\": \"widrig\",\n  \"widrigenfalls\": \"widrigenfall\",\n  \"wie\": \"wie\",\n  \"wieder\": \"wied\",\n  \"wiederaufbaus\": \"wiederaufbaus\",\n  \"wiederaufleben\": \"wiederaufleb\",\n  \"wiederaufnahmen\": \"wiederaufnahm\",\n  \"wiederaufrichtungen\": \"wiederaufricht\",\n  \"wiederbekam\": \"wiederbekam\",\n  \"wiederbekomme\": \"wiederbekomm\",\n  \"wiederbelebt\": \"wiederbelebt\",\n  \"wiederbringer\": \"wiederbring\",\n  \"wiederentdeckung\": \"wiederentdeck\",\n  \"wiedererlangte\": \"wiedererlangt\",\n  \"wiederfanden\": \"wiederfand\",\n  \"wiederfinden\": \"wiederfind\",\n  \"wiederfindens\": \"wiederfind\",\n  \"wiedergabe\": \"wiedergab\",\n  \"wiedergebären\": \"wiedergebar\",\n  \"wiedergebärer\": \"wiedergebar\",\n  \"wiedergebärers\": \"wiedergebar\",\n  \"wiedergebiert\": \"wiedergebiert\",\n  \"wiedergeboren\": \"wiedergebor\",\n  \"wiedergeborene\": \"wiedergebor\",\n  \"wiedergeborenen\": \"wiedergebor\",\n  \"wiedergeburt\": \"wiedergeburt\",\n  \"wiedergefunden\": \"wiedergefund\",\n  \"wiedergekehrten\": \"wiedergekehrt\",\n  \"wiedergekommen\": \"wiedergekomm\",\n  \"wiedergewann\": \"wiedergewann\",\n  \"wiedergewinnen\": \"wiedergewinn\",\n  \"wiedergewonnenen\": \"wiedergewonn\",\n  \"wiedergutmachung\": \"wiedergutmach\",\n  \"wiederhergestellt\": \"wiederhergestellt\",\n  \"wiederherstellung\": \"wiederherstell\",\n  \"wiederherzustellen\": \"wiederherzustell\",\n  \"wiederhole\": \"wiederhol\",\n  \"wiederholen\": \"wiederhol\",\n  \"wiederholt\": \"wiederholt\",\n  \"wiederholte\": \"wiederholt\",\n  \"wiederholten\": \"wiederholt\",\n  \"wiederholung\": \"wiederhol\",\n  \"wiederkam\": \"wiederkam\",\n  \"wiederkäme\": \"wiederkam\",\n  \"wiederkehr\": \"wiederkehr\",\n  \"wiederkehren\": \"wiederkehr\",\n  \"wiederkehrenden\": \"wiederkehr\",\n  \"wiederkehrt\": \"wiederkehrt\",\n  \"wiederklingen\": \"wiederkling\",\n  \"wiederkommen\": \"wiederkomm\",\n  \"wiederkommt\": \"wiederkommt\",\n  \"wiedersehen\": \"wiederseh\",\n  \"wiederum\": \"wiederum\",\n  \"wiedervereinigung\": \"wiederverein\",\n  \"wiedervergeltung\": \"wiedervergelt\",\n  \"wiederzufinden\": \"wiederzufind\",\n  \"wiederzugebärenden\": \"wiederzugebar\",\n  \"wiederzukehren\": \"wiederzukehr\",\n  \"wiege\": \"wieg\",\n  \"wiegen\": \"wieg\",\n  \"wiegt\": \"wiegt\",\n  \"wiegte\": \"wiegt\",\n  \"wiehernde\": \"wiehernd\",\n  \"wiehernden\": \"wiehernd\",\n  \"wien\": \"wien\",\n  \"wiener\": \"wien\",\n  \"wies\": \"wies\",\n  \"wiese\": \"wies\",\n  \"wiesen\": \"wies\",\n  \"wiesenblühenden\": \"wiesenbluh\",\n  \"wiesenfleck\": \"wiesenfleck\",\n  \"wiesengarten\": \"wiesengart\",\n  \"wiesengrunde\": \"wiesengrund\",\n  \"wiesengründe\": \"wiesengrund\",\n  \"wiesenrande\": \"wiesenrand\",\n  \"wieserl\": \"wieserl\",\n  \"wieso\": \"wieso\",\n  \"wieviel\": \"wieviel\",\n  \"wieviele\": \"wieviel\",\n  \"wiewohl\": \"wiewohl\",\n  \"wild\": \"wild\",\n  \"wildbach\": \"wildbach\",\n  \"wildbäche\": \"wildbach\",\n  \"wilddieb\": \"wilddieb\",\n  \"wilddieben\": \"wilddieb\",\n  \"wilde\": \"wild\",\n  \"wilden\": \"wild\",\n  \"wilder\": \"wild\",\n  \"wilderer\": \"wild\",\n  \"wildes\": \"wild\",\n  \"wildeste\": \"wild\",\n  \"wildesten\": \"wild\",\n  \"wildester\": \"wild\",\n  \"wildfänge\": \"wildfang\",\n  \"wildfremde\": \"wildfremd\",\n  \"wildfremden\": \"wildfremd\",\n  \"wildgarten\": \"wildgart\",\n  \"wildheit\": \"wildheit\",\n  \"wildnis\": \"wildnis\",\n  \"wildnisse\": \"wildnis\",\n  \"wildschütz\": \"wildschutz\",\n  \"wildschützen\": \"wildschutz\",\n  \"wildschwein\": \"wildschwein\",\n  \"wildtauben\": \"wildtaub\",\n  \"wildwechseln\": \"wildwechseln\",\n  \"wildwegen\": \"wildweg\",\n  \"wilfriede\": \"wilfried\",\n  \"wilhelmine\": \"wilhelmin\",\n  \"wilhelminenburg\": \"wilhelminenburg\",\n  \"will\": \"will\",\n  \"wille\": \"will\",\n  \"willem\": \"will\",\n  \"willen\": \"will\",\n  \"willenbestimmend\": \"willenbestimm\",\n  \"willenlos\": \"willenlos\",\n  \"willens\": \"will\",\n  \"willensanstrengung\": \"willensanstreng\",\n  \"willensbestimmung\": \"willensbestimm\",\n  \"willensbestimmungen\": \"willensbestimm\",\n  \"willensgebiet\": \"willensgebiet\",\n  \"willensgebietes\": \"willensgebiet\",\n  \"willensleben\": \"willensleb\",\n  \"willensvermögen\": \"willensvermog\",\n  \"willfahren\": \"willfahr\",\n  \"willfährig\": \"willfahr\",\n  \"willfährigkeit\": \"willfahr\",\n  \"willig\": \"willig\",\n  \"willige\": \"willig\",\n  \"willigen\": \"willig\",\n  \"williges\": \"willig\",\n  \"willigte\": \"willigt\",\n  \"willkommen\": \"willkomm\",\n  \"willkommene\": \"willkomm\",\n  \"willkommenen\": \"willkomm\",\n  \"willkür\": \"willkur\",\n  \"willkürlich\": \"willkur\",\n  \"willkürliche\": \"willkur\",\n  \"willst\": \"will\",\n  \"wimmeln\": \"wimmeln\",\n  \"wimmelt\": \"wimmelt\",\n  \"wimmelte\": \"wimmelt\",\n  \"wimmelten\": \"wimmelt\",\n  \"wimpern\": \"wimp\",\n  \"wind\": \"wind\",\n  \"windbruchfläche\": \"windbruchflach\",\n  \"winde\": \"wind\",\n  \"winden\": \"wind\",\n  \"windend\": \"windend\",\n  \"windes\": \"wind\",\n  \"windeswehen\": \"windesweh\",\n  \"windet\": \"windet\",\n  \"windfahne\": \"windfahn\",\n  \"windfaust\": \"windfaust\",\n  \"windhauch\": \"windhauch\",\n  \"windliese\": \"windlies\",\n  \"windlüfte\": \"windluft\",\n  \"windspiele\": \"windspiel\",\n  \"windstillen\": \"windstill\",\n  \"windstoss\": \"windstoss\",\n  \"windstoß\": \"windstoss\",\n  \"wink\": \"wink\",\n  \"winke\": \"wink\",\n  \"winkel\": \"winkel\",\n  \"winkeladvokaten\": \"winkeladvokat\",\n  \"winkelei\": \"winkelei\",\n  \"winkeleien\": \"winkelei\",\n  \"winkelförmig\": \"winkelform\",\n  \"winkelmass\": \"winkelmass\",\n  \"winkeln\": \"winkeln\",\n  \"winkelschenke\": \"winkelschenk\",\n  \"winken\": \"wink\",\n  \"winkliges\": \"winklig\",\n  \"winkt\": \"winkt\",\n  \"winkte\": \"winkt\",\n  \"winkten\": \"winkt\",\n  \"winktest\": \"winkt\",\n  \"winseln\": \"winseln\",\n  \"winter\": \"wint\",\n  \"winterfelder\": \"winterfeld\",\n  \"winterfest\": \"winterf\",\n  \"winterkohlköpfe\": \"winterkohlkopf\",\n  \"winterlichen\": \"wint\",\n  \"winterlicht\": \"winterlicht\",\n  \"winterprogramm\": \"winterprogramm\",\n  \"winters\": \"wint\",\n  \"winterszeit\": \"winterszeit\",\n  \"wintervormittag\": \"wintervormittag\",\n  \"winterwetter\": \"winterwett\",\n  \"winzig\": \"winzig\",\n  \"winzige\": \"winzig\",\n  \"winzigen\": \"winzig\",\n  \"winziger\": \"winzig\",\n  \"winziges\": \"winzig\",\n  \"winzigsten\": \"winzig\",\n  \"wipfel\": \"wipfel\",\n  \"wipfeln\": \"wipfeln\",\n  \"wipp\": \"wipp\",\n  \"wippespiel\": \"wippespiel\",\n  \"wippte\": \"wippt\",\n  \"wir\": \"wir\",\n  \"wirbel\": \"wirbel\",\n  \"wirbelquirlen\": \"wirbelquirl\",\n  \"wirbelte\": \"wirbelt\",\n  \"wirbelwind\": \"wirbelwind\",\n  \"wirbt\": \"wirbt\",\n  \"wird\": \"wird\",\n  \"wirf\": \"wirf\",\n  \"wirft\": \"wirft\",\n  \"wirke\": \"wirk\",\n  \"wirken\": \"wirk\",\n  \"wirkende\": \"wirkend\",\n  \"wirkenden\": \"wirkend\",\n  \"wirkender\": \"wirkend\",\n  \"wirkens\": \"wirk\",\n  \"wirket\": \"wirket\",\n  \"wirklich\": \"wirklich\",\n  \"wirkliche\": \"wirklich\",\n  \"wirklichen\": \"wirklich\",\n  \"wirklicher\": \"wirklich\",\n  \"wirkliches\": \"wirklich\",\n  \"wirklichgemacht\": \"wirklichgemacht\",\n  \"wirklichkeit\": \"wirklich\",\n  \"wirklichmachung\": \"wirklichmach\",\n  \"wirklichwerden\": \"wirklichwerd\",\n  \"wirklichzumachen\": \"wirklichzumach\",\n  \"wirksame\": \"wirksam\",\n  \"wirksamen\": \"wirksam\",\n  \"wirksamkeit\": \"wirksam\",\n  \"wirkt\": \"wirkt\",\n  \"wirkte\": \"wirkt\",\n  \"wirkung\": \"wirkung\",\n  \"wirkungen\": \"wirkung\",\n  \"wirkungskreis\": \"wirkungskreis\",\n  \"wirkungsstätten\": \"wirkungsstatt\",\n  \"wirrbärte\": \"wirrbart\",\n  \"wirrem\": \"wirr\",\n  \"wirrsal\": \"wirrsal\",\n  \"wirrwarr\": \"wirrwarr\",\n  \"wirst\": \"wirst\",\n  \"wirt\": \"wirt\",\n  \"wirte\": \"wirt\",\n  \"wirten\": \"wirt\",\n  \"wirtes\": \"wirt\",\n  \"wirtin\": \"wirtin\",\n  \"wirtliche\": \"wirtlich\",\n  \"wirtschaft\": \"wirtschaft\",\n  \"wirtschaftliche\": \"wirtschaft\",\n  \"wirtschaftlichen\": \"wirtschaft\",\n  \"wirtschaftlicher\": \"wirtschaft\",\n  \"wirtschafts\": \"wirtschaft\",\n  \"wirtschaftsmobiliar\": \"wirtschaftsmobiliar\",\n  \"wirtschaftsplatz\": \"wirtschaftsplatz\",\n  \"wirtschaftspolitische\": \"wirtschaftspolit\",\n  \"wirtschaftswachstum\": \"wirtschaftswachstum\",\n  \"wirtshaus\": \"wirtshaus\",\n  \"wirtshause\": \"wirtshaus\",\n  \"wirtshäuser\": \"wirtshaus\",\n  \"wirtshäusern\": \"wirtshaus\",\n  \"wirtshauses\": \"wirtshaus\",\n  \"wirtshausfenstern\": \"wirtshausfen\",\n  \"wirtshausrechnungen\": \"wirtshausrechn\",\n  \"wirtstisch\": \"wirtstisch\",\n  \"wirtstochter\": \"wirtstocht\",\n  \"wischen\": \"wisch\",\n  \"wischer\": \"wisch\",\n  \"wischt\": \"wischt\",\n  \"wischte\": \"wischt\",\n  \"wischten\": \"wischt\",\n  \"wisperte\": \"wispert\",\n  \"wiss\": \"wiss\",\n  \"wissbegierde\": \"wissbegierd\",\n  \"wißbegierde\": \"wissbegierd\",\n  \"wisse\": \"wiss\",\n  \"wissen\": \"wiss\",\n  \"wissend\": \"wissend\",\n  \"wissende\": \"wissend\",\n  \"wissenden\": \"wissend\",\n  \"wissender\": \"wissend\",\n  \"wissens\": \"wiss\",\n  \"wissenschaft\": \"wissenschaft\",\n  \"wissenschaften\": \"wissenschaft\",\n  \"wissenschaftler\": \"wissenschaftl\",\n  \"wissenschaftlich\": \"wissenschaft\",\n  \"wissenschaftliche\": \"wissenschaft\",\n  \"wissenschaftlichem\": \"wissenschaft\",\n  \"wissenschaftlichen\": \"wissenschaft\",\n  \"wissenschaftliches\": \"wissenschaft\",\n  \"wissest\": \"wiss\",\n  \"wisset\": \"wisset\",\n  \"wisst\": \"wisst\",\n  \"wißt\": \"wisst\",\n  \"wisstümlich\": \"wisstum\",\n  \"wißtümlich\": \"wisstum\",\n  \"wisstümliche\": \"wisstum\",\n  \"wißtümliche\": \"wisstum\",\n  \"wisstümlichem\": \"wisstum\",\n  \"wißtümlichem\": \"wisstum\",\n  \"wisstümlichen\": \"wisstum\",\n  \"wißtümlichen\": \"wisstum\",\n  \"wisstümlicher\": \"wisstum\",\n  \"wißtümlicher\": \"wisstum\",\n  \"wisstümliches\": \"wisstum\",\n  \"wißtümliches\": \"wisstum\",\n  \"witsch\": \"witsch\",\n  \"wittenberg\": \"wittenberg\",\n  \"wittern\": \"witt\",\n  \"witterte\": \"wittert\",\n  \"witterten\": \"wittert\",\n  \"witterung\": \"witter\",\n  \"witterungsvermögen\": \"witterungsvermog\",\n  \"witwe\": \"witw\",\n  \"witwen\": \"witw\",\n  \"witwengehalt\": \"witwengehalt\",\n  \"witwenschaft\": \"witwenschaft\",\n  \"witwer\": \"witw\",\n  \"witz\": \"witz\",\n  \"witze\": \"witz\",\n  \"witzelt\": \"witzelt\",\n  \"witzen\": \"witz\",\n  \"witzig\": \"witzig\",\n  \"witziger\": \"witzig\",\n  \"witzigste\": \"witzig\",\n  \"witzigsten\": \"witzig\",\n  \"wizenmann\": \"wizenmann\",\n  \"wo\": \"wo\",\n  \"woanders\": \"woand\",\n  \"woass\": \"woass\",\n  \"wobei\": \"wobei\",\n  \"woch\": \"woch\",\n  \"woche\": \"woch\",\n  \"wochen\": \"woch\",\n  \"wochenlang\": \"wochenlang\",\n  \"wochenzeitschrift\": \"wochenzeitschrift\",\n  \"wochenzeitung\": \"wochenzeit\",\n  \"wodurch\": \"wodurch\",\n  \"wofern\": \"wof\",\n  \"wofür\": \"wofur\",\n  \"wogegen\": \"wogeg\",\n  \"wogenden\": \"wogend\",\n  \"wogt\": \"wogt\",\n  \"wogte\": \"wogt\",\n  \"woher\": \"woh\",\n  \"wohin\": \"wohin\",\n  \"wohl\": \"wohl\",\n  \"wohlakzentuierte\": \"wohlakzentuiert\",\n  \"wohlan\": \"wohlan\",\n  \"wohlanständigen\": \"wohlanstand\",\n  \"wohlauf\": \"wohlauf\",\n  \"wohlbebaut\": \"wohlbebaut\",\n  \"wohlbefinden\": \"wohlbefind\",\n  \"wohlbegütert\": \"wohlbegutert\",\n  \"wohlbehagen\": \"wohlbehag\",\n  \"wohlbekannte\": \"wohlbekannt\",\n  \"wohlbekannten\": \"wohlbekannt\",\n  \"wohlbeschaffenes\": \"wohlbeschaff\",\n  \"wohlbesorgte\": \"wohlbesorgt\",\n  \"wohlbestellte\": \"wohlbestellt\",\n  \"wohlbestellten\": \"wohlbestellt\",\n  \"wohlbewaffnet\": \"wohlbewaffnet\",\n  \"wohlbewusster\": \"wohlbewusst\",\n  \"wohldenkenden\": \"wohldenk\",\n  \"wohlduftende\": \"wohlduft\",\n  \"wohldurchgebildeter\": \"wohldurchgebildet\",\n  \"wohler\": \"wohl\",\n  \"wohlergehen\": \"wohlergeh\",\n  \"wohlergehens\": \"wohlergeh\",\n  \"wohlerhaltenes\": \"wohlerhalt\",\n  \"wohlerworbenes\": \"wohlerworb\",\n  \"wohlerzogenen\": \"wohlerzog\",\n  \"wohlfahrtsbeamten\": \"wohlfahrtsbeamt\",\n  \"wohlfeil\": \"wohlfeil\",\n  \"wohlfeiles\": \"wohlfeil\",\n  \"wohlgeartet\": \"wohlgeartet\",\n  \"wohlgeartete\": \"wohlgeartet\",\n  \"wohlgeborgen\": \"wohlgeborg\",\n  \"wohlgefallen\": \"wohlgefall\",\n  \"wohlgefallens\": \"wohlgefall\",\n  \"wohlgefällig\": \"wohlgefall\",\n  \"wohlgefällige\": \"wohlgefall\",\n  \"wohlgefälliges\": \"wohlgefall\",\n  \"wohlgefälligsten\": \"wohlgefall\",\n  \"wohlgefällt\": \"wohlgefallt\",\n  \"wohlgefiel\": \"wohlgefiel\",\n  \"wohlgefüllten\": \"wohlgefullt\",\n  \"wohlgefütterten\": \"wohlgefuttert\",\n  \"wohlgekleideten\": \"wohlgekleidet\",\n  \"wohlgelehrt\": \"wohlgelehrt\",\n  \"wohlgelungenen\": \"wohlgel\",\n  \"wohlgemeinte\": \"wohlgemeint\",\n  \"wohlgemerkt\": \"wohlgemerkt\",\n  \"wohlgemut\": \"wohlgemut\",\n  \"wohlgemute\": \"wohlgemut\",\n  \"wohlgenährten\": \"wohlgenahrt\",\n  \"wohlgeordneten\": \"wohlgeordnet\",\n  \"wohlgepflegte\": \"wohlgepflegt\",\n  \"wohlgeputzte\": \"wohlgeputzt\",\n  \"wohlgeratener\": \"wohlgerat\",\n  \"wohlgeratenes\": \"wohlgerat\",\n  \"wohlgeruch\": \"wohlgeruch\",\n  \"wohlgerüche\": \"wohlgeruch\",\n  \"wohlgesalzener\": \"wohlgesalz\",\n  \"wohlgesicherte\": \"wohlgesichert\",\n  \"wohlgesinneten\": \"wohlgesinnet\",\n  \"wohlgesinnte\": \"wohlgesinnt\",\n  \"wohlgestaltete\": \"wohlgestaltet\",\n  \"wohlgestaltetes\": \"wohlgestaltet\",\n  \"wohlhabende\": \"wohlhab\",\n  \"wohlhabender\": \"wohlhab\",\n  \"wohlhabenheit\": \"wohlhab\",\n  \"wohlhergestellten\": \"wohlhergestellt\",\n  \"wohligen\": \"wohlig\",\n  \"wohliger\": \"wohlig\",\n  \"wohliges\": \"wohlig\",\n  \"wohlklang\": \"wohlklang\",\n  \"wohlklingenden\": \"wohlkling\",\n  \"wohllaut\": \"wohllaut\",\n  \"wohllautenden\": \"wohllaut\",\n  \"wohlleben\": \"wohlleb\",\n  \"wohlmeinenden\": \"wohlmein\",\n  \"wohlrasierten\": \"wohlrasiert\",\n  \"wohlriechenden\": \"wohlriech\",\n  \"wohlschmeckenden\": \"wohlschmeck\",\n  \"wohlseins\": \"wohlsein\",\n  \"wohlstand\": \"wohlstand\",\n  \"wohlständchen\": \"wohlstandch\",\n  \"wohlstandes\": \"wohlstand\",\n  \"wohltat\": \"wohltat\",\n  \"wohltaten\": \"wohltat\",\n  \"wohltätigem\": \"wohltat\",\n  \"wohltätigen\": \"wohltat\",\n  \"wohltätigkeit\": \"wohltat\",\n  \"wohltätigste\": \"wohltat\",\n  \"wohltuend\": \"wohltuend\",\n  \"wohltun\": \"wohltun\",\n  \"wohltuns\": \"wohltun\",\n  \"wohlverdienten\": \"wohlverdient\",\n  \"wohlverhalten\": \"wohlverhalt\",\n  \"wohlverhaltens\": \"wohlverhalt\",\n  \"wohlversehen\": \"wohlverseh\",\n  \"wohlverstanden\": \"wohlverstand\",\n  \"wohlweisen\": \"wohlweis\",\n  \"wohlwillst\": \"wohlwill\",\n  \"wohlwollen\": \"wohlwoll\",\n  \"wohlwollend\": \"wohlwoll\",\n  \"wohlwollende\": \"wohlwoll\",\n  \"wohlwollenden\": \"wohlwoll\",\n  \"wohlwollender\": \"wohlwoll\",\n  \"wohlwollendste\": \"wohlwoll\",\n  \"wohlwollens\": \"wohlwoll\",\n  \"wohlwollte\": \"wohlwollt\",\n  \"wohlzutun\": \"wohlzutun\",\n  \"wohne\": \"wohn\",\n  \"wohnen\": \"wohn\",\n  \"wohnend\": \"wohnend\",\n  \"wohnenden\": \"wohnend\",\n  \"wohnet\": \"wohnet\",\n  \"wohnheim\": \"wohnheim\",\n  \"wohnlich\": \"wohnlich\",\n  \"wohnlichen\": \"wohnlich\",\n  \"wohnraum\": \"wohnraum\",\n  \"wohnstätte\": \"wohnstatt\",\n  \"wohnstube\": \"wohnstub\",\n  \"wohnt\": \"wohnt\",\n  \"wohnte\": \"wohnt\",\n  \"wohnten\": \"wohnt\",\n  \"wohnung\": \"wohnung\",\n  \"wohnungen\": \"wohnung\",\n  \"wohnungstür\": \"wohnungstur\",\n  \"wohnzimmer\": \"wohnzimm\",\n  \"wölbten\": \"wolbt\",\n  \"wölbung\": \"wolbung\",\n  \"wolf\": \"wolf\",\n  \"wölfe\": \"wolf\",\n  \"wolff\": \"wolff\",\n  \"wolhyniens\": \"wolhyni\",\n  \"wölkchen\": \"wolkch\",\n  \"wolke\": \"wolk\",\n  \"wolken\": \"wolk\",\n  \"wolkenbase\": \"wolkenbas\",\n  \"wolkenberge\": \"wolkenberg\",\n  \"wolkenbruch\": \"wolkenbruch\",\n  \"wolkenfenster\": \"wolkenfen\",\n  \"wolkenfrau\": \"wolkenfrau\",\n  \"wolkenhülle\": \"wolkenhull\",\n  \"wolkenkuppel\": \"wolkenkuppel\",\n  \"wolkenlos\": \"wolkenlos\",\n  \"wolkenriss\": \"wolkenriss\",\n  \"wolkensäule\": \"wolkensaul\",\n  \"wolkenschiff\": \"wolkenschiff\",\n  \"wolkenschneider\": \"wolkenschneid\",\n  \"wolkenwände\": \"wolkenwand\",\n  \"woll\": \"woll\",\n  \"wolle\": \"woll\",\n  \"wollen\": \"woll\",\n  \"wollende\": \"wollend\",\n  \"wollenden\": \"wollend\",\n  \"wollendes\": \"wollend\",\n  \"wollenen\": \"woll\",\n  \"wollens\": \"woll\",\n  \"wollet\": \"wollet\",\n  \"wollt\": \"wollt\",\n  \"wollte\": \"wollt\",\n  \"wollten\": \"wollt\",\n  \"wolltest\": \"wollt\",\n  \"wolltet\": \"wolltet\",\n  \"wollust\": \"wollust\",\n  \"wollüste\": \"wollust\",\n  \"wollüstig\": \"wollust\",\n  \"womit\": \"womit\",\n  \"womöglich\": \"womog\",\n  \"wonach\": \"wonach\",\n  \"wonne\": \"wonn\",\n  \"wonnegefühl\": \"wonnegefuhl\",\n  \"wonnen\": \"wonn\",\n  \"wonnevoll\": \"wonnevoll\",\n  \"wonnevolle\": \"wonnevoll\",\n  \"wonnigen\": \"wonnig\",\n  \"woran\": \"woran\",\n  \"worauf\": \"worauf\",\n  \"woraus\": \"woraus\",\n  \"worbs\": \"worb\",\n  \"word\": \"word\",\n  \"worden\": \"word\",\n  \"worfen\": \"worf\",\n  \"worin\": \"worin\",\n  \"workshops\": \"workshops\",\n  \"world\": \"world\",\n  \"wort\": \"wort\",\n  \"wortbedeutung\": \"wortbedeut\",\n  \"wortbeiträge\": \"wortbeitrag\",\n  \"worte\": \"wort\",\n  \"worten\": \"wort\",\n  \"wörter\": \"wort\",\n  \"wörterbuch\": \"worterbuch\",\n  \"wörtern\": \"wort\",\n  \"wörtersprache\": \"wortersprach\",\n  \"wortes\": \"wort\",\n  \"wortkarg\": \"wortkarg\",\n  \"wortkarge\": \"wortkarg\",\n  \"wörtl\": \"wortl\",\n  \"wortlaut\": \"wortlaut\",\n  \"wörtlein\": \"wortlein\",\n  \"wörtlich\": \"wortlich\",\n  \"wortlos\": \"wortlos\",\n  \"wortlosen\": \"wortlos\",\n  \"wortschatz\": \"wortschatz\",\n  \"wortstreit\": \"wortstreit\",\n  \"wortwechsel\": \"wortwechsel\",\n  \"wortwechselte\": \"wortwechselt\",\n  \"worüber\": \"worub\",\n  \"worum\": \"worum\",\n  \"worunter\": \"worunt\",\n  \"wos\": \"wos\",\n  \"wovon\": \"wovon\",\n  \"wozu\": \"wozu\",\n  \"wuchernden\": \"wuchernd\",\n  \"wucherte\": \"wuchert\",\n  \"wucherten\": \"wuchert\",\n  \"wuchs\": \"wuch\",\n  \"wuchsen\": \"wuchs\",\n  \"wuchses\": \"wuchs\",\n  \"wucht\": \"wucht\",\n  \"wühlen\": \"wuhl\",\n  \"wühlte\": \"wuhlt\",\n  \"wulla\": \"wulla\",\n  \"wunde\": \"wund\",\n  \"wunden\": \"wund\",\n  \"wunder\": \"wund\",\n  \"wunderbar\": \"wunderbar\",\n  \"wunderbare\": \"wunderbar\",\n  \"wunderbaren\": \"wunderbar\",\n  \"wunderbarer\": \"wunderbar\",\n  \"wunderbares\": \"wunderbar\",\n  \"wunderbarste\": \"wunderbarst\",\n  \"wunderbarsten\": \"wunderbarst\",\n  \"wundere\": \"wund\",\n  \"wunderkur\": \"wunderkur\",\n  \"wunderlich\": \"wund\",\n  \"wunderliche\": \"wund\",\n  \"wunderlichen\": \"wund\",\n  \"wunderlicher\": \"wund\",\n  \"wunderlicherweise\": \"wunderlicherweis\",\n  \"wunderlichste\": \"wund\",\n  \"wunderlieben\": \"wunderlieb\",\n  \"wundermächtige\": \"wundermacht\",\n  \"wundern\": \"wund\",\n  \"wunders\": \"wund\",\n  \"wundersam\": \"wundersam\",\n  \"wundersame\": \"wundersam\",\n  \"wundersamen\": \"wundersam\",\n  \"wundersamer\": \"wundersam\",\n  \"wundersames\": \"wundersam\",\n  \"wunderschön\": \"wunderschon\",\n  \"wunderschöne\": \"wunderschon\",\n  \"wunderschönen\": \"wunderschon\",\n  \"wunderschönes\": \"wunderschon\",\n  \"wundert\": \"wundert\",\n  \"wunderte\": \"wundert\",\n  \"wunderten\": \"wundert\",\n  \"wundertiefen\": \"wundertief\",\n  \"wundertier\": \"wunderti\",\n  \"wundervoll\": \"wundervoll\",\n  \"wundervolle\": \"wundervoll\",\n  \"wundervoller\": \"wundervoll\",\n  \"wundervolles\": \"wundervoll\",\n  \"wunderzeichen\": \"wunderzeich\",\n  \"wundre\": \"wundr\",\n  \"wundzudrücken\": \"wundzudruck\",\n  \"wunsch\": \"wunsch\",\n  \"wünsch\": \"wunsch\",\n  \"wünschbare\": \"wunschbar\",\n  \"wünschbarsten\": \"wunschbarst\",\n  \"wunsche\": \"wunsch\",\n  \"wünsche\": \"wunsch\",\n  \"wünschen\": \"wunsch\",\n  \"wünschenswert\": \"wunschenswert\",\n  \"wünschenswerten\": \"wunschenswert\",\n  \"wunsches\": \"wunsch\",\n  \"wünschet\": \"wunschet\",\n  \"wünscht\": \"wunscht\",\n  \"wünschte\": \"wunscht\",\n  \"wünschten\": \"wunscht\",\n  \"wunsiedel\": \"wunsiedel\",\n  \"wunsiedels\": \"wunsiedel\",\n  \"wupp\": \"wupp\",\n  \"würd\": \"wurd\",\n  \"wurde\": \"wurd\",\n  \"würde\": \"wurd\",\n  \"wurden\": \"wurd\",\n  \"würden\": \"wurd\",\n  \"wurdest\": \"wurd\",\n  \"würdest\": \"wurd\",\n  \"würdet\": \"wurdet\",\n  \"würdig\": \"wurdig\",\n  \"würdige\": \"wurdig\",\n  \"würdigen\": \"wurdig\",\n  \"würdiger\": \"wurdig\",\n  \"würdigkeit\": \"wurdig\",\n  \"würdigte\": \"wurdigt\",\n  \"würdst\": \"wurd\",\n  \"würfeln\": \"wurfeln\",\n  \"würfen\": \"wurf\",\n  \"würgen\": \"wurg\",\n  \"würgte\": \"wurgt\",\n  \"wurm\": \"wurm\",\n  \"würmchen\": \"wurmch\",\n  \"würmer\": \"wurm\",\n  \"wurmisierte\": \"wurmisiert\",\n  \"wurst\": \"wurst\",\n  \"würstchen\": \"wurstch\",\n  \"würtembergischen\": \"wurtemberg\",\n  \"würze\": \"wurz\",\n  \"wurzel\": \"wurzel\",\n  \"wurzelknorren\": \"wurzelknorr\",\n  \"wurzeln\": \"wurzeln\",\n  \"wurzelstock\": \"wurzelstock\",\n  \"wurzelstöcke\": \"wurzelstock\",\n  \"wurzelt\": \"wurzelt\",\n  \"würzigen\": \"wurzig\",\n  \"würzkrämer\": \"wurzkram\",\n  \"würzte\": \"wurzt\",\n  \"wurzweg\": \"wurzweg\",\n  \"wusch\": \"wusch\",\n  \"wuschelig\": \"wuschel\",\n  \"wusst\": \"wusst\",\n  \"wusste\": \"wusst\",\n  \"wußte\": \"wusst\",\n  \"wüsste\": \"wusst\",\n  \"wüßte\": \"wusst\",\n  \"wussten\": \"wusst\",\n  \"wußten\": \"wusst\",\n  \"wüssten\": \"wusst\",\n  \"wüßten\": \"wusst\",\n  \"wüsstens\": \"wusst\",\n  \"wusstest\": \"wusst\",\n  \"wüßtest\": \"wusst\",\n  \"wüsstet\": \"wusstet\",\n  \"wüßtet\": \"wusstet\",\n  \"wüst\": \"wust\",\n  \"wüste\": \"wust\",\n  \"wüsten\": \"wust\",\n  \"wüstenei\": \"wustenei\",\n  \"wüsteneien\": \"wustenei\",\n  \"wüstensand\": \"wustensand\",\n  \"wüstenwirbelwetterhut\": \"wustenwirbelwetterhut\",\n  \"wüster\": \"wust\",\n  \"wut\": \"wut\",\n  \"wüten\": \"wut\",\n  \"wütend\": \"wutend\",\n  \"wütenden\": \"wutend\",\n  \"wütender\": \"wutend\",\n  \"wütendere\": \"wutend\",\n  \"wutentbrannt\": \"wutentbrannt\",\n  \"www\": \"www\",\n  \"x\": \"x\",\n  \"yeni\": \"yeni\",\n  \"yet\": \"yet\",\n  \"york\": \"york\",\n  \"z\": \"z\",\n  \"zacken\": \"zack\",\n  \"zackenwasser\": \"zackenwass\",\n  \"zackige\": \"zackig\",\n  \"zadoks\": \"zadok\",\n  \"zagen\": \"zag\",\n  \"zagend\": \"zagend\",\n  \"zaghaft\": \"zaghaft\",\n  \"zaghaftigkeit\": \"zaghaft\",\n  \"zäh\": \"zah\",\n  \"zähe\": \"zah\",\n  \"zahl\": \"zahl\",\n  \"zähl\": \"zahl\",\n  \"zahle\": \"zahl\",\n  \"zähle\": \"zahl\",\n  \"zahlen\": \"zahl\",\n  \"zählen\": \"zahl\",\n  \"zahlende\": \"zahlend\",\n  \"zähler\": \"zahl\",\n  \"zahllos\": \"zahllos\",\n  \"zahllose\": \"zahllos\",\n  \"zahllosen\": \"zahllos\",\n  \"zahlloser\": \"zahllos\",\n  \"zahlrei\": \"zahlrei\",\n  \"zahlreich\": \"zahlreich\",\n  \"zahlreiche\": \"zahlreich\",\n  \"zahlreichen\": \"zahlreich\",\n  \"zahlreicher\": \"zahlreich\",\n  \"zahlreichsten\": \"zahlreich\",\n  \"zahlt\": \"zahlt\",\n  \"zählt\": \"zahlt\",\n  \"zahlte\": \"zahlt\",\n  \"zählte\": \"zahlt\",\n  \"zahlungen\": \"zahlung\",\n  \"zahm\": \"zahm\",\n  \"zahmen\": \"zahm\",\n  \"zähmen\": \"zahm\",\n  \"zahnbürste\": \"zahnburst\",\n  \"zähnchen\": \"zahnch\",\n  \"zähne\": \"zahn\",\n  \"zähnefletschend\": \"zahnefletsch\",\n  \"zähneklappernd\": \"zahneklappernd\",\n  \"zähnen\": \"zahn\",\n  \"zahnperlen\": \"zahnperl\",\n  \"zamm\": \"zamm\",\n  \"zammklauben\": \"zammklaub\",\n  \"zammraumen\": \"zammraum\",\n  \"zammtreffen\": \"zammtreff\",\n  \"zängchen\": \"zangch\",\n  \"zank\": \"zank\",\n  \"zanken\": \"zank\",\n  \"zänkereien\": \"zankerei\",\n  \"zankes\": \"zank\",\n  \"zänkischen\": \"zankisch\",\n  \"zanklaute\": \"zanklaut\",\n  \"zankt\": \"zankt\",\n  \"zankte\": \"zankt\",\n  \"zankten\": \"zankt\",\n  \"zapfenbrett\": \"zapfenbrett\",\n  \"zappeln\": \"zappeln\",\n  \"zappelte\": \"zappelt\",\n  \"zarge\": \"zarg\",\n  \"zargen\": \"zarg\",\n  \"zart\": \"zart\",\n  \"zartem\": \"zart\",\n  \"zarten\": \"zart\",\n  \"zarter\": \"zart\",\n  \"zarteren\": \"zart\",\n  \"zartes\": \"zart\",\n  \"zarteste\": \"zart\",\n  \"zartesten\": \"zart\",\n  \"zartgefühles\": \"zartgefuhl\",\n  \"zartheit\": \"zartheit\",\n  \"zärtlich\": \"zartlich\",\n  \"zärtliche\": \"zartlich\",\n  \"zärtlichen\": \"zartlich\",\n  \"zärtliches\": \"zartlich\",\n  \"zärtlichkeit\": \"zartlich\",\n  \"zärtlichkeiten\": \"zartlich\",\n  \"zärtlichste\": \"zartlich\",\n  \"zaster\": \"zast\",\n  \"zauber\": \"zaub\",\n  \"zauberei\": \"zauberei\",\n  \"zaubereien\": \"zauberei\",\n  \"zauberer\": \"zaub\",\n  \"zauberern\": \"zaub\",\n  \"zauberfrau\": \"zauberfrau\",\n  \"zauberhaften\": \"zauberhaft\",\n  \"zauberhafter\": \"zauberhaft\",\n  \"zauberhaftes\": \"zauberhaft\",\n  \"zauberin\": \"zauberin\",\n  \"zauberische\": \"zauber\",\n  \"zauberkünste\": \"zauberkun\",\n  \"zauberlaterne\": \"zauberlatern\",\n  \"zaubermacht\": \"zaubermacht\",\n  \"zaubermeister\": \"zaubermeist\",\n  \"zaubern\": \"zaub\",\n  \"zauberschlage\": \"zauberschlag\",\n  \"zauberstab\": \"zauberstab\",\n  \"zauberstabe\": \"zauberstab\",\n  \"zauberstücke\": \"zauberstuck\",\n  \"zauberwege\": \"zauberweg\",\n  \"zauberworte\": \"zauberwort\",\n  \"zauberzartes\": \"zauberzart\",\n  \"zaum\": \"zaum\",\n  \"zaume\": \"zaum\",\n  \"zaun\": \"zaun\",\n  \"zäune\": \"zaun\",\n  \"zaunes\": \"zaun\",\n  \"zaunlatten\": \"zaunlatt\",\n  \"zausen\": \"zaus\",\n  \"zebaoth\": \"zebaoth\",\n  \"zeche\": \"zech\",\n  \"zechen\": \"zech\",\n  \"zechgelage\": \"zechgelag\",\n  \"zechten\": \"zecht\",\n  \"zedekia\": \"zedekia\",\n  \"zeder\": \"zed\",\n  \"zedern\": \"zed\",\n  \"zedernholz\": \"zedernholz\",\n  \"zehen\": \"zeh\",\n  \"zehenspitzen\": \"zehenspitz\",\n  \"zehenten\": \"zehent\",\n  \"zehn\": \"zehn\",\n  \"zehnfache\": \"zehnfach\",\n  \"zehnjährige\": \"zehnjahr\",\n  \"zehnjährigen\": \"zehnjahr\",\n  \"zehnmal\": \"zehnmal\",\n  \"zehnsaitigen\": \"zehnsait\",\n  \"zehntausend\": \"zehntaus\",\n  \"zehntausende\": \"zehntaus\",\n  \"zehnte\": \"zehnt\",\n  \"zehnten\": \"zehnt\",\n  \"zehntes\": \"zehnt\",\n  \"zehnzahl\": \"zehnzahl\",\n  \"zehren\": \"zehr\",\n  \"zehrpfennig\": \"zehrpfenn\",\n  \"zehrte\": \"zehrt\",\n  \"zehrung\": \"zehrung\",\n  \"zeichen\": \"zeich\",\n  \"zeichens\": \"zeich\",\n  \"zeichne\": \"zeichn\",\n  \"zeichners\": \"zeichn\",\n  \"zeichnete\": \"zeichnet\",\n  \"zeichnung\": \"zeichnung\",\n  \"zeichnungen\": \"zeichnung\",\n  \"zeid\": \"zeid\",\n  \"zeiding\": \"zeiding\",\n  \"zeig\": \"zeig\",\n  \"zeige\": \"zeig\",\n  \"zeigefinger\": \"zeigefing\",\n  \"zeigen\": \"zeig\",\n  \"zeiger\": \"zeig\",\n  \"zeigst\": \"zeig\",\n  \"zeigt\": \"zeigt\",\n  \"zeigte\": \"zeigt\",\n  \"zeigten\": \"zeigt\",\n  \"zeile\": \"zeil\",\n  \"zeiserl\": \"zeiserl\",\n  \"zeisig\": \"zeisig\",\n  \"zeit\": \"zeit\",\n  \"zeitabläufe\": \"zeitablauf\",\n  \"zeitabschnitte\": \"zeitabschnitt\",\n  \"zeitalter\": \"zeitalt\",\n  \"zeitaltern\": \"zeitalt\",\n  \"zeitangabe\": \"zeitangab\",\n  \"zeitaufwand\": \"zeitaufwand\",\n  \"zeitbedingung\": \"zeitbeding\",\n  \"zeitbegriff\": \"zeitbegriff\",\n  \"zeiten\": \"zeit\",\n  \"zeitenwechsel\": \"zeitenwechsel\",\n  \"zeitgenossen\": \"zeitgenoss\",\n  \"zeitlang\": \"zeitlang\",\n  \"zeitlauf\": \"zeitlauf\",\n  \"zeitläufe\": \"zeitlauf\",\n  \"zeitlaufes\": \"zeitlauf\",\n  \"zeitlaufs\": \"zeitlauf\",\n  \"zeitlebens\": \"zeitleb\",\n  \"zeitliche\": \"zeitlich\",\n  \"zeitlichen\": \"zeitlich\",\n  \"zeitlicherem\": \"zeitlich\",\n  \"zeitmangel\": \"zeitmangel\",\n  \"zeitminute\": \"zeitminut\",\n  \"zeitpunkt\": \"zeitpunkt\",\n  \"zeitpunkte\": \"zeitpunkt\",\n  \"zeitpunkten\": \"zeitpunkt\",\n  \"zeitraum\": \"zeitraum\",\n  \"zeitraume\": \"zeitraum\",\n  \"zeiträume\": \"zeitraum\",\n  \"zeiträumen\": \"zeitraum\",\n  \"zeitrechnung\": \"zeitrechn\",\n  \"zeitschrift\": \"zeitschrift\",\n  \"zeitschriften\": \"zeitschrift\",\n  \"zeitung\": \"zeitung\",\n  \"zeitungen\": \"zeitung\",\n  \"zeitungsläden\": \"zeitungslad\",\n  \"zeitverhältnisse\": \"zeitverhaltnis\",\n  \"zeitverlauf\": \"zeitverlauf\",\n  \"zeitvertreib\": \"zeitvertreib\",\n  \"zeitvertreiber\": \"zeitvertreib\",\n  \"zeitverwendung\": \"zeitverwend\",\n  \"zeitweilig\": \"zeitweil\",\n  \"zeitweiligen\": \"zeitweil\",\n  \"zeitweise\": \"zeitweis\",\n  \"zelebriert\": \"zelebriert\",\n  \"zelt\": \"zelt\",\n  \"zeltbewohners\": \"zeltbewohn\",\n  \"zelte\": \"zelt\",\n  \"zelten\": \"zelt\",\n  \"zeltes\": \"zelt\",\n  \"zeltlager\": \"zeltlag\",\n  \"zen\": \"zen\",\n  \"zentnerlast\": \"zentnerlast\",\n  \"zentnern\": \"zentn\",\n  \"zentnerschwer\": \"zentnerschw\",\n  \"zentralbüro\": \"zentralburo\",\n  \"zentraldorf\": \"zentraldorf\",\n  \"zentralsekretär\": \"zentralsekretar\",\n  \"zentralsekretärs\": \"zentralsekretar\",\n  \"zentralstelle\": \"zentralstell\",\n  \"zeph\": \"zeph\",\n  \"zephanja\": \"zephanja\",\n  \"zeppelinballons\": \"zeppelinballon\",\n  \"zepter\": \"zept\",\n  \"zerbläuen\": \"zerblau\",\n  \"zerbrach\": \"zerbrach\",\n  \"zerbräche\": \"zerbrach\",\n  \"zerbreche\": \"zerbrech\",\n  \"zerbrechen\": \"zerbrech\",\n  \"zerbrechend\": \"zerbrech\",\n  \"zerbrechlich\": \"zerbrech\",\n  \"zerbricht\": \"zerbricht\",\n  \"zerbrochen\": \"zerbroch\",\n  \"zerbrochene\": \"zerbroch\",\n  \"zerbrochenen\": \"zerbroch\",\n  \"zerdrückt\": \"zerdruckt\",\n  \"zerdrückte\": \"zerdruckt\",\n  \"zerdrückten\": \"zerdruckt\",\n  \"zeremonie\": \"zeremoni\",\n  \"zeremoniell\": \"zeremoniell\",\n  \"zerfahrenen\": \"zerfahr\",\n  \"zerfallenden\": \"zerfall\",\n  \"zerfallene\": \"zerfall\",\n  \"zerfallenen\": \"zerfall\",\n  \"zerfegte\": \"zerfegt\",\n  \"zerfetzt\": \"zerfetzt\",\n  \"zerfliesse\": \"zerfliess\",\n  \"zerfliessen\": \"zerfliess\",\n  \"zerfließen\": \"zerfliess\",\n  \"zerfliesst\": \"zerfliesst\",\n  \"zerfließt\": \"zerfliesst\",\n  \"zerflog\": \"zerflog\",\n  \"zerfressenen\": \"zerfress\",\n  \"zergeht\": \"zergeht\",\n  \"zergliedern\": \"zerglied\",\n  \"zergliederung\": \"zerglieder\",\n  \"zerhaue\": \"zerhau\",\n  \"zerhauen\": \"zerhau\",\n  \"zerhauend\": \"zerhau\",\n  \"zerknicken\": \"zerknick\",\n  \"zerknickten\": \"zerknickt\",\n  \"zerknirscht\": \"zerknirscht\",\n  \"zerknitterten\": \"zerknittert\",\n  \"zerknittertes\": \"zerknittert\",\n  \"zerkratzten\": \"zerkratzt\",\n  \"zerlegte\": \"zerlegt\",\n  \"zerlegung\": \"zerleg\",\n  \"zermalme\": \"zermalm\",\n  \"zermalmen\": \"zermalm\",\n  \"zermalmend\": \"zermalm\",\n  \"zermalmest\": \"zermalm\",\n  \"zermalmt\": \"zermalmt\",\n  \"zernagte\": \"zernagt\",\n  \"zerraufte\": \"zerrauft\",\n  \"zerreibend\": \"zerreib\",\n  \"zerreissen\": \"zerreiss\",\n  \"zerreißen\": \"zerreiss\",\n  \"zerreissenden\": \"zerreiss\",\n  \"zerreißenden\": \"zerreiss\",\n  \"zerreisst\": \"zerreisst\",\n  \"zerreißt\": \"zerreisst\",\n  \"zerren\": \"zerr\",\n  \"zerrieben\": \"zerrieb\",\n  \"zerriss\": \"zerriss\",\n  \"zerriß\": \"zerriss\",\n  \"zerrissen\": \"zerriss\",\n  \"zerrissene\": \"zerriss\",\n  \"zerrissenen\": \"zerriss\",\n  \"zerrt\": \"zerrt\",\n  \"zerrte\": \"zerrt\",\n  \"zerschellen\": \"zerschell\",\n  \"zerschellt\": \"zerschellt\",\n  \"zerschlagen\": \"zerschlag\",\n  \"zerschlagener\": \"zerschlag\",\n  \"zerschlitzt\": \"zerschlitzt\",\n  \"zerschlug\": \"zerschlug\",\n  \"zerschlugen\": \"zerschlug\",\n  \"zerschmettert\": \"zerschmettert\",\n  \"zerschnitten\": \"zerschnitt\",\n  \"zerschnittenien\": \"zerschnitteni\",\n  \"zerschossenen\": \"zerschoss\",\n  \"zerspaltet\": \"zerspaltet\",\n  \"zerspellten\": \"zerspellt\",\n  \"zerspringen\": \"zerspring\",\n  \"zerstampfen\": \"zerstampf\",\n  \"zerstäubung\": \"zerstaub\",\n  \"zerstibten\": \"zerstibt\",\n  \"zerstieben\": \"zerstieb\",\n  \"zerstoben\": \"zerstob\",\n  \"zerstochen\": \"zerstoch\",\n  \"zerstochene\": \"zerstoch\",\n  \"zerstöre\": \"zerstor\",\n  \"zerstören\": \"zerstor\",\n  \"zerstörend\": \"zerstor\",\n  \"zerstörende\": \"zerstor\",\n  \"zerstört\": \"zerstort\",\n  \"zerstörte\": \"zerstort\",\n  \"zerstörten\": \"zerstort\",\n  \"zerstörung\": \"zerstor\",\n  \"zerstossen\": \"zerstoss\",\n  \"zerstoßen\": \"zerstoss\",\n  \"zerstossene\": \"zerstoss\",\n  \"zerstoßene\": \"zerstoss\",\n  \"zerstreuen\": \"zerstreu\",\n  \"zerstreut\": \"zerstreut\",\n  \"zerstreute\": \"zerstreut\",\n  \"zerstreuten\": \"zerstreut\",\n  \"zerstreutheit\": \"zerstreut\",\n  \"zerstreuung\": \"zerstreu\",\n  \"zerteilt\": \"zerteilt\",\n  \"zerteilten\": \"zerteilt\",\n  \"zertrennt\": \"zertrennt\",\n  \"zertreten\": \"zertret\",\n  \"zertretenen\": \"zertret\",\n  \"zertrümmert\": \"zertrummert\",\n  \"zertrümmerte\": \"zertrummert\",\n  \"zertrümmerten\": \"zertrummert\",\n  \"zertrümmertes\": \"zertrummert\",\n  \"zerwühlt\": \"zerwuhlt\",\n  \"zerzausten\": \"zerzaust\",\n  \"zerzauster\": \"zerzaust\",\n  \"zerzaustheit\": \"zerzaust\",\n  \"zeter\": \"zet\",\n  \"zettel\": \"zettel\",\n  \"zettelchen\": \"zettelch\",\n  \"zeug\": \"zeug\",\n  \"zeuge\": \"zeug\",\n  \"zeugen\": \"zeug\",\n  \"zeugenaussagen\": \"zeugenaussag\",\n  \"zeughäuser\": \"zeughaus\",\n  \"zeughäusern\": \"zeughaus\",\n  \"zeugin\": \"zeugin\",\n  \"zeugnis\": \"zeugnis\",\n  \"zeugnisse\": \"zeugnis\",\n  \"zeugnisses\": \"zeugnis\",\n  \"zeugschmied\": \"zeugschmied\",\n  \"zeugschmiedgesell\": \"zeugschmiedgesell\",\n  \"zeugte\": \"zeugt\",\n  \"zeugten\": \"zeugt\",\n  \"zeugung\": \"zeugung\",\n  \"zeugungen\": \"zeugung\",\n  \"zeugungsgliedern\": \"zeugungsglied\",\n  \"zh\": \"zh\",\n  \"zichorierte\": \"zichoriert\",\n  \"zickzack\": \"zickzack\",\n  \"zickzacklinien\": \"zickzacklini\",\n  \"zidon\": \"zidon\",\n  \"zidons\": \"zidon\",\n  \"ziedern\": \"zied\",\n  \"ziedert\": \"ziedert\",\n  \"ziegel\": \"ziegel\",\n  \"ziegelmachen\": \"ziegelmach\",\n  \"ziegeln\": \"ziegeln\",\n  \"ziegelofen\": \"ziegelof\",\n  \"ziegelsteine\": \"ziegelstein\",\n  \"ziegelsteinen\": \"ziegelstein\",\n  \"ziegen\": \"zieg\",\n  \"ziegenbart\": \"ziegenbart\",\n  \"ziegenbock\": \"ziegenbock\",\n  \"ziegenböcken\": \"ziegenbock\",\n  \"ziegenkadaver\": \"ziegenkadav\",\n  \"zieh\": \"zieh\",\n  \"ziehbrunnen\": \"ziehbrunn\",\n  \"ziehe\": \"zieh\",\n  \"ziehen\": \"zieh\",\n  \"ziehenden\": \"ziehend\",\n  \"ziehet\": \"ziehet\",\n  \"zieht\": \"zieht\",\n  \"ziel\": \"ziel\",\n  \"ziele\": \"ziel\",\n  \"zielen\": \"ziel\",\n  \"zieles\": \"ziel\",\n  \"zielgewehren\": \"zielgewehr\",\n  \"ziell\": \"ziell\",\n  \"zielort\": \"zielort\",\n  \"ziels\": \"ziel\",\n  \"zielsicher\": \"zielsich\",\n  \"zielte\": \"zielt\",\n  \"ziemergerichte\": \"ziemergericht\",\n  \"ziemern\": \"ziem\",\n  \"ziemet\": \"ziemet\",\n  \"ziemlich\": \"ziemlich\",\n  \"ziemliche\": \"ziemlich\",\n  \"ziemt\": \"ziemt\",\n  \"ziemte\": \"ziemt\",\n  \"ziepziep\": \"ziepziep\",\n  \"zier\": \"zier\",\n  \"zierde\": \"zierd\",\n  \"zierden\": \"zierd\",\n  \"zieren\": \"zier\",\n  \"zierende\": \"zierend\",\n  \"ziererei\": \"ziererei\",\n  \"ziergewächs\": \"ziergewach\",\n  \"zierlich\": \"zierlich\",\n  \"zierliche\": \"zierlich\",\n  \"zierlichem\": \"zierlich\",\n  \"zierlichen\": \"zierlich\",\n  \"zierlicher\": \"zierlich\",\n  \"zierliches\": \"zierlich\",\n  \"zierlichkeit\": \"zierlich\",\n  \"zierlichste\": \"zierlich\",\n  \"zierte\": \"ziert\",\n  \"zierten\": \"ziert\",\n  \"ziervolles\": \"ziervoll\",\n  \"ziffer\": \"ziff\",\n  \"zifferblatt\": \"zifferblatt\",\n  \"ziffern\": \"ziff\",\n  \"zigarette\": \"zigarett\",\n  \"zigaretten\": \"zigarett\",\n  \"zigarettenasche\": \"zigarettenasch\",\n  \"zigarettendose\": \"zigarettendos\",\n  \"zigarettenschachtel\": \"zigarettenschachtel\",\n  \"zigarettenschachteln\": \"zigarettenschachteln\",\n  \"zigarre\": \"zigarr\",\n  \"zigarren\": \"zigarr\",\n  \"zigarrenbengel\": \"zigarrenbengel\",\n  \"zige\": \"zig\",\n  \"zigeunerbande\": \"zigeunerband\",\n  \"zillah\": \"zillah\",\n  \"zillen\": \"zill\",\n  \"zimbel\": \"zimbel\",\n  \"zimbeln\": \"zimbeln\",\n  \"zimmer\": \"zimm\",\n  \"zimmerdecke\": \"zimmerdeck\",\n  \"zimmergewehr\": \"zimmergewehr\",\n  \"zimmern\": \"zimm\",\n  \"zimmers\": \"zimm\",\n  \"zimmervermieterin\": \"zimmervermieterin\",\n  \"zimmet\": \"zimmet\",\n  \"zimmetbüchschen\": \"zimmetbuchsch\",\n  \"zimperlich\": \"zimp\",\n  \"zimperlichen\": \"zimp\",\n  \"zinn\": \"zinn\",\n  \"zinne\": \"zinn\",\n  \"zinnen\": \"zinn\",\n  \"zinnernen\": \"zinnern\",\n  \"zinnoberbergwerk\": \"zinnoberbergwerk\",\n  \"zinnoberroten\": \"zinnoberrot\",\n  \"zinsen\": \"zins\",\n  \"zion\": \"zion\",\n  \"zions\": \"zion\",\n  \"zipfel\": \"zipfel\",\n  \"zipfelhaube\": \"zipfelhaub\",\n  \"zipfelkappe\": \"zipfelkapp\",\n  \"zipfelkappen\": \"zipfelkapp\",\n  \"zipfelmütze\": \"zipfelmutz\",\n  \"zipfeln\": \"zipfeln\",\n  \"zippora\": \"zippora\",\n  \"zirka\": \"zirka\",\n  \"zirkel\": \"zirkel\",\n  \"zirkelte\": \"zirkelt\",\n  \"zirkuliert\": \"zirkuliert\",\n  \"zirkulierten\": \"zirkuliert\",\n  \"zirpedirp\": \"zirpedirp\",\n  \"zirpen\": \"zirp\",\n  \"zisch\": \"zisch\",\n  \"zischelndem\": \"zischelnd\",\n  \"zischen\": \"zisch\",\n  \"zischende\": \"zischend\",\n  \"zischlauten\": \"zischlaut\",\n  \"zischte\": \"zischt\",\n  \"zisterzienserpater\": \"zisterzienserpat\",\n  \"zitaten\": \"zitat\",\n  \"zither\": \"zith\",\n  \"zithern\": \"zith\",\n  \"zitherspiel\": \"zitherspiel\",\n  \"zitherspieler\": \"zitherspiel\",\n  \"zitherspielern\": \"zitherspiel\",\n  \"zitieren\": \"ziti\",\n  \"zitiert\": \"zitiert\",\n  \"zitronenschale\": \"zitronenschal\",\n  \"zittern\": \"zitt\",\n  \"zitternd\": \"zitternd\",\n  \"zitternde\": \"zitternd\",\n  \"zitternden\": \"zitternd\",\n  \"zittert\": \"zittert\",\n  \"zitterte\": \"zittert\",\n  \"zitterten\": \"zittert\",\n  \"zitty\": \"zitty\",\n  \"zivildienst\": \"zivildien\",\n  \"zivildienstleistende\": \"zivildienstleist\",\n  \"zivildienstleistenden\": \"zivildienstleist\",\n  \"zivildienstleistender\": \"zivildienstleist\",\n  \"zivildienststelle\": \"zivildienststell\",\n  \"zivildienststellen\": \"zivildienststell\",\n  \"zivildiensttreffpunkt\": \"zivildiensttreffpunkt\",\n  \"zivildienstzeit\": \"zivildienstzeit\",\n  \"zivilgesellschaft\": \"zivilgesellschaft\",\n  \"zivilpolizei\": \"zivilpolizei\",\n  \"zivilpolizist\": \"zivilpolizist\",\n  \"zivilpolizisten\": \"zivilpolizist\",\n  \"zivis\": \"zivis\",\n  \"zoba\": \"zoba\",\n  \"zochar\": \"zochar\",\n  \"zog\": \"zog\",\n  \"zöge\": \"zog\",\n  \"zogen\": \"zog\",\n  \"zögern\": \"zog\",\n  \"zögernd\": \"zogernd\",\n  \"zögerte\": \"zogert\",\n  \"zögerten\": \"zogert\",\n  \"zöglinge\": \"zogling\",\n  \"zöglingen\": \"zogling\",\n  \"zölibat\": \"zolibat\",\n  \"zollmass\": \"zollmass\",\n  \"zollstock\": \"zollstock\",\n  \"zoni\": \"zoni\",\n  \"zony\": \"zony\",\n  \"zoo\": \"zoo\",\n  \"zoodirektor\": \"zoodirektor\",\n  \"zoologen\": \"zoolog\",\n  \"zopf\": \"zopf\",\n  \"zöpfchen\": \"zopfch\",\n  \"zöpfe\": \"zopf\",\n  \"zorn\": \"zorn\",\n  \"zorne\": \"zorn\",\n  \"zornerregt\": \"zornerregt\",\n  \"zornes\": \"zorn\",\n  \"zornig\": \"zornig\",\n  \"zornigen\": \"zornig\",\n  \"zorniger\": \"zornig\",\n  \"zorns\": \"zorn\",\n  \"zottelig\": \"zottel\",\n  \"zotteln\": \"zotteln\",\n  \"zottelte\": \"zottelt\",\n  \"zruck\": \"zruck\",\n  \"zruckfahren\": \"zruckfahr\",\n  \"zu\": \"zu\",\n  \"zubereitet\": \"zubereitet\",\n  \"zubereitungen\": \"zubereit\",\n  \"zubrachte\": \"zubracht\",\n  \"zubringen\": \"zubring\",\n  \"zucht\": \"zucht\",\n  \"zuchthaus\": \"zuchthaus\",\n  \"zuchthauskost\": \"zuchthauskost\",\n  \"züchtig\": \"zuchtig\",\n  \"züchtigen\": \"zuchtig\",\n  \"züchtiger\": \"zuchtig\",\n  \"zuckbewegungen\": \"zuckbeweg\",\n  \"zuckenden\": \"zuckend\",\n  \"zucker\": \"zuck\",\n  \"zuckerbäcker\": \"zuckerback\",\n  \"zuckerbeck\": \"zuckerbeck\",\n  \"zuckerbrot\": \"zuckerbrot\",\n  \"zuckerbrücken\": \"zuckerbruck\",\n  \"zuckerguss\": \"zuckerguss\",\n  \"zuckerreste\": \"zuckerr\",\n  \"zuckerwasser\": \"zuckerwass\",\n  \"zuckerwerk\": \"zuckerwerk\",\n  \"zuckte\": \"zuckt\",\n  \"zuckten\": \"zuckt\",\n  \"zudem\": \"zud\",\n  \"zudringlich\": \"zudring\",\n  \"zudringlichen\": \"zudring\",\n  \"zudringlicher\": \"zudring\",\n  \"zudringlichkeiten\": \"zudring\",\n  \"zudringlichsten\": \"zudring\",\n  \"zueigne\": \"zueign\",\n  \"zueignen\": \"zueign\",\n  \"zueilte\": \"zueilt\",\n  \"zueilten\": \"zueilt\",\n  \"zueinander\": \"zueinand\",\n  \"zuerkannt\": \"zuerkannt\",\n  \"zuerst\": \"zuerst\",\n  \"zufall\": \"zufall\",\n  \"zufalle\": \"zufall\",\n  \"zufälle\": \"zufall\",\n  \"zufällig\": \"zufall\",\n  \"zufällige\": \"zufall\",\n  \"zufälligen\": \"zufall\",\n  \"zufälliger\": \"zufall\",\n  \"zufälligerweise\": \"zufalligerweis\",\n  \"zufälliges\": \"zufall\",\n  \"zufälligkeit\": \"zufall\",\n  \"zufalls\": \"zufall\",\n  \"zufliessen\": \"zufliess\",\n  \"zufließen\": \"zufliess\",\n  \"zuflucht\": \"zuflucht\",\n  \"zufluss\": \"zufluss\",\n  \"zufluß\": \"zufluss\",\n  \"zuflusses\": \"zufluss\",\n  \"zufolge\": \"zufolg\",\n  \"zufrieden\": \"zufried\",\n  \"zufriedenem\": \"zufried\",\n  \"zufriedener\": \"zufried\",\n  \"zufriedenheit\": \"zufried\",\n  \"zufriedenstellend\": \"zufriedenstell\",\n  \"zufüge\": \"zufug\",\n  \"zufügen\": \"zufug\",\n  \"zufügt\": \"zufugt\",\n  \"zuführen\": \"zufuhr\",\n  \"zuführt\": \"zufuhrt\",\n  \"zug\": \"zug\",\n  \"zugabe\": \"zugab\",\n  \"zugang\": \"zugang\",\n  \"zugäng\": \"zugang\",\n  \"zugangen\": \"zugang\",\n  \"zuge\": \"zug\",\n  \"züge\": \"zug\",\n  \"zugeben\": \"zugeb\",\n  \"zugebracht\": \"zugebracht\",\n  \"zugebundenen\": \"zugebund\",\n  \"zugedacht\": \"zugedacht\",\n  \"zugedachte\": \"zugedacht\",\n  \"zugedeckt\": \"zugedeckt\",\n  \"zugeeignet\": \"zugeeignet\",\n  \"zugefügt\": \"zugefugt\",\n  \"zugeführt\": \"zugefuhrt\",\n  \"zugegangen\": \"zugegang\",\n  \"zugegebenermassen\": \"zugegebenermass\",\n  \"zugegen\": \"zugeg\",\n  \"zugegriffen\": \"zugegriff\",\n  \"zugehen\": \"zugeh\",\n  \"zugehörige\": \"zugehor\",\n  \"zugehört\": \"zugehort\",\n  \"zugeklappt\": \"zugeklappt\",\n  \"zügel\": \"zugel\",\n  \"zugelassen\": \"zugelass\",\n  \"zügellosen\": \"zugellos\",\n  \"zügellosigkeit\": \"zugellos\",\n  \"zügelt\": \"zugelt\",\n  \"zugemutet\": \"zugemutet\",\n  \"zügen\": \"zug\",\n  \"zugeneigt\": \"zugeneigt\",\n  \"zugereist\": \"zugereist\",\n  \"zugerichtet\": \"zugerichtet\",\n  \"zugerufen\": \"zugeruf\",\n  \"zugesagt\": \"zugesagt\",\n  \"zugeschaut\": \"zugeschaut\",\n  \"zugeschlagen\": \"zugeschlag\",\n  \"zugeschneite\": \"zugeschneit\",\n  \"zugeschoben\": \"zugeschob\",\n  \"zugeschrieben\": \"zugeschrieb\",\n  \"zugeschrieen\": \"zugeschrie\",\n  \"zugesehen\": \"zugeseh\",\n  \"zugesprochen\": \"zugesproch\",\n  \"zugesprungen\": \"zugespr\",\n  \"zugestanden\": \"zugestand\",\n  \"zugestehen\": \"zugesteh\",\n  \"zugestimmt\": \"zugestimmt\",\n  \"zugestossen\": \"zugestoss\",\n  \"zugetan\": \"zugetan\",\n  \"zugetragen\": \"zugetrag\",\n  \"zugetraut\": \"zugetraut\",\n  \"zugewandt\": \"zugewandt\",\n  \"zugewandten\": \"zugewandt\",\n  \"zugewendet\": \"zugewendet\",\n  \"zugewendetes\": \"zugewendet\",\n  \"zugewiesene\": \"zugewies\",\n  \"zugeworfen\": \"zugeworf\",\n  \"zugezogen\": \"zugezog\",\n  \"zugibt\": \"zugibt\",\n  \"zuging\": \"zuging\",\n  \"zugingen\": \"zuging\",\n  \"zugleich\": \"zugleich\",\n  \"zugnetz\": \"zugnetz\",\n  \"zugreifen\": \"zugreif\",\n  \"zugriff\": \"zugriff\",\n  \"zugrunde\": \"zugrund\",\n  \"zugrundegehen\": \"zugrundegeh\",\n  \"zugrundeliegende\": \"zugrundelieg\",\n  \"zugschlagen\": \"zugschlag\",\n  \"zugunsten\": \"zugun\",\n  \"zugut\": \"zugut\",\n  \"zugute\": \"zugut\",\n  \"zuhälterin\": \"zuhalterin\",\n  \"zuhielt\": \"zuhielt\",\n  \"zuhilfenahme\": \"zuhilfenahm\",\n  \"zuhinterst\": \"zuhinterst\",\n  \"zuhören\": \"zuhor\",\n  \"zuhörer\": \"zuhor\",\n  \"zuhörerinnen\": \"zuhorerinn\",\n  \"zuhörers\": \"zuhor\",\n  \"zuhörte\": \"zuhort\",\n  \"zukam\": \"zukam\",\n  \"zukehrte\": \"zukehrt\",\n  \"zuknöpfte\": \"zuknopft\",\n  \"zukomme\": \"zukomm\",\n  \"zukommen\": \"zukomm\",\n  \"zukommt\": \"zukommt\",\n  \"zukunft\": \"zukunft\",\n  \"zukünftige\": \"zukunft\",\n  \"zukünftigen\": \"zukunft\",\n  \"zulächelt\": \"zulachelt\",\n  \"zulange\": \"zulang\",\n  \"zulangen\": \"zulang\",\n  \"zulänglichkeit\": \"zulang\",\n  \"zulangt\": \"zulangt\",\n  \"zulasse\": \"zulass\",\n  \"zulassen\": \"zulass\",\n  \"zulässigkeit\": \"zulass\",\n  \"zulässt\": \"zulasst\",\n  \"zuläßt\": \"zulasst\",\n  \"zulassung\": \"zulass\",\n  \"zulasten\": \"zulast\",\n  \"zulauf\": \"zulauf\",\n  \"zulegen\": \"zuleg\",\n  \"zuleid\": \"zuleid\",\n  \"zuleide\": \"zuleid\",\n  \"zuletzt\": \"zuletzt\",\n  \"zulief\": \"zulief\",\n  \"zum\": \"zum\",\n  \"zumachen\": \"zumach\",\n  \"zumal\": \"zumal\",\n  \"zumeist\": \"zumeist\",\n  \"zumessen\": \"zumess\",\n  \"zumindest\": \"zumind\",\n  \"zumut\": \"zumut\",\n  \"zumute\": \"zumut\",\n  \"zumuten\": \"zumut\",\n  \"zumutung\": \"zumut\",\n  \"zumutungen\": \"zumut\",\n  \"zunächst\": \"zunach\",\n  \"zunahm\": \"zunahm\",\n  \"zunahme\": \"zunahm\",\n  \"zunahmen\": \"zunahm\",\n  \"zünden\": \"zund\",\n  \"zündet\": \"zundet\",\n  \"zündete\": \"zundet\",\n  \"zündschnur\": \"zundschnur\",\n  \"zunehmen\": \"zunehm\",\n  \"zunehmend\": \"zunehm\",\n  \"zunehmende\": \"zunehm\",\n  \"zunehmenden\": \"zunehm\",\n  \"zunehmender\": \"zunehm\",\n  \"zuneigung\": \"zuneig\",\n  \"zunge\": \"zung\",\n  \"züngelten\": \"zungelt\",\n  \"zungen\": \"zung\",\n  \"zungenfertigkeit\": \"zungenfert\",\n  \"zungenspitze\": \"zungenspitz\",\n  \"zünglein\": \"zunglein\",\n  \"zunichte\": \"zunicht\",\n  \"zunimmt\": \"zunimmt\",\n  \"zuoberst\": \"zuoberst\",\n  \"zupfen\": \"zupf\",\n  \"zupfte\": \"zupft\",\n  \"zur\": \"zur\",\n  \"zürcher\": \"zurch\",\n  \"zurecht\": \"zurecht\",\n  \"zurechtfinden\": \"zurechtfind\",\n  \"zurechtgelegt\": \"zurechtgelegt\",\n  \"zurechtgerückt\": \"zurechtgeruckt\",\n  \"zurechtgesetzt\": \"zurechtgesetzt\",\n  \"zurechtgewiesen\": \"zurechtgewies\",\n  \"zurechtschneiderte\": \"zurechtschneidert\",\n  \"zurechtweisen\": \"zurechtweis\",\n  \"zurechtweisung\": \"zurechtweis\",\n  \"zurechtzufinden\": \"zurechtzufind\",\n  \"zurechtzulegen\": \"zurechtzuleg\",\n  \"zurechtzumachen\": \"zurechtzumach\",\n  \"zurede\": \"zured\",\n  \"zureden\": \"zured\",\n  \"zureichend\": \"zureich\",\n  \"zureichende\": \"zureich\",\n  \"zureichenden\": \"zureich\",\n  \"zürich\": \"zurich\",\n  \"zurichten\": \"zuricht\",\n  \"zurief\": \"zurief\",\n  \"zürne\": \"zurn\",\n  \"zürnen\": \"zurn\",\n  \"zürnet\": \"zurnet\",\n  \"zürnt\": \"zurnt\",\n  \"zurück\": \"zuruck\",\n  \"zurückbeziehen\": \"zuruckbezieh\",\n  \"zurückbleiben\": \"zuruckbleib\",\n  \"zurückbleibt\": \"zuruckbleibt\",\n  \"zurückblicken\": \"zuruckblick\",\n  \"zurückblieb\": \"zuruckblieb\",\n  \"zurückbogen\": \"zuruckbog\",\n  \"zurückbringe\": \"zuruckbring\",\n  \"zurückbringen\": \"zuruckbring\",\n  \"zurückdrängen\": \"zuruckdrang\",\n  \"zurückdrängt\": \"zuruckdrangt\",\n  \"zurückerhalten\": \"zuruckerhalt\",\n  \"zurückerstatten\": \"zuruckerstatt\",\n  \"zurückfällt\": \"zuruckfallt\",\n  \"zurückfliehen\": \"zuruckflieh\",\n  \"zurückfragen\": \"zuruckfrag\",\n  \"zurückfuhr\": \"zuruckfuhr\",\n  \"zurückführen\": \"zuruckfuhr\",\n  \"zurückführte\": \"zuruckfuhrt\",\n  \"zurückgeben\": \"zuruckgeb\",\n  \"zurückgeblieben\": \"zuruckgeblieb\",\n  \"zurückgebliebene\": \"zuruckgeblieb\",\n  \"zurückgebliebenen\": \"zuruckgeblieb\",\n  \"zurückgebracht\": \"zuruckgebracht\",\n  \"zurückgedrängt\": \"zuruckgedrangt\",\n  \"zurückgefallen\": \"zuruckgefall\",\n  \"zurückgeführt\": \"zuruckgefuhrt\",\n  \"zurückgeführte\": \"zuruckgefuhrt\",\n  \"zurückgefunden\": \"zuruckgefund\",\n  \"zurückgegangen\": \"zuruckgegang\",\n  \"zurückgegeben\": \"zuruckgegeb\",\n  \"zurückgehalten\": \"zuruckgehalt\",\n  \"zurückgehen\": \"zuruckgeh\",\n  \"zurückgehn\": \"zuruckgehn\",\n  \"zurückgekehrt\": \"zuruckgekehrt\",\n  \"zurückgekehrten\": \"zuruckgekehrt\",\n  \"zurückgekommen\": \"zuruckgekomm\",\n  \"zurückgelassen\": \"zuruckgelass\",\n  \"zurückgelegt\": \"zuruckgelegt\",\n  \"zurückgerufen\": \"zuruckgeruf\",\n  \"zurückgeschlagen\": \"zuruckgeschlag\",\n  \"zurückgeschlendert\": \"zuruckgeschlendert\",\n  \"zurückgeschwunden\": \"zuruckgeschwund\",\n  \"zurückgesetzt\": \"zuruckgesetzt\",\n  \"zurückgestellt\": \"zuruckgestellt\",\n  \"zurückgestossen\": \"zuruckgestoss\",\n  \"zurückgestoßen\": \"zuruckgestoss\",\n  \"zurückgetreten\": \"zuruckgetret\",\n  \"zurückgewichen\": \"zuruckgewich\",\n  \"zurückgewiesen\": \"zuruckgewies\",\n  \"zurückgewinkt\": \"zuruckgewinkt\",\n  \"zurückging\": \"zuruckging\",\n  \"zurückhalte\": \"zuruckhalt\",\n  \"zurückhalten\": \"zuruckhalt\",\n  \"zurückhaltend\": \"zuruckhalt\",\n  \"zurückhaltender\": \"zuruckhalt\",\n  \"zurückhältst\": \"zuruckhalt\",\n  \"zurückhaltung\": \"zuruckhalt\",\n  \"zurückkam\": \"zuruckkam\",\n  \"zurückkamen\": \"zuruckkam\",\n  \"zurückkehren\": \"zuruckkehr\",\n  \"zurückkehrst\": \"zuruckkehrst\",\n  \"zurückkehrte\": \"zuruckkehrt\",\n  \"zurückkehrten\": \"zuruckkehrt\",\n  \"zurückkommen\": \"zuruckkomm\",\n  \"zurücklassen\": \"zurucklass\",\n  \"zurückliessen\": \"zuruckliess\",\n  \"zurückreichten\": \"zuruckreicht\",\n  \"zurückschaudert\": \"zuruckschaudert\",\n  \"zurückschieben\": \"zuruckschieb\",\n  \"zurücksehen\": \"zuruckseh\",\n  \"zurücksehnte\": \"zurucksehnt\",\n  \"zurücksprang\": \"zurucksprang\",\n  \"zurückstehende\": \"zurucksteh\",\n  \"zurücksteht\": \"zurucksteht\",\n  \"zurückstossen\": \"zuruckstoss\",\n  \"zurückstoßen\": \"zuruckstoss\",\n  \"zurückstrahlte\": \"zuruckstrahlt\",\n  \"zurückströmte\": \"zuruckstromt\",\n  \"zurücktreten\": \"zurucktret\",\n  \"zurücktritt\": \"zurucktritt\",\n  \"zurückwandte\": \"zuruckwandt\",\n  \"zurückwarf\": \"zuruckwarf\",\n  \"zurückweichen\": \"zuruckweich\",\n  \"zurückweichens\": \"zuruckweich\",\n  \"zurückwenden\": \"zuruckw\",\n  \"zurückwendend\": \"zuruckwend\",\n  \"zurückziehen\": \"zuruckzieh\",\n  \"zurückzog\": \"zuruckzog\",\n  \"zurückzubringen\": \"zuruckzubring\",\n  \"zurückzuerobern\": \"zuruckzuerob\",\n  \"zurückzuführen\": \"zuruckzufuhr\",\n  \"zurückzugeben\": \"zuruckzugeb\",\n  \"zurückzuhalten\": \"zuruckzuhalt\",\n  \"zurückzukehren\": \"zuruckzukehr\",\n  \"zurückzukommen\": \"zuruckzukomm\",\n  \"zurückzureisen\": \"zuruckzureis\",\n  \"zurückzuziehen\": \"zuruckzuzieh\",\n  \"zuruf\": \"zuruf\",\n  \"zurufe\": \"zuruf\",\n  \"zurufen\": \"zuruf\",\n  \"züs\": \"zus\",\n  \"zusag\": \"zusag\",\n  \"zusagen\": \"zusag\",\n  \"zusagt\": \"zusagt\",\n  \"zusagte\": \"zusagt\",\n  \"zusah\": \"zusah\",\n  \"zusahen\": \"zusah\",\n  \"zusammen\": \"zusamm\",\n  \"zusammenarbeit\": \"zusammenarbeit\",\n  \"zusammenbrachte\": \"zusammenbracht\",\n  \"zusammenbringen\": \"zusammenbring\",\n  \"zusammenfassten\": \"zusammenfasst\",\n  \"zusammenfaßten\": \"zusammenfasst\",\n  \"zusammenfassung\": \"zusammenfass\",\n  \"zusammenfiel\": \"zusammenfiel\",\n  \"zusammenfügen\": \"zusammenfug\",\n  \"zusammenfügte\": \"zusammenfugt\",\n  \"zusammengeballt\": \"zusammengeballt\",\n  \"zusammengeballtes\": \"zusammengeballt\",\n  \"zusammengeben\": \"zusammengeb\",\n  \"zusammengebracht\": \"zusammengebracht\",\n  \"zusammengebunden\": \"zusammengebund\",\n  \"zusammengebundene\": \"zusammengebund\",\n  \"zusammengedichtete\": \"zusammengedichtet\",\n  \"zusammengedrängt\": \"zusammengedrangt\",\n  \"zusammengefalteten\": \"zusammengefaltet\",\n  \"zusammengefasst\": \"zusammengefasst\",\n  \"zusammengefügt\": \"zusammengefugt\",\n  \"zusammengehalten\": \"zusammengehalt\",\n  \"zusammengekehrt\": \"zusammengekehrt\",\n  \"zusammengeknöpften\": \"zusammengeknopft\",\n  \"zusammengelebt\": \"zusammengelebt\",\n  \"zusammengenommen\": \"zusammengenomm\",\n  \"zusammengepasst\": \"zusammengepasst\",\n  \"zusammengepaßt\": \"zusammengepasst\",\n  \"zusammengerollt\": \"zusammengerollt\",\n  \"zusammengerollter\": \"zusammengerollt\",\n  \"zusammengeschrumpft\": \"zusammengeschrumpft\",\n  \"zusammengesetzt\": \"zusammengesetzt\",\n  \"zusammengesetzte\": \"zusammengesetzt\",\n  \"zusammengesetzten\": \"zusammengesetzt\",\n  \"zusammengestellt\": \"zusammengestellt\",\n  \"zusammengeströmt\": \"zusammengestromt\",\n  \"zusammengesucht\": \"zusammengesucht\",\n  \"zusammengetan\": \"zusammengetan\",\n  \"zusammengetragen\": \"zusammengetrag\",\n  \"zusammengewürfelten\": \"zusammengewurfelt\",\n  \"zusammengezogen\": \"zusammengezog\",\n  \"zusammengezogenen\": \"zusammengezog\",\n  \"zusammenhalten\": \"zusammenhalt\",\n  \"zusammenhang\": \"zusammenhang\",\n  \"zusammenhängend\": \"zusammenhang\",\n  \"zusammenhängende\": \"zusammenhang\",\n  \"zusammenhängenden\": \"zusammenhang\",\n  \"zusammenhanges\": \"zusammenhang\",\n  \"zusammenhangs\": \"zusammenhang\",\n  \"zusammenhängt\": \"zusammenhangt\",\n  \"zusammenhielt\": \"zusammenhielt\",\n  \"zusammenhing\": \"zusammenhing\",\n  \"zusammenhingen\": \"zusammenhing\",\n  \"zusammenkaufte\": \"zusammenkauft\",\n  \"zusammenknüllte\": \"zusammenknullt\",\n  \"zusammenkommen\": \"zusammenkomm\",\n  \"zusammenkommens\": \"zusammenkomm\",\n  \"zusammenkunft\": \"zusammenkunft\",\n  \"zusammenleben\": \"zusammenleb\",\n  \"zusammenleimte\": \"zusammenleimt\",\n  \"zusammenliefen\": \"zusammenlief\",\n  \"zusammennähen\": \"zusammennah\",\n  \"zusammennahm\": \"zusammennahm\",\n  \"zusammennähten\": \"zusammennaht\",\n  \"zusammennehme\": \"zusammennehm\",\n  \"zusammennehmen\": \"zusammennehm\",\n  \"zusammennehmend\": \"zusammennehm\",\n  \"zusammenpasse\": \"zusammenpass\",\n  \"zusammenreimt\": \"zusammenreimt\",\n  \"zusammenschlagen\": \"zusammenschlag\",\n  \"zusammenschmelzt\": \"zusammenschmelzt\",\n  \"zusammenschrumpften\": \"zusammenschrumpft\",\n  \"zusammensein\": \"zusammensein\",\n  \"zusammenseins\": \"zusammensein\",\n  \"zusammensetzen\": \"zusammensetz\",\n  \"zusammensetzten\": \"zusammensetzt\",\n  \"zusammensetzung\": \"zusammensetz\",\n  \"zusammenspeisen\": \"zusammenspeis\",\n  \"zusammenspeisungen\": \"zusammenspeis\",\n  \"zusammensteckte\": \"zusammensteckt\",\n  \"zusammenstellte\": \"zusammenstellt\",\n  \"zusammenstellung\": \"zusammenstell\",\n  \"zusammenstiessen\": \"zusammenstiess\",\n  \"zusammenstimmen\": \"zusammenstimm\",\n  \"zusammenstimmt\": \"zusammenstimmt\",\n  \"zusammenstimmte\": \"zusammenstimmt\",\n  \"zusammenstimmung\": \"zusammenstimm\",\n  \"zusammenstoppeln\": \"zusammenstoppeln\",\n  \"zusammenstoppelt\": \"zusammenstoppelt\",\n  \"zusammenstoss\": \"zusammenstoss\",\n  \"zusammenstoß\": \"zusammenstoss\",\n  \"zusammenstösst\": \"zusammenstosst\",\n  \"zusammenstößt\": \"zusammenstosst\",\n  \"zusammenströmen\": \"zusammenstrom\",\n  \"zusammensuchend\": \"zusammensuch\",\n  \"zusammentrafen\": \"zusammentraf\",\n  \"zusammentreffen\": \"zusammentreff\",\n  \"zusammenwirken\": \"zusammenwirk\",\n  \"zusammenwohnen\": \"zusammenwohn\",\n  \"zusammenzählte\": \"zusammenzahlt\",\n  \"zusammenziehen\": \"zusammenzieh\",\n  \"zusammenzieht\": \"zusammenzieht\",\n  \"zusammenzog\": \"zusammenzog\",\n  \"zusammenzogen\": \"zusammenzog\",\n  \"zusammenzu\": \"zusammenzu\",\n  \"zusammenzubringen\": \"zusammenzubring\",\n  \"zusammenzuckte\": \"zusammenzuckt\",\n  \"zusammenzuhalten\": \"zusammenzuhalt\",\n  \"zusammenzuraffen\": \"zusammenzuraff\",\n  \"zusammenzustellen\": \"zusammenzustell\",\n  \"zusammenzutreffen\": \"zusammenzutreff\",\n  \"zuschanden\": \"zuschand\",\n  \"zuschauer\": \"zuschau\",\n  \"zuschauern\": \"zuschau\",\n  \"zuschauers\": \"zuschau\",\n  \"zuschaute\": \"zuschaut\",\n  \"zuschauten\": \"zuschaut\",\n  \"zuschlagen\": \"zuschlag\",\n  \"zuschloss\": \"zuschloss\",\n  \"zuschnitt\": \"zuschnitt\",\n  \"zuschnüren\": \"zuschnur\",\n  \"zuschreiben\": \"zuschreib\",\n  \"zuschreibt\": \"zuschreibt\",\n  \"zuschrieben\": \"zuschrieb\",\n  \"zuschritt\": \"zuschritt\",\n  \"zuschulden\": \"zuschuld\",\n  \"zuschüsse\": \"zuschuss\",\n  \"zusehen\": \"zuseh\",\n  \"zusehends\": \"zuseh\",\n  \"zusendung\": \"zusend\",\n  \"züsens\": \"zus\",\n  \"zusetzen\": \"zusetz\",\n  \"zusetzt\": \"zusetzt\",\n  \"züsi\": \"zusi\",\n  \"züsis\": \"zusis\",\n  \"zuspätkommens\": \"zuspatkomm\",\n  \"zusprangen\": \"zusprang\",\n  \"zustand\": \"zustand\",\n  \"zustande\": \"zustand\",\n  \"zustände\": \"zustand\",\n  \"zuständen\": \"zustand\",\n  \"zustandes\": \"zustand\",\n  \"zuständig\": \"zustand\",\n  \"zustands\": \"zustand\",\n  \"zustandsveränderung\": \"zustandsverander\",\n  \"zustandsveränderungen\": \"zustandsverander\",\n  \"zustandswechsel\": \"zustandswechsel\",\n  \"zustatten\": \"zustatt\",\n  \"zusteht\": \"zusteht\",\n  \"zustimme\": \"zustimm\",\n  \"zustimmt\": \"zustimmt\",\n  \"zustimmung\": \"zustimm\",\n  \"zustürzte\": \"zusturzt\",\n  \"zutage\": \"zutag\",\n  \"zutageförderung\": \"zutageforder\",\n  \"zutat\": \"zutat\",\n  \"zuteil\": \"zuteil\",\n  \"zutragen\": \"zutrag\",\n  \"zutragend\": \"zutrag\",\n  \"zuträgern\": \"zutrag\",\n  \"zuträglich\": \"zutrag\",\n  \"zuträgliche\": \"zutrag\",\n  \"zuträglichkeit\": \"zutrag\",\n  \"zuträgt\": \"zutragt\",\n  \"zutrat\": \"zutrat\",\n  \"zutrauen\": \"zutrau\",\n  \"zutraulich\": \"zutraulich\",\n  \"zutraulicher\": \"zutraulich\",\n  \"zutreffen\": \"zutreff\",\n  \"zutreffend\": \"zutreff\",\n  \"zutreffende\": \"zutreff\",\n  \"zutrifft\": \"zutrifft\",\n  \"zutrug\": \"zutrug\",\n  \"zutulich\": \"zutulich\",\n  \"zutulicher\": \"zutulich\",\n  \"zutulichkeit\": \"zutulich\",\n  \"zutütchen\": \"zututch\",\n  \"zuunterst\": \"zuunterst\",\n  \"zuverlässig\": \"zuverlass\",\n  \"zuverlässigen\": \"zuverlass\",\n  \"zuverlässiger\": \"zuverlass\",\n  \"zuversicht\": \"zuversicht\",\n  \"zuversichtlich\": \"zuversicht\",\n  \"zuviel\": \"zuviel\",\n  \"zuvor\": \"zuvor\",\n  \"zuvörderst\": \"zuvorderst\",\n  \"zuvorkommend\": \"zuvorkomm\",\n  \"zuvorzutun\": \"zuvorzutun\",\n  \"zuwachs\": \"zuwach\",\n  \"zuwachses\": \"zuwachs\",\n  \"zuwandte\": \"zuwandt\",\n  \"zuwarf\": \"zuwarf\",\n  \"zuweg\": \"zuweg\",\n  \"zuwege\": \"zuweg\",\n  \"zuweilen\": \"zuweil\",\n  \"zuwenden\": \"zuwend\",\n  \"zuwendend\": \"zuwend\",\n  \"zuwendet\": \"zuwendet\",\n  \"zuwendeten\": \"zuwendet\",\n  \"zuwider\": \"zuwid\",\n  \"zuwinken\": \"zuwink\",\n  \"zuwinkte\": \"zuwinkt\",\n  \"zuwinkten\": \"zuwinkt\",\n  \"zuzeiten\": \"zuzeit\",\n  \"zuziehen\": \"zuzieh\",\n  \"zuzog\": \"zuzog\",\n  \"zuzogen\": \"zuzog\",\n  \"zuzuflüstern\": \"zuzuflust\",\n  \"zuzufügen\": \"zuzufug\",\n  \"zuzug\": \"zuzug\",\n  \"zuzüge\": \"zuzug\",\n  \"zuzügerwesen\": \"zuzugerwes\",\n  \"zuzuhören\": \"zuzuhor\",\n  \"zuzunehmen\": \"zuzunehm\",\n  \"zuzureden\": \"zuzured\",\n  \"zuzurichten\": \"zuzuricht\",\n  \"zuzuschauen\": \"zuzuschau\",\n  \"zuzuschlagen\": \"zuzuschlag\",\n  \"zuzusehen\": \"zuzuseh\",\n  \"zuzustutzen\": \"zuzustutz\",\n  \"zuzuwenden\": \"zuzuw\",\n  \"zwa\": \"zwa\",\n  \"zwackt\": \"zwackt\",\n  \"zwang\": \"zwang\",\n  \"zwange\": \"zwang\",\n  \"zwangen\": \"zwang\",\n  \"zwanges\": \"zwang\",\n  \"zwangslage\": \"zwangslag\",\n  \"zwangsläufig\": \"zwangslauf\",\n  \"zwanzig\": \"zwanzig\",\n  \"zwanzigjährigen\": \"zwanzigjahr\",\n  \"zwanzigjähriger\": \"zwanzigjahr\",\n  \"zwanzigmal\": \"zwanzigmal\",\n  \"zwar\": \"zwar\",\n  \"zweck\": \"zweck\",\n  \"zweckdienliche\": \"zweckdi\",\n  \"zwecke\": \"zweck\",\n  \"zwecken\": \"zweck\",\n  \"zweckentfremdete\": \"zweckentfremdet\",\n  \"zweckes\": \"zweck\",\n  \"zwecklos\": \"zwecklos\",\n  \"zwecklose\": \"zwecklos\",\n  \"zweckmässig\": \"zweckmass\",\n  \"zweckmäßig\": \"zweckmass\",\n  \"zweckmässigen\": \"zweckmass\",\n  \"zweckmässiger\": \"zweckmass\",\n  \"zweckmäßiger\": \"zweckmass\",\n  \"zweckmässiges\": \"zweckmass\",\n  \"zweckmässigkeit\": \"zweckmass\",\n  \"zwecks\": \"zweck\",\n  \"zweckwidrig\": \"zweckwidr\",\n  \"zwei\": \"zwei\",\n  \"zweideutig\": \"zweideut\",\n  \"zweideutige\": \"zweideut\",\n  \"zweideutiger\": \"zweideut\",\n  \"zweideutigkeit\": \"zweideut\",\n  \"zweien\": \"zweien\",\n  \"zweier\": \"zweier\",\n  \"zweierlei\": \"zweierlei\",\n  \"zweifel\": \"zweifel\",\n  \"zweifelhaft\": \"zweifelhaft\",\n  \"zweifelhafter\": \"zweifelhaft\",\n  \"zweifellehre\": \"zweifellehr\",\n  \"zweifellos\": \"zweifellos\",\n  \"zweifeln\": \"zweifeln\",\n  \"zweifelsfreien\": \"zweifelsfrei\",\n  \"zweifelsohne\": \"zweifelsohn\",\n  \"zweifelten\": \"zweifelt\",\n  \"zweifelvollen\": \"zweifelvoll\",\n  \"zweifenstriges\": \"zweifenstr\",\n  \"zweifler\": \"zweifl\",\n  \"zweig\": \"zweig\",\n  \"zweigchen\": \"zweigch\",\n  \"zweige\": \"zweig\",\n  \"zweigen\": \"zweig\",\n  \"zweiges\": \"zweig\",\n  \"zweiglein\": \"zweiglein\",\n  \"zweihändigen\": \"zweihand\",\n  \"zweihundert\": \"zweihundert\",\n  \"zweihundertachtundfünfzig\": \"zweihundertachtundfunfz\",\n  \"zweijährigen\": \"zweijahr\",\n  \"zweikampf\": \"zweikampf\",\n  \"zweimal\": \"zweimal\",\n  \"zweimonatszeitschrift\": \"zweimonatszeitschrift\",\n  \"zweischneidiges\": \"zweischneid\",\n  \"zweispännigen\": \"zweispann\",\n  \"zweispra\": \"zweispra\",\n  \"zweit\": \"zweit\",\n  \"zweitägige\": \"zweitag\",\n  \"zweitausend\": \"zweitaus\",\n  \"zweite\": \"zweit\",\n  \"zweitem\": \"zweit\",\n  \"zweiten\": \"zweit\",\n  \"zweitenmal\": \"zweitenmal\",\n  \"zweitens\": \"zweit\",\n  \"zweiter\": \"zweit\",\n  \"zweites\": \"zweit\",\n  \"zweithöchsten\": \"zweithoch\",\n  \"zweiundachtzig\": \"zweiundachtz\",\n  \"zweiunddreissig\": \"zweiunddreiss\",\n  \"zweiundfünfzig\": \"zweiundfunfz\",\n  \"zweiundsechzig\": \"zweiundsechz\",\n  \"zweiundvierzig\": \"zweiundvierz\",\n  \"zweiundzwanzig\": \"zweiundzwanz\",\n  \"zwerge\": \"zwerg\",\n  \"zwergfinken\": \"zwergfink\",\n  \"zwickten\": \"zwickt\",\n  \"zwieback\": \"zwieback\",\n  \"zwiegespräch\": \"zwiegesprach\",\n  \"zwiegsang\": \"zwiegsang\",\n  \"zwiespalt\": \"zwiespalt\",\n  \"zwiespaltes\": \"zwiespalt\",\n  \"zwiesprache\": \"zwiesprach\",\n  \"zwillich\": \"zwillich\",\n  \"zwillingsmilchflasche\": \"zwillingsmilchflasch\",\n  \"zwingen\": \"zwing\",\n  \"zwingend\": \"zwingend\",\n  \"zwinger\": \"zwing\",\n  \"zwingt\": \"zwingt\",\n  \"zwinkert\": \"zwinkert\",\n  \"zwinkerte\": \"zwinkert\",\n  \"zwirchkammer\": \"zwirchkamm\",\n  \"zwirn\": \"zwirn\",\n  \"zwirnfabrik\": \"zwirnfabr\",\n  \"zwischen\": \"zwisch\",\n  \"zwischendurch\": \"zwischendurch\",\n  \"zwischenräumen\": \"zwischenraum\",\n  \"zwischenzeitlich\": \"zwischenzeit\",\n  \"zwitschermusik\": \"zwitschermus\",\n  \"zwitschern\": \"zwitsch\",\n  \"zwitschernd\": \"zwitschernd\",\n  \"zwitscherte\": \"zwitschert\",\n  \"zwoa\": \"zwoa\",\n  \"zwölf\": \"zwolf\",\n  \"zwölferstangen\": \"zwolferstang\",\n  \"zwölfhundert\": \"zwolfhundert\",\n  \"zwölfjährigen\": \"zwolfjahr\",\n  \"zwölfmal\": \"zwolfmal\",\n  \"zwölfte\": \"zwolft\",\n  \"zwungen\": \"zwung\",\n  \"zylinder\": \"zylind\",\n  \"zylinderhut\": \"zylinderhut\",\n  \"zylinderhüte\": \"zylinderhut\",\n  \"zylinderhüten\": \"zylinderhut\",\n  \"zyniker\": \"zynik\",\n  \"zynischen\": \"zynisch\",\n  \"zyperns\": \"zypern\",\n  \"zypressen\": \"zypress\"\n}"
  },
  {
    "path": "spec/test_data/snowball_es.json",
    "content": "{\n  \"a\": \"a\",\n  \"aarón\": \"aaron\",\n  \"abaco\": \"abac\",\n  \"abajo\": \"abaj\",\n  \"abandera\": \"abander\",\n  \"abandona\": \"abandon\",\n  \"abandonada\": \"abandon\",\n  \"abandonadas\": \"abandon\",\n  \"abandonado\": \"abandon\",\n  \"abandonados\": \"abandon\",\n  \"abandonamos\": \"abandon\",\n  \"abandonan\": \"abandon\",\n  \"abandonar\": \"abandon\",\n  \"abandonarlo\": \"abandon\",\n  \"abandonaron\": \"abandon\",\n  \"abandono\": \"abandon\",\n  \"abandonó\": \"abandon\",\n  \"abaratar\": \"abarat\",\n  \"abarca\": \"abarc\",\n  \"abarcamos\": \"abarc\",\n  \"abarcan\": \"abarc\",\n  \"abarcar\": \"abarc\",\n  \"abarcará\": \"abarc\",\n  \"abarcarán\": \"abarc\",\n  \"abarcaría\": \"abarc\",\n  \"abarcó\": \"abarc\",\n  \"abaroa\": \"abaro\",\n  \"abarroteros\": \"abarroter\",\n  \"abarrotó\": \"abarrot\",\n  \"abastece\": \"abastec\",\n  \"abastecedora\": \"abastecedor\",\n  \"abastecer\": \"abastec\",\n  \"abastecimiento\": \"abastec\",\n  \"abastecimientos\": \"abastec\",\n  \"abasto\": \"abast\",\n  \"abatares\": \"abatar\",\n  \"abatida\": \"abat\",\n  \"abatido\": \"abat\",\n  \"abatidos\": \"abat\",\n  \"abatimiento\": \"abat\",\n  \"abatió\": \"abat\",\n  \"abatir\": \"abat\",\n  \"abatirnos\": \"abat\",\n  \"abatirse\": \"abat\",\n  \"abba\": \"abba\",\n  \"abbud\": \"abbud\",\n  \"abc\": \"abc\",\n  \"abdicación\": \"abdic\",\n  \"abdicar\": \"abdic\",\n  \"abeba\": \"abeb\",\n  \"abedrop\": \"abedrop\",\n  \"abel\": \"abel\",\n  \"abelardo\": \"abelard\",\n  \"aberración\": \"aberr\",\n  \"aberrante\": \"aberr\",\n  \"abidjan\": \"abidj\",\n  \"abiel\": \"abiel\",\n  \"abierta\": \"abiert\",\n  \"abiertamente\": \"abiert\",\n  \"abiertas\": \"abiert\",\n  \"abierto\": \"abiert\",\n  \"abiertos\": \"abiert\",\n  \"abigeo\": \"abige\",\n  \"abimael\": \"abimael\",\n  \"abióticos\": \"abiot\",\n  \"abismo\": \"abism\",\n  \"ablandar\": \"abland\",\n  \"ablandó\": \"abland\",\n  \"abluciones\": \"ablucion\",\n  \"abnegación\": \"abneg\",\n  \"aboagay\": \"aboagay\",\n  \"abocó\": \"aboc\",\n  \"abogada\": \"abog\",\n  \"abogadas\": \"abog\",\n  \"abogadete\": \"abogadet\",\n  \"abogadillo\": \"abogadill\",\n  \"abogado\": \"abog\",\n  \"abogados\": \"abog\",\n  \"abolición\": \"abolicion\",\n  \"abolirá\": \"abol\",\n  \"abominan\": \"abomin\",\n  \"abono\": \"abon\",\n  \"abonos\": \"abon\",\n  \"aborda\": \"abord\",\n  \"abordaban\": \"abord\",\n  \"abordada\": \"abord\",\n  \"abordadas\": \"abord\",\n  \"abordan\": \"abord\",\n  \"abordando\": \"abord\",\n  \"abordar\": \"abord\",\n  \"abordará\": \"abord\",\n  \"abordarán\": \"abord\",\n  \"abordaron\": \"abord\",\n  \"aborde\": \"abord\",\n  \"abordo\": \"abord\",\n  \"abordó\": \"abord\",\n  \"abortados\": \"abort\",\n  \"abortiva\": \"abort\",\n  \"aborto\": \"abort\",\n  \"abortos\": \"abort\",\n  \"abra\": \"abra\",\n  \"abraham\": \"abraham\",\n  \"abrasivo\": \"abras\",\n  \"abrazarlo\": \"abraz\",\n  \"abrazarse\": \"abraz\",\n  \"abrazo\": \"abraz\",\n  \"abre\": \"abre\",\n  \"abrego\": \"abreg\",\n  \"abren\": \"abren\",\n  \"abreu\": \"abreu\",\n  \"abreviar\": \"abrevi\",\n  \"abrían\": \"abri\",\n  \"abridor\": \"abridor\",\n  \"abriendo\": \"abriend\",\n  \"abrieron\": \"abrieron\",\n  \"abrigan\": \"abrig\",\n  \"abrigo\": \"abrig\",\n  \"abrigos\": \"abrig\",\n  \"abril\": \"abril\",\n  \"abriles\": \"abril\",\n  \"abrio\": \"abri\",\n  \"abrió\": \"abri\",\n  \"abrir\": \"abrir\",\n  \"abrira\": \"abrir\",\n  \"abrirá\": \"abrir\",\n  \"abrirán\": \"abriran\",\n  \"abriría\": \"abrir\",\n  \"abrirla\": \"abrirl\",\n  \"abrirlos\": \"abrirl\",\n  \"abrirnos\": \"abrirn\",\n  \"abrirse\": \"abrirs\",\n  \"abrogación\": \"abrog\",\n  \"abrogados\": \"abrog\",\n  \"abrogar\": \"abrog\",\n  \"abrupto\": \"abrupt\",\n  \"abs\": \"abs\",\n  \"absoletas\": \"absolet\",\n  \"absoluta\": \"absolut\",\n  \"absolutamente\": \"absolut\",\n  \"absoluto\": \"absolut\",\n  \"absolutoria\": \"absolutori\",\n  \"absolvió\": \"absolv\",\n  \"absorba\": \"absorb\",\n  \"absorber\": \"absorb\",\n  \"absorbiendo\": \"absorb\",\n  \"absorver\": \"absorv\",\n  \"abstencionismo\": \"abstencion\",\n  \"abstendrá\": \"abstendr\",\n  \"abstenga\": \"absteng\",\n  \"abstengan\": \"absteng\",\n  \"abstenido\": \"absten\",\n  \"abstracción\": \"abstraccion\",\n  \"abstracta\": \"abstract\",\n  \"abstractos\": \"abstract\",\n  \"abstuviera\": \"abstuv\",\n  \"absuelto\": \"absuelt\",\n  \"absurdas\": \"absurd\",\n  \"absurdo\": \"absurd\",\n  \"abucheado\": \"abuch\",\n  \"abuchear\": \"abuch\",\n  \"abuchearon\": \"abuch\",\n  \"abucheo\": \"abuche\",\n  \"abucheos\": \"abuche\",\n  \"abuela\": \"abuel\",\n  \"abuelas\": \"abuel\",\n  \"abuelita\": \"abuelit\",\n  \"abuelitas\": \"abuelit\",\n  \"abuelito\": \"abuelit\",\n  \"abuelitos\": \"abuelit\",\n  \"abuelo\": \"abuel\",\n  \"abuelos\": \"abuel\",\n  \"abultar\": \"abult\",\n  \"abunda\": \"abund\",\n  \"abundan\": \"abund\",\n  \"abundancia\": \"abund\",\n  \"abundante\": \"abund\",\n  \"abundantes\": \"abund\",\n  \"abundar\": \"abund\",\n  \"abundaron\": \"abund\",\n  \"abundó\": \"abund\",\n  \"abur\": \"abur\",\n  \"aburridas\": \"aburr\",\n  \"abuso\": \"abus\",\n  \"abusos\": \"abus\",\n  \"acá\": \"aca\",\n  \"acaba\": \"acab\",\n  \"acababa\": \"acab\",\n  \"acabado\": \"acab\",\n  \"acabados\": \"acab\",\n  \"acabamos\": \"acab\",\n  \"acaban\": \"acab\",\n  \"acabando\": \"acab\",\n  \"acabar\": \"acab\",\n  \"acabará\": \"acab\",\n  \"acabaría\": \"acab\",\n  \"acabaron\": \"acab\",\n  \"acabe\": \"acab\",\n  \"acabo\": \"acab\",\n  \"acabó\": \"acab\",\n  \"academia\": \"academi\",\n  \"académica\": \"academ\",\n  \"académicamente\": \"academ\",\n  \"académicas\": \"academ\",\n  \"académico\": \"academ\",\n  \"académicos\": \"academ\",\n  \"academik\": \"academik\",\n  \"academy\": \"academy\",\n  \"acaeció\": \"acaec\",\n  \"acallando\": \"acall\",\n  \"acallar\": \"acall\",\n  \"acámbaro\": \"acambar\",\n  \"acampar\": \"acamp\",\n  \"acapara\": \"acap\",\n  \"acaparado\": \"acapar\",\n  \"acaparadores\": \"acapar\",\n  \"acaparar\": \"acapar\",\n  \"acaparó\": \"acapar\",\n  \"acapulco\": \"acapulc\",\n  \"acariciarte\": \"acariciart\",\n  \"acarreado\": \"acarr\",\n  \"acarreadores\": \"acarr\",\n  \"acarreados\": \"acarr\",\n  \"acarrear\": \"acarr\",\n  \"acaso\": \"acas\",\n  \"acatar\": \"acat\",\n  \"acataré\": \"acat\",\n  \"acatarlas\": \"acat\",\n  \"acaten\": \"acat\",\n  \"acaudaladas\": \"acaudal\",\n  \"accedan\": \"acced\",\n  \"accede\": \"acced\",\n  \"acceder\": \"acced\",\n  \"accederán\": \"acced\",\n  \"accedido\": \"acced\",\n  \"accedieron\": \"acced\",\n  \"accesará\": \"acces\",\n  \"accesible\": \"acces\",\n  \"accesibles\": \"acces\",\n  \"acceso\": \"acces\",\n  \"accesorio\": \"accesori\",\n  \"accesorios\": \"accesori\",\n  \"accesos\": \"acces\",\n  \"accidentado\": \"accident\",\n  \"accidentados\": \"accident\",\n  \"accidental\": \"accidental\",\n  \"accidentarnos\": \"accident\",\n  \"accidente\": \"accident\",\n  \"accidentes\": \"accident\",\n  \"accion\": \"accion\",\n  \"acción\": \"accion\",\n  \"accionar\": \"accion\",\n  \"accionaria\": \"accionari\",\n  \"accionarias\": \"accionari\",\n  \"accionario\": \"accionari\",\n  \"accione\": \"accion\",\n  \"acciones\": \"accion\",\n  \"accionista\": \"accion\",\n  \"accionistas\": \"accion\",\n  \"accival\": \"accival\",\n  \"accra\": \"accra\",\n  \"aceite\": \"aceit\",\n  \"aceites\": \"aceit\",\n  \"aceleradas\": \"aceler\",\n  \"acelerado\": \"aceler\",\n  \"acelerar\": \"aceler\",\n  \"acelerara\": \"aceler\",\n  \"acelerará\": \"aceler\",\n  \"acelerarse\": \"aceler\",\n  \"aceleró\": \"aceler\",\n  \"acendrada\": \"acendr\",\n  \"acentuada\": \"acentu\",\n  \"acentuadas\": \"acentu\",\n  \"acentuar\": \"acentu\",\n  \"acentuó\": \"acentu\",\n  \"acepta\": \"acept\",\n  \"aceptaba\": \"acept\",\n  \"aceptaban\": \"acept\",\n  \"aceptable\": \"acept\",\n  \"aceptación\": \"acept\",\n  \"aceptada\": \"acept\",\n  \"aceptadas\": \"acept\",\n  \"aceptado\": \"acept\",\n  \"aceptados\": \"acept\",\n  \"aceptamos\": \"acept\",\n  \"aceptan\": \"acept\",\n  \"aceptar\": \"acept\",\n  \"aceptara\": \"acept\",\n  \"aceptarían\": \"acept\",\n  \"aceptarla\": \"acept\",\n  \"aceptaron\": \"acept\",\n  \"aceptas\": \"acept\",\n  \"acepte\": \"acept\",\n  \"acepté\": \"acept\",\n  \"acepten\": \"acept\",\n  \"acepto\": \"acept\",\n  \"aceptó\": \"acept\",\n  \"acer\": \"acer\",\n  \"acera\": \"acer\",\n  \"acerca\": \"acerc\",\n  \"acercaba\": \"acerc\",\n  \"acercaban\": \"acerc\",\n  \"acercado\": \"acerc\",\n  \"acercamiento\": \"acerc\",\n  \"acercamientos\": \"acerc\",\n  \"acercan\": \"acerc\",\n  \"acercando\": \"acerc\",\n  \"acercándonos\": \"acerc\",\n  \"acercándose\": \"acerc\",\n  \"acercar\": \"acerc\",\n  \"acercarán\": \"acerc\",\n  \"acercaría\": \"acerc\",\n  \"acercarnos\": \"acerc\",\n  \"acercaron\": \"acerc\",\n  \"acercarse\": \"acerc\",\n  \"acercó\": \"acerc\",\n  \"acereras\": \"acerer\",\n  \"acereros\": \"acerer\",\n  \"acero\": \"acer\",\n  \"acerque\": \"acerqu\",\n  \"acerqué\": \"acerqu\",\n  \"acerquen\": \"acerqu\",\n  \"acertada\": \"acert\",\n  \"acertadamente\": \"acert\",\n  \"acertado\": \"acert\",\n  \"acervo\": \"acerv\",\n  \"acetato\": \"acetat\",\n  \"acevedo\": \"aceved\",\n  \"aceves\": \"acev\",\n  \"achacan\": \"achac\",\n  \"achacar\": \"achac\",\n  \"achacaron\": \"achac\",\n  \"achacársela\": \"achac\",\n  \"achaques\": \"achaqu\",\n  \"acheson\": \"acheson\",\n  \"achichincles\": \"achichincl\",\n  \"achieve\": \"achiev\",\n  \"achique\": \"achiqu\",\n  \"achy\": \"achy\",\n  \"acicalar\": \"acical\",\n  \"acicate\": \"acicat\",\n  \"ácida\": \"acid\",\n  \"ácidas\": \"acid\",\n  \"acidez\": \"acidez\",\n  \"ácido\": \"acid\",\n  \"ácidos\": \"acid\",\n  \"acierto\": \"aciert\",\n  \"aciertos\": \"aciert\",\n  \"aclamada\": \"aclam\",\n  \"aclamado\": \"aclam\",\n  \"aclara\": \"aclar\",\n  \"aclaración\": \"aclar\",\n  \"aclaraciones\": \"aclar\",\n  \"aclarado\": \"aclar\",\n  \"aclaramos\": \"aclar\",\n  \"aclarando\": \"aclar\",\n  \"aclarar\": \"aclar\",\n  \"aclarara\": \"aclar\",\n  \"aclararon\": \"aclar\",\n  \"aclaratorias\": \"aclaratori\",\n  \"aclaren\": \"aclar\",\n  \"aclaró\": \"aclar\",\n  \"aclimatado\": \"aclimat\",\n  \"aclimatándose\": \"aclimat\",\n  \"acne\": \"acne\",\n  \"acné\": \"acne\",\n  \"acogida\": \"acog\",\n  \"acojan\": \"acoj\",\n  \"acomete\": \"acomet\",\n  \"acomodado\": \"acomod\",\n  \"acomodados\": \"acomod\",\n  \"acomodar\": \"acomod\",\n  \"acomodarse\": \"acomod\",\n  \"acompaña\": \"acompañ\",\n  \"acompañaba\": \"acompañ\",\n  \"acompañaban\": \"acompañ\",\n  \"acompañada\": \"acompañ\",\n  \"acompañadas\": \"acompañ\",\n  \"acompañado\": \"acompañ\",\n  \"acompañados\": \"acompañ\",\n  \"acompañan\": \"acompañ\",\n  \"acompañando\": \"acompañ\",\n  \"acompañante\": \"acompañ\",\n  \"acompañantes\": \"acompañ\",\n  \"acompañar\": \"acompañ\",\n  \"acompañará\": \"acompañ\",\n  \"acompañarán\": \"acompañ\",\n  \"acompañaría\": \"acompañ\",\n  \"acompañarían\": \"acompañ\",\n  \"acompañaron\": \"acompañ\",\n  \"acompañe\": \"acompañ\",\n  \"acompañó\": \"acompañ\",\n  \"acomplejados\": \"acomplej\",\n  \"acondicionadas\": \"acondicion\",\n  \"acondicionados\": \"acondicion\",\n  \"acondicionamiento\": \"acondicion\",\n  \"acongoje\": \"acongoj\",\n  \"aconseja\": \"aconsej\",\n  \"aconsejan\": \"aconsej\",\n  \"aconsejar\": \"aconsej\",\n  \"aconsejará\": \"aconsej\",\n  \"aconsejaron\": \"aconsej\",\n  \"aconséjeme\": \"aconsejem\",\n  \"aconsejó\": \"aconsej\",\n  \"acontecer\": \"acontec\",\n  \"acontecimiento\": \"acontec\",\n  \"acontecimientos\": \"acontec\",\n  \"aconteció\": \"acontec\",\n  \"acopio\": \"acopi\",\n  \"acoplamiento\": \"acopl\",\n  \"acoplamientos\": \"acopl\",\n  \"acoplando\": \"acopl\",\n  \"acordada\": \"acord\",\n  \"acordado\": \"acord\",\n  \"acordados\": \"acord\",\n  \"acordaron\": \"acord\",\n  \"acorde\": \"acord\",\n  \"acordé\": \"acord\",\n  \"acordes\": \"acord\",\n  \"acordó\": \"acord\",\n  \"acorraló\": \"acorral\",\n  \"acortado\": \"acort\",\n  \"acortaron\": \"acort\",\n  \"acortó\": \"acort\",\n  \"acoso\": \"acos\",\n  \"acosta\": \"acost\",\n  \"acostada\": \"acost\",\n  \"acostumbra\": \"acostumbr\",\n  \"acostumbraba\": \"acostumbr\",\n  \"acostumbraban\": \"acostumbr\",\n  \"acostumbradas\": \"acostumbr\",\n  \"acostumbrado\": \"acostumbr\",\n  \"acostumbrados\": \"acostumbr\",\n  \"acostumbramos\": \"acostumbr\",\n  \"acostumbran\": \"acostumbr\",\n  \"acostumbrando\": \"acostumbr\",\n  \"acostumbrar\": \"acostumbr\",\n  \"acostumbrarme\": \"acostumbr\",\n  \"acostumbrarnos\": \"acostumbr\",\n  \"acota\": \"acot\",\n  \"acotamiento\": \"acot\",\n  \"acrecentarlo\": \"acrecent\",\n  \"acrecienta\": \"acrecient\",\n  \"acredita\": \"acredit\",\n  \"acreditable\": \"acredit\",\n  \"acreditación\": \"acredit\",\n  \"acreditada\": \"acredit\",\n  \"acreditado\": \"acredit\",\n  \"acreditados\": \"acredit\",\n  \"acreditó\": \"acredit\",\n  \"acreedor\": \"acreedor\",\n  \"acreedores\": \"acreedor\",\n  \"acribillado\": \"acribill\",\n  \"acribillan\": \"acribill\",\n  \"acrobacias\": \"acrobaci\",\n  \"acróbata\": \"acrobat\",\n  \"acta\": \"acta\",\n  \"actas\": \"actas\",\n  \"actitud\": \"actitud\",\n  \"actitudes\": \"actitud\",\n  \"activa\": \"activ\",\n  \"activación\": \"activ\",\n  \"activamente\": \"activ\",\n  \"activas\": \"activ\",\n  \"actividad\": \"activ\",\n  \"actividades\": \"activ\",\n  \"activista\": \"activ\",\n  \"activistas\": \"activ\",\n  \"activo\": \"activ\",\n  \"activos\": \"activ\",\n  \"acto\": \"acto\",\n  \"actor\": \"actor\",\n  \"actoral\": \"actoral\",\n  \"actores\": \"actor\",\n  \"actos\": \"actos\",\n  \"actrices\": \"actric\",\n  \"actriz\": \"actriz\",\n  \"actúa\": \"actu\",\n  \"actuaba\": \"actu\",\n  \"actuación\": \"actuacion\",\n  \"actuaciones\": \"actuacion\",\n  \"actuado\": \"actu\",\n  \"actual\": \"actual\",\n  \"actuales\": \"actual\",\n  \"actualice\": \"actualic\",\n  \"actualidad\": \"actual\",\n  \"actualización\": \"actualiz\",\n  \"actualizaciones\": \"actualiz\",\n  \"actualizada\": \"actualiz\",\n  \"actualizando\": \"actualiz\",\n  \"actualizar\": \"actualiz\",\n  \"actualmente\": \"actual\",\n  \"actúan\": \"actu\",\n  \"actuando\": \"actu\",\n  \"actuar\": \"actu\",\n  \"actuará\": \"actu\",\n  \"actuarán\": \"actu\",\n  \"actuaron\": \"actu\",\n  \"actúe\": \"actu\",\n  \"actúen\": \"actu\",\n  \"actuó\": \"actu\",\n  \"acuarios\": \"acuari\",\n  \"acuática\": \"acuat\",\n  \"acuciantes\": \"acuci\",\n  \"acuda\": \"acud\",\n  \"acudan\": \"acud\",\n  \"acude\": \"acud\",\n  \"acuden\": \"acud\",\n  \"acudí\": \"acud\",\n  \"acudía\": \"acud\",\n  \"acudían\": \"acud\",\n  \"acudido\": \"acud\",\n  \"acudiera\": \"acud\",\n  \"acudieron\": \"acud\",\n  \"acudió\": \"acud\",\n  \"acudir\": \"acud\",\n  \"acudirá\": \"acud\",\n  \"acudirán\": \"acud\",\n  \"acudiremos\": \"acud\",\n  \"acudirían\": \"acud\",\n  \"acueducto\": \"acueduct\",\n  \"acuerda\": \"acuerd\",\n  \"acuerdas\": \"acuerd\",\n  \"acuérdese\": \"acuerdes\",\n  \"acuerdo\": \"acuerd\",\n  \"acuerdos\": \"acuerd\",\n  \"acuesto\": \"acuest\",\n  \"acumula\": \"acumul\",\n  \"acumulación\": \"acumul\",\n  \"acumulada\": \"acumul\",\n  \"acumuladas\": \"acumul\",\n  \"acumulado\": \"acumul\",\n  \"acumulados\": \"acumul\",\n  \"acumulan\": \"acumul\",\n  \"acumulando\": \"acumul\",\n  \"acumular\": \"acumul\",\n  \"acumuló\": \"acumul\",\n  \"acuña\": \"acuñ\",\n  \"acupuntura\": \"acupuntur\",\n  \"acusa\": \"acus\",\n  \"acusaban\": \"acus\",\n  \"acusación\": \"acus\",\n  \"acusaciones\": \"acus\",\n  \"acusada\": \"acus\",\n  \"acusadas\": \"acus\",\n  \"acusado\": \"acus\",\n  \"acusador\": \"acus\",\n  \"acusadoras\": \"acus\",\n  \"acusadores\": \"acus\",\n  \"acusados\": \"acus\",\n  \"acusan\": \"acus\",\n  \"acusándolos\": \"acus\",\n  \"acusarlo\": \"acus\",\n  \"acusaron\": \"acus\",\n  \"acusatorias\": \"acusatori\",\n  \"acusó\": \"acus\",\n  \"acústica\": \"acust\",\n  \"acústicas\": \"acust\",\n  \"ad\": \"ad\",\n  \"adam\": \"adam\",\n  \"adame\": \"adam\",\n  \"adams\": \"adams\",\n  \"adamson\": \"adamson\",\n  \"adán\": \"adan\",\n  \"adaptación\": \"adapt\",\n  \"adaptada\": \"adapt\",\n  \"adaptado\": \"adapt\",\n  \"adaptados\": \"adapt\",\n  \"adaptan\": \"adapt\",\n  \"adaptando\": \"adapt\",\n  \"adaptándose\": \"adapt\",\n  \"adaptar\": \"adapt\",\n  \"adaptarán\": \"adapt\",\n  \"adaptarse\": \"adapt\",\n  \"adapten\": \"adapt\",\n  \"adaptó\": \"adapt\",\n  \"adarme\": \"adarm\",\n  \"addis\": \"addis\",\n  \"adecuación\": \"adecu\",\n  \"adecuaciones\": \"adecu\",\n  \"adecuada\": \"adecu\",\n  \"adecuadamente\": \"adecu\",\n  \"adecuadas\": \"adecu\",\n  \"adecuado\": \"adecu\",\n  \"adecuados\": \"adecu\",\n  \"adecuar\": \"adecu\",\n  \"adecuarla\": \"adecu\",\n  \"adecuarlos\": \"adecu\",\n  \"adecuarse\": \"adecu\",\n  \"adecuarte\": \"adecuart\",\n  \"adela\": \"adel\",\n  \"adelaida\": \"adel\",\n  \"adelanta\": \"adelant\",\n  \"adelantada\": \"adelant\",\n  \"adelantado\": \"adelant\",\n  \"adelantados\": \"adelant\",\n  \"adelantamos\": \"adelant\",\n  \"adelantando\": \"adelant\",\n  \"adelantar\": \"adelant\",\n  \"adelantarnos\": \"adelant\",\n  \"adelantaron\": \"adelant\",\n  \"adelantarse\": \"adelant\",\n  \"adelantase\": \"adelant\",\n  \"adelante\": \"adel\",\n  \"adelanto\": \"adelant\",\n  \"adelantó\": \"adelant\",\n  \"adelantos\": \"adelant\",\n  \"adelgazado\": \"adelgaz\",\n  \"adelgazar\": \"adelgaz\",\n  \"ademán\": \"ademan\",\n  \"ademanes\": \"ademan\",\n  \"ademas\": \"adem\",\n  \"además\": \"ademas\",\n  \"adentrarme\": \"adentr\",\n  \"adentrarnos\": \"adentr\",\n  \"adentro\": \"adentr\",\n  \"adeptos\": \"adept\",\n  \"aderezara\": \"aderez\",\n  \"adese\": \"ades\",\n  \"adeudaba\": \"adeud\",\n  \"adeudo\": \"adeud\",\n  \"adeudos\": \"adeud\",\n  \"adherencia\": \"adherent\",\n  \"adherida\": \"adher\",\n  \"adheridos\": \"adher\",\n  \"adherirse\": \"adher\",\n  \"adhesión\": \"adhesion\",\n  \"adhesiva\": \"adhes\",\n  \"adhiera\": \"adhier\",\n  \"adicional\": \"adicional\",\n  \"adicionales\": \"adicional\",\n  \"adicionalmente\": \"adicional\",\n  \"adiciones\": \"adicion\",\n  \"adicto\": \"adict\",\n  \"adictos\": \"adict\",\n  \"adiestramiento\": \"adiestr\",\n  \"adiós\": \"adios\",\n  \"aditamento\": \"aditament\",\n  \"adivinación\": \"adivin\",\n  \"adivinó\": \"adivin\",\n  \"adivinos\": \"adivin\",\n  \"adjetivo\": \"adjet\",\n  \"adjudicación\": \"adjud\",\n  \"adjudican\": \"adjudic\",\n  \"adjudicaron\": \"adjudic\",\n  \"adjudicarse\": \"adjudic\",\n  \"adjudicó\": \"adjudic\",\n  \"adjuntando\": \"adjunt\",\n  \"adjunto\": \"adjunt\",\n  \"administra\": \"administr\",\n  \"administración\": \"administr\",\n  \"administraciones\": \"administr\",\n  \"administrador\": \"administr\",\n  \"administradora\": \"administr\",\n  \"administradores\": \"administr\",\n  \"administrar\": \"administr\",\n  \"administrativa\": \"administr\",\n  \"administrativas\": \"administr\",\n  \"administrativo\": \"administr\",\n  \"administrativos\": \"administr\",\n  \"admiraban\": \"admir\",\n  \"admiración\": \"admir\",\n  \"admiradoras\": \"admir\",\n  \"admiran\": \"admir\",\n  \"admirar\": \"admir\",\n  \"admiro\": \"admir\",\n  \"admiró\": \"admir\",\n  \"admisión\": \"admision\",\n  \"admiten\": \"admit\",\n  \"admitidas\": \"admit\",\n  \"admitió\": \"admit\",\n  \"admitir\": \"admit\",\n  \"admito\": \"admit\",\n  \"adoleciendo\": \"adolec\",\n  \"adoleció\": \"adolec\",\n  \"adolescencia\": \"adolescent\",\n  \"adolescente\": \"adolescent\",\n  \"adolescentes\": \"adolescent\",\n  \"adolfo\": \"adolf\",\n  \"adolorida\": \"adolor\",\n  \"adopción\": \"adopcion\",\n  \"adopta\": \"adopt\",\n  \"adoptada\": \"adopt\",\n  \"adoptadas\": \"adopt\",\n  \"adoptado\": \"adopt\",\n  \"adoptando\": \"adopt\",\n  \"adoptar\": \"adopt\",\n  \"adoptará\": \"adopt\",\n  \"adoptaran\": \"adopt\",\n  \"adoptarán\": \"adopt\",\n  \"adoptaron\": \"adopt\",\n  \"adopte\": \"adopt\",\n  \"adopten\": \"adopt\",\n  \"adoptó\": \"adopt\",\n  \"adoquín\": \"adoquin\",\n  \"adora\": \"ador\",\n  \"adoradores\": \"ador\",\n  \"adoratorio\": \"adoratori\",\n  \"adornadas\": \"adorn\",\n  \"adornan\": \"adorn\",\n  \"adornar\": \"adorn\",\n  \"adornó\": \"adorn\",\n  \"adornos\": \"adorn\",\n  \"adoro\": \"ador\",\n  \"adquiera\": \"adqu\",\n  \"adquiere\": \"adquier\",\n  \"adquieren\": \"adquier\",\n  \"adquirí\": \"adquir\",\n  \"adquirida\": \"adquir\",\n  \"adquiridas\": \"adquir\",\n  \"adquirido\": \"adquir\",\n  \"adquirientes\": \"adquirient\",\n  \"adquiriera\": \"adquir\",\n  \"adquirieran\": \"adquir\",\n  \"adquirieron\": \"adquir\",\n  \"adquirió\": \"adquir\",\n  \"adquirir\": \"adquir\",\n  \"adquirirá\": \"adquir\",\n  \"adquisición\": \"adquisicion\",\n  \"adquisiciones\": \"adquisicion\",\n  \"adquisitivo\": \"adquisit\",\n  \"adr\": \"adr\",\n  \"adrián\": \"adrian\",\n  \"adriana\": \"adrian\",\n  \"adrs\": \"adrs\",\n  \"adscrita\": \"adscrit\",\n  \"adscrito\": \"adscrit\",\n  \"aduana\": \"aduan\",\n  \"aduanal\": \"aduanal\",\n  \"aduanales\": \"aduanal\",\n  \"aductor\": \"aductor\",\n  \"adueñarse\": \"adueñ\",\n  \"adulta\": \"adult\",\n  \"adultas\": \"adult\",\n  \"adulto\": \"adult\",\n  \"adultos\": \"adult\",\n  \"advantaje\": \"advantaj\",\n  \"adversario\": \"adversari\",\n  \"adversarios\": \"adversari\",\n  \"adversas\": \"advers\",\n  \"adversidades\": \"advers\",\n  \"adversos\": \"advers\",\n  \"advertencia\": \"advertent\",\n  \"advertido\": \"advert\",\n  \"advertimos\": \"advert\",\n  \"advertir\": \"advert\",\n  \"advertirán\": \"advert\",\n  \"advertirle\": \"advert\",\n  \"advertising\": \"advertising\",\n  \"advierta\": \"adviert\",\n  \"advierte\": \"adviert\",\n  \"advierten\": \"adviert\",\n  \"advierto\": \"adviert\",\n  \"advirtiendo\": \"advirt\",\n  \"advirtiéndoles\": \"advirt\",\n  \"advirtieron\": \"advirt\",\n  \"advirtió\": \"advirt\",\n  \"aérea\": \"aere\",\n  \"aéreas\": \"aer\",\n  \"aéreo\": \"aere\",\n  \"aéreos\": \"aere\",\n  \"aerodinámica\": \"aerodinam\",\n  \"aerodinámico\": \"aerodinam\",\n  \"aerofotogrametría\": \"aerofotogrametr\",\n  \"aerógrafo\": \"aerograf\",\n  \"aerolínea\": \"aeroline\",\n  \"aerolíneas\": \"aerolin\",\n  \"aerolito\": \"aerolit\",\n  \"aeroméxico\": \"aeromex\",\n  \"aeronáutica\": \"aeronaut\",\n  \"aeronave\": \"aeronav\",\n  \"aeronaves\": \"aeronav\",\n  \"aeroperú\": \"aeroperu\",\n  \"aeroportuario\": \"aeroportuari\",\n  \"aeropuerto\": \"aeropuert\",\n  \"aeropuertos\": \"aeropuert\",\n  \"aerosol\": \"aerosol\",\n  \"aerosoles\": \"aerosol\",\n  \"aerovias\": \"aerovi\",\n  \"aerovías\": \"aerov\",\n  \"afa\": \"afa\",\n  \"afán\": \"afan\",\n  \"afanes\": \"afan\",\n  \"afear\": \"afe\",\n  \"afección\": \"afeccion\",\n  \"afecciones\": \"afeccion\",\n  \"afecta\": \"afect\",\n  \"afectaba\": \"afect\",\n  \"afectación\": \"afect\",\n  \"afectaciones\": \"afect\",\n  \"afectad\": \"afect\",\n  \"afectada\": \"afect\",\n  \"afectadas\": \"afect\",\n  \"afectado\": \"afect\",\n  \"afectados\": \"afect\",\n  \"afectan\": \"afect\",\n  \"afectando\": \"afect\",\n  \"afectar\": \"afect\",\n  \"afectará\": \"afect\",\n  \"afectarán\": \"afect\",\n  \"afectaría\": \"afect\",\n  \"afectaron\": \"afect\",\n  \"afectarse\": \"afect\",\n  \"afecte\": \"afect\",\n  \"afectivas\": \"afect\",\n  \"afectivo\": \"afect\",\n  \"afecto\": \"afect\",\n  \"afectó\": \"afect\",\n  \"afectos\": \"afect\",\n  \"afeen\": \"afe\",\n  \"afeitar\": \"afeit\",\n  \"aferrarse\": \"aferr\",\n  \"affaire\": \"affair\",\n  \"afianzadora\": \"afianz\",\n  \"afianzarse\": \"afianz\",\n  \"afición\": \"aficion\",\n  \"aficionadas\": \"aficion\",\n  \"aficionado\": \"aficion\",\n  \"aficionados\": \"aficion\",\n  \"aficiones\": \"aficion\",\n  \"afilada\": \"afil\",\n  \"afiliación\": \"afili\",\n  \"afiliada\": \"afili\",\n  \"afiliadas\": \"afili\",\n  \"afiliado\": \"afili\",\n  \"afiliados\": \"afili\",\n  \"afiliaron\": \"afili\",\n  \"afín\": \"afin\",\n  \"afinación\": \"afin\",\n  \"afinaciones\": \"afin\",\n  \"afinando\": \"afin\",\n  \"afinar\": \"afin\",\n  \"afines\": \"afin\",\n  \"afinidad\": \"afin\",\n  \"afinidades\": \"afin\",\n  \"afinó\": \"afin\",\n  \"afirma\": \"afirm\",\n  \"afirmación\": \"afirm\",\n  \"afirmaciones\": \"afirm\",\n  \"afirmado\": \"afirm\",\n  \"afirman\": \"afirm\",\n  \"afirmando\": \"afirm\",\n  \"afirmar\": \"afirm\",\n  \"afirmaron\": \"afirm\",\n  \"afirmativa\": \"afirm\",\n  \"afirmó\": \"afirm\",\n  \"afl\": \"afl\",\n  \"aflicción\": \"afliccion\",\n  \"afligida\": \"aflig\",\n  \"afligido\": \"aflig\",\n  \"afloja\": \"afloj\",\n  \"aflojadas\": \"afloj\",\n  \"aflojamos\": \"afloj\",\n  \"aflojar\": \"afloj\",\n  \"aflora\": \"aflor\",\n  \"afluencia\": \"afluenci\",\n  \"aforismo\": \"afor\",\n  \"afortunada\": \"afortun\",\n  \"afortunadamente\": \"afortun\",\n  \"afortunado\": \"afortun\",\n  \"afp\": \"afp\",\n  \"afrenta\": \"afrent\",\n  \"africa\": \"afric\",\n  \"africano\": \"african\",\n  \"africanos\": \"african\",\n  \"afro\": \"afro\",\n  \"afroamericanos\": \"afroamerican\",\n  \"afrobrasileño\": \"afrobrasileñ\",\n  \"afrobrasileños\": \"afrobrasileñ\",\n  \"afrodisiaco\": \"afrodisiac\",\n  \"afrodisiacos\": \"afrodisiac\",\n  \"afrodisio\": \"afrodisi\",\n  \"afrontar\": \"afront\",\n  \"afrontará\": \"afront\",\n  \"afrontaron\": \"afront\",\n  \"afronten\": \"afront\",\n  \"afuera\": \"afuer\",\n  \"afueras\": \"afuer\",\n  \"agachó\": \"agach\",\n  \"agarra\": \"agarr\",\n  \"agarrada\": \"agarr\",\n  \"agarrar\": \"agarr\",\n  \"agarraron\": \"agarr\",\n  \"agarre\": \"agarr\",\n  \"agárrese\": \"agarres\",\n  \"age\": \"age\",\n  \"agencia\": \"agenci\",\n  \"agenciaron\": \"agenci\",\n  \"agencias\": \"agenci\",\n  \"agenda\": \"agend\",\n  \"agendas\": \"agend\",\n  \"agenl\": \"agenl\",\n  \"agente\": \"agent\",\n  \"agentes\": \"agent\",\n  \"ágil\": \"agil\",\n  \"agilidad\": \"agil\",\n  \"agilización\": \"agiliz\",\n  \"agilizando\": \"agiliz\",\n  \"agilizar\": \"agiliz\",\n  \"agilizara\": \"agiliz\",\n  \"agilizará\": \"agiliz\",\n  \"agio\": \"agi\",\n  \"agiotistas\": \"agiot\",\n  \"agitación\": \"agit\",\n  \"agitadas\": \"agit\",\n  \"agitadores\": \"agit\",\n  \"agitando\": \"agit\",\n  \"aglomeraciones\": \"aglomer\",\n  \"aglutina\": \"aglutin\",\n  \"aglutinar\": \"aglutin\",\n  \"agobiado\": \"agobi\",\n  \"agonía\": \"agon\",\n  \"agonizante\": \"agoniz\",\n  \"agora\": \"agor\",\n  \"agosto\": \"agost\",\n  \"agotadas\": \"agot\",\n  \"agotado\": \"agot\",\n  \"agotamiento\": \"agot\",\n  \"agotándolos\": \"agot\",\n  \"agotaron\": \"agot\",\n  \"agotarse\": \"agot\",\n  \"agote\": \"agot\",\n  \"agraciado\": \"agraci\",\n  \"agrada\": \"agrad\",\n  \"agradable\": \"agrad\",\n  \"agradece\": \"agradec\",\n  \"agradecemos\": \"agradec\",\n  \"agradecer\": \"agradec\",\n  \"agradecerán\": \"agradec\",\n  \"agradecería\": \"agradec\",\n  \"agradeciendo\": \"agradec\",\n  \"agradecieron\": \"agradec\",\n  \"agradecimiento\": \"agradec\",\n  \"agradeció\": \"agradec\",\n  \"agradezco\": \"agradezc\",\n  \"agrado\": \"agrad\",\n  \"agramón\": \"agramon\",\n  \"agrandar\": \"agrand\",\n  \"agrandarla\": \"agrand\",\n  \"agraria\": \"agrari\",\n  \"agrario\": \"agrari\",\n  \"agraristas\": \"agrar\",\n  \"agrava\": \"agrav\",\n  \"agravación\": \"agrav\",\n  \"agravado\": \"agrav\",\n  \"agravaron\": \"agrav\",\n  \"agraviado\": \"agravi\",\n  \"agravios\": \"agravi\",\n  \"agredido\": \"agred\",\n  \"agredidos\": \"agred\",\n  \"agredieron\": \"agred\",\n  \"agrega\": \"agreg\",\n  \"agregada\": \"agreg\",\n  \"agregado\": \"agreg\",\n  \"agregaduría\": \"agregadur\",\n  \"agregan\": \"agreg\",\n  \"agregando\": \"agreg\",\n  \"agregar\": \"agreg\",\n  \"agregaron\": \"agreg\",\n  \"agregarse\": \"agreg\",\n  \"agrego\": \"agreg\",\n  \"agregó\": \"agreg\",\n  \"agréguele\": \"agreguel\",\n  \"agremiada\": \"agremi\",\n  \"agremiados\": \"agremi\",\n  \"agresión\": \"agresion\",\n  \"agresiones\": \"agresion\",\n  \"agresiva\": \"agres\",\n  \"agresivamente\": \"agres\",\n  \"agresivas\": \"agres\",\n  \"agresividad\": \"agres\",\n  \"agresivo\": \"agres\",\n  \"agresivos\": \"agres\",\n  \"agresor\": \"agresor\",\n  \"agresores\": \"agresor\",\n  \"agrícola\": \"agricol\",\n  \"agrícolas\": \"agricol\",\n  \"agricultores\": \"agricultor\",\n  \"agricultura\": \"agricultur\",\n  \"agridyne\": \"agridyn\",\n  \"agrio\": \"agri\",\n  \"agro\": \"agro\",\n  \"agropecuaria\": \"agropecuari\",\n  \"agropecuario\": \"agropecuari\",\n  \"agropecuarios\": \"agropecuari\",\n  \"agroquímico\": \"agroquim\",\n  \"agroquímicos\": \"agroquim\",\n  \"agrupa\": \"agrup\",\n  \"agrupación\": \"agrup\",\n  \"agrupaciones\": \"agrup\",\n  \"agrupadas\": \"agrup\",\n  \"agrupamiento\": \"agrup\",\n  \"agrupar\": \"agrup\",\n  \"agua\": \"agu\",\n  \"aguacate\": \"aguacat\",\n  \"aguacates\": \"aguacat\",\n  \"agualeguas\": \"agualegu\",\n  \"aguanta\": \"aguant\",\n  \"aguantar\": \"aguant\",\n  \"aguantarse\": \"aguant\",\n  \"aguantó\": \"aguant\",\n  \"aguardaba\": \"aguard\",\n  \"aguardaban\": \"aguard\",\n  \"aguardan\": \"aguard\",\n  \"aguas\": \"agu\",\n  \"aguascalientes\": \"aguascalient\",\n  \"aguaytía\": \"aguayt\",\n  \"aguda\": \"agud\",\n  \"agudas\": \"agud\",\n  \"agudiza\": \"agudiz\",\n  \"agudizado\": \"agudiz\",\n  \"agudo\": \"agud\",\n  \"agudos\": \"agud\",\n  \"aguila\": \"aguil\",\n  \"águila\": \"aguil\",\n  \"aguilar\": \"aguil\",\n  \"aguilas\": \"aguil\",\n  \"aguilera\": \"aguiler\",\n  \"aguinaldo\": \"aguinald\",\n  \"aguirre\": \"aguirr\",\n  \"agüites\": \"agüit\",\n  \"aguja\": \"aguj\",\n  \"agujeros\": \"agujer\",\n  \"agujetas\": \"agujet\",\n  \"agustín\": \"agustin\",\n  \"agusto\": \"agust\",\n  \"ah\": \"ah\",\n  \"ahí\": \"ahi\",\n  \"ahmsa\": \"ahmsa\",\n  \"ahogados\": \"ahog\",\n  \"ahogando\": \"ahog\",\n  \"ahogaron\": \"ahog\",\n  \"ahondando\": \"ahond\",\n  \"ahondar\": \"ahond\",\n  \"ahora\": \"ahor\",\n  \"ahorita\": \"ahorit\",\n  \"ahorra\": \"ahorr\",\n  \"ahorrado\": \"ahorr\",\n  \"ahorrador\": \"ahorr\",\n  \"ahorradores\": \"ahorr\",\n  \"ahorramos\": \"ahorr\",\n  \"ahorrar\": \"ahorr\",\n  \"ahorrará\": \"ahorr\",\n  \"ahorrarán\": \"ahorr\",\n  \"ahorraron\": \"ahorr\",\n  \"ahorrativa\": \"ahorr\",\n  \"ahorrativo\": \"ahorr\",\n  \"ahorro\": \"ahorr\",\n  \"ahorros\": \"ahorr\",\n  \"ahuehuete\": \"ahuehuet\",\n  \"ahujas\": \"ahuj\",\n  \"ahuyenta\": \"ahuyent\",\n  \"aída\": \"aid\",\n  \"aikman\": \"aikm\",\n  \"air\": \"air\",\n  \"airadamente\": \"airad\",\n  \"airbus\": \"airbus\",\n  \"aire\": \"air\",\n  \"airecombustible\": \"airecombust\",\n  \"aires\": \"air\",\n  \"airways\": \"airways\",\n  \"ais\": \"ais\",\n  \"aislacionismo\": \"aislacion\",\n  \"aislada\": \"aisl\",\n  \"aisladas\": \"aisl\",\n  \"aislados\": \"aisl\",\n  \"aislamiento\": \"aislamient\",\n  \"aislarla\": \"aisl\",\n  \"aislarlo\": \"aisl\",\n  \"aispuro\": \"aispur\",\n  \"aiv\": \"aiv\",\n  \"aix\": \"aix\",\n  \"ajalpan\": \"ajalp\",\n  \"ajena\": \"ajen\",\n  \"ajenas\": \"ajen\",\n  \"ajeno\": \"ajen\",\n  \"ajenos\": \"ajen\",\n  \"ajusco\": \"ajusc\",\n  \"ajusta\": \"ajust\",\n  \"ajustados\": \"ajust\",\n  \"ajustan\": \"ajust\",\n  \"ajustando\": \"ajust\",\n  \"ajustándolo\": \"ajust\",\n  \"ajustar\": \"ajust\",\n  \"ajustarse\": \"ajust\",\n  \"ajuste\": \"ajust\",\n  \"ajustes\": \"ajust\",\n  \"ajusticiado\": \"ajustici\",\n  \"ak\": \"ak\",\n  \"akita\": \"akit\",\n  \"al\": \"al\",\n  \"ala\": \"ala\",\n  \"alababa\": \"alab\",\n  \"alabanza\": \"alab\",\n  \"alabarderos\": \"alabarder\",\n  \"alabó\": \"alab\",\n  \"aladino\": \"aladin\",\n  \"aladro\": \"aladr\",\n  \"alain\": \"alain\",\n  \"alambre\": \"alambr\",\n  \"alameda\": \"alamed\",\n  \"alamo\": \"alam\",\n  \"alamos\": \"alam\",\n  \"alan\": \"alan\",\n  \"alanís\": \"alan\",\n  \"alarcón\": \"alarcon\",\n  \"alargadas\": \"alarg\",\n  \"alargar\": \"alarg\",\n  \"alarido\": \"alar\",\n  \"alarma\": \"alarm\",\n  \"alarmado\": \"alarm\",\n  \"alarmados\": \"alarm\",\n  \"alarmante\": \"alarm\",\n  \"alarmaron\": \"alarm\",\n  \"alarme\": \"alarm\",\n  \"alarmismo\": \"alarm\",\n  \"alarmó\": \"alarm\",\n  \"alaska\": \"alask\",\n  \"alatriste\": \"alatr\",\n  \"alavez\": \"alavez\",\n  \"alba\": \"alba\",\n  \"albacete\": \"albacet\",\n  \"albán\": \"alban\",\n  \"albañil\": \"albañil\",\n  \"albañiles\": \"albañil\",\n  \"albay\": \"albay\",\n  \"albee\": \"albe\",\n  \"alberca\": \"alberc\",\n  \"alberga\": \"alberg\",\n  \"albergar\": \"alberg\",\n  \"albergará\": \"alberg\",\n  \"albergue\": \"alberg\",\n  \"albergues\": \"alberg\",\n  \"albert\": \"albert\",\n  \"alberto\": \"albert\",\n  \"albiazul\": \"albiazul\",\n  \"albiazules\": \"albiazul\",\n  \"albiceleste\": \"albicelest\",\n  \"alborotada\": \"alborot\",\n  \"alboroto\": \"alborot\",\n  \"alborotos\": \"alborot\",\n  \"album\": \"album\",\n  \"álbum\": \"album\",\n  \"albur\": \"albur\",\n  \"alcachofa\": \"alcachof\",\n  \"alcalá\": \"alcal\",\n  \"alcalde\": \"alcald\",\n  \"alcaldes\": \"alcald\",\n  \"alcaldesa\": \"alcaldes\",\n  \"alcaldía\": \"alcald\",\n  \"alcaldías\": \"alcald\",\n  \"alcalinidad\": \"alcalin\",\n  \"alcalinos\": \"alcalin\",\n  \"alcance\": \"alcanc\",\n  \"alcancé\": \"alcanc\",\n  \"alcancemos\": \"alcanc\",\n  \"alcancen\": \"alcanc\",\n  \"alcances\": \"alcanc\",\n  \"alcántara\": \"alcant\",\n  \"alcantarilla\": \"alcantarill\",\n  \"alcantarillado\": \"alcantarill\",\n  \"alcanza\": \"alcanz\",\n  \"alcanzaba\": \"alcanz\",\n  \"alcanzaban\": \"alcanz\",\n  \"alcanzada\": \"alcanz\",\n  \"alcanzado\": \"alcanz\",\n  \"alcanzados\": \"alcanz\",\n  \"alcanzan\": \"alcanz\",\n  \"alcanzando\": \"alcanz\",\n  \"alcanzar\": \"alcanz\",\n  \"alcanzara\": \"alcanz\",\n  \"alcanzará\": \"alcanz\",\n  \"alcanzaré\": \"alcanz\",\n  \"alcanzaremos\": \"alcanz\",\n  \"alcanzaría\": \"alcanz\",\n  \"alcanzarlos\": \"alcanz\",\n  \"alcanzaron\": \"alcanz\",\n  \"alcanzó\": \"alcanz\",\n  \"alcerreza\": \"alcerrez\",\n  \"alcocer\": \"alcoc\",\n  \"alcohol\": \"alcohol\",\n  \"alcoholicas\": \"alcohol\",\n  \"aldape\": \"aldap\",\n  \"aldea\": \"alde\",\n  \"aldeas\": \"alde\",\n  \"aledañas\": \"aledañ\",\n  \"alega\": \"aleg\",\n  \"alegando\": \"aleg\",\n  \"alegar\": \"aleg\",\n  \"alegara\": \"aleg\",\n  \"alegaron\": \"aleg\",\n  \"alegatos\": \"alegat\",\n  \"alegó\": \"aleg\",\n  \"alegoría\": \"alegor\",\n  \"alegórico\": \"alegor\",\n  \"alegóricos\": \"alegor\",\n  \"alegraron\": \"alegr\",\n  \"alegre\": \"alegr\",\n  \"alegremente\": \"alegr\",\n  \"alegría\": \"alegr\",\n  \"alegró\": \"alegr\",\n  \"aleja\": \"alej\",\n  \"alejaban\": \"alej\",\n  \"alejado\": \"alej\",\n  \"alejamiento\": \"alej\",\n  \"alejándonos\": \"alej\",\n  \"alejándose\": \"alej\",\n  \"alejandra\": \"alejandr\",\n  \"alejandro\": \"alejandr\",\n  \"alejar\": \"alej\",\n  \"alejara\": \"alej\",\n  \"alejaron\": \"alej\",\n  \"alejo\": \"alej\",\n  \"alejó\": \"alej\",\n  \"alemán\": \"aleman\",\n  \"alemana\": \"aleman\",\n  \"alemanas\": \"aleman\",\n  \"alemanes\": \"aleman\",\n  \"alemania\": \"alemani\",\n  \"alenia\": \"aleni\",\n  \"alentador\": \"alent\",\n  \"alentadora\": \"alent\",\n  \"alentadores\": \"alent\",\n  \"alentar\": \"alent\",\n  \"alentó\": \"alent\",\n  \"alergia\": \"alergi\",\n  \"alergología\": \"alergolog\",\n  \"alerta\": \"alert\",\n  \"alertado\": \"alert\",\n  \"alerten\": \"alert\",\n  \"alessio\": \"alessi\",\n  \"alex\": \"alex\",\n  \"alexander\": \"alexand\",\n  \"alexandr\": \"alexandr\",\n  \"alexis\": \"alexis\",\n  \"alfa\": \"alfa\",\n  \"alfabético\": \"alfabet\",\n  \"alfarería\": \"alfar\",\n  \"alfaro\": \"alfar\",\n  \"alfilerazos\": \"alfileraz\",\n  \"alfio\": \"alfi\",\n  \"alfombra\": \"alfombr\",\n  \"alfonso\": \"alfons\",\n  \"alfred\": \"alfred\",\n  \"alfredo\": \"alfred\",\n  \"algas\": \"algas\",\n  \"algebra\": \"algebr\",\n  \"álgebra\": \"algebr\",\n  \"algo\": \"algo\",\n  \"algodón\": \"algodon\",\n  \"alguien\": \"algui\",\n  \"algún\": \"algun\",\n  \"alguna\": \"algun\",\n  \"algunas\": \"algun\",\n  \"alguno\": \"algun\",\n  \"algunos\": \"algun\",\n  \"ali\": \"ali\",\n  \"aliada\": \"ali\",\n  \"aliadas\": \"ali\",\n  \"aliado\": \"ali\",\n  \"aliados\": \"ali\",\n  \"aliándose\": \"ali\",\n  \"alianza\": \"alianz\",\n  \"alianzas\": \"alianz\",\n  \"aliar\": \"ali\",\n  \"aliaron\": \"ali\",\n  \"aliarse\": \"ali\",\n  \"alice\": \"alic\",\n  \"alicea\": \"alice\",\n  \"alicia\": \"alici\",\n  \"aliemos\": \"ali\",\n  \"alienta\": \"alient\",\n  \"alientan\": \"alient\",\n  \"aliento\": \"alient\",\n  \"alientos\": \"alient\",\n  \"aligerar\": \"aliger\",\n  \"aligerarla\": \"aliger\",\n  \"alija\": \"alij\",\n  \"alimañas\": \"alimañ\",\n  \"alimentación\": \"aliment\",\n  \"alimentada\": \"aliment\",\n  \"alimentado\": \"aliment\",\n  \"alimentador\": \"aliment\",\n  \"alimentadores\": \"aliment\",\n  \"alimentar\": \"aliment\",\n  \"alimenticia\": \"alimentici\",\n  \"alimenticio\": \"alimentici\",\n  \"alimenticios\": \"alimentici\",\n  \"alimento\": \"aliment\",\n  \"alimentó\": \"aliment\",\n  \"alimentos\": \"aliment\",\n  \"alineacion\": \"alineacion\",\n  \"alineación\": \"alin\",\n  \"alineaciones\": \"alin\",\n  \"alineado\": \"alin\",\n  \"alineó\": \"aline\",\n  \"alistan\": \"alist\",\n  \"aliuska\": \"aliusk\",\n  \"aliviar\": \"alivi\",\n  \"aliviará\": \"alivi\",\n  \"aliviaría\": \"alivi\",\n  \"alivio\": \"alivi\",\n  \"aljibes\": \"aljib\",\n  \"alla\": \"alla\",\n  \"allá\": \"alla\",\n  \"allegadas\": \"alleg\",\n  \"allegado\": \"alleg\",\n  \"allegados\": \"alleg\",\n  \"allegar\": \"alleg\",\n  \"allegarle\": \"alleg\",\n  \"allegarles\": \"alleg\",\n  \"allegarse\": \"alleg\",\n  \"allende\": \"allend\",\n  \"allí\": \"alli\",\n  \"alma\": \"alma\",\n  \"almacena\": \"almacen\",\n  \"almacenada\": \"almacen\",\n  \"almacenadora\": \"almacen\",\n  \"almacenaje\": \"almacenaj\",\n  \"almacenamiento\": \"almacen\",\n  \"almacenar\": \"almacen\",\n  \"almacene\": \"almacen\",\n  \"almacenes\": \"almacen\",\n  \"almaguer\": \"almagu\",\n  \"almaraz\": \"almaraz\",\n  \"almas\": \"almas\",\n  \"almohada\": \"almoh\",\n  \"almonte\": \"almont\",\n  \"almorzar\": \"almorz\",\n  \"almorzase\": \"almorz\",\n  \"almuerzo\": \"almuerz\",\n  \"almuerzos\": \"almuerz\",\n  \"alonso\": \"alons\",\n  \"alpargatado\": \"alpargat\",\n  \"alquibenceno\": \"alquibencen\",\n  \"alquilado\": \"alquil\",\n  \"alquiler\": \"alquil\",\n  \"alquimia\": \"alquimi\",\n  \"alrededor\": \"alrededor\",\n  \"alrededores\": \"alrededor\",\n  \"alta\": \"alta\",\n  \"altadena\": \"altaden\",\n  \"altamente\": \"alt\",\n  \"altamira\": \"altamir\",\n  \"altamirano\": \"altamiran\",\n  \"altas\": \"altas\",\n  \"altavista\": \"altav\",\n  \"altera\": \"alter\",\n  \"alteración\": \"alter\",\n  \"alteraciones\": \"alter\",\n  \"alterado\": \"alter\",\n  \"alterados\": \"alter\",\n  \"alterar\": \"alter\",\n  \"alterarán\": \"alter\",\n  \"alteraron\": \"alter\",\n  \"alterarse\": \"alter\",\n  \"altercado\": \"alterc\",\n  \"altere\": \"alter\",\n  \"alterna\": \"altern\",\n  \"alternando\": \"altern\",\n  \"alternar\": \"altern\",\n  \"alternará\": \"altern\",\n  \"alternativa\": \"altern\",\n  \"alternativas\": \"altern\",\n  \"alternó\": \"altern\",\n  \"altibajos\": \"altibaj\",\n  \"altímetro\": \"altimetr\",\n  \"altiplano\": \"altiplan\",\n  \"altísimos\": \"altis\",\n  \"altisonantes\": \"altison\",\n  \"altitud\": \"altitud\",\n  \"alto\": \"alto\",\n  \"altos\": \"altos\",\n  \"altruista\": \"altruist\",\n  \"altura\": \"altur\",\n  \"alturas\": \"altur\",\n  \"alud\": \"alud\",\n  \"aludir\": \"alud\",\n  \"alumbraba\": \"alumbr\",\n  \"alumbraban\": \"alumbr\",\n  \"alumbrado\": \"alumbr\",\n  \"alumbró\": \"alumbr\",\n  \"aluminio\": \"alumini\",\n  \"alumna\": \"alumn\",\n  \"alumnado\": \"alumn\",\n  \"alumnas\": \"alumn\",\n  \"alumno\": \"alumn\",\n  \"alumnos\": \"alumn\",\n  \"aluncinógenos\": \"aluncinogen\",\n  \"alusión\": \"alusion\",\n  \"alusiva\": \"alus\",\n  \"alvarado\": \"alvar\",\n  \"alvarez\": \"alvarez\",\n  \"alvaro\": \"alvar\",\n  \"alvelais\": \"alvelais\",\n  \"alvez\": \"alvez\",\n  \"alza\": \"alza\",\n  \"alzados\": \"alzad\",\n  \"alzamiento\": \"alzamient\",\n  \"alzas\": \"alzas\",\n  \"alzheimer\": \"alzheim\",\n  \"alzo\": \"alzo\",\n  \"am\": \"am\",\n  \"ama\": \"ama\",\n  \"amaba\": \"amab\",\n  \"amaban\": \"amab\",\n  \"amabilidad\": \"amabil\",\n  \"amable\": \"amabl\",\n  \"amablemente\": \"amabl\",\n  \"amables\": \"amabl\",\n  \"amadeo\": \"amade\",\n  \"amado\": \"amad\",\n  \"amador\": \"amador\",\n  \"amagaron\": \"amag\",\n  \"amagó\": \"amag\",\n  \"amamos\": \"amam\",\n  \"amanda\": \"amand\",\n  \"amando\": \"amand\",\n  \"amanece\": \"amanec\",\n  \"amanecer\": \"amanec\",\n  \"amante\": \"amant\",\n  \"amantes\": \"amant\",\n  \"amanuense\": \"amanuens\",\n  \"amapola\": \"amapol\",\n  \"amar\": \"amar\",\n  \"amaré\": \"amar\",\n  \"amarga\": \"amarg\",\n  \"amargarnos\": \"amarg\",\n  \"amargas\": \"amarg\",\n  \"amargos\": \"amarg\",\n  \"amarilla\": \"amarill\",\n  \"amarillas\": \"amarill\",\n  \"amarillo\": \"amarill\",\n  \"amarillos\": \"amarill\",\n  \"amarme\": \"amarm\",\n  \"amaro\": \"amar\",\n  \"amarrado\": \"amarr\",\n  \"amarrando\": \"amarr\",\n  \"amarren\": \"amarr\",\n  \"amarres\": \"amarr\",\n  \"amarró\": \"amarr\",\n  \"amaru\": \"amaru\",\n  \"amas\": \"amas\",\n  \"amasando\": \"amas\",\n  \"amateur\": \"amateur\",\n  \"amateurs\": \"amateurs\",\n  \"amatista\": \"amat\",\n  \"amatistas\": \"amat\",\n  \"amatorias\": \"amatori\",\n  \"ambas\": \"ambas\",\n  \"ambassador\": \"ambass\",\n  \"ambición\": \"ambicion\",\n  \"ambicionan\": \"ambicion\",\n  \"ambiciosa\": \"ambici\",\n  \"ambicioso\": \"ambici\",\n  \"ambiciosos\": \"ambici\",\n  \"ambientación\": \"ambient\",\n  \"ambiental\": \"ambiental\",\n  \"ambientales\": \"ambiental\",\n  \"ambientalista\": \"ambiental\",\n  \"ambientalistas\": \"ambiental\",\n  \"ambientalmente\": \"ambiental\",\n  \"ambientar\": \"ambient\",\n  \"ambiente\": \"ambient\",\n  \"ambientes\": \"ambient\",\n  \"ambigüedades\": \"ambigüedad\",\n  \"ámbito\": \"ambit\",\n  \"ámbitos\": \"ambit\",\n  \"ambos\": \"ambos\",\n  \"ambriz\": \"ambriz\",\n  \"ambrose\": \"ambros\",\n  \"ambrosio\": \"ambrosi\",\n  \"ambulancia\": \"ambul\",\n  \"ambulancias\": \"ambul\",\n  \"ambulantes\": \"ambul\",\n  \"ambulatorio\": \"ambulatori\",\n  \"amda\": \"amda\",\n  \"amen\": \"amen\",\n  \"amén\": \"amen\",\n  \"amenace\": \"amenac\",\n  \"amenaqzado\": \"amenaqz\",\n  \"amenaza\": \"amenaz\",\n  \"amenazaba\": \"amenaz\",\n  \"amenazadas\": \"amenaz\",\n  \"amenazado\": \"amenaz\",\n  \"amenazados\": \"amenaz\",\n  \"amenazan\": \"amenaz\",\n  \"amenazando\": \"amenaz\",\n  \"amenazar\": \"amenaz\",\n  \"amenazará\": \"amenaz\",\n  \"amenazaron\": \"amenaz\",\n  \"amenazas\": \"amenaz\",\n  \"amenazó\": \"amenaz\",\n  \"amenizador\": \"ameniz\",\n  \"ameno\": \"amen\",\n  \"america\": \"amer\",\n  \"américa\": \"amer\",\n  \"american\": \"americ\",\n  \"americana\": \"american\",\n  \"americanas\": \"american\",\n  \"americanismo\": \"american\",\n  \"americanista\": \"american\",\n  \"americanistas\": \"american\",\n  \"americano\": \"american\",\n  \"americanos\": \"american\",\n  \"américas\": \"amer\",\n  \"américo\": \"amer\",\n  \"amerimex\": \"amerimex\",\n  \"ameritaba\": \"amerit\",\n  \"ames\": \"ames\",\n  \"ametralladoras\": \"ametrall\",\n  \"amga\": \"amga\",\n  \"amieva\": \"amiev\",\n  \"amiga\": \"amig\",\n  \"amigabilidad\": \"amig\",\n  \"amigable\": \"amig\",\n  \"amigas\": \"amig\",\n  \"amigo\": \"amig\",\n  \"amigos\": \"amig\",\n  \"amigote\": \"amigot\",\n  \"amiguismos\": \"amigu\",\n  \"amiguita\": \"amiguit\",\n  \"aminoró\": \"aminor\",\n  \"amistad\": \"amist\",\n  \"amistades\": \"amistad\",\n  \"amistosa\": \"amist\",\n  \"amistosas\": \"amist\",\n  \"amistoso\": \"amist\",\n  \"amistosos\": \"amist\",\n  \"amnistía\": \"amnist\",\n  \"amo\": \"amo\",\n  \"amoldan\": \"amold\",\n  \"amonestaba\": \"amonest\",\n  \"amonestados\": \"amonest\",\n  \"amoniaco\": \"amoniac\",\n  \"amonio\": \"amoni\",\n  \"amontonada\": \"amonton\",\n  \"amor\": \"amor\",\n  \"amores\": \"amor\",\n  \"amoroso\": \"amor\",\n  \"amortiguadores\": \"amortigu\",\n  \"amosca\": \"amosc\",\n  \"amotinados\": \"amotin\",\n  \"amoxcalli\": \"amoxcalli\",\n  \"amp\": \"amp\",\n  \"amparado\": \"ampar\",\n  \"amparar\": \"ampar\",\n  \"ampararnos\": \"ampar\",\n  \"ampare\": \"ampar\",\n  \"amparo\": \"ampar\",\n  \"amparos\": \"ampar\",\n  \"amplia\": \"ampli\",\n  \"amplía\": \"ampli\",\n  \"ampliación\": \"ampliacion\",\n  \"ampliaciones\": \"ampliacion\",\n  \"ampliada\": \"ampli\",\n  \"ampliadas\": \"ampli\",\n  \"ampliado\": \"ampli\",\n  \"ampliados\": \"ampli\",\n  \"ampliamente\": \"ampli\",\n  \"ampliando\": \"ampli\",\n  \"ampliar\": \"ampli\",\n  \"ampliará\": \"ampli\",\n  \"ampliarán\": \"ampli\",\n  \"ampliarla\": \"ampli\",\n  \"ampliarse\": \"ampli\",\n  \"amplias\": \"ampli\",\n  \"amplíe\": \"ampli\",\n  \"amplio\": \"ampli\",\n  \"amplios\": \"ampli\",\n  \"amplitud\": \"amplitud\",\n  \"ampudia\": \"ampudi\",\n  \"amputaron\": \"amput\",\n  \"amueblar\": \"amuebl\",\n  \"amuelan\": \"amuel\",\n  \"an\": \"an\",\n  \"ana\": \"ana\",\n  \"anacaborca\": \"anacaborc\",\n  \"anacrónico\": \"anacron\",\n  \"añade\": \"añad\",\n  \"añadido\": \"añad\",\n  \"añadiendo\": \"añad\",\n  \"añadieron\": \"añad\",\n  \"añadió\": \"añad\",\n  \"anáhuac\": \"anahuac\",\n  \"analfabetas\": \"analfabet\",\n  \"analfabetismo\": \"analfabet\",\n  \"analice\": \"analic\",\n  \"analicen\": \"analic\",\n  \"análisis\": \"analisis\",\n  \"analista\": \"anal\",\n  \"analistas\": \"anal\",\n  \"analiza\": \"analiz\",\n  \"analizadas\": \"analiz\",\n  \"analizado\": \"analiz\",\n  \"analizados\": \"analiz\",\n  \"analizamos\": \"analiz\",\n  \"analizando\": \"analiz\",\n  \"analizándolo\": \"analiz\",\n  \"analizar\": \"analiz\",\n  \"analizará\": \"analiz\",\n  \"analizarán\": \"analiz\",\n  \"analizaría\": \"analiz\",\n  \"analizarla\": \"analiz\",\n  \"analizarlo\": \"analiz\",\n  \"analizaron\": \"analiz\",\n  \"analizarse\": \"analiz\",\n  \"analizó\": \"analiz\",\n  \"análogas\": \"analog\",\n  \"analogías\": \"analog\",\n  \"anamup\": \"anamup\",\n  \"anarquía\": \"anarqu\",\n  \"anatemas\": \"anatem\",\n  \"ancestrales\": \"ancestral\",\n  \"ancestro\": \"ancestr\",\n  \"ancestros\": \"ancestr\",\n  \"ancha\": \"ancha\",\n  \"anchas\": \"anchas\",\n  \"ancho\": \"ancho\",\n  \"anciana\": \"ancian\",\n  \"ancianas\": \"ancian\",\n  \"ancianitos\": \"ancianit\",\n  \"anciano\": \"ancian\",\n  \"ancianos\": \"ancian\",\n  \"ancira\": \"ancir\",\n  \"ancló\": \"anclo\",\n  \"and\": \"and\",\n  \"anda\": \"anda\",\n  \"andaba\": \"andab\",\n  \"andaban\": \"andab\",\n  \"andamos\": \"andam\",\n  \"andan\": \"andan\",\n  \"andar\": \"andar\",\n  \"andaría\": \"andar\",\n  \"ande\": \"ande\",\n  \"andei\": \"andei\",\n  \"anderson\": \"anderson\",\n  \"andes\": \"andes\",\n  \"andina\": \"andin\",\n  \"andino\": \"andin\",\n  \"ando\": \"ando\",\n  \"andrade\": \"andrad\",\n  \"andrea\": \"andre\",\n  \"andres\": \"andres\",\n  \"andrés\": \"andres\",\n  \"andrew\": \"andrew\",\n  \"anduvo\": \"anduv\",\n  \"anécdota\": \"anecdot\",\n  \"anemia\": \"anemi\",\n  \"anémica\": \"anem\",\n  \"anestesia\": \"anestesi\",\n  \"anexada\": \"anex\",\n  \"anexamos\": \"anex\",\n  \"anexas\": \"anex\",\n  \"anexos\": \"anex\",\n  \"anfibios\": \"anfibi\",\n  \"anfisbena\": \"anfisben\",\n  \"anfiteatro\": \"anfiteatr\",\n  \"anfitrión\": \"anfitrion\",\n  \"ánfora\": \"anfor\",\n  \"ánforas\": \"anfor\",\n  \"angel\": \"angel\",\n  \"ángel\": \"angel\",\n  \"angeles\": \"angel\",\n  \"ángeles\": \"angel\",\n  \"angélica\": \"angel\",\n  \"angélicas\": \"angel\",\n  \"angelina\": \"angelin\",\n  \"angelino\": \"angelin\",\n  \"angelito\": \"angelit\",\n  \"angelitos\": \"angelit\",\n  \"angelo\": \"angel\",\n  \"angelus\": \"angelus\",\n  \"angiosperma\": \"angiosperm\",\n  \"angiospermas\": \"angiosperm\",\n  \"anglicana\": \"anglican\",\n  \"anglo\": \"anglo\",\n  \"angola\": \"angol\",\n  \"angoleña\": \"angoleñ\",\n  \"angoleño\": \"angoleñ\",\n  \"angoleños\": \"angoleñ\",\n  \"angongueo\": \"angongue\",\n  \"angostura\": \"angostur\",\n  \"ángulo\": \"angul\",\n  \"angustia\": \"angusti\",\n  \"angustiada\": \"angusti\",\n  \"angustias\": \"angusti\",\n  \"angustió\": \"angust\",\n  \"anhatl\": \"anhatl\",\n  \"anhelado\": \"anhel\",\n  \"anhelo\": \"anhel\",\n  \"anillo\": \"anill\",\n  \"anima\": \"anim\",\n  \"animación\": \"anim\",\n  \"animal\": \"animal\",\n  \"animales\": \"animal\",\n  \"animalización\": \"animaliz\",\n  \"animar\": \"anim\",\n  \"animarán\": \"anim\",\n  \"anímica\": \"anim\",\n  \"anímicamente\": \"anim\",\n  \"ánimo\": \"anim\",\n  \"ánimos\": \"anim\",\n  \"aniversario\": \"aniversari\",\n  \"ann\": \"ann\",\n  \"anna\": \"anna\",\n  \"año\": \"año\",\n  \"anoche\": \"anoch\",\n  \"anochecer\": \"anochec\",\n  \"anonas\": \"anon\",\n  \"anónima\": \"anonim\",\n  \"anónimas\": \"anonim\",\n  \"anonimato\": \"anonimat\",\n  \"anónimo\": \"anonim\",\n  \"anónimos\": \"anon\",\n  \"años\": \"años\",\n  \"añosfueron\": \"añosfueron\",\n  \"anotaba\": \"anot\",\n  \"anotación\": \"anot\",\n  \"anotaciones\": \"anot\",\n  \"anotado\": \"anot\",\n  \"anotados\": \"anot\",\n  \"anotando\": \"anot\",\n  \"anotar\": \"anot\",\n  \"anotaron\": \"anot\",\n  \"anotarse\": \"anot\",\n  \"anote\": \"anot\",\n  \"anoten\": \"anot\",\n  \"anotó\": \"anot\",\n  \"anselmo\": \"anselm\",\n  \"ansias\": \"ansi\",\n  \"ansiedad\": \"ansied\",\n  \"ansioso\": \"ansios\",\n  \"anstee\": \"anste\",\n  \"antad\": \"antad\",\n  \"antaño\": \"antañ\",\n  \"ante\": \"ante\",\n  \"anteayer\": \"anteay\",\n  \"antebrazo\": \"antebraz\",\n  \"antecedente\": \"antecedent\",\n  \"antecedentes\": \"antecedent\",\n  \"antecesores\": \"antecesor\",\n  \"antemano\": \"anteman\",\n  \"anteo\": \"ante\",\n  \"anteojos\": \"anteoj\",\n  \"antepasado\": \"antepas\",\n  \"antepenúltimo\": \"antepenultim\",\n  \"anterior\": \"anterior\",\n  \"anteriores\": \"anterior\",\n  \"anterioridad\": \"anterior\",\n  \"anteriormente\": \"anterior\",\n  \"antes\": \"antes\",\n  \"antesala\": \"antesal\",\n  \"antesalista\": \"antesal\",\n  \"anthony\": \"anthony\",\n  \"anti\": \"anti\",\n  \"antiaéreas\": \"antiaer\",\n  \"anticipaba\": \"anticip\",\n  \"anticipación\": \"anticip\",\n  \"anticipada\": \"anticip\",\n  \"anticipadamente\": \"anticip\",\n  \"anticipadas\": \"anticip\",\n  \"anticipado\": \"anticip\",\n  \"anticipamos\": \"anticip\",\n  \"anticipando\": \"anticip\",\n  \"anticipar\": \"anticip\",\n  \"anticiparon\": \"anticip\",\n  \"anticipos\": \"anticip\",\n  \"anticonstitucional\": \"anticonstitucional\",\n  \"anticontaminante\": \"anticontamin\",\n  \"anticontaminantes\": \"anticontamin\",\n  \"anticristo\": \"anticrist\",\n  \"anticuarios\": \"anticuari\",\n  \"antidemocrática\": \"antidemocrat\",\n  \"antiderrapante\": \"antiderrap\",\n  \"antidoping\": \"antidoping\",\n  \"antidoto\": \"antidot\",\n  \"antídotos\": \"antidot\",\n  \"antidrogas\": \"antidrog\",\n  \"antidumping\": \"antidumping\",\n  \"antier\": \"anti\",\n  \"antiestrés\": \"antiestres\",\n  \"antigua\": \"antigu\",\n  \"antiguas\": \"antigu\",\n  \"antigüedad\": \"antigüed\",\n  \"antigüedades\": \"antigüedad\",\n  \"antiguo\": \"antigu\",\n  \"antiguos\": \"antigu\",\n  \"antillano\": \"antillan\",\n  \"antillanos\": \"antillan\",\n  \"antillas\": \"antill\",\n  \"antimonopolio\": \"antimonopoli\",\n  \"antinarcóticos\": \"antinarcot\",\n  \"antinépota\": \"antinepot\",\n  \"antioqueña\": \"antioqueñ\",\n  \"antiparasitaria\": \"antiparasitari\",\n  \"antipatía\": \"antipat\",\n  \"antisocial\": \"antisocial\",\n  \"antisubversiva\": \"antisubvers\",\n  \"antítesis\": \"antitesis\",\n  \"antoja\": \"antoj\",\n  \"antojo\": \"antoj\",\n  \"antonelli\": \"antonelli\",\n  \"antonin\": \"antonin\",\n  \"antonini\": \"antonini\",\n  \"antonio\": \"antoni\",\n  \"antorchista\": \"antorch\",\n  \"antropología\": \"antropolog\",\n  \"antropólogo\": \"antropolog\",\n  \"anual\": \"anual\",\n  \"anuales\": \"anual\",\n  \"anualmente\": \"anual\",\n  \"anulación\": \"anul\",\n  \"anuladas\": \"anul\",\n  \"anulados\": \"anul\",\n  \"anularlo\": \"anul\",\n  \"anuncia\": \"anunci\",\n  \"anunciaba\": \"anunci\",\n  \"anunciaban\": \"anunci\",\n  \"anunciada\": \"anunci\",\n  \"anunciadas\": \"anunci\",\n  \"anunciado\": \"anunci\",\n  \"anunciados\": \"anunci\",\n  \"anuncian\": \"anunci\",\n  \"anunciando\": \"anunci\",\n  \"anunciar\": \"anunci\",\n  \"anunciará\": \"anunci\",\n  \"anunciarlo\": \"anunci\",\n  \"anunciaron\": \"anunci\",\n  \"anuncio\": \"anunci\",\n  \"anunció\": \"anunc\",\n  \"anuncios\": \"anunci\",\n  \"anzuelo\": \"anzuel\",\n  \"anzuelos\": \"anzuel\",\n  \"ap\": \"ap\",\n  \"apabulló\": \"apabull\",\n  \"apaches\": \"apach\",\n  \"apacible\": \"apac\",\n  \"apaga\": \"apag\",\n  \"apagados\": \"apag\",\n  \"apagan\": \"apag\",\n  \"apagará\": \"apag\",\n  \"apagó\": \"apag\",\n  \"apagón\": \"apagon\",\n  \"apaleó\": \"apale\",\n  \"aparadores\": \"apar\",\n  \"aparato\": \"aparat\",\n  \"aparatos\": \"aparat\",\n  \"aparatosa\": \"aparat\",\n  \"aparcar\": \"aparc\",\n  \"aparece\": \"aparec\",\n  \"aparecen\": \"aparec\",\n  \"aparecer\": \"aparec\",\n  \"aparecía\": \"aparec\",\n  \"aparecidas\": \"aparec\",\n  \"aparecido\": \"aparec\",\n  \"apareciendo\": \"aparec\",\n  \"apareciera\": \"aparec\",\n  \"aparecieron\": \"aparec\",\n  \"apareció\": \"aparec\",\n  \"aparentan\": \"aparent\",\n  \"aparentar\": \"aparent\",\n  \"aparente\": \"aparent\",\n  \"aparentemente\": \"aparent\",\n  \"aparentes\": \"aparent\",\n  \"aparentó\": \"aparent\",\n  \"aparezca\": \"aparezc\",\n  \"aparezcan\": \"aparezc\",\n  \"aparición\": \"aparicion\",\n  \"apariciones\": \"aparicion\",\n  \"apariencia\": \"aparient\",\n  \"apariencias\": \"aparient\",\n  \"apartado\": \"apart\",\n  \"apartados\": \"apart\",\n  \"apartamento\": \"apartament\",\n  \"apartamentos\": \"apartament\",\n  \"apartan\": \"apart\",\n  \"aparte\": \"apart\",\n  \"apasionadamente\": \"apasion\",\n  \"apasionado\": \"apasion\",\n  \"apasionamiento\": \"apasion\",\n  \"apasionantes\": \"apasion\",\n  \"apatía\": \"apat\",\n  \"apáticas\": \"apat\",\n  \"apáticos\": \"apat\",\n  \"apedrean\": \"apedr\",\n  \"apegada\": \"apeg\",\n  \"apegadas\": \"apeg\",\n  \"apegan\": \"apeg\",\n  \"apegarnos\": \"apeg\",\n  \"apegarse\": \"apeg\",\n  \"apego\": \"apeg\",\n  \"apelación\": \"apel\",\n  \"apelaciones\": \"apel\",\n  \"apelar\": \"apel\",\n  \"apelarán\": \"apel\",\n  \"apelativos\": \"apel\",\n  \"apellido\": \"apell\",\n  \"apelo\": \"apel\",\n  \"apenado\": \"apen\",\n  \"apenaron\": \"apen\",\n  \"apenas\": \"apen\",\n  \"apéndice\": \"apendic\",\n  \"apendicitis\": \"apendicitis\",\n  \"apertura\": \"apertur\",\n  \"apetito\": \"apetit\",\n  \"apizaco\": \"apizac\",\n  \"aplacarlos\": \"aplac\",\n  \"aplasta\": \"aplast\",\n  \"aplastada\": \"aplast\",\n  \"aplastaron\": \"aplast\",\n  \"aplaude\": \"aplaud\",\n  \"aplaudiendo\": \"aplaud\",\n  \"aplaudieran\": \"aplaud\",\n  \"aplaudieron\": \"aplaud\",\n  \"aplaudió\": \"aplaud\",\n  \"aplaudir\": \"aplaud\",\n  \"aplaudirán\": \"aplaud\",\n  \"aplauso\": \"aplaus\",\n  \"aplausos\": \"aplaus\",\n  \"aplaza\": \"aplaz\",\n  \"aplazada\": \"aplaz\",\n  \"aplazamiento\": \"aplaz\",\n  \"aplazó\": \"aplaz\",\n  \"aplica\": \"aplic\",\n  \"aplicables\": \"aplic\",\n  \"aplicación\": \"aplic\",\n  \"aplicaciones\": \"aplic\",\n  \"aplicada\": \"aplic\",\n  \"aplicado\": \"aplic\",\n  \"aplicados\": \"aplic\",\n  \"aplican\": \"aplic\",\n  \"aplicar\": \"aplic\",\n  \"aplicara\": \"aplic\",\n  \"aplicará\": \"aplic\",\n  \"aplicáramos\": \"aplic\",\n  \"aplicarán\": \"aplic\",\n  \"aplicaríamos\": \"aplic\",\n  \"aplicarla\": \"aplic\",\n  \"aplicarle\": \"aplic\",\n  \"aplicarlos\": \"aplic\",\n  \"aplicaron\": \"aplic\",\n  \"aplicarse\": \"aplic\",\n  \"aplico\": \"aplic\",\n  \"aplicó\": \"aplic\",\n  \"aplique\": \"apliqu\",\n  \"apliquen\": \"apliqu\",\n  \"apo\": \"apo\",\n  \"apocada\": \"apoc\",\n  \"apocalipsis\": \"apocalipsis\",\n  \"apocalíptica\": \"apocalipt\",\n  \"apocalípticas\": \"apocalipt\",\n  \"apócrifo\": \"apocrif\",\n  \"apoda\": \"apod\",\n  \"apodaban\": \"apod\",\n  \"apodaca\": \"apodac\",\n  \"apodado\": \"apod\",\n  \"apoderado\": \"apoder\",\n  \"apoderándose\": \"apoder\",\n  \"apoderaron\": \"apoder\",\n  \"apoderó\": \"apoder\",\n  \"apodo\": \"apod\",\n  \"apogeo\": \"apoge\",\n  \"apoplejía\": \"apoplej\",\n  \"apoquinar\": \"apoquin\",\n  \"aporta\": \"aport\",\n  \"aportación\": \"aport\",\n  \"aportaciones\": \"aport\",\n  \"aportado\": \"aport\",\n  \"aportamos\": \"aport\",\n  \"aportan\": \"aport\",\n  \"aportando\": \"aport\",\n  \"aportar\": \"aport\",\n  \"aportará\": \"aport\",\n  \"aportaron\": \"aport\",\n  \"aporte\": \"aport\",\n  \"aporten\": \"aport\",\n  \"aportó\": \"aport\",\n  \"aposentos\": \"aposent\",\n  \"apostados\": \"apost\",\n  \"apostamos\": \"apost\",\n  \"apostar\": \"apost\",\n  \"apostemos\": \"apost\",\n  \"apostó\": \"apost\",\n  \"apóstoles\": \"apostol\",\n  \"apostólica\": \"apostol\",\n  \"apostólico\": \"apostol\",\n  \"apoya\": \"apoy\",\n  \"apoyaban\": \"apoy\",\n  \"apoyada\": \"apoy\",\n  \"apoyado\": \"apoy\",\n  \"apoyados\": \"apoy\",\n  \"apoyamos\": \"apoy\",\n  \"apoyan\": \"apoy\",\n  \"apoyando\": \"apoy\",\n  \"apoyándola\": \"apoy\",\n  \"apoyándonos\": \"apoy\",\n  \"apoyándose\": \"apoy\",\n  \"apoyar\": \"apoy\",\n  \"apoyara\": \"apoy\",\n  \"apoyará\": \"apoy\",\n  \"apoyarán\": \"apoy\",\n  \"apoyaremos\": \"apoy\",\n  \"apoyaría\": \"apoy\",\n  \"apoyarian\": \"apoyari\",\n  \"apoyarlo\": \"apoy\",\n  \"apoyaron\": \"apoy\",\n  \"apoyasen\": \"apoy\",\n  \"apoye\": \"apoy\",\n  \"apoyen\": \"apoy\",\n  \"apoyo\": \"apoy\",\n  \"apoyó\": \"apoy\",\n  \"apoyos\": \"apoy\",\n  \"appel\": \"appel\",\n  \"apple\": \"apple\",\n  \"apra\": \"apra\",\n  \"aprecia\": \"apreci\",\n  \"apreciación\": \"apreci\",\n  \"apreciada\": \"apreci\",\n  \"apreciado\": \"apreci\",\n  \"apreciar\": \"apreci\",\n  \"apreciarlo\": \"apreci\",\n  \"apreciaron\": \"apreci\",\n  \"apreciarse\": \"apreci\",\n  \"aprecio\": \"apreci\",\n  \"apreció\": \"aprec\",\n  \"aprehendido\": \"aprehend\",\n  \"aprehension\": \"aprehension\",\n  \"aprehensión\": \"aprehension\",\n  \"aprehensiones\": \"aprehension\",\n  \"aprehensores\": \"aprehensor\",\n  \"aprenda\": \"aprend\",\n  \"aprendan\": \"aprend\",\n  \"aprende\": \"aprend\",\n  \"aprenden\": \"aprend\",\n  \"aprender\": \"aprend\",\n  \"aprenderá\": \"aprend\",\n  \"aprenderlo\": \"aprend\",\n  \"aprendices\": \"aprendic\",\n  \"aprendido\": \"aprend\",\n  \"aprendiendo\": \"aprend\",\n  \"aprendieron\": \"aprend\",\n  \"aprendió\": \"aprend\",\n  \"aprendiste\": \"aprend\",\n  \"aprendizaje\": \"aprendizaj\",\n  \"aprestos\": \"aprest\",\n  \"apresura\": \"apresur\",\n  \"apresuradamente\": \"apresur\",\n  \"apresurado\": \"apresur\",\n  \"apresuramiento\": \"apresur\",\n  \"apresurando\": \"apresur\",\n  \"apresurar\": \"apresur\",\n  \"apresuró\": \"apresur\",\n  \"apretado\": \"apret\",\n  \"apretamos\": \"apret\",\n  \"apretar\": \"apret\",\n  \"apretarlo\": \"apret\",\n  \"apretaron\": \"apret\",\n  \"apretó\": \"apret\",\n  \"apretón\": \"apreton\",\n  \"aprieta\": \"apriet\",\n  \"apriete\": \"apriet\",\n  \"aprieten\": \"apriet\",\n  \"aprietos\": \"apriet\",\n  \"apro\": \"apro\",\n  \"aprobación\": \"aprob\",\n  \"aprobada\": \"aprob\",\n  \"aprobadas\": \"aprob\",\n  \"aprobado\": \"aprob\",\n  \"aprobados\": \"aprob\",\n  \"aprobar\": \"aprob\",\n  \"aprobará\": \"aprob\",\n  \"aprobarán\": \"aprob\",\n  \"aprobaron\": \"aprob\",\n  \"aprobarse\": \"aprob\",\n  \"aprobatorio\": \"aprobatori\",\n  \"aprobó\": \"aprob\",\n  \"apropiada\": \"apropi\",\n  \"apropiadamente\": \"apropi\",\n  \"apropiadas\": \"apropi\",\n  \"apropiado\": \"apropi\",\n  \"apropiados\": \"apropi\",\n  \"apropian\": \"apropi\",\n  \"aprovecha\": \"aprovech\",\n  \"aprovechado\": \"aprovech\",\n  \"aprovechamiento\": \"aprovech\",\n  \"aprovechan\": \"aprovech\",\n  \"aprovechando\": \"aprovech\",\n  \"aprovechar\": \"aprovech\",\n  \"aprovecharán\": \"aprovech\",\n  \"aprovecharla\": \"aprovech\",\n  \"aprovecharlas\": \"aprovech\",\n  \"aprovecharon\": \"aprovech\",\n  \"aprovecharse\": \"aprovech\",\n  \"aproveche\": \"aprovech\",\n  \"aprovechó\": \"aprovech\",\n  \"aproximaba\": \"aproxim\",\n  \"aproximación\": \"aproxim\",\n  \"aproximada\": \"aproxim\",\n  \"aproximadamente\": \"aproxim\",\n  \"aproximado\": \"aproxim\",\n  \"aproximados\": \"aproxim\",\n  \"aproximan\": \"aproxim\",\n  \"aprueba\": \"aprueb\",\n  \"aprueban\": \"aprueb\",\n  \"apruebe\": \"aprueb\",\n  \"aprueben\": \"aprueb\",\n  \"aptas\": \"aptas\",\n  \"aptitud\": \"aptitud\",\n  \"aptitudes\": \"aptitud\",\n  \"aptos\": \"aptos\",\n  \"apuesta\": \"apuest\",\n  \"apuestas\": \"apuest\",\n  \"apuesto\": \"apuest\",\n  \"apuestos\": \"apuest\",\n  \"apunta\": \"apunt\",\n  \"apuntalado\": \"apuntal\",\n  \"apuntalar\": \"apuntal\",\n  \"apuntan\": \"apunt\",\n  \"apuntar\": \"apunt\",\n  \"apuntaron\": \"apunt\",\n  \"apuntes\": \"apunt\",\n  \"apuntó\": \"apunt\",\n  \"aquel\": \"aquel\",\n  \"aquél\": \"aquel\",\n  \"aquelarre\": \"aquelarr\",\n  \"aquelarres\": \"aquelarr\",\n  \"aquella\": \"aquell\",\n  \"aquellas\": \"aquell\",\n  \"aquéllas\": \"aquell\",\n  \"aquello\": \"aquell\",\n  \"aquellos\": \"aquell\",\n  \"aquéllos\": \"aquell\",\n  \"aqui\": \"aqui\",\n  \"aquí\": \"aqu\",\n  \"aquiles\": \"aquil\",\n  \"aquino\": \"aquin\",\n  \"arabe\": \"arab\",\n  \"árabe\": \"arab\",\n  \"árabes\": \"arab\",\n  \"arábiga\": \"arabig\",\n  \"arado\": \"arad\",\n  \"aragón\": \"aragon\",\n  \"aragua\": \"aragu\",\n  \"araiza\": \"araiz\",\n  \"arana\": \"aran\",\n  \"arañas\": \"arañ\",\n  \"arancel\": \"arancel\",\n  \"arancelarias\": \"arancelari\",\n  \"aranceles\": \"arancel\",\n  \"aranda\": \"arand\",\n  \"arango\": \"arang\",\n  \"aranjuez\": \"aranjuez\",\n  \"aras\": \"aras\",\n  \"arau\": \"arau\",\n  \"araujo\": \"arauj\",\n  \"arbitraje\": \"arbitraj\",\n  \"arbitral\": \"arbitral\",\n  \"arbitraria\": \"arbitrari\",\n  \"arbitrarias\": \"arbitrari\",\n  \"arbitrariedades\": \"arbitrariedad\",\n  \"arbitrario\": \"arbitrari\",\n  \"arbitrio\": \"arbitri\",\n  \"árbitro\": \"arbitr\",\n  \"árbitros\": \"arbitr\",\n  \"árbol\": \"arbol\",\n  \"arboles\": \"arbol\",\n  \"árboles\": \"arbol\",\n  \"arbusto\": \"arbust\",\n  \"arcadio\": \"arcadi\",\n  \"arcángeles\": \"arcangel\",\n  \"archaelogy\": \"archaelogy\",\n  \"archiconservadores\": \"archiconserv\",\n  \"archiduque\": \"archiduqu\",\n  \"archipiélago\": \"archipielag\",\n  \"archivada\": \"archiv\",\n  \"archivo\": \"archiv\",\n  \"archundia\": \"archundi\",\n  \"arcilla\": \"arcill\",\n  \"arcillistas\": \"arcill\",\n  \"arco\": \"arco\",\n  \"arcoiris\": \"arcoiris\",\n  \"arcusa\": \"arcus\",\n  \"ardía\": \"ardi\",\n  \"ardiente\": \"ardient\",\n  \"ardientes\": \"ardient\",\n  \"arduo\": \"ardu\",\n  \"área\": \"are\",\n  \"areas\": \"are\",\n  \"áreas\": \"are\",\n  \"arellanes\": \"arellan\",\n  \"arena\": \"aren\",\n  \"arenal\": \"arenal\",\n  \"areoportuarias\": \"areoportuari\",\n  \"aretes\": \"aret\",\n  \"arévalo\": \"areval\",\n  \"argentina\": \"argentin\",\n  \"argentinabrasil\": \"argentinabrasil\",\n  \"argentino\": \"argentin\",\n  \"argentinos\": \"argentin\",\n  \"argoytia\": \"argoyti\",\n  \"argudín\": \"argudin\",\n  \"arguelles\": \"arguell\",\n  \"argumenta\": \"argument\",\n  \"argumentando\": \"argument\",\n  \"argumentar\": \"argument\",\n  \"argumentarán\": \"argument\",\n  \"argumentaron\": \"argument\",\n  \"argumento\": \"argument\",\n  \"argumentó\": \"argument\",\n  \"argumentos\": \"argument\",\n  \"arias\": \"ari\",\n  \"ariel\": \"ariel\",\n  \"ariete\": \"ariet\",\n  \"arista\": \"arist\",\n  \"aristócratas\": \"aristocrat\",\n  \"aristóteles\": \"aristotel\",\n  \"aritmética\": \"aritmet\",\n  \"aritmético\": \"aritmet\",\n  \"arizmendi\": \"arizmendi\",\n  \"arizona\": \"arizon\",\n  \"arkansas\": \"arkans\",\n  \"arlette\": \"arlett\",\n  \"arma\": \"arma\",\n  \"armada\": \"armad\",\n  \"armadas\": \"armad\",\n  \"armadillo\": \"armadill\",\n  \"armado\": \"armad\",\n  \"armadoras\": \"armador\",\n  \"armados\": \"armad\",\n  \"armagedón\": \"armagedon\",\n  \"armamento\": \"armament\",\n  \"armamentos\": \"armament\",\n  \"armando\": \"armand\",\n  \"armani\": \"armani\",\n  \"armar\": \"armar\",\n  \"armas\": \"armas\",\n  \"armella\": \"armell\",\n  \"armendáriz\": \"armendariz\",\n  \"armenio\": \"armeni\",\n  \"armillita\": \"armillit\",\n  \"armisticio\": \"armistici\",\n  \"armó\": \"armo\",\n  \"armonía\": \"armon\",\n  \"armónica\": \"armon\",\n  \"armónico\": \"armon\",\n  \"armoniosa\": \"armoni\",\n  \"armonización\": \"armoniz\",\n  \"armonizar\": \"armoniz\",\n  \"armonizarse\": \"armoniz\",\n  \"armstrong\": \"armstrong\",\n  \"army\": \"army\",\n  \"arnaldo\": \"arnald\",\n  \"arnoldo\": \"arnold\",\n  \"arnulfo\": \"arnulf\",\n  \"aromas\": \"arom\",\n  \"aromatizantes\": \"aromatiz\",\n  \"aromatizar\": \"aromatiz\",\n  \"aros\": \"aros\",\n  \"arq\": \"arq\",\n  \"arqueóloga\": \"arqueolog\",\n  \"arqueología\": \"arqueolog\",\n  \"arqueológica\": \"arqueolog\",\n  \"arqueológicas\": \"arqueolog\",\n  \"arqueológico\": \"arqueolog\",\n  \"arqueológicos\": \"arqueolog\",\n  \"arqueólogos\": \"arqueolog\",\n  \"arquero\": \"arquer\",\n  \"arquidiócesis\": \"arquidiocesis\",\n  \"arquitecto\": \"arquitect\",\n  \"arquitectónicamente\": \"arquitecton\",\n  \"arquitectónicas\": \"arquitecton\",\n  \"arquitectónico\": \"arquitecton\",\n  \"arquitectos\": \"arquitect\",\n  \"arquitectura\": \"arquitectur\",\n  \"arquitecturas\": \"arquitectur\",\n  \"arracadas\": \"arrac\",\n  \"arrachera\": \"arracher\",\n  \"arraigada\": \"arraig\",\n  \"arraigado\": \"arraig\",\n  \"arraigo\": \"arraig\",\n  \"arrambide\": \"arrambid\",\n  \"arranca\": \"arranc\",\n  \"arrancados\": \"arranc\",\n  \"arrancando\": \"arranc\",\n  \"arrancar\": \"arranc\",\n  \"arrancará\": \"arranc\",\n  \"arrancarán\": \"arranc\",\n  \"arrancaremos\": \"arranc\",\n  \"arrancaron\": \"arranc\",\n  \"arrancárselo\": \"arranc\",\n  \"arrancó\": \"arranc\",\n  \"arranque\": \"arranqu\",\n  \"arrasaron\": \"arras\",\n  \"arrastrada\": \"arrastr\",\n  \"arrastrados\": \"arrastr\",\n  \"arrastrando\": \"arrastr\",\n  \"arrastre\": \"arrastr\",\n  \"arrastró\": \"arrastr\",\n  \"arreaga\": \"arreag\",\n  \"arrear\": \"arre\",\n  \"arrebatada\": \"arrebat\",\n  \"arrebatar\": \"arrebat\",\n  \"arrebatara\": \"arrebat\",\n  \"arrebató\": \"arrebat\",\n  \"arredondo\": \"arredond\",\n  \"arredra\": \"arredr\",\n  \"arregla\": \"arregl\",\n  \"arreglada\": \"arregl\",\n  \"arreglan\": \"arregl\",\n  \"arreglar\": \"arregl\",\n  \"arreglaran\": \"arregl\",\n  \"arreglarse\": \"arregl\",\n  \"arreglas\": \"arregl\",\n  \"arreglo\": \"arregl\",\n  \"arregló\": \"arregl\",\n  \"arreglos\": \"arregl\",\n  \"arremangó\": \"arremang\",\n  \"arremetió\": \"arremet\",\n  \"arrendaba\": \"arrend\",\n  \"arrendador\": \"arrend\",\n  \"arrendadora\": \"arrend\",\n  \"arrendadoras\": \"arrend\",\n  \"arrendamiento\": \"arrend\",\n  \"arrendamientos\": \"arrend\",\n  \"arrendatario\": \"arrendatari\",\n  \"arreola\": \"arreol\",\n  \"arrepentido\": \"arrepent\",\n  \"arrepentimiento\": \"arrepent\",\n  \"arrepiente\": \"arrepient\",\n  \"arrestado\": \"arrest\",\n  \"arrestados\": \"arrest\",\n  \"arrested\": \"arrest\",\n  \"arresto\": \"arrest\",\n  \"arrestó\": \"arrest\",\n  \"arrestos\": \"arrest\",\n  \"arriaga\": \"arriag\",\n  \"arriba\": \"arrib\",\n  \"arribo\": \"arrib\",\n  \"arribó\": \"arrib\",\n  \"arriesga\": \"arriesg\",\n  \"arriesgada\": \"arriesg\",\n  \"arriesgado\": \"arriesg\",\n  \"arriesgamos\": \"arriesg\",\n  \"arriesgando\": \"arriesg\",\n  \"arriesgar\": \"arriesg\",\n  \"arriesgarían\": \"arriesg\",\n  \"arriesgarlo\": \"arriesg\",\n  \"arriesgarse\": \"arriesg\",\n  \"arrimo\": \"arrim\",\n  \"arrivederci\": \"arrivederci\",\n  \"arrobamiento\": \"arrob\",\n  \"arrodillar\": \"arrodill\",\n  \"arrogante\": \"arrog\",\n  \"arroja\": \"arroj\",\n  \"arrojaban\": \"arroj\",\n  \"arrojada\": \"arroj\",\n  \"arrojado\": \"arroj\",\n  \"arrojados\": \"arroj\",\n  \"arrojan\": \"arroj\",\n  \"arrojando\": \"arroj\",\n  \"arrojar\": \"arroj\",\n  \"arrojarlos\": \"arroj\",\n  \"arrojaron\": \"arroj\",\n  \"arrojen\": \"arroj\",\n  \"arrojó\": \"arroj\",\n  \"arrolladas\": \"arroll\",\n  \"arrollado\": \"arroll\",\n  \"arrolló\": \"arroll\",\n  \"arropados\": \"arrop\",\n  \"arrópese\": \"arropes\",\n  \"arroyo\": \"arroy\",\n  \"arroyó\": \"arroy\",\n  \"arroyos\": \"arroy\",\n  \"arroz\": \"arroz\",\n  \"arrugas\": \"arrug\",\n  \"arruinado\": \"arruin\",\n  \"arruinan\": \"arruin\",\n  \"arruinarse\": \"arruin\",\n  \"arrutinamos\": \"arrutin\",\n  \"arsenio\": \"arseni\",\n  \"art\": \"art\",\n  \"arte\": \"arte\",\n  \"arteaga\": \"arteag\",\n  \"artefacto\": \"artefact\",\n  \"artemio\": \"artemi\",\n  \"arteria\": \"arteri\",\n  \"arterias\": \"arteri\",\n  \"arterioesclerosis\": \"arterioesclerosis\",\n  \"arteroesclerosis\": \"arteroesclerosis\",\n  \"artes\": \"artes\",\n  \"artesanal\": \"artesanal\",\n  \"artesanales\": \"artesanal\",\n  \"artesanas\": \"artesan\",\n  \"artesanías\": \"artesan\",\n  \"artesianos\": \"artesian\",\n  \"arthur\": \"arthur\",\n  \"articulación\": \"articul\",\n  \"articulado\": \"articul\",\n  \"artículo\": \"articul\",\n  \"artículos\": \"articul\",\n  \"artífice\": \"artific\",\n  \"artificial\": \"artificial\",\n  \"artificiales\": \"artificial\",\n  \"artificialmente\": \"artificial\",\n  \"artificio\": \"artifici\",\n  \"artillería\": \"artill\",\n  \"artilleros\": \"artiller\",\n  \"artista\": \"artist\",\n  \"artistas\": \"artist\",\n  \"artística\": \"artist\",\n  \"artísticas\": \"artist\",\n  \"artístico\": \"artist\",\n  \"artísticos\": \"artist\",\n  \"arturo\": \"artur\",\n  \"arvernse\": \"arverns\",\n  \"aryca\": \"aryca\",\n  \"arzobispal\": \"arzobispal\",\n  \"arzobispo\": \"arzobisp\",\n  \"as\": \"as\",\n  \"asa\": \"asa\",\n  \"asada\": \"asad\",\n  \"asadas\": \"asad\",\n  \"asaltaba\": \"asalt\",\n  \"asaltada\": \"asalt\",\n  \"asaltado\": \"asalt\",\n  \"asaltados\": \"asalt\",\n  \"asaltan\": \"asalt\",\n  \"asaltante\": \"asalt\",\n  \"asaltantes\": \"asalt\",\n  \"asaltar\": \"asalt\",\n  \"asaltaron\": \"asalt\",\n  \"asalto\": \"asalt\",\n  \"asaltó\": \"asalt\",\n  \"asaltos\": \"asalt\",\n  \"asamblea\": \"asamble\",\n  \"asambleas\": \"asambl\",\n  \"asambleísas\": \"asambleis\",\n  \"ascencio\": \"ascenci\",\n  \"ascendencia\": \"ascendent\",\n  \"ascendente\": \"ascendent\",\n  \"ascenderá\": \"ascend\",\n  \"ascenderían\": \"ascend\",\n  \"ascendido\": \"ascend\",\n  \"ascendiendo\": \"ascend\",\n  \"ascendieron\": \"ascend\",\n  \"ascendió\": \"ascend\",\n  \"ascenso\": \"ascens\",\n  \"ascensos\": \"ascens\",\n  \"asciende\": \"asciend\",\n  \"ascienden\": \"asciend\",\n  \"aseados\": \"ase\",\n  \"asegura\": \"asegur\",\n  \"aseguraba\": \"asegur\",\n  \"asegurada\": \"asegur\",\n  \"aseguradas\": \"asegur\",\n  \"asegurado\": \"asegur\",\n  \"aseguradora\": \"asegur\",\n  \"asegurados\": \"asegur\",\n  \"aseguramiento\": \"asegur\",\n  \"aseguran\": \"asegur\",\n  \"asegurar\": \"asegur\",\n  \"aseguraremos\": \"asegur\",\n  \"asegurarle\": \"asegur\",\n  \"aseguraron\": \"asegur\",\n  \"aseguren\": \"asegur\",\n  \"asegúrese\": \"asegures\",\n  \"aseguró\": \"asegur\",\n  \"asemeja\": \"asemej\",\n  \"asemejaba\": \"asemej\",\n  \"asemex\": \"asemex\",\n  \"asención\": \"asencion\",\n  \"asentadas\": \"asent\",\n  \"asentado\": \"asent\",\n  \"asentamiento\": \"asent\",\n  \"asentamientos\": \"asent\",\n  \"asentándose\": \"asent\",\n  \"asentó\": \"asent\",\n  \"asertivo\": \"asert\",\n  \"ases\": \"ases\",\n  \"asesinada\": \"asesin\",\n  \"asesinado\": \"asesin\",\n  \"asesinar\": \"asesin\",\n  \"asesinaron\": \"asesin\",\n  \"asesinato\": \"asesinat\",\n  \"asesinatos\": \"asesinat\",\n  \"asesino\": \"asesin\",\n  \"asesinó\": \"asesin\",\n  \"asesinos\": \"asesin\",\n  \"asesor\": \"asesor\",\n  \"asesora\": \"asesor\",\n  \"asesoraban\": \"asesor\",\n  \"asesorado\": \"asesor\",\n  \"asesoramiento\": \"asesor\",\n  \"asesorar\": \"asesor\",\n  \"asesorarlo\": \"asesor\",\n  \"asesores\": \"asesor\",\n  \"asesoría\": \"asesor\",\n  \"asestadas\": \"asest\",\n  \"asestó\": \"asest\",\n  \"asevera\": \"asever\",\n  \"aseverando\": \"asever\",\n  \"aseveraron\": \"asever\",\n  \"aseveró\": \"asever\",\n  \"asfalto\": \"asfalt\",\n  \"asfixia\": \"asfixi\",\n  \"ashida\": \"ashid\",\n  \"asi\": \"asi\",\n  \"así\": \"asi\",\n  \"asia\": \"asi\",\n  \"asiático\": \"asiat\",\n  \"asic\": \"asic\",\n  \"asiduo\": \"asidu\",\n  \"asienta\": \"asient\",\n  \"asiento\": \"asient\",\n  \"asientos\": \"asient\",\n  \"asigna\": \"asign\",\n  \"asignación\": \"asign\",\n  \"asignadas\": \"asign\",\n  \"asignado\": \"asign\",\n  \"asignados\": \"asign\",\n  \"asignan\": \"asign\",\n  \"asignando\": \"asign\",\n  \"asignar\": \"asign\",\n  \"asignaron\": \"asign\",\n  \"asignen\": \"asign\",\n  \"asimétrica\": \"asimetr\",\n  \"asimilación\": \"asimil\",\n  \"asimilar\": \"asimil\",\n  \"asimilemos\": \"asimil\",\n  \"asimismo\": \"asim\",\n  \"asímismo\": \"asim\",\n  \"asista\": \"asist\",\n  \"asistan\": \"asist\",\n  \"asiste\": \"asist\",\n  \"asisten\": \"asist\",\n  \"asistencia\": \"asistent\",\n  \"asistenciales\": \"asistencial\",\n  \"asistencias\": \"asistent\",\n  \"asistentes\": \"asistent\",\n  \"asistían\": \"asist\",\n  \"asistiendo\": \"asist\",\n  \"asistiéndose\": \"asist\",\n  \"asistiera\": \"asist\",\n  \"asistieron\": \"asist\",\n  \"asistió\": \"asist\",\n  \"asistir\": \"asist\",\n  \"asistirá\": \"asist\",\n  \"asistirán\": \"asist\",\n  \"asitex\": \"asitex\",\n  \"asocia\": \"asoci\",\n  \"asociación\": \"asoci\",\n  \"asociaciones\": \"asoci\",\n  \"asociada\": \"asoci\",\n  \"asociado\": \"asoci\",\n  \"asociados\": \"asoci\",\n  \"asocian\": \"asoci\",\n  \"asociar\": \"asoci\",\n  \"asociaron\": \"asoci\",\n  \"asociarse\": \"asoci\",\n  \"asombra\": \"asombr\",\n  \"asombradas\": \"asombr\",\n  \"asómbrese\": \"asombres\",\n  \"asombro\": \"asombr\",\n  \"asombrosa\": \"asombr\",\n  \"asombrosamente\": \"asombr\",\n  \"asómese\": \"asomes\",\n  \"asomo\": \"asom\",\n  \"asomó\": \"asom\",\n  \"asotiation\": \"asotiation\",\n  \"aspavientos\": \"aspavient\",\n  \"aspe\": \"aspe\",\n  \"aspecto\": \"aspect\",\n  \"aspectos\": \"aspect\",\n  \"ásperamente\": \"asper\",\n  \"áspero\": \"asper\",\n  \"aspersión\": \"aspersion\",\n  \"aspes\": \"aspes\",\n  \"aspetia\": \"aspeti\",\n  \"aspira\": \"aspir\",\n  \"aspiraciones\": \"aspir\",\n  \"aspiran\": \"aspir\",\n  \"aspirante\": \"aspir\",\n  \"aspirantes\": \"aspir\",\n  \"aspirar\": \"aspir\",\n  \"aspirara\": \"aspir\",\n  \"assessment\": \"assessment\",\n  \"associates\": \"associat\",\n  \"association\": \"association\",\n  \"astado\": \"astad\",\n  \"asteroide\": \"asteroid\",\n  \"asteroides\": \"asteroid\",\n  \"astro\": \"astro\",\n  \"astroditomas\": \"astroditom\",\n  \"astrología\": \"astrolog\",\n  \"astrológico\": \"astrolog\",\n  \"astronautas\": \"astronaut\",\n  \"astronómicos\": \"astronom\",\n  \"astros\": \"astros\",\n  \"asuma\": \"asum\",\n  \"asuman\": \"asum\",\n  \"asume\": \"asum\",\n  \"asumen\": \"asum\",\n  \"asumido\": \"asum\",\n  \"asumiendo\": \"asum\",\n  \"asumiera\": \"asum\",\n  \"asumieron\": \"asum\",\n  \"asumimos\": \"asum\",\n  \"asumió\": \"asum\",\n  \"asumir\": \"asum\",\n  \"asumirá\": \"asum\",\n  \"asuntito\": \"asuntit\",\n  \"asunto\": \"asunt\",\n  \"asuntos\": \"asunt\",\n  \"asustada\": \"asust\",\n  \"asustado\": \"asust\",\n  \"asustar\": \"asust\",\n  \"asuste\": \"asust\",\n  \"asusten\": \"asust\",\n  \"at\": \"at\",\n  \"ataca\": \"atac\",\n  \"atacada\": \"atac\",\n  \"atacado\": \"atac\",\n  \"atacados\": \"atac\",\n  \"atacan\": \"atac\",\n  \"atacando\": \"atac\",\n  \"atacándolo\": \"atac\",\n  \"atacante\": \"atac\",\n  \"atacantes\": \"atac\",\n  \"atacar\": \"atac\",\n  \"atacará\": \"atac\",\n  \"atacarán\": \"atac\",\n  \"atacarlos\": \"atac\",\n  \"atacaron\": \"atac\",\n  \"atacas\": \"atac\",\n  \"atacó\": \"atac\",\n  \"atadas\": \"atad\",\n  \"atados\": \"atad\",\n  \"atanasio\": \"atanasi\",\n  \"atañe\": \"atañ\",\n  \"ataque\": \"ataqu\",\n  \"ataques\": \"ataqu\",\n  \"atardecer\": \"atardec\",\n  \"atarlos\": \"atarl\",\n  \"ataron\": \"ataron\",\n  \"atascadas\": \"atasc\",\n  \"atascón\": \"atascon\",\n  \"atasta\": \"atast\",\n  \"ataviado\": \"atavi\",\n  \"ataviados\": \"atavi\",\n  \"atávicos\": \"atav\",\n  \"atemorizante\": \"atemoriz\",\n  \"atención\": \"atencion\",\n  \"atenciones\": \"atencion\",\n  \"atendamos\": \"atend\",\n  \"atender\": \"atend\",\n  \"atenderá\": \"atend\",\n  \"atenderán\": \"atend\",\n  \"atenderían\": \"atend\",\n  \"atenderlos\": \"atend\",\n  \"atendía\": \"atend\",\n  \"atendida\": \"atend\",\n  \"atendidas\": \"atend\",\n  \"atendido\": \"atend\",\n  \"atendidos\": \"atend\",\n  \"atendieran\": \"atend\",\n  \"atendieron\": \"atend\",\n  \"atendió\": \"atend\",\n  \"atenemos\": \"aten\",\n  \"atenta\": \"atent\",\n  \"atentado\": \"atent\",\n  \"atentados\": \"atent\",\n  \"atentamente\": \"atent\",\n  \"atentar\": \"atent\",\n  \"atenten\": \"atent\",\n  \"atento\": \"atent\",\n  \"atentos\": \"atent\",\n  \"aterra\": \"aterr\",\n  \"aterrados\": \"aterr\",\n  \"aterrizaje\": \"aterrizaj\",\n  \"aterrorizada\": \"aterroriz\",\n  \"ates\": \"ates\",\n  \"athlone\": \"athlon\",\n  \"atiborran\": \"atiborr\",\n  \"atienda\": \"atiend\",\n  \"atiende\": \"atiend\",\n  \"atienden\": \"atiend\",\n  \"atinada\": \"atin\",\n  \"atinadamente\": \"atin\",\n  \"atinados\": \"atin\",\n  \"atípico\": \"atip\",\n  \"atlanta\": \"atlant\",\n  \"atlante\": \"atlant\",\n  \"atlantic\": \"atlantic\",\n  \"atlántico\": \"atlant\",\n  \"atlantis\": \"atlantis\",\n  \"atlantista\": \"atlant\",\n  \"atlantistas\": \"atlant\",\n  \"atlas\": \"atlas\",\n  \"atleta\": \"atlet\",\n  \"atletas\": \"atlet\",\n  \"atlético\": \"atlet\",\n  \"atletismo\": \"atlet\",\n  \"atmósfera\": \"atmosfer\",\n  \"atmosférica\": \"atmosfer\",\n  \"atmosférico\": \"atmosfer\",\n  \"atolladero\": \"atollader\",\n  \"atolondradas\": \"atolondr\",\n  \"atómica\": \"atom\",\n  \"atómicas\": \"atom\",\n  \"atomizador\": \"atomiz\",\n  \"atónitos\": \"atonit\",\n  \"atópica\": \"atop\",\n  \"atosigaba\": \"atosig\",\n  \"atp\": \"atp\",\n  \"atracados\": \"atrac\",\n  \"atracción\": \"atraccion\",\n  \"atraco\": \"atrac\",\n  \"atractiva\": \"atract\",\n  \"atractivas\": \"atract\",\n  \"atractivo\": \"atract\",\n  \"atractivos\": \"atract\",\n  \"atrae\": \"atra\",\n  \"atraen\": \"atra\",\n  \"atraer\": \"atra\",\n  \"atraídos\": \"atraid\",\n  \"atrajo\": \"atraj\",\n  \"atrapadas\": \"atrap\",\n  \"atrapado\": \"atrap\",\n  \"atrapados\": \"atrap\",\n  \"atrapan\": \"atrap\",\n  \"atrápelo\": \"atrapel\",\n  \"atrás\": \"atras\",\n  \"atrasaditos\": \"atrasadit\",\n  \"atrasado\": \"atras\",\n  \"atrasados\": \"atras\",\n  \"atrasarnos\": \"atras\",\n  \"atrasen\": \"atras\",\n  \"atraso\": \"atras\",\n  \"atravesado\": \"atraves\",\n  \"atravesaron\": \"atraves\",\n  \"atraviesa\": \"atravies\",\n  \"atraviesan\": \"atravies\",\n  \"atrevería\": \"atrev\",\n  \"atrevida\": \"atrev\",\n  \"atrevido\": \"atrev\",\n  \"atrevo\": \"atrev\",\n  \"atribuciones\": \"atribu\",\n  \"atribuible\": \"atribu\",\n  \"atribuibles\": \"atribu\",\n  \"atribuido\": \"atribu\",\n  \"atribuirse\": \"atribu\",\n  \"atribulado\": \"atribul\",\n  \"atribulados\": \"atribul\",\n  \"atributos\": \"atribut\",\n  \"atribuye\": \"atribu\",\n  \"atribuyó\": \"atribu\",\n  \"atrofia\": \"atrofi\",\n  \"atropella\": \"atropell\",\n  \"atropellado\": \"atropell\",\n  \"atropellar\": \"atropell\",\n  \"atropelló\": \"atropell\",\n  \"atte\": \"atte\",\n  \"atuendos\": \"atuend\",\n  \"atzcapotzalco\": \"atzcapotzalc\",\n  \"auburn\": \"auburn\",\n  \"audacia\": \"audaci\",\n  \"audaz\": \"audaz\",\n  \"audelo\": \"audel\",\n  \"audición\": \"audicion\",\n  \"audicionar\": \"audicion\",\n  \"audiencia\": \"audienci\",\n  \"audífonos\": \"audifon\",\n  \"audio\": \"audi\",\n  \"audiovisuales\": \"audiovisual\",\n  \"auditiva\": \"audit\",\n  \"auditivo\": \"audit\",\n  \"auditores\": \"auditor\",\n  \"auditoria\": \"auditori\",\n  \"auditoría\": \"auditor\",\n  \"auditorías\": \"auditor\",\n  \"auditorio\": \"auditori\",\n  \"auditorium\": \"auditorium\",\n  \"auge\": \"aug\",\n  \"augura\": \"augur\",\n  \"augurio\": \"auguri\",\n  \"augurios\": \"auguri\",\n  \"auguró\": \"augur\",\n  \"august\": \"august\",\n  \"augusto\": \"august\",\n  \"augustus\": \"augustus\",\n  \"aula\": \"aul\",\n  \"aulas\": \"aul\",\n  \"aumenta\": \"aument\",\n  \"aumentaba\": \"aument\",\n  \"aumentado\": \"aument\",\n  \"aumentar\": \"aument\",\n  \"aumentara\": \"aument\",\n  \"aumentará\": \"aument\",\n  \"aumentarán\": \"aument\",\n  \"aumentaron\": \"aument\",\n  \"aumente\": \"aument\",\n  \"aumenten\": \"aument\",\n  \"aumento\": \"aument\",\n  \"aumentó\": \"aument\",\n  \"aumentos\": \"aument\",\n  \"aun\": \"aun\",\n  \"aún\": \"aun\",\n  \"aunado\": \"aun\",\n  \"aunque\": \"aunqu\",\n  \"aurelio\": \"aureli\",\n  \"aureola\": \"aureol\",\n  \"auriazul\": \"auriazul\",\n  \"aurio\": \"auri\",\n  \"aurora\": \"auror\",\n  \"aurrera\": \"aurrer\",\n  \"aurrerá\": \"aurr\",\n  \"aurreras\": \"aurrer\",\n  \"ausencia\": \"ausenci\",\n  \"ausentarse\": \"ausent\",\n  \"ausente\": \"ausent\",\n  \"ausentes\": \"ausent\",\n  \"ausentismo\": \"ausent\",\n  \"auspicia\": \"auspici\",\n  \"auspiciadoras\": \"auspici\",\n  \"auspiciará\": \"auspici\",\n  \"auspicio\": \"auspici\",\n  \"auspicios\": \"auspici\",\n  \"austeras\": \"auster\",\n  \"austeridad\": \"auster\",\n  \"austero\": \"auster\",\n  \"austeros\": \"auster\",\n  \"austin\": \"austin\",\n  \"australia\": \"australi\",\n  \"australian\": \"australi\",\n  \"australianos\": \"australian\",\n  \"austriacos\": \"austriac\",\n  \"autárticos\": \"autart\",\n  \"auténticamente\": \"autent\",\n  \"auténtico\": \"autent\",\n  \"auténticos\": \"autent\",\n  \"auto\": \"aut\",\n  \"autoanálisis\": \"autoanalisis\",\n  \"autobalance\": \"autobalanc\",\n  \"autobiografía\": \"autobiograf\",\n  \"autobús\": \"autobus\",\n  \"autobuses\": \"autobus\",\n  \"autocalifica\": \"autocalif\",\n  \"autocalificación\": \"autocalif\",\n  \"autocalificada\": \"autocalific\",\n  \"autocalificar\": \"autocalific\",\n  \"autocontrol\": \"autocontrol\",\n  \"autocrítica\": \"autocrit\",\n  \"autódromo\": \"autodrom\",\n  \"autoestima\": \"autoestim\",\n  \"autoevaluación\": \"autoevalu\",\n  \"autofinanciamiento\": \"autofinanci\",\n  \"autofinanciamientos\": \"autofinanci\",\n  \"autogol\": \"autogol\",\n  \"autógrafos\": \"autograf\",\n  \"automática\": \"automat\",\n  \"automáticamente\": \"automat\",\n  \"automáticas\": \"automat\",\n  \"automático\": \"automat\",\n  \"automatización\": \"automatiz\",\n  \"automatizado\": \"automatiz\",\n  \"automatizados\": \"automatiz\",\n  \"automotor\": \"automotor\",\n  \"automotores\": \"automotor\",\n  \"automotrices\": \"automotric\",\n  \"automotriz\": \"automotriz\",\n  \"automovil\": \"automovil\",\n  \"automóvil\": \"automovil\",\n  \"automoviles\": \"automovil\",\n  \"automóviles\": \"automovil\",\n  \"automovilista\": \"automovil\",\n  \"automovilistas\": \"automovil\",\n  \"automovilística\": \"automovilist\",\n  \"automovilístico\": \"automovilist\",\n  \"automovilísticos\": \"automovilist\",\n  \"autónoma\": \"autonom\",\n  \"autonomía\": \"autonom\",\n  \"autónomo\": \"autonom\",\n  \"autónomos\": \"autonom\",\n  \"autopartes\": \"autopart\",\n  \"autopista\": \"autop\",\n  \"autopistas\": \"autop\",\n  \"autopsia\": \"autopsi\",\n  \"autor\": \"autor\",\n  \"autora\": \"autor\",\n  \"autoregulación\": \"autoregul\",\n  \"autores\": \"autor\",\n  \"autorice\": \"autoric\",\n  \"autoridad\": \"autor\",\n  \"autoridades\": \"autor\",\n  \"autoritaria\": \"autoritari\",\n  \"autoritario\": \"autoritari\",\n  \"autoritarismo\": \"autoritar\",\n  \"autoritarismos\": \"autoritar\",\n  \"autoriza\": \"autoriz\",\n  \"autorización\": \"autoriz\",\n  \"autorizaciones\": \"autoriz\",\n  \"autorizada\": \"autoriz\",\n  \"autorizadas\": \"autoriz\",\n  \"autorizado\": \"autoriz\",\n  \"autorizados\": \"autoriz\",\n  \"autorizan\": \"autoriz\",\n  \"autorizando\": \"autoriz\",\n  \"autorizar\": \"autoriz\",\n  \"autorizaran\": \"autoriz\",\n  \"autorizarse\": \"autoriz\",\n  \"autorizó\": \"autoriz\",\n  \"autos\": \"aut\",\n  \"autoservicio\": \"autoservici\",\n  \"autoservicios\": \"autoservici\",\n  \"autosuficiencia\": \"autosuficient\",\n  \"autosuficientes\": \"autosuficient\",\n  \"autotanques\": \"autotanqu\",\n  \"autotransporte\": \"autotransport\",\n  \"autotransportistas\": \"autotransport\",\n  \"autrey\": \"autrey\",\n  \"auxilia\": \"auxili\",\n  \"auxiliado\": \"auxili\",\n  \"auxiliados\": \"auxili\",\n  \"auxiliando\": \"auxili\",\n  \"auxiliar\": \"auxili\",\n  \"auxiliares\": \"auxiliar\",\n  \"auxiliarla\": \"auxili\",\n  \"auxiliaron\": \"auxili\",\n  \"auxilio\": \"auxili\",\n  \"auxilios\": \"auxili\",\n  \"av\": \"av\",\n  \"aval\": \"aval\",\n  \"avala\": \"aval\",\n  \"avalaban\": \"aval\",\n  \"avaladas\": \"aval\",\n  \"avalan\": \"aval\",\n  \"avalanchas\": \"avalanch\",\n  \"avalando\": \"aval\",\n  \"avalar\": \"aval\",\n  \"avalaremos\": \"aval\",\n  \"avalaron\": \"aval\",\n  \"avale\": \"aval\",\n  \"avalúo\": \"avalu\",\n  \"avalúos\": \"avalu\",\n  \"avance\": \"avanc\",\n  \"avances\": \"avanc\",\n  \"avanza\": \"avanz\",\n  \"avanzaba\": \"avanz\",\n  \"avanzada\": \"avanz\",\n  \"avanzadas\": \"avanz\",\n  \"avanzado\": \"avanz\",\n  \"avanzados\": \"avanz\",\n  \"avanzan\": \"avanz\",\n  \"avanzando\": \"avanz\",\n  \"avanzar\": \"avanz\",\n  \"avanzarán\": \"avanz\",\n  \"avanzaron\": \"avanz\",\n  \"avanzó\": \"avanz\",\n  \"avaro\": \"avar\",\n  \"ave\": \"ave\",\n  \"avecina\": \"avecin\",\n  \"avecinado\": \"avecin\",\n  \"avelar\": \"avel\",\n  \"avelina\": \"avelin\",\n  \"avenida\": \"aven\",\n  \"avenidas\": \"aven\",\n  \"aventaba\": \"avent\",\n  \"aventaja\": \"aventaj\",\n  \"aventó\": \"avent\",\n  \"aventura\": \"aventur\",\n  \"aventuradas\": \"aventur\",\n  \"aventurado\": \"aventur\",\n  \"aventuras\": \"aventur\",\n  \"avergonzado\": \"avergonz\",\n  \"avergüencen\": \"avergüenc\",\n  \"averiguación\": \"averigu\",\n  \"averiguaciones\": \"averigu\",\n  \"averiguando\": \"averigu\",\n  \"averiguar\": \"averigu\",\n  \"averió\": \"aver\",\n  \"averoes\": \"aver\",\n  \"aves\": \"aves\",\n  \"avestruz\": \"avestruz\",\n  \"aviación\": \"aviacion\",\n  \"aviacsa\": \"aviacs\",\n  \"aviadurismo\": \"aviadur\",\n  \"ávida\": \"avid\",\n  \"avidez\": \"avidez\",\n  \"ávido\": \"avid\",\n  \"avientan\": \"avient\",\n  \"avila\": \"avil\",\n  \"avilán\": \"avilan\",\n  \"avilés\": \"aviles\",\n  \"avío\": \"avi\",\n  \"avión\": \"avion\",\n  \"aviones\": \"avion\",\n  \"avisamos\": \"avis\",\n  \"avisará\": \"avis\",\n  \"avisarles\": \"avis\",\n  \"avisaron\": \"avis\",\n  \"aviso\": \"avis\",\n  \"avisó\": \"avis\",\n  \"avisora\": \"avisor\",\n  \"avocara\": \"avoc\",\n  \"awards\": \"awards\",\n  \"axilar\": \"axil\",\n  \"ay\": \"ay\",\n  \"ayacucho\": \"ayacuch\",\n  \"ayala\": \"ayal\",\n  \"ayarzagoitia\": \"ayarzagoiti\",\n  \"ayense\": \"ayens\",\n  \"ayer\": \"ayer\",\n  \"ayuda\": \"ayud\",\n  \"ayudaba\": \"ayud\",\n  \"ayudada\": \"ayud\",\n  \"ayudado\": \"ayud\",\n  \"ayudados\": \"ayud\",\n  \"ayudamos\": \"ayud\",\n  \"ayudan\": \"ayud\",\n  \"ayudando\": \"ayud\",\n  \"ayudándole\": \"ayud\",\n  \"ayudándose\": \"ayud\",\n  \"ayudante\": \"ayud\",\n  \"ayudantes\": \"ayud\",\n  \"ayudar\": \"ayud\",\n  \"ayudara\": \"ayud\",\n  \"ayudará\": \"ayud\",\n  \"ayudaran\": \"ayud\",\n  \"ayudaría\": \"ayud\",\n  \"ayudarle\": \"ayud\",\n  \"ayudarlo\": \"ayud\",\n  \"ayudarlos\": \"ayud\",\n  \"ayudaron\": \"ayud\",\n  \"ayude\": \"ayud\",\n  \"ayuden\": \"ayud\",\n  \"ayudó\": \"ayud\",\n  \"ayuntamiento\": \"ayunt\",\n  \"ayuntamientos\": \"ayunt\",\n  \"azáleas\": \"azal\",\n  \"azalia\": \"azali\",\n  \"azar\": \"azar\",\n  \"azcárraga\": \"azcarrag\",\n  \"azcua\": \"azcu\",\n  \"azhamar\": \"azham\",\n  \"azido\": \"azid\",\n  \"azorrillan\": \"azorrill\",\n  \"azotaba\": \"azot\",\n  \"azotado\": \"azot\",\n  \"azotando\": \"azot\",\n  \"azteca\": \"aztec\",\n  \"aztecas\": \"aztec\",\n  \"aztlán\": \"aztlan\",\n  \"azucar\": \"azuc\",\n  \"azúcar\": \"azuc\",\n  \"azúcares\": \"azucar\",\n  \"azucena\": \"azucen\",\n  \"azufre\": \"azufr\",\n  \"azul\": \"azul\",\n  \"azúl\": \"azul\",\n  \"azules\": \"azul\",\n  \"azulgrana\": \"azulgran\",\n  \"azulosos\": \"azul\",\n  \"azuma\": \"azum\",\n  \"azumah\": \"azumah\",\n  \"b\": \"b\",\n  \"bab\": \"bab\",\n  \"babalucas\": \"babaluc\",\n  \"babilonia\": \"babiloni\",\n  \"baby\": \"baby\",\n  \"baccantes\": \"baccant\",\n  \"bacco\": \"bacc\",\n  \"bacheando\": \"bach\",\n  \"bachilleres\": \"bachiller\",\n  \"bacteria\": \"bacteri\",\n  \"badmington\": \"badmington\",\n  \"bae\": \"bae\",\n  \"báez\": \"baez\",\n  \"bafsa\": \"bafs\",\n  \"bagaje\": \"bagaj\",\n  \"bagdad\": \"bagd\",\n  \"bahamas\": \"baham\",\n  \"bahía\": \"bah\",\n  \"baila\": \"bail\",\n  \"bailable\": \"bailabl\",\n  \"bailando\": \"bail\",\n  \"bailar\": \"bail\",\n  \"bailarines\": \"bailarin\",\n  \"bailarlos\": \"bail\",\n  \"baile\": \"bail\",\n  \"bailes\": \"bail\",\n  \"bailleres\": \"bailler\",\n  \"baja\": \"baj\",\n  \"bajacaliforniano\": \"bajacalifornian\",\n  \"bajadas\": \"baj\",\n  \"bajado\": \"baj\",\n  \"bajan\": \"baj\",\n  \"bajando\": \"baj\",\n  \"bajar\": \"baj\",\n  \"bajará\": \"baj\",\n  \"bajarle\": \"baj\",\n  \"bajaron\": \"baj\",\n  \"bajarse\": \"baj\",\n  \"bajas\": \"baj\",\n  \"baje\": \"baj\",\n  \"bajío\": \"baji\",\n  \"bajista\": \"bajist\",\n  \"bajo\": \"baj\",\n  \"bajó\": \"baj\",\n  \"bajonazo\": \"bajonaz\",\n  \"bajos\": \"baj\",\n  \"bala\": \"bal\",\n  \"balaceados\": \"balac\",\n  \"balacearlo\": \"balac\",\n  \"balaceó\": \"balace\",\n  \"balacera\": \"balacer\",\n  \"balaceras\": \"balacer\",\n  \"baladas\": \"bal\",\n  \"balance\": \"balanc\",\n  \"balanceadas\": \"balanc\",\n  \"balanceado\": \"balanc\",\n  \"balancear\": \"balanc\",\n  \"balanza\": \"balanz\",\n  \"balas\": \"bal\",\n  \"balazo\": \"balaz\",\n  \"balazos\": \"balaz\",\n  \"balbina\": \"balbin\",\n  \"balcanes\": \"balcan\",\n  \"balcón\": \"balcon\",\n  \"balcones\": \"balcon\",\n  \"balderas\": \"balder\",\n  \"baldío\": \"baldi\",\n  \"baldomero\": \"baldomer\",\n  \"baleada\": \"bal\",\n  \"balística\": \"balist\",\n  \"ball\": \"ball\",\n  \"ballard\": \"ballard\",\n  \"ballén\": \"ballen\",\n  \"ballena\": \"ballen\",\n  \"ballet\": \"ballet\",\n  \"balompié\": \"balompi\",\n  \"balón\": \"balon\",\n  \"balones\": \"balon\",\n  \"balsa\": \"bals\",\n  \"baltazar\": \"baltaz\",\n  \"baltimore\": \"baltimor\",\n  \"baluarte\": \"baluart\",\n  \"bamba\": \"bamb\",\n  \"bambalinas\": \"bambalin\",\n  \"baña\": \"bañ\",\n  \"bañada\": \"bañ\",\n  \"banamex\": \"banamex\",\n  \"bañan\": \"bañ\",\n  \"bananero\": \"bananer\",\n  \"bañar\": \"bañ\",\n  \"bañarse\": \"bañ\",\n  \"banca\": \"banc\",\n  \"bancaria\": \"bancari\",\n  \"bancarias\": \"bancari\",\n  \"bancario\": \"bancari\",\n  \"bancarios\": \"bancari\",\n  \"bancas\": \"banc\",\n  \"banco\": \"banc\",\n  \"bancomer\": \"bancom\",\n  \"bancomext\": \"bancomext\",\n  \"bancos\": \"banc\",\n  \"bancrecer\": \"bancrec\",\n  \"band\": \"band\",\n  \"banda\": \"band\",\n  \"bandas\": \"band\",\n  \"bandazos\": \"bandaz\",\n  \"bandeja\": \"bandej\",\n  \"bandera\": \"bander\",\n  \"banderas\": \"bander\",\n  \"banderazo\": \"banderaz\",\n  \"banderillas\": \"banderill\",\n  \"banderillero\": \"banderiller\",\n  \"banderín\": \"banderin\",\n  \"banderita\": \"banderit\",\n  \"bandidos\": \"band\",\n  \"bando\": \"band\",\n  \"bandos\": \"band\",\n  \"bank\": \"bank\",\n  \"bankers\": \"bankers\",\n  \"banking\": \"banking\",\n  \"bankshares\": \"bankshar\",\n  \"baño\": \"bañ\",\n  \"banoro\": \"banor\",\n  \"baños\": \"bañ\",\n  \"banpaís\": \"banp\",\n  \"banquero\": \"banquer\",\n  \"banqueros\": \"banquer\",\n  \"banqueta\": \"banquet\",\n  \"banquetas\": \"banquet\",\n  \"banquillo\": \"banquill\",\n  \"banrural\": \"banrural\",\n  \"banxico\": \"banxic\",\n  \"bar\": \"bar\",\n  \"barahona\": \"barahon\",\n  \"barajas\": \"baraj\",\n  \"baranda\": \"barand\",\n  \"barandal\": \"barandal\",\n  \"barandilla\": \"barandill\",\n  \"barata\": \"barat\",\n  \"baratas\": \"barat\",\n  \"barato\": \"barat\",\n  \"barba\": \"barb\",\n  \"barbacoa\": \"barbaco\",\n  \"barbados\": \"barb\",\n  \"bárbara\": \"barb\",\n  \"barbarabbe\": \"barbarabb\",\n  \"barbaridades\": \"barbar\",\n  \"barbarie\": \"barbari\",\n  \"barberena\": \"barberen\",\n  \"barbosa\": \"barbos\",\n  \"barcelona\": \"barcelon\",\n  \"barceloneses\": \"barcelones\",\n  \"barco\": \"barc\",\n  \"barcos\": \"barc\",\n  \"barda\": \"bard\",\n  \"bardas\": \"bard\",\n  \"bares\": \"bar\",\n  \"barinas\": \"barin\",\n  \"barocio\": \"baroci\",\n  \"barón\": \"baron\",\n  \"barra\": \"barr\",\n  \"barragán\": \"barragan\",\n  \"barranca\": \"barranc\",\n  \"barranco\": \"barranc\",\n  \"barras\": \"barr\",\n  \"barre\": \"barr\",\n  \"barreira\": \"barreir\",\n  \"barrenechea\": \"barreneche\",\n  \"barrera\": \"barrer\",\n  \"barreras\": \"barrer\",\n  \"barrerse\": \"barr\",\n  \"barres\": \"barr\",\n  \"barreto\": \"barret\",\n  \"barrett\": \"barrett\",\n  \"barría\": \"barr\",\n  \"barrial\": \"barrial\",\n  \"barriéndose\": \"barr\",\n  \"barrientos\": \"barrient\",\n  \"barrileras\": \"barriler\",\n  \"barriles\": \"barril\",\n  \"barrio\": \"barri\",\n  \"barrios\": \"barri\",\n  \"barro\": \"barr\",\n  \"barroca\": \"barroc\",\n  \"barroco\": \"barroc\",\n  \"barros\": \"barr\",\n  \"barrote\": \"barrot\",\n  \"barry\": \"barry\",\n  \"bart\": \"bart\",\n  \"bartlett\": \"bartlett\",\n  \"bartletts\": \"bartletts\",\n  \"bartolo\": \"bartol\",\n  \"basa\": \"bas\",\n  \"basaba\": \"bas\",\n  \"basada\": \"bas\",\n  \"basadas\": \"bas\",\n  \"basado\": \"bas\",\n  \"basados\": \"bas\",\n  \"basamos\": \"bas\",\n  \"basándose\": \"bas\",\n  \"basañez\": \"basañez\",\n  \"basáñez\": \"basañez\",\n  \"basar\": \"bas\",\n  \"basará\": \"bas\",\n  \"basarán\": \"bas\",\n  \"basarse\": \"bas\",\n  \"basave\": \"basav\",\n  \"basay\": \"basay\",\n  \"basch\": \"basch\",\n  \"báscula\": \"bascul\",\n  \"básculas\": \"bascul\",\n  \"base\": \"bas\",\n  \"basen\": \"bas\",\n  \"bases\": \"bas\",\n  \"básica\": \"basic\",\n  \"básicamente\": \"basic\",\n  \"basicas\": \"basic\",\n  \"básicas\": \"basic\",\n  \"básico\": \"basic\",\n  \"básicos\": \"basic\",\n  \"basile\": \"basil\",\n  \"basílica\": \"basil\",\n  \"basilio\": \"basili\",\n  \"basó\": \"bas\",\n  \"basquetbol\": \"basquetbol\",\n  \"basset\": \"basset\",\n  \"basta\": \"bast\",\n  \"bastado\": \"bast\",\n  \"bastan\": \"bast\",\n  \"bastante\": \"bastant\",\n  \"bastantes\": \"bastant\",\n  \"bastaría\": \"bast\",\n  \"baste\": \"bast\",\n  \"bastó\": \"bast\",\n  \"basualdo\": \"basuald\",\n  \"basura\": \"basur\",\n  \"basuras\": \"basur\",\n  \"basurero\": \"basurer\",\n  \"basureros\": \"basurer\",\n  \"bat\": \"bat\",\n  \"bata\": \"bat\",\n  \"batalla\": \"batall\",\n  \"batallan\": \"batall\",\n  \"batallar\": \"batall\",\n  \"batallaron\": \"batall\",\n  \"batallas\": \"batall\",\n  \"batallen\": \"batall\",\n  \"batalló\": \"batall\",\n  \"batallón\": \"batallon\",\n  \"batas\": \"bat\",\n  \"bate\": \"bat\",\n  \"bateador\": \"bateador\",\n  \"bateadores\": \"bateador\",\n  \"bateo\": \"bate\",\n  \"bateó\": \"bate\",\n  \"batería\": \"bat\",\n  \"baterías\": \"bat\",\n  \"baterista\": \"bater\",\n  \"batieron\": \"bat\",\n  \"bátik\": \"batik\",\n  \"batir\": \"bat\",\n  \"batis\": \"batis\",\n  \"batistuta\": \"batistut\",\n  \"bátiz\": \"batiz\",\n  \"batocletti\": \"batocletti\",\n  \"battaglia\": \"battagli\",\n  \"baudelaire\": \"baudelair\",\n  \"bautista\": \"bautist\",\n  \"bautizado\": \"bautiz\",\n  \"bautizaría\": \"bautiz\",\n  \"bautizo\": \"bautiz\",\n  \"bautizos\": \"bautiz\",\n  \"bayerische\": \"bayerisch\",\n  \"baz\": \"baz\",\n  \"bazaine\": \"bazain\",\n  \"bazaldúa\": \"bazaldu\",\n  \"bazán\": \"bazan\",\n  \"bazar\": \"baz\",\n  \"bazdresch\": \"bazdresch\",\n  \"bc\": \"bc\",\n  \"bch\": \"bch\",\n  \"beach\": \"beach\",\n  \"beamish\": \"beamish\",\n  \"beatriz\": \"beatriz\",\n  \"beauvais\": \"beauvais\",\n  \"beauvaisis\": \"beauvaisis\",\n  \"beaver\": \"beav\",\n  \"bebé\": \"beb\",\n  \"bebedero\": \"bebeder\",\n  \"beber\": \"beb\",\n  \"bebeto\": \"bebet\",\n  \"bebidas\": \"beb\",\n  \"bebió\": \"beb\",\n  \"bebita\": \"bebit\",\n  \"bebop\": \"bebop\",\n  \"beca\": \"bec\",\n  \"becado\": \"bec\",\n  \"becario\": \"becari\",\n  \"becarios\": \"becari\",\n  \"becas\": \"bec\",\n  \"becerra\": \"becerr\",\n  \"becerril\": \"becerril\",\n  \"becker\": \"beck\",\n  \"becthel\": \"becthel\",\n  \"bedoya\": \"bedoy\",\n  \"beethoven\": \"beethov\",\n  \"beginning\": \"beginning\",\n  \"begiristain\": \"begiristain\",\n  \"begoña\": \"begoñ\",\n  \"begonia\": \"begoni\",\n  \"beige\": \"beig\",\n  \"beirut\": \"beirut\",\n  \"beisbol\": \"beisbol\",\n  \"beisbolero\": \"beisboler\",\n  \"beisbolistas\": \"beisbol\",\n  \"beisbolísticos\": \"beisbolist\",\n  \"beisborama\": \"beisboram\",\n  \"bejarano\": \"bejaran\",\n  \"belair\": \"bel\",\n  \"belaúnde\": \"belaund\",\n  \"belden\": \"beld\",\n  \"belén\": \"belen\",\n  \"belga\": \"belg\",\n  \"belgas\": \"belg\",\n  \"bélgica\": \"belgic\",\n  \"bélica\": \"belic\",\n  \"belice\": \"belic\",\n  \"beliceño\": \"beliceñ\",\n  \"belicosos\": \"belic\",\n  \"bella\": \"bell\",\n  \"bellamente\": \"bell\",\n  \"bellas\": \"bell\",\n  \"beller\": \"bell\",\n  \"belleza\": \"bellez\",\n  \"bello\": \"bell\",\n  \"bellone\": \"bellon\",\n  \"belmont\": \"belmont\",\n  \"ben\": \"ben\",\n  \"benavente\": \"benavent\",\n  \"benavides\": \"benavid\",\n  \"benchmark\": \"benchmark\",\n  \"benchmarking\": \"benchmarking\",\n  \"benchmarks\": \"benchmarks\",\n  \"bend\": \"bend\",\n  \"bendesky\": \"bendesky\",\n  \"bendición\": \"bendicion\",\n  \"bendiciones\": \"bendicion\",\n  \"bendijo\": \"bendij\",\n  \"bendita\": \"bendit\",\n  \"bendito\": \"bendit\",\n  \"beneficencia\": \"beneficent\",\n  \"beneficia\": \"benefici\",\n  \"beneficiada\": \"benefici\",\n  \"beneficiado\": \"benefici\",\n  \"beneficiados\": \"benefici\",\n  \"benefician\": \"benefici\",\n  \"beneficiando\": \"benefici\",\n  \"beneficiar\": \"benefici\",\n  \"beneficiará\": \"benefici\",\n  \"beneficiarán\": \"benefici\",\n  \"beneficiaria\": \"beneficiari\",\n  \"beneficiaría\": \"benefici\",\n  \"beneficien\": \"benefici\",\n  \"beneficio\": \"benefici\",\n  \"benefició\": \"benefic\",\n  \"beneficios\": \"benefici\",\n  \"beneficiosas\": \"benefici\",\n  \"beneficioso\": \"benefici\",\n  \"beneplácito\": \"beneplacit\",\n  \"benevolencia\": \"benevolent\",\n  \"bengoa\": \"bengo\",\n  \"benigno\": \"benign\",\n  \"benítez\": \"benitez\",\n  \"benito\": \"benit\",\n  \"benjamín\": \"benjamin\",\n  \"bennis\": \"bennis\",\n  \"benotto\": \"benott\",\n  \"benz\": \"benz\",\n  \"benzeno\": \"benzen\",\n  \"berchelmann\": \"berchelmann\",\n  \"beregovoy\": \"beregovoy\",\n  \"berenice\": \"berenic\",\n  \"beresford\": \"beresford\",\n  \"bérgamo\": \"bergam\",\n  \"bergerac\": \"bergerac\",\n  \"berges\": \"berg\",\n  \"beria\": \"beri\",\n  \"berlanga\": \"berlang\",\n  \"berlín\": \"berlin\",\n  \"berlinguer\": \"berlingu\",\n  \"berman\": \"berm\",\n  \"bermudas\": \"bermud\",\n  \"bermúdez\": \"bermudez\",\n  \"bernabe\": \"bernab\",\n  \"bernabé\": \"bernab\",\n  \"bernabeu\": \"bernabeu\",\n  \"bernal\": \"bernal\",\n  \"bernanos\": \"bernan\",\n  \"bernard\": \"bernard\",\n  \"bernardino\": \"bernardin\",\n  \"bernardo\": \"bernard\",\n  \"bernuncio\": \"bernunci\",\n  \"berrinche\": \"berrinch\",\n  \"berrinchito\": \"berrinchit\",\n  \"berrueto\": \"berruet\",\n  \"berta\": \"bert\",\n  \"berumen\": \"berum\",\n  \"besando\": \"bes\",\n  \"besar\": \"bes\",\n  \"besara\": \"bes\",\n  \"besarla\": \"bes\",\n  \"besarle\": \"bes\",\n  \"bese\": \"bes\",\n  \"beso\": \"bes\",\n  \"besó\": \"bes\",\n  \"best\": \"best\",\n  \"bestia\": \"besti\",\n  \"bestias\": \"besti\",\n  \"betancourt\": \"betancourt\",\n  \"betania\": \"betani\",\n  \"bi\": \"bi\",\n  \"bianchezi\": \"bianchezi\",\n  \"bianchini\": \"bianchini\",\n  \"biberón\": \"biberon\",\n  \"bibi\": \"bibi\",\n  \"biblia\": \"bibli\",\n  \"biblias\": \"bibli\",\n  \"bíblica\": \"biblic\",\n  \"bíblico\": \"biblic\",\n  \"bibliografía\": \"bibliograf\",\n  \"bibliográficas\": \"bibliograf\",\n  \"bibliográfico\": \"bibliograf\",\n  \"biblioteca\": \"bibliotec\",\n  \"bibliotecas\": \"bibliotec\",\n  \"bicampeón\": \"bicampeon\",\n  \"bicentenario\": \"bicentenari\",\n  \"bíceps\": \"biceps\",\n  \"bichos\": \"bich\",\n  \"bicicleta\": \"biciclet\",\n  \"bicicletas\": \"biciclet\",\n  \"bien\": \"bien\",\n  \"bienal\": \"bienal\",\n  \"bienales\": \"bienal\",\n  \"bienes\": \"bien\",\n  \"bienestar\": \"bienest\",\n  \"bienio\": \"bieni\",\n  \"bienvenida\": \"bienven\",\n  \"bienvenidas\": \"bienven\",\n  \"bienvenido\": \"bienven\",\n  \"bienvenidos\": \"bienven\",\n  \"bierhaus\": \"bierhaus\",\n  \"big\": \"big\",\n  \"bigfoot\": \"bigfoot\",\n  \"bigleaguers\": \"bigleaguers\",\n  \"bigote\": \"bigot\",\n  \"bigotes\": \"bigot\",\n  \"bike\": \"bik\",\n  \"bilardo\": \"bilard\",\n  \"bilateral\": \"bilateral\",\n  \"bilaterales\": \"bilateral\",\n  \"bilateralmente\": \"bilateral\",\n  \"bilbao\": \"bilba\",\n  \"bilimek\": \"bilimek\",\n  \"bill\": \"bill\",\n  \"billar\": \"bill\",\n  \"billete\": \"billet\",\n  \"billetes\": \"billet\",\n  \"billón\": \"billon\",\n  \"billones\": \"billon\",\n  \"bills\": \"bills\",\n  \"billy\": \"billy\",\n  \"bin\": \"bin\",\n  \"binacional\": \"binacional\",\n  \"bing\": \"bing\",\n  \"biodegradable\": \"biodegrad\",\n  \"biodegradables\": \"biodegrad\",\n  \"biología\": \"biolog\",\n  \"biológica\": \"biolog\",\n  \"biológico\": \"biolog\",\n  \"biólogo\": \"biolog\",\n  \"biondi\": \"biondi\",\n  \"biotecnología\": \"biotecnolog\",\n  \"biotecnológica\": \"biotecnolog\",\n  \"bióticos\": \"biotic\",\n  \"bipolar\": \"bipol\",\n  \"bird\": \"bird\",\n  \"birks\": \"birks\",\n  \"birlos\": \"birl\",\n  \"bis\": \"bis\",\n  \"bisabuela\": \"bisabuel\",\n  \"biscaine\": \"biscain\",\n  \"bismarck\": \"bismarck\",\n  \"bissonnette\": \"bissonnett\",\n  \"biznietos\": \"bizniet\",\n  \"bjoern\": \"bjoern\",\n  \"black\": \"black\",\n  \"blackhawks\": \"blackhawks\",\n  \"bladimir\": \"bladim\",\n  \"blaise\": \"blais\",\n  \"blanca\": \"blanc\",\n  \"blancas\": \"blanc\",\n  \"blanco\": \"blanc\",\n  \"blancos\": \"blanc\",\n  \"blancq\": \"blancq\",\n  \"blandir\": \"bland\",\n  \"blando\": \"bland\",\n  \"blanquiazul\": \"blanquiazul\",\n  \"blanquiazules\": \"blanquiazul\",\n  \"blanquita\": \"blanquit\",\n  \"blas\": \"blas\",\n  \"blasa\": \"blas\",\n  \"blasco\": \"blasc\",\n  \"blasio\": \"blasi\",\n  \"blasón\": \"blason\",\n  \"blatidos\": \"blat\",\n  \"block\": \"block\",\n  \"blocker\": \"block\",\n  \"bloque\": \"bloqu\",\n  \"bloquea\": \"bloque\",\n  \"bloqueadas\": \"bloqu\",\n  \"bloqueado\": \"bloqu\",\n  \"bloqueadoras\": \"bloqueador\",\n  \"bloqueados\": \"bloqu\",\n  \"bloquean\": \"bloqu\",\n  \"bloqueando\": \"bloqu\",\n  \"bloquear\": \"bloqu\",\n  \"bloquearon\": \"bloqu\",\n  \"bloqueo\": \"bloque\",\n  \"bloqueos\": \"bloque\",\n  \"bloques\": \"bloqu\",\n  \"bloxcom\": \"bloxcom\",\n  \"blue\": \"blu\",\n  \"blues\": \"blu\",\n  \"bm\": \"bm\",\n  \"bmw\": \"bmw\",\n  \"bob\": \"bob\",\n  \"bobby\": \"bobby\",\n  \"bobina\": \"bobin\",\n  \"boca\": \"boc\",\n  \"bocanadas\": \"bocan\",\n  \"bocanegra\": \"bocanegr\",\n  \"bocas\": \"boc\",\n  \"bochini\": \"bochini\",\n  \"bocho\": \"boch\",\n  \"bochornos\": \"bochorn\",\n  \"bochos\": \"boch\",\n  \"bocina\": \"bocin\",\n  \"bocinas\": \"bocin\",\n  \"boda\": \"bod\",\n  \"bodas\": \"bod\",\n  \"bodega\": \"bodeg\",\n  \"bodegas\": \"bodeg\",\n  \"bofetón\": \"bofeton\",\n  \"boga\": \"bog\",\n  \"bogota\": \"bogot\",\n  \"bogotá\": \"bogot\",\n  \"bogue\": \"bog\",\n  \"bohemio\": \"bohemi\",\n  \"boicot\": \"boicot\",\n  \"boicotearlas\": \"boicot\",\n  \"boinas\": \"boin\",\n  \"bola\": \"bol\",\n  \"bolaños\": \"bolañ\",\n  \"bolas\": \"bol\",\n  \"boleados\": \"bol\",\n  \"boleando\": \"bol\",\n  \"boleo\": \"bole\",\n  \"boleta\": \"bolet\",\n  \"boletas\": \"bolet\",\n  \"boletín\": \"boletin\",\n  \"boletines\": \"boletin\",\n  \"boleto\": \"bolet\",\n  \"boletos\": \"bolet\",\n  \"bolillo\": \"bolill\",\n  \"bolillos\": \"bolill\",\n  \"bolitas\": \"bolit\",\n  \"bolivar\": \"boliv\",\n  \"bolívar\": \"boliv\",\n  \"bolivia\": \"bolivi\",\n  \"boloña\": \"boloñ\",\n  \"bolsa\": \"bols\",\n  \"bolsas\": \"bols\",\n  \"bolsillo\": \"bolsill\",\n  \"bolsillos\": \"bolsill\",\n  \"bolso\": \"bols\",\n  \"bomba\": \"bomb\",\n  \"bombardeado\": \"bombard\",\n  \"bombardeos\": \"bombarde\",\n  \"bombas\": \"bomb\",\n  \"bombear\": \"bomb\",\n  \"bombeo\": \"bombe\",\n  \"bomberos\": \"bomber\",\n  \"bondades\": \"bondad\",\n  \"bondadosas\": \"bondad\",\n  \"bondadoso\": \"bondad\",\n  \"bone\": \"bon\",\n  \"bonifacio\": \"bonifaci\",\n  \"bonilla\": \"bonill\",\n  \"bonita\": \"bonit\",\n  \"bonitas\": \"bonit\",\n  \"bonito\": \"bonit\",\n  \"bonitos\": \"bonit\",\n  \"bonn\": \"bonn\",\n  \"bonos\": \"bon\",\n  \"boom\": \"boom\",\n  \"boomers\": \"boomers\",\n  \"borax\": \"borax\",\n  \"bordadores\": \"bordador\",\n  \"bordados\": \"bord\",\n  \"borde\": \"bord\",\n  \"bordo\": \"bord\",\n  \"bordos\": \"bord\",\n  \"borge\": \"borg\",\n  \"boricua\": \"boricu\",\n  \"boris\": \"boris\",\n  \"borja\": \"borj\",\n  \"borla\": \"borl\",\n  \"bormann\": \"bormann\",\n  \"borrables\": \"borrabl\",\n  \"borrachín\": \"borrachin\",\n  \"borrachito\": \"borrachit\",\n  \"borracho\": \"borrach\",\n  \"borrador\": \"borrador\",\n  \"borraja\": \"borraj\",\n  \"borrando\": \"borr\",\n  \"borrar\": \"borr\",\n  \"borrego\": \"borreg\",\n  \"borregos\": \"borreg\",\n  \"borreguitos\": \"borreguit\",\n  \"borrero\": \"borrer\",\n  \"borroso\": \"borros\",\n  \"borsalino\": \"borsalin\",\n  \"borssum\": \"borssum\",\n  \"bosch\": \"bosch\",\n  \"boscosos\": \"boscos\",\n  \"bosnia\": \"bosni\",\n  \"bosnio\": \"bosni\",\n  \"bosque\": \"bosqu\",\n  \"bosquejarse\": \"bosquej\",\n  \"bosques\": \"bosqu\",\n  \"bossier\": \"bossi\",\n  \"boston\": \"boston\",\n  \"bostoniano\": \"bostonian\",\n  \"bota\": \"bot\",\n  \"botana\": \"botan\",\n  \"botanero\": \"botaner\",\n  \"botaneros\": \"botaner\",\n  \"botas\": \"bot\",\n  \"bote\": \"bot\",\n  \"botella\": \"botell\",\n  \"botellas\": \"botell\",\n  \"botello\": \"botell\",\n  \"botes\": \"bot\",\n  \"botín\": \"botin\",\n  \"botines\": \"botin\",\n  \"botón\": \"boton\",\n  \"botones\": \"boton\",\n  \"bougthon\": \"bougthon\",\n  \"boulevard\": \"boulevard\",\n  \"bourbon\": \"bourbon\",\n  \"bours\": \"bours\",\n  \"boutique\": \"boutiqu\",\n  \"boutiques\": \"boutiqu\",\n  \"boutros\": \"boutr\",\n  \"bovary\": \"bovary\",\n  \"bovino\": \"bovin\",\n  \"bowman\": \"bowm\",\n  \"bowthorpe\": \"bowthorp\",\n  \"box\": \"box\",\n  \"boxeador\": \"boxeador\",\n  \"boxeadores\": \"boxeador\",\n  \"boxeo\": \"boxe\",\n  \"boxeó\": \"boxe\",\n  \"boxística\": \"boxist\",\n  \"boy\": \"boy\",\n  \"boyas\": \"boy\",\n  \"boyle\": \"boyl\",\n  \"bracamontes\": \"bracamont\",\n  \"braceaba\": \"brac\",\n  \"bracho\": \"brach\",\n  \"bracket\": \"bracket\",\n  \"bradenton\": \"bradenton\",\n  \"brambila\": \"brambil\",\n  \"branco\": \"branc\",\n  \"brando\": \"brand\",\n  \"brandt\": \"brandt\",\n  \"brasero\": \"braser\",\n  \"brasil\": \"brasil\",\n  \"brasileira\": \"brasileir\",\n  \"brasileña\": \"brasileñ\",\n  \"brasileño\": \"brasileñ\",\n  \"brasileños\": \"brasileñ\",\n  \"brasilia\": \"brasili\",\n  \"brass\": \"brass\",\n  \"brasso\": \"brass\",\n  \"braun\": \"braun\",\n  \"bravo\": \"brav\",\n  \"bravos\": \"brav\",\n  \"bravura\": \"bravur\",\n  \"brazo\": \"braz\",\n  \"brazos\": \"braz\",\n  \"brazzaville\": \"brazzavill\",\n  \"breaky\": \"breaky\",\n  \"brecha\": \"brech\",\n  \"brechas\": \"brech\",\n  \"bremer\": \"brem\",\n  \"bremond\": \"bremond\",\n  \"brener\": \"bren\",\n  \"bretaña\": \"bretañ\",\n  \"breton\": \"breton\",\n  \"bretón\": \"breton\",\n  \"breve\": \"brev\",\n  \"brevedad\": \"breved\",\n  \"brevemente\": \"brevement\",\n  \"breves\": \"brev\",\n  \"brevísima\": \"brevisim\",\n  \"brian\": \"bri\",\n  \"bridan\": \"brid\",\n  \"brigada\": \"brig\",\n  \"brigadas\": \"brig\",\n  \"brillaban\": \"brill\",\n  \"brillante\": \"brillant\",\n  \"brillantes\": \"brillant\",\n  \"brillantez\": \"brillantez\",\n  \"brillo\": \"brill\",\n  \"brinca\": \"brinc\",\n  \"brincar\": \"brinc\",\n  \"brincarse\": \"brinc\",\n  \"brinckerhoff\": \"brinckerhoff\",\n  \"brincó\": \"brinc\",\n  \"brinda\": \"brind\",\n  \"brindado\": \"brind\",\n  \"brindar\": \"brind\",\n  \"brindará\": \"brind\",\n  \"brindaría\": \"brind\",\n  \"brindarle\": \"brind\",\n  \"brindarles\": \"brind\",\n  \"brindarme\": \"brind\",\n  \"brindaron\": \"brind\",\n  \"brinde\": \"brind\",\n  \"brinden\": \"brind\",\n  \"brindó\": \"brind\",\n  \"bringas\": \"bring\",\n  \"briones\": \"brion\",\n  \"briosos\": \"brios\",\n  \"brisas\": \"bris\",\n  \"britania\": \"britani\",\n  \"británica\": \"britan\",\n  \"británico\": \"britan\",\n  \"británicos\": \"britan\",\n  \"british\": \"british\",\n  \"brito\": \"brit\",\n  \"brizio\": \"brizi\",\n  \"broad\": \"bro\",\n  \"brocha\": \"broch\",\n  \"broche\": \"broch\",\n  \"brock\": \"brock\",\n  \"brocker\": \"brock\",\n  \"broma\": \"brom\",\n  \"bromas\": \"brom\",\n  \"bromeaban\": \"brom\",\n  \"bromeando\": \"brom\",\n  \"bromista\": \"bromist\",\n  \"bromosas\": \"brom\",\n  \"brompton\": \"brompton\",\n  \"bronca\": \"bronc\",\n  \"broncas\": \"bronc\",\n  \"bronce\": \"bronc\",\n  \"bronco\": \"bronc\",\n  \"broncón\": \"broncon\",\n  \"broncos\": \"bronc\",\n  \"bronquitis\": \"bronquitis\",\n  \"brooks\": \"brooks\",\n  \"bros\": \"bros\",\n  \"brotan\": \"brot\",\n  \"brotaron\": \"brot\",\n  \"brothers\": \"brothers\",\n  \"brown\": \"brown\",\n  \"brownsville\": \"brownsvill\",\n  \"bruce\": \"bruc\",\n  \"bruces\": \"bruc\",\n  \"brugera\": \"bruger\",\n  \"bruja\": \"bruj\",\n  \"brunas\": \"brun\",\n  \"brunch\": \"brunch\",\n  \"bruno\": \"brun\",\n  \"brusca\": \"brusc\",\n  \"bruscas\": \"brusc\",\n  \"bruselas\": \"brusel\",\n  \"brusquedad\": \"brusqued\",\n  \"brutal\": \"brutal\",\n  \"brutales\": \"brutal\",\n  \"brutalmente\": \"brutal\",\n  \"bruto\": \"brut\",\n  \"brutos\": \"brut\",\n  \"bubka\": \"bubk\",\n  \"bucareli\": \"bucareli\",\n  \"buckingham\": \"buckingham\",\n  \"bucolia\": \"bucoli\",\n  \"bud\": \"bud\",\n  \"buda\": \"bud\",\n  \"buddleia\": \"buddlei\",\n  \"buen\": \"buen\",\n  \"buena\": \"buen\",\n  \"buenas\": \"buen\",\n  \"buenaventura\": \"buenaventur\",\n  \"buendía\": \"buend\",\n  \"bueno\": \"buen\",\n  \"buenos\": \"buen\",\n  \"buerón\": \"bueron\",\n  \"buey\": \"buey\",\n  \"bueyes\": \"buey\",\n  \"búfalo\": \"bufal\",\n  \"bufferin\": \"bufferin\",\n  \"bugno\": \"bugn\",\n  \"buho\": \"buh\",\n  \"buick\": \"buick\",\n  \"buitres\": \"buitr\",\n  \"bulbos\": \"bulb\",\n  \"bulgaria\": \"bulgari\",\n  \"búlgaro\": \"bulgar\",\n  \"bunbun\": \"bunbun\",\n  \"bunker\": \"bunk\",\n  \"buque\": \"buqu\",\n  \"buques\": \"buqu\",\n  \"burel\": \"burel\",\n  \"burelo\": \"burel\",\n  \"burger\": \"burg\",\n  \"burgos\": \"burg\",\n  \"burgueño\": \"burgueñ\",\n  \"burla\": \"burl\",\n  \"burlaba\": \"burl\",\n  \"burlan\": \"burl\",\n  \"burlando\": \"burl\",\n  \"burlar\": \"burl\",\n  \"burlarte\": \"burlart\",\n  \"burlas\": \"burl\",\n  \"burló\": \"burl\",\n  \"burocracia\": \"burocraci\",\n  \"burócrata\": \"burocrat\",\n  \"burócratas\": \"burocrat\",\n  \"burocráticas\": \"burocrat\",\n  \"burocráticos\": \"burocrat\",\n  \"burocratismos\": \"burocrat\",\n  \"burro\": \"burr\",\n  \"burros\": \"burr\",\n  \"bursatil\": \"bursatil\",\n  \"bursátil\": \"bursatil\",\n  \"bursátiles\": \"bursatil\",\n  \"bursatilidad\": \"bursatil\",\n  \"bursatilización\": \"bursatiliz\",\n  \"burzatilización\": \"burzatiliz\",\n  \"busca\": \"busc\",\n  \"buscaba\": \"busc\",\n  \"buscaban\": \"busc\",\n  \"buscado\": \"busc\",\n  \"buscador\": \"buscador\",\n  \"buscadores\": \"buscador\",\n  \"buscados\": \"busc\",\n  \"buscamos\": \"busc\",\n  \"buscan\": \"busc\",\n  \"buscando\": \"busc\",\n  \"buscar\": \"busc\",\n  \"buscara\": \"busc\",\n  \"buscará\": \"busc\",\n  \"buscaran\": \"busc\",\n  \"buscarán\": \"busc\",\n  \"buscaras\": \"busc\",\n  \"buscaremos\": \"busc\",\n  \"buscaría\": \"busc\",\n  \"buscarla\": \"busc\",\n  \"buscarle\": \"busc\",\n  \"buscarlo\": \"busc\",\n  \"buscaron\": \"busc\",\n  \"buscarse\": \"busc\",\n  \"busco\": \"busc\",\n  \"buscó\": \"busc\",\n  \"bush\": \"bush\",\n  \"business\": \"business\",\n  \"busque\": \"busqu\",\n  \"búsqueda\": \"busqued\",\n  \"búsquedas\": \"busqued\",\n  \"búsquele\": \"busquel\",\n  \"busquen\": \"busqu\",\n  \"bustamante\": \"bustam\",\n  \"bustillos\": \"bustill\",\n  \"bustinzer\": \"bustinz\",\n  \"busto\": \"bust\",\n  \"butacas\": \"butac\",\n  \"butano\": \"butan\",\n  \"butcher\": \"butch\",\n  \"butler\": \"butl\",\n  \"by\": \"by\",\n  \"bytes\": \"bytes\",\n  \"c\": \"c\",\n  \"caad\": \"caad\",\n  \"cab\": \"cab\",\n  \"cabada\": \"cab\",\n  \"cabal\": \"cabal\",\n  \"cabales\": \"cabal\",\n  \"caballada\": \"caball\",\n  \"caballero\": \"caballer\",\n  \"caballeros\": \"caballer\",\n  \"caballo\": \"caball\",\n  \"caballos\": \"caball\",\n  \"cabalmente\": \"cabal\",\n  \"cabaña\": \"cabañ\",\n  \"cabañas\": \"cabañ\",\n  \"cabanillas\": \"cabanill\",\n  \"cabaret\": \"cabaret\",\n  \"cabe\": \"cab\",\n  \"cabecillas\": \"cabecill\",\n  \"cabelleras\": \"cabeller\",\n  \"cabello\": \"cabell\",\n  \"cabellos\": \"cabell\",\n  \"cabestany\": \"cabestany\",\n  \"cabeza\": \"cabez\",\n  \"cabida\": \"cab\",\n  \"cabiedes\": \"cabied\",\n  \"cabildo\": \"cabild\",\n  \"cabildos\": \"cabild\",\n  \"cabina\": \"cabin\",\n  \"cable\": \"cabl\",\n  \"cableado\": \"cabl\",\n  \"cables\": \"cabl\",\n  \"cablevisión\": \"cablevision\",\n  \"cabo\": \"cab\",\n  \"cabos\": \"cab\",\n  \"cabras\": \"cabr\",\n  \"cabrera\": \"cabrer\",\n  \"cabrito\": \"cabrit\",\n  \"cacallacas\": \"cacallac\",\n  \"cacao\": \"caca\",\n  \"cacareaban\": \"cacar\",\n  \"cacería\": \"cac\",\n  \"cacerías\": \"cac\",\n  \"cacerío\": \"caceri\",\n  \"caceríos\": \"caceri\",\n  \"cacerolas\": \"cacerol\",\n  \"cachetearon\": \"cachet\",\n  \"cachetes\": \"cachet\",\n  \"caciques\": \"caciqu\",\n  \"caciquiles\": \"caciquil\",\n  \"cada\": \"cad\",\n  \"cadapa\": \"cadap\",\n  \"cadáver\": \"cadav\",\n  \"cadáveres\": \"cadaver\",\n  \"cadena\": \"caden\",\n  \"cadenas\": \"caden\",\n  \"cadencia\": \"cadenci\",\n  \"cadereyta\": \"cadereyt\",\n  \"cadete\": \"cadet\",\n  \"cadetes\": \"cadet\",\n  \"cadis\": \"cadis\",\n  \"cádiz\": \"cadiz\",\n  \"cadmio\": \"cadmi\",\n  \"caducidad\": \"caduc\",\n  \"cae\": \"cae\",\n  \"caemos\": \"caem\",\n  \"caen\": \"caen\",\n  \"caer\": \"caer\",\n  \"caerle\": \"caerl\",\n  \"café\": \"caf\",\n  \"cafecito\": \"cafecit\",\n  \"cafés\": \"cafes\",\n  \"cafetal\": \"cafetal\",\n  \"cafetería\": \"cafet\",\n  \"cafeteros\": \"cafeter\",\n  \"cafú\": \"cafu\",\n  \"caía\": \"cai\",\n  \"caída\": \"caid\",\n  \"caídas\": \"caid\",\n  \"caído\": \"caid\",\n  \"caifanes\": \"caifan\",\n  \"caigan\": \"caig\",\n  \"caintra\": \"caintr\",\n  \"cairo\": \"cair\",\n  \"caja\": \"caj\",\n  \"cajal\": \"cajal\",\n  \"cajas\": \"caj\",\n  \"cajón\": \"cajon\",\n  \"cajuela\": \"cajuel\",\n  \"cala\": \"cal\",\n  \"calabaza\": \"calabaz\",\n  \"calamidades\": \"calam\",\n  \"calcamonía\": \"calcamon\",\n  \"calcamonías\": \"calcamon\",\n  \"calcetines\": \"calcetin\",\n  \"calcinado\": \"calcin\",\n  \"calcomanía\": \"calcoman\",\n  \"calcula\": \"calcul\",\n  \"calculadas\": \"calcul\",\n  \"calculado\": \"calcul\",\n  \"calculadora\": \"calcul\",\n  \"calculadoras\": \"calcul\",\n  \"calculando\": \"calcul\",\n  \"calcular\": \"calcul\",\n  \"calcularon\": \"calcul\",\n  \"calcule\": \"calcul\",\n  \"calcúlele\": \"calculel\",\n  \"calculo\": \"calcul\",\n  \"cálculo\": \"calcul\",\n  \"calculó\": \"calcul\",\n  \"cálculos\": \"calcul\",\n  \"caldeado\": \"cald\",\n  \"caldeen\": \"cald\",\n  \"caldera\": \"calder\",\n  \"calderón\": \"calderon\",\n  \"calderoni\": \"calderoni\",\n  \"caldillo\": \"caldill\",\n  \"calefacción\": \"calefaccion\",\n  \"calendario\": \"calendari\",\n  \"calendarios\": \"calendari\",\n  \"calentamiento\": \"calent\",\n  \"calentando\": \"calent\",\n  \"calentar\": \"calent\",\n  \"calentura\": \"calentur\",\n  \"calgene\": \"calgen\",\n  \"calibración\": \"calibr\",\n  \"calibradas\": \"calibr\",\n  \"calibrar\": \"calibr\",\n  \"calibre\": \"calibr\",\n  \"cálida\": \"cal\",\n  \"calidad\": \"calid\",\n  \"calidades\": \"calidad\",\n  \"cálido\": \"cal\",\n  \"calientan\": \"calient\",\n  \"caliente\": \"calient\",\n  \"calientes\": \"calient\",\n  \"califica\": \"calif\",\n  \"calificación\": \"calif\",\n  \"calificaciones\": \"calif\",\n  \"calificada\": \"calific\",\n  \"calificadas\": \"calific\",\n  \"calificado\": \"calific\",\n  \"calificadora\": \"calif\",\n  \"calificados\": \"calific\",\n  \"calificamos\": \"calific\",\n  \"califican\": \"calific\",\n  \"calificar\": \"calific\",\n  \"calificará\": \"calific\",\n  \"calificaría\": \"calific\",\n  \"calificaron\": \"calific\",\n  \"calificativo\": \"calific\",\n  \"calificativos\": \"calific\",\n  \"calificó\": \"calific\",\n  \"califique\": \"califiqu\",\n  \"california\": \"californi\",\n  \"californiano\": \"californian\",\n  \"californias\": \"californi\",\n  \"caligula\": \"caligul\",\n  \"calígula\": \"caligul\",\n  \"calla\": \"call\",\n  \"callada\": \"call\",\n  \"calladito\": \"calladit\",\n  \"callado\": \"call\",\n  \"callar\": \"call\",\n  \"callarlo\": \"call\",\n  \"calle\": \"call\",\n  \"callejera\": \"callejer\",\n  \"callejeros\": \"callejer\",\n  \"callejoneadas\": \"callejon\",\n  \"calles\": \"call\",\n  \"calloway\": \"calloway\",\n  \"calma\": \"calm\",\n  \"calmar\": \"calm\",\n  \"calmarla\": \"calm\",\n  \"cálmecac\": \"calmecac\",\n  \"calo\": \"cal\",\n  \"caloca\": \"caloc\",\n  \"calor\": \"calor\",\n  \"calpan\": \"calp\",\n  \"calpixques\": \"calpixqu\",\n  \"calpullis\": \"calpullis\",\n  \"calumnia\": \"calumni\",\n  \"calumnias\": \"calumni\",\n  \"caluroso\": \"calur\",\n  \"calvillo\": \"calvill\",\n  \"calzada\": \"calz\",\n  \"calzado\": \"calz\",\n  \"calzoncillo\": \"calzoncill\",\n  \"cama\": \"cam\",\n  \"camacho\": \"camach\",\n  \"camaleónica\": \"camaleon\",\n  \"camaleónico\": \"camaleon\",\n  \"cámara\": \"cam\",\n  \"camaradería\": \"camarad\",\n  \"cámaras\": \"cam\",\n  \"camarero\": \"camarer\",\n  \"camareros\": \"camarer\",\n  \"camargo\": \"camarg\",\n  \"camarlengo\": \"camarleng\",\n  \"camarón\": \"camaron\",\n  \"camarote\": \"camarot\",\n  \"camas\": \"cam\",\n  \"cambia\": \"cambi\",\n  \"cambiado\": \"cambi\",\n  \"cambiamos\": \"cambi\",\n  \"cambian\": \"cambi\",\n  \"cambiando\": \"cambi\",\n  \"cambiante\": \"cambiant\",\n  \"cambiantes\": \"cambiant\",\n  \"cambiar\": \"cambi\",\n  \"cambiara\": \"cambi\",\n  \"cambiará\": \"cambi\",\n  \"cambiaría\": \"cambi\",\n  \"cambiarían\": \"cambi\",\n  \"cambiarias\": \"cambiari\",\n  \"cambiario\": \"cambiari\",\n  \"cambiarle\": \"cambi\",\n  \"cambiarlos\": \"cambi\",\n  \"cambiaron\": \"cambi\",\n  \"cambie\": \"cambi\",\n  \"cambié\": \"cambi\",\n  \"cambio\": \"cambi\",\n  \"cambió\": \"camb\",\n  \"cambios\": \"cambi\",\n  \"cambridge\": \"cambridg\",\n  \"camdomble\": \"camdombl\",\n  \"camelia\": \"cameli\",\n  \"camellón\": \"camellon\",\n  \"camellones\": \"camellon\",\n  \"camelo\": \"camel\",\n  \"camerino\": \"camerin\",\n  \"camet\": \"camet\",\n  \"camexa\": \"camex\",\n  \"caminaba\": \"camin\",\n  \"caminaban\": \"camin\",\n  \"caminan\": \"camin\",\n  \"caminando\": \"camin\",\n  \"caminar\": \"camin\",\n  \"caminaron\": \"camin\",\n  \"caminata\": \"caminat\",\n  \"camine\": \"camin\",\n  \"camino\": \"camin\",\n  \"caminó\": \"camin\",\n  \"caminos\": \"camin\",\n  \"camión\": \"camion\",\n  \"camioneras\": \"camioner\",\n  \"camioneros\": \"camioner\",\n  \"camiones\": \"camion\",\n  \"camioneta\": \"camionet\",\n  \"camionetas\": \"camionet\",\n  \"camisa\": \"camis\",\n  \"camiseta\": \"camiset\",\n  \"camisetas\": \"camiset\",\n  \"camisitas\": \"camisit\",\n  \"camisón\": \"camison\",\n  \"camisones\": \"camison\",\n  \"camorristas\": \"camorr\",\n  \"camotlán\": \"camotlan\",\n  \"camp\": \"camp\",\n  \"campal\": \"campal\",\n  \"campamento\": \"campament\",\n  \"campamentos\": \"campament\",\n  \"campaña\": \"campañ\",\n  \"campañas\": \"campañ\",\n  \"campechanos\": \"campechan\",\n  \"campeche\": \"campech\",\n  \"campeon\": \"campeon\",\n  \"campeón\": \"campeon\",\n  \"campeona\": \"campeon\",\n  \"campeonato\": \"campeonat\",\n  \"campeonatos\": \"campeonat\",\n  \"campeones\": \"campeon\",\n  \"campesina\": \"campesin\",\n  \"campesinos\": \"campesin\",\n  \"campestre\": \"campestr\",\n  \"campo\": \"camp\",\n  \"campos\": \"camp\",\n  \"camposeco\": \"camposec\",\n  \"campus\": \"campus\",\n  \"campuzano\": \"campuzan\",\n  \"camuflajes\": \"camuflaj\",\n  \"canacintra\": \"canacintr\",\n  \"canaco\": \"canac\",\n  \"canada\": \"can\",\n  \"cañada\": \"cañ\",\n  \"canadá\": \"canad\",\n  \"canadian\": \"canadi\",\n  \"canadiense\": \"canadiens\",\n  \"canadienses\": \"canadiens\",\n  \"canal\": \"canal\",\n  \"canalera\": \"canaler\",\n  \"canalero\": \"canaler\",\n  \"canales\": \"canal\",\n  \"canalicen\": \"canalic\",\n  \"canalización\": \"canaliz\",\n  \"canalizado\": \"canaliz\",\n  \"canalizados\": \"canaliz\",\n  \"canalizando\": \"canaliz\",\n  \"canalizara\": \"canaliz\",\n  \"cañamar\": \"cañam\",\n  \"canapés\": \"canapes\",\n  \"canasta\": \"canast\",\n  \"canasto\": \"canast\",\n  \"cancela\": \"cancel\",\n  \"cancelaba\": \"cancel\",\n  \"cancelación\": \"cancel\",\n  \"cancelada\": \"cancel\",\n  \"cancelados\": \"cancel\",\n  \"cancelando\": \"cancel\",\n  \"cancelar\": \"cancel\",\n  \"cancelarán\": \"cancel\",\n  \"canceló\": \"cancel\",\n  \"cáncer\": \"canc\",\n  \"cancha\": \"canch\",\n  \"canchas\": \"canch\",\n  \"canciller\": \"cancill\",\n  \"cancilleres\": \"canciller\",\n  \"cancillería\": \"cancill\",\n  \"canción\": \"cancion\",\n  \"cancioncita\": \"cancioncit\",\n  \"canciones\": \"cancion\",\n  \"cancun\": \"cancun\",\n  \"cancún\": \"cancun\",\n  \"candelaria\": \"candelari\",\n  \"candelero\": \"candeler\",\n  \"candentes\": \"candent\",\n  \"cándida\": \"cand\",\n  \"candidata\": \"candidat\",\n  \"candidato\": \"candidat\",\n  \"candidatos\": \"candidat\",\n  \"candidatura\": \"candidatur\",\n  \"candidaturas\": \"candidatur\",\n  \"candidiasis\": \"candidiasis\",\n  \"candil\": \"candil\",\n  \"candor\": \"candor\",\n  \"candy\": \"candy\",\n  \"cañedo\": \"cañed\",\n  \"canela\": \"canel\",\n  \"canels\": \"canels\",\n  \"cañete\": \"cañet\",\n  \"caníbales\": \"canibal\",\n  \"caniggia\": \"caniggi\",\n  \"canijo\": \"canij\",\n  \"canion\": \"canion\",\n  \"canje\": \"canj\",\n  \"cano\": \"can\",\n  \"canoga\": \"canog\",\n  \"canolas\": \"canol\",\n  \"cañonazos\": \"cañonaz\",\n  \"cañones\": \"cañon\",\n  \"cansada\": \"cans\",\n  \"cansadas\": \"cans\",\n  \"cansado\": \"cans\",\n  \"cansados\": \"cans\",\n  \"cansancio\": \"cansanci\",\n  \"canseco\": \"cansec\",\n  \"canta\": \"cant\",\n  \"cantaba\": \"cant\",\n  \"cantaban\": \"cant\",\n  \"cantan\": \"cant\",\n  \"cantando\": \"cant\",\n  \"cantante\": \"cantant\",\n  \"cantantes\": \"cantant\",\n  \"cantar\": \"cant\",\n  \"cantaron\": \"cant\",\n  \"cantera\": \"canter\",\n  \"cantería\": \"cant\",\n  \"cantidad\": \"cantid\",\n  \"cantidades\": \"cantidad\",\n  \"cantina\": \"cantin\",\n  \"cantinas\": \"cantin\",\n  \"cantinflas\": \"cantinfl\",\n  \"canto\": \"cant\",\n  \"cantó\": \"cant\",\n  \"cantos\": \"cant\",\n  \"cantú\": \"cantu\",\n  \"caoba\": \"caob\",\n  \"caón\": \"caon\",\n  \"caona\": \"caon\",\n  \"caos\": \"caos\",\n  \"caótica\": \"caotic\",\n  \"capa\": \"cap\",\n  \"capaces\": \"capac\",\n  \"capacidad\": \"capac\",\n  \"capacidades\": \"capac\",\n  \"capacita\": \"capacit\",\n  \"capacitación\": \"capacit\",\n  \"capacitada\": \"capacit\",\n  \"capacitado\": \"capacit\",\n  \"capacitamos\": \"capacit\",\n  \"capacitan\": \"capacit\",\n  \"capacitando\": \"capacit\",\n  \"capacitar\": \"capacit\",\n  \"capacitarse\": \"capacit\",\n  \"capas\": \"cap\",\n  \"capatacio\": \"capataci\",\n  \"capaz\": \"capaz\",\n  \"caperucita\": \"caperucit\",\n  \"capetillo\": \"capetill\",\n  \"capfce\": \"capfc\",\n  \"capilla\": \"capill\",\n  \"capital\": \"capital\",\n  \"capitales\": \"capital\",\n  \"capitalina\": \"capitalin\",\n  \"capitalino\": \"capitalin\",\n  \"capitalinos\": \"capitalin\",\n  \"capitalista\": \"capital\",\n  \"capitalistas\": \"capital\",\n  \"capitalización\": \"capitaliz\",\n  \"capitalizador\": \"capitaliz\",\n  \"capitalizar\": \"capitaliz\",\n  \"capitalizaron\": \"capitaliz\",\n  \"capitán\": \"capitan\",\n  \"capitanes\": \"capitan\",\n  \"capitolio\": \"capitoli\",\n  \"capitonada\": \"capiton\",\n  \"capitonadas\": \"capiton\",\n  \"capitonados\": \"capiton\",\n  \"capitulación\": \"capitul\",\n  \"capítulo\": \"capitul\",\n  \"capítulos\": \"capitul\",\n  \"capo\": \"cap\",\n  \"caporal\": \"caporal\",\n  \"capos\": \"cap\",\n  \"capote\": \"capot\",\n  \"cappel\": \"cappel\",\n  \"capricho\": \"caprich\",\n  \"caprichos\": \"caprich\",\n  \"caprichosas\": \"caprich\",\n  \"caprichosos\": \"caprich\",\n  \"captación\": \"captacion\",\n  \"captado\": \"capt\",\n  \"captamos\": \"capt\",\n  \"captar\": \"capt\",\n  \"captará\": \"capt\",\n  \"captaron\": \"capt\",\n  \"capten\": \"capt\",\n  \"captivos\": \"captiv\",\n  \"captó\": \"capt\",\n  \"captura\": \"captur\",\n  \"capturados\": \"captur\",\n  \"capturó\": \"captur\",\n  \"capucha\": \"capuch\",\n  \"car\": \"car\",\n  \"cara\": \"car\",\n  \"caracas\": \"carac\",\n  \"caracol\": \"caracol\",\n  \"carácter\": \"caract\",\n  \"caracteres\": \"caracter\",\n  \"característica\": \"caracterist\",\n  \"características\": \"caracterist\",\n  \"característicos\": \"caracterist\",\n  \"caracteriza\": \"caracteriz\",\n  \"caracterizadas\": \"caracteriz\",\n  \"caracterizado\": \"caracteriz\",\n  \"caracterizan\": \"caracteriz\",\n  \"caracterizar\": \"caracteriz\",\n  \"caracterizaron\": \"caracteriz\",\n  \"caracterizó\": \"caracteriz\",\n  \"carajo\": \"caraj\",\n  \"caramona\": \"caramon\",\n  \"caraqueña\": \"caraqueñ\",\n  \"caras\": \"car\",\n  \"carátula\": \"caratul\",\n  \"caravana\": \"caravan\",\n  \"caravanas\": \"caravan\",\n  \"caravia\": \"caravi\",\n  \"caray\": \"caray\",\n  \"carbajal\": \"carbajal\",\n  \"carballido\": \"carball\",\n  \"carballo\": \"carball\",\n  \"carbón\": \"carbon\",\n  \"carbonáceo\": \"carbonace\",\n  \"carbonel\": \"carbonel\",\n  \"carbono\": \"carbon\",\n  \"carburador\": \"carbur\",\n  \"carcajada\": \"carcaj\",\n  \"carcajadas\": \"carcaj\",\n  \"carcaño\": \"carcañ\",\n  \"cárcel\": \"carcel\",\n  \"cárceles\": \"carcel\",\n  \"carcomido\": \"carcom\",\n  \"cárcova\": \"carcov\",\n  \"card\": \"card\",\n  \"cardán\": \"cardan\",\n  \"cardenal\": \"cardenal\",\n  \"cardenales\": \"cardenal\",\n  \"cárdenas\": \"carden\",\n  \"cardenismo\": \"carden\",\n  \"cardenista\": \"carden\",\n  \"cardenistas\": \"carden\",\n  \"cárdeno\": \"carden\",\n  \"cardiaca\": \"cardiac\",\n  \"cardíaca\": \"cardiac\",\n  \"cardiaco\": \"cardiac\",\n  \"cardíaco\": \"cardiac\",\n  \"cardíacos\": \"cardiac\",\n  \"cardiología\": \"cardiolog\",\n  \"cardiólogo\": \"cardiolog\",\n  \"cardiopulmonar\": \"cardiopulmon\",\n  \"cardona\": \"cardon\",\n  \"careca\": \"carec\",\n  \"carece\": \"carec\",\n  \"carecen\": \"carec\",\n  \"carecer\": \"carec\",\n  \"carecía\": \"carec\",\n  \"carecían\": \"carec\",\n  \"careció\": \"carec\",\n  \"carencia\": \"carenci\",\n  \"carencias\": \"carenci\",\n  \"carente\": \"carent\",\n  \"carentes\": \"carent\",\n  \"careo\": \"care\",\n  \"carga\": \"carg\",\n  \"cargada\": \"carg\",\n  \"cargadas\": \"carg\",\n  \"cargado\": \"carg\",\n  \"cargados\": \"carg\",\n  \"cargamento\": \"cargament\",\n  \"cargamentos\": \"cargament\",\n  \"cargando\": \"carg\",\n  \"cargar\": \"carg\",\n  \"cargaran\": \"carg\",\n  \"cargarle\": \"carg\",\n  \"cargaron\": \"carg\",\n  \"cargas\": \"carg\",\n  \"cargo\": \"carg\",\n  \"cargó\": \"carg\",\n  \"cargos\": \"carg\",\n  \"cargueros\": \"carguer\",\n  \"carha\": \"carh\",\n  \"caribe\": \"carib\",\n  \"caribeña\": \"caribeñ\",\n  \"caribeño\": \"caribeñ\",\n  \"caribeños\": \"caribeñ\",\n  \"caricatura\": \"caricatur\",\n  \"caricaturas\": \"caricatur\",\n  \"caricias\": \"carici\",\n  \"caricom\": \"caricom\",\n  \"caridad\": \"carid\",\n  \"carina\": \"carin\",\n  \"cariño\": \"cariñ\",\n  \"cariñosidad\": \"cariñ\",\n  \"cariñoso\": \"cariñ\",\n  \"carioca\": \"carioc\",\n  \"cariotipos\": \"cariotip\",\n  \"carisma\": \"carism\",\n  \"carismático\": \"carismat\",\n  \"cáritas\": \"carit\",\n  \"caritativas\": \"carit\",\n  \"carl\": \"carl\",\n  \"carla\": \"carl\",\n  \"carlitos\": \"carlit\",\n  \"carlos\": \"carl\",\n  \"carlota\": \"carlot\",\n  \"carman\": \"carm\",\n  \"carmen\": \"carm\",\n  \"carmona\": \"carmon\",\n  \"carnaval\": \"carnaval\",\n  \"carnavaleros\": \"carnavaler\",\n  \"carnavales\": \"carnaval\",\n  \"carnavalescas\": \"carnavalesc\",\n  \"carnavalito\": \"carnavalit\",\n  \"carne\": \"carn\",\n  \"carneros\": \"carner\",\n  \"carnes\": \"carn\",\n  \"carnestolendas\": \"carnestolend\",\n  \"carnet\": \"carnet\",\n  \"carnicería\": \"carnic\",\n  \"carnicero\": \"carnicer\",\n  \"cárnicos\": \"carnic\",\n  \"caro\": \"car\",\n  \"carolina\": \"carolin\",\n  \"caronte\": \"caront\",\n  \"caros\": \"car\",\n  \"carpa\": \"carp\",\n  \"carpera\": \"carper\",\n  \"carpeta\": \"carpet\",\n  \"carpintería\": \"carpint\",\n  \"carpizo\": \"carpiz\",\n  \"carr\": \"carr\",\n  \"carrancismo\": \"carranc\",\n  \"carrancistas\": \"carranc\",\n  \"carranza\": \"carranz\",\n  \"carrasquel\": \"carrasquel\",\n  \"carreño\": \"carreñ\",\n  \"carreón\": \"carreon\",\n  \"carrera\": \"carrer\",\n  \"carreras\": \"carrer\",\n  \"carrero\": \"carrer\",\n  \"carreta\": \"carret\",\n  \"carretera\": \"carreter\",\n  \"carreteras\": \"carreter\",\n  \"carretero\": \"carreter\",\n  \"carreteros\": \"carreter\",\n  \"carretón\": \"carreton\",\n  \"carrier\": \"carri\",\n  \"carriles\": \"carril\",\n  \"carrillo\": \"carrill\",\n  \"carrington\": \"carrington\",\n  \"carrión\": \"carrion\",\n  \"carrito\": \"carrit\",\n  \"carrizalejo\": \"carrizalej\",\n  \"carrizales\": \"carrizal\",\n  \"carro\": \"carr\",\n  \"carrocería\": \"carroc\",\n  \"carrocerías\": \"carroc\",\n  \"carros\": \"carr\",\n  \"carroza\": \"carroz\",\n  \"carrozas\": \"carroz\",\n  \"carruaje\": \"carruaj\",\n  \"carruajes\": \"carruaj\",\n  \"carrujo\": \"carruj\",\n  \"carrujos\": \"carruj\",\n  \"carso\": \"cars\",\n  \"carta\": \"cart\",\n  \"cartagena\": \"cartagen\",\n  \"cartas\": \"cart\",\n  \"cartay\": \"cartay\",\n  \"cartel\": \"cartel\",\n  \"cártel\": \"cartel\",\n  \"cartelera\": \"carteler\",\n  \"carteles\": \"cartel\",\n  \"cartelones\": \"cartelon\",\n  \"carter\": \"cart\",\n  \"cartera\": \"carter\",\n  \"carteras\": \"carter\",\n  \"cartilla\": \"cartill\",\n  \"cartón\": \"carton\",\n  \"cartucho\": \"cartuch\",\n  \"carvajal\": \"carvajal\",\n  \"casa\": \"cas\",\n  \"casaca\": \"casac\",\n  \"casada\": \"cas\",\n  \"casadas\": \"cas\",\n  \"casado\": \"cas\",\n  \"casados\": \"cas\",\n  \"casamentero\": \"casamenter\",\n  \"casando\": \"cas\",\n  \"casarme\": \"cas\",\n  \"casaron\": \"cas\",\n  \"casarse\": \"cas\",\n  \"casas\": \"cas\",\n  \"casashabitación\": \"casashabit\",\n  \"casavan\": \"casav\",\n  \"cascabel\": \"cascabel\",\n  \"cascabeles\": \"cascabel\",\n  \"cascada\": \"casc\",\n  \"cáscara\": \"casc\",\n  \"cascos\": \"casc\",\n  \"caseras\": \"caser\",\n  \"casero\": \"caser\",\n  \"caseros\": \"caser\",\n  \"caseta\": \"caset\",\n  \"casetas\": \"caset\",\n  \"cash\": \"cash\",\n  \"casi\": \"casi\",\n  \"casilla\": \"casill\",\n  \"casillas\": \"casill\",\n  \"casillero\": \"casiller\",\n  \"casimir\": \"casim\",\n  \"casino\": \"casin\",\n  \"casio\": \"casi\",\n  \"casita\": \"casit\",\n  \"caso\": \"cas\",\n  \"casó\": \"cas\",\n  \"casos\": \"cas\",\n  \"casquillo\": \"casquill\",\n  \"casquillos\": \"casquill\",\n  \"cassete\": \"casset\",\n  \"cassette\": \"cassett\",\n  \"cassettes\": \"cassett\",\n  \"casta\": \"cast\",\n  \"castañas\": \"castañ\",\n  \"castañeda\": \"castañed\",\n  \"castaño\": \"castañ\",\n  \"castañón\": \"castañon\",\n  \"castaños\": \"castañ\",\n  \"castellano\": \"castellan\",\n  \"castellanos\": \"castellan\",\n  \"castidad\": \"castid\",\n  \"castiga\": \"castig\",\n  \"castigadas\": \"castig\",\n  \"castigados\": \"castig\",\n  \"castigar\": \"castig\",\n  \"castigará\": \"castig\",\n  \"castigo\": \"castig\",\n  \"castigue\": \"castig\",\n  \"castilla\": \"castill\",\n  \"castilleja\": \"castillej\",\n  \"castillejos\": \"castillej\",\n  \"castillo\": \"castill\",\n  \"castor\": \"castor\",\n  \"castores\": \"castor\",\n  \"castrejón\": \"castrejon\",\n  \"castro\": \"castr\",\n  \"castruita\": \"castruit\",\n  \"cástulo\": \"castul\",\n  \"casual\": \"casual\",\n  \"casuales\": \"casual\",\n  \"casualidad\": \"casual\",\n  \"casuística\": \"casuist\",\n  \"cat\": \"cat\",\n  \"catalán\": \"catalan\",\n  \"catalanes\": \"catalan\",\n  \"catalina\": \"catalin\",\n  \"catalítico\": \"catalit\",\n  \"catalíticos\": \"catalit\",\n  \"catalizador\": \"cataliz\",\n  \"catalogan\": \"catalog\",\n  \"catálogo\": \"catalog\",\n  \"catamo\": \"catam\",\n  \"cataño\": \"catañ\",\n  \"catarata\": \"catarat\",\n  \"cataratas\": \"catarat\",\n  \"catarina\": \"catarin\",\n  \"catarro\": \"catarr\",\n  \"catarros\": \"catarr\",\n  \"catarsis\": \"catarsis\",\n  \"catársis\": \"catarsis\",\n  \"catastral\": \"catastral\",\n  \"catastrales\": \"catastral\",\n  \"catastro\": \"catastr\",\n  \"catástrofe\": \"catastrof\",\n  \"catastrófica\": \"catastrof\",\n  \"cátchers\": \"catchers\",\n  \"cateadas\": \"cat\",\n  \"cátedra\": \"catedr\",\n  \"catedral\": \"catedral\",\n  \"catedrática\": \"catedrat\",\n  \"catedrático\": \"catedrat\",\n  \"catedráticos\": \"catedrat\",\n  \"categoría\": \"categor\",\n  \"categorías\": \"categor\",\n  \"cateos\": \"cate\",\n  \"catequesis\": \"catequesis\",\n  \"católica\": \"catol\",\n  \"catolicismo\": \"catolic\",\n  \"católico\": \"catol\",\n  \"católicos\": \"catol\",\n  \"catón\": \"caton\",\n  \"catorce\": \"catorc\",\n  \"catrerina\": \"catrerin\",\n  \"catsup\": \"catsup\",\n  \"cauce\": \"cauc\",\n  \"cauces\": \"cauc\",\n  \"caucional\": \"caucional\",\n  \"caudalosos\": \"caudal\",\n  \"caudillo\": \"caudill\",\n  \"causa\": \"caus\",\n  \"causada\": \"caus\",\n  \"causadas\": \"caus\",\n  \"causado\": \"caus\",\n  \"causados\": \"caus\",\n  \"causaefecto\": \"causaefect\",\n  \"causales\": \"causal\",\n  \"causan\": \"caus\",\n  \"causando\": \"caus\",\n  \"causante\": \"causant\",\n  \"causantes\": \"causant\",\n  \"causar\": \"caus\",\n  \"causará\": \"caus\",\n  \"causaron\": \"caus\",\n  \"causas\": \"caus\",\n  \"cause\": \"caus\",\n  \"causó\": \"caus\",\n  \"cautela\": \"cautel\",\n  \"cautelosa\": \"cautel\",\n  \"cautivarlos\": \"cautiv\",\n  \"cautivas\": \"cautiv\",\n  \"cautivos\": \"cautiv\",\n  \"cavazos\": \"cavaz\",\n  \"cavernaria\": \"cavernari\",\n  \"cavidad\": \"cavid\",\n  \"cayeran\": \"cayer\",\n  \"cayeron\": \"cayeron\",\n  \"cayetano\": \"cayetan\",\n  \"cayman\": \"caym\",\n  \"cayo\": \"cay\",\n  \"cayó\": \"cay\",\n  \"caza\": \"caz\",\n  \"cazador\": \"cazador\",\n  \"cazadoras\": \"cazador\",\n  \"cazadores\": \"cazador\",\n  \"cazar\": \"caz\",\n  \"cázares\": \"cazar\",\n  \"cazaux\": \"cazaux\",\n  \"cazuela\": \"cazuel\",\n  \"cbinbur\": \"cbinbur\",\n  \"cbs\": \"cbs\",\n  \"cbtis\": \"cbtis\",\n  \"ccd\": \"ccd\",\n  \"cce\": \"cce\",\n  \"ccinlac\": \"ccinlac\",\n  \"ccolonia\": \"ccoloni\",\n  \"ccp\": \"ccp\",\n  \"cd\": \"cd\",\n  \"ce\": \"ce\",\n  \"cear\": \"cear\",\n  \"cebada\": \"ceb\",\n  \"cebatis\": \"cebatis\",\n  \"cebolla\": \"ceboll\",\n  \"cebollas\": \"ceboll\",\n  \"cebrián\": \"cebrian\",\n  \"cecilia\": \"cecili\",\n  \"ceda\": \"ced\",\n  \"cedart\": \"cedart\",\n  \"cede\": \"ced\",\n  \"cedeco\": \"cedec\",\n  \"cedeño\": \"cedeñ\",\n  \"ceder\": \"ced\",\n  \"cederán\": \"ced\",\n  \"cedería\": \"ced\",\n  \"cedido\": \"ced\",\n  \"cedieron\": \"ced\",\n  \"cedió\": \"ced\",\n  \"cedral\": \"cedral\",\n  \"cédula\": \"cedul\",\n  \"cédulas\": \"cedul\",\n  \"cee\": \"cee\",\n  \"cegarse\": \"ceg\",\n  \"ceja\": \"cej\",\n  \"celadora\": \"celador\",\n  \"celadores\": \"celador\",\n  \"celaya\": \"celay\",\n  \"celda\": \"celd\",\n  \"celebérrima\": \"celeberrim\",\n  \"celebra\": \"celebr\",\n  \"celebraba\": \"celebr\",\n  \"celebración\": \"celebr\",\n  \"celebraciones\": \"celebr\",\n  \"celebrada\": \"celebr\",\n  \"celebradas\": \"celebr\",\n  \"celebrado\": \"celebr\",\n  \"celebrados\": \"celebr\",\n  \"celebran\": \"celebr\",\n  \"celebrar\": \"celebr\",\n  \"celebrará\": \"celebr\",\n  \"celebrarlo\": \"celebr\",\n  \"celebraron\": \"celebr\",\n  \"celebrarse\": \"celebr\",\n  \"celebre\": \"celebr\",\n  \"célebre\": \"celebr\",\n  \"celébrelas\": \"celebrel\",\n  \"célebres\": \"celebr\",\n  \"celebridad\": \"celebr\",\n  \"celebridades\": \"celebr\",\n  \"celebró\": \"celebr\",\n  \"celeridad\": \"celer\",\n  \"celestes\": \"celest\",\n  \"celestial\": \"celestial\",\n  \"celia\": \"celi\",\n  \"celiberia\": \"celiberi\",\n  \"celio\": \"celi\",\n  \"celo\": \"cel\",\n  \"celos\": \"cel\",\n  \"celso\": \"cels\",\n  \"celta\": \"celt\",\n  \"célula\": \"celul\",\n  \"celular\": \"celul\",\n  \"celulares\": \"celular\",\n  \"células\": \"celul\",\n  \"cemcaspe\": \"cemcasp\",\n  \"cement\": \"cement\",\n  \"cementeras\": \"cementer\",\n  \"cementero\": \"cementer\",\n  \"cemento\": \"cement\",\n  \"cementos\": \"cement\",\n  \"cemex\": \"cemex\",\n  \"cen\": \"cen\",\n  \"cena\": \"cen\",\n  \"cenamos\": \"cen\",\n  \"cenar\": \"cen\",\n  \"cenas\": \"cen\",\n  \"cenefa\": \"cenef\",\n  \"cenefas\": \"cenef\",\n  \"ceñido\": \"ceñ\",\n  \"ceniza\": \"ceniz\",\n  \"cenizas\": \"ceniz\",\n  \"cenlac\": \"cenlac\",\n  \"cenó\": \"cen\",\n  \"censo\": \"cens\",\n  \"censura\": \"censur\",\n  \"censurable\": \"censur\",\n  \"censurada\": \"censur\",\n  \"censuradas\": \"censur\",\n  \"censurado\": \"censur\",\n  \"censurar\": \"censur\",\n  \"censuró\": \"censur\",\n  \"centavo\": \"centav\",\n  \"centavos\": \"centav\",\n  \"centenar\": \"centen\",\n  \"centenares\": \"centenar\",\n  \"centenario\": \"centenari\",\n  \"centeno\": \"centen\",\n  \"center\": \"cent\",\n  \"centésimas\": \"centesim\",\n  \"centígrados\": \"centigr\",\n  \"centímetros\": \"centimetr\",\n  \"centradas\": \"centr\",\n  \"central\": \"central\",\n  \"centrales\": \"central\",\n  \"centramos\": \"centr\",\n  \"centrándose\": \"centr\",\n  \"centrará\": \"centr\",\n  \"centrarse\": \"centr\",\n  \"centre\": \"centr\",\n  \"céntricas\": \"centric\",\n  \"céntrico\": \"centric\",\n  \"céntricos\": \"centric\",\n  \"centro\": \"centr\",\n  \"centroamérica\": \"centroamer\",\n  \"centroamericana\": \"centroamerican\",\n  \"centroamericano\": \"centroamerican\",\n  \"centroamericanos\": \"centroamerican\",\n  \"centroderechista\": \"centroderech\",\n  \"centros\": \"centr\",\n  \"century\": \"century\",\n  \"cepa\": \"cep\",\n  \"cepal\": \"cepal\",\n  \"cepeda\": \"ceped\",\n  \"cepillan\": \"cepill\",\n  \"cepillo\": \"cepill\",\n  \"cerámica\": \"ceram\",\n  \"cerca\": \"cerc\",\n  \"cercados\": \"cerc\",\n  \"cercana\": \"cercan\",\n  \"cercanas\": \"cercan\",\n  \"cercando\": \"cerc\",\n  \"cercanía\": \"cercan\",\n  \"cercano\": \"cercan\",\n  \"cercanos\": \"cercan\",\n  \"cercar\": \"cerc\",\n  \"cerciorarse\": \"cercior\",\n  \"cerda\": \"cerd\",\n  \"cerdas\": \"cerd\",\n  \"cerdo\": \"cerd\",\n  \"cerdos\": \"cerd\",\n  \"cereales\": \"cereal\",\n  \"cerebral\": \"cerebral\",\n  \"cerebrales\": \"cerebral\",\n  \"cerebro\": \"cerebr\",\n  \"cerebros\": \"cerebr\",\n  \"ceremonia\": \"ceremoni\",\n  \"ceremonias\": \"ceremoni\",\n  \"ceremoniosamente\": \"ceremoni\",\n  \"cereso\": \"ceres\",\n  \"cereza\": \"cerez\",\n  \"cero\": \"cer\",\n  \"cerraba\": \"cerr\",\n  \"cerraban\": \"cerr\",\n  \"cerrada\": \"cerr\",\n  \"cerradas\": \"cerr\",\n  \"cerrado\": \"cerr\",\n  \"cerrados\": \"cerr\",\n  \"cerradura\": \"cerradur\",\n  \"cerraduras\": \"cerradur\",\n  \"cerralvo\": \"cerralv\",\n  \"cerramos\": \"cerr\",\n  \"cerrando\": \"cerr\",\n  \"cerrar\": \"cerr\",\n  \"cerrará\": \"cerr\",\n  \"cerrarán\": \"cerr\",\n  \"cerrarlos\": \"cerr\",\n  \"cerraron\": \"cerr\",\n  \"cerrazón\": \"cerrazon\",\n  \"cerrito\": \"cerrit\",\n  \"cerro\": \"cerr\",\n  \"cerró\": \"cerr\",\n  \"cerrojo\": \"cerroj\",\n  \"cerros\": \"cerr\",\n  \"certamen\": \"certam\",\n  \"certera\": \"certer\",\n  \"certero\": \"certer\",\n  \"certeros\": \"certer\",\n  \"certeza\": \"certez\",\n  \"certidumbre\": \"certidumbr\",\n  \"certificado\": \"certific\",\n  \"certificados\": \"certific\",\n  \"certucha\": \"certuch\",\n  \"cerval\": \"cerval\",\n  \"cervantes\": \"cervant\",\n  \"cervantino\": \"cervantin\",\n  \"cerveceras\": \"cervecer\",\n  \"cervecería\": \"cervec\",\n  \"cervera\": \"cerver\",\n  \"cerveza\": \"cervez\",\n  \"cervezas\": \"cervez\",\n  \"cesa\": \"ces\",\n  \"cesados\": \"ces\",\n  \"cesan\": \"ces\",\n  \"cesar\": \"ces\",\n  \"césar\": \"ces\",\n  \"cesará\": \"ces\",\n  \"cesáreo\": \"cesare\",\n  \"cesaría\": \"ces\",\n  \"cese\": \"ces\",\n  \"cesión\": \"cesion\",\n  \"cesó\": \"ces\",\n  \"cesto\": \"cest\",\n  \"cetemista\": \"cetem\",\n  \"cetemistas\": \"cetem\",\n  \"cetes\": \"cet\",\n  \"cetro\": \"cetr\",\n  \"cetros\": \"cetr\",\n  \"ceu\": \"ceu\",\n  \"cevallos\": \"cevall\",\n  \"cezanne\": \"cezann\",\n  \"cfe\": \"cfe\",\n  \"ch\": \"ch\",\n  \"chagoyos\": \"chagoy\",\n  \"chagui\": \"chagui\",\n  \"chains\": \"chains\",\n  \"chal\": \"chal\",\n  \"chaleco\": \"chalec\",\n  \"chalina\": \"chalin\",\n  \"chalmer\": \"chalm\",\n  \"chamaca\": \"chamac\",\n  \"chamarra\": \"chamarr\",\n  \"chamarras\": \"chamarr\",\n  \"chamba\": \"chamb\",\n  \"chambelanes\": \"chambelan\",\n  \"chamois\": \"chamois\",\n  \"chamorro\": \"chamorr\",\n  \"champúes\": \"champu\",\n  \"chamula\": \"chamul\",\n  \"chamuscado\": \"chamusc\",\n  \"chan\": \"chan\",\n  \"chance\": \"chanc\",\n  \"chanel\": \"chanel\",\n  \"chango\": \"chang\",\n  \"chantilly\": \"chantilly\",\n  \"chanza\": \"chanz\",\n  \"chapa\": \"chap\",\n  \"chapala\": \"chapal\",\n  \"chapo\": \"chap\",\n  \"chapoteaderos\": \"chapoteader\",\n  \"chapultepec\": \"chapultepec\",\n  \"chapuzas\": \"chapuz\",\n  \"chaqueta\": \"chaquet\",\n  \"chara\": \"char\",\n  \"character\": \"charact\",\n  \"charchina\": \"charchin\",\n  \"charchino\": \"charchin\",\n  \"charco\": \"charc\",\n  \"charla\": \"charl\",\n  \"charlaron\": \"charl\",\n  \"charlas\": \"charl\",\n  \"charles\": \"charl\",\n  \"charlie\": \"charli\",\n  \"charló\": \"charl\",\n  \"charly\": \"charly\",\n  \"charnela\": \"charnel\",\n  \"charnell\": \"charnell\",\n  \"charreada\": \"charr\",\n  \"charreamos\": \"charr\",\n  \"charreando\": \"charr\",\n  \"charro\": \"charr\",\n  \"charros\": \"charr\",\n  \"chase\": \"chas\",\n  \"chasis\": \"chasis\",\n  \"chatarra\": \"chatarr\",\n  \"chatarrero\": \"chatarrer\",\n  \"chato\": \"chat\",\n  \"chaumu\": \"chaumu\",\n  \"chauvet\": \"chauvet\",\n  \"chavarría\": \"chavarr\",\n  \"chavas\": \"chav\",\n  \"chavero\": \"chaver\",\n  \"chavez\": \"chavez\",\n  \"chávez\": \"chavez\",\n  \"chavitas\": \"chavit\",\n  \"chavo\": \"chav\",\n  \"chavos\": \"chav\",\n  \"che\": \"che\",\n  \"checa\": \"chec\",\n  \"checar\": \"chec\",\n  \"checo\": \"chec\",\n  \"checoslovaquia\": \"checoslovaqui\",\n  \"chedraoui\": \"chedraoui\",\n  \"chefs\": \"chefs\",\n  \"cheliabinsk\": \"cheliabinsk\",\n  \"chelo\": \"chel\",\n  \"chemical\": \"chemical\",\n  \"chemicalweek\": \"chemicalweek\",\n  \"chemise\": \"chemis\",\n  \"chepo\": \"chep\",\n  \"cheque\": \"chequ\",\n  \"chequeo\": \"cheque\",\n  \"cheques\": \"chequ\",\n  \"cheraw\": \"cheraw\",\n  \"chesca\": \"chesc\",\n  \"chester\": \"chest\",\n  \"chetumal\": \"chetumal\",\n  \"chetumaleños\": \"chetumaleñ\",\n  \"chevrolet\": \"chevrolet\",\n  \"cheyene\": \"cheyen\",\n  \"cheyenne\": \"cheyenn\",\n  \"chi\": \"chi\",\n  \"chía\": \"chi\",\n  \"chiapaneca\": \"chiapanec\",\n  \"chiapas\": \"chiap\",\n  \"chiba\": \"chib\",\n  \"chic\": \"chic\",\n  \"chica\": \"chic\",\n  \"chicago\": \"chicag\",\n  \"chicana\": \"chican\",\n  \"chicano\": \"chican\",\n  \"chicas\": \"chic\",\n  \"chicharrones\": \"chicharron\",\n  \"chichen\": \"chich\",\n  \"chichimecas\": \"chichimec\",\n  \"chicles\": \"chicl\",\n  \"chico\": \"chic\",\n  \"chicos\": \"chic\",\n  \"chicotear\": \"chicot\",\n  \"chicuelinas\": \"chicuelin\",\n  \"chido\": \"chid\",\n  \"chifón\": \"chifon\",\n  \"chiguagua\": \"chiguagu\",\n  \"chihuahua\": \"chihuahu\",\n  \"chihuahuense\": \"chihuahuens\",\n  \"chiítas\": \"chiit\",\n  \"chila\": \"chil\",\n  \"chilac\": \"chilac\",\n  \"chilacayota\": \"chilacayot\",\n  \"chilangolandia\": \"chilangolandi\",\n  \"chilaquiles\": \"chilaquil\",\n  \"chile\": \"chil\",\n  \"chileno\": \"chilen\",\n  \"chilenos\": \"chilen\",\n  \"chiles\": \"chil\",\n  \"chili\": \"chili\",\n  \"chilpancingo\": \"chilpancing\",\n  \"chima\": \"chim\",\n  \"chin\": \"chin\",\n  \"china\": \"chin\",\n  \"chinche\": \"chinch\",\n  \"chinches\": \"chinch\",\n  \"chino\": \"chin\",\n  \"chinos\": \"chin\",\n  \"chip\": \"chip\",\n  \"chipinque\": \"chipinqu\",\n  \"chips\": \"chips\",\n  \"chiquita\": \"chiquit\",\n  \"chirac\": \"chirac\",\n  \"chirinos\": \"chirin\",\n  \"chisec\": \"chisec\",\n  \"chismosa\": \"chismos\",\n  \"chispa\": \"chisp\",\n  \"chispas\": \"chisp\",\n  \"chispazo\": \"chispaz\",\n  \"chispeando\": \"chisp\",\n  \"chistes\": \"chist\",\n  \"chiva\": \"chiv\",\n  \"chivas\": \"chiv\",\n  \"chivo\": \"chiv\",\n  \"chocado\": \"choc\",\n  \"chocan\": \"choc\",\n  \"chocar\": \"choc\",\n  \"chocarán\": \"choc\",\n  \"chocaron\": \"choc\",\n  \"chocó\": \"choc\",\n  \"chocolate\": \"chocolat\",\n  \"chocolates\": \"chocolat\",\n  \"chofer\": \"chof\",\n  \"choferes\": \"chofer\",\n  \"chontalpa\": \"chontalp\",\n  \"chopin\": \"chopin\",\n  \"choque\": \"choqu\",\n  \"choques\": \"choqu\",\n  \"chorizo\": \"choriz\",\n  \"chorreando\": \"chorr\",\n  \"chorro\": \"chorr\",\n  \"chraysler\": \"chraysl\",\n  \"chris\": \"chris\",\n  \"christi\": \"christi\",\n  \"christian\": \"christi\",\n  \"christie\": \"christi\",\n  \"christoph\": \"christoph\",\n  \"christopher\": \"christoph\",\n  \"chrysler\": \"chrysler\",\n  \"chucho\": \"chuch\",\n  \"chuck\": \"chuck\",\n  \"chuletón\": \"chuleton\",\n  \"chung\": \"chung\",\n  \"chupa\": \"chup\",\n  \"chupaban\": \"chup\",\n  \"chupaletada\": \"chupalet\",\n  \"chupando\": \"chup\",\n  \"chupándose\": \"chup\",\n  \"chuparse\": \"chup\",\n  \"chupón\": \"chupon\",\n  \"churubusco\": \"churubusc\",\n  \"churumbela\": \"churumbel\",\n  \"chusca\": \"chusc\",\n  \"chyba\": \"chyba\",\n  \"cia\": \"cia\",\n  \"ciangherotti\": \"ciangherotti\",\n  \"cibaeñas\": \"cibaeñ\",\n  \"cibao\": \"ciba\",\n  \"cicatrización\": \"cicatriz\",\n  \"cíclicamente\": \"ciclic\",\n  \"cíclico\": \"ciclic\",\n  \"ciclismo\": \"ciclism\",\n  \"ciclista\": \"ciclist\",\n  \"ciclistas\": \"ciclist\",\n  \"ciclístico\": \"ciclist\",\n  \"ciclísticos\": \"ciclist\",\n  \"ciclo\": \"cicl\",\n  \"ciclónica\": \"ciclon\",\n  \"ciclos\": \"cicl\",\n  \"ciclosporina\": \"ciclosporin\",\n  \"cide\": \"cid\",\n  \"cielo\": \"ciel\",\n  \"cien\": \"cien\",\n  \"ciencia\": \"cienci\",\n  \"ciencias\": \"cienci\",\n  \"ciénega\": \"cieneg\",\n  \"científica\": \"cientif\",\n  \"científicas\": \"cientif\",\n  \"científico\": \"cientif\",\n  \"científicos\": \"cientif\",\n  \"ciento\": \"cient\",\n  \"cientos\": \"cient\",\n  \"ciernes\": \"ciern\",\n  \"cierra\": \"cierr\",\n  \"cierran\": \"cierr\",\n  \"cierre\": \"cierr\",\n  \"cierres\": \"cierr\",\n  \"cierta\": \"ciert\",\n  \"ciertamente\": \"ciert\",\n  \"ciertas\": \"ciert\",\n  \"cierto\": \"ciert\",\n  \"ciertos\": \"ciert\",\n  \"cifra\": \"cifr\",\n  \"cifrarse\": \"cifr\",\n  \"cifras\": \"cifr\",\n  \"cigarrera\": \"cigarrer\",\n  \"cigarrero\": \"cigarrer\",\n  \"cigarrillos\": \"cigarrill\",\n  \"cigarros\": \"cigarr\",\n  \"cihuatepixque\": \"cihuatepixqu\",\n  \"cilindros\": \"cilindr\",\n  \"cima\": \"cim\",\n  \"cimarrones\": \"cimarron\",\n  \"cimbraría\": \"cimbr\",\n  \"cimiento\": \"cimient\",\n  \"cimientos\": \"cimient\",\n  \"cin\": \"cin\",\n  \"cincelado\": \"cincel\",\n  \"cinco\": \"cinc\",\n  \"cincuenta\": \"cincuent\",\n  \"cine\": \"cin\",\n  \"cineasta\": \"cineast\",\n  \"cinemascope\": \"cinemascop\",\n  \"cinematografía\": \"cinematograf\",\n  \"cinematográfica\": \"cinematograf\",\n  \"cinematográficas\": \"cinematograf\",\n  \"cinematográfico\": \"cinematograf\",\n  \"cines\": \"cin\",\n  \"cineterraza\": \"cineterraz\",\n  \"cinética\": \"cinet\",\n  \"cinismo\": \"cinism\",\n  \"cinta\": \"cint\",\n  \"cintas\": \"cint\",\n  \"cintermex\": \"cintermex\",\n  \"cinto\": \"cint\",\n  \"cintos\": \"cint\",\n  \"cintura\": \"cintur\",\n  \"cinturón\": \"cinturon\",\n  \"cinturones\": \"cinturon\",\n  \"cio\": \"cio\",\n  \"cipriano\": \"ciprian\",\n  \"circo\": \"circ\",\n  \"circos\": \"circ\",\n  \"circuito\": \"circuit\",\n  \"circuitos\": \"circuit\",\n  \"circula\": \"circul\",\n  \"circulaba\": \"circul\",\n  \"circulaban\": \"circul\",\n  \"circulación\": \"circul\",\n  \"circulan\": \"circul\",\n  \"circulando\": \"circul\",\n  \"circular\": \"circul\",\n  \"circulará\": \"circul\",\n  \"circularán\": \"circul\",\n  \"circularía\": \"circul\",\n  \"circularon\": \"circul\",\n  \"circulatoria\": \"circulatori\",\n  \"circulatorios\": \"circulatori\",\n  \"círculo\": \"circul\",\n  \"circuló\": \"circul\",\n  \"círculos\": \"circul\",\n  \"circunscribe\": \"circunscrib\",\n  \"circunscrito\": \"circunscrit\",\n  \"circunstancia\": \"circunst\",\n  \"circunstancias\": \"circunst\",\n  \"circunvalación\": \"circunval\",\n  \"circurret\": \"circurret\",\n  \"cirios\": \"ciri\",\n  \"cirugía\": \"cirug\",\n  \"cirujanos\": \"cirujan\",\n  \"cirules\": \"cirul\",\n  \"cisneros\": \"cisner\",\n  \"cita\": \"cit\",\n  \"citada\": \"cit\",\n  \"citadas\": \"cit\",\n  \"citado\": \"cit\",\n  \"citados\": \"cit\",\n  \"citamos\": \"cit\",\n  \"citan\": \"cit\",\n  \"citar\": \"cit\",\n  \"citará\": \"cit\",\n  \"citas\": \"cit\",\n  \"citation\": \"citation\",\n  \"citatorios\": \"citatori\",\n  \"cite\": \"cit\",\n  \"citen\": \"cit\",\n  \"cito\": \"cit\",\n  \"citó\": \"cit\",\n  \"cítricos\": \"citric\",\n  \"city\": \"city\",\n  \"ciudad\": \"ciud\",\n  \"ciudadana\": \"ciudadan\",\n  \"ciudadanas\": \"ciudadan\",\n  \"ciudadanía\": \"ciudadan\",\n  \"ciudadaníapanprd\": \"ciudadaniapanprd\",\n  \"ciudadanías\": \"ciudadan\",\n  \"ciudadano\": \"ciudadan\",\n  \"ciudadanos\": \"ciudadan\",\n  \"ciudades\": \"ciudad\",\n  \"civic\": \"civic\",\n  \"cívica\": \"civic\",\n  \"cívicas\": \"civic\",\n  \"cívico\": \"civic\",\n  \"cívicos\": \"civic\",\n  \"civil\": \"civil\",\n  \"civiles\": \"civil\",\n  \"civilización\": \"civiliz\",\n  \"civilizaciones\": \"civiliz\",\n  \"civilizada\": \"civiliz\",\n  \"civilizador\": \"civiliz\",\n  \"civilizadora\": \"civiliz\",\n  \"civilizar\": \"civiliz\",\n  \"civismo\": \"civism\",\n  \"clair\": \"cla\",\n  \"clamor\": \"clamor\",\n  \"clan\": \"clan\",\n  \"clandestinos\": \"clandestin\",\n  \"clanes\": \"clan\",\n  \"clapton\": \"clapton\",\n  \"clara\": \"clar\",\n  \"claramente\": \"clar\",\n  \"claras\": \"clar\",\n  \"claridad\": \"clarid\",\n  \"clarifiquen\": \"clarifiqu\",\n  \"clariond\": \"clariond\",\n  \"clarísima\": \"clarisim\",\n  \"clarividencia\": \"clarivident\",\n  \"clarke\": \"clark\",\n  \"claro\": \"clar\",\n  \"claros\": \"clar\",\n  \"claroscuros\": \"claroscur\",\n  \"clase\": \"clas\",\n  \"clases\": \"clas\",\n  \"clásica\": \"clasic\",\n  \"clásicas\": \"clasic\",\n  \"clasico\": \"clasic\",\n  \"clásico\": \"clasic\",\n  \"clásicos\": \"clasic\",\n  \"clasificación\": \"clasif\",\n  \"clasificaciones\": \"clasif\",\n  \"clasificada\": \"clasific\",\n  \"clasificadas\": \"clasific\",\n  \"clasificado\": \"clasific\",\n  \"clasificados\": \"clasific\",\n  \"clasificando\": \"clasific\",\n  \"clasificar\": \"clasific\",\n  \"clasificatorias\": \"clasificatori\",\n  \"classic\": \"classic\",\n  \"claude\": \"claud\",\n  \"claudia\": \"claudi\",\n  \"claudicar\": \"claudic\",\n  \"claudico\": \"claudic\",\n  \"claudio\": \"claudi\",\n  \"claustro\": \"claustr\",\n  \"cláusula\": \"clausul\",\n  \"cláusulas\": \"clausul\",\n  \"clausura\": \"clausur\",\n  \"clausurar\": \"clausur\",\n  \"clausurará\": \"clausur\",\n  \"clavada\": \"clav\",\n  \"clavar\": \"clav\",\n  \"clavaremos\": \"clav\",\n  \"clave\": \"clav\",\n  \"claves\": \"clav\",\n  \"clavó\": \"clav\",\n  \"claxon\": \"claxon\",\n  \"cleary\": \"cleary\",\n  \"clemente\": \"clement\",\n  \"cleotilde\": \"cleotild\",\n  \"clérigo\": \"clerig\",\n  \"clero\": \"cler\",\n  \"cliente\": \"client\",\n  \"clientela\": \"clientel\",\n  \"clientes\": \"client\",\n  \"clima\": \"clim\",\n  \"climáticas\": \"climat\",\n  \"clímax\": \"climax\",\n  \"clínica\": \"clinic\",\n  \"clínicas\": \"clinic\",\n  \"clínico\": \"clinic\",\n  \"clínicos\": \"clinic\",\n  \"clinton\": \"clinton\",\n  \"clone\": \"clon\",\n  \"clones\": \"clon\",\n  \"clos\": \"clos\",\n  \"closet\": \"closet\",\n  \"cloud\": \"cloud\",\n  \"clouthier\": \"clouthi\",\n  \"clowes\": \"clow\",\n  \"club\": \"club\",\n  \"clubes\": \"club\",\n  \"cma\": \"cma\",\n  \"cmb\": \"cmb\",\n  \"cmos\": \"cmos\",\n  \"cms\": \"cms\",\n  \"cna\": \"cna\",\n  \"cnca\": \"cnca\",\n  \"cndh\": \"cndh\",\n  \"cnet\": \"cnet\",\n  \"cnn\": \"cnn\",\n  \"cnpa\": \"cnpa\",\n  \"cnsf\": \"cnsf\",\n  \"cnv\": \"cnv\",\n  \"co\": \"co\",\n  \"coach\": \"coach\",\n  \"coaches\": \"coach\",\n  \"coachman\": \"coachm\",\n  \"coadyuvar\": \"coadyuv\",\n  \"coah\": \"coah\",\n  \"coahuila\": \"coahuil\",\n  \"coahuilense\": \"coahuilens\",\n  \"coahuilenses\": \"coahuilens\",\n  \"coalición\": \"coalicion\",\n  \"coartados\": \"coart\",\n  \"coatepec\": \"coatepec\",\n  \"coatlicue\": \"coatlicu\",\n  \"coautor\": \"coautor\",\n  \"cobán\": \"coban\",\n  \"cobardía\": \"cobard\",\n  \"cobertura\": \"cobertur\",\n  \"cobija\": \"cobij\",\n  \"cobijas\": \"cobij\",\n  \"cobol\": \"cobol\",\n  \"cobos\": \"cob\",\n  \"cobra\": \"cobr\",\n  \"cobraba\": \"cobr\",\n  \"cobrado\": \"cobr\",\n  \"cobramos\": \"cobr\",\n  \"cobran\": \"cobr\",\n  \"cobrando\": \"cobr\",\n  \"cobrar\": \"cobr\",\n  \"cobrara\": \"cobr\",\n  \"cobraran\": \"cobr\",\n  \"cobrarán\": \"cobr\",\n  \"cobraré\": \"cobr\",\n  \"cobrarles\": \"cobr\",\n  \"cobrarte\": \"cobrart\",\n  \"cobras\": \"cobr\",\n  \"cobre\": \"cobr\",\n  \"cobren\": \"cobr\",\n  \"cobro\": \"cobr\",\n  \"cobró\": \"cobr\",\n  \"cobros\": \"cobr\",\n  \"coca\": \"coc\",\n  \"cocaína\": \"cocain\",\n  \"cocainómano\": \"cocainoman\",\n  \"coche\": \"coch\",\n  \"cochero\": \"cocher\",\n  \"coches\": \"coch\",\n  \"cochinilla\": \"cochinill\",\n  \"cocina\": \"cocin\",\n  \"cocinar\": \"cocin\",\n  \"cocineta\": \"cocinet\",\n  \"coco\": \"coc\",\n  \"cocó\": \"coc\",\n  \"cocoa\": \"coco\",\n  \"cóconas\": \"cocon\",\n  \"cocoyoc\": \"cocoyoc\",\n  \"coctel\": \"coctel\",\n  \"codeme\": \"codem\",\n  \"codesal\": \"codesal\",\n  \"codicia\": \"codici\",\n  \"codiciado\": \"codici\",\n  \"código\": \"codig\",\n  \"códigos\": \"codig\",\n  \"codo\": \"cod\",\n  \"coece\": \"coec\",\n  \"coello\": \"coell\",\n  \"coempresario\": \"coempresari\",\n  \"coequipero\": \"coequiper\",\n  \"coercitivas\": \"coercit\",\n  \"coexistan\": \"coexist\",\n  \"coexistir\": \"coexist\",\n  \"cofre\": \"cofr\",\n  \"coger\": \"cog\",\n  \"coggi\": \"coggi\",\n  \"cogido\": \"cog\",\n  \"cognitivo\": \"cognit\",\n  \"cohabita\": \"cohabit\",\n  \"cohecho\": \"cohech\",\n  \"cohen\": \"coh\",\n  \"coherencia\": \"coherent\",\n  \"coherente\": \"coherent\",\n  \"cohetes\": \"cohet\",\n  \"cohetitos\": \"cohetit\",\n  \"coincide\": \"coincid\",\n  \"coinciden\": \"coincid\",\n  \"coincidencia\": \"coincident\",\n  \"coincidencias\": \"coincident\",\n  \"coincidentemente\": \"coincident\",\n  \"coincidentes\": \"coincident\",\n  \"coincidiera\": \"coincid\",\n  \"coincidieron\": \"coincid\",\n  \"coincidió\": \"coincid\",\n  \"coincidirán\": \"coincid\",\n  \"coinversión\": \"coinversion\",\n  \"coinversiones\": \"coinversion\",\n  \"coinvertir\": \"coinvert\",\n  \"cojo\": \"coj\",\n  \"col\": \"col\",\n  \"cola\": \"col\",\n  \"colabora\": \"colabor\",\n  \"colaboración\": \"colabor\",\n  \"colaborado\": \"colabor\",\n  \"colaborador\": \"colabor\",\n  \"colaboradores\": \"colabor\",\n  \"colaboran\": \"colabor\",\n  \"colaborando\": \"colabor\",\n  \"colaborar\": \"colabor\",\n  \"colaborara\": \"colabor\",\n  \"colaboraran\": \"colabor\",\n  \"colaboraría\": \"colabor\",\n  \"colaboraron\": \"colabor\",\n  \"colabore\": \"colabor\",\n  \"colapsaron\": \"colaps\",\n  \"colas\": \"col\",\n  \"colcha\": \"colch\",\n  \"colchón\": \"colchon\",\n  \"colchoneros\": \"colchoner\",\n  \"colchones\": \"colchon\",\n  \"coldwell\": \"coldwell\",\n  \"cole\": \"col\",\n  \"coleadero\": \"coleader\",\n  \"colección\": \"coleccion\",\n  \"colecciones\": \"coleccion\",\n  \"coleccionismo\": \"coleccion\",\n  \"coleccionista\": \"coleccion\",\n  \"coleccionistas\": \"coleccion\",\n  \"colecta\": \"colect\",\n  \"colectiva\": \"colect\",\n  \"colectivamente\": \"colect\",\n  \"colectividad\": \"colect\",\n  \"colectivo\": \"colect\",\n  \"colectivos\": \"colect\",\n  \"colega\": \"coleg\",\n  \"colegas\": \"coleg\",\n  \"colegiado\": \"colegi\",\n  \"colegiatura\": \"colegiatur\",\n  \"colegio\": \"colegi\",\n  \"colegios\": \"colegi\",\n  \"cólera\": \"coler\",\n  \"colesterol\": \"colesterol\",\n  \"colgaba\": \"colg\",\n  \"colgaban\": \"colg\",\n  \"colgada\": \"colg\",\n  \"colgadas\": \"colg\",\n  \"colgado\": \"colg\",\n  \"colgados\": \"colg\",\n  \"colgó\": \"colg\",\n  \"colgón\": \"colgon\",\n  \"colima\": \"colim\",\n  \"colin\": \"colin\",\n  \"colín\": \"colin\",\n  \"colina\": \"colin\",\n  \"colinas\": \"colin\",\n  \"coliseo\": \"colise\",\n  \"collado\": \"coll\",\n  \"colleen\": \"coll\",\n  \"colleges\": \"colleg\",\n  \"collin\": \"collin\",\n  \"collor\": \"collor\",\n  \"colmada\": \"colm\",\n  \"colmo\": \"colm\",\n  \"coloca\": \"coloc\",\n  \"colocación\": \"coloc\",\n  \"colocaciones\": \"coloc\",\n  \"colocadas\": \"coloc\",\n  \"colocado\": \"coloc\",\n  \"colocadores\": \"coloc\",\n  \"colocados\": \"coloc\",\n  \"colocan\": \"coloc\",\n  \"colocando\": \"coloc\",\n  \"colocándose\": \"coloc\",\n  \"colocar\": \"coloc\",\n  \"colocara\": \"coloc\",\n  \"colocará\": \"coloc\",\n  \"colocarán\": \"coloc\",\n  \"colocarla\": \"coloc\",\n  \"colocarme\": \"coloc\",\n  \"colocarnos\": \"coloc\",\n  \"colocaron\": \"coloc\",\n  \"colocarse\": \"coloc\",\n  \"colocó\": \"coloc\",\n  \"colofón\": \"colofon\",\n  \"colombia\": \"colombi\",\n  \"colombiano\": \"colombian\",\n  \"colombianos\": \"colombian\",\n  \"colón\": \"colon\",\n  \"colonia\": \"coloni\",\n  \"colonial\": \"colonial\",\n  \"coloniales\": \"colonial\",\n  \"colonias\": \"coloni\",\n  \"colonizadora\": \"coloniz\",\n  \"colonizando\": \"coloniz\",\n  \"coloque\": \"coloqu\",\n  \"coloquialmente\": \"coloquial\",\n  \"coloquio\": \"coloqui\",\n  \"color\": \"color\",\n  \"colorado\": \"color\",\n  \"colorantes\": \"color\",\n  \"colores\": \"color\",\n  \"colorido\": \"color\",\n  \"coloridos\": \"color\",\n  \"colorísticos\": \"colorist\",\n  \"colosio\": \"colosi\",\n  \"coloso\": \"colos\",\n  \"colosos\": \"colos\",\n  \"coludidos\": \"colud\",\n  \"columbia\": \"columbi\",\n  \"columna\": \"column\",\n  \"columnabreves\": \"columnabrev\",\n  \"columnaconsultorio\": \"columnaconsultori\",\n  \"columnaempresa\": \"columnaempres\",\n  \"columnafricase\": \"columnafric\",\n  \"columnafricasé\": \"columnafricas\",\n  \"columnamirador\": \"columnamir\",\n  \"columnas\": \"column\",\n  \"columneja\": \"columnej\",\n  \"columnista\": \"column\",\n  \"colunga\": \"colung\",\n  \"com\": \"com\",\n  \"comadre\": \"comadr\",\n  \"comadrita\": \"comadrit\",\n  \"comanda\": \"comand\",\n  \"comandado\": \"comand\",\n  \"comandados\": \"comand\",\n  \"comandancia\": \"comand\",\n  \"comandante\": \"comand\",\n  \"comande\": \"comand\",\n  \"comandó\": \"comand\",\n  \"comandos\": \"comand\",\n  \"comas\": \"com\",\n  \"combate\": \"combat\",\n  \"combaten\": \"combat\",\n  \"combates\": \"combat\",\n  \"combatido\": \"combat\",\n  \"combatió\": \"combat\",\n  \"combatir\": \"combat\",\n  \"combatirán\": \"combat\",\n  \"combatividad\": \"combat\",\n  \"combativo\": \"combat\",\n  \"combina\": \"combin\",\n  \"combinación\": \"combin\",\n  \"combinaciones\": \"combin\",\n  \"combinada\": \"combin\",\n  \"combinadas\": \"combin\",\n  \"combinado\": \"combin\",\n  \"combinados\": \"combin\",\n  \"combinan\": \"combin\",\n  \"combinando\": \"combin\",\n  \"combinar\": \"combin\",\n  \"combinará\": \"combin\",\n  \"combinarlo\": \"combin\",\n  \"combinarlos\": \"combin\",\n  \"combinen\": \"combin\",\n  \"combis\": \"combis\",\n  \"combustible\": \"combust\",\n  \"combustibles\": \"combust\",\n  \"combustión\": \"combustion\",\n  \"come\": \"com\",\n  \"comedia\": \"comedi\",\n  \"comediante\": \"comedi\",\n  \"comediógrafo\": \"comediograf\",\n  \"comedor\": \"comedor\",\n  \"comedores\": \"comedor\",\n  \"comemos\": \"com\",\n  \"comensal\": \"comensal\",\n  \"comenta\": \"coment\",\n  \"comentaba\": \"coment\",\n  \"comentábamos\": \"coment\",\n  \"comentaban\": \"coment\",\n  \"comentabas\": \"coment\",\n  \"comentada\": \"coment\",\n  \"comentadas\": \"coment\",\n  \"comentado\": \"coment\",\n  \"comentan\": \"coment\",\n  \"comentando\": \"coment\",\n  \"comentar\": \"coment\",\n  \"comentaré\": \"coment\",\n  \"comentario\": \"comentari\",\n  \"comentarios\": \"comentari\",\n  \"comentaristas\": \"comentar\",\n  \"comentarla\": \"coment\",\n  \"comentarle\": \"coment\",\n  \"comentaron\": \"coment\",\n  \"comentarse\": \"coment\",\n  \"comente\": \"coment\",\n  \"comentó\": \"coment\",\n  \"comenzaba\": \"comenz\",\n  \"comenzaban\": \"comenz\",\n  \"comenzado\": \"comenz\",\n  \"comenzamos\": \"comenz\",\n  \"comenzar\": \"comenz\",\n  \"comenzara\": \"comenz\",\n  \"comenzará\": \"comenz\",\n  \"comenzarán\": \"comenz\",\n  \"comenzaré\": \"comenz\",\n  \"comenzaremos\": \"comenz\",\n  \"comenzaron\": \"comenz\",\n  \"comenzó\": \"comenz\",\n  \"comer\": \"com\",\n  \"comerá\": \"com\",\n  \"comerciaba\": \"comerci\",\n  \"comercial\": \"comercial\",\n  \"comerciales\": \"comercial\",\n  \"comercializa\": \"comercializ\",\n  \"comercialización\": \"comercializ\",\n  \"comercializadora\": \"comercializ\",\n  \"comercializadoras\": \"comercializ\",\n  \"comercializan\": \"comercializ\",\n  \"comercializar\": \"comercializ\",\n  \"comercializaría\": \"comercializ\",\n  \"comercializarlo\": \"comercializ\",\n  \"comercialmente\": \"comercial\",\n  \"comerciante\": \"comerci\",\n  \"comerciantes\": \"comerci\",\n  \"comerciar\": \"comerci\",\n  \"comercio\": \"comerci\",\n  \"comercios\": \"comerci\",\n  \"comernos\": \"com\",\n  \"cometa\": \"comet\",\n  \"cometan\": \"comet\",\n  \"cometarios\": \"cometari\",\n  \"cometas\": \"comet\",\n  \"comete\": \"comet\",\n  \"cometemos\": \"comet\",\n  \"cometen\": \"comet\",\n  \"cometer\": \"comet\",\n  \"cometeríamos\": \"comet\",\n  \"cometerse\": \"comet\",\n  \"cometía\": \"comet\",\n  \"cometidas\": \"comet\",\n  \"cometido\": \"comet\",\n  \"cometidos\": \"comet\",\n  \"cometiendo\": \"comet\",\n  \"cometiera\": \"comet\",\n  \"cometieron\": \"comet\",\n  \"cometió\": \"comet\",\n  \"comezón\": \"comezon\",\n  \"comía\": \"com\",\n  \"cómica\": \"comic\",\n  \"cómicas\": \"comic\",\n  \"comicios\": \"comici\",\n  \"cómico\": \"comic\",\n  \"cómicos\": \"comic\",\n  \"comida\": \"com\",\n  \"comidas\": \"com\",\n  \"comience\": \"comienc\",\n  \"comiencen\": \"comienc\",\n  \"comienza\": \"comienz\",\n  \"comienzan\": \"comienz\",\n  \"comienzo\": \"comienz\",\n  \"comienzos\": \"comienz\",\n  \"comillas\": \"comill\",\n  \"cominfinanciero\": \"cominfinancier\",\n  \"comino\": \"comin\",\n  \"comió\": \"com\",\n  \"comisaría\": \"comis\",\n  \"comisión\": \"comision\",\n  \"comisionado\": \"comision\",\n  \"comisionados\": \"comision\",\n  \"comisiones\": \"comision\",\n  \"comisionó\": \"comision\",\n  \"comité\": \"comit\",\n  \"comités\": \"comites\",\n  \"comitiva\": \"comit\",\n  \"comitivas\": \"comit\",\n  \"commerce\": \"commerc\",\n  \"communications\": \"communications\",\n  \"como\": \"com\",\n  \"cómo\": \"com\",\n  \"cómoda\": \"comod\",\n  \"cómodamente\": \"comod\",\n  \"cómodas\": \"comod\",\n  \"comodato\": \"comodat\",\n  \"comodidad\": \"comod\",\n  \"comodidades\": \"comod\",\n  \"comodines\": \"comodin\",\n  \"comodísimos\": \"comodis\",\n  \"cómodo\": \"comod\",\n  \"comodones\": \"comodon\",\n  \"cómodos\": \"comod\",\n  \"compact\": \"compact\",\n  \"compacto\": \"compact\",\n  \"compactos\": \"compact\",\n  \"compadrazgos\": \"compadrazg\",\n  \"compañera\": \"compañer\",\n  \"compañeras\": \"compañer\",\n  \"compañerismo\": \"compañer\",\n  \"compañero\": \"compañer\",\n  \"compañeros\": \"compañer\",\n  \"companía\": \"compan\",\n  \"compañía\": \"compañ\",\n  \"compañías\": \"compañ\",\n  \"company\": \"company\",\n  \"compaq\": \"compaq\",\n  \"compara\": \"comp\",\n  \"comparable\": \"compar\",\n  \"comparación\": \"compar\",\n  \"comparaciones\": \"compar\",\n  \"comparado\": \"compar\",\n  \"comparados\": \"compar\",\n  \"comparan\": \"comp\",\n  \"comparando\": \"compar\",\n  \"comparándolas\": \"compar\",\n  \"comparándose\": \"compar\",\n  \"comparar\": \"compar\",\n  \"compararse\": \"compar\",\n  \"comparársele\": \"compararsel\",\n  \"comparativamente\": \"compar\",\n  \"comparecencia\": \"comparecent\",\n  \"comparecer\": \"comparec\",\n  \"comparecerán\": \"comparec\",\n  \"comparecía\": \"comparec\",\n  \"comparó\": \"compar\",\n  \"comparsa\": \"compars\",\n  \"comparsas\": \"compars\",\n  \"comparte\": \"compart\",\n  \"comparten\": \"compart\",\n  \"compartido\": \"compart\",\n  \"compartimentos\": \"compartiment\",\n  \"compartimiento\": \"compart\",\n  \"compartió\": \"compart\",\n  \"compartir\": \"compart\",\n  \"comparto\": \"compart\",\n  \"compás\": \"compas\",\n  \"compasión\": \"compasion\",\n  \"compasiva\": \"compas\",\n  \"compatibilizar\": \"compatibiliz\",\n  \"compatible\": \"compat\",\n  \"compatibles\": \"compat\",\n  \"compatriota\": \"compatriot\",\n  \"compatriotas\": \"compatriot\",\n  \"compelen\": \"compel\",\n  \"compendio\": \"compendi\",\n  \"compensa\": \"compens\",\n  \"compensación\": \"compens\",\n  \"compensaciones\": \"compens\",\n  \"compensado\": \"compens\",\n  \"compensar\": \"compens\",\n  \"compensatorio\": \"compensatori\",\n  \"compensatorios\": \"compensatori\",\n  \"competa\": \"compet\",\n  \"compete\": \"compet\",\n  \"competencia\": \"competent\",\n  \"competencial\": \"competencial\",\n  \"competencias\": \"competent\",\n  \"competente\": \"competent\",\n  \"competentes\": \"competent\",\n  \"competidor\": \"competidor\",\n  \"competidoras\": \"competidor\",\n  \"competidores\": \"competidor\",\n  \"competir\": \"compet\",\n  \"competirán\": \"compet\",\n  \"competiremos\": \"compet\",\n  \"competirle\": \"compet\",\n  \"competitiva\": \"competit\",\n  \"competitivas\": \"competit\",\n  \"competitive\": \"competitiv\",\n  \"competitividad\": \"competit\",\n  \"competitivo\": \"competit\",\n  \"competitivos\": \"competit\",\n  \"compilador\": \"compil\",\n  \"compilando\": \"compil\",\n  \"compilar\": \"compil\",\n  \"compite\": \"compit\",\n  \"compiten\": \"compit\",\n  \"compitiendo\": \"compit\",\n  \"compito\": \"compit\",\n  \"complacer\": \"complac\",\n  \"complacido\": \"complac\",\n  \"complació\": \"complac\",\n  \"complazca\": \"complazc\",\n  \"compleja\": \"complej\",\n  \"complejas\": \"complej\",\n  \"complejidad\": \"complej\",\n  \"complejo\": \"complej\",\n  \"complejos\": \"complej\",\n  \"complementada\": \"complement\",\n  \"complementan\": \"complement\",\n  \"complementar\": \"complement\",\n  \"complementaria\": \"complementari\",\n  \"complementaría\": \"complement\",\n  \"complementarias\": \"complementari\",\n  \"complementarios\": \"complementari\",\n  \"complementarlo\": \"complement\",\n  \"complemento\": \"complement\",\n  \"completa\": \"complet\",\n  \"completadas\": \"complet\",\n  \"completamente\": \"complet\",\n  \"completar\": \"complet\",\n  \"completarían\": \"complet\",\n  \"completaron\": \"complet\",\n  \"completarse\": \"complet\",\n  \"completas\": \"complet\",\n  \"completo\": \"complet\",\n  \"completó\": \"complet\",\n  \"completos\": \"complet\",\n  \"complexión\": \"complexion\",\n  \"complica\": \"complic\",\n  \"complicación\": \"complic\",\n  \"complicaciones\": \"complic\",\n  \"complicadas\": \"complic\",\n  \"complicado\": \"complic\",\n  \"complicados\": \"complic\",\n  \"complican\": \"complic\",\n  \"complicar\": \"complic\",\n  \"complicarse\": \"complic\",\n  \"cómplice\": \"complic\",\n  \"cómplices\": \"complic\",\n  \"complicidad\": \"complic\",\n  \"complicó\": \"complic\",\n  \"compone\": \"compon\",\n  \"componen\": \"compon\",\n  \"componendas\": \"componend\",\n  \"componente\": \"component\",\n  \"componentes\": \"component\",\n  \"componga\": \"compong\",\n  \"componían\": \"compon\",\n  \"comportamiento\": \"comport\",\n  \"comportamientos\": \"comport\",\n  \"comportan\": \"comport\",\n  \"comportará\": \"comport\",\n  \"composición\": \"composicion\",\n  \"composiciones\": \"composicion\",\n  \"compositor\": \"compositor\",\n  \"compositores\": \"compositor\",\n  \"compra\": \"compr\",\n  \"compraba\": \"compr\",\n  \"compradas\": \"compr\",\n  \"comprado\": \"compr\",\n  \"comprador\": \"comprador\",\n  \"compradora\": \"comprador\",\n  \"compradores\": \"comprador\",\n  \"compramos\": \"compr\",\n  \"compran\": \"compr\",\n  \"comprando\": \"compr\",\n  \"comprar\": \"compr\",\n  \"comprara\": \"compr\",\n  \"comprará\": \"compr\",\n  \"comprarlas\": \"compr\",\n  \"comprarle\": \"compr\",\n  \"comprarles\": \"compr\",\n  \"comprarme\": \"compr\",\n  \"compraron\": \"compr\",\n  \"comprarse\": \"compr\",\n  \"comprárselo\": \"compr\",\n  \"compras\": \"compr\",\n  \"compraventa\": \"compravent\",\n  \"compre\": \"compr\",\n  \"compré\": \"compr\",\n  \"comprenda\": \"comprend\",\n  \"comprendan\": \"comprend\",\n  \"comprendas\": \"comprend\",\n  \"comprende\": \"comprend\",\n  \"comprendemos\": \"comprend\",\n  \"comprenden\": \"comprend\",\n  \"comprender\": \"comprend\",\n  \"comprenderá\": \"comprend\",\n  \"comprendía\": \"comprend\",\n  \"comprendiera\": \"comprend\",\n  \"comprendieron\": \"comprend\",\n  \"comprendo\": \"comprend\",\n  \"comprensible\": \"comprens\",\n  \"comprensión\": \"comprension\",\n  \"comprensivo\": \"comprens\",\n  \"compresor\": \"compresor\",\n  \"comprimida\": \"comprim\",\n  \"compró\": \"compr\",\n  \"comprobado\": \"comprob\",\n  \"comprobante\": \"comprob\",\n  \"comprobar\": \"comprob\",\n  \"comprobaron\": \"comprob\",\n  \"comprobarse\": \"comprob\",\n  \"comprobó\": \"comprob\",\n  \"comprometan\": \"compromet\",\n  \"compromete\": \"compromet\",\n  \"comprometen\": \"compromet\",\n  \"comprometernos\": \"compromet\",\n  \"comprometerse\": \"compromet\",\n  \"comprometía\": \"compromet\",\n  \"comprometían\": \"compromet\",\n  \"comprometido\": \"compromet\",\n  \"comprometidos\": \"compromet\",\n  \"comprometieran\": \"compromet\",\n  \"comprometieron\": \"compromet\",\n  \"comprometimos\": \"compromet\",\n  \"comprometió\": \"compromet\",\n  \"compromiso\": \"compromis\",\n  \"compromisos\": \"compromis\",\n  \"comprueba\": \"comprueb\",\n  \"comprueban\": \"comprueb\",\n  \"compuertas\": \"compuert\",\n  \"compuesta\": \"compuest\",\n  \"compuesto\": \"compuest\",\n  \"compulsiva\": \"compuls\",\n  \"compuso\": \"compus\",\n  \"computación\": \"comput\",\n  \"computacional\": \"computacional\",\n  \"computacionales\": \"computacional\",\n  \"computadora\": \"comput\",\n  \"computadoras\": \"comput\",\n  \"computados\": \"comput\",\n  \"computarizado\": \"computariz\",\n  \"computarizados\": \"computariz\",\n  \"computec\": \"computec\",\n  \"computer\": \"comput\",\n  \"computo\": \"comput\",\n  \"cómputo\": \"comput\",\n  \"comun\": \"comun\",\n  \"común\": \"comun\",\n  \"comunales\": \"comunal\",\n  \"comunes\": \"comun\",\n  \"comunica\": \"comun\",\n  \"comunicación\": \"comun\",\n  \"comunicaciones\": \"comun\",\n  \"comunicado\": \"comunic\",\n  \"comunicados\": \"comunic\",\n  \"comunican\": \"comunic\",\n  \"comunicándose\": \"comunic\",\n  \"comunicantes\": \"comun\",\n  \"comunicar\": \"comunic\",\n  \"comunicara\": \"comunic\",\n  \"comunicarse\": \"comunic\",\n  \"comunicativa\": \"comunic\",\n  \"comunicativos\": \"comunic\",\n  \"comunicó\": \"comunic\",\n  \"comunidad\": \"comun\",\n  \"comunidades\": \"comun\",\n  \"comuniqué\": \"comuniqu\",\n  \"comuníqueme\": \"comuniquem\",\n  \"comuniquen\": \"comuniqu\",\n  \"comuníquese\": \"comuniques\",\n  \"comunista\": \"comun\",\n  \"comunistas\": \"comun\",\n  \"comunitarias\": \"comunitari\",\n  \"comunitario\": \"comunitari\",\n  \"comunitarios\": \"comunitari\",\n  \"con\": \"con\",\n  \"conacyt\": \"conacyt\",\n  \"conadeip\": \"conadeip\",\n  \"conatos\": \"conat\",\n  \"concacaf\": \"concacaf\",\n  \"concamin\": \"concamin\",\n  \"concamín\": \"concamin\",\n  \"concanaco\": \"concanac\",\n  \"concebían\": \"conceb\",\n  \"concebida\": \"conceb\",\n  \"concebido\": \"conceb\",\n  \"conceder\": \"conced\",\n  \"concederá\": \"conced\",\n  \"concedían\": \"conced\",\n  \"concedida\": \"conced\",\n  \"concedido\": \"conced\",\n  \"concediendo\": \"conced\",\n  \"concediera\": \"conced\",\n  \"concedió\": \"conced\",\n  \"concem\": \"concem\",\n  \"concentra\": \"concentr\",\n  \"concentración\": \"concentr\",\n  \"concentraciones\": \"concentr\",\n  \"concentrada\": \"concentr\",\n  \"concentradas\": \"concentr\",\n  \"concentrado\": \"concentr\",\n  \"concentrados\": \"concentr\",\n  \"concentran\": \"concentr\",\n  \"concentrará\": \"concentr\",\n  \"concentraran\": \"concentr\",\n  \"concentraremos\": \"concentr\",\n  \"concentrarse\": \"concentr\",\n  \"concentre\": \"concentr\",\n  \"concentró\": \"concentr\",\n  \"concepción\": \"concepcion\",\n  \"concepciones\": \"concepcion\",\n  \"concepto\": \"concept\",\n  \"conceptos\": \"concept\",\n  \"conceptual\": \"conceptual\",\n  \"concert\": \"concert\",\n  \"concertación\": \"concert\",\n  \"concertaciones\": \"concert\",\n  \"concertadamente\": \"concert\",\n  \"concertado\": \"concert\",\n  \"concertando\": \"concert\",\n  \"concertar\": \"concert\",\n  \"concesión\": \"concesion\",\n  \"concesionadas\": \"concesion\",\n  \"concesionado\": \"concesion\",\n  \"concesionarias\": \"concesionari\",\n  \"concesionario\": \"concesionari\",\n  \"concesionarios\": \"concesionari\",\n  \"concesiones\": \"concesion\",\n  \"concha\": \"conch\",\n  \"conchello\": \"conchell\",\n  \"conchita\": \"conchit\",\n  \"concibe\": \"concib\",\n  \"concibió\": \"concib\",\n  \"conciencia\": \"concienci\",\n  \"conciencias\": \"concienci\",\n  \"concientizar\": \"concientiz\",\n  \"concierne\": \"conciern\",\n  \"concierto\": \"conciert\",\n  \"conciertos\": \"conciert\",\n  \"conciliación\": \"concili\",\n  \"conciliador\": \"concili\",\n  \"conciliar\": \"concili\",\n  \"concilio\": \"concili\",\n  \"conciudadanos\": \"conciudadan\",\n  \"concluida\": \"conclu\",\n  \"concluido\": \"conclu\",\n  \"concluído\": \"concluid\",\n  \"concluir\": \"conclu\",\n  \"concluirá\": \"conclu\",\n  \"concluirán\": \"conclu\",\n  \"concluirla\": \"conclu\",\n  \"conclusion\": \"conclusion\",\n  \"conclusión\": \"conclusion\",\n  \"conclusiones\": \"conclusion\",\n  \"concluya\": \"conclu\",\n  \"concluyamos\": \"conclu\",\n  \"concluyan\": \"conclu\",\n  \"concluye\": \"conclu\",\n  \"concluyen\": \"conclu\",\n  \"concluyeron\": \"conclu\",\n  \"concluyó\": \"conclu\",\n  \"concordar\": \"concord\",\n  \"concordia\": \"concordi\",\n  \"concordó\": \"concord\",\n  \"concreción\": \"concrecion\",\n  \"concreta\": \"concret\",\n  \"concretado\": \"concret\",\n  \"concretamente\": \"concret\",\n  \"concretándolo\": \"concret\",\n  \"concretar\": \"concret\",\n  \"concretarse\": \"concret\",\n  \"concretas\": \"concret\",\n  \"concrete\": \"concret\",\n  \"concretera\": \"concreter\",\n  \"concreteras\": \"concreter\",\n  \"concreto\": \"concret\",\n  \"concretó\": \"concret\",\n  \"concretos\": \"concret\",\n  \"concuerda\": \"concuerd\",\n  \"concupiscente\": \"concupiscent\",\n  \"concurran\": \"concurr\",\n  \"concurrencia\": \"concurrent\",\n  \"concurrió\": \"concurr\",\n  \"concursan\": \"concurs\",\n  \"concursante\": \"concurs\",\n  \"concursar\": \"concurs\",\n  \"concurso\": \"concurs\",\n  \"concursos\": \"concurs\",\n  \"condado\": \"cond\",\n  \"condados\": \"cond\",\n  \"condde\": \"condd\",\n  \"conde\": \"cond\",\n  \"condecoración\": \"condecor\",\n  \"condecorado\": \"condecor\",\n  \"condena\": \"conden\",\n  \"condenaban\": \"conden\",\n  \"condenada\": \"conden\",\n  \"condenadas\": \"conden\",\n  \"condenado\": \"conden\",\n  \"condenados\": \"conden\",\n  \"condenamos\": \"conden\",\n  \"condenan\": \"conden\",\n  \"condenar\": \"conden\",\n  \"condenaron\": \"conden\",\n  \"condenas\": \"conden\",\n  \"condene\": \"conden\",\n  \"condenó\": \"conden\",\n  \"condesa\": \"condes\",\n  \"condición\": \"condicion\",\n  \"condicionado\": \"condicion\",\n  \"condicional\": \"condicional\",\n  \"condicionamientos\": \"condicion\",\n  \"condicionan\": \"condicion\",\n  \"condicionar\": \"condicion\",\n  \"condiciones\": \"condicion\",\n  \"condicionó\": \"condicion\",\n  \"condominios\": \"condomini\",\n  \"condones\": \"condon\",\n  \"conducción\": \"conduccion\",\n  \"conduce\": \"conduc\",\n  \"conducen\": \"conduc\",\n  \"conducentes\": \"conducent\",\n  \"conducía\": \"conduc\",\n  \"conducida\": \"conduc\",\n  \"conducido\": \"conduc\",\n  \"conducidos\": \"conduc\",\n  \"conduciendo\": \"conduc\",\n  \"conduciéndonos\": \"conduc\",\n  \"conduciera\": \"conduc\",\n  \"conducimos\": \"conduc\",\n  \"conducir\": \"conduc\",\n  \"conducirá\": \"conduc\",\n  \"conducta\": \"conduct\",\n  \"conductas\": \"conduct\",\n  \"conducto\": \"conduct\",\n  \"conductor\": \"conductor\",\n  \"conductores\": \"conductor\",\n  \"conductuales\": \"conductual\",\n  \"condujeron\": \"condujeron\",\n  \"condujo\": \"conduj\",\n  \"conduzca\": \"conduzc\",\n  \"conduzcan\": \"conduzc\",\n  \"conecta\": \"conect\",\n  \"conectaba\": \"conect\",\n  \"conectado\": \"conect\",\n  \"conectar\": \"conect\",\n  \"conectará\": \"conect\",\n  \"conectarse\": \"conect\",\n  \"conecte\": \"conect\",\n  \"conectividad\": \"conect\",\n  \"conejos\": \"conej\",\n  \"conexiones\": \"conexion\",\n  \"confección\": \"confeccion\",\n  \"confeccionados\": \"confeccion\",\n  \"confederación\": \"confeder\",\n  \"conferencia\": \"conferent\",\n  \"conferenciantes\": \"conferenci\",\n  \"conferencias\": \"conferent\",\n  \"conferencista\": \"conferenc\",\n  \"conferencistas\": \"conferenc\",\n  \"confesamos\": \"confes\",\n  \"confesar\": \"confes\",\n  \"confesaron\": \"confes\",\n  \"confesión\": \"confesion\",\n  \"confesó\": \"confes\",\n  \"confesores\": \"confesor\",\n  \"confeti\": \"confeti\",\n  \"confía\": \"conf\",\n  \"confiaba\": \"confi\",\n  \"confiabilidad\": \"confiabil\",\n  \"confiable\": \"confiabl\",\n  \"confiables\": \"confiabl\",\n  \"confiado\": \"confi\",\n  \"confiados\": \"confi\",\n  \"confiamos\": \"confi\",\n  \"confían\": \"conf\",\n  \"confiana\": \"confian\",\n  \"confiant\": \"confiant\",\n  \"confianza\": \"confianz\",\n  \"confiar\": \"confi\",\n  \"confiará\": \"confi\",\n  \"confiarnos\": \"confi\",\n  \"confiarse\": \"confi\",\n  \"confidencias\": \"confident\",\n  \"confidente\": \"confident\",\n  \"confíen\": \"conf\",\n  \"confiera\": \"conf\",\n  \"confiesa\": \"confies\",\n  \"confiesan\": \"confies\",\n  \"configura\": \"configur\",\n  \"configuración\": \"configur\",\n  \"configuraciones\": \"configur\",\n  \"configurada\": \"configur\",\n  \"configuradas\": \"configur\",\n  \"configurado\": \"configur\",\n  \"configurados\": \"configur\",\n  \"configurar\": \"configur\",\n  \"confinado\": \"confin\",\n  \"confio\": \"confi\",\n  \"confió\": \"conf\",\n  \"confirma\": \"confirm\",\n  \"confirmación\": \"confirm\",\n  \"confirmada\": \"confirm\",\n  \"confirmado\": \"confirm\",\n  \"confirman\": \"confirm\",\n  \"confirmar\": \"confirm\",\n  \"confirmaron\": \"confirm\",\n  \"confirmó\": \"confirm\",\n  \"conflicto\": \"conflict\",\n  \"conflictos\": \"conflict\",\n  \"confluyen\": \"conflu\",\n  \"conforma\": \"conform\",\n  \"conformaban\": \"conform\",\n  \"conformación\": \"conform\",\n  \"conformada\": \"conform\",\n  \"conforman\": \"conform\",\n  \"conformar\": \"conform\",\n  \"conformara\": \"conform\",\n  \"conformarse\": \"conform\",\n  \"conforme\": \"conform\",\n  \"conformen\": \"conform\",\n  \"conformista\": \"conform\",\n  \"conformo\": \"conform\",\n  \"confort\": \"confort\",\n  \"confrontación\": \"confront\",\n  \"confrontaciones\": \"confront\",\n  \"confrontando\": \"confront\",\n  \"confrontar\": \"confront\",\n  \"confucio\": \"confuci\",\n  \"confunde\": \"confund\",\n  \"confunden\": \"confund\",\n  \"confundido\": \"confund\",\n  \"confundidos\": \"confund\",\n  \"confundimos\": \"confund\",\n  \"confundir\": \"confund\",\n  \"confundirse\": \"confund\",\n  \"confusión\": \"confusion\",\n  \"congelación\": \"congel\",\n  \"congeladas\": \"congel\",\n  \"congelados\": \"congel\",\n  \"congelarse\": \"congel\",\n  \"congéneres\": \"congener\",\n  \"congénitos\": \"congenit\",\n  \"congestión\": \"congestion\",\n  \"congestionadas\": \"congestion\",\n  \"congestionado\": \"congestion\",\n  \"congestionamiento\": \"congestion\",\n  \"congestionamientos\": \"congestion\",\n  \"conglomerado\": \"conglomer\",\n  \"conglomerados\": \"conglomer\",\n  \"conglomerará\": \"conglomer\",\n  \"congo\": \"cong\",\n  \"congoja\": \"congoj\",\n  \"congregación\": \"congreg\",\n  \"congregada\": \"congreg\",\n  \"congregados\": \"congreg\",\n  \"congregara\": \"congreg\",\n  \"congregaron\": \"congreg\",\n  \"congresista\": \"congres\",\n  \"congresistas\": \"congres\",\n  \"congreso\": \"congres\",\n  \"congresos\": \"congres\",\n  \"congruencia\": \"congruenci\",\n  \"congruente\": \"congruent\",\n  \"congruentes\": \"congruent\",\n  \"conjuga\": \"conjug\",\n  \"conjugada\": \"conjug\",\n  \"conjugaron\": \"conjug\",\n  \"conjugarse\": \"conjug\",\n  \"conjunción\": \"conjuncion\",\n  \"conjunta\": \"conjunt\",\n  \"conjuntamente\": \"conjunt\",\n  \"conjuntar\": \"conjunt\",\n  \"conjuntarán\": \"conjunt\",\n  \"conjuntarse\": \"conjunt\",\n  \"conjuntas\": \"conjunt\",\n  \"conjuntivitis\": \"conjuntivitis\",\n  \"conjunto\": \"conjunt\",\n  \"conjuntos\": \"conjunt\",\n  \"conjura\": \"conjur\",\n  \"conjurarse\": \"conjur\",\n  \"conlleva\": \"conllev\",\n  \"conllevan\": \"conllev\",\n  \"conmemorar\": \"conmemor\",\n  \"conmemorativa\": \"conmemor\",\n  \"conmemorativos\": \"conmemor\",\n  \"conmigo\": \"conmig\",\n  \"conminado\": \"conmin\",\n  \"conmoción\": \"conmocion\",\n  \"conmovedor\": \"conmovedor\",\n  \"conmovedora\": \"conmovedor\",\n  \"conmovieron\": \"conmov\",\n  \"connor\": \"connor\",\n  \"connotación\": \"connot\",\n  \"connotados\": \"connot\",\n  \"cono\": \"con\",\n  \"conoce\": \"conoc\",\n  \"conocedor\": \"conocedor\",\n  \"conocedora\": \"conocedor\",\n  \"conocedoras\": \"conocedor\",\n  \"conocedores\": \"conocedor\",\n  \"conocemos\": \"conoc\",\n  \"conocen\": \"conoc\",\n  \"conocer\": \"conoc\",\n  \"conocerá\": \"conoc\",\n  \"conocerán\": \"conoc\",\n  \"conocería\": \"conoc\",\n  \"conocerían\": \"conoc\",\n  \"conocerlo\": \"conoc\",\n  \"conocerse\": \"conoc\",\n  \"conoces\": \"conoc\",\n  \"conocí\": \"conoc\",\n  \"conocía\": \"conoc\",\n  \"conocían\": \"conoc\",\n  \"conocida\": \"conoc\",\n  \"conocidas\": \"conoc\",\n  \"conocido\": \"conoc\",\n  \"conocidos\": \"conoc\",\n  \"conociendo\": \"conoc\",\n  \"conociéndose\": \"conoc\",\n  \"conocieron\": \"conoc\",\n  \"conocimiento\": \"conoc\",\n  \"conocimientos\": \"conoc\",\n  \"conocimos\": \"conoc\",\n  \"conoció\": \"conoc\",\n  \"conos\": \"con\",\n  \"conotados\": \"conot\",\n  \"conozca\": \"conozc\",\n  \"conozcan\": \"conozc\",\n  \"conozco\": \"conozc\",\n  \"conquista\": \"conquist\",\n  \"conquistar\": \"conquist\",\n  \"conquistas\": \"conquist\",\n  \"consagrados\": \"consagr\",\n  \"consagraron\": \"consagr\",\n  \"consagró\": \"consagr\",\n  \"consciente\": \"conscient\",\n  \"conscientemente\": \"conscient\",\n  \"conscientes\": \"conscient\",\n  \"consecuencia\": \"consecuent\",\n  \"consecuencias\": \"consecuent\",\n  \"consecuente\": \"consecuent\",\n  \"consecutiva\": \"consecut\",\n  \"consecutivas\": \"consecut\",\n  \"consecutivo\": \"consecut\",\n  \"consecutivos\": \"consecut\",\n  \"conseguía\": \"consegu\",\n  \"conseguida\": \"consegu\",\n  \"conseguido\": \"consegu\",\n  \"conseguir\": \"consegu\",\n  \"conseguirle\": \"consegu\",\n  \"conseguirlo\": \"consegu\",\n  \"conseguirlos\": \"consegu\",\n  \"consejero\": \"consejer\",\n  \"consejeros\": \"consejer\",\n  \"consejo\": \"consej\",\n  \"consejos\": \"consej\",\n  \"consenso\": \"consens\",\n  \"consensual\": \"consensual\",\n  \"consentido\": \"consent\",\n  \"consentidos\": \"consent\",\n  \"consentimiento\": \"consent\",\n  \"conserva\": \"conserv\",\n  \"conservaba\": \"conserv\",\n  \"conservaban\": \"conserv\",\n  \"conservación\": \"conserv\",\n  \"conservacionistas\": \"conservacion\",\n  \"conservado\": \"conserv\",\n  \"conservador\": \"conserv\",\n  \"conservadores\": \"conserv\",\n  \"conservados\": \"conserv\",\n  \"conservan\": \"conserv\",\n  \"conservando\": \"conserv\",\n  \"conservar\": \"conserv\",\n  \"conservarlo\": \"conserv\",\n  \"conservarse\": \"conserv\",\n  \"conserven\": \"conserv\",\n  \"conservó\": \"conserv\",\n  \"considera\": \"consider\",\n  \"consideraba\": \"consider\",\n  \"consideraban\": \"consider\",\n  \"considerable\": \"consider\",\n  \"considerablemente\": \"consider\",\n  \"considerables\": \"consider\",\n  \"consideración\": \"consider\",\n  \"consideraciones\": \"consider\",\n  \"considerada\": \"consider\",\n  \"consideradas\": \"consider\",\n  \"considerado\": \"consider\",\n  \"considerados\": \"consider\",\n  \"consideramos\": \"consider\",\n  \"consideran\": \"consider\",\n  \"considerando\": \"consider\",\n  \"considerar\": \"consider\",\n  \"considerara\": \"consider\",\n  \"considerará\": \"consider\",\n  \"consideraría\": \"consider\",\n  \"considerarlas\": \"consider\",\n  \"considerarlo\": \"consider\",\n  \"consideraron\": \"consider\",\n  \"considerarse\": \"consider\",\n  \"considere\": \"consider\",\n  \"consideren\": \"consider\",\n  \"consideres\": \"consider\",\n  \"considero\": \"consider\",\n  \"consideró\": \"consider\",\n  \"consiga\": \"consig\",\n  \"consigna\": \"consign\",\n  \"consignación\": \"consign\",\n  \"consignado\": \"consign\",\n  \"consignados\": \"consign\",\n  \"consignará\": \"consign\",\n  \"consignó\": \"consign\",\n  \"consigo\": \"consig\",\n  \"consigue\": \"consig\",\n  \"consiguen\": \"consig\",\n  \"consigues\": \"consig\",\n  \"consiguiendo\": \"consigu\",\n  \"consiguiente\": \"consiguient\",\n  \"consiguieron\": \"consigu\",\n  \"consiguió\": \"consigu\",\n  \"consiste\": \"cons\",\n  \"consisten\": \"consist\",\n  \"consistencia\": \"consistent\",\n  \"consistente\": \"consistent\",\n  \"consistieron\": \"consist\",\n  \"consistirá\": \"consist\",\n  \"consistiría\": \"consist\",\n  \"consolación\": \"consol\",\n  \"consolarla\": \"consol\",\n  \"consolida\": \"consol\",\n  \"consolidación\": \"consolid\",\n  \"consolidad\": \"consol\",\n  \"consolidadas\": \"consolid\",\n  \"consolidado\": \"consolid\",\n  \"consolidar\": \"consolid\",\n  \"consolidarlo\": \"consolid\",\n  \"consolidaron\": \"consolid\",\n  \"consolidarse\": \"consolid\",\n  \"consolidó\": \"consolid\",\n  \"consorcio\": \"consorci\",\n  \"consorcios\": \"consorci\",\n  \"conspiración\": \"conspir\",\n  \"consta\": \"const\",\n  \"constan\": \"const\",\n  \"constancia\": \"constanci\",\n  \"constancias\": \"constanci\",\n  \"constante\": \"constant\",\n  \"constantemente\": \"constant\",\n  \"constantes\": \"constant\",\n  \"constantiniana\": \"constantinian\",\n  \"constantino\": \"constantin\",\n  \"constará\": \"const\",\n  \"constata\": \"constat\",\n  \"constatar\": \"constat\",\n  \"conste\": \"const\",\n  \"consterna\": \"constern\",\n  \"constitucion\": \"constitucion\",\n  \"constitución\": \"constitu\",\n  \"constitucional\": \"constitucional\",\n  \"constitucionales\": \"constitucional\",\n  \"constitucionalmente\": \"constitucional\",\n  \"constituciones\": \"constitu\",\n  \"constituía\": \"constitu\",\n  \"constituida\": \"constitu\",\n  \"constituido\": \"constitu\",\n  \"constituidos\": \"constitu\",\n  \"constituir\": \"constitu\",\n  \"constituirá\": \"constitu\",\n  \"constituirán\": \"constitu\",\n  \"constituiría\": \"constitu\",\n  \"constituirse\": \"constitu\",\n  \"constitutiva\": \"constitut\",\n  \"constitutivo\": \"constitut\",\n  \"constitutivos\": \"constitut\",\n  \"constituya\": \"constitu\",\n  \"constituye\": \"constitu\",\n  \"constituyen\": \"constitu\",\n  \"constituyente\": \"constituyent\",\n  \"constituyentes\": \"constituyent\",\n  \"constituyeron\": \"constitu\",\n  \"constituyó\": \"constitu\",\n  \"construcción\": \"construccion\",\n  \"construcciones\": \"construccion\",\n  \"constructivo\": \"construct\",\n  \"constructor\": \"constructor\",\n  \"constructora\": \"constructor\",\n  \"constructoras\": \"constructor\",\n  \"constructores\": \"constructor\",\n  \"construida\": \"constru\",\n  \"construidas\": \"constru\",\n  \"construido\": \"constru\",\n  \"construir\": \"constru\",\n  \"construirá\": \"constru\",\n  \"construirán\": \"constru\",\n  \"construirían\": \"constru\",\n  \"construirlo\": \"constru\",\n  \"construirse\": \"constru\",\n  \"construya\": \"constru\",\n  \"construyan\": \"constru\",\n  \"construye\": \"constru\",\n  \"construyen\": \"constru\",\n  \"construyendo\": \"constru\",\n  \"construyó\": \"constru\",\n  \"consuelo\": \"consuel\",\n  \"consuetudinario\": \"consuetudinari\",\n  \"cónsul\": \"consul\",\n  \"consulado\": \"consul\",\n  \"consulados\": \"consul\",\n  \"consular\": \"consul\",\n  \"cónsules\": \"consul\",\n  \"consulta\": \"consult\",\n  \"consultadas\": \"consult\",\n  \"consultado\": \"consult\",\n  \"consultados\": \"consult\",\n  \"consultar\": \"consult\",\n  \"consultaron\": \"consult\",\n  \"consultas\": \"consult\",\n  \"consulte\": \"consult\",\n  \"consultivo\": \"consult\",\n  \"consultor\": \"consultor\",\n  \"consultora\": \"consultor\",\n  \"consultoría\": \"consultor\",\n  \"consultorio\": \"consultori\",\n  \"consultoriobursátil\": \"consultoriobursatil\",\n  \"consumados\": \"consum\",\n  \"consumaran\": \"consum\",\n  \"consumida\": \"consum\",\n  \"consumido\": \"consum\",\n  \"consumidor\": \"consumidor\",\n  \"consumidores\": \"consumidor\",\n  \"consumiendo\": \"consum\",\n  \"consumió\": \"consum\",\n  \"consumir\": \"consum\",\n  \"consumirán\": \"consum\",\n  \"consumismo\": \"consum\",\n  \"consumista\": \"consum\",\n  \"consumo\": \"consum\",\n  \"consumó\": \"consum\",\n  \"contaba\": \"cont\",\n  \"contaban\": \"cont\",\n  \"contabilidad\": \"contabil\",\n  \"contabilizada\": \"contabiliz\",\n  \"contabilizan\": \"contabiliz\",\n  \"contabilizaron\": \"contabiliz\",\n  \"contable\": \"contabl\",\n  \"contactado\": \"contact\",\n  \"contactar\": \"contact\",\n  \"contactarse\": \"contact\",\n  \"contacto\": \"contact\",\n  \"contactos\": \"contact\",\n  \"contadas\": \"cont\",\n  \"contado\": \"cont\",\n  \"contador\": \"contador\",\n  \"contadores\": \"contador\",\n  \"contaduría\": \"contadur\",\n  \"contagia\": \"contagi\",\n  \"contagio\": \"contagi\",\n  \"contagios\": \"contagi\",\n  \"contagiosas\": \"contagi\",\n  \"contamina\": \"contamin\",\n  \"contaminación\": \"contamin\",\n  \"contaminador\": \"contamin\",\n  \"contaminadores\": \"contamin\",\n  \"contaminan\": \"contamin\",\n  \"contaminante\": \"contamin\",\n  \"contaminantes\": \"contamin\",\n  \"contaminar\": \"contamin\",\n  \"contamine\": \"contamin\",\n  \"contaminen\": \"contamin\",\n  \"contamos\": \"cont\",\n  \"contando\": \"cont\",\n  \"contar\": \"cont\",\n  \"contara\": \"cont\",\n  \"contará\": \"cont\",\n  \"contarán\": \"cont\",\n  \"contaré\": \"cont\",\n  \"contempla\": \"contempl\",\n  \"contemplaba\": \"contempl\",\n  \"contemplación\": \"contempl\",\n  \"contemplada\": \"contempl\",\n  \"contempladas\": \"contempl\",\n  \"contemplado\": \"contempl\",\n  \"contemplados\": \"contempl\",\n  \"contemplan\": \"contempl\",\n  \"contemplando\": \"contempl\",\n  \"contemplar\": \"contempl\",\n  \"contemplaron\": \"contempl\",\n  \"contemplarse\": \"contempl\",\n  \"contemple\": \"contempl\",\n  \"contemporánea\": \"contemporane\",\n  \"contemporáneas\": \"contemporan\",\n  \"contemporáneo\": \"contemporane\",\n  \"contemporáneos\": \"contemporane\",\n  \"contención\": \"contencion\",\n  \"contencioso\": \"contenci\",\n  \"contender\": \"contend\",\n  \"contenderán\": \"contend\",\n  \"contendientes\": \"contendient\",\n  \"contener\": \"conten\",\n  \"contenga\": \"conteng\",\n  \"contengan\": \"conteng\",\n  \"contenía\": \"conten\",\n  \"contenían\": \"conten\",\n  \"contenidas\": \"conten\",\n  \"contenido\": \"conten\",\n  \"contenidos\": \"conten\",\n  \"contenta\": \"content\",\n  \"contentamos\": \"content\",\n  \"contentas\": \"content\",\n  \"contento\": \"content\",\n  \"contentos\": \"content\",\n  \"conteo\": \"conte\",\n  \"contesta\": \"contest\",\n  \"contestaban\": \"contest\",\n  \"contestan\": \"contest\",\n  \"contestar\": \"contest\",\n  \"contestara\": \"contest\",\n  \"contestarle\": \"contest\",\n  \"contestarles\": \"contest\",\n  \"contestatario\": \"contestatari\",\n  \"contesté\": \"contest\",\n  \"contestó\": \"contest\",\n  \"contexto\": \"context\",\n  \"conti\": \"conti\",\n  \"contienda\": \"contiend\",\n  \"contiene\": \"contien\",\n  \"contienen\": \"contien\",\n  \"contigo\": \"contig\",\n  \"contiguo\": \"contigu\",\n  \"continental\": \"continental\",\n  \"continente\": \"continent\",\n  \"continentes\": \"continent\",\n  \"contingencia\": \"contingent\",\n  \"contingencias\": \"contingent\",\n  \"contingente\": \"contingent\",\n  \"contingentes\": \"contingent\",\n  \"continua\": \"continu\",\n  \"contínua\": \"continu\",\n  \"continúa\": \"continu\",\n  \"continuaba\": \"continu\",\n  \"continuaban\": \"continu\",\n  \"continuación\": \"continu\",\n  \"continuada\": \"continu\",\n  \"continuado\": \"continu\",\n  \"continuamente\": \"continu\",\n  \"continúan\": \"continu\",\n  \"continuar\": \"continu\",\n  \"continuara\": \"continu\",\n  \"continuará\": \"continu\",\n  \"continuaran\": \"continu\",\n  \"continuarán\": \"continu\",\n  \"continuaron\": \"continu\",\n  \"continuas\": \"continu\",\n  \"continúe\": \"continu\",\n  \"continuen\": \"continu\",\n  \"continuidad\": \"continu\",\n  \"continuo\": \"continu\",\n  \"contínuo\": \"continu\",\n  \"continuó\": \"continu\",\n  \"continuos\": \"continu\",\n  \"contó\": \"cont\",\n  \"contorsionarse\": \"contorsion\",\n  \"contra\": \"contr\",\n  \"contraataque\": \"contraataqu\",\n  \"contraataques\": \"contraataqu\",\n  \"contrabandistas\": \"contraband\",\n  \"contrabando\": \"contrab\",\n  \"contracción\": \"contraccion\",\n  \"contractual\": \"contractual\",\n  \"contractura\": \"contractur\",\n  \"contradecir\": \"contradec\",\n  \"contradecirle\": \"contradec\",\n  \"contrademanda\": \"contrademand\",\n  \"contradicción\": \"contradiccion\",\n  \"contradicciones\": \"contradiccion\",\n  \"contradice\": \"contradic\",\n  \"contradicen\": \"contradic\",\n  \"contradictorias\": \"contradictori\",\n  \"contradigan\": \"contradig\",\n  \"contraer\": \"contr\",\n  \"contragolpear\": \"contragolp\",\n  \"contraídos\": \"contraid\",\n  \"contrajo\": \"contraj\",\n  \"contralor\": \"contralor\",\n  \"contraloría\": \"contralor\",\n  \"contralorías\": \"contralor\",\n  \"contrantes\": \"contrant\",\n  \"contraparte\": \"contrapart\",\n  \"contraposiciones\": \"contraposicion\",\n  \"contraproducente\": \"contraproducent\",\n  \"contraproducentes\": \"contraproducent\",\n  \"contrapuesta\": \"contrapuest\",\n  \"contraria\": \"contrari\",\n  \"contrarias\": \"contrari\",\n  \"contrario\": \"contrari\",\n  \"contrarios\": \"contrari\",\n  \"contrarresta\": \"contrarrest\",\n  \"contrarrestar\": \"contrarrest\",\n  \"contrasta\": \"contrast\",\n  \"contrastan\": \"contrast\",\n  \"contraste\": \"contr\",\n  \"contrastes\": \"contrast\",\n  \"contrataban\": \"contrat\",\n  \"contratación\": \"contrat\",\n  \"contrataciones\": \"contrat\",\n  \"contratadas\": \"contrat\",\n  \"contratado\": \"contrat\",\n  \"contratados\": \"contrat\",\n  \"contratan\": \"contrat\",\n  \"contratantes\": \"contrat\",\n  \"contratar\": \"contrat\",\n  \"contratarle\": \"contrat\",\n  \"contratarlo\": \"contrat\",\n  \"contrataron\": \"contrat\",\n  \"contraten\": \"contrat\",\n  \"contratiempo\": \"contratiemp\",\n  \"contratiempos\": \"contratiemp\",\n  \"contratista\": \"contrat\",\n  \"contratistas\": \"contrat\",\n  \"contrato\": \"contrat\",\n  \"contrató\": \"contrat\",\n  \"contratos\": \"contrat\",\n  \"contrayente\": \"contrayent\",\n  \"contreras\": \"contrer\",\n  \"contribución\": \"contribu\",\n  \"contribuciones\": \"contribu\",\n  \"contribuido\": \"contribu\",\n  \"contribuir\": \"contribu\",\n  \"contribuirá\": \"contribu\",\n  \"contribuiría\": \"contribu\",\n  \"contribuyendo\": \"contribu\",\n  \"contribuyente\": \"contribuyent\",\n  \"contribuyentes\": \"contribuyent\",\n  \"contribuyeron\": \"contribu\",\n  \"contribuyó\": \"contribu\",\n  \"contrincante\": \"contrinc\",\n  \"contrincantes\": \"contrinc\",\n  \"contritos\": \"contrit\",\n  \"control\": \"control\",\n  \"controla\": \"control\",\n  \"controlables\": \"control\",\n  \"controlada\": \"control\",\n  \"controlado\": \"control\",\n  \"controladora\": \"control\",\n  \"controlando\": \"control\",\n  \"controlar\": \"control\",\n  \"controlarlo\": \"control\",\n  \"controlaron\": \"control\",\n  \"controlarse\": \"control\",\n  \"controle\": \"control\",\n  \"controles\": \"control\",\n  \"controversia\": \"controversi\",\n  \"controversias\": \"controversi\",\n  \"controvertida\": \"controvert\",\n  \"controvertido\": \"controvert\",\n  \"contry\": \"contry\",\n  \"contubernio\": \"contuberni\",\n  \"contundencia\": \"contundent\",\n  \"contundente\": \"contundent\",\n  \"contundentemente\": \"contundent\",\n  \"contundentes\": \"contundent\",\n  \"conturbado\": \"conturb\",\n  \"conurbada\": \"conurb\",\n  \"conurbadas\": \"conurb\",\n  \"convalecencia\": \"convalecent\",\n  \"convaleciente\": \"convalecient\",\n  \"convence\": \"convenc\",\n  \"convencer\": \"convenc\",\n  \"convencerle\": \"convenc\",\n  \"convencerse\": \"convenc\",\n  \"convencida\": \"convenc\",\n  \"convencidas\": \"convenc\",\n  \"convencido\": \"convenc\",\n  \"convencidos\": \"convenc\",\n  \"convencieron\": \"convenc\",\n  \"convencimiento\": \"convenc\",\n  \"convencimos\": \"convenc\",\n  \"convenció\": \"convenc\",\n  \"convención\": \"convencion\",\n  \"convencional\": \"convencional\",\n  \"convencionales\": \"convencional\",\n  \"convenciones\": \"convencion\",\n  \"convenencieros\": \"convenencier\",\n  \"convenga\": \"conveng\",\n  \"convenía\": \"conven\",\n  \"convenidos\": \"conven\",\n  \"conveniencia\": \"convenient\",\n  \"conveniente\": \"convenient\",\n  \"convenientes\": \"convenient\",\n  \"convenio\": \"conveni\",\n  \"convenios\": \"conveni\",\n  \"convento\": \"convent\",\n  \"convenzo\": \"convenz\",\n  \"convergencia\": \"convergent\",\n  \"conversación\": \"convers\",\n  \"conversaciones\": \"convers\",\n  \"conversarán\": \"convers\",\n  \"conversaron\": \"convers\",\n  \"conversión\": \"conversion\",\n  \"conversó\": \"convers\",\n  \"convertibles\": \"convert\",\n  \"convertido\": \"convert\",\n  \"convertidor\": \"convertidor\",\n  \"convertidores\": \"convertidor\",\n  \"convertir\": \"convert\",\n  \"convertirá\": \"convert\",\n  \"convertiría\": \"convert\",\n  \"convertirnos\": \"convert\",\n  \"convertirse\": \"convert\",\n  \"convicción\": \"conviccion\",\n  \"convicciones\": \"conviccion\",\n  \"conviene\": \"convien\",\n  \"convierta\": \"conviert\",\n  \"conviertan\": \"conviert\",\n  \"convierte\": \"conviert\",\n  \"convierten\": \"conviert\",\n  \"convincente\": \"convincent\",\n  \"convino\": \"convin\",\n  \"convirtiendo\": \"convirt\",\n  \"convirtiéndola\": \"convirt\",\n  \"convirtiéndolas\": \"convirt\",\n  \"convirtiéndose\": \"convirt\",\n  \"convirtiera\": \"convirt\",\n  \"convirtieron\": \"convirt\",\n  \"convirtió\": \"convirt\",\n  \"convivencia\": \"convivent\",\n  \"convivio\": \"convivi\",\n  \"convivir\": \"conviv\",\n  \"convocación\": \"convoc\",\n  \"convocada\": \"convoc\",\n  \"convocadas\": \"convoc\",\n  \"convocado\": \"convoc\",\n  \"convocados\": \"convoc\",\n  \"convocan\": \"convoc\",\n  \"convocar\": \"convoc\",\n  \"convocará\": \"convoc\",\n  \"convocaron\": \"convoc\",\n  \"convocatoria\": \"convocatori\",\n  \"convocatorias\": \"convocatori\",\n  \"convocó\": \"convoc\",\n  \"convoqué\": \"convoqu\",\n  \"convoquen\": \"convoqu\",\n  \"convoy\": \"convoy\",\n  \"convoyes\": \"convoy\",\n  \"convulsionados\": \"convulsion\",\n  \"convulsivas\": \"convuls\",\n  \"cony\": \"cony\",\n  \"conyugal\": \"conyugal\",\n  \"conyugales\": \"conyugal\",\n  \"cooper\": \"coop\",\n  \"cooperación\": \"cooper\",\n  \"cooperar\": \"cooper\",\n  \"cooperará\": \"cooper\",\n  \"cooperaron\": \"cooper\",\n  \"cooperativa\": \"cooper\",\n  \"cooperen\": \"cooper\",\n  \"cooppel\": \"cooppel\",\n  \"cooptación\": \"cooptacion\",\n  \"coordenadas\": \"coorden\",\n  \"coordina\": \"coordin\",\n  \"coordinación\": \"coordin\",\n  \"coordinada\": \"coordin\",\n  \"coordinadas\": \"coordin\",\n  \"coordinador\": \"coordin\",\n  \"coordinadora\": \"coordin\",\n  \"coordinadores\": \"coordin\",\n  \"coordinados\": \"coordin\",\n  \"coordinan\": \"coordin\",\n  \"coordinando\": \"coordin\",\n  \"coordinar\": \"coordin\",\n  \"coordinarán\": \"coordin\",\n  \"coordinaron\": \"coordin\",\n  \"copa\": \"cop\",\n  \"copán\": \"copan\",\n  \"coparmex\": \"coparmex\",\n  \"copas\": \"cop\",\n  \"copia\": \"copi\",\n  \"copiar\": \"copi\",\n  \"copias\": \"copi\",\n  \"copiemos\": \"copi\",\n  \"copioso\": \"copios\",\n  \"coppel\": \"coppel\",\n  \"cópula\": \"copul\",\n  \"coraje\": \"coraj\",\n  \"corán\": \"coran\",\n  \"coraza\": \"coraz\",\n  \"corazon\": \"corazon\",\n  \"corazón\": \"corazon\",\n  \"corazones\": \"corazon\",\n  \"corbalá\": \"corbal\",\n  \"corbata\": \"corbat\",\n  \"corbatas\": \"corbat\",\n  \"cordelia\": \"cordeli\",\n  \"corderos\": \"corder\",\n  \"cordial\": \"cordial\",\n  \"cordillera\": \"cordiller\",\n  \"córdoba\": \"cordob\",\n  \"cordobés\": \"cordobes\",\n  \"cordón\": \"cordon\",\n  \"cordura\": \"cordur\",\n  \"corea\": \"core\",\n  \"coreados\": \"cor\",\n  \"coreana\": \"corean\",\n  \"coreógrafa\": \"coreograf\",\n  \"coreografías\": \"coreograf\",\n  \"coreográfica\": \"coreograf\",\n  \"corinter\": \"corint\",\n  \"cornalina\": \"cornalin\",\n  \"córneas\": \"corn\",\n  \"cornejo\": \"cornej\",\n  \"cornoyer\": \"cornoy\",\n  \"coro\": \"cor\",\n  \"corona\": \"coron\",\n  \"coronacion\": \"coronacion\",\n  \"coronación\": \"coron\",\n  \"coronada\": \"coron\",\n  \"coronado\": \"coron\",\n  \"coronas\": \"coron\",\n  \"coronelas\": \"coronel\",\n  \"coronó\": \"coron\",\n  \"coros\": \"cor\",\n  \"corp\": \"corp\",\n  \"corporación\": \"corpor\",\n  \"corporaciones\": \"corpor\",\n  \"corporal\": \"corporal\",\n  \"corporation\": \"corporation\",\n  \"corporativa\": \"corpor\",\n  \"corporativas\": \"corpor\",\n  \"corporativo\": \"corpor\",\n  \"corporativos\": \"corpor\",\n  \"corpórea\": \"corpore\",\n  \"corpus\": \"corpus\",\n  \"corra\": \"corr\",\n  \"corral\": \"corral\",\n  \"corrales\": \"corral\",\n  \"corran\": \"corr\",\n  \"corre\": \"corr\",\n  \"correajes\": \"correaj\",\n  \"correcaminos\": \"correcamin\",\n  \"corrección\": \"correccion\",\n  \"correcciones\": \"correccion\",\n  \"correcta\": \"correct\",\n  \"correctamente\": \"correct\",\n  \"correctas\": \"correct\",\n  \"correcto\": \"correct\",\n  \"corredor\": \"corredor\",\n  \"corredores\": \"corredor\",\n  \"correduría\": \"corredur\",\n  \"corregible\": \"correg\",\n  \"corregido\": \"correg\",\n  \"corregidora\": \"corregidor\",\n  \"corregir\": \"correg\",\n  \"corregirla\": \"correg\",\n  \"corregirlo\": \"correg\",\n  \"correligionario\": \"correligionari\",\n  \"correligionarios\": \"correligionari\",\n  \"correlon\": \"correlon\",\n  \"correlones\": \"correlon\",\n  \"corremos\": \"corr\",\n  \"corren\": \"corr\",\n  \"correo\": \"corre\",\n  \"correr\": \"corr\",\n  \"correrá\": \"corr\",\n  \"correrán\": \"corr\",\n  \"correrían\": \"corr\",\n  \"correrlos\": \"corr\",\n  \"corres\": \"corr\",\n  \"correspondan\": \"correspond\",\n  \"corresponde\": \"correspond\",\n  \"corresponden\": \"correspond\",\n  \"correspondencia\": \"correspondent\",\n  \"corresponder\": \"correspond\",\n  \"correspondía\": \"correspond\",\n  \"correspondido\": \"correspond\",\n  \"correspondiente\": \"correspondient\",\n  \"correspondientes\": \"correspondient\",\n  \"correspondieron\": \"correspond\",\n  \"correspondió\": \"correspond\",\n  \"corresponsal\": \"corresponsal\",\n  \"correveidile\": \"correveidil\",\n  \"corrí\": \"corr\",\n  \"corría\": \"corr\",\n  \"corrían\": \"corr\",\n  \"corrida\": \"corr\",\n  \"corridas\": \"corr\",\n  \"corrido\": \"corr\",\n  \"corridos\": \"corr\",\n  \"corriendo\": \"corr\",\n  \"corriente\": \"corrient\",\n  \"corrientes\": \"corrient\",\n  \"corrieron\": \"corr\",\n  \"corrige\": \"corrig\",\n  \"corrigen\": \"corrig\",\n  \"corrijan\": \"corrij\",\n  \"corrillo\": \"corrill\",\n  \"corrió\": \"corr\",\n  \"corripio\": \"corripi\",\n  \"corro\": \"corr\",\n  \"corrobora\": \"corrobor\",\n  \"corroboraban\": \"corrobor\",\n  \"corroboraron\": \"corrobor\",\n  \"corrompa\": \"corromp\",\n  \"corrompe\": \"corromp\",\n  \"corrosión\": \"corrosion\",\n  \"corrupción\": \"corrupcion\",\n  \"corruptela\": \"corruptel\",\n  \"corrupto\": \"corrupt\",\n  \"corruptos\": \"corrupt\",\n  \"corta\": \"cort\",\n  \"cortada\": \"cort\",\n  \"cortadillo\": \"cortadill\",\n  \"cortadillos\": \"cortadill\",\n  \"cortado\": \"cort\",\n  \"cortadores\": \"cortador\",\n  \"cortando\": \"cort\",\n  \"cortantes\": \"cortant\",\n  \"cortar\": \"cort\",\n  \"cortarle\": \"cort\",\n  \"cortarlos\": \"cort\",\n  \"cortarnos\": \"cort\",\n  \"cortárselo\": \"cort\",\n  \"cortas\": \"cort\",\n  \"cortázar\": \"cortaz\",\n  \"corte\": \"cort\",\n  \"cortedad\": \"corted\",\n  \"cortejada\": \"cortej\",\n  \"cortejar\": \"cortej\",\n  \"cortés\": \"cortes\",\n  \"cortesanas\": \"cortesan\",\n  \"cortesía\": \"cortes\",\n  \"cortez\": \"cortez\",\n  \"corteza\": \"cortez\",\n  \"cortina\": \"cortin\",\n  \"cortinas\": \"cortin\",\n  \"cortines\": \"cortin\",\n  \"cortito\": \"cortit\",\n  \"corto\": \"cort\",\n  \"cortó\": \"cort\",\n  \"cortoplazo\": \"cortoplaz\",\n  \"cortos\": \"cort\",\n  \"coruña\": \"coruñ\",\n  \"corvette\": \"corvett\",\n  \"corvi\": \"corvi\",\n  \"cosa\": \"cos\",\n  \"cosas\": \"cos\",\n  \"cosaspeores\": \"cosaspeor\",\n  \"cosecha\": \"cosech\",\n  \"cosechando\": \"cosech\",\n  \"cosechas\": \"cosech\",\n  \"coser\": \"cos\",\n  \"cosméticos\": \"cosmet\",\n  \"cósmica\": \"cosmic\",\n  \"cósmico\": \"cosmic\",\n  \"cosmovisión\": \"cosmovision\",\n  \"coso\": \"cos\",\n  \"coss\": \"coss\",\n  \"cossío\": \"cossi\",\n  \"costa\": \"cost\",\n  \"costaba\": \"cost\",\n  \"costado\": \"cost\",\n  \"costados\": \"cost\",\n  \"costal\": \"costal\",\n  \"costales\": \"costal\",\n  \"costándole\": \"cost\",\n  \"costar\": \"cost\",\n  \"costará\": \"cost\",\n  \"costarán\": \"cost\",\n  \"costarricense\": \"costarricens\",\n  \"costas\": \"cost\",\n  \"costeable\": \"costeabl\",\n  \"costee\": \"coste\",\n  \"costera\": \"coster\",\n  \"costeras\": \"coster\",\n  \"costero\": \"coster\",\n  \"costilla\": \"costill\",\n  \"costner\": \"costn\",\n  \"costo\": \"cost\",\n  \"costó\": \"cost\",\n  \"costos\": \"cost\",\n  \"costosas\": \"cost\",\n  \"costoso\": \"costos\",\n  \"costosos\": \"costos\",\n  \"costumbre\": \"costumbr\",\n  \"costumbres\": \"costumbr\",\n  \"costura\": \"costur\",\n  \"costuras\": \"costur\",\n  \"costureras\": \"costurer\",\n  \"cota\": \"cot\",\n  \"cotejo\": \"cotej\",\n  \"cotero\": \"coter\",\n  \"cotidiana\": \"cotidian\",\n  \"cotidianas\": \"cotidian\",\n  \"cotidianeidad\": \"cotidian\",\n  \"cotidiano\": \"cotidian\",\n  \"cotidianos\": \"cotidian\",\n  \"cotiza\": \"cotiz\",\n  \"cotización\": \"cotiz\",\n  \"cotizaciones\": \"cotiz\",\n  \"cotizado\": \"cotiz\",\n  \"cotizados\": \"cotiz\",\n  \"cotizan\": \"cotiz\",\n  \"cotizar\": \"cotiz\",\n  \"cotorreo\": \"cotorre\",\n  \"couches\": \"couch\",\n  \"cougar\": \"coug\",\n  \"country\": \"country\",\n  \"covarrubias\": \"covarrubi\",\n  \"cover\": \"cov\",\n  \"covers\": \"covers\",\n  \"cóvers\": \"covers\",\n  \"covian\": \"covi\",\n  \"cowboy\": \"cowboy\",\n  \"cox\": \"cox\",\n  \"coyolxauhqui\": \"coyolxauhqui\",\n  \"coyotaje\": \"coyotaj\",\n  \"coyote\": \"coyot\",\n  \"coyotepec\": \"coyotepec\",\n  \"coyuca\": \"coyuc\",\n  \"coyuntura\": \"coyuntur\",\n  \"cozumel\": \"cozumel\",\n  \"cpp\": \"cpp\",\n  \"crack\": \"crack\",\n  \"cráneo\": \"crane\",\n  \"cráter\": \"crat\",\n  \"cráteres\": \"crater\",\n  \"cravioto\": \"craviot\",\n  \"crawford\": \"crawford\",\n  \"crayones\": \"crayon\",\n  \"crea\": \"cre\",\n  \"creacion\": \"creacion\",\n  \"creación\": \"creacion\",\n  \"creaciones\": \"creacion\",\n  \"creada\": \"cre\",\n  \"creadas\": \"cre\",\n  \"creado\": \"cre\",\n  \"creador\": \"creador\",\n  \"creadores\": \"creador\",\n  \"creame\": \"cream\",\n  \"creamos\": \"cre\",\n  \"crean\": \"cre\",\n  \"creando\": \"cre\",\n  \"crear\": \"cre\",\n  \"creara\": \"cre\",\n  \"creará\": \"cre\",\n  \"crearán\": \"cre\",\n  \"crearía\": \"cre\",\n  \"crearles\": \"cre\",\n  \"crearon\": \"cre\",\n  \"creativa\": \"creativ\",\n  \"creativas\": \"creativ\",\n  \"creatividad\": \"creativ\",\n  \"creativo\": \"creativ\",\n  \"creativos\": \"creativ\",\n  \"crece\": \"crec\",\n  \"crecen\": \"crec\",\n  \"crecer\": \"crec\",\n  \"crecerá\": \"crec\",\n  \"crecerán\": \"crec\",\n  \"creceremos\": \"crec\",\n  \"crecerían\": \"crec\",\n  \"creces\": \"crec\",\n  \"crecí\": \"crec\",\n  \"crecido\": \"crec\",\n  \"creciendo\": \"crec\",\n  \"creciente\": \"crecient\",\n  \"crecieron\": \"crec\",\n  \"crecimiento\": \"crecimient\",\n  \"crecimientos\": \"crecimient\",\n  \"creció\": \"crec\",\n  \"credencial\": \"credencial\",\n  \"credenciales\": \"credencial\",\n  \"credencialización\": \"credencializ\",\n  \"credencializados\": \"credencializ\",\n  \"credibilidad\": \"credibil\",\n  \"crediticia\": \"creditici\",\n  \"crediticias\": \"creditici\",\n  \"crediticio\": \"creditici\",\n  \"crediticios\": \"creditici\",\n  \"crédito\": \"credit\",\n  \"creditos\": \"credit\",\n  \"créditos\": \"credit\",\n  \"cree\": \"cre\",\n  \"créeme\": \"creem\",\n  \"creemos\": \"cre\",\n  \"creen\": \"cre\",\n  \"creencia\": \"creenci\",\n  \"creencias\": \"creenci\",\n  \"creer\": \"cre\",\n  \"creerán\": \"cre\",\n  \"creería\": \"cre\",\n  \"creerme\": \"cre\",\n  \"creía\": \"cre\",\n  \"creíamos\": \"cre\",\n  \"creíble\": \"creibl\",\n  \"creíbles\": \"creibl\",\n  \"creído\": \"creid\",\n  \"creímos\": \"creim\",\n  \"cremas\": \"crem\",\n  \"cremi\": \"cremi\",\n  \"creo\": \"cre\",\n  \"creó\": \"cre\",\n  \"creole\": \"creol\",\n  \"cretinismo\": \"cretin\",\n  \"creyendo\": \"creyend\",\n  \"creyó\": \"crey\",\n  \"crezca\": \"crezc\",\n  \"criada\": \"cri\",\n  \"criadas\": \"cri\",\n  \"criadero\": \"criader\",\n  \"criadita\": \"criadit\",\n  \"criadores\": \"criador\",\n  \"criatura\": \"criatur\",\n  \"criaturas\": \"criatur\",\n  \"crimen\": \"crim\",\n  \"crímenes\": \"crimen\",\n  \"criminal\": \"criminal\",\n  \"criminales\": \"criminal\",\n  \"criminalidad\": \"criminal\",\n  \"criminalista\": \"criminal\",\n  \"criocirugía\": \"criocirug\",\n  \"criollos\": \"crioll\",\n  \"crisantemo\": \"crisantem\",\n  \"crisantemos\": \"crisant\",\n  \"crisis\": \"crisis\",\n  \"cristal\": \"cristal\",\n  \"cristales\": \"cristal\",\n  \"cristalización\": \"cristaliz\",\n  \"cristalizado\": \"cristaliz\",\n  \"cristiana\": \"cristian\",\n  \"cristianismo\": \"cristian\",\n  \"cristiano\": \"cristian\",\n  \"cristianos\": \"cristian\",\n  \"cristina\": \"cristin\",\n  \"cristo\": \"crist\",\n  \"cristobal\": \"cristobal\",\n  \"criterio\": \"criteri\",\n  \"criterios\": \"criteri\",\n  \"critica\": \"critic\",\n  \"crítica\": \"critic\",\n  \"criticaban\": \"critic\",\n  \"criticado\": \"critic\",\n  \"criticamente\": \"critic\",\n  \"critican\": \"critic\",\n  \"criticando\": \"critic\",\n  \"criticar\": \"critic\",\n  \"criticará\": \"critic\",\n  \"criticarlos\": \"critic\",\n  \"criticaron\": \"critic\",\n  \"críticas\": \"critic\",\n  \"crítico\": \"critic\",\n  \"criticó\": \"critic\",\n  \"críticos\": \"critic\",\n  \"croacia\": \"croaci\",\n  \"croc\": \"croc\",\n  \"cromadas\": \"crom\",\n  \"cromadoras\": \"cromador\",\n  \"cromados\": \"crom\",\n  \"cromera\": \"cromer\",\n  \"crónica\": \"cronic\",\n  \"crónicas\": \"cronic\",\n  \"cronista\": \"cronist\",\n  \"cronistas\": \"cronist\",\n  \"cronometraron\": \"cronometr\",\n  \"cronómetro\": \"cronometr\",\n  \"cronometró\": \"cronometr\",\n  \"cronómetros\": \"cronometr\",\n  \"croquetas\": \"croquet\",\n  \"croquis\": \"croquis\",\n  \"croquistas\": \"croquist\",\n  \"croux\": \"croux\",\n  \"cruce\": \"cruc\",\n  \"crucero\": \"crucer\",\n  \"cruceros\": \"crucer\",\n  \"cruces\": \"cruc\",\n  \"crucial\": \"crucial\",\n  \"cruda\": \"crud\",\n  \"crudo\": \"crud\",\n  \"crue\": \"cru\",\n  \"cruel\": \"cruel\",\n  \"cruenta\": \"cruent\",\n  \"cruise\": \"cruis\",\n  \"cruz\": \"cruz\",\n  \"cruza\": \"cruz\",\n  \"cruzada\": \"cruz\",\n  \"cruzadas\": \"cruz\",\n  \"cruzado\": \"cruz\",\n  \"cruzados\": \"cruz\",\n  \"cruzan\": \"cruz\",\n  \"cruzando\": \"cruz\",\n  \"cruzar\": \"cruz\",\n  \"cruzará\": \"cruz\",\n  \"cruzaron\": \"cruz\",\n  \"cruzas\": \"cruz\",\n  \"cruzó\": \"cruz\",\n  \"crysel\": \"crysel\",\n  \"cse\": \"cse\",\n  \"csg\": \"csg\",\n  \"ctm\": \"ctm\",\n  \"cu\": \"cu\",\n  \"cuadra\": \"cuadr\",\n  \"cuadrado\": \"cuadr\",\n  \"cuadrados\": \"cuadr\",\n  \"cuadrangular\": \"cuadrangul\",\n  \"cuadras\": \"cuadr\",\n  \"cuadrilátero\": \"cuadrilater\",\n  \"cuadriláteros\": \"cuadrilater\",\n  \"cuadrilla\": \"cuadrill\",\n  \"cuadro\": \"cuadr\",\n  \"cuadros\": \"cuadr\",\n  \"cuadruplica\": \"cuadrupl\",\n  \"cuadruplicó\": \"cuadruplic\",\n  \"cuajar\": \"cuaj\",\n  \"cuajarle\": \"cuaj\",\n  \"cuajimalpa\": \"cuajimalp\",\n  \"cual\": \"cual\",\n  \"cuál\": \"cual\",\n  \"cuales\": \"cual\",\n  \"cuáles\": \"cual\",\n  \"cualesquier\": \"cualesqui\",\n  \"cualidad\": \"cualid\",\n  \"cualidades\": \"cualidad\",\n  \"cualquier\": \"cualqui\",\n  \"cualquiera\": \"cualqu\",\n  \"cuando\": \"cuand\",\n  \"cuándo\": \"cuand\",\n  \"cuánta\": \"cuant\",\n  \"cuantas\": \"cuant\",\n  \"cuántas\": \"cuant\",\n  \"cuantifica\": \"cuantif\",\n  \"cuantiosamente\": \"cuanti\",\n  \"cuantiosos\": \"cuantios\",\n  \"cuanto\": \"cuant\",\n  \"cuánto\": \"cuant\",\n  \"cuantos\": \"cuant\",\n  \"cuántos\": \"cuant\",\n  \"cuarenta\": \"cuarent\",\n  \"cuarta\": \"cuart\",\n  \"cuartel\": \"cuartel\",\n  \"cuarteles\": \"cuartel\",\n  \"cuarteto\": \"cuartet\",\n  \"cuartillas\": \"cuartill\",\n  \"cuartitos\": \"cuartit\",\n  \"cuarto\": \"cuart\",\n  \"cuartos\": \"cuart\",\n  \"cuarzo\": \"cuarz\",\n  \"cuatacho\": \"cuatach\",\n  \"cuate\": \"cuat\",\n  \"cuatro\": \"cuatr\",\n  \"cuauhtémoc\": \"cuauhtemoc\",\n  \"cuautitlán\": \"cuautitlan\",\n  \"cuba\": \"cub\",\n  \"cubana\": \"cuban\",\n  \"cubanas\": \"cuban\",\n  \"cubano\": \"cuban\",\n  \"cubanos\": \"cuban\",\n  \"cubas\": \"cub\",\n  \"cubero\": \"cuber\",\n  \"cúbicos\": \"cubic\",\n  \"cubículos\": \"cubicul\",\n  \"cubierta\": \"cubiert\",\n  \"cubiertas\": \"cubiert\",\n  \"cubierto\": \"cubiert\",\n  \"cubiertos\": \"cubiert\",\n  \"cubra\": \"cubr\",\n  \"cubran\": \"cubr\",\n  \"cubre\": \"cubr\",\n  \"cubren\": \"cubr\",\n  \"cubría\": \"cubr\",\n  \"cubrían\": \"cubr\",\n  \"cubriendo\": \"cubr\",\n  \"cubriéndonos\": \"cubr\",\n  \"cubrimos\": \"cubr\",\n  \"cubrió\": \"cubr\",\n  \"cubrir\": \"cubr\",\n  \"cubrirá\": \"cubr\",\n  \"cubrirán\": \"cubr\",\n  \"cuca\": \"cuc\",\n  \"cuchara\": \"cuch\",\n  \"cucharaditas\": \"cucharadit\",\n  \"cucharas\": \"cuch\",\n  \"cuchillada\": \"cuchill\",\n  \"cuchillería\": \"cuchill\",\n  \"cuchillo\": \"cuchill\",\n  \"cuchillos\": \"cuchill\",\n  \"cuco\": \"cuc\",\n  \"cuelgan\": \"cuelg\",\n  \"cuelgue\": \"cuelg\",\n  \"cuellar\": \"cuell\",\n  \"cuéllar\": \"cuell\",\n  \"cuello\": \"cuell\",\n  \"cuenca\": \"cuenc\",\n  \"cuenta\": \"cuent\",\n  \"cuentan\": \"cuent\",\n  \"cuentas\": \"cuent\",\n  \"cuente\": \"cuent\",\n  \"cuenten\": \"cuent\",\n  \"cuento\": \"cuent\",\n  \"cuentos\": \"cuent\",\n  \"cuerda\": \"cuerd\",\n  \"cuerdas\": \"cuerd\",\n  \"cuerdo\": \"cuerd\",\n  \"cuernavaca\": \"cuernavac\",\n  \"cuerno\": \"cuern\",\n  \"cuernos\": \"cuern\",\n  \"cuero\": \"cuer\",\n  \"cuerpo\": \"cuerp\",\n  \"cuerpos\": \"cuerp\",\n  \"cuervo\": \"cuerv\",\n  \"cuesta\": \"cuest\",\n  \"cuestan\": \"cuest\",\n  \"cuestas\": \"cuest\",\n  \"cuestion\": \"cuestion\",\n  \"cuestión\": \"cuestion\",\n  \"cuestiona\": \"cuestion\",\n  \"cuestionada\": \"cuestion\",\n  \"cuestionado\": \"cuestion\",\n  \"cuestionados\": \"cuestion\",\n  \"cuestionamiento\": \"cuestion\",\n  \"cuestionamientos\": \"cuestion\",\n  \"cuestionan\": \"cuestion\",\n  \"cuestiones\": \"cuestion\",\n  \"cuestionó\": \"cuestion\",\n  \"cueva\": \"cuev\",\n  \"cuevas\": \"cuev\",\n  \"cuicalli\": \"cuicalli\",\n  \"cuicuilco\": \"cuicuilc\",\n  \"cuida\": \"cuid\",\n  \"cuidaba\": \"cuid\",\n  \"cuidad\": \"cuid\",\n  \"cuidadas\": \"cuid\",\n  \"cuidado\": \"cuid\",\n  \"cuidador\": \"cuidador\",\n  \"cuidados\": \"cuid\",\n  \"cuidadosa\": \"cuidad\",\n  \"cuidadosamente\": \"cuidad\",\n  \"cuidadoso\": \"cuidad\",\n  \"cuidan\": \"cuid\",\n  \"cuidando\": \"cuid\",\n  \"cuidar\": \"cuid\",\n  \"cuidará\": \"cuid\",\n  \"cuidarlo\": \"cuid\",\n  \"cuide\": \"cuid\",\n  \"cuiden\": \"cuid\",\n  \"cuitlahuac\": \"cuitlahuac\",\n  \"culebra\": \"culebr\",\n  \"culiacan\": \"culiac\",\n  \"culiacán\": \"culiacan\",\n  \"culinarias\": \"culinari\",\n  \"culminada\": \"culmin\",\n  \"culminado\": \"culmin\",\n  \"culminante\": \"culmin\",\n  \"culminará\": \"culmin\",\n  \"culminarán\": \"culmin\",\n  \"culminó\": \"culmin\",\n  \"culpa\": \"culp\",\n  \"culpabilidad\": \"culpabil\",\n  \"culpable\": \"culpabl\",\n  \"culpables\": \"culpabl\",\n  \"culpar\": \"culp\",\n  \"culpó\": \"culp\",\n  \"culposos\": \"culpos\",\n  \"culta\": \"cult\",\n  \"cultiva\": \"cultiv\",\n  \"cultivable\": \"cultiv\",\n  \"cultivadas\": \"cultiv\",\n  \"cultivadores\": \"cultiv\",\n  \"cultivan\": \"cultiv\",\n  \"cultivar\": \"cultiv\",\n  \"cultivo\": \"cultiv\",\n  \"cultivos\": \"cultiv\",\n  \"culto\": \"cult\",\n  \"cultos\": \"cult\",\n  \"cultura\": \"cultur\",\n  \"cultural\": \"cultural\",\n  \"culturales\": \"cultural\",\n  \"culturas\": \"cultur\",\n  \"culturización\": \"culturiz\",\n  \"cumaná\": \"cuman\",\n  \"cumbre\": \"cumbr\",\n  \"cumbres\": \"cumbr\",\n  \"cumpla\": \"cumpl\",\n  \"cumplan\": \"cumpl\",\n  \"cumple\": \"cumpl\",\n  \"cumpleaños\": \"cumpleañ\",\n  \"cumplen\": \"cumpl\",\n  \"cumplí\": \"cumpl\",\n  \"cumplía\": \"cumpl\",\n  \"cumplían\": \"cumpl\",\n  \"cumplidas\": \"cumpl\",\n  \"cumplido\": \"cumpl\",\n  \"cumplidoras\": \"cumplidor\",\n  \"cumplidos\": \"cumpl\",\n  \"cumpliendo\": \"cumpl\",\n  \"cumpliéramos\": \"cumpl\",\n  \"cumplieron\": \"cumpl\",\n  \"cumplimiento\": \"cumplimient\",\n  \"cumplimientos\": \"cumplimient\",\n  \"cumplimos\": \"cumpl\",\n  \"cumplió\": \"cumpl\",\n  \"cumplir\": \"cumpl\",\n  \"cumplirá\": \"cumpl\",\n  \"cumplirles\": \"cumpl\",\n  \"cumplirse\": \"cumpl\",\n  \"cumplírsele\": \"cumplirsel\",\n  \"cuñada\": \"cuñ\",\n  \"cuñado\": \"cuñ\",\n  \"cuñados\": \"cuñ\",\n  \"cunda\": \"cund\",\n  \"cundió\": \"cund\",\n  \"cuño\": \"cuñ\",\n  \"cuota\": \"cuot\",\n  \"cuotas\": \"cuot\",\n  \"cupertino\": \"cupertin\",\n  \"cupo\": \"cup\",\n  \"cupón\": \"cupon\",\n  \"cúpula\": \"cupul\",\n  \"cúpulas\": \"cupul\",\n  \"cura\": \"cur\",\n  \"curaban\": \"cur\",\n  \"curandero\": \"curander\",\n  \"curar\": \"cur\",\n  \"cure\": \"cur\",\n  \"curia\": \"curi\",\n  \"curiosamente\": \"curi\",\n  \"curiosas\": \"curi\",\n  \"curiosidad\": \"curi\",\n  \"curiosidades\": \"curi\",\n  \"curioso\": \"curios\",\n  \"curriculum\": \"curriculum\",\n  \"currículum\": \"curriculum\",\n  \"curro\": \"curr\",\n  \"cursada\": \"curs\",\n  \"cursando\": \"curs\",\n  \"cursaron\": \"curs\",\n  \"curso\": \"curs\",\n  \"cursos\": \"curs\",\n  \"curva\": \"curv\",\n  \"curvatura\": \"curvatur\",\n  \"cuspinera\": \"cuspiner\",\n  \"custodia\": \"custodi\",\n  \"custodiado\": \"custodi\",\n  \"custodian\": \"custodi\",\n  \"custodiar\": \"custodi\",\n  \"customline\": \"customlin\",\n  \"cutáneas\": \"cutan\",\n  \"cutzamala\": \"cutzamal\",\n  \"cuya\": \"cuy\",\n  \"cuyas\": \"cuy\",\n  \"cuyo\": \"cuy\",\n  \"cuyos\": \"cuy\",\n  \"cydsa\": \"cydsa\",\n  \"cyrus\": \"cyrus\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"daba\": \"dab\",\n  \"daban\": \"dab\",\n  \"dacarett\": \"dacarett\",\n  \"dad\": \"dad\",\n  \"dada\": \"dad\",\n  \"dadas\": \"dad\",\n  \"dado\": \"dad\",\n  \"dados\": \"dad\",\n  \"dagoberto\": \"dagobert\",\n  \"dahn\": \"dahn\",\n  \"daihim\": \"daihim\",\n  \"daily\": \"daily\",\n  \"daimatsu\": \"daimatsu\",\n  \"daimler\": \"daiml\",\n  \"dalia\": \"dali\",\n  \"dallas\": \"dall\",\n  \"daltonismo\": \"dalton\",\n  \"dama\": \"dam\",\n  \"damas\": \"dam\",\n  \"dame\": \"dam\",\n  \"damnificada\": \"damnific\",\n  \"damnificados\": \"damnific\",\n  \"damos\": \"dam\",\n  \"dan\": \"dan\",\n  \"daña\": \"dañ\",\n  \"dañaban\": \"dañ\",\n  \"dañada\": \"dañ\",\n  \"dañadas\": \"dañ\",\n  \"dañado\": \"dañ\",\n  \"dañados\": \"dañ\",\n  \"dañan\": \"dañ\",\n  \"dañar\": \"dañ\",\n  \"dañará\": \"dañ\",\n  \"dañaran\": \"dañ\",\n  \"dañarse\": \"dañ\",\n  \"dando\": \"dand\",\n  \"dándole\": \"dandol\",\n  \"dándonos\": \"dandon\",\n  \"daniel\": \"daniel\",\n  \"daniela\": \"daniel\",\n  \"dañino\": \"dañin\",\n  \"dañinos\": \"dañin\",\n  \"danny\": \"danny\",\n  \"daño\": \"dañ\",\n  \"daños\": \"dañ\",\n  \"dante\": \"dant\",\n  \"danza\": \"danz\",\n  \"danzar\": \"danz\",\n  \"danzas\": \"danz\",\n  \"dar\": \"dar\",\n  \"dará\": \"dar\",\n  \"darán\": \"daran\",\n  \"darás\": \"daras\",\n  \"darci\": \"darci\",\n  \"daré\": \"dar\",\n  \"daría\": \"dar\",\n  \"darían\": \"dar\",\n  \"darío\": \"dari\",\n  \"darla\": \"darl\",\n  \"darle\": \"darl\",\n  \"darles\": \"darl\",\n  \"darnos\": \"darn\",\n  \"darse\": \"dars\",\n  \"dárselo\": \"darsel\",\n  \"dárselos\": \"darsel\",\n  \"das\": \"das\",\n  \"dasa\": \"das\",\n  \"dasd\": \"dasd\",\n  \"data\": \"dat\",\n  \"date\": \"dat\",\n  \"dato\": \"dat\",\n  \"datos\": \"dat\",\n  \"datsun\": \"datsun\",\n  \"datum\": \"datum\",\n  \"davalillo\": \"davalill\",\n  \"dávalos\": \"daval\",\n  \"dave\": \"dav\",\n  \"david\": \"dav\",\n  \"dávila\": \"davil\",\n  \"davis\": \"davis\",\n  \"day\": \"day\",\n  \"days\": \"days\",\n  \"daza\": \"daz\",\n  \"ddf\": \"ddf\",\n  \"de\": \"de\",\n  \"dé\": \"de\",\n  \"dean\": \"dean\",\n  \"deba\": \"deb\",\n  \"debajo\": \"debaj\",\n  \"deban\": \"deb\",\n  \"debate\": \"debat\",\n  \"debatido\": \"debat\",\n  \"debatir\": \"debat\",\n  \"debatirán\": \"debat\",\n  \"debe\": \"deb\",\n  \"debemos\": \"deb\",\n  \"deben\": \"deb\",\n  \"deber\": \"deb\",\n  \"deberá\": \"deb\",\n  \"deberán\": \"deb\",\n  \"deberás\": \"deb\",\n  \"deberes\": \"deber\",\n  \"debería\": \"deb\",\n  \"deberíamos\": \"deb\",\n  \"deberían\": \"deb\",\n  \"debes\": \"deb\",\n  \"debí\": \"deb\",\n  \"debía\": \"deb\",\n  \"debíamos\": \"deb\",\n  \"debían\": \"deb\",\n  \"debidamente\": \"debid\",\n  \"debido\": \"deb\",\n  \"debiera\": \"deb\",\n  \"debieran\": \"deb\",\n  \"debieron\": \"deb\",\n  \"débil\": \"debil\",\n  \"debiles\": \"debil\",\n  \"débiles\": \"debil\",\n  \"debilidad\": \"debil\",\n  \"debilidades\": \"debil\",\n  \"debilita\": \"debilit\",\n  \"debilitado\": \"debilit\",\n  \"debilitar\": \"debilit\",\n  \"debilitarnos\": \"debilit\",\n  \"debilite\": \"debilit\",\n  \"debió\": \"deb\",\n  \"débito\": \"debit\",\n  \"debo\": \"deb\",\n  \"debut\": \"debut\",\n  \"debutado\": \"debut\",\n  \"debutante\": \"debut\",\n  \"debutarán\": \"debut\",\n  \"debutó\": \"debut\",\n  \"década\": \"dec\",\n  \"décadas\": \"dec\",\n  \"decadencia\": \"decadent\",\n  \"decadente\": \"decadent\",\n  \"decaer\": \"dec\",\n  \"decaería\": \"dec\",\n  \"decaído\": \"decaid\",\n  \"decaiga\": \"decaig\",\n  \"decanini\": \"decanini\",\n  \"decano\": \"decan\",\n  \"decapitada\": \"decapit\",\n  \"decapitados\": \"decapit\",\n  \"decapitó\": \"decapit\",\n  \"decayó\": \"decay\",\n  \"decenas\": \"decen\",\n  \"decenso\": \"decens\",\n  \"decente\": \"decent\",\n  \"decepción\": \"decepcion\",\n  \"decepciona\": \"decepcion\",\n  \"decepcionada\": \"decepcion\",\n  \"decepcionadas\": \"decepcion\",\n  \"decepcionado\": \"decepcion\",\n  \"decía\": \"dec\",\n  \"decíamos\": \"dec\",\n  \"decían\": \"dec\",\n  \"decida\": \"dec\",\n  \"decidan\": \"decid\",\n  \"decide\": \"decid\",\n  \"deciden\": \"decid\",\n  \"decidí\": \"decid\",\n  \"decidida\": \"decid\",\n  \"decididamente\": \"decidid\",\n  \"decidido\": \"decid\",\n  \"decidieron\": \"decid\",\n  \"decidimos\": \"decid\",\n  \"decidió\": \"decid\",\n  \"decidir\": \"decid\",\n  \"decidirá\": \"decid\",\n  \"decidirán\": \"decid\",\n  \"decidiría\": \"decid\",\n  \"decidirse\": \"decid\",\n  \"decido\": \"dec\",\n  \"décima\": \"decim\",\n  \"décimas\": \"decim\",\n  \"décimo\": \"decim\",\n  \"decimos\": \"dec\",\n  \"decir\": \"dec\",\n  \"decirle\": \"dec\",\n  \"decirles\": \"dec\",\n  \"decirlo\": \"dec\",\n  \"decirme\": \"dec\",\n  \"decirnos\": \"dec\",\n  \"decirse\": \"dec\",\n  \"decírselo\": \"dec\",\n  \"decision\": \"decision\",\n  \"decisión\": \"decision\",\n  \"decisiones\": \"decision\",\n  \"decisioón\": \"decisioon\",\n  \"decisiva\": \"decis\",\n  \"decisivo\": \"decis\",\n  \"decisivos\": \"decis\",\n  \"declamaba\": \"declam\",\n  \"declara\": \"decl\",\n  \"declaraban\": \"declar\",\n  \"declaración\": \"declar\",\n  \"declaraciones\": \"declar\",\n  \"declarada\": \"declar\",\n  \"declaradas\": \"declar\",\n  \"declarado\": \"declar\",\n  \"declarante\": \"declar\",\n  \"declarar\": \"declar\",\n  \"declararon\": \"declar\",\n  \"declararse\": \"declar\",\n  \"declaratoria\": \"declaratori\",\n  \"declare\": \"declar\",\n  \"declaren\": \"declar\",\n  \"declaró\": \"declar\",\n  \"declinación\": \"declin\",\n  \"declinar\": \"declin\",\n  \"declinó\": \"declin\",\n  \"decomisadas\": \"decomis\",\n  \"decomisados\": \"decomis\",\n  \"decomisan\": \"decomis\",\n  \"decomisaron\": \"decomis\",\n  \"decomisó\": \"decomis\",\n  \"decoración\": \"decor\",\n  \"decorado\": \"decor\",\n  \"decorados\": \"decor\",\n  \"decorar\": \"decor\",\n  \"decorativo\": \"decor\",\n  \"decrecimiento\": \"decrec\",\n  \"decremento\": \"decrement\",\n  \"decrescenzo\": \"decrescenz\",\n  \"decretado\": \"decret\",\n  \"decretan\": \"decret\",\n  \"decretaron\": \"decret\",\n  \"decretarse\": \"decret\",\n  \"decreto\": \"decret\",\n  \"decretó\": \"decret\",\n  \"decretos\": \"decret\",\n  \"dedazo\": \"dedaz\",\n  \"dedazos\": \"dedaz\",\n  \"dedeó\": \"dede\",\n  \"dedica\": \"dedic\",\n  \"dedicación\": \"dedic\",\n  \"dedicada\": \"dedic\",\n  \"dedicadas\": \"dedic\",\n  \"dedicado\": \"dedic\",\n  \"dedicados\": \"dedic\",\n  \"dedicamos\": \"dedic\",\n  \"dedican\": \"dedic\",\n  \"dedicando\": \"dedic\",\n  \"dedicar\": \"dedic\",\n  \"dedicará\": \"dedic\",\n  \"dedicaran\": \"dedic\",\n  \"dedicaré\": \"dedic\",\n  \"dedicarme\": \"dedic\",\n  \"dedicarnos\": \"dedic\",\n  \"dedicaron\": \"dedic\",\n  \"dedicarse\": \"dedic\",\n  \"dedicarte\": \"dedicart\",\n  \"dedico\": \"dedic\",\n  \"dedicó\": \"dedic\",\n  \"dedillo\": \"dedill\",\n  \"dedique\": \"dediqu\",\n  \"dediqué\": \"dediqu\",\n  \"dedo\": \"ded\",\n  \"dedos\": \"ded\",\n  \"deducibles\": \"deduc\",\n  \"deduje\": \"deduj\",\n  \"dedúzcale\": \"deduzcal\",\n  \"deduzco\": \"deduzc\",\n  \"dee\": \"dee\",\n  \"defecto\": \"defect\",\n  \"defectos\": \"defect\",\n  \"defender\": \"defend\",\n  \"defenderá\": \"defend\",\n  \"defenderán\": \"defend\",\n  \"defenderse\": \"defend\",\n  \"defendía\": \"defend\",\n  \"defendida\": \"defend\",\n  \"defendido\": \"defend\",\n  \"defendiendo\": \"defend\",\n  \"defendió\": \"defend\",\n  \"defenestradas\": \"defenestr\",\n  \"defeños\": \"defeñ\",\n  \"defensa\": \"defens\",\n  \"defensas\": \"defens\",\n  \"defensiva\": \"defens\",\n  \"defensivas\": \"defens\",\n  \"defensivo\": \"defens\",\n  \"defensor\": \"defensor\",\n  \"defensora\": \"defensor\",\n  \"defensores\": \"defensor\",\n  \"defensorías\": \"defensor\",\n  \"deferencia\": \"deferent\",\n  \"deficiencia\": \"deficient\",\n  \"deficiencias\": \"deficient\",\n  \"deficiente\": \"deficient\",\n  \"deficientes\": \"deficient\",\n  \"deficit\": \"deficit\",\n  \"déficit\": \"deficit\",\n  \"defienda\": \"defiend\",\n  \"defiende\": \"defiend\",\n  \"defienden\": \"defiend\",\n  \"defina\": \"defin\",\n  \"define\": \"defin\",\n  \"definen\": \"defin\",\n  \"definía\": \"defin\",\n  \"definición\": \"definicion\",\n  \"definiciones\": \"definicion\",\n  \"definida\": \"defin\",\n  \"definidas\": \"defin\",\n  \"definido\": \"defin\",\n  \"definidos\": \"defin\",\n  \"definiendo\": \"defin\",\n  \"definió\": \"defin\",\n  \"definir\": \"defin\",\n  \"definirá\": \"defin\",\n  \"definirán\": \"defin\",\n  \"definiría\": \"defin\",\n  \"definirse\": \"defin\",\n  \"definitiva\": \"definit\",\n  \"definitivamente\": \"definit\",\n  \"definitivas\": \"definit\",\n  \"definitivo\": \"definit\",\n  \"definitivos\": \"definit\",\n  \"deforma\": \"deform\",\n  \"deformaciones\": \"deform\",\n  \"defraudador\": \"defraud\",\n  \"defraudadores\": \"defraud\",\n  \"defraudados\": \"defraud\",\n  \"defraudando\": \"defraud\",\n  \"defraudar\": \"defraud\",\n  \"defraudaré\": \"defraud\",\n  \"defraudarlos\": \"defraud\",\n  \"degollado\": \"degoll\",\n  \"degradación\": \"degrad\",\n  \"degradado\": \"degrad\",\n  \"degradando\": \"degrad\",\n  \"degüello\": \"degüell\",\n  \"dehesa\": \"dehes\",\n  \"deidad\": \"deid\",\n  \"deidades\": \"deidad\",\n  \"deificaron\": \"deific\",\n  \"déis\": \"deis\",\n  \"deja\": \"dej\",\n  \"dejaba\": \"dej\",\n  \"dejaban\": \"dej\",\n  \"dejada\": \"dej\",\n  \"dejadas\": \"dej\",\n  \"dejado\": \"dej\",\n  \"dejados\": \"dej\",\n  \"déjame\": \"dejam\",\n  \"dejamos\": \"dej\",\n  \"dejan\": \"dej\",\n  \"dejando\": \"dej\",\n  \"dejándolas\": \"dej\",\n  \"dejar\": \"dej\",\n  \"dejara\": \"dej\",\n  \"dejará\": \"dej\",\n  \"dejaran\": \"dej\",\n  \"dejarán\": \"dej\",\n  \"dejaría\": \"dej\",\n  \"dejarla\": \"dej\",\n  \"dejarlo\": \"dej\",\n  \"dejarlos\": \"dej\",\n  \"dejarme\": \"dej\",\n  \"dejaron\": \"dej\",\n  \"dejarse\": \"dej\",\n  \"deje\": \"dej\",\n  \"déjeme\": \"dejem\",\n  \"dejemos\": \"dej\",\n  \"dejen\": \"dej\",\n  \"dejó\": \"dej\",\n  \"del\": \"del\",\n  \"delano\": \"delan\",\n  \"delante\": \"delant\",\n  \"delantera\": \"delanter\",\n  \"delanteras\": \"delanter\",\n  \"delantero\": \"delanter\",\n  \"delanteros\": \"delanter\",\n  \"delatan\": \"delat\",\n  \"delató\": \"delat\",\n  \"delaware\": \"delawar\",\n  \"dele\": \"del\",\n  \"déle\": \"del\",\n  \"delega\": \"deleg\",\n  \"delegación\": \"deleg\",\n  \"delegaciones\": \"deleg\",\n  \"delegada\": \"deleg\",\n  \"delegado\": \"deleg\",\n  \"delegados\": \"deleg\",\n  \"deleitan\": \"deleit\",\n  \"deleitar\": \"deleit\",\n  \"deleite\": \"deleit\",\n  \"delfines\": \"delfin\",\n  \"delgada\": \"delg\",\n  \"delgado\": \"delg\",\n  \"delgados\": \"delg\",\n  \"delia\": \"deli\",\n  \"deliberaciones\": \"deliber\",\n  \"deliberada\": \"deliber\",\n  \"deliberadamente\": \"deliber\",\n  \"deliberado\": \"deliber\",\n  \"delicada\": \"delic\",\n  \"delicadas\": \"delic\",\n  \"delicado\": \"delic\",\n  \"delicias\": \"delici\",\n  \"delictivos\": \"delict\",\n  \"delimitada\": \"delimit\",\n  \"delimitar\": \"delimit\",\n  \"delimitó\": \"delimit\",\n  \"delincuencia\": \"delincuent\",\n  \"delincuente\": \"delincuent\",\n  \"delincuentes\": \"delincuent\",\n  \"delinea\": \"deline\",\n  \"delinquen\": \"delinqu\",\n  \"delinquir\": \"delinqu\",\n  \"deliquio\": \"deliqui\",\n  \"delirante\": \"delir\",\n  \"delirio\": \"deliri\",\n  \"delito\": \"delit\",\n  \"delitos\": \"delit\",\n  \"deliverpool\": \"deliverpool\",\n  \"dell\": \"dell\",\n  \"delon\": \"delon\",\n  \"delors\": \"delors\",\n  \"delsur\": \"delsur\",\n  \"delta\": \"delt\",\n  \"demagogia\": \"demagogi\",\n  \"demagógicamente\": \"demagog\",\n  \"demagógico\": \"demagog\",\n  \"demagógicos\": \"demagog\",\n  \"demanda\": \"demand\",\n  \"demandaba\": \"demand\",\n  \"demandado\": \"demand\",\n  \"demandan\": \"demand\",\n  \"demandando\": \"demand\",\n  \"demandante\": \"demand\",\n  \"demandantes\": \"demand\",\n  \"demandar\": \"demand\",\n  \"demandará\": \"demand\",\n  \"demandaron\": \"demand\",\n  \"demandas\": \"demand\",\n  \"demandé\": \"demand\",\n  \"demandó\": \"demand\",\n  \"demarcación\": \"demarc\",\n  \"demás\": \"demas\",\n  \"demasía\": \"demas\",\n  \"demasiada\": \"demasi\",\n  \"demasiadas\": \"demasi\",\n  \"demasiado\": \"demasi\",\n  \"demasiados\": \"demasi\",\n  \"déme\": \"dem\",\n  \"demencia\": \"demenci\",\n  \"demencial\": \"demencial\",\n  \"deming\": \"deming\",\n  \"democracia\": \"democraci\",\n  \"democracias\": \"democraci\",\n  \"demócrata\": \"democrat\",\n  \"demócratas\": \"democrat\",\n  \"democrática\": \"democrat\",\n  \"democráticamente\": \"democrat\",\n  \"democráticas\": \"democrat\",\n  \"democrático\": \"democrat\",\n  \"democráticos\": \"democrat\",\n  \"democratización\": \"democratiz\",\n  \"democratizador\": \"democratiz\",\n  \"democratizante\": \"democratiz\",\n  \"democratizar\": \"democratiz\",\n  \"democratizarla\": \"democratiz\",\n  \"democristiano\": \"democristian\",\n  \"demográfica\": \"demograf\",\n  \"demográficas\": \"demograf\",\n  \"demoníaca\": \"demoniac\",\n  \"demonio\": \"demoni\",\n  \"demonios\": \"demoni\",\n  \"demora\": \"demor\",\n  \"demorados\": \"demor\",\n  \"demorar\": \"demor\",\n  \"demostración\": \"demostr\",\n  \"demostraciones\": \"demostr\",\n  \"demostrado\": \"demostr\",\n  \"demostrando\": \"demostr\",\n  \"demostrar\": \"demostr\",\n  \"demostrará\": \"demostr\",\n  \"demostrarle\": \"demostr\",\n  \"demostrarnos\": \"demostr\",\n  \"demostraron\": \"demostr\",\n  \"demostremos\": \"demostr\",\n  \"demostró\": \"demostr\",\n  \"demuestra\": \"demuestr\",\n  \"demuestran\": \"demuestr\",\n  \"demuestre\": \"demuestr\",\n  \"demuestren\": \"demuestr\",\n  \"den\": \"den\",\n  \"denny\": \"denny\",\n  \"denomina\": \"denomin\",\n  \"denominada\": \"denomin\",\n  \"denominadas\": \"denomin\",\n  \"denominado\": \"denomin\",\n  \"denominados\": \"denomin\",\n  \"denostada\": \"denost\",\n  \"denotan\": \"denot\",\n  \"denotar\": \"denot\",\n  \"denotaron\": \"denot\",\n  \"denotó\": \"denot\",\n  \"densa\": \"dens\",\n  \"dense\": \"dens\",\n  \"densidad\": \"densid\",\n  \"densos\": \"dens\",\n  \"dental\": \"dental\",\n  \"dentales\": \"dental\",\n  \"dentelladas\": \"dentell\",\n  \"dentista\": \"dentist\",\n  \"dentro\": \"dentr\",\n  \"denuncia\": \"denunci\",\n  \"denunciada\": \"denunci\",\n  \"denunciado\": \"denunci\",\n  \"denunciados\": \"denunci\",\n  \"denuncian\": \"denunci\",\n  \"denunciante\": \"denunci\",\n  \"denunciantes\": \"denunci\",\n  \"denunciar\": \"denunci\",\n  \"denunciará\": \"denunci\",\n  \"denunciarán\": \"denunci\",\n  \"denunciaron\": \"denunci\",\n  \"denuncias\": \"denunci\",\n  \"denuncie\": \"denunci\",\n  \"denuncié\": \"denunci\",\n  \"denúncielo\": \"denunciel\",\n  \"denunció\": \"denunc\",\n  \"denzel\": \"denzel\",\n  \"deparado\": \"depar\",\n  \"deparará\": \"depar\",\n  \"departamentales\": \"departamental\",\n  \"departamento\": \"departament\",\n  \"departamentos\": \"departament\",\n  \"departió\": \"depart\",\n  \"depende\": \"depend\",\n  \"dependen\": \"depend\",\n  \"dependencia\": \"dependent\",\n  \"dependencias\": \"dependent\",\n  \"depender\": \"depend\",\n  \"dependerá\": \"depend\",\n  \"dependes\": \"depend\",\n  \"dependía\": \"depend\",\n  \"dependiendo\": \"depend\",\n  \"dependiente\": \"dependient\",\n  \"dependientes\": \"dependient\",\n  \"deplazamiento\": \"deplaz\",\n  \"deportaciones\": \"deport\",\n  \"deportado\": \"deport\",\n  \"deporte\": \"deport\",\n  \"deportes\": \"deport\",\n  \"deportista\": \"deport\",\n  \"deportistas\": \"deport\",\n  \"deportiva\": \"deport\",\n  \"deportivas\": \"deport\",\n  \"deportivo\": \"deport\",\n  \"deportivos\": \"deport\",\n  \"deposita\": \"deposit\",\n  \"depositada\": \"deposit\",\n  \"depositado\": \"deposit\",\n  \"depositados\": \"deposit\",\n  \"depositan\": \"deposit\",\n  \"depositantes\": \"deposit\",\n  \"depositar\": \"deposit\",\n  \"depositario\": \"depositari\",\n  \"depositarse\": \"deposit\",\n  \"deposite\": \"deposit\",\n  \"deposítele\": \"depositel\",\n  \"depósito\": \"deposit\",\n  \"depósitos\": \"deposit\",\n  \"depredadora\": \"depred\",\n  \"depredadores\": \"depred\",\n  \"depresión\": \"depresion\",\n  \"depresiones\": \"depresion\",\n  \"deprimente\": \"depriment\",\n  \"deprimido\": \"deprim\",\n  \"deprimidos\": \"deprim\",\n  \"depuracion\": \"depuracion\",\n  \"depuración\": \"depur\",\n  \"depuradísima\": \"depuradisim\",\n  \"depurado\": \"depur\",\n  \"depurar\": \"depur\",\n  \"der\": \"der\",\n  \"derecha\": \"derech\",\n  \"derechas\": \"derech\",\n  \"derechazo\": \"derechaz\",\n  \"derechazos\": \"derechaz\",\n  \"derecho\": \"derech\",\n  \"derechohabientes\": \"derechohabient\",\n  \"derechos\": \"derech\",\n  \"deregios\": \"deregi\",\n  \"derek\": \"derek\",\n  \"deri\": \"deri\",\n  \"deriva\": \"deriv\",\n  \"derivación\": \"deriv\",\n  \"derivadas\": \"deriv\",\n  \"derivado\": \"deriv\",\n  \"derivados\": \"deriv\",\n  \"derivan\": \"deriv\",\n  \"derivar\": \"deriv\",\n  \"derivará\": \"deriv\",\n  \"derivaron\": \"deriv\",\n  \"derivó\": \"deriv\",\n  \"derma\": \"derm\",\n  \"dermatitis\": \"dermatitis\",\n  \"dermatología\": \"dermatolog\",\n  \"dermatológica\": \"dermatolog\",\n  \"derrama\": \"derram\",\n  \"derramado\": \"derram\",\n  \"derramamiento\": \"derram\",\n  \"derraman\": \"derram\",\n  \"derramar\": \"derram\",\n  \"derrame\": \"derram\",\n  \"derrames\": \"derram\",\n  \"derrapante\": \"derrap\",\n  \"derrapar\": \"derrap\",\n  \"derrape\": \"derrap\",\n  \"derredor\": \"derredor\",\n  \"derretirse\": \"derret\",\n  \"derriba\": \"derrib\",\n  \"derribado\": \"derrib\",\n  \"derribar\": \"derrib\",\n  \"derribó\": \"derrib\",\n  \"derrochando\": \"derroch\",\n  \"derroche\": \"derroch\",\n  \"derrota\": \"derrot\",\n  \"derrotado\": \"derrot\",\n  \"derrotados\": \"derrot\",\n  \"derrotando\": \"derrot\",\n  \"derrotar\": \"derrot\",\n  \"derrotarlo\": \"derrot\",\n  \"derrotaron\": \"derrot\",\n  \"derrotas\": \"derrot\",\n  \"derrotero\": \"derroter\",\n  \"derrotó\": \"derrot\",\n  \"derrumban\": \"derrumb\",\n  \"derrumbe\": \"derrumb\",\n  \"derrumbes\": \"derrumb\",\n  \"desaceleración\": \"desaceler\",\n  \"desaciertos\": \"desaciert\",\n  \"desacredita\": \"desacredit\",\n  \"desacreditados\": \"desacredit\",\n  \"desactivar\": \"desactiv\",\n  \"desactivaron\": \"desactiv\",\n  \"desacuerdo\": \"desacuerd\",\n  \"desacuerdos\": \"desacuerd\",\n  \"desafiar\": \"desafi\",\n  \"desafíe\": \"desafi\",\n  \"desafinada\": \"desafin\",\n  \"desafío\": \"desafi\",\n  \"desafió\": \"desaf\",\n  \"desafíos\": \"desafi\",\n  \"desaforados\": \"desafor\",\n  \"desafortunadamente\": \"desafortun\",\n  \"desafortunado\": \"desafortun\",\n  \"desafortunados\": \"desafortun\",\n  \"desagradable\": \"desagrad\",\n  \"desagradables\": \"desagrad\",\n  \"desagüe\": \"desagü\",\n  \"desahogar\": \"desahog\",\n  \"desahogo\": \"desahog\",\n  \"desahogos\": \"desahog\",\n  \"desahucio\": \"desahuci\",\n  \"desairado\": \"desair\",\n  \"desaire\": \"desair\",\n  \"desalentado\": \"desalent\",\n  \"desalentadores\": \"desalent\",\n  \"desalentarán\": \"desalent\",\n  \"desalentó\": \"desalent\",\n  \"desaliento\": \"desalient\",\n  \"desalientos\": \"desalient\",\n  \"desalojados\": \"desaloj\",\n  \"desalojar\": \"desaloj\",\n  \"desalojará\": \"desaloj\",\n  \"desalojaran\": \"desaloj\",\n  \"desalojaron\": \"desaloj\",\n  \"desalojo\": \"desaloj\",\n  \"desalojó\": \"desaloj\",\n  \"desalojos\": \"desaloj\",\n  \"desamor\": \"desamor\",\n  \"desamparados\": \"desampar\",\n  \"desangraba\": \"desangr\",\n  \"desangrante\": \"desangr\",\n  \"desanima\": \"desanim\",\n  \"desanimada\": \"desanim\",\n  \"desánimo\": \"desanim\",\n  \"desaparecen\": \"desaparec\",\n  \"desaparecer\": \"desaparec\",\n  \"desaparecerá\": \"desaparec\",\n  \"desaparecerán\": \"desaparec\",\n  \"desaparecidas\": \"desaparec\",\n  \"desaparecido\": \"desaparec\",\n  \"desaparecidos\": \"desaparec\",\n  \"desaparecieron\": \"desaparec\",\n  \"desapareció\": \"desaparec\",\n  \"desaparezca\": \"desaparezc\",\n  \"desaparezcan\": \"desaparezc\",\n  \"desaparición\": \"desaparicion\",\n  \"desapariciones\": \"desaparicion\",\n  \"desapercibida\": \"desapercib\",\n  \"desaprobación\": \"desaprob\",\n  \"desaprovechando\": \"desaprovech\",\n  \"desaprovechar\": \"desaprovech\",\n  \"desaprovechó\": \"desaprovech\",\n  \"desaprueba\": \"desaprueb\",\n  \"desarme\": \"des\",\n  \"desarrolla\": \"desarroll\",\n  \"desarrollada\": \"desarroll\",\n  \"desarrolladas\": \"desarroll\",\n  \"desarrollado\": \"desarroll\",\n  \"desarrolladores\": \"desarroll\",\n  \"desarrollados\": \"desarroll\",\n  \"desarrollamos\": \"desarroll\",\n  \"desarrollan\": \"desarroll\",\n  \"desarrollando\": \"desarroll\",\n  \"desarrollar\": \"desarroll\",\n  \"desarrollará\": \"desarroll\",\n  \"desarrollaría\": \"desarroll\",\n  \"desarrollarnos\": \"desarroll\",\n  \"desarrollaron\": \"desarroll\",\n  \"desarrollarse\": \"desarroll\",\n  \"desarrolle\": \"desarroll\",\n  \"desarrollen\": \"desarroll\",\n  \"desarrollo\": \"desarroll\",\n  \"desarrolló\": \"desarroll\",\n  \"desastres\": \"desastr\",\n  \"desata\": \"desat\",\n  \"desatado\": \"desat\",\n  \"desatan\": \"desat\",\n  \"desatar\": \"desat\",\n  \"desatención\": \"desatencion\",\n  \"desatinos\": \"desatin\",\n  \"desató\": \"desat\",\n  \"desayunar\": \"desayun\",\n  \"desayuno\": \"desayun\",\n  \"desayunos\": \"desayun\",\n  \"desazolvar\": \"desazolv\",\n  \"desbalancean\": \"desbalanc\",\n  \"desbancarlo\": \"desbanc\",\n  \"desbaratado\": \"desbarat\",\n  \"desbordado\": \"desbord\",\n  \"desbordados\": \"desbord\",\n  \"desbordamiento\": \"desbord\",\n  \"desbordando\": \"desbord\",\n  \"desbordará\": \"desbord\",\n  \"desbordes\": \"desbord\",\n  \"desbordó\": \"desbord\",\n  \"desburocratizar\": \"desburocratiz\",\n  \"descabellada\": \"descabell\",\n  \"descabelladas\": \"descabell\",\n  \"descabello\": \"descabell\",\n  \"descalabro\": \"descalabr\",\n  \"descalificada\": \"descalific\",\n  \"descalificado\": \"descalific\",\n  \"descalzos\": \"descalz\",\n  \"descansaban\": \"descans\",\n  \"descansan\": \"descans\",\n  \"descansando\": \"descans\",\n  \"descansar\": \"descans\",\n  \"descansarán\": \"descans\",\n  \"descanso\": \"descans\",\n  \"descansó\": \"descans\",\n  \"descansos\": \"descans\",\n  \"descapitaliza\": \"descapitaliz\",\n  \"descarga\": \"descarg\",\n  \"descargan\": \"descarg\",\n  \"descargar\": \"descarg\",\n  \"descargas\": \"descarg\",\n  \"descargo\": \"descarg\",\n  \"descargue\": \"descarg\",\n  \"descarnado\": \"descarn\",\n  \"descarrilamiento\": \"descarril\",\n  \"descarriló\": \"descarril\",\n  \"descarta\": \"descart\",\n  \"descartaba\": \"descart\",\n  \"descartado\": \"descart\",\n  \"descartan\": \"descart\",\n  \"descartando\": \"descart\",\n  \"descartaron\": \"descart\",\n  \"descartó\": \"descart\",\n  \"descastados\": \"descast\",\n  \"descendencia\": \"descendent\",\n  \"descender\": \"descend\",\n  \"descenderá\": \"descend\",\n  \"descendientes\": \"descendient\",\n  \"descendió\": \"descend\",\n  \"descenso\": \"descens\",\n  \"descensos\": \"descens\",\n  \"descentralización\": \"descentraliz\",\n  \"descentralizarse\": \"descentraliz\",\n  \"desciende\": \"desciend\",\n  \"descienden\": \"desciend\",\n  \"descomponía\": \"descompon\",\n  \"descomposición\": \"descomposicion\",\n  \"descomposturas\": \"descompostur\",\n  \"descompuesto\": \"descompuest\",\n  \"descomunal\": \"descomunal\",\n  \"desconcertado\": \"desconcert\",\n  \"desconcertados\": \"desconcert\",\n  \"desconcertante\": \"desconcert\",\n  \"desconcierta\": \"desconciert\",\n  \"desconcierto\": \"desconciert\",\n  \"desconfianza\": \"desconfi\",\n  \"desconfiara\": \"desconfi\",\n  \"descongelación\": \"descongel\",\n  \"descongelar\": \"descongel\",\n  \"descongestionar\": \"descongestion\",\n  \"desconoce\": \"desconoc\",\n  \"desconocen\": \"desconoc\",\n  \"desconocer\": \"desconoc\",\n  \"desconocerlos\": \"desconoc\",\n  \"desconocía\": \"desconoc\",\n  \"desconocida\": \"desconoc\",\n  \"desconocidas\": \"desconoc\",\n  \"desconocido\": \"desconoc\",\n  \"desconocidos\": \"desconoc\",\n  \"desconocieron\": \"desconoc\",\n  \"desconocimiento\": \"desconoc\",\n  \"desconoció\": \"desconoc\",\n  \"desconozco\": \"desconozc\",\n  \"descontando\": \"descont\",\n  \"descontar\": \"descont\",\n  \"descontentas\": \"descontent\",\n  \"descontento\": \"descontent\",\n  \"descontentos\": \"descontent\",\n  \"descontrol\": \"descontrol\",\n  \"descrédito\": \"descredit\",\n  \"descreído\": \"descreid\",\n  \"describe\": \"describ\",\n  \"describen\": \"describ\",\n  \"describió\": \"describ\",\n  \"describir\": \"describ\",\n  \"descripción\": \"descripcion\",\n  \"descriptores\": \"descriptor\",\n  \"descrita\": \"descrit\",\n  \"descrito\": \"descrit\",\n  \"descritos\": \"descrit\",\n  \"descubierta\": \"descubiert\",\n  \"descubiertas\": \"descubiert\",\n  \"descubierto\": \"descubiert\",\n  \"descubiertos\": \"descubiert\",\n  \"descubran\": \"descubr\",\n  \"descubre\": \"descubr\",\n  \"descubridor\": \"descubridor\",\n  \"descubriendo\": \"descubr\",\n  \"descubrieron\": \"descubr\",\n  \"descubrimiento\": \"descubr\",\n  \"descubrimientos\": \"descubr\",\n  \"descubrió\": \"descubr\",\n  \"descubrir\": \"descubr\",\n  \"descuento\": \"descuent\",\n  \"descuentos\": \"descuent\",\n  \"descuidado\": \"descuid\",\n  \"descuidan\": \"descuid\",\n  \"descuide\": \"descuid\",\n  \"descuido\": \"descu\",\n  \"descuidos\": \"descu\",\n  \"desde\": \"desd\",\n  \"desdecir\": \"desdec\",\n  \"desdeñar\": \"desdeñ\",\n  \"desdeño\": \"desdeñ\",\n  \"desdice\": \"desdic\",\n  \"desdichada\": \"desdich\",\n  \"desdichado\": \"desdich\",\n  \"dése\": \"des\",\n  \"desea\": \"dese\",\n  \"deseaban\": \"des\",\n  \"deseable\": \"deseabl\",\n  \"deseada\": \"des\",\n  \"deseamos\": \"des\",\n  \"desean\": \"des\",\n  \"deseando\": \"des\",\n  \"deseándolo\": \"des\",\n  \"desearle\": \"des\",\n  \"desearon\": \"des\",\n  \"deseas\": \"des\",\n  \"desecha\": \"desech\",\n  \"desechaban\": \"desech\",\n  \"desechar\": \"desech\",\n  \"desecharon\": \"desech\",\n  \"desecho\": \"desech\",\n  \"desechó\": \"desech\",\n  \"desechos\": \"desech\",\n  \"desee\": \"dese\",\n  \"deseen\": \"des\",\n  \"desembarcar\": \"desembarc\",\n  \"desembarque\": \"desembarqu\",\n  \"desembocar\": \"desemboc\",\n  \"desempaña\": \"desempañ\",\n  \"desempate\": \"desempat\",\n  \"desempeña\": \"desempeñ\",\n  \"desempeñado\": \"desempeñ\",\n  \"desempeñan\": \"desempeñ\",\n  \"desempeñando\": \"desempeñ\",\n  \"desempeñar\": \"desempeñ\",\n  \"desempeñarse\": \"desempeñ\",\n  \"desempeño\": \"desempeñ\",\n  \"desempleado\": \"desempl\",\n  \"desempleados\": \"desempl\",\n  \"desempleo\": \"desemple\",\n  \"desencajado\": \"desencaj\",\n  \"desencantados\": \"desencant\",\n  \"desencanto\": \"desencant\",\n  \"desenfreno\": \"desenfren\",\n  \"desengaña\": \"desengañ\",\n  \"desenmascaran\": \"desenmasc\",\n  \"desentendido\": \"desentend\",\n  \"desenterrados\": \"desenterr\",\n  \"desentonado\": \"desenton\",\n  \"desentonados\": \"desenton\",\n  \"desenvolverse\": \"desenvolv\",\n  \"desenvolvimiento\": \"desenvolv\",\n  \"desenvuelve\": \"desenvuelv\",\n  \"deseo\": \"dese\",\n  \"deseos\": \"dese\",\n  \"desequilibrada\": \"desequilibr\",\n  \"desequilibrado\": \"desequilibr\",\n  \"desequilibrio\": \"desequilibri\",\n  \"desequilibrios\": \"desequilibri\",\n  \"deserciones\": \"desercion\",\n  \"desertar\": \"desert\",\n  \"desesperación\": \"desesper\",\n  \"desesperada\": \"desesper\",\n  \"desesperadamente\": \"desesper\",\n  \"desesperados\": \"desesper\",\n  \"desesperan\": \"desesper\",\n  \"desestabilizar\": \"desestabiliz\",\n  \"desestímulos\": \"desestimul\",\n  \"desfasan\": \"desfas\",\n  \"desfavorable\": \"desfavor\",\n  \"desfiguró\": \"desfigur\",\n  \"desfiguros\": \"desfigur\",\n  \"desfilan\": \"desfil\",\n  \"desfile\": \"desfil\",\n  \"desfiles\": \"desfil\",\n  \"desfondaría\": \"desfond\",\n  \"desgañitan\": \"desgañit\",\n  \"desgarra\": \"desgarr\",\n  \"desgarradoramente\": \"desgarrador\",\n  \"desgarradoras\": \"desgarr\",\n  \"desgarre\": \"desgarr\",\n  \"desgarros\": \"desgarr\",\n  \"desgastante\": \"desgast\",\n  \"desgastar\": \"desgast\",\n  \"desgaste\": \"desg\",\n  \"desglosado\": \"desgl\",\n  \"desglosados\": \"desgl\",\n  \"desgracia\": \"desgraci\",\n  \"desgraciadamente\": \"desgraci\",\n  \"desgracias\": \"desgraci\",\n  \"deshacer\": \"deshac\",\n  \"deshacerse\": \"deshac\",\n  \"desharía\": \"desh\",\n  \"deshilachar\": \"deshilach\",\n  \"deshilvanando\": \"deshilvan\",\n  \"deshizo\": \"deshiz\",\n  \"deshonestidad\": \"deshonest\",\n  \"deshonesto\": \"deshonest\",\n  \"deshumanizó\": \"deshumaniz\",\n  \"desierto\": \"desiert\",\n  \"desiertos\": \"desiert\",\n  \"designación\": \"design\",\n  \"designaciones\": \"design\",\n  \"designada\": \"design\",\n  \"designadas\": \"design\",\n  \"designado\": \"design\",\n  \"designador\": \"design\",\n  \"designados\": \"design\",\n  \"designar\": \"design\",\n  \"designe\": \"design\",\n  \"designio\": \"designi\",\n  \"designó\": \"design\",\n  \"desigualdad\": \"desiguald\",\n  \"desigualdades\": \"desigualdad\",\n  \"desincorporación\": \"desincorpor\",\n  \"desincorporó\": \"desincorpor\",\n  \"desindigenización\": \"desindigeniz\",\n  \"desinformación\": \"desinform\",\n  \"desinformados\": \"desinform\",\n  \"desintegración\": \"desintegr\",\n  \"desintegrar\": \"desintegr\",\n  \"desintegrará\": \"desintegr\",\n  \"desintegrarse\": \"desintegr\",\n  \"desinterés\": \"desinteres\",\n  \"desinterviniendo\": \"desintervin\",\n  \"desiste\": \"des\",\n  \"desistieran\": \"desist\",\n  \"desistieron\": \"desist\",\n  \"desistió\": \"desist\",\n  \"desistir\": \"desist\",\n  \"desistirse\": \"desist\",\n  \"deslaves\": \"deslav\",\n  \"desleal\": \"desleal\",\n  \"desleales\": \"desleal\",\n  \"deslices\": \"deslic\",\n  \"desligarme\": \"deslig\",\n  \"deslindar\": \"deslind\",\n  \"deslindarse\": \"deslind\",\n  \"deslinden\": \"deslind\",\n  \"deslizando\": \"desliz\",\n  \"deslizarse\": \"desliz\",\n  \"deslizó\": \"desliz\",\n  \"deslucido\": \"desluc\",\n  \"deslumbra\": \"deslumbr\",\n  \"desmantelamiento\": \"desmantel\",\n  \"desmarque\": \"desmarqu\",\n  \"desmembrada\": \"desmembr\",\n  \"desmembró\": \"desmembr\",\n  \"desmerece\": \"desmerec\",\n  \"desmintió\": \"desmint\",\n  \"desmitificado\": \"desmitific\",\n  \"desmontadas\": \"desmont\",\n  \"desmontarlo\": \"desmont\",\n  \"desmoralizar\": \"desmoraliz\",\n  \"desmoralizarnos\": \"desmoraliz\",\n  \"desmoronando\": \"desmoron\",\n  \"desmotivada\": \"desmotiv\",\n  \"desnaquización\": \"desnaquiz\",\n  \"desnivel\": \"desnivel\",\n  \"desnudarla\": \"desnud\",\n  \"desnudaron\": \"desnud\",\n  \"desnudos\": \"desnud\",\n  \"desnutrición\": \"desnutricion\",\n  \"desobedece\": \"desobedec\",\n  \"desocupación\": \"desocup\",\n  \"desocupar\": \"desocup\",\n  \"desolación\": \"desol\",\n  \"desolador\": \"desol\",\n  \"desorden\": \"desord\",\n  \"desordenado\": \"desorden\",\n  \"desórdenes\": \"desorden\",\n  \"desorganizados\": \"desorganiz\",\n  \"desorienta\": \"desorient\",\n  \"desorientación\": \"desorient\",\n  \"desorientada\": \"desorient\",\n  \"desorientados\": \"desorient\",\n  \"despachar\": \"despach\",\n  \"despacho\": \"despach\",\n  \"despacio\": \"despaci\",\n  \"despacito\": \"despacit\",\n  \"desparramaron\": \"desparram\",\n  \"despavorido\": \"despavor\",\n  \"despedazadas\": \"despedaz\",\n  \"despedía\": \"desped\",\n  \"despedida\": \"desped\",\n  \"despedidas\": \"desped\",\n  \"despedido\": \"desped\",\n  \"despedidos\": \"desped\",\n  \"despedir\": \"desped\",\n  \"despedirlas\": \"desped\",\n  \"despedirlos\": \"desped\",\n  \"despedirse\": \"desped\",\n  \"despegara\": \"despeg\",\n  \"despegue\": \"despeg\",\n  \"despeinada\": \"despein\",\n  \"despeinarse\": \"despein\",\n  \"despejando\": \"despej\",\n  \"despejar\": \"despej\",\n  \"despensa\": \"despens\",\n  \"despensas\": \"despens\",\n  \"desperdiciar\": \"desperdici\",\n  \"desperdicio\": \"desperdici\",\n  \"despertado\": \"despert\",\n  \"despertando\": \"despert\",\n  \"despertar\": \"despert\",\n  \"despertaron\": \"despert\",\n  \"despertó\": \"despert\",\n  \"despidan\": \"despid\",\n  \"despide\": \"despid\",\n  \"despidiendo\": \"despid\",\n  \"despidió\": \"despid\",\n  \"despido\": \"desp\",\n  \"despidos\": \"desp\",\n  \"despierta\": \"despiert\",\n  \"despiertan\": \"despiert\",\n  \"despierte\": \"despiert\",\n  \"desplace\": \"desplac\",\n  \"desplazaba\": \"desplaz\",\n  \"desplazado\": \"desplaz\",\n  \"desplazados\": \"desplaz\",\n  \"desplazamiento\": \"desplaz\",\n  \"desplazamientos\": \"desplaz\",\n  \"desplazan\": \"desplaz\",\n  \"desplazando\": \"desplaz\",\n  \"desplazándolo\": \"desplaz\",\n  \"desplazar\": \"desplaz\",\n  \"desplazarla\": \"desplaz\",\n  \"desplegado\": \"despleg\",\n  \"desplegará\": \"despleg\",\n  \"desplegarán\": \"despleg\",\n  \"despliegue\": \"desplieg\",\n  \"desplieguen\": \"desplieg\",\n  \"despoblado\": \"despobl\",\n  \"despojaba\": \"despoj\",\n  \"despojado\": \"despoj\",\n  \"despojando\": \"despoj\",\n  \"despojar\": \"despoj\",\n  \"despojarlo\": \"despoj\",\n  \"despojaron\": \"despoj\",\n  \"despojo\": \"despoj\",\n  \"despojó\": \"despoj\",\n  \"despotismo\": \"despot\",\n  \"despreciable\": \"despreci\",\n  \"despreciar\": \"despreci\",\n  \"despreciarse\": \"despreci\",\n  \"desprende\": \"desprend\",\n  \"desprenderse\": \"desprend\",\n  \"desprendía\": \"desprend\",\n  \"desprendió\": \"desprend\",\n  \"desprestigiando\": \"desprestigi\",\n  \"desprestigio\": \"desprestigi\",\n  \"desproporcionadas\": \"desproporcion\",\n  \"desproporcionado\": \"desproporcion\",\n  \"despropósito\": \"desproposit\",\n  \"desprotegerán\": \"desproteg\",\n  \"desprovisto\": \"desprovist\",\n  \"después\": \"despues\",\n  \"desquita\": \"desquit\",\n  \"desregulación\": \"desregul\",\n  \"desregulado\": \"desregul\",\n  \"desregulando\": \"desregul\",\n  \"desrregulación\": \"desrregul\",\n  \"destaca\": \"destac\",\n  \"destacaba\": \"destac\",\n  \"destacada\": \"destac\",\n  \"destacadas\": \"destac\",\n  \"destacado\": \"destac\",\n  \"destacados\": \"destac\",\n  \"destacamentados\": \"destacament\",\n  \"destacan\": \"destac\",\n  \"destacando\": \"destac\",\n  \"destacar\": \"destac\",\n  \"destacaron\": \"destac\",\n  \"destacó\": \"destac\",\n  \"destanteados\": \"destant\",\n  \"destapan\": \"destap\",\n  \"destaparon\": \"destap\",\n  \"destape\": \"destap\",\n  \"destapes\": \"destap\",\n  \"destaque\": \"destaqu\",\n  \"destemplada\": \"destempl\",\n  \"destemplado\": \"destempl\",\n  \"desterrarlas\": \"desterr\",\n  \"destinaban\": \"destin\",\n  \"destinada\": \"destin\",\n  \"destinadas\": \"destin\",\n  \"destinado\": \"destin\",\n  \"destinados\": \"destin\",\n  \"destinan\": \"destin\",\n  \"destinar\": \"destin\",\n  \"destinarán\": \"destin\",\n  \"destinarían\": \"destin\",\n  \"destinarlos\": \"destin\",\n  \"destinaron\": \"destin\",\n  \"destinatario\": \"destinatari\",\n  \"destinen\": \"destin\",\n  \"destino\": \"destin\",\n  \"destinó\": \"destin\",\n  \"destinos\": \"destin\",\n  \"destitución\": \"destitu\",\n  \"destreza\": \"destrez\",\n  \"destrozado\": \"destroz\",\n  \"destrozados\": \"destroz\",\n  \"destrucción\": \"destruccion\",\n  \"destructivo\": \"destruct\",\n  \"destruida\": \"destru\",\n  \"destruir\": \"destru\",\n  \"destruirá\": \"destru\",\n  \"destruirlo\": \"destru\",\n  \"destruye\": \"destru\",\n  \"destruyeron\": \"destru\",\n  \"destruyó\": \"destru\",\n  \"desulfuración\": \"desulfur\",\n  \"desvanecen\": \"desvanec\",\n  \"desvanecieran\": \"desvanec\",\n  \"desveladas\": \"desvel\",\n  \"desvelos\": \"desvel\",\n  \"desventaja\": \"desventaj\",\n  \"desventajosa\": \"desventaj\",\n  \"desventajosas\": \"desventaj\",\n  \"desviaciones\": \"desviacion\",\n  \"desviadas\": \"desvi\",\n  \"desviado\": \"desvi\",\n  \"desviándose\": \"desvi\",\n  \"desviar\": \"desvi\",\n  \"desviaremos\": \"desvi\",\n  \"desviaría\": \"desvi\",\n  \"desviarse\": \"desvi\",\n  \"desvíe\": \"desvi\",\n  \"desvinculaba\": \"desvincul\",\n  \"desvincular\": \"desvincul\",\n  \"desvió\": \"desv\",\n  \"desvirtúa\": \"desvirtu\",\n  \"desvirtuación\": \"desvirtu\",\n  \"desvirtuar\": \"desvirtu\",\n  \"detalla\": \"detall\",\n  \"detalladamente\": \"detall\",\n  \"detalladas\": \"detall\",\n  \"detallado\": \"detall\",\n  \"detalle\": \"detall\",\n  \"detalles\": \"detall\",\n  \"detallista\": \"detall\",\n  \"detallistas\": \"detall\",\n  \"detallitos\": \"detallit\",\n  \"detalló\": \"detall\",\n  \"detecciones\": \"deteccion\",\n  \"detecnología\": \"detecnolog\",\n  \"detecta\": \"detect\",\n  \"detectaba\": \"detect\",\n  \"detectada\": \"detect\",\n  \"detectado\": \"detect\",\n  \"detectados\": \"detect\",\n  \"detectan\": \"detect\",\n  \"detectando\": \"detect\",\n  \"detectar\": \"detect\",\n  \"detectara\": \"detect\",\n  \"detectaron\": \"detect\",\n  \"detectó\": \"detect\",\n  \"detención\": \"detencion\",\n  \"detenciones\": \"detencion\",\n  \"detendrá\": \"detendr\",\n  \"detener\": \"deten\",\n  \"detenerlo\": \"deten\",\n  \"detenerme\": \"deten\",\n  \"detenerse\": \"deten\",\n  \"detengan\": \"deteng\",\n  \"detenida\": \"deten\",\n  \"detenidas\": \"deten\",\n  \"detenido\": \"deten\",\n  \"detenidos\": \"deten\",\n  \"detenta\": \"detent\",\n  \"detentando\": \"detent\",\n  \"detergente\": \"detergent\",\n  \"detergentes\": \"detergent\",\n  \"deterioradas\": \"deterior\",\n  \"deterioran\": \"deterior\",\n  \"deterioro\": \"deterior\",\n  \"determina\": \"determin\",\n  \"determinación\": \"determin\",\n  \"determinaciones\": \"determin\",\n  \"determinada\": \"determin\",\n  \"determinado\": \"determin\",\n  \"determinados\": \"determin\",\n  \"determinan\": \"determin\",\n  \"determinante\": \"determin\",\n  \"determinantemente\": \"determin\",\n  \"determinantes\": \"determin\",\n  \"determinar\": \"determin\",\n  \"determinará\": \"determin\",\n  \"determinaran\": \"determin\",\n  \"determinaron\": \"determin\",\n  \"determinarse\": \"determin\",\n  \"determine\": \"determin\",\n  \"determinó\": \"determin\",\n  \"deterner\": \"detern\",\n  \"detestan\": \"detest\",\n  \"detiene\": \"detien\",\n  \"detienen\": \"detien\",\n  \"detonación\": \"deton\",\n  \"detrás\": \"detras\",\n  \"detuviera\": \"detuv\",\n  \"detuvieran\": \"detuv\",\n  \"detuvieron\": \"detuv\",\n  \"detuvo\": \"detuv\",\n  \"deuda\": \"deud\",\n  \"deudas\": \"deud\",\n  \"deuteronomio\": \"deuteronomi\",\n  \"devaluación\": \"devalu\",\n  \"devaluado\": \"devalu\",\n  \"devalúan\": \"devalu\",\n  \"devanándose\": \"devan\",\n  \"devant\": \"devant\",\n  \"devastada\": \"devast\",\n  \"devastador\": \"devast\",\n  \"develará\": \"devel\",\n  \"development\": \"development\",\n  \"devenido\": \"deven\",\n  \"devenir\": \"deven\",\n  \"devoción\": \"devocion\",\n  \"devociones\": \"devocion\",\n  \"devolución\": \"devolu\",\n  \"devolver\": \"devolv\",\n  \"devolvería\": \"devolv\",\n  \"devolverle\": \"devolv\",\n  \"devolvió\": \"devolv\",\n  \"devuelto\": \"devuelt\",\n  \"devueltos\": \"devuelt\",\n  \"devuelvan\": \"devuelv\",\n  \"devuelve\": \"devuelv\",\n  \"df\": \"df\",\n  \"dgo\": \"dgo\",\n  \"dhl\": \"dhl\",\n  \"di\": \"di\",\n  \"dí\": \"di\",\n  \"dia\": \"dia\",\n  \"día\": \"dia\",\n  \"diabetes\": \"diabet\",\n  \"diablo\": \"diabl\",\n  \"diablos\": \"diabl\",\n  \"diadema\": \"diadem\",\n  \"diagnosticamos\": \"diagnostic\",\n  \"diagnosticar\": \"diagnostic\",\n  \"diagnóstico\": \"diagnost\",\n  \"diagnósticos\": \"diagnost\",\n  \"diagrama\": \"diagram\",\n  \"dialogado\": \"dialog\",\n  \"dialogamos\": \"dialog\",\n  \"dialogar\": \"dialog\",\n  \"dialogaron\": \"dialog\",\n  \"diálogo\": \"dialog\",\n  \"diálogos\": \"dialog\",\n  \"diamante\": \"diamant\",\n  \"diámetro\": \"diametr\",\n  \"diana\": \"dian\",\n  \"diaria\": \"diari\",\n  \"diariamente\": \"diari\",\n  \"diarias\": \"diari\",\n  \"diario\": \"diari\",\n  \"diarios\": \"diari\",\n  \"días\": \"dias\",\n  \"díaz\": \"diaz\",\n  \"dibujando\": \"dibuj\",\n  \"dibujantes\": \"dibuj\",\n  \"dibujo\": \"dibuj\",\n  \"dibujó\": \"dibuj\",\n  \"dibujos\": \"dibuj\",\n  \"dicamex\": \"dicamex\",\n  \"diccionario\": \"diccionari\",\n  \"dice\": \"dic\",\n  \"dicen\": \"dic\",\n  \"dices\": \"dic\",\n  \"dicha\": \"dich\",\n  \"dichas\": \"dich\",\n  \"dicho\": \"dich\",\n  \"dichos\": \"dich\",\n  \"diciembre\": \"diciembr\",\n  \"diciendo\": \"dic\",\n  \"diciéndome\": \"dic\",\n  \"dickens\": \"dickens\",\n  \"dicom\": \"dicom\",\n  \"dicta\": \"dict\",\n  \"dictada\": \"dict\",\n  \"dictadas\": \"dict\",\n  \"dictado\": \"dict\",\n  \"dictador\": \"dictador\",\n  \"dictadura\": \"dictadur\",\n  \"dictaduras\": \"dictadur\",\n  \"dictamen\": \"dictam\",\n  \"dictaminaron\": \"dictamin\",\n  \"dictaminó\": \"dictamin\",\n  \"dictar\": \"dict\",\n  \"dictarnos\": \"dict\",\n  \"dictaron\": \"dict\",\n  \"dictatorial\": \"dictatorial\",\n  \"dictó\": \"dict\",\n  \"didáctico\": \"didact\",\n  \"diego\": \"dieg\",\n  \"dientes\": \"dient\",\n  \"diera\": \"dier\",\n  \"dieran\": \"dier\",\n  \"dieron\": \"dieron\",\n  \"diesel\": \"diesel\",\n  \"diestro\": \"diestr\",\n  \"dieta\": \"diet\",\n  \"diez\": \"diez\",\n  \"díez\": \"diez\",\n  \"diezmado\": \"diezm\",\n  \"dif\": \"dif\",\n  \"difamación\": \"difam\",\n  \"difamador\": \"difam\",\n  \"difame\": \"difam\",\n  \"diferencia\": \"diferent\",\n  \"diferenciado\": \"diferenci\",\n  \"diferencial\": \"diferencial\",\n  \"diferenciales\": \"diferencial\",\n  \"diferenciando\": \"diferenci\",\n  \"diferenciar\": \"diferenci\",\n  \"diferenciarse\": \"diferenci\",\n  \"diferencias\": \"diferent\",\n  \"diferendos\": \"diferend\",\n  \"diferente\": \"diferent\",\n  \"diferentes\": \"diferent\",\n  \"diferida\": \"difer\",\n  \"diferidos\": \"difer\",\n  \"dificil\": \"dificil\",\n  \"difícil\": \"dificil\",\n  \"difíciles\": \"dificil\",\n  \"dificilmente\": \"dificil\",\n  \"difícilmente\": \"dificil\",\n  \"dificultaba\": \"dificult\",\n  \"dificultad\": \"dificult\",\n  \"dificultades\": \"dificultad\",\n  \"dificultado\": \"dificult\",\n  \"dificultan\": \"dificult\",\n  \"dificultar\": \"dificult\",\n  \"dificultó\": \"dificult\",\n  \"difieren\": \"difier\",\n  \"difunda\": \"difund\",\n  \"difunde\": \"difund\",\n  \"difunden\": \"difund\",\n  \"difundida\": \"difund\",\n  \"difundido\": \"difund\",\n  \"difundir\": \"difund\",\n  \"difundirá\": \"difund\",\n  \"difundirlo\": \"difund\",\n  \"difunto\": \"difunt\",\n  \"difuntos\": \"difunt\",\n  \"difusión\": \"difusion\",\n  \"diga\": \"dig\",\n  \"dígale\": \"digal\",\n  \"dígales\": \"digal\",\n  \"dígame\": \"digam\",\n  \"digamos\": \"dig\",\n  \"digan\": \"dig\",\n  \"digerir\": \"diger\",\n  \"digestión\": \"digestion\",\n  \"digestivos\": \"digest\",\n  \"digital\": \"digital\",\n  \"digitales\": \"digital\",\n  \"digitalización\": \"digitaliz\",\n  \"dígito\": \"digit\",\n  \"digna\": \"dign\",\n  \"dignas\": \"dign\",\n  \"dignidad\": \"dignid\",\n  \"dignifica\": \"dignif\",\n  \"dignificar\": \"dignific\",\n  \"dignity\": \"dignity\",\n  \"digno\": \"dign\",\n  \"dignos\": \"dign\",\n  \"dignosticar\": \"dignostic\",\n  \"digo\": \"dig\",\n  \"dihigo\": \"dihig\",\n  \"dihlgo\": \"dihlg\",\n  \"dije\": \"dij\",\n  \"dijera\": \"dijer\",\n  \"dijeran\": \"dijer\",\n  \"dijeron\": \"dijeron\",\n  \"dijes\": \"dij\",\n  \"dijiste\": \"dij\",\n  \"dijo\": \"dij\",\n  \"dilatadas\": \"dilat\",\n  \"dilatar\": \"dilat\",\n  \"dilatorias\": \"dilatori\",\n  \"díle\": \"dil\",\n  \"dilema\": \"dilem\",\n  \"diligencia\": \"diligent\",\n  \"diligencias\": \"diligent\",\n  \"diligente\": \"diligent\",\n  \"dillo\": \"dill\",\n  \"dilucidar\": \"dilucid\",\n  \"diluido\": \"dilu\",\n  \"diluir\": \"dilu\",\n  \"dimas\": \"dim\",\n  \"dimensión\": \"dimension\",\n  \"dimensiones\": \"dimension\",\n  \"dimino\": \"dimin\",\n  \"diminutas\": \"diminut\",\n  \"diminutos\": \"diminut\",\n  \"dimisión\": \"dimision\",\n  \"dimitir\": \"dimit\",\n  \"dimitri\": \"dimitri\",\n  \"dimos\": \"dim\",\n  \"dina\": \"din\",\n  \"dinamarca\": \"dinamarc\",\n  \"dinámica\": \"dinam\",\n  \"dinámicas\": \"dinam\",\n  \"dinámico\": \"dinam\",\n  \"dinámicos\": \"dinam\",\n  \"dinamismo\": \"dinam\",\n  \"dinamiteros\": \"dinamiter\",\n  \"dinastía\": \"dinast\",\n  \"dinero\": \"diner\",\n  \"dineros\": \"diner\",\n  \"dinorah\": \"dinorah\",\n  \"dinosaurios\": \"dinosauri\",\n  \"dio\": \"dio\",\n  \"diócesis\": \"diocesis\",\n  \"dior\": \"dior\",\n  \"diorita\": \"diorit\",\n  \"dios\": \"dios\",\n  \"diosa\": \"dios\",\n  \"dioses\": \"dios\",\n  \"dióxido\": \"diox\",\n  \"diplomacia\": \"diplomaci\",\n  \"diplomado\": \"diplom\",\n  \"diplomados\": \"diplom\",\n  \"diplomática\": \"diplomat\",\n  \"diplomáticas\": \"diplomat\",\n  \"diplomático\": \"diplomat\",\n  \"diplomáticos\": \"diplomat\",\n  \"diputa\": \"diput\",\n  \"diputación\": \"diput\",\n  \"diputaciones\": \"diput\",\n  \"diputada\": \"diput\",\n  \"diputado\": \"diput\",\n  \"diputados\": \"diput\",\n  \"dirá\": \"dir\",\n  \"dirán\": \"diran\",\n  \"diré\": \"dir\",\n  \"dirección\": \"direccion\",\n  \"direccionales\": \"direccional\",\n  \"direcciones\": \"direccion\",\n  \"direct\": \"direct\",\n  \"directa\": \"direct\",\n  \"directamente\": \"direct\",\n  \"directas\": \"direct\",\n  \"directiva\": \"direct\",\n  \"directivas\": \"direct\",\n  \"directivo\": \"direct\",\n  \"directivos\": \"direct\",\n  \"directo\": \"direct\",\n  \"director\": \"director\",\n  \"directora\": \"director\",\n  \"directores\": \"director\",\n  \"directorio\": \"directori\",\n  \"directorios\": \"directori\",\n  \"directos\": \"direct\",\n  \"diría\": \"dir\",\n  \"dirige\": \"dirig\",\n  \"dirigencia\": \"dirigent\",\n  \"dirigente\": \"dirigent\",\n  \"dirigentes\": \"dirigent\",\n  \"dirigía\": \"dirig\",\n  \"dirigían\": \"dirig\",\n  \"dirigible\": \"dirig\",\n  \"dirigida\": \"dirig\",\n  \"dirigidas\": \"dirig\",\n  \"dirigido\": \"dirig\",\n  \"dirigidos\": \"dirig\",\n  \"dirigiendo\": \"dirig\",\n  \"dirigieron\": \"dirig\",\n  \"dirigió\": \"dirig\",\n  \"dirigir\": \"dirig\",\n  \"dirigirá\": \"dirig\",\n  \"dirigirla\": \"dirig\",\n  \"dirigirme\": \"dirig\",\n  \"dirigirse\": \"dirig\",\n  \"dirija\": \"dirij\",\n  \"dirimir\": \"dirim\",\n  \"disc\": \"disc\",\n  \"discapacidad\": \"discapac\",\n  \"discapacidades\": \"discapac\",\n  \"discapacitada\": \"discapacit\",\n  \"discapacitadas\": \"discapacit\",\n  \"discapacitado\": \"discapacit\",\n  \"discapacitados\": \"discapacit\",\n  \"disciplina\": \"disciplin\",\n  \"disciplinada\": \"disciplin\",\n  \"disciplinadas\": \"disciplin\",\n  \"disciplinaria\": \"disciplinari\",\n  \"disciplinario\": \"disciplinari\",\n  \"disciplinas\": \"disciplin\",\n  \"discípulos\": \"discipul\",\n  \"disco\": \"disc\",\n  \"discografía\": \"discograf\",\n  \"discográfico\": \"discograf\",\n  \"discos\": \"disc\",\n  \"discoteca\": \"discotec\",\n  \"discotecas\": \"discotec\",\n  \"discrepancia\": \"discrep\",\n  \"discreto\": \"discret\",\n  \"discretos\": \"discret\",\n  \"discriminación\": \"discrimin\",\n  \"discs\": \"discs\",\n  \"disculpa\": \"disculp\",\n  \"disculpaba\": \"disculp\",\n  \"disculpe\": \"disculp\",\n  \"discurso\": \"discurs\",\n  \"discursos\": \"discurs\",\n  \"discusión\": \"discusion\",\n  \"discusiones\": \"discusion\",\n  \"discuta\": \"discut\",\n  \"discutían\": \"discut\",\n  \"discutido\": \"discut\",\n  \"discutieron\": \"discut\",\n  \"discutió\": \"discut\",\n  \"discutir\": \"discut\",\n  \"discutirse\": \"discut\",\n  \"diseña\": \"diseñ\",\n  \"diseñada\": \"diseñ\",\n  \"diseñadas\": \"diseñ\",\n  \"diseñado\": \"diseñ\",\n  \"diseñador\": \"diseñ\",\n  \"diseñadores\": \"diseñ\",\n  \"diseñados\": \"diseñ\",\n  \"diseñan\": \"diseñ\",\n  \"diseñando\": \"diseñ\",\n  \"diseñar\": \"diseñ\",\n  \"diseñaron\": \"diseñ\",\n  \"diseñe\": \"diseñ\",\n  \"diseño\": \"diseñ\",\n  \"diseñó\": \"diseñ\",\n  \"diseños\": \"diseñ\",\n  \"disertará\": \"disert\",\n  \"disfrace\": \"disfrac\",\n  \"disfraces\": \"disfrac\",\n  \"disfrazada\": \"disfraz\",\n  \"disfrazados\": \"disfraz\",\n  \"disfrazar\": \"disfraz\",\n  \"disfrazaron\": \"disfraz\",\n  \"disfrazarse\": \"disfraz\",\n  \"disfruta\": \"disfrut\",\n  \"disfrutando\": \"disfrut\",\n  \"disfrutar\": \"disfrut\",\n  \"disfrutará\": \"disfrut\",\n  \"disfrutaron\": \"disfrut\",\n  \"disfrutarse\": \"disfrut\",\n  \"disfrute\": \"disfrut\",\n  \"disfrutó\": \"disfrut\",\n  \"disgregulación\": \"disgregul\",\n  \"disgusta\": \"disgust\",\n  \"disgustado\": \"disgust\",\n  \"disgustarle\": \"disgust\",\n  \"disgusto\": \"disgust\",\n  \"disidente\": \"disident\",\n  \"disidentes\": \"disident\",\n  \"disimular\": \"disimul\",\n  \"disipar\": \"disip\",\n  \"disipó\": \"disip\",\n  \"diskete\": \"disket\",\n  \"diskette\": \"diskett\",\n  \"diskettes\": \"diskett\",\n  \"disléxico\": \"dislex\",\n  \"disminución\": \"disminu\",\n  \"disminuidas\": \"disminu\",\n  \"disminuido\": \"disminu\",\n  \"disminuir\": \"disminu\",\n  \"disminuiría\": \"disminu\",\n  \"disminuye\": \"disminu\",\n  \"disminuyendo\": \"disminu\",\n  \"disminuyó\": \"disminu\",\n  \"disney\": \"disney\",\n  \"disolvió\": \"disolv\",\n  \"disparaba\": \"dispar\",\n  \"disparado\": \"dispar\",\n  \"disparan\": \"disp\",\n  \"disparando\": \"dispar\",\n  \"disparar\": \"dispar\",\n  \"dispararon\": \"dispar\",\n  \"dispararse\": \"dispar\",\n  \"disparate\": \"disparat\",\n  \"disparates\": \"disparat\",\n  \"disparo\": \"dispar\",\n  \"disparó\": \"dispar\",\n  \"disparos\": \"dispar\",\n  \"dispendio\": \"dispendi\",\n  \"dispendiosa\": \"dispendi\",\n  \"dispensa\": \"dispens\",\n  \"dispersan\": \"dispers\",\n  \"dispersión\": \"dispersion\",\n  \"disperso\": \"dispers\",\n  \"dispersó\": \"dispers\",\n  \"dispersos\": \"dispers\",\n  \"displays\": \"displays\",\n  \"displicencia\": \"displicent\",\n  \"dispone\": \"dispon\",\n  \"disponen\": \"dispon\",\n  \"disponga\": \"dispong\",\n  \"dispóngase\": \"dispong\",\n  \"dispongo\": \"dispong\",\n  \"disponía\": \"dispon\",\n  \"disponibilidad\": \"disponibil\",\n  \"disponible\": \"dispon\",\n  \"disponibles\": \"dispon\",\n  \"disposición\": \"disposicion\",\n  \"disposiciones\": \"disposicion\",\n  \"dispositivo\": \"disposit\",\n  \"dispositivos\": \"disposit\",\n  \"dispuesta\": \"dispuest\",\n  \"dispuesto\": \"dispuest\",\n  \"dispuestos\": \"dispuest\",\n  \"dispusieron\": \"dispus\",\n  \"dispuso\": \"dispus\",\n  \"disputa\": \"disput\",\n  \"disputadas\": \"disput\",\n  \"disputado\": \"disput\",\n  \"disputar\": \"disput\",\n  \"disputará\": \"disput\",\n  \"disputarán\": \"disput\",\n  \"disputarían\": \"disput\",\n  \"disputaron\": \"disput\",\n  \"disputas\": \"disput\",\n  \"disputó\": \"disput\",\n  \"disquera\": \"disquer\",\n  \"disqueras\": \"disquer\",\n  \"distancia\": \"distanci\",\n  \"distancias\": \"distanci\",\n  \"distensión\": \"distension\",\n  \"distinción\": \"distincion\",\n  \"distinciones\": \"distincion\",\n  \"distingos\": \"disting\",\n  \"distinguen\": \"disting\",\n  \"distinguida\": \"distingu\",\n  \"distinguidas\": \"distingu\",\n  \"distinguido\": \"distingu\",\n  \"distinguidos\": \"distingu\",\n  \"distinguimos\": \"distingu\",\n  \"distinguir\": \"distingu\",\n  \"distinta\": \"distint\",\n  \"distintas\": \"distint\",\n  \"distintivo\": \"distint\",\n  \"distinto\": \"distint\",\n  \"distintos\": \"distint\",\n  \"distorsione\": \"distorsion\",\n  \"distorsiones\": \"distorsion\",\n  \"distraen\": \"distr\",\n  \"distraer\": \"distr\",\n  \"distraída\": \"distraid\",\n  \"distrajo\": \"distraj\",\n  \"distribución\": \"distribu\",\n  \"distribuía\": \"distribu\",\n  \"distribuidas\": \"distribu\",\n  \"distribuido\": \"distribu\",\n  \"distribuidor\": \"distribuidor\",\n  \"distribuidora\": \"distribuidor\",\n  \"distribuidoras\": \"distribuidor\",\n  \"distribuidores\": \"distribuidor\",\n  \"distribuidos\": \"distribu\",\n  \"distribuimos\": \"distribu\",\n  \"distribuir\": \"distribu\",\n  \"distribuirán\": \"distribu\",\n  \"distribuirla\": \"distribu\",\n  \"distribuirse\": \"distribu\",\n  \"distribution\": \"distribution\",\n  \"distribuya\": \"distribu\",\n  \"distribuye\": \"distribu\",\n  \"distribuyen\": \"distribu\",\n  \"distribuyendo\": \"distribu\",\n  \"distribuyó\": \"distribu\",\n  \"distritales\": \"distrital\",\n  \"distrito\": \"distrit\",\n  \"distritos\": \"distrit\",\n  \"distrofia\": \"distrofi\",\n  \"disturbios\": \"disturbi\",\n  \"disyuntiva\": \"disyunt\",\n  \"dit\": \"dit\",\n  \"diva\": \"div\",\n  \"diván\": \"divan\",\n  \"divergencias\": \"divergent\",\n  \"diversa\": \"divers\",\n  \"diversas\": \"divers\",\n  \"diversidad\": \"divers\",\n  \"diversificación\": \"diversif\",\n  \"diversificándose\": \"diversific\",\n  \"diversificó\": \"diversific\",\n  \"diversión\": \"diversion\",\n  \"diverso\": \"divers\",\n  \"diversos\": \"divers\",\n  \"divertía\": \"divert\",\n  \"divertida\": \"divert\",\n  \"divertidas\": \"divert\",\n  \"divertido\": \"divert\",\n  \"divertir\": \"divert\",\n  \"divertirnos\": \"divert\",\n  \"divertirse\": \"divert\",\n  \"divide\": \"divid\",\n  \"dividendos\": \"dividend\",\n  \"dividido\": \"divid\",\n  \"divididos\": \"divid\",\n  \"dividiéndose\": \"divid\",\n  \"dividió\": \"divid\",\n  \"dividir\": \"divid\",\n  \"dividirnos\": \"divid\",\n  \"divina\": \"divin\",\n  \"divinas\": \"divin\",\n  \"divino\": \"divin\",\n  \"divirtieran\": \"divirt\",\n  \"divisas\": \"divis\",\n  \"división\": \"division\",\n  \"divisional\": \"divisional\",\n  \"divisiones\": \"division\",\n  \"divisoria\": \"divisori\",\n  \"divorciado\": \"divorci\",\n  \"divorciarme\": \"divorci\",\n  \"divorcio\": \"divorci\",\n  \"divorció\": \"divorc\",\n  \"divorcios\": \"divorci\",\n  \"divulgar\": \"divulg\",\n  \"diz\": \"diz\",\n  \"dizque\": \"dizqu\",\n  \"dizzie\": \"dizzi\",\n  \"dls\": \"dls\",\n  \"dnx\": \"dnx\",\n  \"dobla\": \"dobl\",\n  \"doblaje\": \"doblaj\",\n  \"doblajes\": \"doblaj\",\n  \"doblar\": \"dobl\",\n  \"doble\": \"dobl\",\n  \"doblegado\": \"dobleg\",\n  \"doblegamiento\": \"dobleg\",\n  \"doblegando\": \"dobleg\",\n  \"doblegar\": \"dobleg\",\n  \"doblemente\": \"doblement\",\n  \"dobles\": \"dobl\",\n  \"doblinger\": \"dobling\",\n  \"doblista\": \"doblist\",\n  \"doblistas\": \"doblist\",\n  \"dobson\": \"dobson\",\n  \"doce\": \"doc\",\n  \"docena\": \"docen\",\n  \"docenas\": \"docen\",\n  \"docencia\": \"docenci\",\n  \"docente\": \"docent\",\n  \"docentes\": \"docent\",\n  \"dócil\": \"docil\",\n  \"dock\": \"dock\",\n  \"docta\": \"doct\",\n  \"doctor\": \"doctor\",\n  \"doctora\": \"doctor\",\n  \"doctorados\": \"doctor\",\n  \"doctoral\": \"doctoral\",\n  \"doctores\": \"doctor\",\n  \"doctoró\": \"doctor\",\n  \"doctrina\": \"doctrin\",\n  \"doctrinario\": \"doctrinari\",\n  \"doctrinas\": \"doctrin\",\n  \"documentación\": \"document\",\n  \"documentada\": \"document\",\n  \"documentadas\": \"document\",\n  \"documental\": \"documental\",\n  \"documentales\": \"documental\",\n  \"documenté\": \"document\",\n  \"documento\": \"document\",\n  \"documentos\": \"document\",\n  \"dodgers\": \"dodgers\",\n  \"dog\": \"dog\",\n  \"doger\": \"dog\",\n  \"dogs\": \"dogs\",\n  \"dólar\": \"dol\",\n  \"dolares\": \"dolar\",\n  \"dólares\": \"dolar\",\n  \"dolce\": \"dolc\",\n  \"doliéndose\": \"dol\",\n  \"dolo\": \"dol\",\n  \"dolor\": \"dolor\",\n  \"dolores\": \"dolor\",\n  \"dolorido\": \"dolor\",\n  \"dolorosa\": \"dolor\",\n  \"dolosa\": \"dolos\",\n  \"doman\": \"dom\",\n  \"domar\": \"dom\",\n  \"domene\": \"domen\",\n  \"doméstica\": \"domest\",\n  \"domesticados\": \"domestic\",\n  \"domesticaron\": \"domestic\",\n  \"domésticas\": \"domest\",\n  \"doméstico\": \"domest\",\n  \"domésticos\": \"domest\",\n  \"domiciliado\": \"domicili\",\n  \"domiciliaria\": \"domiciliari\",\n  \"domiciliarias\": \"domiciliari\",\n  \"domicilio\": \"domicili\",\n  \"domicilios\": \"domicili\",\n  \"domina\": \"domin\",\n  \"dominada\": \"domin\",\n  \"dominado\": \"domin\",\n  \"dominador\": \"domin\",\n  \"dominan\": \"domin\",\n  \"dominando\": \"domin\",\n  \"dominantes\": \"domin\",\n  \"dominar\": \"domin\",\n  \"dominarlo\": \"domin\",\n  \"dominen\": \"domin\",\n  \"domingo\": \"doming\",\n  \"domingos\": \"doming\",\n  \"domínguez\": \"dominguez\",\n  \"dominical\": \"dominical\",\n  \"dominicana\": \"dominican\",\n  \"dominicano\": \"dominican\",\n  \"dominicanos\": \"dominican\",\n  \"dominio\": \"domini\",\n  \"dominó\": \"domin\",\n  \"domizzi\": \"domizzi\",\n  \"don\": \"don\",\n  \"dona\": \"don\",\n  \"doña\": \"doñ\",\n  \"donadas\": \"don\",\n  \"donado\": \"don\",\n  \"donados\": \"don\",\n  \"donald\": \"donald\",\n  \"donaldo\": \"donald\",\n  \"donan\": \"don\",\n  \"donantes\": \"donant\",\n  \"donar\": \"don\",\n  \"donará\": \"don\",\n  \"donas\": \"don\",\n  \"donativo\": \"donat\",\n  \"donativos\": \"donat\",\n  \"doncella\": \"doncell\",\n  \"donde\": \"dond\",\n  \"dónde\": \"dond\",\n  \"dones\": \"don\",\n  \"donna\": \"donn\",\n  \"donó\": \"don\",\n  \"doors\": \"doors\",\n  \"doquier\": \"doqui\",\n  \"dora\": \"dor\",\n  \"dorada\": \"dor\",\n  \"doradas\": \"dor\",\n  \"dorado\": \"dor\",\n  \"dorados\": \"dor\",\n  \"dorar\": \"dor\",\n  \"doria\": \"dori\",\n  \"doris\": \"doris\",\n  \"dormí\": \"dorm\",\n  \"dormía\": \"dorm\",\n  \"dormir\": \"dorm\",\n  \"dormirán\": \"dorm\",\n  \"dormirme\": \"dorm\",\n  \"dormitó\": \"dormit\",\n  \"dorsal\": \"dorsal\",\n  \"dorsets\": \"dorsets\",\n  \"dorsey\": \"dorsey\",\n  \"dos\": \"dos\",\n  \"dosamantes\": \"dosam\",\n  \"doscientas\": \"doscient\",\n  \"dosis\": \"dosis\",\n  \"dotación\": \"dotacion\",\n  \"dotadas\": \"dot\",\n  \"dotar\": \"dot\",\n  \"dotes\": \"dot\",\n  \"dow\": \"dow\",\n  \"down\": \"down\",\n  \"doy\": \"doy\",\n  \"dr\": \"dr\",\n  \"dra\": \"dra\",\n  \"drácula\": \"dracul\",\n  \"drag\": \"drag\",\n  \"dragón\": \"dragon\",\n  \"dragster\": \"dragst\",\n  \"drake\": \"drak\",\n  \"drama\": \"dram\",\n  \"dramas\": \"dram\",\n  \"dramática\": \"dramat\",\n  \"dramáticamente\": \"dramat\",\n  \"dramático\": \"dramat\",\n  \"dramáticos\": \"dramat\",\n  \"dramatismo\": \"dramat\",\n  \"dramaturgia\": \"dramaturgi\",\n  \"drástica\": \"drastic\",\n  \"drásticamente\": \"drastic\",\n  \"drásticas\": \"drastic\",\n  \"drásticos\": \"drastic\",\n  \"drenaje\": \"drenaj\",\n  \"drew\": \"drew\",\n  \"droga\": \"drog\",\n  \"drogadicción\": \"drogadiccion\",\n  \"drogadicto\": \"drogadict\",\n  \"drogadictos\": \"drogadict\",\n  \"drogado\": \"drog\",\n  \"drogan\": \"drog\",\n  \"drogarse\": \"drog\",\n  \"drogas\": \"drog\",\n  \"du\": \"du\",\n  \"dual\": \"dual\",\n  \"duarte\": \"duart\",\n  \"ducharme\": \"duch\",\n  \"ductilidad\": \"ductil\",\n  \"duda\": \"dud\",\n  \"dudaba\": \"dud\",\n  \"dudaban\": \"dud\",\n  \"dudamos\": \"dud\",\n  \"dudas\": \"dud\",\n  \"dudo\": \"dud\",\n  \"dudosos\": \"dudos\",\n  \"duela\": \"duel\",\n  \"duele\": \"duel\",\n  \"duelen\": \"duel\",\n  \"duelo\": \"duel\",\n  \"dueña\": \"dueñ\",\n  \"dueño\": \"dueñ\",\n  \"dueños\": \"dueñ\",\n  \"duke\": \"duk\",\n  \"dulce\": \"dulc\",\n  \"dulces\": \"dulc\",\n  \"dulles\": \"dull\",\n  \"dulzura\": \"dulzur\",\n  \"dumping\": \"dumping\",\n  \"dune\": \"dun\",\n  \"dunkin\": \"dunkin\",\n  \"duo\": \"duo\",\n  \"dúo\": \"duo\",\n  \"dupla\": \"dupl\",\n  \"duplicación\": \"duplic\",\n  \"duplicado\": \"duplic\",\n  \"duplicados\": \"duplic\",\n  \"duplicar\": \"duplic\",\n  \"duplicará\": \"duplic\",\n  \"duplicidad\": \"duplic\",\n  \"duplicidades\": \"duplic\",\n  \"duplicó\": \"duplic\",\n  \"dupont\": \"dupont\",\n  \"duque\": \"duqu\",\n  \"duques\": \"duqu\",\n  \"duquesa\": \"duques\",\n  \"dura\": \"dur\",\n  \"duraban\": \"dur\",\n  \"durabilidad\": \"durabil\",\n  \"duración\": \"duracion\",\n  \"duradero\": \"durader\",\n  \"duramente\": \"dur\",\n  \"duran\": \"dur\",\n  \"durán\": \"duran\",\n  \"durango\": \"durang\",\n  \"duranguense\": \"duranguens\",\n  \"durante\": \"durant\",\n  \"durar\": \"dur\",\n  \"durara\": \"dur\",\n  \"durará\": \"dur\",\n  \"durarán\": \"dur\",\n  \"duras\": \"dur\",\n  \"durazno\": \"durazn\",\n  \"durbin\": \"durbin\",\n  \"dúrcal\": \"durcal\",\n  \"dure\": \"dur\",\n  \"duren\": \"dur\",\n  \"dureza\": \"durez\",\n  \"durmió\": \"durm\",\n  \"duro\": \"dur\",\n  \"duró\": \"dur\",\n  \"duros\": \"dur\",\n  \"dury\": \"dury\",\n  \"dwyer\": \"dwyer\",\n  \"dye\": \"dye\",\n  \"dzul\": \"dzul\",\n  \"e\": \"e\",\n  \"eagles\": \"eagl\",\n  \"earl\": \"earl\",\n  \"eastwood\": \"eastwood\",\n  \"eau\": \"eau\",\n  \"ebanista\": \"eban\",\n  \"ebanitos\": \"ebanit\",\n  \"eberhard\": \"eberhard\",\n  \"ebriedad\": \"ebried\",\n  \"ebrio\": \"ebri\",\n  \"ebullición\": \"ebullicion\",\n  \"echa\": \"echa\",\n  \"echaban\": \"echab\",\n  \"echada\": \"echad\",\n  \"echado\": \"echad\",\n  \"echan\": \"echan\",\n  \"echando\": \"echand\",\n  \"echándole\": \"echandol\",\n  \"echao\": \"echa\",\n  \"echar\": \"echar\",\n  \"echara\": \"echar\",\n  \"echarán\": \"echaran\",\n  \"echarle\": \"echarl\",\n  \"echarnos\": \"echarn\",\n  \"echas\": \"echas\",\n  \"échate\": \"echat\",\n  \"echavarría\": \"echavarr\",\n  \"eche\": \"eche\",\n  \"echen\": \"echen\",\n  \"echeverría\": \"echeverr\",\n  \"echó\": \"echo\",\n  \"echoes\": \"echo\",\n  \"eckhard\": \"eckhard\",\n  \"eclesiásticas\": \"eclesiast\",\n  \"eclesíasticos\": \"eclesiast\",\n  \"eco\": \"eco\",\n  \"ecología\": \"ecolog\",\n  \"ecológica\": \"ecolog\",\n  \"ecológicas\": \"ecolog\",\n  \"ecológico\": \"ecolog\",\n  \"ecológicos\": \"ecolog\",\n  \"ecologista\": \"ecolog\",\n  \"ecologísta\": \"ecologist\",\n  \"ecologistas\": \"ecolog\",\n  \"econometristas\": \"econometr\",\n  \"economia\": \"economi\",\n  \"economía\": \"econom\",\n  \"economías\": \"econom\",\n  \"economic\": \"economic\",\n  \"económica\": \"econom\",\n  \"económicamente\": \"econom\",\n  \"económicas\": \"econom\",\n  \"económico\": \"econom\",\n  \"económicos\": \"econom\",\n  \"economist\": \"economist\",\n  \"economista\": \"econom\",\n  \"economistas\": \"econom\",\n  \"ecosistema\": \"ecosistem\",\n  \"ecosistemas\": \"ecosistem\",\n  \"ecotaxi\": \"ecotaxi\",\n  \"ecotaxis\": \"ecotaxis\",\n  \"ecotaxistas\": \"ecotax\",\n  \"ecotécnicas\": \"ecotecn\",\n  \"ecuaciones\": \"ecuacion\",\n  \"ecuador\": \"ecuador\",\n  \"ecuánime\": \"ecuanim\",\n  \"ecuatoriana\": \"ecuatorian\",\n  \"ecuatoriano\": \"ecuatorian\",\n  \"edad\": \"edad\",\n  \"edades\": \"edad\",\n  \"edecán\": \"edecan\",\n  \"edelmiro\": \"edelmir\",\n  \"eden\": \"eden\",\n  \"edén\": \"eden\",\n  \"eder\": \"eder\",\n  \"edgar\": \"edgar\",\n  \"edgardo\": \"edgard\",\n  \"edición\": \"edicion\",\n  \"ediciones\": \"edicion\",\n  \"edifica\": \"edif\",\n  \"edificación\": \"edif\",\n  \"edificaciones\": \"edif\",\n  \"edificar\": \"edific\",\n  \"edificio\": \"edifici\",\n  \"edificios\": \"edifici\",\n  \"edifico\": \"edif\",\n  \"edil\": \"edil\",\n  \"edilberto\": \"edilbert\",\n  \"ediles\": \"edil\",\n  \"edison\": \"edison\",\n  \"edit\": \"edit\",\n  \"edita\": \"edit\",\n  \"editada\": \"edit\",\n  \"editado\": \"edit\",\n  \"editados\": \"edit\",\n  \"editar\": \"edit\",\n  \"edith\": \"edith\",\n  \"editó\": \"edit\",\n  \"editor\": \"editor\",\n  \"editoras\": \"editor\",\n  \"editores\": \"editor\",\n  \"editorial\": \"editorial\",\n  \"editoriales\": \"editorial\",\n  \"editorialista\": \"editorial\",\n  \"editorialy\": \"editorialy\",\n  \"edmundo\": \"edmund\",\n  \"edomex\": \"edomex\",\n  \"edu\": \"edu\",\n  \"edú\": \"edu\",\n  \"eduard\": \"eduard\",\n  \"eduardo\": \"eduard\",\n  \"educación\": \"educ\",\n  \"educada\": \"educ\",\n  \"educador\": \"educ\",\n  \"educadores\": \"educ\",\n  \"educando\": \"educ\",\n  \"educar\": \"educ\",\n  \"educaron\": \"educ\",\n  \"educativa\": \"educ\",\n  \"educativas\": \"educ\",\n  \"educativo\": \"educ\",\n  \"educativos\": \"educ\",\n  \"eduque\": \"eduqu\",\n  \"edward\": \"edward\",\n  \"efe\": \"efe\",\n  \"efectiva\": \"efect\",\n  \"efectivamente\": \"efect\",\n  \"efectivas\": \"efect\",\n  \"efectividad\": \"efect\",\n  \"efectivo\": \"efect\",\n  \"efectivos\": \"efect\",\n  \"efecto\": \"efect\",\n  \"efectos\": \"efect\",\n  \"efectúa\": \"efectu\",\n  \"efectuaba\": \"efectu\",\n  \"efectuada\": \"efectu\",\n  \"efectuadas\": \"efectu\",\n  \"efectuado\": \"efectu\",\n  \"efectúan\": \"efectu\",\n  \"efectuar\": \"efectu\",\n  \"efectuará\": \"efectu\",\n  \"efectuarán\": \"efectu\",\n  \"efectuaría\": \"efectu\",\n  \"efectuaron\": \"efectu\",\n  \"efectuarse\": \"efectu\",\n  \"efectúen\": \"efectu\",\n  \"efectuo\": \"efectu\",\n  \"efectúo\": \"efectu\",\n  \"efectuó\": \"efectu\",\n  \"eficaces\": \"eficac\",\n  \"eficacia\": \"eficaci\",\n  \"eficaz\": \"eficaz\",\n  \"eficazmente\": \"eficaz\",\n  \"eficiencia\": \"eficient\",\n  \"eficientarlas\": \"eficient\",\n  \"eficiente\": \"eficient\",\n  \"eficientemente\": \"eficient\",\n  \"eficientes\": \"eficient\",\n  \"eficientización\": \"eficientiz\",\n  \"efigie\": \"efigi\",\n  \"efímero\": \"efimer\",\n  \"efluentes\": \"efluent\",\n  \"efraín\": \"efrain\",\n  \"efusivamente\": \"efus\",\n  \"egca\": \"egca\",\n  \"eggert\": \"eggert\",\n  \"égida\": \"egid\",\n  \"egipcios\": \"egipci\",\n  \"egipto\": \"egipt\",\n  \"ego\": \"ego\",\n  \"egocentrismo\": \"egocentr\",\n  \"egoísmo\": \"egoism\",\n  \"egoísta\": \"egoist\",\n  \"egresaban\": \"egres\",\n  \"egresada\": \"egres\",\n  \"egresados\": \"egres\",\n  \"egresan\": \"egres\",\n  \"egresaron\": \"egres\",\n  \"egresen\": \"egres\",\n  \"egreso\": \"egres\",\n  \"egresos\": \"egres\",\n  \"eiffel\": \"eiffel\",\n  \"eight\": \"eight\",\n  \"eje\": \"eje\",\n  \"ejecución\": \"ejecu\",\n  \"ejecuta\": \"ejecut\",\n  \"ejecutaba\": \"ejecut\",\n  \"ejecutable\": \"ejecut\",\n  \"ejecutada\": \"ejecut\",\n  \"ejecutado\": \"ejecut\",\n  \"ejecutados\": \"ejecut\",\n  \"ejecutando\": \"ejecut\",\n  \"ejecutantes\": \"ejecut\",\n  \"ejecutar\": \"ejecut\",\n  \"ejecutarán\": \"ejecut\",\n  \"ejecutarse\": \"ejecut\",\n  \"ejecutiva\": \"ejecut\",\n  \"ejecutivas\": \"ejecut\",\n  \"ejecutivo\": \"ejecut\",\n  \"ejecutivos\": \"ejecut\",\n  \"ejecutó\": \"ejecut\",\n  \"ejemplar\": \"ejempl\",\n  \"ejemplares\": \"ejemplar\",\n  \"ejemplarmente\": \"ejemplar\",\n  \"ejemplificó\": \"ejemplific\",\n  \"ejemplifique\": \"ejemplifiqu\",\n  \"ejemplo\": \"ejempl\",\n  \"ejemplos\": \"ejempl\",\n  \"ejerce\": \"ejerc\",\n  \"ejercen\": \"ejerc\",\n  \"ejercer\": \"ejerc\",\n  \"ejercerán\": \"ejerc\",\n  \"ejercían\": \"ejerc\",\n  \"ejercicio\": \"ejercici\",\n  \"ejercicios\": \"ejercici\",\n  \"ejerciendo\": \"ejerc\",\n  \"ejerciera\": \"ejerc\",\n  \"ejercitación\": \"ejercit\",\n  \"ejercito\": \"ejercit\",\n  \"ejército\": \"ejercit\",\n  \"ejércitos\": \"ejercit\",\n  \"ejidatarios\": \"ejidatari\",\n  \"ejido\": \"ejid\",\n  \"el\": \"el\",\n  \"él\": \"el\",\n  \"elaboración\": \"elabor\",\n  \"elaborada\": \"elabor\",\n  \"elaboradas\": \"elabor\",\n  \"elaborado\": \"elabor\",\n  \"elaborados\": \"elabor\",\n  \"elaborar\": \"elabor\",\n  \"elaborarán\": \"elabor\",\n  \"elabore\": \"elabor\",\n  \"elaboró\": \"elabor\",\n  \"elásticos\": \"elast\",\n  \"elba\": \"elba\",\n  \"elcrimen\": \"elcrim\",\n  \"eldridge\": \"eldridg\",\n  \"eleanor\": \"eleanor\",\n  \"elección\": \"eleccion\",\n  \"eleccionario\": \"eleccionari\",\n  \"elecciones\": \"eleccion\",\n  \"electa\": \"elect\",\n  \"electo\": \"elect\",\n  \"elector\": \"elector\",\n  \"electorado\": \"elector\",\n  \"electoral\": \"electoral\",\n  \"electorales\": \"electoral\",\n  \"electoralmente\": \"electoral\",\n  \"electores\": \"elector\",\n  \"electos\": \"elect\",\n  \"eléctrica\": \"electr\",\n  \"eléctricas\": \"electr\",\n  \"electricidad\": \"electr\",\n  \"electricistas\": \"electric\",\n  \"eléctrico\": \"electr\",\n  \"eléctricos\": \"electr\",\n  \"electroacústica\": \"electroacust\",\n  \"electrodomésticos\": \"electrodomest\",\n  \"electromagnéticas\": \"electromagnet\",\n  \"electronic\": \"electronic\",\n  \"electrónica\": \"electron\",\n  \"electrónicas\": \"electron\",\n  \"electrónico\": \"electron\",\n  \"electrónicos\": \"electron\",\n  \"elefante\": \"elef\",\n  \"elegancia\": \"eleg\",\n  \"elegante\": \"eleg\",\n  \"elegantemente\": \"eleg\",\n  \"elegantes\": \"eleg\",\n  \"elegidas\": \"eleg\",\n  \"elegido\": \"eleg\",\n  \"elegidos\": \"eleg\",\n  \"elegir\": \"eleg\",\n  \"elegirá\": \"eleg\",\n  \"elegirán\": \"eleg\",\n  \"elegirse\": \"eleg\",\n  \"elektra\": \"elektr\",\n  \"elemental\": \"elemental\",\n  \"elementales\": \"elemental\",\n  \"elemento\": \"element\",\n  \"elementos\": \"element\",\n  \"elena\": \"elen\",\n  \"elenco\": \"elenc\",\n  \"elencos\": \"elenc\",\n  \"elepé\": \"elep\",\n  \"elevaban\": \"elev\",\n  \"elevación\": \"elev\",\n  \"elevada\": \"elev\",\n  \"elevadas\": \"elev\",\n  \"elevado\": \"elev\",\n  \"elevados\": \"elev\",\n  \"elevamos\": \"elev\",\n  \"elevan\": \"elev\",\n  \"elevar\": \"elev\",\n  \"elevaran\": \"elev\",\n  \"elevaría\": \"elev\",\n  \"elevarse\": \"elev\",\n  \"elevó\": \"elev\",\n  \"elia\": \"eli\",\n  \"elías\": \"eli\",\n  \"elida\": \"elid\",\n  \"elie\": \"eli\",\n  \"elier\": \"eli\",\n  \"eligen\": \"elig\",\n  \"eligieron\": \"elig\",\n  \"eligió\": \"elig\",\n  \"eligirá\": \"elig\",\n  \"eligirán\": \"elig\",\n  \"elija\": \"elij\",\n  \"elijan\": \"elij\",\n  \"elimina\": \"elimin\",\n  \"eliminación\": \"elimin\",\n  \"eliminada\": \"elimin\",\n  \"eliminado\": \"elimin\",\n  \"eliminar\": \"elimin\",\n  \"eliminará\": \"elimin\",\n  \"eliminarán\": \"elimin\",\n  \"eliminarían\": \"elimin\",\n  \"eliminarla\": \"elimin\",\n  \"eliminarse\": \"elimin\",\n  \"eliminatoria\": \"eliminatori\",\n  \"eliminatorias\": \"eliminatori\",\n  \"eliminatorios\": \"eliminatori\",\n  \"elimine\": \"elimin\",\n  \"eliminó\": \"elimin\",\n  \"eliodoro\": \"eliodor\",\n  \"elisa\": \"elis\",\n  \"eliseo\": \"elise\",\n  \"élite\": \"elit\",\n  \"eliud\": \"eliud\",\n  \"elizondo\": \"elizond\",\n  \"ella\": \"ella\",\n  \"ellas\": \"ellas\",\n  \"ellington\": \"ellington\",\n  \"ello\": \"ello\",\n  \"ellos\": \"ellos\",\n  \"elmer\": \"elmer\",\n  \"elmo\": \"elmo\",\n  \"elocuencia\": \"elocuent\",\n  \"elogiado\": \"elogi\",\n  \"elogio\": \"elogi\",\n  \"elogios\": \"elogi\",\n  \"elogiosas\": \"elogi\",\n  \"eloisa\": \"elois\",\n  \"eloísa\": \"elois\",\n  \"elosúa\": \"elosu\",\n  \"elotitos\": \"elotit\",\n  \"eloxochitlán\": \"eloxochitlan\",\n  \"eloy\": \"eloy\",\n  \"elton\": \"elton\",\n  \"elude\": \"elud\",\n  \"eludir\": \"elud\",\n  \"elva\": \"elva\",\n  \"elvis\": \"elvis\",\n  \"em\": \"em\",\n  \"emana\": \"eman\",\n  \"emanadas\": \"eman\",\n  \"emanciparse\": \"emancip\",\n  \"ematografía\": \"ematograf\",\n  \"embajada\": \"embaj\",\n  \"embajadas\": \"embaj\",\n  \"embajador\": \"embaj\",\n  \"embajadora\": \"embaj\",\n  \"embajadores\": \"embaj\",\n  \"embalaje\": \"embalaj\",\n  \"embarazada\": \"embaraz\",\n  \"embarazarse\": \"embaraz\",\n  \"embarazo\": \"embaraz\",\n  \"embarazosa\": \"embaraz\",\n  \"embarazoso\": \"embaraz\",\n  \"embarcación\": \"embarc\",\n  \"embarcaciones\": \"embarc\",\n  \"embarcadas\": \"embarc\",\n  \"embarcar\": \"embarc\",\n  \"embargaron\": \"embarg\",\n  \"embargo\": \"embarg\",\n  \"embarrarnos\": \"embarr\",\n  \"embestía\": \"embest\",\n  \"embestida\": \"embest\",\n  \"embestidas\": \"embest\",\n  \"embestido\": \"embest\",\n  \"embistiendo\": \"embist\",\n  \"embistió\": \"embist\",\n  \"emblema\": \"emblem\",\n  \"embolsó\": \"embols\",\n  \"emboscada\": \"embosc\",\n  \"emboscado\": \"embosc\",\n  \"emboscados\": \"embosc\",\n  \"emboscan\": \"embosc\",\n  \"embotelladora\": \"embotell\",\n  \"embotelladoras\": \"embotell\",\n  \"embotellamientos\": \"embotell\",\n  \"embravecidas\": \"embravec\",\n  \"embriagantes\": \"embriag\",\n  \"embriagarse\": \"embriag\",\n  \"embriagas\": \"embriag\",\n  \"embutidos\": \"embut\",\n  \"emerge\": \"emerg\",\n  \"emergencia\": \"emergent\",\n  \"emergencias\": \"emergent\",\n  \"emergente\": \"emergent\",\n  \"emergentes\": \"emergent\",\n  \"emerson\": \"emerson\",\n  \"emes\": \"emes\",\n  \"emigramos\": \"emigr\",\n  \"emigrantes\": \"emigr\",\n  \"emigrar\": \"emigr\",\n  \"emigraron\": \"emigr\",\n  \"emiliano\": \"emilian\",\n  \"emilio\": \"emili\",\n  \"eminencia\": \"eminent\",\n  \"eminentemente\": \"eminent\",\n  \"emirato\": \"emirat\",\n  \"emisión\": \"emision\",\n  \"emisiones\": \"emision\",\n  \"emisora\": \"emisor\",\n  \"emisoras\": \"emisor\",\n  \"emisores\": \"emisor\",\n  \"emita\": \"emit\",\n  \"emitan\": \"emit\",\n  \"emiten\": \"emit\",\n  \"emitían\": \"emit\",\n  \"emitida\": \"emit\",\n  \"emitidas\": \"emit\",\n  \"emitido\": \"emit\",\n  \"emitidos\": \"emit\",\n  \"emitiendo\": \"emit\",\n  \"emitieron\": \"emit\",\n  \"emitió\": \"emit\",\n  \"emitir\": \"emit\",\n  \"emitirá\": \"emit\",\n  \"emitirán\": \"emit\",\n  \"emitiría\": \"emit\",\n  \"emmanuel\": \"emmanuel\",\n  \"emmitth\": \"emmitth\",\n  \"emoción\": \"emocion\",\n  \"emocionada\": \"emocion\",\n  \"emocionado\": \"emocion\",\n  \"emocionados\": \"emocion\",\n  \"emocional\": \"emocional\",\n  \"emocionante\": \"emocion\",\n  \"emocionaron\": \"emocion\",\n  \"emociones\": \"emocion\",\n  \"emocionó\": \"emocion\",\n  \"emory\": \"emory\",\n  \"emotivamente\": \"emot\",\n  \"empacadores\": \"empac\",\n  \"empacados\": \"empac\",\n  \"empacamex\": \"empacamex\",\n  \"empadronados\": \"empadron\",\n  \"empalagó\": \"empalag\",\n  \"empanadas\": \"empan\",\n  \"empantanadas\": \"empantan\",\n  \"empantanar\": \"empantan\",\n  \"empape\": \"empap\",\n  \"empapé\": \"empap\",\n  \"empaquetado\": \"empaquet\",\n  \"empatado\": \"empat\",\n  \"empatados\": \"empat\",\n  \"empatar\": \"empat\",\n  \"empatarles\": \"empat\",\n  \"empataron\": \"empat\",\n  \"empate\": \"empat\",\n  \"empates\": \"empat\",\n  \"empató\": \"empat\",\n  \"empecé\": \"empec\",\n  \"empecinan\": \"empecin\",\n  \"empeñado\": \"empeñ\",\n  \"empeñados\": \"empeñ\",\n  \"empeño\": \"empeñ\",\n  \"empeoran\": \"empeor\",\n  \"empeorar\": \"empeor\",\n  \"emperador\": \"emper\",\n  \"emperatriz\": \"emperatriz\",\n  \"empero\": \"emper\",\n  \"empezaba\": \"empez\",\n  \"empezaban\": \"empez\",\n  \"empezado\": \"empez\",\n  \"empezamos\": \"empez\",\n  \"empezando\": \"empez\",\n  \"empezar\": \"empez\",\n  \"empezará\": \"empez\",\n  \"empezarán\": \"empez\",\n  \"empezarlos\": \"empez\",\n  \"empezaron\": \"empez\",\n  \"empezó\": \"empez\",\n  \"empiece\": \"empiec\",\n  \"empiecen\": \"empiec\",\n  \"empieza\": \"empiez\",\n  \"empiezan\": \"empiez\",\n  \"emplazamiento\": \"emplaz\",\n  \"emplea\": \"emple\",\n  \"empleada\": \"emple\",\n  \"empleadas\": \"emple\",\n  \"empleado\": \"emple\",\n  \"empleados\": \"emple\",\n  \"empleando\": \"emple\",\n  \"emplear\": \"emple\",\n  \"empleo\": \"emple\",\n  \"empleó\": \"emple\",\n  \"empleos\": \"emple\",\n  \"empobrecido\": \"empobrec\",\n  \"emporio\": \"empori\",\n  \"emprendedor\": \"emprendedor\",\n  \"emprendedores\": \"emprendedor\",\n  \"emprender\": \"emprend\",\n  \"emprenderá\": \"emprend\",\n  \"emprendido\": \"emprend\",\n  \"emprendiendo\": \"emprend\",\n  \"emprendimos\": \"emprend\",\n  \"emprendió\": \"emprend\",\n  \"empresa\": \"empres\",\n  \"empresaria\": \"empresari\",\n  \"empresarial\": \"empresarial\",\n  \"empresariales\": \"empresarial\",\n  \"empresario\": \"empresari\",\n  \"empresarios\": \"empresari\",\n  \"empresas\": \"empres\",\n  \"empréstitos\": \"emprestit\",\n  \"empujamos\": \"empuj\",\n  \"empujan\": \"empuj\",\n  \"empujando\": \"empuj\",\n  \"empujar\": \"empuj\",\n  \"empujarlo\": \"empuj\",\n  \"emular\": \"emul\",\n  \"en\": \"en\",\n  \"enajenación\": \"enajen\",\n  \"enamora\": \"enamor\",\n  \"enamorado\": \"enamor\",\n  \"enamoró\": \"enamor\",\n  \"encabece\": \"encabec\",\n  \"encabeza\": \"encabez\",\n  \"encabezada\": \"encabez\",\n  \"encabezado\": \"encabez\",\n  \"encabezados\": \"encabez\",\n  \"encabezar\": \"encabez\",\n  \"encabezará\": \"encabez\",\n  \"encabezaron\": \"encabez\",\n  \"encabezó\": \"encabez\",\n  \"encadenaban\": \"encaden\",\n  \"encadenado\": \"encaden\",\n  \"encaja\": \"encaj\",\n  \"encajan\": \"encaj\",\n  \"encaje\": \"encaj\",\n  \"encajes\": \"encaj\",\n  \"encallados\": \"encall\",\n  \"encallar\": \"encall\",\n  \"encaminadas\": \"encamin\",\n  \"encaminará\": \"encamin\",\n  \"encaminaron\": \"encamin\",\n  \"encañonaron\": \"encañon\",\n  \"encanta\": \"encant\",\n  \"encantada\": \"encant\",\n  \"encantador\": \"encant\",\n  \"encantados\": \"encant\",\n  \"encantan\": \"encant\",\n  \"encantaría\": \"encant\",\n  \"encanto\": \"encant\",\n  \"encantos\": \"encant\",\n  \"encapricha\": \"encaprich\",\n  \"encara\": \"encar\",\n  \"encarcelado\": \"encarcel\",\n  \"encarcelados\": \"encarcel\",\n  \"encarcelamiento\": \"encarcel\",\n  \"encarecerá\": \"encarec\",\n  \"encarga\": \"encarg\",\n  \"encargaba\": \"encarg\",\n  \"encargaban\": \"encarg\",\n  \"encargada\": \"encarg\",\n  \"encargadas\": \"encarg\",\n  \"encargado\": \"encarg\",\n  \"encargados\": \"encarg\",\n  \"encargar\": \"encarg\",\n  \"encargara\": \"encarg\",\n  \"encargará\": \"encarg\",\n  \"encargarán\": \"encarg\",\n  \"encargaron\": \"encarg\",\n  \"encargo\": \"encarg\",\n  \"encargó\": \"encarg\",\n  \"encargue\": \"encarg\",\n  \"encargué\": \"encarg\",\n  \"encarna\": \"encarn\",\n  \"encarnado\": \"encarn\",\n  \"encarnan\": \"encarn\",\n  \"encarnizan\": \"encarniz\",\n  \"encarno\": \"encarn\",\n  \"encarnó\": \"encarn\",\n  \"encauce\": \"encauc\",\n  \"encendedor\": \"encendedor\",\n  \"encendedores\": \"encendedor\",\n  \"encendido\": \"encend\",\n  \"encendidos\": \"encend\",\n  \"encerar\": \"encer\",\n  \"enceren\": \"encer\",\n  \"encerrado\": \"encerr\",\n  \"encerrados\": \"encerr\",\n  \"encerrarnos\": \"encerr\",\n  \"encerraron\": \"encerr\",\n  \"encerrona\": \"encerron\",\n  \"enchalecados\": \"enchalec\",\n  \"enchinchar\": \"enchinch\",\n  \"enciclopedia\": \"enciclopedi\",\n  \"enciclopedias\": \"enciclopedi\",\n  \"enciclopédico\": \"encicloped\",\n  \"encienda\": \"enciend\",\n  \"encierra\": \"encierr\",\n  \"encierro\": \"encierr\",\n  \"encima\": \"encim\",\n  \"encke\": \"encke\",\n  \"enclaustrados\": \"enclaustr\",\n  \"encomendadas\": \"encomend\",\n  \"encomendando\": \"encomend\",\n  \"encomiable\": \"encomi\",\n  \"encomienda\": \"encomiend\",\n  \"encomiende\": \"encomiend\",\n  \"encontraba\": \"encontr\",\n  \"encontraban\": \"encontr\",\n  \"encontrada\": \"encontr\",\n  \"encontradas\": \"encontr\",\n  \"encontrado\": \"encontr\",\n  \"encontrados\": \"encontr\",\n  \"encontramos\": \"encontr\",\n  \"encontrar\": \"encontr\",\n  \"encontrara\": \"encontr\",\n  \"encontrará\": \"encontr\",\n  \"encontraran\": \"encontr\",\n  \"encontrarán\": \"encontr\",\n  \"encontrarás\": \"encontr\",\n  \"encontraremos\": \"encontr\",\n  \"encontrarle\": \"encontr\",\n  \"encontrarlo\": \"encontr\",\n  \"encontrarme\": \"encontr\",\n  \"encontraron\": \"encontr\",\n  \"encontrarse\": \"encontr\",\n  \"encontrársele\": \"encontrarsel\",\n  \"encontré\": \"encontr\",\n  \"encontró\": \"encontr\",\n  \"encriptación\": \"encript\",\n  \"encrucijada\": \"encrucij\",\n  \"encuadrados\": \"encuadr\",\n  \"encuadren\": \"encuadr\",\n  \"encubierta\": \"encubiert\",\n  \"encubiertos\": \"encubiert\",\n  \"encuentra\": \"encuentr\",\n  \"encuentran\": \"encuentr\",\n  \"encuentras\": \"encuentr\",\n  \"encuentre\": \"encuentr\",\n  \"encuentro\": \"encuentr\",\n  \"encuentros\": \"encuentr\",\n  \"encuesta\": \"encuest\",\n  \"encuestadora\": \"encuest\",\n  \"encuestados\": \"encuest\",\n  \"encuestaron\": \"encuest\",\n  \"encuestas\": \"encuest\",\n  \"encueste\": \"encuest\",\n  \"encumbran\": \"encumbr\",\n  \"endeavour\": \"endeavour\",\n  \"endebles\": \"endebl\",\n  \"enderezadas\": \"enderez\",\n  \"endeudamiento\": \"endeud\",\n  \"endiosado\": \"endi\",\n  \"endiosamiento\": \"endi\",\n  \"endocrinología\": \"endocrinolog\",\n  \"endocrinólogo\": \"endocrinolog\",\n  \"endulce\": \"endulc\",\n  \"endulzada\": \"endulz\",\n  \"enduro\": \"endur\",\n  \"enemiga\": \"enemig\",\n  \"enemigo\": \"enemig\",\n  \"enemigos\": \"enemig\",\n  \"energética\": \"energet\",\n  \"energético\": \"energet\",\n  \"energéticos\": \"energet\",\n  \"energía\": \"energ\",\n  \"enérgica\": \"energ\",\n  \"enérgicas\": \"energ\",\n  \"enérgico\": \"energ\",\n  \"enero\": \"ener\",\n  \"enervante\": \"enerv\",\n  \"enervantes\": \"enerv\",\n  \"enésima\": \"enesim\",\n  \"enfadaría\": \"enfad\",\n  \"énfasis\": \"enfasis\",\n  \"enfatiza\": \"enfatiz\",\n  \"enfatizará\": \"enfatiz\",\n  \"enfatizó\": \"enfatiz\",\n  \"enferma\": \"enferm\",\n  \"enfermarse\": \"enferm\",\n  \"enfermé\": \"enferm\",\n  \"enfermedad\": \"enfermed\",\n  \"enfermedades\": \"enfermedad\",\n  \"enfermera\": \"enfermer\",\n  \"enfermeras\": \"enfermer\",\n  \"enfermo\": \"enferm\",\n  \"enfermos\": \"enferm\",\n  \"enfiladas\": \"enfil\",\n  \"enfilamos\": \"enfil\",\n  \"enfoca\": \"enfoc\",\n  \"enfocadas\": \"enfoc\",\n  \"enfocado\": \"enfoc\",\n  \"enfocados\": \"enfoc\",\n  \"enfocan\": \"enfoc\",\n  \"enfocar\": \"enfoc\",\n  \"enfocará\": \"enfoc\",\n  \"enfocarán\": \"enfoc\",\n  \"enfocarse\": \"enfoc\",\n  \"enfoque\": \"enfoqu\",\n  \"enfoquen\": \"enfoqu\",\n  \"enfóquese\": \"enfoques\",\n  \"enfrascados\": \"enfrasc\",\n  \"enfrenta\": \"enfrent\",\n  \"enfrentaba\": \"enfrent\",\n  \"enfrentada\": \"enfrent\",\n  \"enfrentado\": \"enfrent\",\n  \"enfrentamiento\": \"enfrent\",\n  \"enfrentamientos\": \"enfrent\",\n  \"enfrentamos\": \"enfrent\",\n  \"enfrentan\": \"enfrent\",\n  \"enfrentando\": \"enfrent\",\n  \"enfrentándose\": \"enfrent\",\n  \"enfrentar\": \"enfrent\",\n  \"enfrentará\": \"enfrent\",\n  \"enfrentarán\": \"enfrent\",\n  \"enfrentaremos\": \"enfrent\",\n  \"enfrentarlos\": \"enfrent\",\n  \"enfrentarme\": \"enfrent\",\n  \"enfrentaron\": \"enfrent\",\n  \"enfrentarse\": \"enfrent\",\n  \"enfrente\": \"enfrent\",\n  \"enfrenten\": \"enfrent\",\n  \"enfrentó\": \"enfrent\",\n  \"enfriamiento\": \"enfriamient\",\n  \"enfundaron\": \"enfund\",\n  \"enfurecieron\": \"enfurec\",\n  \"engalana\": \"engalan\",\n  \"engañaba\": \"engañ\",\n  \"engañado\": \"engañ\",\n  \"engañar\": \"engañ\",\n  \"engancharle\": \"enganch\",\n  \"engaño\": \"engañ\",\n  \"engañosas\": \"engañ\",\n  \"engendra\": \"engendr\",\n  \"engineering\": \"engineering\",\n  \"englutidos\": \"englut\",\n  \"engomados\": \"engom\",\n  \"engordar\": \"engord\",\n  \"engordó\": \"engord\",\n  \"engorrosas\": \"engorr\",\n  \"engorrosos\": \"engorr\",\n  \"engracia\": \"engraci\",\n  \"engranaje\": \"engranaj\",\n  \"engrandecer\": \"engrandec\",\n  \"engrane\": \"engran\",\n  \"engrasen\": \"engras\",\n  \"enhorabuena\": \"enhorabuen\",\n  \"enigmático\": \"enigmat\",\n  \"enjambre\": \"enjambr\",\n  \"enjuiciado\": \"enjuici\",\n  \"enjuiciar\": \"enjuici\",\n  \"enlace\": \"enlac\",\n  \"enlatados\": \"enlat\",\n  \"enlaza\": \"enlaz\",\n  \"enlazadas\": \"enlaz\",\n  \"enlazado\": \"enlaz\",\n  \"enlistar\": \"enlist\",\n  \"enlisten\": \"enlist\",\n  \"enmarañado\": \"enmarañ\",\n  \"enmarca\": \"enmarc\",\n  \"enmarcarlos\": \"enmarc\",\n  \"enmarcaron\": \"enmarc\",\n  \"enmarcarse\": \"enmarc\",\n  \"enmascarado\": \"enmascar\",\n  \"enmedio\": \"enmedi\",\n  \"enmendar\": \"enmend\",\n  \"enoc\": \"enoc\",\n  \"enojaran\": \"enoj\",\n  \"enojo\": \"enoj\",\n  \"enojó\": \"enoj\",\n  \"enorme\": \"enorm\",\n  \"enormemente\": \"enorm\",\n  \"enormes\": \"enorm\",\n  \"enraizada\": \"enraiz\",\n  \"enrazado\": \"enraz\",\n  \"enrazados\": \"enraz\",\n  \"enreden\": \"enred\",\n  \"enrico\": \"enric\",\n  \"enrique\": \"enriqu\",\n  \"enriquece\": \"enriquec\",\n  \"enriquecer\": \"enriquec\",\n  \"enriquecerse\": \"enriquec\",\n  \"enriquecida\": \"enriquec\",\n  \"enriquecimiento\": \"enriquec\",\n  \"enriqueció\": \"enriquec\",\n  \"enríquez\": \"enriquez\",\n  \"ensambladora\": \"ensambl\",\n  \"ensamblar\": \"ensambl\",\n  \"ensamble\": \"ensambl\",\n  \"ensambles\": \"ensambl\",\n  \"ensanchado\": \"ensanch\",\n  \"ensangrentados\": \"ensangrent\",\n  \"ensaya\": \"ensay\",\n  \"ensayado\": \"ensay\",\n  \"ensayaron\": \"ensay\",\n  \"ensayista\": \"ensay\",\n  \"ensayistas\": \"ensay\",\n  \"ensayo\": \"ensay\",\n  \"enseguida\": \"ensegu\",\n  \"enseña\": \"enseñ\",\n  \"enseñaba\": \"enseñ\",\n  \"enseñaban\": \"enseñ\",\n  \"ensenada\": \"ensen\",\n  \"enseñado\": \"enseñ\",\n  \"enseñan\": \"enseñ\",\n  \"enseñando\": \"enseñ\",\n  \"enseñanza\": \"enseñ\",\n  \"enseñanzas\": \"enseñ\",\n  \"enseñar\": \"enseñ\",\n  \"enseñarles\": \"enseñ\",\n  \"enseñen\": \"enseñ\",\n  \"enseñes\": \"enseñ\",\n  \"enseñó\": \"enseñ\",\n  \"ensoberbecerse\": \"ensoberbec\",\n  \"ensombrecían\": \"ensombrec\",\n  \"ensorberbecera\": \"ensorberbecer\",\n  \"ensordecedores\": \"ensordecedor\",\n  \"ensuciar\": \"ensuci\",\n  \"entabladas\": \"entabl\",\n  \"entablar\": \"entabl\",\n  \"entablarse\": \"entabl\",\n  \"ente\": \"ente\",\n  \"entenados\": \"enten\",\n  \"entendederas\": \"entendeder\",\n  \"entendemos\": \"entend\",\n  \"entender\": \"entend\",\n  \"entenderá\": \"entend\",\n  \"entenderé\": \"entend\",\n  \"entenderíamos\": \"entend\",\n  \"entendí\": \"entend\",\n  \"entendible\": \"entend\",\n  \"entendibles\": \"entend\",\n  \"entendido\": \"entend\",\n  \"entendimiento\": \"entend\",\n  \"entera\": \"enter\",\n  \"enterada\": \"enter\",\n  \"enterado\": \"enter\",\n  \"enterados\": \"enter\",\n  \"enteramente\": \"enter\",\n  \"enteramos\": \"enter\",\n  \"enterar\": \"enter\",\n  \"enterarse\": \"enter\",\n  \"entere\": \"enter\",\n  \"enteremos\": \"enter\",\n  \"enteren\": \"enter\",\n  \"entereza\": \"enterez\",\n  \"entero\": \"enter\",\n  \"enteró\": \"enter\",\n  \"enteros\": \"enter\",\n  \"enterrarlos\": \"enterr\",\n  \"entes\": \"entes\",\n  \"entidad\": \"entid\",\n  \"entidades\": \"entidad\",\n  \"entienda\": \"entiend\",\n  \"entiendan\": \"entiend\",\n  \"entiende\": \"entiend\",\n  \"entienden\": \"entiend\",\n  \"entierro\": \"entierr\",\n  \"entonado\": \"enton\",\n  \"entonces\": \"entonc\",\n  \"entonen\": \"enton\",\n  \"entorno\": \"entorn\",\n  \"entorpece\": \"entorpec\",\n  \"entra\": \"entra\",\n  \"entraban\": \"entrab\",\n  \"entrada\": \"entrad\",\n  \"entradas\": \"entrad\",\n  \"entrado\": \"entrad\",\n  \"entramos\": \"entram\",\n  \"entran\": \"entran\",\n  \"entraña\": \"entrañ\",\n  \"entrañaría\": \"entrañ\",\n  \"entrando\": \"entrand\",\n  \"entrándole\": \"entrandol\",\n  \"entrante\": \"entrant\",\n  \"entrar\": \"entrar\",\n  \"entrará\": \"entrar\",\n  \"entraran\": \"entrar\",\n  \"entrarán\": \"entraran\",\n  \"entraría\": \"entrar\",\n  \"entrarían\": \"entrar\",\n  \"entrarle\": \"entrarl\",\n  \"entraron\": \"entraron\",\n  \"entre\": \"entre\",\n  \"entré\": \"entre\",\n  \"entrecano\": \"entrecan\",\n  \"entrecomillas\": \"entrecomill\",\n  \"entrecruzan\": \"entrecruz\",\n  \"entrega\": \"entreg\",\n  \"entregada\": \"entreg\",\n  \"entregadas\": \"entreg\",\n  \"entregado\": \"entreg\",\n  \"entregados\": \"entreg\",\n  \"entregan\": \"entreg\",\n  \"entregándoles\": \"entreg\",\n  \"entregar\": \"entreg\",\n  \"entregara\": \"entreg\",\n  \"entregará\": \"entreg\",\n  \"entregaran\": \"entreg\",\n  \"entregarán\": \"entreg\",\n  \"entregaría\": \"entreg\",\n  \"entregarían\": \"entreg\",\n  \"entregarla\": \"entreg\",\n  \"entregarle\": \"entreg\",\n  \"entregarme\": \"entreg\",\n  \"entregaron\": \"entreg\",\n  \"entregarse\": \"entreg\",\n  \"entregársela\": \"entreg\",\n  \"entregas\": \"entreg\",\n  \"entrego\": \"entreg\",\n  \"entregó\": \"entreg\",\n  \"entregue\": \"entreg\",\n  \"entreguen\": \"entreg\",\n  \"entréguenos\": \"entreguen\",\n  \"entrelazadas\": \"entrelaz\",\n  \"entrelíneas\": \"entrelin\",\n  \"entren\": \"entren\",\n  \"entrena\": \"entren\",\n  \"entrenaba\": \"entren\",\n  \"entrenado\": \"entren\",\n  \"entrenador\": \"entren\",\n  \"entrenadores\": \"entren\",\n  \"entrenados\": \"entren\",\n  \"entrenamiento\": \"entren\",\n  \"entrenamientos\": \"entren\",\n  \"entrenan\": \"entren\",\n  \"entrenando\": \"entren\",\n  \"entrenar\": \"entren\",\n  \"entrenará\": \"entren\",\n  \"entrenarán\": \"entren\",\n  \"entrenarlo\": \"entren\",\n  \"entrenarlos\": \"entren\",\n  \"entrenaron\": \"entren\",\n  \"entrenó\": \"entren\",\n  \"entretejida\": \"entretej\",\n  \"entretener\": \"entreten\",\n  \"entretenían\": \"entreten\",\n  \"entretenimiento\": \"entreten\",\n  \"entretenimientos\": \"entreten\",\n  \"entrever\": \"entrev\",\n  \"entrevista\": \"entrev\",\n  \"entrevistaba\": \"entrevist\",\n  \"entrevistada\": \"entrevist\",\n  \"entrevistado\": \"entrevist\",\n  \"entrevistados\": \"entrevist\",\n  \"entrevistar\": \"entrevist\",\n  \"entrevistaron\": \"entrevist\",\n  \"entrevistarse\": \"entrevist\",\n  \"entrevistas\": \"entrev\",\n  \"entrevistó\": \"entrevist\",\n  \"entró\": \"entro\",\n  \"entrometiera\": \"entromet\",\n  \"entusiasmada\": \"entusiasm\",\n  \"entusiasmado\": \"entusiasm\",\n  \"entusiasmo\": \"entusiasm\",\n  \"entusiasta\": \"entusiast\",\n  \"entusiastas\": \"entusiast\",\n  \"enumera\": \"enumer\",\n  \"enumerará\": \"enumer\",\n  \"envasadora\": \"envas\",\n  \"envase\": \"envas\",\n  \"envases\": \"envas\",\n  \"envejecen\": \"envejec\",\n  \"envejecimiento\": \"envejec\",\n  \"envenenada\": \"envenen\",\n  \"envenenarla\": \"envenen\",\n  \"envia\": \"envi\",\n  \"envía\": \"envi\",\n  \"enviada\": \"envi\",\n  \"enviadas\": \"envi\",\n  \"enviado\": \"envi\",\n  \"enviados\": \"envi\",\n  \"enviamos\": \"envi\",\n  \"envían\": \"envi\",\n  \"enviando\": \"envi\",\n  \"enviar\": \"envi\",\n  \"enviará\": \"envi\",\n  \"enviarán\": \"envi\",\n  \"enviaría\": \"envi\",\n  \"enviarlas\": \"envi\",\n  \"enviaron\": \"envi\",\n  \"envidia\": \"envidi\",\n  \"envidiables\": \"envidi\",\n  \"envidiamos\": \"envidi\",\n  \"envidias\": \"envidi\",\n  \"envidiosos\": \"envidi\",\n  \"envíe\": \"envi\",\n  \"envio\": \"envi\",\n  \"envío\": \"envi\",\n  \"envió\": \"envi\",\n  \"envoltorio\": \"envoltori\",\n  \"envoltura\": \"envoltur\",\n  \"envolturas\": \"envoltur\",\n  \"envolverse\": \"envolv\",\n  \"envolviéndose\": \"envolv\",\n  \"envueltos\": \"envuelt\",\n  \"enyesado\": \"enyes\",\n  \"eory\": \"eory\",\n  \"epazote\": \"epazot\",\n  \"episcopado\": \"episcop\",\n  \"episcopal\": \"episcopal\",\n  \"episodio\": \"episodi\",\n  \"episodios\": \"episodi\",\n  \"epístola\": \"epistol\",\n  \"epistolar\": \"epistol\",\n  \"época\": \"epoc\",\n  \"épocas\": \"epoc\",\n  \"equals\": \"equals\",\n  \"equidad\": \"equid\",\n  \"equilibrada\": \"equilibr\",\n  \"equilibrado\": \"equilibr\",\n  \"equilibrar\": \"equilibr\",\n  \"equilibrarlos\": \"equilibr\",\n  \"equilibrio\": \"equilibri\",\n  \"equipada\": \"equip\",\n  \"equipado\": \"equip\",\n  \"equipados\": \"equip\",\n  \"equipaje\": \"equipaj\",\n  \"equipan\": \"equip\",\n  \"equipar\": \"equip\",\n  \"equipararnos\": \"equipar\",\n  \"equipment\": \"equipment\",\n  \"equipo\": \"equip\",\n  \"equipos\": \"equip\",\n  \"equisetum\": \"equisetum\",\n  \"equitación\": \"equit\",\n  \"equivale\": \"equival\",\n  \"equivalen\": \"equival\",\n  \"equivalente\": \"equivalent\",\n  \"equivalentes\": \"equivalent\",\n  \"equivoca\": \"equivoc\",\n  \"equivocaba\": \"equivoc\",\n  \"equivocaban\": \"equivoc\",\n  \"equivocaciones\": \"equivoc\",\n  \"equivocados\": \"equivoc\",\n  \"equivocarse\": \"equivoc\",\n  \"equivocó\": \"equivoc\",\n  \"equivoqué\": \"equivoqu\",\n  \"er\": \"er\",\n  \"era\": \"era\",\n  \"eramos\": \"eram\",\n  \"eran\": \"eran\",\n  \"erario\": \"erari\",\n  \"eres\": \"eres\",\n  \"erhard\": \"erhard\",\n  \"eric\": \"eric\",\n  \"erick\": \"erick\",\n  \"erigido\": \"erig\",\n  \"erika\": \"erik\",\n  \"ermita\": \"ermit\",\n  \"ernesto\": \"ernest\",\n  \"erogaron\": \"erog\",\n  \"eros\": \"eros\",\n  \"erosionada\": \"erosion\",\n  \"erosionadas\": \"erosion\",\n  \"eróticas\": \"erot\",\n  \"erraban\": \"errab\",\n  \"erradica\": \"errad\",\n  \"erradicación\": \"errad\",\n  \"errado\": \"errad\",\n  \"errática\": \"errat\",\n  \"erráticos\": \"errat\",\n  \"errónea\": \"errone\",\n  \"erróneamente\": \"erron\",\n  \"erróneo\": \"errone\",\n  \"error\": \"error\",\n  \"errores\": \"error\",\n  \"erupción\": \"erupcion\",\n  \"es\": \"es\",\n  \"esa\": \"esa\",\n  \"ésa\": \"esa\",\n  \"esai\": \"esai\",\n  \"esas\": \"esas\",\n  \"ésas\": \"esas\",\n  \"esbozo\": \"esboz\",\n  \"escabrosos\": \"escabr\",\n  \"escala\": \"escal\",\n  \"escalada\": \"escal\",\n  \"escalafón\": \"escalafon\",\n  \"escalante\": \"escal\",\n  \"escalar\": \"escal\",\n  \"escalera\": \"escaler\",\n  \"escaleras\": \"escaler\",\n  \"escalinata\": \"escalinat\",\n  \"escalón\": \"escalon\",\n  \"escalona\": \"escalon\",\n  \"escalonados\": \"escalon\",\n  \"escalones\": \"escalon\",\n  \"escamilla\": \"escamill\",\n  \"escampavías\": \"escampav\",\n  \"escándalo\": \"escandal\",\n  \"escándalos\": \"escandal\",\n  \"escandalosas\": \"escandal\",\n  \"escaños\": \"escañ\",\n  \"escapa\": \"escap\",\n  \"escapada\": \"escap\",\n  \"escapado\": \"escap\",\n  \"escapando\": \"escap\",\n  \"escapar\": \"escap\",\n  \"escaparon\": \"escap\",\n  \"escape\": \"escap\",\n  \"escapó\": \"escap\",\n  \"escarmiento\": \"escarmient\",\n  \"escasa\": \"escas\",\n  \"escasas\": \"escas\",\n  \"escasez\": \"escasez\",\n  \"escaso\": \"escas\",\n  \"escasos\": \"escas\",\n  \"escena\": \"escen\",\n  \"escenario\": \"escenari\",\n  \"escenarios\": \"escenari\",\n  \"escenas\": \"escen\",\n  \"escenciales\": \"escencial\",\n  \"escénico\": \"escen\",\n  \"escenificará\": \"escenific\",\n  \"escenificarán\": \"escenific\",\n  \"escenografía\": \"escenograf\",\n  \"escenógrafos\": \"escenograf\",\n  \"escisiones\": \"escision\",\n  \"esclarecer\": \"esclarec\",\n  \"esclarecimiento\": \"esclarec\",\n  \"esclarezca\": \"esclarezc\",\n  \"esclava\": \"esclav\",\n  \"esclavas\": \"esclav\",\n  \"esclavitud\": \"esclavitud\",\n  \"esclavo\": \"esclav\",\n  \"escoba\": \"escob\",\n  \"escobar\": \"escob\",\n  \"escobas\": \"escob\",\n  \"escobedo\": \"escobed\",\n  \"escobera\": \"escober\",\n  \"escocés\": \"escoces\",\n  \"escoge\": \"escog\",\n  \"escoger\": \"escog\",\n  \"escogería\": \"escog\",\n  \"escoges\": \"escog\",\n  \"escogido\": \"escog\",\n  \"escogiendo\": \"escog\",\n  \"escogieron\": \"escog\",\n  \"escogimos\": \"escog\",\n  \"escogió\": \"escog\",\n  \"escojan\": \"escoj\",\n  \"escolar\": \"escol\",\n  \"escolares\": \"escolar\",\n  \"escolarización\": \"escolariz\",\n  \"escollo\": \"escoll\",\n  \"escoltado\": \"escolt\",\n  \"escombrera\": \"escombrer\",\n  \"escombros\": \"escombr\",\n  \"escondan\": \"escond\",\n  \"esconde\": \"escond\",\n  \"esconden\": \"escond\",\n  \"esconder\": \"escond\",\n  \"esconderse\": \"escond\",\n  \"escondida\": \"escond\",\n  \"escondidas\": \"escond\",\n  \"escondido\": \"escond\",\n  \"escondió\": \"escond\",\n  \"escondite\": \"escondit\",\n  \"escondrijos\": \"escondrij\",\n  \"escore\": \"escor\",\n  \"escoriaciones\": \"escori\",\n  \"escorpión\": \"escorpion\",\n  \"escote\": \"escot\",\n  \"escotes\": \"escot\",\n  \"escriba\": \"escrib\",\n  \"escríbanos\": \"escriban\",\n  \"escribe\": \"escrib\",\n  \"escriben\": \"escrib\",\n  \"escribía\": \"escrib\",\n  \"escribiendo\": \"escrib\",\n  \"escribieran\": \"escrib\",\n  \"escribieron\": \"escrib\",\n  \"escribió\": \"escrib\",\n  \"escribir\": \"escrib\",\n  \"escribirá\": \"escrib\",\n  \"escribirlas\": \"escrib\",\n  \"escribirle\": \"escrib\",\n  \"escribirse\": \"escrib\",\n  \"escribo\": \"escrib\",\n  \"escrita\": \"escrit\",\n  \"escritas\": \"escrit\",\n  \"escrito\": \"escrit\",\n  \"escritor\": \"escritor\",\n  \"escritora\": \"escritor\",\n  \"escritores\": \"escritor\",\n  \"escritorio\": \"escritori\",\n  \"escritos\": \"escrit\",\n  \"escritura\": \"escritur\",\n  \"escrituras\": \"escritur\",\n  \"escrutinio\": \"escrutini\",\n  \"escuadra\": \"escuadr\",\n  \"escuadras\": \"escuadr\",\n  \"escuadrones\": \"escuadron\",\n  \"escuálidas\": \"escual\",\n  \"escucha\": \"escuch\",\n  \"escuchaba\": \"escuch\",\n  \"escuchaban\": \"escuch\",\n  \"escuchadas\": \"escuch\",\n  \"escuchado\": \"escuch\",\n  \"escuchan\": \"escuch\",\n  \"escuchando\": \"escuch\",\n  \"escuchándolas\": \"escuch\",\n  \"escuchar\": \"escuch\",\n  \"escuchará\": \"escuch\",\n  \"escucharán\": \"escuch\",\n  \"escucharla\": \"escuch\",\n  \"escucharlos\": \"escuch\",\n  \"escucharon\": \"escuch\",\n  \"escuche\": \"escuch\",\n  \"escuché\": \"escuch\",\n  \"escuchen\": \"escuch\",\n  \"escuchó\": \"escuch\",\n  \"escudería\": \"escud\",\n  \"escudo\": \"escud\",\n  \"escudriñan\": \"escudriñ\",\n  \"escuela\": \"escuel\",\n  \"escuelas\": \"escuel\",\n  \"escuetamente\": \"escuet\",\n  \"escultor\": \"escultor\",\n  \"escultórico\": \"escultor\",\n  \"escultura\": \"escultur\",\n  \"esculturas\": \"escultur\",\n  \"escupir\": \"escup\",\n  \"escurridizo\": \"escurridiz\",\n  \"escurridizos\": \"escurridiz\",\n  \"escurridos\": \"escurr\",\n  \"esde\": \"esde\",\n  \"ese\": \"ese\",\n  \"ése\": \"ese\",\n  \"esencia\": \"esenci\",\n  \"esencial\": \"esencial\",\n  \"esencialmente\": \"esencial\",\n  \"esfera\": \"esfer\",\n  \"esférico\": \"esfer\",\n  \"esforzamos\": \"esforz\",\n  \"esforzarnos\": \"esforz\",\n  \"esforzaron\": \"esforz\",\n  \"esfuercen\": \"esfuerc\",\n  \"esfuerzo\": \"esfuerz\",\n  \"esfuerzos\": \"esfuerz\",\n  \"esfuman\": \"esfum\",\n  \"esgrimía\": \"esgrim\",\n  \"esguince\": \"esguinc\",\n  \"eslabonó\": \"eslabon\",\n  \"eslava\": \"eslav\",\n  \"esmaltes\": \"esmalt\",\n  \"esmeralda\": \"esmerald\",\n  \"esmeraldas\": \"esmerald\",\n  \"esmeran\": \"esmer\",\n  \"eso\": \"eso\",\n  \"esos\": \"esos\",\n  \"ésos\": \"esos\",\n  \"espacial\": \"espacial\",\n  \"espaciales\": \"espacial\",\n  \"espacio\": \"espaci\",\n  \"espacios\": \"espaci\",\n  \"espada\": \"espad\",\n  \"espalda\": \"espald\",\n  \"espaldas\": \"espald\",\n  \"españa\": \"españ\",\n  \"español\": \"español\",\n  \"española\": \"español\",\n  \"españolas\": \"español\",\n  \"españoles\": \"español\",\n  \"españolitos\": \"españolit\",\n  \"espansión\": \"espansion\",\n  \"espanta\": \"espant\",\n  \"espantadas\": \"espant\",\n  \"esparcimiento\": \"esparc\",\n  \"esparció\": \"esparc\",\n  \"esparza\": \"esparz\",\n  \"espasmo\": \"espasm\",\n  \"especial\": \"especial\",\n  \"especiales\": \"especial\",\n  \"especialidad\": \"especial\",\n  \"especialidades\": \"especial\",\n  \"especialista\": \"especial\",\n  \"especialistas\": \"especial\",\n  \"especializa\": \"especializ\",\n  \"especialización\": \"especializ\",\n  \"especializada\": \"especializ\",\n  \"especializadas\": \"especializ\",\n  \"especializado\": \"especializ\",\n  \"especializados\": \"especializ\",\n  \"especialmente\": \"especial\",\n  \"especie\": \"especi\",\n  \"especies\": \"especi\",\n  \"especifica\": \"especif\",\n  \"específica\": \"especif\",\n  \"especificaba\": \"especific\",\n  \"especificaciones\": \"especif\",\n  \"especificado\": \"especific\",\n  \"específicamente\": \"especif\",\n  \"especifican\": \"especific\",\n  \"especificar\": \"especific\",\n  \"específicas\": \"especif\",\n  \"específico\": \"especif\",\n  \"especificó\": \"especific\",\n  \"específicos\": \"especif\",\n  \"especifiquen\": \"especifiqu\",\n  \"espectacular\": \"espectacul\",\n  \"espectaculares\": \"espectacular\",\n  \"espectacularmente\": \"espectacular\",\n  \"espectáculo\": \"espectacul\",\n  \"espectáculos\": \"espectacul\",\n  \"espectador\": \"espect\",\n  \"espectadores\": \"espect\",\n  \"espectro\": \"espectr\",\n  \"espectrógrafo\": \"espectrograf\",\n  \"espectrómetro\": \"espectrometr\",\n  \"espectroredioeléctrico\": \"espectroredioelectr\",\n  \"especulador\": \"especul\",\n  \"especuladores\": \"especul\",\n  \"especular\": \"especul\",\n  \"especulativos\": \"especul\",\n  \"especuló\": \"especul\",\n  \"espejismo\": \"espej\",\n  \"espejo\": \"espej\",\n  \"espera\": \"esper\",\n  \"esperaba\": \"esper\",\n  \"esperábamos\": \"esper\",\n  \"esperaban\": \"esper\",\n  \"esperada\": \"esper\",\n  \"esperado\": \"esper\",\n  \"esperados\": \"esper\",\n  \"esperamos\": \"esper\",\n  \"esperan\": \"esper\",\n  \"esperando\": \"esper\",\n  \"esperanza\": \"esper\",\n  \"esperanzado\": \"esperanz\",\n  \"esperanzados\": \"esperanz\",\n  \"esperanzas\": \"esper\",\n  \"esperar\": \"esper\",\n  \"esperara\": \"esper\",\n  \"esperará\": \"esper\",\n  \"esperarán\": \"esper\",\n  \"esperaré\": \"esper\",\n  \"esperaremos\": \"esper\",\n  \"esperaría\": \"esper\",\n  \"esperarlos\": \"esper\",\n  \"esperaron\": \"esper\",\n  \"esperarse\": \"esper\",\n  \"espere\": \"esper\",\n  \"esperemos\": \"esper\",\n  \"espero\": \"esper\",\n  \"esperó\": \"esper\",\n  \"esperpénticas\": \"esperpent\",\n  \"espesa\": \"espes\",\n  \"espesor\": \"espesor\",\n  \"espetar\": \"espet\",\n  \"espía\": \"espi\",\n  \"espían\": \"espi\",\n  \"espiando\": \"espi\",\n  \"espina\": \"espin\",\n  \"espinal\": \"espinal\",\n  \"espinosa\": \"espin\",\n  \"espinoso\": \"espin\",\n  \"espinoza\": \"espinoz\",\n  \"espionaje\": \"espionaj\",\n  \"espiridión\": \"espiridion\",\n  \"espíritu\": \"espiritu\",\n  \"espiritual\": \"espiritual\",\n  \"espirituales\": \"espiritual\",\n  \"espiritualidad\": \"espiritual\",\n  \"espiritualmente\": \"espiritual\",\n  \"espíritus\": \"espiritus\",\n  \"esplendor\": \"esplendor\",\n  \"esplendores\": \"esplendor\",\n  \"espontánea\": \"espontane\",\n  \"espontáneamente\": \"espontan\",\n  \"espontáneo\": \"espontane\",\n  \"esporádica\": \"esporad\",\n  \"esposa\": \"espos\",\n  \"esposas\": \"espos\",\n  \"esposo\": \"espos\",\n  \"esposos\": \"espos\",\n  \"espuela\": \"espuel\",\n  \"espuma\": \"espum\",\n  \"esqueleto\": \"esquelet\",\n  \"esquema\": \"esquem\",\n  \"esquemas\": \"esquem\",\n  \"esquer\": \"esqu\",\n  \"esquiar\": \"esqui\",\n  \"esquimal\": \"esquimal\",\n  \"esquina\": \"esquin\",\n  \"esquinas\": \"esquin\",\n  \"esquivar\": \"esquiv\",\n  \"esquivel\": \"esquivel\",\n  \"esquizofrenia\": \"esquizofreni\",\n  \"esta\": \"esta\",\n  \"ésta\": \"esta\",\n  \"está\": \"esta\",\n  \"estaba\": \"estab\",\n  \"estábamos\": \"estab\",\n  \"estaban\": \"estab\",\n  \"estabilidad\": \"estabil\",\n  \"estabilizar\": \"estabiliz\",\n  \"estable\": \"establ\",\n  \"establece\": \"establec\",\n  \"establecemos\": \"establec\",\n  \"establecen\": \"establec\",\n  \"establecer\": \"establec\",\n  \"establecerá\": \"establec\",\n  \"establecerse\": \"establec\",\n  \"establecía\": \"establec\",\n  \"establecían\": \"establec\",\n  \"establecida\": \"establec\",\n  \"establecidas\": \"establec\",\n  \"establecido\": \"establec\",\n  \"establecidos\": \"establec\",\n  \"estableciendo\": \"establec\",\n  \"establecieron\": \"establec\",\n  \"establecimiento\": \"establec\",\n  \"establecimientos\": \"establec\",\n  \"estableció\": \"establec\",\n  \"establezca\": \"establezc\",\n  \"establezcan\": \"establezc\",\n  \"estación\": \"estacion\",\n  \"estacionado\": \"estacion\",\n  \"estacionados\": \"estacion\",\n  \"estacionamiento\": \"estacion\",\n  \"estacionamientos\": \"estacion\",\n  \"estacionar\": \"estacion\",\n  \"estacionarios\": \"estacionari\",\n  \"estacionarse\": \"estacion\",\n  \"estaciones\": \"estacion\",\n  \"estacionó\": \"estacion\",\n  \"estacón\": \"estacon\",\n  \"estadía\": \"estad\",\n  \"estadio\": \"estadi\",\n  \"estadios\": \"estadi\",\n  \"estadista\": \"estad\",\n  \"estadistas\": \"estad\",\n  \"estadística\": \"estadist\",\n  \"estadísticas\": \"estadist\",\n  \"estado\": \"estad\",\n  \"estados\": \"estad\",\n  \"estadounidense\": \"estadounidens\",\n  \"estadounidenses\": \"estadounidens\",\n  \"estafan\": \"estaf\",\n  \"estalla\": \"estall\",\n  \"estallar\": \"estall\",\n  \"estallaría\": \"estall\",\n  \"estallido\": \"estall\",\n  \"estalló\": \"estall\",\n  \"estambre\": \"estambr\",\n  \"estamos\": \"estam\",\n  \"estampas\": \"estamp\",\n  \"estampilla\": \"estampill\",\n  \"estampita\": \"estampit\",\n  \"están\": \"estan\",\n  \"estancadas\": \"estanc\",\n  \"estancamiento\": \"estanc\",\n  \"estancarse\": \"estanc\",\n  \"estancia\": \"estanci\",\n  \"estancias\": \"estanci\",\n  \"estandar\": \"estand\",\n  \"estándar\": \"estand\",\n  \"estándares\": \"estandar\",\n  \"estandarizadas\": \"estandariz\",\n  \"estandarte\": \"estandart\",\n  \"estando\": \"estand\",\n  \"estanques\": \"estanqu\",\n  \"estanzuela\": \"estanzuel\",\n  \"estar\": \"estar\",\n  \"estará\": \"estar\",\n  \"estarán\": \"estaran\",\n  \"estaremos\": \"estar\",\n  \"estaría\": \"estar\",\n  \"estaríamos\": \"estar\",\n  \"estarían\": \"estar\",\n  \"estarle\": \"estarl\",\n  \"estarse\": \"estars\",\n  \"estas\": \"estas\",\n  \"éstas\": \"estas\",\n  \"estás\": \"estas\",\n  \"estatal\": \"estatal\",\n  \"estatales\": \"estatal\",\n  \"estatua\": \"estatu\",\n  \"estatuas\": \"estatu\",\n  \"estatura\": \"estatur\",\n  \"estatuto\": \"estatut\",\n  \"estatutos\": \"estatut\",\n  \"este\": \"este\",\n  \"éste\": \"este\",\n  \"esté\": \"este\",\n  \"esteban\": \"esteb\",\n  \"estelar\": \"estel\",\n  \"estelares\": \"estelar\",\n  \"estelarizado\": \"estelariz\",\n  \"estelarizar\": \"estelariz\",\n  \"estemos\": \"estem\",\n  \"estén\": \"esten\",\n  \"estéreo\": \"estere\",\n  \"estereotipan\": \"estereotip\",\n  \"esterlinas\": \"esterlin\",\n  \"esternón\": \"esternon\",\n  \"estética\": \"estet\",\n  \"estéticamente\": \"estet\",\n  \"estéticas\": \"estet\",\n  \"estéticos\": \"estet\",\n  \"estévez\": \"estevez\",\n  \"esthela\": \"esthel\",\n  \"esther\": \"esther\",\n  \"estigma\": \"estigm\",\n  \"estilo\": \"estil\",\n  \"estilos\": \"estil\",\n  \"estima\": \"estim\",\n  \"estimaba\": \"estim\",\n  \"estimación\": \"estim\",\n  \"estimaciones\": \"estim\",\n  \"estimada\": \"estim\",\n  \"estimado\": \"estim\",\n  \"estimados\": \"estim\",\n  \"estimamos\": \"estim\",\n  \"estiman\": \"estim\",\n  \"estimando\": \"estim\",\n  \"estimarás\": \"estim\",\n  \"estimaron\": \"estim\",\n  \"estimé\": \"estim\",\n  \"estimó\": \"estim\",\n  \"estimula\": \"estimul\",\n  \"estimulación\": \"estimul\",\n  \"estimulada\": \"estimul\",\n  \"estimulado\": \"estimul\",\n  \"estimulados\": \"estimul\",\n  \"estimular\": \"estimul\",\n  \"estimulo\": \"estimul\",\n  \"estímulo\": \"estimul\",\n  \"estímulos\": \"estimul\",\n  \"estipula\": \"estipul\",\n  \"estipulaba\": \"estipul\",\n  \"estira\": \"estir\",\n  \"estiró\": \"estir\",\n  \"estirón\": \"estiron\",\n  \"estirpe\": \"estirp\",\n  \"esto\": \"esto\",\n  \"ésto\": \"esto\",\n  \"estocada\": \"estoc\",\n  \"estocolmo\": \"estocolm\",\n  \"estomacal\": \"estomacal\",\n  \"estómago\": \"estomag\",\n  \"estopa\": \"estop\",\n  \"estoperoles\": \"estoperol\",\n  \"estorba\": \"estorb\",\n  \"estorbaba\": \"estorb\",\n  \"estorbe\": \"estorb\",\n  \"estos\": \"estos\",\n  \"éstos\": \"estos\",\n  \"estoy\": \"estoy\",\n  \"estrada\": \"estrad\",\n  \"estrado\": \"estrad\",\n  \"estragos\": \"estrag\",\n  \"estrangulado\": \"estrangul\",\n  \"estrasburgo\": \"estrasburg\",\n  \"estratagemas\": \"estratagem\",\n  \"estratega\": \"estrateg\",\n  \"estrategia\": \"estrategi\",\n  \"estrategias\": \"estrategi\",\n  \"estratégica\": \"estrateg\",\n  \"estratégicas\": \"estrateg\",\n  \"estratégico\": \"estrateg\",\n  \"estratégicos\": \"estrateg\",\n  \"estratos\": \"estrat\",\n  \"estratosféricas\": \"estratosfer\",\n  \"estrecha\": \"estrech\",\n  \"estrechándose\": \"estrech\",\n  \"estrechar\": \"estrech\",\n  \"estrecharon\": \"estrech\",\n  \"estrechas\": \"estrech\",\n  \"estrecho\": \"estrech\",\n  \"estrechó\": \"estrech\",\n  \"estrechos\": \"estrech\",\n  \"estrella\": \"estrell\",\n  \"estrellado\": \"estrell\",\n  \"estrellamos\": \"estrell\",\n  \"estrellar\": \"estrell\",\n  \"estrellas\": \"estrell\",\n  \"estrelló\": \"estrell\",\n  \"estremeció\": \"estremec\",\n  \"estrena\": \"estren\",\n  \"estrenado\": \"estren\",\n  \"estrenan\": \"estren\",\n  \"estrenando\": \"estren\",\n  \"estrenándose\": \"estren\",\n  \"estrenar\": \"estren\",\n  \"estrenará\": \"estren\",\n  \"estrenaron\": \"estren\",\n  \"estreno\": \"estren\",\n  \"estrenó\": \"estren\",\n  \"estrenos\": \"estren\",\n  \"estrépito\": \"estrepit\",\n  \"estrepitosa\": \"estrepit\",\n  \"estrepitosamente\": \"estrepit\",\n  \"estribo\": \"estrib\",\n  \"estricta\": \"estrict\",\n  \"estrictamente\": \"estrict\",\n  \"estrictas\": \"estrict\",\n  \"estricto\": \"estrict\",\n  \"estrictos\": \"estrict\",\n  \"estropeadas\": \"estrop\",\n  \"estropear\": \"estrop\",\n  \"estructura\": \"estructur\",\n  \"estructuración\": \"estructur\",\n  \"estructural\": \"estructural\",\n  \"estructuras\": \"estructur\",\n  \"estruendo\": \"estruend\",\n  \"estudia\": \"estudi\",\n  \"estudiaba\": \"estudi\",\n  \"estudiaban\": \"estudi\",\n  \"estudiados\": \"estudi\",\n  \"estudian\": \"estudi\",\n  \"estudiando\": \"estudi\",\n  \"estudiante\": \"estudi\",\n  \"estudiantes\": \"estudi\",\n  \"estudiantil\": \"estudiantil\",\n  \"estudiantiles\": \"estudiantil\",\n  \"estudiar\": \"estudi\",\n  \"estudiará\": \"estudi\",\n  \"estudiaron\": \"estudi\",\n  \"estudiarse\": \"estudi\",\n  \"estudie\": \"estudi\",\n  \"estudié\": \"estudi\",\n  \"estudien\": \"estudi\",\n  \"estudio\": \"estudi\",\n  \"estudió\": \"estud\",\n  \"estudios\": \"estudi\",\n  \"estudioso\": \"estudi\",\n  \"estudiosos\": \"estudi\",\n  \"estupefacción\": \"estupefaccion\",\n  \"estupefacta\": \"estupefact\",\n  \"estupendo\": \"estupend\",\n  \"estúpida\": \"estup\",\n  \"estupideces\": \"estupidec\",\n  \"estuve\": \"estuv\",\n  \"estuviera\": \"estuv\",\n  \"estuviéramos\": \"estuv\",\n  \"estuvieran\": \"estuv\",\n  \"estuvieron\": \"estuv\",\n  \"estuviese\": \"estuv\",\n  \"estuvimos\": \"estuv\",\n  \"estuvo\": \"estuv\",\n  \"etapa\": \"etap\",\n  \"etapas\": \"etap\",\n  \"etc\": \"etc\",\n  \"etcétera\": \"etceter\",\n  \"etchohuaquila\": \"etchohuaquil\",\n  \"eternidad\": \"etern\",\n  \"eterno\": \"etern\",\n  \"ethernet\": \"ethernet\",\n  \"ethnology\": \"ethnology\",\n  \"ética\": \"etic\",\n  \"éticas\": \"etic\",\n  \"etienne\": \"etienn\",\n  \"etíope\": \"etiop\",\n  \"etiopía\": \"etiop\",\n  \"etiqueta\": \"etiquet\",\n  \"etiquetas\": \"etiquet\",\n  \"etnia\": \"etni\",\n  \"étnica\": \"etnic\",\n  \"étnicas\": \"etnic\",\n  \"étnico\": \"etnic\",\n  \"etnografía\": \"etnograf\",\n  \"etnohistórico\": \"etnohistor\",\n  \"ettiene\": \"ettien\",\n  \"eu\": \"eu\",\n  \"eucalipto\": \"eucalipt\",\n  \"eudelio\": \"eudeli\",\n  \"euforia\": \"eufori\",\n  \"eugéne\": \"eugen\",\n  \"eugenia\": \"eugeni\",\n  \"eugenio\": \"eugeni\",\n  \"eugui\": \"eugui\",\n  \"eulalio\": \"eulali\",\n  \"eurípides\": \"euripid\",\n  \"eurobonos\": \"eurobon\",\n  \"europa\": \"europ\",\n  \"europea\": \"europe\",\n  \"europeas\": \"europ\",\n  \"europeo\": \"europe\",\n  \"europeos\": \"europe\",\n  \"eurovisión\": \"eurovision\",\n  \"eusebio\": \"eusebi\",\n  \"eustolio\": \"eustoli\",\n  \"eva\": \"eva\",\n  \"evacuación\": \"evacu\",\n  \"evacuados\": \"evacu\",\n  \"evacuan\": \"evacu\",\n  \"evacuar\": \"evacu\",\n  \"evadía\": \"evad\",\n  \"evadió\": \"evad\",\n  \"evadir\": \"evad\",\n  \"evaluacion\": \"evaluacion\",\n  \"evaluación\": \"evalu\",\n  \"evaluaciones\": \"evalu\",\n  \"evaluado\": \"evalu\",\n  \"evaluador\": \"evalu\",\n  \"evaluados\": \"evalu\",\n  \"evalúan\": \"evalu\",\n  \"evaluar\": \"evalu\",\n  \"evaluarán\": \"evalu\",\n  \"evaluaron\": \"evalu\",\n  \"evangélicos\": \"evangel\",\n  \"evangelización\": \"evangeliz\",\n  \"evangelizan\": \"evangeliz\",\n  \"evangelizar\": \"evangeliz\",\n  \"evasión\": \"evasion\",\n  \"evasivas\": \"evas\",\n  \"evasivo\": \"evas\",\n  \"evento\": \"event\",\n  \"eventos\": \"event\",\n  \"eventual\": \"eventual\",\n  \"eventuales\": \"eventual\",\n  \"eventualmente\": \"eventual\",\n  \"ever\": \"ever\",\n  \"everardo\": \"everard\",\n  \"everman\": \"everm\",\n  \"everton\": \"everton\",\n  \"evidencia\": \"evident\",\n  \"evidenciado\": \"evidenci\",\n  \"evidencian\": \"evidenci\",\n  \"evidencias\": \"evident\",\n  \"evidenció\": \"evidenc\",\n  \"evidente\": \"evident\",\n  \"evidentemente\": \"evident\",\n  \"evidentes\": \"evident\",\n  \"evita\": \"evit\",\n  \"evitado\": \"evit\",\n  \"evitan\": \"evit\",\n  \"evitando\": \"evit\",\n  \"evitar\": \"evit\",\n  \"evitara\": \"evit\",\n  \"evitará\": \"evit\",\n  \"evitaremos\": \"evit\",\n  \"evitarla\": \"evit\",\n  \"evitarle\": \"evit\",\n  \"evitarlo\": \"evit\",\n  \"evitarse\": \"evit\",\n  \"evite\": \"evit\",\n  \"eviten\": \"evit\",\n  \"evitó\": \"evit\",\n  \"evocación\": \"evoc\",\n  \"evolución\": \"evolu\",\n  \"evolucionando\": \"evolucion\",\n  \"evolucionara\": \"evolucion\",\n  \"evolucionarios\": \"evolucionari\",\n  \"evolucionaron\": \"evolucion\",\n  \"evolucionen\": \"evolucion\",\n  \"ex\": \"ex\",\n  \"exacta\": \"exact\",\n  \"exactamente\": \"exact\",\n  \"exactas\": \"exact\",\n  \"exactitud\": \"exactitud\",\n  \"exacto\": \"exact\",\n  \"exageraciones\": \"exager\",\n  \"exagerada\": \"exager\",\n  \"exagerado\": \"exager\",\n  \"exagerados\": \"exager\",\n  \"exageraron\": \"exager\",\n  \"exalumnas\": \"exalumn\",\n  \"exalumnos\": \"exalumn\",\n  \"examen\": \"exam\",\n  \"exámenes\": \"examen\",\n  \"examina\": \"examin\",\n  \"examinado\": \"examin\",\n  \"examinados\": \"examin\",\n  \"examinando\": \"examin\",\n  \"examinar\": \"examin\",\n  \"examinen\": \"examin\",\n  \"examinó\": \"examin\",\n  \"exc\": \"exc\",\n  \"excandidato\": \"excandidat\",\n  \"excatedrático\": \"excatedrat\",\n  \"excavaciones\": \"excav\",\n  \"excavando\": \"excav\",\n  \"excede\": \"exced\",\n  \"exceden\": \"exced\",\n  \"excedernos\": \"exced\",\n  \"excediendo\": \"exced\",\n  \"excedieron\": \"exced\",\n  \"excel\": \"excel\",\n  \"excelencia\": \"excelent\",\n  \"excelente\": \"excelent\",\n  \"excelentemente\": \"excelent\",\n  \"excelentes\": \"excelent\",\n  \"excelsa\": \"excels\",\n  \"excélsior\": \"excelsior\",\n  \"excepción\": \"excepcion\",\n  \"excepcional\": \"excepcional\",\n  \"excepcionales\": \"excepcional\",\n  \"excepciones\": \"excepcion\",\n  \"excepto\": \"except\",\n  \"excesiva\": \"exces\",\n  \"excesivamente\": \"exces\",\n  \"excesivo\": \"exces\",\n  \"excesivos\": \"exces\",\n  \"exceso\": \"exces\",\n  \"excesos\": \"exces\",\n  \"exchange\": \"exchang\",\n  \"excita\": \"excit\",\n  \"excitación\": \"excit\",\n  \"excitan\": \"excit\",\n  \"excitante\": \"excit\",\n  \"excitantes\": \"excit\",\n  \"excitarse\": \"excit\",\n  \"exclama\": \"exclam\",\n  \"exclamación\": \"exclam\",\n  \"exclamó\": \"exclam\",\n  \"excluidos\": \"exclu\",\n  \"exclusión\": \"exclusion\",\n  \"exclusiva\": \"exclus\",\n  \"exclusivamente\": \"exclus\",\n  \"exclusivas\": \"exclus\",\n  \"exclusividad\": \"exclus\",\n  \"exclusividades\": \"exclus\",\n  \"exclusivo\": \"exclus\",\n  \"exclusivos\": \"exclus\",\n  \"excluyendo\": \"exclu\",\n  \"excolega\": \"excoleg\",\n  \"excomunión\": \"excomunion\",\n  \"excursiones\": \"excursion\",\n  \"excusarse\": \"excus\",\n  \"excusas\": \"excus\",\n  \"exención\": \"exencion\",\n  \"exenta\": \"exent\",\n  \"exento\": \"exent\",\n  \"exhala\": \"exhal\",\n  \"exhaustiva\": \"exhaust\",\n  \"exhibe\": \"exhib\",\n  \"exhiben\": \"exhib\",\n  \"exhibía\": \"exhib\",\n  \"exhibición\": \"exhibicion\",\n  \"exhibiciones\": \"exhibicion\",\n  \"exhibida\": \"exhib\",\n  \"exhibidas\": \"exhib\",\n  \"exhibido\": \"exhib\",\n  \"exhibiendo\": \"exhib\",\n  \"exhibiera\": \"exhib\",\n  \"exhibiere\": \"exhibier\",\n  \"exhibieren\": \"exhibier\",\n  \"exhibimos\": \"exhib\",\n  \"exhibió\": \"exhib\",\n  \"exhibirá\": \"exhib\",\n  \"exhibirán\": \"exhib\",\n  \"exhibirse\": \"exhib\",\n  \"exhoneración\": \"exhoner\",\n  \"exhorta\": \"exhort\",\n  \"exhortaban\": \"exhort\",\n  \"exhortan\": \"exhort\",\n  \"exhortando\": \"exhort\",\n  \"exhorto\": \"exhort\",\n  \"exhortó\": \"exhort\",\n  \"exige\": \"exig\",\n  \"exigen\": \"exig\",\n  \"exigencia\": \"exigent\",\n  \"exigencias\": \"exigent\",\n  \"exigente\": \"exigent\",\n  \"exigentes\": \"exigent\",\n  \"exigían\": \"exig\",\n  \"exigida\": \"exig\",\n  \"exigido\": \"exig\",\n  \"exigiendo\": \"exig\",\n  \"exigieran\": \"exig\",\n  \"exigieron\": \"exig\",\n  \"exigimos\": \"exig\",\n  \"exigió\": \"exig\",\n  \"exigir\": \"exig\",\n  \"exigira\": \"exigir\",\n  \"exigirá\": \"exig\",\n  \"exigiría\": \"exig\",\n  \"exigirle\": \"exig\",\n  \"exigirles\": \"exig\",\n  \"exigirse\": \"exig\",\n  \"exija\": \"exij\",\n  \"exijan\": \"exij\",\n  \"exilio\": \"exili\",\n  \"exime\": \"exim\",\n  \"eximir\": \"exim\",\n  \"eximirlos\": \"exim\",\n  \"exista\": \"exist\",\n  \"existan\": \"exist\",\n  \"existe\": \"exist\",\n  \"existen\": \"exist\",\n  \"existencia\": \"existent\",\n  \"existente\": \"existent\",\n  \"existentes\": \"existent\",\n  \"existía\": \"exist\",\n  \"existían\": \"exist\",\n  \"existido\": \"exist\",\n  \"existiendo\": \"exist\",\n  \"existió\": \"exist\",\n  \"existir\": \"exist\",\n  \"existirán\": \"exist\",\n  \"exito\": \"exit\",\n  \"éxito\": \"exit\",\n  \"éxitos\": \"exit\",\n  \"exitosa\": \"exit\",\n  \"exitosamente\": \"exit\",\n  \"exitosas\": \"exit\",\n  \"exitoso\": \"exit\",\n  \"exitosos\": \"exit\",\n  \"éxodo\": \"exod\",\n  \"exonera\": \"exoner\",\n  \"exóticas\": \"exot\",\n  \"exoticos\": \"exot\",\n  \"exóticos\": \"exot\",\n  \"expander\": \"expand\",\n  \"expandera\": \"expander\",\n  \"expandido\": \"expand\",\n  \"expandieron\": \"expand\",\n  \"expandirán\": \"expand\",\n  \"expandirse\": \"expand\",\n  \"expansion\": \"expansion\",\n  \"expansión\": \"expansion\",\n  \"expansiva\": \"expans\",\n  \"expectación\": \"expect\",\n  \"expectativa\": \"expect\",\n  \"expectativas\": \"expect\",\n  \"expedición\": \"expedicion\",\n  \"expedidas\": \"exped\",\n  \"expediente\": \"expedient\",\n  \"expedientes\": \"expedient\",\n  \"expedir\": \"exped\",\n  \"expedirse\": \"exped\",\n  \"expedito\": \"expedit\",\n  \"expenden\": \"expend\",\n  \"expendio\": \"expendi\",\n  \"experiencia\": \"experient\",\n  \"experiencias\": \"experient\",\n  \"experimenta\": \"experiment\",\n  \"experimentación\": \"experiment\",\n  \"experimentadas\": \"experiment\",\n  \"experimentado\": \"experiment\",\n  \"experimentados\": \"experiment\",\n  \"experimental\": \"experimental\",\n  \"experimentar\": \"experiment\",\n  \"experimentarse\": \"experiment\",\n  \"experimento\": \"experiment\",\n  \"experimentó\": \"experiment\",\n  \"experto\": \"expert\",\n  \"expertos\": \"expert\",\n  \"expidan\": \"expid\",\n  \"expide\": \"expid\",\n  \"expidieron\": \"expid\",\n  \"expira\": \"expir\",\n  \"expirar\": \"expir\",\n  \"explanada\": \"explan\",\n  \"explica\": \"explic\",\n  \"explicaban\": \"explic\",\n  \"explicación\": \"explic\",\n  \"explicaciones\": \"explic\",\n  \"explicado\": \"explic\",\n  \"explicamos\": \"explic\",\n  \"explican\": \"explic\",\n  \"explicando\": \"explic\",\n  \"explicar\": \"explic\",\n  \"explicara\": \"explic\",\n  \"explicará\": \"explic\",\n  \"explicarles\": \"explic\",\n  \"explicarlo\": \"explic\",\n  \"explicaron\": \"explic\",\n  \"explicó\": \"explic\",\n  \"explique\": \"expliqu\",\n  \"explora\": \"explor\",\n  \"exploraban\": \"explor\",\n  \"exploración\": \"explor\",\n  \"explorado\": \"explor\",\n  \"exploran\": \"explor\",\n  \"explorar\": \"explor\",\n  \"explosión\": \"explosion\",\n  \"explosiva\": \"explos\",\n  \"explosividad\": \"explos\",\n  \"explosivo\": \"explos\",\n  \"explosivos\": \"explos\",\n  \"explotación\": \"explot\",\n  \"explotado\": \"explot\",\n  \"explotan\": \"explot\",\n  \"explotar\": \"explot\",\n  \"explotará\": \"explot\",\n  \"explotarse\": \"explot\",\n  \"explotó\": \"explot\",\n  \"expo\": \"expo\",\n  \"expondrá\": \"expondr\",\n  \"expondrán\": \"expondran\",\n  \"expondremos\": \"expondr\",\n  \"expone\": \"expon\",\n  \"exponentes\": \"exponent\",\n  \"exponer\": \"expon\",\n  \"exponernos\": \"expon\",\n  \"exponerse\": \"expon\",\n  \"exponga\": \"expong\",\n  \"expongan\": \"expong\",\n  \"exponían\": \"expon\",\n  \"exponiéndose\": \"expon\",\n  \"expoplaza\": \"expoplaz\",\n  \"exporta\": \"export\",\n  \"exportación\": \"export\",\n  \"exportaciones\": \"export\",\n  \"exportado\": \"export\",\n  \"exportador\": \"export\",\n  \"exportadoras\": \"export\",\n  \"exportadores\": \"export\",\n  \"exportados\": \"export\",\n  \"exportamos\": \"export\",\n  \"exportan\": \"export\",\n  \"exportando\": \"export\",\n  \"exportar\": \"export\",\n  \"exporters\": \"exporters\",\n  \"exportó\": \"export\",\n  \"exposición\": \"exposicion\",\n  \"exposiciones\": \"exposicion\",\n  \"expresa\": \"expres\",\n  \"expresada\": \"expres\",\n  \"expresadas\": \"expres\",\n  \"expresado\": \"expres\",\n  \"expresamente\": \"expres\",\n  \"expresan\": \"expres\",\n  \"expresando\": \"expres\",\n  \"expresar\": \"expres\",\n  \"expresaron\": \"expres\",\n  \"expresarse\": \"expres\",\n  \"expresé\": \"expres\",\n  \"expresidentes\": \"expresident\",\n  \"expresión\": \"expresion\",\n  \"expresiones\": \"expresion\",\n  \"expresiva\": \"expres\",\n  \"expreso\": \"expres\",\n  \"expresó\": \"expres\",\n  \"express\": \"express\",\n  \"expropiar\": \"expropi\",\n  \"expuesta\": \"expuest\",\n  \"expuesto\": \"expuest\",\n  \"expuestos\": \"expuest\",\n  \"expulsada\": \"expuls\",\n  \"expulsado\": \"expuls\",\n  \"expulsados\": \"expuls\",\n  \"expulsar\": \"expuls\",\n  \"expulsarlo\": \"expuls\",\n  \"expulsarme\": \"expuls\",\n  \"expulsaron\": \"expuls\",\n  \"expulsión\": \"expulsion\",\n  \"expusiera\": \"expus\",\n  \"expusieron\": \"expus\",\n  \"expuso\": \"expus\",\n  \"exquisitamente\": \"exquisit\",\n  \"exquisiteces\": \"exquisitec\",\n  \"exquisitos\": \"exquisit\",\n  \"exsecretario\": \"exsecretari\",\n  \"extendemos\": \"extend\",\n  \"extender\": \"extend\",\n  \"extenderá\": \"extend\",\n  \"extenderse\": \"extend\",\n  \"extendido\": \"extend\",\n  \"extendieron\": \"extend\",\n  \"extendió\": \"extend\",\n  \"extensa\": \"extens\",\n  \"extensas\": \"extens\",\n  \"extensión\": \"extension\",\n  \"extensiones\": \"extension\",\n  \"extensivo\": \"extens\",\n  \"extenso\": \"extens\",\n  \"extenuación\": \"extenu\",\n  \"extenuar\": \"extenu\",\n  \"exterior\": \"exterior\",\n  \"exteriores\": \"exterior\",\n  \"externa\": \"extern\",\n  \"externado\": \"extern\",\n  \"externaron\": \"extern\",\n  \"externas\": \"extern\",\n  \"externo\": \"extern\",\n  \"externó\": \"extern\",\n  \"externos\": \"extern\",\n  \"extiendan\": \"extiend\",\n  \"extiende\": \"extiend\",\n  \"extienden\": \"extiend\",\n  \"extinción\": \"extincion\",\n  \"extinguidores\": \"extinguidor\",\n  \"extinta\": \"extint\",\n  \"extirpar\": \"extirp\",\n  \"extirparon\": \"extirp\",\n  \"extorsionando\": \"extorsion\",\n  \"extorsionar\": \"extorsion\",\n  \"extorsionaron\": \"extorsion\",\n  \"extorsiones\": \"extorsion\",\n  \"extosionando\": \"extosion\",\n  \"extra\": \"extra\",\n  \"extrabajadores\": \"extrabaj\",\n  \"extracción\": \"extraccion\",\n  \"extracto\": \"extract\",\n  \"extradición\": \"extradicion\",\n  \"extraer\": \"extra\",\n  \"extraerle\": \"extra\",\n  \"extraescolar\": \"extraescol\",\n  \"extraída\": \"extraid\",\n  \"extraído\": \"extraid\",\n  \"extrajo\": \"extraj\",\n  \"extraña\": \"extrañ\",\n  \"extrañaba\": \"extrañ\",\n  \"extrañados\": \"extrañ\",\n  \"extrañas\": \"extrañ\",\n  \"extrañe\": \"extrañ\",\n  \"extrañeza\": \"extrañez\",\n  \"extranjera\": \"extranjer\",\n  \"extranjeras\": \"extranjer\",\n  \"extranjero\": \"extranjer\",\n  \"extranjeros\": \"extranjer\",\n  \"extraño\": \"extrañ\",\n  \"extraños\": \"extrañ\",\n  \"extraoficial\": \"extraoficial\",\n  \"extraoficiales\": \"extraoficial\",\n  \"extraoficialmente\": \"extraoficial\",\n  \"extraordinaria\": \"extraordinari\",\n  \"extraordinariamente\": \"extraordinari\",\n  \"extraordinarias\": \"extraordinari\",\n  \"extraordinario\": \"extraordinari\",\n  \"extraordinarios\": \"extraordinari\",\n  \"extras\": \"extras\",\n  \"extraterrestres\": \"extraterrestr\",\n  \"extravagantes\": \"extravag\",\n  \"extraviadas\": \"extravi\",\n  \"extraviado\": \"extravi\",\n  \"extravío\": \"extravi\",\n  \"extravió\": \"extrav\",\n  \"extrema\": \"extrem\",\n  \"extremadamente\": \"extrem\",\n  \"extremo\": \"extrem\",\n  \"extremos\": \"extrem\",\n  \"exvotos\": \"exvot\",\n  \"exxon\": \"exxon\",\n  \"eye\": \"eye\",\n  \"ezeta\": \"ezet\",\n  \"f\": \"f\",\n  \"fabián\": \"fabian\",\n  \"fabiana\": \"fabian\",\n  \"fabio\": \"fabi\",\n  \"fabrica\": \"fabric\",\n  \"fábrica\": \"fabric\",\n  \"fabricación\": \"fabric\",\n  \"fabricadas\": \"fabric\",\n  \"fabricado\": \"fabric\",\n  \"fabricante\": \"fabric\",\n  \"fabricantes\": \"fabric\",\n  \"fabricar\": \"fabric\",\n  \"fabricará\": \"fabric\",\n  \"fabricarla\": \"fabric\",\n  \"fábricas\": \"fabric\",\n  \"fabricó\": \"fabric\",\n  \"fabrique\": \"fabriqu\",\n  \"fabulosas\": \"fabul\",\n  \"fabuloso\": \"fabul\",\n  \"fabulosos\": \"fabul\",\n  \"facciones\": \"faccion\",\n  \"faceta\": \"facet\",\n  \"facha\": \"fach\",\n  \"fachada\": \"fach\",\n  \"fácil\": \"facil\",\n  \"fáciles\": \"facil\",\n  \"facilidad\": \"facil\",\n  \"facilidades\": \"facil\",\n  \"facilita\": \"facilit\",\n  \"facilitaba\": \"facilit\",\n  \"facilitados\": \"facilit\",\n  \"facilitando\": \"facilit\",\n  \"facilitar\": \"facilit\",\n  \"facilitará\": \"facilit\",\n  \"facilitarán\": \"facilit\",\n  \"facilitarles\": \"facilit\",\n  \"facilitarlos\": \"facilit\",\n  \"facilite\": \"facilit\",\n  \"faciliten\": \"facilit\",\n  \"fácilmente\": \"facil\",\n  \"factible\": \"factibl\",\n  \"factibles\": \"factibl\",\n  \"facto\": \"fact\",\n  \"factor\": \"factor\",\n  \"factorajes\": \"factoraj\",\n  \"factores\": \"factor\",\n  \"facts\": \"facts\",\n  \"factura\": \"factur\",\n  \"facturación\": \"factur\",\n  \"facturada\": \"factur\",\n  \"facturados\": \"factur\",\n  \"facturar\": \"factur\",\n  \"facturas\": \"factur\",\n  \"facturó\": \"factur\",\n  \"faculta\": \"facult\",\n  \"facultad\": \"facult\",\n  \"facultades\": \"facultad\",\n  \"facultados\": \"facult\",\n  \"facultativos\": \"facult\",\n  \"facundo\": \"facund\",\n  \"faena\": \"faen\",\n  \"faenas\": \"faen\",\n  \"fagotistas\": \"fagot\",\n  \"fahr\": \"fahr\",\n  \"fairfax\": \"fairfax\",\n  \"faisán\": \"faisan\",\n  \"faja\": \"faj\",\n  \"fajarse\": \"faj\",\n  \"fajín\": \"fajin\",\n  \"fal\": \"fal\",\n  \"falacci\": \"falacci\",\n  \"falcón\": \"falcon\",\n  \"falda\": \"fald\",\n  \"faldas\": \"fald\",\n  \"falla\": \"fall\",\n  \"fallado\": \"fall\",\n  \"fallan\": \"fall\",\n  \"fallar\": \"fall\",\n  \"fallaron\": \"fall\",\n  \"fallas\": \"fall\",\n  \"fallece\": \"fallec\",\n  \"fallecido\": \"fallec\",\n  \"fallecidos\": \"fallec\",\n  \"falleciera\": \"fallec\",\n  \"fallecieron\": \"fallec\",\n  \"falleció\": \"fallec\",\n  \"fallen\": \"fall\",\n  \"fallida\": \"fall\",\n  \"fallido\": \"fall\",\n  \"fallo\": \"fall\",\n  \"falló\": \"fall\",\n  \"falls\": \"falls\",\n  \"falsa\": \"fals\",\n  \"falsas\": \"fals\",\n  \"falsete\": \"falset\",\n  \"falsificación\": \"falsif\",\n  \"falsificados\": \"falsific\",\n  \"falsificó\": \"falsific\",\n  \"falso\": \"fals\",\n  \"falsos\": \"fals\",\n  \"falta\": \"falt\",\n  \"faltaba\": \"falt\",\n  \"faltaban\": \"falt\",\n  \"faltado\": \"falt\",\n  \"faltan\": \"falt\",\n  \"faltando\": \"falt\",\n  \"faltándole\": \"falt\",\n  \"faltante\": \"faltant\",\n  \"faltar\": \"falt\",\n  \"faltara\": \"falt\",\n  \"faltas\": \"falt\",\n  \"falte\": \"falt\",\n  \"falté\": \"falt\",\n  \"falto\": \"falt\",\n  \"faltó\": \"falt\",\n  \"faltriquera\": \"faltriquer\",\n  \"fama\": \"fam\",\n  \"familia\": \"famili\",\n  \"familiar\": \"famili\",\n  \"familiares\": \"familiar\",\n  \"familiarice\": \"familiaric\",\n  \"familiarizado\": \"familiariz\",\n  \"familiarizarse\": \"familiariz\",\n  \"familias\": \"famili\",\n  \"famosa\": \"famos\",\n  \"famosas\": \"fam\",\n  \"famoso\": \"famos\",\n  \"famosos\": \"famos\",\n  \"fanaticada\": \"fanatic\",\n  \"fanáticas\": \"fanat\",\n  \"fanático\": \"fanat\",\n  \"fanáticos\": \"fanat\",\n  \"fanfarrias\": \"fanfarri\",\n  \"fango\": \"fang\",\n  \"fans\": \"fans\",\n  \"fantasía\": \"fantas\",\n  \"fantasmas\": \"fantasm\",\n  \"farías\": \"far\",\n  \"farinas\": \"farin\",\n  \"farmaceútica\": \"farmaceut\",\n  \"farmacia\": \"farmaci\",\n  \"farmacias\": \"farmaci\",\n  \"farmacodependientes\": \"farmacodependient\",\n  \"farmacología\": \"farmacolog\",\n  \"farmar\": \"farm\",\n  \"farrugia\": \"farrugi\",\n  \"farsa\": \"fars\",\n  \"farsante\": \"farsant\",\n  \"fascinación\": \"fascin\",\n  \"fascinante\": \"fascin\",\n  \"fase\": \"fas\",\n  \"fases\": \"fas\",\n  \"fast\": \"fast\",\n  \"fastuosos\": \"fastuos\",\n  \"fatal\": \"fatal\",\n  \"fatales\": \"fatal\",\n  \"fatalmente\": \"fatal\",\n  \"fatiga\": \"fatig\",\n  \"fatigado\": \"fatig\",\n  \"fátima\": \"fatim\",\n  \"fauna\": \"faun\",\n  \"faustino\": \"faustin\",\n  \"fausto\": \"faust\",\n  \"favor\": \"favor\",\n  \"favorable\": \"favor\",\n  \"favorablemente\": \"favor\",\n  \"favorables\": \"favor\",\n  \"favorece\": \"favorec\",\n  \"favorecer\": \"favorec\",\n  \"favorecerá\": \"favorec\",\n  \"favorecerán\": \"favorec\",\n  \"favorecía\": \"favorec\",\n  \"favorecían\": \"favorec\",\n  \"favorecieron\": \"favorec\",\n  \"favorecimiento\": \"favorec\",\n  \"favoreció\": \"favorec\",\n  \"favores\": \"favor\",\n  \"favorezcan\": \"favorezc\",\n  \"favorita\": \"favorit\",\n  \"favoritas\": \"favorit\",\n  \"favoritismo\": \"favorit\",\n  \"favorito\": \"favorit\",\n  \"favoritos\": \"favorit\",\n  \"fax\": \"fax\",\n  \"faxes\": \"fax\",\n  \"fbi\": \"fbi\",\n  \"fda\": \"fda\",\n  \"fe\": \"fe\",\n  \"fea\": \"fea\",\n  \"feas\": \"feas\",\n  \"feat\": \"feat\",\n  \"feb\": \"feb\",\n  \"febrero\": \"febrer\",\n  \"fecha\": \"fech\",\n  \"fechada\": \"fech\",\n  \"fechado\": \"fech\",\n  \"fechados\": \"fech\",\n  \"fechas\": \"fech\",\n  \"fechorías\": \"fechor\",\n  \"fecunda\": \"fecund\",\n  \"fecundación\": \"fecund\",\n  \"fecundando\": \"fecund\",\n  \"fecundidad\": \"fecund\",\n  \"fecundínez\": \"fecundinez\",\n  \"federación\": \"feder\",\n  \"federal\": \"federal\",\n  \"federales\": \"federal\",\n  \"federalismo\": \"federal\",\n  \"federalización\": \"federaliz\",\n  \"federativa\": \"feder\",\n  \"federativas\": \"feder\",\n  \"federativo\": \"feder\",\n  \"federica\": \"feder\",\n  \"federico\": \"feder\",\n  \"feeder\": \"feed\",\n  \"fehacientemente\": \"fehacient\",\n  \"feldhaus\": \"feldhaus\",\n  \"felguérez\": \"felguerez\",\n  \"felices\": \"felic\",\n  \"feliciano\": \"felician\",\n  \"felicidad\": \"felic\",\n  \"felicitación\": \"felicit\",\n  \"felicitaciones\": \"felicit\",\n  \"felicitada\": \"felicit\",\n  \"felicitadas\": \"felicit\",\n  \"felicitado\": \"felicit\",\n  \"felicitar\": \"felicit\",\n  \"felicitarla\": \"felicit\",\n  \"felicitarlo\": \"felicit\",\n  \"felicito\": \"felicit\",\n  \"felicitó\": \"felicit\",\n  \"felícitos\": \"felicit\",\n  \"feligreses\": \"feligres\",\n  \"felina\": \"felin\",\n  \"felino\": \"felin\",\n  \"felinos\": \"felin\",\n  \"felipe\": \"felip\",\n  \"félix\": \"felix\",\n  \"feliz\": \"feliz\",\n  \"femam\": \"femam\",\n  \"femenil\": \"femenil\",\n  \"femeniles\": \"femenil\",\n  \"femenina\": \"femenin\",\n  \"femenino\": \"femenin\",\n  \"femeninos\": \"femenin\",\n  \"femineidad\": \"femin\",\n  \"feminismo\": \"femin\",\n  \"feminista\": \"femin\",\n  \"feministas\": \"femin\",\n  \"femsa\": \"fems\",\n  \"fendick\": \"fendick\",\n  \"feneciendo\": \"fenec\",\n  \"fenómeno\": \"fenomen\",\n  \"fenómenos\": \"fenomen\",\n  \"feo\": \"feo\",\n  \"fer\": \"fer\",\n  \"fergie\": \"fergi\",\n  \"ferguson\": \"ferguson\",\n  \"feria\": \"feri\",\n  \"ferias\": \"feri\",\n  \"fermín\": \"fermin\",\n  \"fernanda\": \"fernand\",\n  \"fernandez\": \"fernandez\",\n  \"fernández\": \"fernandez\",\n  \"fernando\": \"fern\",\n  \"ferniza\": \"ferniz\",\n  \"feroz\": \"feroz\",\n  \"ferrara\": \"ferr\",\n  \"ferrat\": \"ferrat\",\n  \"férreo\": \"ferre\",\n  \"ferretería\": \"ferret\",\n  \"ferreterías\": \"ferret\",\n  \"ferriño\": \"ferriñ\",\n  \"ferrocarril\": \"ferrocarril\",\n  \"ferrocarrileros\": \"ferrocarriler\",\n  \"ferrocarriles\": \"ferrocarril\",\n  \"ferronales\": \"ferronal\",\n  \"ferroviaria\": \"ferroviari\",\n  \"ferroviarias\": \"ferroviari\",\n  \"ferroviario\": \"ferroviari\",\n  \"ferroviarios\": \"ferroviari\",\n  \"fértiles\": \"fertil\",\n  \"fertilidad\": \"fertil\",\n  \"fertilizante\": \"fertiliz\",\n  \"fertilizantes\": \"fertiliz\",\n  \"fesperman\": \"fesperm\",\n  \"festeja\": \"festej\",\n  \"festejada\": \"festej\",\n  \"festejar\": \"festej\",\n  \"festejaron\": \"festej\",\n  \"festejo\": \"festej\",\n  \"festejó\": \"festej\",\n  \"festejos\": \"festej\",\n  \"festiva\": \"festiv\",\n  \"festival\": \"festival\",\n  \"festivales\": \"festival\",\n  \"festividades\": \"festiv\",\n  \"festivo\": \"festiv\",\n  \"festivos\": \"festiv\",\n  \"fetales\": \"fetal\",\n  \"fetos\": \"fet\",\n  \"feudales\": \"feudal\",\n  \"ffcc\": \"ffcc\",\n  \"fían\": \"fian\",\n  \"fianza\": \"fianz\",\n  \"fib\": \"fib\",\n  \"fibra\": \"fibr\",\n  \"fibras\": \"fibr\",\n  \"fibrosarcomas\": \"fibrosarcom\",\n  \"ficción\": \"ficcion\",\n  \"ficha\": \"fich\",\n  \"fichado\": \"fich\",\n  \"ficóloga\": \"ficolog\",\n  \"fictícios\": \"fictici\",\n  \"fideicomiso\": \"fideicomis\",\n  \"fideicomisos\": \"fideicomis\",\n  \"fidel\": \"fidel\",\n  \"fidelidad\": \"fidel\",\n  \"fidencio\": \"fidenci\",\n  \"fidenor\": \"fidenor\",\n  \"fidler\": \"fidl\",\n  \"fiebre\": \"fiebr\",\n  \"fiel\": \"fiel\",\n  \"fieles\": \"fiel\",\n  \"fierro\": \"fierr\",\n  \"fiesta\": \"fiest\",\n  \"fiestas\": \"fiest\",\n  \"fiestota\": \"fiestot\",\n  \"fifa\": \"fif\",\n  \"fife\": \"fif\",\n  \"fignon\": \"fignon\",\n  \"figueroa\": \"figuero\",\n  \"figura\": \"figur\",\n  \"figuraba\": \"figur\",\n  \"figurado\": \"figur\",\n  \"figuran\": \"figur\",\n  \"figuraría\": \"figur\",\n  \"figuras\": \"figur\",\n  \"figurativamente\": \"figur\",\n  \"fija\": \"fij\",\n  \"fijación\": \"fijacion\",\n  \"fijadas\": \"fij\",\n  \"fijado\": \"fij\",\n  \"fijados\": \"fij\",\n  \"fijamos\": \"fij\",\n  \"fijan\": \"fij\",\n  \"fijar\": \"fij\",\n  \"fijará\": \"fij\",\n  \"fijaron\": \"fij\",\n  \"fijarse\": \"fij\",\n  \"fijas\": \"fij\",\n  \"fíjate\": \"fijat\",\n  \"fije\": \"fij\",\n  \"fíjese\": \"fijes\",\n  \"fijeza\": \"fijez\",\n  \"fijo\": \"fij\",\n  \"fijó\": \"fij\",\n  \"fijos\": \"fij\",\n  \"fila\": \"fil\",\n  \"filadelfia\": \"filadelfi\",\n  \"filas\": \"fil\",\n  \"filatelia\": \"filateli\",\n  \"filatélica\": \"filatel\",\n  \"filatélico\": \"filatel\",\n  \"filatélicos\": \"filatel\",\n  \"filatelismo\": \"filatel\",\n  \"filatelista\": \"filatel\",\n  \"filatelistas\": \"filatel\",\n  \"filete\": \"filet\",\n  \"filial\": \"filial\",\n  \"filiales\": \"filial\",\n  \"filiberto\": \"filibert\",\n  \"filipinas\": \"filipin\",\n  \"filipino\": \"filipin\",\n  \"film\": \"film\",\n  \"filmación\": \"filmacion\",\n  \"filmado\": \"film\",\n  \"filmados\": \"film\",\n  \"filmar\": \"film\",\n  \"filmaron\": \"film\",\n  \"filme\": \"film\",\n  \"fílmicos\": \"filmic\",\n  \"filosofía\": \"filosof\",\n  \"filosófica\": \"filosof\",\n  \"filósofo\": \"filosof\",\n  \"filósofos\": \"filosof\",\n  \"filtración\": \"filtracion\",\n  \"filtraciones\": \"filtracion\",\n  \"filtro\": \"filtr\",\n  \"filtros\": \"filtr\",\n  \"fin\": \"fin\",\n  \"fina\": \"fin\",\n  \"final\": \"final\",\n  \"finales\": \"final\",\n  \"finalice\": \"finalic\",\n  \"finalidad\": \"final\",\n  \"finalista\": \"final\",\n  \"finalistas\": \"final\",\n  \"finaliza\": \"finaliz\",\n  \"finalizado\": \"finaliz\",\n  \"finalizar\": \"finaliz\",\n  \"finalizara\": \"finaliz\",\n  \"finalizará\": \"finaliz\",\n  \"finalizaron\": \"finaliz\",\n  \"finalizó\": \"finaliz\",\n  \"finalmente\": \"final\",\n  \"finamex\": \"finamex\",\n  \"financiadas\": \"financi\",\n  \"financiado\": \"financi\",\n  \"financiados\": \"financi\",\n  \"financial\": \"financial\",\n  \"financiamiento\": \"financi\",\n  \"financiamientos\": \"financi\",\n  \"financiar\": \"financi\",\n  \"financiera\": \"financ\",\n  \"financieras\": \"financ\",\n  \"financiero\": \"financier\",\n  \"financieros\": \"financier\",\n  \"financing\": \"financing\",\n  \"financió\": \"financ\",\n  \"finanzas\": \"finanz\",\n  \"finas\": \"fin\",\n  \"finca\": \"finc\",\n  \"fincado\": \"finc\",\n  \"fincó\": \"finc\",\n  \"fines\": \"fin\",\n  \"fingiendo\": \"fing\",\n  \"fingieron\": \"fing\",\n  \"fingir\": \"fing\",\n  \"finiquitación\": \"finiquit\",\n  \"finiquito\": \"finiquit\",\n  \"finishing\": \"finishing\",\n  \"finland\": \"finland\",\n  \"fino\": \"fin\",\n  \"finos\": \"fin\",\n  \"fira\": \"fir\",\n  \"firma\": \"firm\",\n  \"firmaba\": \"firm\",\n  \"firmaban\": \"firm\",\n  \"firmada\": \"firm\",\n  \"firmadas\": \"firm\",\n  \"firmado\": \"firm\",\n  \"firmados\": \"firm\",\n  \"firmamos\": \"firm\",\n  \"firman\": \"firm\",\n  \"firmante\": \"firmant\",\n  \"firmantes\": \"firmant\",\n  \"firmar\": \"firm\",\n  \"firmara\": \"firm\",\n  \"firmará\": \"firm\",\n  \"firmarán\": \"firm\",\n  \"firmaron\": \"firm\",\n  \"firmarse\": \"firm\",\n  \"firmas\": \"firm\",\n  \"firme\": \"firm\",\n  \"firmemente\": \"firmement\",\n  \"firmen\": \"firm\",\n  \"firmes\": \"firm\",\n  \"firmó\": \"firm\",\n  \"first\": \"first\",\n  \"fiscal\": \"fiscal\",\n  \"fiscales\": \"fiscal\",\n  \"fiscalía\": \"fiscal\",\n  \"fiscalización\": \"fiscaliz\",\n  \"fiscalizado\": \"fiscaliz\",\n  \"fischer\": \"fisch\",\n  \"fisco\": \"fisc\",\n  \"física\": \"fisic\",\n  \"físicamente\": \"fisic\",\n  \"físicas\": \"fisic\",\n  \"físico\": \"fisic\",\n  \"físicodeportiva\": \"fisicodeport\",\n  \"físicos\": \"fisic\",\n  \"fisiológicamente\": \"fisiolog\",\n  \"fisk\": \"fisk\",\n  \"fisonomía\": \"fisonom\",\n  \"fisura\": \"fisur\",\n  \"fitopecuarias\": \"fitopecuari\",\n  \"flaco\": \"flac\",\n  \"flagrante\": \"flagrant\",\n  \"flamante\": \"flamant\",\n  \"flamenco\": \"flamenc\",\n  \"flandes\": \"fland\",\n  \"flannery\": \"flannery\",\n  \"flanquear\": \"flanqu\",\n  \"flaquito\": \"flaquit\",\n  \"flaubert\": \"flaubert\",\n  \"flavio\": \"flavi\",\n  \"flavorite\": \"flavorit\",\n  \"flavr\": \"flavr\",\n  \"flecha\": \"flech\",\n  \"flechazos\": \"flechaz\",\n  \"flecos\": \"flec\",\n  \"flemming\": \"flemming\",\n  \"fleteros\": \"fleter\",\n  \"fletes\": \"flet\",\n  \"flexibilidad\": \"flexibil\",\n  \"flexible\": \"flexibl\",\n  \"flexibles\": \"flexibl\",\n  \"flojos\": \"floj\",\n  \"flor\": \"flor\",\n  \"flora\": \"flor\",\n  \"floración\": \"floracion\",\n  \"florales\": \"floral\",\n  \"florecita\": \"florecit\",\n  \"florencia\": \"florenci\",\n  \"flores\": \"flor\",\n  \"florida\": \"flor\",\n  \"flota\": \"flot\",\n  \"flotación\": \"flotacion\",\n  \"flotando\": \"flot\",\n  \"flotantes\": \"flotant\",\n  \"flotilla\": \"flotill\",\n  \"flotillas\": \"flotill\",\n  \"floyd\": \"floyd\",\n  \"fluctuación\": \"fluctuacion\",\n  \"fluctúan\": \"fluctu\",\n  \"fluidez\": \"fluidez\",\n  \"fluido\": \"flu\",\n  \"fluído\": \"fluid\",\n  \"flujo\": \"fluj\",\n  \"flujos\": \"fluj\",\n  \"flume\": \"flum\",\n  \"fluordaniel\": \"fluordaniel\",\n  \"fluye\": \"flu\",\n  \"fm\": \"fm\",\n  \"fmf\": \"fmf\",\n  \"fmn\": \"fmn\",\n  \"fna\": \"fna\",\n  \"foco\": \"foc\",\n  \"focos\": \"foc\",\n  \"fofo\": \"fof\",\n  \"fogatas\": \"fogat\",\n  \"foggia\": \"foggi\",\n  \"fogueo\": \"fogue\",\n  \"folclórica\": \"folclor\",\n  \"folio\": \"foli\",\n  \"folklore\": \"folklor\",\n  \"folklórica\": \"folklor\",\n  \"folklórico\": \"folklor\",\n  \"folklorismo\": \"folklor\",\n  \"folleto\": \"follet\",\n  \"folletos\": \"follet\",\n  \"fomenta\": \"foment\",\n  \"fomentaba\": \"foment\",\n  \"fomentada\": \"foment\",\n  \"fomentado\": \"foment\",\n  \"fomentan\": \"foment\",\n  \"fomentar\": \"foment\",\n  \"fomento\": \"foment\",\n  \"fomerrey\": \"fomerrey\",\n  \"fonda\": \"fond\",\n  \"fondear\": \"fond\",\n  \"fondistas\": \"fondist\",\n  \"fondo\": \"fond\",\n  \"fondos\": \"fond\",\n  \"fonética\": \"fonet\",\n  \"fonhapo\": \"fonhap\",\n  \"fonméxico\": \"fonmex\",\n  \"fonseca\": \"fonsec\",\n  \"food\": \"food\",\n  \"foods\": \"foods\",\n  \"foquitos\": \"foquit\",\n  \"for\": \"for\",\n  \"foránea\": \"forane\",\n  \"foráneo\": \"forane\",\n  \"foráneos\": \"forane\",\n  \"forcados\": \"forc\",\n  \"force\": \"forc\",\n  \"ford\": \"ford\",\n  \"forest\": \"forest\",\n  \"forestación\": \"forest\",\n  \"forestal\": \"forestal\",\n  \"forestales\": \"forestal\",\n  \"forista\": \"forist\",\n  \"foristas\": \"forist\",\n  \"forja\": \"forj\",\n  \"forjan\": \"forj\",\n  \"forjarse\": \"forj\",\n  \"forma\": \"form\",\n  \"formaban\": \"form\",\n  \"formación\": \"formacion\",\n  \"formada\": \"form\",\n  \"formado\": \"form\",\n  \"formados\": \"form\",\n  \"formal\": \"formal\",\n  \"formales\": \"formal\",\n  \"formalidades\": \"formal\",\n  \"formalización\": \"formaliz\",\n  \"formalizar\": \"formaliz\",\n  \"formalizará\": \"formaliz\",\n  \"formalizarlo\": \"formaliz\",\n  \"formalmente\": \"formal\",\n  \"formamos\": \"form\",\n  \"forman\": \"form\",\n  \"formando\": \"form\",\n  \"formar\": \"form\",\n  \"formará\": \"form\",\n  \"formarán\": \"form\",\n  \"formarlo\": \"form\",\n  \"formaron\": \"form\",\n  \"formarse\": \"form\",\n  \"formas\": \"form\",\n  \"formativos\": \"format\",\n  \"formato\": \"format\",\n  \"formatos\": \"format\",\n  \"forme\": \"form\",\n  \"formen\": \"form\",\n  \"formó\": \"form\",\n  \"fórmula\": \"formul\",\n  \"formulación\": \"formul\",\n  \"formulado\": \"formul\",\n  \"formulan\": \"formul\",\n  \"formular\": \"formul\",\n  \"fórmulas\": \"formul\",\n  \"formuló\": \"formul\",\n  \"fornica\": \"fornic\",\n  \"fornicación\": \"fornic\",\n  \"fornicadora\": \"fornic\",\n  \"fornicadores\": \"fornic\",\n  \"fornicados\": \"fornic\",\n  \"foro\": \"for\",\n  \"foros\": \"for\",\n  \"forrada\": \"forr\",\n  \"forro\": \"forr\",\n  \"fors\": \"fors\",\n  \"fortalece\": \"fortalec\",\n  \"fortalecemos\": \"fortalec\",\n  \"fortalecen\": \"fortalec\",\n  \"fortalecer\": \"fortalec\",\n  \"fortalecidas\": \"fortalec\",\n  \"fortalecido\": \"fortalec\",\n  \"fortaleciendo\": \"fortalec\",\n  \"fortaleciéndose\": \"fortalec\",\n  \"fortalecimiento\": \"fortalec\",\n  \"fortaleció\": \"fortalec\",\n  \"fortaleza\": \"fortalez\",\n  \"fortalezca\": \"fortalezc\",\n  \"fortalezcan\": \"fortalezc\",\n  \"fortín\": \"fortin\",\n  \"fortines\": \"fortin\",\n  \"fortuna\": \"fortun\",\n  \"fortunas\": \"fortun\",\n  \"fortunato\": \"fortunat\",\n  \"forzada\": \"forz\",\n  \"forzadas\": \"forz\",\n  \"forzar\": \"forz\",\n  \"forzaron\": \"forz\",\n  \"forzosa\": \"forzos\",\n  \"forzosamente\": \"forz\",\n  \"forzoso\": \"forzos\",\n  \"fosas\": \"fos\",\n  \"fosforescente\": \"fosforescent\",\n  \"fosforescentes\": \"fosforescent\",\n  \"fósiles\": \"fosil\",\n  \"foster\": \"fost\",\n  \"foto\": \"fot\",\n  \"fotocopiadoras\": \"fotocopi\",\n  \"fotocredencialización\": \"fotocredencializ\",\n  \"fotocredencializadas\": \"fotocredencializ\",\n  \"fotocredencializados\": \"fotocredencializ\",\n  \"fotocredencializar\": \"fotocredencializ\",\n  \"fotografía\": \"fotograf\",\n  \"fotografiar\": \"fotografi\",\n  \"fotografías\": \"fotograf\",\n  \"fotográfica\": \"fotograf\",\n  \"fotográficas\": \"fotograf\",\n  \"fotógrafo\": \"fotograf\",\n  \"fotógrafos\": \"fotograf\",\n  \"fotomecánica\": \"fotomecan\",\n  \"fotoquímicos\": \"fotoquim\",\n  \"fotos\": \"fot\",\n  \"found\": \"found\",\n  \"foundation\": \"foundation\",\n  \"fovi\": \"fovi\",\n  \"fovissste\": \"fovissst\",\n  \"fox\": \"fox\",\n  \"foxpro\": \"foxpr\",\n  \"fracasado\": \"fracas\",\n  \"fracasar\": \"fracas\",\n  \"fracasaron\": \"fracas\",\n  \"fracase\": \"frac\",\n  \"fracaso\": \"fracas\",\n  \"fracasó\": \"fracas\",\n  \"fracasos\": \"fracas\",\n  \"fracc\": \"fracc\",\n  \"fracción\": \"fraccion\",\n  \"fraccionadas\": \"fraccion\",\n  \"fraccionador\": \"fraccion\",\n  \"fraccionadores\": \"fraccion\",\n  \"fraccionamiento\": \"fraccion\",\n  \"fraccionamientos\": \"fraccion\",\n  \"fraccionarios\": \"fraccionari\",\n  \"fracciones\": \"fraccion\",\n  \"fractura\": \"fractur\",\n  \"fracturado\": \"fractur\",\n  \"fracturados\": \"fractur\",\n  \"fracturarse\": \"fractur\",\n  \"fracturas\": \"fractur\",\n  \"fragancias\": \"fraganci\",\n  \"frágil\": \"fragil\",\n  \"frágiles\": \"fragil\",\n  \"fragmenta\": \"fragment\",\n  \"fragmentación\": \"fragment\",\n  \"fragmentos\": \"fragment\",\n  \"fragor\": \"fragor\",\n  \"fraguando\": \"fragu\",\n  \"franca\": \"franc\",\n  \"francamente\": \"franc\",\n  \"francas\": \"franc\",\n  \"france\": \"franc\",\n  \"francés\": \"frances\",\n  \"francesa\": \"frances\",\n  \"franceses\": \"frances\",\n  \"francia\": \"franci\",\n  \"francisco\": \"francisc\",\n  \"franco\": \"franc\",\n  \"francos\": \"franc\",\n  \"francotirador\": \"francotir\",\n  \"franela\": \"franel\",\n  \"frank\": \"frank\",\n  \"franklin\": \"franklin\",\n  \"franklyn\": \"franklyn\",\n  \"franqueó\": \"franque\",\n  \"franqueza\": \"franquez\",\n  \"franquicia\": \"franquici\",\n  \"franquiciaba\": \"franquici\",\n  \"franquicias\": \"franquici\",\n  \"franz\": \"franz\",\n  \"frapi\": \"frapi\",\n  \"frase\": \"fras\",\n  \"fraseo\": \"frase\",\n  \"frases\": \"fras\",\n  \"frasquito\": \"frasquit\",\n  \"fraterna\": \"fratern\",\n  \"fraternal\": \"fraternal\",\n  \"fraternidad\": \"fratern\",\n  \"fraude\": \"fraud\",\n  \"fraudes\": \"fraud\",\n  \"fraudulenta\": \"fraudulent\",\n  \"fraudulentas\": \"fraudulent\",\n  \"fraudulento\": \"fraudulent\",\n  \"frausto\": \"fraust\",\n  \"frayre\": \"frayr\",\n  \"frecuencia\": \"frecuenci\",\n  \"frecuencias\": \"frecuenci\",\n  \"frecuentada\": \"frecuent\",\n  \"frecuentado\": \"frecuent\",\n  \"frecuentan\": \"frecuent\",\n  \"frecuentando\": \"frecuent\",\n  \"frecuentaran\": \"frecuent\",\n  \"frecuente\": \"frecuent\",\n  \"frecuentemente\": \"frecuent\",\n  \"frecuentes\": \"frecuent\",\n  \"frederick\": \"frederick\",\n  \"freedom\": \"freedom\",\n  \"freeport\": \"freeport\",\n  \"fregado\": \"freg\",\n  \"fregonería\": \"fregon\",\n  \"frenado\": \"fren\",\n  \"frenados\": \"fren\",\n  \"frenar\": \"fren\",\n  \"freno\": \"fren\",\n  \"frenó\": \"fren\",\n  \"frenos\": \"fren\",\n  \"frente\": \"frent\",\n  \"frentes\": \"frent\",\n  \"fresas\": \"fres\",\n  \"fresca\": \"fresc\",\n  \"frescas\": \"fresc\",\n  \"fresco\": \"fresc\",\n  \"frescura\": \"frescur\",\n  \"fresh\": \"fresh\",\n  \"freud\": \"freud\",\n  \"fría\": \"fri\",\n  \"frias\": \"fri\",\n  \"frías\": \"fri\",\n  \"fricase\": \"fric\",\n  \"fricciones\": \"friccion\",\n  \"frida\": \"frid\",\n  \"fried\": \"fri\",\n  \"frijol\": \"frijol\",\n  \"frijoles\": \"frijol\",\n  \"frío\": \"fri\",\n  \"friolentas\": \"friolent\",\n  \"friolentos\": \"friolent\",\n  \"fríos\": \"fri\",\n  \"frisco\": \"frisc\",\n  \"fritos\": \"frit\",\n  \"fritz\": \"fritz\",\n  \"frivolidad\": \"frivol\",\n  \"frontal\": \"frontal\",\n  \"frontalmente\": \"frontal\",\n  \"frontera\": \"fronter\",\n  \"fronteras\": \"fronter\",\n  \"fronteriza\": \"fronteriz\",\n  \"fronterizo\": \"fronteriz\",\n  \"fronterizos\": \"fronteriz\",\n  \"fructificar\": \"fructific\",\n  \"fructuoso\": \"fructuos\",\n  \"frustración\": \"frustracion\",\n  \"frustrada\": \"frustr\",\n  \"frustradas\": \"frustr\",\n  \"frustrado\": \"frustr\",\n  \"fruta\": \"frut\",\n  \"frutales\": \"frutal\",\n  \"frutas\": \"frut\",\n  \"fruto\": \"frut\",\n  \"frutos\": \"frut\",\n  \"fstse\": \"fstse\",\n  \"fucsia\": \"fucsi\",\n  \"fue\": \"fue\",\n  \"fuego\": \"fueg\",\n  \"fuehrer\": \"fuehr\",\n  \"fuente\": \"fuent\",\n  \"fuentes\": \"fuent\",\n  \"fuera\": \"fuer\",\n  \"fueran\": \"fuer\",\n  \"fuere\": \"fuer\",\n  \"fuero\": \"fuer\",\n  \"fueron\": \"fueron\",\n  \"fuerte\": \"fuert\",\n  \"fuertemente\": \"fuertement\",\n  \"fuertes\": \"fuert\",\n  \"fuerza\": \"fuerz\",\n  \"fuerzas\": \"fuerz\",\n  \"fuese\": \"fues\",\n  \"fuesen\": \"fues\",\n  \"fuezas\": \"fuez\",\n  \"fuga\": \"fug\",\n  \"fui\": \"fui\",\n  \"fuiste\": \"fuist\",\n  \"fujimori\": \"fujimori\",\n  \"fujimorista\": \"fujimor\",\n  \"fukuoka\": \"fukuok\",\n  \"fulano\": \"fulan\",\n  \"fulgor\": \"fulgor\",\n  \"fuller\": \"full\",\n  \"fulminante\": \"fulmin\",\n  \"fulminantemente\": \"fulmin\",\n  \"fulminó\": \"fulmin\",\n  \"fuman\": \"fum\",\n  \"fumando\": \"fum\",\n  \"fumarolas\": \"fumarol\",\n  \"función\": \"funcion\",\n  \"funciona\": \"funcion\",\n  \"funcionaba\": \"funcion\",\n  \"funcional\": \"funcional\",\n  \"funcionalidad\": \"funcional\",\n  \"funcionalidades\": \"funcional\",\n  \"funcionamiento\": \"funcion\",\n  \"funcionan\": \"funcion\",\n  \"funcionando\": \"funcion\",\n  \"funcionar\": \"funcion\",\n  \"funcionará\": \"funcion\",\n  \"funcionaran\": \"funcion\",\n  \"funcionarán\": \"funcion\",\n  \"funcionaria\": \"funcionari\",\n  \"funcionarias\": \"funcionari\",\n  \"funcionario\": \"funcionari\",\n  \"funcionarios\": \"funcionari\",\n  \"funcionaron\": \"funcion\",\n  \"funcione\": \"funcion\",\n  \"funciones\": \"funcion\",\n  \"funcionó\": \"funcion\",\n  \"fund\": \"fund\",\n  \"funda\": \"fund\",\n  \"fundación\": \"fundacion\",\n  \"fundaciones\": \"fundacion\",\n  \"fundada\": \"fund\",\n  \"fundado\": \"fund\",\n  \"fundador\": \"fundador\",\n  \"fundadora\": \"fundador\",\n  \"fundadoras\": \"fundador\",\n  \"fundadores\": \"fundador\",\n  \"fundamenta\": \"fundament\",\n  \"fundamentados\": \"fundament\",\n  \"fundamental\": \"fundamental\",\n  \"fundamentales\": \"fundamental\",\n  \"fundamentalismo\": \"fundamental\",\n  \"fundamentalmente\": \"fundamental\",\n  \"fundamento\": \"fundament\",\n  \"fundamentos\": \"fundament\",\n  \"fundar\": \"fund\",\n  \"fundara\": \"fund\",\n  \"fundaran\": \"fund\",\n  \"fundarán\": \"fund\",\n  \"fundaron\": \"fund\",\n  \"fundarse\": \"fund\",\n  \"funde\": \"fund\",\n  \"funden\": \"fund\",\n  \"fundente\": \"fundent\",\n  \"fundición\": \"fundicion\",\n  \"fundiciones\": \"fundicion\",\n  \"fundidora\": \"fundidor\",\n  \"fundó\": \"fund\",\n  \"funerales\": \"funeral\",\n  \"funge\": \"fung\",\n  \"fungía\": \"fung\",\n  \"fungían\": \"fung\",\n  \"fungió\": \"fung\",\n  \"fungir\": \"fung\",\n  \"funk\": \"funk\",\n  \"funny\": \"funny\",\n  \"furgones\": \"furgon\",\n  \"furia\": \"furi\",\n  \"furibunda\": \"furibund\",\n  \"furibundo\": \"furibund\",\n  \"furioso\": \"furios\",\n  \"furtiva\": \"furtiv\",\n  \"furtivo\": \"furtiv\",\n  \"furtivos\": \"furtiv\",\n  \"fusión\": \"fusion\",\n  \"fusionada\": \"fusion\",\n  \"fusiones\": \"fusion\",\n  \"futbol\": \"futbol\",\n  \"futbolista\": \"futbol\",\n  \"futbolistas\": \"futbol\",\n  \"futbolística\": \"futbolist\",\n  \"futbolísticamente\": \"futbolist\",\n  \"futbolístico\": \"futbolist\",\n  \"futbolísticos\": \"futbolist\",\n  \"futura\": \"futur\",\n  \"futuras\": \"futur\",\n  \"futureando\": \"futur\",\n  \"futurismo\": \"futur\",\n  \"futurista\": \"futur\",\n  \"futuro\": \"futur\",\n  \"futuros\": \"futur\",\n  \"fxg\": \"fxg\",\n  \"g\": \"g\",\n  \"gabanna\": \"gabann\",\n  \"gabinete\": \"gabinet\",\n  \"gabriel\": \"gabriel\",\n  \"gabriela\": \"gabriel\",\n  \"gado\": \"gad\",\n  \"gafete\": \"gafet\",\n  \"gail\": \"gail\",\n  \"gala\": \"gal\",\n  \"galán\": \"galan\",\n  \"galanes\": \"galan\",\n  \"galante\": \"galant\",\n  \"galardón\": \"galardon\",\n  \"galardonada\": \"galardon\",\n  \"galardonado\": \"galardon\",\n  \"galardonados\": \"galardon\",\n  \"galardones\": \"galardon\",\n  \"galarza\": \"galarz\",\n  \"galeana\": \"galean\",\n  \"galenos\": \"galen\",\n  \"galeones\": \"galeon\",\n  \"galeras\": \"galer\",\n  \"galería\": \"gal\",\n  \"galerías\": \"gal\",\n  \"gales\": \"gal\",\n  \"galicia\": \"galici\",\n  \"galileo\": \"galile\",\n  \"galimanty\": \"galimanty\",\n  \"galindo\": \"galind\",\n  \"gallardo\": \"gallard\",\n  \"gallego\": \"galleg\",\n  \"gallegos\": \"galleg\",\n  \"galleta\": \"gallet\",\n  \"galletitas\": \"galletit\",\n  \"gallina\": \"gallin\",\n  \"gallinas\": \"gallin\",\n  \"gallinero\": \"galliner\",\n  \"gallo\": \"gall\",\n  \"gallont\": \"gallont\",\n  \"gallos\": \"gall\",\n  \"galvak\": \"galvak\",\n  \"galvamet\": \"galvamet\",\n  \"galván\": \"galvan\",\n  \"galvanizada\": \"galvaniz\",\n  \"gama\": \"gam\",\n  \"gámez\": \"gamez\",\n  \"gamma\": \"gamm\",\n  \"gamuza\": \"gamuz\",\n  \"gana\": \"gan\",\n  \"ganaban\": \"gan\",\n  \"ganada\": \"gan\",\n  \"ganadas\": \"gan\",\n  \"ganadera\": \"ganader\",\n  \"ganadería\": \"ganad\",\n  \"ganadero\": \"ganader\",\n  \"ganaderos\": \"ganader\",\n  \"ganado\": \"gan\",\n  \"ganador\": \"ganador\",\n  \"ganadora\": \"ganador\",\n  \"ganadores\": \"ganador\",\n  \"ganados\": \"gan\",\n  \"ganamos\": \"gan\",\n  \"ganan\": \"gan\",\n  \"ganancia\": \"gananci\",\n  \"ganancias\": \"gananci\",\n  \"ganando\": \"gan\",\n  \"ganar\": \"gan\",\n  \"ganará\": \"gan\",\n  \"ganarán\": \"gan\",\n  \"ganarla\": \"gan\",\n  \"ganarle\": \"gan\",\n  \"ganarles\": \"gan\",\n  \"ganaron\": \"gan\",\n  \"ganarse\": \"gan\",\n  \"ganas\": \"gan\",\n  \"gancho\": \"ganch\",\n  \"ganchó\": \"ganch\",\n  \"ganchos\": \"ganch\",\n  \"gane\": \"gan\",\n  \"ganen\": \"gan\",\n  \"gangas\": \"gang\",\n  \"gannet\": \"gannet\",\n  \"ganó\": \"gan\",\n  \"gaona\": \"gaon\",\n  \"garantía\": \"garant\",\n  \"garantías\": \"garant\",\n  \"garantice\": \"garantic\",\n  \"garantices\": \"garantic\",\n  \"garantiza\": \"garantiz\",\n  \"garantizaba\": \"garantiz\",\n  \"garantizaban\": \"garantiz\",\n  \"garantizada\": \"garantiz\",\n  \"garantizadas\": \"garantiz\",\n  \"garantizar\": \"garantiz\",\n  \"garantizarán\": \"garantiz\",\n  \"garantizaron\": \"garantiz\",\n  \"garantizarse\": \"garantiz\",\n  \"garantizo\": \"garantiz\",\n  \"garcía\": \"garc\",\n  \"gardenia\": \"gardeni\",\n  \"garduño\": \"garduñ\",\n  \"garfield\": \"garfield\",\n  \"garganta\": \"gargant\",\n  \"gargantilla\": \"gargantill\",\n  \"gari\": \"gari\",\n  \"garibay\": \"garibay\",\n  \"garitos\": \"garit\",\n  \"garma\": \"garm\",\n  \"garras\": \"garr\",\n  \"garrido\": \"garr\",\n  \"garrison\": \"garrison\",\n  \"garrocha\": \"garroch\",\n  \"garrotero\": \"garroter\",\n  \"garroteros\": \"garroter\",\n  \"gary\": \"gary\",\n  \"garza\": \"garz\",\n  \"gas\": \"gas\",\n  \"gasca\": \"gasc\",\n  \"gasera\": \"gaser\",\n  \"gaseras\": \"gaser\",\n  \"gases\": \"gas\",\n  \"gasoducto\": \"gasoduct\",\n  \"gasóleo\": \"gasole\",\n  \"gasolina\": \"gasolin\",\n  \"gasolinas\": \"gasolin\",\n  \"gasolinera\": \"gasoliner\",\n  \"gasolinerías\": \"gasolin\",\n  \"gaspar\": \"gasp\",\n  \"gasparini\": \"gasparini\",\n  \"gasset\": \"gasset\",\n  \"gastado\": \"gast\",\n  \"gastados\": \"gast\",\n  \"gastando\": \"gast\",\n  \"gastar\": \"gast\",\n  \"gastarán\": \"gast\",\n  \"gastarla\": \"gast\",\n  \"gastaron\": \"gast\",\n  \"gaste\": \"gast\",\n  \"gasto\": \"gast\",\n  \"gastó\": \"gast\",\n  \"gastolfo\": \"gastolf\",\n  \"gastón\": \"gaston\",\n  \"gastona\": \"gaston\",\n  \"gastos\": \"gast\",\n  \"gastritis\": \"gastritis\",\n  \"gastroenterología\": \"gastroenterolog\",\n  \"gatauline\": \"gataulin\",\n  \"gates\": \"gat\",\n  \"gatica\": \"gatic\",\n  \"gato\": \"gat\",\n  \"gatorade\": \"gatorad\",\n  \"gatos\": \"gat\",\n  \"gatt\": \"gatt\",\n  \"gaucho\": \"gauch\",\n  \"gauna\": \"gaun\",\n  \"gavaldon\": \"gavaldon\",\n  \"gavaldón\": \"gavaldon\",\n  \"gavica\": \"gavic\",\n  \"gaviria\": \"gaviri\",\n  \"gaytán\": \"gaytan\",\n  \"gazal\": \"gazal\",\n  \"gds\": \"gds\",\n  \"gehard\": \"gehard\",\n  \"geiser\": \"geis\",\n  \"gelasio\": \"gelasi\",\n  \"gélida\": \"gel\",\n  \"gélido\": \"gel\",\n  \"gemebundo\": \"gemebund\",\n  \"gemelas\": \"gemel\",\n  \"gemelos\": \"gemel\",\n  \"gemido\": \"gem\",\n  \"gemidos\": \"gem\",\n  \"genaro\": \"genar\",\n  \"gendarme\": \"gend\",\n  \"gene\": \"gen\",\n  \"genealógico\": \"genealog\",\n  \"genera\": \"gener\",\n  \"generación\": \"gener\",\n  \"generaciones\": \"gener\",\n  \"generada\": \"gener\",\n  \"generado\": \"gener\",\n  \"generador\": \"gener\",\n  \"generadora\": \"gener\",\n  \"generadores\": \"gener\",\n  \"generados\": \"gener\",\n  \"general\": \"general\",\n  \"generales\": \"general\",\n  \"generalidad\": \"general\",\n  \"generalista\": \"general\",\n  \"generalizaciones\": \"generaliz\",\n  \"generalizada\": \"generaliz\",\n  \"generalizado\": \"generaliz\",\n  \"generalizados\": \"generaliz\",\n  \"generalizar\": \"generaliz\",\n  \"generalmente\": \"general\",\n  \"generan\": \"gener\",\n  \"generando\": \"gener\",\n  \"generandoles\": \"gener\",\n  \"generar\": \"gener\",\n  \"generará\": \"gener\",\n  \"generarán\": \"gener\",\n  \"generaron\": \"gener\",\n  \"generarse\": \"gener\",\n  \"genérico\": \"gener\",\n  \"generis\": \"generis\",\n  \"género\": \"gener\",\n  \"generó\": \"gener\",\n  \"géneros\": \"gener\",\n  \"generosa\": \"gener\",\n  \"generosas\": \"gener\",\n  \"generoso\": \"gener\",\n  \"genes\": \"gen\",\n  \"genesio\": \"genesi\",\n  \"genetec\": \"genetec\",\n  \"genética\": \"genet\",\n  \"genéticamente\": \"genet\",\n  \"genético\": \"genet\",\n  \"genéticos\": \"genet\",\n  \"genetistas\": \"genet\",\n  \"genial\": \"genial\",\n  \"geniales\": \"genial\",\n  \"genio\": \"geni\",\n  \"genios\": \"geni\",\n  \"genital\": \"genital\",\n  \"genitales\": \"genital\",\n  \"geno\": \"gen\",\n  \"genocidio\": \"genocidi\",\n  \"genpham\": \"genpham\",\n  \"gente\": \"gent\",\n  \"gentes\": \"gent\",\n  \"gentor\": \"gentor\",\n  \"genuinamente\": \"genuin\",\n  \"geo\": \"geo\",\n  \"geográficas\": \"geograf\",\n  \"geográfico\": \"geograf\",\n  \"geographic\": \"geographic\",\n  \"geológicos\": \"geolog\",\n  \"geólogos\": \"geolog\",\n  \"george\": \"georg\",\n  \"georges\": \"georg\",\n  \"gephard\": \"gephard\",\n  \"gephardt\": \"gephardt\",\n  \"gerald\": \"gerald\",\n  \"gerardo\": \"gerard\",\n  \"gerda\": \"gerd\",\n  \"gerencia\": \"gerenci\",\n  \"gerencial\": \"gerencial\",\n  \"gerenciales\": \"gerencial\",\n  \"gerencias\": \"gerenci\",\n  \"gerente\": \"gerent\",\n  \"gerentes\": \"gerent\",\n  \"germán\": \"german\",\n  \"germen\": \"germ\",\n  \"geroncio\": \"geronci\",\n  \"gerónimo\": \"geronim\",\n  \"gestado\": \"gest\",\n  \"gestando\": \"gest\",\n  \"gestión\": \"gestion\",\n  \"gestionando\": \"gestion\",\n  \"gestionar\": \"gestion\",\n  \"gestiones\": \"gestion\",\n  \"gesto\": \"gest\",\n  \"gestor\": \"gestor\",\n  \"gestoras\": \"gestor\",\n  \"gestoría\": \"gestor\",\n  \"gfinbur\": \"gfinbur\",\n  \"ghali\": \"ghali\",\n  \"ghana\": \"ghan\",\n  \"ghanés\": \"ghanes\",\n  \"ghersi\": \"ghersi\",\n  \"giancana\": \"giancan\",\n  \"gianni\": \"gianni\",\n  \"gielgud\": \"gielgud\",\n  \"gigante\": \"gigant\",\n  \"gigantes\": \"gigant\",\n  \"gigantesco\": \"gigantesc\",\n  \"gigantescos\": \"gigantesc\",\n  \"gigantezca\": \"gigantezc\",\n  \"gijón\": \"gijon\",\n  \"gil\": \"gil\",\n  \"gilbert\": \"gilbert\",\n  \"gilberto\": \"gilbert\",\n  \"gime\": \"gim\",\n  \"gimnasia\": \"gimnasi\",\n  \"gimnasio\": \"gimnasi\",\n  \"gimnospermas\": \"gimnosperm\",\n  \"ginebra\": \"ginebr\",\n  \"ginecobstetricia\": \"ginecobstetrici\",\n  \"ginecólogo\": \"ginecolog\",\n  \"giovanni\": \"giovanni\",\n  \"gira\": \"gir\",\n  \"giraba\": \"gir\",\n  \"girado\": \"gir\",\n  \"giran\": \"gir\",\n  \"girar\": \"gir\",\n  \"girara\": \"gir\",\n  \"girará\": \"gir\",\n  \"giraron\": \"gir\",\n  \"giras\": \"gir\",\n  \"giro\": \"gir\",\n  \"giró\": \"gir\",\n  \"girolamo\": \"girolam\",\n  \"girolano\": \"girolan\",\n  \"giros\": \"gir\",\n  \"gises\": \"gis\",\n  \"giuseppe\": \"giusepp\",\n  \"gladiador\": \"gladiador\",\n  \"gladiadores\": \"gladiador\",\n  \"glamorosa\": \"glamor\",\n  \"glamour\": \"glamour\",\n  \"glamur\": \"glamur\",\n  \"glándula\": \"glandul\",\n  \"glen\": \"glen\",\n  \"glenn\": \"glenn\",\n  \"glioblastomas\": \"glioblastom\",\n  \"global\": \"global\",\n  \"globales\": \"global\",\n  \"globalización\": \"globaliz\",\n  \"globalizado\": \"globaliz\",\n  \"globalizarse\": \"globaliz\",\n  \"globe\": \"glob\",\n  \"globero\": \"glober\",\n  \"globo\": \"glob\",\n  \"globos\": \"glob\",\n  \"gloria\": \"glori\",\n  \"glorias\": \"glori\",\n  \"glorieta\": \"gloriet\",\n  \"gloriosísima\": \"gloriosisim\",\n  \"glosas\": \"glos\",\n  \"goave\": \"goav\",\n  \"gober\": \"gob\",\n  \"gobernaban\": \"gobern\",\n  \"gobernabilidad\": \"gobern\",\n  \"gobernación\": \"gobern\",\n  \"gobernada\": \"gobern\",\n  \"gobernado\": \"gobern\",\n  \"gobernador\": \"gobern\",\n  \"gobernadora\": \"gobern\",\n  \"gobernadores\": \"gobern\",\n  \"gobernante\": \"gobern\",\n  \"gobernantes\": \"gobern\",\n  \"gobernar\": \"gobern\",\n  \"gobernarse\": \"gobern\",\n  \"gobernícolas\": \"gobernicol\",\n  \"gobernó\": \"gobern\",\n  \"gobienro\": \"gobienr\",\n  \"gobierna\": \"gobiern\",\n  \"gobierne\": \"gobiern\",\n  \"gobierno\": \"gobiern\",\n  \"gobiernos\": \"gobi\",\n  \"goce\": \"goc\",\n  \"gocen\": \"goc\",\n  \"goddard\": \"goddard\",\n  \"godínez\": \"godinez\",\n  \"goering\": \"goering\",\n  \"goeter\": \"goet\",\n  \"goethe\": \"goeth\",\n  \"gol\": \"gol\",\n  \"golazo\": \"golaz\",\n  \"golden\": \"gold\",\n  \"goldsmith\": \"goldsmith\",\n  \"goleador\": \"goleador\",\n  \"goleadora\": \"goleador\",\n  \"goleadores\": \"goleador\",\n  \"golearon\": \"gol\",\n  \"goleo\": \"gole\",\n  \"goles\": \"gol\",\n  \"golf\": \"golf\",\n  \"golfistas\": \"golfist\",\n  \"golfo\": \"golf\",\n  \"golondrinas\": \"golondrin\",\n  \"golpe\": \"golp\",\n  \"golpeaba\": \"golp\",\n  \"golpeado\": \"golp\",\n  \"golpeador\": \"golpeador\",\n  \"golpeados\": \"golp\",\n  \"golpean\": \"golp\",\n  \"golpear\": \"golp\",\n  \"golpeara\": \"golp\",\n  \"golpearlo\": \"golp\",\n  \"golpearon\": \"golp\",\n  \"golpeo\": \"golpe\",\n  \"golpeó\": \"golpe\",\n  \"golpes\": \"golp\",\n  \"golpiza\": \"golpiz\",\n  \"goma\": \"gom\",\n  \"gomes\": \"gom\",\n  \"gómez\": \"gomez\",\n  \"gomiz\": \"gomiz\",\n  \"gonzalez\": \"gonzalez\",\n  \"gonzález\": \"gonzalez\",\n  \"gonzalitos\": \"gonzalit\",\n  \"gonzalo\": \"gonzal\",\n  \"goosen\": \"goos\",\n  \"gor\": \"gor\",\n  \"gorbachov\": \"gorbachov\",\n  \"gorda\": \"gord\",\n  \"gordillo\": \"gordill\",\n  \"gordo\": \"gord\",\n  \"gordolobo\": \"gordolob\",\n  \"gordon\": \"gordon\",\n  \"gorgona\": \"gorgon\",\n  \"gorgonia\": \"gorgoni\",\n  \"gorila\": \"goril\",\n  \"gorilas\": \"goril\",\n  \"gorios\": \"gori\",\n  \"gorra\": \"gorr\",\n  \"gorras\": \"gorr\",\n  \"gorro\": \"gorr\",\n  \"gortari\": \"gortari\",\n  \"gortázar\": \"gortaz\",\n  \"gorvachov\": \"gorvachov\",\n  \"gota\": \"got\",\n  \"gotas\": \"got\",\n  \"goteo\": \"gote\",\n  \"goteras\": \"goter\",\n  \"gourmet\": \"gourmet\",\n  \"gourmets\": \"gourmets\",\n  \"goya\": \"goy\",\n  \"goyesca\": \"goyesc\",\n  \"goyesco\": \"goyesc\",\n  \"goyo\": \"goy\",\n  \"goza\": \"goz\",\n  \"gozado\": \"goz\",\n  \"gozan\": \"goz\",\n  \"gozar\": \"goz\",\n  \"gozo\": \"goz\",\n  \"gozoso\": \"gozos\",\n  \"graba\": \"grab\",\n  \"grababan\": \"grab\",\n  \"grabación\": \"grabacion\",\n  \"grabaciones\": \"grabacion\",\n  \"grabada\": \"grab\",\n  \"grabadas\": \"grab\",\n  \"grabadista\": \"grabad\",\n  \"grabado\": \"grab\",\n  \"grabadora\": \"grabador\",\n  \"grabadoras\": \"grabador\",\n  \"grabados\": \"grab\",\n  \"grabamos\": \"grab\",\n  \"graban\": \"grab\",\n  \"grabar\": \"grab\",\n  \"grabara\": \"grab\",\n  \"grabará\": \"grab\",\n  \"grabarle\": \"grab\",\n  \"grabaron\": \"grab\",\n  \"grabó\": \"grab\",\n  \"gracia\": \"graci\",\n  \"graciano\": \"gracian\",\n  \"gracias\": \"graci\",\n  \"graciela\": \"graciel\",\n  \"gracilmente\": \"gracil\",\n  \"gradas\": \"grad\",\n  \"graderío\": \"graderi\",\n  \"grado\": \"grad\",\n  \"gradocon\": \"gradocon\",\n  \"grados\": \"grad\",\n  \"graduación\": \"graduacion\",\n  \"graduado\": \"gradu\",\n  \"graduados\": \"gradu\",\n  \"gradual\": \"gradual\",\n  \"gradualmente\": \"gradual\",\n  \"graduaron\": \"gradu\",\n  \"graduarse\": \"gradu\",\n  \"grafenberg\": \"grafenberg\",\n  \"grafiar\": \"grafi\",\n  \"gráfica\": \"grafic\",\n  \"gráficas\": \"grafic\",\n  \"gráfico\": \"grafic\",\n  \"grafito\": \"grafit\",\n  \"grajales\": \"grajal\",\n  \"grajeda\": \"grajed\",\n  \"gramajo\": \"gramaj\",\n  \"grammont\": \"grammont\",\n  \"grammy\": \"grammy\",\n  \"grammys\": \"grammys\",\n  \"gramos\": \"gram\",\n  \"grampus\": \"grampus\",\n  \"gran\": \"gran\",\n  \"grana\": \"gran\",\n  \"graña\": \"grañ\",\n  \"granada\": \"gran\",\n  \"granadas\": \"gran\",\n  \"granaderos\": \"granader\",\n  \"granados\": \"gran\",\n  \"granalguina\": \"granalguin\",\n  \"granata\": \"granat\",\n  \"granate\": \"granat\",\n  \"grand\": \"grand\",\n  \"grande\": \"grand\",\n  \"grandecito\": \"grandecit\",\n  \"grandes\": \"grand\",\n  \"grandeza\": \"grandez\",\n  \"grandguillhomme\": \"grandguillhomm\",\n  \"grandiosa\": \"grandios\",\n  \"grandiosas\": \"grandi\",\n  \"grandioso\": \"grandios\",\n  \"grandísimo\": \"grandisim\",\n  \"grandota\": \"grandot\",\n  \"grandote\": \"grandot\",\n  \"grandotes\": \"grandot\",\n  \"granero\": \"graner\",\n  \"granillo\": \"granill\",\n  \"granito\": \"granit\",\n  \"granja\": \"granj\",\n  \"granjas\": \"granj\",\n  \"granjeros\": \"granjer\",\n  \"granma\": \"granm\",\n  \"grano\": \"gran\",\n  \"granos\": \"gran\",\n  \"gratificaciones\": \"gratif\",\n  \"gratificante\": \"gratif\",\n  \"gratis\": \"gratis\",\n  \"gratitud\": \"gratitud\",\n  \"grato\": \"grat\",\n  \"gratuita\": \"gratuit\",\n  \"gratuitamente\": \"gratuit\",\n  \"gratuito\": \"gratuit\",\n  \"gravados\": \"grav\",\n  \"gravamen\": \"gravam\",\n  \"gravámenes\": \"gravamen\",\n  \"gravar\": \"grav\",\n  \"grave\": \"grav\",\n  \"gravedad\": \"graved\",\n  \"gravemente\": \"gravement\",\n  \"graves\": \"grav\",\n  \"gravísimo\": \"gravisim\",\n  \"gravitacionales\": \"gravitacional\",\n  \"gravoso\": \"gravos\",\n  \"gray\": \"gray\",\n  \"greatest\": \"greatest\",\n  \"grecia\": \"greci\",\n  \"grecorromano\": \"grecorroman\",\n  \"greenbelt\": \"greenbelt\",\n  \"greenspan\": \"greensp\",\n  \"greg\": \"greg\",\n  \"gregorianos\": \"gregorian\",\n  \"gregorio\": \"gregori\",\n  \"gregory\": \"gregory\",\n  \"greña\": \"greñ\",\n  \"griega\": \"grieg\",\n  \"griego\": \"grieg\",\n  \"griegos\": \"grieg\",\n  \"grieta\": \"griet\",\n  \"grijalva\": \"grijalv\",\n  \"grill\": \"grill\",\n  \"grilletes\": \"grillet\",\n  \"gripa\": \"grip\",\n  \"gripal\": \"gripal\",\n  \"gripe\": \"grip\",\n  \"gris\": \"gris\",\n  \"griselda\": \"griseld\",\n  \"grises\": \"gris\",\n  \"grita\": \"grit\",\n  \"gritaba\": \"grit\",\n  \"gritaban\": \"grit\",\n  \"gritando\": \"grit\",\n  \"gritar\": \"grit\",\n  \"gritarle\": \"grit\",\n  \"gritaron\": \"grit\",\n  \"gritería\": \"grit\",\n  \"grito\": \"grit\",\n  \"gritó\": \"grit\",\n  \"gritos\": \"grit\",\n  \"gro\": \"gro\",\n  \"grosera\": \"groser\",\n  \"grosería\": \"gros\",\n  \"groserías\": \"gros\",\n  \"grotewold\": \"grotewold\",\n  \"group\": \"group\",\n  \"grrrrr\": \"grrrrr\",\n  \"grúa\": \"gru\",\n  \"grúas\": \"gru\",\n  \"gruending\": \"gruending\",\n  \"gruesa\": \"grues\",\n  \"grueso\": \"grues\",\n  \"gruesos\": \"grues\",\n  \"grumos\": \"grum\",\n  \"grupo\": \"grup\",\n  \"grupos\": \"grup\",\n  \"guacamole\": \"guacamol\",\n  \"guadalajara\": \"guadalaj\",\n  \"guadalcanal\": \"guadalcanal\",\n  \"guadalupe\": \"guadalup\",\n  \"guajardo\": \"guajard\",\n  \"guamerú\": \"guameru\",\n  \"guan\": \"guan\",\n  \"guanajuatense\": \"guanajuatens\",\n  \"guanajuato\": \"guanajuat\",\n  \"guango\": \"guang\",\n  \"guantes\": \"guant\",\n  \"guapa\": \"guap\",\n  \"guapo\": \"guap\",\n  \"guarda\": \"guard\",\n  \"guardacostas\": \"guardacost\",\n  \"guardada\": \"guard\",\n  \"guardadita\": \"guardadit\",\n  \"guardados\": \"guard\",\n  \"guardameta\": \"guardamet\",\n  \"guardan\": \"guard\",\n  \"guardar\": \"guard\",\n  \"guardará\": \"guard\",\n  \"guardaran\": \"guard\",\n  \"guardarán\": \"guard\",\n  \"guardarlas\": \"guard\",\n  \"guardarropa\": \"guardarrop\",\n  \"guardarse\": \"guard\",\n  \"guardas\": \"guard\",\n  \"guardería\": \"guard\",\n  \"guardia\": \"guardi\",\n  \"guardián\": \"guardian\",\n  \"guardias\": \"guardi\",\n  \"guardó\": \"guard\",\n  \"guat\": \"guat\",\n  \"guatemala\": \"guatemal\",\n  \"guatemalteco\": \"guatemaltec\",\n  \"guatemaltecos\": \"guatemaltec\",\n  \"gubernamental\": \"gubernamental\",\n  \"gubernamentales\": \"gubernamental\",\n  \"gubernatura\": \"gubernatur\",\n  \"guccione\": \"guccion\",\n  \"güedad\": \"güed\",\n  \"güera\": \"güer\",\n  \"güerito\": \"güerit\",\n  \"güeritos\": \"güerit\",\n  \"güero\": \"güer\",\n  \"guerra\": \"guerr\",\n  \"guerras\": \"guerr\",\n  \"guerrerense\": \"guerrerens\",\n  \"guerreresnses\": \"guerreresns\",\n  \"guerrero\": \"guerrer\",\n  \"guerrilla\": \"guerrill\",\n  \"guerrillera\": \"guerriller\",\n  \"guerrillero\": \"guerriller\",\n  \"guerrilleros\": \"guerriller\",\n  \"guetiérrez\": \"guetierrez\",\n  \"guevara\": \"guev\",\n  \"guevarista\": \"guevar\",\n  \"guía\": \"gui\",\n  \"guiada\": \"gui\",\n  \"guiadas\": \"gui\",\n  \"guiar\": \"gui\",\n  \"guiaron\": \"gui\",\n  \"guíe\": \"gui\",\n  \"guillermina\": \"guillermin\",\n  \"guillermo\": \"guillerm\",\n  \"guillespie\": \"guillespi\",\n  \"guillotina\": \"guillotin\",\n  \"guío\": \"gui\",\n  \"guiomar\": \"guiom\",\n  \"guión\": \"guion\",\n  \"guiones\": \"guion\",\n  \"guitarra\": \"guitarr\",\n  \"guitarrista\": \"guitarr\",\n  \"guns\": \"guns\",\n  \"gurmets\": \"gurmets\",\n  \"gurría\": \"gurr\",\n  \"gurrola\": \"gurrol\",\n  \"gusano\": \"gusan\",\n  \"gusta\": \"gust\",\n  \"gustaba\": \"gust\",\n  \"gustaban\": \"gust\",\n  \"gustado\": \"gust\",\n  \"gustamos\": \"gust\",\n  \"gustan\": \"gust\",\n  \"gustando\": \"gust\",\n  \"gustar\": \"gust\",\n  \"gustaría\": \"gust\",\n  \"gustavo\": \"gustav\",\n  \"guste\": \"gust\",\n  \"gusten\": \"gust\",\n  \"gusto\": \"gust\",\n  \"gustó\": \"gust\",\n  \"gustos\": \"gust\",\n  \"gutierrez\": \"gutierrez\",\n  \"gutiérrez\": \"gutierrez\",\n  \"guzmán\": \"guzman\",\n  \"gyetko\": \"gyetk\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"habana\": \"haban\",\n  \"haber\": \"hab\",\n  \"haberlas\": \"hab\",\n  \"haberle\": \"hab\",\n  \"haberles\": \"hab\",\n  \"haberlo\": \"hab\",\n  \"haberlos\": \"hab\",\n  \"haberse\": \"hab\",\n  \"había\": \"hab\",\n  \"habíamos\": \"hab\",\n  \"habían\": \"hab\",\n  \"habidas\": \"hab\",\n  \"habido\": \"hab\",\n  \"habidos\": \"hab\",\n  \"habiendo\": \"hab\",\n  \"hábil\": \"habil\",\n  \"hábiles\": \"habil\",\n  \"habilidad\": \"habil\",\n  \"habilidades\": \"habil\",\n  \"habilitado\": \"habilit\",\n  \"habilitar\": \"habilit\",\n  \"habita\": \"habit\",\n  \"habitaban\": \"habit\",\n  \"habitables\": \"habit\",\n  \"habitación\": \"habit\",\n  \"habitacional\": \"habitacional\",\n  \"habitaciones\": \"habit\",\n  \"habitadas\": \"habit\",\n  \"habitado\": \"habit\",\n  \"habitantes\": \"habit\",\n  \"habitarán\": \"habit\",\n  \"hábito\": \"habit\",\n  \"hábitos\": \"habit\",\n  \"habituados\": \"habitu\",\n  \"habitual\": \"habitual\",\n  \"habla\": \"habl\",\n  \"hablaba\": \"habl\",\n  \"hablábamos\": \"habl\",\n  \"hablado\": \"habl\",\n  \"hablador\": \"hablador\",\n  \"hablados\": \"habl\",\n  \"háblame\": \"hablam\",\n  \"hablamos\": \"habl\",\n  \"hablan\": \"habl\",\n  \"hablando\": \"habl\",\n  \"hablándose\": \"habl\",\n  \"hablar\": \"habl\",\n  \"hablara\": \"habl\",\n  \"hablará\": \"habl\",\n  \"hablarán\": \"habl\",\n  \"hablarle\": \"habl\",\n  \"hablarme\": \"habl\",\n  \"hablarnos\": \"habl\",\n  \"hablaron\": \"habl\",\n  \"hable\": \"habl\",\n  \"hablé\": \"habl\",\n  \"hablen\": \"habl\",\n  \"hablo\": \"habl\",\n  \"habló\": \"habl\",\n  \"habra\": \"habr\",\n  \"habrá\": \"habr\",\n  \"habrán\": \"habran\",\n  \"habre\": \"habr\",\n  \"habremos\": \"habr\",\n  \"habría\": \"habr\",\n  \"habríamos\": \"habr\",\n  \"habrían\": \"habr\",\n  \"hace\": \"hac\",\n  \"hacemos\": \"hac\",\n  \"hacen\": \"hac\",\n  \"hacendarias\": \"hacendari\",\n  \"hacendario\": \"hacendari\",\n  \"hacendoso\": \"hacend\",\n  \"hacer\": \"hac\",\n  \"hacerla\": \"hac\",\n  \"hacerle\": \"hac\",\n  \"hacerles\": \"hac\",\n  \"hacerlo\": \"hac\",\n  \"hacerlos\": \"hac\",\n  \"hacerme\": \"hac\",\n  \"hacernos\": \"hac\",\n  \"hacerse\": \"hac\",\n  \"haces\": \"hac\",\n  \"hacha\": \"hach\",\n  \"hacia\": \"haci\",\n  \"hacía\": \"hac\",\n  \"hacíamos\": \"hac\",\n  \"hacían\": \"hac\",\n  \"hacienda\": \"haciend\",\n  \"haciendas\": \"haciend\",\n  \"haciendo\": \"hac\",\n  \"haciéndola\": \"hac\",\n  \"haciéndolas\": \"hac\",\n  \"haciéndoles\": \"hac\",\n  \"haciéndolo\": \"hac\",\n  \"haciéndolos\": \"hac\",\n  \"haciéndose\": \"hac\",\n  \"hacinamiento\": \"hacin\",\n  \"haddad\": \"hadd\",\n  \"haemophilus\": \"haemophilus\",\n  \"haga\": \"hag\",\n  \"hágalas\": \"hagal\",\n  \"hágalo\": \"hagal\",\n  \"hagamos\": \"hag\",\n  \"hagámosla\": \"hagamosl\",\n  \"hagámoslo\": \"hagamosl\",\n  \"hagan\": \"hag\",\n  \"hago\": \"hag\",\n  \"hainan\": \"hain\",\n  \"haití\": \"hait\",\n  \"haitianos\": \"haitian\",\n  \"halagadora\": \"halag\",\n  \"halago\": \"halag\",\n  \"halcion\": \"halcion\",\n  \"halcón\": \"halcon\",\n  \"halen\": \"hal\",\n  \"hall\": \"hall\",\n  \"halla\": \"hall\",\n  \"hallaba\": \"hall\",\n  \"hallado\": \"hall\",\n  \"hallados\": \"hall\",\n  \"hallamos\": \"hall\",\n  \"hallan\": \"hall\",\n  \"hallar\": \"hall\",\n  \"hallarle\": \"hall\",\n  \"hallazgo\": \"hallazg\",\n  \"hallazgos\": \"hallazg\",\n  \"halle\": \"hall\",\n  \"halley\": \"halley\",\n  \"halógeno\": \"halogen\",\n  \"hamaca\": \"hamac\",\n  \"hambre\": \"hambr\",\n  \"hambres\": \"hambr\",\n  \"hambriento\": \"hambrient\",\n  \"hambrientos\": \"hambrient\",\n  \"hamburguesa\": \"hamburgues\",\n  \"hamburguesas\": \"hamburgues\",\n  \"hamel\": \"hamel\",\n  \"hamilton\": \"hamilton\",\n  \"hampa\": \"hamp\",\n  \"hamponio\": \"hamponi\",\n  \"han\": \"han\",\n  \"hanchette\": \"hanchett\",\n  \"handicap\": \"handicap\",\n  \"hangar\": \"hang\",\n  \"hank\": \"hank\",\n  \"hannover\": \"hannov\",\n  \"hanover\": \"hanov\",\n  \"hans\": \"hans\",\n  \"hanse\": \"hans\",\n  \"hará\": \"har\",\n  \"harald\": \"harald\",\n  \"harán\": \"haran\",\n  \"harás\": \"haras\",\n  \"harbaugh\": \"harbaugh\",\n  \"hard\": \"hard\",\n  \"hardcore\": \"hardcor\",\n  \"hardware\": \"hardwar\",\n  \"haré\": \"har\",\n  \"harefield\": \"harefield\",\n  \"haremos\": \"har\",\n  \"haría\": \"har\",\n  \"haríamos\": \"har\",\n  \"harían\": \"har\",\n  \"harina\": \"harin\",\n  \"harlem\": \"harlem\",\n  \"haro\": \"har\",\n  \"harper\": \"harp\",\n  \"harry\": \"harry\",\n  \"hartazgo\": \"hartazg\",\n  \"hartmut\": \"hartmut\",\n  \"harto\": \"hart\",\n  \"harvard\": \"harvard\",\n  \"harvest\": \"harvest\",\n  \"harvey\": \"harvey\",\n  \"has\": \"has\",\n  \"hassan\": \"hass\",\n  \"hasta\": \"hast\",\n  \"haugen\": \"haug\",\n  \"hausser\": \"hauss\",\n  \"havelange\": \"havelang\",\n  \"hawai\": \"hawai\",\n  \"hawaiano\": \"hawaian\",\n  \"hay\": \"hay\",\n  \"haya\": \"hay\",\n  \"hayamos\": \"hay\",\n  \"hayan\": \"hay\",\n  \"hayas\": \"hay\",\n  \"hayat\": \"hayat\",\n  \"haz\": \"haz\",\n  \"hazaña\": \"hazañ\",\n  \"hboc\": \"hboc\",\n  \"hc\": \"hc\",\n  \"he\": \"he\",\n  \"headsh\": \"headsh\",\n  \"health\": \"health\",\n  \"heart\": \"heart\",\n  \"hearts\": \"hearts\",\n  \"heavy\": \"heavy\",\n  \"heberto\": \"hebert\",\n  \"hebilla\": \"hebill\",\n  \"hebillas\": \"hebill\",\n  \"hecha\": \"hech\",\n  \"hechas\": \"hech\",\n  \"hechizada\": \"hechiz\",\n  \"hecho\": \"hech\",\n  \"hechos\": \"hech\",\n  \"hectárea\": \"hectare\",\n  \"hectáreas\": \"hectar\",\n  \"hector\": \"hector\",\n  \"héctor\": \"hector\",\n  \"hedrick\": \"hedrick\",\n  \"hegel\": \"hegel\",\n  \"heidi\": \"heidi\",\n  \"heladas\": \"hel\",\n  \"helado\": \"hel\",\n  \"helados\": \"hel\",\n  \"helen\": \"hel\",\n  \"helicóptero\": \"helicopter\",\n  \"helicópteros\": \"helicopter\",\n  \"hembras\": \"hembr\",\n  \"hemerográficas\": \"hemerograf\",\n  \"hemiciclo\": \"hemicicl\",\n  \"hemisferio\": \"hemisferi\",\n  \"hemoglobina\": \"hemoglobin\",\n  \"hemorragias\": \"hemorragi\",\n  \"hemos\": \"hem\",\n  \"henderson\": \"henderson\",\n  \"henequenera\": \"henequener\",\n  \"henk\": \"henk\",\n  \"henrique\": \"henriqu\",\n  \"henry\": \"henry\",\n  \"hepática\": \"hepat\",\n  \"hepburn\": \"hepburn\",\n  \"heráclito\": \"heraclit\",\n  \"heralcor\": \"heralcor\",\n  \"herald\": \"herald\",\n  \"heráldico\": \"herald\",\n  \"herbicidas\": \"herbic\",\n  \"herbívoros\": \"herbivor\",\n  \"herce\": \"herc\",\n  \"hércules\": \"hercul\",\n  \"herdez\": \"herdez\",\n  \"hérdez\": \"herdez\",\n  \"heredados\": \"hered\",\n  \"heredero\": \"hereder\",\n  \"herederos\": \"hereder\",\n  \"heredia\": \"heredi\",\n  \"hereditario\": \"hereditari\",\n  \"herencia\": \"herenci\",\n  \"heriberto\": \"heribert\",\n  \"herida\": \"her\",\n  \"heridas\": \"her\",\n  \"herido\": \"her\",\n  \"heridos\": \"her\",\n  \"herir\": \"her\",\n  \"herirla\": \"her\",\n  \"heritage\": \"heritag\",\n  \"herman\": \"herm\",\n  \"hermana\": \"herman\",\n  \"hermanas\": \"herman\",\n  \"hermandad\": \"hermand\",\n  \"hermanitas\": \"hermanit\",\n  \"hermann\": \"hermann\",\n  \"hermano\": \"herman\",\n  \"hermanó\": \"herman\",\n  \"hermanos\": \"herman\",\n  \"hermenegildo\": \"hermenegild\",\n  \"hermética\": \"hermet\",\n  \"hermeticidad\": \"hermet\",\n  \"hermetismo\": \"hermet\",\n  \"hermila\": \"hermil\",\n  \"hermosa\": \"hermos\",\n  \"hermosamente\": \"herm\",\n  \"hermosas\": \"herm\",\n  \"hermosillo\": \"hermosill\",\n  \"hermoso\": \"hermos\",\n  \"hernán\": \"hernan\",\n  \"hernández\": \"hernandez\",\n  \"hernandéz\": \"hernandez\",\n  \"hernando\": \"hern\",\n  \"héroe\": \"hero\",\n  \"héroes\": \"her\",\n  \"heróicos\": \"heroic\",\n  \"heroísmo\": \"heroism\",\n  \"herradura\": \"herradur\",\n  \"herramental\": \"herramental\",\n  \"herramienta\": \"herramient\",\n  \"herramientas\": \"herramient\",\n  \"herrera\": \"herrer\",\n  \"herzfeld\": \"herzfeld\",\n  \"herzog\": \"herzog\",\n  \"heterosexual\": \"heterosexual\",\n  \"heterosexuales\": \"heterosexual\",\n  \"hewlett\": \"hewlett\",\n  \"hewlettpackard\": \"hewlettpackard\",\n  \"hgo\": \"hgo\",\n  \"híbrido\": \"hibr\",\n  \"híbridos\": \"hibr\",\n  \"hice\": \"hic\",\n  \"hiciera\": \"hic\",\n  \"hicieran\": \"hic\",\n  \"hicieron\": \"hic\",\n  \"hiciesen\": \"hic\",\n  \"hicimos\": \"hic\",\n  \"hiciste\": \"hic\",\n  \"hidalgo\": \"hidalg\",\n  \"hidalgos\": \"hidalg\",\n  \"hidalguense\": \"hidalguens\",\n  \"hidalguenses\": \"hidalguens\",\n  \"hidráulica\": \"hidraul\",\n  \"hidráulicos\": \"hidraul\",\n  \"hidrocarburo\": \"hidrocarbur\",\n  \"hidrocarburos\": \"hidrocarbur\",\n  \"hidroelectricidad\": \"hidroelectr\",\n  \"hidrológica\": \"hidrolog\",\n  \"hidrológicos\": \"hidrolog\",\n  \"hielo\": \"hiel\",\n  \"hierba\": \"hierb\",\n  \"hierbas\": \"hierb\",\n  \"hierro\": \"hierr\",\n  \"hierros\": \"hierr\",\n  \"hígado\": \"hig\",\n  \"hígados\": \"hig\",\n  \"higiene\": \"higien\",\n  \"higinio\": \"higini\",\n  \"hija\": \"hij\",\n  \"hijas\": \"hij\",\n  \"hijo\": \"hij\",\n  \"hijos\": \"hij\",\n  \"hilario\": \"hilari\",\n  \"hilburn\": \"hilburn\",\n  \"hilda\": \"hild\",\n  \"hilera\": \"hiler\",\n  \"hill\": \"hill\",\n  \"hillary\": \"hillary\",\n  \"hills\": \"hills\",\n  \"hilo\": \"hil\",\n  \"hilos\": \"hil\",\n  \"hilvanó\": \"hilvan\",\n  \"himenia\": \"himeni\",\n  \"himno\": \"himn\",\n  \"hinca\": \"hinc\",\n  \"hincapié\": \"hincapi\",\n  \"hines\": \"hin\",\n  \"hinojosa\": \"hinoj\",\n  \"hipersensibilidad\": \"hipersensibil\",\n  \"hipertensión\": \"hipertension\",\n  \"hipertiroidismo\": \"hipertiroid\",\n  \"hipo\": \"hip\",\n  \"hipólito\": \"hipolit\",\n  \"hiponacte\": \"hiponact\",\n  \"hipoteca\": \"hipotec\",\n  \"hipotecada\": \"hipotec\",\n  \"hipotecaria\": \"hipotecari\",\n  \"hipotecarias\": \"hipotecari\",\n  \"hipotecario\": \"hipotecari\",\n  \"hipótesis\": \"hipotesis\",\n  \"hipotéticamente\": \"hipotet\",\n  \"hipotéticos\": \"hipotet\",\n  \"hippie\": \"hippi\",\n  \"hippies\": \"hippi\",\n  \"hiriendo\": \"hir\",\n  \"hirió\": \"hir\",\n  \"hirofumi\": \"hirofumi\",\n  \"hiroshima\": \"hiroshim\",\n  \"hispana\": \"hispan\",\n  \"hispánicas\": \"hispan\",\n  \"hispanio\": \"hispani\",\n  \"hispanos\": \"hispan\",\n  \"histeria\": \"histeri\",\n  \"histéricamente\": \"hister\",\n  \"histérico\": \"hister\",\n  \"historia\": \"histori\",\n  \"historiadores\": \"histori\",\n  \"historial\": \"historial\",\n  \"historias\": \"histori\",\n  \"histórica\": \"histor\",\n  \"históricamente\": \"histor\",\n  \"históricas\": \"histor\",\n  \"historico\": \"histor\",\n  \"histórico\": \"histor\",\n  \"históricos\": \"histor\",\n  \"hit\": \"hit\",\n  \"hitazo\": \"hitaz\",\n  \"hitler\": \"hitl\",\n  \"hits\": \"hits\",\n  \"hizo\": \"hiz\",\n  \"ho\": \"ho\",\n  \"hobbie\": \"hobbi\",\n  \"hoc\": \"hoc\",\n  \"hocico\": \"hocic\",\n  \"hogar\": \"hog\",\n  \"hogares\": \"hogar\",\n  \"hogueras\": \"hoguer\",\n  \"hoja\": \"hoj\",\n  \"hojalata\": \"hojalat\",\n  \"hojas\": \"hoj\",\n  \"hojeo\": \"hoje\",\n  \"hojita\": \"hojit\",\n  \"hola\": \"hol\",\n  \"holanda\": \"holand\",\n  \"holandés\": \"holandes\",\n  \"holanes\": \"holan\",\n  \"holding\": \"holding\",\n  \"holgada\": \"holg\",\n  \"holgado\": \"holg\",\n  \"holguín\": \"holguin\",\n  \"holliday\": \"holliday\",\n  \"hollywood\": \"hollywood\",\n  \"holt\": \"holt\",\n  \"holzinger\": \"holzing\",\n  \"homar\": \"hom\",\n  \"hombre\": \"hombr\",\n  \"hombres\": \"hombr\",\n  \"hombro\": \"hombr\",\n  \"home\": \"hom\",\n  \"homenaje\": \"homenaj\",\n  \"homenajeado\": \"homenaj\",\n  \"homeóstasis\": \"homeostasis\",\n  \"homero\": \"homer\",\n  \"homicida\": \"homic\",\n  \"homicidas\": \"homic\",\n  \"homicidio\": \"homicidi\",\n  \"homicidios\": \"homicidi\",\n  \"homilía\": \"homil\",\n  \"homologación\": \"homolog\",\n  \"homologando\": \"homolog\",\n  \"homologarlas\": \"homolog\",\n  \"homologarlos\": \"homolog\",\n  \"homologarnos\": \"homolog\",\n  \"homólogo\": \"homolog\",\n  \"homólogos\": \"homolog\",\n  \"homónimo\": \"homonim\",\n  \"homosexual\": \"homosexual\",\n  \"homosexuales\": \"homosexual\",\n  \"homosexualismo\": \"homosexual\",\n  \"homs\": \"homs\",\n  \"honda\": \"hond\",\n  \"hondo\": \"hond\",\n  \"honduras\": \"hondur\",\n  \"hondureño\": \"hondureñ\",\n  \"hondureños\": \"hondureñ\",\n  \"honesta\": \"honest\",\n  \"honestamente\": \"honest\",\n  \"honestidad\": \"honest\",\n  \"honesto\": \"honest\",\n  \"honestos\": \"honest\",\n  \"hong\": \"hong\",\n  \"honor\": \"honor\",\n  \"honorabilidad\": \"honor\",\n  \"honorable\": \"honor\",\n  \"honorables\": \"honor\",\n  \"honorarios\": \"honorari\",\n  \"honores\": \"honor\",\n  \"honorífica\": \"honorif\",\n  \"honrada\": \"honr\",\n  \"honradez\": \"honradez\",\n  \"honrados\": \"honr\",\n  \"honrarlo\": \"honr\",\n  \"hopkins\": \"hopkins\",\n  \"hora\": \"hor\",\n  \"horacio\": \"horaci\",\n  \"horario\": \"horari\",\n  \"horarios\": \"horari\",\n  \"horas\": \"hor\",\n  \"horcada\": \"horc\",\n  \"horchata\": \"horchat\",\n  \"horizon\": \"horizon\",\n  \"horizontal\": \"horizontal\",\n  \"horizonte\": \"horizont\",\n  \"horizontes\": \"horizont\",\n  \"hormona\": \"hormon\",\n  \"hormonas\": \"hormon\",\n  \"horneados\": \"horn\",\n  \"hornos\": \"horn\",\n  \"horrenda\": \"horrend\",\n  \"horrendo\": \"horrend\",\n  \"horribles\": \"horribl\",\n  \"horror\": \"horror\",\n  \"horrorizado\": \"horroriz\",\n  \"hortalizas\": \"hortaliz\",\n  \"horwath\": \"horwath\",\n  \"hospedaba\": \"hosped\",\n  \"hospederos\": \"hospeder\",\n  \"hospicio\": \"hospici\",\n  \"hospital\": \"hospital\",\n  \"hospitalario\": \"hospitalari\",\n  \"hospitalarios\": \"hospitalari\",\n  \"hospitales\": \"hospital\",\n  \"hospitalización\": \"hospitaliz\",\n  \"hospitalizado\": \"hospitaliz\",\n  \"hospitalizados\": \"hospitaliz\",\n  \"hostile\": \"hostil\",\n  \"hostilidades\": \"hostil\",\n  \"hot\": \"hot\",\n  \"hotel\": \"hotel\",\n  \"hotelera\": \"hoteler\",\n  \"hoteleros\": \"hoteler\",\n  \"hoteles\": \"hotel\",\n  \"houston\": \"houston\",\n  \"howard\": \"howard\",\n  \"hoy\": \"hoy\",\n  \"hoyo\": \"hoy\",\n  \"hoyos\": \"hoy\",\n  \"hp\": \"hp\",\n  \"hristo\": \"hrist\",\n  \"huacho\": \"huach\",\n  \"huahutla\": \"huahutl\",\n  \"huamantla\": \"huamantl\",\n  \"huambo\": \"huamb\",\n  \"huang\": \"huang\",\n  \"huapango\": \"huapang\",\n  \"huasteca\": \"huastec\",\n  \"huautla\": \"huautl\",\n  \"huayami\": \"huayami\",\n  \"hub\": \"hub\",\n  \"hubiera\": \"hub\",\n  \"hubieran\": \"hub\",\n  \"hubiere\": \"hubier\",\n  \"hubiese\": \"hub\",\n  \"hubiesen\": \"hub\",\n  \"hubo\": \"hub\",\n  \"huecos\": \"huec\",\n  \"huehuetenango\": \"huehuetenang\",\n  \"huehuetlán\": \"huehuetlan\",\n  \"huehuetlatoa\": \"huehuetlato\",\n  \"huela\": \"huel\",\n  \"huele\": \"huel\",\n  \"huelen\": \"huel\",\n  \"huelga\": \"huelg\",\n  \"huelguistas\": \"huelguist\",\n  \"huella\": \"huell\",\n  \"huellas\": \"huell\",\n  \"huérfanos\": \"huerfan\",\n  \"huerta\": \"huert\",\n  \"huertas\": \"huert\",\n  \"huerto\": \"huert\",\n  \"huertos\": \"huert\",\n  \"huesca\": \"huesc\",\n  \"hueso\": \"hues\",\n  \"huésped\": \"huesp\",\n  \"huestes\": \"huest\",\n  \"huevazos\": \"huevaz\",\n  \"huevo\": \"huev\",\n  \"huevos\": \"huev\",\n  \"hufbauer\": \"hufbau\",\n  \"hugo\": \"hug\",\n  \"huichapan\": \"huichap\",\n  \"huichol\": \"huichol\",\n  \"huicholas\": \"huichol\",\n  \"huicholes\": \"huichol\",\n  \"huidizo\": \"huidiz\",\n  \"huinalá\": \"huinal\",\n  \"huir\": \"huir\",\n  \"huitzilopochtli\": \"huitzilopochtli\",\n  \"huitzuco\": \"huitzuc\",\n  \"hules\": \"hul\",\n  \"humana\": \"human\",\n  \"humanas\": \"human\",\n  \"humanidad\": \"human\",\n  \"humanidades\": \"human\",\n  \"humanista\": \"human\",\n  \"humanitario\": \"humanitari\",\n  \"humanitarios\": \"humanitari\",\n  \"humaniza\": \"humaniz\",\n  \"humanizar\": \"humaniz\",\n  \"humano\": \"human\",\n  \"humanos\": \"human\",\n  \"humberto\": \"humbert\",\n  \"humeante\": \"humeant\",\n  \"humedad\": \"humed\",\n  \"humildad\": \"humild\",\n  \"humilde\": \"humild\",\n  \"humillados\": \"humill\",\n  \"humillante\": \"humill\",\n  \"humillantemente\": \"humill\",\n  \"humillar\": \"humill\",\n  \"humo\": \"hum\",\n  \"humor\": \"humor\",\n  \"humorista\": \"humor\",\n  \"hundida\": \"hund\",\n  \"hundidas\": \"hund\",\n  \"hundido\": \"hund\",\n  \"hundidos\": \"hund\",\n  \"hundieron\": \"hund\",\n  \"hundimientos\": \"hundimient\",\n  \"hundió\": \"hund\",\n  \"hundir\": \"hund\",\n  \"húngaro\": \"hungar\",\n  \"hungo\": \"hung\",\n  \"hungría\": \"hungr\",\n  \"huntsville\": \"huntsvill\",\n  \"hurtadillas\": \"hurtadill\",\n  \"hurtado\": \"hurt\",\n  \"hurtic\": \"hurtic\",\n  \"huss\": \"huss\",\n  \"hussein\": \"hussein\",\n  \"huyeron\": \"huyeron\",\n  \"huyó\": \"huy\",\n  \"hylsa\": \"hylsa\",\n  \"i\": \"i\",\n  \"iaaf\": \"iaaf\",\n  \"iacocca\": \"iacocc\",\n  \"iannuzzelli\": \"iannuzzelli\",\n  \"iba\": \"iba\",\n  \"íbamos\": \"ibam\",\n  \"iban\": \"iban\",\n  \"ibargüengoitia\": \"ibargüengoiti\",\n  \"ibarra\": \"ibarr\",\n  \"ibéricos\": \"iber\",\n  \"ibm\": \"ibm\",\n  \"ibor\": \"ibor\",\n  \"ica\": \"ica\",\n  \"iceberg\": \"iceberg\",\n  \"ichi\": \"ichi\",\n  \"ici\": \"ici\",\n  \"iconografía\": \"iconograf\",\n  \"iconográfica\": \"iconograf\",\n  \"id\": \"id\",\n  \"ida\": \"ida\",\n  \"idaho\": \"idah\",\n  \"idalia\": \"idali\",\n  \"idea\": \"ide\",\n  \"ideal\": \"ideal\",\n  \"ideales\": \"ideal\",\n  \"idealistas\": \"ideal\",\n  \"ideario\": \"ideari\",\n  \"ideas\": \"ide\",\n  \"ídem\": \"idem\",\n  \"idéntica\": \"ident\",\n  \"idéntico\": \"ident\",\n  \"identidad\": \"ident\",\n  \"identifica\": \"identif\",\n  \"identificación\": \"identif\",\n  \"identificada\": \"identific\",\n  \"identificadas\": \"identific\",\n  \"identificado\": \"identific\",\n  \"identificados\": \"identific\",\n  \"identifican\": \"identific\",\n  \"identificando\": \"identific\",\n  \"identificar\": \"identific\",\n  \"identificarlo\": \"identific\",\n  \"identificaron\": \"identific\",\n  \"identificarse\": \"identific\",\n  \"identificó\": \"identific\",\n  \"identifique\": \"identifiqu\",\n  \"identifiquen\": \"identifiqu\",\n  \"ideó\": \"ide\",\n  \"ideología\": \"ideolog\",\n  \"ideologías\": \"ideolog\",\n  \"ideológica\": \"ideolog\",\n  \"ideológicas\": \"ideolog\",\n  \"ideológico\": \"ideolog\",\n  \"idioma\": \"idiom\",\n  \"idiomas\": \"idiom\",\n  \"idiosincrasia\": \"idiosincrasi\",\n  \"idiotas\": \"idiot\",\n  \"ido\": \"ido\",\n  \"idólatra\": \"idolatr\",\n  \"idolatría\": \"idolatr\",\n  \"ídolo\": \"idol\",\n  \"ídolos\": \"idol\",\n  \"idóneo\": \"idone\",\n  \"ife\": \"ife\",\n  \"ifigenia\": \"ifigeni\",\n  \"ifigenios\": \"ifigeni\",\n  \"iglesia\": \"iglesi\",\n  \"iglesiaestado\": \"iglesiaest\",\n  \"iglesias\": \"iglesi\",\n  \"ignacio\": \"ignaci\",\n  \"ignición\": \"ignicion\",\n  \"ignominia\": \"ignomini\",\n  \"ignora\": \"ignor\",\n  \"ignoran\": \"ignor\",\n  \"ignorancia\": \"ignor\",\n  \"ignorando\": \"ignor\",\n  \"ignorante\": \"ignor\",\n  \"ignorar\": \"ignor\",\n  \"ignore\": \"ignor\",\n  \"igor\": \"igor\",\n  \"igual\": \"igual\",\n  \"iguala\": \"igual\",\n  \"igualada\": \"igual\",\n  \"igualadas\": \"igual\",\n  \"igualan\": \"igual\",\n  \"igualar\": \"igual\",\n  \"igualarlo\": \"igual\",\n  \"igualarnos\": \"igual\",\n  \"igualaron\": \"igual\",\n  \"igualdad\": \"iguald\",\n  \"iguales\": \"igual\",\n  \"igualita\": \"igualit\",\n  \"igualmente\": \"igual\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"il\": \"il\",\n  \"ildefonso\": \"ildefons\",\n  \"ilegal\": \"ilegal\",\n  \"ilegales\": \"ilegal\",\n  \"ilegalmente\": \"ilegal\",\n  \"ilesa\": \"iles\",\n  \"ileso\": \"iles\",\n  \"ilícita\": \"ilicit\",\n  \"ilícito\": \"ilicit\",\n  \"ilícitos\": \"ilicit\",\n  \"ilimitada\": \"ilimit\",\n  \"ilimitadas\": \"ilimit\",\n  \"ilimitado\": \"ilimit\",\n  \"ilimitados\": \"ilimit\",\n  \"illinois\": \"illinois\",\n  \"ilógica\": \"ilog\",\n  \"ilógico\": \"ilog\",\n  \"iluminación\": \"ilumin\",\n  \"iluminadas\": \"ilumin\",\n  \"iluminaron\": \"ilumin\",\n  \"iluminó\": \"ilumin\",\n  \"ilusas\": \"ilus\",\n  \"ilusión\": \"ilusion\",\n  \"ilusiones\": \"ilusion\",\n  \"ilustra\": \"ilustr\",\n  \"ilustraciones\": \"ilustr\",\n  \"ilustran\": \"ilustr\",\n  \"ilustrar\": \"ilustr\",\n  \"ilustraría\": \"ilustr\",\n  \"im\": \"im\",\n  \"imagen\": \"imag\",\n  \"imágenes\": \"imagen\",\n  \"imagina\": \"imagin\",\n  \"imaginación\": \"imagin\",\n  \"imaginar\": \"imagin\",\n  \"imagínense\": \"imaginens\",\n  \"imagínese\": \"imagines\",\n  \"imagino\": \"imagin\",\n  \"imaginó\": \"imagin\",\n  \"imán\": \"iman\",\n  \"imax\": \"imax\",\n  \"imbécil\": \"imbecil\",\n  \"imecas\": \"imec\",\n  \"imelda\": \"imeld\",\n  \"imevisión\": \"imevision\",\n  \"imitable\": \"imit\",\n  \"imitación\": \"imit\",\n  \"imitaciones\": \"imit\",\n  \"imitan\": \"imit\",\n  \"imitar\": \"imit\",\n  \"imitarlo\": \"imit\",\n  \"imp\": \"imp\",\n  \"impaciencia\": \"impacient\",\n  \"impacta\": \"impact\",\n  \"impactar\": \"impact\",\n  \"impactaría\": \"impact\",\n  \"impactaron\": \"impact\",\n  \"impacten\": \"impact\",\n  \"impacto\": \"impact\",\n  \"impactó\": \"impact\",\n  \"impactos\": \"impact\",\n  \"imparcial\": \"imparcial\",\n  \"imparcialidad\": \"imparcial\",\n  \"impartan\": \"impart\",\n  \"imparte\": \"impart\",\n  \"imparten\": \"impart\",\n  \"impartía\": \"impart\",\n  \"impartida\": \"impart\",\n  \"impartiendo\": \"impart\",\n  \"impartieran\": \"impart\",\n  \"impartimos\": \"impart\",\n  \"impartir\": \"impart\",\n  \"impartirá\": \"impart\",\n  \"impartirán\": \"impart\",\n  \"impasse\": \"impass\",\n  \"impecable\": \"impec\",\n  \"impedido\": \"imped\",\n  \"impedimento\": \"impediment\",\n  \"impedimentos\": \"impediment\",\n  \"impedir\": \"imped\",\n  \"impedirá\": \"imped\",\n  \"impedirán\": \"imped\",\n  \"impediría\": \"imped\",\n  \"impedirle\": \"imped\",\n  \"imperan\": \"imper\",\n  \"imperdonable\": \"imperdon\",\n  \"imperfecto\": \"imperfect\",\n  \"imperial\": \"imperial\",\n  \"imperiales\": \"imperial\",\n  \"imperialismo\": \"imperial\",\n  \"imperialistas\": \"imperial\",\n  \"imperio\": \"imperi\",\n  \"impersonal\": \"impersonal\",\n  \"impida\": \"impid\",\n  \"impide\": \"impid\",\n  \"impiden\": \"impid\",\n  \"impidiera\": \"impid\",\n  \"impidieron\": \"impid\",\n  \"impidió\": \"impid\",\n  \"implacable\": \"implac\",\n  \"implacables\": \"implac\",\n  \"implantación\": \"implant\",\n  \"implantado\": \"implant\",\n  \"implantados\": \"implant\",\n  \"implantando\": \"implant\",\n  \"implantaremos\": \"implant\",\n  \"implanté\": \"implant\",\n  \"implementación\": \"implement\",\n  \"implementada\": \"implement\",\n  \"implementan\": \"implement\",\n  \"implementando\": \"implement\",\n  \"implementar\": \"implement\",\n  \"implementarán\": \"implement\",\n  \"implementarla\": \"implement\",\n  \"implementarse\": \"implement\",\n  \"implementó\": \"implement\",\n  \"implementos\": \"implement\",\n  \"implica\": \"implic\",\n  \"implicación\": \"implic\",\n  \"implicaciones\": \"implic\",\n  \"implicados\": \"implic\",\n  \"implican\": \"implic\",\n  \"implicando\": \"implic\",\n  \"implicar\": \"implic\",\n  \"implicará\": \"implic\",\n  \"implicaran\": \"implic\",\n  \"implícito\": \"implicit\",\n  \"implicó\": \"implic\",\n  \"impolutos\": \"impolut\",\n  \"impondrá\": \"impondr\",\n  \"impondrán\": \"impondran\",\n  \"impondría\": \"impondr\",\n  \"impone\": \"impon\",\n  \"imponemos\": \"impon\",\n  \"imponen\": \"impon\",\n  \"imponer\": \"impon\",\n  \"imponerse\": \"impon\",\n  \"impongan\": \"impong\",\n  \"imponiendo\": \"impon\",\n  \"imponiéndose\": \"impon\",\n  \"importa\": \"import\",\n  \"importaba\": \"import\",\n  \"importación\": \"import\",\n  \"importaciones\": \"import\",\n  \"importadas\": \"import\",\n  \"importado\": \"import\",\n  \"importadora\": \"import\",\n  \"importados\": \"import\",\n  \"importan\": \"import\",\n  \"importancia\": \"import\",\n  \"importando\": \"import\",\n  \"importante\": \"import\",\n  \"importantemente\": \"import\",\n  \"importantes\": \"import\",\n  \"importantísimas\": \"importantisim\",\n  \"importantísimo\": \"importantisim\",\n  \"importantísimos\": \"importantis\",\n  \"importar\": \"import\",\n  \"importará\": \"import\",\n  \"importaría\": \"import\",\n  \"importe\": \"import\",\n  \"importó\": \"import\",\n  \"imposibilidad\": \"imposibil\",\n  \"imposibilitada\": \"imposibilit\",\n  \"imposible\": \"impos\",\n  \"imposición\": \"imposicion\",\n  \"imposiciones\": \"imposicion\",\n  \"impositivos\": \"imposit\",\n  \"impostergable\": \"imposterg\",\n  \"impostergables\": \"imposterg\",\n  \"impotencia\": \"impotent\",\n  \"impotente\": \"impotent\",\n  \"impregnada\": \"impregn\",\n  \"impregnan\": \"impregn\",\n  \"imprenta\": \"imprent\",\n  \"impresa\": \"impres\",\n  \"impresas\": \"impres\",\n  \"impresión\": \"impresion\",\n  \"impresionable\": \"impresion\",\n  \"impresionada\": \"impresion\",\n  \"impresionado\": \"impresion\",\n  \"impresionante\": \"impresion\",\n  \"impresionantes\": \"impresion\",\n  \"impresiones\": \"impresion\",\n  \"impresionismo\": \"impresion\",\n  \"impresionista\": \"impresion\",\n  \"impresionó\": \"impresion\",\n  \"impreso\": \"impres\",\n  \"impresora\": \"impresor\",\n  \"impresoras\": \"impresor\",\n  \"impresores\": \"impresor\",\n  \"impresos\": \"impres\",\n  \"imprevisión\": \"imprevision\",\n  \"imprimió\": \"imprim\",\n  \"imprimir\": \"imprim\",\n  \"imprimirse\": \"imprim\",\n  \"improductiva\": \"improduct\",\n  \"impropiedades\": \"impropiedad\",\n  \"improvisación\": \"improvis\",\n  \"improvisada\": \"improvis\",\n  \"improvisados\": \"improvis\",\n  \"imprudencia\": \"imprudent\",\n  \"imprudencial\": \"imprudencial\",\n  \"imprudencialmente\": \"imprudencial\",\n  \"imprudentes\": \"imprudent\",\n  \"impuesta\": \"impuest\",\n  \"impuestas\": \"impuest\",\n  \"impuesto\": \"impuest\",\n  \"impuestos\": \"impuest\",\n  \"impugnaciones\": \"impugn\",\n  \"impugnado\": \"impugn\",\n  \"impulsa\": \"impuls\",\n  \"impulsan\": \"impuls\",\n  \"impulsando\": \"impuls\",\n  \"impulsar\": \"impuls\",\n  \"impulse\": \"impuls\",\n  \"impulsivo\": \"impuls\",\n  \"impulso\": \"impuls\",\n  \"impulsos\": \"impuls\",\n  \"impunemente\": \"impun\",\n  \"impunes\": \"impun\",\n  \"impunidad\": \"impun\",\n  \"impunidades\": \"impun\",\n  \"impuntualidad\": \"impuntual\",\n  \"impuras\": \"impur\",\n  \"impusieron\": \"impus\",\n  \"impuso\": \"impus\",\n  \"imputaciones\": \"imput\",\n  \"imputado\": \"imput\",\n  \"imsa\": \"imsa\",\n  \"imss\": \"imss\",\n  \"in\": \"in\",\n  \"inaccesible\": \"inacces\",\n  \"inaccesibles\": \"inacces\",\n  \"inacción\": \"inaccion\",\n  \"inaceptable\": \"inacept\",\n  \"inactividad\": \"inact\",\n  \"inadecuada\": \"inadecu\",\n  \"inadmisible\": \"inadmis\",\n  \"inadvertidas\": \"inadvert\",\n  \"inadvertidos\": \"inadvert\",\n  \"inah\": \"inah\",\n  \"inalámbrico\": \"inalambr\",\n  \"inalienables\": \"inalien\",\n  \"inamovible\": \"inamov\",\n  \"inamovibles\": \"inamov\",\n  \"inaplicables\": \"inaplic\",\n  \"inasistencia\": \"inasistent\",\n  \"inaudito\": \"inaudit\",\n  \"inaugura\": \"inaugur\",\n  \"inauguración\": \"inaugur\",\n  \"inauguraciones\": \"inaugur\",\n  \"inaugurada\": \"inaugur\",\n  \"inaugurado\": \"inaugur\",\n  \"inaugural\": \"inaugural\",\n  \"inauguran\": \"inaugur\",\n  \"inaugurar\": \"inaugur\",\n  \"inaugurará\": \"inaugur\",\n  \"inauguró\": \"inaugur\",\n  \"inba\": \"inba\",\n  \"inc\": \"inc\",\n  \"incalculable\": \"incalcul\",\n  \"incapaces\": \"incapac\",\n  \"incapacidad\": \"incapac\",\n  \"incapacitado\": \"incapacit\",\n  \"incapacitados\": \"incapacit\",\n  \"incapaz\": \"incapaz\",\n  \"incautada\": \"incaut\",\n  \"incautado\": \"incaut\",\n  \"incautan\": \"incaut\",\n  \"incauten\": \"incaut\",\n  \"incautó\": \"incaut\",\n  \"incendiarias\": \"incendiari\",\n  \"incendio\": \"incendi\",\n  \"incendió\": \"incend\",\n  \"incendios\": \"incendi\",\n  \"incentivar\": \"incentiv\",\n  \"incentivo\": \"incent\",\n  \"incentivos\": \"incent\",\n  \"incertidumbre\": \"incertidumbr\",\n  \"incesante\": \"inces\",\n  \"incesantemente\": \"inces\",\n  \"incian\": \"inci\",\n  \"incide\": \"incid\",\n  \"inciden\": \"incid\",\n  \"incidencia\": \"incident\",\n  \"incidental\": \"incidental\",\n  \"incidente\": \"incident\",\n  \"incidentes\": \"incident\",\n  \"incidido\": \"incid\",\n  \"incierto\": \"inciert\",\n  \"inciertos\": \"inciert\",\n  \"incinerador\": \"inciner\",\n  \"incisos\": \"incis\",\n  \"incitación\": \"incit\",\n  \"incitador\": \"incit\",\n  \"incitaron\": \"incit\",\n  \"inclán\": \"inclan\",\n  \"inclemencias\": \"inclement\",\n  \"inclina\": \"inclin\",\n  \"inclinaba\": \"inclin\",\n  \"inclinación\": \"inclin\",\n  \"inclinaciones\": \"inclin\",\n  \"inclinada\": \"inclin\",\n  \"inclinados\": \"inclin\",\n  \"inclinamos\": \"inclin\",\n  \"inclinan\": \"inclin\",\n  \"inclinándose\": \"inclin\",\n  \"inclinó\": \"inclin\",\n  \"incluía\": \"inclu\",\n  \"incluida\": \"inclu\",\n  \"incluidas\": \"inclu\",\n  \"incluido\": \"inclu\",\n  \"incluidos\": \"inclu\",\n  \"incluimos\": \"inclu\",\n  \"incluir\": \"inclu\",\n  \"incluír\": \"incluir\",\n  \"incluirá\": \"inclu\",\n  \"incluirán\": \"inclu\",\n  \"incluiría\": \"inclu\",\n  \"incluirlo\": \"inclu\",\n  \"incluirlos\": \"inclu\",\n  \"inclusión\": \"inclusion\",\n  \"inclusive\": \"inclusiv\",\n  \"incluso\": \"inclus\",\n  \"incluya\": \"inclu\",\n  \"incluyan\": \"inclu\",\n  \"incluye\": \"inclu\",\n  \"incluyen\": \"inclu\",\n  \"incluyendo\": \"inclu\",\n  \"incluyeron\": \"inclu\",\n  \"incluyó\": \"inclu\",\n  \"incoherencias\": \"incoherent\",\n  \"incómodo\": \"incomod\",\n  \"incompetentes\": \"incompetent\",\n  \"incompleta\": \"incomplet\",\n  \"incompleto\": \"incomplet\",\n  \"incomprendidos\": \"incomprend\",\n  \"incomprensibles\": \"incomprens\",\n  \"incomprensión\": \"incomprension\",\n  \"incomunicación\": \"incomun\",\n  \"incomunicada\": \"incomunic\",\n  \"incomunicadas\": \"incomunic\",\n  \"incondicional\": \"incondicional\",\n  \"incondicionales\": \"incondicional\",\n  \"inconformaron\": \"inconform\",\n  \"inconformes\": \"inconform\",\n  \"inconformidad\": \"inconform\",\n  \"inconformidades\": \"inconform\",\n  \"incongruencias\": \"incongruent\",\n  \"incongruente\": \"incongruent\",\n  \"inconmovibles\": \"inconmov\",\n  \"inconsciente\": \"inconscient\",\n  \"inconscientes\": \"inconscient\",\n  \"inconsecuencia\": \"inconsecuent\",\n  \"inconsistencia\": \"inconsistent\",\n  \"inconsistente\": \"inconsistent\",\n  \"inconstitucionales\": \"inconstitucional\",\n  \"inconstitucionalidad\": \"inconstitucional\",\n  \"incontenible\": \"inconten\",\n  \"incontrolable\": \"incontrol\",\n  \"incontrolables\": \"incontrol\",\n  \"incontrolado\": \"incontrol\",\n  \"inconveniente\": \"inconvenient\",\n  \"inconvenientes\": \"inconvenient\",\n  \"incora\": \"incor\",\n  \"incorpora\": \"incorpor\",\n  \"incorporación\": \"incorpor\",\n  \"incorporados\": \"incorpor\",\n  \"incorporan\": \"incorpor\",\n  \"incorporando\": \"incorpor\",\n  \"incorporar\": \"incorpor\",\n  \"incorporaron\": \"incorpor\",\n  \"incorporarse\": \"incorpor\",\n  \"incorporated\": \"incorporat\",\n  \"incorpore\": \"incorpor\",\n  \"incorporen\": \"incorpor\",\n  \"incorporó\": \"incorpor\",\n  \"incosteables\": \"incost\",\n  \"incredulidad\": \"incredul\",\n  \"increíble\": \"increibl\",\n  \"increíblemente\": \"increibl\",\n  \"increíbles\": \"increibl\",\n  \"incrementa\": \"increment\",\n  \"incrementadas\": \"increment\",\n  \"incrementado\": \"increment\",\n  \"incrementando\": \"increment\",\n  \"incrementándose\": \"increment\",\n  \"incrementar\": \"increment\",\n  \"incrementará\": \"increment\",\n  \"incrementarles\": \"increment\",\n  \"incrementaron\": \"increment\",\n  \"incrementarse\": \"increment\",\n  \"incremente\": \"increment\",\n  \"incrementen\": \"increment\",\n  \"incremento\": \"increment\",\n  \"incrementó\": \"increment\",\n  \"incrementos\": \"increment\",\n  \"increparan\": \"increp\",\n  \"incriminar\": \"incrimin\",\n  \"incrustación\": \"incrust\",\n  \"incrustaciones\": \"incrust\",\n  \"incrustó\": \"incrust\",\n  \"incubación\": \"incub\",\n  \"incuestionable\": \"incuestion\",\n  \"incuestionables\": \"incuestion\",\n  \"inculcar\": \"inculc\",\n  \"incumbe\": \"incumb\",\n  \"incumple\": \"incumpl\",\n  \"incumplen\": \"incumpl\",\n  \"incumplidas\": \"incumpl\",\n  \"incumplido\": \"incumpl\",\n  \"incumplieron\": \"incumpl\",\n  \"incumplimiento\": \"incumpl\",\n  \"incumplió\": \"incumpl\",\n  \"incurran\": \"incurr\",\n  \"incurre\": \"incurr\",\n  \"incurrido\": \"incurr\",\n  \"incurrieron\": \"incurr\",\n  \"incurrió\": \"incurr\",\n  \"incurrir\": \"incurr\",\n  \"incursión\": \"incursion\",\n  \"incursiona\": \"incursion\",\n  \"incursionamos\": \"incursion\",\n  \"incursionar\": \"incursion\",\n  \"inda\": \"inda\",\n  \"indagación\": \"indag\",\n  \"indagando\": \"indag\",\n  \"indebido\": \"indeb\",\n  \"indebidos\": \"indeb\",\n  \"indecibles\": \"indec\",\n  \"indecisa\": \"indecis\",\n  \"indecisión\": \"indecision\",\n  \"indeciso\": \"indecis\",\n  \"indefensión\": \"indefension\",\n  \"indefinida\": \"indefin\",\n  \"indefinidamente\": \"indefinid\",\n  \"indefinido\": \"indefin\",\n  \"indejo\": \"indej\",\n  \"indemnización\": \"indemniz\",\n  \"indemnizaciones\": \"indemniz\",\n  \"indemnizar\": \"indemniz\",\n  \"indemnizó\": \"indemniz\",\n  \"independencia\": \"independent\",\n  \"independiente\": \"independient\",\n  \"independientemente\": \"independient\",\n  \"independientes\": \"independient\",\n  \"independiza\": \"independiz\",\n  \"independizó\": \"independiz\",\n  \"indeseado\": \"indes\",\n  \"indeterminado\": \"indetermin\",\n  \"india\": \"indi\",\n  \"indiana\": \"indian\",\n  \"indianapolis\": \"indianapolis\",\n  \"indica\": \"indic\",\n  \"indicaba\": \"indic\",\n  \"indicaban\": \"indic\",\n  \"indicaciones\": \"indic\",\n  \"indicada\": \"indic\",\n  \"indicado\": \"indic\",\n  \"indicador\": \"indic\",\n  \"indicadores\": \"indic\",\n  \"indican\": \"indic\",\n  \"indicando\": \"indic\",\n  \"indicándome\": \"indic\",\n  \"indicar\": \"indic\",\n  \"indicará\": \"indic\",\n  \"indicarán\": \"indic\",\n  \"indicaron\": \"indic\",\n  \"indicativa\": \"indic\",\n  \"indicators\": \"indicators\",\n  \"índice\": \"indic\",\n  \"índices\": \"indic\",\n  \"indicio\": \"indici\",\n  \"indicios\": \"indici\",\n  \"indico\": \"indic\",\n  \"indicó\": \"indic\",\n  \"indiferencia\": \"indiferent\",\n  \"indiferente\": \"indiferent\",\n  \"indiferentes\": \"indiferent\",\n  \"indígena\": \"indigen\",\n  \"indígenas\": \"indigen\",\n  \"indigencia\": \"indigent\",\n  \"indigente\": \"indigent\",\n  \"indigentes\": \"indigent\",\n  \"indignación\": \"indign\",\n  \"indignado\": \"indign\",\n  \"indignidad\": \"indign\",\n  \"indigno\": \"indign\",\n  \"indignó\": \"indign\",\n  \"índigo\": \"indig\",\n  \"indio\": \"indi\",\n  \"indique\": \"indiqu\",\n  \"indirecta\": \"indirect\",\n  \"indirectamente\": \"indirect\",\n  \"indirectas\": \"indirect\",\n  \"indisciplina\": \"indisciplin\",\n  \"indiscreciones\": \"indiscrecion\",\n  \"indiscriminadamente\": \"indiscrimin\",\n  \"indiscutible\": \"indiscut\",\n  \"indiscutibles\": \"indiscut\",\n  \"indispensable\": \"indispens\",\n  \"indispensables\": \"indispens\",\n  \"indistintos\": \"indistint\",\n  \"individual\": \"individual\",\n  \"individuales\": \"individual\",\n  \"individualidades\": \"individual\",\n  \"individualista\": \"individual\",\n  \"individualistas\": \"individual\",\n  \"individualmente\": \"individual\",\n  \"individuo\": \"individu\",\n  \"individuos\": \"individu\",\n  \"índole\": \"indol\",\n  \"indonesia\": \"indonesi\",\n  \"indubitable\": \"indubit\",\n  \"inducción\": \"induccion\",\n  \"induce\": \"induc\",\n  \"inducir\": \"induc\",\n  \"inducirlo\": \"induc\",\n  \"indudablemente\": \"indud\",\n  \"indulgencias\": \"indulgent\",\n  \"indulto\": \"indult\",\n  \"indultó\": \"indult\",\n  \"indumentaria\": \"indumentari\",\n  \"industria\": \"industri\",\n  \"industrial\": \"industrial\",\n  \"industriales\": \"industrial\",\n  \"industrialización\": \"industrializ\",\n  \"industrializadas\": \"industrializ\",\n  \"industrializados\": \"industrializ\",\n  \"industrias\": \"industri\",\n  \"industries\": \"industri\",\n  \"industriosa\": \"industri\",\n  \"indy\": \"indy\",\n  \"inea\": \"ine\",\n  \"inédita\": \"inedit\",\n  \"inéditas\": \"inedit\",\n  \"inédito\": \"inedit\",\n  \"ineficaces\": \"ineficac\",\n  \"ineficacia\": \"ineficaci\",\n  \"ineficaz\": \"ineficaz\",\n  \"ineficiencia\": \"ineficient\",\n  \"ineficiencias\": \"ineficient\",\n  \"ineficiente\": \"ineficient\",\n  \"inegi\": \"inegi\",\n  \"inelegancias\": \"ineleg\",\n  \"ineludible\": \"inelud\",\n  \"ineptas\": \"inept\",\n  \"inequívoca\": \"inequivoc\",\n  \"inercia\": \"inerci\",\n  \"inés\": \"ines\",\n  \"inescrutable\": \"inescrut\",\n  \"inestabilidad\": \"inest\",\n  \"inestable\": \"inest\",\n  \"inevitable\": \"inevit\",\n  \"inevitablemente\": \"inevit\",\n  \"inevitables\": \"inevit\",\n  \"inexactitudes\": \"inexactitud\",\n  \"inexistente\": \"inexistent\",\n  \"inexorablemente\": \"inexor\",\n  \"inexplicable\": \"inexplic\",\n  \"inexplicablemente\": \"inexplic\",\n  \"inexploradas\": \"inexplor\",\n  \"infactibilidad\": \"infactibil\",\n  \"infalibilidad\": \"infalibil\",\n  \"infalsificables\": \"infalsific\",\n  \"infame\": \"infam\",\n  \"infamia\": \"infami\",\n  \"infancia\": \"infanci\",\n  \"infante\": \"infant\",\n  \"infantes\": \"infant\",\n  \"infantil\": \"infantil\",\n  \"infantiles\": \"infantil\",\n  \"infarto\": \"infart\",\n  \"infección\": \"infeccion\",\n  \"infecciones\": \"infeccion\",\n  \"infectología\": \"infectolog\",\n  \"inferido\": \"infer\",\n  \"inferior\": \"inferior\",\n  \"inferiores\": \"inferior\",\n  \"inferioridad\": \"inferior\",\n  \"infernal\": \"infernal\",\n  \"infernales\": \"infernal\",\n  \"infestadas\": \"infest\",\n  \"infidelidad\": \"infidel\",\n  \"infidelidades\": \"infidel\",\n  \"infiel\": \"infiel\",\n  \"infierno\": \"infiern\",\n  \"infiltrados\": \"infiltr\",\n  \"infiltraron\": \"infiltr\",\n  \"infinidad\": \"infin\",\n  \"infinitum\": \"infinitum\",\n  \"inflaba\": \"inflab\",\n  \"inflación\": \"inflacion\",\n  \"inflacionario\": \"inflacionari\",\n  \"inflacionarios\": \"inflacionari\",\n  \"inflamación\": \"inflam\",\n  \"inflar\": \"inflar\",\n  \"infle\": \"infle\",\n  \"influencia\": \"influenci\",\n  \"influenciada\": \"influenci\",\n  \"influencias\": \"influenci\",\n  \"influenzae\": \"influenza\",\n  \"influido\": \"influ\",\n  \"influir\": \"influ\",\n  \"influiría\": \"influ\",\n  \"influjo\": \"influj\",\n  \"influyen\": \"influ\",\n  \"influyente\": \"influyent\",\n  \"influyó\": \"influ\",\n  \"infonavit\": \"infonavit\",\n  \"informa\": \"inform\",\n  \"informaba\": \"inform\",\n  \"información\": \"inform\",\n  \"informaciones\": \"inform\",\n  \"informada\": \"inform\",\n  \"informado\": \"inform\",\n  \"informados\": \"inform\",\n  \"informal\": \"informal\",\n  \"informan\": \"inform\",\n  \"informándome\": \"inform\",\n  \"informante\": \"inform\",\n  \"informantes\": \"inform\",\n  \"informar\": \"inform\",\n  \"informará\": \"inform\",\n  \"informarán\": \"inform\",\n  \"informarle\": \"inform\",\n  \"informaron\": \"inform\",\n  \"informarse\": \"inform\",\n  \"informatica\": \"informat\",\n  \"informática\": \"informat\",\n  \"informático\": \"informat\",\n  \"informativa\": \"inform\",\n  \"informativas\": \"inform\",\n  \"informativo\": \"inform\",\n  \"informativos\": \"inform\",\n  \"informe\": \"inform\",\n  \"informé\": \"inform\",\n  \"informes\": \"inform\",\n  \"informó\": \"inform\",\n  \"inforrey\": \"inforrey\",\n  \"infortunadamente\": \"infortun\",\n  \"infortunado\": \"infortun\",\n  \"infracción\": \"infraccion\",\n  \"infraccionados\": \"infraccion\",\n  \"infraccionar\": \"infraccion\",\n  \"infractor\": \"infractor\",\n  \"infractores\": \"infractor\",\n  \"infraestructura\": \"infraestructur\",\n  \"infrarrojas\": \"infrarroj\",\n  \"infrarrojos\": \"infrarroj\",\n  \"infundados\": \"infund\",\n  \"infundios\": \"infundi\",\n  \"infundir\": \"infund\",\n  \"infusión\": \"infusion\",\n  \"infusiones\": \"infusion\",\n  \"ing\": \"ing\",\n  \"ingando\": \"ingand\",\n  \"ingeniería\": \"ingeni\",\n  \"ingeniero\": \"ingenier\",\n  \"ingenieros\": \"ingenier\",\n  \"ingenio\": \"ingeni\",\n  \"ingeniosa\": \"ingeni\",\n  \"ingenioso\": \"ingeni\",\n  \"ingenua\": \"ingenu\",\n  \"ingenuas\": \"ingenu\",\n  \"ingenuo\": \"ingenu\",\n  \"ingerencia\": \"ingerent\",\n  \"ingerir\": \"inger\",\n  \"inglaterra\": \"inglaterr\",\n  \"inglés\": \"ingles\",\n  \"inglesa\": \"ingles\",\n  \"inglesas\": \"ingles\",\n  \"ingleses\": \"ingles\",\n  \"ingratos\": \"ingrat\",\n  \"ingrediente\": \"ingredient\",\n  \"ingredientes\": \"ingredient\",\n  \"ingresa\": \"ingres\",\n  \"ingresaba\": \"ingres\",\n  \"ingresado\": \"ingres\",\n  \"ingresan\": \"ingres\",\n  \"ingresando\": \"ingres\",\n  \"ingresar\": \"ingres\",\n  \"ingresara\": \"ingres\",\n  \"ingresaron\": \"ingres\",\n  \"ingreso\": \"ingres\",\n  \"ingresó\": \"ingres\",\n  \"ingresos\": \"ingres\",\n  \"inhabilitados\": \"inhabilit\",\n  \"inhabilitan\": \"inhabilit\",\n  \"inhalaciones\": \"inhal\",\n  \"inhalámbricos\": \"inhalambr\",\n  \"inherente\": \"inherent\",\n  \"inherentes\": \"inherent\",\n  \"inhibiendo\": \"inhib\",\n  \"inicado\": \"inic\",\n  \"inicará\": \"inic\",\n  \"inicia\": \"inici\",\n  \"iniciaba\": \"inici\",\n  \"iniciación\": \"inici\",\n  \"iniciada\": \"inici\",\n  \"iniciadas\": \"inici\",\n  \"iniciado\": \"inici\",\n  \"iniciadores\": \"inici\",\n  \"inicial\": \"inicial\",\n  \"iniciales\": \"inicial\",\n  \"inicialización\": \"inicializ\",\n  \"inicialmente\": \"inicial\",\n  \"inician\": \"inici\",\n  \"iniciando\": \"inici\",\n  \"iniciar\": \"inici\",\n  \"iniciara\": \"inici\",\n  \"iniciará\": \"inici\",\n  \"iniciarán\": \"inici\",\n  \"iniciaría\": \"inici\",\n  \"iniciarían\": \"inici\",\n  \"iniciarme\": \"inici\",\n  \"iniciaron\": \"inici\",\n  \"iniciarse\": \"inici\",\n  \"iniciativa\": \"inici\",\n  \"iniciativas\": \"inici\",\n  \"inicie\": \"inici\",\n  \"iniciemos\": \"inici\",\n  \"inicien\": \"inici\",\n  \"inicio\": \"inici\",\n  \"inició\": \"inic\",\n  \"inicios\": \"inici\",\n  \"inimaginables\": \"inimagin\",\n  \"ininteligibles\": \"inintelig\",\n  \"ininterrumpida\": \"ininterrump\",\n  \"injerencia\": \"injerent\",\n  \"injude\": \"injud\",\n  \"injurias\": \"injuri\",\n  \"injusta\": \"injust\",\n  \"injustas\": \"injust\",\n  \"injusticia\": \"injustici\",\n  \"injusticias\": \"injustici\",\n  \"injustificada\": \"injustific\",\n  \"injustificados\": \"injustific\",\n  \"injusto\": \"injust\",\n  \"injustos\": \"injust\",\n  \"inmadurez\": \"inmadurez\",\n  \"inmaduros\": \"inmadur\",\n  \"inmediaciones\": \"inmedi\",\n  \"inmediata\": \"inmediat\",\n  \"inmediatamente\": \"inmediat\",\n  \"inmediatas\": \"inmediat\",\n  \"inmediato\": \"inmediat\",\n  \"inmediatos\": \"inmediat\",\n  \"inmenso\": \"inmens\",\n  \"inmensos\": \"inmens\",\n  \"inmigrantes\": \"inmigr\",\n  \"inminencia\": \"inminent\",\n  \"inminente\": \"inminent\",\n  \"inmiscuidos\": \"inmiscu\",\n  \"inmiscuirse\": \"inmiscu\",\n  \"inmobiliaria\": \"inmobiliari\",\n  \"inmobiliarias\": \"inmobiliari\",\n  \"inmobiliario\": \"inmobiliari\",\n  \"inmobiliarios\": \"inmobiliari\",\n  \"inmorales\": \"inmoral\",\n  \"inmortal\": \"inmortal\",\n  \"inmortales\": \"inmortal\",\n  \"inmortalidad\": \"inmortal\",\n  \"inmovilizó\": \"inmoviliz\",\n  \"inmueble\": \"inmuebl\",\n  \"inmuebles\": \"inmuebl\",\n  \"inmunes\": \"inmun\",\n  \"inmunidad\": \"inmun\",\n  \"inmunológica\": \"inmunolog\",\n  \"inmutable\": \"inmut\",\n  \"inn\": \"inn\",\n  \"innecesaria\": \"innecesari\",\n  \"innecesarias\": \"innecesari\",\n  \"innecesario\": \"innecesari\",\n  \"innecesarios\": \"innecesari\",\n  \"innova\": \"innov\",\n  \"innovación\": \"innov\",\n  \"innovaciones\": \"innov\",\n  \"innovador\": \"innov\",\n  \"innovadora\": \"innov\",\n  \"innovadores\": \"innov\",\n  \"innovar\": \"innov\",\n  \"inntienen\": \"inntien\",\n  \"innumerables\": \"innumer\",\n  \"inobservancia\": \"inobserv\",\n  \"inocencia\": \"inocent\",\n  \"inocente\": \"inocent\",\n  \"inocentes\": \"inocent\",\n  \"inocular\": \"inocul\",\n  \"inocularle\": \"inocul\",\n  \"inofensivos\": \"inofens\",\n  \"inolvidable\": \"inolvid\",\n  \"inoperantes\": \"inoper\",\n  \"inquiere\": \"inquier\",\n  \"inquieta\": \"inquiet\",\n  \"inquietas\": \"inquiet\",\n  \"inquieto\": \"inquiet\",\n  \"inquietos\": \"inquiet\",\n  \"inquietud\": \"inquietud\",\n  \"inquietudes\": \"inquietud\",\n  \"inquilinaria\": \"inquilinari\",\n  \"inquilino\": \"inquilin\",\n  \"inquilinos\": \"inquilin\",\n  \"inquina\": \"inquin\",\n  \"inquisición\": \"inquisicion\",\n  \"insaciable\": \"insaci\",\n  \"insalvables\": \"insalv\",\n  \"inscribe\": \"inscrib\",\n  \"inscribió\": \"inscrib\",\n  \"inscribir\": \"inscrib\",\n  \"inscribirse\": \"inscrib\",\n  \"inscripción\": \"inscripcion\",\n  \"inscripciones\": \"inscripcion\",\n  \"inscrita\": \"inscrit\",\n  \"inscritas\": \"inscrit\",\n  \"inscrito\": \"inscrit\",\n  \"inscritos\": \"inscrit\",\n  \"insecticida\": \"insectic\",\n  \"insecto\": \"insect\",\n  \"insectos\": \"insect\",\n  \"inseguridad\": \"insegur\",\n  \"insen\": \"insen\",\n  \"insensatez\": \"insensatez\",\n  \"inservibles\": \"inserv\",\n  \"insiders\": \"insiders\",\n  \"insidiosos\": \"insidi\",\n  \"insignia\": \"insigni\",\n  \"insignificante\": \"insignif\",\n  \"insinúa\": \"insinu\",\n  \"insinuó\": \"insinu\",\n  \"insípidos\": \"insip\",\n  \"insista\": \"insist\",\n  \"insiste\": \"insist\",\n  \"insisten\": \"insist\",\n  \"insistencia\": \"insistent\",\n  \"insistente\": \"insistent\",\n  \"insistía\": \"insist\",\n  \"insistían\": \"insist\",\n  \"insistieron\": \"insist\",\n  \"insistió\": \"insist\",\n  \"insistir\": \"insist\",\n  \"insistirá\": \"insist\",\n  \"insistiré\": \"insist\",\n  \"insistirse\": \"insist\",\n  \"insististe\": \"insist\",\n  \"insisto\": \"insist\",\n  \"insólito\": \"insolit\",\n  \"insospechado\": \"insospech\",\n  \"inspección\": \"inspeccion\",\n  \"inspeccionaba\": \"inspeccion\",\n  \"inspeccionado\": \"inspeccion\",\n  \"inspecciones\": \"inspeccion\",\n  \"inspector\": \"inspector\",\n  \"inspectores\": \"inspector\",\n  \"inspiraba\": \"inspir\",\n  \"inspiración\": \"inspir\",\n  \"inspiraciones\": \"inspir\",\n  \"inspirada\": \"inspir\",\n  \"inspirado\": \"inspir\",\n  \"instala\": \"instal\",\n  \"instalación\": \"instal\",\n  \"instalaciones\": \"instal\",\n  \"instalada\": \"instal\",\n  \"instaladas\": \"instal\",\n  \"instalado\": \"instal\",\n  \"instalados\": \"instal\",\n  \"instalamos\": \"instal\",\n  \"instalan\": \"instal\",\n  \"instalando\": \"instal\",\n  \"instalar\": \"instal\",\n  \"instalará\": \"instal\",\n  \"instalarán\": \"instal\",\n  \"instalarlo\": \"instal\",\n  \"instalarlos\": \"instal\",\n  \"instalaron\": \"instal\",\n  \"instalarse\": \"instal\",\n  \"instalen\": \"instal\",\n  \"instaló\": \"instal\",\n  \"instancia\": \"instanci\",\n  \"instancias\": \"instanci\",\n  \"instándolos\": \"instandol\",\n  \"instantánea\": \"instantane\",\n  \"instantáneamente\": \"instantan\",\n  \"instante\": \"instant\",\n  \"instantes\": \"instant\",\n  \"instará\": \"instar\",\n  \"instaurada\": \"instaur\",\n  \"instinto\": \"instint\",\n  \"institución\": \"institu\",\n  \"institucional\": \"institucional\",\n  \"institucionales\": \"institucional\",\n  \"institucionalizar\": \"institucionaliz\",\n  \"institucionalmente\": \"institucional\",\n  \"instituciones\": \"institu\",\n  \"instituida\": \"institu\",\n  \"instituír\": \"instituir\",\n  \"institute\": \"institut\",\n  \"instituto\": \"institut\",\n  \"institutos\": \"institut\",\n  \"instituya\": \"institu\",\n  \"instituyan\": \"institu\",\n  \"instó\": \"insto\",\n  \"instrucción\": \"instruccion\",\n  \"instrucciones\": \"instruccion\",\n  \"instructor\": \"instructor\",\n  \"instructora\": \"instructor\",\n  \"instrumentación\": \"instrument\",\n  \"instrumentado\": \"instrument\",\n  \"instrumentados\": \"instrument\",\n  \"instrumental\": \"instrumental\",\n  \"instrumentar\": \"instrument\",\n  \"instrumentaran\": \"instrument\",\n  \"instrumentistas\": \"instrument\",\n  \"instrumento\": \"instrument\",\n  \"instrumentó\": \"instrument\",\n  \"instrumentos\": \"instrument\",\n  \"instruments\": \"instruments\",\n  \"instruye\": \"instru\",\n  \"instruyó\": \"instru\",\n  \"insubordinación\": \"insubordin\",\n  \"insubstancial\": \"insubstancial\",\n  \"insuficiencia\": \"insuficient\",\n  \"insuficiente\": \"insuficient\",\n  \"insuficientes\": \"insuficient\",\n  \"insulta\": \"insult\",\n  \"insultaba\": \"insult\",\n  \"insultando\": \"insult\",\n  \"insulté\": \"insult\",\n  \"insulto\": \"insult\",\n  \"insultos\": \"insult\",\n  \"insumo\": \"insum\",\n  \"insuperable\": \"insuper\",\n  \"insurgencia\": \"insurgent\",\n  \"insurgentes\": \"insurgent\",\n  \"insurrección\": \"insurreccion\",\n  \"intachable\": \"intach\",\n  \"intacta\": \"intact\",\n  \"intactas\": \"intact\",\n  \"intacto\": \"intact\",\n  \"integra\": \"integr\",\n  \"integración\": \"integr\",\n  \"integracionista\": \"integracion\",\n  \"integrada\": \"integr\",\n  \"integradas\": \"integr\",\n  \"integrado\": \"integr\",\n  \"integrados\": \"integr\",\n  \"integral\": \"integral\",\n  \"integrales\": \"integral\",\n  \"íntegramente\": \"integr\",\n  \"integran\": \"integr\",\n  \"integrante\": \"integr\",\n  \"integrantes\": \"integr\",\n  \"integrar\": \"integr\",\n  \"integrará\": \"integr\",\n  \"integrarán\": \"integr\",\n  \"integraría\": \"integr\",\n  \"integrarlo\": \"integr\",\n  \"integrarlos\": \"integr\",\n  \"integraron\": \"integr\",\n  \"integrarse\": \"integr\",\n  \"integridad\": \"integr\",\n  \"integristas\": \"integr\",\n  \"íntegro\": \"integr\",\n  \"integró\": \"integr\",\n  \"intel\": \"intel\",\n  \"intelectual\": \"intelectual\",\n  \"intelectuales\": \"intelectual\",\n  \"intelectualmente\": \"intelectual\",\n  \"inteligencia\": \"inteligent\",\n  \"inteligente\": \"inteligent\",\n  \"inteligentes\": \"inteligent\",\n  \"intempestivamente\": \"intempest\",\n  \"intempestivo\": \"intempest\",\n  \"intención\": \"intencion\",\n  \"intencionado\": \"intencion\",\n  \"intencional\": \"intencional\",\n  \"intencionales\": \"intencional\",\n  \"intenciones\": \"intencion\",\n  \"intensa\": \"intens\",\n  \"intensamente\": \"intens\",\n  \"intensas\": \"intens\",\n  \"intensidad\": \"intens\",\n  \"intensificado\": \"intensific\",\n  \"intensificando\": \"intensific\",\n  \"intensificar\": \"intensific\",\n  \"intensificó\": \"intensific\",\n  \"intensifiquen\": \"intensifiqu\",\n  \"intensión\": \"intension\",\n  \"intensivamente\": \"intens\",\n  \"intenso\": \"intens\",\n  \"intensos\": \"intens\",\n  \"intenta\": \"intent\",\n  \"intentaba\": \"intent\",\n  \"intentaban\": \"intent\",\n  \"intentado\": \"intent\",\n  \"intentamos\": \"intent\",\n  \"intentan\": \"intent\",\n  \"intentando\": \"intent\",\n  \"intentar\": \"intent\",\n  \"intentará\": \"intent\",\n  \"intentarán\": \"intent\",\n  \"intentaré\": \"intent\",\n  \"intentarlo\": \"intent\",\n  \"intentaron\": \"intent\",\n  \"intento\": \"intent\",\n  \"intentó\": \"intent\",\n  \"intentos\": \"intent\",\n  \"inter\": \"inter\",\n  \"interacción\": \"interaccion\",\n  \"interaciones\": \"inter\",\n  \"interactiva\": \"interact\",\n  \"interactivo\": \"interact\",\n  \"interamericana\": \"interamerican\",\n  \"interbancaria\": \"interbancari\",\n  \"interbancarias\": \"interbancari\",\n  \"interbancario\": \"interbancari\",\n  \"intercambian\": \"intercambi\",\n  \"intercambiando\": \"intercambi\",\n  \"intercambiar\": \"intercambi\",\n  \"intercambié\": \"intercambi\",\n  \"intercambio\": \"intercambi\",\n  \"intercambió\": \"intercamb\",\n  \"interceder\": \"interced\",\n  \"intercedido\": \"interced\",\n  \"intercepción\": \"intercepcion\",\n  \"interceptado\": \"intercept\",\n  \"interceptados\": \"intercept\",\n  \"intercomunicará\": \"intercomunic\",\n  \"interconexión\": \"interconexion\",\n  \"interconstruido\": \"interconstru\",\n  \"intercontinental\": \"intercontinental\",\n  \"intercostal\": \"intercostal\",\n  \"intercostero\": \"intercoster\",\n  \"interdependiente\": \"interdependient\",\n  \"interdisciplinario\": \"interdisciplinari\",\n  \"interés\": \"interes\",\n  \"interesa\": \"interes\",\n  \"interesaba\": \"interes\",\n  \"interesada\": \"interes\",\n  \"interesadas\": \"interes\",\n  \"interesado\": \"interes\",\n  \"interesados\": \"interes\",\n  \"interesan\": \"interes\",\n  \"interesante\": \"interes\",\n  \"interesantes\": \"interes\",\n  \"interesara\": \"interes\",\n  \"interesaría\": \"interes\",\n  \"interesarme\": \"interes\",\n  \"interesaron\": \"interes\",\n  \"interescuadras\": \"interescuadr\",\n  \"interese\": \"interes\",\n  \"interesen\": \"interes\",\n  \"intereses\": \"interes\",\n  \"interfase\": \"interf\",\n  \"interferencia\": \"interferent\",\n  \"interfieran\": \"interf\",\n  \"interfieren\": \"interfier\",\n  \"interfronterizo\": \"interfronteriz\",\n  \"intergrupales\": \"intergrupal\",\n  \"interina\": \"interin\",\n  \"interinato\": \"interinat\",\n  \"interinatos\": \"interinat\",\n  \"interino\": \"interin\",\n  \"interior\": \"interior\",\n  \"interiores\": \"interior\",\n  \"interioridad\": \"interior\",\n  \"interiormente\": \"interior\",\n  \"interlocutora\": \"interlocutor\",\n  \"intermatrix\": \"intermatrix\",\n  \"intermedia\": \"intermedi\",\n  \"intermediación\": \"intermedi\",\n  \"intermediaria\": \"intermediari\",\n  \"intermediarias\": \"intermediari\",\n  \"intermediario\": \"intermediari\",\n  \"intermediarios\": \"intermediari\",\n  \"intermediarista\": \"intermediar\",\n  \"intermedio\": \"intermedi\",\n  \"intermedios\": \"intermedi\",\n  \"intermitentes\": \"intermitent\",\n  \"interna\": \"intern\",\n  \"internacional\": \"internacional\",\n  \"internacionales\": \"internacional\",\n  \"internacionalización\": \"internacionaliz\",\n  \"internacionalmente\": \"internacional\",\n  \"internado\": \"intern\",\n  \"internamente\": \"intern\",\n  \"internarnos\": \"intern\",\n  \"internaron\": \"intern\",\n  \"internas\": \"intern\",\n  \"international\": \"international\",\n  \"interno\": \"intern\",\n  \"internó\": \"intern\",\n  \"internos\": \"intern\",\n  \"interpeló\": \"interpel\",\n  \"interponer\": \"interpon\",\n  \"interpreta\": \"interpret\",\n  \"interpretaba\": \"interpret\",\n  \"interpretación\": \"interpret\",\n  \"interpretaciones\": \"interpret\",\n  \"interpretado\": \"interpret\",\n  \"interpretamos\": \"interpret\",\n  \"interpretan\": \"interpret\",\n  \"interpretando\": \"interpret\",\n  \"interpretándolo\": \"interpret\",\n  \"interpretar\": \"interpret\",\n  \"interpretara\": \"interpret\",\n  \"interpretará\": \"interpret\",\n  \"interpretarán\": \"interpret\",\n  \"interpretaremos\": \"interpret\",\n  \"interpretarlas\": \"interpret\",\n  \"interpretarse\": \"interpret\",\n  \"interprete\": \"interpret\",\n  \"intérprete\": \"interpret\",\n  \"interpreten\": \"interpret\",\n  \"intérpretes\": \"interpret\",\n  \"interpretó\": \"interpret\",\n  \"interpuestas\": \"interpuest\",\n  \"interpuestos\": \"interpuest\",\n  \"interpuso\": \"interpus\",\n  \"interrelacionarse\": \"interrelacion\",\n  \"interrogada\": \"interrog\",\n  \"interrogado\": \"interrog\",\n  \"interrogados\": \"interrog\",\n  \"interrogante\": \"interrog\",\n  \"interrogar\": \"interrog\",\n  \"interrogó\": \"interrog\",\n  \"interrumpa\": \"interrump\",\n  \"interrumpe\": \"interrump\",\n  \"interrumpía\": \"interrump\",\n  \"interrumpido\": \"interrump\",\n  \"interrumpidos\": \"interrump\",\n  \"interrumpieron\": \"interrump\",\n  \"interrumpió\": \"interrump\",\n  \"interrumpir\": \"interrump\",\n  \"interrupción\": \"interrupcion\",\n  \"interruptor\": \"interruptor\",\n  \"interticket\": \"interticket\",\n  \"intervalos\": \"interval\",\n  \"intervención\": \"intervencion\",\n  \"intervenciones\": \"intervencion\",\n  \"intervencionismo\": \"intervencion\",\n  \"intervendrá\": \"intervendr\",\n  \"intervenga\": \"interveng\",\n  \"intervengan\": \"interveng\",\n  \"intervenido\": \"interven\",\n  \"intervenidos\": \"interven\",\n  \"intervenir\": \"interven\",\n  \"intervenirse\": \"interven\",\n  \"interventores\": \"interventor\",\n  \"interviene\": \"intervien\",\n  \"intervienen\": \"intervien\",\n  \"interviniera\": \"intervin\",\n  \"intervinieron\": \"intervin\",\n  \"intervino\": \"intervin\",\n  \"intestino\": \"intestin\",\n  \"íntima\": \"intim\",\n  \"íntimas\": \"intim\",\n  \"intimate\": \"intimat\",\n  \"intimidad\": \"intim\",\n  \"intimidados\": \"intimid\",\n  \"intimidando\": \"intimid\",\n  \"íntimo\": \"intim\",\n  \"íntimos\": \"intim\",\n  \"intolerable\": \"intoler\",\n  \"intolerancia\": \"intoler\",\n  \"intoxicación\": \"intox\",\n  \"intoxicados\": \"intoxic\",\n  \"intoxicando\": \"intoxic\",\n  \"intralox\": \"intralox\",\n  \"intramuscular\": \"intramuscul\",\n  \"intransigencia\": \"intransigent\",\n  \"intransigentemente\": \"intransigent\",\n  \"intrascendente\": \"intrascendent\",\n  \"intrascendentes\": \"intrascendent\",\n  \"intrincadas\": \"intrinc\",\n  \"intrínseca\": \"intrinsec\",\n  \"introducción\": \"introduccion\",\n  \"introducido\": \"introduc\",\n  \"introduciendo\": \"introduc\",\n  \"introducir\": \"introduc\",\n  \"introducirán\": \"introduc\",\n  \"introducirles\": \"introduc\",\n  \"introducirse\": \"introduc\",\n  \"introductorio\": \"introductori\",\n  \"introdujera\": \"introdujer\",\n  \"introdujeron\": \"introdujeron\",\n  \"introdujo\": \"introduj\",\n  \"introduzca\": \"introduzc\",\n  \"introspectivo\": \"introspect\",\n  \"introvertido\": \"introvert\",\n  \"intrusión\": \"intrusion\",\n  \"intuición\": \"intuicion\",\n  \"intuitiva\": \"intuit\",\n  \"inundación\": \"inund\",\n  \"inundaciones\": \"inund\",\n  \"inundadas\": \"inund\",\n  \"inundado\": \"inund\",\n  \"inusitada\": \"inusit\",\n  \"inusitado\": \"inusit\",\n  \"inusual\": \"inusual\",\n  \"inútil\": \"inutil\",\n  \"inútiles\": \"inutil\",\n  \"inútilmente\": \"inutil\",\n  \"invadidas\": \"invad\",\n  \"invadido\": \"invad\",\n  \"invadieron\": \"invad\",\n  \"invadió\": \"invad\",\n  \"invadir\": \"invad\",\n  \"invalidan\": \"invalid\",\n  \"invaluable\": \"invalu\",\n  \"invasión\": \"invasion\",\n  \"invasiones\": \"invasion\",\n  \"invencible\": \"invenc\",\n  \"invención\": \"invencion\",\n  \"inventado\": \"invent\",\n  \"inventando\": \"invent\",\n  \"inventar\": \"invent\",\n  \"inventario\": \"inventari\",\n  \"invente\": \"invent\",\n  \"inventé\": \"invent\",\n  \"inventiva\": \"invent\",\n  \"invento\": \"invent\",\n  \"inventó\": \"invent\",\n  \"inverlat\": \"inverlat\",\n  \"inverméxico\": \"invermex\",\n  \"invernadero\": \"invernader\",\n  \"invernal\": \"invernal\",\n  \"inverosímil\": \"inverosimil\",\n  \"inversa\": \"invers\",\n  \"inversión\": \"inversion\",\n  \"inversiones\": \"inversion\",\n  \"inversionista\": \"inversion\",\n  \"inversionistas\": \"inversion\",\n  \"invertía\": \"invert\",\n  \"invertidas\": \"invert\",\n  \"invertido\": \"invert\",\n  \"invertidos\": \"invert\",\n  \"invertimos\": \"invert\",\n  \"invertir\": \"invert\",\n  \"invertirá\": \"invert\",\n  \"invertirán\": \"invert\",\n  \"invertiremos\": \"invert\",\n  \"invertirían\": \"invert\",\n  \"invertirla\": \"invert\",\n  \"invertirle\": \"invert\",\n  \"investidura\": \"investidur\",\n  \"investiga\": \"investig\",\n  \"investigaban\": \"investig\",\n  \"investigación\": \"investig\",\n  \"investigaciones\": \"investig\",\n  \"investigado\": \"investig\",\n  \"investigador\": \"investig\",\n  \"investigadora\": \"investig\",\n  \"investigadores\": \"investig\",\n  \"investigados\": \"investig\",\n  \"investigan\": \"investig\",\n  \"investigando\": \"investig\",\n  \"investigar\": \"investig\",\n  \"investigará\": \"investig\",\n  \"investigaran\": \"investig\",\n  \"investigarse\": \"investig\",\n  \"investigó\": \"investig\",\n  \"investigue\": \"investig\",\n  \"investiguen\": \"investig\",\n  \"invicta\": \"invict\",\n  \"invicto\": \"invict\",\n  \"invictos\": \"invict\",\n  \"invierno\": \"inviern\",\n  \"invierta\": \"inviert\",\n  \"invierte\": \"inviert\",\n  \"invierten\": \"inviert\",\n  \"invirtiendo\": \"invirt\",\n  \"invirtieron\": \"invirt\",\n  \"invirtió\": \"invirt\",\n  \"invisiblemente\": \"invis\",\n  \"invita\": \"invit\",\n  \"invitaba\": \"invit\",\n  \"invitación\": \"invit\",\n  \"invitaciones\": \"invit\",\n  \"invitadas\": \"invit\",\n  \"invitado\": \"invit\",\n  \"invitados\": \"invit\",\n  \"invitamos\": \"invit\",\n  \"invitan\": \"invit\",\n  \"invitando\": \"invit\",\n  \"invitar\": \"invit\",\n  \"invitarlo\": \"invit\",\n  \"invitaron\": \"invit\",\n  \"invite\": \"invit\",\n  \"inviten\": \"invit\",\n  \"invito\": \"invit\",\n  \"invitó\": \"invit\",\n  \"invocando\": \"invoc\",\n  \"involucra\": \"involucr\",\n  \"involucrada\": \"involucr\",\n  \"involucradas\": \"involucr\",\n  \"involucrado\": \"involucr\",\n  \"involucrados\": \"involucr\",\n  \"involucramiento\": \"involucr\",\n  \"involucran\": \"involucr\",\n  \"involucrar\": \"involucr\",\n  \"involucrarlo\": \"involucr\",\n  \"involucrarme\": \"involucr\",\n  \"involucrarse\": \"involucr\",\n  \"involucre\": \"involucr\",\n  \"involucro\": \"involucr\",\n  \"involuntario\": \"involuntari\",\n  \"inyección\": \"inyeccion\",\n  \"inyectar\": \"inyect\",\n  \"inyecte\": \"inyect\",\n  \"inyectó\": \"inyect\",\n  \"ionizados\": \"ioniz\",\n  \"ionizantes\": \"ioniz\",\n  \"ip\": \"ip\",\n  \"ipiña\": \"ipiñ\",\n  \"ir\": \"ir\",\n  \"ira\": \"ira\",\n  \"irá\": \"ira\",\n  \"iracheta\": \"irachet\",\n  \"iraheta\": \"irahet\",\n  \"iran\": \"iran\",\n  \"irán\": \"iran\",\n  \"iraní\": \"iran\",\n  \"iraníes\": \"iran\",\n  \"irapuato\": \"irapuat\",\n  \"iraq\": \"iraq\",\n  \"iraquí\": \"iraqu\",\n  \"iraquíes\": \"iraqu\",\n  \"iremos\": \"irem\",\n  \"iría\": \"iri\",\n  \"irían\": \"iri\",\n  \"iriarte\": \"iriart\",\n  \"irigoyen\": \"irigoy\",\n  \"irineo\": \"irine\",\n  \"irlandés\": \"irlandes\",\n  \"irlandeses\": \"irlandes\",\n  \"irlos\": \"irlos\",\n  \"irma\": \"irma\",\n  \"irme\": \"irme\",\n  \"irnos\": \"irnos\",\n  \"ironía\": \"iron\",\n  \"irónico\": \"iron\",\n  \"ironizaba\": \"ironiz\",\n  \"irracional\": \"irracional\",\n  \"irrealistas\": \"irreal\",\n  \"irrealizables\": \"irrealiz\",\n  \"irreconocible\": \"irreconoc\",\n  \"irrecuperable\": \"irrecuper\",\n  \"irredentos\": \"irredent\",\n  \"irrefutable\": \"irrefut\",\n  \"irregular\": \"irregul\",\n  \"irregulares\": \"irregular\",\n  \"irregularidad\": \"irregular\",\n  \"irregularidades\": \"irregular\",\n  \"irrelevante\": \"irrelev\",\n  \"irrelevantes\": \"irrelev\",\n  \"irremisiblemente\": \"irremis\",\n  \"irrenunciabilidad\": \"irrenunci\",\n  \"irresoluto\": \"irresolut\",\n  \"irresolutos\": \"irresolut\",\n  \"irresponsabilidad\": \"irrespons\",\n  \"irresponsable\": \"irrespons\",\n  \"irresponsables\": \"irrespons\",\n  \"irreversible\": \"irrevers\",\n  \"irrita\": \"irrit\",\n  \"irritación\": \"irrit\",\n  \"irritaciones\": \"irrit\",\n  \"irritado\": \"irrit\",\n  \"irritan\": \"irrit\",\n  \"irritantes\": \"irrit\",\n  \"irritarse\": \"irrit\",\n  \"irruga\": \"irrug\",\n  \"irse\": \"irse\",\n  \"irte\": \"irte\",\n  \"irvin\": \"irvin\",\n  \"isaac\": \"isaac\",\n  \"isabel\": \"isabel\",\n  \"isabela\": \"isabel\",\n  \"isaias\": \"isai\",\n  \"isidro\": \"isidr\",\n  \"isla\": \"isla\",\n  \"islam\": \"islam\",\n  \"islámico\": \"islam\",\n  \"island\": \"island\",\n  \"islandia\": \"islandi\",\n  \"islas\": \"islas\",\n  \"isleño\": \"isleñ\",\n  \"isleños\": \"isleñ\",\n  \"isley\": \"isley\",\n  \"ismael\": \"ismael\",\n  \"israel\": \"israel\",\n  \"israelí\": \"israel\",\n  \"israelíes\": \"israel\",\n  \"issste\": \"issste\",\n  \"isssteleon\": \"isssteleon\",\n  \"isssteleón\": \"isssteleon\",\n  \"istmo\": \"istmo\",\n  \"italia\": \"itali\",\n  \"italiana\": \"italian\",\n  \"italiano\": \"italian\",\n  \"italianos\": \"italian\",\n  \"itam\": \"itam\",\n  \"itamaraty\": \"itamaraty\",\n  \"itesm\": \"itesm\",\n  \"itinerante\": \"itiner\",\n  \"itinerantes\": \"itiner\",\n  \"itinerario\": \"itinerari\",\n  \"itinerarios\": \"itinerari\",\n  \"itoloca\": \"itoloc\",\n  \"itsmo\": \"itsmo\",\n  \"itzá\": \"itza\",\n  \"iv\": \"iv\",\n  \"iva\": \"iva\",\n  \"iván\": \"ivan\",\n  \"ivo\": \"ivo\",\n  \"iwai\": \"iwai\",\n  \"ix\": \"ix\",\n  \"ixalapa\": \"ixalap\",\n  \"ixcaquixtla\": \"ixcaquixtl\",\n  \"izar\": \"izar\",\n  \"izetbegovic\": \"izetbegovic\",\n  \"izquierda\": \"izquierd\",\n  \"izquierdas\": \"izquierd\",\n  \"izquierdo\": \"izquierd\",\n  \"iztapalapa\": \"iztapalap\",\n  \"izvestia\": \"izvesti\",\n  \"j\": \"j\",\n  \"jaafar\": \"jaaf\",\n  \"jaboneras\": \"jaboner\",\n  \"jacinta\": \"jacint\",\n  \"jack\": \"jack\",\n  \"jackeline\": \"jackelin\",\n  \"jackie\": \"jacki\",\n  \"jackson\": \"jackson\",\n  \"jacobo\": \"jacob\",\n  \"jacobs\": \"jacobs\",\n  \"jacques\": \"jacqu\",\n  \"jactancio\": \"jactanci\",\n  \"jacte\": \"jact\",\n  \"jade\": \"jad\",\n  \"jaguares\": \"jaguar\",\n  \"jaguarundis\": \"jaguarundis\",\n  \"jaibos\": \"jaib\",\n  \"jaime\": \"jaim\",\n  \"jalaba\": \"jal\",\n  \"jalado\": \"jal\",\n  \"jalando\": \"jal\",\n  \"jalapeños\": \"jalapeñ\",\n  \"jalar\": \"jal\",\n  \"jalarse\": \"jal\",\n  \"jale\": \"jal\",\n  \"jalisciense\": \"jalisciens\",\n  \"jalisco\": \"jalisc\",\n  \"jaló\": \"jal\",\n  \"jalones\": \"jalon\",\n  \"jam\": \"jam\",\n  \"jamaiquina\": \"jamaiquin\",\n  \"jamás\": \"jamas\",\n  \"james\": \"jam\",\n  \"jamón\": \"jamon\",\n  \"jana\": \"jan\",\n  \"janeiro\": \"janeir\",\n  \"janice\": \"janic\",\n  \"japon\": \"japon\",\n  \"japón\": \"japon\",\n  \"japonés\": \"japones\",\n  \"japonesa\": \"japones\",\n  \"japonesas\": \"japones\",\n  \"japoneses\": \"japones\",\n  \"jaque\": \"jaqu\",\n  \"jaramillo\": \"jaramill\",\n  \"jardín\": \"jardin\",\n  \"jardinería\": \"jardin\",\n  \"jardinero\": \"jardiner\",\n  \"jardines\": \"jardin\",\n  \"jarocha\": \"jaroch\",\n  \"jarochas\": \"jaroch\",\n  \"jarra\": \"jarr\",\n  \"jarro\": \"jarr\",\n  \"jarry\": \"jarry\",\n  \"jason\": \"jason\",\n  \"jasso\": \"jass\",\n  \"jaula\": \"jaul\",\n  \"javier\": \"javi\",\n  \"jazz\": \"jazz\",\n  \"jazzista\": \"jazzist\",\n  \"jc\": \"jc\",\n  \"jcpenney\": \"jcpenney\",\n  \"jean\": \"jean\",\n  \"jeans\": \"jeans\",\n  \"jefa\": \"jef\",\n  \"jefatura\": \"jefatur\",\n  \"jefaturados\": \"jefatur\",\n  \"jefe\": \"jef\",\n  \"jefes\": \"jef\",\n  \"jeff\": \"jeff\",\n  \"jefferson\": \"jefferson\",\n  \"jehová\": \"jehov\",\n  \"jerarcas\": \"jerarc\",\n  \"jerarquía\": \"jerarqu\",\n  \"jeremie\": \"jeremi\",\n  \"jeremy\": \"jeremy\",\n  \"jerga\": \"jerg\",\n  \"jerónimo\": \"jeronim\",\n  \"jersey\": \"jersey\",\n  \"jesés\": \"jeses\",\n  \"jesse\": \"jess\",\n  \"jessica\": \"jessic\",\n  \"jesús\": \"jesus\",\n  \"jethro\": \"jethr\",\n  \"jetta\": \"jett\",\n  \"jim\": \"jim\",\n  \"jiménez\": \"jimenez\",\n  \"jimmy\": \"jimmy\",\n  \"jinete\": \"jinet\",\n  \"jinetear\": \"jinet\",\n  \"jinetes\": \"jinet\",\n  \"jingles\": \"jingl\",\n  \"jo\": \"jo\",\n  \"joachim\": \"joachim\",\n  \"joao\": \"joa\",\n  \"joaquín\": \"joaquin\",\n  \"jobs\": \"jobs\",\n  \"joe\": \"joe\",\n  \"joel\": \"joel\",\n  \"john\": \"john\",\n  \"johnny\": \"johnny\",\n  \"johns\": \"johns\",\n  \"johnson\": \"johnson\",\n  \"jol\": \"jol\",\n  \"jolalpán\": \"jolalpan\",\n  \"jolopo\": \"jolop\",\n  \"jonas\": \"jon\",\n  \"jones\": \"jon\",\n  \"jonrón\": \"jonron\",\n  \"jorge\": \"jorg\",\n  \"jornada\": \"jorn\",\n  \"jornadas\": \"jorn\",\n  \"joroba\": \"jorob\",\n  \"jorobas\": \"jorob\",\n  \"josé\": \"jos\",\n  \"josefina\": \"josefin\",\n  \"joselito\": \"joselit\",\n  \"joseph\": \"joseph\",\n  \"jour\": \"jour\",\n  \"journal\": \"journal\",\n  \"joven\": \"jov\",\n  \"jóven\": \"jov\",\n  \"jovencita\": \"jovencit\",\n  \"jovencitas\": \"jovencit\",\n  \"jovencito\": \"jovencit\",\n  \"jovencitos\": \"jovencit\",\n  \"jóvenes\": \"joven\",\n  \"jovial\": \"jovial\",\n  \"joya\": \"joy\",\n  \"joyas\": \"joy\",\n  \"joyera\": \"joyer\",\n  \"joyería\": \"joy\",\n  \"joyero\": \"joyer\",\n  \"joyeros\": \"joyer\",\n  \"joyitas\": \"joyit\",\n  \"jr\": \"jr\",\n  \"juan\": \"juan\",\n  \"juana\": \"juan\",\n  \"juarez\": \"juarez\",\n  \"juárez\": \"juarez\",\n  \"jubilado\": \"jubil\",\n  \"jubilados\": \"jubil\",\n  \"júbilo\": \"jubil\",\n  \"jubilosa\": \"jubil\",\n  \"judicial\": \"judicial\",\n  \"judiciales\": \"judicial\",\n  \"judío\": \"judi\",\n  \"judíos\": \"judi\",\n  \"judith\": \"judith\",\n  \"judoka\": \"judok\",\n  \"jueceo\": \"juece\",\n  \"jueces\": \"juec\",\n  \"juega\": \"jueg\",\n  \"juegan\": \"jueg\",\n  \"juegas\": \"jueg\",\n  \"juego\": \"jueg\",\n  \"juegos\": \"jueg\",\n  \"juegue\": \"jueg\",\n  \"jueguen\": \"jueg\",\n  \"jueves\": \"juev\",\n  \"juez\": \"juez\",\n  \"jugaba\": \"jug\",\n  \"jugaban\": \"jug\",\n  \"jugada\": \"jug\",\n  \"jugado\": \"jug\",\n  \"jugador\": \"jugador\",\n  \"jugadoras\": \"jugador\",\n  \"jugadores\": \"jugador\",\n  \"jugados\": \"jug\",\n  \"jugando\": \"jug\",\n  \"jugar\": \"jug\",\n  \"jugará\": \"jug\",\n  \"jugaran\": \"jug\",\n  \"jugarán\": \"jug\",\n  \"jugaremos\": \"jug\",\n  \"jugaría\": \"jug\",\n  \"jugaron\": \"jug\",\n  \"jugo\": \"jug\",\n  \"jugó\": \"jug\",\n  \"jugosa\": \"jugos\",\n  \"jugué\": \"jug\",\n  \"juguete\": \"juguet\",\n  \"juguetes\": \"juguet\",\n  \"juguetito\": \"juguetit\",\n  \"juicio\": \"juici\",\n  \"juicios\": \"juici\",\n  \"julia\": \"juli\",\n  \"julián\": \"julian\",\n  \"julieta\": \"juliet\",\n  \"julio\": \"juli\",\n  \"julius\": \"julius\",\n  \"juncal\": \"juncal\",\n  \"junco\": \"junc\",\n  \"jung\": \"jung\",\n  \"junio\": \"juni\",\n  \"junior\": \"junior\",\n  \"junquia\": \"junqui\",\n  \"junta\": \"junt\",\n  \"juntando\": \"junt\",\n  \"juntar\": \"junt\",\n  \"juntaron\": \"junt\",\n  \"juntas\": \"junt\",\n  \"junto\": \"junt\",\n  \"juntos\": \"junt\",\n  \"jurado\": \"jur\",\n  \"juramentado\": \"jurament\",\n  \"juramentaron\": \"jurament\",\n  \"juramentó\": \"jurament\",\n  \"jurídica\": \"jurid\",\n  \"jurídicamente\": \"jurid\",\n  \"jurídicas\": \"jurid\",\n  \"jurídico\": \"jurid\",\n  \"jurídicos\": \"jurid\",\n  \"jurisdicción\": \"jurisdiccion\",\n  \"juristas\": \"jurist\",\n  \"juro\": \"jur\",\n  \"justa\": \"just\",\n  \"justice\": \"justic\",\n  \"justicia\": \"justici\",\n  \"justiciero\": \"justicier\",\n  \"justifica\": \"justif\",\n  \"justificable\": \"justific\",\n  \"justificación\": \"justif\",\n  \"justificada\": \"justific\",\n  \"justificadas\": \"justific\",\n  \"justifican\": \"justific\",\n  \"justificando\": \"justific\",\n  \"justificantes\": \"justif\",\n  \"justificar\": \"justific\",\n  \"justificará\": \"justific\",\n  \"justificarán\": \"justific\",\n  \"justificare\": \"justificar\",\n  \"justificó\": \"justific\",\n  \"justifique\": \"justifiqu\",\n  \"justino\": \"justin\",\n  \"justo\": \"just\",\n  \"justos\": \"just\",\n  \"juvenil\": \"juvenil\",\n  \"juveniles\": \"juvenil\",\n  \"juventino\": \"juventin\",\n  \"juventud\": \"juventud\",\n  \"juzgaban\": \"juzg\",\n  \"juzgada\": \"juzg\",\n  \"juzgado\": \"juzg\",\n  \"juzgador\": \"juzgador\",\n  \"juzgados\": \"juzg\",\n  \"juzgar\": \"juzg\",\n  \"juzgarlo\": \"juzg\",\n  \"juzgue\": \"juzg\",\n  \"k\": \"k\",\n  \"kahlo\": \"kahl\",\n  \"kaiman\": \"kaim\",\n  \"kansai\": \"kansai\",\n  \"kantor\": \"kantor\",\n  \"kaoteng\": \"kaoteng\",\n  \"karam\": \"karam\",\n  \"karate\": \"karat\",\n  \"karcz\": \"karcz\",\n  \"kardex\": \"kardex\",\n  \"karen\": \"kar\",\n  \"karina\": \"karin\",\n  \"karl\": \"karl\",\n  \"karla\": \"karl\",\n  \"katheyn\": \"katheyn\",\n  \"katia\": \"kati\",\n  \"kaveh\": \"kaveh\",\n  \"kay\": \"kay\",\n  \"kb\": \"kb\",\n  \"kbytes\": \"kbytes\",\n  \"keldvsh\": \"keldvsh\",\n  \"kelly\": \"kelly\",\n  \"kelso\": \"kels\",\n  \"kempes\": \"kemp\",\n  \"kenia\": \"keni\",\n  \"keniano\": \"kenian\",\n  \"kenianos\": \"kenian\",\n  \"keniata\": \"keniat\",\n  \"kennan\": \"kenn\",\n  \"kennedy\": \"kennedy\",\n  \"kenneth\": \"kenneth\",\n  \"kenny\": \"kenny\",\n  \"kensington\": \"kensington\",\n  \"kent\": \"kent\",\n  \"kentenich\": \"kentenich\",\n  \"kenworth\": \"kenworth\",\n  \"kerosina\": \"kerosin\",\n  \"kevin\": \"kevin\",\n  \"key\": \"key\",\n  \"keynesianismo\": \"keynesian\",\n  \"kg\": \"kg\",\n  \"kgb\": \"kgb\",\n  \"khasbulatov\": \"khasbulatov\",\n  \"kibeho\": \"kibeh\",\n  \"kidman\": \"kidm\",\n  \"kiko\": \"kik\",\n  \"kilo\": \"kil\",\n  \"kilogramos\": \"kilogr\",\n  \"kilometraje\": \"kilometraj\",\n  \"kilometro\": \"kilometr\",\n  \"kilómetro\": \"kilometr\",\n  \"kilómetros\": \"kilometr\",\n  \"kilos\": \"kil\",\n  \"kim\": \"kim\",\n  \"kima\": \"kim\",\n  \"king\": \"king\",\n  \"kinshasa\": \"kinshas\",\n  \"kipper\": \"kipp\",\n  \"kissinger\": \"kissing\",\n  \"kit\": \"kit\",\n  \"km\": \"km\",\n  \"kmart\": \"kmart\",\n  \"knight\": \"knight\",\n  \"ko\": \"ko\",\n  \"koblenz\": \"koblenz\",\n  \"koeman\": \"koem\",\n  \"kong\": \"kong\",\n  \"korshak\": \"korshak\",\n  \"kosovo\": \"kosov\",\n  \"krafchick\": \"krafchick\",\n  \"kremlin\": \"kremlin\",\n  \"kresak\": \"kresak\",\n  \"kretch\": \"kretch\",\n  \"krieger\": \"krieg\",\n  \"krill\": \"krill\",\n  \"kristof\": \"kristof\",\n  \"kruger\": \"krug\",\n  \"kruschev\": \"kruschev\",\n  \"kubli\": \"kubli\",\n  \"kuehnheim\": \"kuehnheim\",\n  \"kumate\": \"kumat\",\n  \"kuniaki\": \"kuniaki\",\n  \"kuperlmann\": \"kuperlmann\",\n  \"kuramura\": \"kuramur\",\n  \"kurdos\": \"kurd\",\n  \"kutugata\": \"kutugat\",\n  \"kuwait\": \"kuwait\",\n  \"kuwaití\": \"kuwait\",\n  \"kytty\": \"kytty\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"labastida\": \"labast\",\n  \"laberinto\": \"laberint\",\n  \"labiche\": \"labich\",\n  \"labor\": \"labor\",\n  \"labora\": \"labor\",\n  \"laboral\": \"laboral\",\n  \"laborales\": \"laboral\",\n  \"laborando\": \"labor\",\n  \"laborar\": \"labor\",\n  \"laboratorio\": \"laboratori\",\n  \"laboratorios\": \"laboratori\",\n  \"laborde\": \"labord\",\n  \"labores\": \"labor\",\n  \"laborioso\": \"labori\",\n  \"laboró\": \"labor\",\n  \"labra\": \"labr\",\n  \"labrecque\": \"labrecqu\",\n  \"lacónicos\": \"lacon\",\n  \"lácteos\": \"lacte\",\n  \"lada\": \"lad\",\n  \"ladarse\": \"lad\",\n  \"ladas\": \"lad\",\n  \"ladatel\": \"ladatel\",\n  \"ladera\": \"lader\",\n  \"laderas\": \"lader\",\n  \"ladino\": \"ladin\",\n  \"ladinos\": \"ladin\",\n  \"lado\": \"lad\",\n  \"lados\": \"lad\",\n  \"ladrón\": \"ladron\",\n  \"ladrones\": \"ladron\",\n  \"lagerfeld\": \"lagerfeld\",\n  \"lago\": \"lag\",\n  \"lagos\": \"lag\",\n  \"lágrimas\": \"lagrim\",\n  \"lagüera\": \"lagüer\",\n  \"laguna\": \"lagun\",\n  \"lagunas\": \"lagun\",\n  \"lagunera\": \"laguner\",\n  \"laguneros\": \"laguner\",\n  \"laicos\": \"laic\",\n  \"lajas\": \"laj\",\n  \"lajous\": \"lajous\",\n  \"lake\": \"lak\",\n  \"lala\": \"lal\",\n  \"lamadrid\": \"lamadr\",\n  \"lamarche\": \"lamarch\",\n  \"lambisconería\": \"lambiscon\",\n  \"lambretón\": \"lambreton\",\n  \"lamen\": \"lam\",\n  \"lamenta\": \"lament\",\n  \"lamentable\": \"lament\",\n  \"lamentablemente\": \"lament\",\n  \"lamentables\": \"lament\",\n  \"lamentaron\": \"lament\",\n  \"lamento\": \"lament\",\n  \"lamentó\": \"lament\",\n  \"lámina\": \"lamin\",\n  \"laminadora\": \"lamin\",\n  \"láminas\": \"lamin\",\n  \"lamosa\": \"lamos\",\n  \"lámparas\": \"lamp\",\n  \"lana\": \"lan\",\n  \"lanari\": \"lanari\",\n  \"lance\": \"lanc\",\n  \"lancé\": \"lanc\",\n  \"lancen\": \"lanc\",\n  \"lancha\": \"lanch\",\n  \"lanchero\": \"lancher\",\n  \"landois\": \"landois\",\n  \"landru\": \"landru\",\n  \"lang\": \"lang\",\n  \"langange\": \"langang\",\n  \"langley\": \"langley\",\n  \"lantana\": \"lantan\",\n  \"lantastic\": \"lantastic\",\n  \"lanz\": \"lanz\",\n  \"lanza\": \"lanz\",\n  \"lanzaba\": \"lanz\",\n  \"lanzada\": \"lanz\",\n  \"lanzadas\": \"lanz\",\n  \"lanzado\": \"lanz\",\n  \"lanzador\": \"lanzador\",\n  \"lanzadores\": \"lanzador\",\n  \"lanzagranadas\": \"lanzagran\",\n  \"lanzamiento\": \"lanzamient\",\n  \"lanzamientos\": \"lanzamient\",\n  \"lanzar\": \"lanz\",\n  \"lanzará\": \"lanz\",\n  \"lanzaran\": \"lanz\",\n  \"lanzarán\": \"lanz\",\n  \"lanzaron\": \"lanz\",\n  \"lanzarse\": \"lanz\",\n  \"lanzó\": \"lanz\",\n  \"lápiz\": \"lapiz\",\n  \"lapso\": \"laps\",\n  \"lara\": \"lar\",\n  \"lareau\": \"lareau\",\n  \"laredo\": \"lared\",\n  \"laredos\": \"lared\",\n  \"lares\": \"lar\",\n  \"larga\": \"larg\",\n  \"largamente\": \"larg\",\n  \"largas\": \"larg\",\n  \"largo\": \"larg\",\n  \"largometraje\": \"largometraj\",\n  \"largometrajes\": \"largometraj\",\n  \"largos\": \"larg\",\n  \"larguirucho\": \"larguiruch\",\n  \"larguísimo\": \"larguisim\",\n  \"larios\": \"lari\",\n  \"larralde\": \"larrald\",\n  \"larry\": \"larry\",\n  \"las\": \"las\",\n  \"lascivo\": \"lasciv\",\n  \"laser\": \"las\",\n  \"láser\": \"las\",\n  \"lasercard\": \"lasercard\",\n  \"láseres\": \"laser\",\n  \"lasser\": \"lass\",\n  \"lástima\": \"lastim\",\n  \"lastimada\": \"lastim\",\n  \"lastimadas\": \"lastim\",\n  \"lastimar\": \"lastim\",\n  \"lastimeramente\": \"lastimer\",\n  \"lata\": \"lat\",\n  \"latas\": \"lat\",\n  \"latente\": \"latent\",\n  \"lateral\": \"lateral\",\n  \"laterales\": \"lateral\",\n  \"lateralidad\": \"lateral\",\n  \"latido\": \"lat\",\n  \"latin\": \"latin\",\n  \"latina\": \"latin\",\n  \"latino\": \"latin\",\n  \"latinoamérica\": \"latinoamer\",\n  \"latinoamericanas\": \"latinoamerican\",\n  \"latinoamericano\": \"latinoamerican\",\n  \"latinoamericanos\": \"latinoamerican\",\n  \"latinos\": \"latin\",\n  \"latitudes\": \"latitud\",\n  \"latón\": \"laton\",\n  \"laudos\": \"laud\",\n  \"laudrup\": \"laudrup\",\n  \"laura\": \"laur\",\n  \"laureano\": \"laurean\",\n  \"lauren\": \"laur\",\n  \"laurence\": \"laurenc\",\n  \"laurent\": \"laurent\",\n  \"lava\": \"lav\",\n  \"lavacoches\": \"lavacoch\",\n  \"lavaderos\": \"lavader\",\n  \"lavado\": \"lav\",\n  \"lavadora\": \"lavador\",\n  \"lavalle\": \"lavall\",\n  \"lavan\": \"lav\",\n  \"lavar\": \"lav\",\n  \"lavarlo\": \"lav\",\n  \"lavercombe\": \"lavercomb\",\n  \"lavolpe\": \"lavolp\",\n  \"laxitud\": \"laxitud\",\n  \"layla\": \"layl\",\n  \"lázaro\": \"lazar\",\n  \"lazcano\": \"lazcan\",\n  \"lazo\": \"laz\",\n  \"lazos\": \"laz\",\n  \"le\": \"le\",\n  \"leal\": \"leal\",\n  \"leales\": \"leal\",\n  \"lealtad\": \"lealt\",\n  \"léase\": \"leas\",\n  \"leblanc\": \"leblanc\",\n  \"lección\": \"leccion\",\n  \"lecciones\": \"leccion\",\n  \"leche\": \"lech\",\n  \"lechería\": \"lech\",\n  \"lechero\": \"lecher\",\n  \"lecho\": \"lech\",\n  \"lechuga\": \"lechug\",\n  \"leckie\": \"lecki\",\n  \"lecomte\": \"lecomt\",\n  \"lector\": \"lector\",\n  \"lectores\": \"lector\",\n  \"lectura\": \"lectur\",\n  \"lecturas\": \"lectur\",\n  \"ledezma\": \"ledezm\",\n  \"ledo\": \"led\",\n  \"lee\": \"lee\",\n  \"leeds\": \"leeds\",\n  \"leen\": \"leen\",\n  \"leer\": \"leer\",\n  \"leerán\": \"leeran\",\n  \"leerlo\": \"leerl\",\n  \"legado\": \"leg\",\n  \"legal\": \"legal\",\n  \"legales\": \"legal\",\n  \"legalidad\": \"legal\",\n  \"legalizar\": \"legaliz\",\n  \"legalizó\": \"legaliz\",\n  \"legalmente\": \"legal\",\n  \"legar\": \"leg\",\n  \"legendario\": \"legendari\",\n  \"legisla\": \"legisl\",\n  \"legislación\": \"legisl\",\n  \"legislador\": \"legisl\",\n  \"legisladora\": \"legisl\",\n  \"legisladores\": \"legisl\",\n  \"legislan\": \"legisl\",\n  \"legislar\": \"legisl\",\n  \"legislativa\": \"legisl\",\n  \"legislativas\": \"legisl\",\n  \"legislativo\": \"legisl\",\n  \"legislativos\": \"legisl\",\n  \"legislatura\": \"legislatur\",\n  \"legislaturas\": \"legislatur\",\n  \"legisle\": \"legisl\",\n  \"legislen\": \"legisl\",\n  \"legista\": \"legist\",\n  \"legítima\": \"legitim\",\n  \"legítimadefensa\": \"legitimadefens\",\n  \"legítimamente\": \"legitim\",\n  \"legitimidad\": \"legitim\",\n  \"legítimo\": \"legitim\",\n  \"legorreta\": \"legorret\",\n  \"legrá\": \"legr\",\n  \"leguas\": \"legu\",\n  \"legue\": \"leg\",\n  \"legumbres\": \"legumbr\",\n  \"lehnert\": \"lehnert\",\n  \"leí\": \"lei\",\n  \"leía\": \"lei\",\n  \"leída\": \"leid\",\n  \"leído\": \"leid\",\n  \"lejana\": \"lejan\",\n  \"lejanas\": \"lejan\",\n  \"lejano\": \"lejan\",\n  \"lejanos\": \"lejan\",\n  \"lejos\": \"lej\",\n  \"lema\": \"lem\",\n  \"lemas\": \"lem\",\n  \"lemus\": \"lemus\",\n  \"leña\": \"leñ\",\n  \"lencería\": \"lenc\",\n  \"lendl\": \"lendl\",\n  \"leñero\": \"leñer\",\n  \"lengua\": \"lengu\",\n  \"lenguaje\": \"lenguaj\",\n  \"lennard\": \"lennard\",\n  \"lenny\": \"lenny\",\n  \"lenta\": \"lent\",\n  \"lentamente\": \"lent\",\n  \"lentejuela\": \"lentejuel\",\n  \"lentejuelas\": \"lentejuel\",\n  \"lentes\": \"lent\",\n  \"lentitud\": \"lentitud\",\n  \"lento\": \"lent\",\n  \"lentos\": \"lent\",\n  \"leo\": \"leo\",\n  \"león\": \"leon\",\n  \"leonard\": \"leonard\",\n  \"leonarda\": \"leonard\",\n  \"leonardo\": \"leonard\",\n  \"leones\": \"leon\",\n  \"leonor\": \"leonor\",\n  \"leopoldo\": \"leopold\",\n  \"leotardos\": \"leotard\",\n  \"léoz\": \"leoz\",\n  \"lerma\": \"lerm\",\n  \"lermas\": \"lerm\",\n  \"lerna\": \"lern\",\n  \"leroux\": \"leroux\",\n  \"les\": \"les\",\n  \"lesbianas\": \"lesbian\",\n  \"lesión\": \"lesion\",\n  \"lesiona\": \"lesion\",\n  \"lesionada\": \"lesion\",\n  \"lesionadas\": \"lesion\",\n  \"lesionado\": \"lesion\",\n  \"lesionados\": \"lesion\",\n  \"lesionan\": \"lesion\",\n  \"lesionando\": \"lesion\",\n  \"lesionar\": \"lesion\",\n  \"lesiones\": \"lesion\",\n  \"lesiono\": \"lesion\",\n  \"lesionó\": \"lesion\",\n  \"lessing\": \"lessing\",\n  \"letal\": \"letal\",\n  \"letales\": \"letal\",\n  \"leticia\": \"letici\",\n  \"letra\": \"letr\",\n  \"letras\": \"letr\",\n  \"letrero\": \"letrer\",\n  \"letreros\": \"letrer\",\n  \"letrina\": \"letrin\",\n  \"letrinas\": \"letrin\",\n  \"letrista\": \"letrist\",\n  \"lett\": \"lett\",\n  \"leucemia\": \"leucemi\",\n  \"levanta\": \"levant\",\n  \"levantaba\": \"levant\",\n  \"levantada\": \"levant\",\n  \"levantado\": \"levant\",\n  \"levantados\": \"levant\",\n  \"levantamiento\": \"levant\",\n  \"levantando\": \"levant\",\n  \"levantándose\": \"levant\",\n  \"levantante\": \"levant\",\n  \"levantar\": \"levant\",\n  \"levantaran\": \"levant\",\n  \"levantarán\": \"levant\",\n  \"levantarás\": \"levant\",\n  \"levantarme\": \"levant\",\n  \"levantaron\": \"levant\",\n  \"levantarse\": \"levant\",\n  \"levante\": \"levant\",\n  \"levanten\": \"levant\",\n  \"levantó\": \"levant\",\n  \"levati\": \"levati\",\n  \"leve\": \"lev\",\n  \"levemente\": \"levement\",\n  \"leves\": \"lev\",\n  \"levin\": \"levin\",\n  \"levín\": \"levin\",\n  \"levítico\": \"levit\",\n  \"levy\": \"levy\",\n  \"ley\": \"ley\",\n  \"leyenda\": \"leyend\",\n  \"leyendas\": \"leyend\",\n  \"leyendo\": \"leyend\",\n  \"leyeron\": \"leyeron\",\n  \"leyes\": \"ley\",\n  \"leyó\": \"ley\",\n  \"leyva\": \"leyv\",\n  \"lianas\": \"lian\",\n  \"libanés\": \"libanes\",\n  \"libanesa\": \"libanes\",\n  \"líbano\": \"liban\",\n  \"libera\": \"liber\",\n  \"liberación\": \"liber\",\n  \"liberada\": \"liber\",\n  \"liberado\": \"liber\",\n  \"liberal\": \"liberal\",\n  \"liberales\": \"liberal\",\n  \"liberalismo\": \"liberal\",\n  \"liberalización\": \"liberaliz\",\n  \"liberalizar\": \"liberaliz\",\n  \"liberan\": \"liber\",\n  \"liberar\": \"liber\",\n  \"liberará\": \"liber\",\n  \"liberarlo\": \"liber\",\n  \"liberaron\": \"liber\",\n  \"liberia\": \"liberi\",\n  \"libero\": \"liber\",\n  \"líbero\": \"liber\",\n  \"liberó\": \"liber\",\n  \"libertad\": \"libert\",\n  \"libertades\": \"libertad\",\n  \"libertador\": \"libert\",\n  \"libertario\": \"libertari\",\n  \"libidinosamente\": \"libidin\",\n  \"libidio\": \"libidi\",\n  \"libramiento\": \"libramient\",\n  \"libran\": \"libr\",\n  \"librando\": \"libr\",\n  \"librará\": \"libr\",\n  \"librarla\": \"libr\",\n  \"librarse\": \"libr\",\n  \"librarte\": \"librart\",\n  \"libras\": \"libr\",\n  \"libre\": \"libr\",\n  \"librerías\": \"libr\",\n  \"libres\": \"libr\",\n  \"libreta\": \"libret\",\n  \"librito\": \"librit\",\n  \"libro\": \"libr\",\n  \"libró\": \"libr\",\n  \"libros\": \"libr\",\n  \"lic\": \"lic\",\n  \"licea\": \"lice\",\n  \"licencia\": \"licenci\",\n  \"licenciado\": \"licenci\",\n  \"licencias\": \"licenci\",\n  \"licenciaturas\": \"licenciatur\",\n  \"licha\": \"lich\",\n  \"licitación\": \"licit\",\n  \"licitaciones\": \"licit\",\n  \"licitará\": \"licit\",\n  \"lícito\": \"licit\",\n  \"liconsa\": \"licons\",\n  \"licor\": \"licor\",\n  \"licuada\": \"licu\",\n  \"lid\": \"lid\",\n  \"líder\": \"lid\",\n  \"liderato\": \"liderat\",\n  \"liderazgo\": \"liderazg\",\n  \"liderazgos\": \"liderazg\",\n  \"lidereados\": \"lider\",\n  \"liderear\": \"lider\",\n  \"líderes\": \"lider\",\n  \"lideresa\": \"lideres\",\n  \"lideresas\": \"lideres\",\n  \"lidia\": \"lidi\",\n  \"lidiado\": \"lidi\",\n  \"lidiaron\": \"lidi\",\n  \"lidice\": \"lidic\",\n  \"lidió\": \"lid\",\n  \"lido\": \"lid\",\n  \"lienzo\": \"lienz\",\n  \"liera\": \"lier\",\n  \"lievin\": \"lievin\",\n  \"lifane\": \"lifan\",\n  \"life\": \"lif\",\n  \"liga\": \"lig\",\n  \"ligados\": \"lig\",\n  \"ligamayorista\": \"ligamayor\",\n  \"ligamento\": \"ligament\",\n  \"ligar\": \"lig\",\n  \"ligarde\": \"ligard\",\n  \"ligaron\": \"lig\",\n  \"ligas\": \"lig\",\n  \"ligera\": \"liger\",\n  \"ligeramente\": \"liger\",\n  \"ligeras\": \"liger\",\n  \"ligereza\": \"ligerez\",\n  \"ligero\": \"liger\",\n  \"light\": \"light\",\n  \"ligne\": \"lign\",\n  \"ligó\": \"lig\",\n  \"ligue\": \"lig\",\n  \"liguilla\": \"liguill\",\n  \"liliana\": \"lilian\",\n  \"lima\": \"lim\",\n  \"limar\": \"lim\",\n  \"limita\": \"limit\",\n  \"limitaba\": \"limit\",\n  \"limitaciones\": \"limit\",\n  \"limitado\": \"limit\",\n  \"limitados\": \"limit\",\n  \"limitan\": \"limit\",\n  \"limitar\": \"limit\",\n  \"limitará\": \"limit\",\n  \"limite\": \"limit\",\n  \"límite\": \"limit\",\n  \"limited\": \"limit\",\n  \"límites\": \"limit\",\n  \"limitó\": \"limit\",\n  \"limítrofes\": \"limitrof\",\n  \"limits\": \"limits\",\n  \"limón\": \"limon\",\n  \"limonada\": \"limon\",\n  \"limosine\": \"limosin\",\n  \"limosna\": \"limosn\",\n  \"limosnita\": \"limosnit\",\n  \"limpia\": \"limpi\",\n  \"limpiamente\": \"limpi\",\n  \"limpiando\": \"limpi\",\n  \"limpiaparabrisas\": \"limpiaparabris\",\n  \"limpiar\": \"limpi\",\n  \"limpiaron\": \"limpi\",\n  \"limpias\": \"limpi\",\n  \"limpieza\": \"limpiez\",\n  \"limpio\": \"limpi\",\n  \"lina\": \"lin\",\n  \"linares\": \"linar\",\n  \"linces\": \"linc\",\n  \"linchar\": \"linch\",\n  \"lincoln\": \"lincoln\",\n  \"linda\": \"lind\",\n  \"linduras\": \"lindur\",\n  \"line\": \"lin\",\n  \"linea\": \"line\",\n  \"línea\": \"line\",\n  \"lineal\": \"lineal\",\n  \"lineamiento\": \"lineamient\",\n  \"lineamientos\": \"lineamient\",\n  \"líneas\": \"lin\",\n  \"lineker\": \"linek\",\n  \"liner\": \"lin\",\n  \"ling\": \"ling\",\n  \"lingada\": \"ling\",\n  \"linterna\": \"lintern\",\n  \"líos\": \"lios\",\n  \"liquidación\": \"liquid\",\n  \"liquidaciones\": \"liquid\",\n  \"liquidar\": \"liquid\",\n  \"liquidará\": \"liquid\",\n  \"liquidez\": \"liquidez\",\n  \"liquido\": \"liqu\",\n  \"líquido\": \"liqu\",\n  \"líquidos\": \"liqu\",\n  \"lira\": \"lir\",\n  \"lisa\": \"lis\",\n  \"lista\": \"list\",\n  \"listado\": \"list\",\n  \"listados\": \"list\",\n  \"listas\": \"list\",\n  \"listo\": \"list\",\n  \"listón\": \"liston\",\n  \"listos\": \"list\",\n  \"literalmente\": \"literal\",\n  \"literaria\": \"literari\",\n  \"literarias\": \"literari\",\n  \"literarios\": \"literari\",\n  \"literatos\": \"literat\",\n  \"literatura\": \"literatur\",\n  \"litigios\": \"litigi\",\n  \"litoral\": \"litoral\",\n  \"litorales\": \"litoral\",\n  \"litro\": \"litr\",\n  \"litros\": \"litr\",\n  \"livas\": \"liv\",\n  \"liverpool\": \"liverpool\",\n  \"livestock\": \"livestock\",\n  \"liviano\": \"livian\",\n  \"llaguno\": \"llagun\",\n  \"llama\": \"llam\",\n  \"llamaba\": \"llam\",\n  \"llamaban\": \"llam\",\n  \"llamada\": \"llam\",\n  \"llamadas\": \"llam\",\n  \"llamado\": \"llam\",\n  \"llamados\": \"llam\",\n  \"llamáis\": \"llam\",\n  \"llamamiento\": \"llamamient\",\n  \"llamamos\": \"llam\",\n  \"llaman\": \"llam\",\n  \"llamando\": \"llam\",\n  \"llamar\": \"llam\",\n  \"llamara\": \"llam\",\n  \"llamará\": \"llam\",\n  \"llamaría\": \"llam\",\n  \"llamarían\": \"llam\",\n  \"llamarlo\": \"llam\",\n  \"llamarnos\": \"llam\",\n  \"llamaron\": \"llam\",\n  \"llamarse\": \"llam\",\n  \"llamas\": \"llam\",\n  \"llamativa\": \"llamat\",\n  \"llamativas\": \"llamat\",\n  \"llamativos\": \"llamat\",\n  \"llame\": \"llam\",\n  \"llamen\": \"llam\",\n  \"llamo\": \"llam\",\n  \"llamó\": \"llam\",\n  \"llanamente\": \"llan\",\n  \"llanas\": \"llan\",\n  \"llanes\": \"llan\",\n  \"llano\": \"llan\",\n  \"llanos\": \"llan\",\n  \"llanta\": \"llant\",\n  \"llantas\": \"llant\",\n  \"llanto\": \"llant\",\n  \"llave\": \"llav\",\n  \"llaveros\": \"llaver\",\n  \"llaves\": \"llav\",\n  \"lle\": \"lle\",\n  \"llega\": \"lleg\",\n  \"llegaba\": \"lleg\",\n  \"llegaban\": \"lleg\",\n  \"llegada\": \"lleg\",\n  \"llegadas\": \"lleg\",\n  \"llegado\": \"lleg\",\n  \"llegados\": \"lleg\",\n  \"llegamos\": \"lleg\",\n  \"llegan\": \"lleg\",\n  \"llegando\": \"lleg\",\n  \"llegar\": \"lleg\",\n  \"llegara\": \"lleg\",\n  \"llegará\": \"lleg\",\n  \"llegaran\": \"lleg\",\n  \"llegarán\": \"lleg\",\n  \"llegaré\": \"lleg\",\n  \"llegaremos\": \"lleg\",\n  \"llegaría\": \"lleg\",\n  \"llegarían\": \"lleg\",\n  \"llegaron\": \"lleg\",\n  \"llegarse\": \"lleg\",\n  \"llegas\": \"lleg\",\n  \"llego\": \"lleg\",\n  \"llegó\": \"lleg\",\n  \"llegue\": \"lleg\",\n  \"lleguemos\": \"lleg\",\n  \"lleguen\": \"lleg\",\n  \"llena\": \"llen\",\n  \"llenado\": \"llen\",\n  \"llenan\": \"llen\",\n  \"llenando\": \"llen\",\n  \"llenar\": \"llen\",\n  \"llenará\": \"llen\",\n  \"llenarla\": \"llen\",\n  \"llenarlas\": \"llen\",\n  \"llenaron\": \"llen\",\n  \"llenarse\": \"llen\",\n  \"llenas\": \"llen\",\n  \"lleno\": \"llen\",\n  \"llenó\": \"llen\",\n  \"llenos\": \"llen\",\n  \"llergo\": \"llerg\",\n  \"lleva\": \"llev\",\n  \"llevaba\": \"llev\",\n  \"llevaban\": \"llev\",\n  \"llevada\": \"llev\",\n  \"llevadas\": \"llev\",\n  \"llevado\": \"llev\",\n  \"llevados\": \"llev\",\n  \"llevamos\": \"llev\",\n  \"llevan\": \"llev\",\n  \"llevando\": \"llev\",\n  \"llevándolos\": \"llev\",\n  \"llevándose\": \"llev\",\n  \"llevar\": \"llev\",\n  \"llevara\": \"llev\",\n  \"llevará\": \"llev\",\n  \"llevaran\": \"llev\",\n  \"llevarán\": \"llev\",\n  \"llevaría\": \"llev\",\n  \"llevarían\": \"llev\",\n  \"llevarla\": \"llev\",\n  \"llevarlas\": \"llev\",\n  \"llevarle\": \"llev\",\n  \"llevarlo\": \"llev\",\n  \"llevarlos\": \"llev\",\n  \"llevaron\": \"llev\",\n  \"llevarse\": \"llev\",\n  \"llevárselo\": \"llev\",\n  \"llevas\": \"llev\",\n  \"llevase\": \"llev\",\n  \"lleve\": \"llev\",\n  \"llévelo\": \"llevel\",\n  \"lleven\": \"llev\",\n  \"llevo\": \"llev\",\n  \"llevó\": \"llev\",\n  \"llora\": \"llor\",\n  \"lloraba\": \"llor\",\n  \"lloran\": \"llor\",\n  \"llorando\": \"llor\",\n  \"llorar\": \"llor\",\n  \"lloraré\": \"llor\",\n  \"lloró\": \"llor\",\n  \"llorosa\": \"lloros\",\n  \"llosa\": \"llos\",\n  \"llover\": \"llov\",\n  \"lloviendo\": \"llov\",\n  \"llovió\": \"llov\",\n  \"llovizna\": \"llovizn\",\n  \"lloviznas\": \"llovizn\",\n  \"llueva\": \"lluev\",\n  \"llueve\": \"lluev\",\n  \"llueven\": \"lluev\",\n  \"lluvia\": \"lluvi\",\n  \"lluvias\": \"lluvi\",\n  \"lluvioso\": \"lluvios\",\n  \"lluviosos\": \"lluvios\",\n  \"lmkf\": \"lmkf\",\n  \"lo\": \"lo\",\n  \"loable\": \"loabl\",\n  \"loaeza\": \"loaez\",\n  \"lobeira\": \"lobeir\",\n  \"lobo\": \"lob\",\n  \"lobos\": \"lob\",\n  \"lóbulo\": \"lobul\",\n  \"loca\": \"loc\",\n  \"locación\": \"locacion\",\n  \"local\": \"local\",\n  \"locales\": \"local\",\n  \"localice\": \"localic\",\n  \"localidad\": \"local\",\n  \"localidades\": \"local\",\n  \"localiza\": \"localiz\",\n  \"localización\": \"localiz\",\n  \"localizada\": \"localiz\",\n  \"localizadas\": \"localiz\",\n  \"localizado\": \"localiz\",\n  \"localizados\": \"localiz\",\n  \"localizar\": \"localiz\",\n  \"localizará\": \"localiz\",\n  \"localizaron\": \"localiz\",\n  \"localizó\": \"localiz\",\n  \"localmente\": \"local\",\n  \"locka\": \"lock\",\n  \"loco\": \"loc\",\n  \"locos\": \"loc\",\n  \"locura\": \"locur\",\n  \"lodazal\": \"lodazal\",\n  \"lodo\": \"lod\",\n  \"lofton\": \"lofton\",\n  \"lógica\": \"logic\",\n  \"lógicamente\": \"logic\",\n  \"lógico\": \"logic\",\n  \"logo\": \"log\",\n  \"logotipo\": \"logotip\",\n  \"logra\": \"logr\",\n  \"lograba\": \"logr\",\n  \"lograban\": \"logr\",\n  \"lograda\": \"logr\",\n  \"logradas\": \"logr\",\n  \"logrado\": \"logr\",\n  \"logrados\": \"logr\",\n  \"logramos\": \"logr\",\n  \"logran\": \"logr\",\n  \"logrando\": \"logr\",\n  \"lograr\": \"logr\",\n  \"lograra\": \"logr\",\n  \"logrará\": \"logr\",\n  \"lograrán\": \"logr\",\n  \"lograremos\": \"logr\",\n  \"lograrlo\": \"logr\",\n  \"lograron\": \"logr\",\n  \"lograrse\": \"logr\",\n  \"logre\": \"logr\",\n  \"logré\": \"logr\",\n  \"logren\": \"logr\",\n  \"logro\": \"logr\",\n  \"logró\": \"logr\",\n  \"logronés\": \"logrones\",\n  \"logroñés\": \"logroñes\",\n  \"logros\": \"logr\",\n  \"lolita\": \"lolit\",\n  \"loma\": \"lom\",\n  \"lomas\": \"lom\",\n  \"lombardo\": \"lombard\",\n  \"lomelí\": \"lomel\",\n  \"lomos\": \"lom\",\n  \"lona\": \"lon\",\n  \"lonche\": \"lonch\",\n  \"lonches\": \"lonch\",\n  \"londinense\": \"londinens\",\n  \"londres\": \"londr\",\n  \"longevo\": \"longev\",\n  \"longitud\": \"longitud\",\n  \"longoria\": \"longori\",\n  \"lope\": \"lop\",\n  \"lopez\": \"lopez\",\n  \"lópez\": \"lopez\",\n  \"lópezfigueroa\": \"lopezfiguero\",\n  \"lopezportillista\": \"lopezportill\",\n  \"loredo\": \"lored\",\n  \"lorena\": \"loren\",\n  \"lorenzo\": \"lorenz\",\n  \"loreto\": \"loret\",\n  \"los\": \"los\",\n  \"losada\": \"los\",\n  \"lote\": \"lot\",\n  \"lotería\": \"lot\",\n  \"lotes\": \"lot\",\n  \"lotus\": \"lotus\",\n  \"louis\": \"louis\",\n  \"louisiana\": \"louisian\",\n  \"lourdes\": \"lourd\",\n  \"lover\": \"lov\",\n  \"loya\": \"loy\",\n  \"loyola\": \"loyol\",\n  \"lozano\": \"lozan\",\n  \"lsqb\": \"lsqb\",\n  \"ltd\": \"ltd\",\n  \"lubricación\": \"lubric\",\n  \"lucas\": \"luc\",\n  \"luce\": \"luc\",\n  \"lucen\": \"luc\",\n  \"lucero\": \"lucer\",\n  \"luces\": \"luc\",\n  \"lucha\": \"luch\",\n  \"luchaba\": \"luch\",\n  \"luchado\": \"luch\",\n  \"luchador\": \"luchador\",\n  \"luchadores\": \"luchador\",\n  \"luchando\": \"luch\",\n  \"luchar\": \"luch\",\n  \"luchará\": \"luch\",\n  \"lucharon\": \"luch\",\n  \"luchas\": \"luch\",\n  \"lucho\": \"luch\",\n  \"luchó\": \"luch\",\n  \"lucía\": \"luc\",\n  \"luciano\": \"lucian\",\n  \"lúcidamente\": \"lucid\",\n  \"lucido\": \"luc\",\n  \"luciendo\": \"luc\",\n  \"lucieron\": \"luc\",\n  \"lucila\": \"lucil\",\n  \"lucimiento\": \"lucimient\",\n  \"lucio\": \"luci\",\n  \"lució\": \"luc\",\n  \"lucir\": \"luc\",\n  \"lucrar\": \"lucr\",\n  \"lucro\": \"lucr\",\n  \"luctuosas\": \"luctu\",\n  \"lúdica\": \"ludic\",\n  \"lúdicos\": \"ludic\",\n  \"ludmila\": \"ludmil\",\n  \"luego\": \"lueg\",\n  \"lueguito\": \"lueguit\",\n  \"luévano\": \"luevan\",\n  \"lugar\": \"lug\",\n  \"lugares\": \"lugar\",\n  \"lugo\": \"lug\",\n  \"luis\": \"luis\",\n  \"luisa\": \"luis\",\n  \"luiz\": \"luiz\",\n  \"lujo\": \"luj\",\n  \"lujos\": \"luj\",\n  \"lujoso\": \"lujos\",\n  \"lumbreras\": \"lumbrer\",\n  \"luminosas\": \"lumin\",\n  \"luminosidad\": \"lumin\",\n  \"luminoso\": \"lumin\",\n  \"luminotécnicos\": \"luminotecn\",\n  \"luna\": \"lun\",\n  \"lunar\": \"lun\",\n  \"lunáticos\": \"lunat\",\n  \"lunes\": \"lun\",\n  \"luneta\": \"lunet\",\n  \"lupe\": \"lup\",\n  \"lupercio\": \"luperci\",\n  \"lupita\": \"lupit\",\n  \"lúpulo\": \"lupul\",\n  \"lusinchi\": \"lusinchi\",\n  \"lutero\": \"luter\",\n  \"luto\": \"lut\",\n  \"luviano\": \"luvian\",\n  \"luxemburgo\": \"luxemburg\",\n  \"luz\": \"luz\",\n  \"luzcan\": \"luzc\",\n  \"luzón\": \"luzon\",\n  \"lwdvig\": \"lwdvig\",\n  \"lydia\": \"lydi\",\n  \"lynch\": \"lynch\",\n  \"lyon\": \"lyon\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"mac\": \"mac\",\n  \"macabro\": \"macabr\",\n  \"macartismo\": \"macart\",\n  \"macedonia\": \"macedoni\",\n  \"macedonio\": \"macedoni\",\n  \"machado\": \"mach\",\n  \"machetero\": \"macheter\",\n  \"machiria\": \"machiri\",\n  \"machismo\": \"machism\",\n  \"machista\": \"machist\",\n  \"macho\": \"mach\",\n  \"machuca\": \"machuc\",\n  \"macías\": \"mac\",\n  \"macintosh\": \"macintosh\",\n  \"macizo\": \"maciz\",\n  \"macotela\": \"macotel\",\n  \"macroeconómica\": \"macroeconom\",\n  \"macroeconómicas\": \"macroeconom\",\n  \"macroplaza\": \"macroplaz\",\n  \"macrópolis\": \"macropolis\",\n  \"macumba\": \"macumb\",\n  \"madamme\": \"madamm\",\n  \"madariaga\": \"madariag\",\n  \"madeja\": \"madej\",\n  \"mademoiselle\": \"mademoisell\",\n  \"madera\": \"mader\",\n  \"maderámenes\": \"maderamen\",\n  \"maderas\": \"mader\",\n  \"madero\": \"mader\",\n  \"madrazo\": \"madraz\",\n  \"madre\": \"madr\",\n  \"madres\": \"madr\",\n  \"madrid\": \"madr\",\n  \"madrigal\": \"madrigal\",\n  \"madril\": \"madril\",\n  \"madrileñas\": \"madrileñ\",\n  \"madrileño\": \"madrileñ\",\n  \"madrileños\": \"madrileñ\",\n  \"madrina\": \"madrin\",\n  \"madrinas\": \"madrin\",\n  \"madrugada\": \"madrug\",\n  \"madura\": \"madur\",\n  \"maduración\": \"madur\",\n  \"madurar\": \"madur\",\n  \"madure\": \"madur\",\n  \"madurez\": \"madurez\",\n  \"maduro\": \"madur\",\n  \"maduros\": \"madur\",\n  \"maestra\": \"maestr\",\n  \"maestras\": \"maestr\",\n  \"maestría\": \"maestr\",\n  \"maestrías\": \"maestr\",\n  \"maestro\": \"maestr\",\n  \"maestros\": \"maestr\",\n  \"mafia\": \"mafi\",\n  \"mafiosos\": \"mafios\",\n  \"magala\": \"magal\",\n  \"magaña\": \"magañ\",\n  \"magdalena\": \"magdalen\",\n  \"magia\": \"magi\",\n  \"magic\": \"magic\",\n  \"mágica\": \"magic\",\n  \"mágicas\": \"magic\",\n  \"mágico\": \"magic\",\n  \"magisterial\": \"magisterial\",\n  \"magisteriales\": \"magisterial\",\n  \"magisterio\": \"magisteri\",\n  \"magistrado\": \"magistr\",\n  \"magistrados\": \"magistr\",\n  \"magistral\": \"magistral\",\n  \"magistrales\": \"magistral\",\n  \"magistralmente\": \"magistral\",\n  \"magma\": \"magm\",\n  \"magna\": \"magn\",\n  \"magnesia\": \"magnesi\",\n  \"magnética\": \"magnet\",\n  \"magnéticamente\": \"magnet\",\n  \"magnéticas\": \"magnet\",\n  \"magnéticos\": \"magnet\",\n  \"magneto\": \"magnet\",\n  \"magnetómetro\": \"magnetometr\",\n  \"magnífica\": \"magnif\",\n  \"magníficas\": \"magnif\",\n  \"magnificencia\": \"magnificent\",\n  \"magnífico\": \"magnif\",\n  \"magníficos\": \"magnif\",\n  \"magnitud\": \"magnitud\",\n  \"magno\": \"magn\",\n  \"magnolia\": \"magnoli\",\n  \"magnum\": \"magnum\",\n  \"magotteaux\": \"magotteaux\",\n  \"mague\": \"mag\",\n  \"mahoney\": \"mahoney\",\n  \"mahony\": \"mahony\",\n  \"maiz\": \"maiz\",\n  \"maíz\": \"maiz\",\n  \"majadería\": \"majad\",\n  \"majadero\": \"majader\",\n  \"majdel\": \"majdel\",\n  \"majestad\": \"majest\",\n  \"majestuosas\": \"majestu\",\n  \"majestuosidad\": \"majestu\",\n  \"majestuoso\": \"majestu\",\n  \"maksim\": \"maksim\",\n  \"mal\": \"mal\",\n  \"mala\": \"mal\",\n  \"malagón\": \"malagon\",\n  \"malas\": \"mal\",\n  \"malcolm\": \"malcolm\",\n  \"malcriada\": \"malcri\",\n  \"maldad\": \"mald\",\n  \"maldades\": \"maldad\",\n  \"maldición\": \"maldicion\",\n  \"maldiciones\": \"maldicion\",\n  \"maldito\": \"maldit\",\n  \"maldonado\": \"maldon\",\n  \"maleantes\": \"maleant\",\n  \"males\": \"mal\",\n  \"maletas\": \"malet\",\n  \"malicia\": \"malici\",\n  \"maligna\": \"malign\",\n  \"malignas\": \"malign\",\n  \"malignidad\": \"malign\",\n  \"maligno\": \"malign\",\n  \"malinche\": \"malinch\",\n  \"malinchista\": \"malinch\",\n  \"malintencionada\": \"malintencion\",\n  \"malla\": \"mall\",\n  \"mallas\": \"mall\",\n  \"malo\": \"mal\",\n  \"malograrlas\": \"malogr\",\n  \"malos\": \"mal\",\n  \"malta\": \"malt\",\n  \"maltratado\": \"maltrat\",\n  \"maltratados\": \"maltrat\",\n  \"maltrato\": \"maltrat\",\n  \"maltrecha\": \"maltrech\",\n  \"malva\": \"malv\",\n  \"malvada\": \"malv\",\n  \"malvavisco\": \"malvavisc\",\n  \"malversación\": \"malvers\",\n  \"malversaciones\": \"malvers\",\n  \"malvivientes\": \"malvivient\",\n  \"mamá\": \"mam\",\n  \"mamás\": \"mamas\",\n  \"mamíferos\": \"mamifer\",\n  \"mamilas\": \"mamil\",\n  \"mamparas\": \"mamp\",\n  \"maña\": \"mañ\",\n  \"maná\": \"man\",\n  \"management\": \"management\",\n  \"mánager\": \"manag\",\n  \"managers\": \"managers\",\n  \"mañana\": \"mañan\",\n  \"mañanas\": \"mañan\",\n  \"manazos\": \"manaz\",\n  \"mancha\": \"manch\",\n  \"manchada\": \"manch\",\n  \"manchar\": \"manch\",\n  \"manchas\": \"manch\",\n  \"mancillados\": \"mancill\",\n  \"mancomunada\": \"mancomun\",\n  \"mancuso\": \"mancus\",\n  \"manda\": \"mand\",\n  \"mandadas\": \"mand\",\n  \"mandado\": \"mand\",\n  \"mandamiento\": \"mandamient\",\n  \"mandamientos\": \"mandamient\",\n  \"mandamos\": \"mand\",\n  \"mandan\": \"mand\",\n  \"mandar\": \"mand\",\n  \"mandará\": \"mand\",\n  \"mandaríamos\": \"mand\",\n  \"mandarinas\": \"mandarin\",\n  \"mandarlas\": \"mand\",\n  \"mandarlo\": \"mand\",\n  \"mandaron\": \"mand\",\n  \"mandatario\": \"mandatari\",\n  \"mandatarios\": \"mandatari\",\n  \"mandato\": \"mandat\",\n  \"mandatos\": \"mandat\",\n  \"manden\": \"mand\",\n  \"mandíbula\": \"mandibul\",\n  \"mandíbulas\": \"mandibul\",\n  \"mandilones\": \"mandilon\",\n  \"mando\": \"mand\",\n  \"mandó\": \"mand\",\n  \"mandos\": \"mand\",\n  \"mandril\": \"mandril\",\n  \"maneja\": \"manej\",\n  \"manejaba\": \"manej\",\n  \"manejable\": \"manej\",\n  \"manejada\": \"manej\",\n  \"manejadas\": \"manej\",\n  \"manejado\": \"manej\",\n  \"manejador\": \"manej\",\n  \"manejadores\": \"manej\",\n  \"manejados\": \"manej\",\n  \"manejamos\": \"manej\",\n  \"manejan\": \"manej\",\n  \"manejando\": \"manej\",\n  \"manejar\": \"manej\",\n  \"manejará\": \"manej\",\n  \"manejaron\": \"manej\",\n  \"manejarse\": \"manej\",\n  \"maneje\": \"manej\",\n  \"manejen\": \"manej\",\n  \"manejes\": \"manej\",\n  \"manejo\": \"manej\",\n  \"manejó\": \"manej\",\n  \"manejos\": \"manej\",\n  \"manente\": \"manent\",\n  \"manera\": \"maner\",\n  \"maneras\": \"maner\",\n  \"manga\": \"mang\",\n  \"manganas\": \"mangan\",\n  \"mangas\": \"mang\",\n  \"manglares\": \"manglar\",\n  \"manguera\": \"manguer\",\n  \"manhattan\": \"manhatt\",\n  \"manía\": \"man\",\n  \"maniatar\": \"maniat\",\n  \"manieristas\": \"manier\",\n  \"manifestaban\": \"manifest\",\n  \"manifestación\": \"manifest\",\n  \"manifestaciones\": \"manifest\",\n  \"manifestada\": \"manifest\",\n  \"manifestadas\": \"manifest\",\n  \"manifestado\": \"manifest\",\n  \"manifestantes\": \"manifest\",\n  \"manifestar\": \"manifest\",\n  \"manifestaran\": \"manifest\",\n  \"manifestaron\": \"manifest\",\n  \"manifestarse\": \"manifest\",\n  \"manifestó\": \"manifest\",\n  \"manifiesta\": \"manifiest\",\n  \"manifiesto\": \"manifiest\",\n  \"manifold\": \"manifold\",\n  \"manila\": \"manil\",\n  \"maniobra\": \"maniobr\",\n  \"maniobras\": \"maniobr\",\n  \"manipulación\": \"manipul\",\n  \"manipulado\": \"manipul\",\n  \"manipular\": \"manipul\",\n  \"manita\": \"manit\",\n  \"manjar\": \"manj\",\n  \"manjarrez\": \"manjarrez\",\n  \"manneck\": \"manneck\",\n  \"mano\": \"man\",\n  \"manolita\": \"manolit\",\n  \"manolo\": \"manol\",\n  \"manos\": \"man\",\n  \"mañosamente\": \"mañ\",\n  \"manotas\": \"manot\",\n  \"manrique\": \"manriqu\",\n  \"manríquez\": \"manriquez\",\n  \"mansedumbre\": \"mansedumbr\",\n  \"mansión\": \"mansion\",\n  \"mansiones\": \"mansion\",\n  \"manso\": \"mans\",\n  \"mansos\": \"mans\",\n  \"mansur\": \"mansur\",\n  \"mantas\": \"mant\",\n  \"mantendrá\": \"mantendr\",\n  \"mantenemos\": \"manten\",\n  \"mantener\": \"manten\",\n  \"mantenerlas\": \"manten\",\n  \"mantenerlo\": \"manten\",\n  \"mantenerlos\": \"manten\",\n  \"mantenerme\": \"manten\",\n  \"mantenernos\": \"manten\",\n  \"mantenerse\": \"manten\",\n  \"mantenga\": \"manteng\",\n  \"mantengan\": \"manteng\",\n  \"mantenía\": \"manten\",\n  \"mantenidas\": \"manten\",\n  \"mantenido\": \"manten\",\n  \"manteniendo\": \"manten\",\n  \"manteniéndose\": \"manten\",\n  \"mantenimiento\": \"manten\",\n  \"mantiene\": \"mantien\",\n  \"mantienen\": \"mantien\",\n  \"manto\": \"mant\",\n  \"mantuvieron\": \"mantuv\",\n  \"mantuvo\": \"mantuv\",\n  \"manu\": \"manu\",\n  \"manual\": \"manual\",\n  \"manuales\": \"manual\",\n  \"manualidades\": \"manual\",\n  \"manuel\": \"manuel\",\n  \"manufactura\": \"manufactur\",\n  \"manufacturar\": \"manufactur\",\n  \"manufacturera\": \"manufacturer\",\n  \"manufactureros\": \"manufacturer\",\n  \"many\": \"many\",\n  \"manzana\": \"manzan\",\n  \"manzanas\": \"manzan\",\n  \"manzanillo\": \"manzanill\",\n  \"maoísta\": \"maoist\",\n  \"maoístas\": \"maoist\",\n  \"mapa\": \"map\",\n  \"mapas\": \"map\",\n  \"mapinfo\": \"mapinf\",\n  \"maqueta\": \"maquet\",\n  \"maquilada\": \"maquil\",\n  \"maquilador\": \"maquil\",\n  \"maquiladora\": \"maquil\",\n  \"maquiladoras\": \"maquil\",\n  \"maquilados\": \"maquil\",\n  \"maquilas\": \"maquil\",\n  \"maquillado\": \"maquill\",\n  \"maquillaje\": \"maquillaj\",\n  \"maquillarlas\": \"maquill\",\n  \"máquina\": \"maquin\",\n  \"maquinaria\": \"maquinari\",\n  \"maquinas\": \"maquin\",\n  \"máquinas\": \"maquin\",\n  \"maquinista\": \"maquin\",\n  \"mar\": \"mar\",\n  \"mara\": \"mar\",\n  \"maradona\": \"maradon\",\n  \"maraldo\": \"marald\",\n  \"marasmo\": \"marasm\",\n  \"maratón\": \"maraton\",\n  \"maravilla\": \"maravill\",\n  \"maravillando\": \"maravill\",\n  \"maravillosa\": \"maravill\",\n  \"maravillosamente\": \"maravill\",\n  \"maravillosas\": \"maravill\",\n  \"maravillosos\": \"maravill\",\n  \"marc\": \"marc\",\n  \"marca\": \"marc\",\n  \"marcaba\": \"marc\",\n  \"marcación\": \"marcacion\",\n  \"marcada\": \"marc\",\n  \"marcadas\": \"marc\",\n  \"marcado\": \"marc\",\n  \"marcador\": \"marcador\",\n  \"marcadores\": \"marcador\",\n  \"marcan\": \"marc\",\n  \"marcando\": \"marc\",\n  \"marcar\": \"marc\",\n  \"marcará\": \"marc\",\n  \"marcaron\": \"marc\",\n  \"marcas\": \"marc\",\n  \"marcela\": \"marcel\",\n  \"marcelino\": \"marcelin\",\n  \"marcelo\": \"marcel\",\n  \"marcha\": \"march\",\n  \"marchado\": \"march\",\n  \"marchan\": \"march\",\n  \"marcharían\": \"march\",\n  \"marcharon\": \"march\",\n  \"marcharse\": \"march\",\n  \"marchas\": \"march\",\n  \"marche\": \"march\",\n  \"marchó\": \"march\",\n  \"marcial\": \"marcial\",\n  \"marciano\": \"marcian\",\n  \"marcio\": \"marci\",\n  \"marco\": \"marc\",\n  \"marcó\": \"marc\",\n  \"marcos\": \"marc\",\n  \"marcus\": \"marcus\",\n  \"marcusse\": \"marcuss\",\n  \"mareadas\": \"mar\",\n  \"maremoto\": \"maremot\",\n  \"mares\": \"mar\",\n  \"marfil\": \"marfil\",\n  \"marga\": \"marg\",\n  \"margáin\": \"margain\",\n  \"margaret\": \"margaret\",\n  \"margaretha\": \"margareth\",\n  \"margarita\": \"margarit\",\n  \"margen\": \"marg\",\n  \"márgen\": \"marg\",\n  \"margenes\": \"margen\",\n  \"margina\": \"margin\",\n  \"marginación\": \"margin\",\n  \"marginaciones\": \"margin\",\n  \"marginadas\": \"margin\",\n  \"marginados\": \"margin\",\n  \"marginal\": \"marginal\",\n  \"marginara\": \"margin\",\n  \"marginó\": \"margin\",\n  \"marguerite\": \"marguerit\",\n  \"margules\": \"margul\",\n  \"mari\": \"mari\",\n  \"maria\": \"mari\",\n  \"maría\": \"mar\",\n  \"mariachi\": \"mariachi\",\n  \"marian\": \"mari\",\n  \"mariana\": \"marian\",\n  \"marianas\": \"marian\",\n  \"mariani\": \"mariani\",\n  \"mariano\": \"marian\",\n  \"marianos\": \"marian\",\n  \"mariateguista\": \"mariategu\",\n  \"maribel\": \"maribel\",\n  \"maricela\": \"maricel\",\n  \"maridito\": \"maridit\",\n  \"marido\": \"mar\",\n  \"maridos\": \"mar\",\n  \"marie\": \"mari\",\n  \"mariela\": \"mariel\",\n  \"mariguana\": \"mariguan\",\n  \"marihuana\": \"marihuan\",\n  \"marijo\": \"marij\",\n  \"marilyn\": \"marilyn\",\n  \"marin\": \"marin\",\n  \"marín\": \"marin\",\n  \"marina\": \"marin\",\n  \"marinas\": \"marin\",\n  \"marinera\": \"mariner\",\n  \"marineros\": \"mariner\",\n  \"marino\": \"marin\",\n  \"marinos\": \"marin\",\n  \"mario\": \"mari\",\n  \"marion\": \"marion\",\n  \"marionetero\": \"marioneter\",\n  \"mariposas\": \"marip\",\n  \"mariscal\": \"mariscal\",\n  \"mariscales\": \"mariscal\",\n  \"marisma\": \"marism\",\n  \"marissa\": \"mariss\",\n  \"marita\": \"marit\",\n  \"marítima\": \"maritim\",\n  \"marítimo\": \"maritim\",\n  \"marketing\": \"marketing\",\n  \"marley\": \"marley\",\n  \"marlines\": \"marlin\",\n  \"marlon\": \"marlon\",\n  \"mármol\": \"marmol\",\n  \"marque\": \"marqu\",\n  \"marqués\": \"marques\",\n  \"marquesina\": \"marquesin\",\n  \"márquez\": \"marquez\",\n  \"marquis\": \"marquis\",\n  \"marranos\": \"marran\",\n  \"marsalis\": \"marsalis\",\n  \"marshal\": \"marshal\",\n  \"marshall\": \"marshall\",\n  \"mart\": \"mart\",\n  \"marte\": \"mart\",\n  \"martellotto\": \"martellott\",\n  \"martens\": \"martens\",\n  \"martes\": \"mart\",\n  \"martha\": \"marth\",\n  \"martí\": \"mart\",\n  \"martillo\": \"martill\",\n  \"martin\": \"martin\",\n  \"martín\": \"martin\",\n  \"martinez\": \"martinez\",\n  \"martínez\": \"martinez\",\n  \"martinica\": \"martin\",\n  \"martiniqués\": \"martiniques\",\n  \"mártires\": \"martir\",\n  \"martirio\": \"martiri\",\n  \"marv\": \"marv\",\n  \"marx\": \"marx\",\n  \"mary\": \"mary\",\n  \"maryland\": \"maryland\",\n  \"marzo\": \"marz\",\n  \"mas\": \"mas\",\n  \"más\": \"mas\",\n  \"masa\": \"mas\",\n  \"masaaki\": \"masaaki\",\n  \"masacre\": \"masacr\",\n  \"masakre\": \"masakr\",\n  \"masas\": \"mas\",\n  \"mascadas\": \"masc\",\n  \"máscara\": \"masc\",\n  \"máscaras\": \"masc\",\n  \"mascota\": \"mascot\",\n  \"mascotas\": \"mascot\",\n  \"masculina\": \"masculin\",\n  \"masculino\": \"masculin\",\n  \"masiva\": \"masiv\",\n  \"masivamente\": \"masiv\",\n  \"masivas\": \"masiv\",\n  \"masivo\": \"masiv\",\n  \"masivos\": \"masiv\",\n  \"masoquismo\": \"masoqu\",\n  \"mass\": \"mass\",\n  \"massa\": \"mass\",\n  \"massacessi\": \"massacessi\",\n  \"massachusetts\": \"massachusetts\",\n  \"massachussets\": \"massachussets\",\n  \"massachussetts\": \"massachussetts\",\n  \"massieu\": \"massieu\",\n  \"masso\": \"mass\",\n  \"masterd\": \"masterd\",\n  \"masturbación\": \"masturb\",\n  \"mata\": \"mat\",\n  \"matado\": \"mat\",\n  \"matador\": \"matador\",\n  \"matadores\": \"matador\",\n  \"matamoros\": \"matamor\",\n  \"matando\": \"mat\",\n  \"matanzas\": \"matanz\",\n  \"matar\": \"mat\",\n  \"mátar\": \"mat\",\n  \"mataran\": \"mat\",\n  \"mataría\": \"mat\",\n  \"matarla\": \"mat\",\n  \"matarlo\": \"mat\",\n  \"matarme\": \"mat\",\n  \"matarnos\": \"mat\",\n  \"mataron\": \"mat\",\n  \"matarse\": \"mat\",\n  \"mate\": \"mat\",\n  \"matemática\": \"matemat\",\n  \"matemáticas\": \"matemat\",\n  \"matemático\": \"matemat\",\n  \"maten\": \"mat\",\n  \"mateo\": \"mate\",\n  \"mateos\": \"mate\",\n  \"mater\": \"mat\",\n  \"materia\": \"materi\",\n  \"material\": \"material\",\n  \"materiales\": \"material\",\n  \"materializarse\": \"materializ\",\n  \"materias\": \"materi\",\n  \"materna\": \"matern\",\n  \"maternal\": \"maternal\",\n  \"maternidad\": \"matern\",\n  \"matías\": \"mat\",\n  \"matices\": \"matic\",\n  \"matilde\": \"matild\",\n  \"matineé\": \"matine\",\n  \"matizada\": \"matiz\",\n  \"mató\": \"mat\",\n  \"matorrales\": \"matorral\",\n  \"matos\": \"mat\",\n  \"matriarcado\": \"matriarc\",\n  \"matrices\": \"matric\",\n  \"matrícula\": \"matricul\",\n  \"matriculen\": \"matricul\",\n  \"matrimonial\": \"matrimonial\",\n  \"matrimoniales\": \"matrimonial\",\n  \"matrimonio\": \"matrimoni\",\n  \"matrimonios\": \"matrimoni\",\n  \"matrix\": \"matrix\",\n  \"matriz\": \"matriz\",\n  \"matt\": \"matt\",\n  \"matthew\": \"matthew\",\n  \"matutina\": \"matutin\",\n  \"matutino\": \"matutin\",\n  \"maurice\": \"mauric\",\n  \"mauricio\": \"maurici\",\n  \"mauro\": \"maur\",\n  \"max\": \"max\",\n  \"maxi\": \"maxi\",\n  \"máxima\": \"maxim\",\n  \"máxime\": \"maxim\",\n  \"maximiliano\": \"maximilian\",\n  \"máximo\": \"maxim\",\n  \"máximos\": \"max\",\n  \"maximova\": \"maximov\",\n  \"may\": \"may\",\n  \"mayas\": \"may\",\n  \"mayela\": \"mayel\",\n  \"mayito\": \"mayit\",\n  \"mayo\": \"may\",\n  \"mayón\": \"mayon\",\n  \"mayonesa\": \"mayones\",\n  \"mayor\": \"mayor\",\n  \"mayoreo\": \"mayore\",\n  \"mayores\": \"mayor\",\n  \"mayoría\": \"mayor\",\n  \"mayorista\": \"mayor\",\n  \"mayoristas\": \"mayor\",\n  \"mayoritaria\": \"mayoritari\",\n  \"mayoritario\": \"mayoritari\",\n  \"mayoritarios\": \"mayoritari\",\n  \"mayos\": \"may\",\n  \"mayrán\": \"mayran\",\n  \"mays\": \"mays\",\n  \"mayúscula\": \"mayuscul\",\n  \"mayúsculas\": \"mayuscul\",\n  \"mayúsculo\": \"mayuscul\",\n  \"mayweather\": \"mayweath\",\n  \"maza\": \"maz\",\n  \"mazatlan\": \"mazatl\",\n  \"mazatlán\": \"mazatlan\",\n  \"mazatleco\": \"mazatlec\",\n  \"mc\": \"mc\",\n  \"mcallen\": \"mcall\",\n  \"mccann\": \"mccann\",\n  \"mcdonalds\": \"mcdonalds\",\n  \"mcdowell\": \"mcdowell\",\n  \"mcenroe\": \"mcenro\",\n  \"mcgregor\": \"mcgregor\",\n  \"mckesson\": \"mckesson\",\n  \"mcleod\": \"mcleod\",\n  \"md\": \"md\",\n  \"me\": \"me\",\n  \"mea\": \"mea\",\n  \"meat\": \"meat\",\n  \"mecánica\": \"mecan\",\n  \"mecánico\": \"mecan\",\n  \"mecánicos\": \"mecan\",\n  \"mecanismo\": \"mecan\",\n  \"mecanismos\": \"mecan\",\n  \"mecenazgo\": \"mecenazg\",\n  \"medalla\": \"medall\",\n  \"medallas\": \"medall\",\n  \"medallista\": \"medall\",\n  \"medallón\": \"medallon\",\n  \"medellín\": \"medellin\",\n  \"media\": \"medi\",\n  \"mediación\": \"mediacion\",\n  \"mediadora\": \"mediador\",\n  \"mediados\": \"medi\",\n  \"mediahermana\": \"mediaherman\",\n  \"mediana\": \"median\",\n  \"medianas\": \"median\",\n  \"mediano\": \"median\",\n  \"medianoche\": \"medianoch\",\n  \"medianos\": \"median\",\n  \"mediante\": \"mediant\",\n  \"medias\": \"medi\",\n  \"mediata\": \"mediat\",\n  \"médica\": \"medic\",\n  \"medical\": \"medical\",\n  \"medicamentos\": \"medicament\",\n  \"médicas\": \"medic\",\n  \"medicina\": \"medicin\",\n  \"medicinales\": \"medicinal\",\n  \"medicinas\": \"medicin\",\n  \"medición\": \"medicion\",\n  \"mediciones\": \"medicion\",\n  \"médico\": \"medic\",\n  \"médicos\": \"medic\",\n  \"medida\": \"med\",\n  \"medidas\": \"med\",\n  \"medido\": \"med\",\n  \"medievales\": \"medieval\",\n  \"medina\": \"medin\",\n  \"medio\": \"medi\",\n  \"mediocampista\": \"mediocamp\",\n  \"mediocampistas\": \"mediocamp\",\n  \"mediocre\": \"mediocr\",\n  \"mediocres\": \"mediocr\",\n  \"mediocridad\": \"mediocr\",\n  \"mediodía\": \"mediod\",\n  \"mediohermano\": \"medioherman\",\n  \"medios\": \"medi\",\n  \"medir\": \"med\",\n  \"medirá\": \"med\",\n  \"medirán\": \"med\",\n  \"medirse\": \"med\",\n  \"meditación\": \"medit\",\n  \"meditado\": \"medit\",\n  \"medite\": \"medit\",\n  \"mediterránea\": \"mediterrane\",\n  \"mediterráneo\": \"mediterrane\",\n  \"medrano\": \"medran\",\n  \"medugorie\": \"medugori\",\n  \"médula\": \"medul\",\n  \"medusia\": \"medusi\",\n  \"mefistófeles\": \"mefistofel\",\n  \"megabits\": \"megabits\",\n  \"megabytes\": \"megabyt\",\n  \"megahertz\": \"megahertz\",\n  \"mejía\": \"mej\",\n  \"mejilla\": \"mejill\",\n  \"mejillas\": \"mejill\",\n  \"mejor\": \"mejor\",\n  \"mejora\": \"mejor\",\n  \"mejorada\": \"mejor\",\n  \"mejorado\": \"mejor\",\n  \"mejorados\": \"mejor\",\n  \"mejoramiento\": \"mejor\",\n  \"mejoran\": \"mejor\",\n  \"mejorando\": \"mejor\",\n  \"mejorar\": \"mejor\",\n  \"mejorará\": \"mejor\",\n  \"mejoraran\": \"mejor\",\n  \"mejorarle\": \"mejor\",\n  \"mejorarlos\": \"mejor\",\n  \"mejoras\": \"mejor\",\n  \"mejore\": \"mejor\",\n  \"mejores\": \"mejor\",\n  \"mejoría\": \"mejor\",\n  \"mejrar\": \"mejr\",\n  \"melanoma\": \"melanom\",\n  \"melchor\": \"melchor\",\n  \"melé\": \"mel\",\n  \"meléndez\": \"melendez\",\n  \"melgar\": \"melg\",\n  \"melian\": \"meli\",\n  \"melisa\": \"melis\",\n  \"mella\": \"mell\",\n  \"mellizos\": \"melliz\",\n  \"mello\": \"mell\",\n  \"melodía\": \"melod\",\n  \"melódica\": \"melod\",\n  \"melón\": \"melon\",\n  \"melquiades\": \"melquiad\",\n  \"membretado\": \"membret\",\n  \"membrete\": \"membret\",\n  \"memo\": \"mem\",\n  \"memorable\": \"memor\",\n  \"memorándum\": \"memorandum\",\n  \"memoria\": \"memori\",\n  \"memorias\": \"memori\",\n  \"memorizar\": \"memoriz\",\n  \"mena\": \"men\",\n  \"ménagier\": \"menagi\",\n  \"menchú\": \"menchu\",\n  \"mención\": \"mencion\",\n  \"menciona\": \"mencion\",\n  \"mencionada\": \"mencion\",\n  \"mencionadas\": \"mencion\",\n  \"mencionado\": \"mencion\",\n  \"mencionados\": \"mencion\",\n  \"mencionan\": \"mencion\",\n  \"mencionar\": \"mencion\",\n  \"mencionaré\": \"mencion\",\n  \"mencionaremos\": \"mencion\",\n  \"mencionaron\": \"mencion\",\n  \"mencione\": \"mencion\",\n  \"mencioné\": \"mencion\",\n  \"menciones\": \"mencion\",\n  \"mencionó\": \"mencion\",\n  \"méndez\": \"mendez\",\n  \"mendigo\": \"mendig\",\n  \"mendiomas\": \"mendiom\",\n  \"mendoza\": \"mendoz\",\n  \"menem\": \"menem\",\n  \"meneses\": \"menes\",\n  \"mengano\": \"mengan\",\n  \"menguadas\": \"mengu\",\n  \"meninges\": \"mening\",\n  \"meningitis\": \"meningitis\",\n  \"meningoencefalitis\": \"meningoencefalitis\",\n  \"menopausia\": \"menopausi\",\n  \"menopáusica\": \"menopaus\",\n  \"menor\": \"menor\",\n  \"menores\": \"menor\",\n  \"menos\": \"men\",\n  \"menosprecian\": \"menospreci\",\n  \"menospreciarnos\": \"menospreci\",\n  \"menotti\": \"menotti\",\n  \"mensaje\": \"mensaj\",\n  \"mensajería\": \"mensaj\",\n  \"mensajes\": \"mensaj\",\n  \"mensual\": \"mensual\",\n  \"mensuales\": \"mensual\",\n  \"mensualidades\": \"mensual\",\n  \"mensualmente\": \"mensual\",\n  \"menta\": \"ment\",\n  \"mental\": \"mental\",\n  \"mentales\": \"mental\",\n  \"mentalidad\": \"mental\",\n  \"mentalidades\": \"mental\",\n  \"mente\": \"ment\",\n  \"mentha\": \"menth\",\n  \"mentimos\": \"ment\",\n  \"mentir\": \"ment\",\n  \"mentiras\": \"mentir\",\n  \"mentirosas\": \"mentir\",\n  \"mentiroso\": \"mentir\",\n  \"mentor\": \"mentor\",\n  \"mentores\": \"mentor\",\n  \"menú\": \"menu\",\n  \"menudeo\": \"menude\",\n  \"menudo\": \"menud\",\n  \"mera\": \"mer\",\n  \"meramente\": \"mer\",\n  \"mercadear\": \"mercad\",\n  \"mercadeo\": \"mercade\",\n  \"mercader\": \"mercad\",\n  \"mercaderes\": \"mercader\",\n  \"mercado\": \"merc\",\n  \"mercados\": \"merc\",\n  \"mercadotecnia\": \"mercadotecni\",\n  \"mercadotencia\": \"mercadotent\",\n  \"mercancía\": \"mercanc\",\n  \"mercancías\": \"mercanc\",\n  \"mercante\": \"mercant\",\n  \"mercantes\": \"mercant\",\n  \"mercantil\": \"mercantil\",\n  \"mercantiles\": \"mercantil\",\n  \"mercantilista\": \"mercantil\",\n  \"mercedes\": \"merced\",\n  \"mercomún\": \"mercomun\",\n  \"mercosur\": \"mercosur\",\n  \"mercurio\": \"mercuri\",\n  \"merece\": \"merec\",\n  \"merecedor\": \"merecedor\",\n  \"merecedores\": \"merecedor\",\n  \"merecen\": \"merec\",\n  \"merecerlo\": \"merec\",\n  \"merecía\": \"merec\",\n  \"merecida\": \"merec\",\n  \"merecido\": \"merec\",\n  \"merecimientos\": \"merec\",\n  \"mereció\": \"merec\",\n  \"merengue\": \"mereng\",\n  \"merengues\": \"mereng\",\n  \"merezcan\": \"merezc\",\n  \"merge\": \"merg\",\n  \"mérida\": \"mer\",\n  \"mérito\": \"merit\",\n  \"meritorio\": \"meritori\",\n  \"méritos\": \"merit\",\n  \"merlene\": \"merlen\",\n  \"merlis\": \"merlis\",\n  \"merman\": \"merm\",\n  \"mermeladas\": \"mermel\",\n  \"mero\": \"mer\",\n  \"merrill\": \"merrill\",\n  \"mes\": \"mes\",\n  \"mesa\": \"mes\",\n  \"mesas\": \"mes\",\n  \"mese\": \"mes\",\n  \"meseros\": \"meser\",\n  \"meses\": \"mes\",\n  \"mesiánica\": \"mesian\",\n  \"mesilla\": \"mesill\",\n  \"mesoamericana\": \"mesoamerican\",\n  \"mesoamericanas\": \"mesoamerican\",\n  \"mesoamericano\": \"mesoamerican\",\n  \"mesoamericanos\": \"mesoamerican\",\n  \"mestre\": \"mestr\",\n  \"meta\": \"met\",\n  \"metabolismo\": \"metabol\",\n  \"metafísica\": \"metafis\",\n  \"metáfora\": \"metafor\",\n  \"metal\": \"metal\",\n  \"metalero\": \"metaler\",\n  \"metales\": \"metal\",\n  \"metálica\": \"metal\",\n  \"metálico\": \"metal\",\n  \"metálicos\": \"metal\",\n  \"metallica\": \"metall\",\n  \"metamucil\": \"metamucil\",\n  \"metan\": \"met\",\n  \"metano\": \"metan\",\n  \"metas\": \"met\",\n  \"metate\": \"metat\",\n  \"mete\": \"met\",\n  \"meten\": \"met\",\n  \"meteorito\": \"meteorit\",\n  \"meteorológica\": \"meteorolog\",\n  \"meteorológico\": \"meteorolog\",\n  \"meteorológicos\": \"meteorolog\",\n  \"meteoros\": \"meteor\",\n  \"meter\": \"met\",\n  \"meterle\": \"met\",\n  \"meterlo\": \"met\",\n  \"meternos\": \"met\",\n  \"meterse\": \"met\",\n  \"metí\": \"met\",\n  \"metían\": \"met\",\n  \"meticulosamente\": \"meticul\",\n  \"metido\": \"met\",\n  \"metidos\": \"met\",\n  \"metiendo\": \"met\",\n  \"metiera\": \"met\",\n  \"metió\": \"met\",\n  \"metodista\": \"metod\",\n  \"método\": \"metod\",\n  \"metodología\": \"metodolog\",\n  \"metodologías\": \"metodolog\",\n  \"métodos\": \"metod\",\n  \"metrallas\": \"metrall\",\n  \"metralleta\": \"metrallet\",\n  \"metralletas\": \"metrallet\",\n  \"métricas\": \"metric\",\n  \"metro\": \"metr\",\n  \"metrología\": \"metrolog\",\n  \"metrópoli\": \"metropoli\",\n  \"metropolitana\": \"metropolitan\",\n  \"metropolitano\": \"metropolitan\",\n  \"metropolitanos\": \"metropolitan\",\n  \"metrorrey\": \"metrorrey\",\n  \"metros\": \"metr\",\n  \"metternich\": \"metternich\",\n  \"metzelaars\": \"metzelaars\",\n  \"mexica\": \"mexic\",\n  \"mexicali\": \"mexicali\",\n  \"mexican\": \"mexic\",\n  \"mexicana\": \"mexican\",\n  \"mexicanas\": \"mexican\",\n  \"mexicanidad\": \"mexican\",\n  \"mexicanismo\": \"mexican\",\n  \"mexicano\": \"mexican\",\n  \"mexicanos\": \"mexican\",\n  \"mexicas\": \"mexic\",\n  \"mexicayótl\": \"mexicayotl\",\n  \"mexico\": \"mexic\",\n  \"méxico\": \"mexic\",\n  \"méxicoestadounidense\": \"mexicoestadounidens\",\n  \"méxiconorteamericanos\": \"mexiconorteamerican\",\n  \"mexinox\": \"mexinox\",\n  \"mexiquense\": \"mexiquens\",\n  \"meyer\": \"mey\",\n  \"meza\": \"mez\",\n  \"mezcal\": \"mezcal\",\n  \"mezcla\": \"mezcl\",\n  \"mezclada\": \"mezcl\",\n  \"mezcladas\": \"mezcl\",\n  \"mezclado\": \"mezcl\",\n  \"mezclar\": \"mezcl\",\n  \"mezclilla\": \"mezclill\",\n  \"mezclo\": \"mezcl\",\n  \"mezquinas\": \"mezquin\",\n  \"mezquino\": \"mezquin\",\n  \"mezquinos\": \"mezquin\",\n  \"mezquital\": \"mezquital\",\n  \"mg\": \"mg\",\n  \"mi\": \"mi\",\n  \"mí\": \"mi\",\n  \"mia\": \"mia\",\n  \"miami\": \"miami\",\n  \"mich\": \"mich\",\n  \"michael\": \"michael\",\n  \"michel\": \"michel\",\n  \"michelle\": \"michell\",\n  \"michoacán\": \"michoacan\",\n  \"michoacanazo\": \"michoacanaz\",\n  \"michoacano\": \"michoacan\",\n  \"michoacanos\": \"michoacan\",\n  \"mickey\": \"mickey\",\n  \"mico\": \"mic\",\n  \"micosis\": \"micosis\",\n  \"micro\": \"micr\",\n  \"microbus\": \"microbus\",\n  \"microbús\": \"microbus\",\n  \"microbuses\": \"microbus\",\n  \"microcomputadoras\": \"microcomput\",\n  \"microelectronics\": \"microelectronics\",\n  \"microempresa\": \"microempres\",\n  \"microempresario\": \"microempresari\",\n  \"microempresarios\": \"microempresari\",\n  \"microempresas\": \"microempres\",\n  \"micrófono\": \"microfon\",\n  \"microindustriales\": \"microindustrial\",\n  \"microprocesador\": \"microproces\",\n  \"micros\": \"micr\",\n  \"microsoft\": \"microsoft\",\n  \"microsystems\": \"microsystems\",\n  \"middletown\": \"middletown\",\n  \"mide\": \"mid\",\n  \"midieron\": \"mid\",\n  \"midió\": \"mid\",\n  \"mie\": \"mie\",\n  \"miedo\": \"mied\",\n  \"miedos\": \"mied\",\n  \"miel\": \"miel\",\n  \"mielenización\": \"mieleniz\",\n  \"miembro\": \"miembr\",\n  \"miembros\": \"miembr\",\n  \"mientan\": \"mient\",\n  \"miente\": \"mient\",\n  \"mientras\": \"mientr\",\n  \"mier\": \"mier\",\n  \"miercoles\": \"miercol\",\n  \"miércoles\": \"miercol\",\n  \"migajas\": \"migaj\",\n  \"migdalia\": \"migdali\",\n  \"mignón\": \"mignon\",\n  \"migración\": \"migracion\",\n  \"migraciones\": \"migracion\",\n  \"migrante\": \"migrant\",\n  \"miguel\": \"miguel\",\n  \"miguelito\": \"miguelit\",\n  \"mijail\": \"mijail\",\n  \"mijares\": \"mijar\",\n  \"mike\": \"mik\",\n  \"mil\": \"mil\",\n  \"milagro\": \"milagr\",\n  \"milagros\": \"milagr\",\n  \"milagrosos\": \"milagr\",\n  \"milan\": \"mil\",\n  \"milán\": \"milan\",\n  \"milanés\": \"milanes\",\n  \"mildred\": \"mildr\",\n  \"mile\": \"mil\",\n  \"milenios\": \"mileni\",\n  \"miles\": \"mil\",\n  \"milésimas\": \"milesim\",\n  \"mililitros\": \"mililitr\",\n  \"milímetros\": \"milimetr\",\n  \"milita\": \"milit\",\n  \"militan\": \"milit\",\n  \"militancia\": \"milit\",\n  \"militante\": \"milit\",\n  \"militantes\": \"milit\",\n  \"militar\": \"milit\",\n  \"militares\": \"militar\",\n  \"militarización\": \"militariz\",\n  \"militarizada\": \"militariz\",\n  \"milla\": \"mill\",\n  \"millar\": \"mill\",\n  \"millares\": \"millar\",\n  \"millas\": \"mill\",\n  \"miller\": \"mill\",\n  \"milli\": \"milli\",\n  \"millón\": \"millon\",\n  \"millonarias\": \"millonari\",\n  \"millonario\": \"millonari\",\n  \"millonarios\": \"millonari\",\n  \"millones\": \"millon\",\n  \"milmo\": \"milm\",\n  \"milton\": \"milton\",\n  \"mima\": \"mim\",\n  \"mimi\": \"mimi\",\n  \"mimí\": \"mim\",\n  \"mimiahuápam\": \"mimiahuapam\",\n  \"mímica\": \"mimic\",\n  \"min\": \"min\",\n  \"mina\": \"min\",\n  \"mindes\": \"mind\",\n  \"minera\": \"miner\",\n  \"mineral\": \"mineral\",\n  \"minerales\": \"mineral\",\n  \"mineros\": \"miner\",\n  \"minerva\": \"minerv\",\n  \"minesota\": \"minesot\",\n  \"mini\": \"mini\",\n  \"minibuses\": \"minibus\",\n  \"minicomputadoras\": \"minicomput\",\n  \"minicumbre\": \"minicumbr\",\n  \"minilab\": \"minilab\",\n  \"minima\": \"minim\",\n  \"mínima\": \"minim\",\n  \"mínimas\": \"minim\",\n  \"minimizando\": \"minimiz\",\n  \"minimizar\": \"minimiz\",\n  \"mínimo\": \"minim\",\n  \"mínimos\": \"min\",\n  \"ministerial\": \"ministerial\",\n  \"ministerio\": \"ministeri\",\n  \"ministro\": \"ministr\",\n  \"ministros\": \"ministr\",\n  \"minisubmarinos\": \"minisubmarin\",\n  \"minivolei\": \"minivolei\",\n  \"minivoleibol\": \"minivoleibol\",\n  \"minnesota\": \"minnesot\",\n  \"minor\": \"minor\",\n  \"minorías\": \"minor\",\n  \"minoristas\": \"minor\",\n  \"minoritaria\": \"minoritari\",\n  \"minoritarios\": \"minoritari\",\n  \"mintió\": \"mint\",\n  \"minton\": \"minton\",\n  \"mintonette\": \"mintonett\",\n  \"minuciosa\": \"minuci\",\n  \"minúsculos\": \"minuscul\",\n  \"minusvalía\": \"minusval\",\n  \"minusválidos\": \"minusval\",\n  \"minuta\": \"minut\",\n  \"minuto\": \"minut\",\n  \"minutos\": \"minut\",\n  \"mío\": \"mio\",\n  \"miocardio\": \"miocardi\",\n  \"miopía\": \"miop\",\n  \"míos\": \"mios\",\n  \"mira\": \"mir\",\n  \"miraba\": \"mir\",\n  \"mirada\": \"mir\",\n  \"miradita\": \"miradit\",\n  \"mirador\": \"mirador\",\n  \"miragoane\": \"miragoan\",\n  \"mírale\": \"miral\",\n  \"miramón\": \"miramon\",\n  \"miramontes\": \"miramont\",\n  \"miranda\": \"mirand\",\n  \"mirando\": \"mir\",\n  \"mirar\": \"mir\",\n  \"miras\": \"mir\",\n  \"miravalle\": \"miravall\",\n  \"mire\": \"mir\",\n  \"miré\": \"mir\",\n  \"mireles\": \"mirel\",\n  \"miren\": \"mir\",\n  \"mireya\": \"mirey\",\n  \"miriam\": \"miriam\",\n  \"mirielle\": \"miriell\",\n  \"miró\": \"mir\",\n  \"miroslava\": \"miroslav\",\n  \"mirren\": \"mirr\",\n  \"mis\": \"mis\",\n  \"misa\": \"mis\",\n  \"misas\": \"mis\",\n  \"miscelanea\": \"miscelane\",\n  \"miserables\": \"miser\",\n  \"miseria\": \"miseri\",\n  \"misericordiosos\": \"misericordi\",\n  \"mishima\": \"mishim\",\n  \"misión\": \"mision\",\n  \"misionero\": \"misioner\",\n  \"misiones\": \"mision\",\n  \"misma\": \"mism\",\n  \"mismas\": \"mism\",\n  \"mismo\": \"mism\",\n  \"mismos\": \"mism\",\n  \"miss\": \"miss\",\n  \"missael\": \"missael\",\n  \"missisipi\": \"missisipi\",\n  \"mississippi\": \"mississippi\",\n  \"missouri\": \"missouri\",\n  \"misterio\": \"misteri\",\n  \"misterios\": \"misteri\",\n  \"misteriosa\": \"misteri\",\n  \"misterioso\": \"misteri\",\n  \"místico\": \"mistic\",\n  \"mit\": \"mit\",\n  \"mitad\": \"mit\",\n  \"mitades\": \"mitad\",\n  \"mítica\": \"mitic\",\n  \"mítico\": \"mitic\",\n  \"mitigantes\": \"mitig\",\n  \"mitin\": \"mitin\",\n  \"mito\": \"mit\",\n  \"mitología\": \"mitolog\",\n  \"mitológico\": \"mitolog\",\n  \"mitos\": \"mit\",\n  \"mitotes\": \"mitot\",\n  \"mitras\": \"mitr\",\n  \"mitsukoshi\": \"mitsukoshi\",\n  \"mitterrand\": \"mitterrand\",\n  \"mitzy\": \"mitzy\",\n  \"mixtas\": \"mixt\",\n  \"mka\": \"mka\",\n  \"mnp\": \"mnp\",\n  \"moais\": \"moais\",\n  \"moaré\": \"moar\",\n  \"mobiliario\": \"mobiliari\",\n  \"mobutu\": \"mobutu\",\n  \"moca\": \"moc\",\n  \"mochila\": \"mochil\",\n  \"mochilas\": \"mochil\",\n  \"mochis\": \"mochis\",\n  \"moción\": \"mocion\",\n  \"moctezuma\": \"moctezum\",\n  \"moda\": \"mod\",\n  \"modales\": \"modal\",\n  \"modalidad\": \"modal\",\n  \"modalidades\": \"modal\",\n  \"modas\": \"mod\",\n  \"mode\": \"mod\",\n  \"modelo\": \"model\",\n  \"modelos\": \"model\",\n  \"módem\": \"modem\",\n  \"modera\": \"moder\",\n  \"moderación\": \"moder\",\n  \"moderada\": \"moder\",\n  \"moderado\": \"moder\",\n  \"moderados\": \"moder\",\n  \"moderna\": \"modern\",\n  \"modernas\": \"modern\",\n  \"modernicen\": \"modernic\",\n  \"modernidad\": \"modern\",\n  \"modernismo\": \"modern\",\n  \"modernización\": \"moderniz\",\n  \"modernizada\": \"moderniz\",\n  \"modernizador\": \"moderniz\",\n  \"modernizar\": \"moderniz\",\n  \"modernizarla\": \"moderniz\",\n  \"modernizarse\": \"moderniz\",\n  \"moderno\": \"modern\",\n  \"modernos\": \"mod\",\n  \"modesta\": \"modest\",\n  \"modestas\": \"modest\",\n  \"modestia\": \"modesti\",\n  \"modesto\": \"modest\",\n  \"modestos\": \"modest\",\n  \"modifica\": \"modif\",\n  \"modificación\": \"modif\",\n  \"modificaciones\": \"modif\",\n  \"modificada\": \"modific\",\n  \"modificadas\": \"modific\",\n  \"modificados\": \"modific\",\n  \"modificando\": \"modific\",\n  \"modificar\": \"modific\",\n  \"modificarse\": \"modific\",\n  \"modificó\": \"modific\",\n  \"modista\": \"modist\",\n  \"modo\": \"mod\",\n  \"modos\": \"mod\",\n  \"modulada\": \"modul\",\n  \"modular\": \"modul\",\n  \"módulo\": \"modul\",\n  \"módulos\": \"modul\",\n  \"moisés\": \"moises\",\n  \"mol\": \"mol\",\n  \"moldeado\": \"mold\",\n  \"moldearon\": \"mold\",\n  \"mole\": \"mol\",\n  \"molesta\": \"molest\",\n  \"molestada\": \"molest\",\n  \"molestados\": \"molest\",\n  \"molestan\": \"molest\",\n  \"molestar\": \"molest\",\n  \"molestarán\": \"molest\",\n  \"molestarse\": \"molest\",\n  \"moleste\": \"molest\",\n  \"molestia\": \"molesti\",\n  \"molestias\": \"molesti\",\n  \"molesto\": \"molest\",\n  \"molestó\": \"molest\",\n  \"molestos\": \"molest\",\n  \"molida\": \"mol\",\n  \"moliere\": \"molier\",\n  \"molina\": \"molin\",\n  \"molino\": \"molin\",\n  \"moll\": \"moll\",\n  \"mollejas\": \"mollej\",\n  \"molones\": \"molon\",\n  \"mombasa\": \"mombas\",\n  \"momentánea\": \"momentane\",\n  \"momentáneamente\": \"momentan\",\n  \"momentáneo\": \"momentane\",\n  \"momento\": \"moment\",\n  \"momentos\": \"moment\",\n  \"monarca\": \"monarc\",\n  \"monarquía\": \"monarqu\",\n  \"monárquica\": \"monarqu\",\n  \"monas\": \"mon\",\n  \"moncada\": \"monc\",\n  \"monclova\": \"monclov\",\n  \"mondongo\": \"mondong\",\n  \"moneda\": \"moned\",\n  \"monedas\": \"moned\",\n  \"monederos\": \"moneder\",\n  \"monetaria\": \"monetari\",\n  \"monetarias\": \"monetari\",\n  \"monetario\": \"monetari\",\n  \"mónica\": \"monic\",\n  \"monipodio\": \"monipodi\",\n  \"monitor\": \"monitor\",\n  \"monitoreo\": \"monitore\",\n  \"monitoreos\": \"monitore\",\n  \"monitores\": \"monitor\",\n  \"monjaras\": \"monj\",\n  \"monjaraz\": \"monjaraz\",\n  \"monjas\": \"monj\",\n  \"monk\": \"monk\",\n  \"moño\": \"moñ\",\n  \"monogollas\": \"monogoll\",\n  \"monolito\": \"monolit\",\n  \"monoplaza\": \"monoplaz\",\n  \"monoplazas\": \"monoplaz\",\n  \"monopolio\": \"monopoli\",\n  \"monopolios\": \"monopoli\",\n  \"monóxido\": \"monox\",\n  \"monroy\": \"monroy\",\n  \"monsivais\": \"monsivais\",\n  \"monsiváis\": \"monsiv\",\n  \"monstruosidad\": \"monstru\",\n  \"monstruosos\": \"monstruos\",\n  \"monta\": \"mont\",\n  \"montada\": \"mont\",\n  \"montado\": \"mont\",\n  \"montaje\": \"montaj\",\n  \"montajes\": \"montaj\",\n  \"montalbán\": \"montalban\",\n  \"montalvo\": \"montalv\",\n  \"montana\": \"montan\",\n  \"montaña\": \"montañ\",\n  \"montañas\": \"montañ\",\n  \"montando\": \"mont\",\n  \"montaño\": \"montañ\",\n  \"montar\": \"mont\",\n  \"monte\": \"mont\",\n  \"monteleone\": \"monteleon\",\n  \"montemayor\": \"montemayor\",\n  \"montemorelos\": \"montemorel\",\n  \"monten\": \"mont\",\n  \"montepíos\": \"montepi\",\n  \"montera\": \"monter\",\n  \"montero\": \"monter\",\n  \"monterrey\": \"monterrey\",\n  \"monterreynuevo\": \"monterreynuev\",\n  \"monterrubio\": \"monterrubi\",\n  \"montes\": \"mont\",\n  \"montgomery\": \"montgomery\",\n  \"months\": \"months\",\n  \"montículo\": \"monticul\",\n  \"montiel\": \"montiel\",\n  \"monto\": \"mont\",\n  \"montó\": \"mont\",\n  \"montón\": \"monton\",\n  \"montos\": \"mont\",\n  \"montoya\": \"montoy\",\n  \"montreal\": \"montreal\",\n  \"montura\": \"montur\",\n  \"monumental\": \"monumental\",\n  \"monumentalidad\": \"monumental\",\n  \"monumento\": \"monument\",\n  \"monumentos\": \"monument\",\n  \"moodys\": \"moodys\",\n  \"mor\": \"mor\",\n  \"mora\": \"mor\",\n  \"morada\": \"mor\",\n  \"morado\": \"mor\",\n  \"moraes\": \"mor\",\n  \"moral\": \"moral\",\n  \"morales\": \"moral\",\n  \"moralidad\": \"moral\",\n  \"moralistas\": \"moral\",\n  \"moralización\": \"moraliz\",\n  \"moralizarse\": \"moraliz\",\n  \"moralmente\": \"moral\",\n  \"moranchel\": \"moranchel\",\n  \"moratoria\": \"moratori\",\n  \"morbilidad\": \"morbil\",\n  \"morbosa\": \"morbos\",\n  \"morbosos\": \"morbos\",\n  \"mordida\": \"mord\",\n  \"mordidas\": \"mord\",\n  \"mordiendo\": \"mord\",\n  \"mordiscos\": \"mordisc\",\n  \"morelenses\": \"morelens\",\n  \"morelia\": \"moreli\",\n  \"morell\": \"morell\",\n  \"morelos\": \"morel\",\n  \"morena\": \"moren\",\n  \"morenas\": \"moren\",\n  \"morenitos\": \"morenit\",\n  \"moreno\": \"moren\",\n  \"moresa\": \"mores\",\n  \"morgan\": \"morg\",\n  \"moría\": \"mor\",\n  \"morillo\": \"morill\",\n  \"morín\": \"morin\",\n  \"morir\": \"mor\",\n  \"morirse\": \"mor\",\n  \"morón\": \"moron\",\n  \"morones\": \"moron\",\n  \"moroso\": \"moros\",\n  \"morozoff\": \"morozoff\",\n  \"morris\": \"morris\",\n  \"morrison\": \"morrison\",\n  \"morros\": \"morr\",\n  \"mortal\": \"mortal\",\n  \"mortem\": \"mortem\",\n  \"moruecos\": \"moruec\",\n  \"mos\": \"mos\",\n  \"moschino\": \"moschin\",\n  \"moscovita\": \"moscovit\",\n  \"moscu\": \"moscu\",\n  \"moscú\": \"moscu\",\n  \"mosquito\": \"mosquit\",\n  \"mostaza\": \"mostaz\",\n  \"mostraba\": \"mostr\",\n  \"mostraban\": \"mostr\",\n  \"mostrada\": \"mostr\",\n  \"mostrado\": \"mostr\",\n  \"mostrando\": \"mostr\",\n  \"mostrándome\": \"mostr\",\n  \"mostrándose\": \"mostr\",\n  \"mostrar\": \"mostr\",\n  \"mostrará\": \"mostr\",\n  \"mostrarle\": \"mostr\",\n  \"mostrarles\": \"mostr\",\n  \"mostrarlo\": \"mostr\",\n  \"mostraron\": \"mostr\",\n  \"mostrarse\": \"mostr\",\n  \"mostró\": \"mostr\",\n  \"mota\": \"mot\",\n  \"moteles\": \"motel\",\n  \"motiva\": \"motiv\",\n  \"motivación\": \"motiv\",\n  \"motivacional\": \"motivacional\",\n  \"motivacionales\": \"motivacional\",\n  \"motivaciones\": \"motiv\",\n  \"motivado\": \"motiv\",\n  \"motivador\": \"motiv\",\n  \"motivante\": \"motiv\",\n  \"motivar\": \"motiv\",\n  \"motivarán\": \"motiv\",\n  \"motivarlas\": \"motiv\",\n  \"motivarlo\": \"motiv\",\n  \"motivarlos\": \"motiv\",\n  \"motive\": \"motiv\",\n  \"motivo\": \"motiv\",\n  \"motivó\": \"motiv\",\n  \"motivos\": \"motiv\",\n  \"moto\": \"mot\",\n  \"motocicleta\": \"motociclet\",\n  \"motociclismo\": \"motocicl\",\n  \"motociclista\": \"motocicl\",\n  \"motociclistas\": \"motocicl\",\n  \"motocross\": \"motocross\",\n  \"motolinía\": \"motolin\",\n  \"motor\": \"motor\",\n  \"motorenwerke\": \"motorenwerk\",\n  \"motores\": \"motor\",\n  \"motors\": \"motors\",\n  \"motos\": \"mot\",\n  \"motriz\": \"motriz\",\n  \"mountain\": \"mountain\",\n  \"mouse\": \"mous\",\n  \"moussavi\": \"moussavi\",\n  \"movamos\": \"mov\",\n  \"mover\": \"mov\",\n  \"moveré\": \"mov\",\n  \"movernos\": \"mov\",\n  \"moverse\": \"mov\",\n  \"movían\": \"mov\",\n  \"movida\": \"mov\",\n  \"movido\": \"mov\",\n  \"moviendo\": \"mov\",\n  \"moviéndose\": \"mov\",\n  \"movieron\": \"mov\",\n  \"móvil\": \"movil\",\n  \"móviles\": \"movil\",\n  \"movilidad\": \"movil\",\n  \"moviliza\": \"moviliz\",\n  \"movilización\": \"moviliz\",\n  \"movilizaciones\": \"moviliz\",\n  \"movilizar\": \"moviliz\",\n  \"movilizó\": \"moviliz\",\n  \"movimiento\": \"movimient\",\n  \"movimientos\": \"movimient\",\n  \"movió\": \"mov\",\n  \"moya\": \"moy\",\n  \"moyobamba\": \"moyobamb\",\n  \"moyssén\": \"moyssen\",\n  \"moza\": \"moz\",\n  \"mozart\": \"mozart\",\n  \"mozo\": \"moz\",\n  \"mozos\": \"moz\",\n  \"mr\": \"mr\",\n  \"mstislav\": \"mstislav\",\n  \"mtito\": \"mtit\",\n  \"mtley\": \"mtley\",\n  \"mu\": \"mu\",\n  \"mucha\": \"much\",\n  \"muchacha\": \"muchach\",\n  \"muchachas\": \"muchach\",\n  \"muchacho\": \"muchach\",\n  \"muchachos\": \"muchach\",\n  \"muchas\": \"much\",\n  \"muchedumbre\": \"muchedumbr\",\n  \"muchísima\": \"muchisim\",\n  \"muchísimas\": \"muchisim\",\n  \"muchísimo\": \"muchisim\",\n  \"muchísimos\": \"muchis\",\n  \"mucho\": \"much\",\n  \"muchos\": \"much\",\n  \"muda\": \"mud\",\n  \"mudanza\": \"mudanz\",\n  \"mudará\": \"mud\",\n  \"mudarse\": \"mud\",\n  \"mueble\": \"muebl\",\n  \"muebles\": \"muebl\",\n  \"mueca\": \"muec\",\n  \"muelle\": \"muell\",\n  \"muelles\": \"muell\",\n  \"muera\": \"muer\",\n  \"muérdago\": \"muerdag\",\n  \"muere\": \"muer\",\n  \"muerta\": \"muert\",\n  \"muertas\": \"muert\",\n  \"muerte\": \"muert\",\n  \"muertes\": \"muert\",\n  \"muerto\": \"muert\",\n  \"muertos\": \"muert\",\n  \"muestra\": \"muestr\",\n  \"muestran\": \"muestr\",\n  \"muestrario\": \"muestrari\",\n  \"muestras\": \"muestr\",\n  \"muestre\": \"muestr\",\n  \"muestren\": \"muestr\",\n  \"muestreo\": \"muestre\",\n  \"mueve\": \"muev\",\n  \"mueven\": \"muev\",\n  \"mugre\": \"mugr\",\n  \"muguerza\": \"muguerz\",\n  \"muguiro\": \"muguir\",\n  \"mujer\": \"muj\",\n  \"mujercita\": \"mujercit\",\n  \"mujeres\": \"mujer\",\n  \"mula\": \"mul\",\n  \"mulato\": \"mulat\",\n  \"muleta\": \"mulet\",\n  \"muletas\": \"mulet\",\n  \"muletazos\": \"muletaz\",\n  \"mulino\": \"mulin\",\n  \"mulitas\": \"mulit\",\n  \"muller\": \"mull\",\n  \"multa\": \"mult\",\n  \"multadas\": \"mult\",\n  \"multado\": \"mult\",\n  \"multados\": \"mult\",\n  \"multar\": \"mult\",\n  \"multas\": \"mult\",\n  \"multichip\": \"multichip\",\n  \"multicolor\": \"multicolor\",\n  \"multiculturalismo\": \"multicultural\",\n  \"multilateral\": \"multilateral\",\n  \"multilaterales\": \"multilateral\",\n  \"multimedia\": \"multimedi\",\n  \"multimedios\": \"multimedi\",\n  \"multimillonariamente\": \"multimillonari\",\n  \"multimillonario\": \"multimillonari\",\n  \"multimillonarios\": \"multimillonari\",\n  \"multimodal\": \"multimodal\",\n  \"multinacionales\": \"multinacional\",\n  \"multipanel\": \"multipanel\",\n  \"múltiple\": \"multipl\",\n  \"múltiples\": \"multipl\",\n  \"multiplicación\": \"multipl\",\n  \"multiplicado\": \"multiplic\",\n  \"multiplicar\": \"multiplic\",\n  \"multiplicaron\": \"multiplic\",\n  \"multiplicarse\": \"multiplic\",\n  \"multiplicó\": \"multiplic\",\n  \"multipliquen\": \"multipliqu\",\n  \"múltiplos\": \"multipl\",\n  \"multitarea\": \"multitare\",\n  \"multitud\": \"multitud\",\n  \"multitudes\": \"multitud\",\n  \"multitudinaria\": \"multitudinari\",\n  \"mundanales\": \"mundanal\",\n  \"mundial\": \"mundial\",\n  \"mundiales\": \"mundial\",\n  \"mundialista\": \"mundial\",\n  \"mundialmente\": \"mundial\",\n  \"mundillo\": \"mundill\",\n  \"mundo\": \"mund\",\n  \"mundos\": \"mund\",\n  \"mundy\": \"mundy\",\n  \"muñeca\": \"muñec\",\n  \"munguía\": \"mungu\",\n  \"munich\": \"munich\",\n  \"municipal\": \"municipal\",\n  \"municipales\": \"municipal\",\n  \"munícipe\": \"municip\",\n  \"municipio\": \"municipi\",\n  \"municipios\": \"municipi\",\n  \"muñiz\": \"muñiz\",\n  \"muñoz\": \"muñoz\",\n  \"mural\": \"mural\",\n  \"muralismo\": \"mural\",\n  \"murat\": \"murat\",\n  \"muriendo\": \"mur\",\n  \"muriera\": \"mur\",\n  \"murieron\": \"mur\",\n  \"murillo\": \"murill\",\n  \"murió\": \"mur\",\n  \"muro\": \"mur\",\n  \"muros\": \"mur\",\n  \"muscular\": \"muscul\",\n  \"musculares\": \"muscular\",\n  \"músculo\": \"muscul\",\n  \"museo\": \"muse\",\n  \"museografía\": \"museograf\",\n  \"museógrafo\": \"museograf\",\n  \"museos\": \"muse\",\n  \"museum\": \"museum\",\n  \"music\": \"music\",\n  \"musica\": \"music\",\n  \"música\": \"music\",\n  \"musical\": \"musical\",\n  \"musicales\": \"musical\",\n  \"músico\": \"music\",\n  \"músicos\": \"music\",\n  \"muslo\": \"musl\",\n  \"muslos\": \"musl\",\n  \"mussa\": \"muss\",\n  \"musset\": \"musset\",\n  \"mustang\": \"mustang\",\n  \"musulmán\": \"musulman\",\n  \"musulmana\": \"musulman\",\n  \"musulmanas\": \"musulman\",\n  \"musulmanes\": \"musulman\",\n  \"mutación\": \"mutacion\",\n  \"mutilados\": \"mutil\",\n  \"mutua\": \"mutu\",\n  \"mutualidad\": \"mutual\",\n  \"mutualista\": \"mutual\",\n  \"mutuamente\": \"mutu\",\n  \"mutuas\": \"mutu\",\n  \"mutuo\": \"mutu\",\n  \"muy\": \"muy\",\n  \"múzquiz\": \"muzquiz\",\n  \"my\": \"my\",\n  \"myers\": \"myers\",\n  \"mystic\": \"mystic\",\n  \"n\": \"n\",\n  \"na\": \"na\",\n  \"nabor\": \"nabor\",\n  \"nace\": \"nac\",\n  \"nacen\": \"nac\",\n  \"nacer\": \"nac\",\n  \"nacho\": \"nach\",\n  \"nací\": \"nac\",\n  \"nacida\": \"nac\",\n  \"nacido\": \"nac\",\n  \"nacidos\": \"nac\",\n  \"naciera\": \"nac\",\n  \"nacieran\": \"nac\",\n  \"nacieron\": \"nac\",\n  \"nacimiento\": \"nacimient\",\n  \"nacimos\": \"nac\",\n  \"nació\": \"nac\",\n  \"nación\": \"nacion\",\n  \"nacional\": \"nacional\",\n  \"nacionales\": \"nacional\",\n  \"nacionalidad\": \"nacional\",\n  \"nacionalista\": \"nacional\",\n  \"nacionalización\": \"nacionaliz\",\n  \"nacionalizada\": \"nacionaliz\",\n  \"naciones\": \"nacion\",\n  \"nada\": \"nad\",\n  \"nadador\": \"nadador\",\n  \"nadadores\": \"nadador\",\n  \"nadando\": \"nad\",\n  \"nadar\": \"nad\",\n  \"nadie\": \"nadi\",\n  \"nadores\": \"nador\",\n  \"nafin\": \"nafin\",\n  \"nafinsa\": \"nafins\",\n  \"nafta\": \"naft\",\n  \"naftacorporation\": \"naftacorporation\",\n  \"nagoya\": \"nagoy\",\n  \"nahuas\": \"nahu\",\n  \"nailon\": \"nailon\",\n  \"nairobi\": \"nairobi\",\n  \"naju\": \"naju\",\n  \"nancy\": \"nancy\",\n  \"nandin\": \"nandin\",\n  \"nandín\": \"nandin\",\n  \"napoleón\": \"napoleon\",\n  \"nápoles\": \"napol\",\n  \"naranja\": \"naranj\",\n  \"naranjas\": \"naranj\",\n  \"naranjo\": \"naranj\",\n  \"narco\": \"narc\",\n  \"narcoanálisis\": \"narcoanalisis\",\n  \"narcos\": \"narc\",\n  \"narcotraficante\": \"narcotraf\",\n  \"narcotraficantes\": \"narcotraf\",\n  \"narcotráfico\": \"narcotraf\",\n  \"nariz\": \"nariz\",\n  \"narozhilenko\": \"narozhilenk\",\n  \"narra\": \"narr\",\n  \"narrado\": \"narr\",\n  \"narrador\": \"narrador\",\n  \"narran\": \"narr\",\n  \"narrativa\": \"narrat\",\n  \"narrativo\": \"narrat\",\n  \"narró\": \"narr\",\n  \"nasa\": \"nas\",\n  \"nasal\": \"nasal\",\n  \"nasales\": \"nasal\",\n  \"nat\": \"nat\",\n  \"nata\": \"nat\",\n  \"natación\": \"natacion\",\n  \"natal\": \"natal\",\n  \"natalicio\": \"natalici\",\n  \"natalie\": \"natali\",\n  \"natalio\": \"natali\",\n  \"nate\": \"nat\",\n  \"national\": \"national\",\n  \"nativa\": \"nativ\",\n  \"nativas\": \"nativ\",\n  \"natividad\": \"nativ\",\n  \"nativo\": \"nativ\",\n  \"nativos\": \"nativ\",\n  \"nato\": \"nat\",\n  \"natural\": \"natural\",\n  \"naturales\": \"natural\",\n  \"naturaleza\": \"naturalez\",\n  \"naturalmente\": \"natural\",\n  \"nature\": \"natur\",\n  \"naturista\": \"natur\",\n  \"naucalpan\": \"naucalp\",\n  \"naufragaron\": \"naufrag\",\n  \"naufragio\": \"naufragi\",\n  \"naufragios\": \"naufragi\",\n  \"náufrago\": \"naufrag\",\n  \"naufragó\": \"naufrag\",\n  \"náutico\": \"nautic\",\n  \"náuticos\": \"nautic\",\n  \"nava\": \"nav\",\n  \"navaja\": \"navaj\",\n  \"navajas\": \"navaj\",\n  \"navajazo\": \"navajaz\",\n  \"navajearon\": \"navaj\",\n  \"naval\": \"naval\",\n  \"navales\": \"naval\",\n  \"navarrete\": \"navarret\",\n  \"navarro\": \"navarr\",\n  \"nave\": \"nav\",\n  \"naveda\": \"naved\",\n  \"navegación\": \"naveg\",\n  \"navegar\": \"naveg\",\n  \"naves\": \"nav\",\n  \"navidad\": \"navid\",\n  \"naviera\": \"nav\",\n  \"navieras\": \"nav\",\n  \"navieros\": \"navier\",\n  \"navío\": \"navi\",\n  \"navíos\": \"navi\",\n  \"navismo\": \"navism\",\n  \"navista\": \"navist\",\n  \"navojoa\": \"navojo\",\n  \"nayarit\": \"nayarit\",\n  \"nazis\": \"nazis\",\n  \"nbc\": \"nbc\",\n  \"near\": \"near\",\n  \"neblina\": \"neblin\",\n  \"necaxa\": \"necax\",\n  \"necaxistas\": \"necax\",\n  \"necedad\": \"neced\",\n  \"necesaria\": \"necesari\",\n  \"necesariamente\": \"necesari\",\n  \"necesarias\": \"necesari\",\n  \"necesario\": \"necesari\",\n  \"necesarios\": \"necesari\",\n  \"necesidad\": \"neces\",\n  \"necesidades\": \"neces\",\n  \"necesita\": \"necesit\",\n  \"necesitaba\": \"necesit\",\n  \"necesitábamos\": \"necesit\",\n  \"necesitaban\": \"necesit\",\n  \"necesitado\": \"necesit\",\n  \"necesitamos\": \"necesit\",\n  \"necesitan\": \"necesit\",\n  \"necesitará\": \"necesit\",\n  \"necesitarán\": \"necesit\",\n  \"necesitaría\": \"necesit\",\n  \"necesitarían\": \"necesit\",\n  \"necesitarlas\": \"necesit\",\n  \"necesite\": \"necesit\",\n  \"necesiten\": \"necesit\",\n  \"necesito\": \"necesit\",\n  \"necesitó\": \"necesit\",\n  \"necia\": \"neci\",\n  \"necrófilo\": \"necrofil\",\n  \"nedda\": \"nedd\",\n  \"nefasto\": \"nefast\",\n  \"nefrología\": \"nefrolog\",\n  \"negaba\": \"neg\",\n  \"negaban\": \"neg\",\n  \"negada\": \"neg\",\n  \"negado\": \"neg\",\n  \"negando\": \"neg\",\n  \"negar\": \"neg\",\n  \"negara\": \"neg\",\n  \"negarla\": \"neg\",\n  \"negarle\": \"neg\",\n  \"negaron\": \"neg\",\n  \"negarse\": \"neg\",\n  \"negativa\": \"negat\",\n  \"negativamente\": \"negat\",\n  \"negativas\": \"negat\",\n  \"negativo\": \"negat\",\n  \"negativos\": \"negat\",\n  \"negligencia\": \"negligent\",\n  \"negó\": \"neg\",\n  \"negocia\": \"negoci\",\n  \"negociables\": \"negoci\",\n  \"negociación\": \"negoci\",\n  \"negociaciones\": \"negoci\",\n  \"negociada\": \"negoci\",\n  \"negociado\": \"negoci\",\n  \"negociador\": \"negoci\",\n  \"negociadora\": \"negoci\",\n  \"negociadores\": \"negoci\",\n  \"negociando\": \"negoci\",\n  \"negociantes\": \"negoci\",\n  \"negociar\": \"negoci\",\n  \"negociarían\": \"negoci\",\n  \"negociarlo\": \"negoci\",\n  \"negociaron\": \"negoci\",\n  \"negociazo\": \"negociaz\",\n  \"negocio\": \"negoci\",\n  \"negoció\": \"negoc\",\n  \"negocios\": \"negoci\",\n  \"negra\": \"negr\",\n  \"negras\": \"negr\",\n  \"negrete\": \"negret\",\n  \"negro\": \"negr\",\n  \"negromex\": \"negromex\",\n  \"negroponte\": \"negropont\",\n  \"negros\": \"negr\",\n  \"nehru\": \"nehru\",\n  \"neil\": \"neil\",\n  \"nejedly\": \"nejedly\",\n  \"nelson\": \"nelson\",\n  \"neófito\": \"neofit\",\n  \"neográfica\": \"neograf\",\n  \"neoleonés\": \"neoleones\",\n  \"neoliberal\": \"neoliberal\",\n  \"neoliberales\": \"neoliberal\",\n  \"neoliberalismo\": \"neoliberal\",\n  \"neoloneses\": \"neolones\",\n  \"neomexicanismo\": \"neomexican\",\n  \"neón\": \"neon\",\n  \"neopopulistas\": \"neopopul\",\n  \"neoproteccionista\": \"neoproteccion\",\n  \"neosectores\": \"neosector\",\n  \"neoyorkina\": \"neoyorkin\",\n  \"neoyorkino\": \"neoyorkin\",\n  \"neoyorquina\": \"neoyorquin\",\n  \"neoyorquinas\": \"neoyorquin\",\n  \"neoyorquino\": \"neoyorquin\",\n  \"népotas\": \"nepot\",\n  \"nepotismo\": \"nepot\",\n  \"neptuno\": \"neptun\",\n  \"nereus\": \"nereus\",\n  \"neri\": \"neri\",\n  \"neruda\": \"nerud\",\n  \"nerviosa\": \"nervios\",\n  \"nerviosas\": \"nervi\",\n  \"nerviosismo\": \"nervi\",\n  \"nervioso\": \"nervios\",\n  \"nerviosos\": \"nervios\",\n  \"nestlé\": \"nestl\",\n  \"nestor\": \"nestor\",\n  \"neta\": \"net\",\n  \"netamente\": \"net\",\n  \"netas\": \"net\",\n  \"neto\": \"net\",\n  \"netos\": \"net\",\n  \"network\": \"network\",\n  \"neumología\": \"neumolog\",\n  \"neumonía\": \"neumon\",\n  \"neurastenia\": \"neurasteni\",\n  \"neurobiólogo\": \"neurobiolog\",\n  \"neurocirujanos\": \"neurocirujan\",\n  \"neurología\": \"neurolog\",\n  \"neurológicas\": \"neurolog\",\n  \"neurológico\": \"neurolog\",\n  \"neurona\": \"neuron\",\n  \"neuronales\": \"neuronal\",\n  \"neuronas\": \"neuron\",\n  \"neurosis\": \"neurosis\",\n  \"neutral\": \"neutral\",\n  \"neutralizar\": \"neutraliz\",\n  \"neutro\": \"neutr\",\n  \"neutros\": \"neutr\",\n  \"neuville\": \"neuvill\",\n  \"nevando\": \"nev\",\n  \"new\": \"new\",\n  \"newagers\": \"newagers\",\n  \"newagismo\": \"newag\",\n  \"newport\": \"newport\",\n  \"newquist\": \"newquist\",\n  \"news\": \"news\",\n  \"newsweek\": \"newsweek\",\n  \"newton\": \"newton\",\n  \"nexos\": \"nex\",\n  \"next\": \"next\",\n  \"nextstep\": \"nextstep\",\n  \"ney\": \"ney\",\n  \"neza\": \"nez\",\n  \"nfl\": \"nfl\",\n  \"nhra\": \"nhra\",\n  \"ni\": \"ni\",\n  \"nicaragua\": \"nicaragu\",\n  \"nicaragüense\": \"nicaragüens\",\n  \"nicho\": \"nich\",\n  \"nichols\": \"nichols\",\n  \"nichos\": \"nich\",\n  \"nickin\": \"nickin\",\n  \"ñico\": \"ñic\",\n  \"nicola\": \"nicol\",\n  \"nicolás\": \"nicolas\",\n  \"nicole\": \"nicol\",\n  \"nidas\": \"nid\",\n  \"nido\": \"nid\",\n  \"nidos\": \"nid\",\n  \"niebla\": \"niebl\",\n  \"niega\": \"nieg\",\n  \"niegan\": \"nieg\",\n  \"niegue\": \"nieg\",\n  \"nieguen\": \"nieg\",\n  \"nieta\": \"niet\",\n  \"nietecita\": \"nietecit\",\n  \"nieto\": \"niet\",\n  \"nietos\": \"niet\",\n  \"nieve\": \"niev\",\n  \"nieves\": \"niev\",\n  \"nikko\": \"nikk\",\n  \"nilda\": \"nild\",\n  \"nina\": \"nin\",\n  \"niña\": \"niñ\",\n  \"niñas\": \"niñ\",\n  \"niñez\": \"niñez\",\n  \"ningún\": \"ningun\",\n  \"ninguna\": \"ningun\",\n  \"ninguno\": \"ningun\",\n  \"niño\": \"niñ\",\n  \"niños\": \"niñ\",\n  \"nipón\": \"nipon\",\n  \"níquel\": \"niquel\",\n  \"nironenko\": \"nironenk\",\n  \"nirvana\": \"nirvan\",\n  \"nísperos\": \"nisper\",\n  \"nissan\": \"niss\",\n  \"nissho\": \"nissh\",\n  \"nitrógeno\": \"nitrogen\",\n  \"nivea\": \"nive\",\n  \"nivel\": \"nivel\",\n  \"nivelar\": \"nivel\",\n  \"niveles\": \"nivel\",\n  \"nixon\": \"nixon\",\n  \"nl\": \"nl\",\n  \"no\": \"no\",\n  \"nó\": \"no\",\n  \"nobel\": \"nobel\",\n  \"nobilísimo\": \"nobilisim\",\n  \"noble\": \"nobl\",\n  \"nobleza\": \"noblez\",\n  \"nocaut\": \"nocaut\",\n  \"nocauts\": \"nocauts\",\n  \"noche\": \"noch\",\n  \"nochebuena\": \"nochebuen\",\n  \"noches\": \"noch\",\n  \"noción\": \"nocion\",\n  \"nociones\": \"nocion\",\n  \"nocivas\": \"nociv\",\n  \"nocivo\": \"nociv\",\n  \"nocturna\": \"nocturn\",\n  \"nocturnas\": \"nocturn\",\n  \"nocturno\": \"nocturn\",\n  \"noé\": \"noe\",\n  \"nogalar\": \"nogal\",\n  \"nogales\": \"nogal\",\n  \"nolte\": \"nolt\",\n  \"nomás\": \"nomas\",\n  \"nombra\": \"nombr\",\n  \"nombradas\": \"nombr\",\n  \"nombrado\": \"nombr\",\n  \"nombrados\": \"nombr\",\n  \"nombramiento\": \"nombramient\",\n  \"nombramientos\": \"nombramient\",\n  \"nombrar\": \"nombr\",\n  \"nombraria\": \"nombrari\",\n  \"nombrarlos\": \"nombr\",\n  \"nombre\": \"nombr\",\n  \"nombré\": \"nombr\",\n  \"nombren\": \"nombr\",\n  \"nombres\": \"nombr\",\n  \"nombró\": \"nombr\",\n  \"nómina\": \"nomin\",\n  \"nominación\": \"nomin\",\n  \"nominaciones\": \"nomin\",\n  \"nominada\": \"nomin\",\n  \"nominado\": \"nomin\",\n  \"nominados\": \"nomin\",\n  \"nominal\": \"nominal\",\n  \"nominales\": \"nominal\",\n  \"nominará\": \"nomin\",\n  \"nonagenario\": \"nonagenari\",\n  \"nopales\": \"nopal\",\n  \"noquear\": \"noqu\",\n  \"noqueará\": \"noqu\",\n  \"nora\": \"nor\",\n  \"norah\": \"norah\",\n  \"noratlántico\": \"noratlant\",\n  \"norberta\": \"norbert\",\n  \"norberto\": \"norbert\",\n  \"norcarolinos\": \"norcarolin\",\n  \"norcoreano\": \"norcorean\",\n  \"noreste\": \"norest\",\n  \"norestense\": \"norestens\",\n  \"norias\": \"nori\",\n  \"noriega\": \"norieg\",\n  \"norma\": \"norm\",\n  \"normal\": \"normal\",\n  \"normales\": \"normal\",\n  \"normalidad\": \"normal\",\n  \"normalmente\": \"normal\",\n  \"normandía\": \"normand\",\n  \"normar\": \"norm\",\n  \"normas\": \"norm\",\n  \"normatividad\": \"normat\",\n  \"norme\": \"norm\",\n  \"noroccidental\": \"noroccidental\",\n  \"norris\": \"norris\",\n  \"norte\": \"nort\",\n  \"norteamérica\": \"norteamer\",\n  \"norteamericana\": \"norteamerican\",\n  \"norteamericanas\": \"norteamerican\",\n  \"norteamericano\": \"norteamerican\",\n  \"norteamericanos\": \"norteamerican\",\n  \"norteña\": \"norteñ\",\n  \"norteñas\": \"norteñ\",\n  \"norteño\": \"norteñ\",\n  \"norteños\": \"norteñ\",\n  \"northern\": \"northern\",\n  \"norwick\": \"norwick\",\n  \"nos\": \"nos\",\n  \"nosocomio\": \"nosocomi\",\n  \"nosotras\": \"nosotr\",\n  \"nosotros\": \"nosotr\",\n  \"nostalgias\": \"nostalgi\",\n  \"nota\": \"not\",\n  \"notable\": \"notabl\",\n  \"notablemente\": \"notabl\",\n  \"notables\": \"notabl\",\n  \"notado\": \"not\",\n  \"notamos\": \"not\",\n  \"notar\": \"not\",\n  \"notaria\": \"notari\",\n  \"notaría\": \"not\",\n  \"notariado\": \"notari\",\n  \"notario\": \"notari\",\n  \"notas\": \"not\",\n  \"noticia\": \"notici\",\n  \"noticias\": \"notici\",\n  \"noticiero\": \"noticier\",\n  \"noticiosa\": \"notici\",\n  \"noticiosos\": \"notici\",\n  \"notificación\": \"notif\",\n  \"notificado\": \"notific\",\n  \"notificar\": \"notific\",\n  \"notificarán\": \"notific\",\n  \"notificarle\": \"notific\",\n  \"notificaron\": \"notific\",\n  \"notificó\": \"notific\",\n  \"notimex\": \"notimex\",\n  \"notó\": \"not\",\n  \"notoria\": \"notori\",\n  \"notoriamente\": \"notori\",\n  \"notorias\": \"notori\",\n  \"notorio\": \"notori\",\n  \"nova\": \"nov\",\n  \"novacek\": \"novacek\",\n  \"novar\": \"nov\",\n  \"novatas\": \"novat\",\n  \"novatez\": \"novatez\",\n  \"novato\": \"novat\",\n  \"novatos\": \"novat\",\n  \"novedad\": \"noved\",\n  \"novedades\": \"novedad\",\n  \"novedosas\": \"noved\",\n  \"novedoso\": \"noved\",\n  \"novedosos\": \"noved\",\n  \"novel\": \"novel\",\n  \"novela\": \"novel\",\n  \"novelas\": \"novel\",\n  \"novelista\": \"novel\",\n  \"novell\": \"novell\",\n  \"novena\": \"noven\",\n  \"novenas\": \"noven\",\n  \"noveno\": \"noven\",\n  \"novia\": \"novi\",\n  \"novias\": \"novi\",\n  \"noviazgo\": \"noviazg\",\n  \"noviembre\": \"noviembr\",\n  \"novillada\": \"novill\",\n  \"novilladas\": \"novill\",\n  \"novillero\": \"noviller\",\n  \"novilleros\": \"noviller\",\n  \"novillo\": \"novill\",\n  \"novillos\": \"novill\",\n  \"novio\": \"novi\",\n  \"novios\": \"novi\",\n  \"novísimo\": \"novisim\",\n  \"novoa\": \"novo\",\n  \"nox\": \"nox\",\n  \"noyola\": \"noyol\",\n  \"np\": \"np\",\n  \"npp\": \"npp\",\n  \"nt\": \"nt\",\n  \"ntx\": \"ntx\",\n  \"nube\": \"nub\",\n  \"nubla\": \"nubl\",\n  \"nublados\": \"nubl\",\n  \"nuca\": \"nuc\",\n  \"nucleado\": \"nucl\",\n  \"nuclear\": \"nucl\",\n  \"núcleo\": \"nucle\",\n  \"núcleos\": \"nucle\",\n  \"nudillos\": \"nudill\",\n  \"nudos\": \"nud\",\n  \"nueces\": \"nuec\",\n  \"nuera\": \"nuer\",\n  \"nuestra\": \"nuestr\",\n  \"nuestras\": \"nuestr\",\n  \"nuestro\": \"nuestr\",\n  \"nuestros\": \"nuestr\",\n  \"nueva\": \"nuev\",\n  \"nuevamente\": \"nuev\",\n  \"nuevas\": \"nuev\",\n  \"nueve\": \"nuev\",\n  \"nuevo\": \"nuev\",\n  \"nuevoleonés\": \"nuevoleones\",\n  \"nuevoleonesa\": \"nuevoleones\",\n  \"nuevoleoneses\": \"nuevoleones\",\n  \"nuevos\": \"nuev\",\n  \"nuff\": \"nuff\",\n  \"nui\": \"nui\",\n  \"nula\": \"nul\",\n  \"nulas\": \"nul\",\n  \"nulo\": \"nul\",\n  \"numerales\": \"numeral\",\n  \"numeralia\": \"numerali\",\n  \"numérica\": \"numer\",\n  \"numeritos\": \"numerit\",\n  \"numero\": \"numer\",\n  \"número\": \"numer\",\n  \"numeros\": \"numer\",\n  \"números\": \"numer\",\n  \"numerosa\": \"numer\",\n  \"numerosas\": \"numer\",\n  \"numerosos\": \"numer\",\n  \"nunca\": \"nunc\",\n  \"nunciatura\": \"nunciatur\",\n  \"nuncio\": \"nunci\",\n  \"nuñez\": \"nuñez\",\n  \"núñez\": \"nuñez\",\n  \"nunn\": \"nunn\",\n  \"nupcial\": \"nupcial\",\n  \"nupcias\": \"nupci\",\n  \"nuremberg\": \"nuremberg\",\n  \"nurser\": \"nurs\",\n  \"nutrición\": \"nutricion\",\n  \"nutrientes\": \"nutrient\",\n  \"ny\": \"ny\",\n  \"nye\": \"nye\",\n  \"nylon\": \"nylon\",\n  \"nyrup\": \"nyrup\",\n  \"nyt\": \"nyt\",\n  \"o\": \"o\",\n  \"ó\": \"o\",\n  \"oajaca\": \"oajac\",\n  \"oaxaca\": \"oaxac\",\n  \"oaxaqueñas\": \"oaxaqueñ\",\n  \"obdulia\": \"obduli\",\n  \"obdulio\": \"obduli\",\n  \"obedece\": \"obedec\",\n  \"obedecen\": \"obedec\",\n  \"obedecer\": \"obedec\",\n  \"obedecerlo\": \"obedec\",\n  \"obedecía\": \"obedec\",\n  \"obedecían\": \"obedec\",\n  \"obedeció\": \"obedec\",\n  \"obediencia\": \"obedient\",\n  \"obispado\": \"obisp\",\n  \"obispo\": \"obisp\",\n  \"obispos\": \"obisp\",\n  \"objeciones\": \"objecion\",\n  \"objeta\": \"objet\",\n  \"objetar\": \"objet\",\n  \"objetare\": \"objetar\",\n  \"objetiva\": \"objet\",\n  \"objetividad\": \"objet\",\n  \"objetivo\": \"objet\",\n  \"objetivos\": \"objet\",\n  \"objeto\": \"objet\",\n  \"objetos\": \"objet\",\n  \"obliga\": \"oblig\",\n  \"obligaba\": \"oblig\",\n  \"obligaban\": \"oblig\",\n  \"obligación\": \"oblig\",\n  \"obligaciones\": \"oblig\",\n  \"obligada\": \"oblig\",\n  \"obligado\": \"oblig\",\n  \"obligados\": \"oblig\",\n  \"obligan\": \"oblig\",\n  \"obligando\": \"oblig\",\n  \"obligándolo\": \"oblig\",\n  \"obligar\": \"oblig\",\n  \"obligará\": \"oblig\",\n  \"obligaría\": \"oblig\",\n  \"obligarían\": \"oblig\",\n  \"obligaron\": \"oblig\",\n  \"obligatoria\": \"obligatori\",\n  \"obligatoriamente\": \"obligatori\",\n  \"obligatoriedad\": \"obligatoried\",\n  \"obligatorio\": \"obligatori\",\n  \"obligatorios\": \"obligatori\",\n  \"obligo\": \"oblig\",\n  \"obligó\": \"oblig\",\n  \"obligue\": \"oblig\",\n  \"oboe\": \"obo\",\n  \"oboístas\": \"oboist\",\n  \"obra\": \"obra\",\n  \"obrador\": \"obrador\",\n  \"obran\": \"obran\",\n  \"obrar\": \"obrar\",\n  \"obras\": \"obras\",\n  \"obregón\": \"obregon\",\n  \"obrera\": \"obrer\",\n  \"obrero\": \"obrer\",\n  \"obreros\": \"obrer\",\n  \"obscena\": \"obscen\",\n  \"obscenas\": \"obscen\",\n  \"obscenos\": \"obscen\",\n  \"obscurece\": \"obscurec\",\n  \"obscuro\": \"obscur\",\n  \"obscuros\": \"obscur\",\n  \"obsequian\": \"obsequi\",\n  \"obsequiar\": \"obsequi\",\n  \"obsequiarle\": \"obsequi\",\n  \"obsequiaron\": \"obsequi\",\n  \"obsequió\": \"obsequ\",\n  \"observa\": \"observ\",\n  \"observaba\": \"observ\",\n  \"observaban\": \"observ\",\n  \"observable\": \"observ\",\n  \"observación\": \"observ\",\n  \"observaciones\": \"observ\",\n  \"observada\": \"observ\",\n  \"observadas\": \"observ\",\n  \"observado\": \"observ\",\n  \"observador\": \"observ\",\n  \"observadora\": \"observ\",\n  \"observadores\": \"observ\",\n  \"observamos\": \"observ\",\n  \"observan\": \"observ\",\n  \"observancia\": \"observ\",\n  \"observando\": \"observ\",\n  \"observar\": \"observ\",\n  \"observaron\": \"observ\",\n  \"observé\": \"observ\",\n  \"observo\": \"observ\",\n  \"observó\": \"observ\",\n  \"obsesión\": \"obsesion\",\n  \"obsesionado\": \"obsesion\",\n  \"obsesionarse\": \"obsesion\",\n  \"obsesione\": \"obsesion\",\n  \"obsesiones\": \"obsesion\",\n  \"obsesiva\": \"obses\",\n  \"obsidiana\": \"obsidian\",\n  \"obsolescencia\": \"obsolescent\",\n  \"obstaculiza\": \"obstaculiz\",\n  \"obstaculización\": \"obstaculiz\",\n  \"obstaculizado\": \"obstaculiz\",\n  \"obstáculo\": \"obstacul\",\n  \"obstáculos\": \"obstacul\",\n  \"obstante\": \"obstant\",\n  \"obstinación\": \"obstin\",\n  \"obstinado\": \"obstin\",\n  \"obstine\": \"obstin\",\n  \"obstrucción\": \"obstruccion\",\n  \"obtención\": \"obtencion\",\n  \"obtendrá\": \"obtendr\",\n  \"obtendrán\": \"obtendran\",\n  \"obtener\": \"obten\",\n  \"obtenerla\": \"obten\",\n  \"obtenerlas\": \"obten\",\n  \"obtenerse\": \"obten\",\n  \"obtenga\": \"obteng\",\n  \"obtengan\": \"obteng\",\n  \"obtengo\": \"obteng\",\n  \"obtenía\": \"obten\",\n  \"obtenida\": \"obten\",\n  \"obtenidas\": \"obten\",\n  \"obtenido\": \"obten\",\n  \"obtenidos\": \"obten\",\n  \"obteniendo\": \"obten\",\n  \"obtiene\": \"obtien\",\n  \"obtienen\": \"obtien\",\n  \"obtuviera\": \"obtuv\",\n  \"obtuvieron\": \"obtuv\",\n  \"obtuvimos\": \"obtuv\",\n  \"obtuvo\": \"obtuv\",\n  \"obuses\": \"obus\",\n  \"obvia\": \"obvi\",\n  \"obviamente\": \"obvi\",\n  \"obvio\": \"obvi\",\n  \"oca\": \"oca\",\n  \"ocampo\": \"ocamp\",\n  \"ocasión\": \"ocasion\",\n  \"ocasiona\": \"ocasion\",\n  \"ocasionadas\": \"ocasion\",\n  \"ocasionado\": \"ocasion\",\n  \"ocasionados\": \"ocasion\",\n  \"ocasionalmente\": \"ocasional\",\n  \"ocasionar\": \"ocasion\",\n  \"ocasionará\": \"ocasion\",\n  \"ocasionarle\": \"ocasion\",\n  \"ocasionaron\": \"ocasion\",\n  \"ocasionarse\": \"ocasion\",\n  \"ocasiones\": \"ocasion\",\n  \"ocasionó\": \"ocasion\",\n  \"occidental\": \"occidental\",\n  \"occidentales\": \"occidental\",\n  \"occidente\": \"occident\",\n  \"occipital\": \"occipital\",\n  \"occisa\": \"occis\",\n  \"occiso\": \"occis\",\n  \"occisos\": \"occis\",\n  \"oceanía\": \"ocean\",\n  \"océanica\": \"ocean\",\n  \"oceánico\": \"ocean\",\n  \"oceano\": \"ocean\",\n  \"océano\": \"ocean\",\n  \"océanos\": \"ocean\",\n  \"ocejo\": \"ocej\",\n  \"oceransky\": \"oceransky\",\n  \"ochenta\": \"ochent\",\n  \"ochentas\": \"ochent\",\n  \"ocho\": \"ocho\",\n  \"ochoa\": \"ocho\",\n  \"ochos\": \"ochos\",\n  \"ochosi\": \"ochosi\",\n  \"ocio\": \"oci\",\n  \"ocremente\": \"ocrement\",\n  \"octava\": \"octav\",\n  \"octavio\": \"octavi\",\n  \"octavo\": \"octav\",\n  \"octubre\": \"octubr\",\n  \"oculta\": \"ocult\",\n  \"ocultaba\": \"ocult\",\n  \"ocultar\": \"ocult\",\n  \"ocultaron\": \"ocult\",\n  \"ocultas\": \"ocult\",\n  \"oculten\": \"ocult\",\n  \"oculto\": \"ocult\",\n  \"ocultó\": \"ocult\",\n  \"ocultos\": \"ocult\",\n  \"ocupa\": \"ocup\",\n  \"ocupaba\": \"ocup\",\n  \"ocupaban\": \"ocup\",\n  \"ocupación\": \"ocup\",\n  \"ocupacional\": \"ocupacional\",\n  \"ocupada\": \"ocup\",\n  \"ocupado\": \"ocup\",\n  \"ocupados\": \"ocup\",\n  \"ocupan\": \"ocup\",\n  \"ocupantes\": \"ocup\",\n  \"ocupar\": \"ocup\",\n  \"ocuparon\": \"ocup\",\n  \"ocuparse\": \"ocup\",\n  \"ocupen\": \"ocup\",\n  \"ocupó\": \"ocup\",\n  \"ocurra\": \"ocurr\",\n  \"ocurran\": \"ocurr\",\n  \"ocurre\": \"ocurr\",\n  \"ocurren\": \"ocurr\",\n  \"ocurrencia\": \"ocurrent\",\n  \"ocurría\": \"ocurr\",\n  \"ocurrida\": \"ocurr\",\n  \"ocurridas\": \"ocurr\",\n  \"ocurrido\": \"ocurr\",\n  \"ocurriendo\": \"ocurr\",\n  \"ocurrieron\": \"ocurr\",\n  \"ocurrió\": \"ocurr\",\n  \"ocurrir\": \"ocurr\",\n  \"ocurrirán\": \"ocurr\",\n  \"odio\": \"odi\",\n  \"odisea\": \"odise\",\n  \"odriozola\": \"odriozol\",\n  \"oea\": \"oea\",\n  \"oecd\": \"oecd\",\n  \"oeste\": \"oest\",\n  \"of\": \"of\",\n  \"ofelia\": \"ofeli\",\n  \"ofende\": \"ofend\",\n  \"ofenden\": \"ofend\",\n  \"ofender\": \"ofend\",\n  \"ofenderá\": \"ofend\",\n  \"ofendidas\": \"ofend\",\n  \"ofendido\": \"ofend\",\n  \"ofendió\": \"ofend\",\n  \"ofensa\": \"ofens\",\n  \"ofensiva\": \"ofens\",\n  \"ofensivas\": \"ofens\",\n  \"ofensivo\": \"ofens\",\n  \"ofensivos\": \"ofens\",\n  \"oferentes\": \"oferent\",\n  \"oferta\": \"ofert\",\n  \"ofertas\": \"ofert\",\n  \"ofertó\": \"ofert\",\n  \"officio\": \"offici\",\n  \"oficial\": \"oficial\",\n  \"oficiales\": \"oficial\",\n  \"oficialía\": \"oficial\",\n  \"oficialista\": \"oficial\",\n  \"oficializar\": \"oficializ\",\n  \"oficializo\": \"oficializ\",\n  \"oficializó\": \"oficializ\",\n  \"oficialmente\": \"oficial\",\n  \"oficiaría\": \"ofici\",\n  \"oficina\": \"oficin\",\n  \"oficinas\": \"oficin\",\n  \"oficinesco\": \"oficinesc\",\n  \"oficio\": \"ofici\",\n  \"oficiosas\": \"ofici\",\n  \"ofrece\": \"ofrec\",\n  \"ofrecen\": \"ofrec\",\n  \"ofrecer\": \"ofrec\",\n  \"ofrecerá\": \"ofrec\",\n  \"ofrecerán\": \"ofrec\",\n  \"ofreceré\": \"ofrec\",\n  \"ofrecería\": \"ofrec\",\n  \"ofrecerla\": \"ofrec\",\n  \"ofrecerle\": \"ofrec\",\n  \"ofrecerles\": \"ofrec\",\n  \"ofrecerlo\": \"ofrec\",\n  \"ofrecía\": \"ofrec\",\n  \"ofrecían\": \"ofrec\",\n  \"ofrecida\": \"ofrec\",\n  \"ofrecidas\": \"ofrec\",\n  \"ofrecido\": \"ofrec\",\n  \"ofrecidos\": \"ofrec\",\n  \"ofreciendo\": \"ofrec\",\n  \"ofreciera\": \"ofrec\",\n  \"ofrecieran\": \"ofrec\",\n  \"ofrecieron\": \"ofrec\",\n  \"ofrecimiento\": \"ofrec\",\n  \"ofrecimientos\": \"ofrec\",\n  \"ofreció\": \"ofrec\",\n  \"ofrendas\": \"ofrend\",\n  \"ofrezca\": \"ofrezc\",\n  \"ofrezcan\": \"ofrezc\",\n  \"ofrezco\": \"ofrezc\",\n  \"oftalmología\": \"oftalmolog\",\n  \"oh\": \"oh\",\n  \"ohio\": \"ohi\",\n  \"oído\": \"oid\",\n  \"oídos\": \"oid\",\n  \"oiga\": \"oig\",\n  \"oigame\": \"oigam\",\n  \"oímos\": \"oim\",\n  \"oír\": \"oir\",\n  \"ojalá\": \"ojal\",\n  \"ojales\": \"ojal\",\n  \"ojeda\": \"ojed\",\n  \"ojeras\": \"ojer\",\n  \"ojo\": \"ojo\",\n  \"ojos\": \"ojos\",\n  \"ojuelos\": \"ojuel\",\n  \"oklahoma\": \"oklahom\",\n  \"ola\": \"ola\",\n  \"olacyr\": \"olacyr\",\n  \"olas\": \"olas\",\n  \"olaya\": \"olay\",\n  \"olé\": \"ole\",\n  \"olea\": \"ole\",\n  \"oleaginoso\": \"oleagin\",\n  \"oleaginosos\": \"oleagin\",\n  \"oleaje\": \"oleaj\",\n  \"óleo\": \"ole\",\n  \"olga\": \"olga\",\n  \"oligopolio\": \"oligopoli\",\n  \"olimpiadas\": \"olimpi\",\n  \"olímpica\": \"olimp\",\n  \"olímpico\": \"olimp\",\n  \"olímpicos\": \"olimp\",\n  \"olimpo\": \"olimp\",\n  \"olivares\": \"olivar\",\n  \"olivas\": \"oliv\",\n  \"oliver\": \"oliv\",\n  \"olivera\": \"oliver\",\n  \"oliveras\": \"oliver\",\n  \"oliverio\": \"oliveri\",\n  \"olivia\": \"olivi\",\n  \"olivier\": \"olivi\",\n  \"olivo\": \"oliv\",\n  \"ollas\": \"ollas\",\n  \"olloqui\": \"olloqui\",\n  \"olmedo\": \"olmed\",\n  \"olor\": \"olor\",\n  \"olores\": \"olor\",\n  \"olvera\": \"olver\",\n  \"olvida\": \"olvid\",\n  \"olvidada\": \"olvid\",\n  \"olvidadizo\": \"olvidadiz\",\n  \"olvidado\": \"olvid\",\n  \"olvidamos\": \"olvid\",\n  \"olvidan\": \"olvid\",\n  \"olvidando\": \"olvid\",\n  \"olvidándose\": \"olvid\",\n  \"olvidar\": \"olvid\",\n  \"olvidaron\": \"olvid\",\n  \"olvídese\": \"olvides\",\n  \"olvido\": \"olvid\",\n  \"olvidó\": \"olvid\",\n  \"omán\": \"oman\",\n  \"omaña\": \"omañ\",\n  \"omar\": \"omar\",\n  \"omb\": \"omb\",\n  \"ominoso\": \"omin\",\n  \"omiso\": \"omis\",\n  \"omiten\": \"omit\",\n  \"omitir\": \"omit\",\n  \"omito\": \"omit\",\n  \"ómnibus\": \"omnibus\",\n  \"omnimax\": \"omnimax\",\n  \"oñate\": \"oñat\",\n  \"once\": \"once\",\n  \"onceavo\": \"onceav\",\n  \"oncena\": \"oncen\",\n  \"onda\": \"onda\",\n  \"ondarza\": \"ondarz\",\n  \"ondas\": \"ondas\",\n  \"one\": \"one\",\n  \"onix\": \"onix\",\n  \"ontario\": \"ontari\",\n  \"ontiveros\": \"ontiver\",\n  \"onu\": \"onu\",\n  \"onzas\": \"onzas\",\n  \"opa\": \"opa\",\n  \"ópalos\": \"opal\",\n  \"opción\": \"opcion\",\n  \"opcionado\": \"opcion\",\n  \"opcional\": \"opcional\",\n  \"opciones\": \"opcion\",\n  \"opera\": \"oper\",\n  \"ópera\": \"oper\",\n  \"operaba\": \"oper\",\n  \"operación\": \"oper\",\n  \"operacionales\": \"operacional\",\n  \"operaciones\": \"oper\",\n  \"operada\": \"oper\",\n  \"operadas\": \"oper\",\n  \"operado\": \"oper\",\n  \"operador\": \"oper\",\n  \"operadora\": \"oper\",\n  \"operadoras\": \"oper\",\n  \"operadores\": \"oper\",\n  \"operados\": \"oper\",\n  \"operan\": \"oper\",\n  \"operando\": \"oper\",\n  \"operar\": \"oper\",\n  \"operará\": \"oper\",\n  \"operaría\": \"oper\",\n  \"operarios\": \"operari\",\n  \"operas\": \"oper\",\n  \"operation\": \"operation\",\n  \"operativa\": \"oper\",\n  \"operativas\": \"oper\",\n  \"operativo\": \"oper\",\n  \"operativos\": \"oper\",\n  \"operen\": \"oper\",\n  \"opina\": \"opin\",\n  \"opinaban\": \"opin\",\n  \"opinar\": \"opin\",\n  \"opinas\": \"opin\",\n  \"opinen\": \"opin\",\n  \"opinión\": \"opinion\",\n  \"opiniones\": \"opinion\",\n  \"opiniónfinanciera\": \"opinionfinanc\",\n  \"opino\": \"opin\",\n  \"opinó\": \"opin\",\n  \"opondrá\": \"opondr\",\n  \"opone\": \"opon\",\n  \"oponen\": \"opon\",\n  \"oponentes\": \"oponent\",\n  \"oponga\": \"opong\",\n  \"opongo\": \"opong\",\n  \"oponíamos\": \"opon\",\n  \"oportuna\": \"oportun\",\n  \"oportunamente\": \"oportun\",\n  \"oportunidad\": \"oportun\",\n  \"oportunidades\": \"oportun\",\n  \"oportuno\": \"oportun\",\n  \"oposición\": \"oposicion\",\n  \"opositor\": \"opositor\",\n  \"opositores\": \"opositor\",\n  \"oprimir\": \"oprim\",\n  \"opta\": \"opta\",\n  \"optaba\": \"optab\",\n  \"optar\": \"optar\",\n  \"optarse\": \"optars\",\n  \"optativo\": \"optat\",\n  \"óptica\": \"optic\",\n  \"ópticas\": \"optic\",\n  \"óptico\": \"optic\",\n  \"optimismo\": \"optim\",\n  \"optimista\": \"optim\",\n  \"optimistas\": \"optim\",\n  \"optimización\": \"optimiz\",\n  \"optimizar\": \"optimiz\",\n  \"óptimo\": \"optim\",\n  \"optó\": \"opto\",\n  \"opuesta\": \"opuest\",\n  \"opuesto\": \"opuest\",\n  \"opuestos\": \"opuest\",\n  \"opusieron\": \"opus\",\n  \"or\": \"or\",\n  \"oraciones\": \"oracion\",\n  \"orador\": \"orador\",\n  \"oral\": \"oral\",\n  \"oralia\": \"orali\",\n  \"oralmente\": \"oral\",\n  \"oramos\": \"oram\",\n  \"orangután\": \"orangutan\",\n  \"orangutanes\": \"orangutan\",\n  \"oraría\": \"orar\",\n  \"orbe\": \"orbe\",\n  \"órbita\": \"orbit\",\n  \"orbitar\": \"orbit\",\n  \"orco\": \"orco\",\n  \"ordás\": \"ordas\",\n  \"ordaz\": \"ordaz\",\n  \"orden\": \"orden\",\n  \"ordena\": \"orden\",\n  \"ordenaban\": \"orden\",\n  \"ordenada\": \"orden\",\n  \"ordenadas\": \"orden\",\n  \"ordenado\": \"orden\",\n  \"ordenamos\": \"orden\",\n  \"ordenar\": \"orden\",\n  \"ordeñarás\": \"ordeñ\",\n  \"ordenaron\": \"orden\",\n  \"ordene\": \"orden\",\n  \"ordenen\": \"orden\",\n  \"ordenes\": \"orden\",\n  \"órdenes\": \"orden\",\n  \"ordenó\": \"orden\",\n  \"ordiales\": \"ordial\",\n  \"ordinaria\": \"ordinari\",\n  \"ordinario\": \"ordinari\",\n  \"ordóñez\": \"ordoñez\",\n  \"orduño\": \"orduñ\",\n  \"orea\": \"ore\",\n  \"oregón\": \"oregon\",\n  \"oreja\": \"orej\",\n  \"orejas\": \"orej\",\n  \"orejeras\": \"orejer\",\n  \"orfebres\": \"orfebr\",\n  \"orgánicas\": \"organ\",\n  \"organice\": \"organic\",\n  \"organismo\": \"organ\",\n  \"organismos\": \"organ\",\n  \"organiza\": \"organiz\",\n  \"organización\": \"organiz\",\n  \"organizacional\": \"organizacional\",\n  \"organizaciones\": \"organiz\",\n  \"organizada\": \"organiz\",\n  \"organizadas\": \"organiz\",\n  \"organizado\": \"organiz\",\n  \"organizador\": \"organiz\",\n  \"organizadora\": \"organiz\",\n  \"organizadoras\": \"organiz\",\n  \"organizadores\": \"organiz\",\n  \"organizados\": \"organiz\",\n  \"organizamos\": \"organiz\",\n  \"organizan\": \"organiz\",\n  \"organizando\": \"organiz\",\n  \"organizar\": \"organiz\",\n  \"organizará\": \"organiz\",\n  \"organizaría\": \"organiz\",\n  \"organizaron\": \"organiz\",\n  \"organizarse\": \"organiz\",\n  \"organizativa\": \"organiz\",\n  \"organizó\": \"organiz\",\n  \"órgano\": \"organ\",\n  \"órganos\": \"organ\",\n  \"orgásmico\": \"orgasm\",\n  \"orgasmo\": \"orgasm\",\n  \"orgía\": \"orgi\",\n  \"orgullo\": \"orgull\",\n  \"orgullosa\": \"orgull\",\n  \"orgullosamente\": \"orgull\",\n  \"orgulloso\": \"orgull\",\n  \"orgullosos\": \"orgull\",\n  \"oriana\": \"orian\",\n  \"orienta\": \"orient\",\n  \"orientació\": \"orientac\",\n  \"orientación\": \"orient\",\n  \"orientada\": \"orient\",\n  \"orientadas\": \"orient\",\n  \"orientado\": \"orient\",\n  \"orientadoras\": \"orient\",\n  \"orientadores\": \"orient\",\n  \"orientados\": \"orient\",\n  \"oriental\": \"oriental\",\n  \"orientales\": \"oriental\",\n  \"orientan\": \"orient\",\n  \"orientando\": \"orient\",\n  \"orientar\": \"orient\",\n  \"orientarte\": \"orientart\",\n  \"oriente\": \"orient\",\n  \"origen\": \"orig\",\n  \"orígenes\": \"origen\",\n  \"origina\": \"origin\",\n  \"originada\": \"origin\",\n  \"originadas\": \"origin\",\n  \"originado\": \"origin\",\n  \"originados\": \"origin\",\n  \"original\": \"original\",\n  \"originales\": \"original\",\n  \"originalidad\": \"original\",\n  \"originalmente\": \"original\",\n  \"originan\": \"origin\",\n  \"originando\": \"origin\",\n  \"originar\": \"origin\",\n  \"originará\": \"origin\",\n  \"originario\": \"originari\",\n  \"originarios\": \"originari\",\n  \"originarla\": \"origin\",\n  \"originaron\": \"origin\",\n  \"origine\": \"origin\",\n  \"originó\": \"origin\",\n  \"orilla\": \"orill\",\n  \"orillando\": \"orill\",\n  \"orillar\": \"orill\",\n  \"orillas\": \"orill\",\n  \"orilló\": \"orill\",\n  \"orina\": \"orin\",\n  \"orinar\": \"orin\",\n  \"orioles\": \"oriol\",\n  \"orishas\": \"orish\",\n  \"orizaba\": \"oriz\",\n  \"orlando\": \"orland\",\n  \"ornelas\": \"ornel\",\n  \"ornellas\": \"ornell\",\n  \"oro\": \"oro\",\n  \"oroinia\": \"oroini\",\n  \"oropel\": \"oropel\",\n  \"oropeza\": \"oropez\",\n  \"orozco\": \"orozc\",\n  \"orozquiana\": \"orozquian\",\n  \"orquesta\": \"orquest\",\n  \"orquestas\": \"orquest\",\n  \"orta\": \"orta\",\n  \"ortega\": \"orteg\",\n  \"ortigoza\": \"ortigoz\",\n  \"ortiz\": \"ortiz\",\n  \"ortíz\": \"ortiz\",\n  \"ortodoxa\": \"ortodox\",\n  \"ortodoxas\": \"ortodox\",\n  \"ortodoxia\": \"ortodoxi\",\n  \"ortografía\": \"ortograf\",\n  \"ortopedia\": \"ortopedi\",\n  \"orven\": \"orven\",\n  \"orwell\": \"orwell\",\n  \"os\": \"os\",\n  \"osadía\": \"osad\",\n  \"osados\": \"osad\",\n  \"osaka\": \"osak\",\n  \"osasuna\": \"osasun\",\n  \"oscar\": \"oscar\",\n  \"oscila\": \"oscil\",\n  \"oscilaba\": \"oscil\",\n  \"oscilaciones\": \"oscil\",\n  \"oscilan\": \"oscil\",\n  \"oscura\": \"oscur\",\n  \"oscuras\": \"oscur\",\n  \"oscurecer\": \"oscurec\",\n  \"oscuridad\": \"oscur\",\n  \"oscuro\": \"oscur\",\n  \"oscuros\": \"oscur\",\n  \"osorio\": \"osori\",\n  \"osos\": \"osos\",\n  \"osservatore\": \"osservator\",\n  \"ostensible\": \"ostens\",\n  \"ostensiblemente\": \"ostens\",\n  \"ostenta\": \"ostent\",\n  \"ostentar\": \"ostent\",\n  \"osuna\": \"osun\",\n  \"osvaldo\": \"osvald\",\n  \"oswald\": \"oswald\",\n  \"oswaldo\": \"oswald\",\n  \"otáez\": \"otaez\",\n  \"otan\": \"otan\",\n  \"ote\": \"ote\",\n  \"oteando\": \"ote\",\n  \"othon\": \"othon\",\n  \"othón\": \"othon\",\n  \"otila\": \"otil\",\n  \"otilia\": \"otili\",\n  \"otitis\": \"otitis\",\n  \"otoño\": \"otoñ\",\n  \"otorga\": \"otorg\",\n  \"otorgada\": \"otorg\",\n  \"otorgadas\": \"otorg\",\n  \"otorgado\": \"otorg\",\n  \"otorgados\": \"otorg\",\n  \"otorgamiento\": \"otorg\",\n  \"otorgan\": \"otorg\",\n  \"otorgando\": \"otorg\",\n  \"otorgar\": \"otorg\",\n  \"otorgará\": \"otorg\",\n  \"otorgaran\": \"otorg\",\n  \"otorgarán\": \"otorg\",\n  \"otorgarle\": \"otorg\",\n  \"otorgarles\": \"otorg\",\n  \"otorgarnos\": \"otorg\",\n  \"otorgaron\": \"otorg\",\n  \"otorgó\": \"otorg\",\n  \"otorguen\": \"otorg\",\n  \"otra\": \"otra\",\n  \"otras\": \"otras\",\n  \"otro\": \"otro\",\n  \"otrora\": \"otror\",\n  \"otros\": \"otros\",\n  \"ottawa\": \"ottaw\",\n  \"ottey\": \"ottey\",\n  \"otto\": \"otto\",\n  \"out\": \"out\",\n  \"outs\": \"outs\",\n  \"ovación\": \"ovacion\",\n  \"ovacionada\": \"ovacion\",\n  \"ovacionado\": \"ovacion\",\n  \"ovacionados\": \"ovacion\",\n  \"ovacionan\": \"ovacion\",\n  \"ovacionarlo\": \"ovacion\",\n  \"ovaciones\": \"ovacion\",\n  \"ovacionó\": \"ovacion\",\n  \"oval\": \"oval\",\n  \"ovalle\": \"ovall\",\n  \"ovejas\": \"ovej\",\n  \"over\": \"over\",\n  \"ovidio\": \"ovidi\",\n  \"oviedo\": \"ovied\",\n  \"ovoide\": \"ovoid\",\n  \"ovulación\": \"ovul\",\n  \"owen\": \"owen\",\n  \"oxford\": \"oxford\",\n  \"oxida\": \"oxid\",\n  \"oxidando\": \"oxid\",\n  \"oxidar\": \"oxid\",\n  \"óxidos\": \"oxid\",\n  \"oxígeno\": \"oxigen\",\n  \"oxxo\": \"oxxo\",\n  \"oyen\": \"oyen\",\n  \"oyentes\": \"oyent\",\n  \"oyeran\": \"oyer\",\n  \"oyó\": \"oyo\",\n  \"oziel\": \"oziel\",\n  \"ozono\": \"ozon\",\n  \"p\": \"p\",\n  \"pa\": \"pa\",\n  \"pabellón\": \"pabellon\",\n  \"pabilos\": \"pabil\",\n  \"pablo\": \"pabl\",\n  \"pacheco\": \"pachec\",\n  \"pacho\": \"pach\",\n  \"pachoneos\": \"pachone\",\n  \"pachuca\": \"pachuc\",\n  \"paciencia\": \"pacienci\",\n  \"paciente\": \"pacient\",\n  \"pacientes\": \"pacient\",\n  \"pacífica\": \"pacif\",\n  \"pacifico\": \"pacif\",\n  \"pacífico\": \"pacif\",\n  \"packaged\": \"packag\",\n  \"packard\": \"packard\",\n  \"paco\": \"pac\",\n  \"pactada\": \"pact\",\n  \"pactarán\": \"pact\",\n  \"pacto\": \"pact\",\n  \"pactó\": \"pact\",\n  \"padece\": \"padec\",\n  \"padecemos\": \"padec\",\n  \"padecen\": \"padec\",\n  \"padecer\": \"padec\",\n  \"padeciendo\": \"padec\",\n  \"padecieron\": \"padec\",\n  \"padecimiento\": \"padec\",\n  \"padecimientos\": \"padec\",\n  \"padilla\": \"padill\",\n  \"padre\": \"padr\",\n  \"padrecito\": \"padrecit\",\n  \"padres\": \"padr\",\n  \"padrino\": \"padrin\",\n  \"padró\": \"padr\",\n  \"padrón\": \"padron\",\n  \"padrones\": \"padron\",\n  \"páez\": \"paez\",\n  \"pag\": \"pag\",\n  \"pág\": \"pag\",\n  \"paga\": \"pag\",\n  \"pagaba\": \"pag\",\n  \"pagadas\": \"pag\",\n  \"pagado\": \"pag\",\n  \"pagados\": \"pag\",\n  \"pagamos\": \"pag\",\n  \"pagan\": \"pag\",\n  \"pagando\": \"pag\",\n  \"paganismo\": \"pagan\",\n  \"pagano\": \"pagan\",\n  \"paganos\": \"pagan\",\n  \"pagar\": \"pag\",\n  \"pagara\": \"pag\",\n  \"pagará\": \"pag\",\n  \"pagaran\": \"pag\",\n  \"pagarán\": \"pag\",\n  \"pagarían\": \"pag\",\n  \"pagarla\": \"pag\",\n  \"pagarle\": \"pag\",\n  \"pagarnos\": \"pag\",\n  \"pagaron\": \"pag\",\n  \"pagarte\": \"pagart\",\n  \"página\": \"pagin\",\n  \"páginas\": \"pagin\",\n  \"pago\": \"pag\",\n  \"pagó\": \"pag\",\n  \"pagos\": \"pag\",\n  \"pague\": \"pag\",\n  \"paguen\": \"pag\",\n  \"país\": \"pais\",\n  \"paisaje\": \"paisaj\",\n  \"paisajes\": \"paisaj\",\n  \"paisajista\": \"paisaj\",\n  \"paisajístico\": \"paisajist\",\n  \"paises\": \"pais\",\n  \"países\": \"pais\",\n  \"paja\": \"paj\",\n  \"pájaro\": \"pajar\",\n  \"pájaros\": \"pajar\",\n  \"pala\": \"pal\",\n  \"palabra\": \"palabr\",\n  \"palabras\": \"palabr\",\n  \"palabrería\": \"palabr\",\n  \"palacetes\": \"palacet\",\n  \"palacio\": \"palaci\",\n  \"palacios\": \"palaci\",\n  \"paladar\": \"palad\",\n  \"palanca\": \"palanc\",\n  \"palapa\": \"palap\",\n  \"palas\": \"pal\",\n  \"palaú\": \"palau\",\n  \"palazuelos\": \"palazuel\",\n  \"palco\": \"palc\",\n  \"palcos\": \"palc\",\n  \"pale\": \"pal\",\n  \"palencia\": \"palenci\",\n  \"palenque\": \"palenqu\",\n  \"palenques\": \"palenqu\",\n  \"paleros\": \"paler\",\n  \"palestino\": \"palestin\",\n  \"palestinos\": \"palestin\",\n  \"palestra\": \"palestr\",\n  \"paletones\": \"paleton\",\n  \"pálido\": \"pal\",\n  \"palillo\": \"palill\",\n  \"paliza\": \"paliz\",\n  \"palm\": \"palm\",\n  \"palma\": \"palm\",\n  \"palmas\": \"palm\",\n  \"palmeras\": \"palmer\",\n  \"palmitos\": \"palmit\",\n  \"palo\": \"pal\",\n  \"paloma\": \"palom\",\n  \"palomas\": \"palom\",\n  \"palomilla\": \"palomill\",\n  \"palomitas\": \"palomit\",\n  \"palomo\": \"palom\",\n  \"palos\": \"pal\",\n  \"palou\": \"palou\",\n  \"palpable\": \"palpabl\",\n  \"pam\": \"pam\",\n  \"pamela\": \"pamel\",\n  \"pampas\": \"pamp\",\n  \"pamplona\": \"pamplon\",\n  \"pan\": \"pan\",\n  \"pana\": \"pan\",\n  \"panacea\": \"panace\",\n  \"panadería\": \"panad\",\n  \"pañales\": \"pañal\",\n  \"panamá\": \"panam\",\n  \"panameño\": \"panameñ\",\n  \"panamericana\": \"panamerican\",\n  \"panamericanos\": \"panamerican\",\n  \"pancarta\": \"pancart\",\n  \"pancartas\": \"pancart\",\n  \"pancho\": \"panch\",\n  \"pancracio\": \"pancraci\",\n  \"pancrasio\": \"pancrasi\",\n  \"pandilla\": \"pandill\",\n  \"pandillas\": \"pandill\",\n  \"pandilleril\": \"pandilleril\",\n  \"pandillerismo\": \"pandiller\",\n  \"pandillero\": \"pandiller\",\n  \"pandilleros\": \"pandiller\",\n  \"panecillos\": \"panecill\",\n  \"panel\": \"panel\",\n  \"paneles\": \"panel\",\n  \"panes\": \"pan\",\n  \"paniagua\": \"paniagu\",\n  \"pánico\": \"panic\",\n  \"panista\": \"panist\",\n  \"panistas\": \"panist\",\n  \"panorama\": \"panoram\",\n  \"panorámicas\": \"panoram\",\n  \"panorámicos\": \"panoram\",\n  \"panqué\": \"panqu\",\n  \"pantalla\": \"pantall\",\n  \"pantallas\": \"pantall\",\n  \"pantalón\": \"pantalon\",\n  \"pantalones\": \"pantalon\",\n  \"panteón\": \"panteon\",\n  \"panteones\": \"panteon\",\n  \"panteras\": \"panter\",\n  \"pantorrilla\": \"pantorrill\",\n  \"pantro\": \"pantr\",\n  \"pants\": \"pants\",\n  \"pañuelos\": \"pañuel\",\n  \"panzas\": \"panz\",\n  \"paola\": \"paol\",\n  \"papa\": \"pap\",\n  \"papá\": \"pap\",\n  \"papal\": \"papal\",\n  \"papalotla\": \"papalotl\",\n  \"papás\": \"papas\",\n  \"papasquiaroa\": \"papasquiaro\",\n  \"papel\": \"papel\",\n  \"papelería\": \"papel\",\n  \"papelerías\": \"papel\",\n  \"papeles\": \"papel\",\n  \"papitas\": \"papit\",\n  \"paquete\": \"paquet\",\n  \"paquetería\": \"paquet\",\n  \"paquetes\": \"paquet\",\n  \"paquiro\": \"paquir\",\n  \"par\": \"par\",\n  \"para\": \"par\",\n  \"paraba\": \"par\",\n  \"parabólicas\": \"parabol\",\n  \"parabrisas\": \"parabris\",\n  \"paracaídas\": \"paracaid\",\n  \"parada\": \"par\",\n  \"paradas\": \"par\",\n  \"parado\": \"par\",\n  \"paradojas\": \"paradoj\",\n  \"paradójicamente\": \"paradoj\",\n  \"parados\": \"par\",\n  \"paraestatal\": \"paraestatal\",\n  \"parafinas\": \"parafin\",\n  \"parafraseando\": \"parafras\",\n  \"paráfrasis\": \"parafrasis\",\n  \"paraguay\": \"paraguay\",\n  \"paraguayo\": \"paraguay\",\n  \"paraíso\": \"parais\",\n  \"paraje\": \"paraj\",\n  \"paralela\": \"paralel\",\n  \"paralelamente\": \"paralel\",\n  \"paralelas\": \"paralel\",\n  \"paralelismo\": \"paralel\",\n  \"paralelo\": \"paralel\",\n  \"paralelos\": \"paralel\",\n  \"parálisis\": \"paralisis\",\n  \"paralítico\": \"paralit\",\n  \"paralizan\": \"paraliz\",\n  \"paralizando\": \"paraliz\",\n  \"paralizante\": \"paraliz\",\n  \"paralizar\": \"paraliz\",\n  \"paralizaron\": \"paraliz\",\n  \"paralizó\": \"paraliz\",\n  \"parámetro\": \"parametr\",\n  \"parámetros\": \"parametr\",\n  \"paran\": \"par\",\n  \"parando\": \"par\",\n  \"paraninfo\": \"paraninf\",\n  \"parar\": \"par\",\n  \"parara\": \"par\",\n  \"pararme\": \"par\",\n  \"pararse\": \"par\",\n  \"parás\": \"paras\",\n  \"parcial\": \"parcial\",\n  \"parciales\": \"parcial\",\n  \"parcialidad\": \"parcial\",\n  \"parcialmente\": \"parcial\",\n  \"parece\": \"parec\",\n  \"parecemos\": \"parec\",\n  \"parecen\": \"parec\",\n  \"parecer\": \"parec\",\n  \"parecería\": \"parec\",\n  \"parecerían\": \"parec\",\n  \"parecerse\": \"parec\",\n  \"parecía\": \"parec\",\n  \"parecían\": \"parec\",\n  \"parecida\": \"parec\",\n  \"parecidas\": \"parec\",\n  \"parecido\": \"parec\",\n  \"pareciendo\": \"parec\",\n  \"parecieron\": \"parec\",\n  \"pareciese\": \"parec\",\n  \"pareció\": \"parec\",\n  \"pared\": \"par\",\n  \"paredes\": \"pared\",\n  \"pareja\": \"parej\",\n  \"parejas\": \"parej\",\n  \"parejos\": \"parej\",\n  \"paremos\": \"par\",\n  \"paréntesis\": \"parentesis\",\n  \"pares\": \"par\",\n  \"parezca\": \"parezc\",\n  \"parga\": \"parg\",\n  \"pariente\": \"parient\",\n  \"parientes\": \"parient\",\n  \"parietal\": \"parietal\",\n  \"paris\": \"paris\",\n  \"parís\": \"par\",\n  \"parisino\": \"parisin\",\n  \"park\": \"park\",\n  \"parkas\": \"park\",\n  \"parker\": \"park\",\n  \"parlamentaria\": \"parlamentari\",\n  \"parlamentarias\": \"parlamentari\",\n  \"parlamentario\": \"parlamentari\",\n  \"parlamentarios\": \"parlamentari\",\n  \"parlamento\": \"parlament\",\n  \"parm\": \"parm\",\n  \"parmista\": \"parmist\",\n  \"paro\": \"par\",\n  \"paró\": \"par\",\n  \"parodiando\": \"parodi\",\n  \"paros\": \"par\",\n  \"párpados\": \"parp\",\n  \"parque\": \"parqu\",\n  \"parquedad\": \"parqued\",\n  \"parques\": \"parqu\",\n  \"parquimetrero\": \"parquimetrer\",\n  \"parquímetro\": \"parquimetr\",\n  \"parquímetros\": \"parquimetr\",\n  \"parra\": \"parr\",\n  \"párrafo\": \"parraf\",\n  \"parranda\": \"parrand\",\n  \"parricidas\": \"parric\",\n  \"parricidio\": \"parricidi\",\n  \"parrilla\": \"parrill\",\n  \"párroco\": \"parroc\",\n  \"parroquia\": \"parroqui\",\n  \"parroquiales\": \"parroquial\",\n  \"parroquiano\": \"parroquian\",\n  \"parroquias\": \"parroqui\",\n  \"parsons\": \"parsons\",\n  \"parte\": \"part\",\n  \"parteaguas\": \"parteagu\",\n  \"parten\": \"part\",\n  \"partes\": \"part\",\n  \"participa\": \"particip\",\n  \"participaba\": \"particip\",\n  \"participaban\": \"particip\",\n  \"participación\": \"particip\",\n  \"participaciones\": \"particip\",\n  \"participado\": \"particip\",\n  \"participamos\": \"particip\",\n  \"participan\": \"particip\",\n  \"participando\": \"particip\",\n  \"participante\": \"particip\",\n  \"participantes\": \"particip\",\n  \"participar\": \"particip\",\n  \"participara\": \"particip\",\n  \"participará\": \"particip\",\n  \"participarán\": \"particip\",\n  \"participarían\": \"particip\",\n  \"participaron\": \"particip\",\n  \"participativos\": \"particip\",\n  \"participe\": \"particip\",\n  \"participen\": \"particip\",\n  \"partícipes\": \"particip\",\n  \"participó\": \"particip\",\n  \"particular\": \"particul\",\n  \"particulares\": \"particular\",\n  \"particularmente\": \"particular\",\n  \"partículas\": \"particul\",\n  \"partida\": \"part\",\n  \"partidaria\": \"partidari\",\n  \"partidario\": \"partidari\",\n  \"partidarios\": \"partidari\",\n  \"partidas\": \"part\",\n  \"partidazo\": \"partidaz\",\n  \"partidero\": \"partider\",\n  \"partidistas\": \"partid\",\n  \"partido\": \"part\",\n  \"partidos\": \"part\",\n  \"partiendo\": \"part\",\n  \"partiera\": \"part\",\n  \"partieron\": \"part\",\n  \"partió\": \"part\",\n  \"partir\": \"part\",\n  \"partirá\": \"part\",\n  \"partirán\": \"part\",\n  \"parto\": \"part\",\n  \"partos\": \"part\",\n  \"parturienta\": \"parturient\",\n  \"parvada\": \"parv\",\n  \"pasa\": \"pas\",\n  \"pasaba\": \"pas\",\n  \"pasaban\": \"pas\",\n  \"pasacassettes\": \"pasacassett\",\n  \"pasada\": \"pas\",\n  \"pasadas\": \"pas\",\n  \"pasado\": \"pas\",\n  \"pasadores\": \"pasador\",\n  \"pasados\": \"pas\",\n  \"pasaje\": \"pasaj\",\n  \"pasajera\": \"pasajer\",\n  \"pasajeros\": \"pasajer\",\n  \"pasajes\": \"pasaj\",\n  \"pasamayo\": \"pasamay\",\n  \"pasamos\": \"pas\",\n  \"pasan\": \"pas\",\n  \"pasando\": \"pas\",\n  \"pasante\": \"pasant\",\n  \"pasaporte\": \"pasaport\",\n  \"pasar\": \"pas\",\n  \"pasara\": \"pas\",\n  \"pasará\": \"pas\",\n  \"pasarán\": \"pas\",\n  \"pasarela\": \"pasarel\",\n  \"pasarelas\": \"pasarel\",\n  \"pasaría\": \"pas\",\n  \"pasarían\": \"pas\",\n  \"pasarle\": \"pas\",\n  \"pasarles\": \"pas\",\n  \"pasaron\": \"pas\",\n  \"pasarse\": \"pas\",\n  \"pasatiempo\": \"pasatiemp\",\n  \"pascal\": \"pascal\",\n  \"pasco\": \"pasc\",\n  \"pascua\": \"pascu\",\n  \"pascual\": \"pascual\",\n  \"pascuense\": \"pascuens\",\n  \"pase\": \"pas\",\n  \"pasé\": \"pas\",\n  \"pasean\": \"pas\",\n  \"pasear\": \"pas\",\n  \"pasearon\": \"pas\",\n  \"pásele\": \"pasel\",\n  \"pasen\": \"pas\",\n  \"paseño\": \"paseñ\",\n  \"paseo\": \"pase\",\n  \"paseó\": \"pase\",\n  \"paseos\": \"pase\",\n  \"pases\": \"pas\",\n  \"pasillo\": \"pasill\",\n  \"pasillos\": \"pasill\",\n  \"pasión\": \"pasion\",\n  \"pasional\": \"pasional\",\n  \"pasiones\": \"pasion\",\n  \"pasiva\": \"pasiv\",\n  \"pasivo\": \"pasiv\",\n  \"pasivos\": \"pasiv\",\n  \"paso\": \"pas\",\n  \"pasó\": \"pas\",\n  \"pasos\": \"pas\",\n  \"pasquinal\": \"pasquinal\",\n  \"passarella\": \"passarell\",\n  \"pasta\": \"past\",\n  \"pastillas\": \"pastill\",\n  \"pasto\": \"past\",\n  \"pastor\": \"pastor\",\n  \"pastora\": \"pastor\",\n  \"pastoral\": \"pastoral\",\n  \"pastoriza\": \"pastoriz\",\n  \"pata\": \"pat\",\n  \"patadas\": \"pat\",\n  \"patas\": \"pat\",\n  \"pateadores\": \"pateador\",\n  \"patearon\": \"pat\",\n  \"patentara\": \"patent\",\n  \"patentarlo\": \"patent\",\n  \"patente\": \"patent\",\n  \"patentes\": \"patent\",\n  \"paternal\": \"paternal\",\n  \"paternalismo\": \"paternal\",\n  \"paternalista\": \"paternal\",\n  \"paternalistas\": \"paternal\",\n  \"paternos\": \"pat\",\n  \"patéticamente\": \"patet\",\n  \"patéticos\": \"patet\",\n  \"path\": \"path\",\n  \"patinamos\": \"patin\",\n  \"patiñazo\": \"patiñaz\",\n  \"patiño\": \"patiñ\",\n  \"patio\": \"pati\",\n  \"patito\": \"patit\",\n  \"pato\": \"pat\",\n  \"patológico\": \"patolog\",\n  \"patos\": \"pat\",\n  \"patria\": \"patri\",\n  \"patriarca\": \"patriarc\",\n  \"patriarcas\": \"patriarc\",\n  \"patricia\": \"patrici\",\n  \"patricio\": \"patrici\",\n  \"patricios\": \"patrici\",\n  \"patrick\": \"patrick\",\n  \"patrimonial\": \"patrimonial\",\n  \"patrimoniales\": \"patrimonial\",\n  \"patrimonio\": \"patrimoni\",\n  \"patrio\": \"patri\",\n  \"patrios\": \"patri\",\n  \"patriot\": \"patriot\",\n  \"patrocinada\": \"patrocin\",\n  \"patrocinado\": \"patrocin\",\n  \"patrocinador\": \"patrocin\",\n  \"patrocinadores\": \"patrocin\",\n  \"patrocinio\": \"patrocini\",\n  \"patrón\": \"patron\",\n  \"patrona\": \"patron\",\n  \"patronal\": \"patronal\",\n  \"patronales\": \"patronal\",\n  \"patronato\": \"patronat\",\n  \"patrones\": \"patron\",\n  \"patrulla\": \"patrull\",\n  \"patrullas\": \"patrull\",\n  \"patrulleros\": \"patruller\",\n  \"patty\": \"patty\",\n  \"paty\": \"paty\",\n  \"paul\": \"paul\",\n  \"paúl\": \"paul\",\n  \"paulatina\": \"paulatin\",\n  \"paulatinamente\": \"paulatin\",\n  \"paulatino\": \"paulatin\",\n  \"paulina\": \"paulin\",\n  \"paulino\": \"paulin\",\n  \"paullada\": \"paull\",\n  \"paulo\": \"paul\",\n  \"pausa\": \"paus\",\n  \"pausada\": \"paus\",\n  \"pausadamente\": \"pausad\",\n  \"pausas\": \"paus\",\n  \"pauta\": \"paut\",\n  \"pavimentación\": \"paviment\",\n  \"pavimentada\": \"paviment\",\n  \"pavimentado\": \"paviment\",\n  \"pavimentados\": \"paviment\",\n  \"pavimentar\": \"paviment\",\n  \"pavimento\": \"paviment\",\n  \"pavor\": \"pavor\",\n  \"payán\": \"payan\",\n  \"payasadas\": \"payas\",\n  \"paz\": \"paz\",\n  \"pc\": \"pc\",\n  \"pclab\": \"pclab\",\n  \"pdcc\": \"pdcc\",\n  \"pdm\": \"pdm\",\n  \"peabody\": \"peabody\",\n  \"peaje\": \"peaj\",\n  \"pearl\": \"pearl\",\n  \"peatones\": \"peaton\",\n  \"pecado\": \"pec\",\n  \"pecador\": \"pecador\",\n  \"pecadores\": \"pecador\",\n  \"pecaminosa\": \"pecamin\",\n  \"pecará\": \"pec\",\n  \"pece\": \"pec\",\n  \"peces\": \"pec\",\n  \"pechera\": \"pecher\",\n  \"pecho\": \"pech\",\n  \"pecina\": \"pecin\",\n  \"pectoral\": \"pectoral\",\n  \"pectorales\": \"pectoral\",\n  \"peculiar\": \"peculi\",\n  \"peculiares\": \"peculiar\",\n  \"peculiaridad\": \"peculiar\",\n  \"peculiaridades\": \"peculiar\",\n  \"pedagogía\": \"pedagog\",\n  \"pedagógica\": \"pedagog\",\n  \"pedagógicas\": \"pedagog\",\n  \"pedagógicos\": \"pedagog\",\n  \"pedalista\": \"pedal\",\n  \"pedalistas\": \"pedal\",\n  \"pedazos\": \"pedaz\",\n  \"pedía\": \"ped\",\n  \"pedían\": \"ped\",\n  \"pediatra\": \"pediatr\",\n  \"pediatría\": \"pediatr\",\n  \"pediátrica\": \"pediatr\",\n  \"pedida\": \"ped\",\n  \"pedido\": \"ped\",\n  \"pedidores\": \"pedidor\",\n  \"pedidos\": \"ped\",\n  \"pedimento\": \"pediment\",\n  \"pedimentos\": \"pediment\",\n  \"pedimos\": \"ped\",\n  \"pedir\": \"ped\",\n  \"pedirá\": \"ped\",\n  \"pedirán\": \"ped\",\n  \"pediré\": \"ped\",\n  \"pediría\": \"ped\",\n  \"pedirle\": \"ped\",\n  \"pedirles\": \"ped\",\n  \"pedirlo\": \"ped\",\n  \"pedomo\": \"pedom\",\n  \"pedrada\": \"pedr\",\n  \"pedradas\": \"pedr\",\n  \"pedraza\": \"pedraz\",\n  \"pedreras\": \"pedrer\",\n  \"pedrería\": \"pedr\",\n  \"pedrín\": \"pedrin\",\n  \"pedro\": \"pedr\",\n  \"pega\": \"peg\",\n  \"pegada\": \"peg\",\n  \"pegado\": \"peg\",\n  \"pegamento\": \"pegament\",\n  \"pegando\": \"peg\",\n  \"pegar\": \"peg\",\n  \"pegaran\": \"peg\",\n  \"pegarle\": \"peg\",\n  \"pegaron\": \"peg\",\n  \"pegó\": \"peg\",\n  \"pegote\": \"pegot\",\n  \"pegotes\": \"pegot\",\n  \"pegue\": \"peg\",\n  \"peinado\": \"pein\",\n  \"peinó\": \"pein\",\n  \"pelado\": \"pel\",\n  \"peláez\": \"pelaez\",\n  \"pelar\": \"pel\",\n  \"peldaños\": \"peldañ\",\n  \"pelé\": \"pel\",\n  \"pelea\": \"pele\",\n  \"peleado\": \"pel\",\n  \"pelean\": \"pel\",\n  \"peleando\": \"pel\",\n  \"pelear\": \"pel\",\n  \"peleará\": \"pel\",\n  \"pelearan\": \"pel\",\n  \"pelearon\": \"pel\",\n  \"peleas\": \"pel\",\n  \"peleen\": \"pel\",\n  \"peleles\": \"pelel\",\n  \"peleo\": \"pele\",\n  \"peleó\": \"pele\",\n  \"pelicula\": \"pelicul\",\n  \"película\": \"pelicul\",\n  \"películas\": \"pelicul\",\n  \"peligro\": \"peligr\",\n  \"peligros\": \"peligr\",\n  \"peligrosa\": \"peligr\",\n  \"peligrosamente\": \"peligr\",\n  \"peligrosas\": \"peligr\",\n  \"peligroso\": \"peligr\",\n  \"peligrosos\": \"peligr\",\n  \"pelletier\": \"pelleti\",\n  \"pello\": \"pell\",\n  \"pelo\": \"pel\",\n  \"pelos\": \"pel\",\n  \"pelota\": \"pelot\",\n  \"pelotero\": \"peloter\",\n  \"peloteros\": \"peloter\",\n  \"pelotón\": \"peloton\",\n  \"peluche\": \"peluch\",\n  \"peluquerías\": \"peluqu\",\n  \"pemex\": \"pemex\",\n  \"pena\": \"pen\",\n  \"peña\": \"peñ\",\n  \"penal\": \"penal\",\n  \"penales\": \"penal\",\n  \"penalidad\": \"penal\",\n  \"penalmente\": \"penal\",\n  \"penalty\": \"penalty\",\n  \"penas\": \"pen\",\n  \"peñascos\": \"peñasc\",\n  \"pendiente\": \"pendient\",\n  \"pendientes\": \"pendient\",\n  \"pendleton\": \"pendleton\",\n  \"penetracion\": \"penetracion\",\n  \"penetración\": \"penetr\",\n  \"penetrados\": \"penetr\",\n  \"penetran\": \"penetr\",\n  \"penetrante\": \"penetr\",\n  \"penetrar\": \"penetr\",\n  \"peniche\": \"penich\",\n  \"península\": \"peninsul\",\n  \"peninsulares\": \"peninsular\",\n  \"penitenciarios\": \"penitenciari\",\n  \"penn\": \"penn\",\n  \"pennsylvania\": \"pennsylvani\",\n  \"penoso\": \"penos\",\n  \"pensaba\": \"pens\",\n  \"pensabamos\": \"pensab\",\n  \"pensaban\": \"pens\",\n  \"pensado\": \"pens\",\n  \"pensadores\": \"pensador\",\n  \"pensamiento\": \"pensamient\",\n  \"pensamos\": \"pens\",\n  \"pensando\": \"pens\",\n  \"pensantes\": \"pensant\",\n  \"pensar\": \"pens\",\n  \"pensarse\": \"pens\",\n  \"pensativa\": \"pensat\",\n  \"pensé\": \"pens\",\n  \"pensemos\": \"pens\",\n  \"pensilvania\": \"pensilvani\",\n  \"pensión\": \"pension\",\n  \"pensionados\": \"pension\",\n  \"pensiones\": \"pension\",\n  \"pensó\": \"pens\",\n  \"pentágono\": \"pentagon\",\n  \"pentathlón\": \"pentathlon\",\n  \"pentecostés\": \"pentecostes\",\n  \"pentotal\": \"pentotal\",\n  \"penúltimo\": \"penultim\",\n  \"penurias\": \"penuri\",\n  \"peor\": \"peor\",\n  \"peores\": \"peor\",\n  \"pepe\": \"pep\",\n  \"peppers\": \"peppers\",\n  \"pequeña\": \"pequeñ\",\n  \"pequeñas\": \"pequeñ\",\n  \"pequeñísima\": \"pequeñisim\",\n  \"pequeñísimo\": \"pequeñisim\",\n  \"pequeñita\": \"pequeñit\",\n  \"pequeño\": \"pequeñ\",\n  \"pequeños\": \"pequeñ\",\n  \"per\": \"per\",\n  \"perales\": \"peral\",\n  \"peraza\": \"peraz\",\n  \"percance\": \"percanc\",\n  \"percances\": \"percanc\",\n  \"percata\": \"percat\",\n  \"percatado\": \"percat\",\n  \"percatarse\": \"percat\",\n  \"percató\": \"percat\",\n  \"percepción\": \"percepcion\",\n  \"percepciones\": \"percepcion\",\n  \"perciban\": \"percib\",\n  \"percibe\": \"percib\",\n  \"perciben\": \"percib\",\n  \"percusiones\": \"percusion\",\n  \"percusionistas\": \"percusion\",\n  \"perdedores\": \"perdedor\",\n  \"perdemos\": \"perd\",\n  \"perder\": \"perd\",\n  \"perderá\": \"perd\",\n  \"perderán\": \"perd\",\n  \"perderían\": \"perd\",\n  \"perderla\": \"perd\",\n  \"perderlo\": \"perd\",\n  \"perdí\": \"perd\",\n  \"perdición\": \"perdicion\",\n  \"perdida\": \"perd\",\n  \"pérdida\": \"perd\",\n  \"perdidas\": \"perd\",\n  \"pérdidas\": \"perd\",\n  \"perdido\": \"perd\",\n  \"perdidos\": \"perd\",\n  \"perdiendo\": \"perd\",\n  \"perdiera\": \"perd\",\n  \"perdieran\": \"perd\",\n  \"perdieron\": \"perd\",\n  \"perdió\": \"perd\",\n  \"perdomo\": \"perdom\",\n  \"perdón\": \"perdon\",\n  \"perdonarlos\": \"perdon\",\n  \"perdones\": \"perdon\",\n  \"perea\": \"pere\",\n  \"perecieron\": \"perec\",\n  \"pereda\": \"pered\",\n  \"peregrina\": \"peregrin\",\n  \"peregrinación\": \"peregrin\",\n  \"peregrino\": \"peregrin\",\n  \"perenne\": \"perenn\",\n  \"pereyra\": \"pereyr\",\n  \"perez\": \"perez\",\n  \"pérez\": \"perez\",\n  \"perfección\": \"perfeccion\",\n  \"perfeccionamiento\": \"perfeccion\",\n  \"perfeccionar\": \"perfeccion\",\n  \"perfeccionarlo\": \"perfeccion\",\n  \"perfeccione\": \"perfeccion\",\n  \"perfectamente\": \"perfect\",\n  \"perfecto\": \"perfect\",\n  \"perfectos\": \"perfect\",\n  \"perfidiana\": \"perfidian\",\n  \"perfil\": \"perfil\",\n  \"perfila\": \"perfil\",\n  \"perfilaba\": \"perfil\",\n  \"perfilan\": \"perfil\",\n  \"perfiles\": \"perfil\",\n  \"perfoliata\": \"perfoliat\",\n  \"perforación\": \"perfor\",\n  \"perforado\": \"perfor\",\n  \"perforar\": \"perfor\",\n  \"performance\": \"performanc\",\n  \"pergaminos\": \"pergamin\",\n  \"pericia\": \"perici\",\n  \"periciales\": \"pericial\",\n  \"pericos\": \"peric\",\n  \"periférica\": \"perifer\",\n  \"periféricas\": \"perifer\",\n  \"periférico\": \"perifer\",\n  \"periféricos\": \"perifer\",\n  \"perigord\": \"perigord\",\n  \"perillas\": \"perill\",\n  \"perimetral\": \"perimetral\",\n  \"periódicamente\": \"period\",\n  \"periódicas\": \"period\",\n  \"períodico\": \"period\",\n  \"periódico\": \"period\",\n  \"periódicos\": \"period\",\n  \"periodismo\": \"period\",\n  \"periodista\": \"period\",\n  \"periodistas\": \"period\",\n  \"periodística\": \"periodist\",\n  \"periodísticas\": \"periodist\",\n  \"periodístico\": \"periodist\",\n  \"periodo\": \"period\",\n  \"período\": \"period\",\n  \"periodos\": \"period\",\n  \"períodos\": \"period\",\n  \"perjudica\": \"perjud\",\n  \"perjudicada\": \"perjudic\",\n  \"perjudicado\": \"perjudic\",\n  \"perjudicados\": \"perjudic\",\n  \"perjudican\": \"perjudic\",\n  \"perjudicar\": \"perjudic\",\n  \"perjudicará\": \"perjudic\",\n  \"perjudicial\": \"perjudicial\",\n  \"perjudicó\": \"perjudic\",\n  \"perjuicio\": \"perjuici\",\n  \"perjuicios\": \"perjuici\",\n  \"perla\": \"perl\",\n  \"perlas\": \"perl\",\n  \"permanece\": \"permanec\",\n  \"permanecen\": \"permanec\",\n  \"permanecer\": \"permanec\",\n  \"permanecerá\": \"permanec\",\n  \"permanecerán\": \"permanec\",\n  \"permaneceremos\": \"permanec\",\n  \"permanecía\": \"permanec\",\n  \"permanecían\": \"permanec\",\n  \"permanecido\": \"permanec\",\n  \"permaneciendo\": \"permanec\",\n  \"permanecieran\": \"permanec\",\n  \"permanecieron\": \"permanec\",\n  \"permaneció\": \"permanec\",\n  \"permanencia\": \"permanent\",\n  \"permanente\": \"permanent\",\n  \"permanentemente\": \"permanent\",\n  \"permanentes\": \"permanent\",\n  \"permanezca\": \"permanezc\",\n  \"permanezcan\": \"permanezc\",\n  \"permisibles\": \"permis\",\n  \"permisionario\": \"permisionari\",\n  \"permisionarios\": \"permisionari\",\n  \"permiso\": \"permis\",\n  \"permisos\": \"permis\",\n  \"permita\": \"permit\",\n  \"permítame\": \"permitam\",\n  \"permitan\": \"permit\",\n  \"permite\": \"permit\",\n  \"permiten\": \"permit\",\n  \"permitía\": \"permit\",\n  \"permitida\": \"permit\",\n  \"permitidas\": \"permit\",\n  \"permitido\": \"permit\",\n  \"permitiendo\": \"permit\",\n  \"permitiéndole\": \"permit\",\n  \"permitiera\": \"permit\",\n  \"permitieron\": \"permit\",\n  \"permitió\": \"permit\",\n  \"permitir\": \"permit\",\n  \"permitirá\": \"permit\",\n  \"permitirán\": \"permit\",\n  \"permitiré\": \"permit\",\n  \"permitiría\": \"permit\",\n  \"permitirían\": \"permit\",\n  \"permitirles\": \"permit\",\n  \"permitirse\": \"permit\",\n  \"pernada\": \"pern\",\n  \"perniciosas\": \"pernici\",\n  \"pernicioso\": \"pernici\",\n  \"pernoctó\": \"pernoct\",\n  \"pero\": \"per\",\n  \"perpetra\": \"perpetr\",\n  \"perpetrada\": \"perpetr\",\n  \"perpetrados\": \"perpetr\",\n  \"perpetua\": \"perpetu\",\n  \"perpetúan\": \"perpetu\",\n  \"perpetuarse\": \"perpetu\",\n  \"perplejidad\": \"perplej\",\n  \"perplejo\": \"perplej\",\n  \"perredista\": \"perred\",\n  \"perredistas\": \"perred\",\n  \"perro\": \"perr\",\n  \"perros\": \"perr\",\n  \"perry\": \"perry\",\n  \"persecución\": \"persecu\",\n  \"persecutoria\": \"persecutori\",\n  \"persecutorias\": \"persecutori\",\n  \"perseguida\": \"persegu\",\n  \"perseguidor\": \"perseguidor\",\n  \"perseguidores\": \"perseguidor\",\n  \"perseguidos\": \"persegu\",\n  \"perseguirlos\": \"persegu\",\n  \"persiga\": \"persig\",\n  \"persiste\": \"pers\",\n  \"persisten\": \"persist\",\n  \"persistencia\": \"persistent\",\n  \"persistente\": \"persistent\",\n  \"persistir\": \"persist\",\n  \"persona\": \"person\",\n  \"personaje\": \"personaj\",\n  \"personajes\": \"personaj\",\n  \"personal\": \"personal\",\n  \"personales\": \"personal\",\n  \"personalidad\": \"personal\",\n  \"personalidades\": \"personal\",\n  \"personalizar\": \"personaliz\",\n  \"personalizarlo\": \"personaliz\",\n  \"personalmente\": \"personal\",\n  \"personas\": \"person\",\n  \"personifica\": \"personif\",\n  \"personificará\": \"personific\",\n  \"perspectiva\": \"perspect\",\n  \"perspectivas\": \"perspect\",\n  \"perspicacia\": \"perspicaci\",\n  \"persuadir\": \"persuad\",\n  \"pertenece\": \"pertenec\",\n  \"pertenecen\": \"pertenec\",\n  \"pertenecer\": \"pertenec\",\n  \"pertenecía\": \"pertenec\",\n  \"perteneciendo\": \"pertenec\",\n  \"perteneciente\": \"pertenecient\",\n  \"pertenecientes\": \"pertenecient\",\n  \"pertenecieron\": \"pertenec\",\n  \"perteneció\": \"pertenec\",\n  \"pertenencias\": \"pertenent\",\n  \"pértiga\": \"pertig\",\n  \"pertinaces\": \"pertinac\",\n  \"pertinente\": \"pertinent\",\n  \"pertinentes\": \"pertinent\",\n  \"perturba\": \"perturb\",\n  \"perturbación\": \"perturb\",\n  \"perturbemos\": \"perturb\",\n  \"perturbó\": \"perturb\",\n  \"perú\": \"peru\",\n  \"peruana\": \"peruan\",\n  \"peruano\": \"peruan\",\n  \"peruanos\": \"peruan\",\n  \"perversas\": \"pervers\",\n  \"perversión\": \"perversion\",\n  \"perversiones\": \"perversion\",\n  \"perversos\": \"pervers\",\n  \"pervivencia\": \"pervivent\",\n  \"pesa\": \"pes\",\n  \"pesadas\": \"pes\",\n  \"pesadez\": \"pesadez\",\n  \"pesadilla\": \"pesadill\",\n  \"pesado\": \"pes\",\n  \"pesados\": \"pes\",\n  \"pesaje\": \"pesaj\",\n  \"pesar\": \"pes\",\n  \"pesas\": \"pes\",\n  \"pesca\": \"pesc\",\n  \"pescadores\": \"pescador\",\n  \"pescados\": \"pesc\",\n  \"pese\": \"pes\",\n  \"peseras\": \"peser\",\n  \"peseta\": \"peset\",\n  \"pesetas\": \"peset\",\n  \"pésima\": \"pesim\",\n  \"pesimista\": \"pesim\",\n  \"pesimistas\": \"pesim\",\n  \"pésimo\": \"pesim\",\n  \"peso\": \"pes\",\n  \"pesó\": \"pes\",\n  \"pesos\": \"pes\",\n  \"pespuntes\": \"pespunt\",\n  \"pesqueira\": \"pesqueir\",\n  \"pesquería\": \"pesqu\",\n  \"pesqueros\": \"pesquer\",\n  \"pesticida\": \"pestic\",\n  \"pesticidas\": \"pestic\",\n  \"petate\": \"petat\",\n  \"pete\": \"pet\",\n  \"peter\": \"pet\",\n  \"petición\": \"peticion\",\n  \"peticiones\": \"peticion\",\n  \"petit\": \"petit\",\n  \"peto\": \"pet\",\n  \"petra\": \"petr\",\n  \"petrel\": \"petrel\",\n  \"petróleo\": \"petrole\",\n  \"petróleos\": \"petrole\",\n  \"petrolera\": \"petroler\",\n  \"petroleras\": \"petroler\",\n  \"petrolero\": \"petroler\",\n  \"petroleros\": \"petroler\",\n  \"petrolizar\": \"petroliz\",\n  \"petroquímica\": \"petroquim\",\n  \"petroquímicas\": \"petroquim\",\n  \"petrov\": \"petrov\",\n  \"peyote\": \"peyot\",\n  \"peza\": \"pez\",\n  \"pfcrn\": \"pfcrn\",\n  \"pfcyp\": \"pfcyp\",\n  \"pfeiffer\": \"pfeiff\",\n  \"pgjdf\": \"pgjdf\",\n  \"pgr\": \"pgr\",\n  \"ph\": \"ph\",\n  \"philip\": \"philip\",\n  \"philippe\": \"philipp\",\n  \"phillips\": \"phillips\",\n  \"philos\": \"phil\",\n  \"piales\": \"pial\",\n  \"pianista\": \"pianist\",\n  \"piano\": \"pian\",\n  \"pib\": \"pib\",\n  \"picaba\": \"pic\",\n  \"picado\": \"pic\",\n  \"picadores\": \"picador\",\n  \"pican\": \"pic\",\n  \"picante\": \"picant\",\n  \"pichardo\": \"pichard\",\n  \"pichichis\": \"pichichis\",\n  \"pick\": \"pick\",\n  \"pico\": \"pic\",\n  \"picos\": \"pic\",\n  \"pictórica\": \"pictor\",\n  \"pictóricas\": \"pictor\",\n  \"pida\": \"pid\",\n  \"pidan\": \"pid\",\n  \"pidas\": \"pid\",\n  \"pide\": \"pid\",\n  \"piden\": \"pid\",\n  \"pidiendo\": \"pid\",\n  \"pidiéndoles\": \"pid\",\n  \"pidieron\": \"pid\",\n  \"pidió\": \"pid\",\n  \"pido\": \"pid\",\n  \"pie\": \"pie\",\n  \"piedad\": \"pied\",\n  \"piedra\": \"piedr\",\n  \"piedras\": \"piedr\",\n  \"piedrecita\": \"piedrecit\",\n  \"piedritas\": \"piedrit\",\n  \"piel\": \"piel\",\n  \"pieles\": \"piel\",\n  \"pienda\": \"piend\",\n  \"piensa\": \"piens\",\n  \"piensan\": \"piens\",\n  \"piense\": \"piens\",\n  \"piensen\": \"piens\",\n  \"pienso\": \"piens\",\n  \"pierce\": \"pierc\",\n  \"pierda\": \"pierd\",\n  \"pierdan\": \"pierd\",\n  \"pierde\": \"pierd\",\n  \"pierden\": \"pierd\",\n  \"pierdo\": \"pierd\",\n  \"pierna\": \"piern\",\n  \"piernas\": \"piern\",\n  \"pierre\": \"pierr\",\n  \"pies\": \"pies\",\n  \"pieza\": \"piez\",\n  \"piezas\": \"piez\",\n  \"pifia\": \"pifi\",\n  \"pigmento\": \"pigment\",\n  \"pigmentosa\": \"pigment\",\n  \"pila\": \"pil\",\n  \"pilar\": \"pil\",\n  \"pilares\": \"pilar\",\n  \"pilas\": \"pil\",\n  \"píldora\": \"pildor\",\n  \"píldoras\": \"pildor\",\n  \"pillma\": \"pillm\",\n  \"pilón\": \"pilon\",\n  \"piloncillo\": \"piloncill\",\n  \"piloteando\": \"pilot\",\n  \"piloteó\": \"pilote\",\n  \"piloto\": \"pilot\",\n  \"pilotos\": \"pilot\",\n  \"pimentel\": \"pimentel\",\n  \"piña\": \"piñ\",\n  \"pinacoteca\": \"pinacotec\",\n  \"pinal\": \"pinal\",\n  \"piñaolayas\": \"piñaolay\",\n  \"piñas\": \"piñ\",\n  \"pinchado\": \"pinch\",\n  \"pinchazo\": \"pinchaz\",\n  \"pinchó\": \"pinch\",\n  \"pino\": \"pin\",\n  \"pinochet\": \"pinochet\",\n  \"pinos\": \"pin\",\n  \"pinta\": \"pint\",\n  \"pintaban\": \"pint\",\n  \"pintada\": \"pint\",\n  \"pintadas\": \"pint\",\n  \"pintado\": \"pint\",\n  \"pintados\": \"pint\",\n  \"pintan\": \"pint\",\n  \"pintando\": \"pint\",\n  \"pintar\": \"pint\",\n  \"pintarlas\": \"pint\",\n  \"pintarlo\": \"pint\",\n  \"pintaron\": \"pint\",\n  \"pintas\": \"pint\",\n  \"pintor\": \"pintor\",\n  \"pintora\": \"pintor\",\n  \"pintores\": \"pintor\",\n  \"pintura\": \"pintur\",\n  \"pinturas\": \"pintur\",\n  \"pinzón\": \"pinzon\",\n  \"pío\": \"pio\",\n  \"pionera\": \"pioner\",\n  \"pionero\": \"pioner\",\n  \"pioneros\": \"pioner\",\n  \"pipa\": \"pip\",\n  \"piquetes\": \"piquet\",\n  \"piramidal\": \"piramidal\",\n  \"pirata\": \"pirat\",\n  \"piratas\": \"pirat\",\n  \"pirate\": \"pirat\",\n  \"pirateando\": \"pirat\",\n  \"piretro\": \"piretr\",\n  \"piri\": \"piri\",\n  \"piropeado\": \"pirop\",\n  \"pirulina\": \"pirulin\",\n  \"pisaba\": \"pis\",\n  \"pisado\": \"pis\",\n  \"pisando\": \"pis\",\n  \"pisen\": \"pis\",\n  \"piso\": \"pis\",\n  \"pisos\": \"pis\",\n  \"pisoteaban\": \"pisot\",\n  \"pisoteada\": \"pisot\",\n  \"pisoteando\": \"pisot\",\n  \"pisotear\": \"pisot\",\n  \"pisoteen\": \"pisot\",\n  \"pista\": \"pist\",\n  \"pistas\": \"pist\",\n  \"pistola\": \"pistol\",\n  \"pistolas\": \"pistol\",\n  \"pitas\": \"pit\",\n  \"pitcheado\": \"pitch\",\n  \"pitcheo\": \"pitche\",\n  \"pitcher\": \"pitch\",\n  \"pítcher\": \"pitch\",\n  \"piti\": \"piti\",\n  \"pito\": \"pit\",\n  \"pitol\": \"pitol\",\n  \"pitoncitos\": \"pitoncit\",\n  \"pits\": \"pits\",\n  \"pittsburgh\": \"pittsburgh\",\n  \"pitufos\": \"pituf\",\n  \"pivote\": \"pivot\",\n  \"pizarro\": \"pizarr\",\n  \"pizarrón\": \"pizarron\",\n  \"pizpireta\": \"pizpiret\",\n  \"pizuto\": \"pizut\",\n  \"pizza\": \"pizz\",\n  \"pizzas\": \"pizz\",\n  \"pjf\": \"pjf\",\n  \"placa\": \"plac\",\n  \"placas\": \"plac\",\n  \"place\": \"plac\",\n  \"plácemes\": \"placem\",\n  \"placer\": \"plac\",\n  \"placet\": \"placet\",\n  \"plácida\": \"plac\",\n  \"plácidamente\": \"placid\",\n  \"placita\": \"placit\",\n  \"plaga\": \"plag\",\n  \"plagadas\": \"plag\",\n  \"plagas\": \"plag\",\n  \"plagiada\": \"plagi\",\n  \"plaguicidas\": \"plaguic\",\n  \"plainfield\": \"plainfield\",\n  \"plan\": \"plan\",\n  \"plana\": \"plan\",\n  \"planas\": \"plan\",\n  \"planauto\": \"planaut\",\n  \"planchar\": \"planch\",\n  \"planchará\": \"planch\",\n  \"planchas\": \"planch\",\n  \"planea\": \"plane\",\n  \"planeaban\": \"plan\",\n  \"planeación\": \"planeacion\",\n  \"planeada\": \"plan\",\n  \"planeadas\": \"plan\",\n  \"planeado\": \"plan\",\n  \"planeados\": \"plan\",\n  \"planean\": \"plan\",\n  \"planeando\": \"plan\",\n  \"planear\": \"plan\",\n  \"planee\": \"plane\",\n  \"planes\": \"plan\",\n  \"planeta\": \"planet\",\n  \"planetaria\": \"planetari\",\n  \"planificación\": \"planif\",\n  \"planilla\": \"planill\",\n  \"planillas\": \"planill\",\n  \"planiria\": \"planiri\",\n  \"plano\": \"plan\",\n  \"planos\": \"plan\",\n  \"planta\": \"plant\",\n  \"plantaciones\": \"plantacion\",\n  \"plantado\": \"plant\",\n  \"plantados\": \"plant\",\n  \"plantara\": \"plant\",\n  \"plantaron\": \"plant\",\n  \"plantas\": \"plant\",\n  \"plantea\": \"plante\",\n  \"planteada\": \"plant\",\n  \"planteadas\": \"plant\",\n  \"planteado\": \"plant\",\n  \"planteados\": \"plant\",\n  \"planteamientos\": \"planteamient\",\n  \"planteamos\": \"plant\",\n  \"plantean\": \"plant\",\n  \"plantear\": \"plant\",\n  \"plantearan\": \"plant\",\n  \"plantearon\": \"plant\",\n  \"plantearse\": \"plant\",\n  \"plantee\": \"plante\",\n  \"plantéeles\": \"planteel\",\n  \"planteen\": \"plant\",\n  \"plantel\": \"plantel\",\n  \"planteles\": \"plantel\",\n  \"planteó\": \"plante\",\n  \"plantón\": \"planton\",\n  \"plantones\": \"planton\",\n  \"plascencia\": \"plascenci\",\n  \"plasma\": \"plasm\",\n  \"plasmado\": \"plasm\",\n  \"plasmar\": \"plasm\",\n  \"plasme\": \"plasm\",\n  \"plasmó\": \"plasm\",\n  \"plastas\": \"plast\",\n  \"plástica\": \"plastic\",\n  \"plásticas\": \"plastic\",\n  \"plástico\": \"plastic\",\n  \"plásticos\": \"plastic\",\n  \"plastilina\": \"plastilin\",\n  \"plata\": \"plat\",\n  \"plataforma\": \"plataform\",\n  \"plataformas\": \"plataform\",\n  \"plataneras\": \"plataner\",\n  \"plátanos\": \"platan\",\n  \"platas\": \"plat\",\n  \"plate\": \"plat\",\n  \"plateadas\": \"plat\",\n  \"plateas\": \"plat\",\n  \"platería\": \"plat\",\n  \"plática\": \"platic\",\n  \"platicaba\": \"platic\",\n  \"platicábamos\": \"platic\",\n  \"platicaban\": \"platic\",\n  \"platicado\": \"platic\",\n  \"platicamos\": \"platic\",\n  \"platicando\": \"platic\",\n  \"platicar\": \"platic\",\n  \"platicas\": \"platic\",\n  \"pláticas\": \"platic\",\n  \"platicó\": \"platic\",\n  \"platillo\": \"platill\",\n  \"platillos\": \"platill\",\n  \"platinos\": \"platin\",\n  \"platique\": \"platiqu\",\n  \"plato\": \"plat\",\n  \"plausibles\": \"plausibl\",\n  \"playa\": \"play\",\n  \"playas\": \"play\",\n  \"playback\": \"playback\",\n  \"playera\": \"player\",\n  \"playeras\": \"player\",\n  \"playtex\": \"playtex\",\n  \"plaza\": \"plaz\",\n  \"plazas\": \"plaz\",\n  \"plazo\": \"plaz\",\n  \"plazos\": \"plaz\",\n  \"plebiscito\": \"plebiscit\",\n  \"plegables\": \"plegabl\",\n  \"pleitesía\": \"pleites\",\n  \"pleito\": \"pleit\",\n  \"pleitos\": \"pleit\",\n  \"plena\": \"plen\",\n  \"plenamente\": \"plen\",\n  \"plenaria\": \"plenari\",\n  \"pleno\": \"plen\",\n  \"plomería\": \"plom\",\n  \"plomo\": \"plom\",\n  \"pluma\": \"plum\",\n  \"plumas\": \"plum\",\n  \"plumones\": \"plumon\",\n  \"plural\": \"plural\",\n  \"plusmarca\": \"plusmarc\",\n  \"plusmarcas\": \"plusmarc\",\n  \"plusvalía\": \"plusval\",\n  \"plutarco\": \"plutarc\",\n  \"pluvial\": \"pluvial\",\n  \"pluviales\": \"pluvial\",\n  \"plymouth\": \"plymouth\",\n  \"pn\": \"pn\",\n  \"po\": \"po\",\n  \"población\": \"poblacion\",\n  \"poblacional\": \"poblacional\",\n  \"poblaciones\": \"poblacion\",\n  \"poblada\": \"pobl\",\n  \"pobladas\": \"pobl\",\n  \"poblado\": \"pobl\",\n  \"pobladores\": \"poblador\",\n  \"poblados\": \"pobl\",\n  \"poblano\": \"poblan\",\n  \"poblanos\": \"poblan\",\n  \"poblaron\": \"pobl\",\n  \"pobre\": \"pobr\",\n  \"pobres\": \"pobr\",\n  \"pobreza\": \"pobrez\",\n  \"poca\": \"poc\",\n  \"pocas\": \"poc\",\n  \"pocho\": \"poch\",\n  \"pochtecas\": \"pochtec\",\n  \"poco\": \"poc\",\n  \"pocos\": \"poc\",\n  \"poda\": \"pod\",\n  \"podamos\": \"pod\",\n  \"podemos\": \"pod\",\n  \"poder\": \"pod\",\n  \"poderes\": \"poder\",\n  \"poderío\": \"poderi\",\n  \"poderlas\": \"pod\",\n  \"poderosa\": \"poder\",\n  \"poderoso\": \"poder\",\n  \"poderosos\": \"poder\",\n  \"podía\": \"pod\",\n  \"podíamos\": \"pod\",\n  \"podían\": \"pod\",\n  \"podido\": \"pod\",\n  \"podrá\": \"podr\",\n  \"podrán\": \"podran\",\n  \"podrás\": \"podras\",\n  \"podré\": \"podr\",\n  \"podremos\": \"podr\",\n  \"podría\": \"podr\",\n  \"podríamos\": \"podr\",\n  \"podrían\": \"podr\",\n  \"podrías\": \"podr\",\n  \"poema\": \"poem\",\n  \"poemario\": \"poemari\",\n  \"poemas\": \"poem\",\n  \"poesía\": \"poes\",\n  \"poeta\": \"poet\",\n  \"poético\": \"poetic\",\n  \"poetisa\": \"poetis\",\n  \"point\": \"point\",\n  \"pókar\": \"pok\",\n  \"póker\": \"pok\",\n  \"polanco\": \"polanc\",\n  \"polar\": \"pol\",\n  \"polémica\": \"polem\",\n  \"polémicas\": \"polem\",\n  \"polemizan\": \"polemiz\",\n  \"polen\": \"pol\",\n  \"poleo\": \"pole\",\n  \"policarpo\": \"policarp\",\n  \"policia\": \"polici\",\n  \"policía\": \"polic\",\n  \"policiaca\": \"policiac\",\n  \"policíaca\": \"policiac\",\n  \"policiacas\": \"policiac\",\n  \"policíacas\": \"policiac\",\n  \"policiaco\": \"policiac\",\n  \"policíaco\": \"policiac\",\n  \"policiacos\": \"policiac\",\n  \"policíacos\": \"policiac\",\n  \"policial\": \"policial\",\n  \"policiales\": \"policial\",\n  \"policias\": \"polici\",\n  \"policías\": \"polic\",\n  \"polifonía\": \"polifon\",\n  \"poligono\": \"poligon\",\n  \"polígono\": \"poligon\",\n  \"polilla\": \"polill\",\n  \"polinésico\": \"polines\",\n  \"polinización\": \"poliniz\",\n  \"polio\": \"poli\",\n  \"poliomielitis\": \"poliomielitis\",\n  \"politécnico\": \"politecn\",\n  \"politeísta\": \"politeist\",\n  \"politeístas\": \"politeist\",\n  \"política\": \"polit\",\n  \"políticas\": \"polit\",\n  \"politico\": \"polit\",\n  \"político\": \"polit\",\n  \"políticos\": \"polit\",\n  \"politiquero\": \"politiquer\",\n  \"politólogos\": \"politolog\",\n  \"poliuretano\": \"poliuretan\",\n  \"polivalente\": \"polivalent\",\n  \"pollo\": \"poll\",\n  \"pollution\": \"pollution\",\n  \"polo\": \"pol\",\n  \"polonia\": \"poloni\",\n  \"polveras\": \"polver\",\n  \"polvo\": \"polv\",\n  \"polvos\": \"polv\",\n  \"pomadas\": \"pom\",\n  \"pomares\": \"pomar\",\n  \"pomperrier\": \"pomperri\",\n  \"pompeyo\": \"pompey\",\n  \"pompidou\": \"pompidou\",\n  \"ponce\": \"ponc\",\n  \"ponchando\": \"ponch\",\n  \"ponche\": \"ponch\",\n  \"pond\": \"pond\",\n  \"pondera\": \"ponder\",\n  \"ponderada\": \"ponder\",\n  \"pondrá\": \"pondr\",\n  \"pondrán\": \"pondran\",\n  \"pondrás\": \"pondras\",\n  \"pondremos\": \"pondr\",\n  \"pondrían\": \"pondr\",\n  \"ponds\": \"ponds\",\n  \"pone\": \"pon\",\n  \"ponemos\": \"pon\",\n  \"ponen\": \"pon\",\n  \"ponencia\": \"ponenci\",\n  \"ponencias\": \"ponenci\",\n  \"ponente\": \"ponent\",\n  \"ponentes\": \"ponent\",\n  \"poner\": \"pon\",\n  \"ponerla\": \"pon\",\n  \"ponerle\": \"pon\",\n  \"ponerles\": \"pon\",\n  \"ponerlo\": \"pon\",\n  \"ponerlos\": \"pon\",\n  \"ponernos\": \"pon\",\n  \"ponerse\": \"pon\",\n  \"pones\": \"pon\",\n  \"ponga\": \"pong\",\n  \"pongamos\": \"pong\",\n  \"pongan\": \"pong\",\n  \"póngase\": \"pong\",\n  \"pongo\": \"pong\",\n  \"ponía\": \"pon\",\n  \"poniatowska\": \"poniatowsk\",\n  \"poniendo\": \"pon\",\n  \"poniente\": \"ponient\",\n  \"pons\": \"pons\",\n  \"pontiac\": \"pontiac\",\n  \"pontier\": \"ponti\",\n  \"pontificado\": \"pontific\",\n  \"pontífice\": \"pontific\",\n  \"pontificia\": \"pontifici\",\n  \"pontificio\": \"pontifici\",\n  \"pony\": \"pony\",\n  \"pop\": \"pop\",\n  \"popa\": \"pop\",\n  \"pope\": \"pop\",\n  \"popo\": \"pop\",\n  \"poppe\": \"popp\",\n  \"popular\": \"popul\",\n  \"populares\": \"popular\",\n  \"popularidad\": \"popular\",\n  \"popularísimo\": \"popularisim\",\n  \"populismo\": \"popul\",\n  \"populista\": \"popul\",\n  \"populistas\": \"popul\",\n  \"populosos\": \"popul\",\n  \"poquísimo\": \"poquisim\",\n  \"poquitas\": \"poquit\",\n  \"poquitito\": \"poquitit\",\n  \"poquito\": \"poquit\",\n  \"por\": \"por\",\n  \"porcelana\": \"porcelan\",\n  \"porcentaje\": \"porcentaj\",\n  \"porcentajes\": \"porcentaj\",\n  \"porcentual\": \"porcentual\",\n  \"porcentuales\": \"porcentual\",\n  \"porcícolas\": \"porcicol\",\n  \"porciles\": \"porcil\",\n  \"porción\": \"porcion\",\n  \"porcioncita\": \"porcioncit\",\n  \"porciones\": \"porcion\",\n  \"porfesión\": \"porfesion\",\n  \"porfía\": \"porf\",\n  \"porfiriato\": \"porfiriat\",\n  \"porfirio\": \"porfiri\",\n  \"pormenores\": \"pormenor\",\n  \"pormenorizados\": \"pormenoriz\",\n  \"pornográficas\": \"pornograf\",\n  \"pornográficos\": \"pornograf\",\n  \"porque\": \"porqu\",\n  \"porqué\": \"porqu\",\n  \"porras\": \"porr\",\n  \"porros\": \"porr\",\n  \"porta\": \"port\",\n  \"portaba\": \"port\",\n  \"portaban\": \"port\",\n  \"portabilidad\": \"portabil\",\n  \"portación\": \"portacion\",\n  \"portador\": \"portador\",\n  \"portafolio\": \"portafoli\",\n  \"portal\": \"portal\",\n  \"portan\": \"port\",\n  \"portando\": \"port\",\n  \"portar\": \"port\",\n  \"portarlas\": \"port\",\n  \"portátil\": \"portatil\",\n  \"portátiles\": \"portatil\",\n  \"portavoz\": \"portavoz\",\n  \"porte\": \"port\",\n  \"porten\": \"port\",\n  \"porter\": \"port\",\n  \"portería\": \"port\",\n  \"portero\": \"porter\",\n  \"portezuela\": \"portezuel\",\n  \"portillo\": \"portill\",\n  \"portland\": \"portland\",\n  \"portuaria\": \"portuari\",\n  \"portuarias\": \"portuari\",\n  \"portuario\": \"portuari\",\n  \"portuarios\": \"portuari\",\n  \"portugal\": \"portugal\",\n  \"portugués\": \"portugues\",\n  \"porvenir\": \"porven\",\n  \"posada\": \"pos\",\n  \"posee\": \"pose\",\n  \"poseedor\": \"poseedor\",\n  \"poseen\": \"pos\",\n  \"poseer\": \"pos\",\n  \"poseían\": \"pos\",\n  \"poseidón\": \"poseidon\",\n  \"poses\": \"pos\",\n  \"posesión\": \"posesion\",\n  \"posesionar\": \"posesion\",\n  \"posesionase\": \"posesion\",\n  \"posesivas\": \"poses\",\n  \"posgrado\": \"posgr\",\n  \"posgrados\": \"posgr\",\n  \"posibilidad\": \"posibil\",\n  \"posibilidades\": \"posibil\",\n  \"posibilitan\": \"posibilit\",\n  \"posible\": \"posibl\",\n  \"posiblemente\": \"posibl\",\n  \"posibles\": \"posibl\",\n  \"posición\": \"posicion\",\n  \"posicionado\": \"posicion\",\n  \"posicionamiento\": \"posicion\",\n  \"posiciones\": \"posicion\",\n  \"posicionó\": \"posicion\",\n  \"positiva\": \"posit\",\n  \"positivamente\": \"posit\",\n  \"positivas\": \"posit\",\n  \"positivo\": \"posit\",\n  \"positivos\": \"posit\",\n  \"pospuesto\": \"pospuest\",\n  \"pospuso\": \"pospus\",\n  \"post\": \"post\",\n  \"postal\": \"postal\",\n  \"poste\": \"post\",\n  \"postelectoral\": \"postelectoral\",\n  \"postelectorales\": \"postelectoral\",\n  \"postergación\": \"posterg\",\n  \"posterior\": \"posterior\",\n  \"posteriores\": \"posterior\",\n  \"posteriormente\": \"posterior\",\n  \"posters\": \"posters\",\n  \"postes\": \"post\",\n  \"postguerra\": \"postguerr\",\n  \"postor\": \"postor\",\n  \"postores\": \"postor\",\n  \"postre\": \"postr\",\n  \"postulaban\": \"postul\",\n  \"postulación\": \"postul\",\n  \"postulada\": \"postul\",\n  \"postulado\": \"postul\",\n  \"postulados\": \"postul\",\n  \"postular\": \"postul\",\n  \"postularse\": \"postul\",\n  \"postuló\": \"postul\",\n  \"póstumo\": \"postum\",\n  \"postura\": \"postur\",\n  \"posturas\": \"postur\",\n  \"potabilizadora\": \"potabiliz\",\n  \"potabilizadoras\": \"potabiliz\",\n  \"potable\": \"potabl\",\n  \"potencia\": \"potenci\",\n  \"potencial\": \"potencial\",\n  \"potenciales\": \"potencial\",\n  \"potencialmente\": \"potencial\",\n  \"potente\": \"potent\",\n  \"potestad\": \"potest\",\n  \"potomac\": \"potomac\",\n  \"potosi\": \"potosi\",\n  \"potosí\": \"potos\",\n  \"potosino\": \"potosin\",\n  \"potrillo\": \"potrill\",\n  \"potrillos\": \"potrill\",\n  \"potros\": \"potr\",\n  \"pottlesberghe\": \"pottlesbergh\",\n  \"poul\": \"poul\",\n  \"powell\": \"powell\",\n  \"powerbook\": \"powerbook\",\n  \"powered\": \"power\",\n  \"pozas\": \"poz\",\n  \"pozo\": \"poz\",\n  \"pozole\": \"pozol\",\n  \"pozos\": \"poz\",\n  \"ppc\": \"ppc\",\n  \"pps\": \"pps\",\n  \"practica\": \"practic\",\n  \"práctica\": \"practic\",\n  \"practicaban\": \"practic\",\n  \"practicable\": \"practic\",\n  \"practicadas\": \"practic\",\n  \"prácticamente\": \"practic\",\n  \"practicamos\": \"practic\",\n  \"practican\": \"practic\",\n  \"practicar\": \"practic\",\n  \"practicaran\": \"practic\",\n  \"practicaron\": \"practic\",\n  \"practicas\": \"practic\",\n  \"prácticas\": \"practic\",\n  \"práctico\": \"practic\",\n  \"practicó\": \"practic\",\n  \"prácticos\": \"practic\",\n  \"practique\": \"practiqu\",\n  \"practiquen\": \"practiqu\",\n  \"praderas\": \"prader\",\n  \"prado\": \"prad\",\n  \"prampolini\": \"prampolini\",\n  \"praviel\": \"praviel\",\n  \"praxedis\": \"praxedis\",\n  \"prd\": \"prd\",\n  \"pre\": \"pre\",\n  \"preámbulo\": \"preambul\",\n  \"prebendas\": \"prebend\",\n  \"precandidato\": \"precandidat\",\n  \"precaria\": \"precari\",\n  \"precario\": \"precari\",\n  \"precaución\": \"precaucion\",\n  \"precautorio\": \"precautori\",\n  \"precavido\": \"precav\",\n  \"precavidos\": \"precav\",\n  \"precedente\": \"precedent\",\n  \"precedentes\": \"precedent\",\n  \"precedidas\": \"preced\",\n  \"precepto\": \"precept\",\n  \"preceptos\": \"precept\",\n  \"preciados\": \"preci\",\n  \"precio\": \"preci\",\n  \"precios\": \"preci\",\n  \"preciosas\": \"preci\",\n  \"precioso\": \"precios\",\n  \"precipitación\": \"precipit\",\n  \"precipitaciones\": \"precipit\",\n  \"precipitadamente\": \"precipit\",\n  \"precipitadas\": \"precipit\",\n  \"precipitándose\": \"precipit\",\n  \"precipitaron\": \"precipit\",\n  \"precipitarse\": \"precipit\",\n  \"precipitó\": \"precipit\",\n  \"precisa\": \"precis\",\n  \"precisado\": \"precis\",\n  \"precisamente\": \"precis\",\n  \"precísamente\": \"precis\",\n  \"precisan\": \"precis\",\n  \"precisando\": \"precis\",\n  \"precisar\": \"precis\",\n  \"precisaron\": \"precis\",\n  \"precisión\": \"precision\",\n  \"precisiones\": \"precision\",\n  \"preciso\": \"precis\",\n  \"precisó\": \"precis\",\n  \"precisos\": \"precis\",\n  \"preclaros\": \"preclar\",\n  \"precolombina\": \"precolombin\",\n  \"preconiza\": \"preconiz\",\n  \"precursora\": \"precursor\",\n  \"precursores\": \"precursor\",\n  \"predecir\": \"predec\",\n  \"predestinado\": \"predestin\",\n  \"predeterminado\": \"predetermin\",\n  \"predial\": \"predial\",\n  \"predica\": \"predic\",\n  \"predicación\": \"predic\",\n  \"predicador\": \"predic\",\n  \"predicar\": \"predic\",\n  \"predicciones\": \"prediccion\",\n  \"predice\": \"predic\",\n  \"predijo\": \"predij\",\n  \"predio\": \"predi\",\n  \"predispone\": \"predispon\",\n  \"predomina\": \"predomin\",\n  \"predominan\": \"predomin\",\n  \"predominante\": \"predomin\",\n  \"predominantes\": \"predomin\",\n  \"predominaron\": \"predomin\",\n  \"preelectorales\": \"preelectoral\",\n  \"preerupción\": \"preerupcion\",\n  \"preescolar\": \"preescol\",\n  \"preestablecido\": \"preestablec\",\n  \"preestablecidos\": \"preestablec\",\n  \"prefecto\": \"prefect\",\n  \"preferencia\": \"preferent\",\n  \"preferencial\": \"preferencial\",\n  \"preferencias\": \"preferent\",\n  \"preferentemente\": \"preferent\",\n  \"prefería\": \"pref\",\n  \"preferible\": \"prefer\",\n  \"preferida\": \"prefer\",\n  \"preferirán\": \"prefer\",\n  \"preferiría\": \"prefer\",\n  \"prefiera\": \"pref\",\n  \"prefieran\": \"pref\",\n  \"prefiere\": \"prefier\",\n  \"prefieren\": \"prefier\",\n  \"prefiero\": \"prefier\",\n  \"prefijado\": \"prefij\",\n  \"prefirieron\": \"prefir\",\n  \"prefirió\": \"prefir\",\n  \"pregrado\": \"pregr\",\n  \"pregunta\": \"pregunt\",\n  \"preguntaba\": \"pregunt\",\n  \"preguntamos\": \"pregunt\",\n  \"preguntan\": \"pregunt\",\n  \"preguntando\": \"pregunt\",\n  \"preguntar\": \"pregunt\",\n  \"preguntarle\": \"pregunt\",\n  \"preguntarnos\": \"pregunt\",\n  \"preguntaron\": \"pregunt\",\n  \"preguntarse\": \"pregunt\",\n  \"preguntas\": \"pregunt\",\n  \"pregunte\": \"pregunt\",\n  \"pregúnteles\": \"preguntel\",\n  \"pregunto\": \"pregunt\",\n  \"preguntó\": \"pregunt\",\n  \"prehispánica\": \"prehispan\",\n  \"prehispánicas\": \"prehispan\",\n  \"prehispánico\": \"prehispan\",\n  \"prejuicios\": \"prejuici\",\n  \"prejunior\": \"prejunior\",\n  \"prelado\": \"prel\",\n  \"prelavado\": \"prelav\",\n  \"preliminar\": \"prelimin\",\n  \"preliminares\": \"preliminar\",\n  \"prematuramente\": \"prematur\",\n  \"prematuro\": \"prematur\",\n  \"premestizo\": \"premestiz\",\n  \"premiaba\": \"premi\",\n  \"premiación\": \"premiacion\",\n  \"premiadas\": \"premi\",\n  \"premiado\": \"premi\",\n  \"premiados\": \"premi\",\n  \"premiaron\": \"premi\",\n  \"premie\": \"premi\",\n  \"premier\": \"premi\",\n  \"premio\": \"premi\",\n  \"premió\": \"prem\",\n  \"premios\": \"premi\",\n  \"premisa\": \"premis\",\n  \"premoderno\": \"premodern\",\n  \"premonición\": \"premonicion\",\n  \"premundialistas\": \"premundial\",\n  \"prenda\": \"prend\",\n  \"prendarios\": \"prendari\",\n  \"prendas\": \"prend\",\n  \"prende\": \"prend\",\n  \"prendedores\": \"prendedor\",\n  \"prender\": \"prend\",\n  \"prendido\": \"prend\",\n  \"prendieron\": \"prend\",\n  \"prensa\": \"prens\",\n  \"prensado\": \"prens\",\n  \"preocupa\": \"preocup\",\n  \"preocupaba\": \"preocup\",\n  \"preocupación\": \"preocup\",\n  \"preocupaciones\": \"preocup\",\n  \"preocupada\": \"preocup\",\n  \"preocupadas\": \"preocup\",\n  \"preocupado\": \"preocup\",\n  \"preocupados\": \"preocup\",\n  \"preocupan\": \"preocup\",\n  \"preocupar\": \"preocup\",\n  \"preocupara\": \"preocup\",\n  \"preocupará\": \"preocup\",\n  \"preocuparía\": \"preocup\",\n  \"preocuparle\": \"preocup\",\n  \"preocuparon\": \"preocup\",\n  \"preocuparse\": \"preocup\",\n  \"preocupe\": \"preocup\",\n  \"preocupen\": \"preocup\",\n  \"preocupes\": \"preocup\",\n  \"prepara\": \"prep\",\n  \"preparaba\": \"prepar\",\n  \"preparaban\": \"prepar\",\n  \"preparación\": \"prepar\",\n  \"preparada\": \"prepar\",\n  \"preparadas\": \"prepar\",\n  \"preparado\": \"prepar\",\n  \"preparados\": \"prepar\",\n  \"preparamos\": \"prepar\",\n  \"preparan\": \"prep\",\n  \"preparando\": \"prepar\",\n  \"preparar\": \"prepar\",\n  \"prepararán\": \"prepar\",\n  \"prepararla\": \"prepar\",\n  \"prepararse\": \"prepar\",\n  \"prepárate\": \"preparat\",\n  \"preparativos\": \"prepar\",\n  \"preparatoria\": \"preparatori\",\n  \"preparatorias\": \"preparatori\",\n  \"preparatorio\": \"preparatori\",\n  \"preparatorios\": \"preparatori\",\n  \"prepárele\": \"preparel\",\n  \"preparen\": \"prepar\",\n  \"prepárese\": \"prepares\",\n  \"preparó\": \"prepar\",\n  \"preponderantemente\": \"preponder\",\n  \"prepotencia\": \"prepotent\",\n  \"prepotente\": \"prepotent\",\n  \"prepotentes\": \"prepotent\",\n  \"preproducción\": \"preproduccion\",\n  \"prerequisitos\": \"prerequisit\",\n  \"prerregistro\": \"prerregistr\",\n  \"prerrogativa\": \"prerrog\",\n  \"prerrogativas\": \"prerrog\",\n  \"presa\": \"pres\",\n  \"presas\": \"pres\",\n  \"prescindir\": \"prescind\",\n  \"prescriben\": \"prescrib\",\n  \"prescritos\": \"prescrit\",\n  \"preseas\": \"pres\",\n  \"preselección\": \"preseleccion\",\n  \"presencia\": \"presenci\",\n  \"presenciado\": \"presenci\",\n  \"presenciados\": \"presenci\",\n  \"presencial\": \"presencial\",\n  \"presenciar\": \"presenci\",\n  \"presenciaron\": \"presenci\",\n  \"presenció\": \"presenc\",\n  \"presenta\": \"present\",\n  \"presentaba\": \"present\",\n  \"presentaban\": \"present\",\n  \"presentación\": \"present\",\n  \"presentaciones\": \"present\",\n  \"presentada\": \"present\",\n  \"presentadas\": \"present\",\n  \"presentado\": \"present\",\n  \"presentador\": \"present\",\n  \"presentadores\": \"present\",\n  \"presentados\": \"present\",\n  \"presentamos\": \"present\",\n  \"presentan\": \"present\",\n  \"presentando\": \"present\",\n  \"presentándolo\": \"present\",\n  \"presentándose\": \"present\",\n  \"presentar\": \"present\",\n  \"presentara\": \"present\",\n  \"presentará\": \"present\",\n  \"presentáramos\": \"present\",\n  \"presentarán\": \"present\",\n  \"presentaremos\": \"present\",\n  \"presentarla\": \"present\",\n  \"presentarlo\": \"present\",\n  \"presentarlos\": \"present\",\n  \"presentarme\": \"present\",\n  \"presentaron\": \"present\",\n  \"presentarse\": \"present\",\n  \"presente\": \"present\",\n  \"presenten\": \"present\",\n  \"presentes\": \"present\",\n  \"presentí\": \"present\",\n  \"presentó\": \"present\",\n  \"preservación\": \"preserv\",\n  \"preservado\": \"preserv\",\n  \"preservar\": \"preserv\",\n  \"preservarle\": \"preserv\",\n  \"presida\": \"pres\",\n  \"preside\": \"presid\",\n  \"presiden\": \"presid\",\n  \"presidencia\": \"president\",\n  \"presidenciable\": \"presidenci\",\n  \"presidenciables\": \"presidenci\",\n  \"presidencial\": \"presidencial\",\n  \"presidenciales\": \"presidencial\",\n  \"presidencialismo\": \"presidencial\",\n  \"presidencialista\": \"presidencial\",\n  \"presidenta\": \"president\",\n  \"presidente\": \"president\",\n  \"presidentes\": \"president\",\n  \"presidida\": \"presid\",\n  \"presidido\": \"presid\",\n  \"presidió\": \"presid\",\n  \"presidir\": \"presid\",\n  \"presidirá\": \"presid\",\n  \"presidium\": \"presidium\",\n  \"presión\": \"presion\",\n  \"presionado\": \"presion\",\n  \"presionando\": \"presion\",\n  \"presionar\": \"presion\",\n  \"presionará\": \"presion\",\n  \"presionarlos\": \"presion\",\n  \"presionaron\": \"presion\",\n  \"presione\": \"presion\",\n  \"presiones\": \"presion\",\n  \"presley\": \"presley\",\n  \"preso\": \"pres\",\n  \"presos\": \"pres\",\n  \"pressey\": \"pressey\",\n  \"presta\": \"prest\",\n  \"prestación\": \"prestacion\",\n  \"prestaciones\": \"prestacion\",\n  \"prestada\": \"prest\",\n  \"prestado\": \"prest\",\n  \"prestadores\": \"prestador\",\n  \"préstamo\": \"prestam\",\n  \"préstamos\": \"prest\",\n  \"prestan\": \"prest\",\n  \"prestancia\": \"prestanci\",\n  \"prestar\": \"prest\",\n  \"prestaría\": \"prest\",\n  \"prestaron\": \"prest\",\n  \"preste\": \"prest\",\n  \"prestigiado\": \"prestigi\",\n  \"prestigian\": \"prestigi\",\n  \"prestigio\": \"prestigi\",\n  \"prestigiosos\": \"prestigi\",\n  \"prestó\": \"prest\",\n  \"presume\": \"presum\",\n  \"presumiblemente\": \"presum\",\n  \"presumida\": \"presum\",\n  \"presumieron\": \"presum\",\n  \"presumir\": \"presum\",\n  \"presunción\": \"presuncion\",\n  \"presunta\": \"presunt\",\n  \"presuntamente\": \"presunt\",\n  \"presuntas\": \"presunt\",\n  \"presunto\": \"presunt\",\n  \"presuntos\": \"presunt\",\n  \"presuntuoso\": \"presuntu\",\n  \"presupuestadas\": \"presupuest\",\n  \"presupuestal\": \"presupuestal\",\n  \"presupuestario\": \"presupuestari\",\n  \"presupuesto\": \"presupuest\",\n  \"presurosamente\": \"presur\",\n  \"preta\": \"pret\",\n  \"pretel\": \"pretel\",\n  \"pretemporada\": \"pretempor\",\n  \"pretenda\": \"pretend\",\n  \"pretende\": \"pretend\",\n  \"pretendemos\": \"pretend\",\n  \"pretenden\": \"pretend\",\n  \"pretender\": \"pretend\",\n  \"pretendía\": \"pretend\",\n  \"pretendían\": \"pretend\",\n  \"pretendido\": \"pretend\",\n  \"pretendiente\": \"pretendient\",\n  \"pretendieran\": \"pretend\",\n  \"pretendieron\": \"pretend\",\n  \"pretendió\": \"pretend\",\n  \"pretensión\": \"pretension\",\n  \"pretexto\": \"pretext\",\n  \"prevalece\": \"prevalec\",\n  \"prevalecen\": \"prevalec\",\n  \"prevaleciendo\": \"prevalec\",\n  \"prevalecientes\": \"prevalecient\",\n  \"prevalezca\": \"prevalezc\",\n  \"preve\": \"prev\",\n  \"prevé\": \"prev\",\n  \"prevee\": \"preve\",\n  \"prevención\": \"prevencion\",\n  \"prevenida\": \"preven\",\n  \"prevenir\": \"preven\",\n  \"prevenirse\": \"preven\",\n  \"preventiva\": \"prevent\",\n  \"preventivas\": \"prevent\",\n  \"preventivo\": \"prevent\",\n  \"prever\": \"prev\",\n  \"preverificación\": \"preverif\",\n  \"previa\": \"previ\",\n  \"previamente\": \"previ\",\n  \"previas\": \"previ\",\n  \"previendo\": \"prev\",\n  \"previéndolo\": \"prev\",\n  \"previene\": \"previen\",\n  \"previno\": \"previn\",\n  \"previo\": \"previ\",\n  \"previó\": \"prev\",\n  \"previos\": \"previ\",\n  \"previsible\": \"previs\",\n  \"previsión\": \"prevision\",\n  \"prevista\": \"previst\",\n  \"previstas\": \"previst\",\n  \"previsto\": \"previst\",\n  \"previstos\": \"previst\",\n  \"prevoisin\": \"prevoisin\",\n  \"pri\": \"pri\",\n  \"pría\": \"pri\",\n  \"price\": \"pric\",\n  \"prieto\": \"priet\",\n  \"prigione\": \"prigion\",\n  \"prigobierno\": \"prigobiern\",\n  \"priísmo\": \"priism\",\n  \"priísta\": \"priist\",\n  \"priístas\": \"priist\",\n  \"prima\": \"prim\",\n  \"primaria\": \"primari\",\n  \"primarias\": \"primari\",\n  \"primario\": \"primari\",\n  \"primarios\": \"primari\",\n  \"primas\": \"prim\",\n  \"primates\": \"primat\",\n  \"primavera\": \"primaver\",\n  \"prime\": \"prim\",\n  \"primer\": \"prim\",\n  \"primera\": \"primer\",\n  \"primeramente\": \"primer\",\n  \"primeras\": \"primer\",\n  \"primeriza\": \"primeriz\",\n  \"primero\": \"primer\",\n  \"primeros\": \"primer\",\n  \"primex\": \"primex\",\n  \"primitivas\": \"primit\",\n  \"primitivismo\": \"primitiv\",\n  \"primitivo\": \"primit\",\n  \"primitivos\": \"primit\",\n  \"primo\": \"prim\",\n  \"primogénita\": \"primogenit\",\n  \"primogénito\": \"primogenit\",\n  \"primordial\": \"primordial\",\n  \"primordiales\": \"primordial\",\n  \"princesa\": \"princes\",\n  \"princesas\": \"princes\",\n  \"princeton\": \"princeton\",\n  \"principal\": \"principal\",\n  \"principales\": \"principal\",\n  \"principalmente\": \"principal\",\n  \"príncipe\": \"princip\",\n  \"príncipes\": \"princip\",\n  \"principesco\": \"principesc\",\n  \"principiante\": \"principi\",\n  \"principio\": \"principi\",\n  \"principios\": \"principi\",\n  \"prioridad\": \"priorid\",\n  \"prioridades\": \"prioridad\",\n  \"prioritaria\": \"prioritari\",\n  \"prioritario\": \"prioritari\",\n  \"prioritarios\": \"prioritari\",\n  \"prisa\": \"pris\",\n  \"prisión\": \"prision\",\n  \"prisionero\": \"prisioner\",\n  \"prisioneros\": \"prisioner\",\n  \"pristina\": \"pristin\",\n  \"priva\": \"priv\",\n  \"privacidad\": \"privac\",\n  \"privada\": \"priv\",\n  \"privadas\": \"priv\",\n  \"privado\": \"priv\",\n  \"privados\": \"priv\",\n  \"privan\": \"priv\",\n  \"privar\": \"priv\",\n  \"privativa\": \"privat\",\n  \"privativo\": \"privat\",\n  \"privatización\": \"privatiz\",\n  \"privatizaciones\": \"privatiz\",\n  \"privatizado\": \"privatiz\",\n  \"privatizar\": \"privatiz\",\n  \"privilegiada\": \"privilegi\",\n  \"privilegiado\": \"privilegi\",\n  \"privilegio\": \"privilegi\",\n  \"privilegios\": \"privilegi\",\n  \"privó\": \"priv\",\n  \"pro\": \"pro\",\n  \"probabilidades\": \"probabil\",\n  \"probable\": \"probabl\",\n  \"probablemente\": \"probabl\",\n  \"probables\": \"probabl\",\n  \"probada\": \"prob\",\n  \"probado\": \"prob\",\n  \"probados\": \"prob\",\n  \"probar\": \"prob\",\n  \"probara\": \"prob\",\n  \"probarle\": \"prob\",\n  \"probarlo\": \"prob\",\n  \"probaron\": \"prob\",\n  \"probarse\": \"prob\",\n  \"problema\": \"problem\",\n  \"problemas\": \"problem\",\n  \"problemática\": \"problemat\",\n  \"problemático\": \"problemat\",\n  \"probó\": \"prob\",\n  \"probursa\": \"proburs\",\n  \"proceda\": \"proced\",\n  \"procede\": \"proced\",\n  \"proceden\": \"proced\",\n  \"procedencia\": \"procedent\",\n  \"procedente\": \"procedent\",\n  \"procedentes\": \"procedent\",\n  \"proceder\": \"proced\",\n  \"procederá\": \"proced\",\n  \"procedimentales\": \"procedimental\",\n  \"procedimiento\": \"proced\",\n  \"procedimientos\": \"proced\",\n  \"procéntrico\": \"procentr\",\n  \"procentro\": \"procentr\",\n  \"procesa\": \"proces\",\n  \"procesaba\": \"proces\",\n  \"procesada\": \"proces\",\n  \"procesado\": \"proces\",\n  \"procesador\": \"proces\",\n  \"procesadora\": \"proces\",\n  \"procesadores\": \"proces\",\n  \"procesados\": \"proces\",\n  \"procesal\": \"procesal\",\n  \"procesales\": \"procesal\",\n  \"procesamiento\": \"proces\",\n  \"procesando\": \"proces\",\n  \"proceso\": \"proces\",\n  \"procesos\": \"proces\",\n  \"proclama\": \"proclam\",\n  \"proclamaciones\": \"proclam\",\n  \"proclamado\": \"proclam\",\n  \"proclamó\": \"proclam\",\n  \"procreación\": \"procreacion\",\n  \"procura\": \"procur\",\n  \"procuración\": \"procur\",\n  \"procurador\": \"procur\",\n  \"procuradora\": \"procur\",\n  \"procuraduria\": \"procuraduri\",\n  \"procuraduría\": \"procuradur\",\n  \"procuramos\": \"procur\",\n  \"procurar\": \"procur\",\n  \"procurarán\": \"procur\",\n  \"procurarse\": \"procur\",\n  \"procure\": \"procur\",\n  \"procuro\": \"procur\",\n  \"procuró\": \"procur\",\n  \"prodigiosa\": \"prodigi\",\n  \"producción\": \"produccion\",\n  \"producciones\": \"produccion\",\n  \"produce\": \"produc\",\n  \"producen\": \"produc\",\n  \"producían\": \"produc\",\n  \"producida\": \"produc\",\n  \"producidas\": \"produc\",\n  \"producido\": \"produc\",\n  \"producidos\": \"produc\",\n  \"produciendo\": \"produc\",\n  \"producir\": \"produc\",\n  \"producirá\": \"produc\",\n  \"producirían\": \"produc\",\n  \"producirse\": \"produc\",\n  \"productiva\": \"product\",\n  \"productivas\": \"product\",\n  \"productividad\": \"product\",\n  \"productivo\": \"product\",\n  \"productivos\": \"product\",\n  \"producto\": \"product\",\n  \"productor\": \"productor\",\n  \"productora\": \"productor\",\n  \"productoras\": \"productor\",\n  \"productores\": \"productor\",\n  \"productos\": \"product\",\n  \"produjera\": \"produjer\",\n  \"produjeron\": \"produjeron\",\n  \"produjo\": \"produj\",\n  \"produzca\": \"produzc\",\n  \"produzcan\": \"produzc\",\n  \"proeza\": \"proez\",\n  \"profeco\": \"profec\",\n  \"profesa\": \"profes\",\n  \"profesan\": \"profes\",\n  \"profesión\": \"profesion\",\n  \"profesional\": \"profesional\",\n  \"profesionales\": \"profesional\",\n  \"profesionalismo\": \"profesional\",\n  \"profesionalización\": \"profesionaliz\",\n  \"profesionalmente\": \"profesional\",\n  \"profesionista\": \"profesion\",\n  \"profesionistas\": \"profesion\",\n  \"profesor\": \"profesor\",\n  \"profesora\": \"profesor\",\n  \"profesorado\": \"profesor\",\n  \"profesores\": \"profesor\",\n  \"profeta\": \"profet\",\n  \"profetas\": \"profet\",\n  \"profr\": \"profr\",\n  \"prófugo\": \"profug\",\n  \"prófugos\": \"profug\",\n  \"profunda\": \"profund\",\n  \"profundamente\": \"profund\",\n  \"profundas\": \"profund\",\n  \"profundicen\": \"profundic\",\n  \"profundidad\": \"profund\",\n  \"profundidades\": \"profund\",\n  \"profundizado\": \"profundiz\",\n  \"profundizamos\": \"profundiz\",\n  \"profundizar\": \"profundiz\",\n  \"profundizará\": \"profundiz\",\n  \"profundo\": \"profund\",\n  \"profundos\": \"profund\",\n  \"progenitora\": \"progenitor\",\n  \"programa\": \"program\",\n  \"programación\": \"program\",\n  \"programada\": \"program\",\n  \"programadas\": \"program\",\n  \"programado\": \"program\",\n  \"programados\": \"program\",\n  \"programan\": \"program\",\n  \"programando\": \"program\",\n  \"programar\": \"program\",\n  \"programas\": \"program\",\n  \"programático\": \"programat\",\n  \"programmer\": \"programm\",\n  \"programó\": \"program\",\n  \"progresando\": \"progres\",\n  \"progresarán\": \"progres\",\n  \"progresista\": \"progres\",\n  \"progresivamente\": \"progres\",\n  \"progresivo\": \"progres\",\n  \"progreso\": \"progres\",\n  \"progresos\": \"progres\",\n  \"prohiba\": \"prohib\",\n  \"prohiban\": \"prohib\",\n  \"prohíbe\": \"prohib\",\n  \"prohibía\": \"prohib\",\n  \"prohibición\": \"prohibicion\",\n  \"prohibiciones\": \"prohibicion\",\n  \"prohibida\": \"prohib\",\n  \"prohibidas\": \"prohib\",\n  \"prohibido\": \"prohib\",\n  \"prohibidos\": \"prohib\",\n  \"prohibieron\": \"prohib\",\n  \"prohibió\": \"prohib\",\n  \"prohibir\": \"prohib\",\n  \"proletaria\": \"proletari\",\n  \"prolíder\": \"prolid\",\n  \"proliferación\": \"prolifer\",\n  \"proliferan\": \"prolifer\",\n  \"prolijas\": \"prolij\",\n  \"prologan\": \"prolog\",\n  \"prólogo\": \"prolog\",\n  \"prolongación\": \"prolong\",\n  \"prolongada\": \"prolong\",\n  \"prolongadas\": \"prolong\",\n  \"prolongado\": \"prolong\",\n  \"prolongan\": \"prolong\",\n  \"prolongar\": \"prolong\",\n  \"prolongarse\": \"prolong\",\n  \"prolongó\": \"prolong\",\n  \"promediar\": \"promedi\",\n  \"promedio\": \"promedi\",\n  \"promesa\": \"promes\",\n  \"promesas\": \"promes\",\n  \"prometan\": \"promet\",\n  \"promete\": \"promet\",\n  \"prometedor\": \"prometedor\",\n  \"prometen\": \"promet\",\n  \"prometerle\": \"promet\",\n  \"prometerles\": \"promet\",\n  \"prometidas\": \"promet\",\n  \"prometido\": \"promet\",\n  \"prometieron\": \"promet\",\n  \"prometimos\": \"promet\",\n  \"prometió\": \"promet\",\n  \"prometo\": \"promet\",\n  \"promex\": \"promex\",\n  \"promiscuidad\": \"promiscu\",\n  \"promiscuo\": \"promiscu\",\n  \"promoción\": \"promocion\",\n  \"promociona\": \"promocion\",\n  \"promocionado\": \"promocion\",\n  \"promocional\": \"promocional\",\n  \"promocionales\": \"promocional\",\n  \"promocionan\": \"promocion\",\n  \"promocionando\": \"promocion\",\n  \"promocionar\": \"promocion\",\n  \"promocionarlo\": \"promocion\",\n  \"promocionarse\": \"promocion\",\n  \"promociones\": \"promocion\",\n  \"promotor\": \"promotor\",\n  \"promotora\": \"promotor\",\n  \"promotoras\": \"promotor\",\n  \"promotores\": \"promotor\",\n  \"promovemos\": \"promov\",\n  \"promover\": \"promov\",\n  \"promoverá\": \"promov\",\n  \"promoverán\": \"promov\",\n  \"promovía\": \"promov\",\n  \"promovida\": \"promov\",\n  \"promovido\": \"promov\",\n  \"promovidos\": \"promov\",\n  \"promoviendo\": \"promov\",\n  \"promovieron\": \"promov\",\n  \"promovió\": \"promov\",\n  \"prompt\": \"prompt\",\n  \"promueva\": \"promuev\",\n  \"promueve\": \"promuev\",\n  \"promueven\": \"promuev\",\n  \"promulgación\": \"promulg\",\n  \"promulgada\": \"promulg\",\n  \"promvido\": \"promv\",\n  \"pronasol\": \"pronasol\",\n  \"pronostica\": \"pronost\",\n  \"pronosticada\": \"pronostic\",\n  \"pronosticado\": \"pronostic\",\n  \"pronosticaron\": \"pronostic\",\n  \"pronostico\": \"pronost\",\n  \"pronóstico\": \"pronost\",\n  \"pronósticos\": \"pronost\",\n  \"pronta\": \"pront\",\n  \"pronto\": \"pront\",\n  \"pronuciados\": \"pronuci\",\n  \"pronuncia\": \"pronunci\",\n  \"pronunciadas\": \"pronunci\",\n  \"pronunciamiento\": \"pronunci\",\n  \"pronunciamos\": \"pronunci\",\n  \"pronunciar\": \"pronunci\",\n  \"pronunciaron\": \"pronunci\",\n  \"pronuncie\": \"pronunci\",\n  \"pronunció\": \"pronunc\",\n  \"propagación\": \"propag\",\n  \"propaganda\": \"propagand\",\n  \"propagandísticas\": \"propagandist\",\n  \"propagaron\": \"propag\",\n  \"propensas\": \"propens\",\n  \"propia\": \"propi\",\n  \"propiamente\": \"propi\",\n  \"propias\": \"propi\",\n  \"propiciado\": \"propici\",\n  \"propiciando\": \"propici\",\n  \"propiciar\": \"propici\",\n  \"propiciará\": \"propici\",\n  \"propiciarse\": \"propici\",\n  \"propicien\": \"propici\",\n  \"propicio\": \"propici\",\n  \"propició\": \"propic\",\n  \"propiedad\": \"propied\",\n  \"propiedades\": \"propiedad\",\n  \"propietaria\": \"propietari\",\n  \"propietario\": \"propietari\",\n  \"propietarios\": \"propietari\",\n  \"propinándole\": \"propin\",\n  \"propinarle\": \"propin\",\n  \"propinaron\": \"propin\",\n  \"propinas\": \"propin\",\n  \"propinó\": \"propin\",\n  \"propio\": \"propi\",\n  \"propios\": \"propi\",\n  \"propone\": \"propon\",\n  \"proponemos\": \"propon\",\n  \"proponen\": \"propon\",\n  \"proponer\": \"propon\",\n  \"proponerle\": \"propon\",\n  \"proponernos\": \"propon\",\n  \"proponga\": \"propong\",\n  \"propongo\": \"propong\",\n  \"proponían\": \"propon\",\n  \"proporción\": \"proporcion\",\n  \"proporciona\": \"proporcion\",\n  \"proporcionaba\": \"proporcion\",\n  \"proporcionada\": \"proporcion\",\n  \"proporcionadas\": \"proporcion\",\n  \"proporcionado\": \"proporcion\",\n  \"proporcionados\": \"proporcion\",\n  \"proporcional\": \"proporcional\",\n  \"proporcionan\": \"proporcion\",\n  \"proporcionando\": \"proporcion\",\n  \"proporcionar\": \"proporcion\",\n  \"proporcionará\": \"proporcion\",\n  \"proporcionaría\": \"proporcion\",\n  \"proporcionarle\": \"proporcion\",\n  \"proporcionarles\": \"proporcion\",\n  \"proporcione\": \"proporcion\",\n  \"proporcionen\": \"proporcion\",\n  \"proporciones\": \"proporcion\",\n  \"proporcionó\": \"proporcion\",\n  \"proposición\": \"proposicion\",\n  \"propositivas\": \"proposit\",\n  \"propósito\": \"proposit\",\n  \"propósitos\": \"proposit\",\n  \"propuesta\": \"propuest\",\n  \"propuestas\": \"propuest\",\n  \"propuesto\": \"propuest\",\n  \"propuestos\": \"propuest\",\n  \"propulsor\": \"propulsor\",\n  \"propuse\": \"propus\",\n  \"propusieron\": \"propus\",\n  \"propuso\": \"propus\",\n  \"prórroga\": \"prorrog\",\n  \"prorrogada\": \"prorrog\",\n  \"prorrumpe\": \"prorrump\",\n  \"prosa\": \"pros\",\n  \"prose\": \"pros\",\n  \"proseguid\": \"prosegu\",\n  \"proseguir\": \"prosegu\",\n  \"proselitismo\": \"proselit\",\n  \"prosiga\": \"prosig\",\n  \"prosigue\": \"prosig\",\n  \"prosiguió\": \"prosigu\",\n  \"prosinecky\": \"prosinecky\",\n  \"prospectiva\": \"prospect\",\n  \"prospecto\": \"prospect\",\n  \"prospectos\": \"prospect\",\n  \"prosperado\": \"prosper\",\n  \"prosperan\": \"prosper\",\n  \"prospere\": \"prosper\",\n  \"prosperidades\": \"prosper\",\n  \"protagónicos\": \"protagon\",\n  \"protagonismo\": \"protagon\",\n  \"protagonista\": \"protagon\",\n  \"protagonistas\": \"protagon\",\n  \"protagonizado\": \"protagoniz\",\n  \"protagonizados\": \"protagoniz\",\n  \"protagonizará\": \"protagoniz\",\n  \"protagonizaron\": \"protagoniz\",\n  \"protagonizó\": \"protagoniz\",\n  \"protección\": \"proteccion\",\n  \"proteccionistas\": \"proteccion\",\n  \"protective\": \"protectiv\",\n  \"protecto\": \"protect\",\n  \"protector\": \"protector\",\n  \"protectora\": \"protector\",\n  \"protectorado\": \"protector\",\n  \"protectores\": \"protector\",\n  \"protege\": \"proteg\",\n  \"protegen\": \"proteg\",\n  \"proteger\": \"proteg\",\n  \"protegerán\": \"proteg\",\n  \"protegerían\": \"proteg\",\n  \"protegerse\": \"proteg\",\n  \"protegía\": \"proteg\",\n  \"protegido\": \"proteg\",\n  \"protegidos\": \"proteg\",\n  \"protegieron\": \"proteg\",\n  \"protein\": \"protein\",\n  \"proteína\": \"protein\",\n  \"proteínas\": \"protein\",\n  \"proteja\": \"protej\",\n  \"protejan\": \"protej\",\n  \"protesta\": \"protest\",\n  \"protestada\": \"protest\",\n  \"protestan\": \"protest\",\n  \"protestantes\": \"protest\",\n  \"protestar\": \"protest\",\n  \"protestaron\": \"protest\",\n  \"protestas\": \"protest\",\n  \"proteste\": \"protest\",\n  \"protesten\": \"protest\",\n  \"protestó\": \"protest\",\n  \"protocolo\": \"protocol\",\n  \"prototipo\": \"prototip\",\n  \"prototipos\": \"prototip\",\n  \"provea\": \"prove\",\n  \"provecho\": \"provech\",\n  \"provee\": \"prove\",\n  \"proveedor\": \"proveedor\",\n  \"proveedores\": \"proveedor\",\n  \"proveeduría\": \"proveedur\",\n  \"proveer\": \"prov\",\n  \"provenía\": \"proven\",\n  \"proveniente\": \"provenient\",\n  \"provenientes\": \"provenient\",\n  \"proverbio\": \"proverbi\",\n  \"proviene\": \"provien\",\n  \"provienen\": \"provien\",\n  \"provincia\": \"provinci\",\n  \"provincial\": \"provincial\",\n  \"provinciales\": \"provincial\",\n  \"provinciana\": \"provincian\",\n  \"provincias\": \"provinci\",\n  \"provisional\": \"provisional\",\n  \"provisionales\": \"provisional\",\n  \"provisiones\": \"provision\",\n  \"provoca\": \"provoc\",\n  \"provocaba\": \"provoc\",\n  \"provocación\": \"provoc\",\n  \"provocado\": \"provoc\",\n  \"provocador\": \"provoc\",\n  \"provocados\": \"provoc\",\n  \"provocan\": \"provoc\",\n  \"provocando\": \"provoc\",\n  \"provocar\": \"provoc\",\n  \"provocará\": \"provoc\",\n  \"provocaran\": \"provoc\",\n  \"provocarán\": \"provoc\",\n  \"provocaron\": \"provoc\",\n  \"provocativa\": \"provoc\",\n  \"provocó\": \"provoc\",\n  \"provoque\": \"provoqu\",\n  \"provoquen\": \"provoqu\",\n  \"provotel\": \"provotel\",\n  \"próxima\": \"proxim\",\n  \"próximamente\": \"proxim\",\n  \"próximas\": \"proxim\",\n  \"próximo\": \"proxim\",\n  \"próximos\": \"prox\",\n  \"proyección\": \"proyeccion\",\n  \"proyecta\": \"proyect\",\n  \"proyectaba\": \"proyect\",\n  \"proyectaban\": \"proyect\",\n  \"proyectada\": \"proyect\",\n  \"proyectado\": \"proyect\",\n  \"proyectan\": \"proyect\",\n  \"proyectar\": \"proyect\",\n  \"proyectará\": \"proyect\",\n  \"proyectarse\": \"proyect\",\n  \"proyectil\": \"proyectil\",\n  \"proyectito\": \"proyectit\",\n  \"proyecto\": \"proyect\",\n  \"proyectó\": \"proyect\",\n  \"proyectos\": \"proyect\",\n  \"prudente\": \"prudent\",\n  \"prudentemente\": \"prudent\",\n  \"prudentes\": \"prudent\",\n  \"prueba\": \"prueb\",\n  \"pruebas\": \"prueb\",\n  \"pruebita\": \"pruebit\",\n  \"pruneda\": \"pruned\",\n  \"prusia\": \"prusi\",\n  \"prusiana\": \"prusian\",\n  \"prusianos\": \"prusian\",\n  \"ps\": \"ps\",\n  \"pseudolíderes\": \"pseudolider\",\n  \"psicoanalista\": \"psicoanal\",\n  \"psicoanalítica\": \"psicoanalit\",\n  \"psicoanalítico\": \"psicoanalit\",\n  \"psicóloga\": \"psicolog\",\n  \"psicólogas\": \"psicolog\",\n  \"psicología\": \"psicolog\",\n  \"psicológica\": \"psicolog\",\n  \"psicológicamente\": \"psicolog\",\n  \"psicológicas\": \"psicolog\",\n  \"psicológico\": \"psicolog\",\n  \"psicológicos\": \"psicolog\",\n  \"psicólogo\": \"psicolog\",\n  \"psicoterapéutico\": \"psicoterapeut\",\n  \"psicoterapia\": \"psicoterapi\",\n  \"psicotrópicas\": \"psicotrop\",\n  \"psicotrópicos\": \"psicotrop\",\n  \"psique\": \"psiqu\",\n  \"psiquiátrico\": \"psiquiatr\",\n  \"psíquico\": \"psiquic\",\n  \"psoriasis\": \"psoriasis\",\n  \"pte\": \"pte\",\n  \"púber\": \"pub\",\n  \"public\": \"public\",\n  \"publica\": \"public\",\n  \"pública\": \"public\",\n  \"publicación\": \"public\",\n  \"publicaciones\": \"public\",\n  \"publicada\": \"public\",\n  \"publicadas\": \"public\",\n  \"publicado\": \"public\",\n  \"públicamente\": \"public\",\n  \"publican\": \"public\",\n  \"publicando\": \"public\",\n  \"publicar\": \"public\",\n  \"publicará\": \"public\",\n  \"publicaron\": \"public\",\n  \"públicas\": \"public\",\n  \"publicidad\": \"public\",\n  \"publicistas\": \"public\",\n  \"publicitada\": \"publicit\",\n  \"publicitaria\": \"publicitari\",\n  \"publicitario\": \"publicitari\",\n  \"público\": \"public\",\n  \"publicó\": \"public\",\n  \"públicos\": \"public\",\n  \"publio\": \"publi\",\n  \"publique\": \"publiqu\",\n  \"publishing\": \"publishing\",\n  \"puche\": \"puch\",\n  \"pude\": \"pud\",\n  \"pudiendo\": \"pud\",\n  \"pudiera\": \"pud\",\n  \"pudieran\": \"pud\",\n  \"pudieron\": \"pud\",\n  \"pudiese\": \"pud\",\n  \"pudimos\": \"pud\",\n  \"pudo\": \"pud\",\n  \"pudor\": \"pudor\",\n  \"pue\": \"pue\",\n  \"puebla\": \"puebl\",\n  \"pueblerina\": \"pueblerin\",\n  \"pueblerino\": \"pueblerin\",\n  \"pueblito\": \"pueblit\",\n  \"pueblo\": \"puebl\",\n  \"pueblos\": \"puebl\",\n  \"pueda\": \"pued\",\n  \"puedan\": \"pued\",\n  \"puede\": \"pued\",\n  \"pueden\": \"pued\",\n  \"puedes\": \"pued\",\n  \"puedo\": \"pued\",\n  \"puente\": \"puent\",\n  \"puentes\": \"puent\",\n  \"puerta\": \"puert\",\n  \"puertas\": \"puert\",\n  \"puerto\": \"puert\",\n  \"puertorriqueño\": \"puertorriqueñ\",\n  \"puertos\": \"puert\",\n  \"pues\": \"pues\",\n  \"puesta\": \"puest\",\n  \"puestas\": \"puest\",\n  \"puesteros\": \"puester\",\n  \"puesto\": \"puest\",\n  \"puestos\": \"puest\",\n  \"púgil\": \"pugil\",\n  \"pugilismo\": \"pugil\",\n  \"pugilista\": \"pugil\",\n  \"pugilística\": \"pugilist\",\n  \"pugnan\": \"pugn\",\n  \"pugnando\": \"pugn\",\n  \"pugnará\": \"pugn\",\n  \"pugnaré\": \"pugn\",\n  \"pugnas\": \"pugn\",\n  \"puig\": \"puig\",\n  \"pujante\": \"pujant\",\n  \"pulcro\": \"pulcr\",\n  \"pulgadas\": \"pulg\",\n  \"pulgar\": \"pulg\",\n  \"pulido\": \"pul\",\n  \"pulimos\": \"pul\",\n  \"pulir\": \"pul\",\n  \"pulirlos\": \"pul\",\n  \"pulitzer\": \"pulitz\",\n  \"pulmonares\": \"pulmonar\",\n  \"pulsar\": \"puls\",\n  \"pulso\": \"puls\",\n  \"pululan\": \"pulul\",\n  \"pulverizado\": \"pulveriz\",\n  \"pulverizadora\": \"pulveriz\",\n  \"pulverizar\": \"pulveriz\",\n  \"pulverizó\": \"pulveriz\",\n  \"pum\": \"pum\",\n  \"pumas\": \"pum\",\n  \"pump\": \"pump\",\n  \"puñado\": \"puñ\",\n  \"puñaladas\": \"puñal\",\n  \"puñales\": \"puñal\",\n  \"punk\": \"punk\",\n  \"puño\": \"puñ\",\n  \"punongbayan\": \"punongbay\",\n  \"punta\": \"punt\",\n  \"puntadón\": \"puntadon\",\n  \"puntapies\": \"puntapi\",\n  \"puntas\": \"punt\",\n  \"punteando\": \"punt\",\n  \"punteó\": \"punte\",\n  \"puntería\": \"punt\",\n  \"punterías\": \"punt\",\n  \"puntero\": \"punter\",\n  \"punteros\": \"punter\",\n  \"punto\": \"punt\",\n  \"puntos\": \"punt\",\n  \"puntual\": \"puntual\",\n  \"puntualizaciones\": \"puntualiz\",\n  \"puntualizó\": \"puntualiz\",\n  \"puntualmente\": \"puntual\",\n  \"punzo\": \"punz\",\n  \"punzocortantes\": \"punzocort\",\n  \"punzones\": \"punzon\",\n  \"pupila\": \"pupil\",\n  \"pupilas\": \"pupil\",\n  \"pupilo\": \"pupil\",\n  \"pura\": \"pur\",\n  \"puramente\": \"pur\",\n  \"puras\": \"pur\",\n  \"pureza\": \"purez\",\n  \"purga\": \"purg\",\n  \"purgar\": \"purg\",\n  \"puro\": \"pur\",\n  \"purón\": \"puron\",\n  \"puros\": \"pur\",\n  \"purpúreos\": \"purpure\",\n  \"puse\": \"pus\",\n  \"pusiera\": \"pus\",\n  \"pusiéramos\": \"pus\",\n  \"pusieran\": \"pus\",\n  \"pusieron\": \"pus\",\n  \"pusiese\": \"pus\",\n  \"pusilánime\": \"pusilanim\",\n  \"pusimos\": \"pus\",\n  \"puso\": \"pus\",\n  \"putz\": \"putz\",\n  \"pvc\": \"pvc\",\n  \"pyramid\": \"pyram\",\n  \"q\": \"q\",\n  \"qabrija\": \"qabrij\",\n  \"qi\": \"qi\",\n  \"que\": \"que\",\n  \"qué\": \"que\",\n  \"quebec\": \"quebec\",\n  \"quebradas\": \"quebr\",\n  \"quebrado\": \"quebr\",\n  \"quebrados\": \"quebr\",\n  \"quebrantar\": \"quebrant\",\n  \"quebrar\": \"quebr\",\n  \"quebraron\": \"quebr\",\n  \"quebró\": \"quebr\",\n  \"queda\": \"qued\",\n  \"quedaba\": \"qued\",\n  \"quedaban\": \"qued\",\n  \"quedado\": \"qued\",\n  \"quedamos\": \"qued\",\n  \"quedan\": \"qued\",\n  \"quedando\": \"qued\",\n  \"quedándoles\": \"qued\",\n  \"quedar\": \"qued\",\n  \"quedara\": \"qued\",\n  \"quedará\": \"qued\",\n  \"quedarán\": \"qued\",\n  \"quedaría\": \"qued\",\n  \"quedaríamos\": \"qued\",\n  \"quedarnos\": \"qued\",\n  \"quedaron\": \"qued\",\n  \"quedarse\": \"qued\",\n  \"quedas\": \"qued\",\n  \"quede\": \"qued\",\n  \"queden\": \"qued\",\n  \"quedes\": \"qued\",\n  \"quedó\": \"qued\",\n  \"quehacer\": \"quehac\",\n  \"quehaceres\": \"quehacer\",\n  \"queja\": \"quej\",\n  \"quejaba\": \"quej\",\n  \"quejado\": \"quej\",\n  \"quejamos\": \"quej\",\n  \"quejan\": \"quej\",\n  \"quejando\": \"quej\",\n  \"quejándose\": \"quej\",\n  \"quejaron\": \"quej\",\n  \"quejas\": \"quej\",\n  \"quejó\": \"quej\",\n  \"quejoso\": \"quejos\",\n  \"quejosos\": \"quejos\",\n  \"quela\": \"quel\",\n  \"quelonio\": \"queloni\",\n  \"quemacocos\": \"quemacoc\",\n  \"quemado\": \"quem\",\n  \"quemaduras\": \"quemadur\",\n  \"quemas\": \"quem\",\n  \"quemó\": \"quem\",\n  \"querella\": \"querell\",\n  \"queremos\": \"quer\",\n  \"querendas\": \"querend\",\n  \"querer\": \"quer\",\n  \"quererlo\": \"quer\",\n  \"queretanos\": \"queretan\",\n  \"queretaro\": \"queretar\",\n  \"querétaro\": \"queretar\",\n  \"querétaroi\": \"queretaroi\",\n  \"quería\": \"quer\",\n  \"queríamos\": \"quer\",\n  \"querían\": \"quer\",\n  \"queridas\": \"quer\",\n  \"querido\": \"quer\",\n  \"queriendo\": \"quer\",\n  \"querrá\": \"querr\",\n  \"querrían\": \"querr\",\n  \"queso\": \"ques\",\n  \"quesos\": \"ques\",\n  \"quesque\": \"quesqu\",\n  \"quezada\": \"quez\",\n  \"quiebra\": \"quiebr\",\n  \"quien\": \"qui\",\n  \"quién\": \"quien\",\n  \"quienes\": \"quien\",\n  \"quiénes\": \"quien\",\n  \"quiera\": \"quier\",\n  \"quieran\": \"quier\",\n  \"quieras\": \"quier\",\n  \"quiere\": \"quier\",\n  \"quieren\": \"quier\",\n  \"quieres\": \"quier\",\n  \"quiero\": \"quier\",\n  \"quiet\": \"quiet\",\n  \"quihubo\": \"quihub\",\n  \"quijano\": \"quijan\",\n  \"quijote\": \"quijot\",\n  \"química\": \"quimic\",\n  \"químicas\": \"quimic\",\n  \"químico\": \"quimic\",\n  \"quince\": \"quinc\",\n  \"quinceañero\": \"quinceañer\",\n  \"quincena\": \"quincen\",\n  \"quincenales\": \"quincenal\",\n  \"quinielas\": \"quiniel\",\n  \"quinta\": \"quint\",\n  \"quintana\": \"quintan\",\n  \"quintanilla\": \"quintanill\",\n  \"quinteto\": \"quintet\",\n  \"quintetos\": \"quintet\",\n  \"quinto\": \"quint\",\n  \"quiroga\": \"quirog\",\n  \"quiroz\": \"quiroz\",\n  \"quirúrgica\": \"quirurg\",\n  \"quirúrgicamente\": \"quirurg\",\n  \"quise\": \"quis\",\n  \"quisiera\": \"quis\",\n  \"quisiéramos\": \"quis\",\n  \"quisieran\": \"quis\",\n  \"quisieron\": \"quis\",\n  \"quiso\": \"quis\",\n  \"quisquillosos\": \"quisquill\",\n  \"quita\": \"quit\",\n  \"quitaba\": \"quit\",\n  \"quitadme\": \"quitadm\",\n  \"quitado\": \"quit\",\n  \"quitan\": \"quit\",\n  \"quitando\": \"quit\",\n  \"quitándole\": \"quit\",\n  \"quitándolos\": \"quit\",\n  \"quitándose\": \"quit\",\n  \"quitar\": \"quit\",\n  \"quitara\": \"quit\",\n  \"quitarían\": \"quit\",\n  \"quitarle\": \"quit\",\n  \"quitarles\": \"quit\",\n  \"quitarnos\": \"quit\",\n  \"quitaron\": \"quit\",\n  \"quitarse\": \"quit\",\n  \"quite\": \"quit\",\n  \"quiten\": \"quit\",\n  \"quitó\": \"quit\",\n  \"quitos\": \"quit\",\n  \"quizá\": \"quiz\",\n  \"quizás\": \"quizas\",\n  \"quo\": \"quo\",\n  \"qwarge\": \"qwarg\",\n  \"r\": \"r\",\n  \"rabaté\": \"rabat\",\n  \"rabatté\": \"rabatt\",\n  \"rabbit\": \"rabbit\",\n  \"rabia\": \"rabi\",\n  \"rabiar\": \"rabi\",\n  \"rabino\": \"rabin\",\n  \"rabo\": \"rab\",\n  \"racha\": \"rach\",\n  \"rachas\": \"rach\",\n  \"racial\": \"racial\",\n  \"raciales\": \"racial\",\n  \"racimo\": \"racim\",\n  \"racing\": \"racing\",\n  \"raciocinios\": \"raciocini\",\n  \"radar\": \"rad\",\n  \"radares\": \"radar\",\n  \"radiación\": \"radiacion\",\n  \"radiaciones\": \"radiacion\",\n  \"radiador\": \"radiador\",\n  \"radial\": \"radial\",\n  \"radiales\": \"radial\",\n  \"radiante\": \"radiant\",\n  \"radiantes\": \"radiant\",\n  \"radica\": \"radic\",\n  \"radicada\": \"radic\",\n  \"radicado\": \"radic\",\n  \"radical\": \"radical\",\n  \"radicalismo\": \"radical\",\n  \"radicalización\": \"radicaliz\",\n  \"radicalmente\": \"radical\",\n  \"radicar\": \"radic\",\n  \"radio\": \"radi\",\n  \"radioactiva\": \"radioact\",\n  \"radioactividad\": \"radioact\",\n  \"radioescucha\": \"radioescuch\",\n  \"radiofónica\": \"radiofon\",\n  \"radiofónico\": \"radiofon\",\n  \"radiografías\": \"radiograf\",\n  \"radiología\": \"radiolog\",\n  \"radios\": \"radi\",\n  \"radko\": \"radk\",\n  \"rads\": \"rads\",\n  \"rafael\": \"rafael\",\n  \"ráfagas\": \"rafag\",\n  \"rafi\": \"rafi\",\n  \"raí\": \"rai\",\n  \"raíces\": \"raic\",\n  \"raiz\": \"raiz\",\n  \"raíz\": \"raiz\",\n  \"rajado\": \"raj\",\n  \"rajko\": \"rajk\",\n  \"rajmunel\": \"rajmunel\",\n  \"rakenel\": \"rakenel\",\n  \"ram\": \"ram\",\n  \"rama\": \"ram\",\n  \"ramana\": \"raman\",\n  \"ramas\": \"ram\",\n  \"ramificaciones\": \"ramif\",\n  \"ramificado\": \"ramific\",\n  \"ramírez\": \"ramirez\",\n  \"ramiro\": \"ramir\",\n  \"ramo\": \"ram\",\n  \"ramon\": \"ramon\",\n  \"ramón\": \"ramon\",\n  \"ramos\": \"ram\",\n  \"rampas\": \"ramp\",\n  \"rams\": \"rams\",\n  \"ranchera\": \"rancher\",\n  \"rancheras\": \"rancher\",\n  \"rancherita\": \"rancherit\",\n  \"rancho\": \"ranch\",\n  \"rangel\": \"rangel\",\n  \"rango\": \"rang\",\n  \"rangos\": \"rang\",\n  \"rano\": \"ran\",\n  \"ranqueadas\": \"ranqu\",\n  \"ranulfo\": \"ranulf\",\n  \"rap\": \"rap\",\n  \"rapa\": \"rap\",\n  \"rapamontes\": \"rapamont\",\n  \"rapar\": \"rap\",\n  \"raphael\": \"raphael\",\n  \"rápida\": \"rap\",\n  \"rápidamente\": \"rapid\",\n  \"rápidas\": \"rap\",\n  \"rapidez\": \"rapidez\",\n  \"rápido\": \"rap\",\n  \"rápidos\": \"rap\",\n  \"rapport\": \"rapport\",\n  \"raquet\": \"raquet\",\n  \"raquítica\": \"raquit\",\n  \"raquítico\": \"raquit\",\n  \"rara\": \"rar\",\n  \"raraku\": \"raraku\",\n  \"raro\": \"rar\",\n  \"raros\": \"rar\",\n  \"rasca\": \"rasc\",\n  \"rascacielos\": \"rascaciel\",\n  \"rascón\": \"rascon\",\n  \"rasero\": \"raser\",\n  \"rasgaría\": \"rasg\",\n  \"rasgos\": \"rasg\",\n  \"rasmussen\": \"rasmuss\",\n  \"raspar\": \"rasp\",\n  \"rastrearlas\": \"rastr\",\n  \"rastro\": \"rastr\",\n  \"rateros\": \"rater\",\n  \"ratificación\": \"ratif\",\n  \"ratificado\": \"ratific\",\n  \"ratificar\": \"ratific\",\n  \"ratificará\": \"ratific\",\n  \"ratifico\": \"ratif\",\n  \"ratificó\": \"ratific\",\n  \"rating\": \"rating\",\n  \"ratito\": \"ratit\",\n  \"rato\": \"rat\",\n  \"raton\": \"raton\",\n  \"ratón\": \"raton\",\n  \"ratoncito\": \"ratoncit\",\n  \"ratones\": \"raton\",\n  \"ratos\": \"rat\",\n  \"rauda\": \"raud\",\n  \"raúl\": \"raul\",\n  \"raulito\": \"raulit\",\n  \"ravel\": \"ravel\",\n  \"ravines\": \"ravin\",\n  \"ray\": \"ray\",\n  \"raya\": \"ray\",\n  \"rayada\": \"ray\",\n  \"rayaditos\": \"rayadit\",\n  \"rayado\": \"ray\",\n  \"rayados\": \"ray\",\n  \"rayando\": \"ray\",\n  \"rayas\": \"ray\",\n  \"rayen\": \"ray\",\n  \"raymonde\": \"raymond\",\n  \"raymundo\": \"raymund\",\n  \"rayo\": \"ray\",\n  \"rayón\": \"rayon\",\n  \"rayones\": \"rayon\",\n  \"rayos\": \"ray\",\n  \"raytheon\": \"raytheon\",\n  \"raza\": \"raz\",\n  \"razón\": \"razon\",\n  \"razonable\": \"razon\",\n  \"razonablemente\": \"razon\",\n  \"razonables\": \"razon\",\n  \"razonada\": \"razon\",\n  \"razonamiento\": \"razon\",\n  \"razonan\": \"razon\",\n  \"razones\": \"razon\",\n  \"razos\": \"raz\",\n  \"re\": \"re\",\n  \"reabierta\": \"reabiert\",\n  \"reabra\": \"reabr\",\n  \"reabrir\": \"reabr\",\n  \"reabrirse\": \"reabr\",\n  \"reacaudarían\": \"reacaud\",\n  \"reacción\": \"reaccion\",\n  \"reaccionar\": \"reaccion\",\n  \"reaccionaria\": \"reaccionari\",\n  \"reaccionarios\": \"reaccionari\",\n  \"reacciones\": \"reaccion\",\n  \"reaccionó\": \"reaccion\",\n  \"reacomodados\": \"reacomod\",\n  \"reactivar\": \"reactiv\",\n  \"reactivarán\": \"reactiv\",\n  \"reactor\": \"reactor\",\n  \"readaptación\": \"readapt\",\n  \"readecuación\": \"readecu\",\n  \"reafirmar\": \"reafirm\",\n  \"reafirmaron\": \"reafirm\",\n  \"reafirmé\": \"reafirm\",\n  \"reafirmó\": \"reafirm\",\n  \"reagan\": \"reag\",\n  \"reajustados\": \"reajust\",\n  \"reajustarlas\": \"reajust\",\n  \"reajuste\": \"reajust\",\n  \"real\": \"real\",\n  \"realce\": \"realc\",\n  \"reales\": \"real\",\n  \"realeza\": \"realez\",\n  \"realice\": \"realic\",\n  \"realicé\": \"realic\",\n  \"realicen\": \"realic\",\n  \"realidad\": \"realid\",\n  \"realidades\": \"realidad\",\n  \"realismo\": \"realism\",\n  \"realista\": \"realist\",\n  \"realistas\": \"realist\",\n  \"realísticamente\": \"realist\",\n  \"realiza\": \"realiz\",\n  \"realizaba\": \"realiz\",\n  \"realizaban\": \"realiz\",\n  \"realización\": \"realiz\",\n  \"realizada\": \"realiz\",\n  \"realizadas\": \"realiz\",\n  \"realizado\": \"realiz\",\n  \"realizador\": \"realiz\",\n  \"realizados\": \"realiz\",\n  \"realizamos\": \"realiz\",\n  \"realizan\": \"realiz\",\n  \"realizando\": \"realiz\",\n  \"realizar\": \"realiz\",\n  \"realizara\": \"realiz\",\n  \"realizará\": \"realiz\",\n  \"realizarán\": \"realiz\",\n  \"realizaremos\": \"realiz\",\n  \"realizarían\": \"realiz\",\n  \"realizarlo\": \"realiz\",\n  \"realizarnos\": \"realiz\",\n  \"realizaron\": \"realiz\",\n  \"realizarse\": \"realiz\",\n  \"realizó\": \"realiz\",\n  \"realmente\": \"realment\",\n  \"realziados\": \"realzi\",\n  \"reanimar\": \"reanim\",\n  \"reanudándose\": \"reanud\",\n  \"reanudar\": \"reanud\",\n  \"reanudarán\": \"reanud\",\n  \"reanudó\": \"reanud\",\n  \"reaparecer\": \"reaparec\",\n  \"reaparecerá\": \"reaparec\",\n  \"reapareció\": \"reaparec\",\n  \"reaparezca\": \"reaparezc\",\n  \"reaparición\": \"reaparicion\",\n  \"reaprehensión\": \"reaprehension\",\n  \"reavalúo\": \"reavalu\",\n  \"rebajar\": \"rebaj\",\n  \"rebaño\": \"rebañ\",\n  \"rebasa\": \"rebas\",\n  \"rebasada\": \"rebas\",\n  \"rebasado\": \"rebas\",\n  \"rebasados\": \"rebas\",\n  \"rebasan\": \"rebas\",\n  \"rebasar\": \"rebas\",\n  \"rebasará\": \"rebas\",\n  \"rebasaron\": \"rebas\",\n  \"rebasen\": \"reb\",\n  \"rebasó\": \"rebas\",\n  \"rebeca\": \"rebec\",\n  \"rebelar\": \"rebel\",\n  \"rebelde\": \"rebeld\",\n  \"rebeldes\": \"rebeld\",\n  \"rebelión\": \"rebelion\",\n  \"rebobinar\": \"rebobin\",\n  \"rebolledo\": \"rebolled\",\n  \"rebonato\": \"rebonat\",\n  \"rebordados\": \"rebord\",\n  \"rebotará\": \"rebot\",\n  \"rebotarán\": \"rebot\",\n  \"rebote\": \"rebot\",\n  \"recaba\": \"rec\",\n  \"recaban\": \"rec\",\n  \"recado\": \"rec\",\n  \"recados\": \"rec\",\n  \"recalcar\": \"recalc\",\n  \"recalcitrante\": \"recalcitr\",\n  \"recalcó\": \"recalc\",\n  \"recalibren\": \"recalibr\",\n  \"recámara\": \"recam\",\n  \"recapacite\": \"recapacit\",\n  \"recapitalización\": \"recapitaliz\",\n  \"recargaron\": \"recarg\",\n  \"recargó\": \"recarg\",\n  \"recarpetear\": \"recarpet\",\n  \"recarpeteo\": \"recarpete\",\n  \"recaudaban\": \"recaud\",\n  \"recaudando\": \"recaud\",\n  \"recaudar\": \"recaud\",\n  \"recaudarían\": \"recaud\",\n  \"recaudaron\": \"recaud\",\n  \"recaude\": \"recaud\",\n  \"recaudó\": \"recaud\",\n  \"rece\": \"rec\",\n  \"recelar\": \"recel\",\n  \"recelos\": \"recel\",\n  \"recepción\": \"recepcion\",\n  \"receptor\": \"receptor\",\n  \"receptores\": \"receptor\",\n  \"receptoría\": \"receptor\",\n  \"recesión\": \"recesion\",\n  \"recesiones\": \"recesion\",\n  \"recesivo\": \"reces\",\n  \"receso\": \"reces\",\n  \"receta\": \"recet\",\n  \"rechace\": \"rechac\",\n  \"rechaza\": \"rechaz\",\n  \"rechazada\": \"rechaz\",\n  \"rechazadas\": \"rechaz\",\n  \"rechazamos\": \"rechaz\",\n  \"rechazan\": \"rechaz\",\n  \"rechazando\": \"rechaz\",\n  \"rechazar\": \"rechaz\",\n  \"rechazaron\": \"rechaz\",\n  \"rechazo\": \"rechaz\",\n  \"rechazó\": \"rechaz\",\n  \"rechifla\": \"rechifl\",\n  \"rechiflas\": \"rechifl\",\n  \"rechinan\": \"rechin\",\n  \"rechinar\": \"rechin\",\n  \"reciba\": \"recib\",\n  \"reciban\": \"recib\",\n  \"recibe\": \"recib\",\n  \"reciben\": \"recib\",\n  \"recibía\": \"recib\",\n  \"recibían\": \"recib\",\n  \"recibida\": \"recib\",\n  \"recibidas\": \"recib\",\n  \"recibido\": \"recib\",\n  \"recibidos\": \"recib\",\n  \"recibiendo\": \"recib\",\n  \"recibiera\": \"recib\",\n  \"recibieron\": \"recib\",\n  \"recibimiento\": \"recib\",\n  \"recibimos\": \"recib\",\n  \"recibió\": \"recib\",\n  \"recibir\": \"recib\",\n  \"recibirá\": \"recib\",\n  \"recibirán\": \"recib\",\n  \"recibiría\": \"recib\",\n  \"recibirían\": \"recib\",\n  \"recibirla\": \"recib\",\n  \"recibirlas\": \"recib\",\n  \"recibirlo\": \"recib\",\n  \"recibirnos\": \"recib\",\n  \"recibo\": \"recib\",\n  \"recibos\": \"recib\",\n  \"reciclaje\": \"reciclaj\",\n  \"reciclamos\": \"recicl\",\n  \"reciclando\": \"recicl\",\n  \"reciclar\": \"recicl\",\n  \"recién\": \"recien\",\n  \"reciente\": \"recient\",\n  \"recientemente\": \"recient\",\n  \"recientes\": \"recient\",\n  \"recientísima\": \"recientisim\",\n  \"recinto\": \"recint\",\n  \"recintos\": \"recint\",\n  \"recipiente\": \"recipient\",\n  \"recíprocas\": \"reciproc\",\n  \"reciprocidad\": \"reciproc\",\n  \"recíproco\": \"reciproc\",\n  \"recirculado\": \"recircul\",\n  \"recircularon\": \"recircul\",\n  \"recitar\": \"recit\",\n  \"recitarle\": \"recit\",\n  \"recitó\": \"recit\",\n  \"reclama\": \"reclam\",\n  \"reclamaba\": \"reclam\",\n  \"reclamación\": \"reclam\",\n  \"reclamadas\": \"reclam\",\n  \"reclamados\": \"reclam\",\n  \"reclaman\": \"reclam\",\n  \"reclamando\": \"reclam\",\n  \"reclamar\": \"reclam\",\n  \"reclamara\": \"reclam\",\n  \"reclamarle\": \"reclam\",\n  \"reclamarles\": \"reclam\",\n  \"reclamaron\": \"reclam\",\n  \"reclamen\": \"reclam\",\n  \"reclamó\": \"reclam\",\n  \"reclamos\": \"recl\",\n  \"recluido\": \"reclu\",\n  \"recluidos\": \"reclu\",\n  \"reclusorio\": \"reclusori\",\n  \"reclusorios\": \"reclusori\",\n  \"reclutadas\": \"reclut\",\n  \"recocido\": \"recoc\",\n  \"recogen\": \"recog\",\n  \"recoger\": \"recog\",\n  \"recogerla\": \"recog\",\n  \"recogerle\": \"recog\",\n  \"recogida\": \"recog\",\n  \"recogidas\": \"recog\",\n  \"recogido\": \"recog\",\n  \"recogidos\": \"recog\",\n  \"recogieron\": \"recog\",\n  \"recogió\": \"recog\",\n  \"recolección\": \"recoleccion\",\n  \"recolectando\": \"recolect\",\n  \"recolector\": \"recolector\",\n  \"recomedaciones\": \"recomed\",\n  \"recomendación\": \"recomend\",\n  \"recomendaciones\": \"recomend\",\n  \"recomendadas\": \"recomend\",\n  \"recomendado\": \"recomend\",\n  \"recomendamos\": \"recomend\",\n  \"recomendar\": \"recomend\",\n  \"recomendara\": \"recomend\",\n  \"recomendaron\": \"recomend\",\n  \"recomendó\": \"recomend\",\n  \"recomienda\": \"recomiend\",\n  \"recomiendan\": \"recomiend\",\n  \"recomiendo\": \"recom\",\n  \"recompensa\": \"recompens\",\n  \"recompra\": \"recompr\",\n  \"reconciliacion\": \"reconciliacion\",\n  \"reconciliación\": \"reconcili\",\n  \"reconcilió\": \"reconcil\",\n  \"reconducción\": \"reconduccion\",\n  \"reconformación\": \"reconform\",\n  \"reconfortante\": \"reconfort\",\n  \"reconoce\": \"reconoc\",\n  \"reconocemos\": \"reconoc\",\n  \"reconocer\": \"reconoc\",\n  \"reconocerlas\": \"reconoc\",\n  \"reconocerlos\": \"reconoc\",\n  \"reconocerse\": \"reconoc\",\n  \"reconocía\": \"reconoc\",\n  \"reconocida\": \"reconoc\",\n  \"reconocidamente\": \"reconocid\",\n  \"reconocidas\": \"reconoc\",\n  \"reconocido\": \"reconoc\",\n  \"reconocidos\": \"reconoc\",\n  \"reconociendo\": \"reconoc\",\n  \"reconocieron\": \"reconoc\",\n  \"reconocimiento\": \"reconoc\",\n  \"reconocimientos\": \"reconoc\",\n  \"reconoció\": \"reconoc\",\n  \"reconozca\": \"reconozc\",\n  \"reconozcan\": \"reconozc\",\n  \"reconozco\": \"reconozc\",\n  \"reconsidere\": \"reconsider\",\n  \"reconstrucción\": \"reconstruccion\",\n  \"reconstruir\": \"reconstru\",\n  \"reconstruirán\": \"reconstru\",\n  \"reconversión\": \"reconversion\",\n  \"recopa\": \"recop\",\n  \"recopila\": \"recopil\",\n  \"recopilación\": \"recopil\",\n  \"recopiló\": \"recopil\",\n  \"record\": \"record\",\n  \"récord\": \"record\",\n  \"recordaba\": \"record\",\n  \"recordado\": \"record\",\n  \"recordar\": \"record\",\n  \"recordarán\": \"record\",\n  \"recordemos\": \"record\",\n  \"recordó\": \"record\",\n  \"récords\": \"records\",\n  \"recorre\": \"recorr\",\n  \"recorrer\": \"recorr\",\n  \"recorrida\": \"recorr\",\n  \"recorrido\": \"recorr\",\n  \"recorridos\": \"recorr\",\n  \"recorrieron\": \"recorr\",\n  \"recorrió\": \"recorr\",\n  \"recortar\": \"recort\",\n  \"recorte\": \"recort\",\n  \"recortes\": \"recort\",\n  \"recostado\": \"recost\",\n  \"recostó\": \"recost\",\n  \"recreación\": \"recreacion\",\n  \"recreará\": \"recr\",\n  \"recreativas\": \"recreat\",\n  \"recreativo\": \"recreat\",\n  \"recrimina\": \"recrimin\",\n  \"recriminaba\": \"recrimin\",\n  \"recriminados\": \"recrimin\",\n  \"recronometraron\": \"recronometr\",\n  \"recrudecer\": \"recrudec\",\n  \"recrudecieron\": \"recrudec\",\n  \"recrudeció\": \"recrudec\",\n  \"recta\": \"rect\",\n  \"rectas\": \"rect\",\n  \"rectificada\": \"rectific\",\n  \"rectificar\": \"rectific\",\n  \"rectitud\": \"rectitud\",\n  \"rector\": \"rector\",\n  \"rectoría\": \"rector\",\n  \"rectos\": \"rect\",\n  \"recuerda\": \"recuerd\",\n  \"recuerdan\": \"recuerd\",\n  \"recuerde\": \"recuerd\",\n  \"recuérdele\": \"recuerdel\",\n  \"recuerden\": \"recuerd\",\n  \"recuerdo\": \"recuerd\",\n  \"recuerdos\": \"recuerd\",\n  \"recupera\": \"recuper\",\n  \"recuperable\": \"recuper\",\n  \"recuperación\": \"recuper\",\n  \"recuperado\": \"recuper\",\n  \"recuperando\": \"recuper\",\n  \"recuperar\": \"recuper\",\n  \"recuperarla\": \"recuper\",\n  \"recuperaron\": \"recuper\",\n  \"recuperarse\": \"recuper\",\n  \"recupere\": \"recuper\",\n  \"recurre\": \"recurr\",\n  \"recurrido\": \"recurr\",\n  \"recurrieron\": \"recurr\",\n  \"recurrir\": \"recurr\",\n  \"recurrirá\": \"recurr\",\n  \"recurso\": \"recurs\",\n  \"recursos\": \"recurs\",\n  \"red\": \"red\",\n  \"redacción\": \"redaccion\",\n  \"redactado\": \"redact\",\n  \"redactaron\": \"redact\",\n  \"redada\": \"red\",\n  \"redefinir\": \"redefin\",\n  \"redes\": \"red\",\n  \"redescuentos\": \"redescuent\",\n  \"redilas\": \"redil\",\n  \"rediseñar\": \"rediseñ\",\n  \"rediseños\": \"rediseñ\",\n  \"redistribución\": \"redistribu\",\n  \"reditúa\": \"reditu\",\n  \"redituable\": \"reditu\",\n  \"redobla\": \"redobl\",\n  \"redoblado\": \"redobl\",\n  \"redoblar\": \"redobl\",\n  \"redonda\": \"redond\",\n  \"redondear\": \"redond\",\n  \"redondez\": \"redondez\",\n  \"redondo\": \"redond\",\n  \"rédord\": \"redord\",\n  \"reduccion\": \"reduccion\",\n  \"reducción\": \"reduccion\",\n  \"reducciones\": \"reduccion\",\n  \"reduce\": \"reduc\",\n  \"reducen\": \"reduc\",\n  \"reducía\": \"reduc\",\n  \"reducida\": \"reduc\",\n  \"reducidas\": \"reduc\",\n  \"reducido\": \"reduc\",\n  \"reduciendo\": \"reduc\",\n  \"reducir\": \"reduc\",\n  \"reducirá\": \"reduc\",\n  \"reducirlas\": \"reduc\",\n  \"reducirles\": \"reduc\",\n  \"reducirse\": \"reduc\",\n  \"redujeron\": \"redujeron\",\n  \"redujo\": \"reduj\",\n  \"redunde\": \"redund\",\n  \"reduzca\": \"reduzc\",\n  \"reduzcan\": \"reduzc\",\n  \"reed\": \"reed\",\n  \"reedición\": \"reedicion\",\n  \"reeditará\": \"reedit\",\n  \"reelección\": \"reeleccion\",\n  \"reelecto\": \"reelect\",\n  \"reelegido\": \"reeleg\",\n  \"reelegirse\": \"reeleg\",\n  \"reemplaza\": \"reemplaz\",\n  \"reemplazable\": \"reemplaz\",\n  \"reemplazado\": \"reemplaz\",\n  \"reemplazados\": \"reemplaz\",\n  \"reemplazar\": \"reemplaz\",\n  \"reemplazo\": \"reemplaz\",\n  \"reencarnación\": \"reencarn\",\n  \"reencuentro\": \"reencuentr\",\n  \"reestablecieron\": \"reestablec\",\n  \"reestrenan\": \"reestren\",\n  \"reestreno\": \"reestren\",\n  \"reestructuración\": \"reestructur\",\n  \"reestructurar\": \"reestructur\",\n  \"reestructurará\": \"reestructur\",\n  \"reestructure\": \"reestructur\",\n  \"reestudiarse\": \"reestudi\",\n  \"refacción\": \"refaccion\",\n  \"refaccionarias\": \"refaccionari\",\n  \"refaccionarios\": \"refaccionari\",\n  \"refacciones\": \"refaccion\",\n  \"referencia\": \"referent\",\n  \"referencias\": \"referent\",\n  \"referéndum\": \"referendum\",\n  \"referente\": \"referent\",\n  \"referentes\": \"referent\",\n  \"réferi\": \"referi\",\n  \"referí\": \"refer\",\n  \"refería\": \"ref\",\n  \"referían\": \"ref\",\n  \"referidos\": \"refer\",\n  \"referirme\": \"refer\",\n  \"referirse\": \"refer\",\n  \"refiera\": \"ref\",\n  \"refiere\": \"refier\",\n  \"refieren\": \"refier\",\n  \"refiero\": \"refier\",\n  \"refinación\": \"refin\",\n  \"refinadora\": \"refin\",\n  \"refineria\": \"refineri\",\n  \"refinerías\": \"refin\",\n  \"refiriéndose\": \"refir\",\n  \"refirió\": \"refir\",\n  \"reflectores\": \"reflector\",\n  \"refleja\": \"reflej\",\n  \"reflejaba\": \"reflej\",\n  \"reflejaban\": \"reflej\",\n  \"reflejada\": \"reflej\",\n  \"reflejado\": \"reflej\",\n  \"reflejan\": \"reflej\",\n  \"reflejando\": \"reflej\",\n  \"reflejar\": \"reflej\",\n  \"reflejará\": \"reflej\",\n  \"reflejo\": \"reflej\",\n  \"reflejó\": \"reflej\",\n  \"reflejos\": \"reflej\",\n  \"reflexión\": \"reflexion\",\n  \"reflexiona\": \"reflexion\",\n  \"reflexionar\": \"reflexion\",\n  \"reflexionen\": \"reflexion\",\n  \"reflexiones\": \"reflexion\",\n  \"reflexionó\": \"reflexion\",\n  \"reforestarlas\": \"reforest\",\n  \"reforma\": \"reform\",\n  \"reformado\": \"reform\",\n  \"reformar\": \"reform\",\n  \"reformas\": \"reform\",\n  \"reforme\": \"reform\",\n  \"reformó\": \"reform\",\n  \"reforzada\": \"reforz\",\n  \"reforzadas\": \"reforz\",\n  \"reforzado\": \"reforz\",\n  \"reforzamiento\": \"reforz\",\n  \"reforzando\": \"reforz\",\n  \"reforzar\": \"reforz\",\n  \"reforzarlas\": \"reforz\",\n  \"reforzó\": \"reforz\",\n  \"refractarias\": \"refractari\",\n  \"refrán\": \"refran\",\n  \"refranes\": \"refran\",\n  \"refrenamiento\": \"refren\",\n  \"refrendaron\": \"refrend\",\n  \"refrendo\": \"refrend\",\n  \"refrendó\": \"refrend\",\n  \"refresca\": \"refresc\",\n  \"refrescos\": \"refresc\",\n  \"refriegas\": \"refrieg\",\n  \"refuercen\": \"refuerc\",\n  \"refuerzan\": \"refuerz\",\n  \"refuerzo\": \"refuerz\",\n  \"refuerzos\": \"refuerz\",\n  \"refugiados\": \"refugi\",\n  \"refugiar\": \"refugi\",\n  \"refugiarse\": \"refugi\",\n  \"refugio\": \"refugi\",\n  \"refugió\": \"refug\",\n  \"regadas\": \"reg\",\n  \"regalado\": \"regal\",\n  \"regalan\": \"regal\",\n  \"regalando\": \"regal\",\n  \"regalar\": \"regal\",\n  \"regalarnos\": \"regal\",\n  \"regalárselo\": \"regal\",\n  \"regalárselos\": \"regal\",\n  \"regalo\": \"regal\",\n  \"regaló\": \"regal\",\n  \"regalos\": \"regal\",\n  \"regañadientes\": \"regañadient\",\n  \"regañan\": \"regañ\",\n  \"regaños\": \"regañ\",\n  \"regente\": \"regent\",\n  \"regia\": \"regi\",\n  \"regido\": \"reg\",\n  \"regidor\": \"regidor\",\n  \"regidores\": \"regidor\",\n  \"régimen\": \"regim\",\n  \"regímenes\": \"regimen\",\n  \"regina\": \"regin\",\n  \"regio\": \"regi\",\n  \"regiomontana\": \"regiomontan\",\n  \"regiomontanas\": \"regiomontan\",\n  \"regiomontano\": \"regiomontan\",\n  \"regiomontanos\": \"regiomontan\",\n  \"region\": \"region\",\n  \"región\": \"region\",\n  \"regional\": \"regional\",\n  \"regionales\": \"regional\",\n  \"regionalismo\": \"regional\",\n  \"regiones\": \"region\",\n  \"regios\": \"regi\",\n  \"regiria\": \"regiri\",\n  \"regirnos\": \"reg\",\n  \"regirse\": \"reg\",\n  \"registra\": \"registr\",\n  \"registraba\": \"registr\",\n  \"registrada\": \"registr\",\n  \"registradas\": \"registr\",\n  \"registrado\": \"registr\",\n  \"registrador\": \"registr\",\n  \"registrados\": \"registr\",\n  \"registran\": \"registr\",\n  \"registrandose\": \"registr\",\n  \"registrándose\": \"registr\",\n  \"registrar\": \"registr\",\n  \"registrará\": \"registr\",\n  \"registrarán\": \"registr\",\n  \"registraron\": \"registr\",\n  \"registrarse\": \"registr\",\n  \"registre\": \"registr\",\n  \"registren\": \"registr\",\n  \"registro\": \"registr\",\n  \"registró\": \"registr\",\n  \"registros\": \"registr\",\n  \"regla\": \"regl\",\n  \"reglamentación\": \"reglament\",\n  \"reglamentar\": \"reglament\",\n  \"reglamentarios\": \"reglamentari\",\n  \"reglamente\": \"regl\",\n  \"reglamento\": \"reglament\",\n  \"reglamentos\": \"reglament\",\n  \"reglas\": \"regl\",\n  \"regresa\": \"regres\",\n  \"regresaba\": \"regres\",\n  \"regresaban\": \"regres\",\n  \"regresan\": \"regres\",\n  \"regresando\": \"regres\",\n  \"regresar\": \"regres\",\n  \"regresara\": \"regres\",\n  \"regresará\": \"regres\",\n  \"regresaran\": \"regres\",\n  \"regresarán\": \"regres\",\n  \"regresaremos\": \"regres\",\n  \"regresaría\": \"regres\",\n  \"regresaron\": \"regres\",\n  \"regresarse\": \"regres\",\n  \"regresas\": \"regres\",\n  \"regrese\": \"regres\",\n  \"regreselo\": \"regresel\",\n  \"regresen\": \"regres\",\n  \"regreses\": \"regres\",\n  \"regrésese\": \"regreses\",\n  \"regresiva\": \"regres\",\n  \"regreso\": \"regres\",\n  \"regresó\": \"regres\",\n  \"reguera\": \"reguer\",\n  \"regula\": \"regul\",\n  \"regulación\": \"regul\",\n  \"regulaciones\": \"regul\",\n  \"regulador\": \"regul\",\n  \"reguladora\": \"regul\",\n  \"reguladores\": \"regul\",\n  \"regular\": \"regul\",\n  \"regulares\": \"regular\",\n  \"regularización\": \"regulariz\",\n  \"regularizar\": \"regulariz\",\n  \"regularizará\": \"regulariz\",\n  \"regularizó\": \"regulariz\",\n  \"regularmente\": \"regular\",\n  \"regulatoria\": \"regulatori\",\n  \"regule\": \"regul\",\n  \"rehabilitación\": \"rehabilit\",\n  \"rehabilitaciones\": \"rehabilit\",\n  \"rehabilitado\": \"rehabilit\",\n  \"rehacer\": \"rehac\",\n  \"rehén\": \"rehen\",\n  \"rehenes\": \"rehen\",\n  \"rehiletes\": \"rehilet\",\n  \"rehuir\": \"rehu\",\n  \"rehusaban\": \"rehus\",\n  \"rehusaron\": \"rehus\",\n  \"reía\": \"rei\",\n  \"reían\": \"rei\",\n  \"reimplantó\": \"reimplant\",\n  \"reina\": \"rein\",\n  \"reinado\": \"rein\",\n  \"reinante\": \"reinant\",\n  \"reincidan\": \"reincid\",\n  \"reincidencia\": \"reincident\",\n  \"reincorporará\": \"reincorpor\",\n  \"reineros\": \"reiner\",\n  \"reingresó\": \"reingres\",\n  \"reiniciar\": \"reinici\",\n  \"reiniciaron\": \"reinici\",\n  \"reino\": \"rein\",\n  \"reinstalación\": \"reinstal\",\n  \"reintegración\": \"reintegr\",\n  \"reintegrar\": \"reintegr\",\n  \"reintegrarme\": \"reintegr\",\n  \"reinterpretar\": \"reinterpret\",\n  \"reinvertirá\": \"reinvert\",\n  \"reír\": \"reir\",\n  \"reírnos\": \"reirn\",\n  \"reírse\": \"reirs\",\n  \"reiteración\": \"reiter\",\n  \"reiteradamente\": \"reiter\",\n  \"reiterará\": \"reiter\",\n  \"reiteraron\": \"reiter\",\n  \"reiteró\": \"reiter\",\n  \"reivindicación\": \"reivind\",\n  \"reivindicar\": \"reivindic\",\n  \"reja\": \"rej\",\n  \"rejas\": \"rej\",\n  \"rejón\": \"rejon\",\n  \"rejoneador\": \"rejon\",\n  \"rejones\": \"rejon\",\n  \"rejuvenecedores\": \"rejuvenecedor\",\n  \"relación\": \"relacion\",\n  \"relaciona\": \"relacion\",\n  \"relacionada\": \"relacion\",\n  \"relacionadas\": \"relacion\",\n  \"relacionado\": \"relacion\",\n  \"relacionados\": \"relacion\",\n  \"relacionaron\": \"relacion\",\n  \"relacionarse\": \"relacion\",\n  \"relaciones\": \"relacion\",\n  \"relacionó\": \"relacion\",\n  \"relajado\": \"relaj\",\n  \"relajarse\": \"relaj\",\n  \"relamían\": \"relam\",\n  \"relampaguee\": \"relampague\",\n  \"relanzamiento\": \"relanz\",\n  \"relata\": \"relat\",\n  \"relatar\": \"relat\",\n  \"relativa\": \"relat\",\n  \"relativamente\": \"relat\",\n  \"relativas\": \"relat\",\n  \"relativo\": \"relat\",\n  \"relativos\": \"relat\",\n  \"relato\": \"relat\",\n  \"relató\": \"relat\",\n  \"relatos\": \"relat\",\n  \"relegada\": \"releg\",\n  \"relegado\": \"releg\",\n  \"relegue\": \"releg\",\n  \"relevado\": \"relev\",\n  \"relevancia\": \"relev\",\n  \"relevantes\": \"relev\",\n  \"relevar\": \"relev\",\n  \"relevista\": \"relev\",\n  \"relevo\": \"relev\",\n  \"relevó\": \"relev\",\n  \"relevos\": \"relev\",\n  \"relieve\": \"reliev\",\n  \"relieves\": \"reliev\",\n  \"religión\": \"religion\",\n  \"religiones\": \"religion\",\n  \"religiosa\": \"religi\",\n  \"religiosamente\": \"religi\",\n  \"religiosas\": \"religi\",\n  \"religioso\": \"religi\",\n  \"religiosos\": \"religi\",\n  \"rellenadas\": \"rellen\",\n  \"rellenarán\": \"rellen\",\n  \"relleno\": \"rellen\",\n  \"reloj\": \"reloj\",\n  \"relojito\": \"relojit\",\n  \"reluciente\": \"relucient\",\n  \"remache\": \"remach\",\n  \"remarcó\": \"remarc\",\n  \"rematar\": \"remat\",\n  \"remate\": \"remat\",\n  \"remates\": \"remat\",\n  \"rembolso\": \"rembols\",\n  \"remediada\": \"remedi\",\n  \"remediar\": \"remedi\",\n  \"remedio\": \"remedi\",\n  \"remedios\": \"remedi\",\n  \"remineralizante\": \"remineraliz\",\n  \"reminiscencia\": \"reminiscent\",\n  \"remite\": \"remit\",\n  \"remitente\": \"remitent\",\n  \"remitidas\": \"remit\",\n  \"remitidos\": \"remit\",\n  \"remitieron\": \"remit\",\n  \"remodelación\": \"remodel\",\n  \"remodelada\": \"remodel\",\n  \"remolques\": \"remolqu\",\n  \"remontan\": \"remont\",\n  \"rémoras\": \"remor\",\n  \"remota\": \"remot\",\n  \"remotamente\": \"remot\",\n  \"remotas\": \"remot\",\n  \"remoto\": \"remot\",\n  \"remotos\": \"remot\",\n  \"remover\": \"remov\",\n  \"removibles\": \"remov\",\n  \"removida\": \"remov\",\n  \"removidos\": \"remov\",\n  \"removió\": \"remov\",\n  \"remueve\": \"remuev\",\n  \"remuneración\": \"remuner\",\n  \"renace\": \"renac\",\n  \"renació\": \"renac\",\n  \"renales\": \"renal\",\n  \"renato\": \"renat\",\n  \"rencillas\": \"rencill\",\n  \"renconformación\": \"renconform\",\n  \"rencor\": \"rencor\",\n  \"rencores\": \"rencor\",\n  \"rencorosos\": \"rencor\",\n  \"rendía\": \"rend\",\n  \"rendido\": \"rend\",\n  \"rendimiento\": \"rendimient\",\n  \"rendimientos\": \"rendimient\",\n  \"rendir\": \"rend\",\n  \"rendirse\": \"rend\",\n  \"rendón\": \"rendon\",\n  \"rené\": \"ren\",\n  \"renee\": \"rene\",\n  \"renegar\": \"reneg\",\n  \"renegociación\": \"renegoci\",\n  \"renegociado\": \"renegoci\",\n  \"renegociar\": \"renegoci\",\n  \"renglón\": \"renglon\",\n  \"renglones\": \"renglon\",\n  \"reñida\": \"reñ\",\n  \"reñidas\": \"reñ\",\n  \"renombradas\": \"renombr\",\n  \"renombre\": \"renombr\",\n  \"renovables\": \"renov\",\n  \"renovación\": \"renov\",\n  \"renovada\": \"renov\",\n  \"renovado\": \"renov\",\n  \"renovadores\": \"renov\",\n  \"renovados\": \"renov\",\n  \"renovando\": \"renov\",\n  \"renovar\": \"renov\",\n  \"renovarvía\": \"renovarv\",\n  \"renta\": \"rent\",\n  \"rentabilidad\": \"rentabil\",\n  \"rentable\": \"rentabl\",\n  \"rentables\": \"rentabl\",\n  \"rentada\": \"rent\",\n  \"rentadas\": \"rent\",\n  \"rentados\": \"rent\",\n  \"rentando\": \"rent\",\n  \"rentarlas\": \"rent\",\n  \"rentas\": \"rent\",\n  \"rentería\": \"rent\",\n  \"renueve\": \"renuev\",\n  \"renuncia\": \"renunci\",\n  \"renunciar\": \"renunci\",\n  \"renunciara\": \"renunci\",\n  \"renunciarán\": \"renunci\",\n  \"renunciaría\": \"renunci\",\n  \"renunciaron\": \"renunci\",\n  \"renunció\": \"renunc\",\n  \"reo\": \"reo\",\n  \"reordenamiento\": \"reorden\",\n  \"reordenar\": \"reorden\",\n  \"reordene\": \"reorden\",\n  \"reorganice\": \"reorganic\",\n  \"reorganización\": \"reorganiz\",\n  \"reorganizar\": \"reorganiz\",\n  \"reorganizarnos\": \"reorganiz\",\n  \"reorganizarse\": \"reorganiz\",\n  \"reos\": \"reos\",\n  \"reparación\": \"repar\",\n  \"reparaciones\": \"repar\",\n  \"reparadas\": \"repar\",\n  \"reparando\": \"repar\",\n  \"reparar\": \"repar\",\n  \"repararlas\": \"repar\",\n  \"reparos\": \"repar\",\n  \"reparte\": \"repart\",\n  \"repartido\": \"repart\",\n  \"repartidor\": \"repartidor\",\n  \"repartidos\": \"repart\",\n  \"repartiendo\": \"repart\",\n  \"repartieron\": \"repart\",\n  \"repartimos\": \"repart\",\n  \"repartir\": \"repart\",\n  \"repartirán\": \"repart\",\n  \"repartirlos\": \"repart\",\n  \"repartirse\": \"repart\",\n  \"reparto\": \"repart\",\n  \"repatriación\": \"repatri\",\n  \"repatriados\": \"repatri\",\n  \"repavimentación\": \"repaviment\",\n  \"repavimentar\": \"repaviment\",\n  \"repente\": \"repent\",\n  \"repentina\": \"repentin\",\n  \"repentinamente\": \"repentin\",\n  \"repercusión\": \"repercusion\",\n  \"repercuten\": \"repercut\",\n  \"repertorio\": \"repertori\",\n  \"repetición\": \"repeticion\",\n  \"repeticiones\": \"repeticion\",\n  \"repetidamente\": \"repetid\",\n  \"repetidas\": \"repet\",\n  \"repetidísimas\": \"repetidisim\",\n  \"repetidoras\": \"repetidor\",\n  \"repetimos\": \"repet\",\n  \"repetir\": \"repet\",\n  \"repetira\": \"repetir\",\n  \"repetirá\": \"repet\",\n  \"repetirán\": \"repet\",\n  \"repetiría\": \"repet\",\n  \"repetirse\": \"repet\",\n  \"repita\": \"repit\",\n  \"repitan\": \"repit\",\n  \"repite\": \"repit\",\n  \"repitiéndome\": \"repit\",\n  \"repitió\": \"repit\",\n  \"repito\": \"repit\",\n  \"repleta\": \"replet\",\n  \"repleto\": \"replet\",\n  \"replica\": \"replic\",\n  \"réplica\": \"replic\",\n  \"replicar\": \"replic\",\n  \"replicarle\": \"replic\",\n  \"réplicas\": \"replic\",\n  \"repollos\": \"repoll\",\n  \"reponen\": \"repon\",\n  \"reponer\": \"repon\",\n  \"reporta\": \"report\",\n  \"reportadas\": \"report\",\n  \"reportado\": \"report\",\n  \"reportados\": \"report\",\n  \"reportaje\": \"reportaj\",\n  \"reportan\": \"report\",\n  \"reportar\": \"report\",\n  \"reportara\": \"report\",\n  \"reportarán\": \"report\",\n  \"reportaron\": \"report\",\n  \"reporte\": \"report\",\n  \"reportera\": \"reporter\",\n  \"reportero\": \"reporter\",\n  \"reporteros\": \"reporter\",\n  \"reportes\": \"report\",\n  \"repórtese\": \"reportes\",\n  \"reportó\": \"report\",\n  \"reportos\": \"report\",\n  \"reposo\": \"repos\",\n  \"reprendido\": \"reprend\",\n  \"represalias\": \"represali\",\n  \"representa\": \"represent\",\n  \"representaba\": \"represent\",\n  \"representación\": \"represent\",\n  \"representada\": \"represent\",\n  \"representadas\": \"represent\",\n  \"representado\": \"represent\",\n  \"representan\": \"represent\",\n  \"representando\": \"represent\",\n  \"representante\": \"represent\",\n  \"representantes\": \"represent\",\n  \"representar\": \"represent\",\n  \"representará\": \"represent\",\n  \"representarán\": \"represent\",\n  \"representaría\": \"represent\",\n  \"representativas\": \"represent\",\n  \"representatividad\": \"representat\",\n  \"representativo\": \"represent\",\n  \"representativos\": \"represent\",\n  \"representen\": \"represent\",\n  \"representó\": \"represent\",\n  \"represión\": \"represion\",\n  \"represivo\": \"repres\",\n  \"represivos\": \"repres\",\n  \"represores\": \"represor\",\n  \"reprimir\": \"reprim\",\n  \"reprobadas\": \"reprob\",\n  \"reprobado\": \"reprob\",\n  \"reprobaron\": \"reprob\",\n  \"reprobó\": \"reprob\",\n  \"reprocha\": \"reproch\",\n  \"reproches\": \"reproch\",\n  \"reprochó\": \"reproch\",\n  \"reproducción\": \"reproduccion\",\n  \"reproducciones\": \"reproduccion\",\n  \"reproduce\": \"reproduc\",\n  \"reproducen\": \"reproduc\",\n  \"reproducir\": \"reproduc\",\n  \"reproducirse\": \"reproduc\",\n  \"reproductor\": \"reproductor\",\n  \"reprodujo\": \"reproduj\",\n  \"reproduzca\": \"reproduzc\",\n  \"reprueba\": \"reprueb\",\n  \"reprueban\": \"reprueb\",\n  \"reptiles\": \"reptil\",\n  \"república\": \"republ\",\n  \"republicanas\": \"republican\",\n  \"republicano\": \"republican\",\n  \"repúblicanos\": \"republican\",\n  \"repúblicas\": \"republ\",\n  \"repudiando\": \"repudi\",\n  \"repudio\": \"repudi\",\n  \"repuesto\": \"repuest\",\n  \"repugnancia\": \"repugn\",\n  \"repuntando\": \"repunt\",\n  \"repunte\": \"repunt\",\n  \"reputación\": \"reput\",\n  \"requería\": \"requ\",\n  \"requerida\": \"requer\",\n  \"requerido\": \"requer\",\n  \"requeridos\": \"requer\",\n  \"requerimiento\": \"requer\",\n  \"requerimientos\": \"requer\",\n  \"requerimos\": \"requer\",\n  \"requerirá\": \"requer\",\n  \"requerirán\": \"requer\",\n  \"requiera\": \"requ\",\n  \"requieran\": \"requ\",\n  \"requiere\": \"requier\",\n  \"requieren\": \"requier\",\n  \"requinto\": \"requint\",\n  \"requirieran\": \"requir\",\n  \"requirió\": \"requir\",\n  \"requisito\": \"requisit\",\n  \"requisitos\": \"requisit\",\n  \"resalta\": \"resalt\",\n  \"resaltando\": \"resalt\",\n  \"resaltar\": \"resalt\",\n  \"resaltaron\": \"resalt\",\n  \"resalte\": \"resalt\",\n  \"resaltó\": \"resalt\",\n  \"resarcirán\": \"resarc\",\n  \"resbaladero\": \"resbalader\",\n  \"resbaladizo\": \"resbaladiz\",\n  \"resbalosas\": \"resbal\",\n  \"rescata\": \"rescat\",\n  \"rescatable\": \"rescat\",\n  \"rescatada\": \"rescat\",\n  \"rescatadas\": \"rescat\",\n  \"rescatado\": \"rescat\",\n  \"rescatados\": \"rescat\",\n  \"rescatar\": \"rescat\",\n  \"rescate\": \"rescat\",\n  \"rescates\": \"rescat\",\n  \"rescindirles\": \"rescind\",\n  \"rescindirlo\": \"rescind\",\n  \"rescindirse\": \"rescind\",\n  \"research\": \"research\",\n  \"reseca\": \"resec\",\n  \"reseña\": \"reseñ\",\n  \"reseñas\": \"reseñ\",\n  \"reséndez\": \"resendez\",\n  \"resentidos\": \"resent\",\n  \"resentimos\": \"resent\",\n  \"reserva\": \"reserv\",\n  \"reservaciones\": \"reserv\",\n  \"reservadas\": \"reserv\",\n  \"reservado\": \"reserv\",\n  \"reservados\": \"reserv\",\n  \"reservar\": \"reserv\",\n  \"reservas\": \"reserv\",\n  \"resguardado\": \"resguard\",\n  \"resguardando\": \"resguard\",\n  \"resguardarlo\": \"resguard\",\n  \"reside\": \"resid\",\n  \"residen\": \"resid\",\n  \"residencia\": \"resident\",\n  \"residencial\": \"residencial\",\n  \"residenciales\": \"residencial\",\n  \"residencias\": \"resident\",\n  \"residente\": \"resident\",\n  \"residentes\": \"resident\",\n  \"residió\": \"resid\",\n  \"residuales\": \"residual\",\n  \"residuos\": \"residu\",\n  \"resiente\": \"resient\",\n  \"resignación\": \"resign\",\n  \"resignada\": \"resign\",\n  \"resignado\": \"resign\",\n  \"resigno\": \"resign\",\n  \"resillas\": \"resill\",\n  \"resintiendo\": \"resint\",\n  \"resintiera\": \"resint\",\n  \"resiste\": \"res\",\n  \"resistencia\": \"resistent\",\n  \"resistente\": \"resistent\",\n  \"resistentes\": \"resistent\",\n  \"resistidas\": \"resist\",\n  \"resistiera\": \"resist\",\n  \"resistió\": \"resist\",\n  \"resolucion\": \"resolucion\",\n  \"resolución\": \"resolu\",\n  \"resoluciones\": \"resolu\",\n  \"resolver\": \"resolv\",\n  \"resolverá\": \"resolv\",\n  \"resolverla\": \"resolv\",\n  \"resolverlas\": \"resolv\",\n  \"resolverlo\": \"resolv\",\n  \"resolverse\": \"resolv\",\n  \"resolviendo\": \"resolv\",\n  \"resolviéndole\": \"resolv\",\n  \"resolvieron\": \"resolv\",\n  \"resolvió\": \"resolv\",\n  \"resonante\": \"reson\",\n  \"resortes\": \"resort\",\n  \"respalda\": \"respald\",\n  \"respaldaba\": \"respald\",\n  \"respaldada\": \"respald\",\n  \"respaldará\": \"respald\",\n  \"respaldo\": \"respald\",\n  \"respaldó\": \"respald\",\n  \"respaldos\": \"respald\",\n  \"respecta\": \"respect\",\n  \"respectiva\": \"respect\",\n  \"respectivamente\": \"respect\",\n  \"respectivas\": \"respect\",\n  \"respectivo\": \"respect\",\n  \"respectivos\": \"respect\",\n  \"respecto\": \"respect\",\n  \"respeta\": \"respet\",\n  \"respetaban\": \"respet\",\n  \"respetable\": \"respet\",\n  \"respetado\": \"respet\",\n  \"respetados\": \"respet\",\n  \"respetamos\": \"respet\",\n  \"respetan\": \"respet\",\n  \"respetando\": \"respet\",\n  \"respetar\": \"respet\",\n  \"respetará\": \"respet\",\n  \"respetaron\": \"respet\",\n  \"respetarse\": \"respet\",\n  \"respete\": \"respet\",\n  \"respeten\": \"respet\",\n  \"respeto\": \"respet\",\n  \"respetuosa\": \"respetu\",\n  \"respetuoso\": \"respetu\",\n  \"respiratoria\": \"respiratori\",\n  \"respiratorias\": \"respiratori\",\n  \"respiratorio\": \"respiratori\",\n  \"respiro\": \"respir\",\n  \"resplandecientes\": \"resplandecient\",\n  \"resplandor\": \"resplandor\",\n  \"responda\": \"respond\",\n  \"respondan\": \"respond\",\n  \"responde\": \"respond\",\n  \"responden\": \"respond\",\n  \"responder\": \"respond\",\n  \"responderá\": \"respond\",\n  \"responderle\": \"respond\",\n  \"respondí\": \"respond\",\n  \"respondido\": \"respond\",\n  \"respondiera\": \"respond\",\n  \"respondió\": \"respond\",\n  \"responsabilice\": \"responsabilic\",\n  \"responsabilidad\": \"respons\",\n  \"responsabilidades\": \"respons\",\n  \"responsabilizaba\": \"responsabiliz\",\n  \"responsabilizarlo\": \"responsabiliz\",\n  \"responsabilizaron\": \"responsabiliz\",\n  \"responsabilizó\": \"responsabiliz\",\n  \"responsable\": \"respons\",\n  \"responsables\": \"respons\",\n  \"respuesta\": \"respuest\",\n  \"respuestas\": \"respuest\",\n  \"resquicio\": \"resquici\",\n  \"resta\": \"rest\",\n  \"restablecer\": \"restablec\",\n  \"restablecerse\": \"restablec\",\n  \"restablezcan\": \"restablezc\",\n  \"restan\": \"rest\",\n  \"restante\": \"restant\",\n  \"restantes\": \"restant\",\n  \"restar\": \"rest\",\n  \"restarle\": \"rest\",\n  \"restas\": \"rest\",\n  \"restauración\": \"restaur\",\n  \"restaurant\": \"restaurant\",\n  \"restaurante\": \"restaur\",\n  \"restaurantera\": \"restauranter\",\n  \"restaurantero\": \"restauranter\",\n  \"restauranteros\": \"restauranter\",\n  \"restaurantes\": \"restaur\",\n  \"restaurarle\": \"restaur\",\n  \"restitución\": \"restitu\",\n  \"restituir\": \"restitu\",\n  \"resto\": \"rest\",\n  \"restos\": \"rest\",\n  \"restregárselo\": \"restreg\",\n  \"restricción\": \"restriccion\",\n  \"restricciones\": \"restriccion\",\n  \"restrictiva\": \"restrict\",\n  \"restructuración\": \"restructur\",\n  \"resuelta\": \"resuelt\",\n  \"resuelto\": \"resuelt\",\n  \"resueltos\": \"resuelt\",\n  \"resuelva\": \"resuelv\",\n  \"resuelve\": \"resuelv\",\n  \"resuelven\": \"resuelv\",\n  \"resulta\": \"result\",\n  \"resultaba\": \"result\",\n  \"resultado\": \"result\",\n  \"resultados\": \"result\",\n  \"resultan\": \"result\",\n  \"resultando\": \"result\",\n  \"resultante\": \"result\",\n  \"resultar\": \"result\",\n  \"resultara\": \"result\",\n  \"resultaran\": \"result\",\n  \"resultaría\": \"result\",\n  \"resultaron\": \"result\",\n  \"resulte\": \"result\",\n  \"resulten\": \"result\",\n  \"resulto\": \"result\",\n  \"resultó\": \"result\",\n  \"resumen\": \"resum\",\n  \"resumido\": \"resum\",\n  \"resumir\": \"resum\",\n  \"resumirse\": \"resum\",\n  \"resurgente\": \"resurgent\",\n  \"resurgir\": \"resurg\",\n  \"resurja\": \"resurj\",\n  \"resurrección\": \"resurreccion\",\n  \"retador\": \"retador\",\n  \"retardatario\": \"retardatari\",\n  \"retardo\": \"retard\",\n  \"retazos\": \"retaz\",\n  \"retener\": \"reten\",\n  \"retengan\": \"reteng\",\n  \"retenía\": \"reten\",\n  \"retenido\": \"reten\",\n  \"reticencia\": \"reticent\",\n  \"reticencias\": \"reticent\",\n  \"retiene\": \"retien\",\n  \"retinitis\": \"retinitis\",\n  \"retira\": \"retir\",\n  \"retiraba\": \"retir\",\n  \"retirada\": \"retir\",\n  \"retirado\": \"retir\",\n  \"retirados\": \"retir\",\n  \"retiramos\": \"retir\",\n  \"retirando\": \"retir\",\n  \"retirándose\": \"retir\",\n  \"retirar\": \"retir\",\n  \"retirara\": \"retir\",\n  \"retirará\": \"retir\",\n  \"retirarán\": \"retir\",\n  \"retiraré\": \"retir\",\n  \"retiraría\": \"retir\",\n  \"retirarlas\": \"retir\",\n  \"retiraron\": \"retir\",\n  \"retirarse\": \"retir\",\n  \"retire\": \"retir\",\n  \"retiro\": \"retir\",\n  \"retiró\": \"retir\",\n  \"retiros\": \"retir\",\n  \"reto\": \"ret\",\n  \"retó\": \"ret\",\n  \"retomado\": \"retom\",\n  \"retomados\": \"retom\",\n  \"retomando\": \"retom\",\n  \"retomar\": \"retom\",\n  \"retomarán\": \"retom\",\n  \"retomarla\": \"retom\",\n  \"retomé\": \"retom\",\n  \"retomo\": \"retom\",\n  \"retomó\": \"retom\",\n  \"retorcerse\": \"retorc\",\n  \"retorcidos\": \"retorc\",\n  \"retornados\": \"retorn\",\n  \"retornaría\": \"retorn\",\n  \"retorno\": \"retorn\",\n  \"retornó\": \"retorn\",\n  \"retos\": \"ret\",\n  \"retracta\": \"retract\",\n  \"retractado\": \"retract\",\n  \"retractarán\": \"retract\",\n  \"retractaré\": \"retract\",\n  \"retrasada\": \"retras\",\n  \"retrasado\": \"retras\",\n  \"retrasan\": \"retras\",\n  \"retrasando\": \"retras\",\n  \"retrasar\": \"retras\",\n  \"retrasará\": \"retras\",\n  \"retrase\": \"retr\",\n  \"retrasen\": \"retr\",\n  \"retraso\": \"retras\",\n  \"retrasó\": \"retras\",\n  \"retrasos\": \"retras\",\n  \"retratado\": \"retrat\",\n  \"retratar\": \"retrat\",\n  \"retratará\": \"retrat\",\n  \"retrataron\": \"retrat\",\n  \"retratarse\": \"retrat\",\n  \"retrato\": \"retrat\",\n  \"retrató\": \"retrat\",\n  \"retratos\": \"retrat\",\n  \"retribuido\": \"retribu\",\n  \"retribuye\": \"retribu\",\n  \"retroactiva\": \"retroact\",\n  \"retroactivo\": \"retroact\",\n  \"retroalimentan\": \"retroaliment\",\n  \"retroceder\": \"retroced\",\n  \"retrocedido\": \"retroced\",\n  \"retroceso\": \"retroces\",\n  \"retrospección\": \"retrospeccion\",\n  \"retrospectiva\": \"retrospect\",\n  \"retrotraerlas\": \"retrotr\",\n  \"retrovisor\": \"retrovisor\",\n  \"retuvieron\": \"retuv\",\n  \"retuvo\": \"retuv\",\n  \"reubicación\": \"reubic\",\n  \"reubicadas\": \"reubic\",\n  \"reubicado\": \"reubic\",\n  \"reubicados\": \"reubic\",\n  \"reubicar\": \"reubic\",\n  \"reubicarlos\": \"reubic\",\n  \"reubicarse\": \"reubic\",\n  \"reúna\": \"reun\",\n  \"reúnan\": \"reun\",\n  \"reune\": \"reun\",\n  \"reúne\": \"reun\",\n  \"reunen\": \"reun\",\n  \"reúnen\": \"reun\",\n  \"reunía\": \"reun\",\n  \"reunían\": \"reun\",\n  \"reunido\": \"reun\",\n  \"reunidos\": \"reun\",\n  \"reunieron\": \"reun\",\n  \"reunió\": \"reun\",\n  \"reunion\": \"reunion\",\n  \"reunión\": \"reunion\",\n  \"reuniones\": \"reunion\",\n  \"reunir\": \"reun\",\n  \"reunirá\": \"reun\",\n  \"reunirán\": \"reun\",\n  \"reunirnos\": \"reun\",\n  \"reunirse\": \"reun\",\n  \"reuter\": \"reut\",\n  \"reuters\": \"reuters\",\n  \"reutilización\": \"reutiliz\",\n  \"revaloración\": \"revalor\",\n  \"revalorarlo\": \"revalor\",\n  \"revaluándose\": \"revalu\",\n  \"revancha\": \"revanch\",\n  \"revela\": \"revel\",\n  \"revelaba\": \"revel\",\n  \"revelaban\": \"revel\",\n  \"revelación\": \"revel\",\n  \"revelada\": \"revel\",\n  \"reveladas\": \"revel\",\n  \"revelado\": \"revel\",\n  \"revelador\": \"revel\",\n  \"reveladora\": \"revel\",\n  \"revelan\": \"revel\",\n  \"revelarla\": \"revel\",\n  \"revelaron\": \"revel\",\n  \"reveló\": \"revel\",\n  \"revendedores\": \"revendedor\",\n  \"reventa\": \"revent\",\n  \"reventado\": \"revent\",\n  \"reventadores\": \"revent\",\n  \"reventó\": \"revent\",\n  \"reventón\": \"reventon\",\n  \"reverencia\": \"reverent\",\n  \"reverencial\": \"reverencial\",\n  \"reverenciales\": \"reverencial\",\n  \"reverenciarlo\": \"reverenci\",\n  \"reverendo\": \"reverend\",\n  \"reversa\": \"revers\",\n  \"revertido\": \"revert\",\n  \"revertir\": \"revert\",\n  \"reveses\": \"reves\",\n  \"revierten\": \"reviert\",\n  \"revillagigedo\": \"revillagiged\",\n  \"revisado\": \"revis\",\n  \"revisados\": \"revis\",\n  \"revisan\": \"revis\",\n  \"revisando\": \"revis\",\n  \"revisar\": \"revis\",\n  \"revisará\": \"revis\",\n  \"revisaran\": \"revis\",\n  \"revisarán\": \"revis\",\n  \"revisarla\": \"revis\",\n  \"revisarlos\": \"revis\",\n  \"revisaron\": \"revis\",\n  \"revisarse\": \"revis\",\n  \"revise\": \"revis\",\n  \"revisen\": \"revis\",\n  \"revisión\": \"revision\",\n  \"revisiones\": \"revision\",\n  \"reviso\": \"revis\",\n  \"revista\": \"revist\",\n  \"revistas\": \"revist\",\n  \"revitalizar\": \"revitaliz\",\n  \"revivir\": \"reviv\",\n  \"revocar\": \"revoc\",\n  \"revocó\": \"revoc\",\n  \"revolcón\": \"revolcon\",\n  \"revolución\": \"revolu\",\n  \"revolucionaban\": \"revolucion\",\n  \"revolucionar\": \"revolucion\",\n  \"revolucionaria\": \"revolucionari\",\n  \"revolucionarias\": \"revolucionari\",\n  \"revolucionario\": \"revolucionari\",\n  \"revolucionarios\": \"revolucionari\",\n  \"revoluciones\": \"revolu\",\n  \"revolucionó\": \"revolucion\",\n  \"revolufia\": \"revolufi\",\n  \"revolver\": \"revolv\",\n  \"revólver\": \"revolv\",\n  \"revólveres\": \"revolver\",\n  \"revolvió\": \"revolv\",\n  \"revuelo\": \"revuel\",\n  \"revuelta\": \"revuelt\",\n  \"revuelto\": \"revuelt\",\n  \"revuelva\": \"revuelv\",\n  \"revuelvo\": \"revuelv\",\n  \"rey\": \"rey\",\n  \"reyes\": \"rey\",\n  \"reyhlander\": \"reyhland\",\n  \"reyna\": \"reyn\",\n  \"reynaldo\": \"reynald\",\n  \"reynard\": \"reynard\",\n  \"reynolds\": \"reynolds\",\n  \"reynosa\": \"reynos\",\n  \"reynoso\": \"reynos\",\n  \"reza\": \"rez\",\n  \"rezagada\": \"rezag\",\n  \"rezago\": \"rezag\",\n  \"rezagos\": \"rezag\",\n  \"rezará\": \"rez\",\n  \"rezaremos\": \"rez\",\n  \"rezarlo\": \"rez\",\n  \"rezarte\": \"rezart\",\n  \"rezo\": \"rez\",\n  \"rezonificación\": \"rezonif\",\n  \"rhon\": \"rhon\",\n  \"riachuelo\": \"riachuel\",\n  \"riar\": \"riar\",\n  \"riazor\": \"riazor\",\n  \"rib\": \"rib\",\n  \"ribadeneyra\": \"ribadeneyr\",\n  \"ribbentrop\": \"ribbentrop\",\n  \"riberas\": \"riber\",\n  \"ribereña\": \"ribereñ\",\n  \"ribereños\": \"ribereñ\",\n  \"rica\": \"ric\",\n  \"ricacho\": \"ricach\",\n  \"ricachón\": \"ricachon\",\n  \"ricardo\": \"ricard\",\n  \"ricas\": \"ric\",\n  \"richard\": \"richard\",\n  \"richards\": \"richards\",\n  \"richardson\": \"richardson\",\n  \"ricky\": \"ricky\",\n  \"rico\": \"ric\",\n  \"ricos\": \"ric\",\n  \"ridiculiza\": \"ridiculiz\",\n  \"ridiculización\": \"ridiculiz\",\n  \"ridiculizado\": \"ridiculiz\",\n  \"ridiculizan\": \"ridiculiz\",\n  \"ríe\": \"rie\",\n  \"riegas\": \"rieg\",\n  \"riego\": \"rieg\",\n  \"rieles\": \"riel\",\n  \"riendas\": \"riend\",\n  \"rieron\": \"rieron\",\n  \"ries\": \"ries\",\n  \"riesgo\": \"riesg\",\n  \"riesgos\": \"riesg\",\n  \"riesgosa\": \"riesgos\",\n  \"riesgosísimo\": \"riesgosisim\",\n  \"rifa\": \"rif\",\n  \"rifadas\": \"rif\",\n  \"rifar\": \"rif\",\n  \"rifas\": \"rif\",\n  \"rifkin\": \"rifkin\",\n  \"rige\": \"rig\",\n  \"rigen\": \"rig\",\n  \"rígidas\": \"rig\",\n  \"rigidez\": \"rigidez\",\n  \"rígidos\": \"rig\",\n  \"rigoberta\": \"rigobert\",\n  \"rigor\": \"rigor\",\n  \"rigurosa\": \"rigur\",\n  \"riguroso\": \"rigur\",\n  \"rigurosos\": \"rigur\",\n  \"rijan\": \"rij\",\n  \"rime\": \"rim\",\n  \"riña\": \"riñ\",\n  \"riñas\": \"riñ\",\n  \"rincón\": \"rincon\",\n  \"rinconada\": \"rincon\",\n  \"rinden\": \"rind\",\n  \"rindiendo\": \"rind\",\n  \"rindiera\": \"rind\",\n  \"rindieran\": \"rind\",\n  \"rindieron\": \"rind\",\n  \"rindió\": \"rind\",\n  \"riñen\": \"riñ\",\n  \"rines\": \"rin\",\n  \"ring\": \"ring\",\n  \"rinker\": \"rink\",\n  \"riñones\": \"riñon\",\n  \"rio\": \"rio\",\n  \"río\": \"rio\",\n  \"rió\": \"rio\",\n  \"riojas\": \"rioj\",\n  \"ríos\": \"rios\",\n  \"rippey\": \"rippey\",\n  \"riqueza\": \"riquez\",\n  \"riquezas\": \"riquez\",\n  \"risa\": \"ris\",\n  \"risas\": \"ris\",\n  \"risca\": \"risc\",\n  \"ríspido\": \"risp\",\n  \"ristra\": \"ristr\",\n  \"ristre\": \"ristr\",\n  \"rita\": \"rit\",\n  \"ritchie\": \"ritchi\",\n  \"riteaid\": \"rite\",\n  \"rítmica\": \"ritmic\",\n  \"rítmico\": \"ritmic\",\n  \"ritmo\": \"ritm\",\n  \"ritmos\": \"ritm\",\n  \"rito\": \"rit\",\n  \"ritual\": \"ritual\",\n  \"riva\": \"riv\",\n  \"rivadeneira\": \"rivadeneir\",\n  \"rival\": \"rival\",\n  \"rivales\": \"rival\",\n  \"rivapalacio\": \"rivapalaci\",\n  \"river\": \"riv\",\n  \"rivera\": \"river\",\n  \"rivero\": \"river\",\n  \"riverside\": \"riversid\",\n  \"riviello\": \"riviell\",\n  \"rizado\": \"riz\",\n  \"rizzo\": \"rizz\",\n  \"rkc\": \"rkc\",\n  \"rke\": \"rke\",\n  \"rkl\": \"rkl\",\n  \"road\": \"road\",\n  \"robada\": \"rob\",\n  \"robadas\": \"rob\",\n  \"robado\": \"rob\",\n  \"robados\": \"rob\",\n  \"roban\": \"rob\",\n  \"robar\": \"rob\",\n  \"robarle\": \"rob\",\n  \"robe\": \"rob\",\n  \"roben\": \"rob\",\n  \"robert\": \"robert\",\n  \"roberta\": \"robert\",\n  \"roberto\": \"robert\",\n  \"roberts\": \"roberts\",\n  \"roble\": \"robl\",\n  \"robledo\": \"robled\",\n  \"robles\": \"robl\",\n  \"robo\": \"rob\",\n  \"robó\": \"rob\",\n  \"robocops\": \"robocops\",\n  \"robos\": \"rob\",\n  \"robot\": \"robot\",\n  \"robotizar\": \"robotiz\",\n  \"robots\": \"robots\",\n  \"robusta\": \"robust\",\n  \"robustecer\": \"robustec\",\n  \"rocaetti\": \"rocaetti\",\n  \"rocard\": \"rocard\",\n  \"rocas\": \"roc\",\n  \"roce\": \"roc\",\n  \"roces\": \"roc\",\n  \"rocha\": \"roch\",\n  \"roche\": \"roch\",\n  \"rochester\": \"rochest\",\n  \"rocío\": \"roci\",\n  \"rock\": \"rock\",\n  \"rockanroleros\": \"rockanroler\",\n  \"rockeras\": \"rocker\",\n  \"rockport\": \"rockport\",\n  \"rocoso\": \"rocos\",\n  \"rocosos\": \"rocos\",\n  \"rod\": \"rod\",\n  \"rodado\": \"rod\",\n  \"rodaje\": \"rodaj\",\n  \"rodal\": \"rodal\",\n  \"rodarse\": \"rod\",\n  \"rodarte\": \"rodart\",\n  \"rodea\": \"rode\",\n  \"rodeaba\": \"rod\",\n  \"rodeado\": \"rod\",\n  \"rodeados\": \"rod\",\n  \"rodean\": \"rod\",\n  \"rodear\": \"rod\",\n  \"rodeará\": \"rod\",\n  \"rodearon\": \"rod\",\n  \"rodearse\": \"rod\",\n  \"rodela\": \"rodel\",\n  \"rodeo\": \"rode\",\n  \"rodeos\": \"rode\",\n  \"rodilla\": \"rodill\",\n  \"rodillas\": \"rodill\",\n  \"rodillera\": \"rodiller\",\n  \"rodion\": \"rodion\",\n  \"rodisonato\": \"rodisonat\",\n  \"rodney\": \"rodney\",\n  \"rodolfo\": \"rodolf\",\n  \"rodrigo\": \"rodrig\",\n  \"rodríguez\": \"rodriguez\",\n  \"roedor\": \"roedor\",\n  \"roedores\": \"roedor\",\n  \"roel\": \"roel\",\n  \"rogelio\": \"rogeli\",\n  \"roger\": \"rog\",\n  \"rogers\": \"rogers\",\n  \"rogó\": \"rog\",\n  \"rogozinski\": \"rogozinski\",\n  \"roja\": \"roj\",\n  \"rojas\": \"roj\",\n  \"rojiblanca\": \"rojiblanc\",\n  \"rojinegra\": \"rojinegr\",\n  \"rojo\": \"roj\",\n  \"rojos\": \"roj\",\n  \"rol\": \"rol\",\n  \"rolada\": \"rol\",\n  \"rolando\": \"rol\",\n  \"roll\": \"roll\",\n  \"rolling\": \"rolling\",\n  \"rollo\": \"roll\",\n  \"rolls\": \"rolls\",\n  \"rom\": \"rom\",\n  \"roma\": \"rom\",\n  \"román\": \"roman\",\n  \"romana\": \"roman\",\n  \"romance\": \"romanc\",\n  \"romances\": \"romanc\",\n  \"romano\": \"roman\",\n  \"románticas\": \"romant\",\n  \"romanticismo\": \"romantic\",\n  \"romanticonas\": \"romanticon\",\n  \"románticos\": \"romant\",\n  \"romeo\": \"rome\",\n  \"romero\": \"romer\",\n  \"romilio\": \"romili\",\n  \"romo\": \"rom\",\n  \"rompe\": \"romp\",\n  \"rompebrechas\": \"rompebrech\",\n  \"rompen\": \"romp\",\n  \"romper\": \"romp\",\n  \"romperá\": \"romp\",\n  \"romperian\": \"romperi\",\n  \"romperles\": \"romp\",\n  \"romperlo\": \"romp\",\n  \"rompevientos\": \"rompevient\",\n  \"rompiendo\": \"romp\",\n  \"rompieron\": \"romp\",\n  \"rompimiento\": \"rompimient\",\n  \"rompió\": \"romp\",\n  \"rómulo\": \"romul\",\n  \"ronald\": \"ronald\",\n  \"roncaba\": \"ronc\",\n  \"ronda\": \"rond\",\n  \"rondallas\": \"rondall\",\n  \"rondando\": \"rond\",\n  \"ronzón\": \"ronzon\",\n  \"roo\": \"roo\",\n  \"roosevelt\": \"roosevelt\",\n  \"ropa\": \"rop\",\n  \"ropajes\": \"ropaj\",\n  \"roque\": \"roqu\",\n  \"rosa\": \"ros\",\n  \"rosales\": \"rosal\",\n  \"rosalinda\": \"rosalind\",\n  \"rosario\": \"rosari\",\n  \"rosarios\": \"rosari\",\n  \"rosas\": \"ros\",\n  \"rosaura\": \"rosaur\",\n  \"rosellini\": \"rosellini\",\n  \"rosencof\": \"rosencof\",\n  \"rosendo\": \"rosend\",\n  \"roses\": \"ros\",\n  \"rosibel\": \"rosibel\",\n  \"rosilí\": \"rosil\",\n  \"ross\": \"ross\",\n  \"rossela\": \"rossel\",\n  \"rossi\": \"rossi\",\n  \"rossin\": \"rossin\",\n  \"rossini\": \"rossini\",\n  \"roster\": \"rost\",\n  \"rosto\": \"rost\",\n  \"rostro\": \"rostr\",\n  \"rostros\": \"rostr\",\n  \"rota\": \"rot\",\n  \"rotación\": \"rotacion\",\n  \"rotario\": \"rotari\",\n  \"rotarios\": \"rotari\",\n  \"rotativo\": \"rotat\",\n  \"rotativos\": \"rotat\",\n  \"rotemberg\": \"rotemberg\",\n  \"roto\": \"rot\",\n  \"rotonda\": \"rotond\",\n  \"rotter\": \"rott\",\n  \"rotuliano\": \"rotulian\",\n  \"rotundamente\": \"rotund\",\n  \"rotura\": \"rotur\",\n  \"round\": \"round\",\n  \"rounds\": \"rounds\",\n  \"rousseau\": \"rousseau\",\n  \"roy\": \"roy\",\n  \"royce\": \"royc\",\n  \"rsm\": \"rsm\",\n  \"rsqb\": \"rsqb\",\n  \"ru\": \"ru\",\n  \"ruandeses\": \"ruandes\",\n  \"rubén\": \"ruben\",\n  \"rubí\": \"rub\",\n  \"rubia\": \"rubi\",\n  \"rubiales\": \"rubial\",\n  \"rubiano\": \"rubian\",\n  \"rubio\": \"rubi\",\n  \"rubor\": \"rubor\",\n  \"ruborizándose\": \"ruboriz\",\n  \"rubro\": \"rubr\",\n  \"rubros\": \"rubr\",\n  \"ruco\": \"ruc\",\n  \"rudos\": \"rud\",\n  \"rudyard\": \"rudyard\",\n  \"rueda\": \"rued\",\n  \"ruedas\": \"rued\",\n  \"ruedo\": \"rued\",\n  \"ruega\": \"rueg\",\n  \"ruego\": \"rueg\",\n  \"ruelas\": \"ruel\",\n  \"ruffo\": \"ruff\",\n  \"rufino\": \"rufin\",\n  \"ruge\": \"rug\",\n  \"ruggeri\": \"ruggeri\",\n  \"rugido\": \"rug\",\n  \"rugir\": \"rug\",\n  \"ruido\": \"ruid\",\n  \"ruidosas\": \"ruid\",\n  \"ruina\": \"ruin\",\n  \"ruinas\": \"ruin\",\n  \"ruindades\": \"ruindad\",\n  \"ruisz\": \"ruisz\",\n  \"ruiz\": \"ruiz\",\n  \"ruíz\": \"ruiz\",\n  \"rul\": \"rul\",\n  \"rumania\": \"rumani\",\n  \"rumanos\": \"ruman\",\n  \"rumberas\": \"rumber\",\n  \"rumbo\": \"rumb\",\n  \"rumor\": \"rumor\",\n  \"rumores\": \"rumor\",\n  \"ruperto\": \"rupert\",\n  \"ruptura\": \"ruptur\",\n  \"rural\": \"rural\",\n  \"rurales\": \"rural\",\n  \"rusa\": \"rus\",\n  \"rusas\": \"rus\",\n  \"rusia\": \"rusi\",\n  \"ruslan\": \"rusl\",\n  \"ruso\": \"rus\",\n  \"rusos\": \"rus\",\n  \"rústica\": \"rustic\",\n  \"rústico\": \"rustic\",\n  \"rústicos\": \"rustic\",\n  \"ruta\": \"rut\",\n  \"rutas\": \"rut\",\n  \"ruteador\": \"ruteador\",\n  \"rutina\": \"rutin\",\n  \"rutinario\": \"rutinari\",\n  \"rutinas\": \"rutin\",\n  \"rutskoi\": \"rutskoi\",\n  \"ruvalcaba\": \"ruvalc\",\n  \"ruy\": \"ruy\",\n  \"s\": \"s\",\n  \"sábado\": \"sab\",\n  \"sábados\": \"sab\",\n  \"sabastian\": \"sabasti\",\n  \"sabatino\": \"sabatin\",\n  \"sabe\": \"sab\",\n  \"sabedores\": \"sabedor\",\n  \"sabemos\": \"sab\",\n  \"saben\": \"sab\",\n  \"saber\": \"sab\",\n  \"saberlo\": \"sab\",\n  \"saberse\": \"sab\",\n  \"sabes\": \"sab\",\n  \"sabia\": \"sabi\",\n  \"sabía\": \"sab\",\n  \"sabíamos\": \"sab\",\n  \"sabían\": \"sab\",\n  \"sabidas\": \"sab\",\n  \"sabido\": \"sab\",\n  \"sabiduría\": \"sabidur\",\n  \"sabiendas\": \"sabiend\",\n  \"sabina\": \"sabin\",\n  \"sabinas\": \"sabin\",\n  \"sabino\": \"sabin\",\n  \"sabio\": \"sabi\",\n  \"sabios\": \"sabi\",\n  \"sabor\": \"sabor\",\n  \"saboreando\": \"sabor\",\n  \"sabores\": \"sabor\",\n  \"saborit\": \"saborit\",\n  \"saborizantes\": \"saboriz\",\n  \"sabotaje\": \"sabotaj\",\n  \"sabrá\": \"sabr\",\n  \"sabrán\": \"sabran\",\n  \"sabremos\": \"sabr\",\n  \"sabrosa\": \"sabros\",\n  \"sabroso\": \"sabros\",\n  \"saca\": \"sac\",\n  \"sacada\": \"sac\",\n  \"sacadas\": \"sac\",\n  \"sacado\": \"sac\",\n  \"sacamos\": \"sac\",\n  \"sacando\": \"sac\",\n  \"sacar\": \"sac\",\n  \"sacara\": \"sac\",\n  \"sacaran\": \"sac\",\n  \"sacaremos\": \"sac\",\n  \"sacarla\": \"sac\",\n  \"sacarle\": \"sac\",\n  \"sacarles\": \"sac\",\n  \"sacarlo\": \"sac\",\n  \"sacarme\": \"sac\",\n  \"sacaron\": \"sac\",\n  \"sacerdocio\": \"sacerdoci\",\n  \"sacerdotal\": \"sacerdotal\",\n  \"sacerdotales\": \"sacerdotal\",\n  \"sacerdote\": \"sacerdot\",\n  \"sacerdotes\": \"sacerdot\",\n  \"saco\": \"sac\",\n  \"sacó\": \"sac\",\n  \"sacos\": \"sac\",\n  \"sacra\": \"sacr\",\n  \"sacramento\": \"sacrament\",\n  \"sacrificado\": \"sacrific\",\n  \"sacrificar\": \"sacrific\",\n  \"sacrificarlo\": \"sacrific\",\n  \"sacrificio\": \"sacrifici\",\n  \"sacrificios\": \"sacrifici\",\n  \"sacrificó\": \"sacrific\",\n  \"sacristán\": \"sacristan\",\n  \"sacristía\": \"sacrist\",\n  \"sacro\": \"sacr\",\n  \"sacs\": \"sacs\",\n  \"sacudida\": \"sacud\",\n  \"sacudimiento\": \"sacud\",\n  \"sada\": \"sad\",\n  \"sadam\": \"sadam\",\n  \"sadomasoquistas\": \"sadomasoqu\",\n  \"saenz\": \"saenz\",\n  \"sáenz\": \"saenz\",\n  \"saeta\": \"saet\",\n  \"sagrada\": \"sagr\",\n  \"sagradas\": \"sagr\",\n  \"sagrado\": \"sagr\",\n  \"sahuayo\": \"sahuay\",\n  \"sain\": \"sain\",\n  \"saint\": \"saint\",\n  \"sainz\": \"sainz\",\n  \"sáinz\": \"sainz\",\n  \"saínz\": \"sainz\",\n  \"sal\": \"sal\",\n  \"sala\": \"sal\",\n  \"salacio\": \"salaci\",\n  \"salada\": \"sal\",\n  \"salais\": \"salais\",\n  \"salamandria\": \"salamandri\",\n  \"salarial\": \"salarial\",\n  \"salariales\": \"salarial\",\n  \"salario\": \"salari\",\n  \"salarios\": \"salari\",\n  \"salas\": \"sal\",\n  \"salaz\": \"salaz\",\n  \"salazar\": \"salaz\",\n  \"saldaña\": \"saldañ\",\n  \"saldar\": \"sald\",\n  \"saldarán\": \"sald\",\n  \"saldívar\": \"saldiv\",\n  \"saldo\": \"sald\",\n  \"saldos\": \"sald\",\n  \"saldrá\": \"saldr\",\n  \"saldrán\": \"saldran\",\n  \"saldría\": \"saldr\",\n  \"sale\": \"sal\",\n  \"salen\": \"sal\",\n  \"salesianas\": \"salesian\",\n  \"salga\": \"salg\",\n  \"salgado\": \"salg\",\n  \"salgamos\": \"salg\",\n  \"salgan\": \"salg\",\n  \"salgo\": \"salg\",\n  \"salí\": \"sal\",\n  \"salía\": \"sal\",\n  \"salían\": \"sal\",\n  \"salida\": \"sal\",\n  \"salidas\": \"sal\",\n  \"salido\": \"sal\",\n  \"saliendo\": \"sal\",\n  \"saliente\": \"salient\",\n  \"saliera\": \"sal\",\n  \"salieran\": \"sal\",\n  \"salieron\": \"sal\",\n  \"salimos\": \"sal\",\n  \"salinas\": \"salin\",\n  \"salinismo\": \"salin\",\n  \"salinista\": \"salin\",\n  \"salió\": \"sal\",\n  \"salir\": \"sal\",\n  \"salirse\": \"sal\",\n  \"salmón\": \"salmon\",\n  \"salmones\": \"salmon\",\n  \"salmos\": \"salm\",\n  \"salomon\": \"salomon\",\n  \"salomón\": \"salomon\",\n  \"salomónica\": \"salomon\",\n  \"salomónico\": \"salomon\",\n  \"salón\": \"salon\",\n  \"salones\": \"salon\",\n  \"salpicadas\": \"salpic\",\n  \"salsa\": \"sals\",\n  \"salsas\": \"sals\",\n  \"salta\": \"salt\",\n  \"saltándose\": \"salt\",\n  \"saltaron\": \"salt\",\n  \"salte\": \"salt\",\n  \"saltillense\": \"saltillens\",\n  \"saltillenses\": \"saltillens\",\n  \"saltillo\": \"saltill\",\n  \"salto\": \"salt\",\n  \"saltó\": \"salt\",\n  \"salubridad\": \"salubr\",\n  \"salud\": \"salud\",\n  \"saludable\": \"salud\",\n  \"saludables\": \"salud\",\n  \"saludando\": \"salud\",\n  \"saludar\": \"salud\",\n  \"saludarle\": \"salud\",\n  \"saludarlo\": \"salud\",\n  \"saludaron\": \"salud\",\n  \"saludemos\": \"salud\",\n  \"saludo\": \"salud\",\n  \"saludó\": \"salud\",\n  \"saludos\": \"salud\",\n  \"salutación\": \"salut\",\n  \"salva\": \"salv\",\n  \"salvación\": \"salvacion\",\n  \"salvado\": \"salv\",\n  \"salvador\": \"salvador\",\n  \"salvadoreña\": \"salvadoreñ\",\n  \"salvadoreños\": \"salvadoreñ\",\n  \"salvados\": \"salv\",\n  \"salvaguardas\": \"salvaguard\",\n  \"salvaje\": \"salvaj\",\n  \"salvamentos\": \"salvament\",\n  \"salvar\": \"salv\",\n  \"salvara\": \"salv\",\n  \"salvarle\": \"salv\",\n  \"salvarse\": \"salv\",\n  \"salve\": \"salv\",\n  \"salvedades\": \"salvedad\",\n  \"salvia\": \"salvi\",\n  \"salvo\": \"salv\",\n  \"salvó\": \"salv\",\n  \"sam\": \"sam\",\n  \"samaniego\": \"samanieg\",\n  \"samoa\": \"samo\",\n  \"sampetrinas\": \"sampetrin\",\n  \"sampetrino\": \"sampetrin\",\n  \"samuel\": \"samuel\",\n  \"samuelito\": \"samuelit\",\n  \"san\": \"san\",\n  \"sana\": \"san\",\n  \"sanchez\": \"sanchez\",\n  \"sánchez\": \"sanchez\",\n  \"sancho\": \"sanch\",\n  \"sanción\": \"sancion\",\n  \"sancionados\": \"sancion\",\n  \"sancionan\": \"sancion\",\n  \"sancionaría\": \"sancion\",\n  \"sancionarlo\": \"sancion\",\n  \"sancionarlos\": \"sancion\",\n  \"sancionaron\": \"sancion\",\n  \"sanciones\": \"sancion\",\n  \"sandalio\": \"sandali\",\n  \"sandinista\": \"sandin\",\n  \"sandoval\": \"sandoval\",\n  \"sandra\": \"sandr\",\n  \"sandrine\": \"sandrin\",\n  \"sandwich\": \"sandwich\",\n  \"saneado\": \"san\",\n  \"saneamiento\": \"saneamient\",\n  \"sanear\": \"san\",\n  \"saneara\": \"san\",\n  \"sanearlas\": \"san\",\n  \"sangrados\": \"sangr\",\n  \"sangrar\": \"sangr\",\n  \"sangre\": \"sangr\",\n  \"sangría\": \"sangr\",\n  \"sangrientas\": \"sangrient\",\n  \"sangriento\": \"sangrient\",\n  \"sanguinario\": \"sanguinari\",\n  \"sanidad\": \"sanid\",\n  \"sanidades\": \"sanidad\",\n  \"sanitaria\": \"sanitari\",\n  \"sanitario\": \"sanitari\",\n  \"sanitarios\": \"sanitari\",\n  \"sanjuana\": \"sanjuan\",\n  \"sano\": \"san\",\n  \"sansores\": \"sansor\",\n  \"santa\": \"sant\",\n  \"santana\": \"santan\",\n  \"santiago\": \"santiag\",\n  \"santidad\": \"santid\",\n  \"santiesteban\": \"santiesteb\",\n  \"santillán\": \"santillan\",\n  \"santísimo\": \"santisim\",\n  \"santiso\": \"santis\",\n  \"santistas\": \"santist\",\n  \"santo\": \"sant\",\n  \"santos\": \"sant\",\n  \"santuario\": \"santuari\",\n  \"santurce\": \"santurc\",\n  \"sao\": \"sao\",\n  \"sapién\": \"sapien\",\n  \"sapitos\": \"sapit\",\n  \"sapo\": \"sap\",\n  \"saqué\": \"saqu\",\n  \"saqueadas\": \"saqu\",\n  \"saquear\": \"saqu\",\n  \"saqueo\": \"saque\",\n  \"saqueos\": \"saque\",\n  \"sar\": \"sar\",\n  \"sarah\": \"sarah\",\n  \"sarajevo\": \"sarajev\",\n  \"sarcástica\": \"sarcast\",\n  \"sargentos\": \"sargent\",\n  \"sarh\": \"sarh\",\n  \"sartenes\": \"sarten\",\n  \"sastre\": \"sastr\",\n  \"sat\": \"sat\",\n  \"satanás\": \"satanas\",\n  \"satélite\": \"satelit\",\n  \"satelitel\": \"satelitel\",\n  \"satélites\": \"satelit\",\n  \"satín\": \"satin\",\n  \"satírica\": \"satir\",\n  \"satisfacción\": \"satisfaccion\",\n  \"satisfacciones\": \"satisfaccion\",\n  \"satisface\": \"satisfac\",\n  \"satisfacer\": \"satisfac\",\n  \"satisfactores\": \"satisfactor\",\n  \"satisfactoria\": \"satisfactori\",\n  \"satisfactoriamente\": \"satisfactori\",\n  \"satisfactorias\": \"satisfactori\",\n  \"satisfactorio\": \"satisfactori\",\n  \"satisfagan\": \"satisfag\",\n  \"satisfecho\": \"satisfech\",\n  \"sato\": \"sat\",\n  \"saturación\": \"satur\",\n  \"saturada\": \"satur\",\n  \"saturadas\": \"satur\",\n  \"saturado\": \"satur\",\n  \"saturados\": \"satur\",\n  \"saturó\": \"satur\",\n  \"sauceda\": \"sauced\",\n  \"saucedo\": \"sauced\",\n  \"sauco\": \"sauc\",\n  \"saúl\": \"saul\",\n  \"saunders\": \"saunders\",\n  \"sauzal\": \"sauzal\",\n  \"savimbi\": \"savimbi\",\n  \"savotino\": \"savotin\",\n  \"savoy\": \"savoy\",\n  \"savr\": \"savr\",\n  \"saxe\": \"sax\",\n  \"saxofón\": \"saxofon\",\n  \"saxofonista\": \"saxofon\",\n  \"saya\": \"say\",\n  \"sazón\": \"sazon\",\n  \"sc\": \"sc\",\n  \"scafadi\": \"scafadi\",\n  \"scalia\": \"scali\",\n  \"scatasta\": \"scatast\",\n  \"scheider\": \"scheid\",\n  \"schlesinghaus\": \"schlesinghaus\",\n  \"schmal\": \"schmal\",\n  \"schmall\": \"schmall\",\n  \"schoenstat\": \"schoenstat\",\n  \"schoenstatt\": \"schoenstatt\",\n  \"schooll\": \"schooll\",\n  \"schools\": \"schools\",\n  \"schopenhahuer\": \"schopenhahu\",\n  \"science\": \"scienc\",\n  \"scott\": \"scott\",\n  \"scout\": \"scout\",\n  \"scrooge\": \"scroog\",\n  \"sct\": \"sct\",\n  \"sculley\": \"sculley\",\n  \"se\": \"se\",\n  \"sé\": \"se\",\n  \"sea\": \"sea\",\n  \"seamos\": \"seam\",\n  \"sean\": \"sean\",\n  \"seas\": \"seas\",\n  \"seattle\": \"seattl\",\n  \"sebastian\": \"sebasti\",\n  \"sebastián\": \"sebastian\",\n  \"seca\": \"sec\",\n  \"secaba\": \"sec\",\n  \"secadora\": \"secador\",\n  \"secas\": \"sec\",\n  \"sección\": \"seccion\",\n  \"seccional\": \"seccional\",\n  \"seccionales\": \"seccional\",\n  \"seco\": \"sec\",\n  \"secofi\": \"secofi\",\n  \"secogef\": \"secogef\",\n  \"secos\": \"sec\",\n  \"secreta\": \"secret\",\n  \"secretaria\": \"secretari\",\n  \"secretaría\": \"secret\",\n  \"secretarías\": \"secret\",\n  \"secretario\": \"secretari\",\n  \"secretarios\": \"secretari\",\n  \"secretas\": \"secret\",\n  \"secreto\": \"secret\",\n  \"secretos\": \"secret\",\n  \"sectas\": \"sect\",\n  \"sector\": \"sector\",\n  \"sectores\": \"sector\",\n  \"sectoriales\": \"sectorial\",\n  \"secuela\": \"secuel\",\n  \"secuelas\": \"secuel\",\n  \"secuencial\": \"secuencial\",\n  \"secuestrada\": \"secuestr\",\n  \"secuestradas\": \"secuestr\",\n  \"secuestrado\": \"secuestr\",\n  \"secuestrador\": \"secuestr\",\n  \"secuestradores\": \"secuestr\",\n  \"secuestro\": \"secuestr\",\n  \"secuestró\": \"secuestr\",\n  \"secuestros\": \"secuestr\",\n  \"secular\": \"secul\",\n  \"secundada\": \"secund\",\n  \"secundados\": \"secund\",\n  \"secundaria\": \"secundari\",\n  \"secundarias\": \"secundari\",\n  \"secundario\": \"secundari\",\n  \"secundarios\": \"secundari\",\n  \"secundaron\": \"secund\",\n  \"securities\": \"securiti\",\n  \"sed\": \"sed\",\n  \"seda\": \"sed\",\n  \"sedán\": \"sedan\",\n  \"sedanes\": \"sedan\",\n  \"sedante\": \"sedant\",\n  \"sede\": \"sed\",\n  \"sedesol\": \"sedesol\",\n  \"sedientos\": \"sedient\",\n  \"sedona\": \"sedon\",\n  \"seducción\": \"seduccion\",\n  \"seducir\": \"seduc\",\n  \"seductoras\": \"seductor\",\n  \"sedujo\": \"seduj\",\n  \"seduop\": \"seduop\",\n  \"seelene\": \"seelen\",\n  \"segmentada\": \"segment\",\n  \"segmento\": \"segment\",\n  \"segmentos\": \"segment\",\n  \"segovia\": \"segovi\",\n  \"segueta\": \"seguet\",\n  \"seguí\": \"segu\",\n  \"seguía\": \"segu\",\n  \"seguían\": \"segu\",\n  \"seguida\": \"segu\",\n  \"seguido\": \"segu\",\n  \"seguidora\": \"seguidor\",\n  \"seguidores\": \"seguidor\",\n  \"seguidos\": \"segu\",\n  \"seguimiento\": \"seguimient\",\n  \"seguimos\": \"segu\",\n  \"seguir\": \"segu\",\n  \"seguirá\": \"segu\",\n  \"seguirán\": \"segu\",\n  \"seguiré\": \"segu\",\n  \"seguiremos\": \"segu\",\n  \"seguiría\": \"segu\",\n  \"seguirlas\": \"segu\",\n  \"seguirles\": \"segu\",\n  \"seguirse\": \"segu\",\n  \"según\": \"segun\",\n  \"segunda\": \"segund\",\n  \"segundas\": \"segund\",\n  \"segundo\": \"segund\",\n  \"segundones\": \"segundon\",\n  \"segundos\": \"segund\",\n  \"segura\": \"segur\",\n  \"seguramente\": \"segur\",\n  \"seguras\": \"segur\",\n  \"seguri\": \"seguri\",\n  \"seguridad\": \"segur\",\n  \"seguro\": \"segur\",\n  \"seguros\": \"segur\",\n  \"seguy\": \"seguy\",\n  \"seis\": \"seis\",\n  \"seiyu\": \"seiyu\",\n  \"seko\": \"sek\",\n  \"selección\": \"seleccion\",\n  \"seleccionada\": \"seleccion\",\n  \"seleccionadas\": \"seleccion\",\n  \"seleccionado\": \"seleccion\",\n  \"seleccionados\": \"seleccion\",\n  \"seleccionar\": \"seleccion\",\n  \"seleccionarán\": \"seleccion\",\n  \"selecciones\": \"seleccion\",\n  \"selectivo\": \"select\",\n  \"selecto\": \"select\",\n  \"sellada\": \"sell\",\n  \"sellar\": \"sell\",\n  \"seller\": \"sell\",\n  \"sello\": \"sell\",\n  \"selva\": \"selv\",\n  \"selvas\": \"selv\",\n  \"semáforos\": \"semafor\",\n  \"semana\": \"seman\",\n  \"semanal\": \"semanal\",\n  \"semanales\": \"semanal\",\n  \"semanalmente\": \"semanal\",\n  \"semanario\": \"semanari\",\n  \"semanas\": \"seman\",\n  \"semblantes\": \"semblant\",\n  \"sembraban\": \"sembr\",\n  \"sembrada\": \"sembr\",\n  \"sembradío\": \"sembradi\",\n  \"sembradíos\": \"sembradi\",\n  \"sembradores\": \"sembrador\",\n  \"sembrar\": \"sembr\",\n  \"sembremos\": \"sembr\",\n  \"semejante\": \"semej\",\n  \"semejantes\": \"semej\",\n  \"semejanza\": \"semej\",\n  \"semejanzas\": \"semej\",\n  \"semen\": \"sem\",\n  \"semental\": \"semental\",\n  \"semestral\": \"semestral\",\n  \"semestrales\": \"semestral\",\n  \"semestre\": \"semestr\",\n  \"semestres\": \"semestr\",\n  \"semi\": \"semi\",\n  \"semiautomática\": \"semiautomat\",\n  \"semicerrados\": \"semicerr\",\n  \"semidesértica\": \"semidesert\",\n  \"semidíos\": \"semidi\",\n  \"semifinal\": \"semifinal\",\n  \"semifinales\": \"semifinal\",\n  \"semifinalistas\": \"semifinal\",\n  \"semilla\": \"semill\",\n  \"semillas\": \"semill\",\n  \"seminal\": \"seminal\",\n  \"seminario\": \"seminari\",\n  \"seminarios\": \"seminari\",\n  \"seminaristas\": \"seminar\",\n  \"semioscuras\": \"semioscur\",\n  \"semipreciosa\": \"semipreci\",\n  \"semivacíos\": \"semivaci\",\n  \"seña\": \"señ\",\n  \"senado\": \"sen\",\n  \"senador\": \"senador\",\n  \"senadora\": \"senador\",\n  \"senadores\": \"senador\",\n  \"señal\": \"señal\",\n  \"señala\": \"señal\",\n  \"señalaban\": \"señal\",\n  \"señaladas\": \"señal\",\n  \"señalado\": \"señal\",\n  \"señalamiento\": \"señal\",\n  \"señalamientos\": \"señal\",\n  \"señalamos\": \"señal\",\n  \"señalan\": \"señal\",\n  \"señalar\": \"señal\",\n  \"señalarla\": \"señal\",\n  \"señalaron\": \"señal\",\n  \"señalarse\": \"señal\",\n  \"señalen\": \"señal\",\n  \"señales\": \"señal\",\n  \"señalo\": \"señal\",\n  \"señaló\": \"señal\",\n  \"señas\": \"señ\",\n  \"sencilla\": \"sencill\",\n  \"sencillamente\": \"sencill\",\n  \"sencillas\": \"sencill\",\n  \"sencillez\": \"sencillez\",\n  \"sencillo\": \"sencill\",\n  \"sencillos\": \"sencill\",\n  \"sendas\": \"send\",\n  \"senderista\": \"sender\",\n  \"senderistas\": \"sender\",\n  \"sendero\": \"sender\",\n  \"sendos\": \"send\",\n  \"seneam\": \"seneam\",\n  \"seno\": \"sen\",\n  \"señor\": \"señor\",\n  \"señora\": \"señor\",\n  \"señoras\": \"señor\",\n  \"señores\": \"señor\",\n  \"señoría\": \"señor\",\n  \"señorita\": \"señorit\",\n  \"senos\": \"sen\",\n  \"sensación\": \"sensacion\",\n  \"sensacionalismo\": \"sensacional\",\n  \"sensacionalista\": \"sensacional\",\n  \"sensaciones\": \"sensacion\",\n  \"sensata\": \"sensat\",\n  \"sensatas\": \"sensat\",\n  \"sensibilidad\": \"sensibil\",\n  \"sensibilidades\": \"sensibil\",\n  \"sensibilizar\": \"sensibiliz\",\n  \"sensible\": \"sensibl\",\n  \"sensiblemente\": \"sensibl\",\n  \"sensibles\": \"sensibl\",\n  \"sensores\": \"sensor\",\n  \"sensual\": \"sensual\",\n  \"sensualidad\": \"sensual\",\n  \"sentadas\": \"sent\",\n  \"sentado\": \"sent\",\n  \"sentados\": \"sent\",\n  \"sentamos\": \"sent\",\n  \"sentando\": \"sent\",\n  \"sentanes\": \"sentan\",\n  \"sentar\": \"sent\",\n  \"sentaran\": \"sent\",\n  \"sentarían\": \"sent\",\n  \"sentaron\": \"sent\",\n  \"sentarse\": \"sent\",\n  \"sentencia\": \"sentenci\",\n  \"sentenciada\": \"sentenci\",\n  \"sentenciado\": \"sentenci\",\n  \"sentenciados\": \"sentenci\",\n  \"sentenció\": \"sentenc\",\n  \"sentí\": \"sent\",\n  \"sentía\": \"sent\",\n  \"sentían\": \"sent\",\n  \"sentido\": \"sent\",\n  \"sentimental\": \"sentimental\",\n  \"sentimiento\": \"sentimient\",\n  \"sentimientos\": \"sentimient\",\n  \"sentimos\": \"sent\",\n  \"sentir\": \"sent\",\n  \"sentiría\": \"sent\",\n  \"sentirse\": \"sent\",\n  \"sentó\": \"sent\",\n  \"sep\": \"sep\",\n  \"sepa\": \"sep\",\n  \"sepamos\": \"sep\",\n  \"sepan\": \"sep\",\n  \"separa\": \"sep\",\n  \"separación\": \"separ\",\n  \"separaciones\": \"separ\",\n  \"separada\": \"separ\",\n  \"separadas\": \"separ\",\n  \"separado\": \"separ\",\n  \"separador\": \"separ\",\n  \"separados\": \"separ\",\n  \"separar\": \"separ\",\n  \"separará\": \"separ\",\n  \"separarán\": \"separ\",\n  \"separarlos\": \"separ\",\n  \"separaron\": \"separ\",\n  \"separarse\": \"separ\",\n  \"separe\": \"separ\",\n  \"separen\": \"separ\",\n  \"sepelio\": \"sepeli\",\n  \"sépticas\": \"septic\",\n  \"septiembre\": \"septiembr\",\n  \"séptima\": \"septim\",\n  \"séptimo\": \"septim\",\n  \"sepultado\": \"sepult\",\n  \"sepultan\": \"sepult\",\n  \"sepultó\": \"sepult\",\n  \"sepúlveda\": \"sepulved\",\n  \"séquito\": \"sequit\",\n  \"ser\": \"ser\",\n  \"sera\": \"ser\",\n  \"será\": \"ser\",\n  \"serán\": \"seran\",\n  \"serbia\": \"serbi\",\n  \"serbio\": \"serbi\",\n  \"serbios\": \"serbi\",\n  \"seremos\": \"ser\",\n  \"serena\": \"seren\",\n  \"serenata\": \"serenat\",\n  \"serenidad\": \"seren\",\n  \"seres\": \"ser\",\n  \"serfin\": \"serfin\",\n  \"serfín\": \"serfin\",\n  \"sergei\": \"sergei\",\n  \"sergi\": \"sergi\",\n  \"sergio\": \"sergi\",\n  \"seria\": \"seri\",\n  \"sería\": \"ser\",\n  \"serial\": \"serial\",\n  \"seriamente\": \"seri\",\n  \"seríamos\": \"ser\",\n  \"serían\": \"ser\",\n  \"serias\": \"seri\",\n  \"serie\": \"seri\",\n  \"seriedad\": \"seried\",\n  \"series\": \"seri\",\n  \"serio\": \"seri\",\n  \"serios\": \"seri\",\n  \"serlo\": \"serl\",\n  \"sermón\": \"sermon\",\n  \"sermonearlos\": \"sermon\",\n  \"serna\": \"sern\",\n  \"serpentinero\": \"serpentiner\",\n  \"serpiente\": \"serpient\",\n  \"serra\": \"serr\",\n  \"serrano\": \"serran\",\n  \"servia\": \"servi\",\n  \"service\": \"servic\",\n  \"servicial\": \"servicial\",\n  \"servicio\": \"servici\",\n  \"servicios\": \"servici\",\n  \"servido\": \"serv\",\n  \"servidor\": \"servidor\",\n  \"servidores\": \"servidor\",\n  \"servidumbre\": \"servidumbr\",\n  \"serviles\": \"servil\",\n  \"servilleta\": \"servillet\",\n  \"servimos\": \"serv\",\n  \"servín\": \"servin\",\n  \"servios\": \"servi\",\n  \"servir\": \"serv\",\n  \"servirá\": \"serv\",\n  \"servirán\": \"serv\",\n  \"serviría\": \"serv\",\n  \"servirnos\": \"serv\",\n  \"sese\": \"ses\",\n  \"sesentas\": \"sesent\",\n  \"sesgo\": \"sesg\",\n  \"sesión\": \"sesion\",\n  \"sesiones\": \"sesion\",\n  \"sesos\": \"ses\",\n  \"set\": \"set\",\n  \"setentas\": \"setent\",\n  \"sets\": \"sets\",\n  \"seudónimo\": \"seudonim\",\n  \"seul\": \"seul\",\n  \"seúl\": \"seul\",\n  \"severa\": \"sever\",\n  \"severamente\": \"sever\",\n  \"severas\": \"sever\",\n  \"severo\": \"sever\",\n  \"severos\": \"sever\",\n  \"sevilla\": \"sevill\",\n  \"sexenio\": \"sexeni\",\n  \"sexenios\": \"sexeni\",\n  \"sexista\": \"sexist\",\n  \"sexo\": \"sex\",\n  \"sexopatía\": \"sexopat\",\n  \"sexos\": \"sex\",\n  \"sexta\": \"sext\",\n  \"sextetas\": \"sextet\",\n  \"sexto\": \"sext\",\n  \"sexual\": \"sexual\",\n  \"sexuales\": \"sexual\",\n  \"sexualidad\": \"sexual\",\n  \"sexualmente\": \"sexual\",\n  \"sexy\": \"sexy\",\n  \"sexys\": \"sexys\",\n  \"sfara\": \"sfar\",\n  \"sgpv\": \"sgpv\",\n  \"shadow\": \"shadow\",\n  \"shannon\": \"shannon\",\n  \"shaw\": \"shaw\",\n  \"shcp\": \"shcp\",\n  \"sheehy\": \"sheehy\",\n  \"sheila\": \"sheil\",\n  \"shepard\": \"shepard\",\n  \"sherel\": \"sherel\",\n  \"sheriff\": \"sheriff\",\n  \"sherman\": \"sherm\",\n  \"sherrit\": \"sherrit\",\n  \"shibata\": \"shibat\",\n  \"shikang\": \"shikang\",\n  \"shimizu\": \"shimizu\",\n  \"shorts\": \"shorts\",\n  \"show\": \"show\",\n  \"shows\": \"shows\",\n  \"showtime\": \"showtim\",\n  \"shrine\": \"shrin\",\n  \"si\": \"si\",\n  \"sí\": \"si\",\n  \"siberia\": \"siberi\",\n  \"siberiana\": \"siberian\",\n  \"sica\": \"sic\",\n  \"siclo\": \"sicl\",\n  \"siclos\": \"sicl\",\n  \"sicológica\": \"sicolog\",\n  \"sida\": \"sid\",\n  \"sidente\": \"sident\",\n  \"siderúrgicas\": \"siderurg\",\n  \"sido\": \"sid\",\n  \"siembra\": \"siembr\",\n  \"siembran\": \"siembr\",\n  \"siemens\": \"siemens\",\n  \"siempre\": \"siempr\",\n  \"siendo\": \"siend\",\n  \"sienta\": \"sient\",\n  \"sientan\": \"sient\",\n  \"siente\": \"sient\",\n  \"sienten\": \"sient\",\n  \"siento\": \"sient\",\n  \"sierra\": \"sierr\",\n  \"sierva\": \"sierv\",\n  \"siervo\": \"sierv\",\n  \"siete\": \"siet\",\n  \"siga\": \"sig\",\n  \"sigamos\": \"sig\",\n  \"sigan\": \"sig\",\n  \"siglas\": \"sigl\",\n  \"siglo\": \"sigl\",\n  \"siglos\": \"sigl\",\n  \"significa\": \"signif\",\n  \"significación\": \"signif\",\n  \"significado\": \"signific\",\n  \"significados\": \"signific\",\n  \"significan\": \"signific\",\n  \"significar\": \"signific\",\n  \"significará\": \"signific\",\n  \"significaran\": \"signific\",\n  \"significaría\": \"signific\",\n  \"significativa\": \"signific\",\n  \"significativamente\": \"signific\",\n  \"significativas\": \"signific\",\n  \"significativo\": \"signific\",\n  \"significativos\": \"signific\",\n  \"significo\": \"signif\",\n  \"significó\": \"signific\",\n  \"signifique\": \"signifiqu\",\n  \"signo\": \"sign\",\n  \"signos\": \"sign\",\n  \"sigo\": \"sig\",\n  \"sigue\": \"sig\",\n  \"siguen\": \"sig\",\n  \"siguiendo\": \"sigu\",\n  \"siguiente\": \"siguient\",\n  \"siguientes\": \"siguient\",\n  \"siguiera\": \"sigu\",\n  \"siguieran\": \"sigu\",\n  \"siguieron\": \"sigu\",\n  \"siguió\": \"sigu\",\n  \"silbante\": \"silbant\",\n  \"silbaron\": \"silb\",\n  \"silbatazo\": \"silbataz\",\n  \"silber\": \"silb\",\n  \"silbes\": \"silb\",\n  \"silencio\": \"silenci\",\n  \"silencioso\": \"silenci\",\n  \"silla\": \"sill\",\n  \"sillas\": \"sill\",\n  \"sillón\": \"sillon\",\n  \"silos\": \"sil\",\n  \"silueta\": \"siluet\",\n  \"silva\": \"silv\",\n  \"silvestre\": \"silvestr\",\n  \"silvestris\": \"silvestris\",\n  \"silvia\": \"silvi\",\n  \"silviano\": \"silvian\",\n  \"silvio\": \"silvi\",\n  \"simbólica\": \"simbol\",\n  \"simbólico\": \"simbol\",\n  \"simbolización\": \"simboliz\",\n  \"símbolo\": \"simbol\",\n  \"símbolos\": \"simbol\",\n  \"simeone\": \"simeon\",\n  \"simeprode\": \"simeprod\",\n  \"similar\": \"simil\",\n  \"similares\": \"similar\",\n  \"simón\": \"simon\",\n  \"simpatía\": \"simpat\",\n  \"simpático\": \"simpat\",\n  \"simpatizantes\": \"simpatiz\",\n  \"simple\": \"simpl\",\n  \"simplemente\": \"simplement\",\n  \"simples\": \"simpl\",\n  \"simpliciano\": \"simplician\",\n  \"simplificación\": \"simplif\",\n  \"simplificado\": \"simplific\",\n  \"simplista\": \"simplist\",\n  \"simposiums\": \"simposiums\",\n  \"simulación\": \"simul\",\n  \"simulador\": \"simul\",\n  \"simulados\": \"simul\",\n  \"simular\": \"simul\",\n  \"simultánea\": \"simultane\",\n  \"simultáneamente\": \"simultan\",\n  \"simultáneos\": \"simultane\",\n  \"sin\": \"sin\",\n  \"sinagua\": \"sinagu\",\n  \"sinaí\": \"sina\",\n  \"sinaloa\": \"sinalo\",\n  \"sinaloense\": \"sinaloens\",\n  \"sinaloenses\": \"sinaloens\",\n  \"sinceramente\": \"sincer\",\n  \"sincero\": \"sincer\",\n  \"sinclair\": \"sincl\",\n  \"sincretismo\": \"sincret\",\n  \"sincronización\": \"sincroniz\",\n  \"sincronizados\": \"sincroniz\",\n  \"sindelfingen\": \"sindelfing\",\n  \"sindical\": \"sindical\",\n  \"sindicales\": \"sindical\",\n  \"sindicalismo\": \"sindical\",\n  \"sindicalista\": \"sindical\",\n  \"sindicalistas\": \"sindical\",\n  \"sindicato\": \"sindicat\",\n  \"sindicatos\": \"sindicat\",\n  \"sindicatura\": \"sindicatur\",\n  \"síndico\": \"sindic\",\n  \"síndicos\": \"sindic\",\n  \"sindo\": \"sind\",\n  \"síndrome\": \"sindrom\",\n  \"sinfonía\": \"sinfon\",\n  \"singapur\": \"singapur\",\n  \"singer\": \"sing\",\n  \"singles\": \"singl\",\n  \"singlista\": \"singlist\",\n  \"singular\": \"singul\",\n  \"siniestra\": \"siniestr\",\n  \"siniestro\": \"siniestr\",\n  \"sinnúmero\": \"sinnumer\",\n  \"sino\": \"sin\",\n  \"sinodal\": \"sinodal\",\n  \"sinónimo\": \"sinonim\",\n  \"sinovial\": \"sinovial\",\n  \"síntesis\": \"sintesis\",\n  \"sintética\": \"sintet\",\n  \"sintético\": \"sintet\",\n  \"sintéticos\": \"sintet\",\n  \"sintiéndome\": \"sint\",\n  \"sintió\": \"sint\",\n  \"síntoma\": \"sintom\",\n  \"síntomas\": \"sintom\",\n  \"sintomática\": \"sintomat\",\n  \"sintomáticas\": \"sintomat\",\n  \"sintomático\": \"sintomat\",\n  \"sinuosos\": \"sinuos\",\n  \"sinusitis\": \"sinusitis\",\n  \"siquiatra\": \"siquiatr\",\n  \"siquiera\": \"siqu\",\n  \"sir\": \"sir\",\n  \"sirgo\": \"sirg\",\n  \"sirloin\": \"sirloin\",\n  \"siro\": \"sir\",\n  \"sirva\": \"sirv\",\n  \"sirvan\": \"sirv\",\n  \"sirve\": \"sirv\",\n  \"sirven\": \"sirv\",\n  \"sirves\": \"sirv\",\n  \"sirvientas\": \"sirvient\",\n  \"sirvieran\": \"sirv\",\n  \"sirvieron\": \"sirv\",\n  \"sirvió\": \"sirv\",\n  \"siscohm\": \"siscohm\",\n  \"sísmica\": \"sismic\",\n  \"sísmicos\": \"sismic\",\n  \"sismógrafos\": \"sismograf\",\n  \"sismología\": \"sismolog\",\n  \"sistefin\": \"sistefin\",\n  \"sistema\": \"sistem\",\n  \"sistemas\": \"sistem\",\n  \"sistemática\": \"sistemat\",\n  \"sistemáticas\": \"sistemat\",\n  \"sistemático\": \"sistemat\",\n  \"sister\": \"sist\",\n  \"sitemáticamente\": \"sitemat\",\n  \"sitiado\": \"siti\",\n  \"sitiados\": \"siti\",\n  \"sitio\": \"siti\",\n  \"sitios\": \"siti\",\n  \"situación\": \"situacion\",\n  \"situaciones\": \"situacion\",\n  \"situada\": \"situ\",\n  \"situadas\": \"situ\",\n  \"situado\": \"situ\",\n  \"situándose\": \"situ\",\n  \"situar\": \"situ\",\n  \"situarlos\": \"situ\",\n  \"situarse\": \"situ\",\n  \"sixto\": \"sixt\",\n  \"sketches\": \"sketch\",\n  \"slam\": \"slam\",\n  \"sledge\": \"sledg\",\n  \"sli\": \"sli\",\n  \"slim\": \"slim\",\n  \"smc\": \"smc\",\n  \"smith\": \"smith\",\n  \"smuckers\": \"smuckers\",\n  \"snte\": \"snte\",\n  \"sobada\": \"sob\",\n  \"sobando\": \"sob\",\n  \"soberana\": \"soberan\",\n  \"soberanía\": \"soberan\",\n  \"soberano\": \"soberan\",\n  \"soberbia\": \"soberbi\",\n  \"sobornados\": \"soborn\",\n  \"sobornando\": \"soborn\",\n  \"soborno\": \"soborn\",\n  \"sobornos\": \"soborn\",\n  \"sobra\": \"sobr\",\n  \"sobraba\": \"sobr\",\n  \"sobradamente\": \"sobrad\",\n  \"sobran\": \"sobr\",\n  \"sobrando\": \"sobr\",\n  \"sobrar\": \"sobr\",\n  \"sobrarán\": \"sobr\",\n  \"sobre\": \"sobr\",\n  \"sobreasignación\": \"sobreasign\",\n  \"sobrecalentada\": \"sobrecalent\",\n  \"sobrecalentamiento\": \"sobrecalent\",\n  \"sobrecalentaron\": \"sobrecalent\",\n  \"sobrecarga\": \"sobrecarg\",\n  \"sobrecargaron\": \"sobrecarg\",\n  \"sobrecargas\": \"sobrecarg\",\n  \"sobrecosto\": \"sobrecost\",\n  \"sobrecostos\": \"sobrecost\",\n  \"sobrecupo\": \"sobrecup\",\n  \"sobrecupos\": \"sobrecup\",\n  \"sobreexplotación\": \"sobreexplot\",\n  \"sobregiro\": \"sobregir\",\n  \"sobregiros\": \"sobregir\",\n  \"sobrellevar\": \"sobrellev\",\n  \"sobremanera\": \"sobremaner\",\n  \"sobrenombre\": \"sobrenombr\",\n  \"sobrepasa\": \"sobrepas\",\n  \"sobrepasan\": \"sobrepas\",\n  \"sobrepasar\": \"sobrepas\",\n  \"sobrepase\": \"sobrep\",\n  \"sobrepasó\": \"sobrepas\",\n  \"sobrepoblación\": \"sobrepobl\",\n  \"sobreponen\": \"sobrepon\",\n  \"sobreponiéndose\": \"sobrepon\",\n  \"sobreposición\": \"sobreposicion\",\n  \"sobresale\": \"sobresal\",\n  \"sobresalen\": \"sobresal\",\n  \"sobresaliendo\": \"sobresal\",\n  \"sobresaliente\": \"sobresalient\",\n  \"sobresalió\": \"sobresal\",\n  \"sobresalir\": \"sobresal\",\n  \"sobresaltos\": \"sobresalt\",\n  \"sobreseída\": \"sobreseid\",\n  \"sobrestantes\": \"sobrest\",\n  \"sobresuscripcion\": \"sobresuscripcion\",\n  \"sobretasa\": \"sobretas\",\n  \"sobretodo\": \"sobretod\",\n  \"sobrevaluado\": \"sobrevalu\",\n  \"sobrevenga\": \"sobreveng\",\n  \"sobrevida\": \"sobrev\",\n  \"sobreviven\": \"sobreviv\",\n  \"sobrevivencia\": \"sobrevivent\",\n  \"sobrevivido\": \"sobreviv\",\n  \"sobrevivientes\": \"sobrevivient\",\n  \"sobrevivieron\": \"sobreviv\",\n  \"sobrevivir\": \"sobreviv\",\n  \"sobrevuelan\": \"sobrevuel\",\n  \"sobrevuelos\": \"sobrevuel\",\n  \"sobriedad\": \"sobried\",\n  \"sobrina\": \"sobrin\",\n  \"sobrino\": \"sobrin\",\n  \"sobrinos\": \"sobrin\",\n  \"socavamos\": \"socav\",\n  \"socavar\": \"socav\",\n  \"soccer\": \"socc\",\n  \"social\": \"social\",\n  \"socialdemócrata\": \"socialdemocrat\",\n  \"sociales\": \"social\",\n  \"socialismo\": \"social\",\n  \"socialista\": \"social\",\n  \"socialmente\": \"social\",\n  \"sociedad\": \"socied\",\n  \"sociedades\": \"sociedad\",\n  \"socio\": \"soci\",\n  \"socioeconómica\": \"socioeconom\",\n  \"socioeconómico\": \"socioeconom\",\n  \"socióloga\": \"sociolog\",\n  \"sociológico\": \"sociolog\",\n  \"sociológicos\": \"sociolog\",\n  \"sociólogo\": \"sociolog\",\n  \"sociopolítica\": \"sociopolit\",\n  \"socios\": \"soci\",\n  \"socorrista\": \"socorr\",\n  \"socorristas\": \"socorr\",\n  \"socorro\": \"socorr\",\n  \"socorros\": \"socorr\",\n  \"sócrates\": \"socrat\",\n  \"socrático\": \"socrat\",\n  \"socráticos\": \"socrat\",\n  \"sodas\": \"sod\",\n  \"sódico\": \"sodic\",\n  \"sodio\": \"sodi\",\n  \"sofá\": \"sof\",\n  \"sofía\": \"sof\",\n  \"sofisticación\": \"sofist\",\n  \"sofisticadas\": \"sofistic\",\n  \"sofisticado\": \"sofistic\",\n  \"sofisticados\": \"sofistic\",\n  \"sofocación\": \"sofoc\",\n  \"sofocado\": \"sofoc\",\n  \"sofocarlo\": \"sofoc\",\n  \"soft\": \"soft\",\n  \"softbol\": \"softbol\",\n  \"software\": \"softwar\",\n  \"sogem\": \"sogem\",\n  \"sojo\": \"soj\",\n  \"sol\": \"sol\",\n  \"sola\": \"sol\",\n  \"solamente\": \"sol\",\n  \"solana\": \"solan\",\n  \"solapados\": \"solap\",\n  \"solar\": \"sol\",\n  \"solares\": \"solar\",\n  \"solaris\": \"solaris\",\n  \"solas\": \"sol\",\n  \"solaza\": \"solaz\",\n  \"solazo\": \"solaz\",\n  \"soldada\": \"sold\",\n  \"soldado\": \"sold\",\n  \"soldador\": \"soldador\",\n  \"soldados\": \"sold\",\n  \"soldadura\": \"soldadur\",\n  \"soldan\": \"sold\",\n  \"soldando\": \"sold\",\n  \"soldar\": \"sold\",\n  \"soldarlos\": \"sold\",\n  \"soleado\": \"sol\",\n  \"soledad\": \"soled\",\n  \"solemne\": \"solemn\",\n  \"solemnidad\": \"solemn\",\n  \"solía\": \"sol\",\n  \"solían\": \"sol\",\n  \"solicita\": \"solicit\",\n  \"solicitaba\": \"solicit\",\n  \"solicitada\": \"solicit\",\n  \"solicitado\": \"solicit\",\n  \"solicitados\": \"solicit\",\n  \"solicitamos\": \"solicit\",\n  \"solicitan\": \"solicit\",\n  \"solicitando\": \"solicit\",\n  \"solicitar\": \"solicit\",\n  \"solicitará\": \"solicit\",\n  \"solicitarán\": \"solicit\",\n  \"solicitarle\": \"solicit\",\n  \"solicitaron\": \"solicit\",\n  \"solicite\": \"solicit\",\n  \"solicité\": \"solicit\",\n  \"solicito\": \"solicit\",\n  \"solícito\": \"solicit\",\n  \"solicitó\": \"solicit\",\n  \"solicitud\": \"solicitud\",\n  \"solicitudes\": \"solicitud\",\n  \"sólida\": \"sol\",\n  \"solidaria\": \"solidari\",\n  \"solidaridad\": \"solidar\",\n  \"solidario\": \"solidari\",\n  \"sólidas\": \"sol\",\n  \"solidez\": \"solidez\",\n  \"sólido\": \"sol\",\n  \"sólidos\": \"sol\",\n  \"solís\": \"sol\",\n  \"solista\": \"solist\",\n  \"solistas\": \"solist\",\n  \"solitario\": \"solitari\",\n  \"solitarios\": \"solitari\",\n  \"solito\": \"solit\",\n  \"sollozando\": \"solloz\",\n  \"solo\": \"sol\",\n  \"sólo\": \"sol\",\n  \"solórzano\": \"solorzan\",\n  \"solos\": \"sol\",\n  \"soltar\": \"solt\",\n  \"soltara\": \"solt\",\n  \"soltaran\": \"solt\",\n  \"soltera\": \"solter\",\n  \"solteras\": \"solter\",\n  \"soltó\": \"solt\",\n  \"solución\": \"solucion\",\n  \"solucionan\": \"solucion\",\n  \"solucionar\": \"solucion\",\n  \"solucionarse\": \"solucion\",\n  \"solucione\": \"solucion\",\n  \"soluciones\": \"solucion\",\n  \"solucionó\": \"solucion\",\n  \"solvencia\": \"solvenci\",\n  \"solventar\": \"solvent\",\n  \"somalia\": \"somali\",\n  \"sombra\": \"sombr\",\n  \"sombras\": \"sombr\",\n  \"sombrero\": \"sombrer\",\n  \"sombreros\": \"sombrer\",\n  \"sometan\": \"somet\",\n  \"somete\": \"somet\",\n  \"someter\": \"somet\",\n  \"someterá\": \"somet\",\n  \"someterán\": \"somet\",\n  \"someterlos\": \"somet\",\n  \"someterse\": \"somet\",\n  \"sometidas\": \"somet\",\n  \"sometido\": \"somet\",\n  \"sometidos\": \"somet\",\n  \"sometimiento\": \"somet\",\n  \"somos\": \"som\",\n  \"somoza\": \"somoz\",\n  \"son\": \"son\",\n  \"soñado\": \"soñ\",\n  \"soñadores\": \"soñador\",\n  \"sonados\": \"son\",\n  \"soñados\": \"soñ\",\n  \"soñando\": \"soñ\",\n  \"soñar\": \"soñ\",\n  \"sonda\": \"sond\",\n  \"sondas\": \"sond\",\n  \"sondeos\": \"sonde\",\n  \"soñé\": \"soñ\",\n  \"sonia\": \"soni\",\n  \"sonido\": \"son\",\n  \"sonidos\": \"son\",\n  \"soñó\": \"soñ\",\n  \"sonora\": \"sonor\",\n  \"sonorense\": \"sonorens\",\n  \"sonriente\": \"sonrient\",\n  \"sonríes\": \"sonr\",\n  \"sonrió\": \"sonr\",\n  \"sonrisa\": \"sonris\",\n  \"sonrisas\": \"sonris\",\n  \"sony\": \"sony\",\n  \"sonya\": \"sony\",\n  \"sopesar\": \"sopes\",\n  \"soplando\": \"sopl\",\n  \"soplarse\": \"sopl\",\n  \"soporta\": \"soport\",\n  \"soportaba\": \"soport\",\n  \"soportable\": \"soport\",\n  \"soportado\": \"soport\",\n  \"soportan\": \"soport\",\n  \"soportar\": \"soport\",\n  \"soportarán\": \"soport\",\n  \"soporte\": \"soport\",\n  \"soportes\": \"soport\",\n  \"soportó\": \"soport\",\n  \"sor\": \"sor\",\n  \"sorda\": \"sord\",\n  \"sordera\": \"sorder\",\n  \"sórdidas\": \"sord\",\n  \"sórdido\": \"sord\",\n  \"sordos\": \"sord\",\n  \"sorgo\": \"sorg\",\n  \"soriana\": \"sorian\",\n  \"soriano\": \"sorian\",\n  \"soros\": \"sor\",\n  \"sorprenda\": \"sorprend\",\n  \"sorprende\": \"sorprend\",\n  \"sorprenden\": \"sorprend\",\n  \"sorprendente\": \"sorprendent\",\n  \"sorprendentes\": \"sorprendent\",\n  \"sorprender\": \"sorprend\",\n  \"sorprenderá\": \"sorprend\",\n  \"sorprendí\": \"sorprend\",\n  \"sorprendidas\": \"sorprend\",\n  \"sorprendido\": \"sorprend\",\n  \"sorprendidos\": \"sorprend\",\n  \"sorprendieron\": \"sorprend\",\n  \"sorprendió\": \"sorprend\",\n  \"sorpresa\": \"sorpres\",\n  \"sorpresas\": \"sorpres\",\n  \"sorpresiva\": \"sorpres\",\n  \"sorpresivas\": \"sorpres\",\n  \"sorpresivo\": \"sorpres\",\n  \"sorpresivos\": \"sorpres\",\n  \"sortea\": \"sorte\",\n  \"sorteo\": \"sorte\",\n  \"sorteos\": \"sorte\",\n  \"sosa\": \"sos\",\n  \"soslayó\": \"soslay\",\n  \"sospecha\": \"sospech\",\n  \"sospechaba\": \"sospech\",\n  \"sospechamos\": \"sospech\",\n  \"sospecho\": \"sospech\",\n  \"sospechosa\": \"sospech\",\n  \"sospechoso\": \"sospech\",\n  \"sospechosos\": \"sospech\",\n  \"sostén\": \"sosten\",\n  \"sostendrá\": \"sostendr\",\n  \"sostendrán\": \"sostendran\",\n  \"sostener\": \"sosten\",\n  \"sostenerla\": \"sosten\",\n  \"sostenerse\": \"sosten\",\n  \"sostengo\": \"sosteng\",\n  \"sostenía\": \"sosten\",\n  \"sostenían\": \"sosten\",\n  \"sostenible\": \"sosten\",\n  \"sostenida\": \"sosten\",\n  \"sostenidas\": \"sosten\",\n  \"sostenido\": \"sosten\",\n  \"sosteniendo\": \"sosten\",\n  \"sostiene\": \"sostien\",\n  \"sostienen\": \"sostien\",\n  \"sostuvieron\": \"sostuv\",\n  \"sostuvo\": \"sostuv\",\n  \"sotanero\": \"sotaner\",\n  \"sotaneros\": \"sotaner\",\n  \"sotero\": \"soter\",\n  \"soto\": \"sot\",\n  \"soundgarden\": \"soundgard\",\n  \"south\": \"south\",\n  \"southern\": \"southern\",\n  \"southwest\": \"southwest\",\n  \"soviet\": \"soviet\",\n  \"soviética\": \"soviet\",\n  \"soviético\": \"soviet\",\n  \"soy\": \"soy\",\n  \"soya\": \"soy\",\n  \"sparcclassic\": \"sparcclassic\",\n  \"sparcservers\": \"sparcservers\",\n  \"sparcstations\": \"sparcstations\",\n  \"sparrings\": \"sparrings\",\n  \"special\": \"special\",\n  \"spike\": \"spik\",\n  \"spirit\": \"spirit\",\n  \"spivakov\": \"spivakov\",\n  \"sport\": \"sport\",\n  \"sporting\": \"sporting\",\n  \"spot\": \"spot\",\n  \"sprenger\": \"spreng\",\n  \"springbreakers\": \"springbreakers\",\n  \"sprint\": \"sprint\",\n  \"sprints\": \"sprints\",\n  \"sr\": \"sr\",\n  \"staff\": \"staff\",\n  \"stalin\": \"stalin\",\n  \"standard\": \"standard\",\n  \"stanley\": \"stanley\",\n  \"state\": \"stat\",\n  \"station\": \"station\",\n  \"statuo\": \"statu\",\n  \"status\": \"status\",\n  \"steels\": \"steels\",\n  \"stéfano\": \"stefan\",\n  \"stephan\": \"steph\",\n  \"stephanopoulos\": \"stephanopoul\",\n  \"stephen\": \"steph\",\n  \"stereo\": \"stere\",\n  \"stern\": \"stern\",\n  \"steve\": \"stev\",\n  \"steven\": \"stev\",\n  \"stl\": \"stl\",\n  \"stock\": \"stock\",\n  \"stoichkov\": \"stoichkov\",\n  \"stoickov\": \"stoickov\",\n  \"stoker\": \"stok\",\n  \"stólica\": \"stolic\",\n  \"stone\": \"ston\",\n  \"stor\": \"stor\",\n  \"straffon\": \"straffon\",\n  \"strauss\": \"strauss\",\n  \"stravinsky\": \"stravinsky\",\n  \"street\": \"street\",\n  \"strictly\": \"strictly\",\n  \"strikes\": \"strik\",\n  \"strindberg\": \"strindberg\",\n  \"studies\": \"studi\",\n  \"stup\": \"stup\",\n  \"stuttgart\": \"stuttgart\",\n  \"su\": \"su\",\n  \"suárez\": \"suarez\",\n  \"suave\": \"suav\",\n  \"suavemente\": \"suavement\",\n  \"suaves\": \"suav\",\n  \"suavidad\": \"suavid\",\n  \"suavizamos\": \"suaviz\",\n  \"suavizaron\": \"suaviz\",\n  \"sub\": \"sub\",\n  \"suba\": \"sub\",\n  \"subacuática\": \"subacuat\",\n  \"subalterna\": \"subaltern\",\n  \"subalterno\": \"subaltern\",\n  \"suban\": \"sub\",\n  \"subaru\": \"subaru\",\n  \"subasta\": \"subast\",\n  \"subastas\": \"subast\",\n  \"subcampeón\": \"subcampeon\",\n  \"subcomandante\": \"subcomand\",\n  \"subcomandantes\": \"subcomand\",\n  \"subcomisión\": \"subcomision\",\n  \"subcomité\": \"subcomit\",\n  \"subconsciente\": \"subconscient\",\n  \"subcontratación\": \"subcontrat\",\n  \"subdelegado\": \"subdeleg\",\n  \"subdesarrollada\": \"subdesarroll\",\n  \"subdesarrollados\": \"subdesarroll\",\n  \"subdirección\": \"subdireccion\",\n  \"subdirector\": \"subdirector\",\n  \"subdirectora\": \"subdirector\",\n  \"subdistribuidores\": \"subdistribuidor\",\n  \"subdivisión\": \"subdivision\",\n  \"suben\": \"sub\",\n  \"subes\": \"sub\",\n  \"subespecialidades\": \"subespecial\",\n  \"subestación\": \"subest\",\n  \"subfacturación\": \"subfactur\",\n  \"subgerente\": \"subgerent\",\n  \"subí\": \"sub\",\n  \"subían\": \"sub\",\n  \"subida\": \"sub\",\n  \"subidas\": \"sub\",\n  \"subido\": \"sub\",\n  \"subiendo\": \"sub\",\n  \"subieran\": \"sub\",\n  \"subieron\": \"sub\",\n  \"subió\": \"sub\",\n  \"subir\": \"sub\",\n  \"subirá\": \"sub\",\n  \"subirse\": \"sub\",\n  \"súbita\": \"subit\",\n  \"súbitamente\": \"subit\",\n  \"subjetiva\": \"subjet\",\n  \"subjetividad\": \"subjet\",\n  \"sublíder\": \"sublid\",\n  \"sublíderes\": \"sublider\",\n  \"sublime\": \"sublim\",\n  \"subliminal\": \"subliminal\",\n  \"submarina\": \"submarin\",\n  \"submarinas\": \"submarin\",\n  \"submarino\": \"submarin\",\n  \"submarinos\": \"submarin\",\n  \"subordinado\": \"subordin\",\n  \"subordinados\": \"subordin\",\n  \"subprocurador\": \"subprocur\",\n  \"subproductos\": \"subproduct\",\n  \"subrayar\": \"subray\",\n  \"subrayaron\": \"subray\",\n  \"subrayó\": \"subray\",\n  \"subregional\": \"subregional\",\n  \"subsana\": \"subsan\",\n  \"subsanables\": \"subsan\",\n  \"subsecretaria\": \"subsecretari\",\n  \"subsecretaría\": \"subsecret\",\n  \"subsecretario\": \"subsecretari\",\n  \"subsecretarios\": \"subsecretari\",\n  \"subsectores\": \"subsector\",\n  \"subsecuentes\": \"subsecuent\",\n  \"subsidiada\": \"subsidi\",\n  \"subsidiadas\": \"subsidi\",\n  \"subsidiar\": \"subsidi\",\n  \"subsidiaria\": \"subsidiari\",\n  \"subsidiarias\": \"subsidiari\",\n  \"subsidiarios\": \"subsidiari\",\n  \"subsidio\": \"subsidi\",\n  \"subsidios\": \"subsidi\",\n  \"substancia\": \"substanci\",\n  \"substancial\": \"substancial\",\n  \"substanciales\": \"substancial\",\n  \"substancias\": \"substanci\",\n  \"subsuelo\": \"subsuel\",\n  \"subtangente\": \"subtangent\",\n  \"subterránea\": \"subterrane\",\n  \"subterráneo\": \"subterrane\",\n  \"suburban\": \"suburb\",\n  \"suburbanos\": \"suburban\",\n  \"suburbias\": \"suburbi\",\n  \"suburbios\": \"suburbi\",\n  \"subvención\": \"subvencion\",\n  \"subversión\": \"subversion\",\n  \"subversivo\": \"subvers\",\n  \"subversivos\": \"subvers\",\n  \"subvertir\": \"subvert\",\n  \"subviertes\": \"subviert\",\n  \"suceda\": \"suced\",\n  \"sucede\": \"suced\",\n  \"suceden\": \"suced\",\n  \"suceder\": \"suced\",\n  \"sucederá\": \"suced\",\n  \"sucedería\": \"suced\",\n  \"sucederlo\": \"suced\",\n  \"sucedía\": \"suced\",\n  \"sucedido\": \"suced\",\n  \"sucediera\": \"suced\",\n  \"sucedieron\": \"suced\",\n  \"sucedió\": \"suced\",\n  \"sucesion\": \"sucesion\",\n  \"sucesión\": \"sucesion\",\n  \"sucesivamente\": \"suces\",\n  \"suceso\": \"suces\",\n  \"sucesor\": \"sucesor\",\n  \"sucesorio\": \"sucesori\",\n  \"sucesos\": \"suces\",\n  \"sucia\": \"suci\",\n  \"suciedad\": \"sucied\",\n  \"sucio\": \"suci\",\n  \"sucios\": \"suci\",\n  \"sucre\": \"sucr\",\n  \"sucumbir\": \"sucumb\",\n  \"sucursal\": \"sucursal\",\n  \"sucursales\": \"sucursal\",\n  \"sudamérica\": \"sudamer\",\n  \"sudamericana\": \"sudamerican\",\n  \"sudamericanas\": \"sudamerican\",\n  \"sudamericano\": \"sudamerican\",\n  \"sudar\": \"sud\",\n  \"sudeste\": \"sudest\",\n  \"sudoccidental\": \"sudoccidental\",\n  \"sudoeste\": \"sudoest\",\n  \"sudoración\": \"sudor\",\n  \"sudoroso\": \"sudor\",\n  \"suecia\": \"sueci\",\n  \"sueco\": \"suec\",\n  \"suecos\": \"suec\",\n  \"suegra\": \"suegr\",\n  \"suelas\": \"suel\",\n  \"sueldo\": \"sueld\",\n  \"sueldos\": \"sueld\",\n  \"suele\": \"suel\",\n  \"suelen\": \"suel\",\n  \"suelo\": \"suel\",\n  \"suelos\": \"suel\",\n  \"sueltan\": \"suelt\",\n  \"suena\": \"suen\",\n  \"sueña\": \"sueñ\",\n  \"suenen\": \"suen\",\n  \"sueño\": \"sueñ\",\n  \"sueños\": \"sueñ\",\n  \"suero\": \"suer\",\n  \"suerte\": \"suert\",\n  \"suéter\": \"suet\",\n  \"suéteres\": \"sueter\",\n  \"suficiente\": \"suficient\",\n  \"suficientemente\": \"suficient\",\n  \"suficientes\": \"suficient\",\n  \"sufragar\": \"sufrag\",\n  \"sufragaron\": \"sufrag\",\n  \"sufragio\": \"sufragi\",\n  \"sufragios\": \"sufragi\",\n  \"sufrague\": \"sufrag\",\n  \"sufre\": \"sufr\",\n  \"sufren\": \"sufr\",\n  \"sufrí\": \"sufr\",\n  \"sufría\": \"sufr\",\n  \"sufrido\": \"sufr\",\n  \"sufridos\": \"sufr\",\n  \"sufriendo\": \"sufr\",\n  \"sufrieron\": \"sufr\",\n  \"sufrimiento\": \"sufrimient\",\n  \"sufrió\": \"sufr\",\n  \"sufrir\": \"sufr\",\n  \"sugerencia\": \"sugerent\",\n  \"sugerencias\": \"sugerent\",\n  \"sugerentes\": \"sugerent\",\n  \"sugería\": \"sug\",\n  \"sugerido\": \"suger\",\n  \"sugeridos\": \"suger\",\n  \"sugerir\": \"suger\",\n  \"sugestivos\": \"sugest\",\n  \"sugiera\": \"sug\",\n  \"sugieran\": \"sug\",\n  \"sugiere\": \"sugier\",\n  \"sugieren\": \"sugier\",\n  \"sugiero\": \"sugier\",\n  \"sugiriendo\": \"sugir\",\n  \"sugirieron\": \"sugir\",\n  \"sugirió\": \"sugir\",\n  \"sui\": \"sui\",\n  \"suicida\": \"suic\",\n  \"suicidaron\": \"suicid\",\n  \"suicidarse\": \"suicid\",\n  \"suicidio\": \"suicidi\",\n  \"suite\": \"suit\",\n  \"suiza\": \"suiz\",\n  \"suizos\": \"suiz\",\n  \"sujeción\": \"sujecion\",\n  \"sujetar\": \"sujet\",\n  \"sujetarlo\": \"sujet\",\n  \"sujetarse\": \"sujet\",\n  \"sujeto\": \"sujet\",\n  \"sujetos\": \"sujet\",\n  \"sulaimán\": \"sulaiman\",\n  \"sulfito\": \"sulfit\",\n  \"sulfúrico\": \"sulfur\",\n  \"sultana\": \"sultan\",\n  \"sultanes\": \"sultan\",\n  \"suma\": \"sum\",\n  \"sumaban\": \"sum\",\n  \"sumado\": \"sum\",\n  \"sumados\": \"sum\",\n  \"sumamente\": \"sum\",\n  \"suman\": \"sum\",\n  \"sumando\": \"sum\",\n  \"sumar\": \"sum\",\n  \"sumarán\": \"sum\",\n  \"sumario\": \"sumari\",\n  \"sumaron\": \"sum\",\n  \"sumarse\": \"sum\",\n  \"sumas\": \"sum\",\n  \"sume\": \"sum\",\n  \"sumen\": \"sum\",\n  \"sumerge\": \"sumerg\",\n  \"sumergibles\": \"sumerg\",\n  \"sumergido\": \"sumerg\",\n  \"sumergió\": \"sumerg\",\n  \"sumerio\": \"sumeri\",\n  \"sumido\": \"sum\",\n  \"suministraba\": \"suministr\",\n  \"suministrada\": \"suministr\",\n  \"suministrar\": \"suministr\",\n  \"suministro\": \"suministr\",\n  \"suministró\": \"suministr\",\n  \"sumisa\": \"sumis\",\n  \"summers\": \"summers\",\n  \"sumo\": \"sum\",\n  \"sumó\": \"sum\",\n  \"sun\": \"sun\",\n  \"sung\": \"sung\",\n  \"sunny\": \"sunny\",\n  \"suntuoso\": \"suntuos\",\n  \"suoo\": \"suo\",\n  \"supe\": \"sup\",\n  \"super\": \"sup\",\n  \"súper\": \"sup\",\n  \"supera\": \"super\",\n  \"superación\": \"super\",\n  \"superada\": \"super\",\n  \"superado\": \"super\",\n  \"superamas\": \"superam\",\n  \"superamos\": \"super\",\n  \"superan\": \"super\",\n  \"superando\": \"super\",\n  \"superar\": \"super\",\n  \"superará\": \"super\",\n  \"superarla\": \"super\",\n  \"superarlo\": \"super\",\n  \"superarlos\": \"super\",\n  \"superarme\": \"super\",\n  \"superaron\": \"super\",\n  \"superavenida\": \"superaven\",\n  \"superávit\": \"superavit\",\n  \"superavitaria\": \"superavitari\",\n  \"supercenter\": \"supercent\",\n  \"supercenters\": \"supercenters\",\n  \"superdotados\": \"superdot\",\n  \"supere\": \"super\",\n  \"superficial\": \"superficial\",\n  \"superficiales\": \"superficial\",\n  \"superficie\": \"superfici\",\n  \"superficies\": \"superfici\",\n  \"superfluas\": \"superflu\",\n  \"superior\": \"superior\",\n  \"superiores\": \"superior\",\n  \"superioridad\": \"superior\",\n  \"superiorsubaru\": \"superiorsubaru\",\n  \"superlíder\": \"superlid\",\n  \"superliderato\": \"superliderat\",\n  \"superligero\": \"superliger\",\n  \"superligeros\": \"superliger\",\n  \"superliviano\": \"superlivian\",\n  \"supermediano\": \"supermedian\",\n  \"supermercado\": \"supermerc\",\n  \"supermercados\": \"supermerc\",\n  \"superó\": \"super\",\n  \"superpluma\": \"superplum\",\n  \"superpotencia\": \"superpotent\",\n  \"supersecretarios\": \"supersecretari\",\n  \"supersónicas\": \"superson\",\n  \"supervisa\": \"supervis\",\n  \"supervisar\": \"supervis\",\n  \"supervisará\": \"supervis\",\n  \"supervisarlos\": \"supervis\",\n  \"supervisión\": \"supervision\",\n  \"supervisó\": \"supervis\",\n  \"supervisor\": \"supervisor\",\n  \"supervisora\": \"supervisor\",\n  \"supervivencia\": \"supervivent\",\n  \"superwelter\": \"superwelt\",\n  \"supieran\": \"sup\",\n  \"supieron\": \"sup\",\n  \"suple\": \"supl\",\n  \"suplemento\": \"suplement\",\n  \"suplente\": \"suplent\",\n  \"suplentes\": \"suplent\",\n  \"suplicantes\": \"suplic\",\n  \"suplicar\": \"suplic\",\n  \"suplicará\": \"suplic\",\n  \"suplir\": \"supl\",\n  \"supo\": \"sup\",\n  \"supondría\": \"supondr\",\n  \"supone\": \"supon\",\n  \"suponemos\": \"supon\",\n  \"suponer\": \"supon\",\n  \"suponerse\": \"supon\",\n  \"suponga\": \"supong\",\n  \"supongo\": \"supong\",\n  \"suponía\": \"supon\",\n  \"suponiendo\": \"supon\",\n  \"suposiciones\": \"suposicion\",\n  \"supra\": \"supr\",\n  \"suprema\": \"suprem\",\n  \"supremacia\": \"supremaci\",\n  \"supremacía\": \"supremac\",\n  \"supremo\": \"suprem\",\n  \"suprimir\": \"suprim\",\n  \"suprimirlas\": \"suprim\",\n  \"supuesta\": \"supuest\",\n  \"supuestamente\": \"supuest\",\n  \"supuestas\": \"supuest\",\n  \"supuesto\": \"supuest\",\n  \"supuestos\": \"supuest\",\n  \"sur\": \"sur\",\n  \"surcaba\": \"surc\",\n  \"surcoreana\": \"surcorean\",\n  \"surcoreanas\": \"surcorean\",\n  \"surcoreanos\": \"surcorean\",\n  \"sureste\": \"surest\",\n  \"surge\": \"surg\",\n  \"surgen\": \"surg\",\n  \"surgida\": \"surg\",\n  \"surgido\": \"surg\",\n  \"surgidos\": \"surg\",\n  \"surgiendo\": \"surg\",\n  \"surgiera\": \"surg\",\n  \"surgieron\": \"surg\",\n  \"surgimiento\": \"surgimient\",\n  \"surgio\": \"surgi\",\n  \"surgió\": \"surg\",\n  \"surgir\": \"surg\",\n  \"surgirá\": \"surg\",\n  \"surgirían\": \"surg\",\n  \"surja\": \"surj\",\n  \"surjan\": \"surj\",\n  \"suroeste\": \"suroest\",\n  \"surrealista\": \"surreal\",\n  \"surta\": \"surt\",\n  \"surtido\": \"surt\",\n  \"surtiendo\": \"surt\",\n  \"surtió\": \"surt\",\n  \"surtir\": \"surt\",\n  \"sus\": \"sus\",\n  \"susan\": \"sus\",\n  \"susana\": \"susan\",\n  \"susceptible\": \"suscept\",\n  \"susceptibles\": \"suscept\",\n  \"suscitado\": \"suscit\",\n  \"suscitó\": \"suscit\",\n  \"suscribió\": \"suscrib\",\n  \"suscribir\": \"suscrib\",\n  \"suscripción\": \"suscripcion\",\n  \"suscrita\": \"suscrit\",\n  \"suscrito\": \"suscrit\",\n  \"susiflor\": \"susiflor\",\n  \"suspenda\": \"suspend\",\n  \"suspende\": \"suspend\",\n  \"suspenden\": \"suspend\",\n  \"suspender\": \"suspend\",\n  \"suspenderá\": \"suspend\",\n  \"suspenderán\": \"suspend\",\n  \"suspendida\": \"suspend\",\n  \"suspendidas\": \"suspend\",\n  \"suspendido\": \"suspend\",\n  \"suspendidos\": \"suspend\",\n  \"suspendiera\": \"suspend\",\n  \"suspendieron\": \"suspend\",\n  \"suspendió\": \"suspend\",\n  \"suspendo\": \"suspend\",\n  \"suspensión\": \"suspension\",\n  \"suspensiones\": \"suspension\",\n  \"suspiro\": \"suspir\",\n  \"sustancia\": \"sustanci\",\n  \"sustancial\": \"sustancial\",\n  \"sustancias\": \"sustanci\",\n  \"sustenta\": \"sustent\",\n  \"sustentables\": \"sustent\",\n  \"sustentación\": \"sustent\",\n  \"sustentado\": \"sustent\",\n  \"sustentar\": \"sustent\",\n  \"sustente\": \"sustent\",\n  \"sustento\": \"sustent\",\n  \"sustitución\": \"sustitu\",\n  \"sustituían\": \"sustitu\",\n  \"sustituido\": \"sustitu\",\n  \"sustituir\": \"sustitu\",\n  \"sustituirá\": \"sustitu\",\n  \"sustituiría\": \"sustitu\",\n  \"sustitutiva\": \"sustitut\",\n  \"sustituto\": \"sustitut\",\n  \"sustituyamos\": \"sustitu\",\n  \"sustituyan\": \"sustitu\",\n  \"sustituye\": \"sustitu\",\n  \"sustituyen\": \"sustitu\",\n  \"sustituyendo\": \"sustitu\",\n  \"sustituyó\": \"sustitu\",\n  \"susto\": \"sust\",\n  \"sustraía\": \"sustr\",\n  \"sustrajo\": \"sustraj\",\n  \"suya\": \"suy\",\n  \"suyas\": \"suy\",\n  \"suyo\": \"suy\",\n  \"suyos\": \"suy\",\n  \"svyt\": \"svyt\",\n  \"swahili\": \"swahili\",\n  \"swing\": \"swing\",\n  \"swycord\": \"swycord\",\n  \"sx\": \"sx\",\n  \"sybilla\": \"sybill\",\n  \"symington\": \"symington\",\n  \"system\": \"system\",\n  \"systems\": \"systems\",\n  \"szekely\": \"szekely\",\n  \"sznajder\": \"sznajd\",\n  \"t\": \"t\",\n  \"tabachín\": \"tabachin\",\n  \"tabaco\": \"tabac\",\n  \"tabasco\": \"tabasc\",\n  \"tabe\": \"tab\",\n  \"tabla\": \"tabl\",\n  \"tablante\": \"tablant\",\n  \"tablero\": \"tabler\",\n  \"tableros\": \"tabler\",\n  \"tablones\": \"tablon\",\n  \"taboada\": \"tab\",\n  \"tabulador\": \"tabul\",\n  \"tachado\": \"tach\",\n  \"tacho\": \"tach\",\n  \"tachuelas\": \"tachuel\",\n  \"tácita\": \"tacit\",\n  \"tácitamente\": \"tacit\",\n  \"taco\": \"tac\",\n  \"tacón\": \"tacon\",\n  \"tacos\": \"tac\",\n  \"táctica\": \"tactic\",\n  \"tácticas\": \"tactic\",\n  \"tácticos\": \"tactic\",\n  \"tacto\": \"tact\",\n  \"taesa\": \"taes\",\n  \"taffarel\": \"taffarel\",\n  \"tagamet\": \"tagamet\",\n  \"tagetes\": \"taget\",\n  \"taiga\": \"taig\",\n  \"tailandia\": \"tailandi\",\n  \"taiwan\": \"taiw\",\n  \"taiwán\": \"taiwan\",\n  \"taiwandeses\": \"taiwandes\",\n  \"tajante\": \"tajant\",\n  \"takatoshi\": \"takatoshi\",\n  \"take\": \"tak\",\n  \"tal\": \"tal\",\n  \"talada\": \"tal\",\n  \"taladores\": \"talador\",\n  \"taladro\": \"taladr\",\n  \"tálamo\": \"talam\",\n  \"talante\": \"talant\",\n  \"talento\": \"talent\",\n  \"talentos\": \"talent\",\n  \"talentoso\": \"talent\",\n  \"tales\": \"tal\",\n  \"talismán\": \"talisman\",\n  \"talla\": \"tall\",\n  \"tallando\": \"tall\",\n  \"tallar\": \"tall\",\n  \"taller\": \"tall\",\n  \"talleres\": \"taller\",\n  \"talón\": \"talon\",\n  \"talones\": \"talon\",\n  \"talusa\": \"talus\",\n  \"tamal\": \"tamal\",\n  \"tamaño\": \"tamañ\",\n  \"tamasopo\": \"tamasop\",\n  \"tamaulipas\": \"tamaulip\",\n  \"tamaulipeca\": \"tamaulipec\",\n  \"tamayo\": \"tamay\",\n  \"tambien\": \"tambi\",\n  \"también\": \"tambien\",\n  \"tambor\": \"tambor\",\n  \"tambores\": \"tambor\",\n  \"támesis\": \"tamesis\",\n  \"tamez\": \"tamez\",\n  \"tampico\": \"tampic\",\n  \"tampoco\": \"tampoc\",\n  \"tamps\": \"tamps\",\n  \"tan\": \"tan\",\n  \"tanasio\": \"tanasi\",\n  \"tancanhuitz\": \"tancanhuitz\",\n  \"tancredi\": \"tancredi\",\n  \"tanda\": \"tand\",\n  \"tane\": \"tan\",\n  \"tanganhuato\": \"tanganhuat\",\n  \"tangibles\": \"tangibl\",\n  \"tanque\": \"tanqu\",\n  \"tanques\": \"tanqu\",\n  \"tanta\": \"tant\",\n  \"tantas\": \"tant\",\n  \"tanto\": \"tant\",\n  \"tantos\": \"tant\",\n  \"tanzanios\": \"tanzani\",\n  \"tapa\": \"tap\",\n  \"tapacalles\": \"tapacall\",\n  \"tapachula\": \"tapachul\",\n  \"tapar\": \"tap\",\n  \"tapas\": \"tap\",\n  \"tapatía\": \"tapat\",\n  \"tapatías\": \"tapat\",\n  \"tapatío\": \"tapati\",\n  \"tapatíos\": \"tapati\",\n  \"tapete\": \"tapet\",\n  \"tapia\": \"tapi\",\n  \"tapicería\": \"tapic\",\n  \"tapitas\": \"tapit\",\n  \"tapiz\": \"tapiz\",\n  \"tapizados\": \"tapiz\",\n  \"taponaron\": \"tapon\",\n  \"taponeo\": \"tapone\",\n  \"taquería\": \"taqu\",\n  \"taquilla\": \"taquill\",\n  \"taquillas\": \"taquill\",\n  \"taquillera\": \"taquiller\",\n  \"taquillero\": \"taquiller\",\n  \"taquitos\": \"taquit\",\n  \"tarado\": \"tar\",\n  \"tarahumara\": \"tarahum\",\n  \"tarahumaras\": \"tarahum\",\n  \"tarasov\": \"tarasov\",\n  \"tarciso\": \"tarcis\",\n  \"tarda\": \"tard\",\n  \"tardamos\": \"tard\",\n  \"tardan\": \"tard\",\n  \"tardándose\": \"tard\",\n  \"tardanza\": \"tardanz\",\n  \"tardar\": \"tard\",\n  \"tardará\": \"tard\",\n  \"tardarían\": \"tard\",\n  \"tardaron\": \"tard\",\n  \"tarde\": \"tard\",\n  \"tardé\": \"tard\",\n  \"tardes\": \"tard\",\n  \"tardía\": \"tard\",\n  \"tardo\": \"tard\",\n  \"tardó\": \"tard\",\n  \"tarea\": \"tare\",\n  \"tareas\": \"tar\",\n  \"tarifa\": \"tarif\",\n  \"tarifario\": \"tarifari\",\n  \"tarifarios\": \"tarifari\",\n  \"tarifas\": \"tarif\",\n  \"tarjeta\": \"tarjet\",\n  \"tarjetahabientes\": \"tarjetahabient\",\n  \"tarjetas\": \"tarjet\",\n  \"tarjetón\": \"tarjeton\",\n  \"tartajoso\": \"tartaj\",\n  \"tasa\": \"tas\",\n  \"tasas\": \"tas\",\n  \"tascón\": \"tascon\",\n  \"tasmania\": \"tasmani\",\n  \"tataranietos\": \"tataraniet\",\n  \"tatiana\": \"tatian\",\n  \"tato\": \"tat\",\n  \"tatuajes\": \"tatuaj\",\n  \"tauro\": \"taur\",\n  \"tavares\": \"tavar\",\n  \"taxco\": \"taxc\",\n  \"taxi\": \"taxi\",\n  \"taxis\": \"taxis\",\n  \"taxista\": \"taxist\",\n  \"taxistas\": \"taxist\",\n  \"taza\": \"taz\",\n  \"tazas\": \"taz\",\n  \"tazcón\": \"tazcon\",\n  \"tazón\": \"tazon\",\n  \"tazones\": \"tazon\",\n  \"tcp\": \"tcp\",\n  \"te\": \"te\",\n  \"té\": \"te\",\n  \"teaanque\": \"teaanqu\",\n  \"team\": \"team\",\n  \"teatral\": \"teatral\",\n  \"teatrales\": \"teatral\",\n  \"teatralmente\": \"teatral\",\n  \"teatro\": \"teatr\",\n  \"teatros\": \"teatr\",\n  \"tec\": \"tec\",\n  \"tecate\": \"tecat\",\n  \"tech\": \"tech\",\n  \"techado\": \"tech\",\n  \"technologies\": \"technologi\",\n  \"technology\": \"technology\",\n  \"techo\": \"tech\",\n  \"techos\": \"tech\",\n  \"techumbre\": \"techumbr\",\n  \"tecihuatlanque\": \"tecihuatlanqu\",\n  \"tecla\": \"tecl\",\n  \"tecladista\": \"teclad\",\n  \"teclados\": \"tecl\",\n  \"técnica\": \"tecnic\",\n  \"técnicamente\": \"tecnic\",\n  \"técnicas\": \"tecnic\",\n  \"técnico\": \"tecnic\",\n  \"técnicos\": \"tecnic\",\n  \"tecnocracia\": \"tecnocraci\",\n  \"tecnócratas\": \"tecnocrat\",\n  \"tecnología\": \"tecnolog\",\n  \"tecnologías\": \"tecnolog\",\n  \"tecnológica\": \"tecnolog\",\n  \"tecnológicamente\": \"tecnolog\",\n  \"tecnológicas\": \"tecnolog\",\n  \"tecnológico\": \"tecnolog\",\n  \"tecnológicos\": \"tecnolog\",\n  \"tecos\": \"tec\",\n  \"tecpan\": \"tecp\",\n  \"tecuniapa\": \"tecuniap\",\n  \"teddy\": \"teddy\",\n  \"teddys\": \"teddys\",\n  \"tedioso\": \"tedios\",\n  \"teherán\": \"teh\",\n  \"tehuacan\": \"tehuac\",\n  \"tehuacán\": \"tehuacan\",\n  \"tehuitzingo\": \"tehuitzing\",\n  \"teissier\": \"teissi\",\n  \"tejado\": \"tej\",\n  \"tejas\": \"tej\",\n  \"tejeda\": \"tejed\",\n  \"tejido\": \"tej\",\n  \"tejidos\": \"tej\",\n  \"tel\": \"tel\",\n  \"tela\": \"tel\",\n  \"telas\": \"tel\",\n  \"tele\": \"tel\",\n  \"telecom\": \"telecom\",\n  \"telecomunicaciones\": \"telecomun\",\n  \"telefonía\": \"telefon\",\n  \"telefónica\": \"telefon\",\n  \"telefónicamente\": \"telefon\",\n  \"telefónicas\": \"telefon\",\n  \"telefónico\": \"telefon\",\n  \"telefónicos\": \"telefon\",\n  \"telefonistas\": \"telefon\",\n  \"teléfono\": \"telefon\",\n  \"teléfonos\": \"telefon\",\n  \"teleguía\": \"telegu\",\n  \"telehogares\": \"telehogar\",\n  \"telenovela\": \"telenovel\",\n  \"telenovelas\": \"telenovel\",\n  \"telesecundaria\": \"telesecundari\",\n  \"teleseries\": \"teleseri\",\n  \"televicine\": \"televicin\",\n  \"televidente\": \"televident\",\n  \"televidentes\": \"televident\",\n  \"televisa\": \"televis\",\n  \"televisar\": \"televis\",\n  \"televisión\": \"television\",\n  \"televisiones\": \"television\",\n  \"televisiva\": \"televis\",\n  \"televisivas\": \"televis\",\n  \"televisivo\": \"televis\",\n  \"televisivos\": \"televis\",\n  \"televisora\": \"televisor\",\n  \"telex\": \"telex\",\n  \"téllez\": \"tellez\",\n  \"tello\": \"tell\",\n  \"telmex\": \"telmex\",\n  \"teloloapan\": \"teloloap\",\n  \"teloloapense\": \"teloloapens\",\n  \"telones\": \"telon\",\n  \"tema\": \"tem\",\n  \"temas\": \"tem\",\n  \"temática\": \"temat\",\n  \"temáticas\": \"temat\",\n  \"temblar\": \"tembl\",\n  \"temblor\": \"temblor\",\n  \"temblores\": \"temblor\",\n  \"teme\": \"tem\",\n  \"temecula\": \"temecul\",\n  \"temen\": \"tem\",\n  \"temeraria\": \"temerari\",\n  \"temerariamente\": \"temerari\",\n  \"temerarios\": \"temerari\",\n  \"temeroso\": \"temer\",\n  \"temía\": \"tem\",\n  \"temible\": \"temibl\",\n  \"temido\": \"tem\",\n  \"temiendo\": \"tem\",\n  \"temo\": \"tem\",\n  \"temor\": \"temor\",\n  \"temores\": \"temor\",\n  \"témpano\": \"tempan\",\n  \"temperamento\": \"temperament\",\n  \"temperatura\": \"temperatur\",\n  \"temperaturas\": \"temperatur\",\n  \"tempestad\": \"tempest\",\n  \"templado\": \"templ\",\n  \"templados\": \"templ\",\n  \"temple\": \"templ\",\n  \"templete\": \"templet\",\n  \"templo\": \"templ\",\n  \"templos\": \"templ\",\n  \"temporada\": \"tempor\",\n  \"temporadas\": \"tempor\",\n  \"temporal\": \"temporal\",\n  \"temporales\": \"temporal\",\n  \"temporalmente\": \"temporal\",\n  \"temprana\": \"tempran\",\n  \"tempranamente\": \"tempran\",\n  \"tempranero\": \"tempraner\",\n  \"temprano\": \"tempran\",\n  \"tempranos\": \"tempran\",\n  \"temulento\": \"temulent\",\n  \"tención\": \"tencion\",\n  \"tendajones\": \"tendajon\",\n  \"tendencia\": \"tendenci\",\n  \"tendencias\": \"tendenci\",\n  \"tenderá\": \"tend\",\n  \"tenderán\": \"tend\",\n  \"tendido\": \"tend\",\n  \"tendientes\": \"tendient\",\n  \"tendimos\": \"tend\",\n  \"tendió\": \"tend\",\n  \"tendón\": \"tendon\",\n  \"tendrá\": \"tendr\",\n  \"tendrán\": \"tendran\",\n  \"tendré\": \"tendr\",\n  \"tendremos\": \"tendr\",\n  \"tendría\": \"tendr\",\n  \"tendríamos\": \"tendr\",\n  \"tendrían\": \"tendr\",\n  \"tenemos\": \"ten\",\n  \"tenencia\": \"tenenci\",\n  \"tenencias\": \"tenenci\",\n  \"tener\": \"ten\",\n  \"tenerife\": \"tenerif\",\n  \"tenerlas\": \"ten\",\n  \"tenessee\": \"tenesse\",\n  \"tenga\": \"teng\",\n  \"tengamos\": \"teng\",\n  \"tengan\": \"teng\",\n  \"tengas\": \"teng\",\n  \"tengo\": \"teng\",\n  \"tenia\": \"teni\",\n  \"tenía\": \"ten\",\n  \"teniamos\": \"teni\",\n  \"teníamos\": \"ten\",\n  \"tenían\": \"ten\",\n  \"tenida\": \"ten\",\n  \"tenido\": \"ten\",\n  \"teniendo\": \"ten\",\n  \"teniente\": \"tenient\",\n  \"tenis\": \"tenis\",\n  \"tenistas\": \"tenist\",\n  \"tenístico\": \"tenist\",\n  \"tennessee\": \"tennesse\",\n  \"tenochtitlan\": \"tenochtitl\",\n  \"tenor\": \"tenor\",\n  \"tensa\": \"tens\",\n  \"tensión\": \"tension\",\n  \"tensiones\": \"tension\",\n  \"tentación\": \"tentacion\",\n  \"tentativa\": \"tentat\",\n  \"teo\": \"teo\",\n  \"teodora\": \"teodor\",\n  \"teodoro\": \"teodor\",\n  \"teología\": \"teolog\",\n  \"teólogos\": \"teolog\",\n  \"teoría\": \"teor\",\n  \"teorías\": \"teor\",\n  \"teórica\": \"teoric\",\n  \"teóricamente\": \"teoric\",\n  \"teóricas\": \"teoric\",\n  \"teóricos\": \"teoric\",\n  \"tepanco\": \"tepanc\",\n  \"tepatitlán\": \"tepatitlan\",\n  \"tepeaca\": \"tepeac\",\n  \"tepehuanes\": \"tepehuan\",\n  \"tepeyac\": \"tepeyac\",\n  \"tepic\": \"tepic\",\n  \"tepochcalli\": \"tepochcalli\",\n  \"tepozotlán\": \"tepozotlan\",\n  \"tequila\": \"tequil\",\n  \"tequisquiápan\": \"tequisquiap\",\n  \"terán\": \"teran\",\n  \"terapéuticas\": \"terapeut\",\n  \"terapéuticos\": \"terapeut\",\n  \"terapia\": \"terapi\",\n  \"terapias\": \"terapi\",\n  \"tercer\": \"terc\",\n  \"tercera\": \"tercer\",\n  \"terceras\": \"tercer\",\n  \"tercero\": \"tercer\",\n  \"terceros\": \"tercer\",\n  \"tercia\": \"terci\",\n  \"tercias\": \"terci\",\n  \"tercio\": \"terci\",\n  \"terciopelo\": \"terciopel\",\n  \"tercios\": \"terci\",\n  \"teresa\": \"teres\",\n  \"tergiversado\": \"tergivers\",\n  \"termes\": \"term\",\n  \"térmica\": \"termic\",\n  \"térmicas\": \"termic\",\n  \"termina\": \"termin\",\n  \"terminación\": \"termin\",\n  \"terminaciones\": \"termin\",\n  \"terminada\": \"termin\",\n  \"terminadas\": \"termin\",\n  \"terminado\": \"termin\",\n  \"terminados\": \"termin\",\n  \"terminal\": \"terminal\",\n  \"terminales\": \"terminal\",\n  \"terminamos\": \"termin\",\n  \"terminan\": \"termin\",\n  \"terminando\": \"termin\",\n  \"terminar\": \"termin\",\n  \"terminará\": \"termin\",\n  \"terminarán\": \"termin\",\n  \"terminaría\": \"termin\",\n  \"terminarían\": \"termin\",\n  \"terminarlo\": \"termin\",\n  \"terminaron\": \"termin\",\n  \"terminarse\": \"termin\",\n  \"terminator\": \"terminator\",\n  \"termine\": \"termin\",\n  \"terminemos\": \"termin\",\n  \"terminen\": \"termin\",\n  \"termino\": \"termin\",\n  \"término\": \"termin\",\n  \"terminó\": \"termin\",\n  \"terminología\": \"terminolog\",\n  \"términos\": \"termin\",\n  \"termómetro\": \"termometr\",\n  \"terna\": \"tern\",\n  \"ternura\": \"ternur\",\n  \"térprete\": \"terpret\",\n  \"terracota\": \"terracot\",\n  \"terranova\": \"terranov\",\n  \"terrateniente\": \"terratenient\",\n  \"terratenientes\": \"terratenient\",\n  \"terrazas\": \"terraz\",\n  \"terremoto\": \"terremot\",\n  \"terrenales\": \"terrenal\",\n  \"terreno\": \"terren\",\n  \"terrenos\": \"terren\",\n  \"terrestre\": \"terrestr\",\n  \"terrible\": \"terribl\",\n  \"terribles\": \"terribl\",\n  \"territorial\": \"territorial\",\n  \"territorio\": \"territori\",\n  \"territorios\": \"territori\",\n  \"terror\": \"terror\",\n  \"terrorismo\": \"terror\",\n  \"terrorista\": \"terror\",\n  \"terroristas\": \"terror\",\n  \"terry\": \"terry\",\n  \"tés\": \"tes\",\n  \"tesis\": \"tesis\",\n  \"tésis\": \"tesis\",\n  \"tesitura\": \"tesitur\",\n  \"tesorería\": \"tesor\",\n  \"tesorero\": \"tesorer\",\n  \"tesoreros\": \"tesorer\",\n  \"tesoro\": \"tesor\",\n  \"tesoros\": \"tesor\",\n  \"testigo\": \"testig\",\n  \"testigos\": \"testig\",\n  \"testimonial\": \"testimonial\",\n  \"testimoniar\": \"testimoni\",\n  \"testimonio\": \"testimoni\",\n  \"testimonios\": \"testimoni\",\n  \"testosterona\": \"testosteron\",\n  \"tetela\": \"tetel\",\n  \"tetramestres\": \"tetramestr\",\n  \"texana\": \"texan\",\n  \"texano\": \"texan\",\n  \"texanos\": \"texan\",\n  \"texas\": \"tex\",\n  \"texcoco\": \"texcoc\",\n  \"textil\": \"textil\",\n  \"textilera\": \"textiler\",\n  \"textiles\": \"textil\",\n  \"texto\": \"text\",\n  \"textos\": \"text\",\n  \"textualmente\": \"textual\",\n  \"texturas\": \"textur\",\n  \"tez\": \"tez\",\n  \"tezoyuca\": \"tezoyuc\",\n  \"the\": \"the\",\n  \"thelonius\": \"thelonius\",\n  \"theodore\": \"theodor\",\n  \"therese\": \"theres\",\n  \"thiner\": \"thin\",\n  \"things\": \"things\",\n  \"thomas\": \"thom\",\n  \"thompson\": \"thompson\",\n  \"thomson\": \"thomson\",\n  \"thorn\": \"thorn\",\n  \"three\": \"thre\",\n  \"thriller\": \"thrill\",\n  \"thurlow\": \"thurlow\",\n  \"thurman\": \"thurm\",\n  \"ti\": \"ti\",\n  \"tía\": \"tia\",\n  \"tianguis\": \"tianguis\",\n  \"tías\": \"tias\",\n  \"tiberio\": \"tiberi\",\n  \"tibet\": \"tibet\",\n  \"tibio\": \"tibi\",\n  \"tichavski\": \"tichavski\",\n  \"ticktin\": \"ticktin\",\n  \"tiempecito\": \"tiempecit\",\n  \"tiempo\": \"tiemp\",\n  \"tiempos\": \"tiemp\",\n  \"tienda\": \"tiend\",\n  \"tiendas\": \"tiend\",\n  \"tiende\": \"tiend\",\n  \"tienden\": \"tiend\",\n  \"tiene\": \"tien\",\n  \"tienen\": \"tien\",\n  \"tienes\": \"tien\",\n  \"tienta\": \"tient\",\n  \"tiernamente\": \"tiern\",\n  \"tierra\": \"tierr\",\n  \"tierras\": \"tierr\",\n  \"tigre\": \"tigr\",\n  \"tigres\": \"tigr\",\n  \"tigrillas\": \"tigrill\",\n  \"tigrillos\": \"tigrill\",\n  \"tijerina\": \"tijerin\",\n  \"tijuana\": \"tijuan\",\n  \"tijuanenses\": \"tijuanens\",\n  \"tildar\": \"tild\",\n  \"tim\": \"tim\",\n  \"timbiriche\": \"timbirich\",\n  \"timbre\": \"timbr\",\n  \"timbres\": \"timbr\",\n  \"time\": \"tim\",\n  \"times\": \"tim\",\n  \"tímida\": \"tim\",\n  \"tímidamente\": \"timid\",\n  \"tímido\": \"tim\",\n  \"timón\": \"timon\",\n  \"timonel\": \"timonel\",\n  \"timorato\": \"timorat\",\n  \"timoteo\": \"timote\",\n  \"timothy\": \"timothy\",\n  \"tino\": \"tin\",\n  \"tinta\": \"tint\",\n  \"tintas\": \"tint\",\n  \"tinto\": \"tint\",\n  \"tío\": \"tio\",\n  \"tíos\": \"tios\",\n  \"tiosulfato\": \"tiosulfat\",\n  \"típicamente\": \"tipic\",\n  \"típico\": \"tipic\",\n  \"típicos\": \"tipic\",\n  \"tipifica\": \"tipif\",\n  \"tipo\": \"tip\",\n  \"tipos\": \"tip\",\n  \"tips\": \"tips\",\n  \"tira\": \"tir\",\n  \"tirada\": \"tir\",\n  \"tiradero\": \"tirader\",\n  \"tiraderos\": \"tirader\",\n  \"tirado\": \"tir\",\n  \"tirados\": \"tir\",\n  \"tirando\": \"tir\",\n  \"tiránica\": \"tiran\",\n  \"tirantes\": \"tirant\",\n  \"tirar\": \"tir\",\n  \"tirarán\": \"tir\",\n  \"tirarlos\": \"tir\",\n  \"tiras\": \"tir\",\n  \"tire\": \"tir\",\n  \"tiro\": \"tir\",\n  \"tiró\": \"tir\",\n  \"tiroideas\": \"tiroid\",\n  \"tiroides\": \"tiroid\",\n  \"tiros\": \"tir\",\n  \"tiroteo\": \"tirote\",\n  \"tiroteos\": \"tirote\",\n  \"tirzo\": \"tirz\",\n  \"tisa\": \"tis\",\n  \"titanic\": \"titanic\",\n  \"titanica\": \"titan\",\n  \"titánica\": \"titan\",\n  \"titanio\": \"titani\",\n  \"titipuchal\": \"titipuchal\",\n  \"tito\": \"tit\",\n  \"titula\": \"titul\",\n  \"titulada\": \"titul\",\n  \"titulado\": \"titul\",\n  \"titular\": \"titul\",\n  \"titulares\": \"titular\",\n  \"titularidad\": \"titular\",\n  \"título\": \"titul\",\n  \"tituló\": \"titul\",\n  \"títulos\": \"titul\",\n  \"tixkokob\": \"tixkokob\",\n  \"tlacamécatl\": \"tlacamecatl\",\n  \"tlacotepec\": \"tlacotepec\",\n  \"tlahuapán\": \"tlahuapan\",\n  \"tlalchapa\": \"tlalchap\",\n  \"tlalpan\": \"tlalp\",\n  \"tlaltenango\": \"tlaltenang\",\n  \"tlamacazques\": \"tlamacazqu\",\n  \"tlatelolco\": \"tlatelolc\",\n  \"tlatlahuquitepec\": \"tlatlahuquitepec\",\n  \"tlatoani\": \"tlatoani\",\n  \"tlatoanis\": \"tlatoanis\",\n  \"tlaxcala\": \"tlaxcal\",\n  \"tlaxcalteca\": \"tlaxcaltec\",\n  \"tlaxcaltecas\": \"tlaxcaltec\",\n  \"tlc\": \"tlc\",\n  \"to\": \"to\",\n  \"tobías\": \"tob\",\n  \"tobillo\": \"tobill\",\n  \"toca\": \"toc\",\n  \"tocaba\": \"toc\",\n  \"tocaban\": \"toc\",\n  \"tocado\": \"toc\",\n  \"tocan\": \"toc\",\n  \"tocar\": \"toc\",\n  \"tocará\": \"toc\",\n  \"tocarán\": \"toc\",\n  \"tocarle\": \"toc\",\n  \"tocco\": \"tocc\",\n  \"tocó\": \"toc\",\n  \"toda\": \"tod\",\n  \"todas\": \"tod\",\n  \"todavía\": \"todav\",\n  \"todd\": \"todd\",\n  \"todo\": \"tod\",\n  \"todos\": \"tod\",\n  \"toilette\": \"toilett\",\n  \"toji\": \"toji\",\n  \"tokio\": \"toki\",\n  \"toledo\": \"toled\",\n  \"tolerada\": \"toler\",\n  \"tolerancia\": \"toler\",\n  \"tolerando\": \"toler\",\n  \"tolerante\": \"toler\",\n  \"tolerantes\": \"toler\",\n  \"tolerarse\": \"toler\",\n  \"toletero\": \"toleter\",\n  \"toluca\": \"toluc\",\n  \"tom\": \"tom\",\n  \"toma\": \"tom\",\n  \"tomaba\": \"tom\",\n  \"tomaban\": \"tom\",\n  \"tomada\": \"tom\",\n  \"tomadas\": \"tom\",\n  \"tomado\": \"tom\",\n  \"tomadores\": \"tomador\",\n  \"tomados\": \"tom\",\n  \"toman\": \"tom\",\n  \"tomando\": \"tom\",\n  \"tomándola\": \"tom\",\n  \"tomar\": \"tom\",\n  \"tomara\": \"tom\",\n  \"tomará\": \"tom\",\n  \"tomaran\": \"tom\",\n  \"tomarán\": \"tom\",\n  \"tomaría\": \"tom\",\n  \"tomarían\": \"tom\",\n  \"tomarla\": \"tom\",\n  \"tomarle\": \"tom\",\n  \"tomarlo\": \"tom\",\n  \"tomarnos\": \"tom\",\n  \"tomaron\": \"tom\",\n  \"tomarse\": \"tom\",\n  \"tomas\": \"tom\",\n  \"tomás\": \"tomas\",\n  \"tomate\": \"tomat\",\n  \"tome\": \"tom\",\n  \"tomé\": \"tom\",\n  \"tomemos\": \"tom\",\n  \"tomen\": \"tom\",\n  \"tómese\": \"tomes\",\n  \"tomlinson\": \"tomlinson\",\n  \"tomo\": \"tom\",\n  \"tomó\": \"tom\",\n  \"tona\": \"ton\",\n  \"tonada\": \"ton\",\n  \"tonalidades\": \"tonal\",\n  \"tonelada\": \"tonel\",\n  \"toneladas\": \"tonel\",\n  \"tonelaje\": \"tonelaj\",\n  \"tónica\": \"tonic\",\n  \"tónicos\": \"tonic\",\n  \"toninho\": \"toninh\",\n  \"tono\": \"ton\",\n  \"toño\": \"toñ\",\n  \"tontería\": \"tont\",\n  \"tonto\": \"tont\",\n  \"tontos\": \"tont\",\n  \"tony\": \"tony\",\n  \"toole\": \"tool\",\n  \"topa\": \"top\",\n  \"toparon\": \"top\",\n  \"toparse\": \"top\",\n  \"topaz\": \"topaz\",\n  \"tope\": \"top\",\n  \"topes\": \"top\",\n  \"topete\": \"topet\",\n  \"topeteaba\": \"topet\",\n  \"topia\": \"topi\",\n  \"tópico\": \"topic\",\n  \"tópicos\": \"topic\",\n  \"topo\": \"top\",\n  \"topografía\": \"topograf\",\n  \"topologías\": \"topolog\",\n  \"toque\": \"toqu\",\n  \"toques\": \"toqu\",\n  \"toqui\": \"toqui\",\n  \"torá\": \"tor\",\n  \"tórax\": \"torax\",\n  \"torcer\": \"torc\",\n  \"toreado\": \"tor\",\n  \"toreados\": \"tor\",\n  \"toreándolo\": \"tor\",\n  \"torear\": \"tor\",\n  \"toreara\": \"tor\",\n  \"torearlo\": \"tor\",\n  \"toreó\": \"tore\",\n  \"torero\": \"torer\",\n  \"toreros\": \"torer\",\n  \"torio\": \"tori\",\n  \"tormenta\": \"torment\",\n  \"tormentas\": \"torment\",\n  \"tornado\": \"torn\",\n  \"tornados\": \"torn\",\n  \"tornar\": \"torn\",\n  \"tornen\": \"torn\",\n  \"torneo\": \"torne\",\n  \"torneos\": \"torne\",\n  \"tornillo\": \"tornill\",\n  \"tornillos\": \"tornill\",\n  \"torniquete\": \"torniquet\",\n  \"torno\": \"torn\",\n  \"toro\": \"tor\",\n  \"toronto\": \"toront\",\n  \"toros\": \"tor\",\n  \"torpedearon\": \"torped\",\n  \"torpeza\": \"torpez\",\n  \"torrado\": \"torr\",\n  \"torralba\": \"torralb\",\n  \"torre\": \"torr\",\n  \"torrencial\": \"torrencial\",\n  \"torrenciales\": \"torrencial\",\n  \"torrente\": \"torrent\",\n  \"torreon\": \"torreon\",\n  \"torreón\": \"torreon\",\n  \"torres\": \"torr\",\n  \"torrescano\": \"torrescan\",\n  \"torresmochas\": \"torresmoch\",\n  \"torricelli\": \"torricelli\",\n  \"tortícolis\": \"torticolis\",\n  \"tortilla\": \"tortill\",\n  \"tortillas\": \"tortill\",\n  \"tortillero\": \"tortiller\",\n  \"tortuga\": \"tortug\",\n  \"tortugueras\": \"tortuguer\",\n  \"tortuguismo\": \"tortugu\",\n  \"torturados\": \"tortur\",\n  \"torturaron\": \"tortur\",\n  \"torturas\": \"tortur\",\n  \"torturoso\": \"tortur\",\n  \"tos\": \"tos\",\n  \"toscano\": \"toscan\",\n  \"tosferina\": \"tosferin\",\n  \"tostado\": \"tost\",\n  \"tota\": \"tot\",\n  \"total\": \"total\",\n  \"totales\": \"total\",\n  \"totalidad\": \"total\",\n  \"totalizó\": \"totaliz\",\n  \"totalmente\": \"total\",\n  \"totopos\": \"totop\",\n  \"tottenham\": \"tottenham\",\n  \"touché\": \"touch\",\n  \"tour\": \"tour\",\n  \"tovar\": \"tov\",\n  \"tóxica\": \"toxic\",\n  \"tóxicas\": \"toxic\",\n  \"tóxicos\": \"toxic\",\n  \"toyota\": \"toyot\",\n  \"tpc\": \"tpc\",\n  \"tqm\": \"tqm\",\n  \"trabado\": \"trab\",\n  \"trabaja\": \"trabaj\",\n  \"trabajaba\": \"trabaj\",\n  \"trabajaban\": \"trabaj\",\n  \"trabajada\": \"trabaj\",\n  \"trabajado\": \"trabaj\",\n  \"trabajador\": \"trabaj\",\n  \"trabajadora\": \"trabaj\",\n  \"trabajadoras\": \"trabaj\",\n  \"trabajadores\": \"trabaj\",\n  \"trabajamos\": \"trabaj\",\n  \"trabajan\": \"trabaj\",\n  \"trabajando\": \"trabaj\",\n  \"trabajar\": \"trabaj\",\n  \"trabajara\": \"trabaj\",\n  \"trabajará\": \"trabaj\",\n  \"trabajarán\": \"trabaj\",\n  \"trabajaron\": \"trabaj\",\n  \"trabajemos\": \"trabaj\",\n  \"trabajen\": \"trabaj\",\n  \"trabajo\": \"trabaj\",\n  \"trabajó\": \"trabaj\",\n  \"trabajos\": \"trabaj\",\n  \"trabas\": \"trab\",\n  \"trabó\": \"trab\",\n  \"tracción\": \"traccion\",\n  \"tracen\": \"trac\",\n  \"track\": \"track\",\n  \"tractor\": \"tractor\",\n  \"tradición\": \"tradicion\",\n  \"tradicional\": \"tradicional\",\n  \"tradicionales\": \"tradicional\",\n  \"tradicionalmente\": \"tradicional\",\n  \"tradiciones\": \"tradicion\",\n  \"traducción\": \"traduccion\",\n  \"traducciones\": \"traduccion\",\n  \"traduce\": \"traduc\",\n  \"traducida\": \"traduc\",\n  \"traducido\": \"traduc\",\n  \"traducidos\": \"traduc\",\n  \"traducir\": \"traduc\",\n  \"traduciría\": \"traduc\",\n  \"traducirse\": \"traduc\",\n  \"tradujo\": \"traduj\",\n  \"trae\": \"tra\",\n  \"traemos\": \"tra\",\n  \"traen\": \"tra\",\n  \"traer\": \"tra\",\n  \"traerá\": \"tra\",\n  \"traerán\": \"tra\",\n  \"traeré\": \"tra\",\n  \"traería\": \"tra\",\n  \"traerla\": \"tra\",\n  \"traernos\": \"tra\",\n  \"traes\": \"tra\",\n  \"traficante\": \"trafic\",\n  \"trafico\": \"trafic\",\n  \"tráfico\": \"trafic\",\n  \"tragar\": \"trag\",\n  \"tragarse\": \"trag\",\n  \"tragedia\": \"tragedi\",\n  \"trágica\": \"tragic\",\n  \"trágico\": \"tragic\",\n  \"tragó\": \"trag\",\n  \"tragos\": \"trag\",\n  \"trague\": \"trag\",\n  \"traía\": \"tra\",\n  \"traían\": \"tra\",\n  \"traición\": \"traicion\",\n  \"traicionado\": \"traicion\",\n  \"traicionados\": \"traicion\",\n  \"traidor\": \"traidor\",\n  \"traídos\": \"traid\",\n  \"traiga\": \"traig\",\n  \"traigan\": \"traig\",\n  \"traigo\": \"traig\",\n  \"trailer\": \"trail\",\n  \"trailero\": \"trailer\",\n  \"traileros\": \"trailer\",\n  \"trailers\": \"trailers\",\n  \"traje\": \"traj\",\n  \"trajeron\": \"trajeron\",\n  \"trajes\": \"traj\",\n  \"trajo\": \"traj\",\n  \"trama\": \"tram\",\n  \"tramitación\": \"tramit\",\n  \"tramitando\": \"tramit\",\n  \"tramitar\": \"tramit\",\n  \"trámite\": \"tramit\",\n  \"trámites\": \"tramit\",\n  \"tramitó\": \"tramit\",\n  \"tramitología\": \"tramitolog\",\n  \"tramo\": \"tram\",\n  \"tramos\": \"tram\",\n  \"trampa\": \"tramp\",\n  \"trampas\": \"tramp\",\n  \"tramposo\": \"trampos\",\n  \"trancas\": \"tranc\",\n  \"trancazo\": \"trancaz\",\n  \"trance\": \"tranc\",\n  \"tranquila\": \"tranquil\",\n  \"tranquilamente\": \"tranquil\",\n  \"tranquilas\": \"tranquil\",\n  \"tranquilidad\": \"tranquil\",\n  \"tranquilizara\": \"tranquiliz\",\n  \"tranquilizarlo\": \"tranquiliz\",\n  \"tranquilizó\": \"tranquiliz\",\n  \"tranquilo\": \"tranquil\",\n  \"tranquilos\": \"tranquil\",\n  \"trans\": \"trans\",\n  \"transa\": \"trans\",\n  \"transacción\": \"transaccion\",\n  \"transacciones\": \"transaccion\",\n  \"transamos\": \"trans\",\n  \"transborda\": \"transbord\",\n  \"transbordador\": \"transbord\",\n  \"transbordadores\": \"transbord\",\n  \"transbordar\": \"transbord\",\n  \"transbordo\": \"transbord\",\n  \"transcribe\": \"transcrib\",\n  \"transcurra\": \"transcurr\",\n  \"transcurrido\": \"transcurr\",\n  \"transcurridos\": \"transcurr\",\n  \"transcurriendo\": \"transcurr\",\n  \"transcurrieron\": \"transcurr\",\n  \"transcurrir\": \"transcurr\",\n  \"transcurso\": \"transcurs\",\n  \"transero\": \"transer\",\n  \"transeros\": \"transer\",\n  \"transeúnte\": \"transeunt\",\n  \"transeúntes\": \"transeunt\",\n  \"transexual\": \"transexual\",\n  \"transexuales\": \"transexual\",\n  \"transferencia\": \"transferent\",\n  \"transferencias\": \"transferent\",\n  \"transferir\": \"transfer\",\n  \"transfieren\": \"transfier\",\n  \"transfirió\": \"transfir\",\n  \"transformación\": \"transform\",\n  \"transformaciones\": \"transform\",\n  \"transformado\": \"transform\",\n  \"transformador\": \"transform\",\n  \"transforman\": \"transform\",\n  \"transformando\": \"transform\",\n  \"transformar\": \"transform\",\n  \"transformaren\": \"transformar\",\n  \"transformaría\": \"transform\",\n  \"transformaron\": \"transform\",\n  \"transformarse\": \"transform\",\n  \"transfronterizas\": \"transfronteriz\",\n  \"transfusiones\": \"transfusion\",\n  \"transición\": \"transicion\",\n  \"transija\": \"transij\",\n  \"transita\": \"transit\",\n  \"transitaban\": \"transit\",\n  \"transitada\": \"transit\",\n  \"transitado\": \"transit\",\n  \"transitados\": \"transit\",\n  \"transitar\": \"transit\",\n  \"transitará\": \"transit\",\n  \"transitarán\": \"transit\",\n  \"tránsito\": \"transit\",\n  \"transitó\": \"transit\",\n  \"transitorio\": \"transitori\",\n  \"transmisión\": \"transmision\",\n  \"transmisiones\": \"transmision\",\n  \"transmita\": \"transmit\",\n  \"transmitan\": \"transmit\",\n  \"transmite\": \"transmit\",\n  \"transmiten\": \"transmit\",\n  \"transmitida\": \"transmit\",\n  \"transmitido\": \"transmit\",\n  \"transmitieran\": \"transmit\",\n  \"transmitieron\": \"transmit\",\n  \"transmitir\": \"transmit\",\n  \"transmitirá\": \"transmit\",\n  \"transmitirán\": \"transmit\",\n  \"transnacional\": \"transnacional\",\n  \"transnacionales\": \"transnacional\",\n  \"transparencia\": \"transparent\",\n  \"transparentar\": \"transparent\",\n  \"transparentarse\": \"transparent\",\n  \"transparente\": \"transparent\",\n  \"transparentes\": \"transparent\",\n  \"transpeninsular\": \"transpeninsul\",\n  \"transport\": \"transport\",\n  \"transporta\": \"transport\",\n  \"transportaba\": \"transport\",\n  \"transportaban\": \"transport\",\n  \"transportación\": \"transport\",\n  \"transportaciones\": \"transport\",\n  \"transportada\": \"transport\",\n  \"transportadoras\": \"transport\",\n  \"transportan\": \"transport\",\n  \"transportando\": \"transport\",\n  \"transportar\": \"transport\",\n  \"transportaría\": \"transport\",\n  \"transportarse\": \"transport\",\n  \"transporte\": \"transport\",\n  \"transportes\": \"transport\",\n  \"transportista\": \"transport\",\n  \"transportistas\": \"transport\",\n  \"transversales\": \"transversal\",\n  \"tranvías\": \"tranv\",\n  \"trapeadores\": \"trapeador\",\n  \"trapeas\": \"trap\",\n  \"tras\": \"tras\",\n  \"trasatlántico\": \"trasatlant\",\n  \"trascendencia\": \"trascendent\",\n  \"trascendental\": \"trascendental\",\n  \"trascendentales\": \"trascendental\",\n  \"trascender\": \"trascend\",\n  \"trasera\": \"traser\",\n  \"traseras\": \"traser\",\n  \"trasero\": \"traser\",\n  \"traseros\": \"traser\",\n  \"trasfondo\": \"trasfond\",\n  \"trasfondos\": \"trasfond\",\n  \"traslación\": \"traslacion\",\n  \"traslada\": \"trasl\",\n  \"trasladaba\": \"traslad\",\n  \"trasladado\": \"traslad\",\n  \"trasladados\": \"traslad\",\n  \"trasladar\": \"traslad\",\n  \"trasladarán\": \"traslad\",\n  \"trasladarla\": \"traslad\",\n  \"trasladarse\": \"traslad\",\n  \"trasládese\": \"traslades\",\n  \"traslado\": \"trasl\",\n  \"trasladó\": \"traslad\",\n  \"traslados\": \"trasl\",\n  \"trasmisión\": \"trasmision\",\n  \"trasmite\": \"trasmit\",\n  \"trasmitirlo\": \"trasmit\",\n  \"trasnacional\": \"trasnacional\",\n  \"trasnacionales\": \"trasnacional\",\n  \"trasnacionalización\": \"trasnacionaliz\",\n  \"trasplantados\": \"trasplant\",\n  \"trasplante\": \"trasplant\",\n  \"trasplantes\": \"trasplant\",\n  \"trasporte\": \"trasport\",\n  \"traste\": \"trast\",\n  \"trasteo\": \"traste\",\n  \"trastoca\": \"trastoc\",\n  \"trastocan\": \"trastoc\",\n  \"trastorna\": \"trastorn\",\n  \"trastornó\": \"trastorn\",\n  \"trastornos\": \"trastorn\",\n  \"trata\": \"trat\",\n  \"trataba\": \"trat\",\n  \"trataban\": \"trat\",\n  \"tratada\": \"trat\",\n  \"tratadas\": \"trat\",\n  \"tratado\": \"trat\",\n  \"tratadoras\": \"tratador\",\n  \"tratados\": \"trat\",\n  \"tratamiento\": \"tratamient\",\n  \"tratamientos\": \"tratamient\",\n  \"tratamos\": \"trat\",\n  \"tratan\": \"trat\",\n  \"tratando\": \"trat\",\n  \"tratándose\": \"trat\",\n  \"tratar\": \"trat\",\n  \"tratara\": \"trat\",\n  \"tratará\": \"trat\",\n  \"tratarán\": \"trat\",\n  \"trataremos\": \"trat\",\n  \"trataría\": \"trat\",\n  \"trataron\": \"trat\",\n  \"tratarse\": \"trat\",\n  \"tratas\": \"trat\",\n  \"trate\": \"trat\",\n  \"traté\": \"trat\",\n  \"traten\": \"trat\",\n  \"trato\": \"trat\",\n  \"trató\": \"trat\",\n  \"tratos\": \"trat\",\n  \"traumatismo\": \"traumat\",\n  \"traumatología\": \"traumatolog\",\n  \"través\": \"traves\",\n  \"travesaño\": \"travesañ\",\n  \"travieso\": \"travies\",\n  \"travis\": \"travis\",\n  \"trayecto\": \"trayect\",\n  \"trayectoria\": \"trayectori\",\n  \"trayendo\": \"trayend\",\n  \"trazadas\": \"traz\",\n  \"trazado\": \"traz\",\n  \"trazo\": \"traz\",\n  \"trazó\": \"traz\",\n  \"trazos\": \"traz\",\n  \"trece\": \"trec\",\n  \"trecho\": \"trech\",\n  \"trechos\": \"trech\",\n  \"tregua\": \"tregu\",\n  \"treinta\": \"treint\",\n  \"trejo\": \"trej\",\n  \"tremenda\": \"tremend\",\n  \"tremendamente\": \"tremend\",\n  \"tremendas\": \"tremend\",\n  \"tremendo\": \"tremend\",\n  \"tremendos\": \"tremend\",\n  \"tren\": \"tren\",\n  \"trenes\": \"tren\",\n  \"trenza\": \"trenz\",\n  \"trepó\": \"trep\",\n  \"tres\": \"tres\",\n  \"tress\": \"tress\",\n  \"treta\": \"tret\",\n  \"treto\": \"tret\",\n  \"trevi\": \"trevi\",\n  \"treviñada\": \"treviñ\",\n  \"treviñista\": \"treviñ\",\n  \"treviño\": \"treviñ\",\n  \"tri\": \"tri\",\n  \"triana\": \"trian\",\n  \"triángulo\": \"triangul\",\n  \"tribuna\": \"tribun\",\n  \"tribunal\": \"tribunal\",\n  \"tribunales\": \"tribunal\",\n  \"tribunas\": \"tribun\",\n  \"tributarias\": \"tributari\",\n  \"tributario\": \"tributari\",\n  \"tributarle\": \"tribut\",\n  \"tributos\": \"tribut\",\n  \"tricampeón\": \"tricampeon\",\n  \"tricolor\": \"tricolor\",\n  \"tricolores\": \"tricolor\",\n  \"tridimensional\": \"tridimensional\",\n  \"trigésimo\": \"trigesim\",\n  \"trigo\": \"trig\",\n  \"trigon\": \"trigon\",\n  \"trilateral\": \"trilateral\",\n  \"trillado\": \"trill\",\n  \"trimestre\": \"trimestr\",\n  \"trinchera\": \"trincher\",\n  \"trinidad\": \"trinid\",\n  \"trío\": \"tri\",\n  \"tríos\": \"tri\",\n  \"tripa\": \"trip\",\n  \"tripartita\": \"tripartit\",\n  \"triple\": \"tripl\",\n  \"tripleta\": \"triplet\",\n  \"triplicaron\": \"triplic\",\n  \"tripulación\": \"tripul\",\n  \"tripulado\": \"tripul\",\n  \"tripulados\": \"tripul\",\n  \"tripulando\": \"tripul\",\n  \"tripulantes\": \"tripul\",\n  \"tripular\": \"tripul\",\n  \"tripulará\": \"tripul\",\n  \"triquiñuela\": \"triquiñuel\",\n  \"tris\": \"tris\",\n  \"tristán\": \"tristan\",\n  \"triste\": \"trist\",\n  \"tristemente\": \"tristement\",\n  \"tristes\": \"trist\",\n  \"tristeza\": \"tristez\",\n  \"tritt\": \"tritt\",\n  \"triunfa\": \"triunf\",\n  \"triunfado\": \"triunf\",\n  \"triunfador\": \"triunfador\",\n  \"triunfadora\": \"triunfador\",\n  \"triunfadores\": \"triunfador\",\n  \"triunfal\": \"triunfal\",\n  \"triunfalismo\": \"triunfal\",\n  \"triunfalista\": \"triunfal\",\n  \"triunfalmente\": \"triunfal\",\n  \"triunfantes\": \"triunfant\",\n  \"triunfar\": \"triunf\",\n  \"triunfaría\": \"triunf\",\n  \"triunfaron\": \"triunf\",\n  \"triunfo\": \"triunf\",\n  \"triunfos\": \"triunf\",\n  \"trivial\": \"trivial\",\n  \"trizados\": \"triz\",\n  \"trofeo\": \"trofe\",\n  \"trofeos\": \"trofe\",\n  \"trolebús\": \"trolebus\",\n  \"trompeta\": \"trompet\",\n  \"trompetero\": \"trompeter\",\n  \"trompetista\": \"trompet\",\n  \"trompetística\": \"trompetist\",\n  \"troncales\": \"troncal\",\n  \"tronco\": \"tronc\",\n  \"troncos\": \"tronc\",\n  \"trono\": \"tron\",\n  \"tropa\": \"trop\",\n  \"tropas\": \"trop\",\n  \"tropezar\": \"tropez\",\n  \"tropezón\": \"tropezon\",\n  \"tropicosas\": \"tropic\",\n  \"tropiezos\": \"tropiez\",\n  \"trota\": \"trot\",\n  \"trotamundos\": \"trotamund\",\n  \"trotando\": \"trot\",\n  \"trotar\": \"trot\",\n  \"trote\": \"trot\",\n  \"trousseau\": \"trousseau\",\n  \"trout\": \"trout\",\n  \"troy\": \"troy\",\n  \"troyanos\": \"troyan\",\n  \"truenan\": \"truen\",\n  \"truene\": \"truen\",\n  \"trujillo\": \"trujill\",\n  \"truman\": \"trum\",\n  \"trump\": \"trump\",\n  \"trust\": \"trust\",\n  \"tryon\": \"tryon\",\n  \"tsi\": \"tsi\",\n  \"tsmbién\": \"tsmbien\",\n  \"tsubame\": \"tsubam\",\n  \"tsuru\": \"tsuru\",\n  \"tu\": \"tu\",\n  \"tú\": \"tu\",\n  \"tubacero\": \"tubacer\",\n  \"tubería\": \"tub\",\n  \"tuberías\": \"tub\",\n  \"tubo\": \"tub\",\n  \"tubos\": \"tub\",\n  \"tuercas\": \"tuerc\",\n  \"tuerto\": \"tuert\",\n  \"tulancingo\": \"tulancing\",\n  \"tules\": \"tul\",\n  \"tulin\": \"tulin\",\n  \"tull\": \"tull\",\n  \"tulle\": \"tull\",\n  \"tum\": \"tum\",\n  \"tumba\": \"tumb\",\n  \"tumbado\": \"tumb\",\n  \"tumbas\": \"tumb\",\n  \"tumor\": \"tumor\",\n  \"tumoral\": \"tumoral\",\n  \"tumores\": \"tumor\",\n  \"tumultuosa\": \"tumultu\",\n  \"túnel\": \"tunel\",\n  \"túneles\": \"tunel\",\n  \"tunguska\": \"tungusk\",\n  \"túnicas\": \"tunic\",\n  \"tupac\": \"tupac\",\n  \"tupamaros\": \"tupamar\",\n  \"turbias\": \"turbi\",\n  \"turbina\": \"turbin\",\n  \"turbo\": \"turb\",\n  \"turcos\": \"turc\",\n  \"turismo\": \"turism\",\n  \"turista\": \"turist\",\n  \"turistas\": \"turist\",\n  \"turística\": \"turist\",\n  \"turísticas\": \"turist\",\n  \"turistico\": \"turist\",\n  \"turístico\": \"turist\",\n  \"turísticos\": \"turist\",\n  \"turna\": \"turn\",\n  \"turnbull\": \"turnbull\",\n  \"turneriano\": \"turnerian\",\n  \"turno\": \"turn\",\n  \"turnó\": \"turn\",\n  \"turnos\": \"turn\",\n  \"turquía\": \"turqu\",\n  \"tus\": \"tus\",\n  \"tutelar\": \"tutel\",\n  \"tuve\": \"tuv\",\n  \"tuviera\": \"tuv\",\n  \"tuvieran\": \"tuv\",\n  \"tuvieron\": \"tuv\",\n  \"tuvimos\": \"tuv\",\n  \"tuvo\": \"tuv\",\n  \"tuxpan\": \"tuxp\",\n  \"tuxtla\": \"tuxtl\",\n  \"tuya\": \"tuy\",\n  \"tuyo\": \"tuy\",\n  \"tuzo\": \"tuz\",\n  \"tuzos\": \"tuz\",\n  \"tv\": \"tv\",\n  \"tyson\": \"tyson\",\n  \"u\": \"u\",\n  \"uag\": \"uag\",\n  \"uane\": \"uan\",\n  \"uanl\": \"uanl\",\n  \"uap\": \"uap\",\n  \"uat\": \"uat\",\n  \"ubica\": \"ubic\",\n  \"ubicaba\": \"ubic\",\n  \"ubicaban\": \"ubic\",\n  \"ubicación\": \"ubic\",\n  \"ubicada\": \"ubic\",\n  \"ubicadas\": \"ubic\",\n  \"ubicado\": \"ubic\",\n  \"ubicados\": \"ubic\",\n  \"ubican\": \"ubic\",\n  \"ubicando\": \"ubic\",\n  \"ubicándolo\": \"ubic\",\n  \"ubicar\": \"ubic\",\n  \"ubicara\": \"ubic\",\n  \"ubicará\": \"ubic\",\n  \"ubicarían\": \"ubic\",\n  \"ubicarlos\": \"ubic\",\n  \"ubicarnos\": \"ubic\",\n  \"ubicaron\": \"ubic\",\n  \"ubicarse\": \"ubic\",\n  \"ubicársele\": \"ubicarsel\",\n  \"ubicó\": \"ubic\",\n  \"ucalli\": \"ucalli\",\n  \"ucayali\": \"ucayali\",\n  \"ucimme\": \"ucimm\",\n  \"ucrania\": \"ucrani\",\n  \"ucraniano\": \"ucranian\",\n  \"udeg\": \"udeg\",\n  \"udem\": \"udem\",\n  \"udinese\": \"udines\",\n  \"ugalde\": \"ugald\",\n  \"ugarte\": \"ugart\",\n  \"uglilia\": \"uglili\",\n  \"ugocp\": \"ugocp\",\n  \"uhagon\": \"uhagon\",\n  \"uhf\": \"uhf\",\n  \"úlcera\": \"ulcer\",\n  \"ulises\": \"ulis\",\n  \"ullami\": \"ullami\",\n  \"ulloa\": \"ullo\",\n  \"última\": \"ultim\",\n  \"últimamente\": \"ultim\",\n  \"últimas\": \"ultim\",\n  \"ultimo\": \"ultim\",\n  \"último\": \"ultim\",\n  \"ultimos\": \"ultim\",\n  \"últimos\": \"ultim\",\n  \"ultra\": \"ultra\",\n  \"ultrajó\": \"ultraj\",\n  \"ultranza\": \"ultranz\",\n  \"ultravioleta\": \"ultraviolet\",\n  \"umbral\": \"umbral\",\n  \"un\": \"un\",\n  \"una\": \"una\",\n  \"unacolumna\": \"unacolumn\",\n  \"unam\": \"unam\",\n  \"unamitas\": \"unamit\",\n  \"unan\": \"unan\",\n  \"unánime\": \"unanim\",\n  \"unánimemente\": \"unanim\",\n  \"unanimidad\": \"unanim\",\n  \"unas\": \"unas\",\n  \"uñas\": \"uñas\",\n  \"undiano\": \"undian\",\n  \"une\": \"une\",\n  \"unesco\": \"unesc\",\n  \"unforgettable\": \"unforgett\",\n  \"unía\": \"uni\",\n  \"única\": \"unic\",\n  \"unicamente\": \"unic\",\n  \"únicamente\": \"unic\",\n  \"únicas\": \"unic\",\n  \"unico\": \"unic\",\n  \"único\": \"unic\",\n  \"únicos\": \"unic\",\n  \"unidad\": \"unid\",\n  \"unidades\": \"unidad\",\n  \"unidas\": \"unid\",\n  \"unidimensional\": \"unidimensional\",\n  \"unido\": \"unid\",\n  \"unidos\": \"unid\",\n  \"unieron\": \"unieron\",\n  \"unifamiliares\": \"unifamiliar\",\n  \"unificación\": \"unif\",\n  \"unificadas\": \"unific\",\n  \"unificado\": \"unific\",\n  \"unificar\": \"unific\",\n  \"uniformada\": \"uniform\",\n  \"uniformado\": \"uniform\",\n  \"uniformados\": \"uniform\",\n  \"uniformar\": \"uniform\",\n  \"uniforme\": \"uniform\",\n  \"uniformes\": \"uniform\",\n  \"unilateral\": \"unilateral\",\n  \"unilaterales\": \"unilateral\",\n  \"unilateralmente\": \"unilateral\",\n  \"unimóvil\": \"unimovil\",\n  \"unió\": \"uni\",\n  \"unión\": \"union\",\n  \"uniones\": \"union\",\n  \"unir\": \"unir\",\n  \"unirá\": \"unir\",\n  \"uniría\": \"unir\",\n  \"unirse\": \"unirs\",\n  \"unisex\": \"unisex\",\n  \"unitardos\": \"unitard\",\n  \"unitario\": \"unitari\",\n  \"united\": \"unit\",\n  \"univ\": \"univ\",\n  \"universal\": \"universal\",\n  \"universales\": \"universal\",\n  \"universalmente\": \"universal\",\n  \"universidad\": \"univers\",\n  \"universidades\": \"univers\",\n  \"universitaria\": \"universitari\",\n  \"universitarias\": \"universitari\",\n  \"universitario\": \"universitari\",\n  \"universitarios\": \"universitari\",\n  \"university\": \"university\",\n  \"universo\": \"univers\",\n  \"unix\": \"unix\",\n  \"uno\": \"uno\",\n  \"unos\": \"unos\",\n  \"unplugged\": \"unplugg\",\n  \"unzueta\": \"unzuet\",\n  \"up\": \"up\",\n  \"upi\": \"upi\",\n  \"ur\": \"ur\",\n  \"urbana\": \"urban\",\n  \"urbanas\": \"urban\",\n  \"urbanistas\": \"urban\",\n  \"urbanístico\": \"urbanist\",\n  \"urbanísticos\": \"urbanist\",\n  \"urbano\": \"urban\",\n  \"urbanos\": \"urban\",\n  \"urbieta\": \"urbiet\",\n  \"urdió\": \"urdi\",\n  \"urge\": \"urge\",\n  \"urgen\": \"urgen\",\n  \"urgencia\": \"urgenci\",\n  \"urgencias\": \"urgenci\",\n  \"urgente\": \"urgent\",\n  \"urgentes\": \"urgent\",\n  \"urgida\": \"urgid\",\n  \"uribe\": \"urib\",\n  \"urista\": \"urist\",\n  \"urna\": \"urna\",\n  \"urnas\": \"urnas\",\n  \"uro\": \"uro\",\n  \"urrea\": \"urre\",\n  \"urss\": \"urss\",\n  \"ursula\": \"ursul\",\n  \"urtiz\": \"urtiz\",\n  \"uruapan\": \"uruap\",\n  \"uruguay\": \"uruguay\",\n  \"uruguayo\": \"uruguay\",\n  \"urzúa\": \"urzu\",\n  \"usa\": \"usa\",\n  \"usaba\": \"usab\",\n  \"usaban\": \"usab\",\n  \"usada\": \"usad\",\n  \"usadas\": \"usad\",\n  \"usado\": \"usad\",\n  \"usados\": \"usad\",\n  \"usan\": \"usan\",\n  \"usando\": \"usand\",\n  \"usar\": \"usar\",\n  \"usara\": \"usar\",\n  \"usará\": \"usar\",\n  \"usarán\": \"usaran\",\n  \"usarla\": \"usarl\",\n  \"usarlos\": \"usarl\",\n  \"usaron\": \"usaron\",\n  \"usarse\": \"usars\",\n  \"use\": \"use\",\n  \"usen\": \"usen\",\n  \"usis\": \"usis\",\n  \"uso\": \"uso\",\n  \"usó\": \"uso\",\n  \"usos\": \"usos\",\n  \"usted\": \"usted\",\n  \"ustedes\": \"usted\",\n  \"usuales\": \"usual\",\n  \"usuario\": \"usuari\",\n  \"usuarios\": \"usuari\",\n  \"usura\": \"usur\",\n  \"usureros\": \"usurer\",\n  \"usurpación\": \"usurp\",\n  \"útero\": \"uter\",\n  \"útil\": \"util\",\n  \"utilería\": \"util\",\n  \"utilerías\": \"util\",\n  \"utilice\": \"utilic\",\n  \"utilidad\": \"util\",\n  \"utilidades\": \"util\",\n  \"utiliza\": \"utiliz\",\n  \"utilizaba\": \"utiliz\",\n  \"utilizaban\": \"utiliz\",\n  \"utilización\": \"utiliz\",\n  \"utilizada\": \"utiliz\",\n  \"utilizadas\": \"utiliz\",\n  \"utilizado\": \"utiliz\",\n  \"utilizados\": \"utiliz\",\n  \"utilizamos\": \"utiliz\",\n  \"utilizan\": \"utiliz\",\n  \"utilizando\": \"utiliz\",\n  \"utilizar\": \"utiliz\",\n  \"utilizará\": \"utiliz\",\n  \"utilizarán\": \"utiliz\",\n  \"utilizarla\": \"utiliz\",\n  \"utilizarlo\": \"utiliz\",\n  \"utilizaron\": \"utiliz\",\n  \"utilizarse\": \"utiliz\",\n  \"utilizó\": \"utiliz\",\n  \"utopía\": \"utop\",\n  \"utopías\": \"utop\",\n  \"utópicas\": \"utop\",\n  \"uy\": \"uy\",\n  \"v\": \"v\",\n  \"va\": \"va\",\n  \"vaca\": \"vac\",\n  \"vacacionar\": \"vacacion\",\n  \"vacaciones\": \"vacacion\",\n  \"vacas\": \"vac\",\n  \"vacía\": \"vac\",\n  \"vaciado\": \"vaci\",\n  \"vacías\": \"vac\",\n  \"vacila\": \"vacil\",\n  \"vacilada\": \"vacil\",\n  \"vacilan\": \"vacil\",\n  \"vacilando\": \"vacil\",\n  \"vacilante\": \"vacil\",\n  \"vacilar\": \"vacil\",\n  \"vaciló\": \"vacil\",\n  \"vacilón\": \"vacilon\",\n  \"vacío\": \"vaci\",\n  \"vació\": \"vac\",\n  \"vacíos\": \"vaci\",\n  \"vacuna\": \"vacun\",\n  \"vacunación\": \"vacun\",\n  \"vacunas\": \"vacun\",\n  \"vado\": \"vad\",\n  \"vagabundo\": \"vagabund\",\n  \"vagina\": \"vagin\",\n  \"vagones\": \"vagon\",\n  \"vagoneta\": \"vagonet\",\n  \"vagos\": \"vag\",\n  \"vaivenes\": \"vaiven\",\n  \"vajilla\": \"vajill\",\n  \"val\": \"val\",\n  \"valde\": \"vald\",\n  \"valdés\": \"valdes\",\n  \"valdez\": \"valdez\",\n  \"valdo\": \"vald\",\n  \"valdrá\": \"valdr\",\n  \"valdría\": \"valdr\",\n  \"vale\": \"val\",\n  \"valedores\": \"valedor\",\n  \"valegorrista\": \"valegorr\",\n  \"valemos\": \"val\",\n  \"valen\": \"val\",\n  \"valencia\": \"valenci\",\n  \"valens\": \"valens\",\n  \"valente\": \"valent\",\n  \"valentia\": \"valenti\",\n  \"valentía\": \"valent\",\n  \"valentín\": \"valentin\",\n  \"valentino\": \"valentin\",\n  \"valenzuela\": \"valenzuel\",\n  \"valer\": \"val\",\n  \"valeri\": \"valeri\",\n  \"valero\": \"valer\",\n  \"valet\": \"valet\",\n  \"valga\": \"valg\",\n  \"valgan\": \"valg\",\n  \"valía\": \"val\",\n  \"validez\": \"validez\",\n  \"valido\": \"val\",\n  \"válido\": \"val\",\n  \"valiente\": \"valient\",\n  \"valieron\": \"val\",\n  \"valió\": \"val\",\n  \"valiosa\": \"valios\",\n  \"valiosas\": \"vali\",\n  \"valioso\": \"valios\",\n  \"valiosos\": \"valios\",\n  \"valium\": \"valium\",\n  \"valla\": \"vall\",\n  \"valladares\": \"valladar\",\n  \"vallarta\": \"vallart\",\n  \"vallas\": \"vall\",\n  \"valle\": \"vall\",\n  \"vallecano\": \"vallecan\",\n  \"vallecillo\": \"vallecill\",\n  \"vallecillos\": \"vallecill\",\n  \"vallejo\": \"vallej\",\n  \"valles\": \"vall\",\n  \"valley\": \"valley\",\n  \"valor\": \"valor\",\n  \"valora\": \"valor\",\n  \"valoraba\": \"valor\",\n  \"valoración\": \"valor\",\n  \"valoradas\": \"valor\",\n  \"valorado\": \"valor\",\n  \"valorados\": \"valor\",\n  \"valorar\": \"valor\",\n  \"valorarlo\": \"valor\",\n  \"valoraron\": \"valor\",\n  \"valore\": \"valor\",\n  \"valores\": \"valor\",\n  \"valorizada\": \"valoriz\",\n  \"valparaíso\": \"valparais\",\n  \"valtierra\": \"valtierr\",\n  \"valuación\": \"valuacion\",\n  \"valuadas\": \"valu\",\n  \"value\": \"valu\",\n  \"válvulas\": \"valvul\",\n  \"vamos\": \"vam\",\n  \"vampiro\": \"vampir\",\n  \"vampiros\": \"vampir\",\n  \"van\": \"van\",\n  \"vandálicos\": \"vandal\",\n  \"vandalismo\": \"vandal\",\n  \"vanderley\": \"vanderley\",\n  \"vanette\": \"vanett\",\n  \"vanguardia\": \"vanguardi\",\n  \"vanguardista\": \"vanguard\",\n  \"vanguardistas\": \"vanguard\",\n  \"vanidad\": \"vanid\",\n  \"vanidades\": \"vanidad\",\n  \"vanilli\": \"vanilli\",\n  \"vánitas\": \"vanit\",\n  \"vanity\": \"vanity\",\n  \"vano\": \"van\",\n  \"vanos\": \"van\",\n  \"vapor\": \"vapor\",\n  \"vaporizaciones\": \"vaporiz\",\n  \"vaporizarlas\": \"vaporiz\",\n  \"vaporosa\": \"vapor\",\n  \"vaporosos\": \"vapor\",\n  \"vaquera\": \"vaquer\",\n  \"vaquerías\": \"vaqu\",\n  \"vaquero\": \"vaquer\",\n  \"vaqueros\": \"vaquer\",\n  \"varada\": \"var\",\n  \"varados\": \"var\",\n  \"varela\": \"varel\",\n  \"vargas\": \"varg\",\n  \"varía\": \"var\",\n  \"variable\": \"variabl\",\n  \"variables\": \"variabl\",\n  \"variación\": \"variacion\",\n  \"variaciones\": \"variacion\",\n  \"variada\": \"vari\",\n  \"variado\": \"vari\",\n  \"variados\": \"vari\",\n  \"varían\": \"var\",\n  \"variando\": \"vari\",\n  \"variantes\": \"variant\",\n  \"varias\": \"vari\",\n  \"varicela\": \"varicel\",\n  \"variedad\": \"varied\",\n  \"variedades\": \"variedad\",\n  \"variopinta\": \"variopint\",\n  \"varios\": \"vari\",\n  \"varita\": \"varit\",\n  \"varón\": \"varon\",\n  \"varones\": \"varon\",\n  \"varonil\": \"varonil\",\n  \"varoniles\": \"varonil\",\n  \"vas\": \"vas\",\n  \"vasco\": \"vasc\",\n  \"vasconcelos\": \"vasconcel\",\n  \"vaso\": \"vas\",\n  \"vasos\": \"vas\",\n  \"vásquez\": \"vasquez\",\n  \"vasto\": \"vast\",\n  \"vaticano\": \"vatican\",\n  \"vaticinado\": \"vaticin\",\n  \"vaticinar\": \"vaticin\",\n  \"vaticinaron\": \"vaticin\",\n  \"vaticinen\": \"vaticin\",\n  \"vaticinios\": \"vaticini\",\n  \"vaticinó\": \"vaticin\",\n  \"vax\": \"vax\",\n  \"vaxstations\": \"vaxstations\",\n  \"vaya\": \"vay\",\n  \"vayamos\": \"vay\",\n  \"vayan\": \"vay\",\n  \"vazquez\": \"vazquez\",\n  \"vázquez\": \"vazquez\",\n  \"vcr\": \"vcr\",\n  \"ve\": \"ve\",\n  \"vea\": \"vea\",\n  \"veamos\": \"veam\",\n  \"vean\": \"vean\",\n  \"veces\": \"vec\",\n  \"vecina\": \"vecin\",\n  \"vecinal\": \"vecinal\",\n  \"vecinales\": \"vecinal\",\n  \"vecinas\": \"vecin\",\n  \"vecindad\": \"vecind\",\n  \"vecindario\": \"vecindari\",\n  \"vecino\": \"vecin\",\n  \"vecinos\": \"vecin\",\n  \"vector\": \"vector\",\n  \"vega\": \"veg\",\n  \"vegetación\": \"veget\",\n  \"vegetales\": \"vegetal\",\n  \"vegetarianismo\": \"vegetarian\",\n  \"vegetarianos\": \"vegetarian\",\n  \"vegetativo\": \"veget\",\n  \"vehemencia\": \"vehement\",\n  \"vehemente\": \"vehement\",\n  \"vehicular\": \"vehicul\",\n  \"vehiculares\": \"vehicular\",\n  \"vehículo\": \"vehicul\",\n  \"vehículos\": \"vehicul\",\n  \"veía\": \"vei\",\n  \"veían\": \"vei\",\n  \"veinte\": \"veint\",\n  \"veinteañeros\": \"veinteañer\",\n  \"veintena\": \"veinten\",\n  \"veinticinco\": \"veinticinc\",\n  \"veintiseis\": \"veintiseis\",\n  \"vejarrón\": \"vejarron\",\n  \"vejez\": \"vejez\",\n  \"vela\": \"vel\",\n  \"velada\": \"vel\",\n  \"velador\": \"velador\",\n  \"velando\": \"vel\",\n  \"velarde\": \"velard\",\n  \"velas\": \"vel\",\n  \"velasco\": \"velasc\",\n  \"velázquez\": \"velazquez\",\n  \"velero\": \"veler\",\n  \"vélez\": \"velez\",\n  \"vellones\": \"vellon\",\n  \"velocidad\": \"veloc\",\n  \"velocidades\": \"veloc\",\n  \"velocímetro\": \"velocimetr\",\n  \"velos\": \"vel\",\n  \"veloso\": \"velos\",\n  \"vemos\": \"vem\",\n  \"ven\": \"ven\",\n  \"vena\": \"ven\",\n  \"venado\": \"ven\",\n  \"vence\": \"venc\",\n  \"vencedor\": \"vencedor\",\n  \"vencedores\": \"vencedor\",\n  \"vencer\": \"venc\",\n  \"vencerás\": \"venc\",\n  \"vencerse\": \"venc\",\n  \"vencida\": \"venc\",\n  \"vencidas\": \"venc\",\n  \"vencido\": \"venc\",\n  \"vencidos\": \"venc\",\n  \"vencieron\": \"venc\",\n  \"vencimiento\": \"vencimient\",\n  \"vencimientos\": \"vencimient\",\n  \"venció\": \"venc\",\n  \"venda\": \"vend\",\n  \"vendados\": \"vend\",\n  \"vendan\": \"vend\",\n  \"vendaron\": \"vend\",\n  \"vende\": \"vend\",\n  \"vendedor\": \"vendedor\",\n  \"vendedora\": \"vendedor\",\n  \"vendedores\": \"vendedor\",\n  \"vendemos\": \"vend\",\n  \"venden\": \"vend\",\n  \"vender\": \"vend\",\n  \"venderá\": \"vend\",\n  \"venderán\": \"vend\",\n  \"venderemos\": \"vend\",\n  \"vendería\": \"vend\",\n  \"venderla\": \"vend\",\n  \"venderlo\": \"vend\",\n  \"venderse\": \"vend\",\n  \"vendía\": \"vend\",\n  \"vendida\": \"vend\",\n  \"vendidas\": \"vend\",\n  \"vendido\": \"vend\",\n  \"vendidos\": \"vend\",\n  \"vendiendo\": \"vend\",\n  \"vendiéndose\": \"vend\",\n  \"vendiera\": \"vend\",\n  \"vendieron\": \"vend\",\n  \"vendió\": \"vend\",\n  \"vendo\": \"vend\",\n  \"vendrá\": \"vendr\",\n  \"vendrán\": \"vendran\",\n  \"venegas\": \"veneg\",\n  \"veneno\": \"venen\",\n  \"veneraban\": \"vener\",\n  \"veneración\": \"vener\",\n  \"venezolana\": \"venezolan\",\n  \"venezolano\": \"venezolan\",\n  \"venezolanos\": \"venezolan\",\n  \"venezuela\": \"venezuel\",\n  \"venga\": \"veng\",\n  \"vengadores\": \"vengador\",\n  \"vengan\": \"veng\",\n  \"venganza\": \"venganz\",\n  \"vengo\": \"veng\",\n  \"venía\": \"ven\",\n  \"venían\": \"ven\",\n  \"venicio\": \"venici\",\n  \"venida\": \"ven\",\n  \"venido\": \"ven\",\n  \"venidos\": \"ven\",\n  \"venimos\": \"ven\",\n  \"venir\": \"ven\",\n  \"venirse\": \"ven\",\n  \"venta\": \"vent\",\n  \"ventaja\": \"ventaj\",\n  \"ventajas\": \"ventaj\",\n  \"ventajosa\": \"ventaj\",\n  \"ventajosas\": \"ventaj\",\n  \"ventana\": \"ventan\",\n  \"ventanas\": \"ventan\",\n  \"ventanilla\": \"ventanill\",\n  \"ventas\": \"vent\",\n  \"ventila\": \"ventil\",\n  \"ventilación\": \"ventil\",\n  \"ventilar\": \"ventil\",\n  \"ventilaron\": \"ventil\",\n  \"ventilas\": \"ventil\",\n  \"ventre\": \"ventr\",\n  \"ventura\": \"ventur\",\n  \"venus\": \"venus\",\n  \"venustiano\": \"venustian\",\n  \"veo\": \"veo\",\n  \"ver\": \"ver\",\n  \"vera\": \"ver\",\n  \"verá\": \"ver\",\n  \"veracruz\": \"veracruz\",\n  \"veracruzana\": \"veracruzan\",\n  \"veracruzano\": \"veracruzan\",\n  \"veracruzanos\": \"veracruzan\",\n  \"verán\": \"veran\",\n  \"verano\": \"veran\",\n  \"veras\": \"ver\",\n  \"verbal\": \"verbal\",\n  \"verbales\": \"verbal\",\n  \"verbalista\": \"verbal\",\n  \"verbalmente\": \"verbal\",\n  \"verbo\": \"verb\",\n  \"verdad\": \"verd\",\n  \"verdadera\": \"verdader\",\n  \"verdaderamente\": \"verdader\",\n  \"verdaderas\": \"verdader\",\n  \"verdadero\": \"verdader\",\n  \"verdaderos\": \"verdader\",\n  \"verdades\": \"verdad\",\n  \"verde\": \"verd\",\n  \"verdes\": \"verd\",\n  \"verdirame\": \"verdiram\",\n  \"verdugo\": \"verdug\",\n  \"verduras\": \"verdur\",\n  \"verduzco\": \"verduzc\",\n  \"veré\": \"ver\",\n  \"veredalta\": \"veredalt\",\n  \"veredas\": \"vered\",\n  \"veredicto\": \"veredict\",\n  \"veremos\": \"ver\",\n  \"vergonzante\": \"vergonz\",\n  \"vergonzosos\": \"vergonz\",\n  \"vergüenza\": \"vergüenz\",\n  \"vería\": \"ver\",\n  \"veríamos\": \"ver\",\n  \"verificaba\": \"verific\",\n  \"verificación\": \"verif\",\n  \"verifican\": \"verific\",\n  \"verificar\": \"verific\",\n  \"verificaron\": \"verific\",\n  \"verificó\": \"verific\",\n  \"verla\": \"verl\",\n  \"verlas\": \"verl\",\n  \"verlo\": \"verl\",\n  \"verlos\": \"verl\",\n  \"verme\": \"verm\",\n  \"verónica\": \"veron\",\n  \"verónicas\": \"veron\",\n  \"verrugas\": \"verrug\",\n  \"versa\": \"vers\",\n  \"versace\": \"versac\",\n  \"versátil\": \"versatil\",\n  \"versatilidad\": \"versatil\",\n  \"verse\": \"vers\",\n  \"versificación\": \"versif\",\n  \"versión\": \"version\",\n  \"versiones\": \"version\",\n  \"versos\": \"vers\",\n  \"versus\": \"versus\",\n  \"verte\": \"vert\",\n  \"vertebral\": \"vertebral\",\n  \"vertical\": \"vertical\",\n  \"vertida\": \"vert\",\n  \"vertidas\": \"vert\",\n  \"vertido\": \"vert\",\n  \"vertientes\": \"vertient\",\n  \"very\": \"very\",\n  \"ves\": \"ves\",\n  \"vespertino\": \"vespertin\",\n  \"vestía\": \"vest\",\n  \"vestida\": \"vest\",\n  \"vestido\": \"vest\",\n  \"vestidos\": \"vest\",\n  \"vestidura\": \"vestidur\",\n  \"vestiduras\": \"vestidur\",\n  \"vestigio\": \"vestigi\",\n  \"vestimos\": \"vest\",\n  \"vestir\": \"vest\",\n  \"vestirse\": \"vest\",\n  \"vestuario\": \"vestuari\",\n  \"vetado\": \"vet\",\n  \"vetará\": \"vet\",\n  \"veterano\": \"veteran\",\n  \"veteranos\": \"veteran\",\n  \"veterinarias\": \"veterinari\",\n  \"veto\": \"vet\",\n  \"vetó\": \"vet\",\n  \"vez\": \"vez\",\n  \"vi\": \"vi\",\n  \"vía\": \"via\",\n  \"viabilidad\": \"viabil\",\n  \"viable\": \"viabl\",\n  \"viaducto\": \"viaduct\",\n  \"viaja\": \"viaj\",\n  \"viajaba\": \"viaj\",\n  \"viajaban\": \"viaj\",\n  \"viajado\": \"viaj\",\n  \"viajan\": \"viaj\",\n  \"viajar\": \"viaj\",\n  \"viajará\": \"viaj\",\n  \"viajarán\": \"viaj\",\n  \"viajarían\": \"viaj\",\n  \"viajaron\": \"viaj\",\n  \"viaje\": \"viaj\",\n  \"viajen\": \"viaj\",\n  \"viajero\": \"viajer\",\n  \"viajeros\": \"viajer\",\n  \"viajes\": \"viaj\",\n  \"viajó\": \"viaj\",\n  \"vial\": \"vial\",\n  \"viales\": \"vial\",\n  \"vialidad\": \"vialid\",\n  \"vialidades\": \"vialidad\",\n  \"viandas\": \"viand\",\n  \"vianey\": \"vianey\",\n  \"vías\": \"vias\",\n  \"víbora\": \"vibor\",\n  \"vibra\": \"vibr\",\n  \"vibraciones\": \"vibracion\",\n  \"vibradores\": \"vibrador\",\n  \"vibrar\": \"vibr\",\n  \"vicario\": \"vicari\",\n  \"vice\": \"vic\",\n  \"vicecanciller\": \"vicecancill\",\n  \"vicente\": \"vicent\",\n  \"vicepresidencia\": \"vicepresident\",\n  \"vicepresidente\": \"vicepresident\",\n  \"viceversa\": \"vicevers\",\n  \"vicio\": \"vici\",\n  \"vicios\": \"vici\",\n  \"viciosas\": \"vici\",\n  \"vícitma\": \"vicitm\",\n  \"vicky\": \"vicky\",\n  \"víctima\": \"victim\",\n  \"victimado\": \"victim\",\n  \"víctimas\": \"victim\",\n  \"víctor\": \"victor\",\n  \"victoria\": \"victori\",\n  \"victoriana\": \"victorian\",\n  \"victoriano\": \"victorian\",\n  \"victorias\": \"victori\",\n  \"victorioso\": \"victori\",\n  \"victoriosos\": \"victori\",\n  \"vida\": \"vid\",\n  \"vidal\": \"vidal\",\n  \"vidales\": \"vidal\",\n  \"vidas\": \"vid\",\n  \"vidente\": \"vident\",\n  \"videntes\": \"vident\",\n  \"video\": \"vide\",\n  \"videocasetera\": \"videocaseter\",\n  \"videocasetes\": \"videocaset\",\n  \"videocentros\": \"videocentr\",\n  \"videoclip\": \"videoclip\",\n  \"videoclubes\": \"videoclub\",\n  \"videohomes\": \"videohom\",\n  \"videomax\": \"videomax\",\n  \"videopelícula\": \"videopelicul\",\n  \"videos\": \"vide\",\n  \"vidrio\": \"vidri\",\n  \"vidrios\": \"vidri\",\n  \"vieira\": \"vieir\",\n  \"vieja\": \"viej\",\n  \"viejas\": \"viej\",\n  \"viejecita\": \"viejecit\",\n  \"viejita\": \"viejit\",\n  \"viejito\": \"viejit\",\n  \"viejitos\": \"viejit\",\n  \"viejo\": \"viej\",\n  \"viejón\": \"viejon\",\n  \"viejos\": \"viej\",\n  \"viena\": \"vien\",\n  \"viendo\": \"viend\",\n  \"viendose\": \"viendos\",\n  \"viene\": \"vien\",\n  \"vienen\": \"vien\",\n  \"viento\": \"vient\",\n  \"vientos\": \"vient\",\n  \"vientre\": \"vientr\",\n  \"vientres\": \"vientr\",\n  \"viera\": \"vier\",\n  \"viernes\": \"viern\",\n  \"vieron\": \"vieron\",\n  \"viesca\": \"viesc\",\n  \"vietnam\": \"vietnam\",\n  \"view\": \"view\",\n  \"vigas\": \"vig\",\n  \"vigencia\": \"vigenci\",\n  \"vigente\": \"vigent\",\n  \"vigentes\": \"vigent\",\n  \"vigésima\": \"vigesim\",\n  \"vigésimacuarta\": \"vigesimacuart\",\n  \"vigésimo\": \"vigesim\",\n  \"vigil\": \"vigil\",\n  \"vigila\": \"vigil\",\n  \"vigilaban\": \"vigil\",\n  \"vigilada\": \"vigil\",\n  \"vigiladas\": \"vigil\",\n  \"vigilado\": \"vigil\",\n  \"vigilados\": \"vigil\",\n  \"vigilancia\": \"vigil\",\n  \"vigilante\": \"vigil\",\n  \"vigilantes\": \"vigil\",\n  \"vigilar\": \"vigil\",\n  \"vigilará\": \"vigil\",\n  \"vigilarlas\": \"vigil\",\n  \"vigile\": \"vigil\",\n  \"vigilen\": \"vigil\",\n  \"vigilia\": \"vigili\",\n  \"vigo\": \"vig\",\n  \"vigor\": \"vigor\",\n  \"vigoroso\": \"vigor\",\n  \"viii\": \"viii\",\n  \"villa\": \"vill\",\n  \"villacaña\": \"villacañ\",\n  \"villada\": \"vill\",\n  \"villagómez\": \"villagomez\",\n  \"villagrán\": \"villagran\",\n  \"villahermosa\": \"villaherm\",\n  \"villalba\": \"villalb\",\n  \"villaldama\": \"villaldam\",\n  \"villalobos\": \"villalob\",\n  \"villamar\": \"villam\",\n  \"villán\": \"villan\",\n  \"villanueva\": \"villanuev\",\n  \"villar\": \"vill\",\n  \"villarreal\": \"villarreal\",\n  \"villasana\": \"villasan\",\n  \"villaseñor\": \"villaseñor\",\n  \"villauto\": \"villaut\",\n  \"villegas\": \"villeg\",\n  \"villuendas\": \"villuend\",\n  \"vimos\": \"vim\",\n  \"vimosa\": \"vimos\",\n  \"viña\": \"viñ\",\n  \"vincent\": \"vincent\",\n  \"vincula\": \"vincul\",\n  \"vinculación\": \"vincul\",\n  \"vinculadas\": \"vincul\",\n  \"vinculado\": \"vincul\",\n  \"vinculados\": \"vincul\",\n  \"vincular\": \"vincul\",\n  \"vincularse\": \"vincul\",\n  \"vinculo\": \"vincul\",\n  \"vínculo\": \"vincul\",\n  \"vínculos\": \"vincul\",\n  \"vine\": \"vin\",\n  \"viniendo\": \"vin\",\n  \"viniera\": \"vin\",\n  \"vinieran\": \"vin\",\n  \"vinieron\": \"vin\",\n  \"vino\": \"vin\",\n  \"vinyard\": \"vinyard\",\n  \"vio\": \"vio\",\n  \"violación\": \"violacion\",\n  \"violaciones\": \"violacion\",\n  \"violada\": \"viol\",\n  \"violado\": \"viol\",\n  \"violador\": \"violador\",\n  \"violadores\": \"violador\",\n  \"violan\": \"viol\",\n  \"violando\": \"viol\",\n  \"violar\": \"viol\",\n  \"violatorias\": \"violatori\",\n  \"violencia\": \"violenci\",\n  \"violenta\": \"violent\",\n  \"violentada\": \"violent\",\n  \"violentamente\": \"violent\",\n  \"violentaría\": \"violent\",\n  \"violentas\": \"violent\",\n  \"violento\": \"violent\",\n  \"violentos\": \"violent\",\n  \"violeta\": \"violet\",\n  \"violetina\": \"violetin\",\n  \"violín\": \"violin\",\n  \"violinista\": \"violin\",\n  \"violó\": \"viol\",\n  \"vips\": \"vips\",\n  \"virgen\": \"virg\",\n  \"vírgenes\": \"virgen\",\n  \"virginia\": \"virgini\",\n  \"virilidad\": \"viril\",\n  \"virreinato\": \"virreinat\",\n  \"virtual\": \"virtual\",\n  \"virtud\": \"virtud\",\n  \"virtudes\": \"virtud\",\n  \"virtuosa\": \"virtuos\",\n  \"virtuosos\": \"virtuos\",\n  \"virulentos\": \"virulent\",\n  \"visa\": \"vis\",\n  \"visag\": \"visag\",\n  \"viscatán\": \"viscatan\",\n  \"viscencio\": \"viscenci\",\n  \"viscerales\": \"visceral\",\n  \"visibilidad\": \"visibil\",\n  \"visible\": \"visibl\",\n  \"visiblemente\": \"visibl\",\n  \"visión\": \"vision\",\n  \"visionarios\": \"visionari\",\n  \"visiones\": \"vision\",\n  \"visires\": \"visir\",\n  \"visita\": \"visit\",\n  \"visitaba\": \"visit\",\n  \"visitadas\": \"visit\",\n  \"visitado\": \"visit\",\n  \"visitaduría\": \"visitadur\",\n  \"visitan\": \"visit\",\n  \"visitando\": \"visit\",\n  \"visitante\": \"visit\",\n  \"visitantes\": \"visit\",\n  \"visitar\": \"visit\",\n  \"visitara\": \"visit\",\n  \"visitará\": \"visit\",\n  \"visitarán\": \"visit\",\n  \"visitaría\": \"visit\",\n  \"visitarla\": \"visit\",\n  \"visitaron\": \"visit\",\n  \"visitas\": \"visit\",\n  \"visite\": \"visit\",\n  \"visiten\": \"visit\",\n  \"visiteo\": \"visite\",\n  \"visitiendo\": \"visit\",\n  \"visitó\": \"visit\",\n  \"viskin\": \"viskin\",\n  \"vislumbra\": \"vislumbr\",\n  \"vislumbran\": \"vislumbr\",\n  \"vislumbrar\": \"vislumbr\",\n  \"vislumbraron\": \"vislumbr\",\n  \"vislumbró\": \"vislumbr\",\n  \"visora\": \"visor\",\n  \"visos\": \"vis\",\n  \"víspera\": \"visper\",\n  \"vísperas\": \"visper\",\n  \"vista\": \"vist\",\n  \"vistas\": \"vist\",\n  \"vistazo\": \"vistaz\",\n  \"visten\": \"vist\",\n  \"vistiendo\": \"vist\",\n  \"vistió\": \"vist\",\n  \"visto\": \"vist\",\n  \"vistos\": \"vist\",\n  \"vistoso\": \"vistos\",\n  \"vistosos\": \"vistos\",\n  \"visual\": \"visual\",\n  \"visuales\": \"visual\",\n  \"visualice\": \"visualic\",\n  \"visualizaban\": \"visualiz\",\n  \"visualización\": \"visualiz\",\n  \"visualizado\": \"visualiz\",\n  \"visualizar\": \"visualiz\",\n  \"visualmente\": \"visual\",\n  \"vital\": \"vital\",\n  \"vitales\": \"vital\",\n  \"vitalicio\": \"vitalici\",\n  \"vitalidad\": \"vital\",\n  \"vitamina\": \"vitamin\",\n  \"vitaminas\": \"vitamin\",\n  \"vite\": \"vit\",\n  \"vito\": \"vit\",\n  \"vítores\": \"vitor\",\n  \"vitro\": \"vitr\",\n  \"vitroles\": \"vitrol\",\n  \"vittorio\": \"vittori\",\n  \"vituperado\": \"vituper\",\n  \"vituperados\": \"vituper\",\n  \"viuda\": \"viud\",\n  \"viudas\": \"viud\",\n  \"viudo\": \"viud\",\n  \"viva\": \"viv\",\n  \"vivales\": \"vival\",\n  \"vivan\": \"viv\",\n  \"vivas\": \"viv\",\n  \"vive\": \"viv\",\n  \"viven\": \"viv\",\n  \"víveres\": \"viver\",\n  \"vivero\": \"viver\",\n  \"viví\": \"viv\",\n  \"vivía\": \"viv\",\n  \"vivíamos\": \"viv\",\n  \"vivían\": \"viv\",\n  \"vivible\": \"vivibl\",\n  \"vivido\": \"viv\",\n  \"vividos\": \"viv\",\n  \"vivienda\": \"viviend\",\n  \"viviendas\": \"viviend\",\n  \"viviendo\": \"viv\",\n  \"viviente\": \"vivient\",\n  \"vivientes\": \"vivient\",\n  \"viviera\": \"viv\",\n  \"vivieran\": \"viv\",\n  \"vivieron\": \"viv\",\n  \"vivillos\": \"vivill\",\n  \"vivimos\": \"viv\",\n  \"vivió\": \"viv\",\n  \"vivir\": \"viv\",\n  \"vivirá\": \"viv\",\n  \"vivirse\": \"viv\",\n  \"vivo\": \"viv\",\n  \"vivos\": \"viv\",\n  \"vl\": \"vl\",\n  \"vladimir\": \"vladim\",\n  \"vocabulario\": \"vocabulari\",\n  \"vocación\": \"vocacion\",\n  \"vocacional\": \"vocacional\",\n  \"vocaciones\": \"vocacion\",\n  \"vocal\": \"vocal\",\n  \"vocalía\": \"vocal\",\n  \"vocalista\": \"vocal\",\n  \"vocera\": \"vocer\",\n  \"vocero\": \"vocer\",\n  \"voceros\": \"vocer\",\n  \"voces\": \"voc\",\n  \"voice\": \"voic\",\n  \"voices\": \"voic\",\n  \"voladeros\": \"volader\",\n  \"volando\": \"vol\",\n  \"volante\": \"volant\",\n  \"volantes\": \"volant\",\n  \"volar\": \"vol\",\n  \"volará\": \"vol\",\n  \"volaría\": \"vol\",\n  \"volátil\": \"volatil\",\n  \"volátiles\": \"volatil\",\n  \"volatilidad\": \"volatil\",\n  \"volcadura\": \"volcadur\",\n  \"volcamos\": \"volc\",\n  \"volcán\": \"volcan\",\n  \"volcanes\": \"volcan\",\n  \"volcánica\": \"volcan\",\n  \"volcánico\": \"volcan\",\n  \"volcar\": \"volc\",\n  \"volcaron\": \"volc\",\n  \"volcó\": \"volc\",\n  \"voleibol\": \"voleibol\",\n  \"volga\": \"volg\",\n  \"volkswagen\": \"volkswag\",\n  \"volmer\": \"volm\",\n  \"voltaire\": \"voltair\",\n  \"voltea\": \"volte\",\n  \"voltear\": \"volt\",\n  \"volteó\": \"volte\",\n  \"volteretas\": \"volteret\",\n  \"voltios\": \"volti\",\n  \"volts\": \"volts\",\n  \"voluble\": \"volubl\",\n  \"volumen\": \"volum\",\n  \"volumenes\": \"volumen\",\n  \"volúmenes\": \"volumen\",\n  \"voluminosísima\": \"voluminosisim\",\n  \"voluntad\": \"volunt\",\n  \"voluntades\": \"voluntad\",\n  \"voluntaria\": \"voluntari\",\n  \"voluntariado\": \"voluntari\",\n  \"voluntariamente\": \"voluntari\",\n  \"voluntarias\": \"voluntari\",\n  \"voluntario\": \"voluntari\",\n  \"voluntarios\": \"voluntari\",\n  \"voluntarioso\": \"voluntari\",\n  \"volvamos\": \"volv\",\n  \"volver\": \"volv\",\n  \"volverá\": \"volv\",\n  \"volverán\": \"volv\",\n  \"volveré\": \"volv\",\n  \"volvería\": \"volv\",\n  \"volverlas\": \"volv\",\n  \"volverse\": \"volv\",\n  \"volvía\": \"volv\",\n  \"volviendo\": \"volv\",\n  \"volvieron\": \"volv\",\n  \"volvimos\": \"volv\",\n  \"volvió\": \"volv\",\n  \"volvo\": \"volv\",\n  \"volvoramírez\": \"volvoramirez\",\n  \"vomitar\": \"vomit\",\n  \"vómitos\": \"vomit\",\n  \"von\": \"von\",\n  \"vorazmente\": \"voraz\",\n  \"vosso\": \"voss\",\n  \"vota\": \"vot\",\n  \"votación\": \"votacion\",\n  \"votaciones\": \"votacion\",\n  \"votantes\": \"votant\",\n  \"votar\": \"vot\",\n  \"votara\": \"vot\",\n  \"votará\": \"vot\",\n  \"votarán\": \"vot\",\n  \"votaría\": \"vot\",\n  \"votaron\": \"vot\",\n  \"votarse\": \"vot\",\n  \"vote\": \"vot\",\n  \"voten\": \"vot\",\n  \"voto\": \"vot\",\n  \"votó\": \"vot\",\n  \"votos\": \"vot\",\n  \"voy\": \"voy\",\n  \"voz\": \"voz\",\n  \"vs\": \"vs\",\n  \"vudú\": \"vudu\",\n  \"vuelas\": \"vuel\",\n  \"vuelca\": \"vuelc\",\n  \"vuele\": \"vuel\",\n  \"vuelo\": \"vuel\",\n  \"vuelos\": \"vuel\",\n  \"vuelta\": \"vuelt\",\n  \"vueltas\": \"vuelt\",\n  \"vuelto\": \"vuelt\",\n  \"vuelva\": \"vuelv\",\n  \"vuelvan\": \"vuelv\",\n  \"vuelve\": \"vuelv\",\n  \"vuelven\": \"vuelv\",\n  \"vuelvo\": \"vuelv\",\n  \"vuestro\": \"vuestr\",\n  \"vulcanología\": \"vulcanolog\",\n  \"vulcanólogos\": \"vulcanolog\",\n  \"vulgar\": \"vulg\",\n  \"vulgares\": \"vulgar\",\n  \"vulgaridad\": \"vulgar\",\n  \"vulgo\": \"vulg\",\n  \"vulnerabilidad\": \"vulner\",\n  \"vulnerable\": \"vulner\",\n  \"vulnerables\": \"vulner\",\n  \"vulneran\": \"vulner\",\n  \"vw\": \"vw\",\n  \"w\": \"w\",\n  \"wa\": \"wa\",\n  \"wal\": \"wal\",\n  \"walberto\": \"walbert\",\n  \"walcott\": \"walcott\",\n  \"wall\": \"wall\",\n  \"wallace\": \"wallac\",\n  \"walt\": \"walt\",\n  \"walter\": \"walt\",\n  \"walterio\": \"walteri\",\n  \"walton\": \"walton\",\n  \"ward\": \"ward\",\n  \"warner\": \"warn\",\n  \"warrants\": \"warrants\",\n  \"warren\": \"warr\",\n  \"washington\": \"washington\",\n  \"waterer\": \"water\",\n  \"we\": \"we\",\n  \"weisackaer\": \"weisack\",\n  \"weiss\": \"weiss\",\n  \"welch\": \"welch\",\n  \"wells\": \"wells\",\n  \"welsh\": \"welsh\",\n  \"wenceslao\": \"wencesla\",\n  \"wendy\": \"wendy\",\n  \"west\": \"west\",\n  \"western\": \"western\",\n  \"westh\": \"westh\",\n  \"westinghouse\": \"westinghous\",\n  \"wetherell\": \"wetherell\",\n  \"weule\": \"weul\",\n  \"whataburger\": \"whataburg\",\n  \"whisky\": \"whisky\",\n  \"widnall\": \"widnall\",\n  \"wiesel\": \"wiesel\",\n  \"wildlife\": \"wildlif\",\n  \"wilford\": \"wilford\",\n  \"william\": \"william\",\n  \"williams\": \"williams\",\n  \"williamson\": \"williamson\",\n  \"willie\": \"willi\",\n  \"wilson\": \"wilson\",\n  \"windows\": \"windows\",\n  \"winfield\": \"winfield\",\n  \"winston\": \"winston\",\n  \"winstone\": \"winston\",\n  \"wisconsin\": \"wisconsin\",\n  \"woldenberg\": \"woldenberg\",\n  \"wong\": \"wong\",\n  \"woody\": \"woody\",\n  \"worcester\": \"worcest\",\n  \"word\": \"word\",\n  \"works\": \"works\",\n  \"world\": \"world\",\n  \"worldnet\": \"worldnet\",\n  \"x\": \"x\",\n  \"xavier\": \"xavi\",\n  \"xenotransplantes\": \"xenotranspl\",\n  \"xenotrasplante\": \"xenotraspl\",\n  \"xenotrasplantes\": \"xenotraspl\",\n  \"xicoténcatl\": \"xicotencatl\",\n  \"xiii\": \"xiii\",\n  \"xilitla\": \"xilitl\",\n  \"xiv\": \"xiv\",\n  \"xix\": \"xix\",\n  \"xochimilco\": \"xochimilc\",\n  \"xochitl\": \"xochitl\",\n  \"xóchitl\": \"xochitl\",\n  \"xv\": \"xv\",\n  \"xvi\": \"xvi\",\n  \"xvii\": \"xvii\",\n  \"xviii\": \"xviii\",\n  \"xx\": \"xx\",\n  \"xxi\": \"xxi\",\n  \"xxiii\": \"xxiii\",\n  \"xxvi\": \"xxvi\",\n  \"y\": \"y\",\n  \"ya\": \"ya\",\n  \"yacía\": \"yac\",\n  \"yacimiento\": \"yacimient\",\n  \"yacimientos\": \"yacimient\",\n  \"yañez\": \"yañez\",\n  \"yanni\": \"yanni\",\n  \"yardas\": \"yard\",\n  \"yarmuch\": \"yarmuch\",\n  \"yaroslao\": \"yarosla\",\n  \"yate\": \"yat\",\n  \"ycosas\": \"ycos\",\n  \"years\": \"years\",\n  \"yeltsin\": \"yeltsin\",\n  \"yendo\": \"yend\",\n  \"yerbaniz\": \"yerbaniz\",\n  \"yerena\": \"yeren\",\n  \"yerno\": \"yern\",\n  \"yeso\": \"yes\",\n  \"yidish\": \"yidish\",\n  \"ylizaliturri\": \"ylizaliturri\",\n  \"yo\": \"yo\",\n  \"yodo\": \"yod\",\n  \"yoga\": \"yog\",\n  \"yogurt\": \"yogurt\",\n  \"yolanda\": \"yoland\",\n  \"yoltectl\": \"yoltectl\",\n  \"yonke\": \"yonk\",\n  \"yonquero\": \"yonquer\",\n  \"york\": \"york\",\n  \"yorky\": \"yorky\",\n  \"youshimatz\": \"youshimatz\",\n  \"yrapuato\": \"yrapuat\",\n  \"yuc\": \"yuc\",\n  \"yucatán\": \"yucatan\",\n  \"yucateca\": \"yucatec\",\n  \"yucateco\": \"yucatec\",\n  \"yucatecos\": \"yucatec\",\n  \"yugoslavia\": \"yugoslavi\",\n  \"yugoslavo\": \"yugoslav\",\n  \"yukio\": \"yuki\",\n  \"yunez\": \"yunez\",\n  \"yunta\": \"yunt\",\n  \"yuri\": \"yuri\",\n  \"yuxtapuesto\": \"yuxtapuest\",\n  \"yvonne\": \"yvonn\",\n  \"zabludowsky\": \"zabludowsky\",\n  \"zacarías\": \"zac\",\n  \"zacatecas\": \"zacatec\",\n  \"zacatepec\": \"zacatepec\",\n  \"zafra\": \"zafr\",\n  \"zag\": \"zag\",\n  \"zaga\": \"zag\",\n  \"zagas\": \"zag\",\n  \"zague\": \"zag\",\n  \"zaguero\": \"zaguer\",\n  \"zagueros\": \"zaguer\",\n  \"zahnle\": \"zahnl\",\n  \"zaid\": \"zaid\",\n  \"zaire\": \"zair\",\n  \"zalea\": \"zale\",\n  \"zambrano\": \"zambran\",\n  \"zamora\": \"zamor\",\n  \"zamorano\": \"zamoran\",\n  \"zamudio\": \"zamudi\",\n  \"zanabria\": \"zanabri\",\n  \"zancadilla\": \"zancadill\",\n  \"zancudos\": \"zancud\",\n  \"zanja\": \"zanj\",\n  \"zanjas\": \"zanj\",\n  \"zapalinamé\": \"zapalinam\",\n  \"zapata\": \"zapat\",\n  \"zapatera\": \"zapater\",\n  \"zapatilla\": \"zapatill\",\n  \"zapatitos\": \"zapatit\",\n  \"zapatos\": \"zapat\",\n  \"zapoteco\": \"zapotec\",\n  \"zar\": \"zar\",\n  \"zaragoza\": \"zaragoz\",\n  \"zarape\": \"zarap\",\n  \"zarapeados\": \"zarap\",\n  \"zárate\": \"zarat\",\n  \"zarazúa\": \"zarazu\",\n  \"zarco\": \"zarc\",\n  \"zarpó\": \"zarp\",\n  \"ze\": \"ze\",\n  \"zedillo\": \"zedill\",\n  \"zelanda\": \"zeland\",\n  \"zeltún\": \"zeltun\",\n  \"zenith\": \"zenith\",\n  \"zenón\": \"zenon\",\n  \"zepa\": \"zep\",\n  \"zepeda\": \"zeped\",\n  \"zertuche\": \"zertuch\",\n  \"zig\": \"zig\",\n  \"zimmerman\": \"zimmerm\",\n  \"zinser\": \"zins\",\n  \"zínser\": \"zins\",\n  \"zona\": \"zon\",\n  \"zonas\": \"zon\",\n  \"zoológico\": \"zoolog\",\n  \"zoológicos\": \"zoolog\",\n  \"zorkin\": \"zorkin\",\n  \"zorrilla\": \"zorrill\",\n  \"zorros\": \"zorr\",\n  \"zotoluca\": \"zotoluc\",\n  \"zotoluco\": \"zotoluc\",\n  \"zotolucos\": \"zotoluc\",\n  \"zuazua\": \"zuazu\",\n  \"zubillaga\": \"zubillag\",\n  \"zubizarreta\": \"zubizarret\",\n  \"zulia\": \"zuli\",\n  \"zúñiga\": \"zuñig\",\n  \"zurcos\": \"zurc\",\n  \"zurda\": \"zurd\",\n  \"zurdo\": \"zurd\",\n  \"zurdos\": \"zurd\",\n  \"zurita\": \"zurit\",\n  \"zutano\": \"zutan\"\n}"
  },
  {
    "path": "spec/test_data/snowball_fr.json",
    "content": "{\n  \"a\": \"a\",\n  \"à\": \"à\",\n  \"abailard\": \"abailard\",\n  \"abaissait\": \"abaiss\",\n  \"abaissant\": \"abaiss\",\n  \"abaisse\": \"abaiss\",\n  \"abaissé\": \"abaiss\",\n  \"abaissement\": \"abaissement\",\n  \"abaissent\": \"abaissent\",\n  \"abaisser\": \"abaiss\",\n  \"abaisserai\": \"abaiss\",\n  \"abandon\": \"abandon\",\n  \"abandonna\": \"abandon\",\n  \"abandonnait\": \"abandon\",\n  \"abandonnant\": \"abandon\",\n  \"abandonne\": \"abandon\",\n  \"abandonné\": \"abandon\",\n  \"abandonnée\": \"abandon\",\n  \"abandonner\": \"abandon\",\n  \"abandonnera\": \"abandon\",\n  \"abandonnerait\": \"abandon\",\n  \"abandonnés\": \"abandon\",\n  \"abandonnez\": \"abandon\",\n  \"abasourdi\": \"abasourd\",\n  \"abat\": \"abat\",\n  \"abattant\": \"abatt\",\n  \"abattement\": \"abatt\",\n  \"abattit\": \"abatt\",\n  \"abattre\": \"abattr\",\n  \"abbaye\": \"abbay\",\n  \"abbé\": \"abbé\",\n  \"abbés\": \"abbé\",\n  \"abbesse\": \"abbess\",\n  \"abeille\": \"abeil\",\n  \"abhorrait\": \"abhorr\",\n  \"abhorre\": \"abhorr\",\n  \"abhorré\": \"abhorr\",\n  \"abîmait\": \"abîm\",\n  \"abîme\": \"abîm\",\n  \"abîmé\": \"abîm\",\n  \"abîmée\": \"abîm\",\n  \"abject\": \"abject\",\n  \"abjurant\": \"abjur\",\n  \"ablutions\": \"ablut\",\n  \"abnégation\": \"abneg\",\n  \"aboiements\": \"aboi\",\n  \"aboiera\": \"aboi\",\n  \"abolir\": \"abol\",\n  \"abominable\": \"abomin\",\n  \"abominablement\": \"abomin\",\n  \"abominables\": \"abomin\",\n  \"abomination\": \"abomin\",\n  \"abondaient\": \"abond\",\n  \"abondamment\": \"abond\",\n  \"abondance\": \"abond\",\n  \"abondant\": \"abond\",\n  \"abondante\": \"abond\",\n  \"abonde\": \"abond\",\n  \"abonné\": \"abon\",\n  \"abonnement\": \"abon\",\n  \"abord\": \"abord\",\n  \"aborda\": \"abord\",\n  \"abordaient\": \"abord\",\n  \"abordait\": \"abord\",\n  \"abordant\": \"abord\",\n  \"abordée\": \"abord\",\n  \"aborder\": \"abord\",\n  \"abordèrent\": \"abord\",\n  \"abordés\": \"abord\",\n  \"abords\": \"abord\",\n  \"aboutit\": \"about\",\n  \"aboyaient\": \"aboi\",\n  \"aboyèrent\": \"aboi\",\n  \"abraham\": \"abraham\",\n  \"abrège\": \"abreg\",\n  \"abrégé\": \"abreg\",\n  \"abrégea\": \"abreg\",\n  \"abrégeaient\": \"abreg\",\n  \"abrégeait\": \"abreg\",\n  \"abrégeant\": \"abreg\",\n  \"abréger\": \"abreg\",\n  \"abrégera\": \"abreg\",\n  \"abrégerait\": \"abreg\",\n  \"abrégés\": \"abreg\",\n  \"abreuvoir\": \"abreuvoir\",\n  \"abréviations\": \"abrévi\",\n  \"abri\": \"abri\",\n  \"abritât\": \"abrit\",\n  \"abrité\": \"abrit\",\n  \"abritée\": \"abrit\",\n  \"abritent\": \"abritent\",\n  \"abrités\": \"abrit\",\n  \"abrutis\": \"abrut\",\n  \"abrutissant\": \"abrut\",\n  \"abrutissement\": \"abrut\",\n  \"abruzze\": \"abruzz\",\n  \"absence\": \"absenc\",\n  \"absences\": \"absenc\",\n  \"absent\": \"absent\",\n  \"absentait\": \"absent\",\n  \"absente\": \"absent\",\n  \"absents\": \"absent\",\n  \"absolu\": \"absolu\",\n  \"absolue\": \"absolu\",\n  \"absolument\": \"absolu\",\n  \"absolus\": \"absolus\",\n  \"absolutisme\": \"absolut\",\n  \"absorba\": \"absorb\",\n  \"absorbaient\": \"absorb\",\n  \"absorbait\": \"absorb\",\n  \"absorbé\": \"absorb\",\n  \"absorbée\": \"absorb\",\n  \"absorbés\": \"absorb\",\n  \"absoudre\": \"absoudr\",\n  \"abstenait\": \"absten\",\n  \"abstenez\": \"absten\",\n  \"abstiendrai\": \"abstiendr\",\n  \"abstraction\": \"abstract\",\n  \"abstrait\": \"abstrait\",\n  \"absurde\": \"absurd\",\n  \"absurdes\": \"absurd\",\n  \"absurdité\": \"absurd\",\n  \"absurdités\": \"absurd\",\n  \"abus\": \"abus\",\n  \"abusa\": \"abus\",\n  \"abusait\": \"abus\",\n  \"abusant\": \"abus\",\n  \"abuse\": \"abus\",\n  \"abusé\": \"abus\",\n  \"abuser\": \"abus\",\n  \"abusez\": \"abus\",\n  \"abusif\": \"abus\",\n  \"acabit\": \"acab\",\n  \"acacia\": \"acaci\",\n  \"acacias\": \"acaci\",\n  \"académicien\": \"académicien\",\n  \"académie\": \"academ\",\n  \"académies\": \"academ\",\n  \"académique\": \"academ\",\n  \"acajou\": \"acajou\",\n  \"accabla\": \"accabl\",\n  \"accablaient\": \"accabl\",\n  \"accablait\": \"accabl\",\n  \"accablant\": \"accabl\",\n  \"accablante\": \"accabl\",\n  \"accable\": \"accabl\",\n  \"accablé\": \"accabl\",\n  \"accablée\": \"accabl\",\n  \"accablement\": \"accabl\",\n  \"accabler\": \"accabl\",\n  \"accableraient\": \"accabl\",\n  \"accablèrent\": \"accabl\",\n  \"accalmie\": \"accalm\",\n  \"accaparé\": \"accapar\",\n  \"accède\": \"acced\",\n  \"accéder\": \"acced\",\n  \"accéléra\": \"accéler\",\n  \"accélération\": \"accéler\",\n  \"accent\": \"accent\",\n  \"accents\": \"accent\",\n  \"accentua\": \"accentu\",\n  \"accepta\": \"accept\",\n  \"acceptables\": \"accept\",\n  \"acceptais\": \"accept\",\n  \"acceptait\": \"accept\",\n  \"accepte\": \"accept\",\n  \"accepté\": \"accept\",\n  \"acceptée\": \"accept\",\n  \"acceptent\": \"acceptent\",\n  \"accepter\": \"accept\",\n  \"acceptera\": \"accept\",\n  \"accepterai\": \"accept\",\n  \"accepterait\": \"accept\",\n  \"accepteriez\": \"accept\",\n  \"acceptes\": \"accept\",\n  \"acceptez\": \"accept\",\n  \"acception\": \"accept\",\n  \"acceptons\": \"accepton\",\n  \"accès\": \"acces\",\n  \"accident\": \"accident\",\n  \"accidenté\": \"accident\",\n  \"accidents\": \"accident\",\n  \"acclamation\": \"acclam\",\n  \"acclamations\": \"acclam\",\n  \"accommodé\": \"accommod\",\n  \"accompagnaient\": \"accompagn\",\n  \"accompagnait\": \"accompagn\",\n  \"accompagnant\": \"accompagn\",\n  \"accompagne\": \"accompagn\",\n  \"accompagné\": \"accompagn\",\n  \"accompagnée\": \"accompagn\",\n  \"accompagnement\": \"accompagn\",\n  \"accompagnent\": \"accompagnent\",\n  \"accompagner\": \"accompagn\",\n  \"accompagnèrent\": \"accompagn\",\n  \"accompagniez\": \"accompagn\",\n  \"accompli\": \"accompl\",\n  \"accomplie\": \"accompl\",\n  \"accomplies\": \"accompl\",\n  \"accomplir\": \"accompl\",\n  \"accomplirait\": \"accompl\",\n  \"accomplis\": \"accompl\",\n  \"accomplissaient\": \"accompl\",\n  \"accomplissais\": \"accompl\",\n  \"accomplissait\": \"accompl\",\n  \"accomplissant\": \"accompl\",\n  \"accomplissement\": \"accompl\",\n  \"accomplissent\": \"accompl\",\n  \"accomplit\": \"accompl\",\n  \"accord\": \"accord\",\n  \"accorda\": \"accord\",\n  \"accordait\": \"accord\",\n  \"accordant\": \"accord\",\n  \"accorde\": \"accord\",\n  \"accordé\": \"accord\",\n  \"accordée\": \"accord\",\n  \"accordées\": \"accord\",\n  \"accorder\": \"accord\",\n  \"accorderai\": \"accord\",\n  \"accorderait\": \"accord\",\n  \"accordèrent\": \"accord\",\n  \"accorderez\": \"accord\",\n  \"accordez\": \"accord\",\n  \"accosta\": \"accost\",\n  \"accostait\": \"accost\",\n  \"accosté\": \"accost\",\n  \"accoster\": \"accost\",\n  \"accoté\": \"accot\",\n  \"accouchement\": \"accouch\",\n  \"accouraient\": \"accour\",\n  \"accourait\": \"accour\",\n  \"accourant\": \"accour\",\n  \"accourez\": \"accour\",\n  \"accourir\": \"accour\",\n  \"accourue\": \"accouru\",\n  \"accoururent\": \"accoururent\",\n  \"accourus\": \"accourus\",\n  \"accourut\": \"accourut\",\n  \"accoutrement\": \"accoutr\",\n  \"accoutumât\": \"accoutum\",\n  \"accoutume\": \"accoutum\",\n  \"accoutumé\": \"accoutum\",\n  \"accoutumée\": \"accoutum\",\n  \"accoutumées\": \"accoutum\",\n  \"accoutumer\": \"accoutum\",\n  \"accoutumes\": \"accoutum\",\n  \"accoutumés\": \"accoutum\",\n  \"accrédité\": \"accred\",\n  \"accréditer\": \"accrédit\",\n  \"accrochaient\": \"accroch\",\n  \"accrochant\": \"accroch\",\n  \"accroché\": \"accroch\",\n  \"accrocher\": \"accroch\",\n  \"accroissaient\": \"accroiss\",\n  \"accroissait\": \"accroiss\",\n  \"accroissant\": \"accroiss\",\n  \"accroître\": \"accroîtr\",\n  \"accru\": \"accru\",\n  \"accrue\": \"accru\",\n  \"accrut\": \"accrut\",\n  \"accueil\": \"accueil\",\n  \"accueillait\": \"accueil\",\n  \"accueillent\": \"accueillent\",\n  \"accueilli\": \"accueil\",\n  \"accueillie\": \"accueil\",\n  \"accueillies\": \"accueil\",\n  \"accueillir\": \"accueil\",\n  \"accueillis\": \"accueil\",\n  \"accumulation\": \"accumul\",\n  \"accumulé\": \"accumul\",\n  \"accumulées\": \"accumul\",\n  \"accumulent\": \"accumulent\",\n  \"accumuler\": \"accumul\",\n  \"accumulés\": \"accumul\",\n  \"accusa\": \"accus\",\n  \"accusait\": \"accus\",\n  \"accusant\": \"accus\",\n  \"accusateur\": \"accus\",\n  \"accusation\": \"accus\",\n  \"accusations\": \"accus\",\n  \"accuse\": \"accus\",\n  \"accusé\": \"accus\",\n  \"accuser\": \"accus\",\n  \"accuseront\": \"accus\",\n  \"accusés\": \"accus\",\n  \"accusez\": \"accus\",\n  \"achalandage\": \"achalandag\",\n  \"acharnant\": \"acharn\",\n  \"acharnés\": \"acharn\",\n  \"achat\": \"achat\",\n  \"achemina\": \"achemin\",\n  \"acheminait\": \"achemin\",\n  \"acheminé\": \"achemin\",\n  \"acheta\": \"achet\",\n  \"achetait\": \"achet\",\n  \"achetant\": \"achet\",\n  \"achete\": \"achet\",\n  \"achète\": \"achet\",\n  \"acheté\": \"achet\",\n  \"achetées\": \"achet\",\n  \"acheter\": \"achet\",\n  \"achèterons\": \"achet\",\n  \"achètes\": \"achet\",\n  \"achetés\": \"achet\",\n  \"achetez\": \"achet\",\n  \"acheva\": \"achev\",\n  \"achevaient\": \"achev\",\n  \"achevait\": \"achev\",\n  \"achevant\": \"achev\",\n  \"achève\": \"achev\",\n  \"achevé\": \"achev\",\n  \"achevée\": \"achev\",\n  \"achèvement\": \"achev\",\n  \"achever\": \"achev\",\n  \"achèvera\": \"achev\",\n  \"achevez\": \"achev\",\n  \"achille\": \"achill\",\n  \"acier\": \"aci\",\n  \"acolyte\": \"acolyt\",\n  \"acoustiques\": \"acoust\",\n  \"acquérait\": \"acquer\",\n  \"acquerrait\": \"acquerr\",\n  \"acquiert\": \"acquiert\",\n  \"acquis\": \"acquis\",\n  \"acquise\": \"acquis\",\n  \"acquises\": \"acquis\",\n  \"acquisition\": \"acquisit\",\n  \"acquisitions\": \"acquisit\",\n  \"acquit\": \"acquit\",\n  \"acquitta\": \"acquitt\",\n  \"acquittait\": \"acquitt\",\n  \"acquitte\": \"acquitt\",\n  \"acquitté\": \"acquitt\",\n  \"acquittement\": \"acquitt\",\n  \"acquitter\": \"acquitt\",\n  \"acquittés\": \"acquitt\",\n  \"acrobates\": \"acrobat\",\n  \"acrobatique\": \"acrobat\",\n  \"acte\": \"acte\",\n  \"actes\": \"acte\",\n  \"acteur\": \"acteur\",\n  \"acteurs\": \"acteur\",\n  \"actif\": \"actif\",\n  \"action\": \"action\",\n  \"actionnaires\": \"actionnair\",\n  \"actions\": \"action\",\n  \"active\": \"activ\",\n  \"activement\": \"activ\",\n  \"actives\": \"activ\",\n  \"activité\": \"activ\",\n  \"actrice\": \"actric\",\n  \"actrices\": \"actric\",\n  \"actuel\": \"actuel\",\n  \"actuelle\": \"actuel\",\n  \"actuellement\": \"actuel\",\n  \"actuelles\": \"actuel\",\n  \"actuels\": \"actuel\",\n  \"ad\": \"ad\",\n  \"adaptant\": \"adapt\",\n  \"additions\": \"addit\",\n  \"address\": \"address\",\n  \"adeline\": \"adelin\",\n  \"aden\": \"aden\",\n  \"adieu\": \"adieu\",\n  \"adieux\": \"adieux\",\n  \"adjoint\": \"adjoint\",\n  \"adjonction\": \"adjonct\",\n  \"adjudant\": \"adjud\",\n  \"adjudication\": \"adjud\",\n  \"adjudications\": \"adjud\",\n  \"adjugeait\": \"adjug\",\n  \"adjuger\": \"adjug\",\n  \"admet\": \"admet\",\n  \"admettait\": \"admet\",\n  \"admettant\": \"admet\",\n  \"admettent\": \"admettent\",\n  \"admettons\": \"admetton\",\n  \"admettre\": \"admettr\",\n  \"administra\": \"administr\",\n  \"administrateur\": \"administr\",\n  \"administrateurs\": \"administr\",\n  \"administration\": \"administr\",\n  \"administre\": \"administr\",\n  \"administré\": \"administr\",\n  \"administrer\": \"administr\",\n  \"administrés\": \"administr\",\n  \"administrez\": \"administr\",\n  \"admira\": \"admir\",\n  \"admirable\": \"admir\",\n  \"admirablement\": \"admir\",\n  \"admirables\": \"admir\",\n  \"admirais\": \"admir\",\n  \"admirait\": \"admir\",\n  \"admirant\": \"admir\",\n  \"admirateurs\": \"admir\",\n  \"admiration\": \"admir\",\n  \"admire\": \"admir\",\n  \"admiré\": \"admir\",\n  \"admirée\": \"admir\",\n  \"admirées\": \"admir\",\n  \"admirent\": \"admirent\",\n  \"admirer\": \"admir\",\n  \"admirera\": \"admir\",\n  \"admirèrent\": \"admir\",\n  \"admirés\": \"admir\",\n  \"admiriez\": \"admir\",\n  \"admis\": \"admis\",\n  \"admise\": \"admis\",\n  \"admises\": \"admis\",\n  \"admission\": \"admiss\",\n  \"admît\": \"admît\",\n  \"admonestant\": \"admonest\",\n  \"adolescent\": \"adolescent\",\n  \"adolphe\": \"adolph\",\n  \"adonné\": \"adon\",\n  \"adonnée\": \"adon\",\n  \"adonnent\": \"adonnent\",\n  \"adopta\": \"adopt\",\n  \"adopte\": \"adopt\",\n  \"adopté\": \"adopt\",\n  \"adoptée\": \"adopt\",\n  \"adopter\": \"adopt\",\n  \"adoptif\": \"adopt\",\n  \"adorable\": \"ador\",\n  \"adoraient\": \"ador\",\n  \"adorais\": \"ador\",\n  \"adorait\": \"ador\",\n  \"adorant\": \"ador\",\n  \"adorateur\": \"ador\",\n  \"adorateurs\": \"ador\",\n  \"adoration\": \"ador\",\n  \"adorations\": \"ador\",\n  \"adoratrices\": \"ador\",\n  \"adore\": \"ador\",\n  \"adoré\": \"ador\",\n  \"adorée\": \"ador\",\n  \"adorent\": \"adorent\",\n  \"adorer\": \"ador\",\n  \"adorera\": \"ador\",\n  \"adouci\": \"adouc\",\n  \"adoucir\": \"adouc\",\n  \"adoucissait\": \"adouc\",\n  \"adoucissent\": \"adouc\",\n  \"adressa\": \"adress\",\n  \"adressaient\": \"adress\",\n  \"adressait\": \"adress\",\n  \"adressant\": \"adress\",\n  \"adressât\": \"adress\",\n  \"adresse\": \"adress\",\n  \"adressé\": \"adress\",\n  \"adressée\": \"adress\",\n  \"adressées\": \"adress\",\n  \"adressent\": \"adressent\",\n  \"adresser\": \"adress\",\n  \"adresserai\": \"adress\",\n  \"adressèrent\": \"adress\",\n  \"adresses\": \"adress\",\n  \"adressés\": \"adress\",\n  \"adressez\": \"adress\",\n  \"adrien\": \"adrien\",\n  \"adroit\": \"adroit\",\n  \"adroite\": \"adroit\",\n  \"adroitement\": \"adroit\",\n  \"adroites\": \"adroit\",\n  \"adroits\": \"adroit\",\n  \"adsum\": \"adsum\",\n  \"adultère\": \"adulter\",\n  \"adverbe\": \"adverb\",\n  \"adversaire\": \"adversair\",\n  \"adversaires\": \"adversair\",\n  \"adverse\": \"advers\",\n  \"adversité\": \"advers\",\n  \"advint\": \"advint\",\n  \"aérienne\": \"aérien\",\n  \"affabilité\": \"affabl\",\n  \"affadissantes\": \"affad\",\n  \"affaibli\": \"affaibl\",\n  \"affaiblie\": \"affaibl\",\n  \"affaiblissait\": \"affaibl\",\n  \"affaiblissement\": \"affaibl\",\n  \"affaiblit\": \"affaibl\",\n  \"affaire\": \"affair\",\n  \"affairé\": \"affair\",\n  \"affaires\": \"affair\",\n  \"affairés\": \"affair\",\n  \"affaissé\": \"affaiss\",\n  \"affamé\": \"affam\",\n  \"affamer\": \"affam\",\n  \"affamés\": \"affam\",\n  \"affecta\": \"affect\",\n  \"affectaient\": \"affect\",\n  \"affectait\": \"affect\",\n  \"affectant\": \"affect\",\n  \"affectation\": \"affect\",\n  \"affectations\": \"affect\",\n  \"affecte\": \"affect\",\n  \"affecté\": \"affect\",\n  \"affectée\": \"affect\",\n  \"affectées\": \"affect\",\n  \"affecter\": \"affect\",\n  \"affectés\": \"affect\",\n  \"affection\": \"affect\",\n  \"affectionnait\": \"affection\",\n  \"affectionné\": \"affection\",\n  \"affections\": \"affect\",\n  \"affectueux\": \"affectu\",\n  \"affermissant\": \"afferm\",\n  \"affermit\": \"afferm\",\n  \"affichait\": \"affich\",\n  \"affiche\": \"affich\",\n  \"affiché\": \"affich\",\n  \"affichée\": \"affich\",\n  \"affichent\": \"affichent\",\n  \"afficher\": \"affich\",\n  \"affiches\": \"affich\",\n  \"afficheur\": \"afficheur\",\n  \"affidé\": \"affid\",\n  \"affidés\": \"affid\",\n  \"affilée\": \"affil\",\n  \"affilié\": \"affili\",\n  \"affilier\": \"affili\",\n  \"affinités\": \"affin\",\n  \"affirmait\": \"affirm\",\n  \"affirmant\": \"affirm\",\n  \"affirmatif\": \"affirm\",\n  \"affirme\": \"affirm\",\n  \"affirmé\": \"affirm\",\n  \"affirment\": \"affirment\",\n  \"affirmer\": \"affirm\",\n  \"affirmerai\": \"affirm\",\n  \"afflictive\": \"afflict\",\n  \"afflige\": \"afflig\",\n  \"affligé\": \"afflig\",\n  \"affligea\": \"afflig\",\n  \"affligée\": \"afflig\",\n  \"affliger\": \"afflig\",\n  \"affligez\": \"afflig\",\n  \"afflua\": \"afflu\",\n  \"affluaient\": \"afflu\",\n  \"affluence\": \"affluenc\",\n  \"affluent\": \"affluent\",\n  \"affluents\": \"affluent\",\n  \"affluer\": \"afflu\",\n  \"affolait\": \"affol\",\n  \"affolées\": \"affol\",\n  \"affranchi\": \"affranch\",\n  \"affrète\": \"affret\",\n  \"affreuse\": \"affreux\",\n  \"affreuses\": \"affreux\",\n  \"affreux\": \"affreux\",\n  \"affriolait\": \"affriol\",\n  \"affront\": \"affront\",\n  \"affrontais\": \"affront\",\n  \"affronter\": \"affront\",\n  \"affublé\": \"affubl\",\n  \"afin\": \"afin\",\n  \"afrique\": \"afriqu\",\n  \"agde\": \"agde\",\n  \"age\": \"age\",\n  \"âge\": \"âge\",\n  \"âgé\": \"âgé\",\n  \"âgée\": \"âgé\",\n  \"âgées\": \"âgé\",\n  \"agen\": \"agen\",\n  \"agencées\": \"agenc\",\n  \"agenouilla\": \"agenouill\",\n  \"agenouillant\": \"agenouill\",\n  \"agenouillé\": \"agenouill\",\n  \"agenouillée\": \"agenouill\",\n  \"agent\": \"agent\",\n  \"agents\": \"agent\",\n  \"âges\": \"âge\",\n  \"âgés\": \"âgé\",\n  \"agglomération\": \"agglomer\",\n  \"aggrottato\": \"aggrottato\",\n  \"agi\": \"agi\",\n  \"agile\": \"agil\",\n  \"agilité\": \"agil\",\n  \"agir\": \"agir\",\n  \"agirait\": \"agir\",\n  \"agis\": \"agis\",\n  \"agissaient\": \"agiss\",\n  \"agissait\": \"agiss\",\n  \"agissant\": \"agiss\",\n  \"agissante\": \"agiss\",\n  \"agisse\": \"agiss\",\n  \"agissent\": \"agissent\",\n  \"agissez\": \"agiss\",\n  \"agissons\": \"agisson\",\n  \"agit\": \"agit\",\n  \"agita\": \"agit\",\n  \"agitaient\": \"agit\",\n  \"agitait\": \"agit\",\n  \"agitant\": \"agit\",\n  \"agitation\": \"agit\",\n  \"agite\": \"agit\",\n  \"agité\": \"agit\",\n  \"agitée\": \"agit\",\n  \"agitées\": \"agit\",\n  \"agitent\": \"agitent\",\n  \"agiter\": \"agit\",\n  \"agitèrent\": \"agit\",\n  \"agités\": \"agit\",\n  \"agneaux\": \"agneau\",\n  \"agonie\": \"agon\",\n  \"agra\": \"agra\",\n  \"agrandis\": \"agrand\",\n  \"agréable\": \"agréabl\",\n  \"agréablement\": \"agréabl\",\n  \"agréables\": \"agréabl\",\n  \"agréer\": \"agré\",\n  \"agréez\": \"agré\",\n  \"agrément\": \"agrément\",\n  \"agrémenté\": \"agrément\",\n  \"agrémentée\": \"agrément\",\n  \"agrémentées\": \"agrément\",\n  \"agrémentés\": \"agrément\",\n  \"agréments\": \"agrément\",\n  \"agrès\": \"agres\",\n  \"agriculteur\": \"agriculteur\",\n  \"agriculture\": \"agricultur\",\n  \"ah\": \"ah\",\n  \"ahméhnagara\": \"ahméhnagar\",\n  \"ahuri\": \"ahur\",\n  \"ai\": \"ai\",\n  \"aida\": \"aid\",\n  \"aidait\": \"aid\",\n  \"aidant\": \"aid\",\n  \"aide\": \"aid\",\n  \"aidé\": \"aid\",\n  \"aidée\": \"aid\",\n  \"aidées\": \"aid\",\n  \"aider\": \"aid\",\n  \"aidera\": \"aid\",\n  \"aiderai\": \"aid\",\n  \"aidèrent\": \"aid\",\n  \"aiderez\": \"aid\",\n  \"aides\": \"aid\",\n  \"aidés\": \"aid\",\n  \"aidez\": \"aid\",\n  \"aidiez\": \"aid\",\n  \"aie\": \"aie\",\n  \"aient\": \"aient\",\n  \"aies\": \"aie\",\n  \"aïeul\": \"aïeul\",\n  \"aïeux\": \"aïeux\",\n  \"aigle\": \"aigl\",\n  \"aigre\": \"aigr\",\n  \"aigrelets\": \"aigrelet\",\n  \"aigrelettes\": \"aigrelet\",\n  \"aigrement\": \"aigr\",\n  \"aigres\": \"aigr\",\n  \"aigreur\": \"aigreur\",\n  \"aigrirait\": \"aigr\",\n  \"aiguille\": \"aiguill\",\n  \"aiguilles\": \"aiguill\",\n  \"aiguillon\": \"aiguillon\",\n  \"aiguiser\": \"aiguis\",\n  \"aigus\": \"aigus\",\n  \"aile\": \"ail\",\n  \"ailes\": \"ail\",\n  \"aille\": \"aill\",\n  \"ailles\": \"aill\",\n  \"ailleurs\": \"ailleur\",\n  \"aima\": \"aim\",\n  \"aimable\": \"aimabl\",\n  \"aimables\": \"aimabl\",\n  \"aimaient\": \"aim\",\n  \"aimais\": \"aim\",\n  \"aimait\": \"aim\",\n  \"aimant\": \"aim\",\n  \"aimât\": \"aim\",\n  \"aime\": \"aim\",\n  \"aimé\": \"aim\",\n  \"aimée\": \"aim\",\n  \"aimées\": \"aim\",\n  \"aiment\": \"aiment\",\n  \"aimer\": \"aim\",\n  \"aimera\": \"aim\",\n  \"aimerai\": \"aim\",\n  \"aimerais\": \"aim\",\n  \"aimerait\": \"aim\",\n  \"aimerez\": \"aim\",\n  \"aimes\": \"aim\",\n  \"aimés\": \"aim\",\n  \"aimez\": \"aim\",\n  \"aimiez\": \"aim\",\n  \"aimons\": \"aimon\",\n  \"aine\": \"ain\",\n  \"aîné\": \"aîn\",\n  \"aînée\": \"aîn\",\n  \"aînés\": \"aîn\",\n  \"ainsi\": \"ains\",\n  \"air\": \"air\",\n  \"aire\": \"air\",\n  \"airs\": \"air\",\n  \"aisance\": \"aisanc\",\n  \"aise\": \"ais\",\n  \"aisé\": \"ais\",\n  \"aisées\": \"ais\",\n  \"aisément\": \"ais\",\n  \"aisés\": \"ais\",\n  \"ait\": \"ait\",\n  \"ajournement\": \"ajourn\",\n  \"ajouta\": \"ajout\",\n  \"ajoutaient\": \"ajout\",\n  \"ajoutait\": \"ajout\",\n  \"ajoutant\": \"ajout\",\n  \"ajoute\": \"ajout\",\n  \"ajouté\": \"ajout\",\n  \"ajoutées\": \"ajout\",\n  \"ajouter\": \"ajout\",\n  \"ajoutera\": \"ajout\",\n  \"ajouterai\": \"ajout\",\n  \"ajouteraient\": \"ajout\",\n  \"ajouterais\": \"ajout\",\n  \"ajoutèrent\": \"ajout\",\n  \"ajouterez\": \"ajout\",\n  \"ajouterons\": \"ajout\",\n  \"ajuster\": \"ajust\",\n  \"al\": \"al\",\n  \"alabama\": \"alabam\",\n  \"alacoque\": \"alacoqu\",\n  \"alari\": \"alar\",\n  \"alarma\": \"alarm\",\n  \"alarmaient\": \"alarm\",\n  \"alarmants\": \"alarm\",\n  \"alarme\": \"alarm\",\n  \"alarmé\": \"alarm\",\n  \"alarmée\": \"alarm\",\n  \"alarmer\": \"alarm\",\n  \"alarmes\": \"alarm\",\n  \"alas\": \"alas\",\n  \"albâtre\": \"albâtr\",\n  \"albermale\": \"albermal\",\n  \"album\": \"album\",\n  \"alcooliques\": \"alcool\",\n  \"ale\": \"ale\",\n  \"aléa\": \"alé\",\n  \"alembert\": \"alembert\",\n  \"alençon\": \"alençon\",\n  \"alerte\": \"alert\",\n  \"alertes\": \"alert\",\n  \"alexandre\": \"alexandr\",\n  \"alfieri\": \"alfier\",\n  \"alfred\": \"alfred\",\n  \"alger\": \"alger\",\n  \"alhambra\": \"alhambr\",\n  \"aliène\": \"alien\",\n  \"alignées\": \"align\",\n  \"aligre\": \"aligr\",\n  \"aliment\": \"aliment\",\n  \"alimentation\": \"aliment\",\n  \"alimenter\": \"aliment\",\n  \"alimento\": \"alimento\",\n  \"alinéa\": \"aliné\",\n  \"all\": \"all\",\n  \"alla\": \"alla\",\n  \"allahabad\": \"allahabad\",\n  \"allaient\": \"allaient\",\n  \"allais\": \"allais\",\n  \"allait\": \"allait\",\n  \"allant\": \"allant\",\n  \"allât\": \"allât\",\n  \"allé\": \"allé\",\n  \"alléché\": \"allech\",\n  \"alléchés\": \"allech\",\n  \"allée\": \"allé\",\n  \"allées\": \"allé\",\n  \"allégation\": \"alleg\",\n  \"allege\": \"alleg\",\n  \"allège\": \"alleg\",\n  \"allègre\": \"allegr\",\n  \"allégresse\": \"allégress\",\n  \"alléguant\": \"allégu\",\n  \"allemagne\": \"allemagn\",\n  \"allemand\": \"allemand\",\n  \"allemande\": \"allemand\",\n  \"allemands\": \"allemand\",\n  \"aller\": \"aller\",\n  \"allèrent\": \"allèrent\",\n  \"allés\": \"allé\",\n  \"allez\": \"allez\",\n  \"alliage\": \"alliag\",\n  \"alliance\": \"allianc\",\n  \"allié\": \"alli\",\n  \"alliés\": \"alli\",\n  \"alliez\": \"alli\",\n  \"alligators\": \"alligator\",\n  \"allions\": \"allion\",\n  \"allocution\": \"allocu\",\n  \"allonge\": \"allong\",\n  \"allongeait\": \"allong\",\n  \"allongée\": \"allong\",\n  \"allons\": \"allon\",\n  \"alloue\": \"allou\",\n  \"alluma\": \"allum\",\n  \"allumait\": \"allum\",\n  \"allume\": \"allum\",\n  \"allumé\": \"allum\",\n  \"allumée\": \"allum\",\n  \"allumées\": \"allum\",\n  \"allumer\": \"allum\",\n  \"allumés\": \"allum\",\n  \"allure\": \"allur\",\n  \"allures\": \"allur\",\n  \"allusion\": \"allus\",\n  \"allusions\": \"allus\",\n  \"almanach\": \"almanach\",\n  \"almaviva\": \"almaviv\",\n  \"alors\": \"alor\",\n  \"alouettes\": \"alouet\",\n  \"alourdie\": \"alourd\",\n  \"alpes\": \"alpe\",\n  \"alphabet\": \"alphabet\",\n  \"alphabets\": \"alphabet\",\n  \"alsace\": \"alsac\",\n  \"also\": \"also\",\n  \"altamira\": \"altam\",\n  \"altéra\": \"alter\",\n  \"altérait\": \"alter\",\n  \"altéré\": \"alter\",\n  \"altérée\": \"alter\",\n  \"altérer\": \"alter\",\n  \"altérés\": \"alter\",\n  \"alternative\": \"altern\",\n  \"alternatives\": \"altern\",\n  \"altesse\": \"altess\",\n  \"altesses\": \"altess\",\n  \"altier\": \"alti\",\n  \"altière\": \"altier\",\n  \"altitude\": \"altitud\",\n  \"alvizi\": \"alviz\",\n  \"alzar\": \"alzar\",\n  \"ama\": \"ama\",\n  \"amabilité\": \"amabl\",\n  \"amadoué\": \"amadou\",\n  \"amadouer\": \"amadou\",\n  \"amai\": \"amai\",\n  \"amaigris\": \"amaigr\",\n  \"amand\": \"amand\",\n  \"amanda\": \"amand\",\n  \"amant\": \"amant\",\n  \"amantes\": \"amant\",\n  \"amants\": \"amant\",\n  \"amarres\": \"amarr\",\n  \"amarrés\": \"amarr\",\n  \"amas\": \"amas\",\n  \"amassaient\": \"amass\",\n  \"amassé\": \"amass\",\n  \"amassée\": \"amass\",\n  \"amateur\": \"amateur\",\n  \"amateurs\": \"amateur\",\n  \"ambassade\": \"ambassad\",\n  \"ambassadeur\": \"ambassadeur\",\n  \"ambassadeurs\": \"ambassadeur\",\n  \"ambiguë\": \"ambigu\",\n  \"ambitieuse\": \"ambiti\",\n  \"ambitieux\": \"ambiti\",\n  \"ambition\": \"ambit\",\n  \"ambulance\": \"ambul\",\n  \"ambulant\": \"ambul\",\n  \"ambulantes\": \"ambul\",\n  \"ambulants\": \"ambul\",\n  \"âme\": \"âme\",\n  \"amena\": \"amen\",\n  \"aménagé\": \"aménag\",\n  \"aménagements\": \"aménag\",\n  \"amenait\": \"amen\",\n  \"amende\": \"amend\",\n  \"amendes\": \"amend\",\n  \"amène\": \"amen\",\n  \"amené\": \"amen\",\n  \"amenée\": \"amen\",\n  \"amener\": \"amen\",\n  \"amènera\": \"amen\",\n  \"amènerai\": \"amen\",\n  \"amènerait\": \"amen\",\n  \"amenez\": \"amen\",\n  \"ameni\": \"amen\",\n  \"amer\": \"amer\",\n  \"amère\": \"amer\",\n  \"amèrement\": \"amer\",\n  \"amères\": \"amer\",\n  \"américain\": \"américain\",\n  \"américaine\": \"américain\",\n  \"américains\": \"américain\",\n  \"american\": \"american\",\n  \"amérique\": \"amer\",\n  \"amers\": \"amer\",\n  \"amertume\": \"amertum\",\n  \"âmes\": \"âme\",\n  \"ameublement\": \"ameubl\",\n  \"ameutant\": \"ameut\",\n  \"ami\": \"ami\",\n  \"amiable\": \"amiabl\",\n  \"amical\": \"amical\",\n  \"amicale\": \"amical\",\n  \"amicalement\": \"amical\",\n  \"amicizia\": \"amicizi\",\n  \"amie\": \"ami\",\n  \"amiens\": \"amien\",\n  \"amies\": \"ami\",\n  \"amis\": \"amis\",\n  \"amitié\": \"amiti\",\n  \"amitiés\": \"amiti\",\n  \"amoindri\": \"amoindr\",\n  \"amor\": \"amor\",\n  \"amorce\": \"amorc\",\n  \"amorces\": \"amorc\",\n  \"amortir\": \"amort\",\n  \"amortirait\": \"amort\",\n  \"amour\": \"amour\",\n  \"amourachée\": \"amourach\",\n  \"amoureuse\": \"amour\",\n  \"amoureusement\": \"amour\",\n  \"amoureux\": \"amour\",\n  \"amours\": \"amour\",\n  \"amphigouriques\": \"amphigour\",\n  \"amphion\": \"amphion\",\n  \"amphithéâtre\": \"amphithéâtr\",\n  \"ample\": \"ample\",\n  \"amplification\": \"amplif\",\n  \"amplifications\": \"amplif\",\n  \"amputés\": \"amput\",\n  \"amusa\": \"amus\",\n  \"amusaient\": \"amus\",\n  \"amusait\": \"amus\",\n  \"amusant\": \"amus\",\n  \"amusante\": \"amus\",\n  \"amusantes\": \"amus\",\n  \"amusants\": \"amus\",\n  \"amuse\": \"amus\",\n  \"amusé\": \"amus\",\n  \"amusement\": \"amus\",\n  \"amuser\": \"amus\",\n  \"amusera\": \"amus\",\n  \"an\": \"an\",\n  \"anachorète\": \"anachoret\",\n  \"anachronisme\": \"anachron\",\n  \"analyser\": \"analys\",\n  \"ananas\": \"anan\",\n  \"anathème\": \"anathem\",\n  \"anathèmes\": \"anathem\",\n  \"ancêtres\": \"ancêtr\",\n  \"ancien\": \"ancien\",\n  \"ancienne\": \"ancien\",\n  \"anciennes\": \"ancien\",\n  \"anciens\": \"ancien\",\n  \"ancre\": \"ancre\",\n  \"ancrés\": \"ancré\",\n  \"and\": \"and\",\n  \"andaman\": \"andaman\",\n  \"anderson\": \"anderson\",\n  \"andrew\": \"andrew\",\n  \"andryane\": \"andryan\",\n  \"anéanti\": \"anéant\",\n  \"anéantie\": \"anéant\",\n  \"anéantir\": \"anéant\",\n  \"anéantis\": \"anéant\",\n  \"anéantissait\": \"anéant\",\n  \"anéantit\": \"anéant\",\n  \"anecdote\": \"anecdot\",\n  \"anecdotes\": \"anecdot\",\n  \"anecdotique\": \"anecdot\",\n  \"ânerie\": \"âner\",\n  \"anetta\": \"anet\",\n  \"ange\": \"ange\",\n  \"angela\": \"angel\",\n  \"angelica\": \"angelic\",\n  \"angélina\": \"angélin\",\n  \"angélique\": \"angel\",\n  \"anges\": \"ange\",\n  \"anglais\": \"anglais\",\n  \"anglaise\": \"anglais\",\n  \"anglaises\": \"anglais\",\n  \"angle\": \"angle\",\n  \"angles\": \"angle\",\n  \"angleterre\": \"angleterr\",\n  \"anglo\": \"anglo\",\n  \"angoisse\": \"angoiss\",\n  \"angoisses\": \"angoiss\",\n  \"angoulême\": \"angoulêm\",\n  \"aniken\": \"aniken\",\n  \"anima\": \"anim\",\n  \"animaient\": \"anim\",\n  \"animait\": \"anim\",\n  \"animal\": \"animal\",\n  \"animant\": \"anim\",\n  \"animation\": \"anim\",\n  \"animaux\": \"animal\",\n  \"anime\": \"anim\",\n  \"animé\": \"anim\",\n  \"animée\": \"anim\",\n  \"animées\": \"anim\",\n  \"animer\": \"anim\",\n  \"animèrent\": \"anim\",\n  \"animés\": \"anim\",\n  \"annales\": \"annal\",\n  \"annam\": \"annam\",\n  \"anneau\": \"anneau\",\n  \"année\": \"anné\",\n  \"années\": \"anné\",\n  \"annexait\": \"annex\",\n  \"annibal\": \"annibal\",\n  \"anno\": \"anno\",\n  \"annonça\": \"annonc\",\n  \"annonçaient\": \"annonc\",\n  \"annonçait\": \"annonc\",\n  \"annonçant\": \"annonc\",\n  \"annonce\": \"annonc\",\n  \"annoncé\": \"annonc\",\n  \"annoncée\": \"annonc\",\n  \"annoncées\": \"annonc\",\n  \"annoncent\": \"annoncent\",\n  \"annoncer\": \"annonc\",\n  \"annoncerait\": \"annonc\",\n  \"annoncèrent\": \"annonc\",\n  \"annoncerez\": \"annonc\",\n  \"annonces\": \"annonc\",\n  \"annoncés\": \"annonc\",\n  \"annuel\": \"annuel\",\n  \"annuelle\": \"annuel\",\n  \"annuellement\": \"annuel\",\n  \"annulé\": \"annul\",\n  \"annulée\": \"annul\",\n  \"annuleront\": \"annul\",\n  \"anobli\": \"anobl\",\n  \"anoblir\": \"anobl\",\n  \"anoblis\": \"anobl\",\n  \"anoblissement\": \"anobl\",\n  \"anoblit\": \"anobl\",\n  \"anodines\": \"anodin\",\n  \"ânonna\": \"ânon\",\n  \"anonyme\": \"anonym\",\n  \"anonymement\": \"anonym\",\n  \"anonymes\": \"anonym\",\n  \"ans\": \"an\",\n  \"anse\": \"anse\",\n  \"antagoniste\": \"antagon\",\n  \"antérieure\": \"antérieur\",\n  \"antérieurs\": \"antérieur\",\n  \"anthropophages\": \"anthropophag\",\n  \"anti\": \"anti\",\n  \"antibes\": \"antib\",\n  \"antichambre\": \"antichambr\",\n  \"antichambres\": \"antichambr\",\n  \"antidata\": \"antidat\",\n  \"antidatée\": \"antidat\",\n  \"antigénéreuses\": \"antigéner\",\n  \"antijacobine\": \"antijacobin\",\n  \"antimonarchique\": \"antimonarch\",\n  \"antipathie\": \"antipath\",\n  \"antipathique\": \"antipath\",\n  \"antipode\": \"antipod\",\n  \"antipodes\": \"antipod\",\n  \"antiquaires\": \"antiquair\",\n  \"antique\": \"antiqu\",\n  \"antiques\": \"antiqu\",\n  \"antiquité\": \"antiqu\",\n  \"antiquités\": \"antiqu\",\n  \"antithèse\": \"antithes\",\n  \"antoine\": \"antoin\",\n  \"anxiété\": \"anxiet\",\n  \"anxieux\": \"anxieux\",\n  \"any\": \"any\",\n  \"aouda\": \"aoud\",\n  \"août\": \"août\",\n  \"apaisa\": \"apais\",\n  \"apaisée\": \"apais\",\n  \"apaiser\": \"apais\",\n  \"apaisera\": \"apais\",\n  \"apathie\": \"apath\",\n  \"apathique\": \"apath\",\n  \"apennin\": \"apennin\",\n  \"apens\": \"apen\",\n  \"apercevait\": \"apercev\",\n  \"apercevant\": \"apercev\",\n  \"apercevoir\": \"apercevoir\",\n  \"apercevons\": \"apercevon\",\n  \"apercevrait\": \"apercevr\",\n  \"aperçois\": \"aperçois\",\n  \"aperçoit\": \"aperçoit\",\n  \"aperçoive\": \"aperço\",\n  \"aperçu\": \"aperçu\",\n  \"aperçue\": \"aperçu\",\n  \"aperçurent\": \"aperçurent\",\n  \"aperçus\": \"aperçus\",\n  \"aperçut\": \"aperçut\",\n  \"aperçût\": \"aperçût\",\n  \"aplaties\": \"aplat\",\n  \"aplatit\": \"aplat\",\n  \"aplomb\": \"aplomb\",\n  \"apocalypse\": \"apocalyps\",\n  \"apocalyptique\": \"apocalypt\",\n  \"apoplectique\": \"apoplect\",\n  \"apoplexie\": \"apoplex\",\n  \"apoplexies\": \"apoplex\",\n  \"apostat\": \"apostat\",\n  \"aposté\": \"apost\",\n  \"apostille\": \"apostill\",\n  \"apostolique\": \"apostol\",\n  \"apostoliques\": \"apostol\",\n  \"apothicaire\": \"apothicair\",\n  \"apôtre\": \"apôtr\",\n  \"apôtres\": \"apôtr\",\n  \"apparaissaient\": \"apparaiss\",\n  \"apparaissait\": \"apparaiss\",\n  \"apparait\": \"appar\",\n  \"apparaît\": \"apparaît\",\n  \"apparaîtrait\": \"apparaîtr\",\n  \"apparaître\": \"apparaîtr\",\n  \"apparat\": \"apparat\",\n  \"appareil\": \"appareil\",\n  \"appareillait\": \"appareil\",\n  \"appareiller\": \"appareil\",\n  \"appareils\": \"appareil\",\n  \"apparemment\": \"apparent\",\n  \"apparence\": \"apparent\",\n  \"apparences\": \"apparent\",\n  \"apparent\": \"apparent\",\n  \"apparente\": \"apparent\",\n  \"apparition\": \"apparit\",\n  \"apparitions\": \"apparit\",\n  \"appartement\": \"appart\",\n  \"appartements\": \"appart\",\n  \"appartenaient\": \"apparten\",\n  \"appartenait\": \"apparten\",\n  \"appartenant\": \"apparten\",\n  \"appartenir\": \"apparten\",\n  \"appartenu\": \"appartenu\",\n  \"appartiendront\": \"appartiendront\",\n  \"appartiennent\": \"appartiennent\",\n  \"appartient\": \"appartient\",\n  \"appartint\": \"appartint\",\n  \"appartînt\": \"appartînt\",\n  \"apparu\": \"apparu\",\n  \"apparut\": \"apparut\",\n  \"appât\": \"appât\",\n  \"appel\": \"appel\",\n  \"appela\": \"appel\",\n  \"appelaient\": \"appel\",\n  \"appelait\": \"appel\",\n  \"appelant\": \"appel\",\n  \"appelât\": \"appel\",\n  \"appelé\": \"appel\",\n  \"appelée\": \"appel\",\n  \"appelées\": \"appel\",\n  \"appeler\": \"appel\",\n  \"appelés\": \"appel\",\n  \"appelez\": \"appel\",\n  \"appelle\": \"appel\",\n  \"appellent\": \"appellent\",\n  \"appellera\": \"appel\",\n  \"appellerai\": \"appel\",\n  \"appellerait\": \"appel\",\n  \"appellerez\": \"appel\",\n  \"appelleront\": \"appel\",\n  \"appelles\": \"appel\",\n  \"appendices\": \"appendic\",\n  \"appert\": \"appert\",\n  \"appesantie\": \"appesant\",\n  \"appesantis\": \"appesant\",\n  \"appétit\": \"appet\",\n  \"applaudi\": \"applaud\",\n  \"applaudie\": \"applaud\",\n  \"applaudir\": \"applaud\",\n  \"applaudirent\": \"applaud\",\n  \"applaudissaient\": \"applaud\",\n  \"applaudissements\": \"applaud\",\n  \"applaudit\": \"applaud\",\n  \"applicables\": \"applic\",\n  \"application\": \"appliqu\",\n  \"appliqua\": \"appliqu\",\n  \"appliquait\": \"appliqu\",\n  \"applique\": \"appliqu\",\n  \"appliqué\": \"appliqu\",\n  \"appliquée\": \"appliqu\",\n  \"appliquer\": \"appliqu\",\n  \"appliquez\": \"appliqu\",\n  \"appoint\": \"appoint\",\n  \"appointements\": \"appoint\",\n  \"appointés\": \"appoint\",\n  \"apporta\": \"apport\",\n  \"apportaient\": \"apport\",\n  \"apportait\": \"apport\",\n  \"apportant\": \"apport\",\n  \"apporte\": \"apport\",\n  \"apporté\": \"apport\",\n  \"apportée\": \"apport\",\n  \"apportées\": \"apport\",\n  \"apporter\": \"apport\",\n  \"apporterai\": \"apport\",\n  \"apporterait\": \"apport\",\n  \"apportés\": \"apport\",\n  \"apportez\": \"apport\",\n  \"apportiez\": \"apport\",\n  \"apposa\": \"appos\",\n  \"apposer\": \"appos\",\n  \"apposés\": \"appos\",\n  \"apprécie\": \"apprec\",\n  \"appréciée\": \"appréci\",\n  \"apprécier\": \"appréci\",\n  \"appréciés\": \"appréci\",\n  \"appréhension\": \"appréhens\",\n  \"apprenaient\": \"appren\",\n  \"apprenait\": \"appren\",\n  \"apprenant\": \"appren\",\n  \"apprend\": \"apprend\",\n  \"apprendra\": \"apprendr\",\n  \"apprendrais\": \"apprendr\",\n  \"apprendrait\": \"apprendr\",\n  \"apprendre\": \"apprendr\",\n  \"apprendrez\": \"apprendr\",\n  \"apprendrions\": \"apprendr\",\n  \"apprendront\": \"apprendront\",\n  \"apprends\": \"apprend\",\n  \"apprenez\": \"appren\",\n  \"apprennes\": \"appren\",\n  \"apprêtait\": \"apprêt\",\n  \"apprêter\": \"apprêt\",\n  \"apprêtons\": \"apprêton\",\n  \"apprirent\": \"apprirent\",\n  \"appris\": \"appris\",\n  \"apprise\": \"appris\",\n  \"apprises\": \"appris\",\n  \"apprit\": \"apprit\",\n  \"apprivoisés\": \"apprivois\",\n  \"approbation\": \"approb\",\n  \"approcha\": \"approch\",\n  \"approchaient\": \"approch\",\n  \"approchait\": \"approch\",\n  \"approchant\": \"approch\",\n  \"approche\": \"approch\",\n  \"approché\": \"approch\",\n  \"approchée\": \"approch\",\n  \"approchent\": \"approchent\",\n  \"approcher\": \"approch\",\n  \"approchèrent\": \"approch\",\n  \"approches\": \"approch\",\n  \"approchés\": \"approch\",\n  \"approfondie\": \"approfond\",\n  \"approprié\": \"appropri\",\n  \"approuva\": \"approuv\",\n  \"approuvé\": \"approuv\",\n  \"approuvée\": \"approuv\",\n  \"approuvera\": \"approuv\",\n  \"approuves\": \"approuv\",\n  \"appui\": \"appui\",\n  \"appuie\": \"appui\",\n  \"appuya\": \"appui\",\n  \"appuyaient\": \"appui\",\n  \"appuyais\": \"appui\",\n  \"appuyait\": \"appui\",\n  \"appuyant\": \"appui\",\n  \"appuyé\": \"appui\",\n  \"appuyée\": \"appui\",\n  \"appuyées\": \"appui\",\n  \"appuyer\": \"appui\",\n  \"âpre\": \"âpre\",\n  \"après\": \"apres\",\n  \"april\": \"april\",\n  \"aptitude\": \"aptitud\",\n  \"aquarelle\": \"aquarel\",\n  \"aquetta\": \"aquet\",\n  \"aquilin\": \"aquilin\",\n  \"aquitaine\": \"aquitain\",\n  \"arabe\": \"arab\",\n  \"arabes\": \"arab\",\n  \"arabique\": \"arab\",\n  \"araceli\": \"aracel\",\n  \"arbitraire\": \"arbitrair\",\n  \"arbitraires\": \"arbitrair\",\n  \"arbitre\": \"arbitr\",\n  \"arbitres\": \"arbitr\",\n  \"arboré\": \"arbor\",\n  \"arborer\": \"arbor\",\n  \"arborescentes\": \"arborescent\",\n  \"arbre\": \"arbre\",\n  \"arbres\": \"arbre\",\n  \"arbrisseaux\": \"arbrisseau\",\n  \"arc\": \"arc\",\n  \"arceaux\": \"arceau\",\n  \"arche\": \"arche\",\n  \"archet\": \"archet\",\n  \"archevêché\": \"archevêch\",\n  \"archevêque\": \"archevêqu\",\n  \"archevêques\": \"archevêqu\",\n  \"archiduc\": \"archiduc\",\n  \"archiépiscopal\": \"archiépiscopal\",\n  \"archiépiscopale\": \"archiépiscopal\",\n  \"archifolle\": \"archifoll\",\n  \"archiprêtre\": \"archiprêtr\",\n  \"architecte\": \"architect\",\n  \"architecture\": \"architectur\",\n  \"archives\": \"archiv\",\n  \"arcole\": \"arcol\",\n  \"arçon\": \"arçon\",\n  \"ardemment\": \"ardemment\",\n  \"ardent\": \"ardent\",\n  \"ardente\": \"ardent\",\n  \"ardentes\": \"ardent\",\n  \"ardents\": \"ardent\",\n  \"ardeur\": \"ardeur\",\n  \"ardu\": \"ardu\",\n  \"are\": \"are\",\n  \"arecs\": \"arec\",\n  \"aresi\": \"ares\",\n  \"arêtes\": \"arêt\",\n  \"argent\": \"argent\",\n  \"argentée\": \"argent\",\n  \"argile\": \"argil\",\n  \"argument\": \"argument\",\n  \"arguments\": \"argument\",\n  \"arides\": \"arid\",\n  \"arioste\": \"ariost\",\n  \"aristocrate\": \"aristocrat\",\n  \"aristocratie\": \"aristocrat\",\n  \"aristocratique\": \"aristocrat\",\n  \"aristocratiques\": \"aristocrat\",\n  \"arithmétique\": \"arithmet\",\n  \"arkansas\": \"arkans\",\n  \"arlequin\": \"arlequin\",\n  \"arma\": \"arma\",\n  \"armait\": \"armait\",\n  \"armant\": \"armant\",\n  \"armateur\": \"armateur\",\n  \"armateurs\": \"armateur\",\n  \"arme\": \"arme\",\n  \"armé\": \"armé\",\n  \"armée\": \"armé\",\n  \"armées\": \"armé\",\n  \"arméniennes\": \"arménien\",\n  \"arméniens\": \"arménien\",\n  \"armer\": \"armer\",\n  \"armes\": \"arme\",\n  \"armés\": \"armé\",\n  \"armide\": \"armid\",\n  \"armoire\": \"armoir\",\n  \"armoires\": \"armoir\",\n  \"armoiries\": \"armoir\",\n  \"armonica\": \"armonic\",\n  \"armurier\": \"armuri\",\n  \"arnauld\": \"arnauld\",\n  \"arpent\": \"arpent\",\n  \"arpents\": \"arpent\",\n  \"arquebuser\": \"arquebus\",\n  \"arquées\": \"arqué\",\n  \"arqués\": \"arqué\",\n  \"arracha\": \"arrach\",\n  \"arrachait\": \"arrach\",\n  \"arrachant\": \"arrach\",\n  \"arrache\": \"arrach\",\n  \"arraché\": \"arrach\",\n  \"arrachée\": \"arrach\",\n  \"arrachent\": \"arrachent\",\n  \"arracher\": \"arrach\",\n  \"arrachèrent\": \"arrach\",\n  \"arrachés\": \"arrach\",\n  \"arrange\": \"arrang\",\n  \"arrangé\": \"arrang\",\n  \"arrangea\": \"arrang\",\n  \"arrangeaient\": \"arrang\",\n  \"arrangeait\": \"arrang\",\n  \"arrangée\": \"arrang\",\n  \"arrangées\": \"arrang\",\n  \"arrangement\": \"arrang\",\n  \"arrangements\": \"arrang\",\n  \"arrangent\": \"arrangent\",\n  \"arranger\": \"arrang\",\n  \"arrangera\": \"arrang\",\n  \"arrangerait\": \"arrang\",\n  \"arrangés\": \"arrang\",\n  \"arrérages\": \"arrérag\",\n  \"arrestation\": \"arrest\",\n  \"arrestations\": \"arrest\",\n  \"arrêt\": \"arrêt\",\n  \"arrêta\": \"arrêt\",\n  \"arrêtaient\": \"arrêt\",\n  \"arrêtait\": \"arrêt\",\n  \"arrêtant\": \"arrêt\",\n  \"arrête\": \"arrêt\",\n  \"arrêté\": \"arrêt\",\n  \"arrêtée\": \"arrêt\",\n  \"arrêtées\": \"arrêt\",\n  \"arrêtent\": \"arrêtent\",\n  \"arrêter\": \"arrêt\",\n  \"arrêtera\": \"arrêt\",\n  \"arrêterai\": \"arrêt\",\n  \"arrêterait\": \"arrêt\",\n  \"arrêtèrent\": \"arrêt\",\n  \"arrêterons\": \"arrêt\",\n  \"arrêteront\": \"arrêt\",\n  \"arrêtés\": \"arrêt\",\n  \"arrêtez\": \"arrêt\",\n  \"arrêtiez\": \"arrêt\",\n  \"arrêtons\": \"arrêton\",\n  \"arrêts\": \"arrêt\",\n  \"arrhes\": \"arrhe\",\n  \"arrien\": \"arrien\",\n  \"arrière\": \"arrier\",\n  \"arriva\": \"arriv\",\n  \"arrivai\": \"arriv\",\n  \"arrivaient\": \"arriv\",\n  \"arrivais\": \"arriv\",\n  \"arrivait\": \"arriv\",\n  \"arrivant\": \"arriv\",\n  \"arrivants\": \"arriv\",\n  \"arrivât\": \"arriv\",\n  \"arrive\": \"arriv\",\n  \"arrivé\": \"arriv\",\n  \"arrivée\": \"arriv\",\n  \"arrivées\": \"arriv\",\n  \"arrivent\": \"arrivent\",\n  \"arriver\": \"arriv\",\n  \"arrivera\": \"arriv\",\n  \"arriveraient\": \"arriv\",\n  \"arriverais\": \"arriv\",\n  \"arriverait\": \"arriv\",\n  \"arrivèrent\": \"arriv\",\n  \"arriverez\": \"arriv\",\n  \"arriverions\": \"arriv\",\n  \"arriverons\": \"arriv\",\n  \"arriveront\": \"arriv\",\n  \"arrives\": \"arriv\",\n  \"arrivés\": \"arriv\",\n  \"arrivez\": \"arriv\",\n  \"arrivons\": \"arrivon\",\n  \"arrogante\": \"arrog\",\n  \"arrondies\": \"arrond\",\n  \"arrondis\": \"arrond\",\n  \"arrondissait\": \"arrond\",\n  \"arrondissement\": \"arrond\",\n  \"arrondit\": \"arrond\",\n  \"arrosé\": \"arros\",\n  \"arrosées\": \"arros\",\n  \"arsenal\": \"arsenal\",\n  \"arsène\": \"arsen\",\n  \"arsenic\": \"arsenic\",\n  \"art\": \"art\",\n  \"arte\": \"arte\",\n  \"artère\": \"arter\",\n  \"arthémidore\": \"arthémidor\",\n  \"article\": \"articl\",\n  \"articles\": \"articl\",\n  \"articulait\": \"articul\",\n  \"articulant\": \"articul\",\n  \"articulée\": \"articul\",\n  \"articuler\": \"articul\",\n  \"articulés\": \"articul\",\n  \"artifice\": \"artific\",\n  \"artillerie\": \"artiller\",\n  \"artisans\": \"artisan\",\n  \"artiste\": \"artist\",\n  \"artistes\": \"artist\",\n  \"arts\": \"art\",\n  \"as\": \"as\",\n  \"ascagne\": \"ascagn\",\n  \"ascanio\": \"ascanio\",\n  \"ascétique\": \"ascet\",\n  \"asie\": \"asi\",\n  \"asile\": \"asil\",\n  \"aspect\": \"aspect\",\n  \"aspects\": \"aspect\",\n  \"aspérités\": \"asper\",\n  \"asphaltite\": \"asphaltit\",\n  \"asphyxie\": \"asphyx\",\n  \"asphyxié\": \"asphyxi\",\n  \"aspiciam\": \"aspiciam\",\n  \"aspira\": \"aspir\",\n  \"aspirait\": \"aspir\",\n  \"aspirants\": \"aspir\",\n  \"aspirations\": \"aspir\",\n  \"aspire\": \"aspir\",\n  \"aspirer\": \"aspir\",\n  \"aspirez\": \"aspir\",\n  \"assaillaient\": \"assaill\",\n  \"assaillant\": \"assaill\",\n  \"assaillants\": \"assaill\",\n  \"assailli\": \"assaill\",\n  \"assaillie\": \"assaill\",\n  \"assaillis\": \"assaill\",\n  \"assassin\": \"assassin\",\n  \"assassinait\": \"assassin\",\n  \"assassinat\": \"assassinat\",\n  \"assassine\": \"assassin\",\n  \"assassiné\": \"assassin\",\n  \"assassiner\": \"assassin\",\n  \"assassinés\": \"assassin\",\n  \"assassins\": \"assassin\",\n  \"assaut\": \"assaut\",\n  \"assembla\": \"assembl\",\n  \"assemblée\": \"assembl\",\n  \"assembler\": \"assembl\",\n  \"assentiment\": \"assent\",\n  \"asseoir\": \"asseoir\",\n  \"assertions\": \"assert\",\n  \"asseyaient\": \"assei\",\n  \"asseyait\": \"assei\",\n  \"asseyant\": \"assei\",\n  \"asseyez\": \"assei\",\n  \"assez\": \"assez\",\n  \"assidue\": \"assidu\",\n  \"assiduité\": \"assidu\",\n  \"assiduités\": \"assidu\",\n  \"assidûment\": \"assidû\",\n  \"assied\": \"assied\",\n  \"assiégé\": \"assieg\",\n  \"assiégée\": \"assieg\",\n  \"assiéger\": \"assieg\",\n  \"assiégés\": \"assieg\",\n  \"assiette\": \"assiet\",\n  \"assignats\": \"assignat\",\n  \"assigne\": \"assign\",\n  \"assigné\": \"assign\",\n  \"assigner\": \"assign\",\n  \"assirent\": \"assirent\",\n  \"assis\": \"assis\",\n  \"assise\": \"assis\",\n  \"assises\": \"assis\",\n  \"assista\": \"assist\",\n  \"assistaient\": \"assist\",\n  \"assistait\": \"assist\",\n  \"assistance\": \"assist\",\n  \"assistant\": \"assist\",\n  \"assistants\": \"assist\",\n  \"assiste\": \"assist\",\n  \"assisté\": \"assist\",\n  \"assister\": \"assist\",\n  \"assistera\": \"assist\",\n  \"assit\": \"assit\",\n  \"associaient\": \"associ\",\n  \"association\": \"associ\",\n  \"associations\": \"associ\",\n  \"associe\": \"assoc\",\n  \"associé\": \"associ\",\n  \"assoient\": \"assoient\",\n  \"assombri\": \"assombr\",\n  \"assombrit\": \"assombr\",\n  \"assommant\": \"assomm\",\n  \"assommé\": \"assomm\",\n  \"assommer\": \"assomm\",\n  \"assommés\": \"assomm\",\n  \"assommoir\": \"assommoir\",\n  \"assoupie\": \"assoup\",\n  \"assoupissantes\": \"assoup\",\n  \"assoupissement\": \"assoup\",\n  \"assoupit\": \"assoup\",\n  \"assourdissant\": \"assourd\",\n  \"assourdit\": \"assourd\",\n  \"assura\": \"assur\",\n  \"assuraient\": \"assur\",\n  \"assurait\": \"assur\",\n  \"assurance\": \"assur\",\n  \"assurances\": \"assur\",\n  \"assure\": \"assur\",\n  \"assuré\": \"assur\",\n  \"assurée\": \"assur\",\n  \"assurées\": \"assur\",\n  \"assurément\": \"assur\",\n  \"assurer\": \"assur\",\n  \"assurerait\": \"assur\",\n  \"assurerez\": \"assur\",\n  \"assureront\": \"assur\",\n  \"assurghur\": \"assurghur\",\n  \"astéroïdes\": \"astéroïd\",\n  \"asthme\": \"asthme\",\n  \"asti\": \"asti\",\n  \"astre\": \"astre\",\n  \"astreindre\": \"astreindr\",\n  \"astreins\": \"astrein\",\n  \"astres\": \"astre\",\n  \"astrologie\": \"astrolog\",\n  \"astrologique\": \"astrolog\",\n  \"astrologiques\": \"astrolog\",\n  \"astrologues\": \"astrologu\",\n  \"astronomes\": \"astronom\",\n  \"astronomie\": \"astronom\",\n  \"astronomique\": \"astronom\",\n  \"astuce\": \"astuc\",\n  \"at\": \"at\",\n  \"atelier\": \"ateli\",\n  \"athènes\": \"athen\",\n  \"atlantique\": \"atlant\",\n  \"atmosphère\": \"atmospher\",\n  \"atome\": \"atom\",\n  \"atours\": \"atour\",\n  \"atouts\": \"atout\",\n  \"atroce\": \"atroc\",\n  \"atrocement\": \"atroc\",\n  \"atroces\": \"atroc\",\n  \"atrocité\": \"atroc\",\n  \"attacha\": \"attach\",\n  \"attachaient\": \"attach\",\n  \"attachait\": \"attach\",\n  \"attachant\": \"attach\",\n  \"attache\": \"attach\",\n  \"attaché\": \"attach\",\n  \"attachée\": \"attach\",\n  \"attachées\": \"attach\",\n  \"attachement\": \"attach\",\n  \"attachent\": \"attachent\",\n  \"attacher\": \"attach\",\n  \"attachera\": \"attach\",\n  \"attacherai\": \"attach\",\n  \"attacherait\": \"attach\",\n  \"attachèrent\": \"attach\",\n  \"attachés\": \"attach\",\n  \"attaqua\": \"attaqu\",\n  \"attaquaient\": \"attaqu\",\n  \"attaquait\": \"attaqu\",\n  \"attaque\": \"attaqu\",\n  \"attaqué\": \"attaqu\",\n  \"attaquée\": \"attaqu\",\n  \"attaquer\": \"attaqu\",\n  \"attaques\": \"attaqu\",\n  \"attaqués\": \"attaqu\",\n  \"attardé\": \"attard\",\n  \"atteignaient\": \"atteign\",\n  \"atteignait\": \"atteign\",\n  \"atteignirent\": \"atteign\",\n  \"atteignit\": \"atteign\",\n  \"atteindrait\": \"atteindr\",\n  \"atteindre\": \"atteindr\",\n  \"atteint\": \"atteint\",\n  \"atteintes\": \"atteint\",\n  \"atteints\": \"atteint\",\n  \"attelage\": \"attelag\",\n  \"attelages\": \"attelag\",\n  \"attelait\": \"attel\",\n  \"attelé\": \"attel\",\n  \"attelée\": \"attel\",\n  \"attelés\": \"attel\",\n  \"attelle\": \"attel\",\n  \"attenait\": \"atten\",\n  \"attenant\": \"atten\",\n  \"attenante\": \"atten\",\n  \"attend\": \"attend\",\n  \"attendaient\": \"attend\",\n  \"attendais\": \"attend\",\n  \"attendait\": \"attend\",\n  \"attendant\": \"attend\",\n  \"attendent\": \"attendent\",\n  \"attendez\": \"attend\",\n  \"attendirent\": \"attend\",\n  \"attendit\": \"attend\",\n  \"attendons\": \"attendon\",\n  \"attendra\": \"attendr\",\n  \"attendrai\": \"attendr\",\n  \"attendrait\": \"attendr\",\n  \"attendre\": \"attendr\",\n  \"attendri\": \"attendr\",\n  \"attendrie\": \"attendr\",\n  \"attendrir\": \"attendr\",\n  \"attendriraient\": \"attendr\",\n  \"attendris\": \"attendr\",\n  \"attendrissant\": \"attendr\",\n  \"attendrissement\": \"attendr\",\n  \"attendrit\": \"attendr\",\n  \"attends\": \"attend\",\n  \"attendu\": \"attendu\",\n  \"attendue\": \"attendu\",\n  \"attendus\": \"attendus\",\n  \"attente\": \"attent\",\n  \"attenté\": \"attent\",\n  \"attenter\": \"attent\",\n  \"attentif\": \"attent\",\n  \"attentifs\": \"attent\",\n  \"attention\": \"attent\",\n  \"attentions\": \"attent\",\n  \"attentive\": \"attent\",\n  \"attentivement\": \"attent\",\n  \"atterra\": \"atterr\",\n  \"atterrages\": \"atterrag\",\n  \"atterré\": \"atterr\",\n  \"atterrée\": \"atterr\",\n  \"attestaient\": \"attest\",\n  \"attiédi\": \"attied\",\n  \"attira\": \"attir\",\n  \"attiraient\": \"attir\",\n  \"attirait\": \"attir\",\n  \"attire\": \"attir\",\n  \"attiré\": \"attir\",\n  \"attirent\": \"attirent\",\n  \"attirer\": \"attir\",\n  \"attirerait\": \"attir\",\n  \"attirèrent\": \"attir\",\n  \"attirés\": \"attir\",\n  \"attitude\": \"attitud\",\n  \"attraction\": \"attract\",\n  \"attrait\": \"attrait\",\n  \"attrapé\": \"attrap\",\n  \"attrapera\": \"attrap\",\n  \"attrayant\": \"attrai\",\n  \"attrayantes\": \"attrai\",\n  \"attribuaient\": \"attribu\",\n  \"attribuait\": \"attribu\",\n  \"attribué\": \"attribu\",\n  \"attribuée\": \"attribu\",\n  \"attribuer\": \"attribu\",\n  \"attribuera\": \"attribu\",\n  \"attributions\": \"attribu\",\n  \"attristait\": \"attrist\",\n  \"attristé\": \"attrist\",\n  \"attristée\": \"attrist\",\n  \"attrister\": \"attrist\",\n  \"attroupement\": \"attroup\",\n  \"attrouper\": \"attroup\",\n  \"au\": \"au\",\n  \"aubaine\": \"aubain\",\n  \"aubaines\": \"aubain\",\n  \"aube\": \"aub\",\n  \"auberge\": \"auberg\",\n  \"auberges\": \"auberg\",\n  \"aubergistes\": \"auberg\",\n  \"aubigné\": \"aubign\",\n  \"aubry\": \"aubry\",\n  \"auburn\": \"auburn\",\n  \"aucun\": \"aucun\",\n  \"aucune\": \"aucun\",\n  \"aucunement\": \"aucun\",\n  \"audace\": \"audac\",\n  \"audacieuse\": \"audaci\",\n  \"audacieuses\": \"audaci\",\n  \"audacieux\": \"audaci\",\n  \"audience\": \"audienc\",\n  \"audiences\": \"audienc\",\n  \"audit\": \"audit\",\n  \"auditeur\": \"auditeur\",\n  \"auditeurs\": \"auditeur\",\n  \"auditoire\": \"auditoir\",\n  \"augmenta\": \"augment\",\n  \"augmentaient\": \"augment\",\n  \"augmentait\": \"augment\",\n  \"augmentant\": \"augment\",\n  \"augmentation\": \"augment\",\n  \"augmente\": \"augment\",\n  \"augmenté\": \"augment\",\n  \"augmentée\": \"augment\",\n  \"augmenter\": \"augment\",\n  \"augmentera\": \"augment\",\n  \"augmenterait\": \"augment\",\n  \"augure\": \"augur\",\n  \"augurer\": \"augur\",\n  \"auguste\": \"august\",\n  \"augustes\": \"august\",\n  \"augustin\": \"augustin\",\n  \"aujourd\": \"aujourd\",\n  \"aumône\": \"aumôn\",\n  \"aumônes\": \"aumôn\",\n  \"aumônier\": \"aumôni\",\n  \"aunes\": \"aun\",\n  \"auparavant\": \"auparav\",\n  \"auprès\": \"aupres\",\n  \"auquel\": \"auquel\",\n  \"aura\": \"aur\",\n  \"aurai\": \"aur\",\n  \"auraient\": \"aur\",\n  \"aurais\": \"aur\",\n  \"aurait\": \"aur\",\n  \"auras\": \"aur\",\n  \"aureng\": \"aureng\",\n  \"aurez\": \"aur\",\n  \"auriez\": \"aur\",\n  \"aurions\": \"aurion\",\n  \"aurons\": \"auron\",\n  \"auront\": \"auront\",\n  \"aurungabad\": \"aurungabad\",\n  \"aussi\": \"auss\",\n  \"aussitôt\": \"aussitôt\",\n  \"austère\": \"auster\",\n  \"austères\": \"auster\",\n  \"austérité\": \"auster\",\n  \"austral\": \"austral\",\n  \"autant\": \"aut\",\n  \"autel\": \"autel\",\n  \"autels\": \"autel\",\n  \"auteur\": \"auteur\",\n  \"auteurs\": \"auteur\",\n  \"authenticité\": \"authent\",\n  \"auto\": \"auto\",\n  \"automate\": \"automat\",\n  \"automatique\": \"automat\",\n  \"automne\": \"automn\",\n  \"autorisait\": \"autoris\",\n  \"autorisation\": \"autoris\",\n  \"autorisations\": \"autoris\",\n  \"autorise\": \"autoris\",\n  \"autorisé\": \"autoris\",\n  \"autorisée\": \"autoris\",\n  \"autorisent\": \"autorisent\",\n  \"autorisera\": \"autoris\",\n  \"autoriserait\": \"autoris\",\n  \"autorité\": \"autor\",\n  \"autorités\": \"autor\",\n  \"autour\": \"autour\",\n  \"autre\": \"autr\",\n  \"autrefois\": \"autrefois\",\n  \"autrement\": \"autr\",\n  \"autres\": \"autr\",\n  \"autriche\": \"autrich\",\n  \"autrichien\": \"autrichien\",\n  \"autrichienne\": \"autrichien\",\n  \"autrichiennes\": \"autrichien\",\n  \"autrichiens\": \"autrichien\",\n  \"aux\": \"aux\",\n  \"auxiliaire\": \"auxiliair\",\n  \"auxquelles\": \"auxquel\",\n  \"auxquels\": \"auxquel\",\n  \"av\": \"av\",\n  \"avaient\": \"avaient\",\n  \"avais\": \"avais\",\n  \"avait\": \"avait\",\n  \"avala\": \"aval\",\n  \"avalé\": \"aval\",\n  \"avança\": \"avanc\",\n  \"avançaient\": \"avanc\",\n  \"avançait\": \"avanc\",\n  \"avançant\": \"avanc\",\n  \"avance\": \"avanc\",\n  \"avancé\": \"avanc\",\n  \"avancée\": \"avanc\",\n  \"avancement\": \"avanc\",\n  \"avancements\": \"avanc\",\n  \"avancent\": \"avancent\",\n  \"avancer\": \"avanc\",\n  \"avancera\": \"avanc\",\n  \"avancerait\": \"avanc\",\n  \"avancèrent\": \"avanc\",\n  \"avances\": \"avanc\",\n  \"avancés\": \"avanc\",\n  \"avancez\": \"avanc\",\n  \"avanie\": \"avan\",\n  \"avanies\": \"avan\",\n  \"avant\": \"avant\",\n  \"avantage\": \"avantag\",\n  \"avantages\": \"avantag\",\n  \"avantageuse\": \"avantag\",\n  \"avantageusement\": \"avantag\",\n  \"avantageux\": \"avantag\",\n  \"avare\": \"avar\",\n  \"avarice\": \"avaric\",\n  \"avarie\": \"avar\",\n  \"avaries\": \"avar\",\n  \"ave\": \"ave\",\n  \"avec\": \"avec\",\n  \"avenir\": \"aven\",\n  \"aventure\": \"aventur\",\n  \"aventurent\": \"aventurent\",\n  \"aventurer\": \"aventur\",\n  \"aventures\": \"aventur\",\n  \"aventureuse\": \"aventur\",\n  \"aventureux\": \"aventur\",\n  \"avenues\": \"avenu\",\n  \"avéré\": \"aver\",\n  \"averse\": \"avers\",\n  \"aversion\": \"avers\",\n  \"averti\": \"avert\",\n  \"avertie\": \"avert\",\n  \"averties\": \"avert\",\n  \"avertir\": \"avert\",\n  \"avertira\": \"avert\",\n  \"avertis\": \"avert\",\n  \"avertissait\": \"avert\",\n  \"avertissant\": \"avert\",\n  \"avertissement\": \"avert\",\n  \"avertit\": \"avert\",\n  \"aveu\": \"aveu\",\n  \"aveugle\": \"aveugl\",\n  \"aveuglé\": \"aveugl\",\n  \"aveuglée\": \"aveugl\",\n  \"aveuglement\": \"aveugl\",\n  \"aveuglément\": \"aveugl\",\n  \"aveugles\": \"aveugl\",\n  \"aveux\": \"aveux\",\n  \"aveyron\": \"aveyron\",\n  \"avez\": \"avez\",\n  \"avide\": \"avid\",\n  \"avidement\": \"avid\",\n  \"avidité\": \"avid\",\n  \"aviez\": \"avi\",\n  \"avilie\": \"avil\",\n  \"avilir\": \"avil\",\n  \"avilirait\": \"avil\",\n  \"avilissant\": \"avil\",\n  \"avilissantes\": \"avil\",\n  \"avilit\": \"avil\",\n  \"avions\": \"avion\",\n  \"aviron\": \"aviron\",\n  \"avis\": \"avis\",\n  \"avisa\": \"avis\",\n  \"avisais\": \"avis\",\n  \"avisait\": \"avis\",\n  \"avise\": \"avis\",\n  \"avisé\": \"avis\",\n  \"avisée\": \"avis\",\n  \"aviser\": \"avis\",\n  \"aviserai\": \"avis\",\n  \"aviserait\": \"avis\",\n  \"aviserons\": \"avis\",\n  \"avises\": \"avis\",\n  \"avocat\": \"avocat\",\n  \"avocats\": \"avocat\",\n  \"avoine\": \"avoin\",\n  \"avoir\": \"avoir\",\n  \"avons\": \"avon\",\n  \"avoua\": \"avou\",\n  \"avouai\": \"avou\",\n  \"avouait\": \"avou\",\n  \"avouât\": \"avou\",\n  \"avoue\": \"avou\",\n  \"avoué\": \"avou\",\n  \"avouent\": \"avouent\",\n  \"avouer\": \"avou\",\n  \"avouera\": \"avou\",\n  \"avouerai\": \"avou\",\n  \"avouerons\": \"avou\",\n  \"avoués\": \"avou\",\n  \"avouez\": \"avou\",\n  \"avril\": \"avril\",\n  \"avviamento\": \"avviamento\",\n  \"away\": \"away\",\n  \"axe\": \"axe\",\n  \"ayant\": \"ayant\",\n  \"ayez\": \"ayez\",\n  \"aymon\": \"aymon\",\n  \"ayons\": \"ayon\",\n  \"azur\": \"azur\",\n  \"b\": \"b\",\n  \"bab\": \"bab\",\n  \"bâbord\": \"bâbord\",\n  \"babouches\": \"babouch\",\n  \"babylone\": \"babylon\",\n  \"bac\": \"bac\",\n  \"bacchus\": \"bacchus\",\n  \"back\": \"back\",\n  \"bad\": \"bad\",\n  \"badaud\": \"badaud\",\n  \"badauderie\": \"badauder\",\n  \"baden\": \"baden\",\n  \"badin\": \"badin\",\n  \"badine\": \"badin\",\n  \"bafouait\": \"bafou\",\n  \"bagage\": \"bagag\",\n  \"bagages\": \"bagag\",\n  \"bagarre\": \"bagarr\",\n  \"bagatelle\": \"bagatel\",\n  \"bagne\": \"bagn\",\n  \"bague\": \"bagu\",\n  \"bagues\": \"bagu\",\n  \"baguette\": \"baguet\",\n  \"bah\": \"bah\",\n  \"baie\": \"bai\",\n  \"baigné\": \"baign\",\n  \"baignée\": \"baign\",\n  \"baigner\": \"baign\",\n  \"baignés\": \"baign\",\n  \"bail\": \"bail\",\n  \"bâillait\": \"bâill\",\n  \"bâillant\": \"bâill\",\n  \"bâillement\": \"bâill\",\n  \"bâiller\": \"bâill\",\n  \"bâillon\": \"bâillon\",\n  \"baïonnette\": \"baïonnet\",\n  \"baïonnettes\": \"baïonnet\",\n  \"baisa\": \"bais\",\n  \"baisai\": \"bais\",\n  \"baisait\": \"bais\",\n  \"baisant\": \"bais\",\n  \"baise\": \"bais\",\n  \"baiser\": \"bais\",\n  \"baisers\": \"baiser\",\n  \"baissa\": \"baiss\",\n  \"baissait\": \"baiss\",\n  \"baissant\": \"baiss\",\n  \"baisse\": \"baiss\",\n  \"baissé\": \"baiss\",\n  \"baissée\": \"baiss\",\n  \"baisser\": \"baiss\",\n  \"baissèrent\": \"baiss\",\n  \"baissés\": \"baiss\",\n  \"bajocs\": \"bajoc\",\n  \"bal\": \"bal\",\n  \"baladins\": \"baladin\",\n  \"balançait\": \"balanc\",\n  \"balance\": \"balanc\",\n  \"balancée\": \"balanc\",\n  \"balancement\": \"balanc\",\n  \"balancer\": \"balanc\",\n  \"balances\": \"balanc\",\n  \"balancier\": \"balanci\",\n  \"balayé\": \"balai\",\n  \"balayés\": \"balai\",\n  \"balbi\": \"balb\",\n  \"balbutia\": \"balbuti\",\n  \"balbutiant\": \"balbuti\",\n  \"balcon\": \"balcon\",\n  \"balcons\": \"balcon\",\n  \"baldaquin\": \"baldaquin\",\n  \"baldi\": \"bald\",\n  \"balivernes\": \"balivern\",\n  \"balland\": \"balland\",\n  \"ballants\": \"ball\",\n  \"balle\": \"ball\",\n  \"balles\": \"ball\",\n  \"ballet\": \"ballet\",\n  \"ballon\": \"ballon\",\n  \"balourd\": \"balourd\",\n  \"balourdise\": \"balourdis\",\n  \"balourdises\": \"balourdis\",\n  \"bals\": \"bal\",\n  \"balustrade\": \"balustrad\",\n  \"bamboches\": \"bamboch\",\n  \"bambou\": \"bambou\",\n  \"bambous\": \"bambous\",\n  \"bambousiers\": \"bambousi\",\n  \"ban\": \"ban\",\n  \"bananiers\": \"banani\",\n  \"banc\": \"banc\",\n  \"bancs\": \"banc\",\n  \"bande\": \"band\",\n  \"bandé\": \"band\",\n  \"banderoles\": \"banderol\",\n  \"bandes\": \"band\",\n  \"bandits\": \"bandit\",\n  \"bandoulière\": \"bandouli\",\n  \"banians\": \"banian\",\n  \"bank\": \"bank\",\n  \"banni\": \"bann\",\n  \"bannie\": \"bann\",\n  \"bannières\": \"banni\",\n  \"bannir\": \"bann\",\n  \"banque\": \"banqu\",\n  \"banqueroute\": \"banquerout\",\n  \"banquette\": \"banquet\",\n  \"banquettes\": \"banquet\",\n  \"banquier\": \"banqui\",\n  \"banquière\": \"banqui\",\n  \"banquiers\": \"banqui\",\n  \"baptisé\": \"baptis\",\n  \"bar\": \"bar\",\n  \"baraque\": \"baraqu\",\n  \"barbare\": \"barbar\",\n  \"barbares\": \"barbar\",\n  \"barbarie\": \"barbar\",\n  \"barbe\": \"barb\",\n  \"barbiche\": \"barbich\",\n  \"barbier\": \"barbi\",\n  \"barbone\": \"barbon\",\n  \"barbotement\": \"barbot\",\n  \"barbouillait\": \"barbouill\",\n  \"barême\": \"barêm\",\n  \"bari\": \"bar\",\n  \"baring\": \"baring\",\n  \"bariolée\": \"bariol\",\n  \"barnave\": \"barnav\",\n  \"barnum\": \"barnum\",\n  \"baromètre\": \"barometr\",\n  \"baromètres\": \"barometr\",\n  \"baron\": \"baron\",\n  \"baronne\": \"baron\",\n  \"baronnie\": \"baron\",\n  \"barons\": \"baron\",\n  \"baroque\": \"baroqu\",\n  \"barque\": \"barqu\",\n  \"barques\": \"barqu\",\n  \"barra\": \"barr\",\n  \"barre\": \"barr\",\n  \"barreaux\": \"barreau\",\n  \"barrer\": \"barr\",\n  \"barricader\": \"barricad\",\n  \"barricadés\": \"barricad\",\n  \"barrière\": \"barri\",\n  \"barrières\": \"barri\",\n  \"barthélemy\": \"barthélemy\",\n  \"bas\": \"bas\",\n  \"basalte\": \"basalt\",\n  \"base\": \"bas\",\n  \"basée\": \"bas\",\n  \"bases\": \"bas\",\n  \"basile\": \"basil\",\n  \"basilique\": \"basil\",\n  \"basse\": \"bass\",\n  \"bassement\": \"bass\",\n  \"basses\": \"bass\",\n  \"bassesse\": \"bassess\",\n  \"bassesses\": \"bassess\",\n  \"bassin\": \"bassin\",\n  \"bassinet\": \"bassinet\",\n  \"bassins\": \"bassin\",\n  \"bassompierre\": \"bassompierr\",\n  \"bastingages\": \"bastingag\",\n  \"bastion\": \"bastion\",\n  \"bastions\": \"bastion\",\n  \"bat\": \"bat\",\n  \"bataille\": \"bataill\",\n  \"batailles\": \"bataill\",\n  \"bataillon\": \"bataillon\",\n  \"bataillons\": \"bataillon\",\n  \"bâtardise\": \"bâtardis\",\n  \"bateau\": \"bateau\",\n  \"bateaux\": \"bateau\",\n  \"batelier\": \"bateli\",\n  \"bateliers\": \"bateli\",\n  \"bathurst\": \"bathurst\",\n  \"bâti\": \"bât\",\n  \"bâtie\": \"bât\",\n  \"bâties\": \"bât\",\n  \"bâtiment\": \"bât\",\n  \"bâtiments\": \"bât\",\n  \"bâtir\": \"bât\",\n  \"bâtis\": \"bât\",\n  \"bâtissait\": \"bât\",\n  \"bâtissant\": \"bât\",\n  \"bâtisses\": \"bât\",\n  \"bâtisseur\": \"bâtisseur\",\n  \"bâtit\": \"bât\",\n  \"bâton\": \"bâton\",\n  \"bâtonne\": \"bâton\",\n  \"bâtons\": \"bâton\",\n  \"bats\": \"bat\",\n  \"battaient\": \"batt\",\n  \"battait\": \"batt\",\n  \"battant\": \"batt\",\n  \"battante\": \"batt\",\n  \"battants\": \"batt\",\n  \"batte\": \"batt\",\n  \"battement\": \"batt\",\n  \"battements\": \"batt\",\n  \"battent\": \"battent\",\n  \"batterie\": \"batter\",\n  \"battez\": \"batt\",\n  \"battistin\": \"battistin\",\n  \"battit\": \"batt\",\n  \"battrai\": \"battr\",\n  \"battrais\": \"battr\",\n  \"battras\": \"battr\",\n  \"battre\": \"battr\",\n  \"battrez\": \"battr\",\n  \"battriez\": \"battr\",\n  \"battu\": \"battu\",\n  \"battue\": \"battu\",\n  \"battus\": \"battus\",\n  \"batulcar\": \"batulcar\",\n  \"baume\": \"baum\",\n  \"bavard\": \"bavard\",\n  \"bavardage\": \"bavardag\",\n  \"bavardages\": \"bavardag\",\n  \"bavarde\": \"bavard\",\n  \"bavardes\": \"bavard\",\n  \"bavards\": \"bavard\",\n  \"bayadères\": \"bayader\",\n  \"bayard\": \"bayard\",\n  \"baylen\": \"baylen\",\n  \"bazar\": \"bazar\",\n  \"bazars\": \"bazar\",\n  \"bazin\": \"bazin\",\n  \"be\": \"be\",\n  \"béante\": \"bé\",\n  \"béatitudes\": \"béatitud\",\n  \"beau\": \"beau\",\n  \"beaucoup\": \"beaucoup\",\n  \"beauharnais\": \"beauharn\",\n  \"beaujolais\": \"beaujol\",\n  \"beaumarchais\": \"beaumarch\",\n  \"beauté\": \"beaut\",\n  \"beautés\": \"beaut\",\n  \"beauty\": \"beauty\",\n  \"beauvais\": \"beauv\",\n  \"beauvaisis\": \"beauvais\",\n  \"beauvoisis\": \"beauvois\",\n  \"beaux\": \"beau\",\n  \"bec\": \"bec\",\n  \"bêchait\": \"bêch\",\n  \"bêché\": \"bêch\",\n  \"bêcher\": \"bêch\",\n  \"becs\": \"bec\",\n  \"bédouin\": \"bédouin\",\n  \"beefsteacks\": \"beefsteack\",\n  \"bégayait\": \"bégai\",\n  \"béhar\": \"béhar\",\n  \"behind\": \"behind\",\n  \"békir\": \"bek\",\n  \"bel\": \"bel\",\n  \"belagio\": \"belagio\",\n  \"bélan\": \"bélan\",\n  \"belgique\": \"belgiqu\",\n  \"belgirate\": \"belgirat\",\n  \"belle\": \"bel\",\n  \"belles\": \"bel\",\n  \"belliqueux\": \"belliqu\",\n  \"belphégor\": \"belphégor\",\n  \"belvédère\": \"belvéder\",\n  \"ben\": \"ben\",\n  \"bénarès\": \"bénares\",\n  \"bénédiction\": \"bénédict\",\n  \"bénédictions\": \"bénédict\",\n  \"benefaciendo\": \"benefaciendo\",\n  \"bénéfice\": \"bénéfic\",\n  \"bénéfices\": \"bénéfic\",\n  \"benêt\": \"benêt\",\n  \"bengale\": \"bengal\",\n  \"bénis\": \"ben\",\n  \"bénit\": \"ben\",\n  \"bénite\": \"bénit\",\n  \"bénitier\": \"béniti\",\n  \"benjamin\": \"benjamin\",\n  \"benten\": \"benten\",\n  \"bentivoglio\": \"bentivoglio\",\n  \"béranger\": \"bérang\",\n  \"berceau\": \"berceau\",\n  \"bercer\": \"berc\",\n  \"bérésina\": \"bérésin\",\n  \"bergère\": \"berger\",\n  \"bergères\": \"berger\",\n  \"bernard\": \"bernard\",\n  \"berne\": \"bern\",\n  \"bertolotti\": \"bertolott\",\n  \"bertuccio\": \"bertuccio\",\n  \"besace\": \"besac\",\n  \"besançon\": \"besançon\",\n  \"besenval\": \"besenval\",\n  \"besogne\": \"besogn\",\n  \"besoin\": \"besoin\",\n  \"besoins\": \"besoin\",\n  \"bêta\": \"bêt\",\n  \"bétail\": \"bétail\",\n  \"bête\": \"bêt\",\n  \"bétel\": \"bétel\",\n  \"bêtement\": \"bêt\",\n  \"bêtes\": \"bêt\",\n  \"bêtise\": \"bêtis\",\n  \"bêtises\": \"bêtis\",\n  \"betrays\": \"betray\",\n  \"bettina\": \"bettin\",\n  \"beuglements\": \"beugl\",\n  \"beurre\": \"beurr\",\n  \"beuve\": \"beuv\",\n  \"bévue\": \"bévu\",\n  \"bévues\": \"bévu\",\n  \"biais\": \"bi\",\n  \"biaiser\": \"biais\",\n  \"bible\": \"bibl\",\n  \"bibliomane\": \"biblioman\",\n  \"bibliothèque\": \"bibliothequ\",\n  \"bibliothèques\": \"bibliothequ\",\n  \"biblique\": \"bibliqu\",\n  \"bibliques\": \"bibliqu\",\n  \"bielle\": \"biel\",\n  \"bien\": \"bien\",\n  \"bienfait\": \"bienf\",\n  \"bienfaiteur\": \"bienfaiteur\",\n  \"bienfaitrice\": \"bienfaitric\",\n  \"bienfaits\": \"bienfait\",\n  \"biens\": \"bien\",\n  \"bientôt\": \"bientôt\",\n  \"bienveillance\": \"bienveil\",\n  \"bienveillant\": \"bienveil\",\n  \"bienvenu\": \"bienvenu\",\n  \"bière\": \"bier\",\n  \"biftecks\": \"bifteck\",\n  \"bigarrée\": \"bigarr\",\n  \"bijou\": \"bijou\",\n  \"bijoux\": \"bijoux\",\n  \"bilieuse\": \"bilieux\",\n  \"bilieux\": \"bilieux\",\n  \"billard\": \"billard\",\n  \"billards\": \"billard\",\n  \"billet\": \"billet\",\n  \"billets\": \"billet\",\n  \"binder\": \"bind\",\n  \"binet\": \"binet\",\n  \"biographie\": \"biograph\",\n  \"birmingham\": \"birmingham\",\n  \"bisaïeul\": \"bisaïeul\",\n  \"biscaïens\": \"biscaïen\",\n  \"biscuit\": \"biscuit\",\n  \"biscuits\": \"biscuit\",\n  \"bisogna\": \"bisogn\",\n  \"bisons\": \"bison\",\n  \"bisontine\": \"bisontin\",\n  \"bisontins\": \"bisontin\",\n  \"bisontium\": \"bisontium\",\n  \"bitter\": \"bitt\",\n  \"bivouac\": \"bivouac\",\n  \"bivouacs\": \"bivouac\",\n  \"bivouaquaient\": \"bivouaqu\",\n  \"bizarre\": \"bizarr\",\n  \"bizarrerie\": \"bizarrer\",\n  \"bizarres\": \"bizarr\",\n  \"blackest\": \"blackest\",\n  \"blafarde\": \"blafard\",\n  \"blâma\": \"blâm\",\n  \"blâmable\": \"blâmabl\",\n  \"blâmables\": \"blâmabl\",\n  \"blâmait\": \"blâm\",\n  \"blâme\": \"blâm\",\n  \"blâmé\": \"blâm\",\n  \"blâmée\": \"blâm\",\n  \"blâmer\": \"blâm\",\n  \"blâmés\": \"blâm\",\n  \"blanc\": \"blanc\",\n  \"blanche\": \"blanch\",\n  \"blanches\": \"blanch\",\n  \"blancheur\": \"blancheur\",\n  \"blanchie\": \"blanch\",\n  \"blanchies\": \"blanch\",\n  \"blanchis\": \"blanch\",\n  \"blanchisseuse\": \"blanchiss\",\n  \"blancs\": \"blanc\",\n  \"bland\": \"bland\",\n  \"blanès\": \"blanes\",\n  \"blason\": \"blason\",\n  \"blasphème\": \"blasphem\",\n  \"blasphémé\": \"blasphem\",\n  \"blé\": \"blé\",\n  \"blême\": \"blêm\",\n  \"blés\": \"blé\",\n  \"blessa\": \"bless\",\n  \"blessaient\": \"bless\",\n  \"blessant\": \"bless\",\n  \"blesse\": \"bless\",\n  \"blessé\": \"bless\",\n  \"blessée\": \"bless\",\n  \"blesser\": \"bless\",\n  \"blesserait\": \"bless\",\n  \"blessés\": \"bless\",\n  \"blessez\": \"bless\",\n  \"blessure\": \"blessur\",\n  \"blessures\": \"blessur\",\n  \"bleu\": \"bleu\",\n  \"bleuâtre\": \"bleuâtr\",\n  \"bleuâtres\": \"bleuâtr\",\n  \"bleue\": \"bleu\",\n  \"bleues\": \"bleu\",\n  \"bleus\": \"bleus\",\n  \"bloc\": \"bloc\",\n  \"blocs\": \"bloc\",\n  \"blond\": \"blond\",\n  \"blonde\": \"blond\",\n  \"blondin\": \"blondin\",\n  \"blonds\": \"blond\",\n  \"blood\": \"blood\",\n  \"blottie\": \"blott\",\n  \"blottirent\": \"blott\",\n  \"blottit\": \"blott\",\n  \"blue\": \"blu\",\n  \"bluffs\": \"bluff\",\n  \"blushes\": \"blush\",\n  \"boat\": \"boat\",\n  \"boats\": \"boat\",\n  \"boeuf\": \"boeuf\",\n  \"boeufs\": \"boeuf\",\n  \"boire\": \"boir\",\n  \"bois\": \"bois\",\n  \"boisé\": \"bois\",\n  \"boiserie\": \"boiser\",\n  \"boisson\": \"boisson\",\n  \"boissons\": \"boisson\",\n  \"boit\": \"boit\",\n  \"boîte\": \"boît\",\n  \"boîtes\": \"boît\",\n  \"boiteux\": \"boiteux\",\n  \"bologne\": \"bologn\",\n  \"bombace\": \"bombac\",\n  \"bombardé\": \"bombard\",\n  \"bombay\": \"bombay\",\n  \"bombe\": \"bomb\",\n  \"bombes\": \"bomb\",\n  \"bombés\": \"bomb\",\n  \"bon\": \"bon\",\n  \"bona\": \"bon\",\n  \"bonaparte\": \"bonapart\",\n  \"bonapartiste\": \"bonapart\",\n  \"bonaventure\": \"bonaventur\",\n  \"bondir\": \"bond\",\n  \"bondissait\": \"bond\",\n  \"bondissant\": \"bond\",\n  \"bondit\": \"bond\",\n  \"bonds\": \"bond\",\n  \"bone\": \"bon\",\n  \"bonheur\": \"bonheur\",\n  \"bonheurs\": \"bonheur\",\n  \"bonhomie\": \"bonhom\",\n  \"bonhomme\": \"bonhomm\",\n  \"boniface\": \"bonifac\",\n  \"bonne\": \"bon\",\n  \"bonnement\": \"bon\",\n  \"bonnes\": \"bon\",\n  \"bonnet\": \"bonnet\",\n  \"bonnets\": \"bonnet\",\n  \"bons\": \"bon\",\n  \"bonshommes\": \"bonshomm\",\n  \"bonsoir\": \"bonsoir\",\n  \"bonté\": \"bont\",\n  \"bontés\": \"bont\",\n  \"bonzeries\": \"bonzer\",\n  \"bonzes\": \"bonz\",\n  \"booby\": \"booby\",\n  \"bord\": \"bord\",\n  \"borda\": \"bord\",\n  \"bordaient\": \"bord\",\n  \"bordait\": \"bord\",\n  \"bordé\": \"bord\",\n  \"bordeaux\": \"bordeau\",\n  \"bordée\": \"bord\",\n  \"bordées\": \"bord\",\n  \"bordent\": \"bordent\",\n  \"bordés\": \"bord\",\n  \"bords\": \"bord\",\n  \"bordures\": \"bordur\",\n  \"borgo\": \"borgo\",\n  \"borna\": \"born\",\n  \"bornaient\": \"born\",\n  \"bornait\": \"born\",\n  \"borne\": \"born\",\n  \"borné\": \"born\",\n  \"bornes\": \"born\",\n  \"borone\": \"boron\",\n  \"borso\": \"borso\",\n  \"bosco\": \"bosco\",\n  \"bosse\": \"boss\",\n  \"bosses\": \"boss\",\n  \"bossi\": \"boss\",\n  \"bossuet\": \"bossuet\",\n  \"botanique\": \"botan\",\n  \"botte\": \"bott\",\n  \"bottes\": \"bott\",\n  \"bottier\": \"botti\",\n  \"bouche\": \"bouch\",\n  \"boucher\": \"bouch\",\n  \"boucherie\": \"boucher\",\n  \"bouchers\": \"boucher\",\n  \"bouches\": \"bouch\",\n  \"boucles\": \"boucl\",\n  \"bouclés\": \"boucl\",\n  \"bouclez\": \"boucl\",\n  \"bouclier\": \"boucli\",\n  \"bouddhisme\": \"bouddhism\",\n  \"bouddhiste\": \"bouddhist\",\n  \"bouder\": \"boud\",\n  \"boudeur\": \"boudeur\",\n  \"boudeurs\": \"boudeur\",\n  \"boue\": \"bou\",\n  \"bouffe\": \"bouff\",\n  \"bouffée\": \"bouff\",\n  \"bouffées\": \"bouff\",\n  \"bouffes\": \"bouff\",\n  \"bouffonnerie\": \"bouffonner\",\n  \"bouffonneries\": \"bouffonner\",\n  \"bougeait\": \"boug\",\n  \"bougeoir\": \"bougeoir\",\n  \"bouger\": \"boug\",\n  \"bougera\": \"boug\",\n  \"bougez\": \"boug\",\n  \"bougie\": \"boug\",\n  \"bougies\": \"boug\",\n  \"bougon\": \"bougon\",\n  \"bouillait\": \"bouill\",\n  \"bouillant\": \"bouill\",\n  \"bouillante\": \"bouill\",\n  \"bouilli\": \"bouill\",\n  \"bouillir\": \"bouill\",\n  \"bouillon\": \"bouillon\",\n  \"boulangers\": \"boulanger\",\n  \"boule\": \"boul\",\n  \"bouledogue\": \"bouledogu\",\n  \"boulet\": \"boulet\",\n  \"boulets\": \"boulet\",\n  \"boulettes\": \"boulet\",\n  \"boulevard\": \"boulevard\",\n  \"bouleversa\": \"boulevers\",\n  \"bouleversaient\": \"boulevers\",\n  \"bouleverse\": \"boulevers\",\n  \"bouleversé\": \"boulevers\",\n  \"bouleversée\": \"boulevers\",\n  \"bouleversés\": \"boulevers\",\n  \"boulogne\": \"boulogn\",\n  \"boulons\": \"boulon\",\n  \"boulot\": \"boulot\",\n  \"bouquer\": \"bouqu\",\n  \"bouquet\": \"bouquet\",\n  \"bouquets\": \"bouquet\",\n  \"bourbeux\": \"bourbeux\",\n  \"bourbier\": \"bourbi\",\n  \"bourbiers\": \"bourbi\",\n  \"bourbons\": \"bourbon\",\n  \"bourdon\": \"bourdon\",\n  \"bourdonnement\": \"bourdon\",\n  \"bourdonnements\": \"bourdon\",\n  \"bourg\": \"bourg\",\n  \"bourgade\": \"bourgad\",\n  \"bourgades\": \"bourgad\",\n  \"bourgeois\": \"bourgeois\",\n  \"bourgeoise\": \"bourgeois\",\n  \"bourgeoises\": \"bourgeois\",\n  \"bourgeoisie\": \"bourgeois\",\n  \"bourgeons\": \"bourgeon\",\n  \"bourgogne\": \"bourgogn\",\n  \"bourguignon\": \"bourguignon\",\n  \"bourguignons\": \"bourguignon\",\n  \"bourrasque\": \"bourrasqu\",\n  \"bourrasques\": \"bourrasqu\",\n  \"bourreau\": \"bourreau\",\n  \"bourreaux\": \"bourreau\",\n  \"bourrées\": \"bourr\",\n  \"bourrelée\": \"bourrel\",\n  \"bourrèlements\": \"bourrel\",\n  \"bourse\": \"bours\",\n  \"bourses\": \"bours\",\n  \"boursicot\": \"boursicot\",\n  \"bousculés\": \"bouscul\",\n  \"bout\": \"bout\",\n  \"boutade\": \"boutad\",\n  \"bouteille\": \"bouteil\",\n  \"bouteilles\": \"bouteil\",\n  \"boutique\": \"boutiqu\",\n  \"boutiques\": \"boutiqu\",\n  \"boutiquiers\": \"boutiqui\",\n  \"bouton\": \"bouton\",\n  \"boutonné\": \"bouton\",\n  \"boutonnière\": \"boutonni\",\n  \"boutons\": \"bouton\",\n  \"bouts\": \"bout\",\n  \"bow\": \"bow\",\n  \"boxe\": \"box\",\n  \"bracelets\": \"bracelet\",\n  \"bradshaw\": \"bradshaw\",\n  \"brahma\": \"brahm\",\n  \"brahmanes\": \"brahman\",\n  \"brahmanique\": \"brahman\",\n  \"brahmaniques\": \"brahman\",\n  \"branchages\": \"branchag\",\n  \"branche\": \"branch\",\n  \"branches\": \"branch\",\n  \"brandissant\": \"brand\",\n  \"brandy\": \"brandy\",\n  \"branlante\": \"branl\",\n  \"branle\": \"branl\",\n  \"brantôme\": \"brantôm\",\n  \"bras\": \"bras\",\n  \"brasses\": \"brass\",\n  \"brasseur\": \"brasseur\",\n  \"bravade\": \"bravad\",\n  \"bravait\": \"brav\",\n  \"brave\": \"brav\",\n  \"bravé\": \"brav\",\n  \"bravée\": \"brav\",\n  \"bravement\": \"brav\",\n  \"bravent\": \"bravent\",\n  \"braver\": \"brav\",\n  \"braverais\": \"brav\",\n  \"braves\": \"brav\",\n  \"bravi\": \"brav\",\n  \"bravissimo\": \"bravissimo\",\n  \"bravo\": \"bravo\",\n  \"bravoure\": \"bravour\",\n  \"bray\": \"bray\",\n  \"brebis\": \"breb\",\n  \"bref\": \"bref\",\n  \"brefs\": \"bref\",\n  \"brescia\": \"bresci\",\n  \"brésil\": \"brésil\",\n  \"bretagne\": \"bretagn\",\n  \"brève\": \"brev\",\n  \"brèves\": \"brev\",\n  \"brevet\": \"brevet\",\n  \"brevets\": \"brevet\",\n  \"bréviaire\": \"bréviair\",\n  \"brick\": \"brick\",\n  \"bride\": \"brid\",\n  \"bridés\": \"brid\",\n  \"bridger\": \"bridg\",\n  \"bridon\": \"bridon\",\n  \"brigade\": \"brigad\",\n  \"brigadier\": \"brigadi\",\n  \"brigadiers\": \"brigadi\",\n  \"brigand\": \"brigand\",\n  \"brigands\": \"brigand\",\n  \"brigantine\": \"brigantin\",\n  \"brigham\": \"brigham\",\n  \"brighella\": \"brighel\",\n  \"brilla\": \"brill\",\n  \"brillaient\": \"brill\",\n  \"brillait\": \"brill\",\n  \"brillamment\": \"brill\",\n  \"brillant\": \"brill\",\n  \"brillante\": \"brill\",\n  \"brillantes\": \"brill\",\n  \"brillants\": \"brill\",\n  \"brille\": \"brill\",\n  \"brillé\": \"brill\",\n  \"brillent\": \"brillent\",\n  \"briller\": \"brill\",\n  \"brillèrent\": \"brill\",\n  \"brindisi\": \"brindis\",\n  \"brins\": \"brin\",\n  \"brio\": \"brio\",\n  \"brique\": \"briqu\",\n  \"briques\": \"briqu\",\n  \"brisa\": \"bris\",\n  \"brisaient\": \"bris\",\n  \"brisait\": \"bris\",\n  \"brise\": \"bris\",\n  \"brisé\": \"bris\",\n  \"brisée\": \"bris\",\n  \"brisées\": \"bris\",\n  \"briser\": \"bris\",\n  \"brisèrent\": \"bris\",\n  \"brises\": \"bris\",\n  \"brisés\": \"bris\",\n  \"britannique\": \"britann\",\n  \"britannisée\": \"britannis\",\n  \"british\": \"british\",\n  \"broadway\": \"broadway\",\n  \"brocanteur\": \"brocanteur\",\n  \"brocart\": \"brocart\",\n  \"brochant\": \"broch\",\n  \"brochées\": \"broch\",\n  \"brochure\": \"brochur\",\n  \"brocs\": \"broc\",\n  \"brodé\": \"brod\",\n  \"brodées\": \"brod\",\n  \"broderie\": \"broder\",\n  \"broderies\": \"broder\",\n  \"brodés\": \"brod\",\n  \"bronché\": \"bronch\",\n  \"broncher\": \"bronch\",\n  \"bronze\": \"bronz\",\n  \"brosser\": \"bross\",\n  \"brouette\": \"brouet\",\n  \"brouettes\": \"brouet\",\n  \"brougham\": \"brougham\",\n  \"brouhaha\": \"brouhah\",\n  \"brouillaient\": \"brouill\",\n  \"brouillais\": \"brouill\",\n  \"brouillard\": \"brouillard\",\n  \"brouillards\": \"brouillard\",\n  \"brouille\": \"brouill\",\n  \"brouillé\": \"brouill\",\n  \"brouillée\": \"brouill\",\n  \"brouiller\": \"brouill\",\n  \"brouillerie\": \"brouiller\",\n  \"brouilleriez\": \"brouill\",\n  \"brouillerons\": \"brouill\",\n  \"brouilles\": \"brouill\",\n  \"brouillon\": \"brouillon\",\n  \"brouillons\": \"brouillon\",\n  \"broussailles\": \"broussaill\",\n  \"bruit\": \"bruit\",\n  \"bruits\": \"bruit\",\n  \"brûla\": \"brûl\",\n  \"brûlaient\": \"brûl\",\n  \"brûlait\": \"brûl\",\n  \"brûlant\": \"brûl\",\n  \"brûlante\": \"brûl\",\n  \"brûlantes\": \"brûl\",\n  \"brûle\": \"brûl\",\n  \"brûlé\": \"brûl\",\n  \"brûlée\": \"brûl\",\n  \"brûlées\": \"brûl\",\n  \"brûler\": \"brûl\",\n  \"brûlerait\": \"brûl\",\n  \"brûlerez\": \"brûl\",\n  \"brûlés\": \"brûl\",\n  \"brûlons\": \"brûlon\",\n  \"brûlure\": \"brûlur\",\n  \"brume\": \"brum\",\n  \"brumes\": \"brum\",\n  \"brun\": \"brun\",\n  \"brune\": \"brun\",\n  \"bruno\": \"bruno\",\n  \"bruns\": \"brun\",\n  \"brusque\": \"brusqu\",\n  \"brusquement\": \"brusqu\",\n  \"brusquer\": \"brusqu\",\n  \"brusques\": \"brusqu\",\n  \"brut\": \"brut\",\n  \"brutal\": \"brutal\",\n  \"brutale\": \"brutal\",\n  \"brutalement\": \"brutal\",\n  \"brutalité\": \"brutal\",\n  \"brutes\": \"brut\",\n  \"brutus\": \"brutus\",\n  \"bruxelles\": \"bruxel\",\n  \"bruyamment\": \"brui\",\n  \"bruyant\": \"brui\",\n  \"bruyante\": \"brui\",\n  \"bruyantes\": \"brui\",\n  \"bruyants\": \"brui\",\n  \"bu\": \"bu\",\n  \"bubna\": \"bubn\",\n  \"bûcher\": \"bûch\",\n  \"budget\": \"budget\",\n  \"bue\": \"bu\",\n  \"buffa\": \"buff\",\n  \"buffalos\": \"buffalos\",\n  \"buffet\": \"buffet\",\n  \"buffles\": \"buffl\",\n  \"buis\": \"buis\",\n  \"buissons\": \"buisson\",\n  \"buli\": \"bul\",\n  \"bull\": \"bull\",\n  \"bulle\": \"bull\",\n  \"bulletin\": \"bulletin\",\n  \"bulletins\": \"bulletin\",\n  \"bulo\": \"bulo\",\n  \"bundelkund\": \"bundelkund\",\n  \"bungalow\": \"bungalow\",\n  \"bungalows\": \"bungalow\",\n  \"bunhyas\": \"bunhi\",\n  \"bunsby\": \"bunsby\",\n  \"buonaparte\": \"buonapart\",\n  \"buonaparté\": \"buonapart\",\n  \"burati\": \"burat\",\n  \"burdivan\": \"burdivan\",\n  \"burdwan\": \"burdwan\",\n  \"bureau\": \"bureau\",\n  \"bureaucratique\": \"bureaucrat\",\n  \"bureaux\": \"bureau\",\n  \"burhampour\": \"burhampour\",\n  \"burlesque\": \"burlesqu\",\n  \"burlington\": \"burlington\",\n  \"burning\": \"burning\",\n  \"busqué\": \"busqu\",\n  \"buste\": \"bust\",\n  \"bustos\": \"bustos\",\n  \"but\": \"but\",\n  \"butcher\": \"butch\",\n  \"butte\": \"butt\",\n  \"buvait\": \"buv\",\n  \"buvez\": \"buv\",\n  \"buvions\": \"buvion\",\n  \"buvons\": \"buvon\",\n  \"buxar\": \"buxar\",\n  \"by\": \"by\",\n  \"byron\": \"byron\",\n  \"c\": \"c\",\n  \"ça\": \"ça\",\n  \"çà\": \"çà\",\n  \"cab\": \"cab\",\n  \"cabale\": \"cabal\",\n  \"cabane\": \"caban\",\n  \"cabanes\": \"caban\",\n  \"cabaret\": \"cabaret\",\n  \"cabarets\": \"cabaret\",\n  \"cabine\": \"cabin\",\n  \"cabines\": \"cabin\",\n  \"cabinet\": \"cabinet\",\n  \"cabinets\": \"cabinet\",\n  \"cabotage\": \"cabotag\",\n  \"cabra\": \"cabr\",\n  \"cabrait\": \"cabr\",\n  \"cabrer\": \"cabr\",\n  \"cabriolet\": \"cabriolet\",\n  \"cacha\": \"cach\",\n  \"cachaient\": \"cach\",\n  \"cachais\": \"cach\",\n  \"cachait\": \"cach\",\n  \"cachant\": \"cach\",\n  \"cache\": \"cach\",\n  \"caché\": \"cach\",\n  \"cachée\": \"cach\",\n  \"cachées\": \"cach\",\n  \"cachemire\": \"cachemir\",\n  \"cachent\": \"cachent\",\n  \"cacher\": \"cach\",\n  \"cachera\": \"cach\",\n  \"cacherai\": \"cach\",\n  \"cacherait\": \"cach\",\n  \"cacherons\": \"cach\",\n  \"cachés\": \"cach\",\n  \"cachet\": \"cachet\",\n  \"cacheté\": \"cachet\",\n  \"cacheter\": \"cachet\",\n  \"cachette\": \"cachet\",\n  \"cachettes\": \"cachet\",\n  \"cachons\": \"cachon\",\n  \"cachot\": \"cachot\",\n  \"cachots\": \"cachot\",\n  \"cacolet\": \"cacolet\",\n  \"cacolets\": \"cacolet\",\n  \"cadavre\": \"cadavr\",\n  \"cadavres\": \"cadavr\",\n  \"cadeau\": \"cadeau\",\n  \"cadeaux\": \"cadeau\",\n  \"cadenabia\": \"cadenabi\",\n  \"cadenas\": \"caden\",\n  \"cadet\": \"cadet\",\n  \"cadets\": \"cadet\",\n  \"cadette\": \"cadet\",\n  \"cadran\": \"cadran\",\n  \"cadre\": \"cadr\",\n  \"cadres\": \"cadr\",\n  \"café\": \"caf\",\n  \"caféiers\": \"caféi\",\n  \"cafés\": \"caf\",\n  \"cage\": \"cag\",\n  \"cages\": \"cag\",\n  \"cagnola\": \"cagnol\",\n  \"cahier\": \"cahi\",\n  \"cahutes\": \"cahut\",\n  \"caillé\": \"caill\",\n  \"cailles\": \"caill\",\n  \"cailloux\": \"cailloux\",\n  \"caisse\": \"caiss\",\n  \"caisses\": \"caiss\",\n  \"caissier\": \"caissi\",\n  \"caissons\": \"caisson\",\n  \"cajoleries\": \"cajoler\",\n  \"calais\": \"cal\",\n  \"calcul\": \"calcul\",\n  \"calculait\": \"calcul\",\n  \"calculant\": \"calcul\",\n  \"calculateur\": \"calcul\",\n  \"calculé\": \"calcul\",\n  \"calculée\": \"calcul\",\n  \"calculées\": \"calcul\",\n  \"calculer\": \"calcul\",\n  \"calculs\": \"calcul\",\n  \"calcutta\": \"calcutt\",\n  \"calèche\": \"calech\",\n  \"calembour\": \"calembour\",\n  \"calembours\": \"calembour\",\n  \"calendrier\": \"calendri\",\n  \"californie\": \"californ\",\n  \"californienne\": \"californien\",\n  \"califourchon\": \"califourchon\",\n  \"câline\": \"câlin\",\n  \"call\": \"call\",\n  \"called\": \"called\",\n  \"callyan\": \"callyan\",\n  \"calm\": \"calm\",\n  \"calma\": \"calm\",\n  \"calme\": \"calm\",\n  \"calmer\": \"calm\",\n  \"calmerai\": \"calm\",\n  \"calmèrent\": \"calm\",\n  \"calmes\": \"calm\",\n  \"calmez\": \"calm\",\n  \"calomnie\": \"calomn\",\n  \"calomnié\": \"calomni\",\n  \"calomniée\": \"calomni\",\n  \"calomniées\": \"calomni\",\n  \"calomnier\": \"calomni\",\n  \"calomnieront\": \"calomni\",\n  \"calomnies\": \"calomn\",\n  \"calomnieuses\": \"calomni\",\n  \"calotin\": \"calotin\",\n  \"calotte\": \"calott\",\n  \"camarade\": \"camarad\",\n  \"camarades\": \"camarad\",\n  \"camarilla\": \"camarill\",\n  \"cambaye\": \"cambay\",\n  \"cambodge\": \"cambodg\",\n  \"cambrai\": \"cambr\",\n  \"cambrure\": \"cambrur\",\n  \"camélias\": \"caméli\",\n  \"cameriere\": \"camerier\",\n  \"camériste\": \"camer\",\n  \"camp\": \"camp\",\n  \"campagnards\": \"campagnard\",\n  \"campagne\": \"campagn\",\n  \"campagnes\": \"campagn\",\n  \"campaient\": \"camp\",\n  \"campé\": \"camp\",\n  \"can\": \"can\",\n  \"canaille\": \"canaill\",\n  \"canal\": \"canal\",\n  \"canapé\": \"canap\",\n  \"canards\": \"canard\",\n  \"cancer\": \"canc\",\n  \"candeur\": \"candeur\",\n  \"candidat\": \"candidat\",\n  \"candidats\": \"candidat\",\n  \"candidature\": \"candidatur\",\n  \"candide\": \"candid\",\n  \"cangos\": \"cangos\",\n  \"cani\": \"can\",\n  \"caniches\": \"canich\",\n  \"canif\": \"canif\",\n  \"canne\": \"cann\",\n  \"cannelle\": \"cannel\",\n  \"cannes\": \"cann\",\n  \"canon\": \"canon\",\n  \"canonique\": \"canon\",\n  \"canonnade\": \"canonnad\",\n  \"canonniers\": \"canonni\",\n  \"canons\": \"canon\",\n  \"canot\": \"canot\",\n  \"canots\": \"canot\",\n  \"canova\": \"canov\",\n  \"canta\": \"cant\",\n  \"cantate\": \"cantat\",\n  \"cantatrice\": \"cantatric\",\n  \"cantilène\": \"cantilen\",\n  \"cantinière\": \"cantini\",\n  \"cantiques\": \"cantiqu\",\n  \"canton\": \"canton\",\n  \"cantonnées\": \"canton\",\n  \"cantons\": \"canton\",\n  \"cap\": \"cap\",\n  \"capable\": \"capabl\",\n  \"capacité\": \"capac\",\n  \"caparaçonnés\": \"caparaçon\",\n  \"cape\": \"cap\",\n  \"capharnaüm\": \"capharnaüm\",\n  \"capillaire\": \"capillair\",\n  \"capitaine\": \"capitain\",\n  \"capitaines\": \"capitain\",\n  \"capital\": \"capital\",\n  \"capitale\": \"capital\",\n  \"capitani\": \"capitan\",\n  \"capitulation\": \"capitul\",\n  \"capon\": \"capon\",\n  \"caporal\": \"caporal\",\n  \"capot\": \"capot\",\n  \"caprice\": \"capric\",\n  \"caprices\": \"capric\",\n  \"capricieuse\": \"caprici\",\n  \"capricieusement\": \"caprici\",\n  \"capricieuses\": \"caprici\",\n  \"captivait\": \"captiv\",\n  \"captivité\": \"captiv\",\n  \"capture\": \"captur\",\n  \"capuche\": \"capuch\",\n  \"capuchons\": \"capuchon\",\n  \"capucin\": \"capucin\",\n  \"car\": \"car\",\n  \"carabine\": \"carabin\",\n  \"carabines\": \"carabin\",\n  \"carabiniers\": \"carabini\",\n  \"caractère\": \"caracter\",\n  \"caractères\": \"caracter\",\n  \"caractérisait\": \"caractéris\",\n  \"caractérise\": \"caractéris\",\n  \"caractéristique\": \"caractérist\",\n  \"carafe\": \"caraf\",\n  \"carbonaro\": \"carbonaro\",\n  \"carburé\": \"carbur\",\n  \"carcasse\": \"carc\",\n  \"cardif\": \"cardif\",\n  \"cardinal\": \"cardinal\",\n  \"cardinaux\": \"cardinal\",\n  \"caressa\": \"caress\",\n  \"caressait\": \"caress\",\n  \"caressant\": \"caress\",\n  \"caressants\": \"caress\",\n  \"caresse\": \"caress\",\n  \"caressent\": \"caressent\",\n  \"caresser\": \"caress\",\n  \"caresseraient\": \"caress\",\n  \"caresses\": \"caress\",\n  \"cargaison\": \"cargaison\",\n  \"caricature\": \"caricatur\",\n  \"carlino\": \"carlino\",\n  \"carlo\": \"carlo\",\n  \"carlone\": \"carlon\",\n  \"carnassiers\": \"carnassi\",\n  \"carnatic\": \"carnatic\",\n  \"carnaval\": \"carnaval\",\n  \"carnet\": \"carnet\",\n  \"carnot\": \"carnot\",\n  \"caro\": \"caro\",\n  \"caroline\": \"carolin\",\n  \"caron\": \"caron\",\n  \"caroubiers\": \"caroubi\",\n  \"carpe\": \"carp\",\n  \"carré\": \"carr\",\n  \"carreau\": \"carreau\",\n  \"carreaux\": \"carreau\",\n  \"carrée\": \"carr\",\n  \"carrefours\": \"carrefour\",\n  \"carrément\": \"carr\",\n  \"carrés\": \"carr\",\n  \"carrière\": \"carri\",\n  \"carrières\": \"carri\",\n  \"carrosse\": \"carross\",\n  \"carrosses\": \"carross\",\n  \"cars\": \"car\",\n  \"carson\": \"carson\",\n  \"carta\": \"cart\",\n  \"carte\": \"cart\",\n  \"cartes\": \"cart\",\n  \"carthage\": \"carthag\",\n  \"carton\": \"carton\",\n  \"cartons\": \"carton\",\n  \"cartouche\": \"cartouch\",\n  \"cartouches\": \"cartouch\",\n  \"cas\": \"cas\",\n  \"casa\": \"cas\",\n  \"casal\": \"casal\",\n  \"casanier\": \"casani\",\n  \"cascade\": \"cascad\",\n  \"cascades\": \"cascad\",\n  \"case\": \"cas\",\n  \"caserne\": \"casern\",\n  \"cases\": \"cas\",\n  \"casi\": \"cas\",\n  \"casimir\": \"casim\",\n  \"casino\": \"casino\",\n  \"casque\": \"casqu\",\n  \"casques\": \"casqu\",\n  \"cassa\": \"cass\",\n  \"cassait\": \"cass\",\n  \"cassandre\": \"cassandr\",\n  \"cassano\": \"cassano\",\n  \"cassât\": \"cass\",\n  \"casse\": \"cass\",\n  \"cassé\": \"cass\",\n  \"cassée\": \"cass\",\n  \"cassées\": \"cass\",\n  \"cassent\": \"cassent\",\n  \"casser\": \"cass\",\n  \"casserais\": \"cass\",\n  \"casseroles\": \"casserol\",\n  \"cassette\": \"casset\",\n  \"cassine\": \"cassin\",\n  \"castanède\": \"castaned\",\n  \"caste\": \"cast\",\n  \"castelnovo\": \"castelnovo\",\n  \"casti\": \"cast\",\n  \"casto\": \"casto\",\n  \"castorine\": \"castorin\",\n  \"castres\": \"castr\",\n  \"castries\": \"castr\",\n  \"casuel\": \"casuel\",\n  \"casuistes\": \"casuist\",\n  \"catanzara\": \"catanzar\",\n  \"catastrophe\": \"catastroph\",\n  \"catéchisme\": \"catech\",\n  \"catena\": \"caten\",\n  \"cathédrale\": \"cathédral\",\n  \"cathelineau\": \"cathelineau\",\n  \"catherine\": \"catherin\",\n  \"cattaro\": \"cattaro\",\n  \"cauchemar\": \"cauchemar\",\n  \"cauchemars\": \"cauchemar\",\n  \"caudataire\": \"caudatair\",\n  \"causa\": \"caus\",\n  \"causait\": \"caus\",\n  \"causant\": \"caus\",\n  \"cause\": \"caus\",\n  \"causé\": \"caus\",\n  \"causée\": \"caus\",\n  \"causer\": \"caus\",\n  \"causerait\": \"caus\",\n  \"causèrent\": \"caus\",\n  \"causes\": \"caus\",\n  \"causés\": \"caus\",\n  \"causeur\": \"causeur\",\n  \"caustique\": \"caustiqu\",\n  \"cauteleuse\": \"cautel\",\n  \"cauteleux\": \"cautel\",\n  \"caution\": \"caution\",\n  \"cautions\": \"caution\",\n  \"cavalerie\": \"cavaler\",\n  \"cavalier\": \"cavali\",\n  \"cavaliers\": \"cavali\",\n  \"cavallo\": \"cavallo\",\n  \"cave\": \"cav\",\n  \"caverne\": \"cavern\",\n  \"caves\": \"cav\",\n  \"cavi\": \"cav\",\n  \"caylus\": \"caylus\",\n  \"ce\": \"ce\",\n  \"ceci\": \"cec\",\n  \"céda\": \"ced\",\n  \"cédait\": \"ced\",\n  \"cédant\": \"ced\",\n  \"cédar\": \"cédar\",\n  \"cède\": \"ced\",\n  \"cédé\": \"ced\",\n  \"céder\": \"ced\",\n  \"cédera\": \"ced\",\n  \"céderons\": \"ced\",\n  \"cédez\": \"ced\",\n  \"cèdre\": \"cedr\",\n  \"cèdres\": \"cedr\",\n  \"ceignait\": \"ceign\",\n  \"ceinture\": \"ceintur\",\n  \"cela\": \"cel\",\n  \"célébra\": \"célebr\",\n  \"célébraient\": \"célebr\",\n  \"célébrait\": \"célebr\",\n  \"célèbre\": \"célebr\",\n  \"célébré\": \"célebr\",\n  \"célébrée\": \"célebr\",\n  \"célébrèrent\": \"célebr\",\n  \"célèbres\": \"célebr\",\n  \"célébrés\": \"célebr\",\n  \"céleste\": \"célest\",\n  \"célibataires\": \"célibatair\",\n  \"cella\": \"cel\",\n  \"celle\": \"cel\",\n  \"celles\": \"cel\",\n  \"cellier\": \"celli\",\n  \"cellule\": \"cellul\",\n  \"celui\": \"celui\",\n  \"cendré\": \"cendr\",\n  \"cendres\": \"cendr\",\n  \"cendrés\": \"cendr\",\n  \"cenis\": \"cen\",\n  \"censure\": \"censur\",\n  \"cent\": \"cent\",\n  \"centaine\": \"centain\",\n  \"centaines\": \"centain\",\n  \"centième\": \"centiem\",\n  \"centièmes\": \"centiem\",\n  \"centime\": \"centim\",\n  \"centimes\": \"centim\",\n  \"central\": \"central\",\n  \"centrale\": \"central\",\n  \"centre\": \"centr\",\n  \"centres\": \"centr\",\n  \"cents\": \"cent\",\n  \"centuplais\": \"centupl\",\n  \"centuplait\": \"centupl\",\n  \"centuplée\": \"centupl\",\n  \"cependant\": \"cepend\",\n  \"cercle\": \"cercl\",\n  \"cercles\": \"cercl\",\n  \"cérémonie\": \"cérémon\",\n  \"cérémonies\": \"cérémon\",\n  \"cérémonieuse\": \"cérémoni\",\n  \"cérès\": \"céres\",\n  \"cerf\": \"cerf\",\n  \"cerisiers\": \"cerisi\",\n  \"certain\": \"certain\",\n  \"certaine\": \"certain\",\n  \"certainement\": \"certain\",\n  \"certaines\": \"certain\",\n  \"certains\": \"certain\",\n  \"certes\": \"cert\",\n  \"certi\": \"cert\",\n  \"certificat\": \"certificat\",\n  \"certificats\": \"certificat\",\n  \"certifiera\": \"certifi\",\n  \"certitude\": \"certitud\",\n  \"certitudes\": \"certitud\",\n  \"cerveau\": \"cerveau\",\n  \"cervelle\": \"cervel\",\n  \"ces\": \"ce\",\n  \"césar\": \"césar\",\n  \"cesare\": \"cesar\",\n  \"cessa\": \"cess\",\n  \"cessaient\": \"cess\",\n  \"cessait\": \"cess\",\n  \"cessant\": \"cess\",\n  \"cessante\": \"cess\",\n  \"cessation\": \"cessat\",\n  \"cesse\": \"cess\",\n  \"cessé\": \"cess\",\n  \"cesser\": \"cess\",\n  \"cessera\": \"cess\",\n  \"cesserais\": \"cess\",\n  \"cesseras\": \"cess\",\n  \"cessèrent\": \"cess\",\n  \"cesseront\": \"cess\",\n  \"cessiez\": \"cess\",\n  \"cessions\": \"cession\",\n  \"cet\": \"cet\",\n  \"cette\": \"cet\",\n  \"ceux\": \"ceux\",\n  \"ceylan\": \"ceylan\",\n  \"ceylandais\": \"ceyland\",\n  \"chacun\": \"chacun\",\n  \"chacune\": \"chacun\",\n  \"chagrin\": \"chagrin\",\n  \"chagrine\": \"chagrin\",\n  \"chagriner\": \"chagrin\",\n  \"chagrins\": \"chagrin\",\n  \"chaîne\": \"chaîn\",\n  \"chaînes\": \"chaîn\",\n  \"chaînon\": \"chaînon\",\n  \"chaînons\": \"chaînon\",\n  \"chair\": \"chair\",\n  \"chaire\": \"chair\",\n  \"chaise\": \"chais\",\n  \"chaises\": \"chais\",\n  \"chalands\": \"chaland\",\n  \"châle\": \"châl\",\n  \"chaleur\": \"chaleur\",\n  \"chaleurs\": \"chaleur\",\n  \"châlon\": \"châlon\",\n  \"châlons\": \"châlon\",\n  \"chalvet\": \"chalvet\",\n  \"chamarrées\": \"chamarr\",\n  \"chamarrés\": \"chamarr\",\n  \"chambellan\": \"chambellan\",\n  \"chambellans\": \"chambellan\",\n  \"chambranle\": \"chambranl\",\n  \"chambre\": \"chambr\",\n  \"chambres\": \"chambr\",\n  \"chambrette\": \"chambret\",\n  \"chameau\": \"chameau\",\n  \"champ\": \"champ\",\n  \"champagne\": \"champagn\",\n  \"champêtre\": \"champêtr\",\n  \"champions\": \"champion\",\n  \"champs\": \"champ\",\n  \"chance\": \"chanc\",\n  \"chancelant\": \"chancel\",\n  \"chancelier\": \"chanceli\",\n  \"chancellerie\": \"chanceller\",\n  \"chances\": \"chanc\",\n  \"chanceux\": \"chanceux\",\n  \"chandelle\": \"chandel\",\n  \"chandernagor\": \"chandernagor\",\n  \"change\": \"chang\",\n  \"changé\": \"chang\",\n  \"changea\": \"chang\",\n  \"changeaient\": \"chang\",\n  \"changeait\": \"chang\",\n  \"changeant\": \"chang\",\n  \"changeante\": \"chang\",\n  \"changeants\": \"chang\",\n  \"changée\": \"chang\",\n  \"changement\": \"chang\",\n  \"changements\": \"chang\",\n  \"changent\": \"changent\",\n  \"changer\": \"chang\",\n  \"changerait\": \"chang\",\n  \"changèrent\": \"chang\",\n  \"changeront\": \"chang\",\n  \"changés\": \"chang\",\n  \"chanoine\": \"chanoin\",\n  \"chanoines\": \"chanoin\",\n  \"chanoinesse\": \"chanoiness\",\n  \"chanson\": \"chanson\",\n  \"chansons\": \"chanson\",\n  \"chant\": \"chant\",\n  \"chanta\": \"chant\",\n  \"chantai\": \"chant\",\n  \"chantaient\": \"chant\",\n  \"chantait\": \"chant\",\n  \"chantant\": \"chant\",\n  \"chante\": \"chant\",\n  \"chanté\": \"chant\",\n  \"chantée\": \"chant\",\n  \"chanter\": \"chant\",\n  \"chantèrent\": \"chant\",\n  \"chantés\": \"chant\",\n  \"chanteur\": \"chanteur\",\n  \"chanteuses\": \"chanteux\",\n  \"chantiez\": \"chant\",\n  \"chantonnant\": \"chanton\",\n  \"chants\": \"chant\",\n  \"chanvre\": \"chanvr\",\n  \"chaos\": \"chaos\",\n  \"chap\": \"chap\",\n  \"chapeau\": \"chapeau\",\n  \"chapeaux\": \"chapeau\",\n  \"chapelet\": \"chapelet\",\n  \"chapelle\": \"chapel\",\n  \"chapes\": \"chap\",\n  \"chapitre\": \"chapitr\",\n  \"chapitres\": \"chapitr\",\n  \"chapons\": \"chapon\",\n  \"chaque\": \"chaqu\",\n  \"char\": \"char\",\n  \"charade\": \"charad\",\n  \"charbon\": \"charbon\",\n  \"charbonnier\": \"charbonni\",\n  \"charcot\": \"charcot\",\n  \"charge\": \"charg\",\n  \"chargé\": \"charg\",\n  \"chargea\": \"charg\",\n  \"chargeaient\": \"charg\",\n  \"chargeait\": \"charg\",\n  \"chargeant\": \"charg\",\n  \"chargée\": \"charg\",\n  \"chargées\": \"charg\",\n  \"chargement\": \"charg\",\n  \"charger\": \"charg\",\n  \"chargera\": \"charg\",\n  \"chargerais\": \"charg\",\n  \"chargerait\": \"charg\",\n  \"chargèrent\": \"charg\",\n  \"charges\": \"charg\",\n  \"chargés\": \"charg\",\n  \"chargez\": \"charg\",\n  \"charing\": \"charing\",\n  \"charitable\": \"charit\",\n  \"charité\": \"charit\",\n  \"charlatanisme\": \"charlatan\",\n  \"charlatans\": \"charlatan\",\n  \"charlemagne\": \"charlemagn\",\n  \"charleroi\": \"charleroi\",\n  \"charles\": \"charl\",\n  \"charlotte\": \"charlott\",\n  \"charma\": \"charm\",\n  \"charmant\": \"charm\",\n  \"charmante\": \"charm\",\n  \"charmantes\": \"charm\",\n  \"charmants\": \"charm\",\n  \"charme\": \"charm\",\n  \"charmé\": \"charm\",\n  \"charmée\": \"charm\",\n  \"charmer\": \"charm\",\n  \"charmes\": \"charm\",\n  \"charmier\": \"charmi\",\n  \"charpente\": \"charpent\",\n  \"charpentier\": \"charpenti\",\n  \"charrette\": \"charret\",\n  \"charrettes\": \"charret\",\n  \"charron\": \"charron\",\n  \"charrues\": \"charru\",\n  \"chars\": \"char\",\n  \"charte\": \"chart\",\n  \"chartreuse\": \"chartreux\",\n  \"chartreux\": \"chartreux\",\n  \"chas\": \"chas\",\n  \"chassa\": \"chass\",\n  \"chassaient\": \"chass\",\n  \"chassait\": \"chass\",\n  \"chassant\": \"chass\",\n  \"chasse\": \"chass\",\n  \"châsse\": \"châss\",\n  \"chassé\": \"chass\",\n  \"chassée\": \"chass\",\n  \"chassent\": \"chassent\",\n  \"chasser\": \"chass\",\n  \"chassera\": \"chass\",\n  \"chassés\": \"chass\",\n  \"chasseur\": \"chasseur\",\n  \"chasseurs\": \"chasseur\",\n  \"chassez\": \"chass\",\n  \"châssis\": \"châss\",\n  \"chasuble\": \"chasubl\",\n  \"chasubles\": \"chasubl\",\n  \"chat\": \"chat\",\n  \"châtaignes\": \"châtaign\",\n  \"châtaignier\": \"châtaigni\",\n  \"châtaigniers\": \"châtaigni\",\n  \"châtain\": \"châtain\",\n  \"châtains\": \"châtain\",\n  \"château\": \"château\",\n  \"châteaux\": \"château\",\n  \"châtier\": \"châti\",\n  \"châtiment\": \"chât\",\n  \"chatouillement\": \"chatouill\",\n  \"chatouilleuse\": \"chatouill\",\n  \"chats\": \"chat\",\n  \"chaud\": \"chaud\",\n  \"chaude\": \"chaud\",\n  \"chaudement\": \"chaud\",\n  \"chaudes\": \"chaud\",\n  \"chaudière\": \"chaudi\",\n  \"chaudières\": \"chaudi\",\n  \"chauffage\": \"chauffag\",\n  \"chauffaient\": \"chauff\",\n  \"chauffé\": \"chauff\",\n  \"chauffée\": \"chauff\",\n  \"chauffer\": \"chauff\",\n  \"chauffeur\": \"chauffeur\",\n  \"chauffeurs\": \"chauffeur\",\n  \"chauffez\": \"chauff\",\n  \"chauffons\": \"chauffon\",\n  \"chaulnes\": \"chauln\",\n  \"chaume\": \"chaum\",\n  \"chaumière\": \"chaumi\",\n  \"chaumières\": \"chaumi\",\n  \"chaussa\": \"chauss\",\n  \"chaussé\": \"chauss\",\n  \"chaussée\": \"chauss\",\n  \"chaussés\": \"chauss\",\n  \"chaussettes\": \"chausset\",\n  \"chaussure\": \"chaussur\",\n  \"chaussures\": \"chaussur\",\n  \"chauve\": \"chauv\",\n  \"chaux\": \"chaux\",\n  \"chavira\": \"chav\",\n  \"chavirer\": \"chavir\",\n  \"chazel\": \"chazel\",\n  \"che\": \"che\",\n  \"chef\": \"chef\",\n  \"chefs\": \"chef\",\n  \"chekina\": \"chekin\",\n  \"chékina\": \"chékin\",\n  \"chélan\": \"chélan\",\n  \"chelem\": \"chelem\",\n  \"chelles\": \"chel\",\n  \"chemin\": \"chemin\",\n  \"cheminant\": \"chemin\",\n  \"cheminée\": \"chemin\",\n  \"cheminées\": \"chemin\",\n  \"chemins\": \"chemin\",\n  \"chemise\": \"chemis\",\n  \"chemises\": \"chemis\",\n  \"chêne\": \"chên\",\n  \"chênes\": \"chên\",\n  \"chènevière\": \"chènevi\",\n  \"chenu\": \"chenu\",\n  \"chèque\": \"chequ\",\n  \"chèques\": \"chequ\",\n  \"cher\": \"cher\",\n  \"chercha\": \"cherch\",\n  \"cherchaient\": \"cherch\",\n  \"cherchais\": \"cherch\",\n  \"cherchait\": \"cherch\",\n  \"cherchant\": \"cherch\",\n  \"cherche\": \"cherch\",\n  \"cherché\": \"cherch\",\n  \"cherchée\": \"cherch\",\n  \"cherchent\": \"cherchent\",\n  \"chercher\": \"cherch\",\n  \"cherchera\": \"cherch\",\n  \"chercherai\": \"cherch\",\n  \"chercherait\": \"cherch\",\n  \"cherchèrent\": \"cherch\",\n  \"chercherez\": \"cherch\",\n  \"cherches\": \"cherch\",\n  \"cherchez\": \"cherch\",\n  \"cherchons\": \"cherchon\",\n  \"chère\": \"cher\",\n  \"chèrement\": \"cher\",\n  \"chères\": \"cher\",\n  \"chéri\": \"cher\",\n  \"chérie\": \"cher\",\n  \"chérir\": \"cher\",\n  \"chéris\": \"cher\",\n  \"chers\": \"cher\",\n  \"chester\": \"chest\",\n  \"chétif\": \"chétif\",\n  \"chétifs\": \"chétif\",\n  \"chétive\": \"chétiv\",\n  \"cheval\": \"cheval\",\n  \"chevaleresque\": \"chevaleresqu\",\n  \"chevalerie\": \"chevaler\",\n  \"chevalier\": \"chevali\",\n  \"chevaliers\": \"chevali\",\n  \"chevaux\": \"cheval\",\n  \"chevelure\": \"chevelur\",\n  \"chevet\": \"chevet\",\n  \"cheveu\": \"cheveu\",\n  \"cheveux\": \"cheveux\",\n  \"chèvrefeuilles\": \"chèvrefeuill\",\n  \"chèvres\": \"chevr\",\n  \"chevreuse\": \"chevreux\",\n  \"cheyenne\": \"cheyen\",\n  \"chez\": \"chez\",\n  \"chiaramonti\": \"chiaramont\",\n  \"chicago\": \"chicago\",\n  \"chicorée\": \"chicor\",\n  \"chien\": \"chien\",\n  \"chiens\": \"chien\",\n  \"chiffonna\": \"chiffon\",\n  \"chiffonnait\": \"chiffon\",\n  \"chiffons\": \"chiffon\",\n  \"chiffre\": \"chiffr\",\n  \"chiffrée\": \"chiffr\",\n  \"chiffrées\": \"chiffr\",\n  \"chiffrer\": \"chiffr\",\n  \"chiffres\": \"chiffr\",\n  \"chili\": \"chil\",\n  \"chimère\": \"chimer\",\n  \"chimères\": \"chimer\",\n  \"chimériques\": \"chimer\",\n  \"china\": \"chin\",\n  \"chine\": \"chin\",\n  \"chinois\": \"chinois\",\n  \"chinoise\": \"chinois\",\n  \"chinoises\": \"chinois\",\n  \"chiper\": \"chip\",\n  \"chiperait\": \"chip\",\n  \"chirurgicales\": \"chirurgical\",\n  \"chirurgie\": \"chirurg\",\n  \"chirurgien\": \"chirurgien\",\n  \"chlemm\": \"chlemm\",\n  \"choc\": \"choc\",\n  \"chocolat\": \"chocolat\",\n  \"choeur\": \"choeur\",\n  \"choeurs\": \"choeur\",\n  \"choisi\": \"chois\",\n  \"choisie\": \"chois\",\n  \"choisies\": \"chois\",\n  \"choisir\": \"chois\",\n  \"choisirai\": \"chois\",\n  \"choisirez\": \"chois\",\n  \"choisis\": \"chois\",\n  \"choisissait\": \"chois\",\n  \"choisissez\": \"chois\",\n  \"choisit\": \"chois\",\n  \"choix\": \"choix\",\n  \"cholin\": \"cholin\",\n  \"choqua\": \"choqu\",\n  \"choquait\": \"choqu\",\n  \"choquante\": \"choqu\",\n  \"choque\": \"choqu\",\n  \"choqué\": \"choqu\",\n  \"choquée\": \"choqu\",\n  \"choquer\": \"choqu\",\n  \"choquera\": \"choqu\",\n  \"choqueraient\": \"choqu\",\n  \"choquèrent\": \"choqu\",\n  \"choqués\": \"choqu\",\n  \"chorus\": \"chorus\",\n  \"chose\": \"chos\",\n  \"choses\": \"chos\",\n  \"chouart\": \"chouart\",\n  \"choucroute\": \"choucrout\",\n  \"choyé\": \"choi\",\n  \"chrétien\": \"chrétien\",\n  \"chrétienne\": \"chrétien\",\n  \"chrétiennes\": \"chrétien\",\n  \"chrétiens\": \"chrétien\",\n  \"christ\": \"christ\",\n  \"christianisme\": \"christian\",\n  \"chromatique\": \"chromat\",\n  \"chronicle\": \"chronicl\",\n  \"chronique\": \"chroniqu\",\n  \"chronomètre\": \"chronometr\",\n  \"chronomètres\": \"chronometr\",\n  \"chronométriquement\": \"chronometr\",\n  \"chunar\": \"chunar\",\n  \"chut\": \"chut\",\n  \"chute\": \"chut\",\n  \"chuté\": \"chut\",\n  \"chutes\": \"chut\",\n  \"ci\": \"ci\",\n  \"ciceri\": \"cicer\",\n  \"cicéron\": \"cicéron\",\n  \"cicéronien\": \"cicéronien\",\n  \"ciel\": \"ciel\",\n  \"cierge\": \"cierg\",\n  \"cierges\": \"cierg\",\n  \"cieux\": \"cieux\",\n  \"cigales\": \"cigal\",\n  \"cigare\": \"cigar\",\n  \"cigares\": \"cigar\",\n  \"ciguë\": \"cigu\",\n  \"cils\": \"cil\",\n  \"cimabué\": \"cimabu\",\n  \"cimarosa\": \"cimaros\",\n  \"cime\": \"cim\",\n  \"cimes\": \"cim\",\n  \"cimetière\": \"cimeti\",\n  \"cinnamome\": \"cinnamom\",\n  \"cinq\": \"cinq\",\n  \"cinquantaine\": \"cinquantain\",\n  \"cinquante\": \"cinqu\",\n  \"cinquantième\": \"cinquantiem\",\n  \"cinquième\": \"cinquiem\",\n  \"cipayes\": \"cipay\",\n  \"circé\": \"circ\",\n  \"circonférence\": \"circonférent\",\n  \"circonspection\": \"circonspect\",\n  \"circonstance\": \"circonst\",\n  \"circonstances\": \"circonst\",\n  \"circonstancié\": \"circonstanci\",\n  \"circonvenir\": \"circonven\",\n  \"circula\": \"circul\",\n  \"circulaient\": \"circul\",\n  \"circulaire\": \"circulair\",\n  \"circulairement\": \"circulair\",\n  \"circulaires\": \"circulair\",\n  \"circulant\": \"circul\",\n  \"circulante\": \"circul\",\n  \"circulation\": \"circul\",\n  \"circuler\": \"circul\",\n  \"circulerait\": \"circul\",\n  \"circumnavigation\": \"circumnavig\",\n  \"cire\": \"cir\",\n  \"cirque\": \"cirqu\",\n  \"cirques\": \"cirqu\",\n  \"cisalpin\": \"cisalpin\",\n  \"cisalpine\": \"cisalpin\",\n  \"cisco\": \"cisco\",\n  \"ciseaux\": \"ciseau\",\n  \"cita\": \"cit\",\n  \"citadelle\": \"citadel\",\n  \"citaient\": \"cit\",\n  \"citait\": \"cit\",\n  \"citant\": \"cit\",\n  \"citation\": \"citat\",\n  \"citations\": \"citat\",\n  \"cite\": \"cit\",\n  \"cité\": \"cit\",\n  \"citée\": \"cit\",\n  \"citer\": \"cit\",\n  \"citernes\": \"citern\",\n  \"cités\": \"cit\",\n  \"citoyen\": \"citoyen\",\n  \"citoyennes\": \"citoyen\",\n  \"citoyens\": \"citoyen\",\n  \"citronnier\": \"citronni\",\n  \"city\": \"city\",\n  \"civil\": \"civil\",\n  \"civile\": \"civil\",\n  \"civilisation\": \"civilis\",\n  \"civilisées\": \"civilis\",\n  \"civilisés\": \"civilis\",\n  \"civils\": \"civil\",\n  \"clair\": \"clair\",\n  \"claire\": \"clair\",\n  \"clairement\": \"clair\",\n  \"claires\": \"clair\",\n  \"clairière\": \"clairi\",\n  \"clairs\": \"clair\",\n  \"clairvoyance\": \"clairvoi\",\n  \"clairvoyant\": \"clairvoi\",\n  \"clairvoyante\": \"clairvoi\",\n  \"clairvoyants\": \"clairvoi\",\n  \"clameurs\": \"clameur\",\n  \"clandestin\": \"clandestin\",\n  \"clara\": \"clar\",\n  \"claret\": \"claret\",\n  \"clarté\": \"clart\",\n  \"classait\": \"class\",\n  \"classe\": \"class\",\n  \"classé\": \"class\",\n  \"classes\": \"class\",\n  \"classés\": \"class\",\n  \"clause\": \"claus\",\n  \"clayonnage\": \"clayonnag\",\n  \"clef\": \"clef\",\n  \"clefs\": \"clef\",\n  \"clélia\": \"cléli\",\n  \"clémence\": \"clémenc\",\n  \"clément\": \"clément\",\n  \"clerc\": \"clerc\",\n  \"clercs\": \"clerc\",\n  \"clergé\": \"clerg\",\n  \"clignant\": \"clign\",\n  \"climat\": \"climat\",\n  \"clin\": \"clin\",\n  \"clinquant\": \"clinqu\",\n  \"clippers\": \"clipper\",\n  \"clique\": \"cliqu\",\n  \"cliquettes\": \"cliquet\",\n  \"cloaque\": \"cloaqu\",\n  \"cloche\": \"cloch\",\n  \"clocher\": \"cloch\",\n  \"clochers\": \"clocher\",\n  \"cloches\": \"cloch\",\n  \"clochettes\": \"clochet\",\n  \"cloître\": \"cloîtr\",\n  \"clopant\": \"clop\",\n  \"clopin\": \"clopin\",\n  \"clore\": \"clor\",\n  \"clos\": \"clos\",\n  \"close\": \"clos\",\n  \"closes\": \"clos\",\n  \"clôture\": \"clôtur\",\n  \"clou\": \"clou\",\n  \"cloua\": \"clou\",\n  \"cloud\": \"cloud\",\n  \"cloué\": \"clou\",\n  \"clouée\": \"clou\",\n  \"clous\": \"clous\",\n  \"cloutier\": \"clouti\",\n  \"clown\": \"clown\",\n  \"clowns\": \"clown\",\n  \"club\": \"club\",\n  \"co\": \"co\",\n  \"coach\": \"coach\",\n  \"coaches\": \"coach\",\n  \"coadjuteur\": \"coadjuteur\",\n  \"coblentz\": \"coblentz\",\n  \"cocarde\": \"cocard\",\n  \"cocher\": \"coch\",\n  \"cochère\": \"cocher\",\n  \"cochers\": \"cocher\",\n  \"cochinchine\": \"cochinchin\",\n  \"coconasso\": \"coconasso\",\n  \"cocotiers\": \"cocoti\",\n  \"cocotte\": \"cocott\",\n  \"code\": \"cod\",\n  \"coeur\": \"coeur\",\n  \"coeurs\": \"coeur\",\n  \"coffre\": \"coffr\",\n  \"coffré\": \"coffr\",\n  \"coffres\": \"coffr\",\n  \"cohue\": \"cohu\",\n  \"coidet\": \"coidet\",\n  \"coiffa\": \"coiff\",\n  \"coiffé\": \"coiff\",\n  \"coiffée\": \"coiff\",\n  \"coiffés\": \"coiff\",\n  \"coiffure\": \"coiffur\",\n  \"coin\": \"coin\",\n  \"coïncidence\": \"coïncident\",\n  \"coins\": \"coin\",\n  \"col\": \"col\",\n  \"cola\": \"col\",\n  \"colaba\": \"colab\",\n  \"coldness\": \"coldness\",\n  \"colère\": \"coler\",\n  \"colères\": \"coler\",\n  \"colfax\": \"colfax\",\n  \"colifichet\": \"colifichet\",\n  \"colimaçon\": \"colimaçon\",\n  \"colique\": \"coliqu\",\n  \"colis\": \"colis\",\n  \"collaborateurs\": \"collabor\",\n  \"collait\": \"coll\",\n  \"collants\": \"coll\",\n  \"colle\": \"coll\",\n  \"collé\": \"coll\",\n  \"collecteur\": \"collecteur\",\n  \"collecteurs\": \"collecteur\",\n  \"collection\": \"collect\",\n  \"collège\": \"colleg\",\n  \"collègue\": \"collègu\",\n  \"collègues\": \"collègu\",\n  \"coller\": \"coll\",\n  \"collés\": \"coll\",\n  \"collet\": \"collet\",\n  \"collier\": \"colli\",\n  \"colliers\": \"colli\",\n  \"colline\": \"collin\",\n  \"collines\": \"collin\",\n  \"colloque\": \"colloqu\",\n  \"colmar\": \"colmar\",\n  \"colombes\": \"colomb\",\n  \"colombier\": \"colombi\",\n  \"colonel\": \"colonel\",\n  \"colonels\": \"colonel\",\n  \"colonie\": \"colon\",\n  \"colonisateur\": \"colonis\",\n  \"coloniser\": \"colonis\",\n  \"colonnade\": \"colonnad\",\n  \"colonne\": \"colon\",\n  \"colonnes\": \"colon\",\n  \"colorado\": \"colorado\",\n  \"coloré\": \"color\",\n  \"colorée\": \"color\",\n  \"colorié\": \"colori\",\n  \"coloris\": \"color\",\n  \"colorno\": \"colorno\",\n  \"colossal\": \"colossal\",\n  \"colossale\": \"colossal\",\n  \"colossales\": \"colossal\",\n  \"colpa\": \"colp\",\n  \"colt\": \"colt\",\n  \"columbus\": \"columbus\",\n  \"combat\": \"combat\",\n  \"combats\": \"combat\",\n  \"combattaient\": \"combatt\",\n  \"combattants\": \"combatt\",\n  \"combattis\": \"combatt\",\n  \"combattit\": \"combatt\",\n  \"combattre\": \"combattr\",\n  \"combattu\": \"combattu\",\n  \"combattue\": \"combattu\",\n  \"combien\": \"combien\",\n  \"combina\": \"combin\",\n  \"combinaisons\": \"combinaison\",\n  \"combinant\": \"combin\",\n  \"combiné\": \"combin\",\n  \"combinés\": \"combin\",\n  \"comble\": \"combl\",\n  \"comblé\": \"combl\",\n  \"combler\": \"combl\",\n  \"comblerait\": \"combl\",\n  \"combles\": \"combl\",\n  \"combustible\": \"combustibl\",\n  \"come\": \"com\",\n  \"côme\": \"côm\",\n  \"comédie\": \"comed\",\n  \"comédien\": \"comédien\",\n  \"comédiens\": \"comédien\",\n  \"comédies\": \"comed\",\n  \"comestible\": \"comestibl\",\n  \"comestibles\": \"comestibl\",\n  \"comique\": \"comiqu\",\n  \"comiques\": \"comiqu\",\n  \"comité\": \"comit\",\n  \"commanda\": \"command\",\n  \"commandaient\": \"command\",\n  \"commandait\": \"command\",\n  \"commandant\": \"command\",\n  \"commande\": \"command\",\n  \"commandé\": \"command\",\n  \"commandée\": \"command\",\n  \"commandement\": \"command\",\n  \"commandements\": \"command\",\n  \"commander\": \"command\",\n  \"commandera\": \"command\",\n  \"commanderez\": \"command\",\n  \"commandons\": \"commandon\",\n  \"comme\": \"comm\",\n  \"commença\": \"commenc\",\n  \"commençai\": \"commenc\",\n  \"commençaient\": \"commenc\",\n  \"commençait\": \"commenc\",\n  \"commençant\": \"commenc\",\n  \"commence\": \"commenc\",\n  \"commencé\": \"commenc\",\n  \"commencée\": \"commenc\",\n  \"commencement\": \"commenc\",\n  \"commencements\": \"commenc\",\n  \"commencent\": \"commencent\",\n  \"commencer\": \"commenc\",\n  \"commencera\": \"commenc\",\n  \"commencerai\": \"commenc\",\n  \"commencerait\": \"commenc\",\n  \"commencèrent\": \"commenc\",\n  \"commencés\": \"commenc\",\n  \"commencez\": \"commenc\",\n  \"commençons\": \"commençon\",\n  \"commensal\": \"commensal\",\n  \"comment\": \"comment\",\n  \"commentaire\": \"commentair\",\n  \"commentaires\": \"commentair\",\n  \"commentateurs\": \"comment\",\n  \"commentée\": \"comment\",\n  \"commenter\": \"comment\",\n  \"commentés\": \"comment\",\n  \"commerçante\": \"commerc\",\n  \"commerçantes\": \"commerc\",\n  \"commerçants\": \"commerc\",\n  \"commerce\": \"commerc\",\n  \"commerciale\": \"commercial\",\n  \"commets\": \"commet\",\n  \"commette\": \"commet\",\n  \"commettent\": \"commettent\",\n  \"commettra\": \"commettr\",\n  \"commettrais\": \"commettr\",\n  \"commettre\": \"commettr\",\n  \"commis\": \"comm\",\n  \"commise\": \"commis\",\n  \"commisération\": \"commiser\",\n  \"commissaire\": \"commissair\",\n  \"commission\": \"commiss\",\n  \"commissions\": \"comm\",\n  \"commit\": \"comm\",\n  \"commode\": \"commod\",\n  \"commodément\": \"commod\",\n  \"commotion\": \"commot\",\n  \"commuée\": \"commu\",\n  \"commuer\": \"commu\",\n  \"commuera\": \"commu\",\n  \"commun\": \"commun\",\n  \"communauté\": \"communaut\",\n  \"communaux\": \"communal\",\n  \"commune\": \"commun\",\n  \"communément\": \"commun\",\n  \"communes\": \"commun\",\n  \"communicatif\": \"commun\",\n  \"communication\": \"commun\",\n  \"communications\": \"commun\",\n  \"communicative\": \"commun\",\n  \"communie\": \"commun\",\n  \"communion\": \"communion\",\n  \"communiqua\": \"communiqu\",\n  \"communiquaient\": \"communiqu\",\n  \"communiquait\": \"communiqu\",\n  \"communique\": \"commun\",\n  \"communiqué\": \"communiqu\",\n  \"communiquée\": \"communiqu\",\n  \"communiquer\": \"communiqu\",\n  \"communs\": \"commun\",\n  \"commutation\": \"commut\",\n  \"compagne\": \"compagn\",\n  \"compagnie\": \"compagn\",\n  \"compagnies\": \"compagn\",\n  \"compagnon\": \"compagnon\",\n  \"compagnons\": \"compagnon\",\n  \"compara\": \"compar\",\n  \"comparable\": \"compar\",\n  \"comparaient\": \"compar\",\n  \"comparaison\": \"comparaison\",\n  \"comparait\": \"compar\",\n  \"comparaîtrez\": \"comparaîtr\",\n  \"comparant\": \"compar\",\n  \"comparativement\": \"compar\",\n  \"compare\": \"compar\",\n  \"comparé\": \"compar\",\n  \"comparée\": \"compar\",\n  \"comparer\": \"compar\",\n  \"compartiment\": \"compart\",\n  \"compartiments\": \"compart\",\n  \"compas\": \"comp\",\n  \"compassé\": \"compass\",\n  \"compassées\": \"compass\",\n  \"compatibles\": \"compatibl\",\n  \"compatriote\": \"compatriot\",\n  \"compatriotes\": \"compatriot\",\n  \"compensation\": \"compens\",\n  \"compense\": \"compens\",\n  \"compensé\": \"compens\",\n  \"compenser\": \"compens\",\n  \"compère\": \"comper\",\n  \"complaisait\": \"complais\",\n  \"complaisamment\": \"complais\",\n  \"complaisance\": \"complais\",\n  \"complaisances\": \"complais\",\n  \"complaisant\": \"complais\",\n  \"complaisante\": \"complais\",\n  \"complaisantes\": \"complais\",\n  \"complaisants\": \"complais\",\n  \"complément\": \"compl\",\n  \"complet\": \"complet\",\n  \"complétaient\": \"complet\",\n  \"complétait\": \"complet\",\n  \"complète\": \"complet\",\n  \"complété\": \"complet\",\n  \"complètement\": \"complet\",\n  \"compléter\": \"complet\",\n  \"complètes\": \"complet\",\n  \"complets\": \"complet\",\n  \"complication\": \"compliqu\",\n  \"complice\": \"complic\",\n  \"complices\": \"complic\",\n  \"complicité\": \"compliqu\",\n  \"compliment\": \"compl\",\n  \"complimenté\": \"compliment\",\n  \"complimenteur\": \"complimenteur\",\n  \"complimenteurs\": \"complimenteur\",\n  \"complimenteuse\": \"compliment\",\n  \"compliments\": \"compl\",\n  \"complique\": \"compliqu\",\n  \"compliqué\": \"compliqu\",\n  \"compliquée\": \"compliqu\",\n  \"compliquées\": \"compliqu\",\n  \"compliqués\": \"compliqu\",\n  \"complot\": \"complot\",\n  \"componction\": \"componct\",\n  \"comporta\": \"comport\",\n  \"comportait\": \"comport\",\n  \"comporte\": \"comport\",\n  \"comporté\": \"comport\",\n  \"comportée\": \"comport\",\n  \"composa\": \"compos\",\n  \"composaient\": \"compos\",\n  \"composait\": \"compos\",\n  \"composant\": \"compos\",\n  \"compose\": \"compos\",\n  \"composé\": \"compos\",\n  \"composée\": \"compos\",\n  \"composées\": \"compos\",\n  \"composent\": \"composent\",\n  \"composer\": \"compos\",\n  \"composition\": \"composit\",\n  \"compositions\": \"composit\",\n  \"comprato\": \"comprato\",\n  \"comprenaient\": \"compren\",\n  \"comprenait\": \"compren\",\n  \"comprenant\": \"compren\",\n  \"comprend\": \"comprend\",\n  \"comprendra\": \"comprendr\",\n  \"comprendrai\": \"comprendr\",\n  \"comprendrait\": \"comprendr\",\n  \"comprendre\": \"comprendr\",\n  \"comprendrez\": \"comprendr\",\n  \"comprends\": \"comprend\",\n  \"comprenez\": \"compren\",\n  \"comprenne\": \"compren\",\n  \"comprennent\": \"comprennent\",\n  \"comprimant\": \"comprim\",\n  \"comprimées\": \"comprim\",\n  \"comprimés\": \"comprim\",\n  \"comprirent\": \"compr\",\n  \"compris\": \"compr\",\n  \"comprise\": \"compris\",\n  \"comprit\": \"compr\",\n  \"comprît\": \"compr\",\n  \"compromet\": \"compromet\",\n  \"compromets\": \"compromet\",\n  \"compromettait\": \"compromet\",\n  \"compromettant\": \"compromet\",\n  \"compromettante\": \"compromet\",\n  \"compromettantes\": \"compromet\",\n  \"compromette\": \"compromet\",\n  \"compromettra\": \"compromettr\",\n  \"compromettrais\": \"compromettr\",\n  \"compromettre\": \"compromettr\",\n  \"compromis\": \"comprom\",\n  \"compromise\": \"compromis\",\n  \"compromises\": \"compromis\",\n  \"compta\": \"compt\",\n  \"comptabilité\": \"comptabl\",\n  \"comptaient\": \"compt\",\n  \"comptais\": \"compt\",\n  \"comptait\": \"compt\",\n  \"comptant\": \"compt\",\n  \"comptât\": \"compt\",\n  \"compte\": \"compt\",\n  \"compté\": \"compt\",\n  \"comptées\": \"compt\",\n  \"comptent\": \"comptent\",\n  \"compter\": \"compt\",\n  \"compterai\": \"compt\",\n  \"comptèrent\": \"compt\",\n  \"comptes\": \"compt\",\n  \"comptés\": \"compt\",\n  \"comptez\": \"compt\",\n  \"comptiez\": \"compt\",\n  \"comptoir\": \"comptoir\",\n  \"comptoirs\": \"comptoir\",\n  \"comptons\": \"compton\",\n  \"comte\": \"comt\",\n  \"comté\": \"comt\",\n  \"comtes\": \"comt\",\n  \"comtés\": \"comt\",\n  \"comtesse\": \"comtess\",\n  \"comtois\": \"comtois\",\n  \"comtoise\": \"comtois\",\n  \"concentré\": \"concentr\",\n  \"concentrer\": \"concentr\",\n  \"concentrés\": \"concentr\",\n  \"concernaient\": \"concern\",\n  \"concernant\": \"concern\",\n  \"concerné\": \"concern\",\n  \"concert\": \"concert\",\n  \"concerté\": \"concert\",\n  \"concerts\": \"concert\",\n  \"concession\": \"concess\",\n  \"concessions\": \"concess\",\n  \"concevaient\": \"concev\",\n  \"concevait\": \"concev\",\n  \"concevez\": \"concev\",\n  \"concevoir\": \"concevoir\",\n  \"concierge\": \"concierg\",\n  \"concilié\": \"concili\",\n  \"concilier\": \"concili\",\n  \"concises\": \"concis\",\n  \"concitoyens\": \"concitoyen\",\n  \"conclu\": \"conclu\",\n  \"concluaient\": \"conclu\",\n  \"concluantes\": \"conclu\",\n  \"concluants\": \"conclu\",\n  \"conclue\": \"conclu\",\n  \"conclure\": \"conclur\",\n  \"conclurent\": \"conclurent\",\n  \"conclusion\": \"conclus\",\n  \"conclusions\": \"conclus\",\n  \"conclut\": \"conclut\",\n  \"conçois\": \"conçois\",\n  \"conçoit\": \"conçoit\",\n  \"concordance\": \"concord\",\n  \"concordant\": \"concord\",\n  \"concordat\": \"concordat\",\n  \"concourent\": \"concourent\",\n  \"concours\": \"concour\",\n  \"conçu\": \"conçu\",\n  \"conçue\": \"conçu\",\n  \"concurrent\": \"concurrent\",\n  \"concurrents\": \"concurrent\",\n  \"conçut\": \"conçut\",\n  \"condamnable\": \"condamn\",\n  \"condamnait\": \"condamn\",\n  \"condamnant\": \"condamn\",\n  \"condamnation\": \"condamn\",\n  \"condamne\": \"condamn\",\n  \"condamné\": \"condamn\",\n  \"condamnée\": \"condamn\",\n  \"condamnent\": \"condamnent\",\n  \"condamner\": \"condamn\",\n  \"condamneront\": \"condamn\",\n  \"condamnés\": \"condamn\",\n  \"condé\": \"cond\",\n  \"condescendance\": \"condescend\",\n  \"condillac\": \"condillac\",\n  \"condiments\": \"cond\",\n  \"condition\": \"condit\",\n  \"conditionnée\": \"condition\",\n  \"conditions\": \"condit\",\n  \"condoléance\": \"condolé\",\n  \"conducteur\": \"conducteur\",\n  \"conduira\": \"conduir\",\n  \"conduirait\": \"conduir\",\n  \"conduire\": \"conduir\",\n  \"conduisaient\": \"conduis\",\n  \"conduisait\": \"conduis\",\n  \"conduisant\": \"conduis\",\n  \"conduisent\": \"conduisent\",\n  \"conduisez\": \"conduis\",\n  \"conduisit\": \"conduis\",\n  \"conduit\": \"conduit\",\n  \"conduite\": \"conduit\",\n  \"conduites\": \"conduit\",\n  \"conduits\": \"conduit\",\n  \"confection\": \"confect\",\n  \"confédéré\": \"conféder\",\n  \"conférait\": \"confer\",\n  \"conférence\": \"conférent\",\n  \"conférences\": \"conférent\",\n  \"conférer\": \"confer\",\n  \"confessant\": \"confess\",\n  \"confesser\": \"confess\",\n  \"confesserai\": \"confess\",\n  \"confesseur\": \"confesseur\",\n  \"confesseurs\": \"confesseur\",\n  \"confession\": \"confess\",\n  \"confessionnal\": \"confessionnal\",\n  \"confessionnaux\": \"confessionnal\",\n  \"confessions\": \"confess\",\n  \"confia\": \"confi\",\n  \"confiance\": \"confianc\",\n  \"confidence\": \"confident\",\n  \"confidences\": \"confident\",\n  \"confident\": \"confident\",\n  \"confidente\": \"confident\",\n  \"confié\": \"confi\",\n  \"confiée\": \"confi\",\n  \"confiées\": \"confi\",\n  \"confier\": \"confi\",\n  \"confiés\": \"confi\",\n  \"confiné\": \"confin\",\n  \"confiner\": \"confin\",\n  \"confirma\": \"confirm\",\n  \"confirmait\": \"confirm\",\n  \"confirmée\": \"confirm\",\n  \"confirmer\": \"confirm\",\n  \"confirmèrent\": \"confirm\",\n  \"confiscation\": \"confisc\",\n  \"confisque\": \"confisqu\",\n  \"confisqué\": \"confisqu\",\n  \"confit\": \"conf\",\n  \"confluent\": \"confluent\",\n  \"confondait\": \"confond\",\n  \"confonde\": \"confond\",\n  \"confondent\": \"confondent\",\n  \"confondre\": \"confondr\",\n  \"confondu\": \"confondu\",\n  \"confondus\": \"confondus\",\n  \"conformait\": \"conform\",\n  \"conforme\": \"conform\",\n  \"conformer\": \"conform\",\n  \"confort\": \"confort\",\n  \"confortable\": \"confort\",\n  \"confortablement\": \"confort\",\n  \"confortables\": \"confort\",\n  \"confrère\": \"confrer\",\n  \"confrères\": \"confrer\",\n  \"confrérie\": \"confrer\",\n  \"confucius\": \"confucius\",\n  \"confus\": \"confus\",\n  \"confuse\": \"confus\",\n  \"confusément\": \"confus\",\n  \"confusion\": \"confus\",\n  \"confusions\": \"confus\",\n  \"congé\": \"cong\",\n  \"congédia\": \"congédi\",\n  \"congédiant\": \"congédi\",\n  \"congédié\": \"congédi\",\n  \"congédiés\": \"congédi\",\n  \"congénères\": \"congéner\",\n  \"congestionnée\": \"congestion\",\n  \"congratulation\": \"congratul\",\n  \"congréganiste\": \"congrégan\",\n  \"congréganistes\": \"congrégan\",\n  \"congrégation\": \"congreg\",\n  \"congrès\": \"congres\",\n  \"conjecture\": \"conjectur\",\n  \"conjecturer\": \"conjectur\",\n  \"conjectures\": \"conjectur\",\n  \"conjonctions\": \"conjonct\",\n  \"conjugal\": \"conjugal\",\n  \"conjugale\": \"conjugal\",\n  \"conjuguer\": \"conjugu\",\n  \"conjurait\": \"conjur\",\n  \"conjurant\": \"conjur\",\n  \"conjure\": \"conjur\",\n  \"conjurée\": \"conjur\",\n  \"conjurer\": \"conjur\",\n  \"connais\": \"con\",\n  \"connaissaient\": \"connaiss\",\n  \"connaissais\": \"connaiss\",\n  \"connaissait\": \"connaiss\",\n  \"connaissance\": \"connaiss\",\n  \"connaissances\": \"connaiss\",\n  \"connaissent\": \"connaissent\",\n  \"connaisseurs\": \"connaisseur\",\n  \"connaissez\": \"connaiss\",\n  \"connaissiez\": \"connaiss\",\n  \"connaissons\": \"connaisson\",\n  \"connaît\": \"connaît\",\n  \"connaîtrait\": \"connaîtr\",\n  \"connaitre\": \"connaitr\",\n  \"connaître\": \"connaîtr\",\n  \"connivence\": \"connivent\",\n  \"connu\": \"connu\",\n  \"connue\": \"connu\",\n  \"connues\": \"connu\",\n  \"connus\": \"connus\",\n  \"connut\": \"connut\",\n  \"conquérir\": \"conquer\",\n  \"conquête\": \"conquêt\",\n  \"conquis\": \"conqu\",\n  \"conquise\": \"conquis\",\n  \"conradin\": \"conradin\",\n  \"consacrait\": \"consacr\",\n  \"consacre\": \"consacr\",\n  \"consacré\": \"consacr\",\n  \"consacrée\": \"consacr\",\n  \"consacrées\": \"consacr\",\n  \"consacrer\": \"consacr\",\n  \"consacrerai\": \"consacr\",\n  \"consacrés\": \"consacr\",\n  \"conscience\": \"conscienc\",\n  \"consciencieusement\": \"conscienci\",\n  \"conscription\": \"conscript\",\n  \"conscrit\": \"conscr\",\n  \"conseil\": \"conseil\",\n  \"conseilla\": \"conseil\",\n  \"conseillaient\": \"conseil\",\n  \"conseillait\": \"conseil\",\n  \"conseille\": \"conseil\",\n  \"conseillé\": \"conseil\",\n  \"conseillée\": \"conseil\",\n  \"conseiller\": \"conseil\",\n  \"conseillerai\": \"conseil\",\n  \"conseillerais\": \"conseil\",\n  \"conseillerait\": \"conseil\",\n  \"conseilleriez\": \"conseil\",\n  \"conseillers\": \"conseiller\",\n  \"conseils\": \"conseil\",\n  \"consens\": \"consen\",\n  \"consentait\": \"consent\",\n  \"consente\": \"consent\",\n  \"consentement\": \"consent\",\n  \"consentez\": \"consent\",\n  \"consenti\": \"consent\",\n  \"consentions\": \"consent\",\n  \"consentir\": \"consent\",\n  \"consentirai\": \"consent\",\n  \"consentirais\": \"consent\",\n  \"consentirent\": \"consent\",\n  \"consentit\": \"consent\",\n  \"conséquemment\": \"conséquent\",\n  \"conséquence\": \"conséquent\",\n  \"conséquences\": \"conséquent\",\n  \"conséquent\": \"conséquent\",\n  \"conservait\": \"conserv\",\n  \"conservant\": \"conserv\",\n  \"conservation\": \"conserv\",\n  \"conservatoire\": \"conservatoir\",\n  \"conserve\": \"conserv\",\n  \"conservé\": \"conserv\",\n  \"conservée\": \"conserv\",\n  \"conservées\": \"conserv\",\n  \"conservent\": \"conservent\",\n  \"conserver\": \"conserv\",\n  \"conserverai\": \"conserv\",\n  \"conserves\": \"conserv\",\n  \"considéra\": \"consider\",\n  \"considérable\": \"consider\",\n  \"considérablement\": \"consider\",\n  \"considérables\": \"consider\",\n  \"considérait\": \"consider\",\n  \"considérant\": \"consider\",\n  \"considération\": \"consider\",\n  \"considérations\": \"consider\",\n  \"considère\": \"consider\",\n  \"considéré\": \"consider\",\n  \"considérée\": \"consider\",\n  \"considérées\": \"consider\",\n  \"considérer\": \"consider\",\n  \"considérerais\": \"consider\",\n  \"considérés\": \"consider\",\n  \"consigne\": \"consign\",\n  \"consistait\": \"consist\",\n  \"consistance\": \"consist\",\n  \"consiste\": \"consist\",\n  \"consister\": \"consist\",\n  \"consola\": \"consol\",\n  \"consolaient\": \"consol\",\n  \"consolait\": \"consol\",\n  \"consolation\": \"consol\",\n  \"consolations\": \"consol\",\n  \"console\": \"consol\",\n  \"consolé\": \"consol\",\n  \"consolée\": \"consol\",\n  \"consoler\": \"consol\",\n  \"consomma\": \"consomm\",\n  \"consommateur\": \"consomm\",\n  \"consommateurs\": \"consomm\",\n  \"consommé\": \"consomm\",\n  \"consommée\": \"consomm\",\n  \"consommer\": \"consomm\",\n  \"consommez\": \"consomm\",\n  \"conspirais\": \"consp\",\n  \"conspirante\": \"conspir\",\n  \"conspirateur\": \"conspir\",\n  \"conspirateurs\": \"conspir\",\n  \"conspiration\": \"conspir\",\n  \"conspiré\": \"conspir\",\n  \"conspirer\": \"conspir\",\n  \"conspué\": \"conspu\",\n  \"constamment\": \"const\",\n  \"constance\": \"constanc\",\n  \"constant\": \"const\",\n  \"constante\": \"const\",\n  \"constantin\": \"constantin\",\n  \"constants\": \"const\",\n  \"constata\": \"constat\",\n  \"constaté\": \"constat\",\n  \"constater\": \"constat\",\n  \"consternation\": \"constern\",\n  \"consterné\": \"constern\",\n  \"consternée\": \"constern\",\n  \"constituait\": \"constitu\",\n  \"constitue\": \"constitu\",\n  \"constitué\": \"constitu\",\n  \"constituer\": \"constitu\",\n  \"constituera\": \"constitu\",\n  \"constitution\": \"constitu\",\n  \"constitutionnel\": \"constitutionnel\",\n  \"constitutionnels\": \"constitutionnel\",\n  \"construction\": \"construct\",\n  \"construire\": \"construir\",\n  \"construisait\": \"construis\",\n  \"construit\": \"construit\",\n  \"construite\": \"construit\",\n  \"construites\": \"construit\",\n  \"construits\": \"construit\",\n  \"consul\": \"consul\",\n  \"consulaire\": \"consulair\",\n  \"consulaires\": \"consulair\",\n  \"consulat\": \"consulat\",\n  \"consulta\": \"consult\",\n  \"consultait\": \"consult\",\n  \"consultant\": \"consult\",\n  \"consultative\": \"consult\",\n  \"consulté\": \"consult\",\n  \"consulter\": \"consult\",\n  \"consulterais\": \"consult\",\n  \"consultés\": \"consult\",\n  \"consultons\": \"consulton\",\n  \"consumé\": \"consum\",\n  \"conta\": \"cont\",\n  \"contact\": \"contact\",\n  \"contagieux\": \"contagi\",\n  \"contais\": \"cont\",\n  \"contait\": \"cont\",\n  \"contarini\": \"contarin\",\n  \"conte\": \"cont\",\n  \"conté\": \"cont\",\n  \"contée\": \"cont\",\n  \"contemplait\": \"contempl\",\n  \"contemplant\": \"contempl\",\n  \"contemplation\": \"contempl\",\n  \"contemple\": \"contempl\",\n  \"contempler\": \"contempl\",\n  \"contemplerait\": \"contempl\",\n  \"contemporains\": \"contemporain\",\n  \"contenaient\": \"conten\",\n  \"contenait\": \"conten\",\n  \"contenance\": \"conten\",\n  \"contenant\": \"conten\",\n  \"contenir\": \"conten\",\n  \"content\": \"content\",\n  \"contenta\": \"content\",\n  \"contentait\": \"content\",\n  \"contentant\": \"content\",\n  \"contente\": \"content\",\n  \"contentement\": \"content\",\n  \"contenterait\": \"content\",\n  \"contents\": \"content\",\n  \"contenu\": \"contenu\",\n  \"contenue\": \"contenu\",\n  \"contenues\": \"contenu\",\n  \"contenus\": \"contenus\",\n  \"conter\": \"cont\",\n  \"conterai\": \"cont\",\n  \"conterait\": \"cont\",\n  \"contes\": \"cont\",\n  \"contessina\": \"contessin\",\n  \"contester\": \"contest\",\n  \"conti\": \"cont\",\n  \"contiennent\": \"contiennent\",\n  \"contient\": \"contient\",\n  \"contine\": \"contin\",\n  \"continent\": \"continent\",\n  \"continental\": \"continental\",\n  \"continents\": \"continent\",\n  \"contino\": \"contino\",\n  \"contînt\": \"contînt\",\n  \"continu\": \"continu\",\n  \"continua\": \"continu\",\n  \"continuait\": \"continu\",\n  \"continuant\": \"continu\",\n  \"continuation\": \"continu\",\n  \"continue\": \"continu\",\n  \"continué\": \"continu\",\n  \"continuel\": \"continuel\",\n  \"continuelle\": \"continuel\",\n  \"continuellement\": \"continuel\",\n  \"continuelles\": \"continuel\",\n  \"continuels\": \"continuel\",\n  \"continuer\": \"continu\",\n  \"continuera\": \"continu\",\n  \"continuerait\": \"continu\",\n  \"continueront\": \"continu\",\n  \"continuez\": \"continu\",\n  \"continuité\": \"continu\",\n  \"continuons\": \"continuon\",\n  \"contorsions\": \"contors\",\n  \"contour\": \"contour\",\n  \"contournait\": \"contourn\",\n  \"contournant\": \"contourn\",\n  \"contourne\": \"contourn\",\n  \"contours\": \"contour\",\n  \"contractait\": \"contract\",\n  \"contracté\": \"contract\",\n  \"contractée\": \"contract\",\n  \"contracter\": \"contract\",\n  \"contractés\": \"contract\",\n  \"contractions\": \"contract\",\n  \"contradictoirement\": \"contradictoir\",\n  \"contradictoires\": \"contradictoir\",\n  \"contraindre\": \"contraindr\",\n  \"contraint\": \"contraint\",\n  \"contrainte\": \"contraint\",\n  \"contraintes\": \"contraint\",\n  \"contraire\": \"contrair\",\n  \"contraires\": \"contrair\",\n  \"contraria\": \"contrari\",\n  \"contrariait\": \"contrari\",\n  \"contrariant\": \"contrari\",\n  \"contrarie\": \"contrar\",\n  \"contrarié\": \"contrari\",\n  \"contrariée\": \"contrari\",\n  \"contrarier\": \"contrari\",\n  \"contrariera\": \"contrari\",\n  \"contrariés\": \"contrari\",\n  \"contrariété\": \"contrariet\",\n  \"contrariétés\": \"contrariet\",\n  \"contrariez\": \"contrar\",\n  \"contrastait\": \"contrast\",\n  \"contraste\": \"contrast\",\n  \"contrastes\": \"contrast\",\n  \"contrat\": \"contrat\",\n  \"contravention\": \"contravent\",\n  \"contraventions\": \"contravent\",\n  \"contre\": \"contr\",\n  \"contrebandier\": \"contrebandi\",\n  \"contrebandiers\": \"contrebandi\",\n  \"contrebas\": \"contreb\",\n  \"contrebasse\": \"contreb\",\n  \"contrebasses\": \"contreb\",\n  \"contrecoup\": \"contrecoup\",\n  \"contrecoups\": \"contrecoup\",\n  \"contredanse\": \"contredans\",\n  \"contredanses\": \"contredans\",\n  \"contredirait\": \"contred\",\n  \"contredire\": \"contredir\",\n  \"contredisait\": \"contredis\",\n  \"contredisant\": \"contredis\",\n  \"contredit\": \"contred\",\n  \"contrée\": \"contr\",\n  \"contrées\": \"contr\",\n  \"contrefaite\": \"contrefait\",\n  \"contrefera\": \"contref\",\n  \"contrefort\": \"contrefort\",\n  \"contresens\": \"contresen\",\n  \"contresigner\": \"contresign\",\n  \"contretemps\": \"contretemp\",\n  \"contribua\": \"contribu\",\n  \"contribuai\": \"contribu\",\n  \"contribué\": \"contribu\",\n  \"contribuer\": \"contribu\",\n  \"contribution\": \"contribu\",\n  \"contributions\": \"contribu\",\n  \"contrit\": \"contr\",\n  \"contrition\": \"contrit\",\n  \"contrôle\": \"contrôl\",\n  \"contrôler\": \"contrôl\",\n  \"contrôles\": \"contrôl\",\n  \"contumace\": \"contumac\",\n  \"contusions\": \"contus\",\n  \"convaincre\": \"convaincr\",\n  \"convaincu\": \"convaincu\",\n  \"convaincue\": \"convaincu\",\n  \"convenable\": \"conven\",\n  \"convenablement\": \"conven\",\n  \"convenables\": \"conven\",\n  \"convenaient\": \"conven\",\n  \"convenait\": \"conven\",\n  \"convenance\": \"conven\",\n  \"convenances\": \"conven\",\n  \"convenez\": \"conven\",\n  \"convenir\": \"conven\",\n  \"convenons\": \"convenon\",\n  \"convention\": \"convent\",\n  \"convenu\": \"convenu\",\n  \"convenue\": \"convenu\",\n  \"convenus\": \"convenus\",\n  \"converger\": \"converg\",\n  \"conversation\": \"convers\",\n  \"conversations\": \"convers\",\n  \"conversion\": \"convers\",\n  \"conversions\": \"convers\",\n  \"convertie\": \"convert\",\n  \"convertir\": \"convert\",\n  \"convertis\": \"convert\",\n  \"conviction\": \"convict\",\n  \"convictions\": \"convict\",\n  \"conviendra\": \"conviendr\",\n  \"conviendrait\": \"conviendr\",\n  \"conviendrez\": \"conviendr\",\n  \"conviendrons\": \"conviendron\",\n  \"convienne\": \"convien\",\n  \"conviennent\": \"conviennent\",\n  \"conviens\": \"convien\",\n  \"convient\": \"convient\",\n  \"convier\": \"convi\",\n  \"convint\": \"convint\",\n  \"convînt\": \"convînt\",\n  \"convives\": \"conviv\",\n  \"convocation\": \"convoc\",\n  \"convoi\": \"convoi\",\n  \"convois\": \"convois\",\n  \"convoitise\": \"convoitis\",\n  \"convulsif\": \"convuls\",\n  \"convulsifs\": \"convuls\",\n  \"convulsion\": \"convuls\",\n  \"convulsionnait\": \"convulsion\",\n  \"convulsive\": \"convuls\",\n  \"convulsivement\": \"convuls\",\n  \"coolies\": \"cool\",\n  \"copeaux\": \"copeau\",\n  \"copiait\": \"copi\",\n  \"copiant\": \"copi\",\n  \"copie\": \"cop\",\n  \"copié\": \"copi\",\n  \"copiée\": \"copi\",\n  \"copient\": \"copient\",\n  \"copier\": \"copi\",\n  \"copies\": \"cop\",\n  \"copieusement\": \"copieux\",\n  \"copiez\": \"cop\",\n  \"copiste\": \"copist\",\n  \"coq\": \"coq\",\n  \"coque\": \"coqu\",\n  \"coquets\": \"coquet\",\n  \"coquette\": \"coquet\",\n  \"coquetterie\": \"coquetter\",\n  \"coquetteries\": \"coquetter\",\n  \"coquille\": \"coquill\",\n  \"coquin\": \"coquin\",\n  \"coquine\": \"coquin\",\n  \"coquinerie\": \"coquiner\",\n  \"coquineries\": \"coquiner\",\n  \"coquins\": \"coquin\",\n  \"coran\": \"coran\",\n  \"corbeau\": \"corbeau\",\n  \"corbeaux\": \"corbeau\",\n  \"corbeille\": \"corbeil\",\n  \"corday\": \"corday\",\n  \"corde\": \"cord\",\n  \"cordes\": \"cord\",\n  \"cordon\": \"cordon\",\n  \"cordons\": \"cordon\",\n  \"corea\": \"cor\",\n  \"cormorans\": \"cormoran\",\n  \"cornac\": \"cornac\",\n  \"corne\": \"corn\",\n  \"corneille\": \"corneil\",\n  \"corneilles\": \"corneil\",\n  \"cornelia\": \"corneli\",\n  \"cornelii\": \"cornelii\",\n  \"cornes\": \"corn\",\n  \"corniche\": \"cornich\",\n  \"cornichon\": \"cornichon\",\n  \"cornwallis\": \"cornwall\",\n  \"corporation\": \"corpor\",\n  \"corps\": \"corp\",\n  \"corpus\": \"corpus\",\n  \"corrals\": \"corral\",\n  \"correct\": \"correct\",\n  \"correcte\": \"correct\",\n  \"correctement\": \"correct\",\n  \"correctif\": \"correct\",\n  \"correction\": \"correct\",\n  \"correctionnelle\": \"correctionnel\",\n  \"corrège\": \"correg\",\n  \"correspondait\": \"correspond\",\n  \"correspondance\": \"correspond\",\n  \"correspondances\": \"correspond\",\n  \"correspondant\": \"correspond\",\n  \"correspondants\": \"correspond\",\n  \"correspondre\": \"correspondr\",\n  \"corridor\": \"corridor\",\n  \"corridors\": \"corridor\",\n  \"corrigeait\": \"corrig\",\n  \"corrigée\": \"corrig\",\n  \"corriger\": \"corrig\",\n  \"corrigerez\": \"corrig\",\n  \"corrodant\": \"corrod\",\n  \"corrompre\": \"corrompr\",\n  \"corrompu\": \"corrompu\",\n  \"corrosif\": \"corros\",\n  \"corruption\": \"corrupt\",\n  \"cors\": \"cor\",\n  \"corso\": \"corso\",\n  \"cortège\": \"corteg\",\n  \"cortellate\": \"cortellat\",\n  \"corvée\": \"corv\",\n  \"cosa\": \"cos\",\n  \"cosaques\": \"cosaqu\",\n  \"cosi\": \"cos\",\n  \"cosmopolite\": \"cosmopolit\",\n  \"costume\": \"costum\",\n  \"costumes\": \"costum\",\n  \"cotait\": \"cot\",\n  \"cote\": \"cot\",\n  \"côte\": \"côt\",\n  \"côté\": \"côt\",\n  \"coteaux\": \"coteau\",\n  \"cotée\": \"cot\",\n  \"coterie\": \"coter\",\n  \"coteries\": \"coter\",\n  \"côtes\": \"côt\",\n  \"côtés\": \"côt\",\n  \"coton\": \"coton\",\n  \"cotonnades\": \"cotonnad\",\n  \"cotons\": \"coton\",\n  \"côtoyant\": \"côtoi\",\n  \"côtoyé\": \"côtoi\",\n  \"cotre\": \"cotr\",\n  \"cotte\": \"cott\",\n  \"cou\": \"cou\",\n  \"coucha\": \"couch\",\n  \"couchait\": \"couch\",\n  \"couchant\": \"couch\",\n  \"couche\": \"couch\",\n  \"couché\": \"couch\",\n  \"couchée\": \"couch\",\n  \"couchent\": \"couchent\",\n  \"coucher\": \"couch\",\n  \"coucherai\": \"couch\",\n  \"coucherait\": \"couch\",\n  \"couchèrent\": \"couch\",\n  \"couchés\": \"couch\",\n  \"couchettes\": \"couchet\",\n  \"couchez\": \"couch\",\n  \"coude\": \"coud\",\n  \"coudes\": \"coud\",\n  \"coudre\": \"coudr\",\n  \"coudrier\": \"coudri\",\n  \"couds\": \"coud\",\n  \"coulaient\": \"coul\",\n  \"coulait\": \"coul\",\n  \"coulant\": \"coul\",\n  \"coule\": \"coul\",\n  \"coulé\": \"coul\",\n  \"couler\": \"coul\",\n  \"coulèrent\": \"coul\",\n  \"couleur\": \"couleur\",\n  \"couleurs\": \"couleur\",\n  \"coulisse\": \"coul\",\n  \"coulisses\": \"coul\",\n  \"couloirs\": \"couloir\",\n  \"coulon\": \"coulon\",\n  \"council\": \"council\",\n  \"coup\": \"coup\",\n  \"coupa\": \"coup\",\n  \"coupable\": \"coupabl\",\n  \"coupables\": \"coupabl\",\n  \"coupaient\": \"coup\",\n  \"coupait\": \"coup\",\n  \"coupant\": \"coup\",\n  \"coupât\": \"coup\",\n  \"coupe\": \"coup\",\n  \"coupé\": \"coup\",\n  \"coupée\": \"coup\",\n  \"coupées\": \"coup\",\n  \"coupent\": \"coupent\",\n  \"couper\": \"coup\",\n  \"couperosée\": \"couperos\",\n  \"coupes\": \"coup\",\n  \"coupés\": \"coup\",\n  \"coupez\": \"coup\",\n  \"couple\": \"coupl\",\n  \"couples\": \"coupl\",\n  \"couplet\": \"couplet\",\n  \"couplets\": \"couplet\",\n  \"coups\": \"coup\",\n  \"coupure\": \"coupur\",\n  \"cour\": \"cour\",\n  \"courage\": \"courag\",\n  \"courages\": \"courag\",\n  \"courageuse\": \"courag\",\n  \"courageusement\": \"courag\",\n  \"courageuses\": \"courag\",\n  \"courageux\": \"courag\",\n  \"couraient\": \"cour\",\n  \"courait\": \"cour\",\n  \"courant\": \"cour\",\n  \"courants\": \"cour\",\n  \"courbait\": \"courb\",\n  \"courbe\": \"courb\",\n  \"courbé\": \"courb\",\n  \"courber\": \"courb\",\n  \"courbes\": \"courb\",\n  \"courbés\": \"courb\",\n  \"courbure\": \"courbur\",\n  \"coure\": \"cour\",\n  \"courent\": \"courent\",\n  \"coureur\": \"coureur\",\n  \"coureurs\": \"coureur\",\n  \"courez\": \"cour\",\n  \"courier\": \"couri\",\n  \"courir\": \"cour\",\n  \"couronnaient\": \"couron\",\n  \"couronne\": \"couron\",\n  \"couronné\": \"couron\",\n  \"couronnées\": \"couron\",\n  \"couronnement\": \"couron\",\n  \"couronnent\": \"couronnent\",\n  \"couronner\": \"couron\",\n  \"couronnes\": \"couron\",\n  \"courons\": \"couron\",\n  \"courrais\": \"courr\",\n  \"courrez\": \"courr\",\n  \"courrier\": \"courri\",\n  \"courriers\": \"courri\",\n  \"courroucés\": \"courrouc\",\n  \"courroux\": \"courroux\",\n  \"cours\": \"cour\",\n  \"course\": \"cours\",\n  \"courses\": \"cours\",\n  \"court\": \"court\",\n  \"courte\": \"court\",\n  \"courtes\": \"court\",\n  \"courtier\": \"courti\",\n  \"courtiers\": \"courti\",\n  \"courtine\": \"courtin\",\n  \"courtisan\": \"courtisan\",\n  \"courtisanerie\": \"courtisaner\",\n  \"courtisanesque\": \"courtisanesqu\",\n  \"courtisans\": \"courtisan\",\n  \"courts\": \"court\",\n  \"couru\": \"couru\",\n  \"coururent\": \"coururent\",\n  \"courus\": \"courus\",\n  \"courut\": \"courut\",\n  \"courût\": \"courût\",\n  \"cousait\": \"cous\",\n  \"cousin\": \"cousin\",\n  \"cousine\": \"cousin\",\n  \"cousines\": \"cousin\",\n  \"coussin\": \"coussin\",\n  \"coussins\": \"coussin\",\n  \"cousu\": \"cousu\",\n  \"coûta\": \"coût\",\n  \"coûtaient\": \"coût\",\n  \"coûtait\": \"coût\",\n  \"coûtant\": \"coût\",\n  \"coûte\": \"coût\",\n  \"coûté\": \"coût\",\n  \"couteau\": \"couteau\",\n  \"couteaux\": \"couteau\",\n  \"coûtent\": \"coûtent\",\n  \"couter\": \"cout\",\n  \"coûter\": \"coût\",\n  \"coûtera\": \"coût\",\n  \"coûterait\": \"coût\",\n  \"coûtèrent\": \"coût\",\n  \"coûteront\": \"coût\",\n  \"coutil\": \"coutil\",\n  \"coutume\": \"coutum\",\n  \"coutumes\": \"coutum\",\n  \"couvent\": \"couvent\",\n  \"couvents\": \"couvent\",\n  \"couvert\": \"couvert\",\n  \"couverte\": \"couvert\",\n  \"couvertes\": \"couvert\",\n  \"couverts\": \"couvert\",\n  \"couverture\": \"couvertur\",\n  \"couvertures\": \"couvertur\",\n  \"couvraient\": \"couvr\",\n  \"couvrait\": \"couvr\",\n  \"couvrant\": \"couvr\",\n  \"couvre\": \"couvr\",\n  \"couvrent\": \"couvrent\",\n  \"couvrir\": \"couvr\",\n  \"couvrira\": \"couvr\",\n  \"couvrit\": \"couvr\",\n  \"craché\": \"crach\",\n  \"cracher\": \"crach\",\n  \"craignais\": \"craign\",\n  \"craignait\": \"craign\",\n  \"craignant\": \"craign\",\n  \"craignez\": \"craign\",\n  \"craignions\": \"craignion\",\n  \"craignirent\": \"craign\",\n  \"craignit\": \"craign\",\n  \"craignons\": \"craignon\",\n  \"craindra\": \"craindr\",\n  \"craindrai\": \"craindr\",\n  \"craindre\": \"craindr\",\n  \"crains\": \"crain\",\n  \"craint\": \"craint\",\n  \"crainte\": \"craint\",\n  \"craintes\": \"craint\",\n  \"craintifs\": \"craintif\",\n  \"cramoisi\": \"cramois\",\n  \"cramoisie\": \"cramois\",\n  \"cramoisis\": \"cramois\",\n  \"crampe\": \"cramp\",\n  \"cramponne\": \"crampon\",\n  \"crâne\": \"crân\",\n  \"craquement\": \"craqu\",\n  \"crasseux\": \"crasseux\",\n  \"cravache\": \"cravach\",\n  \"cravate\": \"cravat\",\n  \"crayon\": \"crayon\",\n  \"créance\": \"créanc\",\n  \"créature\": \"créatur\",\n  \"créatures\": \"créatur\",\n  \"credete\": \"credet\",\n  \"crédit\": \"cred\",\n  \"créditeur\": \"créditeur\",\n  \"crédulité\": \"crédul\",\n  \"créé\": \"cré\",\n  \"creek\": \"creek\",\n  \"creeks\": \"creek\",\n  \"crème\": \"crem\",\n  \"créole\": \"créol\",\n  \"crépuscule\": \"crépuscul\",\n  \"crescentini\": \"crescentin\",\n  \"crescentius\": \"crescentius\",\n  \"crescenzi\": \"crescenz\",\n  \"crête\": \"crêt\",\n  \"creusaient\": \"creus\",\n  \"creusait\": \"creus\",\n  \"creusé\": \"creus\",\n  \"creuses\": \"creus\",\n  \"creux\": \"creux\",\n  \"crevé\": \"crev\",\n  \"crèvera\": \"crev\",\n  \"cri\": \"cri\",\n  \"cria\": \"cri\",\n  \"criaient\": \"cri\",\n  \"criait\": \"cri\",\n  \"criant\": \"cri\",\n  \"criante\": \"cri\",\n  \"criards\": \"criard\",\n  \"criblé\": \"cribl\",\n  \"crie\": \"cri\",\n  \"crié\": \"cri\",\n  \"crier\": \"cri\",\n  \"crièrent\": \"cri\",\n  \"criés\": \"cri\",\n  \"criez\": \"cri\",\n  \"crime\": \"crim\",\n  \"crimes\": \"crim\",\n  \"criminel\": \"criminel\",\n  \"criminelle\": \"criminel\",\n  \"criminelles\": \"criminel\",\n  \"criminels\": \"criminel\",\n  \"crin\": \"crin\",\n  \"crinière\": \"crini\",\n  \"crinières\": \"crini\",\n  \"crins\": \"crin\",\n  \"cris\": \"cris\",\n  \"crise\": \"cris\",\n  \"crispe\": \"crisp\",\n  \"cristal\": \"cristal\",\n  \"cristaux\": \"cristal\",\n  \"critique\": \"critiqu\",\n  \"critiqué\": \"critiqu\",\n  \"critiquent\": \"critiquent\",\n  \"critiques\": \"critiqu\",\n  \"crochet\": \"crochet\",\n  \"croie\": \"croi\",\n  \"croient\": \"croient\",\n  \"croira\": \"croir\",\n  \"croirai\": \"croir\",\n  \"croiraient\": \"croir\",\n  \"croirais\": \"croir\",\n  \"croirait\": \"croir\",\n  \"croire\": \"croir\",\n  \"croirez\": \"croir\",\n  \"croiriez\": \"croir\",\n  \"croirons\": \"croiron\",\n  \"croiront\": \"croiront\",\n  \"crois\": \"crois\",\n  \"croisa\": \"crois\",\n  \"croisade\": \"croisad\",\n  \"croisades\": \"croisad\",\n  \"croisaient\": \"crois\",\n  \"croisait\": \"crois\",\n  \"croisé\": \"crois\",\n  \"croisée\": \"crois\",\n  \"croisées\": \"crois\",\n  \"croisenois\": \"croisenois\",\n  \"croisés\": \"crois\",\n  \"croissaient\": \"croiss\",\n  \"croissait\": \"croiss\",\n  \"croissance\": \"croissanc\",\n  \"croissant\": \"croiss\",\n  \"croissante\": \"croiss\",\n  \"croit\": \"croit\",\n  \"croître\": \"croîtr\",\n  \"croix\": \"croix\",\n  \"cromarty\": \"cromarty\",\n  \"cross\": \"cross\",\n  \"crotte\": \"crott\",\n  \"crotté\": \"crott\",\n  \"crottées\": \"crott\",\n  \"crouler\": \"croul\",\n  \"croupe\": \"croup\",\n  \"croupir\": \"croup\",\n  \"croyaient\": \"croi\",\n  \"croyais\": \"croi\",\n  \"croyait\": \"croi\",\n  \"croyance\": \"croyanc\",\n  \"croyant\": \"croi\",\n  \"croyante\": \"croi\",\n  \"croyants\": \"croi\",\n  \"croyez\": \"croi\",\n  \"croyiez\": \"croi\",\n  \"croyons\": \"croyon\",\n  \"cru\": \"cru\",\n  \"cruauté\": \"cruaut\",\n  \"cruautés\": \"cruaut\",\n  \"cruciales\": \"crucial\",\n  \"crucifix\": \"crucifix\",\n  \"crue\": \"cru\",\n  \"cruel\": \"cruel\",\n  \"cruelle\": \"cruel\",\n  \"cruellement\": \"cruel\",\n  \"cruelles\": \"cruel\",\n  \"cruels\": \"cruel\",\n  \"crues\": \"cru\",\n  \"crûment\": \"crûment\",\n  \"crurent\": \"crurent\",\n  \"crus\": \"crus\",\n  \"crut\": \"crut\",\n  \"crût\": \"crût\",\n  \"cueilli\": \"cueil\",\n  \"cuir\": \"cuir\",\n  \"cuirasse\": \"cuir\",\n  \"cuirasses\": \"cuir\",\n  \"cuirassier\": \"cuirassi\",\n  \"cuirassiers\": \"cuirassi\",\n  \"cuisant\": \"cuis\",\n  \"cuisante\": \"cuis\",\n  \"cuisine\": \"cuisin\",\n  \"cuisines\": \"cuisin\",\n  \"cuisinier\": \"cuisini\",\n  \"cuisinière\": \"cuisini\",\n  \"cuisiniers\": \"cuisini\",\n  \"cuisse\": \"cuiss\",\n  \"cuisses\": \"cuiss\",\n  \"cuistre\": \"cuistr\",\n  \"cuistres\": \"cuistr\",\n  \"cuite\": \"cuit\",\n  \"cuivre\": \"cuivr\",\n  \"cuivres\": \"cuivr\",\n  \"culbute\": \"culbut\",\n  \"culotte\": \"culott\",\n  \"culottes\": \"culott\",\n  \"culpa\": \"culp\",\n  \"culpabilité\": \"culpabl\",\n  \"culte\": \"cult\",\n  \"cultivée\": \"cultiv\",\n  \"cultivées\": \"cultiv\",\n  \"cultivent\": \"cultivent\",\n  \"cultiver\": \"cultiv\",\n  \"cunard\": \"cunard\",\n  \"cunctando\": \"cunctando\",\n  \"cupidité\": \"cupid\",\n  \"cure\": \"cur\",\n  \"curé\": \"cur\",\n  \"cures\": \"cur\",\n  \"curés\": \"cur\",\n  \"curieuse\": \"curieux\",\n  \"curieusement\": \"curieux\",\n  \"curieuses\": \"curieux\",\n  \"curieux\": \"curieux\",\n  \"curiosité\": \"curios\",\n  \"custom\": \"custom\",\n  \"cuves\": \"cuv\",\n  \"cuvette\": \"cuvet\",\n  \"cygne\": \"cygn\",\n  \"cymbales\": \"cymbal\",\n  \"cynique\": \"cyniqu\",\n  \"cyr\": \"cyr\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"dague\": \"dagu\",\n  \"daigna\": \"daign\",\n  \"daignaient\": \"daign\",\n  \"daignait\": \"daign\",\n  \"daignant\": \"daign\",\n  \"daignât\": \"daign\",\n  \"daigne\": \"daign\",\n  \"daigné\": \"daign\",\n  \"daignent\": \"daignent\",\n  \"daigner\": \"daign\",\n  \"daignera\": \"daign\",\n  \"daignerait\": \"daign\",\n  \"daignèrent\": \"daign\",\n  \"daignerez\": \"daign\",\n  \"daignez\": \"daign\",\n  \"daily\": \"daily\",\n  \"daim\": \"daim\",\n  \"dais\": \"dais\",\n  \"dakota\": \"dakot\",\n  \"dalles\": \"dall\",\n  \"dalliance\": \"dallianc\",\n  \"dalmate\": \"dalmat\",\n  \"damas\": \"dam\",\n  \"damasquinés\": \"damasquin\",\n  \"dame\": \"dam\",\n  \"dames\": \"dam\",\n  \"damné\": \"damn\",\n  \"damnée\": \"damn\",\n  \"damnent\": \"damnent\",\n  \"damnés\": \"damn\",\n  \"dandin\": \"dandin\",\n  \"dandinant\": \"dandin\",\n  \"dandy\": \"dandy\",\n  \"dandys\": \"dandy\",\n  \"danger\": \"dang\",\n  \"dangereuse\": \"danger\",\n  \"dangereusement\": \"danger\",\n  \"dangereuses\": \"danger\",\n  \"dangereux\": \"danger\",\n  \"dangers\": \"danger\",\n  \"dans\": \"dan\",\n  \"dansa\": \"dans\",\n  \"dansaient\": \"dans\",\n  \"dansait\": \"dans\",\n  \"dansant\": \"dans\",\n  \"danse\": \"dans\",\n  \"dansé\": \"dans\",\n  \"dansent\": \"dansent\",\n  \"danser\": \"dans\",\n  \"dansèrent\": \"dans\",\n  \"danses\": \"dans\",\n  \"danseuses\": \"danseux\",\n  \"dante\": \"dant\",\n  \"danton\": \"danton\",\n  \"darkness\": \"darkness\",\n  \"data\": \"dat\",\n  \"datait\": \"dat\",\n  \"date\": \"dat\",\n  \"daté\": \"dat\",\n  \"datée\": \"dat\",\n  \"datées\": \"dat\",\n  \"dates\": \"dat\",\n  \"dattiers\": \"datti\",\n  \"davantage\": \"davantag\",\n  \"davenport\": \"davenport\",\n  \"davide\": \"david\",\n  \"day\": \"day\",\n  \"days\": \"day\",\n  \"de\": \"de\",\n  \"dé\": \"dé\",\n  \"débarqua\": \"débarqu\",\n  \"débarquaient\": \"débarqu\",\n  \"débarquait\": \"débarqu\",\n  \"débarquant\": \"débarqu\",\n  \"débarque\": \"débarqu\",\n  \"débarqué\": \"débarqu\",\n  \"débarquement\": \"débarqu\",\n  \"débarquer\": \"débarqu\",\n  \"débarquèrent\": \"débarqu\",\n  \"débarrassé\": \"débarrass\",\n  \"débarrassée\": \"débarrass\",\n  \"débarrasser\": \"débarrass\",\n  \"débarrassés\": \"débarrass\",\n  \"débarrassez\": \"débarrass\",\n  \"débat\": \"débat\",\n  \"débats\": \"débat\",\n  \"débattait\": \"débatt\",\n  \"débattant\": \"débatt\",\n  \"débattrais\": \"débattr\",\n  \"débattre\": \"débattr\",\n  \"débattue\": \"débattu\",\n  \"débauche\": \"débauch\",\n  \"debile\": \"debil\",\n  \"débit\": \"deb\",\n  \"débita\": \"débit\",\n  \"débitaient\": \"débit\",\n  \"débitant\": \"débit\",\n  \"débite\": \"débit\",\n  \"débitées\": \"débit\",\n  \"débiter\": \"débit\",\n  \"débiteur\": \"débiteur\",\n  \"débonnaireté\": \"débonnairet\",\n  \"débordait\": \"débord\",\n  \"débordé\": \"débord\",\n  \"déborder\": \"débord\",\n  \"débouchaient\": \"débouch\",\n  \"débouche\": \"débouch\",\n  \"déboucher\": \"débouch\",\n  \"déboursé\": \"débours\",\n  \"debout\": \"debout\",\n  \"débrider\": \"débrid\",\n  \"débris\": \"debr\",\n  \"débrouillée\": \"débrouill\",\n  \"débrouiller\": \"débrouill\",\n  \"début\": \"début\",\n  \"débuta\": \"début\",\n  \"débute\": \"début\",\n  \"débuté\": \"début\",\n  \"débuter\": \"début\",\n  \"décachetait\": \"décachet\",\n  \"décachetée\": \"décachet\",\n  \"décachetées\": \"décachet\",\n  \"décadence\": \"décadent\",\n  \"décampa\": \"décamp\",\n  \"décampe\": \"décamp\",\n  \"décampé\": \"décamp\",\n  \"décamper\": \"décamp\",\n  \"décampons\": \"décampon\",\n  \"décapité\": \"décap\",\n  \"décelât\": \"décel\",\n  \"décembre\": \"décembr\",\n  \"décemment\": \"décent\",\n  \"décence\": \"décenc\",\n  \"décent\": \"décent\",\n  \"décente\": \"décent\",\n  \"décents\": \"décent\",\n  \"déceptions\": \"décept\",\n  \"décès\": \"déces\",\n  \"déchaînait\": \"déchaîn\",\n  \"déchaînât\": \"déchaîn\",\n  \"déchaînement\": \"déchaîn\",\n  \"déchaîner\": \"déchaîn\",\n  \"décharge\": \"décharg\",\n  \"déchargement\": \"décharg\",\n  \"décharger\": \"décharg\",\n  \"décharges\": \"décharg\",\n  \"déchira\": \"dech\",\n  \"déchiraient\": \"dech\",\n  \"déchirait\": \"dech\",\n  \"déchirant\": \"déchir\",\n  \"déchire\": \"déchir\",\n  \"déchiré\": \"déchir\",\n  \"déchirée\": \"déchir\",\n  \"déchirées\": \"déchir\",\n  \"déchirements\": \"déchir\",\n  \"déchirer\": \"déchir\",\n  \"déchirés\": \"déchir\",\n  \"déchirures\": \"déchirur\",\n  \"déchoir\": \"déchoir\",\n  \"déchu\": \"déchu\",\n  \"décida\": \"décid\",\n  \"décidaient\": \"décid\",\n  \"décidait\": \"décid\",\n  \"décidant\": \"décid\",\n  \"décide\": \"décid\",\n  \"décidé\": \"décid\",\n  \"décidée\": \"décid\",\n  \"décidées\": \"décid\",\n  \"décidément\": \"décid\",\n  \"décident\": \"décident\",\n  \"décider\": \"décid\",\n  \"décidera\": \"décid\",\n  \"déciderait\": \"décid\",\n  \"décidèrent\": \"décid\",\n  \"déciderez\": \"décid\",\n  \"décimus\": \"décimus\",\n  \"décisif\": \"décis\",\n  \"décision\": \"décis\",\n  \"décisions\": \"décis\",\n  \"décisive\": \"décis\",\n  \"décius\": \"décius\",\n  \"déclamer\": \"déclam\",\n  \"déclara\": \"déclar\",\n  \"déclarait\": \"déclar\",\n  \"déclarant\": \"déclar\",\n  \"déclaration\": \"déclar\",\n  \"déclarations\": \"déclar\",\n  \"déclare\": \"déclar\",\n  \"déclaré\": \"déclar\",\n  \"déclarée\": \"déclar\",\n  \"déclarer\": \"déclar\",\n  \"déclarerait\": \"déclar\",\n  \"déclarèrent\": \"déclar\",\n  \"déclarés\": \"déclar\",\n  \"déclarez\": \"déclar\",\n  \"déclassés\": \"déclass\",\n  \"décoloré\": \"décolor\",\n  \"décolorée\": \"décolor\",\n  \"décolorées\": \"décolor\",\n  \"décomposition\": \"décomposit\",\n  \"déconcerta\": \"déconcert\",\n  \"déconcertait\": \"déconcert\",\n  \"déconcerté\": \"déconcert\",\n  \"déconcertée\": \"déconcert\",\n  \"déconcerter\": \"déconcert\",\n  \"déconcertés\": \"déconcert\",\n  \"déconfit\": \"déconf\",\n  \"décontenancé\": \"décontenanc\",\n  \"déconvenues\": \"déconvenu\",\n  \"décorateur\": \"décor\",\n  \"décoration\": \"décor\",\n  \"décore\": \"décor\",\n  \"décoré\": \"décor\",\n  \"décorée\": \"décor\",\n  \"décorum\": \"décorum\",\n  \"découchait\": \"découch\",\n  \"découpait\": \"découp\",\n  \"découpant\": \"découp\",\n  \"découpés\": \"découp\",\n  \"découragé\": \"décourag\",\n  \"découragement\": \"décourag\",\n  \"découragements\": \"décourag\",\n  \"décourager\": \"décourag\",\n  \"décousus\": \"décousus\",\n  \"découvert\": \"découvert\",\n  \"découverte\": \"découvert\",\n  \"découvertes\": \"découvert\",\n  \"découverts\": \"découvert\",\n  \"découvrait\": \"découvr\",\n  \"découvrant\": \"découvr\",\n  \"découvre\": \"découvr\",\n  \"découvrir\": \"découvr\",\n  \"découvrira\": \"découvr\",\n  \"découvrirent\": \"découvr\",\n  \"découvrit\": \"découvr\",\n  \"décrépitude\": \"décrépitud\",\n  \"décret\": \"décret\",\n  \"décrets\": \"décret\",\n  \"décrire\": \"décrir\",\n  \"décrit\": \"decr\",\n  \"décrivaient\": \"décriv\",\n  \"décrivait\": \"décriv\",\n  \"décrivant\": \"décriv\",\n  \"décrocha\": \"décroch\",\n  \"dédaignant\": \"dédaign\",\n  \"dédaignée\": \"dédaign\",\n  \"dédaigneuse\": \"dédaign\",\n  \"dédaigneux\": \"dédaign\",\n  \"dédain\": \"dédain\",\n  \"dédains\": \"dédain\",\n  \"dedans\": \"dedan\",\n  \"dédommageait\": \"dédommag\",\n  \"dédommagement\": \"dédommag\",\n  \"dédommagent\": \"dédommagent\",\n  \"dédommagerez\": \"dédommag\",\n  \"déduire\": \"déduir\",\n  \"déduisit\": \"déduis\",\n  \"deem\": \"deem\",\n  \"deeper\": \"deep\",\n  \"déesse\": \"déess\",\n  \"défaillante\": \"défaill\",\n  \"défaillir\": \"défaill\",\n  \"défaire\": \"défair\",\n  \"défais\": \"def\",\n  \"défaisait\": \"défais\",\n  \"défait\": \"def\",\n  \"défaite\": \"défait\",\n  \"défaites\": \"défait\",\n  \"défasse\": \"def\",\n  \"défaut\": \"défaut\",\n  \"défauts\": \"défaut\",\n  \"défaveur\": \"défaveur\",\n  \"défavorable\": \"défavor\",\n  \"défection\": \"défect\",\n  \"défend\": \"défend\",\n  \"défendaient\": \"défend\",\n  \"défendait\": \"défend\",\n  \"défendant\": \"défend\",\n  \"défende\": \"défend\",\n  \"défendent\": \"défendent\",\n  \"défendez\": \"défend\",\n  \"défendit\": \"défend\",\n  \"défendons\": \"défendon\",\n  \"défendre\": \"défendr\",\n  \"défends\": \"défend\",\n  \"défendu\": \"défendu\",\n  \"défendue\": \"défendu\",\n  \"défendues\": \"défendu\",\n  \"défense\": \"défens\",\n  \"défenses\": \"défens\",\n  \"défenseurs\": \"défenseur\",\n  \"défensive\": \"défens\",\n  \"déferai\": \"def\",\n  \"déférence\": \"déférent\",\n  \"défiait\": \"défi\",\n  \"défiance\": \"défianc\",\n  \"défiant\": \"défi\",\n  \"défie\": \"def\",\n  \"défigurait\": \"défigur\",\n  \"défiguré\": \"défigur\",\n  \"défila\": \"défil\",\n  \"défilé\": \"défil\",\n  \"défiler\": \"défil\",\n  \"défilés\": \"défil\",\n  \"définissable\": \"définiss\",\n  \"définitive\": \"définit\",\n  \"définitivement\": \"définit\",\n  \"défit\": \"def\",\n  \"défoncèrent\": \"défonc\",\n  \"défroque\": \"défroqu\",\n  \"défunt\": \"défunt\",\n  \"dégagé\": \"dégag\",\n  \"dégagea\": \"dégag\",\n  \"dégagée\": \"dégag\",\n  \"dégagement\": \"dégag\",\n  \"dégager\": \"dégag\",\n  \"dégât\": \"deg\",\n  \"dégénéré\": \"dégéner\",\n  \"dégoût\": \"dégoût\",\n  \"dégoûtant\": \"dégoût\",\n  \"dégoûtante\": \"dégoût\",\n  \"dégoûté\": \"dégoût\",\n  \"dégoûtée\": \"dégoût\",\n  \"dégradée\": \"dégrad\",\n  \"dégradent\": \"dégradent\",\n  \"dégrader\": \"dégrad\",\n  \"degré\": \"degr\",\n  \"degrés\": \"degr\",\n  \"dégrisa\": \"dégris\",\n  \"déguenillée\": \"déguenill\",\n  \"déguerpir\": \"déguerp\",\n  \"déguisa\": \"déguis\",\n  \"déguisait\": \"déguis\",\n  \"déguise\": \"déguis\",\n  \"déguisé\": \"déguis\",\n  \"déguisée\": \"déguis\",\n  \"déguisement\": \"déguis\",\n  \"déguiser\": \"déguis\",\n  \"déguisèrent\": \"déguis\",\n  \"déguisés\": \"déguis\",\n  \"dehors\": \"dehor\",\n  \"déjà\": \"déjà\",\n  \"déjetées\": \"déjet\",\n  \"déjeuna\": \"déjeun\",\n  \"déjeunait\": \"déjeun\",\n  \"déjeunant\": \"déjeun\",\n  \"déjeuné\": \"déjeun\",\n  \"déjeuner\": \"déjeun\",\n  \"déjeunèrent\": \"déjeun\",\n  \"déjeunons\": \"déjeunon\",\n  \"déjouer\": \"déjou\",\n  \"déjoués\": \"déjou\",\n  \"del\": \"del\",\n  \"delà\": \"delà\",\n  \"délabré\": \"délabr\",\n  \"délabrée\": \"délabr\",\n  \"délabrement\": \"délabr\",\n  \"délai\": \"del\",\n  \"délais\": \"del\",\n  \"délaissé\": \"délaiss\",\n  \"délasser\": \"délass\",\n  \"délations\": \"délat\",\n  \"delavigne\": \"delavign\",\n  \"délayé\": \"délai\",\n  \"délégation\": \"déleg\",\n  \"délibéra\": \"déliber\",\n  \"délibération\": \"déliber\",\n  \"délibérer\": \"déliber\",\n  \"délibérons\": \"délibéron\",\n  \"délicat\": \"délicat\",\n  \"délicate\": \"délicat\",\n  \"délicates\": \"délicat\",\n  \"délicatesse\": \"délicatess\",\n  \"délicats\": \"délicat\",\n  \"délices\": \"délic\",\n  \"délicieuse\": \"délici\",\n  \"délicieusement\": \"délici\",\n  \"délicieuses\": \"délici\",\n  \"délicieux\": \"délici\",\n  \"délier\": \"déli\",\n  \"delille\": \"delill\",\n  \"délire\": \"délir\",\n  \"délit\": \"del\",\n  \"délivra\": \"délivr\",\n  \"délivrance\": \"délivr\",\n  \"délivre\": \"délivr\",\n  \"délivré\": \"délivr\",\n  \"délivrée\": \"délivr\",\n  \"délivrer\": \"délivr\",\n  \"délivrera\": \"délivr\",\n  \"dell\": \"del\",\n  \"della\": \"del\",\n  \"demain\": \"demain\",\n  \"demanda\": \"demand\",\n  \"demandai\": \"demand\",\n  \"demandaient\": \"demand\",\n  \"demandais\": \"demand\",\n  \"demandait\": \"demand\",\n  \"demandant\": \"demand\",\n  \"demande\": \"demand\",\n  \"demandé\": \"demand\",\n  \"demandée\": \"demand\",\n  \"demandées\": \"demand\",\n  \"demander\": \"demand\",\n  \"demandera\": \"demand\",\n  \"demanderai\": \"demand\",\n  \"demanderaient\": \"demand\",\n  \"demanderait\": \"demand\",\n  \"demandèrent\": \"demand\",\n  \"demanderont\": \"demand\",\n  \"demandes\": \"demand\",\n  \"demandés\": \"demand\",\n  \"demandez\": \"demand\",\n  \"demandiez\": \"demand\",\n  \"demandons\": \"demandon\",\n  \"démantelé\": \"démantel\",\n  \"démarche\": \"démarch\",\n  \"démarches\": \"démarch\",\n  \"démarquer\": \"démarqu\",\n  \"démasquer\": \"démasqu\",\n  \"démêloir\": \"démêloir\",\n  \"déménager\": \"déménag\",\n  \"démenaient\": \"démen\",\n  \"démenait\": \"démen\",\n  \"démenti\": \"dément\",\n  \"démentir\": \"dément\",\n  \"démentis\": \"dément\",\n  \"démesurée\": \"démesur\",\n  \"demesurement\": \"demesur\",\n  \"démesurément\": \"démesur\",\n  \"demeura\": \"demeur\",\n  \"demeurait\": \"demeur\",\n  \"demeure\": \"demeur\",\n  \"demeuré\": \"demeur\",\n  \"demeurer\": \"demeur\",\n  \"demeurerait\": \"demeur\",\n  \"demeurèrent\": \"demeur\",\n  \"demeurés\": \"demeur\",\n  \"demi\": \"dem\",\n  \"demie\": \"dem\",\n  \"démission\": \"démiss\",\n  \"démit\": \"dem\",\n  \"demoiselle\": \"demoisel\",\n  \"demoiselles\": \"demoisel\",\n  \"démolir\": \"démol\",\n  \"démolissent\": \"démol\",\n  \"démolition\": \"démolit\",\n  \"démon\": \"démon\",\n  \"démonstration\": \"démonstr\",\n  \"démonté\": \"démont\",\n  \"démontée\": \"démont\",\n  \"démonter\": \"démont\",\n  \"démontés\": \"démont\",\n  \"démontra\": \"démontr\",\n  \"démontrait\": \"démontr\",\n  \"démontré\": \"démontr\",\n  \"dénaturée\": \"dénatur\",\n  \"deniers\": \"deni\",\n  \"dénigrement\": \"dénigr\",\n  \"dénomination\": \"dénomin\",\n  \"dénonçait\": \"dénonc\",\n  \"dénonce\": \"dénonc\",\n  \"dénoncé\": \"dénonc\",\n  \"dénoncer\": \"dénonc\",\n  \"dénoncera\": \"dénonc\",\n  \"dénoncez\": \"dénonc\",\n  \"dénonciateur\": \"dénonci\",\n  \"dénonciation\": \"dénonci\",\n  \"dénonciations\": \"dénonci\",\n  \"dénotaient\": \"dénot\",\n  \"dénotait\": \"dénot\",\n  \"dénoter\": \"dénot\",\n  \"dénouement\": \"dénou\",\n  \"dénoûment\": \"dénoû\",\n  \"densité\": \"densit\",\n  \"dent\": \"dent\",\n  \"dentelle\": \"dentel\",\n  \"dentelles\": \"dentel\",\n  \"dents\": \"dent\",\n  \"dénué\": \"dénu\",\n  \"dénuées\": \"dénu\",\n  \"denver\": \"denv\",\n  \"deo\": \"deo\",\n  \"déparait\": \"dépar\",\n  \"déparant\": \"dépar\",\n  \"déparée\": \"dépar\",\n  \"dépareillé\": \"dépareil\",\n  \"départ\": \"départ\",\n  \"département\": \"départ\",\n  \"dépassaient\": \"dépass\",\n  \"dépassait\": \"dépass\",\n  \"dépasse\": \"dep\",\n  \"dépassé\": \"dépass\",\n  \"dépassées\": \"dépass\",\n  \"dépasser\": \"dépass\",\n  \"dépassés\": \"dépass\",\n  \"dépêcha\": \"dépêch\",\n  \"dépêche\": \"dépêch\",\n  \"dépêché\": \"dépêch\",\n  \"dépêches\": \"dépêch\",\n  \"dépêchez\": \"dépêch\",\n  \"dépêchons\": \"dépêchon\",\n  \"dépeint\": \"dépeint\",\n  \"dépeintes\": \"dépeint\",\n  \"dépenaillé\": \"dépenaill\",\n  \"dépend\": \"dépend\",\n  \"dépendait\": \"dépend\",\n  \"dépendance\": \"dépend\",\n  \"dépendant\": \"dépend\",\n  \"dépendre\": \"dépendr\",\n  \"dépendu\": \"dépendu\",\n  \"dépens\": \"dépen\",\n  \"dépensait\": \"dépens\",\n  \"dépense\": \"dépens\",\n  \"dépensé\": \"dépens\",\n  \"dépensées\": \"dépens\",\n  \"dépenser\": \"dépens\",\n  \"dépenses\": \"dépens\",\n  \"dépérir\": \"déper\",\n  \"dépeuplèrent\": \"dépeupl\",\n  \"dépisté\": \"dépist\",\n  \"dépistées\": \"dépist\",\n  \"dépister\": \"dépist\",\n  \"dépit\": \"dep\",\n  \"dépitée\": \"dépit\",\n  \"déplaçait\": \"déplac\",\n  \"déplace\": \"déplac\",\n  \"déplacé\": \"déplac\",\n  \"déplacées\": \"déplac\",\n  \"déplacement\": \"déplac\",\n  \"déplairais\": \"déplair\",\n  \"déplaire\": \"déplair\",\n  \"déplairez\": \"déplair\",\n  \"déplaisait\": \"déplais\",\n  \"déplaise\": \"déplais\",\n  \"déplaisent\": \"déplaisent\",\n  \"déplaisir\": \"déplais\",\n  \"déplaît\": \"déplaît\",\n  \"dépliage\": \"dépliag\",\n  \"déploie\": \"déploi\",\n  \"déploierais\": \"déploi\",\n  \"déplorable\": \"déplor\",\n  \"déplorables\": \"déplor\",\n  \"déplorait\": \"déplor\",\n  \"déploré\": \"déplor\",\n  \"déploya\": \"déploi\",\n  \"déployaient\": \"déploi\",\n  \"déployé\": \"déploi\",\n  \"déployée\": \"déploi\",\n  \"déployer\": \"déploi\",\n  \"déplu\": \"déplu\",\n  \"déplut\": \"déplut\",\n  \"déporta\": \"déport\",\n  \"déportés\": \"déport\",\n  \"déposa\": \"dépos\",\n  \"déposait\": \"dépos\",\n  \"déposant\": \"dépos\",\n  \"déposât\": \"dépos\",\n  \"dépose\": \"dépos\",\n  \"déposé\": \"dépos\",\n  \"déposée\": \"dépos\",\n  \"déposées\": \"dépos\",\n  \"déposer\": \"dépos\",\n  \"déposèrent\": \"dépos\",\n  \"déposés\": \"dépos\",\n  \"dépositaire\": \"dépositair\",\n  \"déposition\": \"déposit\",\n  \"dépositions\": \"déposit\",\n  \"dépossédé\": \"dépossed\",\n  \"dépôt\": \"dépôt\",\n  \"dépôts\": \"dépôt\",\n  \"dépouillait\": \"dépouill\",\n  \"dépouille\": \"dépouill\",\n  \"dépouillé\": \"dépouill\",\n  \"dépouiller\": \"dépouill\",\n  \"dépourvu\": \"dépourvu\",\n  \"dépression\": \"dépress\",\n  \"dépressions\": \"dépress\",\n  \"déprimée\": \"déprim\",\n  \"depuis\": \"depuis\",\n  \"députation\": \"déput\",\n  \"député\": \"déput\",\n  \"députés\": \"déput\",\n  \"déraillement\": \"déraill\",\n  \"déraillements\": \"déraill\",\n  \"déraison\": \"déraison\",\n  \"déraisonnable\": \"déraison\",\n  \"déraisonnables\": \"déraison\",\n  \"déraisonner\": \"déraison\",\n  \"dérangé\": \"dérang\",\n  \"dérangeait\": \"dérang\",\n  \"dérangements\": \"dérang\",\n  \"déranger\": \"dérang\",\n  \"dérangés\": \"dérang\",\n  \"derechef\": \"derechef\",\n  \"déridait\": \"dérid\",\n  \"dérision\": \"déris\",\n  \"dernier\": \"derni\",\n  \"dernière\": \"derni\",\n  \"dernieres\": \"dernier\",\n  \"dernières\": \"derni\",\n  \"derniers\": \"derni\",\n  \"dérobaient\": \"dérob\",\n  \"dérobé\": \"dérob\",\n  \"dérobée\": \"dérob\",\n  \"dérober\": \"dérob\",\n  \"déroberait\": \"dérob\",\n  \"déroger\": \"dérog\",\n  \"déroula\": \"déroul\",\n  \"déroulant\": \"déroul\",\n  \"déroulèrent\": \"déroul\",\n  \"déroute\": \"dérout\",\n  \"derrière\": \"derri\",\n  \"derville\": \"dervill\",\n  \"des\": \"de\",\n  \"dès\": \"des\",\n  \"désabusé\": \"désabus\",\n  \"désagréable\": \"désagré\",\n  \"désagréablement\": \"désagré\",\n  \"désagréables\": \"désagré\",\n  \"désagrément\": \"désagr\",\n  \"désagréments\": \"désagr\",\n  \"desaix\": \"desaix\",\n  \"désaltéré\": \"désalter\",\n  \"désappointé\": \"désappoint\",\n  \"désappointement\": \"désappoint\",\n  \"désapprouver\": \"désapprouv\",\n  \"désarmé\": \"désarm\",\n  \"désarmer\": \"désarm\",\n  \"désastre\": \"désastr\",\n  \"désastres\": \"désastr\",\n  \"désavantage\": \"désavantag\",\n  \"désavantages\": \"désavantag\",\n  \"désavoue\": \"désavou\",\n  \"desceller\": \"descel\",\n  \"descend\": \"descend\",\n  \"descendaient\": \"descend\",\n  \"descendait\": \"descend\",\n  \"descendant\": \"descend\",\n  \"descendante\": \"descend\",\n  \"descendants\": \"descend\",\n  \"descende\": \"descend\",\n  \"descendent\": \"descendent\",\n  \"descendirent\": \"descend\",\n  \"descendit\": \"descend\",\n  \"descendrait\": \"descendr\",\n  \"descendre\": \"descendr\",\n  \"descendrez\": \"descendr\",\n  \"descends\": \"descend\",\n  \"descendu\": \"descendu\",\n  \"descendue\": \"descendu\",\n  \"descendus\": \"descendus\",\n  \"descente\": \"descent\",\n  \"descoulis\": \"descoul\",\n  \"description\": \"descript\",\n  \"descriptions\": \"descript\",\n  \"désennuyait\": \"désennui\",\n  \"désennuyer\": \"désennui\",\n  \"désert\": \"désert\",\n  \"désertais\": \"désert\",\n  \"déserte\": \"désert\",\n  \"déserté\": \"désert\",\n  \"déserter\": \"désert\",\n  \"désertes\": \"désert\",\n  \"déserteur\": \"déserteur\",\n  \"désertez\": \"désert\",\n  \"désertion\": \"désert\",\n  \"désespérais\": \"désesper\",\n  \"désespérait\": \"désesper\",\n  \"désespérant\": \"désesper\",\n  \"désespérante\": \"désesper\",\n  \"désespérants\": \"désesper\",\n  \"désespère\": \"désesper\",\n  \"désespéré\": \"désesper\",\n  \"désespérée\": \"désesper\",\n  \"désespérer\": \"désesper\",\n  \"désespoir\": \"désespoir\",\n  \"déshabillaient\": \"déshabill\",\n  \"déshabiller\": \"déshabill\",\n  \"déshonneur\": \"déshonneur\",\n  \"déshonorait\": \"déshonor\",\n  \"déshonorant\": \"déshonor\",\n  \"déshonorante\": \"déshonor\",\n  \"déshonore\": \"déshonor\",\n  \"déshonoré\": \"déshonor\",\n  \"déshonorée\": \"déshonor\",\n  \"déshonorent\": \"déshonorent\",\n  \"déshonorer\": \"déshonor\",\n  \"déshonorez\": \"déshonor\",\n  \"désignant\": \"désign\",\n  \"désigne\": \"désign\",\n  \"désigné\": \"désign\",\n  \"désigner\": \"désign\",\n  \"désignèrent\": \"désign\",\n  \"désignés\": \"désign\",\n  \"désignez\": \"désign\",\n  \"désintéresse\": \"désintéress\",\n  \"désintéressé\": \"désintéress\",\n  \"désintéressées\": \"désintéress\",\n  \"désintéressement\": \"désintéress\",\n  \"désintérêt\": \"désintérêt\",\n  \"désir\": \"des\",\n  \"désira\": \"des\",\n  \"désirable\": \"désir\",\n  \"désirait\": \"des\",\n  \"désire\": \"désir\",\n  \"désiré\": \"désir\",\n  \"désirée\": \"désir\",\n  \"désirées\": \"désir\",\n  \"désirent\": \"des\",\n  \"désirer\": \"désir\",\n  \"désirerais\": \"désir\",\n  \"désirez\": \"des\",\n  \"désirs\": \"désir\",\n  \"désobéi\": \"désobéi\",\n  \"désobéissante\": \"désobéiss\",\n  \"désoblige\": \"désoblig\",\n  \"désobligeante\": \"désoblig\",\n  \"désobligeants\": \"désoblig\",\n  \"désoeuvrement\": \"désoeuvr\",\n  \"désolait\": \"désol\",\n  \"désolant\": \"désol\",\n  \"désolation\": \"désol\",\n  \"désole\": \"désol\",\n  \"désolé\": \"désol\",\n  \"désolée\": \"désol\",\n  \"désordonnée\": \"désordon\",\n  \"désordonnés\": \"désordon\",\n  \"désordre\": \"désordr\",\n  \"désorienté\": \"désorient\",\n  \"désormais\": \"désorm\",\n  \"despote\": \"despot\",\n  \"despotes\": \"despot\",\n  \"despotique\": \"despot\",\n  \"despotiquement\": \"despot\",\n  \"despotiques\": \"despot\",\n  \"despotisme\": \"despot\",\n  \"despotismes\": \"despot\",\n  \"desquelles\": \"desquel\",\n  \"desquels\": \"desquel\",\n  \"desséchant\": \"dessech\",\n  \"desséché\": \"dessech\",\n  \"desséchée\": \"dessech\",\n  \"dessein\": \"dessein\",\n  \"desseins\": \"dessein\",\n  \"dessert\": \"dessert\",\n  \"desservait\": \"desserv\",\n  \"desservant\": \"desserv\",\n  \"desservi\": \"desserv\",\n  \"dessiller\": \"dessill\",\n  \"dessillèrent\": \"dessill\",\n  \"dessin\": \"dessin\",\n  \"dessina\": \"dessin\",\n  \"dessinaient\": \"dessin\",\n  \"dessinait\": \"dessin\",\n  \"dessine\": \"dessin\",\n  \"dessiné\": \"dessin\",\n  \"dessinent\": \"dessinent\",\n  \"dessiner\": \"dessin\",\n  \"dessins\": \"dessin\",\n  \"dessous\": \"dessous\",\n  \"dessus\": \"dessus\",\n  \"destin\": \"destin\",\n  \"destinait\": \"destin\",\n  \"destination\": \"destin\",\n  \"destine\": \"destin\",\n  \"destiné\": \"destin\",\n  \"destinée\": \"destin\",\n  \"destinées\": \"destin\",\n  \"destinés\": \"destin\",\n  \"destins\": \"destin\",\n  \"destitua\": \"destitu\",\n  \"destitué\": \"destitu\",\n  \"destituer\": \"destitu\",\n  \"destituera\": \"destitu\",\n  \"destituerai\": \"destitu\",\n  \"destitution\": \"destitu\",\n  \"désunir\": \"désun\",\n  \"détacha\": \"détach\",\n  \"détachaient\": \"détach\",\n  \"détachait\": \"détach\",\n  \"détachant\": \"détach\",\n  \"détache\": \"détach\",\n  \"détaché\": \"détach\",\n  \"détachée\": \"détach\",\n  \"détachées\": \"détach\",\n  \"détachement\": \"détach\",\n  \"détacher\": \"détach\",\n  \"détachèrent\": \"détach\",\n  \"détail\": \"détail\",\n  \"détailla\": \"détaill\",\n  \"détaillant\": \"détaill\",\n  \"détaille\": \"détaill\",\n  \"détaillé\": \"détaill\",\n  \"détaillée\": \"détaill\",\n  \"détaillées\": \"détaill\",\n  \"détailler\": \"détaill\",\n  \"détails\": \"détail\",\n  \"détaler\": \"détal\",\n  \"détective\": \"détect\",\n  \"détectives\": \"détect\",\n  \"détendu\": \"détendu\",\n  \"détendue\": \"détendu\",\n  \"détendus\": \"détendus\",\n  \"détente\": \"détent\",\n  \"détention\": \"détent\",\n  \"détenus\": \"détenus\",\n  \"détermina\": \"détermin\",\n  \"déterminaient\": \"détermin\",\n  \"déterminait\": \"détermin\",\n  \"déterminât\": \"détermin\",\n  \"détermination\": \"détermin\",\n  \"déterminations\": \"détermin\",\n  \"déterminé\": \"détermin\",\n  \"déterminées\": \"détermin\",\n  \"déterminer\": \"détermin\",\n  \"déterminera\": \"détermin\",\n  \"déterrer\": \"déterr\",\n  \"détestable\": \"détest\",\n  \"détestables\": \"détest\",\n  \"détestaient\": \"détest\",\n  \"détestait\": \"détest\",\n  \"déteste\": \"détest\",\n  \"détesté\": \"détest\",\n  \"détestent\": \"détestent\",\n  \"détester\": \"détest\",\n  \"détesterez\": \"détest\",\n  \"détonation\": \"déton\",\n  \"détonations\": \"déton\",\n  \"détour\": \"détour\",\n  \"détourna\": \"détourn\",\n  \"détournaient\": \"détourn\",\n  \"détourné\": \"détourn\",\n  \"détours\": \"détour\",\n  \"détraquer\": \"détraqu\",\n  \"détresse\": \"détress\",\n  \"détriment\": \"detr\",\n  \"détroit\": \"détroit\",\n  \"détrompé\": \"détromp\",\n  \"détruire\": \"détruir\",\n  \"détruisaient\": \"détruis\",\n  \"détruisit\": \"détruis\",\n  \"détruit\": \"détruit\",\n  \"détruites\": \"détruit\",\n  \"détruits\": \"détruit\",\n  \"dette\": \"det\",\n  \"dettes\": \"det\",\n  \"deuil\": \"deuil\",\n  \"deuils\": \"deuil\",\n  \"deum\": \"deum\",\n  \"deux\": \"deux\",\n  \"deuxième\": \"deuxiem\",\n  \"devaient\": \"dev\",\n  \"devais\": \"dev\",\n  \"devait\": \"dev\",\n  \"devançant\": \"devanc\",\n  \"devancer\": \"devanc\",\n  \"devant\": \"dev\",\n  \"devants\": \"dev\",\n  \"développa\": \"développ\",\n  \"développaient\": \"développ\",\n  \"développait\": \"développ\",\n  \"développée\": \"développ\",\n  \"développement\": \"développ\",\n  \"devenaient\": \"deven\",\n  \"devenais\": \"deven\",\n  \"devenait\": \"deven\",\n  \"devenant\": \"deven\",\n  \"devenez\": \"deven\",\n  \"devenir\": \"deven\",\n  \"devenu\": \"devenu\",\n  \"devenue\": \"devenu\",\n  \"devenus\": \"devenus\",\n  \"déverse\": \"dévers\",\n  \"déverser\": \"dévers\",\n  \"devez\": \"dev\",\n  \"deviendra\": \"deviendr\",\n  \"deviendrai\": \"deviendr\",\n  \"deviendraient\": \"deviendr\",\n  \"deviendrais\": \"deviendr\",\n  \"deviendrait\": \"deviendr\",\n  \"deviendrez\": \"deviendr\",\n  \"deviendriez\": \"deviendr\",\n  \"deviennent\": \"deviennent\",\n  \"deviens\": \"devien\",\n  \"devient\": \"devient\",\n  \"deviez\": \"dev\",\n  \"devina\": \"devin\",\n  \"devinait\": \"devin\",\n  \"devinant\": \"devin\",\n  \"devine\": \"devin\",\n  \"deviné\": \"devin\",\n  \"devinée\": \"devin\",\n  \"devinées\": \"devin\",\n  \"deviner\": \"devin\",\n  \"devinera\": \"devin\",\n  \"devinerait\": \"devin\",\n  \"devineront\": \"devin\",\n  \"devines\": \"devin\",\n  \"devinez\": \"devin\",\n  \"devînmes\": \"devînm\",\n  \"devinrent\": \"devinrent\",\n  \"devins\": \"devin\",\n  \"devint\": \"devint\",\n  \"devis\": \"dev\",\n  \"dévisageait\": \"dévisag\",\n  \"dévisager\": \"dévisag\",\n  \"dévisser\": \"déviss\",\n  \"devo\": \"devo\",\n  \"dévoilé\": \"dévoil\",\n  \"devoir\": \"devoir\",\n  \"devoirs\": \"devoir\",\n  \"devons\": \"devon\",\n  \"dévora\": \"dévor\",\n  \"dévoraient\": \"dévor\",\n  \"dévorait\": \"dévor\",\n  \"dévorante\": \"dévor\",\n  \"dévorât\": \"dévor\",\n  \"dévore\": \"dévor\",\n  \"dévoré\": \"dévor\",\n  \"dévorée\": \"dévor\",\n  \"dévorer\": \"dévor\",\n  \"dévoreront\": \"dévor\",\n  \"dévorés\": \"dévor\",\n  \"devoret\": \"devoret\",\n  \"dévorez\": \"dévor\",\n  \"dévot\": \"dévot\",\n  \"dévote\": \"dévot\",\n  \"dévotement\": \"dévot\",\n  \"dévotes\": \"dévot\",\n  \"dévotion\": \"dévot\",\n  \"dévots\": \"dévot\",\n  \"dévoué\": \"dévou\",\n  \"dévouée\": \"dévou\",\n  \"dévouement\": \"dévou\",\n  \"dévouements\": \"dévou\",\n  \"dévouer\": \"dévou\",\n  \"dévoués\": \"dévou\",\n  \"devra\": \"devr\",\n  \"devrai\": \"devr\",\n  \"devraient\": \"devr\",\n  \"devrais\": \"devr\",\n  \"devrait\": \"devr\",\n  \"devriez\": \"devr\",\n  \"devrons\": \"devron\",\n  \"devront\": \"devront\",\n  \"di\": \"di\",\n  \"diable\": \"diabl\",\n  \"diables\": \"diabl\",\n  \"diacre\": \"diacr\",\n  \"dialogue\": \"dialogu\",\n  \"dialogues\": \"dialogu\",\n  \"diamant\": \"diam\",\n  \"diamanté\": \"diamant\",\n  \"diamants\": \"diam\",\n  \"diane\": \"dian\",\n  \"diar\": \"diar\",\n  \"dicta\": \"dict\",\n  \"dictait\": \"dict\",\n  \"dictateur\": \"dictateur\",\n  \"dicté\": \"dict\",\n  \"dictée\": \"dict\",\n  \"dictées\": \"dict\",\n  \"dicter\": \"dict\",\n  \"dictés\": \"dict\",\n  \"diction\": \"diction\",\n  \"dictionnaire\": \"dictionnair\",\n  \"dicton\": \"dicton\",\n  \"diderot\": \"diderot\",\n  \"didon\": \"didon\",\n  \"diego\": \"diego\",\n  \"diègue\": \"diègu\",\n  \"dieu\": \"dieu\",\n  \"dieux\": \"dieux\",\n  \"différence\": \"différent\",\n  \"différences\": \"différent\",\n  \"différend\": \"différend\",\n  \"différends\": \"différend\",\n  \"différent\": \"différent\",\n  \"diffèrent\": \"diff\",\n  \"différente\": \"différent\",\n  \"différentes\": \"différent\",\n  \"différents\": \"différent\",\n  \"différer\": \"differ\",\n  \"difficile\": \"difficil\",\n  \"difficilement\": \"difficil\",\n  \"difficiles\": \"difficil\",\n  \"difficulté\": \"difficult\",\n  \"difficultés\": \"difficult\",\n  \"difficultueux\": \"difficultu\",\n  \"difforme\": \"difform\",\n  \"digère\": \"diger\",\n  \"digne\": \"dign\",\n  \"dignement\": \"dign\",\n  \"dignes\": \"dign\",\n  \"dignité\": \"dignit\",\n  \"dignités\": \"dignit\",\n  \"digue\": \"digu\",\n  \"dijon\": \"dijon\",\n  \"dilettanti\": \"dilettant\",\n  \"diligence\": \"diligent\",\n  \"diligente\": \"diligent\",\n  \"dimanche\": \"dimanch\",\n  \"dimanches\": \"dimanch\",\n  \"dîme\": \"dîm\",\n  \"dimension\": \"dimens\",\n  \"dimensions\": \"dimens\",\n  \"diminua\": \"diminu\",\n  \"diminuaient\": \"diminu\",\n  \"diminuait\": \"diminu\",\n  \"diminuant\": \"diminu\",\n  \"diminue\": \"diminu\",\n  \"diminué\": \"diminu\",\n  \"diminuée\": \"diminu\",\n  \"diminuer\": \"diminu\",\n  \"diminution\": \"diminu\",\n  \"dîna\": \"dîn\",\n  \"dînait\": \"dîn\",\n  \"dînant\": \"dîn\",\n  \"dindon\": \"dindon\",\n  \"dîné\": \"dîn\",\n  \"dînée\": \"dîn\",\n  \"dînées\": \"dîn\",\n  \"dînent\": \"dînent\",\n  \"dîner\": \"dîn\",\n  \"dînerai\": \"dîn\",\n  \"dînerait\": \"dîn\",\n  \"dînèrent\": \"dîn\",\n  \"dîners\": \"dîner\",\n  \"diocèse\": \"dioces\",\n  \"diplomate\": \"diplomat\",\n  \"diplomates\": \"diplomat\",\n  \"diplomatie\": \"diplomat\",\n  \"diplomatique\": \"diplomat\",\n  \"diplomatiquement\": \"diplomat\",\n  \"diplomatiques\": \"diplomat\",\n  \"dira\": \"dir\",\n  \"dirai\": \"dir\",\n  \"diraient\": \"dir\",\n  \"dirais\": \"dir\",\n  \"dirait\": \"dir\",\n  \"diras\": \"dir\",\n  \"dire\": \"dir\",\n  \"direct\": \"direct\",\n  \"directe\": \"direct\",\n  \"directement\": \"direct\",\n  \"directes\": \"direct\",\n  \"directeur\": \"directeur\",\n  \"direction\": \"direct\",\n  \"directions\": \"direct\",\n  \"directoire\": \"directoir\",\n  \"directs\": \"direct\",\n  \"dirent\": \"dirent\",\n  \"direz\": \"dir\",\n  \"dirige\": \"dirig\",\n  \"dirigé\": \"dirig\",\n  \"dirigea\": \"dirig\",\n  \"dirigeait\": \"dirig\",\n  \"dirigeant\": \"dirig\",\n  \"dirigeante\": \"dirig\",\n  \"dirigée\": \"dirig\",\n  \"dirigées\": \"dirig\",\n  \"dirigent\": \"dirigent\",\n  \"diriger\": \"dirig\",\n  \"dirigerait\": \"dirig\",\n  \"dirigèrent\": \"dirig\",\n  \"dirigés\": \"dirig\",\n  \"dirigez\": \"dirig\",\n  \"dirions\": \"dirion\",\n  \"dirons\": \"diron\",\n  \"diront\": \"diront\",\n  \"dis\": \"dis\",\n  \"disaient\": \"dis\",\n  \"disais\": \"dis\",\n  \"disait\": \"dis\",\n  \"disant\": \"dis\",\n  \"disc\": \"disc\",\n  \"discerna\": \"discern\",\n  \"disciple\": \"discipl\",\n  \"disciples\": \"discipl\",\n  \"discontinuaient\": \"discontinu\",\n  \"discontinuer\": \"discontinu\",\n  \"disconvenir\": \"disconven\",\n  \"discordant\": \"discord\",\n  \"discours\": \"discour\",\n  \"discret\": \"discret\",\n  \"discrète\": \"discret\",\n  \"discrétion\": \"discret\",\n  \"discrets\": \"discret\",\n  \"discussion\": \"discuss\",\n  \"discussions\": \"discuss\",\n  \"discuta\": \"discut\",\n  \"discutaient\": \"discut\",\n  \"discutait\": \"discut\",\n  \"discutant\": \"discut\",\n  \"discute\": \"discut\",\n  \"discutée\": \"discut\",\n  \"discuter\": \"discut\",\n  \"discutèrent\": \"discut\",\n  \"discutés\": \"discut\",\n  \"dise\": \"dis\",\n  \"disent\": \"disent\",\n  \"disgrâce\": \"disgrâc\",\n  \"disgracie\": \"disgrac\",\n  \"disgracié\": \"disgraci\",\n  \"disgracierez\": \"disgraci\",\n  \"disinvoltura\": \"disinvoltur\",\n  \"disloqué\": \"disloqu\",\n  \"disparaissaient\": \"disparaiss\",\n  \"disparaissait\": \"disparaiss\",\n  \"disparaissent\": \"disparaissent\",\n  \"disparaît\": \"disparaît\",\n  \"disparaître\": \"disparaîtr\",\n  \"disparition\": \"disparit\",\n  \"disparu\": \"disparu\",\n  \"disparurent\": \"disparurent\",\n  \"disparussent\": \"disparussent\",\n  \"disparut\": \"disparut\",\n  \"dispendieuses\": \"dispendi\",\n  \"dispensé\": \"dispens\",\n  \"dispenser\": \"dispens\",\n  \"dispersaient\": \"dispers\",\n  \"dispersés\": \"dispers\",\n  \"dispos\": \"dispos\",\n  \"disposa\": \"dispos\",\n  \"disposaient\": \"dispos\",\n  \"disposait\": \"dispos\",\n  \"dispose\": \"dispos\",\n  \"disposé\": \"dispos\",\n  \"disposée\": \"dispos\",\n  \"disposées\": \"dispos\",\n  \"disposer\": \"dispos\",\n  \"disposés\": \"dispos\",\n  \"disposez\": \"dispos\",\n  \"disposition\": \"disposit\",\n  \"dispositions\": \"disposit\",\n  \"disposons\": \"disposon\",\n  \"disproportion\": \"disproport\",\n  \"disputa\": \"disput\",\n  \"disputaient\": \"disput\",\n  \"disputait\": \"disput\",\n  \"dispute\": \"disput\",\n  \"disputer\": \"disput\",\n  \"disputèrent\": \"disput\",\n  \"disputons\": \"disputon\",\n  \"disque\": \"disqu\",\n  \"dissembles\": \"dissembl\",\n  \"dissent\": \"dissent\",\n  \"disséquée\": \"dissequ\",\n  \"dissertation\": \"dissert\",\n  \"dissertations\": \"dissert\",\n  \"disserte\": \"dissert\",\n  \"dissimulaient\": \"dissimul\",\n  \"dissimulait\": \"dissimul\",\n  \"dissimulant\": \"dissimul\",\n  \"dissimule\": \"dissimul\",\n  \"dissimulée\": \"dissimul\",\n  \"dissimuler\": \"dissimul\",\n  \"dissimulerai\": \"dissimul\",\n  \"dissimulerons\": \"dissimul\",\n  \"dissimulons\": \"dissimulon\",\n  \"dissipait\": \"dissip\",\n  \"dissipation\": \"dissip\",\n  \"dissipations\": \"dissip\",\n  \"dissipé\": \"dissip\",\n  \"dissipée\": \"dissip\",\n  \"dissipées\": \"dissip\",\n  \"dissiper\": \"dissip\",\n  \"dissipèrent\": \"dissip\",\n  \"dissolution\": \"dissolu\",\n  \"distance\": \"distanc\",\n  \"distancé\": \"distanc\",\n  \"distances\": \"distanc\",\n  \"distant\": \"dist\",\n  \"distillée\": \"distill\",\n  \"distinctement\": \"distinct\",\n  \"distinctes\": \"distinct\",\n  \"distinction\": \"distinct\",\n  \"distinctions\": \"distinct\",\n  \"distincts\": \"distinct\",\n  \"distinguaient\": \"distingu\",\n  \"distinguait\": \"distingu\",\n  \"distinguant\": \"distingu\",\n  \"distingue\": \"distingu\",\n  \"distingué\": \"distingu\",\n  \"distinguée\": \"distingu\",\n  \"distinguées\": \"distingu\",\n  \"distinguer\": \"distingu\",\n  \"distingués\": \"distingu\",\n  \"distinguons\": \"distinguon\",\n  \"distraction\": \"distract\",\n  \"distractions\": \"distract\",\n  \"distrairait\": \"distrair\",\n  \"distraire\": \"distrair\",\n  \"distrait\": \"distr\",\n  \"distraite\": \"distrait\",\n  \"distraites\": \"distrait\",\n  \"distrayaient\": \"distrai\",\n  \"distrayait\": \"distrai\",\n  \"distribua\": \"distribu\",\n  \"distribuait\": \"distribu\",\n  \"distribue\": \"distribu\",\n  \"distribué\": \"distribu\",\n  \"distribuent\": \"distribuent\",\n  \"distribuer\": \"distribu\",\n  \"distribuez\": \"distribu\",\n  \"distribution\": \"distribu\",\n  \"distributions\": \"distribu\",\n  \"distributive\": \"distribut\",\n  \"dit\": \"dit\",\n  \"dît\": \"dît\",\n  \"dite\": \"dit\",\n  \"dites\": \"dit\",\n  \"dithyrambe\": \"dithyramb\",\n  \"dits\": \"dit\",\n  \"diurne\": \"diurn\",\n  \"divan\": \"divan\",\n  \"divers\": \"diver\",\n  \"diverses\": \"divers\",\n  \"diversion\": \"divers\",\n  \"divertir\": \"divert\",\n  \"divertissant\": \"divert\",\n  \"divertissements\": \"divert\",\n  \"divin\": \"divin\",\n  \"divine\": \"divin\",\n  \"divinité\": \"divin\",\n  \"divins\": \"divin\",\n  \"divisa\": \"divis\",\n  \"divisait\": \"divis\",\n  \"divise\": \"divis\",\n  \"divisé\": \"divis\",\n  \"divisée\": \"divis\",\n  \"divisées\": \"divis\",\n  \"divisèrent\": \"divis\",\n  \"divisés\": \"divis\",\n  \"division\": \"divis\",\n  \"divisions\": \"divis\",\n  \"divulguer\": \"divulgu\",\n  \"dix\": \"dix\",\n  \"dixerunt\": \"dixerunt\",\n  \"dixième\": \"dixiem\",\n  \"dizaine\": \"dizain\",\n  \"do\": \"do\",\n  \"docilité\": \"docil\",\n  \"docks\": \"dock\",\n  \"docteur\": \"docteur\",\n  \"doctrine\": \"doctrin\",\n  \"doctrines\": \"doctrin\",\n  \"document\": \"docu\",\n  \"documents\": \"docu\",\n  \"dodge\": \"dodg\",\n  \"doge\": \"dog\",\n  \"dogmatiquement\": \"dogmat\",\n  \"dogme\": \"dogm\",\n  \"doigt\": \"doigt\",\n  \"doigts\": \"doigt\",\n  \"dois\": \"dois\",\n  \"doit\": \"doit\",\n  \"doivent\": \"doivent\",\n  \"dolci\": \"dolc\",\n  \"dôle\": \"dôl\",\n  \"doléances\": \"doléanc\",\n  \"dollar\": \"dollar\",\n  \"dollars\": \"dollar\",\n  \"dolman\": \"dolman\",\n  \"domaine\": \"domain\",\n  \"domaniale\": \"domanial\",\n  \"dôme\": \"dôm\",\n  \"domesticité\": \"domest\",\n  \"domestique\": \"domest\",\n  \"domestiqué\": \"domestiqu\",\n  \"domestiques\": \"domest\",\n  \"domicile\": \"domicil\",\n  \"domina\": \"domin\",\n  \"dominaient\": \"domin\",\n  \"dominait\": \"domin\",\n  \"dominant\": \"domin\",\n  \"dominante\": \"domin\",\n  \"dominateur\": \"domin\",\n  \"domination\": \"domin\",\n  \"domine\": \"domin\",\n  \"dominé\": \"domin\",\n  \"dominée\": \"domin\",\n  \"domingue\": \"domingu\",\n  \"domini\": \"domin\",\n  \"dommage\": \"dommag\",\n  \"dommages\": \"dommag\",\n  \"dompté\": \"dompt\",\n  \"dompter\": \"dompt\",\n  \"don\": \"don\",\n  \"donation\": \"donat\",\n  \"donc\": \"donc\",\n  \"dongo\": \"dongo\",\n  \"donjon\": \"donjon\",\n  \"donna\": \"don\",\n  \"donnai\": \"don\",\n  \"donnaient\": \"don\",\n  \"donnait\": \"don\",\n  \"donnant\": \"don\",\n  \"donnassent\": \"don\",\n  \"donnât\": \"don\",\n  \"donnâtes\": \"don\",\n  \"donne\": \"don\",\n  \"donné\": \"don\",\n  \"donnée\": \"don\",\n  \"données\": \"don\",\n  \"donnent\": \"donnent\",\n  \"donner\": \"don\",\n  \"donnera\": \"don\",\n  \"donnerai\": \"don\",\n  \"donneraient\": \"don\",\n  \"donnerais\": \"don\",\n  \"donnerait\": \"don\",\n  \"donneras\": \"don\",\n  \"donnèrent\": \"don\",\n  \"donnerez\": \"don\",\n  \"donneriez\": \"don\",\n  \"donneront\": \"don\",\n  \"donnes\": \"don\",\n  \"donnés\": \"don\",\n  \"donneur\": \"donneur\",\n  \"donnez\": \"don\",\n  \"donnions\": \"donnion\",\n  \"donnons\": \"donnon\",\n  \"dont\": \"dont\",\n  \"dorat\": \"dorat\",\n  \"doré\": \"dor\",\n  \"dorée\": \"dor\",\n  \"dorées\": \"dor\",\n  \"dorénavant\": \"dorénav\",\n  \"dorés\": \"dor\",\n  \"dormaient\": \"dorm\",\n  \"dormait\": \"dorm\",\n  \"dormantes\": \"dorm\",\n  \"dormeurs\": \"dormeur\",\n  \"dormi\": \"dorm\",\n  \"dormir\": \"dorm\",\n  \"dormirai\": \"dorm\",\n  \"dormit\": \"dorm\",\n  \"dormît\": \"dorm\",\n  \"dort\": \"dort\",\n  \"dortoir\": \"dortoir\",\n  \"dortoirs\": \"dortoir\",\n  \"dorures\": \"dorur\",\n  \"dos\": \"dos\",\n  \"dose\": \"dos\",\n  \"dossier\": \"dossi\",\n  \"dossiers\": \"dossi\",\n  \"dot\": \"dot\",\n  \"douaire\": \"douair\",\n  \"douairière\": \"douairi\",\n  \"douane\": \"douan\",\n  \"douanier\": \"douani\",\n  \"douaniers\": \"douani\",\n  \"doubla\": \"doubl\",\n  \"doublant\": \"doubl\",\n  \"double\": \"doubl\",\n  \"doublé\": \"doubl\",\n  \"doublée\": \"doubl\",\n  \"doublement\": \"doubl\",\n  \"doubler\": \"doubl\",\n  \"doubles\": \"doubl\",\n  \"doublure\": \"doublur\",\n  \"doubs\": \"doub\",\n  \"doubt\": \"doubt\",\n  \"douce\": \"douc\",\n  \"doucement\": \"douc\",\n  \"douces\": \"douc\",\n  \"douceur\": \"douceur\",\n  \"douceurs\": \"douceur\",\n  \"doué\": \"dou\",\n  \"douée\": \"dou\",\n  \"doués\": \"dou\",\n  \"douleur\": \"douleur\",\n  \"douleurs\": \"douleur\",\n  \"douloureuse\": \"doulour\",\n  \"douloureuses\": \"doulour\",\n  \"douloureux\": \"doulour\",\n  \"douta\": \"dout\",\n  \"doutait\": \"dout\",\n  \"doutât\": \"dout\",\n  \"doute\": \"dout\",\n  \"douté\": \"dout\",\n  \"doutée\": \"dout\",\n  \"douter\": \"dout\",\n  \"douterez\": \"dout\",\n  \"doutes\": \"dout\",\n  \"douteuse\": \"douteux\",\n  \"douteuses\": \"douteux\",\n  \"douteux\": \"douteux\",\n  \"doutez\": \"dout\",\n  \"douvres\": \"douvr\",\n  \"doux\": \"doux\",\n  \"douzaine\": \"douzain\",\n  \"douzaines\": \"douzain\",\n  \"douze\": \"douz\",\n  \"doyen\": \"doyen\",\n  \"dragon\": \"dragon\",\n  \"dragons\": \"dragon\",\n  \"dramatique\": \"dramat\",\n  \"dramatiques\": \"dramat\",\n  \"drame\": \"dram\",\n  \"drap\": \"drap\",\n  \"drapeau\": \"drapeau\",\n  \"drapeaux\": \"drapeau\",\n  \"drapée\": \"drap\",\n  \"drapier\": \"drapi\",\n  \"draps\": \"drap\",\n  \"drawing\": \"drawing\",\n  \"dressaient\": \"dress\",\n  \"dressait\": \"dress\",\n  \"dresse\": \"dress\",\n  \"dressé\": \"dress\",\n  \"dressée\": \"dress\",\n  \"dresser\": \"dress\",\n  \"dressés\": \"dress\",\n  \"drisses\": \"driss\",\n  \"drogue\": \"drogu\",\n  \"drogues\": \"drogu\",\n  \"droit\": \"droit\",\n  \"droite\": \"droit\",\n  \"droites\": \"droit\",\n  \"droits\": \"droit\",\n  \"droiture\": \"droitur\",\n  \"drôle\": \"drôl\",\n  \"drôles\": \"drôl\",\n  \"drome\": \"drom\",\n  \"dromes\": \"drom\",\n  \"du\": \"du\",\n  \"dû\": \"dû\",\n  \"dublin\": \"dublin\",\n  \"dubois\": \"dubois\",\n  \"duc\": \"duc\",\n  \"ducats\": \"ducat\",\n  \"duché\": \"duch\",\n  \"duchesse\": \"duchess\",\n  \"duchesses\": \"duchess\",\n  \"ducrest\": \"ducrest\",\n  \"ducros\": \"ducros\",\n  \"ducs\": \"duc\",\n  \"dudit\": \"dud\",\n  \"due\": \"du\",\n  \"duel\": \"duel\",\n  \"duellistes\": \"duellist\",\n  \"duettino\": \"duettino\",\n  \"dugnani\": \"dugnan\",\n  \"dûment\": \"dûment\",\n  \"dunette\": \"dunet\",\n  \"dupe\": \"dup\",\n  \"duperie\": \"duper\",\n  \"dupes\": \"dup\",\n  \"duplicité\": \"dupliqu\",\n  \"duquel\": \"duquel\",\n  \"dur\": \"dur\",\n  \"dura\": \"dur\",\n  \"durable\": \"durabl\",\n  \"durables\": \"durabl\",\n  \"duraient\": \"dur\",\n  \"durait\": \"dur\",\n  \"durand\": \"durand\",\n  \"durant\": \"dur\",\n  \"durât\": \"dur\",\n  \"durati\": \"durat\",\n  \"durcie\": \"durc\",\n  \"dure\": \"dur\",\n  \"duré\": \"dur\",\n  \"durée\": \"dur\",\n  \"durement\": \"dur\",\n  \"durent\": \"durent\",\n  \"durer\": \"dur\",\n  \"durera\": \"dur\",\n  \"dureraient\": \"dur\",\n  \"durerait\": \"dur\",\n  \"dureront\": \"dur\",\n  \"dures\": \"dur\",\n  \"dureté\": \"duret\",\n  \"durini\": \"durin\",\n  \"durs\": \"dur\",\n  \"dus\": \"dus\",\n  \"dussé\": \"duss\",\n  \"dut\": \"dut\",\n  \"dût\": \"dût\",\n  \"duvoisin\": \"duvoisin\",\n  \"e\": \"e\",\n  \"è\": \"è\",\n  \"earnshaw\": \"earnshaw\",\n  \"eastern\": \"eastern\",\n  \"eau\": \"eau\",\n  \"eaux\": \"eau\",\n  \"ébahi\": \"ébah\",\n  \"ébahie\": \"ébah\",\n  \"ébahis\": \"ébah\",\n  \"ébahissement\": \"ébah\",\n  \"ébattre\": \"ébattr\",\n  \"ébaucha\": \"ébauch\",\n  \"ébaudissait\": \"ébaud\",\n  \"ébène\": \"ében\",\n  \"ébloui\": \"éblou\",\n  \"éblouissant\": \"éblou\",\n  \"éblouissante\": \"éblou\",\n  \"éblouissement\": \"éblou\",\n  \"éblouit\": \"éblou\",\n  \"ébouriffé\": \"ébouriff\",\n  \"ébouriffée\": \"ébouriff\",\n  \"ébranla\": \"ébranl\",\n  \"ébranlaient\": \"ébranl\",\n  \"ébranlant\": \"ébranl\",\n  \"ébranlé\": \"ébranl\",\n  \"ébranlée\": \"ébranl\",\n  \"ébranler\": \"ébranl\",\n  \"ébréché\": \"ébrech\",\n  \"ébruité\": \"ébruit\",\n  \"écailles\": \"écaill\",\n  \"écarlate\": \"écarlat\",\n  \"écarquillés\": \"écarquill\",\n  \"écart\": \"écart\",\n  \"écartaient\": \"écart\",\n  \"écartait\": \"écart\",\n  \"écartant\": \"écart\",\n  \"écarte\": \"écart\",\n  \"écarté\": \"écart\",\n  \"écartée\": \"écart\",\n  \"écartées\": \"écart\",\n  \"écartelé\": \"écartel\",\n  \"écarter\": \"écart\",\n  \"eccellenza\": \"eccellenz\",\n  \"ecclesiam\": \"ecclesiam\",\n  \"ecclésiastique\": \"ecclésiast\",\n  \"ecclésiastiques\": \"ecclésiast\",\n  \"écervelés\": \"écervel\",\n  \"échafaud\": \"échafaud\",\n  \"échange\": \"échang\",\n  \"échangé\": \"échang\",\n  \"échangeaient\": \"échang\",\n  \"échangeant\": \"échang\",\n  \"échangée\": \"échang\",\n  \"échangées\": \"échang\",\n  \"échanger\": \"échang\",\n  \"échangés\": \"échang\",\n  \"échantillons\": \"échantillon\",\n  \"échappa\": \"échapp\",\n  \"échappaient\": \"échapp\",\n  \"échappait\": \"échapp\",\n  \"échappe\": \"échapp\",\n  \"échappé\": \"échapp\",\n  \"échappée\": \"échapp\",\n  \"échappées\": \"échapp\",\n  \"échappement\": \"échapp\",\n  \"échapper\": \"échapp\",\n  \"échapperait\": \"échapp\",\n  \"échappés\": \"échapp\",\n  \"échappons\": \"échappon\",\n  \"écharpe\": \"écharp\",\n  \"échauffant\": \"échauff\",\n  \"échauffer\": \"échauff\",\n  \"échéant\": \"éché\",\n  \"échec\": \"échec\",\n  \"échecs\": \"échec\",\n  \"échelle\": \"échel\",\n  \"échelles\": \"échel\",\n  \"échelon\": \"échelon\",\n  \"échelons\": \"échelon\",\n  \"échevelé\": \"échevel\",\n  \"echiquier\": \"echiqui\",\n  \"échiquiers\": \"échiqui\",\n  \"échoiront\": \"échoiront\",\n  \"échoppe\": \"échopp\",\n  \"échouait\": \"échou\",\n  \"échoue\": \"échou\",\n  \"échoué\": \"échou\",\n  \"échouer\": \"échou\",\n  \"échoueraient\": \"échou\",\n  \"échus\": \"échus\",\n  \"échut\": \"échut\",\n  \"éclair\": \"éclair\",\n  \"éclairaient\": \"éclair\",\n  \"éclairait\": \"éclair\",\n  \"éclairant\": \"éclair\",\n  \"éclaircies\": \"éclairc\",\n  \"éclaircir\": \"éclairc\",\n  \"éclaircirent\": \"éclairc\",\n  \"éclaircissant\": \"éclairc\",\n  \"éclaircissement\": \"éclairc\",\n  \"éclaircissent\": \"éclairc\",\n  \"éclaircit\": \"éclairc\",\n  \"éclairé\": \"éclair\",\n  \"éclairée\": \"éclair\",\n  \"éclairer\": \"éclair\",\n  \"éclairèrent\": \"éclair\",\n  \"éclairés\": \"éclair\",\n  \"éclairs\": \"éclair\",\n  \"éclat\": \"éclat\",\n  \"éclata\": \"éclat\",\n  \"éclataient\": \"éclat\",\n  \"éclatait\": \"éclat\",\n  \"éclatant\": \"éclat\",\n  \"éclatante\": \"éclat\",\n  \"éclatantes\": \"éclat\",\n  \"éclatants\": \"éclat\",\n  \"éclate\": \"éclat\",\n  \"éclaté\": \"éclat\",\n  \"éclatent\": \"éclatent\",\n  \"éclater\": \"éclat\",\n  \"éclatèrent\": \"éclat\",\n  \"éclats\": \"éclat\",\n  \"éclipsait\": \"éclips\",\n  \"éclipse\": \"éclips\",\n  \"éclipses\": \"éclips\",\n  \"éclipsés\": \"éclips\",\n  \"école\": \"écol\",\n  \"écolier\": \"écoli\",\n  \"éconduire\": \"éconduir\",\n  \"éconduit\": \"éconduit\",\n  \"économe\": \"économ\",\n  \"économes\": \"économ\",\n  \"économie\": \"économ\",\n  \"économies\": \"économ\",\n  \"économise\": \"économis\",\n  \"économisées\": \"économis\",\n  \"économiser\": \"économis\",\n  \"économisés\": \"économis\",\n  \"écorcha\": \"écorch\",\n  \"écorchaient\": \"écorch\",\n  \"écorchait\": \"écorch\",\n  \"écorché\": \"écorch\",\n  \"écorchée\": \"écorch\",\n  \"écorcher\": \"écorch\",\n  \"écorchures\": \"écorchur\",\n  \"écorné\": \"écorn\",\n  \"écossaise\": \"écossais\",\n  \"écoula\": \"écoul\",\n  \"écoulaient\": \"écoul\",\n  \"écoulant\": \"écoul\",\n  \"écoulé\": \"écoul\",\n  \"écoulée\": \"écoul\",\n  \"écoulement\": \"écoul\",\n  \"écoulent\": \"écoulent\",\n  \"écouler\": \"écoul\",\n  \"écoulèrent\": \"écoul\",\n  \"écoulés\": \"écoul\",\n  \"écouta\": \"écout\",\n  \"écoutaient\": \"écout\",\n  \"écoutais\": \"écout\",\n  \"écoutait\": \"écout\",\n  \"écoutant\": \"écout\",\n  \"écoute\": \"écout\",\n  \"écouté\": \"écout\",\n  \"écoutée\": \"écout\",\n  \"écoutent\": \"écoutent\",\n  \"écouter\": \"écout\",\n  \"écouterai\": \"écout\",\n  \"écouteront\": \"écout\",\n  \"écoutes\": \"écout\",\n  \"écoutés\": \"écout\",\n  \"ecoutez\": \"ecout\",\n  \"écoutez\": \"écout\",\n  \"écoutiez\": \"écout\",\n  \"écrasaient\": \"écras\",\n  \"écrasé\": \"écras\",\n  \"écrasée\": \"écras\",\n  \"écrasées\": \"écras\",\n  \"écraser\": \"écras\",\n  \"écria\": \"écri\",\n  \"écriaient\": \"écri\",\n  \"écriait\": \"écri\",\n  \"écriant\": \"écri\",\n  \"écrie\": \"écri\",\n  \"écrié\": \"écri\",\n  \"écriée\": \"écri\",\n  \"écrient\": \"écrient\",\n  \"écrier\": \"écri\",\n  \"écrièrent\": \"écri\",\n  \"écrin\": \"écrin\",\n  \"écrira\": \"écrir\",\n  \"écrirai\": \"écrir\",\n  \"écrirais\": \"écrir\",\n  \"écrirait\": \"écrir\",\n  \"écrire\": \"écrir\",\n  \"écrirez\": \"écrir\",\n  \"écris\": \"écris\",\n  \"écrit\": \"écrit\",\n  \"écrite\": \"écrit\",\n  \"écriteau\": \"écriteau\",\n  \"écrites\": \"écrit\",\n  \"écritoire\": \"écritoir\",\n  \"écrits\": \"écrit\",\n  \"écriture\": \"écritur\",\n  \"écritures\": \"écritur\",\n  \"écrivailleur\": \"écrivailleur\",\n  \"écrivailleurs\": \"écrivailleur\",\n  \"écrivain\": \"écrivain\",\n  \"écrivains\": \"écrivain\",\n  \"écrivais\": \"écriv\",\n  \"écrivait\": \"écriv\",\n  \"écrivant\": \"écriv\",\n  \"écrivante\": \"écriv\",\n  \"écrive\": \"écriv\",\n  \"écrivez\": \"écriv\",\n  \"écrivirent\": \"écriv\",\n  \"écrivit\": \"écriv\",\n  \"écrivît\": \"écriv\",\n  \"écrivîtes\": \"écriv\",\n  \"écrou\": \"écrou\",\n  \"écroué\": \"écrou\",\n  \"écroula\": \"écroul\",\n  \"écroulaient\": \"écroul\",\n  \"écu\": \"écu\",\n  \"écueil\": \"écueil\",\n  \"écuelle\": \"écuel\",\n  \"écumait\": \"écum\",\n  \"ecumeur\": \"ecumeur\",\n  \"écumeuses\": \"écum\",\n  \"écureuil\": \"écureuil\",\n  \"écurie\": \"écur\",\n  \"écuries\": \"écur\",\n  \"écus\": \"écus\",\n  \"écuyer\": \"écui\",\n  \"édification\": \"édif\",\n  \"édifice\": \"édific\",\n  \"edimbourg\": \"edimbourg\",\n  \"édimbourg\": \"édimbourg\",\n  \"edinburgh\": \"edinburgh\",\n  \"éditer\": \"édit\",\n  \"éditeur\": \"éditeur\",\n  \"édition\": \"édit\",\n  \"éditions\": \"édit\",\n  \"edrisi\": \"edris\",\n  \"éducation\": \"éduc\",\n  \"éduquer\": \"éduqu\",\n  \"effaça\": \"effac\",\n  \"efface\": \"effac\",\n  \"effacé\": \"effac\",\n  \"effacée\": \"effac\",\n  \"effacées\": \"effac\",\n  \"effacer\": \"effac\",\n  \"effaré\": \"effar\",\n  \"effarouchant\": \"effarouch\",\n  \"effarouche\": \"effarouch\",\n  \"effarouché\": \"effarouch\",\n  \"effaroucher\": \"effarouch\",\n  \"effarouches\": \"effarouch\",\n  \"effarouchés\": \"effarouch\",\n  \"effectivement\": \"effect\",\n  \"effectives\": \"effect\",\n  \"efféminées\": \"effémin\",\n  \"effervescence\": \"effervescent\",\n  \"effet\": \"effet\",\n  \"effets\": \"effet\",\n  \"effeuilla\": \"effeuill\",\n  \"effigie\": \"effig\",\n  \"effleurer\": \"effleur\",\n  \"efforçait\": \"efforc\",\n  \"effort\": \"effort\",\n  \"efforts\": \"effort\",\n  \"effraie\": \"effrai\",\n  \"effraya\": \"effrai\",\n  \"effrayaient\": \"effrai\",\n  \"effrayait\": \"effrai\",\n  \"effrayant\": \"effrai\",\n  \"effrayante\": \"effrai\",\n  \"effraye\": \"effray\",\n  \"effrayé\": \"effrai\",\n  \"effrayée\": \"effrai\",\n  \"effrayées\": \"effrai\",\n  \"effrayent\": \"effrayent\",\n  \"effrayer\": \"effrai\",\n  \"effrayèrent\": \"effrai\",\n  \"effrayés\": \"effrai\",\n  \"effréné\": \"effren\",\n  \"effrénée\": \"effren\",\n  \"effroi\": \"effroi\",\n  \"effronté\": \"effront\",\n  \"effrontément\": \"effront\",\n  \"effronterie\": \"effronter\",\n  \"effrontés\": \"effront\",\n  \"effroyable\": \"effroi\",\n  \"effroyablement\": \"effroi\",\n  \"effusion\": \"effus\",\n  \"égaiera\": \"égai\",\n  \"égal\": \"égal\",\n  \"égalait\": \"égal\",\n  \"égale\": \"égal\",\n  \"également\": \"égal\",\n  \"égalent\": \"égalent\",\n  \"égales\": \"égal\",\n  \"égalité\": \"égal\",\n  \"égalités\": \"égal\",\n  \"égara\": \"égar\",\n  \"égarait\": \"égar\",\n  \"égard\": \"égard\",\n  \"égards\": \"égard\",\n  \"égare\": \"égar\",\n  \"égaré\": \"égar\",\n  \"égarée\": \"égar\",\n  \"égarement\": \"égar\",\n  \"égarements\": \"égar\",\n  \"égarer\": \"égar\",\n  \"égares\": \"égar\",\n  \"égarés\": \"égar\",\n  \"égaux\": \"égal\",\n  \"égaya\": \"égai\",\n  \"égayée\": \"égai\",\n  \"égayer\": \"égai\",\n  \"égayés\": \"égai\",\n  \"église\": \"églis\",\n  \"églises\": \"églis\",\n  \"ego\": \"ego\",\n  \"égoïsme\": \"égoïsm\",\n  \"égoïste\": \"égoïst\",\n  \"égoïstes\": \"égoïst\",\n  \"égorgent\": \"égorgent\",\n  \"égorger\": \"égorg\",\n  \"égorgés\": \"égorg\",\n  \"égout\": \"égout\",\n  \"égratignure\": \"égratignur\",\n  \"égratignures\": \"égratignur\",\n  \"egypte\": \"egypt\",\n  \"égypte\": \"égypt\",\n  \"egyptiens\": \"egyptien\",\n  \"égyptiens\": \"égyptien\",\n  \"eh\": \"eh\",\n  \"el\": \"el\",\n  \"élan\": \"élan\",\n  \"élança\": \"élanc\",\n  \"élançait\": \"élanc\",\n  \"élançant\": \"élanc\",\n  \"élance\": \"élanc\",\n  \"élancé\": \"élanc\",\n  \"élancer\": \"élanc\",\n  \"élancera\": \"élanc\",\n  \"élans\": \"élan\",\n  \"élargi\": \"élarg\",\n  \"élastiques\": \"élast\",\n  \"elder\": \"elder\",\n  \"électeur\": \"électeur\",\n  \"électeurs\": \"électeur\",\n  \"élection\": \"élect\",\n  \"élections\": \"élect\",\n  \"électives\": \"élect\",\n  \"électrique\": \"électr\",\n  \"électriques\": \"électr\",\n  \"électrisait\": \"électris\",\n  \"élégamment\": \"éleg\",\n  \"élégance\": \"éleg\",\n  \"élégant\": \"éleg\",\n  \"élégante\": \"éleg\",\n  \"élégantes\": \"éleg\",\n  \"élégants\": \"éleg\",\n  \"élémentaire\": \"élémentair\",\n  \"éléments\": \"élément\",\n  \"éléphant\": \"éleph\",\n  \"eléphanta\": \"eléphant\",\n  \"éléphants\": \"éleph\",\n  \"éleva\": \"élev\",\n  \"élevaient\": \"élev\",\n  \"élevait\": \"élev\",\n  \"élevant\": \"élev\",\n  \"élévation\": \"élev\",\n  \"élévations\": \"élev\",\n  \"élève\": \"élev\",\n  \"élevé\": \"élev\",\n  \"élevée\": \"élev\",\n  \"élevées\": \"élev\",\n  \"élèvent\": \"élèvent\",\n  \"élever\": \"élev\",\n  \"élèvera\": \"élev\",\n  \"élèverai\": \"élev\",\n  \"élèverez\": \"élev\",\n  \"élèves\": \"élev\",\n  \"élevés\": \"élev\",\n  \"éleveurs\": \"éleveur\",\n  \"élisa\": \"élis\",\n  \"élite\": \"élit\",\n  \"elko\": \"elko\",\n  \"elle\": \"elle\",\n  \"elles\": \"elle\",\n  \"ellora\": \"ellor\",\n  \"élocution\": \"élocu\",\n  \"éloge\": \"élog\",\n  \"éloges\": \"élog\",\n  \"éloigna\": \"éloign\",\n  \"éloignaient\": \"éloign\",\n  \"éloignais\": \"éloign\",\n  \"éloignait\": \"éloign\",\n  \"éloignant\": \"éloign\",\n  \"éloignât\": \"éloign\",\n  \"éloigne\": \"éloign\",\n  \"éloigné\": \"éloign\",\n  \"éloignée\": \"éloign\",\n  \"éloignées\": \"éloign\",\n  \"éloignement\": \"éloign\",\n  \"éloigner\": \"éloign\",\n  \"éloignerai\": \"éloign\",\n  \"éloignerait\": \"éloign\",\n  \"éloignèrent\": \"éloign\",\n  \"éloignés\": \"éloign\",\n  \"éloignez\": \"éloign\",\n  \"éloigniez\": \"éloign\",\n  \"éloquence\": \"éloquent\",\n  \"éloquent\": \"éloquent\",\n  \"éloquente\": \"éloquent\",\n  \"élu\": \"élu\",\n  \"éluder\": \"élud\",\n  \"elysées\": \"elys\",\n  \"élysées\": \"élys\",\n  \"émaillée\": \"émaill\",\n  \"emballée\": \"emball\",\n  \"emballer\": \"emball\",\n  \"embarcation\": \"embarc\",\n  \"embarcations\": \"embarc\",\n  \"embardée\": \"embard\",\n  \"embardées\": \"embard\",\n  \"embarqua\": \"embarqu\",\n  \"embarquait\": \"embarqu\",\n  \"embarquant\": \"embarqu\",\n  \"embarque\": \"embarqu\",\n  \"embarqué\": \"embarqu\",\n  \"embarquement\": \"embarqu\",\n  \"embarquer\": \"embarqu\",\n  \"embarqués\": \"embarqu\",\n  \"embarras\": \"embarr\",\n  \"embarrassa\": \"embarrass\",\n  \"embarrassait\": \"embarrass\",\n  \"embarrasse\": \"embarr\",\n  \"embarrassé\": \"embarrass\",\n  \"embarrassée\": \"embarrass\",\n  \"embarrasser\": \"embarrass\",\n  \"embarrassés\": \"embarrass\",\n  \"embaumé\": \"embaum\",\n  \"embaumée\": \"embaum\",\n  \"embelli\": \"embel\",\n  \"embellie\": \"embel\",\n  \"embellir\": \"embel\",\n  \"emblée\": \"emblé\",\n  \"emblème\": \"emblem\",\n  \"embonpoint\": \"embonpoint\",\n  \"embossent\": \"embossent\",\n  \"embouchure\": \"embouchur\",\n  \"embouquait\": \"embouqu\",\n  \"embourbant\": \"embourb\",\n  \"embourser\": \"embours\",\n  \"embranchement\": \"embranch\",\n  \"embranchements\": \"embranch\",\n  \"embrasé\": \"embras\",\n  \"embrasée\": \"embras\",\n  \"embrassa\": \"embrass\",\n  \"embrassaient\": \"embrass\",\n  \"embrassait\": \"embrass\",\n  \"embrassant\": \"embrass\",\n  \"embrasse\": \"embrass\",\n  \"embrassé\": \"embrass\",\n  \"embrassements\": \"embrass\",\n  \"embrasser\": \"embrass\",\n  \"embrasserais\": \"embrass\",\n  \"embrassèrent\": \"embrass\",\n  \"embrouilla\": \"embrouill\",\n  \"embrouillant\": \"embrouill\",\n  \"embrouille\": \"embrouill\",\n  \"embrouiller\": \"embrouill\",\n  \"embrumé\": \"embrum\",\n  \"embrunir\": \"embrun\",\n  \"embruns\": \"embrun\",\n  \"embûche\": \"embûch\",\n  \"embûches\": \"embûch\",\n  \"embuscade\": \"embuscad\",\n  \"émergeait\": \"émerg\",\n  \"émerveillé\": \"émerveil\",\n  \"émerveillée\": \"émerveil\",\n  \"émettre\": \"émettr\",\n  \"émeute\": \"émeut\",\n  \"émeuvent\": \"émeuvent\",\n  \"émigrants\": \"émigr\",\n  \"émigration\": \"émigr\",\n  \"émigrera\": \"émigr\",\n  \"éminemment\": \"éminent\",\n  \"émissaire\": \"émissair\",\n  \"emmancher\": \"emmanch\",\n  \"emmêlés\": \"emmêl\",\n  \"emmena\": \"emmen\",\n  \"emmenaient\": \"emmen\",\n  \"emmenait\": \"emmen\",\n  \"emmène\": \"emmen\",\n  \"emmené\": \"emmen\",\n  \"emmener\": \"emmen\",\n  \"emmènerait\": \"emmen\",\n  \"emmènes\": \"emmen\",\n  \"émoi\": \"émoi\",\n  \"émotion\": \"émot\",\n  \"émotions\": \"émot\",\n  \"émoussés\": \"émouss\",\n  \"émoustiller\": \"émoustill\",\n  \"émouvoir\": \"émouvoir\",\n  \"empaquetée\": \"empaquet\",\n  \"empara\": \"empar\",\n  \"emparaient\": \"empar\",\n  \"emparait\": \"empar\",\n  \"emparant\": \"empar\",\n  \"emparé\": \"empar\",\n  \"emparer\": \"empar\",\n  \"emparèrent\": \"empar\",\n  \"emparés\": \"empar\",\n  \"empaumer\": \"empaum\",\n  \"empêcha\": \"empêch\",\n  \"empêchaient\": \"empêch\",\n  \"empêchait\": \"empêch\",\n  \"empêchât\": \"empêch\",\n  \"empêche\": \"empêch\",\n  \"empêché\": \"empêch\",\n  \"empêchée\": \"empêch\",\n  \"empêchent\": \"empêchent\",\n  \"empêcher\": \"empêch\",\n  \"empêchera\": \"empêch\",\n  \"empêcherai\": \"empêch\",\n  \"empêcheraient\": \"empêch\",\n  \"empêcherait\": \"empêch\",\n  \"empêchèrent\": \"empêch\",\n  \"empêcheront\": \"empêch\",\n  \"empêches\": \"empêch\",\n  \"empêchez\": \"empêch\",\n  \"empereur\": \"empereur\",\n  \"empereurs\": \"empereur\",\n  \"empesé\": \"empes\",\n  \"empestée\": \"empest\",\n  \"empêtrés\": \"empêtr\",\n  \"emphase\": \"emphas\",\n  \"emphatique\": \"emphat\",\n  \"emphatiques\": \"emphat\",\n  \"empilé\": \"empil\",\n  \"empir\": \"empir\",\n  \"empire\": \"empir\",\n  \"empires\": \"empir\",\n  \"emplacement\": \"emplac\",\n  \"emplettes\": \"emplet\",\n  \"emplissent\": \"emplissent\",\n  \"emploi\": \"emploi\",\n  \"emploie\": \"emploi\",\n  \"emploient\": \"emploient\",\n  \"emploierai\": \"emploi\",\n  \"emploieraient\": \"emploi\",\n  \"emploierais\": \"emploi\",\n  \"emploierait\": \"emploi\",\n  \"emplois\": \"emplois\",\n  \"employa\": \"emploi\",\n  \"employaient\": \"emploi\",\n  \"employait\": \"emploi\",\n  \"employant\": \"emploi\",\n  \"employât\": \"emploi\",\n  \"employâtes\": \"emploi\",\n  \"employé\": \"emploi\",\n  \"employée\": \"emploi\",\n  \"employées\": \"emploi\",\n  \"employer\": \"emploi\",\n  \"employés\": \"emploi\",\n  \"employez\": \"emploi\",\n  \"emplumés\": \"emplum\",\n  \"empoché\": \"empoch\",\n  \"empoigné\": \"empoign\",\n  \"empoignera\": \"empoign\",\n  \"empoisonna\": \"empoison\",\n  \"empoisonnaient\": \"empoison\",\n  \"empoisonnait\": \"empoison\",\n  \"empoisonne\": \"empoison\",\n  \"empoisonné\": \"empoison\",\n  \"empoisonnée\": \"empoison\",\n  \"empoisonnement\": \"empoison\",\n  \"empoisonnent\": \"empoisonnent\",\n  \"empoisonner\": \"empoison\",\n  \"empoisonnerai\": \"empoison\",\n  \"empoisonnerait\": \"empoison\",\n  \"empoisonnés\": \"empoison\",\n  \"empoisonneur\": \"empoisonneur\",\n  \"empoisonneurs\": \"empoisonneur\",\n  \"emporta\": \"emport\",\n  \"emportaient\": \"emport\",\n  \"emportait\": \"emport\",\n  \"emportant\": \"emport\",\n  \"emporte\": \"emport\",\n  \"emporté\": \"emport\",\n  \"emportée\": \"emport\",\n  \"emportées\": \"emport\",\n  \"emportement\": \"emport\",\n  \"emportent\": \"emportent\",\n  \"emporter\": \"emport\",\n  \"emporterait\": \"emport\",\n  \"emporterez\": \"emport\",\n  \"emporteront\": \"emport\",\n  \"emportés\": \"emport\",\n  \"empreinte\": \"empreint\",\n  \"empressa\": \"empress\",\n  \"empressé\": \"empress\",\n  \"empressée\": \"empress\",\n  \"empressées\": \"empress\",\n  \"empressement\": \"empress\",\n  \"empressements\": \"empress\",\n  \"empressèrent\": \"empress\",\n  \"empressés\": \"empress\",\n  \"emprisonne\": \"emprison\",\n  \"emprisonné\": \"emprison\",\n  \"emprisonnée\": \"emprison\",\n  \"emprisonnement\": \"emprison\",\n  \"emprunt\": \"emprunt\",\n  \"emprunta\": \"emprunt\",\n  \"emprunté\": \"emprunt\",\n  \"emprunter\": \"emprunt\",\n  \"empruntés\": \"emprunt\",\n  \"ému\": \"ému\",\n  \"émue\": \"ému\",\n  \"émule\": \"émul\",\n  \"émurent\": \"émurent\",\n  \"émus\": \"émus\",\n  \"émut\": \"émut\",\n  \"en\": \"en\",\n  \"encablure\": \"encablur\",\n  \"encadre\": \"encadr\",\n  \"encadré\": \"encadr\",\n  \"encadrées\": \"encadr\",\n  \"enceinte\": \"enceint\",\n  \"encens\": \"encen\",\n  \"enchaîné\": \"enchaîn\",\n  \"enchaînée\": \"enchaîn\",\n  \"enchaînés\": \"enchaîn\",\n  \"enchantait\": \"enchant\",\n  \"enchanté\": \"enchant\",\n  \"enchantée\": \"enchant\",\n  \"enchantement\": \"enchant\",\n  \"enchanter\": \"enchant\",\n  \"enchanteresses\": \"enchanteress\",\n  \"enchantés\": \"enchant\",\n  \"enchanteur\": \"enchanteur\",\n  \"enchanteurs\": \"enchanteur\",\n  \"enchâsser\": \"enchâss\",\n  \"enchère\": \"encher\",\n  \"enchères\": \"encher\",\n  \"enclos\": \"enclos\",\n  \"enclume\": \"enclum\",\n  \"encolure\": \"encolur\",\n  \"encombraient\": \"encombr\",\n  \"encombrant\": \"encombr\",\n  \"encombrante\": \"encombr\",\n  \"encombre\": \"encombr\",\n  \"encombré\": \"encombr\",\n  \"encombrée\": \"encombr\",\n  \"encombrées\": \"encombr\",\n  \"encombrés\": \"encombr\",\n  \"encore\": \"encor\",\n  \"encouragé\": \"encourag\",\n  \"encourageante\": \"encourag\",\n  \"encouragement\": \"encourag\",\n  \"encourager\": \"encourag\",\n  \"encouragés\": \"encourag\",\n  \"encourir\": \"encour\",\n  \"encouru\": \"encouru\",\n  \"encrassaient\": \"encrass\",\n  \"encre\": \"encre\",\n  \"encroûtées\": \"encroût\",\n  \"encyclopédie\": \"encycloped\",\n  \"endoctriné\": \"endoctrin\",\n  \"endommagé\": \"endommag\",\n  \"endormi\": \"endorm\",\n  \"endormir\": \"endorm\",\n  \"endormis\": \"endorm\",\n  \"endormit\": \"endorm\",\n  \"endors\": \"endor\",\n  \"endossé\": \"endoss\",\n  \"endosser\": \"endoss\",\n  \"endroit\": \"endroit\",\n  \"endroits\": \"endroit\",\n  \"enduisirent\": \"enduis\",\n  \"enduraient\": \"endur\",\n  \"endurant\": \"endur\",\n  \"endurci\": \"endurc\",\n  \"endurcie\": \"endurc\",\n  \"endurées\": \"endur\",\n  \"énergie\": \"énerg\",\n  \"énergique\": \"énerg\",\n  \"énergumène\": \"énergumen\",\n  \"énergumènes\": \"énergumen\",\n  \"énervé\": \"énerv\",\n  \"énervée\": \"énerv\",\n  \"énerver\": \"énerv\",\n  \"enfance\": \"enfanc\",\n  \"enfant\": \"enfant\",\n  \"enfantillage\": \"enfantillag\",\n  \"enfantillages\": \"enfantillag\",\n  \"enfantine\": \"enfantin\",\n  \"enfantines\": \"enfantin\",\n  \"enfants\": \"enfant\",\n  \"enfer\": \"enfer\",\n  \"enferma\": \"enferm\",\n  \"enfermais\": \"enferm\",\n  \"enfermait\": \"enferm\",\n  \"enfermant\": \"enferm\",\n  \"enferme\": \"enferm\",\n  \"enfermé\": \"enferm\",\n  \"enfermée\": \"enferm\",\n  \"enfermer\": \"enferm\",\n  \"enfermèrent\": \"enferm\",\n  \"enfermés\": \"enferm\",\n  \"enferrer\": \"enferr\",\n  \"enfers\": \"enfer\",\n  \"enfield\": \"enfield\",\n  \"enfin\": \"enfin\",\n  \"enflamma\": \"enflamm\",\n  \"enflammé\": \"enflamm\",\n  \"enflammée\": \"enflamm\",\n  \"enflammées\": \"enflamm\",\n  \"enflammer\": \"enflamm\",\n  \"enflammèrent\": \"enflamm\",\n  \"enflammés\": \"enflamm\",\n  \"enflée\": \"enflé\",\n  \"enflées\": \"enflé\",\n  \"enfonça\": \"enfonc\",\n  \"enfonçaient\": \"enfonc\",\n  \"enfonçait\": \"enfonc\",\n  \"enfonçât\": \"enfonc\",\n  \"enfonce\": \"enfonc\",\n  \"enfoncer\": \"enfonc\",\n  \"enfonceront\": \"enfonc\",\n  \"enfouis\": \"enfou\",\n  \"enfourcher\": \"enfourch\",\n  \"enfui\": \"enfui\",\n  \"enfuie\": \"enfui\",\n  \"enfuir\": \"enfuir\",\n  \"enfuirai\": \"enfuir\",\n  \"enfuis\": \"enfuis\",\n  \"enfuit\": \"enfuit\",\n  \"enfumé\": \"enfum\",\n  \"enfuyaient\": \"enfui\",\n  \"enfuyait\": \"enfui\",\n  \"engage\": \"engag\",\n  \"engagé\": \"engag\",\n  \"engagea\": \"engag\",\n  \"engageaient\": \"engag\",\n  \"engageait\": \"engag\",\n  \"engageant\": \"engag\",\n  \"engagée\": \"engag\",\n  \"engagées\": \"engag\",\n  \"engagement\": \"engag\",\n  \"engagements\": \"engag\",\n  \"engagent\": \"engagent\",\n  \"engager\": \"engag\",\n  \"engagerai\": \"engag\",\n  \"engeance\": \"engeanc\",\n  \"engendre\": \"engendr\",\n  \"engine\": \"engin\",\n  \"england\": \"england\",\n  \"englishman\": \"englishman\",\n  \"engloutir\": \"englout\",\n  \"engoués\": \"engou\",\n  \"engouffrées\": \"engouffr\",\n  \"engourdis\": \"engourd\",\n  \"engourdissement\": \"engourd\",\n  \"énigmatique\": \"énigmat\",\n  \"énigme\": \"énigm\",\n  \"enivraient\": \"enivr\",\n  \"enivré\": \"enivr\",\n  \"enivrée\": \"enivr\",\n  \"enivrées\": \"enivr\",\n  \"enivrer\": \"enivr\",\n  \"enjambée\": \"enjamb\",\n  \"enjeu\": \"enjeu\",\n  \"enjouement\": \"enjou\",\n  \"enleva\": \"enlev\",\n  \"enlevaient\": \"enlev\",\n  \"enlevait\": \"enlev\",\n  \"enlevât\": \"enlev\",\n  \"enlève\": \"enlev\",\n  \"enlevé\": \"enlev\",\n  \"enlevée\": \"enlev\",\n  \"enlevées\": \"enlev\",\n  \"enlèvement\": \"enlev\",\n  \"enlèvent\": \"enlèvent\",\n  \"enlever\": \"enlev\",\n  \"enlèverais\": \"enlev\",\n  \"enlevèrent\": \"enlev\",\n  \"enlèverez\": \"enlev\",\n  \"enlevez\": \"enlev\",\n  \"enluminée\": \"enlumin\",\n  \"ennemi\": \"ennem\",\n  \"ennemie\": \"ennem\",\n  \"ennemis\": \"ennem\",\n  \"ennius\": \"ennius\",\n  \"ennnui\": \"ennnui\",\n  \"ennui\": \"ennui\",\n  \"ennuie\": \"ennui\",\n  \"ennuient\": \"ennuient\",\n  \"ennuiera\": \"ennui\",\n  \"ennuierais\": \"ennui\",\n  \"ennuierait\": \"ennui\",\n  \"ennuieront\": \"ennui\",\n  \"ennuies\": \"ennui\",\n  \"ennuis\": \"ennuis\",\n  \"ennuya\": \"ennui\",\n  \"ennuyaient\": \"ennui\",\n  \"ennuyais\": \"ennui\",\n  \"ennuyait\": \"ennui\",\n  \"ennuyant\": \"ennui\",\n  \"ennuyé\": \"ennui\",\n  \"ennuyée\": \"ennui\",\n  \"ennuyer\": \"ennui\",\n  \"ennuyés\": \"ennui\",\n  \"ennuyeuse\": \"ennui\",\n  \"ennuyeusement\": \"ennui\",\n  \"ennuyeuses\": \"ennui\",\n  \"ennuyeux\": \"ennui\",\n  \"ennuyez\": \"ennui\",\n  \"énonçait\": \"énonc\",\n  \"énoncé\": \"énonc\",\n  \"énoncer\": \"énonc\",\n  \"enorgueilli\": \"enorgueil\",\n  \"énorme\": \"énorm\",\n  \"énormes\": \"énorm\",\n  \"énormité\": \"énorm\",\n  \"enquérait\": \"enquer\",\n  \"enquête\": \"enquêt\",\n  \"enraciner\": \"enracin\",\n  \"enragé\": \"enrag\",\n  \"enragés\": \"enrag\",\n  \"enrayer\": \"enrai\",\n  \"enrayés\": \"enrai\",\n  \"enrégimentés\": \"enrégiment\",\n  \"enregistrement\": \"enregistr\",\n  \"enregistrer\": \"enregistr\",\n  \"enrhumaient\": \"enrhum\",\n  \"enrhumé\": \"enrhum\",\n  \"enrichi\": \"enrich\",\n  \"enrichir\": \"enrich\",\n  \"enrichis\": \"enrich\",\n  \"enrichissait\": \"enrich\",\n  \"enrichissent\": \"enrich\",\n  \"enrichit\": \"enrich\",\n  \"enrouaient\": \"enrou\",\n  \"enroulait\": \"enroul\",\n  \"enroulant\": \"enroul\",\n  \"ensachés\": \"ensach\",\n  \"ensanglanté\": \"ensanglant\",\n  \"enseignait\": \"enseign\",\n  \"enseigne\": \"enseign\",\n  \"enseigné\": \"enseign\",\n  \"enseignées\": \"enseign\",\n  \"enseignements\": \"enseign\",\n  \"enseignent\": \"enseignent\",\n  \"enseigner\": \"enseign\",\n  \"enseignera\": \"enseign\",\n  \"ensemble\": \"ensembl\",\n  \"enserrer\": \"enserr\",\n  \"ensevelir\": \"ensevel\",\n  \"ensorcela\": \"ensorcel\",\n  \"ensuit\": \"ensuit\",\n  \"ensuite\": \"ensuit\",\n  \"ensuivit\": \"ensuiv\",\n  \"entachés\": \"entach\",\n  \"entama\": \"entam\",\n  \"entame\": \"entam\",\n  \"entamée\": \"entam\",\n  \"entamer\": \"entam\",\n  \"entasse\": \"entass\",\n  \"entassée\": \"entass\",\n  \"entassent\": \"entassent\",\n  \"entend\": \"entend\",\n  \"entendaient\": \"entend\",\n  \"entendais\": \"entend\",\n  \"entendait\": \"entend\",\n  \"entendant\": \"entend\",\n  \"entendent\": \"entendent\",\n  \"entendez\": \"entend\",\n  \"entendirent\": \"entend\",\n  \"entendit\": \"entend\",\n  \"entendît\": \"entend\",\n  \"entendra\": \"entendr\",\n  \"entendrait\": \"entendr\",\n  \"entendre\": \"entendr\",\n  \"entendrez\": \"entendr\",\n  \"entendrons\": \"entendron\",\n  \"entends\": \"entend\",\n  \"entendu\": \"entendu\",\n  \"entendue\": \"entendu\",\n  \"entendus\": \"entendus\",\n  \"enterrer\": \"enterr\",\n  \"enterrez\": \"enterr\",\n  \"entêté\": \"entêt\",\n  \"enthousiasmait\": \"enthousiasm\",\n  \"enthousiasme\": \"enthousiasm\",\n  \"enthousiasmé\": \"enthousiasm\",\n  \"enthousiasmées\": \"enthousiasm\",\n  \"enthousiaste\": \"enthousiast\",\n  \"enthousiastes\": \"enthousiast\",\n  \"entiché\": \"entich\",\n  \"entier\": \"enti\",\n  \"entière\": \"entier\",\n  \"entièrement\": \"entier\",\n  \"entières\": \"entier\",\n  \"entiers\": \"entier\",\n  \"entomologique\": \"entomolog\",\n  \"entonnant\": \"enton\",\n  \"entonné\": \"enton\",\n  \"entonner\": \"enton\",\n  \"entortiller\": \"entortill\",\n  \"entortillés\": \"entortill\",\n  \"entour\": \"entour\",\n  \"entoura\": \"entour\",\n  \"entouraient\": \"entour\",\n  \"entourait\": \"entour\",\n  \"entoure\": \"entour\",\n  \"entouré\": \"entour\",\n  \"entourée\": \"entour\",\n  \"entourées\": \"entour\",\n  \"entourent\": \"entourent\",\n  \"entourés\": \"entour\",\n  \"entra\": \"entra\",\n  \"entrai\": \"entrai\",\n  \"entraient\": \"entraient\",\n  \"entrailles\": \"entraill\",\n  \"entraîna\": \"entraîn\",\n  \"entraînait\": \"entraîn\",\n  \"entraînant\": \"entraîn\",\n  \"entraîne\": \"entraîn\",\n  \"entraîné\": \"entraîn\",\n  \"entraînée\": \"entraîn\",\n  \"entraînement\": \"entraîn\",\n  \"entraîner\": \"entraîn\",\n  \"entraînera\": \"entraîn\",\n  \"entraînés\": \"entraîn\",\n  \"entrait\": \"entrait\",\n  \"entrant\": \"entrant\",\n  \"entraves\": \"entrav\",\n  \"entre\": \"entre\",\n  \"entré\": \"entré\",\n  \"entrecoupée\": \"entrecoup\",\n  \"entrecoupées\": \"entrecoup\",\n  \"entrée\": \"entré\",\n  \"entrées\": \"entré\",\n  \"entrefaites\": \"entrefait\",\n  \"entrelacement\": \"entrelac\",\n  \"entremêlées\": \"entremêl\",\n  \"entremêlés\": \"entremêl\",\n  \"entremets\": \"entremet\",\n  \"entremettre\": \"entremettr\",\n  \"entremise\": \"entremis\",\n  \"entrent\": \"entrent\",\n  \"entrepôts\": \"entrepôt\",\n  \"entreprenait\": \"entrepren\",\n  \"entreprenant\": \"entrepren\",\n  \"entreprend\": \"entreprend\",\n  \"entreprendre\": \"entreprendr\",\n  \"entrepreneur\": \"entrepreneur\",\n  \"entrepris\": \"entrepr\",\n  \"entreprise\": \"entrepris\",\n  \"entreprises\": \"entrepris\",\n  \"entreprit\": \"entrepr\",\n  \"entrer\": \"entrer\",\n  \"entreraient\": \"entrer\",\n  \"entreras\": \"entrer\",\n  \"entrèrent\": \"entrèrent\",\n  \"entrés\": \"entré\",\n  \"entresol\": \"entresol\",\n  \"entretenait\": \"entreten\",\n  \"entretenir\": \"entreten\",\n  \"entretenu\": \"entretenu\",\n  \"entretenus\": \"entretenus\",\n  \"entretien\": \"entretien\",\n  \"entretiens\": \"entretien\",\n  \"entretient\": \"entretient\",\n  \"entretinrent\": \"entretinrent\",\n  \"entretint\": \"entretint\",\n  \"entrevit\": \"entrev\",\n  \"entrevoir\": \"entrevoir\",\n  \"entrevois\": \"entrevois\",\n  \"entrevoit\": \"entrevoit\",\n  \"entrevoyaient\": \"entrevoi\",\n  \"entrevoyait\": \"entrevoi\",\n  \"entrevoyant\": \"entrevoi\",\n  \"entrevu\": \"entrevu\",\n  \"entrevue\": \"entrevu\",\n  \"entrevues\": \"entrevu\",\n  \"entrez\": \"entrez\",\n  \"entrons\": \"entron\",\n  \"entrouverte\": \"entrouvert\",\n  \"entrouvrant\": \"entrouvr\",\n  \"énumération\": \"énumer\",\n  \"envahi\": \"envah\",\n  \"envahie\": \"envah\",\n  \"envahir\": \"envah\",\n  \"envahissaient\": \"envah\",\n  \"envahit\": \"envah\",\n  \"enveloppaient\": \"envelopp\",\n  \"enveloppait\": \"envelopp\",\n  \"enveloppe\": \"envelopp\",\n  \"enveloppé\": \"envelopp\",\n  \"enveloppée\": \"envelopp\",\n  \"envelopper\": \"envelopp\",\n  \"enveloppes\": \"envelopp\",\n  \"envenimée\": \"envenim\",\n  \"enverguait\": \"envergu\",\n  \"envergure\": \"envergur\",\n  \"enverra\": \"enverr\",\n  \"enverrai\": \"enverr\",\n  \"enverrais\": \"enverr\",\n  \"enverras\": \"enverr\",\n  \"enverrez\": \"enverr\",\n  \"envers\": \"enver\",\n  \"envi\": \"envi\",\n  \"enviable\": \"enviabl\",\n  \"enviait\": \"envi\",\n  \"enviant\": \"envi\",\n  \"envie\": \"envi\",\n  \"envié\": \"envi\",\n  \"enviée\": \"envi\",\n  \"envieux\": \"envieux\",\n  \"environ\": \"environ\",\n  \"environnaient\": \"environ\",\n  \"environnait\": \"environ\",\n  \"environnantes\": \"environ\",\n  \"environne\": \"environ\",\n  \"environné\": \"environ\",\n  \"environnée\": \"environ\",\n  \"environnent\": \"environnent\",\n  \"environner\": \"environ\",\n  \"environnés\": \"environ\",\n  \"environs\": \"environ\",\n  \"envisageons\": \"envisageon\",\n  \"envisager\": \"envisag\",\n  \"envisagez\": \"envisag\",\n  \"envoi\": \"envoi\",\n  \"envoie\": \"envoi\",\n  \"envola\": \"envol\",\n  \"envolant\": \"envol\",\n  \"envole\": \"envol\",\n  \"envolées\": \"envol\",\n  \"envoler\": \"envol\",\n  \"envolés\": \"envol\",\n  \"envoya\": \"envoi\",\n  \"envoyaient\": \"envoi\",\n  \"envoyait\": \"envoi\",\n  \"envoyant\": \"envoi\",\n  \"envoyât\": \"envoi\",\n  \"envoyâtes\": \"envoi\",\n  \"envoyé\": \"envoi\",\n  \"envoyée\": \"envoi\",\n  \"envoyées\": \"envoi\",\n  \"envoyer\": \"envoi\",\n  \"envoyés\": \"envoi\",\n  \"envoyez\": \"envoi\",\n  \"éolienne\": \"éolien\",\n  \"épagneul\": \"épagneul\",\n  \"épais\": \"épais\",\n  \"épaisse\": \"épaiss\",\n  \"épaisseur\": \"épaisseur\",\n  \"épanchement\": \"épanch\",\n  \"épanouir\": \"épanou\",\n  \"épanouissaient\": \"épanou\",\n  \"épanouissait\": \"épanou\",\n  \"épanouissement\": \"épanou\",\n  \"épanouit\": \"épanou\",\n  \"épargna\": \"épargn\",\n  \"épargnait\": \"épargn\",\n  \"épargne\": \"épargn\",\n  \"épargné\": \"épargn\",\n  \"épargnée\": \"épargn\",\n  \"épargner\": \"épargn\",\n  \"épargnera\": \"épargn\",\n  \"épargnerait\": \"épargn\",\n  \"épargnez\": \"épargn\",\n  \"épargniez\": \"épargn\",\n  \"éparses\": \"épars\",\n  \"éparvérés\": \"éparver\",\n  \"épaule\": \"épaul\",\n  \"épaules\": \"épaul\",\n  \"épaulés\": \"épaul\",\n  \"épaulettes\": \"épaulet\",\n  \"épée\": \"épé\",\n  \"épées\": \"épé\",\n  \"éperdu\": \"éperdu\",\n  \"éperdue\": \"éperdu\",\n  \"éperdument\": \"éperdu\",\n  \"éperon\": \"éperon\",\n  \"éperons\": \"éperon\",\n  \"épervier\": \"épervi\",\n  \"éperviers\": \"épervi\",\n  \"éphémère\": \"éphémer\",\n  \"épia\": \"épi\",\n  \"épiait\": \"épi\",\n  \"épicée\": \"épic\",\n  \"épiciers\": \"épici\",\n  \"épiderme\": \"épiderm\",\n  \"épie\": \"épi\",\n  \"épient\": \"épient\",\n  \"épier\": \"épi\",\n  \"épigrammatique\": \"épigrammat\",\n  \"épigramme\": \"épigramm\",\n  \"épigrammes\": \"épigramm\",\n  \"épine\": \"épin\",\n  \"épines\": \"épin\",\n  \"épineuses\": \"épin\",\n  \"épingle\": \"épingl\",\n  \"épingles\": \"épingl\",\n  \"épique\": \"épiqu\",\n  \"épis\": \"épis\",\n  \"épiscopal\": \"épiscopal\",\n  \"épiscopat\": \"épiscopat\",\n  \"épisode\": \"épisod\",\n  \"épitaphe\": \"épitaph\",\n  \"épithète\": \"épithet\",\n  \"épître\": \"épîtr\",\n  \"époque\": \"époqu\",\n  \"époques\": \"époqu\",\n  \"épousa\": \"épous\",\n  \"épousait\": \"épous\",\n  \"épousant\": \"épous\",\n  \"épouse\": \"épous\",\n  \"épousé\": \"épous\",\n  \"épousée\": \"épous\",\n  \"épousées\": \"épous\",\n  \"épouser\": \"épous\",\n  \"épousera\": \"épous\",\n  \"épouserai\": \"épous\",\n  \"épouserez\": \"épous\",\n  \"épouseur\": \"épouseur\",\n  \"épousez\": \"épous\",\n  \"épousseter\": \"épousset\",\n  \"épouvantable\": \"épouvant\",\n  \"épouvantablement\": \"épouvant\",\n  \"épouvantables\": \"épouvant\",\n  \"épouvantaient\": \"épouvant\",\n  \"épouvante\": \"épouv\",\n  \"épouvantée\": \"épouvant\",\n  \"épouvantements\": \"épouvant\",\n  \"époux\": \"époux\",\n  \"épreuve\": \"épreuv\",\n  \"épreuves\": \"épreuv\",\n  \"épris\": \"épris\",\n  \"éprise\": \"épris\",\n  \"éprouva\": \"éprouv\",\n  \"éprouvai\": \"éprouv\",\n  \"éprouvait\": \"éprouv\",\n  \"éprouvant\": \"éprouv\",\n  \"éprouve\": \"éprouv\",\n  \"éprouvé\": \"éprouv\",\n  \"éprouvée\": \"éprouv\",\n  \"éprouvées\": \"éprouv\",\n  \"éprouvent\": \"éprouvent\",\n  \"éprouver\": \"éprouv\",\n  \"éprouverais\": \"éprouv\",\n  \"éprouverait\": \"éprouv\",\n  \"éprouvés\": \"éprouv\",\n  \"épuisait\": \"épuis\",\n  \"épuisé\": \"épuis\",\n  \"épuisée\": \"épuis\",\n  \"épuisement\": \"épuis\",\n  \"épuisèrent\": \"épuis\",\n  \"équarrir\": \"équarr\",\n  \"équarrissaient\": \"équarr\",\n  \"équilibre\": \"équilibr\",\n  \"équilibré\": \"équilibr\",\n  \"équilibristes\": \"équilibr\",\n  \"equinoctial\": \"equinoctial\",\n  \"équinoxe\": \"équinox\",\n  \"équinoxes\": \"équinox\",\n  \"équipage\": \"équipag\",\n  \"équipé\": \"équip\",\n  \"équipée\": \"équip\",\n  \"équité\": \"équit\",\n  \"équivalait\": \"équival\",\n  \"équivoques\": \"équivoqu\",\n  \"equus\": \"equus\",\n  \"er\": \"er\",\n  \"éreinté\": \"éreint\",\n  \"ériger\": \"érig\",\n  \"erit\": \"erit\",\n  \"ermitages\": \"ermitag\",\n  \"ernest\": \"ernest\",\n  \"erra\": \"erra\",\n  \"erraient\": \"erraient\",\n  \"errait\": \"errait\",\n  \"errant\": \"errant\",\n  \"errante\": \"errant\",\n  \"erré\": \"erré\",\n  \"errer\": \"errer\",\n  \"erreur\": \"erreur\",\n  \"erreurs\": \"erreur\",\n  \"es\": \"e\",\n  \"escadron\": \"escadron\",\n  \"escaladé\": \"escalad\",\n  \"escalader\": \"escalad\",\n  \"escale\": \"escal\",\n  \"escalier\": \"escali\",\n  \"escaliers\": \"escali\",\n  \"escamotée\": \"escamot\",\n  \"escamoter\": \"escamot\",\n  \"escapade\": \"escapad\",\n  \"escarpés\": \"escarp\",\n  \"escarpins\": \"escarpin\",\n  \"escaut\": \"escaut\",\n  \"esclandre\": \"esclandr\",\n  \"esclave\": \"esclav\",\n  \"esclaves\": \"esclav\",\n  \"escofié\": \"escofi\",\n  \"escogriffe\": \"escogriff\",\n  \"escortaient\": \"escort\",\n  \"escorte\": \"escort\",\n  \"escorté\": \"escort\",\n  \"escortée\": \"escort\",\n  \"escouade\": \"escouad\",\n  \"escrime\": \"escrim\",\n  \"escrit\": \"escrit\",\n  \"espace\": \"espac\",\n  \"espaces\": \"espac\",\n  \"espagne\": \"espagn\",\n  \"espagnol\": \"espagnol\",\n  \"espagnole\": \"espagnol\",\n  \"espagnoles\": \"espagnol\",\n  \"espagnolette\": \"espagnolet\",\n  \"espagnols\": \"espagnol\",\n  \"esparres\": \"esparr\",\n  \"espèce\": \"espec\",\n  \"espèces\": \"espec\",\n  \"espéra\": \"esper\",\n  \"espérais\": \"esper\",\n  \"espérait\": \"esper\",\n  \"espérance\": \"esper\",\n  \"espérances\": \"esper\",\n  \"espérant\": \"esper\",\n  \"espère\": \"esper\",\n  \"espéré\": \"esper\",\n  \"espérée\": \"esper\",\n  \"espérer\": \"esper\",\n  \"espères\": \"esper\",\n  \"espérez\": \"esper\",\n  \"espérons\": \"espéron\",\n  \"espiègle\": \"espiegl\",\n  \"espion\": \"espion\",\n  \"espionnage\": \"espionnag\",\n  \"espionné\": \"espion\",\n  \"espionnes\": \"espion\",\n  \"espions\": \"espion\",\n  \"esplanade\": \"esplanad\",\n  \"espoir\": \"espoir\",\n  \"esprit\": \"esprit\",\n  \"esprits\": \"esprit\",\n  \"esq\": \"esq\",\n  \"esquire\": \"esquir\",\n  \"esquisse\": \"esquiss\",\n  \"esquisser\": \"esquiss\",\n  \"esquiva\": \"esquiv\",\n  \"esquiveras\": \"esquiv\",\n  \"essai\": \"essai\",\n  \"essaiera\": \"essai\",\n  \"essaierai\": \"essai\",\n  \"essaierait\": \"essai\",\n  \"essais\": \"essais\",\n  \"essaya\": \"essai\",\n  \"essayaient\": \"essai\",\n  \"essayait\": \"essai\",\n  \"essayant\": \"essai\",\n  \"essaye\": \"essay\",\n  \"essayé\": \"essai\",\n  \"essayées\": \"essai\",\n  \"essayer\": \"essai\",\n  \"essayons\": \"essayon\",\n  \"essence\": \"essenc\",\n  \"essences\": \"essenc\",\n  \"essentiel\": \"essentiel\",\n  \"essentielle\": \"essentiel\",\n  \"essentiellement\": \"essentiel\",\n  \"essieux\": \"essieux\",\n  \"essoufflé\": \"essouffl\",\n  \"essoufflée\": \"essouffl\",\n  \"essuie\": \"essui\",\n  \"essuyait\": \"essui\",\n  \"essuyé\": \"essui\",\n  \"essuyer\": \"essui\",\n  \"est\": \"est\",\n  \"estafette\": \"estafet\",\n  \"estafier\": \"estafi\",\n  \"estafiers\": \"estafi\",\n  \"estampe\": \"estamp\",\n  \"estampes\": \"estamp\",\n  \"estimable\": \"estim\",\n  \"estimables\": \"estim\",\n  \"estimaient\": \"estim\",\n  \"estimait\": \"estim\",\n  \"estimant\": \"estim\",\n  \"estime\": \"estim\",\n  \"estimé\": \"estim\",\n  \"estimée\": \"estim\",\n  \"estimer\": \"estim\",\n  \"estimeraient\": \"estim\",\n  \"estimez\": \"estim\",\n  \"estomac\": \"estomac\",\n  \"estomacs\": \"estomac\",\n  \"et\": \"et\",\n  \"établi\": \"établ\",\n  \"établie\": \"établ\",\n  \"établies\": \"établ\",\n  \"établir\": \"établ\",\n  \"établira\": \"établ\",\n  \"établirent\": \"établ\",\n  \"établirez\": \"établ\",\n  \"établis\": \"établ\",\n  \"établissaient\": \"établ\",\n  \"établissait\": \"établ\",\n  \"établissant\": \"établ\",\n  \"établissement\": \"établ\",\n  \"établissements\": \"établ\",\n  \"établit\": \"établ\",\n  \"étage\": \"étag\",\n  \"étagea\": \"étag\",\n  \"étageaient\": \"étag\",\n  \"étages\": \"étag\",\n  \"étai\": \"étai\",\n  \"étaie\": \"étai\",\n  \"etaient\": \"etaient\",\n  \"étaient\": \"étaient\",\n  \"étain\": \"étain\",\n  \"étais\": \"étais\",\n  \"etait\": \"etait\",\n  \"était\": \"était\",\n  \"étalage\": \"étalag\",\n  \"étalages\": \"étalag\",\n  \"étalait\": \"étal\",\n  \"étalant\": \"étal\",\n  \"étale\": \"étal\",\n  \"étalé\": \"étal\",\n  \"étalée\": \"étal\",\n  \"étaler\": \"étal\",\n  \"étalés\": \"étal\",\n  \"étancher\": \"étanch\",\n  \"étang\": \"étang\",\n  \"étangs\": \"étang\",\n  \"etant\": \"etant\",\n  \"étant\": \"étant\",\n  \"étarquée\": \"étarqu\",\n  \"etat\": \"etat\",\n  \"état\": \"état\",\n  \"etats\": \"etat\",\n  \"états\": \"état\",\n  \"étaux\": \"étal\",\n  \"étayé\": \"étai\",\n  \"etc\": \"etc\",\n  \"été\": \"été\",\n  \"éteignaient\": \"éteign\",\n  \"éteignait\": \"éteign\",\n  \"éteignirent\": \"éteign\",\n  \"éteignit\": \"éteign\",\n  \"éteindra\": \"éteindr\",\n  \"éteindre\": \"éteindr\",\n  \"éteindrons\": \"éteindron\",\n  \"éteint\": \"éteint\",\n  \"éteinte\": \"éteint\",\n  \"éteints\": \"éteint\",\n  \"étend\": \"étend\",\n  \"étendaient\": \"étend\",\n  \"étendait\": \"étend\",\n  \"étendant\": \"étend\",\n  \"étendent\": \"étendent\",\n  \"étendirent\": \"étend\",\n  \"étendit\": \"étend\",\n  \"étendre\": \"étendr\",\n  \"étendu\": \"étendu\",\n  \"étendue\": \"étendu\",\n  \"étendues\": \"étendu\",\n  \"étendus\": \"étendus\",\n  \"éternel\": \"éternel\",\n  \"éternelle\": \"éternel\",\n  \"éternelles\": \"éternel\",\n  \"éternels\": \"éternel\",\n  \"éternité\": \"étern\",\n  \"êtes\": \"ête\",\n  \"ethnographiques\": \"ethnograph\",\n  \"étienne\": \"étien\",\n  \"étiez\": \"éti\",\n  \"étincelante\": \"étincel\",\n  \"étincelants\": \"étincel\",\n  \"étincelle\": \"étincel\",\n  \"étincelles\": \"étincel\",\n  \"étiole\": \"étiol\",\n  \"étiolés\": \"étiol\",\n  \"étions\": \"étion\",\n  \"étiquette\": \"étiquet\",\n  \"étoffe\": \"étoff\",\n  \"étoffes\": \"étoff\",\n  \"étoile\": \"étoil\",\n  \"étoilé\": \"étoil\",\n  \"étoiles\": \"étoil\",\n  \"étonna\": \"éton\",\n  \"étonnaient\": \"éton\",\n  \"étonnait\": \"éton\",\n  \"étonnant\": \"éton\",\n  \"étonnante\": \"éton\",\n  \"étonnantes\": \"éton\",\n  \"étonnants\": \"éton\",\n  \"étonne\": \"éton\",\n  \"étonné\": \"éton\",\n  \"étonnée\": \"éton\",\n  \"étonnées\": \"éton\",\n  \"étonnement\": \"éton\",\n  \"étonnent\": \"étonnent\",\n  \"étonner\": \"éton\",\n  \"étonnera\": \"éton\",\n  \"étonnerait\": \"éton\",\n  \"étonnèrent\": \"éton\",\n  \"étonnés\": \"éton\",\n  \"étouffaient\": \"étouff\",\n  \"étouffait\": \"étouff\",\n  \"étouffe\": \"étouff\",\n  \"étouffé\": \"étouff\",\n  \"étouffée\": \"étouff\",\n  \"étouffer\": \"étouff\",\n  \"étourderie\": \"étourder\",\n  \"étourderies\": \"étourder\",\n  \"étourdi\": \"étourd\",\n  \"étourdie\": \"étourd\",\n  \"étourdiment\": \"étourd\",\n  \"étourdir\": \"étourd\",\n  \"étourdissait\": \"étourd\",\n  \"étourdissement\": \"étourd\",\n  \"étourdit\": \"étourd\",\n  \"étrange\": \"étrang\",\n  \"étrangement\": \"étrang\",\n  \"étranger\": \"étrang\",\n  \"étrangère\": \"étranger\",\n  \"étrangères\": \"étranger\",\n  \"étrangers\": \"étranger\",\n  \"étranges\": \"étrang\",\n  \"étrangeté\": \"étranget\",\n  \"étranglaient\": \"étrangl\",\n  \"étrangler\": \"étrangl\",\n  \"etrangleurs\": \"etrangleur\",\n  \"étrave\": \"étrav\",\n  \"etre\": \"etre\",\n  \"être\": \"être\",\n  \"étreignit\": \"étreign\",\n  \"étreinte\": \"étreint\",\n  \"êtres\": \"être\",\n  \"étrier\": \"étri\",\n  \"étriers\": \"étrier\",\n  \"étrille\": \"étrill\",\n  \"étroit\": \"étroit\",\n  \"étroite\": \"étroit\",\n  \"étroitement\": \"étroit\",\n  \"étroites\": \"étroit\",\n  \"étroits\": \"étroit\",\n  \"étude\": \"étud\",\n  \"études\": \"étud\",\n  \"étudia\": \"étudi\",\n  \"étudiait\": \"étudi\",\n  \"étudiant\": \"étudi\",\n  \"étudie\": \"étud\",\n  \"étudié\": \"étudi\",\n  \"étudiée\": \"étudi\",\n  \"étudier\": \"étudi\",\n  \"étudierai\": \"étudi\",\n  \"étudiez\": \"étud\",\n  \"étui\": \"étui\",\n  \"étuis\": \"étuis\",\n  \"eu\": \"eu\",\n  \"eue\": \"eue\",\n  \"eues\": \"eue\",\n  \"eugène\": \"eugen\",\n  \"eunuque\": \"eunuqu\",\n  \"euphorbes\": \"euphorb\",\n  \"eurent\": \"eurent\",\n  \"europe\": \"europ\",\n  \"européen\": \"européen\",\n  \"européenne\": \"européen\",\n  \"européennes\": \"européen\",\n  \"européens\": \"européen\",\n  \"eus\": \"eus\",\n  \"eusse\": \"euss\",\n  \"eussent\": \"eussent\",\n  \"eussiez\": \"euss\",\n  \"eut\": \"eut\",\n  \"eût\": \"eût\",\n  \"eux\": \"eux\",\n  \"évacuer\": \"évacu\",\n  \"évader\": \"évad\",\n  \"évaluait\": \"évalu\",\n  \"évangélique\": \"évangel\",\n  \"évangile\": \"évangil\",\n  \"évanoui\": \"évanou\",\n  \"évanouie\": \"évanou\",\n  \"évanouir\": \"évanou\",\n  \"évanouirent\": \"évanou\",\n  \"évanouis\": \"évanou\",\n  \"évanouissait\": \"évanou\",\n  \"évanouissement\": \"évanou\",\n  \"évanouit\": \"évanou\",\n  \"evans\": \"evan\",\n  \"évaporatoire\": \"évaporatoir\",\n  \"évasion\": \"évas\",\n  \"évêché\": \"évêch\",\n  \"éveil\": \"éveil\",\n  \"éveilla\": \"éveil\",\n  \"éveillant\": \"éveil\",\n  \"éveillé\": \"éveil\",\n  \"éveillée\": \"éveil\",\n  \"éveillées\": \"éveil\",\n  \"éveiller\": \"éveil\",\n  \"éveillera\": \"éveil\",\n  \"éveillés\": \"éveil\",\n  \"even\": \"even\",\n  \"événement\": \"éven\",\n  \"événements\": \"éven\",\n  \"evening\": \"evening\",\n  \"éventail\": \"éventail\",\n  \"éventée\": \"évent\",\n  \"éventualité\": \"éventual\",\n  \"éventualités\": \"éventual\",\n  \"évêque\": \"évêqu\",\n  \"évêques\": \"évêqu\",\n  \"évidaient\": \"évid\",\n  \"evidemment\": \"evident\",\n  \"évidemment\": \"évident\",\n  \"évidence\": \"évident\",\n  \"évident\": \"évident\",\n  \"évidente\": \"évident\",\n  \"évidentes\": \"évident\",\n  \"évidents\": \"évident\",\n  \"évita\": \"évit\",\n  \"évitait\": \"évit\",\n  \"évitant\": \"évit\",\n  \"évité\": \"évit\",\n  \"éviter\": \"évit\",\n  \"évitèrent\": \"évit\",\n  \"évitons\": \"éviton\",\n  \"ex\": \"ex\",\n  \"exact\": \"exact\",\n  \"exacte\": \"exact\",\n  \"exactement\": \"exact\",\n  \"exactes\": \"exact\",\n  \"exactitude\": \"exactitud\",\n  \"exacts\": \"exact\",\n  \"exagéra\": \"exager\",\n  \"exagérait\": \"exager\",\n  \"exagérant\": \"exager\",\n  \"exagération\": \"exager\",\n  \"exagérations\": \"exager\",\n  \"exagère\": \"exager\",\n  \"exagéré\": \"exager\",\n  \"exagérée\": \"exager\",\n  \"exagérées\": \"exager\",\n  \"exagèrent\": \"exag\",\n  \"exagérer\": \"exager\",\n  \"exagérés\": \"exager\",\n  \"exalta\": \"exalt\",\n  \"exaltait\": \"exalt\",\n  \"exaltation\": \"exalt\",\n  \"exalte\": \"exalt\",\n  \"exalté\": \"exalt\",\n  \"exaltée\": \"exalt\",\n  \"exaltées\": \"exalt\",\n  \"exalter\": \"exalt\",\n  \"examen\": \"examen\",\n  \"examens\": \"examen\",\n  \"examina\": \"examin\",\n  \"examinait\": \"examin\",\n  \"examinant\": \"examin\",\n  \"examinateur\": \"examin\",\n  \"examinateurs\": \"examin\",\n  \"examine\": \"examin\",\n  \"examiné\": \"examin\",\n  \"examinée\": \"examin\",\n  \"examiner\": \"examin\",\n  \"examinez\": \"examin\",\n  \"exaspérait\": \"exasper\",\n  \"exaspéré\": \"exasper\",\n  \"exaspérée\": \"exasper\",\n  \"exaspérer\": \"exasper\",\n  \"excédé\": \"exced\",\n  \"excédée\": \"exced\",\n  \"excéder\": \"exced\",\n  \"excellence\": \"excellent\",\n  \"excellent\": \"excellent\",\n  \"excellente\": \"excellent\",\n  \"excellentes\": \"excellent\",\n  \"excellents\": \"excellent\",\n  \"excentricité\": \"excentr\",\n  \"excentrique\": \"excentr\",\n  \"excepté\": \"except\",\n  \"exception\": \"except\",\n  \"excès\": \"exces\",\n  \"excessif\": \"excess\",\n  \"excessifs\": \"excess\",\n  \"excessive\": \"excess\",\n  \"excessivement\": \"excess\",\n  \"excessives\": \"excess\",\n  \"excita\": \"excit\",\n  \"excitait\": \"excit\",\n  \"excitation\": \"excit\",\n  \"excité\": \"excit\",\n  \"excitée\": \"excit\",\n  \"excitées\": \"excit\",\n  \"excitent\": \"excitent\",\n  \"exciter\": \"excit\",\n  \"exciterai\": \"excit\",\n  \"exclama\": \"exclam\",\n  \"exclamation\": \"exclam\",\n  \"exclamations\": \"exclam\",\n  \"exclu\": \"exclu\",\n  \"exclusive\": \"exclus\",\n  \"exclusivement\": \"exclus\",\n  \"excusa\": \"excus\",\n  \"excusable\": \"excus\",\n  \"excusait\": \"excus\",\n  \"excusant\": \"excus\",\n  \"excuse\": \"excus\",\n  \"excusée\": \"excus\",\n  \"excuser\": \"excus\",\n  \"excuserez\": \"excus\",\n  \"excuses\": \"excus\",\n  \"excusez\": \"excus\",\n  \"exécrable\": \"execr\",\n  \"exécrait\": \"execr\",\n  \"exécration\": \"execr\",\n  \"exècre\": \"execr\",\n  \"exécrer\": \"execr\",\n  \"exécuta\": \"exécut\",\n  \"exécutait\": \"exécut\",\n  \"exécutant\": \"exécut\",\n  \"exécute\": \"exécut\",\n  \"exécuté\": \"exécut\",\n  \"exécutée\": \"exécut\",\n  \"exécutées\": \"exécut\",\n  \"exécuter\": \"exécut\",\n  \"exécuterai\": \"exécut\",\n  \"exécuterait\": \"exécut\",\n  \"exécuteras\": \"exécut\",\n  \"exécutés\": \"exécut\",\n  \"exécuteur\": \"exécuteur\",\n  \"exécution\": \"exécu\",\n  \"exécutions\": \"exécu\",\n  \"exécutoire\": \"exécutoir\",\n  \"exemplaire\": \"exemplair\",\n  \"exemplaires\": \"exemplair\",\n  \"exemple\": \"exempl\",\n  \"exemples\": \"exempl\",\n  \"exempte\": \"exempt\",\n  \"exempté\": \"exempt\",\n  \"exerçait\": \"exerc\",\n  \"exerçant\": \"exerc\",\n  \"exerce\": \"exerc\",\n  \"exercée\": \"exerc\",\n  \"exercent\": \"exercent\",\n  \"exercer\": \"exerc\",\n  \"exercerait\": \"exerc\",\n  \"exercés\": \"exerc\",\n  \"exercice\": \"exercic\",\n  \"exercices\": \"exercic\",\n  \"exhibant\": \"exhib\",\n  \"exhibe\": \"exhib\",\n  \"exhibition\": \"exhibit\",\n  \"exhibitions\": \"exhibit\",\n  \"exhortait\": \"exhort\",\n  \"exige\": \"exig\",\n  \"exigé\": \"exig\",\n  \"exigea\": \"exig\",\n  \"exigeait\": \"exig\",\n  \"exigences\": \"exigent\",\n  \"exigeons\": \"exigeon\",\n  \"exiger\": \"exig\",\n  \"exigez\": \"exig\",\n  \"exiguë\": \"exigu\",\n  \"exigus\": \"exigus\",\n  \"exil\": \"exil\",\n  \"exila\": \"exil\",\n  \"exilait\": \"exil\",\n  \"exile\": \"exil\",\n  \"exilé\": \"exil\",\n  \"exilées\": \"exil\",\n  \"exiler\": \"exil\",\n  \"exista\": \"exist\",\n  \"existaient\": \"exist\",\n  \"existait\": \"exist\",\n  \"existât\": \"exist\",\n  \"existe\": \"exist\",\n  \"existé\": \"exist\",\n  \"existence\": \"existent\",\n  \"existent\": \"existent\",\n  \"exister\": \"exist\",\n  \"exorbitante\": \"exorbit\",\n  \"exotiques\": \"exot\",\n  \"expansif\": \"expans\",\n  \"expansion\": \"expans\",\n  \"expédia\": \"expédi\",\n  \"expédié\": \"expédi\",\n  \"expédiée\": \"expédi\",\n  \"expédier\": \"expédi\",\n  \"expédition\": \"expédit\",\n  \"expéditions\": \"expédit\",\n  \"expérience\": \"expérient\",\n  \"expiation\": \"expiat\",\n  \"expira\": \"expir\",\n  \"expiré\": \"expir\",\n  \"expirer\": \"expir\",\n  \"explicable\": \"explic\",\n  \"explication\": \"expliqu\",\n  \"explications\": \"expliqu\",\n  \"explicite\": \"explicit\",\n  \"expliqua\": \"expliqu\",\n  \"expliquait\": \"expliqu\",\n  \"expliquant\": \"expliqu\",\n  \"explique\": \"expliqu\",\n  \"expliqué\": \"expliqu\",\n  \"expliquée\": \"expliqu\",\n  \"expliquer\": \"expliqu\",\n  \"expliqués\": \"expliqu\",\n  \"expliquez\": \"expliqu\",\n  \"exploit\": \"exploit\",\n  \"exploits\": \"exploit\",\n  \"explosion\": \"explos\",\n  \"exposa\": \"expos\",\n  \"exposais\": \"expos\",\n  \"exposait\": \"expos\",\n  \"exposant\": \"expos\",\n  \"expose\": \"expos\",\n  \"exposé\": \"expos\",\n  \"exposée\": \"expos\",\n  \"exposées\": \"expos\",\n  \"exposer\": \"expos\",\n  \"exposerai\": \"expos\",\n  \"exposerais\": \"expos\",\n  \"exposerait\": \"expos\",\n  \"exposés\": \"expos\",\n  \"exposez\": \"expos\",\n  \"exprès\": \"expres\",\n  \"express\": \"express\",\n  \"expresse\": \"express\",\n  \"expressément\": \"express\",\n  \"expressifs\": \"express\",\n  \"expression\": \"express\",\n  \"expressions\": \"express\",\n  \"exprima\": \"exprim\",\n  \"exprimaient\": \"exprim\",\n  \"exprimait\": \"exprim\",\n  \"exprimant\": \"exprim\",\n  \"exprime\": \"exprim\",\n  \"exprimé\": \"exprim\",\n  \"exprimée\": \"exprim\",\n  \"exprimer\": \"exprim\",\n  \"exprimèrent\": \"exprim\",\n  \"exprimeront\": \"exprim\",\n  \"exquise\": \"exquis\",\n  \"extase\": \"extas\",\n  \"extases\": \"extas\",\n  \"extatique\": \"extat\",\n  \"extension\": \"extens\",\n  \"extérieur\": \"extérieur\",\n  \"extérieure\": \"extérieur\",\n  \"extérieures\": \"extérieur\",\n  \"extérieurs\": \"extérieur\",\n  \"exterminés\": \"extermin\",\n  \"extinction\": \"extinct\",\n  \"extorqué\": \"extorqu\",\n  \"extradition\": \"extradit\",\n  \"extrait\": \"extrait\",\n  \"extraites\": \"extrait\",\n  \"extraordinaire\": \"extraordinair\",\n  \"extraordinairement\": \"extraordinair\",\n  \"extraordinaires\": \"extraordinair\",\n  \"extravagant\": \"extravag\",\n  \"extravagante\": \"extravag\",\n  \"extravagantes\": \"extravag\",\n  \"extrême\": \"extrêm\",\n  \"extrêmement\": \"extrêm\",\n  \"extrêmes\": \"extrêm\",\n  \"extrémité\": \"extrem\",\n  \"extrémités\": \"extrem\",\n  \"f\": \"f\",\n  \"fa\": \"fa\",\n  \"fabio\": \"fabio\",\n  \"fable\": \"fabl\",\n  \"fables\": \"fabl\",\n  \"fabricant\": \"fabric\",\n  \"fabricants\": \"fabric\",\n  \"fabrice\": \"fabric\",\n  \"fabriquaient\": \"fabriqu\",\n  \"fabrique\": \"fabriqu\",\n  \"fabriquée\": \"fabriqu\",\n  \"fabriquées\": \"fabriqu\",\n  \"fabriquer\": \"fabriqu\",\n  \"fabriques\": \"fabriqu\",\n  \"fabuleux\": \"fabul\",\n  \"fabuliste\": \"fabul\",\n  \"façade\": \"façad\",\n  \"façades\": \"façad\",\n  \"face\": \"fac\",\n  \"fâcha\": \"fâch\",\n  \"fâchait\": \"fâch\",\n  \"fâchât\": \"fâch\",\n  \"fâche\": \"fâch\",\n  \"fâché\": \"fâch\",\n  \"fâchée\": \"fâch\",\n  \"fâchent\": \"fâchent\",\n  \"fâcher\": \"fâch\",\n  \"fâchèrent\": \"fâch\",\n  \"fâchés\": \"fâch\",\n  \"fâcheuse\": \"fâcheux\",\n  \"fâcheuses\": \"fâcheux\",\n  \"fâcheux\": \"fâcheux\",\n  \"fâchez\": \"fâch\",\n  \"facile\": \"facil\",\n  \"facilement\": \"facil\",\n  \"facilitait\": \"facilit\",\n  \"facilité\": \"facil\",\n  \"facilitent\": \"facilitent\",\n  \"faciliter\": \"facilit\",\n  \"facio\": \"facio\",\n  \"façon\": \"façon\",\n  \"faconde\": \"facond\",\n  \"façons\": \"façon\",\n  \"facteur\": \"facteur\",\n  \"faction\": \"faction\",\n  \"factotum\": \"factotum\",\n  \"faculté\": \"facult\",\n  \"facultés\": \"facult\",\n  \"fade\": \"fad\",\n  \"fagots\": \"fagot\",\n  \"fahrenheit\": \"fahrenheit\",\n  \"faible\": \"faibl\",\n  \"faibles\": \"faibl\",\n  \"faiblesse\": \"faibless\",\n  \"faiblesses\": \"faibless\",\n  \"faiblir\": \"faibl\",\n  \"faiblirent\": \"faibl\",\n  \"faict\": \"faict\",\n  \"failli\": \"faill\",\n  \"faillir\": \"faill\",\n  \"faillirent\": \"faill\",\n  \"faillit\": \"faill\",\n  \"faim\": \"faim\",\n  \"fainéant\": \"fainé\",\n  \"faire\": \"fair\",\n  \"fais\": \"fais\",\n  \"faisable\": \"faisabl\",\n  \"faisaient\": \"fais\",\n  \"faisais\": \"fais\",\n  \"faisait\": \"fais\",\n  \"faisant\": \"fais\",\n  \"faisceaux\": \"faisceau\",\n  \"faisiez\": \"fais\",\n  \"faisons\": \"faison\",\n  \"fait\": \"fait\",\n  \"faite\": \"fait\",\n  \"faîte\": \"faît\",\n  \"faites\": \"fait\",\n  \"faits\": \"fait\",\n  \"fakirs\": \"fakir\",\n  \"falcoz\": \"falcoz\",\n  \"faliero\": \"faliero\",\n  \"fallait\": \"fall\",\n  \"fallentin\": \"fallentin\",\n  \"falloir\": \"falloir\",\n  \"fallu\": \"fallu\",\n  \"fallut\": \"fallut\",\n  \"fameuse\": \"fameux\",\n  \"fameusement\": \"fameux\",\n  \"fameux\": \"fameux\",\n  \"familiarisé\": \"familiaris\",\n  \"familiarité\": \"familiar\",\n  \"familier\": \"famili\",\n  \"familièrement\": \"famili\",\n  \"famille\": \"famill\",\n  \"familles\": \"famill\",\n  \"fanal\": \"fanal\",\n  \"fanatique\": \"fanat\",\n  \"fanatiques\": \"fanat\",\n  \"fanatisme\": \"fanat\",\n  \"fanfarons\": \"fanfaron\",\n  \"fange\": \"fang\",\n  \"fangeuses\": \"fangeux\",\n  \"fangeux\": \"fangeux\",\n  \"fantaisie\": \"fantais\",\n  \"fantaisies\": \"fantais\",\n  \"fantaisistes\": \"fantais\",\n  \"fantasque\": \"fantasqu\",\n  \"fantastique\": \"fantast\",\n  \"fantastiques\": \"fantast\",\n  \"fantôme\": \"fantôm\",\n  \"faquins\": \"faquin\",\n  \"far\": \"far\",\n  \"faraud\": \"faraud\",\n  \"farceur\": \"farceur\",\n  \"farceurs\": \"farceur\",\n  \"farci\": \"farc\",\n  \"fardeau\": \"fardeau\",\n  \"fare\": \"far\",\n  \"farine\": \"farin\",\n  \"farmer\": \"farm\",\n  \"farnèse\": \"farnes\",\n  \"farouche\": \"farouch\",\n  \"farouches\": \"farouch\",\n  \"farthing\": \"farthing\",\n  \"fascinant\": \"fascin\",\n  \"fascination\": \"fascin\",\n  \"fasciné\": \"fascin\",\n  \"fasciner\": \"fascin\",\n  \"fasse\": \"fass\",\n  \"fassent\": \"fassent\",\n  \"fassiez\": \"fass\",\n  \"faste\": \"fast\",\n  \"fastenet\": \"fastenet\",\n  \"fat\": \"fat\",\n  \"fata\": \"fat\",\n  \"fatal\": \"fatal\",\n  \"fatale\": \"fatal\",\n  \"fatales\": \"fatal\",\n  \"fatalité\": \"fatal\",\n  \"fatigant\": \"fatig\",\n  \"fatigante\": \"fatig\",\n  \"fatigua\": \"fatigu\",\n  \"fatiguaient\": \"fatigu\",\n  \"fatigue\": \"fatigu\",\n  \"fatigué\": \"fatigu\",\n  \"fatiguée\": \"fatigu\",\n  \"fatiguées\": \"fatigu\",\n  \"fatiguer\": \"fatigu\",\n  \"fatiguerai\": \"fatigu\",\n  \"fatigues\": \"fatigu\",\n  \"fatuité\": \"fatuit\",\n  \"faublas\": \"faubl\",\n  \"faubourg\": \"faubourg\",\n  \"faudra\": \"faudr\",\n  \"faudrait\": \"faudr\",\n  \"faufilant\": \"faufil\",\n  \"fausse\": \"fauss\",\n  \"fausses\": \"fauss\",\n  \"fausseté\": \"fausset\",\n  \"faussetés\": \"fausset\",\n  \"fausta\": \"faust\",\n  \"faut\": \"faut\",\n  \"faute\": \"faut\",\n  \"fautes\": \"faut\",\n  \"fauteuil\": \"fauteuil\",\n  \"fauteuils\": \"fauteuil\",\n  \"fauve\": \"fauv\",\n  \"fauves\": \"fauv\",\n  \"faux\": \"faux\",\n  \"faveur\": \"faveur\",\n  \"faveurs\": \"faveur\",\n  \"favorable\": \"favor\",\n  \"favorablement\": \"favor\",\n  \"favorables\": \"favor\",\n  \"favori\": \"favor\",\n  \"favoris\": \"favor\",\n  \"favorisa\": \"favoris\",\n  \"favorisait\": \"favoris\",\n  \"favoriser\": \"favoris\",\n  \"favorite\": \"favorit\",\n  \"fay\": \"fay\",\n  \"fayette\": \"fayet\",\n  \"fé\": \"fé\",\n  \"fébrile\": \"fébril\",\n  \"fébrilement\": \"fébril\",\n  \"feci\": \"fec\",\n  \"fécond\": \"fécond\",\n  \"féconde\": \"fécond\",\n  \"feignait\": \"feign\",\n  \"feignant\": \"feign\",\n  \"feignent\": \"feignent\",\n  \"feignit\": \"feign\",\n  \"feindre\": \"feindr\",\n  \"feins\": \"fein\",\n  \"feint\": \"feint\",\n  \"feinte\": \"feint\",\n  \"felice\": \"felic\",\n  \"félicita\": \"félicit\",\n  \"félicitait\": \"félicit\",\n  \"félicite\": \"félicit\",\n  \"félicité\": \"féliqu\",\n  \"félicités\": \"féliqu\",\n  \"felino\": \"felino\",\n  \"félix\": \"félix\",\n  \"fellah\": \"fellah\",\n  \"fellahs\": \"fellah\",\n  \"féminin\": \"féminin\",\n  \"féminine\": \"féminin\",\n  \"femme\": \"femm\",\n  \"femmelette\": \"femmelet\",\n  \"femmes\": \"femm\",\n  \"fendaient\": \"fend\",\n  \"fendait\": \"fend\",\n  \"fendues\": \"fendu\",\n  \"fénelon\": \"fénelon\",\n  \"fenestrelles\": \"fenestrel\",\n  \"fenêtre\": \"fenêtr\",\n  \"fenêtres\": \"fenêtr\",\n  \"fente\": \"fent\",\n  \"féodal\": \"féodal\",\n  \"fer\": \"fer\",\n  \"fera\": \"fer\",\n  \"ferai\": \"fer\",\n  \"feraient\": \"fer\",\n  \"ferais\": \"fer\",\n  \"ferait\": \"fer\",\n  \"feras\": \"fer\",\n  \"feretrius\": \"feretrius\",\n  \"ferez\": \"fer\",\n  \"feriez\": \"fer\",\n  \"feringhea\": \"feringh\",\n  \"ferions\": \"ferion\",\n  \"ferma\": \"ferm\",\n  \"fermage\": \"fermag\",\n  \"fermaient\": \"ferm\",\n  \"fermait\": \"ferm\",\n  \"fermant\": \"ferm\",\n  \"fermât\": \"ferm\",\n  \"ferme\": \"ferm\",\n  \"fermé\": \"ferm\",\n  \"fermée\": \"ferm\",\n  \"fermées\": \"ferm\",\n  \"fermement\": \"ferm\",\n  \"fermentation\": \"ferment\",\n  \"fermer\": \"ferm\",\n  \"fermerait\": \"ferm\",\n  \"fermèrent\": \"ferm\",\n  \"fermerons\": \"ferm\",\n  \"fermes\": \"ferm\",\n  \"fermés\": \"ferm\",\n  \"fermeté\": \"fermet\",\n  \"fermeture\": \"fermetur\",\n  \"fermier\": \"fermi\",\n  \"fermiers\": \"fermi\",\n  \"féroce\": \"féroc\",\n  \"féroces\": \"féroc\",\n  \"férocité\": \"féroc\",\n  \"ferons\": \"feron\",\n  \"feront\": \"feront\",\n  \"ferrante\": \"ferr\",\n  \"ferrare\": \"ferrar\",\n  \"ferrée\": \"ferr\",\n  \"ferrures\": \"ferrur\",\n  \"ferry\": \"ferry\",\n  \"fers\": \"fer\",\n  \"fertile\": \"fertil\",\n  \"fertiles\": \"fertil\",\n  \"fervaques\": \"fervaqu\",\n  \"fervent\": \"fervent\",\n  \"fervente\": \"fervent\",\n  \"fervents\": \"fervent\",\n  \"ferveur\": \"ferveur\",\n  \"fête\": \"fêt\",\n  \"fêté\": \"fêt\",\n  \"fêtes\": \"fêt\",\n  \"feu\": \"feu\",\n  \"feuillage\": \"feuillag\",\n  \"feuille\": \"feuill\",\n  \"feuilles\": \"feuill\",\n  \"feuilleta\": \"feuillet\",\n  \"feuilletait\": \"feuillet\",\n  \"feuilletant\": \"feuillet\",\n  \"feuillets\": \"feuillet\",\n  \"feutre\": \"feutr\",\n  \"feux\": \"feux\",\n  \"few\": \"few\",\n  \"fi\": \"fi\",\n  \"fiacre\": \"fiacr\",\n  \"ficelé\": \"ficel\",\n  \"ficelles\": \"ficel\",\n  \"fichée\": \"fich\",\n  \"fiches\": \"fich\",\n  \"fidèle\": \"fidel\",\n  \"fidèlement\": \"fidel\",\n  \"fidèles\": \"fidel\",\n  \"fidélité\": \"fidel\",\n  \"fie\": \"fi\",\n  \"fier\": \"fi\",\n  \"fierai\": \"fi\",\n  \"fière\": \"fier\",\n  \"fièrement\": \"fier\",\n  \"fières\": \"fier\",\n  \"fiers\": \"fier\",\n  \"fierté\": \"fiert\",\n  \"fièvre\": \"fievr\",\n  \"fiévreux\": \"fiévreux\",\n  \"figaro\": \"figaro\",\n  \"figura\": \"figur\",\n  \"figuraient\": \"figur\",\n  \"figurais\": \"figur\",\n  \"figurait\": \"figur\",\n  \"figurât\": \"figur\",\n  \"figure\": \"figur\",\n  \"figuré\": \"figur\",\n  \"figurer\": \"figur\",\n  \"figurerai\": \"figur\",\n  \"figureriez\": \"figur\",\n  \"figures\": \"figur\",\n  \"figurés\": \"figur\",\n  \"figurez\": \"figur\",\n  \"fil\": \"fil\",\n  \"fila\": \"fil\",\n  \"filait\": \"fil\",\n  \"filant\": \"fil\",\n  \"filasse\": \"fil\",\n  \"file\": \"fil\",\n  \"filé\": \"fil\",\n  \"filent\": \"filent\",\n  \"filer\": \"fil\",\n  \"filerai\": \"fil\",\n  \"files\": \"fil\",\n  \"filet\": \"filet\",\n  \"filez\": \"fil\",\n  \"fili\": \"fil\",\n  \"filiale\": \"filial\",\n  \"filigrane\": \"filigran\",\n  \"filins\": \"filin\",\n  \"fille\": \"fill\",\n  \"filles\": \"fill\",\n  \"filons\": \"filon\",\n  \"fils\": \"fil\",\n  \"filtrait\": \"filtr\",\n  \"fin\": \"fin\",\n  \"finance\": \"financ\",\n  \"finances\": \"financ\",\n  \"financier\": \"financi\",\n  \"financièrement\": \"financi\",\n  \"finds\": \"find\",\n  \"fine\": \"fin\",\n  \"fines\": \"fin\",\n  \"finesse\": \"finess\",\n  \"finesses\": \"finess\",\n  \"fini\": \"fin\",\n  \"finie\": \"fin\",\n  \"finies\": \"fin\",\n  \"finir\": \"fin\",\n  \"finira\": \"fin\",\n  \"finiraient\": \"fin\",\n  \"finirait\": \"fin\",\n  \"finirent\": \"fin\",\n  \"finis\": \"fin\",\n  \"finissait\": \"fin\",\n  \"finissant\": \"fin\",\n  \"finisse\": \"fin\",\n  \"finissent\": \"fin\",\n  \"finissons\": \"fin\",\n  \"finit\": \"fin\",\n  \"fins\": \"fin\",\n  \"fiole\": \"fiol\",\n  \"fir\": \"fir\",\n  \"fire\": \"fir\",\n  \"firent\": \"firent\",\n  \"fis\": \"fis\",\n  \"fiscal\": \"fiscal\",\n  \"fisse\": \"fiss\",\n  \"fit\": \"fit\",\n  \"fît\": \"fît\",\n  \"fitz\": \"fitz\",\n  \"fix\": \"fix\",\n  \"fixa\": \"fix\",\n  \"fixaient\": \"fix\",\n  \"fixait\": \"fix\",\n  \"fixant\": \"fix\",\n  \"fixe\": \"fix\",\n  \"fixé\": \"fix\",\n  \"fixée\": \"fix\",\n  \"fixement\": \"fix\",\n  \"fixer\": \"fix\",\n  \"fixèrent\": \"fix\",\n  \"fixés\": \"fix\",\n  \"fixité\": \"fixit\",\n  \"flacon\": \"flacon\",\n  \"flagrant\": \"flagr\",\n  \"flair\": \"flair\",\n  \"flairait\": \"flair\",\n  \"flamand\": \"flamand\",\n  \"flamande\": \"flamand\",\n  \"flambé\": \"flamb\",\n  \"flambeaux\": \"flambeau\",\n  \"flambés\": \"flamb\",\n  \"flamboyants\": \"flamboi\",\n  \"flamme\": \"flamm\",\n  \"flammes\": \"flamm\",\n  \"flâna\": \"flân\",\n  \"flanagan\": \"flanagan\",\n  \"flânait\": \"flân\",\n  \"flânant\": \"flân\",\n  \"flanc\": \"flanc\",\n  \"flancs\": \"flanc\",\n  \"flatta\": \"flatt\",\n  \"flattait\": \"flatt\",\n  \"flatte\": \"flatt\",\n  \"flatté\": \"flatt\",\n  \"flattée\": \"flatt\",\n  \"flatter\": \"flatt\",\n  \"flatteries\": \"flatter\",\n  \"flatteur\": \"flatteur\",\n  \"flatteurs\": \"flatteur\",\n  \"flatteuse\": \"flatteux\",\n  \"flatteuses\": \"flatteux\",\n  \"flèche\": \"flech\",\n  \"flèches\": \"flech\",\n  \"fléchir\": \"flech\",\n  \"flegmatique\": \"flegmat\",\n  \"flegme\": \"flegm\",\n  \"flétri\": \"fletr\",\n  \"flétrirait\": \"fletr\",\n  \"fleur\": \"fleur\",\n  \"fleurs\": \"fleur\",\n  \"fleury\": \"fleury\",\n  \"fleuve\": \"fleuv\",\n  \"fleuves\": \"fleuv\",\n  \"flexible\": \"flexibl\",\n  \"flexibles\": \"flexibl\",\n  \"flocons\": \"flocon\",\n  \"florence\": \"florenc\",\n  \"florissante\": \"flor\",\n  \"flot\": \"flot\",\n  \"flots\": \"flot\",\n  \"flottaient\": \"flott\",\n  \"flottant\": \"flott\",\n  \"flottantes\": \"flott\",\n  \"flottants\": \"flott\",\n  \"flotter\": \"flott\",\n  \"flottille\": \"flottill\",\n  \"flûtes\": \"flût\",\n  \"fo\": \"fo\",\n  \"foc\": \"foc\",\n  \"focs\": \"foc\",\n  \"fogg\": \"fogg\",\n  \"foi\": \"foi\",\n  \"foin\": \"foin\",\n  \"fois\": \"fois\",\n  \"foison\": \"foison\",\n  \"foisonnait\": \"foison\",\n  \"foisonne\": \"foison\",\n  \"fokelberg\": \"fokelberg\",\n  \"fol\": \"fol\",\n  \"folie\": \"fol\",\n  \"folies\": \"fol\",\n  \"folio\": \"folio\",\n  \"folke\": \"folk\",\n  \"folle\": \"foll\",\n  \"follement\": \"foll\",\n  \"folles\": \"foll\",\n  \"foncé\": \"fonc\",\n  \"foncièrement\": \"fonci\",\n  \"fonctionnaire\": \"fonctionnair\",\n  \"fonctionnaires\": \"fonctionnair\",\n  \"fonctionne\": \"fonction\",\n  \"fonctions\": \"fonction\",\n  \"fond\": \"fond\",\n  \"fonda\": \"fond\",\n  \"fondaient\": \"fond\",\n  \"fondait\": \"fond\",\n  \"fondant\": \"fond\",\n  \"fondateur\": \"fondateur\",\n  \"fondations\": \"fondat\",\n  \"fondé\": \"fond\",\n  \"fondée\": \"fond\",\n  \"fondées\": \"fond\",\n  \"fondements\": \"fond\",\n  \"fondent\": \"fondent\",\n  \"fonder\": \"fond\",\n  \"fonderies\": \"fonder\",\n  \"fondés\": \"fond\",\n  \"fondirent\": \"fond\",\n  \"fondit\": \"fond\",\n  \"fondre\": \"fondr\",\n  \"fonds\": \"fond\",\n  \"fondu\": \"fondu\",\n  \"fondue\": \"fondu\",\n  \"font\": \"font\",\n  \"fontaine\": \"fontain\",\n  \"fontaines\": \"fontain\",\n  \"fontan\": \"fontan\",\n  \"fontana\": \"fontan\",\n  \"fontenoy\": \"fontenoy\",\n  \"for\": \"for\",\n  \"força\": \"forc\",\n  \"forçaient\": \"forc\",\n  \"forçais\": \"forc\",\n  \"forçait\": \"forc\",\n  \"forçant\": \"forc\",\n  \"force\": \"forc\",\n  \"forcé\": \"forc\",\n  \"forcée\": \"forc\",\n  \"forcer\": \"forc\",\n  \"forcera\": \"forc\",\n  \"forcerai\": \"forc\",\n  \"forcèrent\": \"forc\",\n  \"forces\": \"forc\",\n  \"forcés\": \"forc\",\n  \"forcez\": \"forc\",\n  \"forêt\": \"forêt\",\n  \"foretells\": \"foretel\",\n  \"forets\": \"foret\",\n  \"forêts\": \"forêt\",\n  \"forfaitz\": \"forfaitz\",\n  \"forgé\": \"forg\",\n  \"forma\": \"form\",\n  \"formaient\": \"form\",\n  \"formait\": \"form\",\n  \"formalisait\": \"formalis\",\n  \"formaliste\": \"formal\",\n  \"formalistes\": \"formal\",\n  \"formalité\": \"formal\",\n  \"formalités\": \"formal\",\n  \"formant\": \"form\",\n  \"formation\": \"format\",\n  \"forme\": \"form\",\n  \"formé\": \"form\",\n  \"formée\": \"form\",\n  \"formées\": \"form\",\n  \"formel\": \"formel\",\n  \"formellement\": \"formel\",\n  \"forment\": \"forment\",\n  \"former\": \"form\",\n  \"formera\": \"form\",\n  \"formèrent\": \"form\",\n  \"formes\": \"form\",\n  \"formés\": \"form\",\n  \"formez\": \"form\",\n  \"formidable\": \"formid\",\n  \"formidables\": \"formid\",\n  \"formose\": \"formos\",\n  \"formula\": \"formul\",\n  \"formule\": \"formul\",\n  \"formulée\": \"formul\",\n  \"formuler\": \"formul\",\n  \"formules\": \"formul\",\n  \"forster\": \"forst\",\n  \"fort\": \"fort\",\n  \"forte\": \"fort\",\n  \"fortement\": \"fort\",\n  \"forteresse\": \"forteress\",\n  \"fortes\": \"fort\",\n  \"forth\": \"forth\",\n  \"fortifications\": \"fortif\",\n  \"fortifié\": \"fortifi\",\n  \"fortifiée\": \"fortifi\",\n  \"fortifiées\": \"fortifi\",\n  \"fortifier\": \"fortifi\",\n  \"fortifions\": \"fortif\",\n  \"forts\": \"fort\",\n  \"fortune\": \"fortun\",\n  \"fortuné\": \"fortun\",\n  \"fortunées\": \"fortun\",\n  \"fortunes\": \"fortun\",\n  \"fortunés\": \"fortun\",\n  \"foscarini\": \"foscarin\",\n  \"fosse\": \"foss\",\n  \"fossé\": \"foss\",\n  \"fosses\": \"foss\",\n  \"fossés\": \"foss\",\n  \"fou\": \"fou\",\n  \"foudre\": \"foudr\",\n  \"foudroyer\": \"foudroi\",\n  \"fouet\": \"fouet\",\n  \"fouettait\": \"fouet\",\n  \"fouetté\": \"fouet\",\n  \"fouetter\": \"fouet\",\n  \"fouetterait\": \"fouet\",\n  \"fougères\": \"fouger\",\n  \"fougueuse\": \"fougueux\",\n  \"fougueux\": \"fougueux\",\n  \"fouillait\": \"fouill\",\n  \"fouillât\": \"fouill\",\n  \"fouille\": \"fouill\",\n  \"fouillé\": \"fouill\",\n  \"fouiller\": \"fouill\",\n  \"fouilles\": \"fouill\",\n  \"fouillés\": \"fouill\",\n  \"fouillez\": \"fouill\",\n  \"foule\": \"foul\",\n  \"foulé\": \"foul\",\n  \"foules\": \"foul\",\n  \"fouqué\": \"fouqu\",\n  \"fourbes\": \"fourb\",\n  \"fourgons\": \"fourgon\",\n  \"fourmilière\": \"fourmili\",\n  \"fourmillait\": \"fourmill\",\n  \"fourmillement\": \"fourmill\",\n  \"fourmis\": \"fourm\",\n  \"fourmont\": \"fourmont\",\n  \"fourneaux\": \"fourneau\",\n  \"fourni\": \"fourn\",\n  \"fournie\": \"fourn\",\n  \"fournir\": \"fourn\",\n  \"fourniront\": \"fourn\",\n  \"fournis\": \"fourn\",\n  \"fournissaient\": \"fourn\",\n  \"fournissait\": \"fourn\",\n  \"fournissant\": \"fourn\",\n  \"fournisseurs\": \"fournisseur\",\n  \"fournit\": \"fourn\",\n  \"fourniture\": \"fournitur\",\n  \"fournitures\": \"fournitur\",\n  \"fourraient\": \"fourr\",\n  \"fourré\": \"fourr\",\n  \"fourreau\": \"fourreau\",\n  \"fourrer\": \"fourr\",\n  \"fourrier\": \"fourri\",\n  \"fourriers\": \"fourri\",\n  \"fourrures\": \"fourrur\",\n  \"fous\": \"fous\",\n  \"fox\": \"fox\",\n  \"foyer\": \"foi\",\n  \"frac\": \"frac\",\n  \"fracas\": \"frac\",\n  \"fracassée\": \"fracass\",\n  \"fracassés\": \"fracass\",\n  \"fragile\": \"fragil\",\n  \"fragments\": \"fragment\",\n  \"fraîche\": \"fraîch\",\n  \"fraîches\": \"fraîch\",\n  \"fraîcheur\": \"fraîcheur\",\n  \"fraîchir\": \"fraîch\",\n  \"fraîchissait\": \"fraîch\",\n  \"fraîchit\": \"fraîch\",\n  \"frailty\": \"frailty\",\n  \"frais\": \"frais\",\n  \"franc\": \"franc\",\n  \"français\": \"franc\",\n  \"française\": \"français\",\n  \"françaises\": \"français\",\n  \"france\": \"franc\",\n  \"francese\": \"frances\",\n  \"francfort\": \"francfort\",\n  \"franche\": \"franch\",\n  \"franchement\": \"franch\",\n  \"franchi\": \"franch\",\n  \"franchie\": \"franch\",\n  \"franchies\": \"franch\",\n  \"franchir\": \"franch\",\n  \"franchis\": \"franch\",\n  \"franchise\": \"franchis\",\n  \"franchissait\": \"franch\",\n  \"franchissant\": \"franch\",\n  \"franchissent\": \"franch\",\n  \"franchit\": \"franch\",\n  \"francis\": \"franc\",\n  \"francisco\": \"francisco\",\n  \"françois\": \"françois\",\n  \"francs\": \"franc\",\n  \"frappa\": \"frapp\",\n  \"frappaient\": \"frapp\",\n  \"frappait\": \"frapp\",\n  \"frappant\": \"frapp\",\n  \"frappante\": \"frapp\",\n  \"frappantes\": \"frapp\",\n  \"frappât\": \"frapp\",\n  \"frappe\": \"frapp\",\n  \"frappé\": \"frapp\",\n  \"frappée\": \"frapp\",\n  \"frappées\": \"frapp\",\n  \"frappent\": \"frappent\",\n  \"frapper\": \"frapp\",\n  \"frapperai\": \"frapp\",\n  \"frappés\": \"frapp\",\n  \"fraternelle\": \"fraternel\",\n  \"fraternisaient\": \"fraternis\",\n  \"fraude\": \"fraud\",\n  \"frayée\": \"frai\",\n  \"frayeur\": \"frayeur\",\n  \"frédéric\": \"frédéric\",\n  \"freins\": \"frein\",\n  \"frêle\": \"frêl\",\n  \"freluquets\": \"freluquet\",\n  \"frémi\": \"frem\",\n  \"frémir\": \"frem\",\n  \"frémis\": \"frem\",\n  \"frémit\": \"frem\",\n  \"fremont\": \"fremont\",\n  \"frênes\": \"frên\",\n  \"frénétique\": \"frénet\",\n  \"fréquemment\": \"fréquent\",\n  \"fréquence\": \"fréquenc\",\n  \"fréquent\": \"fréquent\",\n  \"fréquente\": \"fréquent\",\n  \"fréquenté\": \"fréquent\",\n  \"fréquentée\": \"fréquent\",\n  \"fréquentées\": \"fréquent\",\n  \"fréquenter\": \"fréquent\",\n  \"fréquentes\": \"fréquent\",\n  \"fréquents\": \"fréquent\",\n  \"frère\": \"frer\",\n  \"frères\": \"frer\",\n  \"fresque\": \"fresqu\",\n  \"fret\": \"fret\",\n  \"fréter\": \"fret\",\n  \"frilair\": \"frilair\",\n  \"fringante\": \"fring\",\n  \"friperie\": \"friper\",\n  \"friperies\": \"friper\",\n  \"fripon\": \"fripon\",\n  \"friponner\": \"fripon\",\n  \"friponnerie\": \"friponner\",\n  \"friponneries\": \"friponner\",\n  \"fripons\": \"fripon\",\n  \"frisaient\": \"fris\",\n  \"frisait\": \"fris\",\n  \"friser\": \"fris\",\n  \"frises\": \"fris\",\n  \"frisés\": \"fris\",\n  \"frisson\": \"frisson\",\n  \"frivole\": \"frivol\",\n  \"froc\": \"froc\",\n  \"froid\": \"froid\",\n  \"froide\": \"froid\",\n  \"froidement\": \"froid\",\n  \"froides\": \"froid\",\n  \"froideur\": \"froideur\",\n  \"froids\": \"froid\",\n  \"froissa\": \"froiss\",\n  \"froissant\": \"froiss\",\n  \"froissants\": \"froiss\",\n  \"froissé\": \"froiss\",\n  \"from\": \"from\",\n  \"fromage\": \"fromag\",\n  \"froment\": \"froment\",\n  \"fronçait\": \"fronc\",\n  \"fronçant\": \"fronc\",\n  \"froncé\": \"fronc\",\n  \"froncement\": \"fronc\",\n  \"froncer\": \"fronc\",\n  \"froncera\": \"fronc\",\n  \"fronde\": \"frond\",\n  \"frondeur\": \"frondeur\",\n  \"front\": \"front\",\n  \"frontière\": \"fronti\",\n  \"frontières\": \"fronti\",\n  \"frontins\": \"frontin\",\n  \"fronts\": \"front\",\n  \"frotta\": \"frott\",\n  \"frottait\": \"frott\",\n  \"frottant\": \"frott\",\n  \"frotté\": \"frott\",\n  \"frottements\": \"frott\",\n  \"fruit\": \"fruit\",\n  \"fruitières\": \"fruiti\",\n  \"fruits\": \"fruit\",\n  \"fugitif\": \"fugit\",\n  \"fugitifs\": \"fugit\",\n  \"fui\": \"fui\",\n  \"fuient\": \"fuient\",\n  \"fuir\": \"fuir\",\n  \"fuirais\": \"fuir\",\n  \"fuis\": \"fuis\",\n  \"fuite\": \"fuit\",\n  \"fulgence\": \"fulgenc\",\n  \"fuligineuses\": \"fuligin\",\n  \"fulminante\": \"fulmin\",\n  \"fumaient\": \"fum\",\n  \"fumant\": \"fum\",\n  \"fume\": \"fum\",\n  \"fumée\": \"fum\",\n  \"fumées\": \"fum\",\n  \"fumer\": \"fum\",\n  \"fumeur\": \"fumeur\",\n  \"fumeurs\": \"fumeur\",\n  \"funèbre\": \"funebr\",\n  \"funèbres\": \"funebr\",\n  \"funeste\": \"funest\",\n  \"funestes\": \"funest\",\n  \"fur\": \"fur\",\n  \"furent\": \"furent\",\n  \"fureur\": \"fureur\",\n  \"furia\": \"furi\",\n  \"furibond\": \"furibond\",\n  \"furibonde\": \"furibond\",\n  \"furibondes\": \"furibond\",\n  \"furibonds\": \"furibond\",\n  \"furieuse\": \"furieux\",\n  \"furieusement\": \"furieux\",\n  \"furieuses\": \"furieux\",\n  \"furieux\": \"furieux\",\n  \"furtivement\": \"furtiv\",\n  \"fus\": \"fus\",\n  \"fusait\": \"fus\",\n  \"fuseau\": \"fuseau\",\n  \"fuseaux\": \"fuseau\",\n  \"fusil\": \"fusil\",\n  \"fusiliers\": \"fusili\",\n  \"fusillé\": \"fusill\",\n  \"fusiller\": \"fusill\",\n  \"fusillés\": \"fusill\",\n  \"fusils\": \"fusil\",\n  \"fusse\": \"fuss\",\n  \"fussent\": \"fussent\",\n  \"fussiez\": \"fuss\",\n  \"fut\": \"fut\",\n  \"fût\": \"fût\",\n  \"futé\": \"fut\",\n  \"futilité\": \"futil\",\n  \"futilités\": \"futil\",\n  \"futur\": \"futur\",\n  \"futura\": \"futur\",\n  \"future\": \"futur\",\n  \"futures\": \"futur\",\n  \"futurs\": \"futur\",\n  \"fuyaient\": \"fui\",\n  \"fuyait\": \"fui\",\n  \"fuyant\": \"fui\",\n  \"fuyards\": \"fuyard\",\n  \"fuyez\": \"fui\",\n  \"g\": \"g\",\n  \"gabarit\": \"gabar\",\n  \"gabrielle\": \"gabriel\",\n  \"gâchis\": \"gâch\",\n  \"gage\": \"gag\",\n  \"gages\": \"gag\",\n  \"gageure\": \"gageur\",\n  \"gagna\": \"gagn\",\n  \"gagnaient\": \"gagn\",\n  \"gagnais\": \"gagn\",\n  \"gagnait\": \"gagn\",\n  \"gagnant\": \"gagn\",\n  \"gagne\": \"gagn\",\n  \"gagné\": \"gagn\",\n  \"gagnée\": \"gagn\",\n  \"gagnées\": \"gagn\",\n  \"gagnent\": \"gagnent\",\n  \"gagner\": \"gagn\",\n  \"gagnerai\": \"gagn\",\n  \"gagneras\": \"gagn\",\n  \"gagnèrent\": \"gagn\",\n  \"gagnés\": \"gagn\",\n  \"gagnez\": \"gagn\",\n  \"gagnons\": \"gagnon\",\n  \"gai\": \"gai\",\n  \"gaie\": \"gai\",\n  \"gaiement\": \"gai\",\n  \"gaies\": \"gai\",\n  \"gaieté\": \"gaiet\",\n  \"gaillard\": \"gaillard\",\n  \"gaillardement\": \"gaillard\",\n  \"gaîment\": \"gaî\",\n  \"gain\": \"gain\",\n  \"gains\": \"gain\",\n  \"gais\": \"gais\",\n  \"gaîté\": \"gaît\",\n  \"gala\": \"gal\",\n  \"galamment\": \"gal\",\n  \"galant\": \"gal\",\n  \"galante\": \"gal\",\n  \"galanterie\": \"galanter\",\n  \"galantes\": \"gal\",\n  \"galéas\": \"galé\",\n  \"galère\": \"galer\",\n  \"galères\": \"galer\",\n  \"galerie\": \"galer\",\n  \"galériens\": \"galérien\",\n  \"galeries\": \"galer\",\n  \"galeuse\": \"galeux\",\n  \"galeux\": \"galeux\",\n  \"gallicane\": \"gallican\",\n  \"galon\": \"galon\",\n  \"galonnées\": \"galon\",\n  \"galons\": \"galon\",\n  \"galop\": \"galop\",\n  \"galopa\": \"galop\",\n  \"galopaient\": \"galop\",\n  \"galopait\": \"galop\",\n  \"galopant\": \"galop\",\n  \"galope\": \"galop\",\n  \"galoper\": \"galop\",\n  \"galopera\": \"galop\",\n  \"galoperai\": \"galop\",\n  \"galopez\": \"galop\",\n  \"galvanisées\": \"galvanis\",\n  \"gambadant\": \"gambad\",\n  \"gamins\": \"gamin\",\n  \"gamme\": \"gamm\",\n  \"ganaches\": \"ganach\",\n  \"gange\": \"gang\",\n  \"gangrène\": \"gangren\",\n  \"gangrenée\": \"gangren\",\n  \"gangrenées\": \"gangren\",\n  \"gant\": \"gant\",\n  \"gants\": \"gant\",\n  \"garantie\": \"garant\",\n  \"garanties\": \"garant\",\n  \"garantissait\": \"garant\",\n  \"garçon\": \"garçon\",\n  \"garçons\": \"garçon\",\n  \"garda\": \"gard\",\n  \"gardai\": \"gard\",\n  \"gardaient\": \"gard\",\n  \"gardait\": \"gard\",\n  \"gardant\": \"gard\",\n  \"garde\": \"gard\",\n  \"gardé\": \"gard\",\n  \"gardée\": \"gard\",\n  \"gardées\": \"gard\",\n  \"gardens\": \"garden\",\n  \"garder\": \"gard\",\n  \"gardera\": \"gard\",\n  \"garderai\": \"gard\",\n  \"garderais\": \"gard\",\n  \"garderait\": \"gard\",\n  \"garderas\": \"gard\",\n  \"gardes\": \"gard\",\n  \"gardés\": \"gard\",\n  \"gardez\": \"gard\",\n  \"gardien\": \"gardien\",\n  \"gardiens\": \"gardien\",\n  \"gare\": \"gar\",\n  \"garnement\": \"garn\",\n  \"garni\": \"garn\",\n  \"garnie\": \"garn\",\n  \"garnies\": \"garn\",\n  \"garnis\": \"garn\",\n  \"garnison\": \"garnison\",\n  \"garnit\": \"garn\",\n  \"garrot\": \"garrot\",\n  \"garrotté\": \"garrott\",\n  \"gascons\": \"gascon\",\n  \"gaspilla\": \"gaspill\",\n  \"gâtaient\": \"gât\",\n  \"gâtait\": \"gât\",\n  \"gâte\": \"gât\",\n  \"gâté\": \"gât\",\n  \"gâteau\": \"gâteau\",\n  \"gâtée\": \"gât\",\n  \"gâtées\": \"gât\",\n  \"gâter\": \"gât\",\n  \"gâterait\": \"gât\",\n  \"gâtés\": \"gât\",\n  \"gauche\": \"gauch\",\n  \"gaucherie\": \"gaucher\",\n  \"gaucheries\": \"gaucher\",\n  \"gauches\": \"gauch\",\n  \"gauthier\": \"gauthi\",\n  \"gay\": \"gay\",\n  \"gaz\": \"gaz\",\n  \"gaze\": \"gaz\",\n  \"gazes\": \"gaz\",\n  \"gazette\": \"gazet\",\n  \"gazettes\": \"gazet\",\n  \"gazon\": \"gazon\",\n  \"gazouillements\": \"gazouill\",\n  \"géant\": \"gé\",\n  \"géants\": \"gé\",\n  \"gémi\": \"gem\",\n  \"gémissait\": \"gem\",\n  \"gémissant\": \"gem\",\n  \"gémissements\": \"gem\",\n  \"gênaient\": \"gên\",\n  \"gênait\": \"gên\",\n  \"gênant\": \"gên\",\n  \"gênante\": \"gên\",\n  \"gendarme\": \"gendarm\",\n  \"gendarmer\": \"gendarm\",\n  \"gendarmerie\": \"gendarmer\",\n  \"gendarmes\": \"gendarm\",\n  \"gendre\": \"gendr\",\n  \"gêne\": \"gên\",\n  \"gêné\": \"gên\",\n  \"généalogie\": \"généalog\",\n  \"généalogique\": \"généalog\",\n  \"gênent\": \"gênent\",\n  \"gêner\": \"gên\",\n  \"gênerait\": \"gên\",\n  \"general\": \"general\",\n  \"général\": \"général\",\n  \"générale\": \"général\",\n  \"généralement\": \"général\",\n  \"générales\": \"général\",\n  \"généraux\": \"général\",\n  \"généreuse\": \"géner\",\n  \"généreusement\": \"géner\",\n  \"généreuses\": \"géner\",\n  \"généreux\": \"géner\",\n  \"générosité\": \"généros\",\n  \"gênes\": \"gên\",\n  \"genèse\": \"genes\",\n  \"genève\": \"genev\",\n  \"genevois\": \"genevois\",\n  \"génie\": \"gen\",\n  \"génies\": \"gen\",\n  \"genlis\": \"genl\",\n  \"génoise\": \"génois\",\n  \"genoux\": \"genoux\",\n  \"genre\": \"genr\",\n  \"genres\": \"genr\",\n  \"gens\": \"gen\",\n  \"gentil\": \"gentil\",\n  \"gentilhomme\": \"gentilhomm\",\n  \"gentille\": \"gentill\",\n  \"gentils\": \"gentil\",\n  \"gentilshommes\": \"gentilshomm\",\n  \"gentle\": \"gentl\",\n  \"gentleman\": \"gentleman\",\n  \"gentlemen\": \"gentlemen\",\n  \"géographie\": \"géograph\",\n  \"geôlier\": \"geôli\",\n  \"geôlière\": \"geôli\",\n  \"geôliers\": \"geôli\",\n  \"géomètre\": \"géometr\",\n  \"géométrie\": \"géometr\",\n  \"george\": \"georg\",\n  \"géorgiques\": \"géorgiqu\",\n  \"gerbes\": \"gerb\",\n  \"germain\": \"germain\",\n  \"géronimo\": \"géronimo\",\n  \"geste\": \"gest\",\n  \"gestes\": \"gest\",\n  \"gesticulant\": \"gesticul\",\n  \"ghari\": \"ghar\",\n  \"ghâtes\": \"ghât\",\n  \"ghazepour\": \"ghazepour\",\n  \"gherardi\": \"gherard\",\n  \"ghisleri\": \"ghisler\",\n  \"ghisolfi\": \"ghisolf\",\n  \"ghita\": \"ghit\",\n  \"gia\": \"gi\",\n  \"giacomo\": \"giacomo\",\n  \"gibelotte\": \"gibelott\",\n  \"giberne\": \"gibern\",\n  \"gibier\": \"gibi\",\n  \"gibraltar\": \"gibraltar\",\n  \"gigantesque\": \"gigantesqu\",\n  \"gigantesques\": \"gigantesqu\",\n  \"gilet\": \"gilet\",\n  \"gilets\": \"gilet\",\n  \"giletti\": \"gilet\",\n  \"gin\": \"gin\",\n  \"gina\": \"gin\",\n  \"giovanni\": \"giovann\",\n  \"giovannone\": \"giovannon\",\n  \"giovita\": \"giovit\",\n  \"girafe\": \"giraf\",\n  \"giration\": \"girat\",\n  \"giraud\": \"giraud\",\n  \"girodet\": \"girodet\",\n  \"girofliers\": \"girofli\",\n  \"girondin\": \"girondin\",\n  \"gisaient\": \"gis\",\n  \"gisant\": \"gis\",\n  \"gît\": \"gît\",\n  \"giulia\": \"giuli\",\n  \"giuseppe\": \"giusepp\",\n  \"give\": \"giv\",\n  \"glaçaient\": \"glac\",\n  \"glaçait\": \"glac\",\n  \"glace\": \"glac\",\n  \"glacé\": \"glac\",\n  \"glacée\": \"glac\",\n  \"glacées\": \"glac\",\n  \"glacer\": \"glac\",\n  \"glaces\": \"glac\",\n  \"glacial\": \"glacial\",\n  \"glaciale\": \"glacial\",\n  \"glances\": \"glanc\",\n  \"glapissante\": \"glap\",\n  \"glasgow\": \"glasgow\",\n  \"glissa\": \"gliss\",\n  \"glissaient\": \"gliss\",\n  \"glissait\": \"gliss\",\n  \"glissant\": \"gliss\",\n  \"glisse\": \"gliss\",\n  \"glissé\": \"gliss\",\n  \"glissent\": \"glissent\",\n  \"glisser\": \"gliss\",\n  \"glissera\": \"gliss\",\n  \"glissons\": \"glisson\",\n  \"globe\": \"glob\",\n  \"gloire\": \"gloir\",\n  \"glorieux\": \"glorieux\",\n  \"glory\": \"glory\",\n  \"gloutons\": \"glouton\",\n  \"glu\": \"glu\",\n  \"goa\": \"go\",\n  \"gobelet\": \"gobelet\",\n  \"godart\": \"godart\",\n  \"godavery\": \"godavery\",\n  \"godille\": \"godill\",\n  \"goélette\": \"goélet\",\n  \"goélettes\": \"goélet\",\n  \"goethe\": \"goeth\",\n  \"goguenard\": \"goguenard\",\n  \"goguenards\": \"goguenard\",\n  \"golconde\": \"golcond\",\n  \"goldoni\": \"goldon\",\n  \"golfe\": \"golf\",\n  \"golfes\": \"golf\",\n  \"golgonda\": \"golgond\",\n  \"golgonde\": \"golgond\",\n  \"gonds\": \"gond\",\n  \"gongs\": \"gong\",\n  \"gonzo\": \"gonzo\",\n  \"gorge\": \"gorg\",\n  \"gorgées\": \"gorg\",\n  \"gorges\": \"gorg\",\n  \"gothard\": \"gothard\",\n  \"gothique\": \"gothiqu\",\n  \"gothiques\": \"gothiqu\",\n  \"gouailler\": \"gouaill\",\n  \"goudron\": \"goudron\",\n  \"goulée\": \"goul\",\n  \"gour\": \"gour\",\n  \"gourmande\": \"gourmand\",\n  \"gourmandise\": \"gourmandis\",\n  \"gourmets\": \"gourmet\",\n  \"gousset\": \"gousset\",\n  \"goût\": \"goût\",\n  \"goûta\": \"goût\",\n  \"goûtant\": \"goût\",\n  \"goûte\": \"goût\",\n  \"goûté\": \"goût\",\n  \"goûtées\": \"goût\",\n  \"goûter\": \"goût\",\n  \"goûterait\": \"goût\",\n  \"goûtés\": \"goût\",\n  \"goûts\": \"goût\",\n  \"goutte\": \"goutt\",\n  \"gouttes\": \"goutt\",\n  \"gouvernail\": \"gouvernail\",\n  \"gouvernait\": \"gouvern\",\n  \"gouverne\": \"gouvern\",\n  \"gouverné\": \"gouvern\",\n  \"gouvernement\": \"gouvern\",\n  \"gouvernements\": \"gouvern\",\n  \"gouvernent\": \"gouvernent\",\n  \"gouverner\": \"gouvern\",\n  \"gouverneriez\": \"gouvern\",\n  \"gouverneur\": \"gouverneur\",\n  \"gouverneurs\": \"gouverneur\",\n  \"gouvion\": \"gouvion\",\n  \"government\": \"government\",\n  \"grâce\": \"grâc\",\n  \"grâces\": \"grâc\",\n  \"gracieuse\": \"gracieux\",\n  \"gracieusement\": \"gracieux\",\n  \"gracieuses\": \"gracieux\",\n  \"gracieux\": \"gracieux\",\n  \"grade\": \"grad\",\n  \"graduée\": \"gradu\",\n  \"graduellement\": \"graduel\",\n  \"grain\": \"grain\",\n  \"grains\": \"grain\",\n  \"graisse\": \"graiss\",\n  \"graisser\": \"graiss\",\n  \"grand\": \"grand\",\n  \"grande\": \"grand\",\n  \"grandement\": \"grand\",\n  \"grandes\": \"grand\",\n  \"grandeur\": \"grandeur\",\n  \"grandeurs\": \"grandeur\",\n  \"grandi\": \"grand\",\n  \"grandie\": \"grand\",\n  \"grandiose\": \"grandios\",\n  \"grandis\": \"grand\",\n  \"grandit\": \"grand\",\n  \"grands\": \"grand\",\n  \"granit\": \"gran\",\n  \"grant\": \"grant\",\n  \"granvelle\": \"granvel\",\n  \"grappe\": \"grapp\",\n  \"gras\": \"gras\",\n  \"grasse\": \"grass\",\n  \"gratification\": \"gratif\",\n  \"gratifié\": \"gratifi\",\n  \"gratis\": \"grat\",\n  \"gratius\": \"gratius\",\n  \"gratter\": \"gratt\",\n  \"gratuite\": \"gratuit\",\n  \"gratuitement\": \"gratuit\",\n  \"grave\": \"grav\",\n  \"gravé\": \"grav\",\n  \"gravement\": \"grav\",\n  \"graver\": \"grav\",\n  \"graves\": \"grav\",\n  \"graveur\": \"graveur\",\n  \"gravir\": \"grav\",\n  \"gravissaient\": \"grav\",\n  \"gravitaient\": \"gravit\",\n  \"gravité\": \"gravit\",\n  \"gravures\": \"gravur\",\n  \"gray\": \"gray\",\n  \"gré\": \"gré\",\n  \"great\": \"great\",\n  \"greatly\": \"greatly\",\n  \"grec\": \"grec\",\n  \"grèce\": \"grec\",\n  \"grecque\": \"grecqu\",\n  \"grecques\": \"grecqu\",\n  \"gredin\": \"gredin\",\n  \"gréé\": \"gré\",\n  \"green\": \"green\",\n  \"greenwich\": \"greenwich\",\n  \"gréer\": \"gré\",\n  \"greffier\": \"greffi\",\n  \"grégoire\": \"grégoir\",\n  \"grêles\": \"grêl\",\n  \"grenade\": \"grenad\",\n  \"grenadier\": \"grenadi\",\n  \"grenadiers\": \"grenadi\",\n  \"grenier\": \"greni\",\n  \"grève\": \"grev\",\n  \"grianta\": \"griant\",\n  \"griefs\": \"grief\",\n  \"grièvement\": \"griev\",\n  \"griffe\": \"griff\",\n  \"griffonnages\": \"griffonnag\",\n  \"griffonnait\": \"griffon\",\n  \"grillages\": \"grillag\",\n  \"grille\": \"grill\",\n  \"grillé\": \"grill\",\n  \"grillée\": \"grill\",\n  \"grillées\": \"grill\",\n  \"grilles\": \"grill\",\n  \"grillo\": \"grillo\",\n  \"grimaçant\": \"grimac\",\n  \"grimaçante\": \"grimac\",\n  \"grimaçantes\": \"grimac\",\n  \"grimaçants\": \"grimac\",\n  \"grimace\": \"grimac\",\n  \"grimaces\": \"grimac\",\n  \"grimer\": \"grim\",\n  \"grimpait\": \"grimp\",\n  \"grimpant\": \"grimp\",\n  \"gringalet\": \"gringalet\",\n  \"gris\": \"gris\",\n  \"grisâtre\": \"grisâtr\",\n  \"grise\": \"gris\",\n  \"grisé\": \"gris\",\n  \"grisonnants\": \"grison\",\n  \"grivelé\": \"grivel\",\n  \"grogeot\": \"grogeot\",\n  \"grognement\": \"grogn\",\n  \"grognon\": \"grognon\",\n  \"gronda\": \"grond\",\n  \"grondait\": \"grond\",\n  \"grondant\": \"grond\",\n  \"gronde\": \"grond\",\n  \"grondé\": \"grond\",\n  \"grondée\": \"grond\",\n  \"gronder\": \"grond\",\n  \"gronderez\": \"grond\",\n  \"grondez\": \"grond\",\n  \"groom\": \"groom\",\n  \"gros\": \"gros\",\n  \"groseilles\": \"groseil\",\n  \"grosse\": \"gross\",\n  \"grosses\": \"gross\",\n  \"grossesse\": \"grossess\",\n  \"grosseur\": \"grosseur\",\n  \"grossie\": \"gross\",\n  \"grossier\": \"grossi\",\n  \"grossière\": \"grossi\",\n  \"grossièrement\": \"grossi\",\n  \"grossières\": \"grossi\",\n  \"grossièreté\": \"grossièret\",\n  \"grossièretés\": \"grossièret\",\n  \"grossiers\": \"grossi\",\n  \"grotesque\": \"grotesqu\",\n  \"grotesques\": \"grotesqu\",\n  \"grotte\": \"grott\",\n  \"grottes\": \"grott\",\n  \"grouillait\": \"grouill\",\n  \"groupe\": \"group\",\n  \"groupes\": \"group\",\n  \"grues\": \"gru\",\n  \"guardate\": \"guardat\",\n  \"guèbres\": \"guebr\",\n  \"guenilles\": \"guenill\",\n  \"guépards\": \"guépard\",\n  \"guerchin\": \"guerchin\",\n  \"guère\": \"guer\",\n  \"guéri\": \"guer\",\n  \"guérin\": \"guérin\",\n  \"guérir\": \"guer\",\n  \"guérison\": \"guérison\",\n  \"guérissez\": \"guer\",\n  \"guérit\": \"guer\",\n  \"guérite\": \"guérit\",\n  \"guérites\": \"guérit\",\n  \"guerre\": \"guerr\",\n  \"guerres\": \"guerr\",\n  \"guerriers\": \"guerri\",\n  \"guess\": \"guess\",\n  \"guet\": \"guet\",\n  \"guetta\": \"guet\",\n  \"guettait\": \"guet\",\n  \"guette\": \"guet\",\n  \"guettent\": \"guettent\",\n  \"guetteurs\": \"guetteur\",\n  \"gueule\": \"gueul\",\n  \"gueux\": \"gueux\",\n  \"gui\": \"gui\",\n  \"guichet\": \"guichet\",\n  \"guichetier\": \"guicheti\",\n  \"guidant\": \"guid\",\n  \"guide\": \"guid\",\n  \"guidé\": \"guid\",\n  \"guidée\": \"guid\",\n  \"guider\": \"guid\",\n  \"guidés\": \"guid\",\n  \"guidon\": \"guidon\",\n  \"guignon\": \"guignon\",\n  \"guillotinaient\": \"guillotin\",\n  \"guillotine\": \"guillotin\",\n  \"guillotiné\": \"guillotin\",\n  \"guillotiner\": \"guillotin\",\n  \"guillotinés\": \"guillotin\",\n  \"guindé\": \"guind\",\n  \"guinder\": \"guind\",\n  \"guinée\": \"guin\",\n  \"guinées\": \"guin\",\n  \"guise\": \"guis\",\n  \"guitare\": \"guitar\",\n  \"gustave\": \"gustav\",\n  \"guy\": \"guy\",\n  \"gymnase\": \"gymnas\",\n  \"gymnaste\": \"gymnast\",\n  \"gymnastes\": \"gymnast\",\n  \"gymnastique\": \"gymnast\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"habile\": \"habil\",\n  \"habilement\": \"habil\",\n  \"habiles\": \"habil\",\n  \"habileté\": \"habilet\",\n  \"habilla\": \"habill\",\n  \"habillait\": \"habill\",\n  \"habillant\": \"habill\",\n  \"habille\": \"habill\",\n  \"habillé\": \"habill\",\n  \"habillée\": \"habill\",\n  \"habillement\": \"habill\",\n  \"habiller\": \"habill\",\n  \"habillés\": \"habill\",\n  \"habit\": \"hab\",\n  \"habitais\": \"habit\",\n  \"habitait\": \"habit\",\n  \"habitant\": \"habit\",\n  \"habitants\": \"habit\",\n  \"habitation\": \"habit\",\n  \"habite\": \"habit\",\n  \"habité\": \"habit\",\n  \"habitée\": \"habit\",\n  \"habiter\": \"habit\",\n  \"habiterai\": \"habit\",\n  \"habiteras\": \"habit\",\n  \"habités\": \"habit\",\n  \"habitez\": \"habit\",\n  \"habits\": \"habit\",\n  \"habitude\": \"habitud\",\n  \"habitudes\": \"habitud\",\n  \"habituée\": \"habitu\",\n  \"habituel\": \"habituel\",\n  \"habituelle\": \"habituel\",\n  \"habituellement\": \"habituel\",\n  \"habituelles\": \"habituel\",\n  \"habituels\": \"habituel\",\n  \"habitués\": \"habitu\",\n  \"hache\": \"hach\",\n  \"haches\": \"hach\",\n  \"hagard\": \"hagard\",\n  \"hagards\": \"hagard\",\n  \"haï\": \"haï\",\n  \"haie\": \"hai\",\n  \"haies\": \"hai\",\n  \"haillons\": \"haillon\",\n  \"haine\": \"hain\",\n  \"haines\": \"hain\",\n  \"haineuse\": \"haineux\",\n  \"haineuses\": \"haineux\",\n  \"hair\": \"hair\",\n  \"haïr\": \"haïr\",\n  \"haïraient\": \"haïr\",\n  \"hais\": \"hais\",\n  \"haïssaient\": \"haïss\",\n  \"haïssait\": \"haïss\",\n  \"haïssent\": \"haïssent\",\n  \"hait\": \"hait\",\n  \"hâla\": \"hâl\",\n  \"halage\": \"halag\",\n  \"hâle\": \"hâl\",\n  \"haleine\": \"halein\",\n  \"haletant\": \"halet\",\n  \"halleck\": \"halleck\",\n  \"halte\": \"halt\",\n  \"haltes\": \"halt\",\n  \"hambourg\": \"hambourg\",\n  \"hambourgeois\": \"hambourgeois\",\n  \"hambourgeoise\": \"hambourgeois\",\n  \"hameau\": \"hameau\",\n  \"hampe\": \"hamp\",\n  \"hanche\": \"hanch\",\n  \"hand\": \"hand\",\n  \"hang\": \"hang\",\n  \"hangar\": \"hangar\",\n  \"hantée\": \"hant\",\n  \"hantées\": \"hant\",\n  \"happy\": \"happy\",\n  \"harangua\": \"harangu\",\n  \"haranguer\": \"harangu\",\n  \"harassés\": \"harass\",\n  \"hardes\": \"hard\",\n  \"hardi\": \"hard\",\n  \"hardie\": \"hard\",\n  \"hardies\": \"hard\",\n  \"hardiesse\": \"hardiess\",\n  \"hardiment\": \"hard\",\n  \"hardis\": \"hard\",\n  \"harmonie\": \"harmon\",\n  \"harmonieusement\": \"harmoni\",\n  \"harmonieux\": \"harmoni\",\n  \"harmoniques\": \"harmon\",\n  \"harpe\": \"harp\",\n  \"hasard\": \"hasard\",\n  \"hasarda\": \"hasard\",\n  \"hasardaient\": \"hasard\",\n  \"hasarde\": \"hasard\",\n  \"hasardé\": \"hasard\",\n  \"hasarder\": \"hasard\",\n  \"hasardera\": \"hasard\",\n  \"hasardeuse\": \"hasard\",\n  \"hasardeuses\": \"hasard\",\n  \"hasardeux\": \"hasard\",\n  \"hasards\": \"hasard\",\n  \"hâta\": \"hât\",\n  \"hâtait\": \"hât\",\n  \"hâte\": \"hât\",\n  \"hâté\": \"hât\",\n  \"hâter\": \"hât\",\n  \"hâtèrent\": \"hât\",\n  \"hâtez\": \"hât\",\n  \"hâtons\": \"hâton\",\n  \"haubans\": \"hauban\",\n  \"haubert\": \"haubert\",\n  \"haus\": \"haus\",\n  \"haussant\": \"hauss\",\n  \"haussé\": \"hauss\",\n  \"haussement\": \"hauss\",\n  \"haut\": \"haut\",\n  \"hautain\": \"hautain\",\n  \"hautaine\": \"hautain\",\n  \"haute\": \"haut\",\n  \"hautement\": \"haut\",\n  \"hautes\": \"haut\",\n  \"hauteur\": \"hauteur\",\n  \"hauteurs\": \"hauteur\",\n  \"hauts\": \"haut\",\n  \"havre\": \"havr\",\n  \"hay\": \"hay\",\n  \"hayez\": \"hai\",\n  \"he\": \"he\",\n  \"hé\": \"hé\",\n  \"heaviest\": \"heaviest\",\n  \"hébété\": \"hébet\",\n  \"hébétés\": \"hébet\",\n  \"hein\": \"hein\",\n  \"héla\": \"hel\",\n  \"hélas\": \"hel\",\n  \"hélène\": \"hélen\",\n  \"hélice\": \"hélic\",\n  \"héloïse\": \"héloïs\",\n  \"helvétie\": \"helvet\",\n  \"hémisphère\": \"hémispher\",\n  \"henné\": \"hen\",\n  \"hennissant\": \"hen\",\n  \"hennissement\": \"hen\",\n  \"hennissements\": \"hen\",\n  \"hennit\": \"hen\",\n  \"henri\": \"henr\",\n  \"henriet\": \"henriet\",\n  \"henrietta\": \"henriet\",\n  \"henry\": \"henry\",\n  \"her\": \"her\",\n  \"héraut\": \"héraut\",\n  \"hérauts\": \"héraut\",\n  \"herbe\": \"herb\",\n  \"herbes\": \"herb\",\n  \"hercule\": \"hercul\",\n  \"herculéenne\": \"herculéen\",\n  \"hère\": \"her\",\n  \"héréditaire\": \"héréditair\",\n  \"hérédité\": \"héred\",\n  \"hères\": \"her\",\n  \"hérésie\": \"héres\",\n  \"hérésies\": \"héres\",\n  \"hérisse\": \"her\",\n  \"hérissé\": \"hériss\",\n  \"hérissée\": \"hériss\",\n  \"hérissées\": \"hériss\",\n  \"hérissés\": \"hériss\",\n  \"héritage\": \"héritag\",\n  \"hérité\": \"hérit\",\n  \"héritier\": \"hériti\",\n  \"héritière\": \"hériti\",\n  \"hermétiquement\": \"hermet\",\n  \"hernani\": \"hernan\",\n  \"hérodiade\": \"hérodiad\",\n  \"hérodiades\": \"hérodiad\",\n  \"héroïne\": \"héroïn\",\n  \"héroïque\": \"héroïqu\",\n  \"héroïquement\": \"héroïqu\",\n  \"héroïques\": \"héroïqu\",\n  \"héroïsme\": \"héroïsm\",\n  \"héron\": \"héron\",\n  \"héros\": \"héros\",\n  \"hers\": \"her\",\n  \"hésita\": \"hésit\",\n  \"hésitait\": \"hésit\",\n  \"hésitant\": \"hésit\",\n  \"hésitation\": \"hésit\",\n  \"hésite\": \"hésit\",\n  \"hésité\": \"hésit\",\n  \"hésiter\": \"hésit\",\n  \"hésiterais\": \"hésit\",\n  \"hésiteront\": \"hésit\",\n  \"hésitiez\": \"hésit\",\n  \"hêtre\": \"hêtr\",\n  \"hêtres\": \"hêtr\",\n  \"heure\": \"heur\",\n  \"heures\": \"heur\",\n  \"heureuse\": \"heureux\",\n  \"heureusement\": \"heureux\",\n  \"heureuses\": \"heureux\",\n  \"heureux\": \"heureux\",\n  \"heurtaient\": \"heurt\",\n  \"heurte\": \"heurt\",\n  \"heurter\": \"heurt\",\n  \"hic\": \"hic\",\n  \"hideuse\": \"hideux\",\n  \"hideuses\": \"hideux\",\n  \"hideux\": \"hideux\",\n  \"hier\": \"hi\",\n  \"hiérarchie\": \"hiérarch\",\n  \"hill\": \"hill\",\n  \"himalaya\": \"himalai\",\n  \"hindous\": \"hindous\",\n  \"hip\": \"hip\",\n  \"hippolyte\": \"hippolyt\",\n  \"his\": \"his\",\n  \"hissa\": \"hiss\",\n  \"hissé\": \"hiss\",\n  \"hissées\": \"hiss\",\n  \"histoire\": \"histoir\",\n  \"histoires\": \"histoir\",\n  \"historien\": \"historien\",\n  \"historiens\": \"historien\",\n  \"historique\": \"histor\",\n  \"historiques\": \"histor\",\n  \"histrion\": \"histrion\",\n  \"hitch\": \"hitch\",\n  \"hiver\": \"hiv\",\n  \"ho\": \"ho\",\n  \"hobbes\": \"hobb\",\n  \"hobereau\": \"hobereau\",\n  \"hobereaux\": \"hobereau\",\n  \"hoc\": \"hoc\",\n  \"hochant\": \"hoch\",\n  \"hoche\": \"hoch\",\n  \"holà\": \"holà\",\n  \"holland\": \"holland\",\n  \"hollandais\": \"holland\",\n  \"hollandaises\": \"hollandais\",\n  \"hollande\": \"holland\",\n  \"homélie\": \"homel\",\n  \"homélies\": \"homel\",\n  \"homère\": \"homer\",\n  \"hommage\": \"hommag\",\n  \"hommages\": \"hommag\",\n  \"homme\": \"homm\",\n  \"hommes\": \"homm\",\n  \"hong\": \"hong\",\n  \"hongrois\": \"hongrois\",\n  \"honnête\": \"honnêt\",\n  \"honnêtes\": \"honnêt\",\n  \"honnêteté\": \"honnêtet\",\n  \"honnêtetés\": \"honnêtet\",\n  \"honneur\": \"honneur\",\n  \"honneurs\": \"honneur\",\n  \"honorabilité\": \"honor\",\n  \"honorable\": \"honor\",\n  \"honorables\": \"honor\",\n  \"honore\": \"honor\",\n  \"honoré\": \"honor\",\n  \"honorée\": \"honor\",\n  \"honorent\": \"honorent\",\n  \"honorer\": \"honor\",\n  \"honorera\": \"honor\",\n  \"honorés\": \"honor\",\n  \"honte\": \"hont\",\n  \"honteuse\": \"honteux\",\n  \"honteusement\": \"honteux\",\n  \"honteux\": \"honteux\",\n  \"honur\": \"honur\",\n  \"hook\": \"hook\",\n  \"hôpital\": \"hôpital\",\n  \"hôpitaux\": \"hôpital\",\n  \"horace\": \"horac\",\n  \"horde\": \"hord\",\n  \"horions\": \"horion\",\n  \"horizon\": \"horizon\",\n  \"horloge\": \"horlog\",\n  \"horlogerie\": \"horloger\",\n  \"horloges\": \"horlog\",\n  \"horreur\": \"horreur\",\n  \"horreurs\": \"horreur\",\n  \"horrible\": \"horribl\",\n  \"horriblement\": \"horribl\",\n  \"horribles\": \"horribl\",\n  \"hors\": \"hor\",\n  \"hospice\": \"hospic\",\n  \"hospitalité\": \"hospital\",\n  \"hostie\": \"host\",\n  \"hostile\": \"hostil\",\n  \"hostiles\": \"hostil\",\n  \"hostilité\": \"hostil\",\n  \"hôte\": \"hôt\",\n  \"hôtel\": \"hôtel\",\n  \"hôtels\": \"hôtel\",\n  \"hôtes\": \"hôt\",\n  \"hôtesse\": \"hôtess\",\n  \"hôtesses\": \"hôtess\",\n  \"hotte\": \"hott\",\n  \"hottentots\": \"hottentot\",\n  \"hougly\": \"hougly\",\n  \"houille\": \"houill\",\n  \"houle\": \"houl\",\n  \"houles\": \"houl\",\n  \"houleuse\": \"houleux\",\n  \"housards\": \"housard\",\n  \"house\": \"hous\",\n  \"housse\": \"houss\",\n  \"how\": \"how\",\n  \"hudson\": \"hudson\",\n  \"hugo\": \"hugo\",\n  \"hui\": \"hui\",\n  \"huile\": \"huil\",\n  \"huilé\": \"huil\",\n  \"huissier\": \"huissi\",\n  \"huit\": \"huit\",\n  \"huitième\": \"huitiem\",\n  \"huîtres\": \"huîtr\",\n  \"humain\": \"humain\",\n  \"humaine\": \"humain\",\n  \"humainement\": \"humain\",\n  \"humaines\": \"humain\",\n  \"humains\": \"humain\",\n  \"humait\": \"hum\",\n  \"humaniste\": \"human\",\n  \"humanité\": \"human\",\n  \"humanités\": \"human\",\n  \"humble\": \"humbl\",\n  \"humblement\": \"humbl\",\n  \"humbles\": \"humbl\",\n  \"humboldt\": \"humboldt\",\n  \"hume\": \"hum\",\n  \"humer\": \"hum\",\n  \"humeur\": \"humeur\",\n  \"humide\": \"humid\",\n  \"humides\": \"humid\",\n  \"humidité\": \"humid\",\n  \"humiliant\": \"humili\",\n  \"humiliante\": \"humili\",\n  \"humiliantes\": \"humili\",\n  \"humiliants\": \"humili\",\n  \"humiliation\": \"humili\",\n  \"humiliations\": \"humili\",\n  \"humilie\": \"humil\",\n  \"humilié\": \"humili\",\n  \"humiliée\": \"humili\",\n  \"humilient\": \"humilient\",\n  \"humilier\": \"humili\",\n  \"humiliez\": \"humil\",\n  \"humilité\": \"humil\",\n  \"hune\": \"hun\",\n  \"huniers\": \"huni\",\n  \"hurlante\": \"hurl\",\n  \"hurlements\": \"hurl\",\n  \"hurlent\": \"hurlent\",\n  \"hurler\": \"hurl\",\n  \"hurrah\": \"hurrah\",\n  \"hurrahs\": \"hurrah\",\n  \"hussard\": \"hussard\",\n  \"hussarde\": \"hussard\",\n  \"hussards\": \"hussard\",\n  \"hutte\": \"hutt\",\n  \"huttes\": \"hutt\",\n  \"hvram\": \"hvram\",\n  \"hydrogène\": \"hydrogen\",\n  \"hydrographique\": \"hydrograph\",\n  \"hyères\": \"hyer\",\n  \"hypocrisie\": \"hypocris\",\n  \"hypocrisies\": \"hypocris\",\n  \"hypocrite\": \"hypocrit\",\n  \"hypocrites\": \"hypocrit\",\n  \"hypogées\": \"hypog\",\n  \"hypothèse\": \"hypothes\",\n  \"i\": \"i\",\n  \"iago\": \"iago\",\n  \"ici\": \"ici\",\n  \"ideal\": \"ideal\",\n  \"idéal\": \"idéal\",\n  \"idéale\": \"idéal\",\n  \"idée\": \"idé\",\n  \"idées\": \"idé\",\n  \"identique\": \"ident\",\n  \"identité\": \"ident\",\n  \"idiots\": \"idiot\",\n  \"idolâtrie\": \"idolâtr\",\n  \"idole\": \"idol\",\n  \"ignares\": \"ignar\",\n  \"ignes\": \"igne\",\n  \"ignoble\": \"ignobl\",\n  \"ignobles\": \"ignobl\",\n  \"ignominie\": \"ignomin\",\n  \"ignoraient\": \"ignor\",\n  \"ignorais\": \"ignor\",\n  \"ignorait\": \"ignor\",\n  \"ignorance\": \"ignor\",\n  \"ignorant\": \"ignor\",\n  \"ignorante\": \"ignor\",\n  \"ignore\": \"ignor\",\n  \"ignorent\": \"ignorent\",\n  \"ignorer\": \"ignor\",\n  \"ignores\": \"ignor\",\n  \"ignoriez\": \"ignor\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"il\": \"il\",\n  \"île\": \"île\",\n  \"îles\": \"île\",\n  \"illicites\": \"illicit\",\n  \"illimité\": \"illim\",\n  \"illimitée\": \"illimit\",\n  \"illinois\": \"illinois\",\n  \"illisible\": \"illisibl\",\n  \"illisibles\": \"illisibl\",\n  \"illumina\": \"illumin\",\n  \"illumination\": \"illumin\",\n  \"illuminé\": \"illumin\",\n  \"illuminée\": \"illumin\",\n  \"illuminer\": \"illumin\",\n  \"illusion\": \"illus\",\n  \"illusions\": \"illus\",\n  \"illustrated\": \"illustrated\",\n  \"illustration\": \"illustr\",\n  \"illustre\": \"illustr\",\n  \"illustrer\": \"illustr\",\n  \"illustrissime\": \"illustrissim\",\n  \"îlot\": \"îlot\",\n  \"îlots\": \"îlot\",\n  \"ils\": \"il\",\n  \"image\": \"imag\",\n  \"images\": \"imag\",\n  \"imagina\": \"imagin\",\n  \"imaginaient\": \"imagin\",\n  \"imaginaire\": \"imaginair\",\n  \"imaginaires\": \"imaginair\",\n  \"imaginais\": \"imagin\",\n  \"imaginait\": \"imagin\",\n  \"imaginant\": \"imagin\",\n  \"imagination\": \"imagin\",\n  \"imaginations\": \"imagin\",\n  \"imaginative\": \"imagin\",\n  \"imagine\": \"imagin\",\n  \"imaginé\": \"imagin\",\n  \"imaginer\": \"imagin\",\n  \"imbécile\": \"imbécil\",\n  \"imbéciles\": \"imbécil\",\n  \"imita\": \"imit\",\n  \"imitait\": \"imit\",\n  \"imitant\": \"imit\",\n  \"imitation\": \"imit\",\n  \"imité\": \"imit\",\n  \"imitées\": \"imit\",\n  \"imiter\": \"imit\",\n  \"imman\": \"imman\",\n  \"immanquable\": \"immanqu\",\n  \"immanquablement\": \"immanqu\",\n  \"immédiat\": \"immédiat\",\n  \"immédiate\": \"immédiat\",\n  \"immédiatement\": \"immédiat\",\n  \"immédiates\": \"immédiat\",\n  \"immédiats\": \"immédiat\",\n  \"immense\": \"immens\",\n  \"immensément\": \"immens\",\n  \"immenses\": \"immens\",\n  \"immensité\": \"immens\",\n  \"imminence\": \"imminent\",\n  \"imminent\": \"imminent\",\n  \"immobile\": \"immobil\",\n  \"immobiles\": \"immobil\",\n  \"immolé\": \"immol\",\n  \"immoler\": \"immol\",\n  \"immonde\": \"immond\",\n  \"immoral\": \"immoral\",\n  \"immorales\": \"immoral\",\n  \"immoralité\": \"immoral\",\n  \"immortalisé\": \"immortalis\",\n  \"immortaliser\": \"immortalis\",\n  \"immortel\": \"immortel\",\n  \"immuable\": \"immuabl\",\n  \"imola\": \"imol\",\n  \"impardonnable\": \"impardon\",\n  \"impardonnables\": \"impardon\",\n  \"imparfait\": \"imparf\",\n  \"imparfaite\": \"imparfait\",\n  \"imparfaitement\": \"imparfait\",\n  \"impassibilité\": \"impassibil\",\n  \"impassible\": \"impassibl\",\n  \"impatience\": \"impatient\",\n  \"impatient\": \"impatient\",\n  \"impatienta\": \"impatient\",\n  \"impatientait\": \"impatient\",\n  \"impatientant\": \"impatient\",\n  \"impatientante\": \"impatient\",\n  \"impatiente\": \"impatient\",\n  \"impatienté\": \"impatient\",\n  \"impatientée\": \"impatient\",\n  \"impatienter\": \"impatient\",\n  \"impatientera\": \"impatient\",\n  \"impayable\": \"impai\",\n  \"impénétrable\": \"impénetr\",\n  \"impératif\": \"imper\",\n  \"impératrice\": \"imper\",\n  \"imperceptibles\": \"imperceptibl\",\n  \"imperfection\": \"imperfect\",\n  \"impérial\": \"impérial\",\n  \"impériale\": \"impérial\",\n  \"impériales\": \"impérial\",\n  \"impérieuse\": \"impéri\",\n  \"impérieusement\": \"impéri\",\n  \"impérieux\": \"impéri\",\n  \"impertinence\": \"impertinent\",\n  \"impertinences\": \"impertinent\",\n  \"impertinent\": \"impertinent\",\n  \"impertinente\": \"impertinent\",\n  \"impertinentes\": \"impertinent\",\n  \"imperturbable\": \"imperturb\",\n  \"imperturbablement\": \"imperturb\",\n  \"impétueusement\": \"impétu\",\n  \"impie\": \"impi\",\n  \"impies\": \"impi\",\n  \"impiété\": \"impiet\",\n  \"impitoyable\": \"impitoi\",\n  \"impitoyablement\": \"impitoi\",\n  \"implacable\": \"implac\",\n  \"implicite\": \"implicit\",\n  \"implora\": \"implor\",\n  \"implorer\": \"implor\",\n  \"impoli\": \"impol\",\n  \"impolie\": \"impol\",\n  \"impoliment\": \"impol\",\n  \"importait\": \"import\",\n  \"importance\": \"import\",\n  \"important\": \"import\",\n  \"importante\": \"import\",\n  \"importantes\": \"import\",\n  \"importants\": \"import\",\n  \"importe\": \"import\",\n  \"importée\": \"import\",\n  \"importent\": \"importent\",\n  \"importés\": \"import\",\n  \"importun\": \"importun\",\n  \"importuna\": \"importun\",\n  \"importune\": \"importun\",\n  \"importunités\": \"importun\",\n  \"importuns\": \"importun\",\n  \"imposa\": \"impos\",\n  \"imposaient\": \"impos\",\n  \"imposait\": \"impos\",\n  \"imposant\": \"impos\",\n  \"imposante\": \"impos\",\n  \"impose\": \"impos\",\n  \"imposé\": \"impos\",\n  \"imposée\": \"impos\",\n  \"imposées\": \"impos\",\n  \"imposent\": \"imposent\",\n  \"imposer\": \"impos\",\n  \"imposera\": \"impos\",\n  \"imposèrent\": \"impos\",\n  \"imposés\": \"impos\",\n  \"impositions\": \"imposit\",\n  \"impossibilité\": \"impossibil\",\n  \"impossible\": \"impossibl\",\n  \"impossibles\": \"impossibl\",\n  \"impraticable\": \"impratic\",\n  \"imprécations\": \"imprec\",\n  \"imprégnait\": \"impregn\",\n  \"imprégné\": \"impregn\",\n  \"impresario\": \"impresario\",\n  \"imprescriptibles\": \"imprescriptibl\",\n  \"impression\": \"impress\",\n  \"impressionna\": \"impression\",\n  \"impressionnait\": \"impression\",\n  \"impressions\": \"impress\",\n  \"imprévu\": \"imprévu\",\n  \"imprévue\": \"imprévu\",\n  \"imprévues\": \"imprévu\",\n  \"imprima\": \"imprim\",\n  \"imprimait\": \"imprim\",\n  \"imprime\": \"imprim\",\n  \"imprimé\": \"imprim\",\n  \"imprimée\": \"imprim\",\n  \"imprimées\": \"imprim\",\n  \"imprimer\": \"imprim\",\n  \"imprimerie\": \"imprimer\",\n  \"imprimés\": \"imprim\",\n  \"imprimeur\": \"imprimeur\",\n  \"imprimeurs\": \"imprimeur\",\n  \"improbable\": \"improb\",\n  \"improbables\": \"improb\",\n  \"impromptu\": \"impromptu\",\n  \"impromptue\": \"impromptu\",\n  \"impropre\": \"impropr\",\n  \"improprement\": \"impropr\",\n  \"improvisais\": \"improvis\",\n  \"improvisait\": \"improvis\",\n  \"improvisée\": \"improvis\",\n  \"improvisées\": \"improvis\",\n  \"improvises\": \"improvis\",\n  \"improvisés\": \"improvis\",\n  \"improviste\": \"improv\",\n  \"imprudemment\": \"imprudent\",\n  \"imprudence\": \"imprudent\",\n  \"imprudences\": \"imprudent\",\n  \"imprudent\": \"imprudent\",\n  \"imprudente\": \"imprudent\",\n  \"imprudentes\": \"imprudent\",\n  \"imprudents\": \"imprudent\",\n  \"impudence\": \"impudent\",\n  \"impudent\": \"impudent\",\n  \"impudents\": \"impudent\",\n  \"impuissante\": \"impuiss\",\n  \"impuissants\": \"impuiss\",\n  \"impulsion\": \"impuls\",\n  \"impunément\": \"impun\",\n  \"impunité\": \"impun\",\n  \"imputant\": \"imput\",\n  \"imputations\": \"imput\",\n  \"imputées\": \"imput\",\n  \"imputer\": \"imput\",\n  \"in\": \"in\",\n  \"ina\": \"ina\",\n  \"inaccessible\": \"inaccessibl\",\n  \"inaccessibles\": \"inaccessibl\",\n  \"inaccoutumé\": \"inaccoutum\",\n  \"inaccoutumée\": \"inaccoutum\",\n  \"inaccoutumées\": \"inaccoutum\",\n  \"inaction\": \"inact\",\n  \"inadmissible\": \"inadmissibl\",\n  \"inadmissibles\": \"inadmissibl\",\n  \"inaltérable\": \"inalter\",\n  \"inamovible\": \"inamovibl\",\n  \"inanimé\": \"inanim\",\n  \"inanimée\": \"inanim\",\n  \"inanimés\": \"inanim\",\n  \"inaperçu\": \"inaperçu\",\n  \"inaperçue\": \"inaperçu\",\n  \"inaperçues\": \"inaperçu\",\n  \"inarticulés\": \"inarticul\",\n  \"inattaquable\": \"inattaqu\",\n  \"inattaquables\": \"inattaqu\",\n  \"inattendu\": \"inattendu\",\n  \"inattendue\": \"inattendu\",\n  \"inattention\": \"inattent\",\n  \"inauguration\": \"inaugur\",\n  \"inaugurer\": \"inaugur\",\n  \"incapable\": \"incap\",\n  \"incarne\": \"incarn\",\n  \"incarnée\": \"incarn\",\n  \"incartade\": \"incartad\",\n  \"incedo\": \"incedo\",\n  \"incendiaires\": \"incendiair\",\n  \"incendie\": \"incend\",\n  \"incendies\": \"incend\",\n  \"incertain\": \"incertain\",\n  \"incertaine\": \"incertain\",\n  \"incertains\": \"incertain\",\n  \"incertitude\": \"incertitud\",\n  \"incertitudes\": \"incertitud\",\n  \"incessamment\": \"incess\",\n  \"incessant\": \"incess\",\n  \"incessants\": \"incess\",\n  \"inceste\": \"incest\",\n  \"incident\": \"incident\",\n  \"incidenter\": \"incident\",\n  \"incidents\": \"incident\",\n  \"incisif\": \"incis\",\n  \"incisions\": \"incis\",\n  \"incisive\": \"incis\",\n  \"incisives\": \"incis\",\n  \"inclina\": \"inclin\",\n  \"inclinaient\": \"inclin\",\n  \"inclination\": \"inclin\",\n  \"incliné\": \"inclin\",\n  \"inclinée\": \"inclin\",\n  \"inclinera\": \"inclin\",\n  \"inclus\": \"inclus\",\n  \"incluse\": \"inclus\",\n  \"incognito\": \"incognito\",\n  \"incommensurable\": \"incommensur\",\n  \"incommode\": \"incommod\",\n  \"incommodée\": \"incommod\",\n  \"incommodes\": \"incommod\",\n  \"incommodité\": \"incommod\",\n  \"incomodo\": \"incomodo\",\n  \"incompatible\": \"incompatibl\",\n  \"incompatibles\": \"incompatibl\",\n  \"incomplètes\": \"incomplet\",\n  \"incongruité\": \"incongru\",\n  \"inconnu\": \"inconnu\",\n  \"inconnue\": \"inconnu\",\n  \"inconnus\": \"inconnus\",\n  \"inconsciemment\": \"inconscient\",\n  \"inconsciente\": \"inconscient\",\n  \"inconsidérée\": \"inconsider\",\n  \"inconsolable\": \"inconsol\",\n  \"inconstance\": \"inconst\",\n  \"inconstant\": \"inconst\",\n  \"inconstante\": \"inconst\",\n  \"incontestable\": \"incontest\",\n  \"incontestablement\": \"incontest\",\n  \"inconvenance\": \"inconven\",\n  \"inconvenant\": \"inconven\",\n  \"inconvenante\": \"inconven\",\n  \"inconvenantes\": \"inconven\",\n  \"inconvénient\": \"inconvénient\",\n  \"inconvénients\": \"inconvénient\",\n  \"incorporer\": \"incorpor\",\n  \"incrédule\": \"incrédul\",\n  \"incrédulité\": \"incrédul\",\n  \"incriminait\": \"incrimin\",\n  \"incroyable\": \"incroi\",\n  \"incroyables\": \"incroi\",\n  \"incrusta\": \"incrust\",\n  \"incruster\": \"incrust\",\n  \"incrustés\": \"incrust\",\n  \"incurie\": \"incur\",\n  \"inde\": \"inde\",\n  \"indécence\": \"indécent\",\n  \"indécent\": \"indécent\",\n  \"indécentes\": \"indécent\",\n  \"indécents\": \"indécent\",\n  \"indéchiffrable\": \"indéchiffr\",\n  \"indécis\": \"indec\",\n  \"indécise\": \"indécis\",\n  \"indéfini\": \"indéfin\",\n  \"indéfinissable\": \"indéfiniss\",\n  \"indélicatesse\": \"indélicatess\",\n  \"indemne\": \"indemn\",\n  \"indépendamment\": \"indépend\",\n  \"independance\": \"independ\",\n  \"indépendance\": \"indépend\",\n  \"indépendant\": \"indépend\",\n  \"indépendante\": \"indépend\",\n  \"indépendantes\": \"indépend\",\n  \"indépendants\": \"indépend\",\n  \"indes\": \"inde\",\n  \"indian\": \"indian\",\n  \"indiana\": \"indian\",\n  \"indication\": \"indiqu\",\n  \"indications\": \"indiqu\",\n  \"indices\": \"indic\",\n  \"indicible\": \"indicibl\",\n  \"indicibles\": \"indicibl\",\n  \"indien\": \"indien\",\n  \"indienne\": \"indien\",\n  \"indiens\": \"indien\",\n  \"indifférence\": \"indifférent\",\n  \"indifférent\": \"indifférent\",\n  \"indifférents\": \"indifférent\",\n  \"indigène\": \"indigen\",\n  \"indigènes\": \"indigen\",\n  \"indigna\": \"indign\",\n  \"indignation\": \"indign\",\n  \"indignations\": \"indign\",\n  \"indigne\": \"indign\",\n  \"indigné\": \"indign\",\n  \"indignée\": \"indign\",\n  \"indignement\": \"indign\",\n  \"indigner\": \"indign\",\n  \"indignes\": \"indign\",\n  \"indignés\": \"indign\",\n  \"indigo\": \"indigo\",\n  \"indiqua\": \"indiqu\",\n  \"indiquaient\": \"indiqu\",\n  \"indiquait\": \"indiqu\",\n  \"indiquant\": \"indiqu\",\n  \"indique\": \"indiqu\",\n  \"indiqué\": \"indiqu\",\n  \"indiquée\": \"indiqu\",\n  \"indiquent\": \"indiquent\",\n  \"indiquer\": \"indiqu\",\n  \"indiquera\": \"indiqu\",\n  \"indiquerait\": \"indiqu\",\n  \"indiqués\": \"indiqu\",\n  \"indiquez\": \"indiqu\",\n  \"indirect\": \"indirect\",\n  \"indirecte\": \"indirect\",\n  \"indirectement\": \"indirect\",\n  \"indirectes\": \"indirect\",\n  \"indiscret\": \"indiscret\",\n  \"indiscrète\": \"indiscret\",\n  \"indiscrètes\": \"indiscret\",\n  \"indiscrétion\": \"indiscret\",\n  \"indiscrétions\": \"indiscret\",\n  \"indiscrets\": \"indiscret\",\n  \"indispensable\": \"indispens\",\n  \"indispensables\": \"indispens\",\n  \"indisposé\": \"indispos\",\n  \"indisposée\": \"indispos\",\n  \"indisposition\": \"indisposit\",\n  \"indistincte\": \"indistinct\",\n  \"individu\": \"individu\",\n  \"individuelle\": \"individuel\",\n  \"individus\": \"individus\",\n  \"indou\": \"indou\",\n  \"indoue\": \"indou\",\n  \"indoues\": \"indou\",\n  \"indous\": \"indous\",\n  \"indubitable\": \"indubit\",\n  \"indue\": \"indu\",\n  \"indulgence\": \"indulgent\",\n  \"indulgent\": \"indulgent\",\n  \"indulgente\": \"indulgent\",\n  \"indulgents\": \"indulgent\",\n  \"indus\": \"indus\",\n  \"industrie\": \"industr\",\n  \"industriel\": \"industriel\",\n  \"industrielle\": \"industriel\",\n  \"industriels\": \"industriel\",\n  \"industrieux\": \"industri\",\n  \"inébranlable\": \"inébranl\",\n  \"inedit\": \"ined\",\n  \"inédit\": \"ined\",\n  \"ineffaçable\": \"ineffac\",\n  \"inégal\": \"inégal\",\n  \"inégalement\": \"inégal\",\n  \"inégales\": \"inégal\",\n  \"inélégantes\": \"inéleg\",\n  \"inéprouvé\": \"inéprouv\",\n  \"inepte\": \"inept\",\n  \"ineptes\": \"inept\",\n  \"inépuisable\": \"inépuis\",\n  \"inerte\": \"inert\",\n  \"inespéré\": \"inesper\",\n  \"inévitablement\": \"inévit\",\n  \"inévitables\": \"inévit\",\n  \"inexactitude\": \"inexactitud\",\n  \"inexécutable\": \"inexécut\",\n  \"inexorable\": \"inexor\",\n  \"inexpérimenté\": \"inexpériment\",\n  \"inexplicable\": \"inexplic\",\n  \"inexprimable\": \"inexprim\",\n  \"inexprimables\": \"inexprim\",\n  \"inextricable\": \"inextric\",\n  \"infâme\": \"infâm\",\n  \"infâmes\": \"infâm\",\n  \"infamie\": \"infam\",\n  \"infamies\": \"infam\",\n  \"infanterie\": \"infanter\",\n  \"infatigable\": \"infatig\",\n  \"inférieur\": \"inférieur\",\n  \"inférieure\": \"inférieur\",\n  \"inférieures\": \"inférieur\",\n  \"inférieurs\": \"inférieur\",\n  \"infériorité\": \"inférior\",\n  \"infernale\": \"infernal\",\n  \"infidèle\": \"infidel\",\n  \"infidélité\": \"infidel\",\n  \"infini\": \"infin\",\n  \"infinie\": \"infin\",\n  \"infinies\": \"infin\",\n  \"infiniment\": \"infin\",\n  \"infinis\": \"infin\",\n  \"infinité\": \"infin\",\n  \"infirmerie\": \"infirmer\",\n  \"infirmités\": \"infirm\",\n  \"inflammation\": \"inflamm\",\n  \"infléchit\": \"inflech\",\n  \"infligé\": \"inflig\",\n  \"infligée\": \"inflig\",\n  \"infliger\": \"inflig\",\n  \"influence\": \"influenc\",\n  \"influencer\": \"influenc\",\n  \"influent\": \"influent\",\n  \"influents\": \"influent\",\n  \"influer\": \"influ\",\n  \"informa\": \"inform\",\n  \"informait\": \"inform\",\n  \"informations\": \"inform\",\n  \"informée\": \"inform\",\n  \"informes\": \"inform\",\n  \"informés\": \"inform\",\n  \"infortune\": \"infortun\",\n  \"infortuné\": \"infortun\",\n  \"infortunée\": \"infortun\",\n  \"infortunes\": \"infortun\",\n  \"infortunés\": \"infortun\",\n  \"infraction\": \"infract\",\n  \"infusion\": \"infus\",\n  \"ingénieur\": \"ingénieur\",\n  \"ingénieurs\": \"ingénieur\",\n  \"ingénieuse\": \"ingéni\",\n  \"ingénieusement\": \"ingéni\",\n  \"ingénieuses\": \"ingéni\",\n  \"ingénieux\": \"ingéni\",\n  \"ingénu\": \"ingénu\",\n  \"ingrat\": \"ingrat\",\n  \"ingrate\": \"ingrat\",\n  \"ingratitude\": \"ingratitud\",\n  \"inhabileté\": \"inhabilet\",\n  \"inhabitée\": \"inhabit\",\n  \"inhalation\": \"inhal\",\n  \"inhérent\": \"inhérent\",\n  \"inhérente\": \"inhérent\",\n  \"inhumaine\": \"inhumain\",\n  \"inhumé\": \"inhum\",\n  \"inintelligible\": \"inintelligibl\",\n  \"iniques\": \"iniqu\",\n  \"iniquité\": \"iniqu\",\n  \"initiative\": \"initi\",\n  \"initièrent\": \"initi\",\n  \"injure\": \"injur\",\n  \"injures\": \"injur\",\n  \"injurié\": \"injuri\",\n  \"injurieuse\": \"injuri\",\n  \"injurieuses\": \"injuri\",\n  \"injurieux\": \"injuri\",\n  \"injuste\": \"injust\",\n  \"injustement\": \"injust\",\n  \"injustes\": \"injust\",\n  \"injustice\": \"injustic\",\n  \"injustices\": \"injustic\",\n  \"inn\": \"inn\",\n  \"inné\": \"inné\",\n  \"innée\": \"inné\",\n  \"innocemment\": \"innocent\",\n  \"innocence\": \"innocent\",\n  \"innocent\": \"innocent\",\n  \"innocente\": \"innocent\",\n  \"innocentes\": \"innocent\",\n  \"innombrable\": \"innombr\",\n  \"innombrables\": \"innombr\",\n  \"innovation\": \"innov\",\n  \"inoccupées\": \"inoccup\",\n  \"inoculé\": \"inocul\",\n  \"inoffensif\": \"inoffens\",\n  \"inondaient\": \"inond\",\n  \"inondait\": \"inond\",\n  \"inondation\": \"inond\",\n  \"inondé\": \"inond\",\n  \"inondée\": \"inond\",\n  \"inondées\": \"inond\",\n  \"inonder\": \"inond\",\n  \"inondèrent\": \"inond\",\n  \"inondés\": \"inond\",\n  \"inopinément\": \"inopin\",\n  \"inopportunes\": \"inopportun\",\n  \"inopportuns\": \"inopportun\",\n  \"inouï\": \"inouï\",\n  \"inouïs\": \"inouï\",\n  \"inqualifiable\": \"inqualifi\",\n  \"inquiet\": \"inquiet\",\n  \"inquiéta\": \"inquiet\",\n  \"inquiétait\": \"inquiet\",\n  \"inquiétant\": \"inquiet\",\n  \"inquiétantes\": \"inquiet\",\n  \"inquiétants\": \"inquiet\",\n  \"inquiète\": \"inquiet\",\n  \"inquiéter\": \"inquiet\",\n  \"inquiets\": \"inquiet\",\n  \"inquiétude\": \"inquiétud\",\n  \"inquiétudes\": \"inquiétud\",\n  \"inquisiteurs\": \"inquisiteur\",\n  \"inquisition\": \"inquisit\",\n  \"insaisissable\": \"insaisiss\",\n  \"inscription\": \"inscript\",\n  \"inscriptions\": \"inscript\",\n  \"inscrire\": \"inscrir\",\n  \"inscrit\": \"inscrit\",\n  \"inscrits\": \"inscrit\",\n  \"inscrivit\": \"inscriv\",\n  \"insectes\": \"insect\",\n  \"insensé\": \"insens\",\n  \"insensée\": \"insens\",\n  \"insensés\": \"insens\",\n  \"insensibilité\": \"insensibil\",\n  \"insensible\": \"insensibl\",\n  \"insensiblement\": \"insensibl\",\n  \"insensibles\": \"insensibl\",\n  \"inséparable\": \"insépar\",\n  \"insérer\": \"inser\",\n  \"insigne\": \"insign\",\n  \"insignes\": \"insign\",\n  \"insignifiance\": \"insignifi\",\n  \"insignifiant\": \"insignifi\",\n  \"insignifiante\": \"insignifi\",\n  \"insignifiants\": \"insignifi\",\n  \"insinuera\": \"insinu\",\n  \"insipide\": \"insipid\",\n  \"insipides\": \"insipid\",\n  \"insista\": \"insist\",\n  \"insistait\": \"insist\",\n  \"insistance\": \"insist\",\n  \"insistant\": \"insist\",\n  \"insiste\": \"insist\",\n  \"insisté\": \"insist\",\n  \"insister\": \"insist\",\n  \"insociable\": \"insoci\",\n  \"insolemment\": \"insolent\",\n  \"insolence\": \"insolent\",\n  \"insolences\": \"insolent\",\n  \"insolent\": \"insolent\",\n  \"insolente\": \"insolent\",\n  \"insolents\": \"insolent\",\n  \"insolite\": \"insolit\",\n  \"insolites\": \"insolit\",\n  \"insouciance\": \"insouci\",\n  \"insouciant\": \"insouci\",\n  \"inspecteur\": \"inspecteur\",\n  \"inspecteurs\": \"inspecteur\",\n  \"inspection\": \"inspect\",\n  \"inspira\": \"inspir\",\n  \"inspiraient\": \"inspir\",\n  \"inspirait\": \"inspir\",\n  \"inspirant\": \"inspir\",\n  \"inspiration\": \"inspir\",\n  \"inspirations\": \"inspir\",\n  \"inspire\": \"inspir\",\n  \"inspiré\": \"inspir\",\n  \"inspirée\": \"inspir\",\n  \"inspirées\": \"inspir\",\n  \"inspirent\": \"inspirent\",\n  \"inspirer\": \"inspir\",\n  \"inspirerait\": \"inspir\",\n  \"inspirèrent\": \"inspir\",\n  \"inspires\": \"inspir\",\n  \"inspirés\": \"inspir\",\n  \"inspirez\": \"inspir\",\n  \"instable\": \"instabl\",\n  \"installation\": \"install\",\n  \"installé\": \"install\",\n  \"installée\": \"install\",\n  \"installer\": \"install\",\n  \"installèrent\": \"install\",\n  \"installés\": \"install\",\n  \"instances\": \"instanc\",\n  \"instant\": \"instant\",\n  \"instantané\": \"instantan\",\n  \"instantanément\": \"instantan\",\n  \"instante\": \"instant\",\n  \"instants\": \"instant\",\n  \"instar\": \"instar\",\n  \"instinct\": \"instinct\",\n  \"instinctif\": \"instinct\",\n  \"instinctivement\": \"instinct\",\n  \"institution\": \"institu\",\n  \"institutions\": \"institu\",\n  \"instructif\": \"instruct\",\n  \"instruction\": \"instruct\",\n  \"instructions\": \"instruct\",\n  \"instruire\": \"instruir\",\n  \"instruisait\": \"instruis\",\n  \"instruit\": \"instruit\",\n  \"instrument\": \"instrument\",\n  \"instruments\": \"instrument\",\n  \"insu\": \"insu\",\n  \"insuccès\": \"insucces\",\n  \"insuffisant\": \"insuffis\",\n  \"insuffisante\": \"insuffis\",\n  \"insuffisantes\": \"insuffis\",\n  \"insulta\": \"insult\",\n  \"insultant\": \"insult\",\n  \"insultante\": \"insult\",\n  \"insulte\": \"insult\",\n  \"insulté\": \"insult\",\n  \"insulter\": \"insult\",\n  \"insultes\": \"insult\",\n  \"insulteur\": \"insulteur\",\n  \"insupportable\": \"insupport\",\n  \"insupportables\": \"insupport\",\n  \"insurmontable\": \"insurmont\",\n  \"insurmontables\": \"insurmont\",\n  \"insurrection\": \"insurrect\",\n  \"intact\": \"intact\",\n  \"intègres\": \"integr\",\n  \"intellectuel\": \"intellectuel\",\n  \"intellectuelle\": \"intellectuel\",\n  \"intelligence\": \"intelligent\",\n  \"intelligences\": \"intelligent\",\n  \"intelligent\": \"intelligent\",\n  \"intelligente\": \"intelligent\",\n  \"intelligenti\": \"intelligent\",\n  \"intelligents\": \"intelligent\",\n  \"intelligible\": \"intelligibl\",\n  \"intelligibles\": \"intelligibl\",\n  \"intempestive\": \"intempest\",\n  \"intendant\": \"intend\",\n  \"intense\": \"intens\",\n  \"intenses\": \"intens\",\n  \"intensité\": \"intens\",\n  \"intention\": \"intent\",\n  \"intentionné\": \"intention\",\n  \"intentions\": \"intent\",\n  \"interceptait\": \"intercept\",\n  \"intercepté\": \"intercept\",\n  \"interceptée\": \"intercept\",\n  \"interceptées\": \"intercept\",\n  \"intercepter\": \"intercept\",\n  \"intercepterait\": \"intercept\",\n  \"intercession\": \"intercess\",\n  \"interdire\": \"interdir\",\n  \"interdis\": \"interd\",\n  \"interdit\": \"interd\",\n  \"interdite\": \"interdit\",\n  \"intéressa\": \"intéress\",\n  \"intéressaient\": \"intéress\",\n  \"intéressait\": \"intéress\",\n  \"intéressant\": \"intéress\",\n  \"intéressante\": \"intéress\",\n  \"intéressantes\": \"intéress\",\n  \"intéressants\": \"intéress\",\n  \"intéresse\": \"intéress\",\n  \"intéressé\": \"intéress\",\n  \"intéressée\": \"intéress\",\n  \"intéressent\": \"intéressent\",\n  \"intéresser\": \"intéress\",\n  \"intéresseront\": \"intéress\",\n  \"intéressés\": \"intéress\",\n  \"interet\": \"interet\",\n  \"intérêt\": \"intérêt\",\n  \"interets\": \"interet\",\n  \"intérêts\": \"intérêt\",\n  \"intérieur\": \"intérieur\",\n  \"intérieure\": \"intérieur\",\n  \"intérieurement\": \"intérieur\",\n  \"intérieurs\": \"intérieur\",\n  \"interjections\": \"interject\",\n  \"interlocuteur\": \"interlocuteur\",\n  \"interlocuteurs\": \"interlocuteur\",\n  \"interlope\": \"interlop\",\n  \"intermédiaire\": \"intermédiair\",\n  \"interminable\": \"intermin\",\n  \"interminables\": \"intermin\",\n  \"international\": \"international\",\n  \"interpellé\": \"interpel\",\n  \"interpeller\": \"interpel\",\n  \"interposé\": \"interpos\",\n  \"interpréta\": \"interpret\",\n  \"interprétation\": \"interpret\",\n  \"interprétations\": \"interpret\",\n  \"interprété\": \"interpret\",\n  \"interprétée\": \"interpret\",\n  \"interprètes\": \"interpret\",\n  \"interrogatif\": \"interrog\",\n  \"interrogation\": \"interrog\",\n  \"interrogatoire\": \"interrogatoir\",\n  \"interrogatoires\": \"interrogatoir\",\n  \"interroge\": \"interrog\",\n  \"interrogé\": \"interrog\",\n  \"interrogea\": \"interrog\",\n  \"interrogeant\": \"interrog\",\n  \"interroger\": \"interrog\",\n  \"interrogerait\": \"interrog\",\n  \"interrogez\": \"interrog\",\n  \"interrompait\": \"interromp\",\n  \"interrompant\": \"interromp\",\n  \"interrompirent\": \"interromp\",\n  \"interrompit\": \"interromp\",\n  \"interromprait\": \"interrompr\",\n  \"interrompre\": \"interrompr\",\n  \"interrompt\": \"interrompt\",\n  \"interrompu\": \"interrompu\",\n  \"interrompue\": \"interrompu\",\n  \"interrompues\": \"interrompu\",\n  \"interrompus\": \"interrompus\",\n  \"interrupteur\": \"interrupteur\",\n  \"interruption\": \"interrupt\",\n  \"intervalle\": \"intervall\",\n  \"intervalles\": \"intervall\",\n  \"intervention\": \"intervent\",\n  \"interviendrais\": \"interviendr\",\n  \"intima\": \"intim\",\n  \"intime\": \"intim\",\n  \"intimement\": \"intim\",\n  \"intimes\": \"intim\",\n  \"intimida\": \"intimid\",\n  \"intimidé\": \"intimid\",\n  \"intimident\": \"intimident\",\n  \"intimider\": \"intimid\",\n  \"intimité\": \"intim\",\n  \"intitulés\": \"intitul\",\n  \"intolérable\": \"intoler\",\n  \"intolérables\": \"intoler\",\n  \"intonation\": \"inton\",\n  \"intraitable\": \"intrait\",\n  \"intrépide\": \"intrépid\",\n  \"intrépidement\": \"intrépid\",\n  \"intrépidité\": \"intrépid\",\n  \"intrigant\": \"intrig\",\n  \"intrigante\": \"intrig\",\n  \"intrigants\": \"intrig\",\n  \"intriguait\": \"intrigu\",\n  \"intrigue\": \"intrigu\",\n  \"intrigué\": \"intrigu\",\n  \"intrigues\": \"intrigu\",\n  \"introduction\": \"introduct\",\n  \"introduire\": \"introduir\",\n  \"introduis\": \"introduis\",\n  \"introduisit\": \"introduis\",\n  \"introduit\": \"introduit\",\n  \"introduite\": \"introduit\",\n  \"introduits\": \"introduit\",\n  \"intrus\": \"intrus\",\n  \"inusitée\": \"inusit\",\n  \"inutile\": \"inutil\",\n  \"inutilement\": \"inutil\",\n  \"inutiles\": \"inutil\",\n  \"inutilite\": \"inutilit\",\n  \"inutilité\": \"inutil\",\n  \"invalides\": \"invalid\",\n  \"invariable\": \"invari\",\n  \"invariablement\": \"invari\",\n  \"invariables\": \"invari\",\n  \"invasion\": \"invas\",\n  \"inventaire\": \"inventair\",\n  \"inventait\": \"invent\",\n  \"inventant\": \"invent\",\n  \"invente\": \"invent\",\n  \"inventé\": \"invent\",\n  \"inventée\": \"invent\",\n  \"inventées\": \"invent\",\n  \"inventer\": \"invent\",\n  \"inventèrent\": \"invent\",\n  \"inventeur\": \"inventeur\",\n  \"inventif\": \"invent\",\n  \"invention\": \"invent\",\n  \"inventions\": \"invent\",\n  \"inverse\": \"invers\",\n  \"invincible\": \"invincibl\",\n  \"invinciblement\": \"invincibl\",\n  \"invisible\": \"invisibl\",\n  \"invisibles\": \"invisibl\",\n  \"invita\": \"invit\",\n  \"invitait\": \"invit\",\n  \"invitant\": \"invit\",\n  \"invitation\": \"invit\",\n  \"invitations\": \"invit\",\n  \"invite\": \"invit\",\n  \"invité\": \"invit\",\n  \"inviter\": \"invit\",\n  \"inviterai\": \"invit\",\n  \"invités\": \"invit\",\n  \"inviti\": \"invit\",\n  \"invocation\": \"invoc\",\n  \"involontaire\": \"involontair\",\n  \"involontairement\": \"involontair\",\n  \"invraisemblable\": \"invraisembl\",\n  \"invraisemblables\": \"invraisembl\",\n  \"invraisemblance\": \"invraisembl\",\n  \"invulnérable\": \"invulner\",\n  \"ioniques\": \"ioniqu\",\n  \"iowa\": \"iow\",\n  \"ira\": \"ira\",\n  \"irai\": \"irai\",\n  \"iraient\": \"iraient\",\n  \"irais\": \"irais\",\n  \"irait\": \"irait\",\n  \"iras\": \"iras\",\n  \"irascible\": \"irascibl\",\n  \"irez\": \"irez\",\n  \"iriez\": \"iri\",\n  \"irlande\": \"irland\",\n  \"ironie\": \"iron\",\n  \"ironique\": \"iron\",\n  \"irons\": \"iron\",\n  \"iront\": \"iront\",\n  \"irrégulière\": \"irréguli\",\n  \"irrégulièrement\": \"irréguli\",\n  \"irréguliers\": \"irréguli\",\n  \"irrémédiable\": \"irrémédi\",\n  \"irrémissiblement\": \"irrémissibl\",\n  \"irréparable\": \"irrépar\",\n  \"irréparablement\": \"irrépar\",\n  \"irréprochable\": \"irréproch\",\n  \"irréprochables\": \"irréproch\",\n  \"irrésistible\": \"irrésistibl\",\n  \"irrésistiblement\": \"irrésistibl\",\n  \"irrésistibles\": \"irrésistibl\",\n  \"irrésolution\": \"irrésolu\",\n  \"irrésolutions\": \"irrésolu\",\n  \"irresponsable\": \"irrespons\",\n  \"irréussites\": \"irréussit\",\n  \"irrévocablement\": \"irrévoc\",\n  \"irriguaient\": \"irrigu\",\n  \"irrita\": \"irrit\",\n  \"irritable\": \"irrit\",\n  \"irritaient\": \"irrit\",\n  \"irritait\": \"irrit\",\n  \"irritant\": \"irrit\",\n  \"irritation\": \"irrit\",\n  \"irrite\": \"irrit\",\n  \"irrité\": \"irrit\",\n  \"irritée\": \"irrit\",\n  \"irriter\": \"irrit\",\n  \"irritèrent\": \"irrit\",\n  \"irruption\": \"irrupt\",\n  \"is\": \"is\",\n  \"island\": \"island\",\n  \"isole\": \"isol\",\n  \"isolé\": \"isol\",\n  \"isolée\": \"isol\",\n  \"isolement\": \"isol\",\n  \"isolés\": \"isol\",\n  \"isota\": \"isot\",\n  \"israël\": \"israël\",\n  \"issu\": \"issu\",\n  \"issue\": \"issu\",\n  \"issues\": \"issu\",\n  \"it\": \"it\",\n  \"ita\": \"ita\",\n  \"italie\": \"ital\",\n  \"italien\": \"italien\",\n  \"italienne\": \"italien\",\n  \"italiennes\": \"italien\",\n  \"italiens\": \"italien\",\n  \"itinéraire\": \"itinérair\",\n  \"itou\": \"itou\",\n  \"its\": \"it\",\n  \"itself\": \"itself\",\n  \"iv\": \"iv\",\n  \"ivoire\": \"ivoir\",\n  \"ivre\": \"ivre\",\n  \"ivres\": \"ivre\",\n  \"ivresse\": \"ivress\",\n  \"ivrogne\": \"ivrogn\",\n  \"ivrognes\": \"ivrogn\",\n  \"ix\": \"ix\",\n  \"j\": \"j\",\n  \"jacobin\": \"jacobin\",\n  \"jacobine\": \"jacobin\",\n  \"jacobinisme\": \"jacobin\",\n  \"jacobins\": \"jacobin\",\n  \"jacopo\": \"jacopo\",\n  \"jacques\": \"jacqu\",\n  \"jadis\": \"jad\",\n  \"jaggernaut\": \"jaggernaut\",\n  \"jailli\": \"jaill\",\n  \"jaillissaient\": \"jaill\",\n  \"jais\": \"jais\",\n  \"jalousait\": \"jalous\",\n  \"jalouse\": \"jalous\",\n  \"jalousé\": \"jalous\",\n  \"jalouses\": \"jalous\",\n  \"jalousie\": \"jalous\",\n  \"jalousies\": \"jalous\",\n  \"jaloux\": \"jaloux\",\n  \"jamais\": \"jam\",\n  \"jambe\": \"jamb\",\n  \"jambes\": \"jamb\",\n  \"james\": \"jam\",\n  \"jansénisme\": \"jansen\",\n  \"janséniste\": \"jansen\",\n  \"jansénistes\": \"jansen\",\n  \"jante\": \"jant\",\n  \"janvier\": \"janvi\",\n  \"japon\": \"japon\",\n  \"japonais\": \"japon\",\n  \"japonaise\": \"japonais\",\n  \"japonaisé\": \"japonais\",\n  \"japonaises\": \"japonais\",\n  \"jaquette\": \"jaquet\",\n  \"jardin\": \"jardin\",\n  \"jardinage\": \"jardinag\",\n  \"jardinier\": \"jardini\",\n  \"jardins\": \"jardin\",\n  \"jarnac\": \"jarnac\",\n  \"jarrets\": \"jarret\",\n  \"jasant\": \"jas\",\n  \"jasent\": \"jasent\",\n  \"jaser\": \"jas\",\n  \"jasmin\": \"jasmin\",\n  \"jaugeant\": \"jaug\",\n  \"jaunâtres\": \"jaunâtr\",\n  \"jaune\": \"jaun\",\n  \"jaunes\": \"jaun\",\n  \"jaunets\": \"jaunet\",\n  \"jaunies\": \"jaun\",\n  \"je\": \"je\",\n  \"jean\": \"jean\",\n  \"jeannes\": \"jeann\",\n  \"jejeebhoy\": \"jejeebhoy\",\n  \"jejeeh\": \"jejeeh\",\n  \"jenrel\": \"jenrel\",\n  \"jérémiades\": \"jérémiad\",\n  \"jérôme\": \"jérôm\",\n  \"jersey\": \"jersey\",\n  \"jérusalem\": \"jérusalem\",\n  \"jest\": \"jest\",\n  \"jésuite\": \"jésuit\",\n  \"jésuites\": \"jésuit\",\n  \"jésuitique\": \"jésuit\",\n  \"jésuitisme\": \"jésuit\",\n  \"jésus\": \"jésus\",\n  \"jeta\": \"jet\",\n  \"jetaient\": \"jet\",\n  \"jetait\": \"jet\",\n  \"jetant\": \"jet\",\n  \"jetât\": \"jet\",\n  \"jeté\": \"jet\",\n  \"jetée\": \"jet\",\n  \"jetées\": \"jet\",\n  \"jeter\": \"jet\",\n  \"jetèrent\": \"jet\",\n  \"jetés\": \"jet\",\n  \"jetez\": \"jet\",\n  \"jetons\": \"jeton\",\n  \"jette\": \"jet\",\n  \"jettent\": \"jettent\",\n  \"jetterais\": \"jet\",\n  \"jetterait\": \"jet\",\n  \"jetterez\": \"jet\",\n  \"jeu\": \"jeu\",\n  \"jeudi\": \"jeud\",\n  \"jeudis\": \"jeud\",\n  \"jeun\": \"jeun\",\n  \"jeûnant\": \"jeûn\",\n  \"jeune\": \"jeun\",\n  \"jeûne\": \"jeûn\",\n  \"jeunes\": \"jeun\",\n  \"jeûnes\": \"jeûn\",\n  \"jeunesse\": \"jeuness\",\n  \"jeux\": \"jeux\",\n  \"joe\": \"jo\",\n  \"john\": \"john\",\n  \"joie\": \"joi\",\n  \"joies\": \"joi\",\n  \"joignait\": \"joign\",\n  \"joignant\": \"joign\",\n  \"joignit\": \"joign\",\n  \"joindre\": \"joindr\",\n  \"joint\": \"joint\",\n  \"jointe\": \"joint\",\n  \"jointes\": \"joint\",\n  \"joli\": \"jol\",\n  \"jolie\": \"jol\",\n  \"jolies\": \"jol\",\n  \"joliment\": \"jol\",\n  \"jolis\": \"jol\",\n  \"jonc\": \"jonc\",\n  \"jonché\": \"jonch\",\n  \"jonglaient\": \"jongl\",\n  \"jonglait\": \"jongl\",\n  \"jonglerie\": \"jongler\",\n  \"jongleurs\": \"jongleur\",\n  \"jonques\": \"jonqu\",\n  \"jonquille\": \"jonquill\",\n  \"joseph\": \"joseph\",\n  \"joua\": \"jou\",\n  \"jouaient\": \"jou\",\n  \"jouait\": \"jou\",\n  \"jouant\": \"jou\",\n  \"jouât\": \"jou\",\n  \"joue\": \"jou\",\n  \"joué\": \"jou\",\n  \"jouée\": \"jou\",\n  \"jouer\": \"jou\",\n  \"jouera\": \"jou\",\n  \"jouerai\": \"jou\",\n  \"joueraient\": \"jou\",\n  \"jouerais\": \"jou\",\n  \"jouerait\": \"jou\",\n  \"joues\": \"jou\",\n  \"joueur\": \"joueur\",\n  \"joueurs\": \"joueur\",\n  \"jouez\": \"jou\",\n  \"joui\": \"jou\",\n  \"jouir\": \"jou\",\n  \"jouira\": \"jou\",\n  \"jouirait\": \"jou\",\n  \"jouiras\": \"jou\",\n  \"jouis\": \"jou\",\n  \"jouissaient\": \"jou\",\n  \"jouissait\": \"jou\",\n  \"jouissance\": \"jouiss\",\n  \"jouissances\": \"jouiss\",\n  \"jouissant\": \"jou\",\n  \"jouisse\": \"jou\",\n  \"jouissent\": \"jou\",\n  \"jouissons\": \"jou\",\n  \"jouit\": \"jou\",\n  \"joujoux\": \"joujoux\",\n  \"joumate\": \"joumat\",\n  \"jouons\": \"jouon\",\n  \"jour\": \"jour\",\n  \"jourdain\": \"jourdain\",\n  \"jourdan\": \"jourdan\",\n  \"journal\": \"journal\",\n  \"journalière\": \"journali\",\n  \"journalistes\": \"journal\",\n  \"journaux\": \"journal\",\n  \"journée\": \"journ\",\n  \"journées\": \"journ\",\n  \"journellement\": \"journel\",\n  \"jours\": \"jour\",\n  \"joyeuse\": \"joyeux\",\n  \"joyeusement\": \"joyeux\",\n  \"joyeux\": \"joyeux\",\n  \"juan\": \"juan\",\n  \"jucha\": \"juch\",\n  \"juché\": \"juch\",\n  \"judiciaires\": \"judiciair\",\n  \"judicieux\": \"judici\",\n  \"judith\": \"judith\",\n  \"juge\": \"jug\",\n  \"jugé\": \"jug\",\n  \"jugea\": \"jug\",\n  \"jugeait\": \"jug\",\n  \"jugeant\": \"jug\",\n  \"jugement\": \"jug\",\n  \"jugements\": \"jug\",\n  \"jugent\": \"jugent\",\n  \"juger\": \"jug\",\n  \"jugera\": \"jug\",\n  \"jugerai\": \"jug\",\n  \"jugeront\": \"jug\",\n  \"juges\": \"jug\",\n  \"jugés\": \"jug\",\n  \"jugez\": \"jug\",\n  \"juif\": \"juif\",\n  \"juifs\": \"juif\",\n  \"juillet\": \"juillet\",\n  \"juin\": \"juin\",\n  \"jules\": \"jul\",\n  \"julesburgh\": \"julesburgh\",\n  \"julia\": \"juli\",\n  \"julien\": \"julien\",\n  \"jumna\": \"jumn\",\n  \"junction\": \"junction\",\n  \"jungles\": \"jungl\",\n  \"junior\": \"junior\",\n  \"jupon\": \"jupon\",\n  \"jura\": \"jur\",\n  \"juraient\": \"jur\",\n  \"jurait\": \"jur\",\n  \"jurant\": \"jur\",\n  \"jure\": \"jur\",\n  \"juré\": \"jur\",\n  \"jurée\": \"jur\",\n  \"jurement\": \"jur\",\n  \"jurements\": \"jur\",\n  \"jurer\": \"jur\",\n  \"jurerai\": \"jur\",\n  \"jurerais\": \"jur\",\n  \"jures\": \"jur\",\n  \"jurés\": \"jur\",\n  \"jurez\": \"jur\",\n  \"jurisconsulte\": \"jurisconsult\",\n  \"jurisconsultes\": \"jurisconsult\",\n  \"juron\": \"juron\",\n  \"jurons\": \"juron\",\n  \"jury\": \"jury\",\n  \"jusqu\": \"jusqu\",\n  \"jusque\": \"jusqu\",\n  \"jusques\": \"jusqu\",\n  \"just\": \"just\",\n  \"juste\": \"just\",\n  \"justement\": \"just\",\n  \"justes\": \"just\",\n  \"justesse\": \"justess\",\n  \"justice\": \"justic\",\n  \"justifia\": \"justifi\",\n  \"justifiait\": \"justifi\",\n  \"justificatif\": \"justif\",\n  \"justification\": \"justif\",\n  \"justifications\": \"justif\",\n  \"justifie\": \"justif\",\n  \"justifié\": \"justifi\",\n  \"justifiée\": \"justifi\",\n  \"justifier\": \"justifi\",\n  \"kâli\": \"kâl\",\n  \"kalisky\": \"kalisky\",\n  \"kallenger\": \"kalleng\",\n  \"kama\": \"kam\",\n  \"kamerfield\": \"kamerfield\",\n  \"kandallah\": \"kandallah\",\n  \"kanhérie\": \"kanher\",\n  \"kansas\": \"kans\",\n  \"kant\": \"kant\",\n  \"kauffmann\": \"kauffmann\",\n  \"kearney\": \"kearney\",\n  \"kehl\": \"kehl\",\n  \"kent\": \"kent\",\n  \"khajours\": \"khajour\",\n  \"khandeish\": \"khandeish\",\n  \"kholby\": \"kholby\",\n  \"kien\": \"kien\",\n  \"kilomètres\": \"kilometr\",\n  \"kind\": \"kind\",\n  \"kiouni\": \"kioun\",\n  \"kirimon\": \"kirimon\",\n  \"kirkland\": \"kirkland\",\n  \"kléber\": \"kleb\",\n  \"kong\": \"kong\",\n  \"korasoff\": \"korasoff\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"là\": \"là\",\n  \"laborieusement\": \"labori\",\n  \"laborieux\": \"labori\",\n  \"labourée\": \"labour\",\n  \"lac\": \"lac\",\n  \"lâcha\": \"lâch\",\n  \"lachaise\": \"lachais\",\n  \"lâchait\": \"lâch\",\n  \"lâche\": \"lâch\",\n  \"lâchement\": \"lâch\",\n  \"lâcher\": \"lâch\",\n  \"lâches\": \"lâch\",\n  \"lâcheté\": \"lâchet\",\n  \"lâchez\": \"lâch\",\n  \"laconiquement\": \"lacon\",\n  \"lacs\": \"lac\",\n  \"ladislas\": \"ladisl\",\n  \"ladri\": \"ladr\",\n  \"lafayette\": \"lafayet\",\n  \"lago\": \"lago\",\n  \"laïc\": \"laïc\",\n  \"laïcs\": \"laïc\",\n  \"laid\": \"laid\",\n  \"laide\": \"laid\",\n  \"laides\": \"laid\",\n  \"laideur\": \"laideur\",\n  \"laideurs\": \"laideur\",\n  \"laine\": \"lain\",\n  \"laïque\": \"laïqu\",\n  \"laissa\": \"laiss\",\n  \"laissaient\": \"laiss\",\n  \"laissais\": \"laiss\",\n  \"laissait\": \"laiss\",\n  \"laissant\": \"laiss\",\n  \"laissât\": \"laiss\",\n  \"laisse\": \"laiss\",\n  \"laissé\": \"laiss\",\n  \"laissée\": \"laiss\",\n  \"laissées\": \"laiss\",\n  \"laissent\": \"laissent\",\n  \"laisser\": \"laiss\",\n  \"laissera\": \"laiss\",\n  \"laisserai\": \"laiss\",\n  \"laisserais\": \"laiss\",\n  \"laisserait\": \"laiss\",\n  \"laissèrent\": \"laiss\",\n  \"laisserez\": \"laiss\",\n  \"laissés\": \"laiss\",\n  \"laissez\": \"laiss\",\n  \"laissions\": \"laission\",\n  \"laissons\": \"laisson\",\n  \"lait\": \"lait\",\n  \"laiterie\": \"laiter\",\n  \"laiton\": \"laiton\",\n  \"laitue\": \"laitu\",\n  \"lake\": \"lak\",\n  \"lambeau\": \"lambeau\",\n  \"lambeaux\": \"lambeau\",\n  \"lambris\": \"lambr\",\n  \"lambrissée\": \"lambriss\",\n  \"lame\": \"lam\",\n  \"lamée\": \"lam\",\n  \"lamentable\": \"lament\",\n  \"lamentables\": \"lament\",\n  \"lames\": \"lam\",\n  \"lampe\": \"lamp\",\n  \"lampes\": \"lamp\",\n  \"lança\": \"lanc\",\n  \"lançaient\": \"lanc\",\n  \"lançait\": \"lanc\",\n  \"lançant\": \"lanc\",\n  \"lance\": \"lanc\",\n  \"lancé\": \"lanc\",\n  \"lancée\": \"lanc\",\n  \"lancer\": \"lanc\",\n  \"lancés\": \"lanc\",\n  \"landau\": \"landau\",\n  \"landes\": \"land\",\n  \"landriani\": \"landrian\",\n  \"langage\": \"langag\",\n  \"lange\": \"lang\",\n  \"langue\": \"langu\",\n  \"languedoc\": \"languedoc\",\n  \"langues\": \"langu\",\n  \"langueur\": \"langueur\",\n  \"languir\": \"languir\",\n  \"languis\": \"languis\",\n  \"languissait\": \"languiss\",\n  \"languissante\": \"languiss\",\n  \"lanterne\": \"lantern\",\n  \"lanternes\": \"lantern\",\n  \"lapidaire\": \"lapidair\",\n  \"lapin\": \"lapin\",\n  \"laps\": \"lap\",\n  \"laquais\": \"laqu\",\n  \"laque\": \"laqu\",\n  \"laquelle\": \"laquel\",\n  \"laramie\": \"laram\",\n  \"lard\": \"lard\",\n  \"larga\": \"larg\",\n  \"large\": \"larg\",\n  \"largement\": \"larg\",\n  \"larges\": \"larg\",\n  \"largeur\": \"largeur\",\n  \"larguait\": \"largu\",\n  \"largue\": \"largu\",\n  \"larme\": \"larm\",\n  \"larmes\": \"larm\",\n  \"las\": \"las\",\n  \"lascia\": \"lasci\",\n  \"lassa\": \"lass\",\n  \"lasse\": \"lass\",\n  \"lasser\": \"lass\",\n  \"lasseront\": \"lass\",\n  \"last\": \"last\",\n  \"lataniers\": \"latani\",\n  \"latérale\": \"latéral\",\n  \"latérales\": \"latéral\",\n  \"latin\": \"latin\",\n  \"latinam\": \"latinam\",\n  \"latine\": \"latin\",\n  \"latines\": \"latin\",\n  \"latiniste\": \"latin\",\n  \"latinité\": \"latin\",\n  \"latins\": \"latin\",\n  \"laudanum\": \"laudanum\",\n  \"laughter\": \"laught\",\n  \"lauréat\": \"lauréat\",\n  \"laurent\": \"laurent\",\n  \"laurier\": \"lauri\",\n  \"lauriers\": \"lauri\",\n  \"lausanne\": \"lausann\",\n  \"lavalette\": \"lavalet\",\n  \"lave\": \"lav\",\n  \"laveno\": \"laveno\",\n  \"laver\": \"lav\",\n  \"laye\": \"lay\",\n  \"le\": \"le\",\n  \"least\": \"least\",\n  \"lecco\": \"lecco\",\n  \"leçon\": \"leçon\",\n  \"leçons\": \"leçon\",\n  \"lecteur\": \"lecteur\",\n  \"lecteurs\": \"lecteur\",\n  \"lectrice\": \"lectric\",\n  \"lecture\": \"lectur\",\n  \"ledit\": \"led\",\n  \"left\": \"left\",\n  \"légale\": \"légal\",\n  \"légalement\": \"légal\",\n  \"légalité\": \"légal\",\n  \"légation\": \"légat\",\n  \"légendaire\": \"légendair\",\n  \"légendes\": \"légend\",\n  \"leger\": \"leg\",\n  \"léger\": \"leg\",\n  \"légère\": \"léger\",\n  \"légèrement\": \"léger\",\n  \"légères\": \"léger\",\n  \"légèreté\": \"légèret\",\n  \"légers\": \"léger\",\n  \"légion\": \"légion\",\n  \"législateur\": \"législ\",\n  \"législateurs\": \"législ\",\n  \"législature\": \"législatur\",\n  \"legitime\": \"legitim\",\n  \"légitime\": \"légitim\",\n  \"légitimes\": \"légitim\",\n  \"légitimité\": \"légitim\",\n  \"legs\": \"leg\",\n  \"légua\": \"légu\",\n  \"lègue\": \"lègu\",\n  \"légué\": \"légu\",\n  \"leipsick\": \"leipsick\",\n  \"lek\": \"lek\",\n  \"lélio\": \"lélio\",\n  \"lendemain\": \"lendemain\",\n  \"lent\": \"lent\",\n  \"lente\": \"lent\",\n  \"lentement\": \"lent\",\n  \"lentes\": \"lent\",\n  \"lenteur\": \"lenteur\",\n  \"lenteurs\": \"lenteur\",\n  \"lents\": \"lent\",\n  \"leo\": \"leo\",\n  \"léonard\": \"léonard\",\n  \"léontine\": \"léontin\",\n  \"léotard\": \"léotard\",\n  \"lépidoptères\": \"lépidopter\",\n  \"lequel\": \"lequel\",\n  \"leroy\": \"leroy\",\n  \"les\": \"le\",\n  \"lés\": \"lé\",\n  \"lescaut\": \"lescaut\",\n  \"lesdits\": \"lesdit\",\n  \"lèse\": \"les\",\n  \"lésineries\": \"lésiner\",\n  \"lesquelles\": \"lesquel\",\n  \"lesquels\": \"lesquel\",\n  \"less\": \"less\",\n  \"lesseps\": \"lessep\",\n  \"lest\": \"lest\",\n  \"leste\": \"lest\",\n  \"lestement\": \"lest\",\n  \"lester\": \"lest\",\n  \"léthargique\": \"létharg\",\n  \"lettre\": \"lettr\",\n  \"lettres\": \"lettr\",\n  \"leur\": \"leur\",\n  \"leurs\": \"leur\",\n  \"leva\": \"lev\",\n  \"levait\": \"lev\",\n  \"levant\": \"lev\",\n  \"lève\": \"lev\",\n  \"levé\": \"lev\",\n  \"levée\": \"lev\",\n  \"levées\": \"lev\",\n  \"lèvent\": \"lèvent\",\n  \"lever\": \"lev\",\n  \"lèvera\": \"lev\",\n  \"levèrent\": \"lev\",\n  \"levez\": \"lev\",\n  \"levier\": \"levi\",\n  \"leviers\": \"levi\",\n  \"levis\": \"lev\",\n  \"lévite\": \"lévit\",\n  \"lèvre\": \"levr\",\n  \"lèvres\": \"levr\",\n  \"lia\": \"li\",\n  \"liaison\": \"liaison\",\n  \"liaisons\": \"liaison\",\n  \"liant\": \"li\",\n  \"liard\": \"liard\",\n  \"liasse\": \"li\",\n  \"liasses\": \"li\",\n  \"liât\": \"li\",\n  \"libellé\": \"libel\",\n  \"libellée\": \"libel\",\n  \"libéral\": \"libéral\",\n  \"libérales\": \"libéral\",\n  \"libéralisme\": \"libéral\",\n  \"libérateur\": \"liber\",\n  \"libéraux\": \"libéral\",\n  \"liberté\": \"libert\",\n  \"libertin\": \"libertin\",\n  \"libertinage\": \"libertinag\",\n  \"libraire\": \"librair\",\n  \"libraires\": \"librair\",\n  \"libre\": \"libr\",\n  \"librement\": \"libr\",\n  \"libres\": \"libr\",\n  \"lichtenberg\": \"lichtenberg\",\n  \"lie\": \"li\",\n  \"lié\": \"li\",\n  \"liée\": \"li\",\n  \"liées\": \"li\",\n  \"liège\": \"lieg\",\n  \"lien\": \"lien\",\n  \"liens\": \"lien\",\n  \"lier\": \"li\",\n  \"lierre\": \"lierr\",\n  \"liés\": \"li\",\n  \"lieu\": \"lieu\",\n  \"lieue\": \"lieu\",\n  \"lieues\": \"lieu\",\n  \"lieutenance\": \"lieuten\",\n  \"lieutenant\": \"lieuten\",\n  \"lieutenants\": \"lieuten\",\n  \"lieux\": \"lieux\",\n  \"liéven\": \"liéven\",\n  \"lièvre\": \"lievr\",\n  \"lièvres\": \"lievr\",\n  \"light\": \"light\",\n  \"ligne\": \"lign\",\n  \"lignes\": \"lign\",\n  \"ligny\": \"ligny\",\n  \"ligorio\": \"ligorio\",\n  \"ligue\": \"ligu\",\n  \"ligués\": \"ligu\",\n  \"lilliputiens\": \"lilliputien\",\n  \"limercati\": \"limercat\",\n  \"limite\": \"limit\",\n  \"limites\": \"limit\",\n  \"limpide\": \"limpid\",\n  \"limpides\": \"limpid\",\n  \"lincoln\": \"lincoln\",\n  \"line\": \"lin\",\n  \"linge\": \"ling\",\n  \"lingère\": \"linger\",\n  \"lingot\": \"lingot\",\n  \"linguam\": \"linguam\",\n  \"lion\": \"lion\",\n  \"lip\": \"lip\",\n  \"liqueur\": \"liqueur\",\n  \"liqueurs\": \"liqueur\",\n  \"liquide\": \"liquid\",\n  \"liquidée\": \"liquid\",\n  \"lira\": \"lir\",\n  \"lirai\": \"lir\",\n  \"liras\": \"lir\",\n  \"lire\": \"lir\",\n  \"lis\": \"lis\",\n  \"lisaient\": \"lis\",\n  \"lisait\": \"lis\",\n  \"lisant\": \"lis\",\n  \"lisard\": \"lisard\",\n  \"lisent\": \"lisent\",\n  \"lisez\": \"lis\",\n  \"lisible\": \"lisibl\",\n  \"lisière\": \"lisi\",\n  \"lisse\": \"liss\",\n  \"lisses\": \"liss\",\n  \"liste\": \"list\",\n  \"lit\": \"lit\",\n  \"litanies\": \"litan\",\n  \"lithographiée\": \"lithographi\",\n  \"lithographies\": \"lithograph\",\n  \"litière\": \"liti\",\n  \"litières\": \"liti\",\n  \"lits\": \"lit\",\n  \"littéraire\": \"littérair\",\n  \"littéraires\": \"littérair\",\n  \"littéralement\": \"littéral\",\n  \"littérature\": \"littératur\",\n  \"little\": \"littl\",\n  \"live\": \"liv\",\n  \"liverpool\": \"liverpool\",\n  \"liveru\": \"liveru\",\n  \"livra\": \"livr\",\n  \"livraient\": \"livr\",\n  \"livrais\": \"livr\",\n  \"livrait\": \"livr\",\n  \"livre\": \"livr\",\n  \"livré\": \"livr\",\n  \"livrée\": \"livr\",\n  \"livrées\": \"livr\",\n  \"livrer\": \"livr\",\n  \"livres\": \"livr\",\n  \"livrés\": \"livr\",\n  \"livret\": \"livret\",\n  \"ll\": \"ll\",\n  \"locale\": \"local\",\n  \"locarno\": \"locarno\",\n  \"locataire\": \"locatair\",\n  \"location\": \"locat\",\n  \"loch\": \"loch\",\n  \"locke\": \"lock\",\n  \"locomotion\": \"locomot\",\n  \"locomotive\": \"locomot\",\n  \"locomotives\": \"locomot\",\n  \"lodge\": \"lodg\",\n  \"lodi\": \"lod\",\n  \"loge\": \"log\",\n  \"logé\": \"log\",\n  \"logeable\": \"logeabl\",\n  \"logement\": \"log\",\n  \"logements\": \"log\",\n  \"loger\": \"log\",\n  \"loges\": \"log\",\n  \"logés\": \"log\",\n  \"logions\": \"logion\",\n  \"logique\": \"logiqu\",\n  \"logiques\": \"logiqu\",\n  \"logis\": \"log\",\n  \"loi\": \"loi\",\n  \"loin\": \"loin\",\n  \"lointain\": \"lointain\",\n  \"lointaine\": \"lointain\",\n  \"lointaines\": \"lointain\",\n  \"lointains\": \"lointain\",\n  \"lois\": \"lois\",\n  \"loisir\": \"lois\",\n  \"lombarde\": \"lombard\",\n  \"lombardie\": \"lombard\",\n  \"lombardo\": \"lombardo\",\n  \"lombards\": \"lombard\",\n  \"lonato\": \"lonato\",\n  \"london\": \"london\",\n  \"londonner\": \"london\",\n  \"londres\": \"londr\",\n  \"long\": \"long\",\n  \"longanimité\": \"longanim\",\n  \"longe\": \"long\",\n  \"longeant\": \"long\",\n  \"longerons\": \"long\",\n  \"longévité\": \"longev\",\n  \"longs\": \"long\",\n  \"longsferry\": \"longsferry\",\n  \"longtemps\": \"longtemp\",\n  \"longue\": \"longu\",\n  \"longuement\": \"longu\",\n  \"longues\": \"longu\",\n  \"longueur\": \"longueur\",\n  \"longueville\": \"longuevill\",\n  \"lope\": \"lop\",\n  \"loquerisne\": \"loquerisn\",\n  \"loques\": \"loqu\",\n  \"loquet\": \"loquet\",\n  \"lord\": \"lord\",\n  \"lords\": \"lord\",\n  \"lorgnette\": \"lorgnet\",\n  \"lorgnettes\": \"lorgnet\",\n  \"lors\": \"lor\",\n  \"lorsqu\": \"lorsqu\",\n  \"lorsque\": \"lorsqu\",\n  \"lot\": \"lot\",\n  \"loterie\": \"loter\",\n  \"lotus\": \"lotus\",\n  \"loua\": \"lou\",\n  \"louables\": \"louabl\",\n  \"louage\": \"louag\",\n  \"louaient\": \"lou\",\n  \"louange\": \"louang\",\n  \"louanges\": \"louang\",\n  \"louant\": \"lou\",\n  \"louche\": \"louch\",\n  \"loue\": \"lou\",\n  \"loué\": \"lou\",\n  \"louée\": \"lou\",\n  \"louées\": \"lou\",\n  \"louer\": \"lou\",\n  \"louera\": \"lou\",\n  \"loueras\": \"lou\",\n  \"louèrent\": \"lou\",\n  \"loueur\": \"loueur\",\n  \"loueuse\": \"loueux\",\n  \"louez\": \"lou\",\n  \"louiez\": \"lou\",\n  \"louis\": \"lou\",\n  \"louise\": \"louis\",\n  \"louons\": \"louon\",\n  \"loup\": \"loup\",\n  \"loups\": \"loup\",\n  \"lourd\": \"lourd\",\n  \"lourde\": \"lourd\",\n  \"lourdement\": \"lourd\",\n  \"lourdes\": \"lourd\",\n  \"lourdeur\": \"lourdeur\",\n  \"loutre\": \"loutr\",\n  \"louvre\": \"louvr\",\n  \"love\": \"lov\",\n  \"lowe\": \"low\",\n  \"loyal\": \"loyal\",\n  \"loyalement\": \"loyal\",\n  \"loyauté\": \"loyaut\",\n  \"loyaux\": \"loyal\",\n  \"lu\": \"lu\",\n  \"lucides\": \"lucid\",\n  \"lucrative\": \"lucrat\",\n  \"ludovic\": \"ludovic\",\n  \"lue\": \"lu\",\n  \"lues\": \"lu\",\n  \"lueur\": \"lueur\",\n  \"lueurs\": \"lueur\",\n  \"lugano\": \"lugano\",\n  \"lugubre\": \"lugubr\",\n  \"lugubrement\": \"lugubr\",\n  \"lugubres\": \"lugubr\",\n  \"lui\": \"lui\",\n  \"luisante\": \"luis\",\n  \"lumière\": \"lumi\",\n  \"lumières\": \"lumi\",\n  \"lumineuse\": \"lumin\",\n  \"luna\": \"lun\",\n  \"lunch\": \"lunch\",\n  \"lundi\": \"lund\",\n  \"lune\": \"lun\",\n  \"lunette\": \"lunet\",\n  \"luoghi\": \"luogh\",\n  \"lustre\": \"lustr\",\n  \"lustres\": \"lustr\",\n  \"lut\": \"lut\",\n  \"luther\": \"luth\",\n  \"luttaient\": \"lutt\",\n  \"luttait\": \"lutt\",\n  \"lutte\": \"lutt\",\n  \"luttent\": \"luttent\",\n  \"lutter\": \"lutt\",\n  \"luttera\": \"lutt\",\n  \"luttes\": \"lutt\",\n  \"luxe\": \"lux\",\n  \"luxée\": \"lux\",\n  \"luxembourg\": \"luxembourg\",\n  \"luxuriantes\": \"luxuri\",\n  \"luz\": \"luz\",\n  \"lycéens\": \"lycéen\",\n  \"lyon\": \"lyon\",\n  \"lyre\": \"lyr\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"mac\": \"mac\",\n  \"macadamisées\": \"macadamis\",\n  \"macao\": \"macao\",\n  \"mâchais\": \"mâch\",\n  \"mâchait\": \"mâch\",\n  \"machiavel\": \"machiavel\",\n  \"machiavélisme\": \"machiavel\",\n  \"machiavelli\": \"machiavel\",\n  \"machinalement\": \"machinal\",\n  \"machine\": \"machin\",\n  \"machines\": \"machin\",\n  \"mackintosh\": \"mackintosh\",\n  \"macon\": \"macon\",\n  \"maçon\": \"maçon\",\n  \"maçonnerie\": \"maçonner\",\n  \"maçons\": \"maçon\",\n  \"madame\": \"madam\",\n  \"made\": \"mad\",\n  \"madeleine\": \"madelein\",\n  \"mademoiselle\": \"mademoisel\",\n  \"madone\": \"madon\",\n  \"madras\": \"madr\",\n  \"madriers\": \"madri\",\n  \"maestro\": \"maestro\",\n  \"magalon\": \"magalon\",\n  \"magasin\": \"magasin\",\n  \"magasins\": \"magasin\",\n  \"maggiore\": \"maggior\",\n  \"magicien\": \"magicien\",\n  \"magie\": \"mag\",\n  \"magique\": \"magiqu\",\n  \"magistral\": \"magistral\",\n  \"magistrat\": \"magistrat\",\n  \"magistrats\": \"magistrat\",\n  \"magistrature\": \"magistratur\",\n  \"magnanime\": \"magnanim\",\n  \"magnificence\": \"magnificent\",\n  \"magnifique\": \"magnif\",\n  \"magnifiquement\": \"magnif\",\n  \"magnifiques\": \"magnif\",\n  \"magot\": \"magot\",\n  \"mahomet\": \"mahomet\",\n  \"mahout\": \"mahout\",\n  \"mai\": \"mai\",\n  \"maigre\": \"maigr\",\n  \"maigres\": \"maigr\",\n  \"maigreur\": \"maigreur\",\n  \"maigri\": \"maigr\",\n  \"maigrie\": \"maigr\",\n  \"mail\": \"mail\",\n  \"mailles\": \"maill\",\n  \"main\": \"main\",\n  \"mains\": \"main\",\n  \"maintenaient\": \"mainten\",\n  \"maintenait\": \"mainten\",\n  \"maintenant\": \"mainten\",\n  \"maintenir\": \"mainten\",\n  \"maintenue\": \"maintenu\",\n  \"maintien\": \"maintien\",\n  \"maintint\": \"maintint\",\n  \"maire\": \"mair\",\n  \"maires\": \"mair\",\n  \"mairie\": \"mair\",\n  \"mais\": \"mais\",\n  \"maïs\": \"maï\",\n  \"maison\": \"maison\",\n  \"maisons\": \"maison\",\n  \"maistre\": \"maistr\",\n  \"maitre\": \"maitr\",\n  \"maître\": \"maîtr\",\n  \"maîtres\": \"maîtr\",\n  \"maîtresse\": \"maîtress\",\n  \"maîtresses\": \"maîtress\",\n  \"majesté\": \"majest\",\n  \"majestueuse\": \"majestu\",\n  \"majestueusement\": \"majestu\",\n  \"majestueux\": \"majestu\",\n  \"majeur\": \"majeur\",\n  \"majeure\": \"majeur\",\n  \"major\": \"major\",\n  \"majordome\": \"majordom\",\n  \"majordomes\": \"majordom\",\n  \"majorité\": \"major\",\n  \"majorités\": \"major\",\n  \"mal\": \"mal\",\n  \"malacca\": \"malacc\",\n  \"malade\": \"malad\",\n  \"malades\": \"malad\",\n  \"maladie\": \"malad\",\n  \"maladies\": \"malad\",\n  \"maladive\": \"malad\",\n  \"maladresse\": \"maladress\",\n  \"maladresses\": \"maladress\",\n  \"maladroit\": \"maladroit\",\n  \"maladroite\": \"maladroit\",\n  \"maladroitement\": \"maladroit\",\n  \"malaga\": \"malag\",\n  \"malagrida\": \"malagrid\",\n  \"malais\": \"mal\",\n  \"malaise\": \"malais\",\n  \"malaisie\": \"malais\",\n  \"maldonne\": \"maldon\",\n  \"mâle\": \"mâl\",\n  \"malebar\": \"malebar\",\n  \"malédiction\": \"malédict\",\n  \"malencontreuse\": \"malencontr\",\n  \"malencontreusement\": \"malencontr\",\n  \"malencontreux\": \"malencontr\",\n  \"malentendu\": \"malentendu\",\n  \"mâles\": \"mâl\",\n  \"malgré\": \"malgr\",\n  \"malhabile\": \"malhabil\",\n  \"malheur\": \"malheur\",\n  \"malheureuse\": \"malheur\",\n  \"malheureusement\": \"malheur\",\n  \"malheureuses\": \"malheur\",\n  \"malheureux\": \"malheur\",\n  \"malheurs\": \"malheur\",\n  \"malhonnête\": \"malhonnêt\",\n  \"malhonnêteté\": \"malhonnêtet\",\n  \"malice\": \"malic\",\n  \"malicieux\": \"malici\",\n  \"maligne\": \"malign\",\n  \"malignité\": \"malign\",\n  \"malin\": \"malin\",\n  \"mall\": \"mall\",\n  \"malle\": \"mall\",\n  \"malles\": \"mall\",\n  \"malligaum\": \"malligaum\",\n  \"malmaison\": \"malmaison\",\n  \"malmener\": \"malmen\",\n  \"maltraite\": \"maltrait\",\n  \"maltraité\": \"maltrait\",\n  \"maltraitées\": \"maltrait\",\n  \"maltraiter\": \"maltrait\",\n  \"maman\": \"maman\",\n  \"mameluks\": \"mameluk\",\n  \"mammacia\": \"mammaci\",\n  \"manant\": \"man\",\n  \"mancar\": \"mancar\",\n  \"manche\": \"manch\",\n  \"manches\": \"manch\",\n  \"manchester\": \"manchest\",\n  \"manda\": \"mand\",\n  \"mandarin\": \"mandarin\",\n  \"mandat\": \"mandat\",\n  \"mandé\": \"mand\",\n  \"mandeb\": \"mandeb\",\n  \"mandement\": \"mand\",\n  \"mander\": \"mand\",\n  \"mandiboy\": \"mandiboy\",\n  \"manège\": \"maneg\",\n  \"mânes\": \"mân\",\n  \"manette\": \"manet\",\n  \"mange\": \"mang\",\n  \"mangé\": \"mang\",\n  \"mangea\": \"mang\",\n  \"mangeaient\": \"mang\",\n  \"mangeais\": \"mang\",\n  \"mangeait\": \"mang\",\n  \"mangeant\": \"mang\",\n  \"mangent\": \"mangent\",\n  \"mangeoire\": \"mangeoir\",\n  \"manger\": \"mang\",\n  \"mangerai\": \"mang\",\n  \"mangerait\": \"mang\",\n  \"mangèrent\": \"mang\",\n  \"mangeur\": \"mangeur\",\n  \"mangoustes\": \"mangoust\",\n  \"maniable\": \"maniabl\",\n  \"maniait\": \"mani\",\n  \"maniant\": \"mani\",\n  \"maniaque\": \"maniaqu\",\n  \"manie\": \"man\",\n  \"manié\": \"mani\",\n  \"manier\": \"mani\",\n  \"manière\": \"mani\",\n  \"manières\": \"mani\",\n  \"manifestation\": \"manifest\",\n  \"manifesté\": \"manifest\",\n  \"manifester\": \"manifest\",\n  \"mannequins\": \"mannequin\",\n  \"manner\": \"mann\",\n  \"manoeuvraient\": \"manoeuvr\",\n  \"manoeuvrant\": \"manoeuvr\",\n  \"manoeuvre\": \"manoeuvr\",\n  \"manoeuvré\": \"manoeuvr\",\n  \"manoeuvrer\": \"manoeuvr\",\n  \"manoeuvres\": \"manoeuvr\",\n  \"manoeuvrés\": \"manoeuvr\",\n  \"manon\": \"manon\",\n  \"manouvriers\": \"manouvri\",\n  \"manqua\": \"manqu\",\n  \"manquaient\": \"manqu\",\n  \"manquais\": \"manqu\",\n  \"manquait\": \"manqu\",\n  \"manquant\": \"manqu\",\n  \"manquât\": \"manqu\",\n  \"manque\": \"manqu\",\n  \"manqué\": \"manqu\",\n  \"manquée\": \"manqu\",\n  \"manquent\": \"manquent\",\n  \"manquer\": \"manqu\",\n  \"manquera\": \"manqu\",\n  \"manquerai\": \"manqu\",\n  \"manqueraient\": \"manqu\",\n  \"manquerais\": \"manqu\",\n  \"manquerait\": \"manqu\",\n  \"manquèrent\": \"manqu\",\n  \"manquerez\": \"manqu\",\n  \"manqueront\": \"manqu\",\n  \"manques\": \"manqu\",\n  \"manquez\": \"manqu\",\n  \"manquons\": \"manquon\",\n  \"mansarde\": \"mansard\",\n  \"manteau\": \"manteau\",\n  \"manteaux\": \"manteau\",\n  \"mantoue\": \"mantou\",\n  \"manuel\": \"manuel\",\n  \"manufacture\": \"manufactur\",\n  \"manufactures\": \"manufactur\",\n  \"manufacturières\": \"manufacturi\",\n  \"manufacturiers\": \"manufacturi\",\n  \"manuscrit\": \"manuscr\",\n  \"manuscrites\": \"manuscrit\",\n  \"manuscrits\": \"manuscrit\",\n  \"maquignon\": \"maquignon\",\n  \"marais\": \"mar\",\n  \"marâtre\": \"marâtr\",\n  \"marbre\": \"marbr\",\n  \"marbres\": \"marbr\",\n  \"marcha\": \"march\",\n  \"marchaient\": \"march\",\n  \"marchait\": \"march\",\n  \"marchand\": \"marchand\",\n  \"marchande\": \"marchand\",\n  \"marchandise\": \"marchandis\",\n  \"marchandises\": \"marchandis\",\n  \"marchands\": \"marchand\",\n  \"marchant\": \"march\",\n  \"marche\": \"march\",\n  \"marché\": \"march\",\n  \"marchent\": \"marchent\",\n  \"marchepied\": \"marchepied\",\n  \"marchepieds\": \"marchepied\",\n  \"marcher\": \"march\",\n  \"marcherez\": \"march\",\n  \"marcherions\": \"march\",\n  \"marcherons\": \"march\",\n  \"marches\": \"march\",\n  \"marchés\": \"march\",\n  \"marchesi\": \"marches\",\n  \"marchesine\": \"marchesin\",\n  \"marchesino\": \"marchesino\",\n  \"marcheur\": \"marcheur\",\n  \"marcheurs\": \"marcheur\",\n  \"marchez\": \"march\",\n  \"marchiez\": \"march\",\n  \"marchions\": \"marchion\",\n  \"marchons\": \"marchon\",\n  \"mardi\": \"mard\",\n  \"mare\": \"mar\",\n  \"marécages\": \"marécag\",\n  \"marécageuse\": \"marécag\",\n  \"maréchal\": \"maréchal\",\n  \"maréchale\": \"maréchal\",\n  \"maréchaux\": \"maréchal\",\n  \"marée\": \"mar\",\n  \"marengo\": \"marengo\",\n  \"marge\": \"marg\",\n  \"marges\": \"marg\",\n  \"margot\": \"margot\",\n  \"marguerite\": \"marguerit\",\n  \"marguillier\": \"marguilli\",\n  \"mari\": \"mar\",\n  \"maria\": \"mari\",\n  \"mariage\": \"mariag\",\n  \"mariages\": \"mariag\",\n  \"mariait\": \"mari\",\n  \"marie\": \"mar\",\n  \"marié\": \"mari\",\n  \"mariée\": \"mari\",\n  \"mariées\": \"mari\",\n  \"marier\": \"mari\",\n  \"mariera\": \"mari\",\n  \"marietta\": \"mariet\",\n  \"mariettina\": \"mariettin\",\n  \"marin\": \"marin\",\n  \"marini\": \"marin\",\n  \"mariniers\": \"marini\",\n  \"marino\": \"marino\",\n  \"marins\": \"marin\",\n  \"maris\": \"mar\",\n  \"maritime\": \"maritim\",\n  \"maritimes\": \"maritim\",\n  \"markésine\": \"markésin\",\n  \"market\": \"market\",\n  \"marmande\": \"marmand\",\n  \"marmots\": \"marmot\",\n  \"maroquin\": \"maroquin\",\n  \"marote\": \"marot\",\n  \"marotte\": \"marott\",\n  \"marqua\": \"marqu\",\n  \"marquaient\": \"marqu\",\n  \"marquait\": \"marqu\",\n  \"marquant\": \"marqu\",\n  \"marque\": \"marqu\",\n  \"marqué\": \"marqu\",\n  \"marquée\": \"marqu\",\n  \"marquées\": \"marqu\",\n  \"marquent\": \"marquent\",\n  \"marquer\": \"marqu\",\n  \"marquerai\": \"marqu\",\n  \"marquèrent\": \"marqu\",\n  \"marques\": \"marqu\",\n  \"marqués\": \"marqu\",\n  \"marqueterie\": \"marqueter\",\n  \"marquinot\": \"marquinot\",\n  \"marquis\": \"marqu\",\n  \"marquise\": \"marquis\",\n  \"marronnier\": \"marronni\",\n  \"marronniers\": \"marronni\",\n  \"marrons\": \"marron\",\n  \"mars\": \"mar\",\n  \"marseille\": \"marseil\",\n  \"marteau\": \"marteau\",\n  \"marteaux\": \"marteau\",\n  \"martial\": \"martial\",\n  \"martiale\": \"martial\",\n  \"martin\": \"martin\",\n  \"martyr\": \"martyr\",\n  \"martyre\": \"martyr\",\n  \"mary\": \"mary\",\n  \"mascarilles\": \"mascarill\",\n  \"masculin\": \"masculin\",\n  \"masculine\": \"masculin\",\n  \"maslon\": \"maslon\",\n  \"masquait\": \"masqu\",\n  \"masque\": \"masqu\",\n  \"masqué\": \"masqu\",\n  \"masquée\": \"masqu\",\n  \"masquer\": \"masqu\",\n  \"masques\": \"masqu\",\n  \"masqués\": \"masqu\",\n  \"massacre\": \"massacr\",\n  \"massacrer\": \"massacr\",\n  \"massacrés\": \"massacr\",\n  \"massant\": \"mass\",\n  \"masse\": \"mass\",\n  \"masses\": \"mass\",\n  \"massif\": \"massif\",\n  \"massifs\": \"massif\",\n  \"massillon\": \"massillon\",\n  \"massinger\": \"massing\",\n  \"mat\": \"mat\",\n  \"mât\": \"mât\",\n  \"matches\": \"match\",\n  \"matelas\": \"matel\",\n  \"matelots\": \"matelot\",\n  \"matériel\": \"matériel\",\n  \"matérielle\": \"matériel\",\n  \"matériellement\": \"matériel\",\n  \"matérielles\": \"matériel\",\n  \"matériels\": \"matériel\",\n  \"maternel\": \"maternel\",\n  \"mathématique\": \"mathémat\",\n  \"mathématiquement\": \"mathémat\",\n  \"mathématiques\": \"mathémat\",\n  \"mathilde\": \"mathild\",\n  \"matiere\": \"matier\",\n  \"matière\": \"mati\",\n  \"matieres\": \"matier\",\n  \"matières\": \"mati\",\n  \"matin\": \"matin\",\n  \"matinale\": \"matinal\",\n  \"matinée\": \"matin\",\n  \"matins\": \"matin\",\n  \"matrimoniale\": \"matrimonial\",\n  \"matrimonio\": \"matrimonio\",\n  \"mâts\": \"mât\",\n  \"mâture\": \"mâtur\",\n  \"mâtures\": \"mâtur\",\n  \"maubeuge\": \"maubeug\",\n  \"maudire\": \"maudir\",\n  \"maudis\": \"maud\",\n  \"maudissait\": \"maud\",\n  \"maudissant\": \"maud\",\n  \"maudissez\": \"maud\",\n  \"maudit\": \"maud\",\n  \"maudite\": \"maudit\",\n  \"maudits\": \"maudit\",\n  \"maugiron\": \"maugiron\",\n  \"maugirons\": \"maug\",\n  \"maugréait\": \"maugré\",\n  \"maury\": \"maury\",\n  \"mausolée\": \"mausol\",\n  \"maussade\": \"maussad\",\n  \"mauvais\": \"mauv\",\n  \"mauvaise\": \"mauvais\",\n  \"mauvaises\": \"mauvais\",\n  \"mauve\": \"mauv\",\n  \"maux\": \"maux\",\n  \"maxime\": \"maxim\",\n  \"maximes\": \"maxim\",\n  \"maximum\": \"maximum\",\n  \"mayence\": \"mayenc\",\n  \"me\": \"me\",\n  \"meako\": \"meako\",\n  \"mean\": \"mean\",\n  \"mécanicien\": \"mécanicien\",\n  \"mécanique\": \"mécan\",\n  \"mécaniquement\": \"mécan\",\n  \"mécanisme\": \"mécan\",\n  \"mécène\": \"mécen\",\n  \"méchanceté\": \"méchancet\",\n  \"méchancetés\": \"méchancet\",\n  \"méchant\": \"mech\",\n  \"méchante\": \"mech\",\n  \"méchantes\": \"mech\",\n  \"méchants\": \"mech\",\n  \"mèche\": \"mech\",\n  \"mécomptes\": \"mécompt\",\n  \"méconnaissez\": \"méconnaiss\",\n  \"mécontent\": \"mécontent\",\n  \"mécontente\": \"mécontent\",\n  \"mécontentement\": \"mécontent\",\n  \"mécontents\": \"mécontent\",\n  \"médaille\": \"médaill\",\n  \"médecin\": \"médecin\",\n  \"médecine\": \"médecin\",\n  \"médecins\": \"médecin\",\n  \"médée\": \"med\",\n  \"medicine\": \"medicin\",\n  \"médicis\": \"médic\",\n  \"médiocre\": \"médiocr\",\n  \"médiocrement\": \"médiocr\",\n  \"médiocres\": \"médiocr\",\n  \"médiocrité\": \"médiocr\",\n  \"médire\": \"médir\",\n  \"médisance\": \"médis\",\n  \"médît\": \"med\",\n  \"médita\": \"médit\",\n  \"méditait\": \"médit\",\n  \"méditation\": \"médit\",\n  \"méditations\": \"médit\",\n  \"méditée\": \"médit\",\n  \"méditer\": \"médit\",\n  \"meeting\": \"meeting\",\n  \"méfiance\": \"méfianc\",\n  \"méfiant\": \"méfi\",\n  \"méfie\": \"mef\",\n  \"méfier\": \"méfi\",\n  \"meilleur\": \"meilleur\",\n  \"meilleure\": \"meilleur\",\n  \"meilleures\": \"meilleur\",\n  \"meilleurs\": \"meilleur\",\n  \"mêla\": \"mêl\",\n  \"mêlaient\": \"mêl\",\n  \"mêlait\": \"mêl\",\n  \"mélancolie\": \"mélancol\",\n  \"mélancolique\": \"mélancol\",\n  \"mélancoliquement\": \"mélancol\",\n  \"mélange\": \"mélang\",\n  \"mélangé\": \"mélang\",\n  \"mélangée\": \"mélang\",\n  \"mélangées\": \"mélang\",\n  \"mêlant\": \"mêl\",\n  \"mêle\": \"mêl\",\n  \"mêlé\": \"mêl\",\n  \"mêlée\": \"mêl\",\n  \"mêlent\": \"mêlent\",\n  \"mêler\": \"mêl\",\n  \"mêlés\": \"mêl\",\n  \"mêlez\": \"mêl\",\n  \"mélodie\": \"mélod\",\n  \"mélodieuse\": \"mélodi\",\n  \"mélodrame\": \"mélodram\",\n  \"melzi\": \"melz\",\n  \"membre\": \"membr\",\n  \"membres\": \"membr\",\n  \"membrure\": \"membrur\",\n  \"meme\": \"mem\",\n  \"même\": \"mêm\",\n  \"mêmes\": \"mêm\",\n  \"mémoire\": \"mémoir\",\n  \"mémoires\": \"mémoir\",\n  \"mémorial\": \"mémorial\",\n  \"menaça\": \"menac\",\n  \"menaçaient\": \"menac\",\n  \"menaçais\": \"menac\",\n  \"menaçait\": \"menac\",\n  \"menaçant\": \"menac\",\n  \"menace\": \"menac\",\n  \"menacé\": \"menac\",\n  \"menacée\": \"menac\",\n  \"menacer\": \"menac\",\n  \"menaces\": \"menac\",\n  \"ménage\": \"ménag\",\n  \"ménagé\": \"ménag\",\n  \"ménagement\": \"ménag\",\n  \"ménagements\": \"ménag\",\n  \"ménager\": \"ménag\",\n  \"ménagera\": \"ménag\",\n  \"ménages\": \"ménag\",\n  \"ménagez\": \"ménag\",\n  \"menagio\": \"menagio\",\n  \"menait\": \"men\",\n  \"mendiant\": \"mendi\",\n  \"mendiante\": \"mendi\",\n  \"mendicité\": \"mendiqu\",\n  \"mène\": \"men\",\n  \"mené\": \"men\",\n  \"menée\": \"men\",\n  \"menées\": \"men\",\n  \"mener\": \"men\",\n  \"mènera\": \"men\",\n  \"mènerai\": \"men\",\n  \"mènerais\": \"men\",\n  \"mènerait\": \"men\",\n  \"menèrent\": \"men\",\n  \"meneurs\": \"meneur\",\n  \"menez\": \"men\",\n  \"menottes\": \"menott\",\n  \"mens\": \"men\",\n  \"mensonge\": \"mensong\",\n  \"mensonges\": \"mensong\",\n  \"mentait\": \"ment\",\n  \"mentales\": \"mental\",\n  \"mente\": \"ment\",\n  \"menteurs\": \"menteur\",\n  \"menteuse\": \"menteux\",\n  \"mentez\": \"ment\",\n  \"menti\": \"ment\",\n  \"mention\": \"mention\",\n  \"mentionne\": \"mention\",\n  \"mentionner\": \"mention\",\n  \"mentir\": \"ment\",\n  \"mentirais\": \"ment\",\n  \"menton\": \"menton\",\n  \"menues\": \"menu\",\n  \"menuiserie\": \"menuiser\",\n  \"menuisier\": \"menuisi\",\n  \"menuisiers\": \"menuisi\",\n  \"méphistophélès\": \"méphistophéles\",\n  \"méprenait\": \"mépren\",\n  \"méprendre\": \"méprendr\",\n  \"mépris\": \"mepr\",\n  \"méprisa\": \"mépris\",\n  \"méprisable\": \"mépris\",\n  \"méprisais\": \"mépris\",\n  \"méprisait\": \"mépris\",\n  \"méprisant\": \"mépris\",\n  \"méprise\": \"mépris\",\n  \"méprisé\": \"mépris\",\n  \"méprisée\": \"mépris\",\n  \"méprisent\": \"méprisent\",\n  \"mépriser\": \"mépris\",\n  \"méprisera\": \"mépris\",\n  \"mépriserai\": \"mépris\",\n  \"mépriseraient\": \"mépris\",\n  \"mépriserait\": \"mépris\",\n  \"méprisez\": \"mépris\",\n  \"mer\": \"mer\",\n  \"mercadante\": \"mercad\",\n  \"mercantile\": \"mercantil\",\n  \"merci\": \"merc\",\n  \"mercredi\": \"mercred\",\n  \"mercure\": \"mercur\",\n  \"mère\": \"mer\",\n  \"méridien\": \"méridien\",\n  \"méridiens\": \"méridien\",\n  \"méridional\": \"méridional\",\n  \"méridionale\": \"méridional\",\n  \"méridionaux\": \"méridional\",\n  \"mérimée\": \"mérim\",\n  \"méritait\": \"mérit\",\n  \"méritant\": \"mérit\",\n  \"mérite\": \"mérit\",\n  \"mérité\": \"mérit\",\n  \"méritée\": \"mérit\",\n  \"méritées\": \"mérit\",\n  \"mériter\": \"mérit\",\n  \"méritera\": \"mérit\",\n  \"mériterais\": \"mérit\",\n  \"méritèrent\": \"mérit\",\n  \"mérites\": \"mérit\",\n  \"mérités\": \"mérit\",\n  \"méritez\": \"mérit\",\n  \"méritoire\": \"méritoir\",\n  \"mers\": \"mer\",\n  \"merveille\": \"merveil\",\n  \"merveilles\": \"merveil\",\n  \"merveilleuse\": \"merveil\",\n  \"merveilleusement\": \"merveil\",\n  \"merveilleuses\": \"merveil\",\n  \"merveilleux\": \"merveil\",\n  \"méry\": \"méry\",\n  \"mes\": \"me\",\n  \"mésalliance\": \"mésalli\",\n  \"mésaventure\": \"mésaventur\",\n  \"mesi\": \"mes\",\n  \"mesquin\": \"mesquin\",\n  \"mesquine\": \"mesquin\",\n  \"mesquins\": \"mesquin\",\n  \"message\": \"messag\",\n  \"messager\": \"messag\",\n  \"messageries\": \"messager\",\n  \"messe\": \"mess\",\n  \"messes\": \"mess\",\n  \"messieurs\": \"messieur\",\n  \"messire\": \"messir\",\n  \"mesure\": \"mesur\",\n  \"mesuré\": \"mesur\",\n  \"mesurée\": \"mesur\",\n  \"mesurées\": \"mesur\",\n  \"mesurer\": \"mesur\",\n  \"mesures\": \"mesur\",\n  \"mesurés\": \"mesur\",\n  \"met\": \"met\",\n  \"métal\": \"métal\",\n  \"métalliques\": \"métall\",\n  \"métaphysiques\": \"métaphys\",\n  \"météorologiste\": \"météorolog\",\n  \"méthodes\": \"méthod\",\n  \"méthodique\": \"méthod\",\n  \"méthodiquement\": \"méthod\",\n  \"méthodisme\": \"méthod\",\n  \"méticuleuse\": \"méticul\",\n  \"méticuleux\": \"méticul\",\n  \"métier\": \"méti\",\n  \"métiers\": \"méti\",\n  \"mètres\": \"metr\",\n  \"métropole\": \"métropol\",\n  \"métropolitaine\": \"métropolitain\",\n  \"mets\": \"met\",\n  \"mettaient\": \"met\",\n  \"mettais\": \"met\",\n  \"mettait\": \"met\",\n  \"mettant\": \"met\",\n  \"mette\": \"met\",\n  \"mettent\": \"mettent\",\n  \"mettez\": \"met\",\n  \"mettions\": \"mettion\",\n  \"mettons\": \"metton\",\n  \"mettra\": \"mettr\",\n  \"mettrai\": \"mettr\",\n  \"mettraient\": \"mettr\",\n  \"mettrais\": \"mettr\",\n  \"mettrait\": \"mettr\",\n  \"mettras\": \"mettr\",\n  \"mettre\": \"mettr\",\n  \"mettrez\": \"mettr\",\n  \"mettriez\": \"mettr\",\n  \"mettrons\": \"mettron\",\n  \"mettront\": \"mettront\",\n  \"metz\": \"metz\",\n  \"meuble\": \"meubl\",\n  \"meublée\": \"meubl\",\n  \"meublées\": \"meubl\",\n  \"meubler\": \"meubl\",\n  \"meubles\": \"meubl\",\n  \"meudon\": \"meudon\",\n  \"meunier\": \"meuni\",\n  \"meure\": \"meur\",\n  \"meures\": \"meur\",\n  \"meurs\": \"meur\",\n  \"meurt\": \"meurt\",\n  \"meurtre\": \"meurtr\",\n  \"meurtres\": \"meurtr\",\n  \"meurtrier\": \"meurtri\",\n  \"meurtrière\": \"meurtri\",\n  \"meurtris\": \"meurtr\",\n  \"meurtrissure\": \"meurtrissur\",\n  \"meus\": \"meus\",\n  \"mexicain\": \"mexicain\",\n  \"mexique\": \"mexiqu\",\n  \"mezzo\": \"mezzo\",\n  \"mi\": \"mi\",\n  \"mia\": \"mi\",\n  \"miaulé\": \"miaul\",\n  \"michaud\": \"michaud\",\n  \"michel\": \"michel\",\n  \"michele\": \"michel\",\n  \"michelet\": \"michelet\",\n  \"micheli\": \"michel\",\n  \"michigan\": \"michigan\",\n  \"microscope\": \"microscop\",\n  \"microscopique\": \"microscop\",\n  \"microscopiques\": \"microscop\",\n  \"midi\": \"mid\",\n  \"mielleuse\": \"mielleux\",\n  \"mielleuses\": \"mielleux\",\n  \"mien\": \"mien\",\n  \"mienne\": \"mien\",\n  \"miens\": \"mien\",\n  \"miettes\": \"miet\",\n  \"mieux\": \"mieux\",\n  \"mignonnes\": \"mignon\",\n  \"migraine\": \"migrain\",\n  \"migration\": \"migrat\",\n  \"mikado\": \"mikado\",\n  \"milan\": \"milan\",\n  \"milanais\": \"milan\",\n  \"milanaise\": \"milanais\",\n  \"milieu\": \"milieu\",\n  \"militaire\": \"militair\",\n  \"militaires\": \"militair\",\n  \"mille\": \"mill\",\n  \"milles\": \"mill\",\n  \"milliard\": \"milliard\",\n  \"milliards\": \"milliard\",\n  \"milliers\": \"milli\",\n  \"million\": \"million\",\n  \"millionnaire\": \"millionnair\",\n  \"millionnaires\": \"millionnair\",\n  \"millions\": \"million\",\n  \"mimosées\": \"mimos\",\n  \"minaret\": \"minaret\",\n  \"minarets\": \"minaret\",\n  \"mince\": \"minc\",\n  \"minces\": \"minc\",\n  \"mind\": \"mind\",\n  \"mine\": \"min\",\n  \"minéralogie\": \"minéralog\",\n  \"minéraux\": \"minéral\",\n  \"minerve\": \"minerv\",\n  \"mines\": \"min\",\n  \"mineurs\": \"mineur\",\n  \"miniature\": \"miniatur\",\n  \"minimum\": \"minimum\",\n  \"ministère\": \"minister\",\n  \"ministères\": \"minister\",\n  \"ministériel\": \"ministériel\",\n  \"ministérielle\": \"ministériel\",\n  \"ministre\": \"ministr\",\n  \"ministres\": \"ministr\",\n  \"minuit\": \"minuit\",\n  \"minute\": \"minut\",\n  \"minutes\": \"minut\",\n  \"mirabeau\": \"mirabeau\",\n  \"miracle\": \"miracl\",\n  \"miracles\": \"miracl\",\n  \"miraculeuse\": \"miracul\",\n  \"mirari\": \"mirar\",\n  \"miraut\": \"miraut\",\n  \"mire\": \"mir\",\n  \"mirent\": \"mirent\",\n  \"miroir\": \"miroir\",\n  \"mis\": \"mis\",\n  \"misaine\": \"misain\",\n  \"mise\": \"mis\",\n  \"misène\": \"misen\",\n  \"misérable\": \"miser\",\n  \"misérables\": \"miser\",\n  \"misère\": \"miser\",\n  \"misères\": \"miser\",\n  \"miséricorde\": \"miséricord\",\n  \"mises\": \"mis\",\n  \"missel\": \"missel\",\n  \"mission\": \"mission\",\n  \"missionnaire\": \"missionnair\",\n  \"missions\": \"mission\",\n  \"mississippi\": \"mississipp\",\n  \"missive\": \"missiv\",\n  \"missouri\": \"missour\",\n  \"mit\": \"mit\",\n  \"mît\": \"mît\",\n  \"mitiger\": \"mitig\",\n  \"mitre\": \"mitr\",\n  \"mitres\": \"mitr\",\n  \"mm\": \"mm\",\n  \"mme\": \"mme\",\n  \"mobile\": \"mobil\",\n  \"mobiles\": \"mobil\",\n  \"mobilité\": \"mobil\",\n  \"mode\": \"mod\",\n  \"modèle\": \"model\",\n  \"modelée\": \"model\",\n  \"modèles\": \"model\",\n  \"modène\": \"moden\",\n  \"modéra\": \"moder\",\n  \"modération\": \"moder\",\n  \"modéré\": \"moder\",\n  \"modérée\": \"moder\",\n  \"modérés\": \"moder\",\n  \"modérez\": \"moder\",\n  \"moderne\": \"modern\",\n  \"modernes\": \"modern\",\n  \"modes\": \"mod\",\n  \"modeste\": \"modest\",\n  \"modestie\": \"modest\",\n  \"modifia\": \"modifi\",\n  \"modification\": \"modif\",\n  \"modifiée\": \"modifi\",\n  \"modifier\": \"modifi\",\n  \"modifierait\": \"modifi\",\n  \"moelleux\": \"moelleux\",\n  \"moeurs\": \"moeur\",\n  \"moi\": \"moi\",\n  \"moindre\": \"moindr\",\n  \"moindres\": \"moindr\",\n  \"moine\": \"moin\",\n  \"moineaux\": \"moineau\",\n  \"moines\": \"moin\",\n  \"moins\": \"moin\",\n  \"moirod\": \"moirod\",\n  \"mois\": \"mois\",\n  \"moisson\": \"moisson\",\n  \"moitié\": \"moiti\",\n  \"moka\": \"mok\",\n  \"mole\": \"mol\",\n  \"molière\": \"moli\",\n  \"molle\": \"moll\",\n  \"mollement\": \"moll\",\n  \"molleton\": \"molleton\",\n  \"mollissait\": \"moll\",\n  \"mollit\": \"moll\",\n  \"moltiplico\": \"moltiplico\",\n  \"moment\": \"moment\",\n  \"momentanée\": \"momentan\",\n  \"moments\": \"moment\",\n  \"momie\": \"mom\",\n  \"momies\": \"mom\",\n  \"mon\": \"mon\",\n  \"monaca\": \"monac\",\n  \"monarchie\": \"monarch\",\n  \"monarchies\": \"monarch\",\n  \"monarchique\": \"monarch\",\n  \"monarchiques\": \"monarch\",\n  \"monastères\": \"monaster\",\n  \"moncade\": \"moncad\",\n  \"monceau\": \"monceau\",\n  \"moncontour\": \"moncontour\",\n  \"mondain\": \"mondain\",\n  \"mondaine\": \"mondain\",\n  \"mondaines\": \"mondain\",\n  \"mondains\": \"mondain\",\n  \"monde\": \"mond\",\n  \"monférine\": \"monférin\",\n  \"monfleury\": \"monfleury\",\n  \"monghir\": \"mongh\",\n  \"mongolia\": \"mongoli\",\n  \"moniteur\": \"moniteur\",\n  \"monnaie\": \"monnai\",\n  \"monologue\": \"monologu\",\n  \"monomanes\": \"monoman\",\n  \"monopole\": \"monopol\",\n  \"monosyllabes\": \"monosyllab\",\n  \"monotone\": \"monoton\",\n  \"monotones\": \"monoton\",\n  \"monseigneur\": \"monseigneur\",\n  \"monsieur\": \"monsieur\",\n  \"monsignor\": \"monsignor\",\n  \"monsignore\": \"monsignor\",\n  \"monstre\": \"monstr\",\n  \"monstres\": \"monstr\",\n  \"monstrueuses\": \"monstrueux\",\n  \"mont\": \"mont\",\n  \"monta\": \"mont\",\n  \"montagne\": \"montagn\",\n  \"montagnes\": \"montagn\",\n  \"montagneuse\": \"montagn\",\n  \"montagneux\": \"montagn\",\n  \"montagnola\": \"montagnol\",\n  \"montaient\": \"mont\",\n  \"montais\": \"mont\",\n  \"montait\": \"mont\",\n  \"montant\": \"mont\",\n  \"montât\": \"mont\",\n  \"monte\": \"mont\",\n  \"monté\": \"mont\",\n  \"montée\": \"mont\",\n  \"montent\": \"montent\",\n  \"monter\": \"mont\",\n  \"montera\": \"mont\",\n  \"monterai\": \"mont\",\n  \"montèrent\": \"mont\",\n  \"montés\": \"mont\",\n  \"montesson\": \"montesson\",\n  \"montez\": \"mont\",\n  \"montgommery\": \"montgommery\",\n  \"monti\": \"mont\",\n  \"montmartre\": \"montmartr\",\n  \"montmirail\": \"montmirail\",\n  \"montmorency\": \"montmorency\",\n  \"montoir\": \"montoir\",\n  \"montons\": \"monton\",\n  \"montra\": \"montr\",\n  \"montraient\": \"montr\",\n  \"montrait\": \"montr\",\n  \"montrant\": \"montr\",\n  \"montrât\": \"montr\",\n  \"montre\": \"montr\",\n  \"montré\": \"montr\",\n  \"montrée\": \"montr\",\n  \"montrent\": \"montrent\",\n  \"montrer\": \"montr\",\n  \"montrera\": \"montr\",\n  \"montrerai\": \"montr\",\n  \"montrerait\": \"montr\",\n  \"montrèrent\": \"montr\",\n  \"montreriez\": \"montr\",\n  \"montres\": \"montr\",\n  \"montrés\": \"montr\",\n  \"montreur\": \"montreur\",\n  \"montrez\": \"montr\",\n  \"monts\": \"mont\",\n  \"monture\": \"montur\",\n  \"monument\": \"monu\",\n  \"monumental\": \"monumental\",\n  \"monuments\": \"monu\",\n  \"moqua\": \"moqu\",\n  \"moquai\": \"moqu\",\n  \"moquaient\": \"moqu\",\n  \"moquais\": \"moqu\",\n  \"moquait\": \"moqu\",\n  \"moquant\": \"moqu\",\n  \"moque\": \"moqu\",\n  \"moqué\": \"moqu\",\n  \"moquent\": \"moquent\",\n  \"moquer\": \"moqu\",\n  \"moquera\": \"moqu\",\n  \"moquerais\": \"moqu\",\n  \"moquerait\": \"moqu\",\n  \"moquerie\": \"moquer\",\n  \"moqueur\": \"moqueur\",\n  \"moqueurs\": \"moqueur\",\n  \"moqueuse\": \"moqueux\",\n  \"moral\": \"moral\",\n  \"morale\": \"moral\",\n  \"morales\": \"moral\",\n  \"moralité\": \"moral\",\n  \"moralités\": \"moral\",\n  \"moraux\": \"moral\",\n  \"moravie\": \"morav\",\n  \"morbleu\": \"morbleu\",\n  \"morceau\": \"morceau\",\n  \"morceaux\": \"morceau\",\n  \"mord\": \"mord\",\n  \"mordait\": \"mord\",\n  \"mordant\": \"mord\",\n  \"mordantes\": \"mord\",\n  \"moreri\": \"morer\",\n  \"morfondre\": \"morfondr\",\n  \"mormon\": \"mormon\",\n  \"mormone\": \"mormon\",\n  \"mormones\": \"mormon\",\n  \"mormonisme\": \"mormon\",\n  \"mormons\": \"mormon\",\n  \"morne\": \"morn\",\n  \"mornes\": \"morn\",\n  \"morning\": \"morning\",\n  \"morom\": \"morom\",\n  \"morose\": \"moros\",\n  \"moroses\": \"moros\",\n  \"mort\": \"mort\",\n  \"mortaretti\": \"mortaret\",\n  \"morte\": \"mort\",\n  \"mortel\": \"mortel\",\n  \"mortelle\": \"mortel\",\n  \"mortellement\": \"mortel\",\n  \"mortelles\": \"mortel\",\n  \"mortels\": \"mortel\",\n  \"mortes\": \"mort\",\n  \"mortier\": \"morti\",\n  \"mortiers\": \"morti\",\n  \"mortifiantes\": \"mortifi\",\n  \"mortifié\": \"mortifi\",\n  \"mortifier\": \"mortifi\",\n  \"morts\": \"mort\",\n  \"morveux\": \"morveux\",\n  \"mosca\": \"mosc\",\n  \"moscou\": \"moscou\",\n  \"moskova\": \"moskov\",\n  \"mosquées\": \"mosqu\",\n  \"most\": \"most\",\n  \"mot\": \"mot\",\n  \"moteur\": \"moteur\",\n  \"motif\": \"motif\",\n  \"motifs\": \"motif\",\n  \"motivât\": \"motiv\",\n  \"motivé\": \"motiv\",\n  \"motrices\": \"motric\",\n  \"mots\": \"mot\",\n  \"motu\": \"motu\",\n  \"mouche\": \"mouch\",\n  \"mouchent\": \"mouchent\",\n  \"moucher\": \"mouch\",\n  \"moucheurs\": \"moucheur\",\n  \"mouchoir\": \"mouchoir\",\n  \"mouchoirs\": \"mouchoir\",\n  \"mouettes\": \"mouet\",\n  \"mouilla\": \"mouill\",\n  \"mouillé\": \"mouill\",\n  \"mouiller\": \"mouill\",\n  \"mouillèrent\": \"mouill\",\n  \"mouillés\": \"mouill\",\n  \"moule\": \"moul\",\n  \"moulin\": \"moulin\",\n  \"moulus\": \"moulus\",\n  \"mountains\": \"mountain\",\n  \"mourais\": \"mour\",\n  \"mourait\": \"mour\",\n  \"mourant\": \"mour\",\n  \"mourante\": \"mour\",\n  \"mourants\": \"mour\",\n  \"mourions\": \"mourion\",\n  \"mourir\": \"mour\",\n  \"mourons\": \"mouron\",\n  \"mourra\": \"mourr\",\n  \"mourrai\": \"mourr\",\n  \"mourrais\": \"mourr\",\n  \"mourrait\": \"mourr\",\n  \"mourras\": \"mourr\",\n  \"mourrez\": \"mourr\",\n  \"mourrons\": \"mourron\",\n  \"mourront\": \"mourront\",\n  \"mourshedabad\": \"mourshedabad\",\n  \"mourusse\": \"mouruss\",\n  \"mourut\": \"mourut\",\n  \"mourût\": \"mourût\",\n  \"mousqueterie\": \"mousqueter\",\n  \"mousseline\": \"mousselin\",\n  \"mousseux\": \"mousseux\",\n  \"moustache\": \"moustach\",\n  \"moustaches\": \"moustach\",\n  \"mouton\": \"mouton\",\n  \"moutonnaient\": \"mouton\",\n  \"moutons\": \"mouton\",\n  \"mouvement\": \"mouv\",\n  \"mouvements\": \"mouv\",\n  \"mouvoir\": \"mouvoir\",\n  \"moyen\": \"moyen\",\n  \"moyenne\": \"moyen\",\n  \"moyennes\": \"moyen\",\n  \"moyens\": \"moyen\",\n  \"moyeux\": \"moyeux\",\n  \"mozart\": \"mozart\",\n  \"mr\": \"mr\",\n  \"mrs\": \"mr\",\n  \"mû\": \"mû\",\n  \"much\": \"much\",\n  \"muddy\": \"muddy\",\n  \"mudge\": \"mudg\",\n  \"muet\": \"muet\",\n  \"muets\": \"muet\",\n  \"mugissements\": \"mug\",\n  \"mulet\": \"mulet\",\n  \"muletiers\": \"muleti\",\n  \"mulhouse\": \"mulhous\",\n  \"multicolores\": \"multicolor\",\n  \"multiplications\": \"multipl\",\n  \"multiplicité\": \"multipl\",\n  \"multiplie\": \"multipl\",\n  \"multiplier\": \"multipli\",\n  \"multipliés\": \"multipli\",\n  \"muni\": \"mun\",\n  \"munich\": \"munich\",\n  \"municipal\": \"municipal\",\n  \"munir\": \"mun\",\n  \"munis\": \"mun\",\n  \"munster\": \"munst\",\n  \"mur\": \"mur\",\n  \"mûr\": \"mûr\",\n  \"muraille\": \"muraill\",\n  \"murailles\": \"muraill\",\n  \"mural\": \"mural\",\n  \"murat\": \"murat\",\n  \"murées\": \"mur\",\n  \"mûrement\": \"mûr\",\n  \"mûrir\": \"mûr\",\n  \"murmura\": \"murmur\",\n  \"murmurait\": \"murmur\",\n  \"murmure\": \"murmur\",\n  \"murmures\": \"murmur\",\n  \"murs\": \"mur\",\n  \"muscadiers\": \"muscadi\",\n  \"muscles\": \"muscl\",\n  \"musculaire\": \"musculair\",\n  \"musculature\": \"musculatur\",\n  \"musée\": \"mus\",\n  \"mushroom\": \"mushroom\",\n  \"musicien\": \"musicien\",\n  \"musiciens\": \"musicien\",\n  \"musique\": \"musiqu\",\n  \"musset\": \"musset\",\n  \"mutilation\": \"mutil\",\n  \"mutilé\": \"mutil\",\n  \"mutsh\": \"mutsh\",\n  \"mutuel\": \"mutuel\",\n  \"mylord\": \"mylord\",\n  \"mystère\": \"myster\",\n  \"mystères\": \"myster\",\n  \"mystérieuse\": \"mystéri\",\n  \"mystérieusement\": \"mystéri\",\n  \"mystérieux\": \"mystéri\",\n  \"mysticité\": \"mystiqu\",\n  \"mystification\": \"mystif\",\n  \"mystifie\": \"mystif\",\n  \"mystifié\": \"mystifi\",\n  \"mystifiée\": \"mystifi\",\n  \"mystifier\": \"mystifi\",\n  \"mystique\": \"mystiqu\",\n  \"n\": \"n\",\n  \"nadir\": \"nad\",\n  \"nagasaki\": \"nagasak\",\n  \"nage\": \"nag\",\n  \"nagent\": \"nagent\",\n  \"nager\": \"nag\",\n  \"naguère\": \"naguer\",\n  \"naïf\": \"naïf\",\n  \"naïfs\": \"naïf\",\n  \"nains\": \"nain\",\n  \"naissance\": \"naissanc\",\n  \"naissant\": \"naiss\",\n  \"naissante\": \"naiss\",\n  \"naissent\": \"naissent\",\n  \"naît\": \"naît\",\n  \"naître\": \"naîtr\",\n  \"naïve\": \"naïv\",\n  \"naïvement\": \"naïv\",\n  \"naïves\": \"naïv\",\n  \"naïveté\": \"naïvet\",\n  \"nanan\": \"nanan\",\n  \"nani\": \"nan\",\n  \"nankin\": \"nankin\",\n  \"nanking\": \"nanking\",\n  \"napier\": \"napi\",\n  \"naples\": \"napl\",\n  \"napoléon\": \"napoléon\",\n  \"napoléons\": \"napoléon\",\n  \"napolitain\": \"napolitain\",\n  \"nappe\": \"napp\",\n  \"narcotique\": \"narcot\",\n  \"narra\": \"narr\",\n  \"narrant\": \"narr\",\n  \"narrateur\": \"narrateur\",\n  \"narration\": \"narrat\",\n  \"narrer\": \"narr\",\n  \"nasillard\": \"nasillard\",\n  \"nassik\": \"nassik\",\n  \"natal\": \"natal\",\n  \"natif\": \"natif\",\n  \"nation\": \"nation\",\n  \"national\": \"national\",\n  \"nationale\": \"national\",\n  \"nationales\": \"national\",\n  \"nationalité\": \"national\",\n  \"nationalités\": \"national\",\n  \"nations\": \"nation\",\n  \"nature\": \"natur\",\n  \"naturel\": \"naturel\",\n  \"naturelle\": \"naturel\",\n  \"naturellement\": \"naturel\",\n  \"naturelles\": \"naturel\",\n  \"naturels\": \"naturel\",\n  \"naufrages\": \"naufrag\",\n  \"nauséabondes\": \"nauséabond\",\n  \"nausées\": \"naus\",\n  \"nautique\": \"nautiqu\",\n  \"nauvoo\": \"nauvoo\",\n  \"navarre\": \"navarr\",\n  \"navigateur\": \"navig\",\n  \"navigateurs\": \"navig\",\n  \"navigation\": \"navig\",\n  \"navigua\": \"navigu\",\n  \"naviguant\": \"navigu\",\n  \"naviguent\": \"naviguent\",\n  \"navire\": \"navir\",\n  \"navires\": \"navir\",\n  \"navré\": \"navr\",\n  \"navrée\": \"navr\",\n  \"nazaro\": \"nazaro\",\n  \"ne\": \"ne\",\n  \"né\": \"né\",\n  \"néanmoins\": \"néanmoin\",\n  \"néant\": \"né\",\n  \"nébieu\": \"nébieu\",\n  \"nebraska\": \"nebrask\",\n  \"nécessaire\": \"nécessair\",\n  \"nécessairement\": \"nécessair\",\n  \"nécessaires\": \"nécessair\",\n  \"nécessitant\": \"nécessit\",\n  \"nécessité\": \"nécess\",\n  \"née\": \"né\",\n  \"nées\": \"né\",\n  \"nef\": \"nef\",\n  \"nefs\": \"nef\",\n  \"négatif\": \"négat\",\n  \"néglige\": \"néglig\",\n  \"négligé\": \"néglig\",\n  \"négligeait\": \"néglig\",\n  \"négligemment\": \"négligent\",\n  \"négligence\": \"négligent\",\n  \"négligents\": \"négligent\",\n  \"négliger\": \"néglig\",\n  \"négligerait\": \"néglig\",\n  \"négociant\": \"négoci\",\n  \"négociants\": \"négoci\",\n  \"négociateur\": \"négoci\",\n  \"négociation\": \"négoci\",\n  \"négociations\": \"négoci\",\n  \"nègre\": \"negr\",\n  \"nègres\": \"negr\",\n  \"neige\": \"neig\",\n  \"neigeait\": \"neig\",\n  \"neiges\": \"neig\",\n  \"neptune\": \"neptun\",\n  \"nerfs\": \"nerf\",\n  \"nerval\": \"nerval\",\n  \"nerveuse\": \"nerveux\",\n  \"nerveux\": \"nerveux\",\n  \"nés\": \"né\",\n  \"net\": \"net\",\n  \"nets\": \"net\",\n  \"nette\": \"net\",\n  \"nettement\": \"net\",\n  \"nettes\": \"net\",\n  \"netteté\": \"nettet\",\n  \"nettoya\": \"nettoi\",\n  \"nettoyer\": \"nettoi\",\n  \"neuf\": \"neuf\",\n  \"neufs\": \"neuf\",\n  \"neutralité\": \"neutral\",\n  \"neutre\": \"neutr\",\n  \"neuvaine\": \"neuvain\",\n  \"neuve\": \"neuv\",\n  \"neuves\": \"neuv\",\n  \"neuvième\": \"neuviem\",\n  \"nevada\": \"nevad\",\n  \"never\": \"nev\",\n  \"neveu\": \"neveu\",\n  \"neveux\": \"neveux\",\n  \"new\": \"new\",\n  \"news\": \"new\",\n  \"ney\": \"ney\",\n  \"nez\": \"nez\",\n  \"ni\": \"ni\",\n  \"niais\": \"ni\",\n  \"niaiserie\": \"niaiser\",\n  \"niaiseries\": \"niaiser\",\n  \"niaises\": \"niais\",\n  \"nice\": \"nic\",\n  \"niche\": \"nich\",\n  \"nicolas\": \"nicol\",\n  \"nids\": \"nid\",\n  \"nie\": \"ni\",\n  \"nié\": \"ni\",\n  \"nièce\": \"niec\",\n  \"nièces\": \"niec\",\n  \"nier\": \"ni\",\n  \"nierais\": \"ni\",\n  \"nierons\": \"ni\",\n  \"nigaud\": \"nigaud\",\n  \"nigauderie\": \"nigauder\",\n  \"nigauds\": \"nigaud\",\n  \"night\": \"night\",\n  \"nil\": \"nil\",\n  \"niveau\": \"niveau\",\n  \"nivelées\": \"nivel\",\n  \"nizam\": \"nizam\",\n  \"no\": \"no\",\n  \"nobiliaires\": \"nobiliair\",\n  \"noble\": \"nobl\",\n  \"nobles\": \"nobl\",\n  \"noblesse\": \"nobless\",\n  \"noce\": \"noc\",\n  \"noces\": \"noc\",\n  \"nocturne\": \"nocturn\",\n  \"nocturnes\": \"nocturn\",\n  \"noeud\": \"noeud\",\n  \"noeuds\": \"noeud\",\n  \"noie\": \"noi\",\n  \"noir\": \"noir\",\n  \"noirci\": \"noirc\",\n  \"noircie\": \"noirc\",\n  \"noircies\": \"noirc\",\n  \"noircis\": \"noirc\",\n  \"noire\": \"noir\",\n  \"noires\": \"noir\",\n  \"noiroud\": \"noiroud\",\n  \"noirs\": \"noir\",\n  \"noix\": \"noix\",\n  \"nom\": \"nom\",\n  \"nombre\": \"nombr\",\n  \"nombreuse\": \"nombreux\",\n  \"nombreuses\": \"nombreux\",\n  \"nombreux\": \"nombreux\",\n  \"nominal\": \"nominal\",\n  \"nominale\": \"nominal\",\n  \"nomination\": \"nomin\",\n  \"nommait\": \"nomm\",\n  \"nommant\": \"nomm\",\n  \"nomme\": \"nomm\",\n  \"nommé\": \"nomm\",\n  \"nommée\": \"nomm\",\n  \"nommer\": \"nomm\",\n  \"nommés\": \"nomm\",\n  \"nommez\": \"nomm\",\n  \"noms\": \"nom\",\n  \"non\": \"non\",\n  \"nonante\": \"non\",\n  \"nonchalance\": \"nonchal\",\n  \"nonchalant\": \"nonchal\",\n  \"norbert\": \"norbert\",\n  \"nord\": \"nord\",\n  \"norimons\": \"norimon\",\n  \"normale\": \"normal\",\n  \"normandie\": \"normand\",\n  \"normands\": \"normand\",\n  \"north\": \"north\",\n  \"nos\": \"nos\",\n  \"not\": \"not\",\n  \"notable\": \"notabl\",\n  \"notablement\": \"notabl\",\n  \"notables\": \"notabl\",\n  \"notaire\": \"notair\",\n  \"notaires\": \"notair\",\n  \"note\": \"not\",\n  \"noté\": \"not\",\n  \"noter\": \"not\",\n  \"notes\": \"not\",\n  \"notez\": \"not\",\n  \"nothing\": \"nothing\",\n  \"notice\": \"notic\",\n  \"notices\": \"notic\",\n  \"notions\": \"notion\",\n  \"notoire\": \"notoir\",\n  \"notoirement\": \"notoir\",\n  \"notre\": \"notr\",\n  \"nôtre\": \"nôtr\",\n  \"nôtres\": \"nôtr\",\n  \"nouant\": \"nou\",\n  \"nouée\": \"nou\",\n  \"nourri\": \"nourr\",\n  \"nourrice\": \"nourric\",\n  \"nourrie\": \"nourr\",\n  \"nourrir\": \"nourr\",\n  \"nourrirait\": \"nourr\",\n  \"nourris\": \"nourr\",\n  \"nourrissait\": \"nourr\",\n  \"nourrissant\": \"nourr\",\n  \"nourrisse\": \"nourr\",\n  \"nourrissent\": \"nourr\",\n  \"nourrit\": \"nourr\",\n  \"nourriture\": \"nourritur\",\n  \"nous\": \"nous\",\n  \"nouveau\": \"nouveau\",\n  \"nouveauté\": \"nouveaut\",\n  \"nouveautés\": \"nouveaut\",\n  \"nouveaux\": \"nouveau\",\n  \"nouvel\": \"nouvel\",\n  \"nouvelle\": \"nouvel\",\n  \"nouvellement\": \"nouvel\",\n  \"nouvelles\": \"nouvel\",\n  \"novare\": \"novar\",\n  \"novateurs\": \"novateur\",\n  \"novembre\": \"novembr\",\n  \"novi\": \"nov\",\n  \"novice\": \"novic\",\n  \"now\": \"now\",\n  \"noyée\": \"noi\",\n  \"noyer\": \"noi\",\n  \"noyers\": \"noyer\",\n  \"noyés\": \"noi\",\n  \"nu\": \"nu\",\n  \"nuage\": \"nuag\",\n  \"nuages\": \"nuag\",\n  \"nuance\": \"nuanc\",\n  \"nuances\": \"nuanc\",\n  \"nudité\": \"nudit\",\n  \"nue\": \"nu\",\n  \"nuées\": \"nu\",\n  \"nues\": \"nu\",\n  \"nui\": \"nui\",\n  \"nuira\": \"nuir\",\n  \"nuiraient\": \"nuir\",\n  \"nuirait\": \"nuir\",\n  \"nuire\": \"nuir\",\n  \"nuisait\": \"nuis\",\n  \"nuisant\": \"nuis\",\n  \"nuisible\": \"nuisibl\",\n  \"nuisibles\": \"nuisibl\",\n  \"nuit\": \"nuit\",\n  \"nuits\": \"nuit\",\n  \"nul\": \"nul\",\n  \"nulle\": \"null\",\n  \"nullement\": \"null\",\n  \"nullité\": \"nullit\",\n  \"nuls\": \"nul\",\n  \"numéro\": \"numéro\",\n  \"numéros\": \"numéros\",\n  \"numérotées\": \"numérot\",\n  \"nunc\": \"nunc\",\n  \"nuremberg\": \"nuremberg\",\n  \"nus\": \"nus\",\n  \"o\": \"o\",\n  \"ô\": \"ô\",\n  \"oakland\": \"oakland\",\n  \"oaths\": \"oath\",\n  \"obadiah\": \"obadiah\",\n  \"obéi\": \"obéi\",\n  \"obéie\": \"obei\",\n  \"obéir\": \"obéir\",\n  \"obéira\": \"obéir\",\n  \"obéirai\": \"obéir\",\n  \"obéirais\": \"obéir\",\n  \"obéirez\": \"obéir\",\n  \"obéis\": \"obéis\",\n  \"obéissaient\": \"obéiss\",\n  \"obéissait\": \"obéiss\",\n  \"obéissance\": \"obéiss\",\n  \"obéissant\": \"obéiss\",\n  \"obéissants\": \"obéiss\",\n  \"obéisse\": \"obéiss\",\n  \"obéissez\": \"obéiss\",\n  \"obéit\": \"obéit\",\n  \"objecter\": \"object\",\n  \"objection\": \"object\",\n  \"objections\": \"object\",\n  \"objet\": \"objet\",\n  \"objets\": \"objet\",\n  \"obligation\": \"oblig\",\n  \"obligations\": \"oblig\",\n  \"obligatoire\": \"obligatoir\",\n  \"oblige\": \"oblig\",\n  \"obligé\": \"oblig\",\n  \"obligea\": \"oblig\",\n  \"obligeait\": \"oblig\",\n  \"obligeamment\": \"oblig\",\n  \"obligeances\": \"oblige\",\n  \"obligeant\": \"oblig\",\n  \"obligeante\": \"oblig\",\n  \"obligeantes\": \"oblig\",\n  \"obligeants\": \"oblig\",\n  \"obligeât\": \"oblig\",\n  \"obligée\": \"oblig\",\n  \"obligent\": \"obligent\",\n  \"obliger\": \"oblig\",\n  \"obligera\": \"oblig\",\n  \"obligeraient\": \"oblig\",\n  \"obligerez\": \"oblig\",\n  \"obligés\": \"oblig\",\n  \"obligez\": \"oblig\",\n  \"obliqua\": \"obliqu\",\n  \"obole\": \"obol\",\n  \"obscur\": \"obscur\",\n  \"obscurcit\": \"obscurc\",\n  \"obscure\": \"obscur\",\n  \"obscurément\": \"obscur\",\n  \"obscures\": \"obscur\",\n  \"obscurité\": \"obscur\",\n  \"obséda\": \"obsed\",\n  \"obsédé\": \"obsed\",\n  \"observa\": \"observ\",\n  \"observaient\": \"observ\",\n  \"observait\": \"observ\",\n  \"observance\": \"observ\",\n  \"observant\": \"observ\",\n  \"observateur\": \"observ\",\n  \"observateurs\": \"observ\",\n  \"observation\": \"observ\",\n  \"observations\": \"observ\",\n  \"observatoire\": \"observatoir\",\n  \"observe\": \"observ\",\n  \"observé\": \"observ\",\n  \"observer\": \"observ\",\n  \"observèrent\": \"observ\",\n  \"observés\": \"observ\",\n  \"obstacle\": \"obstacl\",\n  \"obstacles\": \"obstacl\",\n  \"obstina\": \"obstin\",\n  \"obstinait\": \"obstin\",\n  \"obstinant\": \"obstin\",\n  \"obstination\": \"obstin\",\n  \"obstiné\": \"obstin\",\n  \"obstinément\": \"obstin\",\n  \"obstiner\": \"obstin\",\n  \"obstruaient\": \"obstru\",\n  \"obtenait\": \"obten\",\n  \"obtenez\": \"obten\",\n  \"obtenir\": \"obten\",\n  \"obtenu\": \"obtenu\",\n  \"obtenue\": \"obtenu\",\n  \"obtenus\": \"obtenus\",\n  \"obtiendrai\": \"obtiendr\",\n  \"obtiendrais\": \"obtiendr\",\n  \"obtiendront\": \"obtiendront\",\n  \"obtienne\": \"obtien\",\n  \"obtiennent\": \"obtiennent\",\n  \"obtiens\": \"obtien\",\n  \"obtient\": \"obtient\",\n  \"obtinrent\": \"obtinrent\",\n  \"obtint\": \"obtint\",\n  \"occasion\": \"occas\",\n  \"occasionner\": \"occasion\",\n  \"occasionnés\": \"occasion\",\n  \"occasions\": \"occas\",\n  \"occidentales\": \"occidental\",\n  \"occulte\": \"occult\",\n  \"occultes\": \"occult\",\n  \"occupa\": \"occup\",\n  \"occupaient\": \"occup\",\n  \"occupait\": \"occup\",\n  \"occupant\": \"occup\",\n  \"occupante\": \"occup\",\n  \"occupât\": \"occup\",\n  \"occupation\": \"occup\",\n  \"occupations\": \"occup\",\n  \"occupe\": \"occup\",\n  \"occupé\": \"occup\",\n  \"occupée\": \"occup\",\n  \"occupées\": \"occup\",\n  \"occupent\": \"occupent\",\n  \"occuper\": \"occup\",\n  \"occupera\": \"occup\",\n  \"occuperai\": \"occup\",\n  \"occupèrent\": \"occup\",\n  \"occupés\": \"occup\",\n  \"occupiez\": \"occup\",\n  \"occupons\": \"occupon\",\n  \"occurrence\": \"occurrent\",\n  \"occurrences\": \"occurrent\",\n  \"ocean\": \"ocean\",\n  \"océan\": \"océan\",\n  \"océans\": \"océan\",\n  \"ocre\": \"ocre\",\n  \"octave\": \"octav\",\n  \"octobre\": \"octobr\",\n  \"octroi\": \"octroi\",\n  \"odalisque\": \"odalisqu\",\n  \"ode\": \"ode\",\n  \"odes\": \"ode\",\n  \"odeur\": \"odeur\",\n  \"odieuse\": \"odieux\",\n  \"odieux\": \"odieux\",\n  \"odorante\": \"odor\",\n  \"odorat\": \"odorat\",\n  \"oeil\": \"oeil\",\n  \"oeuf\": \"oeuf\",\n  \"oeufs\": \"oeuf\",\n  \"oeuvre\": \"oeuvr\",\n  \"oeuvres\": \"oeuvr\",\n  \"of\": \"of\",\n  \"offensa\": \"offens\",\n  \"offensait\": \"offens\",\n  \"offensant\": \"offens\",\n  \"offensante\": \"offens\",\n  \"offensantes\": \"offens\",\n  \"offensât\": \"offens\",\n  \"offense\": \"offens\",\n  \"offensé\": \"offens\",\n  \"offensée\": \"offens\",\n  \"offenser\": \"offens\",\n  \"offenserait\": \"offens\",\n  \"offenses\": \"offens\",\n  \"offensés\": \"offens\",\n  \"offensive\": \"offens\",\n  \"offert\": \"offert\",\n  \"offerte\": \"offert\",\n  \"offerts\": \"offert\",\n  \"office\": \"offic\",\n  \"offices\": \"offic\",\n  \"officiant\": \"offici\",\n  \"officiel\": \"officiel\",\n  \"officielle\": \"officiel\",\n  \"officiellement\": \"officiel\",\n  \"officielles\": \"officiel\",\n  \"officiels\": \"officiel\",\n  \"officier\": \"offici\",\n  \"officiers\": \"offici\",\n  \"offraient\": \"offraient\",\n  \"offrais\": \"offrais\",\n  \"offrait\": \"offrait\",\n  \"offrande\": \"offrand\",\n  \"offrandes\": \"offrand\",\n  \"offrant\": \"offrant\",\n  \"offre\": \"offre\",\n  \"offrent\": \"offrent\",\n  \"offres\": \"offre\",\n  \"offrir\": \"offrir\",\n  \"offrira\": \"offrir\",\n  \"offrirai\": \"offrir\",\n  \"offriraient\": \"offrir\",\n  \"offrirait\": \"offrir\",\n  \"offris\": \"offris\",\n  \"offrit\": \"offrit\",\n  \"offusqué\": \"offusqu\",\n  \"ogden\": \"ogden\",\n  \"ogive\": \"ogiv\",\n  \"ogre\": \"ogre\",\n  \"oh\": \"oh\",\n  \"ohio\": \"ohio\",\n  \"oies\": \"oie\",\n  \"oiseau\": \"oiseau\",\n  \"oiseaux\": \"oiseau\",\n  \"oisifs\": \"oisif\",\n  \"oisive\": \"oisiv\",\n  \"olivier\": \"olivi\",\n  \"olo\": \"olo\",\n  \"omaha\": \"omah\",\n  \"ombragée\": \"ombrag\",\n  \"ombrages\": \"ombrag\",\n  \"ombre\": \"ombre\",\n  \"ombres\": \"ombre\",\n  \"ombreuses\": \"ombreux\",\n  \"omelette\": \"omelet\",\n  \"omis\": \"omis\",\n  \"omission\": \"omiss\",\n  \"omit\": \"omit\",\n  \"omnia\": \"omni\",\n  \"omnibus\": \"omnibus\",\n  \"on\": \"on\",\n  \"onces\": \"once\",\n  \"oncle\": \"oncle\",\n  \"oncles\": \"oncle\",\n  \"onction\": \"onction\",\n  \"ondulation\": \"ondul\",\n  \"ondulations\": \"ondul\",\n  \"ont\": \"ont\",\n  \"onze\": \"onze\",\n  \"opera\": \"oper\",\n  \"opéra\": \"oper\",\n  \"opéraient\": \"oper\",\n  \"opérait\": \"oper\",\n  \"opération\": \"oper\",\n  \"opérations\": \"oper\",\n  \"opère\": \"oper\",\n  \"opérée\": \"oper\",\n  \"opérer\": \"oper\",\n  \"opiner\": \"opin\",\n  \"opiniâtrement\": \"opiniâtr\",\n  \"opinion\": \"opinion\",\n  \"opinions\": \"opin\",\n  \"opium\": \"opium\",\n  \"opportun\": \"opportun\",\n  \"opportune\": \"opportun\",\n  \"opportunité\": \"opportun\",\n  \"opposaient\": \"oppos\",\n  \"opposant\": \"oppos\",\n  \"oppose\": \"oppos\",\n  \"opposé\": \"oppos\",\n  \"opposée\": \"oppos\",\n  \"opposées\": \"oppos\",\n  \"opposent\": \"opposent\",\n  \"opposer\": \"oppos\",\n  \"opposerai\": \"oppos\",\n  \"opposés\": \"oppos\",\n  \"opposition\": \"opposit\",\n  \"opprimait\": \"opprim\",\n  \"opprimés\": \"opprim\",\n  \"opprobre\": \"opprobr\",\n  \"opter\": \"opter\",\n  \"optime\": \"optim\",\n  \"opulence\": \"opulent\",\n  \"opulentes\": \"opulent\",\n  \"opulents\": \"opulent\",\n  \"or\": \"or\",\n  \"ora\": \"ora\",\n  \"orage\": \"orag\",\n  \"orages\": \"orag\",\n  \"orange\": \"orang\",\n  \"orangé\": \"orang\",\n  \"oranger\": \"orang\",\n  \"orangerie\": \"oranger\",\n  \"orangers\": \"oranger\",\n  \"oranges\": \"orang\",\n  \"orateur\": \"orateur\",\n  \"orateurs\": \"orateur\",\n  \"orbite\": \"orbit\",\n  \"orchestre\": \"orchestr\",\n  \"ordinaire\": \"ordinair\",\n  \"ordinairement\": \"ordinair\",\n  \"ordinaires\": \"ordinair\",\n  \"ordonna\": \"ordon\",\n  \"ordonnait\": \"ordon\",\n  \"ordonnance\": \"ordon\",\n  \"ordonnant\": \"ordon\",\n  \"ordonne\": \"ordon\",\n  \"ordonné\": \"ordon\",\n  \"ordonnée\": \"ordon\",\n  \"ordonner\": \"ordon\",\n  \"ordonnera\": \"ordon\",\n  \"ordonnes\": \"ordon\",\n  \"ordonnés\": \"ordon\",\n  \"ordre\": \"ordre\",\n  \"ordres\": \"ordre\",\n  \"oregon\": \"oregon\",\n  \"oreille\": \"oreil\",\n  \"oreiller\": \"oreil\",\n  \"oreillers\": \"oreiller\",\n  \"oreilles\": \"oreil\",\n  \"orfèvre\": \"orfevr\",\n  \"orfèvrerie\": \"orfèvrer\",\n  \"orfèvres\": \"orfevr\",\n  \"orfraie\": \"orfrai\",\n  \"organes\": \"organ\",\n  \"organisa\": \"organis\",\n  \"organisait\": \"organis\",\n  \"organisation\": \"organis\",\n  \"organisé\": \"organis\",\n  \"organisée\": \"organis\",\n  \"organiser\": \"organis\",\n  \"organisèrent\": \"organis\",\n  \"orge\": \"orge\",\n  \"orgie\": \"orgi\",\n  \"orgue\": \"orgu\",\n  \"orgueil\": \"orgueil\",\n  \"orgueilleuse\": \"orgueil\",\n  \"orgueilleusement\": \"orgueil\",\n  \"orgueilleux\": \"orgueil\",\n  \"orient\": \"orient\",\n  \"oriental\": \"oriental\",\n  \"orientale\": \"oriental\",\n  \"orientalistes\": \"oriental\",\n  \"orienter\": \"orient\",\n  \"original\": \"original\",\n  \"originale\": \"original\",\n  \"originalité\": \"original\",\n  \"originaux\": \"original\",\n  \"origine\": \"origin\",\n  \"orléans\": \"orléan\",\n  \"ornaient\": \"ornaient\",\n  \"ornait\": \"ornait\",\n  \"orne\": \"orne\",\n  \"orné\": \"orné\",\n  \"ornée\": \"orné\",\n  \"ornées\": \"orné\",\n  \"ornement\": \"ornement\",\n  \"ornementation\": \"ornement\",\n  \"ornements\": \"ornement\",\n  \"ornent\": \"ornent\",\n  \"orner\": \"orner\",\n  \"ornèrent\": \"ornèrent\",\n  \"ornés\": \"orné\",\n  \"ornière\": \"ornier\",\n  \"orpheline\": \"orphelin\",\n  \"orphelins\": \"orphelin\",\n  \"orta\": \"orta\",\n  \"orteils\": \"orteil\",\n  \"orthographe\": \"orthograph\",\n  \"orties\": \"orti\",\n  \"ory\": \"ory\",\n  \"os\": \"os\",\n  \"osa\": \"osa\",\n  \"osai\": \"osai\",\n  \"osaient\": \"osaient\",\n  \"osais\": \"osais\",\n  \"osait\": \"osait\",\n  \"osant\": \"osant\",\n  \"osât\": \"osât\",\n  \"oscillaient\": \"oscill\",\n  \"oscillait\": \"oscill\",\n  \"oscuro\": \"oscuro\",\n  \"ose\": \"ose\",\n  \"osé\": \"osé\",\n  \"osées\": \"osé\",\n  \"oseille\": \"oseil\",\n  \"osent\": \"osent\",\n  \"oser\": \"oser\",\n  \"osera\": \"oser\",\n  \"oserai\": \"oser\",\n  \"oseraient\": \"oser\",\n  \"oserais\": \"oser\",\n  \"oserait\": \"oser\",\n  \"osèrent\": \"osèrent\",\n  \"oserons\": \"oseron\",\n  \"osez\": \"osez\",\n  \"ostensiblement\": \"ostensibl\",\n  \"ôta\": \"ôta\",\n  \"ôtaient\": \"ôtaient\",\n  \"ôtait\": \"ôtait\",\n  \"ôte\": \"ôte\",\n  \"ôté\": \"ôté\",\n  \"ôtées\": \"ôté\",\n  \"ôter\": \"ôter\",\n  \"ôtera\": \"ôter\",\n  \"ôterai\": \"ôter\",\n  \"ôterait\": \"ôter\",\n  \"ôtèrent\": \"ôtèrent\",\n  \"ôterez\": \"ôter\",\n  \"ôtez\": \"ôtez\",\n  \"othello\": \"othello\",\n  \"ottomane\": \"ottoman\",\n  \"ou\": \"ou\",\n  \"où\": \"où\",\n  \"ouailles\": \"ouaill\",\n  \"oubli\": \"oubl\",\n  \"oublia\": \"oubli\",\n  \"oubliai\": \"oubli\",\n  \"oubliais\": \"oubli\",\n  \"oubliait\": \"oubli\",\n  \"oubliant\": \"oubli\",\n  \"oublie\": \"oubl\",\n  \"oublié\": \"oubli\",\n  \"oubliée\": \"oubli\",\n  \"oubliées\": \"oubli\",\n  \"oublient\": \"oublient\",\n  \"oublier\": \"oubli\",\n  \"oubliera\": \"oubli\",\n  \"oublierai\": \"oubli\",\n  \"oublierais\": \"oubli\",\n  \"oublierait\": \"oubli\",\n  \"oublierez\": \"oubli\",\n  \"oublies\": \"oubl\",\n  \"oubliez\": \"oubl\",\n  \"oublions\": \"oublion\",\n  \"ouest\": \"ouest\",\n  \"oui\": \"oui\",\n  \"ouï\": \"ouï\",\n  \"ouïe\": \"ouï\",\n  \"our\": \"our\",\n  \"ouragan\": \"ouragan\",\n  \"ouragans\": \"ouragan\",\n  \"ourdies\": \"ourd\",\n  \"ours\": \"our\",\n  \"outils\": \"outil\",\n  \"outrage\": \"outrag\",\n  \"outrageait\": \"outrag\",\n  \"outrageantes\": \"outrag\",\n  \"outrageants\": \"outrag\",\n  \"outragée\": \"outrag\",\n  \"outrager\": \"outrag\",\n  \"outrages\": \"outrag\",\n  \"outragés\": \"outrag\",\n  \"outrageusement\": \"outrag\",\n  \"outrait\": \"outr\",\n  \"outrance\": \"outranc\",\n  \"outrant\": \"outr\",\n  \"outre\": \"outr\",\n  \"outré\": \"outr\",\n  \"outrée\": \"outr\",\n  \"outrepasser\": \"outrepass\",\n  \"outrez\": \"outr\",\n  \"ouvert\": \"ouvert\",\n  \"ouverte\": \"ouvert\",\n  \"ouvertement\": \"ouvert\",\n  \"ouvertes\": \"ouvert\",\n  \"ouverts\": \"ouvert\",\n  \"ouverture\": \"ouvertur\",\n  \"ouvrage\": \"ouvrag\",\n  \"ouvragé\": \"ouvrag\",\n  \"ouvrages\": \"ouvrag\",\n  \"ouvraient\": \"ouvr\",\n  \"ouvrait\": \"ouvr\",\n  \"ouvrant\": \"ouvr\",\n  \"ouvrante\": \"ouvr\",\n  \"ouvre\": \"ouvr\",\n  \"ouvrez\": \"ouvr\",\n  \"ouvrier\": \"ouvri\",\n  \"ouvrière\": \"ouvri\",\n  \"ouvriers\": \"ouvri\",\n  \"ouvrir\": \"ouvr\",\n  \"ouvrira\": \"ouvr\",\n  \"ouvrirait\": \"ouvr\",\n  \"ouvrirent\": \"ouvr\",\n  \"ouvrit\": \"ouvr\",\n  \"ouvrît\": \"ouvr\",\n  \"ovale\": \"oval\",\n  \"oxydé\": \"oxyd\",\n  \"oysterpuf\": \"oysterpuf\",\n  \"oysters\": \"oyster\",\n  \"p\": \"p\",\n  \"pablo\": \"pablo\",\n  \"pace\": \"pac\",\n  \"pacha\": \"pach\",\n  \"pacific\": \"pacific\",\n  \"pacifique\": \"pacif\",\n  \"pacifiques\": \"pacif\",\n  \"packet\": \"packet\",\n  \"padoue\": \"padou\",\n  \"paganisme\": \"pagan\",\n  \"pagato\": \"pagato\",\n  \"page\": \"pag\",\n  \"pages\": \"pag\",\n  \"pagina\": \"pagin\",\n  \"pagode\": \"pagod\",\n  \"pagodes\": \"pagod\",\n  \"paie\": \"pai\",\n  \"paiement\": \"pai\",\n  \"paiements\": \"pai\",\n  \"païen\": \"païen\",\n  \"paient\": \"paient\",\n  \"paierai\": \"pai\",\n  \"paierait\": \"pai\",\n  \"paieras\": \"pai\",\n  \"paieriez\": \"pai\",\n  \"paillasse\": \"paill\",\n  \"paillasses\": \"paill\",\n  \"paille\": \"paill\",\n  \"pain\": \"pain\",\n  \"pains\": \"pain\",\n  \"pair\": \"pair\",\n  \"paire\": \"pair\",\n  \"paires\": \"pair\",\n  \"pairie\": \"pair\",\n  \"pairs\": \"pair\",\n  \"paisible\": \"paisibl\",\n  \"paisiblement\": \"paisibl\",\n  \"paix\": \"paix\",\n  \"pal\": \"pal\",\n  \"palais\": \"pal\",\n  \"palanquin\": \"palanquin\",\n  \"palanquins\": \"palanquin\",\n  \"palanza\": \"palanz\",\n  \"palazzeto\": \"palazzeto\",\n  \"pale\": \"pal\",\n  \"pâle\": \"pâl\",\n  \"palefrenier\": \"palefreni\",\n  \"pâles\": \"pâl\",\n  \"palestine\": \"palestin\",\n  \"paletot\": \"paletot\",\n  \"pâleur\": \"pâleur\",\n  \"pâli\": \"pâl\",\n  \"palier\": \"pali\",\n  \"pâlir\": \"pâl\",\n  \"palissades\": \"palissad\",\n  \"pâlissaient\": \"pâl\",\n  \"pâlissant\": \"pâl\",\n  \"pâlissantes\": \"pâl\",\n  \"pâlissent\": \"pâl\",\n  \"pâlit\": \"pâl\",\n  \"palki\": \"palk\",\n  \"palkigharis\": \"palkighar\",\n  \"pall\": \"pall\",\n  \"palla\": \"pall\",\n  \"pallagi\": \"pallag\",\n  \"pallida\": \"pallid\",\n  \"palmiers\": \"palmi\",\n  \"palpitait\": \"palpit\",\n  \"palpitant\": \"palpit\",\n  \"palpitante\": \"palpit\",\n  \"palpitants\": \"palpit\",\n  \"palpiter\": \"palpit\",\n  \"pamphlet\": \"pamphlet\",\n  \"pamphlets\": \"pamphlet\",\n  \"pan\": \"pan\",\n  \"panache\": \"panach\",\n  \"pança\": \"panc\",\n  \"panier\": \"pani\",\n  \"panneaux\": \"panneau\",\n  \"panorama\": \"panoram\",\n  \"panoramique\": \"panoram\",\n  \"pansa\": \"pans\",\n  \"pansaient\": \"pans\",\n  \"pansement\": \"pans\",\n  \"panser\": \"pans\",\n  \"pansez\": \"pans\",\n  \"pantalon\": \"pantalon\",\n  \"pantalons\": \"pantalon\",\n  \"panthères\": \"panther\",\n  \"pantoufles\": \"pantoufl\",\n  \"paolina\": \"paolin\",\n  \"papa\": \"pap\",\n  \"pape\": \"pap\",\n  \"paperasses\": \"paper\",\n  \"paperassière\": \"paperassi\",\n  \"papier\": \"papi\",\n  \"papiers\": \"papi\",\n  \"papillon\": \"papillon\",\n  \"papillons\": \"papillon\",\n  \"papillotes\": \"papillot\",\n  \"papouas\": \"papou\",\n  \"papyrus\": \"papyrus\",\n  \"paquebot\": \"paquebot\",\n  \"paquebots\": \"paquebot\",\n  \"paquet\": \"paquet\",\n  \"paquetées\": \"paquet\",\n  \"paquets\": \"paquet\",\n  \"par\": \"par\",\n  \"para\": \"par\",\n  \"parade\": \"parad\",\n  \"parader\": \"parad\",\n  \"paradis\": \"parad\",\n  \"parages\": \"parag\",\n  \"paragraphe\": \"paragraph\",\n  \"parais\": \"par\",\n  \"paraissaient\": \"paraiss\",\n  \"paraissais\": \"paraiss\",\n  \"paraissait\": \"paraiss\",\n  \"paraisse\": \"paraiss\",\n  \"paraissent\": \"paraissent\",\n  \"parait\": \"par\",\n  \"paraît\": \"paraît\",\n  \"paraîtra\": \"paraîtr\",\n  \"paraîtrai\": \"paraîtr\",\n  \"paraîtraient\": \"paraîtr\",\n  \"paraître\": \"paraîtr\",\n  \"paraîtrons\": \"paraîtron\",\n  \"parallèle\": \"parallel\",\n  \"parallèlement\": \"parallel\",\n  \"paralysaient\": \"paralys\",\n  \"paralyse\": \"paralys\",\n  \"paralysé\": \"paralys\",\n  \"paralyser\": \"paralys\",\n  \"paralytique\": \"paralyt\",\n  \"parant\": \"par\",\n  \"parapet\": \"parapet\",\n  \"paraphait\": \"paraph\",\n  \"paraphe\": \"paraph\",\n  \"paraphrasa\": \"paraphras\",\n  \"parapluie\": \"paraplui\",\n  \"paratonnerre\": \"paratonnerr\",\n  \"paratonnerres\": \"paratonnerr\",\n  \"paravent\": \"paravent\",\n  \"parbleu\": \"parbleu\",\n  \"parc\": \"parc\",\n  \"parce\": \"parc\",\n  \"parchemin\": \"parchemin\",\n  \"parcouraient\": \"parcour\",\n  \"parcourait\": \"parcour\",\n  \"parcourant\": \"parcour\",\n  \"parcourent\": \"parcourent\",\n  \"parcourir\": \"parcour\",\n  \"parcourrai\": \"parcourr\",\n  \"parcours\": \"parcour\",\n  \"parcourt\": \"parcourt\",\n  \"parcouru\": \"parcouru\",\n  \"parcourue\": \"parcouru\",\n  \"parcoururent\": \"parcoururent\",\n  \"parcourus\": \"parcourus\",\n  \"parcourut\": \"parcourut\",\n  \"pardessus\": \"pardessus\",\n  \"pardi\": \"pard\",\n  \"pardieu\": \"pardieu\",\n  \"pardon\": \"pardon\",\n  \"pardonna\": \"pardon\",\n  \"pardonnable\": \"pardon\",\n  \"pardonnables\": \"pardon\",\n  \"pardonnait\": \"pardon\",\n  \"pardonne\": \"pardon\",\n  \"pardonné\": \"pardon\",\n  \"pardonnées\": \"pardon\",\n  \"pardonnent\": \"pardonnent\",\n  \"pardonner\": \"pardon\",\n  \"pardonnera\": \"pardon\",\n  \"pardonnerai\": \"pardon\",\n  \"pardonnerais\": \"pardon\",\n  \"pardonnerait\": \"pardon\",\n  \"pardonnerez\": \"pardon\",\n  \"pardonnes\": \"pardon\",\n  \"pardonnez\": \"pardon\",\n  \"pardonniez\": \"pardon\",\n  \"pardons\": \"pardon\",\n  \"pare\": \"par\",\n  \"paré\": \"par\",\n  \"parée\": \"par\",\n  \"pareil\": \"pareil\",\n  \"pareille\": \"pareil\",\n  \"pareilles\": \"pareil\",\n  \"pareils\": \"pareil\",\n  \"parent\": \"parent\",\n  \"parente\": \"parent\",\n  \"parentes\": \"parent\",\n  \"parenthèse\": \"parenthes\",\n  \"parents\": \"parent\",\n  \"parer\": \"par\",\n  \"paresse\": \"paress\",\n  \"paresseuse\": \"paress\",\n  \"paresseux\": \"paress\",\n  \"parfait\": \"parf\",\n  \"parfaite\": \"parfait\",\n  \"parfaitement\": \"parfait\",\n  \"parfaites\": \"parfait\",\n  \"parfaits\": \"parfait\",\n  \"parfois\": \"parfois\",\n  \"parfum\": \"parfum\",\n  \"parfumée\": \"parfum\",\n  \"parfums\": \"parfum\",\n  \"pari\": \"pari\",\n  \"paria\": \"pari\",\n  \"parie\": \"pari\",\n  \"parié\": \"pari\",\n  \"parient\": \"parient\",\n  \"parier\": \"pari\",\n  \"parierais\": \"pari\",\n  \"parièrent\": \"pari\",\n  \"pariétaires\": \"pariétair\",\n  \"parieurs\": \"parieur\",\n  \"paris\": \"paris\",\n  \"parisien\": \"parisien\",\n  \"parisienne\": \"parisien\",\n  \"parisiennes\": \"parisien\",\n  \"parisiens\": \"parisien\",\n  \"parla\": \"parl\",\n  \"parlaient\": \"parl\",\n  \"parlais\": \"parl\",\n  \"parlait\": \"parl\",\n  \"parlant\": \"parl\",\n  \"parlantes\": \"parl\",\n  \"parlants\": \"parl\",\n  \"parlassent\": \"parl\",\n  \"parlât\": \"parl\",\n  \"parle\": \"parl\",\n  \"parlé\": \"parl\",\n  \"parlement\": \"parl\",\n  \"parlent\": \"parlent\",\n  \"parler\": \"parl\",\n  \"parlera\": \"parl\",\n  \"parlerai\": \"parl\",\n  \"parlerais\": \"parl\",\n  \"parlerait\": \"parl\",\n  \"parlèrent\": \"parl\",\n  \"parlerez\": \"parl\",\n  \"parlerons\": \"parl\",\n  \"parleront\": \"parl\",\n  \"parles\": \"parl\",\n  \"parleur\": \"parleur\",\n  \"parleurs\": \"parleur\",\n  \"parlez\": \"parl\",\n  \"parliez\": \"parl\",\n  \"parlions\": \"parlion\",\n  \"parloir\": \"parloir\",\n  \"parlons\": \"parlon\",\n  \"parma\": \"parm\",\n  \"parme\": \"parm\",\n  \"parmesan\": \"parmesan\",\n  \"parmesans\": \"parmesan\",\n  \"parmi\": \"parm\",\n  \"parois\": \"parois\",\n  \"paroisse\": \"paroiss\",\n  \"paroisses\": \"paroiss\",\n  \"paroissiale\": \"paroissial\",\n  \"paroissiens\": \"paroissien\",\n  \"parole\": \"parol\",\n  \"paroles\": \"parol\",\n  \"paroxysme\": \"paroxysm\",\n  \"parquet\": \"parquet\",\n  \"parquetée\": \"parquet\",\n  \"parrain\": \"parrain\",\n  \"pars\": \"par\",\n  \"parsemée\": \"parsem\",\n  \"parsi\": \"pars\",\n  \"parsie\": \"pars\",\n  \"parsis\": \"pars\",\n  \"part\": \"part\",\n  \"partage\": \"partag\",\n  \"partagé\": \"partag\",\n  \"partagea\": \"partag\",\n  \"partageait\": \"partag\",\n  \"partagée\": \"partag\",\n  \"partager\": \"partag\",\n  \"partagerai\": \"partag\",\n  \"partagerais\": \"partag\",\n  \"partaient\": \"part\",\n  \"partait\": \"part\",\n  \"partana\": \"partan\",\n  \"partance\": \"partanc\",\n  \"partant\": \"part\",\n  \"parte\": \"part\",\n  \"partenaire\": \"partenair\",\n  \"partenaires\": \"partenair\",\n  \"partent\": \"partent\",\n  \"parterre\": \"parterr\",\n  \"parterres\": \"parterr\",\n  \"partes\": \"part\",\n  \"partez\": \"part\",\n  \"parti\": \"part\",\n  \"particularité\": \"particular\",\n  \"particularités\": \"particular\",\n  \"particulier\": \"particuli\",\n  \"particulière\": \"particuli\",\n  \"particulièrement\": \"particuli\",\n  \"particuliers\": \"particuli\",\n  \"partie\": \"part\",\n  \"parties\": \"part\",\n  \"partiez\": \"part\",\n  \"partir\": \"part\",\n  \"partira\": \"part\",\n  \"partirai\": \"part\",\n  \"partirais\": \"part\",\n  \"partirait\": \"part\",\n  \"partirent\": \"part\",\n  \"partirez\": \"part\",\n  \"partirons\": \"part\",\n  \"partis\": \"part\",\n  \"partisan\": \"partisan\",\n  \"partisans\": \"partisan\",\n  \"partit\": \"part\",\n  \"partît\": \"part\",\n  \"partner\": \"partn\",\n  \"partons\": \"parton\",\n  \"partout\": \"partout\",\n  \"parts\": \"part\",\n  \"paru\": \"paru\",\n  \"parurent\": \"parurent\",\n  \"parut\": \"parut\",\n  \"parût\": \"parût\",\n  \"parvenaient\": \"parven\",\n  \"parvenait\": \"parven\",\n  \"parvenir\": \"parven\",\n  \"parvenons\": \"parvenon\",\n  \"parvenu\": \"parvenu\",\n  \"parvenue\": \"parvenu\",\n  \"parviendrai\": \"parviendr\",\n  \"parviendraient\": \"parviendr\",\n  \"parviendrait\": \"parviendr\",\n  \"parviendras\": \"parviendr\",\n  \"parviendrons\": \"parviendron\",\n  \"parviendront\": \"parviendront\",\n  \"parviens\": \"parvien\",\n  \"parvient\": \"parvient\",\n  \"parvinrent\": \"parvinrent\",\n  \"parvint\": \"parvint\",\n  \"pas\": \"pas\",\n  \"pascal\": \"pascal\",\n  \"pass\": \"pass\",\n  \"passa\": \"pass\",\n  \"passable\": \"passabl\",\n  \"passablement\": \"passabl\",\n  \"passables\": \"passabl\",\n  \"passage\": \"passag\",\n  \"passager\": \"passag\",\n  \"passagère\": \"passager\",\n  \"passagères\": \"passager\",\n  \"passagers\": \"passager\",\n  \"passages\": \"passag\",\n  \"passaient\": \"pass\",\n  \"passais\": \"pass\",\n  \"passait\": \"pass\",\n  \"passant\": \"pass\",\n  \"passants\": \"pass\",\n  \"passar\": \"passar\",\n  \"passe\": \"pass\",\n  \"passé\": \"pass\",\n  \"passée\": \"pass\",\n  \"passées\": \"pass\",\n  \"passementier\": \"passementi\",\n  \"passent\": \"passent\",\n  \"passepartout\": \"passepartout\",\n  \"passeport\": \"passeport\",\n  \"passeports\": \"passeport\",\n  \"passer\": \"pass\",\n  \"passera\": \"pass\",\n  \"passerai\": \"pass\",\n  \"passerais\": \"pass\",\n  \"passerait\": \"pass\",\n  \"passerelle\": \"passerel\",\n  \"passerelles\": \"passerel\",\n  \"passèrent\": \"pass\",\n  \"passerons\": \"pass\",\n  \"passeront\": \"pass\",\n  \"passes\": \"pass\",\n  \"passés\": \"pass\",\n  \"passez\": \"pass\",\n  \"passif\": \"passif\",\n  \"passion\": \"passion\",\n  \"passionnait\": \"passion\",\n  \"passionnant\": \"passion\",\n  \"passionne\": \"passion\",\n  \"passionné\": \"passion\",\n  \"passionnée\": \"passion\",\n  \"passionnées\": \"passion\",\n  \"passionnément\": \"passion\",\n  \"passionner\": \"passion\",\n  \"passionnés\": \"passion\",\n  \"passions\": \"passion\",\n  \"passive\": \"passiv\",\n  \"passons\": \"passon\",\n  \"pastoral\": \"pastoral\",\n  \"pastorale\": \"pastoral\",\n  \"pataugeant\": \"pataug\",\n  \"pâté\": \"pât\",\n  \"patelin\": \"patelin\",\n  \"patente\": \"patent\",\n  \"pater\": \"pat\",\n  \"paterne\": \"patern\",\n  \"paternel\": \"paternel\",\n  \"paternelle\": \"paternel\",\n  \"pathétique\": \"pathet\",\n  \"pathétiques\": \"pathet\",\n  \"pathos\": \"pathos\",\n  \"patiemment\": \"patient\",\n  \"patience\": \"patienc\",\n  \"patinant\": \"patin\",\n  \"patna\": \"patn\",\n  \"patois\": \"patois\",\n  \"patrician\": \"patrician\",\n  \"patricien\": \"patricien\",\n  \"patricienne\": \"patricien\",\n  \"patriciens\": \"patricien\",\n  \"patrie\": \"patr\",\n  \"patriotes\": \"patriot\",\n  \"patriotisme\": \"patriot\",\n  \"patron\": \"patron\",\n  \"patronage\": \"patronag\",\n  \"patronne\": \"patron\",\n  \"patronnes\": \"patron\",\n  \"patrouille\": \"patrouill\",\n  \"patte\": \"patt\",\n  \"pâture\": \"pâtur\",\n  \"pauca\": \"pauc\",\n  \"paul\": \"paul\",\n  \"paupière\": \"paupi\",\n  \"paupières\": \"paupi\",\n  \"pauvre\": \"pauvr\",\n  \"pauvrement\": \"pauvr\",\n  \"pauvres\": \"pauvr\",\n  \"pauvreté\": \"pauvret\",\n  \"pauwell\": \"pauwel\",\n  \"pavé\": \"pav\",\n  \"pavée\": \"pav\",\n  \"pavie\": \"pav\",\n  \"pavillon\": \"pavillon\",\n  \"pavillons\": \"pavillon\",\n  \"pavois\": \"pavois\",\n  \"pawnies\": \"pawn\",\n  \"paya\": \"pai\",\n  \"payables\": \"payabl\",\n  \"payait\": \"pai\",\n  \"payant\": \"pai\",\n  \"paye\": \"pay\",\n  \"payé\": \"pai\",\n  \"payée\": \"pai\",\n  \"payent\": \"payent\",\n  \"payer\": \"pai\",\n  \"payera\": \"pai\",\n  \"payés\": \"pai\",\n  \"payiez\": \"pai\",\n  \"payons\": \"payon\",\n  \"pays\": \"pay\",\n  \"paysage\": \"paysag\",\n  \"paysages\": \"paysag\",\n  \"paysan\": \"paysan\",\n  \"paysanne\": \"paysann\",\n  \"paysans\": \"paysan\",\n  \"peak\": \"peak\",\n  \"peau\": \"peau\",\n  \"peccadille\": \"peccadill\",\n  \"peccavi\": \"peccav\",\n  \"péchais\": \"pech\",\n  \"pêche\": \"pêch\",\n  \"péché\": \"pech\",\n  \"pécher\": \"pech\",\n  \"péchés\": \"pech\",\n  \"pécheur\": \"pécheur\",\n  \"pêcheurs\": \"pêcheur\",\n  \"pectorale\": \"pectoral\",\n  \"pécule\": \"pécul\",\n  \"pécuniaire\": \"pécuniair\",\n  \"pédant\": \"ped\",\n  \"pédanterie\": \"pédanter\",\n  \"pédantesque\": \"pédantesqu\",\n  \"pedroti\": \"pedrot\",\n  \"peignaient\": \"peign\",\n  \"peignait\": \"peign\",\n  \"peignant\": \"peign\",\n  \"peigné\": \"peign\",\n  \"peignez\": \"peign\",\n  \"peignit\": \"peign\",\n  \"peindra\": \"peindr\",\n  \"peindre\": \"peindr\",\n  \"peine\": \"pein\",\n  \"peiné\": \"pein\",\n  \"peines\": \"pein\",\n  \"peinés\": \"pein\",\n  \"peint\": \"peint\",\n  \"peinte\": \"peint\",\n  \"peintes\": \"peint\",\n  \"peintre\": \"peintr\",\n  \"peintres\": \"peintr\",\n  \"peints\": \"peint\",\n  \"peinture\": \"peintur\",\n  \"peintures\": \"peintur\",\n  \"pékin\": \"pékin\",\n  \"pêle\": \"pêl\",\n  \"pelegrino\": \"pelegrino\",\n  \"pèlerinage\": \"pèlerinag\",\n  \"pèlerinages\": \"pèlerinag\",\n  \"pèlerine\": \"pèlerin\",\n  \"pèlerins\": \"pèlerin\",\n  \"pélicans\": \"pélican\",\n  \"pelisse\": \"pel\",\n  \"pelisses\": \"pel\",\n  \"pelletées\": \"pellet\",\n  \"pellico\": \"pellico\",\n  \"peloton\": \"peloton\",\n  \"pénal\": \"pénal\",\n  \"penaud\": \"penaud\",\n  \"penauds\": \"penaud\",\n  \"pence\": \"penc\",\n  \"pencha\": \"pench\",\n  \"penchaient\": \"pench\",\n  \"penchant\": \"pench\",\n  \"penché\": \"pench\",\n  \"pencher\": \"pench\",\n  \"pend\": \"pend\",\n  \"pendable\": \"pendabl\",\n  \"pendables\": \"pendabl\",\n  \"pendaient\": \"pend\",\n  \"pendait\": \"pend\",\n  \"pendant\": \"pend\",\n  \"pendante\": \"pend\",\n  \"pendantes\": \"pend\",\n  \"pendre\": \"pendr\",\n  \"pendu\": \"pendu\",\n  \"pendue\": \"pendu\",\n  \"pendule\": \"pendul\",\n  \"pendules\": \"pendul\",\n  \"pendus\": \"pendus\",\n  \"pénétra\": \"pénetr\",\n  \"pénétrait\": \"pénetr\",\n  \"pénétrant\": \"pénetr\",\n  \"pénétration\": \"pénetr\",\n  \"pénètre\": \"pénetr\",\n  \"pénétré\": \"pénetr\",\n  \"pénétrée\": \"pénetr\",\n  \"pénétrer\": \"pénetr\",\n  \"pénétrera\": \"pénetr\",\n  \"pénétrèrent\": \"pénetr\",\n  \"pénible\": \"pénibl\",\n  \"péniblement\": \"pénibl\",\n  \"pénibles\": \"pénibl\",\n  \"péninsulaire\": \"péninsulair\",\n  \"peninsular\": \"peninsular\",\n  \"péninsule\": \"péninsul\",\n  \"pénitence\": \"pénitent\",\n  \"pennsylvanie\": \"pennsylvan\",\n  \"penny\": \"penny\",\n  \"pensa\": \"pens\",\n  \"pensai\": \"pens\",\n  \"pensaient\": \"pens\",\n  \"pensais\": \"pens\",\n  \"pensait\": \"pens\",\n  \"pensant\": \"pens\",\n  \"pensante\": \"pens\",\n  \"pensants\": \"pens\",\n  \"pensât\": \"pens\",\n  \"pense\": \"pens\",\n  \"pensé\": \"pens\",\n  \"pensée\": \"pens\",\n  \"pensées\": \"pens\",\n  \"pensent\": \"pensent\",\n  \"penser\": \"pens\",\n  \"pensera\": \"pens\",\n  \"penserais\": \"pens\",\n  \"penserait\": \"pens\",\n  \"pensèrent\": \"pens\",\n  \"penseur\": \"penseur\",\n  \"pensez\": \"pens\",\n  \"pensif\": \"pensif\",\n  \"pension\": \"pension\",\n  \"pensionnaire\": \"pensionnair\",\n  \"pensive\": \"pensiv\",\n  \"pensons\": \"penson\",\n  \"pentagone\": \"pentagon\",\n  \"pentateuque\": \"pentateuqu\",\n  \"pente\": \"pent\",\n  \"pentes\": \"pent\",\n  \"pénurie\": \"pénur\",\n  \"pépé\": \"pep\",\n  \"pépites\": \"pépit\",\n  \"pequigny\": \"pequigny\",\n  \"per\": \"per\",\n  \"perçaient\": \"perc\",\n  \"perçait\": \"perc\",\n  \"perçant\": \"perc\",\n  \"perçante\": \"perc\",\n  \"perce\": \"perc\",\n  \"percé\": \"perc\",\n  \"percepteur\": \"percepteur\",\n  \"percer\": \"perc\",\n  \"percèrent\": \"perc\",\n  \"perche\": \"perch\",\n  \"perché\": \"perch\",\n  \"percussion\": \"percuss\",\n  \"perd\": \"perd\",\n  \"perdaient\": \"perd\",\n  \"perdais\": \"perd\",\n  \"perdait\": \"perd\",\n  \"perdant\": \"perd\",\n  \"perde\": \"perd\",\n  \"perdent\": \"perdent\",\n  \"perdez\": \"perd\",\n  \"perdirent\": \"perd\",\n  \"perdit\": \"perd\",\n  \"perdition\": \"perdit\",\n  \"perdons\": \"perdon\",\n  \"perdra\": \"perdr\",\n  \"perdrai\": \"perdr\",\n  \"perdrais\": \"perdr\",\n  \"perdrait\": \"perdr\",\n  \"perdras\": \"perdr\",\n  \"perdre\": \"perdr\",\n  \"perdreau\": \"perdreau\",\n  \"perdriez\": \"perdr\",\n  \"perdrix\": \"perdrix\",\n  \"perds\": \"perd\",\n  \"perdu\": \"perdu\",\n  \"perdue\": \"perdu\",\n  \"perdus\": \"perdus\",\n  \"père\": \"per\",\n  \"pereire\": \"pereir\",\n  \"pères\": \"per\",\n  \"perfection\": \"perfect\",\n  \"perfectionner\": \"perfection\",\n  \"pergolèse\": \"pergoles\",\n  \"péri\": \"per\",\n  \"péril\": \"péril\",\n  \"périlleux\": \"périll\",\n  \"périls\": \"péril\",\n  \"périmètre\": \"périmetr\",\n  \"période\": \"périod\",\n  \"périodique\": \"périod\",\n  \"périr\": \"per\",\n  \"périraient\": \"per\",\n  \"péris\": \"per\",\n  \"périsse\": \"per\",\n  \"périssent\": \"per\",\n  \"périssez\": \"per\",\n  \"péristyle\": \"péristyl\",\n  \"péristyles\": \"péristyl\",\n  \"périt\": \"per\",\n  \"perles\": \"perl\",\n  \"permanence\": \"permanent\",\n  \"permanente\": \"permanent\",\n  \"permet\": \"permet\",\n  \"permets\": \"permet\",\n  \"permettaient\": \"permet\",\n  \"permettait\": \"permet\",\n  \"permettant\": \"permet\",\n  \"permette\": \"permet\",\n  \"permettent\": \"permettent\",\n  \"permettez\": \"permet\",\n  \"permettra\": \"permettr\",\n  \"permettrai\": \"permettr\",\n  \"permettrait\": \"permettr\",\n  \"permettre\": \"permettr\",\n  \"permettrez\": \"permettr\",\n  \"permettront\": \"permettront\",\n  \"permirent\": \"perm\",\n  \"permis\": \"perm\",\n  \"permise\": \"permis\",\n  \"permission\": \"permiss\",\n  \"permit\": \"perm\",\n  \"permît\": \"perm\",\n  \"pernice\": \"pernic\",\n  \"pérorait\": \"péror\",\n  \"péroré\": \"péror\",\n  \"pérou\": \"pérou\",\n  \"pérouse\": \"pérous\",\n  \"perpendiculairement\": \"perpendiculair\",\n  \"perpétuelle\": \"perpétuel\",\n  \"perpétuels\": \"perpétuel\",\n  \"perplexités\": \"perplex\",\n  \"perqué\": \"perqu\",\n  \"perquisition\": \"perquisit\",\n  \"perron\": \"perron\",\n  \"perruque\": \"perruqu\",\n  \"perruques\": \"perruqu\",\n  \"persans\": \"persan\",\n  \"persécutait\": \"persécut\",\n  \"persécute\": \"persécut\",\n  \"persécuté\": \"persécut\",\n  \"persécuterait\": \"persécut\",\n  \"persécutés\": \"persécut\",\n  \"persécutions\": \"persécu\",\n  \"perses\": \"pers\",\n  \"persienne\": \"persien\",\n  \"persiennes\": \"persien\",\n  \"persiflage\": \"persiflag\",\n  \"persiflèrent\": \"persifl\",\n  \"persista\": \"persist\",\n  \"persistance\": \"persist\",\n  \"personnage\": \"personnag\",\n  \"personnages\": \"personnag\",\n  \"personnalité\": \"personnal\",\n  \"personne\": \"person\",\n  \"personnel\": \"personnel\",\n  \"personnelle\": \"personnel\",\n  \"personnellement\": \"personnel\",\n  \"personnelles\": \"personnel\",\n  \"personnels\": \"personnel\",\n  \"personnes\": \"person\",\n  \"personnification\": \"personnif\",\n  \"personnifiée\": \"personnifi\",\n  \"perspective\": \"perspect\",\n  \"perspectives\": \"perspect\",\n  \"perspicacité\": \"perspicac\",\n  \"persuadé\": \"persuad\",\n  \"persuadée\": \"persuad\",\n  \"persuader\": \"persuad\",\n  \"persuasion\": \"persuas\",\n  \"perte\": \"pert\",\n  \"pertes\": \"pert\",\n  \"pertuis\": \"pertuis\",\n  \"perturbations\": \"perturb\",\n  \"péruvien\": \"péruvien\",\n  \"pervers\": \"perver\",\n  \"perversité\": \"pervers\",\n  \"pervertisse\": \"pervert\",\n  \"pesait\": \"pes\",\n  \"pesant\": \"pes\",\n  \"pesante\": \"pes\",\n  \"pesanteur\": \"pesanteur\",\n  \"pesants\": \"pes\",\n  \"pèse\": \"pes\",\n  \"pesé\": \"pes\",\n  \"peser\": \"pes\",\n  \"pesés\": \"pes\",\n  \"pesez\": \"pes\",\n  \"pessimisme\": \"pessim\",\n  \"peste\": \"pest\",\n  \"pester\": \"pest\",\n  \"pétaudière\": \"pétaudi\",\n  \"pétillante\": \"pétill\",\n  \"petit\": \"pet\",\n  \"petite\": \"petit\",\n  \"petites\": \"petit\",\n  \"petitesse\": \"petitess\",\n  \"petitesses\": \"petitess\",\n  \"pétition\": \"pétit\",\n  \"pétitions\": \"pétit\",\n  \"petits\": \"petit\",\n  \"pétrarque\": \"pétrarqu\",\n  \"pétrifié\": \"pétrifi\",\n  \"pétrifiée\": \"pétrifi\",\n  \"pétrole\": \"pétrol\",\n  \"pétrone\": \"pétron\",\n  \"petto\": \"petto\",\n  \"pétulance\": \"pétul\",\n  \"peu\": \"peu\",\n  \"peuple\": \"peupl\",\n  \"peuplé\": \"peupl\",\n  \"peuplée\": \"peupl\",\n  \"peuplent\": \"peuplent\",\n  \"peuples\": \"peupl\",\n  \"peuplés\": \"peupl\",\n  \"peuplier\": \"peupli\",\n  \"peur\": \"peur\",\n  \"peureux\": \"peureux\",\n  \"peurs\": \"peur\",\n  \"peut\": \"peut\",\n  \"peuvent\": \"peuvent\",\n  \"peux\": \"peux\",\n  \"pharsale\": \"pharsal\",\n  \"pherson\": \"pherson\",\n  \"phileas\": \"phil\",\n  \"philippe\": \"philipp\",\n  \"philosophant\": \"philosoph\",\n  \"philosophe\": \"philosoph\",\n  \"philosophes\": \"philosoph\",\n  \"philosophie\": \"philosoph\",\n  \"philosophique\": \"philosoph\",\n  \"philosophiquement\": \"philosoph\",\n  \"philosophiques\": \"philosoph\",\n  \"phosphorescentes\": \"phosphorescent\",\n  \"photographie\": \"photograph\",\n  \"phrase\": \"phras\",\n  \"phrases\": \"phras\",\n  \"physiognomoniques\": \"physiognomon\",\n  \"physionomie\": \"physionom\",\n  \"physionomies\": \"physionom\",\n  \"physionomistes\": \"physionom\",\n  \"physique\": \"physiqu\",\n  \"physiquement\": \"physiqu\",\n  \"physiques\": \"physiqu\",\n  \"piacere\": \"piacer\",\n  \"pianiste\": \"pianist\",\n  \"piano\": \"piano\",\n  \"pianos\": \"pianos\",\n  \"pic\": \"pic\",\n  \"pichegru\": \"pichegru\",\n  \"pics\": \"pic\",\n  \"pie\": \"pi\",\n  \"pièce\": \"piec\",\n  \"pièces\": \"piec\",\n  \"piécettes\": \"piécet\",\n  \"pied\": \"pied\",\n  \"pieds\": \"pied\",\n  \"piège\": \"pieg\",\n  \"pieges\": \"pieg\",\n  \"pièges\": \"pieg\",\n  \"piémont\": \"piémont\",\n  \"piémontais\": \"piémont\",\n  \"piémontaise\": \"piémontais\",\n  \"pier\": \"pi\",\n  \"pierre\": \"pierr\",\n  \"pierres\": \"pierr\",\n  \"piété\": \"piet\",\n  \"piéton\": \"piéton\",\n  \"piétons\": \"piéton\",\n  \"pietragrua\": \"pietragru\",\n  \"pietranera\": \"pietran\",\n  \"piètre\": \"pietr\",\n  \"pieuse\": \"pieus\",\n  \"pieusement\": \"pieus\",\n  \"pieuses\": \"pieus\",\n  \"pieux\": \"pieux\",\n  \"pigeon\": \"pigeon\",\n  \"pigeons\": \"pigeon\",\n  \"pilastre\": \"pilastr\",\n  \"pile\": \"pil\",\n  \"pilé\": \"pil\",\n  \"piler\": \"pil\",\n  \"pilier\": \"pili\",\n  \"piliers\": \"pili\",\n  \"pillage\": \"pillag\",\n  \"pillages\": \"pillag\",\n  \"pillaient\": \"pill\",\n  \"pillaji\": \"pillaj\",\n  \"pille\": \"pill\",\n  \"pillé\": \"pill\",\n  \"pillée\": \"pill\",\n  \"pillent\": \"pillent\",\n  \"pillés\": \"pill\",\n  \"pilori\": \"pilor\",\n  \"pilote\": \"pilot\",\n  \"pilotes\": \"pilot\",\n  \"pimentel\": \"pimentel\",\n  \"pinceau\": \"pinceau\",\n  \"pincée\": \"pinc\",\n  \"pincette\": \"pincet\",\n  \"pintes\": \"pint\",\n  \"piochant\": \"pioch\",\n  \"pioneer\": \"pione\",\n  \"pipe\": \"pip\",\n  \"pipes\": \"pip\",\n  \"piqua\": \"piqu\",\n  \"piquait\": \"piqu\",\n  \"piquant\": \"piqu\",\n  \"piquante\": \"piqu\",\n  \"piquantes\": \"piqu\",\n  \"pique\": \"piqu\",\n  \"piqué\": \"piqu\",\n  \"piquée\": \"piqu\",\n  \"piquer\": \"piqu\",\n  \"piquerait\": \"piqu\",\n  \"piqués\": \"piqu\",\n  \"piquez\": \"piqu\",\n  \"pirard\": \"pirard\",\n  \"pirate\": \"pirat\",\n  \"pire\": \"pir\",\n  \"pis\": \"pis\",\n  \"piste\": \"pist\",\n  \"pistolet\": \"pistolet\",\n  \"pistolets\": \"pistolet\",\n  \"piston\": \"piston\",\n  \"pistons\": \"piston\",\n  \"pitance\": \"pitanc\",\n  \"piteuse\": \"piteux\",\n  \"piteusement\": \"piteux\",\n  \"piteux\": \"piteux\",\n  \"pitié\": \"piti\",\n  \"pitoyable\": \"pitoi\",\n  \"pitt\": \"pitt\",\n  \"pittoresque\": \"pittoresqu\",\n  \"pittoresques\": \"pittoresqu\",\n  \"pittsburg\": \"pittsburg\",\n  \"più\": \"più\",\n  \"plaça\": \"plac\",\n  \"plaçait\": \"plac\",\n  \"plaçant\": \"plac\",\n  \"placard\": \"placard\",\n  \"place\": \"plac\",\n  \"placé\": \"plac\",\n  \"placée\": \"plac\",\n  \"placées\": \"plac\",\n  \"placer\": \"plac\",\n  \"placera\": \"plac\",\n  \"placerai\": \"plac\",\n  \"placerait\": \"plac\",\n  \"placèrent\": \"plac\",\n  \"placerez\": \"plac\",\n  \"placers\": \"placer\",\n  \"places\": \"plac\",\n  \"placés\": \"plac\",\n  \"placez\": \"plac\",\n  \"placidité\": \"placid\",\n  \"plafond\": \"plafond\",\n  \"plafonds\": \"plafond\",\n  \"plaida\": \"plaid\",\n  \"plaidait\": \"plaid\",\n  \"plaider\": \"plaid\",\n  \"plaidoirie\": \"plaidoir\",\n  \"plaie\": \"plai\",\n  \"plaignait\": \"plaign\",\n  \"plaignant\": \"plaign\",\n  \"plaignants\": \"plaign\",\n  \"plaignez\": \"plaign\",\n  \"plaignirent\": \"plaign\",\n  \"plaignit\": \"plaign\",\n  \"plain\": \"plain\",\n  \"plaindrai\": \"plaindr\",\n  \"plaindrais\": \"plaindr\",\n  \"plaindre\": \"plaindr\",\n  \"plaine\": \"plain\",\n  \"plaines\": \"plain\",\n  \"plains\": \"plain\",\n  \"plaint\": \"plaint\",\n  \"plainte\": \"plaint\",\n  \"plaintes\": \"plaint\",\n  \"plaintive\": \"plaintiv\",\n  \"plaints\": \"plaint\",\n  \"plaira\": \"plair\",\n  \"plairait\": \"plair\",\n  \"plaire\": \"plair\",\n  \"plais\": \"plais\",\n  \"plaisaient\": \"plais\",\n  \"plaisait\": \"plais\",\n  \"plaisamment\": \"plais\",\n  \"plaisance\": \"plaisanc\",\n  \"plaisant\": \"plais\",\n  \"plaisanta\": \"plaisant\",\n  \"plaisantaient\": \"plaisant\",\n  \"plaisantait\": \"plaisant\",\n  \"plaisantant\": \"plaisant\",\n  \"plaisantât\": \"plaisant\",\n  \"plaisante\": \"plais\",\n  \"plaisanté\": \"plaisant\",\n  \"plaisantent\": \"plaisantent\",\n  \"plaisanter\": \"plaisant\",\n  \"plaisanterie\": \"plaisanter\",\n  \"plaisanteries\": \"plaisanter\",\n  \"plaisantes\": \"plais\",\n  \"plaisants\": \"plais\",\n  \"plaise\": \"plais\",\n  \"plaisent\": \"plaisent\",\n  \"plaisir\": \"plais\",\n  \"plaisirs\": \"plaisir\",\n  \"plaît\": \"plaît\",\n  \"plan\": \"plan\",\n  \"planait\": \"plan\",\n  \"planche\": \"planch\",\n  \"plancher\": \"planch\",\n  \"planches\": \"planch\",\n  \"planchette\": \"planchet\",\n  \"planisphère\": \"planispher\",\n  \"plans\": \"plan\",\n  \"plant\": \"plant\",\n  \"planta\": \"plant\",\n  \"plantation\": \"plantat\",\n  \"plantations\": \"plantat\",\n  \"plante\": \"plant\",\n  \"planté\": \"plant\",\n  \"planter\": \"plant\",\n  \"planterez\": \"plant\",\n  \"planterons\": \"plant\",\n  \"plantes\": \"plant\",\n  \"plantés\": \"plant\",\n  \"plantiez\": \"plant\",\n  \"plaque\": \"plaqu\",\n  \"plaques\": \"plaqu\",\n  \"plastron\": \"plastron\",\n  \"plat\": \"plat\",\n  \"platanes\": \"platan\",\n  \"plate\": \"plat\",\n  \"plateau\": \"plateau\",\n  \"platement\": \"plat\",\n  \"plates\": \"plat\",\n  \"platitude\": \"platitud\",\n  \"platitudes\": \"platitud\",\n  \"platonique\": \"platon\",\n  \"plâtre\": \"plâtr\",\n  \"plats\": \"plat\",\n  \"platte\": \"platt\",\n  \"plausible\": \"plausibl\",\n  \"please\": \"pleas\",\n  \"plébéien\": \"plébéien\",\n  \"plébéiennes\": \"plébéien\",\n  \"plébéiens\": \"plébéien\",\n  \"plein\": \"plein\",\n  \"pleine\": \"plein\",\n  \"pleinement\": \"plein\",\n  \"pleines\": \"plein\",\n  \"pleins\": \"plein\",\n  \"pleura\": \"pleur\",\n  \"pleurait\": \"pleur\",\n  \"pleurant\": \"pleur\",\n  \"pleure\": \"pleur\",\n  \"pleuré\": \"pleur\",\n  \"pleurer\": \"pleur\",\n  \"pleurera\": \"pleur\",\n  \"pleurerait\": \"pleur\",\n  \"pleurèrent\": \"pleur\",\n  \"pleureur\": \"pleureur\",\n  \"pleurez\": \"pleur\",\n  \"pleurs\": \"pleur\",\n  \"pleutre\": \"pleutr\",\n  \"pleuvaient\": \"pleuv\",\n  \"pleuvait\": \"pleuv\",\n  \"pleuvent\": \"pleuvent\",\n  \"pli\": \"pli\",\n  \"plia\": \"pli\",\n  \"pliaient\": \"pli\",\n  \"plié\": \"pli\",\n  \"pliée\": \"pli\",\n  \"plier\": \"pli\",\n  \"pliniana\": \"plinian\",\n  \"plis\": \"plis\",\n  \"plissa\": \"pliss\",\n  \"plomb\": \"plomb\",\n  \"plombées\": \"plomb\",\n  \"plonge\": \"plong\",\n  \"plongé\": \"plong\",\n  \"plongea\": \"plong\",\n  \"plongeaient\": \"plong\",\n  \"plongeait\": \"plong\",\n  \"plongeant\": \"plong\",\n  \"plongée\": \"plong\",\n  \"plonger\": \"plong\",\n  \"plongerais\": \"plong\",\n  \"plongés\": \"plong\",\n  \"plours\": \"plour\",\n  \"plu\": \"plu\",\n  \"pluie\": \"plui\",\n  \"pluies\": \"plui\",\n  \"plum\": \"plum\",\n  \"plume\": \"plum\",\n  \"plumes\": \"plum\",\n  \"plupart\": \"plupart\",\n  \"plus\": \"plus\",\n  \"plusieurs\": \"plusieur\",\n  \"plut\": \"plut\",\n  \"plût\": \"plût\",\n  \"plutôt\": \"plutôt\",\n  \"pô\": \"pô\",\n  \"poche\": \"poch\",\n  \"poches\": \"poch\",\n  \"poco\": \"poco\",\n  \"podestat\": \"podestat\",\n  \"podestats\": \"podestat\",\n  \"poêle\": \"poêl\",\n  \"poème\": \"poem\",\n  \"poemi\": \"poem\",\n  \"poésie\": \"poes\",\n  \"poésies\": \"poes\",\n  \"poète\": \"poet\",\n  \"poètes\": \"poet\",\n  \"poétique\": \"poétiqu\",\n  \"poids\": \"poid\",\n  \"poignante\": \"poign\",\n  \"poignantes\": \"poign\",\n  \"poignard\": \"poignard\",\n  \"poignarda\": \"poignard\",\n  \"poignardé\": \"poignard\",\n  \"poignardée\": \"poignard\",\n  \"poignarder\": \"poignard\",\n  \"poignards\": \"poignard\",\n  \"poigne\": \"poign\",\n  \"poignée\": \"poign\",\n  \"poignées\": \"poign\",\n  \"poils\": \"poil\",\n  \"poindre\": \"poindr\",\n  \"poing\": \"poing\",\n  \"poings\": \"poing\",\n  \"point\": \"point\",\n  \"pointe\": \"point\",\n  \"pointes\": \"point\",\n  \"points\": \"point\",\n  \"pointus\": \"pointus\",\n  \"poireaux\": \"poireau\",\n  \"poison\": \"poison\",\n  \"poisons\": \"poison\",\n  \"poisson\": \"poisson\",\n  \"poissonnerie\": \"poissonner\",\n  \"poissons\": \"poisson\",\n  \"poissy\": \"poissy\",\n  \"poitrail\": \"poitrail\",\n  \"poitrine\": \"poitrin\",\n  \"poivriers\": \"poivri\",\n  \"pole\": \"pol\",\n  \"poli\": \"pol\",\n  \"police\": \"polic\",\n  \"policeman\": \"policeman\",\n  \"policemen\": \"policemen\",\n  \"polices\": \"polic\",\n  \"polichinelle\": \"polichinel\",\n  \"polidori\": \"polidor\",\n  \"polie\": \"pol\",\n  \"polies\": \"pol\",\n  \"poliment\": \"pol\",\n  \"polis\": \"pol\",\n  \"polish\": \"polish\",\n  \"polisson\": \"polisson\",\n  \"politesse\": \"politess\",\n  \"politesses\": \"politess\",\n  \"politique\": \"polit\",\n  \"politiques\": \"polit\",\n  \"polonais\": \"polon\",\n  \"polyeucte\": \"polyeuct\",\n  \"polygames\": \"polygam\",\n  \"polygamie\": \"polygam\",\n  \"polygones\": \"polygon\",\n  \"pommades\": \"pommad\",\n  \"pomme\": \"pomm\",\n  \"pommeau\": \"pommeau\",\n  \"pommelé\": \"pommel\",\n  \"pommes\": \"pomm\",\n  \"pommettes\": \"pommet\",\n  \"pommiers\": \"pommi\",\n  \"pompe\": \"pomp\",\n  \"pompes\": \"pomp\",\n  \"pompiers\": \"pompi\",\n  \"pompon\": \"pompon\",\n  \"ponceaux\": \"ponceau\",\n  \"poncet\": \"poncet\",\n  \"ponctualité\": \"ponctual\",\n  \"ponctuel\": \"ponctuel\",\n  \"ponctuelle\": \"ponctuel\",\n  \"ponctuellement\": \"ponctuel\",\n  \"pondéré\": \"ponder\",\n  \"poney\": \"poney\",\n  \"poneys\": \"poney\",\n  \"pont\": \"pont\",\n  \"pontarlier\": \"pontarli\",\n  \"ponte\": \"pont\",\n  \"ponton\": \"ponton\",\n  \"ponts\": \"pont\",\n  \"populace\": \"populac\",\n  \"populaire\": \"populair\",\n  \"population\": \"popul\",\n  \"populations\": \"popul\",\n  \"porcelaine\": \"porcelain\",\n  \"porco\": \"porco\",\n  \"porcs\": \"porc\",\n  \"porphyre\": \"porphyr\",\n  \"port\": \"port\",\n  \"porta\": \"port\",\n  \"portaient\": \"port\",\n  \"portait\": \"port\",\n  \"portant\": \"port\",\n  \"portât\": \"port\",\n  \"portative\": \"portat\",\n  \"porte\": \"port\",\n  \"porté\": \"port\",\n  \"portée\": \"port\",\n  \"portées\": \"port\",\n  \"portefaix\": \"portefaix\",\n  \"portefeuille\": \"portefeuill\",\n  \"portefeuilles\": \"portefeuill\",\n  \"portemanteau\": \"portemanteau\",\n  \"portent\": \"portent\",\n  \"porter\": \"port\",\n  \"portera\": \"port\",\n  \"porteras\": \"port\",\n  \"portèrent\": \"port\",\n  \"porterez\": \"port\",\n  \"porteront\": \"port\",\n  \"portes\": \"port\",\n  \"portés\": \"port\",\n  \"porteur\": \"porteur\",\n  \"porteurs\": \"porteur\",\n  \"portez\": \"port\",\n  \"portier\": \"porti\",\n  \"portière\": \"porti\",\n  \"portières\": \"porti\",\n  \"portiers\": \"porti\",\n  \"portion\": \"portion\",\n  \"portique\": \"portiqu\",\n  \"porto\": \"porto\",\n  \"portons\": \"porton\",\n  \"portrait\": \"portr\",\n  \"portraits\": \"portrait\",\n  \"ports\": \"port\",\n  \"portugais\": \"portug\",\n  \"portugaise\": \"portugais\",\n  \"posa\": \"pos\",\n  \"posant\": \"pos\",\n  \"posé\": \"pos\",\n  \"posée\": \"pos\",\n  \"posément\": \"pos\",\n  \"poser\": \"pos\",\n  \"posés\": \"pos\",\n  \"positif\": \"posit\",\n  \"position\": \"posit\",\n  \"positions\": \"posit\",\n  \"positive\": \"posit\",\n  \"positivement\": \"posit\",\n  \"possédait\": \"possed\",\n  \"possédant\": \"possed\",\n  \"possède\": \"possed\",\n  \"possédé\": \"possed\",\n  \"posséder\": \"possed\",\n  \"possédés\": \"possed\",\n  \"possesseur\": \"possesseur\",\n  \"possession\": \"possess\",\n  \"possessions\": \"possess\",\n  \"possibilité\": \"possibil\",\n  \"possibilités\": \"possibil\",\n  \"possible\": \"possibl\",\n  \"possibles\": \"possibl\",\n  \"poste\": \"post\",\n  \"posté\": \"post\",\n  \"postérité\": \"poster\",\n  \"postes\": \"post\",\n  \"posthume\": \"posthum\",\n  \"postillon\": \"postillon\",\n  \"potage\": \"potag\",\n  \"potager\": \"potag\",\n  \"potagères\": \"potager\",\n  \"potentats\": \"potentat\",\n  \"pouce\": \"pouc\",\n  \"pouces\": \"pouc\",\n  \"poudrait\": \"poudr\",\n  \"poudre\": \"poudr\",\n  \"poudrées\": \"poudr\",\n  \"poudrés\": \"poudr\",\n  \"pouffer\": \"pouff\",\n  \"poule\": \"poul\",\n  \"poulet\": \"poulet\",\n  \"poulets\": \"poulet\",\n  \"poulies\": \"poul\",\n  \"poumons\": \"poumon\",\n  \"pounah\": \"pounah\",\n  \"poupée\": \"poup\",\n  \"poupées\": \"poup\",\n  \"pour\": \"pour\",\n  \"pourceaux\": \"pourceau\",\n  \"pourparlers\": \"pourparler\",\n  \"pourpensées\": \"pourpens\",\n  \"pourpoint\": \"pourpoint\",\n  \"pourpres\": \"pourpr\",\n  \"pourquoi\": \"pourquoi\",\n  \"pourra\": \"pourr\",\n  \"pourrai\": \"pourr\",\n  \"pourraient\": \"pourr\",\n  \"pourrais\": \"pourr\",\n  \"pourrait\": \"pourr\",\n  \"pourras\": \"pourr\",\n  \"pourrez\": \"pourr\",\n  \"pourriez\": \"pourr\",\n  \"pourrions\": \"pourrion\",\n  \"pourriture\": \"pourritur\",\n  \"pourrons\": \"pourron\",\n  \"pourront\": \"pourront\",\n  \"poursuit\": \"poursuit\",\n  \"poursuite\": \"poursuit\",\n  \"poursuites\": \"poursuit\",\n  \"poursuivaient\": \"poursuiv\",\n  \"poursuivait\": \"poursuiv\",\n  \"poursuivant\": \"poursuiv\",\n  \"poursuivez\": \"poursuiv\",\n  \"poursuivi\": \"poursuiv\",\n  \"poursuivie\": \"poursuiv\",\n  \"poursuivis\": \"poursuiv\",\n  \"poursuivit\": \"poursuiv\",\n  \"poursuivrai\": \"poursuivr\",\n  \"poursuivraient\": \"poursuivr\",\n  \"poursuivrait\": \"poursuivr\",\n  \"poursuivre\": \"poursuivr\",\n  \"poursuivront\": \"poursuivront\",\n  \"pourtant\": \"pourt\",\n  \"pourvoir\": \"pourvoir\",\n  \"pourvu\": \"pourvu\",\n  \"poussa\": \"pouss\",\n  \"poussaient\": \"pouss\",\n  \"poussait\": \"pouss\",\n  \"poussant\": \"pouss\",\n  \"pousse\": \"pouss\",\n  \"poussé\": \"pouss\",\n  \"poussée\": \"pouss\",\n  \"poussent\": \"poussent\",\n  \"pousser\": \"pouss\",\n  \"poussera\": \"pouss\",\n  \"poussés\": \"pouss\",\n  \"poussez\": \"pouss\",\n  \"poussière\": \"poussi\",\n  \"poutre\": \"poutr\",\n  \"poutres\": \"poutr\",\n  \"pouvaient\": \"pouv\",\n  \"pouvais\": \"pouv\",\n  \"pouvait\": \"pouv\",\n  \"pouvant\": \"pouv\",\n  \"pouvez\": \"pouv\",\n  \"pouviez\": \"pouv\",\n  \"pouvions\": \"pouvion\",\n  \"pouvoir\": \"pouvoir\",\n  \"pouvons\": \"pouvon\",\n  \"pozzo\": \"pozzo\",\n  \"pradt\": \"pradt\",\n  \"prairie\": \"prair\",\n  \"prairies\": \"prair\",\n  \"praticable\": \"pratic\",\n  \"pratiquais\": \"pratiqu\",\n  \"pratique\": \"pratiqu\",\n  \"pratiqué\": \"pratiqu\",\n  \"pratiquée\": \"pratiqu\",\n  \"pratiquées\": \"pratiqu\",\n  \"pratiquer\": \"pratiqu\",\n  \"pratiques\": \"pratiqu\",\n  \"pré\": \"pré\",\n  \"préalable\": \"préalabl\",\n  \"préalablement\": \"préalabl\",\n  \"préambule\": \"préambul\",\n  \"précaution\": \"précaut\",\n  \"précautions\": \"précaut\",\n  \"précéda\": \"préced\",\n  \"précédait\": \"préced\",\n  \"précédé\": \"préced\",\n  \"précédée\": \"préced\",\n  \"précédent\": \"précédent\",\n  \"précédente\": \"précédent\",\n  \"précédents\": \"précédent\",\n  \"précédèrent\": \"préced\",\n  \"précédés\": \"préced\",\n  \"précepte\": \"précept\",\n  \"préceptes\": \"précept\",\n  \"précepteur\": \"précepteur\",\n  \"précepteurs\": \"précepteur\",\n  \"prêcha\": \"prêch\",\n  \"prêchaient\": \"prêch\",\n  \"prêchait\": \"prêch\",\n  \"prêchant\": \"prêch\",\n  \"prêché\": \"prêch\",\n  \"prêcher\": \"prêch\",\n  \"prêchera\": \"prêch\",\n  \"prêcherai\": \"prêch\",\n  \"prêcherait\": \"prêch\",\n  \"prêches\": \"prêch\",\n  \"précieuse\": \"précieux\",\n  \"précieusement\": \"précieux\",\n  \"précieuses\": \"précieux\",\n  \"précieux\": \"précieux\",\n  \"précipices\": \"précipic\",\n  \"précipita\": \"précipit\",\n  \"précipitaient\": \"précipit\",\n  \"précipitait\": \"précipit\",\n  \"précipitamment\": \"précipit\",\n  \"précipitant\": \"précipit\",\n  \"précipitation\": \"précipit\",\n  \"précipite\": \"précipit\",\n  \"précipité\": \"précip\",\n  \"précipitent\": \"précipitent\",\n  \"précipiter\": \"précipit\",\n  \"précipitèrent\": \"précipit\",\n  \"précipités\": \"précip\",\n  \"précis\": \"prec\",\n  \"précise\": \"précis\",\n  \"précisément\": \"précis\",\n  \"précises\": \"précis\",\n  \"précision\": \"précis\",\n  \"précoces\": \"précoc\",\n  \"précurseur\": \"précurseur\",\n  \"précurseurs\": \"précurseur\",\n  \"prédécesseur\": \"prédécesseur\",\n  \"prédestiné\": \"prédestin\",\n  \"prédestinée\": \"prédestin\",\n  \"prédicateur\": \"prédiqu\",\n  \"prédication\": \"prédiqu\",\n  \"prédications\": \"prédiqu\",\n  \"prédiction\": \"prédict\",\n  \"prédictions\": \"prédict\",\n  \"prédire\": \"prédir\",\n  \"prédispose\": \"prédispos\",\n  \"prédit\": \"pred\",\n  \"préface\": \"préfac\",\n  \"préfecture\": \"préfectur\",\n  \"préféra\": \"préfer\",\n  \"préférable\": \"préfer\",\n  \"préférables\": \"préfer\",\n  \"préférait\": \"préfer\",\n  \"préfère\": \"préfer\",\n  \"préféré\": \"préfer\",\n  \"préférence\": \"préférent\",\n  \"préférences\": \"préférent\",\n  \"préférer\": \"préfer\",\n  \"préférerez\": \"préfer\",\n  \"préférez\": \"préfer\",\n  \"préfériez\": \"préfer\",\n  \"préfet\": \"préfet\",\n  \"préfète\": \"préfet\",\n  \"préfets\": \"préfet\",\n  \"préjudice\": \"préjudic\",\n  \"préjudiciable\": \"préjudici\",\n  \"préjudicierait\": \"préjudici\",\n  \"préjugé\": \"préjug\",\n  \"préjugés\": \"préjug\",\n  \"prélat\": \"prélat\",\n  \"prélature\": \"prélatur\",\n  \"prélevés\": \"prélev\",\n  \"préliminaires\": \"préliminair\",\n  \"préludé\": \"prélud\",\n  \"prématurément\": \"prématur\",\n  \"préméditation\": \"prémédit\",\n  \"prémédité\": \"prémed\",\n  \"premier\": \"premi\",\n  \"première\": \"premi\",\n  \"premièrement\": \"premi\",\n  \"premières\": \"premi\",\n  \"premiers\": \"premi\",\n  \"prenaient\": \"pren\",\n  \"prenais\": \"pren\",\n  \"prenait\": \"pren\",\n  \"prenant\": \"pren\",\n  \"prend\": \"prend\",\n  \"prendra\": \"prendr\",\n  \"prendrai\": \"prendr\",\n  \"prendrais\": \"prendr\",\n  \"prendrait\": \"prendr\",\n  \"prendras\": \"prendr\",\n  \"prendre\": \"prendr\",\n  \"prendrez\": \"prendr\",\n  \"prendront\": \"prendront\",\n  \"prends\": \"prend\",\n  \"prenez\": \"pren\",\n  \"prenne\": \"pren\",\n  \"prennent\": \"prennent\",\n  \"prenons\": \"prenon\",\n  \"préoccupa\": \"préoccup\",\n  \"préoccupait\": \"préoccup\",\n  \"préoccupation\": \"préoccup\",\n  \"préoccupations\": \"préoccup\",\n  \"préoccupé\": \"préoccup\",\n  \"préoccupée\": \"préoccup\",\n  \"préoccuper\": \"préoccup\",\n  \"prépara\": \"prépar\",\n  \"préparaient\": \"prépar\",\n  \"préparais\": \"prépar\",\n  \"préparait\": \"prépar\",\n  \"préparant\": \"prépar\",\n  \"préparât\": \"prépar\",\n  \"préparatifs\": \"prépar\",\n  \"préparation\": \"prépar\",\n  \"préparatoire\": \"préparatoir\",\n  \"préparatoires\": \"préparatoir\",\n  \"prépare\": \"prépar\",\n  \"préparé\": \"prépar\",\n  \"préparer\": \"prépar\",\n  \"préparera\": \"prépar\",\n  \"préparèrent\": \"prépar\",\n  \"préparés\": \"prépar\",\n  \"préparez\": \"prépar\",\n  \"préposé\": \"prépos\",\n  \"prepotenze\": \"prepotenz\",\n  \"prérogative\": \"prérog\",\n  \"près\": \"pres\",\n  \"présage\": \"présag\",\n  \"présageait\": \"présag\",\n  \"présages\": \"présag\",\n  \"presbytère\": \"presbyter\",\n  \"prescrira\": \"prescr\",\n  \"prescrire\": \"prescrir\",\n  \"prescrit\": \"prescr\",\n  \"prescrite\": \"prescrit\",\n  \"prescrivaient\": \"prescriv\",\n  \"prescrivait\": \"prescriv\",\n  \"préséance\": \"préséanc\",\n  \"préséances\": \"préséanc\",\n  \"présence\": \"présenc\",\n  \"présent\": \"présent\",\n  \"présenta\": \"présent\",\n  \"présentable\": \"présent\",\n  \"présentaient\": \"présent\",\n  \"présentait\": \"présent\",\n  \"présentant\": \"présent\",\n  \"présentation\": \"présent\",\n  \"présentations\": \"présent\",\n  \"présente\": \"présent\",\n  \"présenté\": \"présent\",\n  \"présentée\": \"présent\",\n  \"présentées\": \"présent\",\n  \"présentement\": \"présent\",\n  \"présentent\": \"présentent\",\n  \"présenter\": \"présent\",\n  \"présentera\": \"présent\",\n  \"présenterait\": \"présent\",\n  \"présentèrent\": \"présent\",\n  \"présenterez\": \"présent\",\n  \"présentes\": \"présent\",\n  \"présentés\": \"présent\",\n  \"présentez\": \"présent\",\n  \"présents\": \"présent\",\n  \"préservant\": \"préserv\",\n  \"préserve\": \"préserv\",\n  \"préservé\": \"préserv\",\n  \"préservée\": \"préserv\",\n  \"préserver\": \"préserv\",\n  \"présidait\": \"présid\",\n  \"présidence\": \"président\",\n  \"président\": \"président\",\n  \"présidente\": \"président\",\n  \"présidents\": \"président\",\n  \"présider\": \"présid\",\n  \"présomption\": \"présompt\",\n  \"présomptions\": \"présompt\",\n  \"presqu\": \"presqu\",\n  \"presque\": \"presqu\",\n  \"pressa\": \"press\",\n  \"pressaient\": \"press\",\n  \"pressais\": \"press\",\n  \"pressait\": \"press\",\n  \"pressant\": \"press\",\n  \"pressante\": \"press\",\n  \"presse\": \"press\",\n  \"pressé\": \"press\",\n  \"pressée\": \"press\",\n  \"pressent\": \"pressent\",\n  \"pressentiment\": \"pressent\",\n  \"pressentiments\": \"pressent\",\n  \"pressentir\": \"pressent\",\n  \"presser\": \"press\",\n  \"pressés\": \"press\",\n  \"pression\": \"pression\",\n  \"pressoir\": \"pressoir\",\n  \"pressure\": \"pressur\",\n  \"prestige\": \"prestig\",\n  \"prestigieuse\": \"prestigi\",\n  \"prestigieux\": \"prestigi\",\n  \"présume\": \"présum\",\n  \"présumé\": \"présum\",\n  \"prêt\": \"prêt\",\n  \"prêta\": \"prêt\",\n  \"prêtait\": \"prêt\",\n  \"prêtant\": \"prêt\",\n  \"prête\": \"prêt\",\n  \"prêté\": \"prêt\",\n  \"prêtée\": \"prêt\",\n  \"prétend\": \"prétend\",\n  \"prétendaient\": \"prétend\",\n  \"prétendait\": \"prétend\",\n  \"prétendant\": \"prétend\",\n  \"prétendent\": \"prétendent\",\n  \"prétendez\": \"prétend\",\n  \"prétendit\": \"prétend\",\n  \"prétendons\": \"prétendon\",\n  \"prétendrait\": \"prétendr\",\n  \"prétendre\": \"prétendr\",\n  \"prétends\": \"prétend\",\n  \"prétendu\": \"prétendu\",\n  \"prétendue\": \"prétendu\",\n  \"prétendues\": \"prétendu\",\n  \"prétendus\": \"prétendus\",\n  \"prétention\": \"prétent\",\n  \"prétentions\": \"prétent\",\n  \"prêter\": \"prêt\",\n  \"prêtes\": \"prêt\",\n  \"prêtés\": \"prêt\",\n  \"prétexta\": \"prétext\",\n  \"prétextant\": \"prétext\",\n  \"prétexte\": \"prétext\",\n  \"prétextes\": \"prétext\",\n  \"prêtez\": \"prêt\",\n  \"prétoire\": \"prétoir\",\n  \"prêtre\": \"prêtr\",\n  \"prêtres\": \"prêtr\",\n  \"prêts\": \"prêt\",\n  \"preuve\": \"preuv\",\n  \"preuves\": \"preuv\",\n  \"preux\": \"preux\",\n  \"prévalant\": \"préval\",\n  \"prévaloir\": \"prévaloir\",\n  \"prévenait\": \"préven\",\n  \"prévenances\": \"préven\",\n  \"prévenez\": \"préven\",\n  \"prévenir\": \"préven\",\n  \"préventions\": \"prévent\",\n  \"prévenu\": \"prévenu\",\n  \"prévenus\": \"prévenus\",\n  \"prévienne\": \"prévien\",\n  \"préviens\": \"prévien\",\n  \"prévision\": \"prévis\",\n  \"prévisions\": \"prévis\",\n  \"prévoir\": \"prévoir\",\n  \"prévois\": \"prévois\",\n  \"prévoit\": \"prévoit\",\n  \"prévost\": \"prévost\",\n  \"prévoyait\": \"prévoi\",\n  \"prévoyant\": \"prévoi\",\n  \"prévu\": \"prévu\",\n  \"prévue\": \"prévu\",\n  \"pria\": \"pri\",\n  \"priais\": \"pri\",\n  \"priait\": \"pri\",\n  \"priant\": \"pri\",\n  \"prie\": \"pri\",\n  \"prié\": \"pri\",\n  \"prier\": \"pri\",\n  \"prierai\": \"pri\",\n  \"prière\": \"prier\",\n  \"prièrent\": \"pri\",\n  \"prières\": \"prier\",\n  \"prieur\": \"prieur\",\n  \"priez\": \"pri\",\n  \"prime\": \"prim\",\n  \"primé\": \"prim\",\n  \"primer\": \"prim\",\n  \"primes\": \"prim\",\n  \"primitif\": \"primit\",\n  \"primitives\": \"primit\",\n  \"primo\": \"primo\",\n  \"prina\": \"prin\",\n  \"prince\": \"princ\",\n  \"princes\": \"princ\",\n  \"princesse\": \"princess\",\n  \"princesses\": \"princess\",\n  \"principal\": \"principal\",\n  \"principale\": \"principal\",\n  \"principalement\": \"principal\",\n  \"principales\": \"principal\",\n  \"principaux\": \"principal\",\n  \"principe\": \"princip\",\n  \"principes\": \"princip\",\n  \"printemps\": \"printemp\",\n  \"prirent\": \"prirent\",\n  \"pris\": \"pris\",\n  \"prise\": \"pris\",\n  \"prises\": \"pris\",\n  \"prison\": \"prison\",\n  \"prisonnier\": \"prisonni\",\n  \"prisonnière\": \"prisonni\",\n  \"prisonniers\": \"prisonni\",\n  \"prisons\": \"prison\",\n  \"prit\": \"prit\",\n  \"prît\": \"prît\",\n  \"priva\": \"priv\",\n  \"privation\": \"privat\",\n  \"prive\": \"priv\",\n  \"privé\": \"priv\",\n  \"privée\": \"priv\",\n  \"privées\": \"priv\",\n  \"priverai\": \"priv\",\n  \"privés\": \"priv\",\n  \"privilège\": \"privileg\",\n  \"privilèges\": \"privileg\",\n  \"privilégié\": \"privilégi\",\n  \"privilégiée\": \"privilégi\",\n  \"prix\": \"prix\",\n  \"pro\": \"pro\",\n  \"probabilité\": \"probabl\",\n  \"probabilités\": \"probabl\",\n  \"probable\": \"probabl\",\n  \"probablement\": \"probabl\",\n  \"probantes\": \"prob\",\n  \"probe\": \"prob\",\n  \"probes\": \"prob\",\n  \"probité\": \"probit\",\n  \"problème\": \"problem\",\n  \"problèmes\": \"problem\",\n  \"procédé\": \"proced\",\n  \"procédés\": \"proced\",\n  \"procédure\": \"procédur\",\n  \"procès\": \"proces\",\n  \"procession\": \"process\",\n  \"processionnellement\": \"processionnel\",\n  \"processions\": \"process\",\n  \"prochain\": \"prochain\",\n  \"prochaine\": \"prochain\",\n  \"proche\": \"proch\",\n  \"proches\": \"proch\",\n  \"proclamation\": \"proclam\",\n  \"proclamations\": \"proclam\",\n  \"proclamée\": \"proclam\",\n  \"proclamer\": \"proclam\",\n  \"proctor\": \"proctor\",\n  \"procuration\": \"procur\",\n  \"procure\": \"procur\",\n  \"procuré\": \"procur\",\n  \"procurée\": \"procur\",\n  \"procurer\": \"procur\",\n  \"procurerai\": \"procur\",\n  \"procureur\": \"procureur\",\n  \"procureurs\": \"procureur\",\n  \"prodige\": \"prodig\",\n  \"prodiges\": \"prodig\",\n  \"prodigieuse\": \"prodigi\",\n  \"prodigieusement\": \"prodigi\",\n  \"prodigieux\": \"prodigi\",\n  \"prodiguait\": \"prodigu\",\n  \"prodigue\": \"prodigu\",\n  \"prodiguer\": \"prodigu\",\n  \"prodiguera\": \"prodigu\",\n  \"prodiguerait\": \"prodigu\",\n  \"prodiguèrent\": \"prodigu\",\n  \"production\": \"product\",\n  \"produirait\": \"produir\",\n  \"produire\": \"produir\",\n  \"produis\": \"produis\",\n  \"produisaient\": \"produis\",\n  \"produisait\": \"produis\",\n  \"produisant\": \"produis\",\n  \"produise\": \"produis\",\n  \"produisit\": \"produis\",\n  \"produit\": \"produit\",\n  \"produite\": \"produit\",\n  \"produites\": \"produit\",\n  \"produits\": \"produit\",\n  \"profanateur\": \"profan\",\n  \"profane\": \"profan\",\n  \"profanes\": \"profan\",\n  \"proférait\": \"profer\",\n  \"proférant\": \"profer\",\n  \"proférées\": \"profer\",\n  \"proférer\": \"profer\",\n  \"proférés\": \"profer\",\n  \"professait\": \"profess\",\n  \"professeur\": \"professeur\",\n  \"professeurs\": \"professeur\",\n  \"profession\": \"profess\",\n  \"professions\": \"profess\",\n  \"profil\": \"profil\",\n  \"profilait\": \"profil\",\n  \"profilant\": \"profil\",\n  \"profilée\": \"profil\",\n  \"profils\": \"profil\",\n  \"profit\": \"prof\",\n  \"profita\": \"profit\",\n  \"profitable\": \"profit\",\n  \"profitait\": \"profit\",\n  \"profitant\": \"profit\",\n  \"profité\": \"profit\",\n  \"profiter\": \"profit\",\n  \"profiterait\": \"profit\",\n  \"profitons\": \"profiton\",\n  \"profits\": \"profit\",\n  \"profond\": \"profond\",\n  \"profonde\": \"profond\",\n  \"profondément\": \"profond\",\n  \"profondes\": \"profond\",\n  \"profondeur\": \"profondeur\",\n  \"profondeurs\": \"profondeur\",\n  \"profonds\": \"profond\",\n  \"programme\": \"programm\",\n  \"progrès\": \"progres\",\n  \"prohibée\": \"prohib\",\n  \"proie\": \"proi\",\n  \"projectiles\": \"projectil\",\n  \"projet\": \"projet\",\n  \"projeté\": \"projet\",\n  \"projetée\": \"projet\",\n  \"projets\": \"projet\",\n  \"prolonge\": \"prolong\",\n  \"prolongé\": \"prolong\",\n  \"prolongea\": \"prolong\",\n  \"prolongeaient\": \"prolong\",\n  \"prolongeant\": \"prolong\",\n  \"prolongée\": \"prolong\",\n  \"prolongent\": \"prolongent\",\n  \"prolonger\": \"prolong\",\n  \"prolongés\": \"prolong\",\n  \"promena\": \"promen\",\n  \"promenade\": \"promenad\",\n  \"promenades\": \"promenad\",\n  \"promenaient\": \"promen\",\n  \"promenait\": \"promen\",\n  \"promenant\": \"promen\",\n  \"promène\": \"promen\",\n  \"promené\": \"promen\",\n  \"promènent\": \"promènent\",\n  \"promener\": \"promen\",\n  \"promenèrent\": \"promen\",\n  \"promenés\": \"promen\",\n  \"promeneur\": \"promeneur\",\n  \"promeneurs\": \"promeneur\",\n  \"promenez\": \"promen\",\n  \"promenions\": \"promen\",\n  \"promesse\": \"promess\",\n  \"promesses\": \"promess\",\n  \"promet\": \"promet\",\n  \"promets\": \"promet\",\n  \"promettait\": \"promet\",\n  \"promette\": \"promet\",\n  \"promettent\": \"promettent\",\n  \"promettez\": \"promet\",\n  \"promettons\": \"prometton\",\n  \"promettre\": \"promettr\",\n  \"promis\": \"prom\",\n  \"promise\": \"promis\",\n  \"promit\": \"prom\",\n  \"promontoire\": \"promontoir\",\n  \"promotion\": \"promot\",\n  \"prompte\": \"prompt\",\n  \"promptement\": \"prompt\",\n  \"prôner\": \"prôn\",\n  \"prononça\": \"prononc\",\n  \"prononçait\": \"prononc\",\n  \"prononçant\": \"prononc\",\n  \"prononce\": \"prononc\",\n  \"prononcé\": \"prononc\",\n  \"prononcée\": \"prononc\",\n  \"prononcées\": \"prononc\",\n  \"prononcer\": \"prononc\",\n  \"prononcera\": \"prononc\",\n  \"prononcerait\": \"prononc\",\n  \"prononcèrent\": \"prononc\",\n  \"prononcés\": \"prononc\",\n  \"prononciation\": \"prononci\",\n  \"prononçons\": \"prononçon\",\n  \"pronostics\": \"pronostic\",\n  \"propageaient\": \"propag\",\n  \"propagèrent\": \"propag\",\n  \"propension\": \"propens\",\n  \"prophète\": \"prophet\",\n  \"prophètes\": \"prophet\",\n  \"prophétie\": \"prophet\",\n  \"prophéties\": \"prophet\",\n  \"propice\": \"propic\",\n  \"propices\": \"propic\",\n  \"propitiatoires\": \"propitiatoir\",\n  \"proportion\": \"proport\",\n  \"proportionné\": \"proportion\",\n  \"proportions\": \"proport\",\n  \"propos\": \"propos\",\n  \"proposa\": \"propos\",\n  \"proposait\": \"propos\",\n  \"propose\": \"propos\",\n  \"proposé\": \"propos\",\n  \"proposer\": \"propos\",\n  \"proposerait\": \"propos\",\n  \"proposés\": \"propos\",\n  \"proposez\": \"propos\",\n  \"proposition\": \"proposit\",\n  \"propositions\": \"proposit\",\n  \"propre\": \"propr\",\n  \"proprement\": \"propr\",\n  \"propres\": \"propr\",\n  \"propreté\": \"propret\",\n  \"propriétaire\": \"propriétair\",\n  \"propriétaires\": \"propriétair\",\n  \"propriété\": \"propriet\",\n  \"propriétés\": \"propriet\",\n  \"proprio\": \"proprio\",\n  \"prosaïquement\": \"prosaïqu\",\n  \"prosaïques\": \"prosaïqu\",\n  \"proscrivent\": \"proscrivent\",\n  \"prose\": \"pros\",\n  \"prosélytisme\": \"prosélyt\",\n  \"prospèrent\": \"prosp\",\n  \"prospérité\": \"prosper\",\n  \"prospérités\": \"prosper\",\n  \"prosterna\": \"prostern\",\n  \"prosternait\": \"prostern\",\n  \"prosternant\": \"prostern\",\n  \"prostration\": \"prostrat\",\n  \"protecteur\": \"protecteur\",\n  \"protecteurs\": \"protecteur\",\n  \"protection\": \"protect\",\n  \"protections\": \"protect\",\n  \"protège\": \"proteg\",\n  \"protégé\": \"proteg\",\n  \"protégeaient\": \"proteg\",\n  \"protégeait\": \"proteg\",\n  \"protéger\": \"proteg\",\n  \"protégera\": \"proteg\",\n  \"protégés\": \"proteg\",\n  \"protégez\": \"proteg\",\n  \"protesta\": \"protest\",\n  \"protestait\": \"protest\",\n  \"protestant\": \"protest\",\n  \"protestante\": \"protest\",\n  \"protestantisme\": \"protestant\",\n  \"protestants\": \"protest\",\n  \"protestations\": \"protest\",\n  \"proteste\": \"protest\",\n  \"protesté\": \"protest\",\n  \"protester\": \"protest\",\n  \"prouesse\": \"prouess\",\n  \"prouva\": \"prouv\",\n  \"prouvaient\": \"prouv\",\n  \"prouvait\": \"prouv\",\n  \"prouvant\": \"prouv\",\n  \"prouve\": \"prouv\",\n  \"prouvé\": \"prouv\",\n  \"prouvée\": \"prouv\",\n  \"prouvées\": \"prouv\",\n  \"prouvent\": \"prouvent\",\n  \"prouver\": \"prouv\",\n  \"prouveraient\": \"prouv\",\n  \"prouvez\": \"prouv\",\n  \"provenaient\": \"proven\",\n  \"provenait\": \"proven\",\n  \"provence\": \"provenc\",\n  \"proverbe\": \"proverb\",\n  \"proverbiale\": \"proverbial\",\n  \"providence\": \"provident\",\n  \"provient\": \"provient\",\n  \"province\": \"provinc\",\n  \"provinces\": \"provinc\",\n  \"provincial\": \"provincial\",\n  \"provinciale\": \"provincial\",\n  \"provinciaux\": \"provincial\",\n  \"provision\": \"provis\",\n  \"provisions\": \"provis\",\n  \"provocante\": \"provoc\",\n  \"provocatrice\": \"provoc\",\n  \"provoqua\": \"provoqu\",\n  \"provoquait\": \"provoqu\",\n  \"provoqué\": \"provoqu\",\n  \"provoquée\": \"provoqu\",\n  \"provoquer\": \"provoqu\",\n  \"prude\": \"prud\",\n  \"prudemment\": \"prudent\",\n  \"prudence\": \"prudenc\",\n  \"prudent\": \"prudent\",\n  \"prudente\": \"prudent\",\n  \"prudentes\": \"prudent\",\n  \"prudents\": \"prudent\",\n  \"pruderie\": \"pruder\",\n  \"prunelle\": \"prunel\",\n  \"pruniers\": \"pruni\",\n  \"prusse\": \"pruss\",\n  \"prussien\": \"prussien\",\n  \"prussienne\": \"prussien\",\n  \"prussiens\": \"prussien\",\n  \"psalmodie\": \"psalmod\",\n  \"psaume\": \"psaum\",\n  \"psaumes\": \"psaum\",\n  \"pseudonyme\": \"pseudonym\",\n  \"psyché\": \"psych\",\n  \"pu\": \"pu\",\n  \"publia\": \"publi\",\n  \"public\": \"public\",\n  \"publicité\": \"publiqu\",\n  \"publics\": \"public\",\n  \"publie\": \"publ\",\n  \"publié\": \"publi\",\n  \"publiée\": \"publi\",\n  \"publiées\": \"publi\",\n  \"publièrent\": \"publi\",\n  \"publique\": \"publiqu\",\n  \"publiquement\": \"publiqu\",\n  \"publiques\": \"publiqu\",\n  \"pudeur\": \"pudeur\",\n  \"puériles\": \"puéril\",\n  \"puis\": \"puis\",\n  \"puisait\": \"puis\",\n  \"puisant\": \"puis\",\n  \"puisée\": \"puis\",\n  \"puiser\": \"puis\",\n  \"puisés\": \"puis\",\n  \"puisqu\": \"puisqu\",\n  \"puisque\": \"puisqu\",\n  \"puissamment\": \"puiss\",\n  \"puissance\": \"puissanc\",\n  \"puissances\": \"puissanc\",\n  \"puissant\": \"puiss\",\n  \"puissante\": \"puiss\",\n  \"puissantes\": \"puiss\",\n  \"puissants\": \"puiss\",\n  \"puisse\": \"puiss\",\n  \"puissent\": \"puissent\",\n  \"puissiez\": \"puiss\",\n  \"puissions\": \"puission\",\n  \"puits\": \"puit\",\n  \"pullulaient\": \"pullul\",\n  \"pullulent\": \"pullulent\",\n  \"punch\": \"punch\",\n  \"puni\": \"pun\",\n  \"punie\": \"pun\",\n  \"punir\": \"pun\",\n  \"punira\": \"pun\",\n  \"punirait\": \"pun\",\n  \"punirmi\": \"punirm\",\n  \"punis\": \"pun\",\n  \"punisse\": \"pun\",\n  \"punit\": \"pun\",\n  \"punîtes\": \"pun\",\n  \"punition\": \"punit\",\n  \"punitions\": \"punit\",\n  \"puntiglio\": \"puntiglio\",\n  \"pupille\": \"pupill\",\n  \"pupitre\": \"pupitr\",\n  \"pur\": \"pur\",\n  \"pure\": \"pur\",\n  \"purement\": \"pur\",\n  \"purent\": \"purent\",\n  \"pureté\": \"puret\",\n  \"purgeait\": \"purg\",\n  \"purger\": \"purg\",\n  \"puritaine\": \"puritain\",\n  \"purs\": \"pur\",\n  \"purser\": \"purs\",\n  \"pusillanime\": \"pusillanim\",\n  \"pusillanimes\": \"pusillanim\",\n  \"pusillanimité\": \"pusillanim\",\n  \"pusse\": \"puss\",\n  \"pussent\": \"pussent\",\n  \"put\": \"put\",\n  \"pût\": \"pût\",\n  \"putiphar\": \"putiphar\",\n  \"putréfaction\": \"putréfact\",\n  \"pyramide\": \"pyramid\",\n  \"pyrénées\": \"pyren\",\n  \"qu\": \"qu\",\n  \"qua\": \"qua\",\n  \"quadrille\": \"quadrill\",\n  \"quadrupède\": \"quadruped\",\n  \"quadruple\": \"quadrupl\",\n  \"quai\": \"quai\",\n  \"quais\": \"quais\",\n  \"quakeresse\": \"quakeress\",\n  \"qualifiait\": \"qualifi\",\n  \"qualificatif\": \"qualif\",\n  \"qualification\": \"qualif\",\n  \"qualité\": \"qualit\",\n  \"qualités\": \"qualit\",\n  \"quand\": \"quand\",\n  \"quando\": \"quando\",\n  \"quant\": \"quant\",\n  \"quanti\": \"quant\",\n  \"quantième\": \"quantiem\",\n  \"quantièmes\": \"quantiem\",\n  \"quantité\": \"quantit\",\n  \"quarantaine\": \"quarantain\",\n  \"quarante\": \"quar\",\n  \"quarantième\": \"quarantiem\",\n  \"quart\": \"quart\",\n  \"quarti\": \"quart\",\n  \"quartier\": \"quarti\",\n  \"quartiers\": \"quarti\",\n  \"quarto\": \"quarto\",\n  \"quarts\": \"quart\",\n  \"quatorze\": \"quatorz\",\n  \"quatre\": \"quatr\",\n  \"quatrième\": \"quatriem\",\n  \"quatrièmes\": \"quatriem\",\n  \"que\": \"que\",\n  \"queenstown\": \"queenstown\",\n  \"quel\": \"quel\",\n  \"quelconque\": \"quelconqu\",\n  \"quelle\": \"quel\",\n  \"quelles\": \"quel\",\n  \"quelqu\": \"quelqu\",\n  \"quelque\": \"quelqu\",\n  \"quelquefois\": \"quelquefois\",\n  \"quelques\": \"quelqu\",\n  \"quels\": \"quel\",\n  \"quem\": \"quem\",\n  \"querelle\": \"querel\",\n  \"querelles\": \"querel\",\n  \"question\": \"question\",\n  \"questionner\": \"question\",\n  \"questions\": \"question\",\n  \"quête\": \"quêt\",\n  \"quêtes\": \"quêt\",\n  \"quêteurs\": \"quêteur\",\n  \"queue\": \"queu\",\n  \"qui\": \"qui\",\n  \"quibus\": \"quibus\",\n  \"quichotte\": \"quichott\",\n  \"quiconque\": \"quiconqu\",\n  \"quid\": \"quid\",\n  \"quille\": \"quill\",\n  \"quint\": \"quint\",\n  \"quintaux\": \"quintal\",\n  \"quinte\": \"quint\",\n  \"quinzaine\": \"quinzain\",\n  \"quinze\": \"quinz\",\n  \"quinzième\": \"quinziem\",\n  \"quitta\": \"quitt\",\n  \"quittai\": \"quitt\",\n  \"quittais\": \"quitt\",\n  \"quittait\": \"quitt\",\n  \"quittant\": \"quitt\",\n  \"quittât\": \"quitt\",\n  \"quitte\": \"quitt\",\n  \"quitté\": \"quitt\",\n  \"quittent\": \"quittent\",\n  \"quitter\": \"quitt\",\n  \"quittera\": \"quitt\",\n  \"quitterai\": \"quitt\",\n  \"quitterait\": \"quitt\",\n  \"quittèrent\": \"quitt\",\n  \"quitterez\": \"quitt\",\n  \"quitterons\": \"quitt\",\n  \"quittes\": \"quitt\",\n  \"quittés\": \"quitt\",\n  \"quittez\": \"quitt\",\n  \"quittons\": \"quitton\",\n  \"quoerens\": \"quoeren\",\n  \"quoi\": \"quoi\",\n  \"quoiqu\": \"quoiqu\",\n  \"quoique\": \"quoiqu\",\n  \"quotidien\": \"quotidien\",\n  \"quotidienne\": \"quotidien\",\n  \"quotidiennement\": \"quotidien\",\n  \"quotité\": \"quotit\",\n  \"r\": \"r\",\n  \"rabâchage\": \"rabâchag\",\n  \"rabaisser\": \"rabaiss\",\n  \"raccommodait\": \"raccommod\",\n  \"raccommodant\": \"raccommod\",\n  \"raccommodé\": \"raccommod\",\n  \"raccommodements\": \"raccommod\",\n  \"raccommoder\": \"raccommod\",\n  \"raccordent\": \"raccordent\",\n  \"raccourcis\": \"raccourc\",\n  \"race\": \"rac\",\n  \"races\": \"rac\",\n  \"rachète\": \"rachet\",\n  \"racheter\": \"rachet\",\n  \"racine\": \"racin\",\n  \"raconta\": \"racont\",\n  \"racontait\": \"racont\",\n  \"racontant\": \"racont\",\n  \"racontât\": \"racont\",\n  \"raconte\": \"racont\",\n  \"raconté\": \"racont\",\n  \"racontent\": \"racontent\",\n  \"raconter\": \"racont\",\n  \"raconterai\": \"racont\",\n  \"raconteraient\": \"racont\",\n  \"raconterait\": \"racont\",\n  \"racontèrent\": \"racont\",\n  \"raconterons\": \"racont\",\n  \"racontés\": \"racont\",\n  \"racontez\": \"racont\",\n  \"rade\": \"rad\",\n  \"radieux\": \"radieux\",\n  \"radouci\": \"radouc\",\n  \"rafale\": \"rafal\",\n  \"rafales\": \"rafal\",\n  \"raffinée\": \"raffin\",\n  \"rafraîchie\": \"rafraîch\",\n  \"rafraîchir\": \"rafraîch\",\n  \"rafraîchissements\": \"rafraîch\",\n  \"rafraîchit\": \"rafraîch\",\n  \"rage\": \"rag\",\n  \"rageant\": \"rag\",\n  \"rages\": \"rag\",\n  \"rageurs\": \"rageur\",\n  \"raide\": \"raid\",\n  \"raidi\": \"raid\",\n  \"raidie\": \"raid\",\n  \"raidirent\": \"raid\",\n  \"raies\": \"rai\",\n  \"rail\": \"rail\",\n  \"raillerie\": \"railler\",\n  \"railroad\": \"railroad\",\n  \"rails\": \"rail\",\n  \"railway\": \"railway\",\n  \"railways\": \"railway\",\n  \"raison\": \"raison\",\n  \"raisonna\": \"raison\",\n  \"raisonnable\": \"raison\",\n  \"raisonnablement\": \"raison\",\n  \"raisonnables\": \"raison\",\n  \"raisonnais\": \"raison\",\n  \"raisonnait\": \"raison\",\n  \"raisonnante\": \"raison\",\n  \"raisonne\": \"raison\",\n  \"raisonnement\": \"raison\",\n  \"raisonnements\": \"raison\",\n  \"raisonner\": \"raison\",\n  \"raisonneur\": \"raisonneur\",\n  \"raisons\": \"raison\",\n  \"rajah\": \"rajah\",\n  \"rajahs\": \"rajah\",\n  \"rajeuni\": \"rajeun\",\n  \"râlaient\": \"râl\",\n  \"ralentie\": \"ralent\",\n  \"ralentir\": \"ralent\",\n  \"ralentissant\": \"ralent\",\n  \"ralentit\": \"ralent\",\n  \"ralliait\": \"ralli\",\n  \"rallier\": \"ralli\",\n  \"ralluma\": \"rallum\",\n  \"ralph\": \"ralph\",\n  \"ramassa\": \"ramass\",\n  \"ramassaient\": \"ramass\",\n  \"ramassait\": \"ramass\",\n  \"ramasse\": \"ram\",\n  \"ramassé\": \"ramass\",\n  \"ramasser\": \"ramass\",\n  \"ramasseraient\": \"ramass\",\n  \"ramassés\": \"ramass\",\n  \"ramassis\": \"ramass\",\n  \"ramayana\": \"ramayan\",\n  \"rambarde\": \"rambard\",\n  \"rambo\": \"rambo\",\n  \"rame\": \"ram\",\n  \"ramena\": \"ramen\",\n  \"ramenait\": \"ramen\",\n  \"ramenant\": \"ramen\",\n  \"ramener\": \"ramen\",\n  \"rames\": \"ram\",\n  \"rameurs\": \"rameur\",\n  \"ramifiant\": \"ramifi\",\n  \"ramifications\": \"ramif\",\n  \"ramifiées\": \"ramifi\",\n  \"rampant\": \"ramp\",\n  \"rampe\": \"ramp\",\n  \"rampes\": \"ramp\",\n  \"ramure\": \"ramur\",\n  \"ramures\": \"ramur\",\n  \"ranchos\": \"ranchos\",\n  \"rancune\": \"rancun\",\n  \"rancunier\": \"rancuni\",\n  \"rang\": \"rang\",\n  \"rangé\": \"rang\",\n  \"rangea\": \"rang\",\n  \"rangeait\": \"rang\",\n  \"rangée\": \"rang\",\n  \"rangées\": \"rang\",\n  \"ranger\": \"rang\",\n  \"rangerait\": \"rang\",\n  \"rangèrent\": \"rang\",\n  \"ranges\": \"rang\",\n  \"rangés\": \"rang\",\n  \"rangoon\": \"rangoon\",\n  \"rangs\": \"rang\",\n  \"ranima\": \"ranim\",\n  \"ranimé\": \"ranim\",\n  \"ranimer\": \"ranim\",\n  \"ranimèrent\": \"ranim\",\n  \"ranuce\": \"ranuc\",\n  \"rapacité\": \"rapac\",\n  \"rapatrier\": \"rapatri\",\n  \"râpé\": \"râp\",\n  \"râpés\": \"râp\",\n  \"rapide\": \"rapid\",\n  \"rapidement\": \"rapid\",\n  \"rapides\": \"rapid\",\n  \"rapidité\": \"rapid\",\n  \"rappela\": \"rappel\",\n  \"rappelaient\": \"rappel\",\n  \"rappelait\": \"rappel\",\n  \"rappelant\": \"rappel\",\n  \"rappelât\": \"rappel\",\n  \"rappelé\": \"rappel\",\n  \"rappelée\": \"rappel\",\n  \"rappeler\": \"rappel\",\n  \"rappelèrent\": \"rappel\",\n  \"rappelés\": \"rappel\",\n  \"rappelez\": \"rappel\",\n  \"rappelle\": \"rappel\",\n  \"rappellent\": \"rappellent\",\n  \"rappellera\": \"rappel\",\n  \"rappellerai\": \"rappel\",\n  \"rappellerais\": \"rappel\",\n  \"rappellerait\": \"rappel\",\n  \"rappellerez\": \"rappel\",\n  \"rapport\": \"rapport\",\n  \"rapporta\": \"rapport\",\n  \"rapportaient\": \"rapport\",\n  \"rapportait\": \"rapport\",\n  \"rapportant\": \"rapport\",\n  \"rapportât\": \"rapport\",\n  \"rapporte\": \"rapport\",\n  \"rapporté\": \"rapport\",\n  \"rapportée\": \"rapport\",\n  \"rapportées\": \"rapport\",\n  \"rapporter\": \"rapport\",\n  \"rapporterait\": \"rapport\",\n  \"rapportèrent\": \"rapport\",\n  \"rapporterons\": \"rapport\",\n  \"rapportes\": \"rapport\",\n  \"rapporteur\": \"rapporteur\",\n  \"rapports\": \"rapport\",\n  \"rapprocha\": \"rapproch\",\n  \"rapprochaient\": \"rapproch\",\n  \"rapprochait\": \"rapproch\",\n  \"rapprochant\": \"rapproch\",\n  \"rapproche\": \"rapproch\",\n  \"rapproché\": \"rapproch\",\n  \"rapprochées\": \"rapproch\",\n  \"rapprocher\": \"rapproch\",\n  \"rapprocherait\": \"rapproch\",\n  \"rapprochèrent\": \"rapproch\",\n  \"rapprochés\": \"rapproch\",\n  \"raquettes\": \"raquet\",\n  \"rare\": \"rar\",\n  \"raréfiaient\": \"raréfi\",\n  \"rarement\": \"rar\",\n  \"rares\": \"rar\",\n  \"ras\": \"ras\",\n  \"rasant\": \"ras\",\n  \"rasé\": \"ras\",\n  \"rasée\": \"ras\",\n  \"rasées\": \"ras\",\n  \"raser\": \"ras\",\n  \"raserait\": \"ras\",\n  \"rassasié\": \"rassasi\",\n  \"rassasiée\": \"rassasi\",\n  \"rassasier\": \"rassasi\",\n  \"rassemblait\": \"rassembl\",\n  \"rassemblé\": \"rassembl\",\n  \"rassembler\": \"rassembl\",\n  \"rassemblés\": \"rassembl\",\n  \"rasseoir\": \"rasseoir\",\n  \"rasséréna\": \"rasséren\",\n  \"rasséréner\": \"rasséren\",\n  \"rassi\": \"rass\",\n  \"rassit\": \"rass\",\n  \"rassura\": \"rassur\",\n  \"rassuraient\": \"rassur\",\n  \"rassurait\": \"rassur\",\n  \"rassure\": \"rassur\",\n  \"rassuré\": \"rassur\",\n  \"rassurée\": \"rassur\",\n  \"rassurer\": \"rassur\",\n  \"rassurez\": \"rassur\",\n  \"ratine\": \"ratin\",\n  \"rationnelle\": \"rationnel\",\n  \"rationnellement\": \"rationnel\",\n  \"rats\": \"rat\",\n  \"rattachait\": \"rattach\",\n  \"ravages\": \"ravag\",\n  \"ravaler\": \"raval\",\n  \"ravenne\": \"raven\",\n  \"raversi\": \"ravers\",\n  \"ravi\": \"rav\",\n  \"ravie\": \"rav\",\n  \"ravins\": \"ravin\",\n  \"ravir\": \"rav\",\n  \"ravis\": \"rav\",\n  \"raviser\": \"ravis\",\n  \"ravissait\": \"rav\",\n  \"ravissant\": \"rav\",\n  \"ravissante\": \"rav\",\n  \"ravissantes\": \"rav\",\n  \"ravissants\": \"rav\",\n  \"ravissement\": \"rav\",\n  \"ravisseur\": \"ravisseur\",\n  \"ravisseurs\": \"ravisseur\",\n  \"ravit\": \"rav\",\n  \"ravoir\": \"ravoir\",\n  \"rayées\": \"rai\",\n  \"raynal\": \"raynal\",\n  \"rayon\": \"rayon\",\n  \"rayonna\": \"rayon\",\n  \"rayons\": \"rayon\",\n  \"razori\": \"razor\",\n  \"réaction\": \"réaction\",\n  \"reading\": \"reading\",\n  \"réal\": \"réal\",\n  \"réalisable\": \"réalis\",\n  \"réaliser\": \"réalis\",\n  \"réaliste\": \"réalist\",\n  \"réalité\": \"réalit\",\n  \"réapprovisionner\": \"réapprovision\",\n  \"rébarbatif\": \"rébarb\",\n  \"rébarbative\": \"rébarb\",\n  \"rebâtir\": \"rebât\",\n  \"rebelle\": \"rebel\",\n  \"rebelles\": \"rebel\",\n  \"rébellion\": \"rébellion\",\n  \"récapitulant\": \"récapitul\",\n  \"récemment\": \"récent\",\n  \"récente\": \"récent\",\n  \"réception\": \"récept\",\n  \"réceptions\": \"récept\",\n  \"recette\": \"recet\",\n  \"recettes\": \"recet\",\n  \"recevaient\": \"recev\",\n  \"recevait\": \"recev\",\n  \"recevant\": \"recev\",\n  \"recevez\": \"recev\",\n  \"receviez\": \"recev\",\n  \"recevoir\": \"recevoir\",\n  \"recevra\": \"recevr\",\n  \"recevrai\": \"recevr\",\n  \"recevrait\": \"recevr\",\n  \"recevrez\": \"recevr\",\n  \"recharger\": \"recharg\",\n  \"rechargez\": \"recharg\",\n  \"réchauffé\": \"réchauff\",\n  \"rechercha\": \"recherch\",\n  \"recherchait\": \"recherch\",\n  \"recherche\": \"recherch\",\n  \"recherché\": \"recherch\",\n  \"rechercher\": \"recherch\",\n  \"rechercheront\": \"recherch\",\n  \"recherches\": \"recherch\",\n  \"recherchés\": \"recherch\",\n  \"rechignant\": \"rechign\",\n  \"rechigné\": \"rechign\",\n  \"rechute\": \"rechut\",\n  \"récidive\": \"récid\",\n  \"reciproquement\": \"reciproqu\",\n  \"réciproquement\": \"réciproqu\",\n  \"recit\": \"rec\",\n  \"récit\": \"rec\",\n  \"récita\": \"récit\",\n  \"récitaient\": \"récit\",\n  \"récitait\": \"récit\",\n  \"récitant\": \"récit\",\n  \"récitatif\": \"récit\",\n  \"récitation\": \"récit\",\n  \"récite\": \"récit\",\n  \"récité\": \"récit\",\n  \"réciter\": \"récit\",\n  \"réciterai\": \"récit\",\n  \"réciterez\": \"récit\",\n  \"récits\": \"récit\",\n  \"réclamait\": \"réclam\",\n  \"réclame\": \"réclam\",\n  \"réclamée\": \"réclam\",\n  \"réclamer\": \"réclam\",\n  \"réclamés\": \"réclam\",\n  \"reclus\": \"reclus\",\n  \"réclusion\": \"réclus\",\n  \"reçois\": \"reçois\",\n  \"reçoit\": \"reçoit\",\n  \"reçoive\": \"reçoiv\",\n  \"reçoivent\": \"reçoivent\",\n  \"récolte\": \"récolt\",\n  \"recommanda\": \"recommand\",\n  \"recommandait\": \"recommand\",\n  \"recommandant\": \"recommand\",\n  \"recommandation\": \"recommand\",\n  \"recommandations\": \"recommand\",\n  \"recommande\": \"recommand\",\n  \"recommandé\": \"recommand\",\n  \"recommander\": \"recommand\",\n  \"recommandés\": \"recommand\",\n  \"recommandez\": \"recommand\",\n  \"recommença\": \"recommenc\",\n  \"recommençaient\": \"recommenc\",\n  \"recommençait\": \"recommenc\",\n  \"recommençât\": \"recommenc\",\n  \"recommence\": \"recomment\",\n  \"recommencé\": \"recommenc\",\n  \"recommencer\": \"recommenc\",\n  \"recommencerai\": \"recommenc\",\n  \"recommenceraient\": \"recommenc\",\n  \"recommencerait\": \"recommenc\",\n  \"recommencèrent\": \"recommenc\",\n  \"recommencez\": \"recommenc\",\n  \"récompense\": \"récompens\",\n  \"récompensé\": \"récompens\",\n  \"récompensée\": \"récompens\",\n  \"recomptait\": \"recompt\",\n  \"réconciliation\": \"réconcili\",\n  \"réconcilie\": \"réconcil\",\n  \"reconduire\": \"reconduir\",\n  \"reconduisait\": \"reconduis\",\n  \"reconduisant\": \"reconduis\",\n  \"reconduisit\": \"reconduis\",\n  \"reconduit\": \"reconduit\",\n  \"reconnais\": \"recon\",\n  \"reconnaissable\": \"reconnaiss\",\n  \"reconnaissaient\": \"reconnaiss\",\n  \"reconnaissait\": \"reconnaiss\",\n  \"reconnaissance\": \"reconnaiss\",\n  \"reconnaissant\": \"reconnaiss\",\n  \"reconnaisse\": \"reconnaiss\",\n  \"reconnaissent\": \"reconnaissent\",\n  \"reconnaissez\": \"reconnaiss\",\n  \"reconnaît\": \"reconnaît\",\n  \"reconnaîtra\": \"reconnaîtr\",\n  \"reconnaître\": \"reconnaîtr\",\n  \"reconnu\": \"reconnu\",\n  \"reconnue\": \"reconnu\",\n  \"reconnurent\": \"reconnurent\",\n  \"reconnus\": \"reconnus\",\n  \"reconnut\": \"reconnut\",\n  \"reconquérir\": \"reconquer\",\n  \"reconquerrait\": \"reconquerr\",\n  \"reconquis\": \"reconqu\",\n  \"recoucher\": \"recouch\",\n  \"recoudre\": \"recoudr\",\n  \"recourir\": \"recour\",\n  \"recours\": \"recour\",\n  \"recouvert\": \"recouvert\",\n  \"recouverte\": \"recouvert\",\n  \"recouverts\": \"recouvert\",\n  \"recouvra\": \"recouvr\",\n  \"recouvrait\": \"recouvr\",\n  \"recouvrée\": \"recouvr\",\n  \"recouvrer\": \"recouvr\",\n  \"recouvrir\": \"recouvr\",\n  \"recouvrît\": \"recouvr\",\n  \"récréation\": \"récréat\",\n  \"récréations\": \"récréat\",\n  \"récriait\": \"récri\",\n  \"récrier\": \"récri\",\n  \"récrièrent\": \"récri\",\n  \"recrues\": \"recru\",\n  \"recrute\": \"recrut\",\n  \"recruter\": \"recrut\",\n  \"rectifia\": \"rectifi\",\n  \"rectifiait\": \"rectifi\",\n  \"rectifier\": \"rectifi\",\n  \"rectiligne\": \"rectilign\",\n  \"reçu\": \"reçu\",\n  \"reçue\": \"reçu\",\n  \"recueil\": \"recueil\",\n  \"recueillent\": \"recueillent\",\n  \"recueilli\": \"recueil\",\n  \"recueillir\": \"recueil\",\n  \"recueillirent\": \"recueil\",\n  \"reçues\": \"reçu\",\n  \"recula\": \"recul\",\n  \"reculant\": \"recul\",\n  \"recule\": \"recul\",\n  \"reculé\": \"recul\",\n  \"reculer\": \"recul\",\n  \"reçurent\": \"reçurent\",\n  \"reçus\": \"reçus\",\n  \"reçut\": \"reçut\",\n  \"reçût\": \"reçût\",\n  \"rédacteur\": \"rédacteur\",\n  \"rédacteurs\": \"rédacteur\",\n  \"rédaction\": \"rédact\",\n  \"redemande\": \"redemand\",\n  \"redescend\": \"redescend\",\n  \"redescendant\": \"redescend\",\n  \"redescendit\": \"redescend\",\n  \"redescendre\": \"redescendr\",\n  \"redescendue\": \"redescendu\",\n  \"redevenaient\": \"redeven\",\n  \"redevenait\": \"redeven\",\n  \"redevenant\": \"redeven\",\n  \"redevenu\": \"redevenu\",\n  \"redevenue\": \"redevenu\",\n  \"redevint\": \"redevint\",\n  \"rédigea\": \"rédig\",\n  \"rédigée\": \"rédig\",\n  \"rédigerait\": \"rédig\",\n  \"redingote\": \"redingot\",\n  \"redingotes\": \"redingot\",\n  \"redira\": \"red\",\n  \"redits\": \"redit\",\n  \"redonner\": \"redon\",\n  \"redoubla\": \"redoubl\",\n  \"redoublaient\": \"redoubl\",\n  \"redoublait\": \"redoubl\",\n  \"redoublant\": \"redoubl\",\n  \"redouble\": \"redoubl\",\n  \"redoublé\": \"redoubl\",\n  \"redoublement\": \"redoubl\",\n  \"redoubler\": \"redoubl\",\n  \"redoublerait\": \"redoubl\",\n  \"redoublèrent\": \"redoubl\",\n  \"redoutables\": \"redout\",\n  \"redoutaient\": \"redout\",\n  \"redoutait\": \"redout\",\n  \"redoute\": \"redout\",\n  \"redouté\": \"redout\",\n  \"redouter\": \"redout\",\n  \"redoutons\": \"redouton\",\n  \"redressait\": \"redress\",\n  \"redresser\": \"redress\",\n  \"réduiras\": \"réduir\",\n  \"réduire\": \"réduir\",\n  \"réduirons\": \"réduiron\",\n  \"réduisait\": \"réduis\",\n  \"réduisent\": \"réduisent\",\n  \"réduisit\": \"réduis\",\n  \"réduit\": \"réduit\",\n  \"réduite\": \"réduit\",\n  \"réduites\": \"réduit\",\n  \"réduits\": \"réduit\",\n  \"réel\": \"réel\",\n  \"réélection\": \"réélect\",\n  \"réelle\": \"réel\",\n  \"réellement\": \"réel\",\n  \"réelles\": \"réel\",\n  \"réels\": \"réel\",\n  \"réexpédié\": \"réexpédi\",\n  \"refaire\": \"refair\",\n  \"refaisait\": \"refais\",\n  \"refaites\": \"refait\",\n  \"réfectoire\": \"réfectoir\",\n  \"références\": \"référent\",\n  \"referma\": \"referm\",\n  \"refermé\": \"referm\",\n  \"refermée\": \"referm\",\n  \"refermer\": \"referm\",\n  \"réfléchi\": \"réflech\",\n  \"réfléchir\": \"réflech\",\n  \"réfléchirez\": \"réflech\",\n  \"réfléchissait\": \"réflech\",\n  \"réfléchissant\": \"réflech\",\n  \"réfléchissez\": \"réflech\",\n  \"réfléchit\": \"réflech\",\n  \"réfléchît\": \"réflech\",\n  \"reflet\": \"reflet\",\n  \"reflétait\": \"reflet\",\n  \"reflète\": \"reflet\",\n  \"reflets\": \"reflet\",\n  \"réflexion\": \"réflexion\",\n  \"réflexions\": \"réflex\",\n  \"reflua\": \"reflu\",\n  \"refluait\": \"reflu\",\n  \"reform\": \"reform\",\n  \"refouler\": \"refoul\",\n  \"réfractaire\": \"réfractair\",\n  \"réfractaires\": \"réfractair\",\n  \"refrain\": \"refrain\",\n  \"refrains\": \"refrain\",\n  \"refroidies\": \"refroid\",\n  \"refroidir\": \"refroid\",\n  \"refuge\": \"refug\",\n  \"réfugia\": \"réfugi\",\n  \"réfugiait\": \"réfugi\",\n  \"réfugiant\": \"réfugi\",\n  \"réfugie\": \"réfug\",\n  \"réfugié\": \"réfugi\",\n  \"réfugiée\": \"réfugi\",\n  \"réfugier\": \"réfugi\",\n  \"réfugieront\": \"réfugi\",\n  \"réfugiés\": \"réfugi\",\n  \"réfugiez\": \"réfug\",\n  \"refus\": \"refus\",\n  \"refusa\": \"refus\",\n  \"refusait\": \"refus\",\n  \"refusant\": \"refus\",\n  \"refuse\": \"refus\",\n  \"refusé\": \"refus\",\n  \"refusée\": \"refus\",\n  \"refusées\": \"refus\",\n  \"refusent\": \"refusent\",\n  \"refuser\": \"refus\",\n  \"refuserait\": \"refus\",\n  \"refuseriez\": \"refus\",\n  \"refusez\": \"refus\",\n  \"refusiez\": \"refus\",\n  \"réfutés\": \"réfut\",\n  \"regagna\": \"regagn\",\n  \"regagnaient\": \"regagn\",\n  \"regagnait\": \"regagn\",\n  \"regagné\": \"regagn\",\n  \"regagner\": \"regagn\",\n  \"régalait\": \"régal\",\n  \"regard\": \"regard\",\n  \"regarda\": \"regard\",\n  \"regardaient\": \"regard\",\n  \"regardais\": \"regard\",\n  \"regardait\": \"regard\",\n  \"regardant\": \"regard\",\n  \"regarde\": \"regard\",\n  \"regardé\": \"regard\",\n  \"regardée\": \"regard\",\n  \"regardent\": \"regardent\",\n  \"regarder\": \"regard\",\n  \"regardera\": \"regard\",\n  \"regarderai\": \"regard\",\n  \"regardèrent\": \"regard\",\n  \"regarderez\": \"regard\",\n  \"regarderont\": \"regard\",\n  \"regardés\": \"regard\",\n  \"regardez\": \"regard\",\n  \"regards\": \"regard\",\n  \"régate\": \"régat\",\n  \"régénérateur\": \"régéner\",\n  \"régénérer\": \"régéner\",\n  \"regent\": \"regent\",\n  \"régent\": \"régent\",\n  \"regimbait\": \"regimb\",\n  \"régime\": \"régim\",\n  \"régiment\": \"reg\",\n  \"régiments\": \"reg\",\n  \"régimes\": \"régim\",\n  \"région\": \"région\",\n  \"régions\": \"région\",\n  \"registre\": \"registr\",\n  \"registres\": \"registr\",\n  \"régla\": \"regl\",\n  \"réglant\": \"regl\",\n  \"règle\": \"regl\",\n  \"réglé\": \"regl\",\n  \"réglée\": \"regl\",\n  \"règlement\": \"regl\",\n  \"réglementaire\": \"réglementair\",\n  \"réglementaires\": \"réglementair\",\n  \"réglementation\": \"réglement\",\n  \"réglementée\": \"réglement\",\n  \"règlements\": \"regl\",\n  \"régler\": \"regl\",\n  \"réglera\": \"regl\",\n  \"règles\": \"regl\",\n  \"réglés\": \"regl\",\n  \"régna\": \"regn\",\n  \"régnaient\": \"regn\",\n  \"régnait\": \"regn\",\n  \"régnant\": \"regn\",\n  \"régnante\": \"regn\",\n  \"règne\": \"regn\",\n  \"régné\": \"regn\",\n  \"règnent\": \"règnent\",\n  \"régner\": \"regn\",\n  \"régnera\": \"regn\",\n  \"régnez\": \"regn\",\n  \"régnons\": \"régnon\",\n  \"regorgeant\": \"regorg\",\n  \"regorgent\": \"regorgent\",\n  \"regret\": \"regret\",\n  \"regrets\": \"regret\",\n  \"regrettaient\": \"regret\",\n  \"regrettait\": \"regret\",\n  \"regrette\": \"regret\",\n  \"regrettée\": \"regret\",\n  \"regrettées\": \"regret\",\n  \"regretter\": \"regret\",\n  \"regretterais\": \"regret\",\n  \"regretteriez\": \"regret\",\n  \"regrettez\": \"regret\",\n  \"régularisé\": \"régularis\",\n  \"régularité\": \"régular\",\n  \"régulateur\": \"régul\",\n  \"régulier\": \"réguli\",\n  \"régulière\": \"réguli\",\n  \"régulièrement\": \"réguli\",\n  \"rehausse\": \"rehauss\",\n  \"rein\": \"rein\",\n  \"reina\": \"rein\",\n  \"reine\": \"rein\",\n  \"reins\": \"rein\",\n  \"réintégré\": \"réintegr\",\n  \"réintégrés\": \"réintegr\",\n  \"réitérée\": \"réiter\",\n  \"rejaillir\": \"rejaill\",\n  \"rejeta\": \"rejet\",\n  \"rejeté\": \"rejet\",\n  \"rejettera\": \"rejet\",\n  \"rejoignait\": \"rejoign\",\n  \"rejoignant\": \"rejoign\",\n  \"rejoignent\": \"rejoignent\",\n  \"rejoignirent\": \"rejoign\",\n  \"rejoignit\": \"rejoign\",\n  \"rejoindra\": \"rejoindr\",\n  \"rejoindre\": \"rejoindr\",\n  \"rejoint\": \"rejoint\",\n  \"réjouie\": \"réjou\",\n  \"réjouir\": \"réjou\",\n  \"réjouirez\": \"réjou\",\n  \"réjouissait\": \"réjou\",\n  \"réjouissances\": \"réjouiss\",\n  \"réjouit\": \"réjou\",\n  \"relâchait\": \"relâch\",\n  \"relâche\": \"relâch\",\n  \"relâché\": \"relâch\",\n  \"relâchées\": \"relâch\",\n  \"relâcher\": \"relâch\",\n  \"relais\": \"rel\",\n  \"relancer\": \"relanc\",\n  \"relatif\": \"relat\",\n  \"relatifs\": \"relat\",\n  \"relation\": \"relat\",\n  \"relations\": \"relat\",\n  \"relative\": \"relat\",\n  \"relativement\": \"relat\",\n  \"relatives\": \"relat\",\n  \"relégué\": \"relégu\",\n  \"reléguée\": \"relégu\",\n  \"reléguer\": \"relégu\",\n  \"releva\": \"relev\",\n  \"relevaient\": \"relev\",\n  \"relevait\": \"relev\",\n  \"relevant\": \"relev\",\n  \"relevé\": \"relev\",\n  \"relevée\": \"relev\",\n  \"relevées\": \"relev\",\n  \"relèvent\": \"relèvent\",\n  \"relever\": \"relev\",\n  \"relèveras\": \"relev\",\n  \"relié\": \"reli\",\n  \"reliée\": \"reli\",\n  \"reliées\": \"reli\",\n  \"relief\": \"relief\",\n  \"reliefs\": \"relief\",\n  \"relier\": \"reli\",\n  \"reliés\": \"reli\",\n  \"religieuse\": \"religi\",\n  \"religieusement\": \"religi\",\n  \"religieuses\": \"religi\",\n  \"religieux\": \"religi\",\n  \"religion\": \"religion\",\n  \"religions\": \"relig\",\n  \"religiosité\": \"religios\",\n  \"reliquat\": \"reliquat\",\n  \"relique\": \"reliqu\",\n  \"relire\": \"relir\",\n  \"relis\": \"rel\",\n  \"relisais\": \"relis\",\n  \"relisait\": \"relis\",\n  \"relise\": \"relis\",\n  \"relu\": \"relu\",\n  \"relut\": \"relut\",\n  \"rem\": \"rem\",\n  \"remariais\": \"remari\",\n  \"remarqua\": \"remarqu\",\n  \"remarquable\": \"remarqu\",\n  \"remarquablement\": \"remarqu\",\n  \"remarquables\": \"remarqu\",\n  \"remarquaient\": \"remarqu\",\n  \"remarquait\": \"remarqu\",\n  \"remarquant\": \"remarqu\",\n  \"remarquâtes\": \"remarqu\",\n  \"remarque\": \"remarqu\",\n  \"remarqué\": \"remarqu\",\n  \"remarquée\": \"remarqu\",\n  \"remarquer\": \"remarqu\",\n  \"remarquera\": \"remarqu\",\n  \"remarquèrent\": \"remarqu\",\n  \"remarquerez\": \"remarqu\",\n  \"remarques\": \"remarqu\",\n  \"remarqués\": \"remarqu\",\n  \"remarquez\": \"remarqu\",\n  \"rembourse\": \"rembours\",\n  \"remboursement\": \"rembours\",\n  \"rembourser\": \"rembours\",\n  \"rembrunit\": \"rembrun\",\n  \"remède\": \"remed\",\n  \"remèdes\": \"remed\",\n  \"remédier\": \"remédi\",\n  \"remercia\": \"remerci\",\n  \"remerciait\": \"remerci\",\n  \"remerciant\": \"remerci\",\n  \"remercie\": \"remerc\",\n  \"remercié\": \"remerci\",\n  \"remerciée\": \"remerci\",\n  \"remerciements\": \"remerci\",\n  \"remercier\": \"remerci\",\n  \"remercierais\": \"remerci\",\n  \"remercierait\": \"remerci\",\n  \"remercîment\": \"remercî\",\n  \"remercîments\": \"remercî\",\n  \"remet\": \"remet\",\n  \"remets\": \"remet\",\n  \"remettait\": \"remet\",\n  \"remettant\": \"remet\",\n  \"remette\": \"remet\",\n  \"remettent\": \"remettent\",\n  \"remettra\": \"remettr\",\n  \"remettrai\": \"remettr\",\n  \"remettrais\": \"remettr\",\n  \"remettrait\": \"remettr\",\n  \"remettras\": \"remettr\",\n  \"remettre\": \"remettr\",\n  \"remettrez\": \"remettr\",\n  \"remiers\": \"remi\",\n  \"remirent\": \"rem\",\n  \"remis\": \"rem\",\n  \"remise\": \"remis\",\n  \"remises\": \"remis\",\n  \"rémission\": \"rémiss\",\n  \"remit\": \"rem\",\n  \"remonta\": \"remont\",\n  \"remontait\": \"remont\",\n  \"remontant\": \"remont\",\n  \"remonte\": \"remont\",\n  \"remonté\": \"remont\",\n  \"remontent\": \"remontent\",\n  \"remonter\": \"remont\",\n  \"remonterait\": \"remont\",\n  \"remontez\": \"remont\",\n  \"remontrance\": \"remontr\",\n  \"remontrances\": \"remontr\",\n  \"remontrer\": \"remontr\",\n  \"remords\": \"remord\",\n  \"remorquant\": \"remorqu\",\n  \"remous\": \"remous\",\n  \"rempart\": \"rempart\",\n  \"remparts\": \"rempart\",\n  \"remplaça\": \"remplac\",\n  \"remplaçaient\": \"remplac\",\n  \"remplaçait\": \"remplac\",\n  \"remplace\": \"remplac\",\n  \"remplacé\": \"remplac\",\n  \"remplacée\": \"remplac\",\n  \"remplacement\": \"remplac\",\n  \"remplacer\": \"remplac\",\n  \"remplacera\": \"remplac\",\n  \"remplacés\": \"remplac\",\n  \"rempli\": \"rempl\",\n  \"remplie\": \"rempl\",\n  \"remplies\": \"rempl\",\n  \"remplir\": \"rempl\",\n  \"remplirent\": \"rempl\",\n  \"remplis\": \"rempl\",\n  \"remplissaient\": \"rempl\",\n  \"remplissait\": \"rempl\",\n  \"remplissant\": \"rempl\",\n  \"remplissent\": \"rempl\",\n  \"remplit\": \"rempl\",\n  \"remplumai\": \"remplum\",\n  \"remportant\": \"remport\",\n  \"remporter\": \"remport\",\n  \"remua\": \"remu\",\n  \"remuant\": \"remu\",\n  \"remue\": \"remu\",\n  \"remuée\": \"remu\",\n  \"remuer\": \"remu\",\n  \"remues\": \"remu\",\n  \"rémunération\": \"rémuner\",\n  \"renaissant\": \"renaiss\",\n  \"renaissantes\": \"renaiss\",\n  \"renaître\": \"renaîtr\",\n  \"rênal\": \"rênal\",\n  \"renard\": \"renard\",\n  \"rencontra\": \"rencontr\",\n  \"rencontrai\": \"rencontr\",\n  \"rencontrait\": \"rencontr\",\n  \"rencontrâmes\": \"rencontr\",\n  \"rencontrant\": \"rencontr\",\n  \"rencontrassent\": \"rencontr\",\n  \"rencontrât\": \"rencontr\",\n  \"rencontre\": \"rencontr\",\n  \"rencontré\": \"rencontr\",\n  \"rencontrée\": \"rencontr\",\n  \"rencontrées\": \"rencontr\",\n  \"rencontrent\": \"rencontrent\",\n  \"rencontrer\": \"rencontr\",\n  \"rencontrerai\": \"rencontr\",\n  \"rencontreraient\": \"rencontr\",\n  \"rencontrèrent\": \"rencontr\",\n  \"rencontres\": \"rencontr\",\n  \"rencontrés\": \"rencontr\",\n  \"rend\": \"rend\",\n  \"rendaient\": \"rend\",\n  \"rendait\": \"rend\",\n  \"rendant\": \"rend\",\n  \"rende\": \"rend\",\n  \"rendent\": \"rendent\",\n  \"rendez\": \"rend\",\n  \"rendirent\": \"rend\",\n  \"rendit\": \"rend\",\n  \"rendît\": \"rend\",\n  \"rendra\": \"rendr\",\n  \"rendrai\": \"rendr\",\n  \"rendrait\": \"rendr\",\n  \"rendre\": \"rendr\",\n  \"rendrez\": \"rendr\",\n  \"rendriez\": \"rendr\",\n  \"rendrons\": \"rendron\",\n  \"rendront\": \"rendront\",\n  \"rends\": \"rend\",\n  \"rendu\": \"rendu\",\n  \"rendue\": \"rendu\",\n  \"rendus\": \"rendus\",\n  \"rêne\": \"rên\",\n  \"rené\": \"ren\",\n  \"renfermait\": \"renferm\",\n  \"renfermant\": \"renferm\",\n  \"renferme\": \"renferm\",\n  \"renfermé\": \"renferm\",\n  \"renfermée\": \"renferm\",\n  \"renfermer\": \"renferm\",\n  \"renforcé\": \"renforc\",\n  \"renfort\": \"renfort\",\n  \"renfrogné\": \"renfrogn\",\n  \"reniera\": \"reni\",\n  \"reno\": \"reno\",\n  \"renom\": \"renom\",\n  \"renommé\": \"renomm\",\n  \"renommée\": \"renomm\",\n  \"renonça\": \"renonc\",\n  \"renonçait\": \"renonc\",\n  \"renonce\": \"renonc\",\n  \"renoncé\": \"renonc\",\n  \"renoncer\": \"renonc\",\n  \"renoncera\": \"renonc\",\n  \"renoncerais\": \"renonc\",\n  \"renoncez\": \"renonc\",\n  \"renoué\": \"renou\",\n  \"renouer\": \"renou\",\n  \"renouvela\": \"renouvel\",\n  \"renouvelait\": \"renouvel\",\n  \"renouvelant\": \"renouvel\",\n  \"renouvelé\": \"renouvel\",\n  \"renouvelées\": \"renouvel\",\n  \"renouveler\": \"renouvel\",\n  \"renouvelèrent\": \"renouvel\",\n  \"renouvellement\": \"renouvel\",\n  \"renouvellent\": \"renouvellent\",\n  \"renseignement\": \"renseign\",\n  \"renseignements\": \"renseign\",\n  \"rente\": \"rent\",\n  \"rentes\": \"rent\",\n  \"rentra\": \"rentr\",\n  \"rentrait\": \"rentr\",\n  \"rentrant\": \"rentr\",\n  \"rentrât\": \"rentr\",\n  \"rentre\": \"rentr\",\n  \"rentré\": \"rentr\",\n  \"rentrée\": \"rentr\",\n  \"rentrent\": \"rentrent\",\n  \"rentrer\": \"rentr\",\n  \"rentrera\": \"rentr\",\n  \"rentrerai\": \"rentr\",\n  \"rentrèrent\": \"rentr\",\n  \"rentrerez\": \"rentr\",\n  \"rentrés\": \"rentr\",\n  \"rentrons\": \"rentron\",\n  \"renverra\": \"renverr\",\n  \"renverraient\": \"renverr\",\n  \"renverrez\": \"renverr\",\n  \"renverrons\": \"renverron\",\n  \"renversa\": \"renvers\",\n  \"renversant\": \"renvers\",\n  \"renverse\": \"renvers\",\n  \"renversé\": \"renvers\",\n  \"renversée\": \"renvers\",\n  \"renversement\": \"renvers\",\n  \"renverser\": \"renvers\",\n  \"renverseront\": \"renvers\",\n  \"renvoie\": \"renvoi\",\n  \"renvoya\": \"renvoi\",\n  \"renvoyait\": \"renvoi\",\n  \"renvoyant\": \"renvoi\",\n  \"renvoyé\": \"renvoi\",\n  \"renvoyée\": \"renvoi\",\n  \"renvoyer\": \"renvoi\",\n  \"renvoyèrent\": \"renvoi\",\n  \"renvoyez\": \"renvoi\",\n  \"renvoyiez\": \"renvoi\",\n  \"renvoyons\": \"renvoyon\",\n  \"renza\": \"renz\",\n  \"repaire\": \"repair\",\n  \"répandaient\": \"répand\",\n  \"répandait\": \"répand\",\n  \"répandant\": \"répand\",\n  \"répandent\": \"répandent\",\n  \"répandit\": \"répand\",\n  \"répandît\": \"répand\",\n  \"répandrait\": \"répandr\",\n  \"répandre\": \"répandr\",\n  \"répandu\": \"répandu\",\n  \"répandue\": \"répandu\",\n  \"répandues\": \"répandu\",\n  \"reparaissaient\": \"reparaiss\",\n  \"reparaissait\": \"reparaiss\",\n  \"reparaîtra\": \"reparaîtr\",\n  \"reparaîtrai\": \"reparaîtr\",\n  \"reparaîtrait\": \"reparaîtr\",\n  \"reparaître\": \"reparaîtr\",\n  \"reparaîtrons\": \"reparaîtron\",\n  \"réparation\": \"répar\",\n  \"réparations\": \"répar\",\n  \"réparée\": \"répar\",\n  \"réparent\": \"réparent\",\n  \"réparer\": \"répar\",\n  \"répareraient\": \"répar\",\n  \"réparerait\": \"répar\",\n  \"répareras\": \"répar\",\n  \"reparlait\": \"reparl\",\n  \"repartaient\": \"repart\",\n  \"reparti\": \"repart\",\n  \"repartie\": \"repart\",\n  \"reparties\": \"repart\",\n  \"repartir\": \"repart\",\n  \"repartirent\": \"repart\",\n  \"repartit\": \"repart\",\n  \"répartition\": \"répartit\",\n  \"repartons\": \"reparton\",\n  \"reparu\": \"reparu\",\n  \"reparurent\": \"reparurent\",\n  \"reparut\": \"reparut\",\n  \"repas\": \"rep\",\n  \"repassa\": \"repass\",\n  \"repassai\": \"repass\",\n  \"repassait\": \"repass\",\n  \"repassant\": \"repass\",\n  \"repasser\": \"repass\",\n  \"repasserait\": \"repass\",\n  \"repens\": \"repen\",\n  \"repensant\": \"repens\",\n  \"repenser\": \"repens\",\n  \"repentie\": \"repent\",\n  \"repentir\": \"repent\",\n  \"reperdre\": \"reperdr\",\n  \"répéta\": \"répet\",\n  \"répétaient\": \"répet\",\n  \"répétait\": \"répet\",\n  \"répétant\": \"répet\",\n  \"répétât\": \"répet\",\n  \"répète\": \"répet\",\n  \"répété\": \"répet\",\n  \"répétée\": \"répet\",\n  \"répétées\": \"répet\",\n  \"répètent\": \"répètent\",\n  \"repeter\": \"repet\",\n  \"répéter\": \"répet\",\n  \"répétera\": \"répet\",\n  \"répéterai\": \"répet\",\n  \"répéterait\": \"répet\",\n  \"répéterons\": \"répet\",\n  \"répéteront\": \"répet\",\n  \"répétez\": \"répet\",\n  \"répétions\": \"répet\",\n  \"répétiteur\": \"répétiteur\",\n  \"répit\": \"rep\",\n  \"replaça\": \"replac\",\n  \"replaçant\": \"replac\",\n  \"replacer\": \"replac\",\n  \"repliée\": \"repli\",\n  \"replièrent\": \"repli\",\n  \"répliqua\": \"répliqu\",\n  \"répliquait\": \"répliqu\",\n  \"réplique\": \"répliqu\",\n  \"répliquer\": \"répliqu\",\n  \"répliquerai\": \"répliqu\",\n  \"répliques\": \"répliqu\",\n  \"replis\": \"repl\",\n  \"répond\": \"répond\",\n  \"répondaient\": \"répond\",\n  \"répondais\": \"répond\",\n  \"répondait\": \"répond\",\n  \"répondant\": \"répond\",\n  \"répondez\": \"répond\",\n  \"répondiez\": \"répond\",\n  \"répondirent\": \"répond\",\n  \"répondit\": \"répond\",\n  \"répondît\": \"répond\",\n  \"répondra\": \"répondr\",\n  \"répondrai\": \"répondr\",\n  \"répondrais\": \"répondr\",\n  \"répondrait\": \"répondr\",\n  \"répondras\": \"répondr\",\n  \"répondre\": \"répondr\",\n  \"répondrez\": \"répondr\",\n  \"réponds\": \"répond\",\n  \"répondu\": \"répondu\",\n  \"réponse\": \"répons\",\n  \"réponses\": \"répons\",\n  \"reportant\": \"report\",\n  \"reporté\": \"report\",\n  \"reporters\": \"reporter\",\n  \"repos\": \"repos\",\n  \"reposa\": \"repos\",\n  \"reposait\": \"repos\",\n  \"repose\": \"repos\",\n  \"reposé\": \"repos\",\n  \"reposer\": \"repos\",\n  \"reposera\": \"repos\",\n  \"reposoir\": \"reposoir\",\n  \"reposoirs\": \"reposoir\",\n  \"repoussa\": \"repouss\",\n  \"repoussais\": \"repouss\",\n  \"repoussait\": \"repouss\",\n  \"repoussant\": \"repouss\",\n  \"repousse\": \"repouss\",\n  \"repoussé\": \"repouss\",\n  \"repoussée\": \"repouss\",\n  \"repoussées\": \"repouss\",\n  \"repousser\": \"repouss\",\n  \"repousserait\": \"repouss\",\n  \"repoussés\": \"repouss\",\n  \"repoussez\": \"repouss\",\n  \"reprenaient\": \"repren\",\n  \"reprenait\": \"repren\",\n  \"reprenant\": \"repren\",\n  \"reprend\": \"reprend\",\n  \"reprendra\": \"reprendr\",\n  \"reprendrai\": \"reprendr\",\n  \"reprendrait\": \"reprendr\",\n  \"reprendre\": \"reprendr\",\n  \"reprendrons\": \"reprendron\",\n  \"reprends\": \"reprend\",\n  \"reprenez\": \"repren\",\n  \"représenta\": \"représent\",\n  \"représentaient\": \"représent\",\n  \"représentait\": \"représent\",\n  \"représentant\": \"représent\",\n  \"représentation\": \"représent\",\n  \"representations\": \"represent\",\n  \"représentations\": \"représent\",\n  \"représente\": \"représent\",\n  \"représenté\": \"représent\",\n  \"représenter\": \"représent\",\n  \"réprimande\": \"réprimand\",\n  \"réprimer\": \"réprim\",\n  \"reprirent\": \"repr\",\n  \"repris\": \"repr\",\n  \"reprise\": \"repris\",\n  \"reprises\": \"repris\",\n  \"reprit\": \"repr\",\n  \"reprît\": \"repr\",\n  \"reprocha\": \"reproch\",\n  \"reprochaient\": \"reproch\",\n  \"reprochait\": \"reproch\",\n  \"reprochant\": \"reproch\",\n  \"reproche\": \"reproch\",\n  \"reproché\": \"reproch\",\n  \"reprochée\": \"reproch\",\n  \"reprocher\": \"reproch\",\n  \"reprochera\": \"reproch\",\n  \"reprocherai\": \"reproch\",\n  \"reprocherais\": \"reproch\",\n  \"reproches\": \"reproch\",\n  \"reprochons\": \"reprochon\",\n  \"reproduire\": \"reproduir\",\n  \"reproduisait\": \"reproduis\",\n  \"reproduisent\": \"reproduisent\",\n  \"reproduisirent\": \"reproduis\",\n  \"reproduisit\": \"reproduis\",\n  \"reproduit\": \"reproduit\",\n  \"reprouvez\": \"reprouv\",\n  \"reptation\": \"reptat\",\n  \"reptiles\": \"reptil\",\n  \"républicain\": \"républicain\",\n  \"républicains\": \"républicain\",\n  \"republican\": \"republican\",\n  \"république\": \"républ\",\n  \"républiques\": \"républ\",\n  \"répudié\": \"répudi\",\n  \"répugnait\": \"répugn\",\n  \"répugnance\": \"répugn\",\n  \"réputation\": \"réput\",\n  \"réputations\": \"réput\",\n  \"requiers\": \"requi\",\n  \"requise\": \"requis\",\n  \"réquisitionnaire\": \"réquisitionnair\",\n  \"rescousse\": \"rescouss\",\n  \"rescrit\": \"rescr\",\n  \"réseau\": \"réseau\",\n  \"resegon\": \"resegon\",\n  \"resembleth\": \"resembleth\",\n  \"réserva\": \"réserv\",\n  \"réservait\": \"réserv\",\n  \"réserve\": \"réserv\",\n  \"réservé\": \"réserv\",\n  \"réservée\": \"réserv\",\n  \"réservées\": \"réserv\",\n  \"réserver\": \"réserv\",\n  \"réserves\": \"réserv\",\n  \"réservés\": \"réserv\",\n  \"réservoir\": \"réservoir\",\n  \"résidais\": \"résid\",\n  \"résidait\": \"résid\",\n  \"résidence\": \"résident\",\n  \"résigna\": \"résign\",\n  \"résignation\": \"résign\",\n  \"résigné\": \"résign\",\n  \"résignée\": \"résign\",\n  \"résigner\": \"résign\",\n  \"résines\": \"résin\",\n  \"résista\": \"résist\",\n  \"résistaient\": \"résist\",\n  \"résistait\": \"résist\",\n  \"résistance\": \"résist\",\n  \"résistant\": \"résist\",\n  \"résiste\": \"résist\",\n  \"résister\": \"résist\",\n  \"résisterez\": \"résist\",\n  \"résistes\": \"résist\",\n  \"résolu\": \"résolu\",\n  \"résolue\": \"résolu\",\n  \"résolues\": \"résolu\",\n  \"résolument\": \"résolu\",\n  \"résolurent\": \"résolurent\",\n  \"résolut\": \"résolut\",\n  \"résolution\": \"résolu\",\n  \"résolutions\": \"résolu\",\n  \"résonnaient\": \"réson\",\n  \"résoudre\": \"résoudr\",\n  \"respect\": \"respect\",\n  \"respecta\": \"respect\",\n  \"respectable\": \"respect\",\n  \"respectables\": \"respect\",\n  \"respectais\": \"respect\",\n  \"respectait\": \"respect\",\n  \"respectant\": \"respect\",\n  \"respectante\": \"respect\",\n  \"respecte\": \"respect\",\n  \"respecté\": \"respect\",\n  \"respecter\": \"respect\",\n  \"respecterais\": \"respect\",\n  \"respectés\": \"respect\",\n  \"respective\": \"respect\",\n  \"respects\": \"respect\",\n  \"respectueuse\": \"respectu\",\n  \"respectueusement\": \"respectu\",\n  \"respectueuses\": \"respectu\",\n  \"respectueux\": \"respectu\",\n  \"respira\": \"resp\",\n  \"respiraient\": \"resp\",\n  \"respirait\": \"resp\",\n  \"respirant\": \"respir\",\n  \"respiration\": \"respir\",\n  \"respire\": \"respir\",\n  \"respirer\": \"respir\",\n  \"respirerai\": \"respir\",\n  \"respirons\": \"resp\",\n  \"resplendissant\": \"resplend\",\n  \"resplendissante\": \"resplend\",\n  \"resplendissent\": \"resplend\",\n  \"responsable\": \"respons\",\n  \"ressemblaient\": \"ressembl\",\n  \"ressemblait\": \"ressembl\",\n  \"ressemblance\": \"ressembl\",\n  \"ressemblant\": \"ressembl\",\n  \"ressemblât\": \"ressembl\",\n  \"ressemble\": \"ressembl\",\n  \"ressemblé\": \"ressembl\",\n  \"ressemblent\": \"ressemblent\",\n  \"ressembler\": \"ressembl\",\n  \"ressemblera\": \"ressembl\",\n  \"ressemblez\": \"ressembl\",\n  \"ressens\": \"ressen\",\n  \"ressentait\": \"ressent\",\n  \"ressentir\": \"ressent\",\n  \"ressentit\": \"ressent\",\n  \"resserré\": \"resserr\",\n  \"ressort\": \"ressort\",\n  \"ressorti\": \"ressort\",\n  \"ressortir\": \"ressort\",\n  \"ressorts\": \"ressort\",\n  \"ressource\": \"ressourc\",\n  \"ressources\": \"ressourc\",\n  \"ressuscité\": \"ressusc\",\n  \"ressuscitèrent\": \"ressuscit\",\n  \"resta\": \"rest\",\n  \"restai\": \"rest\",\n  \"restaient\": \"rest\",\n  \"restait\": \"rest\",\n  \"restant\": \"rest\",\n  \"restassent\": \"rest\",\n  \"restât\": \"rest\",\n  \"restaurant\": \"restaur\",\n  \"restaurants\": \"restaur\",\n  \"restauration\": \"restaur\",\n  \"restaurations\": \"restaur\",\n  \"restauré\": \"restaur\",\n  \"reste\": \"rest\",\n  \"resté\": \"rest\",\n  \"restée\": \"rest\",\n  \"restées\": \"rest\",\n  \"restent\": \"restent\",\n  \"rester\": \"rest\",\n  \"restera\": \"rest\",\n  \"resterai\": \"rest\",\n  \"resteraient\": \"rest\",\n  \"resterais\": \"rest\",\n  \"resterait\": \"rest\",\n  \"resteras\": \"rest\",\n  \"restèrent\": \"rest\",\n  \"resterez\": \"rest\",\n  \"resteront\": \"rest\",\n  \"restes\": \"rest\",\n  \"restés\": \"rest\",\n  \"restez\": \"rest\",\n  \"restiez\": \"rest\",\n  \"restitué\": \"restitu\",\n  \"restituée\": \"restitu\",\n  \"restituit\": \"restituit\",\n  \"restitution\": \"restitu\",\n  \"restriction\": \"restrict\",\n  \"résultait\": \"résult\",\n  \"résultat\": \"résultat\",\n  \"résultats\": \"résultat\",\n  \"résumait\": \"résum\",\n  \"résumé\": \"résum\",\n  \"résumer\": \"résum\",\n  \"résumons\": \"résumon\",\n  \"résurrection\": \"résurrect\",\n  \"rétabli\": \"rétabl\",\n  \"rétablie\": \"rétabl\",\n  \"rétablir\": \"rétabl\",\n  \"rétabliras\": \"rétabl\",\n  \"rétablissait\": \"rétabl\",\n  \"rétablissement\": \"rétabl\",\n  \"rétablit\": \"rétabl\",\n  \"retard\": \"retard\",\n  \"retardait\": \"retard\",\n  \"retardant\": \"retard\",\n  \"retardataire\": \"retardatair\",\n  \"retarde\": \"retard\",\n  \"retardé\": \"retard\",\n  \"retardée\": \"retard\",\n  \"retardent\": \"retardent\",\n  \"retarder\": \"retard\",\n  \"retardez\": \"retard\",\n  \"retards\": \"retard\",\n  \"retenaient\": \"reten\",\n  \"retenait\": \"reten\",\n  \"retenant\": \"reten\",\n  \"retenez\": \"reten\",\n  \"retenir\": \"reten\",\n  \"retenti\": \"retent\",\n  \"retentir\": \"retent\",\n  \"retentiraient\": \"retent\",\n  \"retentirait\": \"retent\",\n  \"retentirent\": \"retent\",\n  \"retentissaient\": \"retent\",\n  \"retentissait\": \"retent\",\n  \"retentissant\": \"retent\",\n  \"retentissement\": \"retent\",\n  \"retentit\": \"retent\",\n  \"retenu\": \"retenu\",\n  \"retenue\": \"retenu\",\n  \"retenues\": \"retenu\",\n  \"retenus\": \"retenus\",\n  \"retiendrai\": \"retiendr\",\n  \"retienne\": \"retien\",\n  \"retiennent\": \"retiennent\",\n  \"retient\": \"retient\",\n  \"retinrent\": \"retinrent\",\n  \"retint\": \"retint\",\n  \"retira\": \"ret\",\n  \"retiraient\": \"ret\",\n  \"retirait\": \"ret\",\n  \"retirant\": \"retir\",\n  \"retirât\": \"retir\",\n  \"retire\": \"retir\",\n  \"retiré\": \"retir\",\n  \"retirée\": \"retir\",\n  \"retirées\": \"retir\",\n  \"retirer\": \"retir\",\n  \"retirerais\": \"retir\",\n  \"retirerait\": \"retir\",\n  \"retirèrent\": \"retir\",\n  \"retirerez\": \"retir\",\n  \"retirés\": \"retir\",\n  \"retirez\": \"ret\",\n  \"retirons\": \"ret\",\n  \"retomba\": \"retomb\",\n  \"retombait\": \"retomb\",\n  \"retombant\": \"retomb\",\n  \"retombe\": \"retomb\",\n  \"retombée\": \"retomb\",\n  \"retomber\": \"retomb\",\n  \"retomberait\": \"retomb\",\n  \"retombes\": \"retomb\",\n  \"retour\": \"retour\",\n  \"retourna\": \"retourn\",\n  \"retournaient\": \"retourn\",\n  \"retournait\": \"retourn\",\n  \"retournant\": \"retourn\",\n  \"retourne\": \"retourn\",\n  \"retourné\": \"retourn\",\n  \"retourner\": \"retourn\",\n  \"retournèrent\": \"retourn\",\n  \"retournez\": \"retourn\",\n  \"retracer\": \"retrac\",\n  \"rétracte\": \"rétract\",\n  \"retraite\": \"retrait\",\n  \"retraites\": \"retrait\",\n  \"retrancher\": \"retranch\",\n  \"retranchés\": \"retranch\",\n  \"rétréci\": \"rétrec\",\n  \"rétrécir\": \"rétrec\",\n  \"rétrécissait\": \"rétrec\",\n  \"retrempait\": \"retremp\",\n  \"retrempé\": \"retremp\",\n  \"rétribution\": \"rétribu\",\n  \"rétrospectif\": \"rétrospect\",\n  \"retrouva\": \"retrouv\",\n  \"retrouvaient\": \"retrouv\",\n  \"retrouvait\": \"retrouv\",\n  \"retrouvant\": \"retrouv\",\n  \"retrouvât\": \"retrouv\",\n  \"retrouve\": \"retrouv\",\n  \"retrouvé\": \"retrouv\",\n  \"retrouvée\": \"retrouv\",\n  \"retrouver\": \"retrouv\",\n  \"retrouvera\": \"retrouv\",\n  \"retrouverai\": \"retrouv\",\n  \"retrouvèrent\": \"retrouv\",\n  \"retrouverez\": \"retrouv\",\n  \"retrouverons\": \"retrouv\",\n  \"retz\": \"retz\",\n  \"réuni\": \"réun\",\n  \"réunie\": \"réun\",\n  \"réunies\": \"réun\",\n  \"réunion\": \"réunion\",\n  \"réunir\": \"réun\",\n  \"réunirent\": \"réun\",\n  \"réuniront\": \"réun\",\n  \"réunis\": \"réun\",\n  \"réunissaient\": \"réun\",\n  \"réunissait\": \"réun\",\n  \"réunissant\": \"réun\",\n  \"réunissent\": \"réun\",\n  \"réunissez\": \"réun\",\n  \"réunit\": \"réun\",\n  \"réussi\": \"réuss\",\n  \"réussir\": \"réuss\",\n  \"réussirais\": \"réuss\",\n  \"réussis\": \"réuss\",\n  \"réussissait\": \"réuss\",\n  \"réussissez\": \"réuss\",\n  \"réussit\": \"réuss\",\n  \"réussite\": \"réussit\",\n  \"rêva\": \"rêv\",\n  \"rêvait\": \"rêv\",\n  \"revanche\": \"revanch\",\n  \"rêvant\": \"rêv\",\n  \"revaudrai\": \"revaudr\",\n  \"rêve\": \"rêv\",\n  \"rêvé\": \"rêv\",\n  \"réveil\": \"réveil\",\n  \"réveilla\": \"réveil\",\n  \"réveillait\": \"réveil\",\n  \"réveillant\": \"réveil\",\n  \"réveillât\": \"réveil\",\n  \"réveille\": \"réveil\",\n  \"réveillé\": \"réveil\",\n  \"réveillée\": \"réveil\",\n  \"réveiller\": \"réveil\",\n  \"réveillèrent\": \"réveil\",\n  \"réveillés\": \"réveil\",\n  \"révéla\": \"rével\",\n  \"révélait\": \"rével\",\n  \"révélation\": \"rével\",\n  \"révélé\": \"rével\",\n  \"révéler\": \"rével\",\n  \"revenaient\": \"reven\",\n  \"revenait\": \"reven\",\n  \"revenant\": \"reven\",\n  \"revendeur\": \"revendeur\",\n  \"revendre\": \"revendr\",\n  \"revenez\": \"reven\",\n  \"revenir\": \"reven\",\n  \"revenons\": \"revenon\",\n  \"revenu\": \"revenu\",\n  \"revenue\": \"revenu\",\n  \"revenus\": \"revenus\",\n  \"rêver\": \"rêv\",\n  \"révéré\": \"réver\",\n  \"révérence\": \"révérent\",\n  \"révérences\": \"révérent\",\n  \"révérencieuses\": \"révérenci\",\n  \"révérend\": \"révérend\",\n  \"révérendissime\": \"révérendissim\",\n  \"rêverie\": \"rêver\",\n  \"rêveries\": \"rêver\",\n  \"reverrai\": \"reverr\",\n  \"reverrais\": \"reverr\",\n  \"reverrait\": \"reverr\",\n  \"reverrez\": \"reverr\",\n  \"reverrons\": \"reverron\",\n  \"reverront\": \"reverront\",\n  \"revers\": \"rever\",\n  \"rêves\": \"rêv\",\n  \"revêtir\": \"revêt\",\n  \"revêtu\": \"revêtu\",\n  \"revêtus\": \"revêtus\",\n  \"rêveur\": \"rêveur\",\n  \"rêveuse\": \"rêveux\",\n  \"rêvez\": \"rêv\",\n  \"reviendra\": \"reviendr\",\n  \"reviendrai\": \"reviendr\",\n  \"reviendrais\": \"reviendr\",\n  \"reviendrait\": \"reviendr\",\n  \"reviendrez\": \"reviendr\",\n  \"reviendront\": \"reviendront\",\n  \"revienne\": \"revien\",\n  \"reviennent\": \"reviennent\",\n  \"reviens\": \"revien\",\n  \"revient\": \"revient\",\n  \"review\": \"review\",\n  \"revinrent\": \"revinrent\",\n  \"revinssent\": \"revinssent\",\n  \"revint\": \"revint\",\n  \"revirement\": \"revir\",\n  \"revirent\": \"rev\",\n  \"revissent\": \"rev\",\n  \"revit\": \"rev\",\n  \"revivaient\": \"reviv\",\n  \"revoie\": \"revoi\",\n  \"revoies\": \"revoi\",\n  \"revoir\": \"revoir\",\n  \"revois\": \"revois\",\n  \"révolta\": \"révolt\",\n  \"révoltante\": \"révolt\",\n  \"révoltantes\": \"révolt\",\n  \"révoltât\": \"révolt\",\n  \"révolte\": \"révolt\",\n  \"révolté\": \"révolt\",\n  \"révoltée\": \"révolt\",\n  \"révolter\": \"révolt\",\n  \"révolues\": \"révolu\",\n  \"révolus\": \"révolus\",\n  \"révolution\": \"révolu\",\n  \"révolutionnaire\": \"révolutionnair\",\n  \"révolutionnaires\": \"révolutionnair\",\n  \"révolutions\": \"révolu\",\n  \"revolver\": \"revolv\",\n  \"revolvers\": \"revolver\",\n  \"révoquée\": \"révoqu\",\n  \"révoquerai\": \"révoqu\",\n  \"révoquerez\": \"révoqu\",\n  \"revoyait\": \"revoi\",\n  \"revoyant\": \"revoi\",\n  \"revu\": \"revu\",\n  \"revue\": \"revu\",\n  \"revues\": \"revu\",\n  \"rez\": \"rez\",\n  \"rhin\": \"rhin\",\n  \"rhône\": \"rhôn\",\n  \"rhubarbe\": \"rhubarb\",\n  \"rhume\": \"rhum\",\n  \"ri\": \"ri\",\n  \"riaient\": \"ri\",\n  \"riais\": \"ri\",\n  \"riait\": \"ri\",\n  \"riant\": \"ri\",\n  \"riante\": \"ri\",\n  \"riants\": \"ri\",\n  \"ricanant\": \"rican\",\n  \"ricanement\": \"rican\",\n  \"ricciarda\": \"ricciard\",\n  \"richards\": \"richard\",\n  \"riche\": \"rich\",\n  \"richelieu\": \"richelieu\",\n  \"richement\": \"rich\",\n  \"richemond\": \"richemond\",\n  \"riches\": \"rich\",\n  \"richesse\": \"richess\",\n  \"richesses\": \"richess\",\n  \"richissime\": \"richissim\",\n  \"rideau\": \"rideau\",\n  \"rideaux\": \"rideau\",\n  \"rides\": \"rid\",\n  \"ridicule\": \"ridicul\",\n  \"ridicules\": \"ridicul\",\n  \"rie\": \"ri\",\n  \"rien\": \"rien\",\n  \"riens\": \"rien\",\n  \"rient\": \"rient\",\n  \"rienzi\": \"rienz\",\n  \"rigides\": \"rigid\",\n  \"rigoureuse\": \"rigour\",\n  \"rigoureusement\": \"rigour\",\n  \"rigoureux\": \"rigour\",\n  \"rigueur\": \"rigueur\",\n  \"rigueurs\": \"rigueur\",\n  \"rimailleur\": \"rimailleur\",\n  \"rimes\": \"rim\",\n  \"rios\": \"rios\",\n  \"riposta\": \"ripost\",\n  \"ripostaient\": \"ripost\",\n  \"rire\": \"rir\",\n  \"rires\": \"rir\",\n  \"ris\": \"ris\",\n  \"riscara\": \"riscar\",\n  \"risqua\": \"risqu\",\n  \"risquaient\": \"risqu\",\n  \"risque\": \"risqu\",\n  \"risqué\": \"risqu\",\n  \"risquer\": \"risqu\",\n  \"risquerai\": \"risqu\",\n  \"risques\": \"risqu\",\n  \"risquiez\": \"risqu\",\n  \"risquons\": \"risquon\",\n  \"rit\": \"rit\",\n  \"rît\": \"rît\",\n  \"ritournelle\": \"ritournel\",\n  \"riva\": \"riv\",\n  \"rivage\": \"rivag\",\n  \"rival\": \"rival\",\n  \"rivale\": \"rival\",\n  \"rivales\": \"rival\",\n  \"rivalité\": \"rival\",\n  \"rivarol\": \"rivarol\",\n  \"rivaux\": \"rival\",\n  \"rive\": \"riv\",\n  \"river\": \"riv\",\n  \"riverisco\": \"riverisco\",\n  \"rives\": \"riv\",\n  \"rivière\": \"rivi\",\n  \"rivières\": \"rivi\",\n  \"rivoli\": \"rivol\",\n  \"riz\": \"riz\",\n  \"rizières\": \"rizi\",\n  \"road\": \"road\",\n  \"roads\": \"road\",\n  \"roastbeef\": \"roastbeef\",\n  \"robe\": \"rob\",\n  \"robert\": \"robert\",\n  \"robes\": \"rob\",\n  \"robespierre\": \"robespierr\",\n  \"robre\": \"robr\",\n  \"robres\": \"robr\",\n  \"robuste\": \"robust\",\n  \"robustes\": \"robust\",\n  \"roc\": \"roc\",\n  \"roch\": \"roch\",\n  \"rocher\": \"roch\",\n  \"rochers\": \"rocher\",\n  \"roches\": \"roch\",\n  \"rocheuses\": \"rocheux\",\n  \"rock\": \"rock\",\n  \"rocky\": \"rocky\",\n  \"roclin\": \"roclin\",\n  \"rôdait\": \"rôd\",\n  \"rôdant\": \"rôd\",\n  \"rôder\": \"rôd\",\n  \"rogations\": \"rogat\",\n  \"rogné\": \"rogn\",\n  \"rognure\": \"rognur\",\n  \"rogue\": \"rogu\",\n  \"roguerie\": \"roguer\",\n  \"roi\": \"roi\",\n  \"rois\": \"rois\",\n  \"roiville\": \"roivill\",\n  \"roland\": \"roland\",\n  \"rôle\": \"rôl\",\n  \"rôles\": \"rôl\",\n  \"romagnan\": \"romagnan\",\n  \"romagnano\": \"romagnano\",\n  \"romagne\": \"romagn\",\n  \"romain\": \"romain\",\n  \"romaine\": \"romain\",\n  \"romains\": \"romain\",\n  \"roman\": \"roman\",\n  \"romanesque\": \"romanesqu\",\n  \"romanesques\": \"romanesqu\",\n  \"romans\": \"roman\",\n  \"rome\": \"rom\",\n  \"rompe\": \"romp\",\n  \"rompez\": \"romp\",\n  \"rompit\": \"romp\",\n  \"rompre\": \"rompr\",\n  \"rompt\": \"rompt\",\n  \"rompu\": \"rompu\",\n  \"rompus\": \"rompus\",\n  \"ronces\": \"ronc\",\n  \"ronceux\": \"ronceux\",\n  \"rond\": \"rond\",\n  \"ronde\": \"rond\",\n  \"rondement\": \"rond\",\n  \"rondes\": \"rond\",\n  \"ronds\": \"rond\",\n  \"ronflait\": \"ronfl\",\n  \"ronflantes\": \"ronfl\",\n  \"ronfle\": \"ronfl\",\n  \"ronflement\": \"ronfl\",\n  \"ronflements\": \"ronfl\",\n  \"rongeait\": \"rong\",\n  \"ronsard\": \"ronsard\",\n  \"room\": \"room\",\n  \"rooms\": \"room\",\n  \"rose\": \"ros\",\n  \"roseau\": \"roseau\",\n  \"roseaux\": \"roseau\",\n  \"rosée\": \"ros\",\n  \"roses\": \"ros\",\n  \"rosier\": \"rosi\",\n  \"rosiers\": \"rosi\",\n  \"rosse\": \"ross\",\n  \"rossé\": \"ross\",\n  \"rosses\": \"ross\",\n  \"rossini\": \"rossin\",\n  \"rothal\": \"rothal\",\n  \"rothschild\": \"rothschild\",\n  \"rôti\": \"rôt\",\n  \"rôtie\": \"rôt\",\n  \"rôties\": \"rôt\",\n  \"rotrou\": \"rotrou\",\n  \"roue\": \"rou\",\n  \"roué\": \"rou\",\n  \"rouer\": \"rou\",\n  \"roueries\": \"rouer\",\n  \"roues\": \"rou\",\n  \"rouffles\": \"rouffl\",\n  \"rouge\": \"roug\",\n  \"rougeâtre\": \"rougeâtr\",\n  \"rouges\": \"roug\",\n  \"rougeur\": \"rougeur\",\n  \"rougi\": \"roug\",\n  \"rougir\": \"roug\",\n  \"rougira\": \"roug\",\n  \"rougirait\": \"roug\",\n  \"rougissait\": \"roug\",\n  \"rougissant\": \"roug\",\n  \"rougit\": \"roug\",\n  \"rouille\": \"rouill\",\n  \"rouillé\": \"rouill\",\n  \"roula\": \"roul\",\n  \"roulaient\": \"roul\",\n  \"roulait\": \"roul\",\n  \"roulant\": \"roul\",\n  \"roule\": \"roul\",\n  \"rouleau\": \"rouleau\",\n  \"roulement\": \"roul\",\n  \"roulèrent\": \"roul\",\n  \"roulis\": \"roul\",\n  \"rousseau\": \"rousseau\",\n  \"route\": \"rout\",\n  \"routes\": \"rout\",\n  \"rouvert\": \"rouvert\",\n  \"rouvray\": \"rouvray\",\n  \"rouvrit\": \"rouvr\",\n  \"rovere\": \"rover\",\n  \"rovère\": \"rover\",\n  \"row\": \"row\",\n  \"rowan\": \"rowan\",\n  \"royal\": \"royal\",\n  \"royale\": \"royal\",\n  \"royaliste\": \"royal\",\n  \"royalistes\": \"royal\",\n  \"royaume\": \"royaum\",\n  \"ruban\": \"ruban\",\n  \"rubempré\": \"rubempr\",\n  \"rubigneau\": \"rubigneau\",\n  \"rude\": \"rud\",\n  \"rudement\": \"rud\",\n  \"rudes\": \"rud\",\n  \"rudesse\": \"rudess\",\n  \"rue\": \"ru\",\n  \"rues\": \"ru\",\n  \"ruga\": \"rug\",\n  \"rugissements\": \"rug\",\n  \"ruina\": \"ruin\",\n  \"ruinait\": \"ruin\",\n  \"ruine\": \"ruin\",\n  \"ruiné\": \"ruin\",\n  \"ruinée\": \"ruin\",\n  \"ruinées\": \"ruin\",\n  \"ruinent\": \"ruinent\",\n  \"ruiner\": \"ruin\",\n  \"ruines\": \"ruin\",\n  \"ruinés\": \"ruin\",\n  \"ruineux\": \"ruineux\",\n  \"ruinez\": \"ruin\",\n  \"ruisseau\": \"ruisseau\",\n  \"ruisseaux\": \"ruisseau\",\n  \"ruminait\": \"rumin\",\n  \"ruminants\": \"rumin\",\n  \"rupture\": \"ruptur\",\n  \"rus\": \"rus\",\n  \"rusca\": \"rusc\",\n  \"ruse\": \"rus\",\n  \"rusé\": \"rus\",\n  \"russe\": \"russ\",\n  \"russell\": \"russel\",\n  \"russes\": \"russ\",\n  \"russie\": \"russ\",\n  \"s\": \"s\",\n  \"sa\": \"sa\",\n  \"sablé\": \"sabl\",\n  \"sablées\": \"sabl\",\n  \"sabre\": \"sabr\",\n  \"sabré\": \"sabr\",\n  \"sabrer\": \"sabr\",\n  \"sabres\": \"sabr\",\n  \"sabrés\": \"sabr\",\n  \"sac\": \"sac\",\n  \"sacca\": \"sacc\",\n  \"saccadés\": \"saccad\",\n  \"sachant\": \"sach\",\n  \"sache\": \"sach\",\n  \"saches\": \"sach\",\n  \"sachez\": \"sach\",\n  \"sachiez\": \"sach\",\n  \"sachons\": \"sachon\",\n  \"sacramentelle\": \"sacramentel\",\n  \"sacramento\": \"sacramento\",\n  \"sacre\": \"sacr\",\n  \"sacré\": \"sacr\",\n  \"sacrédié\": \"sacrédi\",\n  \"sacrée\": \"sacr\",\n  \"sacrées\": \"sacr\",\n  \"sacrement\": \"sacr\",\n  \"sacrements\": \"sacr\",\n  \"sacrés\": \"sacr\",\n  \"sacrifiait\": \"sacrifi\",\n  \"sacrifiant\": \"sacrifi\",\n  \"sacrifice\": \"sacrific\",\n  \"sacrifices\": \"sacrific\",\n  \"sacrifie\": \"sacrif\",\n  \"sacrifié\": \"sacrifi\",\n  \"sacrifiées\": \"sacrifi\",\n  \"sacrifier\": \"sacrifi\",\n  \"sacrifierait\": \"sacrifi\",\n  \"sacrifiés\": \"sacrifi\",\n  \"sacrifiez\": \"sacrif\",\n  \"sacrilège\": \"sacrileg\",\n  \"sacristie\": \"sacrist\",\n  \"saddle\": \"saddl\",\n  \"sagacité\": \"sagac\",\n  \"sage\": \"sag\",\n  \"sagement\": \"sag\",\n  \"sages\": \"sag\",\n  \"sagesse\": \"sagess\",\n  \"sagoutiers\": \"sagouti\",\n  \"saïd\": \"saïd\",\n  \"saigna\": \"saign\",\n  \"saignait\": \"saign\",\n  \"saigné\": \"saign\",\n  \"saignées\": \"saign\",\n  \"saigner\": \"saign\",\n  \"saillant\": \"saill\",\n  \"saillante\": \"saill\",\n  \"saillantes\": \"saill\",\n  \"saillants\": \"saill\",\n  \"saillie\": \"saill\",\n  \"saillies\": \"saill\",\n  \"sain\": \"sain\",\n  \"sainclair\": \"sainclair\",\n  \"saine\": \"sain\",\n  \"sains\": \"sain\",\n  \"saint\": \"saint\",\n  \"sainte\": \"saint\",\n  \"saintes\": \"saint\",\n  \"sainteté\": \"saintet\",\n  \"saints\": \"saint\",\n  \"sais\": \"sais\",\n  \"saisi\": \"sais\",\n  \"saisie\": \"sais\",\n  \"saisines\": \"saisin\",\n  \"saisir\": \"sais\",\n  \"saisirais\": \"sais\",\n  \"saisirent\": \"sais\",\n  \"saisis\": \"sais\",\n  \"saisissait\": \"sais\",\n  \"saisissant\": \"sais\",\n  \"saisissante\": \"sais\",\n  \"saisissement\": \"sais\",\n  \"saisissez\": \"sais\",\n  \"saisit\": \"sais\",\n  \"saisîtes\": \"sais\",\n  \"saison\": \"saison\",\n  \"sait\": \"sait\",\n  \"saki\": \"sak\",\n  \"salaire\": \"salair\",\n  \"salanganes\": \"salangan\",\n  \"salcette\": \"salcet\",\n  \"sale\": \"sal\",\n  \"salé\": \"sal\",\n  \"salement\": \"sal\",\n  \"sales\": \"sal\",\n  \"saleté\": \"salet\",\n  \"salis\": \"sal\",\n  \"salle\": \"sall\",\n  \"salles\": \"sall\",\n  \"salomon\": \"salomon\",\n  \"salon\": \"salon\",\n  \"salons\": \"salon\",\n  \"salt\": \"salt\",\n  \"saltimbanques\": \"saltimbanqu\",\n  \"salua\": \"salu\",\n  \"saluaient\": \"salu\",\n  \"saluait\": \"salu\",\n  \"saluant\": \"salu\",\n  \"salue\": \"salu\",\n  \"salué\": \"salu\",\n  \"saluer\": \"salu\",\n  \"saluèrent\": \"salu\",\n  \"salure\": \"salur\",\n  \"salut\": \"salut\",\n  \"salutaire\": \"salutair\",\n  \"samedi\": \"samed\",\n  \"samedis\": \"samed\",\n  \"samuel\": \"samuel\",\n  \"san\": \"san\",\n  \"sancho\": \"sancho\",\n  \"sanctifie\": \"sanctif\",\n  \"sanctuaire\": \"sanctuair\",\n  \"sanctus\": \"sanctus\",\n  \"sandales\": \"sandal\",\n  \"sandolaro\": \"sandolaro\",\n  \"sandrino\": \"sandrino\",\n  \"sandy\": \"sandy\",\n  \"sang\": \"sang\",\n  \"sanglant\": \"sangl\",\n  \"sanglante\": \"sangl\",\n  \"sanglier\": \"sangli\",\n  \"sanglot\": \"sanglot\",\n  \"sanglotaient\": \"sanglot\",\n  \"sanglotant\": \"sanglot\",\n  \"sanglots\": \"sanglot\",\n  \"sangsues\": \"sangsu\",\n  \"sanguigna\": \"sanguign\",\n  \"sanguinaire\": \"sanguinair\",\n  \"sannazaro\": \"sannazaro\",\n  \"sans\": \"san\",\n  \"sanseverina\": \"sanseverin\",\n  \"santal\": \"santal\",\n  \"santé\": \"sant\",\n  \"saper\": \"sap\",\n  \"sapin\": \"sapin\",\n  \"sapins\": \"sapin\",\n  \"sarà\": \"sarà\",\n  \"saragosse\": \"saragoss\",\n  \"sarasine\": \"sarasin\",\n  \"sarcasmes\": \"sarcasm\",\n  \"sardonique\": \"sardon\",\n  \"sarono\": \"sarono\",\n  \"sat\": \"sat\",\n  \"satiété\": \"satiet\",\n  \"satin\": \"satin\",\n  \"satirique\": \"satir\",\n  \"satiriques\": \"satir\",\n  \"satisfaction\": \"satisfact\",\n  \"satisfaire\": \"satisfair\",\n  \"satisfaisant\": \"satisfais\",\n  \"satisfait\": \"satisf\",\n  \"satisfera\": \"satisf\",\n  \"saturaient\": \"satur\",\n  \"saturée\": \"satur\",\n  \"sauce\": \"sauc\",\n  \"saucisses\": \"sauc\",\n  \"sauders\": \"sauder\",\n  \"sauf\": \"sauf\",\n  \"saugrenues\": \"saugrenu\",\n  \"saule\": \"saul\",\n  \"saules\": \"saul\",\n  \"saura\": \"saur\",\n  \"saurai\": \"saur\",\n  \"sauraient\": \"saur\",\n  \"saurais\": \"saur\",\n  \"saurait\": \"saur\",\n  \"saurez\": \"saur\",\n  \"sauriez\": \"saur\",\n  \"saurons\": \"sauron\",\n  \"sauront\": \"sauront\",\n  \"saut\": \"saut\",\n  \"sauta\": \"saut\",\n  \"sautait\": \"saut\",\n  \"sautant\": \"saut\",\n  \"saute\": \"saut\",\n  \"sauté\": \"saut\",\n  \"sauter\": \"saut\",\n  \"sauterai\": \"saut\",\n  \"sauterait\": \"saut\",\n  \"sautèrent\": \"saut\",\n  \"sautés\": \"saut\",\n  \"sauteur\": \"sauteur\",\n  \"sauteuse\": \"sauteux\",\n  \"sautillant\": \"sautill\",\n  \"sautoir\": \"sautoir\",\n  \"sauts\": \"saut\",\n  \"sauva\": \"sauv\",\n  \"sauvage\": \"sauvag\",\n  \"sauvages\": \"sauvag\",\n  \"sauvait\": \"sauv\",\n  \"sauvant\": \"sauv\",\n  \"sauve\": \"sauv\",\n  \"sauvé\": \"sauv\",\n  \"sauvée\": \"sauv\",\n  \"sauvegarder\": \"sauvegard\",\n  \"sauvent\": \"sauvent\",\n  \"sauver\": \"sauv\",\n  \"sauvera\": \"sauv\",\n  \"sauverai\": \"sauv\",\n  \"sauveraient\": \"sauv\",\n  \"sauveront\": \"sauv\",\n  \"sauvés\": \"sauv\",\n  \"sauveur\": \"sauveur\",\n  \"sauveurs\": \"sauveur\",\n  \"sauvez\": \"sauv\",\n  \"sauvions\": \"sauvion\",\n  \"sauvons\": \"sauvon\",\n  \"savaient\": \"sav\",\n  \"savais\": \"sav\",\n  \"savait\": \"sav\",\n  \"savamment\": \"sav\",\n  \"savant\": \"sav\",\n  \"savante\": \"sav\",\n  \"savantes\": \"sav\",\n  \"savants\": \"sav\",\n  \"savent\": \"savent\",\n  \"saveur\": \"saveur\",\n  \"savez\": \"sav\",\n  \"saviez\": \"sav\",\n  \"saville\": \"savill\",\n  \"savoir\": \"savoir\",\n  \"savons\": \"savon\",\n  \"saxe\": \"sax\",\n  \"saxon\": \"saxon\",\n  \"saxons\": \"saxon\",\n  \"sbires\": \"sbir\",\n  \"scabreuses\": \"scabreux\",\n  \"scabreux\": \"scabreux\",\n  \"scagliola\": \"scagliol\",\n  \"scala\": \"scal\",\n  \"scalpent\": \"scalpent\",\n  \"scandale\": \"scandal\",\n  \"scandaleuse\": \"scandal\",\n  \"scandalisaient\": \"scandalis\",\n  \"scandalisé\": \"scandalis\",\n  \"scandalisée\": \"scandalis\",\n  \"scandalisera\": \"scandalis\",\n  \"scandalisés\": \"scandalis\",\n  \"scandinavie\": \"scandinav\",\n  \"sceau\": \"sceau\",\n  \"sceaux\": \"sceau\",\n  \"scélérat\": \"scélérat\",\n  \"scélératesse\": \"scélératess\",\n  \"scélérats\": \"scélérat\",\n  \"scellé\": \"scel\",\n  \"scène\": \"scen\",\n  \"scènes\": \"scen\",\n  \"schiller\": \"schill\",\n  \"schuyler\": \"schuyl\",\n  \"sciant\": \"sci\",\n  \"scie\": \"sci\",\n  \"scié\": \"sci\",\n  \"sciemment\": \"scient\",\n  \"science\": \"scienc\",\n  \"sciences\": \"scienc\",\n  \"scier\": \"sci\",\n  \"scierie\": \"scier\",\n  \"scies\": \"sci\",\n  \"scieur\": \"scieur\",\n  \"scintillants\": \"scintill\",\n  \"scintillations\": \"scintill\",\n  \"scotland\": \"scotland\",\n  \"scott\": \"scott\",\n  \"scotti\": \"scott\",\n  \"scrupule\": \"scrupul\",\n  \"scrupules\": \"scrupul\",\n  \"scrupuleuse\": \"scrupul\",\n  \"scrupuleusement\": \"scrupul\",\n  \"scrutateur\": \"scrutateur\",\n  \"sculptée\": \"sculpt\",\n  \"sculptées\": \"sculpt\",\n  \"sculptés\": \"sculpt\",\n  \"sculpteur\": \"sculpteur\",\n  \"sculpteurs\": \"sculpteur\",\n  \"se\": \"se\",\n  \"séance\": \"séanc\",\n  \"sec\": \"sec\",\n  \"secatore\": \"secator\",\n  \"sèche\": \"sech\",\n  \"séché\": \"sech\",\n  \"séchée\": \"sech\",\n  \"sèchement\": \"sech\",\n  \"sécher\": \"sech\",\n  \"sécheresse\": \"sécheress\",\n  \"sèches\": \"sech\",\n  \"second\": \"second\",\n  \"secondaient\": \"second\",\n  \"seconde\": \"second\",\n  \"secondé\": \"second\",\n  \"secondent\": \"secondent\",\n  \"seconderait\": \"second\",\n  \"secondes\": \"second\",\n  \"secoua\": \"secou\",\n  \"secouaient\": \"secou\",\n  \"secouait\": \"secou\",\n  \"secouant\": \"secou\",\n  \"secoue\": \"secou\",\n  \"secouée\": \"secou\",\n  \"secoués\": \"secou\",\n  \"secourable\": \"secour\",\n  \"secourez\": \"secour\",\n  \"secourir\": \"secour\",\n  \"secours\": \"secour\",\n  \"secouru\": \"secouru\",\n  \"secousse\": \"secouss\",\n  \"secousses\": \"secouss\",\n  \"secret\": \"secret\",\n  \"secrétaire\": \"secrétair\",\n  \"secrétaires\": \"secrétair\",\n  \"secrète\": \"secret\",\n  \"secrètement\": \"secret\",\n  \"secrètes\": \"secret\",\n  \"secrets\": \"secret\",\n  \"secs\": \"sec\",\n  \"sectaire\": \"sectair\",\n  \"sectateur\": \"sectateur\",\n  \"sectateurs\": \"sectateur\",\n  \"secte\": \"sect\",\n  \"section\": \"section\",\n  \"séculaires\": \"séculair\",\n  \"secundo\": \"secundo\",\n  \"sécurité\": \"sécur\",\n  \"sédentaire\": \"sédentair\",\n  \"sedgwick\": \"sedgwick\",\n  \"sediola\": \"sediol\",\n  \"séditieuse\": \"séditi\",\n  \"séditieux\": \"séditi\",\n  \"sédition\": \"sédit\",\n  \"séducteur\": \"séducteur\",\n  \"séduction\": \"séduct\",\n  \"séductions\": \"séduct\",\n  \"séduire\": \"séduir\",\n  \"séduisait\": \"séduis\",\n  \"séduisant\": \"séduis\",\n  \"séduisante\": \"séduis\",\n  \"séduisants\": \"séduis\",\n  \"séduit\": \"séduit\",\n  \"séduite\": \"séduit\",\n  \"séduits\": \"séduit\",\n  \"segreto\": \"segreto\",\n  \"seigneur\": \"seigneur\",\n  \"seigneuries\": \"seigneur\",\n  \"seigneurs\": \"seigneur\",\n  \"sein\": \"sein\",\n  \"seine\": \"sein\",\n  \"seize\": \"seiz\",\n  \"séjour\": \"séjour\",\n  \"séjournait\": \"séjourn\",\n  \"séjournât\": \"séjourn\",\n  \"séjourner\": \"séjourn\",\n  \"sel\": \"sel\",\n  \"sella\": \"sel\",\n  \"selle\": \"sel\",\n  \"sellé\": \"sel\",\n  \"sellette\": \"sellet\",\n  \"selon\": \"selon\",\n  \"sema\": \"sem\",\n  \"semaine\": \"semain\",\n  \"semaines\": \"semain\",\n  \"sembla\": \"sembl\",\n  \"semblable\": \"semblabl\",\n  \"semblables\": \"semblabl\",\n  \"semblaient\": \"sembl\",\n  \"semblait\": \"sembl\",\n  \"semblant\": \"sembl\",\n  \"semblât\": \"sembl\",\n  \"semble\": \"sembl\",\n  \"semblé\": \"sembl\",\n  \"semblent\": \"semblent\",\n  \"sembler\": \"sembl\",\n  \"semblera\": \"sembl\",\n  \"semblerait\": \"sembl\",\n  \"semblèrent\": \"sembl\",\n  \"semblez\": \"sembl\",\n  \"sème\": \"sem\",\n  \"semé\": \"sem\",\n  \"semée\": \"sem\",\n  \"semées\": \"sem\",\n  \"semelle\": \"semel\",\n  \"semelles\": \"semel\",\n  \"semer\": \"sem\",\n  \"semés\": \"sem\",\n  \"semez\": \"sem\",\n  \"semi\": \"sem\",\n  \"sémillant\": \"sémill\",\n  \"sémillante\": \"sémill\",\n  \"séminaire\": \"séminair\",\n  \"séminariste\": \"séminar\",\n  \"séminaristes\": \"séminar\",\n  \"sempans\": \"sempan\",\n  \"sens\": \"sen\",\n  \"sensation\": \"sensat\",\n  \"sensations\": \"sensat\",\n  \"sensée\": \"sens\",\n  \"sensés\": \"sens\",\n  \"sensibilité\": \"sensibil\",\n  \"sensible\": \"sensibl\",\n  \"sensiblement\": \"sensibl\",\n  \"sensibles\": \"sensibl\",\n  \"sent\": \"sent\",\n  \"sentaient\": \"sent\",\n  \"sentais\": \"sent\",\n  \"sentait\": \"sent\",\n  \"sentant\": \"sent\",\n  \"sentence\": \"sentenc\",\n  \"sentences\": \"sentenc\",\n  \"sentent\": \"sentent\",\n  \"sentez\": \"sent\",\n  \"senti\": \"sent\",\n  \"sentie\": \"sent\",\n  \"sentier\": \"senti\",\n  \"sentiers\": \"senti\",\n  \"senties\": \"sent\",\n  \"sentiment\": \"sent\",\n  \"sentimentale\": \"sentimental\",\n  \"sentimentales\": \"sentimental\",\n  \"sentiments\": \"sent\",\n  \"sentinelle\": \"sentinel\",\n  \"sentinelles\": \"sentinel\",\n  \"sentir\": \"sent\",\n  \"sentira\": \"sent\",\n  \"sentirez\": \"sent\",\n  \"sentisses\": \"sent\",\n  \"sentit\": \"sent\",\n  \"sépara\": \"sépar\",\n  \"séparaient\": \"sépar\",\n  \"séparait\": \"sépar\",\n  \"séparant\": \"sépar\",\n  \"séparation\": \"sépar\",\n  \"sépare\": \"sépar\",\n  \"séparé\": \"sépar\",\n  \"séparée\": \"sépar\",\n  \"séparées\": \"sépar\",\n  \"séparent\": \"séparent\",\n  \"séparer\": \"sépar\",\n  \"séparera\": \"sépar\",\n  \"séparés\": \"sépar\",\n  \"séparons\": \"séparon\",\n  \"sept\": \"sept\",\n  \"septembre\": \"septembr\",\n  \"septentrional\": \"septentrional\",\n  \"septentrionale\": \"septentrional\",\n  \"septentrionales\": \"septentrional\",\n  \"septième\": \"septiem\",\n  \"sequin\": \"sequin\",\n  \"sequins\": \"sequin\",\n  \"sera\": \"ser\",\n  \"serai\": \"ser\",\n  \"seraient\": \"ser\",\n  \"sérail\": \"sérail\",\n  \"serais\": \"ser\",\n  \"serait\": \"ser\",\n  \"seras\": \"ser\",\n  \"sérénade\": \"sérénad\",\n  \"sérénades\": \"sérénad\",\n  \"sérénissime\": \"sérénissim\",\n  \"sérénité\": \"séren\",\n  \"serez\": \"ser\",\n  \"sergent\": \"sergent\",\n  \"série\": \"ser\",\n  \"sérieuse\": \"sérieux\",\n  \"serieusement\": \"serieux\",\n  \"sérieusement\": \"sérieux\",\n  \"sérieuses\": \"sérieux\",\n  \"sérieux\": \"sérieux\",\n  \"seriez\": \"ser\",\n  \"serions\": \"serion\",\n  \"serious\": \"serious\",\n  \"serment\": \"serment\",\n  \"serments\": \"serment\",\n  \"sermon\": \"sermon\",\n  \"sermons\": \"sermon\",\n  \"serons\": \"seron\",\n  \"seront\": \"seront\",\n  \"serpent\": \"serpent\",\n  \"serpentent\": \"serpentent\",\n  \"serpents\": \"serpent\",\n  \"serpolet\": \"serpolet\",\n  \"serra\": \"serr\",\n  \"serraient\": \"serr\",\n  \"serrait\": \"serr\",\n  \"serrant\": \"serr\",\n  \"serre\": \"serr\",\n  \"serré\": \"serr\",\n  \"serrée\": \"serr\",\n  \"serrées\": \"serr\",\n  \"serrements\": \"serr\",\n  \"serrent\": \"serrent\",\n  \"serrer\": \"serr\",\n  \"serrèrent\": \"serr\",\n  \"serres\": \"serr\",\n  \"serrés\": \"serr\",\n  \"serrure\": \"serrur\",\n  \"serrures\": \"serrur\",\n  \"serrurier\": \"serruri\",\n  \"sert\": \"sert\",\n  \"servaient\": \"serv\",\n  \"servais\": \"serv\",\n  \"servait\": \"serv\",\n  \"servant\": \"serv\",\n  \"servante\": \"serv\",\n  \"serve\": \"serv\",\n  \"servent\": \"servent\",\n  \"servi\": \"serv\",\n  \"serviable\": \"serviabl\",\n  \"service\": \"servic\",\n  \"services\": \"servic\",\n  \"servie\": \"serv\",\n  \"serviettes\": \"serviet\",\n  \"servilement\": \"servil\",\n  \"servir\": \"serv\",\n  \"servira\": \"serv\",\n  \"servirai\": \"serv\",\n  \"serviraient\": \"serv\",\n  \"servirait\": \"serv\",\n  \"servirez\": \"serv\",\n  \"servis\": \"serv\",\n  \"servit\": \"serv\",\n  \"serviteur\": \"serviteur\",\n  \"serviteurs\": \"serviteur\",\n  \"ses\": \"se\",\n  \"session\": \"session\",\n  \"seuil\": \"seuil\",\n  \"seul\": \"seul\",\n  \"seule\": \"seul\",\n  \"seulement\": \"seul\",\n  \"seules\": \"seul\",\n  \"seuls\": \"seul\",\n  \"sévère\": \"séver\",\n  \"sévèrement\": \"séver\",\n  \"sévères\": \"séver\",\n  \"sévérité\": \"séver\",\n  \"sévérités\": \"séver\",\n  \"sexagésimales\": \"sexagésimal\",\n  \"sexe\": \"sex\",\n  \"sexes\": \"sex\",\n  \"sfondrata\": \"sfondrat\",\n  \"sforce\": \"sforc\",\n  \"sforze\": \"sforz\",\n  \"shako\": \"shako\",\n  \"shakos\": \"shakos\",\n  \"shakspeare\": \"shakspear\",\n  \"shangaï\": \"shangaï\",\n  \"sheppard\": \"sheppard\",\n  \"sheridan\": \"sheridan\",\n  \"sherry\": \"sherry\",\n  \"shilling\": \"shilling\",\n  \"shillings\": \"shilling\",\n  \"shipping\": \"shipping\",\n  \"shiva\": \"shiv\",\n  \"shows\": \"show\",\n  \"si\": \"si\",\n  \"siamo\": \"siamo\",\n  \"siècle\": \"siecl\",\n  \"siècles\": \"siecl\",\n  \"siège\": \"sieg\",\n  \"sièges\": \"sieg\",\n  \"sien\": \"sien\",\n  \"sienne\": \"sien\",\n  \"siennes\": \"sien\",\n  \"siens\": \"sien\",\n  \"sierra\": \"sierr\",\n  \"sieste\": \"siest\",\n  \"sieur\": \"sieur\",\n  \"sieyès\": \"sieyes\",\n  \"siffla\": \"siffl\",\n  \"sifflaient\": \"siffl\",\n  \"sifflait\": \"siffl\",\n  \"sifflant\": \"siffl\",\n  \"sifflement\": \"siffl\",\n  \"sifflements\": \"siffl\",\n  \"siffler\": \"siffl\",\n  \"sifflet\": \"sifflet\",\n  \"sifflets\": \"sifflet\",\n  \"sighs\": \"sigh\",\n  \"sigisbée\": \"sigisb\",\n  \"sigismond\": \"sigismond\",\n  \"signa\": \"sign\",\n  \"signait\": \"sign\",\n  \"signal\": \"signal\",\n  \"signala\": \"signal\",\n  \"signale\": \"signal\",\n  \"signalé\": \"signal\",\n  \"signalée\": \"signal\",\n  \"signalement\": \"signal\",\n  \"signalements\": \"signal\",\n  \"signaler\": \"signal\",\n  \"signalerait\": \"signal\",\n  \"signant\": \"sign\",\n  \"signature\": \"signatur\",\n  \"signaux\": \"signal\",\n  \"signe\": \"sign\",\n  \"signé\": \"sign\",\n  \"signée\": \"sign\",\n  \"signées\": \"sign\",\n  \"signer\": \"sign\",\n  \"signera\": \"sign\",\n  \"signerai\": \"sign\",\n  \"signes\": \"sign\",\n  \"signets\": \"signet\",\n  \"signez\": \"sign\",\n  \"signifiait\": \"signifi\",\n  \"significatif\": \"signif\",\n  \"signification\": \"signif\",\n  \"significative\": \"signif\",\n  \"significatives\": \"signif\",\n  \"signifie\": \"signif\",\n  \"signifier\": \"signifi\",\n  \"signor\": \"signor\",\n  \"signora\": \"signor\",\n  \"signorino\": \"signorino\",\n  \"silence\": \"silenc\",\n  \"silencieuse\": \"silenci\",\n  \"silencieusement\": \"silenci\",\n  \"silencieux\": \"silenci\",\n  \"silhouette\": \"silhouet\",\n  \"sillonnaient\": \"sillon\",\n  \"sillonne\": \"sillon\",\n  \"sillonné\": \"sillon\",\n  \"sillonnés\": \"sillon\",\n  \"sillons\": \"sillon\",\n  \"simagrées\": \"simagr\",\n  \"simon\": \"simon\",\n  \"simonie\": \"simon\",\n  \"simple\": \"simpl\",\n  \"simplement\": \"simpl\",\n  \"simples\": \"simpl\",\n  \"simplicité\": \"simpliqu\",\n  \"simplifiée\": \"simplifi\",\n  \"simule\": \"simul\",\n  \"sinant\": \"sin\",\n  \"since\": \"sinc\",\n  \"sincère\": \"sincer\",\n  \"sincèrement\": \"sincer\",\n  \"sincères\": \"sincer\",\n  \"sincérité\": \"sincer\",\n  \"sindes\": \"sind\",\n  \"sine\": \"sin\",\n  \"sinécures\": \"sinécur\",\n  \"singapore\": \"singapor\",\n  \"singe\": \"sing\",\n  \"singeries\": \"singer\",\n  \"singes\": \"sing\",\n  \"singularité\": \"singular\",\n  \"singularités\": \"singular\",\n  \"singulier\": \"singuli\",\n  \"singulière\": \"singuli\",\n  \"singulièrement\": \"singuli\",\n  \"singulières\": \"singuli\",\n  \"singuliers\": \"singuli\",\n  \"sinistre\": \"sinistr\",\n  \"sinistres\": \"sinistr\",\n  \"sinon\": \"sinon\",\n  \"sinuosités\": \"sinuos\",\n  \"sioux\": \"sioux\",\n  \"sir\": \"sir\",\n  \"sire\": \"sir\",\n  \"site\": \"sit\",\n  \"sites\": \"sit\",\n  \"sitôt\": \"sitôt\",\n  \"situation\": \"situat\",\n  \"situé\": \"situ\",\n  \"située\": \"situ\",\n  \"situés\": \"situ\",\n  \"six\": \"six\",\n  \"sixième\": \"sixiem\",\n  \"sixte\": \"sixt\",\n  \"sixtine\": \"sixtin\",\n  \"sky\": \"sky\",\n  \"sleeping\": \"sleeping\",\n  \"slight\": \"slight\",\n  \"sloop\": \"sloop\",\n  \"small\": \"small\",\n  \"smith\": \"smith\",\n  \"smollett\": \"smollet\",\n  \"smyth\": \"smyth\",\n  \"so\": \"so\",\n  \"social\": \"social\",\n  \"sociale\": \"social\",\n  \"sociales\": \"social\",\n  \"sociaux\": \"social\",\n  \"société\": \"societ\",\n  \"sociétés\": \"societ\",\n  \"socques\": \"socqu\",\n  \"soeur\": \"soeur\",\n  \"soeurs\": \"soeur\",\n  \"soi\": \"soi\",\n  \"soie\": \"soi\",\n  \"soient\": \"soient\",\n  \"soif\": \"soif\",\n  \"soigna\": \"soign\",\n  \"soignait\": \"soign\",\n  \"soignant\": \"soign\",\n  \"soigne\": \"soign\",\n  \"soigné\": \"soign\",\n  \"soignée\": \"soign\",\n  \"soigner\": \"soign\",\n  \"soignés\": \"soign\",\n  \"soigneusement\": \"soigneux\",\n  \"soigneux\": \"soigneux\",\n  \"soin\": \"soin\",\n  \"soins\": \"soin\",\n  \"soir\": \"soir\",\n  \"soirée\": \"soir\",\n  \"soirées\": \"soir\",\n  \"soirs\": \"soir\",\n  \"sois\": \"sois\",\n  \"soissons\": \"soisson\",\n  \"soit\": \"soit\",\n  \"soixante\": \"soix\",\n  \"soixantième\": \"soixantiem\",\n  \"sol\": \"sol\",\n  \"solaire\": \"solair\",\n  \"soldant\": \"sold\",\n  \"soldat\": \"soldat\",\n  \"soldats\": \"soldat\",\n  \"solde\": \"sold\",\n  \"soldé\": \"sold\",\n  \"soldés\": \"sold\",\n  \"soleil\": \"soleil\",\n  \"solennel\": \"solennel\",\n  \"solennelle\": \"solennel\",\n  \"solennels\": \"solennel\",\n  \"solide\": \"solid\",\n  \"solidement\": \"solid\",\n  \"solides\": \"solid\",\n  \"solidité\": \"solid\",\n  \"solitaire\": \"solitair\",\n  \"solitaires\": \"solitair\",\n  \"solitude\": \"solitud\",\n  \"sollicita\": \"sollicit\",\n  \"sollicitait\": \"sollicit\",\n  \"sollicitations\": \"sollicit\",\n  \"sollicite\": \"sollicit\",\n  \"sollicité\": \"solliqu\",\n  \"solliciter\": \"sollicit\",\n  \"solliciteur\": \"solliciteur\",\n  \"sollicitez\": \"sollicit\",\n  \"sols\": \"sol\",\n  \"solution\": \"solut\",\n  \"somanlis\": \"somanl\",\n  \"sombre\": \"sombr\",\n  \"sombrer\": \"sombr\",\n  \"sombreros\": \"sombreros\",\n  \"sombres\": \"sombr\",\n  \"sommaire\": \"sommair\",\n  \"sommariva\": \"sommariv\",\n  \"sommation\": \"sommat\",\n  \"somme\": \"somm\",\n  \"sommeil\": \"sommeil\",\n  \"sommeillait\": \"sommeil\",\n  \"sommer\": \"somm\",\n  \"sommes\": \"somm\",\n  \"sommet\": \"sommet\",\n  \"sommets\": \"sommet\",\n  \"sommités\": \"sommit\",\n  \"somptueuse\": \"somptueux\",\n  \"somptueusement\": \"somptueux\",\n  \"somptueux\": \"somptueux\",\n  \"somptuosité\": \"somptuos\",\n  \"son\": \"son\",\n  \"sonder\": \"sond\",\n  \"songe\": \"song\",\n  \"songé\": \"song\",\n  \"songea\": \"song\",\n  \"songeaient\": \"song\",\n  \"songeais\": \"song\",\n  \"songeait\": \"song\",\n  \"songeant\": \"song\",\n  \"songeât\": \"song\",\n  \"songent\": \"songent\",\n  \"songeons\": \"songeon\",\n  \"songer\": \"song\",\n  \"songera\": \"song\",\n  \"songerai\": \"song\",\n  \"songerait\": \"song\",\n  \"songèrent\": \"song\",\n  \"songes\": \"song\",\n  \"songez\": \"song\",\n  \"sonna\": \"son\",\n  \"sonnaient\": \"son\",\n  \"sonnait\": \"son\",\n  \"sonnant\": \"son\",\n  \"sonnât\": \"son\",\n  \"sonne\": \"son\",\n  \"sonné\": \"son\",\n  \"sonnée\": \"son\",\n  \"sonnées\": \"son\",\n  \"sonner\": \"son\",\n  \"sonnera\": \"son\",\n  \"sonnèrent\": \"son\",\n  \"sonneries\": \"sonner\",\n  \"sonneront\": \"son\",\n  \"sonnés\": \"son\",\n  \"sonnet\": \"sonnet\",\n  \"sonnets\": \"sonnet\",\n  \"sonnette\": \"sonnet\",\n  \"sonnettes\": \"sonnet\",\n  \"sonneurs\": \"sonneur\",\n  \"sonore\": \"sonor\",\n  \"sonores\": \"sonor\",\n  \"sons\": \"son\",\n  \"sont\": \"sont\",\n  \"sorbonne\": \"sorbon\",\n  \"sorcier\": \"sorci\",\n  \"sordide\": \"sordid\",\n  \"sorel\": \"sorel\",\n  \"sorezana\": \"sorezan\",\n  \"sorgho\": \"sorgho\",\n  \"sors\": \"sor\",\n  \"sort\": \"sort\",\n  \"sortaient\": \"sort\",\n  \"sortais\": \"sort\",\n  \"sortait\": \"sort\",\n  \"sortant\": \"sort\",\n  \"sorte\": \"sort\",\n  \"sortent\": \"sortent\",\n  \"sortes\": \"sort\",\n  \"sortez\": \"sort\",\n  \"sorti\": \"sort\",\n  \"sortie\": \"sort\",\n  \"sortiez\": \"sort\",\n  \"sortir\": \"sort\",\n  \"sortira\": \"sort\",\n  \"sortirai\": \"sort\",\n  \"sortirais\": \"sort\",\n  \"sortirait\": \"sort\",\n  \"sortiras\": \"sort\",\n  \"sortirent\": \"sort\",\n  \"sortirez\": \"sort\",\n  \"sortirions\": \"sort\",\n  \"sortirons\": \"sort\",\n  \"sortis\": \"sort\",\n  \"sortit\": \"sort\",\n  \"sortît\": \"sort\",\n  \"sorts\": \"sort\",\n  \"sot\": \"sot\",\n  \"sots\": \"sot\",\n  \"sotte\": \"sott\",\n  \"sottement\": \"sott\",\n  \"sottes\": \"sott\",\n  \"sottise\": \"sottis\",\n  \"sottises\": \"sottis\",\n  \"sou\": \"sou\",\n  \"soubrette\": \"soubret\",\n  \"souci\": \"souc\",\n  \"soucia\": \"souci\",\n  \"souciait\": \"souci\",\n  \"soucier\": \"souci\",\n  \"soucieuse\": \"soucieux\",\n  \"soucieux\": \"soucieux\",\n  \"soucis\": \"souc\",\n  \"soudain\": \"soudain\",\n  \"soudaine\": \"soudain\",\n  \"soudainement\": \"soudain\",\n  \"souffert\": \"souffert\",\n  \"souffla\": \"souffl\",\n  \"soufflait\": \"souffl\",\n  \"soufflant\": \"souffl\",\n  \"souffle\": \"souffl\",\n  \"soufflent\": \"soufflent\",\n  \"souffler\": \"souffl\",\n  \"soufflet\": \"soufflet\",\n  \"soufflets\": \"soufflet\",\n  \"souffleur\": \"souffleur\",\n  \"souffrais\": \"souffr\",\n  \"souffrait\": \"souffr\",\n  \"souffrance\": \"souffranc\",\n  \"souffrances\": \"souffranc\",\n  \"souffrant\": \"souffr\",\n  \"souffrante\": \"souffr\",\n  \"souffre\": \"souffr\",\n  \"souffrent\": \"souffrent\",\n  \"souffres\": \"souffr\",\n  \"souffrez\": \"souffr\",\n  \"souffrir\": \"souffr\",\n  \"souffrira\": \"souffr\",\n  \"souffrirai\": \"souffr\",\n  \"souffrirais\": \"souffr\",\n  \"souffriras\": \"souffr\",\n  \"souffrissent\": \"souffr\",\n  \"souffrit\": \"souffr\",\n  \"souhait\": \"souh\",\n  \"souhaitant\": \"souhait\",\n  \"souhaite\": \"souhait\",\n  \"souhaité\": \"souhait\",\n  \"souillé\": \"souill\",\n  \"souiller\": \"souill\",\n  \"soulagé\": \"soulag\",\n  \"soulagée\": \"soulag\",\n  \"soulagement\": \"soulag\",\n  \"soulcy\": \"soulcy\",\n  \"souleva\": \"soulev\",\n  \"soulevait\": \"soulev\",\n  \"soulevant\": \"soulev\",\n  \"soulevée\": \"soulev\",\n  \"soulevées\": \"soulev\",\n  \"soulèvent\": \"soulèvent\",\n  \"soulever\": \"soulev\",\n  \"soulèverai\": \"soulev\",\n  \"soulier\": \"souli\",\n  \"souliers\": \"souli\",\n  \"soulte\": \"soult\",\n  \"soumettait\": \"soumet\",\n  \"soumettre\": \"soumettr\",\n  \"soumis\": \"soum\",\n  \"soumise\": \"soumis\",\n  \"soumises\": \"soumis\",\n  \"soumission\": \"soumiss\",\n  \"soumit\": \"soum\",\n  \"soupait\": \"soup\",\n  \"soupapes\": \"soupap\",\n  \"soupçon\": \"soupçon\",\n  \"soupçonna\": \"soupçon\",\n  \"soupçonnaient\": \"soupçon\",\n  \"soupçonnait\": \"soupçon\",\n  \"soupçonne\": \"soupçon\",\n  \"soupçonné\": \"soupçon\",\n  \"soupçonnée\": \"soupçon\",\n  \"soupçonner\": \"soupçon\",\n  \"soupçonnés\": \"soupçon\",\n  \"soupçonneux\": \"soupçon\",\n  \"soupçons\": \"soupçon\",\n  \"soupe\": \"soup\",\n  \"soupé\": \"soup\",\n  \"souper\": \"soup\",\n  \"soupers\": \"souper\",\n  \"soupez\": \"soup\",\n  \"soupir\": \"soup\",\n  \"soupirant\": \"soupir\",\n  \"soupire\": \"soupir\",\n  \"soupirer\": \"soupir\",\n  \"souple\": \"soupl\",\n  \"souplesse\": \"soupless\",\n  \"source\": \"sourc\",\n  \"sources\": \"sourc\",\n  \"sourcil\": \"sourcil\",\n  \"sourciliers\": \"sourcili\",\n  \"sourcilla\": \"sourcill\",\n  \"sourcillé\": \"sourcill\",\n  \"sourciller\": \"sourcill\",\n  \"sourcils\": \"sourcil\",\n  \"sourd\": \"sourd\",\n  \"sourde\": \"sourd\",\n  \"souri\": \"sour\",\n  \"souriait\": \"souri\",\n  \"souriant\": \"souri\",\n  \"souriante\": \"souri\",\n  \"souriantes\": \"souri\",\n  \"sourire\": \"sourir\",\n  \"sourires\": \"sourir\",\n  \"sourit\": \"sour\",\n  \"sournois\": \"sournois\",\n  \"sournoise\": \"sournois\",\n  \"sous\": \"sous\",\n  \"soustrairais\": \"soustrair\",\n  \"soustraire\": \"soustrair\",\n  \"soustrait\": \"soustr\",\n  \"soutane\": \"soutan\",\n  \"soutenaient\": \"souten\",\n  \"soutenait\": \"souten\",\n  \"soutenant\": \"souten\",\n  \"soutènement\": \"souten\",\n  \"soutenir\": \"souten\",\n  \"soutenu\": \"soutenu\",\n  \"soutenue\": \"soutenu\",\n  \"soutenues\": \"soutenu\",\n  \"souterrain\": \"souterrain\",\n  \"souterraines\": \"souterrain\",\n  \"soutes\": \"sout\",\n  \"south\": \"south\",\n  \"southampton\": \"southampton\",\n  \"southey\": \"southey\",\n  \"soutiennent\": \"soutiennent\",\n  \"soutiens\": \"soutien\",\n  \"soutient\": \"soutient\",\n  \"soutint\": \"soutint\",\n  \"souvenaient\": \"souven\",\n  \"souvenait\": \"souven\",\n  \"souvenant\": \"souven\",\n  \"souvenez\": \"souven\",\n  \"souvenir\": \"souven\",\n  \"souvenirs\": \"souvenir\",\n  \"souvent\": \"souvent\",\n  \"souvenus\": \"souvenus\",\n  \"souverain\": \"souverain\",\n  \"souveraine\": \"souverain\",\n  \"souverainement\": \"souverain\",\n  \"souveraineté\": \"souverainet\",\n  \"souverains\": \"souverain\",\n  \"souviendra\": \"souviendr\",\n  \"souviendrez\": \"souviendr\",\n  \"souvienne\": \"souvien\",\n  \"souviennent\": \"souviennent\",\n  \"souviens\": \"souvien\",\n  \"souvient\": \"souvient\",\n  \"souvint\": \"souvint\",\n  \"soyeux\": \"soyeux\",\n  \"soyez\": \"soi\",\n  \"soyons\": \"soyon\",\n  \"spardeck\": \"spardeck\",\n  \"speak\": \"speak\",\n  \"spécial\": \"spécial\",\n  \"spéciale\": \"spécial\",\n  \"spécialement\": \"spécial\",\n  \"spécialité\": \"spécial\",\n  \"spécifier\": \"spécifi\",\n  \"spécifique\": \"spécif\",\n  \"spectacle\": \"spectacl\",\n  \"spectacles\": \"spectacl\",\n  \"spectateur\": \"spectateur\",\n  \"spectateurs\": \"spectateur\",\n  \"spectrale\": \"spectral\",\n  \"spectre\": \"spectr\",\n  \"spéculation\": \"spécul\",\n  \"spéculations\": \"spécul\",\n  \"speedy\": \"speedy\",\n  \"sphère\": \"spher\",\n  \"sphéroïde\": \"sphéroïd\",\n  \"spielberg\": \"spielberg\",\n  \"spirale\": \"spiral\",\n  \"spirales\": \"spiral\",\n  \"spirituel\": \"spirituel\",\n  \"spirituelle\": \"spirituel\",\n  \"spirituelles\": \"spirituel\",\n  \"splendide\": \"splendid\",\n  \"splendides\": \"splendid\",\n  \"spring\": \"spring\",\n  \"squares\": \"squar\",\n  \"squelette\": \"squelet\",\n  \"st\": \"st\",\n  \"staël\": \"staël\",\n  \"stalles\": \"stall\",\n  \"stamp\": \"stamp\",\n  \"standard\": \"standard\",\n  \"stanislas\": \"stanisl\",\n  \"star\": \"star\",\n  \"starke\": \"stark\",\n  \"station\": \"station\",\n  \"stationnera\": \"station\",\n  \"stationnés\": \"station\",\n  \"stations\": \"station\",\n  \"statuaire\": \"statuair\",\n  \"statue\": \"statu\",\n  \"statues\": \"statu\",\n  \"stature\": \"statur\",\n  \"staub\": \"staub\",\n  \"steam\": \"steam\",\n  \"steamboats\": \"steamboat\",\n  \"steamer\": \"steam\",\n  \"steamers\": \"steamer\",\n  \"steccata\": \"steccat\",\n  \"stefano\": \"stefano\",\n  \"stentor\": \"stentor\",\n  \"stephenson\": \"stephenson\",\n  \"sterling\": \"sterling\",\n  \"sterne\": \"stern\",\n  \"steward\": \"steward\",\n  \"stigmates\": \"stigmat\",\n  \"stigmatiser\": \"stigmatis\",\n  \"still\": \"still\",\n  \"stimuler\": \"stimul\",\n  \"stolen\": \"stolen\",\n  \"strabon\": \"strabon\",\n  \"stramonium\": \"stramonium\",\n  \"strand\": \"strand\",\n  \"strasbourg\": \"strasbourg\",\n  \"stratagème\": \"stratagem\",\n  \"straw\": \"straw\",\n  \"street\": \"street\",\n  \"strict\": \"strict\",\n  \"stricte\": \"strict\",\n  \"strictement\": \"strict\",\n  \"strombeck\": \"strombeck\",\n  \"strongest\": \"strongest\",\n  \"strychnine\": \"strychnin\",\n  \"stuart\": \"stuart\",\n  \"studbook\": \"studbook\",\n  \"stupéfaction\": \"stupéfact\",\n  \"stupéfait\": \"stupef\",\n  \"stupéfiante\": \"stupéfi\",\n  \"stupefie\": \"stupef\",\n  \"stupéfie\": \"stupef\",\n  \"stupéfié\": \"stupéfi\",\n  \"stupéfier\": \"stupéfi\",\n  \"stupeur\": \"stupeur\",\n  \"stupide\": \"stupid\",\n  \"stupides\": \"stupid\",\n  \"style\": \"styl\",\n  \"stylé\": \"styl\",\n  \"stylés\": \"styl\",\n  \"su\": \"su\",\n  \"suave\": \"suav\",\n  \"subalterne\": \"subaltern\",\n  \"subalternes\": \"subaltern\",\n  \"subi\": \"sub\",\n  \"subir\": \"sub\",\n  \"subira\": \"sub\",\n  \"subirait\": \"sub\",\n  \"subis\": \"sub\",\n  \"subissant\": \"sub\",\n  \"subit\": \"sub\",\n  \"subite\": \"subit\",\n  \"subitement\": \"subit\",\n  \"subjugue\": \"subjugu\",\n  \"subjugué\": \"subjugu\",\n  \"subjuguer\": \"subjugu\",\n  \"sublime\": \"sublim\",\n  \"sublimes\": \"sublim\",\n  \"sublimité\": \"sublim\",\n  \"submerge\": \"submerg\",\n  \"submergé\": \"submerg\",\n  \"submergèrent\": \"submerg\",\n  \"subordonnés\": \"subordon\",\n  \"suborner\": \"suborn\",\n  \"subsistance\": \"subsist\",\n  \"subsiste\": \"subsist\",\n  \"subsistent\": \"subsistent\",\n  \"substance\": \"substanc\",\n  \"substitué\": \"substitu\",\n  \"substituée\": \"substitu\",\n  \"substituées\": \"substitu\",\n  \"substituer\": \"substitu\",\n  \"substitut\": \"substitut\",\n  \"subtilité\": \"subtil\",\n  \"subvention\": \"subvent\",\n  \"succéda\": \"succed\",\n  \"succédaient\": \"succed\",\n  \"succédait\": \"succed\",\n  \"succède\": \"succed\",\n  \"succédé\": \"succed\",\n  \"succéder\": \"succed\",\n  \"succédèrent\": \"succed\",\n  \"succès\": \"succes\",\n  \"successeur\": \"successeur\",\n  \"successeurs\": \"successeur\",\n  \"successifs\": \"success\",\n  \"succession\": \"success\",\n  \"successive\": \"success\",\n  \"successivement\": \"success\",\n  \"successives\": \"success\",\n  \"successor\": \"successor\",\n  \"succombant\": \"succomb\",\n  \"succombé\": \"succomb\",\n  \"succombent\": \"succombent\",\n  \"succomber\": \"succomb\",\n  \"succulentes\": \"succulent\",\n  \"succulents\": \"succulent\",\n  \"such\": \"such\",\n  \"suchet\": \"suchet\",\n  \"sucre\": \"sucr\",\n  \"sucreries\": \"sucrer\",\n  \"sud\": \"sud\",\n  \"suédois\": \"suédois\",\n  \"sueur\": \"sueur\",\n  \"suez\": \"su\",\n  \"suffers\": \"suffer\",\n  \"suffi\": \"suff\",\n  \"suffira\": \"suff\",\n  \"suffiraient\": \"suff\",\n  \"suffirait\": \"suff\",\n  \"suffire\": \"suffir\",\n  \"suffirent\": \"suff\",\n  \"suffiront\": \"suff\",\n  \"suffisaient\": \"suffis\",\n  \"suffisait\": \"suffis\",\n  \"suffisamment\": \"suffis\",\n  \"suffisance\": \"suffis\",\n  \"suffisant\": \"suffis\",\n  \"suffisante\": \"suffis\",\n  \"suffisantes\": \"suffis\",\n  \"suffisent\": \"suffisent\",\n  \"suffit\": \"suff\",\n  \"suffocations\": \"suffoc\",\n  \"suffoqua\": \"suffoqu\",\n  \"suffoqué\": \"suffoqu\",\n  \"suffoquerait\": \"suffoqu\",\n  \"suggéra\": \"sugger\",\n  \"suggéré\": \"sugger\",\n  \"suggérée\": \"sugger\",\n  \"suggérer\": \"sugger\",\n  \"suicide\": \"suicid\",\n  \"suie\": \"sui\",\n  \"suis\": \"suis\",\n  \"suisse\": \"suiss\",\n  \"suisses\": \"suiss\",\n  \"suit\": \"suit\",\n  \"suite\": \"suit\",\n  \"suites\": \"suit\",\n  \"suivaient\": \"suiv\",\n  \"suivais\": \"suiv\",\n  \"suivait\": \"suiv\",\n  \"suivant\": \"suiv\",\n  \"suivante\": \"suiv\",\n  \"suivantes\": \"suiv\",\n  \"suivants\": \"suiv\",\n  \"suivent\": \"suivent\",\n  \"suivez\": \"suiv\",\n  \"suivi\": \"suiv\",\n  \"suivie\": \"suiv\",\n  \"suivies\": \"suiv\",\n  \"suiviez\": \"suiv\",\n  \"suivirent\": \"suiv\",\n  \"suivis\": \"suiv\",\n  \"suivit\": \"suiv\",\n  \"suivons\": \"suivon\",\n  \"suivra\": \"suivr\",\n  \"suivrai\": \"suivr\",\n  \"suivraient\": \"suivr\",\n  \"suivras\": \"suivr\",\n  \"suivre\": \"suivr\",\n  \"suivront\": \"suivront\",\n  \"sujet\": \"sujet\",\n  \"sujets\": \"sujet\",\n  \"sujette\": \"sujet\",\n  \"sujettes\": \"sujet\",\n  \"sullivan\": \"sullivan\",\n  \"sultan\": \"sultan\",\n  \"sumatra\": \"sumatr\",\n  \"sun\": \"sun\",\n  \"superbe\": \"superb\",\n  \"superbes\": \"superb\",\n  \"superficie\": \"superfic\",\n  \"superficiel\": \"superficiel\",\n  \"superflu\": \"superflu\",\n  \"supérieur\": \"supérieur\",\n  \"supérieure\": \"supérieur\",\n  \"supérieurement\": \"supérieur\",\n  \"supérieures\": \"supérieur\",\n  \"supérieurs\": \"supérieur\",\n  \"supériorité\": \"supérior\",\n  \"suppléé\": \"supplé\",\n  \"supplément\": \"suppl\",\n  \"supplémentaire\": \"supplémentair\",\n  \"supplia\": \"suppli\",\n  \"suppliaient\": \"suppli\",\n  \"suppliait\": \"suppli\",\n  \"suppliant\": \"suppli\",\n  \"suppliante\": \"suppli\",\n  \"supplications\": \"suppliqu\",\n  \"supplice\": \"supplic\",\n  \"supplices\": \"supplic\",\n  \"supplie\": \"suppl\",\n  \"supplier\": \"suppli\",\n  \"suppliez\": \"suppl\",\n  \"supportable\": \"support\",\n  \"supportait\": \"support\",\n  \"supportent\": \"supportent\",\n  \"supporter\": \"support\",\n  \"supporterait\": \"support\",\n  \"supposait\": \"suppos\",\n  \"supposant\": \"suppos\",\n  \"suppose\": \"suppos\",\n  \"supposé\": \"suppos\",\n  \"supposée\": \"suppos\",\n  \"supposer\": \"suppos\",\n  \"supposés\": \"suppos\",\n  \"supposez\": \"suppos\",\n  \"supposition\": \"supposit\",\n  \"suppositions\": \"supposit\",\n  \"supposons\": \"supposon\",\n  \"suppression\": \"suppress\",\n  \"supprimant\": \"supprim\",\n  \"supprime\": \"supprim\",\n  \"supprimé\": \"supprim\",\n  \"supprimée\": \"supprim\",\n  \"supprimer\": \"supprim\",\n  \"supprimons\": \"supprimon\",\n  \"supputait\": \"supput\",\n  \"suprême\": \"suprêm\",\n  \"sur\": \"sur\",\n  \"sûr\": \"sûr\",\n  \"surannée\": \"surann\",\n  \"surate\": \"surat\",\n  \"surchargés\": \"surcharg\",\n  \"surchauffée\": \"surchauff\",\n  \"surcroît\": \"surcroît\",\n  \"sûre\": \"sûr\",\n  \"surélevés\": \"surélev\",\n  \"sûrement\": \"sûr\",\n  \"surenchère\": \"surencher\",\n  \"surent\": \"surent\",\n  \"suresnes\": \"suresn\",\n  \"sûreté\": \"sûret\",\n  \"surexcité\": \"surexc\",\n  \"surface\": \"surfac\",\n  \"surgir\": \"surg\",\n  \"surgirait\": \"surg\",\n  \"surgirent\": \"surg\",\n  \"surhumain\": \"surhumain\",\n  \"surhumaine\": \"surhumain\",\n  \"surlendemain\": \"surlendemain\",\n  \"surmontant\": \"surmont\",\n  \"surmonte\": \"surmont\",\n  \"surmontée\": \"surmont\",\n  \"surmontées\": \"surmont\",\n  \"surmonter\": \"surmont\",\n  \"surnage\": \"surnag\",\n  \"surnagea\": \"surnag\",\n  \"surnageait\": \"surnag\",\n  \"surnaturelle\": \"surnaturel\",\n  \"surnom\": \"surnom\",\n  \"surnommèrent\": \"surnomm\",\n  \"surpassa\": \"surpass\",\n  \"surpasse\": \"surp\",\n  \"surpassé\": \"surpass\",\n  \"surpassent\": \"surp\",\n  \"surplis\": \"surpl\",\n  \"surplus\": \"surplus\",\n  \"surprenait\": \"surpren\",\n  \"surprenant\": \"surpren\",\n  \"surprend\": \"surprend\",\n  \"surprendre\": \"surprendr\",\n  \"surprirent\": \"surpr\",\n  \"surpris\": \"surpr\",\n  \"surprise\": \"surpris\",\n  \"surprises\": \"surpris\",\n  \"surprit\": \"surpr\",\n  \"surrey\": \"surrey\",\n  \"sûrs\": \"sûr\",\n  \"sursaut\": \"sursaut\",\n  \"surtout\": \"surtout\",\n  \"survécut\": \"survécut\",\n  \"surveillait\": \"surveil\",\n  \"surveillance\": \"surveil\",\n  \"surveillants\": \"surveil\",\n  \"surveille\": \"surveil\",\n  \"surveillé\": \"surveil\",\n  \"surveillée\": \"surveil\",\n  \"surveiller\": \"surveil\",\n  \"surveillera\": \"surveil\",\n  \"survenait\": \"surven\",\n  \"survenir\": \"surven\",\n  \"survenue\": \"survenu\",\n  \"survinrent\": \"survinrent\",\n  \"survint\": \"survint\",\n  \"survit\": \"surv\",\n  \"survivant\": \"surviv\",\n  \"survivrai\": \"survivr\",\n  \"survivrais\": \"survivr\",\n  \"survivre\": \"survivr\",\n  \"survivrez\": \"survivr\",\n  \"sus\": \"sus\",\n  \"susceptible\": \"susceptibl\",\n  \"susceptibles\": \"susceptibl\",\n  \"susciter\": \"suscit\",\n  \"suscitèrent\": \"suscit\",\n  \"susdit\": \"susd\",\n  \"suspect\": \"suspect\",\n  \"suspecte\": \"suspect\",\n  \"suspecter\": \"suspect\",\n  \"suspects\": \"suspect\",\n  \"suspendre\": \"suspendr\",\n  \"suspendu\": \"suspendu\",\n  \"suspendue\": \"suspendu\",\n  \"suspendus\": \"suspendus\",\n  \"suspens\": \"suspen\",\n  \"suspicion\": \"suspicion\",\n  \"sut\": \"sut\",\n  \"sût\": \"sût\",\n  \"sutpour\": \"sutpour\",\n  \"sutty\": \"sutty\",\n  \"svelte\": \"svelt\",\n  \"sweeter\": \"sweet\",\n  \"sydenham\": \"sydenham\",\n  \"syénites\": \"syénit\",\n  \"syllabe\": \"syllab\",\n  \"syllabes\": \"syllab\",\n  \"syllogisme\": \"syllog\",\n  \"symbole\": \"symbol\",\n  \"symboles\": \"symbol\",\n  \"symbolisent\": \"symbolisent\",\n  \"symétrie\": \"symetr\",\n  \"symétriques\": \"symetr\",\n  \"sympathie\": \"sympath\",\n  \"sympathisait\": \"sympathis\",\n  \"sympathise\": \"sympathis\",\n  \"symphonie\": \"symphon\",\n  \"symptôme\": \"symptôm\",\n  \"symptômes\": \"symptôm\",\n  \"synagogues\": \"synagogu\",\n  \"synonyme\": \"synonym\",\n  \"synonymes\": \"synonym\",\n  \"système\": \"system\",\n  \"t\": \"t\",\n  \"ta\": \"ta\",\n  \"tabac\": \"tabac\",\n  \"tabagie\": \"tabag\",\n  \"tabagies\": \"tabag\",\n  \"tabatière\": \"tabati\",\n  \"tabernacle\": \"tabernacl\",\n  \"table\": \"tabl\",\n  \"tableau\": \"tableau\",\n  \"tableaux\": \"tableau\",\n  \"tables\": \"tabl\",\n  \"tablette\": \"tablet\",\n  \"tablier\": \"tabli\",\n  \"tabouret\": \"tabouret\",\n  \"tâchait\": \"tâch\",\n  \"tâchant\": \"tâch\",\n  \"tache\": \"tach\",\n  \"tâche\": \"tâch\",\n  \"taché\": \"tach\",\n  \"tachée\": \"tach\",\n  \"tachées\": \"tach\",\n  \"tâcher\": \"tâch\",\n  \"tâcherai\": \"tâch\",\n  \"taches\": \"tach\",\n  \"tachetée\": \"tachet\",\n  \"tâchez\": \"tâch\",\n  \"tâchons\": \"tâchon\",\n  \"tacite\": \"tacit\",\n  \"tacites\": \"tacit\",\n  \"taciti\": \"tacit\",\n  \"taciturnes\": \"taciturn\",\n  \"tact\": \"tact\",\n  \"taffetas\": \"taffet\",\n  \"taïkoun\": \"taïkoun\",\n  \"tailla\": \"taill\",\n  \"taillanderie\": \"taillander\",\n  \"taillant\": \"taill\",\n  \"taille\": \"taill\",\n  \"taillé\": \"taill\",\n  \"taillées\": \"taill\",\n  \"tailler\": \"taill\",\n  \"taillés\": \"taill\",\n  \"tailleur\": \"tailleur\",\n  \"taillis\": \"taill\",\n  \"taire\": \"tair\",\n  \"tais\": \"tais\",\n  \"taisaient\": \"tais\",\n  \"taisait\": \"tais\",\n  \"taisant\": \"tais\",\n  \"taisez\": \"tais\",\n  \"tait\": \"tait\",\n  \"takes\": \"tak\",\n  \"talent\": \"talent\",\n  \"talents\": \"talent\",\n  \"talleyrand\": \"talleyrand\",\n  \"talma\": \"talm\",\n  \"taloches\": \"taloch\",\n  \"talons\": \"talon\",\n  \"talus\": \"talus\",\n  \"tam\": \"tam\",\n  \"tamarins\": \"tamarin\",\n  \"tambour\": \"tambour\",\n  \"tambourins\": \"tambourin\",\n  \"tambours\": \"tambour\",\n  \"tams\": \"tam\",\n  \"tanari\": \"tanar\",\n  \"tanbeau\": \"tanbeau\",\n  \"tancrède\": \"tancred\",\n  \"tandis\": \"tand\",\n  \"tangage\": \"tangag\",\n  \"tangles\": \"tangl\",\n  \"tankadère\": \"tankader\",\n  \"tankardere\": \"tankarder\",\n  \"tankardère\": \"tankarder\",\n  \"tankas\": \"tank\",\n  \"tannah\": \"tannah\",\n  \"tanquam\": \"tanquam\",\n  \"tant\": \"tant\",\n  \"tante\": \"tant\",\n  \"tantes\": \"tant\",\n  \"tantôt\": \"tantôt\",\n  \"tanzi\": \"tanz\",\n  \"tapage\": \"tapag\",\n  \"tapé\": \"tap\",\n  \"tapis\": \"tapis\",\n  \"tapissée\": \"tapiss\",\n  \"tapisserie\": \"tapisser\",\n  \"tapissier\": \"tapissi\",\n  \"tapissiers\": \"tapissi\",\n  \"tapty\": \"tapty\",\n  \"tard\": \"tard\",\n  \"tarda\": \"tard\",\n  \"tardaient\": \"tard\",\n  \"tardait\": \"tard\",\n  \"tarde\": \"tard\",\n  \"tardé\": \"tard\",\n  \"tarder\": \"tard\",\n  \"tarderait\": \"tard\",\n  \"tardèrent\": \"tard\",\n  \"tardive\": \"tardiv\",\n  \"tarés\": \"tar\",\n  \"taries\": \"tar\",\n  \"tarirent\": \"tar\",\n  \"tarissait\": \"tar\",\n  \"tarit\": \"tar\",\n  \"tarots\": \"tarot\",\n  \"tarragone\": \"tarragon\",\n  \"tartines\": \"tartin\",\n  \"tartufe\": \"tartuf\",\n  \"tas\": \"tas\",\n  \"tasse\": \"tass\",\n  \"tasses\": \"tass\",\n  \"tâtonnent\": \"tâtonnent\",\n  \"taudis\": \"taud\",\n  \"taureaux\": \"taureau\",\n  \"taverne\": \"tavern\",\n  \"taxes\": \"tax\",\n  \"taxis\": \"tax\",\n  \"te\": \"te\",\n  \"tea\": \"te\",\n  \"tecks\": \"teck\",\n  \"teindre\": \"teindr\",\n  \"teint\": \"teint\",\n  \"teinte\": \"teint\",\n  \"teintes\": \"teint\",\n  \"tel\": \"tel\",\n  \"telegraph\": \"telegraph\",\n  \"télégraphe\": \"télégraph\",\n  \"télégraphié\": \"télégraphi\",\n  \"télégraphique\": \"télégraph\",\n  \"télégraphiques\": \"télégraph\",\n  \"télémaque\": \"télémaqu\",\n  \"télescope\": \"télescop\",\n  \"télescopes\": \"télescop\",\n  \"telle\": \"tel\",\n  \"tellement\": \"tel\",\n  \"telles\": \"tel\",\n  \"tels\": \"tel\",\n  \"téméraire\": \"témérair\",\n  \"témérité\": \"témer\",\n  \"témoignage\": \"témoignag\",\n  \"témoignaient\": \"témoign\",\n  \"témoignait\": \"témoign\",\n  \"temoigne\": \"temoign\",\n  \"témoigne\": \"témoign\",\n  \"témoigné\": \"témoign\",\n  \"témoigner\": \"témoign\",\n  \"témoigneront\": \"témoign\",\n  \"témoigniez\": \"témoign\",\n  \"témoin\": \"témoin\",\n  \"témoins\": \"témoin\",\n  \"tempe\": \"temp\",\n  \"tempérait\": \"temper\",\n  \"tempérament\": \"temper\",\n  \"température\": \"températur\",\n  \"tempérée\": \"temper\",\n  \"tempes\": \"temp\",\n  \"tempest\": \"tempest\",\n  \"tempête\": \"tempêt\",\n  \"temple\": \"templ\",\n  \"temples\": \"templ\",\n  \"temps\": \"temp\",\n  \"tenable\": \"tenabl\",\n  \"ténacité\": \"ténac\",\n  \"tenaient\": \"ten\",\n  \"tenais\": \"ten\",\n  \"tenait\": \"ten\",\n  \"tenant\": \"ten\",\n  \"tenante\": \"ten\",\n  \"tend\": \"tend\",\n  \"tendaient\": \"tend\",\n  \"tendait\": \"tend\",\n  \"tendance\": \"tendanc\",\n  \"tendent\": \"tendent\",\n  \"tender\": \"tend\",\n  \"tendit\": \"tend\",\n  \"tendre\": \"tendr\",\n  \"tendrement\": \"tendr\",\n  \"tendres\": \"tendr\",\n  \"tendresse\": \"tendress\",\n  \"tendresses\": \"tendress\",\n  \"tendu\": \"tendu\",\n  \"tendue\": \"tendu\",\n  \"tendues\": \"tendu\",\n  \"tendus\": \"tendus\",\n  \"tenerani\": \"teneran\",\n  \"tenere\": \"tener\",\n  \"teneur\": \"teneur\",\n  \"tenez\": \"ten\",\n  \"tenir\": \"ten\",\n  \"tenons\": \"tenon\",\n  \"ténor\": \"ténor\",\n  \"tenta\": \"tent\",\n  \"tentait\": \"tent\",\n  \"tentation\": \"tentat\",\n  \"tentations\": \"tentat\",\n  \"tentative\": \"tentat\",\n  \"tentatives\": \"tentat\",\n  \"tente\": \"tent\",\n  \"tenté\": \"tent\",\n  \"tenter\": \"tent\",\n  \"tenteras\": \"tent\",\n  \"tentez\": \"tent\",\n  \"tentures\": \"tentur\",\n  \"tenu\": \"tenu\",\n  \"tenue\": \"tenu\",\n  \"tenues\": \"tenu\",\n  \"tenus\": \"tenus\",\n  \"terme\": \"term\",\n  \"termes\": \"term\",\n  \"termina\": \"termin\",\n  \"terminaient\": \"termin\",\n  \"terminait\": \"termin\",\n  \"termine\": \"termin\",\n  \"terminé\": \"termin\",\n  \"terminée\": \"termin\",\n  \"terminées\": \"termin\",\n  \"terminer\": \"termin\",\n  \"terminera\": \"termin\",\n  \"terminèrent\": \"termin\",\n  \"ternir\": \"tern\",\n  \"terrain\": \"terrain\",\n  \"terrains\": \"terrain\",\n  \"terrasse\": \"terr\",\n  \"terrassé\": \"terrass\",\n  \"terrasses\": \"terr\",\n  \"terrassiers\": \"terrassi\",\n  \"terre\": \"terr\",\n  \"terres\": \"terr\",\n  \"terrestre\": \"terrestr\",\n  \"terrestres\": \"terrestr\",\n  \"terreur\": \"terreur\",\n  \"terreurs\": \"terreur\",\n  \"terrible\": \"terribl\",\n  \"terriblement\": \"terribl\",\n  \"terribles\": \"terribl\",\n  \"territoire\": \"territoir\",\n  \"tertio\": \"tertio\",\n  \"tertre\": \"tertr\",\n  \"terzo\": \"terzo\",\n  \"tes\": \"te\",\n  \"testa\": \"test\",\n  \"testament\": \"test\",\n  \"tête\": \"têt\",\n  \"têtes\": \"têt\",\n  \"teulier\": \"teuli\",\n  \"texte\": \"text\",\n  \"textuellement\": \"textuel\",\n  \"thaler\": \"thal\",\n  \"that\": \"that\",\n  \"the\": \"the\",\n  \"thé\": \"thé\",\n  \"théâtral\": \"théâtral\",\n  \"théâtre\": \"théâtr\",\n  \"théâtres\": \"théâtr\",\n  \"theft\": \"theft\",\n  \"thème\": \"them\",\n  \"thèmes\": \"them\",\n  \"thémistocle\": \"thémistocl\",\n  \"then\": \"then\",\n  \"théodolinde\": \"théodolind\",\n  \"théologie\": \"théolog\",\n  \"théologien\": \"théologien\",\n  \"théorie\": \"théor\",\n  \"théories\": \"théor\",\n  \"théoriquement\": \"théoriqu\",\n  \"there\": \"ther\",\n  \"thérèse\": \"théres\",\n  \"thermomètre\": \"thermometr\",\n  \"thésée\": \"thes\",\n  \"thing\": \"thing\",\n  \"this\": \"this\",\n  \"thomas\": \"thom\",\n  \"though\": \"though\",\n  \"thousands\": \"thousand\",\n  \"thrilling\": \"thrilling\",\n  \"thugs\": \"thug\",\n  \"tibère\": \"tiber\",\n  \"tibi\": \"tib\",\n  \"tien\": \"tien\",\n  \"tiendra\": \"tiendr\",\n  \"tiendrait\": \"tiendr\",\n  \"tiendras\": \"tiendr\",\n  \"tiendrez\": \"tiendr\",\n  \"tiendront\": \"tiendront\",\n  \"tienne\": \"tien\",\n  \"tiennent\": \"tiennent\",\n  \"tiens\": \"tien\",\n  \"tient\": \"tient\",\n  \"tierce\": \"tierc\",\n  \"tiers\": \"tier\",\n  \"tige\": \"tig\",\n  \"tiges\": \"tig\",\n  \"tigre\": \"tigr\",\n  \"tigres\": \"tigr\",\n  \"tilbury\": \"tilbury\",\n  \"tilburys\": \"tilbury\",\n  \"tilleul\": \"tilleul\",\n  \"tilleuls\": \"tilleul\",\n  \"timbre\": \"timbr\",\n  \"timbrée\": \"timbr\",\n  \"timbrées\": \"timbr\",\n  \"timbres\": \"timbr\",\n  \"time\": \"tim\",\n  \"times\": \"tim\",\n  \"timide\": \"timid\",\n  \"timidement\": \"timid\",\n  \"timides\": \"timid\",\n  \"timidité\": \"timid\",\n  \"timorée\": \"timor\",\n  \"tingou\": \"tingou\",\n  \"tinrent\": \"tinrent\",\n  \"tinssent\": \"tinssent\",\n  \"tint\": \"tint\",\n  \"tînt\": \"tînt\",\n  \"tintamarre\": \"tintamarr\",\n  \"tinte\": \"tint\",\n  \"tira\": \"tir\",\n  \"tirade\": \"tirad\",\n  \"tirades\": \"tirad\",\n  \"tirage\": \"tirag\",\n  \"tiraient\": \"tir\",\n  \"tiraillé\": \"tiraill\",\n  \"tirailler\": \"tiraill\",\n  \"tirait\": \"tir\",\n  \"tirant\": \"tir\",\n  \"tirât\": \"tir\",\n  \"tire\": \"tir\",\n  \"tiré\": \"tir\",\n  \"tirée\": \"tir\",\n  \"tirent\": \"tirent\",\n  \"tirer\": \"tir\",\n  \"tirera\": \"tir\",\n  \"tireraient\": \"tir\",\n  \"tirerais\": \"tir\",\n  \"tirerait\": \"tir\",\n  \"tirèrent\": \"tir\",\n  \"tirerez\": \"tir\",\n  \"tirés\": \"tir\",\n  \"tirez\": \"tir\",\n  \"tiroir\": \"tiroir\",\n  \"tissu\": \"tissu\",\n  \"tissue\": \"tissu\",\n  \"tite\": \"tit\",\n  \"titre\": \"titr\",\n  \"titres\": \"titr\",\n  \"titubant\": \"titub\",\n  \"titulaire\": \"titulair\",\n  \"to\": \"to\",\n  \"together\": \"togeth\",\n  \"toi\": \"toi\",\n  \"toile\": \"toil\",\n  \"toiles\": \"toil\",\n  \"toilette\": \"toilet\",\n  \"toilettes\": \"toilet\",\n  \"toisait\": \"tois\",\n  \"toisant\": \"tois\",\n  \"toises\": \"tois\",\n  \"toison\": \"toison\",\n  \"toit\": \"toit\",\n  \"toits\": \"toit\",\n  \"toiture\": \"toitur\",\n  \"tolède\": \"toled\",\n  \"tolèrent\": \"tol\",\n  \"tolérer\": \"toler\",\n  \"tolly\": \"tolly\",\n  \"tomba\": \"tomb\",\n  \"tombaient\": \"tomb\",\n  \"tombait\": \"tomb\",\n  \"tombant\": \"tomb\",\n  \"tombante\": \"tomb\",\n  \"tombassent\": \"tomb\",\n  \"tombât\": \"tomb\",\n  \"tombe\": \"tomb\",\n  \"tombé\": \"tomb\",\n  \"tombeau\": \"tombeau\",\n  \"tombeaux\": \"tombeau\",\n  \"tombée\": \"tomb\",\n  \"tombent\": \"tombent\",\n  \"tomber\": \"tomb\",\n  \"tomberai\": \"tomb\",\n  \"tomberaient\": \"tomb\",\n  \"tomberais\": \"tomb\",\n  \"tombèrent\": \"tomb\",\n  \"tomberont\": \"tomb\",\n  \"tombés\": \"tomb\",\n  \"tombez\": \"tomb\",\n  \"tombone\": \"tombon\",\n  \"tome\": \"tom\",\n  \"tomes\": \"tom\",\n  \"ton\": \"ton\",\n  \"tonalités\": \"tonal\",\n  \"tondre\": \"tondr\",\n  \"tonnage\": \"tonnag\",\n  \"tonnaient\": \"ton\",\n  \"tonnante\": \"ton\",\n  \"tonne\": \"ton\",\n  \"tonneaux\": \"tonneau\",\n  \"tonnelier\": \"tonneli\",\n  \"tonnerre\": \"tonnerr\",\n  \"tonnerres\": \"tonnerr\",\n  \"tonnes\": \"ton\",\n  \"tonte\": \"tont\",\n  \"too\": \"too\",\n  \"toque\": \"toqu\",\n  \"torche\": \"torch\",\n  \"torches\": \"torch\",\n  \"torchon\": \"torchon\",\n  \"tordait\": \"tord\",\n  \"tordant\": \"tord\",\n  \"tordit\": \"tord\",\n  \"tordre\": \"tordr\",\n  \"tords\": \"tord\",\n  \"torpeur\": \"torpeur\",\n  \"torrent\": \"torrent\",\n  \"torrents\": \"torrent\",\n  \"torsade\": \"torsad\",\n  \"torses\": \"tors\",\n  \"tort\": \"tort\",\n  \"torto\": \"torto\",\n  \"tortoni\": \"torton\",\n  \"torts\": \"tort\",\n  \"tortue\": \"tortu\",\n  \"tortues\": \"tortu\",\n  \"tortura\": \"tortur\",\n  \"torturait\": \"tortur\",\n  \"torture\": \"tortur\",\n  \"torturé\": \"tortur\",\n  \"torturer\": \"tortur\",\n  \"tortures\": \"tortur\",\n  \"toscane\": \"toscan\",\n  \"tôt\": \"tôt\",\n  \"total\": \"total\",\n  \"totale\": \"total\",\n  \"totalement\": \"total\",\n  \"toto\": \"toto\",\n  \"toucha\": \"touch\",\n  \"touchaient\": \"touch\",\n  \"touchais\": \"touch\",\n  \"touchait\": \"touch\",\n  \"touchant\": \"touch\",\n  \"touchante\": \"touch\",\n  \"touchantes\": \"touch\",\n  \"touchants\": \"touch\",\n  \"touchât\": \"touch\",\n  \"touche\": \"touch\",\n  \"touché\": \"touch\",\n  \"touchée\": \"touch\",\n  \"toucher\": \"touch\",\n  \"touchera\": \"touch\",\n  \"toucherez\": \"touch\",\n  \"toucheront\": \"touch\",\n  \"touches\": \"touch\",\n  \"touchés\": \"touch\",\n  \"touffe\": \"touff\",\n  \"touffes\": \"touff\",\n  \"touffu\": \"touffu\",\n  \"touffus\": \"touffus\",\n  \"toujours\": \"toujour\",\n  \"toulouse\": \"toulous\",\n  \"toupie\": \"toup\",\n  \"toupies\": \"toup\",\n  \"tour\": \"tour\",\n  \"tourbillon\": \"tourbillon\",\n  \"tourbillonnait\": \"tourbillon\",\n  \"tourbillons\": \"tourbillon\",\n  \"touriste\": \"tourist\",\n  \"tourment\": \"tourment\",\n  \"tourmentait\": \"tourment\",\n  \"tourmente\": \"tourment\",\n  \"tourmenté\": \"tourment\",\n  \"tourmentée\": \"tourment\",\n  \"tourmentés\": \"tourment\",\n  \"tourmentin\": \"tourmentin\",\n  \"tourments\": \"tourment\",\n  \"tourna\": \"tourn\",\n  \"tournai\": \"tourn\",\n  \"tournaient\": \"tourn\",\n  \"tournait\": \"tourn\",\n  \"tournant\": \"tourn\",\n  \"tournante\": \"tourn\",\n  \"tournantes\": \"tourn\",\n  \"tourne\": \"tourn\",\n  \"tourné\": \"tourn\",\n  \"tournée\": \"tourn\",\n  \"tournées\": \"tourn\",\n  \"tournent\": \"tournent\",\n  \"tourner\": \"tourn\",\n  \"tournera\": \"tourn\",\n  \"tournèrent\": \"tourn\",\n  \"tourniquets\": \"tourniquet\",\n  \"tournoyant\": \"tournoi\",\n  \"tournure\": \"tournur\",\n  \"tournures\": \"tournur\",\n  \"tours\": \"tour\",\n  \"tous\": \"tous\",\n  \"toussa\": \"touss\",\n  \"tousser\": \"touss\",\n  \"tout\": \"tout\",\n  \"toute\": \"tout\",\n  \"toutefois\": \"toutefois\",\n  \"toutes\": \"tout\",\n  \"tr\": \"tr\",\n  \"trac\": \"trac\",\n  \"traçait\": \"trac\",\n  \"tracasse\": \"trac\",\n  \"tracasserie\": \"tracasser\",\n  \"tracasseries\": \"tracasser\",\n  \"trace\": \"trac\",\n  \"tracé\": \"trac\",\n  \"tracée\": \"trac\",\n  \"tracées\": \"trac\",\n  \"tracer\": \"trac\",\n  \"traces\": \"trac\",\n  \"tracés\": \"trac\",\n  \"traction\": \"traction\",\n  \"tradition\": \"tradit\",\n  \"traduction\": \"traduct\",\n  \"traduire\": \"traduir\",\n  \"traduis\": \"traduis\",\n  \"traduit\": \"traduit\",\n  \"traduite\": \"traduit\",\n  \"traduites\": \"traduit\",\n  \"tragédie\": \"traged\",\n  \"tragique\": \"tragiqu\",\n  \"tragiques\": \"tragiqu\",\n  \"trahi\": \"trah\",\n  \"trahie\": \"trah\",\n  \"trahies\": \"trah\",\n  \"trahir\": \"trah\",\n  \"trahira\": \"trah\",\n  \"trahirais\": \"trah\",\n  \"trahirait\": \"trah\",\n  \"trahiriez\": \"trah\",\n  \"trahiront\": \"trah\",\n  \"trahis\": \"trah\",\n  \"trahison\": \"trahison\",\n  \"trahissaient\": \"trah\",\n  \"trahissait\": \"trah\",\n  \"trahissant\": \"trah\",\n  \"trahisse\": \"trah\",\n  \"trahissez\": \"trah\",\n  \"trahit\": \"trah\",\n  \"trahît\": \"trah\",\n  \"train\": \"train\",\n  \"traînaient\": \"traîn\",\n  \"traînait\": \"traîn\",\n  \"traînante\": \"traîn\",\n  \"traînard\": \"traînard\",\n  \"traîné\": \"traîn\",\n  \"traîneau\": \"traîneau\",\n  \"traîneaux\": \"traîneau\",\n  \"traînée\": \"traîn\",\n  \"traînées\": \"traîn\",\n  \"traîner\": \"traîn\",\n  \"trains\": \"train\",\n  \"trait\": \"trait\",\n  \"traita\": \"trait\",\n  \"traitait\": \"trait\",\n  \"traitant\": \"trait\",\n  \"traitât\": \"trait\",\n  \"traite\": \"trait\",\n  \"traité\": \"trait\",\n  \"traitée\": \"trait\",\n  \"traitement\": \"trait\",\n  \"traitent\": \"traitent\",\n  \"traiter\": \"trait\",\n  \"traitera\": \"trait\",\n  \"traitèrent\": \"trait\",\n  \"traités\": \"trait\",\n  \"traitez\": \"trait\",\n  \"traître\": \"traîtr\",\n  \"traîtreusement\": \"traîtreux\",\n  \"traits\": \"trait\",\n  \"trajectoires\": \"trajectoir\",\n  \"trajet\": \"trajet\",\n  \"trame\": \"tram\",\n  \"tramezzina\": \"tramezzin\",\n  \"tramways\": \"tramway\",\n  \"tranchait\": \"tranch\",\n  \"tranchant\": \"tranch\",\n  \"tranchants\": \"tranch\",\n  \"tranche\": \"tranch\",\n  \"tranchée\": \"tranch\",\n  \"tranchées\": \"tranch\",\n  \"tranches\": \"tranch\",\n  \"tranchés\": \"tranch\",\n  \"tranquille\": \"tranquill\",\n  \"tranquillement\": \"tranquill\",\n  \"tranquilles\": \"tranquill\",\n  \"tranquillise\": \"tranquillis\",\n  \"tranquillisée\": \"tranquillis\",\n  \"tranquilliserait\": \"tranquillis\",\n  \"tranquillisez\": \"tranquillis\",\n  \"tranquillité\": \"tranquill\",\n  \"transaction\": \"transact\",\n  \"transactions\": \"transact\",\n  \"transatlantique\": \"transatlant\",\n  \"transatlantiques\": \"transatlant\",\n  \"transcrire\": \"transcrir\",\n  \"transcrit\": \"transcr\",\n  \"transcrivait\": \"transcriv\",\n  \"transcrivant\": \"transcriv\",\n  \"transcrivit\": \"transcriv\",\n  \"transes\": \"trans\",\n  \"transfèrement\": \"transfer\",\n  \"transférer\": \"transfer\",\n  \"transfigure\": \"transfigur\",\n  \"transforma\": \"transform\",\n  \"transformant\": \"transform\",\n  \"transformé\": \"transform\",\n  \"transformée\": \"transform\",\n  \"transforment\": \"transforment\",\n  \"transformer\": \"transform\",\n  \"transformés\": \"transform\",\n  \"transfuge\": \"transfug\",\n  \"transgression\": \"transgress\",\n  \"transie\": \"trans\",\n  \"transiger\": \"transig\",\n  \"transire\": \"transir\",\n  \"transit\": \"trans\",\n  \"transmettre\": \"transmettr\",\n  \"transmise\": \"transmis\",\n  \"transmissible\": \"transmissibl\",\n  \"transmit\": \"transm\",\n  \"transocéanienne\": \"transocéanien\",\n  \"transocéaniennes\": \"transocéanien\",\n  \"transparents\": \"transparent\",\n  \"transport\": \"transport\",\n  \"transporta\": \"transport\",\n  \"transportait\": \"transport\",\n  \"transportât\": \"transport\",\n  \"transporté\": \"transport\",\n  \"transportée\": \"transport\",\n  \"transporter\": \"transport\",\n  \"transports\": \"transport\",\n  \"transversale\": \"transversal\",\n  \"trapp\": \"trapp\",\n  \"trappe\": \"trapp\",\n  \"trappes\": \"trapp\",\n  \"trappiste\": \"trappist\",\n  \"trapues\": \"trapu\",\n  \"traqué\": \"traqu\",\n  \"trattamento\": \"trattamento\",\n  \"trattoria\": \"trattori\",\n  \"travail\": \"travail\",\n  \"travailla\": \"travaill\",\n  \"travaillaient\": \"travaill\",\n  \"travaillait\": \"travaill\",\n  \"travaille\": \"travaill\",\n  \"travaillé\": \"travaill\",\n  \"travailler\": \"travaill\",\n  \"travailleurs\": \"travailleur\",\n  \"travaux\": \"traval\",\n  \"travers\": \"traver\",\n  \"traversa\": \"travers\",\n  \"traversaient\": \"travers\",\n  \"traversait\": \"travers\",\n  \"traversant\": \"travers\",\n  \"traverse\": \"travers\",\n  \"traversé\": \"travers\",\n  \"traversee\": \"traverse\",\n  \"traversée\": \"travers\",\n  \"traversées\": \"travers\",\n  \"traversent\": \"traversent\",\n  \"traverser\": \"travers\",\n  \"traverserai\": \"travers\",\n  \"traversèrent\": \"travers\",\n  \"traversés\": \"travers\",\n  \"traversez\": \"travers\",\n  \"trébuchant\": \"trébuch\",\n  \"tredici\": \"tredic\",\n  \"treize\": \"treiz\",\n  \"treizième\": \"treiziem\",\n  \"trembla\": \"trembl\",\n  \"tremblaient\": \"trembl\",\n  \"tremblais\": \"trembl\",\n  \"tremblait\": \"trembl\",\n  \"tremblant\": \"trembl\",\n  \"tremblante\": \"trembl\",\n  \"tremblantes\": \"trembl\",\n  \"tremble\": \"trembl\",\n  \"tremblé\": \"trembl\",\n  \"tremblement\": \"trembl\",\n  \"trembler\": \"trembl\",\n  \"tremblera\": \"trembl\",\n  \"tremblerai\": \"trembl\",\n  \"trembleront\": \"trembl\",\n  \"tremblez\": \"trembl\",\n  \"trempe\": \"tremp\",\n  \"trempé\": \"tremp\",\n  \"tremper\": \"tremp\",\n  \"tremplin\": \"tremplin\",\n  \"tremulously\": \"tremulously\",\n  \"trentaine\": \"trentain\",\n  \"trente\": \"trent\",\n  \"trépas\": \"trep\",\n  \"tres\": \"tre\",\n  \"très\": \"tres\",\n  \"trésor\": \"trésor\",\n  \"trésors\": \"trésor\",\n  \"tressailli\": \"tressaill\",\n  \"tressaillir\": \"tressaill\",\n  \"tressaillit\": \"tressaill\",\n  \"tresse\": \"tress\",\n  \"tressé\": \"tress\",\n  \"trêve\": \"trêv\",\n  \"trévise\": \"trévis\",\n  \"triangle\": \"triangl\",\n  \"triangulaire\": \"triangulair\",\n  \"tribu\": \"tribu\",\n  \"tribun\": \"tribun\",\n  \"tribunal\": \"tribunal\",\n  \"tribunaux\": \"tribunal\",\n  \"tribune\": \"tribun\",\n  \"tributaires\": \"tributair\",\n  \"tric\": \"tric\",\n  \"tricolore\": \"tricolor\",\n  \"trinquette\": \"trinquet\",\n  \"trio\": \"trio\",\n  \"triompha\": \"triomph\",\n  \"triomphait\": \"triomph\",\n  \"triomphale\": \"triomphal\",\n  \"triomphant\": \"triomph\",\n  \"triomphante\": \"triomph\",\n  \"triomphe\": \"triomph\",\n  \"triomphé\": \"triomph\",\n  \"triomphent\": \"triomphent\",\n  \"triompher\": \"triomph\",\n  \"triomphera\": \"triomph\",\n  \"triompherait\": \"triomph\",\n  \"triompheront\": \"triomph\",\n  \"triomphes\": \"triomph\",\n  \"triple\": \"tripl\",\n  \"triplé\": \"tripl\",\n  \"triste\": \"trist\",\n  \"tristement\": \"trist\",\n  \"tristes\": \"trist\",\n  \"tristesse\": \"tristess\",\n  \"tristesses\": \"tristess\",\n  \"triumvirat\": \"triumvirat\",\n  \"triviale\": \"trivial\",\n  \"trois\": \"trois\",\n  \"troisième\": \"troisiem\",\n  \"troisièmes\": \"troisiem\",\n  \"trombe\": \"tromb\",\n  \"trompa\": \"tromp\",\n  \"trompaient\": \"tromp\",\n  \"trompait\": \"tromp\",\n  \"trompant\": \"tromp\",\n  \"trompe\": \"tromp\",\n  \"trompé\": \"tromp\",\n  \"trompée\": \"tromp\",\n  \"tromper\": \"tromp\",\n  \"tromperai\": \"tromp\",\n  \"tromperais\": \"tromp\",\n  \"trompes\": \"tromp\",\n  \"trompés\": \"tromp\",\n  \"trompez\": \"tromp\",\n  \"tronc\": \"tronc\",\n  \"tronçon\": \"tronçon\",\n  \"troncs\": \"tronc\",\n  \"trône\": \"trôn\",\n  \"trop\": \"trop\",\n  \"trophée\": \"troph\",\n  \"tropicale\": \"tropical\",\n  \"tropicales\": \"tropical\",\n  \"tropique\": \"tropiqu\",\n  \"tropiques\": \"tropiqu\",\n  \"troppo\": \"troppo\",\n  \"trot\": \"trot\",\n  \"trottait\": \"trott\",\n  \"trotter\": \"trott\",\n  \"trottoir\": \"trottoir\",\n  \"trottoirs\": \"trottoir\",\n  \"trou\": \"trou\",\n  \"troubla\": \"troubl\",\n  \"troublaient\": \"troubl\",\n  \"troublait\": \"troubl\",\n  \"troublant\": \"troubl\",\n  \"trouble\": \"troubl\",\n  \"troublé\": \"troubl\",\n  \"troublée\": \"troubl\",\n  \"troublées\": \"troubl\",\n  \"troubler\": \"troubl\",\n  \"troublera\": \"troubl\",\n  \"troublèrent\": \"troubl\",\n  \"troubleront\": \"troubl\",\n  \"troubles\": \"troubl\",\n  \"troublés\": \"troubl\",\n  \"troublez\": \"troubl\",\n  \"troupe\": \"troup\",\n  \"troupeau\": \"troupeau\",\n  \"troupes\": \"troup\",\n  \"troupiers\": \"troupi\",\n  \"trous\": \"trous\",\n  \"trousses\": \"trouss\",\n  \"trouva\": \"trouv\",\n  \"trouvai\": \"trouv\",\n  \"trouvaient\": \"trouv\",\n  \"trouvais\": \"trouv\",\n  \"trouvait\": \"trouv\",\n  \"trouvant\": \"trouv\",\n  \"trouvât\": \"trouv\",\n  \"trouve\": \"trouv\",\n  \"trouvé\": \"trouv\",\n  \"trouvée\": \"trouv\",\n  \"trouvées\": \"trouv\",\n  \"trouvent\": \"trouvent\",\n  \"trouver\": \"trouv\",\n  \"trouvera\": \"trouv\",\n  \"trouverai\": \"trouv\",\n  \"trouveraient\": \"trouv\",\n  \"trouverais\": \"trouv\",\n  \"trouverait\": \"trouv\",\n  \"trouveras\": \"trouv\",\n  \"trouvèrent\": \"trouv\",\n  \"trouverez\": \"trouv\",\n  \"trouveriez\": \"trouv\",\n  \"trouverions\": \"trouv\",\n  \"trouverons\": \"trouv\",\n  \"trouveront\": \"trouv\",\n  \"trouves\": \"trouv\",\n  \"trouvés\": \"trouv\",\n  \"trouvez\": \"trouv\",\n  \"trouvons\": \"trouvon\",\n  \"truites\": \"truit\",\n  \"trunk\": \"trunk\",\n  \"tu\": \"tu\",\n  \"tua\": \"tu\",\n  \"tuais\": \"tu\",\n  \"tuait\": \"tu\",\n  \"tuant\": \"tu\",\n  \"tudieu\": \"tudieu\",\n  \"tue\": \"tu\",\n  \"tué\": \"tu\",\n  \"tuée\": \"tu\",\n  \"tuent\": \"tuent\",\n  \"tuer\": \"tu\",\n  \"tuera\": \"tu\",\n  \"tuerai\": \"tu\",\n  \"tuerais\": \"tu\",\n  \"tuerait\": \"tu\",\n  \"tués\": \"tu\",\n  \"tuez\": \"tu\",\n  \"tuileries\": \"tuiler\",\n  \"tuiles\": \"tuil\",\n  \"tuilla\": \"tuill\",\n  \"tumulte\": \"tumult\",\n  \"tumultueuse\": \"tumultu\",\n  \"tunique\": \"tuniqu\",\n  \"tunnel\": \"tunnel\",\n  \"tunnels\": \"tunnel\",\n  \"turban\": \"turban\",\n  \"turbans\": \"turban\",\n  \"turin\": \"turin\",\n  \"turn\": \"turn\",\n  \"turpitude\": \"turpitud\",\n  \"tussaud\": \"tussaud\",\n  \"tut\": \"tut\",\n  \"tutoie\": \"tutoi\",\n  \"tutoiement\": \"tutoi\",\n  \"tutoyait\": \"tutoi\",\n  \"tutoyer\": \"tutoi\",\n  \"tutti\": \"tutt\",\n  \"tutto\": \"tutto\",\n  \"tuyau\": \"tuyau\",\n  \"tuyaux\": \"tuyal\",\n  \"twelfth\": \"twelfth\",\n  \"two\": \"two\",\n  \"tympaniser\": \"tympanis\",\n  \"type\": \"typ\",\n  \"types\": \"typ\",\n  \"typhon\": \"typhon\",\n  \"tyran\": \"tyran\",\n  \"tyrannie\": \"tyrann\",\n  \"tyrannisait\": \"tyrannis\",\n  \"tyrans\": \"tyran\",\n  \"uçaf\": \"uçaf\",\n  \"uddaul\": \"uddaul\",\n  \"ultimatum\": \"ultimatum\",\n  \"ultra\": \"ultra\",\n  \"ultras\": \"ultras\",\n  \"ulysse\": \"ulyss\",\n  \"un\": \"un\",\n  \"unam\": \"unam\",\n  \"unanime\": \"unanim\",\n  \"unanimement\": \"unanim\",\n  \"uncertain\": \"uncertain\",\n  \"une\": \"une\",\n  \"unes\": \"une\",\n  \"uni\": \"uni\",\n  \"unie\": \"uni\",\n  \"unième\": \"uniem\",\n  \"unies\": \"uni\",\n  \"uniforme\": \"uniform\",\n  \"uniformes\": \"uniform\",\n  \"union\": \"union\",\n  \"unique\": \"uniqu\",\n  \"uniquement\": \"uniqu\",\n  \"unis\": \"unis\",\n  \"unissaient\": \"uniss\",\n  \"unissait\": \"uniss\",\n  \"unissez\": \"uniss\",\n  \"univers\": \"univer\",\n  \"universel\": \"universel\",\n  \"universelle\": \"universel\",\n  \"uns\": \"un\",\n  \"uranus\": \"uranus\",\n  \"urbanité\": \"urban\",\n  \"urne\": \"urne\",\n  \"usa\": \"usa\",\n  \"usage\": \"usag\",\n  \"usages\": \"usag\",\n  \"usant\": \"usant\",\n  \"use\": \"use\",\n  \"usé\": \"usé\",\n  \"user\": \"user\",\n  \"usine\": \"usin\",\n  \"ustensile\": \"ustensil\",\n  \"usure\": \"usur\",\n  \"usuriers\": \"usuri\",\n  \"usurpateur\": \"usurp\",\n  \"usurpations\": \"usurp\",\n  \"usurpe\": \"usurp\",\n  \"usurpé\": \"usurp\",\n  \"usurpées\": \"usurp\",\n  \"usurpés\": \"usurp\",\n  \"utah\": \"utah\",\n  \"utile\": \"util\",\n  \"utiles\": \"util\",\n  \"utilisaient\": \"utilis\",\n  \"utiliser\": \"utilis\",\n  \"utilité\": \"util\",\n  \"uzeri\": \"uzer\",\n  \"uzès\": \"uzes\",\n  \"v\": \"v\",\n  \"va\": \"va\",\n  \"vacances\": \"vacanc\",\n  \"vacant\": \"vac\",\n  \"vacante\": \"vac\",\n  \"vacarme\": \"vacarm\",\n  \"vache\": \"vach\",\n  \"vacillais\": \"vacill\",\n  \"vagabond\": \"vagabond\",\n  \"vagabonde\": \"vagabond\",\n  \"vague\": \"vagu\",\n  \"vaguement\": \"vagu\",\n  \"vagues\": \"vagu\",\n  \"vaille\": \"vaill\",\n  \"vain\": \"vain\",\n  \"vaincre\": \"vaincr\",\n  \"vaincu\": \"vaincu\",\n  \"vaincue\": \"vaincu\",\n  \"vaincus\": \"vaincus\",\n  \"vaine\": \"vain\",\n  \"vainement\": \"vain\",\n  \"vaines\": \"vain\",\n  \"vainqueur\": \"vainqueur\",\n  \"vains\": \"vain\",\n  \"vais\": \"vais\",\n  \"vaisseau\": \"vaisseau\",\n  \"valable\": \"valabl\",\n  \"valables\": \"valabl\",\n  \"valaient\": \"val\",\n  \"valait\": \"val\",\n  \"valant\": \"val\",\n  \"vale\": \"val\",\n  \"valenod\": \"valenod\",\n  \"valent\": \"valent\",\n  \"valère\": \"valer\",\n  \"valet\": \"valet\",\n  \"valets\": \"valet\",\n  \"valeur\": \"valeur\",\n  \"vallee\": \"valle\",\n  \"vallée\": \"vall\",\n  \"vallées\": \"vall\",\n  \"valoir\": \"valoir\",\n  \"valois\": \"valois\",\n  \"valserra\": \"valserr\",\n  \"valu\": \"valu\",\n  \"valurent\": \"valurent\",\n  \"valut\": \"valut\",\n  \"vandalisme\": \"vandal\",\n  \"vane\": \"van\",\n  \"vaneau\": \"vaneau\",\n  \"vanité\": \"vanit\",\n  \"vaniteuse\": \"vanit\",\n  \"vaniteux\": \"vanit\",\n  \"vanta\": \"vant\",\n  \"vantait\": \"vant\",\n  \"vanté\": \"vant\",\n  \"vantent\": \"vantent\",\n  \"vanter\": \"vant\",\n  \"vanvitelli\": \"vanvitel\",\n  \"vapeur\": \"vapeur\",\n  \"vapeurs\": \"vapeur\",\n  \"varèse\": \"vares\",\n  \"variaient\": \"vari\",\n  \"varie\": \"var\",\n  \"varié\": \"vari\",\n  \"variétés\": \"variet\",\n  \"vas\": \"vas\",\n  \"vase\": \"vas\",\n  \"vases\": \"vas\",\n  \"vasi\": \"vas\",\n  \"vasistas\": \"vasist\",\n  \"vaste\": \"vast\",\n  \"vastes\": \"vast\",\n  \"vau\": \"vau\",\n  \"vaudeville\": \"vaudevill\",\n  \"vaudra\": \"vaudr\",\n  \"vaudrait\": \"vaudr\",\n  \"vaudront\": \"vaudront\",\n  \"vaurien\": \"vaurien\",\n  \"vaut\": \"vaut\",\n  \"vaux\": \"vaux\",\n  \"vécu\": \"vécu\",\n  \"vécurent\": \"vécurent\",\n  \"vécut\": \"vécut\",\n  \"vécût\": \"vécût\",\n  \"vedette\": \"vedet\",\n  \"vega\": \"veg\",\n  \"végétaient\": \"véget\",\n  \"végéter\": \"véget\",\n  \"véhémence\": \"véhément\",\n  \"véhément\": \"veh\",\n  \"véhicule\": \"véhicul\",\n  \"véhiculé\": \"véhicul\",\n  \"véhicules\": \"véhicul\",\n  \"veilla\": \"veil\",\n  \"veillaient\": \"veil\",\n  \"veillait\": \"veil\",\n  \"veillât\": \"veil\",\n  \"veille\": \"veil\",\n  \"veillé\": \"veil\",\n  \"veillent\": \"veillent\",\n  \"veiller\": \"veil\",\n  \"veillerons\": \"veil\",\n  \"veilles\": \"veil\",\n  \"veilleuse\": \"veilleux\",\n  \"veine\": \"vein\",\n  \"veines\": \"vein\",\n  \"velléité\": \"velléit\",\n  \"velléités\": \"velléit\",\n  \"velleja\": \"vellej\",\n  \"velours\": \"velour\",\n  \"vély\": \"vély\",\n  \"venaient\": \"ven\",\n  \"venait\": \"ven\",\n  \"vénales\": \"vénal\",\n  \"vénalité\": \"vénal\",\n  \"venant\": \"ven\",\n  \"venceslas\": \"vencesl\",\n  \"vend\": \"vend\",\n  \"vendait\": \"vend\",\n  \"vendant\": \"vend\",\n  \"vendée\": \"vend\",\n  \"vendent\": \"vendent\",\n  \"vendeur\": \"vendeur\",\n  \"vendeurs\": \"vendeur\",\n  \"vendit\": \"vend\",\n  \"vendrai\": \"vendr\",\n  \"vendrais\": \"vendr\",\n  \"vendrait\": \"vendr\",\n  \"vendre\": \"vendr\",\n  \"vendredi\": \"vendred\",\n  \"vendredis\": \"vendred\",\n  \"vendront\": \"vendront\",\n  \"vends\": \"vend\",\n  \"vendu\": \"vendu\",\n  \"vendue\": \"vendu\",\n  \"vendus\": \"vendus\",\n  \"vénérable\": \"véner\",\n  \"vénérables\": \"véner\",\n  \"vénération\": \"véner\",\n  \"vénère\": \"véner\",\n  \"vénérées\": \"véner\",\n  \"vénérer\": \"véner\",\n  \"venette\": \"venet\",\n  \"venez\": \"ven\",\n  \"venge\": \"veng\",\n  \"vengé\": \"veng\",\n  \"vengea\": \"veng\",\n  \"vengeait\": \"veng\",\n  \"vengeance\": \"vengeanc\",\n  \"vengée\": \"veng\",\n  \"vengent\": \"vengent\",\n  \"venger\": \"veng\",\n  \"vengera\": \"veng\",\n  \"vengerai\": \"veng\",\n  \"veniez\": \"ven\",\n  \"venin\": \"venin\",\n  \"venir\": \"ven\",\n  \"venise\": \"venis\",\n  \"vénitien\": \"vénitien\",\n  \"vénitiens\": \"vénitien\",\n  \"venons\": \"venon\",\n  \"vent\": \"vent\",\n  \"vente\": \"vent\",\n  \"ventes\": \"vent\",\n  \"ventre\": \"ventr\",\n  \"vents\": \"vent\",\n  \"venu\": \"venu\",\n  \"venue\": \"venu\",\n  \"venues\": \"venu\",\n  \"venus\": \"venus\",\n  \"vérandas\": \"vérand\",\n  \"verbal\": \"verbal\",\n  \"verbe\": \"verb\",\n  \"verdâtres\": \"verdâtr\",\n  \"verdict\": \"verdict\",\n  \"verdoyantes\": \"verdoi\",\n  \"verdoyants\": \"verdoi\",\n  \"verdure\": \"verdur\",\n  \"verger\": \"verg\",\n  \"vergogne\": \"vergogn\",\n  \"vergues\": \"vergu\",\n  \"vergy\": \"vergy\",\n  \"véridiques\": \"vérid\",\n  \"vérifia\": \"vérifi\",\n  \"vérification\": \"vérif\",\n  \"vérifié\": \"vérifi\",\n  \"vérifier\": \"vérifi\",\n  \"véritable\": \"vérit\",\n  \"véritablement\": \"vérit\",\n  \"véritables\": \"vérit\",\n  \"vérité\": \"vérit\",\n  \"vérités\": \"vérit\",\n  \"vermeilles\": \"vermeil\",\n  \"vermont\": \"vermont\",\n  \"vermoulu\": \"vermoulu\",\n  \"vermoulue\": \"vermoulu\",\n  \"verna\": \"vern\",\n  \"vernaye\": \"vernay\",\n  \"verne\": \"vern\",\n  \"vernes\": \"vern\",\n  \"verni\": \"vern\",\n  \"vernis\": \"vern\",\n  \"vérole\": \"vérol\",\n  \"verona\": \"veron\",\n  \"vérone\": \"véron\",\n  \"verra\": \"verr\",\n  \"verrai\": \"verr\",\n  \"verraient\": \"verr\",\n  \"verrais\": \"verr\",\n  \"verrait\": \"verr\",\n  \"verras\": \"verr\",\n  \"verre\": \"verr\",\n  \"verres\": \"verr\",\n  \"verrez\": \"verr\",\n  \"verrières\": \"verri\",\n  \"verrons\": \"verron\",\n  \"verront\": \"verront\",\n  \"verrou\": \"verrou\",\n  \"verrous\": \"verrous\",\n  \"verruqueux\": \"verruqu\",\n  \"vers\": \"ver\",\n  \"versa\": \"vers\",\n  \"versailles\": \"versaill\",\n  \"versait\": \"vers\",\n  \"versant\": \"vers\",\n  \"versants\": \"vers\",\n  \"verse\": \"vers\",\n  \"verser\": \"vers\",\n  \"versets\": \"verset\",\n  \"vert\": \"vert\",\n  \"verte\": \"vert\",\n  \"vertement\": \"vert\",\n  \"vertes\": \"vert\",\n  \"vertical\": \"vertical\",\n  \"verticale\": \"vertical\",\n  \"verticalement\": \"vertical\",\n  \"verts\": \"vert\",\n  \"vertu\": \"vertu\",\n  \"vertueuse\": \"vertueux\",\n  \"vertueuses\": \"vertueux\",\n  \"vertueux\": \"vertueux\",\n  \"vertus\": \"vertus\",\n  \"verve\": \"verv\",\n  \"very\": \"very\",\n  \"vespasien\": \"vespasien\",\n  \"vesper\": \"vesp\",\n  \"veste\": \"vest\",\n  \"vestes\": \"vest\",\n  \"vestibule\": \"vestibul\",\n  \"vestige\": \"vestig\",\n  \"vésuve\": \"vésuv\",\n  \"vêtement\": \"vêt\",\n  \"vêtements\": \"vêt\",\n  \"vêtent\": \"vêtent\",\n  \"vétille\": \"vétill\",\n  \"vetturini\": \"vetturin\",\n  \"vetturino\": \"vetturino\",\n  \"vêtu\": \"vêtu\",\n  \"vêtue\": \"vêtu\",\n  \"vêtues\": \"vêtu\",\n  \"vêtus\": \"vêtus\",\n  \"veuf\": \"veuf\",\n  \"veuille\": \"veuill\",\n  \"veuillez\": \"veuill\",\n  \"veuilliez\": \"veuill\",\n  \"veulent\": \"veulent\",\n  \"veut\": \"veut\",\n  \"veuvage\": \"veuvag\",\n  \"veuve\": \"veuv\",\n  \"veuves\": \"veuv\",\n  \"veux\": \"veux\",\n  \"vexait\": \"vex\",\n  \"vexantes\": \"vex\",\n  \"vexations\": \"vexat\",\n  \"vexé\": \"vex\",\n  \"vexer\": \"vex\",\n  \"vexés\": \"vex\",\n  \"vi\": \"vi\",\n  \"via\": \"vi\",\n  \"viaducs\": \"viaduc\",\n  \"viagère\": \"viager\",\n  \"viande\": \"viand\",\n  \"viandes\": \"viand\",\n  \"viatique\": \"viatiqu\",\n  \"vibrations\": \"vibrat\",\n  \"vicaire\": \"vicair\",\n  \"vicaires\": \"vicair\",\n  \"vice\": \"vic\",\n  \"vices\": \"vic\",\n  \"vicieux\": \"vicieux\",\n  \"vicissitudes\": \"vicissitud\",\n  \"vico\": \"vico\",\n  \"vicolo\": \"vicolo\",\n  \"vicomte\": \"vicomt\",\n  \"vicomtes\": \"vicomt\",\n  \"victime\": \"victim\",\n  \"victimes\": \"victim\",\n  \"victoire\": \"victoir\",\n  \"victoires\": \"victoir\",\n  \"victor\": \"victor\",\n  \"victoria\": \"victori\",\n  \"victorieuse\": \"victori\",\n  \"vicvacarma\": \"vicvacarm\",\n  \"vida\": \"vid\",\n  \"vidaient\": \"vid\",\n  \"vidant\": \"vid\",\n  \"vide\": \"vid\",\n  \"vidées\": \"vid\",\n  \"vider\": \"vid\",\n  \"vides\": \"vid\",\n  \"videz\": \"vid\",\n  \"vie\": \"vi\",\n  \"vieil\": \"vieil\",\n  \"vieillard\": \"vieillard\",\n  \"vieillards\": \"vieillard\",\n  \"vieille\": \"vieil\",\n  \"vieilles\": \"vieil\",\n  \"vieillesse\": \"vieilless\",\n  \"vieillie\": \"vieil\",\n  \"vieillir\": \"vieil\",\n  \"vieillit\": \"vieil\",\n  \"viendra\": \"viendr\",\n  \"viendrai\": \"viendr\",\n  \"viendraient\": \"viendr\",\n  \"viendrait\": \"viendr\",\n  \"viendras\": \"viendr\",\n  \"vienne\": \"vien\",\n  \"viennent\": \"viennent\",\n  \"viennes\": \"vien\",\n  \"viens\": \"vien\",\n  \"vient\": \"vient\",\n  \"vierge\": \"vierg\",\n  \"vies\": \"vi\",\n  \"vieux\": \"vieux\",\n  \"views\": \"view\",\n  \"vif\": \"vif\",\n  \"vifs\": \"vif\",\n  \"vigano\": \"vigano\",\n  \"vigilante\": \"vigil\",\n  \"vignano\": \"vignano\",\n  \"vigne\": \"vign\",\n  \"vigoureuse\": \"vigour\",\n  \"vigoureusement\": \"vigour\",\n  \"vigoureuses\": \"vigour\",\n  \"vigoureux\": \"vigour\",\n  \"vigueur\": \"vigueur\",\n  \"viharis\": \"vihar\",\n  \"vii\": \"vii\",\n  \"viii\": \"vii\",\n  \"vil\": \"vil\",\n  \"vilain\": \"vilain\",\n  \"vilaine\": \"vilain\",\n  \"vilaines\": \"vilain\",\n  \"vilains\": \"vilain\",\n  \"vile\": \"vil\",\n  \"vilenie\": \"vilen\",\n  \"vilipendé\": \"vilipend\",\n  \"vilipendée\": \"vilipend\",\n  \"villa\": \"vill\",\n  \"village\": \"villag\",\n  \"villages\": \"villag\",\n  \"ville\": \"vill\",\n  \"villequier\": \"villequi\",\n  \"villes\": \"vill\",\n  \"vils\": \"vil\",\n  \"vîmes\": \"vîm\",\n  \"vin\": \"vin\",\n  \"vinci\": \"vinc\",\n  \"vindhias\": \"vindhi\",\n  \"vindicatif\": \"vindiqu\",\n  \"vindicative\": \"vindiqu\",\n  \"vingt\": \"vingt\",\n  \"vingtaine\": \"vingtain\",\n  \"vingtième\": \"vingtiem\",\n  \"vingts\": \"vingt\",\n  \"vinrent\": \"vinrent\",\n  \"vins\": \"vin\",\n  \"vinsse\": \"vinss\",\n  \"vint\": \"vint\",\n  \"vînt\": \"vînt\",\n  \"viole\": \"viol\",\n  \"violé\": \"viol\",\n  \"violemment\": \"violent\",\n  \"violence\": \"violenc\",\n  \"violent\": \"violent\",\n  \"violentant\": \"violent\",\n  \"violente\": \"violent\",\n  \"violenté\": \"violent\",\n  \"violentes\": \"violent\",\n  \"violents\": \"violent\",\n  \"violer\": \"viol\",\n  \"violes\": \"viol\",\n  \"violets\": \"violet\",\n  \"violette\": \"violet\",\n  \"violettes\": \"violet\",\n  \"violiers\": \"violi\",\n  \"violon\": \"violon\",\n  \"vipère\": \"viper\",\n  \"virago\": \"virago\",\n  \"virent\": \"virent\",\n  \"virgile\": \"virgil\",\n  \"virtue\": \"virtu\",\n  \"virtuose\": \"virtuos\",\n  \"vis\": \"vis\",\n  \"visa\": \"vis\",\n  \"visage\": \"visag\",\n  \"visages\": \"visag\",\n  \"visas\": \"vis\",\n  \"visconti\": \"viscont\",\n  \"visé\": \"vis\",\n  \"visent\": \"visent\",\n  \"viser\": \"vis\",\n  \"viserez\": \"vis\",\n  \"visible\": \"visibl\",\n  \"visiblement\": \"visibl\",\n  \"visibles\": \"visibl\",\n  \"vision\": \"vision\",\n  \"visions\": \"vision\",\n  \"visita\": \"visit\",\n  \"visitation\": \"visit\",\n  \"visite\": \"visit\",\n  \"visité\": \"visit\",\n  \"visitées\": \"visit\",\n  \"visiter\": \"visit\",\n  \"visitera\": \"visit\",\n  \"visites\": \"visit\",\n  \"viso\": \"viso\",\n  \"visons\": \"vison\",\n  \"visu\": \"visu\",\n  \"vit\": \"vit\",\n  \"vît\": \"vît\",\n  \"vite\": \"vit\",\n  \"vitesse\": \"vitess\",\n  \"vitesses\": \"vitess\",\n  \"vitraux\": \"vitral\",\n  \"vitre\": \"vitr\",\n  \"vitres\": \"vitr\",\n  \"viva\": \"viv\",\n  \"vivacité\": \"vivac\",\n  \"vivaient\": \"viv\",\n  \"vivais\": \"viv\",\n  \"vivait\": \"viv\",\n  \"vivandière\": \"vivandi\",\n  \"vivandières\": \"vivandi\",\n  \"vivant\": \"viv\",\n  \"vivante\": \"viv\",\n  \"vivants\": \"viv\",\n  \"vive\": \"viv\",\n  \"vivement\": \"viv\",\n  \"vivent\": \"vivent\",\n  \"vives\": \"viv\",\n  \"vivez\": \"viv\",\n  \"vivons\": \"vivon\",\n  \"vivoter\": \"vivot\",\n  \"vivra\": \"vivr\",\n  \"vivrai\": \"vivr\",\n  \"vivrait\": \"vivr\",\n  \"vivre\": \"vivr\",\n  \"vivres\": \"vivr\",\n  \"vivrez\": \"vivr\",\n  \"vivrions\": \"vivrion\",\n  \"vivrons\": \"vivron\",\n  \"vivront\": \"vivront\",\n  \"vocation\": \"vocat\",\n  \"vociférations\": \"vocifer\",\n  \"voeu\": \"voeu\",\n  \"voeux\": \"voeux\",\n  \"voguer\": \"vogu\",\n  \"voi\": \"voi\",\n  \"voici\": \"voic\",\n  \"voie\": \"voi\",\n  \"voient\": \"voient\",\n  \"voies\": \"voi\",\n  \"voilà\": \"voilà\",\n  \"voile\": \"voil\",\n  \"voilé\": \"voil\",\n  \"voilée\": \"voil\",\n  \"voilées\": \"voil\",\n  \"voiles\": \"voil\",\n  \"voilés\": \"voil\",\n  \"voilure\": \"voilur\",\n  \"voir\": \"voir\",\n  \"vois\": \"vois\",\n  \"voisin\": \"voisin\",\n  \"voisinage\": \"voisinag\",\n  \"voisine\": \"voisin\",\n  \"voisines\": \"voisin\",\n  \"voisins\": \"voisin\",\n  \"voit\": \"voit\",\n  \"voiture\": \"voitur\",\n  \"voitures\": \"voitur\",\n  \"voix\": \"voix\",\n  \"vol\": \"vol\",\n  \"volaient\": \"vol\",\n  \"volaille\": \"volaill\",\n  \"volait\": \"vol\",\n  \"volant\": \"vol\",\n  \"volants\": \"vol\",\n  \"volatiles\": \"volatil\",\n  \"volcan\": \"volcan\",\n  \"vole\": \"vol\",\n  \"volé\": \"vol\",\n  \"volée\": \"vol\",\n  \"volées\": \"vol\",\n  \"volent\": \"volent\",\n  \"voler\": \"vol\",\n  \"volera\": \"vol\",\n  \"volerai\": \"vol\",\n  \"volerait\": \"vol\",\n  \"volés\": \"vol\",\n  \"volet\": \"volet\",\n  \"volets\": \"volet\",\n  \"voleur\": \"voleur\",\n  \"voleurs\": \"voleur\",\n  \"volez\": \"vol\",\n  \"volière\": \"voli\",\n  \"volontaire\": \"volontair\",\n  \"volontairement\": \"volontair\",\n  \"volontaires\": \"volontair\",\n  \"volonté\": \"volont\",\n  \"volontés\": \"volont\",\n  \"volontiers\": \"volonti\",\n  \"vols\": \"vol\",\n  \"voltaire\": \"voltair\",\n  \"voltige\": \"voltig\",\n  \"voltigeant\": \"voltig\",\n  \"voltiger\": \"voltig\",\n  \"voltigeur\": \"voltigeur\",\n  \"volubilité\": \"volubil\",\n  \"volume\": \"volum\",\n  \"volumes\": \"volum\",\n  \"volupté\": \"volupt\",\n  \"voluptés\": \"volupt\",\n  \"voluptueuse\": \"voluptu\",\n  \"voluptueusement\": \"voluptu\",\n  \"voluptueuses\": \"voluptu\",\n  \"voluptueux\": \"voluptu\",\n  \"volutes\": \"volut\",\n  \"vomero\": \"vomero\",\n  \"vomir\": \"vom\",\n  \"vomissait\": \"vom\",\n  \"vont\": \"vont\",\n  \"voraces\": \"vorac\",\n  \"vos\": \"vos\",\n  \"votaient\": \"vot\",\n  \"votant\": \"vot\",\n  \"vote\": \"vot\",\n  \"voté\": \"vot\",\n  \"votée\": \"vot\",\n  \"voter\": \"vot\",\n  \"votes\": \"vot\",\n  \"votre\": \"votr\",\n  \"vôtre\": \"vôtr\",\n  \"vôtres\": \"vôtr\",\n  \"voudra\": \"voudr\",\n  \"voudraient\": \"voudr\",\n  \"voudrais\": \"voudr\",\n  \"voudrait\": \"voudr\",\n  \"voudras\": \"voudr\",\n  \"voudrez\": \"voudr\",\n  \"voudriez\": \"voudr\",\n  \"voudrions\": \"voudrion\",\n  \"voudront\": \"voudront\",\n  \"voué\": \"vou\",\n  \"vouent\": \"vouent\",\n  \"vouer\": \"vou\",\n  \"vouèrent\": \"vou\",\n  \"voulaient\": \"voul\",\n  \"voulais\": \"voul\",\n  \"voulait\": \"voul\",\n  \"voulant\": \"voul\",\n  \"voulez\": \"voul\",\n  \"vouliez\": \"voul\",\n  \"vouloir\": \"vouloir\",\n  \"voulons\": \"voulon\",\n  \"voulu\": \"voulu\",\n  \"voulues\": \"voulu\",\n  \"voulurent\": \"voulurent\",\n  \"voulus\": \"voulus\",\n  \"voulussent\": \"voulussent\",\n  \"voulut\": \"voulut\",\n  \"voulût\": \"voulût\",\n  \"vous\": \"vous\",\n  \"voûte\": \"voût\",\n  \"voûtes\": \"voût\",\n  \"voyage\": \"voyag\",\n  \"voyagé\": \"voyag\",\n  \"voyageait\": \"voyag\",\n  \"voyageant\": \"voyag\",\n  \"voyagent\": \"voyagent\",\n  \"voyageons\": \"voyageon\",\n  \"voyager\": \"voyag\",\n  \"voyages\": \"voyag\",\n  \"voyageur\": \"voyageur\",\n  \"voyageurs\": \"voyageur\",\n  \"voyageuse\": \"voyag\",\n  \"voyagez\": \"voyag\",\n  \"voyaient\": \"voi\",\n  \"voyais\": \"voi\",\n  \"voyait\": \"voi\",\n  \"voyant\": \"voi\",\n  \"voyez\": \"voi\",\n  \"voyiez\": \"voi\",\n  \"voyons\": \"voyon\",\n  \"vrai\": \"vrai\",\n  \"vraie\": \"vrai\",\n  \"vraies\": \"vrai\",\n  \"vraiment\": \"vrai\",\n  \"vrais\": \"vrais\",\n  \"vraisemblable\": \"vraisembl\",\n  \"vraisemblablement\": \"vraisembl\",\n  \"vu\": \"vu\",\n  \"vue\": \"vu\",\n  \"vues\": \"vu\",\n  \"vulgaire\": \"vulgair\",\n  \"vulgairement\": \"vulgair\",\n  \"vulgaires\": \"vulgair\",\n  \"vulgarité\": \"vulgar\",\n  \"vus\": \"vus\",\n  \"w\": \"w\",\n  \"wagon\": \"wagon\",\n  \"wagons\": \"wagon\",\n  \"wagram\": \"wagram\",\n  \"wahsatch\": \"wahsatch\",\n  \"walbah\": \"walbah\",\n  \"walter\": \"walt\",\n  \"wandering\": \"wandering\",\n  \"was\": \"was\",\n  \"washington\": \"washington\",\n  \"waterloo\": \"waterloo\",\n  \"wayne\": \"wayn\",\n  \"we\": \"we\",\n  \"weber\": \"web\",\n  \"wellington\": \"wellington\",\n  \"were\": \"wer\",\n  \"west\": \"west\",\n  \"wharf\": \"wharf\",\n  \"wharfs\": \"wharf\",\n  \"which\": \"which\",\n  \"whisky\": \"whisky\",\n  \"whisnou\": \"whisnou\",\n  \"whist\": \"whist\",\n  \"white\": \"whit\",\n  \"will\": \"will\",\n  \"william\": \"william\",\n  \"wilson\": \"wilson\",\n  \"with\": \"with\",\n  \"withdrew\": \"withdrew\",\n  \"word\": \"word\",\n  \"would\": \"would\",\n  \"wyoming\": \"wyoming\",\n  \"x\": \"x\",\n  \"xavier\": \"xavi\",\n  \"xérès\": \"xéres\",\n  \"xi\": \"xi\",\n  \"xii\": \"xii\",\n  \"xiii\": \"xii\",\n  \"xiv\": \"xiv\",\n  \"xix\": \"xix\",\n  \"xv\": \"xv\",\n  \"xvi\": \"xvi\",\n  \"xvii\": \"xvii\",\n  \"xviii\": \"xvii\",\n  \"xx\": \"xx\",\n  \"xxi\": \"xxi\",\n  \"xxii\": \"xxii\",\n  \"xxiii\": \"xxii\",\n  \"xxiv\": \"xxiv\",\n  \"xxix\": \"xxix\",\n  \"xxv\": \"xxv\",\n  \"xxvi\": \"xxvi\",\n  \"xxvii\": \"xxvii\",\n  \"xxviii\": \"xxvii\",\n  \"xxx\": \"xxx\",\n  \"xxxi\": \"xxxi\",\n  \"xxxii\": \"xxxii\",\n  \"xxxiii\": \"xxxii\",\n  \"xxxiv\": \"xxxiv\",\n  \"xxxv\": \"xxxv\",\n  \"xxxvi\": \"xxxvi\",\n  \"xxxvii\": \"xxxvii\",\n  \"y\": \"y\",\n  \"yacht\": \"yacht\",\n  \"yachts\": \"yacht\",\n  \"yakounines\": \"yakounin\",\n  \"yankee\": \"yanke\",\n  \"yeddo\": \"yeddo\",\n  \"yert\": \"yert\",\n  \"yet\": \"yet\",\n  \"yeux\": \"yeux\",\n  \"yokohama\": \"yokoham\",\n  \"york\": \"york\",\n  \"young\": \"young\",\n  \"zambajon\": \"zambajon\",\n  \"zeb\": \"zeb\",\n  \"zébrés\": \"zebr\",\n  \"zébus\": \"zébus\",\n  \"zèle\": \"zel\",\n  \"zélés\": \"zel\",\n  \"zénith\": \"zénith\",\n  \"zigzags\": \"zigzag\",\n  \"zingarelli\": \"zingarel\",\n  \"zonders\": \"zonder\",\n  \"zoroastre\": \"zoroastr\",\n  \"zurla\": \"zurl\"\n}"
  },
  {
    "path": "spec/test_data/snowball_it.json",
    "content": "{\n  \"a\": \"a\",\n  \"à\": \"à\",\n  \"aa\": \"aa\",\n  \"aalst\": \"aalst\",\n  \"ab\": \"ab\",\n  \"abakoumova\": \"abakoumov\",\n  \"abano\": \"aban\",\n  \"abate\": \"abat\",\n  \"abati\": \"abat\",\n  \"abbacinare\": \"abbacin\",\n  \"abbacinati\": \"abbacin\",\n  \"abbadia\": \"abbad\",\n  \"abbado\": \"abbad\",\n  \"abbagliaron\": \"abbagliaron\",\n  \"abbagliato\": \"abbagl\",\n  \"abbaia\": \"abbai\",\n  \"abbaiano\": \"abbai\",\n  \"abbaiar\": \"abbai\",\n  \"abbaini\": \"abbain\",\n  \"abbandona\": \"abbandon\",\n  \"abbandonando\": \"abbandon\",\n  \"abbandonano\": \"abbandon\",\n  \"abbandonar\": \"abbandon\",\n  \"abbandonare\": \"abbandon\",\n  \"abbandonarla\": \"abbandon\",\n  \"abbandonarlo\": \"abbandon\",\n  \"abbandonarsi\": \"abbandon\",\n  \"abbandonarvi\": \"abbandon\",\n  \"abbandonasse\": \"abbandon\",\n  \"abbandonata\": \"abbandon\",\n  \"abbandonate\": \"abbandon\",\n  \"abbandonati\": \"abbandon\",\n  \"abbandonato\": \"abbandon\",\n  \"abbandonava\": \"abbandon\",\n  \"abbandonerà\": \"abbandon\",\n  \"abbandoneranno\": \"abbandon\",\n  \"abbandonerò\": \"abbandon\",\n  \"abbandono\": \"abband\",\n  \"abbandonò\": \"abbandon\",\n  \"abbaruffato\": \"abbaruff\",\n  \"abbassamento\": \"abbass\",\n  \"abbassando\": \"abbass\",\n  \"abbassandola\": \"abbass\",\n  \"abbassandole\": \"abbass\",\n  \"abbassar\": \"abbass\",\n  \"abbassare\": \"abbass\",\n  \"abbassarono\": \"abbass\",\n  \"abbassarsi\": \"abbass\",\n  \"abbassassero\": \"abbass\",\n  \"abbassato\": \"abbass\",\n  \"abbassava\": \"abbass\",\n  \"abbassi\": \"abbass\",\n  \"abbassò\": \"abbass\",\n  \"abbastanza\": \"abbast\",\n  \"abbatté\": \"abbatt\",\n  \"abbattendo\": \"abbatt\",\n  \"abbattere\": \"abbatt\",\n  \"abbattersi\": \"abbatt\",\n  \"abbattesse\": \"abbattess\",\n  \"abbatteva\": \"abbatt\",\n  \"abbattevamo\": \"abbatt\",\n  \"abbattevano\": \"abbatt\",\n  \"abbattimento\": \"abbatt\",\n  \"abbattuta\": \"abbatt\",\n  \"abbattuti\": \"abbatt\",\n  \"abbattuto\": \"abbatt\",\n  \"abbellita\": \"abbell\",\n  \"abbenché\": \"abbenc\",\n  \"abbi\": \"abbi\",\n  \"abbia\": \"abbi\",\n  \"abbiam\": \"abbiam\",\n  \"abbiamo\": \"abbiam\",\n  \"abbian\": \"abbian\",\n  \"abbiano\": \"abbi\",\n  \"abbiate\": \"abbi\",\n  \"abbiccì\": \"abbicc\",\n  \"abbietti\": \"abbiett\",\n  \"abbigliamento\": \"abbigl\",\n  \"abbinamento\": \"abbin\",\n  \"abbinano\": \"abbin\",\n  \"abbinata\": \"abbin\",\n  \"abbinato\": \"abbin\",\n  \"abboccamenti\": \"abbocc\",\n  \"abboccamento\": \"abbocc\",\n  \"abbominata\": \"abbomin\",\n  \"abbominazione\": \"abbomin\",\n  \"abbominevole\": \"abbominevol\",\n  \"abbominevoli\": \"abbominevol\",\n  \"abbominio\": \"abbomin\",\n  \"abbonati\": \"abbon\",\n  \"abbonato\": \"abbon\",\n  \"abbonda\": \"abbond\",\n  \"abbondano\": \"abbond\",\n  \"abbondante\": \"abbond\",\n  \"abbondantemente\": \"abbondant\",\n  \"abbondanti\": \"abbond\",\n  \"abbondanza\": \"abbond\",\n  \"abbondare\": \"abbond\",\n  \"abbondio\": \"abbond\",\n  \"abbonire\": \"abbon\",\n  \"abbordarne\": \"abbord\",\n  \"abbordo\": \"abbord\",\n  \"abborracciata\": \"abborracc\",\n  \"abborrimento\": \"abborr\",\n  \"abborrito\": \"abborr\",\n  \"abbott\": \"abbott\",\n  \"abbozzata\": \"abbozz\",\n  \"abbozzato\": \"abbozz\",\n  \"abbracci\": \"abbracc\",\n  \"abbraccia\": \"abbracc\",\n  \"abbracciamenti\": \"abbracc\",\n  \"abbracciar\": \"abbracc\",\n  \"abbracciare\": \"abbracc\",\n  \"abbracciarne\": \"abbracc\",\n  \"abbracciaron\": \"abbracciaron\",\n  \"abbracciata\": \"abbracc\",\n  \"abbracciate\": \"abbracc\",\n  \"abbracciati\": \"abbracc\",\n  \"abbracciato\": \"abbracc\",\n  \"abbracciavano\": \"abbracc\",\n  \"abbraccio\": \"abbracc\",\n  \"abbracciò\": \"abbracc\",\n  \"abbreviarli\": \"abbrev\",\n  \"abbreviata\": \"abbrev\",\n  \"abbreviati\": \"abbrev\",\n  \"abbronzate\": \"abbronz\",\n  \"abbronzati\": \"abbronz\",\n  \"abbruciacchiato\": \"abbruciacc\",\n  \"abbruciacchiavano\": \"abbruciacc\",\n  \"abbrunati\": \"abbrun\",\n  \"abbuffata\": \"abbuff\",\n  \"abburattavan\": \"abburattavan\",\n  \"abc\": \"abc\",\n  \"abdel\": \"abdel\",\n  \"abdic\": \"abdic\",\n  \"abdica\": \"abdic\",\n  \"abdul\": \"abdul\",\n  \"abeille\": \"abeill\",\n  \"abel\": \"abel\",\n  \"aberdeen\": \"aberdeen\",\n  \"abergele\": \"abergel\",\n  \"abete\": \"abet\",\n  \"abietto\": \"abiett\",\n  \"abile\": \"abil\",\n  \"abili\": \"abil\",\n  \"abilità\": \"abil\",\n  \"abilitante\": \"abilit\",\n  \"abilitate\": \"abilit\",\n  \"abilitazione\": \"abilit\",\n  \"abiliterà\": \"abilit\",\n  \"abisso\": \"abiss\",\n  \"abita\": \"abit\",\n  \"abitacolo\": \"abitacol\",\n  \"abitante\": \"abit\",\n  \"abitanti\": \"abit\",\n  \"abitare\": \"abit\",\n  \"abitata\": \"abit\",\n  \"abitate\": \"abit\",\n  \"abitati\": \"abit\",\n  \"abitato\": \"abit\",\n  \"abitator\": \"abitator\",\n  \"abitatori\": \"abit\",\n  \"abitava\": \"abit\",\n  \"abitavano\": \"abit\",\n  \"abitazione\": \"abit\",\n  \"abitazioni\": \"abit\",\n  \"abiti\": \"abit\",\n  \"abito\": \"abit\",\n  \"abituale\": \"abitual\",\n  \"abituali\": \"abitual\",\n  \"abitualmente\": \"abitual\",\n  \"abituarci\": \"abitu\",\n  \"abituato\": \"abitu\",\n  \"abitudine\": \"abitudin\",\n  \"abitudini\": \"abitudin\",\n  \"abituro\": \"abitur\",\n  \"ablandarlos\": \"ablandarlos\",\n  \"abolendo\": \"abol\",\n  \"abolire\": \"abol\",\n  \"abolirli\": \"abol\",\n  \"abolisce\": \"abol\",\n  \"abolita\": \"abol\",\n  \"abolizione\": \"abolizion\",\n  \"aborto\": \"abort\",\n  \"abruzzesi\": \"abruzzes\",\n  \"abruzzo\": \"abruzz\",\n  \"abulia\": \"abul\",\n  \"abusare\": \"abus\",\n  \"abuso\": \"abus\",\n  \"ac\": \"ac\",\n  \"accada\": \"accad\",\n  \"accadde\": \"accadd\",\n  \"accaddero\": \"accadder\",\n  \"accade\": \"accad\",\n  \"accademia\": \"accadem\",\n  \"accademica\": \"accadem\",\n  \"accademicamente\": \"accadem\",\n  \"accademici\": \"accadem\",\n  \"accademico\": \"accadem\",\n  \"accademie\": \"accadem\",\n  \"accadendo\": \"accad\",\n  \"accader\": \"accader\",\n  \"accaderà\": \"accad\",\n  \"accadere\": \"accad\",\n  \"accadesse\": \"accadess\",\n  \"accadeva\": \"accad\",\n  \"accadevan\": \"accadevan\",\n  \"accadon\": \"accadon\",\n  \"accadono\": \"accad\",\n  \"accaduta\": \"accad\",\n  \"accadute\": \"accad\",\n  \"accaduto\": \"accad\",\n  \"accalappino\": \"accalappin\",\n  \"accame\": \"accam\",\n  \"accampamento\": \"accamp\",\n  \"accampati\": \"accamp\",\n  \"accando\": \"accand\",\n  \"accanimento\": \"accan\",\n  \"accanite\": \"accan\",\n  \"accanito\": \"accan\",\n  \"accanto\": \"accant\",\n  \"accantonamenti\": \"accanton\",\n  \"accantonamento\": \"accanton\",\n  \"accantonando\": \"accanton\",\n  \"accarezza\": \"accarezz\",\n  \"accarezzando\": \"accarezz\",\n  \"accarezzandolo\": \"accarezz\",\n  \"accarezzar\": \"accarezz\",\n  \"accarezzare\": \"accarezz\",\n  \"accarezzarla\": \"accarezz\",\n  \"accarezzarlo\": \"accarezz\",\n  \"accarezzato\": \"accarezz\",\n  \"accarezzavan\": \"accarezzavan\",\n  \"accarezzò\": \"accarezz\",\n  \"accartocciava\": \"accartocc\",\n  \"accasato\": \"accas\",\n  \"accatastata\": \"accatast\",\n  \"accattabrighe\": \"accattabrig\",\n  \"accattando\": \"accatt\",\n  \"accattar\": \"accatt\",\n  \"accattarlo\": \"accatt\",\n  \"accattato\": \"accatt\",\n  \"accattivanti\": \"accattiv\",\n  \"accatto\": \"accatt\",\n  \"accattoni\": \"accatton\",\n  \"accavallata\": \"accavall\",\n  \"acccordi\": \"acccord\",\n  \"accecato\": \"accec\",\n  \"accedatis\": \"accedatis\",\n  \"accedere\": \"acced\",\n  \"accelera\": \"acceler\",\n  \"accelerando\": \"acceler\",\n  \"accelerare\": \"acceler\",\n  \"accelerato\": \"acceler\",\n  \"acceleratore\": \"acceler\",\n  \"accelerazione\": \"acceler\",\n  \"accellerare\": \"acceller\",\n  \"accenda\": \"accend\",\n  \"accende\": \"accend\",\n  \"accendere\": \"accend\",\n  \"accenna\": \"accenn\",\n  \"accennando\": \"accenn\",\n  \"accennano\": \"accenn\",\n  \"accennar\": \"accenn\",\n  \"accennare\": \"accenn\",\n  \"accennarla\": \"accenn\",\n  \"accennarono\": \"accenn\",\n  \"accennate\": \"accenn\",\n  \"accennati\": \"accenn\",\n  \"accennato\": \"accenn\",\n  \"accennava\": \"accenn\",\n  \"accennavano\": \"accenn\",\n  \"accenneremo\": \"accenn\",\n  \"accennerò\": \"accenn\",\n  \"accenno\": \"accenn\",\n  \"accennò\": \"accenn\",\n  \"accenti\": \"accent\",\n  \"accento\": \"accent\",\n  \"accentrato\": \"accentr\",\n  \"accentua\": \"accentu\",\n  \"accentuandone\": \"accentu\",\n  \"accentuano\": \"accentu\",\n  \"accerchiati\": \"accerc\",\n  \"accertamenti\": \"accert\",\n  \"accertamento\": \"accert\",\n  \"accertare\": \"accert\",\n  \"accertarmi\": \"accert\",\n  \"accertarsi\": \"accert\",\n  \"accertate\": \"accert\",\n  \"accertato\": \"accert\",\n  \"accertò\": \"accert\",\n  \"accesa\": \"acces\",\n  \"accese\": \"acces\",\n  \"accesi\": \"acces\",\n  \"acceso\": \"acces\",\n  \"accessi\": \"access\",\n  \"accessibili\": \"access\",\n  \"accesso\": \"access\",\n  \"accessòri\": \"accessòr\",\n  \"accessorie\": \"accessor\",\n  \"accetta\": \"accett\",\n  \"accettabile\": \"accett\",\n  \"accettabili\": \"accett\",\n  \"accettando\": \"accett\",\n  \"accettano\": \"accett\",\n  \"accettare\": \"accett\",\n  \"accettarle\": \"accett\",\n  \"accettaron\": \"accettaron\",\n  \"accettarsi\": \"accett\",\n  \"accettasse\": \"accett\",\n  \"accettata\": \"accett\",\n  \"accettate\": \"accett\",\n  \"accettati\": \"accett\",\n  \"accettato\": \"accett\",\n  \"accettava\": \"accett\",\n  \"accettazione\": \"accett\",\n  \"accette\": \"accett\",\n  \"accetterà\": \"accett\",\n  \"accetteresti\": \"accett\",\n  \"accetterò\": \"accett\",\n  \"accetti\": \"accett\",\n  \"accetto\": \"accett\",\n  \"accettò\": \"accett\",\n  \"accezione\": \"accezion\",\n  \"acchetare\": \"acchet\",\n  \"acchiappar\": \"acchiapp\",\n  \"acchiappare\": \"acchiapp\",\n  \"acchiapparlo\": \"acchiapp\",\n  \"acchiappato\": \"acchiapp\",\n  \"acchiappatolo\": \"acchiappatol\",\n  \"acciai\": \"accia\",\n  \"acciarino\": \"acciarin\",\n  \"accidentale\": \"accidental\",\n  \"accidentalmente\": \"accidental\",\n  \"accidente\": \"accident\",\n  \"accidenti\": \"accident\",\n  \"accieca\": \"acciec\",\n  \"accigliato\": \"accigl\",\n  \"accingo\": \"accing\",\n  \"acciò\": \"acci\",\n  \"acciocché\": \"acciocc\",\n  \"accipigliato\": \"accipigl\",\n  \"acciuffa\": \"acciuff\",\n  \"acciughe\": \"acciug\",\n  \"acclamazione\": \"acclam\",\n  \"acclamazioni\": \"acclam\",\n  \"accluder\": \"accluder\",\n  \"accluderla\": \"acclud\",\n  \"accoglie\": \"accogl\",\n  \"accogliendo\": \"accogl\",\n  \"accoglienza\": \"accoglient\",\n  \"accoglienze\": \"accoglient\",\n  \"accogliere\": \"accogl\",\n  \"accoglierli\": \"accogl\",\n  \"accogliervi\": \"accogl\",\n  \"accoglieva\": \"accogl\",\n  \"accoglimento\": \"accogl\",\n  \"accolse\": \"accols\",\n  \"accolta\": \"accolt\",\n  \"accoltellamento\": \"accoltell\",\n  \"accoltellarlo\": \"accoltell\",\n  \"accoltellata\": \"accoltell\",\n  \"accolti\": \"accolt\",\n  \"accolto\": \"accolt\",\n  \"accomiatò\": \"accomiat\",\n  \"accommiatò\": \"accommiat\",\n  \"accomoda\": \"accomod\",\n  \"accomodamento\": \"accomod\",\n  \"accomodando\": \"accomod\",\n  \"accomodandosi\": \"accomod\",\n  \"accomodano\": \"accomod\",\n  \"accomodar\": \"accomod\",\n  \"accomodarcisi\": \"accomodarcis\",\n  \"accomodare\": \"accomod\",\n  \"accomodarla\": \"accomod\",\n  \"accomodarmi\": \"accomod\",\n  \"accomodarsi\": \"accomod\",\n  \"accomodata\": \"accomod\",\n  \"accomodate\": \"accomod\",\n  \"accomodati\": \"accomod\",\n  \"accomodato\": \"accomod\",\n  \"accomodava\": \"accomod\",\n  \"accomodavano\": \"accomod\",\n  \"accomoderemo\": \"accomod\",\n  \"accomoderò\": \"accomod\",\n  \"accomodo\": \"accomod\",\n  \"accomodò\": \"accomod\",\n  \"accompagna\": \"accompagn\",\n  \"accompagnamento\": \"accompagn\",\n  \"accompagnando\": \"accompagn\",\n  \"accompagnandolo\": \"accompagn\",\n  \"accompagnano\": \"accompagn\",\n  \"accompagnar\": \"accompagn\",\n  \"accompagnare\": \"accompagn\",\n  \"accompagnarla\": \"accompagn\",\n  \"accompagnarlo\": \"accompagn\",\n  \"accompagnaron\": \"accompagnaron\",\n  \"accompagnata\": \"accompagn\",\n  \"accompagnate\": \"accompagn\",\n  \"accompagnati\": \"accompagn\",\n  \"accompagnato\": \"accompagn\",\n  \"accompagnatolo\": \"accompagnatol\",\n  \"accompagnava\": \"accompagn\",\n  \"accompagnavano\": \"accompagn\",\n  \"accompagnerete\": \"accompagn\",\n  \"accompagnerò\": \"accompagn\",\n  \"accompagni\": \"accompagn\",\n  \"accompagnò\": \"accompagn\",\n  \"acconcio\": \"acconc\",\n  \"acconsente\": \"acconsent\",\n  \"acconsentì\": \"acconsent\",\n  \"acconsentire\": \"acconsent\",\n  \"acconsentirò\": \"acconsent\",\n  \"accontentarsi\": \"accontent\",\n  \"accoppia\": \"accopp\",\n  \"accoppiamento\": \"accopp\",\n  \"accoppiata\": \"accopp\",\n  \"accora\": \"accor\",\n  \"accoramento\": \"accor\",\n  \"accorando\": \"accor\",\n  \"accorata\": \"accor\",\n  \"accorciato\": \"accorc\",\n  \"accorda\": \"accord\",\n  \"accordarlo\": \"accord\",\n  \"accordarsi\": \"accord\",\n  \"accordasse\": \"accord\",\n  \"accordate\": \"accord\",\n  \"accordato\": \"accord\",\n  \"accordava\": \"accord\",\n  \"accorderebbero\": \"accord\",\n  \"accordi\": \"accord\",\n  \"accordo\": \"accord\",\n  \"accorga\": \"accorg\",\n  \"accorge\": \"accorg\",\n  \"accorgendosi\": \"accorg\",\n  \"accorgerà\": \"accorg\",\n  \"accorgere\": \"accorg\",\n  \"accorgermi\": \"accorg\",\n  \"accorgersene\": \"accorg\",\n  \"accorgersi\": \"accorg\",\n  \"accorgesse\": \"accorgess\",\n  \"accorgeva\": \"accorg\",\n  \"accorgevan\": \"accorgevan\",\n  \"accorgo\": \"accorg\",\n  \"accorgono\": \"accorg\",\n  \"accorpa\": \"accorp\",\n  \"accorpamento\": \"accorp\",\n  \"accorpando\": \"accorp\",\n  \"accorre\": \"accorr\",\n  \"accorrere\": \"accorr\",\n  \"accorresse\": \"accorress\",\n  \"accorreva\": \"accorr\",\n  \"accorrevano\": \"accorr\",\n  \"accorrono\": \"accorr\",\n  \"accorse\": \"accors\",\n  \"accorsero\": \"accorser\",\n  \"accorso\": \"accors\",\n  \"accortamente\": \"accort\",\n  \"accorti\": \"accort\",\n  \"accorto\": \"accort\",\n  \"accortosi\": \"accort\",\n  \"accosta\": \"accost\",\n  \"accostamento\": \"accost\",\n  \"accostandosi\": \"accost\",\n  \"accostare\": \"accost\",\n  \"accostarglisi\": \"accostarglis\",\n  \"accostarsele\": \"accostarsel\",\n  \"accostarsi\": \"accost\",\n  \"accostate\": \"accost\",\n  \"accostatevi\": \"accostat\",\n  \"accostati\": \"accost\",\n  \"accostato\": \"accost\",\n  \"accostatosi\": \"accostat\",\n  \"accostava\": \"accost\",\n  \"accosto\": \"accost\",\n  \"accostò\": \"accost\",\n  \"accostumato\": \"accostum\",\n  \"accovacciati\": \"accovacc\",\n  \"accozzaglia\": \"accozzagl\",\n  \"accozzando\": \"accozz\",\n  \"accozzar\": \"accozz\",\n  \"accozzarsi\": \"accozz\",\n  \"accozzati\": \"accozz\",\n  \"accrebbe\": \"accrebb\",\n  \"accreditamento\": \"accredit\",\n  \"accreditati\": \"accredit\",\n  \"accrediti\": \"accred\",\n  \"accresce\": \"accresc\",\n  \"accrescendo\": \"accresc\",\n  \"accrescer\": \"accrescer\",\n  \"accrescere\": \"accresc\",\n  \"accrescerebbe\": \"accresc\",\n  \"accrescerle\": \"accresc\",\n  \"accrescerlo\": \"accresc\",\n  \"accresceva\": \"accresc\",\n  \"accrescevano\": \"accresc\",\n  \"accresciuta\": \"accresc\",\n  \"accucciata\": \"accucc\",\n  \"accudire\": \"accud\",\n  \"accumulando\": \"accumul\",\n  \"accumulato\": \"accumul\",\n  \"accurata\": \"accur\",\n  \"accusa\": \"accus\",\n  \"accusando\": \"accus\",\n  \"accusandole\": \"accus\",\n  \"accusandolo\": \"accus\",\n  \"accusar\": \"accus\",\n  \"accusare\": \"accus\",\n  \"accusata\": \"accus\",\n  \"accusate\": \"accus\",\n  \"accusati\": \"accus\",\n  \"accusato\": \"accus\",\n  \"accusatore\": \"accus\",\n  \"accusava\": \"accus\",\n  \"accusavan\": \"accusavan\",\n  \"accusavano\": \"accus\",\n  \"accuse\": \"accus\",\n  \"accusò\": \"accus\",\n  \"acerba\": \"acerb\",\n  \"acerbi\": \"acerb\",\n  \"acerra\": \"acerr\",\n  \"aceti\": \"acet\",\n  \"aceto\": \"acet\",\n  \"acetoselle\": \"acetosell\",\n  \"acevedo\": \"aceved\",\n  \"achille\": \"achill\",\n  \"achillini\": \"achillin\",\n  \"acidi\": \"acid\",\n  \"acireale\": \"acireal\",\n  \"acklin\": \"acklin\",\n  \"acli\": \"acli\",\n  \"acnur\": \"acnur\",\n  \"acogliere\": \"acogl\",\n  \"acopi\": \"acop\",\n  \"acoteias\": \"acoteias\",\n  \"acq\": \"acq\",\n  \"acqua\": \"acqua\",\n  \"acquarone\": \"acquaron\",\n  \"acquatico\": \"acquat\",\n  \"acquattato\": \"acquatt\",\n  \"acque\": \"acque\",\n  \"acquea\": \"acque\",\n  \"acquedotti\": \"acquedott\",\n  \"acquerugiola\": \"acquerugiol\",\n  \"acqui\": \"acqui\",\n  \"acquieta\": \"acquiet\",\n  \"acquietamento\": \"acquiet\",\n  \"acquietando\": \"acquiet\",\n  \"acquietandosele\": \"acquietandosel\",\n  \"acquietante\": \"acquiet\",\n  \"acquietare\": \"acquiet\",\n  \"acquietarla\": \"acquiet\",\n  \"acquietarle\": \"acquiet\",\n  \"acquietarlo\": \"acquiet\",\n  \"acquietarono\": \"acquiet\",\n  \"acquietasse\": \"acquiet\",\n  \"acquietati\": \"acquiet\",\n  \"acquietava\": \"acquiet\",\n  \"acquietò\": \"acquiet\",\n  \"acquirente\": \"acquirent\",\n  \"acquirenti\": \"acquirent\",\n  \"acquisire\": \"acquis\",\n  \"acquisirlo\": \"acquis\",\n  \"acquisite\": \"acquis\",\n  \"acquisito\": \"acquis\",\n  \"acquisizione\": \"acquisizion\",\n  \"acquisizioni\": \"acquisizion\",\n  \"acquista\": \"acquist\",\n  \"acquistandosi\": \"acquist\",\n  \"acquistar\": \"acquist\",\n  \"acquistare\": \"acquist\",\n  \"acquistarne\": \"acquist\",\n  \"acquistarsi\": \"acquist\",\n  \"acquistata\": \"acquist\",\n  \"acquistato\": \"acquist\",\n  \"acquistavano\": \"acquist\",\n  \"acquisterà\": \"acquist\",\n  \"acquisteranno\": \"acquist\",\n  \"acquisti\": \"acquist\",\n  \"acquisto\": \"acquist\",\n  \"acquistò\": \"acquist\",\n  \"acquitrinosa\": \"acquitrin\",\n  \"acquolina\": \"acquolin\",\n  \"act\": \"act\",\n  \"action\": \"action\",\n  \"acuta\": \"acut\",\n  \"acutamente\": \"acut\",\n  \"acute\": \"acut\",\n  \"acuti\": \"acut\",\n  \"acuto\": \"acut\",\n  \"ad\": \"ad\",\n  \"adagino\": \"adagin\",\n  \"adagio\": \"adag\",\n  \"adam\": \"adam\",\n  \"adamo\": \"adam\",\n  \"adani\": \"adan\",\n  \"adatta\": \"adatt\",\n  \"adattandole\": \"adatt\",\n  \"adattarla\": \"adatt\",\n  \"adattarsi\": \"adatt\",\n  \"adattata\": \"adatt\",\n  \"adattate\": \"adatt\",\n  \"adattati\": \"adatt\",\n  \"adattato\": \"adatt\",\n  \"adattava\": \"adatt\",\n  \"adattavano\": \"adatt\",\n  \"adatti\": \"adatt\",\n  \"adda\": \"adda\",\n  \"addati\": \"addat\",\n  \"addebitate\": \"addebit\",\n  \"addebito\": \"addeb\",\n  \"addensa\": \"addens\",\n  \"addensasse\": \"addens\",\n  \"addensata\": \"addens\",\n  \"addenseranno\": \"addens\",\n  \"addenta\": \"addent\",\n  \"addestramento\": \"addestr\",\n  \"addestrati\": \"addestr\",\n  \"addetta\": \"addett\",\n  \"addette\": \"addett\",\n  \"addetti\": \"addett\",\n  \"addetto\": \"addett\",\n  \"addietro\": \"addietr\",\n  \"addii\": \"addi\",\n  \"addio\": \"addi\",\n  \"addirittura\": \"addirittur\",\n  \"additò\": \"addit\",\n  \"addivenire\": \"addiven\",\n  \"addizionali\": \"addizional\",\n  \"addobbate\": \"addobb\",\n  \"addobbi\": \"addobb\",\n  \"addolorata\": \"addolor\",\n  \"addolorati\": \"addolor\",\n  \"addolorato\": \"addolor\",\n  \"addome\": \"addom\",\n  \"addormentarlo\": \"addorment\",\n  \"addormentata\": \"addorment\",\n  \"addormentati\": \"addorment\",\n  \"addormentato\": \"addorment\",\n  \"addormentò\": \"addorment\",\n  \"addossando\": \"addoss\",\n  \"addossare\": \"addoss\",\n  \"addossarvi\": \"addoss\",\n  \"addosso\": \"addoss\",\n  \"addottrinato\": \"addottrin\",\n  \"adduce\": \"adduc\",\n  \"adducevate\": \"adduc\",\n  \"addurre\": \"addurr\",\n  \"addusse\": \"adduss\",\n  \"addussero\": \"addusser\",\n  \"adeguamento\": \"adegu\",\n  \"adeguandosi\": \"adegu\",\n  \"adeguarsi\": \"adegu\",\n  \"adeguata\": \"adegu\",\n  \"adeguatamente\": \"adeguat\",\n  \"adeguate\": \"adegu\",\n  \"adeguatezza\": \"adeguatezz\",\n  \"adeguato\": \"adegu\",\n  \"adeguatò\": \"adeguat\",\n  \"adeguerà\": \"adegu\",\n  \"adelaide\": \"adelaid\",\n  \"adelante\": \"adel\",\n  \"adelboden\": \"adelboden\",\n  \"adempiendo\": \"ademp\",\n  \"adempiere\": \"ademp\",\n  \"adempimenti\": \"ademp\",\n  \"adempimento\": \"ademp\",\n  \"adempir\": \"ademp\",\n  \"adempire\": \"ademp\",\n  \"adempirlo\": \"ademp\",\n  \"adempita\": \"ademp\",\n  \"adempite\": \"ademp\",\n  \"adempito\": \"ademp\",\n  \"adeo\": \"ade\",\n  \"adepa\": \"adep\",\n  \"adepti\": \"adept\",\n  \"aderendo\": \"ader\",\n  \"aderente\": \"aderent\",\n  \"aderenti\": \"aderent\",\n  \"aderenze\": \"aderent\",\n  \"aderiranno\": \"ader\",\n  \"aderito\": \"ader\",\n  \"adesca\": \"adesc\",\n  \"adesione\": \"adesion\",\n  \"adesioni\": \"adesion\",\n  \"adesso\": \"adess\",\n  \"adi\": \"adi\",\n  \"adiacenti\": \"adiacent\",\n  \"adiacenze\": \"adiacent\",\n  \"adiconsum\": \"adiconsum\",\n  \"adige\": \"adig\",\n  \"adiranno\": \"adirann\",\n  \"adirarsi\": \"adir\",\n  \"adirato\": \"adir\",\n  \"adito\": \"adit\",\n  \"adocchiò\": \"adocc\",\n  \"adolescente\": \"adolescent\",\n  \"adolescenza\": \"adolescent\",\n  \"adolf\": \"adolf\",\n  \"adolfo\": \"adolf\",\n  \"adombrano\": \"adombr\",\n  \"adombrato\": \"adombr\",\n  \"adoperar\": \"adoper\",\n  \"adoperarsi\": \"adoper\",\n  \"adoperate\": \"adoper\",\n  \"adoperati\": \"adoper\",\n  \"adoperato\": \"adoper\",\n  \"adoperavano\": \"adoper\",\n  \"adopererà\": \"adoper\",\n  \"adoprano\": \"adopr\",\n  \"adoprar\": \"adopr\",\n  \"adoprare\": \"adopr\",\n  \"adoprarla\": \"adopr\",\n  \"adoprarlo\": \"adopr\",\n  \"adoprarsi\": \"adopr\",\n  \"adoprata\": \"adopr\",\n  \"adoprati\": \"adopr\",\n  \"adoprato\": \"adopr\",\n  \"adoprava\": \"adopr\",\n  \"adopravano\": \"adopr\",\n  \"adoprerebbe\": \"adopr\",\n  \"adorando\": \"ador\",\n  \"adorare\": \"ador\",\n  \"adorazione\": \"ador\",\n  \"adorna\": \"adorn\",\n  \"adornata\": \"adorn\",\n  \"adottabili\": \"adott\",\n  \"adottano\": \"adott\",\n  \"adottare\": \"adott\",\n  \"adottarli\": \"adott\",\n  \"adottata\": \"adott\",\n  \"adottati\": \"adott\",\n  \"adottato\": \"adott\",\n  \"adottivo\": \"adott\",\n  \"adozione\": \"adozion\",\n  \"adrian\": \"adrian\",\n  \"adriana\": \"adrian\",\n  \"adriano\": \"adri\",\n  \"adriatic\": \"adriatic\",\n  \"adriatica\": \"adriat\",\n  \"adriatiche\": \"adriat\",\n  \"adriatico\": \"adriat\",\n  \"adris\": \"adris\",\n  \"adspergine\": \"adspergin\",\n  \"adspersisset\": \"adspersisset\",\n  \"adulatori\": \"adul\",\n  \"adulta\": \"adult\",\n  \"adulterio\": \"adulter\",\n  \"adulti\": \"adult\",\n  \"adunanza\": \"adun\",\n  \"adunate\": \"adun\",\n  \"adunco\": \"adunc\",\n  \"adunque\": \"adunqu\",\n  \"aduste\": \"adust\",\n  \"advances\": \"advances\",\n  \"adwa\": \"adwa\",\n  \"ae\": \"ae\",\n  \"aedes\": \"aedes\",\n  \"aedium\": \"aedium\",\n  \"aequo\": \"aequ\",\n  \"aerea\": \"aere\",\n  \"aeree\": \"aere\",\n  \"aerei\": \"aere\",\n  \"aereo\": \"aere\",\n  \"aeromobili\": \"aeromobil\",\n  \"aeronautica\": \"aeronaut\",\n  \"aeronautico\": \"aeronaut\",\n  \"aeroporto\": \"aeroport\",\n  \"aeroportuale\": \"aeroportual\",\n  \"aerosol\": \"aerosol\",\n  \"afa\": \"afa\",\n  \"affaccendarsi\": \"affaccend\",\n  \"affaccendata\": \"affaccend\",\n  \"affaccendato\": \"affaccend\",\n  \"affaccendava\": \"affaccend\",\n  \"affaccendò\": \"affaccend\",\n  \"affacchinarsi\": \"affacchin\",\n  \"affaccia\": \"affacc\",\n  \"affacciandosi\": \"affacc\",\n  \"affacciare\": \"affacc\",\n  \"affacciaron\": \"affacciaron\",\n  \"affacciarsi\": \"affacc\",\n  \"affacciassero\": \"affacc\",\n  \"affacciata\": \"affacc\",\n  \"affacciati\": \"affacc\",\n  \"affacciato\": \"affacc\",\n  \"affacciatosi\": \"affacciat\",\n  \"affacciava\": \"affacc\",\n  \"affacciavano\": \"affacc\",\n  \"affacciò\": \"affacc\",\n  \"affacendato\": \"affacend\",\n  \"affamata\": \"affam\",\n  \"affamati\": \"affam\",\n  \"affamato\": \"affam\",\n  \"affamatore\": \"affam\",\n  \"affamatori\": \"affam\",\n  \"affannarsi\": \"affann\",\n  \"affannata\": \"affann\",\n  \"affannato\": \"affann\",\n  \"affannava\": \"affann\",\n  \"affanno\": \"affann\",\n  \"affannosa\": \"affann\",\n  \"affannosamente\": \"affann\",\n  \"affannose\": \"affann\",\n  \"affannoso\": \"affann\",\n  \"affar\": \"affar\",\n  \"affaracci\": \"affaracc\",\n  \"affare\": \"affar\",\n  \"affari\": \"affar\",\n  \"affaristica\": \"affarist\",\n  \"affascinante\": \"affascin\",\n  \"affascinanti\": \"affascin\",\n  \"affaticandoci\": \"affatic\",\n  \"affaticarsi\": \"affatic\",\n  \"affaticasse\": \"affatic\",\n  \"affaticata\": \"affatic\",\n  \"affaticati\": \"affatic\",\n  \"affaticato\": \"affatic\",\n  \"affatto\": \"affatt\",\n  \"afferma\": \"afferm\",\n  \"affermando\": \"afferm\",\n  \"affermano\": \"afferm\",\n  \"affermare\": \"afferm\",\n  \"affermarsi\": \"afferm\",\n  \"affermata\": \"afferm\",\n  \"affermative\": \"afferm\",\n  \"affermativo\": \"afferm\",\n  \"affermato\": \"afferm\",\n  \"affermazione\": \"afferm\",\n  \"affermazioni\": \"afferm\",\n  \"affermo\": \"afferm\",\n  \"affermò\": \"afferm\",\n  \"afferra\": \"afferr\",\n  \"afferrando\": \"afferr\",\n  \"afferrandogli\": \"afferr\",\n  \"afferrandola\": \"afferr\",\n  \"afferrandolo\": \"afferr\",\n  \"afferrano\": \"afferr\",\n  \"afferrar\": \"afferr\",\n  \"afferrarlo\": \"afferr\",\n  \"afferrata\": \"afferr\",\n  \"afferrati\": \"afferr\",\n  \"afferrato\": \"afferr\",\n  \"afferrò\": \"afferr\",\n  \"affettata\": \"affett\",\n  \"affettato\": \"affett\",\n  \"affetti\": \"affett\",\n  \"affettivo\": \"affett\",\n  \"affetto\": \"affett\",\n  \"affettuosa\": \"affettu\",\n  \"affettuosamente\": \"affettu\",\n  \"affettuose\": \"affettu\",\n  \"affettuosi\": \"affettu\",\n  \"affettuoso\": \"affettu\",\n  \"affezionata\": \"affezion\",\n  \"affezionato\": \"affezion\",\n  \"affezione\": \"affezion\",\n  \"affezioni\": \"affezion\",\n  \"affianca\": \"affianc\",\n  \"affiancare\": \"affianc\",\n  \"affiancato\": \"affianc\",\n  \"affiancherà\": \"affianc\",\n  \"affiancheranno\": \"affianc\",\n  \"affianchi\": \"affianc\",\n  \"affibiargli\": \"affib\",\n  \"affichè\": \"affic\",\n  \"affida\": \"affid\",\n  \"affidabile\": \"affid\",\n  \"affidabili\": \"affid\",\n  \"affidabilità\": \"affid\",\n  \"affidamento\": \"affid\",\n  \"affidano\": \"affid\",\n  \"affidare\": \"affid\",\n  \"affidargli\": \"affid\",\n  \"affidata\": \"affid\",\n  \"affidate\": \"affid\",\n  \"affidati\": \"affid\",\n  \"affidato\": \"affid\",\n  \"affidatomi\": \"affidatom\",\n  \"affievoliscano\": \"affievol\",\n  \"affievolisse\": \"affievoliss\",\n  \"affilate\": \"affil\",\n  \"affinamento\": \"affin\",\n  \"affinché\": \"affinc\",\n  \"affinchè\": \"affinc\",\n  \"affine\": \"affin\",\n  \"affini\": \"affin\",\n  \"affinis\": \"affinis\",\n  \"affissa\": \"affiss\",\n  \"affissi\": \"affiss\",\n  \"affissione\": \"affission\",\n  \"affissioni\": \"affission\",\n  \"affisso\": \"affiss\",\n  \"affittata\": \"affitt\",\n  \"affittate\": \"affitt\",\n  \"affittato\": \"affitt\",\n  \"affitti\": \"affitt\",\n  \"affitto\": \"affitt\",\n  \"affittuari\": \"affittuar\",\n  \"affittuario\": \"affittuar\",\n  \"afflato\": \"afflat\",\n  \"affliggervi\": \"affligg\",\n  \"afflisse\": \"affliss\",\n  \"afflitta\": \"afflitt\",\n  \"afflitte\": \"afflitt\",\n  \"afflitti\": \"afflitt\",\n  \"afflitto\": \"afflitt\",\n  \"afflizione\": \"afflizion\",\n  \"afflizioni\": \"afflizion\",\n  \"affluiscono\": \"afflu\",\n  \"affluiti\": \"afflu\",\n  \"afflusso\": \"affluss\",\n  \"affoga\": \"affog\",\n  \"affogare\": \"affog\",\n  \"affolla\": \"affoll\",\n  \"affollamento\": \"affoll\",\n  \"affollano\": \"affoll\",\n  \"affollare\": \"affoll\",\n  \"affollarsi\": \"affoll\",\n  \"affollata\": \"affoll\",\n  \"affollati\": \"affoll\",\n  \"affollato\": \"affoll\",\n  \"affonda\": \"affond\",\n  \"affondando\": \"affond\",\n  \"affondare\": \"affond\",\n  \"affondata\": \"affond\",\n  \"affondate\": \"affond\",\n  \"affondato\": \"affond\",\n  \"affondo\": \"affond\",\n  \"affossati\": \"affoss\",\n  \"affresco\": \"affresc\",\n  \"affretta\": \"affrett\",\n  \"affrettar\": \"affrett\",\n  \"affrettare\": \"affrett\",\n  \"affrettato\": \"affrett\",\n  \"affrettava\": \"affrett\",\n  \"affrettò\": \"affrett\",\n  \"affronta\": \"affront\",\n  \"affrontando\": \"affront\",\n  \"affrontano\": \"affront\",\n  \"affrontar\": \"affront\",\n  \"affrontare\": \"affront\",\n  \"affrontarla\": \"affront\",\n  \"affrontarlo\": \"affront\",\n  \"affrontarsi\": \"affront\",\n  \"affrontata\": \"affront\",\n  \"affrontate\": \"affront\",\n  \"affrontati\": \"affront\",\n  \"affrontato\": \"affront\",\n  \"affronterai\": \"affront\",\n  \"affronteranno\": \"affront\",\n  \"affronteremo\": \"affront\",\n  \"affronto\": \"affront\",\n  \"affumicate\": \"affumic\",\n  \"afghana\": \"afghan\",\n  \"afghane\": \"afghan\",\n  \"afghani\": \"afghan\",\n  \"afghanistan\": \"afghanistan\",\n  \"aflare\": \"aflar\",\n  \"afp\": \"afp\",\n  \"africa\": \"afric\",\n  \"africano\": \"afric\",\n  \"afrique\": \"afriqu\",\n  \"ag\": \"ag\",\n  \"aga\": \"aga\",\n  \"agapov\": \"agapov\",\n  \"agassi\": \"agass\",\n  \"agata\": \"agat\",\n  \"agazzi\": \"agazz\",\n  \"agci\": \"agci\",\n  \"age\": \"age\",\n  \"agenda\": \"agend\",\n  \"agennli\": \"agennl\",\n  \"agensud\": \"agensud\",\n  \"agente\": \"agent\",\n  \"agenti\": \"agent\",\n  \"agenzia\": \"agenz\",\n  \"agenzie\": \"agenz\",\n  \"agevolare\": \"agevol\",\n  \"agevolata\": \"agevol\",\n  \"agevolato\": \"agevol\",\n  \"agevolazione\": \"agevol\",\n  \"agevolazioni\": \"agevol\",\n  \"agevole\": \"agevol\",\n  \"agevolezze\": \"agevolezz\",\n  \"agevoli\": \"agevol\",\n  \"agganciare\": \"agganc\",\n  \"aggettivo\": \"aggett\",\n  \"agghiacciante\": \"agghiacc\",\n  \"agginte\": \"aggint\",\n  \"aggiorna\": \"aggiorn\",\n  \"aggiornamenti\": \"aggiorn\",\n  \"aggiornamento\": \"aggiorn\",\n  \"aggiornata\": \"aggiorn\",\n  \"aggira\": \"aggir\",\n  \"aggirano\": \"aggir\",\n  \"aggirarsi\": \"aggir\",\n  \"aggirava\": \"aggir\",\n  \"aggiudicato\": \"aggiudic\",\n  \"aggiunga\": \"aggiung\",\n  \"aggiunge\": \"aggiung\",\n  \"aggiungendo\": \"aggiung\",\n  \"aggiunger\": \"aggiunger\",\n  \"aggiungeranno\": \"aggiung\",\n  \"aggiungere\": \"aggiung\",\n  \"aggiungervi\": \"aggiung\",\n  \"aggiungeva\": \"aggiung\",\n  \"aggiungevano\": \"aggiung\",\n  \"aggiungiamo\": \"aggiung\",\n  \"aggiungono\": \"aggiung\",\n  \"aggiunse\": \"aggiuns\",\n  \"aggiunsero\": \"aggiunser\",\n  \"aggiunsi\": \"aggiuns\",\n  \"aggiunta\": \"aggiunt\",\n  \"aggiunte\": \"aggiunt\",\n  \"aggiunti\": \"aggiunt\",\n  \"aggiuntive\": \"aggiunt\",\n  \"aggiuntivi\": \"aggiunt\",\n  \"aggiunto\": \"aggiunt\",\n  \"aggiuntovi\": \"aggiuntov\",\n  \"aggiustamenti\": \"aggiust\",\n  \"aggiustamento\": \"aggiust\",\n  \"aggiutto\": \"aggiutt\",\n  \"aggranchiate\": \"aggranc\",\n  \"aggrapparsi\": \"aggrapp\",\n  \"aggravando\": \"aggrav\",\n  \"aggravare\": \"aggrav\",\n  \"aggravarsi\": \"aggrav\",\n  \"aggravata\": \"aggrav\",\n  \"aggravatissima\": \"aggravatissim\",\n  \"aggravato\": \"aggrav\",\n  \"aggraverebbe\": \"aggrav\",\n  \"aggredisce\": \"aggred\",\n  \"aggredita\": \"aggred\",\n  \"aggrediti\": \"aggred\",\n  \"aggredito\": \"aggred\",\n  \"aggregare\": \"aggreg\",\n  \"aggregazione\": \"aggreg\",\n  \"aggregazioni\": \"aggreg\",\n  \"aggregherà\": \"aggreg\",\n  \"aggregrazione\": \"aggregr\",\n  \"aggressione\": \"aggression\",\n  \"aggressioni\": \"aggression\",\n  \"aggressivi\": \"aggress\",\n  \"aggressività\": \"aggress\",\n  \"aggressivo\": \"aggress\",\n  \"aggrinzando\": \"aggrinz\",\n  \"aggrottando\": \"aggrott\",\n  \"aggrottate\": \"aggrott\",\n  \"aggruppano\": \"aggrupp\",\n  \"aggruppati\": \"aggrupp\",\n  \"agguanta\": \"agguant\",\n  \"agguantati\": \"agguant\",\n  \"agguantò\": \"agguant\",\n  \"agguati\": \"aggu\",\n  \"agguato\": \"aggu\",\n  \"agguerrita\": \"agguerr\",\n  \"aghini\": \"aghin\",\n  \"agi\": \"agi\",\n  \"agiata\": \"agi\",\n  \"agiatezza\": \"agiatezz\",\n  \"agiati\": \"agi\",\n  \"agiato\": \"agi\",\n  \"agile\": \"agil\",\n  \"agio\": \"agi\",\n  \"agiranno\": \"agirann\",\n  \"agire\": \"agir\",\n  \"agiremo\": \"agirem\",\n  \"agisca\": \"agisc\",\n  \"agisce\": \"agisc\",\n  \"agita\": \"agit\",\n  \"agitarlo\": \"agit\",\n  \"agitata\": \"agit\",\n  \"agitate\": \"agit\",\n  \"agitati\": \"agit\",\n  \"agitato\": \"agit\",\n  \"agitava\": \"agit\",\n  \"agitazion\": \"agitazion\",\n  \"agitazione\": \"agit\",\n  \"agitazioni\": \"agit\",\n  \"agito\": \"agit\",\n  \"agiutto\": \"agiutt\",\n  \"agl\": \"agl\",\n  \"agli\": \"agli\",\n  \"agnalli\": \"agnall\",\n  \"agnelli\": \"agnell\",\n  \"agnello\": \"agnell\",\n  \"agnes\": \"agnes\",\n  \"agnese\": \"agnes\",\n  \"ago\": \"ago\",\n  \"agonia\": \"agon\",\n  \"agonismo\": \"agon\",\n  \"agonistica\": \"agonist\",\n  \"agonizzante\": \"agonizz\",\n  \"agos\": \"agos\",\n  \"agostina\": \"agostin\",\n  \"agostini\": \"agostin\",\n  \"agostino\": \"agostin\",\n  \"agosto\": \"agost\",\n  \"agr\": \"agr\",\n  \"agra\": \"agra\",\n  \"agrario\": \"agrar\",\n  \"agreement\": \"agreement\",\n  \"agren\": \"agren\",\n  \"agric\": \"agric\",\n  \"agricola\": \"agricol\",\n  \"agricole\": \"agricol\",\n  \"agricoli\": \"agricol\",\n  \"agricolo\": \"agricol\",\n  \"agricoltori\": \"agricoltor\",\n  \"agricoltura\": \"agricoltur\",\n  \"agrifoglio\": \"agrifogl\",\n  \"agrifutura\": \"agrifutur\",\n  \"agrigento\": \"agrigent\",\n  \"agro\": \"agro\",\n  \"aguanta\": \"aguant\",\n  \"aguas\": \"aguas\",\n  \"aguayo\": \"aguay\",\n  \"aguzzando\": \"aguzz\",\n  \"aguzzano\": \"aguzz\",\n  \"aguzzava\": \"aguzz\",\n  \"aguzzino\": \"aguzzin\",\n  \"ah\": \"ah\",\n  \"ahata\": \"ahat\",\n  \"ahi\": \"ahi\",\n  \"ahimè\": \"ahim\",\n  \"ahmed\": \"ahmed\",\n  \"ahn\": \"ahn\",\n  \"ahronot\": \"ahronot\",\n  \"ai\": \"ai\",\n  \"aia\": \"aia\",\n  \"aidid\": \"aidid\",\n  \"aids\": \"aids\",\n  \"aie\": \"aie\",\n  \"aiebant\": \"aiebant\",\n  \"aimee\": \"aime\",\n  \"aimone\": \"aimon\",\n  \"air\": \"air\",\n  \"aires\": \"aires\",\n  \"ais\": \"ais\",\n  \"aiuta\": \"aiut\",\n  \"aiutando\": \"aiut\",\n  \"aiutante\": \"aiut\",\n  \"aiutanti\": \"aiut\",\n  \"aiutar\": \"aiut\",\n  \"aiutarci\": \"aiut\",\n  \"aiutare\": \"aiut\",\n  \"aiutarla\": \"aiut\",\n  \"aiutarli\": \"aiut\",\n  \"aiutarlo\": \"aiut\",\n  \"aiutarmi\": \"aiut\",\n  \"aiutarono\": \"aiut\",\n  \"aiutarsi\": \"aiut\",\n  \"aiutarvi\": \"aiut\",\n  \"aiutasse\": \"aiut\",\n  \"aiutassero\": \"aiut\",\n  \"aiutata\": \"aiut\",\n  \"aiutate\": \"aiut\",\n  \"aiutateci\": \"aiutatec\",\n  \"aiutatemi\": \"aiutatem\",\n  \"aiutati\": \"aiut\",\n  \"aiutato\": \"aiut\",\n  \"aiutava\": \"aiut\",\n  \"aiuterà\": \"aiut\",\n  \"aiuti\": \"aiut\",\n  \"aiutino\": \"aiutin\",\n  \"aiuto\": \"aiut\",\n  \"aiutò\": \"aiut\",\n  \"aix\": \"aix\",\n  \"aizzargli\": \"aizz\",\n  \"aizzasse\": \"aizz\",\n  \"aizzata\": \"aizz\",\n  \"aizzatori\": \"aizzator\",\n  \"aizzava\": \"aizz\",\n  \"ajaccio\": \"ajacc\",\n  \"ajello\": \"ajell\",\n  \"akbar\": \"akbar\",\n  \"al\": \"al\",\n  \"ala\": \"ala\",\n  \"alabarde\": \"alabard\",\n  \"alabardieri\": \"alabardier\",\n  \"alacce\": \"alacc\",\n  \"alacrità\": \"alacr\",\n  \"alain\": \"alain\",\n  \"alam\": \"alam\",\n  \"alan\": \"alan\",\n  \"alard\": \"alard\",\n  \"alba\": \"alba\",\n  \"albafeira\": \"albafeir\",\n  \"albagìa\": \"albagì\",\n  \"albanese\": \"albanes\",\n  \"albanesè\": \"albanes\",\n  \"albanesi\": \"albanes\",\n  \"albania\": \"alban\",\n  \"albano\": \"alban\",\n  \"albanova\": \"albanov\",\n  \"albeggiare\": \"albegg\",\n  \"alberga\": \"alberg\",\n  \"albergato\": \"alberg\",\n  \"alberghi\": \"alberg\",\n  \"alberghiero\": \"alberghier\",\n  \"albergo\": \"alberg\",\n  \"alberi\": \"alber\",\n  \"albero\": \"alber\",\n  \"alberoni\": \"alberon\",\n  \"albertini\": \"albertin\",\n  \"alberto\": \"albert\",\n  \"albino\": \"albin\",\n  \"albo\": \"albo\",\n  \"album\": \"album\",\n  \"alcabizio\": \"alcabiz\",\n  \"alcatel\": \"alcatel\",\n  \"alce\": \"alce\",\n  \"alcide\": \"alcid\",\n  \"alcun\": \"alcun\",\n  \"alcuna\": \"alcun\",\n  \"alcune\": \"alcun\",\n  \"alcuni\": \"alcun\",\n  \"alcuno\": \"alcun\",\n  \"aldair\": \"alda\",\n  \"aldebaran\": \"aldebaran\",\n  \"aldilà\": \"aldil\",\n  \"aldo\": \"aldo\",\n  \"aldy\": \"aldy\",\n  \"ale\": \"ale\",\n  \"aleksadr\": \"aleksadr\",\n  \"aleksander\": \"aleksander\",\n  \"aleksandra\": \"aleksandr\",\n  \"alema\": \"alem\",\n  \"alemanna\": \"alemann\",\n  \"alemanne\": \"alemann\",\n  \"alemanni\": \"alemann\",\n  \"alemanno\": \"alemann\",\n  \"alessandra\": \"alessandr\",\n  \"alessandria\": \"alessandr\",\n  \"alessandrini\": \"alessandrin\",\n  \"alessandro\": \"alessandr\",\n  \"alessio\": \"aless\",\n  \"alexander\": \"alexander\",\n  \"alexandra\": \"alexandr\",\n  \"alexeyev\": \"alexeyev\",\n  \"alfa\": \"alfa\",\n  \"alfabeto\": \"alfabet\",\n  \"alfiere\": \"alfi\",\n  \"alfieri\": \"alfier\",\n  \"alfiero\": \"alfier\",\n  \"alfine\": \"alfin\",\n  \"alfonsi\": \"alfons\",\n  \"alfonso\": \"alfons\",\n  \"alfonzo\": \"alfonz\",\n  \"alfredo\": \"alfred\",\n  \"alga\": \"alga\",\n  \"algeri\": \"alger\",\n  \"algeria\": \"alger\",\n  \"algerina\": \"algerin\",\n  \"algerine\": \"algerin\",\n  \"algerini\": \"algerin\",\n  \"algerino\": \"algerin\",\n  \"algerstedt\": \"algerstedt\",\n  \"alghe\": \"alghe\",\n  \"alghero\": \"algher\",\n  \"algunos\": \"algunos\",\n  \"ali\": \"ali\",\n  \"alias\": \"alias\",\n  \"alienare\": \"alien\",\n  \"alienazione\": \"alien\",\n  \"alieni\": \"alien\",\n  \"alieno\": \"alien\",\n  \"alienò\": \"alien\",\n  \"aliis\": \"aliis\",\n  \"alimentano\": \"aliment\",\n  \"alimentare\": \"aliment\",\n  \"alimentari\": \"alimentar\",\n  \"alimentata\": \"aliment\",\n  \"alimentato\": \"aliment\",\n  \"alimentazione\": \"aliment\",\n  \"alimenti\": \"aliment\",\n  \"alimento\": \"aliment\",\n  \"aliquota\": \"aliquot\",\n  \"aliquote\": \"aliquot\",\n  \"alitalia\": \"alital\",\n  \"aliti\": \"alit\",\n  \"alito\": \"alit\",\n  \"alive\": \"aliv\",\n  \"alkan\": \"alkan\",\n  \"alkhan\": \"alkhan\",\n  \"all\": \"all\",\n  \"alla\": \"alla\",\n  \"allacciamenti\": \"allacc\",\n  \"allacciate\": \"allacc\",\n  \"allacciò\": \"allacc\",\n  \"allagava\": \"allag\",\n  \"allan\": \"allan\",\n  \"allargamento\": \"allarg\",\n  \"allargando\": \"allarg\",\n  \"allargar\": \"allarg\",\n  \"allargare\": \"allarg\",\n  \"allargarne\": \"allarg\",\n  \"allargate\": \"allarg\",\n  \"allargati\": \"allarg\",\n  \"allargato\": \"allarg\",\n  \"allargava\": \"allarg\",\n  \"allarmante\": \"allarm\",\n  \"allarmata\": \"allarm\",\n  \"allarmati\": \"allarm\",\n  \"allarme\": \"allarm\",\n  \"allattarne\": \"allatt\",\n  \"alle\": \"alle\",\n  \"alleanza\": \"alleanz\",\n  \"alleanze\": \"alleanz\",\n  \"alleare\": \"alle\",\n  \"allearmi\": \"alle\",\n  \"allearono\": \"alle\",\n  \"allearsi\": \"alle\",\n  \"alleati\": \"alle\",\n  \"alleato\": \"alle\",\n  \"allegava\": \"alleg\",\n  \"allegazioni\": \"alleg\",\n  \"alleggerimento\": \"allegger\",\n  \"alleggerire\": \"allegger\",\n  \"alleggiamento\": \"allegg\",\n  \"alleghe\": \"alleg\",\n  \"allegò\": \"alleg\",\n  \"allegra\": \"allegr\",\n  \"allegramente\": \"allegr\",\n  \"allegre\": \"allegr\",\n  \"allegrezza\": \"allegrezz\",\n  \"allegrezze\": \"allegrezz\",\n  \"allegri\": \"allegr\",\n  \"allegria\": \"allegr\",\n  \"allegro\": \"allegr\",\n  \"allenamenti\": \"allen\",\n  \"allenamento\": \"allen\",\n  \"allenarmi\": \"allen\",\n  \"allenate\": \"allen\",\n  \"allenato\": \"allen\",\n  \"allenatore\": \"allen\",\n  \"allenatori\": \"allen\",\n  \"allende\": \"allend\",\n  \"allenta\": \"allent\",\n  \"allentare\": \"allent\",\n  \"allentata\": \"allent\",\n  \"allentate\": \"allent\",\n  \"allentato\": \"allent\",\n  \"allentò\": \"allent\",\n  \"allerta\": \"allert\",\n  \"allestendo\": \"allest\",\n  \"allestimento\": \"allest\",\n  \"allestir\": \"allest\",\n  \"allestire\": \"allest\",\n  \"allestita\": \"allest\",\n  \"allestite\": \"allest\",\n  \"allestito\": \"allest\",\n  \"allettamenti\": \"allett\",\n  \"allettarla\": \"allett\",\n  \"allettato\": \"allett\",\n  \"allevamento\": \"allev\",\n  \"allevarli\": \"allev\",\n  \"allevata\": \"allev\",\n  \"allevato\": \"allev\",\n  \"alleviare\": \"allev\",\n  \"alli\": \"alli\",\n  \"allieva\": \"alli\",\n  \"allieve\": \"alliev\",\n  \"allievi\": \"alli\",\n  \"allievo\": \"alli\",\n  \"allison\": \"allison\",\n  \"allla\": \"allla\",\n  \"allo\": \"allo\",\n  \"allocuzione\": \"allocu\",\n  \"allogata\": \"allog\",\n  \"allogate\": \"allog\",\n  \"alloggi\": \"allogg\",\n  \"alloggiamenti\": \"allogg\",\n  \"alloggiar\": \"allogg\",\n  \"alloggiare\": \"allogg\",\n  \"alloggiata\": \"allogg\",\n  \"alloggiate\": \"allogg\",\n  \"alloggiati\": \"allogg\",\n  \"alloggiato\": \"allogg\",\n  \"alloggiava\": \"allogg\",\n  \"alloggiavano\": \"allogg\",\n  \"alloggio\": \"allogg\",\n  \"allontana\": \"allontan\",\n  \"allontanando\": \"allontan\",\n  \"allontanandoli\": \"allontan\",\n  \"allontanandosi\": \"allontan\",\n  \"allontanar\": \"allontan\",\n  \"allontanare\": \"allontan\",\n  \"allontanarlo\": \"allontan\",\n  \"allontanarne\": \"allontan\",\n  \"allontanarono\": \"allontan\",\n  \"allontanarsi\": \"allontan\",\n  \"allontanasse\": \"allontan\",\n  \"allontanata\": \"allontan\",\n  \"allontanati\": \"allontan\",\n  \"allontanato\": \"allontan\",\n  \"allontanava\": \"allontan\",\n  \"allontanavano\": \"allontan\",\n  \"allontani\": \"allontan\",\n  \"allontanò\": \"allontan\",\n  \"allor\": \"allor\",\n  \"allora\": \"allor\",\n  \"allorché\": \"allorc\",\n  \"allori\": \"allor\",\n  \"allucinante\": \"allucin\",\n  \"allucinanti\": \"allucin\",\n  \"alluminio\": \"allumin\",\n  \"allunga\": \"allung\",\n  \"allungando\": \"allung\",\n  \"allungar\": \"allung\",\n  \"allungare\": \"allung\",\n  \"allungate\": \"allung\",\n  \"allungato\": \"allung\",\n  \"allungava\": \"allung\",\n  \"allungò\": \"allung\",\n  \"allusione\": \"allusion\",\n  \"allusiva\": \"allus\",\n  \"alluvionate\": \"alluvion\",\n  \"alluvionati\": \"alluvion\",\n  \"alma\": \"alma\",\n  \"almanaccar\": \"almanacc\",\n  \"almanaccare\": \"almanacc\",\n  \"almanacchi\": \"almanacc\",\n  \"almaral\": \"almaral\",\n  \"almen\": \"almen\",\n  \"almeno\": \"almen\",\n  \"alo\": \"alo\",\n  \"aloisi\": \"alois\",\n  \"alone\": \"alon\",\n  \"alpestre\": \"alpestr\",\n  \"alpi\": \"alpi\",\n  \"alpigiano\": \"alpig\",\n  \"alpine\": \"alpin\",\n  \"alpinimo\": \"alpinim\",\n  \"alpino\": \"alpin\",\n  \"alquanti\": \"alquant\",\n  \"alquanto\": \"alquant\",\n  \"alsthom\": \"alsthom\",\n  \"alt\": \"alt\",\n  \"alta\": \"alta\",\n  \"altafini\": \"altafin\",\n  \"altalenante\": \"altalen\",\n  \"altamente\": \"alt\",\n  \"altamirano\": \"altamir\",\n  \"altar\": \"altar\",\n  \"altare\": \"altar\",\n  \"alte\": \"alte\",\n  \"alter\": \"alter\",\n  \"altera\": \"alter\",\n  \"alterando\": \"alter\",\n  \"alterarsi\": \"alter\",\n  \"alterata\": \"alter\",\n  \"alterate\": \"alter\",\n  \"alterati\": \"alter\",\n  \"alterato\": \"alter\",\n  \"alteravan\": \"alteravan\",\n  \"alterazione\": \"alter\",\n  \"alterigia\": \"alterig\",\n  \"alternando\": \"altern\",\n  \"alternanza\": \"altern\",\n  \"alternate\": \"altern\",\n  \"alternati\": \"altern\",\n  \"alternativa\": \"altern\",\n  \"alternativamente\": \"altern\",\n  \"alternative\": \"altern\",\n  \"alternativi\": \"altern\",\n  \"alternativo\": \"altern\",\n  \"altero\": \"alter\",\n  \"altezza\": \"altezz\",\n  \"alti\": \"alti\",\n  \"altissimi\": \"altissim\",\n  \"altissimo\": \"altissim\",\n  \"alto\": \"alto\",\n  \"altoatesina\": \"altoatesin\",\n  \"altoatesine\": \"altoatesin\",\n  \"altoatesini\": \"altoatesin\",\n  \"altoatesino\": \"altoatesin\",\n  \"altoparlanti\": \"altoparl\",\n  \"altopiano\": \"altop\",\n  \"altos\": \"altos\",\n  \"altr\": \"altr\",\n  \"altra\": \"altra\",\n  \"altre\": \"altre\",\n  \"altresì\": \"altres\",\n  \"altrettali\": \"altrettal\",\n  \"altrettanta\": \"altrettant\",\n  \"altrettante\": \"altrett\",\n  \"altrettanti\": \"altrett\",\n  \"altrettanto\": \"altrettant\",\n  \"altri\": \"altri\",\n  \"altrì\": \"altrì\",\n  \"altrimenti\": \"altriment\",\n  \"altringer\": \"altringer\",\n  \"altro\": \"altro\",\n  \"altrò\": \"altrò\",\n  \"altroieri\": \"altroier\",\n  \"altrove\": \"altrov\",\n  \"altrui\": \"altru\",\n  \"alture\": \"altur\",\n  \"alumix\": \"alumix\",\n  \"alunne\": \"alunn\",\n  \"alunni\": \"alunn\",\n  \"alveare\": \"alve\",\n  \"alvin\": \"alvin\",\n  \"alza\": \"alza\",\n  \"alzan\": \"alzan\",\n  \"alzando\": \"alzand\",\n  \"alzandogli\": \"alzandogl\",\n  \"alzandosi\": \"alzand\",\n  \"alzano\": \"alzan\",\n  \"alzar\": \"alzar\",\n  \"alzare\": \"alzar\",\n  \"alzargli\": \"alzargl\",\n  \"alzarla\": \"alzarl\",\n  \"alzarsi\": \"alzars\",\n  \"alzasse\": \"alzass\",\n  \"alzata\": \"alzat\",\n  \"alzate\": \"alzat\",\n  \"alzatevi\": \"alzat\",\n  \"alzati\": \"alzat\",\n  \"alzato\": \"alzat\",\n  \"alzatosi\": \"alzat\",\n  \"alzava\": \"alzav\",\n  \"alzavano\": \"alzav\",\n  \"alzi\": \"alzi\",\n  \"alzo\": \"alzo\",\n  \"alzò\": \"alzò\",\n  \"am\": \"am\",\n  \"ama\": \"ama\",\n  \"amabile\": \"amabil\",\n  \"amabili\": \"amabil\",\n  \"amano\": \"aman\",\n  \"amante\": \"amant\",\n  \"amanti\": \"amant\",\n  \"amar\": \"amar\",\n  \"amara\": \"amar\",\n  \"amaramente\": \"amar\",\n  \"amaranti\": \"amar\",\n  \"amare\": \"amar\",\n  \"amareggiata\": \"amaregg\",\n  \"amareggiati\": \"amaregg\",\n  \"amareggiato\": \"amaregg\",\n  \"amarezza\": \"amarezz\",\n  \"amari\": \"amar\",\n  \"amaritudine\": \"amaritudin\",\n  \"amarli\": \"amarl\",\n  \"amaro\": \"amar\",\n  \"amarò\": \"amar\",\n  \"amaru\": \"amaru\",\n  \"amata\": \"amat\",\n  \"amateli\": \"amatel\",\n  \"amatevi\": \"amat\",\n  \"amati\": \"amat\",\n  \"amato\": \"amat\",\n  \"amatore\": \"amator\",\n  \"amatori\": \"amator\",\n  \"amatorio\": \"amator\",\n  \"amava\": \"amav\",\n  \"amavano\": \"amav\",\n  \"amavate\": \"amav\",\n  \"amazzonia\": \"amazzon\",\n  \"amazzonica\": \"amazzon\",\n  \"ambasce\": \"ambasc\",\n  \"ambasciata\": \"ambasc\",\n  \"ambasciator\": \"ambasciator\",\n  \"ambasciatore\": \"ambasc\",\n  \"ambasciatrice\": \"ambasc\",\n  \"ambedue\": \"ambedu\",\n  \"ambientale\": \"ambiental\",\n  \"ambientali\": \"ambiental\",\n  \"ambientalista\": \"ambiental\",\n  \"ambientata\": \"ambient\",\n  \"ambientato\": \"ambient\",\n  \"ambientazioni\": \"ambient\",\n  \"ambiente\": \"ambient\",\n  \"ambienti\": \"ambient\",\n  \"ambiete\": \"ambi\",\n  \"ambiguo\": \"ambigu\",\n  \"ambita\": \"ambit\",\n  \"ambito\": \"ambit\",\n  \"ambizione\": \"ambizion\",\n  \"ambizioni\": \"ambizion\",\n  \"ambiziosa\": \"ambiz\",\n  \"ambiziose\": \"ambiz\",\n  \"ambro\": \"ambro\",\n  \"ambrogio\": \"ambrog\",\n  \"ambros\": \"ambros\",\n  \"ambrosetti\": \"ambrosett\",\n  \"ambrosia\": \"ambros\",\n  \"ambrosiana\": \"ambrosian\",\n  \"ambrosio\": \"ambros\",\n  \"ambroveneto\": \"ambrovenet\",\n  \"ambulanti\": \"ambul\",\n  \"ambulanze\": \"ambul\",\n  \"ambulatori\": \"ambul\",\n  \"amedeo\": \"amede\",\n  \"amendola\": \"amendol\",\n  \"amene\": \"amen\",\n  \"amenità\": \"amen\",\n  \"ameno\": \"amen\",\n  \"amer\": \"amer\",\n  \"america\": \"amer\",\n  \"american\": \"american\",\n  \"americana\": \"american\",\n  \"americanbond\": \"americanbond\",\n  \"americane\": \"american\",\n  \"americani\": \"american\",\n  \"americano\": \"americ\",\n  \"americas\": \"americas\",\n  \"amerigo\": \"amerig\",\n  \"amerini\": \"amerin\",\n  \"ametrano\": \"ametr\",\n  \"ami\": \"ami\",\n  \"amianto\": \"amiant\",\n  \"amica\": \"amic\",\n  \"amiche\": \"amic\",\n  \"amichevole\": \"amichevol\",\n  \"amici\": \"amic\",\n  \"amicizia\": \"amiciz\",\n  \"amicizie\": \"amiciz\",\n  \"amico\": \"amic\",\n  \"amiram\": \"amiram\",\n  \"amm\": \"amm\",\n  \"ammaccar\": \"ammacc\",\n  \"ammaccate\": \"ammacc\",\n  \"ammaccati\": \"ammacc\",\n  \"ammaccato\": \"ammacc\",\n  \"ammaestramento\": \"ammaestr\",\n  \"ammaestrata\": \"ammaestr\",\n  \"ammaestrato\": \"ammaestr\",\n  \"ammainato\": \"ammain\",\n  \"ammalare\": \"ammal\",\n  \"ammalarono\": \"ammal\",\n  \"ammalarsi\": \"ammal\",\n  \"ammalata\": \"ammal\",\n  \"ammalate\": \"ammal\",\n  \"ammalati\": \"ammal\",\n  \"ammalato\": \"ammal\",\n  \"ammalavano\": \"ammal\",\n  \"ammalazzati\": \"ammalazz\",\n  \"ammaliziati\": \"ammaliz\",\n  \"ammalò\": \"ammal\",\n  \"amman\": \"amman\",\n  \"ammansare\": \"ammans\",\n  \"ammansato\": \"ammans\",\n  \"ammassa\": \"ammass\",\n  \"ammasso\": \"ammass\",\n  \"ammazza\": \"ammazz\",\n  \"ammazzar\": \"ammazz\",\n  \"ammazzare\": \"ammazz\",\n  \"ammazzarvi\": \"ammazz\",\n  \"ammazzassero\": \"ammazz\",\n  \"ammazzati\": \"ammazz\",\n  \"ammazzato\": \"ammazz\",\n  \"ammazzeranno\": \"ammazz\",\n  \"ammazzerebbe\": \"ammazz\",\n  \"ammazzi\": \"ammazz\",\n  \"ammazzo\": \"ammazz\",\n  \"ammazzò\": \"ammazz\",\n  \"ammessa\": \"ammess\",\n  \"ammesse\": \"ammess\",\n  \"ammessi\": \"ammess\",\n  \"ammesso\": \"ammess\",\n  \"ammette\": \"ammett\",\n  \"ammettere\": \"ammett\",\n  \"amministrarli\": \"amministr\",\n  \"amministrativa\": \"amministr\",\n  \"amministrative\": \"amministr\",\n  \"amministrativi\": \"amministr\",\n  \"amministrativo\": \"amministr\",\n  \"amministrato\": \"amministr\",\n  \"amministratore\": \"amministr\",\n  \"amministratori\": \"amministr\",\n  \"amministrazione\": \"amministr\",\n  \"amministrazioni\": \"amministr\",\n  \"amministriamo\": \"amministr\",\n  \"amministrtiva\": \"amministrt\",\n  \"ammira\": \"ammir\",\n  \"ammirabile\": \"ammir\",\n  \"ammiraglio\": \"ammiragl\",\n  \"ammirare\": \"ammir\",\n  \"ammirati\": \"ammir\",\n  \"ammirato\": \"ammir\",\n  \"ammirava\": \"ammir\",\n  \"ammirazione\": \"ammir\",\n  \"ammirevole\": \"ammirevol\",\n  \"ammissione\": \"ammission\",\n  \"ammodernata\": \"ammodern\",\n  \"ammonisce\": \"ammon\",\n  \"ammoniscono\": \"ammon\",\n  \"ammonissero\": \"ammon\",\n  \"ammoniti\": \"ammon\",\n  \"ammonito\": \"ammon\",\n  \"ammoniva\": \"ammon\",\n  \"ammonizione\": \"ammonizion\",\n  \"ammonizioni\": \"ammonizion\",\n  \"ammontare\": \"ammont\",\n  \"ammontari\": \"ammontar\",\n  \"ammontata\": \"ammont\",\n  \"ammontate\": \"ammont\",\n  \"ammontati\": \"ammont\",\n  \"ammontato\": \"ammont\",\n  \"ammontavano\": \"ammont\",\n  \"ammonticchiati\": \"ammonticc\",\n  \"ammorbato\": \"ammorb\",\n  \"ammorbidire\": \"ammorbid\",\n  \"ammorbidirè\": \"ammorbidir\",\n  \"ammortire\": \"ammort\",\n  \"ammortito\": \"ammort\",\n  \"ammortizzatore\": \"ammortizz\",\n  \"ammortizzatori\": \"ammortizz\",\n  \"ammucchiate\": \"ammucc\",\n  \"ammutolisce\": \"ammutol\",\n  \"ammutolisco\": \"ammutol\",\n  \"amnistia\": \"amnist\",\n  \"amnon\": \"amnon\",\n  \"amo\": \"amo\",\n  \"amodeo\": \"amode\",\n  \"amor\": \"amor\",\n  \"amore\": \"amor\",\n  \"amorevole\": \"amorevol\",\n  \"amorevolezza\": \"amorevolezz\",\n  \"amorevoli\": \"amorevol\",\n  \"amorevolmente\": \"amorevol\",\n  \"amori\": \"amor\",\n  \"amorore\": \"amoror\",\n  \"amoroso\": \"amor\",\n  \"amoruso\": \"amorus\",\n  \"amos\": \"amos\",\n  \"amparo\": \"ampar\",\n  \"ampezzo\": \"ampezz\",\n  \"ampi\": \"ampi\",\n  \"ampia\": \"ampi\",\n  \"ampiamente\": \"ampi\",\n  \"ampie\": \"ampi\",\n  \"ampiezza\": \"ampiezz\",\n  \"ampio\": \"ampi\",\n  \"amplia\": \"ampli\",\n  \"ampliando\": \"ampli\",\n  \"ampliare\": \"ampli\",\n  \"ampliata\": \"ampli\",\n  \"amplificata\": \"amplific\",\n  \"amplificato\": \"amplific\",\n  \"amplissimi\": \"amplissim\",\n  \"ampolla\": \"ampoll\",\n  \"ampollosamente\": \"ampoll\",\n  \"ampollose\": \"ampoll\",\n  \"amr\": \"amr\",\n  \"amsterdam\": \"amsterdam\",\n  \"amy\": \"amy\",\n  \"an\": \"an\",\n  \"anac\": \"anac\",\n  \"anadolu\": \"anadolu\",\n  \"anafilattico\": \"anafilatt\",\n  \"anagrafe\": \"anagraf\",\n  \"analisi\": \"analis\",\n  \"analisti\": \"anal\",\n  \"analitica\": \"analit\",\n  \"analizza\": \"analizz\",\n  \"analizzando\": \"analizz\",\n  \"analoga\": \"analog\",\n  \"analoghe\": \"analog\",\n  \"analoghi\": \"analog\",\n  \"analogia\": \"analog\",\n  \"analogie\": \"analog\",\n  \"analogo\": \"analog\",\n  \"anas\": \"anas\",\n  \"anastasia\": \"anastas\",\n  \"anatema\": \"anatem\",\n  \"anatemi\": \"anatem\",\n  \"anatoli\": \"anatol\",\n  \"anatoly\": \"anatoly\",\n  \"anav\": \"anav\",\n  \"anca\": \"anca\",\n  \"anch\": \"anch\",\n  \"anche\": \"anche\",\n  \"anco\": \"anco\",\n  \"ancona\": \"ancon\",\n  \"ancor\": \"ancor\",\n  \"ancora\": \"ancor\",\n  \"ancorata\": \"ancor\",\n  \"ancorato\": \"ancor\",\n  \"ancorché\": \"ancorc\",\n  \"ancudine\": \"ancudin\",\n  \"and\": \"and\",\n  \"andamenti\": \"andament\",\n  \"andamento\": \"andament\",\n  \"andando\": \"andand\",\n  \"andandogli\": \"andandogl\",\n  \"andandole\": \"andandol\",\n  \"andandomi\": \"andandom\",\n  \"andandosene\": \"andandosen\",\n  \"andar\": \"andar\",\n  \"andarci\": \"andarc\",\n  \"andare\": \"andar\",\n  \"andargli\": \"andargl\",\n  \"andarle\": \"andarl\",\n  \"andarlo\": \"andarl\",\n  \"andarmene\": \"andarmen\",\n  \"andarmi\": \"andarm\",\n  \"andarne\": \"andarn\",\n  \"andaron\": \"andaron\",\n  \"andarono\": \"andar\",\n  \"andarsene\": \"andarsen\",\n  \"andarsi\": \"andars\",\n  \"andarvene\": \"andarven\",\n  \"andarvisi\": \"andarvis\",\n  \"andasse\": \"andass\",\n  \"andasser\": \"andasser\",\n  \"andassero\": \"andasser\",\n  \"andassi\": \"andass\",\n  \"andassimo\": \"andassim\",\n  \"andata\": \"andat\",\n  \"andatale\": \"andatal\",\n  \"andate\": \"andat\",\n  \"andati\": \"andat\",\n  \"andato\": \"andat\",\n  \"andatura\": \"andatur\",\n  \"andava\": \"andav\",\n  \"andavamo\": \"andavam\",\n  \"andavan\": \"andavan\",\n  \"andavano\": \"andav\",\n  \"andavi\": \"andav\",\n  \"andavo\": \"andav\",\n  \"andazzo\": \"andazz\",\n  \"anderà\": \"ander\",\n  \"anderanno\": \"anderann\",\n  \"anderebbe\": \"anderebb\",\n  \"anderebbero\": \"anderebber\",\n  \"anderemo\": \"anderem\",\n  \"anderete\": \"ander\",\n  \"anderlecht\": \"anderlecht\",\n  \"anderò\": \"ander\",\n  \"anderson\": \"anderson\",\n  \"andersson\": \"andersson\",\n  \"andiam\": \"andiam\",\n  \"andiamo\": \"andiam\",\n  \"andirivieni\": \"andirivien\",\n  \"andito\": \"andit\",\n  \"ando\": \"ando\",\n  \"andò\": \"andò\",\n  \"andrà\": \"andrà\",\n  \"andranno\": \"andrann\",\n  \"andre\": \"andre\",\n  \"andrè\": \"andrè\",\n  \"andrea\": \"andre\",\n  \"andreas\": \"andreas\",\n  \"andreatta\": \"andreatt\",\n  \"andrebbe\": \"andrebb\",\n  \"andrei\": \"andre\",\n  \"andremo\": \"andrem\",\n  \"andreoli\": \"andreol\",\n  \"andreotti\": \"andreott\",\n  \"andres\": \"andres\",\n  \"andrew\": \"andrew\",\n  \"andrey\": \"andrey\",\n  \"andria\": \"andri\",\n  \"andrija\": \"andrij\",\n  \"andrino\": \"andrin\",\n  \"andrò\": \"andrò\",\n  \"andromeda\": \"andromed\",\n  \"androne\": \"andron\",\n  \"andronico\": \"andron\",\n  \"anelli\": \"anell\",\n  \"anello\": \"anell\",\n  \"anellò\": \"anell\",\n  \"anfia\": \"anfi\",\n  \"anfibi\": \"anfib\",\n  \"anfibia\": \"anfib\",\n  \"anfibio\": \"anfib\",\n  \"angela\": \"angel\",\n  \"angeles\": \"angeles\",\n  \"angeliche\": \"angel\",\n  \"angelini\": \"angelin\",\n  \"angelis\": \"angelis\",\n  \"angelo\": \"angel\",\n  \"angelus\": \"angelus\",\n  \"angesia\": \"anges\",\n  \"angheria\": \"angher\",\n  \"angherie\": \"angher\",\n  \"angioli\": \"angiol\",\n  \"angiolo\": \"angiol\",\n  \"anglicana\": \"anglican\",\n  \"anglo\": \"anglo\",\n  \"angloma\": \"anglom\",\n  \"angola\": \"angol\",\n  \"angolana\": \"angolan\",\n  \"angoli\": \"angol\",\n  \"angolo\": \"angol\",\n  \"angosce\": \"angosc\",\n  \"angoscia\": \"angosc\",\n  \"angosciosa\": \"angosc\",\n  \"angosciosamente\": \"angosc\",\n  \"angosciose\": \"angosc\",\n  \"angoscioso\": \"angosc\",\n  \"angrisani\": \"angrisan\",\n  \"angusta\": \"angust\",\n  \"angustia\": \"angust\",\n  \"angustiarsi\": \"angust\",\n  \"angustiate\": \"angust\",\n  \"angustiati\": \"angust\",\n  \"angustiato\": \"angust\",\n  \"angustie\": \"angust\",\n  \"angustiosa\": \"angust\",\n  \"angusto\": \"angust\",\n  \"anhalt\": \"anhalt\",\n  \"anidride\": \"anidrid\",\n  \"anima\": \"anim\",\n  \"animale\": \"animal\",\n  \"animali\": \"animal\",\n  \"animalium\": \"animalium\",\n  \"animando\": \"anim\",\n  \"animare\": \"anim\",\n  \"animarla\": \"anim\",\n  \"animarsi\": \"anim\",\n  \"animarvi\": \"anim\",\n  \"animata\": \"anim\",\n  \"animate\": \"anim\",\n  \"animati\": \"anim\",\n  \"animato\": \"anim\",\n  \"animava\": \"anim\",\n  \"animazione\": \"anim\",\n  \"anime\": \"anim\",\n  \"animi\": \"anim\",\n  \"animo\": \"anim\",\n  \"animosa\": \"anim\",\n  \"animosità\": \"animos\",\n  \"animoso\": \"anim\",\n  \"ankara\": \"ankar\",\n  \"anna\": \"anna\",\n  \"annacquarne\": \"annacqu\",\n  \"annaffiata\": \"annaff\",\n  \"annali\": \"annal\",\n  \"annaspare\": \"annasp\",\n  \"annata\": \"annat\",\n  \"annate\": \"annat\",\n  \"anne\": \"anne\",\n  \"annebbia\": \"annebb\",\n  \"annebbiare\": \"annebb\",\n  \"annebbiava\": \"annebb\",\n  \"annegazione\": \"anneg\",\n  \"annelore\": \"annelor\",\n  \"annerite\": \"anner\",\n  \"annessa\": \"anness\",\n  \"annessi\": \"anness\",\n  \"annesso\": \"anness\",\n  \"anni\": \"anni\",\n  \"annibale\": \"annibal\",\n  \"annichilata\": \"annichil\",\n  \"annidati\": \"annid\",\n  \"annientarli\": \"annient\",\n  \"anniversari\": \"anniversar\",\n  \"anniversario\": \"anniversar\",\n  \"anniversary\": \"anniversary\",\n  \"annni\": \"annni\",\n  \"anno\": \"anno\",\n  \"annodò\": \"annod\",\n  \"annoiarsi\": \"annoi\",\n  \"annoiarvi\": \"annoi\",\n  \"annoiassero\": \"annoi\",\n  \"annoiati\": \"annoi\",\n  \"annoiato\": \"annoi\",\n  \"annoiava\": \"annoi\",\n  \"annona\": \"annon\",\n  \"annone\": \"annon\",\n  \"annoni\": \"annon\",\n  \"annosa\": \"annos\",\n  \"annotata\": \"annot\",\n  \"annotato\": \"annot\",\n  \"annottar\": \"annott\",\n  \"annovera\": \"annover\",\n  \"annoverare\": \"annover\",\n  \"annua\": \"annu\",\n  \"annuale\": \"annual\",\n  \"annuali\": \"annual\",\n  \"annualmente\": \"annual\",\n  \"annui\": \"annu\",\n  \"annullamento\": \"annull\",\n  \"annullando\": \"annull\",\n  \"annullare\": \"annull\",\n  \"annullata\": \"annull\",\n  \"annullato\": \"annull\",\n  \"annuncia\": \"annunc\",\n  \"annunciando\": \"annunc\",\n  \"annunciano\": \"annunc\",\n  \"annunciare\": \"annunc\",\n  \"annunciarla\": \"annunc\",\n  \"annunciata\": \"annunc\",\n  \"annunciati\": \"annunc\",\n  \"annunciato\": \"annunc\",\n  \"annunciavano\": \"annunc\",\n  \"annuncio\": \"annunc\",\n  \"annunzia\": \"annunz\",\n  \"annunziando\": \"annunz\",\n  \"annunziano\": \"annunz\",\n  \"annunziar\": \"annunz\",\n  \"annunziare\": \"annunz\",\n  \"annunziarle\": \"annunz\",\n  \"annunziarono\": \"annunz\",\n  \"annunziarsi\": \"annunz\",\n  \"annunziata\": \"annunz\",\n  \"annunziate\": \"annunz\",\n  \"annunziato\": \"annunz\",\n  \"annunziatori\": \"annunz\",\n  \"annunziava\": \"annunz\",\n  \"annunzio\": \"annunz\",\n  \"annunziò\": \"annunz\",\n  \"annuo\": \"annu\",\n  \"anomale\": \"anomal\",\n  \"anomalia\": \"anomal\",\n  \"anonimato\": \"anonim\",\n  \"anonimo\": \"anonim\",\n  \"anoressia\": \"anoress\",\n  \"anoressici\": \"anoress\",\n  \"anouk\": \"anouk\",\n  \"anp\": \"anp\",\n  \"anpac\": \"anpac\",\n  \"anpav\": \"anpav\",\n  \"anpcat\": \"anpcat\",\n  \"ansa\": \"ansa\",\n  \"ansaldo\": \"ansald\",\n  \"ansante\": \"ansant\",\n  \"ansanti\": \"ansant\",\n  \"anselmi\": \"anselm\",\n  \"anselmo\": \"anselm\",\n  \"ansett\": \"ansett\",\n  \"ansia\": \"ansi\",\n  \"ansietà\": \"ansiet\",\n  \"ansiosa\": \"ansios\",\n  \"ansiosamente\": \"ansios\",\n  \"ansioso\": \"ansios\",\n  \"antagonisti\": \"antagon\",\n  \"antares\": \"antares\",\n  \"antartide\": \"antartid\",\n  \"ante\": \"ante\",\n  \"antecedente\": \"antecedent\",\n  \"antecedenti\": \"antecedent\",\n  \"antenato\": \"anten\",\n  \"antenne\": \"antenn\",\n  \"anteponeva\": \"antepon\",\n  \"anteporre\": \"anteporr\",\n  \"anteprima\": \"anteprim\",\n  \"antequam\": \"antequam\",\n  \"anterselva\": \"anterselv\",\n  \"anthony\": \"anthony\",\n  \"anti\": \"anti\",\n  \"antiallergico\": \"antiallerg\",\n  \"antiberlusconi\": \"antiberluscon\",\n  \"antibiotici\": \"antibiot\",\n  \"antibiotico\": \"antibiot\",\n  \"antica\": \"antic\",\n  \"anticaglie\": \"anticagl\",\n  \"anticamera\": \"anticamer\",\n  \"anticamere\": \"anticam\",\n  \"antiche\": \"antic\",\n  \"antichi\": \"antic\",\n  \"antichità\": \"antic\",\n  \"anticipa\": \"anticip\",\n  \"anticipare\": \"anticip\",\n  \"anticiparlo\": \"anticip\",\n  \"anticipata\": \"anticip\",\n  \"anticipatamente\": \"anticipat\",\n  \"anticipate\": \"anticip\",\n  \"anticipato\": \"anticip\",\n  \"anticipatore\": \"anticip\",\n  \"anticipazione\": \"anticip\",\n  \"anticipazioni\": \"anticip\",\n  \"anticipi\": \"anticip\",\n  \"anticipo\": \"anticip\",\n  \"antico\": \"antic\",\n  \"anticomunismo\": \"anticomun\",\n  \"anticristi\": \"anticr\",\n  \"antidemocratico\": \"antidemocrat\",\n  \"antidemocrazia\": \"antidemocraz\",\n  \"antifascismo\": \"antifasc\",\n  \"antifurto\": \"antifurt\",\n  \"antille\": \"antill\",\n  \"antimafia\": \"antimaf\",\n  \"antimo\": \"antim\",\n  \"antipatia\": \"antipat\",\n  \"antiperipatetica\": \"antiperipatet\",\n  \"antipodi\": \"antipod\",\n  \"antiproiettile\": \"antiproiettil\",\n  \"antistante\": \"antist\",\n  \"antitbc\": \"antitbc\",\n  \"antitetica\": \"antitet\",\n  \"antitetico\": \"antitet\",\n  \"antitrust\": \"antitrust\",\n  \"antivedendo\": \"antived\",\n  \"antognoni\": \"antognon\",\n  \"antologie\": \"antolog\",\n  \"antona\": \"anton\",\n  \"antonella\": \"antonell\",\n  \"antonelli\": \"antonell\",\n  \"antoni\": \"anton\",\n  \"antonina\": \"antonin\",\n  \"antonio\": \"anton\",\n  \"antonioli\": \"antoniol\",\n  \"antonomasia\": \"antonomas\",\n  \"antonov\": \"antonov\",\n  \"antonucci\": \"antonucc\",\n  \"antraci\": \"antrac\",\n  \"antti\": \"antti\",\n  \"anulare\": \"anul\",\n  \"anversa\": \"anvers\",\n  \"anya\": \"anya\",\n  \"anzi\": \"anzi\",\n  \"anziana\": \"anzian\",\n  \"anziane\": \"anzian\",\n  \"anziani\": \"anzian\",\n  \"anzianità\": \"anzian\",\n  \"anziano\": \"anzi\",\n  \"anzichè\": \"anzic\",\n  \"anzio\": \"anzi\",\n  \"anzitutto\": \"anzitutt\",\n  \"aosta\": \"aost\",\n  \"aouita\": \"aou\",\n  \"ap\": \"ap\",\n  \"aparecido\": \"aparecid\",\n  \"apartheid\": \"apartheid\",\n  \"aperta\": \"apert\",\n  \"apertamente\": \"apert\",\n  \"aperte\": \"apert\",\n  \"apertè\": \"apert\",\n  \"aperti\": \"apert\",\n  \"aperto\": \"apert\",\n  \"apertura\": \"apertur\",\n  \"aperture\": \"apertur\",\n  \"apolloni\": \"apollon\",\n  \"apologeta\": \"apologet\",\n  \"apologia\": \"apolog\",\n  \"apologie\": \"apolog\",\n  \"apostrofe\": \"apostrof\",\n  \"appagarlo\": \"appag\",\n  \"appagato\": \"appag\",\n  \"appagava\": \"appag\",\n  \"appagherò\": \"appag\",\n  \"appaiono\": \"appai\",\n  \"appaltato\": \"appalt\",\n  \"appaltatore\": \"appalt\",\n  \"appaltatrici\": \"appalt\",\n  \"appalto\": \"appalt\",\n  \"appaluditissimi\": \"appaluditissim\",\n  \"appannamento\": \"appann\",\n  \"appannarsi\": \"appann\",\n  \"appannò\": \"appann\",\n  \"apparato\": \"appar\",\n  \"appare\": \"appar\",\n  \"apparecchi\": \"apparecc\",\n  \"apparecchiar\": \"apparecc\",\n  \"apparecchiare\": \"apparecc\",\n  \"apparecchiata\": \"apparecc\",\n  \"apparecchiate\": \"apparecc\",\n  \"apparecchiati\": \"apparecc\",\n  \"apparecchiato\": \"apparecc\",\n  \"apparecchio\": \"apparecc\",\n  \"apparecchiò\": \"apparecc\",\n  \"apparendogli\": \"appar\",\n  \"apparente\": \"apparent\",\n  \"apparentemente\": \"apparent\",\n  \"apparenti\": \"apparent\",\n  \"apparenza\": \"apparent\",\n  \"apparenze\": \"apparent\",\n  \"apparir\": \"appar\",\n  \"apparire\": \"appar\",\n  \"apparisca\": \"appar\",\n  \"apparisse\": \"appariss\",\n  \"apparitore\": \"apparitor\",\n  \"apparitori\": \"apparitor\",\n  \"appariva\": \"appar\",\n  \"apparivano\": \"appar\",\n  \"apparizione\": \"apparizion\",\n  \"apparizioni\": \"apparizion\",\n  \"apparsa\": \"appars\",\n  \"apparse\": \"appars\",\n  \"apparsi\": \"appars\",\n  \"apparso\": \"appars\",\n  \"appartamenti\": \"appart\",\n  \"appartamento\": \"appart\",\n  \"appartato\": \"appart\",\n  \"appartenente\": \"appartenent\",\n  \"appartenenti\": \"appartenent\",\n  \"appartenenza\": \"appartenent\",\n  \"appartenenze\": \"appartenent\",\n  \"appartenere\": \"apparten\",\n  \"apparteneva\": \"apparten\",\n  \"appartenevano\": \"apparten\",\n  \"appartengano\": \"apparteng\",\n  \"appartengono\": \"apparteng\",\n  \"appartiene\": \"appartien\",\n  \"apparve\": \"apparv\",\n  \"apparvero\": \"apparver\",\n  \"appassionante\": \"appassion\",\n  \"appassionata\": \"appassion\",\n  \"appassionate\": \"appassion\",\n  \"appassionati\": \"appassion\",\n  \"appassionato\": \"appassion\",\n  \"appassite\": \"appass\",\n  \"appedonatò\": \"appedonat\",\n  \"appellativi\": \"appell\",\n  \"appellativo\": \"appell\",\n  \"appelli\": \"appell\",\n  \"appello\": \"appell\",\n  \"appena\": \"appen\",\n  \"appenderlo\": \"append\",\n  \"appesantita\": \"appesant\",\n  \"appesi\": \"appes\",\n  \"appeso\": \"appes\",\n  \"appestati\": \"appest\",\n  \"appetito\": \"appet\",\n  \"appezzamenti\": \"appezz\",\n  \"appiattarsi\": \"appiatt\",\n  \"appiattirsi\": \"appiatt\",\n  \"appiattisce\": \"appiatt\",\n  \"appiccicati\": \"appiccic\",\n  \"appiè\": \"appi\",\n  \"appl\": \"appl\",\n  \"applaude\": \"applaud\",\n  \"applaudendo\": \"applaud\",\n  \"applaudire\": \"applaud\",\n  \"applauditi\": \"applaud\",\n  \"applauditissimo\": \"applauditissim\",\n  \"applaudito\": \"applaud\",\n  \"applaudivano\": \"applaud\",\n  \"applausi\": \"applaus\",\n  \"applauso\": \"applaus\",\n  \"apple\": \"apple\",\n  \"applicabile\": \"applic\",\n  \"applicabilità\": \"applic\",\n  \"applicandosi\": \"applic\",\n  \"applicare\": \"applic\",\n  \"applicargli\": \"applic\",\n  \"applicarvelo\": \"applic\",\n  \"applicata\": \"applic\",\n  \"applicate\": \"applic\",\n  \"applicati\": \"applic\",\n  \"applicativi\": \"applic\",\n  \"applicativo\": \"applic\",\n  \"applicava\": \"applic\",\n  \"applicazione\": \"applic\",\n  \"applicazioni\": \"applic\",\n  \"applichi\": \"applic\",\n  \"appluso\": \"applus\",\n  \"appoggi\": \"appogg\",\n  \"appoggia\": \"appogg\",\n  \"appoggiando\": \"appogg\",\n  \"appoggiano\": \"appogg\",\n  \"appoggiar\": \"appogg\",\n  \"appoggiare\": \"appogg\",\n  \"appoggiarla\": \"appogg\",\n  \"appoggiarlo\": \"appogg\",\n  \"appoggiata\": \"appogg\",\n  \"appoggiate\": \"appogg\",\n  \"appoggiati\": \"appogg\",\n  \"appoggiato\": \"appogg\",\n  \"appoggino\": \"appoggin\",\n  \"appoggio\": \"appogg\",\n  \"appoggiò\": \"appogg\",\n  \"apporti\": \"apport\",\n  \"apporto\": \"apport\",\n  \"appositamente\": \"apposit\",\n  \"apposite\": \"appos\",\n  \"appositi\": \"appos\",\n  \"apposito\": \"appos\",\n  \"apposta\": \"appost\",\n  \"appostarlo\": \"appost\",\n  \"appostatamente\": \"appostat\",\n  \"appostati\": \"appost\",\n  \"appostato\": \"appost\",\n  \"apposti\": \"appost\",\n  \"appprovato\": \"appprov\",\n  \"apprende\": \"apprend\",\n  \"apprendere\": \"apprend\",\n  \"apprendesse\": \"apprendess\",\n  \"apprendisti\": \"apprend\",\n  \"apprensione\": \"apprension\",\n  \"apprensioni\": \"apprension\",\n  \"appresa\": \"appres\",\n  \"appreso\": \"appres\",\n  \"appresta\": \"apprest\",\n  \"apprestati\": \"apprest\",\n  \"apprezzamento\": \"apprezz\",\n  \"apprezzato\": \"apprezz\",\n  \"approccio\": \"approcc\",\n  \"approda\": \"approd\",\n  \"approdati\": \"approd\",\n  \"approderà\": \"approd\",\n  \"approderemo\": \"approd\",\n  \"approdi\": \"approd\",\n  \"approdò\": \"approd\",\n  \"approfittando\": \"approfitt\",\n  \"approfittandosi\": \"approfitt\",\n  \"approfittare\": \"approfitt\",\n  \"approfittarne\": \"approfitt\",\n  \"approfittato\": \"approfitt\",\n  \"approfittava\": \"approfitt\",\n  \"approfittavano\": \"approfitt\",\n  \"approfondimento\": \"approfond\",\n  \"approfondire\": \"approfond\",\n  \"approfondisce\": \"approfond\",\n  \"approfondita\": \"approfond\",\n  \"approfondito\": \"approfond\",\n  \"approntate\": \"appront\",\n  \"appropriandosi\": \"appropr\",\n  \"appropriato\": \"appropr\",\n  \"approssimativamente\": \"approssim\",\n  \"approssimativi\": \"approssim\",\n  \"approssimazioni\": \"approssim\",\n  \"approva\": \"approv\",\n  \"approvando\": \"approv\",\n  \"approvar\": \"approv\",\n  \"approvare\": \"approv\",\n  \"approvarle\": \"approv\",\n  \"approvata\": \"approv\",\n  \"approvato\": \"approv\",\n  \"approvava\": \"approv\",\n  \"approvazione\": \"approv\",\n  \"approvazioni\": \"approv\",\n  \"approvò\": \"approv\",\n  \"approvviggionamento\": \"approvviggion\",\n  \"approvvigionamenti\": \"approvvigion\",\n  \"appunta\": \"appunt\",\n  \"appuntamenti\": \"appunt\",\n  \"appuntamento\": \"appunt\",\n  \"appuntata\": \"appunt\",\n  \"appuntate\": \"appunt\",\n  \"appuntato\": \"appunt\",\n  \"appuntellano\": \"appuntell\",\n  \"appuntellarsi\": \"appuntell\",\n  \"appuntellata\": \"appuntell\",\n  \"appuntellati\": \"appuntell\",\n  \"appuntellato\": \"appuntell\",\n  \"appuntellavano\": \"appuntell\",\n  \"appuntellò\": \"appuntell\",\n  \"appunti\": \"appunt\",\n  \"appuntino\": \"appuntin\",\n  \"appunto\": \"appunt\",\n  \"apra\": \"apra\",\n  \"aprano\": \"apran\",\n  \"apre\": \"apre\",\n  \"aprendo\": \"aprend\",\n  \"aprendosi\": \"aprend\",\n  \"apri\": \"apri\",\n  \"aprì\": \"aprì\",\n  \"apribottiglie\": \"apribottigl\",\n  \"aprile\": \"april\",\n  \"aprir\": \"aprir\",\n  \"aprirà\": \"aprir\",\n  \"aprire\": \"aprir\",\n  \"aprirsene\": \"aprirsen\",\n  \"aprirsi\": \"aprirs\",\n  \"aprirvi\": \"aprirv\",\n  \"aprisse\": \"apriss\",\n  \"aprissero\": \"aprisser\",\n  \"aprite\": \"aprit\",\n  \"apriva\": \"apriv\",\n  \"aprivano\": \"apriv\",\n  \"aprono\": \"apron\",\n  \"aprte\": \"aprte\",\n  \"apuano\": \"apu\",\n  \"apud\": \"apud\",\n  \"aq\": \"aq\",\n  \"aqui\": \"aqui\",\n  \"aquila\": \"aquil\",\n  \"ar\": \"ar\",\n  \"arà\": \"arà\",\n  \"arab\": \"arab\",\n  \"arabe\": \"arab\",\n  \"arabi\": \"arab\",\n  \"arabia\": \"arab\",\n  \"arabica\": \"arab\",\n  \"arabo\": \"arab\",\n  \"arafat\": \"arafat\",\n  \"aragon\": \"aragon\",\n  \"aragosta\": \"aragost\",\n  \"aran\": \"aran\",\n  \"arancia\": \"aranc\",\n  \"arangino\": \"arangin\",\n  \"arbiter\": \"arbiter\",\n  \"arbitrali\": \"arbitral\",\n  \"arbitramur\": \"arbitramur\",\n  \"arbitraria\": \"arbitrar\",\n  \"arbitrario\": \"arbitrar\",\n  \"arbitri\": \"arbitr\",\n  \"arbitrio\": \"arbitr\",\n  \"arbitro\": \"arbitr\",\n  \"arca\": \"arca\",\n  \"arcaica\": \"arcaic\",\n  \"arcais\": \"arcais\",\n  \"arce\": \"arce\",\n  \"archeologia\": \"archeolog\",\n  \"archeologica\": \"archeolog\",\n  \"archeologici\": \"archeolog\",\n  \"archeologico\": \"archeolog\",\n  \"archetto\": \"archett\",\n  \"archi\": \"archi\",\n  \"archibusi\": \"archibus\",\n  \"archimede\": \"archimed\",\n  \"architettato\": \"architett\",\n  \"architettura\": \"architettur\",\n  \"archivi\": \"archiv\",\n  \"archivio\": \"archiv\",\n  \"arci\": \"arci\",\n  \"arcidiacono\": \"arcidiac\",\n  \"arcigni\": \"arcign\",\n  \"arcione\": \"arcion\",\n  \"arciospedale\": \"arciospedal\",\n  \"arcipelago\": \"arcipelag\",\n  \"arciprete\": \"arcipr\",\n  \"arcivescovado\": \"arcivescovad\",\n  \"arcivescovile\": \"arcivescovil\",\n  \"arcivescovo\": \"arcivescov\",\n  \"arco\": \"arco\",\n  \"arcobaleno\": \"arcobalen\",\n  \"arcore\": \"arcor\",\n  \"ard\": \"ard\",\n  \"ardant\": \"ardant\",\n  \"ardente\": \"ardent\",\n  \"ardentemente\": \"ardent\",\n  \"ardenti\": \"ardent\",\n  \"ardeva\": \"ardev\",\n  \"ardirà\": \"ardir\",\n  \"ardire\": \"ardir\",\n  \"ardiresti\": \"ardirest\",\n  \"ardisca\": \"ardisc\",\n  \"ardisce\": \"ardisc\",\n  \"ardiscono\": \"ardisc\",\n  \"ardisse\": \"ardiss\",\n  \"ardita\": \"ardit\",\n  \"arditi\": \"ardit\",\n  \"ardito\": \"ardit\",\n  \"ardiva\": \"ardiv\",\n  \"ardor\": \"ardor\",\n  \"ardore\": \"ardor\",\n  \"ardori\": \"ardor\",\n  \"ardua\": \"ardu\",\n  \"arduo\": \"ardu\",\n  \"area\": \"are\",\n  \"aree\": \"are\",\n  \"arena\": \"aren\",\n  \"arendo\": \"arend\",\n  \"aretina\": \"aretin\",\n  \"arezzo\": \"arezz\",\n  \"argani\": \"argan\",\n  \"argante\": \"argant\",\n  \"argentei\": \"argente\",\n  \"argenteria\": \"argenter\",\n  \"argentina\": \"argentin\",\n  \"argentine\": \"argentin\",\n  \"argentini\": \"argentin\",\n  \"argentino\": \"argentin\",\n  \"argento\": \"argent\",\n  \"argilla\": \"argill\",\n  \"arginare\": \"argin\",\n  \"argine\": \"argin\",\n  \"argo\": \"argo\",\n  \"argomentando\": \"argoment\",\n  \"argomentare\": \"argoment\",\n  \"argomentarlo\": \"argoment\",\n  \"argomentato\": \"argoment\",\n  \"argomenti\": \"argoment\",\n  \"argomento\": \"argoment\",\n  \"argomentò\": \"argoment\",\n  \"argun\": \"argun\",\n  \"arguto\": \"argut\",\n  \"aria\": \"ari\",\n  \"ariani\": \"arian\",\n  \"ariano\": \"ari\",\n  \"arias\": \"arias\",\n  \"arida\": \"arid\",\n  \"aridi\": \"arid\",\n  \"arido\": \"arid\",\n  \"arietando\": \"ariet\",\n  \"ariete\": \"ari\",\n  \"ariglieria\": \"ariglier\",\n  \"aringa\": \"aring\",\n  \"ariston\": \"ariston\",\n  \"aristotile\": \"aristotil\",\n  \"aritmetica\": \"aritmet\",\n  \"arivare\": \"ariv\",\n  \"arix\": \"arix\",\n  \"arlacchi\": \"arlacc\",\n  \"arlati\": \"arlat\",\n  \"arlecchino\": \"arlecchin\",\n  \"arma\": \"arma\",\n  \"armacollo\": \"armacoll\",\n  \"armadi\": \"armad\",\n  \"armadio\": \"armad\",\n  \"armamentario\": \"armamentar\",\n  \"armamenti\": \"armament\",\n  \"armamento\": \"armament\",\n  \"armando\": \"armand\",\n  \"armani\": \"arman\",\n  \"armano\": \"arman\",\n  \"armare\": \"armar\",\n  \"armata\": \"armat\",\n  \"armate\": \"armat\",\n  \"armati\": \"armat\",\n  \"armato\": \"armat\",\n  \"armatore\": \"armator\",\n  \"armatoriale\": \"armatorial\",\n  \"armatura\": \"armatur\",\n  \"arme\": \"arme\",\n  \"armena\": \"armen\",\n  \"armeria\": \"armer\",\n  \"armi\": \"armi\",\n  \"armin\": \"armin\",\n  \"armistizio\": \"armistiz\",\n  \"armonia\": \"armon\",\n  \"armonizzare\": \"armonizz\",\n  \"armonizzazione\": \"armonizz\",\n  \"armstrong\": \"armstrong\",\n  \"arnaro\": \"arnar\",\n  \"arnese\": \"arnes\",\n  \"arnesi\": \"arnes\",\n  \"aroldo\": \"arold\",\n  \"arrabattarsi\": \"arrabatt\",\n  \"arrabbiata\": \"arrabb\",\n  \"arrabbiatamente\": \"arrabbiat\",\n  \"arrabbiato\": \"arrabb\",\n  \"arrampicandosi\": \"arrampic\",\n  \"arrampicarci\": \"arrampic\",\n  \"arrampicarsi\": \"arrampic\",\n  \"arrampicati\": \"arrampic\",\n  \"arrampicavano\": \"arrampic\",\n  \"arrantolata\": \"arrantol\",\n  \"arrantolato\": \"arrantol\",\n  \"arrapinavo\": \"arrapin\",\n  \"arrenato\": \"arren\",\n  \"arrende\": \"arrend\",\n  \"arrendere\": \"arrend\",\n  \"arrendersi\": \"arrend\",\n  \"arrendessero\": \"arrend\",\n  \"arrendo\": \"arrend\",\n  \"arrestar\": \"arrest\",\n  \"arrestare\": \"arrest\",\n  \"arrestata\": \"arrest\",\n  \"arrestate\": \"arrest\",\n  \"arrestati\": \"arrest\",\n  \"arrestato\": \"arrest\",\n  \"arrestatori\": \"arrest\",\n  \"arresti\": \"arrest\",\n  \"arrestino\": \"arrestin\",\n  \"arresto\": \"arrest\",\n  \"arretra\": \"arretr\",\n  \"arretramento\": \"arretr\",\n  \"arretrato\": \"arretr\",\n  \"arretrava\": \"arretr\",\n  \"arricchimento\": \"arricc\",\n  \"arricchir\": \"arricc\",\n  \"arricchisce\": \"arricc\",\n  \"arricchito\": \"arricc\",\n  \"arricciar\": \"arricc\",\n  \"arricciare\": \"arricc\",\n  \"arricciati\": \"arricc\",\n  \"arricciato\": \"arricc\",\n  \"arride\": \"arrid\",\n  \"arrigo\": \"arrig\",\n  \"arringa\": \"arring\",\n  \"arringo\": \"arring\",\n  \"arrischia\": \"arrisc\",\n  \"arrischiar\": \"arrisc\",\n  \"arrischiare\": \"arrisc\",\n  \"arrischiarsi\": \"arrisc\",\n  \"arrischiata\": \"arrisc\",\n  \"arrischiati\": \"arrisc\",\n  \"arrischiato\": \"arrisc\",\n  \"arrischiava\": \"arrisc\",\n  \"arriva\": \"arriv\",\n  \"arrivai\": \"arriva\",\n  \"arrivando\": \"arriv\",\n  \"arrivandogli\": \"arriv\",\n  \"arrivano\": \"arriv\",\n  \"arrivar\": \"arriv\",\n  \"arrivarci\": \"arriv\",\n  \"arrivare\": \"arriv\",\n  \"arrivaron\": \"arrivaron\",\n  \"arrivarono\": \"arriv\",\n  \"arrivarsi\": \"arriv\",\n  \"arrivasse\": \"arriv\",\n  \"arrivassero\": \"arriv\",\n  \"arrivata\": \"arriv\",\n  \"arrivate\": \"arriv\",\n  \"arrivati\": \"arriv\",\n  \"arrivato\": \"arriv\",\n  \"arrivatoci\": \"arrivatoc\",\n  \"arrivava\": \"arriv\",\n  \"arrivavan\": \"arrivavan\",\n  \"arrivavano\": \"arriv\",\n  \"arrivederci\": \"arrived\",\n  \"arriverà\": \"arriv\",\n  \"arriveranno\": \"arriv\",\n  \"arriverebbe\": \"arriv\",\n  \"arriverete\": \"arriv\",\n  \"arriverò\": \"arriv\",\n  \"arrivi\": \"arriv\",\n  \"arriviamo\": \"arriv\",\n  \"arrivino\": \"arrivin\",\n  \"arrivo\": \"arriv\",\n  \"arrivò\": \"arriv\",\n  \"arrocca\": \"arrocc\",\n  \"arroccata\": \"arrocc\",\n  \"arrogante\": \"arrog\",\n  \"arroganza\": \"arrog\",\n  \"arrolati\": \"arrol\",\n  \"arrolato\": \"arrol\",\n  \"arrossamento\": \"arross\",\n  \"arrossendo\": \"arross\",\n  \"arrossì\": \"arross\",\n  \"arrossire\": \"arross\",\n  \"arrossirne\": \"arross\",\n  \"arrostire\": \"arrost\",\n  \"arrosto\": \"arrost\",\n  \"arrotar\": \"arrot\",\n  \"arrovellava\": \"arrovell\",\n  \"arrovesciarsi\": \"arrovesc\",\n  \"arrovesciata\": \"arrovesc\",\n  \"arrovesciate\": \"arrovesc\",\n  \"arrovesciato\": \"arrovesc\",\n  \"arruffando\": \"arruff\",\n  \"arruffata\": \"arruff\",\n  \"arruffate\": \"arruff\",\n  \"arruffati\": \"arruff\",\n  \"arruffato\": \"arruff\",\n  \"arruolamento\": \"arruol\",\n  \"arsione\": \"arsion\",\n  \"art\": \"art\",\n  \"artagnan\": \"artagnan\",\n  \"arte\": \"arte\",\n  \"artefice\": \"artef\",\n  \"artefici\": \"artef\",\n  \"artemis\": \"artemis\",\n  \"arteriosclerosi\": \"arterioscler\",\n  \"arti\": \"arti\",\n  \"artica\": \"artic\",\n  \"articola\": \"articol\",\n  \"articolano\": \"articol\",\n  \"articolar\": \"articol\",\n  \"articolata\": \"articol\",\n  \"articolati\": \"articol\",\n  \"articolato\": \"articol\",\n  \"articolazione\": \"articol\",\n  \"articolerà\": \"articol\",\n  \"articoli\": \"articol\",\n  \"articolo\": \"articol\",\n  \"articolò\": \"articol\",\n  \"artificiale\": \"artificial\",\n  \"artifizi\": \"artifiz\",\n  \"artifiziale\": \"artifizial\",\n  \"artifizio\": \"artifiz\",\n  \"artigianato\": \"artigian\",\n  \"artigiane\": \"artigian\",\n  \"artigianello\": \"artigianell\",\n  \"artigiani\": \"artigian\",\n  \"artigiano\": \"artig\",\n  \"artigli\": \"artigl\",\n  \"artiglieria\": \"artiglier\",\n  \"artista\": \"artist\",\n  \"artisti\": \"artist\",\n  \"artistici\": \"artist\",\n  \"artistico\": \"artist\",\n  \"artium\": \"artium\",\n  \"artoni\": \"arton\",\n  \"arturo\": \"artur\",\n  \"arvor\": \"arvor\",\n  \"as\": \"as\",\n  \"ascella\": \"ascell\",\n  \"ascendere\": \"ascend\",\n  \"ascesa\": \"asces\",\n  \"asciugandosi\": \"asciug\",\n  \"asciugare\": \"asciug\",\n  \"asciugata\": \"asciug\",\n  \"asciugate\": \"asciug\",\n  \"asciugava\": \"asciug\",\n  \"asciughi\": \"asciug\",\n  \"asciugò\": \"asciug\",\n  \"asciutta\": \"asciutt\",\n  \"asciutto\": \"asciutt\",\n  \"ascoli\": \"ascol\",\n  \"ascolta\": \"ascolt\",\n  \"ascoltan\": \"ascoltan\",\n  \"ascoltano\": \"ascolt\",\n  \"ascoltanti\": \"ascolt\",\n  \"ascoltar\": \"ascolt\",\n  \"ascoltare\": \"ascolt\",\n  \"ascoltarli\": \"ascolt\",\n  \"ascoltarmi\": \"ascolt\",\n  \"ascoltata\": \"ascolt\",\n  \"ascoltate\": \"ascolt\",\n  \"ascoltatemi\": \"ascoltatem\",\n  \"ascoltati\": \"ascolt\",\n  \"ascoltato\": \"ascolt\",\n  \"ascoltatore\": \"ascolt\",\n  \"ascoltatori\": \"ascolt\",\n  \"ascoltatrice\": \"ascolt\",\n  \"ascoltava\": \"ascolt\",\n  \"ascolti\": \"ascolt\",\n  \"ascoltiamo\": \"ascolt\",\n  \"ascolto\": \"ascolt\",\n  \"ascoltò\": \"ascolt\",\n  \"ascritta\": \"ascritt\",\n  \"asher\": \"asher\",\n  \"asi\": \"asi\",\n  \"asia\": \"asi\",\n  \"asiago\": \"asiag\",\n  \"asiatici\": \"asiat\",\n  \"asili\": \"asil\",\n  \"asilo\": \"asil\",\n  \"asinelli\": \"asinell\",\n  \"asino\": \"asin\",\n  \"aslan\": \"aslan\",\n  \"aspetta\": \"aspett\",\n  \"aspettami\": \"aspettam\",\n  \"aspettan\": \"aspettan\",\n  \"aspettando\": \"aspett\",\n  \"aspettandola\": \"aspett\",\n  \"aspettano\": \"aspett\",\n  \"aspettar\": \"aspett\",\n  \"aspettare\": \"aspett\",\n  \"aspettarla\": \"aspett\",\n  \"aspettarli\": \"aspett\",\n  \"aspettarlo\": \"aspett\",\n  \"aspettarmi\": \"aspett\",\n  \"aspettarsi\": \"aspett\",\n  \"aspettarvi\": \"aspett\",\n  \"aspettasse\": \"aspett\",\n  \"aspettata\": \"aspett\",\n  \"aspettate\": \"aspett\",\n  \"aspettatemi\": \"aspettatem\",\n  \"aspettati\": \"aspett\",\n  \"aspettativa\": \"aspett\",\n  \"aspettative\": \"aspett\",\n  \"aspettato\": \"aspett\",\n  \"aspettava\": \"aspett\",\n  \"aspettavamo\": \"aspett\",\n  \"aspettavan\": \"aspettavan\",\n  \"aspettavano\": \"aspett\",\n  \"aspettavo\": \"aspett\",\n  \"aspettazione\": \"aspett\",\n  \"aspetterà\": \"aspett\",\n  \"aspetteranno\": \"aspett\",\n  \"aspetterebbe\": \"aspett\",\n  \"aspetterò\": \"aspett\",\n  \"aspetti\": \"aspett\",\n  \"aspettiamo\": \"aspett\",\n  \"aspetto\": \"aspett\",\n  \"aspira\": \"aspir\",\n  \"aspirano\": \"aspir\",\n  \"aspiranti\": \"aspir\",\n  \"aspirare\": \"aspir\",\n  \"aspirato\": \"aspir\",\n  \"aspirazioni\": \"aspir\",\n  \"aspo\": \"aspo\",\n  \"aspra\": \"aspra\",\n  \"aspramente\": \"aspr\",\n  \"aspre\": \"aspre\",\n  \"asprilla\": \"asprill\",\n  \"aspro\": \"aspro\",\n  \"ass\": \"ass\",\n  \"assaggi\": \"assagg\",\n  \"assaggiarlo\": \"assagg\",\n  \"assaggiarne\": \"assagg\",\n  \"assaggiate\": \"assagg\",\n  \"assai\": \"assa\",\n  \"assalirono\": \"assal\",\n  \"assalita\": \"assal\",\n  \"assaliti\": \"assal\",\n  \"assalito\": \"assal\",\n  \"assalitori\": \"assalitor\",\n  \"assalti\": \"assalt\",\n  \"assalto\": \"assalt\",\n  \"assaporando\": \"assapor\",\n  \"assaporare\": \"assapor\",\n  \"assaporato\": \"assapor\",\n  \"assassinà\": \"assassin\",\n  \"assassinare\": \"assassin\",\n  \"assassinata\": \"assassin\",\n  \"assassinato\": \"assassin\",\n  \"assassini\": \"assassin\",\n  \"assassinio\": \"assassin\",\n  \"assassino\": \"assassin\",\n  \"asse\": \"asse\",\n  \"assecondare\": \"assecond\",\n  \"assedia\": \"assed\",\n  \"assediata\": \"assed\",\n  \"assediati\": \"assed\",\n  \"assediato\": \"assed\",\n  \"assediava\": \"assed\",\n  \"assediavano\": \"assed\",\n  \"assedio\": \"assed\",\n  \"assegna\": \"assegn\",\n  \"assegnamento\": \"assegn\",\n  \"assegnandone\": \"assegn\",\n  \"assegnar\": \"assegn\",\n  \"assegnare\": \"assegn\",\n  \"assegnarne\": \"assegn\",\n  \"assegnata\": \"assegn\",\n  \"assegnataci\": \"assegnatac\",\n  \"assegnatagli\": \"assegnatagl\",\n  \"assegnate\": \"assegn\",\n  \"assegnati\": \"assegn\",\n  \"assegnatigli\": \"assegnatigl\",\n  \"assegnato\": \"assegn\",\n  \"assegnazioni\": \"assegn\",\n  \"assegni\": \"assegn\",\n  \"assegno\": \"assegn\",\n  \"assegnò\": \"assegn\",\n  \"assembela\": \"assembel\",\n  \"assemble\": \"assembl\",\n  \"assemblea\": \"assemble\",\n  \"assemblee\": \"assemble\",\n  \"assennatezza\": \"assennatezz\",\n  \"assennato\": \"assenn\",\n  \"assenso\": \"assens\",\n  \"assente\": \"assent\",\n  \"assenteismo\": \"assent\",\n  \"assenteista\": \"assent\",\n  \"assenteisti\": \"assent\",\n  \"assenti\": \"assent\",\n  \"assentimur\": \"assentimur\",\n  \"assenza\": \"assenz\",\n  \"assenze\": \"assenz\",\n  \"assenzio\": \"assenz\",\n  \"asserire\": \"asser\",\n  \"asserite\": \"asser\",\n  \"assertore\": \"assertor\",\n  \"assessore\": \"assessor\",\n  \"assessori\": \"assessor\",\n  \"assestamento\": \"assest\",\n  \"assestarci\": \"assest\",\n  \"assestarsi\": \"assest\",\n  \"assestato\": \"assest\",\n  \"assetato\": \"asset\",\n  \"assettandosi\": \"assett\",\n  \"assetti\": \"assett\",\n  \"assetto\": \"assett\",\n  \"assicura\": \"assicur\",\n  \"assicurandosi\": \"assicur\",\n  \"assicurano\": \"assicur\",\n  \"assicurar\": \"assicur\",\n  \"assicurarci\": \"assicur\",\n  \"assicurare\": \"assicur\",\n  \"assicurarle\": \"assicur\",\n  \"assicurarne\": \"assicur\",\n  \"assicurarsene\": \"assicur\",\n  \"assicurasse\": \"assicur\",\n  \"assicurata\": \"assicur\",\n  \"assicurati\": \"assicur\",\n  \"assicurativa\": \"assicur\",\n  \"assicurative\": \"assicur\",\n  \"assicurativi\": \"assicur\",\n  \"assicurato\": \"assicur\",\n  \"assicurava\": \"assicur\",\n  \"assicuravano\": \"assicur\",\n  \"assicuraz\": \"assicuraz\",\n  \"assicurazione\": \"assicur\",\n  \"assicurazioni\": \"assicur\",\n  \"assicuri\": \"assicur\",\n  \"assicurò\": \"assicur\",\n  \"assidua\": \"assidu\",\n  \"assiduamente\": \"assidu\",\n  \"assieme\": \"assiem\",\n  \"assillava\": \"assill\",\n  \"assiri\": \"assir\",\n  \"assise\": \"assis\",\n  \"assisi\": \"assis\",\n  \"assist\": \"assist\",\n  \"assista\": \"assist\",\n  \"assiste\": \"assist\",\n  \"assistendo\": \"assist\",\n  \"assistente\": \"assistent\",\n  \"assistenti\": \"assistent\",\n  \"assistenza\": \"assistent\",\n  \"assistenziale\": \"assistenzial\",\n  \"assistenzialismo\": \"assistenzial\",\n  \"assisterà\": \"assist\",\n  \"assistere\": \"assist\",\n  \"assistesse\": \"assistess\",\n  \"assistette\": \"assistett\",\n  \"assistevano\": \"assist\",\n  \"assistita\": \"assist\",\n  \"assistiti\": \"assist\",\n  \"assistito\": \"assist\",\n  \"assitalia\": \"assital\",\n  \"assito\": \"assit\",\n  \"asso\": \"asso\",\n  \"assocalor\": \"assocalor\",\n  \"associare\": \"assoc\",\n  \"associata\": \"assoc\",\n  \"associate\": \"assoc\",\n  \"associated\": \"associated\",\n  \"associato\": \"assoc\",\n  \"associazione\": \"assoc\",\n  \"associazioni\": \"assoc\",\n  \"associazionismo\": \"associazion\",\n  \"assoenergia\": \"assoenerg\",\n  \"assoggettato\": \"assoggett\",\n  \"assoggettavano\": \"assoggett\",\n  \"assolda\": \"assold\",\n  \"assoldati\": \"assold\",\n  \"assoldato\": \"assold\",\n  \"assolti\": \"assolt\",\n  \"assolto\": \"assolt\",\n  \"assoluta\": \"assol\",\n  \"assolutamente\": \"assolut\",\n  \"assolute\": \"assol\",\n  \"assoluti\": \"assol\",\n  \"assolutizzante\": \"assolutizz\",\n  \"assoluto\": \"assol\",\n  \"assolutoria\": \"assolutor\",\n  \"assoluzione\": \"assolu\",\n  \"assolvere\": \"assolv\",\n  \"assomiglia\": \"assomigl\",\n  \"assomigliano\": \"assomigl\",\n  \"assomigliarsi\": \"assomigl\",\n  \"assonautiche\": \"assonaut\",\n  \"assopegno\": \"assopegn\",\n  \"assopirono\": \"assop\",\n  \"assopita\": \"assop\",\n  \"assorbimento\": \"assorb\",\n  \"assorbire\": \"assorb\",\n  \"assorbito\": \"assorb\",\n  \"assordante\": \"assord\",\n  \"assortiti\": \"assort\",\n  \"assorto\": \"assort\",\n  \"assottigliar\": \"assottigl\",\n  \"assottigliato\": \"assottigl\",\n  \"assuma\": \"assum\",\n  \"assumano\": \"assum\",\n  \"assume\": \"assum\",\n  \"assumerà\": \"assum\",\n  \"assumere\": \"assum\",\n  \"assumesse\": \"assumess\",\n  \"assumeva\": \"assum\",\n  \"assumono\": \"assum\",\n  \"assunse\": \"assuns\",\n  \"assunsero\": \"assunser\",\n  \"assunta\": \"assunt\",\n  \"assunte\": \"assunt\",\n  \"assunti\": \"assunt\",\n  \"assunto\": \"assunt\",\n  \"assunzione\": \"assunzion\",\n  \"assunzioni\": \"assunzion\",\n  \"assurdo\": \"assurd\",\n  \"asta\": \"asta\",\n  \"astanti\": \"astant\",\n  \"aste\": \"aste\",\n  \"astenere\": \"asten\",\n  \"astenesse\": \"asteness\",\n  \"astenevano\": \"asten\",\n  \"astensione\": \"astension\",\n  \"astenuta\": \"asten\",\n  \"astenuti\": \"asten\",\n  \"aster\": \"aster\",\n  \"asterischi\": \"asterisc\",\n  \"asterrà\": \"asterr\",\n  \"asterràdal\": \"asterràdal\",\n  \"asthom\": \"asthom\",\n  \"asti\": \"asti\",\n  \"astigiano\": \"astig\",\n  \"astina\": \"astin\",\n  \"astinenza\": \"astinent\",\n  \"astio\": \"asti\",\n  \"astioso\": \"astios\",\n  \"astragalo\": \"astragal\",\n  \"astratto\": \"astratt\",\n  \"astrazione\": \"astrazion\",\n  \"astrea\": \"astre\",\n  \"astri\": \"astri\",\n  \"astro\": \"astro\",\n  \"astrologi\": \"astrolog\",\n  \"astrologia\": \"astrolog\",\n  \"astuti\": \"astut\",\n  \"astuzia\": \"astuz\",\n  \"astuzie\": \"astuz\",\n  \"at\": \"at\",\n  \"ata\": \"ata\",\n  \"atalanta\": \"atalant\",\n  \"atanasio\": \"atanas\",\n  \"atene\": \"aten\",\n  \"ateneo\": \"atene\",\n  \"ati\": \"ati\",\n  \"atl\": \"atl\",\n  \"atlanta\": \"atlant\",\n  \"atlante\": \"atlant\",\n  \"atlantica\": \"atlant\",\n  \"atleta\": \"atlet\",\n  \"atleti\": \"atlet\",\n  \"atletica\": \"atlet\",\n  \"atletico\": \"atlet\",\n  \"atm\": \"atm\",\n  \"atmosfera\": \"atmosfer\",\n  \"atomica\": \"atom\",\n  \"atonica\": \"aton\",\n  \"atou\": \"atou\",\n  \"atp\": \"atp\",\n  \"atqui\": \"atqui\",\n  \"atrio\": \"atri\",\n  \"atroce\": \"atroc\",\n  \"atroci\": \"atroc\",\n  \"atrocissimi\": \"atrocissim\",\n  \"atrocità\": \"atroc\",\n  \"atta\": \"atta\",\n  \"attacante\": \"attac\",\n  \"attacca\": \"attacc\",\n  \"attaccamento\": \"attacc\",\n  \"attaccando\": \"attacc\",\n  \"attaccandoci\": \"attacc\",\n  \"attaccandosi\": \"attacc\",\n  \"attaccante\": \"attacc\",\n  \"attaccanti\": \"attacc\",\n  \"attaccar\": \"attacc\",\n  \"attaccarci\": \"attacc\",\n  \"attaccare\": \"attacc\",\n  \"attaccarlo\": \"attacc\",\n  \"attaccarmi\": \"attacc\",\n  \"attaccarono\": \"attacc\",\n  \"attaccarsi\": \"attacc\",\n  \"attaccasse\": \"attacc\",\n  \"attaccata\": \"attacc\",\n  \"attaccate\": \"attacc\",\n  \"attaccati\": \"attacc\",\n  \"attaccato\": \"attacc\",\n  \"attaccava\": \"attacc\",\n  \"attacchi\": \"attacc\",\n  \"attacco\": \"attacc\",\n  \"attaccò\": \"attacc\",\n  \"attarda\": \"attard\",\n  \"atte\": \"atte\",\n  \"attecchire\": \"attecc\",\n  \"atteggiamenti\": \"attegg\",\n  \"atteggiamento\": \"attegg\",\n  \"atteggiandosi\": \"attegg\",\n  \"atteggiato\": \"attegg\",\n  \"atteggiò\": \"attegg\",\n  \"attempata\": \"attemp\",\n  \"attempate\": \"attemp\",\n  \"attendati\": \"attend\",\n  \"attende\": \"attend\",\n  \"attendendo\": \"attend\",\n  \"attendere\": \"attend\",\n  \"attenderla\": \"attend\",\n  \"attenderli\": \"attend\",\n  \"attenderlo\": \"attend\",\n  \"attendessero\": \"attend\",\n  \"attendeva\": \"attend\",\n  \"attendevamo\": \"attend\",\n  \"attendevano\": \"attend\",\n  \"attendiamo\": \"attend\",\n  \"attendibile\": \"attend\",\n  \"attendibili\": \"attend\",\n  \"attendono\": \"attend\",\n  \"attenersi\": \"atten\",\n  \"attenta\": \"attent\",\n  \"attentamente\": \"attent\",\n  \"attentar\": \"attent\",\n  \"attentasse\": \"attent\",\n  \"attentati\": \"attent\",\n  \"attentato\": \"attent\",\n  \"attentatore\": \"attent\",\n  \"attentava\": \"attent\",\n  \"attente\": \"attent\",\n  \"attenti\": \"attent\",\n  \"attento\": \"attent\",\n  \"attenuare\": \"attenu\",\n  \"attenuato\": \"attenu\",\n  \"attenzion\": \"attenzion\",\n  \"attenzione\": \"attenzion\",\n  \"attenzioni\": \"attenzion\",\n  \"atterra\": \"atterr\",\n  \"atterraggio\": \"atterragg\",\n  \"atterramento\": \"atterr\",\n  \"atterrano\": \"atterr\",\n  \"atterrata\": \"atterr\",\n  \"atterrato\": \"atterr\",\n  \"atterrava\": \"atterr\",\n  \"atterrerà\": \"atterr\",\n  \"atterrire\": \"atterr\",\n  \"atterrita\": \"atterr\",\n  \"atterrito\": \"atterr\",\n  \"atterriva\": \"atterr\",\n  \"attesa\": \"attes\",\n  \"attese\": \"attes\",\n  \"attesi\": \"attes\",\n  \"attesissimo\": \"attesissim\",\n  \"atteso\": \"attes\",\n  \"attesoché\": \"attesoc\",\n  \"attesta\": \"attest\",\n  \"attestandosi\": \"attest\",\n  \"attestar\": \"attest\",\n  \"attestare\": \"attest\",\n  \"attestarsi\": \"attest\",\n  \"attestata\": \"attest\",\n  \"attestate\": \"attest\",\n  \"attestati\": \"attest\",\n  \"attestato\": \"attest\",\n  \"attestava\": \"attest\",\n  \"attestazione\": \"attest\",\n  \"attesti\": \"attest\",\n  \"atti\": \"atti\",\n  \"attiene\": \"attien\",\n  \"attiguo\": \"attigu\",\n  \"attilio\": \"attil\",\n  \"attillata\": \"attill\",\n  \"attillati\": \"attill\",\n  \"attillatissimi\": \"attillatissim\",\n  \"attimi\": \"attim\",\n  \"attimo\": \"attim\",\n  \"attinenze\": \"attinent\",\n  \"attingendo\": \"atting\",\n  \"attingere\": \"atting\",\n  \"attinta\": \"attint\",\n  \"attinte\": \"attint\",\n  \"attioni\": \"attion\",\n  \"attira\": \"attir\",\n  \"attirare\": \"attir\",\n  \"attirarla\": \"attir\",\n  \"attirarne\": \"attir\",\n  \"attirarsi\": \"attir\",\n  \"attirata\": \"attir\",\n  \"attirate\": \"attir\",\n  \"attirati\": \"attir\",\n  \"attirato\": \"attir\",\n  \"attirava\": \"attir\",\n  \"attirerebbe\": \"attir\",\n  \"attiriamo\": \"attir\",\n  \"attirò\": \"attir\",\n  \"attitudine\": \"attitudin\",\n  \"attiv\": \"attiv\",\n  \"attiva\": \"attiv\",\n  \"attivare\": \"attiv\",\n  \"attive\": \"attiv\",\n  \"attivi\": \"attiv\",\n  \"attivita\": \"attiv\",\n  \"attività\": \"attiv\",\n  \"attivo\": \"attiv\",\n  \"atto\": \"atto\",\n  \"attonita\": \"atton\",\n  \"attonito\": \"atton\",\n  \"attore\": \"attor\",\n  \"attori\": \"attor\",\n  \"attorniato\": \"attorn\",\n  \"attorno\": \"attorn\",\n  \"attortigliata\": \"attortigl\",\n  \"attraente\": \"attraent\",\n  \"attraeva\": \"attra\",\n  \"attrasse\": \"attrass\",\n  \"attrattiva\": \"attratt\",\n  \"attratto\": \"attratt\",\n  \"attraversa\": \"attravers\",\n  \"attraversando\": \"attravers\",\n  \"attraversar\": \"attravers\",\n  \"attraversare\": \"attravers\",\n  \"attraversarli\": \"attravers\",\n  \"attraversarlo\": \"attravers\",\n  \"attraversaron\": \"attraversaron\",\n  \"attraversata\": \"attravers\",\n  \"attraversati\": \"attravers\",\n  \"attraversato\": \"attravers\",\n  \"attraversatolo\": \"attraversatol\",\n  \"attraversava\": \"attravers\",\n  \"attraverserà\": \"attravers\",\n  \"attraversino\": \"attraversin\",\n  \"attraverso\": \"attravers\",\n  \"attraversò\": \"attravers\",\n  \"attrezzandosi\": \"attrezz\",\n  \"attrezzata\": \"attrezz\",\n  \"attrezzate\": \"attrezz\",\n  \"attrezzato\": \"attrezz\",\n  \"attrezzature\": \"attrezzatur\",\n  \"attrezzi\": \"attrezz\",\n  \"attribuendo\": \"attribu\",\n  \"attribuibile\": \"attribu\",\n  \"attribuir\": \"attribu\",\n  \"attribuire\": \"attribu\",\n  \"attribuirla\": \"attribu\",\n  \"attribuirlo\": \"attribu\",\n  \"attribuirne\": \"attribu\",\n  \"attribuisce\": \"attribu\",\n  \"attribuiscono\": \"attribu\",\n  \"attribuisse\": \"attribuiss\",\n  \"attribuita\": \"attribu\",\n  \"attribuitami\": \"attribuitam\",\n  \"attribuite\": \"attribu\",\n  \"attribuiti\": \"attribu\",\n  \"attribuito\": \"attribu\",\n  \"attribuiva\": \"attribu\",\n  \"attribuivano\": \"attribu\",\n  \"attribuzione\": \"attribu\",\n  \"attribuzioni\": \"attribu\",\n  \"attrice\": \"attric\",\n  \"attuale\": \"attual\",\n  \"attualente\": \"attualent\",\n  \"attuali\": \"attual\",\n  \"attualita\": \"attual\",\n  \"attualità\": \"attual\",\n  \"attualmente\": \"attual\",\n  \"attuando\": \"attu\",\n  \"attuare\": \"attu\",\n  \"attuarlo\": \"attu\",\n  \"attuata\": \"attu\",\n  \"attuati\": \"attu\",\n  \"attuato\": \"attu\",\n  \"attuazione\": \"attuazion\",\n  \"atzori\": \"atzor\",\n  \"auckland\": \"auckland\",\n  \"audacia\": \"audac\",\n  \"audio\": \"aud\",\n  \"audiovisivo\": \"audiovis\",\n  \"auditor\": \"auditor\",\n  \"auditore\": \"auditor\",\n  \"audizione\": \"audizion\",\n  \"auferatis\": \"auferatis\",\n  \"aug\": \"aug\",\n  \"auge\": \"aug\",\n  \"augello\": \"augell\",\n  \"augura\": \"augur\",\n  \"augurarono\": \"augur\",\n  \"augurata\": \"augur\",\n  \"augurate\": \"augur\",\n  \"augurato\": \"augur\",\n  \"auguri\": \"augur\",\n  \"augùri\": \"augùr\",\n  \"auguriamo\": \"augur\",\n  \"augurio\": \"augur\",\n  \"auguro\": \"augur\",\n  \"augusta\": \"august\",\n  \"auguste\": \"august\",\n  \"augusto\": \"august\",\n  \"aula\": \"aul\",\n  \"auletta\": \"aulett\",\n  \"aumentabili\": \"aument\",\n  \"aumentando\": \"aument\",\n  \"aumentare\": \"aument\",\n  \"aumentata\": \"aument\",\n  \"aumentate\": \"aument\",\n  \"aumentati\": \"aument\",\n  \"aumentato\": \"aument\",\n  \"aumenterà\": \"aument\",\n  \"aumenti\": \"aument\",\n  \"aumentino\": \"aumentin\",\n  \"aumento\": \"aument\",\n  \"aurelio\": \"aurel\",\n  \"aureo\": \"aure\",\n  \"aureola\": \"aureol\",\n  \"auricolare\": \"auricol\",\n  \"auriol\": \"auriol\",\n  \"aurora\": \"auror\",\n  \"aus\": \"aus\",\n  \"auschwitz\": \"auschwitz\",\n  \"aushwitz\": \"aushwitz\",\n  \"ausilia\": \"ausil\",\n  \"ausiliare\": \"ausil\",\n  \"ausiliari\": \"ausiliar\",\n  \"ausiliarie\": \"ausiliar\",\n  \"ausiliario\": \"ausiliar\",\n  \"auspica\": \"auspic\",\n  \"auspicabile\": \"auspic\",\n  \"auspicato\": \"auspic\",\n  \"auspicava\": \"auspic\",\n  \"auspicio\": \"auspic\",\n  \"austera\": \"auster\",\n  \"austero\": \"auster\",\n  \"australia\": \"austral\",\n  \"australian\": \"australian\",\n  \"australiana\": \"australian\",\n  \"australiane\": \"australian\",\n  \"australiani\": \"australian\",\n  \"australiano\": \"austral\",\n  \"austria\": \"austr\",\n  \"austriaca\": \"austriac\",\n  \"austriaci\": \"austriac\",\n  \"austriaco\": \"austriac\",\n  \"aut\": \"aut\",\n  \"autentica\": \"autent\",\n  \"autenticamente\": \"autent\",\n  \"autentici\": \"autent\",\n  \"autenticità\": \"autent\",\n  \"autentico\": \"autent\",\n  \"authority\": \"authority\",\n  \"autista\": \"autist\",\n  \"autisti\": \"autist\",\n  \"auto\": \"aut\",\n  \"autobianchi\": \"autobianc\",\n  \"autobotte\": \"autobott\",\n  \"autobus\": \"autobus\",\n  \"autocandidatura\": \"autocandidatur\",\n  \"autocarri\": \"autocarr\",\n  \"autocarro\": \"autocarr\",\n  \"autocelebrazione\": \"autocelebr\",\n  \"autocertificato\": \"autocertific\",\n  \"autodissoluzione\": \"autodissolu\",\n  \"autodistruttiva\": \"autodistrutt\",\n  \"autodistruzione\": \"autodistru\",\n  \"autoferrotranvieri\": \"autoferrotranvier\",\n  \"autogol\": \"autogol\",\n  \"autografo\": \"autograf\",\n  \"automaticamente\": \"automat\",\n  \"automatici\": \"automat\",\n  \"automatizzati\": \"automatizz\",\n  \"automatizzato\": \"automatizz\",\n  \"automazione\": \"autom\",\n  \"automobile\": \"automobil\",\n  \"automobili\": \"automobil\",\n  \"automobilismo\": \"automobil\",\n  \"automobilista\": \"automobil\",\n  \"automobilisti\": \"automobil\",\n  \"automobilistica\": \"automobilist\",\n  \"automobilistiche\": \"automobilist\",\n  \"automobilistico\": \"automobilist\",\n  \"automoveis\": \"automoveis\",\n  \"autonoma\": \"autonom\",\n  \"autonomamente\": \"autonom\",\n  \"autonome\": \"autonom\",\n  \"autonomi\": \"autonom\",\n  \"autonomia\": \"autonom\",\n  \"autonomie\": \"autonom\",\n  \"autonomista\": \"autonom\",\n  \"autonomistà\": \"autonom\",\n  \"autonomisti\": \"autonom\",\n  \"autonomo\": \"autonom\",\n  \"autopergamena\": \"autopergamen\",\n  \"autoproclamatasi\": \"autoproclamatas\",\n  \"autoproduttori\": \"autoproduttor\",\n  \"autopsia\": \"autops\",\n  \"autoptico\": \"autopt\",\n  \"autor\": \"autor\",\n  \"autore\": \"autor\",\n  \"autoregolamentazione\": \"autoregolament\",\n  \"autorete\": \"autor\",\n  \"autorevole\": \"autorevol\",\n  \"autorevolezza\": \"autorevolezz\",\n  \"autorevoli\": \"autorevol\",\n  \"autori\": \"autor\",\n  \"autorimessa\": \"autorimess\",\n  \"autorita\": \"autor\",\n  \"autorità\": \"autor\",\n  \"autoritaria\": \"autoritar\",\n  \"autoritario\": \"autoritar\",\n  \"autorizzata\": \"autorizz\",\n  \"autorizzativo\": \"autorizz\",\n  \"autorizzato\": \"autorizz\",\n  \"autorizzatorie\": \"autorizzator\",\n  \"autorizzazione\": \"autorizz\",\n  \"autorizzazioni\": \"autorizz\",\n  \"autoscuole\": \"autoscuol\",\n  \"autosospesa\": \"autosospes\",\n  \"autostr\": \"autostr\",\n  \"autostrada\": \"autostrad\",\n  \"autostradale\": \"autostradal\",\n  \"autostradali\": \"autostradal\",\n  \"autostrade\": \"autostrad\",\n  \"autoveicoli\": \"autoveicol\",\n  \"autovettura\": \"autovettur\",\n  \"autovetture\": \"autovettur\",\n  \"autrice\": \"autric\",\n  \"autunnale\": \"autunnal\",\n  \"autunnali\": \"autunnal\",\n  \"autunno\": \"autunn\",\n  \"auuenuto\": \"auuen\",\n  \"auxerre\": \"auxerr\",\n  \"av\": \"av\",\n  \"avallato\": \"avall\",\n  \"avana\": \"avan\",\n  \"avances\": \"avances\",\n  \"avanguardia\": \"avanguard\",\n  \"avanti\": \"avant\",\n  \"avanza\": \"avanz\",\n  \"avanzando\": \"avanz\",\n  \"avanzandosi\": \"avanz\",\n  \"avanzare\": \"avanz\",\n  \"avanzarsi\": \"avanz\",\n  \"avanzata\": \"avanz\",\n  \"avanzate\": \"avanz\",\n  \"avanzati\": \"avanz\",\n  \"avanzato\": \"avanz\",\n  \"avanzava\": \"avanz\",\n  \"avanzerà\": \"avanz\",\n  \"avanzerebbe\": \"avanz\",\n  \"avanzi\": \"avanz\",\n  \"avanzini\": \"avanzin\",\n  \"avanzo\": \"avanz\",\n  \"avanzò\": \"avanz\",\n  \"avara\": \"avar\",\n  \"avaria\": \"avar\",\n  \"avarizia\": \"avariz\",\n  \"avaro\": \"avar\",\n  \"ave\": \"ave\",\n  \"avea\": \"ave\",\n  \"avean\": \"avean\",\n  \"avellino\": \"avellin\",\n  \"avendo\": \"avend\",\n  \"avendocelo\": \"avendocel\",\n  \"avendola\": \"avendol\",\n  \"avendolo\": \"avendol\",\n  \"avendone\": \"avendon\",\n  \"avene\": \"aven\",\n  \"aventi\": \"avent\",\n  \"aver\": \"aver\",\n  \"averci\": \"averc\",\n  \"avere\": \"aver\",\n  \"avergli\": \"avergl\",\n  \"avergliene\": \"averglien\",\n  \"averla\": \"averl\",\n  \"averle\": \"averl\",\n  \"averli\": \"averl\",\n  \"averlo\": \"averl\",\n  \"avermi\": \"averm\",\n  \"avermo\": \"averm\",\n  \"averne\": \"avern\",\n  \"averselo\": \"aversel\",\n  \"avervi\": \"averv\",\n  \"avesse\": \"avess\",\n  \"avesser\": \"avesser\",\n  \"avessero\": \"avesser\",\n  \"avessi\": \"avess\",\n  \"avessimo\": \"avessim\",\n  \"aveste\": \"avest\",\n  \"avete\": \"avet\",\n  \"aveva\": \"avev\",\n  \"avevam\": \"avevam\",\n  \"avevamo\": \"avevam\",\n  \"avevan\": \"avevan\",\n  \"avevano\": \"avev\",\n  \"avevate\": \"avev\",\n  \"avevi\": \"avev\",\n  \"avevo\": \"avev\",\n  \"avezzano\": \"avezz\",\n  \"avi\": \"avi\",\n  \"aviazione\": \"aviazion\",\n  \"avidamente\": \"avid\",\n  \"avidi\": \"avid\",\n  \"avidità\": \"avid\",\n  \"avignone\": \"avignon\",\n  \"avir\": \"avir\",\n  \"avis\": \"avis\",\n  \"aviv\": \"aviv\",\n  \"avo\": \"avo\",\n  \"avocando\": \"avoc\",\n  \"avola\": \"avol\",\n  \"avoltoi\": \"avolto\",\n  \"avrà\": \"avrà\",\n  \"avrai\": \"avra\",\n  \"avràil\": \"avràil\",\n  \"avranno\": \"avrann\",\n  \"avrebbe\": \"avrebb\",\n  \"avrebber\": \"avrebber\",\n  \"avrebbero\": \"avrebber\",\n  \"avrei\": \"avre\",\n  \"avrem\": \"avrem\",\n  \"avremmo\": \"avremm\",\n  \"avremo\": \"avrem\",\n  \"avreste\": \"avrest\",\n  \"avresti\": \"avrest\",\n  \"avrete\": \"avret\",\n  \"avrò\": \"avrò\",\n  \"avturkhanov\": \"avturkhanov\",\n  \"avuta\": \"avut\",\n  \"avute\": \"avut\",\n  \"avuti\": \"avut\",\n  \"avuto\": \"avut\",\n  \"avutolo\": \"avutol\",\n  \"avv\": \"avv\",\n  \"avvale\": \"avval\",\n  \"avvalersi\": \"avval\",\n  \"avvantaggerebbero\": \"avvantagg\",\n  \"avvantaggiati\": \"avvantagg\",\n  \"avveda\": \"avved\",\n  \"avvede\": \"avved\",\n  \"avvedendosi\": \"avved\",\n  \"avvedersene\": \"avved\",\n  \"avvedesse\": \"avvedess\",\n  \"avvedeva\": \"avved\",\n  \"avvedutezza\": \"avvedutezz\",\n  \"avveduto\": \"avved\",\n  \"avvelenata\": \"avvelen\",\n  \"avvelenava\": \"avvelen\",\n  \"avvenendo\": \"avven\",\n  \"avvenenza\": \"avvenent\",\n  \"avvenga\": \"avveng\",\n  \"avvenimenti\": \"avven\",\n  \"avvenimento\": \"avven\",\n  \"avvenire\": \"avven\",\n  \"avvenirè\": \"avvenir\",\n  \"avvenisse\": \"avveniss\",\n  \"avveniva\": \"avven\",\n  \"avvenne\": \"avvenn\",\n  \"avventa\": \"avvent\",\n  \"avventarono\": \"avvent\",\n  \"avventarsi\": \"avvent\",\n  \"avventò\": \"avvent\",\n  \"avventore\": \"avventor\",\n  \"avventori\": \"avventor\",\n  \"avventura\": \"avventur\",\n  \"avventure\": \"avventur\",\n  \"avventuriera\": \"avventurier\",\n  \"avventurieri\": \"avventurier\",\n  \"avventurosa\": \"avventur\",\n  \"avvenuta\": \"avven\",\n  \"avvenute\": \"avven\",\n  \"avvenuti\": \"avven\",\n  \"avvenuto\": \"avven\",\n  \"avverata\": \"avver\",\n  \"avverate\": \"avver\",\n  \"avveri\": \"avver\",\n  \"avverrà\": \"avverr\",\n  \"avversa\": \"avvers\",\n  \"avversari\": \"avversar\",\n  \"avversaria\": \"avversar\",\n  \"avversarie\": \"avversar\",\n  \"avversario\": \"avversar\",\n  \"avversati\": \"avvers\",\n  \"avverse\": \"avvers\",\n  \"avversione\": \"avversion\",\n  \"avversità\": \"avvers\",\n  \"avverso\": \"avvers\",\n  \"avverta\": \"avvert\",\n  \"avverte\": \"avvert\",\n  \"avvertendo\": \"avvert\",\n  \"avvertì\": \"avvert\",\n  \"avvertimenti\": \"avvert\",\n  \"avvertimento\": \"avvert\",\n  \"avvertio\": \"avvert\",\n  \"avvertir\": \"avvert\",\n  \"avvertire\": \"avvert\",\n  \"avvertirla\": \"avvert\",\n  \"avvertirlo\": \"avvert\",\n  \"avvertirono\": \"avvert\",\n  \"avvertisse\": \"avvertiss\",\n  \"avvertita\": \"avvert\",\n  \"avvertite\": \"avvert\",\n  \"avvertiti\": \"avvert\",\n  \"avvertito\": \"avvert\",\n  \"avvezza\": \"avvezz\",\n  \"avvezzare\": \"avvezz\",\n  \"avvezzarsi\": \"avvezz\",\n  \"avvezzata\": \"avvezz\",\n  \"avvezzato\": \"avvezz\",\n  \"avvezzi\": \"avvezz\",\n  \"avvezzin\": \"avvezzin\",\n  \"avvezzo\": \"avvezz\",\n  \"avvia\": \"avvi\",\n  \"avviamento\": \"avvi\",\n  \"avviando\": \"avvi\",\n  \"avviandosi\": \"avvi\",\n  \"avviano\": \"avvi\",\n  \"avviare\": \"avvi\",\n  \"avviaron\": \"avviaron\",\n  \"avviarono\": \"avvi\",\n  \"avviarsi\": \"avvi\",\n  \"avviarvi\": \"avvi\",\n  \"avviasse\": \"avvi\",\n  \"avviata\": \"avvi\",\n  \"avviate\": \"avvi\",\n  \"avviati\": \"avvi\",\n  \"avviato\": \"avvi\",\n  \"avviava\": \"avvi\",\n  \"avviavan\": \"avviavan\",\n  \"avviavano\": \"avvi\",\n  \"avvicendamenti\": \"avvicend\",\n  \"avvicina\": \"avvicin\",\n  \"avvicinamento\": \"avvicin\",\n  \"avvicinando\": \"avvicin\",\n  \"avvicinandosegli\": \"avvicinandosegl\",\n  \"avvicinandosele\": \"avvicinandosel\",\n  \"avvicinandosi\": \"avvicin\",\n  \"avvicinano\": \"avvicin\",\n  \"avvicinare\": \"avvicin\",\n  \"avvicinarono\": \"avvicin\",\n  \"avvicinarsi\": \"avvicin\",\n  \"avvicinasse\": \"avvicin\",\n  \"avvicinata\": \"avvicin\",\n  \"avvicinati\": \"avvicin\",\n  \"avvicinato\": \"avvicin\",\n  \"avvicinatosele\": \"avvicinatosel\",\n  \"avvicinatosi\": \"avvicinat\",\n  \"avvicinava\": \"avvicin\",\n  \"avvicinavano\": \"avvicin\",\n  \"avvicinino\": \"avvicinin\",\n  \"avvicinò\": \"avvicin\",\n  \"avvide\": \"avvid\",\n  \"avviene\": \"avvien\",\n  \"avvierà\": \"avvi\",\n  \"avvieranno\": \"avvi\",\n  \"avvilimento\": \"avvil\",\n  \"avvilisse\": \"avviliss\",\n  \"avvilita\": \"avvil\",\n  \"avvilito\": \"avvil\",\n  \"avviluppata\": \"avvilupp\",\n  \"avviluppate\": \"avvilupp\",\n  \"avvio\": \"avvi\",\n  \"avviò\": \"avvi\",\n  \"avvisa\": \"avvis\",\n  \"avvisaglie\": \"avvisagl\",\n  \"avvisar\": \"avvis\",\n  \"avvisarmi\": \"avvis\",\n  \"avvisatemi\": \"avvisatem\",\n  \"avvisato\": \"avvis\",\n  \"avvisi\": \"avvis\",\n  \"avviso\": \"avvis\",\n  \"avvisò\": \"avvis\",\n  \"avvista\": \"avvist\",\n  \"avvistati\": \"avvist\",\n  \"avvisti\": \"avvist\",\n  \"avvisto\": \"avvist\",\n  \"avvitano\": \"avvit\",\n  \"avviticchiata\": \"avviticc\",\n  \"avvocati\": \"avvoc\",\n  \"avvocato\": \"avvoc\",\n  \"avvocatura\": \"avvocatur\",\n  \"avvolgeva\": \"avvolg\",\n  \"avvolse\": \"avvols\",\n  \"avvolta\": \"avvolt\",\n  \"avvoltati\": \"avvolt\",\n  \"avvolto\": \"avvolt\",\n  \"axel\": \"axel\",\n  \"axo\": \"axo\",\n  \"ayamonte\": \"ayamont\",\n  \"ayatollah\": \"ayatollah\",\n  \"ayub\": \"ayub\",\n  \"az\": \"az\",\n  \"azarashvili\": \"azarashvil\",\n  \"azeglio\": \"azegl\",\n  \"azerbaigian\": \"azerbaigian\",\n  \"azienda\": \"azi\",\n  \"aziendale\": \"aziendal\",\n  \"aziendali\": \"aziendal\",\n  \"aziendalistico\": \"aziendalist\",\n  \"aziende\": \"azi\",\n  \"azimut\": \"azimut\",\n  \"azion\": \"azion\",\n  \"azionari\": \"azionar\",\n  \"azionariato\": \"azionar\",\n  \"azionarie\": \"azionar\",\n  \"azionario\": \"azionar\",\n  \"azione\": \"azion\",\n  \"azioni\": \"azion\",\n  \"azionista\": \"azion\",\n  \"azionisti\": \"azion\",\n  \"azov\": \"azov\",\n  \"azteca\": \"aztec\",\n  \"azzano\": \"azzan\",\n  \"azzardo\": \"azzard\",\n  \"azzaretti\": \"azzarett\",\n  \"azzecca\": \"azzecc\",\n  \"azzeccare\": \"azzecc\",\n  \"azzerato\": \"azzer\",\n  \"azzurra\": \"azzurr\",\n  \"azzurre\": \"azzurr\",\n  \"azzurri\": \"azzurr\",\n  \"azzurro\": \"azzurr\",\n  \"b\": \"b\",\n  \"baackman\": \"baackman\",\n  \"bab\": \"bab\",\n  \"babbini\": \"babbin\",\n  \"babbo\": \"babb\",\n  \"babilonese\": \"babilones\",\n  \"babilonia\": \"babilon\",\n  \"baccani\": \"baccan\",\n  \"baccano\": \"bacc\",\n  \"bacche\": \"bacc\",\n  \"bacchetta\": \"bacchett\",\n  \"bacchettare\": \"bacchett\",\n  \"bacchettato\": \"bacchett\",\n  \"bacchiarle\": \"bacc\",\n  \"bacci\": \"bacc\",\n  \"bacco\": \"bacc\",\n  \"bacheca\": \"bachec\",\n  \"bacheche\": \"bachec\",\n  \"baciare\": \"bac\",\n  \"baciasse\": \"bac\",\n  \"baciata\": \"bac\",\n  \"baciati\": \"bac\",\n  \"baciatolo\": \"baciatol\",\n  \"baciava\": \"bac\",\n  \"baciavano\": \"bac\",\n  \"bacilli\": \"bacill\",\n  \"bacio\": \"bac\",\n  \"bacioni\": \"bacion\",\n  \"back\": \"back\",\n  \"backlund\": \"backlund\",\n  \"backman\": \"backman\",\n  \"baco\": \"bac\",\n  \"bada\": \"bad\",\n  \"badando\": \"bad\",\n  \"badar\": \"bad\",\n  \"badare\": \"bad\",\n  \"badasse\": \"bad\",\n  \"badate\": \"bad\",\n  \"badato\": \"bad\",\n  \"badava\": \"bad\",\n  \"badavan\": \"badavan\",\n  \"badessa\": \"badess\",\n  \"badesse\": \"badess\",\n  \"badi\": \"bad\",\n  \"badò\": \"bad\",\n  \"baffi\": \"baff\",\n  \"baffie\": \"baff\",\n  \"bagagli\": \"bagagl\",\n  \"bagaglino\": \"bagaglin\",\n  \"bagattella\": \"bagattell\",\n  \"baggiana\": \"baggian\",\n  \"baggianata\": \"baggian\",\n  \"baggianate\": \"baggian\",\n  \"baggiani\": \"baggian\",\n  \"baggiano\": \"bagg\",\n  \"baggino\": \"baggin\",\n  \"baggio\": \"bagg\",\n  \"baghdad\": \"baghdad\",\n  \"baglieri\": \"baglier\",\n  \"bagm\": \"bagm\",\n  \"bagna\": \"bagn\",\n  \"bagnar\": \"bagn\",\n  \"bagnato\": \"bagn\",\n  \"bagnerebbe\": \"bagn\",\n  \"bagno\": \"bagn\",\n  \"bagnoli\": \"bagnol\",\n  \"bahrain\": \"bahrain\",\n  \"baia\": \"bai\",\n  \"baiano\": \"bai\",\n  \"baigest\": \"baigest\",\n  \"bain\": \"bain\",\n  \"bakirkov\": \"bakirkov\",\n  \"bal\": \"bal\",\n  \"balabbio\": \"balabb\",\n  \"balbettando\": \"balbett\",\n  \"balbettar\": \"balbett\",\n  \"balbettò\": \"balbett\",\n  \"balbo\": \"balb\",\n  \"balcani\": \"balcan\",\n  \"balcanica\": \"balcan\",\n  \"balcaria\": \"balcar\",\n  \"baldacchino\": \"baldacchin\",\n  \"baldanza\": \"baldanz\",\n  \"baldanzosa\": \"baldanz\",\n  \"baldassarri\": \"baldassarr\",\n  \"baldi\": \"bald\",\n  \"baldieri\": \"baldier\",\n  \"baldini\": \"baldin\",\n  \"balenar\": \"balen\",\n  \"balenato\": \"balen\",\n  \"baleno\": \"balen\",\n  \"balenò\": \"balen\",\n  \"balere\": \"bal\",\n  \"balia\": \"bal\",\n  \"balìa\": \"balì\",\n  \"balie\": \"bal\",\n  \"balilla\": \"balill\",\n  \"balladur\": \"balladur\",\n  \"ballar\": \"ball\",\n  \"ballard\": \"ballard\",\n  \"ballare\": \"ball\",\n  \"ballate\": \"ball\",\n  \"ballavano\": \"ball\",\n  \"balle\": \"ball\",\n  \"ballen\": \"ballen\",\n  \"balleri\": \"baller\",\n  \"ballerina\": \"ballerin\",\n  \"ballerini\": \"ballerin\",\n  \"ballerino\": \"ballerin\",\n  \"balletta\": \"ballett\",\n  \"balletto\": \"ballett\",\n  \"ballo\": \"ball\",\n  \"ballotta\": \"ballott\",\n  \"ballottaggio\": \"ballottagg\",\n  \"baloccandosi\": \"balocc\",\n  \"balocchi\": \"balocc\",\n  \"balocco\": \"balocc\",\n  \"balordo\": \"balord\",\n  \"balsam\": \"balsam\",\n  \"balsamo\": \"balsam\",\n  \"baltimora\": \"baltimor\",\n  \"baluardi\": \"baluard\",\n  \"baluardo\": \"baluard\",\n  \"balzando\": \"balz\",\n  \"balzano\": \"balz\",\n  \"balzare\": \"balz\",\n  \"balzato\": \"balz\",\n  \"balze\": \"balz\",\n  \"balzellare\": \"balzell\",\n  \"balzello\": \"balzell\",\n  \"balzelloni\": \"balzellon\",\n  \"balzi\": \"balz\",\n  \"balzo\": \"balz\",\n  \"balzò\": \"balz\",\n  \"bam\": \"bam\",\n  \"bambina\": \"bambin\",\n  \"bambine\": \"bambin\",\n  \"bambinelli\": \"bambinell\",\n  \"bambinetta\": \"bambinett\",\n  \"bambinette\": \"bambinett\",\n  \"bambini\": \"bambin\",\n  \"bambino\": \"bambin\",\n  \"bambole\": \"bambol\",\n  \"bampi\": \"bamp\",\n  \"bampo\": \"bamp\",\n  \"ban\": \"ban\",\n  \"banana\": \"banan\",\n  \"banane\": \"banan\",\n  \"bananè\": \"banan\",\n  \"banca\": \"banc\",\n  \"bancari\": \"bancar\",\n  \"bancaria\": \"bancar\",\n  \"bancarie\": \"bancar\",\n  \"bancario\": \"bancar\",\n  \"bancarotta\": \"bancarott\",\n  \"banche\": \"banc\",\n  \"banchelli\": \"banchell\",\n  \"banchetto\": \"banchett\",\n  \"banchi\": \"banc\",\n  \"banchina\": \"banchin\",\n  \"banco\": \"banc\",\n  \"bancone\": \"bancon\",\n  \"banconote\": \"banconot\",\n  \"band\": \"band\",\n  \"banda\": \"band\",\n  \"bande\": \"band\",\n  \"bandera\": \"bander\",\n  \"bandi\": \"band\",\n  \"bandiera\": \"bandier\",\n  \"bandiere\": \"band\",\n  \"bandierina\": \"bandierin\",\n  \"bandierine\": \"bandierin\",\n  \"bandita\": \"band\",\n  \"banditi\": \"band\",\n  \"bandito\": \"band\",\n  \"bandiva\": \"band\",\n  \"bando\": \"band\",\n  \"bandolo\": \"bandol\",\n  \"bang\": \"bang\",\n  \"bangalore\": \"bangalor\",\n  \"bangkok\": \"bangkok\",\n  \"bangladesh\": \"bangladesh\",\n  \"bank\": \"bank\",\n  \"banker\": \"banker\",\n  \"banking\": \"banking\",\n  \"bankitalia\": \"bankital\",\n  \"banzato\": \"banz\",\n  \"baptiste\": \"baptist\",\n  \"bar\": \"bar\",\n  \"bara\": \"bar\",\n  \"barabba\": \"barabb\",\n  \"baracca\": \"baracc\",\n  \"baracche\": \"baracc\",\n  \"baraldi\": \"barald\",\n  \"baramathi\": \"baramath\",\n  \"baraòs\": \"baraòs\",\n  \"baratro\": \"baratr\",\n  \"barattando\": \"baratt\",\n  \"barattano\": \"baratt\",\n  \"barattare\": \"baratt\",\n  \"barattata\": \"baratt\",\n  \"barattate\": \"baratt\",\n  \"barattava\": \"baratt\",\n  \"barattavan\": \"barattavan\",\n  \"baratterei\": \"baratt\",\n  \"barattoli\": \"barattol\",\n  \"barba\": \"barb\",\n  \"barbaccia\": \"barbacc\",\n  \"barbados\": \"barbados\",\n  \"barbara\": \"barbar\",\n  \"barbaramente\": \"barbar\",\n  \"barbaria\": \"barbar\",\n  \"barbaricino\": \"barbaricin\",\n  \"barbarie\": \"barbar\",\n  \"barbaro\": \"barbar\",\n  \"barbarossa\": \"barbaross\",\n  \"barbasso\": \"barbass\",\n  \"barbe\": \"barb\",\n  \"barber\": \"barber\",\n  \"barberini\": \"barberin\",\n  \"barbetta\": \"barbett\",\n  \"barbieri\": \"barbier\",\n  \"barbiero\": \"barbier\",\n  \"barbone\": \"barbon\",\n  \"barbour\": \"barbour\",\n  \"barca\": \"barc\",\n  \"barcaioli\": \"barcaiol\",\n  \"barcaiolo\": \"barcaiol\",\n  \"barcellona\": \"barcellon\",\n  \"barche\": \"barc\",\n  \"barchetta\": \"barchett\",\n  \"barclay\": \"barclay\",\n  \"barco\": \"barc\",\n  \"barcollando\": \"barcoll\",\n  \"barcollò\": \"barcoll\",\n  \"bardature\": \"bardatur\",\n  \"barella\": \"barell\",\n  \"barese\": \"bares\",\n  \"baresi\": \"bares\",\n  \"bargello\": \"bargell\",\n  \"bari\": \"bar\",\n  \"baricentro\": \"baricentr\",\n  \"barili\": \"baril\",\n  \"barletta\": \"barlett\",\n  \"barlume\": \"barlum\",\n  \"barnabas\": \"barnabas\",\n  \"barocciaio\": \"barocciai\",\n  \"baroccio\": \"barocc\",\n  \"barocco\": \"barocc\",\n  \"barollo\": \"baroll\",\n  \"baronchelli\": \"baronchell\",\n  \"baroni\": \"baron\",\n  \"barricata\": \"barric\",\n  \"barriera\": \"barrier\",\n  \"barrington\": \"barrington\",\n  \"barroccio\": \"barrocc\",\n  \"barsio\": \"bars\",\n  \"bart\": \"bart\",\n  \"bartholomew\": \"bartholomew\",\n  \"bartolomeo\": \"bartolome\",\n  \"bartolommeo\": \"bartolomme\",\n  \"baruch\": \"baruc\",\n  \"baruffe\": \"baruff\",\n  \"barzaghi\": \"barzag\",\n  \"basata\": \"bas\",\n  \"basato\": \"bas\",\n  \"base\": \"bas\",\n  \"basel\": \"basel\",\n  \"baselga\": \"baselg\",\n  \"basi\": \"bas\",\n  \"basilari\": \"basilar\",\n  \"basile\": \"basil\",\n  \"basilea\": \"basile\",\n  \"basilicata\": \"basilic\",\n  \"basinger\": \"basinger\",\n  \"basisce\": \"bas\",\n  \"basket\": \"basket\",\n  \"bassa\": \"bass\",\n  \"bassani\": \"bassan\",\n  \"bassanini\": \"bassanin\",\n  \"bassano\": \"bass\",\n  \"basse\": \"bass\",\n  \"bassetti\": \"bassett\",\n  \"bassi\": \"bass\",\n  \"bassifondi\": \"bassifond\",\n  \"bassissimi\": \"bassissim\",\n  \"basso\": \"bass\",\n  \"bassolino\": \"bassolin\",\n  \"basta\": \"bast\",\n  \"bastando\": \"bast\",\n  \"bastandoci\": \"bast\",\n  \"bastandogli\": \"bast\",\n  \"bastano\": \"bast\",\n  \"bastante\": \"bastant\",\n  \"bastantemente\": \"bastant\",\n  \"bastanti\": \"bastant\",\n  \"bastar\": \"bast\",\n  \"bastare\": \"bast\",\n  \"bastasse\": \"bast\",\n  \"bastassero\": \"bast\",\n  \"bastata\": \"bast\",\n  \"bastate\": \"bast\",\n  \"bastati\": \"bast\",\n  \"bastato\": \"bast\",\n  \"bastava\": \"bast\",\n  \"basten\": \"basten\",\n  \"basterà\": \"bast\",\n  \"basterebbe\": \"bast\",\n  \"basti\": \"bast\",\n  \"bastia\": \"bast\",\n  \"bastimento\": \"bast\",\n  \"bastioni\": \"bastion\",\n  \"basto\": \"bast\",\n  \"bastò\": \"bast\",\n  \"bastogi\": \"bastog\",\n  \"bastonabile\": \"baston\",\n  \"bastonabilissimo\": \"bastonabilissim\",\n  \"bastonate\": \"baston\",\n  \"bastonato\": \"baston\",\n  \"bastoncino\": \"bastoncin\",\n  \"bastone\": \"baston\",\n  \"bastoni\": \"baston\",\n  \"bastono\": \"bast\",\n  \"bataglione\": \"bataglion\",\n  \"batistuta\": \"batist\",\n  \"batman\": \"batman\",\n  \"battaggia\": \"battagg\",\n  \"battaglia\": \"battagl\",\n  \"battaglià\": \"battagl\",\n  \"battaglie\": \"battagl\",\n  \"battaglione\": \"battaglion\",\n  \"battaglioni\": \"battaglion\",\n  \"batte\": \"batt\",\n  \"battello\": \"battell\",\n  \"battendo\": \"batt\",\n  \"battendolo\": \"batt\",\n  \"battente\": \"battent\",\n  \"battenti\": \"battent\",\n  \"batter\": \"batter\",\n  \"batterà\": \"batt\",\n  \"batterci\": \"batt\",\n  \"battere\": \"batt\",\n  \"battermi\": \"batt\",\n  \"batterono\": \"batt\",\n  \"battersi\": \"batt\",\n  \"battesimo\": \"battesim\",\n  \"batteva\": \"batt\",\n  \"battezzata\": \"battezz\",\n  \"battezzato\": \"battezz\",\n  \"battiamo\": \"batt\",\n  \"battiato\": \"batt\",\n  \"batticuore\": \"batticuor\",\n  \"battigia\": \"battig\",\n  \"battimani\": \"battiman\",\n  \"battipagliese\": \"battipaglies\",\n  \"battista\": \"battist\",\n  \"battistini\": \"battistin\",\n  \"battistrada\": \"battistrad\",\n  \"batto\": \"batt\",\n  \"battuta\": \"batt\",\n  \"battute\": \"batt\",\n  \"battuto\": \"batt\",\n  \"battutta\": \"battutt\",\n  \"batuffoletto\": \"batuffolett\",\n  \"baudo\": \"baud\",\n  \"baumann\": \"baumann\",\n  \"bava\": \"bav\",\n  \"bavarese\": \"bavares\",\n  \"bavero\": \"baver\",\n  \"baviera\": \"bavier\",\n  \"bay\": \"bay\",\n  \"bayer\": \"bayer\",\n  \"bayerwerk\": \"bayerwerk\",\n  \"bazza\": \"bazz\",\n  \"bazzecole\": \"bazzecol\",\n  \"bazzicate\": \"bazzic\",\n  \"bazzicava\": \"bazzic\",\n  \"bazzicherebbero\": \"bazzic\",\n  \"bb\": \"bb\",\n  \"bbc\": \"bbc\",\n  \"bc\": \"bc\",\n  \"bca\": \"bca\",\n  \"bco\": \"bco\",\n  \"bd\": \"bd\",\n  \"beach\": \"beac\",\n  \"beata\": \"beat\",\n  \"beatificazione\": \"beatif\",\n  \"beatle\": \"beatl\",\n  \"beato\": \"beat\",\n  \"beatrice\": \"beatric\",\n  \"beautiful\": \"beautiful\",\n  \"bebè\": \"beb\",\n  \"bec\": \"bec\",\n  \"beccare\": \"becc\",\n  \"beccarsi\": \"becc\",\n  \"beccatò\": \"beccat\",\n  \"becchini\": \"becchin\",\n  \"becchino\": \"becchin\",\n  \"becchio\": \"becc\",\n  \"becco\": \"becc\",\n  \"becker\": \"becker\",\n  \"beffa\": \"beff\",\n  \"beffardi\": \"beffard\",\n  \"beffe\": \"beff\",\n  \"beghetto\": \"beghett\",\n  \"beghin\": \"beghin\",\n  \"begli\": \"begl\",\n  \"beha\": \"beh\",\n  \"bei\": \"bei\",\n  \"beirut\": \"beirut\",\n  \"beit\": \"beit\",\n  \"bel\": \"bel\",\n  \"belar\": \"bel\",\n  \"belare\": \"bel\",\n  \"belati\": \"bel\",\n  \"belfiori\": \"belfior\",\n  \"belga\": \"belg\",\n  \"belgio\": \"belg\",\n  \"belgrado\": \"belgrad\",\n  \"beliaiev\": \"beliaiev\",\n  \"bell\": \"bell\",\n  \"bella\": \"bell\",\n  \"bellano\": \"bell\",\n  \"bellarditta\": \"bellarditt\",\n  \"belle\": \"bell\",\n  \"bellerio\": \"beller\",\n  \"bellezza\": \"bellezz\",\n  \"bellezze\": \"bellezz\",\n  \"belli\": \"bell\",\n  \"bellici\": \"bellic\",\n  \"belligerante\": \"belliger\",\n  \"belligeranza\": \"belliger\",\n  \"bellissima\": \"bellissim\",\n  \"bellissime\": \"bellissim\",\n  \"bellissimo\": \"bellissim\",\n  \"bello\": \"bell\",\n  \"bellucci\": \"bellucc\",\n  \"bellunese\": \"bellunes\",\n  \"belluno\": \"bellun\",\n  \"belmondo\": \"belmond\",\n  \"belson\": \"belson\",\n  \"beltrami\": \"beltram\",\n  \"belzebù\": \"belzebù\",\n  \"bempensante\": \"bempens\",\n  \"ben\": \"ben\",\n  \"benaivedes\": \"benaivedes\",\n  \"benarrivo\": \"benarr\",\n  \"benaugurante\": \"benaugur\",\n  \"benavides\": \"benavides\",\n  \"benché\": \"benc\",\n  \"benchè\": \"benc\",\n  \"benda\": \"bend\",\n  \"bene\": \"ben\",\n  \"benedett\": \"benedett\",\n  \"benedetta\": \"benedett\",\n  \"benedette\": \"benedett\",\n  \"benedetti\": \"benedett\",\n  \"benedetto\": \"benedett\",\n  \"benedica\": \"bened\",\n  \"benedice\": \"bened\",\n  \"benedicilo\": \"benedicil\",\n  \"benedico\": \"bened\",\n  \"benedir\": \"bened\",\n  \"benedirà\": \"bened\",\n  \"benedire\": \"bened\",\n  \"benedisse\": \"benediss\",\n  \"benedizione\": \"benedizion\",\n  \"benedizioni\": \"benedizion\",\n  \"benefattore\": \"benefattor\",\n  \"benefattori\": \"benefattor\",\n  \"benefattrice\": \"benefattr\",\n  \"benefica\": \"benef\",\n  \"beneficare\": \"benefic\",\n  \"beneficati\": \"benefic\",\n  \"beneficenza\": \"beneficent\",\n  \"beneficenze\": \"beneficent\",\n  \"benefici\": \"benef\",\n  \"beneficiari\": \"beneficiar\",\n  \"beneficiato\": \"benefic\",\n  \"beneficienza\": \"beneficient\",\n  \"beneficio\": \"benefic\",\n  \"benefico\": \"benef\",\n  \"benefitio\": \"benefit\",\n  \"benefizio\": \"benefiz\",\n  \"benemeriti\": \"benemer\",\n  \"benemerito\": \"benemer\",\n  \"benestanti\": \"benest\",\n  \"benetti\": \"benett\",\n  \"benetton\": \"benetton\",\n  \"benevento\": \"benevent\",\n  \"benevolenza\": \"benevolent\",\n  \"benevoli\": \"benevol\",\n  \"benevolo\": \"benevol\",\n  \"beni\": \"ben\",\n  \"beniamino\": \"beniamin\",\n  \"benigna\": \"benign\",\n  \"benignità\": \"benign\",\n  \"benissimo\": \"benissim\",\n  \"benni\": \"benn\",\n  \"benny\": \"benny\",\n  \"benone\": \"benon\",\n  \"benservito\": \"benserv\",\n  \"bensì\": \"bens\",\n  \"benvenuta\": \"benven\",\n  \"benvenuto\": \"benven\",\n  \"benzina\": \"benzin\",\n  \"beppe\": \"bepp\",\n  \"berbera\": \"berber\",\n  \"berberovic\": \"berberovic\",\n  \"bere\": \"ber\",\n  \"berenger\": \"berenger\",\n  \"beretta\": \"berett\",\n  \"bergamasca\": \"bergamasc\",\n  \"bergamasche\": \"bergamasc\",\n  \"bergamaschi\": \"bergamasc\",\n  \"bergamasco\": \"bergamasc\",\n  \"bergamascone\": \"bergamascon\",\n  \"bergamo\": \"bergam\",\n  \"bergkamp\": \"bergkamp\",\n  \"bergodi\": \"bergod\",\n  \"bergomi\": \"bergom\",\n  \"berhanu\": \"berhanu\",\n  \"berisha\": \"berish\",\n  \"berlanda\": \"berland\",\n  \"berlenghi\": \"berleng\",\n  \"berlinga\": \"berling\",\n  \"berlinghe\": \"berling\",\n  \"berlinguer\": \"berlinguer\",\n  \"berlino\": \"berlin\",\n  \"berluscaz\": \"berluscaz\",\n  \"berlusconi\": \"berluscon\",\n  \"berlusconì\": \"berluscon\",\n  \"berlusconiani\": \"berlusconian\",\n  \"berlusconiano\": \"berluscon\",\n  \"berluskaiser\": \"berluskaiser\",\n  \"bermuda\": \"bermud\",\n  \"bernabè\": \"bernab\",\n  \"bernard\": \"bernard\",\n  \"bernardelli\": \"bernardell\",\n  \"bernardi\": \"bernard\",\n  \"bernardini\": \"bernardin\",\n  \"bernardo\": \"bernard\",\n  \"bernassola\": \"bernassol\",\n  \"bernoccolo\": \"bernoccol\",\n  \"berretta\": \"berrett\",\n  \"berretti\": \"berrett\",\n  \"berrettine\": \"berrettin\",\n  \"berretto\": \"berrett\",\n  \"bersagliando\": \"bersagl\",\n  \"bersaglio\": \"bersagl\",\n  \"bersagliò\": \"bersagl\",\n  \"bersani\": \"bersan\",\n  \"berselli\": \"bersell\",\n  \"bertarelli\": \"bertarell\",\n  \"bertelli\": \"bertell\",\n  \"berti\": \"bert\",\n  \"bertinotti\": \"bertinott\",\n  \"berto\": \"bert\",\n  \"bertolucci\": \"bertolucc\",\n  \"beruri\": \"berur\",\n  \"besà\": \"bes\",\n  \"beschin\": \"beschin\",\n  \"beso\": \"bes\",\n  \"best\": \"best\",\n  \"bestemmia\": \"bestemm\",\n  \"bestemmiando\": \"bestemm\",\n  \"bestemmiato\": \"bestemm\",\n  \"bestemmiavano\": \"bestemm\",\n  \"bestemmie\": \"bestemm\",\n  \"bestia\": \"best\",\n  \"bestiale\": \"bestial\",\n  \"bestiame\": \"bestiam\",\n  \"bestie\": \"best\",\n  \"bestione\": \"bestion\",\n  \"betis\": \"betis\",\n  \"bettin\": \"bettin\",\n  \"bettina\": \"bettin\",\n  \"bettino\": \"bettin\",\n  \"bettinò\": \"bettin\",\n  \"bettiol\": \"bettiol\",\n  \"bettola\": \"bettol\",\n  \"bettole\": \"bettol\",\n  \"betty\": \"betty\",\n  \"bevanda\": \"bevand\",\n  \"bevande\": \"bevand\",\n  \"beve\": \"bev\",\n  \"beveren\": \"beveren\",\n  \"beverly\": \"beverly\",\n  \"bevette\": \"bevett\",\n  \"bevi\": \"bev\",\n  \"bevitore\": \"bevitor\",\n  \"bevono\": \"bev\",\n  \"bevuta\": \"bev\",\n  \"bevuto\": \"bev\",\n  \"bf\": \"bf\",\n  \"bg\": \"bg\",\n  \"bharatiya\": \"bharatiy\",\n  \"bi\": \"bi\",\n  \"bia\": \"bia\",\n  \"biagio\": \"biag\",\n  \"biagioni\": \"biagion\",\n  \"biamonte\": \"biamont\",\n  \"bianca\": \"bianc\",\n  \"biancacci\": \"biancacc\",\n  \"biancaneve\": \"biancanev\",\n  \"biancastra\": \"biancastr\",\n  \"biancastre\": \"biancastr\",\n  \"biancastri\": \"biancastr\",\n  \"biancazzurri\": \"biancazzurr\",\n  \"bianche\": \"bianc\",\n  \"biancheggianti\": \"bianchegg\",\n  \"biancheria\": \"biancher\",\n  \"bianchezza\": \"bianchezz\",\n  \"bianchi\": \"bianc\",\n  \"bianchini\": \"bianchin\",\n  \"bianchissima\": \"bianchissim\",\n  \"bianchissime\": \"bianchissim\",\n  \"bianchissimo\": \"bianchissim\",\n  \"bianco\": \"bianc\",\n  \"biancò\": \"bianc\",\n  \"bianconera\": \"bianconer\",\n  \"bianconeri\": \"bianconer\",\n  \"bianconero\": \"bianconer\",\n  \"biar\": \"biar\",\n  \"biascicato\": \"biascic\",\n  \"biasimata\": \"biasim\",\n  \"biasimevole\": \"biasimevol\",\n  \"biasimo\": \"biasim\",\n  \"biathlon\": \"biathlon\",\n  \"biava\": \"biav\",\n  \"biblioteca\": \"bibliotec\",\n  \"bibliotecari\": \"bibliotecar\",\n  \"bibliotecario\": \"bibliotecar\",\n  \"biblioteche\": \"bibliotec\",\n  \"bic\": \"bic\",\n  \"bicamerale\": \"bicameral\",\n  \"bicchier\": \"bicchier\",\n  \"bicchiere\": \"bicc\",\n  \"bicchieri\": \"bicchier\",\n  \"bicchierino\": \"bicchierin\",\n  \"bicicletta\": \"biciclett\",\n  \"bicocca\": \"bicocc\",\n  \"bidonville\": \"bidonvill\",\n  \"bieche\": \"biec\",\n  \"bieco\": \"biec\",\n  \"biedenkopf\": \"biedenkopf\",\n  \"biella\": \"biell\",\n  \"bielorussa\": \"bieloruss\",\n  \"bielorussia\": \"bieloruss\",\n  \"bien\": \"bien\",\n  \"biennale\": \"biennal\",\n  \"biennio\": \"bienn\",\n  \"bierhoff\": \"bierhoff\",\n  \"biffi\": \"biff\",\n  \"big\": \"big\",\n  \"bigia\": \"big\",\n  \"bigica\": \"bigic\",\n  \"bigio\": \"big\",\n  \"bigiognolo\": \"bigiognol\",\n  \"biglietti\": \"bigliett\",\n  \"biglietto\": \"bigliett\",\n  \"bignardi\": \"bignard\",\n  \"bigon\": \"bigon\",\n  \"biguzzi\": \"biguzz\",\n  \"bihac\": \"bihac\",\n  \"bikini\": \"bikin\",\n  \"bil\": \"bil\",\n  \"bilan\": \"bilan\",\n  \"bilance\": \"bilanc\",\n  \"bilanci\": \"bilanc\",\n  \"bilancia\": \"bilanc\",\n  \"bilanciato\": \"bilanc\",\n  \"bilanciavano\": \"bilanc\",\n  \"bilancino\": \"bilancin\",\n  \"bilancio\": \"bilanc\",\n  \"bilaterali\": \"bilateral\",\n  \"bilboa\": \"bilbo\",\n  \"bild\": \"bild\",\n  \"biliardo\": \"biliard\",\n  \"bill\": \"bill\",\n  \"billio\": \"bill\",\n  \"billy\": \"billy\",\n  \"bim\": \"bim\",\n  \"bimba\": \"bimb\",\n  \"bimbi\": \"bimb\",\n  \"bimbo\": \"bimb\",\n  \"binaghi\": \"binag\",\n  \"binari\": \"binar\",\n  \"binario\": \"binar\",\n  \"binda\": \"bind\",\n  \"bindi\": \"bind\",\n  \"binelli\": \"binell\",\n  \"binotto\": \"binott\",\n  \"bioetica\": \"bioetic\",\n  \"biografi\": \"biograf\",\n  \"biografia\": \"biograf\",\n  \"biologia\": \"biolog\",\n  \"biologica\": \"biolog\",\n  \"biologo\": \"biolog\",\n  \"biomedica\": \"biomed\",\n  \"bionda\": \"biond\",\n  \"biondi\": \"biond\",\n  \"biondino\": \"biondin\",\n  \"biondo\": \"biond\",\n  \"bione\": \"bion\",\n  \"biosfere\": \"biosf\",\n  \"bipolare\": \"bipol\",\n  \"bipolarismo\": \"bipolar\",\n  \"bipolarismò\": \"bipolarism\",\n  \"bipolarizza\": \"bipolarizz\",\n  \"bipolarizzazione\": \"bipolarizz\",\n  \"birago\": \"birag\",\n  \"birba\": \"birb\",\n  \"birbante\": \"birbant\",\n  \"birbanti\": \"birbant\",\n  \"birberia\": \"birber\",\n  \"birbone\": \"birbon\",\n  \"birboneggiando\": \"birbonegg\",\n  \"birboni\": \"birbon\",\n  \"birilli\": \"birill\",\n  \"birkenau\": \"birkenau\",\n  \"birmania\": \"birman\",\n  \"birmano\": \"birm\",\n  \"biron\": \"biron\",\n  \"birreria\": \"birrer\",\n  \"birri\": \"birr\",\n  \"birro\": \"birr\",\n  \"bis\": \"bis\",\n  \"bisacce\": \"bisacc\",\n  \"bisaccia\": \"bisacc\",\n  \"bisbetica\": \"bisbet\",\n  \"bisbetiche\": \"bisbet\",\n  \"bisbetici\": \"bisbet\",\n  \"bisbigli\": \"bisbigl\",\n  \"bisbigliar\": \"bisbigl\",\n  \"bisbigliare\": \"bisbigl\",\n  \"bisbigliava\": \"bisbigl\",\n  \"bisbiglio\": \"bisbigl\",\n  \"bisbiglìo\": \"bisbiglì\",\n  \"bisbigliò\": \"bisbigl\",\n  \"bisbocce\": \"bisbocc\",\n  \"bisca\": \"bisc\",\n  \"biscardi\": \"biscard\",\n  \"bisceglie\": \"biscegl\",\n  \"biscione\": \"biscion\",\n  \"bisdosso\": \"bisdoss\",\n  \"bisessuale\": \"bisessual\",\n  \"bisogna\": \"bisogn\",\n  \"bisognare\": \"bisogn\",\n  \"bisognasse\": \"bisogn\",\n  \"bisognati\": \"bisogn\",\n  \"bisognato\": \"bisogn\",\n  \"bisognaua\": \"bisognau\",\n  \"bisognava\": \"bisogn\",\n  \"bisognerà\": \"bisogn\",\n  \"bisognerebbe\": \"bisogn\",\n  \"bisognevole\": \"bisognevol\",\n  \"bisogni\": \"bisogn\",\n  \"bisogno\": \"bisogn\",\n  \"bisognò\": \"bisogn\",\n  \"bisognosa\": \"bisogn\",\n  \"bisognose\": \"bisogn\",\n  \"bisognosi\": \"bisogn\",\n  \"bisoli\": \"bisol\",\n  \"bisopgna\": \"bisopgn\",\n  \"bissau\": \"bissau\",\n  \"bisset\": \"bisset\",\n  \"bisticciar\": \"bisticc\",\n  \"bistrattava\": \"bistratt\",\n  \"bitetto\": \"bitett\",\n  \"bitonto\": \"bitont\",\n  \"bitume\": \"bitum\",\n  \"bituminosa\": \"bitumin\",\n  \"bixio\": \"bix\",\n  \"bizantinismi\": \"bizantin\",\n  \"bizioli\": \"biziol\",\n  \"bizzarre\": \"bizzarr\",\n  \"bizzarri\": \"bizzarr\",\n  \"bizzarria\": \"bizzarr\",\n  \"bizzarro\": \"bizzarr\",\n  \"bizzeffe\": \"bizzeff\",\n  \"bjorndalen\": \"bjorndalen\",\n  \"bka\": \"bka\",\n  \"bl\": \"bl\",\n  \"black\": \"black\",\n  \"blair\": \"bla\",\n  \"blasfemi\": \"blasfem\",\n  \"blasonata\": \"blason\",\n  \"blaterando\": \"blater\",\n  \"blaugrana\": \"blaugran\",\n  \"blida\": \"blid\",\n  \"blindata\": \"blind\",\n  \"blindate\": \"blind\",\n  \"blocca\": \"blocc\",\n  \"bloccando\": \"blocc\",\n  \"bloccare\": \"blocc\",\n  \"bloccata\": \"blocc\",\n  \"bloccato\": \"blocc\",\n  \"bloccherebbe\": \"blocc\",\n  \"blocchi\": \"blocc\",\n  \"blocco\": \"blocc\",\n  \"blomqvist\": \"blomqvist\",\n  \"bloom\": \"bloom\",\n  \"blu\": \"blu\",\n  \"blù\": \"blù\",\n  \"blucerchiata\": \"blucerc\",\n  \"blucerchiati\": \"blucerc\",\n  \"blucerchiato\": \"blucerc\",\n  \"blue\": \"blu\",\n  \"blz\": \"blz\",\n  \"bm\": \"bm\",\n  \"bn\": \"bn\",\n  \"bna\": \"bna\",\n  \"bnl\": \"bnl\",\n  \"bo\": \"bo\",\n  \"boa\": \"boa\",\n  \"boardman\": \"boardman\",\n  \"boards\": \"boards\",\n  \"boati\": \"boat\",\n  \"boato\": \"boat\",\n  \"bob\": \"bob\",\n  \"boban\": \"boban\",\n  \"bobbi\": \"bobb\",\n  \"bobbie\": \"bobb\",\n  \"bobbio\": \"bobb\",\n  \"bobek\": \"bobek\",\n  \"bobo\": \"bob\",\n  \"bobò\": \"bob\",\n  \"boca\": \"boc\",\n  \"bocca\": \"bocc\",\n  \"boccacce\": \"boccacc\",\n  \"boccale\": \"boccal\",\n  \"boccalini\": \"boccalin\",\n  \"boccetta\": \"boccett\",\n  \"bocche\": \"bocc\",\n  \"bocchino\": \"bocchin\",\n  \"boccia\": \"bocc\",\n  \"bocciare\": \"bocc\",\n  \"bocciata\": \"bocc\",\n  \"bocciato\": \"bocc\",\n  \"bocciatura\": \"bocciatur\",\n  \"boccone\": \"boccon\",\n  \"bocconi\": \"boccon\",\n  \"bodelwyddan\": \"bodelwyddan\",\n  \"bodino\": \"bodin\",\n  \"bodrato\": \"bodr\",\n  \"boeing\": \"boeing\",\n  \"boero\": \"boer\",\n  \"bof\": \"bof\",\n  \"bog\": \"bog\",\n  \"boghossian\": \"boghossian\",\n  \"bognanco\": \"bognanc\",\n  \"bogo\": \"bog\",\n  \"bogotà\": \"bogot\",\n  \"boia\": \"boi\",\n  \"boiano\": \"boi\",\n  \"boicottaggio\": \"boicottagg\",\n  \"boicottare\": \"boicott\",\n  \"boksic\": \"boksic\",\n  \"bolgona\": \"bolgon\",\n  \"bolivia\": \"boliv\",\n  \"bolla\": \"boll\",\n  \"bollate\": \"boll\",\n  \"bolle\": \"boll\",\n  \"bollettino\": \"bollettin\",\n  \"bolli\": \"boll\",\n  \"bolliva\": \"boll\",\n  \"bollo\": \"boll\",\n  \"bollor\": \"bollor\",\n  \"bollore\": \"bollor\",\n  \"bologna\": \"bologn\",\n  \"bolognese\": \"bolognes\",\n  \"bolognino\": \"bolognin\",\n  \"bolongaro\": \"bolongar\",\n  \"bolshoi\": \"bolsho\",\n  \"bolzano\": \"bolz\",\n  \"bomba\": \"bomb\",\n  \"bombardamenti\": \"bombard\",\n  \"bombardamento\": \"bombard\",\n  \"bombardare\": \"bombard\",\n  \"bombardato\": \"bombard\",\n  \"bombardieri\": \"bombardier\",\n  \"bombay\": \"bombay\",\n  \"bombe\": \"bomb\",\n  \"bombole\": \"bombol\",\n  \"bombolette\": \"bombolett\",\n  \"bommarito\": \"bommar\",\n  \"bon\": \"bon\",\n  \"bonacci\": \"bonacc\",\n  \"bonacina\": \"bonacin\",\n  \"bonafini\": \"bonafin\",\n  \"bonaiuti\": \"bonai\",\n  \"bonaldi\": \"bonald\",\n  \"bonaparte\": \"bonapart\",\n  \"bonariamente\": \"bonar\",\n  \"bonarietà\": \"bonariet\",\n  \"bonario\": \"bonar\",\n  \"bonati\": \"bon\",\n  \"bonaventura\": \"bonaventur\",\n  \"boncompagni\": \"boncompagn\",\n  \"bond\": \"bond\",\n  \"bonds\": \"bonds\",\n  \"bonfrisco\": \"bonfr\",\n  \"bongiorno\": \"bongiorn\",\n  \"bonham\": \"bonham\",\n  \"bonifica\": \"bonif\",\n  \"bonifiche\": \"bonif\",\n  \"bonino\": \"bonin\",\n  \"bonissima\": \"bonissim\",\n  \"bonissimo\": \"bonissim\",\n  \"bonn\": \"bonn\",\n  \"bonnaire\": \"bonn\",\n  \"bonnard\": \"bonnard\",\n  \"bonometti\": \"bonomett\",\n  \"bonomi\": \"bonom\",\n  \"bonsia\": \"bons\",\n  \"bontà\": \"bont\",\n  \"bor\": \"bor\",\n  \"borbonici\": \"borbon\",\n  \"borbottando\": \"borbott\",\n  \"borbottar\": \"borbott\",\n  \"borbottare\": \"borbott\",\n  \"borbottava\": \"borbott\",\n  \"borchie\": \"borc\",\n  \"bordate\": \"bord\",\n  \"bordeaux\": \"bordeaux\",\n  \"bordo\": \"bord\",\n  \"bordocampo\": \"bordocamp\",\n  \"bordon\": \"bordon\",\n  \"bordone\": \"bordon\",\n  \"bordoni\": \"bordon\",\n  \"borghese\": \"borghes\",\n  \"borghesia\": \"borghes\",\n  \"borghetto\": \"borghett\",\n  \"borghezio\": \"borghez\",\n  \"borghi\": \"borg\",\n  \"borgna\": \"borgn\",\n  \"borgo\": \"borg\",\n  \"borgosesia\": \"borgoses\",\n  \"boria\": \"bor\",\n  \"borioso\": \"borios\",\n  \"boris\": \"boris\",\n  \"borraccina\": \"borraccin\",\n  \"borrelli\": \"borrell\",\n  \"borriello\": \"borriell\",\n  \"borrini\": \"borrin\",\n  \"borromeo\": \"borrome\",\n  \"borsa\": \"bors\",\n  \"borse\": \"bors\",\n  \"borsistico\": \"borsist\",\n  \"borsitalia\": \"borsital\",\n  \"bortolazzi\": \"bortolazz\",\n  \"bortolo\": \"bortol\",\n  \"bortone\": \"borton\",\n  \"bosaglia\": \"bosagl\",\n  \"bosanksa\": \"bosanks\",\n  \"bosanska\": \"bosansk\",\n  \"bosaso\": \"bosas\",\n  \"bosca\": \"bosc\",\n  \"boschetto\": \"boschett\",\n  \"boschi\": \"bosc\",\n  \"bosco\": \"bosc\",\n  \"boscolo\": \"boscol\",\n  \"boscosa\": \"boscos\",\n  \"bosetti\": \"bosett\",\n  \"bosi\": \"bos\",\n  \"boskovic\": \"boskovic\",\n  \"bosnia\": \"bosn\",\n  \"bosniaca\": \"bosniac\",\n  \"bosniache\": \"bosniac\",\n  \"bosniaci\": \"bosniac\",\n  \"bosniaco\": \"bosniac\",\n  \"boso\": \"bos\",\n  \"boss\": \"boss\",\n  \"bossi\": \"boss\",\n  \"bossiana\": \"bossian\",\n  \"bossiha\": \"bossih\",\n  \"bossolo\": \"bossol\",\n  \"boston\": \"boston\",\n  \"bot\": \"bot\",\n  \"botero\": \"boter\",\n  \"botta\": \"bott\",\n  \"botte\": \"bott\",\n  \"bottega\": \"botteg\",\n  \"botteghe\": \"botteg\",\n  \"botti\": \"bott\",\n  \"botticella\": \"botticell\",\n  \"botticelli\": \"botticell\",\n  \"botticina\": \"botticin\",\n  \"botticine\": \"botticin\",\n  \"bottiglie\": \"bottigl\",\n  \"bottino\": \"bottin\",\n  \"botton\": \"botton\",\n  \"bottoni\": \"botton\",\n  \"boulevard\": \"boulevard\",\n  \"bouliere\": \"boul\",\n  \"boutros\": \"boutros\",\n  \"bovo\": \"bov\",\n  \"box\": \"box\",\n  \"boyle\": \"boyl\",\n  \"boys\": \"boys\",\n  \"bozza\": \"bozz\",\n  \"bpd\": \"bpd\",\n  \"br\": \"br\",\n  \"bra\": \"bra\",\n  \"bracaloni\": \"bracalon\",\n  \"bracardi\": \"bracard\",\n  \"braccano\": \"bracc\",\n  \"bracchi\": \"bracc\",\n  \"braccia\": \"bracc\",\n  \"bracciali\": \"braccial\",\n  \"bracciante\": \"bracciant\",\n  \"braccianti\": \"bracciant\",\n  \"bracciate\": \"bracc\",\n  \"bracciere\": \"bracc\",\n  \"braccio\": \"bracc\",\n  \"braccioli\": \"bracciol\",\n  \"bracciolo\": \"bracciol\",\n  \"braccj\": \"braccj\",\n  \"brace\": \"brac\",\n  \"brache\": \"brac\",\n  \"brad\": \"brad\",\n  \"braglia\": \"bragl\",\n  \"bramato\": \"bram\",\n  \"bramava\": \"bram\",\n  \"brambati\": \"bramb\",\n  \"brambilla\": \"brambill\",\n  \"bramerei\": \"bram\",\n  \"bramieri\": \"bramier\",\n  \"bramosi\": \"bramos\",\n  \"branca\": \"branc\",\n  \"branchi\": \"branc\",\n  \"branco\": \"branc\",\n  \"brandeburgo\": \"brandeburg\",\n  \"brandendo\": \"brand\",\n  \"brandisce\": \"brand\",\n  \"brandita\": \"brand\",\n  \"brani\": \"bran\",\n  \"brano\": \"bran\",\n  \"braschi\": \"brasc\",\n  \"brasile\": \"brasil\",\n  \"brasilia\": \"brasil\",\n  \"brasiliana\": \"brasilian\",\n  \"brasiliano\": \"brasil\",\n  \"brasseur\": \"brasseur\",\n  \"brassuer\": \"brassuer\",\n  \"bratislava\": \"bratisl\",\n  \"brav\": \"brav\",\n  \"brava\": \"brav\",\n  \"bravacci\": \"bravacc\",\n  \"bravaccio\": \"bravacc\",\n  \"bravamente\": \"brav\",\n  \"bravate\": \"brav\",\n  \"brave\": \"brav\",\n  \"braveria\": \"braver\",\n  \"braverìa\": \"braverì\",\n  \"braverie\": \"braver\",\n  \"bravi\": \"brav\",\n  \"bravissim\": \"bravissim\",\n  \"bravissima\": \"bravissim\",\n  \"bravissimo\": \"bravissim\",\n  \"bravo\": \"brav\",\n  \"bravura\": \"bravur\",\n  \"breccia\": \"brecc\",\n  \"breda\": \"bred\",\n  \"breefing\": \"breefing\",\n  \"brega\": \"breg\",\n  \"brema\": \"brem\",\n  \"brenta\": \"brent\",\n  \"brescello\": \"brescell\",\n  \"brescia\": \"bresc\",\n  \"bresciana\": \"brescian\",\n  \"bresciani\": \"brescian\",\n  \"bresciano\": \"bresc\",\n  \"breslavia\": \"breslav\",\n  \"bressan\": \"bressan\",\n  \"bretagna\": \"bretagn\",\n  \"breve\": \"brev\",\n  \"brevemente\": \"brevement\",\n  \"brevettarono\": \"brevett\",\n  \"brevettato\": \"brevett\",\n  \"brevi\": \"brev\",\n  \"breviario\": \"breviar\",\n  \"brevissimi\": \"brevissim\",\n  \"brevissimo\": \"brevissim\",\n  \"brevità\": \"brevit\",\n  \"breviun\": \"breviun\",\n  \"breweries\": \"breweries\",\n  \"brezhnev\": \"brezhnev\",\n  \"brezza\": \"brezz\",\n  \"brezzolina\": \"brezzolin\",\n  \"bri\": \"bri\",\n  \"brian\": \"brian\",\n  \"briantea\": \"briante\",\n  \"brianza\": \"brianz\",\n  \"briareo\": \"briare\",\n  \"bricconate\": \"briccon\",\n  \"bricconeria\": \"bricconer\",\n  \"bricconerie\": \"bricconer\",\n  \"briciole\": \"briciol\",\n  \"bridge\": \"bridg\",\n  \"briefing\": \"briefing\",\n  \"briga\": \"brig\",\n  \"brigata\": \"brig\",\n  \"brigate\": \"brig\",\n  \"brigatella\": \"brigatell\",\n  \"brigatista\": \"brigat\",\n  \"brighe\": \"brig\",\n  \"briglia\": \"brigl\",\n  \"brignano\": \"brign\",\n  \"brignone\": \"brignon\",\n  \"brilla\": \"brill\",\n  \"brillante\": \"brillant\",\n  \"brillanti\": \"brillant\",\n  \"brillare\": \"brill\",\n  \"brillato\": \"brill\",\n  \"brillavan\": \"brillavan\",\n  \"brina\": \"brin\",\n  \"brindato\": \"brind\",\n  \"brindisi\": \"brindis\",\n  \"brinner\": \"brinner\",\n  \"brio\": \"bri\",\n  \"brioschi\": \"briosc\",\n  \"brisbane\": \"brisban\",\n  \"britannica\": \"britann\",\n  \"britanniche\": \"britann\",\n  \"britannici\": \"britann\",\n  \"britannico\": \"britann\",\n  \"britannnico\": \"britannn\",\n  \"british\": \"british\",\n  \"brividi\": \"brivid\",\n  \"brivido\": \"brivid\",\n  \"brivio\": \"briv\",\n  \"brm\": \"brm\",\n  \"brn\": \"brn\",\n  \"broadway\": \"broadway\",\n  \"broccato\": \"brocc\",\n  \"brochard\": \"brochard\",\n  \"brodo\": \"brod\",\n  \"broggi\": \"brogg\",\n  \"brogioni\": \"brogion\",\n  \"brontolando\": \"brontol\",\n  \"brontolare\": \"brontol\",\n  \"brontolava\": \"brontol\",\n  \"brontolavano\": \"brontol\",\n  \"brontolìo\": \"brontolì\",\n  \"bronx\": \"bronx\",\n  \"bronzo\": \"bronz\",\n  \"brooke\": \"brook\",\n  \"brooklyn\": \"brooklyn\",\n  \"bruce\": \"bruc\",\n  \"brucerebbe\": \"bruc\",\n  \"brucerete\": \"bruc\",\n  \"brucia\": \"bruc\",\n  \"bruciar\": \"bruc\",\n  \"bruciare\": \"bruc\",\n  \"bruciata\": \"bruc\",\n  \"bruciati\": \"bruc\",\n  \"bruciato\": \"bruc\",\n  \"bruciatore\": \"bruciator\",\n  \"bruciavan\": \"bruciavan\",\n  \"bruciavano\": \"bruc\",\n  \"bruciò\": \"bruc\",\n  \"bruciore\": \"brucior\",\n  \"bruges\": \"bruges\",\n  \"brulica\": \"brulic\",\n  \"brulicar\": \"brulic\",\n  \"brulicava\": \"brulic\",\n  \"brulicavano\": \"brulic\",\n  \"brulichìo\": \"brulichì\",\n  \"bruna\": \"brun\",\n  \"brune\": \"brun\",\n  \"brunico\": \"brunic\",\n  \"brunner\": \"brunner\",\n  \"bruno\": \"brun\",\n  \"brusca\": \"brusc\",\n  \"bruscamente\": \"brusc\",\n  \"brusche\": \"brusc\",\n  \"brusco\": \"brusc\",\n  \"brutale\": \"brutal\",\n  \"brutalmente\": \"brutal\",\n  \"bruto\": \"brut\",\n  \"brutta\": \"brutt\",\n  \"bruttamente\": \"brutt\",\n  \"brutte\": \"brutt\",\n  \"brutti\": \"brutt\",\n  \"brutto\": \"brutt\",\n  \"bruxelles\": \"bruxelles\",\n  \"bs\": \"bs\",\n  \"bsa\": \"bsa\",\n  \"btp\": \"btp\",\n  \"bu\": \"bu\",\n  \"bubbole\": \"bubbol\",\n  \"bubbone\": \"bubbon\",\n  \"bubboni\": \"bubbon\",\n  \"bubolz\": \"bubolz\",\n  \"buca\": \"buc\",\n  \"bucarest\": \"bucarest\",\n  \"bucaro\": \"bucar\",\n  \"bucatino\": \"bucatin\",\n  \"bucato\": \"buc\",\n  \"bucce\": \"bucc\",\n  \"bucci\": \"bucc\",\n  \"bucciarelli\": \"bucciarell\",\n  \"buche\": \"buch\",\n  \"buchenwald\": \"buchenwald\",\n  \"buchi\": \"buch\",\n  \"buco\": \"buc\",\n  \"bucò\": \"buc\",\n  \"budapest\": \"budapest\",\n  \"budermes\": \"budermes\",\n  \"buduau\": \"buduau\",\n  \"bue\": \"bue\",\n  \"buenos\": \"buenos\",\n  \"bufera\": \"bufer\",\n  \"bufere\": \"buf\",\n  \"buffa\": \"buff\",\n  \"buffet\": \"buffet\",\n  \"buffetteria\": \"buffetter\",\n  \"buffone\": \"buffon\",\n  \"buffoneria\": \"buffoner\",\n  \"buffoni\": \"buffon\",\n  \"bugatti\": \"bugatt\",\n  \"bugia\": \"bug\",\n  \"bugiarda\": \"bugiard\",\n  \"bugiardo\": \"bugiard\",\n  \"bugiardona\": \"bugiardon\",\n  \"bugie\": \"bug\",\n  \"bugigattoli\": \"bugigattol\",\n  \"bugigattolo\": \"bugigattol\",\n  \"buglione\": \"buglion\",\n  \"bugno\": \"bugn\",\n  \"bui\": \"bui\",\n  \"building\": \"building\",\n  \"buio\": \"bui\",\n  \"bulgara\": \"bulgar\",\n  \"bulgarelli\": \"bulgarell\",\n  \"bulgaria\": \"bulgar\",\n  \"bull\": \"bull\",\n  \"bulletta\": \"bullett\",\n  \"bullette\": \"bullett\",\n  \"bum\": \"bum\",\n  \"bundesbank\": \"bundesbank\",\n  \"bundesgerichtshof\": \"bundesgerichtshof\",\n  \"bunkers\": \"bunkers\",\n  \"bunny\": \"bunny\",\n  \"buon\": \"buon\",\n  \"buona\": \"buon\",\n  \"buone\": \"buon\",\n  \"buoni\": \"buon\",\n  \"buono\": \"buon\",\n  \"buontà\": \"buont\",\n  \"burattello\": \"burattell\",\n  \"burattinaio\": \"burattinai\",\n  \"burberi\": \"burber\",\n  \"burbero\": \"burber\",\n  \"burgenland\": \"burgenland\",\n  \"burgeto\": \"burget\",\n  \"burgo\": \"burg\",\n  \"burhanuddin\": \"burhanuddin\",\n  \"burkina\": \"burkin\",\n  \"burla\": \"burl\",\n  \"burlato\": \"burl\",\n  \"burlesco\": \"burlesc\",\n  \"burns\": \"burns\",\n  \"burocratiche\": \"burocrat\",\n  \"burocratico\": \"burocrat\",\n  \"burocrazia\": \"burocraz\",\n  \"burrasca\": \"burrasc\",\n  \"burrasche\": \"burrasc\",\n  \"burrascosa\": \"burrasc\",\n  \"burro\": \"burr\",\n  \"burrone\": \"burron\",\n  \"burroni\": \"burron\",\n  \"bus\": \"bus\",\n  \"buscar\": \"busc\",\n  \"buscarsi\": \"busc\",\n  \"buscarti\": \"busc\",\n  \"buscato\": \"busc\",\n  \"buscherei\": \"busc\",\n  \"bush\": \"bush\",\n  \"busilis\": \"busilis\",\n  \"business\": \"business\",\n  \"buso\": \"bus\",\n  \"busquets\": \"busquets\",\n  \"bussano\": \"buss\",\n  \"bussasse\": \"buss\",\n  \"busse\": \"buss\",\n  \"bussola\": \"bussol\",\n  \"bussolotti\": \"bussolott\",\n  \"bustine\": \"bustin\",\n  \"busto\": \"bust\",\n  \"butta\": \"butt\",\n  \"buttan\": \"buttan\",\n  \"buttando\": \"butt\",\n  \"buttandosegli\": \"buttandosegl\",\n  \"buttandosi\": \"butt\",\n  \"buttane\": \"buttan\",\n  \"buttar\": \"butt\",\n  \"buttare\": \"butt\",\n  \"buttarglielo\": \"butt\",\n  \"buttarle\": \"butt\",\n  \"buttarono\": \"butt\",\n  \"buttarsi\": \"butt\",\n  \"buttasse\": \"butt\",\n  \"buttassi\": \"butt\",\n  \"buttata\": \"butt\",\n  \"buttate\": \"butt\",\n  \"buttati\": \"butt\",\n  \"buttato\": \"butt\",\n  \"butterei\": \"butt\",\n  \"butterò\": \"butt\",\n  \"butti\": \"butt\",\n  \"buttiglione\": \"buttiglion\",\n  \"butto\": \"butt\",\n  \"buttò\": \"butt\",\n  \"buy\": \"buy\",\n  \"bvb\": \"bvb\",\n  \"c\": \"c\",\n  \"ca\": \"ca\",\n  \"cab\": \"cab\",\n  \"cabala\": \"cabal\",\n  \"cabale\": \"cabal\",\n  \"cabardino\": \"cabardin\",\n  \"cabina\": \"cabin\",\n  \"cabinati\": \"cabin\",\n  \"cabine\": \"cabin\",\n  \"cablata\": \"cabl\",\n  \"cabotaggio\": \"cabotagg\",\n  \"cabrini\": \"cabrin\",\n  \"cac\": \"cac\",\n  \"cacce\": \"cacc\",\n  \"caccia\": \"cacc\",\n  \"cacciabombardieri\": \"cacciabombardier\",\n  \"cacciamine\": \"cacciamin\",\n  \"caccian\": \"caccian\",\n  \"cacciando\": \"cacc\",\n  \"cacciandosi\": \"cacc\",\n  \"cacciare\": \"cacc\",\n  \"cacciari\": \"cacciar\",\n  \"cacciarli\": \"cacc\",\n  \"cacciarlo\": \"cacc\",\n  \"cacciarsi\": \"cacc\",\n  \"cacciassero\": \"cacc\",\n  \"cacciata\": \"cacc\",\n  \"cacciate\": \"cacc\",\n  \"cacciati\": \"cacc\",\n  \"cacciato\": \"cacc\",\n  \"cacciatore\": \"cacciator\",\n  \"cacciatovisi\": \"cacciatovis\",\n  \"cacciava\": \"cacc\",\n  \"cacciavano\": \"cacc\",\n  \"cacciavite\": \"cacciav\",\n  \"cacciò\": \"cacc\",\n  \"cadaueri\": \"cadauer\",\n  \"cadavere\": \"cadav\",\n  \"cadaveri\": \"cadaver\",\n  \"cadde\": \"cadd\",\n  \"caddero\": \"cadder\",\n  \"cade\": \"cad\",\n  \"cadente\": \"cadent\",\n  \"cadeo\": \"cade\",\n  \"cader\": \"cader\",\n  \"cadere\": \"cad\",\n  \"cadete\": \"cad\",\n  \"cadetti\": \"cadett\",\n  \"cadetto\": \"cadett\",\n  \"cadeva\": \"cad\",\n  \"cadevan\": \"cadevan\",\n  \"cadevano\": \"cad\",\n  \"cadono\": \"cad\",\n  \"cadrebbe\": \"cadrebb\",\n  \"cadsand\": \"cadsand\",\n  \"caduta\": \"cad\",\n  \"cadute\": \"cad\",\n  \"caduti\": \"cad\",\n  \"caduto\": \"cad\",\n  \"caen\": \"caen\",\n  \"caf\": \"caf\",\n  \"cafè\": \"caf\",\n  \"caffaro\": \"caffar\",\n  \"caffe\": \"caff\",\n  \"caffè\": \"caff\",\n  \"caffeina\": \"caffein\",\n  \"caffo\": \"caff\",\n  \"cafiero\": \"cafier\",\n  \"cagion\": \"cagion\",\n  \"cagionarono\": \"cagion\",\n  \"cagionata\": \"cagion\",\n  \"cagionati\": \"cagion\",\n  \"cagionava\": \"cagion\",\n  \"cagione\": \"cagion\",\n  \"cagioni\": \"cagion\",\n  \"cagionò\": \"cagion\",\n  \"cagiva\": \"cag\",\n  \"cagliari\": \"cagliar\",\n  \"cagliaritana\": \"cagliaritan\",\n  \"cagnaccio\": \"cagnacc\",\n  \"cagnesco\": \"cagnesc\",\n  \"cagni\": \"cagn\",\n  \"cagnolini\": \"cagnolin\",\n  \"caiazzo\": \"caiazz\",\n  \"cain\": \"cain\",\n  \"caini\": \"cain\",\n  \"caio\": \"cai\",\n  \"cairo\": \"cair\",\n  \"caiyun\": \"caiyun\",\n  \"cala\": \"cal\",\n  \"calà\": \"cal\",\n  \"calabria\": \"calabr\",\n  \"calamaio\": \"calamai\",\n  \"calamità\": \"calam\",\n  \"calano\": \"cal\",\n  \"calante\": \"calant\",\n  \"calar\": \"cal\",\n  \"calare\": \"cal\",\n  \"calarlo\": \"cal\",\n  \"calata\": \"cal\",\n  \"calate\": \"cal\",\n  \"calatemi\": \"calatem\",\n  \"calati\": \"cal\",\n  \"calato\": \"cal\",\n  \"calca\": \"calc\",\n  \"calcagni\": \"calcagn\",\n  \"calce\": \"calc\",\n  \"calcestruzzi\": \"calcestruzz\",\n  \"calche\": \"calc\",\n  \"calci\": \"calc\",\n  \"calciare\": \"calc\",\n  \"calciasse\": \"calc\",\n  \"calciato\": \"calc\",\n  \"calciatore\": \"calciator\",\n  \"calciatori\": \"calciator\",\n  \"calcio\": \"calc\",\n  \"calciò\": \"calc\",\n  \"calcistica\": \"calcist\",\n  \"calcistiche\": \"calcist\",\n  \"calcium\": \"calcium\",\n  \"calcolar\": \"calcol\",\n  \"calcolare\": \"calcol\",\n  \"calcolata\": \"calcol\",\n  \"calcolate\": \"calcol\",\n  \"calcolato\": \"calcol\",\n  \"calcolava\": \"calcol\",\n  \"calcoli\": \"calcol\",\n  \"calcolo\": \"calcol\",\n  \"calcutta\": \"calcutt\",\n  \"calda\": \"cald\",\n  \"caldaia\": \"caldai\",\n  \"caldaie\": \"caldai\",\n  \"caldamente\": \"cald\",\n  \"caldarola\": \"caldarol\",\n  \"calde\": \"cald\",\n  \"caldea\": \"calde\",\n  \"calderan\": \"calderan\",\n  \"calderisi\": \"calderis\",\n  \"calderotto\": \"calderott\",\n  \"caldo\": \"cald\",\n  \"caleffi\": \"caleff\",\n  \"calendari\": \"calendar\",\n  \"calendario\": \"calendar\",\n  \"calesse\": \"caless\",\n  \"calessino\": \"calessin\",\n  \"calgary\": \"calgary\",\n  \"cali\": \"cal\",\n  \"calibro\": \"calibr\",\n  \"calice\": \"calic\",\n  \"calici\": \"calic\",\n  \"california\": \"californ\",\n  \"calleri\": \"caller\",\n  \"calma\": \"calm\",\n  \"calmare\": \"calm\",\n  \"calo\": \"cal\",\n  \"calò\": \"cal\",\n  \"calodi\": \"calod\",\n  \"calore\": \"calor\",\n  \"calori\": \"calor\",\n  \"calorosa\": \"calor\",\n  \"caloroso\": \"calor\",\n  \"calp\": \"calp\",\n  \"calpestando\": \"calpest\",\n  \"calpestarlo\": \"calpest\",\n  \"calpestato\": \"calpest\",\n  \"calpestava\": \"calpest\",\n  \"calpestìo\": \"calpestì\",\n  \"caltagirone\": \"caltagiron\",\n  \"caltanissetta\": \"caltanissett\",\n  \"calunnia\": \"calunn\",\n  \"calunniato\": \"calunn\",\n  \"calvi\": \"calv\",\n  \"calvino\": \"calvin\",\n  \"calvisano\": \"calvis\",\n  \"calvo\": \"calv\",\n  \"calzature\": \"calzatur\",\n  \"calzaturif\": \"calzaturif\",\n  \"calzaturificio\": \"calzaturific\",\n  \"calze\": \"calz\",\n  \"calzia\": \"calz\",\n  \"calzoni\": \"calzon\",\n  \"cam\": \"cam\",\n  \"camar\": \"cam\",\n  \"cambi\": \"camb\",\n  \"cambia\": \"camb\",\n  \"cambiamenti\": \"camb\",\n  \"cambiamento\": \"camb\",\n  \"cambiamo\": \"camb\",\n  \"cambiando\": \"camb\",\n  \"cambiandosi\": \"camb\",\n  \"cambiano\": \"camb\",\n  \"cambiar\": \"camb\",\n  \"cambiare\": \"camb\",\n  \"cambiari\": \"cambiar\",\n  \"cambiarsi\": \"camb\",\n  \"cambiasse\": \"camb\",\n  \"cambiata\": \"camb\",\n  \"cambiate\": \"camb\",\n  \"cambiati\": \"camb\",\n  \"cambiato\": \"camb\",\n  \"cambiava\": \"camb\",\n  \"cambiavano\": \"camb\",\n  \"cambierà\": \"camb\",\n  \"cambierò\": \"camb\",\n  \"cambio\": \"camb\",\n  \"cambiò\": \"camb\",\n  \"cambisti\": \"cambist\",\n  \"cameleonte\": \"cameleont\",\n  \"camera\": \"camer\",\n  \"camerali\": \"cameral\",\n  \"cameramam\": \"cameramam\",\n  \"cameraman\": \"cameraman\",\n  \"cameramen\": \"cameramen\",\n  \"camerata\": \"camer\",\n  \"camere\": \"cam\",\n  \"cameriera\": \"camerier\",\n  \"cameriere\": \"camer\",\n  \"cameriero\": \"camerier\",\n  \"cameroun\": \"cameroun\",\n  \"camfin\": \"camfin\",\n  \"camice\": \"camic\",\n  \"camici\": \"camic\",\n  \"camicia\": \"camic\",\n  \"camicie\": \"camic\",\n  \"camion\": \"camion\",\n  \"camionette\": \"camionett\",\n  \"cammarata\": \"cammar\",\n  \"cammera\": \"cammer\",\n  \"cammin\": \"cammin\",\n  \"cammina\": \"cammin\",\n  \"camminando\": \"cammin\",\n  \"camminano\": \"cammin\",\n  \"camminar\": \"cammin\",\n  \"camminare\": \"cammin\",\n  \"camminarono\": \"cammin\",\n  \"camminasse\": \"cammin\",\n  \"camminata\": \"cammin\",\n  \"camminato\": \"cammin\",\n  \"camminava\": \"cammin\",\n  \"camminavan\": \"camminavan\",\n  \"camminavano\": \"cammin\",\n  \"cammino\": \"cammin\",\n  \"camminò\": \"cammin\",\n  \"camorra\": \"camorr\",\n  \"camorristici\": \"camorrist\",\n  \"campa\": \"camp\",\n  \"campagna\": \"campagn\",\n  \"campagne\": \"campagn\",\n  \"campale\": \"campal\",\n  \"campana\": \"campan\",\n  \"campane\": \"campan\",\n  \"campanelle\": \"campanell\",\n  \"campanelli\": \"campanell\",\n  \"campanello\": \"campanell\",\n  \"campanette\": \"campanett\",\n  \"campani\": \"campan\",\n  \"campania\": \"campan\",\n  \"campanile\": \"campanil\",\n  \"campanili\": \"campanil\",\n  \"campanilistici\": \"campanilist\",\n  \"campar\": \"camp\",\n  \"campare\": \"camp\",\n  \"campati\": \"camp\",\n  \"campeggia\": \"campegg\",\n  \"campeggiava\": \"campegg\",\n  \"camperai\": \"camp\",\n  \"camperebbe\": \"camp\",\n  \"camperemo\": \"camp\",\n  \"campestre\": \"campestr\",\n  \"campi\": \"camp\",\n  \"campiamo\": \"camp\",\n  \"campicelli\": \"campicell\",\n  \"campicello\": \"campicell\",\n  \"campienza\": \"campienz\",\n  \"campilongo\": \"campilong\",\n  \"campionati\": \"campion\",\n  \"campionato\": \"campion\",\n  \"campione\": \"campion\",\n  \"campioni\": \"campion\",\n  \"campo\": \"camp\",\n  \"campobasso\": \"campobass\",\n  \"campolo\": \"campol\",\n  \"can\": \"can\",\n  \"canada\": \"canad\",\n  \"canadese\": \"canades\",\n  \"canadesi\": \"canades\",\n  \"canaglia\": \"canagl\",\n  \"canale\": \"canal\",\n  \"canali\": \"canal\",\n  \"canalizzazioni\": \"canalizz\",\n  \"cancellar\": \"cancell\",\n  \"cancellare\": \"cancell\",\n  \"cancellata\": \"cancell\",\n  \"cancellati\": \"cancell\",\n  \"cancellato\": \"cancell\",\n  \"cancellazione\": \"cancell\",\n  \"cancellazioni\": \"cancell\",\n  \"cancelli\": \"cancell\",\n  \"cancellierato\": \"cancellier\",\n  \"cancelliere\": \"cancell\",\n  \"cancello\": \"cancell\",\n  \"canchero\": \"cancher\",\n  \"cancro\": \"cancr\",\n  \"candela\": \"candel\",\n  \"candele\": \"candel\",\n  \"candidare\": \"candid\",\n  \"candidarsi\": \"candid\",\n  \"candidati\": \"candid\",\n  \"candidato\": \"candid\",\n  \"candidatura\": \"candidatur\",\n  \"candidature\": \"candidatur\",\n  \"candide\": \"candid\",\n  \"candor\": \"candor\",\n  \"candore\": \"candor\",\n  \"candy\": \"candy\",\n  \"cane\": \"can\",\n  \"canè\": \"can\",\n  \"canelli\": \"canell\",\n  \"cangiò\": \"cang\",\n  \"cani\": \"can\",\n  \"canins\": \"canins\",\n  \"canio\": \"can\",\n  \"canizie\": \"caniz\",\n  \"canmore\": \"canmor\",\n  \"canna\": \"cann\",\n  \"cannavaro\": \"cannavar\",\n  \"canne\": \"cann\",\n  \"cannes\": \"cannes\",\n  \"cannistrà\": \"cannistr\",\n  \"cannoncini\": \"cannoncin\",\n  \"cannoncino\": \"cannoncin\",\n  \"cannoniere\": \"cannon\",\n  \"canoe\": \"cano\",\n  \"canoni\": \"canon\",\n  \"canonica\": \"canon\",\n  \"canonici\": \"canon\",\n  \"canonico\": \"canon\",\n  \"canovaccio\": \"canovacc\",\n  \"canta\": \"cant\",\n  \"cantambanchi\": \"cantambanc\",\n  \"cantando\": \"cant\",\n  \"cantante\": \"cantant\",\n  \"cantanti\": \"cantant\",\n  \"cantar\": \"cant\",\n  \"cantare\": \"cant\",\n  \"cantarotti\": \"cantarott\",\n  \"cantarutti\": \"cantarutt\",\n  \"cantautrice\": \"cantautr\",\n  \"cantava\": \"cant\",\n  \"cantavano\": \"cant\",\n  \"canterelli\": \"canterell\",\n  \"canti\": \"cant\",\n  \"cantiere\": \"cant\",\n  \"cantieri\": \"cantier\",\n  \"cantieristica\": \"cantierist\",\n  \"cantilena\": \"cantilen\",\n  \"cantina\": \"cantin\",\n  \"canto\": \"cant\",\n  \"cantona\": \"canton\",\n  \"cantonata\": \"canton\",\n  \"cantonate\": \"canton\",\n  \"cantoni\": \"canton\",\n  \"cantù\": \"cantù\",\n  \"cantucci\": \"cantucc\",\n  \"cantuccino\": \"cantuccin\",\n  \"cantuccio\": \"cantucc\",\n  \"canuti\": \"can\",\n  \"canyon\": \"canyon\",\n  \"canzanella\": \"canzanell\",\n  \"canzonaccia\": \"canzonacc\",\n  \"canzonare\": \"canzon\",\n  \"canzonarlo\": \"canzon\",\n  \"canzonatoria\": \"canzonator\",\n  \"canzonatorie\": \"canzonator\",\n  \"canzonatorio\": \"canzonator\",\n  \"canzonature\": \"canzonatur\",\n  \"canzone\": \"canzon\",\n  \"canzoni\": \"canzon\",\n  \"canzonieri\": \"canzonier\",\n  \"cao\": \"cao\",\n  \"caos\": \"caos\",\n  \"cap\": \"cap\",\n  \"capa\": \"cap\",\n  \"capace\": \"capac\",\n  \"capaci\": \"capac\",\n  \"capacità\": \"capac\",\n  \"capacitata\": \"capacit\",\n  \"capaciterà\": \"capacit\",\n  \"capanna\": \"capann\",\n  \"capanne\": \"capann\",\n  \"capannuccia\": \"capannucc\",\n  \"caparbietà\": \"caparbiet\",\n  \"caparbio\": \"caparb\",\n  \"caparra\": \"caparr\",\n  \"caparrare\": \"caparr\",\n  \"capecchi\": \"capecc\",\n  \"capeggiata\": \"capegg\",\n  \"capelli\": \"capell\",\n  \"capello\": \"capell\",\n  \"capezzale\": \"capezzal\",\n  \"capi\": \"cap\",\n  \"capì\": \"cap\",\n  \"capigliatura\": \"capigliatur\",\n  \"capigliature\": \"capigliatur\",\n  \"capigruppo\": \"capigrupp\",\n  \"capillare\": \"capill\",\n  \"capir\": \"cap\",\n  \"capirà\": \"cap\",\n  \"capiranno\": \"cap\",\n  \"capire\": \"cap\",\n  \"capirlo\": \"cap\",\n  \"capisaldi\": \"capisald\",\n  \"capisce\": \"cap\",\n  \"capisco\": \"cap\",\n  \"capiscon\": \"capiscon\",\n  \"capiscono\": \"cap\",\n  \"capita\": \"cap\",\n  \"capital\": \"capital\",\n  \"capitalcredit\": \"capitalcredit\",\n  \"capitale\": \"capital\",\n  \"capitalfit\": \"capitalfit\",\n  \"capitalfondo\": \"capitalfond\",\n  \"capitalgest\": \"capitalgest\",\n  \"capitali\": \"capital\",\n  \"capitalismo\": \"capital\",\n  \"capitalizzare\": \"capitalizz\",\n  \"capitalizzazione\": \"capitalizz\",\n  \"capitalras\": \"capitalras\",\n  \"capitan\": \"capitan\",\n  \"capitanei\": \"capitane\",\n  \"capitaneria\": \"capitaner\",\n  \"capitanerie\": \"capitaner\",\n  \"capitani\": \"capitan\",\n  \"capitano\": \"capit\",\n  \"capitanucci\": \"capitanucc\",\n  \"capitar\": \"capit\",\n  \"capitare\": \"capit\",\n  \"capitarono\": \"capit\",\n  \"capitasse\": \"capit\",\n  \"capitata\": \"capit\",\n  \"capitate\": \"capit\",\n  \"capitati\": \"capit\",\n  \"capitato\": \"capit\",\n  \"capitava\": \"capit\",\n  \"capite\": \"cap\",\n  \"capiti\": \"cap\",\n  \"capito\": \"cap\",\n  \"capitò\": \"capit\",\n  \"capitoli\": \"capitol\",\n  \"capitolo\": \"capitol\",\n  \"capitombolo\": \"capitombol\",\n  \"capitorno\": \"capitorn\",\n  \"capiva\": \"cap\",\n  \"capivano\": \"cap\",\n  \"capo\": \"cap\",\n  \"capò\": \"cap\",\n  \"capobanda\": \"capoband\",\n  \"capocannoniere\": \"capocannon\",\n  \"capocchie\": \"capocc\",\n  \"capocomici\": \"capocom\",\n  \"capocordata\": \"capocord\",\n  \"capodanno\": \"capodann\",\n  \"capogruppo\": \"capogrupp\",\n  \"capolavoro\": \"capolavor\",\n  \"capolinea\": \"capoline\",\n  \"capolini\": \"capolin\",\n  \"capolino\": \"capolin\",\n  \"capoluogo\": \"capoluog\",\n  \"capopolo\": \"capopol\",\n  \"caporalaccio\": \"caporalacc\",\n  \"caporedattori\": \"caporedattor\",\n  \"capovolgimento\": \"capovolg\",\n  \"capovolti\": \"capovolt\",\n  \"cappa\": \"capp\",\n  \"cappe\": \"capp\",\n  \"cappella\": \"cappell\",\n  \"cappellaccio\": \"cappellacc\",\n  \"cappellano\": \"cappell\",\n  \"cappelletti\": \"cappellett\",\n  \"cappelli\": \"cappell\",\n  \"cappellini\": \"cappellin\",\n  \"cappello\": \"cappell\",\n  \"cappellotto\": \"cappellott\",\n  \"cappioli\": \"cappiol\",\n  \"cappone\": \"cappon\",\n  \"capponi\": \"cappon\",\n  \"cappucci\": \"cappucc\",\n  \"cappuccinesca\": \"cappuccinesc\",\n  \"cappuccinesco\": \"cappuccinesc\",\n  \"cappuccini\": \"cappuccin\",\n  \"cappuccino\": \"cappuccin\",\n  \"cappuccio\": \"cappucc\",\n  \"capra\": \"capr\",\n  \"capre\": \"capr\",\n  \"capricci\": \"capricc\",\n  \"capriccio\": \"capricc\",\n  \"capricciose\": \"capricc\",\n  \"caprioglio\": \"capriogl\",\n  \"captata\": \"capt\",\n  \"capucines\": \"capucines\",\n  \"caputi\": \"cap\",\n  \"car\": \"car\",\n  \"cara\": \"car\",\n  \"carabina\": \"carabin\",\n  \"carabinieri\": \"carabinier\",\n  \"caracas\": \"caracas\",\n  \"caramel\": \"caramel\",\n  \"caramente\": \"car\",\n  \"carati\": \"car\",\n  \"carattere\": \"caratt\",\n  \"caratteri\": \"caratter\",\n  \"caratteriale\": \"caratterial\",\n  \"caratteriali\": \"caratterial\",\n  \"caratteristiche\": \"caratterist\",\n  \"caratterizza\": \"caratterizz\",\n  \"caratterizzata\": \"caratterizz\",\n  \"caratterizzate\": \"caratterizz\",\n  \"caratterizzati\": \"caratterizz\",\n  \"caratterizzato\": \"caratterizz\",\n  \"caravale\": \"caraval\",\n  \"carbide\": \"carbid\",\n  \"carbon\": \"carbon\",\n  \"carbonara\": \"carbonar\",\n  \"carbone\": \"carbon\",\n  \"carboni\": \"carbon\",\n  \"carbonica\": \"carbon\",\n  \"carbonio\": \"carbon\",\n  \"carbotrade\": \"carbotrad\",\n  \"carburante\": \"carbur\",\n  \"carburanti\": \"carbur\",\n  \"carcerazione\": \"carcer\",\n  \"carcere\": \"carc\",\n  \"carceri\": \"carcer\",\n  \"carceriera\": \"carcerier\",\n  \"cardano\": \"card\",\n  \"cardarelli\": \"cardarell\",\n  \"cardenas\": \"cardenas\",\n  \"cardi\": \"card\",\n  \"cardia\": \"card\",\n  \"cardiaca\": \"cardiac\",\n  \"cardiache\": \"cardiac\",\n  \"cardiaci\": \"cardiac\",\n  \"cardillo\": \"cardill\",\n  \"cardinal\": \"cardinal\",\n  \"cardinale\": \"cardinal\",\n  \"cardinali\": \"cardinal\",\n  \"cardine\": \"cardin\",\n  \"cardini\": \"cardin\",\n  \"cardiopatia\": \"cardiopat\",\n  \"cardolus\": \"cardolus\",\n  \"care\": \"car\",\n  \"carente\": \"carent\",\n  \"carenze\": \"carenz\",\n  \"carestia\": \"carest\",\n  \"carestie\": \"carest\",\n  \"carezze\": \"carezz\",\n  \"carezzevole\": \"carezzevol\",\n  \"cari\": \"car\",\n  \"cariatide\": \"cariatid\",\n  \"caribe\": \"carib\",\n  \"carica\": \"caric\",\n  \"carical\": \"carical\",\n  \"carican\": \"carican\",\n  \"caricare\": \"caric\",\n  \"caricaron\": \"caricaron\",\n  \"caricati\": \"caric\",\n  \"caricato\": \"caric\",\n  \"caricatura\": \"caricatur\",\n  \"cariche\": \"caric\",\n  \"carichi\": \"caric\",\n  \"carico\": \"caric\",\n  \"caricola\": \"caricol\",\n  \"cariddi\": \"caridd\",\n  \"carifondo\": \"carifond\",\n  \"carige\": \"carig\",\n  \"cariparma\": \"cariparm\",\n  \"cariplo\": \"caripl\",\n  \"carisbo\": \"carisb\",\n  \"carismatico\": \"carismat\",\n  \"carissimi\": \"carissim\",\n  \"carissimo\": \"carissim\",\n  \"carità\": \"carit\",\n  \"caritas\": \"caritas\",\n  \"caritatevole\": \"caritatevol\",\n  \"carla\": \"carl\",\n  \"carlandrea\": \"carlandre\",\n  \"carlo\": \"carl\",\n  \"carlona\": \"carlon\",\n  \"carlos\": \"carlos\",\n  \"carlotto\": \"carlott\",\n  \"carlucci\": \"carlucc\",\n  \"carmela\": \"carmel\",\n  \"carmelo\": \"carmel\",\n  \"carmen\": \"carmen\",\n  \"carmine\": \"carmin\",\n  \"carnascialesche\": \"carnascialesc\",\n  \"carnasciali\": \"carnascial\",\n  \"carne\": \"carn\",\n  \"carneade\": \"carnead\",\n  \"carnemolla\": \"carnemoll\",\n  \"carnet\": \"carnet\",\n  \"carnevale\": \"carneval\",\n  \"carni\": \"carn\",\n  \"carnica\": \"carnic\",\n  \"carnificine\": \"carnificin\",\n  \"carnpanelli\": \"carnpanell\",\n  \"caro\": \"car\",\n  \"caroccio\": \"carocc\",\n  \"carosi\": \"caros\",\n  \"carovana\": \"carovan\",\n  \"carpi\": \"carp\",\n  \"carpio\": \"carp\",\n  \"carpon\": \"carpon\",\n  \"carpone\": \"carpon\",\n  \"carponi\": \"carpon\",\n  \"carrara\": \"carrar\",\n  \"carrarese\": \"carrares\",\n  \"carraro\": \"carrar\",\n  \"carrera\": \"carrer\",\n  \"carretta\": \"carrett\",\n  \"carri\": \"carr\",\n  \"carriera\": \"carrier\",\n  \"carriere\": \"carr\",\n  \"carrierismo\": \"carrier\",\n  \"carro\": \"carr\",\n  \"carrobi\": \"carrob\",\n  \"carrobio\": \"carrob\",\n  \"carroccio\": \"carrocc\",\n  \"carrocio\": \"carroc\",\n  \"carroll\": \"carroll\",\n  \"carrozza\": \"carrozz\",\n  \"carrozzata\": \"carrozz\",\n  \"carrozze\": \"carrozz\",\n  \"carrozzine\": \"carrozzin\",\n  \"carruba\": \"carrub\",\n  \"carrucole\": \"carrucol\",\n  \"cart\": \"cart\",\n  \"carta\": \"cart\",\n  \"cartagine\": \"cartagin\",\n  \"cartapesta\": \"cartapest\",\n  \"cartapestai\": \"cartapesta\",\n  \"cartarie\": \"cartar\",\n  \"carte\": \"cart\",\n  \"carteggio\": \"cartegg\",\n  \"cartelli\": \"cartell\",\n  \"cartellini\": \"cartellin\",\n  \"cartello\": \"cartell\",\n  \"cartellone\": \"cartellon\",\n  \"carter\": \"carter\",\n  \"cartht\": \"cartht\",\n  \"cartina\": \"cartin\",\n  \"cartografia\": \"cartograf\",\n  \"cartone\": \"carton\",\n  \"cartoni\": \"carton\",\n  \"carulli\": \"carull\",\n  \"cas\": \"cas\",\n  \"casa\": \"cas\",\n  \"casacca\": \"casacc\",\n  \"casaccia\": \"casacc\",\n  \"casadei\": \"casade\",\n  \"casal\": \"casal\",\n  \"casale\": \"casal\",\n  \"casalecchio\": \"casalecc\",\n  \"casali\": \"casal\",\n  \"casalinga\": \"casaling\",\n  \"casalnuovo\": \"casalnuov\",\n  \"casanovà\": \"casanov\",\n  \"casarano\": \"casar\",\n  \"casas\": \"casas\",\n  \"casasco\": \"casasc\",\n  \"casati\": \"cas\",\n  \"casato\": \"cas\",\n  \"casazza\": \"casazz\",\n  \"casca\": \"casc\",\n  \"cascan\": \"cascan\",\n  \"cascano\": \"casc\",\n  \"cascante\": \"cascant\",\n  \"cascanti\": \"cascant\",\n  \"cascare\": \"casc\",\n  \"cascata\": \"casc\",\n  \"cascati\": \"casc\",\n  \"cascavano\": \"casc\",\n  \"caschi\": \"casc\",\n  \"cascia\": \"casc\",\n  \"cascina\": \"cascin\",\n  \"cascine\": \"cascin\",\n  \"cascinotto\": \"cascinott\",\n  \"cascò\": \"casc\",\n  \"cascone\": \"cascon\",\n  \"case\": \"cas\",\n  \"caselecchio\": \"caselecc\",\n  \"casella\": \"casell\",\n  \"caselli\": \"casell\",\n  \"caserma\": \"caserm\",\n  \"casermettè\": \"casermett\",\n  \"casermizzazione\": \"casermizz\",\n  \"caserta\": \"casert\",\n  \"casertano\": \"casert\",\n  \"casetta\": \"casett\",\n  \"cash\": \"cash\",\n  \"casi\": \"cas\",\n  \"casillo\": \"casill\",\n  \"casini\": \"casin\",\n  \"casino\": \"casin\",\n  \"casinò\": \"casin\",\n  \"casipole\": \"casipol\",\n  \"casiraghi\": \"casirag\",\n  \"caso\": \"cas\",\n  \"casolare\": \"casol\",\n  \"casomai\": \"casoma\",\n  \"casonato\": \"cason\",\n  \"casoria\": \"casor\",\n  \"casotto\": \"casott\",\n  \"caspio\": \"casp\",\n  \"cassa\": \"cass\",\n  \"cassaforte\": \"cassafort\",\n  \"cassano\": \"cass\",\n  \"cassavetes\": \"cassavetes\",\n  \"cassazione\": \"cassazion\",\n  \"casse\": \"cass\",\n  \"casseforti\": \"cassefort\",\n  \"cassetta\": \"cassett\",\n  \"cassidy\": \"cassidy\",\n  \"cassiere\": \"cass\",\n  \"cassintegrati\": \"cassintegr\",\n  \"cassintegrazione\": \"cassintegr\",\n  \"cassone\": \"casson\",\n  \"cassoni\": \"casson\",\n  \"cast\": \"cast\",\n  \"castagna\": \"castagn\",\n  \"castagne\": \"castagn\",\n  \"castagneri\": \"castagner\",\n  \"castagneto\": \"castagnet\",\n  \"castagnetti\": \"castagnett\",\n  \"castanova\": \"castanov\",\n  \"castel\": \"castel\",\n  \"castellaccio\": \"castellacc\",\n  \"castellano\": \"castell\",\n  \"castellari\": \"castellar\",\n  \"castelli\": \"castell\",\n  \"castellini\": \"castellin\",\n  \"castello\": \"castell\",\n  \"castelnovo\": \"castelnov\",\n  \"castelvetrano\": \"castelvetr\",\n  \"castiglia\": \"castigl\",\n  \"castiglione\": \"castiglion\",\n  \"castro\": \"castr\",\n  \"castrovillari\": \"castrovillar\",\n  \"castruci\": \"castruc\",\n  \"casuale\": \"casual\",\n  \"casualmente\": \"casual\",\n  \"casucce\": \"casucc\",\n  \"casuccia\": \"casucc\",\n  \"casupole\": \"casupol\",\n  \"cat\": \"cat\",\n  \"cataldo\": \"catald\",\n  \"catalina\": \"catalin\",\n  \"catalogare\": \"catalog\",\n  \"catamarani\": \"catamaran\",\n  \"catanese\": \"catanes\",\n  \"catania\": \"catan\",\n  \"catanzaresi\": \"catanzares\",\n  \"catanzaro\": \"catanzar\",\n  \"catarinussi\": \"catarinuss\",\n  \"catastrofe\": \"catastrof\",\n  \"categoria\": \"categor\",\n  \"categoricamente\": \"categor\",\n  \"categorico\": \"categor\",\n  \"categorie\": \"categor\",\n  \"catelli\": \"catell\",\n  \"catena\": \"caten\",\n  \"catenacciara\": \"catenacciar\",\n  \"catenaccio\": \"catenacc\",\n  \"catene\": \"caten\",\n  \"caterina\": \"caterin\",\n  \"catherine\": \"catherin\",\n  \"catholic\": \"catholic\",\n  \"catilina\": \"catilin\",\n  \"cattaneo\": \"cattane\",\n  \"cattedra\": \"cattedr\",\n  \"cattedrale\": \"cattedral\",\n  \"cattedre\": \"cattedr\",\n  \"cattiva\": \"catt\",\n  \"cattivacci\": \"cattivacc\",\n  \"cattivarvi\": \"cattiv\",\n  \"cattive\": \"cattiv\",\n  \"cattivello\": \"cattivell\",\n  \"cattiveria\": \"cattiver\",\n  \"cattiverie\": \"cattiver\",\n  \"cattivi\": \"catt\",\n  \"cattività\": \"cattiv\",\n  \"cattivo\": \"catt\",\n  \"cattolica\": \"cattol\",\n  \"cattolicesimo\": \"cattolicesim\",\n  \"cattolici\": \"cattol\",\n  \"cattolico\": \"cattol\",\n  \"cattura\": \"cattur\",\n  \"catturaccia\": \"catturacc\",\n  \"catturando\": \"cattur\",\n  \"catturare\": \"cattur\",\n  \"catturati\": \"cattur\",\n  \"catturato\": \"cattur\",\n  \"catture\": \"cattur\",\n  \"catwoman\": \"catwoman\",\n  \"cauare\": \"cau\",\n  \"caucasica\": \"caucas\",\n  \"caucaso\": \"caucas\",\n  \"causa\": \"caus\",\n  \"causale\": \"causal\",\n  \"causando\": \"caus\",\n  \"causare\": \"caus\",\n  \"causarne\": \"caus\",\n  \"causata\": \"caus\",\n  \"causate\": \"caus\",\n  \"causato\": \"caus\",\n  \"cause\": \"caus\",\n  \"cauta\": \"caut\",\n  \"cautela\": \"cautel\",\n  \"cautelare\": \"cautel\",\n  \"cautelativamente\": \"cautel\",\n  \"cautele\": \"cautel\",\n  \"cauto\": \"caut\",\n  \"cav\": \"cav\",\n  \"cava\": \"cav\",\n  \"cavadenti\": \"cavadent\",\n  \"cavagna\": \"cavagn\",\n  \"cavalcanti\": \"cavalc\",\n  \"cavalcatore\": \"cavalc\",\n  \"cavalcatura\": \"cavalcatur\",\n  \"cavalcature\": \"cavalcatur\",\n  \"cavalcava\": \"cavalc\",\n  \"cavalcavia\": \"cavalcav\",\n  \"cavalcioni\": \"cavalcion\",\n  \"cavalier\": \"cavalier\",\n  \"cavaliere\": \"caval\",\n  \"cavalieri\": \"cavalier\",\n  \"cavallaccio\": \"cavallacc\",\n  \"cavalleresca\": \"cavalleresc\",\n  \"cavallereschi\": \"cavalleresc\",\n  \"cavalleria\": \"cavaller\",\n  \"cavalli\": \"cavall\",\n  \"cavallina\": \"cavallin\",\n  \"cavallo\": \"cavall\",\n  \"cavalloni\": \"cavallon\",\n  \"cavando\": \"cav\",\n  \"cavar\": \"cav\",\n  \"cavare\": \"cav\",\n  \"cavarli\": \"cav\",\n  \"cavarmi\": \"cav\",\n  \"cavarne\": \"cav\",\n  \"cavarsene\": \"cav\",\n  \"cavarsi\": \"cav\",\n  \"cavarvi\": \"cav\",\n  \"cavata\": \"cav\",\n  \"cavatappi\": \"cavatapp\",\n  \"cavate\": \"cav\",\n  \"cavaterra\": \"cavaterr\",\n  \"cavatevi\": \"cavat\",\n  \"cavatio\": \"cavat\",\n  \"cavato\": \"cav\",\n  \"cavatogli\": \"cavatogl\",\n  \"caverebbe\": \"cav\",\n  \"cavereste\": \"cav\",\n  \"caverne\": \"cav\",\n  \"caverzan\": \"caverzan\",\n  \"cavi\": \"cav\",\n  \"cavicchio\": \"cavicc\",\n  \"caviglia\": \"cavigl\",\n  \"cavo\": \"cav\",\n  \"cavò\": \"cav\",\n  \"cavolo\": \"cavol\",\n  \"cazin\": \"cazin\",\n  \"cb\": \"cb\",\n  \"cbm\": \"cbm\",\n  \"cc\": \"cc\",\n  \"ccb\": \"ccb\",\n  \"ccd\": \"ccd\",\n  \"cconcordata\": \"cconcord\",\n  \"cct\": \"cct\",\n  \"cd\": \"cd\",\n  \"cda\": \"cda\",\n  \"cdc\": \"cdc\",\n  \"cdi\": \"cdi\",\n  \"cdr\": \"cdr\",\n  \"cdu\": \"cdu\",\n  \"ce\": \"ce\",\n  \"ceca\": \"cec\",\n  \"cecchi\": \"cecc\",\n  \"cecchini\": \"cecchin\",\n  \"cecena\": \"cecen\",\n  \"cecene\": \"cecen\",\n  \"ceceni\": \"cecen\",\n  \"cecenia\": \"cecen\",\n  \"ceceno\": \"cecen\",\n  \"cecere\": \"cec\",\n  \"ceche\": \"cech\",\n  \"cechi\": \"cech\",\n  \"cecilia\": \"cecil\",\n  \"cecina\": \"cecin\",\n  \"cecino\": \"cecin\",\n  \"cecità\": \"cecit\",\n  \"ceco\": \"cec\",\n  \"cedant\": \"cedant\",\n  \"cede\": \"ced\",\n  \"cedé\": \"ced\",\n  \"cedendo\": \"ced\",\n  \"ceder\": \"ceder\",\n  \"cedere\": \"ced\",\n  \"cederlo\": \"ced\",\n  \"cedette\": \"cedett\",\n  \"cedimento\": \"ced\",\n  \"cedola\": \"cedol\",\n  \"cedono\": \"ced\",\n  \"ceduto\": \"ced\",\n  \"cefa\": \"cef\",\n  \"ceffo\": \"ceff\",\n  \"cei\": \"cei\",\n  \"ceko\": \"cek\",\n  \"celate\": \"cel\",\n  \"celeberrima\": \"celeberrim\",\n  \"celeberrimo\": \"celeberrim\",\n  \"celebra\": \"celebr\",\n  \"celebrano\": \"celebr\",\n  \"celebranti\": \"celebr\",\n  \"celebrar\": \"celebr\",\n  \"celebrare\": \"celebr\",\n  \"celebrata\": \"celebr\",\n  \"celebrato\": \"celebr\",\n  \"celebrazione\": \"celebr\",\n  \"celebrazioni\": \"celebr\",\n  \"celebre\": \"celebr\",\n  \"celebrerà\": \"celebr\",\n  \"celebreranno\": \"celebr\",\n  \"celebri\": \"celebr\",\n  \"celebrità\": \"celebr\",\n  \"celeri\": \"celer\",\n  \"celerità\": \"celer\",\n  \"celesti\": \"celest\",\n  \"celia\": \"cel\",\n  \"celibe\": \"celib\",\n  \"celica\": \"celic\",\n  \"celie\": \"cel\",\n  \"cella\": \"cell\",\n  \"cellette\": \"cellett\",\n  \"cellulare\": \"cellul\",\n  \"cellulari\": \"cellular\",\n  \"celtic\": \"celtic\",\n  \"cem\": \"cem\",\n  \"cement\": \"cement\",\n  \"cementeria\": \"cementer\",\n  \"cementerie\": \"cementer\",\n  \"cementi\": \"cement\",\n  \"cementir\": \"cement\",\n  \"cena\": \"cen\",\n  \"cenato\": \"cen\",\n  \"cenci\": \"cenc\",\n  \"cencio\": \"cenc\",\n  \"cenciose\": \"cencios\",\n  \"cencioso\": \"cencios\",\n  \"cene\": \"cen\",\n  \"cenere\": \"cen\",\n  \"ceneri\": \"cener\",\n  \"cenerognola\": \"cenerognol\",\n  \"cenni\": \"cenn\",\n  \"cenno\": \"cenn\",\n  \"cenò\": \"cen\",\n  \"censis\": \"censis\",\n  \"censore\": \"censor\",\n  \"censui\": \"censu\",\n  \"censura\": \"censur\",\n  \"censurando\": \"censur\",\n  \"censure\": \"censur\",\n  \"cent\": \"cent\",\n  \"centenari\": \"centenar\",\n  \"centenario\": \"centenar\",\n  \"center\": \"center\",\n  \"centese\": \"centes\",\n  \"centesimi\": \"centesim\",\n  \"centesimo\": \"centesim\",\n  \"centi\": \"cent\",\n  \"centimetri\": \"centimetr\",\n  \"centimetro\": \"centimetr\",\n  \"centinaia\": \"centinai\",\n  \"centinaio\": \"centinai\",\n  \"cento\": \"cent\",\n  \"centocinquemila\": \"centocinquemil\",\n  \"centofanti\": \"centof\",\n  \"centomila\": \"centomil\",\n  \"central\": \"central\",\n  \"centrale\": \"central\",\n  \"centrali\": \"central\",\n  \"centralismo\": \"central\",\n  \"centralista\": \"central\",\n  \"centralità\": \"central\",\n  \"centralizzata\": \"centralizz\",\n  \"centralizzate\": \"centralizz\",\n  \"centralizzati\": \"centralizz\",\n  \"centralizzato\": \"centralizz\",\n  \"centralizzazione\": \"centralizz\",\n  \"centrata\": \"centr\",\n  \"centrato\": \"centr\",\n  \"centravanti\": \"centrav\",\n  \"centre\": \"centr\",\n  \"centreremo\": \"centr\",\n  \"centri\": \"centr\",\n  \"centrista\": \"centrist\",\n  \"centro\": \"centr\",\n  \"centrò\": \"centr\",\n  \"centrob\": \"centrob\",\n  \"centrocampista\": \"centrocamp\",\n  \"centrocampo\": \"centrocamp\",\n  \"centrodestra\": \"centrodestr\",\n  \"centrosinistra\": \"centrosinistr\",\n  \"cents\": \"cents\",\n  \"cera\": \"cer\",\n  \"ceramiche\": \"ceram\",\n  \"ceramicola\": \"ceramicol\",\n  \"cerbone\": \"cerbon\",\n  \"cerbottane\": \"cerbottan\",\n  \"cerca\": \"cerc\",\n  \"cercala\": \"cercal\",\n  \"cercan\": \"cercan\",\n  \"cercando\": \"cerc\",\n  \"cercano\": \"cerc\",\n  \"cercar\": \"cerc\",\n  \"cercare\": \"cerc\",\n  \"cercargli\": \"cerc\",\n  \"cercarla\": \"cerc\",\n  \"cercarlo\": \"cerc\",\n  \"cercarmi\": \"cerc\",\n  \"cercarne\": \"cerc\",\n  \"cercartela\": \"cerc\",\n  \"cercarvi\": \"cerc\",\n  \"cercasse\": \"cerc\",\n  \"cercassi\": \"cerc\",\n  \"cercata\": \"cerc\",\n  \"cercate\": \"cerc\",\n  \"cercatele\": \"cercatel\",\n  \"cercato\": \"cerc\",\n  \"cercatore\": \"cercator\",\n  \"cercava\": \"cerc\",\n  \"cercavan\": \"cercavan\",\n  \"cercavano\": \"cerc\",\n  \"cercavi\": \"cerc\",\n  \"cercavo\": \"cerc\",\n  \"cercherà\": \"cerc\",\n  \"cercheranno\": \"cerc\",\n  \"cercherebbe\": \"cerc\",\n  \"cercherò\": \"cerc\",\n  \"cerchi\": \"cerc\",\n  \"cerchiamo\": \"cerc\",\n  \"cerchiata\": \"cerc\",\n  \"cerchio\": \"cerc\",\n  \"cerciello\": \"cerciell\",\n  \"cercielo\": \"cerciel\",\n  \"cercle\": \"cercl\",\n  \"cerco\": \"cerc\",\n  \"cercò\": \"cerc\",\n  \"cercolavoro\": \"cercolavor\",\n  \"cereali\": \"cereal\",\n  \"cerealicoli\": \"cerealicol\",\n  \"ceredi\": \"cered\",\n  \"ceri\": \"cer\",\n  \"cerimonia\": \"cerimon\",\n  \"cerimoniale\": \"cerimonial\",\n  \"cerimonie\": \"cerimon\",\n  \"cerimoniosa\": \"cerimon\",\n  \"cerimonioso\": \"cerimon\",\n  \"cerioli\": \"ceriol\",\n  \"cernebantur\": \"cernebantur\",\n  \"cerniere\": \"cern\",\n  \"cernobbio\": \"cernobb\",\n  \"cernomyrdin\": \"cernomyrdin\",\n  \"cernoriecie\": \"cernoriec\",\n  \"cernusco\": \"cernusc\",\n  \"ceronè\": \"ceron\",\n  \"ceroni\": \"ceron\",\n  \"cerri\": \"cerr\",\n  \"cert\": \"cert\",\n  \"certa\": \"cert\",\n  \"certà\": \"cert\",\n  \"certamente\": \"cert\",\n  \"certe\": \"cert\",\n  \"certezza\": \"certezz\",\n  \"certezze\": \"certezz\",\n  \"certi\": \"cert\",\n  \"certificato\": \"certific\",\n  \"certificazione\": \"certif\",\n  \"certissimamente\": \"certissim\",\n  \"certiusque\": \"certiusqu\",\n  \"certo\": \"cert\",\n  \"certuni\": \"certun\",\n  \"ceruleo\": \"cerule\",\n  \"ceruzzi\": \"ceruzz\",\n  \"cervellacci\": \"cervellacc\",\n  \"cervelli\": \"cervell\",\n  \"cervellino\": \"cervellin\",\n  \"cervello\": \"cervell\",\n  \"cervellò\": \"cervell\",\n  \"cervone\": \"cervon\",\n  \"cerziorato\": \"cerzior\",\n  \"cesalpino\": \"cesalpin\",\n  \"cesar\": \"ces\",\n  \"cesare\": \"ces\",\n  \"cesari\": \"cesar\",\n  \"cesen\": \"cesen\",\n  \"cesena\": \"cesen\",\n  \"cespugli\": \"cespugl\",\n  \"cespuglio\": \"cespugl\",\n  \"cessa\": \"cess\",\n  \"cessan\": \"cessan\",\n  \"cessar\": \"cess\",\n  \"cessare\": \"cess\",\n  \"cessaron\": \"cessaron\",\n  \"cessarono\": \"cess\",\n  \"cessasse\": \"cess\",\n  \"cessata\": \"cess\",\n  \"cessate\": \"cess\",\n  \"cessati\": \"cess\",\n  \"cessato\": \"cess\",\n  \"cessava\": \"cess\",\n  \"cessavano\": \"cess\",\n  \"cessazione\": \"cessazion\",\n  \"cesserebbe\": \"cess\",\n  \"cessione\": \"cession\",\n  \"cessò\": \"cess\",\n  \"cetacei\": \"cetace\",\n  \"ceteris\": \"ceteris\",\n  \"ceti\": \"cet\",\n  \"ceto\": \"cet\",\n  \"cfi\": \"cfi\",\n  \"cgia\": \"cgi\",\n  \"cgie\": \"cgi\",\n  \"cgil\": \"cgil\",\n  \"ch\": \"ch\",\n  \"cha\": \"cha\",\n  \"challenge\": \"challeng\",\n  \"chamot\": \"chamot\",\n  \"champagne\": \"champagn\",\n  \"chang\": \"chang\",\n  \"chanony\": \"chanony\",\n  \"chantal\": \"chantal\",\n  \"charasiab\": \"charasiab\",\n  \"chariello\": \"chariell\",\n  \"charleroi\": \"charlero\",\n  \"charles\": \"charles\",\n  \"charron\": \"charron\",\n  \"che\": \"che\",\n  \"ché\": \"chè\",\n  \"chè\": \"chè\",\n  \"check\": \"check\",\n  \"cheltenham\": \"cheltenham\",\n  \"cheriche\": \"cheric\",\n  \"chermisi\": \"chermis\",\n  \"cheta\": \"chet\",\n  \"chetamente\": \"chet\",\n  \"chetare\": \"chet\",\n  \"chetaron\": \"chetaron\",\n  \"chetatevi\": \"chetat\",\n  \"chetava\": \"chet\",\n  \"cheti\": \"chet\",\n  \"cheto\": \"chet\",\n  \"chi\": \"chi\",\n  \"chiacchere\": \"chiacc\",\n  \"chiacchierando\": \"chiacchier\",\n  \"chiacchierar\": \"chiacchier\",\n  \"chiacchierare\": \"chiacchier\",\n  \"chiacchierata\": \"chiacchier\",\n  \"chiacchierato\": \"chiacchier\",\n  \"chiacchiere\": \"chiacc\",\n  \"chiacchierina\": \"chiacchierin\",\n  \"chiacchierìo\": \"chiacchierì\",\n  \"chiacchierone\": \"chiacchieron\",\n  \"chiama\": \"chiam\",\n  \"chiamala\": \"chiamal\",\n  \"chiaman\": \"chiaman\",\n  \"chiamando\": \"chiam\",\n  \"chiamandoli\": \"chiam\",\n  \"chiamandolo\": \"chiam\",\n  \"chiamano\": \"chiam\",\n  \"chiamar\": \"chiam\",\n  \"chiamare\": \"chiam\",\n  \"chiamarli\": \"chiam\",\n  \"chiamarlo\": \"chiam\",\n  \"chiamarsi\": \"chiam\",\n  \"chiamasse\": \"chiam\",\n  \"chiamaste\": \"chiamast\",\n  \"chiamata\": \"chiam\",\n  \"chiamate\": \"chiam\",\n  \"chiamatemi\": \"chiamatem\",\n  \"chiamati\": \"chiam\",\n  \"chiamato\": \"chiam\",\n  \"chiamava\": \"chiam\",\n  \"chiamavan\": \"chiamavan\",\n  \"chiamavano\": \"chiam\",\n  \"chiamavo\": \"chiam\",\n  \"chiamerà\": \"chiam\",\n  \"chiamerò\": \"chiam\",\n  \"chiami\": \"chiam\",\n  \"chiamo\": \"chiam\",\n  \"chiamò\": \"chiam\",\n  \"chiana\": \"chian\",\n  \"chianciano\": \"chianc\",\n  \"chiapas\": \"chiapas\",\n  \"chiapparlo\": \"chiapp\",\n  \"chiappuzzo\": \"chiappuzz\",\n  \"chiara\": \"chiar\",\n  \"chiaramente\": \"chiar\",\n  \"chiare\": \"chi\",\n  \"chiarezza\": \"chiarezz\",\n  \"chiari\": \"chiar\",\n  \"chiariello\": \"chiariell\",\n  \"chiarificazione\": \"chiarif\",\n  \"chiarimenti\": \"chiar\",\n  \"chiarimento\": \"chiar\",\n  \"chiarirci\": \"chiar\",\n  \"chiarire\": \"chiar\",\n  \"chiarirsi\": \"chiar\",\n  \"chiarisce\": \"chiar\",\n  \"chiariscono\": \"chiar\",\n  \"chiarissimi\": \"chiarissim\",\n  \"chiarito\": \"chiar\",\n  \"chiaro\": \"chiar\",\n  \"chiarore\": \"chiaror\",\n  \"chiasso\": \"chiass\",\n  \"chiatta\": \"chiatt\",\n  \"chiavari\": \"chiavar\",\n  \"chiave\": \"chiav\",\n  \"chiavenna\": \"chiavenn\",\n  \"chiavi\": \"chi\",\n  \"chicago\": \"chicag\",\n  \"chicche\": \"chicc\",\n  \"chicchera\": \"chiccher\",\n  \"chicchi\": \"chicc\",\n  \"chidambaram\": \"chidambaram\",\n  \"chieda\": \"chied\",\n  \"chiede\": \"chied\",\n  \"chiedendo\": \"chied\",\n  \"chieder\": \"chieder\",\n  \"chiederà\": \"chied\",\n  \"chiederanno\": \"chied\",\n  \"chiedere\": \"chied\",\n  \"chiederebbe\": \"chied\",\n  \"chiederemo\": \"chied\",\n  \"chiedergli\": \"chied\",\n  \"chiederglielo\": \"chied\",\n  \"chiedergliene\": \"chied\",\n  \"chiederlo\": \"chied\",\n  \"chiederne\": \"chied\",\n  \"chiederò\": \"chied\",\n  \"chiederti\": \"chied\",\n  \"chiedesse\": \"chiedess\",\n  \"chiedessero\": \"chied\",\n  \"chiedessimo\": \"chiedessim\",\n  \"chiedete\": \"chied\",\n  \"chiedeva\": \"chied\",\n  \"chiedevan\": \"chiedevan\",\n  \"chiedevano\": \"chied\",\n  \"chiedevate\": \"chied\",\n  \"chiedevi\": \"chied\",\n  \"chiedevo\": \"chied\",\n  \"chiedi\": \"chied\",\n  \"chiediamo\": \"chied\",\n  \"chiediate\": \"chied\",\n  \"chiedo\": \"chied\",\n  \"chiedono\": \"chied\",\n  \"chiesa\": \"chies\",\n  \"chiese\": \"chies\",\n  \"chiesi\": \"chies\",\n  \"chiesta\": \"chiest\",\n  \"chiesti\": \"chiest\",\n  \"chiesto\": \"chiest\",\n  \"chieti\": \"chiet\",\n  \"chievo\": \"chi\",\n  \"chigi\": \"chig\",\n  \"chiklis\": \"chiklis\",\n  \"chili\": \"chil\",\n  \"chilo\": \"chil\",\n  \"chilogrammi\": \"chilogramm\",\n  \"chilometeri\": \"chilometer\",\n  \"chilometri\": \"chilometr\",\n  \"chilometro\": \"chilometr\",\n  \"chilowattora\": \"chilowattor\",\n  \"chimenti\": \"chiment\",\n  \"chimera\": \"chimer\",\n  \"chimiche\": \"chimic\",\n  \"chimico\": \"chimic\",\n  \"chimienti\": \"chimient\",\n  \"china\": \"chin\",\n  \"chinando\": \"chin\",\n  \"chinandola\": \"chin\",\n  \"chinandosi\": \"chin\",\n  \"chinare\": \"chin\",\n  \"chinarsi\": \"chin\",\n  \"chinàs\": \"chinàs\",\n  \"chinata\": \"chin\",\n  \"chinati\": \"chin\",\n  \"chinato\": \"chin\",\n  \"chinava\": \"chin\",\n  \"chinavano\": \"chin\",\n  \"chino\": \"chin\",\n  \"chinò\": \"chin\",\n  \"chioccar\": \"chiocc\",\n  \"chiocciola\": \"chiocciol\",\n  \"chiodi\": \"chiod\",\n  \"chiodo\": \"chiod\",\n  \"chioma\": \"chiom\",\n  \"chiomati\": \"chiom\",\n  \"chiome\": \"chiom\",\n  \"chiostro\": \"chiostr\",\n  \"chip\": \"chip\",\n  \"chips\": \"chips\",\n  \"chirurghi\": \"chirurg\",\n  \"chirurgia\": \"chirurg\",\n  \"chirurgico\": \"chirurg\",\n  \"chirurgo\": \"chirurg\",\n  \"chissà\": \"chiss\",\n  \"chiti\": \"chit\",\n  \"chiude\": \"chiud\",\n  \"chiudendo\": \"chiud\",\n  \"chiudendosi\": \"chiud\",\n  \"chiuder\": \"chiuder\",\n  \"chiuderanno\": \"chiud\",\n  \"chiudere\": \"chiud\",\n  \"chiuderle\": \"chiud\",\n  \"chiuderlo\": \"chiud\",\n  \"chiudermi\": \"chiud\",\n  \"chiuderne\": \"chiud\",\n  \"chiudersi\": \"chiud\",\n  \"chiudete\": \"chiud\",\n  \"chiudeva\": \"chiud\",\n  \"chiudevano\": \"chiud\",\n  \"chiudiamo\": \"chiud\",\n  \"chiudono\": \"chiud\",\n  \"chiunque\": \"chiunqu\",\n  \"chiusa\": \"chius\",\n  \"chiuse\": \"chius\",\n  \"chiusi\": \"chius\",\n  \"chiuso\": \"chius\",\n  \"chiusura\": \"chiusur\",\n  \"chiusure\": \"chiusur\",\n  \"cho\": \"cho\",\n  \"choc\": \"choc\",\n  \"choiaravalle\": \"choiaravall\",\n  \"chr\": \"chr\",\n  \"chris\": \"chris\",\n  \"christiane\": \"christian\",\n  \"christine\": \"christin\",\n  \"christoph\": \"christoph\",\n  \"christopher\": \"christopher\",\n  \"chronistae\": \"chronista\",\n  \"chul\": \"chul\",\n  \"ci\": \"ci\",\n  \"cia\": \"cia\",\n  \"ciabatta\": \"ciabatt\",\n  \"ciak\": \"ciak\",\n  \"cialtroni\": \"cialtron\",\n  \"ciambella\": \"ciambell\",\n  \"ciampi\": \"ciamp\",\n  \"ciampino\": \"ciampin\",\n  \"ciance\": \"cianc\",\n  \"ciao\": \"cia\",\n  \"ciarlano\": \"ciarl\",\n  \"ciarlare\": \"ciarl\",\n  \"ciarlato\": \"ciarl\",\n  \"ciarle\": \"ciarl\",\n  \"ciarlerà\": \"ciarl\",\n  \"ciarlerebbe\": \"ciarl\",\n  \"ciarlone\": \"ciarlon\",\n  \"ciarloni\": \"ciarlon\",\n  \"ciarpume\": \"ciarpum\",\n  \"ciascheduna\": \"ciaschedun\",\n  \"ciascheduno\": \"ciaschedun\",\n  \"ciascun\": \"ciascun\",\n  \"ciascuna\": \"ciascun\",\n  \"ciascuno\": \"ciascun\",\n  \"cibi\": \"cib\",\n  \"cibiemme\": \"cibiemm\",\n  \"cibo\": \"cib\",\n  \"cicalar\": \"cical\",\n  \"cicalare\": \"cical\",\n  \"cicalìo\": \"cicalì\",\n  \"cicalone\": \"cicalon\",\n  \"cicaloni\": \"cicalon\",\n  \"ciccio\": \"cicc\",\n  \"ciclismo\": \"ciclism\",\n  \"ciclista\": \"ciclist\",\n  \"ciclo\": \"cicl\",\n  \"ciclomotore\": \"ciclomotor\",\n  \"cieca\": \"ciec\",\n  \"cieco\": \"ciec\",\n  \"ciel\": \"ciel\",\n  \"cielo\": \"ciel\",\n  \"cifra\": \"cifr\",\n  \"cifre\": \"cifr\",\n  \"ciga\": \"cig\",\n  \"cigli\": \"cigl\",\n  \"ciglia\": \"cigl\",\n  \"ciglio\": \"cigl\",\n  \"ciglione\": \"ciglion\",\n  \"ciglioni\": \"ciglion\",\n  \"cigna\": \"cign\",\n  \"cigne\": \"cign\",\n  \"cigolìo\": \"cigolì\",\n  \"cigs\": \"cigs\",\n  \"cii\": \"cii\",\n  \"cila\": \"cil\",\n  \"cile\": \"cil\",\n  \"cilena\": \"cilen\",\n  \"ciliegi\": \"cilieg\",\n  \"cilizio\": \"ciliz\",\n  \"cima\": \"cim\",\n  \"cime\": \"cim\",\n  \"cimento\": \"ciment\",\n  \"ciments\": \"ciments\",\n  \"cimitero\": \"cimiter\",\n  \"cina\": \"cin\",\n  \"cinema\": \"cinem\",\n  \"cinematografica\": \"cinematograf\",\n  \"cinematografico\": \"cinematograf\",\n  \"cinematografo\": \"cinematograf\",\n  \"cinematografò\": \"cinematograf\",\n  \"cineoperatore\": \"cineoper\",\n  \"cinese\": \"cines\",\n  \"cingeva\": \"cing\",\n  \"cingoli\": \"cingol\",\n  \"cinicamente\": \"cinic\",\n  \"cinofile\": \"cinofil\",\n  \"cinquant\": \"cinquant\",\n  \"cinquanta\": \"cinquant\",\n  \"cinquantamila\": \"cinquantamil\",\n  \"cinquantatre\": \"cinquantatr\",\n  \"cinquantenario\": \"cinquantenar\",\n  \"cinquantesima\": \"cinquantesim\",\n  \"cinquantesimo\": \"cinquantesim\",\n  \"cinque\": \"cinqu\",\n  \"cinquecento\": \"cinquecent\",\n  \"cinquemila\": \"cinquemil\",\n  \"cinse\": \"cins\",\n  \"cinta\": \"cint\",\n  \"cinti\": \"cint\",\n  \"cinto\": \"cint\",\n  \"cintola\": \"cintol\",\n  \"cintura\": \"cintur\",\n  \"ciò\": \"ciò\",\n  \"cioccarelli\": \"cioccarell\",\n  \"ciocche\": \"ciocc\",\n  \"ciocchetti\": \"ciocchett\",\n  \"ciocchettina\": \"ciocchettin\",\n  \"cioccolata\": \"cioccol\",\n  \"cioccolato\": \"cioccol\",\n  \"cioè\": \"cio\",\n  \"cioffarelli\": \"cioffarell\",\n  \"ciondolar\": \"ciondol\",\n  \"ciondoloni\": \"ciondolon\",\n  \"ciotola\": \"ciotol\",\n  \"ciotole\": \"ciotol\",\n  \"ciottoli\": \"ciottol\",\n  \"ciottoloni\": \"ciottolon\",\n  \"cipe\": \"cip\",\n  \"cipiglio\": \"cipigl\",\n  \"cipro\": \"cipr\",\n  \"cir\": \"cir\",\n  \"circa\": \"circ\",\n  \"circati\": \"circ\",\n  \"circo\": \"circ\",\n  \"circola\": \"circol\",\n  \"circolare\": \"circol\",\n  \"circolari\": \"circolar\",\n  \"circolata\": \"circol\",\n  \"circolate\": \"circol\",\n  \"circolazione\": \"circol\",\n  \"circoli\": \"circol\",\n  \"circolo\": \"circol\",\n  \"circonda\": \"circond\",\n  \"circondare\": \"circond\",\n  \"circondata\": \"circond\",\n  \"circondati\": \"circond\",\n  \"circondato\": \"circond\",\n  \"circondava\": \"circond\",\n  \"circondavano\": \"circond\",\n  \"circonvallazione\": \"circonvall\",\n  \"circonvicini\": \"circonvicin\",\n  \"circonvicino\": \"circonvicin\",\n  \"circoscritta\": \"circoscritt\",\n  \"circoscritte\": \"circoscritt\",\n  \"circospetti\": \"circospett\",\n  \"circospezione\": \"circospezion\",\n  \"circostante\": \"circost\",\n  \"circostanti\": \"circost\",\n  \"circostanza\": \"circost\",\n  \"circostanze\": \"circost\",\n  \"circostanziare\": \"circostanz\",\n  \"circostanziati\": \"circostanz\",\n  \"circuiti\": \"circu\",\n  \"circuito\": \"circu\",\n  \"ciriaco\": \"ciriac\",\n  \"cirio\": \"cir\",\n  \"cirm\": \"cirm\",\n  \"ciro\": \"cir\",\n  \"ciruzzi\": \"ciruzz\",\n  \"cis\": \"cis\",\n  \"cisal\": \"cisal\",\n  \"cisalpino\": \"cisalpin\",\n  \"cises\": \"cises\",\n  \"cisgiordania\": \"cisgiordan\",\n  \"cisl\": \"cisl\",\n  \"cisnal\": \"cisnal\",\n  \"cisp\": \"cisp\",\n  \"cisterne\": \"cist\",\n  \"cita\": \"cit\",\n  \"citando\": \"cit\",\n  \"citano\": \"cit\",\n  \"citare\": \"cit\",\n  \"citarne\": \"cit\",\n  \"citata\": \"cit\",\n  \"citati\": \"cit\",\n  \"citato\": \"cit\",\n  \"citavano\": \"cit\",\n  \"citazioni\": \"citazion\",\n  \"citeremo\": \"cit\",\n  \"citiamo\": \"cit\",\n  \"cito\": \"cit\",\n  \"citta\": \"citt\",\n  \"città\": \"citt\",\n  \"cittadella\": \"cittadell\",\n  \"cittàdi\": \"cittàd\",\n  \"cittadina\": \"cittadin\",\n  \"cittadinanza\": \"cittadin\",\n  \"cittadine\": \"cittadin\",\n  \"cittadini\": \"cittadin\",\n  \"cittadino\": \"cittadin\",\n  \"cittadinò\": \"cittadin\",\n  \"citterio\": \"citter\",\n  \"city\": \"city\",\n  \"ciudad\": \"ciudad\",\n  \"ciuffetti\": \"ciuffett\",\n  \"ciuffetto\": \"ciuffett\",\n  \"ciuffi\": \"ciuff\",\n  \"ciuffo\": \"ciuff\",\n  \"ciurma\": \"ciurm\",\n  \"cives\": \"cives\",\n  \"civetta\": \"civett\",\n  \"civici\": \"civic\",\n  \"civile\": \"civil\",\n  \"civili\": \"civil\",\n  \"civilità\": \"civil\",\n  \"civiltà\": \"civilt\",\n  \"civirani\": \"civiran\",\n  \"civitavecchia\": \"civitavecc\",\n  \"cla\": \"cla\",\n  \"claes\": \"claes\",\n  \"claire\": \"cla\",\n  \"clam\": \"clam\",\n  \"clamore\": \"clamor\",\n  \"clamori\": \"clamor\",\n  \"clamorosa\": \"clamor\",\n  \"clamorosi\": \"clamor\",\n  \"clamoroso\": \"clamor\",\n  \"clan\": \"clan\",\n  \"clandestina\": \"clandestin\",\n  \"clandestinamente\": \"clandestin\",\n  \"clandestino\": \"clandestin\",\n  \"clarin\": \"clarin\",\n  \"clark\": \"clark\",\n  \"classe\": \"class\",\n  \"classi\": \"class\",\n  \"classica\": \"classic\",\n  \"classici\": \"classic\",\n  \"classico\": \"classic\",\n  \"classifica\": \"classif\",\n  \"classificate\": \"classific\",\n  \"classificati\": \"classific\",\n  \"classificato\": \"classific\",\n  \"classifiche\": \"classif\",\n  \"claude\": \"claud\",\n  \"claudia\": \"claud\",\n  \"claudio\": \"claud\",\n  \"claus\": \"claus\",\n  \"claustrale\": \"claustral\",\n  \"clausura\": \"clausur\",\n  \"cle\": \"cle\",\n  \"clemente\": \"clement\",\n  \"clemenza\": \"clemenz\",\n  \"clerici\": \"cleric\",\n  \"clerico\": \"cleric\",\n  \"clericofascisti\": \"clericofasc\",\n  \"clero\": \"cler\",\n  \"clf\": \"clf\",\n  \"cliam\": \"cliam\",\n  \"cliente\": \"client\",\n  \"clientela\": \"clientel\",\n  \"clienti\": \"client\",\n  \"cliff\": \"cliff\",\n  \"clima\": \"clim\",\n  \"climaticamente\": \"climat\",\n  \"climatiche\": \"climat\",\n  \"climatologia\": \"climatolog\",\n  \"climi\": \"clim\",\n  \"clinica\": \"clinic\",\n  \"cliniche\": \"clinic\",\n  \"clinico\": \"clinic\",\n  \"clinton\": \"clinton\",\n  \"cll\": \"cll\",\n  \"cln\": \"cln\",\n  \"clò\": \"clò\",\n  \"clodio\": \"clod\",\n  \"clou\": \"clou\",\n  \"clr\": \"clr\",\n  \"club\": \"club\",\n  \"clusone\": \"cluson\",\n  \"clwyd\": \"clwyd\",\n  \"cmos\": \"cmos\",\n  \"cn\": \"cn\",\n  \"cna\": \"cna\",\n  \"cnt\": \"cnt\",\n  \"co\": \"co\",\n  \"coalizaione\": \"coalizaion\",\n  \"coalizione\": \"coalizion\",\n  \"coalizioni\": \"coalizion\",\n  \"coatta\": \"coatt\",\n  \"cob\": \"cob\",\n  \"coblenza\": \"coblenz\",\n  \"cobra\": \"cobr\",\n  \"cocaina\": \"cocain\",\n  \"cocche\": \"cocc\",\n  \"cocchiere\": \"cocc\",\n  \"cocci\": \"cocc\",\n  \"coccia\": \"cocc\",\n  \"coceva\": \"coc\",\n  \"cochin\": \"cochin\",\n  \"cocuzzoli\": \"cocuzzol\",\n  \"cocuzzolo\": \"cocuzzol\",\n  \"coda\": \"cod\",\n  \"codarde\": \"codard\",\n  \"codazzo\": \"codazz\",\n  \"code\": \"cod\",\n  \"codesta\": \"codest\",\n  \"codeste\": \"codest\",\n  \"codesti\": \"codest\",\n  \"codesto\": \"codest\",\n  \"codice\": \"codic\",\n  \"codignoni\": \"codignon\",\n  \"coe\": \"coe\",\n  \"coefficiente\": \"coefficient\",\n  \"coelestium\": \"coelestium\",\n  \"coerente\": \"coerent\",\n  \"coerentemente\": \"coerent\",\n  \"coerenti\": \"coerent\",\n  \"coerenza\": \"coerenz\",\n  \"coetaneo\": \"coetane\",\n  \"coevi\": \"coev\",\n  \"coferenze\": \"coferent\",\n  \"cofferati\": \"coffer\",\n  \"cofide\": \"cofid\",\n  \"cogenerazione\": \"cogener\",\n  \"coglie\": \"cogl\",\n  \"coglierà\": \"cogl\",\n  \"coglierci\": \"cogl\",\n  \"cogliere\": \"cogl\",\n  \"coglierne\": \"cogl\",\n  \"cognati\": \"cogn\",\n  \"cognatio\": \"cognat\",\n  \"cogne\": \"cogn\",\n  \"cognetex\": \"cognetex\",\n  \"cognizion\": \"cognizion\",\n  \"cognizione\": \"cognizion\",\n  \"cognizioni\": \"cognizion\",\n  \"cognome\": \"cognom\",\n  \"coi\": \"coi\",\n  \"coim\": \"coim\",\n  \"coincide\": \"coincid\",\n  \"coincidenza\": \"coincident\",\n  \"coinciso\": \"coincis\",\n  \"coinvolge\": \"coinvolg\",\n  \"coinvolgerà\": \"coinvolg\",\n  \"coinvolgere\": \"coinvolg\",\n  \"coinvolgimento\": \"coinvolg\",\n  \"coinvolgono\": \"coinvolg\",\n  \"coinvolta\": \"coinvolt\",\n  \"coinvolte\": \"coinvolt\",\n  \"coinvolti\": \"coinvolt\",\n  \"coinvolto\": \"coinvolt\",\n  \"coiro\": \"coir\",\n  \"cois\": \"cois\",\n  \"col\": \"col\",\n  \"colà\": \"col\",\n  \"colabrodo\": \"colabrod\",\n  \"colaiacomo\": \"colaiacom\",\n  \"colalucci\": \"colalucc\",\n  \"colazione\": \"colazion\",\n  \"colbò\": \"colb\",\n  \"colei\": \"cole\",\n  \"colendissimo\": \"colendissim\",\n  \"coleridge\": \"coleridg\",\n  \"colgono\": \"colg\",\n  \"colico\": \"colic\",\n  \"coll\": \"coll\",\n  \"colla\": \"coll\",\n  \"collabora\": \"collabor\",\n  \"collaborando\": \"collabor\",\n  \"collaborare\": \"collabor\",\n  \"collaborato\": \"collabor\",\n  \"collaboratore\": \"collabor\",\n  \"collaboratori\": \"collabor\",\n  \"collaboratrici\": \"collabor\",\n  \"collaborazione\": \"collabor\",\n  \"collaborazioni\": \"collabor\",\n  \"collalto\": \"collalt\",\n  \"collana\": \"collan\",\n  \"collant\": \"collant\",\n  \"collare\": \"coll\",\n  \"collaudo\": \"collaud\",\n  \"colle\": \"coll\",\n  \"colleferro\": \"colleferr\",\n  \"collega\": \"colleg\",\n  \"collegà\": \"colleg\",\n  \"collegabile\": \"colleg\",\n  \"collegamenti\": \"colleg\",\n  \"collegamento\": \"colleg\",\n  \"collegare\": \"colleg\",\n  \"collegata\": \"colleg\",\n  \"collegate\": \"colleg\",\n  \"collegati\": \"colleg\",\n  \"collegato\": \"colleg\",\n  \"collegava\": \"colleg\",\n  \"college\": \"colleg\",\n  \"colleggiale\": \"colleggial\",\n  \"colleggialità\": \"colleggial\",\n  \"collegherà\": \"colleg\",\n  \"colleghi\": \"colleg\",\n  \"collegi\": \"colleg\",\n  \"collegiale\": \"collegial\",\n  \"collegialità\": \"collegial\",\n  \"collegio\": \"colleg\",\n  \"collera\": \"coller\",\n  \"collerico\": \"coller\",\n  \"collettiva\": \"collett\",\n  \"collettività\": \"collett\",\n  \"collettivo\": \"collett\",\n  \"collezionato\": \"collezion\",\n  \"collezionava\": \"collezion\",\n  \"collezione\": \"collezion\",\n  \"collezioni\": \"collezion\",\n  \"colli\": \"coll\",\n  \"colline\": \"collin\",\n  \"collinetta\": \"collinett\",\n  \"collisione\": \"collision\",\n  \"collo\": \"coll\",\n  \"colloca\": \"colloc\",\n  \"collocamenti\": \"colloc\",\n  \"collocamento\": \"colloc\",\n  \"collocandolo\": \"colloc\",\n  \"collocare\": \"colloc\",\n  \"collocarla\": \"colloc\",\n  \"collocarsi\": \"colloc\",\n  \"collocarvi\": \"colloc\",\n  \"collocata\": \"colloc\",\n  \"collocatasi\": \"collocatas\",\n  \"collocate\": \"colloc\",\n  \"collocato\": \"colloc\",\n  \"collocazione\": \"colloc\",\n  \"collocazioni\": \"colloc\",\n  \"collocherebbe\": \"colloc\",\n  \"collochi\": \"colloc\",\n  \"colloqui\": \"colloqu\",\n  \"colloquio\": \"colloqu\",\n  \"colloredo\": \"collored\",\n  \"collusione\": \"collusion\",\n  \"colluttazioni\": \"collutt\",\n  \"colma\": \"colm\",\n  \"colmare\": \"colm\",\n  \"colmata\": \"colm\",\n  \"colme\": \"colm\",\n  \"colmi\": \"colm\",\n  \"colmo\": \"colm\",\n  \"colò\": \"col\",\n  \"colombe\": \"colomb\",\n  \"colombia\": \"colomb\",\n  \"colombiana\": \"colombian\",\n  \"colombiano\": \"colomb\",\n  \"colombo\": \"colomb\",\n  \"colombotti\": \"colombott\",\n  \"colonello\": \"colonell\",\n  \"coloniale\": \"colonial\",\n  \"colonna\": \"colonn\",\n  \"colonne\": \"colonn\",\n  \"colonnello\": \"colonnell\",\n  \"colonnese\": \"colonnes\",\n  \"colono\": \"col\",\n  \"color\": \"color\",\n  \"colorati\": \"color\",\n  \"colore\": \"color\",\n  \"colori\": \"color\",\n  \"colorito\": \"color\",\n  \"colorivano\": \"color\",\n  \"coloro\": \"color\",\n  \"colossi\": \"coloss\",\n  \"colosso\": \"coloss\",\n  \"colpa\": \"colp\",\n  \"colpe\": \"colp\",\n  \"colpendo\": \"colp\",\n  \"colpevol\": \"colpevol\",\n  \"colpevole\": \"colpevol\",\n  \"colpevolè\": \"colpevol\",\n  \"colpevolezza\": \"colpevolezz\",\n  \"colpevoli\": \"colpevol\",\n  \"colpevolizzare\": \"colpevolizz\",\n  \"colpi\": \"colp\",\n  \"colpì\": \"colp\",\n  \"colpisce\": \"colp\",\n  \"colpiscono\": \"colp\",\n  \"colpisse\": \"colpiss\",\n  \"colpita\": \"colp\",\n  \"colpite\": \"colp\",\n  \"colpiti\": \"colp\",\n  \"colpito\": \"colp\",\n  \"colpo\": \"colp\",\n  \"colse\": \"cols\",\n  \"colsero\": \"colser\",\n  \"colta\": \"colt\",\n  \"coltellacci\": \"coltellacc\",\n  \"coltellaccio\": \"coltellacc\",\n  \"coltellata\": \"coltell\",\n  \"coltellate\": \"coltell\",\n  \"coltelli\": \"coltell\",\n  \"coltello\": \"coltell\",\n  \"colti\": \"colt\",\n  \"coltivando\": \"coltiv\",\n  \"coltivare\": \"coltiv\",\n  \"coltivasse\": \"coltiv\",\n  \"coltivata\": \"coltiv\",\n  \"coltivate\": \"colt\",\n  \"coltivati\": \"coltiv\",\n  \"coltivato\": \"coltiv\",\n  \"coltivava\": \"coltiv\",\n  \"coltivazioni\": \"coltiv\",\n  \"colto\": \"colt\",\n  \"coltura\": \"coltur\",\n  \"colui\": \"colu\",\n  \"columbia\": \"columb\",\n  \"com\": \"com\",\n  \"comanda\": \"comand\",\n  \"comandamenti\": \"comand\",\n  \"comandami\": \"comandam\",\n  \"comandan\": \"comandan\",\n  \"comandane\": \"comandan\",\n  \"comandano\": \"comand\",\n  \"comandante\": \"comand\",\n  \"comandanti\": \"comand\",\n  \"comandar\": \"comand\",\n  \"comandare\": \"comand\",\n  \"comandargli\": \"comand\",\n  \"comandarle\": \"comand\",\n  \"comandarne\": \"comand\",\n  \"comandasse\": \"comand\",\n  \"comandassi\": \"comand\",\n  \"comandata\": \"comand\",\n  \"comandato\": \"comand\",\n  \"comandava\": \"comand\",\n  \"comanderai\": \"comand\",\n  \"comanderò\": \"comand\",\n  \"comandi\": \"comand\",\n  \"comando\": \"com\",\n  \"comandò\": \"comand\",\n  \"comar\": \"com\",\n  \"comare\": \"com\",\n  \"comari\": \"comar\",\n  \"comaschi\": \"comasc\",\n  \"comasco\": \"comasc\",\n  \"comau\": \"comau\",\n  \"combaciano\": \"combac\",\n  \"combatta\": \"combatt\",\n  \"combattendo\": \"combatt\",\n  \"combattente\": \"combattent\",\n  \"combattenti\": \"combattent\",\n  \"combatter\": \"combatter\",\n  \"combattere\": \"combatt\",\n  \"combattesse\": \"combattess\",\n  \"combatteva\": \"combatt\",\n  \"combattiemnti\": \"combattiemnt\",\n  \"combattimenti\": \"combatt\",\n  \"combattimento\": \"combatt\",\n  \"combattono\": \"combatt\",\n  \"combattuta\": \"combatt\",\n  \"combinata\": \"combin\",\n  \"combinazione\": \"combin\",\n  \"combinazioni\": \"combin\",\n  \"combineranno\": \"combin\",\n  \"combò\": \"comb\",\n  \"combustibile\": \"combust\",\n  \"combustibili\": \"combust\",\n  \"come\": \"com\",\n  \"comedy\": \"comedy\",\n  \"comencini\": \"comencin\",\n  \"comense\": \"comens\",\n  \"comentitiasque\": \"comentitiasqu\",\n  \"comercio\": \"comerc\",\n  \"cometa\": \"comet\",\n  \"comi\": \"com\",\n  \"comiche\": \"comic\",\n  \"comici\": \"comic\",\n  \"comico\": \"comic\",\n  \"comignoli\": \"comignol\",\n  \"comillas\": \"comillas\",\n  \"comincerà\": \"cominc\",\n  \"comincerann\": \"comincerann\",\n  \"cominceranno\": \"cominc\",\n  \"comincerei\": \"cominc\",\n  \"cominci\": \"cominc\",\n  \"comincia\": \"cominc\",\n  \"cominciamo\": \"cominc\",\n  \"cominciando\": \"cominc\",\n  \"cominciano\": \"cominc\",\n  \"cominciar\": \"cominc\",\n  \"cominciare\": \"cominc\",\n  \"cominciarono\": \"cominc\",\n  \"cominciasse\": \"cominc\",\n  \"cominciata\": \"cominc\",\n  \"cominciate\": \"cominc\",\n  \"cominciati\": \"cominc\",\n  \"cominciato\": \"cominc\",\n  \"cominciava\": \"cominc\",\n  \"cominciavan\": \"cominciavan\",\n  \"cominciavano\": \"cominc\",\n  \"cominciavo\": \"cominc\",\n  \"comincin\": \"comincin\",\n  \"comincio\": \"cominc\",\n  \"cominciò\": \"cominc\",\n  \"cominica\": \"comin\",\n  \"comino\": \"comin\",\n  \"comit\": \"comit\",\n  \"comitati\": \"comit\",\n  \"comitato\": \"comit\",\n  \"comites\": \"comites\",\n  \"comitiva\": \"comit\",\n  \"comitive\": \"comit\",\n  \"comizio\": \"comiz\",\n  \"comma\": \"comm\",\n  \"commando\": \"comm\",\n  \"commedia\": \"commed\",\n  \"commemorano\": \"commemor\",\n  \"commemorare\": \"commemor\",\n  \"commemorazione\": \"commemor\",\n  \"commemorazioni\": \"commemor\",\n  \"commensale\": \"commensal\",\n  \"commensali\": \"commensal\",\n  \"comment\": \"comment\",\n  \"commenta\": \"comment\",\n  \"commentando\": \"comment\",\n  \"commentare\": \"comment\",\n  \"commentate\": \"comment\",\n  \"commentati\": \"comment\",\n  \"commentato\": \"comment\",\n  \"commentatori\": \"comment\",\n  \"commenti\": \"comment\",\n  \"commento\": \"comment\",\n  \"commerci\": \"comm\",\n  \"commerciabile\": \"commerc\",\n  \"commerciale\": \"commercial\",\n  \"commerciali\": \"commercial\",\n  \"commercialisti\": \"commercial\",\n  \"commercializzazione\": \"commercializz\",\n  \"commerciano\": \"commerc\",\n  \"commerciante\": \"commerc\",\n  \"commercianti\": \"commerc\",\n  \"commercio\": \"commerc\",\n  \"commerzbank\": \"commerzbank\",\n  \"commessa\": \"commess\",\n  \"commesse\": \"commess\",\n  \"commessi\": \"commess\",\n  \"commesso\": \"commess\",\n  \"commestibili\": \"commest\",\n  \"commette\": \"commett\",\n  \"commetter\": \"commetter\",\n  \"commettere\": \"commett\",\n  \"commetterne\": \"commett\",\n  \"commettesse\": \"commettess\",\n  \"commetteva\": \"commett\",\n  \"commettevano\": \"commett\",\n  \"commettiamo\": \"commett\",\n  \"commettono\": \"commett\",\n  \"commiato\": \"comm\",\n  \"commilitoni\": \"commiliton\",\n  \"comminare\": \"commin\",\n  \"comminazioni\": \"commin\",\n  \"commisario\": \"commisar\",\n  \"commisione\": \"commision\",\n  \"commisisone\": \"commisison\",\n  \"commissari\": \"commissar\",\n  \"commissariale\": \"commissarial\",\n  \"commissariamento\": \"commissar\",\n  \"commissariati\": \"commissar\",\n  \"commissariato\": \"commissar\",\n  \"commissario\": \"commissar\",\n  \"commission\": \"commission\",\n  \"commissiona\": \"commission\",\n  \"commissionata\": \"commission\",\n  \"commissionato\": \"commission\",\n  \"commissione\": \"commission\",\n  \"commissioni\": \"commission\",\n  \"commistione\": \"commistion\",\n  \"commossa\": \"commoss\",\n  \"commosse\": \"commoss\",\n  \"commossi\": \"commoss\",\n  \"commosso\": \"commoss\",\n  \"commovere\": \"commov\",\n  \"commoversi\": \"commov\",\n  \"commozione\": \"commozion\",\n  \"commozioni\": \"commozion\",\n  \"commutazione\": \"commut\",\n  \"como\": \"com\",\n  \"comoda\": \"comod\",\n  \"comodamente\": \"comod\",\n  \"comodi\": \"comod\",\n  \"comodità\": \"comod\",\n  \"comodo\": \"comod\",\n  \"comp\": \"comp\",\n  \"compadrone\": \"compadron\",\n  \"compagna\": \"compagn\",\n  \"compagne\": \"compagn\",\n  \"compagni\": \"compagn\",\n  \"compagnia\": \"compagn\",\n  \"compagnie\": \"compagn\",\n  \"compagno\": \"compagn\",\n  \"compagnone\": \"compagnon\",\n  \"compagnoni\": \"compagnon\",\n  \"companatico\": \"companat\",\n  \"compania\": \"compan\",\n  \"company\": \"company\",\n  \"compare\": \"comp\",\n  \"comparendo\": \"compar\",\n  \"comparir\": \"compar\",\n  \"comparire\": \"compar\",\n  \"comparirle\": \"compar\",\n  \"comparirvi\": \"compar\",\n  \"comparisce\": \"compar\",\n  \"compariscono\": \"compar\",\n  \"compariva\": \"compar\",\n  \"comparivan\": \"comparivan\",\n  \"comparivano\": \"compar\",\n  \"comparsa\": \"compars\",\n  \"comparse\": \"compars\",\n  \"comparso\": \"compars\",\n  \"comparti\": \"comp\",\n  \"compartimenti\": \"compart\",\n  \"compartimento\": \"compart\",\n  \"comparto\": \"compart\",\n  \"comparve\": \"comparv\",\n  \"compassion\": \"compassion\",\n  \"compassione\": \"compassion\",\n  \"compassionevole\": \"compassionevol\",\n  \"compassionevoli\": \"compassionevol\",\n  \"compatibile\": \"compat\",\n  \"compatibili\": \"compat\",\n  \"compatibilità\": \"compatibil\",\n  \"compatibilmente\": \"compatibil\",\n  \"compatire\": \"compat\",\n  \"compatirlo\": \"compat\",\n  \"compatirsi\": \"compat\",\n  \"compatisco\": \"compat\",\n  \"compatitemi\": \"compatitem\",\n  \"compatriotti\": \"compatriott\",\n  \"compatta\": \"compatt\",\n  \"compattezza\": \"compattezz\",\n  \"compatti\": \"compatt\",\n  \"compegnie\": \"compegn\",\n  \"compendio\": \"compend\",\n  \"compensar\": \"compens\",\n  \"compensarla\": \"compens\",\n  \"compensativo\": \"compens\",\n  \"compensava\": \"compens\",\n  \"compensazione\": \"compens\",\n  \"compenso\": \"compens\",\n  \"comperare\": \"comper\",\n  \"compertum\": \"compertum\",\n  \"compete\": \"comp\",\n  \"competente\": \"competent\",\n  \"competenti\": \"competent\",\n  \"competenza\": \"competent\",\n  \"competenze\": \"competent\",\n  \"competer\": \"competer\",\n  \"competere\": \"compet\",\n  \"competesse\": \"competess\",\n  \"competitito\": \"competit\",\n  \"competitiva\": \"competit\",\n  \"competitività\": \"competit\",\n  \"competitivo\": \"competit\",\n  \"competizione\": \"competizion\",\n  \"competizioni\": \"competizion\",\n  \"compiace\": \"compiac\",\n  \"compiacendosi\": \"compiac\",\n  \"compiacenza\": \"compiacent\",\n  \"compiacenze\": \"compiacent\",\n  \"compiacere\": \"compiac\",\n  \"compiacerla\": \"compiac\",\n  \"compiaceva\": \"compiac\",\n  \"compiacimento\": \"compiac\",\n  \"compiacque\": \"compiacqu\",\n  \"compiangere\": \"compiang\",\n  \"compiere\": \"comp\",\n  \"compilata\": \"compil\",\n  \"compilati\": \"compil\",\n  \"compilaua\": \"compilau\",\n  \"compilazione\": \"compil\",\n  \"compimento\": \"comp\",\n  \"compir\": \"comp\",\n  \"compirà\": \"comp\",\n  \"compire\": \"comp\",\n  \"compisca\": \"comp\",\n  \"compita\": \"comp\",\n  \"compitezza\": \"compitezz\",\n  \"compiti\": \"comp\",\n  \"compito\": \"comp\",\n  \"compiuta\": \"comp\",\n  \"compiutamente\": \"compiut\",\n  \"compiuti\": \"comp\",\n  \"compiuto\": \"comp\",\n  \"complatamente\": \"complat\",\n  \"compleanno\": \"compleann\",\n  \"complementare\": \"complement\",\n  \"complessa\": \"compless\",\n  \"complesse\": \"compless\",\n  \"complessi\": \"compless\",\n  \"complessione\": \"complession\",\n  \"complessità\": \"compless\",\n  \"complessiva\": \"compless\",\n  \"complessivamente\": \"compless\",\n  \"complessive\": \"compless\",\n  \"complessivo\": \"compless\",\n  \"complesso\": \"compless\",\n  \"completa\": \"complet\",\n  \"completamente\": \"complet\",\n  \"completamento\": \"complet\",\n  \"completare\": \"complet\",\n  \"completarla\": \"complet\",\n  \"completata\": \"complet\",\n  \"completato\": \"complet\",\n  \"completavano\": \"complet\",\n  \"completo\": \"complet\",\n  \"complica\": \"complic\",\n  \"complicata\": \"complic\",\n  \"complicate\": \"complic\",\n  \"complice\": \"complic\",\n  \"complici\": \"complic\",\n  \"complicibus\": \"complicibus\",\n  \"complicità\": \"complic\",\n  \"complimentare\": \"compliment\",\n  \"complimentavan\": \"complimentavan\",\n  \"complimenti\": \"compl\",\n  \"complimento\": \"compl\",\n  \"complotto\": \"complott\",\n  \"complures\": \"complures\",\n  \"compone\": \"compon\",\n  \"componente\": \"component\",\n  \"componenti\": \"component\",\n  \"componesse\": \"componess\",\n  \"componeva\": \"compon\",\n  \"componevano\": \"compon\",\n  \"compongono\": \"compong\",\n  \"componi\": \"compon\",\n  \"comporne\": \"comporn\",\n  \"comporranno\": \"comporrann\",\n  \"comporre\": \"comporr\",\n  \"comporta\": \"comport\",\n  \"comportamenti\": \"comport\",\n  \"comportamento\": \"comport\",\n  \"comportanmento\": \"comportanment\",\n  \"comportare\": \"comport\",\n  \"comportassero\": \"comport\",\n  \"comportato\": \"comport\",\n  \"comporti\": \"comport\",\n  \"comportino\": \"comportin\",\n  \"compose\": \"compos\",\n  \"composizione\": \"composizion\",\n  \"composta\": \"compost\",\n  \"composte\": \"compost\",\n  \"compostezza\": \"compostezz\",\n  \"composti\": \"compost\",\n  \"composto\": \"compost\",\n  \"compra\": \"compr\",\n  \"comprando\": \"compr\",\n  \"comprandosi\": \"compr\",\n  \"comprar\": \"compr\",\n  \"comprare\": \"compr\",\n  \"comprarle\": \"compr\",\n  \"comprarli\": \"compr\",\n  \"comprarlo\": \"compr\",\n  \"comprarne\": \"compr\",\n  \"comprarsi\": \"compr\",\n  \"comprassero\": \"compr\",\n  \"comprate\": \"compr\",\n  \"comprato\": \"compr\",\n  \"compratore\": \"comprator\",\n  \"compratori\": \"comprator\",\n  \"compravano\": \"compr\",\n  \"compre\": \"compr\",\n  \"comprenda\": \"compr\",\n  \"comprende\": \"compr\",\n  \"comprenderà\": \"comprend\",\n  \"comprendere\": \"comprend\",\n  \"comprendiamo\": \"comprend\",\n  \"comprendo\": \"compr\",\n  \"comprendono\": \"comprend\",\n  \"comprensione\": \"comprension\",\n  \"comprensiva\": \"comprens\",\n  \"comprensivi\": \"comprens\",\n  \"comprerà\": \"compr\",\n  \"comprerebbero\": \"compr\",\n  \"compresa\": \"compres\",\n  \"comprese\": \"compres\",\n  \"compresero\": \"compreser\",\n  \"compresi\": \"compres\",\n  \"compreso\": \"compres\",\n  \"compressa\": \"compress\",\n  \"compresse\": \"compress\",\n  \"compresso\": \"compress\",\n  \"compri\": \"compr\",\n  \"comprimere\": \"comprim\",\n  \"compromesse\": \"compromess\",\n  \"compromesso\": \"compromess\",\n  \"comprometere\": \"compromet\",\n  \"compromettere\": \"compromett\",\n  \"compromettersi\": \"compromett\",\n  \"compromissione\": \"compromission\",\n  \"comptetitive\": \"comptetit\",\n  \"compunta\": \"compunt\",\n  \"compunto\": \"compunt\",\n  \"compunzione\": \"compunzion\",\n  \"computer\": \"computer\",\n  \"comu\": \"comu\",\n  \"comunale\": \"comunal\",\n  \"comunali\": \"comunal\",\n  \"comune\": \"comun\",\n  \"comunemente\": \"comun\",\n  \"comuni\": \"comun\",\n  \"comunica\": \"comun\",\n  \"comunicare\": \"comunic\",\n  \"comunicargli\": \"comunic\",\n  \"comunicarle\": \"comunic\",\n  \"comunicata\": \"comunic\",\n  \"comunicate\": \"comunic\",\n  \"comunicati\": \"comunic\",\n  \"comunicatigli\": \"comunicatigl\",\n  \"comunicativo\": \"comun\",\n  \"comunicato\": \"comunic\",\n  \"comunicavano\": \"comunic\",\n  \"comunicazione\": \"comun\",\n  \"comunicazioni\": \"comun\",\n  \"comunicò\": \"comunic\",\n  \"comunismo\": \"comun\",\n  \"comunista\": \"comun\",\n  \"comuniste\": \"comun\",\n  \"comunisti\": \"comun\",\n  \"comunità\": \"comun\",\n  \"comunitari\": \"comunitar\",\n  \"comunitaria\": \"comunitar\",\n  \"comunitarie\": \"comunitar\",\n  \"comunitario\": \"comunitar\",\n  \"comunque\": \"comunqu\",\n  \"comuntiario\": \"comuntiar\",\n  \"comuque\": \"comuqu\",\n  \"con\": \"con\",\n  \"conai\": \"cona\",\n  \"conakry\": \"conakry\",\n  \"conan\": \"conan\",\n  \"conca\": \"conc\",\n  \"concatenata\": \"concaten\",\n  \"concatenazione\": \"concaten\",\n  \"concede\": \"conced\",\n  \"concedendo\": \"conced\",\n  \"conceder\": \"conceder\",\n  \"concederà\": \"conced\",\n  \"concedere\": \"conced\",\n  \"concedergli\": \"conced\",\n  \"concedete\": \"conced\",\n  \"concedetegli\": \"concedetegl\",\n  \"concedo\": \"conced\",\n  \"concento\": \"concent\",\n  \"concentramenti\": \"concentr\",\n  \"concentramento\": \"concentr\",\n  \"concentrandosi\": \"concentr\",\n  \"concentrano\": \"concentr\",\n  \"concentrarci\": \"concentr\",\n  \"concentrare\": \"concentr\",\n  \"concentrarsi\": \"concentr\",\n  \"concentrata\": \"concentr\",\n  \"concentrate\": \"concentr\",\n  \"concentratè\": \"concentrat\",\n  \"concentrati\": \"concentr\",\n  \"concentrazione\": \"concentr\",\n  \"concentrazioni\": \"concentr\",\n  \"concenzione\": \"concenzion\",\n  \"concepire\": \"concep\",\n  \"concepirsi\": \"concep\",\n  \"concepita\": \"concep\",\n  \"concepite\": \"concep\",\n  \"concepiva\": \"concep\",\n  \"concerne\": \"conc\",\n  \"concernente\": \"concernent\",\n  \"concernenti\": \"concernent\",\n  \"concertar\": \"concert\",\n  \"concertare\": \"concert\",\n  \"concertaron\": \"concertaron\",\n  \"concertarono\": \"concert\",\n  \"concertarsi\": \"concert\",\n  \"concertata\": \"concert\",\n  \"concertato\": \"concert\",\n  \"concerti\": \"conc\",\n  \"concerto\": \"concert\",\n  \"concertò\": \"concert\",\n  \"concessa\": \"concess\",\n  \"concesse\": \"concess\",\n  \"concessi\": \"concess\",\n  \"concessionari\": \"concessionar\",\n  \"concessionarie\": \"concessionar\",\n  \"concessionario\": \"concessionar\",\n  \"concessione\": \"concession\",\n  \"concessioni\": \"concession\",\n  \"concesso\": \"concess\",\n  \"concetti\": \"concett\",\n  \"concettini\": \"concettin\",\n  \"concetto\": \"concett\",\n  \"concezione\": \"concezion\",\n  \"conchiglie\": \"conchigl\",\n  \"conchiude\": \"conchiud\",\n  \"conchiudere\": \"conchiud\",\n  \"concian\": \"concian\",\n  \"conciato\": \"conc\",\n  \"concigliarglieli\": \"concigl\",\n  \"conciliare\": \"concil\",\n  \"conciliari\": \"conciliar\",\n  \"conciliava\": \"concil\",\n  \"conciliazionè\": \"conciliazion\",\n  \"concio\": \"conc\",\n  \"conciò\": \"conc\",\n  \"conciso\": \"concis\",\n  \"concitarsi\": \"concit\",\n  \"concitata\": \"concit\",\n  \"concitato\": \"concit\",\n  \"concittadina\": \"concittadin\",\n  \"conclamati\": \"conclam\",\n  \"conclavi\": \"concl\",\n  \"concluda\": \"conclud\",\n  \"conclude\": \"conclud\",\n  \"concludendo\": \"conclud\",\n  \"concludenti\": \"concludent\",\n  \"concluder\": \"concluder\",\n  \"concluderà\": \"conclud\",\n  \"concludere\": \"conclud\",\n  \"concludeva\": \"conclud\",\n  \"concludon\": \"concludon\",\n  \"concludono\": \"conclud\",\n  \"conclusa\": \"conclus\",\n  \"conclusasi\": \"conclusas\",\n  \"concluse\": \"conclus\",\n  \"conclusero\": \"concluser\",\n  \"conclusesi\": \"concluses\",\n  \"conclusi\": \"conclus\",\n  \"conclusione\": \"conclusion\",\n  \"conclusioni\": \"conclusion\",\n  \"conclusisi\": \"conclusis\",\n  \"conclusiva\": \"conclus\",\n  \"conclusivo\": \"conclus\",\n  \"concluso\": \"conclus\",\n  \"concomitanza\": \"concomit\",\n  \"concordando\": \"concord\",\n  \"concordano\": \"concord\",\n  \"concordare\": \"concord\",\n  \"concordata\": \"concord\",\n  \"concordate\": \"concord\",\n  \"concordati\": \"concord\",\n  \"concordato\": \"concord\",\n  \"concordi\": \"concord\",\n  \"concordiamo\": \"concord\",\n  \"concorrendo\": \"concorr\",\n  \"concorrente\": \"concorrent\",\n  \"concorrenti\": \"concorrent\",\n  \"concorrenza\": \"concorrent\",\n  \"concorrenziale\": \"concorrenzial\",\n  \"concorrenzialità\": \"concorrenzial\",\n  \"concorrere\": \"concorr\",\n  \"concorreva\": \"concorr\",\n  \"concorsero\": \"concorser\",\n  \"concorsi\": \"concors\",\n  \"concorso\": \"concors\",\n  \"concorsuale\": \"concorsual\",\n  \"concreta\": \"concret\",\n  \"concretament\": \"concretament\",\n  \"concretamente\": \"concret\",\n  \"concrete\": \"concr\",\n  \"concreti\": \"concret\",\n  \"concretizzare\": \"concretizz\",\n  \"concretizzato\": \"concretizz\",\n  \"concretizzazione\": \"concretizz\",\n  \"concretizzerà\": \"concretizz\",\n  \"concreto\": \"concret\",\n  \"concussione\": \"concussion\",\n  \"concussioni\": \"concussion\",\n  \"cond\": \"cond\",\n  \"condanna\": \"condann\",\n  \"condannare\": \"condann\",\n  \"condannarmi\": \"condann\",\n  \"condannata\": \"condann\",\n  \"condannati\": \"condann\",\n  \"condannato\": \"condann\",\n  \"condanne\": \"condann\",\n  \"condannerebbe\": \"condann\",\n  \"conde\": \"cond\",\n  \"condé\": \"cond\",\n  \"condensato\": \"condens\",\n  \"condicio\": \"condic\",\n  \"condiciò\": \"condic\",\n  \"condirettore\": \"condirettor\",\n  \"condiscendente\": \"condiscendent\",\n  \"condiscendenza\": \"condiscendent\",\n  \"condiscendere\": \"condiscend\",\n  \"condita\": \"cond\",\n  \"condite\": \"cond\",\n  \"conditi\": \"cond\",\n  \"conditio\": \"condit\",\n  \"condivide\": \"condivid\",\n  \"condivideranno\": \"condivid\",\n  \"condivido\": \"condivid\",\n  \"condivisa\": \"condivis\",\n  \"condivise\": \"condivis\",\n  \"condiviso\": \"condivis\",\n  \"condizion\": \"condizion\",\n  \"condiziona\": \"condizion\",\n  \"condizionante\": \"condizion\",\n  \"condizionare\": \"condizion\",\n  \"condizionarla\": \"condizion\",\n  \"condizionata\": \"condizion\",\n  \"condizionati\": \"condizion\",\n  \"condizionato\": \"condizion\",\n  \"condizione\": \"condizion\",\n  \"condizioni\": \"condizion\",\n  \"condoglianze\": \"condogl\",\n  \"condolersi\": \"condol\",\n  \"condoluto\": \"condol\",\n  \"condominio\": \"condomin\",\n  \"condono\": \"cond\",\n  \"condor\": \"condor\",\n  \"condotta\": \"condott\",\n  \"condotte\": \"condott\",\n  \"condotti\": \"condott\",\n  \"condottiere\": \"condott\",\n  \"condottieri\": \"condottier\",\n  \"condottiero\": \"condottier\",\n  \"condotto\": \"condott\",\n  \"conduca\": \"conduc\",\n  \"conduce\": \"conduc\",\n  \"conducendo\": \"conduc\",\n  \"conducendosi\": \"conduc\",\n  \"conducesse\": \"conducess\",\n  \"conducete\": \"conduc\",\n  \"conduceva\": \"conduc\",\n  \"conducevan\": \"conducevan\",\n  \"conducimi\": \"conducim\",\n  \"conduco\": \"conduc\",\n  \"conducono\": \"conduc\",\n  \"condur\": \"condur\",\n  \"condurla\": \"condurl\",\n  \"condurli\": \"condurl\",\n  \"condurlo\": \"condurl\",\n  \"condurmi\": \"condurm\",\n  \"condurne\": \"condurn\",\n  \"condurrà\": \"condurr\",\n  \"condurrai\": \"condurra\",\n  \"condurre\": \"condurr\",\n  \"condurrebbero\": \"condurrebber\",\n  \"condurremo\": \"condurrem\",\n  \"condurrò\": \"condurr\",\n  \"condursi\": \"condurs\",\n  \"condurvi\": \"condurv\",\n  \"condusse\": \"conduss\",\n  \"conduttore\": \"conduttor\",\n  \"conduttori\": \"conduttor\",\n  \"conduzione\": \"conduzion\",\n  \"conegliano\": \"conegl\",\n  \"conf\": \"conf\",\n  \"confapi\": \"confap\",\n  \"confartigianato\": \"confartigian\",\n  \"confcooperative\": \"confcooper\",\n  \"confederale\": \"confederal\",\n  \"confederali\": \"confederal\",\n  \"confederalismo\": \"confederal\",\n  \"confederazione\": \"confeder\",\n  \"confedilizia\": \"confediliz\",\n  \"conferenza\": \"conferent\",\n  \"conferenze\": \"conferent\",\n  \"conferì\": \"confer\",\n  \"conferimento\": \"confer\",\n  \"conferire\": \"confer\",\n  \"conferito\": \"confer\",\n  \"conferitogli\": \"conferitogl\",\n  \"conferma\": \"conferm\",\n  \"confermando\": \"conferm\",\n  \"confermandosi\": \"conferm\",\n  \"confermano\": \"conferm\",\n  \"confermare\": \"conferm\",\n  \"confermarla\": \"conferm\",\n  \"confermarlo\": \"conferm\",\n  \"confermarsi\": \"conferm\",\n  \"confermata\": \"conferm\",\n  \"confermati\": \"conferm\",\n  \"confermato\": \"conferm\",\n  \"confermava\": \"conferm\",\n  \"conferme\": \"conferm\",\n  \"confermerà\": \"conferm\",\n  \"confermi\": \"conf\",\n  \"confermo\": \"conferm\",\n  \"confermò\": \"conferm\",\n  \"confessa\": \"confess\",\n  \"confessar\": \"confess\",\n  \"confessare\": \"confess\",\n  \"confessarla\": \"confess\",\n  \"confessarle\": \"confess\",\n  \"confessarmi\": \"confess\",\n  \"confessarsi\": \"confess\",\n  \"confessata\": \"confess\",\n  \"confessato\": \"confess\",\n  \"confessava\": \"confess\",\n  \"confessi\": \"confess\",\n  \"confessiate\": \"confess\",\n  \"confessione\": \"confession\",\n  \"confessioni\": \"confession\",\n  \"confesso\": \"confess\",\n  \"confessore\": \"confessor\",\n  \"confessori\": \"confessor\",\n  \"confetti\": \"confett\",\n  \"confezionamento\": \"confezion\",\n  \"confezionano\": \"confezion\",\n  \"confezioni\": \"confezion\",\n  \"conficcata\": \"conficc\",\n  \"conficique\": \"conficiqu\",\n  \"confida\": \"confid\",\n  \"confidano\": \"confid\",\n  \"confidare\": \"confid\",\n  \"confidarsi\": \"confid\",\n  \"confidarvi\": \"confid\",\n  \"confidate\": \"confid\",\n  \"confidati\": \"confid\",\n  \"confidato\": \"confid\",\n  \"confidavano\": \"confid\",\n  \"confidente\": \"confident\",\n  \"confidenti\": \"confident\",\n  \"confidenza\": \"confident\",\n  \"confidenze\": \"confident\",\n  \"confidi\": \"confid\",\n  \"confido\": \"confid\",\n  \"configurare\": \"configur\",\n  \"configurerebbe\": \"configur\",\n  \"confina\": \"confin\",\n  \"confinante\": \"confin\",\n  \"confinanti\": \"confin\",\n  \"confinarie\": \"confinar\",\n  \"confinata\": \"confin\",\n  \"confinate\": \"confin\",\n  \"confindustria\": \"confindustr\",\n  \"confine\": \"confin\",\n  \"confini\": \"confin\",\n  \"confirmata\": \"confirm\",\n  \"confisca\": \"conf\",\n  \"conflitti\": \"conflitt\",\n  \"conflitto\": \"conflitt\",\n  \"conflittualità\": \"conflittual\",\n  \"confluente\": \"confluent\",\n  \"confluenza\": \"confluenz\",\n  \"confluiscano\": \"conflu\",\n  \"confluiti\": \"conflu\",\n  \"confonde\": \"confond\",\n  \"confondendo\": \"confond\",\n  \"confonder\": \"confonder\",\n  \"confondere\": \"confond\",\n  \"confondergli\": \"confond\",\n  \"confondermi\": \"confond\",\n  \"confondersi\": \"confond\",\n  \"confondessimo\": \"confondessim\",\n  \"confondeva\": \"confond\",\n  \"confondevano\": \"confond\",\n  \"confondono\": \"confond\",\n  \"conformarci\": \"conform\",\n  \"conformarsi\": \"conform\",\n  \"conforme\": \"conform\",\n  \"conformemente\": \"conform\",\n  \"conformi\": \"conform\",\n  \"conformità\": \"conform\",\n  \"confortando\": \"confort\",\n  \"confortante\": \"confort\",\n  \"confortarla\": \"confort\",\n  \"confortava\": \"confort\",\n  \"conforti\": \"confort\",\n  \"conforto\": \"confort\",\n  \"confratelli\": \"confratell\",\n  \"confratello\": \"confratell\",\n  \"confraternite\": \"confratern\",\n  \"confrontando\": \"confront\",\n  \"confrontano\": \"confront\",\n  \"confrontare\": \"confront\",\n  \"confrontarsi\": \"confront\",\n  \"confrontata\": \"confront\",\n  \"confronti\": \"confront\",\n  \"confrontino\": \"confrontin\",\n  \"confronto\": \"confront\",\n  \"confrontò\": \"confront\",\n  \"confsal\": \"confsal\",\n  \"confusa\": \"confus\",\n  \"confusamente\": \"confus\",\n  \"confuse\": \"confus\",\n  \"confusetto\": \"confusett\",\n  \"confusi\": \"confus\",\n  \"confusion\": \"confusion\",\n  \"confusionaria\": \"confusionar\",\n  \"confusione\": \"confusion\",\n  \"confusioni\": \"confusion\",\n  \"confuso\": \"confus\",\n  \"congedandolo\": \"conged\",\n  \"congedare\": \"conged\",\n  \"congedava\": \"conged\",\n  \"congedi\": \"conged\",\n  \"congedo\": \"conged\",\n  \"congegnate\": \"congegn\",\n  \"congegni\": \"congegn\",\n  \"congelando\": \"congel\",\n  \"congelare\": \"congel\",\n  \"congestione\": \"congestion\",\n  \"congettura\": \"congettur\",\n  \"congetturali\": \"congettural\",\n  \"congetturando\": \"congettur\",\n  \"congetturarlo\": \"congettur\",\n  \"congetturato\": \"congettur\",\n  \"congetture\": \"congettur\",\n  \"congetturò\": \"congettur\",\n  \"congiontione\": \"congiontion\",\n  \"congiunge\": \"congiung\",\n  \"congiuntamente\": \"congiunt\",\n  \"congiunte\": \"congiunt\",\n  \"congiunti\": \"congiunt\",\n  \"congiunto\": \"congiunt\",\n  \"congiuntura\": \"congiuntur\",\n  \"congiunturale\": \"congiuntural\",\n  \"congiunzione\": \"congiunzion\",\n  \"congiunzioni\": \"congiunzion\",\n  \"congiura\": \"congiur\",\n  \"congiurare\": \"congiur\",\n  \"congiurata\": \"congiur\",\n  \"congiurate\": \"congiur\",\n  \"congolese\": \"congoles\",\n  \"congratularsi\": \"congratul\",\n  \"congratulato\": \"congratul\",\n  \"congratulava\": \"congratul\",\n  \"congratulazione\": \"congratul\",\n  \"congratulazioni\": \"congratul\",\n  \"congratulò\": \"congratul\",\n  \"congregati\": \"congreg\",\n  \"congressi\": \"congress\",\n  \"congressista\": \"congress\",\n  \"congressisti\": \"congress\",\n  \"congresso\": \"congress\",\n  \"congressuale\": \"congressual\",\n  \"congressuali\": \"congressual\",\n  \"congrui\": \"congru\",\n  \"congruo\": \"congru\",\n  \"coni\": \"con\",\n  \"coniate\": \"con\",\n  \"coniato\": \"con\",\n  \"coniglietta\": \"conigliett\",\n  \"conigliette\": \"conigliett\",\n  \"coninori\": \"coninor\",\n  \"conio\": \"con\",\n  \"coniugare\": \"coniug\",\n  \"coniugi\": \"coniug\",\n  \"conna\": \"conn\",\n  \"connazionale\": \"connazional\",\n  \"connazionali\": \"connazional\",\n  \"connecticut\": \"connecticut\",\n  \"connery\": \"connery\",\n  \"connessi\": \"conness\",\n  \"connessione\": \"connession\",\n  \"connesso\": \"conness\",\n  \"connettere\": \"connett\",\n  \"connettesse\": \"connettess\",\n  \"connivenza\": \"connivent\",\n  \"connotazione\": \"connot\",\n  \"cono\": \"con\",\n  \"conobbe\": \"conobb\",\n  \"conosca\": \"conosc\",\n  \"conosce\": \"conosc\",\n  \"conoscendo\": \"conosc\",\n  \"conoscente\": \"conoscent\",\n  \"conoscenti\": \"conoscent\",\n  \"conoscenza\": \"conoscent\",\n  \"conoscenze\": \"conoscent\",\n  \"conoscer\": \"conoscer\",\n  \"conoscerà\": \"conosc\",\n  \"conosceranno\": \"conosc\",\n  \"conoscere\": \"conosc\",\n  \"conoscerlo\": \"conosc\",\n  \"conoscerò\": \"conosc\",\n  \"conoscersi\": \"conosc\",\n  \"conoscervi\": \"conosc\",\n  \"conoscesse\": \"conoscess\",\n  \"conoscessero\": \"conosc\",\n  \"conoscessi\": \"conoscess\",\n  \"conoscete\": \"conosc\",\n  \"conosceva\": \"conosc\",\n  \"conoscevan\": \"conoscevan\",\n  \"conoscevano\": \"conosc\",\n  \"conosci\": \"conosc\",\n  \"conosciamo\": \"conosc\",\n  \"conoscitiva\": \"conoscit\",\n  \"conosciuta\": \"conosc\",\n  \"conosciute\": \"conosc\",\n  \"conosciuti\": \"conosc\",\n  \"conosciuto\": \"conosc\",\n  \"conosco\": \"conosc\",\n  \"conoscono\": \"conosc\",\n  \"conquista\": \"conquist\",\n  \"conquistando\": \"conquist\",\n  \"conquistare\": \"conquist\",\n  \"conquistarsi\": \"conquist\",\n  \"conquistata\": \"conquist\",\n  \"conquistati\": \"conquist\",\n  \"conquistato\": \"conquist\",\n  \"conquistatore\": \"conquist\",\n  \"conquistatori\": \"conquist\",\n  \"conquiste\": \"conquist\",\n  \"conquisteremo\": \"conquist\",\n  \"conquisti\": \"conquist\",\n  \"conquistino\": \"conquistin\",\n  \"consacrata\": \"consacr\",\n  \"consacrazione\": \"consacr\",\n  \"consapevole\": \"consapevol\",\n  \"consapevolezza\": \"consapevolezz\",\n  \"consapevolmente\": \"consapevol\",\n  \"consci\": \"consc\",\n  \"consecutiva\": \"consecut\",\n  \"consecutive\": \"consecut\",\n  \"consecutivi\": \"consecut\",\n  \"consecutivo\": \"consecut\",\n  \"consegna\": \"consegn\",\n  \"consegnando\": \"consegn\",\n  \"consegnano\": \"consegn\",\n  \"consegnar\": \"consegn\",\n  \"consegnare\": \"consegn\",\n  \"consegnarle\": \"consegn\",\n  \"consegnarlo\": \"consegn\",\n  \"consegnata\": \"consegn\",\n  \"consegnate\": \"consegn\",\n  \"consegnati\": \"consegn\",\n  \"consegnato\": \"consegn\",\n  \"consegnerò\": \"consegn\",\n  \"consegnò\": \"consegn\",\n  \"consegnuenza\": \"consegnuent\",\n  \"conseguente\": \"conseguent\",\n  \"conseguentemente\": \"conseguent\",\n  \"conseguenza\": \"conseguent\",\n  \"conseguenze\": \"conseguent\",\n  \"conseguimento\": \"consegu\",\n  \"conseguire\": \"consegu\",\n  \"conseguiti\": \"consegu\",\n  \"conseguito\": \"consegu\",\n  \"consensi\": \"consens\",\n  \"consenso\": \"consens\",\n  \"consenta\": \"consent\",\n  \"consentanei\": \"consentane\",\n  \"consentaneo\": \"consentane\",\n  \"consentano\": \"consent\",\n  \"consente\": \"consent\",\n  \"consentirà\": \"consent\",\n  \"consentiranno\": \"consent\",\n  \"consentire\": \"consent\",\n  \"consentirebbe\": \"consent\",\n  \"consentita\": \"consent\",\n  \"consentiti\": \"consent\",\n  \"consentito\": \"consent\",\n  \"consentivano\": \"consent\",\n  \"consentono\": \"consent\",\n  \"conserte\": \"consert\",\n  \"conserva\": \"conserv\",\n  \"conservano\": \"conserv\",\n  \"conservar\": \"conserv\",\n  \"conservare\": \"conserv\",\n  \"conservarla\": \"conserv\",\n  \"conservarle\": \"conserv\",\n  \"conservarsi\": \"conserv\",\n  \"conservata\": \"conserv\",\n  \"conservate\": \"conserv\",\n  \"conservati\": \"conserv\",\n  \"conservative\": \"conserv\",\n  \"conservato\": \"conserv\",\n  \"conservatore\": \"conserv\",\n  \"conservatori\": \"conserv\",\n  \"conservatoria\": \"conservator\",\n  \"conservatrice\": \"conserv\",\n  \"conservazione\": \"conserv\",\n  \"conservi\": \"cons\",\n  \"conservò\": \"conserv\",\n  \"consessi\": \"consess\",\n  \"considera\": \"consider\",\n  \"considerabile\": \"consider\",\n  \"considerabili\": \"consider\",\n  \"considerando\": \"consider\",\n  \"considerano\": \"consider\",\n  \"considerar\": \"consider\",\n  \"considerare\": \"consider\",\n  \"considerarli\": \"consider\",\n  \"considerarono\": \"consider\",\n  \"considerarsi\": \"consider\",\n  \"considerata\": \"consider\",\n  \"considerate\": \"consider\",\n  \"considerati\": \"consider\",\n  \"considerato\": \"consider\",\n  \"consideravan\": \"consideravan\",\n  \"considerazion\": \"considerazion\",\n  \"considerazione\": \"consider\",\n  \"considerazioni\": \"consider\",\n  \"considerevole\": \"considerevol\",\n  \"consideri\": \"consider\",\n  \"consideriamo\": \"consider\",\n  \"considerino\": \"considerin\",\n  \"considero\": \"consider\",\n  \"consigli\": \"consigl\",\n  \"consiglia\": \"consigl\",\n  \"consigliano\": \"consigl\",\n  \"consigliare\": \"consigl\",\n  \"consigliarmi\": \"consigl\",\n  \"consigliaron\": \"consigliaron\",\n  \"consigliata\": \"consigl\",\n  \"consigliati\": \"consigl\",\n  \"consigliato\": \"consigl\",\n  \"consigliava\": \"consigl\",\n  \"consigliera\": \"consiglier\",\n  \"consigliere\": \"consigl\",\n  \"consiglieri\": \"consiglier\",\n  \"consiglio\": \"consigl\",\n  \"consigliò\": \"consigl\",\n  \"consigliori\": \"consiglior\",\n  \"consimili\": \"consimil\",\n  \"consiste\": \"consist\",\n  \"consistente\": \"consistent\",\n  \"consistenti\": \"consistent\",\n  \"consistenza\": \"consistent\",\n  \"consisteva\": \"consist\",\n  \"consistevano\": \"consist\",\n  \"conso\": \"cons\",\n  \"consob\": \"consob\",\n  \"consociativi\": \"consoc\",\n  \"consociativo\": \"consoc\",\n  \"consolando\": \"consol\",\n  \"consolante\": \"consol\",\n  \"consolarci\": \"consol\",\n  \"consolare\": \"consol\",\n  \"consolarlo\": \"consol\",\n  \"consolarti\": \"consol\",\n  \"consolata\": \"consol\",\n  \"consolatela\": \"consolatel\",\n  \"consolatevi\": \"consolat\",\n  \"consolatione\": \"consolation\",\n  \"consolazione\": \"consol\",\n  \"consolazioni\": \"consol\",\n  \"console\": \"consol\",\n  \"consolidamento\": \"consolid\",\n  \"consolidandosi\": \"consolid\",\n  \"consolidata\": \"consolid\",\n  \"consolidati\": \"consolid\",\n  \"consolidato\": \"consolid\",\n  \"consolle\": \"consoll\",\n  \"consolò\": \"consol\",\n  \"consonanti\": \"conson\",\n  \"consonanza\": \"conson\",\n  \"consone\": \"conson\",\n  \"consono\": \"cons\",\n  \"consorte\": \"consort\",\n  \"consorti\": \"consort\",\n  \"consorzi\": \"consorz\",\n  \"consorzio\": \"consorz\",\n  \"constatare\": \"constat\",\n  \"constatarlo\": \"constat\",\n  \"constatazione\": \"constat\",\n  \"consterà\": \"const\",\n  \"consuenze\": \"consuenz\",\n  \"consueta\": \"consuet\",\n  \"consueti\": \"consuet\",\n  \"consueto\": \"consuet\",\n  \"consuetudine\": \"consuetudin\",\n  \"consuetudini\": \"consuetudin\",\n  \"consulenti\": \"consulent\",\n  \"consulenza\": \"consulent\",\n  \"consulenze\": \"consulent\",\n  \"consulta\": \"consult\",\n  \"consultar\": \"consult\",\n  \"consultare\": \"consult\",\n  \"consultarlo\": \"consult\",\n  \"consultata\": \"consult\",\n  \"consultati\": \"consult\",\n  \"consultato\": \"consult\",\n  \"consultazione\": \"consult\",\n  \"consultazioni\": \"consult\",\n  \"consulte\": \"consult\",\n  \"consultivo\": \"consult\",\n  \"consulto\": \"consult\",\n  \"consuma\": \"consum\",\n  \"consumano\": \"consum\",\n  \"consumare\": \"consum\",\n  \"consumata\": \"consum\",\n  \"consumate\": \"consum\",\n  \"consumati\": \"consum\",\n  \"consumato\": \"consum\",\n  \"consumatore\": \"consum\",\n  \"consumatori\": \"consum\",\n  \"consumavano\": \"consum\",\n  \"consumazioni\": \"consum\",\n  \"consumerà\": \"consum\",\n  \"consumi\": \"consum\",\n  \"consumo\": \"consum\",\n  \"consunta\": \"consunt\",\n  \"consunte\": \"consunt\",\n  \"cont\": \"cont\",\n  \"conta\": \"cont\",\n  \"contabile\": \"contabil\",\n  \"contadina\": \"contadin\",\n  \"contadine\": \"contadin\",\n  \"contadinesca\": \"contadinesc\",\n  \"contadini\": \"contadin\",\n  \"contadino\": \"contadin\",\n  \"contadinotta\": \"contadinott\",\n  \"contado\": \"contad\",\n  \"contaggioso\": \"contagg\",\n  \"contagi\": \"contag\",\n  \"contagiata\": \"contag\",\n  \"contagio\": \"contag\",\n  \"contagiosa\": \"contag\",\n  \"contagiosi\": \"contag\",\n  \"contagioso\": \"contag\",\n  \"containers\": \"containers\",\n  \"contaminata\": \"contamin\",\n  \"contan\": \"contan\",\n  \"contando\": \"cont\",\n  \"contano\": \"cont\",\n  \"contante\": \"contant\",\n  \"contanti\": \"contant\",\n  \"contar\": \"cont\",\n  \"contare\": \"cont\",\n  \"contarlo\": \"cont\",\n  \"contarsi\": \"cont\",\n  \"contarvi\": \"cont\",\n  \"contasse\": \"cont\",\n  \"contata\": \"cont\",\n  \"contate\": \"cont\",\n  \"contato\": \"cont\",\n  \"contattare\": \"contatt\",\n  \"contattarla\": \"contatt\",\n  \"contattato\": \"contatt\",\n  \"contatti\": \"contatt\",\n  \"contatto\": \"contatt\",\n  \"contava\": \"cont\",\n  \"conte\": \"cont\",\n  \"contea\": \"conte\",\n  \"contegno\": \"contegn\",\n  \"contegnosa\": \"contegn\",\n  \"contegnoso\": \"contegn\",\n  \"contemplando\": \"contempl\",\n  \"contemplar\": \"contempl\",\n  \"contemplare\": \"contempl\",\n  \"contemplarlo\": \"contempl\",\n  \"contemplate\": \"contempl\",\n  \"contemplativa\": \"contempl\",\n  \"contemplato\": \"contempl\",\n  \"contemplazione\": \"contempl\",\n  \"contemplazioni\": \"contempl\",\n  \"contempo\": \"contemp\",\n  \"contemporanea\": \"contemporane\",\n  \"contemporaneamente\": \"contemporan\",\n  \"contemporanee\": \"contemporane\",\n  \"contemporanei\": \"contemporane\",\n  \"contemporaneità\": \"contemporan\",\n  \"contemporaneo\": \"contemporane\",\n  \"contendenti\": \"contendent\",\n  \"contendevano\": \"contend\",\n  \"contenente\": \"contenent\",\n  \"contener\": \"contener\",\n  \"contenere\": \"conten\",\n  \"contenerla\": \"conten\",\n  \"contenersi\": \"conten\",\n  \"conteneva\": \"conten\",\n  \"contenga\": \"conteng\",\n  \"contengono\": \"conteng\",\n  \"contenimento\": \"conten\",\n  \"contenitore\": \"contenitor\",\n  \"contenitori\": \"contenitor\",\n  \"contenta\": \"content\",\n  \"contentare\": \"content\",\n  \"contentarli\": \"content\",\n  \"contentarlo\": \"content\",\n  \"contentassi\": \"content\",\n  \"contentato\": \"content\",\n  \"contentava\": \"content\",\n  \"contentavano\": \"content\",\n  \"contente\": \"content\",\n  \"contentezza\": \"contentezz\",\n  \"contenti\": \"content\",\n  \"contentino\": \"contentin\",\n  \"contentissimo\": \"contentissim\",\n  \"contento\": \"content\",\n  \"contentò\": \"content\",\n  \"contenuta\": \"conten\",\n  \"contenute\": \"conten\",\n  \"contenuti\": \"conten\",\n  \"contenuto\": \"conten\",\n  \"contenzioso\": \"contenz\",\n  \"conterà\": \"cont\",\n  \"conterrà\": \"conterr\",\n  \"conterranei\": \"conterrane\",\n  \"contesa\": \"contes\",\n  \"contese\": \"contes\",\n  \"contesta\": \"contest\",\n  \"contestabile\": \"contest\",\n  \"contestando\": \"contest\",\n  \"contestano\": \"contest\",\n  \"contestare\": \"contest\",\n  \"contestata\": \"contest\",\n  \"contestati\": \"contest\",\n  \"contestato\": \"contest\",\n  \"contestatori\": \"contest\",\n  \"contestatrici\": \"contest\",\n  \"contestava\": \"contest\",\n  \"contestazione\": \"contest\",\n  \"contestazioni\": \"contest\",\n  \"contesto\": \"contest\",\n  \"contestualmente\": \"contestual\",\n  \"conti\": \"cont\",\n  \"contiamo\": \"cont\",\n  \"conticello\": \"conticell\",\n  \"conticino\": \"conticin\",\n  \"contiene\": \"contien\",\n  \"contigua\": \"contigu\",\n  \"contigui\": \"contigu\",\n  \"contiguità\": \"contigu\",\n  \"contiguo\": \"contigu\",\n  \"continentale\": \"continental\",\n  \"continente\": \"continent\",\n  \"continenti\": \"continent\",\n  \"contingente\": \"contingent\",\n  \"contingenti\": \"contingent\",\n  \"continua\": \"continu\",\n  \"continuamente\": \"continu\",\n  \"continuando\": \"continu\",\n  \"continuano\": \"continu\",\n  \"continuar\": \"continu\",\n  \"continuare\": \"continu\",\n  \"continuarla\": \"continu\",\n  \"continuaron\": \"continuaron\",\n  \"continuarono\": \"continu\",\n  \"continuassero\": \"continu\",\n  \"continuata\": \"continu\",\n  \"continuato\": \"continu\",\n  \"continuava\": \"continu\",\n  \"continuavano\": \"continu\",\n  \"continuazione\": \"continu\",\n  \"continue\": \"continu\",\n  \"continuerà\": \"continu\",\n  \"continueranno\": \"continu\",\n  \"continuerebbe\": \"continu\",\n  \"continueremo\": \"continu\",\n  \"continuerò\": \"continu\",\n  \"continui\": \"continu\",\n  \"continuiamo\": \"continuiam\",\n  \"continuità\": \"continu\",\n  \"continuo\": \"continu\",\n  \"continuò\": \"continu\",\n  \"conto\": \"cont\",\n  \"contò\": \"cont\",\n  \"contornandosi\": \"contorn\",\n  \"contorni\": \"contorn\",\n  \"contorno\": \"contorn\",\n  \"contorte\": \"contort\",\n  \"contovivo\": \"contov\",\n  \"contr\": \"contr\",\n  \"contra\": \"contr\",\n  \"contrabbandieri\": \"contrabbandier\",\n  \"contraccambiare\": \"contraccamb\",\n  \"contraccambiava\": \"contraccamb\",\n  \"contraccambio\": \"contraccamb\",\n  \"contraccettivi\": \"contraccett\",\n  \"contrada\": \"contrad\",\n  \"contraddette\": \"contraddett\",\n  \"contraddica\": \"contradd\",\n  \"contraddice\": \"contradd\",\n  \"contraddicesse\": \"contraddicess\",\n  \"contraddire\": \"contradd\",\n  \"contraddirgli\": \"contradd\",\n  \"contraddirlo\": \"contradd\",\n  \"contraddittori\": \"contraddittor\",\n  \"contraddittorie\": \"contraddittor\",\n  \"contraddittorio\": \"contraddittor\",\n  \"contraddizione\": \"contraddizion\",\n  \"contraddizioni\": \"contraddizion\",\n  \"contraddote\": \"contraddot\",\n  \"contrae\": \"contra\",\n  \"contraendo\": \"contr\",\n  \"contraenti\": \"contraent\",\n  \"contraesse\": \"contraess\",\n  \"contraeva\": \"contr\",\n  \"contraffaceva\": \"contraffac\",\n  \"contraffacienti\": \"contraffacient\",\n  \"contraffanno\": \"contraffann\",\n  \"contrafforti\": \"contraffort\",\n  \"contrammina\": \"contrammin\",\n  \"contrappesare\": \"contrappes\",\n  \"contrappesato\": \"contrappes\",\n  \"contrappeso\": \"contrappes\",\n  \"contrappone\": \"contrappon\",\n  \"contrapponevan\": \"contrapponevan\",\n  \"contrapporci\": \"contrapporc\",\n  \"contrapporre\": \"contrapporr\",\n  \"contrapposizione\": \"contrapposizion\",\n  \"contrapposizioni\": \"contrapposizion\",\n  \"contrapposta\": \"contrappost\",\n  \"contrapposti\": \"contrappost\",\n  \"contrapposto\": \"contrappost\",\n  \"contrari\": \"contrar\",\n  \"contraria\": \"contrar\",\n  \"contrariamente\": \"contrar\",\n  \"contrarie\": \"contrar\",\n  \"contrarietà\": \"contrariet\",\n  \"contrario\": \"contrar\",\n  \"contrassegni\": \"contrassegn\",\n  \"contrassegno\": \"contrassegn\",\n  \"contrastando\": \"contrast\",\n  \"contrastanti\": \"contrast\",\n  \"contrastar\": \"contrast\",\n  \"contrastare\": \"contrast\",\n  \"contrastata\": \"contrast\",\n  \"contrastate\": \"contrast\",\n  \"contrastati\": \"contrast\",\n  \"contrastato\": \"contrast\",\n  \"contrastavano\": \"contrast\",\n  \"contrasti\": \"contrast\",\n  \"contrasto\": \"contrast\",\n  \"contratta\": \"contratt\",\n  \"contrattacco\": \"contrattacc\",\n  \"contrattazione\": \"contratt\",\n  \"contrattazioni\": \"contratt\",\n  \"contratte\": \"contratt\",\n  \"contrattempi\": \"contrattemp\",\n  \"contratti\": \"contratt\",\n  \"contratto\": \"contratt\",\n  \"contrattuale\": \"contrattual\",\n  \"contrattuali\": \"contrattual\",\n  \"contravvenire\": \"contravven\",\n  \"contravventori\": \"contravventor\",\n  \"contravviene\": \"contravvien\",\n  \"contrazione\": \"contrazion\",\n  \"contrazioni\": \"contrazion\",\n  \"contribuenti\": \"contribuent\",\n  \"contribuirà\": \"contribu\",\n  \"contribuire\": \"contribu\",\n  \"contribuiscano\": \"contribu\",\n  \"contribuisce\": \"contribu\",\n  \"contribuito\": \"contribu\",\n  \"contribuiva\": \"contribu\",\n  \"contribuivan\": \"contribuivan\",\n  \"contributi\": \"contrib\",\n  \"contributive\": \"contribut\",\n  \"contributo\": \"contrib\",\n  \"contrista\": \"contrist\",\n  \"contristar\": \"contrist\",\n  \"contristare\": \"contrist\",\n  \"contristata\": \"contrist\",\n  \"contristato\": \"contrist\",\n  \"contrita\": \"contr\",\n  \"contro\": \"contr\",\n  \"contrò\": \"contr\",\n  \"controbalzo\": \"controbalz\",\n  \"controcanto\": \"controcant\",\n  \"controcorrente\": \"controcorrent\",\n  \"controdomande\": \"controdomand\",\n  \"controlla\": \"controll\",\n  \"controllano\": \"controll\",\n  \"controllare\": \"controll\",\n  \"controllarlo\": \"controll\",\n  \"controllata\": \"controll\",\n  \"controllate\": \"controll\",\n  \"controllato\": \"controll\",\n  \"controllava\": \"controll\",\n  \"controllavano\": \"controll\",\n  \"controllerano\": \"controller\",\n  \"controlli\": \"controll\",\n  \"controllo\": \"controll\",\n  \"controllori\": \"controllor\",\n  \"controparte\": \"contropart\",\n  \"contropiede\": \"contropied\",\n  \"controtempo\": \"controtemp\",\n  \"controtendenza\": \"controtendent\",\n  \"controverifiche\": \"controverif\",\n  \"controversa\": \"controvers\",\n  \"controverse\": \"controvers\",\n  \"controversi\": \"controv\",\n  \"controversie\": \"controvers\",\n  \"controverso\": \"controvers\",\n  \"controvoglia\": \"controvogl\",\n  \"conttato\": \"contt\",\n  \"contumacia\": \"contumac\",\n  \"conturbata\": \"conturb\",\n  \"conturbato\": \"conturb\",\n  \"contusione\": \"contusion\",\n  \"conueniente\": \"conuenient\",\n  \"convalescente\": \"convalescent\",\n  \"convalescenti\": \"convalescent\",\n  \"convalescenza\": \"convalescent\",\n  \"convalidato\": \"convalid\",\n  \"convalide\": \"convalid\",\n  \"convegno\": \"convegn\",\n  \"convenendo\": \"conven\",\n  \"convenevole\": \"convenevol\",\n  \"convenevolmente\": \"convenevol\",\n  \"convenga\": \"conveng\",\n  \"convengo\": \"conveng\",\n  \"convengono\": \"conveng\",\n  \"conveniente\": \"convenient\",\n  \"convenienti\": \"convenient\",\n  \"convenienza\": \"convenient\",\n  \"convenire\": \"conven\",\n  \"convenisse\": \"conveniss\",\n  \"conveniva\": \"conven\",\n  \"convenivano\": \"conven\",\n  \"convenne\": \"convenn\",\n  \"conventi\": \"convent\",\n  \"convention\": \"convention\",\n  \"convento\": \"convent\",\n  \"convenuta\": \"conven\",\n  \"convenuti\": \"conven\",\n  \"convenuto\": \"conven\",\n  \"convenzionale\": \"convenzional\",\n  \"convenzionali\": \"convenzional\",\n  \"convenzione\": \"convenzion\",\n  \"convenzioni\": \"convenzion\",\n  \"convergenza\": \"convergent\",\n  \"convergenze\": \"convergent\",\n  \"converrà\": \"converr\",\n  \"conversa\": \"convers\",\n  \"conversando\": \"convers\",\n  \"conversato\": \"convers\",\n  \"conversazione\": \"convers\",\n  \"conversazioni\": \"convers\",\n  \"converse\": \"convers\",\n  \"conversione\": \"conversion\",\n  \"convert\": \"convert\",\n  \"convertibilità\": \"convertibil\",\n  \"convertirono\": \"convert\",\n  \"convertito\": \"convert\",\n  \"convertono\": \"convert\",\n  \"convesso\": \"convess\",\n  \"convien\": \"convien\",\n  \"conviene\": \"convien\",\n  \"convincano\": \"convinc\",\n  \"convincente\": \"convincent\",\n  \"convincer\": \"convincer\",\n  \"convincere\": \"convinc\",\n  \"convincerla\": \"convinc\",\n  \"convincerli\": \"convinc\",\n  \"convincerlo\": \"convinc\",\n  \"convincimento\": \"convinc\",\n  \"convinta\": \"convint\",\n  \"convinti\": \"convint\",\n  \"convinto\": \"convint\",\n  \"convinzione\": \"convinzion\",\n  \"convinzioni\": \"convinzion\",\n  \"convitante\": \"convit\",\n  \"convitati\": \"convit\",\n  \"convitato\": \"convit\",\n  \"convito\": \"conv\",\n  \"convivere\": \"conviv\",\n  \"conviviali\": \"convivial\",\n  \"convivio\": \"conviv\",\n  \"convivono\": \"conviv\",\n  \"convoca\": \"convoc\",\n  \"convocare\": \"convoc\",\n  \"convocata\": \"convoc\",\n  \"convocate\": \"convoc\",\n  \"convocati\": \"convoc\",\n  \"convocato\": \"convoc\",\n  \"convocazione\": \"convoc\",\n  \"convocazioni\": \"convoc\",\n  \"convogli\": \"convogl\",\n  \"convoglio\": \"convogl\",\n  \"convulsa\": \"convuls\",\n  \"convulsiva\": \"convuls\",\n  \"coodinatori\": \"coodin\",\n  \"cooiperazione\": \"cooiper\",\n  \"cooman\": \"cooman\",\n  \"coonestare\": \"coonest\",\n  \"coop\": \"coop\",\n  \"cooperare\": \"cooper\",\n  \"cooperativa\": \"cooper\",\n  \"cooperative\": \"cooper\",\n  \"cooperativo\": \"cooper\",\n  \"cooperato\": \"cooper\",\n  \"cooperatore\": \"cooper\",\n  \"cooperazione\": \"cooper\",\n  \"cooperò\": \"coop\",\n  \"coopi\": \"coop\",\n  \"coopinvest\": \"coopinvest\",\n  \"cooprend\": \"cooprend\",\n  \"cooptazione\": \"cooptazion\",\n  \"coordina\": \"coordin\",\n  \"coordinamento\": \"coordin\",\n  \"coordinando\": \"coordin\",\n  \"coordinare\": \"coordin\",\n  \"coordinata\": \"coordin\",\n  \"coordinate\": \"coordin\",\n  \"coordinati\": \"coordin\",\n  \"coordinatore\": \"coordin\",\n  \"coordinatori\": \"coordin\",\n  \"coordinazione\": \"coordin\",\n  \"copenaghen\": \"copenaghen\",\n  \"coperatura\": \"coperatur\",\n  \"coperchi\": \"coperc\",\n  \"coperta\": \"copert\",\n  \"copertamente\": \"copert\",\n  \"coperte\": \"copert\",\n  \"coperti\": \"cop\",\n  \"copertina\": \"copertin\",\n  \"coperto\": \"copert\",\n  \"copertura\": \"copertur\",\n  \"coperturà\": \"copertur\",\n  \"copia\": \"cop\",\n  \"copiare\": \"cop\",\n  \"copiator\": \"copiator\",\n  \"copie\": \"cop\",\n  \"copiò\": \"cop\",\n  \"copione\": \"copion\",\n  \"coppa\": \"copp\",\n  \"coppia\": \"copp\",\n  \"coppie\": \"copp\",\n  \"coppola\": \"coppol\",\n  \"coprano\": \"copr\",\n  \"copre\": \"copr\",\n  \"coprete\": \"copr\",\n  \"coprì\": \"copr\",\n  \"coprire\": \"copr\",\n  \"copriremo\": \"copr\",\n  \"copriva\": \"copr\",\n  \"coproduzione\": \"coprodu\",\n  \"coprono\": \"copr\",\n  \"cor\": \"cor\",\n  \"coraggio\": \"coragg\",\n  \"coraggiosa\": \"coragg\",\n  \"coraggiose\": \"coragg\",\n  \"coraggiosi\": \"coragg\",\n  \"coraggioso\": \"coragg\",\n  \"corale\": \"coral\",\n  \"corato\": \"cor\",\n  \"corazza\": \"corazz\",\n  \"corazzati\": \"corazz\",\n  \"corbelleria\": \"corbeller\",\n  \"corbellerie\": \"corbeller\",\n  \"corbucci\": \"corbucc\",\n  \"corcione\": \"corcion\",\n  \"corda\": \"cord\",\n  \"cordate\": \"cord\",\n  \"corde\": \"cord\",\n  \"cordellina\": \"cordellin\",\n  \"cordiale\": \"cordial\",\n  \"cordialità\": \"cordial\",\n  \"cordialmente\": \"cordial\",\n  \"cordicella\": \"cordicell\",\n  \"cordigliera\": \"cordiglier\",\n  \"cordoglio\": \"cordogl\",\n  \"cordone\": \"cordon\",\n  \"cordova\": \"cordov\",\n  \"cordusio\": \"cordus\",\n  \"core\": \"cor\",\n  \"coreano\": \"cor\",\n  \"coreografie\": \"coreograf\",\n  \"coretto\": \"corett\",\n  \"cori\": \"cor\",\n  \"corini\": \"corin\",\n  \"corino\": \"corin\",\n  \"corleone\": \"corleon\",\n  \"corna\": \"corn\",\n  \"cornacchia\": \"cornacc\",\n  \"cornacchie\": \"cornacc\",\n  \"cornacchini\": \"cornacchin\",\n  \"corner\": \"corner\",\n  \"cornia\": \"corn\",\n  \"cornice\": \"cornic\",\n  \"corno\": \"corn\",\n  \"coro\": \"cor\",\n  \"corona\": \"coron\",\n  \"coronar\": \"coron\",\n  \"coronarici\": \"coronar\",\n  \"coronato\": \"coron\",\n  \"corone\": \"coron\",\n  \"corp\": \"corp\",\n  \"corpaccio\": \"corpacc\",\n  \"corpi\": \"corp\",\n  \"corpo\": \"corp\",\n  \"corporale\": \"corporal\",\n  \"corporali\": \"corporal\",\n  \"corporate\": \"corpor\",\n  \"corporation\": \"corporation\",\n  \"corporazione\": \"corpor\",\n  \"corr\": \"corr\",\n  \"corra\": \"corr\",\n  \"corradini\": \"corradin\",\n  \"corrado\": \"corrad\",\n  \"corre\": \"corr\",\n  \"corredata\": \"corred\",\n  \"corredate\": \"corred\",\n  \"corredato\": \"corred\",\n  \"corredo\": \"corred\",\n  \"corregga\": \"corregg\",\n  \"corregge\": \"corregg\",\n  \"correggendole\": \"corregg\",\n  \"correggere\": \"corregg\",\n  \"correggimi\": \"correggim\",\n  \"correndo\": \"corr\",\n  \"corrente\": \"corrent\",\n  \"correnti\": \"corrent\",\n  \"correr\": \"correr\",\n  \"correranno\": \"corr\",\n  \"correre\": \"corr\",\n  \"correrebber\": \"correrebber\",\n  \"corrergli\": \"corr\",\n  \"correrò\": \"corr\",\n  \"corresponsione\": \"corresponsion\",\n  \"corresse\": \"corress\",\n  \"correte\": \"corr\",\n  \"corretta\": \"corrett\",\n  \"corretteza\": \"correttez\",\n  \"correttezza\": \"correttezz\",\n  \"corretti\": \"corrett\",\n  \"correttissimo\": \"correttissim\",\n  \"correttiva\": \"corrett\",\n  \"corretto\": \"corrett\",\n  \"correttrice\": \"correttr\",\n  \"correva\": \"corr\",\n  \"correvan\": \"correvan\",\n  \"correvano\": \"corr\",\n  \"correzione\": \"correzion\",\n  \"correzioni\": \"correzion\",\n  \"corridoi\": \"corrido\",\n  \"corridoio\": \"corridoi\",\n  \"corriere\": \"corr\",\n  \"corrierè\": \"corrier\",\n  \"corrisopondono\": \"corrisopond\",\n  \"corrispettivo\": \"corrispett\",\n  \"corrisponda\": \"corrispond\",\n  \"corrisponde\": \"corrispond\",\n  \"corrispondendo\": \"corrispond\",\n  \"corrispondente\": \"corrispondent\",\n  \"corrispondenti\": \"corrispondent\",\n  \"corrispondenza\": \"corrispondent\",\n  \"corrispondenze\": \"corrispondent\",\n  \"corrispondere\": \"corrispond\",\n  \"corrispondeva\": \"corrispond\",\n  \"corrispondono\": \"corrispond\",\n  \"corrisposero\": \"corrisposer\",\n  \"corrisposta\": \"corrispost\",\n  \"corrisposto\": \"corrispost\",\n  \"corro\": \"corr\",\n  \"corrompevano\": \"corromp\",\n  \"corron\": \"corron\",\n  \"corrono\": \"corr\",\n  \"corrotti\": \"corrott\",\n  \"corrusco\": \"corrusc\",\n  \"corruttivi\": \"corrutt\",\n  \"corruzione\": \"corruzion\",\n  \"corrwezione\": \"corrwezion\",\n  \"corsa\": \"cors\",\n  \"corse\": \"cors\",\n  \"corserelle\": \"corserell\",\n  \"corsero\": \"corser\",\n  \"corsi\": \"cors\",\n  \"corsia\": \"cors\",\n  \"corsìa\": \"corsì\",\n  \"corsica\": \"corsic\",\n  \"corsini\": \"corsin\",\n  \"corsivo\": \"cors\",\n  \"corso\": \"cors\",\n  \"corta\": \"cort\",\n  \"corte\": \"cort\",\n  \"cortecce\": \"cortecc\",\n  \"corteggiata\": \"cortegg\",\n  \"corteggiato\": \"cortegg\",\n  \"corteggio\": \"cortegg\",\n  \"cortenuova\": \"cortenuov\",\n  \"corteo\": \"corte\",\n  \"cortese\": \"cortes\",\n  \"cortesemente\": \"cortes\",\n  \"cortesia\": \"cortes\",\n  \"corti\": \"cort\",\n  \"cortigianelli\": \"cortigianell\",\n  \"cortigiani\": \"cortigian\",\n  \"cortile\": \"cortil\",\n  \"cortiletto\": \"cortilett\",\n  \"cortili\": \"cortil\",\n  \"cortina\": \"cortin\",\n  \"corto\": \"cort\",\n  \"corvaccio\": \"corvacc\",\n  \"corvetta\": \"corvett\",\n  \"corvi\": \"corv\",\n  \"corvo\": \"corv\",\n  \"cos\": \"cos\",\n  \"cosa\": \"cos\",\n  \"cosce\": \"cosc\",\n  \"cosche\": \"cosc\",\n  \"coscia\": \"cosc\",\n  \"cosciali\": \"coscial\",\n  \"coscienti\": \"coscient\",\n  \"coscienza\": \"coscienz\",\n  \"cose\": \"cos\",\n  \"cosenza\": \"cosenz\",\n  \"cosette\": \"cosett\",\n  \"cosi\": \"cos\",\n  \"così\": \"cos\",\n  \"cosiddetta\": \"cosiddett\",\n  \"cosiddette\": \"cosiddett\",\n  \"cosiddetti\": \"cosiddett\",\n  \"cosiddetto\": \"cosiddett\",\n  \"cosimi\": \"cosim\",\n  \"cosimo\": \"cosim\",\n  \"cospetto\": \"cospett\",\n  \"cospicua\": \"cospicu\",\n  \"cospicue\": \"cospicu\",\n  \"cospicui\": \"cospicu\",\n  \"cospicuo\": \"cospicu\",\n  \"cospiravano\": \"cospir\",\n  \"cossato\": \"coss\",\n  \"cossiga\": \"cossig\",\n  \"cossutta\": \"cossutt\",\n  \"costa\": \"cost\",\n  \"costacurta\": \"costacurt\",\n  \"costante\": \"costant\",\n  \"costantemente\": \"costant\",\n  \"costanti\": \"costant\",\n  \"costantino\": \"costantin\",\n  \"costanza\": \"costanz\",\n  \"costanzo\": \"costanz\",\n  \"costare\": \"cost\",\n  \"costarica\": \"costar\",\n  \"costaricano\": \"costaric\",\n  \"costaron\": \"costaron\",\n  \"costasse\": \"cost\",\n  \"costata\": \"cost\",\n  \"costato\": \"cost\",\n  \"coste\": \"cost\",\n  \"costeggia\": \"costegg\",\n  \"costeggiando\": \"costegg\",\n  \"costeggiare\": \"costegg\",\n  \"costeggiarla\": \"costegg\",\n  \"costeggiate\": \"costegg\",\n  \"costeggiava\": \"costegg\",\n  \"costei\": \"coste\",\n  \"costerebbe\": \"cost\",\n  \"costernata\": \"costern\",\n  \"costernati\": \"costern\",\n  \"costernazione\": \"costern\",\n  \"costi\": \"cost\",\n  \"costì\": \"cost\",\n  \"costiera\": \"costier\",\n  \"costiere\": \"cost\",\n  \"costiero\": \"costier\",\n  \"costituendo\": \"costitu\",\n  \"costituente\": \"costituent\",\n  \"costituirà\": \"costitu\",\n  \"costituiranno\": \"costitu\",\n  \"costituire\": \"costitu\",\n  \"costituirsi\": \"costitu\",\n  \"costituisca\": \"costitu\",\n  \"costituisce\": \"costitu\",\n  \"costituiscono\": \"costitu\",\n  \"costituisse\": \"costituiss\",\n  \"costituita\": \"costitu\",\n  \"costituite\": \"costitu\",\n  \"costituiti\": \"costitu\",\n  \"costituitisi\": \"costituitis\",\n  \"costituito\": \"costitu\",\n  \"costitutiva\": \"costitut\",\n  \"costitutivi\": \"costitut\",\n  \"costituzionale\": \"costituzional\",\n  \"costituzionali\": \"costituzional\",\n  \"costituzionalisti\": \"costituzional\",\n  \"costituzione\": \"costitu\",\n  \"costo\": \"cost\",\n  \"costò\": \"cost\",\n  \"costola\": \"costol\",\n  \"costole\": \"costol\",\n  \"costoro\": \"costor\",\n  \"costosa\": \"costos\",\n  \"costosi\": \"costos\",\n  \"costretta\": \"costrett\",\n  \"costrette\": \"costrett\",\n  \"costretti\": \"costrett\",\n  \"costretto\": \"costrett\",\n  \"costringe\": \"costring\",\n  \"costringendo\": \"costring\",\n  \"costringendoci\": \"costring\",\n  \"costringerà\": \"costring\",\n  \"costringerci\": \"costring\",\n  \"costringere\": \"costring\",\n  \"costringerli\": \"costring\",\n  \"costringerlo\": \"costring\",\n  \"costringevano\": \"costring\",\n  \"costringono\": \"costring\",\n  \"costrinse\": \"costrins\",\n  \"costruiranno\": \"costru\",\n  \"costruire\": \"costru\",\n  \"costruirlo\": \"costru\",\n  \"costruita\": \"costru\",\n  \"costruito\": \"costru\",\n  \"costrutte\": \"costrutt\",\n  \"costruttiva\": \"costrutt\",\n  \"costruttivo\": \"costrutt\",\n  \"costrutto\": \"costrutt\",\n  \"costruttori\": \"costruttor\",\n  \"costruzione\": \"costruzion\",\n  \"costruzioni\": \"costruzion\",\n  \"costui\": \"costu\",\n  \"costumato\": \"costum\",\n  \"costumavan\": \"costumavan\",\n  \"costume\": \"costum\",\n  \"costumi\": \"costum\",\n  \"cosv\": \"cosv\",\n  \"cosworth\": \"cosworth\",\n  \"cot\": \"cot\",\n  \"cotale\": \"cotal\",\n  \"cotillon\": \"cotillon\",\n  \"cotone\": \"coton\",\n  \"cotta\": \"cott\",\n  \"council\": \"council\",\n  \"coupon\": \"coupon\",\n  \"courier\": \"courier\",\n  \"courmaosta\": \"courmaost\",\n  \"courmayeur\": \"courmayeur\",\n  \"couto\": \"cout\",\n  \"cova\": \"cov\",\n  \"covando\": \"cov\",\n  \"covano\": \"cov\",\n  \"covasse\": \"cov\",\n  \"coventry\": \"coventry\",\n  \"covile\": \"covil\",\n  \"covili\": \"covil\",\n  \"covo\": \"cov\",\n  \"coyote\": \"coyot\",\n  \"cozzar\": \"cozz\",\n  \"cozzare\": \"cozz\",\n  \"cozzava\": \"cozz\",\n  \"cozzi\": \"cozz\",\n  \"cozzo\": \"cozz\",\n  \"cp\": \"cp\",\n  \"cpl\": \"cpl\",\n  \"cr\": \"cr\",\n  \"cra\": \"cra\",\n  \"crack\": \"crack\",\n  \"cravatte\": \"cravatt\",\n  \"cravero\": \"craver\",\n  \"craxi\": \"crax\",\n  \"crea\": \"cre\",\n  \"creando\": \"cre\",\n  \"creano\": \"cre\",\n  \"creanza\": \"creanz\",\n  \"creanze\": \"creanz\",\n  \"creare\": \"cre\",\n  \"creasse\": \"cre\",\n  \"creata\": \"cre\",\n  \"creatasi\": \"creatas\",\n  \"create\": \"cre\",\n  \"creati\": \"cre\",\n  \"creato\": \"cre\",\n  \"creatore\": \"creator\",\n  \"creatori\": \"creator\",\n  \"creatura\": \"creatur\",\n  \"creature\": \"creatur\",\n  \"creaturina\": \"creaturin\",\n  \"creazione\": \"creazion\",\n  \"crebbe\": \"crebb\",\n  \"crebbero\": \"crebber\",\n  \"cred\": \"cred\",\n  \"creda\": \"cred\",\n  \"credano\": \"cred\",\n  \"crede\": \"cred\",\n  \"credé\": \"cred\",\n  \"credendo\": \"cred\",\n  \"credenti\": \"credent\",\n  \"credenza\": \"credenz\",\n  \"creder\": \"creder\",\n  \"crederanno\": \"cred\",\n  \"crederci\": \"cred\",\n  \"credere\": \"cred\",\n  \"crederebbe\": \"cred\",\n  \"crederei\": \"cred\",\n  \"credereste\": \"cred\",\n  \"crederlo\": \"cred\",\n  \"crederne\": \"cred\",\n  \"crederti\": \"cred\",\n  \"credesse\": \"credess\",\n  \"credessero\": \"cred\",\n  \"credeste\": \"credest\",\n  \"credete\": \"cred\",\n  \"credette\": \"credett\",\n  \"credeva\": \"cred\",\n  \"credevan\": \"credevan\",\n  \"credevano\": \"cred\",\n  \"credevo\": \"cred\",\n  \"credi\": \"cred\",\n  \"crediam\": \"crediam\",\n  \"crediamo\": \"cred\",\n  \"crediate\": \"cred\",\n  \"credibile\": \"credibil\",\n  \"credibili\": \"credibil\",\n  \"credibilità\": \"credibil\",\n  \"crediop\": \"crediop\",\n  \"credit\": \"credit\",\n  \"creditanstalt\": \"creditanstalt\",\n  \"crediti\": \"cred\",\n  \"creditizie\": \"creditiz\",\n  \"creditizio\": \"creditiz\",\n  \"credito\": \"cred\",\n  \"creditore\": \"creditor\",\n  \"creditori\": \"creditor\",\n  \"creditwest\": \"creditwest\",\n  \"credo\": \"cred\",\n  \"credono\": \"cred\",\n  \"credula\": \"credul\",\n  \"credulità\": \"credul\",\n  \"creduta\": \"cred\",\n  \"credute\": \"cred\",\n  \"creduto\": \"cred\",\n  \"creeranno\": \"cre\",\n  \"crei\": \"cre\",\n  \"creino\": \"crein\",\n  \"crema\": \"crem\",\n  \"cremapergo\": \"cremaperg\",\n  \"cremlino\": \"cremlin\",\n  \"cremona\": \"cremon\",\n  \"cremonese\": \"cremones\",\n  \"creò\": \"cre\",\n  \"crepacci\": \"crepacc\",\n  \"crepacore\": \"crepacor\",\n  \"crepacuore\": \"crepacuor\",\n  \"crepaldi\": \"crepald\",\n  \"crepava\": \"crep\",\n  \"crepi\": \"crep\",\n  \"crepuscolo\": \"crepuscol\",\n  \"crerdibili\": \"crerdibil\",\n  \"cresc\": \"cresc\",\n  \"cresce\": \"cresc\",\n  \"crescendo\": \"cresc\",\n  \"crescente\": \"crescent\",\n  \"crescenti\": \"crescent\",\n  \"crescer\": \"crescer\",\n  \"crescerà\": \"cresc\",\n  \"crescere\": \"cresc\",\n  \"crescesse\": \"crescess\",\n  \"cresceva\": \"cresc\",\n  \"crescita\": \"cresc\",\n  \"cresciuta\": \"cresc\",\n  \"cresciute\": \"cresc\",\n  \"cresciuti\": \"cresc\",\n  \"cresciuto\": \"cresc\",\n  \"crescono\": \"cresc\",\n  \"cresece\": \"cresec\",\n  \"crespe\": \"cresp\",\n  \"cresta\": \"crest\",\n  \"creta\": \"cret\",\n  \"cretina\": \"cretin\",\n  \"crevalcore\": \"crevalcor\",\n  \"crimen\": \"crimen\",\n  \"criminale\": \"criminal\",\n  \"criminalè\": \"criminal\",\n  \"criminali\": \"criminal\",\n  \"criminalità\": \"criminal\",\n  \"criminalizzare\": \"criminalizz\",\n  \"criminalpol\": \"criminalpol\",\n  \"crimine\": \"crimin\",\n  \"crimini\": \"crimin\",\n  \"criniera\": \"crinier\",\n  \"criniti\": \"crin\",\n  \"crippa\": \"cripp\",\n  \"crisi\": \"cris\",\n  \"cristalli\": \"cristall\",\n  \"cristallini\": \"cristallin\",\n  \"cristallo\": \"cristall\",\n  \"cristiana\": \"cristian\",\n  \"cristiane\": \"cristian\",\n  \"cristianesimo\": \"cristianesim\",\n  \"cristiani\": \"cristian\",\n  \"cristianissimo\": \"cristianissim\",\n  \"cristianità\": \"cristian\",\n  \"cristiano\": \"crist\",\n  \"cristina\": \"cristin\",\n  \"cristo\": \"crist\",\n  \"cristobal\": \"cristobal\",\n  \"cristoforo\": \"cristofor\",\n  \"criteri\": \"criter\",\n  \"criterio\": \"criter\",\n  \"critica\": \"critic\",\n  \"criticando\": \"critic\",\n  \"criticar\": \"critic\",\n  \"criticare\": \"critic\",\n  \"criticarlo\": \"critic\",\n  \"criticata\": \"critic\",\n  \"criticato\": \"critic\",\n  \"critiche\": \"critic\",\n  \"critichi\": \"critic\",\n  \"critici\": \"critic\",\n  \"critico\": \"critic\",\n  \"crivellata\": \"crivell\",\n  \"cro\": \"cro\",\n  \"croata\": \"cro\",\n  \"croati\": \"cro\",\n  \"croato\": \"cro\",\n  \"croazia\": \"croaz\",\n  \"croc\": \"croc\",\n  \"crocchi\": \"crocc\",\n  \"crocchia\": \"crocc\",\n  \"crocchio\": \"crocc\",\n  \"croce\": \"croc\",\n  \"croci\": \"croc\",\n  \"crociata\": \"croc\",\n  \"crociate\": \"croc\",\n  \"crocicchi\": \"crocicc\",\n  \"crocicchio\": \"crocicc\",\n  \"crociera\": \"crocier\",\n  \"crociere\": \"croc\",\n  \"crocieristico\": \"crocierist\",\n  \"crocifero\": \"crocifer\",\n  \"crocifisso\": \"crocifiss\",\n  \"crollare\": \"croll\",\n  \"crollava\": \"croll\",\n  \"crollera\": \"croller\",\n  \"crollo\": \"croll\",\n  \"cromosomi\": \"cromosom\",\n  \"cronaca\": \"cronac\",\n  \"cronache\": \"cronac\",\n  \"cronica\": \"cronic\",\n  \"cronico\": \"cronic\",\n  \"cronista\": \"cronist\",\n  \"cronisti\": \"cronist\",\n  \"crono\": \"cron\",\n  \"cronologico\": \"cronolog\",\n  \"cronometro\": \"cronometr\",\n  \"cronoscalata\": \"cronoscal\",\n  \"cross\": \"cross\",\n  \"crossato\": \"cross\",\n  \"croupier\": \"croupier\",\n  \"crrr\": \"crrr\",\n  \"crs\": \"crs\",\n  \"crt\": \"crt\",\n  \"cruccio\": \"crucc\",\n  \"cruciale\": \"crucial\",\n  \"cruciali\": \"crucial\",\n  \"crucis\": \"crucis\",\n  \"crude\": \"crud\",\n  \"crudel\": \"crudel\",\n  \"crudele\": \"crudel\",\n  \"crudeli\": \"crudel\",\n  \"crudelmente\": \"crudel\",\n  \"crudeltà\": \"crudelt\",\n  \"cruijff\": \"cruijff\",\n  \"cruiser\": \"cruiser\",\n  \"crusca\": \"crusc\",\n  \"cruscotto\": \"cruscott\",\n  \"cruyff\": \"cruyff\",\n  \"cruz\": \"cruz\",\n  \"crystal\": \"crystal\",\n  \"cs\": \"cs\",\n  \"csi\": \"csi\",\n  \"csil\": \"csil\",\n  \"csm\": \"csm\",\n  \"csp\": \"csp\",\n  \"css\": \"css\",\n  \"ct\": \"ct\",\n  \"cte\": \"cte\",\n  \"cto\": \"cto\",\n  \"ctz\": \"ctz\",\n  \"ctznon\": \"ctznon\",\n  \"cuahutemoc\": \"cuahutemoc\",\n  \"cuauhtemoc\": \"cuauhtemoc\",\n  \"cubi\": \"cub\",\n  \"cucca\": \"cucc\",\n  \"cuccagna\": \"cuccagn\",\n  \"cucchiaiata\": \"cucchiai\",\n  \"cucchiaio\": \"cucchiai\",\n  \"cuccia\": \"cucc\",\n  \"cucendo\": \"cuc\",\n  \"cucina\": \"cucin\",\n  \"cucinieri\": \"cucinier\",\n  \"cucire\": \"cuc\",\n  \"cucirini\": \"cucirin\",\n  \"cuciti\": \"cuc\",\n  \"cuciva\": \"cuc\",\n  \"cugina\": \"cugin\",\n  \"cugini\": \"cugin\",\n  \"cugino\": \"cugin\",\n  \"cuginò\": \"cugin\",\n  \"cui\": \"cui\",\n  \"cuicchi\": \"cuicc\",\n  \"cukor\": \"cukor\",\n  \"culminata\": \"culmin\",\n  \"culmine\": \"culmin\",\n  \"culmineranno\": \"culmin\",\n  \"culpable\": \"culpabl\",\n  \"culto\": \"cult\",\n  \"cultura\": \"cultur\",\n  \"culturale\": \"cultural\",\n  \"culturali\": \"cultural\",\n  \"culturalmente\": \"cultural\",\n  \"culture\": \"cultur\",\n  \"cultus\": \"cultus\",\n  \"cumuli\": \"cumul\",\n  \"cumulo\": \"cumul\",\n  \"cuneo\": \"cune\",\n  \"cuocere\": \"cuoc\",\n  \"cuoco\": \"cuoc\",\n  \"cuoia\": \"cuoi\",\n  \"cuoio\": \"cuoi\",\n  \"cuor\": \"cuor\",\n  \"cuore\": \"cuor\",\n  \"cuorè\": \"cuor\",\n  \"cuori\": \"cuor\",\n  \"cupa\": \"cup\",\n  \"cupi\": \"cup\",\n  \"cupidigia\": \"cupidig\",\n  \"cupo\": \"cup\",\n  \"cupola\": \"cupol\",\n  \"cupole\": \"cupol\",\n  \"cura\": \"cur\",\n  \"curan\": \"curan\",\n  \"curando\": \"cur\",\n  \"curarci\": \"cur\",\n  \"curare\": \"cur\",\n  \"curarè\": \"curar\",\n  \"curarsi\": \"cur\",\n  \"curas\": \"curas\",\n  \"curasse\": \"cur\",\n  \"curati\": \"cur\",\n  \"curato\": \"cur\",\n  \"curatore\": \"curator\",\n  \"curatori\": \"curator\",\n  \"curava\": \"cur\",\n  \"curavano\": \"cur\",\n  \"cure\": \"cur\",\n  \"curerebbe\": \"cur\",\n  \"curi\": \"cur\",\n  \"curia\": \"cur\",\n  \"curiosa\": \"curios\",\n  \"curiose\": \"curios\",\n  \"curiosi\": \"curios\",\n  \"curiosita\": \"curios\",\n  \"curiosità\": \"curios\",\n  \"curioso\": \"curios\",\n  \"curo\": \"cur\",\n  \"curò\": \"cur\",\n  \"curti\": \"curt\",\n  \"curtis\": \"curtis\",\n  \"curva\": \"curv\",\n  \"curve\": \"curv\",\n  \"curvi\": \"curv\",\n  \"curviamo\": \"curv\",\n  \"curvo\": \"curv\",\n  \"cus\": \"cus\",\n  \"cusani\": \"cusan\",\n  \"cusin\": \"cusin\",\n  \"custode\": \"custod\",\n  \"custodia\": \"custod\",\n  \"custodirà\": \"custod\",\n  \"custodire\": \"custod\",\n  \"custodirla\": \"custod\",\n  \"custodite\": \"custod\",\n  \"cut\": \"cut\",\n  \"cuthbert\": \"cuthbert\",\n  \"cutigliano\": \"cutigl\",\n  \"cutrufo\": \"cutruf\",\n  \"cutter\": \"cutter\",\n  \"cv\": \"cv\",\n  \"cyanamide\": \"cyanamid\",\n  \"cynthia\": \"cynthi\",\n  \"czudaj\": \"czudaj\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"dà\": \"dà\",\n  \"dabben\": \"dabben\",\n  \"dabbene\": \"dabben\",\n  \"dabrecan\": \"dabrecan\",\n  \"dacca\": \"dacc\",\n  \"dadi\": \"dad\",\n  \"daghe\": \"dagh\",\n  \"dagl\": \"dagl\",\n  \"dagli\": \"dagl\",\n  \"dàgli\": \"dàgl\",\n  \"dai\": \"dai\",\n  \"daily\": \"daily\",\n  \"daisuke\": \"daisuk\",\n  \"dajal\": \"dajal\",\n  \"dal\": \"dal\",\n  \"dall\": \"dall\",\n  \"dalla\": \"dall\",\n  \"dallas\": \"dallas\",\n  \"dalle\": \"dall\",\n  \"dàlli\": \"dàll\",\n  \"dallo\": \"dall\",\n  \"dalmine\": \"dalmin\",\n  \"dam\": \"dam\",\n  \"dama\": \"dam\",\n  \"dame\": \"dam\",\n  \"damia\": \"dam\",\n  \"damiani\": \"damian\",\n  \"damiano\": \"dam\",\n  \"dammelo\": \"dammel\",\n  \"dammi\": \"damm\",\n  \"dan\": \"dan\",\n  \"danaos\": \"danaos\",\n  \"danari\": \"danar\",\n  \"danaro\": \"danar\",\n  \"dance\": \"danc\",\n  \"dancer\": \"dancer\",\n  \"dando\": \"dand\",\n  \"dandogli\": \"dandogl\",\n  \"dandola\": \"dandol\",\n  \"dandole\": \"dandol\",\n  \"dandomi\": \"dandom\",\n  \"dandosi\": \"dandos\",\n  \"danero\": \"daner\",\n  \"danese\": \"danes\",\n  \"dani\": \"dan\",\n  \"daniel\": \"daniel\",\n  \"daniela\": \"daniel\",\n  \"daniele\": \"daniel\",\n  \"danieli\": \"daniel\",\n  \"danilo\": \"danil\",\n  \"danimarca\": \"danimarc\",\n  \"dannata\": \"dann\",\n  \"dannato\": \"dann\",\n  \"danneggia\": \"dannegg\",\n  \"danneggiano\": \"dannegg\",\n  \"danneggiare\": \"dannegg\",\n  \"danneggiata\": \"dannegg\",\n  \"danneggiate\": \"dannegg\",\n  \"danneggiati\": \"dannegg\",\n  \"danneggiato\": \"dannegg\",\n  \"danni\": \"dann\",\n  \"danno\": \"dann\",\n  \"dànno\": \"dànn\",\n  \"dannosa\": \"dannos\",\n  \"dannoso\": \"dannos\",\n  \"dante\": \"dant\",\n  \"danubio\": \"danub\",\n  \"danyon\": \"danyon\",\n  \"danza\": \"danz\",\n  \"danzanti\": \"danzant\",\n  \"dappiè\": \"dapp\",\n  \"dappocaggine\": \"dappocaggin\",\n  \"dapprima\": \"dapprim\",\n  \"dar\": \"dar\",\n  \"darà\": \"dar\",\n  \"daranno\": \"darann\",\n  \"dare\": \"dar\",\n  \"darebbe\": \"darebb\",\n  \"darei\": \"dare\",\n  \"daremmo\": \"dar\",\n  \"daremo\": \"darem\",\n  \"darete\": \"dar\",\n  \"dargli\": \"dargl\",\n  \"dargliele\": \"dargliel\",\n  \"dargliene\": \"darglien\",\n  \"daria\": \"dar\",\n  \"dario\": \"dar\",\n  \"darla\": \"darl\",\n  \"darle\": \"darl\",\n  \"darlo\": \"darl\",\n  \"darmene\": \"darmen\",\n  \"darmi\": \"darm\",\n  \"darne\": \"darn\",\n  \"darò\": \"dar\",\n  \"darsene\": \"darsen\",\n  \"darsi\": \"dars\",\n  \"darti\": \"dart\",\n  \"darvi\": \"darv\",\n  \"daryl\": \"daryl\",\n  \"data\": \"dat\",\n  \"datagli\": \"datagl\",\n  \"dataria\": \"datar\",\n  \"date\": \"dat\",\n  \"datè\": \"dat\",\n  \"dateci\": \"datec\",\n  \"dategli\": \"dategl\",\n  \"datemele\": \"datemel\",\n  \"datemi\": \"datem\",\n  \"dati\": \"dat\",\n  \"dato\": \"dat\",\n  \"datogli\": \"datogl\",\n  \"datori\": \"dator\",\n  \"datoriali\": \"datorial\",\n  \"datrice\": \"datric\",\n  \"dava\": \"dav\",\n  \"davan\": \"davan\",\n  \"davano\": \"dav\",\n  \"davanti\": \"davant\",\n  \"davanzale\": \"davanzal\",\n  \"davanzali\": \"davanzal\",\n  \"david\": \"david\",\n  \"davide\": \"david\",\n  \"davidson\": \"davidson\",\n  \"davigo\": \"davig\",\n  \"davitashvili\": \"davitashvil\",\n  \"davo\": \"dav\",\n  \"davvero\": \"davver\",\n  \"dawson\": \"dawson\",\n  \"dax\": \"dax\",\n  \"day\": \"day\",\n  \"daya\": \"day\",\n  \"dayal\": \"dayal\",\n  \"dazi\": \"daz\",\n  \"dc\": \"dc\",\n  \"dd\": \"dd\",\n  \"ddla\": \"ddla\",\n  \"de\": \"de\",\n  \"deaglio\": \"deagl\",\n  \"deal\": \"deal\",\n  \"deb\": \"deb\",\n  \"debba\": \"debb\",\n  \"debbano\": \"debb\",\n  \"debbie\": \"debb\",\n  \"debbo\": \"debb\",\n  \"debbono\": \"debb\",\n  \"deben\": \"deben\",\n  \"debita\": \"deb\",\n  \"debite\": \"deb\",\n  \"debiti\": \"deb\",\n  \"debito\": \"deb\",\n  \"debitore\": \"debitor\",\n  \"debitoria\": \"debitor\",\n  \"debitrice\": \"debitr\",\n  \"debituccio\": \"debitucc\",\n  \"debol\": \"debol\",\n  \"debole\": \"debol\",\n  \"debolezza\": \"debolezz\",\n  \"debolezze\": \"debolezz\",\n  \"deboli\": \"debol\",\n  \"debolmente\": \"debol\",\n  \"deborah\": \"deborah\",\n  \"debuerat\": \"debuerat\",\n  \"dec\": \"dec\",\n  \"decade\": \"decad\",\n  \"decadenza\": \"decadent\",\n  \"decadere\": \"decad\",\n  \"decadis\": \"decadis\",\n  \"decalogo\": \"decalog\",\n  \"deceduta\": \"deced\",\n  \"deceduto\": \"deced\",\n  \"decembre\": \"decembr\",\n  \"decennale\": \"decennal\",\n  \"decenni\": \"decenn\",\n  \"decente\": \"decent\",\n  \"decentramento\": \"decentr\",\n  \"decentrata\": \"decentr\",\n  \"decentrato\": \"decentr\",\n  \"decesso\": \"decess\",\n  \"decide\": \"decid\",\n  \"decidendo\": \"decid\",\n  \"decider\": \"decider\",\n  \"deciderà\": \"decid\",\n  \"decidere\": \"decid\",\n  \"decidersi\": \"decid\",\n  \"decidesse\": \"decidess\",\n  \"decidessimo\": \"decidessim\",\n  \"decideva\": \"decid\",\n  \"decidevano\": \"decid\",\n  \"decidono\": \"decid\",\n  \"decifrare\": \"decifr\",\n  \"decima\": \"decim\",\n  \"decimata\": \"decim\",\n  \"decimato\": \"decim\",\n  \"decimo\": \"decim\",\n  \"decina\": \"decin\",\n  \"decine\": \"decin\",\n  \"decisa\": \"decis\",\n  \"decisamente\": \"decis\",\n  \"decise\": \"decis\",\n  \"decisi\": \"decis\",\n  \"decisionali\": \"decisional\",\n  \"decisione\": \"decision\",\n  \"decisioni\": \"decision\",\n  \"decisiva\": \"decis\",\n  \"decisivi\": \"decis\",\n  \"decisivo\": \"decis\",\n  \"deciso\": \"decis\",\n  \"deckert\": \"deckert\",\n  \"declamava\": \"declam\",\n  \"declamazioni\": \"declam\",\n  \"declino\": \"declin\",\n  \"decolla\": \"decoll\",\n  \"decollano\": \"decoll\",\n  \"decollarono\": \"decoll\",\n  \"decollati\": \"decoll\",\n  \"decoro\": \"decor\",\n  \"decorosa\": \"decor\",\n  \"decoroso\": \"decor\",\n  \"decremento\": \"decrement\",\n  \"decrepite\": \"decrep\",\n  \"decretare\": \"decret\",\n  \"decretate\": \"decret\",\n  \"decretati\": \"decret\",\n  \"decretato\": \"decret\",\n  \"decretazione\": \"decret\",\n  \"decreti\": \"decret\",\n  \"decreto\": \"decret\",\n  \"decsioni\": \"decsion\",\n  \"decurioni\": \"decurion\",\n  \"dedica\": \"dedic\",\n  \"dedicano\": \"dedic\",\n  \"dedicarsi\": \"dedic\",\n  \"dedicata\": \"dedic\",\n  \"dedicate\": \"dedic\",\n  \"dedicati\": \"dedic\",\n  \"dedicato\": \"dedic\",\n  \"dedicatosi\": \"dedicat\",\n  \"dedicava\": \"dedic\",\n  \"dedicò\": \"dedic\",\n  \"dedizione\": \"dedizion\",\n  \"dedotti\": \"dedott\",\n  \"deduciamo\": \"deduc\",\n  \"deducibilità\": \"deducibil\",\n  \"deduttivo\": \"dedutt\",\n  \"def\": \"def\",\n  \"defence\": \"defenc\",\n  \"deferente\": \"deferent\",\n  \"deferenza\": \"deferent\",\n  \"deferimento\": \"defer\",\n  \"deffinire\": \"deffin\",\n  \"defformità\": \"defform\",\n  \"deficit\": \"deficit\",\n  \"deficitari\": \"deficitar\",\n  \"defilata\": \"defil\",\n  \"definendo\": \"defin\",\n  \"definendola\": \"defin\",\n  \"definendoli\": \"defin\",\n  \"definendolo\": \"defin\",\n  \"definendosi\": \"defin\",\n  \"definire\": \"defin\",\n  \"definisca\": \"defin\",\n  \"definisce\": \"defin\",\n  \"definisco\": \"defin\",\n  \"definiscono\": \"defin\",\n  \"definita\": \"defin\",\n  \"definite\": \"defin\",\n  \"definiti\": \"defin\",\n  \"definitiva\": \"definit\",\n  \"definitivamente\": \"definit\",\n  \"definitive\": \"definit\",\n  \"definitivi\": \"definit\",\n  \"definitivo\": \"definit\",\n  \"definito\": \"defin\",\n  \"definizione\": \"definizion\",\n  \"definizioni\": \"definizion\",\n  \"definzione\": \"definzion\",\n  \"deflagrata\": \"deflagr\",\n  \"deflagrazione\": \"deflagr\",\n  \"deflusso\": \"defluss\",\n  \"deformandone\": \"deform\",\n  \"deformare\": \"deform\",\n  \"deforme\": \"deform\",\n  \"deformi\": \"deform\",\n  \"defunto\": \"defunt\",\n  \"degenerazione\": \"degener\",\n  \"degl\": \"degl\",\n  \"degli\": \"degl\",\n  \"degna\": \"degn\",\n  \"degnamente\": \"degn\",\n  \"degnazione\": \"degnazion\",\n  \"degne\": \"degn\",\n  \"degni\": \"degn\",\n  \"degnino\": \"degnin\",\n  \"degno\": \"degn\",\n  \"degradando\": \"degrad\",\n  \"degradati\": \"degrad\",\n  \"degrado\": \"degrad\",\n  \"dei\": \"dei\",\n  \"deì\": \"deì\",\n  \"deiezione\": \"deiezion\",\n  \"deisel\": \"deisel\",\n  \"deja\": \"dej\",\n  \"del\": \"del\",\n  \"dela\": \"del\",\n  \"delatore\": \"delator\",\n  \"dele\": \"del\",\n  \"delecour\": \"delecour\",\n  \"delega\": \"deleg\",\n  \"delegati\": \"deleg\",\n  \"delegato\": \"deleg\",\n  \"delegazione\": \"deleg\",\n  \"delegazioni\": \"deleg\",\n  \"delel\": \"delel\",\n  \"deleplanke\": \"deleplank\",\n  \"delhi\": \"delh\",\n  \"delhì\": \"delh\",\n  \"delibera\": \"deliber\",\n  \"deliberare\": \"deliber\",\n  \"deliberatamente\": \"deliberat\",\n  \"deliberati\": \"deliber\",\n  \"deliberato\": \"deliber\",\n  \"deliberava\": \"deliber\",\n  \"deliberazione\": \"deliber\",\n  \"deliberazioni\": \"deliber\",\n  \"delibere\": \"delib\",\n  \"deliberò\": \"delib\",\n  \"delic\": \"delic\",\n  \"delicata\": \"delic\",\n  \"delicate\": \"delic\",\n  \"delicati\": \"delic\",\n  \"delicatissimi\": \"delicatissim\",\n  \"delicato\": \"delic\",\n  \"delimitazione\": \"delimit\",\n  \"delineare\": \"delin\",\n  \"delinearsi\": \"delin\",\n  \"delineata\": \"delin\",\n  \"delineati\": \"delin\",\n  \"delineato\": \"delin\",\n  \"delinquenti\": \"delinquent\",\n  \"delinquere\": \"delinqu\",\n  \"deliranti\": \"delir\",\n  \"delirio\": \"delir\",\n  \"delitti\": \"delitt\",\n  \"delitto\": \"delitt\",\n  \"delizie\": \"deliz\",\n  \"delizioso\": \"deliz\",\n  \"dell\": \"dell\",\n  \"della\": \"dell\",\n  \"dellaq\": \"dellaq\",\n  \"dellas\": \"dellas\",\n  \"delle\": \"dell\",\n  \"delli\": \"dell\",\n  \"dellla\": \"delll\",\n  \"dello\": \"dell\",\n  \"dellòassistenza\": \"dellòassistent\",\n  \"delo\": \"del\",\n  \"delon\": \"delon\",\n  \"delrio\": \"delr\",\n  \"delta\": \"delt\",\n  \"deltalat\": \"deltalat\",\n  \"deludente\": \"deludent\",\n  \"delusa\": \"delus\",\n  \"deluse\": \"delus\",\n  \"delusione\": \"delusion\",\n  \"deluso\": \"delus\",\n  \"delvecchio\": \"delvecc\",\n  \"demagogia\": \"demagog\",\n  \"demagogo\": \"demagog\",\n  \"demandando\": \"demand\",\n  \"demandare\": \"demand\",\n  \"demaniale\": \"demanial\",\n  \"demaniali\": \"demanial\",\n  \"demarcazione\": \"demarc\",\n  \"demattè\": \"dematt\",\n  \"demeritato\": \"demerit\",\n  \"demi\": \"dem\",\n  \"demma\": \"demm\",\n  \"democratica\": \"democrat\",\n  \"democraticamente\": \"democrat\",\n  \"democratiche\": \"democrat\",\n  \"democratici\": \"democrat\",\n  \"democratico\": \"democrat\",\n  \"democratizzazione\": \"democratizz\",\n  \"democrazia\": \"democraz\",\n  \"democrazià\": \"democraz\",\n  \"democrazie\": \"democraz\",\n  \"democristiana\": \"democristian\",\n  \"democristiani\": \"democristian\",\n  \"democristiano\": \"democrist\",\n  \"demolendo\": \"demol\",\n  \"demolire\": \"demol\",\n  \"demoni\": \"demon\",\n  \"demòni\": \"demòn\",\n  \"demonio\": \"demon\",\n  \"demy\": \"demy\",\n  \"denaro\": \"denar\",\n  \"deneuve\": \"deneuv\",\n  \"denigratoria\": \"denigrator\",\n  \"dennis\": \"dennis\",\n  \"denominandole\": \"denomin\",\n  \"denominata\": \"denomin\",\n  \"denominati\": \"denomin\",\n  \"denominato\": \"denomin\",\n  \"denominazione\": \"denomin\",\n  \"denotavano\": \"denot\",\n  \"densa\": \"dens\",\n  \"dense\": \"dens\",\n  \"denso\": \"dens\",\n  \"dente\": \"dent\",\n  \"denti\": \"dent\",\n  \"dentista\": \"dentist\",\n  \"dentro\": \"dentr\",\n  \"denuncia\": \"denunc\",\n  \"denunciando\": \"denunc\",\n  \"denunciare\": \"denunc\",\n  \"denunciarli\": \"denunc\",\n  \"denunciarlo\": \"denunc\",\n  \"denunciata\": \"denunc\",\n  \"denunciati\": \"denunc\",\n  \"denunciato\": \"denunc\",\n  \"denunciet\": \"denunciet\",\n  \"denunziare\": \"denunz\",\n  \"denunziavan\": \"denunziavan\",\n  \"denunzie\": \"denunz\",\n  \"deo\": \"deo\",\n  \"deon\": \"deon\",\n  \"deontologicamente\": \"deontolog\",\n  \"depardieu\": \"depardieu\",\n  \"deplora\": \"deplor\",\n  \"deplorabile\": \"deplor\",\n  \"deplorabili\": \"deplor\",\n  \"deplorata\": \"deplor\",\n  \"deplorati\": \"deplor\",\n  \"deplorava\": \"deplor\",\n  \"depon\": \"depon\",\n  \"depone\": \"depon\",\n  \"deponevano\": \"depon\",\n  \"deponga\": \"depong\",\n  \"deporre\": \"deporr\",\n  \"deportare\": \"deport\",\n  \"deportazione\": \"deport\",\n  \"depose\": \"depos\",\n  \"depositar\": \"deposit\",\n  \"depositare\": \"deposit\",\n  \"depositari\": \"depositar\",\n  \"depositerà\": \"deposit\",\n  \"depositi\": \"depos\",\n  \"deposito\": \"depos\",\n  \"deposizione\": \"deposizion\",\n  \"deposta\": \"depost\",\n  \"deposto\": \"depost\",\n  \"deprendo\": \"depr\",\n  \"depressa\": \"depress\",\n  \"depresse\": \"depress\",\n  \"depressive\": \"depress\",\n  \"depurato\": \"depur\",\n  \"depurazione\": \"depur\",\n  \"deputata\": \"deput\",\n  \"deputati\": \"deput\",\n  \"deputato\": \"deput\",\n  \"der\": \"der\",\n  \"derby\": \"derby\",\n  \"derelitte\": \"derelitt\",\n  \"derelitti\": \"derelitt\",\n  \"deride\": \"derid\",\n  \"deriderle\": \"derid\",\n  \"deridevan\": \"deridevan\",\n  \"deridono\": \"derid\",\n  \"derisa\": \"deris\",\n  \"deriso\": \"deris\",\n  \"deriva\": \"der\",\n  \"derivano\": \"der\",\n  \"derivante\": \"deriv\",\n  \"derivanti\": \"deriv\",\n  \"derivati\": \"deriv\",\n  \"deriverà\": \"deriv\",\n  \"derivi\": \"der\",\n  \"deroga\": \"derog\",\n  \"derogando\": \"derog\",\n  \"derrata\": \"derr\",\n  \"derrate\": \"derr\",\n  \"derubata\": \"derub\",\n  \"des\": \"des\",\n  \"desailly\": \"desailly\",\n  \"desario\": \"desar\",\n  \"deschamps\": \"deschamps\",\n  \"desconsuelo\": \"desconsuel\",\n  \"descrisse\": \"descriss\",\n  \"descritta\": \"descritt\",\n  \"descritte\": \"descritt\",\n  \"descritti\": \"descritt\",\n  \"descritto\": \"descritt\",\n  \"descriuendo\": \"descriu\",\n  \"descrive\": \"descriv\",\n  \"descrivendo\": \"descriv\",\n  \"descriver\": \"descriver\",\n  \"descrivere\": \"descriv\",\n  \"descriveremo\": \"descriv\",\n  \"descriverle\": \"descriv\",\n  \"descriverlo\": \"descriv\",\n  \"descriveva\": \"descriv\",\n  \"descrizion\": \"descrizion\",\n  \"descrizione\": \"descrizion\",\n  \"descrizioni\": \"descrizion\",\n  \"deserta\": \"desert\",\n  \"deserte\": \"desert\",\n  \"deserti\": \"des\",\n  \"deserto\": \"desert\",\n  \"desfosses\": \"desfosses\",\n  \"desidera\": \"desider\",\n  \"desiderabile\": \"desider\",\n  \"desideran\": \"desideran\",\n  \"desiderar\": \"desider\",\n  \"desiderare\": \"desider\",\n  \"desiderarla\": \"desider\",\n  \"desiderarlo\": \"desider\",\n  \"desiderarsi\": \"desider\",\n  \"desiderasse\": \"desider\",\n  \"desiderata\": \"desider\",\n  \"desiderate\": \"desider\",\n  \"desiderati\": \"desider\",\n  \"desideratissimo\": \"desideratissim\",\n  \"desiderato\": \"desider\",\n  \"desiderava\": \"desider\",\n  \"desideravamo\": \"desider\",\n  \"desidererete\": \"desider\",\n  \"desideri\": \"desider\",\n  \"desidèri\": \"desidèr\",\n  \"desideriamo\": \"desider\",\n  \"desideriate\": \"desider\",\n  \"desiderio\": \"desider\",\n  \"desidero\": \"desider\",\n  \"desiderò\": \"desid\",\n  \"desiderosa\": \"desider\",\n  \"desideroso\": \"desider\",\n  \"designati\": \"design\",\n  \"designato\": \"design\",\n  \"designazioni\": \"design\",\n  \"desinando\": \"desin\",\n  \"desinare\": \"desin\",\n  \"desinarono\": \"desin\",\n  \"desinato\": \"desin\",\n  \"desinava\": \"desin\",\n  \"desinò\": \"desin\",\n  \"desolata\": \"desol\",\n  \"desolate\": \"desol\",\n  \"desolati\": \"desol\",\n  \"desolato\": \"desol\",\n  \"desolazione\": \"desol\",\n  \"despeinada\": \"despeinad\",\n  \"desse\": \"dess\",\n  \"dessero\": \"desser\",\n  \"desta\": \"dest\",\n  \"destare\": \"dest\",\n  \"destarsi\": \"dest\",\n  \"destasse\": \"dest\",\n  \"destava\": \"dest\",\n  \"destavano\": \"dest\",\n  \"desti\": \"dest\",\n  \"destinando\": \"destin\",\n  \"destinano\": \"destin\",\n  \"destinare\": \"destin\",\n  \"destinata\": \"destin\",\n  \"destinatari\": \"destinatar\",\n  \"destinate\": \"destin\",\n  \"destinati\": \"destin\",\n  \"destinato\": \"destin\",\n  \"destinazione\": \"destin\",\n  \"destini\": \"destin\",\n  \"destino\": \"destin\",\n  \"destituito\": \"destitu\",\n  \"desto\": \"dest\",\n  \"destò\": \"dest\",\n  \"destra\": \"destr\",\n  \"destramente\": \"destr\",\n  \"destre\": \"destr\",\n  \"destrezza\": \"destrezz\",\n  \"destri\": \"destr\",\n  \"destro\": \"destr\",\n  \"detective\": \"detect\",\n  \"detenere\": \"deten\",\n  \"deteneva\": \"deten\",\n  \"deteniamo\": \"deten\",\n  \"detentore\": \"detentor\",\n  \"detenuta\": \"deten\",\n  \"detenute\": \"deten\",\n  \"detenuti\": \"deten\",\n  \"detenuto\": \"deten\",\n  \"detenzione\": \"detenzion\",\n  \"deterioramento\": \"deterior\",\n  \"determianre\": \"determianr\",\n  \"determina\": \"determin\",\n  \"determinante\": \"determin\",\n  \"determinanti\": \"determin\",\n  \"determinare\": \"determin\",\n  \"determinata\": \"determin\",\n  \"determinate\": \"determin\",\n  \"determinati\": \"determin\",\n  \"determinato\": \"determin\",\n  \"determinazione\": \"determin\",\n  \"determinerà\": \"determin\",\n  \"determini\": \"determin\",\n  \"detersivo\": \"deters\",\n  \"detestabile\": \"detest\",\n  \"detestare\": \"detest\",\n  \"detestino\": \"detestin\",\n  \"detiene\": \"detien\",\n  \"detonatori\": \"deton\",\n  \"detta\": \"dett\",\n  \"dettagli\": \"dettagl\",\n  \"dettagliate\": \"dettagl\",\n  \"dettagliato\": \"dettagl\",\n  \"dettaglio\": \"dettagl\",\n  \"dettando\": \"dett\",\n  \"dettata\": \"dett\",\n  \"dettate\": \"dett\",\n  \"dette\": \"dett\",\n  \"detti\": \"dett\",\n  \"detto\": \"dett\",\n  \"dettò\": \"dett\",\n  \"dettogli\": \"dettogl\",\n  \"dettolo\": \"dettol\",\n  \"deutsche\": \"deutsc\",\n  \"dev\": \"dev\",\n  \"deva\": \"dev\",\n  \"devan\": \"devan\",\n  \"devastano\": \"devast\",\n  \"devastante\": \"devast\",\n  \"devastato\": \"devast\",\n  \"devastazion\": \"devastazion\",\n  \"deve\": \"dev\",\n  \"devi\": \"dev\",\n  \"deviare\": \"dev\",\n  \"deviata\": \"dev\",\n  \"deviato\": \"dev\",\n  \"deviazione\": \"deviazion\",\n  \"devils\": \"devils\",\n  \"devo\": \"dev\",\n  \"devon\": \"devon\",\n  \"devono\": \"dev\",\n  \"devozione\": \"devozion\",\n  \"dexterae\": \"dextera\",\n  \"df\": \"df\",\n  \"dg\": \"dg\",\n  \"dges\": \"dges\",\n  \"dgl\": \"dgl\",\n  \"dhahran\": \"dhahran\",\n  \"dhaka\": \"dhak\",\n  \"dhzuna\": \"dhzun\",\n  \"di\": \"di\",\n  \"dì\": \"dì\",\n  \"dia\": \"dia\",\n  \"diabetici\": \"diabet\",\n  \"diabolica\": \"diabol\",\n  \"diaboliche\": \"diabol\",\n  \"diabolici\": \"diabol\",\n  \"diafano\": \"diaf\",\n  \"diagnosticata\": \"diagnostic\",\n  \"diagonale\": \"diagonal\",\n  \"diahann\": \"diahann\",\n  \"dialetto\": \"dialett\",\n  \"dializzati\": \"dializz\",\n  \"dialogare\": \"dialog\",\n  \"dialogo\": \"dialog\",\n  \"diametro\": \"diametr\",\n  \"diamine\": \"diamin\",\n  \"diamo\": \"diam\",\n  \"diamogli\": \"diamogl\",\n  \"diana\": \"dian\",\n  \"diane\": \"dian\",\n  \"diano\": \"dian\",\n  \"diari\": \"diar\",\n  \"diatribe\": \"diatrib\",\n  \"diavoleria\": \"diavoler\",\n  \"diavolerie\": \"diavoler\",\n  \"diavoletto\": \"diavolett\",\n  \"diavoli\": \"diavol\",\n  \"diavolo\": \"diavol\",\n  \"dibattano\": \"dibatt\",\n  \"dibatte\": \"dibatt\",\n  \"dibattendo\": \"dibatt\",\n  \"dibattendosi\": \"dibatt\",\n  \"dibatterà\": \"dibatt\",\n  \"dibattere\": \"dibatt\",\n  \"dibattersi\": \"dibatt\",\n  \"dibatteva\": \"dibatt\",\n  \"dibattimentale\": \"dibattimental\",\n  \"dibattimento\": \"dibatt\",\n  \"dibattito\": \"dibatt\",\n  \"dibattuta\": \"dibatt\",\n  \"dic\": \"dic\",\n  \"dica\": \"dic\",\n  \"dican\": \"dican\",\n  \"dicano\": \"dic\",\n  \"dicara\": \"dicar\",\n  \"dicastero\": \"dicaster\",\n  \"dice\": \"dic\",\n  \"dicembre\": \"dicembr\",\n  \"dicendo\": \"dic\",\n  \"dicendogli\": \"dic\",\n  \"dicendole\": \"dic\",\n  \"dicendolo\": \"dic\",\n  \"dicesse\": \"dicess\",\n  \"dicessero\": \"dic\",\n  \"dicessi\": \"dicess\",\n  \"diceste\": \"dicest\",\n  \"diceua\": \"diceu\",\n  \"diceva\": \"dic\",\n  \"dicevan\": \"dicevan\",\n  \"dicevano\": \"dic\",\n  \"dicevate\": \"dic\",\n  \"dicevo\": \"dic\",\n  \"dichairata\": \"dichair\",\n  \"dichiara\": \"dichiar\",\n  \"dichiarando\": \"dichiar\",\n  \"dichiarare\": \"dichiar\",\n  \"dichiararsi\": \"dichiar\",\n  \"dichiarasse\": \"dichiar\",\n  \"dichiarata\": \"dichiar\",\n  \"dichiarate\": \"dichiar\",\n  \"dichiarati\": \"dichiar\",\n  \"dichiarato\": \"dichiar\",\n  \"dichiarava\": \"dichiar\",\n  \"dichiarazione\": \"dichiar\",\n  \"dichiarazioni\": \"dichiar\",\n  \"dichiari\": \"dichiar\",\n  \"dichiaro\": \"dichiar\",\n  \"dichiarò\": \"dichiar\",\n  \"dichiazioni\": \"dichiazion\",\n  \"dici\": \"dic\",\n  \"diciam\": \"diciam\",\n  \"diciamo\": \"dic\",\n  \"diciamolo\": \"diciamol\",\n  \"diciannovenne\": \"diciannovenn\",\n  \"diciassettenne\": \"diciassettenn\",\n  \"diciottenne\": \"diciottenn\",\n  \"diciotto\": \"diciott\",\n  \"dicitore\": \"dicitor\",\n  \"dicitura\": \"dicitur\",\n  \"dico\": \"dic\",\n  \"dicon\": \"dicon\",\n  \"dicono\": \"dic\",\n  \"dicotomia\": \"dicotom\",\n  \"didier\": \"didier\",\n  \"die\": \"die\",\n  \"dié\": \"diè\",\n  \"dieci\": \"diec\",\n  \"diecimila\": \"diecimil\",\n  \"diede\": \"died\",\n  \"diedero\": \"dieder\",\n  \"diego\": \"dieg\",\n  \"dieta\": \"diet\",\n  \"dieter\": \"dieter\",\n  \"dietologi\": \"dietolog\",\n  \"dietologo\": \"dietolog\",\n  \"dietro\": \"dietr\",\n  \"dietrologie\": \"dietrolog\",\n  \"difatti\": \"difatt\",\n  \"difendano\": \"difend\",\n  \"difende\": \"dif\",\n  \"difendendo\": \"difend\",\n  \"difenderanno\": \"difend\",\n  \"difendere\": \"difend\",\n  \"difenderla\": \"difend\",\n  \"difenderle\": \"difend\",\n  \"difenderlo\": \"difend\",\n  \"difendermi\": \"difend\",\n  \"difendersi\": \"difend\",\n  \"difendeva\": \"difend\",\n  \"difendono\": \"difend\",\n  \"difensiva\": \"difens\",\n  \"difensive\": \"difens\",\n  \"difensivo\": \"difens\",\n  \"difensore\": \"difensor\",\n  \"difensori\": \"difensor\",\n  \"difesa\": \"difes\",\n  \"difese\": \"difes\",\n  \"difesi\": \"difes\",\n  \"difeso\": \"difes\",\n  \"difetta\": \"difett\",\n  \"difetti\": \"difett\",\n  \"difetto\": \"difett\",\n  \"difettosi\": \"difett\",\n  \"difettucci\": \"difettucc\",\n  \"diffamato\": \"diffam\",\n  \"diffamazione\": \"diffam\",\n  \"differenti\": \"different\",\n  \"differenza\": \"different\",\n  \"differenze\": \"different\",\n  \"differenzia\": \"differenz\",\n  \"differenziale\": \"differenzial\",\n  \"differenziate\": \"differenz\",\n  \"differenziato\": \"differenz\",\n  \"differenziazione\": \"differenz\",\n  \"differire\": \"differ\",\n  \"differiscono\": \"differ\",\n  \"differito\": \"differ\",\n  \"difficile\": \"difficil\",\n  \"difficili\": \"difficil\",\n  \"difficilmente\": \"difficil\",\n  \"difficolta\": \"difficolt\",\n  \"difficoltà\": \"difficolt\",\n  \"difficoltoso\": \"difficolt\",\n  \"diffidare\": \"diffid\",\n  \"diffidati\": \"diffid\",\n  \"diffide\": \"diffid\",\n  \"diffidenti\": \"diffident\",\n  \"diffidenza\": \"diffident\",\n  \"diffinisce\": \"diffin\",\n  \"diffonde\": \"diffond\",\n  \"diffondere\": \"diffond\",\n  \"diffondersi\": \"diffond\",\n  \"diffondeva\": \"diffond\",\n  \"diffusa\": \"diffus\",\n  \"diffuse\": \"diffus\",\n  \"diffusi\": \"diffus\",\n  \"diffusione\": \"diffusion\",\n  \"diffuso\": \"diffus\",\n  \"difronte\": \"difront\",\n  \"dig\": \"dig\",\n  \"diga\": \"dig\",\n  \"digestione\": \"digestion\",\n  \"diggiuna\": \"diggiun\",\n  \"diggy\": \"diggy\",\n  \"digitale\": \"digital\",\n  \"digiuno\": \"digiun\",\n  \"digli\": \"digl\",\n  \"dignità\": \"dignit\",\n  \"dignitari\": \"dignitar\",\n  \"dignitoso\": \"dignit\",\n  \"digo\": \"dig\",\n  \"digos\": \"digos\",\n  \"digrignando\": \"digrign\",\n  \"digrignar\": \"digrign\",\n  \"diht\": \"diht\",\n  \"diktat\": \"diktat\",\n  \"dil\": \"dil\",\n  \"dilaniata\": \"dilan\",\n  \"dilata\": \"dil\",\n  \"dilatandovisi\": \"dilatandovis\",\n  \"dilatato\": \"dilat\",\n  \"dilavate\": \"dil\",\n  \"dilavato\": \"dilav\",\n  \"dilazione\": \"dilazion\",\n  \"dilazioni\": \"dilazion\",\n  \"dileguando\": \"dilegu\",\n  \"dileguandosi\": \"dilegu\",\n  \"dileguata\": \"dilegu\",\n  \"dileguate\": \"dilegu\",\n  \"dileguati\": \"dilegu\",\n  \"dileguavano\": \"dilegu\",\n  \"dilemma\": \"dilemm\",\n  \"diletta\": \"dilett\",\n  \"dilettante\": \"dilett\",\n  \"dilettanti\": \"dilett\",\n  \"dilettava\": \"dilett\",\n  \"dilettevole\": \"dilettevol\",\n  \"diligente\": \"diligent\",\n  \"diligentemente\": \"diligent\",\n  \"diligenter\": \"diligenter\",\n  \"diligentia\": \"diligent\",\n  \"diligentissimamente\": \"diligentissim\",\n  \"diligenza\": \"diligent\",\n  \"diligenze\": \"diligent\",\n  \"dille\": \"dill\",\n  \"dilucidare\": \"dilucid\",\n  \"diluire\": \"dilu\",\n  \"diluviavano\": \"diluv\",\n  \"diluvio\": \"diluv\",\n  \"dimagrante\": \"dimagr\",\n  \"dimenando\": \"dimen\",\n  \"dimenare\": \"dimen\",\n  \"dimenarsi\": \"dimen\",\n  \"dimenasse\": \"dimen\",\n  \"dimenava\": \"dimen\",\n  \"dimenò\": \"dimen\",\n  \"dimensione\": \"dimension\",\n  \"dimensioni\": \"dimension\",\n  \"dimentica\": \"diment\",\n  \"dimenticando\": \"dimentic\",\n  \"dimenticanza\": \"dimentic\",\n  \"dimenticare\": \"dimentic\",\n  \"dimenticarla\": \"dimentic\",\n  \"dimenticarli\": \"dimentic\",\n  \"dimenticarmi\": \"dimentic\",\n  \"dimenticarsi\": \"dimentic\",\n  \"dimenticarvi\": \"dimentic\",\n  \"dimenticasse\": \"dimentic\",\n  \"dimenticata\": \"dimentic\",\n  \"dimenticate\": \"dimentic\",\n  \"dimenticatevi\": \"dimenticat\",\n  \"dimenticati\": \"dimentic\",\n  \"dimenticato\": \"dimentic\",\n  \"dimenticava\": \"dimentic\",\n  \"dimenticavo\": \"dimentic\",\n  \"dimenticherebbe\": \"dimentic\",\n  \"dimentichi\": \"diment\",\n  \"dimentichiamo\": \"dimentic\",\n  \"dimenticò\": \"dimentic\",\n  \"dimessa\": \"dimess\",\n  \"dimesso\": \"dimess\",\n  \"dimestichezza\": \"dimestichezz\",\n  \"dimette\": \"dimett\",\n  \"dimettendosi\": \"dimett\",\n  \"dimetterà\": \"dimett\",\n  \"dimettersi\": \"dimett\",\n  \"dimezzamento\": \"dimezz\",\n  \"dimezzato\": \"dimezz\",\n  \"diminuire\": \"diminu\",\n  \"diminuisce\": \"diminu\",\n  \"diminuissero\": \"diminu\",\n  \"diminuita\": \"diminu\",\n  \"diminuite\": \"diminu\",\n  \"diminuiti\": \"diminu\",\n  \"diminuivano\": \"diminu\",\n  \"diminuzione\": \"diminu\",\n  \"dimissionario\": \"dimissionar\",\n  \"dimissioni\": \"dimission\",\n  \"dimitri\": \"dimitr\",\n  \"dimmi\": \"dimm\",\n  \"dimodoche\": \"dimodoc\",\n  \"dimodoché\": \"dimodoc\",\n  \"dimora\": \"dimor\",\n  \"dimorar\": \"dimor\",\n  \"dimorare\": \"dimor\",\n  \"dimorato\": \"dimor\",\n  \"dimororno\": \"dimororn\",\n  \"dimostra\": \"dimostr\",\n  \"dimostran\": \"dimostran\",\n  \"dimostrando\": \"dimostr\",\n  \"dimostrano\": \"dimostr\",\n  \"dimostrar\": \"dimostr\",\n  \"dimostrare\": \"dimostr\",\n  \"dimostrargli\": \"dimostr\",\n  \"dimostrata\": \"dimostr\",\n  \"dimostrato\": \"dimostr\",\n  \"dimostrava\": \"dimostr\",\n  \"dimostrazione\": \"dimostr\",\n  \"dimostrazioni\": \"dimostr\",\n  \"dimostrino\": \"dimostrin\",\n  \"dimostrò\": \"dimostr\",\n  \"din\": \"din\",\n  \"dina\": \"din\",\n  \"dinacci\": \"dinacc\",\n  \"dinamica\": \"dinam\",\n  \"dinamiche\": \"dinam\",\n  \"dinamico\": \"dinam\",\n  \"dinamismo\": \"dinam\",\n  \"dinamitardo\": \"dinamitard\",\n  \"dinanzi\": \"dinanz\",\n  \"dinastia\": \"dinast\",\n  \"dinelli\": \"dinell\",\n  \"dini\": \"din\",\n  \"dinka\": \"dink\",\n  \"dinnanzi\": \"dinnanz\",\n  \"dino\": \"din\",\n  \"dintorni\": \"dintorn\",\n  \"dio\": \"dio\",\n  \"diocesane\": \"diocesan\",\n  \"diocesani\": \"diocesan\",\n  \"diocesi\": \"dioces\",\n  \"diogene\": \"diogen\",\n  \"dione\": \"dion\",\n  \"dionigi\": \"dionig\",\n  \"dios\": \"dios\",\n  \"dipaneranno\": \"dipan\",\n  \"dipartimenti\": \"dipart\",\n  \"dipartimento\": \"dipart\",\n  \"dipende\": \"dip\",\n  \"dipendente\": \"dipendent\",\n  \"dipendenti\": \"dipendent\",\n  \"dipendenza\": \"dipendent\",\n  \"dipendenze\": \"dipendent\",\n  \"dipenderà\": \"dipend\",\n  \"dipendere\": \"dipend\",\n  \"dipenderebbero\": \"dipend\",\n  \"dipendesse\": \"dipendess\",\n  \"dipendeva\": \"dipend\",\n  \"dipendevano\": \"dipend\",\n  \"dipendiamo\": \"dipend\",\n  \"dipinge\": \"diping\",\n  \"dipinger\": \"dipinger\",\n  \"dipingere\": \"diping\",\n  \"dipingerlo\": \"diping\",\n  \"dipingeva\": \"diping\",\n  \"dipingevan\": \"dipingevan\",\n  \"dipingono\": \"diping\",\n  \"dipinta\": \"dipint\",\n  \"dipintavi\": \"dipint\",\n  \"dipinte\": \"dipint\",\n  \"dipinto\": \"dipint\",\n  \"dipintogli\": \"dipintogl\",\n  \"diploma\": \"diplom\",\n  \"diplomatica\": \"diplomat\",\n  \"diplomatiche\": \"diplomat\",\n  \"diplomatici\": \"diplomat\",\n  \"diplomatico\": \"diplomat\",\n  \"diplomazia\": \"diplomaz\",\n  \"diplomazie\": \"diplomaz\",\n  \"diportista\": \"diport\",\n  \"diporto\": \"diport\",\n  \"dipresso\": \"dipress\",\n  \"dir\": \"dir\",\n  \"dirà\": \"dir\",\n  \"diradar\": \"dirad\",\n  \"diradata\": \"dirad\",\n  \"diramando\": \"diram\",\n  \"diramarsi\": \"diram\",\n  \"diramata\": \"diram\",\n  \"diramate\": \"diram\",\n  \"diramato\": \"diram\",\n  \"diranno\": \"dirann\",\n  \"dirci\": \"dirc\",\n  \"dire\": \"dir\",\n  \"direbbe\": \"direbb\",\n  \"direbbeciò\": \"direbbec\",\n  \"directa\": \"direct\",\n  \"director\": \"director\",\n  \"direi\": \"dire\",\n  \"diremo\": \"direm\",\n  \"direte\": \"dir\",\n  \"diretta\": \"dirett\",\n  \"direttamente\": \"dirett\",\n  \"direttaq\": \"direttaq\",\n  \"dirette\": \"dirett\",\n  \"diretti\": \"dirett\",\n  \"direttissima\": \"direttissim\",\n  \"direttiva\": \"dirett\",\n  \"direttive\": \"dirett\",\n  \"direttivo\": \"dirett\",\n  \"diretto\": \"dirett\",\n  \"direttore\": \"direttor\",\n  \"direttori\": \"direttor\",\n  \"direttrici\": \"direttr\",\n  \"direzione\": \"direzion\",\n  \"direzioni\": \"direzion\",\n  \"dirgli\": \"dirgl\",\n  \"diricciar\": \"diricc\",\n  \"dirige\": \"dirig\",\n  \"dirigente\": \"dirigent\",\n  \"dirigenti\": \"dirigent\",\n  \"dirigenza\": \"dirigent\",\n  \"dirigenziali\": \"dirigenzial\",\n  \"dirigere\": \"dirig\",\n  \"dirigerlo\": \"dirig\",\n  \"dirigeva\": \"dirig\",\n  \"dirigevano\": \"dirig\",\n  \"dirigista\": \"dirig\",\n  \"dirigistica\": \"dirigist\",\n  \"dirigono\": \"dirig\",\n  \"dirimenti\": \"dir\",\n  \"dirimpetto\": \"dirimpett\",\n  \"diritta\": \"diritt\",\n  \"diritte\": \"diritt\",\n  \"diritti\": \"diritt\",\n  \"diritto\": \"diritt\",\n  \"dirittona\": \"diritton\",\n  \"dirittone\": \"diritton\",\n  \"dirizza\": \"dirizz\",\n  \"dirizzando\": \"dirizz\",\n  \"dirizzatura\": \"dirizzatur\",\n  \"dirla\": \"dirl\",\n  \"dirle\": \"dirl\",\n  \"dirlo\": \"dirl\",\n  \"dirmela\": \"dirmel\",\n  \"dirmele\": \"dirmel\",\n  \"dirmi\": \"dirm\",\n  \"dirne\": \"dirn\",\n  \"dirò\": \"dir\",\n  \"diroccata\": \"dirocc\",\n  \"diroccato\": \"dirocc\",\n  \"diroccavano\": \"dirocc\",\n  \"dirottamente\": \"dirott\",\n  \"dirotto\": \"dirott\",\n  \"dirsi\": \"dirs\",\n  \"dirtela\": \"dirtel\",\n  \"dirti\": \"dirt\",\n  \"dirupi\": \"dirup\",\n  \"dirupo\": \"dirup\",\n  \"dirvelo\": \"dirvel\",\n  \"dirvene\": \"dirven\",\n  \"dirvi\": \"dirv\",\n  \"disabbelliscono\": \"disabbell\",\n  \"disabitata\": \"disabit\",\n  \"disabitate\": \"disabit\",\n  \"disabitato\": \"disabit\",\n  \"disaccordo\": \"disaccord\",\n  \"disaggregare\": \"disaggreg\",\n  \"disagi\": \"disag\",\n  \"disagiata\": \"disag\",\n  \"disagiati\": \"disag\",\n  \"disagio\": \"disag\",\n  \"disanimati\": \"disanim\",\n  \"disanimato\": \"disanim\",\n  \"disapprovare\": \"disapprov\",\n  \"disapprovazione\": \"disapprov\",\n  \"disappunto\": \"disappunt\",\n  \"disarcionato\": \"disarcion\",\n  \"disarma\": \"disarm\",\n  \"disarmare\": \"disarm\",\n  \"disarmata\": \"disarm\",\n  \"disarmate\": \"disarm\",\n  \"disarmato\": \"disarm\",\n  \"disarmonia\": \"disarmon\",\n  \"disastro\": \"disastr\",\n  \"disastrosa\": \"disastr\",\n  \"disastrosi\": \"disastr\",\n  \"disastroso\": \"disastr\",\n  \"disattenta\": \"disattent\",\n  \"disattento\": \"disattent\",\n  \"disattivando\": \"disattiv\",\n  \"disavanzi\": \"disavanz\",\n  \"disavventura\": \"disavventur\",\n  \"discacciar\": \"discacc\",\n  \"discacciarle\": \"discacc\",\n  \"discacciarlo\": \"discacc\",\n  \"discariche\": \"discar\",\n  \"discende\": \"disc\",\n  \"discerna\": \"discern\",\n  \"discesa\": \"disces\",\n  \"discesero\": \"disceser\",\n  \"discettando\": \"discett\",\n  \"dischetto\": \"dischett\",\n  \"disciolto\": \"disciolt\",\n  \"disciplina\": \"disciplin\",\n  \"disciplinare\": \"disciplin\",\n  \"disciplinari\": \"disciplinar\",\n  \"disco\": \"disc\",\n  \"discografici\": \"discograf\",\n  \"discordanti\": \"discord\",\n  \"discordi\": \"discord\",\n  \"discordie\": \"discord\",\n  \"discorre\": \"discorr\",\n  \"discorrendo\": \"discorr\",\n  \"discorrere\": \"discorr\",\n  \"discorreremo\": \"discorr\",\n  \"discorrerne\": \"discorr\",\n  \"discorrerti\": \"discorr\",\n  \"discorreva\": \"discorr\",\n  \"discorrevan\": \"discorrevan\",\n  \"discorrevo\": \"discorr\",\n  \"discorsi\": \"discors\",\n  \"discorso\": \"discors\",\n  \"discoste\": \"discost\",\n  \"discosto\": \"discost\",\n  \"discostò\": \"discost\",\n  \"discovery\": \"discovery\",\n  \"discreta\": \"discret\",\n  \"discrete\": \"discr\",\n  \"discreti\": \"discret\",\n  \"discreto\": \"discret\",\n  \"discrezion\": \"discrezion\",\n  \"discrezione\": \"discrezion\",\n  \"discriminata\": \"discrimin\",\n  \"discriminato\": \"discrimin\",\n  \"discriminazione\": \"discrimin\",\n  \"discriminazioni\": \"discrimin\",\n  \"discuetrà\": \"discuetr\",\n  \"discussa\": \"discuss\",\n  \"discusse\": \"discuss\",\n  \"discussi\": \"discuss\",\n  \"discussione\": \"discussion\",\n  \"discussioni\": \"discussion\",\n  \"discusso\": \"discuss\",\n  \"discute\": \"disc\",\n  \"discutendo\": \"discut\",\n  \"discuter\": \"discuter\",\n  \"discuterà\": \"discut\",\n  \"discuteranno\": \"discut\",\n  \"discutere\": \"discut\",\n  \"discutibile\": \"discut\",\n  \"disdirebbero\": \"disd\",\n  \"disdirsi\": \"disd\",\n  \"disegna\": \"disegn\",\n  \"disegnare\": \"disegn\",\n  \"disegnarè\": \"disegnar\",\n  \"disegnata\": \"disegn\",\n  \"disegnato\": \"disegn\",\n  \"disegnava\": \"disegn\",\n  \"disegni\": \"disegn\",\n  \"disegno\": \"disegn\",\n  \"disegnò\": \"disegn\",\n  \"disequilibrata\": \"disequilibr\",\n  \"diserta\": \"disert\",\n  \"disfaceva\": \"disfac\",\n  \"disfar\": \"disf\",\n  \"disfare\": \"disf\",\n  \"disfarsi\": \"disf\",\n  \"disfatta\": \"disfatt\",\n  \"disfatte\": \"disfatt\",\n  \"disfatto\": \"disfatt\",\n  \"disgiunte\": \"disgiunt\",\n  \"disgrazia\": \"disgraz\",\n  \"disgraziati\": \"disgraz\",\n  \"disgraziato\": \"disgraz\",\n  \"disgrazie\": \"disgraz\",\n  \"disgreganti\": \"disgreg\",\n  \"disgregare\": \"disgreg\",\n  \"disgustati\": \"disgust\",\n  \"disgustato\": \"disgust\",\n  \"disgusti\": \"disgust\",\n  \"disgusto\": \"disgust\",\n  \"disgustosa\": \"disgust\",\n  \"disgustoso\": \"disgust\",\n  \"disillusione\": \"disillu\",\n  \"disimbrogliato\": \"disimbrogl\",\n  \"disimpegnarsene\": \"disimpegn\",\n  \"disimpegni\": \"disimpegn\",\n  \"disimpegno\": \"disimpegn\",\n  \"disingannato\": \"disingann\",\n  \"disingannò\": \"disingann\",\n  \"disinquinamento\": \"disinquin\",\n  \"disinteressato\": \"disinteress\",\n  \"disinteresse\": \"disinteress\",\n  \"disinvolta\": \"disinvolt\",\n  \"disinvolti\": \"disinvolt\",\n  \"disinvolto\": \"disinvolt\",\n  \"disinvoltura\": \"disinvoltur\",\n  \"dislocare\": \"disloc\",\n  \"dislocati\": \"disloc\",\n  \"dislocazione\": \"disloc\",\n  \"dismessa\": \"dismess\",\n  \"dismissione\": \"dismission\",\n  \"dismissioni\": \"dismission\",\n  \"disoccupato\": \"disoccup\",\n  \"disoccupazione\": \"disoccup\",\n  \"disonorare\": \"disonor\",\n  \"disordinare\": \"disordin\",\n  \"disordinata\": \"disordin\",\n  \"disordinati\": \"disordin\",\n  \"disordinato\": \"disordin\",\n  \"disordinava\": \"disordin\",\n  \"disordine\": \"disordin\",\n  \"disordini\": \"disordin\",\n  \"disorientamento\": \"disorient\",\n  \"disotterrare\": \"disotterr\",\n  \"dispacci\": \"dispacc\",\n  \"dispacciamento\": \"dispacc\",\n  \"dispaccio\": \"dispacc\",\n  \"disparati\": \"dispar\",\n  \"disparere\": \"dispar\",\n  \"disparità\": \"dispar\",\n  \"disparitas\": \"disparitas\",\n  \"disparte\": \"dispart\",\n  \"disparve\": \"disparv\",\n  \"dispendio\": \"dispend\",\n  \"dispensa\": \"dispens\",\n  \"dispensando\": \"dispens\",\n  \"dispensarvi\": \"dispens\",\n  \"dispensasse\": \"dispens\",\n  \"dispensati\": \"dispens\",\n  \"dispensatore\": \"dispens\",\n  \"dispensavano\": \"dispens\",\n  \"dispense\": \"dispens\",\n  \"dispensi\": \"dispens\",\n  \"disperando\": \"disper\",\n  \"disperata\": \"disper\",\n  \"disperatamente\": \"disperat\",\n  \"disperate\": \"disper\",\n  \"disperati\": \"disper\",\n  \"disperato\": \"disper\",\n  \"disperazione\": \"disper\",\n  \"disperdere\": \"disperd\",\n  \"disperdersi\": \"disperd\",\n  \"disperdesse\": \"disperdess\",\n  \"dispersa\": \"dispers\",\n  \"disperse\": \"dispers\",\n  \"dispersi\": \"disp\",\n  \"disperso\": \"dispers\",\n  \"dispetti\": \"dispett\",\n  \"dispetto\": \"dispett\",\n  \"dispettoso\": \"dispett\",\n  \"dispiaccia\": \"dispiacc\",\n  \"dispiace\": \"dispiac\",\n  \"dispiacerà\": \"dispiac\",\n  \"dispiacere\": \"dispiac\",\n  \"dispiacerebbe\": \"dispiac\",\n  \"dispiacergli\": \"dispiac\",\n  \"dispiaceri\": \"dispiacer\",\n  \"dispiacesse\": \"dispiacess\",\n  \"dispiaceva\": \"dispiac\",\n  \"dispiacevole\": \"dispiacevol\",\n  \"dispiaciuta\": \"dispiac\",\n  \"dispiaciuto\": \"dispiac\",\n  \"dispiacque\": \"dispiacqu\",\n  \"dispiegamenti\": \"dispieg\",\n  \"dispiegato\": \"dispieg\",\n  \"dispone\": \"dispon\",\n  \"disponendoli\": \"dispon\",\n  \"disponendosi\": \"dispon\",\n  \"disponesse\": \"disponess\",\n  \"disponeva\": \"dispon\",\n  \"disponga\": \"dispong\",\n  \"dispongono\": \"dispong\",\n  \"disponi\": \"dispon\",\n  \"disponibile\": \"dispon\",\n  \"disponibili\": \"dispon\",\n  \"disponibilità\": \"disponibil\",\n  \"disponible\": \"disponibl\",\n  \"disporle\": \"disporl\",\n  \"disporli\": \"disporl\",\n  \"disporrà\": \"disporr\",\n  \"disporre\": \"disporr\",\n  \"disporsi\": \"dispors\",\n  \"disporvi\": \"disporv\",\n  \"dispose\": \"dispos\",\n  \"disposero\": \"disposer\",\n  \"dispositivi\": \"disposit\",\n  \"dispositivo\": \"disposit\",\n  \"disposizion\": \"disposizion\",\n  \"disposizione\": \"disposizion\",\n  \"disposizioni\": \"disposizion\",\n  \"disposta\": \"dispost\",\n  \"disposte\": \"dispost\",\n  \"disposti\": \"dispost\",\n  \"dispostivo\": \"dispost\",\n  \"disposto\": \"dispost\",\n  \"disprezzato\": \"disprezz\",\n  \"disprezzo\": \"disprezz\",\n  \"disputa\": \"disp\",\n  \"disputassero\": \"disput\",\n  \"disputata\": \"disput\",\n  \"disputate\": \"disput\",\n  \"disputati\": \"disput\",\n  \"disputato\": \"disput\",\n  \"disputava\": \"disput\",\n  \"dispute\": \"disp\",\n  \"disputerà\": \"disput\",\n  \"disputeranno\": \"disput\",\n  \"disquisizioni\": \"disquisizion\",\n  \"dissapunto\": \"dissapunt\",\n  \"disse\": \"diss\",\n  \"disselciato\": \"disselc\",\n  \"disseminato\": \"dissemin\",\n  \"dissensi\": \"dissens\",\n  \"dissenso\": \"dissens\",\n  \"disseppellire\": \"disseppell\",\n  \"disser\": \"disser\",\n  \"dissero\": \"disser\",\n  \"dissertazioni\": \"dissert\",\n  \"dissestato\": \"dissest\",\n  \"dissesto\": \"dissest\",\n  \"dissi\": \"diss\",\n  \"dissidente\": \"dissident\",\n  \"dissidenti\": \"dissident\",\n  \"dissidenza\": \"dissident\",\n  \"dissidio\": \"dissid\",\n  \"dissimulando\": \"dissimul\",\n  \"dissimulare\": \"dissimul\",\n  \"dissimulata\": \"dissimul\",\n  \"dissimulate\": \"dissimul\",\n  \"dissimulazione\": \"dissimul\",\n  \"dissipare\": \"dissip\",\n  \"dissipata\": \"dissip\",\n  \"dissipato\": \"dissip\",\n  \"dissipò\": \"dissip\",\n  \"dissodava\": \"dissod\",\n  \"dissolvere\": \"dissolv\",\n  \"dissolverebbe\": \"dissolv\",\n  \"dissuaderlo\": \"dissuad\",\n  \"dista\": \"dist\",\n  \"distaccarsi\": \"distacc\",\n  \"distaccata\": \"distacc\",\n  \"distacchi\": \"distacc\",\n  \"distacco\": \"distacc\",\n  \"distante\": \"distant\",\n  \"distanti\": \"distant\",\n  \"distanza\": \"distanz\",\n  \"distanze\": \"distanz\",\n  \"distendere\": \"distend\",\n  \"distendersi\": \"distend\",\n  \"distesa\": \"distes\",\n  \"distesi\": \"distes\",\n  \"disteso\": \"distes\",\n  \"distillati\": \"distill\",\n  \"distingue\": \"distingu\",\n  \"distinguendosi\": \"distingu\",\n  \"distinguer\": \"distinguer\",\n  \"distinguere\": \"distingu\",\n  \"distingueva\": \"distingu\",\n  \"distinguevano\": \"distingu\",\n  \"distinguo\": \"distingu\",\n  \"distinse\": \"distins\",\n  \"distinta\": \"distint\",\n  \"distintamente\": \"distint\",\n  \"distinte\": \"distint\",\n  \"distinti\": \"distint\",\n  \"distintivi\": \"distint\",\n  \"distintivo\": \"distint\",\n  \"distinto\": \"distint\",\n  \"distinzion\": \"distinzion\",\n  \"distinzione\": \"distinzion\",\n  \"distinzioni\": \"distinzion\",\n  \"distizioni\": \"distizion\",\n  \"distorcono\": \"distorc\",\n  \"distorsione\": \"distorsion\",\n  \"distorsioni\": \"distorsion\",\n  \"distorta\": \"distort\",\n  \"distraendola\": \"distr\",\n  \"distrar\": \"distr\",\n  \"distrarre\": \"distrarr\",\n  \"distratta\": \"distratt\",\n  \"distratto\": \"distratt\",\n  \"distrazione\": \"distrazion\",\n  \"distrazioni\": \"distrazion\",\n  \"distretti\": \"distrett\",\n  \"distretto\": \"distrett\",\n  \"distrettuale\": \"distrettual\",\n  \"distribuì\": \"distribu\",\n  \"distribuirà\": \"distribu\",\n  \"distribuire\": \"distribu\",\n  \"distribuirle\": \"distribu\",\n  \"distribuirsi\": \"distribu\",\n  \"distribuisce\": \"distribu\",\n  \"distribuisse\": \"distribuiss\",\n  \"distribuita\": \"distribu\",\n  \"distribuite\": \"distribu\",\n  \"distribuiti\": \"distribu\",\n  \"distribuito\": \"distribu\",\n  \"distribuiva\": \"distribu\",\n  \"distribuivan\": \"distribuivan\",\n  \"distribuivano\": \"distribu\",\n  \"distributore\": \"distributor\",\n  \"distributori\": \"distributor\",\n  \"distributrici\": \"distributr\",\n  \"distribuzione\": \"distribu\",\n  \"distrigare\": \"distrig\",\n  \"distrigarsi\": \"distrig\",\n  \"distrugge\": \"distrugg\",\n  \"distrugger\": \"distrugger\",\n  \"distruggerà\": \"distrugg\",\n  \"distruggersi\": \"distrugg\",\n  \"distruggevano\": \"distrugg\",\n  \"distrusse\": \"distruss\",\n  \"distrutta\": \"distrutt\",\n  \"distrutti\": \"distrutt\",\n  \"distruttiva\": \"distrutt\",\n  \"distruttive\": \"distrutt\",\n  \"distrutto\": \"distrutt\",\n  \"distruzion\": \"distruzion\",\n  \"distruzione\": \"distruzion\",\n  \"disturbar\": \"disturb\",\n  \"disturbare\": \"disturb\",\n  \"disturbarla\": \"disturb\",\n  \"disturbarlo\": \"disturb\",\n  \"disturbata\": \"disturb\",\n  \"disturbate\": \"disturb\",\n  \"disturbato\": \"disturb\",\n  \"disturbo\": \"disturb\",\n  \"disubbidire\": \"disubbid\",\n  \"disuguale\": \"disugual\",\n  \"disuguali\": \"disugual\",\n  \"disumana\": \"disuman\",\n  \"disuso\": \"disus\",\n  \"disviare\": \"disv\",\n  \"dita\": \"dit\",\n  \"ditacci\": \"ditacc\",\n  \"dite\": \"dit\",\n  \"ditegli\": \"ditegl\",\n  \"ditele\": \"ditel\",\n  \"ditemelo\": \"ditemel\",\n  \"ditemi\": \"ditem\",\n  \"dito\": \"dit\",\n  \"ditta\": \"ditt\",\n  \"dittatore\": \"dittator\",\n  \"dittatori\": \"dittator\",\n  \"dittatura\": \"dittatur\",\n  \"ditte\": \"ditt\",\n  \"div\": \"div\",\n  \"diva\": \"div\",\n  \"divani\": \"divan\",\n  \"divaricate\": \"divaric\",\n  \"dive\": \"div\",\n  \"divelto\": \"divelt\",\n  \"divenendo\": \"diven\",\n  \"divenendogli\": \"diven\",\n  \"divengano\": \"diveng\",\n  \"divengon\": \"divengon\",\n  \"divenir\": \"diven\",\n  \"divenire\": \"diven\",\n  \"divenirgli\": \"diven\",\n  \"divenirlo\": \"diven\",\n  \"diveniva\": \"diven\",\n  \"divenivan\": \"divenivan\",\n  \"divenivano\": \"diven\",\n  \"divenne\": \"divenn\",\n  \"divennero\": \"divenner\",\n  \"diventa\": \"divent\",\n  \"diventando\": \"divent\",\n  \"diventano\": \"divent\",\n  \"diventar\": \"divent\",\n  \"diventare\": \"divent\",\n  \"diventarne\": \"divent\",\n  \"diventaron\": \"diventaron\",\n  \"diventata\": \"divent\",\n  \"diventate\": \"divent\",\n  \"diventati\": \"divent\",\n  \"diventato\": \"divent\",\n  \"diventava\": \"divent\",\n  \"diventavan\": \"diventavan\",\n  \"diventerà\": \"divent\",\n  \"diventeranno\": \"divent\",\n  \"diventi\": \"divent\",\n  \"diventiamo\": \"divent\",\n  \"diventin\": \"diventin\",\n  \"diventino\": \"diventin\",\n  \"diventò\": \"divent\",\n  \"divenuta\": \"diven\",\n  \"divenute\": \"diven\",\n  \"divenuti\": \"diven\",\n  \"divenuto\": \"diven\",\n  \"diverbio\": \"diverb\",\n  \"divergenti\": \"divergent\",\n  \"divergenze\": \"divergent\",\n  \"diversa\": \"divers\",\n  \"diversamente\": \"divers\",\n  \"diverse\": \"divers\",\n  \"diversi\": \"div\",\n  \"diversì\": \"divers\",\n  \"diversificata\": \"diversific\",\n  \"diversificazione\": \"diversif\",\n  \"diversione\": \"diversion\",\n  \"diversità\": \"divers\",\n  \"diverso\": \"divers\",\n  \"divertente\": \"divertent\",\n  \"divertenti\": \"divertent\",\n  \"divertimenti\": \"divert\",\n  \"divertimento\": \"divert\",\n  \"divertire\": \"divert\",\n  \"divertirti\": \"divert\",\n  \"divertiti\": \"divert\",\n  \"divertito\": \"divert\",\n  \"divertivano\": \"divert\",\n  \"diverto\": \"divert\",\n  \"divertono\": \"divert\",\n  \"divezzarlo\": \"divezz\",\n  \"divezzarsene\": \"divezz\",\n  \"divezzati\": \"divezz\",\n  \"diviato\": \"div\",\n  \"divide\": \"divid\",\n  \"dividendo\": \"divid\",\n  \"dividendosi\": \"divid\",\n  \"divider\": \"divider\",\n  \"dividere\": \"divid\",\n  \"dividersi\": \"divid\",\n  \"divideva\": \"divid\",\n  \"dividevano\": \"divid\",\n  \"dividon\": \"dividon\",\n  \"divien\": \"divien\",\n  \"diviene\": \"divien\",\n  \"divieto\": \"diviet\",\n  \"divincola\": \"divincol\",\n  \"divincolandosi\": \"divincol\",\n  \"divincolasse\": \"divincol\",\n  \"divini\": \"divin\",\n  \"divisa\": \"divis\",\n  \"divise\": \"divis\",\n  \"divisero\": \"diviser\",\n  \"divisi\": \"divis\",\n  \"divisione\": \"division\",\n  \"divisioni\": \"division\",\n  \"divismo\": \"divism\",\n  \"diviso\": \"divis\",\n  \"divo\": \"div\",\n  \"divora\": \"divor\",\n  \"divorar\": \"divor\",\n  \"divorata\": \"divor\",\n  \"divorati\": \"divor\",\n  \"divorato\": \"divor\",\n  \"divorziare\": \"divorz\",\n  \"divorziato\": \"divorz\",\n  \"divorzio\": \"divorz\",\n  \"divorziò\": \"divorz\",\n  \"divoti\": \"divot\",\n  \"divozione\": \"divozion\",\n  \"divozioni\": \"divozion\",\n  \"divulgare\": \"divulg\",\n  \"divulgazione\": \"divulg\",\n  \"diw\": \"diw\",\n  \"dizione\": \"dizion\",\n  \"dj\": \"dj\",\n  \"dl\": \"dl\",\n  \"dli\": \"dli\",\n  \"dlscendere\": \"dlscend\",\n  \"dm\": \"dm\",\n  \"dmf\": \"dmf\",\n  \"dn\": \"dn\",\n  \"do\": \"do\",\n  \"dobbiam\": \"dobbiam\",\n  \"dobbiamo\": \"dobb\",\n  \"doc\": \"doc\",\n  \"docente\": \"docent\",\n  \"docenti\": \"docent\",\n  \"docilità\": \"docil\",\n  \"doctor\": \"doctor\",\n  \"documenta\": \"document\",\n  \"documentari\": \"documentar\",\n  \"documentario\": \"documentar\",\n  \"documentarista\": \"documentar\",\n  \"documentazione\": \"document\",\n  \"documenti\": \"document\",\n  \"documento\": \"document\",\n  \"dodici\": \"dodic\",\n  \"dodo\": \"dod\",\n  \"dog\": \"dog\",\n  \"doga\": \"dog\",\n  \"doganali\": \"doganal\",\n  \"doge\": \"dog\",\n  \"doglia\": \"dogl\",\n  \"dogma\": \"dogm\",\n  \"dolce\": \"dolc\",\n  \"dolcemente\": \"dolcement\",\n  \"dolcezza\": \"dolcezz\",\n  \"dolcezze\": \"dolcezz\",\n  \"dolci\": \"dolc\",\n  \"dole\": \"dol\",\n  \"dolente\": \"dolent\",\n  \"dolenti\": \"dolent\",\n  \"dolesse\": \"doless\",\n  \"doll\": \"doll\",\n  \"dollari\": \"dollar\",\n  \"dollaro\": \"dollar\",\n  \"dolomiti\": \"dolom\",\n  \"dolor\": \"dolor\",\n  \"dolore\": \"dolor\",\n  \"dolori\": \"dolor\",\n  \"dolorosa\": \"dolor\",\n  \"dolorosamente\": \"dolor\",\n  \"dolorose\": \"dolor\",\n  \"dolorosi\": \"dolor\",\n  \"doloroso\": \"dolor\",\n  \"doman\": \"doman\",\n  \"domanda\": \"domand\",\n  \"domandando\": \"domand\",\n  \"domandandogli\": \"domand\",\n  \"domandandosi\": \"domand\",\n  \"domandar\": \"domand\",\n  \"domandare\": \"domand\",\n  \"domandargli\": \"domand\",\n  \"domandarmi\": \"domand\",\n  \"domandarne\": \"domand\",\n  \"domandarono\": \"domand\",\n  \"domandasse\": \"domand\",\n  \"domandate\": \"domand\",\n  \"domandatene\": \"domandaten\",\n  \"domandato\": \"domand\",\n  \"domandava\": \"domand\",\n  \"domandavo\": \"domand\",\n  \"domande\": \"domand\",\n  \"domanderà\": \"domand\",\n  \"domandi\": \"domand\",\n  \"domando\": \"dom\",\n  \"domandò\": \"domand\",\n  \"domani\": \"doman\",\n  \"domata\": \"dom\",\n  \"domate\": \"dom\",\n  \"domati\": \"dom\",\n  \"domattina\": \"domattin\",\n  \"domeneddio\": \"domenedd\",\n  \"domenica\": \"domen\",\n  \"domenicale\": \"domenical\",\n  \"domenicali\": \"domenical\",\n  \"domeniche\": \"domen\",\n  \"domenico\": \"domen\",\n  \"domestica\": \"domest\",\n  \"domestiche\": \"domest\",\n  \"domestico\": \"domest\",\n  \"domicilio\": \"domicil\",\n  \"domificazione\": \"domif\",\n  \"domina\": \"domin\",\n  \"dominante\": \"domin\",\n  \"dominanti\": \"domin\",\n  \"dominarle\": \"domin\",\n  \"dominasse\": \"domin\",\n  \"dominata\": \"domin\",\n  \"dominato\": \"domin\",\n  \"dominatrice\": \"domin\",\n  \"dominava\": \"domin\",\n  \"domingo\": \"doming\",\n  \"domini\": \"domin\",\n  \"dominik\": \"dominik\",\n  \"dominio\": \"domin\",\n  \"dominion\": \"dominion\",\n  \"domiziana\": \"domizian\",\n  \"domum\": \"domum\",\n  \"don\": \"don\",\n  \"dona\": \"don\",\n  \"donà\": \"don\",\n  \"donadoni\": \"donadon\",\n  \"donald\": \"donald\",\n  \"donare\": \"don\",\n  \"donat\": \"donat\",\n  \"donatella\": \"donatell\",\n  \"donati\": \"don\",\n  \"donato\": \"don\",\n  \"donatori\": \"donator\",\n  \"donazione\": \"donazion\",\n  \"donazioni\": \"donazion\",\n  \"dond\": \"dond\",\n  \"donde\": \"dond\",\n  \"dondolasse\": \"dondol\",\n  \"donelli\": \"donell\",\n  \"dongwu\": \"dongwu\",\n  \"doni\": \"don\",\n  \"donna\": \"donn\",\n  \"donne\": \"donn\",\n  \"donnicciola\": \"donnicciol\",\n  \"dono\": \"don\",\n  \"donzelle\": \"donzell\",\n  \"doo\": \"doo\",\n  \"doping\": \"doping\",\n  \"dopo\": \"dop\",\n  \"dopodomani\": \"dopodoman\",\n  \"dopopartita\": \"dopopart\",\n  \"doppia\": \"dopp\",\n  \"doppiamente\": \"dopp\",\n  \"doppiata\": \"dopp\",\n  \"doppiato\": \"dopp\",\n  \"doppie\": \"dopp\",\n  \"doppio\": \"dopp\",\n  \"dor\": \"dor\",\n  \"dorantes\": \"dorantes\",\n  \"dorgali\": \"dorgal\",\n  \"doriano\": \"dor\",\n  \"dorma\": \"dorm\",\n  \"dorme\": \"dorm\",\n  \"dormì\": \"dorm\",\n  \"dormir\": \"dorm\",\n  \"dormirai\": \"dorm\",\n  \"dormire\": \"dorm\",\n  \"dormita\": \"dorm\",\n  \"dormitina\": \"dormitin\",\n  \"dormito\": \"dorm\",\n  \"dormitòri\": \"dormitòr\",\n  \"dormitorio\": \"dormitor\",\n  \"dormiva\": \"dorm\",\n  \"dormivano\": \"dorm\",\n  \"dornbusch\": \"dornbusc\",\n  \"dornbush\": \"dornbush\",\n  \"dorso\": \"dors\",\n  \"dose\": \"dos\",\n  \"dossetti\": \"dossett\",\n  \"dossier\": \"dossier\",\n  \"dotarsi\": \"dot\",\n  \"dotata\": \"dot\",\n  \"dotate\": \"dot\",\n  \"dotato\": \"dot\",\n  \"dotazione\": \"dotazion\",\n  \"dote\": \"dot\",\n  \"doti\": \"dot\",\n  \"dotò\": \"dot\",\n  \"dott\": \"dott\",\n  \"dotta\": \"dott\",\n  \"dotti\": \"dott\",\n  \"dotto\": \"dott\",\n  \"dottor\": \"dottor\",\n  \"dottore\": \"dottor\",\n  \"dottoressa\": \"dottoress\",\n  \"dottori\": \"dottor\",\n  \"dottrina\": \"dottrin\",\n  \"dottrinalmente\": \"dottrinal\",\n  \"dottrine\": \"dottrin\",\n  \"douadi\": \"douad\",\n  \"doue\": \"dou\",\n  \"doueua\": \"doueu\",\n  \"douglas\": \"douglas\",\n  \"dourebbe\": \"dourebb\",\n  \"dov\": \"dov\",\n  \"dove\": \"dov\",\n  \"dové\": \"dov\",\n  \"dovendo\": \"dov\",\n  \"dover\": \"dover\",\n  \"doverci\": \"dov\",\n  \"dovere\": \"dov\",\n  \"doveri\": \"dover\",\n  \"doverlo\": \"dov\",\n  \"dovermene\": \"dov\",\n  \"doveroso\": \"dover\",\n  \"doversi\": \"dov\",\n  \"dovesse\": \"dovess\",\n  \"dovessero\": \"dov\",\n  \"dovessi\": \"dovess\",\n  \"dovessimo\": \"dovessim\",\n  \"dovete\": \"dov\",\n  \"dovette\": \"dovett\",\n  \"dovettero\": \"dovetter\",\n  \"doveva\": \"dov\",\n  \"dovevamo\": \"dov\",\n  \"dovevan\": \"dovevan\",\n  \"dovevano\": \"dov\",\n  \"dovevi\": \"dov\",\n  \"dovevo\": \"dov\",\n  \"doviziosi\": \"doviz\",\n  \"dovizioso\": \"doviz\",\n  \"dovrà\": \"dovr\",\n  \"dovranno\": \"dovrann\",\n  \"dovrebb\": \"dovrebb\",\n  \"dovrebbbe\": \"dovrebbb\",\n  \"dovrebbe\": \"dovrebb\",\n  \"dovrebbero\": \"dovrebber\",\n  \"dovrei\": \"dovre\",\n  \"dovrem\": \"dovrem\",\n  \"dovremmo\": \"dovr\",\n  \"dovremo\": \"dovrem\",\n  \"dovrete\": \"dovr\",\n  \"dovunque\": \"dovunqu\",\n  \"dovuta\": \"dov\",\n  \"dovute\": \"dov\",\n  \"dovuti\": \"dov\",\n  \"dovuto\": \"dov\",\n  \"dow\": \"dow\",\n  \"down\": \"down\",\n  \"dozio\": \"doz\",\n  \"dozzina\": \"dozzin\",\n  \"dozzinale\": \"dozzinal\",\n  \"dp\": \"dp\",\n  \"dpr\": \"dpr\",\n  \"dps\": \"dps\",\n  \"dra\": \"dra\",\n  \"dracma\": \"dracm\",\n  \"dragaggio\": \"dragagg\",\n  \"dragon\": \"dragon\",\n  \"drake\": \"drak\",\n  \"dramma\": \"dramm\",\n  \"drammatica\": \"drammat\",\n  \"drammatici\": \"drammat\",\n  \"drammatico\": \"drammat\",\n  \"drancy\": \"drancy\",\n  \"drappello\": \"drappell\",\n  \"drappi\": \"drapp\",\n  \"drastica\": \"drastic\",\n  \"drastiche\": \"drastic\",\n  \"drastico\": \"drastic\",\n  \"dratshev\": \"dratshev\",\n  \"dresda\": \"dresd\",\n  \"dribbling\": \"dribbling\",\n  \"dritta\": \"dritt\",\n  \"driver\": \"driver\",\n  \"drnovsek\": \"drnovsek\",\n  \"droga\": \"drog\",\n  \"drogà\": \"drog\",\n  \"drusi\": \"drus\",\n  \"druso\": \"drus\",\n  \"dua\": \"dua\",\n  \"dubai\": \"duba\",\n  \"dubbi\": \"dubb\",\n  \"dubbia\": \"dubb\",\n  \"dubbiezza\": \"dubbiezz\",\n  \"dubbio\": \"dubb\",\n  \"dubbiosa\": \"dubbios\",\n  \"dubbiosamente\": \"dubbios\",\n  \"dubbiosi\": \"dubbios\",\n  \"dubita\": \"dub\",\n  \"dubitare\": \"dubit\",\n  \"dubitarne\": \"dubit\",\n  \"dubitasse\": \"dubit\",\n  \"dubitate\": \"dubit\",\n  \"dubitativa\": \"dubit\",\n  \"dubiti\": \"dub\",\n  \"dubito\": \"dub\",\n  \"dublino\": \"dublin\",\n  \"duca\": \"duc\",\n  \"ducati\": \"duc\",\n  \"ducato\": \"duc\",\n  \"ducatone\": \"ducaton\",\n  \"ducatoni\": \"ducaton\",\n  \"duce\": \"duc\",\n  \"duchessa\": \"duchess\",\n  \"duchovny\": \"duchovny\",\n  \"dudaiev\": \"dudaiev\",\n  \"dudikoff\": \"dudikoff\",\n  \"dudley\": \"dudley\",\n  \"due\": \"due\",\n  \"duelli\": \"duell\",\n  \"duello\": \"duell\",\n  \"duemila\": \"duemil\",\n  \"dugent\": \"dugent\",\n  \"dugento\": \"dugent\",\n  \"dugnano\": \"dugn\",\n  \"duna\": \"dun\",\n  \"dundee\": \"dunde\",\n  \"dunkerque\": \"dunkerqu\",\n  \"dunque\": \"dunqu\",\n  \"dununcia\": \"dununc\",\n  \"duodecim\": \"duodecim\",\n  \"duomo\": \"duom\",\n  \"duplicato\": \"duplic\",\n  \"duplice\": \"duplic\",\n  \"duque\": \"duqu\",\n  \"dur\": \"dur\",\n  \"dura\": \"dur\",\n  \"duramente\": \"dur\",\n  \"duran\": \"duran\",\n  \"durant\": \"durant\",\n  \"durante\": \"durant\",\n  \"durar\": \"dur\",\n  \"durare\": \"dur\",\n  \"durassero\": \"dur\",\n  \"durata\": \"dur\",\n  \"durato\": \"dur\",\n  \"duratro\": \"duratr\",\n  \"duraturo\": \"duratur\",\n  \"durava\": \"dur\",\n  \"durbano\": \"durb\",\n  \"dure\": \"dur\",\n  \"durerà\": \"dur\",\n  \"durezza\": \"durezz\",\n  \"duri\": \"dur\",\n  \"durissima\": \"durissim\",\n  \"durissime\": \"durissim\",\n  \"durissimi\": \"durissim\",\n  \"durissimo\": \"durissim\",\n  \"durlindane\": \"durlindan\",\n  \"duro\": \"dur\",\n  \"durò\": \"dur\",\n  \"dustin\": \"dustin\",\n  \"duttile\": \"duttil\",\n  \"dwayne\": \"dwayn\",\n  \"dyaln\": \"dyaln\",\n  \"dyken\": \"dyken\",\n  \"dylan\": \"dylan\",\n  \"dzhuna\": \"dzhun\",\n  \"e\": \"e\",\n  \"è\": \"è\",\n  \"eadem\": \"eadem\",\n  \"eam\": \"eam\",\n  \"eass\": \"eass\",\n  \"east\": \"east\",\n  \"easy\": \"easy\",\n  \"ebbe\": \"ebbe\",\n  \"ebbene\": \"ebben\",\n  \"ebber\": \"ebber\",\n  \"ebbero\": \"ebber\",\n  \"ebbi\": \"ebbi\",\n  \"ebbrezza\": \"ebbrezz\",\n  \"ebraica\": \"ebraic\",\n  \"ebraiche\": \"ebraic\",\n  \"ebraico\": \"ebraic\",\n  \"ebrei\": \"ebre\",\n  \"ebreo\": \"ebre\",\n  \"ec\": \"ec\",\n  \"ecc\": \"ecc\",\n  \"eccedere\": \"ecced\",\n  \"ecceduto\": \"ecced\",\n  \"eccell\": \"eccell\",\n  \"eccellente\": \"eccellent\",\n  \"eccellenti\": \"eccellent\",\n  \"eccellentì\": \"eccellent\",\n  \"eccellentiss\": \"eccellentiss\",\n  \"eccellentissimo\": \"eccellentissim\",\n  \"eccellenza\": \"eccellent\",\n  \"eccentrico\": \"eccentr\",\n  \"eccessi\": \"eccess\",\n  \"eccessiva\": \"eccess\",\n  \"eccessivamente\": \"eccess\",\n  \"eccessivi\": \"eccess\",\n  \"eccessivo\": \"eccess\",\n  \"eccesso\": \"eccess\",\n  \"eccetera\": \"ecceter\",\n  \"eccettuarne\": \"eccettu\",\n  \"eccettuate\": \"eccettu\",\n  \"eccezionale\": \"eccezional\",\n  \"eccezione\": \"eccezion\",\n  \"eccezioni\": \"eccezion\",\n  \"ecchimosi\": \"ecchim\",\n  \"eccidio\": \"eccid\",\n  \"eccitando\": \"eccit\",\n  \"eccitar\": \"eccit\",\n  \"eccitare\": \"eccit\",\n  \"eccitarono\": \"eccit\",\n  \"eccitato\": \"eccit\",\n  \"eccitava\": \"eccit\",\n  \"ecclesiali\": \"ecclesial\",\n  \"ecclesiastiche\": \"ecclesiast\",\n  \"ecclesiastici\": \"ecclesiast\",\n  \"ecclesiastico\": \"ecclesiast\",\n  \"ecco\": \"ecco\",\n  \"eccoli\": \"eccol\",\n  \"eccolo\": \"eccol\",\n  \"eccome\": \"eccom\",\n  \"eccomi\": \"eccom\",\n  \"eccone\": \"eccon\",\n  \"echeverry\": \"echeverry\",\n  \"echotel\": \"echotel\",\n  \"eclissavano\": \"ecliss\",\n  \"eco\": \"eco\",\n  \"ecologia\": \"ecolog\",\n  \"ecologica\": \"ecolog\",\n  \"ecologico\": \"ecolog\",\n  \"ecolsicilia\": \"ecolsicil\",\n  \"econogica\": \"econog\",\n  \"economia\": \"econom\",\n  \"economic\": \"economic\",\n  \"economica\": \"econom\",\n  \"economiche\": \"econom\",\n  \"economici\": \"econom\",\n  \"economico\": \"econom\",\n  \"economie\": \"econom\",\n  \"economista\": \"econom\",\n  \"economisti\": \"econom\",\n  \"ecosistema\": \"ecosistem\",\n  \"ecu\": \"ecu\",\n  \"ecuador\": \"ecuador\",\n  \"ecuadoriana\": \"ecuadorian\",\n  \"ecuadoriane\": \"ecuadorian\",\n  \"ecuadoriano\": \"ecuador\",\n  \"ed\": \"ed\",\n  \"eddie\": \"eddi\",\n  \"edelman\": \"edelman\",\n  \"eden\": \"eden\",\n  \"edf\": \"edf\",\n  \"edgar\": \"edgar\",\n  \"edicola\": \"edicol\",\n  \"edidit\": \"edidit\",\n  \"edif\": \"edif\",\n  \"edificare\": \"edific\",\n  \"edificato\": \"edific\",\n  \"edificazione\": \"edif\",\n  \"edifici\": \"edif\",\n  \"edificio\": \"edific\",\n  \"edifizi\": \"edifiz\",\n  \"edifizio\": \"edifiz\",\n  \"edilberto\": \"edilbert\",\n  \"edilizie\": \"ediliz\",\n  \"edilizio\": \"ediliz\",\n  \"ediliziò\": \"ediliz\",\n  \"edison\": \"edison\",\n  \"edit\": \"edit\",\n  \"edita\": \"edit\",\n  \"editi\": \"edit\",\n  \"editore\": \"editor\",\n  \"editori\": \"editor\",\n  \"editoria\": \"editor\",\n  \"editoriale\": \"editorial\",\n  \"editoriali\": \"editorial\",\n  \"editorialisti\": \"editorial\",\n  \"editrice\": \"editr\",\n  \"editti\": \"editt\",\n  \"editto\": \"editt\",\n  \"edizione\": \"edizion\",\n  \"edizioni\": \"edizion\",\n  \"edmondo\": \"edmond\",\n  \"edo\": \"edo\",\n  \"edoardo\": \"edoard\",\n  \"edouard\": \"edouard\",\n  \"eduardo\": \"eduard\",\n  \"educande\": \"educand\",\n  \"educare\": \"educ\",\n  \"educata\": \"educ\",\n  \"educati\": \"educ\",\n  \"educatissimi\": \"educatissim\",\n  \"educatrici\": \"educ\",\n  \"educazione\": \"educ\",\n  \"edward\": \"edward\",\n  \"efe\": \"efe\",\n  \"efettuato\": \"efettu\",\n  \"effe\": \"effe\",\n  \"effetti\": \"effett\",\n  \"effettiva\": \"effett\",\n  \"effettivamente\": \"effett\",\n  \"effettive\": \"effett\",\n  \"effettivo\": \"effett\",\n  \"effetto\": \"effett\",\n  \"effettuare\": \"effettu\",\n  \"effettuata\": \"effettu\",\n  \"effettuato\": \"effettu\",\n  \"effettuava\": \"effettu\",\n  \"efficace\": \"efficac\",\n  \"efficacemente\": \"efficac\",\n  \"efficaci\": \"efficac\",\n  \"efficacia\": \"efficac\",\n  \"efficiente\": \"efficient\",\n  \"efficienza\": \"efficient\",\n  \"effusione\": \"effusion\",\n  \"efib\": \"efib\",\n  \"efibanca\": \"efibanc\",\n  \"efim\": \"efim\",\n  \"efletto\": \"eflett\",\n  \"egalitè\": \"egalit\",\n  \"egeli\": \"egel\",\n  \"egemonia\": \"egemon\",\n  \"egerton\": \"egerton\",\n  \"egidio\": \"egid\",\n  \"egitto\": \"egitt\",\n  \"egiziana\": \"egizian\",\n  \"egiziane\": \"egizian\",\n  \"egli\": \"egli\",\n  \"ego\": \"ego\",\n  \"egregiamente\": \"egreg\",\n  \"egregii\": \"egreg\",\n  \"egregio\": \"egreg\",\n  \"eguaglianza\": \"eguagl\",\n  \"egualmente\": \"egual\",\n  \"eh\": \"eh\",\n  \"ehi\": \"ehi\",\n  \"ehlermann\": \"ehlermann\",\n  \"ehm\": \"ehm\",\n  \"ei\": \"ei\",\n  \"eib\": \"eib\",\n  \"eielo\": \"eiel\",\n  \"eil\": \"eil\",\n  \"einar\": \"ein\",\n  \"eisendle\": \"eisendl\",\n  \"ekeren\": \"ekeren\",\n  \"el\": \"el\",\n  \"elaborare\": \"elabor\",\n  \"elaborassero\": \"elabor\",\n  \"elaborata\": \"elabor\",\n  \"elaborate\": \"elabor\",\n  \"elaborati\": \"elabor\",\n  \"elaborato\": \"elabor\",\n  \"elaborazione\": \"elabor\",\n  \"elba\": \"elba\",\n  \"eldrege\": \"eldreg\",\n  \"eleanor\": \"eleanor\",\n  \"elecricitè\": \"elecricit\",\n  \"electrabel\": \"electrabel\",\n  \"electric\": \"electric\",\n  \"electricitè\": \"electricit\",\n  \"electricity\": \"electricity\",\n  \"elegante\": \"eleg\",\n  \"eleganza\": \"eleg\",\n  \"eleganze\": \"eleg\",\n  \"eleggerà\": \"elegg\",\n  \"eleggere\": \"elegg\",\n  \"elektrizitatswerke\": \"elektrizitatswerk\",\n  \"elelemnti\": \"elelemnt\",\n  \"elementare\": \"element\",\n  \"elementari\": \"elementar\",\n  \"elementi\": \"element\",\n  \"elemento\": \"element\",\n  \"elemosina\": \"elemosin\",\n  \"elemosine\": \"elemosin\",\n  \"elena\": \"elen\",\n  \"elencato\": \"elenc\",\n  \"elenchi\": \"elenc\",\n  \"elenco\": \"elenc\",\n  \"eleonora\": \"eleonor\",\n  \"elesse\": \"eless\",\n  \"eletrica\": \"eletr\",\n  \"eletta\": \"elett\",\n  \"elette\": \"elett\",\n  \"eletti\": \"elett\",\n  \"elettivi\": \"elett\",\n  \"elettivo\": \"elett\",\n  \"eletto\": \"elett\",\n  \"elettorale\": \"elettoral\",\n  \"elettorali\": \"elettoral\",\n  \"elettoralmente\": \"elettoral\",\n  \"elettorato\": \"elettor\",\n  \"elettore\": \"elettor\",\n  \"elettori\": \"elettor\",\n  \"elettrica\": \"elettr\",\n  \"elettriche\": \"elettr\",\n  \"elettrici\": \"elettr\",\n  \"elettricità\": \"elettr\",\n  \"elettrico\": \"elettr\",\n  \"elettrimmobiliare\": \"elettrimmobil\",\n  \"elettrizza\": \"elettrizz\",\n  \"elettromagnetica\": \"elettromagnet\",\n  \"elettronica\": \"elettron\",\n  \"elettrotecniche\": \"elettrotecn\",\n  \"elevata\": \"elev\",\n  \"elevate\": \"elev\",\n  \"elevati\": \"elev\",\n  \"elevato\": \"elev\",\n  \"elevava\": \"elev\",\n  \"elezione\": \"elezion\",\n  \"elezioni\": \"elezion\",\n  \"elia\": \"eli\",\n  \"elicotteri\": \"elicotter\",\n  \"elicottero\": \"elicotter\",\n  \"elimina\": \"elimin\",\n  \"eliminando\": \"elimin\",\n  \"eliminare\": \"elimin\",\n  \"eliminato\": \"elimin\",\n  \"eliminazione\": \"elimin\",\n  \"eliminerebbe\": \"elimin\",\n  \"elio\": \"eli\",\n  \"eliogabalo\": \"eliogabal\",\n  \"elisa\": \"elis\",\n  \"elisabetta\": \"elisabett\",\n  \"elkraft\": \"elkraft\",\n  \"ella\": \"ella\",\n  \"ellero\": \"eller\",\n  \"ellsworth\": \"ellsworth\",\n  \"elmento\": \"elment\",\n  \"elmo\": \"elmo\",\n  \"elogi\": \"elog\",\n  \"elogiare\": \"elog\",\n  \"elogio\": \"elog\",\n  \"eloquente\": \"eloquent\",\n  \"eloquenza\": \"eloquent\",\n  \"elsa\": \"elsa\",\n  \"elsam\": \"elsam\",\n  \"eluder\": \"eluder\",\n  \"eludere\": \"elud\",\n  \"eluderli\": \"elud\",\n  \"elvio\": \"elvi\",\n  \"em\": \"em\",\n  \"emanato\": \"eman\",\n  \"emanazione\": \"eman\",\n  \"emanazioni\": \"eman\",\n  \"emanò\": \"eman\",\n  \"emanrsi\": \"emanrs\",\n  \"emanuele\": \"emanuel\",\n  \"emarginazione\": \"emargin\",\n  \"embargo\": \"embarg\",\n  \"emblematicamente\": \"emblemat\",\n  \"emblematico\": \"emblemat\",\n  \"embrione\": \"embrion\",\n  \"emc\": \"emc\",\n  \"emden\": \"emden\",\n  \"eme\": \"eme\",\n  \"emenda\": \"emend\",\n  \"emendamenti\": \"emend\",\n  \"emendamento\": \"emend\",\n  \"emerg\": \"emerg\",\n  \"emerge\": \"emerg\",\n  \"emergenti\": \"emergent\",\n  \"emergenza\": \"emergent\",\n  \"emergenze\": \"emergent\",\n  \"emergere\": \"emerg\",\n  \"emerging\": \"emerging\",\n  \"emergono\": \"emerg\",\n  \"emerse\": \"emers\",\n  \"emersi\": \"emers\",\n  \"emerso\": \"emers\",\n  \"emessa\": \"emess\",\n  \"emessi\": \"emess\",\n  \"emesso\": \"emess\",\n  \"emettere\": \"emett\",\n  \"emi\": \"emi\",\n  \"emiel\": \"emiel\",\n  \"emigrazione\": \"emigr\",\n  \"emil\": \"emil\",\n  \"emilia\": \"emil\",\n  \"emiliane\": \"emilian\",\n  \"emiliani\": \"emilian\",\n  \"emiliano\": \"emil\",\n  \"emilio\": \"emil\",\n  \"eminenza\": \"eminent\",\n  \"emirati\": \"emir\",\n  \"emissario\": \"emissar\",\n  \"emissione\": \"emission\",\n  \"emittente\": \"emittent\",\n  \"emittenti\": \"emittent\",\n  \"emma\": \"emma\",\n  \"emolumenti\": \"emolument\",\n  \"emorragia\": \"emorrag\",\n  \"emotiva\": \"emot\",\n  \"emotive\": \"emot\",\n  \"emotivo\": \"emot\",\n  \"emozionante\": \"emozion\",\n  \"emozione\": \"emozion\",\n  \"emozioni\": \"emozion\",\n  \"empì\": \"empì\",\n  \"empiendo\": \"empi\",\n  \"empietà\": \"empiet\",\n  \"empio\": \"empi\",\n  \"empire\": \"empir\",\n  \"empireo\": \"empire\",\n  \"empoli\": \"empol\",\n  \"emulazione\": \"emul\",\n  \"en\": \"en\",\n  \"encicliche\": \"encicl\",\n  \"enclave\": \"enclav\",\n  \"endesa\": \"endes\",\n  \"endoume\": \"endoum\",\n  \"enea\": \"ene\",\n  \"enel\": \"enel\",\n  \"energetica\": \"energet\",\n  \"energetiche\": \"energet\",\n  \"energetici\": \"energet\",\n  \"energetico\": \"energet\",\n  \"energia\": \"energ\",\n  \"energico\": \"energ\",\n  \"energie\": \"energ\",\n  \"energy\": \"energy\",\n  \"enfant\": \"enfant\",\n  \"enfasi\": \"enfas\",\n  \"enfiate\": \"enfi\",\n  \"englaro\": \"englar\",\n  \"eni\": \"eni\",\n  \"enichem\": \"enichem\",\n  \"enimma\": \"enimm\",\n  \"enna\": \"enna\",\n  \"enne\": \"enne\",\n  \"ennesima\": \"ennesim\",\n  \"ennesimo\": \"ennesim\",\n  \"enorme\": \"enorm\",\n  \"enormi\": \"enorm\",\n  \"enormità\": \"enorm\",\n  \"enpacl\": \"enpacl\",\n  \"enrico\": \"enric\",\n  \"enriquez\": \"enriquez\",\n  \"ente\": \"ente\",\n  \"entelechia\": \"entelec\",\n  \"enterprise\": \"enterpris\",\n  \"enti\": \"enti\",\n  \"entità\": \"entit\",\n  \"entra\": \"entra\",\n  \"entraci\": \"entrac\",\n  \"entrambe\": \"entramb\",\n  \"entrambi\": \"entramb\",\n  \"entran\": \"entran\",\n  \"entrando\": \"entrand\",\n  \"entrandovi\": \"entrandov\",\n  \"entrano\": \"entran\",\n  \"entrar\": \"entrar\",\n  \"entrarci\": \"entrarc\",\n  \"entrare\": \"entrar\",\n  \"entrargli\": \"entrargl\",\n  \"entraron\": \"entraron\",\n  \"entrarono\": \"entrar\",\n  \"entrarvi\": \"entrarv\",\n  \"entrasse\": \"entrass\",\n  \"entrassero\": \"entrasser\",\n  \"entrata\": \"entrat\",\n  \"entrate\": \"entrat\",\n  \"entrati\": \"entrat\",\n  \"entrato\": \"entrat\",\n  \"entratovi\": \"entratov\",\n  \"entratura\": \"entratur\",\n  \"entrature\": \"entratur\",\n  \"entrava\": \"entrav\",\n  \"entravan\": \"entravan\",\n  \"entravano\": \"entrav\",\n  \"entrerà\": \"entrer\",\n  \"entreranno\": \"entrerann\",\n  \"entri\": \"entri\",\n  \"entriamo\": \"entriam\",\n  \"entrischen\": \"entrischen\",\n  \"entro\": \"entro\",\n  \"entrò\": \"entrò\",\n  \"entusiasma\": \"entusiasm\",\n  \"entusiasmi\": \"entusiasm\",\n  \"entusiasmo\": \"entusiasm\",\n  \"entusiasta\": \"entusiast\",\n  \"entusiasti\": \"entusiast\",\n  \"entusiastici\": \"entusiast\",\n  \"entusiastico\": \"entusiast\",\n  \"enumerati\": \"enumer\",\n  \"enumerazion\": \"enumerazion\",\n  \"enunciati\": \"enunc\",\n  \"enunciato\": \"enunc\",\n  \"enunciazione\": \"enunc\",\n  \"envireg\": \"envireg\",\n  \"enzo\": \"enzo\",\n  \"eologiato\": \"eolog\",\n  \"ep\": \"ep\",\n  \"epatite\": \"epat\",\n  \"ephraim\": \"ephraim\",\n  \"epicentro\": \"epicentr\",\n  \"epidemica\": \"epidem\",\n  \"episcopale\": \"episcopal\",\n  \"episcopali\": \"episcopal\",\n  \"episodi\": \"episod\",\n  \"episodio\": \"episod\",\n  \"epiteti\": \"epitet\",\n  \"epiteto\": \"epitet\",\n  \"epoca\": \"epoc\",\n  \"epoche\": \"epoc\",\n  \"eppure\": \"eppur\",\n  \"epreoccupano\": \"epreoccup\",\n  \"epresto\": \"eprest\",\n  \"epta\": \"epta\",\n  \"eptabond\": \"eptabond\",\n  \"eptacapital\": \"eptacapital\",\n  \"eptainternational\": \"eptainternational\",\n  \"eptamoney\": \"eptamoney\",\n  \"epulone\": \"epulon\",\n  \"eq\": \"eq\",\n  \"equilibrarsi\": \"equilibr\",\n  \"equilibrato\": \"equilibr\",\n  \"equilibrio\": \"equilibr\",\n  \"equipaggi\": \"equipagg\",\n  \"equipaggio\": \"equipagg\",\n  \"equiparare\": \"equipar\",\n  \"equiparazione\": \"equipar\",\n  \"equità\": \"equit\",\n  \"equitazione\": \"equit\",\n  \"equity\": \"equity\",\n  \"equivale\": \"equival\",\n  \"equivalente\": \"equivalent\",\n  \"equivalentè\": \"equivalent\",\n  \"equivaleva\": \"equival\",\n  \"equivoci\": \"equivoc\",\n  \"equivoco\": \"equivoc\",\n  \"equo\": \"equo\",\n  \"er\": \"er\",\n  \"era\": \"era\",\n  \"eran\": \"eran\",\n  \"eranio\": \"eran\",\n  \"erano\": \"eran\",\n  \"erant\": \"erant\",\n  \"erario\": \"erar\",\n  \"eravamo\": \"eravam\",\n  \"eravate\": \"erav\",\n  \"erba\": \"erba\",\n  \"erbacce\": \"erbacc\",\n  \"erbaccia\": \"erbacc\",\n  \"erbe\": \"erbe\",\n  \"erboso\": \"erbos\",\n  \"ercole\": \"ercol\",\n  \"ercoli\": \"ercol\",\n  \"erede\": \"ered\",\n  \"eredità\": \"ered\",\n  \"ereditare\": \"eredit\",\n  \"ereditaria\": \"ereditar\",\n  \"ereditato\": \"eredit\",\n  \"eremita\": \"erem\",\n  \"eresse\": \"eress\",\n  \"eretico\": \"eret\",\n  \"eretta\": \"erett\",\n  \"eretto\": \"erett\",\n  \"ergastolo\": \"ergastol\",\n  \"erge\": \"erge\",\n  \"ergife\": \"ergif\",\n  \"ergo\": \"ergo\",\n  \"eric\": \"eric\",\n  \"ericsson\": \"ericsson\",\n  \"eridania\": \"eridan\",\n  \"erigere\": \"erig\",\n  \"erik\": \"erik\",\n  \"erikkson\": \"erikkson\",\n  \"eriksson\": \"eriksson\",\n  \"erlanger\": \"erlanger\",\n  \"ermellini\": \"ermellin\",\n  \"ermetismo\": \"ermet\",\n  \"erminio\": \"ermin\",\n  \"ernesto\": \"ernest\",\n  \"ero\": \"ero\",\n  \"eroe\": \"ero\",\n  \"erogabile\": \"erog\",\n  \"erogati\": \"erog\",\n  \"erogato\": \"erog\",\n  \"erogatrice\": \"erog\",\n  \"erogazione\": \"erog\",\n  \"eroi\": \"ero\",\n  \"eroica\": \"eroic\",\n  \"eroico\": \"eroic\",\n  \"eroina\": \"eroin\",\n  \"eroismo\": \"eroism\",\n  \"erotici\": \"erot\",\n  \"err\": \"err\",\n  \"erranti\": \"errant\",\n  \"errato\": \"errat\",\n  \"erravano\": \"errav\",\n  \"errol\": \"errol\",\n  \"error\": \"error\",\n  \"errore\": \"error\",\n  \"errori\": \"error\",\n  \"erta\": \"erta\",\n  \"erte\": \"erte\",\n  \"erto\": \"erto\",\n  \"eruditamente\": \"erudit\",\n  \"erudite\": \"erud\",\n  \"erudito\": \"erud\",\n  \"erudizione\": \"erudizion\",\n  \"erzegovina\": \"erzegovin\",\n  \"es\": \"es\",\n  \"esacerbata\": \"esacerb\",\n  \"esacerbato\": \"esacerb\",\n  \"esacerbava\": \"esacerb\",\n  \"esacerbazione\": \"esacerb\",\n  \"esagerare\": \"esager\",\n  \"esagerata\": \"esager\",\n  \"esagerate\": \"esager\",\n  \"esagerato\": \"esager\",\n  \"esalano\": \"esal\",\n  \"esalava\": \"esal\",\n  \"esalazione\": \"esal\",\n  \"esalta\": \"esalt\",\n  \"esaltando\": \"esalt\",\n  \"esaltanti\": \"esalt\",\n  \"esaltare\": \"esalt\",\n  \"esaltati\": \"esalt\",\n  \"esaltato\": \"esalt\",\n  \"esaltavano\": \"esalt\",\n  \"esaltazione\": \"esalt\",\n  \"esame\": \"esam\",\n  \"esami\": \"esam\",\n  \"esamina\": \"esamin\",\n  \"esaminando\": \"esamin\",\n  \"esaminandole\": \"esamin\",\n  \"esaminar\": \"esamin\",\n  \"esaminare\": \"esamin\",\n  \"esaminarla\": \"esamin\",\n  \"esaminarle\": \"esamin\",\n  \"esaminata\": \"esamin\",\n  \"esaminate\": \"esamin\",\n  \"esaminati\": \"esamin\",\n  \"esaminato\": \"esamin\",\n  \"esaminator\": \"esaminator\",\n  \"esaminatore\": \"esamin\",\n  \"esaminava\": \"esamin\",\n  \"esaminerà\": \"esamin\",\n  \"esamineranno\": \"esamin\",\n  \"esamionando\": \"esamion\",\n  \"esantemi\": \"esantem\",\n  \"esasperata\": \"esasper\",\n  \"esasperati\": \"esasper\",\n  \"esasperato\": \"esasper\",\n  \"esasperazione\": \"esasper\",\n  \"esatta\": \"esatt\",\n  \"esattamente\": \"esatt\",\n  \"esatte\": \"esatt\",\n  \"esattezza\": \"esattezz\",\n  \"esattori\": \"esattor\",\n  \"esaudisce\": \"esaud\",\n  \"esaudita\": \"esaud\",\n  \"esauditela\": \"esauditel\",\n  \"esaudito\": \"esaud\",\n  \"esaurita\": \"esaur\",\n  \"esauritasi\": \"esauritas\",\n  \"esaurito\": \"esaur\",\n  \"esausta\": \"esaust\",\n  \"esausti\": \"esaust\",\n  \"esaustivo\": \"esaust\",\n  \"esausto\": \"esaust\",\n  \"esca\": \"esca\",\n  \"escalation\": \"escalation\",\n  \"escamotage\": \"escamotag\",\n  \"esce\": \"esce\",\n  \"esci\": \"esci\",\n  \"escimi\": \"escim\",\n  \"escl\": \"escl\",\n  \"esclama\": \"esclam\",\n  \"esclamando\": \"esclam\",\n  \"esclamare\": \"esclam\",\n  \"esclamarono\": \"esclam\",\n  \"esclamativi\": \"esclam\",\n  \"esclamato\": \"esclam\",\n  \"esclamava\": \"esclam\",\n  \"esclamavano\": \"esclam\",\n  \"esclamazione\": \"esclam\",\n  \"esclamazioni\": \"esclam\",\n  \"esclamò\": \"esclam\",\n  \"escluda\": \"esclud\",\n  \"esclude\": \"esclud\",\n  \"escludendo\": \"esclud\",\n  \"escludere\": \"esclud\",\n  \"escluderlo\": \"esclud\",\n  \"escludo\": \"esclud\",\n  \"escludono\": \"esclud\",\n  \"esclusa\": \"esclus\",\n  \"esclusà\": \"esclus\",\n  \"escluse\": \"esclus\",\n  \"esclusi\": \"esclus\",\n  \"esclusione\": \"esclusion\",\n  \"esclusiva\": \"esclus\",\n  \"esclusivamente\": \"esclus\",\n  \"esclusivo\": \"esclus\",\n  \"escluso\": \"esclus\",\n  \"esco\": \"esco\",\n  \"escogitata\": \"escogit\",\n  \"escono\": \"escon\",\n  \"escort\": \"escort\",\n  \"escudo\": \"escud\",\n  \"escuriale\": \"escurial\",\n  \"escursionisti\": \"escursion\",\n  \"esecrata\": \"esecr\",\n  \"esecrazione\": \"esecr\",\n  \"esecutiva\": \"esecut\",\n  \"esecutivi\": \"esecut\",\n  \"esecutivo\": \"esecut\",\n  \"esecutori\": \"esecutor\",\n  \"esecuzione\": \"esecu\",\n  \"eseguendo\": \"esegu\",\n  \"eseguì\": \"esegu\",\n  \"eseguir\": \"esegu\",\n  \"eseguire\": \"esegu\",\n  \"eseguirli\": \"esegu\",\n  \"eseguirlo\": \"esegu\",\n  \"eseguirsi\": \"esegu\",\n  \"eseguisce\": \"esegu\",\n  \"eseguita\": \"esegu\",\n  \"eseguite\": \"esegu\",\n  \"eseguiti\": \"esegu\",\n  \"eseguito\": \"esegu\",\n  \"eseguiva\": \"esegu\",\n  \"esempi\": \"esemp\",\n  \"esempio\": \"esemp\",\n  \"esemplare\": \"esempl\",\n  \"esenti\": \"esent\",\n  \"esenzione\": \"esenzion\",\n  \"esenzioni\": \"esenzion\",\n  \"esequie\": \"esequ\",\n  \"esercita\": \"eserc\",\n  \"esercitano\": \"esercit\",\n  \"esercitar\": \"esercit\",\n  \"esercitare\": \"esercit\",\n  \"esercitarne\": \"esercit\",\n  \"esercitarsi\": \"esercit\",\n  \"esercitata\": \"esercit\",\n  \"esercitate\": \"esercit\",\n  \"esercitato\": \"esercit\",\n  \"esercitava\": \"esercit\",\n  \"eserciteranno\": \"esercit\",\n  \"esercito\": \"eserc\",\n  \"esercitò\": \"esercit\",\n  \"esercizi\": \"eserciz\",\n  \"esercizio\": \"eserciz\",\n  \"esibì\": \"esib\",\n  \"esibire\": \"esib\",\n  \"esibirgli\": \"esib\",\n  \"esibiti\": \"esib\",\n  \"esibito\": \"esib\",\n  \"esibizione\": \"esibizion\",\n  \"esibizioni\": \"esibizion\",\n  \"esige\": \"esig\",\n  \"esigenza\": \"esigent\",\n  \"esigenze\": \"esigent\",\n  \"esigere\": \"esig\",\n  \"esigo\": \"esig\",\n  \"esigua\": \"esigu\",\n  \"esiguo\": \"esigu\",\n  \"esimersi\": \"esim\",\n  \"esimo\": \"esim\",\n  \"esista\": \"esist\",\n  \"esistano\": \"esist\",\n  \"esiste\": \"esist\",\n  \"esistente\": \"esistent\",\n  \"esistenti\": \"esistent\",\n  \"esistenza\": \"esistent\",\n  \"esistenziale\": \"esistenzial\",\n  \"esisterà\": \"esist\",\n  \"esistere\": \"esist\",\n  \"esisteva\": \"esist\",\n  \"esistevano\": \"esist\",\n  \"esistiti\": \"esist\",\n  \"esistono\": \"esist\",\n  \"esita\": \"esit\",\n  \"esitando\": \"esit\",\n  \"esitanti\": \"esit\",\n  \"esitare\": \"esit\",\n  \"esitato\": \"esit\",\n  \"esitava\": \"esit\",\n  \"esitazione\": \"esit\",\n  \"esitazioni\": \"esit\",\n  \"esite\": \"esit\",\n  \"esiterò\": \"esit\",\n  \"esiti\": \"esit\",\n  \"esito\": \"esit\",\n  \"esitò\": \"esit\",\n  \"eslam\": \"eslam\",\n  \"esorbitanti\": \"esorbit\",\n  \"esorcizzarla\": \"esorcizz\",\n  \"esordio\": \"esord\",\n  \"esordisce\": \"esord\",\n  \"esordito\": \"esord\",\n  \"esorta\": \"esort\",\n  \"esortarla\": \"esort\",\n  \"esortato\": \"esort\",\n  \"esortava\": \"esort\",\n  \"esortazione\": \"esort\",\n  \"esortazioni\": \"esort\",\n  \"esortino\": \"esortin\",\n  \"èsottratta\": \"èsottratt\",\n  \"espandendo\": \"espand\",\n  \"espanola\": \"espanol\",\n  \"espansione\": \"espansion\",\n  \"espediente\": \"espedient\",\n  \"espedienti\": \"espedient\",\n  \"espelle\": \"espell\",\n  \"espellere\": \"espell\",\n  \"esperienza\": \"esperient\",\n  \"esperienze\": \"esperient\",\n  \"esperimentar\": \"esperiment\",\n  \"esperimentata\": \"esperiment\",\n  \"esperimenti\": \"esper\",\n  \"esperimento\": \"esper\",\n  \"esperire\": \"esper\",\n  \"esperta\": \"espert\",\n  \"esperti\": \"espert\",\n  \"esperto\": \"espert\",\n  \"espiare\": \"espi\",\n  \"espiarla\": \"espi\",\n  \"espiarlo\": \"espi\",\n  \"espiazione\": \"espiazion\",\n  \"espletamento\": \"esplet\",\n  \"esplicitamente\": \"esplicit\",\n  \"esplicitato\": \"esplicit\",\n  \"esplicite\": \"esplic\",\n  \"esplicito\": \"esplic\",\n  \"esplode\": \"esplod\",\n  \"esplodere\": \"esplod\",\n  \"esplodono\": \"esplod\",\n  \"esplorando\": \"esplor\",\n  \"esplorare\": \"esplor\",\n  \"esplorati\": \"esplor\",\n  \"esploratori\": \"esplor\",\n  \"esplorazione\": \"esplor\",\n  \"esplorazioni\": \"esplor\",\n  \"esplorerà\": \"esplor\",\n  \"esplosa\": \"esplos\",\n  \"esplose\": \"esplos\",\n  \"esplosione\": \"esplosion\",\n  \"esplosioni\": \"esplosion\",\n  \"esplosive\": \"esplos\",\n  \"esplosivi\": \"esplos\",\n  \"esplosivo\": \"esplos\",\n  \"esploso\": \"esplos\",\n  \"esplusioni\": \"esplusion\",\n  \"espone\": \"espon\",\n  \"esponendo\": \"espon\",\n  \"esponente\": \"esponent\",\n  \"esponenti\": \"esponent\",\n  \"esponenziale\": \"esponenzial\",\n  \"esponevan\": \"esponevan\",\n  \"espongano\": \"espong\",\n  \"espongono\": \"espong\",\n  \"espoo\": \"espo\",\n  \"esporgli\": \"esporgl\",\n  \"esporle\": \"esporl\",\n  \"esporlo\": \"esporl\",\n  \"esporrà\": \"esporr\",\n  \"esporranno\": \"esporrann\",\n  \"esporre\": \"esporr\",\n  \"esportare\": \"esport\",\n  \"esportate\": \"esport\",\n  \"esportativa\": \"esport\",\n  \"esportatore\": \"esport\",\n  \"esportazione\": \"esport\",\n  \"esportazioni\": \"esport\",\n  \"espose\": \"espos\",\n  \"espositivi\": \"esposit\",\n  \"espositivo\": \"esposit\",\n  \"esposito\": \"espos\",\n  \"espositori\": \"espositor\",\n  \"esposizione\": \"esposizion\",\n  \"esposizioni\": \"esposizion\",\n  \"esposta\": \"espost\",\n  \"esposti\": \"espost\",\n  \"esposto\": \"espost\",\n  \"espressa\": \"espress\",\n  \"espressamente\": \"espress\",\n  \"espresse\": \"espress\",\n  \"espressi\": \"espress\",\n  \"espressione\": \"espression\",\n  \"espressioni\": \"espression\",\n  \"espressiva\": \"espress\",\n  \"espressive\": \"espress\",\n  \"espresso\": \"espress\",\n  \"esprima\": \"esprim\",\n  \"esprime\": \"esprim\",\n  \"esprimendo\": \"esprim\",\n  \"esprimer\": \"esprimer\",\n  \"esprimerà\": \"esprim\",\n  \"esprimerci\": \"esprim\",\n  \"esprimere\": \"esprim\",\n  \"esprimersi\": \"esprim\",\n  \"esprimeva\": \"esprim\",\n  \"esprimevan\": \"esprimevan\",\n  \"esprimevano\": \"esprim\",\n  \"esprimiamo\": \"esprim\",\n  \"esprimono\": \"esprim\",\n  \"espropriando\": \"espropr\",\n  \"espropriare\": \"espropr\",\n  \"espropriò\": \"espropr\",\n  \"espugnarlo\": \"espugn\",\n  \"espulsi\": \"espuls\",\n  \"espulsione\": \"espulsion\",\n  \"espulsioni\": \"espulsion\",\n  \"espulso\": \"espuls\",\n  \"essa\": \"essa\",\n  \"esse\": \"esse\",\n  \"essendo\": \"essend\",\n  \"essendoci\": \"essendoc\",\n  \"essendosegli\": \"essendosegl\",\n  \"essendosi\": \"essend\",\n  \"essendovi\": \"essendov\",\n  \"essent\": \"essent\",\n  \"essenza\": \"essenz\",\n  \"essenziale\": \"essenzial\",\n  \"essenziali\": \"essenzial\",\n  \"essenzialissima\": \"essenzialissim\",\n  \"essenzialissimo\": \"essenzialissim\",\n  \"esser\": \"esser\",\n  \"esserci\": \"esserc\",\n  \"essere\": \"esser\",\n  \"essergli\": \"essergl\",\n  \"esseri\": \"esser\",\n  \"esserlo\": \"esserl\",\n  \"esserne\": \"essern\",\n  \"essersi\": \"essers\",\n  \"essi\": \"essi\",\n  \"esso\": \"esso\",\n  \"est\": \"est\",\n  \"està\": \"està\",\n  \"establishment\": \"establishment\",\n  \"estamos\": \"estamos\",\n  \"estàmos\": \"estàmos\",\n  \"estasi\": \"estas\",\n  \"estate\": \"estat\",\n  \"estatè\": \"estat\",\n  \"estatica\": \"estat\",\n  \"estatici\": \"estat\",\n  \"estatico\": \"estat\",\n  \"èstato\": \"èstat\",\n  \"este\": \"este\",\n  \"esteban\": \"esteban\",\n  \"estemporanee\": \"estemporane\",\n  \"estenda\": \"estend\",\n  \"estende\": \"estend\",\n  \"estendendo\": \"estend\",\n  \"estenderanno\": \"estend\",\n  \"estendere\": \"estend\",\n  \"estendersi\": \"estend\",\n  \"estendono\": \"estend\",\n  \"estensione\": \"estension\",\n  \"estensore\": \"estensor\",\n  \"estenssoro\": \"estenssor\",\n  \"estenuati\": \"estenu\",\n  \"estenuazione\": \"estenu\",\n  \"estera\": \"ester\",\n  \"estere\": \"ester\",\n  \"esteri\": \"ester\",\n  \"esterino\": \"esterin\",\n  \"esteriore\": \"esterior\",\n  \"esterminio\": \"estermin\",\n  \"esterna\": \"estern\",\n  \"esternato\": \"estern\",\n  \"esternazione\": \"estern\",\n  \"esterne\": \"estern\",\n  \"esterni\": \"estern\",\n  \"esterno\": \"estern\",\n  \"estero\": \"ester\",\n  \"estesa\": \"estes\",\n  \"estese\": \"estes\",\n  \"estesi\": \"estes\",\n  \"esteso\": \"estes\",\n  \"estetica\": \"estet\",\n  \"esti\": \"esti\",\n  \"estingue\": \"estingu\",\n  \"estinguersi\": \"estingu\",\n  \"estinta\": \"estint\",\n  \"estinzione\": \"estinzion\",\n  \"estirpali\": \"estirpal\",\n  \"estirpare\": \"estirp\",\n  \"estirparlo\": \"estirp\",\n  \"esto\": \"esto\",\n  \"estorsione\": \"estorsion\",\n  \"estorte\": \"estort\",\n  \"estrada\": \"estrad\",\n  \"estradati\": \"estrad\",\n  \"estradizione\": \"estradizion\",\n  \"estranea\": \"estrane\",\n  \"estranee\": \"estrane\",\n  \"estranei\": \"estrane\",\n  \"estraneità\": \"estran\",\n  \"estraneo\": \"estrane\",\n  \"estrarre\": \"estrarr\",\n  \"estratti\": \"estratt\",\n  \"estratto\": \"estratt\",\n  \"estrazione\": \"estrazion\",\n  \"estrazioni\": \"estrazion\",\n  \"estrema\": \"estrem\",\n  \"estremamente\": \"estrem\",\n  \"estremi\": \"estrem\",\n  \"estremismo\": \"estrem\",\n  \"estremisti\": \"estrem\",\n  \"estremistiche\": \"estremist\",\n  \"estremità\": \"estrem\",\n  \"estremo\": \"estrem\",\n  \"estrenuamente\": \"estrenu\",\n  \"estromessa\": \"estromess\",\n  \"esuli\": \"esul\",\n  \"esultante\": \"esult\",\n  \"esultarono\": \"esult\",\n  \"et\": \"et\",\n  \"età\": \"età\",\n  \"etampes\": \"etampes\",\n  \"etc\": \"etc\",\n  \"etere\": \"eter\",\n  \"eterna\": \"etern\",\n  \"eterne\": \"etern\",\n  \"eternità\": \"etern\",\n  \"eteroclite\": \"eterocl\",\n  \"eterosessuali\": \"eterosessual\",\n  \"etica\": \"etic\",\n  \"etichette\": \"etichett\",\n  \"etici\": \"etic\",\n  \"etico\": \"etic\",\n  \"etienne\": \"etienn\",\n  \"etiopico\": \"etiop\",\n  \"etnei\": \"etne\",\n  \"etnia\": \"etni\",\n  \"etnico\": \"etnic\",\n  \"ètornato\": \"ètorn\",\n  \"etro\": \"etro\",\n  \"etruschi\": \"etrusc\",\n  \"ettari\": \"ettar\",\n  \"ette\": \"ette\",\n  \"ettore\": \"ettor\",\n  \"eufemismo\": \"eufem\",\n  \"euforia\": \"eufor\",\n  \"eufrate\": \"eufr\",\n  \"eugene\": \"eugen\",\n  \"eugenio\": \"eugen\",\n  \"èun\": \"èun\",\n  \"eurisko\": \"eurisk\",\n  \"eurispes\": \"eurispes\",\n  \"euro\": \"eur\",\n  \"euroazioni\": \"euroazion\",\n  \"eurobond\": \"eurobond\",\n  \"euromobiliare\": \"euromobil\",\n  \"euromoney\": \"euromoney\",\n  \"euronew\": \"euronew\",\n  \"euronews\": \"euronews\",\n  \"europa\": \"europ\",\n  \"europarlamentare\": \"europarlament\",\n  \"europe\": \"europ\",\n  \"europea\": \"europe\",\n  \"europee\": \"europe\",\n  \"europei\": \"europe\",\n  \"europeo\": \"europe\",\n  \"europeò\": \"europe\",\n  \"euroscetticismo\": \"euroscettic\",\n  \"eurotunnel\": \"eurotunnel\",\n  \"eusebio\": \"euseb\",\n  \"eva\": \"eva\",\n  \"evacuare\": \"evacu\",\n  \"evacuato\": \"evacu\",\n  \"evacuazione\": \"evacu\",\n  \"evangelica\": \"evangel\",\n  \"evangeliche\": \"evangel\",\n  \"evangelici\": \"evangel\",\n  \"evangelisti\": \"evangel\",\n  \"evani\": \"evan\",\n  \"evaporare\": \"evapor\",\n  \"eventi\": \"event\",\n  \"evento\": \"event\",\n  \"eventuale\": \"eventual\",\n  \"eventuali\": \"eventual\",\n  \"eventualmente\": \"eventual\",\n  \"evenutale\": \"evenutal\",\n  \"evidente\": \"evident\",\n  \"evidentemente\": \"evident\",\n  \"evidenti\": \"evident\",\n  \"evidenza\": \"evident\",\n  \"evidenzia\": \"evidenz\",\n  \"evidenziano\": \"evidenz\",\n  \"evidenziati\": \"evidenz\",\n  \"evidenziato\": \"evidenz\",\n  \"evita\": \"evit\",\n  \"evitabile\": \"evit\",\n  \"evitando\": \"evit\",\n  \"evitar\": \"evit\",\n  \"evitare\": \"evit\",\n  \"evitata\": \"evit\",\n  \"eviti\": \"evit\",\n  \"evo\": \"evo\",\n  \"evolution\": \"evolution\",\n  \"evolutivà\": \"evolutiv\",\n  \"evolutivo\": \"evolut\",\n  \"evoluzione\": \"evolu\",\n  \"evoluzioni\": \"evolu\",\n  \"evolversi\": \"evolv\",\n  \"evviva\": \"evviv\",\n  \"ex\": \"ex\",\n  \"exa\": \"exa\",\n  \"excelencia\": \"excelenc\",\n  \"excelsi\": \"excels\",\n  \"executive\": \"execut\",\n  \"exercicio\": \"exercic\",\n  \"exploit\": \"exploit\",\n  \"expo\": \"expo\",\n  \"export\": \"export\",\n  \"express\": \"express\",\n  \"exres\": \"exres\",\n  \"extra\": \"extra\",\n  \"extracomunitari\": \"extracomunitar\",\n  \"extracomunitarie\": \"extracomunitar\",\n  \"extracomunitario\": \"extracomunitar\",\n  \"extrader\": \"extrader\",\n  \"extraterrestre\": \"extraterrestr\",\n  \"extraurbano\": \"extraurb\",\n  \"extrema\": \"extrem\",\n  \"extremis\": \"extremis\",\n  \"exw\": \"exw\",\n  \"ezio\": \"ezi\",\n  \"ezln\": \"ezln\",\n  \"f\": \"f\",\n  \"fa\": \"fa\",\n  \"faa\": \"faa\",\n  \"fabbr\": \"fabbr\",\n  \"fabbri\": \"fabbr\",\n  \"fabbrica\": \"fabbric\",\n  \"fabbricare\": \"fabbric\",\n  \"fabbricatevelo\": \"fabbricatevel\",\n  \"fabbricazine\": \"fabbricazin\",\n  \"fabbricazione\": \"fabbric\",\n  \"fabbriche\": \"fabbric\",\n  \"fabbro\": \"fabbr\",\n  \"fabian\": \"fabian\",\n  \"fabianelli\": \"fabianell\",\n  \"fabio\": \"fab\",\n  \"fabrica\": \"fabric\",\n  \"fabrizio\": \"fabriz\",\n  \"fac\": \"fac\",\n  \"facce\": \"facc\",\n  \"faccenda\": \"facc\",\n  \"faccende\": \"facc\",\n  \"faccendiere\": \"faccend\",\n  \"faccendole\": \"facc\",\n  \"faccendoni\": \"faccendon\",\n  \"facchini\": \"facchin\",\n  \"faccia\": \"facc\",\n  \"facciale\": \"faccial\",\n  \"facciam\": \"facciam\",\n  \"facciamo\": \"facc\",\n  \"faccian\": \"faccian\",\n  \"facciano\": \"facc\",\n  \"facciata\": \"facc\",\n  \"facciate\": \"facc\",\n  \"faccio\": \"facc\",\n  \"facciole\": \"facciol\",\n  \"facendo\": \"fac\",\n  \"facendoci\": \"fac\",\n  \"facendogli\": \"fac\",\n  \"facendoglielo\": \"fac\",\n  \"facendola\": \"fac\",\n  \"facendole\": \"fac\",\n  \"facendolo\": \"fac\",\n  \"facendone\": \"fac\",\n  \"facendosegli\": \"facendosegl\",\n  \"facendoselo\": \"facendosel\",\n  \"facendosene\": \"fac\",\n  \"facendosi\": \"fac\",\n  \"facendovi\": \"fac\",\n  \"facente\": \"facent\",\n  \"facesse\": \"facess\",\n  \"facesser\": \"facesser\",\n  \"facessero\": \"fac\",\n  \"facessi\": \"facess\",\n  \"faceste\": \"facest\",\n  \"faceva\": \"fac\",\n  \"facevam\": \"facevam\",\n  \"facevan\": \"facevan\",\n  \"facevano\": \"fac\",\n  \"facevo\": \"fac\",\n  \"facile\": \"facil\",\n  \"facili\": \"facil\",\n  \"facilissima\": \"facilissim\",\n  \"facilità\": \"facil\",\n  \"facilitando\": \"facilit\",\n  \"facilitar\": \"facilit\",\n  \"facilitare\": \"facilit\",\n  \"facilitato\": \"facilit\",\n  \"faciliterà\": \"facilit\",\n  \"facilmente\": \"facil\",\n  \"facinorosi\": \"facinor\",\n  \"facinoroso\": \"facinor\",\n  \"facoltà\": \"facolt\",\n  \"facoltosissimi\": \"facoltosissim\",\n  \"facta\": \"fact\",\n  \"factory\": \"factory\",\n  \"factotum\": \"factotum\",\n  \"faema\": \"faem\",\n  \"faenza\": \"faenz\",\n  \"faggio\": \"fagg\",\n  \"fagocitati\": \"fagocit\",\n  \"fagotti\": \"fagott\",\n  \"fagottino\": \"fagottin\",\n  \"fagotto\": \"fagott\",\n  \"fai\": \"fai\",\n  \"faida\": \"faid\",\n  \"faine\": \"fain\",\n  \"fair\": \"fair\",\n  \"fakt\": \"fakt\",\n  \"fal\": \"fal\",\n  \"falce\": \"falc\",\n  \"falck\": \"falck\",\n  \"falco\": \"falc\",\n  \"falcone\": \"falcon\",\n  \"falda\": \"fald\",\n  \"falde\": \"fald\",\n  \"faldelle\": \"faldell\",\n  \"falkirk\": \"falkirk\",\n  \"falkland\": \"falkland\",\n  \"fallato\": \"fall\",\n  \"falle\": \"fall\",\n  \"fallemente\": \"fallement\",\n  \"fallimentare\": \"falliment\",\n  \"fallimenti\": \"fall\",\n  \"fallimento\": \"fall\",\n  \"fallirà\": \"fall\",\n  \"fallisce\": \"fall\",\n  \"fallita\": \"fall\",\n  \"fallito\": \"fall\",\n  \"fallo\": \"fall\",\n  \"falloso\": \"fallos\",\n  \"falò\": \"fal\",\n  \"falsa\": \"fals\",\n  \"falsamente\": \"fals\",\n  \"false\": \"fals\",\n  \"falsi\": \"fals\",\n  \"falsificazione\": \"falsif\",\n  \"falsificazioni\": \"falsif\",\n  \"falsifichi\": \"falsif\",\n  \"falso\": \"fals\",\n  \"fama\": \"fam\",\n  \"fame\": \"fam\",\n  \"famigerato\": \"famiger\",\n  \"famiglia\": \"famigl\",\n  \"famigliare\": \"famigl\",\n  \"famigliari\": \"famigliar\",\n  \"famigliarità\": \"famigliar\",\n  \"famigliarizzarsi\": \"famigliarizz\",\n  \"famigliarmente\": \"famigliar\",\n  \"famiglie\": \"famigl\",\n  \"famigliola\": \"famigliol\",\n  \"familiare\": \"famil\",\n  \"familiari\": \"familiar\",\n  \"familiarità\": \"familiar\",\n  \"family\": \"family\",\n  \"fammi\": \"famm\",\n  \"famosa\": \"famos\",\n  \"famosi\": \"famos\",\n  \"famosissimo\": \"famosissim\",\n  \"famoso\": \"famos\",\n  \"fan\": \"fan\",\n  \"fanatica\": \"fanat\",\n  \"fanatico\": \"fanat\",\n  \"fanatismo\": \"fanat\",\n  \"fanciulla\": \"fanciull\",\n  \"fanciulle\": \"fanciull\",\n  \"fanciulletta\": \"fanciullett\",\n  \"fanciullezza\": \"fanciullezz\",\n  \"fanciulli\": \"fanciull\",\n  \"fanciullina\": \"fanciullin\",\n  \"fanciulline\": \"fanciullin\",\n  \"fanciullo\": \"fanciull\",\n  \"fandonia\": \"fandon\",\n  \"fandonie\": \"fandon\",\n  \"fango\": \"fang\",\n  \"fangosa\": \"fangos\",\n  \"fanno\": \"fann\",\n  \"fanny\": \"fanny\",\n  \"fano\": \"fan\",\n  \"fans\": \"fans\",\n  \"fantascienza\": \"fantascient\",\n  \"fantasia\": \"fantas\",\n  \"fantasie\": \"fantas\",\n  \"fantasime\": \"fantasim\",\n  \"fantasma\": \"fantasm\",\n  \"fantasmi\": \"fantasm\",\n  \"fantastica\": \"fantast\",\n  \"fantasticaggini\": \"fantasticaggin\",\n  \"fantasticar\": \"fantastic\",\n  \"fantasticare\": \"fantastic\",\n  \"fantastico\": \"fantast\",\n  \"fante\": \"fant\",\n  \"fanteria\": \"fanter\",\n  \"fanti\": \"fant\",\n  \"fantoni\": \"fanton\",\n  \"fantozzi\": \"fantozz\",\n  \"fao\": \"fao\",\n  \"far\": \"far\",\n  \"fara\": \"far\",\n  \"farà\": \"far\",\n  \"farah\": \"farah\",\n  \"farai\": \"fara\",\n  \"faranno\": \"farann\",\n  \"faraone\": \"faraon\",\n  \"farassino\": \"farassin\",\n  \"farcele\": \"farcel\",\n  \"farci\": \"farc\",\n  \"fare\": \"far\",\n  \"farebbe\": \"farebb\",\n  \"farebbero\": \"farebber\",\n  \"farebbne\": \"farebbn\",\n  \"farei\": \"fare\",\n  \"faremmo\": \"far\",\n  \"faremo\": \"farem\",\n  \"fareste\": \"farest\",\n  \"faresti\": \"farest\",\n  \"farete\": \"far\",\n  \"farfalla\": \"farfall\",\n  \"farfalle\": \"farfall\",\n  \"fargli\": \"fargl\",\n  \"fargliela\": \"fargliel\",\n  \"fargliele\": \"fargliel\",\n  \"fargliene\": \"farglien\",\n  \"farina\": \"farin\",\n  \"farinacei\": \"farinace\",\n  \"farinaioli\": \"farinaiol\",\n  \"farine\": \"farin\",\n  \"farinella\": \"farinell\",\n  \"farinelli\": \"farinell\",\n  \"farisei\": \"farise\",\n  \"farla\": \"farl\",\n  \"farle\": \"farl\",\n  \"farli\": \"farl\",\n  \"farlo\": \"farl\",\n  \"farmaceutica\": \"farmaceut\",\n  \"farmaci\": \"farmac\",\n  \"farmacie\": \"farmac\",\n  \"farmaco\": \"farmac\",\n  \"farmela\": \"farmel\",\n  \"farmelo\": \"farmel\",\n  \"farmene\": \"farmen\",\n  \"farmi\": \"farm\",\n  \"farncese\": \"farnces\",\n  \"farne\": \"farn\",\n  \"farnesina\": \"farnesin\",\n  \"farneti\": \"farnet\",\n  \"faro\": \"far\",\n  \"farò\": \"far\",\n  \"faron\": \"faron\",\n  \"farraginose\": \"farragin\",\n  \"farris\": \"farris\",\n  \"farsene\": \"farsen\",\n  \"farsetti\": \"farsett\",\n  \"farsetto\": \"farsett\",\n  \"farsi\": \"fars\",\n  \"farti\": \"fart\",\n  \"faruk\": \"faruk\",\n  \"farvela\": \"farvel\",\n  \"farvelo\": \"farvel\",\n  \"farvene\": \"farven\",\n  \"farvi\": \"farv\",\n  \"fasano\": \"fas\",\n  \"fasce\": \"fasc\",\n  \"fascia\": \"fasc\",\n  \"fascicolo\": \"fascicol\",\n  \"fascino\": \"fascin\",\n  \"fascio\": \"fasc\",\n  \"fascismo\": \"fascism\",\n  \"fascista\": \"fascist\",\n  \"fascisti\": \"fascist\",\n  \"fase\": \"fas\",\n  \"fasi\": \"fas\",\n  \"faso\": \"fas\",\n  \"fassa\": \"fass\",\n  \"fassbinder\": \"fassbinder\",\n  \"fast\": \"fast\",\n  \"fasti\": \"fast\",\n  \"fastidio\": \"fastid\",\n  \"fastidiosa\": \"fastid\",\n  \"fastidiosi\": \"fastid\",\n  \"fastidioso\": \"fastid\",\n  \"fastidiuccio\": \"fastidiucc\",\n  \"fasto\": \"fast\",\n  \"fasulli\": \"fasull\",\n  \"fatale\": \"fatal\",\n  \"fatali\": \"fatal\",\n  \"fatalista\": \"fatal\",\n  \"fatalisti\": \"fatal\",\n  \"fate\": \"fat\",\n  \"fategli\": \"fategl\",\n  \"fatele\": \"fatel\",\n  \"fateli\": \"fatel\",\n  \"fatelo\": \"fatel\",\n  \"fatemi\": \"fatem\",\n  \"fatevi\": \"fat\",\n  \"fatica\": \"fatic\",\n  \"faticato\": \"fatic\",\n  \"fatiche\": \"fatic\",\n  \"faticosa\": \"fatic\",\n  \"faticose\": \"fatic\",\n  \"faticoso\": \"fatic\",\n  \"fatima\": \"fatim\",\n  \"fatma\": \"fatm\",\n  \"fatt\": \"fatt\",\n  \"fatta\": \"fatt\",\n  \"fattaccio\": \"fattacc\",\n  \"fattagli\": \"fattagl\",\n  \"fattasi\": \"fattas\",\n  \"fatte\": \"fatt\",\n  \"fattempo\": \"fattemp\",\n  \"fatti\": \"fatt\",\n  \"fattibile\": \"fattibil\",\n  \"fattizia\": \"fattiz\",\n  \"fatto\": \"fatt\",\n  \"fattore\": \"fattor\",\n  \"fattoressa\": \"fattoress\",\n  \"fattori\": \"fattor\",\n  \"fattosi\": \"fattos\",\n  \"fattura\": \"fattur\",\n  \"fatturato\": \"fattur\",\n  \"fatwà\": \"fatw\",\n  \"fausto\": \"faust\",\n  \"fautori\": \"fautor\",\n  \"fautrice\": \"fautric\",\n  \"favalli\": \"favall\",\n  \"faverio\": \"faver\",\n  \"favero\": \"faver\",\n  \"favi\": \"fav\",\n  \"favilla\": \"favill\",\n  \"favo\": \"fav\",\n  \"favole\": \"favol\",\n  \"favoloso\": \"favol\",\n  \"favor\": \"favor\",\n  \"favore\": \"favor\",\n  \"favoreggiamento\": \"favoregg\",\n  \"favorendo\": \"favor\",\n  \"favorevole\": \"favorevol\",\n  \"favorevoli\": \"favorevol\",\n  \"favorevolmente\": \"favorevol\",\n  \"favorirà\": \"favor\",\n  \"favorire\": \"favor\",\n  \"favorirete\": \"favor\",\n  \"favorirlo\": \"favor\",\n  \"favorisce\": \"favor\",\n  \"favorissero\": \"favor\",\n  \"favorita\": \"favor\",\n  \"favoriti\": \"favor\",\n  \"favorito\": \"favor\",\n  \"favre\": \"favr\",\n  \"favrè\": \"favr\",\n  \"favuzza\": \"favuzz\",\n  \"fax\": \"fax\",\n  \"fazio\": \"faz\",\n  \"fazione\": \"fazion\",\n  \"fazioni\": \"fazion\",\n  \"fazzoletti\": \"fazzolett\",\n  \"fazzoletto\": \"fazzolett\",\n  \"fazzuoli\": \"fazzuol\",\n  \"fb\": \"fb\",\n  \"fbb\": \"fbb\",\n  \"fc\": \"fc\",\n  \"fcc\": \"fcc\",\n  \"fdg\": \"fdg\",\n  \"fe\": \"fe\",\n  \"feb\": \"feb\",\n  \"febbario\": \"febbar\",\n  \"febbraio\": \"febbrai\",\n  \"febbre\": \"febbr\",\n  \"febbri\": \"febbr\",\n  \"febbriciattole\": \"febbriciattol\",\n  \"febbricitante\": \"febbricit\",\n  \"febbrone\": \"febbron\",\n  \"febraio\": \"febrai\",\n  \"fece\": \"fec\",\n  \"fecer\": \"fecer\",\n  \"fecero\": \"fecer\",\n  \"feci\": \"fec\",\n  \"feciale\": \"fecial\",\n  \"feciali\": \"fecial\",\n  \"fecondazione\": \"fecond\",\n  \"feconde\": \"fecond\",\n  \"fed\": \"fed\",\n  \"fedayn\": \"fedayn\",\n  \"fede\": \"fed\",\n  \"fedel\": \"fedel\",\n  \"fedele\": \"fedel\",\n  \"fedeli\": \"fedel\",\n  \"fedelissimi\": \"fedelissim\",\n  \"fedelmente\": \"fedel\",\n  \"fedeltà\": \"fedelt\",\n  \"federal\": \"federal\",\n  \"federale\": \"federal\",\n  \"federalè\": \"federal\",\n  \"federali\": \"federal\",\n  \"federalismo\": \"federal\",\n  \"federalista\": \"federal\",\n  \"federaliste\": \"federal\",\n  \"federalisti\": \"federal\",\n  \"federativi\": \"feder\",\n  \"federativo\": \"feder\",\n  \"federazione\": \"feder\",\n  \"federcalcio\": \"federcalc\",\n  \"federconsorzi\": \"federconsorz\",\n  \"federcoopesca\": \"federcoopesc\",\n  \"federica\": \"feder\",\n  \"federici\": \"feder\",\n  \"federico\": \"feder\",\n  \"federigo\": \"federig\",\n  \"federmar\": \"federm\",\n  \"federmeccanica\": \"federmeccan\",\n  \"federpesca\": \"federpesc\",\n  \"federtrasporti\": \"federtrasport\",\n  \"fedi\": \"fed\",\n  \"fedrale\": \"fedral\",\n  \"fedralismo\": \"fedral\",\n  \"felci\": \"felc\",\n  \"felice\": \"felic\",\n  \"felicè\": \"felic\",\n  \"felicemente\": \"felic\",\n  \"felici\": \"felic\",\n  \"felicità\": \"felic\",\n  \"fellini\": \"fellin\",\n  \"fellonesco\": \"fellonesc\",\n  \"feltri\": \"feltr\",\n  \"fem\": \"fem\",\n  \"femmine\": \"femmin\",\n  \"femminile\": \"femminil\",\n  \"femminili\": \"femminil\",\n  \"femmminili\": \"femmminil\",\n  \"fendendo\": \"fend\",\n  \"fendeva\": \"fend\",\n  \"fenice\": \"fenic\",\n  \"fenile\": \"fenil\",\n  \"fenit\": \"fenit\",\n  \"fenomeni\": \"fenomen\",\n  \"fenomeno\": \"fenomen\",\n  \"fenwick\": \"fenwick\",\n  \"fercolo\": \"fercol\",\n  \"ferdinando\": \"ferdin\",\n  \"ferenc\": \"ferenc\",\n  \"ferendo\": \"fer\",\n  \"ferentes\": \"ferentes\",\n  \"feretro\": \"feretr\",\n  \"ferfin\": \"ferfin\",\n  \"ferì\": \"fer\",\n  \"feria\": \"fer\",\n  \"ferimento\": \"fer\",\n  \"ferire\": \"fer\",\n  \"ferita\": \"fer\",\n  \"ferite\": \"fer\",\n  \"feriti\": \"fer\",\n  \"ferito\": \"fer\",\n  \"feritoia\": \"feritoi\",\n  \"feritoie\": \"feritoi\",\n  \"feritore\": \"feritor\",\n  \"ferma\": \"ferm\",\n  \"fermali\": \"fermal\",\n  \"fermamente\": \"ferm\",\n  \"fermana\": \"ferman\",\n  \"fermandola\": \"ferm\",\n  \"fermandosegli\": \"fermandosegl\",\n  \"fermandosi\": \"ferm\",\n  \"fermanelli\": \"fermanell\",\n  \"fermano\": \"ferm\",\n  \"fermar\": \"ferm\",\n  \"fermarci\": \"ferm\",\n  \"fermare\": \"ferm\",\n  \"fermarlo\": \"ferm\",\n  \"fermarmi\": \"ferm\",\n  \"fermaron\": \"fermaron\",\n  \"fermarono\": \"ferm\",\n  \"fermarsi\": \"ferm\",\n  \"fermarvi\": \"ferm\",\n  \"fermasse\": \"ferm\",\n  \"fermassero\": \"ferm\",\n  \"fermata\": \"ferm\",\n  \"fermate\": \"ferm\",\n  \"fermati\": \"ferm\",\n  \"fermatina\": \"fermatin\",\n  \"fermatine\": \"fermatin\",\n  \"fermato\": \"ferm\",\n  \"fermatosi\": \"fermat\",\n  \"fermava\": \"ferm\",\n  \"fermavano\": \"ferm\",\n  \"ferme\": \"ferm\",\n  \"fermerà\": \"ferm\",\n  \"fermeremo\": \"ferm\",\n  \"fermerò\": \"ferm\",\n  \"fermezza\": \"fermezz\",\n  \"fermi\": \"ferm\",\n  \"fermiamo\": \"ferm\",\n  \"fermissimamente\": \"fermissim\",\n  \"fermissimo\": \"fermissim\",\n  \"fermo\": \"ferm\",\n  \"fermò\": \"ferm\",\n  \"fernanda\": \"fernand\",\n  \"fernandez\": \"fernandez\",\n  \"fernando\": \"fern\",\n  \"feroce\": \"feroc\",\n  \"ferocemente\": \"feroc\",\n  \"ferocia\": \"feroc\",\n  \"ferrante\": \"ferrant\",\n  \"ferrara\": \"ferrar\",\n  \"ferrarese\": \"ferrares\",\n  \"ferraresi\": \"ferrares\",\n  \"ferrari\": \"ferrar\",\n  \"ferraris\": \"ferraris\",\n  \"ferrati\": \"ferr\",\n  \"ferrea\": \"ferre\",\n  \"ferreira\": \"ferreir\",\n  \"ferreo\": \"ferre\",\n  \"ferrer\": \"ferrer\",\n  \"ferrero\": \"ferrer\",\n  \"ferri\": \"ferr\",\n  \"ferrigno\": \"ferrign\",\n  \"ferro\": \"ferr\",\n  \"ferron\": \"ferron\",\n  \"ferroni\": \"ferron\",\n  \"ferroso\": \"ferros\",\n  \"ferrovia\": \"ferrov\",\n  \"ferroviari\": \"ferroviar\",\n  \"ferroviaria\": \"ferroviar\",\n  \"ferroviarie\": \"ferroviar\",\n  \"ferroviario\": \"ferroviar\",\n  \"ferrovie\": \"ferrov\",\n  \"ferruzzi\": \"ferruzz\",\n  \"fervidamente\": \"fervid\",\n  \"fervore\": \"fervor\",\n  \"fessa\": \"fess\",\n  \"fessi\": \"fess\",\n  \"fesso\": \"fess\",\n  \"fessolino\": \"fessolin\",\n  \"fessure\": \"fessur\",\n  \"festa\": \"fest\",\n  \"feste\": \"fest\",\n  \"festeggerà\": \"festegg\",\n  \"festeggia\": \"festegg\",\n  \"festeggiamenti\": \"festegg\",\n  \"festeggiare\": \"festegg\",\n  \"festeggiata\": \"festegg\",\n  \"festeggiatissimo\": \"festeggiatissim\",\n  \"festini\": \"festin\",\n  \"festiva\": \"fest\",\n  \"festival\": \"festival\",\n  \"fetente\": \"fetent\",\n  \"fetor\": \"fetor\",\n  \"fetta\": \"fett\",\n  \"fette\": \"fett\",\n  \"feudatarii\": \"feudatar\",\n  \"feudatario\": \"feudatar\",\n  \"feudi\": \"feud\",\n  \"feudo\": \"feud\",\n  \"ff\": \"ff\",\n  \"fg\": \"fg\",\n  \"fi\": \"fi\",\n  \"fiaba\": \"fiab\",\n  \"fiabe\": \"fiab\",\n  \"fiacca\": \"fiacc\",\n  \"fiaccate\": \"fiacc\",\n  \"fiacchezza\": \"fiacchezz\",\n  \"fiacchi\": \"fiacc\",\n  \"fiacco\": \"fiacc\",\n  \"fiaccole\": \"fiaccol\",\n  \"fialdini\": \"fialdin\",\n  \"fiamma\": \"fiamm\",\n  \"fiammà\": \"fiamm\",\n  \"fiammata\": \"fiamm\",\n  \"fiammate\": \"fiamm\",\n  \"fiamme\": \"fiamm\",\n  \"fiancheggiata\": \"fianchegg\",\n  \"fiancheggiate\": \"fianchegg\",\n  \"fianchi\": \"fianc\",\n  \"fianco\": \"fianc\",\n  \"fiandra\": \"fiandr\",\n  \"fiandre\": \"fiandr\",\n  \"fiar\": \"fiar\",\n  \"fiaschetti\": \"fiaschett\",\n  \"fiaschetto\": \"fiaschett\",\n  \"fiaschi\": \"fiasc\",\n  \"fiasco\": \"fiasc\",\n  \"fiat\": \"fiat\",\n  \"fiata\": \"fiat\",\n  \"fiatar\": \"fiat\",\n  \"fiatare\": \"fiat\",\n  \"fiatava\": \"fiat\",\n  \"fiaterebbe\": \"fiat\",\n  \"fiato\": \"fiat\",\n  \"fiatò\": \"fiat\",\n  \"fibra\": \"fibr\",\n  \"fibre\": \"fibr\",\n  \"ficca\": \"ficc\",\n  \"ficcadenti\": \"ficcadent\",\n  \"ficcan\": \"ficcan\",\n  \"ficcandogli\": \"ficc\",\n  \"ficcandosi\": \"ficc\",\n  \"ficcare\": \"ficc\",\n  \"ficcata\": \"ficc\",\n  \"ficcati\": \"ficc\",\n  \"ficcò\": \"ficc\",\n  \"fiches\": \"fiches\",\n  \"fichi\": \"fich\",\n  \"fico\": \"fic\",\n  \"fictas\": \"fictas\",\n  \"fida\": \"fid\",\n  \"fidando\": \"fid\",\n  \"fidanzata\": \"fidanz\",\n  \"fidanzato\": \"fidanz\",\n  \"fidare\": \"fid\",\n  \"fidarmi\": \"fid\",\n  \"fidarsi\": \"fid\",\n  \"fidarvi\": \"fid\",\n  \"fidata\": \"fid\",\n  \"fidate\": \"fid\",\n  \"fidatevi\": \"fidat\",\n  \"fidati\": \"fid\",\n  \"fidatissimo\": \"fidatissim\",\n  \"fidato\": \"fid\",\n  \"fidecommisso\": \"fidecommiss\",\n  \"fidei\": \"fide\",\n  \"fideuram\": \"fideuram\",\n  \"fidi\": \"fid\",\n  \"fidiamo\": \"fid\",\n  \"fidis\": \"fidis\",\n  \"fido\": \"fid\",\n  \"fidone\": \"fidon\",\n  \"fiducia\": \"fiduc\",\n  \"fiducià\": \"fiduc\",\n  \"fiduciario\": \"fiduciar\",\n  \"fiele\": \"fiel\",\n  \"fieno\": \"fien\",\n  \"fiera\": \"fier\",\n  \"fieramente\": \"fier\",\n  \"fiere\": \"fier\",\n  \"fierezza\": \"fierezz\",\n  \"fieri\": \"fier\",\n  \"fieristica\": \"fierist\",\n  \"fieristiche\": \"fierist\",\n  \"fieristico\": \"fierist\",\n  \"fiesole\": \"fiesol\",\n  \"figli\": \"figl\",\n  \"figlia\": \"figl\",\n  \"figlie\": \"figl\",\n  \"figlio\": \"figl\",\n  \"figliolanza\": \"figliol\",\n  \"figlioletta\": \"figliolett\",\n  \"figlioletto\": \"figliolett\",\n  \"figliuol\": \"figliuol\",\n  \"figliuola\": \"figliuol\",\n  \"figliuoli\": \"figliuol\",\n  \"figliuolo\": \"figliuol\",\n  \"fignolo\": \"fignol\",\n  \"figueroa\": \"figuero\",\n  \"figura\": \"figur\",\n  \"figuracce\": \"figuracc\",\n  \"figurando\": \"figur\",\n  \"figurano\": \"figur\",\n  \"figurare\": \"figur\",\n  \"figurarsi\": \"figur\",\n  \"figuratevi\": \"figurat\",\n  \"figurati\": \"figur\",\n  \"figurato\": \"figur\",\n  \"figurava\": \"figur\",\n  \"figuravano\": \"figur\",\n  \"figure\": \"figur\",\n  \"figureranno\": \"figur\",\n  \"figuri\": \"figur\",\n  \"figuriamoci\": \"figuriamoc\",\n  \"figurine\": \"figurin\",\n  \"figuro\": \"figur\",\n  \"figurò\": \"figur\",\n  \"fikret\": \"fikret\",\n  \"fil\": \"fil\",\n  \"fila\": \"fil\",\n  \"filadelfia\": \"filadelf\",\n  \"filanda\": \"filand\",\n  \"filari\": \"filar\",\n  \"filarmonica\": \"filarmon\",\n  \"filastrocca\": \"filastrocc\",\n  \"filaticcio\": \"filaticc\",\n  \"filato\": \"fil\",\n  \"filatoio\": \"filatoi\",\n  \"filatore\": \"filator\",\n  \"filatura\": \"filatur\",\n  \"file\": \"fil\",\n  \"files\": \"files\",\n  \"fili\": \"fil\",\n  \"filiali\": \"filial\",\n  \"filicano\": \"filic\",\n  \"filigrana\": \"filigran\",\n  \"filipovic\": \"filipovic\",\n  \"filippi\": \"filipp\",\n  \"filippine\": \"filippin\",\n  \"filippini\": \"filippin\",\n  \"filippo\": \"filipp\",\n  \"film\": \"film\",\n  \"filmato\": \"film\",\n  \"filmissimi\": \"filmissim\",\n  \"filmtv\": \"filmtv\",\n  \"filo\": \"fil\",\n  \"filobus\": \"filobus\",\n  \"filone\": \"filon\",\n  \"filoni\": \"filon\",\n  \"filoserbo\": \"filoserb\",\n  \"filosofi\": \"filosof\",\n  \"filosofia\": \"filosof\",\n  \"filosofo\": \"filosof\",\n  \"filt\": \"filt\",\n  \"fim\": \"fim\",\n  \"fimpar\": \"fimp\",\n  \"fin\": \"fin\",\n  \"finale\": \"final\",\n  \"finali\": \"final\",\n  \"finaliste\": \"final\",\n  \"finalisti\": \"final\",\n  \"finalità\": \"final\",\n  \"finalizzata\": \"finalizz\",\n  \"finalizzati\": \"finalizz\",\n  \"finalizzato\": \"finalizz\",\n  \"finalmente\": \"final\",\n  \"finan\": \"finan\",\n  \"finance\": \"financ\",\n  \"financing\": \"financing\",\n  \"finansur\": \"finansur\",\n  \"finanz\": \"finanz\",\n  \"finanza\": \"finanz\",\n  \"finanze\": \"finanz\",\n  \"finanzia\": \"finanz\",\n  \"finanziamenti\": \"finanz\",\n  \"finanziamento\": \"finanz\",\n  \"finanziando\": \"finanz\",\n  \"finanziare\": \"finanz\",\n  \"finanziari\": \"finanziar\",\n  \"finanziaria\": \"finanziar\",\n  \"finanziarie\": \"finanziar\",\n  \"finanziario\": \"finanziar\",\n  \"finanziarla\": \"finanz\",\n  \"finanziati\": \"finanz\",\n  \"finanziato\": \"finanz\",\n  \"finanziatori\": \"finanz\",\n  \"finanziemnti\": \"finanziemnt\",\n  \"finanziere\": \"finanz\",\n  \"finarte\": \"finart\",\n  \"fincantieri\": \"fincantier\",\n  \"fincasa\": \"fincas\",\n  \"finch\": \"finc\",\n  \"finché\": \"finc\",\n  \"finchè\": \"finc\",\n  \"fine\": \"fin\",\n  \"finendo\": \"fin\",\n  \"finestra\": \"finestr\",\n  \"finestre\": \"finestr\",\n  \"finestrina\": \"finestrin\",\n  \"finestrino\": \"finestrin\",\n  \"finezze\": \"finezz\",\n  \"fingendo\": \"fing\",\n  \"fingendosi\": \"fing\",\n  \"fini\": \"fin\",\n  \"finì\": \"fin\",\n  \"finiamola\": \"finiamol\",\n  \"fininvest\": \"fininvest\",\n  \"finir\": \"fin\",\n  \"finirà\": \"fin\",\n  \"finire\": \"fin\",\n  \"finirebbe\": \"fin\",\n  \"finirebbero\": \"fin\",\n  \"finiremmo\": \"fin\",\n  \"finirla\": \"fin\",\n  \"finirlo\": \"fin\",\n  \"finirò\": \"fin\",\n  \"finirono\": \"fin\",\n  \"finirsi\": \"fin\",\n  \"finisca\": \"fin\",\n  \"finiscano\": \"fin\",\n  \"finisce\": \"fin\",\n  \"finisco\": \"fin\",\n  \"finiscono\": \"fin\",\n  \"finisse\": \"finiss\",\n  \"finissimo\": \"finissim\",\n  \"finita\": \"fin\",\n  \"finite\": \"fin\",\n  \"finitela\": \"finitel\",\n  \"finitezza\": \"finitezz\",\n  \"finiti\": \"fin\",\n  \"finito\": \"fin\",\n  \"finiva\": \"fin\",\n  \"finivan\": \"finivan\",\n  \"finivano\": \"fin\",\n  \"finlandese\": \"finlandes\",\n  \"finlandia\": \"finland\",\n  \"finmare\": \"finm\",\n  \"finmark\": \"finmark\",\n  \"finmeccanica\": \"finmeccan\",\n  \"fino\": \"fin\",\n  \"finora\": \"finor\",\n  \"finrex\": \"finrex\",\n  \"finse\": \"fins\",\n  \"finsur\": \"finsur\",\n  \"finta\": \"fint\",\n  \"finti\": \"fint\",\n  \"finto\": \"fint\",\n  \"finzi\": \"finz\",\n  \"finzioni\": \"finzion\",\n  \"fio\": \"fio\",\n  \"fioca\": \"fioc\",\n  \"fioccano\": \"fiocc\",\n  \"fioccavan\": \"fioccavan\",\n  \"fiocchi\": \"fiocc\",\n  \"fiochi\": \"fioc\",\n  \"fioco\": \"fioc\",\n  \"fiom\": \"fiom\",\n  \"fionda\": \"fiond\",\n  \"fior\": \"fior\",\n  \"fiore\": \"fior\",\n  \"fiorella\": \"fiorell\",\n  \"fiorellini\": \"fiorellin\",\n  \"fiorellino\": \"fiorellin\",\n  \"fiorello\": \"fiorell\",\n  \"fiorentina\": \"fiorentin\",\n  \"fiorentino\": \"fiorentin\",\n  \"fiorenzuola\": \"fiorenzuol\",\n  \"fioretto\": \"fiorett\",\n  \"fiori\": \"fior\",\n  \"fiorì\": \"fior\",\n  \"fiorino\": \"fiorin\",\n  \"fiorita\": \"fior\",\n  \"fiotto\": \"fiott\",\n  \"fir\": \"fir\",\n  \"firenze\": \"firenz\",\n  \"firicano\": \"firic\",\n  \"firma\": \"firm\",\n  \"firmare\": \"firm\",\n  \"firmata\": \"firm\",\n  \"firmatari\": \"firmatar\",\n  \"firmatario\": \"firmatar\",\n  \"firmatati\": \"firmat\",\n  \"firmate\": \"firm\",\n  \"firmato\": \"firm\",\n  \"firme\": \"firm\",\n  \"firmeranno\": \"firm\",\n  \"firmiamo\": \"firm\",\n  \"firrincieli\": \"firrinciel\",\n  \"fis\": \"fis\",\n  \"fisafs\": \"fisafs\",\n  \"fisarmonica\": \"fisarmon\",\n  \"fiscale\": \"fiscal\",\n  \"fiscali\": \"fiscal\",\n  \"fiscalità\": \"fiscal\",\n  \"fiscambi\": \"fiscamb\",\n  \"fischi\": \"fisc\",\n  \"fischiando\": \"fisc\",\n  \"fischiare\": \"fisc\",\n  \"fischiate\": \"fisc\",\n  \"fischiato\": \"fisc\",\n  \"fischietti\": \"fischiett\",\n  \"fischio\": \"fisc\",\n  \"fischìo\": \"fischì\",\n  \"fischler\": \"fischler\",\n  \"fisco\": \"fisc\",\n  \"fisher\": \"fisher\",\n  \"fisia\": \"fis\",\n  \"fisica\": \"fisic\",\n  \"fisicamente\": \"fisic\",\n  \"fisiche\": \"fisic\",\n  \"fisichella\": \"fisichell\",\n  \"fisici\": \"fisic\",\n  \"fisico\": \"fisic\",\n  \"fisionomia\": \"fisionom\",\n  \"fisionomici\": \"fisionom\",\n  \"fisonomia\": \"fisonom\",\n  \"fissa\": \"fiss\",\n  \"fissan\": \"fissan\",\n  \"fissando\": \"fiss\",\n  \"fissandolo\": \"fiss\",\n  \"fissar\": \"fiss\",\n  \"fissare\": \"fiss\",\n  \"fissarlo\": \"fiss\",\n  \"fissata\": \"fiss\",\n  \"fissate\": \"fiss\",\n  \"fissati\": \"fiss\",\n  \"fissato\": \"fiss\",\n  \"fissava\": \"fiss\",\n  \"fissavano\": \"fiss\",\n  \"fissazione\": \"fissazion\",\n  \"fisse\": \"fiss\",\n  \"fisserà\": \"fiss\",\n  \"fissi\": \"fiss\",\n  \"fisso\": \"fiss\",\n  \"fissò\": \"fiss\",\n  \"fissore\": \"fissor\",\n  \"fit\": \"fit\",\n  \"fitta\": \"fitt\",\n  \"fitte\": \"fitt\",\n  \"fitti\": \"fitt\",\n  \"fittiziamente\": \"fittiz\",\n  \"fitto\": \"fitt\",\n  \"fitzgerald\": \"fitzgerald\",\n  \"fiuggi\": \"fiugg\",\n  \"fiume\": \"fium\",\n  \"fiumi\": \"fium\",\n  \"fiumicino\": \"fiumicin\",\n  \"fiuta\": \"fiut\",\n  \"fiutano\": \"fiut\",\n  \"fiutare\": \"fiut\",\n  \"fixing\": \"fixing\",\n  \"flachi\": \"flac\",\n  \"flagella\": \"flagell\",\n  \"flagelli\": \"flagell\",\n  \"flagello\": \"flagell\",\n  \"flamment\": \"flamment\",\n  \"flash\": \"flash\",\n  \"flavi\": \"flav\",\n  \"flavia\": \"flav\",\n  \"flavio\": \"flav\",\n  \"flego\": \"fleg\",\n  \"flegreo\": \"flegre\",\n  \"flemma\": \"flemm\",\n  \"flessibile\": \"flessibil\",\n  \"flessibili\": \"flessibil\",\n  \"flessibilità\": \"flessibil\",\n  \"flessione\": \"flession\",\n  \"flessori\": \"flessor\",\n  \"flinn\": \"flinn\",\n  \"flores\": \"flores\",\n  \"floriancic\": \"floriancic\",\n  \"florida\": \"florid\",\n  \"floridezza\": \"floridezz\",\n  \"floridissima\": \"floridissim\",\n  \"florio\": \"flor\",\n  \"floscia\": \"flosc\",\n  \"floscio\": \"flosc\",\n  \"flot\": \"flot\",\n  \"flotta\": \"flott\",\n  \"flussi\": \"fluss\",\n  \"flutti\": \"flutt\",\n  \"fluttuante\": \"fluttuant\",\n  \"fluttuazione\": \"fluttuazion\",\n  \"fluttuazioni\": \"fluttuazion\",\n  \"fly\": \"fly\",\n  \"flynn\": \"flynn\",\n  \"fmi\": \"fmi\",\n  \"fn\": \"fn\",\n  \"fnle\": \"fnle\",\n  \"fnsi\": \"fnsi\",\n  \"fo\": \"fo\",\n  \"foccillo\": \"foccill\",\n  \"fochi\": \"foch\",\n  \"foci\": \"foc\",\n  \"focolaio\": \"focolai\",\n  \"focolare\": \"focol\",\n  \"focosa\": \"focos\",\n  \"foday\": \"foday\",\n  \"fodera\": \"foder\",\n  \"fodero\": \"foder\",\n  \"foga\": \"fog\",\n  \"foggia\": \"fogg\",\n  \"fogli\": \"fogl\",\n  \"foglia\": \"fogl\",\n  \"fogliame\": \"fogliam\",\n  \"foglie\": \"fogl\",\n  \"foglio\": \"fogl\",\n  \"foglioni\": \"foglion\",\n  \"fogna\": \"fogn\",\n  \"fogne\": \"fogn\",\n  \"foiano\": \"foi\",\n  \"folclore\": \"folclor\",\n  \"folgaria\": \"folgar\",\n  \"folkloristico\": \"folklorist\",\n  \"folla\": \"foll\",\n  \"follà\": \"foll\",\n  \"folle\": \"foll\",\n  \"folli\": \"foll\",\n  \"follia\": \"foll\",\n  \"folloni\": \"follon\",\n  \"folta\": \"folt\",\n  \"folte\": \"folt\",\n  \"folti\": \"folt\",\n  \"folto\": \"folt\",\n  \"fomentar\": \"foment\",\n  \"fond\": \"fond\",\n  \"fonda\": \"fond\",\n  \"fondaccio\": \"fondacc\",\n  \"fondachi\": \"fondac\",\n  \"fondaco\": \"fondac\",\n  \"fondali\": \"fondal\",\n  \"fondamentale\": \"fondamental\",\n  \"fondamentali\": \"fondamental\",\n  \"fondamentalismo\": \"fondamental\",\n  \"fondamenti\": \"fond\",\n  \"fondamento\": \"fond\",\n  \"fondandosi\": \"fond\",\n  \"fondanti\": \"fondant\",\n  \"fondare\": \"fond\",\n  \"fondarle\": \"fond\",\n  \"fondata\": \"fond\",\n  \"fondate\": \"fond\",\n  \"fondatezza\": \"fondatezz\",\n  \"fondativo\": \"fondat\",\n  \"fondato\": \"fond\",\n  \"fondatore\": \"fondator\",\n  \"fondatori\": \"fondator\",\n  \"fondattivo\": \"fondatt\",\n  \"fondazione\": \"fondazion\",\n  \"fondazioni\": \"fondazion\",\n  \"fondersel\": \"fondersel\",\n  \"fondi\": \"fond\",\n  \"fondiaria\": \"fondiar\",\n  \"fondiario\": \"fondiar\",\n  \"fondicri\": \"fondicr\",\n  \"fondimpiego\": \"fondimpieg\",\n  \"fondinvest\": \"fondinvest\",\n  \"fondo\": \"fond\",\n  \"fondoforte\": \"fondofort\",\n  \"fondosviluppo\": \"fondosvilupp\",\n  \"fondriest\": \"fondriest\",\n  \"fonseca\": \"fonsec\",\n  \"fonspa\": \"fonsp\",\n  \"fontan\": \"fontan\",\n  \"fontana\": \"fontan\",\n  \"fontanella\": \"fontanell\",\n  \"fonte\": \"font\",\n  \"fonti\": \"font\",\n  \"fontolan\": \"fontolan\",\n  \"food\": \"food\",\n  \"football\": \"football\",\n  \"for\": \"for\",\n  \"foraggieri\": \"foraggier\",\n  \"foratura\": \"foratur\",\n  \"forbici\": \"forbic\",\n  \"forbite\": \"forb\",\n  \"forca\": \"forc\",\n  \"force\": \"forc\",\n  \"forche\": \"forc\",\n  \"forchetta\": \"forchett\",\n  \"forchette\": \"forchett\",\n  \"forcing\": \"forcing\",\n  \"ford\": \"ford\",\n  \"foreign\": \"foreign\",\n  \"forense\": \"forens\",\n  \"foresta\": \"forest\",\n  \"forestale\": \"forestal\",\n  \"forestali\": \"forestal\",\n  \"foreste\": \"forest\",\n  \"forestiera\": \"forestier\",\n  \"forestieri\": \"forestier\",\n  \"forestiero\": \"forestier\",\n  \"forfettario\": \"forfettar\",\n  \"forieri\": \"forier\",\n  \"forlani\": \"forlan\",\n  \"forli\": \"forl\",\n  \"forlì\": \"forl\",\n  \"forma\": \"form\",\n  \"formaggi\": \"formagg\",\n  \"formale\": \"formal\",\n  \"formali\": \"formal\",\n  \"formalità\": \"formal\",\n  \"formalizzata\": \"formalizz\",\n  \"formalizzato\": \"formalizz\",\n  \"formalizzazione\": \"formalizz\",\n  \"formalizzeranno\": \"formalizz\",\n  \"formalmente\": \"formal\",\n  \"formam\": \"formam\",\n  \"forman\": \"forman\",\n  \"formando\": \"form\",\n  \"formano\": \"form\",\n  \"formar\": \"form\",\n  \"formare\": \"form\",\n  \"formarla\": \"form\",\n  \"formarne\": \"form\",\n  \"formarono\": \"form\",\n  \"formarsi\": \"form\",\n  \"formata\": \"form\",\n  \"formati\": \"form\",\n  \"formatisi\": \"formatis\",\n  \"formativo\": \"format\",\n  \"formato\": \"form\",\n  \"formava\": \"form\",\n  \"formavano\": \"form\",\n  \"formazione\": \"formazion\",\n  \"formazioni\": \"formazion\",\n  \"forme\": \"form\",\n  \"formentini\": \"formentin\",\n  \"formeranno\": \"form\",\n  \"formi\": \"form\",\n  \"formia\": \"form\",\n  \"formicolaio\": \"formicolai\",\n  \"formicolavan\": \"formicolavan\",\n  \"formicolavano\": \"formicol\",\n  \"formidabile\": \"formid\",\n  \"formigoni\": \"formigon\",\n  \"formò\": \"form\",\n  \"formola\": \"formol\",\n  \"formole\": \"formol\",\n  \"formula\": \"formul\",\n  \"formulare\": \"formul\",\n  \"formulata\": \"formul\",\n  \"formulate\": \"formul\",\n  \"formulati\": \"formul\",\n  \"formulato\": \"formul\",\n  \"formulazione\": \"formul\",\n  \"fornai\": \"forna\",\n  \"fornaio\": \"fornai\",\n  \"fornari\": \"fornar\",\n  \"fornario\": \"fornar\",\n  \"fornello\": \"fornell\",\n  \"forni\": \"forn\",\n  \"fornì\": \"forn\",\n  \"fornir\": \"forn\",\n  \"fornirà\": \"forn\",\n  \"fornire\": \"forn\",\n  \"fornisca\": \"forn\",\n  \"fornisce\": \"forn\",\n  \"fornita\": \"forn\",\n  \"fornite\": \"forn\",\n  \"forniti\": \"forn\",\n  \"fornitissimo\": \"fornitissim\",\n  \"fornito\": \"forn\",\n  \"fornitore\": \"fornitor\",\n  \"fornitura\": \"fornitur\",\n  \"forniture\": \"fornitur\",\n  \"forno\": \"forn\",\n  \"fornte\": \"fornt\",\n  \"forrest\": \"forrest\",\n  \"forrester\": \"forrester\",\n  \"fors\": \"fors\",\n  \"forse\": \"fors\",\n  \"forsennati\": \"forsenn\",\n  \"forster\": \"forster\",\n  \"forte\": \"fort\",\n  \"fortemente\": \"fortement\",\n  \"fortezza\": \"fortezz\",\n  \"fortezze\": \"fortezz\",\n  \"forti\": \"fort\",\n  \"fortificato\": \"fortific\",\n  \"fortissimo\": \"fortissim\",\n  \"fortuite\": \"fortu\",\n  \"fortuiti\": \"fortu\",\n  \"fortuna\": \"fortun\",\n  \"fortunamente\": \"fortun\",\n  \"fortunata\": \"fortun\",\n  \"fortunatamente\": \"fortunat\",\n  \"fortunati\": \"fortun\",\n  \"fortunato\": \"fortun\",\n  \"fortune\": \"fortun\",\n  \"fortunosamente\": \"fortun\",\n  \"fortunoso\": \"fortun\",\n  \"forum\": \"forum\",\n  \"forusciti\": \"forusc\",\n  \"foruscito\": \"forusc\",\n  \"forza\": \"forz\",\n  \"forzare\": \"forz\",\n  \"forzassero\": \"forz\",\n  \"forzata\": \"forz\",\n  \"forzatamente\": \"forzat\",\n  \"forzati\": \"forz\",\n  \"forzato\": \"forz\",\n  \"forzature\": \"forzatur\",\n  \"forze\": \"forz\",\n  \"forziste\": \"forzist\",\n  \"forzò\": \"forz\",\n  \"forzute\": \"forz\",\n  \"fosca\": \"fosc\",\n  \"fosche\": \"fosc\",\n  \"fosco\": \"fosc\",\n  \"foss\": \"foss\",\n  \"fossa\": \"foss\",\n  \"fossatello\": \"fossatell\",\n  \"fossati\": \"foss\",\n  \"fossato\": \"foss\",\n  \"fosse\": \"foss\",\n  \"fosser\": \"fosser\",\n  \"fossero\": \"fosser\",\n  \"fossi\": \"foss\",\n  \"fossili\": \"fossil\",\n  \"fossimo\": \"fossim\",\n  \"fosso\": \"foss\",\n  \"foste\": \"fost\",\n  \"foster\": \"foster\",\n  \"foto\": \"fot\",\n  \"fotografi\": \"fotograf\",\n  \"fotografia\": \"fotograf\",\n  \"fotografica\": \"fotograf\",\n  \"fotografie\": \"fotograf\",\n  \"fotografo\": \"fotograf\",\n  \"foulard\": \"foulard\",\n  \"fpi\": \"fpi\",\n  \"fra\": \"fra\",\n  \"fracanzani\": \"fracanzan\",\n  \"fracassarsi\": \"fracass\",\n  \"fracassi\": \"frac\",\n  \"fracasso\": \"fracass\",\n  \"fradicio\": \"fradic\",\n  \"fradiciume\": \"fradicium\",\n  \"fragassi\": \"frag\",\n  \"fragile\": \"fragil\",\n  \"fragilità\": \"fragil\",\n  \"fragorosi\": \"fragor\",\n  \"fragranza\": \"fragranz\",\n  \"fragranze\": \"fragranz\",\n  \"fraintesa\": \"fraintes\",\n  \"framatome\": \"framatom\",\n  \"framatone\": \"framaton\",\n  \"frammentarie\": \"frammentar\",\n  \"frammenti\": \"framment\",\n  \"frammento\": \"framment\",\n  \"frammentò\": \"framment\",\n  \"frammischiate\": \"frammisc\",\n  \"frammischiava\": \"frammisc\",\n  \"franca\": \"franc\",\n  \"francais\": \"francais\",\n  \"francamente\": \"franc\",\n  \"france\": \"franc\",\n  \"frances\": \"frances\",\n  \"francesca\": \"francesc\",\n  \"franceschetti\": \"franceschett\",\n  \"francesco\": \"francesc\",\n  \"francesconi\": \"francescon\",\n  \"francese\": \"frances\",\n  \"francesi\": \"frances\",\n  \"franche\": \"franc\",\n  \"franchezza\": \"franchezz\",\n  \"franchi\": \"franc\",\n  \"franchini\": \"franchin\",\n  \"francia\": \"franc\",\n  \"francica\": \"francic\",\n  \"franciica\": \"franciic\",\n  \"francisco\": \"franc\",\n  \"franciscus\": \"franciscus\",\n  \"francisque\": \"francisqu\",\n  \"franck\": \"franck\",\n  \"franco\": \"franc\",\n  \"francobolli\": \"francoboll\",\n  \"francoforte\": \"francofort\",\n  \"francois\": \"francois\",\n  \"frange\": \"frang\",\n  \"frangente\": \"frangent\",\n  \"frangenti\": \"frangent\",\n  \"frangersi\": \"frang\",\n  \"frangia\": \"frang\",\n  \"franjo\": \"franj\",\n  \"frank\": \"frank\",\n  \"franke\": \"frank\",\n  \"frankenstein\": \"frankenstein\",\n  \"frankfurter\": \"frankfurter\",\n  \"frankie\": \"frank\",\n  \"franois\": \"franois\",\n  \"frantende\": \"frant\",\n  \"franteso\": \"frantes\",\n  \"frantumi\": \"frantum\",\n  \"franz\": \"franz\",\n  \"franzone\": \"franzon\",\n  \"franzoni\": \"franzon\",\n  \"frapposti\": \"frappost\",\n  \"frasca\": \"frasc\",\n  \"frascati\": \"frasc\",\n  \"frase\": \"fras\",\n  \"frasi\": \"fras\",\n  \"frassica\": \"frassic\",\n  \"frastagliata\": \"frastagl\",\n  \"frastono\": \"frast\",\n  \"frastornato\": \"frastorn\",\n  \"frate\": \"frat\",\n  \"fratel\": \"fratel\",\n  \"fratellanza\": \"fratell\",\n  \"fratelli\": \"fratell\",\n  \"fratellini\": \"fratellin\",\n  \"fratellino\": \"fratellin\",\n  \"fratello\": \"fratell\",\n  \"fraterie\": \"frater\",\n  \"fraterno\": \"fratern\",\n  \"frati\": \"frat\",\n  \"fraticello\": \"fraticell\",\n  \"fratini\": \"fratin\",\n  \"fratricida\": \"fratricid\",\n  \"frattanto\": \"frattant\",\n  \"frattempo\": \"frattemp\",\n  \"frattini\": \"frattin\",\n  \"frattura\": \"frattur\",\n  \"fratture\": \"frattur\",\n  \"fraudisque\": \"fraudisqu\",\n  \"fraudolenta\": \"fraudolent\",\n  \"fraudum\": \"fraudum\",\n  \"frauenkirsche\": \"frauenkirsc\",\n  \"fraz\": \"fraz\",\n  \"frazionamento\": \"frazion\",\n  \"frazione\": \"frazion\",\n  \"fre\": \"fre\",\n  \"frears\": \"frears\",\n  \"fredda\": \"fredd\",\n  \"freddamente\": \"fredd\",\n  \"freddato\": \"fredd\",\n  \"fredde\": \"fredd\",\n  \"freddi\": \"fredd\",\n  \"freddie\": \"fredd\",\n  \"freddo\": \"fredd\",\n  \"frederic\": \"frederic\",\n  \"fredericks\": \"fredericks\",\n  \"freeport\": \"freeport\",\n  \"freetown\": \"freetown\",\n  \"freeway\": \"freeway\",\n  \"fregata\": \"freg\",\n  \"fregate\": \"freg\",\n  \"fregatina\": \"fregatin\",\n  \"fregato\": \"freg\",\n  \"fregava\": \"freg\",\n  \"fremendo\": \"frem\",\n  \"fremente\": \"frement\",\n  \"fremevano\": \"frem\",\n  \"fremito\": \"frem\",\n  \"frenare\": \"fren\",\n  \"frenata\": \"fren\",\n  \"frenato\": \"fren\",\n  \"frenesia\": \"frenes\",\n  \"frenetici\": \"frenet\",\n  \"frenetico\": \"frenet\",\n  \"freni\": \"fren\",\n  \"freno\": \"fren\",\n  \"frequenta\": \"frequent\",\n  \"frequentare\": \"frequent\",\n  \"frequentarli\": \"frequent\",\n  \"frequentata\": \"frequent\",\n  \"frequentatori\": \"frequent\",\n  \"frequentava\": \"frequent\",\n  \"frequentavano\": \"frequent\",\n  \"frequente\": \"frequent\",\n  \"frequentemente\": \"frequent\",\n  \"frequenti\": \"frequent\",\n  \"frequentissime\": \"frequentissim\",\n  \"frequenza\": \"frequenz\",\n  \"fresca\": \"fresc\",\n  \"fresche\": \"fresc\",\n  \"freschi\": \"fresc\",\n  \"fresco\": \"fresc\",\n  \"frescolino\": \"frescolin\",\n  \"fresi\": \"fres\",\n  \"fretta\": \"frett\",\n  \"frette\": \"frett\",\n  \"frettolosi\": \"frettol\",\n  \"frettoloso\": \"frettol\",\n  \"fretus\": \"fretus\",\n  \"frias\": \"frias\",\n  \"frisani\": \"frisan\",\n  \"frittata\": \"fritt\",\n  \"friulana\": \"friulan\",\n  \"friulano\": \"friul\",\n  \"friuli\": \"friul\",\n  \"frivolezza\": \"frivolezz\",\n  \"frivolezze\": \"frivolezz\",\n  \"frizzante\": \"frizzant\",\n  \"frizzavano\": \"frizz\",\n  \"frode\": \"frod\",\n  \"fronda\": \"frond\",\n  \"fronde\": \"frond\",\n  \"frontale\": \"frontal\",\n  \"fronte\": \"front\",\n  \"fronteggiare\": \"frontegg\",\n  \"fronteggiato\": \"frontegg\",\n  \"fronteggiavano\": \"frontegg\",\n  \"fronti\": \"front\",\n  \"frontiera\": \"frontier\",\n  \"frontiere\": \"front\",\n  \"fronzuti\": \"fronz\",\n  \"frosinone\": \"frosinon\",\n  \"frottole\": \"frottol\",\n  \"froze\": \"froz\",\n  \"frugale\": \"frugal\",\n  \"frugamenti\": \"frug\",\n  \"frugando\": \"frug\",\n  \"frugar\": \"frug\",\n  \"frugare\": \"frug\",\n  \"frugato\": \"frug\",\n  \"frugavan\": \"frugavan\",\n  \"frugavano\": \"frug\",\n  \"frughi\": \"frug\",\n  \"frugo\": \"frug\",\n  \"frugò\": \"frug\",\n  \"fruit\": \"fruit\",\n  \"frullone\": \"frullon\",\n  \"frulloni\": \"frullon\",\n  \"fruscìo\": \"fruscì\",\n  \"frusta\": \"frust\",\n  \"frustata\": \"frust\",\n  \"frustate\": \"frust\",\n  \"fruste\": \"frust\",\n  \"frutta\": \"frutt\",\n  \"fruttare\": \"frutt\",\n  \"frutte\": \"frutt\",\n  \"frutterebbe\": \"frutt\",\n  \"frutti\": \"frutt\",\n  \"frutto\": \"frutt\",\n  \"fs\": \"fs\",\n  \"ft\": \"ft\",\n  \"ftosi\": \"ftos\",\n  \"fu\": \"fu\",\n  \"fuan\": \"fuan\",\n  \"fucilata\": \"fucil\",\n  \"fucile\": \"fucil\",\n  \"fucili\": \"fucil\",\n  \"fuedo\": \"fued\",\n  \"fuentes\": \"fuentes\",\n  \"fuera\": \"fuer\",\n  \"fuerit\": \"fuerit\",\n  \"fuga\": \"fug\",\n  \"fugace\": \"fugac\",\n  \"fugare\": \"fug\",\n  \"fugato\": \"fug\",\n  \"fuggendo\": \"fugg\",\n  \"fuggì\": \"fugg\",\n  \"fuggiaschi\": \"fuggiasc\",\n  \"fuggir\": \"fugg\",\n  \"fuggire\": \"fugg\",\n  \"fuggiron\": \"fuggiron\",\n  \"fuggita\": \"fugg\",\n  \"fuggiti\": \"fugg\",\n  \"fuggitive\": \"fuggit\",\n  \"fuggitivi\": \"fuggit\",\n  \"fuggitivo\": \"fuggit\",\n  \"fuggito\": \"fugg\",\n  \"fuggiva\": \"fugg\",\n  \"fughe\": \"fugh\",\n  \"fui\": \"fui\",\n  \"fuisse\": \"fuiss\",\n  \"fuit\": \"fuit\",\n  \"fujimori\": \"fujimor\",\n  \"fulbright\": \"fulbright\",\n  \"fulcro\": \"fulcr\",\n  \"fulminato\": \"fulmin\",\n  \"fulmini\": \"fulmin\",\n  \"fuma\": \"fum\",\n  \"fumagalli\": \"fumagall\",\n  \"fumi\": \"fum\",\n  \"fummo\": \"fumm\",\n  \"fumo\": \"fum\",\n  \"funari\": \"funar\",\n  \"fund\": \"fund\",\n  \"fune\": \"fun\",\n  \"funebre\": \"funebr\",\n  \"funebri\": \"funebr\",\n  \"funerale\": \"funeral\",\n  \"funerali\": \"funeral\",\n  \"funesta\": \"funest\",\n  \"funeste\": \"funest\",\n  \"funesti\": \"funest\",\n  \"funesto\": \"funest\",\n  \"funzion\": \"funzion\",\n  \"funziona\": \"funzion\",\n  \"funzionale\": \"funzional\",\n  \"funzionamento\": \"funzion\",\n  \"funzionante\": \"funzion\",\n  \"funzionare\": \"funzion\",\n  \"funzionari\": \"funzionar\",\n  \"funzionaria\": \"funzionar\",\n  \"funzionario\": \"funzionar\",\n  \"funzione\": \"funzion\",\n  \"funzionerà\": \"funzion\",\n  \"funzioni\": \"funzion\",\n  \"fuochi\": \"fuoc\",\n  \"fuoco\": \"fuoc\",\n  \"fuor\": \"fuor\",\n  \"fuorché\": \"fuorc\",\n  \"fuori\": \"fuor\",\n  \"fuoriclasse\": \"fuoricl\",\n  \"fuorigioco\": \"fuorigioc\",\n  \"fuorilegge\": \"fuorilegg\",\n  \"fuoriscita\": \"fuorisc\",\n  \"fuoristrada\": \"fuoristrad\",\n  \"fuoriuscita\": \"fuoriusc\",\n  \"fuoriusciti\": \"fuoriusc\",\n  \"fuoriuscito\": \"fuoriusc\",\n  \"furano\": \"fur\",\n  \"furberie\": \"furber\",\n  \"furbetta\": \"furbett\",\n  \"furbi\": \"furb\",\n  \"furbo\": \"furb\",\n  \"furfante\": \"furfant\",\n  \"furfanti\": \"furfant\",\n  \"furfantone\": \"furfanton\",\n  \"furfantoni\": \"furfanton\",\n  \"furia\": \"fur\",\n  \"furibonda\": \"furibond\",\n  \"furibondi\": \"furibond\",\n  \"furie\": \"fur\",\n  \"furiosa\": \"furios\",\n  \"furiosi\": \"furios\",\n  \"furioso\": \"furios\",\n  \"furon\": \"furon\",\n  \"furoncoli\": \"furoncol\",\n  \"furono\": \"fur\",\n  \"furor\": \"furor\",\n  \"furore\": \"furor\",\n  \"furstenberg\": \"furstenberg\",\n  \"furtivamente\": \"furtiv\",\n  \"furto\": \"furt\",\n  \"fuscagni\": \"fuscagn\",\n  \"fuscelli\": \"fuscell\",\n  \"fusco\": \"fusc\",\n  \"fuseaux\": \"fuseaux\",\n  \"fusella\": \"fusell\",\n  \"fuser\": \"fuser\",\n  \"fusione\": \"fusion\",\n  \"fusioni\": \"fusion\",\n  \"fuso\": \"fus\",\n  \"fustagnai\": \"fustagna\",\n  \"fustini\": \"fustin\",\n  \"futre\": \"futr\",\n  \"futura\": \"futur\",\n  \"future\": \"futur\",\n  \"futuri\": \"futur\",\n  \"futuro\": \"futur\",\n  \"futurò\": \"futur\",\n  \"fv\": \"fv\",\n  \"g\": \"g\",\n  \"gabbi\": \"gabb\",\n  \"gabbia\": \"gabb\",\n  \"gabelliere\": \"gabell\",\n  \"gabellieri\": \"gabellier\",\n  \"gabellini\": \"gabellin\",\n  \"gabetti\": \"gabett\",\n  \"gabinetto\": \"gabinett\",\n  \"gabino\": \"gabin\",\n  \"gabon\": \"gabon\",\n  \"gabriel\": \"gabriel\",\n  \"gabriela\": \"gabriel\",\n  \"gabriele\": \"gabriel\",\n  \"gabrieli\": \"gabriel\",\n  \"gabriella\": \"gabriell\",\n  \"gadget\": \"gadget\",\n  \"gaetano\": \"gaet\",\n  \"gaffe\": \"gaff\",\n  \"gaffes\": \"gaffes\",\n  \"gaffiante\": \"gaffiant\",\n  \"gag\": \"gag\",\n  \"gagliarda\": \"gagliard\",\n  \"gagliarde\": \"gagliard\",\n  \"gagliardi\": \"gagliard\",\n  \"gaiana\": \"gaian\",\n  \"gaic\": \"gaic\",\n  \"gaio\": \"gai\",\n  \"gal\": \"gal\",\n  \"gala\": \"gal\",\n  \"galagoal\": \"galagoal\",\n  \"galante\": \"galant\",\n  \"galanteria\": \"galanter\",\n  \"galanterie\": \"galanter\",\n  \"galantuomini\": \"galantuomin\",\n  \"galantuomo\": \"galantuom\",\n  \"galassia\": \"galass\",\n  \"galasso\": \"galass\",\n  \"galateo\": \"galate\",\n  \"galderisi\": \"galderis\",\n  \"galdino\": \"galdin\",\n  \"gale\": \"gal\",\n  \"galea\": \"gale\",\n  \"galeone\": \"galeon\",\n  \"galeotte\": \"galeott\",\n  \"galera\": \"galer\",\n  \"galia\": \"gal\",\n  \"galicia\": \"galic\",\n  \"galilei\": \"galile\",\n  \"galileo\": \"galile\",\n  \"galioto\": \"galiot\",\n  \"galla\": \"gall\",\n  \"gallarate\": \"gallar\",\n  \"gallarini\": \"gallarin\",\n  \"galleggia\": \"gallegg\",\n  \"galleggiante\": \"gallegg\",\n  \"galleggiare\": \"gallegg\",\n  \"gallegos\": \"gallegos\",\n  \"galleria\": \"galler\",\n  \"galles\": \"galles\",\n  \"gallese\": \"galles\",\n  \"galletti\": \"gallett\",\n  \"galli\": \"gall\",\n  \"galline\": \"gallin\",\n  \"gallipoli\": \"gallipol\",\n  \"gallo\": \"gall\",\n  \"gallotta\": \"gallott\",\n  \"galoppo\": \"galopp\",\n  \"galoppò\": \"galopp\",\n  \"galvanizzando\": \"galvanizz\",\n  \"gama\": \"gam\",\n  \"gamba\": \"gamb\",\n  \"gambale\": \"gambal\",\n  \"gambe\": \"gamb\",\n  \"gamberini\": \"gamberin\",\n  \"gambiere\": \"gamb\",\n  \"gambini\": \"gambin\",\n  \"gambino\": \"gambin\",\n  \"game\": \"gam\",\n  \"gamma\": \"gamm\",\n  \"ganascino\": \"ganascin\",\n  \"gand\": \"gand\",\n  \"gande\": \"gand\",\n  \"gandhi\": \"gandh\",\n  \"gandini\": \"gandin\",\n  \"gangheri\": \"gangher\",\n  \"ganz\": \"ganz\",\n  \"gap\": \"gap\",\n  \"gar\": \"gar\",\n  \"gara\": \"gar\",\n  \"garage\": \"garag\",\n  \"garante\": \"garant\",\n  \"garanti\": \"garant\",\n  \"garantire\": \"garant\",\n  \"garantirebbe\": \"garant\",\n  \"garantiremo\": \"garant\",\n  \"garantirlo\": \"garant\",\n  \"garantisce\": \"garant\",\n  \"garantita\": \"garant\",\n  \"garantiti\": \"garant\",\n  \"garantito\": \"garant\",\n  \"garanzia\": \"garanz\",\n  \"garanzie\": \"garanz\",\n  \"garavaglia\": \"garavagl\",\n  \"garbata\": \"garb\",\n  \"garbatamente\": \"garbat\",\n  \"garbo\": \"garb\",\n  \"garboli\": \"garbol\",\n  \"garbugli\": \"garbugl\",\n  \"garbuglio\": \"garbugl\",\n  \"garcia\": \"garc\",\n  \"garda\": \"gard\",\n  \"garde\": \"gard\",\n  \"gardena\": \"garden\",\n  \"gardini\": \"gardin\",\n  \"gardone\": \"gardon\",\n  \"gardonese\": \"gardones\",\n  \"gare\": \"gar\",\n  \"gareggiando\": \"garegg\",\n  \"gareggiato\": \"garegg\",\n  \"gareggiavano\": \"garegg\",\n  \"gargani\": \"gargan\",\n  \"gargiulo\": \"gargiul\",\n  \"garibaldi\": \"garibald\",\n  \"garibaldì\": \"garibald\",\n  \"garibaldini\": \"garibaldin\",\n  \"garner\": \"garner\",\n  \"garnett\": \"garnett\",\n  \"garnier\": \"garnier\",\n  \"garofalo\": \"garofal\",\n  \"garrison\": \"garrison\",\n  \"garzoncello\": \"garzoncell\",\n  \"garzone\": \"garzon\",\n  \"garzoni\": \"garzon\",\n  \"gas\": \"gas\",\n  \"gasdotto\": \"gasdott\",\n  \"gaspare\": \"gasp\",\n  \"gasparini\": \"gasparin\",\n  \"gasparo\": \"gaspar\",\n  \"gasparri\": \"gasparr\",\n  \"gasperi\": \"gasper\",\n  \"gasperis\": \"gasperis\",\n  \"gassi\": \"gass\",\n  \"gastiga\": \"gastig\",\n  \"gastigamatti\": \"gastigamatt\",\n  \"gastigarli\": \"gastig\",\n  \"gastigati\": \"gastig\",\n  \"gastigato\": \"gastig\",\n  \"gastighi\": \"gastig\",\n  \"gastigo\": \"gastig\",\n  \"gatta\": \"gatt\",\n  \"gattai\": \"gatta\",\n  \"gatti\": \"gatt\",\n  \"gatto\": \"gatt\",\n  \"gattoni\": \"gatton\",\n  \"gattuso\": \"gattus\",\n  \"gaudagnano\": \"gaudagn\",\n  \"gaudenzi\": \"gaudenz\",\n  \"gaudio\": \"gaud\",\n  \"gautieri\": \"gautier\",\n  \"gava\": \"gav\",\n  \"gavci\": \"gavc\",\n  \"gaviglio\": \"gavigl\",\n  \"gavino\": \"gavin\",\n  \"gay\": \"gay\",\n  \"gayet\": \"gayet\",\n  \"gaz\": \"gaz\",\n  \"gaza\": \"gaz\",\n  \"gazebo\": \"gazeb\",\n  \"gazebò\": \"gazeb\",\n  \"gazeta\": \"gazet\",\n  \"gazzetta\": \"gazzett\",\n  \"gb\": \"gb\",\n  \"gbr\": \"gbr\",\n  \"gc\": \"gc\",\n  \"gcos\": \"gcos\",\n  \"gdf\": \"gdf\",\n  \"ge\": \"ge\",\n  \"gec\": \"gec\",\n  \"geis\": \"geis\",\n  \"geldolf\": \"geldolf\",\n  \"gelfi\": \"gelf\",\n  \"gelida\": \"gelid\",\n  \"gelli\": \"gell\",\n  \"gelosa\": \"gelos\",\n  \"gelosamente\": \"gelos\",\n  \"gelosia\": \"gelos\",\n  \"geloso\": \"gelos\",\n  \"gelsi\": \"gels\",\n  \"gelso\": \"gels\",\n  \"gelsomini\": \"gelsomin\",\n  \"gem\": \"gem\",\n  \"geme\": \"gem\",\n  \"gemelle\": \"gemell\",\n  \"gemevano\": \"gem\",\n  \"gemina\": \"gemin\",\n  \"gemiti\": \"gem\",\n  \"gemma\": \"gemm\",\n  \"gemonio\": \"gemon\",\n  \"gen\": \"gen\",\n  \"gena\": \"gen\",\n  \"genarale\": \"genaral\",\n  \"genca\": \"genc\",\n  \"genco\": \"genc\",\n  \"general\": \"general\",\n  \"generale\": \"general\",\n  \"generalfond\": \"generalfond\",\n  \"generali\": \"general\",\n  \"generalita\": \"general\",\n  \"generaliter\": \"generaliter\",\n  \"generalizzata\": \"generalizz\",\n  \"generalmente\": \"general\",\n  \"generata\": \"gener\",\n  \"generation\": \"generation\",\n  \"generatori\": \"gener\",\n  \"generazione\": \"gener\",\n  \"generazioni\": \"gener\",\n  \"genercomit\": \"genercomit\",\n  \"genere\": \"gen\",\n  \"generecomit\": \"generecomit\",\n  \"generi\": \"gener\",\n  \"generiche\": \"gener\",\n  \"generico\": \"gener\",\n  \"genero\": \"gener\",\n  \"generosa\": \"gener\",\n  \"generosamente\": \"gener\",\n  \"generosi\": \"gener\",\n  \"generoso\": \"gener\",\n  \"gengive\": \"gengiv\",\n  \"genìa\": \"genì\",\n  \"geniali\": \"genial\",\n  \"genina\": \"genin\",\n  \"genio\": \"gen\",\n  \"genitori\": \"genitor\",\n  \"geniturarum\": \"geniturarum\",\n  \"gennaio\": \"gennai\",\n  \"gennaro\": \"gennar\",\n  \"genoa\": \"geno\",\n  \"genoana\": \"genoan\",\n  \"genoani\": \"genoan\",\n  \"genoano\": \"gen\",\n  \"genocidio\": \"genocid\",\n  \"genova\": \"genov\",\n  \"genovese\": \"genoves\",\n  \"gente\": \"gent\",\n  \"gentè\": \"gent\",\n  \"genti\": \"gent\",\n  \"gentil\": \"gentil\",\n  \"gentildonna\": \"gentildonn\",\n  \"gentile\": \"gentil\",\n  \"gentilezza\": \"gentilezz\",\n  \"gentilezze\": \"gentilezz\",\n  \"gentili\": \"gentil\",\n  \"gentilini\": \"gentilin\",\n  \"gentilmente\": \"gentil\",\n  \"gentiluomini\": \"gentiluomin\",\n  \"gentiluomo\": \"gentiluom\",\n  \"gentium\": \"gentium\",\n  \"gentlemen\": \"gentlemen\",\n  \"genuflessi\": \"genufless\",\n  \"genuinamente\": \"genuin\",\n  \"genuini\": \"genuin\",\n  \"geodes\": \"geodes\",\n  \"geofisico\": \"geofis\",\n  \"geografica\": \"geograf\",\n  \"geografiche\": \"geograf\",\n  \"geologi\": \"geolog\",\n  \"george\": \"georg\",\n  \"georgetown\": \"georgetown\",\n  \"georgia\": \"georg\",\n  \"georgiana\": \"georgian\",\n  \"gepi\": \"gep\",\n  \"gepobond\": \"gepobond\",\n  \"gepocapital\": \"gepocapital\",\n  \"geporeinvest\": \"geporeinvest\",\n  \"geporend\": \"geporend\",\n  \"gepoworld\": \"gepoworld\",\n  \"ger\": \"ger\",\n  \"gera\": \"ger\",\n  \"gerarchia\": \"gerarc\",\n  \"gerardo\": \"gerard\",\n  \"gergo\": \"gerg\",\n  \"gerico\": \"geric\",\n  \"gerla\": \"gerl\",\n  \"gerle\": \"gerl\",\n  \"gerletta\": \"gerlett\",\n  \"germani\": \"german\",\n  \"germania\": \"german\",\n  \"germany\": \"germany\",\n  \"germe\": \"germ\",\n  \"germi\": \"germ\",\n  \"germogliare\": \"germogl\",\n  \"gerolamo\": \"gerolam\",\n  \"gerold\": \"gerold\",\n  \"gerry\": \"gerry\",\n  \"gerson\": \"gerson\",\n  \"gertrude\": \"gertrud\",\n  \"gertrudina\": \"gertrudin\",\n  \"gerusalemme\": \"gerusalemm\",\n  \"gervaso\": \"gervas\",\n  \"gesfimi\": \"gesfim\",\n  \"gestapo\": \"gestap\",\n  \"gestendo\": \"gest\",\n  \"gesti\": \"gest\",\n  \"gesticredit\": \"gesticredit\",\n  \"gestielle\": \"gestiell\",\n  \"gestifom\": \"gestifom\",\n  \"gestifondi\": \"gestifond\",\n  \"gestiob\": \"gestiob\",\n  \"gestionali\": \"gestional\",\n  \"gestione\": \"gestion\",\n  \"gestirà\": \"gest\",\n  \"gestiras\": \"gestiras\",\n  \"gestire\": \"gest\",\n  \"gestisce\": \"gest\",\n  \"gestiscono\": \"gest\",\n  \"gestite\": \"gest\",\n  \"gestito\": \"gest\",\n  \"gestnord\": \"gestnord\",\n  \"gesto\": \"gest\",\n  \"gestore\": \"gestor\",\n  \"gestuale\": \"gestual\",\n  \"gesù\": \"gesù\",\n  \"getta\": \"gett\",\n  \"gettando\": \"gett\",\n  \"gettandole\": \"gett\",\n  \"gettar\": \"gett\",\n  \"gettare\": \"gett\",\n  \"gettarono\": \"gett\",\n  \"gettarsele\": \"gettarsel\",\n  \"gettarsi\": \"gett\",\n  \"gettasser\": \"gettasser\",\n  \"gettata\": \"gett\",\n  \"gettate\": \"gett\",\n  \"gettato\": \"gett\",\n  \"getters\": \"getters\",\n  \"getti\": \"gett\",\n  \"gettito\": \"gett\",\n  \"getto\": \"gett\",\n  \"gettò\": \"gett\",\n  \"gewiss\": \"gewiss\",\n  \"gg\": \"gg\",\n  \"gh\": \"gh\",\n  \"ghafoor\": \"ghafoor\",\n  \"ghali\": \"ghal\",\n  \"ghennadi\": \"ghennad\",\n  \"ghermito\": \"gherm\",\n  \"gheroni\": \"gheron\",\n  \"ghetto\": \"ghett\",\n  \"ghezzi\": \"ghezz\",\n  \"ghiacci\": \"ghiacc\",\n  \"ghiaccio\": \"ghiacc\",\n  \"ghiaia\": \"ghiai\",\n  \"ghiaie\": \"ghiai\",\n  \"ghigno\": \"ghign\",\n  \"ghirardelli\": \"ghirardell\",\n  \"ghoober\": \"ghoober\",\n  \"gi\": \"gi\",\n  \"già\": \"già\",\n  \"giacarta\": \"giacart\",\n  \"giacché\": \"giacc\",\n  \"giacciono\": \"giacc\",\n  \"giace\": \"giac\",\n  \"giacere\": \"giac\",\n  \"giaceva\": \"giac\",\n  \"giacevano\": \"giac\",\n  \"giacimenti\": \"giac\",\n  \"giacimento\": \"giac\",\n  \"giacobbo\": \"giacobb\",\n  \"giacomel\": \"giacomel\",\n  \"giacomelli\": \"giacomell\",\n  \"giacomin\": \"giacomin\",\n  \"giacomo\": \"giacom\",\n  \"gialappàs\": \"gialappàs\",\n  \"gialla\": \"giall\",\n  \"gialle\": \"giall\",\n  \"gialli\": \"giall\",\n  \"giallo\": \"giall\",\n  \"gialloblù\": \"gialloblù\",\n  \"giallognola\": \"giallognol\",\n  \"giallorossa\": \"gialloross\",\n  \"giallorosso\": \"gialloross\",\n  \"giamai\": \"giama\",\n  \"giamaica\": \"giamaic\",\n  \"giambra\": \"giambr\",\n  \"giammai\": \"giamma\",\n  \"giampaolo\": \"giampaol\",\n  \"giampiero\": \"giampier\",\n  \"gian\": \"gian\",\n  \"giancarlo\": \"gianc\",\n  \"gianfranco\": \"gianfranc\",\n  \"giangiacomo\": \"giangiacom\",\n  \"gianluca\": \"gianluc\",\n  \"gianluigi\": \"gianluig\",\n  \"giannantonio\": \"giannanton\",\n  \"giannatale\": \"giannatal\",\n  \"giannetti\": \"giannett\",\n  \"gianni\": \"giann\",\n  \"giannini\": \"giannin\",\n  \"giannino\": \"giannin\",\n  \"giannuzzi\": \"giannuzz\",\n  \"gianpaolo\": \"gianpaol\",\n  \"giappone\": \"giappon\",\n  \"giapponese\": \"giappones\",\n  \"giapponesi\": \"giappones\",\n  \"giapppone\": \"giapppon\",\n  \"giarda\": \"giard\",\n  \"giardin\": \"giardin\",\n  \"giardinetto\": \"giardinett\",\n  \"giardini\": \"giardin\",\n  \"giardiniere\": \"giardin\",\n  \"giardino\": \"giardin\",\n  \"gifim\": \"gifim\",\n  \"gigante\": \"gigant\",\n  \"gigantesca\": \"gigantesc\",\n  \"gigantesco\": \"gigantesc\",\n  \"giganti\": \"gigant\",\n  \"gigi\": \"gig\",\n  \"gigli\": \"gigl\",\n  \"giglio\": \"gigl\",\n  \"gil\": \"gil\",\n  \"gilardini\": \"gilardin\",\n  \"gillian\": \"gillian\",\n  \"gilly\": \"gilly\",\n  \"gim\": \"gim\",\n  \"gin\": \"gin\",\n  \"gina\": \"gin\",\n  \"ginevra\": \"ginevr\",\n  \"ginn\": \"ginn\",\n  \"ginnastica\": \"ginnast\",\n  \"gino\": \"gin\",\n  \"ginocchia\": \"ginocc\",\n  \"ginocchio\": \"ginocc\",\n  \"ginocchioni\": \"ginocchion\",\n  \"gioca\": \"gioc\",\n  \"giocando\": \"gioc\",\n  \"giocano\": \"gioc\",\n  \"giocare\": \"gioc\",\n  \"giocata\": \"gioc\",\n  \"giocate\": \"gioc\",\n  \"giocato\": \"gioc\",\n  \"giocator\": \"giocator\",\n  \"giocatore\": \"giocator\",\n  \"giocatori\": \"giocator\",\n  \"giocava\": \"gioc\",\n  \"giocavan\": \"giocavan\",\n  \"giocavano\": \"gioc\",\n  \"giocherà\": \"gioc\",\n  \"giocheresti\": \"gioc\",\n  \"giochetto\": \"giochett\",\n  \"giochi\": \"gioc\",\n  \"gioco\": \"gioc\",\n  \"giocolieri\": \"giocolier\",\n  \"giocondi\": \"giocond\",\n  \"giocondità\": \"giocond\",\n  \"giocondo\": \"giocond\",\n  \"giocoso\": \"giocos\",\n  \"giogaia\": \"giogai\",\n  \"gioghi\": \"giog\",\n  \"giogo\": \"giog\",\n  \"gioia\": \"gioi\",\n  \"gioie\": \"gioi\",\n  \"gioiello\": \"gioiell\",\n  \"gioiosa\": \"gioios\",\n  \"giokhar\": \"giokh\",\n  \"giombini\": \"giombin\",\n  \"gionata\": \"gion\",\n  \"gionate\": \"gion\",\n  \"giordania\": \"giordan\",\n  \"giordano\": \"giord\",\n  \"gioregio\": \"gioreg\",\n  \"giorgio\": \"giorg\",\n  \"giorgione\": \"giorgion\",\n  \"giornale\": \"giornal\",\n  \"giornalè\": \"giornal\",\n  \"giornali\": \"giornal\",\n  \"giornaliera\": \"giornalier\",\n  \"giornaliere\": \"giornal\",\n  \"giornaliero\": \"giornalier\",\n  \"giornalismo\": \"giornal\",\n  \"giornalista\": \"giornal\",\n  \"giornaliste\": \"giornal\",\n  \"giornalisti\": \"giornal\",\n  \"giornalistica\": \"giornalist\",\n  \"giornalisticamente\": \"giornalist\",\n  \"giornalistici\": \"giornalist\",\n  \"giornalistico\": \"giornalist\",\n  \"giornalisticò\": \"giornalistic\",\n  \"giornalmente\": \"giornal\",\n  \"giornalsti\": \"giornalst\",\n  \"giornata\": \"giorn\",\n  \"giornate\": \"giorn\",\n  \"giorni\": \"giorn\",\n  \"giorno\": \"giorn\",\n  \"giosafat\": \"giosafat\",\n  \"giova\": \"giov\",\n  \"giovacchini\": \"giovacchin\",\n  \"giovamento\": \"giov\",\n  \"giovanbatista\": \"giovanbat\",\n  \"giovanbattista\": \"giovanbatt\",\n  \"giovane\": \"giovan\",\n  \"giovanetto\": \"giovanett\",\n  \"giovani\": \"giovan\",\n  \"giovanile\": \"giovanil\",\n  \"giovanili\": \"giovanil\",\n  \"giovanni\": \"giovann\",\n  \"giovanotto\": \"giovanott\",\n  \"giovasse\": \"giov\",\n  \"giovato\": \"giov\",\n  \"giove\": \"giov\",\n  \"giovedì\": \"gioved\",\n  \"gioventù\": \"gioventù\",\n  \"gioverebbero\": \"giov\",\n  \"giovia\": \"giov\",\n  \"gioviale\": \"giovial\",\n  \"gioviali\": \"giovial\",\n  \"giovinastri\": \"giovinastr\",\n  \"giovine\": \"giovin\",\n  \"giovinetta\": \"giovinett\",\n  \"giovinette\": \"giovinett\",\n  \"giovinetti\": \"giovinett\",\n  \"giovinetto\": \"giovinett\",\n  \"giovinezza\": \"giovinezz\",\n  \"giovinissimo\": \"giovinissim\",\n  \"giovinotto\": \"giovinott\",\n  \"gip\": \"gip\",\n  \"gipo\": \"gip\",\n  \"gira\": \"gir\",\n  \"giraldi\": \"girald\",\n  \"giran\": \"giran\",\n  \"girando\": \"gir\",\n  \"girandolar\": \"girandol\",\n  \"girandoli\": \"gir\",\n  \"girar\": \"gir\",\n  \"girare\": \"gir\",\n  \"girata\": \"gir\",\n  \"girati\": \"gir\",\n  \"giratina\": \"giratin\",\n  \"girato\": \"gir\",\n  \"girava\": \"gir\",\n  \"giravano\": \"gir\",\n  \"giravolta\": \"giravolt\",\n  \"giravolte\": \"giravolt\",\n  \"giri\": \"gir\",\n  \"girigogolo\": \"girigogol\",\n  \"giro\": \"gir\",\n  \"girò\": \"gir\",\n  \"girolama\": \"girolam\",\n  \"girolamo\": \"girolam\",\n  \"girone\": \"giron\",\n  \"gisutizia\": \"gisutiz\",\n  \"gita\": \"git\",\n  \"gitonga\": \"gitong\",\n  \"giu\": \"giu\",\n  \"giù\": \"giù\",\n  \"giubbotti\": \"giubbott\",\n  \"giubbotto\": \"giubbott\",\n  \"giubileo\": \"giubile\",\n  \"giubilo\": \"giubil\",\n  \"giucas\": \"giucas\",\n  \"giuda\": \"giud\",\n  \"giudei\": \"giude\",\n  \"giudeo\": \"giude\",\n  \"giudica\": \"giudic\",\n  \"giudicano\": \"giudic\",\n  \"giudicante\": \"giudic\",\n  \"giudicar\": \"giudic\",\n  \"giudicare\": \"giudic\",\n  \"giudicasse\": \"giudic\",\n  \"giudicata\": \"giudic\",\n  \"giudicate\": \"giudic\",\n  \"giudicati\": \"giudic\",\n  \"giudicato\": \"giudic\",\n  \"giudice\": \"giudic\",\n  \"giudici\": \"giudic\",\n  \"giudicò\": \"giudic\",\n  \"giudizi\": \"giudiz\",\n  \"giudiziale\": \"giudizial\",\n  \"giudiziari\": \"giudiziar\",\n  \"giudiziaria\": \"giudiziar\",\n  \"giudiziarie\": \"giudiziar\",\n  \"giudiziario\": \"giudiziar\",\n  \"giudizio\": \"giudiz\",\n  \"giudizioaria\": \"giudizioar\",\n  \"giudizioso\": \"giudiz\",\n  \"giuerra\": \"giuerr\",\n  \"giugni\": \"giugn\",\n  \"giugno\": \"giugn\",\n  \"giulia\": \"giul\",\n  \"giuliana\": \"giulian\",\n  \"giuliani\": \"giulian\",\n  \"giuliano\": \"giul\",\n  \"giulianova\": \"giulianov\",\n  \"giulietta\": \"giuliett\",\n  \"giulietti\": \"giuliett\",\n  \"giulio\": \"giul\",\n  \"giulivo\": \"giul\",\n  \"giunga\": \"giung\",\n  \"giunge\": \"giung\",\n  \"giungendo\": \"giung\",\n  \"giungere\": \"giung\",\n  \"giungla\": \"giungl\",\n  \"giungono\": \"giung\",\n  \"giunse\": \"giuns\",\n  \"giunsero\": \"giunser\",\n  \"giunta\": \"giunt\",\n  \"giuntarono\": \"giunt\",\n  \"giunte\": \"giunt\",\n  \"giunti\": \"giunt\",\n  \"giunto\": \"giunt\",\n  \"giuoco\": \"giuoc\",\n  \"giura\": \"giur\",\n  \"giuramenti\": \"giur\",\n  \"giuramento\": \"giur\",\n  \"giurando\": \"giur\",\n  \"giurare\": \"giur\",\n  \"giurata\": \"giur\",\n  \"giurate\": \"giur\",\n  \"giurati\": \"giur\",\n  \"giurato\": \"giur\",\n  \"giureconsulto\": \"giureconsult\",\n  \"giuria\": \"giur\",\n  \"giuriamo\": \"giur\",\n  \"giuridica\": \"giurid\",\n  \"giuridiche\": \"giurid\",\n  \"giuridici\": \"giurid\",\n  \"giuridico\": \"giurid\",\n  \"giurisdizione\": \"giurisdizion\",\n  \"giurisperiti\": \"giurisper\",\n  \"giurisprudenza\": \"giurisprudent\",\n  \"giuro\": \"giur\",\n  \"giuseppa\": \"giusepp\",\n  \"giuseppe\": \"giusepp\",\n  \"giuseppina\": \"giuseppin\",\n  \"giussano\": \"giuss\",\n  \"giusta\": \"giust\",\n  \"giustamente\": \"giust\",\n  \"giuste\": \"giust\",\n  \"giusti\": \"giust\",\n  \"giustificare\": \"giustific\",\n  \"giustificarlo\": \"giustific\",\n  \"giustificarne\": \"giustific\",\n  \"giustificata\": \"giustific\",\n  \"giustificati\": \"giustific\",\n  \"giustificato\": \"giustific\",\n  \"giustificazione\": \"giustif\",\n  \"giustificherò\": \"giustific\",\n  \"giustiniani\": \"giustinian\",\n  \"giustizia\": \"giustiz\",\n  \"giustizialismo\": \"giustizial\",\n  \"giustizie\": \"giustiz\",\n  \"giustiziere\": \"giustiz\",\n  \"giusto\": \"giust\",\n  \"giustzia\": \"giustz\",\n  \"gl\": \"gl\",\n  \"glan\": \"glan\",\n  \"glasgow\": \"glasgow\",\n  \"glbale\": \"glbal\",\n  \"glenn\": \"glenn\",\n  \"gli\": \"gli\",\n  \"gliel\": \"gliel\",\n  \"gliela\": \"gliel\",\n  \"gliele\": \"gliel\",\n  \"glieli\": \"gliel\",\n  \"glielo\": \"gliel\",\n  \"glien\": \"glien\",\n  \"gliene\": \"glien\",\n  \"glissato\": \"gliss\",\n  \"global\": \"global\",\n  \"globale\": \"global\",\n  \"globalizzazione\": \"globalizz\",\n  \"globarend\": \"globarend\",\n  \"globefish\": \"globefish\",\n  \"globi\": \"glob\",\n  \"globo\": \"glob\",\n  \"gloria\": \"glor\",\n  \"glorificato\": \"glorific\",\n  \"gloriosa\": \"glorios\",\n  \"gloriose\": \"glorios\",\n  \"glorioso\": \"glorios\",\n  \"gloucester\": \"gloucester\",\n  \"gmbh\": \"gmbh\",\n  \"gmr\": \"gmr\",\n  \"gmt\": \"gmt\",\n  \"gn\": \"gn\",\n  \"gnl\": \"gnl\",\n  \"gnutti\": \"gnutt\",\n  \"gocciola\": \"gocciol\",\n  \"gocciolanti\": \"gocciol\",\n  \"gocciole\": \"gocciol\",\n  \"gocciolino\": \"gocciolin\",\n  \"gocciolo\": \"gocciol\",\n  \"goccioloni\": \"gocciolon\",\n  \"goda\": \"god\",\n  \"godard\": \"godard\",\n  \"goder\": \"goder\",\n  \"godere\": \"god\",\n  \"goderebbe\": \"god\",\n  \"goderla\": \"god\",\n  \"godersela\": \"godersel\",\n  \"godersi\": \"god\",\n  \"godesse\": \"godess\",\n  \"godeva\": \"god\",\n  \"godfrey\": \"godfrey\",\n  \"godiamola\": \"godiamol\",\n  \"godimenti\": \"god\",\n  \"godo\": \"god\",\n  \"godono\": \"god\",\n  \"godrei\": \"godre\",\n  \"godute\": \"god\",\n  \"goduti\": \"god\",\n  \"goduto\": \"god\",\n  \"goebbels\": \"goebbels\",\n  \"goetschi\": \"goetsc\",\n  \"goffa\": \"goff\",\n  \"goffaggine\": \"goffaggin\",\n  \"goffamente\": \"goff\",\n  \"gol\": \"gol\",\n  \"gola\": \"gol\",\n  \"golden\": \"golden\",\n  \"goldman\": \"goldman\",\n  \"goldstein\": \"goldstein\",\n  \"gole\": \"gol\",\n  \"goleador\": \"goleador\",\n  \"golfi\": \"golf\",\n  \"golfo\": \"golf\",\n  \"golia\": \"gol\",\n  \"golino\": \"golin\",\n  \"golpe\": \"golp\",\n  \"gomez\": \"gomez\",\n  \"gomita\": \"gom\",\n  \"gomitata\": \"gomit\",\n  \"gomitate\": \"gomit\",\n  \"gomiti\": \"gom\",\n  \"gomito\": \"gom\",\n  \"gomitolo\": \"gomitol\",\n  \"gommapiuma\": \"gommapium\",\n  \"gomme\": \"gomm\",\n  \"gommoni\": \"gommon\",\n  \"goncharenko\": \"goncharenk\",\n  \"gonfaloni\": \"gonfalon\",\n  \"gonfi\": \"gonf\",\n  \"gonfiar\": \"gonf\",\n  \"gonfiarono\": \"gonf\",\n  \"gonfiata\": \"gonf\",\n  \"gonfiato\": \"gonf\",\n  \"gonfiava\": \"gonf\",\n  \"gonfiavan\": \"gonfiavan\",\n  \"gonfie\": \"gonf\",\n  \"gonfio\": \"gonf\",\n  \"gongola\": \"gongol\",\n  \"gongolante\": \"gongol\",\n  \"gonnella\": \"gonnell\",\n  \"gonzaga\": \"gonzag\",\n  \"gonzalo\": \"gonzal\",\n  \"gora\": \"gor\",\n  \"goran\": \"goran\",\n  \"gorbaciov\": \"gorbaciov\",\n  \"gordon\": \"gordon\",\n  \"gorgiere\": \"gorg\",\n  \"gorgoglia\": \"gorgogl\",\n  \"gorgoglìo\": \"gorgoglì\",\n  \"gorgonzola\": \"gorgonzol\",\n  \"gori\": \"gor\",\n  \"gorini\": \"gorin\",\n  \"gortari\": \"gortar\",\n  \"gosset\": \"gosset\",\n  \"gote\": \"got\",\n  \"gottardo\": \"gottard\",\n  \"gouernatore\": \"gouern\",\n  \"gourmelon\": \"gourmelon\",\n  \"governabili\": \"govern\",\n  \"governabilità\": \"govern\",\n  \"governante\": \"govern\",\n  \"governanti\": \"govern\",\n  \"governare\": \"govern\",\n  \"governarli\": \"govern\",\n  \"governarsi\": \"govern\",\n  \"governati\": \"govern\",\n  \"governativa\": \"govern\",\n  \"governative\": \"govern\",\n  \"governativi\": \"govern\",\n  \"governativo\": \"govern\",\n  \"governatorato\": \"governator\",\n  \"governatore\": \"govern\",\n  \"governatori\": \"govern\",\n  \"governavano\": \"govern\",\n  \"governi\": \"govern\",\n  \"governo\": \"govern\",\n  \"gozzini\": \"gozzin\",\n  \"gozzo\": \"gozz\",\n  \"gozzovigliando\": \"gozzovigl\",\n  \"gp\": \"gp\",\n  \"gr\": \"gr\",\n  \"grabbi\": \"grabb\",\n  \"grabowsky\": \"grabowsky\",\n  \"graciov\": \"graciov\",\n  \"gradazioni\": \"gradazion\",\n  \"gradevolmente\": \"gradevol\",\n  \"gradi\": \"grad\",\n  \"gradinata\": \"gradin\",\n  \"gradinate\": \"gradin\",\n  \"gradini\": \"gradin\",\n  \"gradino\": \"gradin\",\n  \"gradisca\": \"grad\",\n  \"gradisce\": \"grad\",\n  \"gradita\": \"grad\",\n  \"gradito\": \"grad\",\n  \"grado\": \"grad\",\n  \"graduale\": \"gradual\",\n  \"gradualmente\": \"gradual\",\n  \"graduato\": \"gradu\",\n  \"graduatorie\": \"graduator\",\n  \"graffiato\": \"graff\",\n  \"grafica\": \"grafic\",\n  \"grafici\": \"grafic\",\n  \"graham\": \"graham\",\n  \"gramigne\": \"gramign\",\n  \"grammatica\": \"grammat\",\n  \"grammi\": \"gramm\",\n  \"gramola\": \"gramol\",\n  \"gran\": \"gran\",\n  \"granadà\": \"granad\",\n  \"granaglie\": \"granagl\",\n  \"granai\": \"grana\",\n  \"granaio\": \"granai\",\n  \"granata\": \"gran\",\n  \"granati\": \"gran\",\n  \"grand\": \"grand\",\n  \"grande\": \"grand\",\n  \"grandeggiava\": \"grandegg\",\n  \"grandezza\": \"grandezz\",\n  \"grandezze\": \"grandezz\",\n  \"grandi\": \"grand\",\n  \"grandinato\": \"grandin\",\n  \"grandine\": \"grandin\",\n  \"grandini\": \"grandin\",\n  \"grandiosa\": \"grandios\",\n  \"grandiosi\": \"grandios\",\n  \"grandissima\": \"grandissim\",\n  \"grandissime\": \"grandissim\",\n  \"grane\": \"gran\",\n  \"granelli\": \"granell\",\n  \"granello\": \"granell\",\n  \"granferry\": \"granferry\",\n  \"granger\": \"granger\",\n  \"grani\": \"gran\",\n  \"grano\": \"gran\",\n  \"granocchia\": \"granocc\",\n  \"grappa\": \"grapp\",\n  \"grappoli\": \"grappol\",\n  \"grasce\": \"grasc\",\n  \"grassadonia\": \"grassadon\",\n  \"grassetto\": \"grassett\",\n  \"grassi\": \"grass\",\n  \"grassoccia\": \"grassocc\",\n  \"grassotto\": \"grassott\",\n  \"grata\": \"grat\",\n  \"grate\": \"grat\",\n  \"grati\": \"grat\",\n  \"gratias\": \"gratias\",\n  \"graticcio\": \"graticc\",\n  \"gratificata\": \"gratific\",\n  \"gratis\": \"gratis\",\n  \"gratitudine\": \"gratitudin\",\n  \"grato\": \"grat\",\n  \"gratuita\": \"gratu\",\n  \"gratuitamente\": \"gratuit\",\n  \"gratuiti\": \"gratu\",\n  \"grave\": \"grav\",\n  \"gravemente\": \"gravement\",\n  \"gravezza\": \"gravezz\",\n  \"gravezze\": \"gravezz\",\n  \"gravi\": \"grav\",\n  \"gravide\": \"gravid\",\n  \"graviores\": \"graviores\",\n  \"gravissime\": \"gravissim\",\n  \"gravissimo\": \"gravissim\",\n  \"gravità\": \"gravit\",\n  \"gravitato\": \"gravit\",\n  \"gravosa\": \"gravos\",\n  \"gravoso\": \"gravos\",\n  \"grazia\": \"graz\",\n  \"graziato\": \"graz\",\n  \"grazie\": \"graz\",\n  \"graziosa\": \"grazios\",\n  \"grazioso\": \"grazios\",\n  \"grazzini\": \"grazzin\",\n  \"greca\": \"grec\",\n  \"grecia\": \"grec\",\n  \"greco\": \"grec\",\n  \"green\": \"green\",\n  \"greenspan\": \"greenspan\",\n  \"gregge\": \"gregg\",\n  \"greggio\": \"gregg\",\n  \"gregorio\": \"gregor\",\n  \"gregucci\": \"gregucc\",\n  \"grembiule\": \"grembiul\",\n  \"gremisce\": \"grem\",\n  \"gremita\": \"grem\",\n  \"gremite\": \"grem\",\n  \"gremiti\": \"grem\",\n  \"gremito\": \"grem\",\n  \"gremlin\": \"gremlin\",\n  \"greppi\": \"grepp\",\n  \"greppia\": \"grepp\",\n  \"gretta\": \"grett\",\n  \"gretto\": \"grett\",\n  \"grevino\": \"grevin\",\n  \"grid\": \"grid\",\n  \"grida\": \"grid\",\n  \"gridando\": \"grid\",\n  \"gridano\": \"grid\",\n  \"gridar\": \"grid\",\n  \"gridare\": \"grid\",\n  \"gridargli\": \"grid\",\n  \"gridaron\": \"gridaron\",\n  \"gridarono\": \"grid\",\n  \"gridasse\": \"grid\",\n  \"gridassero\": \"grid\",\n  \"gridato\": \"grid\",\n  \"gridatogli\": \"gridatogl\",\n  \"gridava\": \"grid\",\n  \"gridavano\": \"grid\",\n  \"gride\": \"grid\",\n  \"gridi\": \"grid\",\n  \"grido\": \"grid\",\n  \"gridò\": \"grid\",\n  \"grifagni\": \"grifagn\",\n  \"grifocapital\": \"grifocapital\",\n  \"grifocash\": \"grifocash\",\n  \"griforend\": \"griforend\",\n  \"grigi\": \"grig\",\n  \"grigia\": \"grig\",\n  \"grigioni\": \"grigion\",\n  \"grigiore\": \"grigior\",\n  \"grignapoco\": \"grignapoc\",\n  \"grilla\": \"grill\",\n  \"grilli\": \"grill\",\n  \"grillo\": \"grill\",\n  \"grimaldi\": \"grimald\",\n  \"grimaudo\": \"grimaud\",\n  \"grinavi\": \"grin\",\n  \"grinfie\": \"grinf\",\n  \"grinta\": \"grint\",\n  \"grintoso\": \"grintos\",\n  \"grinze\": \"grinz\",\n  \"grinzose\": \"grinzos\",\n  \"griso\": \"gris\",\n  \"grist\": \"grist\",\n  \"grlic\": \"grlic\",\n  \"grondaia\": \"grondai\",\n  \"grondanti\": \"grondant\",\n  \"groppino\": \"groppin\",\n  \"grossa\": \"gross\",\n  \"grosse\": \"gross\",\n  \"grosseto\": \"grosset\",\n  \"grossi\": \"gross\",\n  \"grosso\": \"gross\",\n  \"grossolana\": \"grossolan\",\n  \"grossolane\": \"grossolan\",\n  \"grotta\": \"grott\",\n  \"grotte\": \"grott\",\n  \"group\": \"group\",\n  \"grozny\": \"grozny\",\n  \"gruber\": \"gruber\",\n  \"grucce\": \"grucc\",\n  \"grupo\": \"grup\",\n  \"gruppetto\": \"gruppett\",\n  \"gruppi\": \"grupp\",\n  \"gruppo\": \"grupp\",\n  \"gruppoo\": \"gruppo\",\n  \"grupppo\": \"gruppp\",\n  \"grz\": \"grz\",\n  \"gsm\": \"gsm\",\n  \"gt\": \"gt\",\n  \"gua\": \"gua\",\n  \"guadagna\": \"guadagn\",\n  \"guadagnar\": \"guadagn\",\n  \"guadagnare\": \"guadagn\",\n  \"guadagnati\": \"guadagn\",\n  \"guadagnato\": \"guadagn\",\n  \"guadagni\": \"guadagn\",\n  \"guadagno\": \"guadagn\",\n  \"guadagnò\": \"guadagn\",\n  \"guadalupa\": \"guadalup\",\n  \"guadalupe\": \"guadalup\",\n  \"guadare\": \"guad\",\n  \"guado\": \"guad\",\n  \"guai\": \"gua\",\n  \"guaio\": \"guai\",\n  \"gualchiere\": \"gualc\",\n  \"gualco\": \"gualc\",\n  \"gualdo\": \"guald\",\n  \"guance\": \"guanc\",\n  \"guancia\": \"guanc\",\n  \"guanciali\": \"guancial\",\n  \"guancialino\": \"guancialin\",\n  \"guanti\": \"guant\",\n  \"guantiere\": \"guant\",\n  \"guarda\": \"guard\",\n  \"guardalinee\": \"guardaline\",\n  \"guardando\": \"guard\",\n  \"guardandogli\": \"guard\",\n  \"guardandola\": \"guard\",\n  \"guardandolo\": \"guard\",\n  \"guardandosi\": \"guard\",\n  \"guardano\": \"guard\",\n  \"guardaos\": \"guardaos\",\n  \"guardar\": \"guard\",\n  \"guardarci\": \"guard\",\n  \"guardare\": \"guard\",\n  \"guardargli\": \"guard\",\n  \"guardarla\": \"guard\",\n  \"guardarle\": \"guard\",\n  \"guardarlo\": \"guard\",\n  \"guardarobi\": \"guardarob\",\n  \"guardaron\": \"guardaron\",\n  \"guardarono\": \"guard\",\n  \"guardarsene\": \"guard\",\n  \"guardarsi\": \"guard\",\n  \"guardarvi\": \"guard\",\n  \"guardasigilli\": \"guardasigill\",\n  \"guardasse\": \"guard\",\n  \"guardata\": \"guard\",\n  \"guardate\": \"guard\",\n  \"guardatemi\": \"guardatem\",\n  \"guardati\": \"guard\",\n  \"guardato\": \"guard\",\n  \"guardatura\": \"guardatur\",\n  \"guardava\": \"guard\",\n  \"guardavan\": \"guardavan\",\n  \"guardavano\": \"guard\",\n  \"guarderò\": \"guard\",\n  \"guardi\": \"guard\",\n  \"guardia\": \"guard\",\n  \"guardiana\": \"guardian\",\n  \"guardiani\": \"guardian\",\n  \"guardiano\": \"guard\",\n  \"guardie\": \"guard\",\n  \"guardinga\": \"guarding\",\n  \"guardinghi\": \"guarding\",\n  \"guardò\": \"guard\",\n  \"guarì\": \"guar\",\n  \"guaribili\": \"guaribil\",\n  \"guarigione\": \"guarigion\",\n  \"guarini\": \"guarin\",\n  \"guarino\": \"guarin\",\n  \"guarire\": \"guar\",\n  \"guarisce\": \"guar\",\n  \"guarisco\": \"guar\",\n  \"guarita\": \"guar\",\n  \"guariti\": \"guar\",\n  \"guarito\": \"guar\",\n  \"guaritori\": \"guaritor\",\n  \"guaritrice\": \"guaritr\",\n  \"guarivano\": \"guar\",\n  \"guarnigione\": \"guarnigion\",\n  \"guarnita\": \"guarn\",\n  \"guarniti\": \"guarn\",\n  \"guarracino\": \"guarracin\",\n  \"guasta\": \"guast\",\n  \"guastalla\": \"guastall\",\n  \"guastamestieri\": \"guastamestier\",\n  \"guastan\": \"guastan\",\n  \"guastar\": \"guast\",\n  \"guastare\": \"guast\",\n  \"guastarli\": \"guast\",\n  \"guastarmi\": \"guast\",\n  \"guastate\": \"guast\",\n  \"guastatori\": \"guastator\",\n  \"guastava\": \"guast\",\n  \"guasterebbe\": \"guast\",\n  \"guasti\": \"guast\",\n  \"guasto\": \"guast\",\n  \"guastò\": \"guast\",\n  \"guatemala\": \"guatemal\",\n  \"guatemalteco\": \"guatemaltec\",\n  \"guazza\": \"guazz\",\n  \"guazzabugli\": \"guazzabugl\",\n  \"guazzabuglio\": \"guazzabugl\",\n  \"guazzo\": \"guazz\",\n  \"gubbio\": \"gubb\",\n  \"guenter\": \"guenter\",\n  \"guenther\": \"guenther\",\n  \"guera\": \"guer\",\n  \"guerra\": \"guerr\",\n  \"guerre\": \"guerr\",\n  \"guerrero\": \"guerrer\",\n  \"guerreschi\": \"guerresc\",\n  \"guerresco\": \"guerresc\",\n  \"guerricciole\": \"guerricciol\",\n  \"guerriera\": \"guerrier\",\n  \"guerriere\": \"guerr\",\n  \"guerrieri\": \"guerrier\",\n  \"guerriero\": \"guerrier\",\n  \"guerrierò\": \"guerr\",\n  \"guerriglia\": \"guerrigl\",\n  \"guerriglieri\": \"guerriglier\",\n  \"guerriglierìpag\": \"guerriglierìpag\",\n  \"guerrigliero\": \"guerriglier\",\n  \"guerrin\": \"guerrin\",\n  \"guest\": \"guest\",\n  \"guglielmo\": \"guglielm\",\n  \"guglielmucci\": \"guglielmucc\",\n  \"guglieri\": \"guglier\",\n  \"guida\": \"guid\",\n  \"guidar\": \"guid\",\n  \"guidare\": \"guid\",\n  \"guidarle\": \"guid\",\n  \"guidata\": \"guid\",\n  \"guidati\": \"guid\",\n  \"guidato\": \"guid\",\n  \"guidava\": \"guid\",\n  \"guidavano\": \"guid\",\n  \"guiderà\": \"guid\",\n  \"guideranno\": \"guid\",\n  \"guiderebbe\": \"guid\",\n  \"guiderei\": \"guid\",\n  \"guiderete\": \"guid\",\n  \"guido\": \"guid\",\n  \"guillen\": \"guillen\",\n  \"guillermo\": \"guillerm\",\n  \"guinea\": \"guine\",\n  \"guisa\": \"guis\",\n  \"guiso\": \"guis\",\n  \"guizzi\": \"guizz\",\n  \"guizzo\": \"guizz\",\n  \"gulbuddin\": \"gulbuddin\",\n  \"gullit\": \"gullit\",\n  \"gullotta\": \"gullott\",\n  \"gump\": \"gump\",\n  \"gurra\": \"gurr\",\n  \"guru\": \"guru\",\n  \"gus\": \"gus\",\n  \"gustare\": \"gust\",\n  \"gustarla\": \"gust\",\n  \"gustato\": \"gust\",\n  \"gustavo\": \"gust\",\n  \"gusto\": \"gust\",\n  \"gustò\": \"gust\",\n  \"gustosa\": \"gustos\",\n  \"gutemberg\": \"gutemberg\",\n  \"gutierrez\": \"gutierrez\",\n  \"guy\": \"guy\",\n  \"guyana\": \"guyan\",\n  \"guzman\": \"guzman\",\n  \"gymnuoto\": \"gymnuot\",\n  \"gyver\": \"gyver\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"haapakosti\": \"haapakost\",\n  \"haaretz\": \"haaretz\",\n  \"habbiamo\": \"habb\",\n  \"hackett\": \"hackett\",\n  \"haddad\": \"haddad\",\n  \"hadi\": \"had\",\n  \"haec\": \"haec\",\n  \"hai\": \"hai\",\n  \"haifa\": \"haif\",\n  \"haiti\": \"hait\",\n  \"haley\": \"haley\",\n  \"halifax\": \"halifax\",\n  \"hallara\": \"hallar\",\n  \"halloween\": \"halloween\",\n  \"hamac\": \"hamac\",\n  \"hamas\": \"hamas\",\n  \"hamburgher\": \"hamburgher\",\n  \"hammallà\": \"hammall\",\n  \"hammamet\": \"hammamet\",\n  \"hammaquà\": \"hammaqu\",\n  \"hammed\": \"hammed\",\n  \"hampel\": \"hampel\",\n  \"han\": \"han\",\n  \"hanak\": \"hanak\",\n  \"handicap\": \"handicap\",\n  \"handicappati\": \"handicapp\",\n  \"handicappato\": \"handicapp\",\n  \"hann\": \"hann\",\n  \"hanna\": \"hann\",\n  \"hannah\": \"hannah\",\n  \"hanno\": \"hann\",\n  \"hanoi\": \"hano\",\n  \"hans\": \"hans\",\n  \"harald\": \"harald\",\n  \"harare\": \"har\",\n  \"harbour\": \"harbour\",\n  \"harigà\": \"harig\",\n  \"haris\": \"haris\",\n  \"harjanne\": \"harjann\",\n  \"haro\": \"har\",\n  \"harrison\": \"harrison\",\n  \"hashemi\": \"hashem\",\n  \"hauendo\": \"hau\",\n  \"hauer\": \"hauer\",\n  \"hauere\": \"hau\",\n  \"hauesse\": \"hauess\",\n  \"hauessimo\": \"hauessim\",\n  \"haueuano\": \"haueu\",\n  \"haustam\": \"haustam\",\n  \"hauuto\": \"hau\",\n  \"havre\": \"havr\",\n  \"hawaii\": \"hawai\",\n  \"hays\": \"hays\",\n  \"hazzard\": \"hazzard\",\n  \"heads\": \"heads\",\n  \"hearts\": \"hearts\",\n  \"hebron\": \"hebron\",\n  \"heimat\": \"heimat\",\n  \"hekmatyar\": \"hekmaty\",\n  \"held\": \"held\",\n  \"helen\": \"helen\",\n  \"helena\": \"helen\",\n  \"helgenberger\": \"helgenberger\",\n  \"helmut\": \"helmut\",\n  \"helsinki\": \"helsink\",\n  \"hemmings\": \"hemmings\",\n  \"heniz\": \"heniz\",\n  \"henrik\": \"henrik\",\n  \"henry\": \"henry\",\n  \"hepburn\": \"hepburn\",\n  \"herald\": \"herald\",\n  \"herba\": \"herb\",\n  \"heroe\": \"hero\",\n  \"heroi\": \"hero\",\n  \"herrera\": \"herrer\",\n  \"hervè\": \"herv\",\n  \"herzog\": \"herzog\",\n  \"hezb\": \"hezb\",\n  \"hibernian\": \"hibernian\",\n  \"highlander\": \"highlander\",\n  \"hillman\": \"hillman\",\n  \"hillo\": \"hill\",\n  \"hills\": \"hills\",\n  \"hiroyuki\": \"hiroyuk\",\n  \"his\": \"his\",\n  \"hispano\": \"hisp\",\n  \"hist\": \"hist\",\n  \"historia\": \"histor\",\n  \"historiae\": \"historia\",\n  \"hitler\": \"hitler\",\n  \"hlena\": \"hlen\",\n  \"ho\": \"ho\",\n  \"hoc\": \"hoc\",\n  \"hockey\": \"hockey\",\n  \"hoffman\": \"hoffman\",\n  \"hold\": \"hold\",\n  \"holding\": \"holding\",\n  \"holly\": \"holly\",\n  \"hollywood\": \"hollywood\",\n  \"hollywoodiano\": \"hollywood\",\n  \"holm\": \"holm\",\n  \"homefront\": \"homefront\",\n  \"homer\": \"homer\",\n  \"honesta\": \"honest\",\n  \"honestas\": \"honestas\",\n  \"hong\": \"hong\",\n  \"honolulu\": \"honolulu\",\n  \"hood\": \"hood\",\n  \"hooker\": \"hooker\",\n  \"horrori\": \"horror\",\n  \"horst\": \"horst\",\n  \"horthy\": \"horthy\",\n  \"hospital\": \"hospital\",\n  \"hossack\": \"hossack\",\n  \"hostess\": \"hostess\",\n  \"hostibus\": \"hostibus\",\n  \"hot\": \"hot\",\n  \"hotel\": \"hotel\",\n  \"house\": \"hous\",\n  \"houston\": \"houston\",\n  \"hrovatin\": \"hrovatin\",\n  \"hrw\": \"hrw\",\n  \"hubbard\": \"hubbard\",\n  \"huber\": \"huber\",\n  \"hubert\": \"hubert\",\n  \"hugo\": \"hug\",\n  \"hullweck\": \"hullweck\",\n  \"human\": \"human\",\n  \"humana\": \"human\",\n  \"hunt\": \"hunt\",\n  \"huomini\": \"huomin\",\n  \"hursk\": \"hursk\",\n  \"hussein\": \"hussein\",\n  \"hutchence\": \"hutchenc\",\n  \"huygens\": \"huygens\",\n  \"hydro\": \"hydro\",\n  \"hynojosa\": \"hynojos\",\n  \"i\": \"i\",\n  \"ì\": \"ì\",\n  \"ia\": \"ia\",\n  \"iaaf\": \"iaaf\",\n  \"iacchetti\": \"iacchett\",\n  \"iachini\": \"iachin\",\n  \"iacobelli\": \"iacobell\",\n  \"ian\": \"ian\",\n  \"ianì\": \"ian\",\n  \"ianuae\": \"ianua\",\n  \"ibarra\": \"ibarr\",\n  \"ibbs\": \"ibbs\",\n  \"ibca\": \"ibca\",\n  \"iberdrola\": \"iberdrol\",\n  \"ibf\": \"ibf\",\n  \"ibm\": \"ibm\",\n  \"ic\": \"ic\",\n  \"icastico\": \"icast\",\n  \"iccri\": \"iccri\",\n  \"ici\": \"ici\",\n  \"iconografica\": \"iconograf\",\n  \"icordate\": \"icord\",\n  \"icq\": \"icq\",\n  \"idagine\": \"idagin\",\n  \"iddio\": \"iddi\",\n  \"idea\": \"ide\",\n  \"ideale\": \"ideal\",\n  \"idealè\": \"ideal\",\n  \"ideali\": \"ideal\",\n  \"idealità\": \"ideal\",\n  \"ideatore\": \"ideator\",\n  \"ideatori\": \"ideator\",\n  \"idee\": \"ide\",\n  \"ideli\": \"idel\",\n  \"identica\": \"ident\",\n  \"identico\": \"ident\",\n  \"identificando\": \"identific\",\n  \"identificare\": \"identific\",\n  \"identificate\": \"identific\",\n  \"identificati\": \"identific\",\n  \"identificato\": \"identific\",\n  \"identikit\": \"identikit\",\n  \"identità\": \"ident\",\n  \"ideò\": \"ide\",\n  \"ideologia\": \"ideolog\",\n  \"ideologiche\": \"ideolog\",\n  \"ideologo\": \"ideolog\",\n  \"idilliache\": \"idilliac\",\n  \"idiotismi\": \"idiot\",\n  \"idiozia\": \"idioz\",\n  \"idoena\": \"idoen\",\n  \"idolatrava\": \"idolatr\",\n  \"idoli\": \"idol\",\n  \"idolo\": \"idol\",\n  \"idonee\": \"idone\",\n  \"idoneo\": \"idone\",\n  \"idorelettrici\": \"idorelettr\",\n  \"idra\": \"idra\",\n  \"idriche\": \"idric\",\n  \"idrico\": \"idric\",\n  \"idrocarburi\": \"idrocarbur\",\n  \"idroelettrica\": \"idroelettr\",\n  \"idroelettriche\": \"idroelettr\",\n  \"idroelettrici\": \"idroelettr\",\n  \"idrofobo\": \"idrofob\",\n  \"idwa\": \"idwa\",\n  \"ielo\": \"iel\",\n  \"ielpo\": \"ielp\",\n  \"ieltsin\": \"ieltsin\",\n  \"ier\": \"ier\",\n  \"ierardi\": \"ierard\",\n  \"ieri\": \"ier\",\n  \"ierlaltro\": \"ierlaltr\",\n  \"ierreversibile\": \"ierrevers\",\n  \"ievghenia\": \"ievghen\",\n  \"ifi\": \"ifi\",\n  \"ifil\": \"ifil\",\n  \"ifis\": \"ifis\",\n  \"ig\": \"ig\",\n  \"igea\": \"ige\",\n  \"ignara\": \"ignar\",\n  \"ignari\": \"ignar\",\n  \"ignazio\": \"ignaz\",\n  \"ignea\": \"igne\",\n  \"ignobile\": \"ignobil\",\n  \"ignora\": \"ignor\",\n  \"ignorando\": \"ignor\",\n  \"ignorantaggine\": \"ignorantaggin\",\n  \"ignorante\": \"ignor\",\n  \"ignoranti\": \"ignor\",\n  \"ignoranza\": \"ignor\",\n  \"ignorate\": \"ignor\",\n  \"ignorati\": \"ignor\",\n  \"ignorato\": \"ignor\",\n  \"ignorava\": \"ignor\",\n  \"ignote\": \"ignot\",\n  \"ignoti\": \"ignot\",\n  \"ignotum\": \"ignotum\",\n  \"ignudi\": \"ignud\",\n  \"igor\": \"igor\",\n  \"igpa\": \"igpa\",\n  \"ih\": \"ih\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"il\": \"il\",\n  \"ilari\": \"ilar\",\n  \"ilaria\": \"ilar\",\n  \"ilarità\": \"ilar\",\n  \"ilcorpo\": \"ilcorp\",\n  \"ilgoverno\": \"ilgovern\",\n  \"iliade\": \"iliad\",\n  \"ilic\": \"ilic\",\n  \"ilidza\": \"ilidz\",\n  \"ilirià\": \"ilir\",\n  \"ilitare\": \"ilit\",\n  \"illanguidire\": \"illanguid\",\n  \"illazioni\": \"illazion\",\n  \"illecita\": \"illec\",\n  \"illeciti\": \"illec\",\n  \"illecito\": \"illec\",\n  \"illegali\": \"illegal\",\n  \"illegalmente\": \"illegal\",\n  \"illegittima\": \"illegittim\",\n  \"illegittimo\": \"illegittim\",\n  \"illesi\": \"illes\",\n  \"illeso\": \"illes\",\n  \"illetterati\": \"illetter\",\n  \"illimitata\": \"illimit\",\n  \"illimitatamente\": \"illimitat\",\n  \"illimitato\": \"illimit\",\n  \"illius\": \"illius\",\n  \"illuderci\": \"illud\",\n  \"illumina\": \"illumin\",\n  \"illuminare\": \"illumin\",\n  \"illuminato\": \"illumin\",\n  \"illuminazione\": \"illumin\",\n  \"illuminò\": \"illumin\",\n  \"illusione\": \"illusion\",\n  \"illusorio\": \"illusor\",\n  \"illustra\": \"illustr\",\n  \"illustrare\": \"illustr\",\n  \"illustrata\": \"illustr\",\n  \"illustrate\": \"illustr\",\n  \"illustrato\": \"illustr\",\n  \"illustrazione\": \"illustr\",\n  \"illustre\": \"illustr\",\n  \"illustrerà\": \"illustr\",\n  \"illustreranno\": \"illustr\",\n  \"illustri\": \"illustr\",\n  \"illustrissima\": \"illustrissim\",\n  \"illustrissimo\": \"illustrissim\",\n  \"ilor\": \"ilor\",\n  \"ilva\": \"ilva\",\n  \"imam\": \"imam\",\n  \"imbacuccarla\": \"imbacucc\",\n  \"imbalsamando\": \"imbalsam\",\n  \"imbarazzante\": \"imbarazz\",\n  \"imbarazzato\": \"imbarazz\",\n  \"imbarazzo\": \"imbarazz\",\n  \"imbarcano\": \"imbarc\",\n  \"imbarcarci\": \"imbarc\",\n  \"imbarcarmi\": \"imbarc\",\n  \"imbarcarsi\": \"imbarc\",\n  \"imbarcati\": \"imbarc\",\n  \"imbarcato\": \"imbarc\",\n  \"imbarcazioni\": \"imbarc\",\n  \"imbasciata\": \"imbasc\",\n  \"imbasciate\": \"imbasc\",\n  \"imbatte\": \"imbatt\",\n  \"imbattuto\": \"imbatt\",\n  \"imbelle\": \"imbell\",\n  \"imbestialì\": \"imbestial\",\n  \"imbiancatura\": \"imbiancatur\",\n  \"imbiondire\": \"imbiond\",\n  \"imboccar\": \"imbocc\",\n  \"imboccare\": \"imbocc\",\n  \"imboccata\": \"imbocc\",\n  \"imboccato\": \"imbocc\",\n  \"imboccatura\": \"imboccatur\",\n  \"imbocchi\": \"imbocc\",\n  \"imborglione\": \"imborglion\",\n  \"imboscarsi\": \"imbosc\",\n  \"imboscata\": \"imbosc\",\n  \"imbrattare\": \"imbratt\",\n  \"imbrattate\": \"imbratt\",\n  \"imbrattati\": \"imbratt\",\n  \"imbrattava\": \"imbratt\",\n  \"imbrogli\": \"imbrogl\",\n  \"imbroglian\": \"imbroglian\",\n  \"imbrogliando\": \"imbrogl\",\n  \"imbrogliar\": \"imbrogl\",\n  \"imbrogliare\": \"imbrogl\",\n  \"imbrogliarle\": \"imbrogl\",\n  \"imbrogliata\": \"imbrogl\",\n  \"imbrogliate\": \"imbrogl\",\n  \"imbrogliati\": \"imbrogl\",\n  \"imbrogliato\": \"imbrogl\",\n  \"imbrogliava\": \"imbrogl\",\n  \"imbroglio\": \"imbrogl\",\n  \"imbroglione\": \"imbroglion\",\n  \"imbrunire\": \"imbrun\",\n  \"imemdiato\": \"imemd\",\n  \"imerese\": \"imeres\",\n  \"imi\": \"imi\",\n  \"imibond\": \"imibond\",\n  \"imicapital\": \"imicapital\",\n  \"imieast\": \"imieast\",\n  \"imieurope\": \"imieurop\",\n  \"imindustria\": \"imindustr\",\n  \"imirend\": \"imirend\",\n  \"imitare\": \"imit\",\n  \"imitava\": \"imit\",\n  \"imitazione\": \"imit\",\n  \"imiwest\": \"imiwest\",\n  \"imm\": \"imm\",\n  \"immagazzinare\": \"immagazzin\",\n  \"immagina\": \"immagin\",\n  \"immaginandosi\": \"immagin\",\n  \"immaginano\": \"immagin\",\n  \"immaginar\": \"immagin\",\n  \"immaginare\": \"immagin\",\n  \"immaginari\": \"immaginar\",\n  \"immaginaria\": \"immaginar\",\n  \"immaginarne\": \"immagin\",\n  \"immaginarsela\": \"immaginarsel\",\n  \"immaginarselo\": \"immaginarsel\",\n  \"immaginarsi\": \"immagin\",\n  \"immaginarvi\": \"immagin\",\n  \"immaginata\": \"immagin\",\n  \"immaginate\": \"immagin\",\n  \"immaginatevi\": \"immaginat\",\n  \"immaginativa\": \"immagin\",\n  \"immaginato\": \"immagin\",\n  \"immaginava\": \"immagin\",\n  \"immaginazion\": \"immaginazion\",\n  \"immaginazione\": \"immagin\",\n  \"immaginazioni\": \"immagin\",\n  \"immagine\": \"immagin\",\n  \"immaginè\": \"immagin\",\n  \"immaginerebbe\": \"immagin\",\n  \"immagini\": \"immagin\",\n  \"immagino\": \"immagin\",\n  \"immaginò\": \"immagin\",\n  \"immaginosa\": \"immagin\",\n  \"immantinente\": \"immantinent\",\n  \"immatricolate\": \"immatricol\",\n  \"immatricolato\": \"immatricol\",\n  \"immatricolazioni\": \"immatricol\",\n  \"immaturità\": \"immatur\",\n  \"immedesimata\": \"immedesim\",\n  \"immediata\": \"immed\",\n  \"immediatamente\": \"immediat\",\n  \"immediate\": \"immed\",\n  \"immediatezza\": \"immediatezz\",\n  \"immediati\": \"immed\",\n  \"immediato\": \"immed\",\n  \"immemorabile\": \"immemor\",\n  \"immensa\": \"immens\",\n  \"immenso\": \"immens\",\n  \"immeritato\": \"immerit\",\n  \"immerso\": \"immers\",\n  \"immettere\": \"immett\",\n  \"immigrati\": \"immigr\",\n  \"immigratorie\": \"immigrator\",\n  \"immigrazione\": \"immigr\",\n  \"imminente\": \"imminent\",\n  \"imminenza\": \"imminent\",\n  \"immissione\": \"immission\",\n  \"immobile\": \"immobil\",\n  \"immobili\": \"immobil\",\n  \"immobiliare\": \"immobil\",\n  \"immobiliari\": \"immobiliar\",\n  \"immobilismo\": \"immobil\",\n  \"immobilità\": \"immobil\",\n  \"immobilizzarlo\": \"immobilizz\",\n  \"immobilizzato\": \"immobilizz\",\n  \"immolato\": \"immol\",\n  \"immondizia\": \"immondiz\",\n  \"immondizie\": \"immondiz\",\n  \"immondo\": \"immond\",\n  \"immortale\": \"immortal\",\n  \"immota\": \"immot\",\n  \"immoto\": \"immot\",\n  \"immune\": \"immun\",\n  \"immuni\": \"immun\",\n  \"immunità\": \"immun\",\n  \"immutate\": \"immut\",\n  \"immutato\": \"immut\",\n  \"imola\": \"imol\",\n  \"impacciata\": \"impacc\",\n  \"impadronirà\": \"impadron\",\n  \"impadroniron\": \"impadroniron\",\n  \"impadronirsene\": \"impadron\",\n  \"impallidì\": \"impallid\",\n  \"impaniata\": \"impan\",\n  \"impannata\": \"impann\",\n  \"impannate\": \"impann\",\n  \"impara\": \"impar\",\n  \"imparando\": \"impar\",\n  \"imparassero\": \"impar\",\n  \"imparassimo\": \"impar\",\n  \"imparate\": \"impar\",\n  \"imparati\": \"impar\",\n  \"imparato\": \"impar\",\n  \"impari\": \"impar\",\n  \"imparò\": \"impar\",\n  \"imparzialità\": \"imparzial\",\n  \"impasse\": \"impass\",\n  \"impassibile\": \"impass\",\n  \"impastocchiarvi\": \"impastocc\",\n  \"impastocchiate\": \"impastocc\",\n  \"impattarla\": \"impatt\",\n  \"impatto\": \"impatt\",\n  \"impaurirla\": \"impaur\",\n  \"impaziente\": \"impazient\",\n  \"impazientisce\": \"impazient\",\n  \"impazientito\": \"impazient\",\n  \"impazienza\": \"impazient\",\n  \"impazzano\": \"impazz\",\n  \"impazzata\": \"impazz\",\n  \"impedendo\": \"imped\",\n  \"impedendogli\": \"imped\",\n  \"impedimenti\": \"imped\",\n  \"impedimento\": \"imped\",\n  \"impedir\": \"imped\",\n  \"impedire\": \"imped\",\n  \"impedirebbe\": \"imped\",\n  \"impedirgli\": \"imped\",\n  \"impedirla\": \"imped\",\n  \"impedirle\": \"imped\",\n  \"impedirlo\": \"imped\",\n  \"impedirne\": \"imped\",\n  \"impedirtela\": \"imped\",\n  \"impedisca\": \"imped\",\n  \"impedisce\": \"imped\",\n  \"impediscono\": \"imped\",\n  \"impedisse\": \"impediss\",\n  \"impedissero\": \"imped\",\n  \"impedito\": \"imped\",\n  \"impediva\": \"imped\",\n  \"impedivano\": \"imped\",\n  \"impegna\": \"impegn\",\n  \"impegnando\": \"impegn\",\n  \"impegnandosi\": \"impegn\",\n  \"impegnano\": \"impegn\",\n  \"impegnare\": \"impegn\",\n  \"impegnarmi\": \"impegn\",\n  \"impegnarsi\": \"impegn\",\n  \"impegnasse\": \"impegn\",\n  \"impegnassero\": \"impegn\",\n  \"impegnata\": \"impegn\",\n  \"impegnate\": \"impegn\",\n  \"impegnati\": \"impegn\",\n  \"impegnative\": \"impegn\",\n  \"impegnato\": \"impegn\",\n  \"impegnavano\": \"impegn\",\n  \"impegneranno\": \"impegn\",\n  \"impegni\": \"impegn\",\n  \"impegnino\": \"impegnin\",\n  \"impegno\": \"impegn\",\n  \"impegnò\": \"impegn\",\n  \"impenetrabile\": \"impenetr\",\n  \"impennarsi\": \"impenn\",\n  \"impennata\": \"impenn\",\n  \"impensabile\": \"impens\",\n  \"impensata\": \"impens\",\n  \"impensati\": \"impens\",\n  \"impensato\": \"impens\",\n  \"imperativo\": \"imper\",\n  \"imperator\": \"imperator\",\n  \"imperatore\": \"imper\",\n  \"impercettibile\": \"impercett\",\n  \"imperciocché\": \"imperciocc\",\n  \"imperdonabile\": \"imperdon\",\n  \"imperfetta\": \"imperfett\",\n  \"imperfettione\": \"imperfettion\",\n  \"imperfetto\": \"imperfett\",\n  \"imperfezion\": \"imperfezion\",\n  \"imperia\": \"imper\",\n  \"imperiale\": \"imperial\",\n  \"imperiese\": \"imperies\",\n  \"imperiosa\": \"imper\",\n  \"imperiose\": \"imper\",\n  \"imperioso\": \"imper\",\n  \"impero\": \"imper\",\n  \"imperscrutabile\": \"imperscrut\",\n  \"imperterrito\": \"imperterr\",\n  \"impertinenze\": \"impertinent\",\n  \"imperturbabile\": \"imperturb\",\n  \"imperturbata\": \"imperturb\",\n  \"imperversar\": \"impervers\",\n  \"imperversato\": \"impervers\",\n  \"impeto\": \"impet\",\n  \"impetrata\": \"impetr\",\n  \"impetuosa\": \"impetu\",\n  \"impetuosamente\": \"impetu\",\n  \"impetuosi\": \"impetu\",\n  \"impetuoso\": \"impetu\",\n  \"imphal\": \"imphal\",\n  \"impianti\": \"impiant\",\n  \"impianto\": \"impiant\",\n  \"impiastramento\": \"impiastr\",\n  \"impiastro\": \"impiastr\",\n  \"impiccar\": \"impicc\",\n  \"impiccarli\": \"impicc\",\n  \"impiccati\": \"impicc\",\n  \"impiccato\": \"impicc\",\n  \"impiccheranno\": \"impicc\",\n  \"impicci\": \"impicc\",\n  \"impicciano\": \"impicc\",\n  \"impicciare\": \"impicc\",\n  \"impicciarmene\": \"impicc\",\n  \"impicciarsi\": \"impicc\",\n  \"impicciata\": \"impicc\",\n  \"impicciate\": \"impicc\",\n  \"impicciati\": \"impicc\",\n  \"impicciato\": \"impicc\",\n  \"impicciavan\": \"impicciavan\",\n  \"impiccio\": \"impicc\",\n  \"impiccione\": \"impiccion\",\n  \"impiega\": \"impieg\",\n  \"impiegar\": \"impieg\",\n  \"impiegarci\": \"impieg\",\n  \"impiegare\": \"impieg\",\n  \"impiegarle\": \"impieg\",\n  \"impiegarli\": \"impieg\",\n  \"impiegarne\": \"impieg\",\n  \"impiegarono\": \"impieg\",\n  \"impiegarsi\": \"impieg\",\n  \"impiegata\": \"impieg\",\n  \"impiegate\": \"impieg\",\n  \"impiegati\": \"impieg\",\n  \"impiegato\": \"impieg\",\n  \"impiegatovi\": \"impiegatov\",\n  \"impiegherebbero\": \"impieg\",\n  \"impieghi\": \"impieg\",\n  \"impieghiamo\": \"impieg\",\n  \"impiego\": \"impieg\",\n  \"impigrito\": \"impigr\",\n  \"impiparsi\": \"impip\",\n  \"impipo\": \"impip\",\n  \"implacabile\": \"implac\",\n  \"implica\": \"implic\",\n  \"implicata\": \"implic\",\n  \"implicati\": \"implic\",\n  \"implicato\": \"implic\",\n  \"implici\": \"implic\",\n  \"implicitamente\": \"implicit\",\n  \"implorando\": \"implor\",\n  \"implorar\": \"implor\",\n  \"implorare\": \"implor\",\n  \"implorata\": \"implor\",\n  \"implorato\": \"implor\",\n  \"implorava\": \"implor\",\n  \"imploravan\": \"imploravan\",\n  \"imploravano\": \"implor\",\n  \"implori\": \"implor\",\n  \"imploriate\": \"implor\",\n  \"impone\": \"impon\",\n  \"imponendogli\": \"impon\",\n  \"imponendosi\": \"impon\",\n  \"imponente\": \"imponent\",\n  \"imponesse\": \"imponess\",\n  \"imponeva\": \"impon\",\n  \"imponevano\": \"impon\",\n  \"imponga\": \"impong\",\n  \"imponibile\": \"impon\",\n  \"impor\": \"impor\",\n  \"imporre\": \"imporr\",\n  \"import\": \"import\",\n  \"importa\": \"import\",\n  \"importabili\": \"import\",\n  \"importante\": \"import\",\n  \"importanti\": \"import\",\n  \"importantissimi\": \"importantissim\",\n  \"importantissimo\": \"importantissim\",\n  \"importanza\": \"import\",\n  \"importarne\": \"import\",\n  \"importasse\": \"import\",\n  \"importata\": \"import\",\n  \"importati\": \"import\",\n  \"importatore\": \"import\",\n  \"importatori\": \"import\",\n  \"importava\": \"import\",\n  \"importazione\": \"import\",\n  \"importazioni\": \"import\",\n  \"importo\": \"import\",\n  \"importuna\": \"importun\",\n  \"impose\": \"impos\",\n  \"impositiva\": \"imposit\",\n  \"imposizion\": \"imposizion\",\n  \"imposizione\": \"imposizion\",\n  \"imposizioni\": \"imposizion\",\n  \"impossessa\": \"impossess\",\n  \"impossessati\": \"impossess\",\n  \"impossessava\": \"impossess\",\n  \"impossibile\": \"imposs\",\n  \"impossibili\": \"imposs\",\n  \"impossibilità\": \"impossibil\",\n  \"imposta\": \"impost\",\n  \"impostale\": \"impostal\",\n  \"impostate\": \"impost\",\n  \"impostato\": \"impost\",\n  \"impostazione\": \"impost\",\n  \"imposte\": \"impost\",\n  \"impostesi\": \"impostes\",\n  \"imposti\": \"impost\",\n  \"imposto\": \"impost\",\n  \"impostore\": \"impostor\",\n  \"impostori\": \"impostor\",\n  \"impostura\": \"impostur\",\n  \"impotenza\": \"impotent\",\n  \"impoverimento\": \"impover\",\n  \"imprecando\": \"imprec\",\n  \"imprecazione\": \"imprec\",\n  \"imprecazioni\": \"imprec\",\n  \"imprecisi\": \"imprecis\",\n  \"impreditore\": \"impreditor\",\n  \"impregilo\": \"impregil\",\n  \"imprendibile\": \"imprend\",\n  \"imprenditore\": \"imprenditor\",\n  \"imprenditori\": \"imprenditor\",\n  \"imprenditoria\": \"imprenditor\",\n  \"imprenditoriale\": \"imprenditorial\",\n  \"imprenditoriali\": \"imprenditorial\",\n  \"imprenditorialità\": \"imprenditorial\",\n  \"imprenditrice\": \"imprenditr\",\n  \"impresa\": \"impres\",\n  \"impresari\": \"impresar\",\n  \"imprese\": \"impres\",\n  \"impresse\": \"impress\",\n  \"impressionante\": \"impression\",\n  \"impressionati\": \"impression\",\n  \"impressione\": \"impression\",\n  \"impressioni\": \"impression\",\n  \"impressissetve\": \"impressissetv\",\n  \"impresso\": \"impress\",\n  \"imprestati\": \"imprest\",\n  \"imprestiti\": \"imprest\",\n  \"imprevedibile\": \"impreved\",\n  \"impreveduta\": \"impreved\",\n  \"impreveduto\": \"impreved\",\n  \"imprevista\": \"imprev\",\n  \"impreziosito\": \"imprezios\",\n  \"imprimatur\": \"imprimatur\",\n  \"imprimere\": \"imprim\",\n  \"imprimeva\": \"imprim\",\n  \"improduttive\": \"improdutt\",\n  \"improperi\": \"improper\",\n  \"improperio\": \"improper\",\n  \"improponibile\": \"impropon\",\n  \"improponibili\": \"impropon\",\n  \"impropriamente\": \"impropr\",\n  \"improvvida\": \"improvvid\",\n  \"improvvisa\": \"improvvis\",\n  \"improvvisamente\": \"improvvis\",\n  \"improvvisi\": \"improvvis\",\n  \"improvviso\": \"improvvis\",\n  \"imprudente\": \"imprudent\",\n  \"impugnando\": \"impugn\",\n  \"impugnare\": \"impugn\",\n  \"impugnati\": \"impugn\",\n  \"impugnato\": \"impugn\",\n  \"impugnatori\": \"impugn\",\n  \"impugnatura\": \"impugnatur\",\n  \"impulso\": \"impuls\",\n  \"impunemente\": \"impun\",\n  \"impunità\": \"impun\",\n  \"impunito\": \"impun\",\n  \"impuntano\": \"impunt\",\n  \"imputata\": \"imput\",\n  \"imputati\": \"imput\",\n  \"imputato\": \"imput\",\n  \"imputazione\": \"imput\",\n  \"imr\": \"imr\",\n  \"in\": \"in\",\n  \"ina\": \"ina\",\n  \"inabile\": \"inabil\",\n  \"inabili\": \"inabil\",\n  \"inabilità\": \"inabil\",\n  \"inaccettabile\": \"inaccett\",\n  \"inaccettabili\": \"inaccett\",\n  \"inadeguatezza\": \"inadeguatezz\",\n  \"inaequaliterque\": \"inaequaliterqu\",\n  \"inail\": \"inail\",\n  \"inalberar\": \"inalber\",\n  \"inalberò\": \"inalb\",\n  \"inalterabile\": \"inalter\",\n  \"inalterato\": \"inalter\",\n  \"inamidate\": \"inamid\",\n  \"inammissibile\": \"inammiss\",\n  \"inanimata\": \"inanim\",\n  \"inappellabile\": \"inappell\",\n  \"inarcare\": \"inarc\",\n  \"inarticolato\": \"inarticol\",\n  \"inaspettata\": \"inaspett\",\n  \"inaspettatamente\": \"inaspettat\",\n  \"inaspettate\": \"inaspett\",\n  \"inaspettati\": \"inaspett\",\n  \"inaspettato\": \"inaspett\",\n  \"inasprimento\": \"inaspr\",\n  \"inasprissero\": \"inaspr\",\n  \"inattuato\": \"inattu\",\n  \"inaudita\": \"inaud\",\n  \"inaugura\": \"inaugur\",\n  \"inaugurare\": \"inaugur\",\n  \"inaugurata\": \"inaugur\",\n  \"inaugurate\": \"inaugur\",\n  \"inaugurati\": \"inaugur\",\n  \"inaugurato\": \"inaugur\",\n  \"inaugurazione\": \"inaugur\",\n  \"inaugurerà\": \"inaugur\",\n  \"inazione\": \"inazion\",\n  \"incagli\": \"incagl\",\n  \"incagliata\": \"incagl\",\n  \"incaglio\": \"incagl\",\n  \"incalza\": \"incalz\",\n  \"incalzante\": \"incalz\",\n  \"incalzanti\": \"incalz\",\n  \"incalzare\": \"incalz\",\n  \"incalzati\": \"incalz\",\n  \"incammina\": \"incammin\",\n  \"incamminaron\": \"incamminaron\",\n  \"incamminarono\": \"incammin\",\n  \"incamminata\": \"incammin\",\n  \"incamminati\": \"incammin\",\n  \"incamminato\": \"incammin\",\n  \"incamminavano\": \"incammin\",\n  \"incamminò\": \"incammin\",\n  \"incanalare\": \"incanal\",\n  \"incanalarla\": \"incanal\",\n  \"incannar\": \"incann\",\n  \"incantare\": \"incant\",\n  \"incantarla\": \"incant\",\n  \"incantata\": \"incant\",\n  \"incantati\": \"incant\",\n  \"incantato\": \"incant\",\n  \"incanti\": \"incant\",\n  \"incanto\": \"incant\",\n  \"incapace\": \"incapac\",\n  \"incapaci\": \"incapac\",\n  \"incappati\": \"incapp\",\n  \"incappucciando\": \"incappucc\",\n  \"incappucciati\": \"incappucc\",\n  \"incappucciato\": \"incappucc\",\n  \"incaprettatò\": \"incaprettat\",\n  \"incapricciata\": \"incapricc\",\n  \"incaricandosi\": \"incaric\",\n  \"incaricarsi\": \"incaric\",\n  \"incaricati\": \"incaric\",\n  \"incaricato\": \"incaric\",\n  \"incarichi\": \"incar\",\n  \"incarico\": \"incar\",\n  \"incarnate\": \"incarn\",\n  \"incarnazione\": \"incarn\",\n  \"incassando\": \"incass\",\n  \"incassarne\": \"incass\",\n  \"incassi\": \"incass\",\n  \"incasso\": \"incass\",\n  \"incastravano\": \"incastr\",\n  \"incatasciato\": \"incatasc\",\n  \"incatenano\": \"incaten\",\n  \"incatenato\": \"incaten\",\n  \"incauta\": \"inca\",\n  \"incavati\": \"incav\",\n  \"incendi\": \"incend\",\n  \"incendiarie\": \"incendiar\",\n  \"incendiata\": \"incend\",\n  \"incendiati\": \"incend\",\n  \"incendio\": \"incend\",\n  \"incensi\": \"incens\",\n  \"incentivi\": \"incent\",\n  \"incentrata\": \"incentr\",\n  \"incentrato\": \"incentr\",\n  \"inceppare\": \"incepp\",\n  \"incerata\": \"incer\",\n  \"incerta\": \"incert\",\n  \"incerte\": \"incert\",\n  \"incertezza\": \"incertezz\",\n  \"incertezze\": \"incertezz\",\n  \"incerti\": \"incert\",\n  \"incerto\": \"incert\",\n  \"incessante\": \"incess\",\n  \"incessanti\": \"incess\",\n  \"incetta\": \"incett\",\n  \"incettatori\": \"incett\",\n  \"inchiesta\": \"inchiest\",\n  \"inchieste\": \"inchiest\",\n  \"inchinandosi\": \"inchin\",\n  \"inchinarono\": \"inchin\",\n  \"inchinato\": \"inchin\",\n  \"inchinatolo\": \"inchinatol\",\n  \"inchinavano\": \"inchin\",\n  \"inchini\": \"inchin\",\n  \"inchino\": \"inchin\",\n  \"inchinò\": \"inchin\",\n  \"inchiodano\": \"inchiod\",\n  \"inchiodar\": \"inchiod\",\n  \"inchiodati\": \"inchiod\",\n  \"inchiodato\": \"inchiod\",\n  \"inchiodò\": \"inchiod\",\n  \"inchiona\": \"inchion\",\n  \"inchiostri\": \"inchiostr\",\n  \"inchiostro\": \"inchiostr\",\n  \"inciamparci\": \"inciamp\",\n  \"inciampava\": \"inciamp\",\n  \"inciampi\": \"inciamp\",\n  \"inciampo\": \"inciamp\",\n  \"incidente\": \"incident\",\n  \"incidentemente\": \"incident\",\n  \"incidenti\": \"incident\",\n  \"incidere\": \"incid\",\n  \"incinta\": \"incint\",\n  \"incintamento\": \"incint\",\n  \"incirca\": \"incirc\",\n  \"incise\": \"incis\",\n  \"incisiva\": \"incis\",\n  \"incita\": \"incit\",\n  \"incitamenti\": \"incit\",\n  \"incitamento\": \"incit\",\n  \"incitare\": \"incit\",\n  \"incivile\": \"incivil\",\n  \"inclinando\": \"inclin\",\n  \"inclinano\": \"inclin\",\n  \"inclinar\": \"inclin\",\n  \"inclinata\": \"inclin\",\n  \"inclinati\": \"inclin\",\n  \"inclinato\": \"inclin\",\n  \"inclinazione\": \"inclin\",\n  \"inclinazioni\": \"inclin\",\n  \"incline\": \"inclin\",\n  \"incliniamo\": \"inclin\",\n  \"inclita\": \"inclit\",\n  \"incluso\": \"inclus\",\n  \"incocciati\": \"incocc\",\n  \"incognita\": \"incogn\",\n  \"incollati\": \"incoll\",\n  \"incollato\": \"incoll\",\n  \"incolpati\": \"incolp\",\n  \"incolpava\": \"incolp\",\n  \"incolpevole\": \"incolpevol\",\n  \"incolpevoli\": \"incolpevol\",\n  \"incolta\": \"incolt\",\n  \"incolti\": \"incolt\",\n  \"incolumità\": \"incolum\",\n  \"incombente\": \"incombent\",\n  \"incombenza\": \"incombent\",\n  \"incominciare\": \"incominc\",\n  \"incominciata\": \"incominc\",\n  \"incominciati\": \"incominc\",\n  \"incominciava\": \"incominc\",\n  \"incomoda\": \"incomod\",\n  \"incomodare\": \"incomod\",\n  \"incomodarla\": \"incomod\",\n  \"incomodarsi\": \"incomod\",\n  \"incomodasse\": \"incomod\",\n  \"incomodata\": \"incomod\",\n  \"incomodate\": \"incomod\",\n  \"incomodato\": \"incomod\",\n  \"incomodi\": \"incomod\",\n  \"incomodiate\": \"incomod\",\n  \"incomodo\": \"incomod\",\n  \"incomparabile\": \"incompar\",\n  \"incompatibile\": \"incompat\",\n  \"incompatibilità\": \"incompatibil\",\n  \"incompetente\": \"incompetent\",\n  \"incomprensibile\": \"incomprens\",\n  \"incomprensioni\": \"incomprension\",\n  \"incomunicabile\": \"incomunic\",\n  \"incomunicabili\": \"incomunic\",\n  \"inconcludente\": \"inconcludent\",\n  \"inconcludenti\": \"inconcludent\",\n  \"incondizionato\": \"incondizion\",\n  \"incongruenze\": \"incongruent\",\n  \"incongruità\": \"incongru\",\n  \"inconsiderato\": \"inconsider\",\n  \"incontaminata\": \"incontamin\",\n  \"incontanente\": \"incontanent\",\n  \"inconterà\": \"incont\",\n  \"incontra\": \"incontr\",\n  \"incontrando\": \"incontr\",\n  \"incontrandola\": \"incontr\",\n  \"incontrandolo\": \"incontr\",\n  \"incontrano\": \"incontr\",\n  \"incontrar\": \"incontr\",\n  \"incontrare\": \"incontr\",\n  \"incontrarlo\": \"incontr\",\n  \"incontrarmi\": \"incontr\",\n  \"incontrarne\": \"incontr\",\n  \"incontrarono\": \"incontr\",\n  \"incontrarsi\": \"incontr\",\n  \"incontrasse\": \"incontr\",\n  \"incontrassero\": \"incontr\",\n  \"incontrassimo\": \"incontr\",\n  \"incontrastata\": \"incontrast\",\n  \"incontrate\": \"incontr\",\n  \"incontrati\": \"incontr\",\n  \"incontrato\": \"incontr\",\n  \"incontrava\": \"incontr\",\n  \"incontravamo\": \"incontr\",\n  \"incontravano\": \"incontr\",\n  \"incontrerà\": \"incontr\",\n  \"incontreranno\": \"incontr\",\n  \"incontrerebbe\": \"incontr\",\n  \"incontri\": \"incontr\",\n  \"incontriamo\": \"incontr\",\n  \"incontrino\": \"incontrin\",\n  \"incontro\": \"incontr\",\n  \"incontrò\": \"incontr\",\n  \"incontrollate\": \"incontroll\",\n  \"incontrollato\": \"incontroll\",\n  \"inconveniente\": \"inconvenient\",\n  \"inconvenienti\": \"inconvenient\",\n  \"incoraggiamenti\": \"incoragg\",\n  \"incoraggianti\": \"incoragg\",\n  \"incoraggiare\": \"incoragg\",\n  \"incoraggiasse\": \"incoragg\",\n  \"incoraggiti\": \"incoragg\",\n  \"incoraggito\": \"incoragg\",\n  \"incorporazioni\": \"incorpor\",\n  \"incorra\": \"incorr\",\n  \"incorrere\": \"incorr\",\n  \"incorrerebbero\": \"incorr\",\n  \"incostituzionalità\": \"incostituzional\",\n  \"incredibile\": \"incred\",\n  \"incredibilmente\": \"incredibil\",\n  \"incredule\": \"incredul\",\n  \"increduli\": \"incredul\",\n  \"incrementando\": \"increment\",\n  \"incrementi\": \"increment\",\n  \"incremento\": \"increment\",\n  \"increspata\": \"incresp\",\n  \"incriminata\": \"incrimin\",\n  \"incriminazione\": \"incrimin\",\n  \"incrina\": \"incrin\",\n  \"incrocian\": \"incrocian\",\n  \"incrociando\": \"incroc\",\n  \"incrociare\": \"incroc\",\n  \"incrociate\": \"incroc\",\n  \"incrociato\": \"incroc\",\n  \"incrociatore\": \"incroc\",\n  \"incrocicchiato\": \"incrocicc\",\n  \"incrocio\": \"incroc\",\n  \"incrociò\": \"incroc\",\n  \"incrollabile\": \"incroll\",\n  \"incubi\": \"incub\",\n  \"incubo\": \"incub\",\n  \"incudine\": \"incudin\",\n  \"inculcandogliela\": \"inculc\",\n  \"incunea\": \"incune\",\n  \"incurabile\": \"incur\",\n  \"incursione\": \"incursion\",\n  \"incursioni\": \"incursion\",\n  \"incursori\": \"incursor\",\n  \"incurvato\": \"incurv\",\n  \"incusso\": \"incuss\",\n  \"incutere\": \"incut\",\n  \"incutessero\": \"incut\",\n  \"ind\": \"ind\",\n  \"indaga\": \"indag\",\n  \"indagando\": \"indag\",\n  \"indagare\": \"indag\",\n  \"indagate\": \"indag\",\n  \"indagati\": \"indag\",\n  \"indagato\": \"indag\",\n  \"indagine\": \"indagin\",\n  \"indagini\": \"indagin\",\n  \"indarno\": \"indarn\",\n  \"indebita\": \"indeb\",\n  \"indebolirsi\": \"indebol\",\n  \"indebolita\": \"indebol\",\n  \"indecente\": \"indecent\",\n  \"indecentè\": \"indecent\",\n  \"indecenti\": \"indecent\",\n  \"indecisione\": \"indecision\",\n  \"indecorosa\": \"indecor\",\n  \"indefinibile\": \"indefin\",\n  \"indefinite\": \"indefin\",\n  \"indefinito\": \"indefin\",\n  \"indegna\": \"indegn\",\n  \"indegnamente\": \"indegn\",\n  \"indegnazione\": \"indegn\",\n  \"indegne\": \"indegn\",\n  \"indegni\": \"indegn\",\n  \"indegno\": \"indegn\",\n  \"indemoniato\": \"indemon\",\n  \"indenne\": \"indenn\",\n  \"indennità\": \"indenn\",\n  \"indennizzi\": \"indennizz\",\n  \"indescrivibile\": \"indescriv\",\n  \"indeterminata\": \"indetermin\",\n  \"indeterminatamente\": \"indeterminat\",\n  \"indeterminato\": \"indetermin\",\n  \"indetta\": \"indett\",\n  \"indette\": \"indett\",\n  \"indetto\": \"indett\",\n  \"indi\": \"indi\",\n  \"india\": \"indi\",\n  \"indià\": \"indi\",\n  \"indian\": \"indian\",\n  \"indiana\": \"indian\",\n  \"indiane\": \"indian\",\n  \"indiani\": \"indian\",\n  \"indiano\": \"indi\",\n  \"indiavolati\": \"indiavol\",\n  \"indica\": \"indic\",\n  \"indicando\": \"indic\",\n  \"indicandogli\": \"indic\",\n  \"indicano\": \"indic\",\n  \"indicar\": \"indic\",\n  \"indicare\": \"indic\",\n  \"indicarla\": \"indic\",\n  \"indicarne\": \"indic\",\n  \"indicarono\": \"indic\",\n  \"indicasse\": \"indic\",\n  \"indicata\": \"indic\",\n  \"indicate\": \"indic\",\n  \"indicati\": \"indic\",\n  \"indicative\": \"indic\",\n  \"indicativo\": \"indic\",\n  \"indicato\": \"indic\",\n  \"indicatore\": \"indic\",\n  \"indicatori\": \"indic\",\n  \"indicators\": \"indicators\",\n  \"indicava\": \"indic\",\n  \"indicavano\": \"indic\",\n  \"indicazione\": \"indic\",\n  \"indicazioni\": \"indic\",\n  \"indice\": \"indic\",\n  \"indicherebbero\": \"indic\",\n  \"indici\": \"indic\",\n  \"indicibile\": \"indic\",\n  \"indicio\": \"indic\",\n  \"indicizzati\": \"indicizz\",\n  \"indicò\": \"indic\",\n  \"indietro\": \"indietr\",\n  \"indifferente\": \"indifferent\",\n  \"indifferenti\": \"indifferent\",\n  \"indifferenza\": \"indifferent\",\n  \"indigena\": \"indigen\",\n  \"indigene\": \"indigen\",\n  \"indigeni\": \"indigen\",\n  \"indigeno\": \"indigen\",\n  \"indigenti\": \"indigent\",\n  \"indigenza\": \"indigent\",\n  \"indignata\": \"indign\",\n  \"indignati\": \"indign\",\n  \"indignazione\": \"indign\",\n  \"indimenticabile\": \"indimentic\",\n  \"indimenticabili\": \"indimentic\",\n  \"indios\": \"indios\",\n  \"indipendenstista\": \"indipendenst\",\n  \"indipendente\": \"indipendent\",\n  \"indipendentemente\": \"indipendent\",\n  \"indipendenti\": \"indipendent\",\n  \"indipendentismo\": \"indipendent\",\n  \"indipendentista\": \"indipendent\",\n  \"indipendentistà\": \"indipendent\",\n  \"indipendentisti\": \"indipendent\",\n  \"indipendentistì\": \"indipendent\",\n  \"indipendenza\": \"indipendent\",\n  \"indipendetista\": \"indipendet\",\n  \"indiretta\": \"indirett\",\n  \"indirettamente\": \"indirett\",\n  \"indirette\": \"indirett\",\n  \"indirizzare\": \"indirizz\",\n  \"indirizzata\": \"indirizz\",\n  \"indirizzate\": \"indirizz\",\n  \"indirizzati\": \"indirizz\",\n  \"indirizzato\": \"indirizz\",\n  \"indirizzava\": \"indirizz\",\n  \"indirizzi\": \"indirizz\",\n  \"indirizzo\": \"indirizz\",\n  \"indisciplinata\": \"indisciplin\",\n  \"indiscreta\": \"indiscret\",\n  \"indiscreti\": \"indiscret\",\n  \"indiscrezione\": \"indiscrezion\",\n  \"indiscrezioni\": \"indiscrezion\",\n  \"indiscriminati\": \"indiscrimin\",\n  \"indiscusso\": \"indiscuss\",\n  \"indispensabile\": \"indispens\",\n  \"indispensabili\": \"indispens\",\n  \"indispettita\": \"indispett\",\n  \"indispettito\": \"indispett\",\n  \"indispettiva\": \"indispett\",\n  \"indisponibile\": \"indispon\",\n  \"indisponibili\": \"indispon\",\n  \"indisponibilità\": \"indisponibil\",\n  \"indistintamente\": \"indistint\",\n  \"indistinto\": \"indistint\",\n  \"individua\": \"individu\",\n  \"individuale\": \"individual\",\n  \"individuali\": \"individual\",\n  \"individualità\": \"individual\",\n  \"individualmente\": \"individual\",\n  \"individuando\": \"individu\",\n  \"individuano\": \"individu\",\n  \"individuare\": \"individu\",\n  \"individuata\": \"individu\",\n  \"individuate\": \"individu\",\n  \"individuati\": \"individu\",\n  \"individuato\": \"individu\",\n  \"individuazione\": \"individu\",\n  \"individui\": \"individu\",\n  \"individuo\": \"individu\",\n  \"indizi\": \"indiz\",\n  \"indizio\": \"indiz\",\n  \"indizj\": \"indizj\",\n  \"indocile\": \"indocil\",\n  \"indocilità\": \"indocil\",\n  \"indole\": \"indol\",\n  \"indolenziti\": \"indolenz\",\n  \"indomabile\": \"indom\",\n  \"indomani\": \"indoman\",\n  \"indonesia\": \"indones\",\n  \"indoor\": \"indoor\",\n  \"indossando\": \"indoss\",\n  \"indossato\": \"indoss\",\n  \"indossava\": \"indoss\",\n  \"indossavano\": \"indoss\",\n  \"indosso\": \"indoss\",\n  \"indotto\": \"indott\",\n  \"indovinala\": \"indovinal\",\n  \"indovinar\": \"indovin\",\n  \"indovinare\": \"indovin\",\n  \"indovinarla\": \"indovin\",\n  \"indovinarsi\": \"indovin\",\n  \"indovinasse\": \"indovin\",\n  \"indovinate\": \"indovin\",\n  \"indovinato\": \"indovin\",\n  \"indovinava\": \"indovin\",\n  \"indovinerà\": \"indovin\",\n  \"indovinò\": \"indovin\",\n  \"indro\": \"indro\",\n  \"indù\": \"indù\",\n  \"indubbiamente\": \"indubb\",\n  \"indubbio\": \"indubb\",\n  \"indubitabilmente\": \"indubitabil\",\n  \"induce\": \"induc\",\n  \"induceva\": \"induc\",\n  \"inducono\": \"induc\",\n  \"indugi\": \"indug\",\n  \"indugiare\": \"indug\",\n  \"indugiasse\": \"indug\",\n  \"indugiava\": \"indug\",\n  \"indulgente\": \"indulgent\",\n  \"indulto\": \"indult\",\n  \"indumenti\": \"indument\",\n  \"indur\": \"indur\",\n  \"indurati\": \"indur\",\n  \"indurato\": \"indur\",\n  \"indurito\": \"indur\",\n  \"indurla\": \"indurl\",\n  \"indurrà\": \"indurr\",\n  \"indurre\": \"indurr\",\n  \"industr\": \"industr\",\n  \"industria\": \"industr\",\n  \"industriale\": \"industrial\",\n  \"industriali\": \"industrial\",\n  \"industrializzate\": \"industrializz\",\n  \"industrializzati\": \"industrializz\",\n  \"industrializzato\": \"industrializz\",\n  \"industriarsi\": \"industr\",\n  \"industrie\": \"industr\",\n  \"industries\": \"industries\",\n  \"induttivo\": \"indutt\",\n  \"induzione\": \"induzion\",\n  \"induzioni\": \"induzion\",\n  \"inebriato\": \"inebr\",\n  \"ineccepibile\": \"ineccep\",\n  \"inedita\": \"ined\",\n  \"inedite\": \"ined\",\n  \"inediti\": \"ined\",\n  \"inedito\": \"ined\",\n  \"ineffabile\": \"ineff\",\n  \"inefficaci\": \"inefficac\",\n  \"inefficacia\": \"inefficac\",\n  \"inefficienza\": \"inefficient\",\n  \"ineguali\": \"inegual\",\n  \"ineludibile\": \"inelud\",\n  \"ineludibili\": \"inelud\",\n  \"ineluttabile\": \"inelutt\",\n  \"ineluttabilità\": \"inelutt\",\n  \"inequivoco\": \"inequivoc\",\n  \"inermi\": \"inerm\",\n  \"inerte\": \"inert\",\n  \"inerzia\": \"inerz\",\n  \"inesatta\": \"inesatt\",\n  \"inesausta\": \"inesaust\",\n  \"ineseguiti\": \"inesegu\",\n  \"inesigibili\": \"inesig\",\n  \"inesistenti\": \"inesistent\",\n  \"inesorabilmente\": \"inesorabil\",\n  \"inesperta\": \"inespert\",\n  \"inesperte\": \"inespert\",\n  \"inesperto\": \"inespert\",\n  \"inesplicabile\": \"inesplic\",\n  \"inesplicabili\": \"inesplic\",\n  \"inesplorato\": \"inesplor\",\n  \"inespugnabile\": \"inespugn\",\n  \"inevitabile\": \"inevit\",\n  \"inevitabili\": \"inevit\",\n  \"inevitabilmente\": \"inevitabil\",\n  \"inf\": \"inf\",\n  \"infallibilmente\": \"infallibil\",\n  \"infame\": \"infam\",\n  \"infami\": \"infam\",\n  \"infamia\": \"infam\",\n  \"infamità\": \"infam\",\n  \"infangare\": \"infang\",\n  \"infangata\": \"infang\",\n  \"infangato\": \"infang\",\n  \"infante\": \"infant\",\n  \"infanti\": \"infant\",\n  \"infantile\": \"infantil\",\n  \"infanzia\": \"infanz\",\n  \"infarinarne\": \"infarin\",\n  \"infarinati\": \"infarin\",\n  \"infarto\": \"infart\",\n  \"infastidir\": \"infastid\",\n  \"infastidito\": \"infastid\",\n  \"infaticabile\": \"infatic\",\n  \"infatti\": \"infatt\",\n  \"infauste\": \"infaust\",\n  \"infausto\": \"infaust\",\n  \"infedeltà\": \"infedelt\",\n  \"infelice\": \"infel\",\n  \"infelicemente\": \"infelic\",\n  \"infelici\": \"infel\",\n  \"infelicissima\": \"infelicissim\",\n  \"inferiore\": \"inferior\",\n  \"inferiori\": \"inferior\",\n  \"infermeria\": \"infermer\",\n  \"infermi\": \"inferm\",\n  \"infermiera\": \"infermier\",\n  \"infermiere\": \"inferm\",\n  \"infermieri\": \"infermier\",\n  \"infermità\": \"inferm\",\n  \"infermo\": \"inferm\",\n  \"infernale\": \"infernal\",\n  \"inferno\": \"infern\",\n  \"inferriata\": \"inferr\",\n  \"inferriate\": \"inferr\",\n  \"inferta\": \"infert\",\n  \"infervorati\": \"infervor\",\n  \"infervorato\": \"infervor\",\n  \"infestano\": \"infest\",\n  \"infestar\": \"infest\",\n  \"infetta\": \"infett\",\n  \"infettamento\": \"infett\",\n  \"infettati\": \"infett\",\n  \"infettato\": \"infett\",\n  \"infette\": \"infett\",\n  \"infetti\": \"infett\",\n  \"infezione\": \"infezion\",\n  \"infiammata\": \"infiamm\",\n  \"infiammati\": \"infiamm\",\n  \"infiammato\": \"infiamm\",\n  \"infiammavano\": \"infiamm\",\n  \"inficiate\": \"infic\",\n  \"infido\": \"infid\",\n  \"infierire\": \"infier\",\n  \"infilata\": \"infil\",\n  \"infilato\": \"infil\",\n  \"infilavo\": \"infil\",\n  \"infilzan\": \"infilzan\",\n  \"infilzata\": \"infilz\",\n  \"infimi\": \"infim\",\n  \"infimo\": \"infim\",\n  \"infine\": \"infin\",\n  \"infinita\": \"infin\",\n  \"infinite\": \"infin\",\n  \"infinocchiar\": \"infinocc\",\n  \"infinocchiata\": \"infinocc\",\n  \"inflazione\": \"inflazion\",\n  \"inflazionistica\": \"inflazionist\",\n  \"inflazionistiche\": \"inflazionist\",\n  \"inflazionistico\": \"inflazionist\",\n  \"inflessibile\": \"infless\",\n  \"infliggendo\": \"infligg\",\n  \"infliggere\": \"infligg\",\n  \"inflitto\": \"inflitt\",\n  \"influenza\": \"influenz\",\n  \"influenzale\": \"influenzal\",\n  \"influenzate\": \"influenz\",\n  \"influenzato\": \"influenz\",\n  \"influenze\": \"influenz\",\n  \"influito\": \"influ\",\n  \"influssi\": \"influss\",\n  \"influsso\": \"influss\",\n  \"infocata\": \"infoc\",\n  \"infocati\": \"infoc\",\n  \"infocato\": \"infoc\",\n  \"infoltito\": \"infolt\",\n  \"infomazione\": \"infom\",\n  \"infondate\": \"infond\",\n  \"infondato\": \"infond\",\n  \"infonde\": \"infond\",\n  \"infondere\": \"infond\",\n  \"infondergli\": \"infond\",\n  \"inforamzioni\": \"inforamzion\",\n  \"informa\": \"inform\",\n  \"informale\": \"informal\",\n  \"informali\": \"informal\",\n  \"informando\": \"inform\",\n  \"informar\": \"inform\",\n  \"informare\": \"inform\",\n  \"informarlo\": \"inform\",\n  \"informaron\": \"informaron\",\n  \"informarono\": \"inform\",\n  \"informarsene\": \"inform\",\n  \"informarsi\": \"inform\",\n  \"informasse\": \"inform\",\n  \"informata\": \"inform\",\n  \"informati\": \"inform\",\n  \"informatica\": \"informat\",\n  \"informatici\": \"informat\",\n  \"informatico\": \"informat\",\n  \"informationes\": \"informationes\",\n  \"informativi\": \"inform\",\n  \"informativo\": \"inform\",\n  \"informato\": \"inform\",\n  \"informatore\": \"inform\",\n  \"informazione\": \"inform\",\n  \"informazioni\": \"inform\",\n  \"informe\": \"inform\",\n  \"informerete\": \"inform\",\n  \"informerò\": \"inform\",\n  \"informò\": \"inform\",\n  \"infornare\": \"inforn\",\n  \"infortunati\": \"infortun\",\n  \"infortunato\": \"infortun\",\n  \"infortuni\": \"infortun\",\n  \"infortunio\": \"infortun\",\n  \"infossati\": \"infoss\",\n  \"infrange\": \"infrang\",\n  \"infrangere\": \"infrang\",\n  \"infranse\": \"infrans\",\n  \"infrastrutturazione\": \"infrastruttur\",\n  \"infrastrutture\": \"infrastruttur\",\n  \"infrazioni\": \"infrazion\",\n  \"infuriare\": \"infur\",\n  \"infuriati\": \"infur\",\n  \"infuriato\": \"infur\",\n  \"infuriava\": \"infur\",\n  \"infuriò\": \"infur\",\n  \"ing\": \"ing\",\n  \"ingaggi\": \"ingagg\",\n  \"ingaggiati\": \"ingagg\",\n  \"ingaggiato\": \"ingagg\",\n  \"ingannano\": \"ingann\",\n  \"ingannare\": \"ingann\",\n  \"ingannarlo\": \"ingann\",\n  \"ingannata\": \"ingann\",\n  \"ingannava\": \"ingann\",\n  \"ingannerebbe\": \"ingann\",\n  \"inganni\": \"ingann\",\n  \"inganno\": \"ingann\",\n  \"ingarbugliata\": \"ingarbugl\",\n  \"ingegna\": \"ingegn\",\n  \"ingegnandosi\": \"ingegn\",\n  \"ingegnano\": \"ingegn\",\n  \"ingegnarsi\": \"ingegn\",\n  \"ingegnati\": \"ingegn\",\n  \"ingegnato\": \"ingegn\",\n  \"ingegnava\": \"ingegn\",\n  \"ingegnavano\": \"ingegn\",\n  \"ingegneremo\": \"ingegn\",\n  \"ingegneria\": \"ingegner\",\n  \"ingegni\": \"ingegn\",\n  \"ingegno\": \"ingegn\",\n  \"ingegnosa\": \"ingegn\",\n  \"ingegnoso\": \"ingegn\",\n  \"ingelosisce\": \"ingelos\",\n  \"ingemar\": \"ingem\",\n  \"ingenita\": \"ingen\",\n  \"ingenti\": \"ingent\",\n  \"ingenuità\": \"ingenu\",\n  \"ingenuo\": \"ingenu\",\n  \"ingerenza\": \"ingerent\",\n  \"ingerirvisi\": \"ingerirvis\",\n  \"ingerito\": \"inger\",\n  \"ingessare\": \"ingess\",\n  \"ingessatura\": \"ingessatur\",\n  \"inghilterra\": \"inghilterr\",\n  \"inghiottisce\": \"inghiott\",\n  \"inghiottiti\": \"inghiott\",\n  \"inghippi\": \"inghipp\",\n  \"inginocchiarsi\": \"inginocc\",\n  \"inginocchiato\": \"inginocc\",\n  \"inginocchiò\": \"inginocc\",\n  \"inginocchioni\": \"inginocchion\",\n  \"ingiù\": \"ingiù\",\n  \"ingiuria\": \"ingiur\",\n  \"ingiuriose\": \"ingiur\",\n  \"ingiuriosi\": \"ingiur\",\n  \"ingiusta\": \"ingiust\",\n  \"ingiustamente\": \"ingiust\",\n  \"ingiuste\": \"ingiust\",\n  \"ingiustificata\": \"ingiustific\",\n  \"ingiustificato\": \"ingiustific\",\n  \"ingiustizia\": \"ingiustiz\",\n  \"ingiusto\": \"ingiust\",\n  \"inglese\": \"ingles\",\n  \"inglesi\": \"ingles\",\n  \"ingloriosa\": \"inglor\",\n  \"ingoiando\": \"ingoi\",\n  \"ingoiarsi\": \"ingoi\",\n  \"ingoiata\": \"ingoi\",\n  \"ingoiati\": \"ingoi\",\n  \"ingolfa\": \"ingolf\",\n  \"ingolfato\": \"ingolf\",\n  \"ingolfava\": \"ingolf\",\n  \"ingolstadt\": \"ingolstadt\",\n  \"ingombrava\": \"ingombr\",\n  \"ingombri\": \"ingombr\",\n  \"ingombro\": \"ingombr\",\n  \"ingordi\": \"ingord\",\n  \"ingozzarne\": \"ingozz\",\n  \"ingrandire\": \"ingrand\",\n  \"ingrandirsi\": \"ingrand\",\n  \"ingrandita\": \"ingrand\",\n  \"ingrandivano\": \"ingrand\",\n  \"ingrassare\": \"ingrass\",\n  \"ingrassia\": \"ingrass\",\n  \"ingratitudine\": \"ingratitudin\",\n  \"ingred\": \"ingred\",\n  \"ingredienti\": \"ingredient\",\n  \"ingressi\": \"ingress\",\n  \"ingresso\": \"ingress\",\n  \"ingrossa\": \"ingross\",\n  \"ingrossava\": \"ingross\",\n  \"ingrosso\": \"ingross\",\n  \"ingrossò\": \"ingross\",\n  \"inguscezia\": \"inguscez\",\n  \"inhabilità\": \"inhabil\",\n  \"inibisce\": \"inib\",\n  \"inibizione\": \"inibizion\",\n  \"iniezione\": \"iniezion\",\n  \"inimicizia\": \"inimiciz\",\n  \"inimicizie\": \"inimiciz\",\n  \"ininterrotta\": \"ininterrott\",\n  \"iniqua\": \"iniqu\",\n  \"inique\": \"iniqu\",\n  \"iniqui\": \"iniqu\",\n  \"iniquità\": \"iniqu\",\n  \"iniquo\": \"iniqu\",\n  \"inizia\": \"iniz\",\n  \"iniziale\": \"inizial\",\n  \"iniziali\": \"inizial\",\n  \"inizialmente\": \"inizial\",\n  \"iniziano\": \"iniz\",\n  \"iniziare\": \"iniz\",\n  \"iniziata\": \"iniz\",\n  \"iniziativa\": \"iniz\",\n  \"iniziative\": \"iniz\",\n  \"iniziato\": \"iniz\",\n  \"iniziazione\": \"iniz\",\n  \"inizierà\": \"iniz\",\n  \"inizierebbe\": \"iniz\",\n  \"inizio\": \"iniz\",\n  \"innaffia\": \"innaff\",\n  \"innaffiato\": \"innaff\",\n  \"innalzamento\": \"innalz\",\n  \"innalzata\": \"innalz\",\n  \"innalzato\": \"innalz\",\n  \"innamora\": \"innamor\",\n  \"innamorano\": \"innamor\",\n  \"innamorarsi\": \"innamor\",\n  \"innamorata\": \"innamor\",\n  \"innamorati\": \"innamor\",\n  \"innamorato\": \"innamor\",\n  \"innanzi\": \"innanz\",\n  \"innanzitutto\": \"innanzitutt\",\n  \"innata\": \"innat\",\n  \"innegabile\": \"inneg\",\n  \"inneggianti\": \"innegg\",\n  \"inneggiavano\": \"innegg\",\n  \"innesca\": \"innesc\",\n  \"innesti\": \"innest\",\n  \"inni\": \"inni\",\n  \"innocente\": \"innocent\",\n  \"innocenti\": \"innocent\",\n  \"innocentina\": \"innocentin\",\n  \"innocenza\": \"innocent\",\n  \"innominabili\": \"innomin\",\n  \"innominato\": \"innomin\",\n  \"innovata\": \"innov\",\n  \"innovativi\": \"innov\",\n  \"innovativo\": \"innov\",\n  \"innovatore\": \"innov\",\n  \"innovazione\": \"innov\",\n  \"inocntro\": \"inocntr\",\n  \"inoffensivi\": \"inoffens\",\n  \"inoffensivo\": \"inoffens\",\n  \"inoltra\": \"inoltr\",\n  \"inoltrandosi\": \"inoltr\",\n  \"inoltrarvisi\": \"inoltrarvis\",\n  \"inoltrata\": \"inoltr\",\n  \"inoltrato\": \"inoltr\",\n  \"inoltrava\": \"inoltr\",\n  \"inoltre\": \"inoltr\",\n  \"inoltrò\": \"inoltr\",\n  \"inondato\": \"inond\",\n  \"inopportuna\": \"inopportun\",\n  \"inopportuno\": \"inopportun\",\n  \"inorriditi\": \"inorrid\",\n  \"inorridito\": \"inorrid\",\n  \"inorridiva\": \"inorrid\",\n  \"inorridivano\": \"inorrid\",\n  \"inospitale\": \"inospital\",\n  \"inosservata\": \"inosserv\",\n  \"inosservati\": \"inosserv\",\n  \"inosservato\": \"inosserv\",\n  \"inpgi\": \"inpgi\",\n  \"inps\": \"inps\",\n  \"input\": \"input\",\n  \"inquadrato\": \"inquadr\",\n  \"inquadrava\": \"inquadr\",\n  \"inqualificabile\": \"inqualific\",\n  \"inquieta\": \"inquiet\",\n  \"inquietante\": \"inquiet\",\n  \"inquietanti\": \"inquiet\",\n  \"inquietarla\": \"inquiet\",\n  \"inquietarsene\": \"inquiet\",\n  \"inquietarti\": \"inquiet\",\n  \"inquietata\": \"inquiet\",\n  \"inquietava\": \"inquiet\",\n  \"inquieti\": \"inquiet\",\n  \"inquieto\": \"inquiet\",\n  \"inquietudine\": \"inquietudin\",\n  \"inquietudini\": \"inquietudin\",\n  \"inquilini\": \"inquilin\",\n  \"inquilino\": \"inquilin\",\n  \"inquinamento\": \"inquin\",\n  \"inquinanti\": \"inquin\",\n  \"inquinasse\": \"inquin\",\n  \"inquini\": \"inquin\",\n  \"inquirenti\": \"inquirent\",\n  \"inquisisca\": \"inquis\",\n  \"inquisiti\": \"inquis\",\n  \"inquisizione\": \"inquisizion\",\n  \"inquisizioni\": \"inquisizion\",\n  \"insabbiati\": \"insabb\",\n  \"insaccato\": \"insacc\",\n  \"insaccava\": \"insacc\",\n  \"insaccò\": \"insacc\",\n  \"insalvatichiti\": \"insalvatic\",\n  \"insalvatichito\": \"insalvatic\",\n  \"insanguinate\": \"insanguin\",\n  \"insanguinati\": \"insanguin\",\n  \"insanguinato\": \"insanguin\",\n  \"insaputa\": \"insap\",\n  \"inscenare\": \"inscen\",\n  \"insediamenti\": \"insed\",\n  \"insediamento\": \"insed\",\n  \"insediarsi\": \"insed\",\n  \"insediati\": \"insed\",\n  \"insediato\": \"insed\",\n  \"insegna\": \"insegn\",\n  \"insegnamento\": \"insegn\",\n  \"insegnanmento\": \"insegnanment\",\n  \"insegnano\": \"insegn\",\n  \"insegnante\": \"insegn\",\n  \"insegnanti\": \"insegn\",\n  \"insegnar\": \"insegn\",\n  \"insegnare\": \"insegn\",\n  \"insegnargli\": \"insegn\",\n  \"insegnargliela\": \"insegn\",\n  \"insegnarle\": \"insegn\",\n  \"insegnarmi\": \"insegn\",\n  \"insegnata\": \"insegn\",\n  \"insegnate\": \"insegn\",\n  \"insegnati\": \"insegn\",\n  \"insegnato\": \"insegn\",\n  \"insegnava\": \"insegn\",\n  \"insegnavan\": \"insegnavan\",\n  \"insegne\": \"insegn\",\n  \"insegnerà\": \"insegn\",\n  \"insegnerò\": \"insegn\",\n  \"insegni\": \"insegn\",\n  \"insegno\": \"insegn\",\n  \"insegnò\": \"insegn\",\n  \"insegue\": \"insegu\",\n  \"inseguì\": \"insegu\",\n  \"inseguimenti\": \"insegu\",\n  \"inseguimento\": \"insegu\",\n  \"inseguire\": \"insegu\",\n  \"inseguita\": \"insegu\",\n  \"inseguitemi\": \"inseguitem\",\n  \"inseguito\": \"insegu\",\n  \"inseguitori\": \"inseguitor\",\n  \"inseguiva\": \"insegu\",\n  \"insensata\": \"insens\",\n  \"insensatezza\": \"insensatezz\",\n  \"insensati\": \"insens\",\n  \"insensato\": \"insens\",\n  \"insensibilità\": \"insensibil\",\n  \"inseparabili\": \"insepar\",\n  \"insepolti\": \"insepolt\",\n  \"inserendo\": \"inser\",\n  \"inserimento\": \"inser\",\n  \"inserire\": \"inser\",\n  \"inserirsi\": \"inser\",\n  \"inserisce\": \"inser\",\n  \"inseriscono\": \"inser\",\n  \"inserita\": \"inser\",\n  \"inserite\": \"inser\",\n  \"inseriti\": \"inser\",\n  \"inserito\": \"inser\",\n  \"insicurezze\": \"insicurezz\",\n  \"insicuro\": \"insicur\",\n  \"insidia\": \"insid\",\n  \"insidiare\": \"insid\",\n  \"insidiati\": \"insid\",\n  \"insidie\": \"insid\",\n  \"insidiosi\": \"insid\",\n  \"insiem\": \"insiem\",\n  \"insieme\": \"insiem\",\n  \"insigne\": \"insign\",\n  \"insigni\": \"insign\",\n  \"insinuando\": \"insinu\",\n  \"insinuare\": \"insinu\",\n  \"insinuargli\": \"insinu\",\n  \"insinuazione\": \"insinu\",\n  \"insinuazioni\": \"insinu\",\n  \"insipienza\": \"insipient\",\n  \"insiste\": \"insist\",\n  \"insistendo\": \"insist\",\n  \"insistente\": \"insistent\",\n  \"insistenti\": \"insistent\",\n  \"insistenza\": \"insistent\",\n  \"insistenze\": \"insistent\",\n  \"insistere\": \"insist\",\n  \"insistette\": \"insistett\",\n  \"insisteva\": \"insist\",\n  \"insistito\": \"insist\",\n  \"insita\": \"insit\",\n  \"insite\": \"insit\",\n  \"insoddisfacente\": \"insoddisfacent\",\n  \"insoddisfatto\": \"insoddisfatt\",\n  \"insolente\": \"insolent\",\n  \"insolenza\": \"insolent\",\n  \"insolita\": \"insol\",\n  \"insoliti\": \"insol\",\n  \"insolito\": \"insol\",\n  \"insolvente\": \"insolvent\",\n  \"insoma\": \"insom\",\n  \"insomma\": \"insomm\",\n  \"insonne\": \"insonn\",\n  \"insopportabile\": \"insopport\",\n  \"insopportabili\": \"insopport\",\n  \"insopportabilità\": \"insopport\",\n  \"insopprimibile\": \"insopprim\",\n  \"insorgere\": \"insorg\",\n  \"insorgevano\": \"insorg\",\n  \"insormontabili\": \"insormont\",\n  \"insospettì\": \"insospett\",\n  \"insospettito\": \"insospett\",\n  \"insostenibile\": \"insosten\",\n  \"insostituibile\": \"insostitu\",\n  \"insperato\": \"insper\",\n  \"inspiegabili\": \"inspieg\",\n  \"inspiegabilmente\": \"inspiegabil\",\n  \"instabile\": \"instabil\",\n  \"installando\": \"install\",\n  \"installare\": \"install\",\n  \"installata\": \"install\",\n  \"installate\": \"install\",\n  \"installato\": \"install\",\n  \"installazione\": \"install\",\n  \"instancabile\": \"instanc\",\n  \"instaurare\": \"instaur\",\n  \"instaurati\": \"instaur\",\n  \"instauratosi\": \"instaurat\",\n  \"institute\": \"instit\",\n  \"insuccessi\": \"insuccess\",\n  \"insuccesso\": \"insuccess\",\n  \"insufficiente\": \"insufficient\",\n  \"insufficienti\": \"insufficient\",\n  \"insufficienza\": \"insufficient\",\n  \"insulino\": \"insulin\",\n  \"insulso\": \"insuls\",\n  \"insultare\": \"insult\",\n  \"insultata\": \"insult\",\n  \"insultati\": \"insult\",\n  \"insultato\": \"insult\",\n  \"insulti\": \"insult\",\n  \"insulto\": \"insult\",\n  \"insuperabile\": \"insuper\",\n  \"insuperabili\": \"insuper\",\n  \"insurrezione\": \"insurrezion\",\n  \"int\": \"int\",\n  \"intaccando\": \"intacc\",\n  \"intaccati\": \"intacc\",\n  \"intaccato\": \"intacc\",\n  \"intagliata\": \"intagl\",\n  \"intanto\": \"intant\",\n  \"intarlate\": \"intarl\",\n  \"intarlato\": \"intarl\",\n  \"intasate\": \"intas\",\n  \"intasavano\": \"intas\",\n  \"intasca\": \"intasc\",\n  \"intascavano\": \"intasc\",\n  \"intatta\": \"intatt\",\n  \"intatti\": \"intatt\",\n  \"integrale\": \"integral\",\n  \"integralismo\": \"integral\",\n  \"integralisti\": \"integral\",\n  \"integralmete\": \"integralm\",\n  \"integrante\": \"integr\",\n  \"integrare\": \"integr\",\n  \"integrata\": \"integr\",\n  \"integrate\": \"integr\",\n  \"integrative\": \"integr\",\n  \"integrativi\": \"integr\",\n  \"integrazione\": \"integr\",\n  \"intel\": \"intel\",\n  \"intelettuali\": \"intelettual\",\n  \"intelletti\": \"intellett\",\n  \"intelletto\": \"intellett\",\n  \"intellettuali\": \"intellettual\",\n  \"intelligence\": \"intelligenc\",\n  \"intelligenza\": \"intelligent\",\n  \"intemperanza\": \"intemper\",\n  \"intemperie\": \"intemper\",\n  \"intempestiva\": \"intempest\",\n  \"intenda\": \"intend\",\n  \"intendano\": \"intend\",\n  \"intende\": \"intend\",\n  \"intendendo\": \"intend\",\n  \"intender\": \"intender\",\n  \"intenderà\": \"intend\",\n  \"intenderanno\": \"intend\",\n  \"intenderci\": \"intend\",\n  \"intendere\": \"intend\",\n  \"intenderebbe\": \"intend\",\n  \"intenderle\": \"intend\",\n  \"intenderli\": \"intend\",\n  \"intendermi\": \"intend\",\n  \"intendersi\": \"intend\",\n  \"intendesse\": \"intendess\",\n  \"intendeste\": \"intendest\",\n  \"intendete\": \"intend\",\n  \"intendetela\": \"intendetel\",\n  \"intendeva\": \"intend\",\n  \"intendevano\": \"intend\",\n  \"intendi\": \"intend\",\n  \"intendiamo\": \"intend\",\n  \"intendiamoci\": \"intendiamoc\",\n  \"intendimento\": \"intend\",\n  \"intendo\": \"intend\",\n  \"intendon\": \"intendon\",\n  \"intendono\": \"intend\",\n  \"intenerire\": \"intener\",\n  \"intenerita\": \"intener\",\n  \"intenerito\": \"intener\",\n  \"intensa\": \"intens\",\n  \"intensamente\": \"intens\",\n  \"intensi\": \"intens\",\n  \"intensificano\": \"intensific\",\n  \"intensificarsi\": \"intensific\",\n  \"intensificazione\": \"intensif\",\n  \"intensità\": \"intens\",\n  \"intenso\": \"intens\",\n  \"intenta\": \"intent\",\n  \"intento\": \"intent\",\n  \"intenzion\": \"intenzion\",\n  \"intenzionati\": \"intenzion\",\n  \"intenzionato\": \"intenzion\",\n  \"intenzione\": \"intenzion\",\n  \"intenzioni\": \"intenzion\",\n  \"intepretata\": \"intepret\",\n  \"inter\": \"inter\",\n  \"intera\": \"inter\",\n  \"interamente\": \"inter\",\n  \"interamericana\": \"interamerican\",\n  \"interaziendale\": \"interaziendal\",\n  \"interb\": \"interb\",\n  \"interbanca\": \"interbanc\",\n  \"interbancaria\": \"interbancar\",\n  \"intercedeva\": \"interced\",\n  \"intercession\": \"intercession\",\n  \"intercessione\": \"intercession\",\n  \"intercettazione\": \"intercett\",\n  \"intercettazioni\": \"intercett\",\n  \"intercolunni\": \"intercolunn\",\n  \"intercomunali\": \"intercomunal\",\n  \"intercomuncali\": \"intercomuncal\",\n  \"interconnessa\": \"interconness\",\n  \"interconnesse\": \"interconness\",\n  \"interdire\": \"interd\",\n  \"intere\": \"inter\",\n  \"interessa\": \"interess\",\n  \"interessando\": \"interess\",\n  \"interessano\": \"interess\",\n  \"interessante\": \"interess\",\n  \"interessanti\": \"interess\",\n  \"interessasse\": \"interess\",\n  \"interessata\": \"interess\",\n  \"interessate\": \"interess\",\n  \"interessati\": \"interess\",\n  \"interessatissimo\": \"interessatissim\",\n  \"interessato\": \"interess\",\n  \"interessava\": \"interess\",\n  \"interesse\": \"interess\",\n  \"interesserà\": \"interess\",\n  \"interessi\": \"interess\",\n  \"interfax\": \"interfax\",\n  \"interferire\": \"interfer\",\n  \"intergovernativa\": \"intergovern\",\n  \"interi\": \"inter\",\n  \"interiezione\": \"interiezion\",\n  \"interinale\": \"interinal\",\n  \"interiore\": \"interior\",\n  \"interista\": \"inter\",\n  \"interisti\": \"inter\",\n  \"interlocutore\": \"interlocutor\",\n  \"interlocutori\": \"interlocutor\",\n  \"interlocutoria\": \"interlocutor\",\n  \"interlocuzione\": \"interlocu\",\n  \"intermedi\": \"intermed\",\n  \"intermediari\": \"intermediar\",\n  \"intermediario\": \"intermediar\",\n  \"intermezi\": \"intermez\",\n  \"interminate\": \"intermin\",\n  \"intermissione\": \"intermission\",\n  \"intermittenti\": \"intermittent\",\n  \"intermobiliare\": \"intermobil\",\n  \"intermoney\": \"intermoney\",\n  \"intern\": \"intern\",\n  \"interna\": \"intern\",\n  \"internandosi\": \"intern\",\n  \"internarsi\": \"intern\",\n  \"internatì\": \"internat\",\n  \"internato\": \"intern\",\n  \"internaz\": \"internaz\",\n  \"internazion\": \"internazion\",\n  \"internazionale\": \"internazional\",\n  \"internazionalè\": \"internazional\",\n  \"internazionali\": \"internazional\",\n  \"internazionalismo\": \"internazional\",\n  \"interne\": \"intern\",\n  \"internet\": \"internet\",\n  \"interni\": \"intern\",\n  \"interno\": \"intern\",\n  \"intero\": \"inter\",\n  \"interotto\": \"interott\",\n  \"interpella\": \"interpell\",\n  \"interpellata\": \"interpell\",\n  \"interpellati\": \"interpell\",\n  \"interpellato\": \"interpell\",\n  \"interplanetari\": \"interplanetar\",\n  \"interpreta\": \"interpret\",\n  \"interpretando\": \"interpret\",\n  \"interpretano\": \"interpret\",\n  \"interpretar\": \"interpret\",\n  \"interpretare\": \"interpret\",\n  \"interpretate\": \"interpret\",\n  \"interpretati\": \"interpret\",\n  \"interpretativi\": \"interpret\",\n  \"interpretato\": \"interpret\",\n  \"interpretazione\": \"interpret\",\n  \"interpretazioni\": \"interpret\",\n  \"interprete\": \"interpr\",\n  \"interpreterà\": \"interpret\",\n  \"interpreti\": \"interpret\",\n  \"interroga\": \"interrog\",\n  \"interrogando\": \"interrog\",\n  \"interrogante\": \"interrog\",\n  \"interrogare\": \"interrog\",\n  \"interrogarla\": \"interrog\",\n  \"interrogarsi\": \"interrog\",\n  \"interrogata\": \"interrog\",\n  \"interrogate\": \"interrog\",\n  \"interrogati\": \"interrog\",\n  \"interrogativi\": \"interrog\",\n  \"interrogativo\": \"interrog\",\n  \"interrogato\": \"interrog\",\n  \"interrogatore\": \"interrog\",\n  \"interrogatori\": \"interrog\",\n  \"interrogatòri\": \"interrogatòr\",\n  \"interrogatorio\": \"interrogator\",\n  \"interrogava\": \"interrog\",\n  \"interrogavano\": \"interrog\",\n  \"interrogazione\": \"interrog\",\n  \"interrogazioni\": \"interrog\",\n  \"interrogò\": \"interrog\",\n  \"interrompendo\": \"interromp\",\n  \"interrompendolo\": \"interromp\",\n  \"interrompere\": \"interromp\",\n  \"interrompeva\": \"interromp\",\n  \"interrotta\": \"interrott\",\n  \"interrotte\": \"interrott\",\n  \"interrotti\": \"interrott\",\n  \"interrotto\": \"interrott\",\n  \"interruppe\": \"interrupp\",\n  \"interruppero\": \"interrupper\",\n  \"interruzione\": \"interru\",\n  \"interruzioni\": \"interru\",\n  \"interscambio\": \"interscamb\",\n  \"intersind\": \"intersind\",\n  \"intersos\": \"intersos\",\n  \"interssi\": \"interss\",\n  \"interurbani\": \"interurban\",\n  \"intervallare\": \"intervall\",\n  \"intervalli\": \"intervall\",\n  \"intervallo\": \"intervall\",\n  \"intervenendo\": \"interven\",\n  \"intervenga\": \"interveng\",\n  \"intervenire\": \"interven\",\n  \"intervenirvi\": \"interven\",\n  \"interventi\": \"intervent\",\n  \"intervento\": \"intervent\",\n  \"intervenuta\": \"interven\",\n  \"intervenute\": \"interven\",\n  \"intervenuti\": \"interven\",\n  \"intervenuto\": \"interven\",\n  \"interverrà\": \"interverr\",\n  \"interverranno\": \"interverrann\",\n  \"interviene\": \"intervien\",\n  \"intervista\": \"interv\",\n  \"intervistando\": \"intervist\",\n  \"intervistarlo\": \"intervist\",\n  \"intervistati\": \"intervist\",\n  \"intervistato\": \"intervist\",\n  \"interviste\": \"interv\",\n  \"intesa\": \"intes\",\n  \"intese\": \"intes\",\n  \"inteso\": \"intes\",\n  \"intestata\": \"intest\",\n  \"intestato\": \"intest\",\n  \"intima\": \"intim\",\n  \"intimar\": \"intim\",\n  \"intimargli\": \"intim\",\n  \"intimarono\": \"intim\",\n  \"intimarvi\": \"intim\",\n  \"intimate\": \"intim\",\n  \"intimato\": \"intim\",\n  \"intimatogli\": \"intimatogl\",\n  \"intimava\": \"intim\",\n  \"intimavan\": \"intimavan\",\n  \"intimazione\": \"intim\",\n  \"intimazioni\": \"intim\",\n  \"intimi\": \"intim\",\n  \"intimità\": \"intim\",\n  \"intimo\": \"intim\",\n  \"intimò\": \"intim\",\n  \"intirizzir\": \"intirizz\",\n  \"intirizzito\": \"intirizz\",\n  \"intitolato\": \"intitol\",\n  \"intollerabile\": \"intoller\",\n  \"intollerabili\": \"intoller\",\n  \"intolleranza\": \"intoller\",\n  \"intonacati\": \"intonac\",\n  \"intonar\": \"inton\",\n  \"intonare\": \"inton\",\n  \"intonato\": \"inton\",\n  \"intonazione\": \"inton\",\n  \"intonò\": \"inton\",\n  \"intoppi\": \"intopp\",\n  \"intoppo\": \"intopp\",\n  \"intorbidando\": \"intorbid\",\n  \"intorbidarla\": \"intorbid\",\n  \"intorbidarsi\": \"intorbid\",\n  \"intormentite\": \"intorment\",\n  \"intorno\": \"intorn\",\n  \"intossicazione\": \"intoss\",\n  \"intra\": \"intra\",\n  \"intralciano\": \"intralc\",\n  \"intralciarono\": \"intralc\",\n  \"intralciata\": \"intralc\",\n  \"intralciate\": \"intralc\",\n  \"intralciati\": \"intralc\",\n  \"intralciato\": \"intralc\",\n  \"intransigente\": \"intransigent\",\n  \"intransigenti\": \"intransigent\",\n  \"intraprendenti\": \"intraprendent\",\n  \"intraprendenza\": \"intraprendent\",\n  \"intraprender\": \"intraprender\",\n  \"intraprendere\": \"intraprend\",\n  \"intrapresa\": \"intrapres\",\n  \"intraprese\": \"intrapres\",\n  \"intrapreso\": \"intrapres\",\n  \"intrattabili\": \"intratt\",\n  \"intrattenersi\": \"intratten\",\n  \"intrattenuta\": \"intratten\",\n  \"intrattenuto\": \"intratten\",\n  \"intrecciate\": \"intrecc\",\n  \"intrecciati\": \"intrecc\",\n  \"intreccio\": \"intrecc\",\n  \"intreodurre\": \"intreodurr\",\n  \"intrepidezza\": \"intrepidezz\",\n  \"intrepidi\": \"intrepid\",\n  \"intrepido\": \"intrepid\",\n  \"intridere\": \"intrid\",\n  \"intriga\": \"intrig\",\n  \"intrigando\": \"intrig\",\n  \"intrigato\": \"intrig\",\n  \"intrighi\": \"intrig\",\n  \"intrigo\": \"intrig\",\n  \"intrinsichezza\": \"intrinsichezz\",\n  \"intrise\": \"intris\",\n  \"intro\": \"intro\",\n  \"introbbio\": \"introbb\",\n  \"introdotta\": \"introdott\",\n  \"introdotte\": \"introdott\",\n  \"introdotti\": \"introdott\",\n  \"introdotto\": \"introdott\",\n  \"introduca\": \"introduc\",\n  \"introduce\": \"introduc\",\n  \"introducendo\": \"introduc\",\n  \"introducendone\": \"introduc\",\n  \"introduceva\": \"introduc\",\n  \"introducevano\": \"introduc\",\n  \"introdurle\": \"introdurl\",\n  \"introdurlo\": \"introdurl\",\n  \"introdurre\": \"introdurr\",\n  \"introdursi\": \"introdurs\",\n  \"introdurvi\": \"introdurv\",\n  \"introdusse\": \"introduss\",\n  \"introduttiva\": \"introdutt\",\n  \"introduzione\": \"introdu\",\n  \"intromesso\": \"intromess\",\n  \"intromette\": \"intromett\",\n  \"intromettermi\": \"intromett\",\n  \"intromettersi\": \"intromett\",\n  \"intrometteva\": \"intromett\",\n  \"intuisce\": \"intu\",\n  \"intuito\": \"intu\",\n  \"inuguale\": \"inugual\",\n  \"inuguali\": \"inugual\",\n  \"inumiditi\": \"inumid\",\n  \"inusuale\": \"inusual\",\n  \"inutile\": \"inutil\",\n  \"inutili\": \"inutil\",\n  \"inutilmente\": \"inutil\",\n  \"invadere\": \"invad\",\n  \"invadeva\": \"invad\",\n  \"invaghito\": \"invag\",\n  \"invalicabile\": \"invalic\",\n  \"invalida\": \"invalid\",\n  \"invalidità\": \"invalid\",\n  \"invanisce\": \"invan\",\n  \"invano\": \"invan\",\n  \"invariate\": \"invar\",\n  \"invariati\": \"invar\",\n  \"invariato\": \"invar\",\n  \"invase\": \"invas\",\n  \"invasero\": \"invaser\",\n  \"invasi\": \"invas\",\n  \"invasion\": \"invasion\",\n  \"invasione\": \"invasion\",\n  \"invaso\": \"invas\",\n  \"invasore\": \"invasor\",\n  \"invasori\": \"invasor\",\n  \"invecchiare\": \"invecc\",\n  \"invecchiati\": \"invecc\",\n  \"invecchiato\": \"invecc\",\n  \"invece\": \"invec\",\n  \"inveire\": \"inve\",\n  \"inveisce\": \"inve\",\n  \"inveito\": \"inve\",\n  \"invelenita\": \"invelen\",\n  \"inventano\": \"invent\",\n  \"inventare\": \"invent\",\n  \"inventarsi\": \"invent\",\n  \"inventata\": \"invent\",\n  \"inventate\": \"invent\",\n  \"inventi\": \"invent\",\n  \"inventus\": \"inventus\",\n  \"invenzione\": \"invenzion\",\n  \"invenzioni\": \"invenzion\",\n  \"inverigo\": \"inverig\",\n  \"invernale\": \"invernal\",\n  \"invernali\": \"invernal\",\n  \"inverni\": \"invern\",\n  \"invernizzi\": \"invernizz\",\n  \"inverno\": \"invern\",\n  \"inversione\": \"inversion\",\n  \"inverta\": \"invert\",\n  \"invertite\": \"invert\",\n  \"investa\": \"invest\",\n  \"investe\": \"invest\",\n  \"investendo\": \"invest\",\n  \"investigativa\": \"investig\",\n  \"investigative\": \"investig\",\n  \"investigatori\": \"investig\",\n  \"investigazione\": \"investig\",\n  \"investigazioni\": \"investig\",\n  \"investimenti\": \"invest\",\n  \"investimento\": \"invest\",\n  \"investimese\": \"investimes\",\n  \"investire\": \"invest\",\n  \"investisse\": \"investiss\",\n  \"investiti\": \"invest\",\n  \"investito\": \"invest\",\n  \"investitori\": \"investitor\",\n  \"investitura\": \"investitur\",\n  \"investiva\": \"invest\",\n  \"investment\": \"investment\",\n  \"inveterate\": \"inveter\",\n  \"inveterato\": \"inveter\",\n  \"invettiva\": \"invett\",\n  \"invevitabile\": \"invevit\",\n  \"invia\": \"invi\",\n  \"inviando\": \"invi\",\n  \"inviare\": \"invi\",\n  \"inviata\": \"invi\",\n  \"inviatagli\": \"inviatagl\",\n  \"inviate\": \"invi\",\n  \"inviati\": \"invi\",\n  \"inviatì\": \"inviat\",\n  \"inviato\": \"invi\",\n  \"invicta\": \"invict\",\n  \"invidia\": \"invid\",\n  \"invidiabile\": \"invid\",\n  \"invidiabili\": \"invid\",\n  \"invidiando\": \"invid\",\n  \"invidiandole\": \"invid\",\n  \"invidiata\": \"invid\",\n  \"invidiava\": \"invid\",\n  \"invidie\": \"invid\",\n  \"invidioso\": \"invid\",\n  \"invigilare\": \"invigil\",\n  \"invigilavano\": \"invigil\",\n  \"invii\": \"invi\",\n  \"invincibilmente\": \"invincibil\",\n  \"invio\": \"invi\",\n  \"inviolabile\": \"inviol\",\n  \"inviolato\": \"inviol\",\n  \"invischiato\": \"invisc\",\n  \"invisibile\": \"invis\",\n  \"invisibilè\": \"invisibil\",\n  \"invisibili\": \"invis\",\n  \"invita\": \"invit\",\n  \"invitando\": \"invit\",\n  \"invitante\": \"invit\",\n  \"invitare\": \"invit\",\n  \"invitarla\": \"invit\",\n  \"invitarlo\": \"invit\",\n  \"invitarono\": \"invit\",\n  \"invitata\": \"invit\",\n  \"invitati\": \"invit\",\n  \"invitato\": \"invit\",\n  \"invitava\": \"invit\",\n  \"inviti\": \"invit\",\n  \"invito\": \"invit\",\n  \"invitò\": \"invit\",\n  \"invitta\": \"invitt\",\n  \"invoca\": \"invoc\",\n  \"invocano\": \"invoc\",\n  \"invocar\": \"invoc\",\n  \"invocare\": \"invoc\",\n  \"invocato\": \"invoc\",\n  \"invocazione\": \"invoc\",\n  \"invochiamo\": \"invoc\",\n  \"invogliati\": \"invogl\",\n  \"invogliava\": \"invogl\",\n  \"involandosi\": \"invol\",\n  \"involontaria\": \"involontar\",\n  \"involontariamente\": \"involontar\",\n  \"involta\": \"involt\",\n  \"involtati\": \"involt\",\n  \"involtato\": \"involt\",\n  \"involte\": \"involt\",\n  \"involtino\": \"involtin\",\n  \"involto\": \"involt\",\n  \"involuzione\": \"involu\",\n  \"inxs\": \"inxs\",\n  \"inzaccherassero\": \"inzaccher\",\n  \"inzaghi\": \"inzag\",\n  \"inziativa\": \"inziat\",\n  \"inziative\": \"inziat\",\n  \"inzio\": \"inzi\",\n  \"inzuppata\": \"inzupp\",\n  \"inzuppate\": \"inzupp\",\n  \"inzuppato\": \"inzupp\",\n  \"io\": \"io\",\n  \"ioniche\": \"ionic\",\n  \"ionici\": \"ionic\",\n  \"ionio\": \"ion\",\n  \"ionta\": \"iont\",\n  \"iosa\": \"ios\",\n  \"iourt\": \"iourt\",\n  \"iper\": \"iper\",\n  \"ipertrofia\": \"ipertrof\",\n  \"ipi\": \"ipi\",\n  \"ipnotico\": \"ipnot\",\n  \"ipocrisia\": \"ipocris\",\n  \"ipocrita\": \"ipocr\",\n  \"ipocrite\": \"ipocr\",\n  \"ipofisi\": \"ipofis\",\n  \"ipotesi\": \"ipotes\",\n  \"ipotizza\": \"ipotizz\",\n  \"ipotizzare\": \"ipotizz\",\n  \"ipotizzato\": \"ipotizz\",\n  \"ipotizzava\": \"ipotizz\",\n  \"ippiche\": \"ippic\",\n  \"ipsa\": \"ipsa\",\n  \"ipsilon\": \"ipsilon\",\n  \"ir\": \"ir\",\n  \"ira\": \"ira\",\n  \"irachena\": \"irachen\",\n  \"iracheno\": \"irachen\",\n  \"iraconda\": \"iracond\",\n  \"iracondo\": \"iracond\",\n  \"iran\": \"iran\",\n  \"iraniana\": \"iranian\",\n  \"iraniano\": \"iran\",\n  \"iraq\": \"iraq\",\n  \"ire\": \"ire\",\n  \"irene\": \"iren\",\n  \"irfis\": \"irfis\",\n  \"iri\": \"iri\",\n  \"irina\": \"irin\",\n  \"irlanda\": \"irland\",\n  \"irlandese\": \"irlandes\",\n  \"irna\": \"irna\",\n  \"irnà\": \"irnà\",\n  \"ironia\": \"iron\",\n  \"ironicamente\": \"iron\",\n  \"ironico\": \"iron\",\n  \"irpef\": \"irpef\",\n  \"irpeg\": \"irpeg\",\n  \"irpino\": \"irpin\",\n  \"irragionevole\": \"irragionevol\",\n  \"irrazionali\": \"irrazional\",\n  \"irrefragabile\": \"irrefrag\",\n  \"irregolare\": \"irregol\",\n  \"irregolari\": \"irregolar\",\n  \"irregolarità\": \"irregolar\",\n  \"irremovibile\": \"irremov\",\n  \"irreparabile\": \"irrepar\",\n  \"irreprensibile\": \"irreprens\",\n  \"irresistibile\": \"irresist\",\n  \"irresolutezza\": \"irresolutezz\",\n  \"irresoluto\": \"irresol\",\n  \"irresoluzione\": \"irresolu\",\n  \"irrespirabili\": \"irrespir\",\n  \"irresponsabile\": \"irrespons\",\n  \"irresponsabili\": \"irrespons\",\n  \"irresponsabilità\": \"irrespons\",\n  \"irreversibile\": \"irrevers\",\n  \"irreversibilmente\": \"irreversibil\",\n  \"irrevocabile\": \"irrevoc\",\n  \"irrevocabilmente\": \"irrevocabil\",\n  \"irriducibili\": \"irriduc\",\n  \"irrigate\": \"irrig\",\n  \"irrilevante\": \"irrilev\",\n  \"irrisa\": \"irris\",\n  \"irrisolti\": \"irrisolt\",\n  \"irritante\": \"irrit\",\n  \"irritarsi\": \"irrit\",\n  \"irritata\": \"irrit\",\n  \"irritati\": \"irrit\",\n  \"irritato\": \"irrit\",\n  \"irrituale\": \"irritual\",\n  \"irritualità\": \"irritual\",\n  \"irrogate\": \"irrog\",\n  \"irruenza\": \"irruenz\",\n  \"irruzione\": \"irruzion\",\n  \"irsute\": \"irsut\",\n  \"irti\": \"irti\",\n  \"isabel\": \"isabel\",\n  \"isaia\": \"isai\",\n  \"isalmici\": \"isalm\",\n  \"isbaglio\": \"isbagl\",\n  \"isbieco\": \"isbiec\",\n  \"isbrigarsi\": \"isbrig\",\n  \"iscacci\": \"iscacc\",\n  \"iscacciar\": \"iscacc\",\n  \"iscandolo\": \"iscandol\",\n  \"iscansar\": \"iscans\",\n  \"iscansare\": \"iscans\",\n  \"iscansarli\": \"iscans\",\n  \"iscapitarci\": \"iscapit\",\n  \"iscapolarsene\": \"iscapol\",\n  \"iscappasse\": \"iscapp\",\n  \"iscapperà\": \"iscapp\",\n  \"isceglier\": \"isceglier\",\n  \"ischerno\": \"ischern\",\n  \"ischerzo\": \"ischerz\",\n  \"ischia\": \"ischi\",\n  \"ischiamazzi\": \"ischiamazz\",\n  \"ischiera\": \"ischier\",\n  \"ischiuma\": \"ischium\",\n  \"isconficcarla\": \"isconficc\",\n  \"iscontare\": \"iscont\",\n  \"isconto\": \"iscont\",\n  \"iscoprire\": \"iscopr\",\n  \"iscoprite\": \"iscopr\",\n  \"iscorgendo\": \"iscorg\",\n  \"iscritta\": \"iscritt\",\n  \"iscritte\": \"iscritt\",\n  \"iscritti\": \"iscritt\",\n  \"iscritto\": \"iscritt\",\n  \"iscrivendo\": \"iscriv\",\n  \"iscriver\": \"iscriver\",\n  \"iscriversi\": \"iscriv\",\n  \"iscrizioni\": \"iscrizion\",\n  \"iscusa\": \"iscus\",\n  \"ise\": \"ise\",\n  \"isefi\": \"isef\",\n  \"isfogarsi\": \"isfog\",\n  \"isfoggiar\": \"isfogg\",\n  \"isgarbatezze\": \"isgarbatezz\",\n  \"isgravarsi\": \"isgrav\",\n  \"isguardi\": \"isguard\",\n  \"isguardo\": \"isguard\",\n  \"isgusciar\": \"isgusc\",\n  \"isla\": \"isla\",\n  \"islam\": \"islam\",\n  \"islamabad\": \"islamabad\",\n  \"islami\": \"islam\",\n  \"islamica\": \"islam\",\n  \"islamicà\": \"islamic\",\n  \"islamici\": \"islam\",\n  \"islamico\": \"islam\",\n  \"islamiya\": \"islamiy\",\n  \"islanciarsi\": \"islanc\",\n  \"island\": \"island\",\n  \"ismanie\": \"isman\",\n  \"ismarrita\": \"ismarr\",\n  \"ismettere\": \"ismett\",\n  \"ismovere\": \"ismov\",\n  \"isola\": \"isol\",\n  \"isolamento\": \"isol\",\n  \"isolare\": \"isol\",\n  \"isolata\": \"isol\",\n  \"isolato\": \"isol\",\n  \"isole\": \"isol\",\n  \"ispalla\": \"ispall\",\n  \"ispaventi\": \"ispavent\",\n  \"ispavento\": \"ispavent\",\n  \"ispecie\": \"ispec\",\n  \"ispegnerla\": \"ispegn\",\n  \"ispenderli\": \"ispend\",\n  \"ispesare\": \"ispes\",\n  \"ispettorato\": \"ispettor\",\n  \"ispettore\": \"ispettor\",\n  \"ispettori\": \"ispettor\",\n  \"ispezionato\": \"ispezion\",\n  \"ispianate\": \"ispian\",\n  \"ispiar\": \"ispi\",\n  \"ispidi\": \"ispid\",\n  \"ispiegarlo\": \"ispieg\",\n  \"ispinger\": \"ispinger\",\n  \"ispingerla\": \"isping\",\n  \"ispira\": \"ispir\",\n  \"ispirandogli\": \"ispir\",\n  \"ispirandosi\": \"ispir\",\n  \"ispirano\": \"ispir\",\n  \"ispirasse\": \"ispir\",\n  \"ispirata\": \"ispir\",\n  \"ispirato\": \"ispir\",\n  \"ispiratore\": \"ispir\",\n  \"ispiratori\": \"ispir\",\n  \"ispirazione\": \"ispir\",\n  \"ispirazioni\": \"ispir\",\n  \"isporca\": \"isporc\",\n  \"israele\": \"israel\",\n  \"israeliana\": \"israelian\",\n  \"israeliane\": \"israelian\",\n  \"israeliani\": \"israelian\",\n  \"israeliano\": \"israel\",\n  \"ist\": \"ist\",\n  \"istà\": \"istà\",\n  \"istaccarsi\": \"istacc\",\n  \"istai\": \"ista\",\n  \"istallata\": \"istall\",\n  \"istallato\": \"istall\",\n  \"istampa\": \"istamp\",\n  \"istanbul\": \"istanbul\",\n  \"istantanea\": \"istantane\",\n  \"istantaneo\": \"istantane\",\n  \"istante\": \"istant\",\n  \"istanti\": \"istant\",\n  \"istanza\": \"istanz\",\n  \"istanze\": \"istanz\",\n  \"istar\": \"istar\",\n  \"istare\": \"istar\",\n  \"istareste\": \"istarest\",\n  \"istat\": \"istat\",\n  \"istate\": \"istat\",\n  \"istato\": \"istat\",\n  \"istava\": \"istav\",\n  \"isteriliscono\": \"isteril\",\n  \"istessa\": \"istess\",\n  \"istesso\": \"istess\",\n  \"istette\": \"istett\",\n  \"istia\": \"isti\",\n  \"istigatori\": \"istig\",\n  \"istigazione\": \"istig\",\n  \"istile\": \"istil\",\n  \"istillar\": \"istill\",\n  \"istinti\": \"istint\",\n  \"istintiva\": \"istint\",\n  \"istinto\": \"istint\",\n  \"istitituito\": \"istititu\",\n  \"istituiranno\": \"istitu\",\n  \"istituire\": \"istitu\",\n  \"istituisse\": \"istituiss\",\n  \"istituito\": \"istitu\",\n  \"istituti\": \"istit\",\n  \"istituto\": \"istit\",\n  \"istitutori\": \"istitutor\",\n  \"istituzionale\": \"istituzional\",\n  \"istituzionali\": \"istituzional\",\n  \"istituzione\": \"istitu\",\n  \"istituzioni\": \"istitu\",\n  \"istizza\": \"istizz\",\n  \"istoriando\": \"istor\",\n  \"istoriografo\": \"istoriograf\",\n  \"istornar\": \"istorn\",\n  \"istrada\": \"istrad\",\n  \"istradamento\": \"istrad\",\n  \"istrade\": \"istrad\",\n  \"istrane\": \"istran\",\n  \"istrascinarlo\": \"istrascin\",\n  \"istrepito\": \"istrep\",\n  \"istria\": \"istri\",\n  \"istriana\": \"istrian\",\n  \"istrida\": \"istrid\",\n  \"istro\": \"istro\",\n  \"istruirsi\": \"istru\",\n  \"istruita\": \"istru\",\n  \"istruiti\": \"istru\",\n  \"istruiva\": \"istru\",\n  \"istrumento\": \"istrument\",\n  \"istruttore\": \"istruttor\",\n  \"istruttoria\": \"istruttor\",\n  \"istruttorio\": \"istruttor\",\n  \"istruzione\": \"istruzion\",\n  \"istruzioni\": \"istruzion\",\n  \"istudiare\": \"istud\",\n  \"istudiarvi\": \"istud\",\n  \"isvap\": \"isvap\",\n  \"isvegliarsi\": \"isvegl\",\n  \"isventura\": \"isventur\",\n  \"isvim\": \"isvim\",\n  \"it\": \"it\",\n  \"ita\": \"ita\",\n  \"ital\": \"ital\",\n  \"italc\": \"italc\",\n  \"italcem\": \"italcem\",\n  \"italcementi\": \"italcement\",\n  \"italgas\": \"italgas\",\n  \"italia\": \"ital\",\n  \"italiana\": \"italian\",\n  \"italiane\": \"italian\",\n  \"italiani\": \"italian\",\n  \"italiano\": \"ital\",\n  \"italimpianti\": \"italimp\",\n  \"italm\": \"italm\",\n  \"italmob\": \"italmob\",\n  \"italmobil\": \"italmobil\",\n  \"italmobiliare\": \"italmobil\",\n  \"italmoney\": \"italmoney\",\n  \"italo\": \"ital\",\n  \"italy\": \"italy\",\n  \"itar\": \"itar\",\n  \"itat\": \"itat\",\n  \"itc\": \"itc\",\n  \"itdalia\": \"itdal\",\n  \"iter\": \"iter\",\n  \"itinerari\": \"itinerar\",\n  \"itinerario\": \"itinerar\",\n  \"itmr\": \"itmr\",\n  \"itn\": \"itn\",\n  \"ito\": \"ito\",\n  \"itoh\": \"itoh\",\n  \"ittica\": \"ittic\",\n  \"ittiche\": \"ittic\",\n  \"ittici\": \"ittic\",\n  \"itumkalinsk\": \"itumkalinsk\",\n  \"iu\": \"iu\",\n  \"iualiano\": \"iual\",\n  \"iugoslavia\": \"iugoslav\",\n  \"iui\": \"iui\",\n  \"iuri\": \"iur\",\n  \"iurt\": \"iurt\",\n  \"iurtovsk\": \"iurtovsk\",\n  \"iv\": \"iv\",\n  \"iva\": \"iva\",\n  \"ivan\": \"ivan\",\n  \"ivana\": \"ivan\",\n  \"ivano\": \"ivan\",\n  \"ivi\": \"ivi\",\n  \"ivimus\": \"ivimus\",\n  \"ivo\": \"ivo\",\n  \"ivory\": \"ivory\",\n  \"ix\": \"ix\",\n  \"izar\": \"izar\",\n  \"izudin\": \"izudin\",\n  \"j\": \"j\",\n  \"jack\": \"jack\",\n  \"jackson\": \"jackson\",\n  \"jacob\": \"jacob\",\n  \"jacobsen\": \"jacobsen\",\n  \"jacqueline\": \"jacquelin\",\n  \"jahan\": \"jahan\",\n  \"jaime\": \"jaim\",\n  \"jamaa\": \"jama\",\n  \"jamaat\": \"jamaat\",\n  \"james\": \"james\",\n  \"jammin\": \"jammin\",\n  \"jan\": \"jan\",\n  \"janata\": \"jan\",\n  \"janeiro\": \"janeir\",\n  \"janet\": \"janet\",\n  \"janez\": \"janez\",\n  \"janni\": \"jann\",\n  \"janowski\": \"janowsk\",\n  \"jansson\": \"jansson\",\n  \"jaqueline\": \"jaquelin\",\n  \"jarni\": \"jarn\",\n  \"javier\": \"javier\",\n  \"jean\": \"jean\",\n  \"jeanne\": \"jeann\",\n  \"jechna\": \"jechn\",\n  \"jeep\": \"jeep\",\n  \"jeff\": \"jeff\",\n  \"jefferson\": \"jefferson\",\n  \"jeleesa\": \"jelees\",\n  \"jemis\": \"jemis\",\n  \"jennifer\": \"jennifer\",\n  \"jenny\": \"jenny\",\n  \"jens\": \"jens\",\n  \"jerry\": \"jerry\",\n  \"jervolino\": \"jervolin\",\n  \"jessica\": \"jessic\",\n  \"jet\": \"jet\",\n  \"jfk\": \"jfk\",\n  \"ji\": \"ji\",\n  \"jiahua\": \"jiahu\",\n  \"jibril\": \"jibril\",\n  \"jihad\": \"jihad\",\n  \"jijel\": \"jijel\",\n  \"jill\": \"jill\",\n  \"jim\": \"jim\",\n  \"jimenez\": \"jimenez\",\n  \"jimmy\": \"jimmy\",\n  \"joachim\": \"joachim\",\n  \"joaquin\": \"joaquin\",\n  \"jocelyn\": \"jocelyn\",\n  \"joe\": \"joe\",\n  \"johan\": \"johan\",\n  \"johann\": \"johann\",\n  \"johannesburg\": \"johannesburg\",\n  \"john\": \"john\",\n  \"johnson\": \"johnson\",\n  \"joint\": \"joint\",\n  \"jolly\": \"jolly\",\n  \"joly\": \"joly\",\n  \"jon\": \"jon\",\n  \"jonas\": \"jonas\",\n  \"jonathan\": \"jonathan\",\n  \"jones\": \"jones\",\n  \"jonk\": \"jonk\",\n  \"jorge\": \"jorg\",\n  \"jose\": \"jos\",\n  \"josè\": \"jos\",\n  \"josef\": \"josef\",\n  \"joseph\": \"joseph\",\n  \"josephi\": \"joseph\",\n  \"jospin\": \"jospin\",\n  \"jr\": \"jr\",\n  \"juan\": \"juan\",\n  \"jugoslavia\": \"jugoslav\",\n  \"jugovic\": \"jugovic\",\n  \"juha\": \"juh\",\n  \"juicio\": \"juic\",\n  \"julia\": \"jul\",\n  \"julian\": \"julian\",\n  \"julie\": \"jul\",\n  \"julieth\": \"julieth\",\n  \"junior\": \"junior\",\n  \"juniores\": \"juniores\",\n  \"juppè\": \"jupp\",\n  \"jure\": \"jur\",\n  \"juta\": \"jut\",\n  \"juve\": \"juv\",\n  \"juventini\": \"juventin\",\n  \"juventus\": \"juventus\",\n  \"k\": \"k\",\n  \"kabariti\": \"kabar\",\n  \"kabul\": \"kabul\",\n  \"kaddoumi\": \"kaddoum\",\n  \"kaelon\": \"kaelon\",\n  \"kakrabar\": \"kakrab\",\n  \"kalà\": \"kal\",\n  \"kalashikov\": \"kalashikov\",\n  \"kalpakkam\": \"kalpakkam\",\n  \"kambia\": \"kamb\",\n  \"kamikazè\": \"kamikaz\",\n  \"kanchanaburi\": \"kanchanabur\",\n  \"kankkunen\": \"kankkunen\",\n  \"kaos\": \"kaos\",\n  \"karachi\": \"karac\",\n  \"karadzic\": \"karadzic\",\n  \"karaoke\": \"karaok\",\n  \"karel\": \"karel\",\n  \"karim\": \"karim\",\n  \"karlsruhe\": \"karlsruh\",\n  \"karlstad\": \"karlstad\",\n  \"kashmir\": \"kashm\",\n  \"kashoggi\": \"kashogg\",\n  \"kastros\": \"kastros\",\n  \"kawashima\": \"kawashim\",\n  \"kazakhstan\": \"kazakhstan\",\n  \"kelly\": \"kelly\",\n  \"kenderson\": \"kenderson\",\n  \"kenia\": \"ken\",\n  \"keniota\": \"keniot\",\n  \"kennedy\": \"kennedy\",\n  \"kenneth\": \"kenneth\",\n  \"kent\": \"kent\",\n  \"kenya\": \"keny\",\n  \"kenyano\": \"keny\",\n  \"kevin\": \"kevin\",\n  \"kfe\": \"kfe\",\n  \"kgb\": \"kgb\",\n  \"khamenei\": \"khamene\",\n  \"khan\": \"khan\",\n  \"khessibia\": \"khessib\",\n  \"khomeini\": \"khomein\",\n  \"khursheed\": \"khursheed\",\n  \"kieslowski\": \"kieslowsk\",\n  \"kiev\": \"kiev\",\n  \"killer\": \"killer\",\n  \"kilmarnock\": \"kilmarnock\",\n  \"kim\": \"kim\",\n  \"king\": \"king\",\n  \"kinnock\": \"kinnock\",\n  \"kioko\": \"kiok\",\n  \"kipkemboi\": \"kipkembo\",\n  \"kipling\": \"kipling\",\n  \"kiptanui\": \"kiptanu\",\n  \"kirsch\": \"kirsc\",\n  \"kisimaio\": \"kisimai\",\n  \"kiwan\": \"kiwan\",\n  \"kladusa\": \"kladus\",\n  \"klaus\": \"klaus\",\n  \"kluge\": \"klug\",\n  \"km\": \"km\",\n  \"ko\": \"ko\",\n  \"kobe\": \"kob\",\n  \"koeman\": \"koeman\",\n  \"kohl\": \"kohl\",\n  \"kohler\": \"kohler\",\n  \"koijam\": \"koijam\",\n  \"kola\": \"kol\",\n  \"koll\": \"koll\",\n  \"kolyvanov\": \"kolyvanov\",\n  \"kong\": \"kong\",\n  \"konishev\": \"konishev\",\n  \"korda\": \"kord\",\n  \"korzhakov\": \"korzhakov\",\n  \"kosarev\": \"kosarev\",\n  \"kosevo\": \"kos\",\n  \"kotov\": \"kotov\",\n  \"kovac\": \"kovac\",\n  \"kowanko\": \"kowank\",\n  \"kozminski\": \"kozminsk\",\n  \"kraftnat\": \"kraftnat\",\n  \"krajina\": \"krajin\",\n  \"krajna\": \"krajn\",\n  \"krasnov\": \"krasnov\",\n  \"kreek\": \"kreek\",\n  \"kris\": \"kris\",\n  \"krsko\": \"krsko\",\n  \"kruja\": \"kruj\",\n  \"krupa\": \"krup\",\n  \"kruz\": \"kruz\",\n  \"krzystof\": \"krzystof\",\n  \"kuala\": \"kual\",\n  \"kulikov\": \"kulikov\",\n  \"kung\": \"kung\",\n  \"kupra\": \"kupr\",\n  \"kurt\": \"kurt\",\n  \"kuwait\": \"kuwait\",\n  \"kvashnin\": \"kvashnin\",\n  \"kw\": \"kw\",\n  \"kwh\": \"kwh\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"là\": \"là\",\n  \"labbra\": \"labbr\",\n  \"labbro\": \"labbr\",\n  \"laberinto\": \"laberint\",\n  \"labirinti\": \"labirint\",\n  \"laboratorio\": \"laborator\",\n  \"labra\": \"labr\",\n  \"laburista\": \"labur\",\n  \"laburisti\": \"labur\",\n  \"lacandona\": \"lacandon\",\n  \"laccio\": \"lacc\",\n  \"lacerati\": \"lacer\",\n  \"lacerazioni\": \"lacer\",\n  \"lacere\": \"lac\",\n  \"laceri\": \"lacer\",\n  \"laconico\": \"lacon\",\n  \"lacqua\": \"lacqu\",\n  \"lacrimando\": \"lacrim\",\n  \"lacrime\": \"lacrim\",\n  \"lacrimogeni\": \"lacrimogen\",\n  \"lacrimoso\": \"lacrim\",\n  \"ladri\": \"ladr\",\n  \"ladro\": \"ladr\",\n  \"ladrona\": \"ladron\",\n  \"ladrone\": \"ladron\",\n  \"ladroni\": \"ladron\",\n  \"laender\": \"laender\",\n  \"laerzio\": \"laerz\",\n  \"lafert\": \"lafert\",\n  \"lagat\": \"lagat\",\n  \"lagest\": \"lagest\",\n  \"laggiu\": \"laggiu\",\n  \"laggiù\": \"laggiù\",\n  \"lagnandosi\": \"lagn\",\n  \"lagnarsene\": \"lagn\",\n  \"lagnarsi\": \"lagn\",\n  \"lago\": \"lag\",\n  \"lagostena\": \"lagosten\",\n  \"lagrima\": \"lagrim\",\n  \"lagrimoso\": \"lagrim\",\n  \"laicale\": \"laical\",\n  \"laiche\": \"laic\",\n  \"laici\": \"laic\",\n  \"laicità\": \"laicit\",\n  \"laico\": \"laic\",\n  \"laido\": \"laid\",\n  \"lake\": \"lak\",\n  \"lalas\": \"lalas\",\n  \"lama\": \"lam\",\n  \"lamacchi\": \"lamacc\",\n  \"lamana\": \"laman\",\n  \"lamanda\": \"lamand\",\n  \"lambert\": \"lambert\",\n  \"lamberto\": \"lambert\",\n  \"lambiccarsi\": \"lambicc\",\n  \"lambro\": \"lambr\",\n  \"lame\": \"lam\",\n  \"lamentandosi\": \"lament\",\n  \"lamentarci\": \"lament\",\n  \"lamentarsi\": \"lament\",\n  \"lamentassero\": \"lament\",\n  \"lamentato\": \"lament\",\n  \"lamentava\": \"lament\",\n  \"lamentazioni\": \"lament\",\n  \"lamentevole\": \"lamentevol\",\n  \"lamenti\": \"lament\",\n  \"lamento\": \"lament\",\n  \"lamet\": \"lamet\",\n  \"lamezia\": \"lamez\",\n  \"lamia\": \"lam\",\n  \"lamine\": \"lamin\",\n  \"lamorte\": \"lamort\",\n  \"lampada\": \"lampad\",\n  \"lampade\": \"lampad\",\n  \"lampante\": \"lampant\",\n  \"lampanti\": \"lampant\",\n  \"lampeggiar\": \"lampegg\",\n  \"lampeggiare\": \"lampegg\",\n  \"lampi\": \"lamp\",\n  \"lampo\": \"lamp\",\n  \"lampone\": \"lampon\",\n  \"lampugnano\": \"lampugn\",\n  \"lana\": \"lan\",\n  \"lancaster\": \"lancaster\",\n  \"lance\": \"lanc\",\n  \"lancer\": \"lancer\",\n  \"lanci\": \"lanc\",\n  \"lancia\": \"lanc\",\n  \"lanciai\": \"lancia\",\n  \"lanciamo\": \"lanc\",\n  \"lanciando\": \"lanc\",\n  \"lanciano\": \"lanc\",\n  \"lanciare\": \"lanc\",\n  \"lanciarsi\": \"lanc\",\n  \"lanciata\": \"lanc\",\n  \"lanciate\": \"lanc\",\n  \"lanciati\": \"lanc\",\n  \"lanciato\": \"lanc\",\n  \"lanciava\": \"lanc\",\n  \"lancio\": \"lanc\",\n  \"lancuba\": \"lancub\",\n  \"land\": \"land\",\n  \"landing\": \"landing\",\n  \"landshut\": \"landshut\",\n  \"langen\": \"langen\",\n  \"languente\": \"languent\",\n  \"languenti\": \"languent\",\n  \"languida\": \"languid\",\n  \"languidamente\": \"languid\",\n  \"languidezza\": \"languidezz\",\n  \"languire\": \"langu\",\n  \"languiva\": \"langu\",\n  \"languivano\": \"langu\",\n  \"languor\": \"languor\",\n  \"languore\": \"languor\",\n  \"lanna\": \"lann\",\n  \"lanose\": \"lanos\",\n  \"lanterna\": \"lantern\",\n  \"lanternino\": \"lanternin\",\n  \"lanzichenecchi\": \"lanzichenecc\",\n  \"lanzichenecco\": \"lanzichenecc\",\n  \"lapadura\": \"lapadur\",\n  \"lapazio\": \"lapaz\",\n  \"lapide\": \"lapid\",\n  \"lapidum\": \"lapidum\",\n  \"laq\": \"laq\",\n  \"lara\": \"lar\",\n  \"larache\": \"larac\",\n  \"larga\": \"larg\",\n  \"largamente\": \"larg\",\n  \"larghe\": \"larg\",\n  \"larghezza\": \"larghezz\",\n  \"larghi\": \"larg\",\n  \"larghissima\": \"larghissim\",\n  \"largo\": \"larg\",\n  \"lariana\": \"larian\",\n  \"lariani\": \"larian\",\n  \"larim\": \"larim\",\n  \"larnaca\": \"larnac\",\n  \"lars\": \"lars\",\n  \"larva\": \"larv\",\n  \"las\": \"las\",\n  \"lasalandra\": \"lasalandr\",\n  \"lascerà\": \"lasc\",\n  \"lascerai\": \"lasc\",\n  \"lascerebbe\": \"lasc\",\n  \"lasceremo\": \"lasc\",\n  \"lascerete\": \"lasc\",\n  \"lascerò\": \"lasc\",\n  \"lasci\": \"lasc\",\n  \"lascia\": \"lasc\",\n  \"lasciai\": \"lascia\",\n  \"lasciala\": \"lascial\",\n  \"lasciale\": \"lascial\",\n  \"lasciam\": \"lasciam\",\n  \"lasciamo\": \"lasc\",\n  \"lasciamoli\": \"lasciamol\",\n  \"lascian\": \"lascian\",\n  \"lasciando\": \"lasc\",\n  \"lasciandogli\": \"lasc\",\n  \"lasciandola\": \"lasc\",\n  \"lasciandole\": \"lasc\",\n  \"lasciandolo\": \"lasc\",\n  \"lasciandosi\": \"lasc\",\n  \"lasciandovela\": \"lasc\",\n  \"lasciano\": \"lasc\",\n  \"lasciar\": \"lasc\",\n  \"lasciarci\": \"lasc\",\n  \"lasciare\": \"lasc\",\n  \"lasciargli\": \"lasc\",\n  \"lasciarla\": \"lasc\",\n  \"lasciarle\": \"lasc\",\n  \"lasciarli\": \"lasc\",\n  \"lasciarlo\": \"lasc\",\n  \"lasciarmi\": \"lasc\",\n  \"lasciarne\": \"lasc\",\n  \"lasciaron\": \"lasciaron\",\n  \"lasciarono\": \"lasc\",\n  \"lasciarsi\": \"lasc\",\n  \"lasciarvi\": \"lasc\",\n  \"lasciasse\": \"lasc\",\n  \"lasciassero\": \"lasc\",\n  \"lasciassi\": \"lasc\",\n  \"lasciassimo\": \"lasc\",\n  \"lasciata\": \"lasc\",\n  \"lasciate\": \"lasc\",\n  \"lasciatela\": \"lasciatel\",\n  \"lasciateli\": \"lasciatel\",\n  \"lasciatelo\": \"lasciatel\",\n  \"lasciatemi\": \"lasciatem\",\n  \"lasciatevi\": \"lasciat\",\n  \"lasciati\": \"lasc\",\n  \"lasciato\": \"lasc\",\n  \"lasciatolo\": \"lasciatol\",\n  \"lasciatovi\": \"lasciatov\",\n  \"lasciava\": \"lasc\",\n  \"lasciavan\": \"lasciavan\",\n  \"lasciavano\": \"lasc\",\n  \"lascifareame\": \"lascifaream\",\n  \"lascin\": \"lascin\",\n  \"lascino\": \"lascin\",\n  \"lascio\": \"lasc\",\n  \"lasciò\": \"lasc\",\n  \"lasciorno\": \"lasciorn\",\n  \"lascito\": \"lasc\",\n  \"lasorella\": \"lasorell\",\n  \"lassandro\": \"lassandr\",\n  \"lasso\": \"lass\",\n  \"lassu\": \"lassu\",\n  \"lassù\": \"lassù\",\n  \"last\": \"last\",\n  \"lastre\": \"lastr\",\n  \"lastrico\": \"lastric\",\n  \"latente\": \"latent\",\n  \"laterale\": \"lateral\",\n  \"lateralmente\": \"lateral\",\n  \"lateranensi\": \"lateranens\",\n  \"laterano\": \"later\",\n  \"lati\": \"lat\",\n  \"latifondi\": \"latifond\",\n  \"latifondisti\": \"latifond\",\n  \"latimore\": \"latimor\",\n  \"latina\": \"latin\",\n  \"latine\": \"latin\",\n  \"latini\": \"latin\",\n  \"latino\": \"latin\",\n  \"latinoamericane\": \"latinoamerican\",\n  \"latinoamericano\": \"latinoameric\",\n  \"latinorum\": \"latinorum\",\n  \"latinucci\": \"latinucc\",\n  \"latisana\": \"latisan\",\n  \"latitava\": \"latit\",\n  \"lato\": \"lat\",\n  \"latore\": \"lator\",\n  \"latronico\": \"latron\",\n  \"lattante\": \"lattant\",\n  \"latte\": \"latt\",\n  \"laura\": \"laur\",\n  \"laureati\": \"laur\",\n  \"laureato\": \"laur\",\n  \"laurent\": \"laurent\",\n  \"laurentii\": \"laurent\",\n  \"lauro\": \"laur\",\n  \"lautezza\": \"lautezz\",\n  \"lav\": \"lav\",\n  \"lava\": \"lav\",\n  \"lavandai\": \"lavanda\",\n  \"lavano\": \"lav\",\n  \"lavardera\": \"lavarder\",\n  \"lavare\": \"lav\",\n  \"lavasse\": \"lav\",\n  \"lavata\": \"lav\",\n  \"lavato\": \"lav\",\n  \"laverò\": \"lav\",\n  \"lavo\": \"lav\",\n  \"lavora\": \"lavor\",\n  \"lavorando\": \"lavor\",\n  \"lavorano\": \"lavor\",\n  \"lavorante\": \"lavor\",\n  \"lavoranti\": \"lavor\",\n  \"lavorar\": \"lavor\",\n  \"lavorare\": \"lavor\",\n  \"lavorata\": \"lavor\",\n  \"lavorate\": \"lavor\",\n  \"lavorati\": \"lavor\",\n  \"lavorativa\": \"lavor\",\n  \"lavorato\": \"lavor\",\n  \"lavoratore\": \"lavor\",\n  \"lavoratori\": \"lavor\",\n  \"lavoratrori\": \"lavoratror\",\n  \"lavorava\": \"lavor\",\n  \"lavoravano\": \"lavor\",\n  \"lavoravi\": \"lavor\",\n  \"lavorazione\": \"lavor\",\n  \"lavori\": \"lavor\",\n  \"lavorino\": \"lavorin\",\n  \"lavorio\": \"lavor\",\n  \"lavoro\": \"lavor\",\n  \"lavorò\": \"lavor\",\n  \"lazeretto\": \"lazerett\",\n  \"laziale\": \"lazial\",\n  \"lazio\": \"laz\",\n  \"lazzarini\": \"lazzarin\",\n  \"lazzati\": \"lazz\",\n  \"lazzeretti\": \"lazzerett\",\n  \"lazzeretto\": \"lazzerett\",\n  \"lbiro\": \"lbir\",\n  \"lc\": \"lc\",\n  \"ld\": \"ld\",\n  \"le\": \"le\",\n  \"leader\": \"leader\",\n  \"leadership\": \"leadership\",\n  \"leaf\": \"leaf\",\n  \"leale\": \"leal\",\n  \"lealmente\": \"lealment\",\n  \"lealtà\": \"lealt\",\n  \"leante\": \"leant\",\n  \"lebrazione\": \"lebrazion\",\n  \"leca\": \"lec\",\n  \"leccar\": \"lecc\",\n  \"leccate\": \"lecc\",\n  \"lecce\": \"lecc\",\n  \"leccese\": \"lecces\",\n  \"lecco\": \"lecc\",\n  \"lecita\": \"lec\",\n  \"leciti\": \"lec\",\n  \"lecito\": \"lec\",\n  \"lectures\": \"lectures\",\n  \"lede\": \"led\",\n  \"ledere\": \"led\",\n  \"ledo\": \"led\",\n  \"leffe\": \"leff\",\n  \"lega\": \"leg\",\n  \"legà\": \"leg\",\n  \"legale\": \"legal\",\n  \"legali\": \"legal\",\n  \"legalità\": \"legal\",\n  \"legame\": \"legam\",\n  \"legami\": \"legam\",\n  \"legano\": \"leg\",\n  \"legare\": \"leg\",\n  \"legata\": \"leg\",\n  \"legate\": \"leg\",\n  \"legatevi\": \"legat\",\n  \"legati\": \"leg\",\n  \"legato\": \"leg\",\n  \"legatolo\": \"legatol\",\n  \"legatura\": \"legatur\",\n  \"leggano\": \"legg\",\n  \"legge\": \"legg\",\n  \"leggendario\": \"leggendar\",\n  \"legger\": \"legger\",\n  \"leggera\": \"legger\",\n  \"leggeranno\": \"legg\",\n  \"leggere\": \"legg\",\n  \"leggerebbe\": \"legg\",\n  \"leggerezza\": \"leggerezz\",\n  \"leggergli\": \"legg\",\n  \"leggeri\": \"legger\",\n  \"leggerissimo\": \"leggerissim\",\n  \"leggerla\": \"legg\",\n  \"leggerle\": \"legg\",\n  \"leggermente\": \"legger\",\n  \"leggero\": \"legger\",\n  \"leggesse\": \"leggess\",\n  \"leggeva\": \"legg\",\n  \"leggi\": \"legg\",\n  \"leggier\": \"leggier\",\n  \"leggiera\": \"leggier\",\n  \"leggieri\": \"leggier\",\n  \"leggiero\": \"leggier\",\n  \"leggina\": \"leggin\",\n  \"leggìo\": \"leggì\",\n  \"leggo\": \"legg\",\n  \"leghe\": \"legh\",\n  \"leghissimi\": \"leghissim\",\n  \"leghista\": \"leghist\",\n  \"leghiste\": \"leghist\",\n  \"leghisti\": \"leghist\",\n  \"leghsiti\": \"leghs\",\n  \"legilative\": \"legil\",\n  \"legis\": \"legis\",\n  \"legislativa\": \"legisl\",\n  \"legislative\": \"legisl\",\n  \"legislativi\": \"legisl\",\n  \"legislativo\": \"legisl\",\n  \"legislatore\": \"legisl\",\n  \"legislatura\": \"legislatur\",\n  \"legislature\": \"legislatur\",\n  \"legislazione\": \"legisl\",\n  \"legisti\": \"legist\",\n  \"legittima\": \"legittim\",\n  \"legittimamente\": \"legittim\",\n  \"legittimare\": \"legittim\",\n  \"legittimatasi\": \"legittimatas\",\n  \"legittimazione\": \"legittim\",\n  \"legittime\": \"legittim\",\n  \"legittimità\": \"legittim\",\n  \"legittimo\": \"legittim\",\n  \"legna\": \"legn\",\n  \"legnaiolo\": \"legnaiol\",\n  \"legname\": \"legnam\",\n  \"legnano\": \"legn\",\n  \"legnetti\": \"legnett\",\n  \"legni\": \"legn\",\n  \"legno\": \"legn\",\n  \"legò\": \"leg\",\n  \"lehmann\": \"lehmann\",\n  \"lehnigk\": \"lehnigk\",\n  \"lei\": \"lei\",\n  \"leibnitz\": \"leibnitz\",\n  \"leicestershire\": \"leicestersh\",\n  \"leit\": \"leit\",\n  \"leitgeb\": \"leitgeb\",\n  \"leitner\": \"leitner\",\n  \"lembo\": \"lemb\",\n  \"lemme\": \"lemm\",\n  \"len\": \"len\",\n  \"lena\": \"len\",\n  \"leni\": \"len\",\n  \"leninista\": \"lenin\",\n  \"lens\": \"lens\",\n  \"lenta\": \"lent\",\n  \"lentamente\": \"lent\",\n  \"lentezza\": \"lentezz\",\n  \"lenti\": \"lent\",\n  \"lentissimi\": \"lentissim\",\n  \"lentissimo\": \"lentissim\",\n  \"lento\": \"lent\",\n  \"leny\": \"leny\",\n  \"lenzoli\": \"lenzol\",\n  \"lenzolo\": \"lenzol\",\n  \"leo\": \"leo\",\n  \"leoluca\": \"leoluc\",\n  \"leon\": \"leon\",\n  \"leonardo\": \"leonard\",\n  \"leone\": \"leon\",\n  \"leoni\": \"leon\",\n  \"leonid\": \"leonid\",\n  \"leopoldo\": \"leopold\",\n  \"lepre\": \"lepr\",\n  \"lercia\": \"lerc\",\n  \"les\": \"les\",\n  \"lesioni\": \"lesion\",\n  \"lesiva\": \"les\",\n  \"lesive\": \"lesiv\",\n  \"lesse\": \"less\",\n  \"lessicale\": \"lessical\",\n  \"lesta\": \"lest\",\n  \"lesti\": \"lest\",\n  \"lesto\": \"lest\",\n  \"let\": \"let\",\n  \"letargo\": \"letarg\",\n  \"letizia\": \"letiz\",\n  \"letta\": \"lett\",\n  \"lette\": \"lett\",\n  \"lettear\": \"lett\",\n  \"letten\": \"letten\",\n  \"lettera\": \"letter\",\n  \"letteralmente\": \"letteral\",\n  \"letteraria\": \"letterar\",\n  \"letterario\": \"letterar\",\n  \"letterati\": \"letter\",\n  \"letterato\": \"letter\",\n  \"letteratone\": \"letteraton\",\n  \"letteratura\": \"letteratur\",\n  \"lettere\": \"lett\",\n  \"letteriello\": \"letteriell\",\n  \"letti\": \"lett\",\n  \"lettiga\": \"lettig\",\n  \"lettighieri\": \"lettighier\",\n  \"lettighiero\": \"lettighier\",\n  \"letto\": \"lett\",\n  \"lettonia\": \"letton\",\n  \"lettore\": \"lettor\",\n  \"lettori\": \"lettor\",\n  \"lettovi\": \"lettov\",\n  \"lettuccio\": \"lettucc\",\n  \"lettura\": \"lettur\",\n  \"leuca\": \"leuc\",\n  \"leuci\": \"leuc\",\n  \"leva\": \"lev\",\n  \"levami\": \"levam\",\n  \"levando\": \"lev\",\n  \"levandosi\": \"lev\",\n  \"levanta\": \"levant\",\n  \"levante\": \"levant\",\n  \"levantese\": \"levantes\",\n  \"levar\": \"lev\",\n  \"levare\": \"lev\",\n  \"levargli\": \"lev\",\n  \"levarla\": \"lev\",\n  \"levarle\": \"lev\",\n  \"levarli\": \"lev\",\n  \"levarlo\": \"lev\",\n  \"levarmi\": \"lev\",\n  \"levarne\": \"lev\",\n  \"levarnela\": \"levarnel\",\n  \"levaron\": \"levaron\",\n  \"levarsi\": \"lev\",\n  \"levarti\": \"lev\",\n  \"levarvi\": \"lev\",\n  \"levata\": \"lev\",\n  \"levatasi\": \"levatas\",\n  \"levate\": \"lev\",\n  \"levatevelo\": \"levatevel\",\n  \"levatevi\": \"levat\",\n  \"levati\": \"lev\",\n  \"levato\": \"lev\",\n  \"levatosi\": \"levat\",\n  \"levava\": \"lev\",\n  \"levavano\": \"lev\",\n  \"leverebbe\": \"lev\",\n  \"leverkusen\": \"leverkusen\",\n  \"levi\": \"lev\",\n  \"levin\": \"levin\",\n  \"levino\": \"levin\",\n  \"levo\": \"lev\",\n  \"levò\": \"lev\",\n  \"levy\": \"levy\",\n  \"lewis\": \"lewis\",\n  \"lex\": \"lex\",\n  \"lezione\": \"lezion\",\n  \"leziosaggine\": \"leziosaggin\",\n  \"lezioso\": \"lezios\",\n  \"lg\": \"lg\",\n  \"lh\": \"lh\",\n  \"li\": \"li\",\n  \"lì\": \"lì\",\n  \"liatti\": \"liatt\",\n  \"lib\": \"lib\",\n  \"libano\": \"lib\",\n  \"libbra\": \"libbr\",\n  \"libelli\": \"libell\",\n  \"libera\": \"liber\",\n  \"liberaci\": \"liberac\",\n  \"liberal\": \"liberal\",\n  \"liberaldemocratica\": \"liberaldemocrat\",\n  \"liberaldemocratico\": \"liberaldemocrat\",\n  \"liberale\": \"liberal\",\n  \"liberali\": \"liberal\",\n  \"liberalismo\": \"liberal\",\n  \"liberalità\": \"liberal\",\n  \"liberalizzato\": \"liberalizz\",\n  \"liberalizzazione\": \"liberalizz\",\n  \"liberamente\": \"liber\",\n  \"liberandovi\": \"liber\",\n  \"liberar\": \"liber\",\n  \"liberarasi\": \"liberaras\",\n  \"liberare\": \"liber\",\n  \"liberarla\": \"liber\",\n  \"liberarle\": \"liber\",\n  \"liberarono\": \"liber\",\n  \"liberarsene\": \"liber\",\n  \"liberarsi\": \"liber\",\n  \"liberarvi\": \"liber\",\n  \"liberata\": \"liber\",\n  \"liberati\": \"liber\",\n  \"liberato\": \"liber\",\n  \"liberatore\": \"liber\",\n  \"liberatori\": \"liber\",\n  \"liberatorio\": \"liberator\",\n  \"liberavamo\": \"liber\",\n  \"liberazione\": \"liber\",\n  \"libere\": \"lib\",\n  \"libererò\": \"liber\",\n  \"liberi\": \"liber\",\n  \"liberiamocene\": \"liberiamocen\",\n  \"liberismo\": \"liber\",\n  \"liberissimi\": \"liberissim\",\n  \"liberista\": \"liber\",\n  \"liberiste\": \"liber\",\n  \"liberisti\": \"liber\",\n  \"libero\": \"liber\",\n  \"liberò\": \"lib\",\n  \"libertà\": \"libert\",\n  \"libertaria\": \"libertar\",\n  \"libertas\": \"libertas\",\n  \"liberte\": \"libert\",\n  \"libertè\": \"libert\",\n  \"libertinaggio\": \"libertinagg\",\n  \"libia\": \"lib\",\n  \"libico\": \"libic\",\n  \"libra\": \"libr\",\n  \"libracci\": \"libracc\",\n  \"libraccio\": \"libracc\",\n  \"librato\": \"libr\",\n  \"libreria\": \"librer\",\n  \"librettò\": \"librett\",\n  \"libri\": \"libr\",\n  \"libriccin\": \"libriccin\",\n  \"libriccino\": \"libriccin\",\n  \"libricciolo\": \"libricciol\",\n  \"libro\": \"libr\",\n  \"licenza\": \"licenz\",\n  \"licenziamenti\": \"licenz\",\n  \"licenziamento\": \"licenz\",\n  \"licenziar\": \"licenz\",\n  \"licenziare\": \"licenz\",\n  \"licenziaron\": \"licenziaron\",\n  \"licenziati\": \"licenz\",\n  \"licenziò\": \"licenz\",\n  \"liceo\": \"lice\",\n  \"licia\": \"lic\",\n  \"licta\": \"lict\",\n  \"lid\": \"lid\",\n  \"lidia\": \"lid\",\n  \"lido\": \"lid\",\n  \"lieberman\": \"lieberman\",\n  \"liegi\": \"lieg\",\n  \"lierse\": \"liers\",\n  \"lieta\": \"liet\",\n  \"lietamente\": \"liet\",\n  \"liete\": \"liet\",\n  \"lieto\": \"liet\",\n  \"lieve\": \"liev\",\n  \"lievemente\": \"lievement\",\n  \"lievi\": \"liev\",\n  \"lievitare\": \"lievit\",\n  \"lif\": \"lif\",\n  \"liga\": \"lig\",\n  \"ligamen\": \"ligamen\",\n  \"ligi\": \"lig\",\n  \"lignano\": \"lign\",\n  \"ligne\": \"lign\",\n  \"ligonchio\": \"ligonc\",\n  \"liguori\": \"liguor\",\n  \"ligure\": \"ligur\",\n  \"liguri\": \"ligur\",\n  \"liguria\": \"ligur\",\n  \"lilia\": \"lil\",\n  \"liliano\": \"lil\",\n  \"lilla\": \"lill\",\n  \"lillehammer\": \"lillehammer\",\n  \"lilli\": \"lill\",\n  \"lima\": \"lim\",\n  \"limatura\": \"limatur\",\n  \"limbruno\": \"limbrun\",\n  \"limita\": \"lim\",\n  \"limitando\": \"limit\",\n  \"limitano\": \"limit\",\n  \"limitare\": \"limit\",\n  \"limitarsi\": \"limit\",\n  \"limitata\": \"limit\",\n  \"limitate\": \"limit\",\n  \"limitative\": \"limit\",\n  \"limitativo\": \"limit\",\n  \"limitato\": \"limit\",\n  \"limitavano\": \"limit\",\n  \"limitazione\": \"limit\",\n  \"limitazioni\": \"limit\",\n  \"limite\": \"lim\",\n  \"limiterà\": \"limit\",\n  \"limiti\": \"lim\",\n  \"limitiamo\": \"limit\",\n  \"limits\": \"limits\",\n  \"limpido\": \"limpid\",\n  \"lina\": \"lin\",\n  \"linciaggio\": \"linciagg\",\n  \"linciati\": \"linc\",\n  \"line\": \"lin\",\n  \"linea\": \"line\",\n  \"lineamenti\": \"lin\",\n  \"linee\": \"line\",\n  \"lingua\": \"lingu\",\n  \"linguaggio\": \"linguagg\",\n  \"lingue\": \"lingu\",\n  \"linificio\": \"linific\",\n  \"link\": \"link\",\n  \"lino\": \"lin\",\n  \"lion\": \"lion\",\n  \"lione\": \"lion\",\n  \"lionel\": \"lionel\",\n  \"lipkin\": \"lipkin\",\n  \"lippi\": \"lipp\",\n  \"liquefatto\": \"liquefatt\",\n  \"liquida\": \"liquid\",\n  \"liquidare\": \"liquid\",\n  \"liquidata\": \"liquid\",\n  \"liquidati\": \"liquid\",\n  \"liquidato\": \"liquid\",\n  \"liquidatore\": \"liquid\",\n  \"liquidazione\": \"liquid\",\n  \"liquidazioni\": \"liquid\",\n  \"liquide\": \"liquid\",\n  \"liquidità\": \"liquid\",\n  \"liquido\": \"liquid\",\n  \"liquor\": \"liquor\",\n  \"lira\": \"lir\",\n  \"lire\": \"lir\",\n  \"lirichè\": \"liric\",\n  \"lirici\": \"liric\",\n  \"lisa\": \"lis\",\n  \"lisbona\": \"lisbon\",\n  \"lisca\": \"lisc\",\n  \"liscate\": \"lisc\",\n  \"lisce\": \"lisc\",\n  \"liscia\": \"lisc\",\n  \"liscio\": \"lisc\",\n  \"lisciò\": \"lisc\",\n  \"lise\": \"lis\",\n  \"lista\": \"list\",\n  \"liste\": \"list\",\n  \"listino\": \"listin\",\n  \"lità\": \"lit\",\n  \"lite\": \"lit\",\n  \"litiga\": \"litig\",\n  \"litiganti\": \"litig\",\n  \"litigar\": \"litig\",\n  \"litigi\": \"litig\",\n  \"litorale\": \"litoral\",\n  \"litorali\": \"litoral\",\n  \"littorio\": \"littor\",\n  \"litwinski\": \"litwinsk\",\n  \"liuto\": \"liut\",\n  \"live\": \"liv\",\n  \"livelli\": \"livell\",\n  \"livello\": \"livell\",\n  \"livide\": \"livid\",\n  \"lividi\": \"livid\",\n  \"livido\": \"livid\",\n  \"livingston\": \"livingston\",\n  \"livio\": \"liv\",\n  \"livornese\": \"livornes\",\n  \"livorno\": \"livorn\",\n  \"livrea\": \"livre\",\n  \"livree\": \"livre\",\n  \"liz\": \"liz\",\n  \"liza\": \"liz\",\n  \"lizza\": \"lizz\",\n  \"lllustriss\": \"lllustriss\",\n  \"lloyd\": \"lloyd\",\n  \"lloyds\": \"lloyds\",\n  \"lmi\": \"lmi\",\n  \"ln\": \"ln\",\n  \"lo\": \"lo\",\n  \"loader\": \"loader\",\n  \"lob\": \"lob\",\n  \"lobby\": \"lobby\",\n  \"lobotomia\": \"lobotom\",\n  \"locale\": \"local\",\n  \"locali\": \"local\",\n  \"località\": \"local\",\n  \"localizzazione\": \"localizz\",\n  \"locanda\": \"locand\",\n  \"locati\": \"loc\",\n  \"locché\": \"locc\",\n  \"lockerbie\": \"lockerb\",\n  \"locomotiva\": \"locomot\",\n  \"lodar\": \"lod\",\n  \"lodare\": \"lod\",\n  \"lodarlo\": \"lod\",\n  \"lodarsi\": \"lod\",\n  \"lodata\": \"lod\",\n  \"lodato\": \"lod\",\n  \"lodava\": \"lod\",\n  \"lode\": \"lod\",\n  \"loderemo\": \"lod\",\n  \"lodevoli\": \"lodevol\",\n  \"lodevolmente\": \"lodevol\",\n  \"lodi\": \"lod\",\n  \"lodigiani\": \"lodigian\",\n  \"lodo\": \"lod\",\n  \"lodò\": \"lod\",\n  \"lodovico\": \"lodov\",\n  \"logar\": \"log\",\n  \"loggia\": \"logg\",\n  \"loggiato\": \"logg\",\n  \"logica\": \"logic\",\n  \"logiche\": \"logic\",\n  \"logico\": \"logic\",\n  \"loginov\": \"loginov\",\n  \"logisitici\": \"logisit\",\n  \"logistica\": \"logist\",\n  \"logistiche\": \"logist\",\n  \"logli\": \"logl\",\n  \"loglio\": \"logl\",\n  \"logo\": \"log\",\n  \"logorato\": \"logor\",\n  \"logori\": \"logor\",\n  \"logoro\": \"logor\",\n  \"logrono\": \"logr\",\n  \"lollis\": \"lollis\",\n  \"lollobrigida\": \"lollobrigid\",\n  \"lombarda\": \"lombard\",\n  \"lombarde\": \"lombard\",\n  \"lombardi\": \"lombard\",\n  \"lombardia\": \"lombard\",\n  \"lombardini\": \"lombardin\",\n  \"lombardo\": \"lombard\",\n  \"lombardona\": \"lombardon\",\n  \"lomi\": \"lom\",\n  \"lommel\": \"lommel\",\n  \"londinese\": \"londines\",\n  \"londinesi\": \"londines\",\n  \"londra\": \"londr\",\n  \"longar\": \"long\",\n  \"longhi\": \"long\",\n  \"longiano\": \"long\",\n  \"longo\": \"long\",\n  \"lontana\": \"lontan\",\n  \"lontananza\": \"lontan\",\n  \"lontane\": \"lontan\",\n  \"lontanetto\": \"lontanett\",\n  \"lontani\": \"lontan\",\n  \"lontano\": \"lont\",\n  \"lontante\": \"lontant\",\n  \"look\": \"look\",\n  \"loose\": \"loos\",\n  \"lopez\": \"lopez\",\n  \"lor\": \"lor\",\n  \"lorda\": \"lord\",\n  \"lordate\": \"lord\",\n  \"lordi\": \"lord\",\n  \"lordo\": \"lord\",\n  \"lords\": \"lords\",\n  \"loredana\": \"loredan\",\n  \"lorena\": \"loren\",\n  \"lorenzini\": \"lorenzin\",\n  \"lorenzo\": \"lorenz\",\n  \"loreto\": \"loret\",\n  \"lori\": \"lor\",\n  \"lorieri\": \"lorier\",\n  \"loro\": \"lor\",\n  \"los\": \"los\",\n  \"losa\": \"los\",\n  \"losanna\": \"losann\",\n  \"losche\": \"losc\",\n  \"loseto\": \"loset\",\n  \"lotta\": \"lott\",\n  \"lottà\": \"lott\",\n  \"lottare\": \"lott\",\n  \"lotte\": \"lott\",\n  \"lotteria\": \"lotter\",\n  \"lotti\": \"lott\",\n  \"lottizzazione\": \"lottizz\",\n  \"lotto\": \"lott\",\n  \"louis\": \"louis\",\n  \"lourdes\": \"lourdes\",\n  \"lovato\": \"lov\",\n  \"lovely\": \"lovely\",\n  \"lp\": \"lp\",\n  \"lq\": \"lq\",\n  \"lr\": \"lr\",\n  \"lt\": \"lt\",\n  \"lu\": \"lu\",\n  \"luanda\": \"luand\",\n  \"luc\": \"luc\",\n  \"luca\": \"luc\",\n  \"lucar\": \"luc\",\n  \"lucarelli\": \"lucarell\",\n  \"lucca\": \"lucc\",\n  \"lucchese\": \"lucches\",\n  \"lucchetta\": \"lucchett\",\n  \"lucchetti\": \"lucchett\",\n  \"lucchi\": \"lucc\",\n  \"lucchini\": \"lucchin\",\n  \"lucci\": \"lucc\",\n  \"luccicante\": \"luccic\",\n  \"luccicanti\": \"luccic\",\n  \"luccicare\": \"luccic\",\n  \"lucciole\": \"lucciol\",\n  \"luce\": \"luc\",\n  \"lucente\": \"lucent\",\n  \"lucenti\": \"lucent\",\n  \"lucerna\": \"lucern\",\n  \"lucerne\": \"luc\",\n  \"luchetti\": \"luchett\",\n  \"luchino\": \"luchin\",\n  \"luci\": \"luc\",\n  \"lucia\": \"luc\",\n  \"luciana\": \"lucian\",\n  \"luciano\": \"luc\",\n  \"lucida\": \"lucid\",\n  \"lucidi\": \"lucid\",\n  \"lucido\": \"lucid\",\n  \"lucignolo\": \"lucignol\",\n  \"lucilla\": \"lucill\",\n  \"lucio\": \"luc\",\n  \"lucrezia\": \"lucrez\",\n  \"lucrosa\": \"lucros\",\n  \"lueders\": \"lueders\",\n  \"lufthansa\": \"lufthans\",\n  \"luglio\": \"lugl\",\n  \"lugo\": \"lug\",\n  \"lugubre\": \"lugubr\",\n  \"lui\": \"lui\",\n  \"luigi\": \"luig\",\n  \"luigiterzo\": \"luigiterz\",\n  \"luino\": \"luin\",\n  \"luisa\": \"luis\",\n  \"luisito\": \"luis\",\n  \"luiso\": \"luis\",\n  \"lumbard\": \"lumbard\",\n  \"lume\": \"lum\",\n  \"lumeggiando\": \"lumegg\",\n  \"lumeggiavano\": \"lumegg\",\n  \"lumezzane\": \"lumezzan\",\n  \"lumi\": \"lum\",\n  \"lumicino\": \"lumicin\",\n  \"lumiere\": \"lum\",\n  \"lumpur\": \"lumpur\",\n  \"luna\": \"lun\",\n  \"lunà\": \"lun\",\n  \"lunarè\": \"lunar\",\n  \"lunario\": \"lunar\",\n  \"lunedì\": \"luned\",\n  \"lunedìa\": \"lunedì\",\n  \"lunedìper\": \"lunedìper\",\n  \"lunette\": \"lunett\",\n  \"lunga\": \"lung\",\n  \"lungagnata\": \"lungagn\",\n  \"lungamente\": \"lung\",\n  \"lunghe\": \"lung\",\n  \"lunghettamente\": \"lunghett\",\n  \"lunghezza\": \"lunghezz\",\n  \"lunghi\": \"lung\",\n  \"lunghigna\": \"lunghign\",\n  \"lunghissimi\": \"lunghissim\",\n  \"lunghissimo\": \"lunghissim\",\n  \"lungi\": \"lung\",\n  \"lungimirante\": \"lungimir\",\n  \"lungimiranza\": \"lungimir\",\n  \"lungo\": \"lung\",\n  \"lunini\": \"lunin\",\n  \"luochi\": \"luoc\",\n  \"luoghi\": \"luog\",\n  \"luogo\": \"luog\",\n  \"luogotenente\": \"luogotenent\",\n  \"luogotenenti\": \"luogotenent\",\n  \"luohang\": \"luohang\",\n  \"lupi\": \"lup\",\n  \"lupo\": \"lup\",\n  \"lupu\": \"lupu\",\n  \"lusinga\": \"lusing\",\n  \"lusingano\": \"lusing\",\n  \"lusingare\": \"lusing\",\n  \"lusinghe\": \"lusing\",\n  \"lussemburgo\": \"lussemburg\",\n  \"lusso\": \"luss\",\n  \"lustrata\": \"lustr\",\n  \"lustre\": \"lustr\",\n  \"lustri\": \"lustr\",\n  \"luterani\": \"luteran\",\n  \"lutti\": \"lutt\",\n  \"lutto\": \"lutt\",\n  \"luttuose\": \"luttuos\",\n  \"luxor\": \"luxor\",\n  \"lvtp\": \"lvtp\",\n  \"lwaxana\": \"lwaxan\",\n  \"lydia\": \"lydi\",\n  \"lyles\": \"lyles\",\n  \"lynch\": \"lynch\",\n  \"lyonnais\": \"lyonnais\",\n  \"lz\": \"lz\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"maa\": \"maa\",\n  \"maastricht\": \"maastricht\",\n  \"mab\": \"mab\",\n  \"mac\": \"mac\",\n  \"macabre\": \"macabr\",\n  \"macario\": \"macar\",\n  \"macbeth\": \"macbeth\",\n  \"macchi\": \"macc\",\n  \"macchia\": \"macc\",\n  \"macchiata\": \"macc\",\n  \"macchie\": \"macc\",\n  \"macchina\": \"macchin\",\n  \"macchinar\": \"macchin\",\n  \"macchinari\": \"macchinar\",\n  \"macchinava\": \"macchin\",\n  \"macchine\": \"macchin\",\n  \"macchinisti\": \"macchin\",\n  \"macellaio\": \"macellai\",\n  \"macellari\": \"macellar\",\n  \"maceratese\": \"macerates\",\n  \"macerazioni\": \"macer\",\n  \"macerie\": \"macer\",\n  \"machete\": \"mach\",\n  \"machines\": \"machines\",\n  \"macigni\": \"macign\",\n  \"macilenti\": \"macilent\",\n  \"macilento\": \"macilent\",\n  \"maclaine\": \"maclain\",\n  \"macro\": \"macr\",\n  \"macroregione\": \"macroregion\",\n  \"maculae\": \"macula\",\n  \"madama\": \"madam\",\n  \"maddalena\": \"maddalen\",\n  \"made\": \"mad\",\n  \"madhi\": \"madh\",\n  \"madia\": \"mad\",\n  \"madie\": \"mad\",\n  \"madigan\": \"madigan\",\n  \"madonna\": \"madonn\",\n  \"madonnina\": \"madonnin\",\n  \"madre\": \"madr\",\n  \"madri\": \"madr\",\n  \"madrid\": \"madrid\",\n  \"madrina\": \"madrin\",\n  \"maestà\": \"maest\",\n  \"maestosa\": \"maestos\",\n  \"maestose\": \"maestos\",\n  \"maestoso\": \"maestos\",\n  \"maestra\": \"maestr\",\n  \"maestranze\": \"maestranz\",\n  \"maestri\": \"maestr\",\n  \"maestria\": \"maestr\",\n  \"maestro\": \"maestr\",\n  \"maffei\": \"maffe\",\n  \"mafia\": \"maf\",\n  \"mafie\": \"maf\",\n  \"mafiosa\": \"mafios\",\n  \"mafiose\": \"mafios\",\n  \"mafiosi\": \"mafios\",\n  \"mafioso\": \"mafios\",\n  \"mag\": \"mag\",\n  \"magagna\": \"magagn\",\n  \"magagne\": \"magagn\",\n  \"magali\": \"magal\",\n  \"magari\": \"magar\",\n  \"magazzini\": \"magazzin\",\n  \"magazzino\": \"magazzin\",\n  \"magdalena\": \"magdalen\",\n  \"magellano\": \"magell\",\n  \"magestad\": \"magestad\",\n  \"maggianico\": \"maggian\",\n  \"maggie\": \"magg\",\n  \"maggio\": \"magg\",\n  \"maggior\": \"maggior\",\n  \"maggioranza\": \"maggior\",\n  \"maggioratorio\": \"maggiorator\",\n  \"maggiorazioni\": \"maggior\",\n  \"maggiore\": \"maggior\",\n  \"maggiori\": \"maggior\",\n  \"maggioritaria\": \"maggioritar\",\n  \"maggioritarie\": \"maggioritar\",\n  \"maggioritario\": \"maggioritar\",\n  \"maggiormente\": \"maggior\",\n  \"maggioroanza\": \"maggior\",\n  \"maghagha\": \"maghag\",\n  \"maghi\": \"magh\",\n  \"magi\": \"mag\",\n  \"magia\": \"mag\",\n  \"magiari\": \"magiar\",\n  \"magiaro\": \"magiar\",\n  \"magica\": \"magic\",\n  \"magiche\": \"magic\",\n  \"magistero\": \"magister\",\n  \"magistrale\": \"magistral\",\n  \"magistrati\": \"magistr\",\n  \"magistrato\": \"magistr\",\n  \"magistratura\": \"magistratur\",\n  \"maglia\": \"magl\",\n  \"magliani\": \"maglian\",\n  \"maglie\": \"magl\",\n  \"magna\": \"magn\",\n  \"magnam\": \"magnam\",\n  \"magnani\": \"magnan\",\n  \"magnanima\": \"magnanim\",\n  \"magnetico\": \"magnet\",\n  \"magni\": \"magn\",\n  \"magnifica\": \"magnif\",\n  \"magnificamente\": \"magnif\",\n  \"magnificenza\": \"magnificent\",\n  \"magnifiche\": \"magnif\",\n  \"magnifico\": \"magnif\",\n  \"magnitudo\": \"magnitud\",\n  \"magno\": \"magn\",\n  \"magona\": \"magon\",\n  \"magoni\": \"magon\",\n  \"magonza\": \"magonz\",\n  \"magra\": \"magr\",\n  \"magre\": \"magr\",\n  \"mahal\": \"mahal\",\n  \"maharashtra\": \"maharashtr\",\n  \"mahatma\": \"mahatm\",\n  \"mai\": \"mai\",\n  \"maidan\": \"maidan\",\n  \"maiellaro\": \"maiellar\",\n  \"mail\": \"mail\",\n  \"maini\": \"main\",\n  \"maiocchi\": \"maiocc\",\n  \"maiolica\": \"maiol\",\n  \"maiorca\": \"maiorc\",\n  \"maja\": \"maj\",\n  \"major\": \"major\",\n  \"makeni\": \"maken\",\n  \"makinen\": \"makinen\",\n  \"mal\": \"mal\",\n  \"mala\": \"mal\",\n  \"malafede\": \"malafed\",\n  \"malaffare\": \"malaff\",\n  \"malagevole\": \"malagevol\",\n  \"malagevoli\": \"malagevol\",\n  \"malamente\": \"mal\",\n  \"malan\": \"malan\",\n  \"malandrinaccio\": \"malandrinacc\",\n  \"malandrini\": \"malandrin\",\n  \"malandrino\": \"malandrin\",\n  \"malannaggia\": \"malannagg\",\n  \"malanno\": \"malann\",\n  \"malanotte\": \"malanott\",\n  \"malapianta\": \"malapiant\",\n  \"malasorte\": \"malasort\",\n  \"malate\": \"mal\",\n  \"malatestas\": \"malatestas\",\n  \"malatesti\": \"malatest\",\n  \"malati\": \"mal\",\n  \"malato\": \"mal\",\n  \"malattia\": \"malatt\",\n  \"malattie\": \"malatt\",\n  \"malaugurio\": \"malaugur\",\n  \"malavita\": \"malav\",\n  \"malcapitati\": \"malcapit\",\n  \"malcolm\": \"malcolm\",\n  \"malconci\": \"malconc\",\n  \"malconcio\": \"malconc\",\n  \"malcontenta\": \"malcontent\",\n  \"malcontenti\": \"malcontent\",\n  \"malcontento\": \"malcontent\",\n  \"maldestramente\": \"maldestr\",\n  \"maldestro\": \"maldestr\",\n  \"maldini\": \"maldin\",\n  \"male\": \"mal\",\n  \"malebolge\": \"malebolg\",\n  \"maledetta\": \"maledett\",\n  \"maledette\": \"maledett\",\n  \"maledetti\": \"maledett\",\n  \"maledetto\": \"maledett\",\n  \"maledicevano\": \"maledic\",\n  \"maledicono\": \"maledic\",\n  \"maledizione\": \"maledizion\",\n  \"maleeva\": \"mal\",\n  \"malefatte\": \"malefatt\",\n  \"malefica\": \"malef\",\n  \"malefiche\": \"malef\",\n  \"maleficio\": \"malefic\",\n  \"malefizio\": \"malefiz\",\n  \"malfa\": \"malf\",\n  \"malformazioni\": \"malform\",\n  \"malfunzionamento\": \"malfunzion\",\n  \"malgeri\": \"malger\",\n  \"malgieri\": \"malgier\",\n  \"malgrado\": \"malgrad\",\n  \"mali\": \"mal\",\n  \"maliardi\": \"maliard\",\n  \"malìe\": \"malì\",\n  \"maligna\": \"malign\",\n  \"maligne\": \"malign\",\n  \"maligni\": \"malign\",\n  \"maligno\": \"malign\",\n  \"malinconia\": \"malincon\",\n  \"malinconica\": \"malincon\",\n  \"malinconiche\": \"malincon\",\n  \"malinconici\": \"malincon\",\n  \"malinconie\": \"malincon\",\n  \"malincorpo\": \"malincorp\",\n  \"malincuore\": \"malincuor\",\n  \"malines\": \"malines\",\n  \"malissimo\": \"malissim\",\n  \"malitia\": \"malit\",\n  \"malivai\": \"maliva\",\n  \"malizia\": \"maliz\",\n  \"malizie\": \"maliz\",\n  \"maliziosa\": \"maliz\",\n  \"malizioso\": \"maliz\",\n  \"mallevadore\": \"mallevador\",\n  \"malmenata\": \"malmen\",\n  \"malmenati\": \"malmen\",\n  \"malmenato\": \"malmen\",\n  \"malora\": \"malor\",\n  \"malore\": \"malor\",\n  \"malpica\": \"malpic\",\n  \"malsicuro\": \"malsicur\",\n  \"malsupportati\": \"malsupport\",\n  \"malta\": \"malt\",\n  \"maltagliati\": \"maltagl\",\n  \"maltesi\": \"maltes\",\n  \"maltolto\": \"maltolt\",\n  \"maltrattamenti\": \"maltratt\",\n  \"maltrattarla\": \"maltratt\",\n  \"maltrattata\": \"maltratt\",\n  \"maltrattavan\": \"maltrattavan\",\n  \"malum\": \"malum\",\n  \"malumori\": \"malumor\",\n  \"malusci\": \"malusc\",\n  \"malvaggità\": \"malvagg\",\n  \"malvagi\": \"malvag\",\n  \"malvagio\": \"malvag\",\n  \"malvagità\": \"malvag\",\n  \"malvestitito\": \"malvestit\",\n  \"malvestito\": \"malvest\",\n  \"malvezzi\": \"malvezz\",\n  \"malvinas\": \"malvinas\",\n  \"malvivente\": \"malvivent\",\n  \"malviventi\": \"malvivent\",\n  \"malvolentieri\": \"malvolentier\",\n  \"mamma\": \"mamm\",\n  \"mammella\": \"mammell\",\n  \"mammì\": \"mamm\",\n  \"man\": \"man\",\n  \"manacaparù\": \"manacaparù\",\n  \"manacce\": \"manacc\",\n  \"manaccia\": \"manacc\",\n  \"management\": \"management\",\n  \"manager\": \"manager\",\n  \"manageriali\": \"managerial\",\n  \"manantes\": \"manantes\",\n  \"manata\": \"man\",\n  \"manate\": \"man\",\n  \"manaus\": \"manaus\",\n  \"manca\": \"manc\",\n  \"mancamenti\": \"manc\",\n  \"mancamento\": \"manc\",\n  \"mancandogli\": \"manc\",\n  \"mancano\": \"manc\",\n  \"mancante\": \"mancant\",\n  \"mancanza\": \"mancanz\",\n  \"mancar\": \"manc\",\n  \"mancare\": \"manc\",\n  \"mancargli\": \"manc\",\n  \"mancarmi\": \"manc\",\n  \"mancaron\": \"mancaron\",\n  \"mancarono\": \"manc\",\n  \"mancarvi\": \"manc\",\n  \"mancasse\": \"manc\",\n  \"mancassero\": \"manc\",\n  \"mancata\": \"manc\",\n  \"mancate\": \"manc\",\n  \"mancati\": \"manc\",\n  \"mancato\": \"manc\",\n  \"mancava\": \"manc\",\n  \"mancavan\": \"mancavan\",\n  \"mancavano\": \"manc\",\n  \"mancera\": \"mancer\",\n  \"manche\": \"manc\",\n  \"mancherà\": \"manc\",\n  \"mancheranno\": \"manc\",\n  \"mancherebbe\": \"manc\",\n  \"mancherete\": \"manc\",\n  \"mancherò\": \"manc\",\n  \"manches\": \"manches\",\n  \"manchester\": \"manchester\",\n  \"manchi\": \"manc\",\n  \"manchino\": \"manchin\",\n  \"mancia\": \"manc\",\n  \"manciata\": \"manc\",\n  \"mancina\": \"mancin\",\n  \"mancine\": \"mancin\",\n  \"mancini\": \"mancin\",\n  \"mancino\": \"mancin\",\n  \"mancò\": \"manc\",\n  \"manconi\": \"mancon\",\n  \"mancuso\": \"mancus\",\n  \"manda\": \"mand\",\n  \"mandalari\": \"mandalar\",\n  \"mandan\": \"mandan\",\n  \"mandando\": \"mand\",\n  \"mandante\": \"mandant\",\n  \"mandar\": \"mand\",\n  \"mandare\": \"mand\",\n  \"mandarla\": \"mand\",\n  \"mandarli\": \"mand\",\n  \"mandarlo\": \"mand\",\n  \"mandarono\": \"mand\",\n  \"mandasse\": \"mand\",\n  \"mandassi\": \"mand\",\n  \"mandata\": \"mand\",\n  \"mandate\": \"mand\",\n  \"mandateglieli\": \"mandategliel\",\n  \"mandati\": \"mand\",\n  \"mandato\": \"mand\",\n  \"mandava\": \"mand\",\n  \"mandavamo\": \"mand\",\n  \"mandavan\": \"mandavan\",\n  \"mandavano\": \"mand\",\n  \"mandela\": \"mandel\",\n  \"mandelli\": \"mandell\",\n  \"manderà\": \"mand\",\n  \"manderai\": \"mand\",\n  \"manderebbe\": \"mand\",\n  \"manderemo\": \"mand\",\n  \"manderò\": \"mand\",\n  \"mandi\": \"mand\",\n  \"mandiate\": \"mand\",\n  \"mando\": \"mand\",\n  \"mandò\": \"mand\",\n  \"mandorlo\": \"mandorl\",\n  \"mandra\": \"mandr\",\n  \"maneggi\": \"manegg\",\n  \"maneggiare\": \"manegg\",\n  \"maneggiarlo\": \"manegg\",\n  \"maneggiarne\": \"manegg\",\n  \"maneggio\": \"manegg\",\n  \"maneggj\": \"maneggj\",\n  \"manero\": \"maner\",\n  \"manette\": \"manett\",\n  \"manetti\": \"manett\",\n  \"manfred\": \"manfred\",\n  \"manganiello\": \"manganiell\",\n  \"mangeranno\": \"mang\",\n  \"mangeremo\": \"mang\",\n  \"mangerò\": \"mang\",\n  \"mangi\": \"mang\",\n  \"mangia\": \"mang\",\n  \"mangian\": \"mangian\",\n  \"mangiando\": \"mang\",\n  \"mangiano\": \"mang\",\n  \"mangiar\": \"mang\",\n  \"mangiare\": \"mang\",\n  \"mangiarne\": \"mang\",\n  \"mangiasse\": \"mang\",\n  \"mangiate\": \"mang\",\n  \"mangiatina\": \"mangiatin\",\n  \"mangiato\": \"mang\",\n  \"mangiatore\": \"mangiator\",\n  \"mangiavano\": \"mang\",\n  \"mangiò\": \"mang\",\n  \"mangone\": \"mangon\",\n  \"mani\": \"man\",\n  \"manica\": \"manic\",\n  \"maniche\": \"manic\",\n  \"manichi\": \"manic\",\n  \"manichini\": \"manichin\",\n  \"manichino\": \"manichin\",\n  \"manico\": \"manic\",\n  \"manicone\": \"manicon\",\n  \"maniera\": \"manier\",\n  \"manieraccia\": \"manieracc\",\n  \"maniere\": \"man\",\n  \"maniero\": \"manier\",\n  \"manierosa\": \"manier\",\n  \"manieroso\": \"manier\",\n  \"manif\": \"manif\",\n  \"manifattura\": \"manifattur\",\n  \"manifatturiera\": \"manifatturier\",\n  \"manifesta\": \"manifest\",\n  \"manifestamente\": \"manifest\",\n  \"manifestano\": \"manifest\",\n  \"manifestanti\": \"manifest\",\n  \"manifestare\": \"manifest\",\n  \"manifestarsi\": \"manifest\",\n  \"manifestata\": \"manifest\",\n  \"manifestate\": \"manifest\",\n  \"manifestato\": \"manifest\",\n  \"manifestava\": \"manifest\",\n  \"manifestazione\": \"manifest\",\n  \"manifestazioni\": \"manifest\",\n  \"manifeste\": \"manifest\",\n  \"manifesti\": \"manifest\",\n  \"manifestini\": \"manifestin\",\n  \"manifesto\": \"manifest\",\n  \"manifestò\": \"manifest\",\n  \"manighetti\": \"manighett\",\n  \"maniglia\": \"manigl\",\n  \"manigoldi\": \"manigold\",\n  \"manigoldo\": \"manigold\",\n  \"manila\": \"manil\",\n  \"manina\": \"manin\",\n  \"manipolare\": \"manipol\",\n  \"manipolazione\": \"manipol\",\n  \"manipur\": \"manipur\",\n  \"manitur\": \"manitur\",\n  \"manna\": \"mann\",\n  \"mannini\": \"mannin\",\n  \"mano\": \"man\",\n  \"manomettere\": \"manomett\",\n  \"manos\": \"manos\",\n  \"manoscritte\": \"manoscritt\",\n  \"manoscritti\": \"manoscritt\",\n  \"manoscritto\": \"manoscritt\",\n  \"manovra\": \"manovr\",\n  \"manovre\": \"manovr\",\n  \"manovrina\": \"manovrin\",\n  \"mansarda\": \"mansard\",\n  \"mansueta\": \"mansuet\",\n  \"mansuetudine\": \"mansuetudin\",\n  \"mantello\": \"mantell\",\n  \"mantenendo\": \"manten\",\n  \"mantener\": \"mantener\",\n  \"mantenere\": \"manten\",\n  \"mantenergli\": \"manten\",\n  \"mantenerhe\": \"mantenerh\",\n  \"mantenerla\": \"manten\",\n  \"mantenerlo\": \"manten\",\n  \"mantenerne\": \"manten\",\n  \"mantenervi\": \"manten\",\n  \"mantenesse\": \"manteness\",\n  \"mantenete\": \"manten\",\n  \"mantenevano\": \"manten\",\n  \"mantenga\": \"manteng\",\n  \"mantenimento\": \"manten\",\n  \"mantenne\": \"mantenn\",\n  \"mantenuta\": \"manten\",\n  \"mantenute\": \"manten\",\n  \"mantenuti\": \"manten\",\n  \"mantenuto\": \"manten\",\n  \"manterrà\": \"manterr\",\n  \"mantiene\": \"mantien\",\n  \"manto\": \"mant\",\n  \"mantova\": \"mantov\",\n  \"mantovana\": \"mantovan\",\n  \"mantovani\": \"mantovan\",\n  \"mantovano\": \"mantov\",\n  \"manu\": \"manu\",\n  \"manuale\": \"manual\",\n  \"manuela\": \"manuel\",\n  \"manufatta\": \"manufatt\",\n  \"manutenzione\": \"manutenzion\",\n  \"manzi\": \"manz\",\n  \"manzo\": \"manz\",\n  \"manzoni\": \"manzon\",\n  \"mappa\": \"mapp\",\n  \"mar\": \"mar\",\n  \"maradona\": \"maradon\",\n  \"maran\": \"maran\",\n  \"marangon\": \"marangon\",\n  \"marangoni\": \"marangon\",\n  \"marano\": \"mar\",\n  \"marassi\": \"mar\",\n  \"maratona\": \"maraton\",\n  \"maratoneti\": \"maratonet\",\n  \"maraviglia\": \"maravigl\",\n  \"maravigliare\": \"maravigl\",\n  \"maravigliassero\": \"maravigl\",\n  \"maravigliata\": \"maravigl\",\n  \"maravigliate\": \"maravigl\",\n  \"maravigliati\": \"maravigl\",\n  \"maravigliato\": \"maravigl\",\n  \"maravigliava\": \"maravigl\",\n  \"maraviglie\": \"maravigl\",\n  \"maraviglierei\": \"maravigl\",\n  \"maraviglio\": \"maravigl\",\n  \"maravigliosi\": \"maravigl\",\n  \"marc\": \"marc\",\n  \"marca\": \"marc\",\n  \"marcao\": \"marca\",\n  \"marcatori\": \"marcator\",\n  \"marcatura\": \"marcatur\",\n  \"marce\": \"marc\",\n  \"marcellino\": \"marcellin\",\n  \"marcello\": \"marcell\",\n  \"marcelo\": \"marcel\",\n  \"marche\": \"marc\",\n  \"marchegiani\": \"marchegian\",\n  \"marchese\": \"marches\",\n  \"marchi\": \"marc\",\n  \"marchigiana\": \"marchigian\",\n  \"marchigiani\": \"marchigian\",\n  \"marchingegno\": \"marchingegn\",\n  \"marchio\": \"marc\",\n  \"marchioro\": \"marchior\",\n  \"marcia\": \"marc\",\n  \"marciagranparadiso\": \"marciagranparadis\",\n  \"marcialonga\": \"marcialong\",\n  \"marciare\": \"marc\",\n  \"marcio\": \"marc\",\n  \"marciose\": \"marcios\",\n  \"marco\": \"marc\",\n  \"marcolin\": \"marcolin\",\n  \"marcon\": \"marcon\",\n  \"marconi\": \"marcon\",\n  \"marcos\": \"marcos\",\n  \"marcus\": \"marcus\",\n  \"mare\": \"mar\",\n  \"marea\": \"mare\",\n  \"marechiaro\": \"marechiar\",\n  \"mareggini\": \"mareggin\",\n  \"maremoto\": \"maremot\",\n  \"marenco\": \"marenc\",\n  \"marengo\": \"mareng\",\n  \"maresca\": \"maresc\",\n  \"margaret\": \"margaret\",\n  \"margarethe\": \"margareth\",\n  \"marghera\": \"margher\",\n  \"margherita\": \"margher\",\n  \"marginale\": \"marginal\",\n  \"marginalmente\": \"marginal\",\n  \"margine\": \"margin\",\n  \"margini\": \"margin\",\n  \"margiotta\": \"margiott\",\n  \"mari\": \"mar\",\n  \"maria\": \"mar\",\n  \"mariangela\": \"mariangel\",\n  \"mariani\": \"marian\",\n  \"marianna\": \"mariann\",\n  \"marianopoli\": \"marianopol\",\n  \"maribor\": \"maribor\",\n  \"marie\": \"mar\",\n  \"mariella\": \"mariell\",\n  \"marina\": \"marin\",\n  \"marinai\": \"marina\",\n  \"marine\": \"marin\",\n  \"marinerie\": \"mariner\",\n  \"marines\": \"marines\",\n  \"marini\": \"marin\",\n  \"marino\": \"marin\",\n  \"mario\": \"mar\",\n  \"mariolina\": \"mariolin\",\n  \"mariolo\": \"mariol\",\n  \"mariotto\": \"mariott\",\n  \"maritar\": \"marit\",\n  \"maritarci\": \"marit\",\n  \"maritare\": \"marit\",\n  \"maritarli\": \"marit\",\n  \"maritarmi\": \"marit\",\n  \"maritarsi\": \"marit\",\n  \"maritarvi\": \"marit\",\n  \"maritata\": \"marit\",\n  \"maritate\": \"marit\",\n  \"maritati\": \"marit\",\n  \"mariti\": \"mar\",\n  \"maritima\": \"maritim\",\n  \"marito\": \"mar\",\n  \"marittima\": \"marittim\",\n  \"marittime\": \"marittim\",\n  \"marittimi\": \"marittim\",\n  \"marittimo\": \"marittim\",\n  \"mark\": \"mark\",\n  \"markent\": \"markent\",\n  \"market\": \"market\",\n  \"markets\": \"markets\",\n  \"markin\": \"markin\",\n  \"markov\": \"markov\",\n  \"marmaglia\": \"marmagl\",\n  \"marmi\": \"marm\",\n  \"marmo\": \"marm\",\n  \"marocchi\": \"marocc\",\n  \"marocchino\": \"marocchin\",\n  \"marocco\": \"marocc\",\n  \"maroni\": \"maron\",\n  \"maronianì\": \"maronian\",\n  \"maroniavrebbe\": \"maroniavrebb\",\n  \"marpol\": \"marpol\",\n  \"marques\": \"marques\",\n  \"marra\": \"marr\",\n  \"marruche\": \"marruc\",\n  \"marsala\": \"marsal\",\n  \"marshall\": \"marshall\",\n  \"marsica\": \"marsic\",\n  \"marsiglia\": \"marsigl\",\n  \"marsili\": \"marsil\",\n  \"marta\": \"mart\",\n  \"martaban\": \"martaban\",\n  \"martedi\": \"marted\",\n  \"martedì\": \"marted\",\n  \"martella\": \"martell\",\n  \"martellandole\": \"martell\",\n  \"martellar\": \"martell\",\n  \"martelli\": \"martell\",\n  \"martello\": \"martell\",\n  \"martens\": \"martens\",\n  \"martigues\": \"martigues\",\n  \"martin\": \"martin\",\n  \"martinazzoli\": \"martinazzol\",\n  \"martino\": \"martin\",\n  \"martire\": \"mart\",\n  \"martiri\": \"martir\",\n  \"martirio\": \"martir\",\n  \"martirizzano\": \"martirizz\",\n  \"martirizzare\": \"martirizz\",\n  \"martirizzava\": \"martirizz\",\n  \"martoriato\": \"martor\",\n  \"martuffello\": \"martuffell\",\n  \"marvasi\": \"marvas\",\n  \"marx\": \"marx\",\n  \"marxista\": \"marxist\",\n  \"marzo\": \"marz\",\n  \"marzotto\": \"marzott\",\n  \"mas\": \"mas\",\n  \"mascalzone\": \"mascalzon\",\n  \"mascalzoni\": \"mascalzon\",\n  \"mascara\": \"mascar\",\n  \"maschera\": \"mascher\",\n  \"mascherati\": \"mascher\",\n  \"mascherato\": \"mascher\",\n  \"mascherava\": \"mascher\",\n  \"maschere\": \"masc\",\n  \"maschi\": \"masc\",\n  \"maschia\": \"masc\",\n  \"maschie\": \"masc\",\n  \"maschile\": \"maschil\",\n  \"maschili\": \"maschil\",\n  \"maserati\": \"maser\",\n  \"masetti\": \"masett\",\n  \"masi\": \"mas\",\n  \"masiero\": \"masier\",\n  \"masitto\": \"masitt\",\n  \"maskadov\": \"maskadov\",\n  \"maske\": \"mask\",\n  \"maskhadov\": \"maskhadov\",\n  \"masnada\": \"masnad\",\n  \"masnadieri\": \"masnadier\",\n  \"masnadiero\": \"masnadier\",\n  \"masone\": \"mason\",\n  \"maspero\": \"masper\",\n  \"mass\": \"mass\",\n  \"massa\": \"mass\",\n  \"massachusetts\": \"massachusetts\",\n  \"massaggi\": \"massagg\",\n  \"massaio\": \"massai\",\n  \"massaro\": \"massar\",\n  \"masse\": \"mass\",\n  \"masserizie\": \"masseriz\",\n  \"massese\": \"masses\",\n  \"massi\": \"mass\",\n  \"massicce\": \"massicc\",\n  \"massicci\": \"massicc\",\n  \"massiccia\": \"massicc\",\n  \"massiccio\": \"massicc\",\n  \"massima\": \"massim\",\n  \"massimale\": \"massimal\",\n  \"massimali\": \"massimal\",\n  \"massimalismo\": \"massimal\",\n  \"massime\": \"massim\",\n  \"massimi\": \"massim\",\n  \"massimo\": \"massim\",\n  \"masso\": \"mass\",\n  \"massoneria\": \"massoner\",\n  \"massonico\": \"masson\",\n  \"mastella\": \"mastell\",\n  \"master\": \"master\",\n  \"masters\": \"masters\",\n  \"masticando\": \"mastic\",\n  \"masticarla\": \"mastic\",\n  \"masticarsi\": \"mastic\",\n  \"mastini\": \"mastin\",\n  \"mastroianni\": \"mastroiann\",\n  \"mastrota\": \"mastrot\",\n  \"matadori\": \"matador\",\n  \"matasse\": \"mat\",\n  \"match\": \"matc\",\n  \"matematico\": \"matemat\",\n  \"matematicò\": \"matematic\",\n  \"matera\": \"mater\",\n  \"materassa\": \"materass\",\n  \"materassina\": \"materassin\",\n  \"materassine\": \"materassin\",\n  \"materazzi\": \"materazz\",\n  \"materia\": \"mater\",\n  \"materiale\": \"material\",\n  \"materialè\": \"material\",\n  \"materiali\": \"material\",\n  \"materialmente\": \"material\",\n  \"materialone\": \"materialon\",\n  \"materie\": \"mater\",\n  \"materna\": \"matern\",\n  \"maternità\": \"matern\",\n  \"materno\": \"matern\",\n  \"mathieu\": \"mathieu\",\n  \"matita\": \"mat\",\n  \"matlala\": \"matlal\",\n  \"matrice\": \"matric\",\n  \"matricolato\": \"matricol\",\n  \"matrimoni\": \"matrimon\",\n  \"matrimoniale\": \"matrimonial\",\n  \"matrimoniali\": \"matrimonial\",\n  \"matrimonii\": \"matrimon\",\n  \"matrimonio\": \"matrimon\",\n  \"matrimonium\": \"matrimonium\",\n  \"matrona\": \"matron\",\n  \"mattana\": \"mattan\",\n  \"mattarella\": \"mattarell\",\n  \"matteo\": \"matte\",\n  \"matteoli\": \"matteol\",\n  \"matteotti\": \"matteott\",\n  \"matterello\": \"matterell\",\n  \"matteucci\": \"matteucc\",\n  \"matti\": \"matt\",\n  \"mattina\": \"mattin\",\n  \"mattinata\": \"mattin\",\n  \"mattino\": \"mattin\",\n  \"mattioli\": \"mattiol\",\n  \"matto\": \"matt\",\n  \"mattone\": \"matton\",\n  \"mattoni\": \"matton\",\n  \"mattutine\": \"mattutin\",\n  \"matun\": \"matun\",\n  \"matura\": \"matur\",\n  \"maturando\": \"matur\",\n  \"maturare\": \"matur\",\n  \"maturato\": \"matur\",\n  \"maturazione\": \"matur\",\n  \"mature\": \"matur\",\n  \"maturerà\": \"matur\",\n  \"maturi\": \"matur\",\n  \"maturo\": \"matur\",\n  \"mauritania\": \"mauritan\",\n  \"maurizio\": \"mauriz\",\n  \"mauro\": \"maur\",\n  \"mausoleo\": \"mausole\",\n  \"max\": \"max\",\n  \"maxialleanza\": \"maxiall\",\n  \"maxima\": \"maxim\",\n  \"maximum\": \"maximum\",\n  \"maxiordine\": \"maxiordin\",\n  \"maxischermo\": \"maxischerm\",\n  \"maya\": \"may\",\n  \"mayer\": \"mayer\",\n  \"mayock\": \"mayock\",\n  \"mays\": \"mays\",\n  \"mazenta\": \"mazent\",\n  \"mazzanti\": \"mazzant\",\n  \"mazzantini\": \"mazzantin\",\n  \"mazzeo\": \"mazze\",\n  \"mazzetti\": \"mazzett\",\n  \"mazzetto\": \"mazzett\",\n  \"mazzo\": \"mazz\",\n  \"mazzola\": \"mazzol\",\n  \"mazzone\": \"mazzon\",\n  \"mb\": \"mb\",\n  \"mc\": \"mc\",\n  \"mccartney\": \"mccartney\",\n  \"mcquinn\": \"mcquinn\",\n  \"mdp\": \"mdp\",\n  \"me\": \"me\",\n  \"mea\": \"mea\",\n  \"meana\": \"mean\",\n  \"meazza\": \"meazz\",\n  \"mecca\": \"mecc\",\n  \"meccaniche\": \"meccan\",\n  \"meccanici\": \"meccan\",\n  \"meccanico\": \"meccan\",\n  \"meccanismi\": \"meccan\",\n  \"meccanismo\": \"meccan\",\n  \"meccanizzate\": \"meccanizz\",\n  \"meco\": \"mec\",\n  \"med\": \"med\",\n  \"meda\": \"med\",\n  \"medaglia\": \"medagl\",\n  \"medaglie\": \"medagl\",\n  \"medail\": \"medail\",\n  \"medesim\": \"medesim\",\n  \"medesima\": \"medesim\",\n  \"medesime\": \"medesim\",\n  \"medesimi\": \"medesim\",\n  \"medesimo\": \"medesim\",\n  \"medesmo\": \"medesm\",\n  \"medi\": \"med\",\n  \"media\": \"med\",\n  \"mediante\": \"mediant\",\n  \"mediare\": \"med\",\n  \"mediatori\": \"mediator\",\n  \"mediazione\": \"mediazion\",\n  \"medica\": \"medic\",\n  \"medicare\": \"medic\",\n  \"medicati\": \"medic\",\n  \"mediceo\": \"medice\",\n  \"medici\": \"medic\",\n  \"medicina\": \"medicin\",\n  \"medicinale\": \"medicinal\",\n  \"medicinali\": \"medicinal\",\n  \"medicine\": \"medicin\",\n  \"medico\": \"medic\",\n  \"medie\": \"med\",\n  \"medio\": \"med\",\n  \"mediob\": \"mediob\",\n  \"mediobanca\": \"mediobanc\",\n  \"mediocre\": \"mediocr\",\n  \"mediocredito\": \"mediocred\",\n  \"mediocremente\": \"mediocr\",\n  \"mediocri\": \"mediocr\",\n  \"mediocrità\": \"mediocr\",\n  \"mediolani\": \"mediolan\",\n  \"mediologica\": \"mediolog\",\n  \"mediomassimi\": \"mediomassim\",\n  \"mediorientali\": \"medioriental\",\n  \"medita\": \"med\",\n  \"meditando\": \"medit\",\n  \"meditano\": \"medit\",\n  \"meditare\": \"medit\",\n  \"meditata\": \"medit\",\n  \"meditava\": \"medit\",\n  \"meditazione\": \"medit\",\n  \"mediteraneo\": \"mediterane\",\n  \"mediterranea\": \"mediterrane\",\n  \"mediterranee\": \"mediterrane\",\n  \"mediterraneo\": \"mediterrane\",\n  \"meditettanean\": \"meditettanean\",\n  \"meeting\": \"meeting\",\n  \"mega\": \"meg\",\n  \"megabyte\": \"megabyt\",\n  \"megabytè\": \"megabyt\",\n  \"megaschermo\": \"megascherm\",\n  \"megawatt\": \"megawatt\",\n  \"meglio\": \"megl\",\n  \"mejor\": \"mejor\",\n  \"mela\": \"mel\",\n  \"melander\": \"melander\",\n  \"melania\": \"melan\",\n  \"melato\": \"mel\",\n  \"melba\": \"melb\",\n  \"melchiori\": \"melchior\",\n  \"mele\": \"mel\",\n  \"melfi\": \"melf\",\n  \"melito\": \"mel\",\n  \"melletta\": \"mellett\",\n  \"melli\": \"mell\",\n  \"melosi\": \"melos\",\n  \"meluzzi\": \"meluzz\",\n  \"melzer\": \"melzer\",\n  \"membra\": \"membr\",\n  \"membri\": \"membr\",\n  \"membro\": \"membr\",\n  \"memorabile\": \"memor\",\n  \"memorabili\": \"memor\",\n  \"memorandum\": \"memorandum\",\n  \"memoria\": \"memor\",\n  \"memoriale\": \"memorial\",\n  \"memorie\": \"memor\",\n  \"men\": \"men\",\n  \"mena\": \"men\",\n  \"menadito\": \"menad\",\n  \"menando\": \"men\",\n  \"menano\": \"men\",\n  \"menar\": \"men\",\n  \"menare\": \"men\",\n  \"menassero\": \"men\",\n  \"menateci\": \"menatec\",\n  \"menati\": \"men\",\n  \"menato\": \"men\",\n  \"menava\": \"men\",\n  \"menavano\": \"men\",\n  \"menconi\": \"mencon\",\n  \"mendicarne\": \"mendic\",\n  \"mendicati\": \"mendic\",\n  \"mendichi\": \"mendic\",\n  \"mendico\": \"mendic\",\n  \"mendozza\": \"mendozz\",\n  \"menegatti\": \"menegatt\",\n  \"menegon\": \"menegon\",\n  \"mengacci\": \"mengacc\",\n  \"meni\": \"men\",\n  \"menia\": \"men\",\n  \"menico\": \"menic\",\n  \"meno\": \"men\",\n  \"menò\": \"men\",\n  \"menomamente\": \"menom\",\n  \"mensa\": \"mens\",\n  \"mense\": \"mens\",\n  \"mensile\": \"mensil\",\n  \"mensili\": \"mensil\",\n  \"mensuale\": \"mensual\",\n  \"menta\": \"ment\",\n  \"mentale\": \"mental\",\n  \"mentali\": \"mental\",\n  \"mentalità\": \"mental\",\n  \"mentalmente\": \"mental\",\n  \"mentana\": \"mentan\",\n  \"mente\": \"ment\",\n  \"menti\": \"ment\",\n  \"mentire\": \"ment\",\n  \"mentite\": \"ment\",\n  \"mentito\": \"ment\",\n  \"mentitore\": \"mentitor\",\n  \"mento\": \"ment\",\n  \"mentovare\": \"mentov\",\n  \"mentre\": \"mentr\",\n  \"menù\": \"menù\",\n  \"menziona\": \"menzion\",\n  \"menzionata\": \"menzion\",\n  \"menzione\": \"menzion\",\n  \"menzogna\": \"menzogn\",\n  \"menzogne\": \"menzogn\",\n  \"mer\": \"mer\",\n  \"mera\": \"mer\",\n  \"meramente\": \"mer\",\n  \"meraviglia\": \"meravigl\",\n  \"meravigliosa\": \"meravigl\",\n  \"mercante\": \"mercant\",\n  \"mercantessa\": \"mercantess\",\n  \"mercanti\": \"mercant\",\n  \"mercantile\": \"mercantil\",\n  \"mercanzia\": \"mercanz\",\n  \"mercanzie\": \"mercanz\",\n  \"mercati\": \"merc\",\n  \"mercatino\": \"mercatin\",\n  \"mercato\": \"merc\",\n  \"merce\": \"merc\",\n  \"mercè\": \"merc\",\n  \"merchant\": \"merchant\",\n  \"merci\": \"merc\",\n  \"mercificassero\": \"mercific\",\n  \"merckx\": \"merckx\",\n  \"mercoled\": \"mercoled\",\n  \"mercoledi\": \"mercoled\",\n  \"mercoledì\": \"mercoled\",\n  \"mercosur\": \"mercosur\",\n  \"merenda\": \"mer\",\n  \"merid\": \"merid\",\n  \"meridionale\": \"meridional\",\n  \"meridionali\": \"meridional\",\n  \"meridione\": \"meridion\",\n  \"merino\": \"merin\",\n  \"merita\": \"mer\",\n  \"meritano\": \"merit\",\n  \"meritare\": \"merit\",\n  \"meritarlo\": \"merit\",\n  \"meritata\": \"merit\",\n  \"meritatamente\": \"meritat\",\n  \"meritato\": \"merit\",\n  \"meritava\": \"merit\",\n  \"meritavano\": \"merit\",\n  \"meriterebbe\": \"merit\",\n  \"meritevole\": \"meritevol\",\n  \"meriti\": \"mer\",\n  \"merito\": \"mer\",\n  \"meritoria\": \"meritor\",\n  \"merka\": \"merk\",\n  \"merlene\": \"merlen\",\n  \"merli\": \"merl\",\n  \"merlo\": \"merl\",\n  \"merloni\": \"merlon\",\n  \"merlotti\": \"merlott\",\n  \"merluzzi\": \"merluzz\",\n  \"mero\": \"mer\",\n  \"merode\": \"merod\",\n  \"merone\": \"meron\",\n  \"merrill\": \"merrill\",\n  \"merval\": \"merval\",\n  \"mes\": \"mes\",\n  \"mescé\": \"mesc\",\n  \"mescendo\": \"mesc\",\n  \"mescendosi\": \"mesc\",\n  \"mescere\": \"mesc\",\n  \"mesceva\": \"mesc\",\n  \"meschina\": \"meschin\",\n  \"meschine\": \"meschin\",\n  \"meschinello\": \"meschinell\",\n  \"meschini\": \"meschin\",\n  \"meschino\": \"meschin\",\n  \"mescola\": \"mescol\",\n  \"mescolando\": \"mescol\",\n  \"mescolano\": \"mescol\",\n  \"mescolarsi\": \"mescol\",\n  \"mescolate\": \"mescol\",\n  \"mescolati\": \"mescol\",\n  \"mescolato\": \"mescol\",\n  \"mescolava\": \"mescol\",\n  \"mescuglio\": \"mescugl\",\n  \"mese\": \"mes\",\n  \"mesi\": \"mes\",\n  \"messa\": \"mess\",\n  \"messaggera\": \"messagger\",\n  \"messaggero\": \"messagger\",\n  \"messaggi\": \"messagg\",\n  \"messaggiero\": \"messaggier\",\n  \"messaggio\": \"messagg\",\n  \"messale\": \"messal\",\n  \"messe\": \"mess\",\n  \"messele\": \"messel\",\n  \"messer\": \"messer\",\n  \"messere\": \"mess\",\n  \"messi\": \"mess\",\n  \"messicana\": \"messican\",\n  \"messicane\": \"messican\",\n  \"messicani\": \"messican\",\n  \"messicano\": \"messic\",\n  \"messico\": \"messic\",\n  \"messina\": \"messin\",\n  \"messo\": \"mess\",\n  \"messori\": \"messor\",\n  \"messosi\": \"messos\",\n  \"mesta\": \"mest\",\n  \"mesti\": \"mest\",\n  \"mestiere\": \"mest\",\n  \"mestieri\": \"mestier\",\n  \"mestizia\": \"mestiz\",\n  \"mesto\": \"mest\",\n  \"mestolo\": \"mestol\",\n  \"meta\": \"met\",\n  \"metà\": \"met\",\n  \"metafisica\": \"metafis\",\n  \"metafisiche\": \"metafis\",\n  \"metafisico\": \"metafis\",\n  \"metafora\": \"metafor\",\n  \"metafore\": \"metafor\",\n  \"metall\": \"metall\",\n  \"metalli\": \"metall\",\n  \"metallo\": \"metall\",\n  \"metallurgiche\": \"metallurg\",\n  \"metallurgici\": \"metallurg\",\n  \"metallurgico\": \"metallurg\",\n  \"metalmeccanica\": \"metalmeccan\",\n  \"metalmeccaniche\": \"metalmeccan\",\n  \"metalmeccanici\": \"metalmeccan\",\n  \"metalmeccanico\": \"metalmeccan\",\n  \"metamorfosi\": \"metamorf\",\n  \"metaniere\": \"metan\",\n  \"metano\": \"met\",\n  \"metanopoli\": \"metanopol\",\n  \"metastasio\": \"metastas\",\n  \"meteo\": \"mete\",\n  \"meteorite\": \"meteor\",\n  \"meteorologia\": \"meteorolog\",\n  \"metereologia\": \"metereolog\",\n  \"meteria\": \"meter\",\n  \"meticolosamente\": \"meticol\",\n  \"metodi\": \"metod\",\n  \"metodo\": \"metod\",\n  \"metri\": \"metr\",\n  \"metro\": \"metr\",\n  \"metrò\": \"metr\",\n  \"metropolitana\": \"metropolitan\",\n  \"metta\": \"mett\",\n  \"mettano\": \"mett\",\n  \"mette\": \"mett\",\n  \"mettendo\": \"mett\",\n  \"mettendoci\": \"mett\",\n  \"mettendole\": \"mett\",\n  \"mettendosi\": \"mett\",\n  \"mettendovi\": \"mett\",\n  \"metter\": \"metter\",\n  \"metterà\": \"mett\",\n  \"metteranno\": \"mett\",\n  \"metterci\": \"mett\",\n  \"mettercisi\": \"mettercis\",\n  \"mettere\": \"mett\",\n  \"metterebbe\": \"mett\",\n  \"metteremo\": \"mett\",\n  \"metterete\": \"mett\",\n  \"mettergli\": \"mett\",\n  \"metterla\": \"mett\",\n  \"metterle\": \"mett\",\n  \"metterli\": \"mett\",\n  \"metterlo\": \"mett\",\n  \"mettermi\": \"mett\",\n  \"mettermici\": \"metterm\",\n  \"metterne\": \"mett\",\n  \"metterò\": \"mett\",\n  \"mettersela\": \"mettersel\",\n  \"mettersele\": \"mettersel\",\n  \"metterseli\": \"mettersel\",\n  \"mettersi\": \"mett\",\n  \"metterti\": \"mett\",\n  \"mettervi\": \"mett\",\n  \"mettesse\": \"mettess\",\n  \"mettessero\": \"mett\",\n  \"mettessimo\": \"mettessim\",\n  \"metteva\": \"mett\",\n  \"mettevan\": \"mettevan\",\n  \"mettevano\": \"mett\",\n  \"metti\": \"mett\",\n  \"mettiamo\": \"mett\",\n  \"mettila\": \"mettil\",\n  \"mettimale\": \"mettimal\",\n  \"metto\": \"mett\",\n  \"metton\": \"metton\",\n  \"mettono\": \"mett\",\n  \"metz\": \"metz\",\n  \"mexicana\": \"mexican\",\n  \"meyer\": \"meyer\",\n  \"mezz\": \"mezz\",\n  \"mezza\": \"mezz\",\n  \"mezzaluna\": \"mezzalun\",\n  \"mezzani\": \"mezzan\",\n  \"mezzanotte\": \"mezzanott\",\n  \"mezze\": \"mezz\",\n  \"mezzetta\": \"mezzett\",\n  \"mezzi\": \"mezz\",\n  \"mezzo\": \"mezz\",\n  \"mezzogiorno\": \"mezzogiorn\",\n  \"mficamente\": \"mfic\",\n  \"mg\": \"mg\",\n  \"mi\": \"mi\",\n  \"mia\": \"mia\",\n  \"miami\": \"miam\",\n  \"mib\": \"mib\",\n  \"mibtel\": \"mibtel\",\n  \"miccichè\": \"miccic\",\n  \"miceli\": \"micel\",\n  \"michael\": \"michael\",\n  \"michalkov\": \"michalkov\",\n  \"michel\": \"michel\",\n  \"michela\": \"michel\",\n  \"michelaccio\": \"michelacc\",\n  \"michele\": \"michel\",\n  \"micheletti\": \"michelett\",\n  \"michelle\": \"michell\",\n  \"michetti\": \"michett\",\n  \"micidiale\": \"micidial\",\n  \"micillo\": \"micill\",\n  \"microfono\": \"microf\",\n  \"micromagie\": \"micromag\",\n  \"microprocessori\": \"microprocessor\",\n  \"microsoft\": \"microsoft\",\n  \"mida\": \"mid\",\n  \"middle\": \"middl\",\n  \"midei\": \"mide\",\n  \"midget\": \"midget\",\n  \"mie\": \"mie\",\n  \"miei\": \"mie\",\n  \"mieli\": \"miel\",\n  \"miert\": \"miert\",\n  \"miete\": \"miet\",\n  \"mietere\": \"miet\",\n  \"mig\": \"mig\",\n  \"miglia\": \"migl\",\n  \"migliaia\": \"migliai\",\n  \"migliaio\": \"migliai\",\n  \"miglietta\": \"migliett\",\n  \"miglio\": \"migl\",\n  \"miglior\": \"miglior\",\n  \"migliora\": \"miglior\",\n  \"miglioramento\": \"miglior\",\n  \"migliorando\": \"miglior\",\n  \"migliorano\": \"miglior\",\n  \"migliorare\": \"miglior\",\n  \"migliorata\": \"miglior\",\n  \"migliorati\": \"miglior\",\n  \"migliorato\": \"miglior\",\n  \"migliore\": \"miglior\",\n  \"migliorerà\": \"miglior\",\n  \"migliori\": \"miglior\",\n  \"migo\": \"mig\",\n  \"miguel\": \"miguel\",\n  \"mih\": \"mih\",\n  \"mihajlovic\": \"mihajlovic\",\n  \"mike\": \"mik\",\n  \"mikhail\": \"mikhail\",\n  \"mikhalkov\": \"mikhalkov\",\n  \"miklos\": \"miklos\",\n  \"mil\": \"mil\",\n  \"mila\": \"mil\",\n  \"milan\": \"milan\",\n  \"milanese\": \"milanes\",\n  \"milanesi\": \"milanes\",\n  \"milani\": \"milan\",\n  \"milanista\": \"milan\",\n  \"milanisti\": \"milan\",\n  \"milano\": \"mil\",\n  \"milardi\": \"milard\",\n  \"milian\": \"milian\",\n  \"miliardarie\": \"miliardar\",\n  \"miliardi\": \"miliard\",\n  \"miliardo\": \"miliard\",\n  \"milion\": \"milion\",\n  \"milione\": \"milion\",\n  \"milioni\": \"milion\",\n  \"militante\": \"milit\",\n  \"militanti\": \"milit\",\n  \"militanza\": \"milit\",\n  \"militare\": \"milit\",\n  \"militari\": \"militar\",\n  \"militeck\": \"militeck\",\n  \"milizia\": \"miliz\",\n  \"miliziani\": \"milizian\",\n  \"milizie\": \"miliz\",\n  \"mill\": \"mill\",\n  \"millantato\": \"millant\",\n  \"millanteria\": \"millanter\",\n  \"mille\": \"mill\",\n  \"millennio\": \"millenn\",\n  \"miller\": \"miller\",\n  \"milo\": \"mil\",\n  \"mimì\": \"mim\",\n  \"mimmo\": \"mimm\",\n  \"mimouni\": \"mimoun\",\n  \"mimun\": \"mimun\",\n  \"mina\": \"min\",\n  \"minacce\": \"minacc\",\n  \"minaccevole\": \"minaccevol\",\n  \"minacci\": \"minacc\",\n  \"minaccia\": \"minacc\",\n  \"minacciando\": \"minacc\",\n  \"minacciare\": \"minacc\",\n  \"minacciarono\": \"minacc\",\n  \"minacciata\": \"minacc\",\n  \"minacciate\": \"minacc\",\n  \"minacciati\": \"minacc\",\n  \"minacciato\": \"minacc\",\n  \"minacciava\": \"minacc\",\n  \"minacciavano\": \"minacc\",\n  \"minacciosa\": \"minacc\",\n  \"minacciose\": \"minacc\",\n  \"minacciosi\": \"minacc\",\n  \"minaccioso\": \"minacc\",\n  \"minaciati\": \"minac\",\n  \"minafra\": \"minafr\",\n  \"minar\": \"min\",\n  \"minata\": \"min\",\n  \"minaudo\": \"minaud\",\n  \"mindy\": \"mindy\",\n  \"mine\": \"min\",\n  \"minerali\": \"mineral\",\n  \"minerarie\": \"minerar\",\n  \"minestra\": \"minestr\",\n  \"mingherlino\": \"mingherlin\",\n  \"mini\": \"min\",\n  \"miniati\": \"min\",\n  \"minibar\": \"minib\",\n  \"minicucci\": \"minicucc\",\n  \"minigonna\": \"minigonn\",\n  \"minima\": \"minim\",\n  \"minimamente\": \"minim\",\n  \"minime\": \"minim\",\n  \"minimi\": \"minim\",\n  \"minimizzare\": \"minimizz\",\n  \"minimizzato\": \"minimizz\",\n  \"minimo\": \"minim\",\n  \"minimò\": \"minim\",\n  \"miniserie\": \"miniser\",\n  \"ministeo\": \"ministe\",\n  \"ministeri\": \"minister\",\n  \"ministeriale\": \"ministerial\",\n  \"ministeriali\": \"ministerial\",\n  \"ministero\": \"minister\",\n  \"ministra\": \"ministr\",\n  \"ministri\": \"ministr\",\n  \"ministro\": \"ministr\",\n  \"minnelli\": \"minnell\",\n  \"mino\": \"min\",\n  \"minor\": \"minor\",\n  \"minoranza\": \"minor\",\n  \"minoranze\": \"minor\",\n  \"minore\": \"minor\",\n  \"minorenni\": \"minorenn\",\n  \"minori\": \"minor\",\n  \"minotti\": \"minott\",\n  \"minusvalenze\": \"minusvalent\",\n  \"minuta\": \"min\",\n  \"minutamente\": \"minut\",\n  \"minute\": \"min\",\n  \"minuti\": \"min\",\n  \"minutka\": \"minutk\",\n  \"minuto\": \"min\",\n  \"minutò\": \"minut\",\n  \"minuzie\": \"minuz\",\n  \"minya\": \"miny\",\n  \"minzolini\": \"minzolin\",\n  \"minzoliniana\": \"minzolinian\",\n  \"mio\": \"mio\",\n  \"mira\": \"mir\",\n  \"mirabelli\": \"mirabell\",\n  \"mirabil\": \"mirabil\",\n  \"mirabile\": \"mirabil\",\n  \"mirabili\": \"mirabil\",\n  \"mirabilmente\": \"mirabil\",\n  \"miracoli\": \"miracol\",\n  \"miracolo\": \"miracol\",\n  \"miracolosa\": \"miracol\",\n  \"miracolosamente\": \"miracol\",\n  \"miracolosi\": \"miracol\",\n  \"miraggio\": \"miragg\",\n  \"mirallegri\": \"mirallegr\",\n  \"miran\": \"miran\",\n  \"miranda\": \"mirand\",\n  \"mirano\": \"mir\",\n  \"mirar\": \"mir\",\n  \"mirare\": \"mir\",\n  \"mirata\": \"mir\",\n  \"mirato\": \"mir\",\n  \"mirava\": \"mir\",\n  \"mire\": \"mir\",\n  \"miridionali\": \"miridional\",\n  \"mirino\": \"mirin\",\n  \"mirko\": \"mirk\",\n  \"miroglio\": \"mirogl\",\n  \"mirror\": \"mirror\",\n  \"mis\": \"mis\",\n  \"miscele\": \"miscel\",\n  \"mischia\": \"misc\",\n  \"mischiando\": \"misc\",\n  \"mischiarsi\": \"misc\",\n  \"mischiati\": \"misc\",\n  \"mischiato\": \"misc\",\n  \"mischiava\": \"misc\",\n  \"miscredenza\": \"miscredent\",\n  \"miscuglio\": \"miscugl\",\n  \"mise\": \"mis\",\n  \"misera\": \"miser\",\n  \"miserabil\": \"miserabil\",\n  \"miserabile\": \"miser\",\n  \"miserabili\": \"miser\",\n  \"miserabilmente\": \"miserabil\",\n  \"miserere\": \"miser\",\n  \"miseri\": \"miser\",\n  \"miseria\": \"miser\",\n  \"misericordia\": \"misericord\",\n  \"misericordie\": \"misericord\",\n  \"misericordiosa\": \"misericord\",\n  \"misericordioso\": \"misericord\",\n  \"miserie\": \"miser\",\n  \"misero\": \"miser\",\n  \"misfatti\": \"misfatt\",\n  \"miss\": \"miss\",\n  \"misserville\": \"misservill\",\n  \"missilistica\": \"missilist\",\n  \"missino\": \"missin\",\n  \"missionaria\": \"missionar\",\n  \"missionarie\": \"missionar\",\n  \"missionario\": \"missionar\",\n  \"missione\": \"mission\",\n  \"missioni\": \"mission\",\n  \"mississipi\": \"mississip\",\n  \"missiva\": \"miss\",\n  \"mista\": \"mist\",\n  \"miste\": \"mist\",\n  \"misteri\": \"mister\",\n  \"misteriori\": \"misterior\",\n  \"misteriosa\": \"mister\",\n  \"misteriosamente\": \"mister\",\n  \"misteriose\": \"mister\",\n  \"misteriosi\": \"mister\",\n  \"misterioso\": \"mister\",\n  \"mistero\": \"mister\",\n  \"mistica\": \"mistic\",\n  \"misto\": \"mist\",\n  \"mistretta\": \"mistrett\",\n  \"mistura\": \"mistur\",\n  \"misura\": \"misur\",\n  \"misurar\": \"misur\",\n  \"misurare\": \"misur\",\n  \"misurarlo\": \"misur\",\n  \"misurarsi\": \"misur\",\n  \"misurata\": \"misur\",\n  \"misurati\": \"misur\",\n  \"misurato\": \"misur\",\n  \"misuratore\": \"misur\",\n  \"misurava\": \"misur\",\n  \"misure\": \"misur\",\n  \"mit\": \"mit\",\n  \"mita\": \"mit\",\n  \"mitica\": \"mitic\",\n  \"mitigata\": \"mitig\",\n  \"mitigato\": \"mitig\",\n  \"mitigava\": \"mitig\",\n  \"mitizzata\": \"mitizz\",\n  \"mito\": \"mit\",\n  \"mitra\": \"mitr\",\n  \"mitragliatrice\": \"mitragl\",\n  \"mitrato\": \"mitr\",\n  \"mitsubishi\": \"mitsubish\",\n  \"mittel\": \"mittel\",\n  \"mittmensch\": \"mittmensc\",\n  \"miu\": \"miu\",\n  \"miura\": \"miur\",\n  \"miz\": \"miz\",\n  \"ml\": \"ml\",\n  \"mll\": \"mll\",\n  \"mm\": \"mm\",\n  \"mmw\": \"mmw\",\n  \"mmx\": \"mmx\",\n  \"mn\": \"mn\",\n  \"mo\": \"mo\",\n  \"mò\": \"mò\",\n  \"mob\": \"mob\",\n  \"mobi\": \"mob\",\n  \"mobil\": \"mobil\",\n  \"mobile\": \"mobil\",\n  \"mobili\": \"mobil\",\n  \"mobilificio\": \"mobilific\",\n  \"mobilità\": \"mobil\",\n  \"mobilitare\": \"mobilit\",\n  \"mobilitati\": \"mobilit\",\n  \"mobilitato\": \"mobilit\",\n  \"mobilitazione\": \"mobilit\",\n  \"moccolo\": \"moccol\",\n  \"mod\": \"mod\",\n  \"moda\": \"mod\",\n  \"modadiscio\": \"modadisc\",\n  \"modalità\": \"modal\",\n  \"mode\": \"mod\",\n  \"modella\": \"modell\",\n  \"modelli\": \"modell\",\n  \"modello\": \"modell\",\n  \"modena\": \"moden\",\n  \"modenese\": \"modenes\",\n  \"moderare\": \"moder\",\n  \"moderarle\": \"moder\",\n  \"moderata\": \"moder\",\n  \"moderate\": \"moder\",\n  \"moderati\": \"moder\",\n  \"moderatismo\": \"moderat\",\n  \"moderato\": \"moder\",\n  \"moderatore\": \"moder\",\n  \"moderazione\": \"moder\",\n  \"moderna\": \"modern\",\n  \"moderni\": \"modern\",\n  \"modernità\": \"modern\",\n  \"moderno\": \"modern\",\n  \"modesta\": \"modest\",\n  \"modestamente\": \"modest\",\n  \"modeste\": \"modest\",\n  \"modesti\": \"modest\",\n  \"modestia\": \"modest\",\n  \"modesto\": \"modest\",\n  \"modhumangal\": \"modhumangal\",\n  \"modi\": \"mod\",\n  \"modica\": \"modic\",\n  \"modifica\": \"modif\",\n  \"modificando\": \"modific\",\n  \"modificare\": \"modific\",\n  \"modificata\": \"modific\",\n  \"modificate\": \"modific\",\n  \"modificato\": \"modific\",\n  \"modifiche\": \"modif\",\n  \"modo\": \"mod\",\n  \"modulare\": \"modul\",\n  \"moduli\": \"modul\",\n  \"moeller\": \"moeller\",\n  \"mogadisciani\": \"mogadiscian\",\n  \"mogadiscio\": \"mogadisc\",\n  \"moggio\": \"mogg\",\n  \"mogli\": \"mogl\",\n  \"moglie\": \"mogl\",\n  \"mohammed\": \"mohammed\",\n  \"mohawk\": \"mohawk\",\n  \"mohovke\": \"mohovk\",\n  \"mohtashemi\": \"mohtashem\",\n  \"moia\": \"moi\",\n  \"moiano\": \"moi\",\n  \"moine\": \"moin\",\n  \"moio\": \"moi\",\n  \"moioli\": \"moiol\",\n  \"moion\": \"moion\",\n  \"moiono\": \"moi\",\n  \"mole\": \"mol\",\n  \"molesta\": \"molest\",\n  \"molestar\": \"molest\",\n  \"molestare\": \"molest\",\n  \"molestato\": \"molest\",\n  \"molesti\": \"molest\",\n  \"molestie\": \"molest\",\n  \"molfetta\": \"molfett\",\n  \"molinari\": \"molinar\",\n  \"molino\": \"molin\",\n  \"molla\": \"moll\",\n  \"mollare\": \"moll\",\n  \"molle\": \"moll\",\n  \"mollemente\": \"mollement\",\n  \"molli\": \"moll\",\n  \"mollo\": \"moll\",\n  \"molt\": \"molt\",\n  \"molta\": \"molt\",\n  \"molte\": \"molt\",\n  \"molteno\": \"molten\",\n  \"molteplici\": \"moltepl\",\n  \"molti\": \"molt\",\n  \"moltiplicando\": \"moltiplic\",\n  \"moltiplicano\": \"moltiplic\",\n  \"moltiplicare\": \"moltiplic\",\n  \"moltiplicarsi\": \"moltiplic\",\n  \"moltiplicava\": \"moltiplic\",\n  \"moltiplicazione\": \"moltipl\",\n  \"moltiplice\": \"moltipl\",\n  \"moltiplici\": \"moltipl\",\n  \"moltissime\": \"moltissim\",\n  \"moltissimi\": \"moltissim\",\n  \"moltissimo\": \"moltissim\",\n  \"moltitudine\": \"moltitudin\",\n  \"molto\": \"molt\",\n  \"mombasa\": \"mombas\",\n  \"momentanea\": \"momentane\",\n  \"momentaneamente\": \"momentan\",\n  \"momentaneo\": \"momentane\",\n  \"momentano\": \"moment\",\n  \"momenti\": \"moment\",\n  \"momentino\": \"momentin\",\n  \"momento\": \"moment\",\n  \"monaca\": \"monac\",\n  \"monacanda\": \"monacand\",\n  \"monacande\": \"monacand\",\n  \"monache\": \"monac\",\n  \"monaci\": \"monac\",\n  \"monaco\": \"monac\",\n  \"monarca\": \"monarc\",\n  \"monasteri\": \"monaster\",\n  \"monastero\": \"monaster\",\n  \"monate\": \"mon\",\n  \"monathlich\": \"monathlic\",\n  \"monatti\": \"monatt\",\n  \"monatto\": \"monatt\",\n  \"monattuccio\": \"monattucc\",\n  \"moncassin\": \"moncassin\",\n  \"monche\": \"monc\",\n  \"moncone\": \"moncon\",\n  \"monda\": \"mond\",\n  \"mondadori\": \"mondador\",\n  \"mondana\": \"mondan\",\n  \"mondani\": \"mondan\",\n  \"mondè\": \"mond\",\n  \"mondella\": \"mondell\",\n  \"mondi\": \"mond\",\n  \"mondiale\": \"mondial\",\n  \"mondialfondo\": \"mondialfond\",\n  \"mondiali\": \"mondial\",\n  \"mondini\": \"mondin\",\n  \"mondo\": \"mond\",\n  \"mondò\": \"mond\",\n  \"mondonico\": \"mondon\",\n  \"mondovì\": \"mondov\",\n  \"monere\": \"mon\",\n  \"moneta\": \"monet\",\n  \"monetaria\": \"monetar\",\n  \"monetario\": \"monetar\",\n  \"monete\": \"mon\",\n  \"moneterio\": \"moneter\",\n  \"money\": \"money\",\n  \"moneytime\": \"moneytim\",\n  \"monfalcone\": \"monfalcon\",\n  \"monferrato\": \"monferr\",\n  \"monica\": \"monic\",\n  \"monito\": \"mon\",\n  \"monitor\": \"monitor\",\n  \"monitoraggio\": \"monitoragg\",\n  \"monitorare\": \"monitor\",\n  \"monizione\": \"monizion\",\n  \"monoblocco\": \"monoblocc\",\n  \"monolith\": \"monolith\",\n  \"monologo\": \"monolog\",\n  \"monopattino\": \"monopattin\",\n  \"monopoli\": \"monopol\",\n  \"monopolio\": \"monopol\",\n  \"monopolismo\": \"monopol\",\n  \"monopolisti\": \"monopol\",\n  \"monopolistico\": \"monopolist\",\n  \"monorchio\": \"monorc\",\n  \"monos\": \"monos\",\n  \"monosillabo\": \"monosillab\",\n  \"monotona\": \"monoton\",\n  \"mons\": \"mons\",\n  \"monsignor\": \"monsignor\",\n  \"monsignore\": \"monsignor\",\n  \"monsignori\": \"monsignor\",\n  \"mont\": \"mont\",\n  \"monta\": \"mont\",\n  \"montagna\": \"montagn\",\n  \"montagnani\": \"montagnan\",\n  \"montagne\": \"montagn\",\n  \"montalbano\": \"montalb\",\n  \"montalto\": \"montalt\",\n  \"montanara\": \"montanar\",\n  \"montanare\": \"montan\",\n  \"montanari\": \"montanar\",\n  \"montanaro\": \"montanar\",\n  \"montanarolo\": \"montanarol\",\n  \"montanelli\": \"montanell\",\n  \"montante\": \"montant\",\n  \"montare\": \"mont\",\n  \"montarono\": \"mont\",\n  \"montasse\": \"mont\",\n  \"montato\": \"mont\",\n  \"monte\": \"mont\",\n  \"montecarlo\": \"montec\",\n  \"montecitorio\": \"montecitor\",\n  \"montecuccoli\": \"montecuccol\",\n  \"montedison\": \"montedison\",\n  \"montefibre\": \"montefibr\",\n  \"montefiorino\": \"montefiorin\",\n  \"montepremi\": \"monteprem\",\n  \"montero\": \"monter\",\n  \"montervarchi\": \"montervarc\",\n  \"montesano\": \"montes\",\n  \"montevarchi\": \"montevarc\",\n  \"montevideo\": \"montevide\",\n  \"monti\": \"mont\",\n  \"monticone\": \"monticon\",\n  \"montino\": \"montin\",\n  \"montò\": \"mont\",\n  \"montpellier\": \"montpellier\",\n  \"montreal\": \"montreal\",\n  \"monumento\": \"monument\",\n  \"monza\": \"monz\",\n  \"moon\": \"moon\",\n  \"moore\": \"moor\",\n  \"mora\": \"mor\",\n  \"morale\": \"moral\",\n  \"morali\": \"moral\",\n  \"moralista\": \"moral\",\n  \"moratti\": \"moratt\",\n  \"morbidà\": \"morbid\",\n  \"morbidò\": \"morbid\",\n  \"morbo\": \"morb\",\n  \"morbos\": \"morbos\",\n  \"morbus\": \"morbus\",\n  \"mord\": \"mord\",\n  \"mordere\": \"mord\",\n  \"morderle\": \"mord\",\n  \"mordevano\": \"mord\",\n  \"moreau\": \"moreau\",\n  \"morendo\": \"mor\",\n  \"moreno\": \"moren\",\n  \"moretti\": \"morett\",\n  \"moretto\": \"morett\",\n  \"morfeo\": \"morfe\",\n  \"morfologia\": \"morfolog\",\n  \"morgan\": \"morgan\",\n  \"mori\": \"mor\",\n  \"morì\": \"mor\",\n  \"morìa\": \"morì\",\n  \"moribondi\": \"moribond\",\n  \"moribondo\": \"moribond\",\n  \"moriero\": \"morier\",\n  \"morir\": \"mor\",\n  \"morirà\": \"mor\",\n  \"morire\": \"mor\",\n  \"moriron\": \"moriron\",\n  \"morirono\": \"mor\",\n  \"morisse\": \"moriss\",\n  \"moriva\": \"mor\",\n  \"morivano\": \"mor\",\n  \"mormoracchiare\": \"mormoracc\",\n  \"mormorando\": \"mormor\",\n  \"mormorava\": \"mormor\",\n  \"mormorazione\": \"mormor\",\n  \"mormorazioni\": \"mormor\",\n  \"mormorìo\": \"mormorì\",\n  \"moro\": \"mor\",\n  \"morosa\": \"moros\",\n  \"morris\": \"morris\",\n  \"morsa\": \"mors\",\n  \"morse\": \"mors\",\n  \"morsi\": \"mors\",\n  \"morso\": \"mors\",\n  \"morta\": \"mort\",\n  \"mortagli\": \"mortagl\",\n  \"mortale\": \"mortal\",\n  \"mortales\": \"mortales\",\n  \"mortali\": \"mortal\",\n  \"mortalità\": \"mortal\",\n  \"morte\": \"mort\",\n  \"mortem\": \"mortem\",\n  \"morti\": \"mort\",\n  \"morticina\": \"morticin\",\n  \"mortiferi\": \"mortifer\",\n  \"mortificata\": \"mortific\",\n  \"mortificati\": \"mortific\",\n  \"mortificato\": \"mortific\",\n  \"morto\": \"mort\",\n  \"mortorio\": \"mortor\",\n  \"mosca\": \"mosc\",\n  \"moscà\": \"mosc\",\n  \"moscatelli\": \"moscatell\",\n  \"mosche\": \"mosc\",\n  \"moschea\": \"mosche\",\n  \"moschetti\": \"moschett\",\n  \"moschettieri\": \"moschettier\",\n  \"moschetto\": \"moschett\",\n  \"mosconi\": \"moscon\",\n  \"moscovita\": \"moscov\",\n  \"moser\": \"moser\",\n  \"moses\": \"moses\",\n  \"moshe\": \"mosh\",\n  \"mossa\": \"moss\",\n  \"mosse\": \"moss\",\n  \"mossero\": \"mosser\",\n  \"mossi\": \"moss\",\n  \"mosso\": \"moss\",\n  \"mostacci\": \"mostacc\",\n  \"mostar\": \"most\",\n  \"mostra\": \"mostr\",\n  \"mostrando\": \"mostr\",\n  \"mostrandosi\": \"mostr\",\n  \"mostrano\": \"mostr\",\n  \"mostrar\": \"mostr\",\n  \"mostrare\": \"mostr\",\n  \"mostraron\": \"mostraron\",\n  \"mostrarsi\": \"mostr\",\n  \"mostrasse\": \"mostr\",\n  \"mostrata\": \"mostr\",\n  \"mostrati\": \"mostr\",\n  \"mostrato\": \"mostr\",\n  \"mostratone\": \"mostraton\",\n  \"mostrava\": \"mostr\",\n  \"mostravan\": \"mostravan\",\n  \"mostravano\": \"mostr\",\n  \"mostre\": \"mostr\",\n  \"mostri\": \"mostr\",\n  \"mostriciattolo\": \"mostriciattol\",\n  \"mostro\": \"mostr\",\n  \"mostrò\": \"mostr\",\n  \"mostruose\": \"mostruos\",\n  \"mostruosità\": \"mostruos\",\n  \"mostruoso\": \"mostruos\",\n  \"mota\": \"mot\",\n  \"motherwell\": \"motherwell\",\n  \"moti\": \"mot\",\n  \"motiv\": \"motiv\",\n  \"motivandole\": \"motiv\",\n  \"motivar\": \"motiv\",\n  \"motivasse\": \"motiv\",\n  \"motivato\": \"motiv\",\n  \"motivazione\": \"motiv\",\n  \"motivazioni\": \"motiv\",\n  \"motivi\": \"mot\",\n  \"motivo\": \"mot\",\n  \"motivò\": \"motiv\",\n  \"moto\": \"mot\",\n  \"motonave\": \"motonav\",\n  \"motor\": \"motor\",\n  \"motore\": \"motor\",\n  \"motoretta\": \"motorett\",\n  \"motori\": \"motor\",\n  \"motorino\": \"motorin\",\n  \"motorizzazione\": \"motorizz\",\n  \"motosa\": \"motos\",\n  \"motoscafi\": \"motoscaf\",\n  \"motoseghe\": \"motoseg\",\n  \"motta\": \"mott\",\n  \"motti\": \"mott\",\n  \"motuum\": \"motuum\",\n  \"mouillot\": \"mouillot\",\n  \"moussali\": \"moussal\",\n  \"mova\": \"mov\",\n  \"movan\": \"movan\",\n  \"move\": \"mov\",\n  \"movendole\": \"mov\",\n  \"movendosi\": \"mov\",\n  \"movente\": \"movent\",\n  \"mover\": \"mover\",\n  \"movere\": \"mov\",\n  \"moverebbe\": \"mov\",\n  \"movermi\": \"mov\",\n  \"moverò\": \"mov\",\n  \"moversene\": \"mov\",\n  \"moversi\": \"mov\",\n  \"moverti\": \"mov\",\n  \"movesse\": \"movess\",\n  \"moveva\": \"mov\",\n  \"movimentati\": \"moviment\",\n  \"movimentato\": \"moviment\",\n  \"movimentazione\": \"moviment\",\n  \"movimenti\": \"mov\",\n  \"movimento\": \"mov\",\n  \"movinemto\": \"movinemt\",\n  \"movladi\": \"movlad\",\n  \"movon\": \"movon\",\n  \"movono\": \"mov\",\n  \"mowbray\": \"mowbray\",\n  \"mozione\": \"mozion\",\n  \"mozioni\": \"mozion\",\n  \"mozzi\": \"mozz\",\n  \"mozzicone\": \"mozzicon\",\n  \"mr\": \"mr\",\n  \"mrc\": \"mrc\",\n  \"mri\": \"mri\",\n  \"ms\": \"ms\",\n  \"msc\": \"msc\",\n  \"msi\": \"msi\",\n  \"mu\": \"mu\",\n  \"mucchi\": \"mucc\",\n  \"mucchietto\": \"mucchiett\",\n  \"mucchio\": \"mucc\",\n  \"mudler\": \"mudler\",\n  \"mugghiava\": \"mugg\",\n  \"muggito\": \"mugg\",\n  \"mughal\": \"mughal\",\n  \"mugolìo\": \"mugolì\",\n  \"mukerjee\": \"mukerje\",\n  \"mukherjee\": \"mukherje\",\n  \"mula\": \"mul\",\n  \"mulder\": \"mulder\",\n  \"mule\": \"mul\",\n  \"mulè\": \"mul\",\n  \"mulinare\": \"mulin\",\n  \"mulinello\": \"mulinell\",\n  \"mulini\": \"mulin\",\n  \"mulo\": \"mul\",\n  \"multa\": \"mult\",\n  \"multe\": \"mult\",\n  \"multiazioni\": \"multiazion\",\n  \"multifariam\": \"multifariam\",\n  \"multifondo\": \"multifond\",\n  \"multimediale\": \"multimedial\",\n  \"multinazionale\": \"multinazional\",\n  \"multinazionali\": \"multinazional\",\n  \"multiproprietà\": \"multipropriet\",\n  \"multiras\": \"multiras\",\n  \"multiuso\": \"multius\",\n  \"munda\": \"mund\",\n  \"mundis\": \"mundis\",\n  \"mungere\": \"mung\",\n  \"municipale\": \"municipal\",\n  \"municipali\": \"municipal\",\n  \"municipalizzate\": \"municipalizz\",\n  \"munificenza\": \"munificent\",\n  \"muniti\": \"mun\",\n  \"munizione\": \"munizion\",\n  \"munoz\": \"munoz\",\n  \"muoia\": \"muoi\",\n  \"muoiono\": \"muoi\",\n  \"muore\": \"muor\",\n  \"muove\": \"muov\",\n  \"muovendo\": \"muov\",\n  \"muovere\": \"muov\",\n  \"muoverò\": \"muov\",\n  \"muoversi\": \"muov\",\n  \"muovono\": \"muov\",\n  \"mura\": \"mur\",\n  \"muraglia\": \"muragl\",\n  \"muraglie\": \"muragl\",\n  \"murati\": \"mur\",\n  \"murato\": \"mur\",\n  \"muratori\": \"murator\",\n  \"murettino\": \"murettin\",\n  \"murgita\": \"murg\",\n  \"muri\": \"mur\",\n  \"muriccioli\": \"muricciol\",\n  \"muricciolo\": \"muricciol\",\n  \"murmansk\": \"murmansk\",\n  \"muro\": \"mur\",\n  \"murphy\": \"murphy\",\n  \"musa\": \"mus\",\n  \"muscardini\": \"muscardin\",\n  \"muscoloso\": \"muscol\",\n  \"muse\": \"mus\",\n  \"museeuv\": \"museeuv\",\n  \"museo\": \"muse\",\n  \"museum\": \"museum\",\n  \"musher\": \"musher\",\n  \"musi\": \"mus\",\n  \"music\": \"music\",\n  \"musica\": \"music\",\n  \"musical\": \"musical\",\n  \"musicale\": \"musical\",\n  \"musicali\": \"musical\",\n  \"musiche\": \"music\",\n  \"musicista\": \"music\",\n  \"musicisti\": \"music\",\n  \"muso\": \"mus\",\n  \"mussi\": \"muss\",\n  \"mussolenghe\": \"mussoleng\",\n  \"mussolente\": \"mussolent\",\n  \"mussolini\": \"mussolin\",\n  \"mustacchi\": \"mustacc\",\n  \"mustigarufi\": \"mustigaruf\",\n  \"musulmana\": \"musulman\",\n  \"musulmani\": \"musulman\",\n  \"musulmano\": \"musulm\",\n  \"musumeci\": \"musumec\",\n  \"musure\": \"musur\",\n  \"muta\": \"mut\",\n  \"mutabile\": \"mutabil\",\n  \"mutabili\": \"mutabil\",\n  \"mutande\": \"mutand\",\n  \"mutandosi\": \"mut\",\n  \"mutano\": \"mut\",\n  \"mutar\": \"mut\",\n  \"mutare\": \"mut\",\n  \"mutarsi\": \"mut\",\n  \"mutasse\": \"mut\",\n  \"mutata\": \"mut\",\n  \"mutate\": \"mut\",\n  \"mutati\": \"mut\",\n  \"mutatio\": \"mutat\",\n  \"mutato\": \"mut\",\n  \"mutazione\": \"mutazion\",\n  \"mutazioni\": \"mutazion\",\n  \"mute\": \"mut\",\n  \"muterò\": \"mut\",\n  \"muti\": \"mut\",\n  \"mutilata\": \"mutil\",\n  \"mutilate\": \"mutil\",\n  \"muto\": \"mut\",\n  \"mutò\": \"mut\",\n  \"mutria\": \"mutr\",\n  \"mutua\": \"mutu\",\n  \"mutualisti\": \"mutual\",\n  \"mutualistici\": \"mutualist\",\n  \"mutuati\": \"mutu\",\n  \"mutui\": \"mutu\",\n  \"muzio\": \"muz\",\n  \"muzzi\": \"muzz\",\n  \"mv\": \"mv\",\n  \"mw\": \"mw\",\n  \"my\": \"my\",\n  \"myanma\": \"myanm\",\n  \"myra\": \"myra\",\n  \"mz\": \"mz\",\n  \"n\": \"n\",\n  \"na\": \"na\",\n  \"naas\": \"naas\",\n  \"nababbo\": \"nababb\",\n  \"nabi\": \"nab\",\n  \"nabil\": \"nabil\",\n  \"nabila\": \"nabil\",\n  \"nacht\": \"nacht\",\n  \"nacque\": \"nacqu\",\n  \"nacquero\": \"nacquer\",\n  \"nadal\": \"nadal\",\n  \"nadtierechni\": \"nadtierechn\",\n  \"nagisa\": \"nagis\",\n  \"nagracapital\": \"nagracapital\",\n  \"nagrarend\": \"nagrarend\",\n  \"nai\": \"nai\",\n  \"naionale\": \"naional\",\n  \"nairobi\": \"nairob\",\n  \"naizonale\": \"naizonal\",\n  \"naji\": \"naj\",\n  \"nalcik\": \"nalcik\",\n  \"namibia\": \"namib\",\n  \"namik\": \"namik\",\n  \"nan\": \"nan\",\n  \"nando\": \"nand\",\n  \"nani\": \"nan\",\n  \"nania\": \"nan\",\n  \"nanni\": \"nann\",\n  \"nantes\": \"nantes\",\n  \"nantucket\": \"nantucket\",\n  \"napoletana\": \"napoletan\",\n  \"napoletane\": \"napoletan\",\n  \"napoletano\": \"napolet\",\n  \"napoli\": \"napol\",\n  \"napolitano\": \"napolit\",\n  \"nappa\": \"napp\",\n  \"nappi\": \"napp\",\n  \"narasimha\": \"narasimh\",\n  \"narcotraffico\": \"narcotraff\",\n  \"nardi\": \"nard\",\n  \"nardini\": \"nardin\",\n  \"narmak\": \"narmak\",\n  \"narora\": \"naror\",\n  \"narra\": \"narr\",\n  \"narratione\": \"narration\",\n  \"narratore\": \"narrator\",\n  \"narrazione\": \"narrazion\",\n  \"nasce\": \"nasc\",\n  \"nascente\": \"nascent\",\n  \"nascer\": \"nascer\",\n  \"nascerà\": \"nasc\",\n  \"nascere\": \"nasc\",\n  \"nascerebbe\": \"nasc\",\n  \"nascesse\": \"nascess\",\n  \"nasceste\": \"nascest\",\n  \"nasceva\": \"nasc\",\n  \"nascevan\": \"nascevan\",\n  \"nascita\": \"nasc\",\n  \"nascite\": \"nasc\",\n  \"nasconde\": \"nascond\",\n  \"nascondendo\": \"nascond\",\n  \"nasconder\": \"nasconder\",\n  \"nasconderci\": \"nascond\",\n  \"nascondere\": \"nascond\",\n  \"nasconderla\": \"nascond\",\n  \"nasconderlo\": \"nascond\",\n  \"nascondersi\": \"nascond\",\n  \"nascondeva\": \"nascond\",\n  \"nascondevano\": \"nascond\",\n  \"nascondevo\": \"nascond\",\n  \"nascondigli\": \"nascondigl\",\n  \"nascondiglio\": \"nascondigl\",\n  \"nascondimento\": \"nascond\",\n  \"nascondono\": \"nascond\",\n  \"nascono\": \"nasc\",\n  \"nascose\": \"nascos\",\n  \"nascosero\": \"nascoser\",\n  \"nascosta\": \"nascost\",\n  \"nascostamente\": \"nascost\",\n  \"nascoste\": \"nascost\",\n  \"nascosti\": \"nascost\",\n  \"nascosto\": \"nascost\",\n  \"naso\": \"nas\",\n  \"nasrin\": \"nasrin\",\n  \"nassau\": \"nassau\",\n  \"nastri\": \"nastr\",\n  \"nastro\": \"nastr\",\n  \"nata\": \"nat\",\n  \"natale\": \"natal\",\n  \"natali\": \"natal\",\n  \"natalizie\": \"nataliz\",\n  \"natanti\": \"natant\",\n  \"nate\": \"nat\",\n  \"nathalie\": \"nathal\",\n  \"nathan\": \"nathan\",\n  \"nathion\": \"nathion\",\n  \"nati\": \"nat\",\n  \"natìa\": \"natì\",\n  \"national\": \"national\",\n  \"nativa\": \"nat\",\n  \"nativi\": \"nat\",\n  \"nativo\": \"nat\",\n  \"nato\": \"nat\",\n  \"natura\": \"natur\",\n  \"natural\": \"natural\",\n  \"naturale\": \"natural\",\n  \"naturali\": \"natural\",\n  \"naturalisti\": \"natural\",\n  \"naturalizzato\": \"naturalizz\",\n  \"naturalmente\": \"natural\",\n  \"naufraga\": \"naufrag\",\n  \"naufragata\": \"naufrag\",\n  \"naufragati\": \"naufrag\",\n  \"naufragio\": \"naufrag\",\n  \"naufrago\": \"naufrag\",\n  \"naursk\": \"naursk\",\n  \"nautica\": \"nautic\",\n  \"nautiche\": \"nautic\",\n  \"nautico\": \"nautic\",\n  \"nav\": \"nav\",\n  \"nava\": \"nav\",\n  \"navale\": \"naval\",\n  \"navali\": \"naval\",\n  \"navarra\": \"navarr\",\n  \"navarrini\": \"navarrin\",\n  \"navarro\": \"navarr\",\n  \"nave\": \"nav\",\n  \"navetta\": \"navett\",\n  \"navette\": \"navett\",\n  \"navi\": \"nav\",\n  \"navigante\": \"navig\",\n  \"navigare\": \"navig\",\n  \"navigatore\": \"navig\",\n  \"navigazione\": \"navig\",\n  \"navigli\": \"navigl\",\n  \"naviglio\": \"navigl\",\n  \"naz\": \"naz\",\n  \"nazareno\": \"nazaren\",\n  \"nazifasciste\": \"nazifasc\",\n  \"nazional\": \"nazional\",\n  \"nazionaldemocratico\": \"nazionaldemocrat\",\n  \"nazionale\": \"nazional\",\n  \"nazionali\": \"nazional\",\n  \"nazionalisti\": \"nazional\",\n  \"nazionalità\": \"nazional\",\n  \"nazionalizzato\": \"nazionalizz\",\n  \"nazione\": \"nazion\",\n  \"nazioni\": \"nazion\",\n  \"nazismo\": \"nazism\",\n  \"nazista\": \"nazist\",\n  \"naziste\": \"nazist\",\n  \"nazisti\": \"nazist\",\n  \"nazistoidi\": \"nazistoid\",\n  \"nazzari\": \"nazzar\",\n  \"nba\": \"nba\",\n  \"nbaction\": \"nbaction\",\n  \"nc\": \"nc\",\n  \"ndr\": \"ndr\",\n  \"ne\": \"ne\",\n  \"né\": \"nè\",\n  \"nè\": \"nè\",\n  \"neanche\": \"neanc\",\n  \"neazelandese\": \"neazelandes\",\n  \"nebbia\": \"nebb\",\n  \"nebbie\": \"nebb\",\n  \"nebbione\": \"nebbion\",\n  \"nec\": \"nec\",\n  \"necchi\": \"necc\",\n  \"necesidades\": \"necesidades\",\n  \"necessari\": \"necessar\",\n  \"necessaria\": \"necessar\",\n  \"necessariamente\": \"necessar\",\n  \"necessarie\": \"necessar\",\n  \"necessario\": \"necessar\",\n  \"necesserario\": \"necesserar\",\n  \"necessita\": \"necess\",\n  \"necessità\": \"necess\",\n  \"necroforo\": \"necrofor\",\n  \"necwessari\": \"necwessar\",\n  \"ned\": \"ned\",\n  \"nedo\": \"ned\",\n  \"nèforse\": \"nèfors\",\n  \"nega\": \"neg\",\n  \"negando\": \"neg\",\n  \"negano\": \"neg\",\n  \"negar\": \"neg\",\n  \"negare\": \"neg\",\n  \"negarla\": \"neg\",\n  \"negarlo\": \"neg\",\n  \"negasse\": \"neg\",\n  \"negata\": \"neg\",\n  \"negativa\": \"negat\",\n  \"negativamente\": \"negat\",\n  \"negative\": \"negat\",\n  \"negativi\": \"negat\",\n  \"negativo\": \"negat\",\n  \"negato\": \"neg\",\n  \"negavano\": \"neg\",\n  \"negheranno\": \"negh\",\n  \"neghino\": \"neghin\",\n  \"negl\": \"negl\",\n  \"negletta\": \"neglett\",\n  \"negletto\": \"neglett\",\n  \"negli\": \"negl\",\n  \"negligenza\": \"negligent\",\n  \"negozi\": \"negoz\",\n  \"negozia\": \"negoz\",\n  \"negoziare\": \"negoz\",\n  \"negoziata\": \"negoz\",\n  \"negoziati\": \"negoz\",\n  \"negoziato\": \"negoz\",\n  \"negoziatore\": \"negoz\",\n  \"negoziazione\": \"negoz\",\n  \"negozio\": \"negoz\",\n  \"negri\": \"negr\",\n  \"negrì\": \"negr\",\n  \"negritos\": \"negritos\",\n  \"negro\": \"negr\",\n  \"nei\": \"nei\",\n  \"neil\": \"neil\",\n  \"nel\": \"nel\",\n  \"nell\": \"nell\",\n  \"nella\": \"nell\",\n  \"nelle\": \"nell\",\n  \"nelli\": \"nell\",\n  \"nello\": \"nell\",\n  \"nelson\": \"nelson\",\n  \"nematullah\": \"nematullah\",\n  \"nemetria\": \"nemetr\",\n  \"nemica\": \"nemic\",\n  \"nemiche\": \"nemic\",\n  \"nemici\": \"nemic\",\n  \"nemicì\": \"nemic\",\n  \"nemico\": \"nemic\",\n  \"nemicò\": \"nemic\",\n  \"nemmen\": \"nemmen\",\n  \"nemmeno\": \"nemmen\",\n  \"neo\": \"neo\",\n  \"neoborboni\": \"neoborbon\",\n  \"neoborbonici\": \"neoborbon\",\n  \"neoborbonico\": \"neoborbon\",\n  \"neofascista\": \"neofasc\",\n  \"neofita\": \"neof\",\n  \"neogollisti\": \"neogoll\",\n  \"neomin\": \"neomin\",\n  \"neonata\": \"neon\",\n  \"neonati\": \"neon\",\n  \"neonazista\": \"neonaz\",\n  \"neonazisti\": \"neonaz\",\n  \"neoprotestante\": \"neoprotest\",\n  \"neoprotestantesimo\": \"neoprotestantesim\",\n  \"neppur\": \"neppur\",\n  \"neppure\": \"neppur\",\n  \"ner\": \"ner\",\n  \"nera\": \"ner\",\n  \"nerazzurra\": \"nerazzurr\",\n  \"nerazzurri\": \"nerazzurr\",\n  \"nerazzurro\": \"nerazzurr\",\n  \"nerborute\": \"nerbor\",\n  \"nerboruto\": \"nerbor\",\n  \"nere\": \"ner\",\n  \"neri\": \"ner\",\n  \"nero\": \"ner\",\n  \"nervi\": \"nerv\",\n  \"nervosismo\": \"nervos\",\n  \"nervoso\": \"nervos\",\n  \"nessun\": \"nessun\",\n  \"nessuna\": \"nessun\",\n  \"nessuno\": \"nessun\",\n  \"nessunò\": \"nessun\",\n  \"netta\": \"nett\",\n  \"nettamente\": \"nett\",\n  \"nettaq\": \"nettaq\",\n  \"nette\": \"nett\",\n  \"netti\": \"nett\",\n  \"netto\": \"nett\",\n  \"network\": \"network\",\n  \"netzraim\": \"netzraim\",\n  \"neue\": \"neu\",\n  \"neutrale\": \"neutral\",\n  \"neutralità\": \"neutral\",\n  \"neutralizzando\": \"neutralizz\",\n  \"neutrone\": \"neutron\",\n  \"nev\": \"nev\",\n  \"neve\": \"nev\",\n  \"nevers\": \"nevers\",\n  \"nevralgica\": \"nevralg\",\n  \"new\": \"new\",\n  \"news\": \"news\",\n  \"newsletter\": \"newsletter\",\n  \"newton\": \"newton\",\n  \"next\": \"next\",\n  \"nf\": \"nf\",\n  \"ngc\": \"ngc\",\n  \"ngrato\": \"ngrat\",\n  \"nibbio\": \"nibb\",\n  \"nic\": \"nic\",\n  \"nicaragua\": \"nicaragu\",\n  \"nicchia\": \"nicc\",\n  \"nice\": \"nic\",\n  \"nicholas\": \"nicholas\",\n  \"nick\": \"nick\",\n  \"nicky\": \"nicky\",\n  \"nicola\": \"nicol\",\n  \"nicolay\": \"nicolay\",\n  \"nicole\": \"nicol\",\n  \"nicosia\": \"nicos\",\n  \"nidiata\": \"nid\",\n  \"nido\": \"nid\",\n  \"nieman\": \"nieman\",\n  \"niemann\": \"niemann\",\n  \"niemczak\": \"niemczak\",\n  \"nient\": \"nient\",\n  \"niente\": \"nient\",\n  \"nientemeno\": \"nientemen\",\n  \"niger\": \"niger\",\n  \"nigeria\": \"niger\",\n  \"night\": \"night\",\n  \"nigricanti\": \"nigric\",\n  \"niguarda\": \"niguard\",\n  \"nikita\": \"nik\",\n  \"nikkei\": \"nikke\",\n  \"nikolaievic\": \"nikolaievic\",\n  \"nimis\": \"nimis\",\n  \"nina\": \"nin\",\n  \"ninistro\": \"ninistr\",\n  \"ninnandolo\": \"ninn\",\n  \"nino\": \"nin\",\n  \"nipar\": \"nip\",\n  \"nipote\": \"nipot\",\n  \"nipoti\": \"nipot\",\n  \"nipotino\": \"nipotin\",\n  \"nippo\": \"nipp\",\n  \"nippon\": \"nippon\",\n  \"niro\": \"nir\",\n  \"niven\": \"niven\",\n  \"nivers\": \"nivers\",\n  \"nizza\": \"nizz\",\n  \"nizzazione\": \"nizzazion\",\n  \"nizzola\": \"nizzol\",\n  \"nnnn\": \"nnnn\",\n  \"no\": \"no\",\n  \"nò\": \"nò\",\n  \"nobel\": \"nobel\",\n  \"noberto\": \"nobert\",\n  \"nobil\": \"nobil\",\n  \"nobile\": \"nobil\",\n  \"nobilè\": \"nobil\",\n  \"nobili\": \"nobil\",\n  \"nobilissimo\": \"nobilissim\",\n  \"nobilmente\": \"nobil\",\n  \"nobiltà\": \"nobilt\",\n  \"nocca\": \"nocc\",\n  \"nocchiuto\": \"nocc\",\n  \"noccioli\": \"nocciol\",\n  \"noce\": \"noc\",\n  \"nocerina\": \"nocerin\",\n  \"noceto\": \"nocet\",\n  \"noci\": \"noc\",\n  \"nocive\": \"nociv\",\n  \"noderoso\": \"noder\",\n  \"nodi\": \"nod\",\n  \"nodo\": \"nod\",\n  \"noè\": \"noè\",\n  \"noel\": \"noel\",\n  \"noi\": \"noi\",\n  \"noì\": \"noì\",\n  \"noia\": \"noi\",\n  \"noie\": \"noi\",\n  \"noiosa\": \"noios\",\n  \"noiose\": \"noios\",\n  \"noiosi\": \"noios\",\n  \"noioso\": \"noios\",\n  \"noir\": \"noir\",\n  \"nokia\": \"nok\",\n  \"nola\": \"nol\",\n  \"noleggia\": \"nolegg\",\n  \"noleggiato\": \"nolegg\",\n  \"nomaccio\": \"nomacc\",\n  \"nome\": \"nom\",\n  \"nomè\": \"nom\",\n  \"nomenclatura\": \"nomenclatur\",\n  \"nomi\": \"nom\",\n  \"nomina\": \"nomin\",\n  \"nominale\": \"nominal\",\n  \"nominar\": \"nomin\",\n  \"nominare\": \"nomin\",\n  \"nominarla\": \"nomin\",\n  \"nominarlo\": \"nomin\",\n  \"nominarmi\": \"nomin\",\n  \"nominata\": \"nomin\",\n  \"nominate\": \"nomin\",\n  \"nominati\": \"nomin\",\n  \"nominato\": \"nomin\",\n  \"nominava\": \"nomin\",\n  \"nomine\": \"nomin\",\n  \"nomini\": \"nomin\",\n  \"nominiamo\": \"nomin\",\n  \"nominitive\": \"nominit\",\n  \"nomino\": \"nomin\",\n  \"nominò\": \"nomin\",\n  \"nomisma\": \"nomism\",\n  \"non\": \"non\",\n  \"nonchè\": \"nonc\",\n  \"noncurante\": \"noncur\",\n  \"noncuranza\": \"noncur\",\n  \"nondimeno\": \"nondimen\",\n  \"nones\": \"nones\",\n  \"nonfa\": \"nonf\",\n  \"noni\": \"non\",\n  \"nonna\": \"nonn\",\n  \"nonni\": \"nonn\",\n  \"nonno\": \"nonn\",\n  \"nonosolomoda\": \"nonosolomod\",\n  \"nonostante\": \"nonost\",\n  \"nonsolomoda\": \"nonsolomod\",\n  \"norberto\": \"norbert\",\n  \"nord\": \"nord\",\n  \"nordafricanò\": \"nordafrican\",\n  \"nordamerica\": \"nordamer\",\n  \"nordcapital\": \"nordcapital\",\n  \"nordfondo\": \"nordfond\",\n  \"nordica\": \"nordic\",\n  \"nordio\": \"nord\",\n  \"nordiste\": \"nordist\",\n  \"norditalia\": \"nordital\",\n  \"nordmix\": \"nordmix\",\n  \"norge\": \"norg\",\n  \"norma\": \"norm\",\n  \"normale\": \"normal\",\n  \"normali\": \"normal\",\n  \"normalità\": \"normal\",\n  \"normalizzazione\": \"normalizz\",\n  \"normalmente\": \"normal\",\n  \"normativa\": \"normat\",\n  \"normative\": \"normat\",\n  \"norme\": \"norm\",\n  \"norsk\": \"norsk\",\n  \"north\": \"north\",\n  \"norvegese\": \"norveges\",\n  \"norvegesi\": \"norveges\",\n  \"norvegia\": \"norveg\",\n  \"nos\": \"nos\",\n  \"noseda\": \"nosed\",\n  \"nostir\": \"nost\",\n  \"nostra\": \"nostr\",\n  \"nostre\": \"nostr\",\n  \"nostri\": \"nostr\",\n  \"nostro\": \"nostr\",\n  \"nota\": \"not\",\n  \"notabile\": \"notabil\",\n  \"notabili\": \"notabil\",\n  \"notabilmente\": \"notabil\",\n  \"notaio\": \"notai\",\n  \"notando\": \"not\",\n  \"notano\": \"not\",\n  \"notar\": \"not\",\n  \"notare\": \"not\",\n  \"notari\": \"notar\",\n  \"notarile\": \"notaril\",\n  \"notaristefano\": \"notaristef\",\n  \"notarne\": \"not\",\n  \"notaro\": \"notar\",\n  \"notate\": \"not\",\n  \"notati\": \"not\",\n  \"notato\": \"not\",\n  \"notava\": \"not\",\n  \"notavan\": \"notavan\",\n  \"notazioni\": \"notazion\",\n  \"note\": \"not\",\n  \"notevole\": \"notevol\",\n  \"notevoli\": \"notevol\",\n  \"notevolmente\": \"notevol\",\n  \"noti\": \"not\",\n  \"noticina\": \"noticin\",\n  \"notificato\": \"notific\",\n  \"notissimo\": \"notissim\",\n  \"notitia\": \"notit\",\n  \"notize\": \"notiz\",\n  \"notizia\": \"notiz\",\n  \"notizià\": \"notiz\",\n  \"notiziari\": \"notiziar\",\n  \"notiziario\": \"notiziar\",\n  \"notizie\": \"notiz\",\n  \"noto\": \"not\",\n  \"notorietà\": \"notoriet\",\n  \"notre\": \"notr\",\n  \"notta\": \"nott\",\n  \"nottata\": \"nott\",\n  \"notte\": \"nott\",\n  \"notti\": \"nott\",\n  \"nottingham\": \"nottingham\",\n  \"notturna\": \"notturn\",\n  \"notturno\": \"notturn\",\n  \"nov\": \"nov\",\n  \"novamente\": \"nov\",\n  \"novanta\": \"novant\",\n  \"novantacinque\": \"novantacinqu\",\n  \"novantanove\": \"novantanov\",\n  \"novantasei\": \"novantase\",\n  \"novara\": \"novar\",\n  \"novatore\": \"novator\",\n  \"nove\": \"nov\",\n  \"novelle\": \"novell\",\n  \"novellisti\": \"novell\",\n  \"novembre\": \"novembr\",\n  \"novi\": \"nov\",\n  \"noville\": \"novill\",\n  \"novità\": \"novit\",\n  \"novizi\": \"noviz\",\n  \"noviziato\": \"noviz\",\n  \"novizio\": \"noviz\",\n  \"novoie\": \"novoi\",\n  \"nozhai\": \"nozha\",\n  \"nozione\": \"nozion\",\n  \"nozioni\": \"nozion\",\n  \"nozze\": \"nozz\",\n  \"np\": \"np\",\n  \"npa\": \"npa\",\n  \"npd\": \"npd\",\n  \"nr\": \"nr\",\n  \"ns\": \"ns\",\n  \"nsentire\": \"nsent\",\n  \"nt\": \"nt\",\n  \"ntv\": \"ntv\",\n  \"nu\": \"nu\",\n  \"nubi\": \"nub\",\n  \"nuca\": \"nuc\",\n  \"nuciari\": \"nuciar\",\n  \"nuclear\": \"nucl\",\n  \"nucleare\": \"nucl\",\n  \"nucleari\": \"nuclear\",\n  \"nucleo\": \"nucle\",\n  \"nuda\": \"nud\",\n  \"nude\": \"nud\",\n  \"nudi\": \"nud\",\n  \"nudità\": \"nudit\",\n  \"nudrita\": \"nudr\",\n  \"nuestro\": \"nuestr\",\n  \"nugolo\": \"nugol\",\n  \"nuits\": \"nuits\",\n  \"null\": \"null\",\n  \"nulla\": \"null\",\n  \"nulladimeno\": \"nulladimen\",\n  \"nulle\": \"null\",\n  \"nulli\": \"null\",\n  \"nullità\": \"nullit\",\n  \"numbatkaime\": \"numbatkaim\",\n  \"numerazione\": \"numer\",\n  \"numeri\": \"numer\",\n  \"numerica\": \"numer\",\n  \"numero\": \"numer\",\n  \"numerosa\": \"numer\",\n  \"numerose\": \"numer\",\n  \"numerosi\": \"numer\",\n  \"numerosissimi\": \"numerosissim\",\n  \"nunzio\": \"nunz\",\n  \"nuocciano\": \"nuocc\",\n  \"nuocere\": \"nuoc\",\n  \"nuora\": \"nuor\",\n  \"nuore\": \"nuor\",\n  \"nuoro\": \"nuor\",\n  \"nuotando\": \"nuot\",\n  \"nuoto\": \"nuot\",\n  \"nuov\": \"nuov\",\n  \"nuova\": \"nuov\",\n  \"nuovamente\": \"nuov\",\n  \"nuove\": \"nuov\",\n  \"nuovi\": \"nuov\",\n  \"nuovo\": \"nuov\",\n  \"nutre\": \"nutr\",\n  \"nutrienti\": \"nutrient\",\n  \"nutrirsi\": \"nutr\",\n  \"nutrito\": \"nutr\",\n  \"nutrono\": \"nutr\",\n  \"nuvola\": \"nuvol\",\n  \"nuvolaglia\": \"nuvolagl\",\n  \"nuvole\": \"nuvol\",\n  \"nuvoli\": \"nuvol\",\n  \"nuvolo\": \"nuvol\",\n  \"nuvoloni\": \"nuvolon\",\n  \"nuvolosità\": \"nuvolos\",\n  \"nuvoloso\": \"nuvol\",\n  \"nuziale\": \"nuzial\",\n  \"nv\": \"nv\",\n  \"nwl\": \"nwl\",\n  \"o\": \"o\",\n  \"oasi\": \"oas\",\n  \"oaxaca\": \"oaxac\",\n  \"obb\": \"obb\",\n  \"obbedienza\": \"obbedient\",\n  \"obbedita\": \"obbed\",\n  \"obbiettivi\": \"obbiett\",\n  \"obbiettivo\": \"obbiett\",\n  \"obbl\": \"obbl\",\n  \"obblig\": \"obblig\",\n  \"obbliga\": \"obblig\",\n  \"obbligandosi\": \"obblig\",\n  \"obbligante\": \"obblig\",\n  \"obbligare\": \"obblig\",\n  \"obbligarla\": \"obblig\",\n  \"obbligasse\": \"obblig\",\n  \"obbligata\": \"obblig\",\n  \"obbligati\": \"obblig\",\n  \"obbligatissimo\": \"obbligatissim\",\n  \"obbligato\": \"obblig\",\n  \"obbligatoria\": \"obbligator\",\n  \"obbligatoriamente\": \"obbligator\",\n  \"obbligatorio\": \"obbligator\",\n  \"obbligavano\": \"obblig\",\n  \"obbligaz\": \"obbligaz\",\n  \"obbligazionar\": \"obbligazion\",\n  \"obbligazionari\": \"obbligazionar\",\n  \"obbligazionario\": \"obbligazionar\",\n  \"obbligazione\": \"obblig\",\n  \"obbligazioni\": \"obblig\",\n  \"obblighi\": \"obblig\",\n  \"obbligo\": \"obblig\",\n  \"obertwart\": \"obertwart\",\n  \"obesi\": \"obes\",\n  \"obesità\": \"obes\",\n  \"obiettivi\": \"obiett\",\n  \"obiettività\": \"obiett\",\n  \"obiettivo\": \"obiett\",\n  \"obiettori\": \"obiettor\",\n  \"obiezion\": \"obiezion\",\n  \"obiezione\": \"obiezion\",\n  \"obiezioni\": \"obiezion\",\n  \"oblazione\": \"oblazion\",\n  \"oblio\": \"obli\",\n  \"oblìo\": \"oblì\",\n  \"obliquo\": \"obliqu\",\n  \"oblivione\": \"oblivion\",\n  \"observer\": \"observer\",\n  \"obsta\": \"obsta\",\n  \"oca\": \"oca\",\n  \"occasion\": \"occasion\",\n  \"occasionale\": \"occasional\",\n  \"occasionali\": \"occasional\",\n  \"occasione\": \"occasion\",\n  \"occasioni\": \"occasion\",\n  \"occelli\": \"occell\",\n  \"occhetto\": \"occhett\",\n  \"occhi\": \"occhi\",\n  \"occhiacci\": \"occhiacc\",\n  \"occhiaie\": \"occhiai\",\n  \"occhiali\": \"occhial\",\n  \"occhiata\": \"occhi\",\n  \"occhiate\": \"occhi\",\n  \"occhiatina\": \"occhiatin\",\n  \"occhiello\": \"occhiell\",\n  \"occhietti\": \"occhiett\",\n  \"occhij\": \"occhij\",\n  \"occhio\": \"occhi\",\n  \"occhioni\": \"occhion\",\n  \"occidentale\": \"occidental\",\n  \"occidentali\": \"occidental\",\n  \"occidente\": \"occident\",\n  \"occorre\": \"occorr\",\n  \"occorrente\": \"occorrent\",\n  \"occorrenti\": \"occorrent\",\n  \"occorrenza\": \"occorrent\",\n  \"occorrenze\": \"occorrent\",\n  \"occorrerà\": \"occorr\",\n  \"occorrere\": \"occorr\",\n  \"occorrerebbe\": \"occorr\",\n  \"occorresse\": \"occorress\",\n  \"occorreva\": \"occorr\",\n  \"occorrevano\": \"occorr\",\n  \"occorron\": \"occorron\",\n  \"occorrono\": \"occorr\",\n  \"occorsi\": \"occors\",\n  \"occorso\": \"occors\",\n  \"occorsogli\": \"occorsogl\",\n  \"occulta\": \"occult\",\n  \"occulte\": \"occult\",\n  \"occulto\": \"occult\",\n  \"occupa\": \"occup\",\n  \"occupando\": \"occup\",\n  \"occupano\": \"occup\",\n  \"occupante\": \"occup\",\n  \"occupanti\": \"occup\",\n  \"occupar\": \"occup\",\n  \"occupare\": \"occup\",\n  \"occuparli\": \"occup\",\n  \"occuparlo\": \"occup\",\n  \"occuparmi\": \"occup\",\n  \"occuparono\": \"occup\",\n  \"occuparsi\": \"occup\",\n  \"occupasse\": \"occup\",\n  \"occupata\": \"occup\",\n  \"occupate\": \"occup\",\n  \"occupati\": \"occup\",\n  \"occupato\": \"occup\",\n  \"occupava\": \"occup\",\n  \"occupavan\": \"occupavan\",\n  \"occupazionale\": \"occupazional\",\n  \"occupazionali\": \"occupazional\",\n  \"occupazione\": \"occup\",\n  \"occupazionè\": \"occupazion\",\n  \"occupazioni\": \"occup\",\n  \"occuperà\": \"occup\",\n  \"occupò\": \"occup\",\n  \"ocean\": \"ocean\",\n  \"oceaniche\": \"ocean\",\n  \"oceano\": \"oce\",\n  \"oche\": \"oche\",\n  \"òconnor\": \"òconnor\",\n  \"ocosingo\": \"ocosing\",\n  \"ocp\": \"ocp\",\n  \"oculari\": \"ocular\",\n  \"od\": \"od\",\n  \"odan\": \"odan\",\n  \"oder\": \"oder\",\n  \"odessa\": \"odess\",\n  \"odi\": \"odi\",\n  \"odiare\": \"odi\",\n  \"odiata\": \"odi\",\n  \"odiati\": \"odi\",\n  \"odiato\": \"odi\",\n  \"odiava\": \"odi\",\n  \"odiavo\": \"odi\",\n  \"odierna\": \"odiern\",\n  \"odierne\": \"odi\",\n  \"odierni\": \"odiern\",\n  \"odierno\": \"odiern\",\n  \"odio\": \"odi\",\n  \"odiosa\": \"odios\",\n  \"odiose\": \"odios\",\n  \"odiosi\": \"odios\",\n  \"odiosissimo\": \"odiosissim\",\n  \"odiosità\": \"odios\",\n  \"odioso\": \"odios\",\n  \"odore\": \"odor\",\n  \"odori\": \"odor\",\n  \"odorose\": \"odor\",\n  \"of\": \"of\",\n  \"off\": \"off\",\n  \"offende\": \"offend\",\n  \"offendendo\": \"offend\",\n  \"offender\": \"offender\",\n  \"offendere\": \"offend\",\n  \"offenderle\": \"offend\",\n  \"offensiva\": \"offens\",\n  \"offensive\": \"offens\",\n  \"offensivo\": \"offens\",\n  \"offensori\": \"offensor\",\n  \"offer\": \"offer\",\n  \"offerse\": \"offers\",\n  \"offerta\": \"offert\",\n  \"offerte\": \"offert\",\n  \"offerti\": \"offert\",\n  \"offerto\": \"offert\",\n  \"offesa\": \"offes\",\n  \"offese\": \"offes\",\n  \"offesi\": \"offes\",\n  \"offeso\": \"offes\",\n  \"office\": \"offic\",\n  \"officiale\": \"official\",\n  \"officina\": \"officin\",\n  \"officine\": \"officin\",\n  \"offra\": \"offra\",\n  \"offre\": \"offre\",\n  \"offrendo\": \"offrend\",\n  \"offrì\": \"offrì\",\n  \"offrir\": \"offrir\",\n  \"offrirà\": \"offrir\",\n  \"offrire\": \"offrir\",\n  \"offrirgli\": \"offrirgl\",\n  \"offrirle\": \"offrirl\",\n  \"offrirvi\": \"offrirv\",\n  \"offriva\": \"offriv\",\n  \"offrivan\": \"offrivan\",\n  \"offrivano\": \"offriv\",\n  \"offrivo\": \"offriv\",\n  \"offrono\": \"offron\",\n  \"offuscata\": \"offusc\",\n  \"oggetti\": \"oggett\",\n  \"oggettistica\": \"oggettist\",\n  \"oggettive\": \"oggett\",\n  \"oggettivo\": \"oggett\",\n  \"oggetto\": \"oggett\",\n  \"oggi\": \"oggi\",\n  \"oggigiorno\": \"oggigiorn\",\n  \"ogn\": \"ogn\",\n  \"ogni\": \"ogni\",\n  \"ogniuno\": \"ogniun\",\n  \"ognun\": \"ognun\",\n  \"ognuna\": \"ognun\",\n  \"ognuno\": \"ognun\",\n  \"oh\": \"oh\",\n  \"ohe\": \"ohe\",\n  \"ohi\": \"ohi\",\n  \"ohimè\": \"ohim\",\n  \"oibò\": \"oib\",\n  \"oil\": \"oil\",\n  \"ok\": \"ok\",\n  \"olà\": \"olà\",\n  \"olaf\": \"olaf\",\n  \"olanda\": \"oland\",\n  \"olandese\": \"olandes\",\n  \"olandesi\": \"olandes\",\n  \"olbia\": \"olbi\",\n  \"olcese\": \"olces\",\n  \"ole\": \"ole\",\n  \"oleg\": \"oleg\",\n  \"oleodotto\": \"oleodott\",\n  \"olevano\": \"olev\",\n  \"olidata\": \"olid\",\n  \"oligarchia\": \"oligarc\",\n  \"oligarchie\": \"oligarc\",\n  \"oligopolio\": \"oligopol\",\n  \"olimpiadi\": \"olimpiad\",\n  \"olimpica\": \"olimp\",\n  \"olimpici\": \"olimp\",\n  \"olimpico\": \"olimp\",\n  \"olio\": \"oli\",\n  \"oliseh\": \"oliseh\",\n  \"oliva\": \"oliv\",\n  \"olivares\": \"olivares\",\n  \"olive\": \"oliv\",\n  \"oliveira\": \"oliveir\",\n  \"olivelli\": \"olivell\",\n  \"olivetti\": \"olivett\",\n  \"oliviero\": \"olivier\",\n  \"olmi\": \"olmi\",\n  \"olocausto\": \"olocaust\",\n  \"oloferne\": \"olof\",\n  \"olona\": \"olon\",\n  \"olp\": \"olp\",\n  \"oltraggio\": \"oltragg\",\n  \"oltre\": \"oltre\",\n  \"oltrechè\": \"oltrec\",\n  \"oltremodo\": \"oltremod\",\n  \"oltreoceano\": \"oltreoc\",\n  \"oltrepassare\": \"oltrepass\",\n  \"oltrepassava\": \"oltrepass\",\n  \"oltrepassò\": \"oltrepass\",\n  \"oltretutto\": \"oltretutt\",\n  \"oltreutto\": \"oltreutt\",\n  \"om\": \"om\",\n  \"omacci\": \"omacc\",\n  \"omaggi\": \"omagg\",\n  \"omaggio\": \"omagg\",\n  \"omar\": \"omar\",\n  \"ombra\": \"ombra\",\n  \"ombre\": \"ombre\",\n  \"ombrelli\": \"ombrell\",\n  \"ombrello\": \"ombrell\",\n  \"ombretta\": \"ombrett\",\n  \"ombrosa\": \"ombros\",\n  \"ombroso\": \"ombros\",\n  \"omelia\": \"omel\",\n  \"omero\": \"omer\",\n  \"omessi\": \"omess\",\n  \"omesso\": \"omess\",\n  \"ometteremo\": \"omett\",\n  \"omiciattolo\": \"omiciattol\",\n  \"omicida\": \"omicid\",\n  \"omicide\": \"omicid\",\n  \"omicidi\": \"omicid\",\n  \"omicidii\": \"omicid\",\n  \"omicidio\": \"omicid\",\n  \"omino\": \"omin\",\n  \"omnia\": \"omni\",\n  \"omnitel\": \"omnitel\",\n  \"omogenee\": \"omogene\",\n  \"omogenei\": \"omogene\",\n  \"omologato\": \"omolog\",\n  \"omologazione\": \"omolog\",\n  \"omologo\": \"omolog\",\n  \"omonime\": \"omonim\",\n  \"omonimo\": \"omonim\",\n  \"omosessuali\": \"omosessual\",\n  \"omosessualità\": \"omosessual\",\n  \"on\": \"on\",\n  \"once\": \"once\",\n  \"oncia\": \"onci\",\n  \"ond\": \"ond\",\n  \"onda\": \"onda\",\n  \"ondata\": \"ondat\",\n  \"ondate\": \"ondat\",\n  \"onde\": \"onde\",\n  \"ondeggiamento\": \"ondegg\",\n  \"ondeggiar\": \"ondegg\",\n  \"ondeggiare\": \"ondegg\",\n  \"ondoso\": \"ondos\",\n  \"onerose\": \"oner\",\n  \"onesta\": \"onest\",\n  \"onestamente\": \"onest\",\n  \"oneste\": \"onest\",\n  \"onesti\": \"onest\",\n  \"onesto\": \"onest\",\n  \"ong\": \"ong\",\n  \"onninamente\": \"onnin\",\n  \"onnipresente\": \"onnipresent\",\n  \"onofrio\": \"onofr\",\n  \"onor\": \"onor\",\n  \"onora\": \"onor\",\n  \"onorare\": \"onor\",\n  \"onoraria\": \"onorar\",\n  \"onorario\": \"onorar\",\n  \"onorarli\": \"onor\",\n  \"onorata\": \"onor\",\n  \"onorati\": \"onor\",\n  \"onorato\": \"onor\",\n  \"onore\": \"onor\",\n  \"onorè\": \"onor\",\n  \"onorevole\": \"onorevol\",\n  \"onori\": \"onor\",\n  \"onorò\": \"onor\",\n  \"onta\": \"onta\",\n  \"ontrola\": \"ontrol\",\n  \"onu\": \"onu\",\n  \"opa\": \"opa\",\n  \"opec\": \"opec\",\n  \"opel\": \"opel\",\n  \"open\": \"open\",\n  \"opera\": \"oper\",\n  \"operai\": \"opera\",\n  \"operaio\": \"operai\",\n  \"operando\": \"oper\",\n  \"operano\": \"oper\",\n  \"operante\": \"oper\",\n  \"operanti\": \"oper\",\n  \"operare\": \"oper\",\n  \"operata\": \"oper\",\n  \"operationi\": \"operation\",\n  \"operativa\": \"oper\",\n  \"operative\": \"oper\",\n  \"operativi\": \"oper\",\n  \"operativo\": \"oper\",\n  \"operativò\": \"operativ\",\n  \"operato\": \"oper\",\n  \"operatore\": \"oper\",\n  \"operatori\": \"oper\",\n  \"operava\": \"oper\",\n  \"operavano\": \"oper\",\n  \"operazione\": \"oper\",\n  \"operazioni\": \"oper\",\n  \"opere\": \"oper\",\n  \"opererà\": \"oper\",\n  \"operetta\": \"operett\",\n  \"operi\": \"oper\",\n  \"operosa\": \"oper\",\n  \"operose\": \"oper\",\n  \"opet\": \"opet\",\n  \"opinion\": \"opinion\",\n  \"opinione\": \"opinion\",\n  \"opinioni\": \"opinion\",\n  \"oplà\": \"oplà\",\n  \"oppone\": \"oppon\",\n  \"opponendo\": \"oppon\",\n  \"opponeva\": \"oppon\",\n  \"opponevo\": \"oppon\",\n  \"oppongono\": \"oppong\",\n  \"opponiamo\": \"oppon\",\n  \"opporci\": \"opporc\",\n  \"opporrà\": \"opporr\",\n  \"opporre\": \"opporr\",\n  \"opporremo\": \"opporrem\",\n  \"opporsi\": \"oppors\",\n  \"opportuna\": \"opportun\",\n  \"opportunamente\": \"opportun\",\n  \"opportune\": \"opportun\",\n  \"opportuni\": \"opportun\",\n  \"opportunismo\": \"opportun\",\n  \"opportunità\": \"opportun\",\n  \"opportuno\": \"opportun\",\n  \"oppositore\": \"oppositor\",\n  \"oppositori\": \"oppositor\",\n  \"opposizione\": \"opposizion\",\n  \"opposizone\": \"opposizon\",\n  \"opposta\": \"oppost\",\n  \"opposte\": \"oppost\",\n  \"opposti\": \"oppost\",\n  \"opposto\": \"oppost\",\n  \"oppressa\": \"oppress\",\n  \"oppressi\": \"oppress\",\n  \"oppressione\": \"oppression\",\n  \"oppressioni\": \"oppression\",\n  \"oppresso\": \"oppress\",\n  \"oppressore\": \"oppressor\",\n  \"opprima\": \"opprim\",\n  \"opprime\": \"opprim\",\n  \"opprimente\": \"oppriment\",\n  \"opprimer\": \"opprimer\",\n  \"opprimono\": \"opprim\",\n  \"oppure\": \"oppur\",\n  \"optare\": \"optar\",\n  \"opulenza\": \"opulent\",\n  \"opus\": \"opus\",\n  \"opuscolo\": \"opuscol\",\n  \"opzioni\": \"opzion\",\n  \"or\": \"or\",\n  \"ora\": \"ora\",\n  \"orafi\": \"oraf\",\n  \"orafo\": \"oraf\",\n  \"orale\": \"oral\",\n  \"oramai\": \"orama\",\n  \"orari\": \"orar\",\n  \"orario\": \"orar\",\n  \"oratore\": \"orator\",\n  \"oratori\": \"orator\",\n  \"oratorio\": \"orator\",\n  \"orazion\": \"orazion\",\n  \"orazione\": \"orazion\",\n  \"orazioni\": \"orazion\",\n  \"orbetello\": \"orbetell\",\n  \"orchestra\": \"orchestr\",\n  \"orchestrine\": \"orchestrin\",\n  \"orco\": \"orco\",\n  \"ord\": \"ord\",\n  \"orden\": \"orden\",\n  \"ordigni\": \"ordign\",\n  \"ordigno\": \"ordign\",\n  \"ordin\": \"ordin\",\n  \"ordina\": \"ordin\",\n  \"ordinamento\": \"ordin\",\n  \"ordinando\": \"ordin\",\n  \"ordinanza\": \"ordin\",\n  \"ordinanze\": \"ordin\",\n  \"ordinare\": \"ordin\",\n  \"ordinari\": \"ordinar\",\n  \"ordinaria\": \"ordinar\",\n  \"ordinariamente\": \"ordinar\",\n  \"ordinarie\": \"ordinar\",\n  \"ordinarii\": \"ordinar\",\n  \"ordinario\": \"ordinar\",\n  \"ordinata\": \"ordin\",\n  \"ordinatamente\": \"ordinat\",\n  \"ordinati\": \"ordin\",\n  \"ordinato\": \"ordin\",\n  \"ordinava\": \"ordin\",\n  \"ordinazioni\": \"ordin\",\n  \"ordine\": \"ordin\",\n  \"ordini\": \"ordin\",\n  \"ordinò\": \"ordin\",\n  \"ordir\": \"ordir\",\n  \"ordita\": \"ordit\",\n  \"ordite\": \"ordit\",\n  \"ordo\": \"ordo\",\n  \"ore\": \"ore\",\n  \"orè\": \"orè\",\n  \"orecchi\": \"orecc\",\n  \"orecchie\": \"orecc\",\n  \"orecchino\": \"orecchin\",\n  \"orecchio\": \"orecc\",\n  \"oreficeria\": \"oreficer\",\n  \"oreste\": \"orest\",\n  \"orga\": \"orga\",\n  \"organ\": \"organ\",\n  \"organi\": \"organ\",\n  \"organica\": \"organ\",\n  \"organiche\": \"organ\",\n  \"organici\": \"organ\",\n  \"organico\": \"organ\",\n  \"organigramma\": \"organigramm\",\n  \"organismi\": \"organ\",\n  \"organismo\": \"organ\",\n  \"organizzando\": \"organizz\",\n  \"organizzano\": \"organizz\",\n  \"organizzare\": \"organizz\",\n  \"organizzarsi\": \"organizz\",\n  \"organizzata\": \"organizz\",\n  \"organizzate\": \"organizz\",\n  \"organizzati\": \"organizz\",\n  \"organizzativa\": \"organizz\",\n  \"organizzative\": \"organizz\",\n  \"organizzativi\": \"organizz\",\n  \"organizzativo\": \"organizz\",\n  \"organizzato\": \"organizz\",\n  \"organizzatori\": \"organizz\",\n  \"organizzatrice\": \"organizz\",\n  \"organizzavano\": \"organizz\",\n  \"organizzazione\": \"organizz\",\n  \"organizzazioni\": \"organizz\",\n  \"organizziamo\": \"organizz\",\n  \"organo\": \"organ\",\n  \"orgasmo\": \"orgasm\",\n  \"orgini\": \"orgin\",\n  \"orgoglio\": \"orgogl\",\n  \"orgogliosa\": \"orgogl\",\n  \"orgogliosi\": \"orgogl\",\n  \"ori\": \"ori\",\n  \"oricalchi\": \"oricalc\",\n  \"orien\": \"orien\",\n  \"orientale\": \"oriental\",\n  \"orientali\": \"oriental\",\n  \"orientamenti\": \"orient\",\n  \"orientamento\": \"orient\",\n  \"orientarsi\": \"orient\",\n  \"oriente\": \"orient\",\n  \"orienteranno\": \"orient\",\n  \"orietta\": \"oriett\",\n  \"original\": \"original\",\n  \"originale\": \"original\",\n  \"originali\": \"original\",\n  \"originare\": \"origin\",\n  \"originari\": \"originar\",\n  \"originaria\": \"originar\",\n  \"originariamente\": \"originar\",\n  \"originarie\": \"originar\",\n  \"originario\": \"originar\",\n  \"originarono\": \"origin\",\n  \"origine\": \"origin\",\n  \"origini\": \"origin\",\n  \"oriz\": \"oriz\",\n  \"orizzontale\": \"orizzontal\",\n  \"orizzontalmente\": \"orizzontal\",\n  \"orizzonte\": \"orizzont\",\n  \"orlandi\": \"orland\",\n  \"orlandini\": \"orlandin\",\n  \"orlando\": \"orland\",\n  \"orlate\": \"orlat\",\n  \"orlati\": \"orlat\",\n  \"orli\": \"orli\",\n  \"orlo\": \"orlo\",\n  \"ormai\": \"orma\",\n  \"ormal\": \"ormal\",\n  \"ormeggiati\": \"ormegg\",\n  \"ormeggio\": \"ormegg\",\n  \"orna\": \"orna\",\n  \"ornamenti\": \"ornament\",\n  \"ornamento\": \"ornament\",\n  \"ornate\": \"ornat\",\n  \"ornato\": \"ornat\",\n  \"oro\": \"oro\",\n  \"orologi\": \"orolog\",\n  \"orologio\": \"orolog\",\n  \"oronzo\": \"oronz\",\n  \"oroscopo\": \"oroscop\",\n  \"orr\": \"orr\",\n  \"orrenda\": \"orrend\",\n  \"orrendo\": \"orrend\",\n  \"orribil\": \"orribil\",\n  \"orribile\": \"orribil\",\n  \"orribili\": \"orribil\",\n  \"orridi\": \"orrid\",\n  \"orrore\": \"orror\",\n  \"orrori\": \"orror\",\n  \"orsi\": \"orsi\",\n  \"orsono\": \"orson\",\n  \"orsù\": \"orsù\",\n  \"orti\": \"orti\",\n  \"orticello\": \"orticell\",\n  \"ortiche\": \"ortic\",\n  \"ortino\": \"ortin\",\n  \"orto\": \"orto\",\n  \"ortodossa\": \"ortodoss\",\n  \"ortodossia\": \"ortodoss\",\n  \"ortofrutta\": \"ortofrutt\",\n  \"ortografia\": \"ortograf\",\n  \"osaka\": \"osak\",\n  \"osama\": \"osam\",\n  \"osando\": \"osand\",\n  \"osannante\": \"osann\",\n  \"osannato\": \"osann\",\n  \"osar\": \"osar\",\n  \"osato\": \"osat\",\n  \"osava\": \"osav\",\n  \"osavan\": \"osavan\",\n  \"oscar\": \"oscar\",\n  \"oscene\": \"oscen\",\n  \"oscenità\": \"oscen\",\n  \"oscilla\": \"oscill\",\n  \"oscillava\": \"oscill\",\n  \"oscillazioni\": \"oscill\",\n  \"oscura\": \"oscur\",\n  \"oscuramento\": \"oscur\",\n  \"oscurare\": \"oscur\",\n  \"oscurarsi\": \"oscur\",\n  \"oscure\": \"oscur\",\n  \"oscuri\": \"oscur\",\n  \"oscurità\": \"oscur\",\n  \"oscuro\": \"oscur\",\n  \"osè\": \"osè\",\n  \"oshima\": \"oshim\",\n  \"osio\": \"osi\",\n  \"oslo\": \"oslo\",\n  \"osnabruecker\": \"osnabruecker\",\n  \"osò\": \"osò\",\n  \"ospedale\": \"ospedal\",\n  \"ospedaliere\": \"ospedal\",\n  \"ospedaliero\": \"ospedalier\",\n  \"ospedalizzazione\": \"ospedalizz\",\n  \"ospita\": \"ospit\",\n  \"ospitale\": \"ospital\",\n  \"ospitaletto\": \"ospitalett\",\n  \"ospitalità\": \"ospital\",\n  \"ospitare\": \"ospit\",\n  \"ospitarono\": \"ospit\",\n  \"ospitazione\": \"ospit\",\n  \"ospite\": \"ospit\",\n  \"ospiti\": \"ospit\",\n  \"ospizi\": \"ospiz\",\n  \"ospizio\": \"ospiz\",\n  \"ossa\": \"ossa\",\n  \"ossatura\": \"ossatur\",\n  \"ossequiata\": \"ossequ\",\n  \"ossequio\": \"ossequ\",\n  \"ossequioso\": \"ossequ\",\n  \"osseravto\": \"osseravt\",\n  \"osserva\": \"osserv\",\n  \"osservabile\": \"osserv\",\n  \"osservando\": \"osserv\",\n  \"osservanza\": \"osserv\",\n  \"osservaotri\": \"osservaotr\",\n  \"osservar\": \"osserv\",\n  \"osservare\": \"osserv\",\n  \"osservarli\": \"osserv\",\n  \"osservarsi\": \"osserv\",\n  \"osservata\": \"osserv\",\n  \"osservate\": \"osserv\",\n  \"osservati\": \"osserv\",\n  \"osservato\": \"osserv\",\n  \"osservatore\": \"osserv\",\n  \"osservatori\": \"osserv\",\n  \"osservatorio\": \"osservator\",\n  \"osservava\": \"osserv\",\n  \"osservazione\": \"osserv\",\n  \"osservazioni\": \"osserv\",\n  \"osservò\": \"osserv\",\n  \"ossessiva\": \"ossess\",\n  \"ossessivo\": \"ossess\",\n  \"ossia\": \"ossi\",\n  \"ossido\": \"ossid\",\n  \"ossigeno\": \"ossigen\",\n  \"osso\": \"osso\",\n  \"osta\": \"osta\",\n  \"ostacolare\": \"ostacol\",\n  \"ostacolato\": \"ostacol\",\n  \"ostacoli\": \"ostacol\",\n  \"ostacolo\": \"ostacol\",\n  \"ostaggio\": \"ostagg\",\n  \"ostante\": \"ostant\",\n  \"ostavano\": \"ostav\",\n  \"oste\": \"oste\",\n  \"ostenda\": \"ostend\",\n  \"ostentata\": \"ostent\",\n  \"ostentavano\": \"ostent\",\n  \"osteria\": \"oster\",\n  \"osterie\": \"oster\",\n  \"ostessa\": \"ostess\",\n  \"osti\": \"osti\",\n  \"ostia\": \"osti\",\n  \"ostiaque\": \"ostiaqu\",\n  \"ostile\": \"ostil\",\n  \"ostilita\": \"ostil\",\n  \"ostilità\": \"ostil\",\n  \"ostina\": \"ostin\",\n  \"ostinarsi\": \"ostin\",\n  \"ostinata\": \"ostin\",\n  \"ostinatamente\": \"ostinat\",\n  \"ostinate\": \"ostin\",\n  \"ostinati\": \"ostin\",\n  \"ostinato\": \"ostin\",\n  \"ostinava\": \"ostin\",\n  \"ostinazione\": \"ostin\",\n  \"ostini\": \"ostin\",\n  \"ostruzionismo\": \"ostruzion\",\n  \"osvaldo\": \"osvald\",\n  \"ot\": \"ot\",\n  \"ota\": \"ota\",\n  \"ott\": \"ott\",\n  \"ottangolare\": \"ottangol\",\n  \"ottanta\": \"ottant\",\n  \"ottantotto\": \"ottantott\",\n  \"ottava\": \"ottav\",\n  \"ottavio\": \"ottav\",\n  \"ottenemmo\": \"otten\",\n  \"ottenendo\": \"otten\",\n  \"ottenendone\": \"otten\",\n  \"ottener\": \"ottener\",\n  \"ottenere\": \"otten\",\n  \"ottenerla\": \"otten\",\n  \"ottenerlo\": \"otten\",\n  \"ottenerne\": \"otten\",\n  \"ottenervi\": \"otten\",\n  \"ottenesse\": \"otteness\",\n  \"otteneva\": \"otten\",\n  \"ottengo\": \"otteng\",\n  \"ottengono\": \"otteng\",\n  \"ottenne\": \"ottenn\",\n  \"ottenuta\": \"otten\",\n  \"ottenute\": \"otten\",\n  \"ottenuti\": \"otten\",\n  \"ottenuto\": \"otten\",\n  \"otterrà\": \"otterr\",\n  \"otterrebbe\": \"otterrebb\",\n  \"ottey\": \"ottey\",\n  \"ottica\": \"ottic\",\n  \"ottiene\": \"ottien\",\n  \"ottima\": \"ottim\",\n  \"ottimale\": \"ottimal\",\n  \"ottime\": \"ottim\",\n  \"ottimi\": \"ottim\",\n  \"ottimismo\": \"ottim\",\n  \"ottimista\": \"ottim\",\n  \"ottimisti\": \"ottim\",\n  \"ottimizzazione\": \"ottimizz\",\n  \"ottimo\": \"ottim\",\n  \"ottiva\": \"ottiv\",\n  \"otto\": \"otto\",\n  \"ottobre\": \"ottobr\",\n  \"ottocento\": \"ottocent\",\n  \"ottone\": \"otton\",\n  \"ottorino\": \"ottorin\",\n  \"ottuagenario\": \"ottuagenar\",\n  \"ottusi\": \"ottus\",\n  \"oualche\": \"oualc\",\n  \"ouand\": \"ouand\",\n  \"ouando\": \"ouand\",\n  \"ouel\": \"ouel\",\n  \"out\": \"out\",\n  \"outcold\": \"outcold\",\n  \"ouuero\": \"ouuer\",\n  \"ov\": \"ov\",\n  \"ova\": \"ova\",\n  \"ovazione\": \"ovazion\",\n  \"ovazioni\": \"ovazion\",\n  \"ove\": \"ove\",\n  \"ovest\": \"ovest\",\n  \"ovidio\": \"ovid\",\n  \"ovunque\": \"ovunqu\",\n  \"ovvero\": \"ovver\",\n  \"ovviamente\": \"ovvi\",\n  \"ovviare\": \"ovvi\",\n  \"ovvio\": \"ovvi\",\n  \"owen\": \"owen\",\n  \"owens\": \"owens\",\n  \"ox\": \"ox\",\n  \"ozio\": \"ozi\",\n  \"oziosa\": \"ozios\",\n  \"oziosamente\": \"ozios\",\n  \"ozioso\": \"ozios\",\n  \"ozzie\": \"ozzi\",\n  \"p\": \"p\",\n  \"pa\": \"pa\",\n  \"pablo\": \"pabl\",\n  \"pacatamente\": \"pacat\",\n  \"pacatezza\": \"pacatezz\",\n  \"pacato\": \"pac\",\n  \"pacchetto\": \"pacchett\",\n  \"pacchia\": \"pacc\",\n  \"pace\": \"pac\",\n  \"pachistane\": \"pachistan\",\n  \"paci\": \"pac\",\n  \"pacific\": \"pacific\",\n  \"pacifica\": \"pacif\",\n  \"pacificamente\": \"pacif\",\n  \"pacificazione\": \"pacif\",\n  \"pacifici\": \"pacif\",\n  \"pacifico\": \"pacif\",\n  \"pacifisti\": \"pacif\",\n  \"paciotti\": \"paciott\",\n  \"pacoski\": \"pacosk\",\n  \"padaglione\": \"padaglion\",\n  \"padalino\": \"padalin\",\n  \"padano\": \"pad\",\n  \"paderno\": \"padern\",\n  \"padero\": \"pader\",\n  \"padiglione\": \"padiglion\",\n  \"padiglioni\": \"padiglion\",\n  \"padova\": \"padov\",\n  \"padovano\": \"padov\",\n  \"padre\": \"padr\",\n  \"padreterno\": \"padretern\",\n  \"padri\": \"padr\",\n  \"padron\": \"padron\",\n  \"padrona\": \"padron\",\n  \"padrone\": \"padron\",\n  \"padroni\": \"padron\",\n  \"pae\": \"pae\",\n  \"paesani\": \"paesan\",\n  \"paese\": \"paes\",\n  \"paesè\": \"paes\",\n  \"paesello\": \"paesell\",\n  \"paesetti\": \"paesett\",\n  \"paesetto\": \"paesett\",\n  \"paesi\": \"paes\",\n  \"paesistiche\": \"paesist\",\n  \"paf\": \"paf\",\n  \"pag\": \"pag\",\n  \"paga\": \"pag\",\n  \"pagamenti\": \"pag\",\n  \"pagamento\": \"pag\",\n  \"pagando\": \"pag\",\n  \"pagandolo\": \"pag\",\n  \"pagani\": \"pagan\",\n  \"paganin\": \"paganin\",\n  \"paganini\": \"paganin\",\n  \"pagano\": \"pag\",\n  \"paganoni\": \"paganon\",\n  \"paganti\": \"pagant\",\n  \"pagar\": \"pag\",\n  \"pagare\": \"pag\",\n  \"pagarglielo\": \"pag\",\n  \"pagarle\": \"pag\",\n  \"pagarlo\": \"pag\",\n  \"pagarono\": \"pag\",\n  \"pagarsi\": \"pag\",\n  \"pagata\": \"pag\",\n  \"pagate\": \"pag\",\n  \"pagatelo\": \"pagatel\",\n  \"pagato\": \"pag\",\n  \"pagava\": \"pag\",\n  \"pagelle\": \"pagell\",\n  \"paggi\": \"pagg\",\n  \"paggio\": \"pagg\",\n  \"paghe\": \"pagh\",\n  \"pagherà\": \"pagh\",\n  \"pagherai\": \"pagh\",\n  \"pagherei\": \"pagh\",\n  \"pagherò\": \"pagh\",\n  \"paghi\": \"pagh\",\n  \"paghiate\": \"pagh\",\n  \"paghino\": \"paghin\",\n  \"pagina\": \"pagin\",\n  \"pagine\": \"pagin\",\n  \"paglia\": \"pagl\",\n  \"pagliaccetti\": \"pagliaccett\",\n  \"pagliaio\": \"pagliai\",\n  \"pagliarini\": \"pagliarin\",\n  \"pagliuca\": \"pagliuc\",\n  \"pagliucola\": \"pagliucol\",\n  \"pago\": \"pag\",\n  \"pagò\": \"pag\",\n  \"paia\": \"pai\",\n  \"paio\": \"pai\",\n  \"paiolo\": \"paiol\",\n  \"paion\": \"paion\",\n  \"paiono\": \"pai\",\n  \"paissan\": \"paissan\",\n  \"pakistan\": \"pakistan\",\n  \"pakistani\": \"pakistan\",\n  \"pala\": \"pal\",\n  \"palace\": \"palac\",\n  \"paladina\": \"paladin\",\n  \"palafreni\": \"palafren\",\n  \"palafreniere\": \"palafren\",\n  \"palam\": \"palam\",\n  \"palatrussardi\": \"palatrussard\",\n  \"palatrussarsi\": \"palatruss\",\n  \"palazzetto\": \"palazzett\",\n  \"palazzi\": \"palazz\",\n  \"palazzina\": \"palazzin\",\n  \"palazzo\": \"palazz\",\n  \"palazzolo\": \"palazzol\",\n  \"palazzotto\": \"palazzott\",\n  \"palchetto\": \"palchett\",\n  \"palchi\": \"palc\",\n  \"palco\": \"palc\",\n  \"pale\": \"pal\",\n  \"palermo\": \"palerm\",\n  \"palesar\": \"pales\",\n  \"palesare\": \"pales\",\n  \"palese\": \"pales\",\n  \"palesi\": \"pales\",\n  \"palestinà\": \"palestin\",\n  \"palestinese\": \"palestines\",\n  \"palestinesi\": \"palestines\",\n  \"paletto\": \"palett\",\n  \"pali\": \"pal\",\n  \"palieri\": \"palier\",\n  \"palio\": \"pal\",\n  \"palizzolo\": \"palizzol\",\n  \"palla\": \"pall\",\n  \"pallacanestro\": \"pallacanestr\",\n  \"palladini\": \"palladin\",\n  \"pallavolando\": \"pallavol\",\n  \"pallavolo\": \"pallavol\",\n  \"palle\": \"pall\",\n  \"pallhuber\": \"pallhuber\",\n  \"pallida\": \"pallid\",\n  \"pallidi\": \"pallid\",\n  \"pallidissime\": \"pallidissim\",\n  \"pallido\": \"pallid\",\n  \"pallini\": \"pallin\",\n  \"pallone\": \"pallon\",\n  \"pallonetto\": \"pallonett\",\n  \"pallore\": \"pallor\",\n  \"pallottola\": \"pallottol\",\n  \"palm\": \"palm\",\n  \"palma\": \"palm\",\n  \"palme\": \"palm\",\n  \"palmer\": \"palmer\",\n  \"palmieri\": \"palmier\",\n  \"palmisani\": \"palmisan\",\n  \"palmisano\": \"palmis\",\n  \"palmo\": \"palm\",\n  \"palo\": \"pal\",\n  \"palombelli\": \"palombell\",\n  \"palpa\": \"palp\",\n  \"palpava\": \"palp\",\n  \"palpebre\": \"palpebr\",\n  \"palpitazion\": \"palpitazion\",\n  \"palpitazioni\": \"palpit\",\n  \"palude\": \"palud\",\n  \"paludi\": \"palud\",\n  \"paly\": \"paly\",\n  \"pamela\": \"pamel\",\n  \"pampani\": \"pampan\",\n  \"pan\": \"pan\",\n  \"panca\": \"panc\",\n  \"pancaro\": \"pancar\",\n  \"pance\": \"panc\",\n  \"pancev\": \"pancev\",\n  \"panche\": \"panc\",\n  \"panchetti\": \"panchett\",\n  \"panchetto\": \"panchett\",\n  \"panchina\": \"panchin\",\n  \"panchine\": \"panchin\",\n  \"pancho\": \"panc\",\n  \"pancia\": \"panc\",\n  \"pancione\": \"pancion\",\n  \"pandolfo\": \"pandolf\",\n  \"pane\": \"pan\",\n  \"panegirico\": \"panegir\",\n  \"panetta\": \"panett\",\n  \"panfido\": \"panfid\",\n  \"panfilo\": \"panfil\",\n  \"pani\": \"pan\",\n  \"panicastrelle\": \"panicastrell\",\n  \"panico\": \"panic\",\n  \"panicucci\": \"panicucc\",\n  \"paniera\": \"panier\",\n  \"paniere\": \"pan\",\n  \"pannè\": \"pann\",\n  \"pannella\": \"pannell\",\n  \"panni\": \"pann\",\n  \"panno\": \"pann\",\n  \"pannocchiette\": \"pannocchiett\",\n  \"panorama\": \"panoram\",\n  \"panoramà\": \"panoram\",\n  \"panorma\": \"panorm\",\n  \"pantedesca\": \"pantedesc\",\n  \"panucci\": \"panucc\",\n  \"paola\": \"paol\",\n  \"paoli\": \"paol\",\n  \"paolin\": \"paolin\",\n  \"paolo\": \"paol\",\n  \"paonazze\": \"paonazz\",\n  \"paonazzo\": \"paonazz\",\n  \"paone\": \"paon\",\n  \"papa\": \"pap\",\n  \"papà\": \"pap\",\n  \"papais\": \"papais\",\n  \"papalina\": \"papalin\",\n  \"papeete\": \"pap\",\n  \"papino\": \"papin\",\n  \"pappagorgia\": \"pappagorg\",\n  \"par\": \"par\",\n  \"para\": \"par\",\n  \"paracadute\": \"paracad\",\n  \"paracadutisti\": \"paracadut\",\n  \"paradigma\": \"paradigm\",\n  \"paradise\": \"paradis\",\n  \"paradisi\": \"paradis\",\n  \"paradisiaci\": \"paradisiac\",\n  \"paradiso\": \"paradis\",\n  \"paradossale\": \"paradossal\",\n  \"paragon\": \"paragon\",\n  \"paragonare\": \"paragon\",\n  \"paragonarlo\": \"paragon\",\n  \"paragonata\": \"paragon\",\n  \"paragonato\": \"paragon\",\n  \"paragonava\": \"paragon\",\n  \"paragone\": \"paragon\",\n  \"paragonerebbe\": \"paragon\",\n  \"paragoni\": \"paragon\",\n  \"paragrafo\": \"paragraf\",\n  \"paralizzeranno\": \"paralizz\",\n  \"parallelo\": \"parallel\",\n  \"paramatti\": \"paramatt\",\n  \"parametri\": \"parametr\",\n  \"paramygina\": \"paramygin\",\n  \"parapetto\": \"parapett\",\n  \"parapiglia\": \"parapigl\",\n  \"parare\": \"par\",\n  \"parassiti\": \"parass\",\n  \"parastato\": \"parast\",\n  \"parat\": \"parat\",\n  \"parata\": \"par\",\n  \"parate\": \"par\",\n  \"parati\": \"par\",\n  \"parato\": \"par\",\n  \"parava\": \"par\",\n  \"paravano\": \"par\",\n  \"paravento\": \"paravent\",\n  \"parca\": \"parc\",\n  \"parcere\": \"parc\",\n  \"parche\": \"parc\",\n  \"parcheggiata\": \"parchegg\",\n  \"parcheggiate\": \"parchegg\",\n  \"parcheggiava\": \"parchegg\",\n  \"parcheggio\": \"parchegg\",\n  \"parchi\": \"parc\",\n  \"parco\": \"parc\",\n  \"pare\": \"par\",\n  \"parè\": \"par\",\n  \"parecchi\": \"parecc\",\n  \"pareggia\": \"paregg\",\n  \"pareggiare\": \"paregg\",\n  \"pareggiato\": \"paregg\",\n  \"pareggio\": \"paregg\",\n  \"parendo\": \"par\",\n  \"parendoci\": \"par\",\n  \"parendogli\": \"par\",\n  \"parentado\": \"parentad\",\n  \"parente\": \"parent\",\n  \"parentela\": \"parentel\",\n  \"parentele\": \"parentel\",\n  \"parenti\": \"parent\",\n  \"pareo\": \"pare\",\n  \"parer\": \"parer\",\n  \"parere\": \"par\",\n  \"parergli\": \"par\",\n  \"pareri\": \"parer\",\n  \"paresse\": \"paress\",\n  \"paressero\": \"par\",\n  \"parete\": \"par\",\n  \"pareti\": \"paret\",\n  \"pareva\": \"par\",\n  \"parevan\": \"parevan\",\n  \"parevano\": \"par\",\n  \"pari\": \"par\",\n  \"paribas\": \"paribas\",\n  \"paribus\": \"paribus\",\n  \"paride\": \"parid\",\n  \"parieti\": \"pariet\",\n  \"parigi\": \"parig\",\n  \"parigina\": \"parigin\",\n  \"parigino\": \"parigin\",\n  \"parimente\": \"pariment\",\n  \"parimenti\": \"par\",\n  \"parini\": \"parin\",\n  \"paris\": \"paris\",\n  \"parisi\": \"paris\",\n  \"parità\": \"parit\",\n  \"parks\": \"parks\",\n  \"parla\": \"parl\",\n  \"parlamentare\": \"parlament\",\n  \"parlamentari\": \"parlamentar\",\n  \"parlamenti\": \"parl\",\n  \"parlamentini\": \"parlamentin\",\n  \"parlamento\": \"parl\",\n  \"parlan\": \"parlan\",\n  \"parlando\": \"parl\",\n  \"parlandone\": \"parl\",\n  \"parlano\": \"parl\",\n  \"parlante\": \"parlant\",\n  \"parlantina\": \"parlantin\",\n  \"parlar\": \"parl\",\n  \"parlare\": \"parl\",\n  \"parlargli\": \"parl\",\n  \"parlargliene\": \"parl\",\n  \"parlarle\": \"parl\",\n  \"parlarne\": \"parl\",\n  \"parlaron\": \"parlaron\",\n  \"parlarono\": \"parl\",\n  \"parlarvene\": \"parl\",\n  \"parlarvi\": \"parl\",\n  \"parlasse\": \"parl\",\n  \"parlata\": \"parl\",\n  \"parlate\": \"parl\",\n  \"parlati\": \"parl\",\n  \"parlato\": \"parl\",\n  \"parlatori\": \"parlator\",\n  \"parlatorio\": \"parlator\",\n  \"parlava\": \"parl\",\n  \"parlavan\": \"parlavan\",\n  \"parlavano\": \"parl\",\n  \"parlavate\": \"parl\",\n  \"parlerà\": \"parl\",\n  \"parlerebbe\": \"parl\",\n  \"parleremo\": \"parl\",\n  \"parlerò\": \"parl\",\n  \"parli\": \"parl\",\n  \"parliam\": \"parliam\",\n  \"parliamo\": \"parl\",\n  \"parlino\": \"parlin\",\n  \"parlo\": \"parl\",\n  \"parlò\": \"parl\",\n  \"parlovel\": \"parlovel\",\n  \"parlto\": \"parlt\",\n  \"parma\": \"parm\",\n  \"parmalat\": \"parmalat\",\n  \"parmander\": \"parmander\",\n  \"parmigiani\": \"parmigian\",\n  \"parola\": \"parol\",\n  \"parolacce\": \"parolacc\",\n  \"parolaccia\": \"parolacc\",\n  \"parole\": \"parol\",\n  \"parolina\": \"parolin\",\n  \"paroline\": \"parolin\",\n  \"parotidi\": \"parotid\",\n  \"parpagliole\": \"parpagliol\",\n  \"parquet\": \"parquet\",\n  \"parrà\": \"parr\",\n  \"parrebbe\": \"parrebb\",\n  \"parrebbero\": \"parrebber\",\n  \"parrocchia\": \"parrocc\",\n  \"parrocchiale\": \"parrocchial\",\n  \"parrocchiana\": \"parrocchian\",\n  \"parrocchie\": \"parrocc\",\n  \"parrochi\": \"parroc\",\n  \"parroci\": \"parroc\",\n  \"parroco\": \"parroc\",\n  \"parrucca\": \"parrucc\",\n  \"parsa\": \"pars\",\n  \"parse\": \"pars\",\n  \"parsi\": \"pars\",\n  \"parso\": \"pars\",\n  \"parsons\": \"parsons\",\n  \"part\": \"part\",\n  \"parta\": \"part\",\n  \"parte\": \"part\",\n  \"partecip\": \"partecip\",\n  \"partecipa\": \"partecip\",\n  \"partecipano\": \"partecip\",\n  \"partecipanti\": \"partecip\",\n  \"partecipare\": \"partecip\",\n  \"parteciparenno\": \"parteciparenn\",\n  \"partecipato\": \"partecip\",\n  \"partecipava\": \"partecip\",\n  \"partecipavano\": \"partecip\",\n  \"partecipaz\": \"partecipaz\",\n  \"partecipazione\": \"partecip\",\n  \"partecipazioni\": \"partecip\",\n  \"partecipe\": \"partecip\",\n  \"parteciperà\": \"partecip\",\n  \"parteciperanno\": \"partecip\",\n  \"partecipi\": \"partecip\",\n  \"partecipò\": \"partecip\",\n  \"partendo\": \"part\",\n  \"partenopeo\": \"partenope\",\n  \"partenza\": \"partenz\",\n  \"partenze\": \"partenz\",\n  \"parterre\": \"parterr\",\n  \"partes\": \"partes\",\n  \"parti\": \"part\",\n  \"partì\": \"part\",\n  \"partiali\": \"partial\",\n  \"partiamo\": \"part\",\n  \"partiate\": \"part\",\n  \"partick\": \"partick\",\n  \"particolar\": \"particol\",\n  \"particolare\": \"particol\",\n  \"particolareggiati\": \"particolaregg\",\n  \"particolari\": \"particolar\",\n  \"particolarità\": \"particolar\",\n  \"particolarmente\": \"particolar\",\n  \"partigiane\": \"partigian\",\n  \"partigiani\": \"partigian\",\n  \"partigiano\": \"partig\",\n  \"partir\": \"part\",\n  \"partirà\": \"part\",\n  \"partiranno\": \"part\",\n  \"partire\": \"part\",\n  \"partirebbe\": \"part\",\n  \"partiremo\": \"part\",\n  \"partirono\": \"part\",\n  \"partisse\": \"partiss\",\n  \"partita\": \"part\",\n  \"partite\": \"part\",\n  \"partiti\": \"part\",\n  \"partitica\": \"partit\",\n  \"partitici\": \"partit\",\n  \"partitico\": \"partit\",\n  \"partitie\": \"partit\",\n  \"partito\": \"part\",\n  \"partitocratica\": \"partitocrat\",\n  \"partitocrazia\": \"partitocraz\",\n  \"partiva\": \"part\",\n  \"partivano\": \"part\",\n  \"partner\": \"partner\",\n  \"partners\": \"partners\",\n  \"parto\": \"part\",\n  \"partono\": \"part\",\n  \"partorienti\": \"partorient\",\n  \"partorire\": \"partor\",\n  \"party\": \"party\",\n  \"paruta\": \"par\",\n  \"parve\": \"parv\",\n  \"parver\": \"parver\",\n  \"parvero\": \"parver\",\n  \"parziale\": \"parzial\",\n  \"parzialità\": \"parzial\",\n  \"parzialmente\": \"parzial\",\n  \"pascenti\": \"pascent\",\n  \"pascolava\": \"pascol\",\n  \"pascolo\": \"pascol\",\n  \"pascucci\": \"pascucc\",\n  \"paseo\": \"pase\",\n  \"pashkina\": \"pashkin\",\n  \"pasionarià\": \"pasionar\",\n  \"pasqua\": \"pasqu\",\n  \"pasquale\": \"pasqual\",\n  \"pasquero\": \"pasquer\",\n  \"passa\": \"pass\",\n  \"passaggio\": \"passagg\",\n  \"passagio\": \"passag\",\n  \"passalacqua\": \"passalacqu\",\n  \"passamontagna\": \"passamontagn\",\n  \"passan\": \"passan\",\n  \"passando\": \"pass\",\n  \"passani\": \"passan\",\n  \"passano\": \"pass\",\n  \"passaporti\": \"passaport\",\n  \"passaporto\": \"passaport\",\n  \"passar\": \"pass\",\n  \"passare\": \"pass\",\n  \"passarella\": \"passarell\",\n  \"passarla\": \"pass\",\n  \"passarli\": \"pass\",\n  \"passarlo\": \"pass\",\n  \"passarne\": \"pass\",\n  \"passaron\": \"passaron\",\n  \"passarono\": \"pass\",\n  \"passarsi\": \"pass\",\n  \"passarvela\": \"pass\",\n  \"passarvi\": \"pass\",\n  \"passasse\": \"pass\",\n  \"passassero\": \"pass\",\n  \"passata\": \"pass\",\n  \"passate\": \"pass\",\n  \"passategli\": \"passategl\",\n  \"passatempi\": \"passatemp\",\n  \"passatempo\": \"passatemp\",\n  \"passati\": \"pass\",\n  \"passato\": \"pass\",\n  \"passatò\": \"passat\",\n  \"passava\": \"pass\",\n  \"passavan\": \"passavan\",\n  \"passavano\": \"pass\",\n  \"passe\": \"pass\",\n  \"passeggeri\": \"passegger\",\n  \"passeggiando\": \"passegg\",\n  \"passeggiare\": \"passegg\",\n  \"passeggiata\": \"passegg\",\n  \"passeggiate\": \"passegg\",\n  \"passeggiato\": \"passegg\",\n  \"passeggiera\": \"passeggier\",\n  \"passeggiere\": \"passegg\",\n  \"passeggieri\": \"passeggier\",\n  \"passeggiero\": \"passeggier\",\n  \"passerà\": \"pass\",\n  \"passeranno\": \"pass\",\n  \"passere\": \"pass\",\n  \"passerebbe\": \"pass\",\n  \"passerella\": \"passerell\",\n  \"passeremo\": \"pass\",\n  \"passi\": \"pass\",\n  \"passiamo\": \"pass\",\n  \"passibili\": \"passibil\",\n  \"passim\": \"passim\",\n  \"passini\": \"passin\",\n  \"passion\": \"passion\",\n  \"passione\": \"passion\",\n  \"passioni\": \"passion\",\n  \"passiva\": \"pass\",\n  \"passivi\": \"pass\",\n  \"passivo\": \"pass\",\n  \"passler\": \"passler\",\n  \"passo\": \"pass\",\n  \"passò\": \"pass\",\n  \"pasta\": \"past\",\n  \"pastari\": \"pastar\",\n  \"pastaria\": \"pastar\",\n  \"paste\": \"past\",\n  \"pasticche\": \"pasticc\",\n  \"pasticci\": \"pasticc\",\n  \"pasticcio\": \"pasticc\",\n  \"pastiglia\": \"pastigl\",\n  \"pastiglie\": \"pastigl\",\n  \"pastine\": \"pastin\",\n  \"pasto\": \"past\",\n  \"pastocchia\": \"pastocc\",\n  \"pastorale\": \"pastoral\",\n  \"pastorali\": \"pastoral\",\n  \"pastore\": \"pastor\",\n  \"pastori\": \"pastor\",\n  \"pastorizia\": \"pastoriz\",\n  \"pasturo\": \"pastur\",\n  \"pat\": \"pat\",\n  \"patatà\": \"patat\",\n  \"patate\": \"pat\",\n  \"patavina\": \"patavin\",\n  \"patente\": \"patent\",\n  \"patenti\": \"patent\",\n  \"paterna\": \"patern\",\n  \"paterni\": \"patern\",\n  \"paternita\": \"patern\",\n  \"paternità\": \"patern\",\n  \"paterniti\": \"patern\",\n  \"paternostri\": \"paternostr\",\n  \"paterson\": \"paterson\",\n  \"patetica\": \"patet\",\n  \"patimenti\": \"pat\",\n  \"patimento\": \"pat\",\n  \"patina\": \"patin\",\n  \"patinate\": \"patin\",\n  \"patir\": \"pat\",\n  \"patire\": \"pat\",\n  \"patirebbero\": \"pat\",\n  \"patiscan\": \"patiscan\",\n  \"patisce\": \"pat\",\n  \"patisco\": \"pat\",\n  \"patiscono\": \"pat\",\n  \"patiti\": \"pat\",\n  \"patito\": \"pat\",\n  \"pativa\": \"pat\",\n  \"patologia\": \"patolog\",\n  \"patologie\": \"patolog\",\n  \"patria\": \"patr\",\n  \"patriae\": \"patria\",\n  \"patriarchi\": \"patriarc\",\n  \"patrick\": \"patrick\",\n  \"patrimoni\": \"patrimon\",\n  \"patrimonio\": \"patrimon\",\n  \"patrizia\": \"patriz\",\n  \"patrocinio\": \"patrocin\",\n  \"patrona\": \"patron\",\n  \"patteggiamento\": \"pattegg\",\n  \"patti\": \"patt\",\n  \"pattinaggio\": \"pattinagg\",\n  \"pattino\": \"pattin\",\n  \"patto\": \"patt\",\n  \"pattuglia\": \"pattugl\",\n  \"pattugliamento\": \"pattugl\",\n  \"pattuita\": \"pattu\",\n  \"paul\": \"paul\",\n  \"paula\": \"paul\",\n  \"paulo\": \"paul\",\n  \"paura\": \"paur\",\n  \"pauraccia\": \"pauracc\",\n  \"paure\": \"paur\",\n  \"paurosa\": \"pauros\",\n  \"pauroso\": \"pauros\",\n  \"pausa\": \"paus\",\n  \"pav\": \"pav\",\n  \"pavan\": \"pavan\",\n  \"pavel\": \"pavel\",\n  \"pavia\": \"pav\",\n  \"paviato\": \"pav\",\n  \"pavimento\": \"pav\",\n  \"pavone\": \"pavon\",\n  \"paxton\": \"paxton\",\n  \"paziente\": \"pazient\",\n  \"pazienti\": \"pazient\",\n  \"pazienza\": \"pazienz\",\n  \"pazzaglia\": \"pazzagl\",\n  \"pazzamente\": \"pazz\",\n  \"pazzia\": \"pazz\",\n  \"pazzie\": \"pazz\",\n  \"pazzo\": \"pazz\",\n  \"pb\": \"pb\",\n  \"pci\": \"pci\",\n  \"pcm\": \"pcm\",\n  \"pdg\": \"pdg\",\n  \"pdl\": \"pdl\",\n  \"pds\": \"pds\",\n  \"pe\": \"pe\",\n  \"pearl\": \"pearl\",\n  \"pecca\": \"pecc\",\n  \"peccatacci\": \"peccatacc\",\n  \"peccati\": \"pecc\",\n  \"peccato\": \"pecc\",\n  \"pecchia\": \"pecc\",\n  \"pechino\": \"pechin\",\n  \"pecora\": \"pecor\",\n  \"pecoraro\": \"pecorar\",\n  \"pecore\": \"pecor\",\n  \"pecorella\": \"pecorell\",\n  \"pecorelle\": \"pecorell\",\n  \"peculato\": \"pecul\",\n  \"peculiari\": \"peculiar\",\n  \"peculiarità\": \"peculiar\",\n  \"pecuniaria\": \"pecuniar\",\n  \"pecuniarie\": \"pecuniar\",\n  \"pedagogia\": \"pedagog\",\n  \"pedata\": \"ped\",\n  \"pedate\": \"ped\",\n  \"pedestre\": \"pedestr\",\n  \"pedestri\": \"pedestr\",\n  \"pediatrico\": \"pediatr\",\n  \"pedonato\": \"pedon\",\n  \"pedone\": \"pedon\",\n  \"pedoni\": \"pedon\",\n  \"pedrazzi\": \"pedrazz\",\n  \"pedro\": \"pedr\",\n  \"pedroni\": \"pedron\",\n  \"peggi\": \"pegg\",\n  \"peggio\": \"pegg\",\n  \"peggior\": \"peggior\",\n  \"peggiora\": \"peggior\",\n  \"peggioramento\": \"peggior\",\n  \"peggiorar\": \"peggior\",\n  \"peggiorata\": \"peggior\",\n  \"peggiore\": \"peggior\",\n  \"peggiori\": \"peggior\",\n  \"pegno\": \"pegn\",\n  \"pela\": \"pel\",\n  \"pelata\": \"pel\",\n  \"pelato\": \"pel\",\n  \"pelè\": \"pel\",\n  \"peli\": \"pel\",\n  \"pelle\": \"pell\",\n  \"pellegrinaggio\": \"pellegrinagg\",\n  \"pellegrini\": \"pellegrin\",\n  \"pellegrino\": \"pellegrin\",\n  \"pellemberg\": \"pellemberg\",\n  \"pellicanò\": \"pellican\",\n  \"pelliccia\": \"pellicc\",\n  \"pellicola\": \"pellicol\",\n  \"pelo\": \"pel\",\n  \"pelosa\": \"pelos\",\n  \"pen\": \"pen\",\n  \"pena\": \"pen\",\n  \"penale\": \"penal\",\n  \"penali\": \"penal\",\n  \"penalista\": \"penal\",\n  \"penalità\": \"penal\",\n  \"penalizzato\": \"penalizz\",\n  \"penalizzazione\": \"penalizz\",\n  \"penare\": \"pen\",\n  \"penarono\": \"pen\",\n  \"penasa\": \"penas\",\n  \"penato\": \"pen\",\n  \"pence\": \"penc\",\n  \"pendente\": \"pendent\",\n  \"pendenti\": \"pendent\",\n  \"pendere\": \"pend\",\n  \"pendeva\": \"pend\",\n  \"pendevano\": \"pend\",\n  \"pendìi\": \"pendì\",\n  \"pendìo\": \"pendì\",\n  \"pendolari\": \"pendolar\",\n  \"pendoni\": \"pendon\",\n  \"pene\": \"pen\",\n  \"penetrando\": \"penetr\",\n  \"penetrano\": \"penetr\",\n  \"penetrante\": \"penetr\",\n  \"penetrantissimo\": \"penetrantissim\",\n  \"penetrar\": \"penetr\",\n  \"penetrare\": \"penetr\",\n  \"penetrati\": \"penetr\",\n  \"penetrato\": \"penetr\",\n  \"penetrazione\": \"penetr\",\n  \"penetrò\": \"penetr\",\n  \"penisola\": \"penisol\",\n  \"penitente\": \"penitent\",\n  \"penitenza\": \"penitent\",\n  \"penitenze\": \"penitent\",\n  \"penitenziari\": \"penitenziar\",\n  \"penitenziaria\": \"penitenziar\",\n  \"penitenziario\": \"penitenziar\",\n  \"penitenziere\": \"penitenz\",\n  \"penna\": \"penn\",\n  \"pennacchi\": \"pennacc\",\n  \"pennacchioli\": \"pennacchiol\",\n  \"pennarelli\": \"pennarell\",\n  \"penne\": \"penn\",\n  \"pennelli\": \"pennell\",\n  \"pennello\": \"pennell\",\n  \"pennivendolo\": \"penniv\",\n  \"pennuto\": \"penn\",\n  \"penò\": \"pen\",\n  \"penosa\": \"penos\",\n  \"penosi\": \"penos\",\n  \"penoso\": \"penos\",\n  \"pensa\": \"pens\",\n  \"pensabile\": \"pensabil\",\n  \"pensaci\": \"pensac\",\n  \"pensai\": \"pensa\",\n  \"pensando\": \"pens\",\n  \"pensandoci\": \"pens\",\n  \"pensano\": \"pens\",\n  \"pensar\": \"pens\",\n  \"pensarà\": \"pensar\",\n  \"pensarci\": \"pens\",\n  \"pensare\": \"pens\",\n  \"pensarne\": \"pens\",\n  \"pensaron\": \"pensaron\",\n  \"pensarono\": \"pens\",\n  \"pensasse\": \"pens\",\n  \"pensassero\": \"pens\",\n  \"pensassi\": \"pens\",\n  \"pensata\": \"pens\",\n  \"pensate\": \"pens\",\n  \"pensateci\": \"pensatec\",\n  \"pensato\": \"pens\",\n  \"pensatoci\": \"pensatoc\",\n  \"pensava\": \"pens\",\n  \"pensavan\": \"pensavan\",\n  \"pensavano\": \"pens\",\n  \"pensavo\": \"pens\",\n  \"penserà\": \"pens\",\n  \"penseranno\": \"pens\",\n  \"penserebbe\": \"pens\",\n  \"penserò\": \"pens\",\n  \"pensi\": \"pens\",\n  \"pensiam\": \"pensiam\",\n  \"pensiamo\": \"pens\",\n  \"pensiate\": \"pens\",\n  \"pensier\": \"pensier\",\n  \"pensieri\": \"pensier\",\n  \"pensierino\": \"pensierin\",\n  \"pensiero\": \"pensier\",\n  \"pensierosa\": \"pensier\",\n  \"pensierosi\": \"pensier\",\n  \"pensieroso\": \"pensier\",\n  \"pensino\": \"pensin\",\n  \"pensionati\": \"pension\",\n  \"pensionatì\": \"pensionat\",\n  \"pensionato\": \"pension\",\n  \"pensione\": \"pension\",\n  \"pensioni\": \"pension\",\n  \"penso\": \"pens\",\n  \"pensò\": \"pens\",\n  \"penta\": \"pent\",\n  \"pentecoste\": \"pentecost\",\n  \"pentì\": \"pent\",\n  \"pentimenti\": \"pent\",\n  \"pentimento\": \"pent\",\n  \"pentimentuccio\": \"pentimentucc\",\n  \"pentirà\": \"pent\",\n  \"pentirsi\": \"pent\",\n  \"pentita\": \"pent\",\n  \"pentito\": \"pent\",\n  \"pentiva\": \"pent\",\n  \"pento\": \"pent\",\n  \"pentola\": \"pentol\",\n  \"pentolaccia\": \"pentolacc\",\n  \"pentole\": \"pentol\",\n  \"pentolino\": \"pentolin\",\n  \"penuria\": \"penur\",\n  \"penzoloni\": \"penzolon\",\n  \"peo\": \"peo\",\n  \"peoplè\": \"peopl\",\n  \"pepe\": \"pep\",\n  \"peppe\": \"pepp\",\n  \"peppino\": \"peppin\",\n  \"peqin\": \"peqin\",\n  \"per\": \"per\",\n  \"pera\": \"per\",\n  \"peraboni\": \"perabon\",\n  \"peraltro\": \"peraltr\",\n  \"percentuale\": \"percentual\",\n  \"percentuali\": \"percentual\",\n  \"percepiamo\": \"percep\",\n  \"percepiranno\": \"percep\",\n  \"percepire\": \"percep\",\n  \"percepisce\": \"percep\",\n  \"perche\": \"perc\",\n  \"perché\": \"perc\",\n  \"perchè\": \"perc\",\n  \"perciò\": \"perc\",\n  \"percorrere\": \"percorr\",\n  \"percorribile\": \"percorr\",\n  \"percorsa\": \"percors\",\n  \"percorsi\": \"percors\",\n  \"percorso\": \"percors\",\n  \"percosse\": \"percoss\",\n  \"percotere\": \"percot\",\n  \"perda\": \"perd\",\n  \"perde\": \"perd\",\n  \"perdendo\": \"perd\",\n  \"perdendosi\": \"perd\",\n  \"perder\": \"perder\",\n  \"perderà\": \"perd\",\n  \"perdere\": \"perd\",\n  \"perderla\": \"perd\",\n  \"perderli\": \"perd\",\n  \"perdersi\": \"perd\",\n  \"perderti\": \"perd\",\n  \"perdete\": \"perd\",\n  \"perdeva\": \"perd\",\n  \"perdevan\": \"perdevan\",\n  \"perdevano\": \"perd\",\n  \"perdiam\": \"perdiam\",\n  \"perdita\": \"perd\",\n  \"perdite\": \"perd\",\n  \"perditè\": \"perdit\",\n  \"perdona\": \"perdon\",\n  \"perdonami\": \"perdonam\",\n  \"perdonare\": \"perdon\",\n  \"perdonarvi\": \"perdon\",\n  \"perdonata\": \"perdon\",\n  \"perdonateci\": \"perdonatec\",\n  \"perdonatemi\": \"perdonatem\",\n  \"perdonato\": \"perdon\",\n  \"perdonavano\": \"perdon\",\n  \"perdone\": \"perdon\",\n  \"perdonerà\": \"perdon\",\n  \"perdoni\": \"perdon\",\n  \"perdonino\": \"perdonin\",\n  \"perdono\": \"perd\",\n  \"perdurante\": \"perdur\",\n  \"perduta\": \"perd\",\n  \"perdute\": \"perd\",\n  \"perduti\": \"perd\",\n  \"perduto\": \"perd\",\n  \"perenne\": \"perenn\",\n  \"perentoria\": \"perentor\",\n  \"peres\": \"peres\",\n  \"perfetta\": \"perfett\",\n  \"perfettamente\": \"perfett\",\n  \"perfette\": \"perfett\",\n  \"perfetti\": \"perfett\",\n  \"perfetto\": \"perfett\",\n  \"perfezionabile\": \"perfezion\",\n  \"perfezionamento\": \"perfezion\",\n  \"perfezionare\": \"perfezion\",\n  \"perfezionata\": \"perfezion\",\n  \"perfezione\": \"perfezion\",\n  \"perfida\": \"perfid\",\n  \"perfidia\": \"perfid\",\n  \"perfino\": \"perfin\",\n  \"performance\": \"performanc\",\n  \"pericolassero\": \"pericol\",\n  \"pericoli\": \"pericol\",\n  \"pericolo\": \"pericol\",\n  \"pericolosa\": \"pericol\",\n  \"pericolosamente\": \"pericol\",\n  \"pericolose\": \"pericol\",\n  \"pericolosi\": \"pericol\",\n  \"pericolosità\": \"pericolos\",\n  \"pericoloso\": \"pericol\",\n  \"perierat\": \"perierat\",\n  \"periferia\": \"perifer\",\n  \"periferici\": \"perifer\",\n  \"perifrasi\": \"perifras\",\n  \"perimetri\": \"perimetr\",\n  \"perimetro\": \"perimetr\",\n  \"periodi\": \"period\",\n  \"periodica\": \"period\",\n  \"periodicamente\": \"period\",\n  \"periodiche\": \"period\",\n  \"periodici\": \"period\",\n  \"periodico\": \"period\",\n  \"periodo\": \"period\",\n  \"peripatetico\": \"peripatet\",\n  \"perirono\": \"per\",\n  \"perita\": \"per\",\n  \"perite\": \"per\",\n  \"periti\": \"per\",\n  \"perito\": \"per\",\n  \"periva\": \"per\",\n  \"perizia\": \"periz\",\n  \"perla\": \"perl\",\n  \"perle\": \"perl\",\n  \"perlier\": \"perlier\",\n  \"perlomeno\": \"perlomen\",\n  \"perlopiù\": \"perlopiù\",\n  \"perlustrare\": \"perlustr\",\n  \"perlustrata\": \"perlustr\",\n  \"perlustravamo\": \"perlustr\",\n  \"perlustrazione\": \"perlustr\",\n  \"perlustreranno\": \"perlustr\",\n  \"permalosa\": \"permal\",\n  \"permane\": \"perman\",\n  \"permanente\": \"permanent\",\n  \"permanentemente\": \"permanent\",\n  \"permanenza\": \"permanent\",\n  \"permanenze\": \"permanent\",\n  \"permangono\": \"permang\",\n  \"permessa\": \"permess\",\n  \"permessi\": \"permess\",\n  \"permesso\": \"permess\",\n  \"permetta\": \"permett\",\n  \"permette\": \"permett\",\n  \"permettendogli\": \"permett\",\n  \"permetterà\": \"permett\",\n  \"permetteranno\": \"permett\",\n  \"permettere\": \"permett\",\n  \"permettessero\": \"permett\",\n  \"permettetemi\": \"permettetem\",\n  \"permetteva\": \"permett\",\n  \"permettevano\": \"permett\",\n  \"permise\": \"permis\",\n  \"permissiva\": \"permiss\",\n  \"permitieren\": \"permitieren\",\n  \"perniciosa\": \"pernic\",\n  \"pernizioso\": \"perniz\",\n  \"pero\": \"per\",\n  \"però\": \"per\",\n  \"perocché\": \"perocc\",\n  \"peron\": \"peron\",\n  \"perone\": \"peron\",\n  \"peronista\": \"peron\",\n  \"perorare\": \"peror\",\n  \"perpendicolo\": \"perpendicol\",\n  \"perpetrata\": \"perpetr\",\n  \"perpetua\": \"perpetu\",\n  \"perpetui\": \"perpetu\",\n  \"perpetuo\": \"perpetu\",\n  \"perplessita\": \"perpless\",\n  \"perplessità\": \"perpless\",\n  \"perplesso\": \"perpless\",\n  \"perpretato\": \"perpret\",\n  \"perri\": \"perr\",\n  \"perrini\": \"perrin\",\n  \"perrone\": \"perron\",\n  \"perrotta\": \"perrott\",\n  \"persa\": \"pers\",\n  \"perse\": \"pers\",\n  \"persecutore\": \"persecutor\",\n  \"persecutori\": \"persecutor\",\n  \"persecuzione\": \"persecu\",\n  \"persecuzioni\": \"persecu\",\n  \"persegue\": \"persegu\",\n  \"perseguimento\": \"persegu\",\n  \"perseguire\": \"persegu\",\n  \"perseguita\": \"persegu\",\n  \"perseguitarla\": \"perseguit\",\n  \"perseguitarlo\": \"perseguit\",\n  \"perseguitata\": \"perseguit\",\n  \"perseguitato\": \"perseguit\",\n  \"perseverante\": \"persever\",\n  \"perseveranza\": \"persever\",\n  \"perseverare\": \"persever\",\n  \"persi\": \"pers\",\n  \"persiana\": \"persian\",\n  \"persino\": \"persin\",\n  \"persister\": \"persister\",\n  \"persisteva\": \"persist\",\n  \"perso\": \"pers\",\n  \"persona\": \"person\",\n  \"personaggi\": \"personagg\",\n  \"personaggio\": \"personagg\",\n  \"personaggj\": \"personaggj\",\n  \"personal\": \"personal\",\n  \"personaldollaro\": \"personaldollar\",\n  \"personale\": \"personal\",\n  \"personalfondo\": \"personalfond\",\n  \"personali\": \"personal\",\n  \"personalità\": \"personal\",\n  \"personalmarco\": \"personalmarc\",\n  \"personalmente\": \"personal\",\n  \"persone\": \"person\",\n  \"perspicacia\": \"perspicac\",\n  \"persuade\": \"persuad\",\n  \"persuader\": \"persuader\",\n  \"persuadere\": \"persuad\",\n  \"persuaderli\": \"persuad\",\n  \"persuaderlo\": \"persuad\",\n  \"persuadersi\": \"persuad\",\n  \"persuasa\": \"persuas\",\n  \"persuase\": \"persuas\",\n  \"persuasi\": \"persuas\",\n  \"persuasion\": \"persuasion\",\n  \"persuasione\": \"persuasion\",\n  \"persuasissimo\": \"persuasissim\",\n  \"persuaso\": \"persuas\",\n  \"pertanto\": \"pertant\",\n  \"perth\": \"perth\",\n  \"perticaro\": \"perticar\",\n  \"pertiche\": \"pertic\",\n  \"pertinacia\": \"pertinac\",\n  \"pertinenza\": \"pertinent\",\n  \"pertugio\": \"pertug\",\n  \"perturbatori\": \"perturb\",\n  \"perturbazione\": \"perturb\",\n  \"perturbazioni\": \"perturb\",\n  \"perù\": \"perù\",\n  \"perugia\": \"perug\",\n  \"peruviana\": \"peruvian\",\n  \"peruviane\": \"peruvian\",\n  \"peruviani\": \"peruvian\",\n  \"peruviano\": \"peruv\",\n  \"peruzzi\": \"peruzz\",\n  \"pervade\": \"pervad\",\n  \"pervenire\": \"perven\",\n  \"pervenivano\": \"perven\",\n  \"pervenne\": \"pervenn\",\n  \"pervenuta\": \"perven\",\n  \"pervenuti\": \"perven\",\n  \"pervenuto\": \"perven\",\n  \"perversa\": \"pervers\",\n  \"perversità\": \"pervers\",\n  \"perverso\": \"pervers\",\n  \"pervertimento\": \"pervert\",\n  \"pesa\": \"pes\",\n  \"pesano\": \"pes\",\n  \"pesante\": \"pesant\",\n  \"pesanti\": \"pesant\",\n  \"pesar\": \"pes\",\n  \"pesarese\": \"pesares\",\n  \"pesaro\": \"pesar\",\n  \"pesasse\": \"pes\",\n  \"pesate\": \"pes\",\n  \"pesato\": \"pes\",\n  \"pesavan\": \"pesavan\",\n  \"pesavano\": \"pes\",\n  \"pesca\": \"pesc\",\n  \"pescar\": \"pesc\",\n  \"pescara\": \"pescar\",\n  \"pescare\": \"pesc\",\n  \"pescarenico\": \"pescaren\",\n  \"pescate\": \"pesc\",\n  \"pescato\": \"pesc\",\n  \"pescatore\": \"pescator\",\n  \"pescatori\": \"pescator\",\n  \"pescavan\": \"pescavan\",\n  \"pesce\": \"pesc\",\n  \"pesche\": \"pesc\",\n  \"pescheria\": \"pescher\",\n  \"peschi\": \"pesc\",\n  \"peschiera\": \"peschier\",\n  \"pesci\": \"pesc\",\n  \"pesciaiolo\": \"pesciaiol\",\n  \"pesciolino\": \"pesciolin\",\n  \"pesco\": \"pesc\",\n  \"pesenti\": \"pesent\",\n  \"peserà\": \"pes\",\n  \"peseta\": \"peset\",\n  \"pesetas\": \"pesetas\",\n  \"peshawar\": \"peshaw\",\n  \"pesi\": \"pes\",\n  \"peso\": \"pes\",\n  \"pesos\": \"pesos\",\n  \"pessima\": \"pessim\",\n  \"pessime\": \"pessim\",\n  \"pessimismo\": \"pessim\",\n  \"pessimo\": \"pessim\",\n  \"pessotto\": \"pessott\",\n  \"pesta\": \"pest\",\n  \"pestaggi\": \"pestagg\",\n  \"pestaggio\": \"pestagg\",\n  \"pestato\": \"pest\",\n  \"pestava\": \"pest\",\n  \"peste\": \"pest\",\n  \"pestiferi\": \"pestifer\",\n  \"pestilenti\": \"pestilent\",\n  \"pestilentia\": \"pestilent\",\n  \"pestilenza\": \"pestilent\",\n  \"pestilenze\": \"pestilent\",\n  \"pestilenziale\": \"pestilenzial\",\n  \"pestilenziali\": \"pestilenzial\",\n  \"pet\": \"pet\",\n  \"pete\": \"pet\",\n  \"petecchiale\": \"petecchial\",\n  \"peter\": \"peter\",\n  \"petito\": \"pet\",\n  \"petr\": \"petr\",\n  \"petra\": \"petr\",\n  \"petricca\": \"petricc\",\n  \"petris\": \"petris\",\n  \"petro\": \"petr\",\n  \"petrobras\": \"petrobras\",\n  \"petrolchimico\": \"petrolchim\",\n  \"petroleum\": \"petroleum\",\n  \"petrolifera\": \"petrolifer\",\n  \"petroliferi\": \"petrolifer\",\n  \"petrolifero\": \"petrolifer\",\n  \"petrolio\": \"petrol\",\n  \"petrone\": \"petron\",\n  \"pettegole\": \"pettegol\",\n  \"pettegolezzi\": \"pettegolezz\",\n  \"pettegolezzo\": \"pettegolezz\",\n  \"pettegolo\": \"pettegol\",\n  \"petti\": \"pett\",\n  \"pettinare\": \"pettin\",\n  \"pettinata\": \"pettin\",\n  \"pettine\": \"pettin\",\n  \"pettinelli\": \"pettinell\",\n  \"petto\": \"pett\",\n  \"pettoruto\": \"pettor\",\n  \"petulante\": \"petul\",\n  \"petulanti\": \"petul\",\n  \"petulanza\": \"petul\",\n  \"pezze\": \"pezz\",\n  \"pezzente\": \"pezzent\",\n  \"pezzetta\": \"pezzett\",\n  \"pezzetti\": \"pezzett\",\n  \"pezzetto\": \"pezzett\",\n  \"pezzi\": \"pezz\",\n  \"pezzo\": \"pezz\",\n  \"pezzò\": \"pezz\",\n  \"pfennig\": \"pfennig\",\n  \"pfennigs\": \"pfennigs\",\n  \"ph\": \"ph\",\n  \"pharmachem\": \"pharmachem\",\n  \"phenixfund\": \"phenixfund\",\n  \"philips\": \"philips\",\n  \"phillips\": \"phillips\",\n  \"phoenix\": \"phoenix\",\n  \"phone\": \"phon\",\n  \"phyllis\": \"phyllis\",\n  \"pi\": \"pi\",\n  \"pia\": \"pia\",\n  \"piaccia\": \"piacc\",\n  \"piacciono\": \"piacc\",\n  \"piace\": \"piac\",\n  \"piacendogli\": \"piac\",\n  \"piacentine\": \"piacentin\",\n  \"piacentini\": \"piacentin\",\n  \"piacenza\": \"piacenz\",\n  \"piacer\": \"piacer\",\n  \"piacerà\": \"piac\",\n  \"piacere\": \"piac\",\n  \"piacerebbe\": \"piac\",\n  \"piaceri\": \"piacer\",\n  \"piacesse\": \"piacess\",\n  \"piaceva\": \"piac\",\n  \"piacevan\": \"piacevan\",\n  \"piacevolezza\": \"piacevolezz\",\n  \"piacevolezze\": \"piacevolezz\",\n  \"piacevolmente\": \"piacevol\",\n  \"piaciuto\": \"piac\",\n  \"piacque\": \"piacqu\",\n  \"piaga\": \"piag\",\n  \"piaghe\": \"piag\",\n  \"pian\": \"pian\",\n  \"piane\": \"pian\",\n  \"pianelle\": \"pianell\",\n  \"pianerottolo\": \"pianerottol\",\n  \"pianeta\": \"pianet\",\n  \"pianeti\": \"pianet\",\n  \"piange\": \"piang\",\n  \"piangendo\": \"piang\",\n  \"piangente\": \"piangent\",\n  \"piangenti\": \"piangent\",\n  \"pianger\": \"pianger\",\n  \"piangere\": \"piang\",\n  \"piangerete\": \"piang\",\n  \"piangerò\": \"piang\",\n  \"piangesse\": \"piangess\",\n  \"piangeva\": \"piang\",\n  \"piangevan\": \"piangevan\",\n  \"piangiamo\": \"piang\",\n  \"piani\": \"pian\",\n  \"pianificare\": \"pianific\",\n  \"pianificazione\": \"pianif\",\n  \"pianissimo\": \"pianissim\",\n  \"piano\": \"pian\",\n  \"pianoforte\": \"pianofort\",\n  \"pianse\": \"pians\",\n  \"pianta\": \"piant\",\n  \"piantan\": \"piantan\",\n  \"piantandogli\": \"piant\",\n  \"piantandole\": \"piant\",\n  \"piantandosi\": \"piant\",\n  \"piantaron\": \"piantaron\",\n  \"piantarsi\": \"piant\",\n  \"piantate\": \"piant\",\n  \"piantato\": \"piant\",\n  \"piantatosi\": \"piantat\",\n  \"piantava\": \"piant\",\n  \"piante\": \"piant\",\n  \"pianti\": \"piant\",\n  \"pianto\": \"piant\",\n  \"piantò\": \"piant\",\n  \"pianura\": \"pianur\",\n  \"pianure\": \"pianur\",\n  \"piastrine\": \"piastrin\",\n  \"piatta\": \"piatt\",\n  \"piattaforma\": \"piattaform\",\n  \"piattaforme\": \"piattaform\",\n  \"piatti\": \"piatt\",\n  \"piatto\": \"piatt\",\n  \"piazza\": \"piazz\",\n  \"piazzale\": \"piazzal\",\n  \"piazzamento\": \"piazz\",\n  \"piazzando\": \"piazz\",\n  \"piazzata\": \"piazz\",\n  \"piazzati\": \"piazz\",\n  \"piazzato\": \"piazz\",\n  \"piazze\": \"piazz\",\n  \"piazzetta\": \"piazzett\",\n  \"piazzette\": \"piazzett\",\n  \"pic\": \"pic\",\n  \"picard\": \"picard\",\n  \"picasso\": \"picass\",\n  \"picca\": \"picc\",\n  \"piccava\": \"picc\",\n  \"picche\": \"picc\",\n  \"picchetto\": \"picchett\",\n  \"picchi\": \"picc\",\n  \"picchia\": \"picc\",\n  \"picchiando\": \"picc\",\n  \"picchiar\": \"picc\",\n  \"picchiare\": \"picc\",\n  \"picchiarono\": \"picc\",\n  \"picchiarsi\": \"picc\",\n  \"picchiate\": \"picc\",\n  \"picchiava\": \"picc\",\n  \"picchietto\": \"picchiett\",\n  \"picchio\": \"picc\",\n  \"picchiò\": \"picc\",\n  \"piccini\": \"piccin\",\n  \"piccinin\": \"piccinin\",\n  \"piccinini\": \"piccinin\",\n  \"piccino\": \"piccin\",\n  \"picco\": \"picc\",\n  \"piccol\": \"piccol\",\n  \"piccola\": \"piccol\",\n  \"piccole\": \"piccol\",\n  \"piccoli\": \"piccol\",\n  \"piccolillo\": \"piccolill\",\n  \"piccolissimo\": \"piccolissim\",\n  \"piccolo\": \"piccol\",\n  \"piceno\": \"picen\",\n  \"pick\": \"pick\",\n  \"picozzi\": \"picozz\",\n  \"pidgeon\": \"pidgeon\",\n  \"pidiessino\": \"pidiessin\",\n  \"pido\": \"pid\",\n  \"piduisti\": \"piduist\",\n  \"pie\": \"pie\",\n  \"piè\": \"piè\",\n  \"piede\": \"pied\",\n  \"piedestallo\": \"piedestall\",\n  \"piedi\": \"pied\",\n  \"piedra\": \"piedr\",\n  \"piega\": \"pieg\",\n  \"piegando\": \"pieg\",\n  \"piegare\": \"pieg\",\n  \"piegata\": \"pieg\",\n  \"piegate\": \"pieg\",\n  \"piegato\": \"pieg\",\n  \"pieghe\": \"pieg\",\n  \"piegò\": \"pieg\",\n  \"piemont\": \"piemont\",\n  \"piemonte\": \"piemont\",\n  \"piemontese\": \"piemontes\",\n  \"piemontesi\": \"piemontes\",\n  \"piena\": \"pien\",\n  \"pienamente\": \"pien\",\n  \"piene\": \"pien\",\n  \"pienezza\": \"pienezz\",\n  \"pieni\": \"pien\",\n  \"pieno\": \"pien\",\n  \"pienone\": \"pienon\",\n  \"pienotta\": \"pienott\",\n  \"pier\": \"pier\",\n  \"piera\": \"pier\",\n  \"pieralberto\": \"pieralbert\",\n  \"piercamillo\": \"piercamill\",\n  \"piercarlo\": \"pierc\",\n  \"pierferdinando\": \"pierferdin\",\n  \"pierguido\": \"pierguid\",\n  \"pierini\": \"pierin\",\n  \"pierluigi\": \"pierluig\",\n  \"piero\": \"pier\",\n  \"pierobon\": \"pierobon\",\n  \"pieroni\": \"pieron\",\n  \"pierpaolo\": \"pierpaol\",\n  \"pierre\": \"pierr\",\n  \"pietà\": \"piet\",\n  \"pietanza\": \"pietanz\",\n  \"pietanze\": \"pietanz\",\n  \"pietosa\": \"pietos\",\n  \"pietosamente\": \"pietos\",\n  \"pietose\": \"pietos\",\n  \"pietosi\": \"pietos\",\n  \"pietra\": \"pietr\",\n  \"pietrangeli\": \"pietrangel\",\n  \"pietre\": \"pietr\",\n  \"pietro\": \"pietr\",\n  \"pietroburgo\": \"pietroburg\",\n  \"pieve\": \"piev\",\n  \"pigia\": \"pig\",\n  \"pigiando\": \"pig\",\n  \"pigiare\": \"pig\",\n  \"pigiasse\": \"pig\",\n  \"pigìo\": \"pigì\",\n  \"pigionali\": \"pigional\",\n  \"piglia\": \"pigl\",\n  \"piglian\": \"piglian\",\n  \"pigliano\": \"pigl\",\n  \"pigliare\": \"pigl\",\n  \"pigliarne\": \"pigl\",\n  \"pigliate\": \"pigl\",\n  \"pigliatelo\": \"pigliatel\",\n  \"pigliava\": \"pigl\",\n  \"piglino\": \"piglin\",\n  \"piglio\": \"pigl\",\n  \"pignone\": \"pignon\",\n  \"pigri\": \"pigr\",\n  \"pigrizia\": \"pigriz\",\n  \"pil\": \"pil\",\n  \"pilastri\": \"pilastr\",\n  \"pilastro\": \"pilastr\",\n  \"pilato\": \"pil\",\n  \"pile\": \"pil\",\n  \"pillitteri\": \"pillitter\",\n  \"pillole\": \"pillol\",\n  \"piloni\": \"pilon\",\n  \"pilota\": \"pilot\",\n  \"pilotando\": \"pilot\",\n  \"pilotato\": \"pilot\",\n  \"piloti\": \"pilot\",\n  \"pin\": \"pin\",\n  \"pina\": \"pin\",\n  \"pinato\": \"pin\",\n  \"pindo\": \"pind\",\n  \"pinè\": \"pin\",\n  \"pinerolo\": \"pinerol\",\n  \"pinetagrande\": \"pinetagrand\",\n  \"pingitore\": \"pingitor\",\n  \"pininfarina\": \"pininfarin\",\n  \"pink\": \"pink\",\n  \"pinna\": \"pinn\",\n  \"pino\": \"pin\",\n  \"pinocchio\": \"pinocc\",\n  \"pinza\": \"pinz\",\n  \"pinzochere\": \"pinzoc\",\n  \"pio\": \"pio\",\n  \"piogge\": \"piogg\",\n  \"pioggia\": \"piogg\",\n  \"pioli\": \"piol\",\n  \"piombava\": \"piomb\",\n  \"piombino\": \"piombin\",\n  \"pionieri\": \"pionier\",\n  \"pionieristica\": \"pionierist\",\n  \"pioppo\": \"piopp\",\n  \"piovanelli\": \"piovanell\",\n  \"piovani\": \"piovan\",\n  \"piove\": \"piov\",\n  \"pioveva\": \"piov\",\n  \"piovigginare\": \"pioviggin\",\n  \"piovosa\": \"piovos\",\n  \"piovra\": \"piovr\",\n  \"piovute\": \"piov\",\n  \"piovutole\": \"piovutol\",\n  \"piper\": \"piper\",\n  \"pippo\": \"pipp\",\n  \"pir\": \"pir\",\n  \"pira\": \"pir\",\n  \"pirelli\": \"pirell\",\n  \"pirri\": \"pirr\",\n  \"pisa\": \"pis\",\n  \"pisano\": \"pis\",\n  \"pista\": \"pist\",\n  \"pistà\": \"pist\",\n  \"pistarino\": \"pistarin\",\n  \"piste\": \"pist\",\n  \"pistella\": \"pistell\",\n  \"pistoia\": \"pistoi\",\n  \"pistoiese\": \"pistoies\",\n  \"pistola\": \"pistol\",\n  \"pistole\": \"pistol\",\n  \"pitaffio\": \"pitaff\",\n  \"pitagora\": \"pitagor\",\n  \"pitocco\": \"pitocc\",\n  \"pittalis\": \"pittalis\",\n  \"pittore\": \"pittor\",\n  \"pittura\": \"pittur\",\n  \"piu\": \"piu\",\n  \"più\": \"più\",\n  \"piume\": \"pium\",\n  \"piuttosto\": \"piuttost\",\n  \"piùttosto\": \"piùttost\",\n  \"pivetta\": \"pivett\",\n  \"pivetti\": \"pivett\",\n  \"pizzi\": \"pizz\",\n  \"pizzicara\": \"pizzicar\",\n  \"pizzicavan\": \"pizzicavan\",\n  \"pizzico\": \"pizzic\",\n  \"pizzo\": \"pizz\",\n  \"placet\": \"placet\",\n  \"placida\": \"placid\",\n  \"placidamente\": \"placid\",\n  \"placide\": \"placid\",\n  \"placido\": \"placid\",\n  \"planisferio\": \"planisfer\",\n  \"plantarum\": \"plantarum\",\n  \"plast\": \"plast\",\n  \"plastica\": \"plastic\",\n  \"platea\": \"plate\",\n  \"plateà\": \"plate\",\n  \"platonus\": \"platonus\",\n  \"platt\": \"platt\",\n  \"plaudenti\": \"plaudent\",\n  \"plausibile\": \"plausibil\",\n  \"plauso\": \"plaus\",\n  \"play\": \"play\",\n  \"playboy\": \"playboy\",\n  \"plebe\": \"pleb\",\n  \"plebei\": \"plebe\",\n  \"plebeo\": \"plebe\",\n  \"plebiscitaria\": \"plebiscitar\",\n  \"plebiscitarie\": \"plebiscitar\",\n  \"plenaria\": \"plenar\",\n  \"plerosque\": \"plerosqu\",\n  \"pli\": \"pli\",\n  \"plico\": \"plic\",\n  \"plinio\": \"plin\",\n  \"pluksna\": \"pluksn\",\n  \"pluralismo\": \"plural\",\n  \"pluralità\": \"plural\",\n  \"pluriaggravato\": \"pluriaggrav\",\n  \"plurifondo\": \"plurifond\",\n  \"plurinquisito\": \"plurinquis\",\n  \"pm\": \"pm\",\n  \"po\": \"po\",\n  \"pò\": \"pò\",\n  \"poarte\": \"poart\",\n  \"poca\": \"poc\",\n  \"poche\": \"poch\",\n  \"pochi\": \"poch\",\n  \"pochino\": \"pochin\",\n  \"pochissime\": \"pochissim\",\n  \"pochissimi\": \"pochissim\",\n  \"pochissimo\": \"pochissim\",\n  \"poco\": \"poc\",\n  \"podere\": \"pod\",\n  \"poderetto\": \"poderett\",\n  \"poderi\": \"poder\",\n  \"poderose\": \"poder\",\n  \"poderoso\": \"poder\",\n  \"podestà\": \"podest\",\n  \"podio\": \"pod\",\n  \"podistica\": \"podist\",\n  \"poelman\": \"poelman\",\n  \"poema\": \"poem\",\n  \"poesia\": \"poes\",\n  \"poesie\": \"poes\",\n  \"poeta\": \"poet\",\n  \"poeti\": \"poet\",\n  \"poetica\": \"poetic\",\n  \"poetico\": \"poetic\",\n  \"poggetto\": \"poggett\",\n  \"poggi\": \"pogg\",\n  \"poggiano\": \"pogg\",\n  \"poggibonsi\": \"poggibons\",\n  \"poggio\": \"pogg\",\n  \"poggioli\": \"poggiol\",\n  \"poh\": \"poh\",\n  \"poi\": \"poi\",\n  \"poich\": \"poic\",\n  \"poiché\": \"poic\",\n  \"poichè\": \"poic\",\n  \"point\": \"point\",\n  \"poivre\": \"poivr\",\n  \"pol\": \"pol\",\n  \"polacche\": \"polacc\",\n  \"polacco\": \"polacc\",\n  \"polare\": \"pol\",\n  \"polarizzi\": \"polarizz\",\n  \"polemica\": \"polem\",\n  \"polemiche\": \"polem\",\n  \"polemichette\": \"polemichett\",\n  \"polemico\": \"polem\",\n  \"polemizza\": \"polemizz\",\n  \"polemizzano\": \"polemizz\",\n  \"polemizzato\": \"polemizz\",\n  \"polenta\": \"polent\",\n  \"polfer\": \"polfer\",\n  \"poli\": \"pol\",\n  \"poliambulatori\": \"poliambul\",\n  \"policano\": \"polic\",\n  \"policombustibile\": \"policombust\",\n  \"polidori\": \"polidor\",\n  \"poligrafici\": \"poligraf\",\n  \"polimeri\": \"polimer\",\n  \"polinesia\": \"polines\",\n  \"poliomelitici\": \"poliomelit\",\n  \"politano\": \"polit\",\n  \"politica\": \"polit\",\n  \"politicà\": \"politic\",\n  \"political\": \"political\",\n  \"politicamente\": \"polit\",\n  \"politiche\": \"polit\",\n  \"politici\": \"polit\",\n  \"politicì\": \"politic\",\n  \"politico\": \"polit\",\n  \"politicò\": \"politic\",\n  \"politicone\": \"politicon\",\n  \"politiconi\": \"politicon\",\n  \"politilene\": \"politilen\",\n  \"polizia\": \"poliz\",\n  \"poliziesco\": \"poliziesc\",\n  \"poliziotta\": \"poliziott\",\n  \"poliziotti\": \"poliziott\",\n  \"poliziotto\": \"poliziott\",\n  \"polizza\": \"polizz\",\n  \"polizze\": \"polizz\",\n  \"pollaio\": \"pollai\",\n  \"polli\": \"poll\",\n  \"pollice\": \"pollic\",\n  \"polmoni\": \"polmon\",\n  \"polo\": \"pol\",\n  \"polonia\": \"polon\",\n  \"polpette\": \"polpett\",\n  \"polsi\": \"pols\",\n  \"polso\": \"pols\",\n  \"poltiglia\": \"poltigl\",\n  \"poltrona\": \"poltron\",\n  \"poltrone\": \"poltron\",\n  \"poltroni\": \"poltron\",\n  \"polvere\": \"polv\",\n  \"polveri\": \"polver\",\n  \"polveriera\": \"polverier\",\n  \"polverino\": \"polverin\",\n  \"polverìo\": \"polverì\",\n  \"polverosi\": \"polver\",\n  \"polziia\": \"polzii\",\n  \"pomeridiana\": \"pomeridian\",\n  \"pomeridiano\": \"pomerid\",\n  \"pomeriggio\": \"pomerigg\",\n  \"pomo\": \"pom\",\n  \"pompa\": \"pomp\",\n  \"pompe\": \"pomp\",\n  \"pomposamente\": \"pompos\",\n  \"pomposi\": \"pompos\",\n  \"ponchio\": \"ponc\",\n  \"ponderata\": \"ponder\",\n  \"ponderato\": \"ponder\",\n  \"pone\": \"pon\",\n  \"ponevano\": \"pon\",\n  \"poniamo\": \"pon\",\n  \"ponsacco\": \"ponsacc\",\n  \"ponte\": \"pont\",\n  \"pontedera\": \"ponteder\",\n  \"pontefice\": \"pontef\",\n  \"ponti\": \"pont\",\n  \"pontida\": \"pontid\",\n  \"pontieri\": \"pontier\",\n  \"pontificali\": \"pontifical\",\n  \"pontificato\": \"pontific\",\n  \"pontile\": \"pontil\",\n  \"ponto\": \"pont\",\n  \"pontone\": \"ponton\",\n  \"ponzio\": \"ponz\",\n  \"pool\": \"pool\",\n  \"pop\": \"pop\",\n  \"popolana\": \"popolan\",\n  \"popolano\": \"popol\",\n  \"popolanò\": \"popolan\",\n  \"popolare\": \"popol\",\n  \"popolari\": \"popolar\",\n  \"popolarità\": \"popolar\",\n  \"popolato\": \"popol\",\n  \"popolazion\": \"popolazion\",\n  \"popolazione\": \"popol\",\n  \"popoli\": \"popol\",\n  \"popolo\": \"popol\",\n  \"popolò\": \"popol\",\n  \"poposta\": \"popost\",\n  \"poppa\": \"popp\",\n  \"poppard\": \"poppard\",\n  \"poppe\": \"popp\",\n  \"poppea\": \"poppe\",\n  \"populi\": \"popul\",\n  \"populismo\": \"popul\",\n  \"populista\": \"popul\",\n  \"por\": \"por\",\n  \"porcellini\": \"porcellin\",\n  \"porcheria\": \"porcher\",\n  \"porcherie\": \"porcher\",\n  \"porci\": \"porc\",\n  \"pordenone\": \"pordenon\",\n  \"pordenonesi\": \"pordenones\",\n  \"porfirio\": \"porfir\",\n  \"porge\": \"porg\",\n  \"porgevano\": \"porg\",\n  \"porla\": \"porl\",\n  \"pornografiche\": \"pornograf\",\n  \"porpora\": \"porpor\",\n  \"porporato\": \"porpor\",\n  \"porporine\": \"porporin\",\n  \"porporini\": \"porporin\",\n  \"porrà\": \"porr\",\n  \"porre\": \"porr\",\n  \"porrini\": \"porrin\",\n  \"porse\": \"pors\",\n  \"port\": \"port\",\n  \"porta\": \"port\",\n  \"portabandiera\": \"portabandier\",\n  \"portafoglio\": \"portafogl\",\n  \"portale\": \"portal\",\n  \"portamenti\": \"port\",\n  \"portamento\": \"port\",\n  \"portan\": \"portan\",\n  \"portando\": \"port\",\n  \"portandosi\": \"port\",\n  \"portandovi\": \"port\",\n  \"portano\": \"port\",\n  \"portantini\": \"portantin\",\n  \"portar\": \"port\",\n  \"portarci\": \"port\",\n  \"portare\": \"port\",\n  \"portargli\": \"port\",\n  \"portarla\": \"port\",\n  \"portarle\": \"port\",\n  \"portarli\": \"port\",\n  \"portarlo\": \"port\",\n  \"portarne\": \"port\",\n  \"portaron\": \"portaron\",\n  \"portarono\": \"port\",\n  \"portarsi\": \"port\",\n  \"portarvi\": \"port\",\n  \"portasse\": \"port\",\n  \"portassero\": \"port\",\n  \"portata\": \"port\",\n  \"portate\": \"port\",\n  \"portateglieli\": \"portategliel\",\n  \"portati\": \"port\",\n  \"portatile\": \"portatil\",\n  \"portato\": \"port\",\n  \"portator\": \"portator\",\n  \"portatore\": \"portator\",\n  \"portatori\": \"portator\",\n  \"portatovi\": \"portatov\",\n  \"portava\": \"port\",\n  \"portavan\": \"portavan\",\n  \"portavano\": \"port\",\n  \"portavce\": \"portavc\",\n  \"portavoce\": \"portavoc\",\n  \"porte\": \"port\",\n  \"portento\": \"portent\",\n  \"portentosa\": \"portent\",\n  \"porterà\": \"port\",\n  \"porteranno\": \"port\",\n  \"porterebbe\": \"port\",\n  \"porterò\": \"port\",\n  \"portfolio\": \"portfol\",\n  \"porti\": \"port\",\n  \"portiam\": \"portiam\",\n  \"portiamo\": \"port\",\n  \"portici\": \"portic\",\n  \"portico\": \"portic\",\n  \"portiera\": \"portier\",\n  \"portiere\": \"port\",\n  \"portieri\": \"portier\",\n  \"portinaio\": \"portinai\",\n  \"portino\": \"portin\",\n  \"portito\": \"port\",\n  \"porto\": \"port\",\n  \"portò\": \"port\",\n  \"portogallo\": \"portogall\",\n  \"portone\": \"porton\",\n  \"portuale\": \"portual\",\n  \"portuali\": \"portual\",\n  \"portualità\": \"portual\",\n  \"portugal\": \"portugal\",\n  \"porzione\": \"porzion\",\n  \"posa\": \"pos\",\n  \"posada\": \"posad\",\n  \"posando\": \"pos\",\n  \"posar\": \"pos\",\n  \"posarci\": \"pos\",\n  \"posare\": \"pos\",\n  \"posarlo\": \"pos\",\n  \"posarsi\": \"pos\",\n  \"posata\": \"pos\",\n  \"posate\": \"pos\",\n  \"posati\": \"pos\",\n  \"posato\": \"pos\",\n  \"posava\": \"pos\",\n  \"posavano\": \"pos\",\n  \"poscia\": \"posc\",\n  \"pose\": \"pos\",\n  \"posero\": \"poser\",\n  \"posibilità\": \"posibil\",\n  \"positiva\": \"posit\",\n  \"positivamente\": \"posit\",\n  \"positive\": \"posit\",\n  \"positivi\": \"posit\",\n  \"positivo\": \"posit\",\n  \"positura\": \"positur\",\n  \"posizini\": \"posizin\",\n  \"posizione\": \"posizion\",\n  \"posizioni\": \"posizion\",\n  \"posò\": \"pos\",\n  \"posposte\": \"pospost\",\n  \"possa\": \"poss\",\n  \"possan\": \"possan\",\n  \"possano\": \"poss\",\n  \"possedendo\": \"possed\",\n  \"possedere\": \"possed\",\n  \"possedessi\": \"possedess\",\n  \"possedeva\": \"possed\",\n  \"posseduta\": \"possed\",\n  \"possegga\": \"possegg\",\n  \"possesso\": \"possess\",\n  \"possessore\": \"possessor\",\n  \"possessori\": \"possessor\",\n  \"possiam\": \"possiam\",\n  \"possiamo\": \"poss\",\n  \"possiate\": \"poss\",\n  \"possibile\": \"possibil\",\n  \"possibili\": \"possibil\",\n  \"possibilie\": \"possibil\",\n  \"possibilisti\": \"possibil\",\n  \"possibilita\": \"possibil\",\n  \"possibilità\": \"possibil\",\n  \"possiblità\": \"possibl\",\n  \"possiede\": \"possied\",\n  \"posso\": \"poss\",\n  \"posson\": \"posson\",\n  \"possono\": \"poss\",\n  \"post\": \"post\",\n  \"posta\": \"post\",\n  \"postali\": \"postal\",\n  \"postandosi\": \"post\",\n  \"postare\": \"post\",\n  \"postarono\": \"post\",\n  \"postarsi\": \"post\",\n  \"postazione\": \"postazion\",\n  \"postazioni\": \"postazion\",\n  \"poste\": \"post\",\n  \"postelegrafonici\": \"postelegrafon\",\n  \"posteri\": \"poster\",\n  \"posteriore\": \"posterior\",\n  \"posteriori\": \"posterior\",\n  \"posterità\": \"poster\",\n  \"posti\": \"post\",\n  \"postì\": \"post\",\n  \"posticipo\": \"posticip\",\n  \"postiglione\": \"postiglion\",\n  \"posto\": \"post\",\n  \"postò\": \"post\",\n  \"potanno\": \"potann\",\n  \"potata\": \"pot\",\n  \"pote\": \"pot\",\n  \"poté\": \"pot\",\n  \"potendo\": \"pot\",\n  \"potendolo\": \"pot\",\n  \"potentati\": \"potent\",\n  \"potente\": \"potent\",\n  \"potenti\": \"potent\",\n  \"potenza\": \"potenz\",\n  \"potenze\": \"potenz\",\n  \"potenziale\": \"potenzial\",\n  \"potenziali\": \"potenzial\",\n  \"potenzialità\": \"potenzial\",\n  \"potenziamento\": \"potenz\",\n  \"potenziando\": \"potenz\",\n  \"poter\": \"poter\",\n  \"poterci\": \"pot\",\n  \"potere\": \"pot\",\n  \"potergli\": \"pot\",\n  \"poteri\": \"poter\",\n  \"poterit\": \"poterit\",\n  \"poterla\": \"pot\",\n  \"poterle\": \"pot\",\n  \"poterli\": \"pot\",\n  \"poterlo\": \"pot\",\n  \"poterne\": \"pot\",\n  \"poterono\": \"pot\",\n  \"potersene\": \"pot\",\n  \"potersi\": \"pot\",\n  \"potervi\": \"pot\",\n  \"potesse\": \"potess\",\n  \"potesser\": \"potesser\",\n  \"potessero\": \"pot\",\n  \"potessi\": \"potess\",\n  \"potessimo\": \"potessim\",\n  \"potestà\": \"potest\",\n  \"poteste\": \"potest\",\n  \"potete\": \"pot\",\n  \"poteua\": \"poteu\",\n  \"poteva\": \"pot\",\n  \"potevamo\": \"pot\",\n  \"potevan\": \"potevan\",\n  \"potevano\": \"pot\",\n  \"potevate\": \"pot\",\n  \"potevi\": \"pot\",\n  \"potevo\": \"pot\",\n  \"poti\": \"pot\",\n  \"potrà\": \"potr\",\n  \"potrai\": \"potra\",\n  \"potranno\": \"potrann\",\n  \"potrebb\": \"potrebb\",\n  \"potrebbe\": \"potrebb\",\n  \"potrebber\": \"potrebber\",\n  \"potrebbero\": \"potrebber\",\n  \"potrei\": \"potre\",\n  \"potremmo\": \"potr\",\n  \"potremo\": \"potrem\",\n  \"potreste\": \"potrest\",\n  \"potresti\": \"potrest\",\n  \"potrete\": \"potr\",\n  \"potrò\": \"potr\",\n  \"poturo\": \"potur\",\n  \"potuta\": \"pot\",\n  \"potute\": \"pot\",\n  \"potuti\": \"pot\",\n  \"potuto\": \"pot\",\n  \"poueri\": \"pouer\",\n  \"poule\": \"poul\",\n  \"pover\": \"pover\",\n  \"povera\": \"pover\",\n  \"poveraccio\": \"poveracc\",\n  \"povere\": \"pov\",\n  \"poverella\": \"poverell\",\n  \"poverelli\": \"poverell\",\n  \"poveretta\": \"poverett\",\n  \"poverette\": \"poverett\",\n  \"poveretti\": \"poverett\",\n  \"poveretto\": \"poverett\",\n  \"poveri\": \"pover\",\n  \"poverina\": \"poverin\",\n  \"poverine\": \"poverin\",\n  \"poverini\": \"poverin\",\n  \"poverino\": \"poverin\",\n  \"poverissimi\": \"poverissim\",\n  \"povero\": \"pover\",\n  \"povertà\": \"povert\",\n  \"power\": \"power\",\n  \"powergen\": \"powergen\",\n  \"pozze\": \"pozz\",\n  \"pozzi\": \"pozz\",\n  \"pozzo\": \"pozz\",\n  \"pozzobonelli\": \"pozzobonell\",\n  \"pp\": \"pp\",\n  \"ppi\": \"ppi\",\n  \"pr\": \"pr\",\n  \"praderio\": \"prader\",\n  \"praedicti\": \"praedict\",\n  \"praga\": \"prag\",\n  \"pragati\": \"prag\",\n  \"pragmatici\": \"pragmat\",\n  \"pralboino\": \"pralboin\",\n  \"prammatica\": \"prammat\",\n  \"pranab\": \"pranab\",\n  \"prandi\": \"prand\",\n  \"prandini\": \"prandin\",\n  \"pranzare\": \"pranz\",\n  \"pranzi\": \"pranz\",\n  \"pranzo\": \"pranz\",\n  \"prassede\": \"prassed\",\n  \"prassi\": \"prass\",\n  \"prati\": \"prat\",\n  \"pratica\": \"pratic\",\n  \"praticabile\": \"pratic\",\n  \"praticamente\": \"pratic\",\n  \"praticare\": \"pratic\",\n  \"praticate\": \"pratic\",\n  \"praticato\": \"pratic\",\n  \"pratiche\": \"pratic\",\n  \"pratichi\": \"pratic\",\n  \"pratico\": \"pratic\",\n  \"praticò\": \"pratic\",\n  \"prato\": \"prat\",\n  \"prava\": \"prav\",\n  \"prc\": \"prc\",\n  \"prd\": \"prd\",\n  \"pre\": \"pre\",\n  \"preamboli\": \"preambol\",\n  \"preannuncia\": \"preannunc\",\n  \"preannunciano\": \"preannunc\",\n  \"preannunciata\": \"preannunc\",\n  \"preannunciate\": \"preannunc\",\n  \"preannunciato\": \"preannunc\",\n  \"prec\": \"prec\",\n  \"precaria\": \"precar\",\n  \"precarietà\": \"precariet\",\n  \"precauzionale\": \"precauzional\",\n  \"precauzionali\": \"precauzional\",\n  \"precauzione\": \"precauzion\",\n  \"precauzioni\": \"precauzion\",\n  \"precede\": \"preced\",\n  \"precedendo\": \"preced\",\n  \"precedendolo\": \"preced\",\n  \"precedente\": \"precedent\",\n  \"precedentemente\": \"precedent\",\n  \"precedenti\": \"precedent\",\n  \"precedenza\": \"precedent\",\n  \"precedere\": \"preced\",\n  \"precedette\": \"precedett\",\n  \"precedeuto\": \"preced\",\n  \"precedeva\": \"preced\",\n  \"preceduta\": \"preced\",\n  \"precedute\": \"preced\",\n  \"preceduti\": \"preced\",\n  \"preceduto\": \"preced\",\n  \"precetti\": \"precett\",\n  \"precetto\": \"precett\",\n  \"preci\": \"prec\",\n  \"preciasto\": \"preciast\",\n  \"precipita\": \"precip\",\n  \"precipitando\": \"precipit\",\n  \"precipitare\": \"precipit\",\n  \"precipitarono\": \"precipit\",\n  \"precipitata\": \"precipit\",\n  \"precipitate\": \"precipit\",\n  \"precipitati\": \"precipit\",\n  \"precipitato\": \"precipit\",\n  \"precipitazione\": \"precipit\",\n  \"precipitazioni\": \"precipit\",\n  \"precipitò\": \"precipit\",\n  \"precipitosa\": \"precipit\",\n  \"precipitosamente\": \"precipit\",\n  \"precipitoso\": \"precipit\",\n  \"precipizi\": \"precipiz\",\n  \"precipizio\": \"precipiz\",\n  \"precisa\": \"precis\",\n  \"precisamente\": \"precis\",\n  \"precisando\": \"precis\",\n  \"precisare\": \"precis\",\n  \"precisato\": \"precis\",\n  \"precisazione\": \"precis\",\n  \"precisazioni\": \"precis\",\n  \"precise\": \"precis\",\n  \"preciserò\": \"precis\",\n  \"precisione\": \"precision\",\n  \"preciso\": \"precis\",\n  \"precistato\": \"precist\",\n  \"preclusioni\": \"preclusion\",\n  \"precocemente\": \"precoc\",\n  \"preconcette\": \"preconcett\",\n  \"preconcetti\": \"preconcett\",\n  \"precongresso\": \"precongress\",\n  \"precongressuale\": \"precongressual\",\n  \"precorrendo\": \"precorr\",\n  \"precorreva\": \"precorr\",\n  \"precorse\": \"precors\",\n  \"preda\": \"pred\",\n  \"predator\": \"predator\",\n  \"predazzo\": \"predazz\",\n  \"prede\": \"pred\",\n  \"predecessore\": \"predecessor\",\n  \"predecessori\": \"predecessor\",\n  \"predellino\": \"predellin\",\n  \"predetta\": \"predett\",\n  \"predica\": \"predic\",\n  \"predicando\": \"predic\",\n  \"predicano\": \"predic\",\n  \"predicare\": \"predic\",\n  \"predicargli\": \"predic\",\n  \"predicate\": \"predic\",\n  \"predicato\": \"predic\",\n  \"predicatore\": \"predic\",\n  \"predicatrice\": \"predic\",\n  \"predicava\": \"predic\",\n  \"prediche\": \"predic\",\n  \"predicherà\": \"predic\",\n  \"predieri\": \"predier\",\n  \"prediletta\": \"predilett\",\n  \"prediletto\": \"predilett\",\n  \"predisponendo\": \"predispon\",\n  \"predisposta\": \"predispost\",\n  \"predisposto\": \"predispost\",\n  \"predizione\": \"predizion\",\n  \"predizioni\": \"predizion\",\n  \"predominante\": \"predomin\",\n  \"predominanti\": \"predomin\",\n  \"predominare\": \"predomin\",\n  \"predominati\": \"predomin\",\n  \"predominato\": \"predomin\",\n  \"predominava\": \"predomin\",\n  \"predomini\": \"predomin\",\n  \"preelettorale\": \"preelettoral\",\n  \"preferenza\": \"preferent\",\n  \"preferenze\": \"preferent\",\n  \"preferibile\": \"prefer\",\n  \"preferisce\": \"prefer\",\n  \"preferita\": \"prefer\",\n  \"preferito\": \"prefer\",\n  \"preferiva\": \"prefer\",\n  \"prefetto\": \"prefett\",\n  \"prefetture\": \"prefettur\",\n  \"prefigge\": \"prefigg\",\n  \"prefigura\": \"prefigur\",\n  \"prefigurata\": \"prefigur\",\n  \"prefissate\": \"prefiss\",\n  \"prefisso\": \"prefiss\",\n  \"prega\": \"preg\",\n  \"pregai\": \"prega\",\n  \"pregando\": \"preg\",\n  \"pregano\": \"preg\",\n  \"pregar\": \"preg\",\n  \"pregare\": \"preg\",\n  \"pregarla\": \"preg\",\n  \"pregarlo\": \"preg\",\n  \"pregassi\": \"preg\",\n  \"pregata\": \"preg\",\n  \"pregate\": \"preg\",\n  \"pregatelo\": \"pregatel\",\n  \"pregati\": \"preg\",\n  \"pregato\": \"preg\",\n  \"pregava\": \"preg\",\n  \"pregevole\": \"pregevol\",\n  \"pregherei\": \"preg\",\n  \"pregheremo\": \"preg\",\n  \"pregherete\": \"preg\",\n  \"pregherò\": \"preg\",\n  \"preghi\": \"preg\",\n  \"preghiamo\": \"preg\",\n  \"preghiera\": \"preghier\",\n  \"preghiere\": \"preg\",\n  \"preghin\": \"preghin\",\n  \"preghino\": \"preghin\",\n  \"pregiudicare\": \"pregiudic\",\n  \"pregiudicati\": \"pregiudic\",\n  \"pregiudicato\": \"pregiudic\",\n  \"pregiudizi\": \"pregiudiz\",\n  \"pregiudiziale\": \"pregiudizial\",\n  \"pregiudiziali\": \"pregiudizial\",\n  \"pregiudizio\": \"pregiudiz\",\n  \"pregni\": \"pregn\",\n  \"prego\": \"preg\",\n  \"pregò\": \"preg\",\n  \"pregressi\": \"pregress\",\n  \"preintesa\": \"preintes\",\n  \"prelati\": \"prel\",\n  \"prelato\": \"prel\",\n  \"prelevare\": \"prelev\",\n  \"prelevarla\": \"prelev\",\n  \"prelevata\": \"prelev\",\n  \"prelevato\": \"prelev\",\n  \"prelievi\": \"prel\",\n  \"prelievo\": \"prel\",\n  \"preliminare\": \"prelimin\",\n  \"preliminari\": \"preliminar\",\n  \"preliminarmente\": \"preliminar\",\n  \"premafin\": \"premafin\",\n  \"premano\": \"prem\",\n  \"preme\": \"prem\",\n  \"premeditato\": \"premedit\",\n  \"prementi\": \"prement\",\n  \"premere\": \"prem\",\n  \"premessa\": \"premess\",\n  \"premesse\": \"premess\",\n  \"premesso\": \"premess\",\n  \"premette\": \"premett\",\n  \"premettere\": \"premett\",\n  \"premeva\": \"prem\",\n  \"premevano\": \"prem\",\n  \"premi\": \"prem\",\n  \"premia\": \"prem\",\n  \"premier\": \"premier\",\n  \"preminente\": \"preminent\",\n  \"preminenza\": \"preminent\",\n  \"premio\": \"prem\",\n  \"premon\": \"premon\",\n  \"premuda\": \"premud\",\n  \"premunire\": \"premun\",\n  \"premuniti\": \"premun\",\n  \"premura\": \"premur\",\n  \"premure\": \"premur\",\n  \"premurosa\": \"premur\",\n  \"premurosamente\": \"premur\",\n  \"premurose\": \"premur\",\n  \"premurosi\": \"premur\",\n  \"premuroso\": \"premur\",\n  \"prencipi\": \"prencip\",\n  \"prenda\": \"prend\",\n  \"prendano\": \"prend\",\n  \"prende\": \"prend\",\n  \"prendendo\": \"prend\",\n  \"prendendogli\": \"prend\",\n  \"prendendola\": \"prend\",\n  \"prendendole\": \"prend\",\n  \"prendendolo\": \"prend\",\n  \"prendendone\": \"prend\",\n  \"prendendosela\": \"prendendosel\",\n  \"prender\": \"prender\",\n  \"prenderà\": \"prend\",\n  \"prenderanno\": \"prend\",\n  \"prendere\": \"prend\",\n  \"prenderemo\": \"prend\",\n  \"prendergli\": \"prend\",\n  \"prenderla\": \"prend\",\n  \"prenderle\": \"prend\",\n  \"prenderli\": \"prend\",\n  \"prenderlo\": \"prend\",\n  \"prendermelo\": \"prend\",\n  \"prendermi\": \"prend\",\n  \"prenderne\": \"prend\",\n  \"prenderò\": \"prend\",\n  \"prendersela\": \"prendersel\",\n  \"prenderselo\": \"prendersel\",\n  \"prendersene\": \"prend\",\n  \"prendersi\": \"prend\",\n  \"prendervi\": \"prend\",\n  \"prendesse\": \"prendess\",\n  \"prendessero\": \"prend\",\n  \"prendete\": \"prend\",\n  \"prendetele\": \"prendetel\",\n  \"prendeva\": \"prend\",\n  \"prendevan\": \"prendevan\",\n  \"prendevano\": \"prend\",\n  \"prendevo\": \"prend\",\n  \"prendi\": \"prend\",\n  \"prendiamo\": \"prend\",\n  \"prendiate\": \"prend\",\n  \"prenditore\": \"prenditor\",\n  \"prendo\": \"prend\",\n  \"prendon\": \"prendon\",\n  \"prendono\": \"prend\",\n  \"prenotarsi\": \"prenot\",\n  \"prenotazione\": \"prenot\",\n  \"prenotazioni\": \"prenot\",\n  \"preoccupa\": \"preoccup\",\n  \"preoccupante\": \"preoccup\",\n  \"preoccupare\": \"preoccup\",\n  \"preoccuparsi\": \"preoccup\",\n  \"preoccupata\": \"preoccup\",\n  \"preoccupatevi\": \"preoccupat\",\n  \"preoccupati\": \"preoccup\",\n  \"preoccupatissimo\": \"preoccupatissim\",\n  \"preoccupato\": \"preoccup\",\n  \"preoccupazione\": \"preoccup\",\n  \"preoccupazionè\": \"preoccupazion\",\n  \"preoccupazioni\": \"preoccup\",\n  \"prepara\": \"prepar\",\n  \"preparando\": \"prepar\",\n  \"preparano\": \"prepar\",\n  \"preparar\": \"prepar\",\n  \"preparare\": \"prepar\",\n  \"prepararne\": \"prepar\",\n  \"prepararsi\": \"prepar\",\n  \"prepararvi\": \"prepar\",\n  \"preparasse\": \"prepar\",\n  \"preparata\": \"prepar\",\n  \"preparate\": \"prepar\",\n  \"preparati\": \"prepar\",\n  \"preparativi\": \"prepar\",\n  \"preparato\": \"prepar\",\n  \"preparatorie\": \"preparator\",\n  \"preparazione\": \"prepar\",\n  \"prepensinamenti\": \"prepensin\",\n  \"prepensionamenti\": \"prepension\",\n  \"prepensionamento\": \"prepension\",\n  \"preposte\": \"prepost\",\n  \"prepotente\": \"prepotent\",\n  \"prepotenti\": \"prepotent\",\n  \"prepotenza\": \"prepotent\",\n  \"prepotenze\": \"prepotent\",\n  \"prerogativa\": \"prerog\",\n  \"presa\": \"pres\",\n  \"presagire\": \"presag\",\n  \"prescelta\": \"prescelt\",\n  \"prescelto\": \"prescelt\",\n  \"prescinde\": \"prescind\",\n  \"prescindendo\": \"prescind\",\n  \"prescindere\": \"prescind\",\n  \"prescrisse\": \"prescriss\",\n  \"prescritta\": \"prescritt\",\n  \"prescritte\": \"prescritt\",\n  \"prescritti\": \"prescritt\",\n  \"prescritto\": \"prescritt\",\n  \"prescrive\": \"prescriv\",\n  \"prescriver\": \"prescriver\",\n  \"prescriverò\": \"prescriv\",\n  \"prescriveva\": \"prescriv\",\n  \"prescrivono\": \"prescriv\",\n  \"prescrizione\": \"prescrizion\",\n  \"prescrizioni\": \"prescrizion\",\n  \"prese\": \"pres\",\n  \"presenta\": \"present\",\n  \"presentando\": \"present\",\n  \"presentandosegli\": \"presentandosegl\",\n  \"presentandosi\": \"present\",\n  \"presentano\": \"present\",\n  \"presentar\": \"present\",\n  \"presentarci\": \"present\",\n  \"presentare\": \"present\",\n  \"presentarla\": \"present\",\n  \"presentarlo\": \"present\",\n  \"presentaron\": \"presentaron\",\n  \"presentarsi\": \"present\",\n  \"presentasse\": \"present\",\n  \"presentassero\": \"present\",\n  \"presentassi\": \"present\",\n  \"presentata\": \"present\",\n  \"presentate\": \"present\",\n  \"presentati\": \"present\",\n  \"presentatigli\": \"presentatigl\",\n  \"presentato\": \"present\",\n  \"presentatore\": \"present\",\n  \"presentatori\": \"present\",\n  \"presentatrice\": \"present\",\n  \"presentava\": \"present\",\n  \"presentavano\": \"present\",\n  \"presentazione\": \"present\",\n  \"presente\": \"present\",\n  \"presenterà\": \"present\",\n  \"presenteranno\": \"present\",\n  \"presenteremo\": \"present\",\n  \"presentes\": \"presentes\",\n  \"presenti\": \"present\",\n  \"presentiamo\": \"present\",\n  \"presentimenti\": \"present\",\n  \"presentimento\": \"present\",\n  \"presentino\": \"presentin\",\n  \"presentire\": \"present\",\n  \"presentò\": \"present\",\n  \"presentuoso\": \"presentu\",\n  \"presenza\": \"presenz\",\n  \"presenze\": \"presenz\",\n  \"preser\": \"preser\",\n  \"presero\": \"preser\",\n  \"preservar\": \"preserv\",\n  \"preservata\": \"preserv\",\n  \"preservato\": \"preserv\",\n  \"preservava\": \"preserv\",\n  \"preservi\": \"pres\",\n  \"presi\": \"pres\",\n  \"preside\": \"presid\",\n  \"presidente\": \"president\",\n  \"presidenti\": \"president\",\n  \"presidenza\": \"president\",\n  \"presidenziale\": \"presidenzial\",\n  \"presidenziali\": \"presidenzial\",\n  \"presidetne\": \"presidetn\",\n  \"presidi\": \"presid\",\n  \"presiedono\": \"presied\",\n  \"presieduta\": \"presied\",\n  \"presieduto\": \"presied\",\n  \"preso\": \"pres\",\n  \"presolo\": \"presol\",\n  \"presontuosa\": \"presontu\",\n  \"press\": \"press\",\n  \"pressante\": \"pressant\",\n  \"pressanti\": \"pressant\",\n  \"pressappochismo\": \"pressappoc\",\n  \"pressava\": \"press\",\n  \"pressi\": \"press\",\n  \"pressing\": \"pressing\",\n  \"pressione\": \"pression\",\n  \"pressioni\": \"pression\",\n  \"presso\": \"press\",\n  \"pressocchè\": \"pressocc\",\n  \"prestando\": \"prest\",\n  \"prestano\": \"prest\",\n  \"prestar\": \"prest\",\n  \"prestare\": \"prest\",\n  \"prestargli\": \"prest\",\n  \"prestasse\": \"prest\",\n  \"prestata\": \"prest\",\n  \"prestati\": \"prest\",\n  \"prestato\": \"prest\",\n  \"prestava\": \"prest\",\n  \"prestavano\": \"prest\",\n  \"prestazione\": \"prestazion\",\n  \"prestazioni\": \"prestazion\",\n  \"prestesto\": \"prestest\",\n  \"prestigio\": \"prestig\",\n  \"prestigioso\": \"prestig\",\n  \"prestin\": \"prestin\",\n  \"prestissimo\": \"prestissim\",\n  \"prestiti\": \"prest\",\n  \"prestito\": \"prest\",\n  \"presto\": \"prest\",\n  \"preston\": \"preston\",\n  \"presumere\": \"presum\",\n  \"presumibilmente\": \"presumibil\",\n  \"presumono\": \"presum\",\n  \"presunta\": \"presunt\",\n  \"presunte\": \"presunt\",\n  \"presunti\": \"presunt\",\n  \"presunto\": \"presunt\",\n  \"presunzione\": \"presunzion\",\n  \"presupposti\": \"presuppost\",\n  \"presupposto\": \"presuppost\",\n  \"presutti\": \"presutt\",\n  \"prete\": \"pret\",\n  \"pretende\": \"pret\",\n  \"pretender\": \"pretender\",\n  \"pretendere\": \"pretend\",\n  \"pretendesse\": \"pretendess\",\n  \"pretendete\": \"pretend\",\n  \"pretendeva\": \"pretend\",\n  \"pretendevano\": \"pretend\",\n  \"pretendi\": \"pret\",\n  \"pretendiam\": \"pretendiam\",\n  \"pretendiamo\": \"pretend\",\n  \"pretendo\": \"pret\",\n  \"pretendono\": \"pretend\",\n  \"pretensione\": \"pretension\",\n  \"pretensioni\": \"pretension\",\n  \"pretesa\": \"pretes\",\n  \"preteso\": \"pretes\",\n  \"pretesti\": \"pretest\",\n  \"pretesto\": \"pretest\",\n  \"preti\": \"pret\",\n  \"pretore\": \"pretor\",\n  \"pretoria\": \"pretor\",\n  \"pretoriana\": \"pretorian\",\n  \"pretta\": \"prett\",\n  \"pretto\": \"prett\",\n  \"preussenelektra\": \"preussenelektr\",\n  \"prevalente\": \"prevalent\",\n  \"prevalentemente\": \"prevalent\",\n  \"prevalenti\": \"prevalent\",\n  \"prevalenza\": \"prevalent\",\n  \"prevalere\": \"preval\",\n  \"prevaleva\": \"preval\",\n  \"prevalga\": \"prevalg\",\n  \"prevalgono\": \"prevalg\",\n  \"prevalsa\": \"prevals\",\n  \"prevalse\": \"prevals\",\n  \"prevalso\": \"prevals\",\n  \"prevaricante\": \"prevaric\",\n  \"prevaricazione\": \"prevar\",\n  \"preveda\": \"preved\",\n  \"prevede\": \"preved\",\n  \"preveder\": \"preveder\",\n  \"prevederà\": \"preved\",\n  \"prevedere\": \"preved\",\n  \"prevederebbe\": \"preved\",\n  \"prevedeva\": \"preved\",\n  \"prevedevano\": \"preved\",\n  \"prevediamo\": \"preved\",\n  \"prevedibile\": \"preved\",\n  \"prevedibili\": \"preved\",\n  \"prevedo\": \"preved\",\n  \"prevedono\": \"preved\",\n  \"prevenir\": \"preven\",\n  \"prevenire\": \"preven\",\n  \"prevenirle\": \"preven\",\n  \"prevenne\": \"prevenn\",\n  \"preventiva\": \"prevent\",\n  \"preventivo\": \"prevent\",\n  \"prevenuto\": \"preven\",\n  \"prevenzione\": \"prevenzion\",\n  \"previdente\": \"prevident\",\n  \"previdenza\": \"prevident\",\n  \"previdenzà\": \"previdenz\",\n  \"previdenze\": \"prevident\",\n  \"previdenziale\": \"previdenzial\",\n  \"previdenziali\": \"previdenzial\",\n  \"previsione\": \"prevision\",\n  \"previsioni\": \"prevision\",\n  \"prevista\": \"previst\",\n  \"previste\": \"previst\",\n  \"previsti\": \"previst\",\n  \"previsto\": \"previst\",\n  \"previti\": \"prev\",\n  \"prevot\": \"prevot\",\n  \"preziosa\": \"prezios\",\n  \"preziose\": \"prezios\",\n  \"preziosi\": \"prezios\",\n  \"preziosissimi\": \"preziosissim\",\n  \"prezioso\": \"prezios\",\n  \"prezzi\": \"prezz\",\n  \"prezzo\": \"prezz\",\n  \"pri\": \"pri\",\n  \"prigione\": \"prigion\",\n  \"prigioni\": \"prigion\",\n  \"prigionia\": \"prigion\",\n  \"prigioniera\": \"prigionier\",\n  \"prigioniere\": \"prigion\",\n  \"prigionieri\": \"prigionier\",\n  \"prigioniero\": \"prigionier\",\n  \"prim\": \"prim\",\n  \"prima\": \"prim\",\n  \"primaluna\": \"primalun\",\n  \"primari\": \"primar\",\n  \"primaria\": \"primar\",\n  \"primarie\": \"primar\",\n  \"primario\": \"primar\",\n  \"primary\": \"primary\",\n  \"primati\": \"prim\",\n  \"primaticce\": \"primaticc\",\n  \"primatista\": \"primat\",\n  \"primato\": \"prim\",\n  \"primavera\": \"primaver\",\n  \"primaverile\": \"primaveril\",\n  \"prime\": \"prim\",\n  \"primebond\": \"primebond\",\n  \"primecapital\": \"primecapital\",\n  \"primecash\": \"primecash\",\n  \"primeclub\": \"primeclub\",\n  \"primeggiare\": \"primegg\",\n  \"primerend\": \"primerend\",\n  \"primi\": \"prim\",\n  \"primissimi\": \"primissim\",\n  \"primitiva\": \"primit\",\n  \"primitivi\": \"primit\",\n  \"primo\": \"prim\",\n  \"primogenito\": \"primogen\",\n  \"primordine\": \"primordin\",\n  \"prina\": \"prin\",\n  \"principale\": \"principal\",\n  \"principali\": \"principal\",\n  \"principalissimo\": \"principalissim\",\n  \"principalmente\": \"principal\",\n  \"principato\": \"princip\",\n  \"principe\": \"princip\",\n  \"principessa\": \"principess\",\n  \"principi\": \"princip\",\n  \"princìpi\": \"princìp\",\n  \"principia\": \"princip\",\n  \"principiamo\": \"princip\",\n  \"principian\": \"principian\",\n  \"principiano\": \"princip\",\n  \"principiare\": \"princip\",\n  \"principiarono\": \"princip\",\n  \"principiata\": \"princip\",\n  \"principiato\": \"princip\",\n  \"principiava\": \"princip\",\n  \"principiavano\": \"princip\",\n  \"principiis\": \"principiis\",\n  \"principino\": \"principin\",\n  \"principio\": \"princip\",\n  \"principiò\": \"princip\",\n  \"principo\": \"princip\",\n  \"prioncipali\": \"prioncipal\",\n  \"prioprio\": \"priopr\",\n  \"priorache\": \"priorac\",\n  \"priori\": \"prior\",\n  \"priorità\": \"priorit\",\n  \"prioritariamente\": \"prioritar\",\n  \"prioritario\": \"prioritar\",\n  \"priv\": \"priv\",\n  \"priva\": \"priv\",\n  \"privacy\": \"privacy\",\n  \"privalova\": \"privalov\",\n  \"privare\": \"priv\",\n  \"privarlo\": \"priv\",\n  \"privarsene\": \"priv\",\n  \"privata\": \"priv\",\n  \"private\": \"priv\",\n  \"privati\": \"priv\",\n  \"privatisticò\": \"privatistic\",\n  \"privatizzare\": \"privatizz\",\n  \"privatizzata\": \"privatizz\",\n  \"privatizzato\": \"privatizz\",\n  \"privatizzaz\": \"privatizzaz\",\n  \"privatizzazione\": \"privatizz\",\n  \"privatizzazioni\": \"privatizz\",\n  \"privato\": \"priv\",\n  \"privazione\": \"privazion\",\n  \"privazioni\": \"privazion\",\n  \"privi\": \"priv\",\n  \"privilegi\": \"privileg\",\n  \"privilegia\": \"privileg\",\n  \"privilegiare\": \"privileg\",\n  \"privilegiata\": \"privileg\",\n  \"privilegiati\": \"privileg\",\n  \"privilegiato\": \"privileg\",\n  \"privilegio\": \"privileg\",\n  \"privo\": \"priv\",\n  \"pro\": \"pro\",\n  \"probabile\": \"probabil\",\n  \"probabili\": \"probabil\",\n  \"probabilità\": \"probabil\",\n  \"probabilmente\": \"probabil\",\n  \"probema\": \"probem\",\n  \"problema\": \"problem\",\n  \"problematica\": \"problemat\",\n  \"problemi\": \"problem\",\n  \"procacciar\": \"procacc\",\n  \"procacciargli\": \"procacc\",\n  \"procacciarsi\": \"procacc\",\n  \"proceda\": \"proced\",\n  \"proceddure\": \"proceddur\",\n  \"procede\": \"proced\",\n  \"procedendo\": \"proced\",\n  \"procederà\": \"proced\",\n  \"procedere\": \"proced\",\n  \"procediemnto\": \"procediemnt\",\n  \"procedimenti\": \"proced\",\n  \"procedimento\": \"proced\",\n  \"procedono\": \"proced\",\n  \"procedura\": \"procedur\",\n  \"procedurale\": \"procedural\",\n  \"procedure\": \"procedur\",\n  \"proceduta\": \"proced\",\n  \"proceduto\": \"proced\",\n  \"procellosa\": \"procell\",\n  \"procelloso\": \"procell\",\n  \"processando\": \"process\",\n  \"processate\": \"process\",\n  \"processati\": \"process\",\n  \"processato\": \"process\",\n  \"processi\": \"process\",\n  \"processione\": \"procession\",\n  \"processioni\": \"procession\",\n  \"processo\": \"process\",\n  \"processuale\": \"processual\",\n  \"processuali\": \"processual\",\n  \"procinto\": \"procint\",\n  \"proclamata\": \"proclam\",\n  \"proclamati\": \"proclam\",\n  \"proclamato\": \"proclam\",\n  \"procrazione\": \"procrazion\",\n  \"procrear\": \"procr\",\n  \"procura\": \"procur\",\n  \"procurando\": \"procur\",\n  \"procurar\": \"procur\",\n  \"procurare\": \"procur\",\n  \"procurarsi\": \"procur\",\n  \"procurarti\": \"procur\",\n  \"procuraste\": \"procurast\",\n  \"procurato\": \"procur\",\n  \"procuratore\": \"procur\",\n  \"procurava\": \"procur\",\n  \"procuravano\": \"procur\",\n  \"procure\": \"procur\",\n  \"procurerò\": \"procur\",\n  \"procurò\": \"procur\",\n  \"prod\": \"prod\",\n  \"proda\": \"prod\",\n  \"prode\": \"prod\",\n  \"prodezza\": \"prodezz\",\n  \"prodezze\": \"prodezz\",\n  \"prodi\": \"prod\",\n  \"prodì\": \"prod\",\n  \"prodigalità\": \"prodigal\",\n  \"prodigate\": \"prodig\",\n  \"prodige\": \"prodig\",\n  \"prodigi\": \"prodig\",\n  \"prodigio\": \"prodig\",\n  \"prodigioso\": \"prodig\",\n  \"prodigo\": \"prodig\",\n  \"proditorio\": \"proditor\",\n  \"prodotta\": \"prodott\",\n  \"prodotti\": \"prodott\",\n  \"prodotto\": \"prodott\",\n  \"produce\": \"produc\",\n  \"producendo\": \"produc\",\n  \"produceva\": \"produc\",\n  \"producevan\": \"producevan\",\n  \"producevano\": \"produc\",\n  \"producono\": \"produc\",\n  \"produr\": \"produr\",\n  \"produrla\": \"produrl\",\n  \"produrrà\": \"produrr\",\n  \"produrre\": \"produrr\",\n  \"produrrebbe\": \"produrrebb\",\n  \"produsse\": \"produss\",\n  \"produssero\": \"produsser\",\n  \"produttiva\": \"produtt\",\n  \"produttive\": \"produtt\",\n  \"produttivi\": \"produtt\",\n  \"produttività\": \"produtt\",\n  \"produttivo\": \"produtt\",\n  \"produttore\": \"produttor\",\n  \"produttori\": \"produttor\",\n  \"produttrice\": \"produttr\",\n  \"produttrici\": \"produttr\",\n  \"produzione\": \"produzion\",\n  \"produzioni\": \"produzion\",\n  \"produziuone\": \"produziuon\",\n  \"proemio\": \"proem\",\n  \"prof\": \"prof\",\n  \"profana\": \"profan\",\n  \"profane\": \"profan\",\n  \"profano\": \"prof\",\n  \"proferendo\": \"profer\",\n  \"proferì\": \"profer\",\n  \"proferir\": \"profer\",\n  \"proferire\": \"profer\",\n  \"proferirle\": \"profer\",\n  \"proferisco\": \"profer\",\n  \"proferisse\": \"proferiss\",\n  \"proferita\": \"profer\",\n  \"proferite\": \"profer\",\n  \"proferito\": \"profer\",\n  \"proferiva\": \"profer\",\n  \"professato\": \"profess\",\n  \"professi\": \"profess\",\n  \"professionale\": \"professional\",\n  \"professionali\": \"professional\",\n  \"professionalità\": \"professional\",\n  \"professione\": \"profession\",\n  \"professioni\": \"profession\",\n  \"professionismo\": \"profession\",\n  \"professionista\": \"profession\",\n  \"professionisti\": \"profession\",\n  \"professionistico\": \"professionist\",\n  \"professo\": \"profess\",\n  \"professor\": \"professor\",\n  \"professore\": \"professor\",\n  \"professoressa\": \"professoress\",\n  \"professori\": \"professor\",\n  \"professorì\": \"professor\",\n  \"profeta\": \"profet\",\n  \"profeticà\": \"profetic\",\n  \"profezia\": \"profez\",\n  \"profezie\": \"profez\",\n  \"proficuo\": \"proficu\",\n  \"profili\": \"profil\",\n  \"profilo\": \"profil\",\n  \"profit\": \"profit\",\n  \"profittarne\": \"profitt\",\n  \"profittevole\": \"profittevol\",\n  \"profitti\": \"profitt\",\n  \"profitto\": \"profitt\",\n  \"profittò\": \"profitt\",\n  \"profonda\": \"profond\",\n  \"profondamente\": \"profond\",\n  \"profonde\": \"profond\",\n  \"profondere\": \"profond\",\n  \"profondi\": \"profond\",\n  \"profondità\": \"profond\",\n  \"profondo\": \"profond\",\n  \"profughi\": \"profug\",\n  \"profumati\": \"profum\",\n  \"profumi\": \"profum\",\n  \"profumo\": \"profum\",\n  \"profundis\": \"profundis\",\n  \"profuno\": \"profun\",\n  \"profuso\": \"profus\",\n  \"progessiste\": \"progess\",\n  \"progettazione\": \"progett\",\n  \"progetti\": \"progett\",\n  \"progetto\": \"progett\",\n  \"prognosi\": \"prognos\",\n  \"programma\": \"programm\",\n  \"programmatica\": \"programmat\",\n  \"programmatiche\": \"programmat\",\n  \"programmatici\": \"programmat\",\n  \"programmatico\": \"programmat\",\n  \"programmato\": \"programm\",\n  \"programmazione\": \"programm\",\n  \"programmi\": \"programm\",\n  \"progressi\": \"progress\",\n  \"progressione\": \"progression\",\n  \"progressismo\": \"progress\",\n  \"progressista\": \"progress\",\n  \"progressiste\": \"progress\",\n  \"progressisti\": \"progress\",\n  \"progressita\": \"progress\",\n  \"progressiva\": \"progress\",\n  \"progressivamente\": \"progress\",\n  \"progressivamenti\": \"progressiv\",\n  \"progressivo\": \"progress\",\n  \"progresso\": \"progress\",\n  \"proibì\": \"proib\",\n  \"proibire\": \"proib\",\n  \"proibirvelo\": \"proib\",\n  \"proibisca\": \"proib\",\n  \"proibisse\": \"proibiss\",\n  \"proibite\": \"proib\",\n  \"proibito\": \"proib\",\n  \"proibiva\": \"proib\",\n  \"proiettare\": \"proiett\",\n  \"proietti\": \"proiett\",\n  \"proiettile\": \"proiettil\",\n  \"proiettili\": \"proiettil\",\n  \"proiezione\": \"proiezion\",\n  \"project\": \"project\",\n  \"prole\": \"prol\",\n  \"prolisse\": \"proliss\",\n  \"prolissità\": \"proliss\",\n  \"prolungamento\": \"prolung\",\n  \"prolungano\": \"prolung\",\n  \"prolungar\": \"prolung\",\n  \"prolungare\": \"prolung\",\n  \"prolungata\": \"prolung\",\n  \"prolungate\": \"prolung\",\n  \"prolungato\": \"prolung\",\n  \"prolungò\": \"prolung\",\n  \"promessa\": \"promess\",\n  \"promessà\": \"promess\",\n  \"promesse\": \"promess\",\n  \"promessi\": \"promess\",\n  \"promesso\": \"promess\",\n  \"promette\": \"promett\",\n  \"promettendo\": \"promett\",\n  \"promettendogli\": \"promett\",\n  \"promettendosi\": \"promett\",\n  \"prometter\": \"prometter\",\n  \"promettere\": \"promett\",\n  \"promettergli\": \"promett\",\n  \"prometterlo\": \"promett\",\n  \"promettermi\": \"promett\",\n  \"promettersi\": \"promett\",\n  \"promettete\": \"promett\",\n  \"promettetele\": \"promettetel\",\n  \"promettetemi\": \"promettetem\",\n  \"prometteva\": \"promett\",\n  \"prometti\": \"promett\",\n  \"prometto\": \"promett\",\n  \"promettono\": \"promett\",\n  \"promiscua\": \"promiscu\",\n  \"promise\": \"promis\",\n  \"promontorio\": \"promontor\",\n  \"promossa\": \"promoss\",\n  \"promosso\": \"promoss\",\n  \"promotor\": \"promotor\",\n  \"promotore\": \"promotor\",\n  \"promotori\": \"promotor\",\n  \"promotrice\": \"promotr\",\n  \"promovere\": \"promov\",\n  \"promovono\": \"promov\",\n  \"promozionali\": \"promozional\",\n  \"promozione\": \"promozion\",\n  \"promuove\": \"promuov\",\n  \"promuovere\": \"promuov\",\n  \"pronosticargliele\": \"pronostic\",\n  \"pronosticata\": \"pronostic\",\n  \"pronosticava\": \"pronostic\",\n  \"pronostici\": \"pronost\",\n  \"pronosticò\": \"pronostic\",\n  \"pronta\": \"pront\",\n  \"prontamente\": \"pront\",\n  \"pronte\": \"pront\",\n  \"prontezza\": \"prontezz\",\n  \"pronti\": \"pront\",\n  \"pronto\": \"pront\",\n  \"pronuncerà\": \"pronunc\",\n  \"pronuncia\": \"pronunc\",\n  \"pronunciamento\": \"pronunc\",\n  \"pronunciare\": \"pronunc\",\n  \"pronunciarsi\": \"pronunc\",\n  \"pronunciata\": \"pronunc\",\n  \"pronunciate\": \"pronunc\",\n  \"pronunciato\": \"pronunc\",\n  \"pronunzia\": \"pronunz\",\n  \"pronunziano\": \"pronunz\",\n  \"pronunziare\": \"pronunz\",\n  \"pronunziarle\": \"pronunz\",\n  \"pronunziato\": \"pronunz\",\n  \"pronunzio\": \"pronunz\",\n  \"pronunziò\": \"pronunz\",\n  \"propaga\": \"propag\",\n  \"propagamento\": \"propag\",\n  \"propaganda\": \"propagand\",\n  \"propagare\": \"propag\",\n  \"propagarla\": \"propag\",\n  \"propagarsi\": \"propag\",\n  \"propagasse\": \"propag\",\n  \"propagata\": \"propag\",\n  \"propagazione\": \"propag\",\n  \"propaghino\": \"propaghin\",\n  \"propalate\": \"propal\",\n  \"propende\": \"prop\",\n  \"propensi\": \"propens\",\n  \"propensione\": \"propension\",\n  \"propini\": \"propin\",\n  \"propio\": \"prop\",\n  \"propizio\": \"propiz\",\n  \"propone\": \"propon\",\n  \"proponendo\": \"propon\",\n  \"proponendosi\": \"propon\",\n  \"proponenti\": \"proponent\",\n  \"proponeva\": \"propon\",\n  \"proponevano\": \"propon\",\n  \"proponga\": \"propong\",\n  \"propongo\": \"propong\",\n  \"propongono\": \"propong\",\n  \"proponiam\": \"proponiam\",\n  \"proponiamo\": \"propon\",\n  \"proponimenti\": \"propon\",\n  \"proponimento\": \"propon\",\n  \"propor\": \"propor\",\n  \"proporgli\": \"proporgl\",\n  \"proporle\": \"proporl\",\n  \"proporli\": \"proporl\",\n  \"proporrà\": \"proporr\",\n  \"proporre\": \"proporr\",\n  \"proporsi\": \"propors\",\n  \"proporzion\": \"proporzion\",\n  \"proporzionale\": \"proporzional\",\n  \"proporzionali\": \"proporzional\",\n  \"proporzionalmente\": \"proporzional\",\n  \"proporzionare\": \"proporzion\",\n  \"proporzionata\": \"proporzion\",\n  \"proporzionati\": \"proporzion\",\n  \"proporzionato\": \"proporzion\",\n  \"proporzione\": \"proporzion\",\n  \"proporzioni\": \"proporzion\",\n  \"propose\": \"propos\",\n  \"proposero\": \"proposer\",\n  \"proposito\": \"propos\",\n  \"proposizione\": \"proposizion\",\n  \"proposizioni\": \"proposizion\",\n  \"proposta\": \"propost\",\n  \"proposte\": \"propost\",\n  \"proposti\": \"propost\",\n  \"proposto\": \"propost\",\n  \"propp\": \"propp\",\n  \"propri\": \"propr\",\n  \"propria\": \"propr\",\n  \"propriamente\": \"propr\",\n  \"proprie\": \"propr\",\n  \"proprieta\": \"propriet\",\n  \"proprietà\": \"propriet\",\n  \"proprietàdelle\": \"proprietàdell\",\n  \"proprietari\": \"proprietar\",\n  \"proprietarie\": \"proprietar\",\n  \"proprietario\": \"proprietar\",\n  \"proprio\": \"propr\",\n  \"proprosito\": \"propros\",\n  \"propugna\": \"propugn\",\n  \"propugnano\": \"propugn\",\n  \"prora\": \"pror\",\n  \"prorietà\": \"proriet\",\n  \"proroga\": \"prorog\",\n  \"prorogata\": \"prorog\",\n  \"prorogato\": \"prorog\",\n  \"prorompeva\": \"proromp\",\n  \"prorpio\": \"prorp\",\n  \"proruppe\": \"prorupp\",\n  \"proruppero\": \"prorupper\",\n  \"prosa\": \"pros\",\n  \"prosapia\": \"prosap\",\n  \"proscenio\": \"proscen\",\n  \"prosecuzione\": \"prosecu\",\n  \"prosegue\": \"prosegu\",\n  \"proseguendo\": \"prosegu\",\n  \"proseguì\": \"prosegu\",\n  \"proseguirà\": \"prosegu\",\n  \"proseguiranno\": \"prosegu\",\n  \"proseguire\": \"prosegu\",\n  \"proseguita\": \"prosegu\",\n  \"proseguite\": \"prosegu\",\n  \"proseguiti\": \"prosegu\",\n  \"proseguito\": \"prosegu\",\n  \"proseguiva\": \"prosegu\",\n  \"proseguono\": \"prosegu\",\n  \"prosopopea\": \"prosopope\",\n  \"prosperità\": \"prosper\",\n  \"prospero\": \"prosper\",\n  \"prosperosi\": \"prosper\",\n  \"prosperoso\": \"prosper\",\n  \"prospetta\": \"prospett\",\n  \"prospettata\": \"prospett\",\n  \"prospettati\": \"prospett\",\n  \"prospettato\": \"prospett\",\n  \"prospettava\": \"prospett\",\n  \"prospetti\": \"prospett\",\n  \"prospettiva\": \"prospett\",\n  \"prospettive\": \"prospett\",\n  \"prospetto\": \"prospett\",\n  \"prossima\": \"prossim\",\n  \"prossimamente\": \"prossim\",\n  \"prossime\": \"prossim\",\n  \"prossimi\": \"prossim\",\n  \"prossimo\": \"prossim\",\n  \"prostituta\": \"prostit\",\n  \"protagonista\": \"protagon\",\n  \"protagonisti\": \"protagon\",\n  \"protegge\": \"protegg\",\n  \"proteggendosi\": \"protegg\",\n  \"proteggerci\": \"protegg\",\n  \"proteggere\": \"protegg\",\n  \"proteggerla\": \"protegg\",\n  \"proteggerlo\": \"protegg\",\n  \"proteggeva\": \"protegg\",\n  \"proteggo\": \"protegg\",\n  \"proteo\": \"prote\",\n  \"protesa\": \"protes\",\n  \"protesta\": \"protest\",\n  \"protestandogli\": \"protest\",\n  \"protestante\": \"protest\",\n  \"protestantè\": \"protestant\",\n  \"protestanti\": \"protest\",\n  \"protestare\": \"protest\",\n  \"protestato\": \"protest\",\n  \"protestava\": \"protest\",\n  \"protestavano\": \"protest\",\n  \"proteste\": \"protest\",\n  \"protetta\": \"protett\",\n  \"protetti\": \"protett\",\n  \"protettor\": \"protettor\",\n  \"protettore\": \"protettor\",\n  \"protettrice\": \"protettr\",\n  \"protezione\": \"protezion\",\n  \"protezioni\": \"protezion\",\n  \"protocollari\": \"protocollar\",\n  \"protocollo\": \"protocoll\",\n  \"protofisico\": \"protofis\",\n  \"protrae\": \"protra\",\n  \"protrarrà\": \"protrarr\",\n  \"protrarsi\": \"protr\",\n  \"protti\": \"prott\",\n  \"protuberanza\": \"protuber\",\n  \"proueeré\": \"proueer\",\n  \"prouisione\": \"prouision\",\n  \"prova\": \"prov\",\n  \"provando\": \"prov\",\n  \"provano\": \"prov\",\n  \"provar\": \"prov\",\n  \"provarci\": \"prov\",\n  \"provare\": \"prov\",\n  \"provarla\": \"prov\",\n  \"provarne\": \"prov\",\n  \"provarsi\": \"prov\",\n  \"provasse\": \"prov\",\n  \"provata\": \"prov\",\n  \"provate\": \"prov\",\n  \"provati\": \"prov\",\n  \"provato\": \"prov\",\n  \"provava\": \"prov\",\n  \"provavano\": \"prov\",\n  \"prove\": \"prov\",\n  \"provence\": \"provenc\",\n  \"provengono\": \"proveng\",\n  \"proveniente\": \"provenient\",\n  \"provenienti\": \"provenient\",\n  \"provenienza\": \"provenient\",\n  \"provenienze\": \"provenient\",\n  \"provera\": \"prover\",\n  \"proverà\": \"prov\",\n  \"proverai\": \"prov\",\n  \"proverbi\": \"proverb\",\n  \"proverbio\": \"proverb\",\n  \"proveremo\": \"prov\",\n  \"proverete\": \"prov\",\n  \"provetto\": \"provett\",\n  \"providence\": \"providenc\",\n  \"providencia\": \"providenc\",\n  \"province\": \"provinc\",\n  \"provincia\": \"provinc\",\n  \"provinciale\": \"provincial\",\n  \"provinciali\": \"provincial\",\n  \"provincie\": \"provinc\",\n  \"provo\": \"prov\",\n  \"provò\": \"prov\",\n  \"provocando\": \"provoc\",\n  \"provocano\": \"provoc\",\n  \"provocare\": \"provoc\",\n  \"provocarli\": \"provoc\",\n  \"provocarlo\": \"provoc\",\n  \"provocata\": \"provoc\",\n  \"provocativo\": \"provoc\",\n  \"provocato\": \"provoc\",\n  \"provocatori\": \"provoc\",\n  \"provocatorie\": \"provocator\",\n  \"provocatorio\": \"provocator\",\n  \"provocazione\": \"provoc\",\n  \"provocherà\": \"provoc\",\n  \"provocherai\": \"provoc\",\n  \"provocò\": \"provoc\",\n  \"provv\": \"provv\",\n  \"provveda\": \"provved\",\n  \"provveder\": \"provveder\",\n  \"provvederà\": \"provved\",\n  \"provvedere\": \"provved\",\n  \"provvederla\": \"provved\",\n  \"provvedeva\": \"provved\",\n  \"provvedimenti\": \"provved\",\n  \"provvedimento\": \"provved\",\n  \"provvedute\": \"provved\",\n  \"provveduti\": \"provved\",\n  \"provveduto\": \"provved\",\n  \"provvidenza\": \"provvident\",\n  \"provvisione\": \"provvision\",\n  \"provvisioni\": \"provvision\",\n  \"provvisori\": \"provvisor\",\n  \"provvisorio\": \"provvisor\",\n  \"provvisti\": \"provvist\",\n  \"provvisto\": \"provvist\",\n  \"prozie\": \"proz\",\n  \"prudente\": \"prudent\",\n  \"prudenti\": \"prudent\",\n  \"prudentium\": \"prudentium\",\n  \"prudenza\": \"prudenz\",\n  \"prudenziale\": \"prudenzial\",\n  \"prunaio\": \"prunai\",\n  \"pruni\": \"prun\",\n  \"prurito\": \"prur\",\n  \"prusis\": \"prusis\",\n  \"ps\": \"ps\",\n  \"pscritto\": \"pscritt\",\n  \"psi\": \"psi\",\n  \"psiche\": \"psic\",\n  \"psichico\": \"psichic\",\n  \"psico\": \"psic\",\n  \"psicosi\": \"psicos\",\n  \"pst\": \"pst\",\n  \"psu\": \"psu\",\n  \"pt\": \"pt\",\n  \"pu\": \"pu\",\n  \"pubbicato\": \"pubbic\",\n  \"pubblica\": \"pubblic\",\n  \"pubblicamente\": \"pubblic\",\n  \"pubblicando\": \"pubblic\",\n  \"pubblicar\": \"pubblic\",\n  \"pubblicare\": \"pubblic\",\n  \"pubblicasse\": \"pubblic\",\n  \"pubblicata\": \"pubblic\",\n  \"pubblicatao\": \"pubblicata\",\n  \"pubblicate\": \"pubblic\",\n  \"pubblicati\": \"pubblic\",\n  \"pubblicato\": \"pubblic\",\n  \"pubblicavano\": \"pubblic\",\n  \"pubblicazione\": \"pubblic\",\n  \"pubblicazioni\": \"pubblic\",\n  \"pubbliche\": \"pubblic\",\n  \"pubblichi\": \"pubblic\",\n  \"pubblici\": \"pubblic\",\n  \"pubblicità\": \"pubblic\",\n  \"pubblicitari\": \"pubblicitar\",\n  \"pubblicitaria\": \"pubblicitar\",\n  \"pubblicitarie\": \"pubblicitar\",\n  \"pubblicizza\": \"pubblicizz\",\n  \"pubblicizzati\": \"pubblicizz\",\n  \"pubblico\": \"pubblic\",\n  \"pubblicò\": \"pubblic\",\n  \"pubertà\": \"pubert\",\n  \"publbico\": \"publbic\",\n  \"publicata\": \"public\",\n  \"publico\": \"public\",\n  \"publio\": \"publ\",\n  \"puc\": \"puc\",\n  \"puche\": \"puch\",\n  \"pudore\": \"pudor\",\n  \"pudori\": \"pudor\",\n  \"pueblo\": \"puebl\",\n  \"puedes\": \"puedes\",\n  \"puerizia\": \"pueriz\",\n  \"pug\": \"pug\",\n  \"pugilato\": \"pugil\",\n  \"puglia\": \"pugl\",\n  \"puglià\": \"pugl\",\n  \"pugliese\": \"puglies\",\n  \"pugliesi\": \"puglies\",\n  \"pugnalata\": \"pugnal\",\n  \"pugnalate\": \"pugnal\",\n  \"pugnale\": \"pugnal\",\n  \"pugnali\": \"pugnal\",\n  \"pugni\": \"pugn\",\n  \"pugnitopo\": \"pugnitop\",\n  \"pugno\": \"pugn\",\n  \"pulce\": \"pulc\",\n  \"pulcin\": \"pulcin\",\n  \"pulcinella\": \"pulcinell\",\n  \"pulcini\": \"pulcin\",\n  \"pulcino\": \"pulcin\",\n  \"pulejo\": \"pulej\",\n  \"puliè\": \"pul\",\n  \"pulita\": \"pul\",\n  \"pulite\": \"pul\",\n  \"pulitè\": \"pulit\",\n  \"pulito\": \"pul\",\n  \"pulizia\": \"puliz\",\n  \"pullman\": \"pullman\",\n  \"pullmann\": \"pullmann\",\n  \"pulmino\": \"pulmin\",\n  \"pulpiti\": \"pulp\",\n  \"pulpito\": \"pulp\",\n  \"puma\": \"pum\",\n  \"punge\": \"pung\",\n  \"pungente\": \"pungent\",\n  \"pungenti\": \"pungent\",\n  \"pungolo\": \"pungol\",\n  \"punire\": \"pun\",\n  \"punirlo\": \"pun\",\n  \"puniti\": \"pun\",\n  \"punitore\": \"punitor\",\n  \"puniva\": \"pun\",\n  \"punizione\": \"punizion\",\n  \"punt\": \"punt\",\n  \"punta\": \"punt\",\n  \"puntando\": \"punt\",\n  \"puntano\": \"punt\",\n  \"puntare\": \"punt\",\n  \"puntarglisi\": \"puntarglis\",\n  \"puntata\": \"punt\",\n  \"puntate\": \"punt\",\n  \"puntati\": \"punt\",\n  \"puntato\": \"punt\",\n  \"puntava\": \"punt\",\n  \"punte\": \"punt\",\n  \"punteggio\": \"puntegg\",\n  \"puntelli\": \"puntell\",\n  \"punterà\": \"punt\",\n  \"punti\": \"punt\",\n  \"puntiamo\": \"punt\",\n  \"puntigli\": \"puntigl\",\n  \"puntiglio\": \"puntigl\",\n  \"puntiglioso\": \"puntigl\",\n  \"puntino\": \"puntin\",\n  \"punto\": \"punt\",\n  \"puntuale\": \"puntual\",\n  \"puntuali\": \"puntual\",\n  \"puntualità\": \"puntual\",\n  \"puntualizza\": \"puntualizz\",\n  \"puntualizzato\": \"puntualizz\",\n  \"puntualizzazione\": \"puntualizz\",\n  \"puntualizzazioni\": \"puntualizz\",\n  \"puntualmente\": \"puntual\",\n  \"puntura\": \"puntur\",\n  \"punzione\": \"punzion\",\n  \"punzone\": \"punzon\",\n  \"punzoni\": \"punzon\",\n  \"puo\": \"puo\",\n  \"può\": \"può\",\n  \"puoco\": \"puoc\",\n  \"puoi\": \"puo\",\n  \"puoiché\": \"puoic\",\n  \"pupazzi\": \"pupazz\",\n  \"pupilla\": \"pupill\",\n  \"pupille\": \"pupill\",\n  \"pupillo\": \"pupill\",\n  \"pur\": \"pur\",\n  \"pura\": \"pur\",\n  \"puramente\": \"pur\",\n  \"purché\": \"purc\",\n  \"pure\": \"pur\",\n  \"purgare\": \"purg\",\n  \"purgatorio\": \"purgator\",\n  \"purghe\": \"purg\",\n  \"puri\": \"pur\",\n  \"purissime\": \"purissim\",\n  \"purissimi\": \"purissim\",\n  \"puritanesimo\": \"puritanesim\",\n  \"puro\": \"pur\",\n  \"purtroppo\": \"purtropp\",\n  \"purus\": \"purus\",\n  \"pusceddu\": \"pusceddu\",\n  \"pusillanime\": \"pusillanim\",\n  \"pusillanimità\": \"pusillanim\",\n  \"pusterla\": \"pust\",\n  \"putignanese\": \"putignanes\",\n  \"putignano\": \"putign\",\n  \"putrefatti\": \"putrefatt\",\n  \"putrida\": \"putrid\",\n  \"puttemans\": \"puttemans\",\n  \"puzzar\": \"puzz\",\n  \"puzzava\": \"puzz\",\n  \"puzzo\": \"puzz\",\n  \"pvs\": \"pvs\",\n  \"pyc\": \"pyc\",\n  \"pz\": \"pz\",\n  \"q\": \"q\",\n  \"qa\": \"qa\",\n  \"qatar\": \"qat\",\n  \"qbxb\": \"qbxb\",\n  \"qn\": \"qn\",\n  \"qua\": \"qua\",\n  \"quaderno\": \"quadern\",\n  \"quadraro\": \"quadrar\",\n  \"quadrata\": \"quadr\",\n  \"quadrati\": \"quadr\",\n  \"quadrato\": \"quadr\",\n  \"quadri\": \"quadr\",\n  \"quadriennio\": \"quadrienn\",\n  \"quadrifoglio\": \"quadrifogl\",\n  \"quadrilatero\": \"quadrilater\",\n  \"quadrimotori\": \"quadrimotor\",\n  \"quadro\": \"quadr\",\n  \"quae\": \"qua\",\n  \"quaggiù\": \"quaggiù\",\n  \"quaid\": \"quaid\",\n  \"qual\": \"qual\",\n  \"qualche\": \"qualc\",\n  \"qualchedun\": \"qualchedun\",\n  \"qualcheduna\": \"qualchedun\",\n  \"qualcheduno\": \"qualchedun\",\n  \"qualcosa\": \"qualcos\",\n  \"qualcosina\": \"qualcosin\",\n  \"qualcuno\": \"qualcun\",\n  \"quale\": \"qual\",\n  \"quali\": \"qual\",\n  \"qualifica\": \"qualif\",\n  \"qualificanti\": \"qualific\",\n  \"qualificar\": \"qualific\",\n  \"qualificare\": \"qualific\",\n  \"qualificata\": \"qualific\",\n  \"qualificati\": \"qualific\",\n  \"qualificato\": \"qualific\",\n  \"qualificava\": \"qualific\",\n  \"qualita\": \"qual\",\n  \"qualità\": \"qualit\",\n  \"qualitate\": \"qualit\",\n  \"qualitativamente\": \"qualit\",\n  \"qualla\": \"quall\",\n  \"qualmente\": \"qualment\",\n  \"qualora\": \"qualor\",\n  \"qualsiasi\": \"qualsias\",\n  \"qualsisia\": \"qualsis\",\n  \"qualsiuoglia\": \"qualsiuogl\",\n  \"qualsivoglia\": \"qualsivogl\",\n  \"qualunque\": \"qualunqu\",\n  \"qualunquismo\": \"qualunqu\",\n  \"qualunquista\": \"qualunqu\",\n  \"quand\": \"quand\",\n  \"quando\": \"quand\",\n  \"quant\": \"quant\",\n  \"quanta\": \"quant\",\n  \"quante\": \"quant\",\n  \"quanti\": \"quant\",\n  \"quantificavano\": \"quantific\",\n  \"quantità\": \"quantit\",\n  \"quantitativi\": \"quantit\",\n  \"quantitativo\": \"quantit\",\n  \"quanto\": \"quant\",\n  \"quantunque\": \"quantunqu\",\n  \"quarant\": \"quarant\",\n  \"quaranta\": \"quarant\",\n  \"quarantene\": \"quaranten\",\n  \"quarantenni\": \"quarantenn\",\n  \"quarantina\": \"quarantin\",\n  \"quaresima\": \"quaresim\",\n  \"quaresimale\": \"quaresimal\",\n  \"quarta\": \"quart\",\n  \"quartetto\": \"quartett\",\n  \"quarti\": \"quart\",\n  \"quartier\": \"quartier\",\n  \"quartiere\": \"quart\",\n  \"quartieri\": \"quartier\",\n  \"quarto\": \"quart\",\n  \"quartuccio\": \"quartucc\",\n  \"quarum\": \"quarum\",\n  \"quasdro\": \"quasdr\",\n  \"quasi\": \"quas\",\n  \"quassù\": \"quassù\",\n  \"quatti\": \"quatt\",\n  \"quatto\": \"quatt\",\n  \"quattordicenne\": \"quattordicenn\",\n  \"quattordicesima\": \"quattordicesim\",\n  \"quattordici\": \"quattord\",\n  \"quattordicimila\": \"quattordicimil\",\n  \"quattr\": \"quattr\",\n  \"quattrinelli\": \"quattrinell\",\n  \"quattrini\": \"quattrin\",\n  \"quattrino\": \"quattrin\",\n  \"quattro\": \"quattr\",\n  \"quattrocento\": \"quattrocent\",\n  \"quattromila\": \"quattromil\",\n  \"quayle\": \"quayl\",\n  \"que\": \"que\",\n  \"quegl\": \"quegl\",\n  \"quegli\": \"quegl\",\n  \"quei\": \"que\",\n  \"queire\": \"que\",\n  \"quel\": \"quel\",\n  \"quell\": \"quell\",\n  \"quella\": \"quell\",\n  \"quelle\": \"quell\",\n  \"quelli\": \"quell\",\n  \"quello\": \"quell\",\n  \"quellò\": \"quell\",\n  \"querce\": \"querc\",\n  \"quercia\": \"querc\",\n  \"quercioli\": \"querciol\",\n  \"querela\": \"querel\",\n  \"querelarsi\": \"querel\",\n  \"querele\": \"querel\",\n  \"querelle\": \"querell\",\n  \"quesiti\": \"ques\",\n  \"quest\": \"quest\",\n  \"questa\": \"quest\",\n  \"queste\": \"quest\",\n  \"questi\": \"quest\",\n  \"questionare\": \"question\",\n  \"questione\": \"question\",\n  \"questioni\": \"question\",\n  \"questo\": \"quest\",\n  \"questore\": \"questor\",\n  \"questura\": \"questur\",\n  \"questure\": \"questur\",\n  \"qui\": \"qui\",\n  \"quicktime\": \"quicktim\",\n  \"quid\": \"quid\",\n  \"quidem\": \"quidem\",\n  \"quidquid\": \"quidquid\",\n  \"quieta\": \"quiet\",\n  \"quietamente\": \"quiet\",\n  \"quietatevi\": \"quietat\",\n  \"quiete\": \"qui\",\n  \"quieti\": \"quiet\",\n  \"quieto\": \"quiet\",\n  \"quin\": \"quin\",\n  \"quindi\": \"quind\",\n  \"quindici\": \"quindic\",\n  \"quindicina\": \"quindicin\",\n  \"quindicinale\": \"quindicinal\",\n  \"quinta\": \"quint\",\n  \"quinte\": \"quint\",\n  \"quinti\": \"quint\",\n  \"quintin\": \"quintin\",\n  \"quinto\": \"quint\",\n  \"quique\": \"quiqu\",\n  \"quirinale\": \"quirinal\",\n  \"quis\": \"quis\",\n  \"quito\": \"quit\",\n  \"quivi\": \"quiv\",\n  \"quiz\": \"quiz\",\n  \"qundici\": \"qundic\",\n  \"quo\": \"quo\",\n  \"quod\": \"quod\",\n  \"quoque\": \"quoqu\",\n  \"quota\": \"quot\",\n  \"quotata\": \"quot\",\n  \"quotati\": \"quot\",\n  \"quotato\": \"quot\",\n  \"quotazione\": \"quotazion\",\n  \"quotazioni\": \"quotazion\",\n  \"quote\": \"quot\",\n  \"quotidiana\": \"quotidian\",\n  \"quotidianamente\": \"quotidian\",\n  \"quotidiani\": \"quotidian\",\n  \"quotidianiche\": \"quotidian\",\n  \"quotidiano\": \"quotid\",\n  \"qutub\": \"qutub\",\n  \"quyivalenti\": \"quyivalent\",\n  \"r\": \"r\",\n  \"ra\": \"ra\",\n  \"raadstroem\": \"raadstroem\",\n  \"rab\": \"rab\",\n  \"rabai\": \"raba\",\n  \"rabbani\": \"rabban\",\n  \"rabbattuto\": \"rabbatt\",\n  \"rabbi\": \"rabb\",\n  \"rabbia\": \"rabb\",\n  \"rabbie\": \"rabb\",\n  \"rabbiosa\": \"rabbios\",\n  \"rabbiosamente\": \"rabbios\",\n  \"rabbiosi\": \"rabbios\",\n  \"rabbioso\": \"rabbios\",\n  \"rabbrividì\": \"rabbrivid\",\n  \"rabbrividire\": \"rabbrivid\",\n  \"rabbrividiti\": \"rabbrivid\",\n  \"rabbuffato\": \"rabbuff\",\n  \"rabbuffi\": \"rabbuff\",\n  \"rabbuiando\": \"rabbui\",\n  \"rabbuiandosi\": \"rabbui\",\n  \"rabescate\": \"rabesc\",\n  \"rabin\": \"rabin\",\n  \"racalbuto\": \"racalb\",\n  \"raccapezzandosi\": \"raccapezz\",\n  \"raccapezzar\": \"raccapezz\",\n  \"raccapezzare\": \"raccapezz\",\n  \"raccapezzarsi\": \"raccapezz\",\n  \"raccapezzò\": \"raccapezz\",\n  \"raccapriccianti\": \"raccapricc\",\n  \"raccapriccio\": \"raccapricc\",\n  \"raccattare\": \"raccatt\",\n  \"raccattarle\": \"raccatt\",\n  \"raccattava\": \"raccatt\",\n  \"racchiuse\": \"racchius\",\n  \"racchiuso\": \"racchius\",\n  \"raccoglie\": \"raccogl\",\n  \"raccogliendo\": \"raccogl\",\n  \"raccoglier\": \"raccoglier\",\n  \"raccoglierà\": \"raccogl\",\n  \"raccogliere\": \"raccogl\",\n  \"raccoglierli\": \"raccogl\",\n  \"raccoglierlo\": \"raccogl\",\n  \"raccoglieva\": \"raccogl\",\n  \"raccoglievan\": \"raccoglievan\",\n  \"raccoglievano\": \"raccogl\",\n  \"raccoglimento\": \"raccogl\",\n  \"raccolgono\": \"raccolg\",\n  \"raccolse\": \"raccols\",\n  \"raccolta\": \"raccolt\",\n  \"raccolte\": \"raccolt\",\n  \"raccolti\": \"raccolt\",\n  \"raccolto\": \"raccolt\",\n  \"raccomandandosi\": \"raccomand\",\n  \"raccomandare\": \"raccomand\",\n  \"raccomandasse\": \"raccomand\",\n  \"raccomandata\": \"raccomand\",\n  \"raccomandate\": \"raccomand\",\n  \"raccomandatemi\": \"raccomandatem\",\n  \"raccomandati\": \"raccomand\",\n  \"raccomandato\": \"raccomand\",\n  \"raccomandava\": \"raccomand\",\n  \"raccomandavano\": \"raccomand\",\n  \"raccomandazione\": \"raccomand\",\n  \"raccomandazioni\": \"raccomand\",\n  \"raccomanderò\": \"raccomand\",\n  \"raccomando\": \"raccom\",\n  \"raccomandò\": \"raccomand\",\n  \"raccomodar\": \"raccomod\",\n  \"raccomodare\": \"raccomod\",\n  \"raccomodarla\": \"raccomod\",\n  \"raccomodarlo\": \"raccomod\",\n  \"raccomodata\": \"raccomod\",\n  \"raccomodava\": \"raccomod\",\n  \"raccomodò\": \"raccomod\",\n  \"racconta\": \"raccont\",\n  \"raccontai\": \"racconta\",\n  \"raccontan\": \"raccontan\",\n  \"raccontando\": \"raccont\",\n  \"raccontano\": \"raccont\",\n  \"raccontar\": \"raccont\",\n  \"raccontare\": \"raccont\",\n  \"raccontargli\": \"raccont\",\n  \"raccontarglieli\": \"raccont\",\n  \"raccontargliene\": \"raccont\",\n  \"raccontarlo\": \"raccont\",\n  \"raccontarne\": \"raccont\",\n  \"raccontarsi\": \"raccont\",\n  \"raccontartene\": \"raccont\",\n  \"raccontasse\": \"raccont\",\n  \"raccontata\": \"raccont\",\n  \"raccontategli\": \"raccontategl\",\n  \"raccontatele\": \"raccontatel\",\n  \"raccontatemelo\": \"raccontatemel\",\n  \"raccontatemi\": \"raccontatem\",\n  \"raccontati\": \"raccont\",\n  \"raccontato\": \"raccont\",\n  \"raccontava\": \"raccont\",\n  \"raccontavan\": \"raccontavan\",\n  \"raccontavano\": \"raccont\",\n  \"racconterebbe\": \"raccont\",\n  \"racconteremo\": \"raccont\",\n  \"racconterò\": \"raccont\",\n  \"racconti\": \"raccont\",\n  \"raccontiamo\": \"raccont\",\n  \"racconto\": \"raccont\",\n  \"raccontò\": \"raccont\",\n  \"raccordare\": \"raccord\",\n  \"raccorderà\": \"raccord\",\n  \"raccordo\": \"raccord\",\n  \"raccostando\": \"raccost\",\n  \"raccostò\": \"raccost\",\n  \"raccozzò\": \"raccozz\",\n  \"rachenko\": \"rachenk\",\n  \"rachid\": \"rachid\",\n  \"rachini\": \"rachin\",\n  \"racing\": \"racing\",\n  \"racquisto\": \"racquist\",\n  \"rada\": \"rad\",\n  \"radchenko\": \"radchenk\",\n  \"raddirizzar\": \"raddirizz\",\n  \"raddirizzare\": \"raddirizz\",\n  \"raddirizzati\": \"raddirizz\",\n  \"raddolcendo\": \"raddolc\",\n  \"raddolcì\": \"raddolc\",\n  \"raddolcirà\": \"raddolc\",\n  \"raddolcisce\": \"raddolc\",\n  \"raddolcita\": \"raddolc\",\n  \"raddolcito\": \"raddolc\",\n  \"raddoppi\": \"raddopp\",\n  \"raddoppiar\": \"raddopp\",\n  \"raddoppiare\": \"raddopp\",\n  \"raddoppiato\": \"raddopp\",\n  \"raddoppio\": \"raddopp\",\n  \"rade\": \"rad\",\n  \"radendo\": \"rad\",\n  \"raderle\": \"rad\",\n  \"radezza\": \"radezz\",\n  \"radhabinod\": \"radhabinod\",\n  \"radi\": \"rad\",\n  \"radical\": \"radical\",\n  \"radicale\": \"radical\",\n  \"radicali\": \"radical\",\n  \"radicamento\": \"radic\",\n  \"radicata\": \"radic\",\n  \"radicate\": \"radic\",\n  \"radicchielle\": \"radicchiell\",\n  \"radice\": \"radic\",\n  \"radici\": \"radic\",\n  \"radicioni\": \"radicion\",\n  \"radio\": \"rad\",\n  \"radiò\": \"rad\",\n  \"radiocronaca\": \"radiocronac\",\n  \"radiofonia\": \"radiofon\",\n  \"radiofonica\": \"radiofon\",\n  \"radiofonici\": \"radiofon\",\n  \"radiografia\": \"radiograf\",\n  \"radiografico\": \"radiograf\",\n  \"radiotelevisiva\": \"radiotelevis\",\n  \"radiotelevisive\": \"radiotelevis\",\n  \"radiotelevisivi\": \"radiotelevis\",\n  \"radiotelevisivo\": \"radiotelevis\",\n  \"raditelevisive\": \"raditelevis\",\n  \"rado\": \"rad\",\n  \"radovan\": \"radovan\",\n  \"radstrom\": \"radstrom\",\n  \"radunando\": \"radun\",\n  \"radunanza\": \"radun\",\n  \"radunar\": \"radun\",\n  \"radunarglisi\": \"radunarglis\",\n  \"radunarono\": \"radun\",\n  \"radunarsi\": \"radun\",\n  \"radunarvi\": \"radun\",\n  \"radunata\": \"radun\",\n  \"radunate\": \"radun\",\n  \"radunati\": \"radun\",\n  \"radunavano\": \"radun\",\n  \"raduno\": \"radun\",\n  \"radunò\": \"radun\",\n  \"rafael\": \"rafael\",\n  \"raffa\": \"raff\",\n  \"raffaele\": \"raffael\",\n  \"raffh\": \"raffh\",\n  \"raffica\": \"raffic\",\n  \"raffiche\": \"raffic\",\n  \"raffigura\": \"raffigur\",\n  \"raffigurante\": \"raffigur\",\n  \"raffigurar\": \"raffigur\",\n  \"raffigurata\": \"raffigur\",\n  \"raffigurato\": \"raffigur\",\n  \"raffigurazione\": \"raffigur\",\n  \"raffin\": \"raffin\",\n  \"raffinate\": \"raffin\",\n  \"raffinatori\": \"raffin\",\n  \"raffinerie\": \"raffiner\",\n  \"rafforzamento\": \"rafforz\",\n  \"rafforzando\": \"rafforz\",\n  \"rafforzare\": \"rafforz\",\n  \"rafforzati\": \"rafforz\",\n  \"rafforzato\": \"rafforz\",\n  \"rafforzerebbe\": \"rafforz\",\n  \"raffreddamento\": \"raffredd\",\n  \"raffreddore\": \"raffreddor\",\n  \"rafsanjani\": \"rafsanjan\",\n  \"ragazza\": \"ragazz\",\n  \"ragazzacci\": \"ragazzacc\",\n  \"ragazzaccio\": \"ragazzacc\",\n  \"ragazzate\": \"ragazz\",\n  \"ragazze\": \"ragazz\",\n  \"ragazzetti\": \"ragazzett\",\n  \"ragazzetto\": \"ragazzett\",\n  \"ragazzi\": \"ragazz\",\n  \"ragazzia\": \"ragazz\",\n  \"ragazzina\": \"ragazzin\",\n  \"ragazzini\": \"ragazzin\",\n  \"ragazzo\": \"ragazz\",\n  \"ragazzone\": \"ragazzon\",\n  \"ragazzotto\": \"ragazzott\",\n  \"raggi\": \"ragg\",\n  \"raggiante\": \"raggiant\",\n  \"raggio\": \"ragg\",\n  \"raggiri\": \"raggir\",\n  \"raggiunga\": \"raggiung\",\n  \"raggiunge\": \"raggiung\",\n  \"raggiungendo\": \"raggiung\",\n  \"raggiunger\": \"raggiunger\",\n  \"raggiungerà\": \"raggiung\",\n  \"raggiungere\": \"raggiung\",\n  \"raggiungerli\": \"raggiung\",\n  \"raggiungerlo\": \"raggiung\",\n  \"raggiungono\": \"raggiung\",\n  \"raggiunse\": \"raggiuns\",\n  \"raggiunta\": \"raggiunt\",\n  \"raggiunte\": \"raggiunt\",\n  \"raggiunti\": \"raggiunt\",\n  \"raggiunto\": \"raggiunt\",\n  \"raggomitolata\": \"raggomitol\",\n  \"raggrinzando\": \"raggrinz\",\n  \"raggrinzarle\": \"raggrinz\",\n  \"raggrinzata\": \"raggrinz\",\n  \"raggrinzato\": \"raggrinz\",\n  \"raggrinzava\": \"raggrinz\",\n  \"raggrinzò\": \"raggrinz\",\n  \"raggrumate\": \"raggrum\",\n  \"raggruppamenti\": \"raggrupp\",\n  \"raggruppamento\": \"raggrupp\",\n  \"ragguagli\": \"ragguagl\",\n  \"ragguagliata\": \"ragguagl\",\n  \"ragguaglio\": \"ragguagl\",\n  \"ragion\": \"ragion\",\n  \"ragionamenti\": \"ragion\",\n  \"ragionamento\": \"ragion\",\n  \"ragionando\": \"ragion\",\n  \"ragionar\": \"ragion\",\n  \"ragionare\": \"ragion\",\n  \"ragionava\": \"ragion\",\n  \"ragione\": \"ragion\",\n  \"ragioneria\": \"ragioner\",\n  \"ragionevole\": \"ragionevol\",\n  \"ragionevolezza\": \"ragionevolezz\",\n  \"ragionevoli\": \"ragionevol\",\n  \"ragionevolmente\": \"ragionevol\",\n  \"ragioni\": \"ragion\",\n  \"ragioniere\": \"ragion\",\n  \"ragnateli\": \"ragnatel\",\n  \"ragno\": \"ragn\",\n  \"ragnotti\": \"ragnott\",\n  \"ragusa\": \"ragus\",\n  \"rai\": \"rai\",\n  \"raico\": \"raic\",\n  \"raidue\": \"raidu\",\n  \"raimondo\": \"raimond\",\n  \"raiola\": \"raiol\",\n  \"rais\": \"rais\",\n  \"raitre\": \"raitr\",\n  \"raiuno\": \"raiun\",\n  \"rajasthan\": \"rajasthan\",\n  \"rajko\": \"rajk\",\n  \"rakkarndee\": \"rakkarnde\",\n  \"rallegra\": \"rallegr\",\n  \"rallegrarsi\": \"rallegr\",\n  \"rallegratevi\": \"rallegrat\",\n  \"rallegrati\": \"rallegr\",\n  \"rallegrato\": \"rallegr\",\n  \"rallegrava\": \"rallegr\",\n  \"rallegravano\": \"rallegr\",\n  \"rallegriamo\": \"rallegr\",\n  \"rallegro\": \"rallegr\",\n  \"rallegrò\": \"rallegr\",\n  \"rallenta\": \"rallent\",\n  \"rallentamento\": \"rallent\",\n  \"rallentando\": \"rallent\",\n  \"rallentare\": \"rallent\",\n  \"rallentarono\": \"rallent\",\n  \"rallentarsi\": \"rallent\",\n  \"rallentavano\": \"rallent\",\n  \"rallentò\": \"rallent\",\n  \"rally\": \"rally\",\n  \"ram\": \"ram\",\n  \"ramadan\": \"ramadan\",\n  \"rambaldo\": \"rambald\",\n  \"rambaudi\": \"rambaud\",\n  \"rametti\": \"ramett\",\n  \"rami\": \"ram\",\n  \"ramificano\": \"ramific\",\n  \"raminga\": \"raming\",\n  \"ramingo\": \"raming\",\n  \"ramione\": \"ramion\",\n  \"ramiro\": \"ramir\",\n  \"rammarica\": \"rammar\",\n  \"rammaricarsi\": \"rammaric\",\n  \"rammaricato\": \"rammaric\",\n  \"rammaricava\": \"rammaric\",\n  \"rammarichìo\": \"rammarichì\",\n  \"rammarico\": \"rammar\",\n  \"rammatico\": \"rammat\",\n  \"rammentandosi\": \"ramment\",\n  \"rammentar\": \"ramment\",\n  \"rammentarsi\": \"ramment\",\n  \"rammentasse\": \"ramment\",\n  \"rammentate\": \"ramment\",\n  \"rammentava\": \"ramment\",\n  \"rammentavan\": \"rammentavan\",\n  \"rammentavano\": \"ramment\",\n  \"rammenti\": \"ramment\",\n  \"rammentò\": \"ramment\",\n  \"ramo\": \"ram\",\n  \"ramon\": \"ramon\",\n  \"rampolli\": \"rampoll\",\n  \"rampulla\": \"rampull\",\n  \"ramzi\": \"ramz\",\n  \"rancore\": \"rancor\",\n  \"rancori\": \"rancor\",\n  \"randello\": \"randell\",\n  \"randy\": \"randy\",\n  \"rangers\": \"rangers\",\n  \"ranieri\": \"ranier\",\n  \"rannicchiarsi\": \"rannicc\",\n  \"rannicchiata\": \"rannicc\",\n  \"rannicchiati\": \"rannicc\",\n  \"rannicchiato\": \"rannicc\",\n  \"rannicchiò\": \"rannicc\",\n  \"rannuvolata\": \"rannuvol\",\n  \"rannuvolato\": \"rannuvol\",\n  \"rao\": \"rao\",\n  \"rap\": \"rap\",\n  \"rapatè\": \"rapat\",\n  \"rapid\": \"rapid\",\n  \"rapida\": \"rapid\",\n  \"rapidamente\": \"rapid\",\n  \"rapidi\": \"rapid\",\n  \"rapidissima\": \"rapidissim\",\n  \"rapidità\": \"rapid\",\n  \"rapido\": \"rapid\",\n  \"rapimenti\": \"rap\",\n  \"rapimento\": \"rap\",\n  \"rapina\": \"rapin\",\n  \"rapinate\": \"rapin\",\n  \"rapinatori\": \"rapin\",\n  \"rapine\": \"rapin\",\n  \"rapisce\": \"rap\",\n  \"rapiscono\": \"rap\",\n  \"rapita\": \"rap\",\n  \"rapite\": \"rap\",\n  \"rapito\": \"rap\",\n  \"rapitori\": \"rapitor\",\n  \"rapportare\": \"rapport\",\n  \"rapportarono\": \"rapport\",\n  \"rapportata\": \"rapport\",\n  \"rapportato\": \"rapport\",\n  \"rapporti\": \"rapport\",\n  \"rapporto\": \"rapport\",\n  \"rapportò\": \"rapport\",\n  \"rappporti\": \"rappport\",\n  \"rappresaglia\": \"rappresagl\",\n  \"rappresenta\": \"rappresent\",\n  \"rappresentando\": \"rappresent\",\n  \"rappresentano\": \"rappresent\",\n  \"rappresentante\": \"rappresent\",\n  \"rappresentanti\": \"rappresent\",\n  \"rappresentanza\": \"rappresent\",\n  \"rappresentanze\": \"rappresent\",\n  \"rappresentar\": \"rappresent\",\n  \"rappresentare\": \"rappresent\",\n  \"rappresentarle\": \"rappresent\",\n  \"rappresentassero\": \"rappresent\",\n  \"rappresentata\": \"rappresent\",\n  \"rappresentate\": \"rappresent\",\n  \"rappresentati\": \"rappresent\",\n  \"rappresentative\": \"rappresent\",\n  \"rappresentativo\": \"rappresent\",\n  \"rappresentato\": \"rappresent\",\n  \"rappresentava\": \"rappresent\",\n  \"rappresentavan\": \"rappresentavan\",\n  \"rappresentazione\": \"rappresent\",\n  \"rappresenti\": \"rappresent\",\n  \"rappresento\": \"rappresent\",\n  \"rappresentò\": \"rappresent\",\n  \"rappresntanti\": \"rappresnt\",\n  \"raprpesenta\": \"raprpesent\",\n  \"rapto\": \"rapt\",\n  \"raptus\": \"raptus\",\n  \"rara\": \"rar\",\n  \"rare\": \"rar\",\n  \"rari\": \"rar\",\n  \"rarità\": \"rarit\",\n  \"raro\": \"rar\",\n  \"ras\": \"ras\",\n  \"rasa\": \"ras\",\n  \"rasentando\": \"rasent\",\n  \"rasentare\": \"rasent\",\n  \"rasente\": \"rasent\",\n  \"rashid\": \"rashid\",\n  \"rasi\": \"ras\",\n  \"rasim\": \"rasim\",\n  \"raso\": \"ras\",\n  \"rasoterra\": \"rasoterr\",\n  \"rasotterra\": \"rasotterr\",\n  \"rasputin\": \"rasputin\",\n  \"rassegna\": \"rassegn\",\n  \"rassegnarci\": \"rassegn\",\n  \"rassegnarsi\": \"rassegn\",\n  \"rassegnasse\": \"rassegn\",\n  \"rassegnata\": \"rassegn\",\n  \"rassegnate\": \"rassegn\",\n  \"rassegnatevi\": \"rassegnat\",\n  \"rassegnati\": \"rassegn\",\n  \"rassegnato\": \"rassegn\",\n  \"rassegnazione\": \"rassegn\",\n  \"rassegnerò\": \"rassegn\",\n  \"rassegno\": \"rassegn\",\n  \"rasserenamentò\": \"rasserenament\",\n  \"rasserenato\": \"rasseren\",\n  \"rassettar\": \"rassett\",\n  \"rassicurando\": \"rassicur\",\n  \"rassicurandolo\": \"rassicur\",\n  \"rassicurante\": \"rassicur\",\n  \"rassicuranti\": \"rassicur\",\n  \"rassicurare\": \"rassicur\",\n  \"rassicurarlo\": \"rassicur\",\n  \"rassicurato\": \"rassicur\",\n  \"rassicurava\": \"rassicur\",\n  \"rassomigliavan\": \"rassomigliavan\",\n  \"rastelli\": \"rastell\",\n  \"rastrelli\": \"rastrell\",\n  \"rata\": \"rat\",\n  \"ratajczak\": \"ratajczak\",\n  \"ratè\": \"rat\",\n  \"ratifica\": \"ratif\",\n  \"ratificata\": \"ratific\",\n  \"ratificato\": \"ratific\",\n  \"ratificazione\": \"ratif\",\n  \"ratificherà\": \"ratific\",\n  \"rating\": \"rating\",\n  \"ratio\": \"rat\",\n  \"ratiò\": \"rat\",\n  \"rattenendo\": \"ratten\",\n  \"rattenere\": \"ratten\",\n  \"rattenerne\": \"ratten\",\n  \"rattenuta\": \"ratten\",\n  \"rattenute\": \"ratten\",\n  \"rattenuto\": \"ratten\",\n  \"ratti\": \"ratt\",\n  \"rattoppare\": \"rattopp\",\n  \"rattopparle\": \"rattopp\",\n  \"rattrista\": \"rattrist\",\n  \"rattristato\": \"rattrist\",\n  \"rattristava\": \"rattrist\",\n  \"rauti\": \"raut\",\n  \"ravanelli\": \"ravanell\",\n  \"ravasi\": \"ravas\",\n  \"raveggioli\": \"raveggiol\",\n  \"ravenna\": \"ravenn\",\n  \"ravennate\": \"ravenn\",\n  \"ravveda\": \"ravved\",\n  \"ravvedere\": \"ravved\",\n  \"ravvedeva\": \"ravved\",\n  \"ravvedimento\": \"ravved\",\n  \"ravveduta\": \"ravved\",\n  \"ravviare\": \"ravv\",\n  \"ravviarla\": \"ravv\",\n  \"ravvicinata\": \"ravvicin\",\n  \"ravvicinato\": \"ravvicin\",\n  \"ravvicinava\": \"ravvicin\",\n  \"ravvicinavano\": \"ravvicin\",\n  \"ravvicinerebbero\": \"ravvicin\",\n  \"ravvisarsi\": \"ravvis\",\n  \"ravvisato\": \"ravvis\",\n  \"ravvivasse\": \"ravviv\",\n  \"ravvolgevan\": \"ravvolgevan\",\n  \"ravvolse\": \"ravvols\",\n  \"ravvolte\": \"ravvolt\",\n  \"ravvolto\": \"ravvolt\",\n  \"raymond\": \"raymond\",\n  \"rayton\": \"rayton\",\n  \"razionalizzare\": \"razionalizz\",\n  \"razza\": \"razz\",\n  \"razziali\": \"razzial\",\n  \"razzismo\": \"razzism\",\n  \"razzisti\": \"razzist\",\n  \"razzo\": \"razz\",\n  \"rb\": \"rb\",\n  \"rc\": \"rc\",\n  \"rdb\": \"rdb\",\n  \"rdt\": \"rdt\",\n  \"re\": \"re\",\n  \"rea\": \"rea\",\n  \"reagan\": \"reagan\",\n  \"reagì\": \"reag\",\n  \"reagire\": \"reag\",\n  \"reagisce\": \"reag\",\n  \"reagiscono\": \"reag\",\n  \"reagito\": \"reag\",\n  \"real\": \"real\",\n  \"reale\": \"real\",\n  \"realè\": \"real\",\n  \"reali\": \"real\",\n  \"realistico\": \"realist\",\n  \"realizza\": \"realizz\",\n  \"realizzando\": \"realizz\",\n  \"realizzano\": \"realizz\",\n  \"realizzare\": \"realizz\",\n  \"realizzarli\": \"realizz\",\n  \"realizzarsi\": \"realizz\",\n  \"realizzassero\": \"realizz\",\n  \"realizzata\": \"realizz\",\n  \"realizzate\": \"realizz\",\n  \"realizzati\": \"realizz\",\n  \"realizzativa\": \"realizz\",\n  \"realizzato\": \"realizz\",\n  \"realizzazione\": \"realizz\",\n  \"realizzerà\": \"realizz\",\n  \"realizzi\": \"realizz\",\n  \"realizzino\": \"realizzin\",\n  \"realmente\": \"realment\",\n  \"realtà\": \"realt\",\n  \"reati\": \"reat\",\n  \"reato\": \"reat\",\n  \"reattore\": \"reattor\",\n  \"reattori\": \"reattor\",\n  \"reazionaria\": \"reazionar\",\n  \"reazione\": \"reazion\",\n  \"reazioni\": \"reazion\",\n  \"rebbekka\": \"rebbekk\",\n  \"rebecchi\": \"rebecc\",\n  \"rebecchini\": \"rebecchin\",\n  \"rebekka\": \"rebekk\",\n  \"rebellin\": \"rebellin\",\n  \"rec\": \"rec\",\n  \"reca\": \"rec\",\n  \"recandosi\": \"rec\",\n  \"recano\": \"rec\",\n  \"recante\": \"recant\",\n  \"recapitare\": \"recapit\",\n  \"recapitarla\": \"recapit\",\n  \"recapito\": \"recap\",\n  \"recarsi\": \"rec\",\n  \"recasse\": \"rec\",\n  \"recati\": \"rec\",\n  \"recato\": \"rec\",\n  \"recava\": \"rec\",\n  \"recchia\": \"recc\",\n  \"recente\": \"recent\",\n  \"recentemente\": \"recent\",\n  \"recenti\": \"recent\",\n  \"recentissime\": \"recentissim\",\n  \"recentissimo\": \"recentissim\",\n  \"recepisce\": \"recep\",\n  \"recessione\": \"recession\",\n  \"recessiva\": \"recess\",\n  \"recherà\": \"rech\",\n  \"recidiva\": \"recid\",\n  \"recinto\": \"recint\",\n  \"recinzione\": \"recinzion\",\n  \"recinzioni\": \"recinzion\",\n  \"reciproca\": \"reciproc\",\n  \"reciprocamente\": \"reciproc\",\n  \"reciproche\": \"reciproc\",\n  \"reciproci\": \"reciproc\",\n  \"recita\": \"rec\",\n  \"recitar\": \"recit\",\n  \"recitarle\": \"recit\",\n  \"recitarono\": \"recit\",\n  \"recitata\": \"recit\",\n  \"recitato\": \"recit\",\n  \"recitava\": \"recit\",\n  \"recitò\": \"recit\",\n  \"reclamare\": \"reclam\",\n  \"reclamo\": \"reclam\",\n  \"reclusione\": \"reclusion\",\n  \"reclutamento\": \"reclut\",\n  \"reconditi\": \"recond\",\n  \"reconocer\": \"reconocer\",\n  \"record\": \"record\",\n  \"recordati\": \"record\",\n  \"recordo\": \"record\",\n  \"recrimina\": \"recrimin\",\n  \"recriminare\": \"recrimin\",\n  \"recriminazioni\": \"recrimin\",\n  \"recrimini\": \"recrimin\",\n  \"recrudescenzà\": \"recrudescenz\",\n  \"recupera\": \"recuper\",\n  \"recuperando\": \"recuper\",\n  \"recuperare\": \"recuper\",\n  \"recuperata\": \"recuper\",\n  \"recuperate\": \"recuper\",\n  \"recuperato\": \"recuper\",\n  \"recupereranno\": \"recuper\",\n  \"recupero\": \"recuper\",\n  \"red\": \"red\",\n  \"redatti\": \"redatt\",\n  \"redattore\": \"redattor\",\n  \"redattori\": \"redattor\",\n  \"redazionali\": \"redazional\",\n  \"redazione\": \"redazion\",\n  \"redd\": \"redd\",\n  \"redditi\": \"redd\",\n  \"redditività\": \"reddit\",\n  \"redditizio\": \"redditiz\",\n  \"reddito\": \"redd\",\n  \"redditosette\": \"redditosett\",\n  \"redenzione\": \"redenzion\",\n  \"redesa\": \"redes\",\n  \"redigono\": \"redig\",\n  \"redimibile\": \"redim\",\n  \"redini\": \"redin\",\n  \"redistribuzione\": \"redistribu\",\n  \"reduce\": \"reduc\",\n  \"reduci\": \"reduc\",\n  \"referatis\": \"referatis\",\n  \"referendum\": \"referendum\",\n  \"referenti\": \"referent\",\n  \"refezione\": \"refezion\",\n  \"reforma\": \"reform\",\n  \"refrigerio\": \"refriger\",\n  \"refrontolo\": \"refrontol\",\n  \"regala\": \"regal\",\n  \"regalando\": \"regal\",\n  \"regalar\": \"regal\",\n  \"regalare\": \"regal\",\n  \"regalata\": \"regal\",\n  \"regalato\": \"regal\",\n  \"regali\": \"regal\",\n  \"regalia\": \"regal\",\n  \"regalo\": \"regal\",\n  \"regge\": \"regg\",\n  \"reggendolo\": \"regg\",\n  \"regger\": \"regger\",\n  \"reggere\": \"regg\",\n  \"reggersi\": \"regg\",\n  \"reggesse\": \"reggess\",\n  \"reggeva\": \"regg\",\n  \"reggiana\": \"reggian\",\n  \"reggiano\": \"regg\",\n  \"reggimenti\": \"regg\",\n  \"reggimento\": \"regg\",\n  \"reggina\": \"reggin\",\n  \"reggio\": \"regg\",\n  \"regia\": \"reg\",\n  \"regii\": \"reg\",\n  \"regime\": \"regim\",\n  \"regimi\": \"regim\",\n  \"regina\": \"regin\",\n  \"reginald\": \"reginald\",\n  \"regine\": \"regin\",\n  \"reginetta\": \"reginett\",\n  \"regio\": \"reg\",\n  \"regional\": \"regional\",\n  \"regionale\": \"regional\",\n  \"regionali\": \"regional\",\n  \"regionalista\": \"regional\",\n  \"regione\": \"region\",\n  \"regioni\": \"region\",\n  \"regisseure\": \"regisseur\",\n  \"regissuere\": \"regissu\",\n  \"regista\": \"regist\",\n  \"registi\": \"regist\",\n  \"registra\": \"registr\",\n  \"registrano\": \"registr\",\n  \"registrare\": \"registr\",\n  \"registrata\": \"registr\",\n  \"registrate\": \"registr\",\n  \"registrati\": \"registr\",\n  \"registratisi\": \"registratis\",\n  \"registrato\": \"registr\",\n  \"registrava\": \"registr\",\n  \"registrazione\": \"registr\",\n  \"registrazioni\": \"registr\",\n  \"registri\": \"registr\",\n  \"registro\": \"registr\",\n  \"regna\": \"regn\",\n  \"regnante\": \"regnant\",\n  \"regnar\": \"regn\",\n  \"regnare\": \"regn\",\n  \"regnasse\": \"regn\",\n  \"regnato\": \"regn\",\n  \"regnava\": \"regn\",\n  \"regni\": \"regn\",\n  \"regno\": \"regn\",\n  \"regola\": \"regol\",\n  \"regolamentare\": \"regolament\",\n  \"regolamentazione\": \"regolament\",\n  \"regolamenti\": \"regol\",\n  \"regolamento\": \"regol\",\n  \"regolano\": \"regol\",\n  \"regolare\": \"regol\",\n  \"regolari\": \"regolar\",\n  \"regolarità\": \"regolar\",\n  \"regolarmente\": \"regolar\",\n  \"regolarsi\": \"regol\",\n  \"regolata\": \"regol\",\n  \"regolati\": \"regol\",\n  \"regolato\": \"regol\",\n  \"regolatore\": \"regol\",\n  \"regolatori\": \"regol\",\n  \"regolava\": \"regol\",\n  \"regolavan\": \"regolavan\",\n  \"regolavano\": \"regol\",\n  \"regolazione\": \"regol\",\n  \"regole\": \"regol\",\n  \"regresso\": \"regress\",\n  \"regulation\": \"regulation\",\n  \"rei\": \"rei\",\n  \"reigoni\": \"reigon\",\n  \"reimbarco\": \"reimbarc\",\n  \"reimpiego\": \"reimpieg\",\n  \"reincarnazione\": \"reincarn\",\n  \"reinelt\": \"reinelt\",\n  \"reinterpeta\": \"reinterpet\",\n  \"reinterpretata\": \"reinterpret\",\n  \"reinterpretato\": \"reinterpret\",\n  \"reintrodurre\": \"reintrodurr\",\n  \"reitera\": \"reiter\",\n  \"reiterato\": \"reiter\",\n  \"reiterazione\": \"reiter\",\n  \"reitz\": \"reitz\",\n  \"rejna\": \"rejn\",\n  \"relatione\": \"relation\",\n  \"relations\": \"relations\",\n  \"relativa\": \"relat\",\n  \"relativamente\": \"relat\",\n  \"relative\": \"relat\",\n  \"relativi\": \"relat\",\n  \"relativismo\": \"relativ\",\n  \"relativo\": \"relat\",\n  \"relato\": \"rel\",\n  \"relatore\": \"relator\",\n  \"relatori\": \"relator\",\n  \"relazione\": \"relazion\",\n  \"relazioni\": \"relazion\",\n  \"relegati\": \"releg\",\n  \"relegatione\": \"relegation\",\n  \"religione\": \"religion\",\n  \"religioni\": \"religion\",\n  \"religiosa\": \"relig\",\n  \"religiose\": \"relig\",\n  \"religiosi\": \"relig\",\n  \"religioso\": \"relig\",\n  \"reliquia\": \"reliqu\",\n  \"reliquie\": \"reliqu\",\n  \"relitti\": \"relitt\",\n  \"relizane\": \"relizan\",\n  \"rem\": \"rem\",\n  \"remando\": \"rem\",\n  \"remi\": \"rem\",\n  \"remigio\": \"remig\",\n  \"remissione\": \"remission\",\n  \"remo\": \"rem\",\n  \"remora\": \"remor\",\n  \"remote\": \"remot\",\n  \"renali\": \"renal\",\n  \"renano\": \"ren\",\n  \"renato\": \"ren\",\n  \"renault\": \"renault\",\n  \"renda\": \"rend\",\n  \"rende\": \"rend\",\n  \"rendé\": \"rend\",\n  \"rendendo\": \"rend\",\n  \"rendendogli\": \"rend\",\n  \"rendendoli\": \"rend\",\n  \"render\": \"render\",\n  \"renderà\": \"rend\",\n  \"renderai\": \"rend\",\n  \"renderci\": \"rend\",\n  \"rendere\": \"rend\",\n  \"renderebbe\": \"rend\",\n  \"rendergli\": \"rend\",\n  \"renderla\": \"rend\",\n  \"renderle\": \"rend\",\n  \"renderli\": \"rend\",\n  \"renderlo\": \"rend\",\n  \"rendermi\": \"rend\",\n  \"renderò\": \"rend\",\n  \"rendersi\": \"rend\",\n  \"rendervi\": \"rend\",\n  \"rendetelo\": \"rendetel\",\n  \"rendette\": \"rendett\",\n  \"rendeva\": \"rend\",\n  \"rendevan\": \"rendevan\",\n  \"rendevano\": \"rend\",\n  \"rendi\": \"rend\",\n  \"rendiam\": \"rendiam\",\n  \"rendiamo\": \"rend\",\n  \"rendicredit\": \"rendicredit\",\n  \"rendifit\": \"rendifit\",\n  \"rendifondo\": \"rendifond\",\n  \"rendimenti\": \"rend\",\n  \"rendimento\": \"rend\",\n  \"rendiras\": \"rendiras\",\n  \"rendita\": \"rend\",\n  \"rendite\": \"rend\",\n  \"rendono\": \"rend\",\n  \"rene\": \"ren\",\n  \"renè\": \"ren\",\n  \"renitenti\": \"renitent\",\n  \"rennes\": \"rennes\",\n  \"reno\": \"ren\",\n  \"renzo\": \"renz\",\n  \"reo\": \"reo\",\n  \"reogresso\": \"reogress\",\n  \"rep\": \"rep\",\n  \"reparti\": \"rep\",\n  \"reparto\": \"repart\",\n  \"repentaglio\": \"repentagl\",\n  \"repentina\": \"repentin\",\n  \"repentine\": \"repentin\",\n  \"repentino\": \"repentin\",\n  \"reperire\": \"reper\",\n  \"repertum\": \"repertum\",\n  \"replica\": \"replic\",\n  \"replicando\": \"replic\",\n  \"replicar\": \"replic\",\n  \"replicare\": \"replic\",\n  \"replicatamente\": \"replicat\",\n  \"replicato\": \"replic\",\n  \"replicava\": \"replic\",\n  \"replicò\": \"replic\",\n  \"reponsabili\": \"repons\",\n  \"reporter\": \"reporter\",\n  \"repressione\": \"repression\",\n  \"repressiva\": \"repress\",\n  \"repressivi\": \"repress\",\n  \"represso\": \"repress\",\n  \"reprimere\": \"reprim\",\n  \"repubblica\": \"repubbl\",\n  \"repubblicà\": \"repubblic\",\n  \"repubblicana\": \"repubblican\",\n  \"repubblicani\": \"repubblican\",\n  \"repubblicano\": \"repubblic\",\n  \"repubbliche\": \"repubbl\",\n  \"reputazione\": \"reput\",\n  \"requie\": \"requ\",\n  \"requisiti\": \"requis\",\n  \"requisitoria\": \"requisitor\",\n  \"rerum\": \"rerum\",\n  \"resa\": \"res\",\n  \"rese\": \"res\",\n  \"resegone\": \"resegon\",\n  \"resero\": \"reser\",\n  \"reserve\": \"reserv\",\n  \"reservè\": \"reserv\",\n  \"reshetnikova\": \"reshetnikov\",\n  \"resi\": \"res\",\n  \"residente\": \"resident\",\n  \"residenti\": \"resident\",\n  \"residenziale\": \"residenzial\",\n  \"residui\": \"residu\",\n  \"residuo\": \"residu\",\n  \"resistenti\": \"resistent\",\n  \"resistenza\": \"resistent\",\n  \"resistenze\": \"resistent\",\n  \"resistere\": \"resist\",\n  \"resistergli\": \"resist\",\n  \"resistette\": \"resistett\",\n  \"resistevano\": \"resist\",\n  \"resisti\": \"resist\",\n  \"resistire\": \"resist\",\n  \"resistito\": \"resist\",\n  \"reso\": \"res\",\n  \"resoconto\": \"resocont\",\n  \"resogli\": \"resogl\",\n  \"resosi\": \"resos\",\n  \"respinge\": \"resping\",\n  \"respingendoli\": \"resping\",\n  \"respinger\": \"respinger\",\n  \"respingere\": \"resping\",\n  \"respinsero\": \"respinser\",\n  \"respinta\": \"respint\",\n  \"respinti\": \"respint\",\n  \"respinto\": \"respint\",\n  \"respira\": \"respir\",\n  \"respirare\": \"respir\",\n  \"respirarono\": \"respir\",\n  \"respirata\": \"respir\",\n  \"respiratoria\": \"respirator\",\n  \"respirava\": \"respir\",\n  \"respirazione\": \"respir\",\n  \"respiri\": \"respir\",\n  \"respiro\": \"respir\",\n  \"respirò\": \"resp\",\n  \"respironi\": \"respiron\",\n  \"responsabile\": \"respons\",\n  \"responsabili\": \"respons\",\n  \"responsabilità\": \"respons\",\n  \"responsabilmente\": \"responsabil\",\n  \"responsbili\": \"responsbil\",\n  \"responso\": \"respons\",\n  \"resposabili\": \"respos\",\n  \"ressa\": \"ress\",\n  \"resta\": \"rest\",\n  \"restando\": \"rest\",\n  \"restandogli\": \"rest\",\n  \"restano\": \"rest\",\n  \"restante\": \"restant\",\n  \"restanti\": \"restant\",\n  \"restar\": \"rest\",\n  \"restare\": \"rest\",\n  \"restaron\": \"restaron\",\n  \"restarsene\": \"rest\",\n  \"restassero\": \"rest\",\n  \"restata\": \"rest\",\n  \"restate\": \"rest\",\n  \"restati\": \"rest\",\n  \"restato\": \"rest\",\n  \"restaurare\": \"restaur\",\n  \"restaurato\": \"restaur\",\n  \"restauro\": \"restaur\",\n  \"restava\": \"rest\",\n  \"restavano\": \"rest\",\n  \"resterà\": \"rest\",\n  \"resterebbe\": \"rest\",\n  \"resterebbero\": \"rest\",\n  \"resterei\": \"rest\",\n  \"resteremo\": \"rest\",\n  \"resti\": \"rest\",\n  \"restiam\": \"restiam\",\n  \"resticciolo\": \"resticciol\",\n  \"restino\": \"restin\",\n  \"restìo\": \"restì\",\n  \"restituendola\": \"restitu\",\n  \"restituì\": \"restitu\",\n  \"restituir\": \"restitu\",\n  \"restituire\": \"restitu\",\n  \"restituirglielo\": \"restitu\",\n  \"restituita\": \"restitu\",\n  \"restituite\": \"restitu\",\n  \"restituiti\": \"restitu\",\n  \"restituito\": \"restitu\",\n  \"restitutione\": \"restitution\",\n  \"restituzione\": \"restitu\",\n  \"resto\": \"rest\",\n  \"restò\": \"rest\",\n  \"restrittivo\": \"restritt\",\n  \"restrizioni\": \"restrizion\",\n  \"restyling\": \"restyling\",\n  \"resurrezione\": \"resurrezion\",\n  \"resuscitare\": \"resuscit\",\n  \"resuscitati\": \"resuscit\",\n  \"resuscitato\": \"resuscit\",\n  \"retagna\": \"retagn\",\n  \"retail\": \"retail\",\n  \"retata\": \"ret\",\n  \"retate\": \"ret\",\n  \"rete\": \"ret\",\n  \"retè\": \"ret\",\n  \"retequattro\": \"retequattr\",\n  \"reti\": \"ret\",\n  \"reticella\": \"reticell\",\n  \"reticelle\": \"reticell\",\n  \"reticente\": \"reticent\",\n  \"reticentè\": \"reticent\",\n  \"reticenze\": \"reticent\",\n  \"reto\": \"ret\",\n  \"retorica\": \"retor\",\n  \"retributivi\": \"retribut\",\n  \"retributivo\": \"retribut\",\n  \"retribuzione\": \"retribu\",\n  \"retribuzioni\": \"retribu\",\n  \"retrocessione\": \"retrocession\",\n  \"retroguardia\": \"retroguard\",\n  \"retroscena\": \"retroscen\",\n  \"retrospettiva\": \"retrospett\",\n  \"retrostante\": \"retrost\",\n  \"retta\": \"rett\",\n  \"rettifica\": \"rettif\",\n  \"rettificare\": \"rettific\",\n  \"rettificazioni\": \"rettif\",\n  \"retto\": \"rett\",\n  \"rettori\": \"rettor\",\n  \"rettorica\": \"rettor\",\n  \"reuter\": \"reuter\",\n  \"reverenda\": \"rever\",\n  \"reverendissima\": \"reverendissim\",\n  \"reverendo\": \"rever\",\n  \"reversibilità\": \"reversibil\",\n  \"revisione\": \"revision\",\n  \"revisionismo\": \"revision\",\n  \"revisone\": \"revison\",\n  \"revoca\": \"revoc\",\n  \"revocabile\": \"revoc\",\n  \"revocare\": \"revoc\",\n  \"revocati\": \"revoc\",\n  \"revocato\": \"revoc\",\n  \"rey\": \"rey\",\n  \"reynolds\": \"reynolds\",\n  \"rezza\": \"rezz\",\n  \"rf\": \"rf\",\n  \"rg\": \"rg\",\n  \"rh\": \"rh\",\n  \"rheinisch\": \"rheinisc\",\n  \"rhetel\": \"rhetel\",\n  \"rhodes\": \"rhodes\",\n  \"riabbassando\": \"riabbass\",\n  \"riabbassandoli\": \"riabbass\",\n  \"riabbracciar\": \"riabbracc\",\n  \"riabbracciare\": \"riabbracc\",\n  \"riabilitazione\": \"riabilit\",\n  \"riaccendano\": \"riaccend\",\n  \"riaccendersi\": \"riaccend\",\n  \"riaccentrare\": \"riaccentr\",\n  \"riaccesa\": \"riacces\",\n  \"riacceso\": \"riacces\",\n  \"riaccostati\": \"riaccost\",\n  \"riaccostò\": \"riaccost\",\n  \"riacquistar\": \"riacquist\",\n  \"riacquistare\": \"riacquist\",\n  \"riacquistate\": \"riacquist\",\n  \"riafferma\": \"riafferm\",\n  \"riaffermato\": \"riafferm\",\n  \"riaffermazione\": \"riafferm\",\n  \"riafferrare\": \"riafferr\",\n  \"riaffiora\": \"riaffior\",\n  \"riagganciare\": \"riagganc\",\n  \"riaggregare\": \"riaggreg\",\n  \"riallineamento\": \"riallin\",\n  \"rialto\": \"rialt\",\n  \"rialzare\": \"rialz\",\n  \"rialzata\": \"rialz\",\n  \"rialzi\": \"rialz\",\n  \"rialzo\": \"rialz\",\n  \"riandare\": \"riand\",\n  \"riandava\": \"riand\",\n  \"rianimata\": \"rianim\",\n  \"rianimate\": \"rianim\",\n  \"rianimati\": \"rianim\",\n  \"rianimato\": \"rianim\",\n  \"rianimazione\": \"rianim\",\n  \"riaperta\": \"riapert\",\n  \"riaperti\": \"riap\",\n  \"riaperto\": \"riapert\",\n  \"riapertura\": \"riapertur\",\n  \"riappropiarsi\": \"riapprop\",\n  \"riappropriarsi\": \"riappropr\",\n  \"riappuntella\": \"riappuntell\",\n  \"riappuntellati\": \"riappuntell\",\n  \"riapra\": \"riapr\",\n  \"riapriranno\": \"riapr\",\n  \"riassetto\": \"riassett\",\n  \"riassicurate\": \"riassicur\",\n  \"riassicurazioni\": \"riassicur\",\n  \"riattaccò\": \"riattacc\",\n  \"riattarla\": \"riatt\",\n  \"riattizzando\": \"riattizz\",\n  \"riavendoli\": \"riav\",\n  \"riaver\": \"riaver\",\n  \"riaversi\": \"riav\",\n  \"riaveva\": \"riav\",\n  \"riavute\": \"riav\",\n  \"riavuto\": \"riav\",\n  \"riavutosi\": \"riavut\",\n  \"riavviare\": \"riavv\",\n  \"riavvicina\": \"riavvicin\",\n  \"riavvicinamento\": \"riavvicin\",\n  \"ribadendo\": \"ribad\",\n  \"ribadisce\": \"ribad\",\n  \"ribadisco\": \"ribad\",\n  \"ribadiscono\": \"ribad\",\n  \"ribadita\": \"ribad\",\n  \"ribadito\": \"ribad\",\n  \"ribadiva\": \"ribad\",\n  \"ribalda\": \"ribald\",\n  \"ribalderia\": \"ribalder\",\n  \"ribalderie\": \"ribalder\",\n  \"ribaldi\": \"ribald\",\n  \"ribaldo\": \"ribald\",\n  \"ribalta\": \"ribalt\",\n  \"ribaltato\": \"ribalt\",\n  \"ribaltone\": \"ribalton\",\n  \"ribasso\": \"ribass\",\n  \"ribattendo\": \"ribatt\",\n  \"ribatter\": \"ribatter\",\n  \"ribattere\": \"ribatt\",\n  \"ribatterle\": \"ribatt\",\n  \"ribattete\": \"ribatt\",\n  \"ribattezzato\": \"ribattezz\",\n  \"ribattono\": \"ribatt\",\n  \"ribattuta\": \"ribatt\",\n  \"ribattuto\": \"ribatt\",\n  \"ribattutto\": \"ribattutt\",\n  \"ribella\": \"ribell\",\n  \"ribellata\": \"ribell\",\n  \"ribelle\": \"ribell\",\n  \"ribelli\": \"ribell\",\n  \"ribellione\": \"ribellion\",\n  \"ribellioni\": \"ribellion\",\n  \"ribenedetti\": \"ribenedett\",\n  \"ribolle\": \"riboll\",\n  \"ribollimento\": \"riboll\",\n  \"ribollivano\": \"riboll\",\n  \"ribrezzo\": \"ribrezz\",\n  \"ributtanti\": \"ributt\",\n  \"rica\": \"ric\",\n  \"ricadde\": \"ricadd\",\n  \"ricade\": \"ricad\",\n  \"ricadere\": \"ricad\",\n  \"ricadeva\": \"ricad\",\n  \"ricadevano\": \"ricad\",\n  \"ricadrebbe\": \"ricadrebb\",\n  \"ricaduto\": \"ricad\",\n  \"ricalcandone\": \"ricalc\",\n  \"ricalcare\": \"ricalc\",\n  \"ricalcitrante\": \"ricalcitr\",\n  \"ricalcitrare\": \"ricalcitr\",\n  \"ricalcitrato\": \"ricalcitr\",\n  \"ricambi\": \"ricamb\",\n  \"ricambio\": \"ricamb\",\n  \"ricami\": \"ricam\",\n  \"ricamo\": \"ricam\",\n  \"ricandidato\": \"ricandid\",\n  \"ricantar\": \"ricant\",\n  \"ricapitalizzare\": \"ricapitalizz\",\n  \"ricapitalizzazione\": \"ricapitalizz\",\n  \"ricapitare\": \"ricapit\",\n  \"ricapito\": \"ricap\",\n  \"ricapitolò\": \"ricapitol\",\n  \"ricarvarla\": \"ricarv\",\n  \"ricattarsi\": \"ricatt\",\n  \"ricatto\": \"ricatt\",\n  \"ricava\": \"ric\",\n  \"ricavar\": \"ricav\",\n  \"ricavare\": \"ricav\",\n  \"ricavato\": \"ricav\",\n  \"ricavava\": \"ricav\",\n  \"ricavi\": \"ric\",\n  \"ricca\": \"ricc\",\n  \"riccardo\": \"riccard\",\n  \"ricche\": \"ricc\",\n  \"ricchezza\": \"ricchezz\",\n  \"ricchezze\": \"ricchezz\",\n  \"ricchi\": \"ricc\",\n  \"ricchissimo\": \"ricchissim\",\n  \"ricci\": \"ricc\",\n  \"ricciardi\": \"ricciard\",\n  \"riccio\": \"ricc\",\n  \"riccione\": \"riccion\",\n  \"ricco\": \"ricc\",\n  \"ricentralizzazione\": \"ricentralizz\",\n  \"ricerca\": \"ricerc\",\n  \"ricercando\": \"ricerc\",\n  \"ricercare\": \"ricerc\",\n  \"ricercata\": \"ricerc\",\n  \"ricercate\": \"ricerc\",\n  \"ricercati\": \"ricerc\",\n  \"ricercato\": \"ricerc\",\n  \"ricercatori\": \"ricerc\",\n  \"ricerche\": \"ricerc\",\n  \"ricercò\": \"ricerc\",\n  \"ricettato\": \"ricett\",\n  \"ricettatore\": \"ricett\",\n  \"ricettazione\": \"ricett\",\n  \"ricette\": \"ricett\",\n  \"ricevano\": \"ric\",\n  \"riceve\": \"ricev\",\n  \"ricevé\": \"ricev\",\n  \"ricevemmo\": \"ricev\",\n  \"ricevendo\": \"ricev\",\n  \"ricevendone\": \"ricev\",\n  \"ricever\": \"ricever\",\n  \"riceverà\": \"ricev\",\n  \"riceveranno\": \"ricev\",\n  \"ricevere\": \"ricev\",\n  \"riceverla\": \"ricev\",\n  \"riceverle\": \"ricev\",\n  \"riceverli\": \"ricev\",\n  \"riceverlo\": \"ricev\",\n  \"ricevette\": \"ricevett\",\n  \"ricevettero\": \"ricevetter\",\n  \"riceveva\": \"ricev\",\n  \"ricevevano\": \"ricev\",\n  \"ricevimenti\": \"ricev\",\n  \"ricevimento\": \"ricev\",\n  \"ricevono\": \"ricev\",\n  \"ricevuta\": \"ricev\",\n  \"ricevute\": \"ricev\",\n  \"ricevuti\": \"ricev\",\n  \"ricevuto\": \"ricev\",\n  \"ricezione\": \"ricezion\",\n  \"richard\": \"richard\",\n  \"riche\": \"rich\",\n  \"richelieu\": \"richelieu\",\n  \"richeter\": \"richeter\",\n  \"richiama\": \"richiam\",\n  \"richiamando\": \"richiam\",\n  \"richiamandosi\": \"richiam\",\n  \"richiamano\": \"richiam\",\n  \"richiamare\": \"richiam\",\n  \"richiamarmi\": \"richiam\",\n  \"richiamarsi\": \"richiam\",\n  \"richiamata\": \"richiam\",\n  \"richiamati\": \"richiam\",\n  \"richiamato\": \"richiam\",\n  \"richiamatolo\": \"richiamatol\",\n  \"richiamava\": \"richiam\",\n  \"richiamavano\": \"richiam\",\n  \"richiamerebbe\": \"richiam\",\n  \"richiami\": \"richiam\",\n  \"richiamiamo\": \"richiam\",\n  \"richiamo\": \"rich\",\n  \"richiamò\": \"richiam\",\n  \"richiede\": \"richied\",\n  \"richiedendo\": \"richied\",\n  \"richieder\": \"richieder\",\n  \"richiedere\": \"richied\",\n  \"richiedergli\": \"richied\",\n  \"richiederlo\": \"richied\",\n  \"richiedesse\": \"richiedess\",\n  \"richiedessero\": \"richied\",\n  \"richiedeva\": \"richied\",\n  \"richiedevano\": \"richied\",\n  \"richiedon\": \"richiedon\",\n  \"richiedono\": \"richied\",\n  \"richiese\": \"richies\",\n  \"richiesta\": \"richiest\",\n  \"richieste\": \"richiest\",\n  \"richiesti\": \"richiest\",\n  \"richiesto\": \"richiest\",\n  \"richiudere\": \"richiud\",\n  \"richiudeva\": \"richiud\",\n  \"richiusa\": \"richius\",\n  \"richiuse\": \"richius\",\n  \"richter\": \"richter\",\n  \"riciclaggio\": \"riciclagg\",\n  \"ricilaggio\": \"ricilagg\",\n  \"riciliù\": \"riciliù\",\n  \"rick\": \"rick\",\n  \"ricognitrice\": \"ricognitr\",\n  \"ricognizione\": \"ricognizion\",\n  \"ricognizioni\": \"ricognizion\",\n  \"ricognizone\": \"ricognizon\",\n  \"ricollegare\": \"ricolleg\",\n  \"ricolmò\": \"ricolm\",\n  \"ricomincerà\": \"ricominc\",\n  \"ricomincerebbe\": \"ricominc\",\n  \"ricomincia\": \"ricominc\",\n  \"ricominciando\": \"ricominc\",\n  \"ricominciar\": \"ricominc\",\n  \"ricominciarono\": \"ricominc\",\n  \"ricominciato\": \"ricominc\",\n  \"ricominciava\": \"ricominc\",\n  \"ricominciò\": \"ricominc\",\n  \"ricomparendo\": \"ricompar\",\n  \"ricomparire\": \"ricompar\",\n  \"ricomparirvi\": \"ricompar\",\n  \"ricompariva\": \"ricompar\",\n  \"ricomparve\": \"ricomparv\",\n  \"ricomparvero\": \"ricomparver\",\n  \"ricompensa\": \"ricompens\",\n  \"ricompensare\": \"ricompens\",\n  \"ricompenserà\": \"ricompens\",\n  \"ricompensi\": \"ricompens\",\n  \"ricompone\": \"ricompon\",\n  \"ricomponeva\": \"ricompon\",\n  \"ricomporre\": \"ricomporr\",\n  \"ricomposizione\": \"ricomposizion\",\n  \"ricomposte\": \"ricompost\",\n  \"ricomposto\": \"ricompost\",\n  \"ricompriamo\": \"ricompr\",\n  \"riconcilia\": \"riconcil\",\n  \"riconciliar\": \"riconcil\",\n  \"riconciliazione\": \"riconcil\",\n  \"ricondotta\": \"ricondott\",\n  \"riconducendo\": \"riconduc\",\n  \"ricondur\": \"ricondur\",\n  \"ricondurre\": \"ricondurr\",\n  \"riconfermato\": \"riconferm\",\n  \"riconfortati\": \"riconfort\",\n  \"riconobbe\": \"riconobb\",\n  \"riconosca\": \"riconosc\",\n  \"riconosce\": \"riconosc\",\n  \"riconoscendo\": \"riconosc\",\n  \"riconoscendosi\": \"riconosc\",\n  \"riconoscente\": \"riconoscent\",\n  \"riconoscenza\": \"riconoscent\",\n  \"riconoscere\": \"riconosc\",\n  \"riconoscerla\": \"riconosc\",\n  \"riconoscerli\": \"riconosc\",\n  \"riconoscerne\": \"riconosc\",\n  \"riconoscersi\": \"riconosc\",\n  \"riconoscesse\": \"riconoscess\",\n  \"riconoscessero\": \"riconosc\",\n  \"riconosceva\": \"riconosc\",\n  \"riconosci\": \"riconosc\",\n  \"riconosciate\": \"riconosc\",\n  \"riconoscimento\": \"riconosc\",\n  \"riconosciuta\": \"riconosc\",\n  \"riconosciute\": \"riconosc\",\n  \"riconosciuti\": \"riconosc\",\n  \"riconosciuto\": \"riconosc\",\n  \"riconosco\": \"riconosc\",\n  \"riconoscono\": \"riconosc\",\n  \"riconquista\": \"riconqu\",\n  \"riconquistato\": \"riconquist\",\n  \"riconscibili\": \"riconsc\",\n  \"riconsegnarla\": \"riconsegn\",\n  \"riconversione\": \"riconversion\",\n  \"riconvocare\": \"riconvoc\",\n  \"ricoperta\": \"ricopert\",\n  \"ricoperte\": \"ricopert\",\n  \"ricoperti\": \"ricop\",\n  \"ricoperto\": \"ricopert\",\n  \"ricopre\": \"ricopr\",\n  \"ricoprendo\": \"ricopr\",\n  \"ricoprire\": \"ricopr\",\n  \"ricopriva\": \"ricopr\",\n  \"ricopro\": \"ricopr\",\n  \"ricoprono\": \"ricopr\",\n  \"ricorda\": \"ricord\",\n  \"ricordalo\": \"ricordal\",\n  \"ricordan\": \"ricordan\",\n  \"ricordando\": \"ricord\",\n  \"ricordano\": \"ricord\",\n  \"ricordare\": \"ricord\",\n  \"ricordarlo\": \"ricord\",\n  \"ricordarsi\": \"ricord\",\n  \"ricordata\": \"ricord\",\n  \"ricordate\": \"ricord\",\n  \"ricordatevelo\": \"ricordatevel\",\n  \"ricordatevi\": \"ricordat\",\n  \"ricordati\": \"ricord\",\n  \"ricordato\": \"ricord\",\n  \"ricordava\": \"ricord\",\n  \"ricordavan\": \"ricordavan\",\n  \"ricordavano\": \"ricord\",\n  \"ricorderà\": \"ricord\",\n  \"ricorderanno\": \"ricord\",\n  \"ricorderesti\": \"ricord\",\n  \"ricorderete\": \"ricord\",\n  \"ricordi\": \"ricord\",\n  \"ricordiamo\": \"ricord\",\n  \"ricordino\": \"ricordin\",\n  \"ricordo\": \"ricord\",\n  \"ricordò\": \"ricord\",\n  \"ricorra\": \"ricorr\",\n  \"ricorre\": \"ricorr\",\n  \"ricorreggere\": \"ricorregg\",\n  \"ricorrendo\": \"ricorr\",\n  \"ricorrenti\": \"ricorrent\",\n  \"ricorrenza\": \"ricorrent\",\n  \"ricorrer\": \"ricorrer\",\n  \"ricorrerà\": \"ricorr\",\n  \"ricorrere\": \"ricorr\",\n  \"ricorreva\": \"ricorr\",\n  \"ricorrevano\": \"ricorr\",\n  \"ricorrono\": \"ricorr\",\n  \"ricorse\": \"ricors\",\n  \"ricorsi\": \"ricors\",\n  \"ricorso\": \"ricors\",\n  \"ricostituire\": \"ricostitu\",\n  \"ricostituzione\": \"ricostitu\",\n  \"ricostruire\": \"ricostru\",\n  \"ricostruirla\": \"ricostru\",\n  \"ricostruzione\": \"ricostru\",\n  \"ricoverarci\": \"ricover\",\n  \"ricoverare\": \"ricover\",\n  \"ricoverarlo\": \"ricover\",\n  \"ricoverarono\": \"ricover\",\n  \"ricoverarsi\": \"ricover\",\n  \"ricoverarvi\": \"ricover\",\n  \"ricoverata\": \"ricover\",\n  \"ricoverate\": \"ricover\",\n  \"ricoverati\": \"ricover\",\n  \"ricoverato\": \"ricover\",\n  \"ricovero\": \"ricover\",\n  \"ricrea\": \"ricre\",\n  \"ricreano\": \"ricr\",\n  \"ricreare\": \"ricr\",\n  \"ricrearsi\": \"ricr\",\n  \"ricucire\": \"ricuc\",\n  \"ricucito\": \"ricuc\",\n  \"ricuperare\": \"ricuper\",\n  \"ricuperata\": \"ricuper\",\n  \"ricupero\": \"ricuper\",\n  \"ricurvo\": \"ricurv\",\n  \"ricusando\": \"ricus\",\n  \"ricusano\": \"ricus\",\n  \"ricusasse\": \"ricus\",\n  \"ricusava\": \"ricus\",\n  \"ricusino\": \"ricusin\",\n  \"ricusò\": \"ricus\",\n  \"ridar\": \"rid\",\n  \"ridare\": \"rid\",\n  \"ridato\": \"rid\",\n  \"ride\": \"rid\",\n  \"ridefinirne\": \"ridefin\",\n  \"ridefinita\": \"ridefin\",\n  \"ridefinizione\": \"ridefinizion\",\n  \"ridendo\": \"rid\",\n  \"ridente\": \"rident\",\n  \"ridenti\": \"rident\",\n  \"rider\": \"rider\",\n  \"ridere\": \"rid\",\n  \"riderei\": \"rid\",\n  \"ridersene\": \"rid\",\n  \"ridersi\": \"rid\",\n  \"ridesse\": \"ridess\",\n  \"ridesta\": \"ridest\",\n  \"ridestato\": \"ridest\",\n  \"ridestavano\": \"ridest\",\n  \"rideva\": \"rid\",\n  \"ridevano\": \"rid\",\n  \"ridge\": \"ridg\",\n  \"ridia\": \"rid\",\n  \"ridice\": \"ridic\",\n  \"ridicola\": \"ridicol\",\n  \"ridicoli\": \"ridicol\",\n  \"ridicolizzare\": \"ridicolizz\",\n  \"ridicolo\": \"ridicol\",\n  \"ridimensionamenti\": \"ridimension\",\n  \"ridimensionamento\": \"ridimension\",\n  \"ridimensionare\": \"ridimension\",\n  \"ridimensionati\": \"ridimension\",\n  \"ridimensionato\": \"ridimension\",\n  \"ridir\": \"rid\",\n  \"ridire\": \"rid\",\n  \"ridiscuta\": \"ridisc\",\n  \"ridisegnare\": \"ridisegn\",\n  \"ridisegnati\": \"ridisegn\",\n  \"ridispiegamentò\": \"ridispiegament\",\n  \"ridiventare\": \"ridivent\",\n  \"rido\": \"rid\",\n  \"ridonasse\": \"ridon\",\n  \"ridono\": \"rid\",\n  \"ridosso\": \"ridoss\",\n  \"ridotta\": \"ridott\",\n  \"ridotte\": \"ridott\",\n  \"ridotti\": \"ridott\",\n  \"ridotto\": \"ridott\",\n  \"riduce\": \"riduc\",\n  \"riducendo\": \"riduc\",\n  \"riducendola\": \"riduc\",\n  \"riducono\": \"riduc\",\n  \"ridurci\": \"ridurc\",\n  \"ridurgli\": \"ridurgl\",\n  \"ridurli\": \"ridurl\",\n  \"ridurlo\": \"ridurl\",\n  \"ridurre\": \"ridurr\",\n  \"ridurrebbe\": \"ridurrebb\",\n  \"ridusse\": \"riduss\",\n  \"riduzione\": \"riduzion\",\n  \"riduzioni\": \"riduzion\",\n  \"riebbe\": \"riebb\",\n  \"rieccitando\": \"rieccit\",\n  \"riecheggia\": \"riechegg\",\n  \"riedizione\": \"riedizion\",\n  \"rieducativa\": \"rieduc\",\n  \"riefensthal\": \"riefensthal\",\n  \"rielaborati\": \"rielabor\",\n  \"rieletti\": \"rielett\",\n  \"riello\": \"riell\",\n  \"riempì\": \"riemp\",\n  \"riempie\": \"riemp\",\n  \"riempiendo\": \"riemp\",\n  \"riempiono\": \"riemp\",\n  \"riempirli\": \"riemp\",\n  \"riempiron\": \"riempiron\",\n  \"riempirsi\": \"riemp\",\n  \"riempitane\": \"riempitan\",\n  \"riempito\": \"riemp\",\n  \"riempivano\": \"riemp\",\n  \"rientra\": \"rientr\",\n  \"rientrano\": \"rientr\",\n  \"rientrante\": \"rientrant\",\n  \"rientrare\": \"rientr\",\n  \"rientrata\": \"rientr\",\n  \"rientrato\": \"rientr\",\n  \"rientrerà\": \"rientr\",\n  \"rientreranno\": \"rientr\",\n  \"rientrerebbero\": \"rientr\",\n  \"rientri\": \"rientr\",\n  \"rientrino\": \"rientrin\",\n  \"rientro\": \"rientr\",\n  \"rientrò\": \"rientr\",\n  \"riequilibrando\": \"riequilibr\",\n  \"riequilibrio\": \"riequilibr\",\n  \"riesame\": \"riesam\",\n  \"riesami\": \"riesam\",\n  \"riesaminata\": \"riesamin\",\n  \"riesca\": \"riesc\",\n  \"riescan\": \"riescan\",\n  \"riesce\": \"riesc\",\n  \"riesci\": \"riesc\",\n  \"riesco\": \"riesc\",\n  \"riesumazione\": \"riesum\",\n  \"rieter\": \"rieter\",\n  \"rieti\": \"riet\",\n  \"rietrano\": \"rietr\",\n  \"rievocare\": \"rievoc\",\n  \"rievocato\": \"rievoc\",\n  \"rievocazione\": \"rievoc\",\n  \"rif\": \"rif\",\n  \"rifà\": \"rif\",\n  \"rifacendo\": \"rifac\",\n  \"rifar\": \"rif\",\n  \"rifarà\": \"rifar\",\n  \"rifare\": \"rif\",\n  \"rifarle\": \"rif\",\n  \"rifarne\": \"rif\",\n  \"rifarsi\": \"rif\",\n  \"rifatti\": \"rifatt\",\n  \"rifatto\": \"rifatt\",\n  \"riferendo\": \"rifer\",\n  \"riferendosi\": \"rifer\",\n  \"riferì\": \"rifer\",\n  \"riferimenti\": \"rifer\",\n  \"riferimento\": \"rifer\",\n  \"riferir\": \"rifer\",\n  \"riferire\": \"rifer\",\n  \"riferiremo\": \"rifer\",\n  \"riferirli\": \"rifer\",\n  \"riferirlo\": \"rifer\",\n  \"riferirò\": \"rifer\",\n  \"riferisca\": \"rifer\",\n  \"riferisce\": \"rifer\",\n  \"riferisco\": \"rifer\",\n  \"riferiscono\": \"rifer\",\n  \"riferita\": \"rifer\",\n  \"riferite\": \"rifer\",\n  \"riferiti\": \"rifer\",\n  \"riferito\": \"rifer\",\n  \"riferiva\": \"rifer\",\n  \"rifiatare\": \"rifiat\",\n  \"rifinanziata\": \"rifinanz\",\n  \"rifinanziato\": \"rifinanz\",\n  \"rifinito\": \"rifin\",\n  \"rifiuta\": \"rif\",\n  \"rifiutando\": \"rifiut\",\n  \"rifiutano\": \"rifiut\",\n  \"rifiutar\": \"rifiut\",\n  \"rifiutare\": \"rifiut\",\n  \"rifiutaste\": \"rifiutast\",\n  \"rifiutate\": \"rifiut\",\n  \"rifiutati\": \"rifiut\",\n  \"rifiutato\": \"rifiut\",\n  \"rifiutava\": \"rifiut\",\n  \"rifiuti\": \"rif\",\n  \"rifiutiamo\": \"rifiut\",\n  \"rifiuto\": \"rif\",\n  \"rifiutò\": \"rifiut\",\n  \"riflessi\": \"rifless\",\n  \"riflessione\": \"riflession\",\n  \"riflessioni\": \"riflession\",\n  \"riflessività\": \"rifless\",\n  \"riflesso\": \"rifless\",\n  \"riflette\": \"riflett\",\n  \"riflettendo\": \"riflett\",\n  \"riflettere\": \"riflett\",\n  \"rifletterò\": \"riflett\",\n  \"riflettersi\": \"riflett\",\n  \"rifletteva\": \"riflett\",\n  \"riflettono\": \"riflett\",\n  \"riflettori\": \"riflettor\",\n  \"rifondazione\": \"rifond\",\n  \"riforma\": \"riform\",\n  \"riformare\": \"riform\",\n  \"riformata\": \"riform\",\n  \"riformato\": \"riform\",\n  \"riformatore\": \"riform\",\n  \"riformatori\": \"riform\",\n  \"riformatrici\": \"riform\",\n  \"riforme\": \"riform\",\n  \"riformismo\": \"riform\",\n  \"rifornire\": \"riforn\",\n  \"rifuggì\": \"rifugg\",\n  \"rifugiare\": \"rifug\",\n  \"rifugiarsi\": \"rifug\",\n  \"rifugiassero\": \"rifug\",\n  \"rifugiata\": \"rifug\",\n  \"rifugiati\": \"rifug\",\n  \"rifugiativisi\": \"rifugiativis\",\n  \"rifugiato\": \"rifug\",\n  \"rifugiava\": \"rifug\",\n  \"rifugiavano\": \"rifug\",\n  \"rifugino\": \"rifugin\",\n  \"rifugio\": \"rifug\",\n  \"riga\": \"rig\",\n  \"rigagnoli\": \"rigagnol\",\n  \"rigagnolo\": \"rigagnol\",\n  \"rigar\": \"rig\",\n  \"rigaurda\": \"rigaurd\",\n  \"rigettando\": \"rigett\",\n  \"rigetto\": \"rigett\",\n  \"rigettò\": \"rigett\",\n  \"righe\": \"righ\",\n  \"rights\": \"rights\",\n  \"rigida\": \"rigid\",\n  \"rigidamente\": \"rigid\",\n  \"rigide\": \"rigid\",\n  \"rigidi\": \"rigid\",\n  \"rigidità\": \"rigid\",\n  \"rigido\": \"rigid\",\n  \"rigira\": \"rigir\",\n  \"rigirato\": \"rigir\",\n  \"rigiri\": \"rigir\",\n  \"rigirìo\": \"rigirì\",\n  \"rigogliosa\": \"rigogl\",\n  \"rigogliose\": \"rigogl\",\n  \"rigoglioso\": \"rigogl\",\n  \"rigor\": \"rigor\",\n  \"rigore\": \"rigor\",\n  \"rigorosa\": \"rigor\",\n  \"rigorosamente\": \"rigor\",\n  \"rigorosi\": \"rigor\",\n  \"rigoroso\": \"rigor\",\n  \"rigovernare\": \"rigovern\",\n  \"rigridando\": \"rigrid\",\n  \"riguadagnar\": \"riguadagn\",\n  \"riguarda\": \"riguard\",\n  \"riguardano\": \"riguard\",\n  \"riguardante\": \"riguard\",\n  \"riguardanti\": \"riguard\",\n  \"riguardar\": \"riguard\",\n  \"riguardarsi\": \"riguard\",\n  \"riguardasse\": \"riguard\",\n  \"riguardata\": \"riguard\",\n  \"riguardato\": \"riguard\",\n  \"riguardava\": \"riguard\",\n  \"riguardavan\": \"riguardavan\",\n  \"riguardavano\": \"riguard\",\n  \"riguardavate\": \"riguard\",\n  \"riguarderà\": \"riguard\",\n  \"riguarderanno\": \"riguard\",\n  \"riguardi\": \"riguard\",\n  \"riguardo\": \"riguard\",\n  \"riker\": \"riker\",\n  \"rilanci\": \"rilanc\",\n  \"rilancia\": \"rilanc\",\n  \"rilanciano\": \"rilanc\",\n  \"rilanciare\": \"rilanc\",\n  \"rilanciata\": \"rilanc\",\n  \"rilancio\": \"rilanc\",\n  \"rilasciamento\": \"rilasc\",\n  \"rilasciando\": \"rilasc\",\n  \"rilasciare\": \"rilasc\",\n  \"rilasciarlo\": \"rilasc\",\n  \"rilasciaron\": \"rilasciaron\",\n  \"rilasciarvi\": \"rilasc\",\n  \"rilasciasse\": \"rilasc\",\n  \"rilasciata\": \"rilasc\",\n  \"rilasciate\": \"rilasc\",\n  \"rilasciati\": \"rilasc\",\n  \"rilasciato\": \"rilasc\",\n  \"rilascio\": \"rilasc\",\n  \"rilassato\": \"rilass\",\n  \"rilazo\": \"rilaz\",\n  \"rileggere\": \"rilegg\",\n  \"rilegittimazione\": \"rilegittim\",\n  \"rilento\": \"rilent\",\n  \"rilesse\": \"riless\",\n  \"rileva\": \"ril\",\n  \"rilevando\": \"rilev\",\n  \"rilevante\": \"rilev\",\n  \"rilevanti\": \"rilev\",\n  \"rilevar\": \"rilev\",\n  \"rilevare\": \"rilev\",\n  \"rilevata\": \"rilev\",\n  \"rilevate\": \"ril\",\n  \"rilevati\": \"rilev\",\n  \"rilevato\": \"rilev\",\n  \"rilevazione\": \"rilev\",\n  \"rilievo\": \"ril\",\n  \"rilisciarsi\": \"rilisc\",\n  \"rilla\": \"rill\",\n  \"riluttanza\": \"rilutt\",\n  \"rima\": \"rim\",\n  \"riman\": \"riman\",\n  \"rimandando\": \"rimand\",\n  \"rimandarlo\": \"rimand\",\n  \"rimandato\": \"rimand\",\n  \"rimanderebbe\": \"rimand\",\n  \"rimane\": \"riman\",\n  \"rimaneggiate\": \"rimanegg\",\n  \"rimanendo\": \"riman\",\n  \"rimanenete\": \"rimanen\",\n  \"rimanente\": \"rimanent\",\n  \"rimanenti\": \"rimanent\",\n  \"rimaner\": \"rimaner\",\n  \"rimanere\": \"riman\",\n  \"rimanersi\": \"riman\",\n  \"rimanervi\": \"riman\",\n  \"rimanesse\": \"rimaness\",\n  \"rimanessero\": \"riman\",\n  \"rimaneva\": \"riman\",\n  \"rimanevano\": \"riman\",\n  \"rimanga\": \"rimang\",\n  \"rimango\": \"rimang\",\n  \"rimangon\": \"rimangon\",\n  \"rimangono\": \"rimang\",\n  \"rimaranno\": \"rimarann\",\n  \"rimarca\": \"rimarc\",\n  \"rimarchevole\": \"rimarchevol\",\n  \"rimarrà\": \"rimarr\",\n  \"rimarranno\": \"rimarrann\",\n  \"rimarrebbe\": \"rimarrebb\",\n  \"rimarrei\": \"rimarre\",\n  \"rimase\": \"rimas\",\n  \"rimaser\": \"rimaser\",\n  \"rimasero\": \"rimaser\",\n  \"rimasta\": \"rimast\",\n  \"rimaste\": \"rimast\",\n  \"rimasti\": \"rimast\",\n  \"rimasticava\": \"rimastic\",\n  \"rimasto\": \"rimast\",\n  \"rimasugli\": \"rimasugl\",\n  \"rimasuglio\": \"rimasugl\",\n  \"rimbalzata\": \"rimbalz\",\n  \"rimbalzello\": \"rimbalzell\",\n  \"rimbambito\": \"rimbamb\",\n  \"rimbecillivano\": \"rimbecill\",\n  \"rimboccatura\": \"rimboccatur\",\n  \"rimbomba\": \"rimbomb\",\n  \"rimbombando\": \"rimbomb\",\n  \"rimbombar\": \"rimbomb\",\n  \"rimbombare\": \"rimbomb\",\n  \"rimbombo\": \"rimbomb\",\n  \"rimborsati\": \"rimbors\",\n  \"rimborsi\": \"rimbors\",\n  \"rimborso\": \"rimbors\",\n  \"rimbuca\": \"rimbuc\",\n  \"rimedi\": \"rimed\",\n  \"rimediare\": \"rimed\",\n  \"rimedii\": \"rimed\",\n  \"rimedio\": \"rimed\",\n  \"rimembranza\": \"rimembr\",\n  \"rimembranze\": \"rimembr\",\n  \"rimenare\": \"rimen\",\n  \"rimepire\": \"rimep\",\n  \"rimescendo\": \"rimesc\",\n  \"rimescolandole\": \"rimescol\",\n  \"rimescolare\": \"rimescol\",\n  \"rimescolarsi\": \"rimescol\",\n  \"rimessa\": \"rimess\",\n  \"rimessasi\": \"rimessas\",\n  \"rimesse\": \"rimess\",\n  \"rimessi\": \"rimess\",\n  \"rimessiticci\": \"rimessiticc\",\n  \"rimesso\": \"rimess\",\n  \"rimestar\": \"rimest\",\n  \"rimestare\": \"rimest\",\n  \"rimestarle\": \"rimest\",\n  \"rimesti\": \"rimest\",\n  \"rimetta\": \"rimett\",\n  \"rimette\": \"rimett\",\n  \"rimettendo\": \"rimett\",\n  \"rimettendosi\": \"rimett\",\n  \"rimetterci\": \"rimett\",\n  \"rimettere\": \"rimett\",\n  \"rimetterebbe\": \"rimett\",\n  \"rimetterle\": \"rimett\",\n  \"rimetterlo\": \"rimett\",\n  \"rimettermi\": \"rimett\",\n  \"rimettersi\": \"rimett\",\n  \"rimettervene\": \"rimett\",\n  \"rimettesse\": \"rimettess\",\n  \"rimettetevi\": \"rimettet\",\n  \"rimetteva\": \"rimett\",\n  \"rimettiamola\": \"rimettiamol\",\n  \"rimettono\": \"rimett\",\n  \"rimini\": \"rimin\",\n  \"rimischiavano\": \"rimisc\",\n  \"rimise\": \"rimis\",\n  \"rimmel\": \"rimmel\",\n  \"rimodellato\": \"rimodell\",\n  \"rimondi\": \"rimond\",\n  \"rimontare\": \"rimont\",\n  \"rimorchiatori\": \"rimorc\",\n  \"rimordendogli\": \"rimord\",\n  \"rimorsi\": \"rimors\",\n  \"rimorso\": \"rimors\",\n  \"rimosse\": \"rimoss\",\n  \"rimossi\": \"rimoss\",\n  \"rimosso\": \"rimoss\",\n  \"rimostranza\": \"rimostr\",\n  \"rimostranze\": \"rimostr\",\n  \"rimpallato\": \"rimpall\",\n  \"rimpatriata\": \"rimpatr\",\n  \"rimpatrio\": \"rimpatr\",\n  \"rimpetto\": \"rimpett\",\n  \"rimpiango\": \"rimpiang\",\n  \"rimpiatta\": \"rimpiatt\",\n  \"rimpiattando\": \"rimpiatt\",\n  \"rimpiattato\": \"rimpiatt\",\n  \"rimpiazzato\": \"rimpiazz\",\n  \"rimpingua\": \"rimpingu\",\n  \"rimprovera\": \"rimprover\",\n  \"rimproverare\": \"rimprover\",\n  \"rimproverate\": \"rimprover\",\n  \"rimproveratemi\": \"rimproveratem\",\n  \"rimproverato\": \"rimprover\",\n  \"rimproveri\": \"rimprover\",\n  \"rimprovero\": \"rimprover\",\n  \"rimuovendo\": \"rimuov\",\n  \"rimuoverle\": \"rimuov\",\n  \"rin\": \"rin\",\n  \"rinaldo\": \"rinald\",\n  \"rinasce\": \"rinasc\",\n  \"rinascente\": \"rinascent\",\n  \"rinascenti\": \"rinascent\",\n  \"rinascere\": \"rinasc\",\n  \"rinascesse\": \"rinascess\",\n  \"rinasceva\": \"rinasc\",\n  \"rinascimento\": \"rinasc\",\n  \"rinascita\": \"rinasc\",\n  \"rincamminandosi\": \"rincammin\",\n  \"rincamminarono\": \"rincammin\",\n  \"rincamminarsi\": \"rincammin\",\n  \"rincamminino\": \"rincamminin\",\n  \"rincamminò\": \"rincammin\",\n  \"rincantucciata\": \"rincantucc\",\n  \"rincantucciato\": \"rincantucc\",\n  \"rincarare\": \"rincar\",\n  \"rincari\": \"rincar\",\n  \"rincaro\": \"rincar\",\n  \"rinchiusa\": \"rinchius\",\n  \"rinchiuse\": \"rinchius\",\n  \"rinchiusi\": \"rinchius\",\n  \"rinchiuso\": \"rinchius\",\n  \"rincivilito\": \"rincivil\",\n  \"rincomincia\": \"rincominc\",\n  \"rincon\": \"rincon\",\n  \"rincoraggita\": \"rincoragg\",\n  \"rincorare\": \"rincor\",\n  \"rincorato\": \"rincor\",\n  \"rincorò\": \"rincor\",\n  \"rincorrono\": \"rincorr\",\n  \"rincorsa\": \"rincors\",\n  \"rincorse\": \"rincors\",\n  \"rinfaccia\": \"rinfacc\",\n  \"rinfacciamenti\": \"rinfacc\",\n  \"rinforzar\": \"rinforz\",\n  \"rinforzare\": \"rinforz\",\n  \"rinforzate\": \"rinforz\",\n  \"rinforzi\": \"rinforz\",\n  \"rinforzo\": \"rinforz\",\n  \"rinfrancare\": \"rinfranc\",\n  \"rinfrancata\": \"rinfranc\",\n  \"rinfrancato\": \"rinfranc\",\n  \"rinfrescare\": \"rinfresc\",\n  \"rinfrescata\": \"rinfresc\",\n  \"rinfrescato\": \"rinfresc\",\n  \"rinfreschi\": \"rinfresc\",\n  \"rinfusa\": \"rinfus\",\n  \"rinfuse\": \"rinfus\",\n  \"ring\": \"ring\",\n  \"ringalluzziti\": \"ringalluzz\",\n  \"ringiovanito\": \"ringiovan\",\n  \"ringiovinire\": \"ringiovin\",\n  \"ringrazi\": \"ringraz\",\n  \"ringrazia\": \"ringraz\",\n  \"ringraziamenti\": \"ringraz\",\n  \"ringraziamento\": \"ringraz\",\n  \"ringraziamo\": \"ringraz\",\n  \"ringraziando\": \"ringraz\",\n  \"ringraziandolo\": \"ringraz\",\n  \"ringraziandosi\": \"ringraz\",\n  \"ringraziar\": \"ringraz\",\n  \"ringraziare\": \"ringraz\",\n  \"ringraziarla\": \"ringraz\",\n  \"ringraziarlo\": \"ringraz\",\n  \"ringraziate\": \"ringraz\",\n  \"ringraziato\": \"ringraz\",\n  \"ringraziava\": \"ringraz\",\n  \"ringrazio\": \"ringraz\",\n  \"ringraziò\": \"ringraz\",\n  \"rinino\": \"rinin\",\n  \"rinnegare\": \"rinneg\",\n  \"rinnegato\": \"rinneg\",\n  \"rinnova\": \"rinnov\",\n  \"rinnovabili\": \"rinnov\",\n  \"rinnovamento\": \"rinnov\",\n  \"rinnovano\": \"rinnov\",\n  \"rinnovare\": \"rinnov\",\n  \"rinnovarlo\": \"rinnov\",\n  \"rinnovarono\": \"rinnov\",\n  \"rinnovarsi\": \"rinnov\",\n  \"rinnovata\": \"rinnov\",\n  \"rinnovati\": \"rinnov\",\n  \"rinnovato\": \"rinnov\",\n  \"rinnovava\": \"rinnov\",\n  \"rinnovavano\": \"rinnov\",\n  \"rinnovo\": \"rinnov\",\n  \"rinnovò\": \"rinnov\",\n  \"rino\": \"rin\",\n  \"rinomanza\": \"rinom\",\n  \"rintanarsi\": \"rintan\",\n  \"rintanato\": \"rintan\",\n  \"rintocchi\": \"rintocc\",\n  \"rintoppasse\": \"rintopp\",\n  \"rintraccia\": \"rintracc\",\n  \"rintracciare\": \"rintracc\",\n  \"rintracciato\": \"rintracc\",\n  \"rintrona\": \"rintron\",\n  \"rintuzzare\": \"rintuzz\",\n  \"rinuncia\": \"rinunc\",\n  \"rinunciando\": \"rinunc\",\n  \"rinunciare\": \"rinunc\",\n  \"rinunciato\": \"rinunc\",\n  \"rinunciava\": \"rinunc\",\n  \"rinunziare\": \"rinunz\",\n  \"rinunziato\": \"rinunz\",\n  \"rinunzio\": \"rinunz\",\n  \"rinvenire\": \"rinven\",\n  \"rinvenne\": \"rinvenn\",\n  \"rinvenuta\": \"rinven\",\n  \"rinvenuto\": \"rinven\",\n  \"rinverdiranno\": \"rinverd\",\n  \"rinverdire\": \"rinverd\",\n  \"rinverdite\": \"rinverd\",\n  \"rinviare\": \"rinv\",\n  \"rinviata\": \"rinv\",\n  \"rinviati\": \"rinv\",\n  \"rinviato\": \"rinv\",\n  \"rinvigorisce\": \"rinvigor\",\n  \"rinvigorita\": \"rinvigor\",\n  \"rinvii\": \"rinv\",\n  \"rinviliare\": \"rinvil\",\n  \"rinvio\": \"rinv\",\n  \"rinvoltati\": \"rinvolt\",\n  \"rio\": \"rio\",\n  \"riofferti\": \"rioff\",\n  \"riondino\": \"riondin\",\n  \"riordino\": \"riordin\",\n  \"riorganizzare\": \"riorganizz\",\n  \"riorganizzazione\": \"riorganizz\",\n  \"ripa\": \"rip\",\n  \"ripaga\": \"ripag\",\n  \"ripam\": \"ripam\",\n  \"ripamonti\": \"ripamont\",\n  \"ripamontii\": \"ripamont\",\n  \"ripara\": \"ripar\",\n  \"riparabile\": \"ripar\",\n  \"riparabili\": \"ripar\",\n  \"riparar\": \"ripar\",\n  \"riparare\": \"ripar\",\n  \"ripararsi\": \"ripar\",\n  \"riparati\": \"ripar\",\n  \"riparato\": \"ripar\",\n  \"riparazione\": \"ripar\",\n  \"riparazioni\": \"ripar\",\n  \"riparerà\": \"ripar\",\n  \"ripari\": \"ripar\",\n  \"riparlava\": \"riparl\",\n  \"riparo\": \"ripar\",\n  \"riparte\": \"ripart\",\n  \"ripartendo\": \"ripart\",\n  \"ripartimentale\": \"ripartimental\",\n  \"ripartirà\": \"ripart\",\n  \"ripartire\": \"ripart\",\n  \"ripartirono\": \"ripart\",\n  \"ripartiti\": \"ripart\",\n  \"ripartito\": \"ripart\",\n  \"ripartizione\": \"ripartizion\",\n  \"ripassando\": \"ripass\",\n  \"ripassavano\": \"ripass\",\n  \"ripasso\": \"ripass\",\n  \"ripassò\": \"ripass\",\n  \"ripensa\": \"ripens\",\n  \"ripensamento\": \"ripens\",\n  \"ripensando\": \"ripens\",\n  \"ripensarne\": \"ripens\",\n  \"ripensava\": \"ripens\",\n  \"ripentimenti\": \"ripent\",\n  \"ripercorso\": \"ripercors\",\n  \"ripercuotersi\": \"ripercuot\",\n  \"ripercussioni\": \"ripercussion\",\n  \"riperdere\": \"riperd\",\n  \"ripescherebbero\": \"ripesc\",\n  \"ripete\": \"rip\",\n  \"ripeté\": \"ripet\",\n  \"ripetendo\": \"ripet\",\n  \"ripeter\": \"ripeter\",\n  \"ripetere\": \"ripet\",\n  \"ripeteremo\": \"ripet\",\n  \"ripetergli\": \"ripet\",\n  \"ripeterle\": \"ripet\",\n  \"ripeteron\": \"ripeteron\",\n  \"ripetersi\": \"ripet\",\n  \"ripeteva\": \"ripet\",\n  \"ripetevan\": \"ripetevan\",\n  \"ripetevano\": \"ripet\",\n  \"ripetizione\": \"ripetizion\",\n  \"ripeto\": \"ripet\",\n  \"ripetono\": \"ripet\",\n  \"ripetuta\": \"ripet\",\n  \"ripetutamente\": \"ripetut\",\n  \"ripetute\": \"ripet\",\n  \"ripetuti\": \"ripet\",\n  \"ripetuto\": \"ripet\",\n  \"ripiano\": \"rip\",\n  \"ripiantano\": \"ripiant\",\n  \"ripicchia\": \"ripicc\",\n  \"ripide\": \"ripid\",\n  \"ripidi\": \"ripid\",\n  \"ripiegati\": \"ripieg\",\n  \"ripiegava\": \"ripieg\",\n  \"ripieghi\": \"ripieg\",\n  \"ripiego\": \"ripieg\",\n  \"ripieni\": \"ripien\",\n  \"ripieno\": \"ripien\",\n  \"ripigia\": \"ripig\",\n  \"ripigliar\": \"ripigl\",\n  \"ripigliava\": \"ripigl\",\n  \"ripigliò\": \"ripigl\",\n  \"ripiombò\": \"ripiomb\",\n  \"riponendole\": \"ripon\",\n  \"riponeteli\": \"riponetel\",\n  \"riponeva\": \"ripon\",\n  \"ripongo\": \"ripong\",\n  \"riporlo\": \"riporl\",\n  \"riporre\": \"riporr\",\n  \"riporta\": \"riport\",\n  \"riportando\": \"riport\",\n  \"riportano\": \"riport\",\n  \"riportare\": \"riport\",\n  \"riportarli\": \"riport\",\n  \"riportarlo\": \"riport\",\n  \"riportarono\": \"riport\",\n  \"riportata\": \"riport\",\n  \"riportate\": \"riport\",\n  \"riportati\": \"riport\",\n  \"riportato\": \"riport\",\n  \"riporterà\": \"riport\",\n  \"riportò\": \"riport\",\n  \"riposa\": \"ripos\",\n  \"riposar\": \"ripos\",\n  \"riposare\": \"ripos\",\n  \"riposarlo\": \"ripos\",\n  \"riposarono\": \"ripos\",\n  \"riposarsi\": \"ripos\",\n  \"riposarti\": \"ripos\",\n  \"riposata\": \"ripos\",\n  \"riposate\": \"ripos\",\n  \"riposato\": \"ripos\",\n  \"ripose\": \"ripos\",\n  \"riposo\": \"ripos\",\n  \"riposta\": \"ripost\",\n  \"riposte\": \"ripost\",\n  \"riposto\": \"ripost\",\n  \"ripregar\": \"ripreg\",\n  \"riprenda\": \"ripr\",\n  \"riprende\": \"ripr\",\n  \"riprendendo\": \"riprend\",\n  \"riprendendola\": \"riprend\",\n  \"riprender\": \"riprender\",\n  \"riprenderà\": \"riprend\",\n  \"riprenderanno\": \"riprend\",\n  \"riprendere\": \"riprend\",\n  \"riprenderle\": \"riprend\",\n  \"riprenderli\": \"riprend\",\n  \"riprenderlo\": \"riprend\",\n  \"riprendersi\": \"riprend\",\n  \"riprendervi\": \"riprend\",\n  \"riprendeva\": \"riprend\",\n  \"riprendiamo\": \"riprend\",\n  \"riprendono\": \"riprend\",\n  \"ripresa\": \"ripres\",\n  \"riprese\": \"ripres\",\n  \"ripresentarsi\": \"ripresent\",\n  \"ripresero\": \"ripreser\",\n  \"ripresi\": \"ripres\",\n  \"ripreso\": \"ripres\",\n  \"riprincipiare\": \"riprincip\",\n  \"ripristinare\": \"ripristin\",\n  \"ripristinate\": \"ripristin\",\n  \"ripristinato\": \"ripristin\",\n  \"riprodotto\": \"riprodott\",\n  \"riprodurla\": \"riprodurl\",\n  \"ripropone\": \"ripropon\",\n  \"ripropongo\": \"ripropong\",\n  \"riproposta\": \"ripropost\",\n  \"riproposto\": \"ripropost\",\n  \"riprovarci\": \"riprov\",\n  \"ripubblicare\": \"ripubblic\",\n  \"ripubblicate\": \"ripubblic\",\n  \"ripugnanza\": \"ripugn\",\n  \"ripugnanze\": \"ripugn\",\n  \"ripulire\": \"ripul\",\n  \"ripulita\": \"ripul\",\n  \"ripulse\": \"ripuls\",\n  \"riputate\": \"riput\",\n  \"riputati\": \"riput\",\n  \"riputatissime\": \"riputatissim\",\n  \"riputato\": \"riput\",\n  \"riputazion\": \"riputazion\",\n  \"riputazione\": \"riput\",\n  \"riputazioni\": \"riput\",\n  \"riqualificazione\": \"riqualif\",\n  \"rirnprovero\": \"rirnprover\",\n  \"ris\": \"ris\",\n  \"risa\": \"ris\",\n  \"risale\": \"risal\",\n  \"risalgono\": \"risalg\",\n  \"risalire\": \"risal\",\n  \"risalite\": \"risal\",\n  \"risalito\": \"risal\",\n  \"risaliva\": \"risal\",\n  \"risaltando\": \"risalt\",\n  \"risaltare\": \"risalt\",\n  \"risalto\": \"risalt\",\n  \"risanamento\": \"risan\",\n  \"risanare\": \"risan\",\n  \"risaper\": \"risaper\",\n  \"risapere\": \"risap\",\n  \"risaputa\": \"risap\",\n  \"risaputo\": \"risap\",\n  \"risarcimento\": \"risarc\",\n  \"risarcire\": \"risarc\",\n  \"risarcirlo\": \"risarc\",\n  \"risate\": \"ris\",\n  \"riscaldamento\": \"riscald\",\n  \"riscaldare\": \"riscald\",\n  \"riscaldarsi\": \"riscald\",\n  \"riscaldata\": \"riscald\",\n  \"riscaldati\": \"riscald\",\n  \"riscaldato\": \"riscald\",\n  \"riscatta\": \"riscatt\",\n  \"riscattati\": \"riscatt\",\n  \"riscattavano\": \"riscatt\",\n  \"riscatto\": \"riscatt\",\n  \"rischi\": \"risc\",\n  \"rischia\": \"risc\",\n  \"rischiano\": \"risc\",\n  \"rischiarato\": \"rischiar\",\n  \"rischiare\": \"risc\",\n  \"rischiato\": \"risc\",\n  \"rischierebbero\": \"risc\",\n  \"rischio\": \"risc\",\n  \"rischiosa\": \"rischios\",\n  \"rischiose\": \"rischios\",\n  \"rischiosità\": \"rischios\",\n  \"rischioso\": \"rischios\",\n  \"riscontra\": \"riscontr\",\n  \"riscontrandole\": \"riscontr\",\n  \"riscontrandosi\": \"riscontr\",\n  \"riscontrano\": \"riscontr\",\n  \"riscontrata\": \"riscontr\",\n  \"riscontrati\": \"riscontr\",\n  \"riscontrato\": \"riscontr\",\n  \"riscontri\": \"riscontr\",\n  \"riscontro\": \"riscontr\",\n  \"riscoprire\": \"riscopr\",\n  \"riscossa\": \"riscoss\",\n  \"riscosse\": \"riscoss\",\n  \"riscosso\": \"riscoss\",\n  \"riscossone\": \"riscosson\",\n  \"riscotendosi\": \"riscot\",\n  \"riscoter\": \"riscoter\",\n  \"riscotere\": \"riscot\",\n  \"riscoteva\": \"riscot\",\n  \"riscotono\": \"riscot\",\n  \"riscrivere\": \"riscriv\",\n  \"riscuotere\": \"riscuot\",\n  \"riscuotono\": \"riscuot\",\n  \"risente\": \"risent\",\n  \"risentì\": \"risent\",\n  \"risentimento\": \"risent\",\n  \"risentire\": \"risent\",\n  \"risentirsi\": \"risent\",\n  \"risentita\": \"risent\",\n  \"risentite\": \"risent\",\n  \"risentiti\": \"risent\",\n  \"risentito\": \"risent\",\n  \"riseppe\": \"risepp\",\n  \"riseppero\": \"risepper\",\n  \"riserbata\": \"riserb\",\n  \"riserbo\": \"riserb\",\n  \"riserva\": \"riserv\",\n  \"riservassero\": \"riserv\",\n  \"riservata\": \"riserv\",\n  \"riservate\": \"riserv\",\n  \"riservati\": \"riserv\",\n  \"riservato\": \"riserv\",\n  \"riserve\": \"riserv\",\n  \"riservisti\": \"riserv\",\n  \"risiamo\": \"ris\",\n  \"risica\": \"risic\",\n  \"risicar\": \"risic\",\n  \"risicare\": \"risic\",\n  \"risiedeva\": \"risied\",\n  \"risk\": \"risk\",\n  \"riso\": \"ris\",\n  \"risolta\": \"risolt\",\n  \"risolte\": \"risolt\",\n  \"risolto\": \"risolt\",\n  \"risoluta\": \"risol\",\n  \"risolutamente\": \"risolut\",\n  \"risolute\": \"risol\",\n  \"risolutezza\": \"risolutezz\",\n  \"risoluti\": \"risol\",\n  \"risolutive\": \"risolut\",\n  \"risolutivo\": \"risolut\",\n  \"risoluto\": \"risol\",\n  \"risoluzione\": \"risolu\",\n  \"risoluzioni\": \"risolu\",\n  \"risolva\": \"risolv\",\n  \"risolve\": \"risolv\",\n  \"risolvendo\": \"risolv\",\n  \"risolver\": \"risolver\",\n  \"risolverà\": \"risolv\",\n  \"risolvere\": \"risolv\",\n  \"risolversi\": \"risolv\",\n  \"risolvesse\": \"risolvess\",\n  \"risolvete\": \"risolv\",\n  \"risolvette\": \"risolvett\",\n  \"risolvettero\": \"risolvetter\",\n  \"risolveva\": \"risolv\",\n  \"risolvimento\": \"risolv\",\n  \"risolvon\": \"risolvon\",\n  \"risonanti\": \"rison\",\n  \"risonare\": \"rison\",\n  \"risonava\": \"rison\",\n  \"risone\": \"rison\",\n  \"risonò\": \"rison\",\n  \"risorgimento\": \"risorg\",\n  \"risorsa\": \"risors\",\n  \"risorse\": \"risors\",\n  \"risorsero\": \"risorser\",\n  \"risospirato\": \"risospir\",\n  \"risp\": \"risp\",\n  \"rispamio\": \"rispam\",\n  \"risparmi\": \"risp\",\n  \"risparmiando\": \"risparm\",\n  \"risparmiare\": \"risparm\",\n  \"risparmiarselo\": \"risparmiarsel\",\n  \"risparmiati\": \"risparm\",\n  \"risparmiato\": \"risparm\",\n  \"risparmiatori\": \"risparm\",\n  \"risparmiava\": \"risparm\",\n  \"risparmio\": \"risparm\",\n  \"risparmiò\": \"risparm\",\n  \"rispaventarsi\": \"rispavent\",\n  \"rispecchia\": \"rispecc\",\n  \"rispetta\": \"rispett\",\n  \"rispettabile\": \"rispett\",\n  \"rispettabili\": \"rispett\",\n  \"rispettabilità\": \"rispett\",\n  \"rispettando\": \"rispett\",\n  \"rispettarci\": \"rispett\",\n  \"rispettare\": \"rispett\",\n  \"rispettata\": \"rispett\",\n  \"rispettate\": \"rispett\",\n  \"rispettati\": \"rispett\",\n  \"rispettato\": \"rispett\",\n  \"rispetti\": \"rispett\",\n  \"rispettiamo\": \"rispett\",\n  \"rispettivamente\": \"rispett\",\n  \"rispettive\": \"rispett\",\n  \"rispettivi\": \"rispett\",\n  \"rispetto\": \"rispett\",\n  \"rispettosa\": \"rispett\",\n  \"rispettosamente\": \"rispett\",\n  \"rispettose\": \"rispett\",\n  \"rispettoso\": \"rispett\",\n  \"rispinge\": \"risping\",\n  \"rispingendo\": \"risping\",\n  \"rispingendola\": \"risping\",\n  \"rispingerla\": \"risping\",\n  \"rispingerne\": \"risping\",\n  \"rispinse\": \"rispins\",\n  \"rispinte\": \"rispint\",\n  \"risplenda\": \"rispl\",\n  \"rispoli\": \"rispol\",\n  \"rispolverano\": \"rispolver\",\n  \"rispolverare\": \"rispolver\",\n  \"risponda\": \"rispond\",\n  \"risponde\": \"rispond\",\n  \"rispondendo\": \"rispond\",\n  \"rispondenti\": \"rispondent\",\n  \"risponder\": \"risponder\",\n  \"rispondere\": \"rispond\",\n  \"risponderebbe\": \"rispond\",\n  \"risponderebbero\": \"rispond\",\n  \"risponderete\": \"rispond\",\n  \"rispondergli\": \"rispond\",\n  \"risponderne\": \"rispond\",\n  \"rispondesse\": \"rispondess\",\n  \"rispondete\": \"rispond\",\n  \"rispondeva\": \"rispond\",\n  \"rispondevan\": \"rispondevan\",\n  \"rispondevano\": \"rispond\",\n  \"rispondi\": \"rispond\",\n  \"risposarsi\": \"rispos\",\n  \"rispose\": \"rispos\",\n  \"risposer\": \"risposer\",\n  \"risposero\": \"risposer\",\n  \"risposi\": \"rispos\",\n  \"risposta\": \"rispost\",\n  \"risposte\": \"rispost\",\n  \"risposto\": \"rispost\",\n  \"rispostogli\": \"rispostogl\",\n  \"rispostole\": \"rispostol\",\n  \"rissa\": \"riss\",\n  \"risse\": \"riss\",\n  \"rissoso\": \"rissos\",\n  \"ristabilendo\": \"ristabil\",\n  \"ristabilire\": \"ristabil\",\n  \"ristabilisca\": \"ristabil\",\n  \"ristagnare\": \"ristagn\",\n  \"ristagno\": \"ristagn\",\n  \"ristorante\": \"ristor\",\n  \"ristorar\": \"ristor\",\n  \"ristorarla\": \"ristor\",\n  \"ristorarsi\": \"ristor\",\n  \"ristorarvi\": \"ristor\",\n  \"ristorativa\": \"ristor\",\n  \"ristorativi\": \"ristor\",\n  \"ristorativo\": \"ristor\",\n  \"ristori\": \"ristor\",\n  \"ristoro\": \"ristor\",\n  \"ristretta\": \"ristrett\",\n  \"ristrettezza\": \"ristrettezz\",\n  \"ristretti\": \"ristrett\",\n  \"ristretto\": \"ristrett\",\n  \"ristringendosi\": \"ristring\",\n  \"ristringerne\": \"ristring\",\n  \"ristringersi\": \"ristring\",\n  \"ristringessero\": \"ristring\",\n  \"ristringeva\": \"ristring\",\n  \"ristrinse\": \"ristrins\",\n  \"ristrinsero\": \"ristrinser\",\n  \"ristrutturazione\": \"ristruttur\",\n  \"risucchiarci\": \"risucc\",\n  \"risulata\": \"risul\",\n  \"risulta\": \"risult\",\n  \"risultando\": \"risult\",\n  \"risultano\": \"risult\",\n  \"risultante\": \"risult\",\n  \"risultare\": \"risult\",\n  \"risultargli\": \"risult\",\n  \"risultate\": \"risult\",\n  \"risultati\": \"risult\",\n  \"risultato\": \"risult\",\n  \"risultava\": \"risult\",\n  \"risulterebbe\": \"risult\",\n  \"risulti\": \"risult\",\n  \"risuscitatolo\": \"risuscitatol\",\n  \"risveglia\": \"risvegl\",\n  \"risvegliando\": \"risvegl\",\n  \"risvegliasse\": \"risvegl\",\n  \"risvegliata\": \"risvegl\",\n  \"risvegliato\": \"risvegl\",\n  \"risvegliava\": \"risvegl\",\n  \"risvegliavano\": \"risvegl\",\n  \"risveglino\": \"risveglin\",\n  \"risvegliò\": \"risvegl\",\n  \"rita\": \"rit\",\n  \"ritagli\": \"ritagl\",\n  \"ritaglio\": \"ritagl\",\n  \"ritarda\": \"ritard\",\n  \"ritardando\": \"ritard\",\n  \"ritardarla\": \"ritard\",\n  \"ritardata\": \"ritard\",\n  \"ritardato\": \"ritard\",\n  \"ritardi\": \"ritard\",\n  \"ritardo\": \"ritard\",\n  \"ritchie\": \"ritc\",\n  \"ritegno\": \"ritegn\",\n  \"ritenendo\": \"riten\",\n  \"ritenere\": \"riten\",\n  \"ritenessero\": \"riten\",\n  \"ritenete\": \"riten\",\n  \"riteneva\": \"riten\",\n  \"ritenga\": \"riteng\",\n  \"ritengo\": \"riteng\",\n  \"ritengono\": \"riteng\",\n  \"riteniamo\": \"riten\",\n  \"ritenne\": \"ritenn\",\n  \"ritentare\": \"ritent\",\n  \"ritenuta\": \"riten\",\n  \"ritenute\": \"riten\",\n  \"ritenuti\": \"riten\",\n  \"ritenuto\": \"riten\",\n  \"riti\": \"rit\",\n  \"ritiene\": \"ritien\",\n  \"ritira\": \"ritir\",\n  \"ritirando\": \"ritir\",\n  \"ritirandosi\": \"ritir\",\n  \"ritirano\": \"ritir\",\n  \"ritirar\": \"ritir\",\n  \"ritirare\": \"ritir\",\n  \"ritirarmi\": \"ritir\",\n  \"ritirarsene\": \"ritir\",\n  \"ritirarsi\": \"ritir\",\n  \"ritirassero\": \"ritir\",\n  \"ritirata\": \"ritir\",\n  \"ritirate\": \"ritir\",\n  \"ritiratevi\": \"ritirat\",\n  \"ritirati\": \"ritir\",\n  \"ritiratisi\": \"ritiratis\",\n  \"ritirato\": \"ritir\",\n  \"ritiratosi\": \"ritirat\",\n  \"ritirava\": \"ritir\",\n  \"ritiravan\": \"ritiravan\",\n  \"ritiri\": \"ritir\",\n  \"ritirino\": \"ritirin\",\n  \"ritiro\": \"ritir\",\n  \"ritirò\": \"rit\",\n  \"ritmicamente\": \"ritmic\",\n  \"ritmo\": \"ritm\",\n  \"rito\": \"rit\",\n  \"ritoccando\": \"ritocc\",\n  \"ritoccato\": \"ritocc\",\n  \"ritocco\": \"ritocc\",\n  \"ritorna\": \"ritorn\",\n  \"ritornan\": \"ritornan\",\n  \"ritornandoci\": \"ritorn\",\n  \"ritornar\": \"ritorn\",\n  \"ritornare\": \"ritorn\",\n  \"ritornarono\": \"ritorn\",\n  \"ritornatele\": \"ritornatel\",\n  \"ritornato\": \"ritorn\",\n  \"ritornava\": \"ritorn\",\n  \"ritorneremo\": \"ritorn\",\n  \"ritorni\": \"ritorn\",\n  \"ritorniamo\": \"ritorn\",\n  \"ritorno\": \"ritorn\",\n  \"ritornò\": \"ritorn\",\n  \"ritorte\": \"ritort\",\n  \"ritrae\": \"ritra\",\n  \"ritraggono\": \"ritragg\",\n  \"ritrarne\": \"ritr\",\n  \"ritrarre\": \"ritrarr\",\n  \"ritratta\": \"ritratt\",\n  \"ritrattazione\": \"ritratt\",\n  \"ritratti\": \"ritratt\",\n  \"ritratto\": \"ritratt\",\n  \"ritrosia\": \"ritros\",\n  \"ritrouauano\": \"ritrouau\",\n  \"ritrova\": \"ritrov\",\n  \"ritrovamenti\": \"ritrov\",\n  \"ritrovamento\": \"ritrov\",\n  \"ritrovar\": \"ritrov\",\n  \"ritrovare\": \"ritrov\",\n  \"ritrovarsi\": \"ritrov\",\n  \"ritrovarvi\": \"ritrov\",\n  \"ritrovata\": \"ritrov\",\n  \"ritrovate\": \"ritrov\",\n  \"ritrovati\": \"ritrov\",\n  \"ritrovato\": \"ritrov\",\n  \"ritroverà\": \"ritrov\",\n  \"ritrovi\": \"ritrov\",\n  \"ritrovo\": \"ritrov\",\n  \"ritta\": \"ritt\",\n  \"ritte\": \"ritt\",\n  \"ritti\": \"ritt\",\n  \"ritto\": \"ritt\",\n  \"rituale\": \"ritual\",\n  \"rituffavano\": \"rituff\",\n  \"riunendosi\": \"riun\",\n  \"riunì\": \"riun\",\n  \"riuniamo\": \"riun\",\n  \"riunione\": \"riunion\",\n  \"riunioni\": \"riunion\",\n  \"riunirà\": \"riun\",\n  \"riuniranno\": \"riun\",\n  \"riunirci\": \"riun\",\n  \"riuniremo\": \"riun\",\n  \"riunirono\": \"riun\",\n  \"riunirsi\": \"riun\",\n  \"riunisca\": \"riun\",\n  \"riunisce\": \"riun\",\n  \"riuniscono\": \"riun\",\n  \"riunita\": \"riun\",\n  \"riunite\": \"riun\",\n  \"riuniti\": \"riun\",\n  \"riunito\": \"riun\",\n  \"riunitosi\": \"riunit\",\n  \"riunivano\": \"riun\",\n  \"riuscendo\": \"riusc\",\n  \"riuscendogli\": \"riusc\",\n  \"riuscì\": \"riusc\",\n  \"riusciamo\": \"riusc\",\n  \"riuscir\": \"riusc\",\n  \"riuscirà\": \"riusc\",\n  \"riuscire\": \"riusc\",\n  \"riuscirebbe\": \"riusc\",\n  \"riuscirete\": \"riusc\",\n  \"riuscirono\": \"riusc\",\n  \"riuscirvi\": \"riusc\",\n  \"riuscisse\": \"riusciss\",\n  \"riuscissero\": \"riusc\",\n  \"riuscita\": \"riusc\",\n  \"riuscite\": \"riusc\",\n  \"riusciti\": \"riusc\",\n  \"riuscito\": \"riusc\",\n  \"riusciva\": \"riusc\",\n  \"riuscivamo\": \"riusc\",\n  \"riuscivan\": \"riuscivan\",\n  \"riuscivano\": \"riusc\",\n  \"riva\": \"riv\",\n  \"rivale\": \"rival\",\n  \"rivali\": \"rival\",\n  \"rivalità\": \"rival\",\n  \"rivalutare\": \"rivalut\",\n  \"rivalutata\": \"rivalut\",\n  \"rivangare\": \"rivang\",\n  \"rive\": \"riv\",\n  \"riveda\": \"rived\",\n  \"rivede\": \"rived\",\n  \"riveder\": \"riveder\",\n  \"rivederci\": \"rived\",\n  \"rivedere\": \"rived\",\n  \"rivederli\": \"rived\",\n  \"rivedersi\": \"rived\",\n  \"rivediamo\": \"rived\",\n  \"rivedrà\": \"rivedr\",\n  \"rivedremo\": \"rivedrem\",\n  \"rivedrete\": \"rivedr\",\n  \"rivela\": \"rivel\",\n  \"rivelano\": \"rivel\",\n  \"rivelare\": \"rivel\",\n  \"rivelarne\": \"rivel\",\n  \"rivelarono\": \"rivel\",\n  \"rivelata\": \"rivel\",\n  \"rivelato\": \"rivel\",\n  \"rivelazione\": \"rivel\",\n  \"rivelazioni\": \"rivel\",\n  \"rivelazionì\": \"rivelazion\",\n  \"rivelò\": \"rivel\",\n  \"rivendicando\": \"rivendic\",\n  \"rivendicano\": \"rivendic\",\n  \"rivendicare\": \"rivendic\",\n  \"rivendicato\": \"rivendic\",\n  \"rivendicazione\": \"rivend\",\n  \"rivendicazioni\": \"rivend\",\n  \"river\": \"river\",\n  \"rivera\": \"river\",\n  \"riverente\": \"riverent\",\n  \"riverentemente\": \"riverent\",\n  \"riverenza\": \"riverent\",\n  \"riverenze\": \"riverent\",\n  \"riverirlo\": \"river\",\n  \"riverisce\": \"river\",\n  \"riverisco\": \"river\",\n  \"riverita\": \"river\",\n  \"riverito\": \"river\",\n  \"riverniciati\": \"rivernic\",\n  \"riversa\": \"rivers\",\n  \"riversare\": \"rivers\",\n  \"riversata\": \"rivers\",\n  \"riversate\": \"rivers\",\n  \"riverso\": \"rivers\",\n  \"rivestì\": \"rivest\",\n  \"rivestirsi\": \"rivest\",\n  \"rivestita\": \"rivest\",\n  \"rivestito\": \"rivest\",\n  \"rivestivano\": \"rivest\",\n  \"rivide\": \"rivid\",\n  \"riviera\": \"rivier\",\n  \"rivieraschi\": \"rivierasc\",\n  \"rivisitazione\": \"rivisit\",\n  \"rivista\": \"rivist\",\n  \"riviste\": \"rivist\",\n  \"rivisto\": \"rivist\",\n  \"rivitalizzare\": \"rivitalizz\",\n  \"rivitalizzazione\": \"rivitalizz\",\n  \"rivivere\": \"riviv\",\n  \"rivocarlo\": \"rivoc\",\n  \"rivola\": \"rivol\",\n  \"rivolge\": \"rivolg\",\n  \"rivolgendo\": \"rivolg\",\n  \"rivolgendosi\": \"rivolg\",\n  \"rivolgere\": \"rivolg\",\n  \"rivolgerebbe\": \"rivolg\",\n  \"rivolgerle\": \"rivolg\",\n  \"rivolgerlo\": \"rivolg\",\n  \"rivolgermi\": \"rivolg\",\n  \"rivolgerò\": \"rivolg\",\n  \"rivolgersi\": \"rivolg\",\n  \"rivolgessero\": \"rivolg\",\n  \"rivolgeva\": \"rivolg\",\n  \"rivolgono\": \"rivolg\",\n  \"rivolse\": \"rivols\",\n  \"rivolsero\": \"rivolser\",\n  \"rivolta\": \"rivolt\",\n  \"rivoltandosi\": \"rivolt\",\n  \"rivoltano\": \"rivolt\",\n  \"rivoltare\": \"rivolt\",\n  \"rivoltarsi\": \"rivolt\",\n  \"rivoltate\": \"rivolt\",\n  \"rivoltati\": \"rivolt\",\n  \"rivoltava\": \"rivolt\",\n  \"rivolte\": \"rivolt\",\n  \"rivoltegli\": \"rivoltegl\",\n  \"rivolterebbero\": \"rivolt\",\n  \"rivolti\": \"rivolt\",\n  \"rivoltiamo\": \"rivolt\",\n  \"rivoltigli\": \"rivoltigl\",\n  \"rivolto\": \"rivolt\",\n  \"rivoltò\": \"rivolt\",\n  \"rivoluzionari\": \"rivoluzionar\",\n  \"rivoluzionaria\": \"rivoluzionar\",\n  \"rivoluzionario\": \"rivoluzionar\",\n  \"rivoluzione\": \"rivolu\",\n  \"rivoluzioni\": \"rivolu\",\n  \"rivotandolo\": \"rivot\",\n  \"riz\": \"riz\",\n  \"rizza\": \"rizz\",\n  \"rizzandosi\": \"rizz\",\n  \"rizzano\": \"rizz\",\n  \"rizzar\": \"rizz\",\n  \"rizzata\": \"rizz\",\n  \"rizzate\": \"rizz\",\n  \"rizzatosi\": \"rizzat\",\n  \"rizzi\": \"rizz\",\n  \"rizzitelli\": \"rizzitell\",\n  \"rizzo\": \"rizz\",\n  \"rizzò\": \"rizz\",\n  \"rizzoli\": \"rizzol\",\n  \"rl\": \"rl\",\n  \"rm\": \"rm\",\n  \"rmzi\": \"rmzi\",\n  \"rnc\": \"rnc\",\n  \"roba\": \"rob\",\n  \"robbe\": \"robb\",\n  \"robben\": \"robben\",\n  \"robbie\": \"robb\",\n  \"robe\": \"rob\",\n  \"robert\": \"robert\",\n  \"roberto\": \"robert\",\n  \"robertson\": \"robertson\",\n  \"robin\": \"robin\",\n  \"robinson\": \"robinson\",\n  \"robocop\": \"robocop\",\n  \"robusta\": \"robust\",\n  \"robustezza\": \"robustezz\",\n  \"robusti\": \"robust\",\n  \"roca\": \"roc\",\n  \"rocambolesche\": \"rocambolesc\",\n  \"rocca\": \"rocc\",\n  \"roccaforte\": \"roccafort\",\n  \"roccella\": \"roccell\",\n  \"rocchetta\": \"rocchett\",\n  \"rocchi\": \"rocc\",\n  \"roccia\": \"rocc\",\n  \"rocco\": \"rocc\",\n  \"rock\": \"rock\",\n  \"rocroi\": \"rocro\",\n  \"rod\": \"rod\",\n  \"rode\": \"rod\",\n  \"rodendosi\": \"rod\",\n  \"rodere\": \"rod\",\n  \"rodersi\": \"rod\",\n  \"rodeva\": \"rod\",\n  \"rodhes\": \"rodhes\",\n  \"rodi\": \"rod\",\n  \"rodimento\": \"rod\",\n  \"rodìo\": \"rodì\",\n  \"rodman\": \"rodman\",\n  \"rodney\": \"rodney\",\n  \"rodomonte\": \"rodomont\",\n  \"rodotà\": \"rodot\",\n  \"rodrigo\": \"rodrig\",\n  \"rodriguez\": \"rodriguez\",\n  \"rodriquez\": \"rodriquez\",\n  \"roger\": \"roger\",\n  \"rogeriò\": \"roger\",\n  \"rogers\": \"rogers\",\n  \"rognoni\": \"rognon\",\n  \"roidi\": \"roid\",\n  \"rolando\": \"rol\",\n  \"roll\": \"roll\",\n  \"rolls\": \"rolls\",\n  \"rolo\": \"rol\",\n  \"rolò\": \"rol\",\n  \"roloamerica\": \"roloamer\",\n  \"rolobonds\": \"rolobonds\",\n  \"roloeuropa\": \"roloeurop\",\n  \"rologest\": \"rologest\",\n  \"rolointernational\": \"rolointernational\",\n  \"roloitalia\": \"roloital\",\n  \"rolomix\": \"rolomix\",\n  \"rolomoney\": \"rolomoney\",\n  \"rolooriente\": \"roloorient\",\n  \"rom\": \"rom\",\n  \"roma\": \"rom\",\n  \"romà\": \"rom\",\n  \"romagest\": \"romagest\",\n  \"romagna\": \"romagn\",\n  \"romagnolo\": \"romagnol\",\n  \"roman\": \"roman\",\n  \"romana\": \"roman\",\n  \"romanello\": \"romanell\",\n  \"romani\": \"roman\",\n  \"romanista\": \"roman\",\n  \"romanisti\": \"roman\",\n  \"romano\": \"rom\",\n  \"romanò\": \"roman\",\n  \"romantica\": \"romant\",\n  \"romanticismo\": \"romantic\",\n  \"romantico\": \"romant\",\n  \"romanzo\": \"romanz\",\n  \"rombo\": \"romb\",\n  \"romei\": \"rome\",\n  \"romena\": \"romen\",\n  \"romeo\": \"rome\",\n  \"romero\": \"romer\",\n  \"rominger\": \"rominger\",\n  \"romiti\": \"rom\",\n  \"romito\": \"rom\",\n  \"romolo\": \"romol\",\n  \"rompa\": \"romp\",\n  \"rompe\": \"romp\",\n  \"rompendo\": \"romp\",\n  \"romper\": \"romper\",\n  \"rompere\": \"romp\",\n  \"romperla\": \"romp\",\n  \"rompevano\": \"romp\",\n  \"rompicollo\": \"rompicoll\",\n  \"rompono\": \"romp\",\n  \"ron\": \"ron\",\n  \"ronald\": \"ronald\",\n  \"roncato\": \"ronc\",\n  \"ronchi\": \"ronc\",\n  \"ronco\": \"ronc\",\n  \"roncole\": \"roncol\",\n  \"roncone\": \"roncon\",\n  \"ronda\": \"rond\",\n  \"rondine\": \"rondin\",\n  \"ronzando\": \"ronz\",\n  \"ronzarle\": \"ronz\",\n  \"ronzasse\": \"ronz\",\n  \"ronzatori\": \"ronzator\",\n  \"ronzavano\": \"ronz\",\n  \"ronzìo\": \"ronzì\",\n  \"ronzlo\": \"ronzl\",\n  \"roque\": \"roqu\",\n  \"rosa\": \"ros\",\n  \"rosanna\": \"rosann\",\n  \"rosano\": \"ros\",\n  \"rosaria\": \"rosar\",\n  \"rosario\": \"rosar\",\n  \"rosaro\": \"rosar\",\n  \"rosati\": \"ros\",\n  \"roscia\": \"rosc\",\n  \"rose\": \"ros\",\n  \"roseo\": \"rose\",\n  \"rosi\": \"ros\",\n  \"rosica\": \"rosic\",\n  \"rosicchiata\": \"rosicc\",\n  \"rosie\": \"ros\",\n  \"rosmarino\": \"rosmarin\",\n  \"roso\": \"ros\",\n  \"rosolava\": \"rosol\",\n  \"rosone\": \"roson\",\n  \"rospi\": \"rosp\",\n  \"rospo\": \"rosp\",\n  \"rossa\": \"ross\",\n  \"rosse\": \"ross\",\n  \"rossè\": \"ross\",\n  \"rosseggiante\": \"rossegg\",\n  \"rosseggianti\": \"rossegg\",\n  \"rossetti\": \"rossett\",\n  \"rossetto\": \"rossett\",\n  \"rossi\": \"ross\",\n  \"rossiccia\": \"rossicc\",\n  \"rossini\": \"rossin\",\n  \"rossito\": \"ross\",\n  \"rosso\": \"ross\",\n  \"rossoblu\": \"rossoblu\",\n  \"rossoblù\": \"rossoblù\",\n  \"rossonera\": \"rossoner\",\n  \"rossoneri\": \"rossoner\",\n  \"rossore\": \"rossor\",\n  \"rosy\": \"rosy\",\n  \"rota\": \"rot\",\n  \"rotaie\": \"rotai\",\n  \"rotante\": \"rotant\",\n  \"rotazione\": \"rotazion\",\n  \"rote\": \"rot\",\n  \"roteando\": \"rot\",\n  \"rotella\": \"rotell\",\n  \"roth\": \"roth\",\n  \"rotocalco\": \"rotocalc\",\n  \"rotoli\": \"rotol\",\n  \"rotolo\": \"rotol\",\n  \"rotonda\": \"rotond\",\n  \"rotondi\": \"rotond\",\n  \"rotondo\": \"rotond\",\n  \"rotta\": \"rott\",\n  \"rottame\": \"rottam\",\n  \"rottami\": \"rottam\",\n  \"rotte\": \"rott\",\n  \"rotterdam\": \"rotterdam\",\n  \"rotti\": \"rott\",\n  \"rotto\": \"rott\",\n  \"rottura\": \"rottur\",\n  \"roulettes\": \"roulettes\",\n  \"roundtree\": \"roundtre\",\n  \"rouse\": \"rous\",\n  \"routine\": \"routin\",\n  \"rover\": \"rover\",\n  \"rovescia\": \"rovesc\",\n  \"rovesciano\": \"rovesc\",\n  \"rovesciar\": \"rovesc\",\n  \"rovesciarla\": \"rovesc\",\n  \"rovesciata\": \"rovesc\",\n  \"rovesciavano\": \"rovesc\",\n  \"rovescio\": \"rovesc\",\n  \"rovesciò\": \"rovesc\",\n  \"rovigo\": \"rovig\",\n  \"rovina\": \"rovin\",\n  \"rovinan\": \"rovinan\",\n  \"rovinando\": \"rovin\",\n  \"rovinar\": \"rovin\",\n  \"rovinare\": \"rovin\",\n  \"rovinarmi\": \"rovin\",\n  \"rovinarsi\": \"rovin\",\n  \"rovinarvi\": \"rovin\",\n  \"rovinata\": \"rovin\",\n  \"rovinato\": \"rovin\",\n  \"rovinavano\": \"rovin\",\n  \"rovine\": \"rovin\",\n  \"rovistando\": \"rovist\",\n  \"rovo\": \"rov\",\n  \"rowland\": \"rowland\",\n  \"royal\": \"royal\",\n  \"royce\": \"royc\",\n  \"rozza\": \"rozz\",\n  \"rozzi\": \"rozz\",\n  \"rozzo\": \"rozz\",\n  \"rp\": \"rp\",\n  \"rpesidente\": \"rpesident\",\n  \"rpt\": \"rpt\",\n  \"rr\": \"rr\",\n  \"rs\": \"rs\",\n  \"rsu\": \"rsu\",\n  \"ruba\": \"rub\",\n  \"rubamenti\": \"rub\",\n  \"rubar\": \"rub\",\n  \"rubare\": \"rub\",\n  \"rubarle\": \"rub\",\n  \"rubarsela\": \"rubarsel\",\n  \"rubarselo\": \"rubarsel\",\n  \"rubarsi\": \"rub\",\n  \"rubassi\": \"rub\",\n  \"rubate\": \"rub\",\n  \"rubati\": \"rub\",\n  \"rubato\": \"rub\",\n  \"rubavano\": \"rub\",\n  \"rubello\": \"rubell\",\n  \"ruberie\": \"ruber\",\n  \"rubi\": \"rub\",\n  \"rubiconda\": \"rubicond\",\n  \"rubicondo\": \"rubicond\",\n  \"rubiera\": \"rubier\",\n  \"rubin\": \"rubin\",\n  \"rubino\": \"rubin\",\n  \"rubli\": \"rubl\",\n  \"rubra\": \"rubr\",\n  \"rubrica\": \"rubric\",\n  \"rubriche\": \"rubric\",\n  \"rude\": \"rud\",\n  \"rudi\": \"rud\",\n  \"rudyard\": \"rudyard\",\n  \"ruf\": \"ruf\",\n  \"ruffa\": \"ruff\",\n  \"ruffino\": \"ruffin\",\n  \"ruffo\": \"ruff\",\n  \"ruffoni\": \"ruffon\",\n  \"rugby\": \"rugby\",\n  \"ruggenti\": \"ruggent\",\n  \"ruggero\": \"rugger\",\n  \"ruggine\": \"ruggin\",\n  \"ruggito\": \"rugg\",\n  \"rughe\": \"rugh\",\n  \"rugiada\": \"rugiad\",\n  \"rugosa\": \"rugos\",\n  \"ruhpolding\": \"ruhpolding\",\n  \"rui\": \"rui\",\n  \"ruiz\": \"ruiz\",\n  \"rumbelows\": \"rumbelows\",\n  \"ruminando\": \"rumin\",\n  \"ruminarci\": \"rumin\",\n  \"ruminava\": \"rumin\",\n  \"ruminò\": \"rumin\",\n  \"rumor\": \"rumor\",\n  \"rumore\": \"rumor\",\n  \"rumoreggiamento\": \"rumoregg\",\n  \"rumoreggiando\": \"rumoregg\",\n  \"rumori\": \"rumor\",\n  \"rumorosa\": \"rumor\",\n  \"rumorosamente\": \"rumor\",\n  \"rumoroso\": \"rumor\",\n  \"rundschaù\": \"rundschaù\",\n  \"ruolettes\": \"ruolettes\",\n  \"ruoli\": \"ruol\",\n  \"ruolo\": \"ruol\",\n  \"ruota\": \"ruot\",\n  \"ruote\": \"ruot\",\n  \"ruotolo\": \"ruotol\",\n  \"rupi\": \"rup\",\n  \"ruppe\": \"rupp\",\n  \"ruprechtskirche\": \"ruprechtskirc\",\n  \"rurali\": \"rural\",\n  \"rus\": \"rus\",\n  \"ruscello\": \"ruscell\",\n  \"rushdi\": \"rushd\",\n  \"rushdie\": \"rushd\",\n  \"rushdiè\": \"rushd\",\n  \"ruspi\": \"rusp\",\n  \"russa\": \"russ\",\n  \"russare\": \"russ\",\n  \"russava\": \"russ\",\n  \"russe\": \"russ\",\n  \"russi\": \"russ\",\n  \"russia\": \"russ\",\n  \"russie\": \"russ\",\n  \"russo\": \"russ\",\n  \"rustica\": \"rustic\",\n  \"rustichezza\": \"rustichezz\",\n  \"ruta\": \"rut\",\n  \"rutelli\": \"rutell\",\n  \"rutilante\": \"rutil\",\n  \"ruvida\": \"ruvid\",\n  \"ruvidamente\": \"ruvid\",\n  \"ruvide\": \"ruvid\",\n  \"ruvido\": \"ruvid\",\n  \"ruz\": \"ruz\",\n  \"ruzzo\": \"ruzz\",\n  \"ruzzolare\": \"ruzzol\",\n  \"ruzzolarono\": \"ruzzol\",\n  \"rv\": \"rv\",\n  \"rwdm\": \"rwdm\",\n  \"rwe\": \"rwe\",\n  \"ryryryryryryryryryryryryryryryryryryryryr\": \"ryryryryryryryryryryryryryryryryryryryryr\",\n  \"ryryryryryryryryryryryryryryryryryryryryryry\": \"ryryryryryryryryryryryryryryryryryryryryryry\",\n  \"s\": \"s\",\n  \"sa\": \"sa\",\n  \"saab\": \"saab\",\n  \"saad\": \"saad\",\n  \"saada\": \"saad\",\n  \"sabatini\": \"sabatin\",\n  \"sabato\": \"sab\",\n  \"sabau\": \"sabau\",\n  \"sabbia\": \"sabb\",\n  \"sabe\": \"sab\",\n  \"sabotare\": \"sabot\",\n  \"sabrina\": \"sabrin\",\n  \"sacca\": \"sacc\",\n  \"saccenteria\": \"saccenter\",\n  \"saccheggiare\": \"sacchegg\",\n  \"saccheggiato\": \"sacchegg\",\n  \"saccheggiatori\": \"sacchegg\",\n  \"saccheggio\": \"sacchegg\",\n  \"sacchetti\": \"sacchett\",\n  \"sacchi\": \"sacc\",\n  \"sacco\": \"sacc\",\n  \"saccone\": \"saccon\",\n  \"sacconi\": \"saccon\",\n  \"sace\": \"sac\",\n  \"sacerdote\": \"sacerdot\",\n  \"sacerdoti\": \"sacerdot\",\n  \"sacerdozio\": \"sacerdoz\",\n  \"sack\": \"sack\",\n  \"sacra\": \"sacr\",\n  \"sacrificare\": \"sacrific\",\n  \"sacrificarsi\": \"sacrific\",\n  \"sacrificata\": \"sacrific\",\n  \"sacrificati\": \"sacrific\",\n  \"sacrificato\": \"sacrific\",\n  \"sacrifici\": \"sacrif\",\n  \"sacrificio\": \"sacrific\",\n  \"sacrifizio\": \"sacrifiz\",\n  \"sacrilega\": \"sacrileg\",\n  \"sacrilegio\": \"sacrileg\",\n  \"sacro\": \"sacr\",\n  \"sacrosante\": \"sacros\",\n  \"sacrosanto\": \"sacrosant\",\n  \"sacully\": \"sacully\",\n  \"saddam\": \"saddam\",\n  \"saes\": \"saes\",\n  \"saf\": \"saf\",\n  \"saffa\": \"saff\",\n  \"safilo\": \"safil\",\n  \"safr\": \"safr\",\n  \"saga\": \"sag\",\n  \"sagacità\": \"sagac\",\n  \"saggezza\": \"saggezz\",\n  \"saggia\": \"sagg\",\n  \"saggina\": \"saggin\",\n  \"saggio\": \"sagg\",\n  \"sagra\": \"sagr\",\n  \"sagrare\": \"sagr\",\n  \"sagrava\": \"sagr\",\n  \"sagrestano\": \"sagrest\",\n  \"sagrestia\": \"sagrest\",\n  \"sagrifizi\": \"sagrifiz\",\n  \"sagrifizio\": \"sagrifiz\",\n  \"sai\": \"sai\",\n  \"saiag\": \"saiag\",\n  \"said\": \"said\",\n  \"sailor\": \"sailor\",\n  \"saima\": \"saim\",\n  \"saint\": \"saint\",\n  \"sainz\": \"sainz\",\n  \"saio\": \"sai\",\n  \"saipem\": \"saipem\",\n  \"sal\": \"sal\",\n  \"sala\": \"sal\",\n  \"salam\": \"salam\",\n  \"salamandra\": \"salamandr\",\n  \"salamon\": \"salamon\",\n  \"salamone\": \"salamon\",\n  \"salari\": \"salar\",\n  \"salariale\": \"salarial\",\n  \"salariali\": \"salarial\",\n  \"salario\": \"salar\",\n  \"salda\": \"sald\",\n  \"saldana\": \"saldan\",\n  \"saldar\": \"sald\",\n  \"saldare\": \"sald\",\n  \"saldarle\": \"sald\",\n  \"saldate\": \"sald\",\n  \"saldato\": \"sald\",\n  \"saldi\": \"sald\",\n  \"saldo\": \"sald\",\n  \"saldò\": \"sald\",\n  \"sale\": \"sal\",\n  \"salemi\": \"salem\",\n  \"salendo\": \"sal\",\n  \"salernitana\": \"salernitan\",\n  \"salernitani\": \"salernitan\",\n  \"salernitano\": \"salernit\",\n  \"salerno\": \"salern\",\n  \"salesiana\": \"salesian\",\n  \"salezzari\": \"salezzar\",\n  \"salgon\": \"salgon\",\n  \"salgono\": \"salg\",\n  \"sali\": \"sal\",\n  \"salì\": \"sal\",\n  \"salinas\": \"salinas\",\n  \"salingen\": \"salingen\",\n  \"salio\": \"sal\",\n  \"salir\": \"sal\",\n  \"salire\": \"sal\",\n  \"salirete\": \"sal\",\n  \"salirono\": \"sal\",\n  \"salirvi\": \"sal\",\n  \"saliscendi\": \"salisc\",\n  \"salisse\": \"saliss\",\n  \"salita\": \"sal\",\n  \"salite\": \"sal\",\n  \"saliti\": \"sal\",\n  \"salito\": \"sal\",\n  \"saliva\": \"sal\",\n  \"salivo\": \"sal\",\n  \"salma\": \"salm\",\n  \"salman\": \"salman\",\n  \"salmo\": \"salm\",\n  \"salmone\": \"salmon\",\n  \"salomone\": \"salomon\",\n  \"salone\": \"salon\",\n  \"saloni\": \"salon\",\n  \"salotti\": \"salott\",\n  \"salottino\": \"salottin\",\n  \"salotto\": \"salott\",\n  \"salsano\": \"sals\",\n  \"salt\": \"salt\",\n  \"salta\": \"salt\",\n  \"saltando\": \"salt\",\n  \"saltanto\": \"saltant\",\n  \"saltar\": \"salt\",\n  \"saltare\": \"salt\",\n  \"saltata\": \"salt\",\n  \"saltato\": \"salt\",\n  \"saltava\": \"salt\",\n  \"saltellante\": \"saltell\",\n  \"saltellava\": \"saltell\",\n  \"saltello\": \"saltell\",\n  \"saltelloni\": \"saltellon\",\n  \"salterà\": \"salt\",\n  \"salterello\": \"salterell\",\n  \"salti\": \"salt\",\n  \"salto\": \"salt\",\n  \"saltò\": \"salt\",\n  \"saltuaria\": \"saltuar\",\n  \"salubre\": \"salubr\",\n  \"saluta\": \"sal\",\n  \"salutala\": \"salutal\",\n  \"salutando\": \"salut\",\n  \"salutar\": \"salut\",\n  \"salutare\": \"salut\",\n  \"salutari\": \"salutar\",\n  \"salutasse\": \"salut\",\n  \"salutata\": \"salut\",\n  \"salutati\": \"salut\",\n  \"salutatili\": \"salutatil\",\n  \"salutato\": \"salut\",\n  \"salutavan\": \"salutavan\",\n  \"salute\": \"sal\",\n  \"salutevole\": \"salutevol\",\n  \"saluti\": \"sal\",\n  \"salutiamo\": \"salut\",\n  \"saluto\": \"sal\",\n  \"salutò\": \"salut\",\n  \"salva\": \"salv\",\n  \"salvadanaio\": \"salvadanai\",\n  \"salvaguardando\": \"salvaguard\",\n  \"salvaguardare\": \"salvaguard\",\n  \"salvaguardia\": \"salvaguard\",\n  \"salvamento\": \"salv\",\n  \"salvando\": \"salv\",\n  \"salvar\": \"salv\",\n  \"salvarci\": \"salv\",\n  \"salvare\": \"salv\",\n  \"salvarla\": \"salv\",\n  \"salvarlo\": \"salv\",\n  \"salvarne\": \"salv\",\n  \"salvarsi\": \"salv\",\n  \"salvarti\": \"salv\",\n  \"salvata\": \"salv\",\n  \"salvataggio\": \"salvatagg\",\n  \"salvatelo\": \"salvatel\",\n  \"salvatica\": \"salvat\",\n  \"salvatiche\": \"salvat\",\n  \"salvatichezza\": \"salvatichezz\",\n  \"salvatico\": \"salvat\",\n  \"salvato\": \"salv\",\n  \"salvatore\": \"salvator\",\n  \"salvatori\": \"salvator\",\n  \"salvavano\": \"salv\",\n  \"salvazion\": \"salvazion\",\n  \"salvazione\": \"salvazion\",\n  \"salve\": \"salv\",\n  \"salvemini\": \"salvemin\",\n  \"salverà\": \"salv\",\n  \"salvezza\": \"salvezz\",\n  \"salvezzà\": \"salvezz\",\n  \"salvi\": \"salv\",\n  \"salviamo\": \"salv\",\n  \"salvo\": \"salv\",\n  \"salvocondotto\": \"salvocondott\",\n  \"saly\": \"saly\",\n  \"sam\": \"sam\",\n  \"sambuca\": \"sambuc\",\n  \"sammy\": \"sammy\",\n  \"samp\": \"samp\",\n  \"sampdoria\": \"sampdor\",\n  \"sampdoriana\": \"sampdorian\",\n  \"sampdoriani\": \"sampdorian\",\n  \"samuel\": \"samuel\",\n  \"samuele\": \"samuel\",\n  \"samurai\": \"samura\",\n  \"san\": \"san\",\n  \"sana\": \"san\",\n  \"sanandola\": \"san\",\n  \"sanare\": \"san\",\n  \"sanatoria\": \"sanator\",\n  \"sanchez\": \"sanchez\",\n  \"sancire\": \"sanc\",\n  \"sancisce\": \"sanc\",\n  \"sancita\": \"sanc\",\n  \"sancito\": \"sanc\",\n  \"sandali\": \"sandal\",\n  \"sande\": \"sand\",\n  \"sanders\": \"sanders\",\n  \"sandi\": \"sand\",\n  \"sandis\": \"sandis\",\n  \"sandpiper\": \"sandpiper\",\n  \"sandra\": \"sandr\",\n  \"sandreani\": \"sandrean\",\n  \"sandrelli\": \"sandrell\",\n  \"sandrine\": \"sandrin\",\n  \"sandro\": \"sandr\",\n  \"sands\": \"sands\",\n  \"sane\": \"san\",\n  \"sangiorgi\": \"sangiorg\",\n  \"sangiuseppese\": \"sangiuseppes\",\n  \"sangro\": \"sangr\",\n  \"sangue\": \"sangu\",\n  \"sanguigne\": \"sanguign\",\n  \"sanguigni\": \"sanguign\",\n  \"sanguinosa\": \"sanguin\",\n  \"sanguinose\": \"sanguin\",\n  \"sanguinosi\": \"sanguin\",\n  \"sani\": \"san\",\n  \"saniem\": \"saniem\",\n  \"sanità\": \"sanit\",\n  \"sanitari\": \"sanitar\",\n  \"sanitaria\": \"sanitar\",\n  \"sanitarie\": \"sanitar\",\n  \"sanitario\": \"sanitar\",\n  \"sankoh\": \"sankoh\",\n  \"sanna\": \"sann\",\n  \"sanno\": \"sann\",\n  \"sano\": \"san\",\n  \"sanpaolo\": \"sanpaol\",\n  \"sanremo\": \"sanrem\",\n  \"sanrocchino\": \"sanrocchin\",\n  \"sansa\": \"sans\",\n  \"sansepolcro\": \"sansepolcr\",\n  \"sansovino\": \"sansovin\",\n  \"sant\": \"sant\",\n  \"santa\": \"sant\",\n  \"santafè\": \"santaf\",\n  \"santagada\": \"santagad\",\n  \"santamente\": \"sant\",\n  \"santander\": \"santander\",\n  \"santaniello\": \"santaniell\",\n  \"santarelli\": \"santarell\",\n  \"santavaleria\": \"santavaler\",\n  \"sante\": \"sant\",\n  \"santer\": \"santer\",\n  \"santerella\": \"santerell\",\n  \"santerini\": \"santerin\",\n  \"santi\": \"sant\",\n  \"santiago\": \"santiag\",\n  \"santificato\": \"santific\",\n  \"santificava\": \"santific\",\n  \"santini\": \"santin\",\n  \"santino\": \"santin\",\n  \"santis\": \"santis\",\n  \"santissima\": \"santissim\",\n  \"santità\": \"santit\",\n  \"santo\": \"sant\",\n  \"santona\": \"santon\",\n  \"santoro\": \"santor\",\n  \"santos\": \"santos\",\n  \"santuari\": \"santuar\",\n  \"sanzionate\": \"sanzion\",\n  \"sanzione\": \"sanzion\",\n  \"sanzioni\": \"sanzion\",\n  \"sapendo\": \"sap\",\n  \"sapendolo\": \"sap\",\n  \"saper\": \"saper\",\n  \"sapere\": \"sap\",\n  \"saperla\": \"sap\",\n  \"saperle\": \"sap\",\n  \"saperli\": \"sap\",\n  \"saperlo\": \"sap\",\n  \"saperne\": \"sap\",\n  \"sapersi\": \"sap\",\n  \"sapesse\": \"sapess\",\n  \"sapesser\": \"sapesser\",\n  \"sapessero\": \"sap\",\n  \"sapessi\": \"sapess\",\n  \"sapessimo\": \"sapessim\",\n  \"sapeste\": \"sapest\",\n  \"sapete\": \"sap\",\n  \"sapeva\": \"sap\",\n  \"sapevamo\": \"sap\",\n  \"sapevan\": \"sapevan\",\n  \"sapevano\": \"sap\",\n  \"sapevate\": \"sap\",\n  \"sapevo\": \"sap\",\n  \"sapiente\": \"sapient\",\n  \"sapienza\": \"sapienz\",\n  \"sapore\": \"sapor\",\n  \"saporita\": \"sapor\",\n  \"sappi\": \"sapp\",\n  \"sappia\": \"sapp\",\n  \"sappiam\": \"sappiam\",\n  \"sappiamo\": \"sapp\",\n  \"sappiano\": \"sapp\",\n  \"sappiate\": \"sapp\",\n  \"sapporo\": \"sappor\",\n  \"saprà\": \"sapr\",\n  \"saprai\": \"sapra\",\n  \"sapranno\": \"saprann\",\n  \"saprebbe\": \"saprebb\",\n  \"saprebbero\": \"saprebber\",\n  \"saprei\": \"sapre\",\n  \"sapremmo\": \"sapr\",\n  \"sapreste\": \"saprest\",\n  \"saprete\": \"sapr\",\n  \"saprò\": \"sapr\",\n  \"saputa\": \"sap\",\n  \"sapute\": \"sap\",\n  \"saputi\": \"sap\",\n  \"saputo\": \"sap\",\n  \"sara\": \"sar\",\n  \"sarà\": \"sar\",\n  \"sarabanda\": \"saraband\",\n  \"saraceno\": \"saracen\",\n  \"saracino\": \"saracin\",\n  \"saràcircondata\": \"saràcircond\",\n  \"sarai\": \"sara\",\n  \"sarajevo\": \"saraj\",\n  \"saran\": \"saran\",\n  \"saranno\": \"sarann\",\n  \"sarcinelli\": \"sarcinell\",\n  \"sardar\": \"sard\",\n  \"sardegna\": \"sardegn\",\n  \"sardi\": \"sard\",\n  \"sardini\": \"sardin\",\n  \"sardonico\": \"sardon\",\n  \"sarebbe\": \"sarebb\",\n  \"sarebber\": \"sarebber\",\n  \"sarebbero\": \"sarebber\",\n  \"sarei\": \"sare\",\n  \"saremmo\": \"sar\",\n  \"saremo\": \"sarem\",\n  \"sareste\": \"sarest\",\n  \"saresti\": \"sarest\",\n  \"sarete\": \"sar\",\n  \"sarid\": \"sarid\",\n  \"sarò\": \"sar\",\n  \"saronno\": \"saronn\",\n  \"sarriò\": \"sarr\",\n  \"sarsina\": \"sarsin\",\n  \"sarto\": \"sart\",\n  \"sartor\": \"sartor\",\n  \"sasib\": \"sasib\",\n  \"sassari\": \"sassar\",\n  \"sassate\": \"sass\",\n  \"sassi\": \"sass\",\n  \"sasso\": \"sass\",\n  \"sassonia\": \"sasson\",\n  \"sassosa\": \"sassos\",\n  \"sassoso\": \"sassos\",\n  \"sat\": \"sat\",\n  \"satana\": \"satan\",\n  \"satanasso\": \"satanass\",\n  \"satanici\": \"satan\",\n  \"satanico\": \"satan\",\n  \"satellitari\": \"satellitar\",\n  \"satellite\": \"satell\",\n  \"satelliti\": \"satell\",\n  \"sathya\": \"sathy\",\n  \"satira\": \"satir\",\n  \"satirico\": \"satir\",\n  \"satolla\": \"satoll\",\n  \"satollar\": \"satoll\",\n  \"satriano\": \"satr\",\n  \"sattanino\": \"sattanin\",\n  \"sattar\": \"satt\",\n  \"sature\": \"satur\",\n  \"saturno\": \"saturn\",\n  \"saudita\": \"saud\",\n  \"saurer\": \"saurer\",\n  \"saurini\": \"saurin\",\n  \"saveriane\": \"saverian\",\n  \"savi\": \"sav\",\n  \"savia\": \"sav\",\n  \"savicevic\": \"savicevic\",\n  \"savieriane\": \"savierian\",\n  \"saviezza\": \"saviezz\",\n  \"savimbi\": \"savimb\",\n  \"savin\": \"savin\",\n  \"savio\": \"sav\",\n  \"savoia\": \"savoi\",\n  \"savona\": \"savon\",\n  \"savonese\": \"savones\",\n  \"saxa\": \"sax\",\n  \"saxarubra\": \"saxarubr\",\n  \"say\": \"say\",\n  \"saziarsi\": \"saz\",\n  \"saziata\": \"saz\",\n  \"sb\": \"sb\",\n  \"sbadatamente\": \"sbadat\",\n  \"sbadigli\": \"sbadigl\",\n  \"sbaglia\": \"sbagl\",\n  \"sbagliar\": \"sbagl\",\n  \"sbagliare\": \"sbagl\",\n  \"sbagliata\": \"sbagl\",\n  \"sbagliate\": \"sbagl\",\n  \"sbagliato\": \"sbagl\",\n  \"sbagliavano\": \"sbagl\",\n  \"sbaglio\": \"sbagl\",\n  \"sbalordimento\": \"sbalord\",\n  \"sbalordita\": \"sbalord\",\n  \"sbalorditi\": \"sbalord\",\n  \"sbalordito\": \"sbalord\",\n  \"sbalordiva\": \"sbalord\",\n  \"sbalordivano\": \"sbalord\",\n  \"sbalzato\": \"sbalz\",\n  \"sbandamento\": \"sband\",\n  \"sbandano\": \"sband\",\n  \"sbandare\": \"sband\",\n  \"sbandarono\": \"sband\",\n  \"sbandarsi\": \"sband\",\n  \"sbandata\": \"sband\",\n  \"sbandati\": \"sband\",\n  \"sbandava\": \"sband\",\n  \"sbandierarli\": \"sbandier\",\n  \"sbarazzarsi\": \"sbarazz\",\n  \"sbarbando\": \"sbarb\",\n  \"sbarbato\": \"sbarb\",\n  \"sbarcare\": \"sbarc\",\n  \"sbarcato\": \"sbarc\",\n  \"sbarcheranno\": \"sbarc\",\n  \"sbarcheremo\": \"sbarc\",\n  \"sbarco\": \"sbarc\",\n  \"sbarra\": \"sbarr\",\n  \"sbarramento\": \"sbarr\",\n  \"sbarrati\": \"sbarr\",\n  \"sbarrato\": \"sbarr\",\n  \"sbattendone\": \"sbatt\",\n  \"sbattuta\": \"sbatt\",\n  \"sbattuto\": \"sbatt\",\n  \"sbiadito\": \"sbiad\",\n  \"sbieco\": \"sbiec\",\n  \"sbigottita\": \"sbigott\",\n  \"sbigottite\": \"sbigott\",\n  \"sbigottito\": \"sbigott\",\n  \"sbilanciata\": \"sbilanc\",\n  \"sbirciando\": \"sbirc\",\n  \"sbirraglia\": \"sbirragl\",\n  \"sbizzarrire\": \"sbizzarr\",\n  \"sblocca\": \"sblocc\",\n  \"sbloccare\": \"sblocc\",\n  \"sbloccati\": \"sblocc\",\n  \"sblocco\": \"sblocc\",\n  \"sboccan\": \"sboccan\",\n  \"sboccano\": \"sbocc\",\n  \"sboccare\": \"sbocc\",\n  \"sboccarono\": \"sbocc\",\n  \"sboccarvi\": \"sbocc\",\n  \"sboccati\": \"sbocc\",\n  \"sboccato\": \"sbocc\",\n  \"sboccavano\": \"sbocc\",\n  \"sbocchi\": \"sbocc\",\n  \"sbocciato\": \"sbocc\",\n  \"sbocco\": \"sbocc\",\n  \"sbocconcellando\": \"sbocconcell\",\n  \"sborsavan\": \"sborsavan\",\n  \"sbracia\": \"sbrac\",\n  \"sbrancassero\": \"sbranc\",\n  \"sbrancati\": \"sbranc\",\n  \"sbrattare\": \"sbratt\",\n  \"sbrigarlo\": \"sbrig\",\n  \"sbrigarsi\": \"sbrig\",\n  \"sbrigarvi\": \"sbrig\",\n  \"sbrigatevi\": \"sbrigat\",\n  \"sbrigati\": \"sbrig\",\n  \"sbrigativi\": \"sbrigat\",\n  \"sbrigato\": \"sbrig\",\n  \"sbrigava\": \"sbrig\",\n  \"sbrigò\": \"sbrig\",\n  \"sbucar\": \"sbuc\",\n  \"sbucati\": \"sbuc\",\n  \"sbudellarsi\": \"sbudell\",\n  \"sbuffando\": \"sbuff\",\n  \"scabrosa\": \"scabros\",\n  \"scabrosi\": \"scabros\",\n  \"scabroso\": \"scabros\",\n  \"scacchi\": \"scacc\",\n  \"scacchiera\": \"scacchier\",\n  \"scacchistico\": \"scacchist\",\n  \"scacciar\": \"scacc\",\n  \"scacciare\": \"scacc\",\n  \"scacciarlo\": \"scacc\",\n  \"scacco\": \"scacc\",\n  \"scade\": \"scad\",\n  \"scadendo\": \"scad\",\n  \"scadenti\": \"scadent\",\n  \"scadenza\": \"scadenz\",\n  \"scadenze\": \"scadenz\",\n  \"scadere\": \"scad\",\n  \"scaduta\": \"scad\",\n  \"scaduto\": \"scad\",\n  \"scaffale\": \"scaffal\",\n  \"scaffali\": \"scaffal\",\n  \"scaglia\": \"scagl\",\n  \"scagliandogli\": \"scagl\",\n  \"scagliati\": \"scagl\",\n  \"scagliato\": \"scagl\",\n  \"scagliò\": \"scagl\",\n  \"scala\": \"scal\",\n  \"scalabrelli\": \"scalabrell\",\n  \"scalar\": \"scal\",\n  \"scalata\": \"scal\",\n  \"scalato\": \"scal\",\n  \"scalcinate\": \"scalcin\",\n  \"scalcinatura\": \"scalcinatur\",\n  \"scalcinavano\": \"scalcin\",\n  \"scalda\": \"scald\",\n  \"scaldata\": \"scald\",\n  \"scaldato\": \"scald\",\n  \"scale\": \"scal\",\n  \"scalensis\": \"scalensis\",\n  \"scaletta\": \"scalett\",\n  \"scalfari\": \"scalfar\",\n  \"scalfaro\": \"scalfar\",\n  \"scali\": \"scal\",\n  \"scalia\": \"scal\",\n  \"scalini\": \"scalin\",\n  \"scalino\": \"scalin\",\n  \"scalmanarsi\": \"scalman\",\n  \"scalo\": \"scal\",\n  \"scalpiccìo\": \"scalpiccì\",\n  \"scalpo\": \"scalp\",\n  \"scaltre\": \"scaltr\",\n  \"scaltro\": \"scaltr\",\n  \"scalzacane\": \"scalzacan\",\n  \"scalzacani\": \"scalzacan\",\n  \"scalzar\": \"scalz\",\n  \"scalze\": \"scalz\",\n  \"scalzi\": \"scalz\",\n  \"scalzo\": \"scalz\",\n  \"scambi\": \"scamb\",\n  \"scambiandole\": \"scamb\",\n  \"scambiandosi\": \"scamb\",\n  \"scambiare\": \"scamb\",\n  \"scambiate\": \"scamb\",\n  \"scambiati\": \"scamb\",\n  \"scambiato\": \"scamb\",\n  \"scambievolmente\": \"scambievol\",\n  \"scambio\": \"scamb\",\n  \"scampaforca\": \"scampaforc\",\n  \"scampanare\": \"scampan\",\n  \"scampanava\": \"scampan\",\n  \"scampanìo\": \"scampanì\",\n  \"scampata\": \"scamp\",\n  \"scampati\": \"scamp\",\n  \"scampo\": \"scamp\",\n  \"scandal\": \"scandal\",\n  \"scandalo\": \"scandal\",\n  \"scandalosa\": \"scandal\",\n  \"scandaloso\": \"scandal\",\n  \"scandendo\": \"scand\",\n  \"scandinavi\": \"scandin\",\n  \"scandisce\": \"scand\",\n  \"scandito\": \"scand\",\n  \"scandoli\": \"scandol\",\n  \"scandolo\": \"scandol\",\n  \"scanio\": \"scan\",\n  \"scannare\": \"scann\",\n  \"scansar\": \"scans\",\n  \"scansare\": \"scans\",\n  \"scansarle\": \"scans\",\n  \"scansarli\": \"scans\",\n  \"scansarne\": \"scans\",\n  \"scansata\": \"scans\",\n  \"scansate\": \"scans\",\n  \"scansato\": \"scans\",\n  \"scansava\": \"scans\",\n  \"scansc\": \"scansc\",\n  \"scantonarono\": \"scanton\",\n  \"scapataggini\": \"scapataggin\",\n  \"scapestrati\": \"scapestr\",\n  \"scapestrato\": \"scapestr\",\n  \"scapezzati\": \"scapezz\",\n  \"scapitare\": \"scapit\",\n  \"scapolo\": \"scapol\",\n  \"scappa\": \"scapp\",\n  \"scappando\": \"scapp\",\n  \"scappano\": \"scapp\",\n  \"scappar\": \"scapp\",\n  \"scappare\": \"scapp\",\n  \"scappargli\": \"scapp\",\n  \"scapparon\": \"scapparon\",\n  \"scapparono\": \"scapp\",\n  \"scappassero\": \"scapp\",\n  \"scappata\": \"scapp\",\n  \"scappatale\": \"scappatal\",\n  \"scappate\": \"scapp\",\n  \"scappatella\": \"scappatell\",\n  \"scappati\": \"scapp\",\n  \"scappatina\": \"scappatin\",\n  \"scappato\": \"scapp\",\n  \"scappatuccia\": \"scappatucc\",\n  \"scappava\": \"scapp\",\n  \"scappavano\": \"scapp\",\n  \"scappellata\": \"scappell\",\n  \"scappellate\": \"scappell\",\n  \"scappellotto\": \"scappellott\",\n  \"scapperà\": \"scapp\",\n  \"scappi\": \"scapp\",\n  \"scappò\": \"scapp\",\n  \"scarabocchiando\": \"scarabocc\",\n  \"scarabocchiati\": \"scarabocc\",\n  \"scarabocchio\": \"scarabocc\",\n  \"scaramuccia\": \"scaramucc\",\n  \"scaramuzza\": \"scaramuzz\",\n  \"scaraventare\": \"scaravent\",\n  \"scaraventato\": \"scaravent\",\n  \"scarchilli\": \"scarchill\",\n  \"scarfaro\": \"scarfar\",\n  \"scarica\": \"scaric\",\n  \"scaricare\": \"scaric\",\n  \"scaricarsi\": \"scaric\",\n  \"scarichi\": \"scaric\",\n  \"scarico\": \"scaric\",\n  \"scarlatta\": \"scarlatt\",\n  \"scarlatte\": \"scarlatt\",\n  \"scarlino\": \"scarlin\",\n  \"scarna\": \"scarn\",\n  \"scarne\": \"scarn\",\n  \"scarniti\": \"scarn\",\n  \"scarno\": \"scarn\",\n  \"scarpe\": \"scarp\",\n  \"scarpelli\": \"scarpell\",\n  \"scarpette\": \"scarpett\",\n  \"scarponi\": \"scarpon\",\n  \"scarpuzzi\": \"scarpuzz\",\n  \"scarsa\": \"scars\",\n  \"scarsamente\": \"scars\",\n  \"scarse\": \"scars\",\n  \"scarseggia\": \"scarsegg\",\n  \"scarsezza\": \"scarsezz\",\n  \"scarsi\": \"scars\",\n  \"scarsità\": \"scarsit\",\n  \"scarso\": \"scars\",\n  \"scartabellando\": \"scartabell\",\n  \"scartafaccio\": \"scartafacc\",\n  \"scarto\": \"scart\",\n  \"scassinar\": \"scassin\",\n  \"scatenamenti\": \"scaten\",\n  \"scatenando\": \"scaten\",\n  \"scatenare\": \"scaten\",\n  \"scatenata\": \"scaten\",\n  \"scatenate\": \"scaten\",\n  \"scatenato\": \"scaten\",\n  \"scatenerebbe\": \"scaten\",\n  \"scateni\": \"scaten\",\n  \"scatola\": \"scatol\",\n  \"scatole\": \"scatol\",\n  \"scatolino\": \"scatolin\",\n  \"scatta\": \"scatt\",\n  \"scattare\": \"scatt\",\n  \"scattate\": \"scatt\",\n  \"scattati\": \"scatt\",\n  \"scattato\": \"scatt\",\n  \"scatteranno\": \"scatt\",\n  \"scatterebbe\": \"scatt\",\n  \"scatto\": \"scatt\",\n  \"scaturire\": \"scatur\",\n  \"scaturisca\": \"scatur\",\n  \"scaturita\": \"scatur\",\n  \"scaturito\": \"scatur\",\n  \"scavalcando\": \"scavalc\",\n  \"scavar\": \"scav\",\n  \"scavare\": \"scav\",\n  \"scavata\": \"scav\",\n  \"scavato\": \"scav\",\n  \"scavo\": \"scav\",\n  \"scavolini\": \"scavolin\",\n  \"scegliamo\": \"scegl\",\n  \"sceglie\": \"scegl\",\n  \"scegliendo\": \"scegl\",\n  \"scegliendolo\": \"scegl\",\n  \"scegliendomi\": \"scegl\",\n  \"sceglieranno\": \"scegl\",\n  \"scegliere\": \"scegl\",\n  \"scegliersi\": \"scegl\",\n  \"scegliete\": \"scegl\",\n  \"sceleraggini\": \"sceleraggin\",\n  \"scelerata\": \"sceler\",\n  \"scelerato\": \"sceler\",\n  \"scelga\": \"scelg\",\n  \"scelgano\": \"scelg\",\n  \"scelgono\": \"scelg\",\n  \"scellerata\": \"sceller\",\n  \"scelleratamente\": \"scellerat\",\n  \"scellerate\": \"sceller\",\n  \"scelleratezza\": \"scelleratezz\",\n  \"scelleratezze\": \"scelleratezz\",\n  \"scellerati\": \"sceller\",\n  \"scellerato\": \"sceller\",\n  \"scellino\": \"scellin\",\n  \"scelse\": \"scels\",\n  \"scelsero\": \"scelser\",\n  \"scelta\": \"scelt\",\n  \"scelte\": \"scelt\",\n  \"scelti\": \"scelt\",\n  \"scelto\": \"scelt\",\n  \"scema\": \"scem\",\n  \"scemando\": \"scem\",\n  \"scemare\": \"scem\",\n  \"scemata\": \"scem\",\n  \"scemati\": \"scem\",\n  \"scemato\": \"scem\",\n  \"scemo\": \"scem\",\n  \"scempiato\": \"scemp\",\n  \"scempio\": \"scemp\",\n  \"scena\": \"scen\",\n  \"scenario\": \"scenar\",\n  \"scenata\": \"scen\",\n  \"scende\": \"scend\",\n  \"scendendo\": \"scend\",\n  \"scender\": \"scender\",\n  \"scenderà\": \"scend\",\n  \"scenderanno\": \"scend\",\n  \"scendere\": \"scend\",\n  \"scendesse\": \"scendess\",\n  \"scendeva\": \"scend\",\n  \"scendevano\": \"scend\",\n  \"scendon\": \"scendon\",\n  \"scendono\": \"scend\",\n  \"scene\": \"scen\",\n  \"sceneggiata\": \"scenegg\",\n  \"sceneggiati\": \"scenegg\",\n  \"sceneggiato\": \"scenegg\",\n  \"scenografia\": \"scenograf\",\n  \"scerso\": \"scers\",\n  \"scesa\": \"sces\",\n  \"scese\": \"sces\",\n  \"scesero\": \"sceser\",\n  \"scesi\": \"sces\",\n  \"sceso\": \"sces\",\n  \"scetticismo\": \"scettic\",\n  \"scettico\": \"scettic\",\n  \"scettro\": \"scettr\",\n  \"schaefer\": \"schaefer\",\n  \"scheda\": \"sched\",\n  \"schede\": \"sched\",\n  \"schedina\": \"schedin\",\n  \"schegge\": \"schegg\",\n  \"scheggiati\": \"schegg\",\n  \"scheggiato\": \"schegg\",\n  \"scheletri\": \"scheletr\",\n  \"scheletro\": \"scheletr\",\n  \"schema\": \"schem\",\n  \"schemi\": \"schem\",\n  \"schenardi\": \"schenard\",\n  \"schenchio\": \"schenc\",\n  \"scherma\": \"scherm\",\n  \"schermaglie\": \"schermagl\",\n  \"schermendo\": \"scherm\",\n  \"schermi\": \"scherm\",\n  \"schermirsi\": \"scherm\",\n  \"schermito\": \"scherm\",\n  \"schermiva\": \"scherm\",\n  \"schermo\": \"scherm\",\n  \"scherni\": \"schern\",\n  \"schernire\": \"schern\",\n  \"schernito\": \"schern\",\n  \"scherno\": \"schern\",\n  \"scherrer\": \"scherrer\",\n  \"scherza\": \"scherz\",\n  \"scherzando\": \"scherz\",\n  \"scherzare\": \"scherz\",\n  \"scherzavamo\": \"scherz\",\n  \"scherzevole\": \"scherzevol\",\n  \"scherzi\": \"scherz\",\n  \"scherzo\": \"scherz\",\n  \"schiacciar\": \"schiacc\",\n  \"schiacciata\": \"schiacc\",\n  \"schiacciato\": \"schiacc\",\n  \"schiaffi\": \"schiaff\",\n  \"schiamazzano\": \"schiamazz\",\n  \"schiamazzare\": \"schiamazz\",\n  \"schiamazzi\": \"schiamazz\",\n  \"schiamazzo\": \"schiamazz\",\n  \"schiantati\": \"schiant\",\n  \"schianto\": \"schiant\",\n  \"schiapexw\": \"schiapexw\",\n  \"schiapparelli\": \"schiapparell\",\n  \"schiarimenti\": \"schiar\",\n  \"schiarimento\": \"schiar\",\n  \"schiarire\": \"schiar\",\n  \"schiava\": \"schi\",\n  \"schiavo\": \"schi\",\n  \"schiena\": \"schien\",\n  \"schiene\": \"schien\",\n  \"schiera\": \"schier\",\n  \"schieramenti\": \"schier\",\n  \"schieramento\": \"schier\",\n  \"schieramentò\": \"schierament\",\n  \"schierando\": \"schier\",\n  \"schierarci\": \"schier\",\n  \"schierarsi\": \"schier\",\n  \"schierata\": \"schier\",\n  \"schierate\": \"schier\",\n  \"schierati\": \"schier\",\n  \"schierato\": \"schier\",\n  \"schierava\": \"schier\",\n  \"schiere\": \"schi\",\n  \"schietta\": \"schiett\",\n  \"schiettamente\": \"schiett\",\n  \"schiettezza\": \"schiettezz\",\n  \"schietto\": \"schiett\",\n  \"schifo\": \"schif\",\n  \"schifosi\": \"schifos\",\n  \"schinardi\": \"schinard\",\n  \"schio\": \"schi\",\n  \"schiodato\": \"schiod\",\n  \"schioppettata\": \"schioppett\",\n  \"schioppettate\": \"schioppett\",\n  \"schioppi\": \"schiopp\",\n  \"schioppo\": \"schiopp\",\n  \"schip\": \"schip\",\n  \"schiribizzo\": \"schiribizz\",\n  \"schisano\": \"schis\",\n  \"schiuma\": \"schium\",\n  \"schivafatiche\": \"schivafat\",\n  \"schivar\": \"schiv\",\n  \"schivare\": \"schiv\",\n  \"schivarli\": \"schiv\",\n  \"schizza\": \"schizz\",\n  \"schizzi\": \"schizz\",\n  \"schizzinosa\": \"schizzin\",\n  \"schizzinoso\": \"schizzin\",\n  \"schizzo\": \"schizz\",\n  \"schloendorff\": \"schloendorff\",\n  \"schmid\": \"schmid\",\n  \"schmidt\": \"schmidt\",\n  \"schott\": \"schott\",\n  \"schroeder\": \"schroeder\",\n  \"schuster\": \"schuster\",\n  \"schwarz\": \"schwarz\",\n  \"schwingsackl\": \"schwingsackl\",\n  \"sci\": \"sci\",\n  \"sciabola\": \"sciabol\",\n  \"sciabole\": \"sciabol\",\n  \"sciacallaggi\": \"sciacallagg\",\n  \"sciacallaggio\": \"sciacallagg\",\n  \"sciacalle\": \"sciacall\",\n  \"sciacca\": \"sciacc\",\n  \"sciagura\": \"sciagur\",\n  \"sciagurata\": \"sciagur\",\n  \"sciagurate\": \"sciagur\",\n  \"sciagurati\": \"sciagur\",\n  \"sciagurato\": \"sciagur\",\n  \"sciagure\": \"sciagur\",\n  \"scialacquava\": \"scialacqu\",\n  \"scialacquìo\": \"scialacquì\",\n  \"scialmente\": \"scialment\",\n  \"sciame\": \"sciam\",\n  \"sciarelli\": \"sciarell\",\n  \"sciarpa\": \"sciarp\",\n  \"sciarpe\": \"sciarp\",\n  \"sciascia\": \"sciasc\",\n  \"sciatore\": \"sciator\",\n  \"sciatori\": \"sciator\",\n  \"scientifica\": \"scientif\",\n  \"scientificamente\": \"scientif\",\n  \"scientifici\": \"scientif\",\n  \"scientology\": \"scientology\",\n  \"scienza\": \"scienz\",\n  \"scienze\": \"scienz\",\n  \"scienziata\": \"scienz\",\n  \"scienziato\": \"scienz\",\n  \"scietà\": \"sciet\",\n  \"sciiti\": \"sci\",\n  \"scilinguagnolo\": \"scilinguagnol\",\n  \"scilla\": \"scill\",\n  \"scimmiè\": \"scimm\",\n  \"scimone\": \"scimon\",\n  \"scintillavan\": \"scintillavan\",\n  \"sciocca\": \"sciocc\",\n  \"scioccata\": \"sciocc\",\n  \"sciocche\": \"sciocc\",\n  \"sciocchezza\": \"sciocchezz\",\n  \"sciocchezze\": \"sciocchezz\",\n  \"sciocchi\": \"sciocc\",\n  \"sciocco\": \"sciocc\",\n  \"sciocconi\": \"scioccon\",\n  \"scioglie\": \"sciogl\",\n  \"sciogliendo\": \"sciogl\",\n  \"sciogliendosi\": \"sciogl\",\n  \"scioglier\": \"scioglier\",\n  \"sciogliere\": \"sciogl\",\n  \"sciogliervi\": \"sciogl\",\n  \"scioglieva\": \"sciogl\",\n  \"scioglimento\": \"sciogl\",\n  \"sciolse\": \"sciols\",\n  \"sciolta\": \"sciolt\",\n  \"sciolte\": \"sciolt\",\n  \"scioltì\": \"sciolt\",\n  \"sciolto\": \"sciolt\",\n  \"scioperanti\": \"scioper\",\n  \"sciopererà\": \"scioper\",\n  \"scioperi\": \"scioper\",\n  \"sciopero\": \"scioper\",\n  \"sciorinata\": \"sciorin\",\n  \"scipione\": \"scipion\",\n  \"scirè\": \"scir\",\n  \"scissione\": \"scission\",\n  \"sciupata\": \"sciup\",\n  \"sciupinìo\": \"sciupinì\",\n  \"sciupone\": \"sciupon\",\n  \"scivolamento\": \"scivol\",\n  \"scivolando\": \"scivol\",\n  \"scivolare\": \"scivol\",\n  \"scivoloso\": \"scivol\",\n  \"scoccassero\": \"scocc\",\n  \"scoccava\": \"scocc\",\n  \"scocco\": \"scocc\",\n  \"scoccò\": \"scocc\",\n  \"scodella\": \"scodell\",\n  \"scodellando\": \"scodell\",\n  \"scodellare\": \"scodell\",\n  \"scodellata\": \"scodell\",\n  \"scodelle\": \"scodell\",\n  \"scodelletta\": \"scodellett\",\n  \"scodellò\": \"scodell\",\n  \"scoglio\": \"scogl\",\n  \"scognamiglio\": \"scognamigl\",\n  \"scognamigliò\": \"scognamigl\",\n  \"scola\": \"scol\",\n  \"scolari\": \"scolar\",\n  \"scolastica\": \"scolast\",\n  \"scolastici\": \"scolast\",\n  \"scolastico\": \"scolast\",\n  \"scollegarsi\": \"scolleg\",\n  \"scollegata\": \"scolleg\",\n  \"scollo\": \"scoll\",\n  \"scolorita\": \"scolor\",\n  \"scolorito\": \"scolor\",\n  \"scolpiva\": \"scolp\",\n  \"scombaciati\": \"scombac\",\n  \"scombussolamento\": \"scombussol\",\n  \"scommessa\": \"scommess\",\n  \"scommesse\": \"scommess\",\n  \"scommettere\": \"scommett\",\n  \"scommetterei\": \"scommett\",\n  \"scommettiamo\": \"scommett\",\n  \"scommettono\": \"scommett\",\n  \"scomodano\": \"scomod\",\n  \"scomodarsi\": \"scomod\",\n  \"scomodato\": \"scomod\",\n  \"scomodo\": \"scomod\",\n  \"scompaginarsi\": \"scompagin\",\n  \"scompagnati\": \"scompagn\",\n  \"scompagnato\": \"scompagn\",\n  \"scomparendo\": \"scompar\",\n  \"scomparir\": \"scompar\",\n  \"scomparire\": \"scompar\",\n  \"scompariva\": \"scompar\",\n  \"scomparsa\": \"scompars\",\n  \"scomparsi\": \"scomp\",\n  \"scomparso\": \"scompars\",\n  \"scomparve\": \"scomparv\",\n  \"scompigli\": \"scompigl\",\n  \"scompigliano\": \"scompigl\",\n  \"scompigliata\": \"scompigl\",\n  \"scompigliati\": \"scompigl\",\n  \"scompiglio\": \"scompigl\",\n  \"scompiglìo\": \"scompiglì\",\n  \"scompor\": \"scompor\",\n  \"scomporre\": \"scomporr\",\n  \"scomporsi\": \"scompors\",\n  \"scomposizione\": \"scomposizion\",\n  \"scomposta\": \"scompost\",\n  \"scomposte\": \"scompost\",\n  \"scomposti\": \"scompost\",\n  \"scomposto\": \"scompost\",\n  \"scomunica\": \"scomun\",\n  \"scomunicata\": \"scomunic\",\n  \"scomunicate\": \"scomunic\",\n  \"sconce\": \"sconc\",\n  \"sconcerta\": \"sconcert\",\n  \"sconcertante\": \"sconcert\",\n  \"sconcertata\": \"sconcert\",\n  \"sconcertati\": \"sconcert\",\n  \"sconcertato\": \"sconcert\",\n  \"sconcia\": \"sconc\",\n  \"sconcio\": \"sconc\",\n  \"sconficca\": \"sconficc\",\n  \"sconficcare\": \"sconficc\",\n  \"sconficcata\": \"sconficc\",\n  \"sconficcati\": \"sconficc\",\n  \"sconficcato\": \"sconficc\",\n  \"sconfigge\": \"sconfigg\",\n  \"sconfiggeremo\": \"sconfigg\",\n  \"sconfiggerlo\": \"sconfigg\",\n  \"sconfitta\": \"sconfitt\",\n  \"sconfitte\": \"sconfitt\",\n  \"sconfitti\": \"sconfitt\",\n  \"sconfitto\": \"sconfitt\",\n  \"sconforto\": \"sconfort\",\n  \"scongiura\": \"scongiur\",\n  \"scongiurando\": \"scongiur\",\n  \"scongiurare\": \"scongiur\",\n  \"scongiuro\": \"scongiur\",\n  \"sconnesse\": \"sconness\",\n  \"sconnesso\": \"sconness\",\n  \"sconoscenza\": \"sconoscent\",\n  \"sconosciuta\": \"sconosc\",\n  \"sconosciute\": \"sconosc\",\n  \"sconosciuti\": \"sconosc\",\n  \"sconosciuto\": \"sconosc\",\n  \"sconquasso\": \"sconquass\",\n  \"sconsacrati\": \"sconsacr\",\n  \"sconsiglia\": \"sconsigl\",\n  \"sconsolato\": \"sconsol\",\n  \"scontan\": \"scontan\",\n  \"scontare\": \"scont\",\n  \"scontato\": \"scont\",\n  \"scontenta\": \"scontent\",\n  \"scontento\": \"scontent\",\n  \"sconto\": \"scont\",\n  \"scontri\": \"scontr\",\n  \"scontrini\": \"scontrin\",\n  \"scontro\": \"scontr\",\n  \"sconvolge\": \"sconvolg\",\n  \"sconvolgimento\": \"sconvolg\",\n  \"sconvolta\": \"sconvolt\",\n  \"sconvolto\": \"sconvolt\",\n  \"sconziano\": \"sconz\",\n  \"scooby\": \"scooby\",\n  \"scopa\": \"scop\",\n  \"scope\": \"scop\",\n  \"scopelliti\": \"scopell\",\n  \"scoperta\": \"scopert\",\n  \"scoperte\": \"scopert\",\n  \"scoperti\": \"scop\",\n  \"scoperto\": \"scopert\",\n  \"scopi\": \"scop\",\n  \"scopo\": \"scop\",\n  \"scoppiano\": \"scopp\",\n  \"scoppiasse\": \"scopp\",\n  \"scoppiata\": \"scopp\",\n  \"scoppiati\": \"scopp\",\n  \"scoppiato\": \"scopp\",\n  \"scoppiava\": \"scopp\",\n  \"scoppiavano\": \"scopp\",\n  \"scoppietta\": \"scoppiett\",\n  \"scoppiettìo\": \"scoppiettì\",\n  \"scoppio\": \"scopp\",\n  \"scoppiò\": \"scopp\",\n  \"scopre\": \"scopr\",\n  \"scoprendo\": \"scopr\",\n  \"scoprendolo\": \"scopr\",\n  \"scoprendosegli\": \"scoprendosegl\",\n  \"scoprì\": \"scopr\",\n  \"scoprir\": \"scopr\",\n  \"scoprirci\": \"scopr\",\n  \"scoprire\": \"scopr\",\n  \"scopriremo\": \"scopr\",\n  \"scoprirlo\": \"scopr\",\n  \"scoprirne\": \"scopr\",\n  \"scoprisse\": \"scopriss\",\n  \"scopritore\": \"scopritor\",\n  \"scoraggito\": \"scoragg\",\n  \"scorcia\": \"scorc\",\n  \"scorciatoia\": \"scorciatoi\",\n  \"scordato\": \"scord\",\n  \"scorgendo\": \"scorg\",\n  \"scorgendogli\": \"scorg\",\n  \"scorgere\": \"scorg\",\n  \"scorgeva\": \"scorg\",\n  \"scorporata\": \"scorpor\",\n  \"scorporo\": \"scorpor\",\n  \"scorre\": \"scorr\",\n  \"scorrendola\": \"scorr\",\n  \"scorrer\": \"scorrer\",\n  \"scorrere\": \"scorr\",\n  \"scorretta\": \"scorrett\",\n  \"scorrettezze\": \"scorrettezz\",\n  \"scorretti\": \"scorrett\",\n  \"scorretto\": \"scorrett\",\n  \"scorreva\": \"scorr\",\n  \"scorrevano\": \"scorr\",\n  \"scorrono\": \"scorr\",\n  \"scorsa\": \"scors\",\n  \"scorse\": \"scors\",\n  \"scorsero\": \"scorser\",\n  \"scorsese\": \"scorses\",\n  \"scorsi\": \"scors\",\n  \"scorso\": \"scors\",\n  \"scorta\": \"scort\",\n  \"scortando\": \"scort\",\n  \"scortare\": \"scort\",\n  \"scortarla\": \"scort\",\n  \"scortata\": \"scort\",\n  \"scortate\": \"scort\",\n  \"scortati\": \"scort\",\n  \"scortato\": \"scort\",\n  \"scorte\": \"scort\",\n  \"scoscendendo\": \"scoscend\",\n  \"scossa\": \"scoss\",\n  \"scosse\": \"scoss\",\n  \"scossi\": \"scoss\",\n  \"scosso\": \"scoss\",\n  \"scostandosi\": \"scost\",\n  \"scostare\": \"scost\",\n  \"scostò\": \"scost\",\n  \"scotendo\": \"scot\",\n  \"scoteva\": \"scot\",\n  \"scott\": \"scott\",\n  \"scotta\": \"scott\",\n  \"scottandogli\": \"scott\",\n  \"scottanti\": \"scottant\",\n  \"scottava\": \"scott\",\n  \"scotti\": \"scott\",\n  \"scottish\": \"scottish\",\n  \"scovar\": \"scov\",\n  \"scovare\": \"scov\",\n  \"scozia\": \"scoz\",\n  \"screditare\": \"scredit\",\n  \"screen\": \"screen\",\n  \"scrematura\": \"scrematur\",\n  \"scribi\": \"scrib\",\n  \"scricchiolasse\": \"scricchiol\",\n  \"scrigno\": \"scrign\",\n  \"scrisse\": \"scriss\",\n  \"scritta\": \"scritt\",\n  \"scritte\": \"scritt\",\n  \"scritti\": \"scritt\",\n  \"scritto\": \"scritt\",\n  \"scrittore\": \"scrittor\",\n  \"scrittori\": \"scrittor\",\n  \"scrittrice\": \"scrittric\",\n  \"scrittura\": \"scrittur\",\n  \"scriuve\": \"scriuv\",\n  \"scrivano\": \"scriv\",\n  \"scrive\": \"scriv\",\n  \"scrivendo\": \"scriv\",\n  \"scrivente\": \"scrivent\",\n  \"scriver\": \"scriver\",\n  \"scrivere\": \"scriv\",\n  \"scriverebbe\": \"scriv\",\n  \"scriverne\": \"scriv\",\n  \"scrivesse\": \"scrivess\",\n  \"scrivete\": \"scriv\",\n  \"scriveva\": \"scriv\",\n  \"scrivevano\": \"scriv\",\n  \"scriviamo\": \"scriv\",\n  \"scrivono\": \"scriv\",\n  \"scrl\": \"scrl\",\n  \"scrosciante\": \"scrosciant\",\n  \"scrosciar\": \"scrosc\",\n  \"scroscio\": \"scrosc\",\n  \"scrostate\": \"scrost\",\n  \"scrupoli\": \"scrupol\",\n  \"scrupolo\": \"scrupol\",\n  \"scrupolosa\": \"scrupol\",\n  \"scrutinio\": \"scrutin\",\n  \"scuderi\": \"scuder\",\n  \"scuderie\": \"scuder\",\n  \"scudetto\": \"scudett\",\n  \"scudi\": \"scud\",\n  \"scudieri\": \"scudier\",\n  \"scudisciate\": \"scudisc\",\n  \"scudo\": \"scud\",\n  \"sculaccia\": \"sculacc\",\n  \"scully\": \"scully\",\n  \"scultori\": \"scultor\",\n  \"sculture\": \"scultur\",\n  \"scuola\": \"scuol\",\n  \"scuole\": \"scuol\",\n  \"scure\": \"scur\",\n  \"scuri\": \"scur\",\n  \"scusa\": \"scus\",\n  \"scusandosi\": \"scus\",\n  \"scusar\": \"scus\",\n  \"scusare\": \"scus\",\n  \"scusarla\": \"scus\",\n  \"scusarne\": \"scus\",\n  \"scusarsi\": \"scus\",\n  \"scusarvi\": \"scus\",\n  \"scusasse\": \"scus\",\n  \"scusate\": \"scus\",\n  \"scusava\": \"scus\",\n  \"scuse\": \"scus\",\n  \"scuserà\": \"scus\",\n  \"scusi\": \"scus\",\n  \"sdegnarsi\": \"sdegn\",\n  \"sdegnata\": \"sdegn\",\n  \"sdegnate\": \"sdegn\",\n  \"sdegnati\": \"sdegn\",\n  \"sdegni\": \"sdegn\",\n  \"sdegno\": \"sdegn\",\n  \"sdegnosa\": \"sdegnos\",\n  \"sdegnosi\": \"sdegnos\",\n  \"sdraiarsi\": \"sdrai\",\n  \"sdraiata\": \"sdrai\",\n  \"sdraiate\": \"sdrai\",\n  \"sdraiati\": \"sdrai\",\n  \"sdrucciolar\": \"sdrucciol\",\n  \"sdrucciolare\": \"sdrucciol\",\n  \"sdrucciolava\": \"sdrucciol\",\n  \"sdrucciolò\": \"sdrucciol\",\n  \"se\": \"se\",\n  \"sé\": \"sè\",\n  \"sè\": \"sè\",\n  \"seagull\": \"seagull\",\n  \"sean\": \"sean\",\n  \"seattle\": \"seattl\",\n  \"sebastian\": \"sebastian\",\n  \"sebastiani\": \"sebastian\",\n  \"sebastiano\": \"sebast\",\n  \"sebben\": \"sebben\",\n  \"sebbene\": \"sebben\",\n  \"secca\": \"secc\",\n  \"seccano\": \"secc\",\n  \"seccare\": \"secc\",\n  \"seccarvi\": \"secc\",\n  \"seccata\": \"secc\",\n  \"seccatore\": \"seccator\",\n  \"seccatori\": \"seccator\",\n  \"seccatura\": \"seccatur\",\n  \"secche\": \"secc\",\n  \"seccherebbe\": \"secc\",\n  \"secchi\": \"secc\",\n  \"secchie\": \"secc\",\n  \"secchio\": \"secc\",\n  \"secco\": \"secc\",\n  \"secentista\": \"secent\",\n  \"secessione\": \"secession\",\n  \"secessionismo\": \"secession\",\n  \"secessionista\": \"secession\",\n  \"secessionisti\": \"secession\",\n  \"secit\": \"secit\",\n  \"seco\": \"sec\",\n  \"secolare\": \"secol\",\n  \"secolaresca\": \"secolaresc\",\n  \"secolari\": \"secolar\",\n  \"secoli\": \"secol\",\n  \"secolo\": \"secol\",\n  \"second\": \"second\",\n  \"seconda\": \"second\",\n  \"secondando\": \"second\",\n  \"secondar\": \"second\",\n  \"secondare\": \"second\",\n  \"secondaria\": \"secondar\",\n  \"secondariamente\": \"secondar\",\n  \"secondario\": \"secondar\",\n  \"secondarlo\": \"second\",\n  \"secondato\": \"second\",\n  \"secondava\": \"second\",\n  \"secondavano\": \"second\",\n  \"secondi\": \"second\",\n  \"secondo\": \"second\",\n  \"secret\": \"secret\",\n  \"security\": \"security\",\n  \"sed\": \"sed\",\n  \"sedare\": \"sed\",\n  \"sedata\": \"sed\",\n  \"sedate\": \"sed\",\n  \"sedativi\": \"sedat\",\n  \"sedava\": \"sed\",\n  \"sede\": \"sed\",\n  \"sedendo\": \"sed\",\n  \"sedente\": \"sedent\",\n  \"seder\": \"seder\",\n  \"sedere\": \"sed\",\n  \"sederi\": \"seder\",\n  \"sedersi\": \"sed\",\n  \"sedette\": \"sedett\",\n  \"sedeva\": \"sed\",\n  \"sedevano\": \"sed\",\n  \"sedi\": \"sed\",\n  \"sedia\": \"sed\",\n  \"sedicente\": \"sedicent\",\n  \"sedicenti\": \"sedicent\",\n  \"sedicesimo\": \"sedicesim\",\n  \"sedici\": \"sedic\",\n  \"sedie\": \"sed\",\n  \"sedile\": \"sedil\",\n  \"sedili\": \"sedil\",\n  \"sedizione\": \"sedizion\",\n  \"sediziose\": \"sediz\",\n  \"sedizioso\": \"sediz\",\n  \"seducenti\": \"seducent\",\n  \"sedurre\": \"sedurr\",\n  \"seduta\": \"sed\",\n  \"sedute\": \"sed\",\n  \"seduti\": \"sed\",\n  \"seduto\": \"sed\",\n  \"seduttore\": \"seduttor\",\n  \"seduttrice\": \"seduttr\",\n  \"sefinale\": \"sefinal\",\n  \"sega\": \"seg\",\n  \"segata\": \"seg\",\n  \"segatura\": \"segatur\",\n  \"seggi\": \"segg\",\n  \"seggio\": \"segg\",\n  \"seggiola\": \"seggiol\",\n  \"seggiolaccia\": \"seggiolacc\",\n  \"seggiole\": \"seggiol\",\n  \"seggiolino\": \"seggiolin\",\n  \"seggiolone\": \"seggiolon\",\n  \"segmento\": \"segment\",\n  \"segna\": \"segn\",\n  \"segnala\": \"segnal\",\n  \"segnalano\": \"segnal\",\n  \"segnalare\": \"segnal\",\n  \"segnalata\": \"segnal\",\n  \"segnalate\": \"segnal\",\n  \"segnalati\": \"segnal\",\n  \"segnalato\": \"segnal\",\n  \"segnalazione\": \"segnal\",\n  \"segnalazioni\": \"segnal\",\n  \"segnale\": \"segnal\",\n  \"segnali\": \"segnal\",\n  \"segnaliamo\": \"segnal\",\n  \"segnando\": \"segn\",\n  \"segnare\": \"segn\",\n  \"segnata\": \"segn\",\n  \"segnatamente\": \"segnat\",\n  \"segnate\": \"segn\",\n  \"segnati\": \"segn\",\n  \"segnato\": \"segn\",\n  \"segnava\": \"segn\",\n  \"segnavano\": \"segn\",\n  \"segni\": \"segn\",\n  \"segno\": \"segn\",\n  \"segnò\": \"segn\",\n  \"segrate\": \"segr\",\n  \"segregare\": \"segreg\",\n  \"segregasse\": \"segreg\",\n  \"segreta\": \"segret\",\n  \"segretamente\": \"segret\",\n  \"segretari\": \"segretar\",\n  \"segretaria\": \"segretar\",\n  \"segretariesco\": \"segretariesc\",\n  \"segretario\": \"segretar\",\n  \"segrete\": \"segr\",\n  \"segreteria\": \"segreter\",\n  \"segreterià\": \"segreter\",\n  \"segreterie\": \"segreter\",\n  \"segreterio\": \"segreter\",\n  \"segretezza\": \"segretezz\",\n  \"segreti\": \"segret\",\n  \"segretissimo\": \"segretissim\",\n  \"segreto\": \"segret\",\n  \"segretò\": \"segret\",\n  \"segua\": \"segu\",\n  \"seguaci\": \"seguac\",\n  \"seguano\": \"segu\",\n  \"segue\": \"segu\",\n  \"seguendo\": \"segu\",\n  \"seguente\": \"seguent\",\n  \"seguenti\": \"seguent\",\n  \"segugi\": \"segug\",\n  \"seguì\": \"segu\",\n  \"seguirà\": \"segu\",\n  \"seguiranno\": \"segu\",\n  \"seguire\": \"segu\",\n  \"seguirebbe\": \"segu\",\n  \"seguirebbero\": \"segu\",\n  \"seguiremo\": \"segu\",\n  \"seguirli\": \"segu\",\n  \"seguirne\": \"segu\",\n  \"seguirò\": \"segu\",\n  \"seguiron\": \"seguiron\",\n  \"seguirono\": \"segu\",\n  \"seguisse\": \"seguiss\",\n  \"seguissero\": \"segu\",\n  \"seguita\": \"segu\",\n  \"seguitando\": \"seguit\",\n  \"seguitandolo\": \"seguit\",\n  \"seguitata\": \"seguit\",\n  \"seguitava\": \"seguit\",\n  \"seguitavano\": \"seguit\",\n  \"seguite\": \"segu\",\n  \"seguiti\": \"segu\",\n  \"seguito\": \"segu\",\n  \"seguitò\": \"seguit\",\n  \"seguiva\": \"segu\",\n  \"seguivano\": \"segu\",\n  \"seguo\": \"segu\",\n  \"seguono\": \"segu\",\n  \"sei\": \"sei\",\n  \"seicento\": \"seicent\",\n  \"seie\": \"sei\",\n  \"seimila\": \"seimil\",\n  \"sel\": \"sel\",\n  \"selciato\": \"selc\",\n  \"select\": \"select\",\n  \"selettiva\": \"selett\",\n  \"selettivi\": \"selett\",\n  \"selettività\": \"selett\",\n  \"selezionato\": \"selezion\",\n  \"selezione\": \"selezion\",\n  \"sella\": \"sell\",\n  \"sellare\": \"sell\",\n  \"seluatiche\": \"seluat\",\n  \"selva\": \"selv\",\n  \"selvagge\": \"selvagg\",\n  \"selvaggia\": \"selvagg\",\n  \"selvaggio\": \"selvagg\",\n  \"sembehun\": \"sembehun\",\n  \"sembiante\": \"sembiant\",\n  \"sembianti\": \"sembiant\",\n  \"sembianza\": \"sembianz\",\n  \"sembra\": \"sembr\",\n  \"sembrano\": \"sembr\",\n  \"sembrare\": \"sembr\",\n  \"sembrasse\": \"sembr\",\n  \"sembrate\": \"sembr\",\n  \"sembrati\": \"sembr\",\n  \"sembrato\": \"sembr\",\n  \"sembrava\": \"sembr\",\n  \"sembrerebbe\": \"sembr\",\n  \"sembrerebbero\": \"sembr\",\n  \"sembri\": \"sembr\",\n  \"seme\": \"sem\",\n  \"sementa\": \"sement\",\n  \"semente\": \"sement\",\n  \"semenza\": \"semenz\",\n  \"semestrali\": \"semestral\",\n  \"semestre\": \"semestr\",\n  \"semi\": \"sem\",\n  \"semicieco\": \"semiciec\",\n  \"semicircolo\": \"semicircol\",\n  \"semideserto\": \"semidesert\",\n  \"semidistrutto\": \"semidistrutt\",\n  \"semifinale\": \"semifinal\",\n  \"semifinali\": \"semifinal\",\n  \"semilibertà\": \"semilibert\",\n  \"seminano\": \"semin\",\n  \"seminar\": \"semin\",\n  \"seminare\": \"semin\",\n  \"seminario\": \"seminar\",\n  \"seminata\": \"semin\",\n  \"seminate\": \"semin\",\n  \"seminati\": \"semin\",\n  \"seminato\": \"semin\",\n  \"seminava\": \"semin\",\n  \"seminavano\": \"semin\",\n  \"seminìo\": \"seminì\",\n  \"semitono\": \"semit\",\n  \"semivivo\": \"semiv\",\n  \"semmai\": \"semma\",\n  \"semplice\": \"semplic\",\n  \"semplicemente\": \"semplic\",\n  \"semplici\": \"semplic\",\n  \"sempliciotto\": \"sempliciott\",\n  \"semplicità\": \"semplic\",\n  \"semplificare\": \"semplific\",\n  \"semplificazione\": \"semplif\",\n  \"sempre\": \"sempr\",\n  \"sempronio\": \"sempron\",\n  \"sen\": \"sen\",\n  \"senato\": \"sen\",\n  \"senatore\": \"senator\",\n  \"senatori\": \"senator\",\n  \"senatur\": \"senatur\",\n  \"senectus\": \"senectus\",\n  \"senegal\": \"senegal\",\n  \"senegalese\": \"senegales\",\n  \"senese\": \"senes\",\n  \"seni\": \"sen\",\n  \"seniga\": \"senig\",\n  \"senile\": \"senil\",\n  \"senno\": \"senn\",\n  \"sennò\": \"senn\",\n  \"seno\": \"sen\",\n  \"senonchè\": \"senonc\",\n  \"señor\": \"señor\",\n  \"sensazione\": \"sensazion\",\n  \"sensazioni\": \"sensazion\",\n  \"sensi\": \"sens\",\n  \"sensibile\": \"sensibil\",\n  \"sensibilità\": \"sensibil\",\n  \"sensibilmente\": \"sensibil\",\n  \"sensini\": \"sensin\",\n  \"sensitiva\": \"sensit\",\n  \"sensitivo\": \"sensit\",\n  \"senso\": \"sens\",\n  \"senta\": \"sent\",\n  \"sentan\": \"sentan\",\n  \"sentano\": \"sent\",\n  \"sente\": \"sent\",\n  \"sentendo\": \"sent\",\n  \"sentendolo\": \"sent\",\n  \"sentendosi\": \"sent\",\n  \"sententiam\": \"sententiam\",\n  \"sentenza\": \"sentenz\",\n  \"sentenze\": \"sentenz\",\n  \"sentenziare\": \"sentenz\",\n  \"sentenziato\": \"sentenz\",\n  \"sentenzio\": \"sentenz\",\n  \"senti\": \"sent\",\n  \"sentì\": \"sent\",\n  \"sentiamo\": \"sent\",\n  \"sentieri\": \"sentier\",\n  \"sentiero\": \"sentier\",\n  \"sentimentale\": \"sentimental\",\n  \"sentimentalmente\": \"sentimental\",\n  \"sentimenti\": \"sent\",\n  \"sentimento\": \"sent\",\n  \"sentinella\": \"sentinell\",\n  \"sentinelle\": \"sentinell\",\n  \"sentir\": \"sent\",\n  \"sentirà\": \"sent\",\n  \"sentirai\": \"sent\",\n  \"sentiranno\": \"sent\",\n  \"sentire\": \"sent\",\n  \"sentiremo\": \"sent\",\n  \"sentirete\": \"sent\",\n  \"sentirla\": \"sent\",\n  \"sentirle\": \"sent\",\n  \"sentirlo\": \"sent\",\n  \"sentirmi\": \"sent\",\n  \"sentirne\": \"sent\",\n  \"sentirò\": \"sent\",\n  \"sentiron\": \"sentiron\",\n  \"sentirono\": \"sent\",\n  \"sentirsi\": \"sent\",\n  \"sentirvi\": \"sent\",\n  \"sentisse\": \"sentiss\",\n  \"sentissi\": \"sentiss\",\n  \"sentita\": \"sent\",\n  \"sentite\": \"sent\",\n  \"sentiti\": \"sent\",\n  \"sentito\": \"sent\",\n  \"sentiva\": \"sent\",\n  \"sentivan\": \"sentivan\",\n  \"sentivano\": \"sent\",\n  \"sento\": \"sent\",\n  \"senton\": \"senton\",\n  \"sentono\": \"sent\",\n  \"senz\": \"senz\",\n  \"senza\": \"senz\",\n  \"separa\": \"separ\",\n  \"separando\": \"separ\",\n  \"separandosi\": \"separ\",\n  \"separano\": \"separ\",\n  \"separar\": \"separ\",\n  \"separare\": \"separ\",\n  \"separarlo\": \"separ\",\n  \"separarono\": \"separ\",\n  \"separarsi\": \"separ\",\n  \"separata\": \"separ\",\n  \"separatamente\": \"separat\",\n  \"separate\": \"separ\",\n  \"separati\": \"separ\",\n  \"separatista\": \"separat\",\n  \"separatiste\": \"separat\",\n  \"separatisti\": \"separat\",\n  \"separato\": \"separ\",\n  \"separatone\": \"separaton\",\n  \"separava\": \"separ\",\n  \"separavan\": \"separavan\",\n  \"separazione\": \"separ\",\n  \"separazioni\": \"separ\",\n  \"sepolta\": \"sepolt\",\n  \"sepolte\": \"sepolt\",\n  \"sepolti\": \"sepolt\",\n  \"sepolto\": \"sepolt\",\n  \"seppe\": \"sepp\",\n  \"seppellirsi\": \"seppell\",\n  \"seppero\": \"sepper\",\n  \"seppi\": \"sepp\",\n  \"seppo\": \"sepp\",\n  \"seppur\": \"seppur\",\n  \"seq\": \"seq\",\n  \"sequestra\": \"sequestr\",\n  \"sequestrare\": \"sequestr\",\n  \"sequestrata\": \"sequestr\",\n  \"sequestrate\": \"sequestr\",\n  \"sequestrati\": \"sequestr\",\n  \"sequestrato\": \"sequestr\",\n  \"sequestri\": \"sequestr\",\n  \"sequestro\": \"sequestr\",\n  \"sera\": \"ser\",\n  \"serafino\": \"serafin\",\n  \"seraing\": \"seraing\",\n  \"serata\": \"ser\",\n  \"serato\": \"ser\",\n  \"serba\": \"serb\",\n  \"serbando\": \"serb\",\n  \"serbano\": \"serb\",\n  \"serbarceli\": \"serb\",\n  \"serbarsi\": \"serb\",\n  \"serbate\": \"serb\",\n  \"serbateli\": \"serbatel\",\n  \"serbatelo\": \"serbatel\",\n  \"serbatoio\": \"serbatoi\",\n  \"serbava\": \"serb\",\n  \"serbavano\": \"serb\",\n  \"serbe\": \"serb\",\n  \"serbi\": \"serb\",\n  \"serbo\": \"serb\",\n  \"serbò\": \"serb\",\n  \"serena\": \"seren\",\n  \"serenissimo\": \"serenissim\",\n  \"serenità\": \"seren\",\n  \"sereno\": \"seren\",\n  \"serfi\": \"serf\",\n  \"sergente\": \"sergent\",\n  \"sergi\": \"serg\",\n  \"sergio\": \"serg\",\n  \"sergno\": \"sergn\",\n  \"seri\": \"ser\",\n  \"seria\": \"ser\",\n  \"serial\": \"serial\",\n  \"seriamente\": \"ser\",\n  \"serie\": \"ser\",\n  \"series\": \"series\",\n  \"serietà\": \"seriet\",\n  \"serio\": \"ser\",\n  \"serissimo\": \"serissim\",\n  \"serizi\": \"seriz\",\n  \"serono\": \"ser\",\n  \"serpe\": \"serp\",\n  \"serpeggiamento\": \"serpegg\",\n  \"serpeggiando\": \"serpegg\",\n  \"serpeggiante\": \"serpegg\",\n  \"serpeggianti\": \"serpegg\",\n  \"serpeggiare\": \"serpegg\",\n  \"serpellini\": \"serpellin\",\n  \"serpendo\": \"serp\",\n  \"serpenti\": \"serpent\",\n  \"serpi\": \"serp\",\n  \"serra\": \"serr\",\n  \"serrata\": \"serr\",\n  \"serrati\": \"serr\",\n  \"serratissimo\": \"serratissim\",\n  \"serrato\": \"serr\",\n  \"serratura\": \"serratur\",\n  \"serre\": \"serr\",\n  \"serri\": \"serr\",\n  \"serrra\": \"serrr\",\n  \"serva\": \"serv\",\n  \"servano\": \"serv\",\n  \"serve\": \"serv\",\n  \"servello\": \"servell\",\n  \"servendolo\": \"serv\",\n  \"servendosene\": \"serv\",\n  \"serventi\": \"servent\",\n  \"servetta\": \"servett\",\n  \"servi\": \"serv\",\n  \"servì\": \"serv\",\n  \"serviamo\": \"serv\",\n  \"servicio\": \"servic\",\n  \"servile\": \"servil\",\n  \"servilismo\": \"servil\",\n  \"servir\": \"serv\",\n  \"servirà\": \"serv\",\n  \"serviranno\": \"serv\",\n  \"servire\": \"serv\",\n  \"servirebbe\": \"serv\",\n  \"servirgli\": \"serv\",\n  \"servirla\": \"serv\",\n  \"servirli\": \"serv\",\n  \"servirlo\": \"serv\",\n  \"servirò\": \"serv\",\n  \"serviron\": \"serviron\",\n  \"servirono\": \"serv\",\n  \"servirsene\": \"serv\",\n  \"servirsi\": \"serv\",\n  \"servirvi\": \"serv\",\n  \"servisse\": \"serviss\",\n  \"servita\": \"serv\",\n  \"servite\": \"serv\",\n  \"serviti\": \"serv\",\n  \"servito\": \"serv\",\n  \"servitor\": \"servitor\",\n  \"servitore\": \"servitor\",\n  \"servitori\": \"servitor\",\n  \"servitù\": \"servitù\",\n  \"serviva\": \"serv\",\n  \"servivano\": \"serv\",\n  \"servizi\": \"serviz\",\n  \"servizietto\": \"serviziett\",\n  \"servizio\": \"serviz\",\n  \"servo\": \"serv\",\n  \"servodio\": \"servod\",\n  \"servono\": \"serv\",\n  \"sesani\": \"sesan\",\n  \"sesia\": \"ses\",\n  \"sessant\": \"sessant\",\n  \"sessanta\": \"sessant\",\n  \"sessantaquattro\": \"sessantaquattr\",\n  \"sessantina\": \"sessantin\",\n  \"sessi\": \"sess\",\n  \"sessione\": \"session\",\n  \"sesso\": \"sess\",\n  \"sessuale\": \"sessual\",\n  \"sessuali\": \"sessual\",\n  \"sessualmente\": \"sessual\",\n  \"sesta\": \"sest\",\n  \"sesto\": \"sest\",\n  \"sestri\": \"sestr\",\n  \"set\": \"set\",\n  \"seta\": \"set\",\n  \"setacciamente\": \"setacc\",\n  \"setacciando\": \"setacc\",\n  \"sete\": \"set\",\n  \"setien\": \"setien\",\n  \"sett\": \"sett\",\n  \"settala\": \"settal\",\n  \"settant\": \"settant\",\n  \"settantina\": \"settantin\",\n  \"settaria\": \"settar\",\n  \"sette\": \"sett\",\n  \"settembre\": \"settembr\",\n  \"settentrionale\": \"settentrional\",\n  \"settentrionali\": \"settentrional\",\n  \"settentrione\": \"settentrion\",\n  \"settima\": \"settim\",\n  \"settimana\": \"settiman\",\n  \"settimanale\": \"settimanal\",\n  \"settimanali\": \"settimanal\",\n  \"settimane\": \"settiman\",\n  \"settime\": \"settim\",\n  \"settimo\": \"settim\",\n  \"settore\": \"settor\",\n  \"settori\": \"settor\",\n  \"settoriale\": \"settorial\",\n  \"settoriali\": \"settorial\",\n  \"seul\": \"seul\",\n  \"sevendosi\": \"sev\",\n  \"severa\": \"sever\",\n  \"severamente\": \"sever\",\n  \"severe\": \"sev\",\n  \"severi\": \"sever\",\n  \"severissime\": \"severissim\",\n  \"severissimi\": \"severissim\",\n  \"severo\": \"sever\",\n  \"sevitie\": \"sevit\",\n  \"sex\": \"sex\",\n  \"sexi\": \"sex\",\n  \"seyed\": \"seyed\",\n  \"seymandi\": \"seymand\",\n  \"sezione\": \"sezion\",\n  \"sezioni\": \"sezion\",\n  \"sf\": \"sf\",\n  \"sfaccendati\": \"sfaccend\",\n  \"sfacciata\": \"sfacc\",\n  \"sfacciataggine\": \"sfacciataggin\",\n  \"sfacciato\": \"sfacc\",\n  \"sfama\": \"sfam\",\n  \"sfarzosa\": \"sfarzos\",\n  \"sfarzosamente\": \"sfarzos\",\n  \"sfarzose\": \"sfarzos\",\n  \"sfarzosi\": \"sfarzos\",\n  \"sfera\": \"sfer\",\n  \"sferra\": \"sferr\",\n  \"sferrare\": \"sferr\",\n  \"sferrato\": \"sferr\",\n  \"sferzando\": \"sferz\",\n  \"sfida\": \"sfid\",\n  \"sfidante\": \"sfidant\",\n  \"sfidare\": \"sfid\",\n  \"sfide\": \"sfid\",\n  \"sfiducia\": \"sfiduc\",\n  \"sfigurata\": \"sfigur\",\n  \"sfilare\": \"sfil\",\n  \"sfilarono\": \"sfil\",\n  \"sfilata\": \"sfil\",\n  \"sfilati\": \"sfil\",\n  \"sfilato\": \"sfil\",\n  \"sfinimento\": \"sfin\",\n  \"sfiorando\": \"sfior\",\n  \"sfiorare\": \"sfior\",\n  \"sfiorava\": \"sfior\",\n  \"sfiorita\": \"sfior\",\n  \"sfociano\": \"sfoc\",\n  \"sfociare\": \"sfoc\",\n  \"sfociato\": \"sfoc\",\n  \"sfoderando\": \"sfoder\",\n  \"sfoderate\": \"sfoder\",\n  \"sfoderò\": \"sfod\",\n  \"sfogar\": \"sfog\",\n  \"sfogare\": \"sfog\",\n  \"sfogarsi\": \"sfog\",\n  \"sfogava\": \"sfog\",\n  \"sfoggi\": \"sfogg\",\n  \"sfoggia\": \"sfogg\",\n  \"sfoghi\": \"sfog\",\n  \"sfogo\": \"sfog\",\n  \"sfolgorati\": \"sfolgor\",\n  \"sfolgoravano\": \"sfolgor\",\n  \"sfollati\": \"sfoll\",\n  \"sfonda\": \"sfond\",\n  \"sfondarla\": \"sfond\",\n  \"sfondata\": \"sfond\",\n  \"sfondati\": \"sfond\",\n  \"sfondo\": \"sfond\",\n  \"sforacchiate\": \"sforacc\",\n  \"sforare\": \"sfor\",\n  \"sformato\": \"sform\",\n  \"sfornare\": \"sforn\",\n  \"sfortuna\": \"sfortun\",\n  \"sfortunata\": \"sfortun\",\n  \"sfortunato\": \"sfortun\",\n  \"sforzai\": \"sforza\",\n  \"sforzarsi\": \"sforz\",\n  \"sforzasser\": \"sforzasser\",\n  \"sforzati\": \"sforz\",\n  \"sforzava\": \"sforz\",\n  \"sforzesco\": \"sforzesc\",\n  \"sforzi\": \"sforz\",\n  \"sforzo\": \"sforz\",\n  \"sfottò\": \"sfott\",\n  \"sfrattar\": \"sfratt\",\n  \"sfrattasse\": \"sfratt\",\n  \"sfrattata\": \"sfratt\",\n  \"sfrattati\": \"sfratt\",\n  \"sfrattato\": \"sfratt\",\n  \"sfratto\": \"sfratt\",\n  \"sfrecciato\": \"sfrecc\",\n  \"sfregiati\": \"sfreg\",\n  \"sfregiato\": \"sfreg\",\n  \"sfregio\": \"sfreg\",\n  \"sfrenata\": \"sfren\",\n  \"sfrenatezza\": \"sfrenatezz\",\n  \"sfrondati\": \"sfrond\",\n  \"sfrontatezza\": \"sfrontatezz\",\n  \"sfruttando\": \"sfrutt\",\n  \"sfruttare\": \"sfrutt\",\n  \"sfruttato\": \"sfrutt\",\n  \"sfugge\": \"sfugg\",\n  \"sfuggì\": \"sfugg\",\n  \"sfuggir\": \"sfugg\",\n  \"sfuggirci\": \"sfugg\",\n  \"sfuggire\": \"sfugg\",\n  \"sfuggisse\": \"sfuggiss\",\n  \"sfuggita\": \"sfugg\",\n  \"sfuggite\": \"sfugg\",\n  \"sfuggito\": \"sfugg\",\n  \"sfuggono\": \"sfugg\",\n  \"sfumando\": \"sfum\",\n  \"sfumato\": \"sfum\",\n  \"sfumature\": \"sfumatur\",\n  \"sfumavano\": \"sfum\",\n  \"sg\": \"sg\",\n  \"sgambetto\": \"sgambett\",\n  \"sgangheratamente\": \"sgangherat\",\n  \"sgangherate\": \"sgangher\",\n  \"sgangherati\": \"sgangher\",\n  \"sgangherato\": \"sgangher\",\n  \"sgarbata\": \"sgarb\",\n  \"sgarbatamente\": \"sgarbat\",\n  \"sgarbatezze\": \"sgarbatezz\",\n  \"sgarbato\": \"sgarb\",\n  \"sgarbi\": \"sgarb\",\n  \"sgarbossa\": \"sgarboss\",\n  \"sgherri\": \"sgherr\",\n  \"sgherro\": \"sgherr\",\n  \"sghignazzando\": \"sghignazz\",\n  \"sghignazzava\": \"sghignazz\",\n  \"sgomberare\": \"sgomber\",\n  \"sgombero\": \"sgomber\",\n  \"sgombra\": \"sgombr\",\n  \"sgombrare\": \"sgombr\",\n  \"sgombrate\": \"sgombr\",\n  \"sgombro\": \"sgombr\",\n  \"sgomentata\": \"sgoment\",\n  \"sgomentate\": \"sgoment\",\n  \"sgomentati\": \"sgoment\",\n  \"sgomenti\": \"sgoment\",\n  \"sgomento\": \"sgoment\",\n  \"sgomitolandosi\": \"sgomitol\",\n  \"sgozzata\": \"sgozz\",\n  \"sgradevole\": \"sgradevol\",\n  \"sgraffiatura\": \"sgraffiatur\",\n  \"sgraffignato\": \"sgraffign\",\n  \"sgranchì\": \"sgranc\",\n  \"sgranchirsi\": \"sgranc\",\n  \"sgranocchiato\": \"sgranocc\",\n  \"sgretolavano\": \"sgretol\",\n  \"sgridata\": \"sgrid\",\n  \"sgrò\": \"sgrò\",\n  \"sgruppò\": \"sgrupp\",\n  \"sguaiata\": \"sguai\",\n  \"sguaiato\": \"sguai\",\n  \"sgualcita\": \"sgualc\",\n  \"sguardi\": \"sguard\",\n  \"sguardo\": \"sguard\",\n  \"sguattero\": \"sguatter\",\n  \"sguazzar\": \"sguazz\",\n  \"sguazzava\": \"sguazz\",\n  \"sguazzi\": \"sguazz\",\n  \"sguizza\": \"sguizz\",\n  \"sgusciavano\": \"sgusc\",\n  \"sh\": \"sh\",\n  \"shaath\": \"shaath\",\n  \"shadchin\": \"shadchin\",\n  \"shafranik\": \"shafranik\",\n  \"shah\": \"shah\",\n  \"shahak\": \"shahak\",\n  \"shali\": \"shal\",\n  \"shalimar\": \"shalim\",\n  \"shankar\": \"shank\",\n  \"share\": \"shar\",\n  \"sharma\": \"sharm\",\n  \"shatoievsk\": \"shatoievsk\",\n  \"sheen\": \"sheen\",\n  \"sheffield\": \"sheffield\",\n  \"sheila\": \"sheil\",\n  \"shelley\": \"shelley\",\n  \"sheridan\": \"sheridan\",\n  \"sherman\": \"sherman\",\n  \"shield\": \"shield\",\n  \"shiff\": \"shiff\",\n  \"shimer\": \"shimer\",\n  \"shimon\": \"shimon\",\n  \"shinji\": \"shinj\",\n  \"ship\": \"ship\",\n  \"shipping\": \"shipping\",\n  \"shirley\": \"shirley\",\n  \"shiro\": \"shir\",\n  \"shiskin\": \"shiskin\",\n  \"shore\": \"shor\",\n  \"shos\": \"shos\",\n  \"show\": \"show\",\n  \"shqipetarè\": \"shqipetar\",\n  \"shropshire\": \"shropsh\",\n  \"shuar\": \"shu\",\n  \"shurà\": \"shur\",\n  \"shuster\": \"shuster\",\n  \"shygulla\": \"shygull\",\n  \"si\": \"si\",\n  \"sì\": \"sì\",\n  \"sia\": \"sia\",\n  \"siaca\": \"siac\",\n  \"siam\": \"siam\",\n  \"siamo\": \"siam\",\n  \"sian\": \"sian\",\n  \"siano\": \"sian\",\n  \"siate\": \"siat\",\n  \"siatelo\": \"siatel\",\n  \"siberiano\": \"siber\",\n  \"sic\": \"sic\",\n  \"sicari\": \"sicar\",\n  \"sicché\": \"sicc\",\n  \"sicchè\": \"sicc\",\n  \"siccità\": \"siccit\",\n  \"siccome\": \"siccom\",\n  \"sichuan\": \"sichuan\",\n  \"sicignano\": \"sicign\",\n  \"sicilcassa\": \"sicilcass\",\n  \"sicilia\": \"sicil\",\n  \"siciliana\": \"sicilian\",\n  \"siciliane\": \"sicilian\",\n  \"siciliani\": \"sicilian\",\n  \"siciliano\": \"sicil\",\n  \"sicilie\": \"sicil\",\n  \"sicu\": \"sicu\",\n  \"sicuerezza\": \"sicuerezz\",\n  \"sicura\": \"sicur\",\n  \"sicuramente\": \"sicur\",\n  \"sicure\": \"sicur\",\n  \"sicurezza\": \"sicurezz\",\n  \"sicuri\": \"sicur\",\n  \"sicuro\": \"sicur\",\n  \"sicurtà\": \"sicurt\",\n  \"sicurvita\": \"sicurv\",\n  \"sicuti\": \"sic\",\n  \"siderurgia\": \"siderurg\",\n  \"siderurgica\": \"siderurg\",\n  \"sidney\": \"sidney\",\n  \"sidrome\": \"sidrom\",\n  \"siede\": \"sied\",\n  \"siele\": \"siel\",\n  \"siena\": \"sien\",\n  \"sieno\": \"sien\",\n  \"siepe\": \"siep\",\n  \"siepi\": \"siep\",\n  \"sierra\": \"sierr\",\n  \"siés\": \"siès\",\n  \"siete\": \"siet\",\n  \"siffatta\": \"siffatt\",\n  \"sifir\": \"sif\",\n  \"sig\": \"sig\",\n  \"sigarette\": \"sigarett\",\n  \"sigillati\": \"sigill\",\n  \"sigillava\": \"sigill\",\n  \"sigilli\": \"sigill\",\n  \"siglando\": \"sigl\",\n  \"siglata\": \"sigl\",\n  \"siglati\": \"sigl\",\n  \"siglato\": \"sigl\",\n  \"significa\": \"signif\",\n  \"significando\": \"signific\",\n  \"significano\": \"signific\",\n  \"significante\": \"signific\",\n  \"significar\": \"signific\",\n  \"significare\": \"signific\",\n  \"significasse\": \"signific\",\n  \"significassero\": \"signific\",\n  \"significativa\": \"signif\",\n  \"significativamente\": \"signific\",\n  \"significativi\": \"signif\",\n  \"significativo\": \"signif\",\n  \"significato\": \"signific\",\n  \"significava\": \"signific\",\n  \"significavano\": \"signific\",\n  \"significazione\": \"signif\",\n  \"significhi\": \"signif\",\n  \"signor\": \"signor\",\n  \"signora\": \"signor\",\n  \"signore\": \"signor\",\n  \"signorelli\": \"signorell\",\n  \"signorello\": \"signorell\",\n  \"signori\": \"signor\",\n  \"signoria\": \"signor\",\n  \"signorile\": \"signoril\",\n  \"signorili\": \"signoril\",\n  \"signorina\": \"signorin\",\n  \"signorini\": \"signorin\",\n  \"signorino\": \"signorin\",\n  \"signorona\": \"signoron\",\n  \"signoroni\": \"signoron\",\n  \"sigonella\": \"sigonell\",\n  \"sigrid\": \"sigrid\",\n  \"sii\": \"sii\",\n  \"sij\": \"sij\",\n  \"sijno\": \"sijn\",\n  \"sil\": \"sil\",\n  \"silajdzic\": \"silajdzic\",\n  \"silajzdic\": \"silajzdic\",\n  \"silenzi\": \"silenz\",\n  \"silenzio\": \"silenz\",\n  \"silenziosa\": \"silenz\",\n  \"silenziosi\": \"silenz\",\n  \"silenzioso\": \"silenz\",\n  \"siljdzic\": \"siljdzic\",\n  \"sillaba\": \"sillab\",\n  \"sillabe\": \"sillab\",\n  \"sillogismo\": \"sillog\",\n  \"sils\": \"sils\",\n  \"silvan\": \"silvan\",\n  \"silvano\": \"silv\",\n  \"silvestro\": \"silvestr\",\n  \"silvetri\": \"silvetr\",\n  \"silvi\": \"silv\",\n  \"silvia\": \"silv\",\n  \"silvio\": \"silv\",\n  \"simbionte\": \"simbiont\",\n  \"simboli\": \"simbol\",\n  \"simbolica\": \"simbol\",\n  \"simbolicamente\": \"simbol\",\n  \"simbolici\": \"simbol\",\n  \"simbolo\": \"simbol\",\n  \"simi\": \"sim\",\n  \"simil\": \"simil\",\n  \"simile\": \"simil\",\n  \"simili\": \"simil\",\n  \"similitudine\": \"similitudin\",\n  \"similitudini\": \"similitudin\",\n  \"similmente\": \"simil\",\n  \"simint\": \"simint\",\n  \"simmetria\": \"simmetr\",\n  \"simmetrica\": \"simmetr\",\n  \"simod\": \"simod\",\n  \"simon\": \"simon\",\n  \"simona\": \"simon\",\n  \"simone\": \"simon\",\n  \"simonetta\": \"simonett\",\n  \"simoni\": \"simon\",\n  \"simpatia\": \"simpat\",\n  \"simpatie\": \"simpat\",\n  \"simpson\": \"simpson\",\n  \"simulando\": \"simul\",\n  \"simulazione\": \"simul\",\n  \"simutenkov\": \"simutenkov\",\n  \"sin\": \"sin\",\n  \"sinatur\": \"sinatur\",\n  \"sincera\": \"sincer\",\n  \"sinceramente\": \"sincer\",\n  \"sincerarmi\": \"sincer\",\n  \"sincerarsi\": \"sincer\",\n  \"sincerato\": \"sincer\",\n  \"sincerità\": \"sincer\",\n  \"sincero\": \"sincer\",\n  \"sindacale\": \"sindacal\",\n  \"sindacali\": \"sindacal\",\n  \"sindacalista\": \"sindacal\",\n  \"sindacalisti\": \"sindacal\",\n  \"sindacati\": \"sindac\",\n  \"sindacato\": \"sindac\",\n  \"sindaci\": \"sindac\",\n  \"sindaco\": \"sindac\",\n  \"sindrome\": \"sindrom\",\n  \"sinergie\": \"sinerg\",\n  \"singapore\": \"singapor\",\n  \"singh\": \"sing\",\n  \"singhiozzando\": \"singhiozz\",\n  \"singhiozzare\": \"singhiozz\",\n  \"singhiozzi\": \"singhiozz\",\n  \"singhiozzìo\": \"singhiozzì\",\n  \"single\": \"singl\",\n  \"singola\": \"singol\",\n  \"singolar\": \"singol\",\n  \"singolare\": \"singol\",\n  \"singolari\": \"singolar\",\n  \"singolarità\": \"singolar\",\n  \"singolarmente\": \"singolar\",\n  \"singole\": \"singol\",\n  \"singoli\": \"singol\",\n  \"singolo\": \"singol\",\n  \"singrai\": \"singra\",\n  \"sinigaglia\": \"sinigagl\",\n  \"sinistra\": \"sinistr\",\n  \"sinistrà\": \"sinistr\",\n  \"sinistre\": \"sinistr\",\n  \"sinistri\": \"sinistr\",\n  \"sinistro\": \"sinistr\",\n  \"sinistrosità\": \"sinistros\",\n  \"siniustra\": \"siniustr\",\n  \"sino\": \"sin\",\n  \"sinodale\": \"sinodal\",\n  \"sinonimo\": \"sinonim\",\n  \"sinora\": \"sinor\",\n  \"sinotrans\": \"sinotrans\",\n  \"sint\": \"sint\",\n  \"sintesi\": \"sintes\",\n  \"sintetizza\": \"sintetizz\",\n  \"sintetizzati\": \"sintetizz\",\n  \"sintetizzato\": \"sintetizz\",\n  \"sintomi\": \"sintom\",\n  \"sintomo\": \"sintom\",\n  \"sintonia\": \"sinton\",\n  \"sipario\": \"sipar\",\n  \"sir\": \"sir\",\n  \"sirac\": \"sirac\",\n  \"siracus\": \"siracus\",\n  \"siracusa\": \"siracus\",\n  \"sirene\": \"siren\",\n  \"siria\": \"sir\",\n  \"siro\": \"sir\",\n  \"sirone\": \"siron\",\n  \"sirti\": \"sirt\",\n  \"sis\": \"sis\",\n  \"sisa\": \"sis\",\n  \"sisde\": \"sisd\",\n  \"sisley\": \"sisley\",\n  \"sisma\": \"sism\",\n  \"sismica\": \"sismic\",\n  \"sismici\": \"sismic\",\n  \"sismologica\": \"sismolog\",\n  \"sisport\": \"sisport\",\n  \"sistema\": \"sistem\",\n  \"sistemà\": \"sistem\",\n  \"sistemarle\": \"sistem\",\n  \"sistemati\": \"sistem\",\n  \"sistemazione\": \"sistem\",\n  \"sistemi\": \"sistem\",\n  \"sistina\": \"sistin\",\n  \"sistma\": \"sistm\",\n  \"sisto\": \"sist\",\n  \"sitemi\": \"sitem\",\n  \"siti\": \"sit\",\n  \"sito\": \"sit\",\n  \"sitto\": \"sitt\",\n  \"situa\": \"situ\",\n  \"situarsi\": \"situ\",\n  \"situata\": \"situ\",\n  \"situation\": \"situation\",\n  \"situato\": \"situ\",\n  \"situazione\": \"situazion\",\n  \"situazionè\": \"situazion\",\n  \"situazioni\": \"situazion\",\n  \"situerebbe\": \"situ\",\n  \"siulp\": \"siulp\",\n  \"siviglia\": \"sivigl\",\n  \"sixto\": \"sixt\",\n  \"ski\": \"ski\",\n  \"skin\": \"skin\",\n  \"skinhead\": \"skinhead\",\n  \"skofic\": \"skofic\",\n  \"skuhravy\": \"skuhravy\",\n  \"sl\": \"sl\",\n  \"sla\": \"sla\",\n  \"slalom\": \"slalom\",\n  \"slam\": \"slam\",\n  \"slancia\": \"slanc\",\n  \"slanciano\": \"slanc\",\n  \"slanciarono\": \"slanc\",\n  \"slanciarsi\": \"slanc\",\n  \"slancio\": \"slanc\",\n  \"slanciò\": \"slanc\",\n  \"sledog\": \"sledog\",\n  \"slegati\": \"sleg\",\n  \"slegò\": \"sleg\",\n  \"slip\": \"slip\",\n  \"slittare\": \"slitt\",\n  \"slitterebbe\": \"slitt\",\n  \"slogan\": \"slogan\",\n  \"slovacchia\": \"slovacc\",\n  \"slovenia\": \"sloven\",\n  \"sloveno\": \"sloven\",\n  \"sly\": \"sly\",\n  \"smalia\": \"smal\",\n  \"smallville\": \"smallvill\",\n  \"smaltir\": \"smalt\",\n  \"smaltire\": \"smalt\",\n  \"smaltita\": \"smalt\",\n  \"smanacciando\": \"smanacc\",\n  \"smanacciata\": \"smanacc\",\n  \"smania\": \"sman\",\n  \"smanie\": \"sman\",\n  \"smaniosi\": \"smanios\",\n  \"smanioso\": \"smanios\",\n  \"smantellamento\": \"smantell\",\n  \"smantellare\": \"smantell\",\n  \"smantellato\": \"smantell\",\n  \"smarcato\": \"smarc\",\n  \"smarrimenti\": \"smarr\",\n  \"smarrimento\": \"smarr\",\n  \"smarrire\": \"smarr\",\n  \"smarrita\": \"smarr\",\n  \"smarriti\": \"smarr\",\n  \"smarrito\": \"smarr\",\n  \"smarriva\": \"smarr\",\n  \"sme\": \"sme\",\n  \"smembramento\": \"smembr\",\n  \"smembrare\": \"smembr\",\n  \"smembrato\": \"smembr\",\n  \"smentendo\": \"sment\",\n  \"smentire\": \"sment\",\n  \"smentisce\": \"sment\",\n  \"smentiscono\": \"sment\",\n  \"smentita\": \"sment\",\n  \"smentito\": \"sment\",\n  \"smentiva\": \"sment\",\n  \"smeralda\": \"smerald\",\n  \"smesse\": \"smess\",\n  \"smette\": \"smett\",\n  \"smetter\": \"smetter\",\n  \"smettere\": \"smett\",\n  \"smettessero\": \"smett\",\n  \"smettete\": \"smett\",\n  \"smetton\": \"smetton\",\n  \"smi\": \"smi\",\n  \"smile\": \"smil\",\n  \"smistamento\": \"smist\",\n  \"smisurato\": \"smisur\",\n  \"smith\": \"smith\",\n  \"smits\": \"smits\",\n  \"smm\": \"smm\",\n  \"smonta\": \"smont\",\n  \"smontando\": \"smont\",\n  \"smontarlo\": \"smont\",\n  \"smontarono\": \"smont\",\n  \"smontata\": \"smont\",\n  \"smontati\": \"smont\",\n  \"smontato\": \"smont\",\n  \"smonterebbe\": \"smont\",\n  \"smontò\": \"smont\",\n  \"smorbare\": \"smorb\",\n  \"smorto\": \"smort\",\n  \"smorza\": \"smorz\",\n  \"smorzare\": \"smorz\",\n  \"smossa\": \"smoss\",\n  \"smosso\": \"smoss\",\n  \"smovere\": \"smov\",\n  \"smoverlo\": \"smov\",\n  \"smozzicata\": \"smozzic\",\n  \"smozzicate\": \"smozzic\",\n  \"smozzicato\": \"smozzic\",\n  \"smunta\": \"smunt\",\n  \"smunti\": \"smunt\",\n  \"smunto\": \"smunt\",\n  \"smurare\": \"smur\",\n  \"smuravano\": \"smur\",\n  \"snam\": \"snam\",\n  \"snaturare\": \"snatur\",\n  \"sneh\": \"sneh\",\n  \"snelle\": \"snell\",\n  \"snellisca\": \"snell\",\n  \"snia\": \"sni\",\n  \"snidata\": \"snid\",\n  \"snob\": \"snob\",\n  \"so\": \"so\",\n  \"soastenuto\": \"soasten\",\n  \"soave\": \"soav\",\n  \"soavemente\": \"soavement\",\n  \"soavi\": \"soav\",\n  \"soavissimo\": \"soavissim\",\n  \"soavità\": \"soavit\",\n  \"sobborgo\": \"sobborg\",\n  \"soc\": \"soc\",\n  \"socchiude\": \"socchiud\",\n  \"socchiusa\": \"socchius\",\n  \"socchiuso\": \"socchius\",\n  \"soccombente\": \"soccombent\",\n  \"soccombere\": \"soccomb\",\n  \"soccorrer\": \"soccorrer\",\n  \"soccorrere\": \"soccorr\",\n  \"soccorrerlo\": \"soccorr\",\n  \"soccorrersi\": \"soccorr\",\n  \"soccorresse\": \"soccorress\",\n  \"soccorretemi\": \"soccorretem\",\n  \"soccorreva\": \"soccorr\",\n  \"soccorrevoli\": \"soccorrevol\",\n  \"soccorritori\": \"soccorritor\",\n  \"soccorsa\": \"soccors\",\n  \"soccorsi\": \"soccors\",\n  \"soccorso\": \"soccors\",\n  \"sochaux\": \"sochaux\",\n  \"soci\": \"soc\",\n  \"socialdemocratici\": \"socialdemocrat\",\n  \"sociale\": \"social\",\n  \"sociali\": \"social\",\n  \"socialismo\": \"social\",\n  \"socialista\": \"social\",\n  \"socialistà\": \"social\",\n  \"socialisti\": \"social\",\n  \"socialità\": \"social\",\n  \"socializzazione\": \"socializz\",\n  \"socialmente\": \"social\",\n  \"societa\": \"societ\",\n  \"società\": \"societ\",\n  \"societario\": \"societar\",\n  \"society\": \"society\",\n  \"socievole\": \"socievol\",\n  \"socio\": \"soc\",\n  \"socioeconomiche\": \"socioeconom\",\n  \"sociologo\": \"sociolog\",\n  \"soda\": \"sod\",\n  \"sodaglia\": \"sodagl\",\n  \"sodalizio\": \"sodaliz\",\n  \"sodano\": \"sod\",\n  \"soddisfacente\": \"soddisfacent\",\n  \"soddisfare\": \"soddisf\",\n  \"soddisfarla\": \"soddisf\",\n  \"soddisfarli\": \"soddisf\",\n  \"soddisfarlo\": \"soddisf\",\n  \"soddisfatta\": \"soddisfatt\",\n  \"soddisfatti\": \"soddisfatt\",\n  \"soddisfattissimo\": \"soddisfattissim\",\n  \"soddisfatto\": \"soddisfatt\",\n  \"soddisfazione\": \"soddisf\",\n  \"soddisfazioni\": \"soddisf\",\n  \"soddisfece\": \"soddisfec\",\n  \"soddisfi\": \"soddisf\",\n  \"sodetta\": \"sodett\",\n  \"sodo\": \"sod\",\n  \"sofferente\": \"sofferent\",\n  \"sofferenza\": \"sofferent\",\n  \"sofferenze\": \"sofferent\",\n  \"sofferma\": \"sofferm\",\n  \"soffermandosi\": \"sofferm\",\n  \"soffermasse\": \"sofferm\",\n  \"soffermata\": \"sofferm\",\n  \"soffermato\": \"sofferm\",\n  \"soffermava\": \"sofferm\",\n  \"sofferta\": \"soffert\",\n  \"sofferte\": \"soffert\",\n  \"sofferti\": \"soff\",\n  \"sofferto\": \"soffert\",\n  \"soffi\": \"soff\",\n  \"soffian\": \"soffian\",\n  \"soffiando\": \"soff\",\n  \"soffiare\": \"soff\",\n  \"soffici\": \"soffic\",\n  \"soffio\": \"soff\",\n  \"soffiò\": \"soff\",\n  \"soffitta\": \"soffitt\",\n  \"soffocare\": \"soffoc\",\n  \"soffogargli\": \"soffog\",\n  \"soffogarglielo\": \"soffog\",\n  \"soffogarla\": \"soffog\",\n  \"soffogarlo\": \"soffog\",\n  \"soffogata\": \"soffog\",\n  \"soffogati\": \"soffog\",\n  \"soffogato\": \"soffog\",\n  \"soffogava\": \"soffog\",\n  \"soffogavano\": \"soffog\",\n  \"soffre\": \"soffr\",\n  \"soffrir\": \"soffr\",\n  \"soffrire\": \"soffr\",\n  \"soffriva\": \"soffr\",\n  \"soffrivano\": \"soffr\",\n  \"soffrono\": \"soffr\",\n  \"soffusa\": \"soffus\",\n  \"sofia\": \"sof\",\n  \"sofibond\": \"sofibond\",\n  \"sofisticate\": \"sofistic\",\n  \"sofisticati\": \"sofistic\",\n  \"sofisticatissime\": \"sofisticatissim\",\n  \"software\": \"softw\",\n  \"sogeafit\": \"sogeafit\",\n  \"sogefi\": \"sogef\",\n  \"sogesfit\": \"sogesfit\",\n  \"soggetta\": \"soggett\",\n  \"soggette\": \"soggett\",\n  \"soggetti\": \"soggett\",\n  \"soggettività\": \"soggett\",\n  \"soggetto\": \"soggett\",\n  \"sogghignando\": \"sogghign\",\n  \"sogghigni\": \"sogghign\",\n  \"sogghigno\": \"sogghign\",\n  \"soggiogata\": \"soggiog\",\n  \"soggiogate\": \"soggiog\",\n  \"soggiogato\": \"soggiog\",\n  \"soggiogava\": \"soggiog\",\n  \"soggiornato\": \"soggiorn\",\n  \"soggiorni\": \"soggiorn\",\n  \"soggiorno\": \"soggiorn\",\n  \"soggiunge\": \"soggiung\",\n  \"soggiunger\": \"soggiunger\",\n  \"soggiungeva\": \"soggiung\",\n  \"soggiunse\": \"soggiuns\",\n  \"soggolo\": \"soggol\",\n  \"sogguardata\": \"sogguard\",\n  \"sogguardava\": \"sogguard\",\n  \"soglia\": \"sogl\",\n  \"sogliano\": \"sogl\",\n  \"soglion\": \"soglion\",\n  \"sognare\": \"sogn\",\n  \"sognassi\": \"sogn\",\n  \"sognate\": \"sogn\",\n  \"sognato\": \"sogn\",\n  \"sognava\": \"sogn\",\n  \"sogni\": \"sogn\",\n  \"sogno\": \"sogn\",\n  \"sognò\": \"sogn\",\n  \"soir\": \"soir\",\n  \"sol\": \"sol\",\n  \"sola\": \"sol\",\n  \"solamente\": \"sol\",\n  \"solange\": \"solang\",\n  \"solare\": \"sol\",\n  \"solazzi\": \"solazz\",\n  \"solbiatese\": \"solbiates\",\n  \"solcata\": \"solc\",\n  \"solco\": \"solc\",\n  \"soldatacci\": \"soldatacc\",\n  \"soldatesca\": \"soldatesc\",\n  \"soldati\": \"sold\",\n  \"soldato\": \"sold\",\n  \"soldi\": \"sold\",\n  \"soldo\": \"sold\",\n  \"sole\": \"sol\",\n  \"solecismi\": \"solec\",\n  \"solenne\": \"solenn\",\n  \"solennemente\": \"solenn\",\n  \"solenni\": \"solenn\",\n  \"solennità\": \"solenn\",\n  \"soleva\": \"sol\",\n  \"solevano\": \"sol\",\n  \"soli\": \"sol\",\n  \"solidali\": \"solidal\",\n  \"solidarieta\": \"solidariet\",\n  \"solidarietà\": \"solidariet\",\n  \"solidarismo\": \"solidar\",\n  \"solide\": \"solid\",\n  \"solidificato\": \"solidific\",\n  \"solido\": \"solid\",\n  \"solimeno\": \"solimen\",\n  \"solimoes\": \"solimoes\",\n  \"solinas\": \"solinas\",\n  \"solistà\": \"solist\",\n  \"solisti\": \"solist\",\n  \"solita\": \"sol\",\n  \"solitamente\": \"solit\",\n  \"solitari\": \"solitar\",\n  \"solitaria\": \"solitar\",\n  \"solitario\": \"solitar\",\n  \"solite\": \"sol\",\n  \"soliti\": \"sol\",\n  \"solito\": \"sol\",\n  \"solitudine\": \"solitudin\",\n  \"sollecita\": \"sollec\",\n  \"sollecitandoli\": \"sollecit\",\n  \"sollecitare\": \"sollecit\",\n  \"sollecitarono\": \"sollecit\",\n  \"sollecitata\": \"sollecit\",\n  \"sollecitato\": \"sollecit\",\n  \"sollecitatori\": \"sollecit\",\n  \"sollecitava\": \"sollecit\",\n  \"sollecitazione\": \"sollecit\",\n  \"sollecitazioni\": \"sollecit\",\n  \"sollecito\": \"sollec\",\n  \"sollecitudine\": \"sollecitudin\",\n  \"solleuarsi\": \"solleu\",\n  \"solleva\": \"soll\",\n  \"sollevando\": \"sollev\",\n  \"sollevano\": \"soll\",\n  \"sollevar\": \"sollev\",\n  \"sollevare\": \"sollev\",\n  \"sollevarle\": \"sollev\",\n  \"sollevarvi\": \"sollev\",\n  \"sollevata\": \"sollev\",\n  \"sollevate\": \"soll\",\n  \"sollevati\": \"sollev\",\n  \"sollevato\": \"sollev\",\n  \"sollevava\": \"sollev\",\n  \"sollevavano\": \"sollev\",\n  \"sollevazione\": \"sollev\",\n  \"sollevazioni\": \"sollev\",\n  \"solleverà\": \"sollev\",\n  \"sollevò\": \"sollev\",\n  \"sollievo\": \"soll\",\n  \"solo\": \"sol\",\n  \"soltanto\": \"soltant\",\n  \"soltato\": \"solt\",\n  \"soluzione\": \"soluzion\",\n  \"soluzioni\": \"soluzion\",\n  \"solvibilità\": \"solvibil\",\n  \"somaglia\": \"somagl\",\n  \"somal\": \"somal\",\n  \"somala\": \"somal\",\n  \"somale\": \"somal\",\n  \"somalfruit\": \"somalfruit\",\n  \"somali\": \"somal\",\n  \"somalia\": \"somal\",\n  \"somalo\": \"somal\",\n  \"somaschi\": \"somasc\",\n  \"some\": \"som\",\n  \"somiglia\": \"somigl\",\n  \"somigliante\": \"somigl\",\n  \"somiglianti\": \"somigl\",\n  \"somigliantissimi\": \"somigliantissim\",\n  \"somiglianza\": \"somigl\",\n  \"somigliare\": \"somigl\",\n  \"somlia\": \"soml\",\n  \"somma\": \"somm\",\n  \"sommamente\": \"somm\",\n  \"sommando\": \"somm\",\n  \"sommari\": \"sommar\",\n  \"sommaria\": \"sommar\",\n  \"sommariamente\": \"sommar\",\n  \"sommario\": \"sommar\",\n  \"sommato\": \"somm\",\n  \"somme\": \"somm\",\n  \"sommersi\": \"somm\",\n  \"sommerso\": \"sommers\",\n  \"sommessa\": \"sommess\",\n  \"sommessamente\": \"sommess\",\n  \"sommesse\": \"sommess\",\n  \"sommesso\": \"sommess\",\n  \"sommi\": \"somm\",\n  \"somministra\": \"somministr\",\n  \"somministrarcene\": \"somministr\",\n  \"somministrare\": \"somministr\",\n  \"sommissione\": \"sommission\",\n  \"sommissioni\": \"sommission\",\n  \"sommità\": \"sommit\",\n  \"sommossa\": \"sommoss\",\n  \"son\": \"son\",\n  \"sonare\": \"son\",\n  \"sonata\": \"son\",\n  \"sonato\": \"son\",\n  \"sonator\": \"sonator\",\n  \"sonava\": \"son\",\n  \"sonda\": \"sond\",\n  \"sondaggi\": \"sondagg\",\n  \"sondaggio\": \"sondagg\",\n  \"sondalo\": \"sondal\",\n  \"sondel\": \"sondel\",\n  \"sondrio\": \"sondr\",\n  \"sonerà\": \"son\",\n  \"sonetti\": \"sonett\",\n  \"sonetto\": \"sonett\",\n  \"sonia\": \"son\",\n  \"sonni\": \"sonn\",\n  \"sonnifero\": \"sonnifer\",\n  \"sonno\": \"sonn\",\n  \"sonnolenta\": \"sonnolent\",\n  \"sonnolento\": \"sonnolent\",\n  \"sonntag\": \"sonntag\",\n  \"sono\": \"son\",\n  \"sonò\": \"son\",\n  \"sonora\": \"sonor\",\n  \"sonoramente\": \"sonor\",\n  \"sonore\": \"sonor\",\n  \"sonori\": \"sonor\",\n  \"sonorità\": \"sonor\",\n  \"sonoro\": \"sonor\",\n  \"sopaf\": \"sopaf\",\n  \"sopire\": \"sop\",\n  \"sopita\": \"sop\",\n  \"sopiti\": \"sop\",\n  \"sopito\": \"sop\",\n  \"sopiva\": \"sop\",\n  \"soppiatto\": \"soppiatt\",\n  \"sopporta\": \"sopport\",\n  \"sopportabile\": \"sopport\",\n  \"sopportare\": \"sopport\",\n  \"sopportatela\": \"sopportatel\",\n  \"sopportato\": \"sopport\",\n  \"sopportava\": \"sopport\",\n  \"sopportavano\": \"sopport\",\n  \"sopportiamo\": \"sopport\",\n  \"soppressa\": \"soppress\",\n  \"soppressione\": \"soppression\",\n  \"soppresso\": \"soppress\",\n  \"sopprimendo\": \"sopprim\",\n  \"sopprimere\": \"sopprim\",\n  \"sopra\": \"sopr\",\n  \"soprabbondanti\": \"soprabbond\",\n  \"sopraccigli\": \"sopraccigl\",\n  \"sopracciglio\": \"sopraccigl\",\n  \"sopraccitata\": \"sopraccit\",\n  \"sopraccitato\": \"sopraccit\",\n  \"sopraddetti\": \"sopraddett\",\n  \"sopraffatta\": \"sopraffatt\",\n  \"sopraffatte\": \"sopraffatt\",\n  \"sopraffatti\": \"sopraffatt\",\n  \"sopraffatto\": \"sopraffatt\",\n  \"sopraffino\": \"sopraffin\",\n  \"sopraggiungere\": \"sopraggiung\",\n  \"sopraggiungevano\": \"sopraggiung\",\n  \"sopraggiunse\": \"sopraggiuns\",\n  \"sopraggiunte\": \"sopraggiunt\",\n  \"sopralluogo\": \"sopralluog\",\n  \"soprammercato\": \"soprammerc\",\n  \"soprannome\": \"soprannom\",\n  \"soprannominato\": \"soprannomin\",\n  \"soprappensiero\": \"soprappensier\",\n  \"soprarrivati\": \"soprarriv\",\n  \"soprarrivato\": \"soprarriv\",\n  \"soprassalto\": \"soprassalt\",\n  \"soprattutto\": \"soprattutt\",\n  \"sopravanzare\": \"sopravanz\",\n  \"sopravanzava\": \"sopravanz\",\n  \"sopravvalutata\": \"sopravvalut\",\n  \"sopravvento\": \"sopravvent\",\n  \"sopravvenuto\": \"sopravven\",\n  \"sopravvissuta\": \"sopravviss\",\n  \"sopravvissuti\": \"sopravviss\",\n  \"sopravvissuto\": \"sopravviss\",\n  \"sopravvivenza\": \"sopravvivent\",\n  \"sopravvivere\": \"sopravviv\",\n  \"sopravvivono\": \"sopravviv\",\n  \"soprintendenti\": \"soprintendent\",\n  \"soprintendenza\": \"soprintendent\",\n  \"soprintendenze\": \"soprintendent\",\n  \"soprintendere\": \"soprintend\",\n  \"soprintendevano\": \"soprintend\",\n  \"soprusi\": \"soprus\",\n  \"sopruso\": \"soprus\",\n  \"soqquadro\": \"soqquadr\",\n  \"sor\": \"sor\",\n  \"sora\": \"sor\",\n  \"soranzo\": \"soranz\",\n  \"sorbello\": \"sorbell\",\n  \"sorbir\": \"sorb\",\n  \"sorda\": \"sord\",\n  \"sordamente\": \"sord\",\n  \"sordina\": \"sordin\",\n  \"sordo\": \"sord\",\n  \"sorella\": \"sorell\",\n  \"sorelle\": \"sorell\",\n  \"sorellina\": \"sorellin\",\n  \"sorge\": \"sorg\",\n  \"sorgente\": \"sorgent\",\n  \"sorgenti\": \"sorgent\",\n  \"sorger\": \"sorger\",\n  \"sorgere\": \"sorg\",\n  \"sorgerete\": \"sorg\",\n  \"sorgesse\": \"sorgess\",\n  \"sorgeva\": \"sorg\",\n  \"sorgevano\": \"sorg\",\n  \"sorgon\": \"sorgon\",\n  \"sorin\": \"sorin\",\n  \"sormontate\": \"sormont\",\n  \"soros\": \"soros\",\n  \"sorpassava\": \"sorpass\",\n  \"sorpasso\": \"sorpass\",\n  \"sorprende\": \"sorpr\",\n  \"sorprendendo\": \"sorprend\",\n  \"sorprender\": \"sorprender\",\n  \"sorprendere\": \"sorprend\",\n  \"sorprenderlo\": \"sorprend\",\n  \"sorprendermi\": \"sorprend\",\n  \"sorpresa\": \"sorpres\",\n  \"sorprese\": \"sorpres\",\n  \"sorpresi\": \"sorpres\",\n  \"sorpreso\": \"sorpres\",\n  \"sorreggendo\": \"sorregg\",\n  \"sorreggeva\": \"sorregg\",\n  \"sorretta\": \"sorrett\",\n  \"sorretto\": \"sorrett\",\n  \"sorridendo\": \"sorrid\",\n  \"sorridente\": \"sorrident\",\n  \"sorridenti\": \"sorrident\",\n  \"sorridere\": \"sorrid\",\n  \"sorrideva\": \"sorrid\",\n  \"sorridi\": \"sorrid\",\n  \"sorrise\": \"sorris\",\n  \"sorrisi\": \"sorris\",\n  \"sorriso\": \"sorris\",\n  \"sorsi\": \"sors\",\n  \"sorso\": \"sors\",\n  \"sorta\": \"sort\",\n  \"sorte\": \"sort\",\n  \"sorti\": \"sort\",\n  \"sortite\": \"sort\",\n  \"sortito\": \"sort\",\n  \"sorto\": \"sort\",\n  \"sorveglianza\": \"sorvegl\",\n  \"sorvegliare\": \"sorvegl\",\n  \"sorvegliato\": \"sorvegl\",\n  \"sorvegliava\": \"sorvegl\",\n  \"sorveglieranno\": \"sorvegl\",\n  \"sorvolato\": \"sorvol\",\n  \"sos\": \"sos\",\n  \"sosa\": \"sos\",\n  \"sosia\": \"sos\",\n  \"soskoviets\": \"soskoviets\",\n  \"sospende\": \"sosp\",\n  \"sospender\": \"sospender\",\n  \"sospendere\": \"sospend\",\n  \"sospendesse\": \"sospendess\",\n  \"sospendeva\": \"sospend\",\n  \"sospension\": \"sospension\",\n  \"sospensione\": \"sospension\",\n  \"sospensioni\": \"sospension\",\n  \"sospensiva\": \"sospens\",\n  \"sospesa\": \"sospes\",\n  \"sospese\": \"sospes\",\n  \"sospesero\": \"sospeser\",\n  \"sospesi\": \"sospes\",\n  \"sospeso\": \"sospes\",\n  \"sospetta\": \"sospett\",\n  \"sospettando\": \"sospett\",\n  \"sospettar\": \"sospett\",\n  \"sospettarci\": \"sospett\",\n  \"sospettare\": \"sospett\",\n  \"sospettate\": \"sospett\",\n  \"sospettava\": \"sospett\",\n  \"sospette\": \"sospett\",\n  \"sospetti\": \"sospett\",\n  \"sospettiamo\": \"sospett\",\n  \"sospetto\": \"sospett\",\n  \"sospettosa\": \"sospett\",\n  \"sospettosamente\": \"sospett\",\n  \"sospettosi\": \"sospett\",\n  \"sospettoso\": \"sospett\",\n  \"sospinse\": \"sospins\",\n  \"sospirando\": \"sospir\",\n  \"sospirar\": \"sospir\",\n  \"sospirare\": \"sospir\",\n  \"sospirata\": \"sospir\",\n  \"sospirato\": \"sospir\",\n  \"sospirava\": \"sospir\",\n  \"sospiri\": \"sospir\",\n  \"sospiro\": \"sospir\",\n  \"sospirò\": \"sosp\",\n  \"sosta\": \"sost\",\n  \"sostantivo\": \"sostant\",\n  \"sostanza\": \"sostanz\",\n  \"sostanze\": \"sostanz\",\n  \"sostanziale\": \"sostanzial\",\n  \"sostanzialmente\": \"sostanzial\",\n  \"sostanzioso\": \"sostanz\",\n  \"sostato\": \"sost\",\n  \"sostegno\": \"sostegn\",\n  \"sostenendo\": \"sosten\",\n  \"sostener\": \"sostener\",\n  \"sostenere\": \"sosten\",\n  \"sostenerla\": \"sosten\",\n  \"sostenerlo\": \"sosten\",\n  \"sostenerne\": \"sosten\",\n  \"sostenete\": \"sosten\",\n  \"sosteneva\": \"sosten\",\n  \"sostenevano\": \"sosten\",\n  \"sostenevo\": \"sosten\",\n  \"sostenga\": \"sosteng\",\n  \"sostengano\": \"sosteng\",\n  \"sostengo\": \"sosteng\",\n  \"sostengono\": \"sosteng\",\n  \"sostenibili\": \"sosten\",\n  \"sostenitore\": \"sostenitor\",\n  \"sostenitori\": \"sostenitor\",\n  \"sostenitrice\": \"sostenitr\",\n  \"sostenne\": \"sostenn\",\n  \"sostennero\": \"sostenner\",\n  \"sostenuta\": \"sosten\",\n  \"sostenute\": \"sosten\",\n  \"sostenuti\": \"sosten\",\n  \"sostenuto\": \"sosten\",\n  \"sosterrà\": \"sosterr\",\n  \"sostiene\": \"sostien\",\n  \"sostituendo\": \"sostitu\",\n  \"sostituì\": \"sostitu\",\n  \"sostituir\": \"sostitu\",\n  \"sostituire\": \"sostitu\",\n  \"sostituirlo\": \"sostitu\",\n  \"sostituirsi\": \"sostitu\",\n  \"sostituisca\": \"sostitu\",\n  \"sostituita\": \"sostitu\",\n  \"sostituito\": \"sostitu\",\n  \"sostituiva\": \"sostitu\",\n  \"sostituti\": \"sostit\",\n  \"sostituto\": \"sostit\",\n  \"sostituzione\": \"sostitu\",\n  \"sostiuisca\": \"sostiu\",\n  \"sott\": \"sott\",\n  \"sottana\": \"sottan\",\n  \"sottentrando\": \"sottentr\",\n  \"sotterfugi\": \"sotterfug\",\n  \"sotterfugio\": \"sotterfug\",\n  \"sotterranea\": \"sotterrane\",\n  \"sotterraneo\": \"sotterrane\",\n  \"sotterrare\": \"sotterr\",\n  \"sotterrarli\": \"sotterr\",\n  \"sotterrate\": \"sotterr\",\n  \"sottigliezze\": \"sottigliezz\",\n  \"sottil\": \"sottil\",\n  \"sottile\": \"sottil\",\n  \"sottili\": \"sottil\",\n  \"sottilissimo\": \"sottilissim\",\n  \"sottilmente\": \"sottil\",\n  \"sottintesa\": \"sottintes\",\n  \"sottintese\": \"sottintes\",\n  \"sotto\": \"sott\",\n  \"sottocoppa\": \"sottocopp\",\n  \"sottolinea\": \"sottoline\",\n  \"sottolineando\": \"sottolin\",\n  \"sottolineano\": \"sottolin\",\n  \"sottolineare\": \"sottolin\",\n  \"sottolineato\": \"sottolin\",\n  \"sottolineatura\": \"sottolineatur\",\n  \"sottolineava\": \"sottolin\",\n  \"sottomaestro\": \"sottomaestr\",\n  \"sottomarina\": \"sottomarin\",\n  \"sottomarino\": \"sottomarin\",\n  \"sottomesso\": \"sottomess\",\n  \"sottomettere\": \"sottomett\",\n  \"sottoponendo\": \"sottopon\",\n  \"sottoporre\": \"sottoporr\",\n  \"sottoposta\": \"sottopost\",\n  \"sottoposte\": \"sottopost\",\n  \"sottoposti\": \"sottopost\",\n  \"sottoposto\": \"sottopost\",\n  \"sottoscala\": \"sottoscal\",\n  \"sottoscritta\": \"sottoscritt\",\n  \"sottoscritti\": \"sottoscritt\",\n  \"sottoscritto\": \"sottoscritt\",\n  \"sottoscrittore\": \"sottoscrittor\",\n  \"sottoscrivere\": \"sottoscriv\",\n  \"sottoscrizione\": \"sottoscrizion\",\n  \"sottoscrizioni\": \"sottoscrizion\",\n  \"sottosegretari\": \"sottosegretar\",\n  \"sottosegretario\": \"sottosegretar\",\n  \"sottosegretariop\": \"sottosegretariop\",\n  \"sottosopra\": \"sottosopr\",\n  \"sottostimato\": \"sottostim\",\n  \"sottosuolo\": \"sottosuol\",\n  \"sottotitolo\": \"sottotitol\",\n  \"sottotono\": \"sottot\",\n  \"sottovalutare\": \"sottovalut\",\n  \"sottovalutata\": \"sottovalut\",\n  \"sottovaluti\": \"sottoval\",\n  \"sottovoce\": \"sottovoc\",\n  \"sottraesse\": \"sottraess\",\n  \"sottraevano\": \"sottr\",\n  \"sottrar\": \"sottr\",\n  \"sottrarci\": \"sottr\",\n  \"sottrarre\": \"sottrarr\",\n  \"sottrarsi\": \"sottr\",\n  \"sottratta\": \"sottratt\",\n  \"sottrattà\": \"sottratt\",\n  \"sottratti\": \"sottratt\",\n  \"sottrazione\": \"sottrazion\",\n  \"sottrazioni\": \"sottrazion\",\n  \"sottrici\": \"sottric\",\n  \"sottufficiali\": \"sottufficial\",\n  \"sottuficiali\": \"sottuficial\",\n  \"sousa\": \"sous\",\n  \"souzhou\": \"souzhou\",\n  \"sovente\": \"sovent\",\n  \"soverato\": \"sover\",\n  \"soverchiare\": \"soverc\",\n  \"soverchiarsi\": \"soverc\",\n  \"soverchiasse\": \"soverc\",\n  \"soverchiatore\": \"soverc\",\n  \"soverchiatori\": \"soverc\",\n  \"soverchieria\": \"soverchier\",\n  \"soverchierie\": \"soverchier\",\n  \"sovietica\": \"soviet\",\n  \"sovietiche\": \"soviet\",\n  \"sovietici\": \"soviet\",\n  \"sovietico\": \"soviet\",\n  \"sovrani\": \"sovran\",\n  \"sovranità\": \"sovran\",\n  \"sovrano\": \"sovr\",\n  \"sovrappopolazione\": \"sovrappopol\",\n  \"sovrapporre\": \"sovrapporr\",\n  \"sovrapposti\": \"sovrappost\",\n  \"sovrapproduzioni\": \"sovrapprodu\",\n  \"sovraregionali\": \"sovraregional\",\n  \"sovrastanti\": \"sovrast\",\n  \"sovrastata\": \"sovrast\",\n  \"sovrastato\": \"sovrast\",\n  \"sovrastava\": \"sovrast\",\n  \"sovrintendente\": \"sovrintendent\",\n  \"sovrintendevano\": \"sovrintend\",\n  \"sovrumana\": \"sovruman\",\n  \"sovvenne\": \"sovvenn\",\n  \"sovvenzione\": \"sovvenzion\",\n  \"sovvenzioni\": \"sovvenzion\",\n  \"sozzi\": \"sozz\",\n  \"sozzo\": \"sozz\",\n  \"sp\": \"sp\",\n  \"spa\": \"spa\",\n  \"spaak\": \"spaak\",\n  \"spaccare\": \"spacc\",\n  \"spaccati\": \"spacc\",\n  \"spaccatura\": \"spaccatur\",\n  \"spaccature\": \"spaccatur\",\n  \"spaccia\": \"spacc\",\n  \"spacciar\": \"spacc\",\n  \"spacciavano\": \"spacc\",\n  \"spaccone\": \"spaccon\",\n  \"spada\": \"spad\",\n  \"spadafora\": \"spadafor\",\n  \"spadaio\": \"spadai\",\n  \"spade\": \"spad\",\n  \"spadone\": \"spadon\",\n  \"spadoni\": \"spadon\",\n  \"spaggiari\": \"spaggiar\",\n  \"spagna\": \"spagn\",\n  \"spagnola\": \"spagnol\",\n  \"spagnolescamente\": \"spagnolesc\",\n  \"spagnoli\": \"spagnol\",\n  \"spagnolo\": \"spagnol\",\n  \"spagnulo\": \"spagnul\",\n  \"spago\": \"spag\",\n  \"spal\": \"spal\",\n  \"spalanca\": \"spalanc\",\n  \"spalancan\": \"spalancan\",\n  \"spalancando\": \"spalanc\",\n  \"spalancarsi\": \"spalanc\",\n  \"spalancata\": \"spalanc\",\n  \"spalancate\": \"spalanc\",\n  \"spalancati\": \"spalanc\",\n  \"spalancato\": \"spalanc\",\n  \"spalancava\": \"spalanc\",\n  \"spalancò\": \"spalanc\",\n  \"spalla\": \"spall\",\n  \"spalle\": \"spall\",\n  \"spalleggiano\": \"spallegg\",\n  \"spalleggiati\": \"spallegg\",\n  \"spalliera\": \"spallier\",\n  \"spallone\": \"spallon\",\n  \"spalti\": \"spalt\",\n  \"spander\": \"spander\",\n  \"spandersi\": \"spand\",\n  \"spandeva\": \"spand\",\n  \"spandevano\": \"spand\",\n  \"spandino\": \"spandin\",\n  \"spanu\": \"spanu\",\n  \"spaolo\": \"spaol\",\n  \"sparando\": \"spar\",\n  \"sparare\": \"spar\",\n  \"sparata\": \"spar\",\n  \"sparato\": \"spar\",\n  \"sparatogli\": \"sparatogl\",\n  \"sparatoria\": \"sparator\",\n  \"sparatorie\": \"sparator\",\n  \"sparava\": \"spar\",\n  \"sparecchiare\": \"sparecc\",\n  \"sparecchiato\": \"sparecc\",\n  \"sparge\": \"sparg\",\n  \"sparger\": \"sparger\",\n  \"spargerà\": \"sparg\",\n  \"spargere\": \"sparg\",\n  \"spargersi\": \"sparg\",\n  \"spargeva\": \"sparg\",\n  \"spargimento\": \"sparg\",\n  \"spargono\": \"sparg\",\n  \"spari\": \"spar\",\n  \"sparir\": \"spar\",\n  \"spariranno\": \"spar\",\n  \"sparire\": \"spar\",\n  \"sparisce\": \"spar\",\n  \"spariscono\": \"spar\",\n  \"sparite\": \"spar\",\n  \"spariti\": \"spar\",\n  \"sparito\": \"spar\",\n  \"spariva\": \"spar\",\n  \"sparizione\": \"sparizion\",\n  \"sparò\": \"spar\",\n  \"sparpagliati\": \"sparpagl\",\n  \"sparpagliato\": \"sparpagl\",\n  \"sparpagliò\": \"sparpagl\",\n  \"sparsa\": \"spars\",\n  \"sparsavi\": \"spars\",\n  \"sparse\": \"spars\",\n  \"sparsero\": \"sparser\",\n  \"sparsi\": \"spars\",\n  \"sparsim\": \"sparsim\",\n  \"sparso\": \"spars\",\n  \"spartire\": \"spart\",\n  \"spartiti\": \"spart\",\n  \"spartitoria\": \"spartitor\",\n  \"spartizione\": \"spartizion\",\n  \"spasimi\": \"spasim\",\n  \"spasimo\": \"spasim\",\n  \"spassi\": \"spass\",\n  \"spassionato\": \"spassion\",\n  \"spasso\": \"spass\",\n  \"spatari\": \"spatar\",\n  \"spatio\": \"spat\",\n  \"spatriarsi\": \"spatr\",\n  \"spaulding\": \"spaulding\",\n  \"spauracchi\": \"spauracc\",\n  \"spauracchio\": \"spauracc\",\n  \"spauriti\": \"spaur\",\n  \"spaventare\": \"spavent\",\n  \"spaventarsi\": \"spavent\",\n  \"spaventata\": \"spavent\",\n  \"spaventati\": \"spavent\",\n  \"spaventato\": \"spavent\",\n  \"spaventava\": \"spavent\",\n  \"spaventevole\": \"spaventevol\",\n  \"spaventi\": \"spavent\",\n  \"spavento\": \"spavent\",\n  \"spaventò\": \"spavent\",\n  \"spaventosa\": \"spavent\",\n  \"spaventosamente\": \"spavent\",\n  \"spaventosi\": \"spavent\",\n  \"spaventoso\": \"spavent\",\n  \"spazi\": \"spaz\",\n  \"spazia\": \"spaz\",\n  \"spaziale\": \"spazial\",\n  \"spazio\": \"spaz\",\n  \"spaziose\": \"spazios\",\n  \"spazza\": \"spazz\",\n  \"spazzando\": \"spazz\",\n  \"spazzar\": \"spazz\",\n  \"spazzarla\": \"spazz\",\n  \"spazzato\": \"spazz\",\n  \"spc\": \"spc\",\n  \"spd\": \"spd\",\n  \"spe\": \"spe\",\n  \"speaker\": \"speaker\",\n  \"specchi\": \"specc\",\n  \"specchia\": \"specc\",\n  \"specchiava\": \"specc\",\n  \"specchio\": \"specc\",\n  \"speci\": \"spec\",\n  \"special\": \"special\",\n  \"speciale\": \"special\",\n  \"speciali\": \"special\",\n  \"specialista\": \"special\",\n  \"specialisti\": \"special\",\n  \"specialistiche\": \"specialist\",\n  \"specialità\": \"special\",\n  \"specializzata\": \"specializz\",\n  \"specializzato\": \"specializz\",\n  \"specializzazione\": \"specializz\",\n  \"specializzazioni\": \"specializz\",\n  \"specialmente\": \"special\",\n  \"specie\": \"spec\",\n  \"specifica\": \"specif\",\n  \"specificamente\": \"specif\",\n  \"specificando\": \"specific\",\n  \"specificare\": \"specific\",\n  \"specificata\": \"specific\",\n  \"specificatamente\": \"specificat\",\n  \"specificati\": \"specific\",\n  \"specificato\": \"specific\",\n  \"specificavano\": \"specific\",\n  \"specifiche\": \"specif\",\n  \"specifici\": \"specif\",\n  \"specificità\": \"specif\",\n  \"specifico\": \"specif\",\n  \"speculare\": \"specul\",\n  \"speculari\": \"specular\",\n  \"speculativo\": \"specul\",\n  \"speculatori\": \"specul\",\n  \"speculazione\": \"specul\",\n  \"speculazioni\": \"specul\",\n  \"spedale\": \"spedal\",\n  \"spedì\": \"sped\",\n  \"spedir\": \"sped\",\n  \"spedire\": \"sped\",\n  \"spedirlo\": \"sped\",\n  \"spediron\": \"spediron\",\n  \"spedirono\": \"sped\",\n  \"spedisca\": \"sped\",\n  \"spediscono\": \"sped\",\n  \"spedisse\": \"spediss\",\n  \"spedita\": \"sped\",\n  \"speditamente\": \"spedit\",\n  \"speditane\": \"speditan\",\n  \"spediti\": \"sped\",\n  \"speditivo\": \"spedit\",\n  \"spedito\": \"sped\",\n  \"spedizione\": \"spedizion\",\n  \"spedizioni\": \"spedizion\",\n  \"speed\": \"speed\",\n  \"spegnendo\": \"spegn\",\n  \"spegner\": \"spegner\",\n  \"spegnere\": \"spegn\",\n  \"spegnersi\": \"spegn\",\n  \"spegnervi\": \"spegn\",\n  \"spegnesse\": \"spegness\",\n  \"spegnimento\": \"spegn\",\n  \"speice\": \"speic\",\n  \"spelacchiata\": \"spelacc\",\n  \"spelacchiati\": \"spelacc\",\n  \"spendendo\": \"spend\",\n  \"spender\": \"spender\",\n  \"spendere\": \"spend\",\n  \"spenderebbe\": \"spend\",\n  \"spenderli\": \"spend\",\n  \"spenderlo\": \"spend\",\n  \"spenderò\": \"spend\",\n  \"spendevano\": \"spend\",\n  \"spendiamo\": \"spend\",\n  \"spennacchiati\": \"spennacc\",\n  \"spennacchiato\": \"spennacc\",\n  \"spensierata\": \"spensier\",\n  \"spensierato\": \"spensier\",\n  \"spenta\": \"spent\",\n  \"spenti\": \"spent\",\n  \"spento\": \"spent\",\n  \"spenzolata\": \"spenzol\",\n  \"spenzolate\": \"spenzol\",\n  \"spenzolava\": \"spenzol\",\n  \"spenzolavano\": \"spenzol\",\n  \"spera\": \"sper\",\n  \"sperando\": \"sper\",\n  \"sperano\": \"sper\",\n  \"speranza\": \"speranz\",\n  \"speranze\": \"speranz\",\n  \"sperar\": \"sper\",\n  \"sperare\": \"sper\",\n  \"sperarlo\": \"sper\",\n  \"sperasse\": \"sper\",\n  \"sperati\": \"sper\",\n  \"sperato\": \"sper\",\n  \"sperava\": \"sper\",\n  \"speravo\": \"sper\",\n  \"sperdute\": \"sperd\",\n  \"speriamo\": \"sper\",\n  \"spericolata\": \"spericol\",\n  \"sperimentale\": \"sperimental\",\n  \"sperimentati\": \"speriment\",\n  \"sperimentato\": \"speriment\",\n  \"spero\": \"sper\",\n  \"speroni\": \"speron\",\n  \"sperperìo\": \"sperperì\",\n  \"sperpero\": \"sperper\",\n  \"sperticate\": \"spertic\",\n  \"spesa\": \"spes\",\n  \"spese\": \"spes\",\n  \"spesi\": \"spes\",\n  \"speso\": \"spes\",\n  \"spesso\": \"spess\",\n  \"spetta\": \"spett\",\n  \"spettabili\": \"spettabil\",\n  \"spettacolare\": \"spettacol\",\n  \"spettacolarizzazione\": \"spettacolarizz\",\n  \"spettacoli\": \"spettacol\",\n  \"spettacolo\": \"spettacol\",\n  \"spettante\": \"spettant\",\n  \"spettatore\": \"spettator\",\n  \"spettatori\": \"spettator\",\n  \"spetterà\": \"spett\",\n  \"spettro\": \"spettr\",\n  \"spezia\": \"spez\",\n  \"speziale\": \"spezial\",\n  \"spezzano\": \"spezz\",\n  \"spezzare\": \"spezz\",\n  \"spezzarlo\": \"spezz\",\n  \"spezzate\": \"spezz\",\n  \"spezzato\": \"spezz\",\n  \"spezzerò\": \"spezz\",\n  \"spezzone\": \"spezzon\",\n  \"spezzoni\": \"spezzon\",\n  \"spia\": \"spi\",\n  \"spiacevole\": \"spiacevol\",\n  \"spiacevoli\": \"spiacevol\",\n  \"spiagge\": \"spiagg\",\n  \"spiaggia\": \"spiagg\",\n  \"spianando\": \"spian\",\n  \"spianargli\": \"spian\",\n  \"spianarsi\": \"spian\",\n  \"spianata\": \"spian\",\n  \"spianate\": \"spian\",\n  \"spianati\": \"spian\",\n  \"spianato\": \"spian\",\n  \"spianava\": \"spian\",\n  \"spiando\": \"spi\",\n  \"spianti\": \"spiant\",\n  \"spiare\": \"spi\",\n  \"spiattellar\": \"spiattell\",\n  \"spiattellargli\": \"spiattell\",\n  \"spiattellato\": \"spiattell\",\n  \"spiava\": \"spi\",\n  \"spiazzare\": \"spiazz\",\n  \"spiazzo\": \"spiazz\",\n  \"spicca\": \"spicc\",\n  \"spiccando\": \"spicc\",\n  \"spiccata\": \"spicc\",\n  \"spiccato\": \"spicc\",\n  \"spiccava\": \"spicc\",\n  \"spiccavano\": \"spicc\",\n  \"spicci\": \"spicc\",\n  \"spicciar\": \"spicc\",\n  \"spicciare\": \"spicc\",\n  \"spicciarmi\": \"spicc\",\n  \"spicciarsi\": \"spicc\",\n  \"spicciarti\": \"spicc\",\n  \"spicciatevi\": \"spicciat\",\n  \"spicciato\": \"spicc\",\n  \"spicciola\": \"spicciol\",\n  \"spicciolare\": \"spicciol\",\n  \"spicciolata\": \"spicciol\",\n  \"spicciolati\": \"spicciol\",\n  \"spicco\": \"spicc\",\n  \"spiccò\": \"spicc\",\n  \"spie\": \"spi\",\n  \"spiega\": \"spieg\",\n  \"spiegando\": \"spieg\",\n  \"spiegandosi\": \"spieg\",\n  \"spiegano\": \"spieg\",\n  \"spiegar\": \"spieg\",\n  \"spiegare\": \"spieg\",\n  \"spiegargli\": \"spieg\",\n  \"spiegarlo\": \"spieg\",\n  \"spiegarsi\": \"spieg\",\n  \"spiegarvi\": \"spieg\",\n  \"spiegasse\": \"spieg\",\n  \"spiegata\": \"spieg\",\n  \"spiegatemi\": \"spiegatem\",\n  \"spiegato\": \"spieg\",\n  \"spiegava\": \"spieg\",\n  \"spiegazion\": \"spiegazion\",\n  \"spiegazione\": \"spiegazion\",\n  \"spiegazioni\": \"spiegazion\",\n  \"spiegel\": \"spiegel\",\n  \"spieghi\": \"spieg\",\n  \"spiegò\": \"spieg\",\n  \"spielberg\": \"spielberg\",\n  \"spierebbe\": \"spi\",\n  \"spietata\": \"spiet\",\n  \"spietati\": \"spiet\",\n  \"spigadoro\": \"spigador\",\n  \"spighe\": \"spig\",\n  \"spighette\": \"spighett\",\n  \"spillare\": \"spill\",\n  \"spilli\": \"spill\",\n  \"spillo\": \"spill\",\n  \"spillò\": \"spill\",\n  \"spilluzzicando\": \"spilluzzic\",\n  \"spina\": \"spin\",\n  \"spindler\": \"spindler\",\n  \"spine\": \"spin\",\n  \"spinelli\": \"spinell\",\n  \"spinge\": \"sping\",\n  \"spingendo\": \"sping\",\n  \"spingendole\": \"sping\",\n  \"spingendoli\": \"sping\",\n  \"spingendolo\": \"sping\",\n  \"spinger\": \"spinger\",\n  \"spingerà\": \"sping\",\n  \"spingere\": \"sping\",\n  \"spingerebbe\": \"sping\",\n  \"spingerli\": \"sping\",\n  \"spingeva\": \"sping\",\n  \"spingevan\": \"spingevan\",\n  \"spingon\": \"spingon\",\n  \"spingono\": \"sping\",\n  \"spini\": \"spin\",\n  \"spinola\": \"spinol\",\n  \"spinosa\": \"spinos\",\n  \"spinose\": \"spinos\",\n  \"spinse\": \"spins\",\n  \"spinsero\": \"spinser\",\n  \"spinta\": \"spint\",\n  \"spinte\": \"spint\",\n  \"spinti\": \"spint\",\n  \"spinto\": \"spint\",\n  \"spintonato\": \"spinton\",\n  \"spionaggio\": \"spionagg\",\n  \"spione\": \"spion\",\n  \"spiovuto\": \"spiov\",\n  \"spiraglio\": \"spiragl\",\n  \"spirale\": \"spiral\",\n  \"spirate\": \"spir\",\n  \"spirato\": \"spir\",\n  \"spirava\": \"spir\",\n  \"spiravano\": \"spir\",\n  \"spire\": \"spir\",\n  \"spiritati\": \"spirit\",\n  \"spiritato\": \"spirit\",\n  \"spiriti\": \"spir\",\n  \"spirito\": \"spir\",\n  \"spiritose\": \"spirit\",\n  \"spirituale\": \"spiritual\",\n  \"spirituali\": \"spiritual\",\n  \"spiritualità\": \"spiritual\",\n  \"spirò\": \"spir\",\n  \"spizzico\": \"spizzic\",\n  \"splendida\": \"splendid\",\n  \"splendidezza\": \"splendidezz\",\n  \"splendidi\": \"splendid\",\n  \"splendido\": \"splendid\",\n  \"splendore\": \"splendor\",\n  \"spm\": \"spm\",\n  \"spoglia\": \"spogl\",\n  \"spogliarello\": \"spogliarell\",\n  \"spogliarmi\": \"spogl\",\n  \"spogliata\": \"spogl\",\n  \"spogliate\": \"spogl\",\n  \"spogliatevi\": \"spogliat\",\n  \"spogliati\": \"spogl\",\n  \"spogliato\": \"spogl\",\n  \"spogliatoi\": \"spogliato\",\n  \"spogliatolo\": \"spogliatol\",\n  \"spogliatosi\": \"spogliat\",\n  \"spogliava\": \"spogl\",\n  \"spogliavano\": \"spogl\",\n  \"spoglie\": \"spogl\",\n  \"spoldi\": \"spold\",\n  \"spoleto\": \"spolet\",\n  \"spolverò\": \"spolv\",\n  \"sponda\": \"spond\",\n  \"sponde\": \"spond\",\n  \"spongia\": \"spong\",\n  \"sponsorizzato\": \"sponsorizz\",\n  \"spontanea\": \"spontane\",\n  \"spontaneamente\": \"spontan\",\n  \"spontanei\": \"spontane\",\n  \"spontaneo\": \"spontane\",\n  \"spopolar\": \"spopol\",\n  \"spopolò\": \"spopol\",\n  \"sporchi\": \"sporc\",\n  \"sporchizie\": \"sporchiz\",\n  \"sporco\": \"sporc\",\n  \"sporge\": \"sporg\",\n  \"sporgente\": \"sporgent\",\n  \"sporgenti\": \"sporgent\",\n  \"sporgere\": \"sporg\",\n  \"sporgersi\": \"sporg\",\n  \"sporgevan\": \"sporgevan\",\n  \"sport\": \"sport\",\n  \"sporta\": \"sport\",\n  \"sportelli\": \"sportell\",\n  \"sportellino\": \"sportellin\",\n  \"sportello\": \"sportell\",\n  \"sporting\": \"sporting\",\n  \"sportiva\": \"sport\",\n  \"sportive\": \"sportiv\",\n  \"sportivi\": \"sport\",\n  \"sportività\": \"sportiv\",\n  \"sportivo\": \"sport\",\n  \"sposa\": \"spos\",\n  \"sposalizio\": \"sposaliz\",\n  \"sposare\": \"spos\",\n  \"sposarlo\": \"spos\",\n  \"sposarsi\": \"spos\",\n  \"sposata\": \"spos\",\n  \"sposato\": \"spos\",\n  \"spose\": \"spos\",\n  \"sposi\": \"spos\",\n  \"sposina\": \"sposin\",\n  \"sposini\": \"sposin\",\n  \"sposo\": \"spos\",\n  \"spossati\": \"sposs\",\n  \"sposta\": \"spost\",\n  \"spostamento\": \"spost\",\n  \"spostando\": \"spost\",\n  \"spostano\": \"spost\",\n  \"spostato\": \"spost\",\n  \"spostava\": \"spost\",\n  \"spot\": \"spot\",\n  \"spr\": \"spr\",\n  \"spranghetta\": \"spranghett\",\n  \"spray\": \"spray\",\n  \"sprazzo\": \"sprazz\",\n  \"sprecano\": \"sprec\",\n  \"sprecate\": \"sprec\",\n  \"sprecato\": \"sprec\",\n  \"sprecava\": \"sprec\",\n  \"sprechi\": \"sprec\",\n  \"spreco\": \"sprec\",\n  \"sprecone\": \"sprecon\",\n  \"spred\": \"spred\",\n  \"spregevole\": \"spregevol\",\n  \"spremere\": \"sprem\",\n  \"spremerne\": \"sprem\",\n  \"spremitura\": \"spremitur\",\n  \"sprezzante\": \"sprezzant\",\n  \"sprezzatura\": \"sprezzatur\",\n  \"sprezzo\": \"sprezz\",\n  \"sprigiona\": \"sprigion\",\n  \"sprigionandosi\": \"sprigion\",\n  \"sprigionò\": \"sprigion\",\n  \"sprint\": \"sprint\",\n  \"sprofondato\": \"sprofond\",\n  \"sprona\": \"spron\",\n  \"sproni\": \"spron\",\n  \"sproporzionato\": \"sproporzion\",\n  \"sproporzione\": \"sproporzion\",\n  \"spropositato\": \"sproposit\",\n  \"spropositava\": \"sproposit\",\n  \"spropositi\": \"spropos\",\n  \"sproposito\": \"spropos\",\n  \"spropriarsi\": \"spropr\",\n  \"sproprio\": \"spropr\",\n  \"sprovveduta\": \"sprovved\",\n  \"sprovvisto\": \"sprovvist\",\n  \"spugna\": \"spugn\",\n  \"spugne\": \"spugn\",\n  \"spumante\": \"spumant\",\n  \"spunta\": \"spunt\",\n  \"spuntano\": \"spunt\",\n  \"spuntar\": \"spunt\",\n  \"spuntare\": \"spunt\",\n  \"spuntargli\": \"spunt\",\n  \"spuntarla\": \"spunt\",\n  \"spuntarlo\": \"spunt\",\n  \"spuntati\": \"spunt\",\n  \"spuntava\": \"spunt\",\n  \"spunterebbe\": \"spunt\",\n  \"spunti\": \"spunt\",\n  \"spunto\": \"spunt\",\n  \"spuntò\": \"spunt\",\n  \"spurs\": \"spurs\",\n  \"squadra\": \"squadr\",\n  \"squadrando\": \"squadr\",\n  \"squadrandolo\": \"squadr\",\n  \"squadrati\": \"squadr\",\n  \"squadrato\": \"squadr\",\n  \"squadrava\": \"squadr\",\n  \"squadre\": \"squadr\",\n  \"squadrò\": \"squadr\",\n  \"squadron\": \"squadron\",\n  \"squadrone\": \"squadron\",\n  \"squalificati\": \"squalific\",\n  \"squalificato\": \"squalific\",\n  \"squallida\": \"squallid\",\n  \"squallidamente\": \"squallid\",\n  \"squallide\": \"squallid\",\n  \"squallido\": \"squallid\",\n  \"squarci\": \"squarc\",\n  \"squarcio\": \"squarc\",\n  \"squartare\": \"squart\",\n  \"squartato\": \"squart\",\n  \"squilibri\": \"squilibr\",\n  \"squilibrio\": \"squilibr\",\n  \"squillo\": \"squill\",\n  \"squinternotto\": \"squinternott\",\n  \"squisita\": \"squis\",\n  \"squisitamente\": \"squisit\",\n  \"squisitezza\": \"squisitezz\",\n  \"squisito\": \"squis\",\n  \"sradicamento\": \"sradic\",\n  \"sregolati\": \"sregol\",\n  \"srna\": \"srna\",\n  \"ss\": \"ss\",\n  \"st\": \"st\",\n  \"sta\": \"sta\",\n  \"stà\": \"stà\",\n  \"stabia\": \"stab\",\n  \"stabile\": \"stabil\",\n  \"stabilendo\": \"stabil\",\n  \"stabili\": \"stabil\",\n  \"stabilì\": \"stabil\",\n  \"stabilimenti\": \"stabil\",\n  \"stabilimento\": \"stabil\",\n  \"stabilirà\": \"stabil\",\n  \"stabilire\": \"stabil\",\n  \"stabilirla\": \"stabil\",\n  \"stabilirsi\": \"stabil\",\n  \"stabilirvi\": \"stabil\",\n  \"stabilisce\": \"stabil\",\n  \"stabiliscono\": \"stabil\",\n  \"stabilita\": \"stabil\",\n  \"stabilità\": \"stabil\",\n  \"stabilite\": \"stabil\",\n  \"stabiliti\": \"stabil\",\n  \"stabilito\": \"stabil\",\n  \"stabiliva\": \"stabil\",\n  \"stabilizzare\": \"stabilizz\",\n  \"stabilizzarsi\": \"stabilizz\",\n  \"stabilizzata\": \"stabilizz\",\n  \"stabilizzazione\": \"stabilizz\",\n  \"stabilizzerà\": \"stabilizz\",\n  \"stabilmente\": \"stabil\",\n  \"stacca\": \"stacc\",\n  \"staccan\": \"staccan\",\n  \"staccando\": \"stacc\",\n  \"staccarsene\": \"stacc\",\n  \"staccarsi\": \"stacc\",\n  \"staccasse\": \"stacc\",\n  \"staccata\": \"stacc\",\n  \"staccato\": \"stacc\",\n  \"staccatosi\": \"staccat\",\n  \"staccava\": \"stacc\",\n  \"staccavano\": \"stacc\",\n  \"stacchini\": \"stacchin\",\n  \"staccò\": \"stacc\",\n  \"stadi\": \"stad\",\n  \"stadio\": \"stad\",\n  \"staff\": \"staff\",\n  \"staffa\": \"staff\",\n  \"staffan\": \"staffan\",\n  \"staffetta\": \"staffett\",\n  \"staffette\": \"staffett\",\n  \"staffilata\": \"staffil\",\n  \"stafoggia\": \"stafogg\",\n  \"stagbilità\": \"stagbil\",\n  \"staggi\": \"stagg\",\n  \"staggione\": \"staggion\",\n  \"stagionale\": \"stagional\",\n  \"stagionali\": \"stagional\",\n  \"stagione\": \"stagion\",\n  \"stagioni\": \"stagion\",\n  \"stagionì\": \"stagion\",\n  \"stai\": \"sta\",\n  \"staia\": \"stai\",\n  \"staio\": \"stai\",\n  \"stajano\": \"staj\",\n  \"stalin\": \"stalin\",\n  \"stalla\": \"stall\",\n  \"stalle\": \"stall\",\n  \"stallo\": \"stall\",\n  \"stallone\": \"stallon\",\n  \"stamane\": \"staman\",\n  \"stamani\": \"staman\",\n  \"stamattina\": \"stamattin\",\n  \"stampa\": \"stamp\",\n  \"stampà\": \"stamp\",\n  \"stampando\": \"stamp\",\n  \"stampano\": \"stamp\",\n  \"stamparlo\": \"stamp\",\n  \"stampassero\": \"stamp\",\n  \"stampata\": \"stamp\",\n  \"stampate\": \"stamp\",\n  \"stampati\": \"stamp\",\n  \"stampato\": \"stamp\",\n  \"stampatori\": \"stampator\",\n  \"stampava\": \"stamp\",\n  \"stampavano\": \"stamp\",\n  \"stampe\": \"stamp\",\n  \"stamperia\": \"stamper\",\n  \"stan\": \"stan\",\n  \"stanca\": \"stanc\",\n  \"stancano\": \"stanc\",\n  \"stancate\": \"stanc\",\n  \"stanchezza\": \"stanchezz\",\n  \"stanchi\": \"stanc\",\n  \"stanco\": \"stanc\",\n  \"stand\": \"stand\",\n  \"standa\": \"stand\",\n  \"standard\": \"standard\",\n  \"stando\": \"stand\",\n  \"standogli\": \"standogl\",\n  \"stands\": \"stands\",\n  \"stanga\": \"stang\",\n  \"stangata\": \"stang\",\n  \"stanghette\": \"stanghett\",\n  \"stanislao\": \"stanisla\",\n  \"stanley\": \"stanley\",\n  \"stanno\": \"stann\",\n  \"stanotte\": \"stanott\",\n  \"stante\": \"stant\",\n  \"stantuffi\": \"stantuff\",\n  \"stanza\": \"stanz\",\n  \"stanzaccia\": \"stanzacc\",\n  \"stanze\": \"stanz\",\n  \"stanzia\": \"stanz\",\n  \"stanziamento\": \"stanz\",\n  \"stanziati\": \"stanz\",\n  \"stanziato\": \"stanz\",\n  \"stanzina\": \"stanzin\",\n  \"stanzine\": \"stanzin\",\n  \"stanzone\": \"stanzon\",\n  \"stanzucce\": \"stanzucc\",\n  \"star\": \"star\",\n  \"starà\": \"star\",\n  \"starai\": \"stara\",\n  \"staranno\": \"starann\",\n  \"starci\": \"starc\",\n  \"stare\": \"star\",\n  \"starebbe\": \"starebb\",\n  \"staremmo\": \"star\",\n  \"starete\": \"star\",\n  \"starkraft\": \"starkraft\",\n  \"starne\": \"starn\",\n  \"starnett\": \"starnett\",\n  \"starò\": \"star\",\n  \"staropromyslovski\": \"staropromyslovsk\",\n  \"starsene\": \"starsen\",\n  \"starvi\": \"starv\",\n  \"stasera\": \"staser\",\n  \"stasi\": \"stas\",\n  \"stata\": \"stat\",\n  \"statale\": \"statal\",\n  \"statali\": \"statal\",\n  \"statalismo\": \"statal\",\n  \"statalista\": \"statal\",\n  \"state\": \"stat\",\n  \"statevi\": \"stat\",\n  \"stati\": \"stat\",\n  \"statista\": \"statist\",\n  \"statisti\": \"statist\",\n  \"statistica\": \"statist\",\n  \"statistiche\": \"statist\",\n  \"stato\": \"stat\",\n  \"statoil\": \"statoil\",\n  \"statua\": \"statu\",\n  \"statuale\": \"statual\",\n  \"statuario\": \"statuar\",\n  \"statue\": \"statu\",\n  \"statunitense\": \"statunitens\",\n  \"statunitensi\": \"statunitens\",\n  \"statutari\": \"statutar\",\n  \"statutaria\": \"statutar\",\n  \"statutarie\": \"statutar\",\n  \"statuti\": \"stat\",\n  \"statuto\": \"stat\",\n  \"stava\": \"stav\",\n  \"stavan\": \"stavan\",\n  \"stavano\": \"stav\",\n  \"stavate\": \"stav\",\n  \"stavo\": \"stav\",\n  \"stavolta\": \"stavolt\",\n  \"staying\": \"staying\",\n  \"stazionavano\": \"stazion\",\n  \"stazione\": \"stazion\",\n  \"stazioni\": \"stazion\",\n  \"stazza\": \"stazz\",\n  \"ste\": \"ste\",\n  \"steccano\": \"stecc\",\n  \"stecchita\": \"stecc\",\n  \"stecconato\": \"steccon\",\n  \"stefanel\": \"stefanel\",\n  \"stefani\": \"stefan\",\n  \"stefania\": \"stefan\",\n  \"stefano\": \"stef\",\n  \"steiger\": \"steiger\",\n  \"steli\": \"stel\",\n  \"stella\": \"stell\",\n  \"stellate\": \"stell\",\n  \"stelle\": \"stell\",\n  \"stellè\": \"stell\",\n  \"stelo\": \"stel\",\n  \"stelvio\": \"stelv\",\n  \"stende\": \"stend\",\n  \"stendendo\": \"stend\",\n  \"stendendole\": \"stend\",\n  \"stender\": \"stender\",\n  \"stenderà\": \"stend\",\n  \"stendere\": \"stend\",\n  \"stenderne\": \"stend\",\n  \"stendeva\": \"stend\",\n  \"stendevano\": \"stend\",\n  \"stenografico\": \"stenograf\",\n  \"stenta\": \"stent\",\n  \"stentando\": \"stent\",\n  \"stentano\": \"stent\",\n  \"stentatamente\": \"stentat\",\n  \"stentato\": \"stent\",\n  \"stentava\": \"stent\",\n  \"stenti\": \"stent\",\n  \"stento\": \"stent\",\n  \"stentò\": \"stent\",\n  \"stentorea\": \"stentore\",\n  \"stephane\": \"stephan\",\n  \"stephen\": \"stephen\",\n  \"sterchele\": \"sterchel\",\n  \"stereo\": \"stere\",\n  \"sterile\": \"steril\",\n  \"sterilità\": \"steril\",\n  \"sterlina\": \"sterlin\",\n  \"sterline\": \"sterlin\",\n  \"sterminare\": \"stermin\",\n  \"sterminate\": \"stermin\",\n  \"sterminati\": \"stermin\",\n  \"sterminato\": \"stermin\",\n  \"sterminio\": \"stermin\",\n  \"sterpi\": \"sterp\",\n  \"sterrata\": \"sterr\",\n  \"sterza\": \"sterz\",\n  \"stesa\": \"stes\",\n  \"stesavi\": \"stes\",\n  \"stese\": \"stes\",\n  \"stesero\": \"steser\",\n  \"stesi\": \"stes\",\n  \"steso\": \"stes\",\n  \"stessa\": \"stess\",\n  \"stesse\": \"stess\",\n  \"stessero\": \"stesser\",\n  \"stessi\": \"stess\",\n  \"stesso\": \"stess\",\n  \"stesura\": \"stesur\",\n  \"stet\": \"stet\",\n  \"stette\": \"stett\",\n  \"stettero\": \"stetter\",\n  \"steve\": \"stev\",\n  \"steven\": \"steven\",\n  \"stevens\": \"stevens\",\n  \"stia\": \"sti\",\n  \"stìa\": \"stì\",\n  \"stiam\": \"stiam\",\n  \"stiamo\": \"stiam\",\n  \"stian\": \"stian\",\n  \"stiano\": \"sti\",\n  \"stiate\": \"sti\",\n  \"stig\": \"stig\",\n  \"stilare\": \"stil\",\n  \"stilata\": \"stil\",\n  \"stilato\": \"stil\",\n  \"stile\": \"stil\",\n  \"stili\": \"stil\",\n  \"stilisti\": \"stilist\",\n  \"stillate\": \"still\",\n  \"stillati\": \"still\",\n  \"stima\": \"stim\",\n  \"stimano\": \"stim\",\n  \"stimare\": \"stim\",\n  \"stimaron\": \"stimaron\",\n  \"stimasse\": \"stim\",\n  \"stimasser\": \"stimasser\",\n  \"stimato\": \"stim\",\n  \"stimava\": \"stim\",\n  \"stime\": \"stim\",\n  \"stimolare\": \"stimol\",\n  \"stimolato\": \"stimol\",\n  \"stimolava\": \"stimol\",\n  \"stimolavan\": \"stimolavan\",\n  \"stimoli\": \"stimol\",\n  \"stimolo\": \"stimol\",\n  \"stinchi\": \"stinc\",\n  \"stipa\": \"stip\",\n  \"stipato\": \"stip\",\n  \"stipendi\": \"stip\",\n  \"stipendiati\": \"stipend\",\n  \"stipendio\": \"stipend\",\n  \"stipendiò\": \"stipend\",\n  \"stipite\": \"stip\",\n  \"stipulare\": \"stipul\",\n  \"stipulato\": \"stipul\",\n  \"stiramento\": \"stir\",\n  \"stirando\": \"stir\",\n  \"stirato\": \"stir\",\n  \"stiratosi\": \"stirat\",\n  \"stiria\": \"stir\",\n  \"stirò\": \"stir\",\n  \"stirpe\": \"stirp\",\n  \"stirpi\": \"stirp\",\n  \"stivale\": \"stival\",\n  \"stizza\": \"stizz\",\n  \"stizzetta\": \"stizzett\",\n  \"stizzita\": \"stizz\",\n  \"stizziti\": \"stizz\",\n  \"stizzito\": \"stizz\",\n  \"stizzosa\": \"stizzos\",\n  \"stizzosamente\": \"stizzos\",\n  \"sto\": \"sto\",\n  \"stoccaggio\": \"stoccagg\",\n  \"stoccata\": \"stocc\",\n  \"stoccate\": \"stocc\",\n  \"stoccolma\": \"stoccolm\",\n  \"stock\": \"stock\",\n  \"stoltenberg\": \"stoltenberg\",\n  \"stolti\": \"stolt\",\n  \"stomacato\": \"stomac\",\n  \"stomaco\": \"stomac\",\n  \"stomacosi\": \"stomac\",\n  \"stonata\": \"ston\",\n  \"stoppa\": \"stopp\",\n  \"stoppie\": \"stopp\",\n  \"stoppino\": \"stoppin\",\n  \"storace\": \"storac\",\n  \"storcendo\": \"storc\",\n  \"storcendolo\": \"storc\",\n  \"storceva\": \"storc\",\n  \"stordimento\": \"stord\",\n  \"stordito\": \"stord\",\n  \"storia\": \"stor\",\n  \"storica\": \"storic\",\n  \"storicà\": \"storic\",\n  \"storicamente\": \"storic\",\n  \"storice\": \"storic\",\n  \"storiche\": \"storic\",\n  \"storici\": \"storic\",\n  \"storico\": \"storic\",\n  \"storie\": \"stor\",\n  \"storielle\": \"storiell\",\n  \"storiografia\": \"storiograf\",\n  \"stormo\": \"storm\",\n  \"stornar\": \"storn\",\n  \"stornare\": \"storn\",\n  \"stornarlo\": \"storn\",\n  \"storpiato\": \"storp\",\n  \"storse\": \"stors\",\n  \"storta\": \"stort\",\n  \"storte\": \"stort\",\n  \"storto\": \"stort\",\n  \"story\": \"story\",\n  \"stoviglie\": \"stovigl\",\n  \"strabica\": \"strabic\",\n  \"strabismo\": \"strabism\",\n  \"stracariche\": \"stracar\",\n  \"stracca\": \"stracc\",\n  \"stracchi\": \"stracc\",\n  \"stracchino\": \"stracchin\",\n  \"stracci\": \"stracc\",\n  \"straccio\": \"stracc\",\n  \"stracco\": \"stracc\",\n  \"strada\": \"strad\",\n  \"stradale\": \"stradal\",\n  \"stradali\": \"stradal\",\n  \"strade\": \"strad\",\n  \"stradetta\": \"stradett\",\n  \"stradette\": \"stradett\",\n  \"stradicciole\": \"stradicciol\",\n  \"stradone\": \"stradon\",\n  \"straducola\": \"straducol\",\n  \"strage\": \"strag\",\n  \"stragem\": \"stragem\",\n  \"stragrande\": \"stragrand\",\n  \"stralci\": \"stralc\",\n  \"stralciata\": \"stralc\",\n  \"stralcio\": \"stralc\",\n  \"stralunando\": \"stralun\",\n  \"stralunati\": \"stralun\",\n  \"stralunato\": \"stralun\",\n  \"strame\": \"stram\",\n  \"strampa\": \"stramp\",\n  \"strana\": \"stran\",\n  \"stranamente\": \"stran\",\n  \"strane\": \"stran\",\n  \"stranezza\": \"stranezz\",\n  \"strani\": \"stran\",\n  \"straniera\": \"stranier\",\n  \"straniere\": \"stran\",\n  \"stranieri\": \"stranier\",\n  \"straniero\": \"stranier\",\n  \"strano\": \"stran\",\n  \"straordinari\": \"straordinar\",\n  \"straordinaria\": \"straordinar\",\n  \"straordinariamente\": \"straordinar\",\n  \"straordinarie\": \"straordinar\",\n  \"straordinarii\": \"straordinar\",\n  \"straordinario\": \"straordinar\",\n  \"strapazzi\": \"strapazz\",\n  \"strapazzo\": \"strapazz\",\n  \"strapotere\": \"strapot\",\n  \"strappa\": \"strapp\",\n  \"strappar\": \"strapp\",\n  \"strappare\": \"strapp\",\n  \"strappati\": \"strapp\",\n  \"strappato\": \"strapp\",\n  \"strappo\": \"strapp\",\n  \"strapunti\": \"strapunt\",\n  \"strasburgo\": \"strasburg\",\n  \"strascicandolo\": \"strascic\",\n  \"strascicano\": \"strascic\",\n  \"strascicarono\": \"strascic\",\n  \"strascicarsi\": \"strascic\",\n  \"strascicato\": \"strascic\",\n  \"strascicavan\": \"strascicavan\",\n  \"strascicavano\": \"strascic\",\n  \"strascichi\": \"strascic\",\n  \"strascico\": \"strascic\",\n  \"strascina\": \"strascin\",\n  \"strascinarli\": \"strascin\",\n  \"strascinarlo\": \"strascin\",\n  \"strascinata\": \"strascin\",\n  \"strascinati\": \"strascin\",\n  \"strascinato\": \"strascin\",\n  \"strascinavan\": \"strascinavan\",\n  \"strascinavano\": \"strascin\",\n  \"strasecolar\": \"strasecol\",\n  \"strat\": \"strat\",\n  \"strata\": \"strat\",\n  \"stratagemmi\": \"stratagemm\",\n  \"strategia\": \"strateg\",\n  \"strategica\": \"strateg\",\n  \"strategiche\": \"strateg\",\n  \"strategico\": \"strateg\",\n  \"strategie\": \"strateg\",\n  \"strathclyde\": \"strathclyd\",\n  \"stratta\": \"stratt\",\n  \"stratte\": \"stratt\",\n  \"stravagante\": \"stravag\",\n  \"stravaganti\": \"stravag\",\n  \"stravaganze\": \"stravag\",\n  \"stravizi\": \"straviz\",\n  \"straviziare\": \"straviz\",\n  \"stravizio\": \"straviz\",\n  \"stravolgendo\": \"stravolg\",\n  \"stravolgimento\": \"stravolg\",\n  \"stravolta\": \"stravolt\",\n  \"stravolte\": \"stravolt\",\n  \"stravolti\": \"stravolt\",\n  \"stravolto\": \"stravolt\",\n  \"straziano\": \"straz\",\n  \"straziato\": \"straz\",\n  \"strazio\": \"straz\",\n  \"street\": \"street\",\n  \"strega\": \"streg\",\n  \"streghe\": \"streg\",\n  \"stregoneria\": \"stregoner\",\n  \"stregoni\": \"stregon\",\n  \"stremo\": \"strem\",\n  \"strepita\": \"strep\",\n  \"strepitare\": \"strepit\",\n  \"strepitava\": \"strepit\",\n  \"strepito\": \"strep\",\n  \"strepitosa\": \"strepit\",\n  \"strepitose\": \"strepit\",\n  \"strepitoso\": \"strepit\",\n  \"stress\": \"stress\",\n  \"stretcher\": \"stretcher\",\n  \"stretta\": \"strett\",\n  \"strettala\": \"strettal\",\n  \"strettamente\": \"strett\",\n  \"strette\": \"strett\",\n  \"strettezza\": \"strettezz\",\n  \"strettezze\": \"strettezz\",\n  \"stretti\": \"strett\",\n  \"strettissime\": \"strettissim\",\n  \"stretto\": \"strett\",\n  \"strida\": \"strid\",\n  \"stridere\": \"strid\",\n  \"stridesse\": \"stridess\",\n  \"strike\": \"strik\",\n  \"strillano\": \"strill\",\n  \"strillante\": \"strillant\",\n  \"strillanti\": \"strillant\",\n  \"strillar\": \"strill\",\n  \"strillare\": \"strill\",\n  \"strillassero\": \"strill\",\n  \"stringa\": \"string\",\n  \"stringe\": \"string\",\n  \"stringendo\": \"string\",\n  \"stringendolo\": \"string\",\n  \"stringente\": \"stringent\",\n  \"stringer\": \"stringer\",\n  \"stringere\": \"string\",\n  \"stringeva\": \"string\",\n  \"stringevan\": \"stringevan\",\n  \"stringevano\": \"string\",\n  \"stringono\": \"string\",\n  \"strinse\": \"strins\",\n  \"strinsero\": \"strinser\",\n  \"strisce\": \"strisc\",\n  \"striscia\": \"strisc\",\n  \"strisciando\": \"strisc\",\n  \"strisciava\": \"strisc\",\n  \"strisciò\": \"strisc\",\n  \"striscione\": \"striscion\",\n  \"striscioni\": \"striscion\",\n  \"strofinando\": \"strofin\",\n  \"stromento\": \"stroment\",\n  \"stroncare\": \"stronc\",\n  \"stropicciando\": \"stropicc\",\n  \"stropiccìo\": \"stropiccì\",\n  \"stropicciò\": \"stropicc\",\n  \"strordinario\": \"strordinar\",\n  \"strozzata\": \"strozz\",\n  \"struggersi\": \"strugg\",\n  \"struggeva\": \"strugg\",\n  \"struggevano\": \"strugg\",\n  \"struggimento\": \"strugg\",\n  \"struggo\": \"strugg\",\n  \"strumentali\": \"strumental\",\n  \"strumentalizzare\": \"strumentalizz\",\n  \"strumentalizzata\": \"strumentalizz\",\n  \"strumentalizzazione\": \"strumentalizz\",\n  \"strumentalizzazioni\": \"strumentalizz\",\n  \"strumenti\": \"strument\",\n  \"strumento\": \"strument\",\n  \"struttura\": \"struttur\",\n  \"strutturale\": \"struttural\",\n  \"strutturali\": \"struttural\",\n  \"strutturata\": \"struttur\",\n  \"strutture\": \"struttur\",\n  \"stuart\": \"stuart\",\n  \"stuccata\": \"stucc\",\n  \"stucco\": \"stucc\",\n  \"studentessa\": \"studentess\",\n  \"studentesse\": \"studentess\",\n  \"studenti\": \"student\",\n  \"studi\": \"stud\",\n  \"studiando\": \"stud\",\n  \"studiar\": \"stud\",\n  \"studiare\": \"stud\",\n  \"studiata\": \"stud\",\n  \"studiate\": \"stud\",\n  \"studiati\": \"stud\",\n  \"studiato\": \"stud\",\n  \"studiava\": \"stud\",\n  \"studieremo\": \"stud\",\n  \"studierò\": \"stud\",\n  \"studio\": \"stud\",\n  \"studiò\": \"stud\",\n  \"studiosa\": \"studios\",\n  \"studiosi\": \"studios\",\n  \"stufato\": \"stuf\",\n  \"stuolo\": \"stuol\",\n  \"stupefacenti\": \"stupefacent\",\n  \"stupefatta\": \"stupefatt\",\n  \"stupefatto\": \"stupefatt\",\n  \"stupì\": \"stup\",\n  \"stupida\": \"stupid\",\n  \"stupidaggini\": \"stupidaggin\",\n  \"stupidi\": \"stupid\",\n  \"stupido\": \"stupid\",\n  \"stupire\": \"stup\",\n  \"stupito\": \"stup\",\n  \"stupiva\": \"stup\",\n  \"stupore\": \"stupor\",\n  \"stupri\": \"stupr\",\n  \"stupro\": \"stupr\",\n  \"sturges\": \"sturges\",\n  \"sturzo\": \"sturz\",\n  \"stutus\": \"stutus\",\n  \"stuzzica\": \"stuzzic\",\n  \"stuzzicando\": \"stuzzic\",\n  \"stuzzicar\": \"stuzzic\",\n  \"stuzzicarlo\": \"stuzzic\",\n  \"stuzzicata\": \"stuzzic\",\n  \"stuzzicava\": \"stuzzic\",\n  \"su\": \"su\",\n  \"sua\": \"sua\",\n  \"suard\": \"suard\",\n  \"suarez\": \"suarez\",\n  \"subacquea\": \"subacque\",\n  \"subacquei\": \"subacque\",\n  \"subacqueo\": \"subacque\",\n  \"subalpina\": \"subalpin\",\n  \"subalterni\": \"subaltern\",\n  \"subaru\": \"subaru\",\n  \"subcomandante\": \"subcomand\",\n  \"subentrato\": \"subentr\",\n  \"subentri\": \"subentr\",\n  \"subì\": \"sub\",\n  \"subire\": \"sub\",\n  \"subiremo\": \"sub\",\n  \"subisce\": \"sub\",\n  \"subita\": \"sub\",\n  \"subitamente\": \"subit\",\n  \"subitanea\": \"subitane\",\n  \"subitanei\": \"subitane\",\n  \"subitaneo\": \"subitane\",\n  \"subite\": \"sub\",\n  \"subiti\": \"sub\",\n  \"subito\": \"sub\",\n  \"subjectis\": \"subjectis\",\n  \"sublimata\": \"sublim\",\n  \"sublimazione\": \"sublim\",\n  \"sublimità\": \"sublim\",\n  \"subnormali\": \"subnormal\",\n  \"subordinar\": \"subordin\",\n  \"subordinati\": \"subordin\",\n  \"subordinazione\": \"subordin\",\n  \"subordine\": \"subordin\",\n  \"subtilitate\": \"subtilit\",\n  \"succede\": \"succed\",\n  \"succedendo\": \"succed\",\n  \"succederà\": \"succed\",\n  \"succedere\": \"succed\",\n  \"succedeva\": \"succed\",\n  \"succedevano\": \"succed\",\n  \"succedono\": \"succed\",\n  \"succeduto\": \"succed\",\n  \"succesivamente\": \"succes\",\n  \"successa\": \"success\",\n  \"successe\": \"success\",\n  \"successi\": \"success\",\n  \"successione\": \"succession\",\n  \"successiva\": \"success\",\n  \"successivamente\": \"success\",\n  \"successive\": \"success\",\n  \"successivi\": \"success\",\n  \"successivo\": \"success\",\n  \"successo\": \"success\",\n  \"succhiargli\": \"succ\",\n  \"succhiata\": \"succ\",\n  \"succhiato\": \"succ\",\n  \"succiano\": \"succ\",\n  \"succiarsi\": \"succ\",\n  \"succiarti\": \"succ\",\n  \"succinta\": \"succint\",\n  \"succinti\": \"succint\",\n  \"succinto\": \"succint\",\n  \"sucessi\": \"sucess\",\n  \"sud\": \"sud\",\n  \"suda\": \"sud\",\n  \"sudafrica\": \"sudafr\",\n  \"sudafricano\": \"sudafric\",\n  \"sudamericano\": \"sudameric\",\n  \"sudario\": \"sudar\",\n  \"sudate\": \"sud\",\n  \"suddetta\": \"suddett\",\n  \"suddette\": \"suddett\",\n  \"suddetti\": \"suddett\",\n  \"suddetto\": \"suddett\",\n  \"sudditanza\": \"suddit\",\n  \"sudditi\": \"sudd\",\n  \"suddivisa\": \"suddivis\",\n  \"suddivisione\": \"suddivision\",\n  \"suddiviso\": \"suddivis\",\n  \"sudest\": \"sudest\",\n  \"sudice\": \"sudic\",\n  \"sudiceria\": \"sudicer\",\n  \"sudici\": \"sudic\",\n  \"sudicia\": \"sudic\",\n  \"sudiciume\": \"sudicium\",\n  \"sudor\": \"sudor\",\n  \"sue\": \"sue\",\n  \"sueddeutsche\": \"sueddeutsc\",\n  \"sufficiente\": \"sufficient\",\n  \"sufficienti\": \"sufficient\",\n  \"sufficientmeente\": \"sufficientmeent\",\n  \"sufficienza\": \"sufficient\",\n  \"suggella\": \"suggell\",\n  \"suggerendogliela\": \"sugger\",\n  \"suggerì\": \"sugger\",\n  \"suggerimenti\": \"sugger\",\n  \"suggerimento\": \"sugger\",\n  \"suggerir\": \"sugger\",\n  \"suggerire\": \"sugger\",\n  \"suggerirle\": \"sugger\",\n  \"suggerirlo\": \"sugger\",\n  \"suggerisce\": \"sugger\",\n  \"suggeriscono\": \"sugger\",\n  \"suggerita\": \"sugger\",\n  \"suggerite\": \"sugger\",\n  \"suggerito\": \"sugger\",\n  \"suggeriva\": \"sugger\",\n  \"suggerivano\": \"sugger\",\n  \"suggestiva\": \"suggest\",\n  \"suggezione\": \"suggezion\",\n  \"sugli\": \"sugl\",\n  \"sugo\": \"sug\",\n  \"sui\": \"sui\",\n  \"suicida\": \"suicid\",\n  \"suicidare\": \"suicid\",\n  \"suicidi\": \"suicid\",\n  \"suicidio\": \"suicid\",\n  \"suisse\": \"suiss\",\n  \"sukhoi\": \"sukho\",\n  \"sul\": \"sul\",\n  \"sula\": \"sul\",\n  \"sulcis\": \"sulcis\",\n  \"sull\": \"sull\",\n  \"sulla\": \"sull\",\n  \"sulle\": \"sull\",\n  \"sullo\": \"sull\",\n  \"sullodato\": \"sullod\",\n  \"sulman\": \"sulman\",\n  \"sulta\": \"sult\",\n  \"suma\": \"sum\",\n  \"sumatis\": \"sumatis\",\n  \"summentovate\": \"summentov\",\n  \"summentovato\": \"summentov\",\n  \"sun\": \"sun\",\n  \"sunday\": \"sunday\",\n  \"sunny\": \"sunny\",\n  \"sunti\": \"sunt\",\n  \"sunto\": \"sunt\",\n  \"suo\": \"suo\",\n  \"suocera\": \"suocer\",\n  \"suoi\": \"suo\",\n  \"suol\": \"suol\",\n  \"suolavecchia\": \"suolavecc\",\n  \"suole\": \"suol\",\n  \"suolo\": \"suol\",\n  \"suon\": \"suon\",\n  \"suona\": \"suon\",\n  \"suonando\": \"suon\",\n  \"suonare\": \"suon\",\n  \"suonato\": \"suon\",\n  \"suoneranno\": \"suon\",\n  \"suoni\": \"suon\",\n  \"suono\": \"suon\",\n  \"suora\": \"suor\",\n  \"suore\": \"suor\",\n  \"super\": \"super\",\n  \"supera\": \"super\",\n  \"superagip\": \"superagip\",\n  \"superando\": \"super\",\n  \"superano\": \"super\",\n  \"superar\": \"super\",\n  \"superare\": \"super\",\n  \"superata\": \"super\",\n  \"superate\": \"super\",\n  \"superati\": \"super\",\n  \"superato\": \"super\",\n  \"superatò\": \"superat\",\n  \"superavo\": \"super\",\n  \"superba\": \"superb\",\n  \"superbi\": \"superb\",\n  \"superbia\": \"superb\",\n  \"superbioso\": \"superb\",\n  \"superbo\": \"superb\",\n  \"superbollo\": \"superboll\",\n  \"superboy\": \"superboy\",\n  \"superclassifica\": \"superclassif\",\n  \"superfavorito\": \"superfavor\",\n  \"superficiale\": \"superficial\",\n  \"superficie\": \"superfic\",\n  \"superflui\": \"superflu\",\n  \"superfluità\": \"superflu\",\n  \"superfluo\": \"superflu\",\n  \"superhuman\": \"superhuman\",\n  \"superi\": \"super\",\n  \"superiora\": \"superior\",\n  \"superiore\": \"superior\",\n  \"superiori\": \"superior\",\n  \"superiorità\": \"superior\",\n  \"supermercato\": \"supermerc\",\n  \"superpetroliere\": \"superpetrol\",\n  \"superstite\": \"superst\",\n  \"supervisione\": \"supervision\",\n  \"suppellettile\": \"suppellettil\",\n  \"suppellettili\": \"suppellettil\",\n  \"supplementare\": \"supplement\",\n  \"supplementari\": \"supplementar\",\n  \"supplica\": \"supplic\",\n  \"supplicando\": \"supplic\",\n  \"supplicare\": \"supplic\",\n  \"supplicarono\": \"supplic\",\n  \"supplicazione\": \"supplic\",\n  \"suppliche\": \"supplic\",\n  \"supplichevole\": \"supplichevol\",\n  \"supplichevoli\": \"supplichevol\",\n  \"supplico\": \"supplic\",\n  \"supplimento\": \"suppl\",\n  \"supplire\": \"suppl\",\n  \"supplirlo\": \"suppl\",\n  \"supplisca\": \"suppl\",\n  \"supplisce\": \"suppl\",\n  \"supplito\": \"suppl\",\n  \"supplivano\": \"suppl\",\n  \"supplizi\": \"suppliz\",\n  \"supplizio\": \"suppliz\",\n  \"supply\": \"supply\",\n  \"suppone\": \"suppon\",\n  \"supponendo\": \"suppon\",\n  \"supponendolo\": \"suppon\",\n  \"supponesse\": \"supponess\",\n  \"supponete\": \"suppon\",\n  \"supponeva\": \"suppon\",\n  \"supponiamo\": \"suppon\",\n  \"supporre\": \"supporr\",\n  \"supportati\": \"support\",\n  \"supporti\": \"support\",\n  \"supporto\": \"support\",\n  \"suppose\": \"suppos\",\n  \"supposizione\": \"supposizion\",\n  \"supposizioni\": \"supposizion\",\n  \"supposte\": \"suppost\",\n  \"supposti\": \"suppost\",\n  \"supposto\": \"suppost\",\n  \"suprema\": \"suprem\",\n  \"supremazia\": \"supremaz\",\n  \"supremo\": \"suprem\",\n  \"sur\": \"sur\",\n  \"surplus\": \"surplus\",\n  \"surreale\": \"surreal\",\n  \"surrenti\": \"surrent\",\n  \"surriscaldamento\": \"surriscald\",\n  \"surriscaldata\": \"surriscald\",\n  \"survey\": \"survey\",\n  \"susa\": \"sus\",\n  \"susan\": \"susan\",\n  \"susanna\": \"susann\",\n  \"suscita\": \"susc\",\n  \"suscitando\": \"suscit\",\n  \"suscitar\": \"suscit\",\n  \"suscitare\": \"suscit\",\n  \"suscitarsi\": \"suscit\",\n  \"suscitasse\": \"suscit\",\n  \"suscitate\": \"suscit\",\n  \"suscitati\": \"suscit\",\n  \"suscitato\": \"suscit\",\n  \"suscitò\": \"suscit\",\n  \"susine\": \"susin\",\n  \"susini\": \"susin\",\n  \"susseguendo\": \"sussegu\",\n  \"susseguente\": \"susseguent\",\n  \"susseguiti\": \"sussegu\",\n  \"susseguono\": \"sussegu\",\n  \"sussidi\": \"sussid\",\n  \"sussidiaria\": \"sussidiar\",\n  \"sussidio\": \"sussid\",\n  \"sussiste\": \"sussist\",\n  \"sussistere\": \"sussist\",\n  \"susurrando\": \"susurr\",\n  \"susurrandosi\": \"susurr\",\n  \"susurrare\": \"susurr\",\n  \"susurrava\": \"susurr\",\n  \"susurrìo\": \"susurrì\",\n  \"susurro\": \"susurr\",\n  \"susurrò\": \"susurr\",\n  \"sutar\": \"sut\",\n  \"sutura\": \"sutur\",\n  \"suzhou\": \"suzhou\",\n  \"svagamenti\": \"svag\",\n  \"svagatezza\": \"svagatezz\",\n  \"svago\": \"svag\",\n  \"svaligiate\": \"svalig\",\n  \"svalutato\": \"svalut\",\n  \"svanì\": \"svan\",\n  \"svanire\": \"svan\",\n  \"svanirebbe\": \"svan\",\n  \"svanita\": \"svan\",\n  \"svanito\": \"svan\",\n  \"svaniva\": \"svan\",\n  \"svantaggiati\": \"svantagg\",\n  \"svantaggio\": \"svantagg\",\n  \"svaporare\": \"svapor\",\n  \"svataggiate\": \"svatagg\",\n  \"sve\": \"sve\",\n  \"svedese\": \"svedes\",\n  \"sveglia\": \"svegl\",\n  \"svegliarla\": \"svegl\",\n  \"svegliarsi\": \"svegl\",\n  \"svegliasse\": \"svegl\",\n  \"svegliata\": \"svegl\",\n  \"svegliato\": \"svegl\",\n  \"svegliava\": \"svegl\",\n  \"sveglierà\": \"svegl\",\n  \"sveglio\": \"svegl\",\n  \"svegliò\": \"svegl\",\n  \"svelano\": \"svel\",\n  \"svelare\": \"svel\",\n  \"svelato\": \"svel\",\n  \"svellere\": \"svell\",\n  \"svelte\": \"svelt\",\n  \"sveltire\": \"svelt\",\n  \"sven\": \"sven\",\n  \"svenevole\": \"svenevol\",\n  \"sveng\": \"sveng\",\n  \"svenimenti\": \"sven\",\n  \"svenne\": \"svenn\",\n  \"svenska\": \"svensk\",\n  \"sventa\": \"svent\",\n  \"sventolare\": \"sventol\",\n  \"sventolata\": \"sventol\",\n  \"sventolate\": \"sventol\",\n  \"sventolio\": \"sventol\",\n  \"sventura\": \"sventur\",\n  \"sventurata\": \"sventur\",\n  \"sventurato\": \"sventur\",\n  \"sventure\": \"sventur\",\n  \"svergognandola\": \"svergogn\",\n  \"svergognasse\": \"svergogn\",\n  \"svergognato\": \"svergogn\",\n  \"sversamenti\": \"svers\",\n  \"sversamento\": \"svers\",\n  \"svetlana\": \"svetlan\",\n  \"svezia\": \"svez\",\n  \"svi\": \"svi\",\n  \"sviamento\": \"svi\",\n  \"sviare\": \"svi\",\n  \"sviene\": \"svien\",\n  \"svignò\": \"svign\",\n  \"sviluppa\": \"svilupp\",\n  \"sviluppando\": \"svilupp\",\n  \"sviluppare\": \"svilupp\",\n  \"sviluppata\": \"svilupp\",\n  \"sviluppate\": \"svilupp\",\n  \"sviluppati\": \"svilupp\",\n  \"sviluppato\": \"svilupp\",\n  \"svilupperà\": \"svilupp\",\n  \"sviluppi\": \"svilupp\",\n  \"sviluppo\": \"svilupp\",\n  \"sviluppò\": \"svilupp\",\n  \"svincolandosi\": \"svincol\",\n  \"svincolarsi\": \"svincol\",\n  \"svincolo\": \"svincol\",\n  \"svisceratezza\": \"svisceratezz\",\n  \"sviscerati\": \"sviscer\",\n  \"sviscerato\": \"sviscer\",\n  \"svizzera\": \"svizzer\",\n  \"svizzere\": \"svizz\",\n  \"svizzeri\": \"svizzer\",\n  \"svizzero\": \"svizzer\",\n  \"svk\": \"svk\",\n  \"svogliatamente\": \"svogliat\",\n  \"svogliate\": \"svogl\",\n  \"svogliatezza\": \"svogliatezz\",\n  \"svogliato\": \"svogl\",\n  \"svolazzano\": \"svolazz\",\n  \"svolazzi\": \"svolazz\",\n  \"svolgano\": \"svolg\",\n  \"svolge\": \"svolg\",\n  \"svolgendo\": \"svolg\",\n  \"svolgendosi\": \"svolg\",\n  \"svolgerà\": \"svolg\",\n  \"svolgeranno\": \"svolg\",\n  \"svolgere\": \"svolg\",\n  \"svolgerlo\": \"svolg\",\n  \"svolgersi\": \"svolg\",\n  \"svolgessero\": \"svolg\",\n  \"svolgevano\": \"svolg\",\n  \"svolgimento\": \"svolg\",\n  \"svolgono\": \"svolg\",\n  \"svolse\": \"svols\",\n  \"svolta\": \"svolt\",\n  \"svoltasi\": \"svoltas\",\n  \"svolte\": \"svolt\",\n  \"svoltesi\": \"svoltes\",\n  \"svolti\": \"svolt\",\n  \"svoltisi\": \"svoltis\",\n  \"svolto\": \"svolt\",\n  \"svoltò\": \"svolt\",\n  \"svoltosi\": \"svoltos\",\n  \"swatch\": \"swatc\",\n  \"swcrive\": \"swcriv\",\n  \"sydkraft\": \"sydkraft\",\n  \"sydney\": \"sydney\",\n  \"sylvester\": \"sylvester\",\n  \"symbols\": \"symbols\",\n  \"systems\": \"systems\",\n  \"szabo\": \"szab\",\n  \"szalasi\": \"szalas\",\n  \"t\": \"t\",\n  \"ta\": \"ta\",\n  \"tabacchi\": \"tabacc\",\n  \"tabacco\": \"tabacc\",\n  \"tabarez\": \"tabarez\",\n  \"tabasco\": \"tabasc\",\n  \"tabella\": \"tabell\",\n  \"tabelle\": \"tabell\",\n  \"tabellone\": \"tabellon\",\n  \"tabernacolo\": \"tabernacol\",\n  \"tabladini\": \"tabladin\",\n  \"tabloid\": \"tabloid\",\n  \"tabù\": \"tabù\",\n  \"tacce\": \"tacc\",\n  \"tacchi\": \"tacc\",\n  \"tacchinardi\": \"tacchinard\",\n  \"tacchini\": \"tacchin\",\n  \"tacciato\": \"tacc\",\n  \"tacciavano\": \"tacc\",\n  \"taccio\": \"tacc\",\n  \"tacciono\": \"tacc\",\n  \"taccuino\": \"taccuin\",\n  \"tace\": \"tac\",\n  \"tacendo\": \"tac\",\n  \"tacer\": \"tacer\",\n  \"tacerà\": \"tac\",\n  \"tacere\": \"tac\",\n  \"tacersi\": \"tac\",\n  \"tacessimo\": \"tacessim\",\n  \"tacete\": \"tac\",\n  \"taceva\": \"tac\",\n  \"tacevano\": \"tac\",\n  \"tacitamente\": \"tacit\",\n  \"taciti\": \"tac\",\n  \"tacito\": \"tac\",\n  \"taciuto\": \"tac\",\n  \"tacque\": \"tacqu\",\n  \"taddeo\": \"tadde\",\n  \"tadino\": \"tadin\",\n  \"tafferìa\": \"tafferì\",\n  \"tafferugli\": \"tafferugl\",\n  \"tafferuglio\": \"tafferugl\",\n  \"taffete\": \"taff\",\n  \"tagespiegel\": \"tagespiegel\",\n  \"tagli\": \"tagl\",\n  \"taglia\": \"tagl\",\n  \"tagliando\": \"tagl\",\n  \"tagliare\": \"tagl\",\n  \"tagliarla\": \"tagl\",\n  \"tagliarmi\": \"tagl\",\n  \"tagliata\": \"tagl\",\n  \"tagliati\": \"tagl\",\n  \"tagliato\": \"tagl\",\n  \"tagliavano\": \"tagl\",\n  \"taglie\": \"tagl\",\n  \"tagliente\": \"taglient\",\n  \"taglio\": \"tagl\",\n  \"taglire\": \"tagl\",\n  \"taibi\": \"taib\",\n  \"tailandia\": \"tailand\",\n  \"taipei\": \"taipe\",\n  \"taj\": \"taj\",\n  \"tajani\": \"tajan\",\n  \"takeover\": \"takeover\",\n  \"tal\": \"tal\",\n  \"talamona\": \"talamon\",\n  \"talché\": \"talc\",\n  \"tale\": \"tal\",\n  \"taleban\": \"taleban\",\n  \"talento\": \"talent\",\n  \"tali\": \"tal\",\n  \"talk\": \"talk\",\n  \"tallero\": \"taller\",\n  \"talleur\": \"talleur\",\n  \"talmente\": \"talment\",\n  \"talmenteché\": \"talmentec\",\n  \"talora\": \"talor\",\n  \"talune\": \"talun\",\n  \"taluni\": \"talun\",\n  \"taluno\": \"talun\",\n  \"talvolta\": \"talvolt\",\n  \"tamburella\": \"tamburell\",\n  \"tamburi\": \"tambur\",\n  \"tamburro\": \"tamburr\",\n  \"tamino\": \"tamin\",\n  \"tampa\": \"tamp\",\n  \"tampone\": \"tampon\",\n  \"tana\": \"tan\",\n  \"tanabuso\": \"tanabus\",\n  \"tanagliare\": \"tanagl\",\n  \"tanaglie\": \"tanagl\",\n  \"tane\": \"tan\",\n  \"tanfi\": \"tanf\",\n  \"tanfo\": \"tanf\",\n  \"tangente\": \"tangent\",\n  \"tangenti\": \"tangent\",\n  \"tangentistì\": \"tangent\",\n  \"tangentopoli\": \"tangentopol\",\n  \"tangeri\": \"tanger\",\n  \"tangheri\": \"tangher\",\n  \"tanghero\": \"tangher\",\n  \"tani\": \"tan\",\n  \"tant\": \"tant\",\n  \"tanta\": \"tant\",\n  \"tante\": \"tant\",\n  \"tanti\": \"tant\",\n  \"tantino\": \"tantin\",\n  \"tantissimi\": \"tantissim\",\n  \"tanto\": \"tant\",\n  \"tantomeno\": \"tantomen\",\n  \"tantopiù\": \"tantopiù\",\n  \"tantum\": \"tantum\",\n  \"tanzania\": \"tanzan\",\n  \"taormina\": \"taormin\",\n  \"tappa\": \"tapp\",\n  \"tappare\": \"tapp\",\n  \"tappe\": \"tapp\",\n  \"tappeti\": \"tappet\",\n  \"tappeto\": \"tappet\",\n  \"tappezzate\": \"tappezz\",\n  \"tappezzerie\": \"tappezzer\",\n  \"tappo\": \"tapp\",\n  \"tar\": \"tar\",\n  \"tara\": \"tar\",\n  \"tarantino\": \"tarantin\",\n  \"tarapur\": \"tarapur\",\n  \"tarcagnota\": \"tarcagnot\",\n  \"tarchiati\": \"tarc\",\n  \"tarda\": \"tard\",\n  \"tardare\": \"tard\",\n  \"tardato\": \"tard\",\n  \"tarde\": \"tard\",\n  \"tardelli\": \"tardell\",\n  \"tardi\": \"tard\",\n  \"tardini\": \"tardin\",\n  \"tarditi\": \"tard\",\n  \"tardivamente\": \"tardiv\",\n  \"tardo\": \"tard\",\n  \"tardò\": \"tard\",\n  \"tardocomunista\": \"tardocomun\",\n  \"targa\": \"targ\",\n  \"targata\": \"targ\",\n  \"target\": \"target\",\n  \"tariffa\": \"tariff\",\n  \"tariffaria\": \"tariffar\",\n  \"tariffe\": \"tariff\",\n  \"tarnoff\": \"tarnoff\",\n  \"taro\": \"tar\",\n  \"tartaglia\": \"tartagl\",\n  \"tartassati\": \"tartass\",\n  \"tarvisium\": \"tarvisium\",\n  \"tasca\": \"tasc\",\n  \"tasche\": \"tasc\",\n  \"taschino\": \"taschin\",\n  \"task\": \"task\",\n  \"taslima\": \"taslim\",\n  \"tass\": \"tass\",\n  \"tassa\": \"tass\",\n  \"tassato\": \"tass\",\n  \"tassazione\": \"tassazion\",\n  \"tasse\": \"tass\",\n  \"tassi\": \"tass\",\n  \"tasso\": \"tass\",\n  \"tassone\": \"tasson\",\n  \"tastare\": \"tast\",\n  \"tastarlo\": \"tast\",\n  \"tasto\": \"tast\",\n  \"tastone\": \"taston\",\n  \"tastoni\": \"taston\",\n  \"tata\": \"tat\",\n  \"tatarella\": \"tatarell\",\n  \"tattica\": \"tattic\",\n  \"tattiche\": \"tattic\",\n  \"tatto\": \"tatt\",\n  \"tatuaggi\": \"tatuagg\",\n  \"tatyana\": \"tatyan\",\n  \"tauber\": \"tauber\",\n  \"tauro\": \"taur\",\n  \"tav\": \"tav\",\n  \"tavawal\": \"tavawal\",\n  \"taverna\": \"tavern\",\n  \"tavernai\": \"taverna\",\n  \"taverne\": \"tav\",\n  \"tavola\": \"tavol\",\n  \"tavole\": \"tavol\",\n  \"tavoli\": \"tavol\",\n  \"tavoliere\": \"tavol\",\n  \"tavolino\": \"tavolin\",\n  \"tavolo\": \"tavol\",\n  \"tax\": \"tax\",\n  \"tay\": \"tay\",\n  \"taylor\": \"taylor\",\n  \"tb\": \"tb\",\n  \"tbc\": \"tbc\",\n  \"tc\": \"tc\",\n  \"te\": \"te\",\n  \"tè\": \"tè\",\n  \"teague\": \"teagu\",\n  \"teatro\": \"teatr\",\n  \"tebaide\": \"tebaid\",\n  \"technology\": \"technology\",\n  \"tecla\": \"tecl\",\n  \"tecnica\": \"tecnic\",\n  \"tecnicà\": \"tecnic\",\n  \"tecnicamente\": \"tecnic\",\n  \"tecniche\": \"tecnic\",\n  \"tecnichè\": \"tecnic\",\n  \"tecnici\": \"tecnic\",\n  \"tecnico\": \"tecnic\",\n  \"tecnologia\": \"tecnolog\",\n  \"tecnologica\": \"tecnolog\",\n  \"tecnologico\": \"tecnolog\",\n  \"tecnologie\": \"tecnolog\",\n  \"tecnost\": \"tecnost\",\n  \"tedesca\": \"tedesc\",\n  \"tedesche\": \"tedesc\",\n  \"tedeschi\": \"tedesc\",\n  \"tedesco\": \"tedesc\",\n  \"tediarla\": \"ted\",\n  \"tedio\": \"ted\",\n  \"tegame\": \"tegam\",\n  \"tegolaia\": \"tegolai\",\n  \"tegoli\": \"tegol\",\n  \"teheran\": \"teheran\",\n  \"teknecomp\": \"teknecomp\",\n  \"tel\": \"tel\",\n  \"tela\": \"tel\",\n  \"telam\": \"telam\",\n  \"tele\": \"tel\",\n  \"telecamere\": \"telecam\",\n  \"teleco\": \"telec\",\n  \"telecom\": \"telecom\",\n  \"telecomandata\": \"telecomand\",\n  \"telecomunicazioni\": \"telecomun\",\n  \"telefilm\": \"telefilm\",\n  \"telefona\": \"telefon\",\n  \"telefonare\": \"telefon\",\n  \"telefonata\": \"telefon\",\n  \"telefonate\": \"telefon\",\n  \"telefonato\": \"telefon\",\n  \"telefoni\": \"telefon\",\n  \"telefonica\": \"telefon\",\n  \"telefonicamente\": \"telefon\",\n  \"telefoniche\": \"telefon\",\n  \"telefonici\": \"telefon\",\n  \"telefonico\": \"telefon\",\n  \"telefonini\": \"telefonin\",\n  \"telefonino\": \"telefonin\",\n  \"telefono\": \"telef\",\n  \"telefoto\": \"telefot\",\n  \"telegiornale\": \"telegiornal\",\n  \"telegiornali\": \"telegiornal\",\n  \"telegrafico\": \"telegraf\",\n  \"telegramma\": \"telegramm\",\n  \"telegrammi\": \"telegramm\",\n  \"telegraph\": \"telegraph\",\n  \"telematica\": \"telemat\",\n  \"telematiche\": \"telemat\",\n  \"telematici\": \"telemat\",\n  \"telematico\": \"telemat\",\n  \"telemontecarlo\": \"telemontec\",\n  \"telenovela\": \"telenovel\",\n  \"teleoperatori\": \"teleoper\",\n  \"teleromanzo\": \"teleromanz\",\n  \"teleschermo\": \"telescherm\",\n  \"telescrivente\": \"telescrivent\",\n  \"telesis\": \"telesis\",\n  \"telespettatori\": \"telespett\",\n  \"telethon\": \"telethon\",\n  \"televendite\": \"televend\",\n  \"television\": \"television\",\n  \"televisione\": \"television\",\n  \"televisioni\": \"television\",\n  \"televisiva\": \"televis\",\n  \"televisive\": \"televis\",\n  \"televisivi\": \"televis\",\n  \"televisivo\": \"televis\",\n  \"tellurico\": \"tellur\",\n  \"telo\": \"tel\",\n  \"telone\": \"telon\",\n  \"teloni\": \"telon\",\n  \"telsystem\": \"telsystem\",\n  \"tema\": \"tem\",\n  \"tematiche\": \"temat\",\n  \"tembile\": \"tembil\",\n  \"teme\": \"tem\",\n  \"temendo\": \"tem\",\n  \"temer\": \"temer\",\n  \"temeraria\": \"temerar\",\n  \"temerarie\": \"temerar\",\n  \"temerarij\": \"temerarij\",\n  \"temerario\": \"temerar\",\n  \"temere\": \"tem\",\n  \"temerità\": \"temer\",\n  \"temerlo\": \"tem\",\n  \"temesse\": \"temess\",\n  \"temessero\": \"tem\",\n  \"temeva\": \"tem\",\n  \"temevano\": \"tem\",\n  \"temi\": \"tem\",\n  \"temibile\": \"temibil\",\n  \"temo\": \"tem\",\n  \"temono\": \"tem\",\n  \"tempera\": \"temper\",\n  \"temperamenti\": \"temper\",\n  \"temperamento\": \"temper\",\n  \"temperar\": \"temper\",\n  \"temperare\": \"temper\",\n  \"temperata\": \"temper\",\n  \"temperate\": \"temper\",\n  \"temperato\": \"temper\",\n  \"temperatura\": \"temperatur\",\n  \"temperature\": \"temperatur\",\n  \"temperò\": \"temp\",\n  \"tempesta\": \"tempest\",\n  \"tempestare\": \"tempest\",\n  \"tempestarlo\": \"tempest\",\n  \"tempestata\": \"tempest\",\n  \"tempestate\": \"tempest\",\n  \"tempestati\": \"tempest\",\n  \"tempestava\": \"tempest\",\n  \"tempeste\": \"tempest\",\n  \"tempestiva\": \"tempest\",\n  \"tempestività\": \"tempest\",\n  \"tempestivo\": \"tempest\",\n  \"tempestoso\": \"tempest\",\n  \"tempi\": \"temp\",\n  \"tempia\": \"temp\",\n  \"tempie\": \"temp\",\n  \"tempio\": \"temp\",\n  \"tempo\": \"temp\",\n  \"temporale\": \"temporal\",\n  \"temporali\": \"temporal\",\n  \"temporanea\": \"temporane\",\n  \"temporaneamente\": \"temporan\",\n  \"temporanei\": \"temporane\",\n  \"temporariamente\": \"temporar\",\n  \"tempore\": \"tempor\",\n  \"temporum\": \"temporum\",\n  \"tempra\": \"tempr\",\n  \"temuta\": \"tem\",\n  \"temuto\": \"tem\",\n  \"tenace\": \"tenac\",\n  \"tenacia\": \"tenac\",\n  \"tenaglia\": \"tenagl\",\n  \"tendaggi\": \"tendagg\",\n  \"tende\": \"tend\",\n  \"tendendo\": \"tend\",\n  \"tendenti\": \"tendent\",\n  \"tendenza\": \"tendenz\",\n  \"tendenze\": \"tendenz\",\n  \"tendenzialmente\": \"tendenzial\",\n  \"tender\": \"tender\",\n  \"tenderà\": \"tend\",\n  \"tendere\": \"tend\",\n  \"tendesse\": \"tendess\",\n  \"tendeva\": \"tend\",\n  \"tendevan\": \"tendevan\",\n  \"tendevano\": \"tend\",\n  \"tendina\": \"tendin\",\n  \"tendine\": \"tendin\",\n  \"tendon\": \"tendon\",\n  \"tendone\": \"tendon\",\n  \"tendono\": \"tend\",\n  \"tenebre\": \"tenebr\",\n  \"tenebrosi\": \"tenebr\",\n  \"tenebroso\": \"tenebr\",\n  \"tenendo\": \"ten\",\n  \"tenendola\": \"ten\",\n  \"tenendolo\": \"ten\",\n  \"tenendone\": \"ten\",\n  \"tenendosi\": \"ten\",\n  \"tenendovi\": \"ten\",\n  \"tenente\": \"tenent\",\n  \"tener\": \"tener\",\n  \"tenera\": \"tener\",\n  \"tenere\": \"ten\",\n  \"tenerezza\": \"tenerezz\",\n  \"tenerezze\": \"tenerezz\",\n  \"tenergli\": \"ten\",\n  \"teneri\": \"tener\",\n  \"tenerla\": \"ten\",\n  \"tenerli\": \"ten\",\n  \"tenerlo\": \"ten\",\n  \"tenerne\": \"ten\",\n  \"tenero\": \"tener\",\n  \"tenersi\": \"ten\",\n  \"tenervi\": \"ten\",\n  \"tenesse\": \"teness\",\n  \"tenessero\": \"ten\",\n  \"tenete\": \"ten\",\n  \"teneteli\": \"tenetel\",\n  \"teneva\": \"ten\",\n  \"tenevan\": \"tenevan\",\n  \"tenevano\": \"ten\",\n  \"tenevo\": \"ten\",\n  \"tenga\": \"teng\",\n  \"tengo\": \"teng\",\n  \"tengon\": \"tengon\",\n  \"tengono\": \"teng\",\n  \"teniamo\": \"ten\",\n  \"tenne\": \"tenn\",\n  \"tennero\": \"tenner\",\n  \"tennis\": \"tennis\",\n  \"tennista\": \"tennist\",\n  \"tenor\": \"tenor\",\n  \"tenore\": \"tenor\",\n  \"tensione\": \"tension\",\n  \"tensioni\": \"tension\",\n  \"tensostruttura\": \"tensostruttur\",\n  \"tenta\": \"tent\",\n  \"tentacoli\": \"tentacol\",\n  \"tentando\": \"tent\",\n  \"tentano\": \"tent\",\n  \"tentar\": \"tent\",\n  \"tentare\": \"tent\",\n  \"tentarmi\": \"tent\",\n  \"tentarne\": \"tent\",\n  \"tentata\": \"tent\",\n  \"tentativi\": \"tentat\",\n  \"tentativo\": \"tentat\",\n  \"tentato\": \"tent\",\n  \"tentava\": \"tent\",\n  \"tentavano\": \"tent\",\n  \"tentazion\": \"tentazion\",\n  \"tentazione\": \"tentazion\",\n  \"tentazioni\": \"tentazion\",\n  \"tentennando\": \"tentenn\",\n  \"tentennare\": \"tentenn\",\n  \"tentennata\": \"tentenn\",\n  \"tentennatina\": \"tentennatin\",\n  \"tentennava\": \"tentenn\",\n  \"tentennò\": \"tentenn\",\n  \"tenterà\": \"tent\",\n  \"tenterò\": \"tent\",\n  \"tentò\": \"tent\",\n  \"tentoni\": \"tenton\",\n  \"tenuta\": \"ten\",\n  \"tenute\": \"ten\",\n  \"tenuti\": \"ten\",\n  \"tenuto\": \"ten\",\n  \"teologia\": \"teolog\",\n  \"teologià\": \"teolog\",\n  \"teologici\": \"teolog\",\n  \"teoria\": \"teor\",\n  \"teorico\": \"teoric\",\n  \"teorie\": \"teor\",\n  \"tepeyac\": \"tepeyac\",\n  \"tepeyec\": \"tepeyec\",\n  \"tepida\": \"tepid\",\n  \"tepido\": \"tepid\",\n  \"tepore\": \"tepor\",\n  \"teppismo\": \"teppism\",\n  \"teppista\": \"teppist\",\n  \"teppisti\": \"teppist\",\n  \"teppistici\": \"teppist\",\n  \"teramo\": \"teram\",\n  \"terapeutico\": \"terapeut\",\n  \"terapia\": \"terap\",\n  \"teresa\": \"teres\",\n  \"teresio\": \"teres\",\n  \"tergiversazioni\": \"tergivers\",\n  \"teri\": \"ter\",\n  \"termas\": \"termas\",\n  \"terme\": \"term\",\n  \"termica\": \"termic\",\n  \"termici\": \"termic\",\n  \"termina\": \"termin\",\n  \"terminal\": \"terminal\",\n  \"terminale\": \"terminal\",\n  \"terminalisti\": \"terminal\",\n  \"terminare\": \"termin\",\n  \"terminarsi\": \"termin\",\n  \"terminasse\": \"termin\",\n  \"terminata\": \"termin\",\n  \"terminate\": \"termin\",\n  \"terminato\": \"termin\",\n  \"terminava\": \"termin\",\n  \"terminavano\": \"termin\",\n  \"termine\": \"termin\",\n  \"terminerà\": \"termin\",\n  \"termineranno\": \"termin\",\n  \"termini\": \"termin\",\n  \"terminò\": \"termin\",\n  \"terni\": \"tern\",\n  \"terra\": \"terr\",\n  \"terrà\": \"terr\",\n  \"terrace\": \"terrac\",\n  \"terracenere\": \"terracen\",\n  \"terraferma\": \"terraferm\",\n  \"terranno\": \"terrann\",\n  \"terranova\": \"terranov\",\n  \"terranuova\": \"terranuov\",\n  \"terrapieni\": \"terrapien\",\n  \"terrapieno\": \"terrapien\",\n  \"terrazzino\": \"terrazzin\",\n  \"terre\": \"terr\",\n  \"terrea\": \"terre\",\n  \"terremoto\": \"terremot\",\n  \"terrena\": \"terren\",\n  \"terrene\": \"terren\",\n  \"terreni\": \"terren\",\n  \"terreno\": \"terren\",\n  \"terrestre\": \"terrestr\",\n  \"terribil\": \"terribil\",\n  \"terribile\": \"terribil\",\n  \"terribili\": \"terribil\",\n  \"terribilmente\": \"terribil\",\n  \"terricciola\": \"terricciol\",\n  \"terrieri\": \"terrier\",\n  \"terrificanti\": \"terrific\",\n  \"territori\": \"territor\",\n  \"territoriale\": \"territorial\",\n  \"territoriali\": \"territorial\",\n  \"territorij\": \"territorij\",\n  \"territorio\": \"territor\",\n  \"terrò\": \"terr\",\n  \"terror\": \"terror\",\n  \"terrore\": \"terror\",\n  \"terrori\": \"terror\",\n  \"terrorismo\": \"terror\",\n  \"terrorismò\": \"terrorism\",\n  \"terroristi\": \"terror\",\n  \"terroristica\": \"terrorist\",\n  \"terroristici\": \"terrorist\",\n  \"terrorizzando\": \"terrorizz\",\n  \"terrorizzato\": \"terrorizz\",\n  \"terry\": \"terry\",\n  \"terza\": \"terz\",\n  \"terzetta\": \"terzett\",\n  \"terzetto\": \"terzett\",\n  \"terzi\": \"terz\",\n  \"terzino\": \"terzin\",\n  \"terzo\": \"terz\",\n  \"terzultima\": \"terzultim\",\n  \"tesa\": \"tes\",\n  \"teschi\": \"tesc\",\n  \"teschietto\": \"teschiett\",\n  \"teschio\": \"tesc\",\n  \"tese\": \"tes\",\n  \"tesi\": \"tes\",\n  \"teso\": \"tes\",\n  \"tesoreria\": \"tesorer\",\n  \"tesoretto\": \"tesorett\",\n  \"tesori\": \"tesor\",\n  \"tesoriere\": \"tesor\",\n  \"tesoro\": \"tesor\",\n  \"tessera\": \"tesser\",\n  \"tesseramento\": \"tesser\",\n  \"tessere\": \"tess\",\n  \"tessile\": \"tessil\",\n  \"tessili\": \"tessil\",\n  \"tessitore\": \"tessitor\",\n  \"tessitrici\": \"tessitr\",\n  \"tessuto\": \"tess\",\n  \"test\": \"test\",\n  \"testa\": \"test\",\n  \"testamento\": \"test\",\n  \"testardo\": \"testard\",\n  \"testata\": \"test\",\n  \"testate\": \"test\",\n  \"testatori\": \"testator\",\n  \"teste\": \"test\",\n  \"testi\": \"test\",\n  \"testifichi\": \"testif\",\n  \"testimone\": \"testimon\",\n  \"testimoni\": \"testimon\",\n  \"testimonianza\": \"testimon\",\n  \"testimonianze\": \"testimon\",\n  \"testimoniare\": \"testimon\",\n  \"testimoniato\": \"testimon\",\n  \"testimonio\": \"testimon\",\n  \"testimonj\": \"testimonj\",\n  \"testina\": \"testin\",\n  \"testo\": \"test\",\n  \"testolina\": \"testolin\",\n  \"tetri\": \"tetr\",\n  \"tetti\": \"tett\",\n  \"tetto\": \"tett\",\n  \"tettò\": \"tett\",\n  \"tettoia\": \"tettoi\",\n  \"teu\": \"teu\",\n  \"texas\": \"texas\",\n  \"texmantova\": \"texmantov\",\n  \"teyssier\": \"teyssier\",\n  \"tg\": \"tg\",\n  \"thailand\": \"thailand\",\n  \"thailandese\": \"thailandes\",\n  \"thailandia\": \"thailand\",\n  \"thaler\": \"thaler\",\n  \"the\": \"the\",\n  \"theatre\": \"theatr\",\n  \"theo\": \"the\",\n  \"theresa\": \"theres\",\n  \"thermie\": \"therm\",\n  \"thern\": \"thern\",\n  \"thiry\": \"thiry\",\n  \"thomas\": \"thomas\",\n  \"thorn\": \"thorn\",\n  \"thriller\": \"thriller\",\n  \"ti\": \"ti\",\n  \"ticinese\": \"ticines\",\n  \"ticket\": \"ticket\",\n  \"tiempo\": \"tiemp\",\n  \"tien\": \"tien\",\n  \"tiene\": \"tien\",\n  \"tienla\": \"tienl\",\n  \"tienlo\": \"tienl\",\n  \"tiepido\": \"tiepid\",\n  \"tieri\": \"tier\",\n  \"tietmeyer\": \"tietmeyer\",\n  \"tifato\": \"tif\",\n  \"tifo\": \"tif\",\n  \"tifoseria\": \"tifoser\",\n  \"tifoserie\": \"tifoser\",\n  \"tifosi\": \"tifos\",\n  \"tifoso\": \"tifos\",\n  \"tigri\": \"tigr\",\n  \"tigullio\": \"tigull\",\n  \"tilt\": \"tilt\",\n  \"time\": \"tim\",\n  \"timeo\": \"time\",\n  \"times\": \"times\",\n  \"timicin\": \"timicin\",\n  \"timida\": \"timid\",\n  \"timidamente\": \"timid\",\n  \"timidezza\": \"timidezz\",\n  \"timido\": \"timid\",\n  \"timoniere\": \"timon\",\n  \"timor\": \"timor\",\n  \"timorato\": \"timor\",\n  \"timore\": \"timor\",\n  \"timori\": \"timor\",\n  \"timoroso\": \"timor\",\n  \"timpano\": \"timp\",\n  \"tina\": \"tin\",\n  \"tinello\": \"tinell\",\n  \"tingano\": \"ting\",\n  \"tino\": \"tin\",\n  \"tinta\": \"tint\",\n  \"tinte\": \"tint\",\n  \"tintinnìo\": \"tintinnì\",\n  \"tipi\": \"tip\",\n  \"tipica\": \"tipic\",\n  \"tipici\": \"tipic\",\n  \"tipico\": \"tipic\",\n  \"tipo\": \"tip\",\n  \"tipologie\": \"tipolog\",\n  \"tira\": \"tir\",\n  \"tiraccio\": \"tiracc\",\n  \"tiradritto\": \"tiradritt\",\n  \"tirala\": \"tiral\",\n  \"tiran\": \"tiran\",\n  \"tirana\": \"tiran\",\n  \"tirando\": \"tir\",\n  \"tirandosela\": \"tirandosel\",\n  \"tirandosi\": \"tir\",\n  \"tiranna\": \"tirann\",\n  \"tiranneggiar\": \"tirannegg\",\n  \"tiranneggiati\": \"tirannegg\",\n  \"tirannello\": \"tirannell\",\n  \"tiranni\": \"tirann\",\n  \"tirannia\": \"tirann\",\n  \"tirannici\": \"tirann\",\n  \"tirannide\": \"tirannid\",\n  \"tirannie\": \"tirann\",\n  \"tiranno\": \"tirann\",\n  \"tirano\": \"tir\",\n  \"tirapiedi\": \"tirapied\",\n  \"tirar\": \"tir\",\n  \"tirare\": \"tir\",\n  \"tirarla\": \"tir\",\n  \"tirarli\": \"tir\",\n  \"tirarlo\": \"tir\",\n  \"tirarmi\": \"tir\",\n  \"tiraron\": \"tiraron\",\n  \"tirarsene\": \"tir\",\n  \"tirarsi\": \"tir\",\n  \"tirassero\": \"tir\",\n  \"tirassi\": \"tir\",\n  \"tirata\": \"tir\",\n  \"tiratala\": \"tiratal\",\n  \"tirate\": \"tir\",\n  \"tiratela\": \"tiratel\",\n  \"tirati\": \"tir\",\n  \"tirato\": \"tir\",\n  \"tiratolo\": \"tiratol\",\n  \"tirava\": \"tir\",\n  \"tiravan\": \"tiravan\",\n  \"tiravano\": \"tir\",\n  \"tiri\": \"tir\",\n  \"tiriamo\": \"tir\",\n  \"tirin\": \"tirin\",\n  \"tirinato\": \"tirin\",\n  \"tiro\": \"tir\",\n  \"tirò\": \"tir\",\n  \"tirreniche\": \"tirren\",\n  \"tirreno\": \"tirren\",\n  \"tisch\": \"tisc\",\n  \"tishvin\": \"tishvin\",\n  \"tisico\": \"tisic\",\n  \"tisiologia\": \"tisiolog\",\n  \"titanic\": \"titanic\",\n  \"titola\": \"titol\",\n  \"titolare\": \"titol\",\n  \"titolari\": \"titolar\",\n  \"titolarità\": \"titolar\",\n  \"titolati\": \"titol\",\n  \"titolato\": \"titol\",\n  \"titoli\": \"titol\",\n  \"titolo\": \"titol\",\n  \"tittarelli\": \"tittarell\",\n  \"titubanti\": \"titub\",\n  \"titubanza\": \"titub\",\n  \"titubate\": \"titub\",\n  \"titubazione\": \"titub\",\n  \"tivonchik\": \"tivonchik\",\n  \"tiziana\": \"tizian\",\n  \"tiziano\": \"tiz\",\n  \"tizio\": \"tiz\",\n  \"tizzi\": \"tizz\",\n  \"tizzone\": \"tizzon\",\n  \"tizzoni\": \"tizzon\",\n  \"tl\": \"tl\",\n  \"tlf\": \"tlf\",\n  \"tm\": \"tm\",\n  \"tmc\": \"tmc\",\n  \"to\": \"to\",\n  \"tocancipa\": \"tocancip\",\n  \"tocca\": \"tocc\",\n  \"toccan\": \"toccan\",\n  \"toccando\": \"tocc\",\n  \"toccano\": \"tocc\",\n  \"toccante\": \"toccant\",\n  \"toccanti\": \"toccant\",\n  \"toccar\": \"tocc\",\n  \"toccare\": \"tocc\",\n  \"toccargli\": \"tocc\",\n  \"toccarli\": \"tocc\",\n  \"toccarlo\": \"tocc\",\n  \"toccase\": \"toccas\",\n  \"toccasse\": \"tocc\",\n  \"toccassero\": \"tocc\",\n  \"toccata\": \"tocc\",\n  \"toccate\": \"tocc\",\n  \"toccategli\": \"toccategl\",\n  \"toccati\": \"tocc\",\n  \"toccato\": \"tocc\",\n  \"toccava\": \"tocc\",\n  \"toccavano\": \"tocc\",\n  \"toccherà\": \"tocc\",\n  \"toccherebbe\": \"tocc\",\n  \"toccherò\": \"tocc\",\n  \"tocchetti\": \"tocchett\",\n  \"tocchi\": \"tocc\",\n  \"tocci\": \"tocc\",\n  \"tocco\": \"tocc\",\n  \"toccò\": \"tocc\",\n  \"todaro\": \"todar\",\n  \"todd\": \"todd\",\n  \"tofoli\": \"tofol\",\n  \"toga\": \"tog\",\n  \"togae\": \"toga\",\n  \"togato\": \"tog\",\n  \"togliatti\": \"togliatt\",\n  \"toglie\": \"togl\",\n  \"togliendo\": \"togl\",\n  \"togliendogli\": \"togl\",\n  \"togliendoli\": \"togl\",\n  \"togliere\": \"togl\",\n  \"togliergli\": \"togl\",\n  \"togliergliela\": \"togl\",\n  \"togliersi\": \"togl\",\n  \"togliervi\": \"togl\",\n  \"togliesse\": \"togliess\",\n  \"toglieva\": \"togl\",\n  \"togo\": \"tog\",\n  \"tokio\": \"tok\",\n  \"tokunaga\": \"tokunag\",\n  \"tokyo\": \"toky\",\n  \"toldo\": \"told\",\n  \"toledo\": \"toled\",\n  \"tollerabile\": \"toller\",\n  \"tollerabilità\": \"toller\",\n  \"tolleranza\": \"toller\",\n  \"tollerar\": \"toller\",\n  \"tollerare\": \"toller\",\n  \"tollerati\": \"toller\",\n  \"tolone\": \"tolon\",\n  \"tolstikov\": \"tolstikov\",\n  \"tolta\": \"tolt\",\n  \"tolte\": \"tolt\",\n  \"tolto\": \"tolt\",\n  \"tom\": \"tom\",\n  \"tomas\": \"tomas\",\n  \"tomba\": \"tomb\",\n  \"tombalè\": \"tombal\",\n  \"tommasi\": \"tommas\",\n  \"tommi\": \"tomm\",\n  \"tommyknockers\": \"tommyknockers\",\n  \"tommyknokers\": \"tommyknokers\",\n  \"ton\": \"ton\",\n  \"tonaca\": \"tonac\",\n  \"tonache\": \"tonac\",\n  \"tonante\": \"tonant\",\n  \"tondo\": \"tond\",\n  \"tonè\": \"ton\",\n  \"tonfo\": \"tonf\",\n  \"toni\": \"ton\",\n  \"tonini\": \"tonin\",\n  \"tonio\": \"ton\",\n  \"tonnellate\": \"tonnell\",\n  \"tonno\": \"tonn\",\n  \"tono\": \"ton\",\n  \"tonò\": \"ton\",\n  \"tontini\": \"tontin\",\n  \"tony\": \"tony\",\n  \"tonynton\": \"tonynton\",\n  \"top\": \"top\",\n  \"topacci\": \"topacc\",\n  \"topaie\": \"topai\",\n  \"topi\": \"top\",\n  \"topo\": \"top\",\n  \"toppa\": \"topp\",\n  \"topponi\": \"toppon\",\n  \"torbida\": \"torbid\",\n  \"torbide\": \"torbid\",\n  \"torbido\": \"torbid\",\n  \"torca\": \"torc\",\n  \"torce\": \"torc\",\n  \"torcendo\": \"torc\",\n  \"torcere\": \"torc\",\n  \"torcetti\": \"torcett\",\n  \"torcetto\": \"torcett\",\n  \"torchia\": \"torc\",\n  \"torchiatura\": \"torchiatur\",\n  \"torcia\": \"torc\",\n  \"tord\": \"tord\",\n  \"torello\": \"torell\",\n  \"torgiano\": \"torg\",\n  \"torinese\": \"torines\",\n  \"torino\": \"torin\",\n  \"torme\": \"torm\",\n  \"tormenta\": \"torment\",\n  \"tormentar\": \"torment\",\n  \"tormentare\": \"torment\",\n  \"tormentarla\": \"torment\",\n  \"tormentarli\": \"torment\",\n  \"tormentarlo\": \"torment\",\n  \"tormentarmi\": \"torment\",\n  \"tormentarsi\": \"torment\",\n  \"tormentato\": \"torment\",\n  \"tormentavano\": \"torment\",\n  \"tormenti\": \"torment\",\n  \"tormento\": \"torment\",\n  \"tormentosa\": \"torment\",\n  \"tormentose\": \"torment\",\n  \"tormentoso\": \"torment\",\n  \"torna\": \"torn\",\n  \"tornando\": \"torn\",\n  \"tornandoci\": \"torn\",\n  \"tornandole\": \"torn\",\n  \"tornandovi\": \"torn\",\n  \"tornano\": \"torn\",\n  \"tornar\": \"torn\",\n  \"tornarci\": \"torn\",\n  \"tornare\": \"torn\",\n  \"tornarono\": \"torn\",\n  \"tornarsene\": \"torn\",\n  \"tornasolè\": \"tornasol\",\n  \"tornasse\": \"torn\",\n  \"tornassi\": \"torn\",\n  \"tornata\": \"torn\",\n  \"tornate\": \"torn\",\n  \"tornatele\": \"tornatel\",\n  \"tornatevene\": \"tornateven\",\n  \"tornati\": \"torn\",\n  \"tornato\": \"torn\",\n  \"tornava\": \"torn\",\n  \"tornavan\": \"tornavan\",\n  \"tornavano\": \"torn\",\n  \"torneo\": \"torne\",\n  \"tornerà\": \"torn\",\n  \"tornerai\": \"torn\",\n  \"torneranno\": \"torn\",\n  \"tornerebbe\": \"torn\",\n  \"tornerei\": \"torn\",\n  \"torneremo\": \"torn\",\n  \"tornerete\": \"torn\",\n  \"tornerò\": \"torn\",\n  \"torni\": \"torn\",\n  \"torniamo\": \"torn\",\n  \"tornita\": \"torn\",\n  \"torno\": \"torn\",\n  \"tornò\": \"torn\",\n  \"toro\": \"tor\",\n  \"toronto\": \"toront\",\n  \"torpedoni\": \"torpedon\",\n  \"torquato\": \"torqu\",\n  \"torracchione\": \"torracchion\",\n  \"torras\": \"torras\",\n  \"torre\": \"torr\",\n  \"torreggiava\": \"torregg\",\n  \"torrentaccio\": \"torrentacc\",\n  \"torrente\": \"torrent\",\n  \"torrenti\": \"torrent\",\n  \"torres\": \"torres\",\n  \"torri\": \"torr\",\n  \"torricelli\": \"torricell\",\n  \"torrisi\": \"torris\",\n  \"torse\": \"tors\",\n  \"torso\": \"tors\",\n  \"torsoli\": \"torsol\",\n  \"torta\": \"tort\",\n  \"torti\": \"tort\",\n  \"torto\": \"tort\",\n  \"tortuose\": \"tortuos\",\n  \"tortuoso\": \"tortuos\",\n  \"tortura\": \"tortur\",\n  \"torturare\": \"tortur\",\n  \"torture\": \"tortur\",\n  \"torturi\": \"tortur\",\n  \"torvo\": \"torv\",\n  \"tosa\": \"tos\",\n  \"tosarsi\": \"tos\",\n  \"toscana\": \"toscan\",\n  \"toscane\": \"toscan\",\n  \"toscani\": \"toscan\",\n  \"toscano\": \"tosc\",\n  \"toseranno\": \"tos\",\n  \"tosi\": \"tos\",\n  \"tossì\": \"toss\",\n  \"tossicodipendente\": \"tossicodipendent\",\n  \"tossicodipendenti\": \"tossicodipendent\",\n  \"tossicologa\": \"tossicolog\",\n  \"tossicologico\": \"tossicolog\",\n  \"tossire\": \"toss\",\n  \"tosta\": \"tost\",\n  \"tosto\": \"tost\",\n  \"total\": \"total\",\n  \"totale\": \"total\",\n  \"totalitarismi\": \"totalitar\",\n  \"totalizzato\": \"totalizz\",\n  \"totalmente\": \"total\",\n  \"totip\": \"totip\",\n  \"toto\": \"tot\",\n  \"totò\": \"tot\",\n  \"totocalcio\": \"totocalc\",\n  \"totogol\": \"totogol\",\n  \"totti\": \"tott\",\n  \"touareg\": \"touareg\",\n  \"tour\": \"tour\",\n  \"tovaglia\": \"tovagl\",\n  \"tovaglie\": \"tovagl\",\n  \"tovagliolo\": \"tovagliol\",\n  \"tovalieri\": \"tovalier\",\n  \"toyota\": \"toyot\",\n  \"tp\": \"tp\",\n  \"tra\": \"tra\",\n  \"traballanti\": \"traball\",\n  \"trabocca\": \"trabocc\",\n  \"traboccanti\": \"trabocc\",\n  \"traboccare\": \"trabocc\",\n  \"traboccò\": \"trabocc\",\n  \"tracannato\": \"tracann\",\n  \"tracannò\": \"tracann\",\n  \"tracce\": \"tracc\",\n  \"traccia\": \"tracc\",\n  \"tracciare\": \"tracc\",\n  \"tracciarne\": \"tracc\",\n  \"tracciate\": \"tracc\",\n  \"tracciato\": \"tracc\",\n  \"tracollava\": \"tracoll\",\n  \"tracollo\": \"tracoll\",\n  \"tracy\": \"tracy\",\n  \"trade\": \"trad\",\n  \"tradimenti\": \"trad\",\n  \"tradimento\": \"trad\",\n  \"trading\": \"trading\",\n  \"tradire\": \"trad\",\n  \"tradisce\": \"trad\",\n  \"traditi\": \"trad\",\n  \"tradito\": \"trad\",\n  \"traditor\": \"traditor\",\n  \"traditora\": \"traditor\",\n  \"traditore\": \"traditor\",\n  \"traditori\": \"traditor\",\n  \"traditrice\": \"traditr\",\n  \"tradizionale\": \"tradizional\",\n  \"tradizionali\": \"tradizional\",\n  \"tradizionalmente\": \"tradizional\",\n  \"tradizione\": \"tradizion\",\n  \"tradizioni\": \"tradizion\",\n  \"traducessero\": \"traduc\",\n  \"traduciamo\": \"traduc\",\n  \"tradurrà\": \"tradurr\",\n  \"tradurre\": \"tradurr\",\n  \"tradursi\": \"tradurs\",\n  \"traduttore\": \"traduttor\",\n  \"trae\": \"tra\",\n  \"traendo\": \"tra\",\n  \"traessi\": \"traess\",\n  \"trafelato\": \"trafel\",\n  \"trafficando\": \"traffic\",\n  \"trafficanti\": \"traffic\",\n  \"traffichi\": \"traffic\",\n  \"traffici\": \"traffic\",\n  \"traffico\": \"traffic\",\n  \"trafitta\": \"trafitt\",\n  \"trafitto\": \"trafitt\",\n  \"traforata\": \"trafor\",\n  \"traforate\": \"trafor\",\n  \"trafugamento\": \"trafug\",\n  \"trafugare\": \"trafug\",\n  \"trafugati\": \"trafug\",\n  \"trafugato\": \"trafug\",\n  \"tragedia\": \"traged\",\n  \"tragedie\": \"traged\",\n  \"tragga\": \"tragg\",\n  \"traggedie\": \"tragged\",\n  \"traghettare\": \"traghett\",\n  \"traghetti\": \"traghett\",\n  \"traghetto\": \"traghett\",\n  \"tragica\": \"tragic\",\n  \"tragicamente\": \"tragic\",\n  \"tragiche\": \"tragic\",\n  \"tragici\": \"tragic\",\n  \"tragico\": \"tragic\",\n  \"tragittar\": \"tragitt\",\n  \"tragittarmi\": \"tragitt\",\n  \"tragitto\": \"tragitt\",\n  \"traguardi\": \"traguard\",\n  \"traguardo\": \"traguard\",\n  \"traiettoria\": \"traiettor\",\n  \"trainante\": \"trainant\",\n  \"trainato\": \"train\",\n  \"trainer\": \"trainer\",\n  \"traino\": \"train\",\n  \"tralasceremo\": \"tralasc\",\n  \"tralascia\": \"tralasc\",\n  \"tralasciamo\": \"tralasc\",\n  \"tralasciare\": \"tralasc\",\n  \"tralasciava\": \"tralasc\",\n  \"tralasciò\": \"tralasc\",\n  \"tralci\": \"tralc\",\n  \"traluce\": \"traluc\",\n  \"tram\": \"tram\",\n  \"trama\": \"tram\",\n  \"tramagli\": \"tramagl\",\n  \"tramaglino\": \"tramaglin\",\n  \"tramaliini\": \"tramaliin\",\n  \"trambusto\": \"trambust\",\n  \"trame\": \"tram\",\n  \"tramenìo\": \"tramenì\",\n  \"tramezzani\": \"tramezzan\",\n  \"tramite\": \"tram\",\n  \"tramonta\": \"tramont\",\n  \"tramontano\": \"tramont\",\n  \"tramontata\": \"tramont\",\n  \"tramontato\": \"tramont\",\n  \"tramonto\": \"tramont\",\n  \"tramutato\": \"tramut\",\n  \"trance\": \"tranc\",\n  \"tranche\": \"tranc\",\n  \"trani\": \"tran\",\n  \"tranne\": \"trann\",\n  \"tranquilizzati\": \"tranquilizz\",\n  \"tranquilla\": \"tranquill\",\n  \"tranquillamente\": \"tranquill\",\n  \"tranquillanti\": \"tranquill\",\n  \"tranquille\": \"tranquill\",\n  \"tranquilli\": \"tranquill\",\n  \"tranquillità\": \"tranquill\",\n  \"tranquillizzante\": \"tranquillizz\",\n  \"tranquillizzare\": \"tranquillizz\",\n  \"tranquillizzata\": \"tranquillizz\",\n  \"tranquillo\": \"tranquill\",\n  \"transatlantica\": \"transatlant\",\n  \"transazione\": \"transazion\",\n  \"transeuropee\": \"transeurope\",\n  \"transfughi\": \"transfug\",\n  \"transiti\": \"trans\",\n  \"transitiva\": \"transit\",\n  \"transizione\": \"transizion\",\n  \"transportation\": \"transportation\",\n  \"trantina\": \"trantin\",\n  \"trapani\": \"trapan\",\n  \"trapassate\": \"trapass\",\n  \"trapela\": \"trapel\",\n  \"trapelasse\": \"trapel\",\n  \"trapelato\": \"trapel\",\n  \"trapiantato\": \"trapiant\",\n  \"trapianti\": \"trapiant\",\n  \"trapianto\": \"trapiant\",\n  \"trapolorum\": \"trapolorum\",\n  \"trapontando\": \"trapont\",\n  \"trappola\": \"trappol\",\n  \"trappole\": \"trappol\",\n  \"trarrà\": \"trarr\",\n  \"trarre\": \"trarr\",\n  \"trasandata\": \"trasand\",\n  \"trasandato\": \"trasand\",\n  \"trascinare\": \"trascin\",\n  \"trascinarla\": \"trascin\",\n  \"trascinarle\": \"trascin\",\n  \"trascinato\": \"trascin\",\n  \"trascinatore\": \"trascin\",\n  \"trascorrendo\": \"trascorr\",\n  \"trascorrerà\": \"trascorr\",\n  \"trascorrere\": \"trascorr\",\n  \"trascorreva\": \"trascorr\",\n  \"trascorrevano\": \"trascorr\",\n  \"trascorrono\": \"trascorr\",\n  \"trascorsa\": \"trascors\",\n  \"trascorso\": \"trascors\",\n  \"trascriver\": \"trascriver\",\n  \"trascrivere\": \"trascriv\",\n  \"trascriveremo\": \"trascriv\",\n  \"trascriviamo\": \"trascriv\",\n  \"trascura\": \"trascur\",\n  \"trascuranza\": \"trascur\",\n  \"trascurar\": \"trascur\",\n  \"trascurare\": \"trascur\",\n  \"trascurata\": \"trascur\",\n  \"trascuratezza\": \"trascuratezz\",\n  \"trascurato\": \"trascur\",\n  \"trascuro\": \"trascur\",\n  \"trascurò\": \"trascur\",\n  \"trasferendo\": \"trasfer\",\n  \"trasferendoli\": \"trasfer\",\n  \"trasferì\": \"trasfer\",\n  \"trasferimenti\": \"trasfer\",\n  \"trasferimento\": \"trasfer\",\n  \"trasferirà\": \"trasfer\",\n  \"trasferire\": \"trasfer\",\n  \"trasferirsi\": \"trasfer\",\n  \"trasferisce\": \"trasfer\",\n  \"trasferita\": \"trasfer\",\n  \"trasferiti\": \"trasfer\",\n  \"trasferito\": \"trasfer\",\n  \"trasferitosi\": \"trasferit\",\n  \"trasferta\": \"trasfert\",\n  \"trasferte\": \"trasfert\",\n  \"trasfigurare\": \"trasfigur\",\n  \"trasforma\": \"trasform\",\n  \"trasformandosi\": \"trasform\",\n  \"trasformare\": \"trasform\",\n  \"trasformarè\": \"trasformar\",\n  \"trasformarsi\": \"trasform\",\n  \"trasformata\": \"trasform\",\n  \"trasformato\": \"trasform\",\n  \"trasformazione\": \"trasform\",\n  \"trasformistica\": \"trasformist\",\n  \"trasfusione\": \"trasfusion\",\n  \"trasgredire\": \"trasgred\",\n  \"trasgredirne\": \"trasgred\",\n  \"trasgredisca\": \"trasgred\",\n  \"trasgredito\": \"trasgred\",\n  \"trasgressione\": \"trasgression\",\n  \"trasgressori\": \"trasgressor\",\n  \"trasmesa\": \"trasmes\",\n  \"trasmessa\": \"trasmess\",\n  \"trasmesse\": \"trasmess\",\n  \"trasmessi\": \"trasmess\",\n  \"trasmesso\": \"trasmess\",\n  \"trasmette\": \"trasmett\",\n  \"trasmetterà\": \"trasmett\",\n  \"trasmettere\": \"trasmett\",\n  \"trasmetteremo\": \"trasmett\",\n  \"trasmetterla\": \"trasmett\",\n  \"trasmettesse\": \"trasmettess\",\n  \"trasmettono\": \"trasmett\",\n  \"trasmise\": \"trasmis\",\n  \"trasmissiome\": \"trasmissiom\",\n  \"trasmissione\": \"trasmission\",\n  \"trasmissioni\": \"trasmission\",\n  \"traspare\": \"trasp\",\n  \"trasparente\": \"trasparent\",\n  \"trasparenti\": \"trasparent\",\n  \"trasparenza\": \"trasparent\",\n  \"trasparire\": \"traspar\",\n  \"traspariva\": \"traspar\",\n  \"trasparve\": \"trasparv\",\n  \"traspirato\": \"traspir\",\n  \"trasporta\": \"trasport\",\n  \"trasportano\": \"trasport\",\n  \"trasportar\": \"trasport\",\n  \"trasportare\": \"trasport\",\n  \"trasportarsi\": \"trasport\",\n  \"trasportata\": \"trasport\",\n  \"trasportati\": \"trasport\",\n  \"trasportato\": \"trasport\",\n  \"trasporterà\": \"trasport\",\n  \"trasporti\": \"trasport\",\n  \"trasportiamoci\": \"trasportiamoc\",\n  \"trasportistico\": \"trasportist\",\n  \"trasporto\": \"trasport\",\n  \"trastullo\": \"trastull\",\n  \"tratta\": \"tratt\",\n  \"trattabile\": \"trattabil\",\n  \"trattabili\": \"trattabil\",\n  \"trattamenti\": \"tratt\",\n  \"trattamento\": \"tratt\",\n  \"trattandosi\": \"tratt\",\n  \"trattano\": \"tratt\",\n  \"trattar\": \"tratt\",\n  \"trattare\": \"tratt\",\n  \"trattarla\": \"tratt\",\n  \"trattarli\": \"tratt\",\n  \"trattarlo\": \"tratt\",\n  \"trattarsi\": \"tratt\",\n  \"trattarvi\": \"tratt\",\n  \"trattasse\": \"tratt\",\n  \"trattata\": \"tratt\",\n  \"trattate\": \"tratt\",\n  \"trattati\": \"tratt\",\n  \"trattativa\": \"trattat\",\n  \"trattative\": \"trattat\",\n  \"trattato\": \"tratt\",\n  \"trattava\": \"tratt\",\n  \"trattavano\": \"tratt\",\n  \"tratte\": \"tratt\",\n  \"trattenendole\": \"tratten\",\n  \"trattener\": \"trattener\",\n  \"trattenere\": \"tratten\",\n  \"trattenerla\": \"tratten\",\n  \"trattenerle\": \"tratten\",\n  \"trattenerlo\": \"tratten\",\n  \"trattenerne\": \"tratten\",\n  \"trattenersi\": \"tratten\",\n  \"trattenesse\": \"tratteness\",\n  \"trattenete\": \"tratten\",\n  \"tratteneva\": \"tratten\",\n  \"trattenga\": \"tratteng\",\n  \"trattenne\": \"trattenn\",\n  \"trattenuta\": \"tratten\",\n  \"trattenuti\": \"tratten\",\n  \"trattenuto\": \"tratten\",\n  \"tratterà\": \"tratt\",\n  \"tratterebbe\": \"tratt\",\n  \"tratti\": \"tratt\",\n  \"trattiamo\": \"tratt\",\n  \"trattiene\": \"trattien\",\n  \"tratto\": \"tratt\",\n  \"trattò\": \"tratt\",\n  \"traumi\": \"traum\",\n  \"travagli\": \"travagl\",\n  \"travagliata\": \"travagl\",\n  \"travagliate\": \"travagl\",\n  \"travaglio\": \"travagl\",\n  \"trave\": \"trav\",\n  \"travedente\": \"travedent\",\n  \"travedere\": \"traved\",\n  \"traversa\": \"travers\",\n  \"traversando\": \"travers\",\n  \"traverse\": \"travers\",\n  \"traversìe\": \"traversì\",\n  \"traverso\": \"travers\",\n  \"traversone\": \"traverson\",\n  \"traveste\": \"travest\",\n  \"travestimenti\": \"travest\",\n  \"travestito\": \"travest\",\n  \"travi\": \"trav\",\n  \"traviati\": \"trav\",\n  \"travisamento\": \"travis\",\n  \"travisarsi\": \"travis\",\n  \"travisati\": \"travis\",\n  \"travolta\": \"travolt\",\n  \"travolti\": \"travolt\",\n  \"tre\": \"tre\",\n  \"trebenic\": \"trebenic\",\n  \"trebevic\": \"trebevic\",\n  \"trecce\": \"trecc\",\n  \"treccia\": \"trecc\",\n  \"trecento\": \"trecent\",\n  \"tredicenne\": \"tredicenn\",\n  \"tredicesimo\": \"tredicesim\",\n  \"tredici\": \"tredic\",\n  \"tregua\": \"tregu\",\n  \"trek\": \"trek\",\n  \"trema\": \"trem\",\n  \"tremaglia\": \"tremagl\",\n  \"tremando\": \"trem\",\n  \"tremante\": \"tremant\",\n  \"tremanti\": \"tremant\",\n  \"tremar\": \"trem\",\n  \"tremare\": \"trem\",\n  \"tremava\": \"trem\",\n  \"tremenda\": \"trem\",\n  \"tremendo\": \"trem\",\n  \"tremila\": \"tremil\",\n  \"tremito\": \"trem\",\n  \"tremò\": \"trem\",\n  \"tremola\": \"tremol\",\n  \"tremolando\": \"tremol\",\n  \"tremolante\": \"tremol\",\n  \"tremolanti\": \"tremol\",\n  \"tremolare\": \"tremol\",\n  \"tremolava\": \"tremol\",\n  \"tremonti\": \"tremont\",\n  \"tremula\": \"tremul\",\n  \"trend\": \"trend\",\n  \"treni\": \"tren\",\n  \"trenno\": \"trenn\",\n  \"treno\": \"tren\",\n  \"trent\": \"trent\",\n  \"trenta\": \"trent\",\n  \"trentacinque\": \"trentacinqu\",\n  \"trentacinquenne\": \"trentacinquenn\",\n  \"trentadue\": \"trentadu\",\n  \"trentalange\": \"trentalang\",\n  \"trentamila\": \"trentamil\",\n  \"trentatre\": \"trentatr\",\n  \"trentennale\": \"trentennal\",\n  \"trentesimo\": \"trentesim\",\n  \"trentina\": \"trentin\",\n  \"trentino\": \"trentin\",\n  \"trento\": \"trent\",\n  \"treossi\": \"treoss\",\n  \"tresigallo\": \"tresigall\",\n  \"treu\": \"treu\",\n  \"treviso\": \"trevis\",\n  \"trezza\": \"trezz\",\n  \"trezze\": \"trezz\",\n  \"trezzo\": \"trezz\",\n  \"triangolazione\": \"triangol\",\n  \"triathlon\": \"triathlon\",\n  \"tribale\": \"tribal\",\n  \"tribolati\": \"tribol\",\n  \"tribolato\": \"tribol\",\n  \"tribolazione\": \"tribol\",\n  \"tribolazioni\": \"tribol\",\n  \"tribù\": \"tribù\",\n  \"tribuna\": \"tribun\",\n  \"tribunal\": \"tribunal\",\n  \"tribunale\": \"tribunal\",\n  \"tribunalè\": \"tribunal\",\n  \"tribunali\": \"tribunal\",\n  \"tribune\": \"tribun\",\n  \"tribunè\": \"tribun\",\n  \"tributano\": \"tribut\",\n  \"tributari\": \"tributar\",\n  \"tributaria\": \"tributar\",\n  \"tributarie\": \"tributar\",\n  \"tributarij\": \"tributarij\",\n  \"tricarico\": \"tricar\",\n  \"tricolore\": \"tricolor\",\n  \"tridente\": \"trident\",\n  \"triennale\": \"triennal\",\n  \"triennio\": \"trienn\",\n  \"trieste\": \"triest\",\n  \"triestina\": \"triestin\",\n  \"triestini\": \"triestin\",\n  \"triestino\": \"triestin\",\n  \"trigoso\": \"trigos\",\n  \"trilingue\": \"trilingu\",\n  \"trill\": \"trill\",\n  \"trimestrali\": \"trimestral\",\n  \"trimestre\": \"trimestr\",\n  \"trincando\": \"trinc\",\n  \"trincare\": \"trinc\",\n  \"trincea\": \"trince\",\n  \"trincerandosi\": \"trincer\",\n  \"trincerarsi\": \"trincer\",\n  \"trincerati\": \"trincer\",\n  \"trinchera\": \"trincher\",\n  \"trinciando\": \"trinc\",\n  \"trinidad\": \"trinidad\",\n  \"trionfale\": \"trionfal\",\n  \"trionfali\": \"trionfal\",\n  \"trionfante\": \"trionfant\",\n  \"trionfare\": \"trionf\",\n  \"trionfarne\": \"trionf\",\n  \"trionfatore\": \"trionfator\",\n  \"trionfo\": \"trionf\",\n  \"trionfò\": \"trionf\",\n  \"tripcovich\": \"tripcovic\",\n  \"triplicato\": \"triplic\",\n  \"tripnavi\": \"tripn\",\n  \"tripoli\": \"tripol\",\n  \"tripudio\": \"tripud\",\n  \"trirak\": \"trirak\",\n  \"trista\": \"trist\",\n  \"tristamente\": \"trist\",\n  \"triste\": \"trist\",\n  \"tristezza\": \"tristezz\",\n  \"tristi\": \"trist\",\n  \"tristissima\": \"tristissim\",\n  \"tristo\": \"trist\",\n  \"trita\": \"trit\",\n  \"tritticò\": \"trittic\",\n  \"trocker\": \"trocker\",\n  \"trofeo\": \"trofe\",\n  \"troffa\": \"troff\",\n  \"trofino\": \"trofin\",\n  \"troi\": \"tro\",\n  \"troika\": \"troik\",\n  \"troikà\": \"troik\",\n  \"tromba\": \"tromb\",\n  \"trombe\": \"tromb\",\n  \"trombettare\": \"trombett\",\n  \"trombetti\": \"trombett\",\n  \"tromboni\": \"trombon\",\n  \"tronca\": \"tronc\",\n  \"troncando\": \"tronc\",\n  \"troncar\": \"tronc\",\n  \"troncare\": \"tronc\",\n  \"troncata\": \"tronc\",\n  \"troncate\": \"tronc\",\n  \"troncato\": \"tronc\",\n  \"troncatura\": \"troncatur\",\n  \"tronche\": \"tronc\",\n  \"troncherebbe\": \"tronc\",\n  \"tronchi\": \"tronc\",\n  \"tronchiamo\": \"tronc\",\n  \"tronco\": \"tronc\",\n  \"troncò\": \"tronc\",\n  \"troneggiava\": \"tronegg\",\n  \"tropeano\": \"trop\",\n  \"trophy\": \"trophy\",\n  \"tropicali\": \"tropical\",\n  \"troppa\": \"tropp\",\n  \"troppe\": \"tropp\",\n  \"troppi\": \"tropp\",\n  \"troppo\": \"tropp\",\n  \"trotta\": \"trott\",\n  \"trottare\": \"trott\",\n  \"trottata\": \"trott\",\n  \"trottava\": \"trott\",\n  \"trotter\": \"trotter\",\n  \"trotto\": \"trott\",\n  \"trottò\": \"trott\",\n  \"trouar\": \"trou\",\n  \"trouaua\": \"trouau\",\n  \"trouauano\": \"trouau\",\n  \"troupe\": \"troup\",\n  \"troupes\": \"troupes\",\n  \"trova\": \"trov\",\n  \"trovale\": \"troval\",\n  \"trovan\": \"trovan\",\n  \"trovando\": \"trov\",\n  \"trovandolo\": \"trov\",\n  \"trovandosene\": \"trov\",\n  \"trovandosi\": \"trov\",\n  \"trovano\": \"trov\",\n  \"trovar\": \"trov\",\n  \"trovarcela\": \"trov\",\n  \"trovarci\": \"trov\",\n  \"trovarcisi\": \"trovarcis\",\n  \"trovare\": \"trov\",\n  \"trovarla\": \"trov\",\n  \"trovarle\": \"trov\",\n  \"trovarli\": \"trov\",\n  \"trovarmi\": \"trov\",\n  \"trovarne\": \"trov\",\n  \"trovaron\": \"trovaron\",\n  \"trovarono\": \"trov\",\n  \"trovarsela\": \"trovarsel\",\n  \"trovarsi\": \"trov\",\n  \"trovarvi\": \"trov\",\n  \"trovasse\": \"trov\",\n  \"trovasser\": \"trovasser\",\n  \"trovassero\": \"trov\",\n  \"trovassi\": \"trov\",\n  \"trovata\": \"trov\",\n  \"trovate\": \"trov\",\n  \"trovati\": \"trov\",\n  \"trovato\": \"trov\",\n  \"trovatolo\": \"trovatol\",\n  \"trovava\": \"trov\",\n  \"trovavan\": \"trovavan\",\n  \"trovavano\": \"trov\",\n  \"trovavo\": \"trov\",\n  \"troverà\": \"trov\",\n  \"troverai\": \"trov\",\n  \"troveranno\": \"trov\",\n  \"troverebbe\": \"trov\",\n  \"troverebbero\": \"trov\",\n  \"troverei\": \"trov\",\n  \"troveremo\": \"trov\",\n  \"troverete\": \"trov\",\n  \"troverò\": \"trov\",\n  \"trovi\": \"trov\",\n  \"troviamo\": \"trov\",\n  \"trovino\": \"trovin\",\n  \"trovo\": \"trov\",\n  \"trovò\": \"trov\",\n  \"troy\": \"troy\",\n  \"trucidare\": \"trucid\",\n  \"trudell\": \"trudell\",\n  \"truffa\": \"truff\",\n  \"truffe\": \"truff\",\n  \"trufferia\": \"truffer\",\n  \"truiden\": \"truiden\",\n  \"trujilo\": \"trujil\",\n  \"trujllo\": \"trujll\",\n  \"truppa\": \"trupp\",\n  \"truppe\": \"trupp\",\n  \"tu\": \"tu\",\n  \"tua\": \"tua\",\n  \"tubazioni\": \"tubazion\",\n  \"tubetti\": \"tubett\",\n  \"tubettificio\": \"tubettific\",\n  \"tubi\": \"tub\",\n  \"tuccillo\": \"tuccill\",\n  \"tudisco\": \"tud\",\n  \"tudjman\": \"tudjman\",\n  \"tue\": \"tue\",\n  \"tuffo\": \"tuff\",\n  \"tuguri\": \"tugur\",\n  \"tulipano\": \"tulip\",\n  \"tullia\": \"tull\",\n  \"tullio\": \"tull\",\n  \"tumulti\": \"tumult\",\n  \"tumulto\": \"tumult\",\n  \"tumultuaria\": \"tumultuar\",\n  \"tumultuariamente\": \"tumultuar\",\n  \"tumultuosa\": \"tumultu\",\n  \"tumultuose\": \"tumultu\",\n  \"tumultuosi\": \"tumultu\",\n  \"tumultuoso\": \"tumultu\",\n  \"tunisi\": \"tunis\",\n  \"tunisia\": \"tunis\",\n  \"tunnel\": \"tunnel\",\n  \"tuo\": \"tuo\",\n  \"tuoi\": \"tuo\",\n  \"tuona\": \"tuon\",\n  \"tuonato\": \"tuon\",\n  \"tuoni\": \"tuon\",\n  \"tuono\": \"tuon\",\n  \"tupac\": \"tupac\",\n  \"turarsene\": \"tur\",\n  \"turava\": \"tur\",\n  \"turba\": \"turb\",\n  \"turbamento\": \"turb\",\n  \"turbarle\": \"turb\",\n  \"turbativa\": \"turbat\",\n  \"turbato\": \"turb\",\n  \"turbavan\": \"turbavan\",\n  \"turbercolosi\": \"turbercol\",\n  \"turbine\": \"turbin\",\n  \"turbolente\": \"turbolent\",\n  \"turca\": \"turc\",\n  \"turchia\": \"turc\",\n  \"turci\": \"turc\",\n  \"turcimanno\": \"turcimann\",\n  \"turco\": \"turc\",\n  \"turetta\": \"turett\",\n  \"turismo\": \"turism\",\n  \"turisti\": \"turist\",\n  \"turistica\": \"turist\",\n  \"turistiche\": \"turist\",\n  \"turistico\": \"turist\",\n  \"turkmenistan\": \"turkmenistan\",\n  \"turno\": \"turn\",\n  \"turpe\": \"turp\",\n  \"turrini\": \"turrin\",\n  \"turris\": \"turris\",\n  \"tutankamen\": \"tutankamen\",\n  \"tutela\": \"tutel\",\n  \"tutelano\": \"tutel\",\n  \"tutelare\": \"tutel\",\n  \"tutrici\": \"tutric\",\n  \"tutt\": \"tutt\",\n  \"tutta\": \"tutt\",\n  \"tuttalpiù\": \"tuttalpiù\",\n  \"tuttavia\": \"tuttav\",\n  \"tutte\": \"tutt\",\n  \"tutti\": \"tutt\",\n  \"tutto\": \"tutt\",\n  \"tuttobasket\": \"tuttobasket\",\n  \"tuttora\": \"tuttor\",\n  \"tuxla\": \"tuxl\",\n  \"tuzco\": \"tuzc\",\n  \"tuzzi\": \"tuzz\",\n  \"tv\": \"tv\",\n  \"tvm\": \"tvm\",\n  \"tvmovie\": \"tvmov\",\n  \"tyldum\": \"tyldum\",\n  \"tzeltal\": \"tzeltal\",\n  \"tzeltales\": \"tzeltales\",\n  \"tzotzil\": \"tzotzil\",\n  \"u\": \"u\",\n  \"uan\": \"uan\",\n  \"ubaldo\": \"ubald\",\n  \"ubbidì\": \"ubbid\",\n  \"ubbidiente\": \"ubbidient\",\n  \"ubbidienti\": \"ubbidient\",\n  \"ubbidienza\": \"ubbidient\",\n  \"ubbidir\": \"ubbid\",\n  \"ubbidirà\": \"ubbid\",\n  \"ubbidire\": \"ubbid\",\n  \"ubbidirla\": \"ubbid\",\n  \"ubbidirli\": \"ubbid\",\n  \"ubbidisca\": \"ubbid\",\n  \"ubbidisce\": \"ubbid\",\n  \"ubbidita\": \"ubbid\",\n  \"ubbidito\": \"ubbid\",\n  \"ubbidiva\": \"ubbid\",\n  \"ubbie\": \"ubbi\",\n  \"ubiquita\": \"ubiqu\",\n  \"ubiquità\": \"ubiqu\",\n  \"ubit\": \"ubit\",\n  \"ubriacatura\": \"ubriacatur\",\n  \"uccel\": \"uccel\",\n  \"uccellacci\": \"uccellacc\",\n  \"uccelli\": \"uccell\",\n  \"uccello\": \"uccell\",\n  \"uccide\": \"uccid\",\n  \"uccidendo\": \"uccid\",\n  \"uccidendolo\": \"uccid\",\n  \"uccidere\": \"uccid\",\n  \"ucciderla\": \"uccid\",\n  \"ucciderlo\": \"uccid\",\n  \"uccisa\": \"uccis\",\n  \"uccise\": \"uccis\",\n  \"uccisi\": \"uccis\",\n  \"uccisione\": \"uccision\",\n  \"uccisionè\": \"uccision\",\n  \"ucciso\": \"uccis\",\n  \"uccisor\": \"uccisor\",\n  \"uccisore\": \"uccisor\",\n  \"ucn\": \"ucn\",\n  \"ucraina\": \"ucrain\",\n  \"ucraino\": \"ucrain\",\n  \"udc\": \"udc\",\n  \"udenti\": \"udent\",\n  \"udf\": \"udf\",\n  \"udì\": \"udì\",\n  \"udienza\": \"udienz\",\n  \"udienze\": \"udienz\",\n  \"udine\": \"udin\",\n  \"udinese\": \"udines\",\n  \"udir\": \"udir\",\n  \"udito\": \"udit\",\n  \"uditori\": \"uditor\",\n  \"uditorio\": \"uditor\",\n  \"udiva\": \"udiv\",\n  \"udivan\": \"udivan\",\n  \"udo\": \"udo\",\n  \"udugov\": \"udugov\",\n  \"ue\": \"ue\",\n  \"uefa\": \"uef\",\n  \"ueo\": \"ueo\",\n  \"uero\": \"uer\",\n  \"ufficetto\": \"ufficett\",\n  \"uffici\": \"uffic\",\n  \"ufficiale\": \"ufficial\",\n  \"ufficiali\": \"ufficial\",\n  \"ufficializzare\": \"ufficializz\",\n  \"ufficializzata\": \"ufficializz\",\n  \"ufficializzazione\": \"ufficializz\",\n  \"ufficialmente\": \"ufficial\",\n  \"ufficilizzate\": \"ufficilizz\",\n  \"ufficio\": \"uffic\",\n  \"ufficiosamente\": \"uffic\",\n  \"uficio\": \"ufic\",\n  \"ufizi\": \"ufiz\",\n  \"ufiziale\": \"ufizial\",\n  \"ufiziali\": \"ufizial\",\n  \"ufizio\": \"ufiz\",\n  \"ufo\": \"ufo\",\n  \"uganda\": \"ugand\",\n  \"uggia\": \"uggi\",\n  \"uggiosa\": \"uggios\",\n  \"uggioso\": \"uggios\",\n  \"ugo\": \"ugo\",\n  \"ugolini\": \"ugolin\",\n  \"uguagliano\": \"uguagl\",\n  \"uguaglianza\": \"uguagl\",\n  \"uguagliare\": \"uguagl\",\n  \"ugual\": \"ugual\",\n  \"uguale\": \"ugual\",\n  \"uguali\": \"ugual\",\n  \"ugualmente\": \"ugual\",\n  \"uh\": \"uh\",\n  \"uias\": \"uias\",\n  \"uil\": \"uil\",\n  \"uilm\": \"uilm\",\n  \"uiltrasporti\": \"uiltrasport\",\n  \"ulcera\": \"ulcer\",\n  \"ulteriore\": \"ulterior\",\n  \"ulteriori\": \"ulterior\",\n  \"ulteriormente\": \"ulterior\",\n  \"ultim\": \"ultim\",\n  \"ultima\": \"ultim\",\n  \"ultimamente\": \"ultim\",\n  \"ultimativa\": \"ultim\",\n  \"ultime\": \"ultim\",\n  \"ultimi\": \"ultim\",\n  \"ultimo\": \"ultim\",\n  \"ultrà\": \"ultrà\",\n  \"ultranazionalista\": \"ultranazional\",\n  \"ultranovanmtenne\": \"ultranovanmtenn\",\n  \"ultras\": \"ultras\",\n  \"umana\": \"uman\",\n  \"umanamente\": \"uman\",\n  \"umane\": \"uman\",\n  \"umani\": \"uman\",\n  \"umanità\": \"uman\",\n  \"umanitari\": \"umanitar\",\n  \"umanitaria\": \"umanitar\",\n  \"umanitarià\": \"umanitar\",\n  \"umanitarie\": \"umanitar\",\n  \"umanitario\": \"umanitar\",\n  \"umano\": \"uman\",\n  \"umar\": \"umar\",\n  \"umberto\": \"umbert\",\n  \"umbra\": \"umbra\",\n  \"umbri\": \"umbri\",\n  \"umbria\": \"umbri\",\n  \"ume\": \"ume\",\n  \"umida\": \"umid\",\n  \"umidità\": \"umid\",\n  \"umido\": \"umid\",\n  \"umile\": \"umil\",\n  \"umili\": \"umil\",\n  \"umiliante\": \"umil\",\n  \"umiliare\": \"umil\",\n  \"umiliata\": \"umil\",\n  \"umiliati\": \"umil\",\n  \"umiliato\": \"umil\",\n  \"umiliazione\": \"umil\",\n  \"umiliazioni\": \"umil\",\n  \"umilmente\": \"umil\",\n  \"umiltà\": \"umilt\",\n  \"umore\": \"umor\",\n  \"umori\": \"umor\",\n  \"umorismo\": \"umor\",\n  \"umorista\": \"umor\",\n  \"un\": \"un\",\n  \"una\": \"una\",\n  \"unanime\": \"unanim\",\n  \"unanimismo\": \"unanim\",\n  \"unanimità\": \"unanim\",\n  \"unasca\": \"unasc\",\n  \"uncinate\": \"uncin\",\n  \"unctores\": \"unctores\",\n  \"undecimo\": \"undecim\",\n  \"under\": \"under\",\n  \"undicesimo\": \"undicesim\",\n  \"undici\": \"undic\",\n  \"une\": \"une\",\n  \"unendo\": \"unend\",\n  \"unge\": \"unge\",\n  \"ungendo\": \"ungend\",\n  \"unger\": \"unger\",\n  \"ungere\": \"unger\",\n  \"ungerò\": \"unger\",\n  \"ungherese\": \"ungheres\",\n  \"ungheresi\": \"ungheres\",\n  \"ungheria\": \"ungher\",\n  \"unghie\": \"unghi\",\n  \"ungili\": \"ungil\",\n  \"unguenta\": \"unguent\",\n  \"unguenti\": \"unguent\",\n  \"unguento\": \"unguent\",\n  \"unhcr\": \"unhcr\",\n  \"uni\": \"uni\",\n  \"unì\": \"unì\",\n  \"unica\": \"unic\",\n  \"unicamente\": \"unic\",\n  \"unicef\": \"unicef\",\n  \"unicem\": \"unicem\",\n  \"unici\": \"unic\",\n  \"unico\": \"unic\",\n  \"unificate\": \"unific\",\n  \"unificato\": \"unific\",\n  \"uniformarli\": \"uniform\",\n  \"uniformavano\": \"uniform\",\n  \"uniforme\": \"uniform\",\n  \"uniformità\": \"uniform\",\n  \"unilaterale\": \"unilateral\",\n  \"uninominale\": \"uninominal\",\n  \"uninominali\": \"uninominal\",\n  \"union\": \"union\",\n  \"unione\": \"union\",\n  \"unipi\": \"unip\",\n  \"unipol\": \"unipol\",\n  \"unire\": \"unir\",\n  \"unirsi\": \"unirs\",\n  \"unirvi\": \"unirv\",\n  \"unisce\": \"unisc\",\n  \"uniscono\": \"unisc\",\n  \"unita\": \"unit\",\n  \"unità\": \"unit\",\n  \"unitari\": \"unitar\",\n  \"unitaria\": \"unitar\",\n  \"unitarie\": \"unitar\",\n  \"unitarieta\": \"unitariet\",\n  \"unitarietà\": \"unitariet\",\n  \"unitario\": \"unitar\",\n  \"unite\": \"unit\",\n  \"united\": \"united\",\n  \"uniti\": \"unit\",\n  \"unitissimo\": \"unitissim\",\n  \"unito\": \"unit\",\n  \"univa\": \"univ\",\n  \"univano\": \"univ\",\n  \"universale\": \"universal\",\n  \"universali\": \"universal\",\n  \"universalità\": \"universal\",\n  \"università\": \"univers\",\n  \"universitaria\": \"universitar\",\n  \"university\": \"university\",\n  \"universo\": \"univers\",\n  \"unni\": \"unni\",\n  \"uno\": \"uno\",\n  \"unocal\": \"unocal\",\n  \"unosom\": \"unosom\",\n  \"unprofor\": \"unprofor\",\n  \"unr\": \"unr\",\n  \"unte\": \"unte\",\n  \"unti\": \"unti\",\n  \"unto\": \"unto\",\n  \"untor\": \"untor\",\n  \"untore\": \"untor\",\n  \"untorello\": \"untorell\",\n  \"untori\": \"untor\",\n  \"untumi\": \"untum\",\n  \"unzione\": \"unzion\",\n  \"unzioni\": \"unzion\",\n  \"uom\": \"uom\",\n  \"uomini\": \"uomin\",\n  \"uomo\": \"uom\",\n  \"uova\": \"uov\",\n  \"up\": \"up\",\n  \"uranio\": \"uran\",\n  \"urban\": \"urban\",\n  \"urbana\": \"urban\",\n  \"urbane\": \"urban\",\n  \"urbani\": \"urban\",\n  \"urbanistiche\": \"urbanist\",\n  \"urbano\": \"urban\",\n  \"urbe\": \"urbe\",\n  \"urbini\": \"urbin\",\n  \"urbis\": \"urbis\",\n  \"urgente\": \"urgent\",\n  \"urgenti\": \"urgent\",\n  \"urgenza\": \"urgenz\",\n  \"urgenze\": \"urgenz\",\n  \"urla\": \"urla\",\n  \"urlando\": \"urland\",\n  \"urlano\": \"urlan\",\n  \"urlare\": \"urlar\",\n  \"urlargli\": \"urlargl\",\n  \"urlato\": \"urlat\",\n  \"urlatori\": \"urlator\",\n  \"urlava\": \"urlav\",\n  \"urlavan\": \"urlavan\",\n  \"urlavano\": \"urlav\",\n  \"urli\": \"urli\",\n  \"urlìo\": \"urlì\",\n  \"urlo\": \"urlo\",\n  \"urlò\": \"urlò\",\n  \"urloni\": \"urlon\",\n  \"urna\": \"urna\",\n  \"urne\": \"urne\",\n  \"urrea\": \"urre\",\n  \"urso\": \"urso\",\n  \"urss\": \"urss\",\n  \"urtacchiando\": \"urtacc\",\n  \"urtando\": \"urtand\",\n  \"urtano\": \"urtan\",\n  \"urtar\": \"urtar\",\n  \"urtati\": \"urtat\",\n  \"urtato\": \"urtat\",\n  \"urti\": \"urti\",\n  \"urtone\": \"urton\",\n  \"urtoni\": \"urton\",\n  \"uruguaiano\": \"uruguai\",\n  \"usa\": \"usa\",\n  \"usan\": \"usan\",\n  \"usano\": \"usan\",\n  \"usanza\": \"usanz\",\n  \"usanze\": \"usanz\",\n  \"usar\": \"usar\",\n  \"usare\": \"usar\",\n  \"usarlo\": \"usarl\",\n  \"usarono\": \"usar\",\n  \"usarsi\": \"usars\",\n  \"usasse\": \"usass\",\n  \"usata\": \"usat\",\n  \"usate\": \"usat\",\n  \"usati\": \"usat\",\n  \"usato\": \"usat\",\n  \"usava\": \"usav\",\n  \"usavan\": \"usavan\",\n  \"usavano\": \"usav\",\n  \"uscendo\": \"uscend\",\n  \"uscente\": \"uscent\",\n  \"uscenti\": \"uscent\",\n  \"usci\": \"usci\",\n  \"uscì\": \"uscì\",\n  \"usciaccio\": \"usciacc\",\n  \"usciamo\": \"usciam\",\n  \"uscio\": \"usci\",\n  \"usciolino\": \"usciolin\",\n  \"uscir\": \"uscir\",\n  \"uscire\": \"uscir\",\n  \"uscirebbe\": \"uscirebb\",\n  \"usciremo\": \"uscirem\",\n  \"uscirne\": \"uscirn\",\n  \"usciron\": \"usciron\",\n  \"uscirono\": \"uscir\",\n  \"uscisse\": \"usciss\",\n  \"uscissero\": \"uscisser\",\n  \"uscita\": \"uscit\",\n  \"uscite\": \"uscit\",\n  \"usciti\": \"uscit\",\n  \"uscito\": \"uscit\",\n  \"usciva\": \"usciv\",\n  \"uscivan\": \"uscivan\",\n  \"uscivano\": \"usciv\",\n  \"uscivo\": \"usciv\",\n  \"usd\": \"usd\",\n  \"usi\": \"usi\",\n  \"usitato\": \"usit\",\n  \"usl\": \"usl\",\n  \"uso\": \"uso\",\n  \"usò\": \"usò\",\n  \"usppi\": \"usppi\",\n  \"usted\": \"usted\",\n  \"ustione\": \"ustion\",\n  \"usuale\": \"usual\",\n  \"usufruito\": \"usufru\",\n  \"usura\": \"usur\",\n  \"usurpare\": \"usurp\",\n  \"utensili\": \"utensil\",\n  \"utente\": \"utent\",\n  \"utenti\": \"utent\",\n  \"utenza\": \"utenz\",\n  \"utenze\": \"utenz\",\n  \"utile\": \"util\",\n  \"utili\": \"util\",\n  \"utilì\": \"util\",\n  \"utilità\": \"util\",\n  \"utilizza\": \"utilizz\",\n  \"utilizzando\": \"utilizz\",\n  \"utilizzandole\": \"utilizz\",\n  \"utilizzano\": \"utilizz\",\n  \"utilizzare\": \"utilizz\",\n  \"utilizzata\": \"utilizz\",\n  \"utilizzate\": \"utilizz\",\n  \"utilizzati\": \"utilizz\",\n  \"utilizzato\": \"utilizz\",\n  \"utilizzazione\": \"utilizz\",\n  \"utilizzerà\": \"utilizz\",\n  \"utilizzi\": \"utilizz\",\n  \"utilizzo\": \"utilizz\",\n  \"utri\": \"utri\",\n  \"uva\": \"uva\",\n  \"uve\": \"uve\",\n  \"uxoricida\": \"uxoricid\",\n  \"v\": \"v\",\n  \"va\": \"va\",\n  \"vacanza\": \"vacanz\",\n  \"vacanze\": \"vacanz\",\n  \"vacato\": \"vac\",\n  \"vaccaro\": \"vaccar\",\n  \"vaccherella\": \"vaccherell\",\n  \"vaccherelle\": \"vaccherell\",\n  \"vacchetta\": \"vacchett\",\n  \"vaccino\": \"vaccin\",\n  \"vacek\": \"vacek\",\n  \"vada\": \"vad\",\n  \"vadano\": \"vad\",\n  \"vado\": \"vad\",\n  \"vaga\": \"vag\",\n  \"vagabonda\": \"vagabond\",\n  \"vagabondi\": \"vagabond\",\n  \"vagabondo\": \"vagabond\",\n  \"vagando\": \"vag\",\n  \"vagano\": \"vag\",\n  \"vagante\": \"vagant\",\n  \"vaganti\": \"vagant\",\n  \"vagar\": \"vag\",\n  \"vagheggiare\": \"vaghegg\",\n  \"vagheggiato\": \"vaghegg\",\n  \"vagiti\": \"vag\",\n  \"vagito\": \"vag\",\n  \"vaglia\": \"vagl\",\n  \"vagliata\": \"vagl\",\n  \"vagliensteino\": \"vaglienstein\",\n  \"vaglion\": \"vaglion\",\n  \"vagoni\": \"vagon\",\n  \"vai\": \"vai\",\n  \"vaiano\": \"vai\",\n  \"vaio\": \"vai\",\n  \"vaivada\": \"vaivad\",\n  \"val\": \"val\",\n  \"valdagno\": \"valdagn\",\n  \"valdes\": \"valdes\",\n  \"valdistano\": \"valdist\",\n  \"valdo\": \"vald\",\n  \"valdostana\": \"valdostan\",\n  \"valdostano\": \"valdost\",\n  \"vale\": \"val\",\n  \"valente\": \"valent\",\n  \"valenti\": \"valent\",\n  \"valentia\": \"valent\",\n  \"valentina\": \"valentin\",\n  \"valentini\": \"valentin\",\n  \"valentino\": \"valentin\",\n  \"valentuomini\": \"valentuomin\",\n  \"valenza\": \"valenz\",\n  \"valere\": \"val\",\n  \"valeria\": \"valer\",\n  \"valeriano\": \"valer\",\n  \"valerio\": \"valer\",\n  \"valersi\": \"val\",\n  \"valesse\": \"valess\",\n  \"valessero\": \"val\",\n  \"valeva\": \"val\",\n  \"valevan\": \"valevan\",\n  \"valevano\": \"val\",\n  \"valga\": \"valg\",\n  \"valgono\": \"valg\",\n  \"vali\": \"val\",\n  \"valichi\": \"valic\",\n  \"valico\": \"valic\",\n  \"valida\": \"valid\",\n  \"validi\": \"valid\",\n  \"validità\": \"valid\",\n  \"valido\": \"valid\",\n  \"valinotti\": \"valinott\",\n  \"valle\": \"vall\",\n  \"valletta\": \"vallett\",\n  \"valley\": \"valley\",\n  \"valli\": \"vall\",\n  \"valligiani\": \"valligian\",\n  \"vallistai\": \"vallista\",\n  \"valloncelli\": \"valloncell\",\n  \"vallone\": \"vallon\",\n  \"valobra\": \"valobr\",\n  \"valore\": \"valor\",\n  \"valori\": \"valor\",\n  \"valorizza\": \"valorizz\",\n  \"valorizzare\": \"valorizz\",\n  \"valorizzazione\": \"valorizz\",\n  \"valorizzeranno\": \"valorizz\",\n  \"valoti\": \"valot\",\n  \"valsassina\": \"valsassin\",\n  \"valse\": \"vals\",\n  \"valsero\": \"valser\",\n  \"valtellina\": \"valtellin\",\n  \"valtellinese\": \"valtellines\",\n  \"valtrompia\": \"valtromp\",\n  \"valuta\": \"val\",\n  \"valutando\": \"valut\",\n  \"valutar\": \"valut\",\n  \"valutare\": \"valut\",\n  \"valutari\": \"valutar\",\n  \"valutaria\": \"valutar\",\n  \"valutarie\": \"valutar\",\n  \"valutario\": \"valutar\",\n  \"valutata\": \"valut\",\n  \"valutate\": \"valut\",\n  \"valutato\": \"valut\",\n  \"valutazione\": \"valut\",\n  \"valutazioni\": \"valut\",\n  \"valute\": \"val\",\n  \"vampiro\": \"vampir\",\n  \"van\": \"van\",\n  \"vana\": \"van\",\n  \"vancouver\": \"vancouver\",\n  \"vandalismo\": \"vandal\",\n  \"vandalo\": \"vandal\",\n  \"vandernoot\": \"vandernoot\",\n  \"vane\": \"van\",\n  \"vaneggiamenti\": \"vanegg\",\n  \"vaneggiamento\": \"vanegg\",\n  \"vanga\": \"vang\",\n  \"vangelo\": \"vangel\",\n  \"vanghe\": \"vang\",\n  \"vangile\": \"vangil\",\n  \"vanguardia\": \"vanguard\",\n  \"vani\": \"van\",\n  \"vanificare\": \"vanific\",\n  \"vanificati\": \"vanific\",\n  \"vanificato\": \"vanific\",\n  \"vanigli\": \"vanigl\",\n  \"vanità\": \"vanit\",\n  \"vanni\": \"vann\",\n  \"vannino\": \"vannin\",\n  \"vanno\": \"vann\",\n  \"vannoni\": \"vannon\",\n  \"vano\": \"van\",\n  \"vanoli\": \"vanol\",\n  \"vanta\": \"vant\",\n  \"vantaggi\": \"vantagg\",\n  \"vantaggio\": \"vantagg\",\n  \"vantaggioso\": \"vantagg\",\n  \"vantano\": \"vant\",\n  \"vantarmi\": \"vant\",\n  \"vantarsene\": \"vant\",\n  \"vantarsi\": \"vant\",\n  \"vantati\": \"vant\",\n  \"vantato\": \"vant\",\n  \"vanto\": \"vant\",\n  \"vapori\": \"vapor\",\n  \"var\": \"var\",\n  \"varare\": \"var\",\n  \"varate\": \"var\",\n  \"varato\": \"var\",\n  \"varcata\": \"varc\",\n  \"varcato\": \"varc\",\n  \"varchi\": \"varc\",\n  \"varda\": \"vard\",\n  \"varerà\": \"var\",\n  \"varese\": \"vares\",\n  \"varesina\": \"varesin\",\n  \"varesotto\": \"varesott\",\n  \"vari\": \"var\",\n  \"varia\": \"var\",\n  \"variabile\": \"variabil\",\n  \"variabili\": \"variabil\",\n  \"variandosi\": \"var\",\n  \"variante\": \"variant\",\n  \"varianti\": \"variant\",\n  \"variata\": \"var\",\n  \"variato\": \"var\",\n  \"variava\": \"var\",\n  \"variavano\": \"var\",\n  \"variazione\": \"variazion\",\n  \"variazioni\": \"variazion\",\n  \"varie\": \"var\",\n  \"variegato\": \"varieg\",\n  \"varietà\": \"variet\",\n  \"varietali\": \"varietal\",\n  \"varii\": \"var\",\n  \"vario\": \"var\",\n  \"variopinti\": \"variopint\",\n  \"varo\": \"var\",\n  \"varrebbe\": \"varrebb\",\n  \"varrone\": \"varron\",\n  \"varsavia\": \"varsav\",\n  \"vasari\": \"vasar\",\n  \"vasca\": \"vasc\",\n  \"vascello\": \"vascell\",\n  \"vasco\": \"vasc\",\n  \"vasetto\": \"vasett\",\n  \"vash\": \"vash\",\n  \"vasi\": \"vas\",\n  \"vaso\": \"vas\",\n  \"vassallesco\": \"vassallesc\",\n  \"vassalli\": \"vassall\",\n  \"vasta\": \"vast\",\n  \"vaste\": \"vast\",\n  \"vastese\": \"vastes\",\n  \"vasti\": \"vast\",\n  \"vastissima\": \"vastissim\",\n  \"vastità\": \"vastit\",\n  \"vasto\": \"vast\",\n  \"vaticana\": \"vatican\",\n  \"vaticano\": \"vatic\",\n  \"vaticinare\": \"vaticin\",\n  \"vattene\": \"vatten\",\n  \"vattenfall\": \"vattenfall\",\n  \"vazquez\": \"vazquez\",\n  \"vd\": \"vd\",\n  \"vdovin\": \"vdovin\",\n  \"ve\": \"ve\",\n  \"vecce\": \"vecc\",\n  \"vecchi\": \"vecc\",\n  \"vecchia\": \"vecc\",\n  \"vecchie\": \"vecc\",\n  \"vecchiezza\": \"vecchiezz\",\n  \"vecchio\": \"vecc\",\n  \"vecchione\": \"vecchion\",\n  \"vece\": \"vec\",\n  \"veci\": \"vec\",\n  \"veda\": \"ved\",\n  \"vedano\": \"ved\",\n  \"vede\": \"ved\",\n  \"vedendo\": \"ved\",\n  \"vedendola\": \"ved\",\n  \"vedendoli\": \"ved\",\n  \"vedendolo\": \"ved\",\n  \"vedendomi\": \"ved\",\n  \"vedendoseli\": \"vedendosel\",\n  \"vedendosi\": \"ved\",\n  \"vedendovi\": \"ved\",\n  \"veder\": \"veder\",\n  \"vederanno\": \"ved\",\n  \"vederci\": \"ved\",\n  \"vedere\": \"ved\",\n  \"vedergli\": \"ved\",\n  \"vederla\": \"ved\",\n  \"vederle\": \"ved\",\n  \"vederli\": \"ved\",\n  \"vederlo\": \"ved\",\n  \"vederne\": \"ved\",\n  \"vedersela\": \"vedersel\",\n  \"vedersene\": \"ved\",\n  \"vedersi\": \"ved\",\n  \"vederti\": \"ved\",\n  \"vedervi\": \"ved\",\n  \"vedesse\": \"vedess\",\n  \"vedessero\": \"ved\",\n  \"vedessi\": \"vedess\",\n  \"vedeste\": \"vedest\",\n  \"vedete\": \"ved\",\n  \"vedettà\": \"vedett\",\n  \"vedeva\": \"ved\",\n  \"vedevamo\": \"ved\",\n  \"vedevan\": \"vedevan\",\n  \"vedevano\": \"ved\",\n  \"vedi\": \"ved\",\n  \"vediamo\": \"ved\",\n  \"vediate\": \"ved\",\n  \"vedo\": \"ved\",\n  \"vedon\": \"vedon\",\n  \"vedono\": \"ved\",\n  \"vedova\": \"vedov\",\n  \"vedrà\": \"vedr\",\n  \"vedrai\": \"vedra\",\n  \"vedranno\": \"vedrann\",\n  \"vedrebbe\": \"vedrebb\",\n  \"vedrebbero\": \"vedrebber\",\n  \"vedremo\": \"vedrem\",\n  \"vedrete\": \"vedr\",\n  \"vedrò\": \"vedr\",\n  \"veduta\": \"ved\",\n  \"vedute\": \"ved\",\n  \"veduti\": \"ved\",\n  \"veduto\": \"ved\",\n  \"veemente\": \"veement\",\n  \"veemenza\": \"veemenz\",\n  \"vega\": \"veg\",\n  \"vegetariana\": \"vegetarian\",\n  \"vegetazione\": \"veget\",\n  \"veglia\": \"vegl\",\n  \"vegliar\": \"vegl\",\n  \"vegliardo\": \"vegliard\",\n  \"vegliare\": \"vegl\",\n  \"vegliasse\": \"vegl\",\n  \"vegliato\": \"vegl\",\n  \"vegliava\": \"vegl\",\n  \"vegliavano\": \"vegl\",\n  \"vegliavo\": \"vegl\",\n  \"veglie\": \"vegl\",\n  \"veicoli\": \"veicol\",\n  \"veicolo\": \"veicol\",\n  \"veivoli\": \"veivol\",\n  \"vel\": \"vel\",\n  \"vela\": \"vel\",\n  \"velar\": \"vel\",\n  \"velasco\": \"velasc\",\n  \"velata\": \"vel\",\n  \"velate\": \"vel\",\n  \"velato\": \"vel\",\n  \"vele\": \"vel\",\n  \"veleni\": \"velen\",\n  \"veleno\": \"velen\",\n  \"velenosa\": \"velen\",\n  \"velenosi\": \"velen\",\n  \"velette\": \"velett\",\n  \"veli\": \"vel\",\n  \"veliconi\": \"velicon\",\n  \"velika\": \"velik\",\n  \"velivoli\": \"velivol\",\n  \"velivolo\": \"velivol\",\n  \"velletri\": \"velletr\",\n  \"velluto\": \"vell\",\n  \"velo\": \"vel\",\n  \"veloce\": \"veloc\",\n  \"velocemente\": \"veloc\",\n  \"velocissima\": \"velocissim\",\n  \"velocista\": \"veloc\",\n  \"velocità\": \"veloc\",\n  \"velocizzare\": \"velocizz\",\n  \"velodromo\": \"velodrom\",\n  \"velotti\": \"velott\",\n  \"veltroni\": \"veltron\",\n  \"veluti\": \"vel\",\n  \"vena\": \"ven\",\n  \"vende\": \"vend\",\n  \"vendemmia\": \"vendemm\",\n  \"vender\": \"vender\",\n  \"venderà\": \"vend\",\n  \"vendere\": \"vend\",\n  \"vendersene\": \"vend\",\n  \"vendersi\": \"vend\",\n  \"vendessero\": \"vend\",\n  \"vendetta\": \"vendett\",\n  \"vendette\": \"vendett\",\n  \"vendeva\": \"vend\",\n  \"vendevano\": \"vend\",\n  \"vendicarsi\": \"vendic\",\n  \"vendicati\": \"vendic\",\n  \"vendicativo\": \"vendic\",\n  \"vendicatore\": \"vendic\",\n  \"vendicava\": \"vendic\",\n  \"vendita\": \"vend\",\n  \"vendite\": \"vend\",\n  \"venditori\": \"venditor\",\n  \"venduta\": \"vend\",\n  \"vendute\": \"vend\",\n  \"venduti\": \"vend\",\n  \"vendutì\": \"vendut\",\n  \"venduto\": \"vend\",\n  \"vene\": \"ven\",\n  \"venefica\": \"venef\",\n  \"venefiche\": \"venef\",\n  \"venefici\": \"venef\",\n  \"venefico\": \"venef\",\n  \"venefizio\": \"venefiz\",\n  \"venendo\": \"ven\",\n  \"venendogli\": \"ven\",\n  \"veneno\": \"venen\",\n  \"venerabil\": \"venerabil\",\n  \"venerabile\": \"vener\",\n  \"venerato\": \"vener\",\n  \"venerazione\": \"vener\",\n  \"venerdi\": \"venerd\",\n  \"venerdì\": \"venerd\",\n  \"venere\": \"ven\",\n  \"veneta\": \"venet\",\n  \"veneti\": \"venet\",\n  \"venetì\": \"venet\",\n  \"veneto\": \"venet\",\n  \"venetoblue\": \"venetoblu\",\n  \"venetocapital\": \"venetocapital\",\n  \"venetocash\": \"venetocash\",\n  \"venetorend\": \"venetorend\",\n  \"venetoventure\": \"venetoventur\",\n  \"venezia\": \"venez\",\n  \"veneziani\": \"venezian\",\n  \"veneziano\": \"venez\",\n  \"venezuela\": \"venezuel\",\n  \"venezuelano\": \"venezuel\",\n  \"venga\": \"veng\",\n  \"vengan\": \"vengan\",\n  \"vengano\": \"veng\",\n  \"vengo\": \"veng\",\n  \"vengon\": \"vengon\",\n  \"vengono\": \"veng\",\n  \"veniate\": \"ven\",\n  \"venir\": \"ven\",\n  \"venircela\": \"ven\",\n  \"venirci\": \"ven\",\n  \"venire\": \"ven\",\n  \"venireinchinò\": \"venireinchin\",\n  \"venirgli\": \"ven\",\n  \"venirle\": \"ven\",\n  \"venirlo\": \"ven\",\n  \"venirne\": \"ven\",\n  \"venirsi\": \"ven\",\n  \"venirvi\": \"ven\",\n  \"venisse\": \"veniss\",\n  \"venissero\": \"ven\",\n  \"venite\": \"ven\",\n  \"venitemi\": \"venitem\",\n  \"veniva\": \"ven\",\n  \"venivamo\": \"ven\",\n  \"venivan\": \"venivan\",\n  \"venivano\": \"ven\",\n  \"venivo\": \"ven\",\n  \"venne\": \"venn\",\n  \"venner\": \"venner\",\n  \"vennero\": \"venner\",\n  \"venosa\": \"venos\",\n  \"vent\": \"vent\",\n  \"ventaglio\": \"ventagl\",\n  \"ventata\": \"vent\",\n  \"ventenne\": \"ventenn\",\n  \"ventennio\": \"ventenn\",\n  \"venti\": \"vent\",\n  \"venticello\": \"venticell\",\n  \"venticinque\": \"venticinqu\",\n  \"ventidue\": \"ventidu\",\n  \"ventilata\": \"ventil\",\n  \"ventilati\": \"ventil\",\n  \"ventimila\": \"ventimil\",\n  \"ventina\": \"ventin\",\n  \"ventiquattro\": \"ventiquattr\",\n  \"ventisei\": \"ventise\",\n  \"ventisette\": \"ventisett\",\n  \"ventitre\": \"ventitr\",\n  \"vento\": \"vent\",\n  \"ventre\": \"ventr\",\n  \"ventriloqua\": \"ventriloqu\",\n  \"ventriloquo\": \"ventriloqu\",\n  \"ventura\": \"ventur\",\n  \"venture\": \"ventur\",\n  \"ventures\": \"ventures\",\n  \"venturin\": \"venturin\",\n  \"venturo\": \"ventur\",\n  \"venturoni\": \"venturon\",\n  \"venuta\": \"ven\",\n  \"venutagli\": \"venutagl\",\n  \"venutale\": \"venutal\",\n  \"venutasi\": \"venutas\",\n  \"venute\": \"ven\",\n  \"venuti\": \"ven\",\n  \"venuto\": \"ven\",\n  \"ver\": \"ver\",\n  \"vera\": \"ver\",\n  \"verace\": \"verac\",\n  \"veracruz\": \"veracruz\",\n  \"veramente\": \"ver\",\n  \"verbale\": \"verbal\",\n  \"verbali\": \"verbal\",\n  \"verbo\": \"verb\",\n  \"vercelli\": \"vercell\",\n  \"verde\": \"verd\",\n  \"verdè\": \"verd\",\n  \"verdecupi\": \"verdecup\",\n  \"verdettò\": \"verdett\",\n  \"verdi\": \"verd\",\n  \"verdure\": \"verdur\",\n  \"vere\": \"ver\",\n  \"verecondia\": \"verecond\",\n  \"vergani\": \"vergan\",\n  \"verginale\": \"verginal\",\n  \"verginali\": \"verginal\",\n  \"vergine\": \"vergin\",\n  \"verginità\": \"vergin\",\n  \"vergogna\": \"vergogn\",\n  \"vergognandosi\": \"vergogn\",\n  \"vergognassero\": \"vergogn\",\n  \"vergognava\": \"vergogn\",\n  \"vergognosa\": \"vergogn\",\n  \"vergognosi\": \"vergogn\",\n  \"vergognoso\": \"vergogn\",\n  \"veri\": \"ver\",\n  \"verifi\": \"verif\",\n  \"verifica\": \"verif\",\n  \"verificar\": \"verific\",\n  \"verificare\": \"verific\",\n  \"verificarsi\": \"verific\",\n  \"verificate\": \"verific\",\n  \"verificatesi\": \"verificates\",\n  \"verificati\": \"verific\",\n  \"verificato\": \"verific\",\n  \"verificatore\": \"verif\",\n  \"verificatori\": \"verif\",\n  \"verificatosi\": \"verificat\",\n  \"verifiche\": \"verif\",\n  \"verificheremo\": \"verific\",\n  \"verifichi\": \"verif\",\n  \"verifichino\": \"verifichin\",\n  \"verisimile\": \"verisimil\",\n  \"verita\": \"ver\",\n  \"verità\": \"verit\",\n  \"verlag\": \"verlag\",\n  \"verlanti\": \"verlant\",\n  \"verme\": \"verm\",\n  \"vermigli\": \"vermigl\",\n  \"vermiglie\": \"vermigl\",\n  \"vermiglio\": \"vermigl\",\n  \"vernaccia\": \"vernacc\",\n  \"vernì\": \"vern\",\n  \"vernice\": \"vernic\",\n  \"vero\": \"ver\",\n  \"verona\": \"veron\",\n  \"veronese\": \"verones\",\n  \"veronica\": \"veron\",\n  \"verosimile\": \"verosimil\",\n  \"verrà\": \"verr\",\n  \"verrai\": \"verra\",\n  \"verranno\": \"verrann\",\n  \"verrebbe\": \"verrebb\",\n  \"verrebbero\": \"verrebber\",\n  \"verrei\": \"verre\",\n  \"verremo\": \"verrem\",\n  \"verri\": \"verr\",\n  \"verrò\": \"verr\",\n  \"versacci\": \"versacc\",\n  \"versaccio\": \"versacc\",\n  \"versamenti\": \"vers\",\n  \"versamento\": \"vers\",\n  \"versante\": \"versant\",\n  \"versanti\": \"versant\",\n  \"versare\": \"vers\",\n  \"versati\": \"vers\",\n  \"versatile\": \"versatil\",\n  \"versato\": \"vers\",\n  \"versetti\": \"versett\",\n  \"versetto\": \"versett\",\n  \"versi\": \"vers\",\n  \"versilia\": \"versil\",\n  \"versione\": \"version\",\n  \"verso\": \"vers\",\n  \"vert\": \"vert\",\n  \"vertenza\": \"vertenz\",\n  \"vertenze\": \"vertenz\",\n  \"verticale\": \"vertical\",\n  \"verticalizzato\": \"verticalizz\",\n  \"verticalmente\": \"vertical\",\n  \"vertice\": \"vertic\",\n  \"vertici\": \"vertic\",\n  \"verticistica\": \"verticist\",\n  \"verum\": \"verum\",\n  \"verun\": \"verun\",\n  \"veruna\": \"verun\",\n  \"verzura\": \"verzur\",\n  \"ves\": \"ves\",\n  \"vescovi\": \"vescov\",\n  \"vescovo\": \"vescov\",\n  \"vespa\": \"vesp\",\n  \"vespaio\": \"vespai\",\n  \"vespucci\": \"vespucc\",\n  \"vessare\": \"vess\",\n  \"vessato\": \"vess\",\n  \"vessazione\": \"vessazion\",\n  \"vessazioni\": \"vessazion\",\n  \"vessillo\": \"vessill\",\n  \"vesta\": \"vest\",\n  \"veste\": \"vest\",\n  \"vestendo\": \"vest\",\n  \"vestendolo\": \"vest\",\n  \"vesti\": \"vest\",\n  \"vestì\": \"vest\",\n  \"vestiario\": \"vestiar\",\n  \"vestigi\": \"vestig\",\n  \"vestigio\": \"vestig\",\n  \"vestigios\": \"vestigios\",\n  \"vestimento\": \"vest\",\n  \"vestir\": \"vest\",\n  \"vestire\": \"vest\",\n  \"vestirsi\": \"vest\",\n  \"vestita\": \"vest\",\n  \"vestite\": \"vest\",\n  \"vestitevi\": \"vestit\",\n  \"vestiti\": \"vest\",\n  \"vestito\": \"vest\",\n  \"vestitosi\": \"vestit\",\n  \"vestiva\": \"vest\",\n  \"vestizione\": \"vestizion\",\n  \"vesto\": \"vest\",\n  \"veterani\": \"veteran\",\n  \"veterinario\": \"veterinar\",\n  \"vetr\": \"vetr\",\n  \"vetrate\": \"vetr\",\n  \"vetri\": \"vetr\",\n  \"vetriate\": \"vetr\",\n  \"vetro\": \"vetr\",\n  \"vetta\": \"vett\",\n  \"vetticciola\": \"vetticciol\",\n  \"vettovagliar\": \"vettovagl\",\n  \"vettura\": \"vettur\",\n  \"vetture\": \"vettur\",\n  \"vezù\": \"vezù\",\n  \"vezzo\": \"vezz\",\n  \"vg\": \"vg\",\n  \"vi\": \"vi\",\n  \"via\": \"via\",\n  \"viadana\": \"viadan\",\n  \"viaggetto\": \"viaggett\",\n  \"viaggi\": \"viagg\",\n  \"viaggia\": \"viagg\",\n  \"viaggiano\": \"viagg\",\n  \"viaggiar\": \"viagg\",\n  \"viaggiare\": \"viagg\",\n  \"viaggiatore\": \"viaggiator\",\n  \"viaggiatori\": \"viaggiator\",\n  \"viaggiava\": \"viagg\",\n  \"viaggiavano\": \"viagg\",\n  \"viaggio\": \"viagg\",\n  \"viale\": \"vial\",\n  \"viali\": \"vial\",\n  \"vialli\": \"viall\",\n  \"viamare\": \"viam\",\n  \"viandante\": \"viandant\",\n  \"viandanti\": \"viandant\",\n  \"vianello\": \"vianell\",\n  \"vianini\": \"vianin\",\n  \"viareggina\": \"viareggin\",\n  \"viareggini\": \"viareggin\",\n  \"viareggio\": \"viaregg\",\n  \"viatico\": \"viatic\",\n  \"vibici\": \"vibic\",\n  \"vibo\": \"vib\",\n  \"vibrante\": \"vibrant\",\n  \"vicario\": \"vicar\",\n  \"vice\": \"vic\",\n  \"viceallenatore\": \"viceallen\",\n  \"vicecaposervizio\": \"vicecaposerviz\",\n  \"vicecomandante\": \"vicecomand\",\n  \"vicedirettore\": \"vicedirettor\",\n  \"vicenda\": \"vic\",\n  \"vicende\": \"vic\",\n  \"vicendevole\": \"vicendevol\",\n  \"vicendevoli\": \"vicendevol\",\n  \"vicendevolmente\": \"vicendevol\",\n  \"vicente\": \"vicent\",\n  \"vicentina\": \"vicentin\",\n  \"vicentini\": \"vicentin\",\n  \"vicentino\": \"vicentin\",\n  \"vicenza\": \"vicenz\",\n  \"vicepresidente\": \"vicepresident\",\n  \"viceprimo\": \"viceprim\",\n  \"vicerè\": \"vicer\",\n  \"vicesegretario\": \"vicesegretar\",\n  \"viceversa\": \"vicevers\",\n  \"vicina\": \"vicin\",\n  \"vicinanza\": \"vicin\",\n  \"vicinato\": \"vicin\",\n  \"vicine\": \"vicin\",\n  \"vicini\": \"vicin\",\n  \"vicino\": \"vicin\",\n  \"vicki\": \"vick\",\n  \"vicky\": \"vicky\",\n  \"vico\": \"vic\",\n  \"vicoforte\": \"vicofort\",\n  \"vicolo\": \"vicol\",\n  \"victoria\": \"victor\",\n  \"vida\": \"vid\",\n  \"vide\": \"vid\",\n  \"videlizet\": \"videlizet\",\n  \"videntur\": \"videntur\",\n  \"video\": \"vide\",\n  \"vider\": \"vider\",\n  \"videro\": \"vider\",\n  \"vidi\": \"vid\",\n  \"vidit\": \"vidit\",\n  \"vido\": \"vid\",\n  \"vidù\": \"vidù\",\n  \"vie\": \"vie\",\n  \"vien\": \"vien\",\n  \"viene\": \"vien\",\n  \"vieni\": \"vien\",\n  \"vienna\": \"vienn\",\n  \"vierchowod\": \"vierchowod\",\n  \"vieri\": \"vier\",\n  \"vieta\": \"viet\",\n  \"vietate\": \"viet\",\n  \"vietati\": \"viet\",\n  \"vietato\": \"viet\",\n  \"viezzoli\": \"viezzol\",\n  \"vigente\": \"vigent\",\n  \"vigilano\": \"vigil\",\n  \"vigilante\": \"vigil\",\n  \"vigilantes\": \"vigilantes\",\n  \"vigilanza\": \"vigil\",\n  \"vigilar\": \"vigil\",\n  \"vigile\": \"vigil\",\n  \"vigili\": \"vigil\",\n  \"vigilia\": \"vigil\",\n  \"vigliacchi\": \"vigliacc\",\n  \"vigna\": \"vign\",\n  \"vignati\": \"vign\",\n  \"vigne\": \"vign\",\n  \"vigneti\": \"vignet\",\n  \"vignetta\": \"vignett\",\n  \"vignini\": \"vignin\",\n  \"vigore\": \"vigor\",\n  \"vigorelli\": \"vigorell\",\n  \"vigorosa\": \"vigor\",\n  \"vigorosamente\": \"vigor\",\n  \"vigoroso\": \"vigor\",\n  \"viii\": \"vii\",\n  \"viktor\": \"viktor\",\n  \"vil\": \"vil\",\n  \"vile\": \"vil\",\n  \"vili\": \"vil\",\n  \"vilipendio\": \"vilipend\",\n  \"vilipesa\": \"vilipes\",\n  \"villa\": \"vill\",\n  \"villafranca\": \"villafranc\",\n  \"village\": \"villag\",\n  \"villaggi\": \"villagg\",\n  \"villaggio\": \"villagg\",\n  \"villagigo\": \"villagig\",\n  \"villana\": \"villan\",\n  \"villanaccio\": \"villanacc\",\n  \"villanelle\": \"villanell\",\n  \"villani\": \"villan\",\n  \"villanià\": \"villan\",\n  \"villanie\": \"villan\",\n  \"villano\": \"vill\",\n  \"ville\": \"vill\",\n  \"villeggianti\": \"villegg\",\n  \"villeggiare\": \"villegg\",\n  \"villeggiatura\": \"villeggiatur\",\n  \"villeggiature\": \"villeggiatur\",\n  \"villeggiava\": \"villegg\",\n  \"villorba\": \"villorb\",\n  \"vilmente\": \"vilment\",\n  \"viltà\": \"vilt\",\n  \"vilucchioni\": \"vilucchion\",\n  \"vimercati\": \"vimerc\",\n  \"vin\": \"vin\",\n  \"vince\": \"vinc\",\n  \"vincendone\": \"vinc\",\n  \"vincent\": \"vincent\",\n  \"vincente\": \"vincent\",\n  \"vincenzo\": \"vincenz\",\n  \"vincer\": \"vincer\",\n  \"vincerà\": \"vinc\",\n  \"vincere\": \"vinc\",\n  \"vinceremo\": \"vinc\",\n  \"vincerla\": \"vinc\",\n  \"vincerlo\": \"vinc\",\n  \"vinceva\": \"vinc\",\n  \"vinci\": \"vinc\",\n  \"vinciate\": \"vinc\",\n  \"vincitore\": \"vincitor\",\n  \"vincitori\": \"vincitor\",\n  \"vincolare\": \"vincol\",\n  \"vincolati\": \"vincol\",\n  \"vincoli\": \"vincol\",\n  \"vincono\": \"vinc\",\n  \"vinee\": \"vine\",\n  \"vini\": \"vin\",\n  \"vino\": \"vin\",\n  \"vinse\": \"vins\",\n  \"vinsero\": \"vinser\",\n  \"vinta\": \"vint\",\n  \"vinti\": \"vint\",\n  \"vinto\": \"vint\",\n  \"viola\": \"viol\",\n  \"violabile\": \"violabil\",\n  \"violabilissimo\": \"violabilissim\",\n  \"violacei\": \"violace\",\n  \"violante\": \"violant\",\n  \"violare\": \"viol\",\n  \"violato\": \"viol\",\n  \"violazione\": \"violazion\",\n  \"violazioni\": \"violazion\",\n  \"violenta\": \"violent\",\n  \"violente\": \"violent\",\n  \"violentemente\": \"violent\",\n  \"violenti\": \"violent\",\n  \"violento\": \"violent\",\n  \"violenza\": \"violenz\",\n  \"violenze\": \"violenz\",\n  \"viottola\": \"viottol\",\n  \"viottole\": \"viottol\",\n  \"vip\": \"vip\",\n  \"virale\": \"viral\",\n  \"virdò\": \"vird\",\n  \"virginia\": \"virgin\",\n  \"virgole\": \"virgol\",\n  \"virgolettato\": \"virgolett\",\n  \"virgolette\": \"virgolett\",\n  \"virile\": \"viril\",\n  \"virilità\": \"viril\",\n  \"virtu\": \"virtu\",\n  \"virtù\": \"virtù\",\n  \"virtuale\": \"virtual\",\n  \"virtuosamente\": \"virtuos\",\n  \"virtuose\": \"virtuos\",\n  \"virtuosi\": \"virtuos\",\n  \"virtuoso\": \"virtuos\",\n  \"vis\": \"vis\",\n  \"visacci\": \"visacc\",\n  \"visaccio\": \"visacc\",\n  \"viscere\": \"visc\",\n  \"visco\": \"visc\",\n  \"visconteo\": \"visconte\",\n  \"visconti\": \"viscont\",\n  \"visere\": \"vis\",\n  \"visi\": \"vis\",\n  \"visibile\": \"visibil\",\n  \"visibili\": \"visibil\",\n  \"visibilio\": \"visibil\",\n  \"visibilità\": \"visibil\",\n  \"visibilmente\": \"visibil\",\n  \"visiera\": \"visier\",\n  \"visino\": \"visin\",\n  \"visione\": \"vision\",\n  \"visioni\": \"vision\",\n  \"visita\": \"vis\",\n  \"visitando\": \"visit\",\n  \"visitar\": \"visit\",\n  \"visitare\": \"visit\",\n  \"visitarli\": \"visit\",\n  \"visitarono\": \"visit\",\n  \"visitassero\": \"visit\",\n  \"visitate\": \"visit\",\n  \"visitato\": \"visit\",\n  \"visitatori\": \"visit\",\n  \"visitava\": \"visit\",\n  \"visitavano\": \"visit\",\n  \"visite\": \"vis\",\n  \"visitò\": \"visit\",\n  \"viso\": \"vis\",\n  \"visoni\": \"vison\",\n  \"vispo\": \"visp\",\n  \"visse\": \"viss\",\n  \"vissero\": \"visser\",\n  \"vissuta\": \"viss\",\n  \"vissuto\": \"viss\",\n  \"vista\": \"vist\",\n  \"vistala\": \"vistal\",\n  \"viste\": \"vist\",\n  \"visti\": \"vist\",\n  \"visto\": \"vist\",\n  \"vistolo\": \"vistol\",\n  \"vistose\": \"vistos\",\n  \"vistoselo\": \"vistosel\",\n  \"vistosi\": \"vistos\",\n  \"vistoso\": \"vistos\",\n  \"viswanathan\": \"viswanathan\",\n  \"vita\": \"vit\",\n  \"vità\": \"vit\",\n  \"vitale\": \"vital\",\n  \"vitali\": \"vital\",\n  \"vitalità\": \"vital\",\n  \"vite\": \"vit\",\n  \"viti\": \"vit\",\n  \"viticci\": \"viticc\",\n  \"vitiello\": \"vitiell\",\n  \"vito\": \"vit\",\n  \"vittima\": \"vittim\",\n  \"vittime\": \"vittim\",\n  \"vitto\": \"vitt\",\n  \"vittore\": \"vittor\",\n  \"vittoria\": \"vittor\",\n  \"vittorie\": \"vittor\",\n  \"vittorio\": \"vittor\",\n  \"vittoriosa\": \"vittor\",\n  \"vituperato\": \"vituper\",\n  \"vituperosa\": \"vituper\",\n  \"viuzza\": \"viuzz\",\n  \"viva\": \"viv\",\n  \"vivace\": \"vivac\",\n  \"vivaci\": \"vivac\",\n  \"vivacità\": \"vivac\",\n  \"vivacizzato\": \"vivacizz\",\n  \"vivaldi\": \"vivald\",\n  \"vivamente\": \"viv\",\n  \"vivanda\": \"vivand\",\n  \"vivande\": \"vivand\",\n  \"vive\": \"viv\",\n  \"vivè\": \"viv\",\n  \"vivendo\": \"viv\",\n  \"vivente\": \"vivent\",\n  \"viventi\": \"vivent\",\n  \"viver\": \"viver\",\n  \"vivere\": \"viv\",\n  \"viveri\": \"viver\",\n  \"viverò\": \"viv\",\n  \"vivesse\": \"vivess\",\n  \"viveva\": \"viv\",\n  \"vivevano\": \"viv\",\n  \"vivi\": \"viv\",\n  \"viviamo\": \"viv\",\n  \"viviani\": \"vivian\",\n  \"vivida\": \"vivid\",\n  \"vivo\": \"viv\",\n  \"vivono\": \"viv\",\n  \"vivrebbe\": \"vivrebb\",\n  \"vivuta\": \"viv\",\n  \"vizi\": \"viz\",\n  \"vizio\": \"viz\",\n  \"vizzini\": \"vizzin\",\n  \"vladimir\": \"vladim\",\n  \"vlaovic\": \"vlaovic\",\n  \"vo\": \"vo\",\n  \"vocabolario\": \"vocabolar\",\n  \"vocaboli\": \"vocabol\",\n  \"vocabolo\": \"vocabol\",\n  \"vocali\": \"vocal\",\n  \"vocaltec\": \"vocaltec\",\n  \"vocazione\": \"vocazion\",\n  \"voce\": \"voc\",\n  \"voci\": \"voc\",\n  \"vociaccia\": \"vociacc\",\n  \"vocina\": \"vocin\",\n  \"vocione\": \"vocion\",\n  \"vodka\": \"vodk\",\n  \"voeller\": \"voeller\",\n  \"voga\": \"vog\",\n  \"vogando\": \"vog\",\n  \"voglia\": \"vogl\",\n  \"vogliam\": \"vogliam\",\n  \"vogliamo\": \"vogl\",\n  \"voglian\": \"voglian\",\n  \"vogliano\": \"vogl\",\n  \"vogliatene\": \"vogliaten\",\n  \"voglie\": \"vogl\",\n  \"voglio\": \"vogl\",\n  \"voglion\": \"voglion\",\n  \"vogliono\": \"vogl\",\n  \"vogliosa\": \"voglios\",\n  \"vogliosi\": \"voglios\",\n  \"voglioso\": \"voglios\",\n  \"voi\": \"voi\",\n  \"vola\": \"vol\",\n  \"volan\": \"volan\",\n  \"volante\": \"volant\",\n  \"volanti\": \"volant\",\n  \"volantino\": \"volantin\",\n  \"volar\": \"vol\",\n  \"volare\": \"vol\",\n  \"volatile\": \"volatil\",\n  \"volatili\": \"volatil\",\n  \"volava\": \"vol\",\n  \"volavan\": \"volavan\",\n  \"volendo\": \"vol\",\n  \"volentieri\": \"volentier\",\n  \"voler\": \"voler\",\n  \"volerci\": \"vol\",\n  \"volere\": \"vol\",\n  \"volerebbe\": \"vol\",\n  \"volergliene\": \"vol\",\n  \"voleri\": \"voler\",\n  \"volerle\": \"vol\",\n  \"volerlo\": \"vol\",\n  \"volermi\": \"vol\",\n  \"volersi\": \"vol\",\n  \"volervi\": \"vol\",\n  \"volesse\": \"voless\",\n  \"volessero\": \"vol\",\n  \"volessi\": \"voless\",\n  \"volessimo\": \"volessim\",\n  \"voleste\": \"volest\",\n  \"volete\": \"vol\",\n  \"voleva\": \"vol\",\n  \"volevan\": \"volevan\",\n  \"volevano\": \"vol\",\n  \"volevate\": \"vol\",\n  \"volevi\": \"vol\",\n  \"volevo\": \"vol\",\n  \"volgare\": \"volg\",\n  \"volgari\": \"volgar\",\n  \"volgarità\": \"volgar\",\n  \"volge\": \"volg\",\n  \"volgendosi\": \"volg\",\n  \"volgere\": \"volg\",\n  \"volgeva\": \"volg\",\n  \"volgo\": \"volg\",\n  \"voli\": \"vol\",\n  \"volker\": \"volker\",\n  \"volkswagen\": \"volkswagen\",\n  \"volle\": \"voll\",\n  \"vollero\": \"voller\",\n  \"volley\": \"volley\",\n  \"volnmtarietà\": \"volnmtariet\",\n  \"volo\": \"vol\",\n  \"volontà\": \"volont\",\n  \"volontari\": \"volontar\",\n  \"volontaria\": \"volontar\",\n  \"volontariamente\": \"volontar\",\n  \"volontariato\": \"volontar\",\n  \"volontario\": \"volontar\",\n  \"volpe\": \"volp\",\n  \"volsero\": \"volser\",\n  \"volta\": \"volt\",\n  \"voltafaccia\": \"voltafacc\",\n  \"voltan\": \"voltan\",\n  \"voltando\": \"volt\",\n  \"voltandosi\": \"volt\",\n  \"voltano\": \"volt\",\n  \"voltar\": \"volt\",\n  \"voltare\": \"volt\",\n  \"voltaron\": \"voltaron\",\n  \"voltarono\": \"volt\",\n  \"voltarsi\": \"volt\",\n  \"voltasse\": \"volt\",\n  \"voltata\": \"volt\",\n  \"voltatasi\": \"voltatas\",\n  \"voltate\": \"volt\",\n  \"voltatisi\": \"voltatis\",\n  \"voltato\": \"volt\",\n  \"voltatosi\": \"voltat\",\n  \"voltava\": \"volt\",\n  \"voltavan\": \"voltavan\",\n  \"voltavano\": \"volt\",\n  \"volte\": \"volt\",\n  \"volteggiare\": \"voltegg\",\n  \"volti\": \"volt\",\n  \"volto\": \"volt\",\n  \"voltò\": \"volt\",\n  \"voltri\": \"voltr\",\n  \"volume\": \"volum\",\n  \"volumi\": \"volum\",\n  \"voluminosa\": \"volumin\",\n  \"voluta\": \"vol\",\n  \"volute\": \"vol\",\n  \"voluti\": \"vol\",\n  \"voluto\": \"vol\",\n  \"voluttà\": \"volutt\",\n  \"von\": \"von\",\n  \"voragine\": \"voragin\",\n  \"voria\": \"vor\",\n  \"vorrà\": \"vorr\",\n  \"vorrai\": \"vorra\",\n  \"vorranno\": \"vorrann\",\n  \"vorrebbe\": \"vorrebb\",\n  \"vorrebbero\": \"vorrebber\",\n  \"vorrei\": \"vorre\",\n  \"vorremmo\": \"vorr\",\n  \"vorreste\": \"vorrest\",\n  \"vorresti\": \"vorrest\",\n  \"vorrete\": \"vorr\",\n  \"vortice\": \"vortic\",\n  \"vossignoria\": \"vossignor\",\n  \"vostra\": \"vostr\",\n  \"vostre\": \"vostr\",\n  \"vostri\": \"vostr\",\n  \"vostro\": \"vostr\",\n  \"vota\": \"vot\",\n  \"votando\": \"vot\",\n  \"votandolo\": \"vot\",\n  \"votanti\": \"votant\",\n  \"votare\": \"vot\",\n  \"votargli\": \"vot\",\n  \"votata\": \"vot\",\n  \"votate\": \"vot\",\n  \"votato\": \"vot\",\n  \"votatolo\": \"votatol\",\n  \"votavano\": \"vot\",\n  \"votazione\": \"votazion\",\n  \"votazioni\": \"votazion\",\n  \"vote\": \"vot\",\n  \"voterà\": \"vot\",\n  \"voteremo\": \"vot\",\n  \"voti\": \"vot\",\n  \"vòti\": \"vòt\",\n  \"votiamo\": \"vot\",\n  \"voto\": \"vot\",\n  \"vòto\": \"vòt\",\n  \"votò\": \"vot\",\n  \"votum\": \"votum\",\n  \"vox\": \"vox\",\n  \"vpic\": \"vpic\",\n  \"vqz\": \"vqz\",\n  \"vte\": \"vte\",\n  \"vu\": \"vu\",\n  \"vukosa\": \"vukos\",\n  \"vulcanologico\": \"vulcanolog\",\n  \"vulneraria\": \"vulnerar\",\n  \"vuoi\": \"vuo\",\n  \"vuol\": \"vuol\",\n  \"vuole\": \"vuol\",\n  \"vuota\": \"vuot\",\n  \"vuote\": \"vuot\",\n  \"vuoto\": \"vuot\",\n  \"waigel\": \"waigel\",\n  \"wainaina\": \"wainain\",\n  \"wall\": \"wall\",\n  \"wallenius\": \"wallenius\",\n  \"wallenstein\": \"wallenstein\",\n  \"walter\": \"walter\",\n  \"war\": \"war\",\n  \"ward\": \"ward\",\n  \"wardak\": \"wardak\",\n  \"wardle\": \"wardl\",\n  \"warr\": \"warr\",\n  \"warrant\": \"warrant\",\n  \"warren\": \"warren\",\n  \"warriors\": \"warriors\",\n  \"washington\": \"washington\",\n  \"watan\": \"watan\",\n  \"watch\": \"watc\",\n  \"water\": \"water\",\n  \"wayne\": \"wayn\",\n  \"wbo\": \"wbo\",\n  \"webb\": \"webb\",\n  \"weekend\": \"weekend\",\n  \"wehrmacht\": \"wehrmacht\",\n  \"welt\": \"welt\",\n  \"wenders\": \"wenders\",\n  \"werner\": \"werner\",\n  \"wertmuller\": \"wertmuller\",\n  \"wes\": \"wes\",\n  \"west\": \"west\",\n  \"westafalisches\": \"westafalisches\",\n  \"western\": \"western\",\n  \"westinghouse\": \"westinghous\",\n  \"whistler\": \"whistler\",\n  \"whitley\": \"whitley\",\n  \"wicha\": \"wich\",\n  \"wilczek\": \"wilczek\",\n  \"wilfried\": \"wilfried\",\n  \"willer\": \"willer\",\n  \"william\": \"william\",\n  \"williame\": \"william\",\n  \"willis\": \"willis\",\n  \"willy\": \"willy\",\n  \"wilma\": \"wilm\",\n  \"wilson\": \"wilson\",\n  \"wim\": \"wim\",\n  \"windows\": \"windows\",\n  \"wings\": \"wings\",\n  \"winter\": \"winter\",\n  \"winterberg\": \"winterberg\",\n  \"winters\": \"winters\",\n  \"wojtyla\": \"wojtyl\",\n  \"wolf\": \"wolf\",\n  \"wolfgang\": \"wolfgang\",\n  \"woods\": \"woods\",\n  \"wordsworth\": \"wordsworth\",\n  \"workers\": \"workers\",\n  \"world\": \"world\",\n  \"wspr\": \"wspr\",\n  \"wuber\": \"wuber\",\n  \"wuxian\": \"wuxian\",\n  \"x\": \"x\",\n  \"xai\": \"xai\",\n  \"xbe\": \"xbe\",\n  \"xbu\": \"xbu\",\n  \"xca\": \"xca\",\n  \"xcf\": \"xcf\",\n  \"xct\": \"xct\",\n  \"xdp\": \"xdp\",\n  \"xenofobi\": \"xenofob\",\n  \"xi\": \"xi\",\n  \"xii\": \"xii\",\n  \"xiii\": \"xii\",\n  \"xmi\": \"xmi\",\n  \"xmm\": \"xmm\",\n  \"xpc\": \"xpc\",\n  \"xpi\": \"xpi\",\n  \"xpn\": \"xpn\",\n  \"xps\": \"xps\",\n  \"xrh\": \"xrh\",\n  \"xrs\": \"xrs\",\n  \"xxi\": \"xxi\",\n  \"xxiv\": \"xxiv\",\n  \"xxvi\": \"xxvi\",\n  \"xxvii\": \"xxvi\",\n  \"xza\": \"xza\",\n  \"y\": \"y\",\n  \"ya\": \"ya\",\n  \"yacht\": \"yacht\",\n  \"yadana\": \"yadan\",\n  \"yakov\": \"yakov\",\n  \"yale\": \"yal\",\n  \"yasser\": \"yasser\",\n  \"yediot\": \"yediot\",\n  \"yen\": \"yen\",\n  \"yirmaguas\": \"yirmaguas\",\n  \"yitzhak\": \"yitzhak\",\n  \"yoint\": \"yoint\",\n  \"york\": \"york\",\n  \"yossi\": \"yoss\",\n  \"yousef\": \"yousef\",\n  \"ypf\": \"ypf\",\n  \"yugoslavia\": \"yugoslav\",\n  \"yusen\": \"yusen\",\n  \"yvette\": \"yvett\",\n  \"z\": \"z\",\n  \"za\": \"za\",\n  \"zaccaria\": \"zaccar\",\n  \"zacchera\": \"zaccher\",\n  \"zacchere\": \"zacc\",\n  \"zachia\": \"zach\",\n  \"zaffate\": \"zaff\",\n  \"zag\": \"zag\",\n  \"zagabria\": \"zagabr\",\n  \"zagaria\": \"zagar\",\n  \"zaini\": \"zain\",\n  \"zambia\": \"zamb\",\n  \"zamora\": \"zamor\",\n  \"zampa\": \"zamp\",\n  \"zampe\": \"zamp\",\n  \"zampino\": \"zampin\",\n  \"zanacchi\": \"zanacc\",\n  \"zandano\": \"zand\",\n  \"zanicchi\": \"zanicc\",\n  \"zanin\": \"zanin\",\n  \"zanne\": \"zann\",\n  \"zanoncelli\": \"zanoncell\",\n  \"zanussi\": \"zanuss\",\n  \"zanutta\": \"zanutt\",\n  \"zanzi\": \"zanz\",\n  \"zapatista\": \"zapat\",\n  \"zapatisti\": \"zapat\",\n  \"zapatistì\": \"zapat\",\n  \"zappando\": \"zapp\",\n  \"zappe\": \"zapp\",\n  \"zaptista\": \"zaptist\",\n  \"zar\": \"zar\",\n  \"zattarin\": \"zattarin\",\n  \"zc\": \"zc\",\n  \"zdf\": \"zdf\",\n  \"zecca\": \"zecc\",\n  \"zecchino\": \"zecchin\",\n  \"zedillo\": \"zedill\",\n  \"zeev\": \"zeev\",\n  \"zeffiro\": \"zeffir\",\n  \"zeitung\": \"zeitung\",\n  \"zelanti\": \"zelant\",\n  \"zelatori\": \"zelator\",\n  \"zelo\": \"zel\",\n  \"zeman\": \"zeman\",\n  \"zendali\": \"zendal\",\n  \"zenga\": \"zeng\",\n  \"zeppa\": \"zepp\",\n  \"zero\": \"zer\",\n  \"zerowatt\": \"zerowatt\",\n  \"zeta\": \"zet\",\n  \"zetabond\": \"zetabond\",\n  \"zetastock\": \"zetastock\",\n  \"zetaswiss\": \"zetaswiss\",\n  \"zhirinovski\": \"zhirinovsk\",\n  \"zia\": \"zia\",\n  \"zibellino\": \"zibellin\",\n  \"zie\": \"zie\",\n  \"zig\": \"zig\",\n  \"zignago\": \"zignag\",\n  \"zii\": \"zii\",\n  \"ziino\": \"ziin\",\n  \"zimarra\": \"zimarr\",\n  \"zimarre\": \"zimarr\",\n  \"zimbello\": \"zimbell\",\n  \"zimmermann\": \"zimmermann\",\n  \"zina\": \"zin\",\n  \"zincone\": \"zincon\",\n  \"zinelli\": \"zinell\",\n  \"zingari\": \"zingar\",\n  \"zingerle\": \"zing\",\n  \"zio\": \"zio\",\n  \"zippora\": \"zippor\",\n  \"zironelli\": \"zironell\",\n  \"zitta\": \"zitt\",\n  \"zitte\": \"zitt\",\n  \"zitti\": \"zitt\",\n  \"zitto\": \"zitt\",\n  \"ziuganov\": \"ziuganov\",\n  \"zo\": \"zo\",\n  \"zobra\": \"zobr\",\n  \"zocalo\": \"zocal\",\n  \"zocchi\": \"zocc\",\n  \"zoccolo\": \"zoccol\",\n  \"zohra\": \"zohr\",\n  \"zola\": \"zol\",\n  \"zolfanelli\": \"zolfanell\",\n  \"zolla\": \"zoll\",\n  \"zombi\": \"zomb\",\n  \"zona\": \"zon\",\n  \"zone\": \"zon\",\n  \"zonzo\": \"zonz\",\n  \"zoppas\": \"zoppas\",\n  \"zoppo\": \"zopp\",\n  \"zoran\": \"zoran\",\n  \"zoratto\": \"zoratt\",\n  \"zorro\": \"zorr\",\n  \"zorzi\": \"zorz\",\n  \"zotici\": \"zotic\",\n  \"zou\": \"zou\",\n  \"zucca\": \"zucc\",\n  \"zucche\": \"zucc\",\n  \"zuccheri\": \"zuccher\",\n  \"zuccherino\": \"zuccherin\",\n  \"zucchero\": \"zuccher\",\n  \"zucchi\": \"zucc\",\n  \"zucconi\": \"zuccon\",\n  \"zuffi\": \"zuff\",\n  \"zurigo\": \"zurig\",\n  \"zweite\": \"zwe\",\n  \"zwerver\": \"zwerver\",\n  \"zwickel\": \"zwickel\"\n}"
  },
  {
    "path": "spec/test_data/snowball_nl.json",
    "content": "{\n  \"a\": \"a\",\n  \"á\": \"a\",\n  \"à\": \"à\",\n  \"aa\": \"aa\",\n  \"aachen\": \"aach\",\n  \"aachener\": \"aachener\",\n  \"aah\": \"aah\",\n  \"aalborg\": \"aalborg\",\n  \"aalders\": \"aalder\",\n  \"aalmoezen\": \"aalmoez\",\n  \"aalscholver\": \"aalscholver\",\n  \"aalscholvers\": \"aalscholver\",\n  \"aalscholverstand\": \"aalscholverstand\",\n  \"aalsmeer\": \"aalsmer\",\n  \"aalsmeerbaan\": \"aalsmeerban\",\n  \"aalsmeerse\": \"aalsmer\",\n  \"aalten\": \"aalt\",\n  \"aaltenaar\": \"aaltenar\",\n  \"aaltjes\": \"aaltjes\",\n  \"aam\": \"aam\",\n  \"aan\": \"aan\",\n  \"áan\": \"aan\",\n  \"aanbad\": \"aanbad\",\n  \"aanbaklaagjes\": \"aanbaklaagjes\",\n  \"aanbelde\": \"aanbeld\",\n  \"aanbellen\": \"aanbell\",\n  \"aanbesteden\": \"aanbested\",\n  \"aanbesteding\": \"aanbested\",\n  \"aanbestedingen\": \"aanbested\",\n  \"aanbestedingsdossier\": \"aanbestedingsdossier\",\n  \"aanbestedingsprocedure\": \"aanbestedingsprocedur\",\n  \"aanbestedingsrichtlijn\": \"aanbestedingsrichtlijn\",\n  \"aanbevelen\": \"aanbevel\",\n  \"aanbeveling\": \"aanbevel\",\n  \"aanbevelingen\": \"aanbevel\",\n  \"aanbevolen\": \"aanbevol\",\n  \"aanbiddelijk\": \"aanbid\",\n  \"aanbiddelijke\": \"aanbid\",\n  \"aanbidden\": \"aanbid\",\n  \"aanbiddend\": \"aanbid\",\n  \"aanbidding\": \"aanbid\",\n  \"aanbieden\": \"aanbied\",\n  \"aanbieder\": \"aanbieder\",\n  \"aanbieders\": \"aanbieder\",\n  \"aanbiedfrequentie\": \"aanbiedfrequentie\",\n  \"aanbiedingsbrief\": \"aanbiedingsbrief\",\n  \"aanbiedplaatsen\": \"aanbiedplaats\",\n  \"aanbiedt\": \"aanbiedt\",\n  \"aanblik\": \"aanblik\",\n  \"aanbod\": \"aanbod\",\n  \"aanbood\": \"aanbod\",\n  \"aanbouw\": \"aanbouw\",\n  \"aanbrengen\": \"aanbreng\",\n  \"aanbrengt\": \"aanbrengt\",\n  \"aandacht\": \"aandacht\",\n  \"aandachtig\": \"aandacht\",\n  \"aandachtige\": \"aandacht\",\n  \"aandachtiger\": \"aandachtiger\",\n  \"aandachtspunten\": \"aandachtspunt\",\n  \"aandachtstoffen\": \"aandachtstoff\",\n  \"aandachtsvelden\": \"aandachtsveld\",\n  \"aandeden\": \"aanded\",\n  \"aandeed\": \"aanded\",\n  \"aandeel\": \"aandel\",\n  \"aandeelhouder\": \"aandeelhouder\",\n  \"aandeelhouders\": \"aandeelhouder\",\n  \"aandeelhoudersvergadering\": \"aandeelhoudersvergader\",\n  \"aandelen\": \"aandel\",\n  \"aandelenemissie\": \"aandelenemissie\",\n  \"aandelenfonds\": \"aandelenfond\",\n  \"aandelenkapitaal\": \"aandelenkapital\",\n  \"aandelenruil\": \"aandelenruil\",\n  \"aandoen\": \"aandoen\",\n  \"aandoende\": \"aandoend\",\n  \"aandoening\": \"aandoen\",\n  \"aandoeningen\": \"aandoen\",\n  \"aandoenlijke\": \"aandoen\",\n  \"aandoet\": \"aandoet\",\n  \"aandraagt\": \"aandraagt\",\n  \"aandrang\": \"aandrang\",\n  \"aandreigde\": \"aandreigd\",\n  \"aandreigende\": \"aandreig\",\n  \"aandreunde\": \"aandreund\",\n  \"aandrijfas\": \"aandrijfas\",\n  \"aandrijft\": \"aandrijft\",\n  \"aandrijftechniek\": \"aandrijftechniek\",\n  \"aandrijven\": \"aandrijv\",\n  \"aandrijvende\": \"aandrijv\",\n  \"aandrijving\": \"aandrijv\",\n  \"aandrijvingen\": \"aandrijv\",\n  \"aandringen\": \"aandring\",\n  \"aandringt\": \"aandringt\",\n  \"aandrong\": \"aandrong\",\n  \"aandruk\": \"aandruk\",\n  \"aandrukte\": \"aandrukt\",\n  \"aanduidde\": \"aanduid\",\n  \"aanduiding\": \"aanduid\",\n  \"aaneen\": \"aanen\",\n  \"aaneengesloten\": \"aaneengeslot\",\n  \"aangaan\": \"aangan\",\n  \"aangaande\": \"aangaand\",\n  \"aangaat\": \"aangat\",\n  \"aangaf\": \"aangaf\",\n  \"aangebeden\": \"aangebed\",\n  \"aangebeterd\": \"aangebeterd\",\n  \"aangeblazen\": \"aangeblaz\",\n  \"aangeboden\": \"aangebod\",\n  \"aangeboord\": \"aangeboord\",\n  \"aangeboren\": \"aangebor\",\n  \"aangebracht\": \"aangebracht\",\n  \"aangebrachte\": \"aangebracht\",\n  \"aangebroken\": \"aangebrok\",\n  \"aangedaan\": \"aangedan\",\n  \"aangedonder\": \"aangedonder\",\n  \"aangedragen\": \"aangedrag\",\n  \"aangedreven\": \"aangedrev\",\n  \"aangedrongen\": \"aangedrong\",\n  \"aangeduid\": \"aangeduid\",\n  \"aangeduide\": \"aangeduid\",\n  \"aangeeft\": \"aangeeft\",\n  \"aangegaan\": \"aangegan\",\n  \"aangegaapt\": \"aangegaapt\",\n  \"aangegeven\": \"aangegev\",\n  \"aangegooid\": \"aangegooid\",\n  \"aangegrepen\": \"aangegrep\",\n  \"aangehoord\": \"aangehoord\",\n  \"aangehouden\": \"aangehoud\",\n  \"aangejaagd\": \"aangejaagd\",\n  \"aangekaart\": \"aangekaart\",\n  \"aangekeken\": \"aangekek\",\n  \"aangeklaagd\": \"aangeklaagd\",\n  \"aangeknoeid\": \"aangeknoeid\",\n  \"aangeknoopt\": \"aangeknoopt\",\n  \"aangekocht\": \"aangekocht\",\n  \"aangekomen\": \"aangekom\",\n  \"aangekondigd\": \"aangekondigd\",\n  \"aangekondigde\": \"aangekondigd\",\n  \"aangekweekt\": \"aangekweekt\",\n  \"aangeland\": \"aangeland\",\n  \"aangeleerd\": \"aangeleerd\",\n  \"aangeleerde\": \"aangeleerd\",\n  \"aangelegd\": \"aangelegd\",\n  \"aangelegde\": \"aangelegd\",\n  \"aangelegenheden\": \"aangeleg\",\n  \"aangelegenheid\": \"aangeleg\",\n  \"aangeleverd\": \"aangeleverd\",\n  \"aangeleverde\": \"aangeleverd\",\n  \"aangelopen\": \"aangelop\",\n  \"aangemeld\": \"aangemeld\",\n  \"aangemelde\": \"aangemeld\",\n  \"aangemerkt\": \"aangemerkt\",\n  \"aangemoedigd\": \"aangemoedigd\",\n  \"aangenaam\": \"aangenam\",\n  \"aangenaamste\": \"aangenaamst\",\n  \"aangename\": \"aangenam\",\n  \"aangenamer\": \"aangenamer\",\n  \"aangenomen\": \"aangenom\",\n  \"aangepakt\": \"aangepakt\",\n  \"aangepast\": \"aangepast\",\n  \"aangepaste\": \"aangepast\",\n  \"aangeplant\": \"aangeplant\",\n  \"aangepord\": \"aangepord\",\n  \"aangeraakt\": \"aangeraakt\",\n  \"aangeraden\": \"aangerad\",\n  \"aangereikt\": \"aangereikt\",\n  \"aangericht\": \"aangericht\",\n  \"aangeroerde\": \"aangeroerd\",\n  \"aangeschaft\": \"aangeschaft\",\n  \"aangeschenen\": \"aangeschen\",\n  \"aangescherpt\": \"aangescherpt\",\n  \"aangescherpte\": \"aangescherpt\",\n  \"aangeslagen\": \"aangeslag\",\n  \"aangesloten\": \"aangeslot\",\n  \"aangespannen\": \"aangespann\",\n  \"aangespoord\": \"aangespoord\",\n  \"aangesproken\": \"aangesprok\",\n  \"aangestaard\": \"aangestaard\",\n  \"aangesteld\": \"aangesteld\",\n  \"aangestipt\": \"aangestipt\",\n  \"aangestoken\": \"aangestok\",\n  \"aangestort\": \"aangestort\",\n  \"aangestuurd\": \"aangestuurd\",\n  \"aangetast\": \"aangetast\",\n  \"aangetaste\": \"aangetast\",\n  \"aangetekend\": \"aangetek\",\n  \"aangetoond\": \"aangetoond\",\n  \"aangetoonde\": \"aangetoond\",\n  \"aangetroffen\": \"aangetroff\",\n  \"aangetrokken\": \"aangetrok\",\n  \"aangevallen\": \"aangevall\",\n  \"aangevangen\": \"aangevang\",\n  \"aangevaren\": \"aangevar\",\n  \"aangeven\": \"aangev\",\n  \"aangevochten\": \"aangevocht\",\n  \"aangevoeld\": \"aangevoeld\",\n  \"aangevoerd\": \"aangevoerd\",\n  \"aangevoerde\": \"aangevoerd\",\n  \"aangevraagd\": \"aangevraagd\",\n  \"aangevraagde\": \"aangevraagd\",\n  \"aangevuld\": \"aangevuld\",\n  \"aangewend\": \"aangew\",\n  \"aangewezen\": \"aangewez\",\n  \"aangewonnen\": \"aangewonn\",\n  \"aangezegd\": \"aangezegd\",\n  \"aangezicht\": \"aangezicht\",\n  \"aangezichten\": \"aangezicht\",\n  \"aangezien\": \"aangezien\",\n  \"aangezuurd\": \"aangezuurd\",\n  \"aangezweemd\": \"aangezweemd\",\n  \"aangifte\": \"aangift\",\n  \"aangifteformulieren\": \"aangifteformulier\",\n  \"aangifteplichtige\": \"aangifteplicht\",\n  \"aanging\": \"aanging\",\n  \"aangloeiden\": \"aangloeid\",\n  \"aangrauwde\": \"aangrauwd\",\n  \"aangrauwend\": \"aangrauw\",\n  \"aangrenzende\": \"aangrenz\",\n  \"aangrijpen\": \"aangrijp\",\n  \"aangrijpend\": \"aangrijp\",\n  \"aangroei\": \"aangroei\",\n  \"aangroeiende\": \"aangroei\",\n  \"aangroeiremmende\": \"aangroeiremm\",\n  \"aangroeiwerende\": \"aangroeiwer\",\n  \"aanhaalde\": \"aanhaald\",\n  \"aanhaalt\": \"aanhaalt\",\n  \"aanhang\": \"aanhang\",\n  \"aanhangende\": \"aanhang\",\n  \"aanhangers\": \"aanhanger\",\n  \"aanhangig\": \"aanhang\",\n  \"aanhangwagen\": \"aanhangwag\",\n  \"aanhangwagens\": \"aanhangwagen\",\n  \"aanhankelijk\": \"aanhank\",\n  \"aanhankelijkheden\": \"aanhank\",\n  \"aanhankelijkheid\": \"aanhank\",\n  \"aanhield\": \"aanhield\",\n  \"aanhoorde\": \"aanhoord\",\n  \"aanhoort\": \"aanhoort\",\n  \"aanhoren\": \"aanhor\",\n  \"aanhouden\": \"aanhoud\",\n  \"aanhoudend\": \"aanhoud\",\n  \"aanhoudende\": \"aanhoud\",\n  \"aanhouding\": \"aanhoud\",\n  \"aanhoudt\": \"aanhoudt\",\n  \"aanhuilde\": \"aanhuild\",\n  \"aanhuilen\": \"aanhuil\",\n  \"aanhuilende\": \"aanhuil\",\n  \"aanhuiverde\": \"aanhuiverd\",\n  \"aanjager\": \"aanjager\",\n  \"aankaarten\": \"aankaart\",\n  \"aankeek\": \"aankek\",\n  \"aankijken\": \"aankijk\",\n  \"aankijkende\": \"aankijk\",\n  \"aankijkt\": \"aankijkt\",\n  \"aanklaagden\": \"aanklaagd\",\n  \"aanklacht\": \"aanklacht\",\n  \"aanklagen\": \"aanklag\",\n  \"aanklager\": \"aanklager\",\n  \"aankleden\": \"aankled\",\n  \"aankleven\": \"aanklev\",\n  \"aanknopingspunten\": \"aanknopingspunt\",\n  \"aankoeking\": \"aankoek\",\n  \"aankomen\": \"aankom\",\n  \"aankomende\": \"aankom\",\n  \"aankomst\": \"aankomst\",\n  \"aankomsttijden\": \"aankomsttijd\",\n  \"aankomt\": \"aankomt\",\n  \"aankon\": \"aankon\",\n  \"aankondigde\": \"aankondigd\",\n  \"aankondiging\": \"aankond\",\n  \"aankondigt\": \"aankondigt\",\n  \"aankoop\": \"aankop\",\n  \"aankoopbeleid\": \"aankoopbeleid\",\n  \"aankoopbon\": \"aankoopbon\",\n  \"aankoopgedrag\": \"aankoopgedrag\",\n  \"aankopen\": \"aankop\",\n  \"aankunnen\": \"aankunn\",\n  \"aankwam\": \"aankwam\",\n  \"aankwamen\": \"aankwam\",\n  \"aanlanding\": \"aanland\",\n  \"aanleg\": \"aanleg\",\n  \"aanleggen\": \"aanlegg\",\n  \"aanlegkosten\": \"aanlegkost\",\n  \"aanlegt\": \"aanlegt\",\n  \"aanleiding\": \"aanleid\",\n  \"aanleveren\": \"aanlever\",\n  \"aanliep\": \"aanliep\",\n  \"aanlig\": \"aanlig\",\n  \"aanlokkelijke\": \"aanlok\",\n  \"aanloop\": \"aanlop\",\n  \"aanloopkosten\": \"aanloopkost\",\n  \"aanlopen\": \"aanlop\",\n  \"aanmaak\": \"aanmak\",\n  \"aanmaken\": \"aanmak\",\n  \"aanmatigend\": \"aanmat\",\n  \"aanmeert\": \"aanmeert\",\n  \"aanmelden\": \"aanmeld\",\n  \"aanmelding\": \"aanmeld\",\n  \"aanmerende\": \"aanmer\",\n  \"aanmerkelijk\": \"aanmerk\",\n  \"aanmerking\": \"aanmerk\",\n  \"aanmerkingen\": \"aanmerk\",\n  \"aanmistten\": \"aanmist\",\n  \"aanmoedigen\": \"aanmoed\",\n  \"aanmoedigend\": \"aanmoed\",\n  \"aanmoediging\": \"aanmoed\",\n  \"aanmoedigingspremie\": \"aanmoedigingspremie\",\n  \"aanmoedigingsprijzen\": \"aanmoedigingsprijz\",\n  \"aannachtende\": \"aannacht\",\n  \"aannaderde\": \"aannaderd\",\n  \"aannaderen\": \"aannader\",\n  \"aannam\": \"aannam\",\n  \"aanname\": \"aannam\",\n  \"aannamen\": \"aannam\",\n  \"aannames\": \"aannames\",\n  \"aanneemsom\": \"aanneemsom\",\n  \"aanneemt\": \"aanneemt\",\n  \"aannemelijk\": \"aannem\",\n  \"aannemen\": \"aannem\",\n  \"aannemende\": \"aannem\",\n  \"aannemer\": \"aannemer\",\n  \"aannemerij\": \"aannemerij\",\n  \"aannemers\": \"aannemer\",\n  \"aannemersbedrijf\": \"aannemersbedrijf\",\n  \"aannemerscombinaties\": \"aannemerscombinaties\",\n  \"aannemersmaatschappij\": \"aannemersmaatschappij\",\n  \"aannemingsbedrijf\": \"aannemingsbedrijf\",\n  \"aannemingsbedrijven\": \"aannemingsbedrijv\",\n  \"aanpak\": \"aanpak\",\n  \"aanpakbiljetten\": \"aanpakbiljet\",\n  \"aanpakken\": \"aanpak\",\n  \"aanpakt\": \"aanpakt\",\n  \"aanpalende\": \"aanpal\",\n  \"aanpasbaarheid\": \"aanpas\",\n  \"aanpassen\": \"aanpass\",\n  \"aanpassing\": \"aanpass\",\n  \"aanpassingen\": \"aanpass\",\n  \"aanpast\": \"aanpast\",\n  \"aanplant\": \"aanplant\",\n  \"aanprijzen\": \"aanprijz\",\n  \"aanraadt\": \"aanraadt\",\n  \"aanraken\": \"aanrak\",\n  \"aanraking\": \"aanrak\",\n  \"aanricht\": \"aanricht\",\n  \"aanrichten\": \"aanricht\",\n  \"aanrichtte\": \"aanricht\",\n  \"aanried\": \"aanried\",\n  \"aanruisende\": \"aanruis\",\n  \"aanschaf\": \"aanschaf\",\n  \"aanschaffen\": \"aanschaff\",\n  \"aanschafkosten\": \"aanschafkost\",\n  \"aanschafprijs\": \"aanschafprijs\",\n  \"aanschafsubsidie\": \"aanschafsubsidie\",\n  \"aanschafwaarde\": \"aanschafwaard\",\n  \"aanschemeren\": \"aanschemer\",\n  \"aanscherpen\": \"aanscherp\",\n  \"aanscherping\": \"aanscherp\",\n  \"aanschietende\": \"aanschiet\",\n  \"aanschoot\": \"aanschot\",\n  \"aanschouwelijk\": \"aanschouw\",\n  \"aanschrijven\": \"aanschrijv\",\n  \"aanschrijving\": \"aanschrijv\",\n  \"aanslaan\": \"aanslan\",\n  \"aanslaat\": \"aanslat\",\n  \"aanslag\": \"aanslag\",\n  \"aanslepen\": \"aanslep\",\n  \"aansloot\": \"aanslot\",\n  \"aansluit\": \"aansluit\",\n  \"aansluiten\": \"aansluit\",\n  \"aansluitend\": \"aansluit\",\n  \"aansluitende\": \"aansluit\",\n  \"aansluiting\": \"aansluit\",\n  \"aansluitingen\": \"aansluit\",\n  \"aansluitkosten\": \"aansluitkost\",\n  \"aansluitstukken\": \"aansluitstuk\",\n  \"aanspannen\": \"aanspann\",\n  \"aanspoelt\": \"aanspoelt\",\n  \"aansporen\": \"aanspor\",\n  \"aanspraak\": \"aansprak\",\n  \"aansprakelijk\": \"aansprak\",\n  \"aansprakelijke\": \"aansprak\",\n  \"aansprakelijkheden\": \"aansprak\",\n  \"aansprakelijkheid\": \"aansprak\",\n  \"aansprakelijkheidskorting\": \"aansprakelijkheidskort\",\n  \"aansprakelijkheidsverzekering\": \"aansprakelijkheidsverzeker\",\n  \"aansprakelijkheidsverzekeringen\": \"aansprakelijkheidsverzeker\",\n  \"aansprakelijksverzekering\": \"aansprakelijksverzeker\",\n  \"aanspraken\": \"aansprak\",\n  \"aanspreekpunt\": \"aanspreekpunt\",\n  \"aanspreken\": \"aansprek\",\n  \"aansprekende\": \"aansprek\",\n  \"aanstaan\": \"aanstan\",\n  \"aanstaande\": \"aanstaand\",\n  \"aanstaarden\": \"aanstaard\",\n  \"aanstaren\": \"aanstar\",\n  \"aansteken\": \"aanstek\",\n  \"aanstellen\": \"aanstell\",\n  \"aanstellerige\": \"aansteller\",\n  \"aanstellerigheid\": \"aansteller\",\n  \"aanstellerij\": \"aanstellerij\",\n  \"aanstelling\": \"aanstell\",\n  \"aansterken\": \"aansterk\",\n  \"aanstonds\": \"aanstond\",\n  \"aanstoot\": \"aanstot\",\n  \"aanstormende\": \"aanstorm\",\n  \"aanstorten\": \"aanstort\",\n  \"aanstreek\": \"aanstrek\",\n  \"aantal\": \"aantal\",\n  \"aantallen\": \"aantall\",\n  \"aantast\": \"aantast\",\n  \"aantasten\": \"aantast\",\n  \"aantastend\": \"aantast\",\n  \"aantastende\": \"aantast\",\n  \"aantasting\": \"aantast\",\n  \"aantekenen\": \"aanteken\",\n  \"aantekening\": \"aanteken\",\n  \"aantijgingen\": \"aantijg\",\n  \"aantocht\": \"aantocht\",\n  \"aantonen\": \"aanton\",\n  \"aantoonbaar\": \"aanton\",\n  \"aantoonde\": \"aantoond\",\n  \"aantoont\": \"aantoont\",\n  \"aantreden\": \"aantred\",\n  \"aantreffen\": \"aantreff\",\n  \"aantreft\": \"aantreft\",\n  \"aantrekkelijk\": \"aantrek\",\n  \"aantrekkelijke\": \"aantrek\",\n  \"aantrekkelijker\": \"aantrekkelijker\",\n  \"aantrekkelijkheid\": \"aantrek\",\n  \"aantrekken\": \"aantrek\",\n  \"aantrekt\": \"aantrekt\",\n  \"aantroffen\": \"aantroff\",\n  \"aantrok\": \"aantrok\",\n  \"aanvaard\": \"aanvaard\",\n  \"aanvaardbaar\": \"aanvaard\",\n  \"aanvaardbaarheid\": \"aanvaard\",\n  \"aanvaardbare\": \"aanvaard\",\n  \"aanvaarde\": \"aanvaard\",\n  \"aanvaarden\": \"aanvaard\",\n  \"aanvaarding\": \"aanvaard\",\n  \"aanval\": \"aanval\",\n  \"aanvallen\": \"aanvall\",\n  \"aanvang\": \"aanvang\",\n  \"aanvankelijk\": \"aanvank\",\n  \"aanvankelijke\": \"aanvank\",\n  \"aanvechten\": \"aanvecht\",\n  \"aanverwant\": \"aanverwant\",\n  \"aanverwante\": \"aanverwant\",\n  \"aanverwanten\": \"aanverwant\",\n  \"aanving\": \"aanving\",\n  \"aanvliegroute\": \"aanvliegrout\",\n  \"aanvliegroutes\": \"aanvliegroutes\",\n  \"aanvluchten\": \"aanvlucht\",\n  \"aanvoelde\": \"aanvoeld\",\n  \"aanvoelen\": \"aanvoel\",\n  \"aanvoelende\": \"aanvoel\",\n  \"aanvoelt\": \"aanvoelt\",\n  \"aanvoer\": \"aanvoer\",\n  \"aanvoerders\": \"aanvoerder\",\n  \"aanvoeren\": \"aanvoer\",\n  \"aanvoering\": \"aanvoer\",\n  \"aanvoernormen\": \"aanvoernorm\",\n  \"aanvoerpijp\": \"aanvoerpijp\",\n  \"aanvoert\": \"aanvoert\",\n  \"aanvoertekort\": \"aanvoertekort\",\n  \"aanvraag\": \"aanvrag\",\n  \"aanvraagformulieren\": \"aanvraagformulier\",\n  \"aanvraagperiode\": \"aanvraagperiod\",\n  \"aanvraagstrijd\": \"aanvraagstrijd\",\n  \"aanvragen\": \"aanvrag\",\n  \"aanvrager\": \"aanvrager\",\n  \"aanvragers\": \"aanvrager\",\n  \"aanvullen\": \"aanvull\",\n  \"aanvullend\": \"aanvull\",\n  \"aanvullende\": \"aanvull\",\n  \"aanvulling\": \"aanvull\",\n  \"aanvullingen\": \"aanvull\",\n  \"aanwaaiden\": \"aanwaaid\",\n  \"aanwaaiend\": \"aanwaai\",\n  \"aanwaaiende\": \"aanwaai\",\n  \"aanwaaiingen\": \"aanwaai\",\n  \"aanwaait\": \"aanwaait\",\n  \"aanwas\": \"aanwas\",\n  \"aanwenden\": \"aanwend\",\n  \"aanwezig\": \"aanwez\",\n  \"aanwezige\": \"aanwez\",\n  \"aanwezigheid\": \"aanwez\",\n  \"aanwezigheidssensoren\": \"aanwezigheidssensor\",\n  \"aanwijsbare\": \"aanwijs\",\n  \"aanwijzen\": \"aanwijz\",\n  \"aanwijzing\": \"aanwijz\",\n  \"aanwijzingen\": \"aanwijz\",\n  \"aanwijzingsbesluit\": \"aanwijzingsbesluit\",\n  \"aanwijzingsregeling\": \"aanwijzingsregel\",\n  \"aanwinning\": \"aanwinn\",\n  \"aanwipte\": \"aanwipt\",\n  \"aanwonenden\": \"aanwon\",\n  \"aanzag\": \"aanzag\",\n  \"aanzagen\": \"aanzag\",\n  \"aanzat\": \"aanzat\",\n  \"aanzeggen\": \"aanzegg\",\n  \"aanzei\": \"aanzei\",\n  \"aanzet\": \"aanzet\",\n  \"aanzetstuk\": \"aanzetstuk\",\n  \"aanzette\": \"aanzet\",\n  \"aanzetten\": \"aanzet\",\n  \"aanzie\": \"aanzie\",\n  \"aanzien\": \"aanzien\",\n  \"aanzienlijk\": \"aanzien\",\n  \"aanzienlijke\": \"aanzien\",\n  \"aanzoek\": \"aanzoek\",\n  \"aanzomerende\": \"aanzomer\",\n  \"aanzuigen\": \"aanzuig\",\n  \"aanzuiglucht\": \"aanzuiglucht\",\n  \"aanzuren\": \"aanzur\",\n  \"aanzweemde\": \"aanzweemd\",\n  \"aanzwellend\": \"aanzwell\",\n  \"aanzwellende\": \"aanzwell\",\n  \"aanzwierden\": \"aanzwierd\",\n  \"aao\": \"aao\",\n  \"aapjes\": \"aapjes\",\n  \"aarbeien\": \"aarbei\",\n  \"aard\": \"aard\",\n  \"aardam\": \"aardam\",\n  \"aardappel\": \"aardappel\",\n  \"aardappelcampagne\": \"aardappelcampagn\",\n  \"aardappelcysteaaltje\": \"aardappelcysteaaltj\",\n  \"aardappelen\": \"aardappel\",\n  \"aardappelfabrieken\": \"aardappelfabriek\",\n  \"aardappelpercelen\": \"aardappelpercel\",\n  \"aardappelplant\": \"aardappelplant\",\n  \"aardappelprodukten\": \"aardappelprodukt\",\n  \"aardappelrug\": \"aardappelrug\",\n  \"aardappels\": \"aardappel\",\n  \"aardappelteelt\": \"aardappelteelt\",\n  \"aardappelverwerkende\": \"aardappelverwerk\",\n  \"aardappelverwerkingsbedrijf\": \"aardappelverwerkingsbedrijf\",\n  \"aardappelzetmeelbedrijf\": \"aardappelzetmeelbedrijf\",\n  \"aardappelziekte\": \"aardappelziekt\",\n  \"aardbeien\": \"aardbei\",\n  \"aardbeienteelt\": \"aardbeienteelt\",\n  \"aardbeving\": \"aardbev\",\n  \"aardbevingen\": \"aardbev\",\n  \"aardbol\": \"aardbol\",\n  \"aarde\": \"aard\",\n  \"aarden\": \"aard\",\n  \"aardestemmen\": \"aardestemm\",\n  \"aardewerk\": \"aardewerk\",\n  \"aardewerken\": \"aardewerk\",\n  \"aardgas\": \"aardgas\",\n  \"aardgasauto\": \"aardgasauto\",\n  \"aardgasbesparing\": \"aardgasbespar\",\n  \"aardgasboringen\": \"aardgasbor\",\n  \"aardgascontract\": \"aardgascontract\",\n  \"aardgasequivalenten\": \"aardgasequivalent\",\n  \"aardgasexport\": \"aardgasexport\",\n  \"aardgasgebruik\": \"aardgasgebruik\",\n  \"aardgasgestookte\": \"aardgasgestookt\",\n  \"aardgasgulden\": \"aardgasguld\",\n  \"aardgaskwaliteit\": \"aardgaskwaliteit\",\n  \"aardgasleverancier\": \"aardgasleverancier\",\n  \"aardgasproducenten\": \"aardgasproducent\",\n  \"aardgasproduktie\": \"aardgasproduktie\",\n  \"aardgasquotering\": \"aardgasquoter\",\n  \"aardgasreserve\": \"aardgasreserv\",\n  \"aardgasreserves\": \"aardgasreserves\",\n  \"aardgassysteem\": \"aardgassystem\",\n  \"aardgasverbruik\": \"aardgasverbruik\",\n  \"aardgasvoertuigen\": \"aardgasvoertu\",\n  \"aardgasvoorraad\": \"aardgasvoorrad\",\n  \"aardgasvoorraden\": \"aardgasvoorrad\",\n  \"aardgaswinning\": \"aardgaswinn\",\n  \"aardig\": \"aardig\",\n  \"aardige\": \"aardig\",\n  \"aardiger\": \"aardiger\",\n  \"aardigheden\": \"aardig\",\n  \"aardigheid\": \"aardig\",\n  \"aardigs\": \"aardig\",\n  \"aardigste\": \"aardigst\",\n  \"aardingsmaterialen\": \"aardingsmaterial\",\n  \"aardkorst\": \"aardkorst\",\n  \"aardkundig\": \"aardkund\",\n  \"aardlaag\": \"aardlag\",\n  \"aardlagen\": \"aardlag\",\n  \"aardolie\": \"aardolie\",\n  \"aardolieconcessie\": \"aardolieconcessie\",\n  \"aardoliemaatschappij\": \"aardoliemaatschappij\",\n  \"aardolieprodukten\": \"aardolieprodukt\",\n  \"aardolieproduktie\": \"aardolieproduktie\",\n  \"aardoppervlak\": \"aardoppervlak\",\n  \"aardrijkskunde\": \"aardrijkskund\",\n  \"aardrijkskundige\": \"aardrijkskund\",\n  \"aardrotatie\": \"aardrotatie\",\n  \"aardse\": \"aard\",\n  \"aardverschuiving\": \"aardverschuiv\",\n  \"aardverschuivingen\": \"aardverschuiv\",\n  \"aardwarmte\": \"aardwarmt\",\n  \"aardwarmteprojecten\": \"aardwarmteproject\",\n  \"aardwarmtewinning\": \"aardwarmtewinn\",\n  \"aardwetenschappen\": \"aardwetenschapp\",\n  \"aaron\": \"aaron\",\n  \"aart\": \"aart\",\n  \"aartsen\": \"aarts\",\n  \"aarzelde\": \"aarzeld\",\n  \"aarzelen\": \"aarzel\",\n  \"aarzelend\": \"aarzel\",\n  \"aarzeling\": \"aarzel\",\n  \"aarzelingen\": \"aarzel\",\n  \"aas\": \"aas\",\n  \"aaseters\": \"aaseter\",\n  \"ab\": \"ab\",\n  \"abab\": \"abab\",\n  \"abadi\": \"abadi\",\n  \"abatement\": \"abatement\",\n  \"abb\": \"abb\",\n  \"abbing\": \"abbing\",\n  \"abc\": \"abc\",\n  \"abcoude\": \"abcoud\",\n  \"abdul\": \"abdul\",\n  \"aberratie\": \"aberratie\",\n  \"abf\": \"abf\",\n  \"abfallentsorgung\": \"abfallentsorgung\",\n  \"abfallentsorgungs\": \"abfallentsorgung\",\n  \"abfallwirtschaftsgesellschaft\": \"abfallwirtschaftsgesellschaft\",\n  \"abiotische\": \"abiotisch\",\n  \"abn\": \"abn\",\n  \"abnormaal\": \"abnormal\",\n  \"abonnees\": \"abonnes\",\n  \"abonneetelevisie\": \"abonneetelevisie\",\n  \"abonnement\": \"abonnement\",\n  \"abonnementen\": \"abonnement\",\n  \"abonnementsgeld\": \"abonnementsgeld\",\n  \"abonnementskosten\": \"abonnementskost\",\n  \"abonnementsprijs\": \"abonnementsprijs\",\n  \"abonnementssystemen\": \"abonnementssystem\",\n  \"abrs\": \"abr\",\n  \"abs\": \"abs\",\n  \"absolute\": \"absolut\",\n  \"absoluut\": \"absolut\",\n  \"absorbeert\": \"absorbeert\",\n  \"absorbentia\": \"absorbentia\",\n  \"absorber\": \"absorber\",\n  \"absorberen\": \"absorber\",\n  \"absorberende\": \"absorber\",\n  \"absorbtieplaat\": \"absorbtieplat\",\n  \"absorga\": \"absorga\",\n  \"absorptie\": \"absorptie\",\n  \"absorptiedoek\": \"absorptiedoek\",\n  \"absorptiekoelmachine\": \"absorptiekoelmachin\",\n  \"absorptiekolom\": \"absorptiekolom\",\n  \"absorptiekoudemachine\": \"absorptiekoudemachin\",\n  \"absorptiemachine\": \"absorptiemachin\",\n  \"absorptiematerialen\": \"absorptiematerial\",\n  \"absorptiemiddelen\": \"absorptiemiddel\",\n  \"absorption\": \"absorption\",\n  \"abstract\": \"abstract\",\n  \"absurd\": \"absurd\",\n  \"absurditeiten\": \"absurditeit\",\n  \"abuis\": \"abuis\",\n  \"abuja\": \"abuja\",\n  \"abusievelijk\": \"abusiev\",\n  \"abwasserentsorger\": \"abwasserentsorger\",\n  \"ac\": \"ac\",\n  \"academic\": \"academic\",\n  \"academici\": \"academici\",\n  \"academie\": \"academie\",\n  \"academisch\": \"academisch\",\n  \"academische\": \"academisch\",\n  \"academy\": \"academy\",\n  \"acca\": \"acca\",\n  \"accapareerden\": \"accapareerd\",\n  \"accapareert\": \"accapareert\",\n  \"accent\": \"accent\",\n  \"accenten\": \"accent\",\n  \"accentverschuiving\": \"accentverschuiv\",\n  \"acceptabel\": \"acceptabel\",\n  \"acceptabele\": \"acceptabel\",\n  \"acceptatie\": \"acceptatie\",\n  \"acceptatiecriteria\": \"acceptatiecriteria\",\n  \"accepteer\": \"accepter\",\n  \"accepteert\": \"accepteert\",\n  \"accepteren\": \"accepter\",\n  \"acceptgiro\": \"acceptgiro\",\n  \"accessoires\": \"accessoires\",\n  \"accident\": \"accident\",\n  \"accijns\": \"accijn\",\n  \"accijnsen\": \"accijns\",\n  \"accijnstarieven\": \"accijnstariev\",\n  \"accijnsverhoging\": \"accijnsverhog\",\n  \"accijnsvrijstelling\": \"accijnsvrijstell\",\n  \"accijnzen\": \"accijnz\",\n  \"acclimatisering\": \"acclimatiser\",\n  \"accountancy\": \"accountancy\",\n  \"accountant\": \"accountant\",\n  \"accountants\": \"accountant\",\n  \"accountantsbureau\": \"accountantsbureau\",\n  \"accountantsbureaus\": \"accountantsbureaus\",\n  \"accountantsinstituut\": \"accountantsinstitut\",\n  \"accountantskantoor\": \"accountantskantor\",\n  \"accountantskantoren\": \"accountantskantor\",\n  \"accountantsorganisatie\": \"accountantsorganisatie\",\n  \"accounting\": \"account\",\n  \"accountmanager\": \"accountmanager\",\n  \"accreditatie\": \"accreditatie\",\n  \"accu\": \"accu\",\n  \"accucel\": \"accucel\",\n  \"accumulatie\": \"accumulatie\",\n  \"accumulerende\": \"accumuler\",\n  \"accuraatheid\": \"accurat\",\n  \"accurate\": \"accurat\",\n  \"acea\": \"acea\",\n  \"acec\": \"acec\",\n  \"acer\": \"acer\",\n  \"acetaat\": \"acetat\",\n  \"aceton\": \"aceton\",\n  \"acetoncyaanhydrine\": \"acetoncyaanhydrin\",\n  \"ach\": \"ach\",\n  \"acheloös\": \"achelos\",\n  \"achievable\": \"achievabl\",\n  \"achievements\": \"achievement\",\n  \"acht\": \"acht\",\n  \"achtdelig\": \"achtdel\",\n  \"achteloos\": \"achtelos\",\n  \"achten\": \"acht\",\n  \"achtend\": \"achtend\",\n  \"achtende\": \"achtend\",\n  \"achtenswaardig\": \"achtenswaard\",\n  \"achtenswaardige\": \"achtenswaard\",\n  \"achter\": \"achter\",\n  \"achteraf\": \"achteraf\",\n  \"achterban\": \"achterban\",\n  \"achterbleef\": \"achterblef\",\n  \"achterblijft\": \"achterblijft\",\n  \"achterblijven\": \"achterblijv\",\n  \"achterblijvende\": \"achterblijv\",\n  \"achterdocht\": \"achterdocht\",\n  \"achterdochtig\": \"achterdocht\",\n  \"achtereen\": \"achteren\",\n  \"achtereenvolgende\": \"achtereenvolg\",\n  \"achtereenvolgens\": \"achtereenvolgen\",\n  \"achteren\": \"achter\",\n  \"achterfront\": \"achterfront\",\n  \"achtergebleven\": \"achtergeblev\",\n  \"achtergelaten\": \"achtergelat\",\n  \"achtergevel\": \"achtergevel\",\n  \"achtergrond\": \"achtergrond\",\n  \"achtergrondbelasting\": \"achtergrondbelast\",\n  \"achtergrondconcentratie\": \"achtergrondconcentratie\",\n  \"achtergronddocument\": \"achtergronddocument\",\n  \"achtergronden\": \"achtergrond\",\n  \"achtergrondinformatie\": \"achtergrondinformatie\",\n  \"achtergrondstraling\": \"achtergrondstral\",\n  \"achterhaald\": \"achterhaald\",\n  \"achterhaalt\": \"achterhaalt\",\n  \"achterhalen\": \"achterhal\",\n  \"achterhoek\": \"achterhoek\",\n  \"achterhoofd\": \"achterhoofd\",\n  \"achterhouden\": \"achterhoud\",\n  \"achterkamer\": \"achterkamer\",\n  \"achterkamertje\": \"achterkamertj\",\n  \"achterkant\": \"achterkant\",\n  \"achterkleinkinderen\": \"achterkleinkinder\",\n  \"achterlaten\": \"achterlat\",\n  \"achterliet\": \"achterliet\",\n  \"achterliggende\": \"achterligg\",\n  \"achterlijk\": \"achter\",\n  \"achterlijke\": \"achter\",\n  \"achterlijkjes\": \"achterlijkjes\",\n  \"achterloopt\": \"achterloopt\",\n  \"achtermiddag\": \"achtermiddag\",\n  \"achterna\": \"achterna\",\n  \"achterom\": \"achterom\",\n  \"achterover\": \"achterover\",\n  \"achterstallig\": \"achterstall\",\n  \"achterstallige\": \"achterstall\",\n  \"achterstand\": \"achterstand\",\n  \"achtertuin\": \"achtertuin\",\n  \"achteruit\": \"achteruit\",\n  \"achteruitgaat\": \"achteruitgat\",\n  \"achteruitgang\": \"achteruitgang\",\n  \"achteruitgegaan\": \"achteruitgegan\",\n  \"achterveld\": \"achterveld\",\n  \"achtervolgd\": \"achtervolgd\",\n  \"achtervolgde\": \"achtervolgd\",\n  \"achtervolgen\": \"achtervolg\",\n  \"achterwege\": \"achterweg\",\n  \"achterwegeblijven\": \"achterwegeblijv\",\n  \"achterwerk\": \"achterwerk\",\n  \"achterzijde\": \"achterzijd\",\n  \"achthonderd\": \"achthonderd\",\n  \"achtig\": \"achtig\",\n  \"achtige\": \"achtig\",\n  \"achtste\": \"achtst\",\n  \"achttal\": \"achttal\",\n  \"achtte\": \"acht\",\n  \"achtten\": \"acht\",\n  \"achttien\": \"achttien\",\n  \"achttienhonderd\": \"achttienhonderd\",\n  \"achturige\": \"achtur\",\n  \"acid\": \"acid\",\n  \"acidification\": \"acidification\",\n  \"aco\": \"aco\",\n  \"acoustic\": \"acoustic\",\n  \"acquisitie\": \"acquisitie\",\n  \"acquisities\": \"acquisities\",\n  \"acroniem\": \"acroniem\",\n  \"acroniemengids\": \"acroniemengid\",\n  \"acronyms\": \"acronym\",\n  \"acrylaathars\": \"acrylaathar\",\n  \"acrylamides\": \"acrylamides\",\n  \"act\": \"act\",\n  \"acta\": \"acta\",\n  \"acteurs\": \"acteur\",\n  \"actie\": \"actie\",\n  \"actiebereidheid\": \"actiebereid\",\n  \"actiecomité\": \"actiecomit\",\n  \"actiecomitees\": \"actiecomites\",\n  \"actiecomités\": \"actiecomites\",\n  \"actiedoelwit\": \"actiedoelwit\",\n  \"actief\": \"actief\",\n  \"actiefafval\": \"actiefafval\",\n  \"actiegroep\": \"actiegroep\",\n  \"actiegroepen\": \"actiegroep\",\n  \"actieleider\": \"actieleider\",\n  \"actieplan\": \"actieplan\",\n  \"actieprogramma\": \"actieprogramma\",\n  \"actieradius\": \"actieradius\",\n  \"acties\": \"acties\",\n  \"actieschepen\": \"actieschep\",\n  \"actieschip\": \"actieschip\",\n  \"actieve\": \"actiev\",\n  \"actiever\": \"actiever\",\n  \"actievere\": \"actiever\",\n  \"actievoerders\": \"actievoerder\",\n  \"actievoerende\": \"actievoer\",\n  \"actino\": \"actino\",\n  \"action\": \"action\",\n  \"activa\": \"activa\",\n  \"activeert\": \"activeert\",\n  \"activist\": \"activist\",\n  \"activisten\": \"activist\",\n  \"activiteit\": \"activiteit\",\n  \"activiteiten\": \"activiteit\",\n  \"activities\": \"activities\",\n  \"actoren\": \"actor\",\n  \"acts\": \"act\",\n  \"actualiseert\": \"actualiseert\",\n  \"actualiseren\": \"actualiser\",\n  \"actualisering\": \"actualiser\",\n  \"actueel\": \"actueel\",\n  \"actuele\": \"actuel\",\n  \"acumen\": \"acum\",\n  \"acute\": \"acut\",\n  \"acuut\": \"acut\",\n  \"acwa\": \"acwa\",\n  \"ad\": \"ad\",\n  \"ada\": \"ada\",\n  \"adaptatie\": \"adaptatie\",\n  \"adaptieve\": \"adaptiev\",\n  \"adaptive\": \"adaptiv\",\n  \"adas\": \"adas\",\n  \"add\": \"add\",\n  \"adder\": \"adder\",\n  \"additief\": \"additief\",\n  \"additieven\": \"additiev\",\n  \"additioneel\": \"additionel\",\n  \"additionele\": \"additionel\",\n  \"addy\": \"addy\",\n  \"addyl\": \"addyl\",\n  \"adel\": \"adel\",\n  \"adelborst\": \"adelborst\",\n  \"adele\": \"adel\",\n  \"adèle\": \"adèl\",\n  \"adelen\": \"adel\",\n  \"adeletje\": \"adeletj\",\n  \"adèletje\": \"adèletj\",\n  \"adèletjes\": \"adèletjes\",\n  \"adélie\": \"adelie\",\n  \"adelien\": \"adelien\",\n  \"adelientje\": \"adelientj\",\n  \"adeline\": \"adelin\",\n  \"adellijke\": \"adel\",\n  \"adem\": \"adem\",\n  \"ademde\": \"ademd\",\n  \"ademe\": \"adem\",\n  \"ademen\": \"adem\",\n  \"ademend\": \"adem\",\n  \"ademende\": \"adem\",\n  \"ademhaal\": \"ademhal\",\n  \"ademhaling\": \"ademhal\",\n  \"ademhalingsorganen\": \"ademhalingsorgan\",\n  \"ademhalingsproblemen\": \"ademhalingsproblem\",\n  \"ademkwestie\": \"ademkwestie\",\n  \"ademloos\": \"ademlos\",\n  \"ademtocht\": \"ademtocht\",\n  \"adequaat\": \"adequaat\",\n  \"adequate\": \"adequat\",\n  \"adequater\": \"adequater\",\n  \"adequatere\": \"adequater\",\n  \"aderen\": \"ader\",\n  \"aderige\": \"ader\",\n  \"adieu\": \"adieu\",\n  \"adjudanten\": \"adjudant\",\n  \"adjunct\": \"adjunct\",\n  \"administratie\": \"administratie\",\n  \"administratief\": \"administratief\",\n  \"administratiefrechtelijke\": \"administratiefrecht\",\n  \"administratiekosten\": \"administratiekost\",\n  \"administratieprogramma\": \"administratieprogramma\",\n  \"administratiesoftware\": \"administratiesoftwar\",\n  \"administratieve\": \"administratiev\",\n  \"administration\": \"administration\",\n  \"admiraal\": \"admiral\",\n  \"adolf\": \"adolf\",\n  \"adolfine\": \"adolfin\",\n  \"adòlfine\": \"adòlfin\",\n  \"adopteren\": \"adopter\",\n  \"adorp\": \"adorp\",\n  \"adotfine\": \"adotfin\",\n  \"adres\": \"adres\",\n  \"adresgegevens\": \"adresgegeven\",\n  \"adressen\": \"adress\",\n  \"adressenboek\": \"adressenboek\",\n  \"adri\": \"adri\",\n  \"adriaan\": \"adriaan\",\n  \"adriaans\": \"adriaan\",\n  \"adsorbeer\": \"adsorber\",\n  \"adsorbeerders\": \"adsorbeerder\",\n  \"adsorbeert\": \"adsorbeert\",\n  \"adsorber\": \"adsorber\",\n  \"adsorberen\": \"adsorber\",\n  \"adsorberend\": \"adsorber\",\n  \"adsorptie\": \"adsorptie\",\n  \"adsorptiemedia\": \"adsorptiemedia\",\n  \"aduco\": \"aduco\",\n  \"advanced\": \"advanced\",\n  \"advectieve\": \"advectiev\",\n  \"adverteert\": \"adverteert\",\n  \"advertentie\": \"advertentie\",\n  \"advertentiebestedingen\": \"advertentiebested\",\n  \"advertentiecampagnes\": \"advertentiecampagnes\",\n  \"advertenties\": \"advertenties\",\n  \"advertentietekst\": \"advertentietekst\",\n  \"advies\": \"advies\",\n  \"adviesbureau\": \"adviesbureau\",\n  \"adviesbureaus\": \"adviesbureaus\",\n  \"adviesburo\": \"adviesburo\",\n  \"adviescentra\": \"adviescentra\",\n  \"adviescentrum\": \"adviescentrum\",\n  \"adviescommissie\": \"adviescommissie\",\n  \"adviescommissies\": \"adviescommissies\",\n  \"adviesdienst\": \"adviesdienst\",\n  \"adviesdiensten\": \"adviesdienst\",\n  \"adviesgereedschap\": \"adviesgereedschap\",\n  \"adviesgroep\": \"adviesgroep\",\n  \"advieslijn\": \"advieslijn\",\n  \"adviesloket\": \"adviesloket\",\n  \"adviesmarkt\": \"adviesmarkt\",\n  \"adviesopdrachten\": \"adviesopdracht\",\n  \"adviesorgaan\": \"adviesorgan\",\n  \"adviesorganen\": \"adviesorgan\",\n  \"adviesprijs\": \"adviesprijs\",\n  \"adviesraad\": \"adviesrad\",\n  \"adviesstelsel\": \"adviesstelsel\",\n  \"adviesstelsels\": \"adviesstelsel\",\n  \"adviestaak\": \"adviestak\",\n  \"advieswaarden\": \"advieswaard\",\n  \"adviezen\": \"adviez\",\n  \"adviseerde\": \"adviseerd\",\n  \"adviseert\": \"adviseert\",\n  \"adviseren\": \"adviser\",\n  \"adviserende\": \"adviser\",\n  \"advisering\": \"adviser\",\n  \"adviseur\": \"adviseur\",\n  \"adviseurs\": \"adviseur\",\n  \"advisory\": \"advisory\",\n  \"advocaat\": \"advocat\",\n  \"advocaten\": \"advocat\",\n  \"advocatenkantoor\": \"advocatenkantor\",\n  \"advocatuur\": \"advocatur\",\n  \"ae\": \"ae\",\n  \"aea\": \"aea\",\n  \"aeci\": \"aeci\",\n  \"aeff\": \"aeff\",\n  \"aeg\": \"aeg\",\n  \"aegean\": \"aegean\",\n  \"aerobe\": \"aerob\",\n  \"aërobe\": \"aerob\",\n  \"aerocarto\": \"aerocarto\",\n  \"aërodynamisch\": \"aerodynamisch\",\n  \"aërodynamische\": \"aerodynamisch\",\n  \"aeromonas\": \"aeromonas\",\n  \"aeronox\": \"aeronox\",\n  \"aeroob\": \"aerob\",\n  \"aerosol\": \"aerosol\",\n  \"aërosol\": \"aerosol\",\n  \"aërosolen\": \"aerosol\",\n  \"aerosolindustrie\": \"aerosolindustrie\",\n  \"aerosols\": \"aerosol\",\n  \"aerospace\": \"aerospac\",\n  \"aes\": \"aes\",\n  \"af\": \"af\",\n  \"afa\": \"afa\",\n  \"afbakening\": \"afbaken\",\n  \"afbeelding\": \"afbeeld\",\n  \"afbeuling\": \"afbeul\",\n  \"afbeulingen\": \"afbeul\",\n  \"afbijtmiddelen\": \"afbijtmiddel\",\n  \"afboeken\": \"afboek\",\n  \"afborstelen\": \"afborstel\",\n  \"afbouw\": \"afbouw\",\n  \"afbouwbedrijf\": \"afbouwbedrijf\",\n  \"afbouwbeleid\": \"afbouwbeleid\",\n  \"afbouwen\": \"afbouw\",\n  \"afbouwplaten\": \"afbouwplat\",\n  \"afbouwsector\": \"afbouwsector\",\n  \"afbraak\": \"afbrak\",\n  \"afbraakplan\": \"afbraakplan\",\n  \"afbraakprodukten\": \"afbraakprodukt\",\n  \"afbraken\": \"afbrak\",\n  \"afbranden\": \"afbrand\",\n  \"afbreekbaar\": \"afbrek\",\n  \"afbreekbaarheid\": \"afbrek\",\n  \"afbreekbare\": \"afbrek\",\n  \"afbreekt\": \"afbreekt\",\n  \"afbreken\": \"afbrek\",\n  \"afbrekende\": \"afbrek\",\n  \"afbreuk\": \"afbreuk\",\n  \"afbrokkelen\": \"afbrokkel\",\n  \"afbrokkeling\": \"afbrokkel\",\n  \"afdanken\": \"afdank\",\n  \"afdankertjes\": \"afdankertjes\",\n  \"afdankt\": \"afdankt\",\n  \"afdeed\": \"afded\",\n  \"afdekfolie\": \"afdekfolie\",\n  \"afdekkap\": \"afdekkap\",\n  \"afdekken\": \"afdek\",\n  \"afdekking\": \"afdek\",\n  \"afdekkingsfoliën\": \"afdekkingsfolien\",\n  \"afdeklaag\": \"afdeklag\",\n  \"afdekmethoden\": \"afdekmethod\",\n  \"afdekplicht\": \"afdekplicht\",\n  \"afdekrooster\": \"afdekrooster\",\n  \"afdekzeil\": \"afdekzeil\",\n  \"afdeling\": \"afdel\",\n  \"afdelingen\": \"afdel\",\n  \"afdichten\": \"afdicht\",\n  \"afdichtfolie\": \"afdichtfolie\",\n  \"afdichting\": \"afdicht\",\n  \"afdichtingen\": \"afdicht\",\n  \"afdichtingslaag\": \"afdichtingslag\",\n  \"afdoen\": \"afdoen\",\n  \"afdoende\": \"afdoend\",\n  \"afdoener\": \"afdoener\",\n  \"afdoening\": \"afdoen\",\n  \"afdoeningstarieven\": \"afdoeningstariev\",\n  \"afdracht\": \"afdracht\",\n  \"afdragen\": \"afdrag\",\n  \"afdruipen\": \"afdruip\",\n  \"afdruk\": \"afdruk\",\n  \"afdwingbaar\": \"afdwing\",\n  \"afdwingen\": \"afdwing\",\n  \"affaire\": \"affair\",\n  \"affaires\": \"affaires\",\n  \"affairs\": \"affair\",\n  \"affe\": \"aff\",\n  \"affectatie\": \"affectatie\",\n  \"afgaan\": \"afgan\",\n  \"afgaf\": \"afgaf\",\n  \"afgas\": \"afgas\",\n  \"afgassen\": \"afgass\",\n  \"afgassenketel\": \"afgassenketel\",\n  \"afgassenketels\": \"afgassenketel\",\n  \"afgasssen\": \"afgasss\",\n  \"afgasstroom\": \"afgasstrom\",\n  \"afgebeten\": \"afgebet\",\n  \"afgebeuld\": \"afgebeuld\",\n  \"afgebonden\": \"afgebond\",\n  \"afgebouwd\": \"afgebouwd\",\n  \"afgebrande\": \"afgebrand\",\n  \"afgebroken\": \"afgebrok\",\n  \"afgedaan\": \"afgedan\",\n  \"afgedankt\": \"afgedankt\",\n  \"afgedankte\": \"afgedankt\",\n  \"afgedekt\": \"afgedekt\",\n  \"afgedicht\": \"afgedicht\",\n  \"afgedrukt\": \"afgedrukt\",\n  \"afgedwaald\": \"afgedwaald\",\n  \"afgedwongen\": \"afgedwong\",\n  \"afgefakkeld\": \"afgefakkeld\",\n  \"afgegaan\": \"afgegan\",\n  \"afgegeten\": \"afgeget\",\n  \"afgegeven\": \"afgegev\",\n  \"afgegooid\": \"afgegooid\",\n  \"afgegraven\": \"afgegrav\",\n  \"afgehaakt\": \"afgehaakt\",\n  \"afgehaald\": \"afgehaald\",\n  \"afgehuurd\": \"afgehuurd\",\n  \"afgekalfd\": \"afgekalfd\",\n  \"afgeketst\": \"afgeketst\",\n  \"afgekeurd\": \"afgekeurd\",\n  \"afgeknotte\": \"afgeknot\",\n  \"afgekoeld\": \"afgekoeld\",\n  \"afgekomen\": \"afgekom\",\n  \"afgekondigd\": \"afgekondigd\",\n  \"afgekondigde\": \"afgekondigd\",\n  \"afgelast\": \"afgelast\",\n  \"afgelasten\": \"afgelast\",\n  \"afgelegd\": \"afgelegd\",\n  \"afgelegen\": \"afgeleg\",\n  \"afgeleid\": \"afgeleid\",\n  \"afgeleide\": \"afgeleid\",\n  \"afgeleiden\": \"afgeleid\",\n  \"afgeleverd\": \"afgeleverd\",\n  \"afgeleverde\": \"afgeleverd\",\n  \"afgelopen\": \"afgelop\",\n  \"afgelost\": \"afgelost\",\n  \"afgemeten\": \"afgemet\",\n  \"afgenomen\": \"afgenom\",\n  \"afgeraden\": \"afgerad\",\n  \"afgerekend\": \"afgerek\",\n  \"afgericht\": \"afgericht\",\n  \"afgerond\": \"afgerond\",\n  \"afgeronde\": \"afgerond\",\n  \"afgeroomd\": \"afgeroomd\",\n  \"afgeschaft\": \"afgeschaft\",\n  \"afgescheiden\": \"afgescheid\",\n  \"afgeschilderd\": \"afgeschilderd\",\n  \"afgeschoten\": \"afgeschot\",\n  \"afgeschoven\": \"afgeschov\",\n  \"afgeschreven\": \"afgeschrev\",\n  \"afgeschrikt\": \"afgeschrikt\",\n  \"afgeschud\": \"afgeschud\",\n  \"afgesleten\": \"afgeslet\",\n  \"afgesloten\": \"afgeslot\",\n  \"afgesproken\": \"afgesprok\",\n  \"afgestaan\": \"afgestan\",\n  \"afgesteld\": \"afgesteld\",\n  \"afgestemd\": \"afgestemd\",\n  \"afgestoken\": \"afgestok\",\n  \"afgestorven\": \"afgestorv\",\n  \"afgestoten\": \"afgestot\",\n  \"afgestraald\": \"afgestraald\",\n  \"afgestudeerd\": \"afgestudeerd\",\n  \"afgestudeerde\": \"afgestudeerd\",\n  \"afgetimmerd\": \"afgetimmerd\",\n  \"afgetobd\": \"afgetobd\",\n  \"afgetreden\": \"afgetred\",\n  \"afgetrokken\": \"afgetrok\",\n  \"afgevaardigde\": \"afgevaardigd\",\n  \"afgevaardigden\": \"afgevaardigd\",\n  \"afgevallen\": \"afgevall\",\n  \"afgevangen\": \"afgevang\",\n  \"afgeveegd\": \"afgeveegd\",\n  \"afgeven\": \"afgev\",\n  \"afgevoerd\": \"afgevoerd\",\n  \"afgevoerde\": \"afgevoerd\",\n  \"afgewassen\": \"afgewass\",\n  \"afgeweekte\": \"afgeweekt\",\n  \"afgeweken\": \"afgewek\",\n  \"afgewend\": \"afgew\",\n  \"afgewenteld\": \"afgewenteld\",\n  \"afgewerkt\": \"afgewerkt\",\n  \"afgewerkte\": \"afgewerkt\",\n  \"afgeweten\": \"afgewet\",\n  \"afgewezen\": \"afgewez\",\n  \"afgewikkeld\": \"afgewikkeld\",\n  \"afgewisseld\": \"afgewisseld\",\n  \"afgewogen\": \"afgewog\",\n  \"afgezakt\": \"afgezakt\",\n  \"afgezegd\": \"afgezegd\",\n  \"afgezet\": \"afgezet\",\n  \"afgezette\": \"afgezet\",\n  \"afgezien\": \"afgezien\",\n  \"afgezogen\": \"afgezog\",\n  \"afgezonken\": \"afgezonk\",\n  \"afgezwakt\": \"afgezwakt\",\n  \"afgifte\": \"afgift\",\n  \"afging\": \"afging\",\n  \"afgoddelijk\": \"afgod\",\n  \"afgooien\": \"afgooi\",\n  \"afgraven\": \"afgrav\",\n  \"afgraving\": \"afgrav\",\n  \"afgrijselijk\": \"afgrijs\",\n  \"afgrijslijk\": \"afgrijs\",\n  \"afgrijzen\": \"afgrijz\",\n  \"afgrond\": \"afgrond\",\n  \"afgronddiep\": \"afgronddiep\",\n  \"afgrondmuil\": \"afgrondmuil\",\n  \"afgrondwijd\": \"afgrondwijd\",\n  \"afgunst\": \"afgunst\",\n  \"afhalen\": \"afhal\",\n  \"afhandelen\": \"afhandel\",\n  \"afhandeling\": \"afhandel\",\n  \"afhandelingsgebouwen\": \"afhandelingsgebouw\",\n  \"afhangen\": \"afhang\",\n  \"afhangt\": \"afhangt\",\n  \"afhankelijk\": \"afhank\",\n  \"afhankelijke\": \"afhank\",\n  \"afhankelijkheid\": \"afhank\",\n  \"afhield\": \"afhield\",\n  \"afhing\": \"afhing\",\n  \"afkalfden\": \"afkalfd\",\n  \"afkalft\": \"afkalft\",\n  \"afkalven\": \"afkalv\",\n  \"afkalving\": \"afkalv\",\n  \"afkalvingen\": \"afkalv\",\n  \"afkeer\": \"afker\",\n  \"afkeurde\": \"afkeurd\",\n  \"afkeuren\": \"afkeur\",\n  \"afkeurende\": \"afkeur\",\n  \"afkeuring\": \"afkeur\",\n  \"afklom\": \"afklom\",\n  \"afkochten\": \"afkocht\",\n  \"afkoeling\": \"afkoel\",\n  \"afkoelingsperiode\": \"afkoelingsperiod\",\n  \"afkomen\": \"afkom\",\n  \"afkomende\": \"afkom\",\n  \"afkomst\": \"afkomst\",\n  \"afkomstig\": \"afkomst\",\n  \"afkomstige\": \"afkomst\",\n  \"afkondigen\": \"afkond\",\n  \"afkoopregeling\": \"afkoopregel\",\n  \"afkoopsommen\": \"afkoopsomm\",\n  \"afkopen\": \"afkop\",\n  \"afkoppelen\": \"afkoppel\",\n  \"afkoppeling\": \"afkoppel\",\n  \"afkoppelingsmaatregelen\": \"afkoppelingsmaatregel\",\n  \"afkorting\": \"afkort\",\n  \"afkortingen\": \"afkort\",\n  \"afkwam\": \"afkwam\",\n  \"afkwamen\": \"afkwam\",\n  \"aflatoxine\": \"aflatoxin\",\n  \"afleggen\": \"aflegg\",\n  \"afleggend\": \"aflegg\",\n  \"afleiden\": \"afleid\",\n  \"afleidt\": \"afleidt\",\n  \"afleren\": \"afler\",\n  \"afleverbewijs\": \"afleverbewijs\",\n  \"afleverbonnen\": \"afleverbonn\",\n  \"afleverde\": \"afleverd\",\n  \"aflevering\": \"aflever\",\n  \"afleveringsbewijzen\": \"afleveringsbewijz\",\n  \"aflezen\": \"aflez\",\n  \"afloop\": \"aflop\",\n  \"aflopen\": \"aflop\",\n  \"aflopende\": \"aflop\",\n  \"aflossen\": \"afloss\",\n  \"afmartelde\": \"afmarteld\",\n  \"afmeren\": \"afmer\",\n  \"afmetingen\": \"afmet\",\n  \"afnam\": \"afnam\",\n  \"afname\": \"afnam\",\n  \"afnamegarantie\": \"afnamegarantie\",\n  \"afnamen\": \"afnam\",\n  \"afneemt\": \"afneemt\",\n  \"afnemen\": \"afnem\",\n  \"afnemende\": \"afnem\",\n  \"afnemer\": \"afnemer\",\n  \"afnemers\": \"afnemer\",\n  \"afplaggen\": \"afplagg\",\n  \"afpompniveau\": \"afpompniveau\",\n  \"afrastering\": \"afraster\",\n  \"afrekening\": \"afreken\",\n  \"afrekeningen\": \"afreken\",\n  \"afrekenschandaal\": \"afrekenschandal\",\n  \"afremmende\": \"afremm\",\n  \"afremt\": \"afremt\",\n  \"afrennende\": \"afrenn\",\n  \"africa\": \"africa\",\n  \"afrika\": \"afrika\",\n  \"afrikaans\": \"afrikan\",\n  \"afrikaanse\": \"afrikan\",\n  \"afrikahaven\": \"afrikahav\",\n  \"afrit\": \"afrit\",\n  \"afritten\": \"afrit\",\n  \"afroep\": \"afroep\",\n  \"afroming\": \"afrom\",\n  \"afromingspercentage\": \"afromingspercentag\",\n  \"afromingsplan\": \"afromingsplan\",\n  \"afronden\": \"afrond\",\n  \"afrondingsfout\": \"afrondingsfout\",\n  \"afschaduwing\": \"afschaduw\",\n  \"afschaffen\": \"afschaff\",\n  \"afschaffing\": \"afschaff\",\n  \"afschatting\": \"afschat\",\n  \"afscheid\": \"afscheid\",\n  \"afscheiden\": \"afscheid\",\n  \"afscheider\": \"afscheider\",\n  \"afscheiders\": \"afscheider\",\n  \"afscheiding\": \"afscheid\",\n  \"afscheidingen\": \"afscheid\",\n  \"afscheidingsbewegingen\": \"afscheidingsbeweg\",\n  \"afscheids\": \"afscheid\",\n  \"afschermen\": \"afscherm\",\n  \"afschermende\": \"afscherm\",\n  \"afschieten\": \"afschiet\",\n  \"afschot\": \"afschot\",\n  \"afschotplaten\": \"afschotplat\",\n  \"afschotsysteem\": \"afschotsystem\",\n  \"afschrijven\": \"afschrijv\",\n  \"afschrijving\": \"afschrijv\",\n  \"afschrijvingen\": \"afschrijv\",\n  \"afschrijvingstermijn\": \"afschrijvingstermijn\",\n  \"afschrijvingsvoordelen\": \"afschrijvingsvoordel\",\n  \"afschrikken\": \"afschrik\",\n  \"afschrikking\": \"afschrik\",\n  \"afschrikkingsmacht\": \"afschrikkingsmacht\",\n  \"afschudden\": \"afschud\",\n  \"afschuddende\": \"afschud\",\n  \"afschuift\": \"afschuift\",\n  \"afschuiven\": \"afschuiv\",\n  \"afschuwelijk\": \"afschuw\",\n  \"afschuwelijke\": \"afschuw\",\n  \"afschuwelijkheid\": \"afschuw\",\n  \"afslaat\": \"afslat\",\n  \"afslag\": \"afslag\",\n  \"afslanking\": \"afslank\",\n  \"afslijten\": \"afslijt\",\n  \"afsloof\": \"afslof\",\n  \"afsloot\": \"afslot\",\n  \"afsluitbare\": \"afsluit\",\n  \"afsluitdam\": \"afsluitdam\",\n  \"afsluitdijk\": \"afsluitdijk\",\n  \"afsluiten\": \"afsluit\",\n  \"afsluitende\": \"afsluit\",\n  \"afsluiter\": \"afsluiter\",\n  \"afsluiters\": \"afsluiter\",\n  \"afsluiting\": \"afsluit\",\n  \"afsluitingen\": \"afsluit\",\n  \"afsluitmogelijkheid\": \"afsluitmog\",\n  \"afsneed\": \"afsned\",\n  \"afsnijden\": \"afsnijd\",\n  \"afsnijdingen\": \"afsnijd\",\n  \"afspeelt\": \"afspeelt\",\n  \"afspiegelt\": \"afspiegelt\",\n  \"afspraak\": \"afsprak\",\n  \"afspraakjes\": \"afspraakjes\",\n  \"afspraken\": \"afsprak\",\n  \"afspreken\": \"afsprek\",\n  \"afsprong\": \"afsprong\",\n  \"afstaan\": \"afstan\",\n  \"afstaande\": \"afstaand\",\n  \"afstand\": \"afstand\",\n  \"afstanden\": \"afstand\",\n  \"afstandgevoeligheid\": \"afstandgevoel\",\n  \"afstandstrekkers\": \"afstandstrekker\",\n  \"afstandsverwarming\": \"afstandsverwarm\",\n  \"afstandvluchten\": \"afstandvlucht\",\n  \"afstemmen\": \"afstemm\",\n  \"afstemming\": \"afstemm\",\n  \"afstempelen\": \"afstempel\",\n  \"afsterven\": \"afsterv\",\n  \"afsterving\": \"afsterv\",\n  \"afstierven\": \"afstierv\",\n  \"afstoffen\": \"afstoff\",\n  \"afstopprocedure\": \"afstopprocedur\",\n  \"afstoten\": \"afstot\",\n  \"afstoting\": \"afstot\",\n  \"afstromend\": \"afstrom\",\n  \"afstudeeronderzoek\": \"afstudeeronderzoek\",\n  \"afstudeerscriptie\": \"afstudeerscriptie\",\n  \"afstudeerstage\": \"afstudeerstag\",\n  \"afstudeert\": \"afstudeert\",\n  \"afstudeerverslag\": \"afstudeerverslag\",\n  \"afstuderen\": \"afstuder\",\n  \"afstuiting\": \"afstuit\",\n  \"aftakelen\": \"aftakel\",\n  \"aftap\": \"aftap\",\n  \"aftapinstallaties\": \"aftapinstallaties\",\n  \"aftappen\": \"aftapp\",\n  \"aftast\": \"aftast\",\n  \"aftellen\": \"aftell\",\n  \"aftellende\": \"aftell\",\n  \"afternoon\": \"afternon\",\n  \"aftimmerlat\": \"aftimmerlat\",\n  \"aftrek\": \"aftrek\",\n  \"aftrekbaar\": \"aftrek\",\n  \"aftrekbare\": \"aftrek\",\n  \"aftrekken\": \"aftrek\",\n  \"aftrekposten\": \"aftrekpost\",\n  \"afval\": \"afval\",\n  \"afvalaanbod\": \"afvalaanbod\",\n  \"afvaladviesmarkt\": \"afvaladviesmarkt\",\n  \"afvalbakken\": \"afvalbak\",\n  \"afvalbedrijf\": \"afvalbedrijf\",\n  \"afvalbedrijven\": \"afvalbedrijv\",\n  \"afvalbehandeling\": \"afvalbehandel\",\n  \"afvalbeheer\": \"afvalbeher\",\n  \"afvalbeheersing\": \"afvalbeheers\",\n  \"afvalbeheerssystemen\": \"afvalbeheerssystem\",\n  \"afvalbeleid\": \"afvalbeleid\",\n  \"afvalberg\": \"afvalberg\",\n  \"afvalberging\": \"afvalberg\",\n  \"afvalbeurs\": \"afvalbeur\",\n  \"afvalbewerking\": \"afvalbewerk\",\n  \"afvalbranche\": \"afvalbranch\",\n  \"afvalbranden\": \"afvalbrand\",\n  \"afvalcijfers\": \"afvalcijfer\",\n  \"afvalcontainer\": \"afvalcontainer\",\n  \"afvalcontainers\": \"afvalcontainer\",\n  \"afvalcontract\": \"afvalcontract\",\n  \"afvalcontrole\": \"afvalcontrol\",\n  \"afvaldepot\": \"afvaldepot\",\n  \"afvaldumpingen\": \"afvaldump\",\n  \"afvaleisen\": \"afvaleis\",\n  \"afvalenergie\": \"afvalenergie\",\n  \"afvalexporteur\": \"afvalexporteur\",\n  \"afvalfase\": \"afvalfas\",\n  \"afvalfracties\": \"afvalfracties\",\n  \"afvalfusie\": \"afvalfusie\",\n  \"afvalgas\": \"afvalgas\",\n  \"afvalgassen\": \"afvalgass\",\n  \"afvalgebied\": \"afvalgebied\",\n  \"afvalgigant\": \"afvalgigant\",\n  \"afvalgips\": \"afvalgip\",\n  \"afvalgipslozingen\": \"afvalgipsloz\",\n  \"afvalglas\": \"afvalglas\",\n  \"afvalgranulator\": \"afvalgranulator\",\n  \"afvalheffing\": \"afvalheff\",\n  \"afvalhergebruik\": \"afvalhergebruik\",\n  \"afvalhopen\": \"afvalhop\",\n  \"afvalhout\": \"afvalhout\",\n  \"afvalhoutverwerkings\": \"afvalhoutverwerk\",\n  \"afvalinzamelaars\": \"afvalinzamelar\",\n  \"afvalinzameling\": \"afvalinzamel\",\n  \"afvalinzamelings\": \"afvalinzamel\",\n  \"afvalinzamelingssysteem\": \"afvalinzamelingssystem\",\n  \"afvalinzamelmiddelen\": \"afvalinzamelmiddel\",\n  \"afvalinzamelparken\": \"afvalinzamelpark\",\n  \"afvalinzamelsysteem\": \"afvalinzamelsystem\",\n  \"afvalinzamelsystemen\": \"afvalinzamelsystem\",\n  \"afvalketen\": \"afvalket\",\n  \"afvallozingen\": \"afvalloz\",\n  \"afvalmanagement\": \"afvalmanagement\",\n  \"afvalmanagementsysteem\": \"afvalmanagementsystem\",\n  \"afvalmarkt\": \"afvalmarkt\",\n  \"afvalmaterialen\": \"afvalmaterial\",\n  \"afvalolie\": \"afvalolie\",\n  \"afvalonderneming\": \"afvalondernem\",\n  \"afvalonderzoek\": \"afvalonderzoek\",\n  \"afvalontdoeners\": \"afvalontdoener\",\n  \"afvalopslag\": \"afvalopslag\",\n  \"afvaloven\": \"afvalov\",\n  \"afvalovens\": \"afvaloven\",\n  \"afvaloverlegorgaan\": \"afvaloverlegorgan\",\n  \"afvaloverlegorganen\": \"afvaloverlegorgan\",\n  \"afvalpersen\": \"afvalpers\",\n  \"afvalplan\": \"afvalplan\",\n  \"afvalplastic\": \"afvalplastic\",\n  \"afvalpreventie\": \"afvalpreventie\",\n  \"afvalpreventiemogelijkheden\": \"afvalpreventiemog\",\n  \"afvalpreventieproject\": \"afvalpreventieproject\",\n  \"afvalpreventieteam\": \"afvalpreventieteam\",\n  \"afvalprobleem\": \"afvalproblem\",\n  \"afvalproblemen\": \"afvalproblem\",\n  \"afvalprodukt\": \"afvalprodukt\",\n  \"afvalprodukten\": \"afvalprodukt\",\n  \"afvalproduktie\": \"afvalproduktie\",\n  \"afvalrecuperatie\": \"afvalrecuperatie\",\n  \"afvalrecycling\": \"afvalrecycl\",\n  \"afvalreductie\": \"afvalreductie\",\n  \"afvalreductieprogramma\": \"afvalreductieprogramma\",\n  \"afvalregelgeving\": \"afvalregelgev\",\n  \"afvalregime\": \"afvalregim\",\n  \"afvalregio\": \"afvalregio\",\n  \"afvalregistratie\": \"afvalregistratie\",\n  \"afvalscheider\": \"afvalscheider\",\n  \"afvalscheiding\": \"afvalscheid\",\n  \"afvalscheidingseiland\": \"afvalscheidingseiland\",\n  \"afvalscheidingsfabriek\": \"afvalscheidingsfabriek\",\n  \"afvalscheidingsinstallatie\": \"afvalscheidingsinstallatie\",\n  \"afvalscheidingsniveaus\": \"afvalscheidingsniveaus\",\n  \"afvalsector\": \"afvalsector\",\n  \"afvalslib\": \"afvalslib\",\n  \"afvalslurry\": \"afvalslurry\",\n  \"afvalsoort\": \"afvalsoort\",\n  \"afvalstadium\": \"afvalstadium\",\n  \"afvalstof\": \"afvalstof\",\n  \"afvalstoffen\": \"afvalstoff\",\n  \"afvalstoffenbeheer\": \"afvalstoffenbeher\",\n  \"afvalstoffenbeleid\": \"afvalstoffenbeleid\",\n  \"afvalstoffenboekhouding\": \"afvalstoffenboekhoud\",\n  \"afvalstoffendiensten\": \"afvalstoffendienst\",\n  \"afvalstoffenfonds\": \"afvalstoffenfond\",\n  \"afvalstoffenheffing\": \"afvalstoffenheff\",\n  \"afvalstoffenmaatschappij\": \"afvalstoffenmaatschappij\",\n  \"afvalstoffenplan\": \"afvalstoffenplan\",\n  \"afvalstoffenregister\": \"afvalstoffenregister\",\n  \"afvalstoffenregistratie\": \"afvalstoffenregistratie\",\n  \"afvalstoffenregistratiesysteem\": \"afvalstoffenregistratiesystem\",\n  \"afvalstoffenvergunning\": \"afvalstoffenvergunn\",\n  \"afvalstoffenverordeningen\": \"afvalstoffenverorden\",\n  \"afvalstoffenvervoerders\": \"afvalstoffenvervoerder\",\n  \"afvalstoffenverwerking\": \"afvalstoffenverwerk\",\n  \"afvalstoffenverwijdering\": \"afvalstoffenverwijder\",\n  \"afvalstoffenwet\": \"afvalstoffenwet\",\n  \"afvalstoffenwetgeving\": \"afvalstoffenwetgev\",\n  \"afvalstort\": \"afvalstort\",\n  \"afvalstortplaats\": \"afvalstortplat\",\n  \"afvalstortplaatsen\": \"afvalstortplaats\",\n  \"afvalstrategie\": \"afvalstrategie\",\n  \"afvalstromen\": \"afvalstrom\",\n  \"afvalstroom\": \"afvalstrom\",\n  \"afvalsturing\": \"afvalstur\",\n  \"afvalsymposium\": \"afvalsymposium\",\n  \"afvalsysteem\": \"afvalsystem\",\n  \"afvalsystemen\": \"afvalsystem\",\n  \"afvaltak\": \"afvaltak\",\n  \"afvaltarief\": \"afvaltarief\",\n  \"afvaltarieven\": \"afvaltariev\",\n  \"afvaltechniek\": \"afvaltechniek\",\n  \"afvaltechnologie\": \"afvaltechnologie\",\n  \"afvaltoerisme\": \"afvaltoerism\",\n  \"afvaltransport\": \"afvaltransport\",\n  \"afvaltransporten\": \"afvaltransport\",\n  \"afvaltransporterende\": \"afvaltransporter\",\n  \"afvaltransporteurs\": \"afvaltransporteur\",\n  \"afvaltrucks\": \"afvaltruck\",\n  \"afvalverbrander\": \"afvalverbrander\",\n  \"afvalverbranders\": \"afvalverbrander\",\n  \"afvalverbranding\": \"afvalverbrand\",\n  \"afvalverbrandingscentrale\": \"afvalverbrandingscentral\",\n  \"afvalverbrandingsinstallatie\": \"afvalverbrandingsinstallatie\",\n  \"afvalverbrandingsinstallaties\": \"afvalverbrandingsinstallaties\",\n  \"afvalverbrandingsoven\": \"afvalverbrandingsov\",\n  \"afvalverbrandingsovens\": \"afvalverbrandingsoven\",\n  \"afvalverdichtingsinstallaties\": \"afvalverdichtingsinstallaties\",\n  \"afvalvergassing\": \"afvalvergass\",\n  \"afvalverkleiners\": \"afvalverkleiner\",\n  \"afvalvermindering\": \"afvalverminder\",\n  \"afvalverpakking\": \"afvalverpak\",\n  \"afvalvervoerpapieren\": \"afvalvervoerpapier\",\n  \"afvalverwerkend\": \"afvalverwerk\",\n  \"afvalverwerkende\": \"afvalverwerk\",\n  \"afvalverwerker\": \"afvalverwerker\",\n  \"afvalverwerkers\": \"afvalverwerker\",\n  \"afvalverwerking\": \"afvalverwerk\",\n  \"afvalverwerkings\": \"afvalverwerk\",\n  \"afvalverwerkingsbedrijf\": \"afvalverwerkingsbedrijf\",\n  \"afvalverwerkingsbedrijven\": \"afvalverwerkingsbedrijv\",\n  \"afvalverwerkingsbranche\": \"afvalverwerkingsbranch\",\n  \"afvalverwerkingscentrum\": \"afvalverwerkingscentrum\",\n  \"afvalverwerkingsdiensten\": \"afvalverwerkingsdienst\",\n  \"afvalverwerkingsfabriek\": \"afvalverwerkingsfabriek\",\n  \"afvalverwerkingsinrichtingen\": \"afvalverwerkingsinricht\",\n  \"afvalverwerkingsinstallatie\": \"afvalverwerkingsinstallatie\",\n  \"afvalverwerkingsinstallaties\": \"afvalverwerkingsinstallaties\",\n  \"afvalverwerkingsmethoden\": \"afvalverwerkingsmethod\",\n  \"afvalverwerkingsplan\": \"afvalverwerkingsplan\",\n  \"afvalverwerkingstechnieken\": \"afvalverwerkingstechniek\",\n  \"afvalverwerkingstechnologieën\": \"afvalverwerkingstechnologieen\",\n  \"afvalverwerkingsvoorstel\": \"afvalverwerkingsvoorstel\",\n  \"afvalverwijderaars\": \"afvalverwijderar\",\n  \"afvalverwijdering\": \"afvalverwijder\",\n  \"afvalverwijderingsbedrijf\": \"afvalverwijderingsbedrijf\",\n  \"afvalverwijderingsdeskundigen\": \"afvalverwijderingsdeskund\",\n  \"afvalverwijderingsgebied\": \"afvalverwijderingsgebied\",\n  \"afvalverzamelaar\": \"afvalverzamelar\",\n  \"afvalvolume\": \"afvalvolum\",\n  \"afvalvoorzieningen\": \"afvalvoorzien\",\n  \"afvalwarmte\": \"afvalwarmt\",\n  \"afvalwarmteboiler\": \"afvalwarmteboiler\",\n  \"afvalwater\": \"afvalwater\",\n  \"afvalwaterbehandelaars\": \"afvalwaterbehandelar\",\n  \"afvalwaterbehandeling\": \"afvalwaterbehandel\",\n  \"afvalwaterbehandelingsinstallatie\": \"afvalwaterbehandelingsinstallatie\",\n  \"afvalwaterheffing\": \"afvalwaterheff\",\n  \"afvalwaterproblematiek\": \"afvalwaterproblematiek\",\n  \"afvalwaterprojecten\": \"afvalwaterproject\",\n  \"afvalwaterreiniger\": \"afvalwaterreiniger\",\n  \"afvalwatersector\": \"afvalwatersector\",\n  \"afvalwaterstromen\": \"afvalwaterstrom\",\n  \"afvalwaterstroom\": \"afvalwaterstrom\",\n  \"afvalwatertechnieken\": \"afvalwatertechniek\",\n  \"afvalwaterzuivering\": \"afvalwaterzuiver\",\n  \"afvalwaterzuiveringsinstallatie\": \"afvalwaterzuiveringsinstallatie\",\n  \"afvalwaterzuiveringsinstallaties\": \"afvalwaterzuiveringsinstallaties\",\n  \"afvalweging\": \"afvalweg\",\n  \"afvalwereld\": \"afvalwereld\",\n  \"afvalwetten\": \"afvalwet\",\n  \"afvalwinkel\": \"afvalwinkel\",\n  \"afvalzak\": \"afvalzak\",\n  \"afvalzakken\": \"afvalzak\",\n  \"afvalzorg\": \"afvalzorg\",\n  \"afvalzuiveringsslib\": \"afvalzuiveringsslib\",\n  \"afvangen\": \"afvang\",\n  \"afvlakking\": \"afvlak\",\n  \"afvliegen\": \"afvlieg\",\n  \"afvloeien\": \"afvloei\",\n  \"afvoer\": \"afvoer\",\n  \"afvoerbonnen\": \"afvoerbonn\",\n  \"afvoercapaciteit\": \"afvoercapaciteit\",\n  \"afvoerdebieten\": \"afvoerdebiet\",\n  \"afvoeren\": \"afvoer\",\n  \"afvoergassen\": \"afvoergass\",\n  \"afvoergoot\": \"afvoergot\",\n  \"afvoerkosten\": \"afvoerkost\",\n  \"afvoerloze\": \"afvoerloz\",\n  \"afvoerlucht\": \"afvoerlucht\",\n  \"afvoerpijp\": \"afvoerpijp\",\n  \"afvoerregelaar\": \"afvoerregelar\",\n  \"afvoerroutes\": \"afvoerroutes\",\n  \"afvoersysteem\": \"afvoersystem\",\n  \"afvragen\": \"afvrag\",\n  \"afvragende\": \"afvrag\",\n  \"afvraging\": \"afvrag\",\n  \"afvroeg\": \"afvroeg\",\n  \"afwacht\": \"afwacht\",\n  \"afwachten\": \"afwacht\",\n  \"afwachtend\": \"afwacht\",\n  \"afwachtende\": \"afwacht\",\n  \"afwachting\": \"afwacht\",\n  \"afwachtingen\": \"afwacht\",\n  \"afwachtten\": \"afwacht\",\n  \"afwasbare\": \"afwas\",\n  \"afwasmachine\": \"afwasmachin\",\n  \"afwasmiddel\": \"afwasmiddel\",\n  \"afwasmiddelen\": \"afwasmiddel\",\n  \"afwassen\": \"afwass\",\n  \"afwateringsstelsel\": \"afwateringsstelsel\",\n  \"afwateringssysteem\": \"afwateringssystem\",\n  \"afweek\": \"afwek\",\n  \"afweersysteem\": \"afweersystem\",\n  \"afwees\": \"afwes\",\n  \"afweging\": \"afweg\",\n  \"afwegingen\": \"afweg\",\n  \"afwendende\": \"afwend\",\n  \"afwerend\": \"afwer\",\n  \"afwerende\": \"afwer\",\n  \"afwering\": \"afwer\",\n  \"afwerken\": \"afwerk\",\n  \"afwerking\": \"afwerk\",\n  \"afwerpt\": \"afwerpt\",\n  \"afweten\": \"afwet\",\n  \"afwezig\": \"afwez\",\n  \"afwezige\": \"afwez\",\n  \"afwezigheid\": \"afwez\",\n  \"afwijken\": \"afwijk\",\n  \"afwijkende\": \"afwijk\",\n  \"afwijkingen\": \"afwijk\",\n  \"afwijkt\": \"afwijkt\",\n  \"afwijst\": \"afwijst\",\n  \"afwijzen\": \"afwijz\",\n  \"afwijzend\": \"afwijz\",\n  \"afwijzing\": \"afwijz\",\n  \"afwikkeling\": \"afwikkel\",\n  \"afwisselend\": \"afwissel\",\n  \"afwisseling\": \"afwissel\",\n  \"afzeggen\": \"afzegg\",\n  \"afzender\": \"afzender\",\n  \"afzet\": \"afzet\",\n  \"afzetbaar\": \"afzet\",\n  \"afzetbaarheid\": \"afzet\",\n  \"afzetcijfers\": \"afzetcijfer\",\n  \"afzetcontainers\": \"afzetcontainer\",\n  \"afzetcontracten\": \"afzetcontract\",\n  \"afzetgebied\": \"afzetgebied\",\n  \"afzetinstallaties\": \"afzetinstallaties\",\n  \"afzetkanalen\": \"afzetkanal\",\n  \"afzetmarkt\": \"afzetmarkt\",\n  \"afzetmogelijkheden\": \"afzetmog\",\n  \"afzetruimte\": \"afzetruimt\",\n  \"afzetsysteem\": \"afzetsystem\",\n  \"afzetsystemen\": \"afzetsystem\",\n  \"afzetten\": \"afzet\",\n  \"afzettingen\": \"afzet\",\n  \"afzien\": \"afzien\",\n  \"afzienbare\": \"afzien\",\n  \"afziet\": \"afziet\",\n  \"afzijdig\": \"afzijd\",\n  \"afzinken\": \"afzink\",\n  \"afzonderlijk\": \"afzonder\",\n  \"afzonderlijke\": \"afzonder\",\n  \"afzuiging\": \"afzuig\",\n  \"afzuigsysteem\": \"afzuigsystem\",\n  \"afzwakken\": \"afzwak\",\n  \"afzweefde\": \"afzweefd\",\n  \"ag\": \"ag\",\n  \"agalev\": \"agalev\",\n  \"ageert\": \"ageert\",\n  \"agency\": \"agency\",\n  \"agenda\": \"agenda\",\n  \"agengy\": \"agengy\",\n  \"agent\": \"agent\",\n  \"agenten\": \"agent\",\n  \"agents\": \"agent\",\n  \"agentschap\": \"agentschap\",\n  \"agglomeraat\": \"agglomerat\",\n  \"agglomeratie\": \"agglomeratie\",\n  \"aggregates\": \"aggregates\",\n  \"aggressieve\": \"aggressiev\",\n  \"aghazadeh\": \"aghazadeh\",\n  \"aghel\": \"aghel\",\n  \"agip\": \"agip\",\n  \"agpo\": \"agpo\",\n  \"agpu\": \"agpu\",\n  \"agrariër\": \"agrarier\",\n  \"agrariërs\": \"agrarier\",\n  \"agrarisch\": \"agrarisch\",\n  \"agrarische\": \"agrarisch\",\n  \"agreement\": \"agreement\",\n  \"agressie\": \"agressie\",\n  \"agressief\": \"agressief\",\n  \"agressieve\": \"agressiev\",\n  \"agri\": \"agri\",\n  \"agribusiness\": \"agribusines\",\n  \"agricultural\": \"agricultural\",\n  \"agriculture\": \"agricultur\",\n  \"agrisearch\": \"agrisearch\",\n  \"agritechniek\": \"agritechniek\",\n  \"agro\": \"agro\",\n  \"agrobiologisch\": \"agrobiologisch\",\n  \"agrobiologische\": \"agrobiologisch\",\n  \"agrobusiness\": \"agrobusines\",\n  \"agrochemicaliën\": \"agrochemicalien\",\n  \"agrocomplex\": \"agrocomplex\",\n  \"agrotechniek\": \"agrotechniek\",\n  \"agt\": \"agt\",\n  \"agterberg\": \"agterberg\",\n  \"ah\": \"ah\",\n  \"ahold\": \"ahold\",\n  \"ahrensburg\": \"ahrensburg\",\n  \"ahs\": \"ahs\",\n  \"ahvaz\": \"ahvaz\",\n  \"ai\": \"ai\",\n  \"aib\": \"aib\",\n  \"aicom\": \"aicom\",\n  \"aid\": \"aid\",\n  \"aids\": \"aid\",\n  \"aimabel\": \"aimabel\",\n  \"air\": \"air\",\n  \"airbag\": \"airbag\",\n  \"airborn\": \"airborn\",\n  \"airconditioning\": \"aircondition\",\n  \"airconditioningssystemen\": \"airconditioningssystem\",\n  \"aircraft\": \"aircraft\",\n  \"aires\": \"aires\",\n  \"airforce\": \"airforc\",\n  \"airguns\": \"airgun\",\n  \"airmiles\": \"airmiles\",\n  \"airport\": \"airport\",\n  \"airs\": \"air\",\n  \"airstrip\": \"airstrip\",\n  \"airways\": \"airway\",\n  \"aisance\": \"aisanc\",\n  \"aj\": \"aj\",\n  \"ajakkes\": \"ajakkes\",\n  \"ajo\": \"ajo\",\n  \"ak\": \"ak\",\n  \"akademie\": \"akademie\",\n  \"akaha\": \"akaha\",\n  \"akar\": \"akar\",\n  \"akatsuki\": \"akatsuki\",\n  \"akelig\": \"akel\",\n  \"akelige\": \"akel\",\n  \"aken\": \"aken\",\n  \"akense\": \"aken\",\n  \"akker\": \"akker\",\n  \"akkerbouw\": \"akkerbouw\",\n  \"akkerbouwareaal\": \"akkerbouwareaal\",\n  \"akkerbouwbedrijf\": \"akkerbouwbedrijf\",\n  \"akkerbouwbedrijven\": \"akkerbouwbedrijv\",\n  \"akkerbouwdeskundige\": \"akkerbouwdeskund\",\n  \"akkerbouwer\": \"akkerbouwer\",\n  \"akkerbouwers\": \"akkerbouwer\",\n  \"akkerbouwgebied\": \"akkerbouwgebied\",\n  \"akkerbouwmanifestaties\": \"akkerbouwmanifestaties\",\n  \"akkergronden\": \"akkergrond\",\n  \"akkerpercelen\": \"akkerpercel\",\n  \"akkerranden\": \"akkerrand\",\n  \"akkers\": \"akker\",\n  \"akkoord\": \"akkoord\",\n  \"akkoorden\": \"akkoord\",\n  \"akoestisch\": \"akoestisch\",\n  \"akoestische\": \"akoestisch\",\n  \"akros\": \"akros\",\n  \"akte\": \"akt\",\n  \"aktekoffertje\": \"aktekoffertj\",\n  \"aktie\": \"aktie\",\n  \"akzo\": \"akzo\",\n  \"al\": \"al\",\n  \"alara\": \"alara\",\n  \"alarm\": \"alarm\",\n  \"alarmerend\": \"alarmer\",\n  \"alarmerende\": \"alarmer\",\n  \"alarmnummer\": \"alarmnummer\",\n  \"alaska\": \"alaska\",\n  \"albast\": \"albast\",\n  \"albasten\": \"albast\",\n  \"albers\": \"alber\",\n  \"albert\": \"albert\",\n  \"alberts\": \"albert\",\n  \"albicilla\": \"albicilla\",\n  \"alblasserdam\": \"alblasserdam\",\n  \"alblasserwaard\": \"alblasserwaard\",\n  \"alcohol\": \"alcohol\",\n  \"alcoholbussen\": \"alcoholbuss\",\n  \"alcoholethersulfaten\": \"alcoholethersulfat\",\n  \"alcoholethoxylaten\": \"alcoholethoxylat\",\n  \"alcoholethoxysulfaten\": \"alcoholethoxysulfat\",\n  \"alcoholethyloxylaten\": \"alcoholethyloxylat\",\n  \"alcoholgevoelige\": \"alcoholgevoel\",\n  \"aldaar\": \"aldar\",\n  \"aldehyde\": \"aldehyd\",\n  \"aldehyden\": \"aldehyd\",\n  \"aldel\": \"aldel\",\n  \"alderney\": \"alderney\",\n  \"alders\": \"alder\",\n  \"aldo\": \"aldo\",\n  \"aldus\": \"aldus\",\n  \"aleksej\": \"aleksej\",\n  \"alentejo\": \"alentejo\",\n  \"alert\": \"alert\",\n  \"alerte\": \"alert\",\n  \"alex\": \"alex\",\n  \"alexander\": \"alexander\",\n  \"alexanderkazerne\": \"alexanderkazern\",\n  \"alexanderstraat\": \"alexanderstrat\",\n  \"alexanderveld\": \"alexanderveld\",\n  \"alfa\": \"alfa\",\n  \"alfabetisch\": \"alfabetisch\",\n  \"alfabetische\": \"alfabetisch\",\n  \"alfalfa\": \"alfalfa\",\n  \"alfred\": \"alfred\",\n  \"alg\": \"alg\",\n  \"algaetec\": \"algaetec\",\n  \"algarije\": \"algarij\",\n  \"algarijnse\": \"algarijn\",\n  \"algeheel\": \"algehel\",\n  \"algehele\": \"algehel\",\n  \"algemeen\": \"algemen\",\n  \"algemeene\": \"algemen\",\n  \"algemene\": \"algemen\",\n  \"algemenere\": \"algemener\",\n  \"algen\": \"alg\",\n  \"algendoek\": \"algendoek\",\n  \"algengroei\": \"algengroei\",\n  \"algenvorming\": \"algenvorm\",\n  \"algerije\": \"algerij\",\n  \"algerijnse\": \"algerijn\",\n  \"algrauwe\": \"algrauw\",\n  \"alhoewel\": \"alhoewel\",\n  \"alicia\": \"alicia\",\n  \"alifatische\": \"alifatisch\",\n  \"alima\": \"alima\",\n  \"alinea\": \"alinea\",\n  \"alkali\": \"alkali\",\n  \"alkalimetalen\": \"alkalimetal\",\n  \"alkaline\": \"alkalin\",\n  \"alkalische\": \"alkalisch\",\n  \"alkalisilicaatreactie\": \"alkalisilicaatreactie\",\n  \"alken\": \"alk\",\n  \"alkmaar\": \"alkmar\",\n  \"alkrachtig\": \"alkracht\",\n  \"alkrachtige\": \"alkracht\",\n  \"alkreflex\": \"alkreflex\",\n  \"alkylbenzeen\": \"alkylbenzen\",\n  \"alkyleringsproces\": \"alkyleringsproces\",\n  \"alkylfenol\": \"alkylfenol\",\n  \"alkylfenols\": \"alkylfenol\",\n  \"alkylphenol\": \"alkylphenol\",\n  \"all\": \"all\",\n  \"allaert\": \"allaert\",\n  \"allah\": \"allah\",\n  \"allang\": \"allang\",\n  \"alle\": \"all\",\n  \"àlle\": \"àlle\",\n  \"allebei\": \"allebei\",\n  \"alledaagse\": \"alledag\",\n  \"allee\": \"allee\",\n  \"alleen\": \"allen\",\n  \"alléen\": \"allen\",\n  \"allèen\": \"allèen\",\n  \"alleén\": \"allen\",\n  \"alléén\": \"allen\",\n  \"alleenop\": \"alleenop\",\n  \"alleenstaande\": \"alleenstaand\",\n  \"alleenstaanden\": \"alleenstaand\",\n  \"alleenzijn\": \"alleenzijn\",\n  \"allegaar\": \"allegar\",\n  \"allegaartafel\": \"allegaartafel\",\n  \"allegheny\": \"allegheny\",\n  \"allelijn\": \"allelijn\",\n  \"allemaal\": \"allemal\",\n  \"allen\": \"all\",\n  \"aller\": \"aller\",\n  \"alleraardigst\": \"alleraardigst\",\n  \"allerdiepste\": \"allerdiepst\",\n  \"allereenvoudigste\": \"allereenvoudigst\",\n  \"allereerst\": \"allereerst\",\n  \"allereerste\": \"allereerst\",\n  \"allerellendigst\": \"allerellendigst\",\n  \"allerenigste\": \"allerenigst\",\n  \"allergaartafel\": \"allergaartafel\",\n  \"allergeheimste\": \"allergeheimst\",\n  \"allergezelligst\": \"allergezelligst\",\n  \"allergezelligste\": \"allergezelligst\",\n  \"allergie\": \"allergie\",\n  \"allergrootste\": \"allergrootst\",\n  \"allerhande\": \"allerhand\",\n  \"allerhatelijkst\": \"allerhatelijkst\",\n  \"allerhoogste\": \"allerhoogst\",\n  \"allerjongste\": \"allerjongst\",\n  \"allerkuiste\": \"allerkuist\",\n  \"allerlaatste\": \"allerlaatst\",\n  \"allerlei\": \"allerlei\",\n  \"allerliefst\": \"allerliefst\",\n  \"allerliefste\": \"allerliefst\",\n  \"allermenselijkste\": \"allermenselijkst\",\n  \"allerminst\": \"allerminst\",\n  \"allerminste\": \"allerminst\",\n  \"allernieuwste\": \"allernieuwst\",\n  \"alleronaangenaamst\": \"alleronaangenaamst\",\n  \"alleronaardigst\": \"alleronaardigst\",\n  \"alleroneerbiedigst\": \"alleroneerbiedigst\",\n  \"allerongelukkigste\": \"allerongelukkigst\",\n  \"allerstomst\": \"allerstomst\",\n  \"allerveiligst\": \"allerveiligst\",\n  \"allerverschrikkelijkste\": \"allerverschrikkelijkst\",\n  \"allervreemdste\": \"allervreemdst\",\n  \"allervriendelijkste\": \"allervriendelijkst\",\n  \"alles\": \"alles\",\n  \"allesbehalve\": \"allesbehalv\",\n  \"allesomvattend\": \"allesomvat\",\n  \"alleswat\": \"alleswat\",\n  \"alliance\": \"allianc\",\n  \"alliantie\": \"alliantie\",\n  \"allianties\": \"allianties\",\n  \"allied\": \"allied\",\n  \"allier\": \"allier\",\n  \"alligator\": \"alligator\",\n  \"allocatiesysteem\": \"allocatiesystem\",\n  \"allowences\": \"allowences\",\n  \"allsky\": \"allsky\",\n  \"alm\": \"alm\",\n  \"almaar\": \"almar\",\n  \"almachtig\": \"almacht\",\n  \"almachtige\": \"almacht\",\n  \"almelo\": \"almelo\",\n  \"almere\": \"almer\",\n  \"aloema\": \"aloema\",\n  \"alom\": \"alom\",\n  \"alomtegenwoordig\": \"alomtegenwoord\",\n  \"alomvattend\": \"alomvat\",\n  \"alomvattender\": \"alomvattender\",\n  \"alpen\": \"alp\",\n  \"alpes\": \"alpes\",\n  \"alpha\": \"alpha\",\n  \"alphaplan\": \"alphaplan\",\n  \"alphen\": \"alph\",\n  \"alphens\": \"alphen\",\n  \"alpro\": \"alpro\",\n  \"alqaetec\": \"alqaetec\",\n  \"alqueva\": \"alqueva\",\n  \"alruime\": \"alruim\",\n  \"als\": \"als\",\n  \"alsa\": \"alsa\",\n  \"alsdorfer\": \"alsdorfer\",\n  \"alsemde\": \"alsemd\",\n  \"alsma\": \"alsma\",\n  \"alsmede\": \"alsmed\",\n  \"alsnog\": \"alsnog\",\n  \"alsof\": \"alsof\",\n  \"alsook\": \"alsok\",\n  \"alss\": \"als\",\n  \"alsthom\": \"alsthom\",\n  \"altair\": \"altair\",\n  \"altenbroek\": \"altenbroek\",\n  \"altener\": \"altener\",\n  \"altenerprogramma\": \"altenerprogramma\",\n  \"altergeheimste\": \"altergeheimst\",\n  \"alternatief\": \"alternatief\",\n  \"alternatieve\": \"alternatiev\",\n  \"alternatieveling\": \"alternatievel\",\n  \"alternatieven\": \"alternatiev\",\n  \"alteveer\": \"altever\",\n  \"altevogt\": \"altevogt\",\n  \"altijd\": \"altijd\",\n  \"altijdm\": \"altijdm\",\n  \"altlastsanierungsverbandens\": \"altlastsanierungsverbanden\",\n  \"altruïsme\": \"altruism\",\n  \"altruïst\": \"altruist\",\n  \"alu\": \"alu\",\n  \"alumina\": \"alumina\",\n  \"aluminium\": \"aluminium\",\n  \"aluminiumfabriek\": \"aluminiumfabriek\",\n  \"aluminiumfolie\": \"aluminiumfolie\",\n  \"aluminiumindustrie\": \"aluminiumindustrie\",\n  \"aluminiumoxide\": \"aluminiumoxid\",\n  \"aluminiumoxyde\": \"aluminiumoxyd\",\n  \"aluminiumproduktie\": \"aluminiumproduktie\",\n  \"aluminiumprofielen\": \"aluminiumprofiel\",\n  \"aluminiumrecycling\": \"aluminiumrecycl\",\n  \"aluminiumsmelter\": \"aluminiumsmelter\",\n  \"aluminiumtechnologie\": \"aluminiumtechnologie\",\n  \"alup\": \"alup\",\n  \"alutherm\": \"alutherm\",\n  \"alvast\": \"alvast\",\n  \"alver\": \"alver\",\n  \"alvergetelheid\": \"alvergetel\",\n  \"alvorens\": \"alvoren\",\n  \"alweer\": \"alwer\",\n  \"alwereld\": \"alwereld\",\n  \"alwijde\": \"alwijd\",\n  \"alzheimermedicijn\": \"alzheimermedicijn\",\n  \"alzo\": \"alzo\",\n  \"am\": \"am\",\n  \"amandelen\": \"amandel\",\n  \"amant\": \"amant\",\n  \"amants\": \"amant\",\n  \"amateuristisch\": \"amateuristisch\",\n  \"amazone\": \"amazon\",\n  \"amazonegebied\": \"amazonegebied\",\n  \"amb\": \"amb\",\n  \"ambachtelijk\": \"ambacht\",\n  \"ambachtelijke\": \"ambacht\",\n  \"ambachtsheerlijkheid\": \"ambachtsher\",\n  \"ambachtskamer\": \"ambachtskamer\",\n  \"ambassade\": \"ambassad\",\n  \"ambassades\": \"ambassades\",\n  \"ambassadeur\": \"ambassadeur\",\n  \"ambassadeurs\": \"ambassadeur\",\n  \"ambassadrice\": \"ambassadric\",\n  \"amberg\": \"amberg\",\n  \"ambieerden\": \"ambieerd\",\n  \"ambiente\": \"ambient\",\n  \"ambit\": \"ambit\",\n  \"ambitie\": \"ambitie\",\n  \"ambitieniveau\": \"ambitieniveau\",\n  \"ambitieniveaus\": \"ambitieniveaus\",\n  \"ambities\": \"ambities\",\n  \"ambitieus\": \"ambitieus\",\n  \"ambitieuze\": \"ambitieuz\",\n  \"ambt\": \"ambt\",\n  \"ambtelijk\": \"ambtelijk\",\n  \"ambtelijke\": \"ambtelijk\",\n  \"ambtenaar\": \"ambtenar\",\n  \"ambtenaarswereld\": \"ambtenaarswereld\",\n  \"ambtenaren\": \"ambtenar\",\n  \"ambtgenoot\": \"ambtgenot\",\n  \"ambtshalve\": \"ambtshalv\",\n  \"ambulant\": \"ambulant\",\n  \"ambulante\": \"ambulant\",\n  \"amc\": \"amc\",\n  \"amec\": \"amec\",\n  \"ameland\": \"ameland\",\n  \"amendement\": \"amendement\",\n  \"amendementen\": \"amendement\",\n  \"amendments\": \"amendment\",\n  \"amer\": \"amer\",\n  \"amercentrale\": \"amercentral\",\n  \"america\": \"america\",\n  \"american\": \"american\",\n  \"americum\": \"americum\",\n  \"amerika\": \"amerika\",\n  \"amerikaan\": \"amerikan\",\n  \"amerikaans\": \"amerikan\",\n  \"amerikaanse\": \"amerikan\",\n  \"amerikanen\": \"amerikan\",\n  \"amersfoort\": \"amersfoort\",\n  \"amersfoortse\": \"amersfoort\",\n  \"ames\": \"ames\",\n  \"amev\": \"amev\",\n  \"amfibieën\": \"amfibieen\",\n  \"amfitheater\": \"amfitheater\",\n  \"aminal\": \"aminal\",\n  \"amines\": \"amines\",\n  \"aminestroom\": \"aminestrom\",\n  \"amino\": \"amino\",\n  \"aminohoudend\": \"aminohoud\",\n  \"aminoverbindingen\": \"aminoverbind\",\n  \"amk\": \"amk\",\n  \"ammers\": \"ammer\",\n  \"ammonia\": \"ammonia\",\n  \"ammoniak\": \"ammoniak\",\n  \"ammoniakbeleid\": \"ammoniakbeleid\",\n  \"ammoniakberekening\": \"ammoniakbereken\",\n  \"ammoniakdepositierechten\": \"ammoniakdepositierecht\",\n  \"ammoniakemissie\": \"ammoniakemissie\",\n  \"ammoniakemissierechten\": \"ammoniakemissierecht\",\n  \"ammoniakfabriek\": \"ammoniakfabriek\",\n  \"ammoniakgolf\": \"ammoniakgolf\",\n  \"ammoniaknorm\": \"ammoniaknorm\",\n  \"ammoniakplan\": \"ammoniakplan\",\n  \"ammoniakprobleem\": \"ammoniakproblem\",\n  \"ammoniakproblematiek\": \"ammoniakproblematiek\",\n  \"ammoniakproduktie\": \"ammoniakproduktie\",\n  \"ammoniakrecht\": \"ammoniakrecht\",\n  \"ammoniakrechten\": \"ammoniakrecht\",\n  \"ammoniakreductie\": \"ammoniakreductie\",\n  \"ammoniakreductieplan\": \"ammoniakreductieplan\",\n  \"ammoniakreductieplannen\": \"ammoniakreductieplann\",\n  \"ammoniakschade\": \"ammoniakschad\",\n  \"ammoniakstandpunten\": \"ammoniakstandpunt\",\n  \"ammoniakstroom\": \"ammoniakstrom\",\n  \"ammoniaktransport\": \"ammoniaktransport\",\n  \"ammoniakuitstoot\": \"ammoniakuitstot\",\n  \"ammoniakverlies\": \"ammoniakverlies\",\n  \"ammoniakvervluchtiging\": \"ammoniakvervlucht\",\n  \"ammoniakwolk\": \"ammoniakwolk\",\n  \"ammonium\": \"ammonium\",\n  \"ammoniumionen\": \"ammoniumion\",\n  \"ammoniumnitraat\": \"ammoniumnitrat\",\n  \"ammoniumsulfaat\": \"ammoniumsulfat\",\n  \"ammoniumsulfaatmeststof\": \"ammoniumsulfaatmeststof\",\n  \"amnesty\": \"amnesty\",\n  \"amoco\": \"amoco\",\n  \"amorf\": \"amorf\",\n  \"amorfe\": \"amorf\",\n  \"amory\": \"amory\",\n  \"amoveertechnieken\": \"amoveertechniek\",\n  \"amovering\": \"amover\",\n  \"ampa\": \"ampa\",\n  \"ampas\": \"ampas\",\n  \"amper\": \"amper\",\n  \"ampère\": \"ampèr\",\n  \"ampolex\": \"ampolex\",\n  \"amro\": \"amro\",\n  \"amstel\": \"amstel\",\n  \"amsteldijk\": \"amsteldijk\",\n  \"amstelland\": \"amstelland\",\n  \"amstelpark\": \"amstelpark\",\n  \"amstelveen\": \"amstelven\",\n  \"amsterdam\": \"amsterdam\",\n  \"amsterdammers\": \"amsterdammer\",\n  \"amsterdams\": \"amsterdam\",\n  \"amsterdamse\": \"amsterdam\",\n  \"amtec\": \"amtec\",\n  \"amusant\": \"amusant\",\n  \"amusanter\": \"amusanter\",\n  \"amuseer\": \"amuser\",\n  \"amuseerde\": \"amuseerd\",\n  \"amuseerden\": \"amuseerd\",\n  \"amuseert\": \"amuseert\",\n  \"amusement\": \"amusement\",\n  \"amuseren\": \"amuser\",\n  \"amvb\": \"amvb\",\n  \"amylopectine\": \"amylopectin\",\n  \"amylosegehalte\": \"amylosegehalt\",\n  \"an\": \"an\",\n  \"anaërobe\": \"anaerob\",\n  \"anaerobic\": \"anaerobic\",\n  \"anaeroob\": \"anaerob\",\n  \"anaëroob\": \"anaerob\",\n  \"analisten\": \"analist\",\n  \"analoge\": \"analog\",\n  \"analyse\": \"analys\",\n  \"analyseert\": \"analyseert\",\n  \"analysefase\": \"analysefas\",\n  \"analysemethode\": \"analysemethod\",\n  \"analysemethoden\": \"analysemethod\",\n  \"analysemodulen\": \"analysemodul\",\n  \"analyserapporten\": \"analyserapport\",\n  \"analyseren\": \"analyser\",\n  \"analyserend\": \"analyser\",\n  \"analyseresultaten\": \"analyseresultat\",\n  \"analyses\": \"analyses\",\n  \"analysetechniek\": \"analysetechniek\",\n  \"analysetechnieken\": \"analysetechniek\",\n  \"analysetest\": \"analysetest\",\n  \"analysis\": \"analysis\",\n  \"analytic\": \"analytic\",\n  \"analytica\": \"analytica\",\n  \"analytische\": \"analytisch\",\n  \"analyzeren\": \"analyzer\",\n  \"anarchist\": \"anarchist\",\n  \"anc\": \"anc\",\n  \"and\": \"and\",\n  \"andalusië\": \"andalusie\",\n  \"andelst\": \"andelst\",\n  \"andeno\": \"andeno\",\n  \"ander\": \"ander\",\n  \"andere\": \"ander\",\n  \"anderen\": \"ander\",\n  \"anderhalf\": \"anderhalf\",\n  \"anderhalve\": \"anderhalv\",\n  \"andermaal\": \"andermal\",\n  \"andermans\": \"anderman\",\n  \"anders\": \"ander\",\n  \"andersen\": \"anders\",\n  \"andersom\": \"andersom\",\n  \"andersoortige\": \"andersoort\",\n  \"anderszins\": \"anderszin\",\n  \"anderzijds\": \"anderzijd\",\n  \"andes\": \"andes\",\n  \"andre\": \"andr\",\n  \"andriesse\": \"andries\",\n  \"andriessen\": \"andriess\",\n  \"andy\": \"andy\",\n  \"anemie\": \"anemie\",\n  \"anemieën\": \"anemieen\",\n  \"angeles\": \"angeles\",\n  \"anglia\": \"anglia\",\n  \"angst\": \"angst\",\n  \"angsten\": \"angst\",\n  \"angstig\": \"angstig\",\n  \"angstige\": \"angstig\",\n  \"angstigen\": \"angstig\",\n  \"angstiger\": \"angstiger\",\n  \"angstwekkend\": \"angstwek\",\n  \"angstzweet\": \"angstzwet\",\n  \"anhydriet\": \"anhydriet\",\n  \"aniline\": \"anilin\",\n  \"animeerde\": \"animeerd\",\n  \"animo\": \"animo\",\n  \"anita\": \"anita\",\n  \"anjer\": \"anjer\",\n  \"ankara\": \"ankara\",\n  \"anker\": \"anker\",\n  \"ankers\": \"anker\",\n  \"ankeveen\": \"ankeven\",\n  \"anlagen\": \"anlag\",\n  \"anlagenbau\": \"anlagenbau\",\n  \"anlagentechnik\": \"anlagentechnik\",\n  \"anloo\": \"anloo\",\n  \"ann\": \"ann\",\n  \"anna\": \"anna\",\n  \"anne\": \"ann\",\n  \"annemarie\": \"annemarie\",\n  \"annen\": \"ann\",\n  \"annette\": \"annet\",\n  \"annexen\": \"annex\",\n  \"annie\": \"annie\",\n  \"annular\": \"annular\",\n  \"annulering\": \"annuler\",\n  \"anode\": \"anod\",\n  \"anodiseerbedrijven\": \"anodiseerbedrijv\",\n  \"anoniem\": \"anoniem\",\n  \"anonieme\": \"anoniem\",\n  \"anorganisch\": \"anorganisch\",\n  \"anorganische\": \"anorganisch\",\n  \"anox\": \"anox\",\n  \"anp\": \"anp\",\n  \"ansell\": \"ansell\",\n  \"ansi\": \"ansi\",\n  \"ansjovis\": \"ansjovis\",\n  \"antagonisten\": \"antagonist\",\n  \"antagonistische\": \"antagonistisch\",\n  \"antarctic\": \"antarctic\",\n  \"antarctica\": \"antarctica\",\n  \"antarctische\": \"antarctisch\",\n  \"antartica\": \"antartica\",\n  \"antenne\": \"antenn\",\n  \"antennelaag\": \"antennelag\",\n  \"anti\": \"anti\",\n  \"antibes\": \"antibes\",\n  \"antibiotica\": \"antibiotica\",\n  \"antibioticum\": \"antibioticum\",\n  \"antichambre\": \"antichambr\",\n  \"anticipatie\": \"anticipatie\",\n  \"anticipeert\": \"anticipeert\",\n  \"anticiperend\": \"anticiper\",\n  \"anticonceptiemiddelen\": \"anticonceptiemiddel\",\n  \"antidiluviaanse\": \"antidiluviaan\",\n  \"antiek\": \"antiek\",\n  \"antieke\": \"antiek\",\n  \"antillen\": \"antill\",\n  \"antilliaanse\": \"antilliaan\",\n  \"antimacassars\": \"antimacassar\",\n  \"antipathie\": \"antipathie\",\n  \"antipathiek\": \"antipathiek\",\n  \"antipathieke\": \"antipathiek\",\n  \"antipollution\": \"antipollution\",\n  \"antiquiteit\": \"antiquiteit\",\n  \"antiquiteiten\": \"antiquiteit\",\n  \"antivries\": \"antivries\",\n  \"anton\": \"anton\",\n  \"antonia\": \"antonia\",\n  \"antraciet\": \"antraciet\",\n  \"antractische\": \"antractisch\",\n  \"antropogene\": \"antropog\",\n  \"antwerpen\": \"antwerp\",\n  \"antwerpse\": \"antwerp\",\n  \"antwoord\": \"antwoord\",\n  \"antwoordcoupon\": \"antwoordcoupon\",\n  \"antwoordde\": \"antwoord\",\n  \"antwoordden\": \"antwoord\",\n  \"antwoorden\": \"antwoord\",\n  \"antwoordende\": \"antwoord\",\n  \"antwoordkaart\": \"antwoordkaart\",\n  \"antwoordlijn\": \"antwoordlijn\",\n  \"antwoordnummer\": \"antwoordnummer\",\n  \"antwoordt\": \"antwoordt\",\n  \"anwb\": \"anwb\",\n  \"anwoordden\": \"anwoord\",\n  \"ao\": \"ao\",\n  \"aoo\": \"aoo\",\n  \"aoot\": \"aoot\",\n  \"aox\": \"aox\",\n  \"ap\": \"ap\",\n  \"apa\": \"apa\",\n  \"apart\": \"apart\",\n  \"aparte\": \"apart\",\n  \"apartheidsplanning\": \"apartheidsplann\",\n  \"apartheidsregime\": \"apartheidsregim\",\n  \"apathie\": \"apathie\",\n  \"apathisch\": \"apathisch\",\n  \"apel\": \"apel\",\n  \"apeldoorn\": \"apeldoorn\",\n  \"apelkanaal\": \"apelkanal\",\n  \"apens\": \"apen\",\n  \"apk\": \"apk\",\n  \"apl\": \"apl\",\n  \"apld\": \"apld\",\n  \"aplomb\": \"aplomb\",\n  \"apme\": \"apm\",\n  \"apostel\": \"apostel\",\n  \"apostolisch\": \"apostolisch\",\n  \"apotheek\": \"apothek\",\n  \"apotheken\": \"apothek\",\n  \"apotheose\": \"apotheos\",\n  \"apparaat\": \"apparat\",\n  \"apparaten\": \"apparat\",\n  \"apparatenbouw\": \"apparatenbouw\",\n  \"apparatenbouwers\": \"apparatenbouwer\",\n  \"apparatenleveranciers\": \"apparatenleverancier\",\n  \"apparatenwesen\": \"apparatenwes\",\n  \"apparatuur\": \"apparatur\",\n  \"apparetour\": \"apparetour\",\n  \"appartement\": \"appartement\",\n  \"appartementen\": \"appartement\",\n  \"appeal\": \"appeal\",\n  \"appel\": \"appel\",\n  \"appellant\": \"appellant\",\n  \"appellanten\": \"appellant\",\n  \"appelpudding\": \"appelpud\",\n  \"appels\": \"appel\",\n  \"appelvink\": \"appelvink\",\n  \"appingedam\": \"appingedam\",\n  \"applaus\": \"applaus\",\n  \"applicable\": \"applicabl\",\n  \"applicatie\": \"applicatie\",\n  \"applicatiecentrum\": \"applicatiecentrum\",\n  \"applicatieportfolio\": \"applicatieportfolio\",\n  \"applicaties\": \"applicaties\",\n  \"application\": \"application\",\n  \"appraisal\": \"appraisal\",\n  \"apprecieer\": \"apprecieer\",\n  \"apprecieert\": \"apprecieert\",\n  \"appreciëren\": \"apprecier\",\n  \"approach\": \"approach\",\n  \"april\": \"april\",\n  \"apv\": \"apv\",\n  \"aqf\": \"aqf\",\n  \"aqua\": \"aqua\",\n  \"aquaculture\": \"aquacultur\",\n  \"aquaducten\": \"aquaduct\",\n  \"aquafin\": \"aquafin\",\n  \"aquarel\": \"aquarel\",\n  \"aquarellen\": \"aquarell\",\n  \"aquarium\": \"aquarium\",\n  \"aquatech\": \"aquatech\",\n  \"aquatherm\": \"aquatherm\",\n  \"aquatisch\": \"aquatisch\",\n  \"aquatische\": \"aquatisch\",\n  \"aquisitie\": \"aquisitie\",\n  \"ar\": \"ar\",\n  \"ara\": \"ara\",\n  \"arabesken\": \"arabesk\",\n  \"arabië\": \"arabie\",\n  \"arabische\": \"arabisch\",\n  \"aral\": \"aral\",\n  \"aralmeer\": \"aralmer\",\n  \"arbeid\": \"arbeid\",\n  \"arbeiden\": \"arbeid\",\n  \"arbeider\": \"arbeider\",\n  \"arbeiders\": \"arbeider\",\n  \"arbeidersjaren\": \"arbeidersjar\",\n  \"arbeidsbelasting\": \"arbeidsbelast\",\n  \"arbeidsbureaus\": \"arbeidsbureaus\",\n  \"arbeidsinkomen\": \"arbeidsinkom\",\n  \"arbeidsinspectie\": \"arbeidsinspectie\",\n  \"arbeidsinspectiediensten\": \"arbeidsinspectiedienst\",\n  \"arbeidsintensieve\": \"arbeidsintensiev\",\n  \"arbeidsinzet\": \"arbeidsinzet\",\n  \"arbeidskosten\": \"arbeidskost\",\n  \"arbeidskostenbesparing\": \"arbeidskostenbespar\",\n  \"arbeidsmarkt\": \"arbeidsmarkt\",\n  \"arbeidsmatige\": \"arbeidsmat\",\n  \"arbeidsomstandigheden\": \"arbeidsomstand\",\n  \"arbeidsomstandighedencongres\": \"arbeidsomstandighedencongres\",\n  \"arbeidsomstandighedenwet\": \"arbeidsomstandighedenwet\",\n  \"arbeidsonstadighedenregelgeving\": \"arbeidsonstadighedenregelgev\",\n  \"arbeidsplaatsen\": \"arbeidsplaats\",\n  \"arbeidsregistraties\": \"arbeidsregistraties\",\n  \"arbeidstijd\": \"arbeidstijd\",\n  \"arbeidsveiligheid\": \"arbeidsveil\",\n  \"arbeidsvermogen\": \"arbeidsvermog\",\n  \"arbeitsgemeinschaft\": \"arbeitsgemeinschaft\",\n  \"arbiters\": \"arbiter\",\n  \"arbitrage\": \"arbitrag\",\n  \"arbo\": \"arbo\",\n  \"arbobeleid\": \"arbobeleid\",\n  \"arbocongres\": \"arbocongres\",\n  \"arbouw\": \"arbouw\",\n  \"arbowet\": \"arbowet\",\n  \"arbozaken\": \"arbozak\",\n  \"arbozorg\": \"arbozorg\",\n  \"arbozorgsystemen\": \"arbozorgsystem\",\n  \"arc\": \"arc\",\n  \"arcg\": \"arcg\",\n  \"archer\": \"archer\",\n  \"archimedes\": \"archimedes\",\n  \"archipel\": \"archipel\",\n  \"architect\": \"architect\",\n  \"architecten\": \"architect\",\n  \"architectenbureau\": \"architectenbureau\",\n  \"architectonisch\": \"architectonisch\",\n  \"architectonische\": \"architectonisch\",\n  \"architects\": \"architect\",\n  \"architectuur\": \"architectur\",\n  \"arco\": \"arco\",\n  \"arctisch\": \"arctisch\",\n  \"arctische\": \"arctisch\",\n  \"ardea\": \"ardea\",\n  \"ardenne\": \"ardenn\",\n  \"are\": \"are\",\n  \"area\": \"area\",\n  \"areaal\": \"areaal\",\n  \"areas\": \"areas\",\n  \"arebeien\": \"arebei\",\n  \"arebèien\": \"arebèi\",\n  \"arend\": \"arend\",\n  \"argeloos\": \"argelos\",\n  \"argentijnse\": \"argentijn\",\n  \"argentinië\": \"argentinie\",\n  \"argon\": \"argon\",\n  \"argonne\": \"argonn\",\n  \"argument\": \"argument\",\n  \"argumentatie\": \"argumentatie\",\n  \"argumenten\": \"argument\",\n  \"argus\": \"argus\",\n  \"argusogen\": \"argusog\",\n  \"ärhus\": \"arhus\",\n  \"aridjis\": \"aridjis\",\n  \"arie\": \"arie\",\n  \"aris\": \"aris\",\n  \"aristocraat\": \"aristocrat\",\n  \"aristocraatjes\": \"aristocraatjes\",\n  \"aristocrate\": \"aristocrat\",\n  \"aristocratie\": \"aristocratie\",\n  \"aristocratische\": \"aristocratisch\",\n  \"ark\": \"ark\",\n  \"arke\": \"ark\",\n  \"arkel\": \"arkel\",\n  \"arla\": \"arla\",\n  \"arles\": \"arles\",\n  \"arm\": \"arm\",\n  \"armageddon\": \"armageddon\",\n  \"armaturen\": \"armatur\",\n  \"armatuur\": \"armatur\",\n  \"armband\": \"armband\",\n  \"arme\": \"arm\",\n  \"armelijk\": \"armelijk\",\n  \"armelijke\": \"armelijk\",\n  \"armen\": \"arm\",\n  \"armenbezoek\": \"armenbezoek\",\n  \"armenië\": \"armenie\",\n  \"armer\": \"armer\",\n  \"armleuningen\": \"armleun\",\n  \"armoede\": \"armoed\",\n  \"armoedige\": \"armoed\",\n  \"armoedje\": \"armoedj\",\n  \"armpjes\": \"armpjes\",\n  \"armste\": \"armst\",\n  \"armsten\": \"armst\",\n  \"armzalig\": \"armzal\",\n  \"armzalige\": \"armzal\",\n  \"arn\": \"arn\",\n  \"arnhem\": \"arnhem\",\n  \"arnhemse\": \"arnhem\",\n  \"arnold\": \"arnold\",\n  \"aromaten\": \"aromat\",\n  \"aromatengehalte\": \"aromatengehalt\",\n  \"aromatische\": \"aromatisch\",\n  \"arons\": \"aron\",\n  \"aroom\": \"arom\",\n  \"around\": \"around\",\n  \"arp\": \"arp\",\n  \"arrangeerde\": \"arrangeerd\",\n  \"arrangeren\": \"arranger\",\n  \"arrest\": \"arrest\",\n  \"arrestanten\": \"arrestant\",\n  \"arrestatie\": \"arrestatie\",\n  \"arrestaties\": \"arrestaties\",\n  \"arresteerde\": \"arresteerd\",\n  \"arresteert\": \"arresteert\",\n  \"arresters\": \"arrester\",\n  \"arrive\": \"arriv\",\n  \"arrogant\": \"arrogant\",\n  \"arrogantie\": \"arrogantie\",\n  \"arrondissement\": \"arrondissement\",\n  \"arrondissementsbank\": \"arrondissementsbank\",\n  \"arseen\": \"arsen\",\n  \"arseenzuur\": \"arseenzur\",\n  \"arsenicum\": \"arsenicum\",\n  \"art\": \"art\",\n  \"artefacten\": \"artefact\",\n  \"artelli\": \"artelli\",\n  \"arthur\": \"arthur\",\n  \"artiest\": \"artiest\",\n  \"artiesten\": \"artiest\",\n  \"artikel\": \"artikel\",\n  \"artikelen\": \"artikel\",\n  \"artikels\": \"artikel\",\n  \"artikeltje\": \"artikeltj\",\n  \"artikeltjes\": \"artikeltjes\",\n  \"artist\": \"artist\",\n  \"artisten\": \"artist\",\n  \"artisticiteit\": \"artisticiteit\",\n  \"artistiek\": \"artistiek\",\n  \"artistieke\": \"artistiek\",\n  \"artistieks\": \"artistiek\",\n  \"artnouveau\": \"artnouveau\",\n  \"arts\": \"art\",\n  \"aruba\": \"aruba\",\n  \"arubaanse\": \"aruban\",\n  \"as\": \"as\",\n  \"asafdichting\": \"asafdicht\",\n  \"asbest\": \"asbest\",\n  \"asbestbeleid\": \"asbestbeleid\",\n  \"asbestbesluit\": \"asbestbesluit\",\n  \"asbestcement\": \"asbestcement\",\n  \"asbestdeeltjes\": \"asbestdeeltjes\",\n  \"asbestdekplaten\": \"asbestdekplat\",\n  \"asbestdeskundigen\": \"asbestdeskund\",\n  \"asbestfonds\": \"asbestfond\",\n  \"asbestfraude\": \"asbestfraud\",\n  \"asbesthoudend\": \"asbesthoud\",\n  \"asbesthoudende\": \"asbesthoud\",\n  \"asbestonderdelen\": \"asbestonderdel\",\n  \"asbestos\": \"asbestos\",\n  \"asbestose\": \"asbestos\",\n  \"asbestovertredingen\": \"asbestovertred\",\n  \"asbestplaten\": \"asbestplat\",\n  \"asbestsaneringswerkzaamheden\": \"asbestsaneringswerkzam\",\n  \"asbestslachtoffers\": \"asbestslachtoffer\",\n  \"asbestverbod\": \"asbestverbod\",\n  \"asbestvergiftiging\": \"asbestvergift\",\n  \"asbestverwijderend\": \"asbestverwijder\",\n  \"asbestverwijdering\": \"asbestverwijder\",\n  \"asbestverwijderingsbedrijf\": \"asbestverwijderingsbedrijf\",\n  \"asbestverwijderingsbesluit\": \"asbestverwijderingsbesluit\",\n  \"asbestvezels\": \"asbestvezel\",\n  \"asce\": \"asc\",\n  \"asco\": \"asco\",\n  \"asd\": \"asd\",\n  \"asea\": \"asea\",\n  \"aseptische\": \"aseptisch\",\n  \"asfalt\": \"asfalt\",\n  \"asfaltbeton\": \"asfaltbeton\",\n  \"asfaltcentrales\": \"asfaltcentrales\",\n  \"asfaltering\": \"asfalter\",\n  \"asfaltgranulaat\": \"asfaltgranulat\",\n  \"asfaltindustrie\": \"asfaltindustrie\",\n  \"asfaltmeer\": \"asfaltmer\",\n  \"asfaltmenginstallaties\": \"asfaltmenginstallaties\",\n  \"asfaltproduktie\": \"asfaltproduktie\",\n  \"asfaltverwerking\": \"asfaltverwerk\",\n  \"ashoogte\": \"ashoogt\",\n  \"asmabel\": \"asmabel\",\n  \"asn\": \"asn\",\n  \"asociaal\": \"asociaal\",\n  \"aspect\": \"aspect\",\n  \"aspecten\": \"aspect\",\n  \"aspergeteelt\": \"aspergeteelt\",\n  \"aspert\": \"aspert\",\n  \"aspirant\": \"aspirant\",\n  \"aspiraties\": \"aspiraties\",\n  \"aspirotor\": \"aspirotor\",\n  \"asruggen\": \"asrugg\",\n  \"assainissement\": \"assainissement\",\n  \"assay\": \"assay\",\n  \"assays\": \"assay\",\n  \"asselbergs\": \"asselberg\",\n  \"assem\": \"assem\",\n  \"assemblage\": \"assemblag\",\n  \"assen\": \"ass\",\n  \"assepoester\": \"assepoester\",\n  \"assepoestertje\": \"assepoestertj\",\n  \"assessment\": \"assessment\",\n  \"assessments\": \"assessment\",\n  \"assige\": \"assig\",\n  \"assimileerde\": \"assimileerd\",\n  \"assimileren\": \"assimiler\",\n  \"assistance\": \"assistanc\",\n  \"assistent\": \"assistent\",\n  \"assistenten\": \"assistent\",\n  \"assistentie\": \"assistentie\",\n  \"assisteren\": \"assister\",\n  \"associates\": \"associates\",\n  \"associatie\": \"associatie\",\n  \"association\": \"association\",\n  \"assoean\": \"assoean\",\n  \"assortiment\": \"assortiment\",\n  \"assortimenten\": \"assortiment\",\n  \"assortimentsverbetering\": \"assortimentsverbeter\",\n  \"assurantie\": \"assurantie\",\n  \"assurantiemakelaars\": \"assurantiemakelar\",\n  \"assurantiën\": \"assurantien\",\n  \"assuranties\": \"assuranties\",\n  \"ast\": \"ast\",\n  \"astma\": \"astma\",\n  \"astraco\": \"astraco\",\n  \"asvaalt\": \"asvaalt\",\n  \"aswemeling\": \"aswemel\",\n  \"asyl\": \"asyl\",\n  \"asynchroongenerator\": \"asynchroongenerator\",\n  \"at\": \"at\",\n  \"atag\": \"atag\",\n  \"atags\": \"atag\",\n  \"atavistisch\": \"atavistisch\",\n  \"ate\": \"ate\",\n  \"aten\": \"aten\",\n  \"athene\": \"ath\",\n  \"atlantic\": \"atlantic\",\n  \"atlantische\": \"atlantisch\",\n  \"atlas\": \"atlas\",\n  \"atlassen\": \"atlass\",\n  \"atmosfeer\": \"atmosfer\",\n  \"atmosferen\": \"atmosfer\",\n  \"atmosferische\": \"atmosferisch\",\n  \"atmosphere\": \"atmospher\",\n  \"atmospheric\": \"atmospheric\",\n  \"atoc\": \"atoc\",\n  \"atol\": \"atol\",\n  \"atomen\": \"atom\",\n  \"atomenkleinte\": \"atomenkleint\",\n  \"atomic\": \"atomic\",\n  \"atoom\": \"atom\",\n  \"atoomagentschap\": \"atoomagentschap\",\n  \"atoombom\": \"atoombom\",\n  \"atoomenergie\": \"atoomenergie\",\n  \"atoomgeleerde\": \"atoomgeleerd\",\n  \"atoomklein\": \"atoomklein\",\n  \"atoomkwesties\": \"atoomkwesties\",\n  \"atoomlaboratoria\": \"atoomlaboratoria\",\n  \"atoomparaplu\": \"atoomparaplu\",\n  \"atoompje\": \"atoompj\",\n  \"atoomproef\": \"atoomproef\",\n  \"atoomproeven\": \"atoomproev\",\n  \"atoomvrij\": \"atoomvrij\",\n  \"atoomvrije\": \"atoomvrij\",\n  \"atoomwapens\": \"atoomwapen\",\n  \"atout\": \"atout\",\n  \"atrazin\": \"atrazin\",\n  \"atrazine\": \"atrazin\",\n  \"atriumgebouw\": \"atriumgebouw\",\n  \"atsign\": \"atsign\",\n  \"att\": \"att\",\n  \"attachés\": \"attaches\",\n  \"attentie\": \"attentie\",\n  \"attest\": \"attest\",\n  \"attesteren\": \"attester\",\n  \"attractie\": \"attractie\",\n  \"attractief\": \"attractief\",\n  \"au\": \"au\",\n  \"auchel\": \"auchel\",\n  \"auckland\": \"auckland\",\n  \"audio\": \"audio\",\n  \"audiovisuele\": \"audiovisuel\",\n  \"audit\": \"audit\",\n  \"auditing\": \"audit\",\n  \"auditor\": \"auditor\",\n  \"auditorium\": \"auditorium\",\n  \"auditprogramma\": \"auditprogramma\",\n  \"audits\": \"audit\",\n  \"auditschema\": \"auditschema\",\n  \"auditsysteem\": \"auditsystem\",\n  \"auditteam\": \"auditteam\",\n  \"auditverplichting\": \"auditverplicht\",\n  \"audrey\": \"audrey\",\n  \"augias\": \"augias\",\n  \"august\": \"august\",\n  \"augusteijn\": \"augusteijn\",\n  \"augustus\": \"augustus\",\n  \"augustusdag\": \"augustusdag\",\n  \"augustusmorgen\": \"augustusmorg\",\n  \"aujeszki\": \"aujeszki\",\n  \"aujeszkivirus\": \"aujeszkivirus\",\n  \"auken\": \"auk\",\n  \"auro\": \"auro\",\n  \"auspiciën\": \"auspicien\",\n  \"ausstellungsdienst\": \"ausstellungsdienst\",\n  \"austin\": \"austin\",\n  \"australië\": \"australie\",\n  \"australisch\": \"australisch\",\n  \"australische\": \"australisch\",\n  \"austria\": \"austria\",\n  \"austrian\": \"austrian\",\n  \"autarkie\": \"autarkie\",\n  \"auteur\": \"auteur\",\n  \"auteurs\": \"auteur\",\n  \"authorised\": \"authorised\",\n  \"authority\": \"authority\",\n  \"auto\": \"auto\",\n  \"autoarme\": \"autoarm\",\n  \"autobahn\": \"autobahn\",\n  \"autobahnen\": \"autobahn\",\n  \"autobanden\": \"autoband\",\n  \"autobezit\": \"autobezit\",\n  \"autobezitters\": \"autobezitter\",\n  \"autobezoek\": \"autobezoek\",\n  \"autobranche\": \"autobranch\",\n  \"autobrandstof\": \"autobrandstof\",\n  \"autobrandstoffen\": \"autobrandstoff\",\n  \"autobumpers\": \"autobumper\",\n  \"autochtone\": \"autochton\",\n  \"autoclaven\": \"autoclav\",\n  \"autoconcerns\": \"autoconcern\",\n  \"autoconstructie\": \"autoconstructie\",\n  \"autodealer\": \"autodealer\",\n  \"autodealers\": \"autodealer\",\n  \"autodelen\": \"autodel\",\n  \"autodemontagebedrijf\": \"autodemontagebedrijf\",\n  \"autodemontagebedrijven\": \"autodemontagebedrijv\",\n  \"autofabrieken\": \"autofabriek\",\n  \"autofabrikant\": \"autofabrikant\",\n  \"autofabrikanten\": \"autofabrikant\",\n  \"autofreier\": \"autofreier\",\n  \"autogebruik\": \"autogebruik\",\n  \"autoindustrie\": \"autoindustrie\",\n  \"autokilometers\": \"autokilometer\",\n  \"autokosten\": \"autokost\",\n  \"autokraan\": \"autokran\",\n  \"autoluw\": \"autoluw\",\n  \"autoluwe\": \"autoluw\",\n  \"automaat\": \"automat\",\n  \"automaterialen\": \"automaterial\",\n  \"automation\": \"automation\",\n  \"automatisch\": \"automatisch\",\n  \"automatische\": \"automatisch\",\n  \"automatiseren\": \"automatiser\",\n  \"automatisering\": \"automatiser\",\n  \"automobiel\": \"automobiel\",\n  \"automobielfabrikanten\": \"automobielfabrikant\",\n  \"automobielindustrie\": \"automobielindustrie\",\n  \"automobielsector\": \"automobielsector\",\n  \"automobilist\": \"automobilist\",\n  \"automobilisten\": \"automobilist\",\n  \"automobilistenbond\": \"automobilistenbond\",\n  \"automobiliteit\": \"automobiliteit\",\n  \"automobiliteitsprobleem\": \"automobiliteitsproblem\",\n  \"automoblist\": \"automoblist\",\n  \"automodel\": \"automodel\",\n  \"automotive\": \"automotiv\",\n  \"autonome\": \"autonom\",\n  \"autonomie\": \"autonomie\",\n  \"autonoom\": \"autonom\",\n  \"autopark\": \"autopark\",\n  \"autoproducent\": \"autoproducent\",\n  \"autoproducenten\": \"autoproducent\",\n  \"autorecycling\": \"autorecycl\",\n  \"autorecyclingfabriek\": \"autorecyclingfabriek\",\n  \"autorecyclingproject\": \"autorecyclingproject\",\n  \"autorecyclingsbetriebe\": \"autorecyclingsbetrieb\",\n  \"autoreinigingsmiddelen\": \"autoreinigingsmiddel\",\n  \"autorijden\": \"autorijd\",\n  \"autorijders\": \"autorijder\",\n  \"autoritair\": \"autoritair\",\n  \"autoriteit\": \"autoriteit\",\n  \"autoriteiten\": \"autoriteit\",\n  \"autosalon\": \"autosalon\",\n  \"autoschade\": \"autoschad\",\n  \"autoschadebedrijf\": \"autoschadebedrijf\",\n  \"autosloopbedrijf\": \"autosloopbedrijf\",\n  \"autosloper\": \"autosloper\",\n  \"autosloperij\": \"autosloperij\",\n  \"autosloperijen\": \"autosloperij\",\n  \"autosnelweg\": \"autosnelweg\",\n  \"autosnelwegen\": \"autosnelweg\",\n  \"autotechniek\": \"autotechniek\",\n  \"autotron\": \"autotron\",\n  \"autotrophicus\": \"autotrophicus\",\n  \"autoverhuurder\": \"autoverhuurder\",\n  \"autoverkeer\": \"autoverker\",\n  \"autovrij\": \"autovrij\",\n  \"autovrije\": \"autovrij\",\n  \"autowasinstallaties\": \"autowasinstallaties\",\n  \"autoweg\": \"autoweg\",\n  \"autowrakken\": \"autowrak\",\n  \"autowrakkeninrichting\": \"autowrakkeninricht\",\n  \"av\": \"av\",\n  \"ava\": \"ava\",\n  \"available\": \"availabl\",\n  \"avb\": \"avb\",\n  \"avbb\": \"avbb\",\n  \"avebe\": \"aveb\",\n  \"average\": \"averag\",\n  \"averijhaven\": \"averijhav\",\n  \"avezaath\": \"avezaath\",\n  \"avi\": \"avi\",\n  \"aviation\": \"aviation\",\n  \"aviconsult\": \"aviconsult\",\n  \"avira\": \"avira\",\n  \"aviv\": \"aviv\",\n  \"avl\": \"avl\",\n  \"avm\": \"avm\",\n  \"avond\": \"avond\",\n  \"avonden\": \"avond\",\n  \"avondgesprek\": \"avondgesprek\",\n  \"avondje\": \"avondj\",\n  \"avondjes\": \"avondjes\",\n  \"avondleegte\": \"avondleegt\",\n  \"avonds\": \"avond\",\n  \"avondstreep\": \"avondstrep\",\n  \"avondtoilet\": \"avondtoilet\",\n  \"avondzwijgen\": \"avondzwijg\",\n  \"avoparcine\": \"avoparcin\",\n  \"avoueren\": \"avouer\",\n  \"avr\": \"avr\",\n  \"avv\": \"avv\",\n  \"award\": \"award\",\n  \"awards\": \"award\",\n  \"awb\": \"awb\",\n  \"awzi\": \"awzi\",\n  \"axiaalrollen\": \"axiaalroll\",\n  \"az\": \"az\",\n  \"azalea\": \"azalea\",\n  \"azen\": \"azen\",\n  \"azerbajdzjan\": \"azerbajdzjan\",\n  \"azerbeidzjan\": \"azerbeidzjan\",\n  \"azerische\": \"azerisch\",\n  \"aziatische\": \"aziatisch\",\n  \"azië\": \"azie\",\n  \"azigny\": \"azigny\",\n  \"azijn\": \"azijn\",\n  \"azizan\": \"azizan\",\n  \"azn\": \"azn\",\n  \"azo\": \"azo\",\n  \"azuur\": \"azur\",\n  \"b\": \"b\",\n  \"baadje\": \"baadj\",\n  \"baadjes\": \"baadjes\",\n  \"baaien\": \"baai\",\n  \"baan\": \"ban\",\n  \"baanbrekend\": \"baanbrek\",\n  \"baanbrekende\": \"baanbrek\",\n  \"baanconcept\": \"baanconcept\",\n  \"baangebruik\": \"baangebruik\",\n  \"baanlichaam\": \"baanlicham\",\n  \"baantjes\": \"baantjes\",\n  \"baar\": \"bar\",\n  \"baard\": \"baard\",\n  \"baardje\": \"baardj\",\n  \"baarle\": \"baarl\",\n  \"baarn\": \"baarn\",\n  \"baars\": \"bar\",\n  \"baart\": \"baart\",\n  \"baas\": \"bas\",\n  \"baasje\": \"baasj\",\n  \"baat\": \"bat\",\n  \"babbel\": \"babbel\",\n  \"babcock\": \"babcock\",\n  \"babels\": \"babel\",\n  \"baboe\": \"baboe\",\n  \"baby\": \"baby\",\n  \"babyspullen\": \"babyspull\",\n  \"bac\": \"bac\",\n  \"bacillen\": \"bacill\",\n  \"bacillus\": \"bacillus\",\n  \"back\": \"back\",\n  \"backers\": \"backer\",\n  \"backus\": \"backus\",\n  \"baco\": \"baco\",\n  \"bacterie\": \"bacterie\",\n  \"bacteriële\": \"bacteriel\",\n  \"bacterieleven\": \"bacterielev\",\n  \"bacteriën\": \"bacterien\",\n  \"bacteriepopulatie\": \"bacteriepopulatie\",\n  \"bacteriesoorten\": \"bacteriesoort\",\n  \"bacterievorming\": \"bacterievorm\",\n  \"bacterieziekte\": \"bacterieziekt\",\n  \"bacteriologisch\": \"bacteriologisch\",\n  \"bacteriologische\": \"bacteriologisch\",\n  \"bad\": \"bad\",\n  \"baden\": \"bad\",\n  \"badende\": \"badend\",\n  \"badgasten\": \"badgast\",\n  \"badkamer\": \"badkamer\",\n  \"badkamertje\": \"badkamertj\",\n  \"badplaats\": \"badplat\",\n  \"badseizoen\": \"badseizoen\",\n  \"badzout\": \"badzout\",\n  \"baede\": \"baed\",\n  \"baert\": \"baert\",\n  \"baf\": \"baf\",\n  \"bag\": \"bag\",\n  \"baga\": \"baga\",\n  \"bagage\": \"bagag\",\n  \"bagagedrager\": \"bagagedrager\",\n  \"bagasse\": \"bagas\",\n  \"bagger\": \"bagger\",\n  \"baggeraars\": \"baggerar\",\n  \"baggeractiviteiten\": \"baggeractiviteit\",\n  \"baggerbedrijf\": \"baggerbedrijf\",\n  \"baggerbeleid\": \"baggerbeleid\",\n  \"baggerbeleidsplan\": \"baggerbeleidsplan\",\n  \"baggerconcern\": \"baggerconcern\",\n  \"baggercongres\": \"baggercongres\",\n  \"baggercyclus\": \"baggercyclus\",\n  \"baggerdepot\": \"baggerdepot\",\n  \"baggerdepots\": \"baggerdepot\",\n  \"baggerdienst\": \"baggerdienst\",\n  \"baggeren\": \"bagger\",\n  \"baggerindustrie\": \"baggerindustrie\",\n  \"baggerkosten\": \"baggerkost\",\n  \"baggermachine\": \"baggermachin\",\n  \"baggermarkt\": \"baggermarkt\",\n  \"baggerproblematiek\": \"baggerproblematiek\",\n  \"baggerproef\": \"baggerproef\",\n  \"baggerschepen\": \"baggerschep\",\n  \"baggersector\": \"baggersector\",\n  \"baggerslib\": \"baggerslib\",\n  \"baggerspecie\": \"baggerspecie\",\n  \"baggerspeciedepot\": \"baggerspeciedepot\",\n  \"baggerspeciereiniging\": \"baggerspecierein\",\n  \"baggerspecieverwerking\": \"baggerspecieverwerk\",\n  \"baggerstort\": \"baggerstort\",\n  \"baggerstortplaats\": \"baggerstortplat\",\n  \"baggersystemen\": \"baggersystem\",\n  \"baggerverwerking\": \"baggerverwerk\",\n  \"baggerverwerkingsfabriek\": \"baggerverwerkingsfabriek\",\n  \"baggervolume\": \"baggervolum\",\n  \"baggerwater\": \"baggerwater\",\n  \"baggerwereld\": \"baggerwereld\",\n  \"baggerwerk\": \"baggerwerk\",\n  \"baggerwerkzaamheden\": \"baggerwerkzam\",\n  \"bags\": \"bag\",\n  \"bah\": \"bah\",\n  \"bahamas\": \"bahamas\",\n  \"baia\": \"baia\",\n  \"bais\": \"bais\",\n  \"bak\": \"bak\",\n  \"baker\": \"baker\",\n  \"bakermat\": \"bakermat\",\n  \"bakjes\": \"bakjes\",\n  \"bakken\": \"bak\",\n  \"bakker\": \"bakker\",\n  \"bakkerij\": \"bakkerij\",\n  \"bakkerijen\": \"bakkerij\",\n  \"bakkes\": \"bakkes\",\n  \"bakounine\": \"bakounin\",\n  \"baksteen\": \"baksten\",\n  \"baksteenfabrieken\": \"baksteenfabriek\",\n  \"baksteenfabrikanten\": \"baksteenfabrikant\",\n  \"baksteenindustrie\": \"baksteenindustrie\",\n  \"baksteenproduktieproces\": \"baksteenproduktieproces\",\n  \"baksteentjes\": \"baksteentjes\",\n  \"baksteenwerk\": \"baksteenwerk\",\n  \"bakstenen\": \"baksten\",\n  \"bakt\": \"bakt\",\n  \"bal\": \"bal\",\n  \"balans\": \"balan\",\n  \"balansen\": \"balans\",\n  \"balanskranen\": \"balanskran\",\n  \"balanstotaal\": \"balanstotal\",\n  \"balboekje\": \"balboekj\",\n  \"balcke\": \"balck\",\n  \"balde\": \"bald\",\n  \"baldewijns\": \"baldewijn\",\n  \"balen\": \"bal\",\n  \"balenpers\": \"balenper\",\n  \"balenpersen\": \"balenpers\",\n  \"balie\": \"balie\",\n  \"baljapon\": \"baljapon\",\n  \"baljaponnetjes\": \"baljaponnetjes\",\n  \"balk\": \"balk\",\n  \"balken\": \"balk\",\n  \"balkonnetjes\": \"balkonnetjes\",\n  \"ballast\": \"ballast\",\n  \"ballen\": \"ball\",\n  \"balletje\": \"balletj\",\n  \"ballingen\": \"balling\",\n  \"ballonplaat\": \"ballonplat\",\n  \"ballum\": \"ballum\",\n  \"bals\": \"bal\",\n  \"balsem\": \"balsem\",\n  \"balsemen\": \"balsem\",\n  \"baltimore\": \"baltimor\",\n  \"baltische\": \"baltisch\",\n  \"baltoilet\": \"baltoilet\",\n  \"balvader\": \"balvader\",\n  \"bam\": \"bam\",\n  \"bammens\": \"bammen\",\n  \"banaal\": \"banal\",\n  \"banaanblaren\": \"banaanblar\",\n  \"banale\": \"banal\",\n  \"banaliteit\": \"banaliteit\",\n  \"banco\": \"banco\",\n  \"band\": \"band\",\n  \"banden\": \"band\",\n  \"bandenbedrijf\": \"bandenbedrijf\",\n  \"bandenbranche\": \"bandenbranch\",\n  \"bandsystemen\": \"bandsystem\",\n  \"banen\": \"ban\",\n  \"banengroei\": \"banengroei\",\n  \"banenverlies\": \"banenverlies\",\n  \"bang\": \"bang\",\n  \"bangalen\": \"bangal\",\n  \"bangde\": \"bangd\",\n  \"bange\": \"bang\",\n  \"bangende\": \"bangend\",\n  \"bangheden\": \"bangheid\",\n  \"bangheid\": \"bangheid\",\n  \"bangladesh\": \"bangladesh\",\n  \"bank\": \"bank\",\n  \"bankastraat\": \"bankastrat\",\n  \"banken\": \"bank\",\n  \"bankenconsortium\": \"bankenconsortium\",\n  \"banket\": \"banket\",\n  \"banketbakkerijen\": \"banketbakkerij\",\n  \"bankje\": \"bankj\",\n  \"bankpapier\": \"bankpapier\",\n  \"bannen\": \"bann\",\n  \"banneweg\": \"banneweg\",\n  \"banque\": \"banque\",\n  \"banska\": \"banska\",\n  \"bant\": \"bant\",\n  \"banz\": \"banz\",\n  \"bap\": \"bap\",\n  \"bar\": \"bar\",\n  \"barbaar\": \"barbar\",\n  \"barbaars\": \"barbar\",\n  \"bärbel\": \"barbel\",\n  \"barcelona\": \"barcelona\",\n  \"barcodes\": \"barcodes\",\n  \"baren\": \"bar\",\n  \"barend\": \"barend\",\n  \"barende\": \"barend\",\n  \"barendrecht\": \"barendrecht\",\n  \"barends\": \"barend\",\n  \"barentszee\": \"barentszee\",\n  \"barentszzee\": \"barentszzee\",\n  \"bariet\": \"bariet\",\n  \"baringen\": \"baring\",\n  \"barlagen\": \"barlag\",\n  \"barmhartig\": \"barmhart\",\n  \"barmsijs\": \"barmsijs\",\n  \"barneveld\": \"barneveld\",\n  \"barometer\": \"barometer\",\n  \"baron\": \"baron\",\n  \"barones\": \"barones\",\n  \"baronne\": \"baronn\",\n  \"barrels\": \"barrel\",\n  \"barrett\": \"barrett\",\n  \"barrières\": \"barrières\",\n  \"bars\": \"bar\",\n  \"barse\": \"bar\",\n  \"barseback\": \"barseback\",\n  \"barsten\": \"barst\",\n  \"barstende\": \"barstend\",\n  \"barstte\": \"barst\",\n  \"bas\": \"bas\",\n  \"basalt\": \"basalt\",\n  \"basaltachtig\": \"basaltacht\",\n  \"basaltachtige\": \"basaltacht\",\n  \"basaltblokken\": \"basaltblok\",\n  \"basaltlagen\": \"basaltlag\",\n  \"base\": \"bas\",\n  \"based\": \"based\",\n  \"baseerde\": \"baseerd\",\n  \"baseert\": \"baseert\",\n  \"basel\": \"basel\",\n  \"baselse\": \"basel\",\n  \"basen\": \"bas\",\n  \"baseren\": \"baser\",\n  \"baserend\": \"baser\",\n  \"bases\": \"bases\",\n  \"basf\": \"basf\",\n  \"basis\": \"basis\",\n  \"basische\": \"basisch\",\n  \"basisdiameter\": \"basisdiameter\",\n  \"basisdocument\": \"basisdocument\",\n  \"basisgegevens\": \"basisgegeven\",\n  \"basisjaar\": \"basisjar\",\n  \"basiskwaliteiten\": \"basiskwaliteit\",\n  \"basismaatregelen\": \"basismaatregel\",\n  \"basismateriaal\": \"basismateriaal\",\n  \"basismetaal\": \"basismetal\",\n  \"basismetaalindustrie\": \"basismetaalindustrie\",\n  \"basisniveau\": \"basisniveau\",\n  \"basisonderwijs\": \"basisonderwijs\",\n  \"basisonderzoek\": \"basisonderzoek\",\n  \"basispakket\": \"basispakket\",\n  \"basisprincipe\": \"basisprincip\",\n  \"basisprincipes\": \"basisprincipes\",\n  \"basisschool\": \"basisschol\",\n  \"basisvoorwaarden\": \"basisvoorwaard\",\n  \"baskenland\": \"baskenland\",\n  \"bassin\": \"bassin\",\n  \"bassins\": \"bassin\",\n  \"bast\": \"bast\",\n  \"baste\": \"bast\",\n  \"bastille\": \"bastill\",\n  \"bat\": \"bat\",\n  \"batavia\": \"batavia\",\n  \"batch\": \"batch\",\n  \"bate\": \"bat\",\n  \"bateca\": \"bateca\",\n  \"baten\": \"bat\",\n  \"batenanalyse\": \"batenanalys\",\n  \"batenanalyses\": \"batenanalyses\",\n  \"batenburg\": \"batenburg\",\n  \"batenonderzoek\": \"batenonderzoek\",\n  \"batenverhouding\": \"batenverhoud\",\n  \"batik\": \"batik\",\n  \"batneec\": \"batnec\",\n  \"baton\": \"baton\",\n  \"batterij\": \"batterij\",\n  \"batterijen\": \"batterij\",\n  \"batterijenbranche\": \"batterijenbranch\",\n  \"batterijenplan\": \"batterijenplan\",\n  \"batterijfabrikant\": \"batterijfabrikant\",\n  \"batterijhouder\": \"batterijhouder\",\n  \"batterijleveranciers\": \"batterijleverancier\",\n  \"batterijprijs\": \"batterijprijs\",\n  \"batterijsector\": \"batterijsector\",\n  \"batterijstal\": \"batterijstal\",\n  \"battrex\": \"battrex\",\n  \"bau\": \"bau\",\n  \"bauer\": \"bauer\",\n  \"baum\": \"baum\",\n  \"baumel\": \"baumel\",\n  \"bavaria\": \"bavaria\",\n  \"bavel\": \"bavel\",\n  \"bay\": \"bay\",\n  \"bayer\": \"bayer\",\n  \"bayernwerk\": \"bayernwerk\",\n  \"baywa\": \"baywa\",\n  \"bazel\": \"bazel\",\n  \"bazig\": \"bazig\",\n  \"bazuinen\": \"bazuin\",\n  \"bazuint\": \"bazuint\",\n  \"bba\": \"bba\",\n  \"bbl\": \"bbl\",\n  \"bbln\": \"bbln\",\n  \"bc\": \"bc\",\n  \"bcf\": \"bcf\",\n  \"bcq\": \"bcq\",\n  \"bd\": \"bd\",\n  \"bdag\": \"bdag\",\n  \"bdi\": \"bdi\",\n  \"be\": \"be\",\n  \"bea\": \"bea\",\n  \"beaamde\": \"beaamd\",\n  \"beached\": \"beached\",\n  \"beag\": \"beag\",\n  \"beangst\": \"beangst\",\n  \"beangstigd\": \"beangstigd\",\n  \"beantwoord\": \"beantwoord\",\n  \"beantwoordde\": \"beantwoord\",\n  \"beantwoordden\": \"beantwoord\",\n  \"beantwoorden\": \"beantwoord\",\n  \"beantwoording\": \"beantwoord\",\n  \"beantwoordt\": \"beantwoordt\",\n  \"bear\": \"bear\",\n  \"beatrix\": \"beatrix\",\n  \"beatrixgebouw\": \"beatrixgebouw\",\n  \"beatrixpark\": \"beatrixpark\",\n  \"beaujolais\": \"beaujolais\",\n  \"beb\": \"beb\",\n  \"bebat\": \"bebat\",\n  \"beboet\": \"beboet\",\n  \"bebossingen\": \"beboss\",\n  \"bebossingsgolven\": \"bebossingsgolv\",\n  \"bebost\": \"bebost\",\n  \"bebouwd\": \"bebouwd\",\n  \"bebouwde\": \"bebouwd\",\n  \"bebouwing\": \"bebouw\",\n  \"bebouwingscontouren\": \"bebouwingscontour\",\n  \"bebouwingsmogelijkheden\": \"bebouwingsmog\",\n  \"bechtel\": \"bechtel\",\n  \"becijferd\": \"becijferd\",\n  \"becijfering\": \"becijfer\",\n  \"becijfert\": \"becijfert\",\n  \"becker\": \"becker\",\n  \"beckers\": \"becker\",\n  \"beckerweg\": \"beckerweg\",\n  \"beckum\": \"beckum\",\n  \"beconcurreerd\": \"beconcurreerd\",\n  \"beconcurreren\": \"beconcurrer\",\n  \"becquerel\": \"becquerel\",\n  \"bed\": \"bed\",\n  \"bedaard\": \"bedaard\",\n  \"bedacht\": \"bedacht\",\n  \"bedachtzaam\": \"bedachtzam\",\n  \"bedachtzaamheid\": \"bedachtzam\",\n  \"bedank\": \"bedank\",\n  \"bedanken\": \"bedank\",\n  \"bedankjes\": \"bedankjes\",\n  \"bedankt\": \"bedankt\",\n  \"bedankte\": \"bedankt\",\n  \"bedaren\": \"bedar\",\n  \"beddelakens\": \"beddelaken\",\n  \"bedden\": \"bed\",\n  \"bedeesd\": \"bedeesd\",\n  \"bedeesdheid\": \"bedeesd\",\n  \"bedekken\": \"bedek\",\n  \"bedekkingsgraad\": \"bedekkingsgrad\",\n  \"bedekt\": \"bedekt\",\n  \"bedekte\": \"bedekt\",\n  \"bedelaar\": \"bedelar\",\n  \"bedelaarster\": \"bedelaarster\",\n  \"bedenk\": \"bedenk\",\n  \"bedènk\": \"bedènk\",\n  \"bedenkelijk\": \"bedenk\",\n  \"bedenken\": \"bedenk\",\n  \"bedenkende\": \"bedenk\",\n  \"bedenkers\": \"bedenker\",\n  \"bedenkingen\": \"bedenk\",\n  \"bedenkt\": \"bedenkt\",\n  \"bederf\": \"bederf\",\n  \"bederft\": \"bederft\",\n  \"bederven\": \"bederv\",\n  \"bedgordijnen\": \"bedgordijn\",\n  \"bediend\": \"bediend\",\n  \"bedienden\": \"bediend\",\n  \"bedienen\": \"bedien\",\n  \"bediening\": \"bedien\",\n  \"bedienings\": \"bedien\",\n  \"bedieningsgemak\": \"bedieningsgemak\",\n  \"bedieningsruimte\": \"bedieningsruimt\",\n  \"bedierf\": \"bedierf\",\n  \"bedillen\": \"bedill\",\n  \"bedillige\": \"bedill\",\n  \"bedilzucht\": \"bedilzucht\",\n  \"beding\": \"beding\",\n  \"bedingen\": \"beding\",\n  \"bediscussieert\": \"bediscussieert\",\n  \"bedisselde\": \"bedisseld\",\n  \"bedje\": \"bedj\",\n  \"bedjes\": \"bedjes\",\n  \"bedoel\": \"bedoel\",\n  \"bedoeld\": \"bedoeld\",\n  \"bedoelde\": \"bedoeld\",\n  \"bedoelden\": \"bedoeld\",\n  \"bedoelen\": \"bedoel\",\n  \"bedoeling\": \"bedoel\",\n  \"bedoelingen\": \"bedoel\",\n  \"bedoelt\": \"bedoelt\",\n  \"bedolf\": \"bedolf\",\n  \"bedonderd\": \"bedonderd\",\n  \"bedonsde\": \"bedonsd\",\n  \"bedorven\": \"bedorv\",\n  \"bedraagt\": \"bedraagt\",\n  \"bedrading\": \"bedrad\",\n  \"bedrag\": \"bedrag\",\n  \"bedrage\": \"bedrag\",\n  \"bedragen\": \"bedrag\",\n  \"bedreigd\": \"bedreigd\",\n  \"bedreigde\": \"bedreigd\",\n  \"bedreigen\": \"bedreig\",\n  \"bedreigende\": \"bedreig\",\n  \"bedreiging\": \"bedreig\",\n  \"bedreigingen\": \"bedreig\",\n  \"bedreigt\": \"bedreigt\",\n  \"bedreven\": \"bedrev\",\n  \"bedrieg\": \"bedrieg\",\n  \"bedriegen\": \"bedrieg\",\n  \"bedriegt\": \"bedriegt\",\n  \"bedrijf\": \"bedrijf\",\n  \"bedrijfjes\": \"bedrijfjes\",\n  \"bedrijfs\": \"bedrijf\",\n  \"bedrijfsactiviteiten\": \"bedrijfsactiviteit\",\n  \"bedrijfsadministratie\": \"bedrijfsadministratie\",\n  \"bedrijfsadviseur\": \"bedrijfsadviseur\",\n  \"bedrijfsafval\": \"bedrijfsafval\",\n  \"bedrijfsafvalcontainers\": \"bedrijfsafvalcontainer\",\n  \"bedrijfsafvalstoffen\": \"bedrijfsafvalstoff\",\n  \"bedrijfsafvalwater\": \"bedrijfsafvalwater\",\n  \"bedrijfsartsen\": \"bedrijfsarts\",\n  \"bedrijfsauto\": \"bedrijfsauto\",\n  \"bedrijfsbeëindigiging\": \"bedrijfsbeeindig\",\n  \"bedrijfsbeleid\": \"bedrijfsbeleid\",\n  \"bedrijfsbezoek\": \"bedrijfsbezoek\",\n  \"bedrijfschap\": \"bedrijfschap\",\n  \"bedrijfscomplex\": \"bedrijfscomplex\",\n  \"bedrijfscontainers\": \"bedrijfscontainer\",\n  \"bedrijfscontroles\": \"bedrijfscontroles\",\n  \"bedrijfscultuur\": \"bedrijfscultur\",\n  \"bedrijfsdoorlichting\": \"bedrijfsdoorlicht\",\n  \"bedrijfsdruk\": \"bedrijfsdruk\",\n  \"bedrijfsduur\": \"bedrijfsdur\",\n  \"bedrijfsdynamiek\": \"bedrijfsdynamiek\",\n  \"bedrijfseconomie\": \"bedrijfseconomie\",\n  \"bedrijfseconomisch\": \"bedrijfseconomisch\",\n  \"bedrijfseconomische\": \"bedrijfseconomisch\",\n  \"bedrijfseffectentoets\": \"bedrijfseffectentoet\",\n  \"bedrijfseindigingen\": \"bedrijfseind\",\n  \"bedrijfsgebouwen\": \"bedrijfsgebouw\",\n  \"bedrijfsgegevens\": \"bedrijfsgegeven\",\n  \"bedrijfsgerichte\": \"bedrijfsgericht\",\n  \"bedrijfsgroep\": \"bedrijfsgroep\",\n  \"bedrijfsgrootte\": \"bedrijfsgrot\",\n  \"bedrijfshal\": \"bedrijfshal\",\n  \"bedrijfshuisvesting\": \"bedrijfshuisvest\",\n  \"bedrijfsimago\": \"bedrijfsimago\",\n  \"bedrijfsinformatie\": \"bedrijfsinformatie\",\n  \"bedrijfsinstallaties\": \"bedrijfsinstallaties\",\n  \"bedrijfsintern\": \"bedrijfsintern\",\n  \"bedrijfsinterne\": \"bedrijfsintern\",\n  \"bedrijfsklaar\": \"bedrijfsklar\",\n  \"bedrijfsklare\": \"bedrijfsklar\",\n  \"bedrijfskunde\": \"bedrijfskund\",\n  \"bedrijfskundig\": \"bedrijfskund\",\n  \"bedrijfskundige\": \"bedrijfskund\",\n  \"bedrijfslab\": \"bedrijfslab\",\n  \"bedrijfslaboratorium\": \"bedrijfslaboratorium\",\n  \"bedrijfslasten\": \"bedrijfslast\",\n  \"bedrijfsleider\": \"bedrijfsleider\",\n  \"bedrijfsleven\": \"bedrijfslev\",\n  \"bedrijfslocatie\": \"bedrijfslocatie\",\n  \"bedrijfslocaties\": \"bedrijfslocaties\",\n  \"bedrijfsmatig\": \"bedrijfsmat\",\n  \"bedrijfsmiddel\": \"bedrijfsmiddel\",\n  \"bedrijfsmiddelen\": \"bedrijfsmiddel\",\n  \"bedrijfsmilieubarometer\": \"bedrijfsmilieubarometer\",\n  \"bedrijfsmilieudiagnose\": \"bedrijfsmilieudiagnos\",\n  \"bedrijfsmilieudienst\": \"bedrijfsmilieudienst\",\n  \"bedrijfsmilieudiensten\": \"bedrijfsmilieudienst\",\n  \"bedrijfsmilieuplan\": \"bedrijfsmilieuplan\",\n  \"bedrijfsmilieuplannen\": \"bedrijfsmilieuplann\",\n  \"bedrijfsmilieuzorg\": \"bedrijfsmilieuzorg\",\n  \"bedrijfsmilieuzorgbeleid\": \"bedrijfsmilieuzorgbeleid\",\n  \"bedrijfsmilieuzorgsysteem\": \"bedrijfsmilieuzorgsystem\",\n  \"bedrijfsniveau\": \"bedrijfsniveau\",\n  \"bedrijfsontwikkeling\": \"bedrijfsontwikkel\",\n  \"bedrijfsontwikkelingen\": \"bedrijfsontwikkel\",\n  \"bedrijfsopbrengsten\": \"bedrijfsopbrengst\",\n  \"bedrijfsoppervlak\": \"bedrijfsoppervlak\",\n  \"bedrijfsopzet\": \"bedrijfsopzet\",\n  \"bedrijfsorganisatie\": \"bedrijfsorganisatie\",\n  \"bedrijfsovernames\": \"bedrijfsovernames\",\n  \"bedrijfsplannen\": \"bedrijfsplann\",\n  \"bedrijfsprocedures\": \"bedrijfsprocedures\",\n  \"bedrijfsproces\": \"bedrijfsproces\",\n  \"bedrijfsquotum\": \"bedrijfsquotum\",\n  \"bedrijfsreststoffen\": \"bedrijfsreststoff\",\n  \"bedrijfsresultaat\": \"bedrijfsresultat\",\n  \"bedrijfsresultaten\": \"bedrijfsresultat\",\n  \"bedrijfsriolering\": \"bedrijfsrioler\",\n  \"bedrijfssaneringen\": \"bedrijfssaner\",\n  \"bedrijfsschap\": \"bedrijfsschap\",\n  \"bedrijfsschoeisel\": \"bedrijfsschoeisel\",\n  \"bedrijfssector\": \"bedrijfssector\",\n  \"bedrijfssituatie\": \"bedrijfssituatie\",\n  \"bedrijfssluitingen\": \"bedrijfssluit\",\n  \"bedrijfsstrategie\": \"bedrijfsstrategie\",\n  \"bedrijfsstructuur\": \"bedrijfsstructur\",\n  \"bedrijfstak\": \"bedrijfstak\",\n  \"bedrijfstakken\": \"bedrijfstak\",\n  \"bedrijfstakorganisatie\": \"bedrijfstakorganisatie\",\n  \"bedrijfstakstudie\": \"bedrijfstakstudie\",\n  \"bedrijfstakstudies\": \"bedrijfstakstudies\",\n  \"bedrijfstechnische\": \"bedrijfstechnisch\",\n  \"bedrijfstemperatuur\": \"bedrijfstemperatur\",\n  \"bedrijfsterrein\": \"bedrijfsterrein\",\n  \"bedrijfsterreinen\": \"bedrijfsterrein\",\n  \"bedrijfstijd\": \"bedrijfstijd\",\n  \"bedrijfstructuur\": \"bedrijfstructur\",\n  \"bedrijfstype\": \"bedrijfstyp\",\n  \"bedrijfsuitbreiding\": \"bedrijfsuitbreid\",\n  \"bedrijfsuitbreidingen\": \"bedrijfsuitbreid\",\n  \"bedrijfsuitoefening\": \"bedrijfsuitoefen\",\n  \"bedrijfsuitvoering\": \"bedrijfsuitvoer\",\n  \"bedrijfsuren\": \"bedrijfsur\",\n  \"bedrijfsveiligheid\": \"bedrijfsveil\",\n  \"bedrijfsvervoer\": \"bedrijfsvervoer\",\n  \"bedrijfsvervoerplan\": \"bedrijfsvervoerplan\",\n  \"bedrijfsverzamelgebouwen\": \"bedrijfsverzamelgebouw\",\n  \"bedrijfsverzekering\": \"bedrijfsverzeker\",\n  \"bedrijfsverzekeringspolissen\": \"bedrijfsverzekeringspoliss\",\n  \"bedrijfsvestigingen\": \"bedrijfsvest\",\n  \"bedrijfsvet\": \"bedrijfsvet\",\n  \"bedrijfsvetten\": \"bedrijfsvet\",\n  \"bedrijfsvloer\": \"bedrijfsvloer\",\n  \"bedrijfsvloerplaten\": \"bedrijfsvloerplat\",\n  \"bedrijfsvoering\": \"bedrijfsvoer\",\n  \"bedrijfsvoorlichting\": \"bedrijfsvoorlicht\",\n  \"bedrijfswoning\": \"bedrijfswon\",\n  \"bedrijfszekerheid\": \"bedrijfszeker\",\n  \"bedrijfszorg\": \"bedrijfszorg\",\n  \"bedrijven\": \"bedrijv\",\n  \"bedrijvengroep\": \"bedrijvengroep\",\n  \"bedrijvenlocaties\": \"bedrijvenlocaties\",\n  \"bedrijvenmarkt\": \"bedrijvenmarkt\",\n  \"bedrijvenpark\": \"bedrijvenpark\",\n  \"bedrijventerrein\": \"bedrijventerrein\",\n  \"bedrijventerreinen\": \"bedrijventerrein\",\n  \"bedrijvigheid\": \"bedrijv\",\n  \"bedrilde\": \"bedrild\",\n  \"bedringen\": \"bedring\",\n  \"bedringing\": \"bedring\",\n  \"bedroefd\": \"bedroefd\",\n  \"bedroeg\": \"bedroeg\",\n  \"bedroegen\": \"bedroeg\",\n  \"bedrog\": \"bedrog\",\n  \"bedrogen\": \"bedrog\",\n  \"bedrong\": \"bedrong\",\n  \"bedroog\": \"bedrog\",\n  \"bedrukkingen\": \"bedruk\",\n  \"bedside\": \"bedsid\",\n  \"beduid\": \"beduid\",\n  \"beduidde\": \"beduid\",\n  \"beduiden\": \"beduid\",\n  \"beduidend\": \"beduid\",\n  \"beduidenis\": \"beduidenis\",\n  \"bedum\": \"bedum\",\n  \"bedwang\": \"bedwang\",\n  \"bedwelmde\": \"bedwelmd\",\n  \"bedwingen\": \"bedwing\",\n  \"bedwong\": \"bedwong\",\n  \"bedwongen\": \"bedwong\",\n  \"beëdigd\": \"beedigd\",\n  \"beef\": \"bef\",\n  \"beefde\": \"beefd\",\n  \"beefden\": \"beefd\",\n  \"beëindigd\": \"beeindigd\",\n  \"beëindigen\": \"beeindig\",\n  \"beëindiging\": \"beeindig\",\n  \"beëindigt\": \"beeindigt\",\n  \"beejte\": \"beejt\",\n  \"beek\": \"bek\",\n  \"beekbergen\": \"beekberg\",\n  \"beekdal\": \"beekdal\",\n  \"beekdalen\": \"beekdal\",\n  \"beekdallandschappen\": \"beekdallandschapp\",\n  \"beekes\": \"beekes\",\n  \"beekontwikkelingsproject\": \"beekontwikkelingsproject\",\n  \"beekse\": \"bek\",\n  \"beeld\": \"beeld\",\n  \"beeldanalyse\": \"beeldanalys\",\n  \"beeldbepalend\": \"beeldbepal\",\n  \"beeldbuizen\": \"beeldbuiz\",\n  \"beelden\": \"beeld\",\n  \"beeldende\": \"beeldend\",\n  \"beeldhouwen\": \"beeldhouw\",\n  \"beeldhouwer\": \"beeldhouwer\",\n  \"beeldje\": \"beeldj\",\n  \"beeldmerk\": \"beeldmerk\",\n  \"beeldrecht\": \"beeldrecht\",\n  \"beeldscherm\": \"beeldscherm\",\n  \"beeldschermen\": \"beeldscherm\",\n  \"beeldvorming\": \"beeldvorm\",\n  \"beemster\": \"beemster\",\n  \"been\": \"ben\",\n  \"beenderen\": \"beender\",\n  \"beenderenstel\": \"beenderenstel\",\n  \"beenderenstelsel\": \"beenderenstelsel\",\n  \"beendermeel\": \"beendermel\",\n  \"beentjes\": \"beentjes\",\n  \"beer\": \"ber\",\n  \"beers\": \"ber\",\n  \"beerse\": \"ber\",\n  \"beest\": \"beest\",\n  \"beestelijf\": \"beestelijf\",\n  \"beesten\": \"beest\",\n  \"beestentroep\": \"beestentroep\",\n  \"beestige\": \"beestig\",\n  \"beet\": \"bet\",\n  \"beetje\": \"beetj\",\n  \"beetnemen\": \"beetnem\",\n  \"beets\": \"bet\",\n  \"begaan\": \"began\",\n  \"begaanbaar\": \"began\",\n  \"begaf\": \"begaf\",\n  \"beganegrondvloer\": \"beganegrondvloer\",\n  \"bege\": \"beg\",\n  \"begeeft\": \"begeeft\",\n  \"begeerte\": \"begeert\",\n  \"begeleid\": \"begeleid\",\n  \"begeleide\": \"begeleid\",\n  \"begeleiden\": \"begeleid\",\n  \"begeleidende\": \"begeleid\",\n  \"begeleider\": \"begeleider\",\n  \"begeleiding\": \"begeleid\",\n  \"begeleidt\": \"begeleidt\",\n  \"begemann\": \"begemann\",\n  \"begerig\": \"beger\",\n  \"begerige\": \"beger\",\n  \"begeven\": \"begev\",\n  \"beghrijpt\": \"beghrijpt\",\n  \"begin\": \"begin\",\n  \"beginne\": \"beginn\",\n  \"beginnen\": \"beginn\",\n  \"beginnende\": \"beginn\",\n  \"beginners\": \"beginner\",\n  \"beginsel\": \"beginsel\",\n  \"beginselakkoord\": \"beginselakkoord\",\n  \"beginselen\": \"beginsel\",\n  \"beginselloosheid\": \"beginsellos\",\n  \"begint\": \"begint\",\n  \"beglazing\": \"beglaz\",\n  \"beglazingssystemen\": \"beglazingssystem\",\n  \"begon\": \"begon\",\n  \"begonnen\": \"begonn\",\n  \"begoocheling\": \"begoochel\",\n  \"begrafenis\": \"begrafenis\",\n  \"begraven\": \"begrav\",\n  \"begrazen\": \"begraz\",\n  \"begreep\": \"begrep\",\n  \"begrensd\": \"begrensd\",\n  \"begrenzing\": \"begrenz\",\n  \"begrenzingsplan\": \"begrenzingsplan\",\n  \"begrepen\": \"begrep\",\n  \"begrijp\": \"begrijp\",\n  \"begrijpelijk\": \"begrijp\",\n  \"begrijpelijke\": \"begrijp\",\n  \"begrijpen\": \"begrijp\",\n  \"begrijpende\": \"begrijp\",\n  \"begrijpends\": \"begrijp\",\n  \"begrijpt\": \"begrijpt\",\n  \"begrip\": \"begrip\",\n  \"begrippen\": \"begripp\",\n  \"begrippenlijsten\": \"begrippenlijst\",\n  \"begroeid\": \"begroeid\",\n  \"begroeiing\": \"begroei\",\n  \"begroet\": \"begroet\",\n  \"begroeten\": \"begroet\",\n  \"begroeting\": \"begroet\",\n  \"begroetingen\": \"begroet\",\n  \"begroette\": \"begroet\",\n  \"begroetten\": \"begroet\",\n  \"begroeven\": \"begroev\",\n  \"begroot\": \"begrot\",\n  \"begroting\": \"begrot\",\n  \"begrotingen\": \"begrot\",\n  \"begrotingsbehandeling\": \"begrotingsbehandel\",\n  \"begunstiger\": \"begunstiger\",\n  \"beha\": \"beha\",\n  \"behaaglijk\": \"behag\",\n  \"behaald\": \"behaald\",\n  \"behaalde\": \"behaald\",\n  \"behagelijk\": \"behag\",\n  \"behagen\": \"behag\",\n  \"behalen\": \"behal\",\n  \"behalve\": \"behalv\",\n  \"behandelaar\": \"behandelar\",\n  \"behandeld\": \"behandeld\",\n  \"behandelde\": \"behandeld\",\n  \"behandelen\": \"behandel\",\n  \"behandelend\": \"behandel\",\n  \"behandeling\": \"behandel\",\n  \"behandelingen\": \"behandel\",\n  \"behandelingssysteem\": \"behandelingssystem\",\n  \"behandelingstechniek\": \"behandelingstechniek\",\n  \"behandelmethoden\": \"behandelmethod\",\n  \"behandelt\": \"behandelt\",\n  \"behang\": \"behang\",\n  \"behangen\": \"behang\",\n  \"behangerskleuren\": \"behangerskleur\",\n  \"behangsel\": \"behangsel\",\n  \"behangselbloemen\": \"behangselbloem\",\n  \"behangselpapier\": \"behangselpapier\",\n  \"behartigd\": \"behartigd\",\n  \"behartiging\": \"behart\",\n  \"behartigt\": \"behartigt\",\n  \"béhault\": \"behault\",\n  \"beheer\": \"beher\",\n  \"beheerbedrijven\": \"beheerbedrijv\",\n  \"beheerd\": \"beheerd\",\n  \"beheerde\": \"beheerd\",\n  \"beheerder\": \"beheerder\",\n  \"beheerders\": \"beheerder\",\n  \"beheergebieden\": \"beheergebied\",\n  \"beheergronden\": \"beheergrond\",\n  \"beheers\": \"beher\",\n  \"beheersaspecten\": \"beheersaspect\",\n  \"beheersbaar\": \"beheers\",\n  \"beheersbare\": \"beheers\",\n  \"beheerscontract\": \"beheerscontract\",\n  \"beheersen\": \"beheers\",\n  \"beheersend\": \"beheers\",\n  \"beheersgebied\": \"beheersgebied\",\n  \"beheersgebieden\": \"beheersgebied\",\n  \"beheersing\": \"beheers\",\n  \"beheersingstechnologie\": \"beheersingstechnologie\",\n  \"beheersmaatregelen\": \"beheersmaatregel\",\n  \"beheersorganisatie\": \"beheersorganisatie\",\n  \"beheersovereenkomst\": \"beheersovereenkomst\",\n  \"beheersovereenkomsten\": \"beheersovereenkomst\",\n  \"beheersplan\": \"beheersplan\",\n  \"beheersplannen\": \"beheersplann\",\n  \"beheerssituatie\": \"beheerssituatie\",\n  \"beheerssubsidie\": \"beheerssubsidie\",\n  \"beheerst\": \"beheerst\",\n  \"beheerste\": \"beheerst\",\n  \"beheersten\": \"beheerst\",\n  \"beheert\": \"beheert\",\n  \"behelst\": \"behelst\",\n  \"behelzen\": \"behelz\",\n  \"beheren\": \"beher\",\n  \"beherend\": \"beher\",\n  \"behield\": \"behield\",\n  \"behielden\": \"behield\",\n  \"behoeden\": \"behoed\",\n  \"behoefde\": \"behoefd\",\n  \"behoefden\": \"behoefd\",\n  \"behoeft\": \"behoeft\",\n  \"behoefte\": \"behoeft\",\n  \"behoeften\": \"behoeft\",\n  \"behoeve\": \"behoev\",\n  \"behoeven\": \"behoev\",\n  \"behoor\": \"behor\",\n  \"behoord\": \"behoord\",\n  \"behoorde\": \"behoord\",\n  \"behoorden\": \"behoord\",\n  \"behoorlijk\": \"behor\",\n  \"behoorlijke\": \"behor\",\n  \"behoort\": \"behoort\",\n  \"behoren\": \"behor\",\n  \"behorende\": \"behor\",\n  \"behoud\": \"behoud\",\n  \"behouden\": \"behoud\",\n  \"behoudende\": \"behoud\",\n  \"behoudens\": \"behouden\",\n  \"behringen\": \"behring\",\n  \"behuizing\": \"behuiz\",\n  \"behuizingen\": \"behuiz\",\n  \"behuizingsdelen\": \"behuizingsdel\",\n  \"behulp\": \"behulp\",\n  \"behulpzaam\": \"behulpzam\",\n  \"bei\": \"bei\",\n  \"beide\": \"beid\",\n  \"beiden\": \"beid\",\n  \"beider\": \"beider\",\n  \"beidjes\": \"beidjes\",\n  \"beieren\": \"beier\",\n  \"beierse\": \"beier\",\n  \"beijing\": \"beijing\",\n  \"beïnvloed\": \"beinvloed\",\n  \"beïnvloeden\": \"beinvloed\",\n  \"beïnvloedt\": \"beinvloedt\",\n  \"beirut\": \"beirut\",\n  \"beitelhamers\": \"beitelhamer\",\n  \"beits\": \"beit\",\n  \"bejaarden\": \"bejaard\",\n  \"bejo\": \"bejo\",\n  \"bejour\": \"bejour\",\n  \"bek\": \"bek\",\n  \"bekabeling\": \"bekabel\",\n  \"bekalking\": \"bekalk\",\n  \"bekeek\": \"bekek\",\n  \"bekeerd\": \"bekeerd\",\n  \"bekeken\": \"bekek\",\n  \"beken\": \"bek\",\n  \"bekend\": \"bekend\",\n  \"bekende\": \"bekend\",\n  \"bekendgemaakt\": \"bekendgemaakt\",\n  \"bekendgemaakte\": \"bekendgemaakt\",\n  \"bekendheid\": \"bekend\",\n  \"bekendmaken\": \"bekendmak\",\n  \"bekendmaking\": \"bekendmak\",\n  \"bekends\": \"bekend\",\n  \"bekennen\": \"bekenn\",\n  \"bekent\": \"bekent\",\n  \"bekentenis\": \"bekentenis\",\n  \"bekers\": \"beker\",\n  \"bekertjes\": \"bekertjes\",\n  \"bekijken\": \"bekijk\",\n  \"bekijkt\": \"bekijkt\",\n  \"bekken\": \"bek\",\n  \"bekkenpassage\": \"bekkenpassag\",\n  \"bekkens\": \"bekken\",\n  \"beklaag\": \"beklag\",\n  \"beklaagd\": \"beklaagd\",\n  \"beklaagde\": \"beklaagd\",\n  \"beklad\": \"beklad\",\n  \"bekladt\": \"bekladt\",\n  \"beklag\": \"beklag\",\n  \"beklagen\": \"beklag\",\n  \"bekleden\": \"bekled\",\n  \"bekledende\": \"bekled\",\n  \"bekleding\": \"bekled\",\n  \"bekledingsmateriaal\": \"bekledingsmateriaal\",\n  \"bekleed\": \"bekled\",\n  \"bekleedsel\": \"bekleedsel\",\n  \"bekleedt\": \"bekleedt\",\n  \"beklemde\": \"beklemd\",\n  \"beklemden\": \"beklemd\",\n  \"beklemmend\": \"beklemm\",\n  \"beklemming\": \"beklemm\",\n  \"beklemt\": \"beklemt\",\n  \"beklimmen\": \"beklimm\",\n  \"beklimming\": \"beklimm\",\n  \"beknopt\": \"beknopt\",\n  \"beknopte\": \"beknopt\",\n  \"bekoeld\": \"bekoeld\",\n  \"bekomen\": \"bekom\",\n  \"bekommeren\": \"bekommer\",\n  \"bekoord\": \"bekoord\",\n  \"bekoorde\": \"bekoord\",\n  \"bekoorlijk\": \"bekor\",\n  \"bekoring\": \"bekor\",\n  \"bekostigd\": \"bekostigd\",\n  \"bekostigen\": \"bekost\",\n  \"bekrachtigd\": \"bekrachtigd\",\n  \"bekrachtigen\": \"bekracht\",\n  \"bekrachtiging\": \"bekracht\",\n  \"bekrachtigt\": \"bekrachtigt\",\n  \"bekranste\": \"bekranst\",\n  \"bekritiseerd\": \"bekritiseerd\",\n  \"bekritiseerde\": \"bekritiseerd\",\n  \"bekritiseert\": \"bekritiseert\",\n  \"bekritiseren\": \"bekritiser\",\n  \"bekroond\": \"bekroond\",\n  \"bekroonde\": \"bekroond\",\n  \"bekwaamheid\": \"bekwam\",\n  \"bel\": \"bel\",\n  \"belaagd\": \"belaagd\",\n  \"belabberd\": \"belabberd\",\n  \"belachelijk\": \"belach\",\n  \"belachelijke\": \"belach\",\n  \"belachelijkheid\": \"belach\",\n  \"belachelijkheidjes\": \"belachelijkheidjes\",\n  \"belading\": \"belad\",\n  \"beladingssysteem\": \"beladingssystem\",\n  \"belandde\": \"beland\",\n  \"belandt\": \"belandt\",\n  \"belang\": \"belang\",\n  \"belangeloze\": \"belangeloz\",\n  \"belangen\": \"belang\",\n  \"belangenafweging\": \"belangenafweg\",\n  \"belangenbehartiging\": \"belangenbehart\",\n  \"belangengroep\": \"belangengroep\",\n  \"belangengroepen\": \"belangengroep\",\n  \"belangengroeperingen\": \"belangengroeper\",\n  \"belangenorganisatie\": \"belangenorganisatie\",\n  \"belangenorganisaties\": \"belangenorganisaties\",\n  \"belangentegenstellingen\": \"belangentegenstell\",\n  \"belangenvereniging\": \"belangenveren\",\n  \"belangenverenigingen\": \"belangenveren\",\n  \"belangenverstrengeling\": \"belangenverstrengel\",\n  \"belangetjes\": \"belangetjes\",\n  \"belanghebbende\": \"belanghebb\",\n  \"belanghebbenden\": \"belanghebb\",\n  \"belangrijk\": \"belangrijk\",\n  \"belangrijke\": \"belangrijk\",\n  \"belangrijker\": \"belangrijker\",\n  \"belangrijkst\": \"belangrijkst\",\n  \"belangrijkste\": \"belangrijkst\",\n  \"belangstellend\": \"belangstell\",\n  \"belangstellende\": \"belangstell\",\n  \"belangstellenden\": \"belangstell\",\n  \"belangstelling\": \"belangstell\",\n  \"belangwekkende\": \"belangwek\",\n  \"belast\": \"belast\",\n  \"belastbaar\": \"belast\",\n  \"belastbaarheid\": \"belast\",\n  \"belasten\": \"belast\",\n  \"belastend\": \"belast\",\n  \"belastende\": \"belast\",\n  \"belastender\": \"belastender\",\n  \"belasterde\": \"belasterd\",\n  \"belasteren\": \"belaster\",\n  \"belasting\": \"belast\",\n  \"belastingaftrek\": \"belastingaftrek\",\n  \"belastingbehandeling\": \"belastingbehandel\",\n  \"belastingbetaler\": \"belastingbetaler\",\n  \"belastingdienst\": \"belastingdienst\",\n  \"belastingen\": \"belast\",\n  \"belastingfaciliteiten\": \"belastingfaciliteit\",\n  \"belastinggeld\": \"belastinggeld\",\n  \"belastingheffing\": \"belastingheff\",\n  \"belastinginspecteur\": \"belastinginspecteur\",\n  \"belastingkamer\": \"belastingkamer\",\n  \"belastingkantoor\": \"belastingkantor\",\n  \"belastingmaatregel\": \"belastingmaatregel\",\n  \"belastingmaatregelen\": \"belastingmaatregel\",\n  \"belastingontduiking\": \"belastingontduik\",\n  \"belastingopbrengst\": \"belastingopbrengst\",\n  \"belastingplan\": \"belastingplan\",\n  \"belastingpunt\": \"belastingpunt\",\n  \"belastingsregels\": \"belastingsregel\",\n  \"belastingstelsel\": \"belastingstelsel\",\n  \"belastingsysteem\": \"belastingsystem\",\n  \"belastingtarief\": \"belastingtarief\",\n  \"belastingtarieven\": \"belastingtariev\",\n  \"belastingverhoging\": \"belastingverhog\",\n  \"belastingverlaging\": \"belastingverlag\",\n  \"belastingverlagingen\": \"belastingverlag\",\n  \"belastingvoordeel\": \"belastingvoordel\",\n  \"belastingvoordelen\": \"belastingvoordel\",\n  \"belastingvoorstellen\": \"belastingvoorstell\",\n  \"belastingvrij\": \"belastingvrij\",\n  \"belastingvrije\": \"belastingvrij\",\n  \"belastingwijzigingen\": \"belastingwijz\",\n  \"belazerd\": \"belazerd\",\n  \"belchatov\": \"belchatov\",\n  \"belchatow\": \"belchatow\",\n  \"belde\": \"beld\",\n  \"belden\": \"beld\",\n  \"beledigd\": \"beledigd\",\n  \"beledigde\": \"beledigd\",\n  \"beledigden\": \"beledigd\",\n  \"beledigen\": \"beled\",\n  \"beledigend\": \"beled\",\n  \"belediging\": \"beled\",\n  \"beleefd\": \"beleefd\",\n  \"beleefde\": \"beleefd\",\n  \"beleefderigheid\": \"beleefder\",\n  \"beleefdheid\": \"beleefd\",\n  \"beleeft\": \"beleeft\",\n  \"belegd\": \"belegd\",\n  \"belegde\": \"belegd\",\n  \"beleggen\": \"belegg\",\n  \"belegger\": \"belegger\",\n  \"beleggers\": \"belegger\",\n  \"belegging\": \"belegg\",\n  \"beleggingen\": \"belegg\",\n  \"beleggingsbeleid\": \"beleggingsbeleid\",\n  \"beleggingsfonds\": \"beleggingsfond\",\n  \"beleggingsfondsen\": \"beleggingsfonds\",\n  \"beleggingsinstellingen\": \"beleggingsinstell\",\n  \"beleggingsmaatschappij\": \"beleggingsmaatschappij\",\n  \"beleggingsmarkt\": \"beleggingsmarkt\",\n  \"beleggingsprodukten\": \"beleggingsprodukt\",\n  \"beleggingsrekeningen\": \"beleggingsreken\",\n  \"beleggingswezen\": \"beleggingswez\",\n  \"belegt\": \"belegt\",\n  \"beleid\": \"beleid\",\n  \"beleidmakers\": \"beleidmaker\",\n  \"beleids\": \"beleid\",\n  \"beleidsanalyse\": \"beleidsanalys\",\n  \"beleidsaspecten\": \"beleidsaspect\",\n  \"beleidsbasis\": \"beleidsbasis\",\n  \"beleidsbegroting\": \"beleidsbegrot\",\n  \"beleidscommissie\": \"beleidscommissie\",\n  \"beleidsdoel\": \"beleidsdoel\",\n  \"beleidsdoelstellingen\": \"beleidsdoelstell\",\n  \"beleidsgericht\": \"beleidsgericht\",\n  \"beleidsgroep\": \"beleidsgroep\",\n  \"beleidshandboek\": \"beleidshandboek\",\n  \"beleidsindicatoren\": \"beleidsindicator\",\n  \"beleidsinspanning\": \"beleidsinspann\",\n  \"beleidsinstrument\": \"beleidsinstrument\",\n  \"beleidsinstrumentarium\": \"beleidsinstrumentarium\",\n  \"beleidsinstrumenten\": \"beleidsinstrument\",\n  \"beleidsintensies\": \"beleidsintensies\",\n  \"beleidskeuzen\": \"beleidskeuz\",\n  \"beleidslijn\": \"beleidslijn\",\n  \"beleidslijnen\": \"beleidslijn\",\n  \"beleidsmaatregelen\": \"beleidsmaatregel\",\n  \"beleidsmakers\": \"beleidsmaker\",\n  \"beleidsmatig\": \"beleidsmat\",\n  \"beleidsmatige\": \"beleidsmat\",\n  \"beleidsmedewerker\": \"beleidsmedewerker\",\n  \"beleidsmedewerkers\": \"beleidsmedewerker\",\n  \"beleidsmensen\": \"beleidsmens\",\n  \"beleidsnota\": \"beleidsnota\",\n  \"beleidsnotitie\": \"beleidsnotitie\",\n  \"beleidsondersteunende\": \"beleidsondersteun\",\n  \"beleidsontwikkeling\": \"beleidsontwikkel\",\n  \"beleidsplan\": \"beleidsplan\",\n  \"beleidsplannen\": \"beleidsplann\",\n  \"beleidsplanning\": \"beleidsplann\",\n  \"beleidsprogramma\": \"beleidsprogramma\",\n  \"beleidsrendement\": \"beleidsrendement\",\n  \"beleidsrichtingen\": \"beleidsricht\",\n  \"beleidsruimte\": \"beleidsruimt\",\n  \"beleidsstrategie\": \"beleidsstrategie\",\n  \"beleidsstudies\": \"beleidsstudies\",\n  \"beleidsstuk\": \"beleidsstuk\",\n  \"beleidsstukken\": \"beleidsstuk\",\n  \"beleidsterrein\": \"beleidsterrein\",\n  \"beleidsterreinen\": \"beleidsterrein\",\n  \"beleidsthema\": \"beleidsthema\",\n  \"beleidsuitgangspunten\": \"beleidsuitgangspunt\",\n  \"beleidsverklaring\": \"beleidsverklar\",\n  \"beleidsvisie\": \"beleidsvisie\",\n  \"beleidsvoorbereiding\": \"beleidsvoorbereid\",\n  \"beleidsvoornemens\": \"beleidsvoornemen\",\n  \"beleidsvorming\": \"beleidsvorm\",\n  \"beleidsvragen\": \"beleidsvrag\",\n  \"beleidsvrijheid\": \"beleidsvrij\",\n  \"beleidswijziging\": \"beleidswijz\",\n  \"beleidswijzigingen\": \"beleidswijz\",\n  \"belemmerd\": \"belemmerd\",\n  \"belemmeren\": \"belemmer\",\n  \"belemmerend\": \"belemmer\",\n  \"belemmering\": \"belemmer\",\n  \"belemmeringen\": \"belemmer\",\n  \"belemmeringshoek\": \"belemmeringshoek\",\n  \"belemmert\": \"belemmert\",\n  \"beleving\": \"belev\",\n  \"belevingsonderzoek\": \"belevingsonderzoek\",\n  \"belevingswaarde\": \"belevingswaard\",\n  \"belgaqua\": \"belgaqua\",\n  \"belgen\": \"belg\",\n  \"belgie\": \"belgie\",\n  \"belgië\": \"belgie\",\n  \"belgisch\": \"belgisch\",\n  \"belgische\": \"belgisch\",\n  \"belgium\": \"belgium\",\n  \"belgoprocess\": \"belgoproces\",\n  \"belicht\": \"belicht\",\n  \"bellen\": \"bell\",\n  \"belletjes\": \"belletjes\",\n  \"belofte\": \"beloft\",\n  \"belonen\": \"belon\",\n  \"beloning\": \"belon\",\n  \"beloningen\": \"belon\",\n  \"beloningssysteem\": \"beloningssystem\",\n  \"beloof\": \"belof\",\n  \"beloofd\": \"beloofd\",\n  \"beloofde\": \"beloofd\",\n  \"beloofden\": \"beloofd\",\n  \"belooft\": \"belooft\",\n  \"beloon\": \"belon\",\n  \"beloond\": \"beloond\",\n  \"beloont\": \"beloont\",\n  \"beloop\": \"belop\",\n  \"beloopbaar\": \"belop\",\n  \"beloopt\": \"beloopt\",\n  \"belopen\": \"belop\",\n  \"beloven\": \"belov\",\n  \"belovende\": \"belov\",\n  \"belpak\": \"belpak\",\n  \"belt\": \"belt\",\n  \"belton\": \"belton\",\n  \"beluchters\": \"beluchter\",\n  \"beluchting\": \"belucht\",\n  \"beluchtingstanks\": \"beluchtingstank\",\n  \"beluisteren\": \"beluister\",\n  \"belust\": \"belust\",\n  \"belvedere\": \"belveder\",\n  \"bem\": \"bem\",\n  \"bemachtigen\": \"bemacht\",\n  \"bemalingen\": \"bemal\",\n  \"bemande\": \"bemand\",\n  \"bemanning\": \"bemann\",\n  \"bemanningsleden\": \"bemanningsled\",\n  \"bemeesterde\": \"bemeesterd\",\n  \"bemerken\": \"bemerk\",\n  \"bemerkend\": \"bemerk\",\n  \"bemerkte\": \"bemerkt\",\n  \"bemest\": \"bemest\",\n  \"bemeste\": \"bemest\",\n  \"bemesten\": \"bemest\",\n  \"bemesting\": \"bemest\",\n  \"bemestingadviezen\": \"bemestingadviez\",\n  \"bemestingsadvies\": \"bemestingsadvies\",\n  \"bemestingsadviezen\": \"bemestingsadviez\",\n  \"bemestingsdeskundige\": \"bemestingsdeskund\",\n  \"bemestingsgedrag\": \"bemestingsgedrag\",\n  \"bemestingsinstallatie\": \"bemestingsinstallatie\",\n  \"bemestingsniveau\": \"bemestingsniveau\",\n  \"bemestingsnormen\": \"bemestingsnorm\",\n  \"bemestingsverbod\": \"bemestingsverbod\",\n  \"bemestingswaarde\": \"bemestingswaard\",\n  \"bemeten\": \"bemet\",\n  \"bemeterd\": \"bemeterd\",\n  \"bemetering\": \"bemeter\",\n  \"bemiddelaar\": \"bemiddelar\",\n  \"bemiddeling\": \"bemiddel\",\n  \"bemiddelingscomité\": \"bemiddelingscomit\",\n  \"bemiddelt\": \"bemiddelt\",\n  \"beminde\": \"bemind\",\n  \"beminden\": \"bemind\",\n  \"beminnelijk\": \"beminn\",\n  \"beminnelijkheid\": \"beminn\",\n  \"beminnelijks\": \"beminn\",\n  \"bemmel\": \"bemmel\",\n  \"bemodderde\": \"bemodderd\",\n  \"bemodderend\": \"bemodder\",\n  \"bemoederends\": \"bemoeder\",\n  \"bemoedigend\": \"bemoed\",\n  \"bemoediging\": \"bemoed\",\n  \"bemoei\": \"bemoei\",\n  \"bemoeid\": \"bemoeid\",\n  \"bemoeide\": \"bemoeid\",\n  \"bemoeien\": \"bemoei\",\n  \"bemòeien\": \"bemòei\",\n  \"bemoeiingen\": \"bemoei\",\n  \"bemoeilijken\": \"bemoeilijk\",\n  \"bemoeilijkt\": \"bemoeilijkt\",\n  \"bemoeit\": \"bemoeit\",\n  \"bemonsterd\": \"bemonsterd\",\n  \"bemonsteren\": \"bemonster\",\n  \"bemonstering\": \"bemonster\",\n  \"bemonsteringsdiepte\": \"bemonsteringsdiept\",\n  \"bemonsteringsfilters\": \"bemonsteringsfilter\",\n  \"bemonsteringsfout\": \"bemonsteringsfout\",\n  \"bemonsteringsmethode\": \"bemonsteringsmethod\",\n  \"bemonsteringstechniek\": \"bemonsteringstechniek\",\n  \"ben\": \"ben\",\n  \"bèn\": \"bèn\",\n  \"benaauwd\": \"benaauwd\",\n  \"benadeeld\": \"benadeeld\",\n  \"benadeelden\": \"benadeeld\",\n  \"benaderd\": \"benaderd\",\n  \"benaderen\": \"benader\",\n  \"benadering\": \"benader\",\n  \"benadert\": \"benadert\",\n  \"benadrukken\": \"benadruk\",\n  \"benadrukt\": \"benadrukt\",\n  \"benadrukte\": \"benadrukt\",\n  \"benadrukten\": \"benadrukt\",\n  \"benam\": \"benam\",\n  \"benamen\": \"benam\",\n  \"benamingen\": \"benam\",\n  \"benauwd\": \"benauwd\",\n  \"benauwde\": \"benauwd\",\n  \"benauwden\": \"benauwd\",\n  \"benauwder\": \"benauwder\",\n  \"benauwen\": \"benauw\",\n  \"benauwende\": \"benauw\",\n  \"benauwing\": \"benauw\",\n  \"benauwingen\": \"benauw\",\n  \"benchmarking\": \"benchmark\",\n  \"benchmarks\": \"benchmark\",\n  \"bende\": \"bend\",\n  \"bene\": \"ben\",\n  \"beneden\": \"bened\",\n  \"benedenwaard\": \"benedenwaard\",\n  \"benelux\": \"benelux\",\n  \"benemen\": \"benem\",\n  \"benen\": \"ben\",\n  \"bengaalse\": \"bengal\",\n  \"bengel\": \"bengel\",\n  \"bengels\": \"bengel\",\n  \"benha\": \"benha\",\n  \"benieuwd\": \"benieuwd\",\n  \"benig\": \"benig\",\n  \"benige\": \"benig\",\n  \"benijd\": \"benijd\",\n  \"benijdden\": \"benijd\",\n  \"benin\": \"benin\",\n  \"benita\": \"benita\",\n  \"bennekom\": \"bennekom\",\n  \"benodigd\": \"benodigd\",\n  \"benodigde\": \"benodigd\",\n  \"benoemd\": \"benoemd\",\n  \"benoeming\": \"benoem\",\n  \"benoemt\": \"benoemt\",\n  \"bent\": \"bent\",\n  \"bentazon\": \"bentazon\",\n  \"benthuizen\": \"benthuiz\",\n  \"bentoniet\": \"bentoniet\",\n  \"bentonwand\": \"bentonwand\",\n  \"bentrazin\": \"bentrazin\",\n  \"bentum\": \"bentum\",\n  \"benut\": \"benut\",\n  \"benutten\": \"benut\",\n  \"benutting\": \"benut\",\n  \"benz\": \"benz\",\n  \"benzaldehyde\": \"benzaldehyd\",\n  \"benzeen\": \"benzen\",\n  \"benzeengehalte\": \"benzeengehalt\",\n  \"benzide\": \"benzid\",\n  \"benzidine\": \"benzidin\",\n  \"benzine\": \"benzin\",\n  \"benzinedepots\": \"benzinedepot\",\n  \"benzinemotoren\": \"benzinemotor\",\n  \"benzineprijs\": \"benzineprijs\",\n  \"benzineprijzen\": \"benzineprijz\",\n  \"benzinestations\": \"benzinestation\",\n  \"benzinetankstations\": \"benzinetankstation\",\n  \"benzineverkooppunten\": \"benzineverkooppunt\",\n  \"benzinewagens\": \"benzinewagen\",\n  \"benzoëzuur\": \"benzoezur\",\n  \"benzol\": \"benzol\",\n  \"benzontril\": \"benzontril\",\n  \"beoefenen\": \"beoefen\",\n  \"beogen\": \"beog\",\n  \"beon\": \"beon\",\n  \"beoogd\": \"beoogd\",\n  \"beoogde\": \"beoogd\",\n  \"beoogden\": \"beoogd\",\n  \"beoogt\": \"beoogt\",\n  \"beoordeeld\": \"beoordeeld\",\n  \"beoordeelden\": \"beoordeeld\",\n  \"beoordeelt\": \"beoordeelt\",\n  \"beoordelen\": \"beoordel\",\n  \"beoordelende\": \"beoordel\",\n  \"beoordeling\": \"beoordel\",\n  \"beoordelingsprocedure\": \"beoordelingsprocedur\",\n  \"beoordelingsrichtlijn\": \"beoordelingsrichtlijn\",\n  \"beoordelingsrichtlijnen\": \"beoordelingsrichtlijn\",\n  \"beoordelingssystematiek\": \"beoordelingssystematiek\",\n  \"bepaald\": \"bepaald\",\n  \"bepaalde\": \"bepaald\",\n  \"bepaalt\": \"bepaalt\",\n  \"bepalen\": \"bepal\",\n  \"bepalend\": \"bepal\",\n  \"bepalende\": \"bepal\",\n  \"bepaling\": \"bepal\",\n  \"bepalingen\": \"bepal\",\n  \"bepalingsmethoden\": \"bepalingsmethod\",\n  \"bepeins\": \"bepein\",\n  \"bepeinzen\": \"bepeinz\",\n  \"beperken\": \"beperk\",\n  \"beperkende\": \"beperk\",\n  \"beperking\": \"beperk\",\n  \"beperkingen\": \"beperk\",\n  \"beperkingsproject\": \"beperkingsproject\",\n  \"beperkt\": \"beperkt\",\n  \"beperkte\": \"beperkt\",\n  \"beplant\": \"beplant\",\n  \"beplantbare\": \"beplant\",\n  \"beplanting\": \"beplant\",\n  \"beplantingen\": \"beplant\",\n  \"beplating\": \"beplat\",\n  \"bepleit\": \"bepleit\",\n  \"bepleitte\": \"bepleit\",\n  \"bepraten\": \"beprat\",\n  \"beprating\": \"beprat\",\n  \"beproefd\": \"beproefd\",\n  \"beproefde\": \"beproefd\",\n  \"beproeft\": \"beproeft\",\n  \"beproeven\": \"beproev\",\n  \"beproevingshallen\": \"beproevingshall\",\n  \"beproevingslaboratoria\": \"beproevingslaboratoria\",\n  \"beraad\": \"berad\",\n  \"beraadt\": \"beraadt\",\n  \"beraamd\": \"beraamd\",\n  \"beraden\": \"berad\",\n  \"beratende\": \"berat\",\n  \"berdyaja\": \"berdyaja\",\n  \"berechten\": \"berecht\",\n  \"bereden\": \"bered\",\n  \"beredeneren\": \"beredener\",\n  \"bereed\": \"bered\",\n  \"beregend\": \"bereg\",\n  \"beregenen\": \"beregen\",\n  \"beregening\": \"beregen\",\n  \"beregeningsbeperkingen\": \"beregeningsbeperk\",\n  \"beregeningsverbod\": \"beregeningsverbod\",\n  \"beregeningsvergunningen\": \"beregeningsvergunn\",\n  \"bereid\": \"bereid\",\n  \"bereidde\": \"bereid\",\n  \"bereiden\": \"bereid\",\n  \"bereidheid\": \"bereid\",\n  \"bereiding\": \"bereid\",\n  \"bereidt\": \"bereidt\",\n  \"bereik\": \"bereik\",\n  \"bereikbaar\": \"bereik\",\n  \"bereikbaarheid\": \"bereik\",\n  \"bereikbare\": \"bereik\",\n  \"bereiken\": \"bereik\",\n  \"bereikt\": \"bereikt\",\n  \"bereikte\": \"bereikt\",\n  \"bereikten\": \"bereikt\",\n  \"bereken\": \"berek\",\n  \"berekend\": \"berek\",\n  \"berekende\": \"berek\",\n  \"berekenden\": \"berek\",\n  \"berekenen\": \"bereken\",\n  \"berekenend\": \"bereken\",\n  \"berekenende\": \"bereken\",\n  \"berekening\": \"bereken\",\n  \"berekeningen\": \"bereken\",\n  \"berekent\": \"berekent\",\n  \"beren\": \"ber\",\n  \"berenbak\": \"berenbak\",\n  \"berends\": \"berend\",\n  \"berendse\": \"berend\",\n  \"berens\": \"beren\",\n  \"berenschot\": \"berenschot\",\n  \"berg\": \"berg\",\n  \"bergachtige\": \"bergacht\",\n  \"bergafwaarts\": \"bergafwaart\",\n  \"bergambacht\": \"bergambacht\",\n  \"bergbeklimmers\": \"bergbeklimmer\",\n  \"bergbezinktanks\": \"bergbezinktank\",\n  \"bergen\": \"berg\",\n  \"bergend\": \"bergend\",\n  \"berger\": \"berger\",\n  \"berghuizer\": \"berghuizer\",\n  \"berging\": \"berging\",\n  \"bergingslocaties\": \"bergingslocaties\",\n  \"bergmann\": \"bergmann\",\n  \"bergplaats\": \"bergplat\",\n  \"bergstapelingen\": \"bergstapel\",\n  \"bergtop\": \"bergtop\",\n  \"bergtoppen\": \"bergtopp\",\n  \"bergwind\": \"bergwind\",\n  \"bericht\": \"bericht\",\n  \"berichten\": \"bericht\",\n  \"berichtje\": \"berichtj\",\n  \"berispte\": \"berispt\",\n  \"berkel\": \"berkel\",\n  \"berken\": \"berk\",\n  \"berkhout\": \"berkhout\",\n  \"berlaymont\": \"berlaymont\",\n  \"berlaymontgebouw\": \"berlaymontgebouw\",\n  \"berlijn\": \"berlijn\",\n  \"berlijnse\": \"berlijn\",\n  \"berlin\": \"berlin\",\n  \"berm\": \"berm\",\n  \"bermen\": \"berm\",\n  \"bermgras\": \"bermgras\",\n  \"bernard\": \"bernard\",\n  \"bernhard\": \"bernhard\",\n  \"beroemde\": \"beroemd\",\n  \"beroep\": \"beroep\",\n  \"beroepen\": \"beroep\",\n  \"beroeps\": \"beroep\",\n  \"beroepsbevolking\": \"beroepsbevolk\",\n  \"beroepscollege\": \"beroepscolleg\",\n  \"beroepsgenoten\": \"beroepsgenot\",\n  \"beroepsgerechtigden\": \"beroepsgerechtigd\",\n  \"beroepsgoederenvervoer\": \"beroepsgoederenvervoer\",\n  \"beroepsinstellers\": \"beroepsinsteller\",\n  \"beroepsmatig\": \"beroepsmat\",\n  \"beroepsmatige\": \"beroepsmat\",\n  \"beroepsonderwijs\": \"beroepsonderwijs\",\n  \"beroepsopleiding\": \"beroepsopleid\",\n  \"beroepsorganistie\": \"beroepsorganistie\",\n  \"beroepsprocedure\": \"beroepsprocedur\",\n  \"beroepsprocedures\": \"beroepsprocedures\",\n  \"beroepsschool\": \"beroepsschol\",\n  \"beroepsvaart\": \"beroepsvaart\",\n  \"beroepsvisserij\": \"beroepsvisserij\",\n  \"beroepsvissers\": \"beroepsvisser\",\n  \"beroepszaak\": \"beroepszak\",\n  \"beroepszaken\": \"beroepszak\",\n  \"beroepsziekte\": \"beroepsziekt\",\n  \"beroerd\": \"beroerd\",\n  \"beroèrd\": \"beroèrd\",\n  \"beroerde\": \"beroerd\",\n  \"beroerdheid\": \"beroerd\",\n  \"beroerdste\": \"beroerdst\",\n  \"beroèrrde\": \"beroèrrd\",\n  \"beroerte\": \"beroert\",\n  \"berokkenen\": \"berokken\",\n  \"berouw\": \"berouw\",\n  \"berouwloos\": \"berouwlos\",\n  \"bertens\": \"berten\",\n  \"bertha\": \"bertha\",\n  \"bèrtha\": \"bèrtha\",\n  \"beruchte\": \"berucht\",\n  \"berust\": \"berust\",\n  \"berusten\": \"berust\",\n  \"berustende\": \"berust\",\n  \"berustigend\": \"berust\",\n  \"berusting\": \"berust\",\n  \"besar\": \"besar\",\n  \"beschaafd\": \"beschaafd\",\n  \"beschaafde\": \"beschaafd\",\n  \"beschadigd\": \"beschadigd\",\n  \"beschadigde\": \"beschadigd\",\n  \"beschadigen\": \"beschad\",\n  \"beschadiging\": \"beschad\",\n  \"beschadigingen\": \"beschad\",\n  \"beschadigt\": \"beschadigt\",\n  \"beschaving\": \"beschav\",\n  \"bescheiden\": \"bescheid\",\n  \"beschenen\": \"beschen\",\n  \"bescherm\": \"bescherm\",\n  \"beschermd\": \"beschermd\",\n  \"beschermde\": \"beschermd\",\n  \"beschermen\": \"bescherm\",\n  \"beschermend\": \"bescherm\",\n  \"beschermende\": \"bescherm\",\n  \"beschermends\": \"bescherm\",\n  \"beschermer\": \"beschermer\",\n  \"beschermgas\": \"beschermgas\",\n  \"beschermgassen\": \"beschermgass\",\n  \"bescherming\": \"bescherm\",\n  \"beschermingsbeleid\": \"beschermingsbeleid\",\n  \"beschermingsconstructies\": \"beschermingsconstructies\",\n  \"beschermingsmiddelen\": \"beschermingsmiddel\",\n  \"beschermingsniveau\": \"beschermingsniveau\",\n  \"beschermingsprodukten\": \"beschermingsprodukt\",\n  \"beschermingsstrijdkrachten\": \"beschermingsstrijdkracht\",\n  \"beschermingszones\": \"beschermingszones\",\n  \"beschermkapjes\": \"beschermkapjes\",\n  \"beschermkleding\": \"beschermkled\",\n  \"beschermt\": \"beschermt\",\n  \"beschikbaar\": \"beschik\",\n  \"beschikbaarheid\": \"beschik\",\n  \"beschikbaarstellen\": \"beschikbaarstell\",\n  \"beschikbare\": \"beschik\",\n  \"beschikken\": \"beschik\",\n  \"beschikking\": \"beschik\",\n  \"beschikkingen\": \"beschik\",\n  \"beschikt\": \"beschikt\",\n  \"beschimpt\": \"beschimpt\",\n  \"beschot\": \"beschot\",\n  \"beschouw\": \"beschouw\",\n  \"beschouwd\": \"beschouwd\",\n  \"beschouwde\": \"beschouwd\",\n  \"beschouwden\": \"beschouwd\",\n  \"beschouwen\": \"beschouw\",\n  \"beschouwing\": \"beschouw\",\n  \"beschouwingen\": \"beschouw\",\n  \"beschouwt\": \"beschouwt\",\n  \"beschreef\": \"beschref\",\n  \"beschreven\": \"beschrev\",\n  \"beschrijft\": \"beschrijft\",\n  \"beschrijven\": \"beschrijv\",\n  \"beschrijving\": \"beschrijv\",\n  \"beschrijvingen\": \"beschrijv\",\n  \"beschuit\": \"beschuit\",\n  \"beschuitje\": \"beschuitj\",\n  \"beschuitjes\": \"beschuitjes\",\n  \"beschuldigd\": \"beschuldigd\",\n  \"beschuldigde\": \"beschuldigd\",\n  \"beschuldiging\": \"beschuld\",\n  \"beschuldigingen\": \"beschuld\",\n  \"beschuldigt\": \"beschuldigt\",\n  \"besef\": \"besef\",\n  \"beseffen\": \"beseff\",\n  \"beseft\": \"beseft\",\n  \"besefte\": \"beseft\",\n  \"beslaan\": \"beslan\",\n  \"beslaat\": \"beslat\",\n  \"beslag\": \"beslag\",\n  \"beslagen\": \"beslag\",\n  \"beslagleggen\": \"beslaglegg\",\n  \"beslaglegger\": \"beslaglegger\",\n  \"beslisboom\": \"beslisbom\",\n  \"beslisingen\": \"beslis\",\n  \"beslissen\": \"besliss\",\n  \"beslissende\": \"besliss\",\n  \"beslissers\": \"beslisser\",\n  \"beslissing\": \"besliss\",\n  \"beslissingen\": \"besliss\",\n  \"beslissingsmodellen\": \"beslissingsmodell\",\n  \"beslissingsrechten\": \"beslissingsrecht\",\n  \"beslist\": \"beslist\",\n  \"besliste\": \"beslist\",\n  \"beslistheid\": \"beslist\",\n  \"beslists\": \"beslist\",\n  \"besloegen\": \"besloeg\",\n  \"besloot\": \"beslot\",\n  \"besloten\": \"beslot\",\n  \"besluit\": \"besluit\",\n  \"besluiteloos\": \"besluitelos\",\n  \"besluiten\": \"besluit\",\n  \"besluitenloos\": \"besluitenlos\",\n  \"besluitvoering\": \"besluitvoer\",\n  \"besluitvormers\": \"besluitvormer\",\n  \"besluitvorming\": \"besluitvorm\",\n  \"besmet\": \"besmet\",\n  \"besmette\": \"besmet\",\n  \"besmetten\": \"besmet\",\n  \"besmetting\": \"besmet\",\n  \"besmettingsgraad\": \"besmettingsgrad\",\n  \"besmeurde\": \"besmeurd\",\n  \"bespaard\": \"bespaard\",\n  \"bespaarde\": \"bespaard\",\n  \"bespaart\": \"bespaart\",\n  \"besparen\": \"bespar\",\n  \"besparing\": \"bespar\",\n  \"besparingen\": \"bespar\",\n  \"besparingsbeleid\": \"besparingsbeleid\",\n  \"besparingseisen\": \"besparingseis\",\n  \"besparingsmogelijkheden\": \"besparingsmog\",\n  \"besparingsopties\": \"besparingsopties\",\n  \"besparingsovereenkomsten\": \"besparingsovereenkomst\",\n  \"besparingsplannen\": \"besparingsplann\",\n  \"besparingstempo\": \"besparingstempo\",\n  \"bespeurde\": \"bespeurd\",\n  \"bespeurden\": \"bespeurd\",\n  \"bespeuren\": \"bespeur\",\n  \"bespeurende\": \"bespeur\",\n  \"bespiedden\": \"bespied\",\n  \"bespieden\": \"bespied\",\n  \"bespiegelende\": \"bespiegel\",\n  \"bespiegelingen\": \"bespiegel\",\n  \"bespoedigd\": \"bespoedigd\",\n  \"bespoten\": \"bespot\",\n  \"bespottelijk\": \"bespot\",\n  \"bespotting\": \"bespot\",\n  \"besprak\": \"besprak\",\n  \"bespreekbaar\": \"besprek\",\n  \"bespreken\": \"besprek\",\n  \"bespreking\": \"besprek\",\n  \"besprekingen\": \"besprek\",\n  \"besprenkeld\": \"besprenkeld\",\n  \"besproken\": \"besprok\",\n  \"bespuiten\": \"bespuit\",\n  \"bespuiting\": \"bespuit\",\n  \"bespuitingen\": \"bespuit\",\n  \"best\": \"best\",\n  \"bestaan\": \"bestan\",\n  \"bestaand\": \"bestaand\",\n  \"bestaande\": \"bestaand\",\n  \"bestaansrecht\": \"bestaansrecht\",\n  \"bestaat\": \"bestat\",\n  \"bestand\": \"bestand\",\n  \"bestanddeel\": \"bestanddel\",\n  \"bestanddelen\": \"bestanddel\",\n  \"beste\": \"best\",\n  \"bestede\": \"bested\",\n  \"besteden\": \"bested\",\n  \"besteding\": \"bested\",\n  \"bestedingen\": \"bested\",\n  \"besteed\": \"bested\",\n  \"besteedt\": \"besteedt\",\n  \"bestek\": \"bestek\",\n  \"bestekadviezen\": \"bestekadviez\",\n  \"bestekgereed\": \"bestekgered\",\n  \"bestekken\": \"bestek\",\n  \"bestekshoeveelheden\": \"bestekshoevel\",\n  \"besteksredacties\": \"besteksredacties\",\n  \"bestekteksten\": \"bestektekst\",\n  \"bestelbussen\": \"bestelbuss\",\n  \"besteld\": \"besteld\",\n  \"bestelde\": \"besteld\",\n  \"bestellen\": \"bestell\",\n  \"bestellingen\": \"bestell\",\n  \"bestelt\": \"bestelt\",\n  \"bestelwagens\": \"bestelwagen\",\n  \"bestemd\": \"bestemd\",\n  \"bestemde\": \"bestemd\",\n  \"bestemder\": \"bestemder\",\n  \"bestemmen\": \"bestemm\",\n  \"bestemming\": \"bestemm\",\n  \"bestemmingen\": \"bestemm\",\n  \"bestemmingsheffing\": \"bestemmingsheff\",\n  \"bestemmingsheffingen\": \"bestemmingsheff\",\n  \"bestemmingsplan\": \"bestemmingsplan\",\n  \"bestemmingsplannen\": \"bestemmingsplann\",\n  \"bestemmingsplanwijziging\": \"bestemmingsplanwijz\",\n  \"bestempelden\": \"bestempeld\",\n  \"bestempelen\": \"bestempel\",\n  \"bestendigen\": \"bestend\",\n  \"bestendigheid\": \"bestend\",\n  \"bestierf\": \"bestierf\",\n  \"bestikt\": \"bestikt\",\n  \"bestoft\": \"bestoft\",\n  \"bestond\": \"bestond\",\n  \"bestonden\": \"bestond\",\n  \"bestormde\": \"bestormd\",\n  \"bestorming\": \"bestorm\",\n  \"bestraffen\": \"bestraff\",\n  \"bestraft\": \"bestraft\",\n  \"bestrafte\": \"bestraft\",\n  \"bestrating\": \"bestrat\",\n  \"bestreden\": \"bestred\",\n  \"bestrijden\": \"bestrijd\",\n  \"bestrijding\": \"bestrijd\",\n  \"bestrijdings\": \"bestrijd\",\n  \"bestrijdingsapparatuur\": \"bestrijdingsapparatur\",\n  \"bestrijdingsbeleid\": \"bestrijdingsbeleid\",\n  \"bestrijdingsmiddel\": \"bestrijdingsmiddel\",\n  \"bestrijdingsmiddelen\": \"bestrijdingsmiddel\",\n  \"bestrijdingsmiddelenbeleid\": \"bestrijdingsmiddelenbeleid\",\n  \"bestrijdingsmiddelengebruik\": \"bestrijdingsmiddelengebruik\",\n  \"bestrijdingsmiddelennorm\": \"bestrijdingsmiddelennorm\",\n  \"bestrijdingsmiddelenwet\": \"bestrijdingsmiddelenwet\",\n  \"bestrijdingsplan\": \"bestrijdingsplan\",\n  \"bestrijdingstechnieken\": \"bestrijdingstechniek\",\n  \"bestrijdingsvaartuig\": \"bestrijdingsvaartu\",\n  \"bestrijdt\": \"bestrijdt\",\n  \"bestrijken\": \"bestrijk\",\n  \"bestudeerd\": \"bestudeerd\",\n  \"bestudeerde\": \"bestudeerd\",\n  \"bestudeerden\": \"bestudeerd\",\n  \"bestudeert\": \"bestudeert\",\n  \"bestuderen\": \"bestuder\",\n  \"bestuderende\": \"bestuder\",\n  \"bestudering\": \"bestuder\",\n  \"besturen\": \"bestur\",\n  \"besturing\": \"bestur\",\n  \"besturingssysteem\": \"besturingssystem\",\n  \"besturingstechniek\": \"besturingstechniek\",\n  \"bestuur\": \"bestur\",\n  \"bestuurd\": \"bestuurd\",\n  \"bestuurde\": \"bestuurd\",\n  \"bestuurder\": \"bestuurder\",\n  \"bestuurders\": \"bestuurder\",\n  \"bestuurdersplaats\": \"bestuurdersplat\",\n  \"bestuurlijk\": \"bestur\",\n  \"bestuurlijke\": \"bestur\",\n  \"bestuurs\": \"bestur\",\n  \"bestuursadviescollege\": \"bestuursadviescolleg\",\n  \"bestuursculturen\": \"bestuurscultur\",\n  \"bestuursdwang\": \"bestuursdwang\",\n  \"bestuurskunde\": \"bestuurskund\",\n  \"bestuurslaag\": \"bestuurslag\",\n  \"bestuurslid\": \"bestuurslid\",\n  \"bestuursondersteunende\": \"bestuursondersteun\",\n  \"bestuursorgaan\": \"bestuursorgan\",\n  \"bestuursorganen\": \"bestuursorgan\",\n  \"bestuursovereenkomst\": \"bestuursovereenkomst\",\n  \"bestuursovereenkomsten\": \"bestuursovereenkomst\",\n  \"bestuursrecht\": \"bestuursrecht\",\n  \"bestuursrechtelijk\": \"bestuursrecht\",\n  \"bestuursrechtelijke\": \"bestuursrecht\",\n  \"bestuursrechter\": \"bestuursrechter\",\n  \"bestuursrechtspraak\": \"bestuursrechtsprak\",\n  \"bestuursvoorzitter\": \"bestuursvoorzitter\",\n  \"bestuurszaken\": \"bestuurszak\",\n  \"beta\": \"beta\",\n  \"bèta\": \"bèta\",\n  \"betaal\": \"betal\",\n  \"betaalbaar\": \"betal\",\n  \"betaalbare\": \"betal\",\n  \"betaald\": \"betaald\",\n  \"betaalde\": \"betaald\",\n  \"betaalden\": \"betaald\",\n  \"betaalt\": \"betaalt\",\n  \"betalen\": \"betal\",\n  \"betaler\": \"betaler\",\n  \"betaling\": \"betal\",\n  \"betalingen\": \"betal\",\n  \"betalingsbalans\": \"betalingsbalan\",\n  \"betalingsvoorwaarden\": \"betalingsvoorwaard\",\n  \"bètastraling\": \"bètastral\",\n  \"betekend\": \"betek\",\n  \"betekende\": \"betek\",\n  \"betekenen\": \"beteken\",\n  \"betekenis\": \"betekenis\",\n  \"betekent\": \"betekent\",\n  \"beter\": \"beter\",\n  \"betere\": \"beter\",\n  \"beters\": \"beter\",\n  \"beterschap\": \"beterschap\",\n  \"beteugelen\": \"beteugel\",\n  \"beticht\": \"beticht\",\n  \"betichten\": \"beticht\",\n  \"betichtte\": \"beticht\",\n  \"betimmering\": \"betimmer\",\n  \"betimmeringen\": \"betimmer\",\n  \"betitelt\": \"betitelt\",\n  \"betoeng\": \"betoeng\",\n  \"betogers\": \"betoger\",\n  \"betoging\": \"betog\",\n  \"betomen\": \"betom\",\n  \"beton\": \"beton\",\n  \"betonbewerkings\": \"betonbewerk\",\n  \"betonbouw\": \"betonbouw\",\n  \"betoncentrale\": \"betoncentral\",\n  \"betonelementen\": \"betonelement\",\n  \"betonindustrie\": \"betonindustrie\",\n  \"betoninstallaties\": \"betoninstallaties\",\n  \"betonkonstrukties\": \"betonkonstrukties\",\n  \"betonkorrels\": \"betonkorrel\",\n  \"betonmengsel\": \"betonmengsel\",\n  \"betonnen\": \"betonn\",\n  \"betonpalen\": \"betonpal\",\n  \"betonplaat\": \"betonplat\",\n  \"betonproduktfabrikanten\": \"betonproduktfabrikant\",\n  \"betonreparatiebedrijven\": \"betonreparatiebedrijv\",\n  \"betonreparaties\": \"betonreparaties\",\n  \"betonschade\": \"betonschad\",\n  \"betonsoorten\": \"betonsoort\",\n  \"betonstaal\": \"betonstal\",\n  \"betonsteen\": \"betonsten\",\n  \"betonstenen\": \"betonsten\",\n  \"betonstraatsteen\": \"betonstraatsten\",\n  \"betonstraatstenen\": \"betonstraatsten\",\n  \"betonvereniging\": \"betonveren\",\n  \"betonvloer\": \"betonvloer\",\n  \"betonwarenindustrie\": \"betonwarenindustrie\",\n  \"betonweg\": \"betonweg\",\n  \"betoog\": \"betog\",\n  \"betoogde\": \"betoogd\",\n  \"betoogt\": \"betoogt\",\n  \"betoverende\": \"betover\",\n  \"betovering\": \"betover\",\n  \"betoveringen\": \"betover\",\n  \"betrachten\": \"betracht\",\n  \"betraden\": \"betrad\",\n  \"betrappen\": \"betrapp\",\n  \"betrapt\": \"betrapt\",\n  \"betrapte\": \"betrapt\",\n  \"betrayed\": \"betrayed\",\n  \"betreedt\": \"betreedt\",\n  \"betreffen\": \"betreff\",\n  \"betreffende\": \"betreff\",\n  \"betreft\": \"betreft\",\n  \"betrekkelijk\": \"betrek\",\n  \"betrekken\": \"betrek\",\n  \"betrekking\": \"betrek\",\n  \"betrekkingen\": \"betrek\",\n  \"betrekt\": \"betrekt\",\n  \"betreur\": \"betreur\",\n  \"betreurd\": \"betreurd\",\n  \"betreurde\": \"betreurd\",\n  \"betreuren\": \"betreur\",\n  \"betreurende\": \"betreur\",\n  \"betreuring\": \"betreur\",\n  \"betreuringen\": \"betreur\",\n  \"betreurt\": \"betreurt\",\n  \"betriebsaktiengesellschaft\": \"betriebsaktiengesellschaft\",\n  \"betrof\": \"betrof\",\n  \"betroffen\": \"betroff\",\n  \"betrokken\": \"betrok\",\n  \"betrokkenen\": \"betrokken\",\n  \"betrokkenheid\": \"betrok\",\n  \"betrouwbaar\": \"betrouw\",\n  \"betrouwbaarder\": \"betrouwbaarder\",\n  \"betrouwbaarheid\": \"betrouw\",\n  \"betrouwbare\": \"betrouw\",\n  \"betsy\": \"betsy\",\n  \"bette\": \"bet\",\n  \"betuigde\": \"betuigd\",\n  \"betuigen\": \"betuig\",\n  \"betuwe\": \"betuw\",\n  \"betuwelijn\": \"betuwelijn\",\n  \"betuweroute\": \"betuwerout\",\n  \"betuwse\": \"betuw\",\n  \"betwijfelbaar\": \"betwijfel\",\n  \"betwijfelde\": \"betwijfeld\",\n  \"betwijfelen\": \"betwijfel\",\n  \"betwijfelt\": \"betwijfelt\",\n  \"beuk\": \"beuk\",\n  \"beukehout\": \"beukehout\",\n  \"beukehouten\": \"beukehout\",\n  \"beukema\": \"beukema\",\n  \"beuken\": \"beuk\",\n  \"beukenberg\": \"beukenberg\",\n  \"beukenboom\": \"beukenbom\",\n  \"beukenhout\": \"beukenhout\",\n  \"beukenkom\": \"beukenkom\",\n  \"beul\": \"beul\",\n  \"beuningen\": \"beuning\",\n  \"beuren\": \"beur\",\n  \"beurs\": \"beur\",\n  \"beurscomplex\": \"beurscomplex\",\n  \"beursfonds\": \"beursfond\",\n  \"beursgang\": \"beursgang\",\n  \"beursgenoteerde\": \"beursgenoteerd\",\n  \"beurshandel\": \"beurshandel\",\n  \"beurskens\": \"beursken\",\n  \"beurskoers\": \"beurskoer\",\n  \"beursmanager\": \"beursmanager\",\n  \"beurt\": \"beurt\",\n  \"beurtelings\": \"beurtel\",\n  \"beurzen\": \"beurz\",\n  \"beval\": \"beval\",\n  \"bevalen\": \"beval\",\n  \"bevallen\": \"bevall\",\n  \"bevallig\": \"bevall\",\n  \"bevallige\": \"bevall\",\n  \"bevalligheid\": \"bevall\",\n  \"bevalling\": \"bevall\",\n  \"bevalt\": \"bevalt\",\n  \"bevat\": \"bevat\",\n  \"bevatte\": \"bevat\",\n  \"bevattelijk\": \"bevat\",\n  \"bevatten\": \"bevat\",\n  \"bevattende\": \"bevat\",\n  \"bevechten\": \"bevecht\",\n  \"beveelt\": \"beveelt\",\n  \"beveiliging\": \"beveil\",\n  \"beveiligingsbevel\": \"beveiligingsbevel\",\n  \"beveiligingsheffing\": \"beveiligingsheff\",\n  \"beveiligingsmaatregelen\": \"beveiligingsmaatregel\",\n  \"bevel\": \"bevel\",\n  \"beveland\": \"beveland\",\n  \"bevelen\": \"bevel\",\n  \"beven\": \"bev\",\n  \"bevend\": \"bevend\",\n  \"bevende\": \"bevend\",\n  \"bever\": \"bever\",\n  \"beveren\": \"bever\",\n  \"beverig\": \"bever\",\n  \"beverwijk\": \"beverwijk\",\n  \"bevestigd\": \"bevestigd\",\n  \"bevestigde\": \"bevestigd\",\n  \"bevestigen\": \"bevest\",\n  \"bevestigend\": \"bevest\",\n  \"bevestiging\": \"bevest\",\n  \"bevestigt\": \"bevestigt\",\n  \"beviel\": \"beviel\",\n  \"bevill\": \"bevill\",\n  \"bevind\": \"bevind\",\n  \"bevinden\": \"bevind\",\n  \"bevindende\": \"bevind\",\n  \"bevinding\": \"bevind\",\n  \"bevindingen\": \"bevind\",\n  \"bevindt\": \"bevindt\",\n  \"beving\": \"beving\",\n  \"beviste\": \"bevist\",\n  \"bevochten\": \"bevocht\",\n  \"bevochtigd\": \"bevochtigd\",\n  \"bevochtigende\": \"bevocht\",\n  \"bevoegd\": \"bevoegd\",\n  \"bevoegde\": \"bevoegd\",\n  \"bevoegdheden\": \"bevoegd\",\n  \"bevoegdheid\": \"bevoegd\",\n  \"bevolen\": \"bevol\",\n  \"bevolking\": \"bevolk\",\n  \"bevolkingen\": \"bevolk\",\n  \"bevolkingsdichtheid\": \"bevolkingsdicht\",\n  \"bevolkingsexplosie\": \"bevolkingsexplosie\",\n  \"bevolkingsgroei\": \"bevolkingsgroei\",\n  \"bevolkte\": \"bevolkt\",\n  \"bevond\": \"bevond\",\n  \"bevonden\": \"bevond\",\n  \"bevoorrading\": \"bevoorrad\",\n  \"bevoorrechte\": \"bevoorrecht\",\n  \"bevorderd\": \"bevorderd\",\n  \"bevorderen\": \"bevorder\",\n  \"bevordering\": \"bevorder\",\n  \"bevordert\": \"bevordert\",\n  \"bevredigd\": \"bevredigd\",\n  \"bevredigde\": \"bevredigd\",\n  \"bevredigen\": \"bevred\",\n  \"bevredigend\": \"bevred\",\n  \"bevredigende\": \"bevred\",\n  \"bevrediging\": \"bevred\",\n  \"bevreesd\": \"bevreesd\",\n  \"bevriezen\": \"bevriez\",\n  \"bevriezing\": \"bevriez\",\n  \"bevrijdde\": \"bevrijd\",\n  \"bevrijden\": \"bevrijd\",\n  \"bevroor\": \"bevror\",\n  \"bevroren\": \"bevror\",\n  \"bevrorenen\": \"bevroren\",\n  \"bevruchting\": \"bevrucht\",\n  \"bevuild\": \"bevuild\",\n  \"bewaaksters\": \"bewaakster\",\n  \"bewaakt\": \"bewaakt\",\n  \"bewaar\": \"bewar\",\n  \"bewaard\": \"bewaard\",\n  \"bewaart\": \"bewaart\",\n  \"bewademen\": \"bewadem\",\n  \"bewaken\": \"bewak\",\n  \"bewaking\": \"bewak\",\n  \"bewakingssysteem\": \"bewakingssystem\",\n  \"bewapening\": \"bewapen\",\n  \"bewaren\": \"bewar\",\n  \"bewaring\": \"bewar\",\n  \"bewasemde\": \"bewasemd\",\n  \"beweeg\": \"beweg\",\n  \"beweegbare\": \"beweg\",\n  \"beweeglijkheid\": \"beweg\",\n  \"beweegt\": \"beweegt\",\n  \"beweerd\": \"beweerd\",\n  \"beweerde\": \"beweerd\",\n  \"beweerden\": \"beweerd\",\n  \"beweert\": \"beweert\",\n  \"bewegelijk\": \"beweg\",\n  \"bewegelijke\": \"beweg\",\n  \"bewegelijkheid\": \"beweg\",\n  \"bewegelijkst\": \"bewegelijkst\",\n  \"bewegen\": \"beweg\",\n  \"bewegend\": \"beweg\",\n  \"beweging\": \"beweg\",\n  \"bewegingen\": \"beweg\",\n  \"bewegingloos\": \"beweginglos\",\n  \"bewegingsmelder\": \"bewegingsmelder\",\n  \"bewegingsvrijheid\": \"bewegingsvrij\",\n  \"beweginkjes\": \"beweginkjes\",\n  \"beweiding\": \"beweid\",\n  \"bewering\": \"bewer\",\n  \"beweringen\": \"bewer\",\n  \"bewerkelijk\": \"bewerk\",\n  \"bewerken\": \"bewerk\",\n  \"bewerkers\": \"bewerker\",\n  \"bewerking\": \"bewerk\",\n  \"bewerkingsinrichtingen\": \"bewerkingsinricht\",\n  \"bewerkingsinstallatie\": \"bewerkingsinstallatie\",\n  \"bewerkingsketen\": \"bewerkingsket\",\n  \"bewerkingsrestanten\": \"bewerkingsrestant\",\n  \"bewerkstelligd\": \"bewerkstelligd\",\n  \"bewerkstelligen\": \"bewerkstell\",\n  \"bewerkstelligt\": \"bewerkstelligt\",\n  \"bewerkt\": \"bewerkt\",\n  \"bewerktuigd\": \"bewerktuigd\",\n  \"bewezen\": \"bewez\",\n  \"bewijs\": \"bewijs\",\n  \"bewijskader\": \"bewijskader\",\n  \"bewijslast\": \"bewijslast\",\n  \"bewijsmateriaal\": \"bewijsmateriaal\",\n  \"bewijst\": \"bewijst\",\n  \"bewijstechnisch\": \"bewijstechnisch\",\n  \"bewijzen\": \"bewijz\",\n  \"bewind\": \"bewind\",\n  \"bewindslieden\": \"bewindslied\",\n  \"bewindvoerder\": \"bewindvoerder\",\n  \"bewogen\": \"bewog\",\n  \"bewolking\": \"bewolk\",\n  \"bewolkt\": \"bewolkt\",\n  \"bewonder\": \"bewonder\",\n  \"bewonderd\": \"bewonderd\",\n  \"bewonderde\": \"bewonderd\",\n  \"bewonderden\": \"bewonderd\",\n  \"bewonderen\": \"bewonder\",\n  \"bewondering\": \"bewonder\",\n  \"bewonen\": \"bewon\",\n  \"bewoner\": \"bewoner\",\n  \"bewoners\": \"bewoner\",\n  \"bewonersgedrag\": \"bewonersgedrag\",\n  \"bewonersgroep\": \"bewonersgroep\",\n  \"bewonersgroepen\": \"bewonersgroep\",\n  \"bewonersorganisaties\": \"bewonersorganisaties\",\n  \"bewonersvereniging\": \"bewonersveren\",\n  \"bewoning\": \"bewon\",\n  \"bewoog\": \"bewog\",\n  \"bewoond\": \"bewoond\",\n  \"bewoonde\": \"bewoond\",\n  \"bewoonster\": \"bewoonster\",\n  \"bewoordingen\": \"bewoord\",\n  \"bewortelingslaag\": \"bewortelingslag\",\n  \"bewust\": \"bewust\",\n  \"bewuste\": \"bewust\",\n  \"bewusteloos\": \"bewustelos\",\n  \"bewuster\": \"bewuster\",\n  \"bewustheid\": \"bewust\",\n  \"bewustmaking\": \"bewustmak\",\n  \"bewustwording\": \"bewustword\",\n  \"bewustzijn\": \"bewustzijn\",\n  \"beyer\": \"beyer\",\n  \"beynum\": \"beynum\",\n  \"beyond\": \"beyond\",\n  \"bezaaid\": \"bezaaid\",\n  \"bezadigd\": \"bezadigd\",\n  \"bezadigdheid\": \"bezadigd\",\n  \"bezadiging\": \"bezad\",\n  \"bezag\": \"bezag\",\n  \"bezat\": \"bezat\",\n  \"bezaten\": \"bezat\",\n  \"bezeerd\": \"bezeerd\",\n  \"bezemrichtlijn\": \"bezemrichtlijn\",\n  \"bezending\": \"bezend\",\n  \"bezet\": \"bezet\",\n  \"bezetene\": \"bezet\",\n  \"bezetters\": \"bezetter\",\n  \"bezetting\": \"bezet\",\n  \"bezettingsgraad\": \"bezettingsgrad\",\n  \"bezichtigen\": \"bezicht\",\n  \"bezield\": \"bezield\",\n  \"bezielde\": \"bezield\",\n  \"bezielden\": \"bezield\",\n  \"bezien\": \"bezien\",\n  \"beziende\": \"beziend\",\n  \"bezienswaardigheid\": \"bezienswaard\",\n  \"bezig\": \"bezig\",\n  \"bezige\": \"bezig\",\n  \"bezigheden\": \"bezig\",\n  \"bezigheid\": \"bezig\",\n  \"bezighouden\": \"bezighoud\",\n  \"bezighoudt\": \"bezighoudt\",\n  \"bezin\": \"bezin\",\n  \"bezinestations\": \"bezinestation\",\n  \"bezinkbakken\": \"bezinkbak\",\n  \"bezinken\": \"bezink\",\n  \"bezinksel\": \"bezinksel\",\n  \"bezinkt\": \"bezinkt\",\n  \"bezinktank\": \"bezinktank\",\n  \"bezinnen\": \"bezinn\",\n  \"bezinning\": \"bezinn\",\n  \"bezinningsgroep\": \"bezinningsgroep\",\n  \"bezit\": \"bezit\",\n  \"bezitten\": \"bezit\",\n  \"bezitter\": \"bezitter\",\n  \"bezitters\": \"bezitter\",\n  \"bezittingen\": \"bezit\",\n  \"bezocht\": \"bezocht\",\n  \"bezochte\": \"bezocht\",\n  \"bezochten\": \"bezocht\",\n  \"bezoedeld\": \"bezoedeld\",\n  \"bezoedelde\": \"bezoedeld\",\n  \"bezoedelend\": \"bezoedel\",\n  \"bezoedeling\": \"bezoedel\",\n  \"bezoek\": \"bezoek\",\n  \"bezoekadres\": \"bezoekadres\",\n  \"bezoeken\": \"bezoek\",\n  \"bezoekend\": \"bezoek\",\n  \"bezoekers\": \"bezoeker\",\n  \"bezoekerscentrum\": \"bezoekerscentrum\",\n  \"bezoekersrecord\": \"bezoekersrecord\",\n  \"bezoekt\": \"bezoekt\",\n  \"bezorgd\": \"bezorgd\",\n  \"bezorgde\": \"bezorgd\",\n  \"bezorgdheid\": \"bezorgd\",\n  \"bezorgen\": \"bezorg\",\n  \"bezorgheid\": \"bezorg\",\n  \"bezorgingen\": \"bezorg\",\n  \"bezorgt\": \"bezorgt\",\n  \"bezuidenhout\": \"bezuidenhout\",\n  \"bezuidenhoutseweg\": \"bezuidenhoutseweg\",\n  \"bezuinigd\": \"bezuinigd\",\n  \"bezuinigen\": \"bezuin\",\n  \"bezuinigingen\": \"bezuin\",\n  \"bezuinigt\": \"bezuinigt\",\n  \"bezwaar\": \"bezwar\",\n  \"bezwaarlijk\": \"bezwar\",\n  \"bezwaarmakers\": \"bezwaarmaker\",\n  \"bezwaarschrift\": \"bezwaarschrift\",\n  \"bezwaarschriften\": \"bezwaarschrift\",\n  \"bezwangerd\": \"bezwangerd\",\n  \"bezwaren\": \"bezwar\",\n  \"bezwarend\": \"bezwar\",\n  \"bezweek\": \"bezwek\",\n  \"bezweken\": \"bezwek\",\n  \"bezwerende\": \"bezwer\",\n  \"bezwijken\": \"bezwijk\",\n  \"bezwijkt\": \"bezwijkt\",\n  \"bezwijmde\": \"bezwijmd\",\n  \"bezwijmeld\": \"bezwijmeld\",\n  \"bezwijmelen\": \"bezwijmel\",\n  \"bezwijmelende\": \"bezwijmel\",\n  \"bezwijmeling\": \"bezwijmel\",\n  \"bezwijmen\": \"bezwijm\",\n  \"bezwijming\": \"bezwijm\",\n  \"bf\": \"bf\",\n  \"bfi\": \"bfi\",\n  \"bfr\": \"bfr\",\n  \"bh\": \"bh\",\n  \"bhi\": \"bhi\",\n  \"bhoe\": \"bhoe\",\n  \"bhopal\": \"bhopal\",\n  \"bhterheid\": \"bhterheid\",\n  \"bhutan\": \"bhutan\",\n  \"bi\": \"bi\",\n  \"bibberend\": \"bibber\",\n  \"bibelots\": \"bibelot\",\n  \"bibliotheek\": \"bibliothek\",\n  \"bibliothek\": \"bibliothek\",\n  \"bibury\": \"bibury\",\n  \"bic\": \"bic\",\n  \"biceps\": \"bicep\",\n  \"bicepsen\": \"biceps\",\n  \"bid\": \"bid\",\n  \"bidden\": \"bid\",\n  \"biecht\": \"biecht\",\n  \"biechten\": \"biecht\",\n  \"bieden\": \"bied\",\n  \"bieders\": \"bieder\",\n  \"biedt\": \"biedt\",\n  \"biefstuk\": \"biefstuk\",\n  \"biefstukken\": \"biefstuk\",\n  \"biekart\": \"biekart\",\n  \"bielars\": \"bielar\",\n  \"bier\": \"bier\",\n  \"bierbrouwerij\": \"bierbrouwerij\",\n  \"bierbrouwerijen\": \"bierbrouwerij\",\n  \"bierkratten\": \"bierkrat\",\n  \"biesbosch\": \"biesbosch\",\n  \"bieschbos\": \"bieschbos\",\n  \"biesen\": \"bies\",\n  \"bieten\": \"biet\",\n  \"bietenrooidemonstratie\": \"bietenrooidemonstratie\",\n  \"bietenteler\": \"bietenteler\",\n  \"bietenveld\": \"bietenveld\",\n  \"bietenveredelingsbedrijf\": \"bietenveredelingsbedrijf\",\n  \"biewenga\": \"biewenga\",\n  \"biezen\": \"biez\",\n  \"bifenthrin\": \"bifenthrin\",\n  \"biffa\": \"biffa\",\n  \"big\": \"big\",\n  \"bigbag\": \"bigbag\",\n  \"biggen\": \"bigg\",\n  \"bij\": \"bij\",\n  \"bijbaan\": \"bijban\",\n  \"bijbehorend\": \"bijbehor\",\n  \"bijbehorende\": \"bijbehor\",\n  \"bijbel\": \"bijbel\",\n  \"bijbelse\": \"bijbel\",\n  \"bijdraagt\": \"bijdraagt\",\n  \"bijdrage\": \"bijdrag\",\n  \"bijdragen\": \"bijdrag\",\n  \"bijdragenbesluit\": \"bijdragenbesluit\",\n  \"bijdragenregeling\": \"bijdragenregel\",\n  \"bijdrageregeling\": \"bijdrageregel\",\n  \"bijdroegen\": \"bijdroeg\",\n  \"bijeen\": \"bijen\",\n  \"bijeenbrengen\": \"bijeenbreng\",\n  \"bijeengebracht\": \"bijeengebracht\",\n  \"bijeenkomen\": \"bijeenkom\",\n  \"bijeenkomst\": \"bijeenkomst\",\n  \"bijeenkomsten\": \"bijeenkomst\",\n  \"bijelkaar\": \"bijelkar\",\n  \"bijen\": \"bij\",\n  \"bijenkorf\": \"bijenkorf\",\n  \"bijgedragen\": \"bijgedrag\",\n  \"bijgehouden\": \"bijgehoud\",\n  \"bijgekomen\": \"bijgekom\",\n  \"bijgelegd\": \"bijgelegd\",\n  \"bijgelovig\": \"bijgelov\",\n  \"bijgepast\": \"bijgepast\",\n  \"bijgeplaatst\": \"bijgeplaatst\",\n  \"bijgepompt\": \"bijgepompt\",\n  \"bijgeschoold\": \"bijgeschoold\",\n  \"bijgeschreven\": \"bijgeschrev\",\n  \"bijgesleept\": \"bijgesleept\",\n  \"bijgestaan\": \"bijgestan\",\n  \"bijgesteld\": \"bijgesteld\",\n  \"bijgestookt\": \"bijgestookt\",\n  \"bijgestookte\": \"bijgestookt\",\n  \"bijgevoerd\": \"bijgevoerd\",\n  \"bijgewoond\": \"bijgewoond\",\n  \"bijgroei\": \"bijgroei\",\n  \"bijhouden\": \"bijhoud\",\n  \"bijkleeft\": \"bijkleeft\",\n  \"bijklussende\": \"bijkluss\",\n  \"bijkomen\": \"bijkom\",\n  \"bijkomend\": \"bijkom\",\n  \"bijkomende\": \"bijkom\",\n  \"bijlage\": \"bijlag\",\n  \"bijlagen\": \"bijlag\",\n  \"bijlagenboek\": \"bijlagenboek\",\n  \"bijleggen\": \"bijlegg\",\n  \"bijlegt\": \"bijlegt\",\n  \"bijlmer\": \"bijlmer\",\n  \"bijlmerdreef\": \"bijlmerdref\",\n  \"bijlmermeer\": \"bijlmermer\",\n  \"bijlslagen\": \"bijlslag\",\n  \"bijmengen\": \"bijmeng\",\n  \"bijmenging\": \"bijmeng\",\n  \"bijmestmonster\": \"bijmestmonster\",\n  \"bijna\": \"bijna\",\n  \"bijnaam\": \"bijnam\",\n  \"bijnamen\": \"bijnam\",\n  \"bijou\": \"bijou\",\n  \"bijouterieën\": \"bijouterieen\",\n  \"bijprodukt\": \"bijprodukt\",\n  \"bijprodukten\": \"bijprodukt\",\n  \"bijscholing\": \"bijschol\",\n  \"bijstaan\": \"bijstan\",\n  \"bijstaat\": \"bijstat\",\n  \"bijstand\": \"bijstand\",\n  \"bijsteken\": \"bijstek\",\n  \"bijstellen\": \"bijstell\",\n  \"bijstelling\": \"bijstell\",\n  \"bijstoken\": \"bijstok\",\n  \"bijstook\": \"bijstok\",\n  \"bijten\": \"bijt\",\n  \"bijtende\": \"bijtend\",\n  \"bijtijds\": \"bijtijd\",\n  \"bijvangst\": \"bijvangst\",\n  \"bijverdiensten\": \"bijverdienst\",\n  \"bijvoorbeeld\": \"bijvoorbeeld\",\n  \"bijvoporbeeld\": \"bijvoporbeeld\",\n  \"bijvulde\": \"bijvuld\",\n  \"bijwerken\": \"bijwerk\",\n  \"bijziende\": \"bijziend\",\n  \"bijzijn\": \"bijzijn\",\n  \"bijzonder\": \"bijzonder\",\n  \"bijzondere\": \"bijzonder\",\n  \"bijzonderheid\": \"bijzonder\",\n  \"bijzonders\": \"bijzonder\",\n  \"bilateraal\": \"bilateral\",\n  \"bilbao\": \"bilbao\",\n  \"bildt\": \"bildt\",\n  \"bilgewater\": \"bilgewater\",\n  \"biljoen\": \"biljoen\",\n  \"bill\": \"bill\",\n  \"billen\": \"bill\",\n  \"billijke\": \"billijk\",\n  \"billiton\": \"billiton\",\n  \"bilt\": \"bilt\",\n  \"bilthoven\": \"bilthov\",\n  \"bilthovense\": \"bilthoven\",\n  \"biltse\": \"bilt\",\n  \"bim\": \"bim\",\n  \"bimz\": \"bimz\",\n  \"binda\": \"binda\",\n  \"binden\": \"bind\",\n  \"bindend\": \"bindend\",\n  \"bindende\": \"bindend\",\n  \"bindingen\": \"binding\",\n  \"bindmiddel\": \"bindmiddel\",\n  \"bindmiddelen\": \"bindmiddel\",\n  \"bindmiddelgehalte\": \"bindmiddelgehalt\",\n  \"bindmiddelpercentage\": \"bindmiddelpercentag\",\n  \"bindt\": \"bindt\",\n  \"binnen\": \"binn\",\n  \"binnenaarde\": \"binnenaard\",\n  \"binnenafwerking\": \"binnenafwerk\",\n  \"binnenbekken\": \"binnenbek\",\n  \"binnenblad\": \"binnenblad\",\n  \"binnenbrandje\": \"binnenbrandj\",\n  \"binnendijks\": \"binnendijk\",\n  \"binnendijkse\": \"binnendijk\",\n  \"binnendringend\": \"binnendring\",\n  \"binnengaan\": \"binnengan\",\n  \"binnengaat\": \"binnengat\",\n  \"binnengedrongen\": \"binnengedrong\",\n  \"binnengehaald\": \"binnengehaald\",\n  \"binnengekomen\": \"binnengekom\",\n  \"binnengelokt\": \"binnengelokt\",\n  \"binnengetroond\": \"binnengetroond\",\n  \"binnengevaren\": \"binnengevar\",\n  \"binnengevoerd\": \"binnengevoerd\",\n  \"binnengezogen\": \"binnengezog\",\n  \"binnengleed\": \"binnengled\",\n  \"binnengrenzen\": \"binnengrenz\",\n  \"binnenhuis\": \"binnenhuis\",\n  \"binnenisolatie\": \"binnenisolatie\",\n  \"binnenkant\": \"binnenkant\",\n  \"binnenklimaat\": \"binnenklimat\",\n  \"binnenkom\": \"binnenkom\",\n  \"binnenkomen\": \"binnenkom\",\n  \"binnenkomende\": \"binnenkom\",\n  \"binnenkomst\": \"binnenkomst\",\n  \"binnenkomt\": \"binnenkomt\",\n  \"binnenkort\": \"binnenkort\",\n  \"binnenkwam\": \"binnenkwam\",\n  \"binnenkwamen\": \"binnenkwam\",\n  \"binnenland\": \"binnenland\",\n  \"binnenlands\": \"binnenland\",\n  \"binnenlandse\": \"binnenland\",\n  \"binnenleiden\": \"binnenleid\",\n  \"binnenlucht\": \"binnenlucht\",\n  \"binnenluchtkwaliteit\": \"binnenluchtkwaliteit\",\n  \"binnenmeer\": \"binnenmer\",\n  \"binnenmilieu\": \"binnenmilieu\",\n  \"binnennacht\": \"binnennacht\",\n  \"binnenplaatsen\": \"binnenplaats\",\n  \"binnenschippers\": \"binnenschipper\",\n  \"binnenshuis\": \"binnenshuis\",\n  \"binnenskamers\": \"binnenskamer\",\n  \"binnenspouwblad\": \"binnenspouwblad\",\n  \"binnenstad\": \"binnenstad\",\n  \"binnenste\": \"binnenst\",\n  \"binnenstedelijke\": \"binnensted\",\n  \"binnensteden\": \"binnensted\",\n  \"binnenstromen\": \"binnenstrom\",\n  \"binnentrad\": \"binnentrad\",\n  \"binnentrap\": \"binnentrap\",\n  \"binnentrapje\": \"binnentrapj\",\n  \"binnenvaart\": \"binnenvaart\",\n  \"binnenvaartschepen\": \"binnenvaartschep\",\n  \"binnenvalt\": \"binnenvalt\",\n  \"binnenverlichting\": \"binnenverlicht\",\n  \"binnenvisserij\": \"binnenvisserij\",\n  \"binnenvloot\": \"binnenvlot\",\n  \"binnenvoeren\": \"binnenvoer\",\n  \"binnenwateren\": \"binnenwater\",\n  \"binnenwerk\": \"binnenwerk\",\n  \"binnenzee\": \"binnenzee\",\n  \"binnenzijde\": \"binnenzijd\",\n  \"binnenzweven\": \"binnenzwev\",\n  \"bintjes\": \"bintjes\",\n  \"bio\": \"bio\",\n  \"bioaccumelerend\": \"bioaccumeler\",\n  \"bioaccumulerend\": \"bioaccumuler\",\n  \"bioafbraak\": \"bioafbrak\",\n  \"bioafbreekbare\": \"bioafbrek\",\n  \"biobak\": \"biobak\",\n  \"biobed\": \"biobed\",\n  \"biobedreactor\": \"biobedreactor\",\n  \"biobrandstof\": \"biobrandstof\",\n  \"biobrandstoffen\": \"biobrandstoff\",\n  \"biocarborat\": \"biocarborat\",\n  \"biochemische\": \"biochemisch\",\n  \"biociden\": \"biocid\",\n  \"bioclear\": \"bioclear\",\n  \"biocoat\": \"biocoat\",\n  \"biodegradatie\": \"biodegradatie\",\n  \"biodegradatietest\": \"biodegradatietest\",\n  \"biodegradeerbaar\": \"biodegrader\",\n  \"biodegradeerbare\": \"biodegrader\",\n  \"biodiesel\": \"biodiesel\",\n  \"biodiversiteit\": \"biodiversiteit\",\n  \"biodiversiteitsforum\": \"biodiversiteitsforum\",\n  \"biodiversiteitsverdrag\": \"biodiversiteitsverdrag\",\n  \"biodiverstiteit\": \"biodiverstiteit\",\n  \"bioenergy\": \"bioenergy\",\n  \"biofarmaceutische\": \"biofarmaceutisch\",\n  \"biofilm\": \"biofilm\",\n  \"biofilmformatie\": \"biofilmformatie\",\n  \"biofilter\": \"biofilter\",\n  \"biofilterinstallatie\": \"biofilterinstallatie\",\n  \"biofilters\": \"biofilter\",\n  \"biofiltratie\": \"biofiltratie\",\n  \"biofiltratiestap\": \"biofiltratiestap\",\n  \"biofiltratietechnieken\": \"biofiltratietechniek\",\n  \"biofuels\": \"biofuel\",\n  \"biogas\": \"biogas\",\n  \"bioindustrie\": \"bioindustrie\",\n  \"biokatalytische\": \"biokatalytisch\",\n  \"biologe\": \"biolog\",\n  \"biologen\": \"biolog\",\n  \"biologica\": \"biologica\",\n  \"biologie\": \"biologie\",\n  \"biologisch\": \"biologisch\",\n  \"biologische\": \"biologisch\",\n  \"bioloog\": \"biolog\",\n  \"biomass\": \"biomas\",\n  \"biomassa\": \"biomassa\",\n  \"biomassaproducerende\": \"biomassaproducer\",\n  \"biomassaproduktie\": \"biomassaproduktie\",\n  \"biomassavergasser\": \"biomassavergasser\",\n  \"biomassavergassing\": \"biomassavergass\",\n  \"biomassavergassingssystemen\": \"biomassavergassingssystem\",\n  \"biomassavergisting\": \"biomassavergist\",\n  \"biomimetica\": \"biomimetica\",\n  \"biomix\": \"biomix\",\n  \"bion\": \"bion\",\n  \"bionolle\": \"bionoll\",\n  \"biopluimen\": \"biopluim\",\n  \"bioquint\": \"bioquint\",\n  \"bioreactor\": \"bioreactor\",\n  \"bioreactoren\": \"bioreactor\",\n  \"bioremediation\": \"bioremediation\",\n  \"biorotor\": \"biorotor\",\n  \"biorotoren\": \"biorotor\",\n  \"biosaneren\": \"biosaner\",\n  \"bioscoop\": \"bioscop\",\n  \"biosfeer\": \"biosfer\",\n  \"biosparging\": \"biosparg\",\n  \"biostar\": \"biostar\",\n  \"biotec\": \"biotec\",\n  \"biotechfonds\": \"biotechfond\",\n  \"biotechnical\": \"biotechnical\",\n  \"biotechnolgie\": \"biotechnolgie\",\n  \"biotechnologie\": \"biotechnologie\",\n  \"biotechnologiebedrijf\": \"biotechnologiebedrijf\",\n  \"biotechnologiebedrijven\": \"biotechnologiebedrijv\",\n  \"biotechnologieconcern\": \"biotechnologieconcern\",\n  \"biotechnologieprojecten\": \"biotechnologieproject\",\n  \"biotechnologisch\": \"biotechnologisch\",\n  \"biotechnologische\": \"biotechnologisch\",\n  \"biotensiden\": \"biotensid\",\n  \"biothane\": \"biothan\",\n  \"biotoop\": \"biotop\",\n  \"biotricklingfilter\": \"biotricklingfilter\",\n  \"biotricklingfiltratie\": \"biotricklingfiltratie\",\n  \"bioventilatie\": \"bioventilatie\",\n  \"bioventing\": \"biovent\",\n  \"biovergassers\": \"biovergasser\",\n  \"biovergassing\": \"biovergass\",\n  \"biovergassingsinstallaties\": \"biovergassingsinstallaties\",\n  \"biowapens\": \"biowapen\",\n  \"biowassers\": \"biowasser\",\n  \"bioway\": \"bioway\",\n  \"biowiel\": \"biowiel\",\n  \"biowieltje\": \"biowieltj\",\n  \"biowieltjes\": \"biowieltjes\",\n  \"bipolaire\": \"bipolair\",\n  \"bird\": \"bird\",\n  \"birecek\": \"birecek\",\n  \"birmingham\": \"birmingham\",\n  \"birnie\": \"birnie\",\n  \"bis\": \"bis\",\n  \"bischoff\": \"bischoff\",\n  \"bisfenol\": \"bisfenol\",\n  \"bisschop\": \"bisschop\",\n  \"bit\": \"bit\",\n  \"bits\": \"bit\",\n  \"bitse\": \"bit\",\n  \"bitsende\": \"bitsend\",\n  \"bitste\": \"bitst\",\n  \"bitsten\": \"bitst\",\n  \"bitter\": \"bitter\",\n  \"bitterder\": \"bitterder\",\n  \"bittere\": \"bitter\",\n  \"bitterheden\": \"bitter\",\n  \"bitterheid\": \"bitter\",\n  \"bitterley\": \"bitterley\",\n  \"bitumensoort\": \"bitumensoort\",\n  \"bivakkeerde\": \"bivakkeerd\",\n  \"biwater\": \"biwater\",\n  \"bizarre\": \"bizarr\",\n  \"bizonder\": \"bizonder\",\n  \"bizondere\": \"bizonder\",\n  \"bizonderheden\": \"bizonder\",\n  \"bizonderheid\": \"bizonder\",\n  \"bizonders\": \"bizonder\",\n  \"bjerregaard\": \"bjerregaard\",\n  \"bjorn\": \"bjorn\",\n  \"bkn\": \"bkn\",\n  \"bkr\": \"bkr\",\n  \"bl\": \"bl\",\n  \"blaadje\": \"blaadj\",\n  \"blaam\": \"blam\",\n  \"blaamloze\": \"blaamloz\",\n  \"blaas\": \"blas\",\n  \"blaasjesziekte\": \"blaasjesziekt\",\n  \"blaasjesziektevirus\": \"blaasjesziektevirus\",\n  \"blaaskanker\": \"blaaskanker\",\n  \"blaasmiddel\": \"blaasmiddel\",\n  \"blaassysteem\": \"blaassystem\",\n  \"blaast\": \"blaast\",\n  \"blaauwe\": \"blaauw\",\n  \"black\": \"black\",\n  \"blad\": \"blad\",\n  \"bladen\": \"blad\",\n  \"bladerde\": \"bladerd\",\n  \"bladeren\": \"blader\",\n  \"bladerende\": \"blader\",\n  \"bladerenleven\": \"bladerenlev\",\n  \"bladgewassen\": \"bladgewass\",\n  \"bladgroen\": \"bladgroen\",\n  \"bladgroente\": \"bladgroent\",\n  \"bladhoekversnellingsmechanisme\": \"bladhoekversnellingsmechanism\",\n  \"bladhoekverstellingen\": \"bladhoekverstell\",\n  \"bladloze\": \"bladloz\",\n  \"bladmonsters\": \"bladmonster\",\n  \"bladschade\": \"bladschad\",\n  \"bladzijden\": \"bladzijd\",\n  \"blaeu\": \"blaeu\",\n  \"blafte\": \"blaft\",\n  \"blageert\": \"blageert\",\n  \"blague\": \"blague\",\n  \"blagueerde\": \"blagueerd\",\n  \"blagueerden\": \"blagueerd\",\n  \"blagueren\": \"blaguer\",\n  \"blaguerend\": \"blaguer\",\n  \"blaguerende\": \"blaguer\",\n  \"blagueur\": \"blagueur\",\n  \"blakende\": \"blakend\",\n  \"blanc\": \"blanc\",\n  \"blank\": \"blank\",\n  \"blanke\": \"blank\",\n  \"blankenstein\": \"blankenstein\",\n  \"blanker\": \"blanker\",\n  \"blankert\": \"blankert\",\n  \"blankheid\": \"blankheid\",\n  \"blankrozig\": \"blankroz\",\n  \"blankte\": \"blankt\",\n  \"blankten\": \"blankt\",\n  \"blansch\": \"blansch\",\n  \"blaren\": \"blar\",\n  \"blâren\": \"blâren\",\n  \"blauw\": \"blauw\",\n  \"blauwde\": \"blauwd\",\n  \"blauwe\": \"blauw\",\n  \"blauwgraslanden\": \"blauwgrasland\",\n  \"blauwgrijs\": \"blauwgrijs\",\n  \"blauwig\": \"blauwig\",\n  \"blauwige\": \"blauwig\",\n  \"blauwiggeschoren\": \"blauwiggeschor\",\n  \"blauwtjes\": \"blauwtjes\",\n  \"blauwwitte\": \"blauwwit\",\n  \"blauwzuur\": \"blauwzur\",\n  \"blauwzuurgas\": \"blauwzuurgas\",\n  \"blazen\": \"blaz\",\n  \"bleaching\": \"bleaching\",\n  \"bleef\": \"blef\",\n  \"bléef\": \"blef\",\n  \"bleek\": \"blek\",\n  \"bléék\": \"blek\",\n  \"bleekgele\": \"bleekgel\",\n  \"bleekheid\": \"bleekheid\",\n  \"bleekjes\": \"bleekjes\",\n  \"bleekmiddelen\": \"bleekmiddel\",\n  \"bleekproces\": \"bleekproces\",\n  \"bleekte\": \"bleekt\",\n  \"bleiswijk\": \"bleiswijk\",\n  \"bleke\": \"blek\",\n  \"bleken\": \"blek\",\n  \"bleker\": \"bleker\",\n  \"blekere\": \"bleker\",\n  \"bleking\": \"bleking\",\n  \"blerick\": \"blerick\",\n  \"bles\": \"bles\",\n  \"bleumink\": \"bleumink\",\n  \"bleven\": \"blev\",\n  \"blgg\": \"blgg\",\n  \"blhb\": \"blhb\",\n  \"blicher\": \"blicher\",\n  \"blieft\": \"blieft\",\n  \"blies\": \"blies\",\n  \"blij\": \"blij\",\n  \"blijde\": \"blijd\",\n  \"blijdschap\": \"blijdschap\",\n  \"blijf\": \"blijf\",\n  \"blijft\": \"blijft\",\n  \"blijk\": \"blijk\",\n  \"blijkbaar\": \"blijkbar\",\n  \"blijken\": \"blijk\",\n  \"blijkt\": \"blijkt\",\n  \"blijven\": \"blijv\",\n  \"blijvend\": \"blijvend\",\n  \"blijvende\": \"blijvend\",\n  \"blijvers\": \"blijver\",\n  \"blik\": \"blik\",\n  \"blikje\": \"blikj\",\n  \"blikken\": \"blik\",\n  \"blikkende\": \"blikkend\",\n  \"bliksem\": \"bliksem\",\n  \"bliksembeveiliging\": \"bliksembeveil\",\n  \"bliksemden\": \"bliksemd\",\n  \"blikseminslag\": \"blikseminslag\",\n  \"blikseminslagen\": \"blikseminslag\",\n  \"bliksems\": \"bliksem\",\n  \"bliksemschade\": \"bliksemschad\",\n  \"bliksemsnel\": \"bliksemsnel\",\n  \"blikte\": \"blikt\",\n  \"blikten\": \"blikt\",\n  \"blind\": \"blind\",\n  \"blinde\": \"blind\",\n  \"blinden\": \"blind\",\n  \"blindheid\": \"blindheid\",\n  \"blinken\": \"blink\",\n  \"blinkende\": \"blinkend\",\n  \"blix\": \"blix\",\n  \"block\": \"block\",\n  \"blocking\": \"blocking\",\n  \"bloed\": \"bloed\",\n  \"bloedkanker\": \"bloedkanker\",\n  \"bloedmeel\": \"bloedmel\",\n  \"bloedomwenteling\": \"bloedomwentel\",\n  \"bloedonderzoek\": \"bloedonderzoek\",\n  \"bloedrood\": \"bloedrod\",\n  \"bloedtest\": \"bloedtest\",\n  \"bloedverwante\": \"bloedverwant\",\n  \"bloedverwanten\": \"bloedverwant\",\n  \"bloedvuur\": \"bloedvur\",\n  \"bloei\": \"bloei\",\n  \"bloeide\": \"bloeid\",\n  \"bloeiden\": \"bloeid\",\n  \"bloeien\": \"bloei\",\n  \"bloeiend\": \"bloeiend\",\n  \"bloeiende\": \"bloeiend\",\n  \"bloeisnelheid\": \"bloeisnel\",\n  \"bloem\": \"bloem\",\n  \"bloemblaadjes\": \"bloemblaadjes\",\n  \"bloembollen\": \"bloemboll\",\n  \"bloembollencultuur\": \"bloembollencultur\",\n  \"bloembollenonderzoek\": \"bloembollenonderzoek\",\n  \"bloembollensector\": \"bloembollensector\",\n  \"bloembollenteelt\": \"bloembollenteelt\",\n  \"bloembollentelers\": \"bloembollenteler\",\n  \"bloemdijk\": \"bloemdijk\",\n  \"bloemdijken\": \"bloemdijk\",\n  \"bloemen\": \"bloem\",\n  \"bloemenbedrijf\": \"bloemenbedrijf\",\n  \"bloemendaal\": \"bloemendal\",\n  \"bloemenkwekerij\": \"bloemenkwekerij\",\n  \"bloemenkwekers\": \"bloemenkweker\",\n  \"bloemenmand\": \"bloemenmand\",\n  \"bloemenmanden\": \"bloemenmand\",\n  \"bloemensector\": \"bloemensector\",\n  \"bloementeelt\": \"bloementeelt\",\n  \"bloementeler\": \"bloementeler\",\n  \"bloemenvaktentoonstelling\": \"bloemenvaktentoonstell\",\n  \"bloemenveiling\": \"bloemenveil\",\n  \"bloemisterij\": \"bloemisterij\",\n  \"bloemkweker\": \"bloemkweker\",\n  \"bloemlezing\": \"bloemlez\",\n  \"bloesems\": \"bloesem\",\n  \"blois\": \"blois\",\n  \"blok\": \"blok\",\n  \"blokkade\": \"blokkad\",\n  \"blokkades\": \"blokkades\",\n  \"blokkeerden\": \"blokkeerd\",\n  \"blokkeert\": \"blokkeert\",\n  \"blokken\": \"blok\",\n  \"blokkenvuur\": \"blokkenvur\",\n  \"blokkeren\": \"blokker\",\n  \"blokverwarming\": \"blokverwarm\",\n  \"blom\": \"blom\",\n  \"blomsma\": \"blomsma\",\n  \"blond\": \"blond\",\n  \"blonde\": \"blond\",\n  \"blondjes\": \"blondjes\",\n  \"blonk\": \"blonk\",\n  \"blonken\": \"blonk\",\n  \"bloosde\": \"bloosd\",\n  \"bloosden\": \"bloosd\",\n  \"bloot\": \"blot\",\n  \"blootgelegd\": \"blootgelegd\",\n  \"blootgesteld\": \"blootgesteld\",\n  \"blootlegt\": \"blootlegt\",\n  \"blootstaan\": \"blootstan\",\n  \"blootstelling\": \"blootstell\",\n  \"blootstellingsniveaus\": \"blootstellingsniveaus\",\n  \"blootstellingsnormen\": \"blootstellingsnorm\",\n  \"blootstellingswegen\": \"blootstellingsweg\",\n  \"blos\": \"blos\",\n  \"blosjes\": \"blosjes\",\n  \"blote\": \"blot\",\n  \"blouse\": \"blous\",\n  \"blouses\": \"blouses\",\n  \"blousetjes\": \"blousetjes\",\n  \"blow\": \"blow\",\n  \"blozen\": \"bloz\",\n  \"blubberende\": \"blubber\",\n  \"blunder\": \"blunder\",\n  \"blusinstallaties\": \"blusinstallaties\",\n  \"blust\": \"blust\",\n  \"bluswater\": \"bluswater\",\n  \"blyth\": \"blyth\",\n  \"blz\": \"blz\",\n  \"bmd\": \"bmd\",\n  \"bmi\": \"bmi\",\n  \"bmni\": \"bmni\",\n  \"bmp\": \"bmp\",\n  \"bmro\": \"bmro\",\n  \"bms\": \"bms\",\n  \"bmw\": \"bmw\",\n  \"bna\": \"bna\",\n  \"bnmi\": \"bnmi\",\n  \"bnp\": \"bnp\",\n  \"boa\": \"boa\",\n  \"board\": \"board\",\n  \"bob\": \"bob\",\n  \"bobema\": \"bobema\",\n  \"bochel\": \"bochel\",\n  \"bocht\": \"bocht\",\n  \"bochum\": \"bochum\",\n  \"bod\": \"bod\",\n  \"bode\": \"bod\",\n  \"bodegraven\": \"bodegrav\",\n  \"bodem\": \"bodem\",\n  \"bodemafdichting\": \"bodemafdicht\",\n  \"bodemafdichtings\": \"bodemafdicht\",\n  \"bodemanalyse\": \"bodemanalys\",\n  \"bodemas\": \"bodemas\",\n  \"bodembacteriën\": \"bodembacterien\",\n  \"bodembeheer\": \"bodembeher\",\n  \"bodembeleid\": \"bodembeleid\",\n  \"bodembeschermende\": \"bodembescherm\",\n  \"bodembescherming\": \"bodembescherm\",\n  \"bodembeschermingsgebied\": \"bodembeschermingsgebied\",\n  \"bodembeschermingsgebieden\": \"bodembeschermingsgebied\",\n  \"bodembeschermingsinstallaties\": \"bodembeschermingsinstallaties\",\n  \"bodemcafé\": \"bodemcaf\",\n  \"bodemdaling\": \"bodemdal\",\n  \"bodemdalingscommissie\": \"bodemdalingscommissie\",\n  \"bodemerosie\": \"bodemerosie\",\n  \"bodemgebied\": \"bodemgebied\",\n  \"bodemgegevens\": \"bodemgegeven\",\n  \"bodemherstel\": \"bodemherstel\",\n  \"bodeminformatiesystemen\": \"bodeminformatiesystem\",\n  \"bodemkunde\": \"bodemkund\",\n  \"bodemkwaliteit\": \"bodemkwaliteit\",\n  \"bodemleven\": \"bodemlev\",\n  \"bodemlucht\": \"bodemlucht\",\n  \"bodemluchtextracties\": \"bodemluchtextracties\",\n  \"bodemluchtextractiesysteem\": \"bodemluchtextractiesystem\",\n  \"bodemmilieueisen\": \"bodemmilieueis\",\n  \"bodemmonsters\": \"bodemmonster\",\n  \"bodemonderzoek\": \"bodemonderzoek\",\n  \"bodemonderzoeken\": \"bodemonderzoek\",\n  \"bodemonderzoekmethodieken\": \"bodemonderzoekmethodiek\",\n  \"bodemonderzoeksmarkt\": \"bodemonderzoeksmarkt\",\n  \"bodemonderzoeksmethoden\": \"bodemonderzoeksmethod\",\n  \"bodemonderzoeksprotocol\": \"bodemonderzoeksprotocol\",\n  \"bodempassage\": \"bodempassag\",\n  \"bodemprocedure\": \"bodemprocedur\",\n  \"bodemreiniging\": \"bodemrein\",\n  \"bodemreinigingsprocessen\": \"bodemreinigingsprocess\",\n  \"bodemreinigingsprojecten\": \"bodemreinigingsproject\",\n  \"bodems\": \"bodem\",\n  \"bodemsanering\": \"bodemsaner\",\n  \"bodemsaneringen\": \"bodemsaner\",\n  \"bodemsaneringinstallaties\": \"bodemsaneringinstallaties\",\n  \"bodemsanerings\": \"bodemsaner\",\n  \"bodemsaneringsbedrijf\": \"bodemsaneringsbedrijf\",\n  \"bodemsaneringsbeleid\": \"bodemsaneringsbeleid\",\n  \"bodemsaneringscongres\": \"bodemsaneringscongres\",\n  \"bodemsaneringsdecreet\": \"bodemsaneringsdecret\",\n  \"bodemsaneringsmarkt\": \"bodemsaneringsmarkt\",\n  \"bodemsaneringsoperatie\": \"bodemsaneringsoperatie\",\n  \"bodemsaneringsparagraaf\": \"bodemsaneringsparagraf\",\n  \"bodemsaneringsprogramma\": \"bodemsaneringsprogramma\",\n  \"bodemsaneringsproject\": \"bodemsaneringsproject\",\n  \"bodemsaneringsprojecten\": \"bodemsaneringsproject\",\n  \"bodemsaneringstechnieken\": \"bodemsaneringstechniek\",\n  \"bodemschade\": \"bodemschad\",\n  \"bodemsituatie\": \"bodemsituatie\",\n  \"bodemspecie\": \"bodemspecie\",\n  \"bodemstructuur\": \"bodemstructur\",\n  \"bodemtoets\": \"bodemtoet\",\n  \"bodemverbeteraar\": \"bodemverbeterar\",\n  \"bodemverontreiniging\": \"bodemverontrein\",\n  \"bodemverontreinigingen\": \"bodemverontrein\",\n  \"bodemverontreinigingsbeleid\": \"bodemverontreinigingsbeleid\",\n  \"bodemverontreinigingsonderzoek\": \"bodemverontreinigingsonderzoek\",\n  \"bodemvervuiling\": \"bodemvervuil\",\n  \"bodemvervuilingslocaties\": \"bodemvervuilingslocaties\",\n  \"bodemvisserij\": \"bodemvisserij\",\n  \"bodemvruchtbaarheid\": \"bodemvrucht\",\n  \"bodemvruchtbaarheidsonderzoek\": \"bodemvruchtbaarheidsonderzoek\",\n  \"bodemzaken\": \"bodemzak\",\n  \"bodemziekten\": \"bodemziekt\",\n  \"bodemzuivering\": \"bodemzuiver\",\n  \"boden\": \"bod\",\n  \"bodewes\": \"bodewes\",\n  \"body\": \"body\",\n  \"bodybuilders\": \"bodybuilder\",\n  \"boeang\": \"boeang\",\n  \"boeboer\": \"boeboer\",\n  \"boecker\": \"boecker\",\n  \"boedel\": \"boedel\",\n  \"boedelkrediet\": \"boedelkrediet\",\n  \"boef\": \"boef\",\n  \"boehringer\": \"boehringer\",\n  \"boeien\": \"boei\",\n  \"boeiend\": \"boeiend\",\n  \"boeit\": \"boeit\",\n  \"boek\": \"boek\",\n  \"boeke\": \"boek\",\n  \"boekelermeer\": \"boekelermer\",\n  \"boeken\": \"boek\",\n  \"boekenkast\": \"boekenkast\",\n  \"boekenkasten\": \"boekenkast\",\n  \"boekenstudie\": \"boekenstudie\",\n  \"boekentitels\": \"boekentitel\",\n  \"boekerij\": \"boekerij\",\n  \"boekhandel\": \"boekhandel\",\n  \"boekhouding\": \"boekhoud\",\n  \"boekhoudingen\": \"boekhoud\",\n  \"boekingen\": \"boeking\",\n  \"boekjaar\": \"boekjar\",\n  \"boekje\": \"boekj\",\n  \"boekjes\": \"boekjes\",\n  \"boekt\": \"boekt\",\n  \"boekte\": \"boekt\",\n  \"boekvorm\": \"boekvorm\",\n  \"boekwaarde\": \"boekwaard\",\n  \"boel\": \"boel\",\n  \"boels\": \"boel\",\n  \"boenderbos\": \"boenderbos\",\n  \"boeng\": \"boeng\",\n  \"boenink\": \"boenink\",\n  \"boer\": \"boer\",\n  \"boèr\": \"boèr\",\n  \"boerderij\": \"boerderij\",\n  \"boerderijen\": \"boerderij\",\n  \"boerdonk\": \"boerdonk\",\n  \"boeren\": \"boer\",\n  \"boerenactie\": \"boerenactie\",\n  \"boerenactiecomité\": \"boerenactiecomit\",\n  \"boerenactiegroep\": \"boerenactiegroep\",\n  \"boerenactieleider\": \"boerenactieleider\",\n  \"boerenacties\": \"boerenacties\",\n  \"boerenbedrijf\": \"boerenbedrijf\",\n  \"boerenbedrijven\": \"boerenbedrijv\",\n  \"boerenbelangenorganisatie\": \"boerenbelangenorganisatie\",\n  \"boerenbeweging\": \"boerenbeweg\",\n  \"boerenbond\": \"boerenbond\",\n  \"boerenfederatie\": \"boerenfederatie\",\n  \"boerenhoed\": \"boerenhoed\",\n  \"boerenkinkel\": \"boerenkinkel\",\n  \"boerenkinkels\": \"boerenkinkel\",\n  \"boerenkool\": \"boerenkol\",\n  \"boerenleider\": \"boerenleider\",\n  \"boerenleiders\": \"boerenleider\",\n  \"boerenmarkten\": \"boerenmarkt\",\n  \"boerenorganisatie\": \"boerenorganisatie\",\n  \"boerenorganisaties\": \"boerenorganisaties\",\n  \"boerenprotest\": \"boerenprotest\",\n  \"boerenprotestactie\": \"boerenprotestactie\",\n  \"boerenschuren\": \"boerenschur\",\n  \"boerensyndicaat\": \"boerensyndicat\",\n  \"boerenvoorman\": \"boerenvoorman\",\n  \"boerenzwaluw\": \"boerenzwaluw\",\n  \"boerin\": \"boerin\",\n  \"boerinnen\": \"boerinn\",\n  \"boers\": \"boer\",\n  \"boertien\": \"boertien\",\n  \"boete\": \"boet\",\n  \"boeten\": \"boet\",\n  \"boetes\": \"boetes\",\n  \"boezelaartje\": \"boezelaartj\",\n  \"boezem\": \"boezem\",\n  \"boezeman\": \"boezeman\",\n  \"boezemwateren\": \"boezemwater\",\n  \"bogaerds\": \"bogaerd\",\n  \"bogor\": \"bogor\",\n  \"boheemen\": \"bohem\",\n  \"bohémien\": \"bohemien\",\n  \"bohinen\": \"bohin\",\n  \"böhlen\": \"bohl\",\n  \"boiler\": \"boiler\",\n  \"boilers\": \"boiler\",\n  \"bok\": \"bok\",\n  \"bokkig\": \"bokkig\",\n  \"bokwielen\": \"bokwiel\",\n  \"bolero\": \"bolero\",\n  \"bolger\": \"bolger\",\n  \"bölger\": \"bolger\",\n  \"bolkenstein\": \"bolkenstein\",\n  \"bollegraaf\": \"bollegraf\",\n  \"bollen\": \"boll\",\n  \"bollenareaal\": \"bollenareaal\",\n  \"bollencomplex\": \"bollencomplex\",\n  \"bollengebieden\": \"bollengebied\",\n  \"bollengrond\": \"bollengrond\",\n  \"bollengronden\": \"bollengrond\",\n  \"bollenland\": \"bollenland\",\n  \"bollensector\": \"bollensector\",\n  \"bollenstreek\": \"bollenstrek\",\n  \"bollenteelt\": \"bollenteelt\",\n  \"bollenvelden\": \"bollenveld\",\n  \"bollenzand\": \"bollenzand\",\n  \"bolletjes\": \"bolletjes\",\n  \"bollwerk\": \"bollwerk\",\n  \"bolsover\": \"bolsover\",\n  \"bom\": \"bom\",\n  \"bomaanslag\": \"bomaanslag\",\n  \"bomberend\": \"bomber\",\n  \"bomelijnen\": \"bomelijn\",\n  \"bomen\": \"bom\",\n  \"bomenbank\": \"bomenbank\",\n  \"bomenlijn\": \"bomenlijn\",\n  \"bomennacht\": \"bomennacht\",\n  \"bommel\": \"bommel\",\n  \"bommelerwaard\": \"bommelerwaard\",\n  \"bommels\": \"bommel\",\n  \"bommen\": \"bomm\",\n  \"bommenwerper\": \"bommenwerper\",\n  \"bon\": \"bon\",\n  \"bonbon\": \"bonbon\",\n  \"bonbondoos\": \"bonbondos\",\n  \"bonbonplaatje\": \"bonbonplaatj\",\n  \"bond\": \"bond\",\n  \"bonden\": \"bond\",\n  \"bondskanselier\": \"bondskanselier\",\n  \"bondsministerie\": \"bondsministerie\",\n  \"bondsregering\": \"bondsreger\",\n  \"bondsrepubliek\": \"bondsrepubliek\",\n  \"bondt\": \"bondt\",\n  \"bongerds\": \"bongerd\",\n  \"bonino\": \"bonino\",\n  \"bonjour\": \"bonjour\",\n  \"bonn\": \"bonn\",\n  \"bonne\": \"bonn\",\n  \"bonnen\": \"bonn\",\n  \"bonny\": \"bonny\",\n  \"bonsde\": \"bonsd\",\n  \"bonsden\": \"bonsd\",\n  \"bont\": \"bont\",\n  \"bonte\": \"bont\",\n  \"bonten\": \"bont\",\n  \"bontte\": \"bont\",\n  \"bontvervige\": \"bontverv\",\n  \"bonus\": \"bonus\",\n  \"bonzende\": \"bonzend\",\n  \"bood\": \"bod\",\n  \"boodschap\": \"boodschap\",\n  \"boodschappen\": \"boodschapp\",\n  \"boog\": \"bog\",\n  \"boograam\": \"boogram\",\n  \"book\": \"bok\",\n  \"boom\": \"bom\",\n  \"boomgaard\": \"boomgaard\",\n  \"boomkorkotten\": \"boomkorkot\",\n  \"boomkorkotter\": \"boomkorkotter\",\n  \"boomkorkotters\": \"boomkorkotter\",\n  \"boomkorkotvisserij\": \"boomkorkotvisserij\",\n  \"boomkorvissen\": \"boomkorviss\",\n  \"boomkronen\": \"boomkron\",\n  \"boomkweek\": \"boomkwek\",\n  \"boomkwekerij\": \"boomkwekerij\",\n  \"boomkwekerijen\": \"boomkwekerij\",\n  \"boomkwekers\": \"boomkweker\",\n  \"boomscheuten\": \"boomscheut\",\n  \"boomschors\": \"boomschor\",\n  \"boomse\": \"bom\",\n  \"boomsoorten\": \"boomsoort\",\n  \"boomstammen\": \"boomstamm\",\n  \"boomstrips\": \"boomstrip\",\n  \"boomstronken\": \"boomstronk\",\n  \"boomteelt\": \"boomteelt\",\n  \"boomwortels\": \"boomwortel\",\n  \"boomziekte\": \"boomziekt\",\n  \"booneman\": \"booneman\",\n  \"boor\": \"bor\",\n  \"boorbedrijven\": \"boorbedrijv\",\n  \"boord\": \"boord\",\n  \"boordcomputer\": \"boordcomputer\",\n  \"boordcomputers\": \"boordcomputer\",\n  \"boorde\": \"boord\",\n  \"boordje\": \"boordj\",\n  \"booreiland\": \"booreiland\",\n  \"boorfosfaat\": \"boorfosfat\",\n  \"boorgat\": \"boorgat\",\n  \"boorgegevens\": \"boorgegeven\",\n  \"boorgruis\": \"boorgruis\",\n  \"boormachine\": \"boormachin\",\n  \"boorpijp\": \"boorpijp\",\n  \"boorplatform\": \"boorplatform\",\n  \"boorplatforms\": \"boorplatform\",\n  \"boorputten\": \"boorput\",\n  \"boorschachten\": \"boorschacht\",\n  \"boorschip\": \"boorschip\",\n  \"boorspoeling\": \"boorspoel\",\n  \"boorspoelingen\": \"boorspoel\",\n  \"boort\": \"boort\",\n  \"boortechniek\": \"boortechniek\",\n  \"boortechnieken\": \"boortechniek\",\n  \"boortoren\": \"boortor\",\n  \"boortunnel\": \"boortunnel\",\n  \"boorvloeistof\": \"boorvloeistof\",\n  \"boorzout\": \"boorzout\",\n  \"boos\": \"bos\",\n  \"boosaardige\": \"boosaard\",\n  \"boosdoener\": \"boosdoener\",\n  \"boosdoeners\": \"boosdoener\",\n  \"boosheid\": \"boosheid\",\n  \"boot\": \"bot\",\n  \"bootsen\": \"boots\",\n  \"boraatglas\": \"boraatglas\",\n  \"boraatmengsel\": \"boraatmengsel\",\n  \"borcea\": \"borcea\",\n  \"borculo\": \"borculo\",\n  \"bord\": \"bord\",\n  \"bordeaux\": \"bordeaux\",\n  \"borden\": \"bord\",\n  \"bordentrawlers\": \"bordentrawler\",\n  \"border\": \"border\",\n  \"bordpapier\": \"bordpapier\",\n  \"borduurde\": \"borduurd\",\n  \"boren\": \"bor\",\n  \"borg\": \"borg\",\n  \"borgen\": \"borg\",\n  \"borgharen\": \"borghar\",\n  \"borging\": \"borging\",\n  \"boring\": \"boring\",\n  \"boringen\": \"boring\",\n  \"boris\": \"boris\",\n  \"born\": \"born\",\n  \"borneo\": \"borneo\",\n  \"borneokade\": \"borneokad\",\n  \"borrel\": \"borrel\",\n  \"borrels\": \"borrel\",\n  \"borsele\": \"borsel\",\n  \"borssele\": \"borssel\",\n  \"borst\": \"borst\",\n  \"borstel\": \"borstel\",\n  \"borstelen\": \"borstel\",\n  \"borstelmechanisme\": \"borstelmechanism\",\n  \"borstels\": \"borstel\",\n  \"borstkanker\": \"borstkanker\",\n  \"borstvoeding\": \"borstvoed\",\n  \"bos\": \"bos\",\n  \"bosaanleg\": \"bosaanleg\",\n  \"bosaantasting\": \"bosaantast\",\n  \"bosarsenaal\": \"bosarsenal\",\n  \"bosbeheer\": \"bosbeher\",\n  \"bosbeheerders\": \"bosbeheerder\",\n  \"bosbeleid\": \"bosbeleid\",\n  \"bosbies\": \"bosbies\",\n  \"bosbouw\": \"bosbouw\",\n  \"bosbouwdiensten\": \"bosbouwdienst\",\n  \"bosbouwkundige\": \"bosbouwkund\",\n  \"bosbouwondernemingen\": \"bosbouwondernem\",\n  \"bosbrand\": \"bosbrand\",\n  \"bosbranden\": \"bosbrand\",\n  \"bosca\": \"bosca\",\n  \"bosch\": \"bosch\",\n  \"bösendorferstrasse\": \"bosendorferstras\",\n  \"bosgebied\": \"bosgebied\",\n  \"bosgebieden\": \"bosgebied\",\n  \"bosgrond\": \"bosgrond\",\n  \"bosjes\": \"bosjes\",\n  \"boskalis\": \"boskalis\",\n  \"boskoop\": \"boskop\",\n  \"boslandschap\": \"boslandschap\",\n  \"bosnegers\": \"bosneger\",\n  \"boso\": \"boso\",\n  \"bosolifanten\": \"bosolifant\",\n  \"bosonderzoek\": \"bosonderzoek\",\n  \"bosoppervlakte\": \"bosoppervlakt\",\n  \"bosrijke\": \"bosrijk\",\n  \"bosschages\": \"bosschages\",\n  \"bosschap\": \"bosschap\",\n  \"bossche\": \"bossch\",\n  \"bosscher\": \"bosscher\",\n  \"bossen\": \"boss\",\n  \"bossige\": \"bossig\",\n  \"bossy\": \"bossy\",\n  \"boston\": \"boston\",\n  \"bostypen\": \"bostyp\",\n  \"bosvariant\": \"bosvariant\",\n  \"boswachter\": \"boswachter\",\n  \"boswet\": \"boswet\",\n  \"bot\": \"bot\",\n  \"botanische\": \"botanisch\",\n  \"boten\": \"bot\",\n  \"boter\": \"boter\",\n  \"botergeel\": \"botergel\",\n  \"boterham\": \"boterham\",\n  \"boterhammen\": \"boterhamm\",\n  \"boterhammetje\": \"boterhammetj\",\n  \"boterhammetjes\": \"boterhammetjes\",\n  \"botert\": \"botert\",\n  \"botlek\": \"botlek\",\n  \"botlekgebied\": \"botlekgebied\",\n  \"botlekregio\": \"botlekregio\",\n  \"botlekspoortunnel\": \"botlekspoortunnel\",\n  \"botsen\": \"bots\",\n  \"botsing\": \"botsing\",\n  \"botst\": \"botst\",\n  \"botsten\": \"botst\",\n  \"böttcher\": \"bottcher\",\n  \"bottelen\": \"bottel\",\n  \"bottines\": \"bottines\",\n  \"bottrop\": \"bottrop\",\n  \"botulisme\": \"botulism\",\n  \"botweg\": \"botweg\",\n  \"boud\": \"boud\",\n  \"boudeerde\": \"boudeerd\",\n  \"bouderen\": \"bouder\",\n  \"bouderie\": \"bouderie\",\n  \"boudewijnstichting\": \"boudewijnsticht\",\n  \"boudoir\": \"boudoir\",\n  \"bougie\": \"bougie\",\n  \"bouillon\": \"bouillon\",\n  \"bouman\": \"bouman\",\n  \"bouquetten\": \"bouquet\",\n  \"bourgeois\": \"bourgeois\",\n  \"bourgois\": \"bourgois\",\n  \"bourgondische\": \"bourgondisch\",\n  \"boutades\": \"boutades\",\n  \"bouteiller\": \"bouteiller\",\n  \"bouten\": \"bout\",\n  \"bouterse\": \"bouter\",\n  \"bouw\": \"bouw\",\n  \"bouwactiviteit\": \"bouwactiviteit\",\n  \"bouwactiviteiten\": \"bouwactiviteit\",\n  \"bouwadviesbureau\": \"bouwadviesbureau\",\n  \"bouwafval\": \"bouwafval\",\n  \"bouwbedrijf\": \"bouwbedrijf\",\n  \"bouwbedrijfsleven\": \"bouwbedrijfslev\",\n  \"bouwbedrijven\": \"bouwbedrijv\",\n  \"bouwbeleid\": \"bouwbeleid\",\n  \"bouwbesluit\": \"bouwbesluit\",\n  \"bouwbeurs\": \"bouwbeur\",\n  \"bouwbiologie\": \"bouwbiologie\",\n  \"bouwblokken\": \"bouwblok\",\n  \"bouwbond\": \"bouwbond\",\n  \"bouwbonden\": \"bouwbond\",\n  \"bouwcentrum\": \"bouwcentrum\",\n  \"bouwchemie\": \"bouwchemie\",\n  \"bouwconcern\": \"bouwconcern\",\n  \"bouwconcerns\": \"bouwconcern\",\n  \"bouwconcessies\": \"bouwconcessies\",\n  \"bouwconstructies\": \"bouwconstructies\",\n  \"bouwcontracten\": \"bouwcontract\",\n  \"bouwde\": \"bouwd\",\n  \"bouwdelen\": \"bouwdel\",\n  \"bouwden\": \"bouwd\",\n  \"bouwdichtheden\": \"bouwdicht\",\n  \"bouwdichtheid\": \"bouwdicht\",\n  \"bouwdienst\": \"bouwdienst\",\n  \"bouwelementen\": \"bouwelement\",\n  \"bouwen\": \"bouw\",\n  \"bouwende\": \"bouwend\",\n  \"bouwenginering\": \"bouwenginer\",\n  \"bouwer\": \"bouwer\",\n  \"bouwers\": \"bouwer\",\n  \"bouwfase\": \"bouwfas\",\n  \"bouwfolie\": \"bouwfolie\",\n  \"bouwfonds\": \"bouwfond\",\n  \"bouwfysisch\": \"bouwfysisch\",\n  \"bouwfysische\": \"bouwfysisch\",\n  \"bouwgolf\": \"bouwgolf\",\n  \"bouwgroep\": \"bouwgroep\",\n  \"bouwgroepen\": \"bouwgroep\",\n  \"bouwgrond\": \"bouwgrond\",\n  \"bouwindustrie\": \"bouwindustrie\",\n  \"bouwinformatie\": \"bouwinformatie\",\n  \"bouwkosten\": \"bouwkost\",\n  \"bouwkring\": \"bouwkring\",\n  \"bouwkunde\": \"bouwkund\",\n  \"bouwkundig\": \"bouwkund\",\n  \"bouwkundige\": \"bouwkund\",\n  \"bouwkwaliteit\": \"bouwkwaliteit\",\n  \"bouwland\": \"bouwland\",\n  \"bouwlocatie\": \"bouwlocatie\",\n  \"bouwlocaties\": \"bouwlocaties\",\n  \"bouwlokaties\": \"bouwlokaties\",\n  \"bouwman\": \"bouwman\",\n  \"bouwmarkt\": \"bouwmarkt\",\n  \"bouwmateriaal\": \"bouwmateriaal\",\n  \"bouwmateriaalkosten\": \"bouwmateriaalkost\",\n  \"bouwmaterialen\": \"bouwmaterial\",\n  \"bouwmaterialenleveranciers\": \"bouwmaterialenleverancier\",\n  \"bouwmaterieel\": \"bouwmaterieel\",\n  \"bouwmecc\": \"bouwmecc\",\n  \"bouwmethode\": \"bouwmethod\",\n  \"bouwministersconferentie\": \"bouwministersconferentie\",\n  \"bouwmogelijkheden\": \"bouwmog\",\n  \"bouwnijverheid\": \"bouwnijver\",\n  \"bouwondernemers\": \"bouwondernemer\",\n  \"bouwonderneming\": \"bouwondernem\",\n  \"bouwontwikkeling\": \"bouwontwikkel\",\n  \"bouwopdrachten\": \"bouwopdracht\",\n  \"bouwpartners\": \"bouwpartner\",\n  \"bouwplaats\": \"bouwplat\",\n  \"bouwplaatsen\": \"bouwplaats\",\n  \"bouwplan\": \"bouwplan\",\n  \"bouwplannen\": \"bouwplann\",\n  \"bouwproces\": \"bouwproces\",\n  \"bouwprodukten\": \"bouwprodukt\",\n  \"bouwproduktie\": \"bouwproduktie\",\n  \"bouwprognoses\": \"bouwprognoses\",\n  \"bouwprogramma\": \"bouwprogramma\",\n  \"bouwproject\": \"bouwproject\",\n  \"bouwprojecten\": \"bouwproject\",\n  \"bouwput\": \"bouwput\",\n  \"bouwrai\": \"bouwrai\",\n  \"bouwrecht\": \"bouwrecht\",\n  \"bouwrecyclingprijs\": \"bouwrecyclingprijs\",\n  \"bouwresearch\": \"bouwresearch\",\n  \"bouwrisico\": \"bouwrisico\",\n  \"bouwsector\": \"bouwsector\",\n  \"bouwsom\": \"bouwsom\",\n  \"bouwsteen\": \"bouwsten\",\n  \"bouwstenen\": \"bouwsten\",\n  \"bouwstof\": \"bouwstof\",\n  \"bouwstoffen\": \"bouwstoff\",\n  \"bouwstoffenbesluit\": \"bouwstoffenbesluit\",\n  \"bouwstop\": \"bouwstop\",\n  \"bouwsysteem\": \"bouwsystem\",\n  \"bouwt\": \"bouwt\",\n  \"bouwtechniek\": \"bouwtechniek\",\n  \"bouwtechnische\": \"bouwtechnisch\",\n  \"bouwtekeningen\": \"bouwteken\",\n  \"bouwterrein\": \"bouwterrein\",\n  \"bouwterreinen\": \"bouwterrein\",\n  \"bouwtijd\": \"bouwtijd\",\n  \"bouwvergunning\": \"bouwvergunn\",\n  \"bouwvergunningen\": \"bouwvergunn\",\n  \"bouwverordening\": \"bouwverorden\",\n  \"bouwverpakkingen\": \"bouwverpak\",\n  \"bouwvoorschriften\": \"bouwvoorschrift\",\n  \"bouwwereld\": \"bouwwereld\",\n  \"bouwwerk\": \"bouwwerk\",\n  \"bouwwerken\": \"bouwwerk\",\n  \"bouwwerkzaamheden\": \"bouwwerkzam\",\n  \"bouwwijze\": \"bouwwijz\",\n  \"bouwwijzen\": \"bouwwijz\",\n  \"bouwzaken\": \"bouwzak\",\n  \"bov\": \"bov\",\n  \"bovag\": \"bovag\",\n  \"bovagleden\": \"bovagled\",\n  \"boval\": \"boval\",\n  \"boven\": \"bov\",\n  \"bovenaan\": \"bovenan\",\n  \"bovenaf\": \"bovenaf\",\n  \"bovenafdichting\": \"bovenafdicht\",\n  \"bovenbandmagneet\": \"bovenbandmagnet\",\n  \"bovenbandmagneten\": \"bovenbandmagnet\",\n  \"bovenbouw\": \"bovenbouw\",\n  \"bovendien\": \"bovendien\",\n  \"bovendreef\": \"bovendref\",\n  \"bovengenoemde\": \"bovengenoemd\",\n  \"bovengrens\": \"bovengren\",\n  \"bovengrenzen\": \"bovengrenz\",\n  \"bovengrond\": \"bovengrond\",\n  \"bovengronds\": \"bovengrond\",\n  \"bovengrondse\": \"bovengrond\",\n  \"bovenhuis\": \"bovenhuis\",\n  \"bovenin\": \"bovenin\",\n  \"bovenkant\": \"bovenkant\",\n  \"bovenkerkerpolder\": \"bovenkerkerpolder\",\n  \"bovenkwadrant\": \"bovenkwadrant\",\n  \"bovenlaag\": \"bovenlag\",\n  \"bovenleidingen\": \"bovenleid\",\n  \"bovenliggende\": \"bovenligg\",\n  \"bovenlijven\": \"bovenlijv\",\n  \"bovenlip\": \"bovenlip\",\n  \"bovenloopkranen\": \"bovenloopkran\",\n  \"bovenmenselijk\": \"bovenmens\",\n  \"bovenmenselijke\": \"bovenmens\",\n  \"bovenop\": \"bovenop\",\n  \"bovenregionale\": \"bovenregional\",\n  \"bovenstaande\": \"bovenstaand\",\n  \"bovenste\": \"bovenst\",\n  \"bovenverdieping\": \"bovenverdiep\",\n  \"bovenwereldlijk\": \"bovenwereld\",\n  \"bovenwereldlijkheid\": \"bovenwereld\",\n  \"bovenwindse\": \"bovenwind\",\n  \"bovenzijde\": \"bovenzijd\",\n  \"bovine\": \"bovin\",\n  \"box\": \"box\",\n  \"boxel\": \"boxel\",\n  \"boxer\": \"boxer\",\n  \"boxmeer\": \"boxmer\",\n  \"boxtel\": \"boxtel\",\n  \"boy\": \"boy\",\n  \"boycot\": \"boycot\",\n  \"boycotaanvoerder\": \"boycotaanvoerder\",\n  \"boycotactie\": \"boycotactie\",\n  \"boycotten\": \"boycot\",\n  \"boycottende\": \"boycot\",\n  \"boze\": \"boz\",\n  \"bp\": \"bp\",\n  \"bpa\": \"bpa\",\n  \"bpb\": \"bpb\",\n  \"bpm\": \"bpm\",\n  \"bpw\": \"bpw\",\n  \"br\": \"br\",\n  \"braaf\": \"braf\",\n  \"braak\": \"brak\",\n  \"braakgelegde\": \"braakgelegd\",\n  \"braaklegging\": \"braaklegg\",\n  \"braakliggende\": \"braakligg\",\n  \"braakpercelen\": \"braakpercel\",\n  \"brabant\": \"brabant\",\n  \"brabanthallen\": \"brabanthall\",\n  \"brabants\": \"brabant\",\n  \"brabantse\": \"brabant\",\n  \"brachespecifiek\": \"brachespecifiek\",\n  \"bracht\": \"bracht\",\n  \"brachten\": \"bracht\",\n  \"bradford\": \"bradford\",\n  \"braer\": \"braer\",\n  \"brainliner\": \"brainliner\",\n  \"brak\": \"brak\",\n  \"braken\": \"brak\",\n  \"bralden\": \"brald\",\n  \"bram\": \"bram\",\n  \"bramen\": \"bram\",\n  \"branbantse\": \"branbant\",\n  \"branche\": \"branch\",\n  \"branchecentra\": \"branchecentra\",\n  \"branchegenoot\": \"branchegenot\",\n  \"branchegenoten\": \"branchegenot\",\n  \"brancheorganisatie\": \"brancheorganisatie\",\n  \"brancheorganisaties\": \"brancheorganisaties\",\n  \"brancheproject\": \"brancheproject\",\n  \"branches\": \"branches\",\n  \"branchevereniging\": \"brancheveren\",\n  \"brand\": \"brand\",\n  \"brandbaar\": \"brandbar\",\n  \"brandbare\": \"brandbar\",\n  \"brandbestrijdingsmaterialen\": \"brandbestrijdingsmaterial\",\n  \"brandde\": \"brand\",\n  \"brandebourgs\": \"brandebourg\",\n  \"branden\": \"brand\",\n  \"brandenburg\": \"brandenburg\",\n  \"brandend\": \"brandend\",\n  \"brandende\": \"brandend\",\n  \"brander\": \"brander\",\n  \"branderkop\": \"branderkop\",\n  \"branders\": \"brander\",\n  \"brandgangen\": \"brandgang\",\n  \"brandgevaar\": \"brandgevar\",\n  \"brandgevaarlijk\": \"brandgevar\",\n  \"brandhaarden\": \"brandhaard\",\n  \"brandhout\": \"brandhout\",\n  \"brandkraan\": \"brandkran\",\n  \"brandpaden\": \"brandpad\",\n  \"brandpunt\": \"brandpunt\",\n  \"brandschade\": \"brandschad\",\n  \"brandstof\": \"brandstof\",\n  \"brandstofaccijnzen\": \"brandstofaccijnz\",\n  \"brandstofbelasting\": \"brandstofbelast\",\n  \"brandstofbesparing\": \"brandstofbespar\",\n  \"brandstofcel\": \"brandstofcel\",\n  \"brandstofcellen\": \"brandstofcell\",\n  \"brandstofdepots\": \"brandstofdepot\",\n  \"brandstofefficiëntienormen\": \"brandstofefficientienorm\",\n  \"brandstoffen\": \"brandstoff\",\n  \"brandstoffenmarkt\": \"brandstoffenmarkt\",\n  \"brandstofffen\": \"brandstofff\",\n  \"brandstofgebruik\": \"brandstofgebruik\",\n  \"brandstofheffing\": \"brandstofheff\",\n  \"brandstofinkoop\": \"brandstofinkop\",\n  \"brandstofinzet\": \"brandstofinzet\",\n  \"brandstofkorrels\": \"brandstofkorrel\",\n  \"brandstofkosten\": \"brandstofkost\",\n  \"brandstofnormen\": \"brandstofnorm\",\n  \"brandstofolie\": \"brandstofolie\",\n  \"brandstofrendement\": \"brandstofrendement\",\n  \"brandstofstaven\": \"brandstofstav\",\n  \"brandstoftanks\": \"brandstoftank\",\n  \"brandstoftechnologieën\": \"brandstoftechnologieen\",\n  \"brandstoftekort\": \"brandstoftekort\",\n  \"brandstofverbruik\": \"brandstofverbruik\",\n  \"brandstofverbruiken\": \"brandstofverbruik\",\n  \"brandstofvoorziening\": \"brandstofvoorzien\",\n  \"brandt\": \"brandt\",\n  \"branduren\": \"brandur\",\n  \"brandveilige\": \"brandveil\",\n  \"brandveiligheidskasten\": \"brandveiligheidskast\",\n  \"brandvertager\": \"brandvertager\",\n  \"brandverzekeringen\": \"brandverzeker\",\n  \"brandweer\": \"brandwer\",\n  \"brandweerwagens\": \"brandweerwagen\",\n  \"brandwerend\": \"brandwer\",\n  \"brandwerende\": \"brandwer\",\n  \"brandwerendheid\": \"brandwer\",\n  \"brandwonden\": \"brandwond\",\n  \"brasem\": \"brasem\",\n  \"braunschweig\": \"braunschweig\",\n  \"brauwen\": \"brauw\",\n  \"brauws\": \"brauw\",\n  \"brave\": \"brav\",\n  \"braveren\": \"braver\",\n  \"bravo\": \"bravo\",\n  \"braziliaanse\": \"braziliaan\",\n  \"brazilië\": \"brazilie\",\n  \"brbs\": \"brbs\",\n  \"brd\": \"brd\",\n  \"brear\": \"brear\",\n  \"breda\": \"breda\",\n  \"bredaseweg\": \"bredaseweg\",\n  \"brede\": \"bred\",\n  \"breder\": \"breder\",\n  \"bredere\": \"breder\",\n  \"brederostraat\": \"brederostrat\",\n  \"breed\": \"bred\",\n  \"breedhalzige\": \"breedhalz\",\n  \"breeds\": \"bred\",\n  \"breedte\": \"breedt\",\n  \"breedtematen\": \"breedtemat\",\n  \"breedten\": \"breedt\",\n  \"breedvoerig\": \"breedvoer\",\n  \"breedwerkende\": \"breedwerk\",\n  \"breek\": \"brek\",\n  \"breekt\": \"breekt\",\n  \"breèkt\": \"breèkt\",\n  \"breet\": \"bret\",\n  \"breggen\": \"bregg\",\n  \"breidde\": \"breid\",\n  \"breidelen\": \"breidel\",\n  \"breiden\": \"breid\",\n  \"breidt\": \"breidt\",\n  \"brein\": \"brein\",\n  \"breiwerk\": \"breiwerk\",\n  \"breken\": \"brek\",\n  \"brekende\": \"brekend\",\n  \"breker\": \"breker\",\n  \"brekers\": \"breker\",\n  \"brekerzand\": \"brekerzand\",\n  \"breking\": \"breking\",\n  \"bremen\": \"brem\",\n  \"brend\": \"brend\",\n  \"breng\": \"breng\",\n  \"brengen\": \"breng\",\n  \"brengend\": \"brengend\",\n  \"brengende\": \"brengend\",\n  \"brengsysteem\": \"brengsystem\",\n  \"brengsystemen\": \"brengsystem\",\n  \"brengt\": \"brengt\",\n  \"brenn\": \"brenn\",\n  \"brennbare\": \"brennbar\",\n  \"brennstoffzelle\": \"brennstoffzell\",\n  \"brent\": \"brent\",\n  \"brentspar\": \"brentspar\",\n  \"bretagne\": \"bretagn\",\n  \"bretonse\": \"breton\",\n  \"breuken\": \"breuk\",\n  \"breydel\": \"breydel\",\n  \"brezet\": \"brezet\",\n  \"bricide\": \"bricid\",\n  \"bridge\": \"bridg\",\n  \"brie\": \"brie\",\n  \"brief\": \"brief\",\n  \"briefje\": \"briefj\",\n  \"briefjes\": \"briefjes\",\n  \"briefkaart\": \"briefkaart\",\n  \"briel\": \"briel\",\n  \"brielle\": \"briell\",\n  \"bries\": \"bries\",\n  \"briesende\": \"briesend\",\n  \"brieste\": \"briest\",\n  \"brieven\": \"briev\",\n  \"brievenactie\": \"brievenactie\",\n  \"brievenbesteller\": \"brievenbesteller\",\n  \"brievenbus\": \"brievenbus\",\n  \"brievencampagne\": \"brievencampagn\",\n  \"brievenpapier\": \"brievenpapier\",\n  \"brigade\": \"brigad\",\n  \"brij\": \"brij\",\n  \"briketten\": \"briket\",\n  \"brillant\": \"brillant\",\n  \"brillanten\": \"brillant\",\n  \"brindisi\": \"brindisi\",\n  \"brink\": \"brink\",\n  \"brinkman\": \"brinkman\",\n  \"brisée\": \"brisee\",\n  \"bristol\": \"bristol\",\n  \"brit\": \"brit\",\n  \"brite\": \"brit\",\n  \"britisch\": \"britisch\",\n  \"british\": \"british\",\n  \"brits\": \"brit\",\n  \"britse\": \"brit\",\n  \"brittannia\": \"brittannia\",\n  \"brittannië\": \"brittannie\",\n  \"britten\": \"brit\",\n  \"brive\": \"briv\",\n  \"brl\": \"brl\",\n  \"brno\": \"brno\",\n  \"broadcast\": \"broadcast\",\n  \"brocades\": \"brocades\",\n  \"broché\": \"broch\",\n  \"brochure\": \"brochur\",\n  \"brochures\": \"brochures\",\n  \"brocker\": \"brocker\",\n  \"broeder\": \"broeder\",\n  \"broederij\": \"broederij\",\n  \"broederlijk\": \"broeder\",\n  \"broederlijke\": \"broeder\",\n  \"broederlijkheid\": \"broeder\",\n  \"broeders\": \"broeder\",\n  \"broedparen\": \"broedpar\",\n  \"broedperiode\": \"broedperiod\",\n  \"broedpopulatie\": \"broedpopulatie\",\n  \"broedprogramma\": \"broedprogramma\",\n  \"broedseizoen\": \"broedseizoen\",\n  \"broedsels\": \"broedsel\",\n  \"broedvogel\": \"broedvogel\",\n  \"broedvogels\": \"broedvogel\",\n  \"broeide\": \"broeid\",\n  \"broeiende\": \"broeiend\",\n  \"broeikas\": \"broeikas\",\n  \"broeikaseffect\": \"broeikaseffect\",\n  \"broeikasgas\": \"broeikasgas\",\n  \"broeikasgassen\": \"broeikasgass\",\n  \"broeikasprobleem\": \"broeikasproblem\",\n  \"broeikastheorie\": \"broeikastheorie\",\n  \"broek\": \"broek\",\n  \"broekhuis\": \"broekhuis\",\n  \"broekluiers\": \"broekluier\",\n  \"broekpolder\": \"broekpolder\",\n  \"broer\": \"broer\",\n  \"broerius\": \"broerius\",\n  \"broers\": \"broer\",\n  \"broertje\": \"broertj\",\n  \"broertjes\": \"broertjes\",\n  \"brok\": \"brok\",\n  \"brokaat\": \"brokat\",\n  \"broken\": \"brok\",\n  \"brokkelde\": \"brokkeld\",\n  \"brokkelden\": \"brokkeld\",\n  \"brokkelen\": \"brokkel\",\n  \"brokkelt\": \"brokkelt\",\n  \"brokx\": \"brokx\",\n  \"brom\": \"brom\",\n  \"bromaat\": \"bromat\",\n  \"bromaatnorm\": \"bromaatnorm\",\n  \"bromaatretentie\": \"bromaatretentie\",\n  \"bromaatvorming\": \"bromaatvorm\",\n  \"bromde\": \"bromd\",\n  \"bromfietsen\": \"bromfiets\",\n  \"bromide\": \"bromid\",\n  \"brommen\": \"bromm\",\n  \"brommende\": \"brommend\",\n  \"brommig\": \"brommig\",\n  \"bromstem\": \"bromstem\",\n  \"bromt\": \"bromt\",\n  \"bromtoon\": \"bromton\",\n  \"bromvlieg\": \"bromvlieg\",\n  \"bron\": \"bron\",\n  \"bronaanpak\": \"bronaanpak\",\n  \"bronbeheersing\": \"bronbeheers\",\n  \"bronbemaling\": \"bronbemal\",\n  \"brongebied\": \"brongebied\",\n  \"bronnen\": \"bronn\",\n  \"bronnenmilieu\": \"bronnenmilieu\",\n  \"bronnenonderzoek\": \"bronnenonderzoek\",\n  \"bronwater\": \"bronwater\",\n  \"bronzen\": \"bronz\",\n  \"brood\": \"brod\",\n  \"broodje\": \"broodj\",\n  \"broodjes\": \"broodjes\",\n  \"broom\": \"brom\",\n  \"broomverbindingen\": \"broomverbind\",\n  \"broos\": \"bros\",\n  \"brosse\": \"bros\",\n  \"brouille\": \"brouill\",\n  \"brouilleren\": \"brouiller\",\n  \"brouillerie\": \"brouillerie\",\n  \"brouwde\": \"brouwd\",\n  \"brouwende\": \"brouwend\",\n  \"brouwer\": \"brouwer\",\n  \"brouwerij\": \"brouwerij\",\n  \"brouwerijen\": \"brouwerij\",\n  \"browder\": \"browder\",\n  \"brown\": \"brown\",\n  \"browning\": \"browning\",\n  \"broze\": \"broz\",\n  \"brp\": \"brp\",\n  \"brrrussel\": \"brrrussel\",\n  \"brück\": \"bruck\",\n  \"brug\": \"brug\",\n  \"brugge\": \"brugg\",\n  \"bruggeman\": \"bruggeman\",\n  \"bruggen\": \"brugg\",\n  \"brugman\": \"brugman\",\n  \"brugvorming\": \"brugvorm\",\n  \"brui\": \"brui\",\n  \"bruid\": \"bruid\",\n  \"bruidje\": \"bruidj\",\n  \"bruidsjapon\": \"bruidsjapon\",\n  \"bruidsluierstruiken\": \"bruidsluierstruik\",\n  \"bruidspaar\": \"bruidspar\",\n  \"bruijne\": \"bruijn\",\n  \"bruikbaar\": \"bruikbar\",\n  \"bruikbaarder\": \"bruikbaarder\",\n  \"bruikbaarheid\": \"bruikbar\",\n  \"bruikbare\": \"bruikbar\",\n  \"bruiloft\": \"bruiloft\",\n  \"bruiloften\": \"bruiloft\",\n  \"bruiloftsdagen\": \"bruiloftsdag\",\n  \"bruiloftspartij\": \"bruiloftspartij\",\n  \"bruiloftspartijen\": \"bruiloftspartij\",\n  \"bruiloftsvoorstellingen\": \"bruiloftsvoorstell\",\n  \"bruin\": \"bruin\",\n  \"bruinblonde\": \"bruinblond\",\n  \"bruinde\": \"bruind\",\n  \"bruine\": \"bruin\",\n  \"bruinen\": \"bruin\",\n  \"bruinende\": \"bruinend\",\n  \"bruingoed\": \"bruingoed\",\n  \"bruingoedsector\": \"bruingoedsector\",\n  \"bruingouden\": \"bruingoud\",\n  \"bruinhof\": \"bruinhof\",\n  \"bruiningen\": \"bruining\",\n  \"bruiningsapparatuur\": \"bruiningsapparatur\",\n  \"bruinkool\": \"bruinkol\",\n  \"bruinkoolcentrales\": \"bruinkoolcentrales\",\n  \"bruinkoolgebied\": \"bruinkoolgebied\",\n  \"bruinkoolmijn\": \"bruinkoolmijn\",\n  \"bruinkoolwinning\": \"bruinkoolwinn\",\n  \"bruinrot\": \"bruinrot\",\n  \"bruinrotuitbraak\": \"bruinrotuitbrak\",\n  \"bruinrotvrije\": \"bruinrotvrij\",\n  \"bruinsteen\": \"bruinsten\",\n  \"bruinvis\": \"bruinvis\",\n  \"bruinvissen\": \"bruinviss\",\n  \"bruis\": \"bruis\",\n  \"bruisende\": \"bruisend\",\n  \"bruiste\": \"bruist\",\n  \"brullen\": \"brull\",\n  \"brundlandt\": \"brundlandt\",\n  \"brunssum\": \"brunssum\",\n  \"brusk\": \"brusk\",\n  \"bruske\": \"brusk\",\n  \"bruskeerde\": \"bruskeerd\",\n  \"bruskeren\": \"brusker\",\n  \"brussel\": \"brussel\",\n  \"brusselse\": \"brussel\",\n  \"brutaal\": \"brutal\",\n  \"brutale\": \"brutal\",\n  \"brutaliteit\": \"brutaliteit\",\n  \"brute\": \"brut\",\n  \"bruten\": \"brut\",\n  \"brüter\": \"bruter\",\n  \"bruto\": \"bruto\",\n  \"bruusk\": \"bruusk\",\n  \"bruut\": \"brut\",\n  \"bruys\": \"bruy\",\n  \"bs\": \"bs\",\n  \"bsa\": \"bsa\",\n  \"bsb\": \"bsb\",\n  \"bse\": \"bse\",\n  \"bsi\": \"bsi\",\n  \"bsl\": \"bsl\",\n  \"bsn\": \"bsn\",\n  \"bst\": \"bst\",\n  \"bt\": \"bt\",\n  \"btg\": \"btg\",\n  \"btw\": \"btw\",\n  \"buana\": \"buana\",\n  \"bubbling\": \"bubbling\",\n  \"buck\": \"buck\",\n  \"bucks\": \"buck\",\n  \"budel\": \"budel\",\n  \"budelco\": \"budelco\",\n  \"buderus\": \"buderus\",\n  \"budget\": \"budget\",\n  \"budgetbeperkingen\": \"budgetbeperk\",\n  \"budgetoverschrijding\": \"budgetoverschrijd\",\n  \"budgettair\": \"budgettair\",\n  \"budgetten\": \"budget\",\n  \"buenos\": \"buenos\",\n  \"bueren\": \"buer\",\n  \"buffalo\": \"buffalo\",\n  \"buffer\": \"buffer\",\n  \"buffers\": \"buffer\",\n  \"bufferstroken\": \"bufferstrok\",\n  \"buffertanks\": \"buffertank\",\n  \"buffervat\": \"buffervat\",\n  \"buffervoorraden\": \"buffervoorrad\",\n  \"bufferzone\": \"bufferzon\",\n  \"buffet\": \"buffet\",\n  \"buggenum\": \"buggenum\",\n  \"bugm\": \"bugm\",\n  \"bührmann\": \"buhrmann\",\n  \"bui\": \"bui\",\n  \"buien\": \"bui\",\n  \"buig\": \"buig\",\n  \"buigen\": \"buig\",\n  \"buigende\": \"buigend\",\n  \"buiging\": \"buiging\",\n  \"buigingen\": \"buiging\",\n  \"buigsterkte\": \"buigsterkt\",\n  \"buigt\": \"buigt\",\n  \"buigzaam\": \"buigzam\",\n  \"buik\": \"buik\",\n  \"buiken\": \"buik\",\n  \"buikholte\": \"buikholt\",\n  \"building\": \"building\",\n  \"buining\": \"buining\",\n  \"buis\": \"buis\",\n  \"buisframe\": \"buisfram\",\n  \"buisje\": \"buisj\",\n  \"buisleiding\": \"buisleid\",\n  \"buisleidingen\": \"buisleid\",\n  \"buislengte\": \"buislengt\",\n  \"buismateriaal\": \"buismateriaal\",\n  \"buisreactor\": \"buisreactor\",\n  \"buisstukken\": \"buisstuk\",\n  \"buiswand\": \"buiswand\",\n  \"buit\": \"buit\",\n  \"buitelend\": \"buitel\",\n  \"buiten\": \"buit\",\n  \"buitenaf\": \"buitenaf\",\n  \"buitenbak\": \"buitenbak\",\n  \"buitenbeits\": \"buitenbeit\",\n  \"buitendijks\": \"buitendijk\",\n  \"buitendijkse\": \"buitendijk\",\n  \"buitengaats\": \"buitengat\",\n  \"buitengebied\": \"buitengebied\",\n  \"buitengebieden\": \"buitengebied\",\n  \"buitengebruikstelling\": \"buitengebruikstell\",\n  \"buitengesloten\": \"buitengeslot\",\n  \"buitengevelisolatie\": \"buitengevelisolatie\",\n  \"buitengewone\": \"buitengewon\",\n  \"buitengewoon\": \"buitengewon\",\n  \"buitengewoons\": \"buitengewon\",\n  \"buitenhof\": \"buitenhof\",\n  \"buitenkamp\": \"buitenkamp\",\n  \"buitenkansje\": \"buitenkansj\",\n  \"buitenkant\": \"buitenkant\",\n  \"buitenlaag\": \"buitenlag\",\n  \"buitenland\": \"buitenland\",\n  \"buitenlandbeleid\": \"buitenlandbeleid\",\n  \"buitenlanders\": \"buitenlander\",\n  \"buitenlands\": \"buitenland\",\n  \"buitenlandse\": \"buitenland\",\n  \"buitenlandtoets\": \"buitenlandtoet\",\n  \"buitenleven\": \"buitenlev\",\n  \"buitenlucht\": \"buitenlucht\",\n  \"buitenluchtmetingen\": \"buitenluchtmet\",\n  \"buitenmens\": \"buitenmen\",\n  \"buitenomtrek\": \"buitenomtrek\",\n  \"buitenruimte\": \"buitenruimt\",\n  \"buitenshuis\": \"buitenshuis\",\n  \"buitensporig\": \"buitenspor\",\n  \"buitenste\": \"buitenst\",\n  \"buitenveldert\": \"buitenveldert\",\n  \"buitenveldertbaan\": \"buitenveldertban\",\n  \"buitenverblijf\": \"buitenverblijf\",\n  \"buitenverlichting\": \"buitenverlicht\",\n  \"buitenwacht\": \"buitenwacht\",\n  \"buitenwater\": \"buitenwater\",\n  \"buitenweg\": \"buitenweg\",\n  \"buitenwegen\": \"buitenweg\",\n  \"buitenwereld\": \"buitenwereld\",\n  \"buitenwerkingstelling\": \"buitenwerkingstell\",\n  \"buitenwijken\": \"buitenwijk\",\n  \"buitenzorg\": \"buitenzorg\",\n  \"buizen\": \"buiz\",\n  \"buizenfabriek\": \"buizenfabriek\",\n  \"buizenlegbedrijven\": \"buizenlegbedrijv\",\n  \"buizenleggers\": \"buizenlegger\",\n  \"buizenstelsel\": \"buizenstelsel\",\n  \"buizerd\": \"buizerd\",\n  \"buizerds\": \"buizerd\",\n  \"bukken\": \"buk\",\n  \"bukte\": \"bukt\",\n  \"bukten\": \"bukt\",\n  \"bulder\": \"bulder\",\n  \"bulderde\": \"bulderd\",\n  \"bulderen\": \"bulder\",\n  \"bulderende\": \"bulder\",\n  \"bulderstem\": \"bulderstem\",\n  \"bulgaarse\": \"bulgar\",\n  \"bulgarije\": \"bulgarij\",\n  \"bulk\": \"bulk\",\n  \"bulkcarrier\": \"bulkcarrier\",\n  \"bulkchemie\": \"bulkchemie\",\n  \"bulkgoederen\": \"bulkgoeder\",\n  \"bulkstortverpakkingen\": \"bulkstortverpak\",\n  \"bulktanks\": \"bulktank\",\n  \"bulky\": \"bulky\",\n  \"bulletin\": \"bulletin\",\n  \"bultruggen\": \"bultrugg\",\n  \"bumax\": \"bumax\",\n  \"buna\": \"buna\",\n  \"bund\": \"bund\",\n  \"bunded\": \"bunded\",\n  \"bundel\": \"bundel\",\n  \"bundelden\": \"bundeld\",\n  \"bundelen\": \"bundel\",\n  \"bundeling\": \"bundel\",\n  \"bundelt\": \"bundelt\",\n  \"bundesfinanzhof\": \"bundesfinanzhof\",\n  \"bundesverbandes\": \"bundesverbandes\",\n  \"bündis\": \"bundis\",\n  \"bündnis\": \"bundnis\",\n  \"bungalows\": \"bungalow\",\n  \"bunkeren\": \"bunker\",\n  \"bunkerschepen\": \"bunkerschep\",\n  \"bunnik\": \"bunnik\",\n  \"bunschoten\": \"bunschot\",\n  \"bureau\": \"bureau\",\n  \"bureaucratie\": \"bureaucratie\",\n  \"bureaucratische\": \"bureaucratisch\",\n  \"bureaufunctie\": \"bureaufunctie\",\n  \"bureaus\": \"bureaus\",\n  \"bureausoftware\": \"bureausoftwar\",\n  \"bureaustoel\": \"bureaustoel\",\n  \"bureaustoelen\": \"bureaustoel\",\n  \"buren\": \"bur\",\n  \"burg\": \"burg\",\n  \"burgemeester\": \"burgemeester\",\n  \"burgemeesterlijk\": \"burgemeester\",\n  \"burgemeesters\": \"burgemeester\",\n  \"burger\": \"burger\",\n  \"burgerfamilie\": \"burgerfamilie\",\n  \"bürgerinitiative\": \"burgerinitiativ\",\n  \"burgerkleding\": \"burgerkled\",\n  \"burgerlijk\": \"burger\",\n  \"bùrgerlijk\": \"bùrgerlijk\",\n  \"burgerlijke\": \"burger\",\n  \"burgerlijks\": \"burger\",\n  \"burgerluchtvaart\": \"burgerluchtvaart\",\n  \"burgermannen\": \"burgermann\",\n  \"burgeroorlog\": \"burgeroorlog\",\n  \"burgers\": \"burger\",\n  \"burgerschool\": \"burgerschol\",\n  \"burgervliegtuigen\": \"burgervliegtu\",\n  \"burgervluchten\": \"burgervlucht\",\n  \"burgervoeten\": \"burgervoet\",\n  \"burgervrouw\": \"burgervrouw\",\n  \"burgerwindmolenpark\": \"burgerwindmolenpark\",\n  \"burginvest\": \"burginvest\",\n  \"bus\": \"bus\",\n  \"busbaan\": \"busban\",\n  \"busbanen\": \"busban\",\n  \"busbord\": \"busbord\",\n  \"busfabrikant\": \"busfabrikant\",\n  \"bushalte\": \"bushalt\",\n  \"bushehr\": \"bushehr\",\n  \"business\": \"busines\",\n  \"businessbos\": \"businessbos\",\n  \"businesspraktijken\": \"businesspraktijk\",\n  \"busje\": \"busj\",\n  \"busjes\": \"busjes\",\n  \"busondernemingen\": \"busondernem\",\n  \"busprojecten\": \"busproject\",\n  \"bussel\": \"bussel\",\n  \"bussen\": \"buss\",\n  \"bussiness\": \"bussines\",\n  \"busstation\": \"busstation\",\n  \"buste\": \"bust\",\n  \"bustunnel\": \"bustunnel\",\n  \"busvloot\": \"busvlot\",\n  \"but\": \"but\",\n  \"butaan\": \"butan\",\n  \"butadieen\": \"butadieen\",\n  \"butanol\": \"butanol\",\n  \"butler\": \"butler\",\n  \"butylfenol\": \"butylfenol\",\n  \"butyltinverbindingen\": \"butyltinverbind\",\n  \"buur\": \"bur\",\n  \"buuren\": \"bur\",\n  \"buurgebied\": \"buurgebied\",\n  \"buurgeluiden\": \"buurgeluid\",\n  \"buurgemeente\": \"buurgemeent\",\n  \"buurgemeenten\": \"buurgemeent\",\n  \"buurland\": \"buurland\",\n  \"buurlanden\": \"buurland\",\n  \"buurman\": \"buurman\",\n  \"buurt\": \"buurt\",\n  \"buurtbewoners\": \"buurtbewoner\",\n  \"buurtbewoonster\": \"buurtbewoonster\",\n  \"buurtcomitees\": \"buurtcomites\",\n  \"buurten\": \"buurt\",\n  \"buurtschap\": \"buurtschap\",\n  \"buurtvervoer\": \"buurtvervoer\",\n  \"bv\": \"bv\",\n  \"bvnn\": \"bvnn\",\n  \"bvqi\": \"bvqi\",\n  \"bvr\": \"bvr\",\n  \"bwt\": \"bwt\",\n  \"by\": \"by\",\n  \"bygholm\": \"bygholm\",\n  \"bzw\": \"bzw\",\n  \"c\": \"c\",\n  \"ca\": \"ca\",\n  \"cabine\": \"cabin\",\n  \"cabines\": \"cabines\",\n  \"cabochon\": \"cabochon\",\n  \"cacaobonen\": \"cacaobon\",\n  \"cacaobonendoppen\": \"cacaobonendopp\",\n  \"cachemire\": \"cachemir\",\n  \"cad\": \"cad\",\n  \"cadarache\": \"cadarach\",\n  \"caddet\": \"caddet\",\n  \"cadeau\": \"cadeau\",\n  \"cadeautje\": \"cadeautj\",\n  \"cadeaux\": \"cadeaux\",\n  \"cadillacs\": \"cadillac\",\n  \"cadiz\": \"cadiz\",\n  \"cadmium\": \"cadmium\",\n  \"cadmiumbesluit\": \"cadmiumbesluit\",\n  \"cadmiumgehalte\": \"cadmiumgehalt\",\n  \"cadmiumhoudend\": \"cadmiumhoud\",\n  \"cadmiumhoudende\": \"cadmiumhoud\",\n  \"cadmiumstof\": \"cadmiumstof\",\n  \"cadmiumverbindingen\": \"cadmiumverbind\",\n  \"cadmiumvrije\": \"cadmiumvrij\",\n  \"caep\": \"caep\",\n  \"caepi\": \"caepi\",\n  \"café\": \"caf\",\n  \"cafés\": \"cafes\",\n  \"cafetaria\": \"cafetaria\",\n  \"cairo\": \"cairo\",\n  \"caisson\": \"caisson\",\n  \"cake\": \"cak\",\n  \"calamiteit\": \"calamiteit\",\n  \"calamiteiten\": \"calamiteit\",\n  \"caland\": \"caland\",\n  \"calcium\": \"calcium\",\n  \"calciumcarbonaat\": \"calciumcarbonat\",\n  \"calciumchloride\": \"calciumchlorid\",\n  \"calciumcyanide\": \"calciumcyanid\",\n  \"calciumsulfaat\": \"calciumsulfat\",\n  \"calciumzout\": \"calciumzout\",\n  \"calculatiemethode\": \"calculatiemethod\",\n  \"calder\": \"calder\",\n  \"calgene\": \"calg\",\n  \"calibratiemogelijkheid\": \"calibratiemog\",\n  \"california\": \"california\",\n  \"californië\": \"californie\",\n  \"californische\": \"californisch\",\n  \"callantsoog\": \"callantsog\",\n  \"calorisch\": \"calorisch\",\n  \"calorische\": \"calorisch\",\n  \"cambridge\": \"cambridg\",\n  \"camembert\": \"camembert\",\n  \"camera\": \"camera\",\n  \"camerabewaking\": \"camerabewak\",\n  \"camp\": \"camp\",\n  \"campagne\": \"campagn\",\n  \"campagneleider\": \"campagneleider\",\n  \"campagnes\": \"campagnes\",\n  \"campen\": \"camp\",\n  \"camphuysen\": \"camphuys\",\n  \"camping\": \"camping\",\n  \"campinggasten\": \"campinggast\",\n  \"campinghouder\": \"campinghouder\",\n  \"campings\": \"camping\",\n  \"camplas\": \"camplas\",\n  \"camus\": \"camus\",\n  \"can\": \"can\",\n  \"canada\": \"canada\",\n  \"canadees\": \"canades\",\n  \"canadese\": \"canades\",\n  \"canapé\": \"canap\",\n  \"canarische\": \"canarisch\",\n  \"cancer\": \"cancer\",\n  \"candidaat\": \"candidat\",\n  \"candidaats\": \"candidat\",\n  \"candybar\": \"candybar\",\n  \"candybars\": \"candybar\",\n  \"canedian\": \"canedian\",\n  \"canisius\": \"canisius\",\n  \"canon\": \"canon\",\n  \"cantabro\": \"cantabro\",\n  \"canyon\": \"canyon\",\n  \"cao\": \"cao\",\n  \"cap\": \"cap\",\n  \"capaciteit\": \"capaciteit\",\n  \"capaciteiten\": \"capaciteit\",\n  \"capaciteitsoverwegingen\": \"capaciteitsoverweg\",\n  \"capaciteitsprobleem\": \"capaciteitsproblem\",\n  \"capaciteitsproblemen\": \"capaciteitsproblem\",\n  \"capaciteitsregeling\": \"capaciteitsregel\",\n  \"capaciteitsuitbreiding\": \"capaciteitsuitbreid\",\n  \"capelle\": \"capell\",\n  \"caprolactam\": \"caprolactam\",\n  \"capstone\": \"capston\",\n  \"car\": \"car\",\n  \"cara\": \"cara\",\n  \"caravans\": \"caravan\",\n  \"carbamaten\": \"carbamat\",\n  \"carbide\": \"carbid\",\n  \"carbolineum\": \"carbolineum\",\n  \"carbomix\": \"carbomix\",\n  \"carbonaat\": \"carbonat\",\n  \"carbonate\": \"carbonat\",\n  \"carborat\": \"carborat\",\n  \"carburos\": \"carburos\",\n  \"carcinogeen\": \"carcinogen\",\n  \"carcinogene\": \"carcinog\",\n  \"carcinogenen\": \"carcinogen\",\n  \"carcinogeniteit\": \"carcinogeniteit\",\n  \"carcoke\": \"carcok\",\n  \"card\": \"card\",\n  \"cardigan\": \"cardigan\",\n  \"cardoso\": \"cardoso\",\n  \"care\": \"car\",\n  \"caribisch\": \"caribisch\",\n  \"carl\": \"carl\",\n  \"carlo\": \"carlo\",\n  \"carlton\": \"carlton\",\n  \"carolientje\": \"carolientj\",\n  \"carolina\": \"carolina\",\n  \"caroline\": \"carolin\",\n  \"caroteen\": \"caroten\",\n  \"carpentras\": \"carpentras\",\n  \"carpet\": \"carpet\",\n  \"carpoolen\": \"carpol\",\n  \"carpooler\": \"carpooler\",\n  \"carpoolplaats\": \"carpoolplat\",\n  \"carpoolplek\": \"carpoolplek\",\n  \"carré\": \"carr\",\n  \"carrée\": \"carree\",\n  \"carrière\": \"carrièr\",\n  \"carrièremakers\": \"carrièremaker\",\n  \"carriers\": \"carrier\",\n  \"carrosserie\": \"carrosserie\",\n  \"carrot\": \"carrot\",\n  \"carrouselreactor\": \"carrouselreactor\",\n  \"carry\": \"carry\",\n  \"cars\": \"car\",\n  \"carsouw\": \"carsouw\",\n  \"carteringsbedrijf\": \"carteringsbedrijf\",\n  \"carver\": \"carver\",\n  \"casablanca\": \"casablanca\",\n  \"casac\": \"casac\",\n  \"cascade\": \"cascad\",\n  \"cascaderende\": \"cascader\",\n  \"case\": \"cas\",\n  \"casestudies\": \"casestudies\",\n  \"cash\": \"cash\",\n  \"cashflow\": \"cashflow\",\n  \"casino\": \"casino\",\n  \"cask\": \"cask\",\n  \"casks\": \"cask\",\n  \"cassatie\": \"cassatie\",\n  \"cassetterecorders\": \"cassetterecorder\",\n  \"castenray\": \"castenray\",\n  \"casting\": \"casting\",\n  \"castle\": \"castl\",\n  \"castleford\": \"castleford\",\n  \"casus\": \"casus\",\n  \"catalaanse\": \"catalan\",\n  \"catalase\": \"catalas\",\n  \"catalloy\": \"catalloy\",\n  \"catalonië\": \"catalonie\",\n  \"catalunya\": \"catalunya\",\n  \"catalytical\": \"catalytical\",\n  \"catalytische\": \"catalytisch\",\n  \"catastrofaal\": \"catastrofal\",\n  \"catastrofe\": \"catastrof\",\n  \"cateau\": \"cateau\",\n  \"categorie\": \"categorie\",\n  \"categorieën\": \"categorieen\",\n  \"categoriën\": \"categorien\",\n  \"cateringspullen\": \"cateringspull\",\n  \"caterpillar\": \"caterpillar\",\n  \"catherine\": \"catherin\",\n  \"cauberg\": \"cauberg\",\n  \"cauchemar\": \"cauchemar\",\n  \"causerie\": \"causerie\",\n  \"causeur\": \"causeur\",\n  \"cavalier\": \"cavalier\",\n  \"caviteiten\": \"caviteit\",\n  \"cbl\": \"cbl\",\n  \"cbot\": \"cbot\",\n  \"cbs\": \"cbs\",\n  \"cbt\": \"cbt\",\n  \"cclb\": \"cclb\",\n  \"ccr\": \"ccr\",\n  \"cd\": \"cd\",\n  \"cda\": \"cda\",\n  \"cdem\": \"cdem\",\n  \"cdm\": \"cdm\",\n  \"ce\": \"ce\",\n  \"cea\": \"cea\",\n  \"cebeson\": \"cebeson\",\n  \"ced\": \"ced\",\n  \"ceder\": \"ceder\",\n  \"cédigaz\": \"cedigaz\",\n  \"ceec\": \"cec\",\n  \"ceem\": \"cem\",\n  \"cees\": \"ces\",\n  \"cefic\": \"cefic\",\n  \"cehave\": \"cehav\",\n  \"ceja\": \"ceja\",\n  \"cel\": \"cel\",\n  \"celanese\": \"celanes\",\n  \"celfix\": \"celfix\",\n  \"cell\": \"cell\",\n  \"cellagen\": \"cellag\",\n  \"cellcrete\": \"cellcret\",\n  \"celle\": \"cell\",\n  \"cellen\": \"cell\",\n  \"cellofaan\": \"cellofan\",\n  \"cellulair\": \"cellulair\",\n  \"cellulose\": \"cellulos\",\n  \"celotex\": \"celotex\",\n  \"celregulatie\": \"celregulatie\",\n  \"celsius\": \"celsius\",\n  \"celstoffabriek\": \"celstoffabriek\",\n  \"celstraffen\": \"celstraff\",\n  \"cemagref\": \"cemagref\",\n  \"cement\": \"cement\",\n  \"cementbeton\": \"cementbeton\",\n  \"cementbouw\": \"cementbouw\",\n  \"cementfabriek\": \"cementfabriek\",\n  \"cementindustrie\": \"cementindustrie\",\n  \"cementovens\": \"cementoven\",\n  \"cemfuel\": \"cemfuel\",\n  \"cemo\": \"cemo\",\n  \"cen\": \"cen\",\n  \"cent\": \"cent\",\n  \"centano\": \"centano\",\n  \"centen\": \"cent\",\n  \"centenary\": \"centenary\",\n  \"centeno\": \"centeno\",\n  \"center\": \"center\",\n  \"centimeter\": \"centimeter\",\n  \"centimeters\": \"centimeter\",\n  \"centra\": \"centra\",\n  \"centraal\": \"central\",\n  \"central\": \"central\",\n  \"centrale\": \"central\",\n  \"centrales\": \"centrales\",\n  \"centraliseren\": \"centraliser\",\n  \"centravac\": \"centravac\",\n  \"centre\": \"centr\",\n  \"centrifloc\": \"centrifloc\",\n  \"centrifugaal\": \"centrifugal\",\n  \"centrifugaalkoelmachines\": \"centrifugaalkoelmachines\",\n  \"centrifugaalpompen\": \"centrifugaalpomp\",\n  \"centrifugal\": \"centrifugal\",\n  \"centrifuge\": \"centrifug\",\n  \"centrifugeproeven\": \"centrifugeproev\",\n  \"centrifugering\": \"centrifuger\",\n  \"centrifuges\": \"centrifuges\",\n  \"centrilab\": \"centrilab\",\n  \"centrum\": \"centrum\",\n  \"centrumgemeente\": \"centrumgemeent\",\n  \"century\": \"century\",\n  \"cepec\": \"cepec\",\n  \"cera\": \"cera\",\n  \"ceralia\": \"ceralia\",\n  \"cercariën\": \"cercarien\",\n  \"cerebrale\": \"cerebral\",\n  \"ceremonie\": \"ceremonie\",\n  \"ceremoniële\": \"ceremoniel\",\n  \"ceremoniëler\": \"ceremonieler\",\n  \"cerestar\": \"cerestar\",\n  \"cerf\": \"cerf\",\n  \"ceri\": \"ceri\",\n  \"cerium\": \"cerium\",\n  \"ceriumsulfide\": \"ceriumsulfid\",\n  \"cerro\": \"cerro\",\n  \"certificaat\": \"certificat\",\n  \"certificaathouders\": \"certificaathouder\",\n  \"certificaten\": \"certificat\",\n  \"certificatie\": \"certificatie\",\n  \"certificaties\": \"certificaties\",\n  \"certificatiesystematiek\": \"certificatiesystematiek\",\n  \"certificatietrajecten\": \"certificatietraject\",\n  \"certification\": \"certification\",\n  \"certificeerder\": \"certificeerder\",\n  \"certificeerders\": \"certificeerder\",\n  \"certificeert\": \"certificeert\",\n  \"certificeren\": \"certificer\",\n  \"certificerende\": \"certificer\",\n  \"certificering\": \"certificer\",\n  \"certificeringen\": \"certificer\",\n  \"certificerings\": \"certificer\",\n  \"certiva\": \"certiva\",\n  \"cesium\": \"cesium\",\n  \"cetera\": \"cetera\",\n  \"ceti\": \"ceti\",\n  \"cevardo\": \"cevardo\",\n  \"ceylon\": \"ceylon\",\n  \"cez\": \"cez\",\n  \"cf\": \"cf\",\n  \"cfce\": \"cfce\",\n  \"cff\": \"cff\",\n  \"cfk\": \"cfk\",\n  \"cfo\": \"cfo\",\n  \"cgmps\": \"cgmps\",\n  \"cgs\": \"cgs\",\n  \"ch\": \"ch\",\n  \"chadronnier\": \"chadronnier\",\n  \"chain\": \"chain\",\n  \"chaise\": \"chais\",\n  \"chaiselongue\": \"chaiselongue\",\n  \"challenger\": \"challenger\",\n  \"challenges\": \"challenges\",\n  \"chambercloak\": \"chambercloak\",\n  \"chambertin\": \"chambertin\",\n  \"chambrée\": \"chambree\",\n  \"chamonix\": \"chamonix\",\n  \"champagne\": \"champagn\",\n  \"champagnefles\": \"champagnefles\",\n  \"champignonkweker\": \"champignonkweker\",\n  \"champignonkwekersvereniging\": \"champignonkwekersveren\",\n  \"champignonmest\": \"champignonmest\",\n  \"champignons\": \"champignon\",\n  \"champignonsector\": \"champignonsector\",\n  \"champignonteelt\": \"champignonteelt\",\n  \"champignontelers\": \"champignonteler\",\n  \"champion\": \"champion\",\n  \"champy\": \"champy\",\n  \"chan\": \"chan\",\n  \"chance\": \"chanc\",\n  \"change\": \"chang\",\n  \"changes\": \"changes\",\n  \"chantage\": \"chantag\",\n  \"chaos\": \"chaos\",\n  \"chaperonneren\": \"chaperonner\",\n  \"characterisation\": \"characterisation\",\n  \"charette\": \"charet\",\n  \"charge\": \"charg\",\n  \"charles\": \"charles\",\n  \"charmant\": \"charmant\",\n  \"charmante\": \"charmant\",\n  \"charme\": \"charm\",\n  \"charrette\": \"charret\",\n  \"chassis\": \"chassis\",\n  \"chauffeur\": \"chauffeur\",\n  \"chauffeurs\": \"chauffeur\",\n  \"chauffeurscabine\": \"chauffeurscabin\",\n  \"chaussée\": \"chaussee\",\n  \"chcl\": \"chcl\",\n  \"check\": \"check\",\n  \"checklijst\": \"checklijst\",\n  \"checklist\": \"checklist\",\n  \"chef\": \"chef\",\n  \"chelaat\": \"chelat\",\n  \"chem\": \"chem\",\n  \"chemaide\": \"chemaid\",\n  \"chemarbel\": \"chemarbel\",\n  \"chemconserve\": \"chemconserv\",\n  \"chemferm\": \"chemferm\",\n  \"chemflash\": \"chemflash\",\n  \"chemical\": \"chemical\",\n  \"chemicaliën\": \"chemicalien\",\n  \"chemicaliëncontainers\": \"chemicaliencontainer\",\n  \"chemicaliëngroep\": \"chemicaliengroep\",\n  \"chemicals\": \"chemical\",\n  \"chemici\": \"chemici\",\n  \"chemicus\": \"chemicus\",\n  \"chemie\": \"chemie\",\n  \"chemiebedrijven\": \"chemiebedrijv\",\n  \"chemieconcern\": \"chemieconcern\",\n  \"chemieconcerns\": \"chemieconcern\",\n  \"chemiegroep\": \"chemiegroep\",\n  \"chemiekaartenboek\": \"chemiekaartenboek\",\n  \"chemielinco\": \"chemielinco\",\n  \"chemiesector\": \"chemiesector\",\n  \"chemiewinkel\": \"chemiewinkel\",\n  \"chemisch\": \"chemisch\",\n  \"chemische\": \"chemisch\",\n  \"chemischen\": \"chemisch\",\n  \"chemisches\": \"chemisches\",\n  \"chemoboxen\": \"chemobox\",\n  \"chemocar\": \"chemocar\",\n  \"chems\": \"chem\",\n  \"cheshire\": \"cheshir\",\n  \"chevelure\": \"chevelur\",\n  \"chiba\": \"chiba\",\n  \"chic\": \"chic\",\n  \"chicago\": \"chicago\",\n  \"chicken\": \"chick\",\n  \"chiffonnières\": \"chiffonnières\",\n  \"chili\": \"chili\",\n  \"chimie\": \"chimie\",\n  \"chimneying\": \"chimney\",\n  \"china\": \"china\",\n  \"chinees\": \"chines\",\n  \"chinese\": \"chines\",\n  \"chinezen\": \"chinez\",\n  \"chip\": \"chip\",\n  \"chipkaart\": \"chipkaart\",\n  \"chips\": \"chip\",\n  \"chique\": \"chique\",\n  \"chirac\": \"chirac\",\n  \"chitine\": \"chitin\",\n  \"chloor\": \"chlor\",\n  \"chlooraromaten\": \"chlooraromat\",\n  \"chloorazijnzuur\": \"chloorazijnzur\",\n  \"chloorbalans\": \"chloorbalan\",\n  \"chloorbalansstudie\": \"chloorbalansstudie\",\n  \"chloorbeleid\": \"chloorbeleid\",\n  \"chloorbenzeen\": \"chloorbenzen\",\n  \"chloorchemie\": \"chloorchemie\",\n  \"chloorconcentratie\": \"chloorconcentratie\",\n  \"chloorconversie\": \"chloorconversie\",\n  \"chloordioxyde\": \"chloordioxyd\",\n  \"chloorfabriek\": \"chloorfabriek\",\n  \"chloorgas\": \"chloorgas\",\n  \"chloorgebruik\": \"chloorgebruik\",\n  \"chloorgebruikers\": \"chloorgebruiker\",\n  \"chloorhoudend\": \"chloorhoud\",\n  \"chloorhoudende\": \"chloorhoud\",\n  \"chloorindustrie\": \"chloorindustrie\",\n  \"chloorketen\": \"chloorket\",\n  \"chloorketenstudie\": \"chloorketenstudie\",\n  \"chloorkoolwaterstoffen\": \"chloorkoolwaterstoff\",\n  \"chloorkringloop\": \"chloorkringlop\",\n  \"chloorloos\": \"chloorlos\",\n  \"chloormethanen\": \"chloormethan\",\n  \"chloormicro\": \"chloormicro\",\n  \"chlooroxyden\": \"chlooroxyd\",\n  \"chloorprocessen\": \"chloorprocess\",\n  \"chloorprodukten\": \"chloorprodukt\",\n  \"chloorrecycling\": \"chloorrecycl\",\n  \"chloorstoffen\": \"chloorstoff\",\n  \"chloorstudie\": \"chloorstudie\",\n  \"chloortreinen\": \"chloortrein\",\n  \"chloorverbindingen\": \"chloorverbind\",\n  \"chloorverwerkende\": \"chloorverwerk\",\n  \"chloorvrij\": \"chloorvrij\",\n  \"chloorvrije\": \"chloorvrij\",\n  \"chloreerprocessen\": \"chloreerprocess\",\n  \"chloreren\": \"chlorer\",\n  \"chloride\": \"chlorid\",\n  \"chlorideionen\": \"chlorideion\",\n  \"chloridemetingen\": \"chloridemet\",\n  \"chlorinated\": \"chlorinated\",\n  \"chlorine\": \"chlorin\",\n  \"chloroform\": \"chloroform\",\n  \"chloroplasten\": \"chloroplast\",\n  \"chock\": \"chock\",\n  \"chocoladerepen\": \"chocoladerep\",\n  \"cholera\": \"cholera\",\n  \"choqueerde\": \"choqueerd\",\n  \"chriet\": \"chriet\",\n  \"chris\": \"chris\",\n  \"christelijke\": \"christelijk\",\n  \"christine\": \"christin\",\n  \"christopher\": \"christopher\",\n  \"chromatografie\": \"chromatografie\",\n  \"chromatografisch\": \"chromatografisch\",\n  \"chromolitografie\": \"chromolitografie\",\n  \"chronisch\": \"chronisch\",\n  \"chronische\": \"chronisch\",\n  \"chroom\": \"chrom\",\n  \"chroomafval\": \"chroomafval\",\n  \"chroombad\": \"chroombad\",\n  \"chroombevattende\": \"chroombevat\",\n  \"chroomemissie\": \"chroomemissie\",\n  \"chroomemissies\": \"chroomemissies\",\n  \"chroomhoudende\": \"chroomhoud\",\n  \"chroomhydroxide\": \"chroomhydroxid\",\n  \"chroomleer\": \"chroomler\",\n  \"chroomtrioxyde\": \"chroomtrioxyd\",\n  \"chrysanten\": \"chrysant\",\n  \"chrysantentelers\": \"chrysantenteler\",\n  \"chrysoliet\": \"chrysoliet\",\n  \"cht\": \"cht\",\n  \"chtt\": \"chtt\",\n  \"chubut\": \"chubut\",\n  \"chute\": \"chut\",\n  \"chv\": \"chv\",\n  \"chymozine\": \"chymozin\",\n  \"chymozinebacterie\": \"chymozinebacterie\",\n  \"cia\": \"cia\",\n  \"ciba\": \"ciba\",\n  \"cielp\": \"cielp\",\n  \"cijfermateriaal\": \"cijfermateriaal\",\n  \"cijfers\": \"cijfer\",\n  \"cilinder\": \"cilinder\",\n  \"cilinders\": \"cilinder\",\n  \"cilindrische\": \"cilindrisch\",\n  \"cimi\": \"cimi\",\n  \"cini\": \"cini\",\n  \"cip\": \"cip\",\n  \"circa\": \"circa\",\n  \"circuit\": \"circuit\",\n  \"circulaire\": \"circulair\",\n  \"circulatiesysteem\": \"circulatiesystem\",\n  \"circulating\": \"circulat\",\n  \"circuleert\": \"circuleert\",\n  \"circulerend\": \"circuler\",\n  \"circus\": \"circus\",\n  \"cirkel\": \"cirkel\",\n  \"cirkelde\": \"cirkeld\",\n  \"cirkelden\": \"cirkeld\",\n  \"cirkelende\": \"cirkel\",\n  \"cirkeling\": \"cirkel\",\n  \"cirkelmaaiers\": \"cirkelmaaier\",\n  \"cirkels\": \"cirkel\",\n  \"cirque\": \"cirque\",\n  \"citeerde\": \"citeerd\",\n  \"cites\": \"cites\",\n  \"citex\": \"citex\",\n  \"citizen\": \"citiz\",\n  \"citroen\": \"citroen\",\n  \"citroën\": \"citroen\",\n  \"citroënfabriek\": \"citroenfabriek\",\n  \"citrusplantages\": \"citrusplantages\",\n  \"cittershaven\": \"cittershav\",\n  \"city\": \"city\",\n  \"citybac\": \"citybac\",\n  \"citybacs\": \"citybac\",\n  \"citybus\": \"citybus\",\n  \"cityspot\": \"cityspot\",\n  \"civiel\": \"civiel\",\n  \"civiele\": \"civiel\",\n  \"civielrechtelijke\": \"civielrecht\",\n  \"civieltechniek\": \"civieltechniek\",\n  \"civieltechnisch\": \"civieltechnisch\",\n  \"civieltechnische\": \"civieltechnisch\",\n  \"civil\": \"civil\",\n  \"ciwem\": \"ciwem\",\n  \"ciwi\": \"ciwi\",\n  \"cizeleert\": \"cizeleert\",\n  \"ckw\": \"ckw\",\n  \"claim\": \"claim\",\n  \"claimen\": \"claim\",\n  \"claims\": \"claim\",\n  \"claimt\": \"claimt\",\n  \"clairtech\": \"clairtech\",\n  \"clappison\": \"clappison\",\n  \"clark\": \"clark\",\n  \"class\": \"clas\",\n  \"classens\": \"classen\",\n  \"classificatie\": \"classificatie\",\n  \"classificaties\": \"classificaties\",\n  \"classificatietechnieken\": \"classificatietechniek\",\n  \"classified\": \"classified\",\n  \"clausplain\": \"clausplain\",\n  \"clausule\": \"clausul\",\n  \"clayton\": \"clayton\",\n  \"clb\": \"clb\",\n  \"clean\": \"clean\",\n  \"cleanaways\": \"cleanaway\",\n  \"cleaner\": \"cleaner\",\n  \"cleaning\": \"cleaning\",\n  \"cleanroom\": \"cleanrom\",\n  \"clear\": \"clear\",\n  \"clenbuterol\": \"clenbuterol\",\n  \"cleveland\": \"cleveland\",\n  \"climate\": \"climat\",\n  \"climatic\": \"climatic\",\n  \"climax\": \"climax\",\n  \"climex\": \"climex\",\n  \"clinton\": \"clinton\",\n  \"clio\": \"clio\",\n  \"clip\": \"clip\",\n  \"clm\": \"clm\",\n  \"clogtype\": \"clogtyp\",\n  \"cloppenburg\": \"cloppenburg\",\n  \"clortoluron\": \"clortoluron\",\n  \"closed\": \"closed\",\n  \"clown\": \"clown\",\n  \"club\": \"club\",\n  \"clubgenoot\": \"clubgenot\",\n  \"clubje\": \"clubj\",\n  \"clubs\": \"club\",\n  \"cm\": \"cm\",\n  \"cma\": \"cma\",\n  \"cmi\": \"cmi\",\n  \"cml\": \"cml\",\n  \"cms\": \"cms\",\n  \"cna\": \"cna\",\n  \"cnc\": \"cnc\",\n  \"cnv\": \"cnv\",\n  \"co\": \"co\",\n  \"coagulator\": \"coagulator\",\n  \"coaguleren\": \"coaguler\",\n  \"coal\": \"coal\",\n  \"coalescentie\": \"coalescentie\",\n  \"coalescentiefilter\": \"coalescentiefilter\",\n  \"coalite\": \"coalit\",\n  \"coalitie\": \"coalitie\",\n  \"coalitiegenoten\": \"coalitiegenot\",\n  \"coalitiepartners\": \"coalitiepartner\",\n  \"coalition\": \"coalition\",\n  \"coastal\": \"coastal\",\n  \"coating\": \"coating\",\n  \"coatings\": \"coating\",\n  \"coatingsystemen\": \"coatingsystem\",\n  \"cob\": \"cob\",\n  \"coberco\": \"coberco\",\n  \"cobouw\": \"cobouw\",\n  \"coccen\": \"cocc\",\n  \"coccolithophorida\": \"coccolithophorida\",\n  \"cochet\": \"cochet\",\n  \"cocon\": \"cocon\",\n  \"code\": \"cod\",\n  \"codes\": \"codes\",\n  \"coëfficient\": \"coefficient\",\n  \"coëfficiënt\": \"coefficient\",\n  \"coëfficiënten\": \"coefficient\",\n  \"coenhaven\": \"coenhav\",\n  \"coeveringe\": \"coever\",\n  \"coevorden\": \"coevord\",\n  \"cogema\": \"cogema\",\n  \"cogeneratie\": \"cogeneratie\",\n  \"cogeneratiecentrale\": \"cogeneratiecentral\",\n  \"cognac\": \"cognac\",\n  \"cognos\": \"cognos\",\n  \"coherente\": \"coherent\",\n  \"cohorten\": \"cohort\",\n  \"cokes\": \"cokes\",\n  \"cokesovens\": \"cokesoven\",\n  \"cokesvorming\": \"cokesvorm\",\n  \"colibacteriën\": \"colibacterien\",\n  \"colin\": \"colin\",\n  \"collageen\": \"collagen\",\n  \"collagen\": \"collag\",\n  \"collectie\": \"collectie\",\n  \"collectief\": \"collectief\",\n  \"collecties\": \"collecties\",\n  \"collectieve\": \"collectiev\",\n  \"collection\": \"collection\",\n  \"collector\": \"collector\",\n  \"collectoren\": \"collector\",\n  \"collectors\": \"collector\",\n  \"collectorsystemen\": \"collectorsystem\",\n  \"collega\": \"collega\",\n  \"college\": \"colleg\",\n  \"collegeleden\": \"collegeled\",\n  \"collegeperiode\": \"collegeperiod\",\n  \"colleges\": \"colleges\",\n  \"collins\": \"collin\",\n  \"colloïdaal\": \"colloidal\",\n  \"colloide\": \"colloid\",\n  \"colloiden\": \"colloid\",\n  \"cologne\": \"cologn\",\n  \"colombia\": \"colombia\",\n  \"colombiaans\": \"colombiaan\",\n  \"colombo\": \"colombo\",\n  \"colonnes\": \"colonnes\",\n  \"colorado\": \"colorado\",\n  \"columbia\": \"columbia\",\n  \"column\": \"column\",\n  \"com\": \"com\",\n  \"comah\": \"comah\",\n  \"combi\": \"combi\",\n  \"combibelading\": \"combibelad\",\n  \"combigedeelte\": \"combigedeelt\",\n  \"combinatie\": \"combinatie\",\n  \"combinaties\": \"combinaties\",\n  \"combinatietoxiciteit\": \"combinatietoxiciteit\",\n  \"combined\": \"combined\",\n  \"combineert\": \"combineert\",\n  \"combineren\": \"combiner\",\n  \"combizorg\": \"combizorg\",\n  \"combustion\": \"combustion\",\n  \"combustor\": \"combustor\",\n  \"comedie\": \"comedie\",\n  \"comercio\": \"comercio\",\n  \"comfort\": \"comfort\",\n  \"comfortabel\": \"comfortabel\",\n  \"comfortabele\": \"comfortabel\",\n  \"comfortverbetering\": \"comfortverbeter\",\n  \"comité\": \"comit\",\n  \"comma\": \"comma\",\n  \"commandant\": \"commandant\",\n  \"commandanten\": \"commandant\",\n  \"commandeur\": \"commandeur\",\n  \"commanditaire\": \"commanditair\",\n  \"commando\": \"commando\",\n  \"commandostem\": \"commandostem\",\n  \"commandostructuur\": \"commandostructur\",\n  \"commentaar\": \"commentar\",\n  \"commentaren\": \"commentar\",\n  \"commerce\": \"commerc\",\n  \"commercial\": \"commercial\",\n  \"commercialiseren\": \"commercialiser\",\n  \"commercialisering\": \"commercialiser\",\n  \"commercieel\": \"commercieel\",\n  \"commerciële\": \"commerciel\",\n  \"commies\": \"commies\",\n  \"commissariaat\": \"commissariaat\",\n  \"commissaris\": \"commissaris\",\n  \"commissarissen\": \"commissariss\",\n  \"commissie\": \"commissie\",\n  \"commissies\": \"commissies\",\n  \"commission\": \"commission\",\n  \"commissions\": \"commission\",\n  \"commitment\": \"commitment\",\n  \"committee\": \"committee\",\n  \"common\": \"common\",\n  \"commotie\": \"commotie\",\n  \"communaal\": \"communal\",\n  \"communautaire\": \"communautair\",\n  \"communicatie\": \"communicatie\",\n  \"communicatiebeleid\": \"communicatiebeleid\",\n  \"communicatiefout\": \"communicatiefout\",\n  \"communicatiemiddelen\": \"communicatiemiddel\",\n  \"communicatienetwerk\": \"communicatienetwerk\",\n  \"communicatieprijs\": \"communicatieprijs\",\n  \"communicatiestrategie\": \"communicatiestrategie\",\n  \"communicatietechnologie\": \"communicatietechnologie\",\n  \"communicatieve\": \"communicatiev\",\n  \"communicator\": \"communicator\",\n  \"communiceren\": \"communicer\",\n  \"communiqué\": \"communique\",\n  \"communisten\": \"communist\",\n  \"communistische\": \"communistisch\",\n  \"communities\": \"communities\",\n  \"community\": \"community\",\n  \"compact\": \"compact\",\n  \"compacte\": \"compact\",\n  \"compacteersysteem\": \"compacteersystem\",\n  \"compacteren\": \"compacter\",\n  \"compactheidsdenken\": \"compactheidsdenk\",\n  \"compactor\": \"compactor\",\n  \"compactors\": \"compactor\",\n  \"compactste\": \"compactst\",\n  \"compactsysteem\": \"compactsystem\",\n  \"compagnie\": \"compagnie\",\n  \"companies\": \"companies\",\n  \"company\": \"company\",\n  \"compartiment\": \"compartiment\",\n  \"compartimenten\": \"compartiment\",\n  \"compascuum\": \"compascum\",\n  \"compatibel\": \"compatibel\",\n  \"compensatie\": \"compensatie\",\n  \"compensatiemaatregelen\": \"compensatiemaatregel\",\n  \"compensatieplan\": \"compensatieplan\",\n  \"compensatieplannen\": \"compensatieplann\",\n  \"compensatiewerk\": \"compensatiewerk\",\n  \"compenseert\": \"compenseert\",\n  \"compenseren\": \"compenser\",\n  \"compenserende\": \"compenser\",\n  \"competence\": \"competenc\",\n  \"competentiestrijd\": \"competentiestrijd\",\n  \"competetive\": \"competetiv\",\n  \"competitie\": \"competitie\",\n  \"competitiebeleid\": \"competitiebeleid\",\n  \"competition\": \"competition\",\n  \"compleet\": \"complet\",\n  \"complementeren\": \"complementer\",\n  \"complete\": \"complet\",\n  \"completely\": \"completely\",\n  \"complex\": \"complex\",\n  \"complexe\": \"complex\",\n  \"complexen\": \"complex\",\n  \"complexer\": \"complexer\",\n  \"complexere\": \"complexer\",\n  \"complexiteit\": \"complexiteit\",\n  \"complexvergunning\": \"complexvergunn\",\n  \"compliance\": \"complianc\",\n  \"complicatie\": \"complicatie\",\n  \"compliceren\": \"complicer\",\n  \"compliment\": \"compliment\",\n  \"complimentjes\": \"complimentjes\",\n  \"component\": \"component\",\n  \"componenten\": \"component\",\n  \"componentenbouwers\": \"componentenbouwer\",\n  \"componist\": \"componist\",\n  \"composieten\": \"composiet\",\n  \"composietmaterialen\": \"composietmaterial\",\n  \"composietprodukten\": \"composietprodukt\",\n  \"compost\": \"compost\",\n  \"compostachtig\": \"compostacht\",\n  \"compostbed\": \"compostbed\",\n  \"composteer\": \"composter\",\n  \"composteerbaarheidslabel\": \"composteerbaarheidslabel\",\n  \"composteerbare\": \"composter\",\n  \"composteerbedden\": \"composteerbed\",\n  \"composteerbedrijf\": \"composteerbedrijf\",\n  \"composteerinrichtingen\": \"composteerinricht\",\n  \"composteerinstallaties\": \"composteerinstallaties\",\n  \"composteertarief\": \"composteertarief\",\n  \"composteren\": \"composter\",\n  \"compostering\": \"composter\",\n  \"composteringsfabriek\": \"composteringsfabriek\",\n  \"composteringsinstallatie\": \"composteringsinstallatie\",\n  \"composteringsinstallaties\": \"composteringsinstallaties\",\n  \"compostfabriek\": \"compostfabriek\",\n  \"compostmachine\": \"compostmachin\",\n  \"compostomaat\": \"compostomat\",\n  \"compostprodukt\": \"compostprodukt\",\n  \"compostproduktie\": \"compostproduktie\",\n  \"composttoiletten\": \"composttoilet\",\n  \"compressie\": \"compressie\",\n  \"compressiekoelmachine\": \"compressiekoelmachin\",\n  \"compressor\": \"compressor\",\n  \"compressoren\": \"compressor\",\n  \"comprimerende\": \"comprimer\",\n  \"comprimo\": \"comprimo\",\n  \"compromis\": \"compromis\",\n  \"compromisvoorstel\": \"compromisvoorstel\",\n  \"compromitteer\": \"compromitter\",\n  \"compromitteren\": \"compromitter\",\n  \"comptables\": \"comptables\",\n  \"computer\": \"computer\",\n  \"computerbedrijf\": \"computerbedrijf\",\n  \"computerfabrikant\": \"computerfabrikant\",\n  \"computergegevens\": \"computergegeven\",\n  \"computergestuurd\": \"computergestuurd\",\n  \"computergestuurde\": \"computergestuurd\",\n  \"computermodel\": \"computermodel\",\n  \"computermodellen\": \"computermodell\",\n  \"computernetwerk\": \"computernetwerk\",\n  \"computerprogramma\": \"computerprogramma\",\n  \"computers\": \"computer\",\n  \"computerscherm\": \"computerscherm\",\n  \"computerschermen\": \"computerscherm\",\n  \"computersimulaties\": \"computersimulaties\",\n  \"computerspel\": \"computerspel\",\n  \"comstrijen\": \"comstrij\",\n  \"comte\": \"comt\",\n  \"comtesse\": \"comtes\",\n  \"concentraat\": \"concentrat\",\n  \"concentratie\": \"concentratie\",\n  \"concentratiegebieden\": \"concentratiegebied\",\n  \"concentratieproblemen\": \"concentratieproblem\",\n  \"concentraties\": \"concentraties\",\n  \"concentratietendens\": \"concentratietenden\",\n  \"concentratiewaarde\": \"concentratiewaard\",\n  \"concentration\": \"concentration\",\n  \"concentreert\": \"concentreert\",\n  \"concentreren\": \"concentrer\",\n  \"concept\": \"concept\",\n  \"concepten\": \"concept\",\n  \"conceptvoorstel\": \"conceptvoorstel\",\n  \"conceptvorm\": \"conceptvorm\",\n  \"concern\": \"concern\",\n  \"concerns\": \"concern\",\n  \"concessie\": \"concessie\",\n  \"concessiegebied\": \"concessiegebied\",\n  \"conchem\": \"conchem\",\n  \"concierge\": \"concierg\",\n  \"concludeerde\": \"concludeerd\",\n  \"concludeerden\": \"concludeerd\",\n  \"concludeert\": \"concludeert\",\n  \"concluderen\": \"concluder\",\n  \"conclusie\": \"conclusie\",\n  \"conclusies\": \"conclusies\",\n  \"concorde\": \"concord\",\n  \"concreet\": \"concret\",\n  \"concrete\": \"concret\",\n  \"concretere\": \"concreter\",\n  \"concretiseren\": \"concretiser\",\n  \"concurreert\": \"concurreert\",\n  \"concurrent\": \"concurrent\",\n  \"concurrenten\": \"concurrent\",\n  \"concurrentie\": \"concurrentie\",\n  \"concurrentiebeding\": \"concurrentiebed\",\n  \"concurrentiekracht\": \"concurrentiekracht\",\n  \"concurrentienadeel\": \"concurrentienadel\",\n  \"concurrentieparameters\": \"concurrentieparameter\",\n  \"concurrentiepositie\": \"concurrentiepositie\",\n  \"concurrentieprobleem\": \"concurrentieproblem\",\n  \"concurrentieregels\": \"concurrentieregel\",\n  \"concurrentieslag\": \"concurrentieslag\",\n  \"concurrentieverhoudingen\": \"concurrentieverhoud\",\n  \"concurrentievervalsing\": \"concurrentievervals\",\n  \"concurrentievoordeel\": \"concurrentievoordel\",\n  \"concurrentievoorsprong\": \"concurrentievoorsprong\",\n  \"concurreren\": \"concurrer\",\n  \"concurrerend\": \"concurrer\",\n  \"concurrerende\": \"concurrer\",\n  \"condensaat\": \"condensat\",\n  \"condensaatsystemen\": \"condensaatsystem\",\n  \"condensatie\": \"condensatie\",\n  \"condensatiereactie\": \"condensatiereactie\",\n  \"condensatietemperatuur\": \"condensatietemperatur\",\n  \"condensator\": \"condensator\",\n  \"condensatorventilatoren\": \"condensatorventilator\",\n  \"condenseert\": \"condenseert\",\n  \"condenseren\": \"condenser\",\n  \"condensering\": \"condenser\",\n  \"condensor\": \"condensor\",\n  \"condensordruk\": \"condensordruk\",\n  \"condensors\": \"condensor\",\n  \"condenspotten\": \"condenspot\",\n  \"condenstemperatuur\": \"condenstemperatur\",\n  \"condensvorming\": \"condensvorm\",\n  \"conditie\": \"conditie\",\n  \"condities\": \"condities\",\n  \"conditionering\": \"conditioner\",\n  \"condoleancekus\": \"condoleancekus\",\n  \"conducteur\": \"conducteur\",\n  \"confederatie\": \"confederatie\",\n  \"conference\": \"conferenc\",\n  \"conférences\": \"conferences\",\n  \"conferentie\": \"conferentie\",\n  \"conferenties\": \"conferenties\",\n  \"configuratie\": \"configuratie\",\n  \"configuraties\": \"configuraties\",\n  \"conflict\": \"conflict\",\n  \"conflicten\": \"conflict\",\n  \"conflictenrecht\": \"conflictenrecht\",\n  \"conflicteren\": \"conflicter\",\n  \"conflicterende\": \"conflicter\",\n  \"conform\": \"conform\",\n  \"confrontaties\": \"confrontaties\",\n  \"confronteren\": \"confronter\",\n  \"congestie\": \"congestie\",\n  \"conglomeraat\": \"conglomerat\",\n  \"conglomeraten\": \"conglomerat\",\n  \"congres\": \"congres\",\n  \"congresbureau\": \"congresbureau\",\n  \"congrescentrum\": \"congrescentrum\",\n  \"congresgebouw\": \"congresgebouw\",\n  \"congress\": \"congres\",\n  \"congressen\": \"congress\",\n  \"congresverslag\": \"congresverslag\",\n  \"congreszaal\": \"congreszal\",\n  \"coniferen\": \"conifer\",\n  \"conjunctuur\": \"conjunctur\",\n  \"connecticut\": \"connecticut\",\n  \"connection\": \"connection\",\n  \"conny\": \"conny\",\n  \"conquest\": \"conquest\",\n  \"consensus\": \"consensus\",\n  \"consequences\": \"consequences\",\n  \"consequent\": \"consequent\",\n  \"consequente\": \"consequent\",\n  \"consequentie\": \"consequentie\",\n  \"consequenties\": \"consequenties\",\n  \"conservatieve\": \"conservatiev\",\n  \"conservatieven\": \"conservatiev\",\n  \"conservation\": \"conservation\",\n  \"conservator\": \"conservator\",\n  \"conserveert\": \"conserveert\",\n  \"conserveren\": \"conserver\",\n  \"conservering\": \"conserver\",\n  \"consistent\": \"consistent\",\n  \"consistente\": \"consistent\",\n  \"consolidatie\": \"consolidatie\",\n  \"consolidatieproces\": \"consolidatieproces\",\n  \"consolidation\": \"consolidation\",\n  \"consortia\": \"consortia\",\n  \"consortium\": \"consortium\",\n  \"constance\": \"constanc\",\n  \"cònstance\": \"cònstanc\",\n  \"constánce\": \"constanc\",\n  \"constandse\": \"constand\",\n  \"constans\": \"constan\",\n  \"constant\": \"constant\",\n  \"constante\": \"constant\",\n  \"constantinopel\": \"constantinopel\",\n  \"constateerde\": \"constateerd\",\n  \"constateerden\": \"constateerd\",\n  \"constateert\": \"constateert\",\n  \"constateren\": \"constater\",\n  \"constatering\": \"constater\",\n  \"constateringen\": \"constater\",\n  \"consternatie\": \"consternatie\",\n  \"constitutionele\": \"constitutionel\",\n  \"constructeur\": \"constructeur\",\n  \"constructeurs\": \"constructeur\",\n  \"constructie\": \"constructie\",\n  \"constructiebedrijf\": \"constructiebedrijf\",\n  \"constructief\": \"constructief\",\n  \"constructies\": \"constructies\",\n  \"constructieve\": \"constructiev\",\n  \"construction\": \"construction\",\n  \"constructions\": \"construction\",\n  \"construeert\": \"construeert\",\n  \"construeren\": \"construer\",\n  \"consul\": \"consul\",\n  \"consulaat\": \"consulat\",\n  \"consulent\": \"consulent\",\n  \"consulenten\": \"consulent\",\n  \"consulentschap\": \"consulentschap\",\n  \"consult\": \"consult\",\n  \"consultancy\": \"consultancy\",\n  \"consultant\": \"consultant\",\n  \"consultants\": \"consultant\",\n  \"consultatiebureau\": \"consultatiebureau\",\n  \"consulting\": \"consult\",\n  \"consument\": \"consument\",\n  \"consumenten\": \"consument\",\n  \"consumentenactie\": \"consumentenactie\",\n  \"consumentenartikelen\": \"consumentenartikel\",\n  \"consumentenbond\": \"consumentenbond\",\n  \"consumentendienst\": \"consumentendienst\",\n  \"consumentengedrag\": \"consumentengedrag\",\n  \"consumentengoederen\": \"consumentengoeder\",\n  \"consumentenomzet\": \"consumentenomzet\",\n  \"consumentenonderzoek\": \"consumentenonderzoek\",\n  \"consumentenorganisatie\": \"consumentenorganisatie\",\n  \"consumentenorganisaties\": \"consumentenorganisaties\",\n  \"consumentenprodukten\": \"consumentenprodukt\",\n  \"consumentenverpakkingen\": \"consumentenverpak\",\n  \"consumentenvoorkeur\": \"consumentenvoorkeur\",\n  \"consumer\": \"consumer\",\n  \"consumeren\": \"consumer\",\n  \"consumptie\": \"consumptie\",\n  \"consumptiedagen\": \"consumptiedag\",\n  \"consumptiegoederen\": \"consumptiegoeder\",\n  \"consumptiekwaliteit\": \"consumptiekwaliteit\",\n  \"consumptiepatronen\": \"consumptiepatron\",\n  \"consumptiestructuur\": \"consumptiestructur\",\n  \"contact\": \"contact\",\n  \"contacten\": \"contact\",\n  \"contactgeluidisolatie\": \"contactgeluidisolatie\",\n  \"contactgroep\": \"contactgroep\",\n  \"contactpersonen\": \"contactperson\",\n  \"contactwater\": \"contactwater\",\n  \"container\": \"container\",\n  \"containerbakken\": \"containerbak\",\n  \"containerbedrijf\": \"containerbedrijf\",\n  \"containerbeheer\": \"containerbeher\",\n  \"containerbelading\": \"containerbelad\",\n  \"containerbeladingssysteem\": \"containerbeladingssystem\",\n  \"containercombinatie\": \"containercombinatie\",\n  \"containerdienst\": \"containerdienst\",\n  \"containerinzamelingsbedrijven\": \"containerinzamelingsbedrijv\",\n  \"containerophaalsysteem\": \"containerophaalsystem\",\n  \"containeroverslag\": \"containeroverslag\",\n  \"containerparken\": \"containerpark\",\n  \"containerpool\": \"containerpol\",\n  \"containerrederij\": \"containerrederij\",\n  \"containerreinigings\": \"containerrein\",\n  \"containers\": \"container\",\n  \"containerschepen\": \"containerschep\",\n  \"containerschip\": \"containerschip\",\n  \"containersysteem\": \"containersystem\",\n  \"containersystemen\": \"containersystem\",\n  \"containerteelt\": \"containerteelt\",\n  \"containerterminal\": \"containerterminal\",\n  \"containerverhuurbedrijf\": \"containerverhuurbedrijf\",\n  \"containervervoer\": \"containervervoer\",\n  \"containerwisselsysteem\": \"containerwisselsystem\",\n  \"containerwisselsystemen\": \"containerwisselsystem\",\n  \"contaminanten\": \"contaminant\",\n  \"contaminated\": \"contaminated\",\n  \"contaminatie\": \"contaminatie\",\n  \"contante\": \"contant\",\n  \"contenteren\": \"contenter\",\n  \"context\": \"context\",\n  \"continent\": \"continent\",\n  \"continentaal\": \"continental\",\n  \"continental\": \"continental\",\n  \"continu\": \"continu\",\n  \"continue\": \"continue\",\n  \"continueren\": \"continuer\",\n  \"continuïteit\": \"continuiteit\",\n  \"continuous\": \"continuous\",\n  \"continuteelt\": \"continuteelt\",\n  \"contour\": \"contour\",\n  \"contouren\": \"contour\",\n  \"contra\": \"contra\",\n  \"contract\": \"contract\",\n  \"contractbepaling\": \"contractbepal\",\n  \"contractbreuk\": \"contractbreuk\",\n  \"contracten\": \"contract\",\n  \"contractiegedeelte\": \"contractiegedeelt\",\n  \"contracting\": \"contract\",\n  \"contractor\": \"contractor\",\n  \"contractors\": \"contractor\",\n  \"contractresearch\": \"contractresearch\",\n  \"contractueel\": \"contractueel\",\n  \"contraproduktief\": \"contraproduktief\",\n  \"contrast\": \"contrast\",\n  \"contrasteert\": \"contrasteert\",\n  \"control\": \"control\",\n  \"controle\": \"control\",\n  \"controlecijfers\": \"controlecijfer\",\n  \"controleer\": \"controler\",\n  \"controleerbaar\": \"controler\",\n  \"controleerbare\": \"controler\",\n  \"controleert\": \"controleert\",\n  \"controlekamer\": \"controlekamer\",\n  \"controlekosten\": \"controlekost\",\n  \"controlelijst\": \"controlelijst\",\n  \"controlepunten\": \"controlepunt\",\n  \"controleren\": \"controler\",\n  \"contrôleren\": \"contrôler\",\n  \"controlerende\": \"controler\",\n  \"controles\": \"controles\",\n  \"controleschema\": \"controleschema\",\n  \"controlesysteem\": \"controlesystem\",\n  \"controlesystemen\": \"controlesystem\",\n  \"controleurs\": \"controleur\",\n  \"controlewijzer\": \"controlewijzer\",\n  \"controller\": \"controller\",\n  \"controls\": \"control\",\n  \"controverse\": \"controver\",\n  \"controversiële\": \"controversiel\",\n  \"convenant\": \"convenant\",\n  \"convenanten\": \"convenant\",\n  \"convenantenpolitiek\": \"convenantenpolitiek\",\n  \"convenieert\": \"convenieert\",\n  \"conveniëren\": \"convenier\",\n  \"conventie\": \"conventie\",\n  \"convention\": \"convention\",\n  \"conventionale\": \"conventional\",\n  \"conventioneel\": \"conventionel\",\n  \"conventionelc\": \"conventionelc\",\n  \"conventionele\": \"conventionel\",\n  \"conversatie\": \"conversatie\",\n  \"conversie\": \"conversie\",\n  \"conversietechnieken\": \"conversietechniek\",\n  \"conversieverliezen\": \"conversieverliez\",\n  \"conversion\": \"conversion\",\n  \"converter\": \"converter\",\n  \"cony\": \"cony\",\n  \"cook\": \"cok\",\n  \"cooker\": \"cooker\",\n  \"cooling\": \"cooling\",\n  \"cooltainer\": \"cooltainer\",\n  \"coolworks\": \"coolwork\",\n  \"coöp\": \"cop\",\n  \"coöperatie\": \"cooperatie\",\n  \"coöperatiemolens\": \"cooperatiemolen\",\n  \"coöperaties\": \"cooperaties\",\n  \"coöperatieve\": \"cooperatiev\",\n  \"cooperation\": \"cooperation\",\n  \"cooperative\": \"cooperativ\",\n  \"coopers\": \"cooper\",\n  \"coördinatie\": \"coordinatie\",\n  \"coördinatiecollege\": \"coordinatiecolleg\",\n  \"coördinatiecommissie\": \"coordinatiecommissie\",\n  \"coördinator\": \"coordinator\",\n  \"coördineerde\": \"coordineerd\",\n  \"coördineert\": \"coordineert\",\n  \"coördineren\": \"coordiner\",\n  \"cooten\": \"cot\",\n  \"copenhagen\": \"copenhag\",\n  \"copier\": \"copier\",\n  \"copieus\": \"copieus\",\n  \"copieuze\": \"copieuz\",\n  \"copius\": \"copius\",\n  \"cops\": \"cop\",\n  \"coquet\": \"coquet\",\n  \"coquette\": \"coquet\",\n  \"coquetterie\": \"coquetterie\",\n  \"coral\": \"coral\",\n  \"cordis\": \"cordis\",\n  \"core\": \"cor\",\n  \"corinne\": \"corinn\",\n  \"corning\": \"corning\",\n  \"cornwall\": \"cornwall\",\n  \"corp\": \"corp\",\n  \"corporate\": \"corporat\",\n  \"corporation\": \"corporation\",\n  \"corps\": \"corp\",\n  \"correct\": \"correct\",\n  \"correctdoenerige\": \"correctdoener\",\n  \"correcte\": \"correct\",\n  \"correctie\": \"correctie\",\n  \"correctiemiddel\": \"correctiemiddel\",\n  \"correctieve\": \"correctiev\",\n  \"correlatie\": \"correlatie\",\n  \"correspondentie\": \"correspondentie\",\n  \"corridor\": \"corridor\",\n  \"corridors\": \"corridor\",\n  \"corrigerend\": \"corriger\",\n  \"corrosie\": \"corrosie\",\n  \"corrosiebestendig\": \"corrosiebestend\",\n  \"corrosiebestendigheid\": \"corrosiebestend\",\n  \"corrupt\": \"corrupt\",\n  \"corruptie\": \"corruptie\",\n  \"corsa\": \"corsa\",\n  \"corset\": \"corset\",\n  \"corvées\": \"corves\",\n  \"cos\": \"cos\",\n  \"cosmopoliet\": \"cosmopoliet\",\n  \"cosmopolitische\": \"cosmopolitisch\",\n  \"cost\": \"cost\",\n  \"costa\": \"costa\",\n  \"coster\": \"coster\",\n  \"costumes\": \"costumes\",\n  \"côterie\": \"côterie\",\n  \"côterieën\": \"côterieen\",\n  \"côterietje\": \"côterietj\",\n  \"côtillon\": \"côtillon\",\n  \"cotrans\": \"cotran\",\n  \"cotton\": \"cotton\",\n  \"coudoyeer\": \"coudoyer\",\n  \"coudoyeren\": \"coudoyer\",\n  \"councel\": \"councel\",\n  \"council\": \"council\",\n  \"counsel\": \"counsel\",\n  \"counsil\": \"counsil\",\n  \"counter\": \"counter\",\n  \"county\": \"county\",\n  \"coupé\": \"coup\",\n  \"coupépolder\": \"coupepolder\",\n  \"coupétje\": \"coupetj\",\n  \"coupled\": \"coupled\",\n  \"courant\": \"courant\",\n  \"couranten\": \"courant\",\n  \"courantenbladen\": \"courantenblad\",\n  \"courantje\": \"courantj\",\n  \"cousteau\": \"cousteau\",\n  \"couverts\": \"couvert\",\n  \"covra\": \"covra\",\n  \"cox\": \"cox\",\n  \"cp\": \"cp\",\n  \"cpb\": \"cpb\",\n  \"cpp\": \"cpp\",\n  \"cpr\": \"cpr\",\n  \"cpro\": \"cpro\",\n  \"cr\": \"cr\",\n  \"cra\": \"cra\",\n  \"crack\": \"crack\",\n  \"crane\": \"cran\",\n  \"crayenstein\": \"crayenstein\",\n  \"crayon\": \"crayon\",\n  \"creatie\": \"creatie\",\n  \"creatief\": \"creatief\",\n  \"creatieve\": \"creatiev\",\n  \"creatinine\": \"creatinin\",\n  \"creativ\": \"creativ\",\n  \"creative\": \"creativ\",\n  \"creatuur\": \"creatur\",\n  \"crèches\": \"crèches\",\n  \"creëert\": \"creeert\",\n  \"creëren\": \"crer\",\n  \"creil\": \"creil\",\n  \"crem\": \"crem\",\n  \"crematie\": \"crematie\",\n  \"crematies\": \"crematies\",\n  \"crematorium\": \"crematorium\",\n  \"crème\": \"crèm\",\n  \"creosoot\": \"creosot\",\n  \"creosootolie\": \"creosootolie\",\n  \"cresson\": \"cresson\",\n  \"crest\": \"crest\",\n  \"creys\": \"crey\",\n  \"cri\": \"cri\",\n  \"cricket\": \"cricket\",\n  \"cricketclubs\": \"cricketclub\",\n  \"crii\": \"crii\",\n  \"crim\": \"crim\",\n  \"criminele\": \"criminel\",\n  \"crimped\": \"crimped\",\n  \"crisis\": \"crisis\",\n  \"crisissen\": \"crisiss\",\n  \"cristoffelpark\": \"cristoffelpark\",\n  \"criteria\": \"criteria\",\n  \"criterium\": \"criterium\",\n  \"critical\": \"critical\",\n  \"critici\": \"critici\",\n  \"critiek\": \"critiek\",\n  \"crockett\": \"crockett\",\n  \"cromstrijen\": \"cromstrij\",\n  \"crone\": \"cron\",\n  \"crosfields\": \"crosfield\",\n  \"croûte\": \"croût\",\n  \"crow\": \"crow\",\n  \"crowcon\": \"crowcon\",\n  \"crowding\": \"crowding\",\n  \"crown\": \"crown\",\n  \"croyden\": \"croyd\",\n  \"cruciaal\": \"cruciaal\",\n  \"cruciale\": \"crucial\",\n  \"cruise\": \"cruis\",\n  \"cruisemaatschappij\": \"cruisemaatschappij\",\n  \"cruisezeilen\": \"cruisezeil\",\n  \"crutzen\": \"crutz\",\n  \"cry\": \"cry\",\n  \"cryogeen\": \"cryogen\",\n  \"cryogene\": \"cryog\",\n  \"cryogenic\": \"cryogenic\",\n  \"cs\": \"cs\",\n  \"csi\": \"csi\",\n  \"csm\": \"csm\",\n  \"cso\": \"cso\",\n  \"csoil\": \"csoil\",\n  \"cstr\": \"cstr\",\n  \"ctb\": \"ctb\",\n  \"ctc\": \"ctc\",\n  \"cth\": \"cth\",\n  \"cuba\": \"cuba\",\n  \"cubaanse\": \"cuban\",\n  \"cuckmere\": \"cuckmer\",\n  \"cultureel\": \"culturel\",\n  \"culturele\": \"culturel\",\n  \"culturen\": \"cultur\",\n  \"cultuur\": \"cultur\",\n  \"cultuuraardappelen\": \"cultuuraardappel\",\n  \"cultuurgewas\": \"cultuurgewas\",\n  \"cultuurgewassen\": \"cultuurgewass\",\n  \"cultuurgrond\": \"cultuurgrond\",\n  \"cultuurgronden\": \"cultuurgrond\",\n  \"cultuurhistorie\": \"cultuurhistorie\",\n  \"cultuurlandschap\": \"cultuurlandschap\",\n  \"cultuuromslag\": \"cultuuromslag\",\n  \"cultuurpessimisme\": \"cultuurpessimism\",\n  \"cultuurtechniek\": \"cultuurtechniek\",\n  \"cultuurtechnische\": \"cultuurtechnisch\",\n  \"cultuurtempel\": \"cultuurtempel\",\n  \"cumbrian\": \"cumbrian\",\n  \"cumulatieve\": \"cumulatiev\",\n  \"cuneraweg\": \"cuneraweg\",\n  \"cup\": \"cup\",\n  \"cur\": \"cur\",\n  \"curaçao\": \"curaçao\",\n  \"curatele\": \"curatel\",\n  \"curatief\": \"curatief\",\n  \"cure\": \"cur\",\n  \"curiel\": \"curiel\",\n  \"curieus\": \"curieus\",\n  \"current\": \"current\",\n  \"cursus\": \"cursus\",\n  \"cursussen\": \"cursuss\",\n  \"custom\": \"custom\",\n  \"cuwvo\": \"cuwvo\",\n  \"cv\": \"cv\",\n  \"cvd\": \"cvd\",\n  \"cvk\": \"cvk\",\n  \"cvp\": \"cvp\",\n  \"cvt\": \"cvt\",\n  \"cw\": \"cw\",\n  \"cwk\": \"cwk\",\n  \"cxhy\": \"cxhy\",\n  \"cyaan\": \"cyaan\",\n  \"cyaanhydrine\": \"cyaanhydrin\",\n  \"cyanamid\": \"cyanamid\",\n  \"cyanide\": \"cyanid\",\n  \"cyaniden\": \"cyanid\",\n  \"cycle\": \"cycl\",\n  \"cycleon\": \"cycleon\",\n  \"cycles\": \"cycles\",\n  \"cyclohexaan\": \"cyclohexan\",\n  \"cyclonox\": \"cyclonox\",\n  \"cycloon\": \"cyclon\",\n  \"cyclus\": \"cyclus\",\n  \"cyprische\": \"cyprisch\",\n  \"cyprus\": \"cyprus\",\n  \"cystine\": \"cystin\",\n  \"cz\": \"cz\",\n  \"czaar\": \"czar\",\n  \"czestochowa\": \"czestochowa\",\n  \"czv\": \"czv\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"daad\": \"dad\",\n  \"daadkrachtiger\": \"daadkrachtiger\",\n  \"daadwerkelijk\": \"daadwerk\",\n  \"daadwerkelijke\": \"daadwerk\",\n  \"daagde\": \"daagd\",\n  \"daagden\": \"daagd\",\n  \"daags\": \"dag\",\n  \"daagse\": \"dag\",\n  \"daagt\": \"daagt\",\n  \"daalde\": \"daald\",\n  \"daalden\": \"daald\",\n  \"daalderop\": \"daalderop\",\n  \"daalt\": \"daalt\",\n  \"daar\": \"dar\",\n  \"dáar\": \"dar\",\n  \"dáár\": \"dar\",\n  \"daaraan\": \"daaran\",\n  \"daarachter\": \"daarachter\",\n  \"daarbij\": \"daarbij\",\n  \"daarbinnen\": \"daarbinn\",\n  \"daarboven\": \"daarbov\",\n  \"daarbuiten\": \"daarbuit\",\n  \"daardoor\": \"daardor\",\n  \"daardoorheen\": \"daardoorhen\",\n  \"daarenboven\": \"daarenbov\",\n  \"daarentegen\": \"daarenteg\",\n  \"daarginds\": \"daargind\",\n  \"daarheen\": \"daarhen\",\n  \"daarin\": \"daarin\",\n  \"daarmee\": \"daarmee\",\n  \"daarna\": \"daarna\",\n  \"daarnaar\": \"daarnar\",\n  \"daarnaast\": \"daarnaast\",\n  \"daarom\": \"daarom\",\n  \"dáárom\": \"daarom\",\n  \"daaromheen\": \"daaromhen\",\n  \"daaronder\": \"daaronder\",\n  \"daarop\": \"daarop\",\n  \"daaropvolgende\": \"daaropvolg\",\n  \"daarover\": \"daarover\",\n  \"daartegen\": \"daarteg\",\n  \"daartegenover\": \"daartegenover\",\n  \"daartoe\": \"daartoe\",\n  \"daartussen\": \"daartuss\",\n  \"daaruit\": \"daaruit\",\n  \"daarvan\": \"daarvan\",\n  \"daarvoor\": \"daarvor\",\n  \"daarvóór\": \"daarvor\",\n  \"dacht\": \"dacht\",\n  \"dachten\": \"dacht\",\n  \"dadelijk\": \"dadelijk\",\n  \"dadelijke\": \"dadelijk\",\n  \"dader\": \"dader\",\n  \"daders\": \"dader\",\n  \"daderschap\": \"daderschap\",\n  \"daf\": \"daf\",\n  \"dag\": \"dag\",\n  \"dagaccommodatie\": \"dagaccommodatie\",\n  \"dagblad\": \"dagblad\",\n  \"dagbladen\": \"dagblad\",\n  \"dagboek\": \"dagboek\",\n  \"dagelijks\": \"dagelijk\",\n  \"dagelijkse\": \"dagelijk\",\n  \"dagen\": \"dag\",\n  \"dagenlange\": \"dagenlang\",\n  \"dagentange\": \"dagentang\",\n  \"dageraad\": \"dagerad\",\n  \"dageraadwijde\": \"dageraadwijd\",\n  \"dageraden\": \"dagerad\",\n  \"daggenvoorde\": \"daggenvoord\",\n  \"daglicht\": \"daglicht\",\n  \"dagmarkt\": \"dagmarkt\",\n  \"dags\": \"dag\",\n  \"dagvaarding\": \"dagvaard\",\n  \"dagverbruik\": \"dagverbruik\",\n  \"daiei\": \"daiei\",\n  \"daimler\": \"daimler\",\n  \"dainippon\": \"dainippon\",\n  \"dak\": \"dak\",\n  \"dakbedekkers\": \"dakbedekker\",\n  \"dakbedekking\": \"dakbedek\",\n  \"dakbedekkingsmateriaal\": \"dakbedekkingsmateriaal\",\n  \"dakconstructie\": \"dakconstructie\",\n  \"dakdekkerij\": \"dakdekkerij\",\n  \"dakdekkers\": \"dakdekker\",\n  \"daken\": \"dak\",\n  \"dakgoot\": \"dakgot\",\n  \"dakgoten\": \"dakgot\",\n  \"dakisolatie\": \"dakisolatie\",\n  \"dakje\": \"dakj\",\n  \"dakjes\": \"dakjes\",\n  \"daklicht\": \"daklicht\",\n  \"dakpan\": \"dakpan\",\n  \"dakpanelen\": \"dakpanel\",\n  \"dakpanfabrieken\": \"dakpanfabriek\",\n  \"dakpannen\": \"dakpann\",\n  \"dakpannenfabrikant\": \"dakpannenfabrikant\",\n  \"dakplaat\": \"dakplat\",\n  \"dakplaten\": \"dakplat\",\n  \"dakprodukten\": \"dakprodukt\",\n  \"dakramen\": \"dakram\",\n  \"dakrand\": \"dakrand\",\n  \"dakvlak\": \"dakvlak\",\n  \"dal\": \"dal\",\n  \"dalem\": \"dalem\",\n  \"dalen\": \"dal\",\n  \"dalende\": \"dalend\",\n  \"daling\": \"daling\",\n  \"dallen\": \"dall\",\n  \"dalmijn\": \"dalmijn\",\n  \"dalurentarieven\": \"dalurentariev\",\n  \"dam\": \"dam\",\n  \"dame\": \"dam\",\n  \"dames\": \"dames\",\n  \"damesslips\": \"damesslip\",\n  \"dammen\": \"damm\",\n  \"damond\": \"damond\",\n  \"damp\": \"damp\",\n  \"dampcompressie\": \"dampcompressie\",\n  \"dampemissies\": \"dampemissies\",\n  \"dampen\": \"damp\",\n  \"dampfase\": \"dampfas\",\n  \"dampretourleidingen\": \"dampretourleid\",\n  \"dampspanning\": \"dampspann\",\n  \"dampstromen\": \"dampstrom\",\n  \"dampstroom\": \"dampstrom\",\n  \"dampte\": \"dampt\",\n  \"damwand\": \"damwand\",\n  \"damwanden\": \"damwand\",\n  \"damwandkuip\": \"damwandkuip\",\n  \"dan\": \"dan\",\n  \"danbury\": \"danbury\",\n  \"dangas\": \"dangas\",\n  \"daniel\": \"daniel\",\n  \"danig\": \"danig\",\n  \"danis\": \"danis\",\n  \"dank\": \"dank\",\n  \"dankbaar\": \"dankbar\",\n  \"dankbaarheid\": \"dankbar\",\n  \"dankbare\": \"dankbar\",\n  \"danken\": \"dank\",\n  \"dankje\": \"dankj\",\n  \"danks\": \"dank\",\n  \"dankt\": \"dankt\",\n  \"dankte\": \"dankt\",\n  \"dankzij\": \"dankzij\",\n  \"danmarks\": \"danmark\",\n  \"dans\": \"dan\",\n  \"dansclub\": \"dansclub\",\n  \"dansen\": \"dans\",\n  \"dansende\": \"dansend\",\n  \"dansenden\": \"dansend\",\n  \"danseur\": \"danseur\",\n  \"dansk\": \"dansk\",\n  \"dansles\": \"dansles\",\n  \"danslessen\": \"dansless\",\n  \"danspas\": \"danspas\",\n  \"danste\": \"danst\",\n  \"dansten\": \"danst\",\n  \"danwel\": \"danwel\",\n  \"dapemo\": \"dapemo\",\n  \"daphnia\": \"daphnia\",\n  \"dapper\": \"dapper\",\n  \"dar\": \"dar\",\n  \"daranginongan\": \"daranginongan\",\n  \"darmen\": \"darm\",\n  \"darmverteerbaar\": \"darmverter\",\n  \"dartele\": \"dartel\",\n  \"dartelheid\": \"dartel\",\n  \"darweesh\": \"darweesh\",\n  \"das\": \"das\",\n  \"dasa\": \"dasa\",\n  \"dashboarden\": \"dashboard\",\n  \"dassen\": \"dass\",\n  \"dassenpopulatie\": \"dassenpopulatie\",\n  \"dassenproject\": \"dassenproject\",\n  \"dassentunnel\": \"dassentunnel\",\n  \"dat\": \"dat\",\n  \"dàt\": \"dàt\",\n  \"data\": \"data\",\n  \"databank\": \"databank\",\n  \"databanken\": \"databank\",\n  \"database\": \"databas\",\n  \"databases\": \"databases\",\n  \"datablad\": \"datablad\",\n  \"datacommunicatie\": \"datacommunicatie\",\n  \"datalogcomputer\": \"datalogcomputer\",\n  \"datalogger\": \"datalogger\",\n  \"dataverwerking\": \"dataverwerk\",\n  \"dateerde\": \"dateerd\",\n  \"dateert\": \"dateert\",\n  \"datenblatt\": \"datenblatt\",\n  \"datenblätter\": \"datenblatter\",\n  \"dateren\": \"dater\",\n  \"daterend\": \"dater\",\n  \"datum\": \"datum\",\n  \"datzelfde\": \"datzelfd\",\n  \"dauw\": \"dauw\",\n  \"dauwde\": \"dauwd\",\n  \"daverde\": \"daverd\",\n  \"daveren\": \"daver\",\n  \"daverende\": \"daver\",\n  \"david\": \"david\",\n  \"day\": \"day\",\n  \"daya\": \"daya\",\n  \"db\": \"db\",\n  \"dba\": \"dba\",\n  \"dbase\": \"dbas\",\n  \"dc\": \"dc\",\n  \"dcmr\": \"dcmr\",\n  \"dcs\": \"dcs\",\n  \"dd\": \"dd\",\n  \"ddame\": \"ddam\",\n  \"dddame\": \"dddam\",\n  \"ddòl\": \"ddòl\",\n  \"ddòll\": \"ddòll\",\n  \"ddouane\": \"ddouan\",\n  \"ddr\": \"ddr\",\n  \"dds\": \"dds\",\n  \"ddt\": \"ddt\",\n  \"de\": \"de\",\n  \"dè\": \"dè\",\n  \"debâcles\": \"debâcles\",\n  \"debat\": \"debat\",\n  \"debatteerde\": \"debatteerd\",\n  \"debatten\": \"debat\",\n  \"debet\": \"debet\",\n  \"debiet\": \"debiet\",\n  \"decanter\": \"decanter\",\n  \"decarbonatie\": \"decarbonatie\",\n  \"december\": \"december\",\n  \"decennia\": \"decennia\",\n  \"decentraal\": \"decentral\",\n  \"decentrale\": \"decentral\",\n  \"decentralisatie\": \"decentralisatie\",\n  \"decentralised\": \"decentralised\",\n  \"deceptie\": \"deceptie\",\n  \"dechema\": \"dechema\",\n  \"dechlorering\": \"dechlorer\",\n  \"déchue\": \"dechue\",\n  \"decibel\": \"decibel\",\n  \"decideerden\": \"decideerd\",\n  \"decimeters\": \"decimeter\",\n  \"declameerde\": \"declameerd\",\n  \"decoder\": \"decoder\",\n  \"décor\": \"decor\",\n  \"decoratie\": \"decoratie\",\n  \"decoraties\": \"decoraties\",\n  \"decoratieve\": \"decoratiev\",\n  \"decreet\": \"decret\",\n  \"dedemsvaart\": \"dedemsvaart\",\n  \"deden\": \"ded\",\n  \"dedicated\": \"dedicated\",\n  \"dee\": \"dee\",\n  \"deed\": \"ded\",\n  \"déed\": \"ded\",\n  \"deel\": \"del\",\n  \"deelauto\": \"deelauto\",\n  \"deelconvenanten\": \"deelconvenant\",\n  \"deelde\": \"deeld\",\n  \"deelden\": \"deeld\",\n  \"deelgenomen\": \"deelgenom\",\n  \"deellast\": \"deellast\",\n  \"deelmarkt\": \"deelmarkt\",\n  \"deelmarkten\": \"deelmarkt\",\n  \"deelname\": \"deelnam\",\n  \"deelnamen\": \"deelnam\",\n  \"deelneemt\": \"deelneemt\",\n  \"deelnemen\": \"deelnem\",\n  \"deelnemend\": \"deelnem\",\n  \"deelnemende\": \"deelnem\",\n  \"deelnemer\": \"deelnemer\",\n  \"deelnemers\": \"deelnemer\",\n  \"deelnemersovereenkomst\": \"deelnemersovereenkomst\",\n  \"deelneming\": \"deelnem\",\n  \"deelnemingen\": \"deelnem\",\n  \"deelonderzoek\": \"deelonderzoek\",\n  \"deelprogramma\": \"deelprogramma\",\n  \"deelproject\": \"deelproject\",\n  \"deelprojecten\": \"deelproject\",\n  \"deelraadbestuur\": \"deelraadbestur\",\n  \"deelrepubliek\": \"deelrepubliek\",\n  \"deelrisico\": \"deelrisico\",\n  \"deels\": \"del\",\n  \"deelstaat\": \"deelstat\",\n  \"deelstaatregering\": \"deelstaatreger\",\n  \"deelstaten\": \"deelstat\",\n  \"deelstromen\": \"deelstrom\",\n  \"deelstroom\": \"deelstrom\",\n  \"deelstroominstallatie\": \"deelstroominstallatie\",\n  \"deelstudie\": \"deelstudie\",\n  \"deelstudies\": \"deelstudies\",\n  \"deelt\": \"deelt\",\n  \"deeltijd\": \"deeltijd\",\n  \"deeltjes\": \"deeltjes\",\n  \"deeltjesgrootte\": \"deeltjesgrot\",\n  \"deeltjesoppervlak\": \"deeltjesoppervlak\",\n  \"deeltjesscheiding\": \"deeltjesscheid\",\n  \"deeltjesscheidingstechnieken\": \"deeltjesscheidingstechniek\",\n  \"deeltjesteller\": \"deeltjesteller\",\n  \"deemoedig\": \"deemoed\",\n  \"deemoedigheid\": \"deemoed\",\n  \"deens\": \"den\",\n  \"deense\": \"den\",\n  \"deerde\": \"deerd\",\n  \"deerden\": \"deerd\",\n  \"def\": \"def\",\n  \"defect\": \"defect\",\n  \"defecte\": \"defect\",\n  \"defecten\": \"defect\",\n  \"defense\": \"defen\",\n  \"defensie\": \"defensie\",\n  \"defensiebronnen\": \"defensiebronn\",\n  \"defensiecommissie\": \"defensiecommissie\",\n  \"defensief\": \"defensief\",\n  \"defensiegebieden\": \"defensiegebied\",\n  \"defensietechnologie\": \"defensietechnologie\",\n  \"defensieve\": \"defensiev\",\n  \"definiëren\": \"definier\",\n  \"definiëring\": \"definier\",\n  \"definitie\": \"definitie\",\n  \"definitief\": \"definitief\",\n  \"definitieve\": \"definitiev\",\n  \"deformatie\": \"deformatie\",\n  \"defosfatering\": \"defosfater\",\n  \"deftig\": \"deftig\",\n  \"deftige\": \"deftig\",\n  \"deftiger\": \"deftiger\",\n  \"degelijk\": \"degelijk\",\n  \"dégelijk\": \"degelijk\",\n  \"dègelijk\": \"dègelijk\",\n  \"degelijke\": \"degelijk\",\n  \"dégelijke\": \"degelijk\",\n  \"dégelijker\": \"degelijker\",\n  \"degelijkheid\": \"degelijk\",\n  \"degelijkjes\": \"degelijkjes\",\n  \"degelijks\": \"degelijk\",\n  \"dégelijks\": \"degelijk\",\n  \"degene\": \"deg\",\n  \"degenen\": \"degen\",\n  \"degeneratie\": \"degeneratie\",\n  \"degens\": \"degen\",\n  \"degradatie\": \"degradatie\",\n  \"dehaene\": \"dehaen\",\n  \"dehalogenering\": \"dehalogener\",\n  \"dehalogeneringsprodukten\": \"dehalogeneringsprodukt\",\n  \"dehydrateren\": \"dehydrater\",\n  \"dehydratie\": \"dehydratie\",\n  \"deinde\": \"deind\",\n  \"deinden\": \"deind\",\n  \"deinen\": \"dein\",\n  \"deinende\": \"deinend\",\n  \"deining\": \"deining\",\n  \"deinschok\": \"deinschok\",\n  \"dejeuner\": \"dejeuner\",\n  \"déjeuner\": \"dejeuner\",\n  \"déjeunerende\": \"dejeuner\",\n  \"dek\": \"dek\",\n  \"deken\": \"dek\",\n  \"dekens\": \"deken\",\n  \"dekken\": \"dek\",\n  \"dekker\": \"dekker\",\n  \"dekking\": \"dekking\",\n  \"dekkingseis\": \"dekkingseis\",\n  \"dekkingsgraad\": \"dekkingsgrad\",\n  \"dekkingsplan\": \"dekkingsplan\",\n  \"dekkleden\": \"dekkled\",\n  \"dekos\": \"dekos\",\n  \"deksel\": \"deksel\",\n  \"dekt\": \"dekt\",\n  \"dekte\": \"dekt\",\n  \"delaney\": \"delaney\",\n  \"delbos\": \"delbos\",\n  \"dele\": \"del\",\n  \"delegatie\": \"delegatie\",\n  \"delegatieleden\": \"delegatieled\",\n  \"delen\": \"del\",\n  \"delende\": \"delend\",\n  \"delfgauw\": \"delfgauw\",\n  \"delfland\": \"delfland\",\n  \"delfstoffen\": \"delfstoff\",\n  \"delfstoffenplanning\": \"delfstoffenplann\",\n  \"delfstoffenwinning\": \"delfstoffenwinn\",\n  \"delfstofwinning\": \"delfstofwinn\",\n  \"delft\": \"delft\",\n  \"delfts\": \"delft\",\n  \"delftse\": \"delft\",\n  \"delfzijl\": \"delfzijl\",\n  \"delibereren\": \"deliberer\",\n  \"delicaat\": \"delicat\",\n  \"delicaats\": \"delicat\",\n  \"delict\": \"delict\",\n  \"delicten\": \"delict\",\n  \"delta\": \"delta\",\n  \"deltagebied\": \"deltagebied\",\n  \"deltaplan\": \"deltaplan\",\n  \"deltawerken\": \"deltawerk\",\n  \"deltawet\": \"deltawet\",\n  \"deltawig\": \"deltaw\",\n  \"delvocid\": \"delvocid\",\n  \"demaco\": \"demaco\",\n  \"demag\": \"demag\",\n  \"deme\": \"dem\",\n  \"demetalisering\": \"demetaliser\",\n  \"demeyer\": \"demeyer\",\n  \"demi\": \"demi\",\n  \"demineralisatie\": \"demineralisatie\",\n  \"democratie\": \"democratie\",\n  \"democratisch\": \"democratisch\",\n  \"democratische\": \"democratisch\",\n  \"democratisering\": \"democratiser\",\n  \"democratiseringsmaatregelen\": \"democratiseringsmaatregel\",\n  \"demografische\": \"demografisch\",\n  \"demon\": \"demon\",\n  \"demonen\": \"demon\",\n  \"demonstranten\": \"demonstrant\",\n  \"demonstratie\": \"demonstratie\",\n  \"demonstratiebedrijven\": \"demonstratiebedrijv\",\n  \"demonstratiefabriek\": \"demonstratiefabriek\",\n  \"demonstratiefase\": \"demonstratiefas\",\n  \"demonstratiemetingen\": \"demonstratiemet\",\n  \"demonstratieproeven\": \"demonstratieproev\",\n  \"demonstratieprogramma\": \"demonstratieprogramma\",\n  \"demonstratieproject\": \"demonstratieproject\",\n  \"demonstratieprojecten\": \"demonstratieproject\",\n  \"demonstraties\": \"demonstraties\",\n  \"demonstratietocht\": \"demonstratietocht\",\n  \"demonstratieversie\": \"demonstratieversie\",\n  \"demonstration\": \"demonstration\",\n  \"demonstreerde\": \"demonstreerd\",\n  \"demonstreert\": \"demonstreert\",\n  \"demonstreren\": \"demonstrer\",\n  \"demontabel\": \"demontabel\",\n  \"demontabele\": \"demontabel\",\n  \"demontage\": \"demontag\",\n  \"demontagetechnieken\": \"demontagetechniek\",\n  \"demonteerbaar\": \"demonter\",\n  \"demonteren\": \"demonter\",\n  \"demoproject\": \"demoproject\",\n  \"dempen\": \"demp\",\n  \"dempende\": \"dempend\",\n  \"demping\": \"demping\",\n  \"den\": \"den\",\n  \"dender\": \"dender\",\n  \"dendrieten\": \"dendriet\",\n  \"denemarken\": \"denemark\",\n  \"dengriza\": \"dengriza\",\n  \"denitrificatie\": \"denitrificatie\",\n  \"denk\": \"denk\",\n  \"dènk\": \"dènk\",\n  \"denkbare\": \"denkbar\",\n  \"denkbeelden\": \"denkbeeld\",\n  \"denkelijk\": \"denkelijk\",\n  \"denken\": \"denk\",\n  \"dènken\": \"dènk\",\n  \"denkend\": \"denkend\",\n  \"denkende\": \"denkend\",\n  \"denkensstilte\": \"denkensstilt\",\n  \"denkensvermoeidheid\": \"denkensvermoeid\",\n  \"denker\": \"denker\",\n  \"denksporten\": \"denksport\",\n  \"denkt\": \"denkt\",\n  \"dènkt\": \"dènkt\",\n  \"denkwijze\": \"denkwijz\",\n  \"denne\": \"denn\",\n  \"denneboom\": \"dennebom\",\n  \"dennebos\": \"dennebos\",\n  \"denneheuvels\": \"denneheuvel\",\n  \"dennen\": \"denn\",\n  \"dennengeur\": \"dennengeur\",\n  \"dennenheuvelen\": \"dennenheuvel\",\n  \"denneweg\": \"denneweg\",\n  \"denox\": \"denox\",\n  \"densiteit\": \"densiteit\",\n  \"density\": \"density\",\n  \"denver\": \"denver\",\n  \"deos\": \"deos\",\n  \"departamento\": \"departamento\",\n  \"departement\": \"departement\",\n  \"departementale\": \"departemental\",\n  \"departementen\": \"departement\",\n  \"department\": \"department\",\n  \"departments\": \"department\",\n  \"deponeren\": \"deponer\",\n  \"deponering\": \"deponer\",\n  \"deponie\": \"deponie\",\n  \"deponievelden\": \"deponieveld\",\n  \"depos\": \"depos\",\n  \"depositie\": \"depositie\",\n  \"depositiegebied\": \"depositiegebied\",\n  \"depositierechten\": \"depositierecht\",\n  \"depositorekeningen\": \"depositoreken\",\n  \"depot\": \"depot\",\n  \"depots\": \"depot\",\n  \"depressies\": \"depressies\",\n  \"der\": \"der\",\n  \"derangeer\": \"deranger\",\n  \"derde\": \"derd\",\n  \"derden\": \"derd\",\n  \"deregulering\": \"dereguler\",\n  \"deretha\": \"deretha\",\n  \"dergelijk\": \"dergelijk\",\n  \"dergelijke\": \"dergelijk\",\n  \"dergelijks\": \"dergelijk\",\n  \"derhalve\": \"derhalv\",\n  \"derived\": \"derived\",\n  \"derks\": \"derk\",\n  \"dermate\": \"dermat\",\n  \"derrière\": \"derrièr\",\n  \"dertien\": \"dertien\",\n  \"dertiende\": \"dertiend\",\n  \"dertienduizend\": \"dertienduiz\",\n  \"dertig\": \"dertig\",\n  \"dertigduizend\": \"dertigduiz\",\n  \"dertigen\": \"dertig\",\n  \"dertigtal\": \"dertigtal\",\n  \"derving\": \"derving\",\n  \"des\": \"des\",\n  \"dès\": \"dès\",\n  \"desalniettemin\": \"desalniettemin\",\n  \"desastreus\": \"desastreus\",\n  \"desastreuze\": \"desastreuz\",\n  \"desbetreffende\": \"desbetreff\",\n  \"desertificatie\": \"desertificatie\",\n  \"design\": \"design\",\n  \"designproject\": \"designproject\",\n  \"designs\": \"design\",\n  \"desilluzie\": \"desilluzie\",\n  \"desinfecteren\": \"desinfecter\",\n  \"desinfectie\": \"desinfectie\",\n  \"desinfectieinstallatie\": \"desinfectieinstallatie\",\n  \"desinfectiesystemen\": \"desinfectiesystem\",\n  \"desintegreren\": \"desintegrer\",\n  \"desinvesteringen\": \"desinvester\",\n  \"desk\": \"desk\",\n  \"deskundig\": \"deskund\",\n  \"deskundige\": \"deskund\",\n  \"deskundigen\": \"deskund\",\n  \"deskundigenpool\": \"deskundigenpol\",\n  \"deskundigheid\": \"deskund\",\n  \"desniettemin\": \"desniettemin\",\n  \"desnoods\": \"desnod\",\n  \"desondanks\": \"desondank\",\n  \"desorptie\": \"desorptie\",\n  \"dessel\": \"dessel\",\n  \"dessens\": \"dessen\",\n  \"dessert\": \"dessert\",\n  \"dessertborden\": \"dessertbord\",\n  \"dessertje\": \"dessertj\",\n  \"destec\": \"destec\",\n  \"destijds\": \"destijd\",\n  \"destillaat\": \"destillat\",\n  \"destillatiekolom\": \"destillatiekolom\",\n  \"destructie\": \"destructie\",\n  \"destructiebedrijven\": \"destructiebedrijv\",\n  \"destructieve\": \"destructiev\",\n  \"destructiewet\": \"destructiewet\",\n  \"destructoren\": \"destructor\",\n  \"det\": \"det\",\n  \"detail\": \"detail\",\n  \"détail\": \"detail\",\n  \"detailhandel\": \"detailhandel\",\n  \"detailhandelsconcern\": \"detailhandelsconcern\",\n  \"detaillering\": \"detailler\",\n  \"detaillist\": \"detaillist\",\n  \"detaillisten\": \"detaillist\",\n  \"details\": \"detail\",\n  \"détails\": \"detail\",\n  \"detecteert\": \"detecteert\",\n  \"detecteren\": \"detecter\",\n  \"detectie\": \"detectie\",\n  \"detectieapparatuur\": \"detectieapparatur\",\n  \"detectiegrens\": \"detectiegren\",\n  \"detectielimiet\": \"detectielimiet\",\n  \"detectielimieten\": \"detectielimiet\",\n  \"detectiemethoden\": \"detectiemethod\",\n  \"detectiestations\": \"detectiestation\",\n  \"detection\": \"detection\",\n  \"detectives\": \"detectives\",\n  \"detector\": \"detector\",\n  \"detention\": \"detention\",\n  \"detergenten\": \"detergent\",\n  \"deterioration\": \"deterioration\",\n  \"deterministische\": \"deterministisch\",\n  \"detlef\": \"detlef\",\n  \"detonation\": \"detonation\",\n  \"detoxificatie\": \"detoxificatie\",\n  \"détraqué\": \"detraque\",\n  \"detroit\": \"detroit\",\n  \"deugd\": \"deugd\",\n  \"deugde\": \"deugd\",\n  \"deugdelijk\": \"deugdelijk\",\n  \"deugdelijke\": \"deugdelijk\",\n  \"deugdelijkheid\": \"deugdelijk\",\n  \"deugdzaam\": \"deugdzam\",\n  \"deugt\": \"deugt\",\n  \"deuntje\": \"deuntj\",\n  \"deur\": \"deur\",\n  \"deuren\": \"deur\",\n  \"deurknop\": \"deurknop\",\n  \"deurne\": \"deurn\",\n  \"deurnese\": \"deurnes\",\n  \"deurnse\": \"deurn\",\n  \"deurposten\": \"deurpost\",\n  \"deurtje\": \"deurtj\",\n  \"deurtjes\": \"deurtjes\",\n  \"deurverliezen\": \"deurverliez\",\n  \"deuss\": \"deus\",\n  \"deutag\": \"deutag\",\n  \"deuterium\": \"deuterium\",\n  \"deutsche\": \"deutsch\",\n  \"deutschen\": \"deutsch\",\n  \"deutscher\": \"deutscher\",\n  \"deutschland\": \"deutschland\",\n  \"deutschlands\": \"deutschland\",\n  \"devaluatie\": \"devaluatie\",\n  \"development\": \"development\",\n  \"developments\": \"development\",\n  \"deventer\": \"deventer\",\n  \"deventernaren\": \"deventernar\",\n  \"devénus\": \"devenus\",\n  \"devices\": \"devices\",\n  \"devriese\": \"devries\",\n  \"devulcanisering\": \"devulcaniser\",\n  \"devulcaniseringsproces\": \"devulcaniseringsproces\",\n  \"dewi\": \"dewi\",\n  \"deze\": \"dez\",\n  \"déze\": \"dez\",\n  \"dezelfde\": \"dezelfd\",\n  \"dezen\": \"dez\",\n  \"dezer\": \"dezer\",\n  \"dézingage\": \"dezingag\",\n  \"dezonering\": \"dezoner\",\n  \"dfa\": \"dfa\",\n  \"dfg\": \"dfg\",\n  \"dg\": \"dg\",\n  \"dgis\": \"dgis\",\n  \"dgm\": \"dgm\",\n  \"dgt\": \"dgt\",\n  \"dgw\": \"dgw\",\n  \"dhr\": \"dhr\",\n  \"dhv\": \"dhv\",\n  \"dia\": \"dia\",\n  \"diafaan\": \"diafan\",\n  \"diagnose\": \"diagnos\",\n  \"diagonaal\": \"diagonal\",\n  \"dialoog\": \"dialog\",\n  \"diamant\": \"diamant\",\n  \"diamanten\": \"diamant\",\n  \"diameter\": \"diameter\",\n  \"diameters\": \"diameter\",\n  \"diana\": \"diana\",\n  \"diary\": \"diary\",\n  \"dibenzo\": \"dibenzo\",\n  \"dibenzofurenen\": \"dibenzofuren\",\n  \"dichloorbenzeen\": \"dichloorbenzen\",\n  \"dichloormethaan\": \"dichloormethan\",\n  \"dichloran\": \"dichloran\",\n  \"dicht\": \"dicht\",\n  \"dichtbevolkt\": \"dichtbevolkt\",\n  \"dichtbevolkte\": \"dichtbevolkt\",\n  \"dichtbij\": \"dichtbij\",\n  \"dichte\": \"dicht\",\n  \"dichten\": \"dicht\",\n  \"dichter\": \"dichter\",\n  \"dichterbij\": \"dichterbij\",\n  \"dichterlijk\": \"dichter\",\n  \"dichterlijke\": \"dichter\",\n  \"dichtgeduisterde\": \"dichtgeduisterd\",\n  \"dichtgeknepen\": \"dichtgeknep\",\n  \"dichtgeknoopt\": \"dichtgeknoopt\",\n  \"dichtgesloten\": \"dichtgeslot\",\n  \"dichtheden\": \"dichtheid\",\n  \"dichtheid\": \"dichtheid\",\n  \"dichtheidsscheiding\": \"dichtheidsscheid\",\n  \"dichtheidsverschil\": \"dichtheidsverschil\",\n  \"dichtkwakken\": \"dichtkwak\",\n  \"dichtslaande\": \"dichtslaand\",\n  \"dichtslibben\": \"dichtslibb\",\n  \"dichtslibbende\": \"dichtslibb\",\n  \"dichtst\": \"dichtst\",\n  \"dichtstbijzijnde\": \"dichtstbijzijnd\",\n  \"dichttrekken\": \"dichttrek\",\n  \"dick\": \"dick\",\n  \"dicke\": \"dick\",\n  \"dicofol\": \"dicofol\",\n  \"dictatoriale\": \"dictatorial\",\n  \"didam\": \"didam\",\n  \"die\": \"die\",\n  \"diè\": \"diè\",\n  \"dief\": \"dief\",\n  \"diefstal\": \"diefstal\",\n  \"diegene\": \"dieg\",\n  \"diegenen\": \"diegen\",\n  \"diego\": \"diego\",\n  \"diekstra\": \"diekstra\",\n  \"dieldrin\": \"dieldrin\",\n  \"diemen\": \"diem\",\n  \"diemertak\": \"diemertak\",\n  \"diemerzeedijk\": \"diemerzeedijk\",\n  \"dienaangaande\": \"dienaangaand\",\n  \"diende\": \"diend\",\n  \"dienden\": \"diend\",\n  \"dienen\": \"dien\",\n  \"dienknechts\": \"dienknecht\",\n  \"diens\": \"dien\",\n  \"dienst\": \"dienst\",\n  \"dienstbare\": \"dienstbar\",\n  \"dienstboden\": \"dienstbod\",\n  \"dienstdoende\": \"dienstdoend\",\n  \"diensten\": \"dienst\",\n  \"dienstenafval\": \"dienstenafval\",\n  \"dienstenbonden\": \"dienstenbond\",\n  \"dienstensector\": \"dienstensector\",\n  \"dienstkringen\": \"dienstkring\",\n  \"dienstmaagd\": \"dienstmaagd\",\n  \"dienstverlenend\": \"dienstverlen\",\n  \"dienstverlenende\": \"dienstverlen\",\n  \"dienstverlening\": \"dienstverlen\",\n  \"dient\": \"dient\",\n  \"diep\": \"diep\",\n  \"diepe\": \"diep\",\n  \"dieper\": \"dieper\",\n  \"diéper\": \"dieper\",\n  \"diepere\": \"dieper\",\n  \"diepgaander\": \"diepgaander\",\n  \"diepgevroren\": \"diepgevror\",\n  \"diepgravende\": \"diepgrav\",\n  \"diepinfiltratie\": \"diepinfiltratie\",\n  \"diepst\": \"diepst\",\n  \"diepste\": \"diepst\",\n  \"diepte\": \"diept\",\n  \"diepten\": \"diept\",\n  \"dieptepunt\": \"dieptepunt\",\n  \"dieptes\": \"dieptes\",\n  \"dieptewerking\": \"dieptewerk\",\n  \"diepvries\": \"diepvries\",\n  \"diepvrieskast\": \"diepvrieskast\",\n  \"diepvriesprodukten\": \"diepvriesprodukt\",\n  \"dier\": \"dier\",\n  \"dierbaar\": \"dierbar\",\n  \"dierbaars\": \"dierbar\",\n  \"dieren\": \"dier\",\n  \"dierenarts\": \"dierenart\",\n  \"dierenartsen\": \"dierenarts\",\n  \"dierenbeschermers\": \"dierenbeschermer\",\n  \"dierenbescherming\": \"dierenbescherm\",\n  \"dierenbestand\": \"dierenbestand\",\n  \"dierenleed\": \"dierenled\",\n  \"dierenpark\": \"dierenpark\",\n  \"dierentuin\": \"dierentuin\",\n  \"dierenwelzijn\": \"dierenwelzijn\",\n  \"diergroepen\": \"diergroep\",\n  \"dierlijk\": \"dierlijk\",\n  \"dierlijke\": \"dierlijk\",\n  \"dierplaats\": \"dierplat\",\n  \"dierplaatsen\": \"dierplaats\",\n  \"dierplagen\": \"dierplag\",\n  \"dierproeven\": \"dierproev\",\n  \"diersoorten\": \"diersoort\",\n  \"diertellingen\": \"diertell\",\n  \"diervoeder\": \"diervoeder\",\n  \"diervoeders\": \"diervoeder\",\n  \"diervriendelijk\": \"diervriend\",\n  \"diervriendelijker\": \"diervriendelijker\",\n  \"diesel\": \"diesel\",\n  \"dieselaccijnzen\": \"dieselaccijnz\",\n  \"dieselauto\": \"dieselauto\",\n  \"dieselbehoefte\": \"dieselbehoeft\",\n  \"dieselgassen\": \"dieselgass\",\n  \"dieselgemaal\": \"dieselgemal\",\n  \"dieselmotor\": \"dieselmotor\",\n  \"dieselmotoren\": \"dieselmotor\",\n  \"dieselolie\": \"dieselolie\",\n  \"diesels\": \"diesel\",\n  \"dieseluitlaatgassen\": \"dieseluitlaatgass\",\n  \"dieselverbruik\": \"dieselverbruik\",\n  \"dieselwagens\": \"dieselwagen\",\n  \"dietheenglycol\": \"dietheenglycol\",\n  \"diethylamine\": \"diethylamin\",\n  \"dietz\": \"dietz\",\n  \"dievenzielen\": \"dievenziel\",\n  \"diever\": \"diever\",\n  \"diezelfde\": \"diezelfd\",\n  \"difazio\": \"difazio\",\n  \"difenylmethaan\": \"difenylmethan\",\n  \"diffamatie\": \"diffamatie\",\n  \"differentiaalgeneratoren\": \"differentiaalgenerator\",\n  \"differential\": \"differential\",\n  \"differentieel\": \"differentieel\",\n  \"differentiemodel\": \"differentiemodel\",\n  \"diffuse\": \"diffus\",\n  \"diffuus\": \"diffus\",\n  \"diftar\": \"diftar\",\n  \"dig\": \"dig\",\n  \"digereren\": \"digerer\",\n  \"digererende\": \"digerer\",\n  \"digitaal\": \"digital\",\n  \"digital\": \"digital\",\n  \"digitale\": \"digital\",\n  \"diglycolamine\": \"diglycolamin\",\n  \"diisocyanaat\": \"diisocyanat\",\n  \"diisodecylphthalaat\": \"diisodecylphthalat\",\n  \"dij\": \"dij\",\n  \"dijen\": \"dij\",\n  \"dijk\": \"dijk\",\n  \"dijkbekleding\": \"dijkbekled\",\n  \"dijkdoorbraak\": \"dijkdoorbrak\",\n  \"dijken\": \"dijk\",\n  \"dijkenbouwer\": \"dijkenbouwer\",\n  \"dijkerhof\": \"dijkerhof\",\n  \"dijkerhofs\": \"dijkerhof\",\n  \"dijklichaam\": \"dijklicham\",\n  \"dijkondermijning\": \"dijkondermijn\",\n  \"dijkophoging\": \"dijkophog\",\n  \"dijkstal\": \"dijkstal\",\n  \"dijkstraat\": \"dijkstrat\",\n  \"dijkvak\": \"dijkvak\",\n  \"dijkverbetering\": \"dijkverbeter\",\n  \"dijkverhoging\": \"dijkverhog\",\n  \"dijkverzwaring\": \"dijkverzwar\",\n  \"dijkverzwaringen\": \"dijkverzwar\",\n  \"dijkverzwaringsprogramma\": \"dijkverzwaringsprogramma\",\n  \"dijon\": \"dijon\",\n  \"dijt\": \"dijt\",\n  \"dik\": \"dik\",\n  \"dikke\": \"dik\",\n  \"dikker\": \"dikker\",\n  \"dikkere\": \"dikker\",\n  \"dikte\": \"dikt\",\n  \"dikten\": \"dikt\",\n  \"dikwijls\": \"dikwijl\",\n  \"dilemma\": \"dilemma\",\n  \"dilettant\": \"dilettant\",\n  \"dilettantisme\": \"dilettantism\",\n  \"diligentia\": \"diligentia\",\n  \"dillenburgstraat\": \"dillenburgstrat\",\n  \"dimecron\": \"dimecron\",\n  \"dimensies\": \"dimensies\",\n  \"dimensionale\": \"dimensional\",\n  \"dimensioneren\": \"dimensioner\",\n  \"dimensionering\": \"dimensioner\",\n  \"dimethoaat\": \"dimethoaat\",\n  \"dimethyl\": \"dimethyl\",\n  \"dimethylether\": \"dimethylether\",\n  \"dimilin\": \"dimilin\",\n  \"dimix\": \"dimix\",\n  \"din\": \"din\",\n  \"dinatoire\": \"dinatoir\",\n  \"dineer\": \"diner\",\n  \"dineert\": \"dineert\",\n  \"diner\": \"diner\",\n  \"dinér\": \"diner\",\n  \"dineren\": \"diner\",\n  \"diners\": \"diner\",\n  \"dinertafel\": \"dinertafel\",\n  \"dinertje\": \"dinertj\",\n  \"dinertjes\": \"dinertjes\",\n  \"ding\": \"ding\",\n  \"dingen\": \"ding\",\n  \"dingetje\": \"dingetj\",\n  \"dingetjes\": \"dingetjes\",\n  \"dingt\": \"dingt\",\n  \"dini\": \"dini\",\n  \"dinkel\": \"dinkel\",\n  \"dinkelman\": \"dinkelman\",\n  \"dino\": \"dino\",\n  \"dinsdag\": \"dinsdag\",\n  \"dinsdagochtend\": \"dinsdagocht\",\n  \"dinter\": \"dinter\",\n  \"dinxperlo\": \"dinxperlo\",\n  \"dinxperloo\": \"dinxperloo\",\n  \"diosynth\": \"diosynth\",\n  \"dioxin\": \"dioxin\",\n  \"dioxine\": \"dioxin\",\n  \"dioxinehoudend\": \"dioxinehoud\",\n  \"dioxinen\": \"dioxin\",\n  \"dioxines\": \"dioxines\",\n  \"dioxinestrategie\": \"dioxinestrategie\",\n  \"dioxinevondsten\": \"dioxinevondst\",\n  \"dioxyne\": \"dioxyn\",\n  \"dioxynen\": \"dioxyn\",\n  \"dioxynes\": \"dioxynes\",\n  \"dipenteen\": \"dipenten\",\n  \"diploma\": \"diploma\",\n  \"diplomaat\": \"diplomat\",\n  \"diplomaten\": \"diplomat\",\n  \"diplomatie\": \"diplomatie\",\n  \"diplomatiek\": \"diplomatiek\",\n  \"diplomatieke\": \"diplomatiek\",\n  \"diplomatique\": \"diplomatique\",\n  \"diplomatisch\": \"diplomatisch\",\n  \"dipreen\": \"dipren\",\n  \"dire\": \"dir\",\n  \"direct\": \"direct\",\n  \"directe\": \"direct\",\n  \"directeur\": \"directeur\",\n  \"directeuren\": \"directeur\",\n  \"directie\": \"directie\",\n  \"directies\": \"directies\",\n  \"direction\": \"direction\",\n  \"director\": \"director\",\n  \"directoraat\": \"directorat\",\n  \"dirk\": \"dirk\",\n  \"dis\": \"dis\",\n  \"disassembly\": \"disassembly\",\n  \"discipel\": \"discipel\",\n  \"discipline\": \"disciplin\",\n  \"disciplines\": \"disciplines\",\n  \"discontinu\": \"discontinu\",\n  \"discontovoet\": \"discontovoet\",\n  \"discotheken\": \"discothek\",\n  \"discreet\": \"discret\",\n  \"discriminerend\": \"discriminer\",\n  \"discussie\": \"discussie\",\n  \"discussieavond\": \"discussieavond\",\n  \"discussiecentrum\": \"discussiecentrum\",\n  \"discussienota\": \"discussienota\",\n  \"discussienotitie\": \"discussienotitie\",\n  \"discussiepartners\": \"discussiepartner\",\n  \"discussieplatformen\": \"discussieplatform\",\n  \"discussiepunt\": \"discussiepunt\",\n  \"discussiepunten\": \"discussiepunt\",\n  \"discussiëren\": \"discussier\",\n  \"discussies\": \"discussies\",\n  \"discutabel\": \"discutabel\",\n  \"disgenoten\": \"disgenot\",\n  \"disharmonie\": \"disharmonie\",\n  \"disharmonisch\": \"disharmonisch\",\n  \"diskette\": \"disket\",\n  \"diskrediet\": \"diskrediet\",\n  \"disks\": \"disk\",\n  \"disparaat\": \"disparat\",\n  \"disparate\": \"disparat\",\n  \"dispersie\": \"dispersie\",\n  \"dispersies\": \"dispersies\",\n  \"display\": \"display\",\n  \"disposal\": \"disposal\",\n  \"dissident\": \"dissident\",\n  \"dissidente\": \"dissident\",\n  \"dissolution\": \"dissolution\",\n  \"distance\": \"distanc\",\n  \"distillaat\": \"distillat\",\n  \"distilleerderijen\": \"distilleerderij\",\n  \"distilleren\": \"distiller\",\n  \"distinctie\": \"distinctie\",\n  \"distractie\": \"distractie\",\n  \"distri\": \"distri\",\n  \"distribueert\": \"distribueert\",\n  \"distributed\": \"distributed\",\n  \"distributeur\": \"distributeur\",\n  \"distributeurs\": \"distributeur\",\n  \"distributie\": \"distributie\",\n  \"distributiebedrijf\": \"distributiebedrijf\",\n  \"distributiebedrijven\": \"distributiebedrijv\",\n  \"distributiecentra\": \"distributiecentra\",\n  \"distributiecentrum\": \"distributiecentrum\",\n  \"distributiefunctie\": \"distributiefunctie\",\n  \"distributielogistiek\": \"distributielogistiek\",\n  \"distributiemaatschappij\": \"distributiemaatschappij\",\n  \"distributiemaatschappijen\": \"distributiemaatschappij\",\n  \"distributienet\": \"distributienet\",\n  \"distributiepark\": \"distributiepark\",\n  \"distributiesector\": \"distributiesector\",\n  \"distributiesysteem\": \"distributiesystem\",\n  \"distributiesystemen\": \"distributiesystem\",\n  \"district\": \"district\",\n  \"districten\": \"district\",\n  \"districtshoofd\": \"districtshoofd\",\n  \"districtsmanager\": \"districtsmanager\",\n  \"dit\": \"dit\",\n  \"ditar\": \"ditar\",\n  \"dithiocarbamaten\": \"dithiocarbamat\",\n  \"ditmaal\": \"ditmal\",\n  \"ditshuizen\": \"ditshuiz\",\n  \"ditzelfde\": \"ditzelfd\",\n  \"diuron\": \"diuron\",\n  \"diuronvervuiling\": \"diuronvervuil\",\n  \"divan\": \"divan\",\n  \"diverse\": \"diver\",\n  \"diverseren\": \"diverser\",\n  \"diversified\": \"diversified\",\n  \"diversiteit\": \"diversiteit\",\n  \"dividend\": \"divid\",\n  \"dividenden\": \"divid\",\n  \"divisie\": \"divisie\",\n  \"divisies\": \"divisies\",\n  \"djakarta\": \"djakarta\",\n  \"djedjonkong\": \"djedjonkong\",\n  \"dk\": \"dk\",\n  \"dkny\": \"dkny\",\n  \"dkr\": \"dkr\",\n  \"dlo\": \"dlo\",\n  \"dlr\": \"dlr\",\n  \"dlv\": \"dlv\",\n  \"dm\": \"dm\",\n  \"dme\": \"dme\",\n  \"dmu\": \"dmu\",\n  \"dmw\": \"dmw\",\n  \"dna\": \"dna\",\n  \"dnas\": \"dnas\",\n  \"dnv\": \"dnv\",\n  \"dobbelstenen\": \"dobbelsten\",\n  \"dobber\": \"dobber\",\n  \"dobbestroom\": \"dobbestrom\",\n  \"dobris\": \"dobris\",\n  \"doceerventielen\": \"doceerventiel\",\n  \"docent\": \"docent\",\n  \"docenten\": \"docent\",\n  \"doch\": \"doch\",\n  \"dochter\": \"dochter\",\n  \"dochterbedrijf\": \"dochterbedrijf\",\n  \"dochteren\": \"dochter\",\n  \"dochtermaatschappij\": \"dochtermaatschappij\",\n  \"dochteronderneming\": \"dochterondernem\",\n  \"dochterondernemingen\": \"dochterondernem\",\n  \"dochters\": \"dochter\",\n  \"dochtertje\": \"dochtertj\",\n  \"doctoraal\": \"doctoral\",\n  \"doctoraalscriptie\": \"doctoraalscriptie\",\n  \"doctoraalstudenten\": \"doctoraalstudent\",\n  \"document\": \"document\",\n  \"documentatie\": \"documentatie\",\n  \"documentatiecentrum\": \"documentatiecentrum\",\n  \"documenten\": \"document\",\n  \"dodderig\": \"dodder\",\n  \"dode\": \"dod\",\n  \"dodelijk\": \"dodelijk\",\n  \"dodelijke\": \"dodelijk\",\n  \"doden\": \"dod\",\n  \"dodewaard\": \"dodewaard\",\n  \"doding\": \"doding\",\n  \"doe\": \"doe\",\n  \"doek\": \"doek\",\n  \"doèk\": \"doèk\",\n  \"doeken\": \"doek\",\n  \"doekenfilter\": \"doekenfilter\",\n  \"doekenfilters\": \"doekenfilter\",\n  \"doekje\": \"doekj\",\n  \"doel\": \"doel\",\n  \"doelde\": \"doeld\",\n  \"doeleinden\": \"doeleind\",\n  \"doelen\": \"doel\",\n  \"doelende\": \"doelend\",\n  \"doelgerichte\": \"doelgericht\",\n  \"doelgerichter\": \"doelgerichter\",\n  \"doelgroep\": \"doelgroep\",\n  \"doelgroepen\": \"doelgroep\",\n  \"doelgroepenbeleid\": \"doelgroepenbeleid\",\n  \"doelgroepenoverleg\": \"doelgroepenoverleg\",\n  \"doelloos\": \"doellos\",\n  \"doelloosheid\": \"doellos\",\n  \"doelmatig\": \"doelmat\",\n  \"doelmatige\": \"doelmat\",\n  \"doelmatiger\": \"doelmatiger\",\n  \"doelmatigheid\": \"doelmat\",\n  \"doeloe\": \"doeloe\",\n  \"doelstelling\": \"doelstell\",\n  \"doelstellingen\": \"doelstell\",\n  \"doelt\": \"doelt\",\n  \"doeltreffend\": \"doeltreff\",\n  \"doeltreffende\": \"doeltreff\",\n  \"doeltreffender\": \"doeltreffender\",\n  \"doeltreffendheid\": \"doeltreff\",\n  \"doelvoorschriften\": \"doelvoorschrift\",\n  \"doem\": \"doem\",\n  \"doemde\": \"doemd\",\n  \"doemden\": \"doemd\",\n  \"doemdenken\": \"doemdenk\",\n  \"doemen\": \"doem\",\n  \"doen\": \"doen\",\n  \"dòen\": \"dòen\",\n  \"doenbaar\": \"doenbar\",\n  \"doende\": \"doend\",\n  \"doenerij\": \"doenerij\",\n  \"doet\": \"doet\",\n  \"doetinchem\": \"doetinchem\",\n  \"doetinchemse\": \"doetinchem\",\n  \"doezelde\": \"doezeld\",\n  \"doezeling\": \"doezel\",\n  \"doezeltje\": \"doezeltj\",\n  \"dof\": \"dof\",\n  \"doffe\": \"doff\",\n  \"dok\": \"dok\",\n  \"doken\": \"dok\",\n  \"dokken\": \"dok\",\n  \"dokkum\": \"dokkum\",\n  \"dokter\": \"dokter\",\n  \"dokters\": \"dokter\",\n  \"doktertje\": \"doktertj\",\n  \"doktoren\": \"doktor\",\n  \"dokumentatiedienst\": \"dokumentatiedienst\",\n  \"dokweg\": \"dokweg\",\n  \"dokwerker\": \"dokwerker\",\n  \"dol\": \"dol\",\n  \"dòl\": \"dòl\",\n  \"dole\": \"dol\",\n  \"dolf\": \"dolf\",\n  \"dolfijnen\": \"dolfijn\",\n  \"dolheden\": \"dolheid\",\n  \"dolheid\": \"dolheid\",\n  \"dolkmes\": \"dolkmes\",\n  \"dollach\": \"dollach\",\n  \"dollar\": \"dollar\",\n  \"dollarcent\": \"dollarcent\",\n  \"dollard\": \"dollard\",\n  \"dollarkoers\": \"dollarkoer\",\n  \"dollars\": \"dollar\",\n  \"dolle\": \"doll\",\n  \"doller\": \"doller\",\n  \"dolletjes\": \"dolletjes\",\n  \"dolman\": \"dolman\",\n  \"dolomiet\": \"dolomiet\",\n  \"dom\": \"dom\",\n  \"domeinen\": \"domein\",\n  \"domheid\": \"domheid\",\n  \"dominante\": \"dominant\",\n  \"dominanter\": \"dominanter\",\n  \"domineerde\": \"domineerd\",\n  \"domineren\": \"dominer\",\n  \"dominerende\": \"dominer\",\n  \"domino\": \"domino\",\n  \"dominostenen\": \"dominosten\",\n  \"domme\": \"domm\",\n  \"dommel\": \"dommel\",\n  \"dommelde\": \"dommeld\",\n  \"dommelig\": \"dommel\",\n  \"dommen\": \"domm\",\n  \"dommetjes\": \"dommetjes\",\n  \"domo\": \"domo\",\n  \"dompel\": \"dompel\",\n  \"dompelen\": \"dompel\",\n  \"dompelende\": \"dompel\",\n  \"dompelpompen\": \"dompelpomp\",\n  \"dompelsysteem\": \"dompelsystem\",\n  \"doms\": \"dom\",\n  \"donateurs\": \"donateur\",\n  \"donaties\": \"donaties\",\n  \"donatus\": \"donatus\",\n  \"donder\": \"donder\",\n  \"donderdag\": \"donderdag\",\n  \"donderdagavond\": \"donderdagavond\",\n  \"donderde\": \"donderd\",\n  \"donderen\": \"donder\",\n  \"donderwagen\": \"donderwag\",\n  \"doneert\": \"doneert\",\n  \"dong\": \"dong\",\n  \"dongping\": \"dongping\",\n  \"donker\": \"donker\",\n  \"donkerblauw\": \"donkerblauw\",\n  \"donkerbruin\": \"donkerbruin\",\n  \"donkerde\": \"donkerd\",\n  \"donkerden\": \"donkerd\",\n  \"donkerder\": \"donkerder\",\n  \"donkerdik\": \"donkerdik\",\n  \"donkere\": \"donker\",\n  \"donkerende\": \"donker\",\n  \"donkerrode\": \"donkerrod\",\n  \"donkerstraat\": \"donkerstrat\",\n  \"donkertjes\": \"donkertjes\",\n  \"donorlanden\": \"donorland\",\n  \"dons\": \"don\",\n  \"donsde\": \"donsd\",\n  \"donsdiepe\": \"donsdiep\",\n  \"donzen\": \"donz\",\n  \"donzig\": \"donzig\",\n  \"donzige\": \"donzig\",\n  \"dood\": \"dod\",\n  \"doód\": \"dod\",\n  \"doodde\": \"dod\",\n  \"doodden\": \"dod\",\n  \"doodeenvoudig\": \"doodeenvoud\",\n  \"doodeenvoudige\": \"doodeenvoud\",\n  \"doodgaan\": \"doodgan\",\n  \"doodgaat\": \"doodgat\",\n  \"doodgewoon\": \"doodgewon\",\n  \"doodkalm\": \"doodkalm\",\n  \"doodmoe\": \"doodmoe\",\n  \"doodmoeheid\": \"doodmoeheid\",\n  \"doods\": \"dod\",\n  \"doodsbang\": \"doodsbang\",\n  \"doodsbleek\": \"doodsblek\",\n  \"doodsbleke\": \"doodsblek\",\n  \"doodse\": \"dod\",\n  \"doodsheid\": \"doodsheid\",\n  \"doodskist\": \"doodskist\",\n  \"doodsoorzaak\": \"doodsoorzak\",\n  \"doodsoorzaken\": \"doodsoorzak\",\n  \"doodsstrijd\": \"doodsstrijd\",\n  \"doodstil\": \"doodstil\",\n  \"doodstille\": \"doodstill\",\n  \"doodstraf\": \"doodstraf\",\n  \"doodstraffen\": \"doodstraff\",\n  \"doodsvonnissen\": \"doodsvonniss\",\n  \"doodt\": \"doodt\",\n  \"doodziek\": \"doodziek\",\n  \"doof\": \"dof\",\n  \"doofde\": \"doofd\",\n  \"doofden\": \"doofd\",\n  \"dooi\": \"dooi\",\n  \"dooien\": \"dooi\",\n  \"dooiing\": \"dooiing\",\n  \"dooimiddel\": \"dooimiddel\",\n  \"dooimiddelen\": \"dooimiddel\",\n  \"dooiproces\": \"dooiproces\",\n  \"dooit\": \"dooit\",\n  \"dooiwerking\": \"dooiwerk\",\n  \"dook\": \"dok\",\n  \"doolhof\": \"doolhof\",\n  \"doomden\": \"doomd\",\n  \"doomernik\": \"doomernik\",\n  \"door\": \"dor\",\n  \"dooraderd\": \"dooraderd\",\n  \"doorbereken\": \"doorberek\",\n  \"doorberekend\": \"doorberek\",\n  \"doorberekenen\": \"doorbereken\",\n  \"doorboring\": \"doorbor\",\n  \"doorbraak\": \"doorbrak\",\n  \"doorbraaktechnologieën\": \"doorbraaktechnologieen\",\n  \"doorbraken\": \"doorbrak\",\n  \"doorbreken\": \"doorbrek\",\n  \"doorbroken\": \"doorbrok\",\n  \"doordacht\": \"doordacht\",\n  \"doordat\": \"doordat\",\n  \"doordraaien\": \"doordraai\",\n  \"doordringbare\": \"doordring\",\n  \"doordringen\": \"doordring\",\n  \"doordringend\": \"doordring\",\n  \"doordringende\": \"doordring\",\n  \"doordringing\": \"doordring\",\n  \"doordringt\": \"doordringt\",\n  \"doordrong\": \"doordrong\",\n  \"doordrongen\": \"doordrong\",\n  \"dooreen\": \"dooren\",\n  \"doorgaan\": \"doorgan\",\n  \"doorgaande\": \"doorgaand\",\n  \"doorgaans\": \"doorgan\",\n  \"doorgaat\": \"doorgat\",\n  \"doorgangsdepot\": \"doorgangsdepot\",\n  \"doorgangsdepots\": \"doorgangsdepot\",\n  \"doorgebracht\": \"doorgebracht\",\n  \"doorgebroken\": \"doorgebrok\",\n  \"doorgedrongen\": \"doorgedrong\",\n  \"doorgedrukt\": \"doorgedrukt\",\n  \"doorgegeven\": \"doorgegev\",\n  \"doorgehaalde\": \"doorgehaald\",\n  \"doorgeleverd\": \"doorgeleverd\",\n  \"doorgelicht\": \"doorgelicht\",\n  \"doorgemaakt\": \"doorgemaakt\",\n  \"doorgeschoten\": \"doorgeschot\",\n  \"doorgesluisd\": \"doorgesluisd\",\n  \"doorgesneden\": \"doorgesned\",\n  \"doorgespeeld\": \"doorgespeeld\",\n  \"doorgespoeld\": \"doorgespoeld\",\n  \"doorgevoerd\": \"doorgevoerd\",\n  \"doorgezaagd\": \"doorgezaagd\",\n  \"doorgezaaid\": \"doorgezaaid\",\n  \"doorgezet\": \"doorgezet\",\n  \"doorging\": \"doorging\",\n  \"doorglimpt\": \"doorglimpt\",\n  \"doorgloeid\": \"doorgloeid\",\n  \"doorgroeibaar\": \"doorgroeibar\",\n  \"doorgroeibaarheid\": \"doorgroeibar\",\n  \"doorgroeien\": \"doorgroei\",\n  \"doorgroeiend\": \"doorgroei\",\n  \"doorgrondde\": \"doorgrond\",\n  \"doorgronden\": \"doorgrond\",\n  \"doorheen\": \"doorhen\",\n  \"doorhuiverd\": \"doorhuiverd\",\n  \"doorhuiverde\": \"doorhuiverd\",\n  \"doorhuiveren\": \"doorhuiver\",\n  \"doorkende\": \"doorkend\",\n  \"doorklinken\": \"doorklink\",\n  \"doorklinkende\": \"doorklink\",\n  \"doorkneed\": \"doorkned\",\n  \"doorkomen\": \"doorkom\",\n  \"doorkruisen\": \"doorkruis\",\n  \"doorkruisende\": \"doorkruis\",\n  \"doorlaat\": \"doorlat\",\n  \"doorlaatwaarde\": \"doorlaatwaard\",\n  \"doorlas\": \"doorlas\",\n  \"doorlaten\": \"doorlat\",\n  \"doorlatende\": \"doorlat\",\n  \"doorlatendheid\": \"doorlat\",\n  \"doorleefd\": \"doorleefd\",\n  \"doorlichting\": \"doorlicht\",\n  \"doorliep\": \"doorliep\",\n  \"doorliepen\": \"doorliep\",\n  \"doorloopt\": \"doorloopt\",\n  \"doorlooptijd\": \"doorlooptijd\",\n  \"doorlooptijden\": \"doorlooptijd\",\n  \"doorlopen\": \"doorlop\",\n  \"doorlopend\": \"doorlop\",\n  \"doormaken\": \"doormak\",\n  \"doormengd\": \"doormengd\",\n  \"doornbos\": \"doornbos\",\n  \"doorne\": \"doorn\",\n  \"doornenburg\": \"doornenburg\",\n  \"doornspijk\": \"doornspijk\",\n  \"doorpompen\": \"doorpomp\",\n  \"doorpraten\": \"doorprat\",\n  \"doorpriemde\": \"doorpriemd\",\n  \"doorprikkende\": \"doorprik\",\n  \"doorrekening\": \"doorreken\",\n  \"doorrekent\": \"doorrekent\",\n  \"doors\": \"dor\",\n  \"doorschemeren\": \"doorschemer\",\n  \"doorschemering\": \"doorschemer\",\n  \"doorschieten\": \"doorschiet\",\n  \"doorschoten\": \"doorschot\",\n  \"doorslaan\": \"doorslan\",\n  \"doorslag\": \"doorslag\",\n  \"doorslaggevend\": \"doorslaggev\",\n  \"doorslaggevende\": \"doorslaggev\",\n  \"doorsnede\": \"doorsned\",\n  \"doorsneden\": \"doorsned\",\n  \"doorsnee\": \"doorsnee\",\n  \"doorsneed\": \"doorsned\",\n  \"doorsnijdt\": \"doorsnijdt\",\n  \"doorspoelen\": \"doorspoel\",\n  \"doorsprak\": \"doorsprak\",\n  \"doorspraken\": \"doorsprak\",\n  \"doorspreken\": \"doorsprek\",\n  \"doorstaan\": \"doorstan\",\n  \"doorstarters\": \"doorstarter\",\n  \"doorstoomde\": \"doorstoomd\",\n  \"doorstroming\": \"doorstrom\",\n  \"doorstromingsmaatregelen\": \"doorstromingsmaatregel\",\n  \"doorstroombegrenzers\": \"doorstroombegrenzer\",\n  \"doorstroomelektrolysecel\": \"doorstroomelektrolysecel\",\n  \"doortastender\": \"doortastender\",\n  \"doortramd\": \"doortramd\",\n  \"doortrekken\": \"doortrek\",\n  \"doortrilde\": \"doortrild\",\n  \"doortrippeld\": \"doortrippeld\",\n  \"doortrokken\": \"doortrok\",\n  \"doorverkocht\": \"doorverkocht\",\n  \"doorvloeien\": \"doorvloei\",\n  \"doorvoed\": \"doorvoed\",\n  \"doorvoeds\": \"doorvoed\",\n  \"doorvoeld\": \"doorvoeld\",\n  \"doorvoer\": \"doorvoer\",\n  \"doorvoeren\": \"doorvoer\",\n  \"doorvoerland\": \"doorvoerland\",\n  \"doorwaaide\": \"doorwaaid\",\n  \"doorwaden\": \"doorwad\",\n  \"doorwas\": \"doorwas\",\n  \"doorweekt\": \"doorweekt\",\n  \"doorwerken\": \"doorwerk\",\n  \"doorzaaien\": \"doorzaai\",\n  \"doorzaaimachine\": \"doorzaaimachin\",\n  \"doorzag\": \"doorzag\",\n  \"doorzet\": \"doorzet\",\n  \"doorzetten\": \"doorzet\",\n  \"doorzichtig\": \"doorzicht\",\n  \"doorzichtige\": \"doorzicht\",\n  \"doorzichtiger\": \"doorzichtiger\",\n  \"doorzien\": \"doorzien\",\n  \"doorzocht\": \"doorzocht\",\n  \"doorzoekende\": \"doorzoek\",\n  \"doos\": \"dos\",\n  \"doosje\": \"doosj\",\n  \"dopje\": \"dopj\",\n  \"doppen\": \"dopp\",\n  \"dor\": \"dor\",\n  \"dordecht\": \"dordecht\",\n  \"dordrecht\": \"dordrecht\",\n  \"dordtse\": \"dordt\",\n  \"dorine\": \"dorin\",\n  \"dorinetje\": \"dorinetj\",\n  \"dormagen\": \"dormag\",\n  \"dorp\": \"dorp\",\n  \"dorpen\": \"dorp\",\n  \"dorpsbewoners\": \"dorpsbewoner\",\n  \"dorpscomité\": \"dorpscomit\",\n  \"dorpsgemeenschappen\": \"dorpsgemeenschapp\",\n  \"dorpshuis\": \"dorpshuis\",\n  \"dorpskern\": \"dorpskern\",\n  \"dorpskernen\": \"dorpskern\",\n  \"dorpsraad\": \"dorpsrad\",\n  \"dorpsspitsen\": \"dorpsspits\",\n  \"dorpsspitsjes\": \"dorpsspitsjes\",\n  \"dorpswinkel\": \"dorpswinkel\",\n  \"dorre\": \"dorr\",\n  \"dorst\": \"dorst\",\n  \"dòrst\": \"dòrst\",\n  \"dorsten\": \"dorst\",\n  \"dorstig\": \"dorstig\",\n  \"dorstige\": \"dorstig\",\n  \"dortmund\": \"dortmund\",\n  \"dos\": \"dos\",\n  \"dosering\": \"doser\",\n  \"doseringen\": \"doser\",\n  \"doseringsinstallatie\": \"doseringsinstallatie\",\n  \"dosing\": \"dosing\",\n  \"dosis\": \"dosis\",\n  \"dossiers\": \"dossier\",\n  \"dot\": \"dot\",\n  \"dotaties\": \"dotaties\",\n  \"dotje\": \"dotj\",\n  \"dotterbloem\": \"dotterbloem\",\n  \"dotti\": \"dotti\",\n  \"douane\": \"douan\",\n  \"douaniers\": \"douanier\",\n  \"douche\": \"douch\",\n  \"doucheduur\": \"douchedur\",\n  \"douchekop\": \"douchekop\",\n  \"douchekoppen\": \"douchekopp\",\n  \"douchen\": \"douch\",\n  \"douches\": \"douches\",\n  \"douchespaarkoppen\": \"douchespaarkopp\",\n  \"douchte\": \"doucht\",\n  \"douglas\": \"douglas\",\n  \"douglassparren\": \"douglassparr\",\n  \"doutriaux\": \"doutriaux\",\n  \"douwde\": \"douwd\",\n  \"dove\": \"dov\",\n  \"doven\": \"dov\",\n  \"dovende\": \"dovend\",\n  \"dow\": \"dow\",\n  \"dowell\": \"dowell\",\n  \"down\": \"down\",\n  \"downieuws\": \"downieuw\",\n  \"dozen\": \"doz\",\n  \"dp\": \"dp\",\n  \"dpm\": \"dpm\",\n  \"dr\": \"dr\",\n  \"draad\": \"drad\",\n  \"draadafbinding\": \"draadafbind\",\n  \"draadloos\": \"draadlos\",\n  \"draadvormige\": \"draadvorm\",\n  \"draaf\": \"draf\",\n  \"draafde\": \"draafd\",\n  \"draag\": \"drag\",\n  \"draagbaar\": \"draagbar\",\n  \"draagbanden\": \"draagband\",\n  \"draagbare\": \"draagbar\",\n  \"draagconstructies\": \"draagconstructies\",\n  \"draagfuncties\": \"draagfuncties\",\n  \"draagster\": \"draagster\",\n  \"draagt\": \"draagt\",\n  \"draagvlak\": \"draagvlak\",\n  \"draagvlakvergroting\": \"draagvlakvergrot\",\n  \"draagvleugelboot\": \"draagvleugelbot\",\n  \"draagwijdte\": \"draagwijdt\",\n  \"draai\": \"draai\",\n  \"draaiboek\": \"draaiboek\",\n  \"draaide\": \"draaid\",\n  \"draaiden\": \"draaid\",\n  \"draaien\": \"draai\",\n  \"draaiend\": \"draaiend\",\n  \"draaiende\": \"draaiend\",\n  \"draaiing\": \"draaiing\",\n  \"draaijer\": \"draaijer\",\n  \"draaiknopinstelling\": \"draaiknopinstell\",\n  \"draaimolen\": \"draaimol\",\n  \"draaiorgel\": \"draaiorgel\",\n  \"draaiorgels\": \"draaiorgel\",\n  \"draaischijven\": \"draaischijv\",\n  \"draaischuif\": \"draaischuif\",\n  \"draait\": \"draait\",\n  \"draaiuren\": \"draaiur\",\n  \"draak\": \"drak\",\n  \"drab\": \"drab\",\n  \"drachten\": \"dracht\",\n  \"drachtster\": \"drachtster\",\n  \"draden\": \"drad\",\n  \"dradenstelsel\": \"dradenstelsel\",\n  \"dragelijk\": \"dragelijk\",\n  \"dragen\": \"drag\",\n  \"dragende\": \"dragend\",\n  \"drager\": \"drager\",\n  \"dragermateriaal\": \"dragermateriaal\",\n  \"dragermaterialen\": \"dragermaterial\",\n  \"dragers\": \"drager\",\n  \"drain\": \"drain\",\n  \"drainage\": \"drainag\",\n  \"drainagebuizen\": \"drainagebuiz\",\n  \"drainagelaag\": \"drainagelag\",\n  \"drainagemat\": \"drainagemat\",\n  \"drainagepijpen\": \"drainagepijp\",\n  \"drainagestelsels\": \"drainagestelsel\",\n  \"drainagewater\": \"drainagewater\",\n  \"draineren\": \"drainer\",\n  \"drainstein\": \"drainstein\",\n  \"drainstone\": \"drainston\",\n  \"drainwater\": \"drainwater\",\n  \"drainwaterontsmetters\": \"drainwaterontsmetter\",\n  \"drakebeest\": \"drakebeest\",\n  \"drakebloed\": \"drakebloed\",\n  \"drakebloedregen\": \"drakebloedreg\",\n  \"drakegewormte\": \"drakegewormt\",\n  \"drakeharen\": \"drakehar\",\n  \"drakeklauwen\": \"drakeklauw\",\n  \"drakelijf\": \"drakelijf\",\n  \"drakengedierte\": \"drakengediert\",\n  \"drakenkronkelingen\": \"drakenkronkel\",\n  \"drakentong\": \"drakentong\",\n  \"drakeregenstralen\": \"drakeregenstral\",\n  \"drakerug\": \"drakerug\",\n  \"dramatisch\": \"dramatisch\",\n  \"dramatische\": \"dramatisch\",\n  \"drang\": \"drang\",\n  \"drank\": \"drank\",\n  \"drankblikje\": \"drankblikj\",\n  \"dranken\": \"drank\",\n  \"drankenautomaten\": \"drankenautomat\",\n  \"drankenfabriek\": \"drankenfabriek\",\n  \"drankenkarton\": \"drankenkarton\",\n  \"drankimporteurs\": \"drankimporteur\",\n  \"drankindustrie\": \"drankindustrie\",\n  \"drankkartons\": \"drankkarton\",\n  \"drankproducenten\": \"drankproducent\",\n  \"drankverpakking\": \"drankverpak\",\n  \"drankverpakkingen\": \"drankverpak\",\n  \"drapeerde\": \"drapeerd\",\n  \"drassige\": \"drassig\",\n  \"drastisch\": \"drastisch\",\n  \"drastische\": \"drastisch\",\n  \"draven\": \"drav\",\n  \"dravend\": \"dravend\",\n  \"dravende\": \"dravend\",\n  \"drax\": \"drax\",\n  \"dredging\": \"dredging\",\n  \"dreef\": \"dref\",\n  \"dreefschool\": \"dreefschol\",\n  \"dreesen\": \"dres\",\n  \"dreesmann\": \"dreesmann\",\n  \"dreggen\": \"dregg\",\n  \"dreigde\": \"dreigd\",\n  \"dreigden\": \"dreigd\",\n  \"dreigement\": \"dreigement\",\n  \"dreigen\": \"dreig\",\n  \"dreigend\": \"dreigend\",\n  \"dreigende\": \"dreigend\",\n  \"dreigender\": \"dreigender\",\n  \"dreiging\": \"dreiging\",\n  \"dreigingen\": \"dreiging\",\n  \"dreigt\": \"dreigt\",\n  \"dreinde\": \"dreind\",\n  \"drempel\": \"drempel\",\n  \"drempels\": \"drempel\",\n  \"drempelwaarde\": \"drempelwaard\",\n  \"drensde\": \"drensd\",\n  \"drenthe\": \"drenth\",\n  \"drenthse\": \"drenth\",\n  \"drents\": \"drent\",\n  \"drentse\": \"drent\",\n  \"dresden\": \"dresd\",\n  \"dresser\": \"dresser\",\n  \"dreumelse\": \"dreumel\",\n  \"dreumesen\": \"dreumes\",\n  \"dreunde\": \"dreund\",\n  \"dreunden\": \"dreund\",\n  \"dreunen\": \"dreun\",\n  \"dreunende\": \"dreunend\",\n  \"dreunval\": \"dreunval\",\n  \"dreven\": \"drev\",\n  \"dreyfus\": \"dreyfus\",\n  \"drie\": \"drie\",\n  \"driebaans\": \"drieban\",\n  \"driebergen\": \"drieberg\",\n  \"driebladige\": \"drieblad\",\n  \"driedaagse\": \"driedag\",\n  \"driedelige\": \"driedel\",\n  \"driedimensionaal\": \"driedimensional\",\n  \"driedimensionale\": \"driedimensional\",\n  \"driedubbel\": \"driedubbel\",\n  \"driedubbele\": \"driedubbel\",\n  \"drieduizend\": \"drieduiz\",\n  \"drieën\": \"drieen\",\n  \"drieëndertig\": \"drieendert\",\n  \"driehoek\": \"driehoek\",\n  \"driehoekige\": \"driehoek\",\n  \"driehonderd\": \"driehonderd\",\n  \"driehonderdduizend\": \"driehonderdduiz\",\n  \"driejaarlijkse\": \"driejar\",\n  \"driejarig\": \"driejar\",\n  \"driekantig\": \"driekant\",\n  \"driekwart\": \"driekwart\",\n  \"driemaal\": \"driemal\",\n  \"driemalen\": \"driemal\",\n  \"dries\": \"dries\",\n  \"driesens\": \"driesen\",\n  \"driestappenplan\": \"driestappenplan\",\n  \"drieste\": \"driest\",\n  \"driesum\": \"driesum\",\n  \"drietal\": \"drietal\",\n  \"drietjes\": \"drietjes\",\n  \"drievierde\": \"drievierd\",\n  \"drievoudig\": \"drievoud\",\n  \"drift\": \"drift\",\n  \"driftarme\": \"driftarm\",\n  \"driftdoelstelling\": \"driftdoelstell\",\n  \"driften\": \"drift\",\n  \"driftig\": \"driftig\",\n  \"driftige\": \"driftig\",\n  \"driftloze\": \"driftloz\",\n  \"drijfafval\": \"drijfafval\",\n  \"drijfdek\": \"drijfdek\",\n  \"drijfgassen\": \"drijfgass\",\n  \"drijflagen\": \"drijflag\",\n  \"drijfmest\": \"drijfmest\",\n  \"drijfmiddel\": \"drijfmiddel\",\n  \"drijft\": \"drijft\",\n  \"drijfveer\": \"drijfver\",\n  \"drijfveren\": \"drijfver\",\n  \"drijfvermogen\": \"drijfvermog\",\n  \"drijfwand\": \"drijfwand\",\n  \"drijven\": \"drijv\",\n  \"drijvend\": \"drijvend\",\n  \"drijvende\": \"drijvend\",\n  \"drijver\": \"drijver\",\n  \"dril\": \"dril\",\n  \"drilling\": \"drilling\",\n  \"dring\": \"dring\",\n  \"dringen\": \"dring\",\n  \"dringend\": \"dringend\",\n  \"dringende\": \"dringend\",\n  \"dringingen\": \"dringing\",\n  \"dringt\": \"dringt\",\n  \"drink\": \"drink\",\n  \"drinkbaar\": \"drinkbar\",\n  \"drinken\": \"drink\",\n  \"drinker\": \"drinker\",\n  \"drinking\": \"drinking\",\n  \"drinkt\": \"drinkt\",\n  \"drinkwater\": \"drinkwater\",\n  \"drinkwaterbedrijven\": \"drinkwaterbedrijv\",\n  \"drinkwaterbereiding\": \"drinkwaterbereid\",\n  \"drinkwaterbesparing\": \"drinkwaterbespar\",\n  \"drinkwaterbron\": \"drinkwaterbron\",\n  \"drinkwaterdoelstelling\": \"drinkwaterdoelstell\",\n  \"drinkwaternorm\": \"drinkwaternorm\",\n  \"drinkwaterplaats\": \"drinkwaterplat\",\n  \"drinkwaterprijzen\": \"drinkwaterprijz\",\n  \"drinkwaterproducenten\": \"drinkwaterproducent\",\n  \"drinkwaterproduktie\": \"drinkwaterproduktie\",\n  \"drinkwaterrichtlijn\": \"drinkwaterrichtlijn\",\n  \"drinkwatersector\": \"drinkwatersector\",\n  \"drinkwatervoorziening\": \"drinkwatervoorzien\",\n  \"droef\": \"droef\",\n  \"droefgeestig\": \"droefgeest\",\n  \"droefgeestige\": \"droefgeest\",\n  \"droefgeestigheid\": \"droefgeest\",\n  \"droefheid\": \"droefheid\",\n  \"droeg\": \"droeg\",\n  \"droegen\": \"droeg\",\n  \"droeve\": \"droev\",\n  \"droevig\": \"droevig\",\n  \"droge\": \"drog\",\n  \"drogen\": \"drog\",\n  \"drogende\": \"drogend\",\n  \"droger\": \"droger\",\n  \"drogers\": \"droger\",\n  \"drogersysteem\": \"drogersystem\",\n  \"drogestof\": \"drogestof\",\n  \"drogestofgehalte\": \"drogestofgehalt\",\n  \"droging\": \"droging\",\n  \"dromen\": \"drom\",\n  \"dromenblik\": \"dromenblik\",\n  \"dromenbloesems\": \"dromenbloesem\",\n  \"dromend\": \"dromend\",\n  \"dromende\": \"dromend\",\n  \"dromenland\": \"dromenland\",\n  \"dromenmelancholie\": \"dromenmelancholie\",\n  \"dromer\": \"dromer\",\n  \"dromerig\": \"dromer\",\n  \"dromerigjes\": \"dromerigjes\",\n  \"drommel\": \"drommel\",\n  \"drommels\": \"drommel\",\n  \"drommen\": \"dromm\",\n  \"drong\": \"drong\",\n  \"drongen\": \"drong\",\n  \"dronk\": \"dronk\",\n  \"dronken\": \"dronk\",\n  \"dronkenschap\": \"dronkenschap\",\n  \"dronte\": \"dront\",\n  \"dronten\": \"dront\",\n  \"droog\": \"drog\",\n  \"drooggelegd\": \"drooggelegd\",\n  \"drooghulpstof\": \"drooghulpstof\",\n  \"droogkast\": \"droogkast\",\n  \"droogleggen\": \"drooglegg\",\n  \"droogprestaties\": \"droogprestaties\",\n  \"droogproces\": \"droogproces\",\n  \"droogprocessen\": \"droogprocess\",\n  \"droogstap\": \"droogstap\",\n  \"droogste\": \"droogst\",\n  \"droogte\": \"droogt\",\n  \"droogtemperatuur\": \"droogtemperatur\",\n  \"droogteperiode\": \"droogteperiod\",\n  \"droogtoren\": \"droogtor\",\n  \"droogtrommels\": \"droogtrommel\",\n  \"droogzolder\": \"droogzolder\",\n  \"droom\": \"drom\",\n  \"droomde\": \"droomd\",\n  \"droomden\": \"droomd\",\n  \"droomoneigenlijkheid\": \"droomoneigen\",\n  \"droomspel\": \"droomspel\",\n  \"droomster\": \"droomster\",\n  \"droomt\": \"droomt\",\n  \"droop\": \"drop\",\n  \"drop\": \"drop\",\n  \"dropen\": \"drop\",\n  \"droppel\": \"droppel\",\n  \"droppelen\": \"droppel\",\n  \"droppelende\": \"droppel\",\n  \"dros\": \"dros\",\n  \"drost\": \"drost\",\n  \"drs\": \"drs\",\n  \"drug\": \"drug\",\n  \"drugs\": \"drug\",\n  \"drugscriminaliteit\": \"drugscriminaliteit\",\n  \"drugssmokkel\": \"drugssmokkel\",\n  \"druilerige\": \"druiler\",\n  \"druipen\": \"druip\",\n  \"druipende\": \"druipend\",\n  \"druipnat\": \"druipnat\",\n  \"druiven\": \"druiv\",\n  \"druk\": \"druk\",\n  \"drukbestendig\": \"drukbestend\",\n  \"drukbevolkte\": \"drukbevolkt\",\n  \"drukcontrole\": \"drukcontrol\",\n  \"drukinkt\": \"drukinkt\",\n  \"drukinkten\": \"drukinkt\",\n  \"drukinktfabriek\": \"drukinktfabriek\",\n  \"drukinktfabrikanten\": \"drukinktfabrikant\",\n  \"drukke\": \"druk\",\n  \"drukken\": \"druk\",\n  \"drukkend\": \"drukkend\",\n  \"drukkende\": \"drukkend\",\n  \"drukker\": \"drukker\",\n  \"drukking\": \"drukking\",\n  \"drukkingen\": \"drukking\",\n  \"drukkracht\": \"drukkracht\",\n  \"drukmiddel\": \"drukmiddel\",\n  \"drukopbouw\": \"drukopbouw\",\n  \"drukpomp\": \"drukpomp\",\n  \"drukpompen\": \"drukpomp\",\n  \"druks\": \"druk\",\n  \"druksonde\": \"druksond\",\n  \"druksterkte\": \"druksterkt\",\n  \"drukt\": \"drukt\",\n  \"drukte\": \"drukt\",\n  \"drukten\": \"drukt\",\n  \"druktes\": \"druktes\",\n  \"druktorens\": \"druktoren\",\n  \"drukval\": \"drukval\",\n  \"drukwaterreactoren\": \"drukwaterreactor\",\n  \"drukwatertype\": \"drukwatertyp\",\n  \"drukwerk\": \"drukwerk\",\n  \"drum\": \"drum\",\n  \"drumhandling\": \"drumhandl\",\n  \"drumhouders\": \"drumhouder\",\n  \"drumliner\": \"drumliner\",\n  \"drums\": \"drum\",\n  \"drumveiligheidsprodukten\": \"drumveiligheidsprodukt\",\n  \"druppel\": \"druppel\",\n  \"druppelaars\": \"druppelar\",\n  \"druppelende\": \"druppel\",\n  \"druppelgrootte\": \"druppelgrot\",\n  \"druppels\": \"druppel\",\n  \"druppelsystemen\": \"druppelsystem\",\n  \"druppeltje\": \"druppeltj\",\n  \"druppelvorm\": \"druppelvorm\",\n  \"dry\": \"dry\",\n  \"drysys\": \"drysys\",\n  \"ds\": \"ds\",\n  \"dsm\": \"dsm\",\n  \"dti\": \"dti\",\n  \"dto\": \"dto\",\n  \"dts\": \"dts\",\n  \"du\": \"du\",\n  \"dual\": \"dual\",\n  \"duale\": \"dual\",\n  \"duales\": \"duales\",\n  \"dubbed\": \"dubbed\",\n  \"dubbel\": \"dubbel\",\n  \"dubbele\": \"dubbel\",\n  \"dubbelglas\": \"dubbelglas\",\n  \"dubbelpolige\": \"dubbelpol\",\n  \"dubbeltje\": \"dubbeltj\",\n  \"dubbelwandige\": \"dubbelwand\",\n  \"dubieus\": \"dubieus\",\n  \"dubo\": \"dubo\",\n  \"duc\": \"duc\",\n  \"duel\": \"duel\",\n  \"duelleerde\": \"duelleerd\",\n  \"duelleren\": \"dueller\",\n  \"duf\": \"duf\",\n  \"duffe\": \"duff\",\n  \"duffelse\": \"duffel\",\n  \"duffer\": \"duffer\",\n  \"duffryn\": \"duffryn\",\n  \"dufheid\": \"dufheid\",\n  \"duidde\": \"duid\",\n  \"duidelijk\": \"duidelijk\",\n  \"duidelijke\": \"duidelijk\",\n  \"duidelijker\": \"duidelijker\",\n  \"duidelijkheid\": \"duidelijk\",\n  \"duidt\": \"duidt\",\n  \"duifhuizen\": \"duifhuiz\",\n  \"duijts\": \"duijt\",\n  \"duijvelaar\": \"duijvelar\",\n  \"duijvendak\": \"duijvendak\",\n  \"duiken\": \"duik\",\n  \"duikende\": \"duikend\",\n  \"duiker\": \"duiker\",\n  \"duikt\": \"duikt\",\n  \"duim\": \"duim\",\n  \"duin\": \"duin\",\n  \"duinen\": \"duin\",\n  \"duinende\": \"duinend\",\n  \"duingebied\": \"duingebied\",\n  \"duinige\": \"duinig\",\n  \"duinigermeer\": \"duinigermer\",\n  \"duinkerken\": \"duinkerk\",\n  \"duinoord\": \"duinoord\",\n  \"duinrellen\": \"duinrell\",\n  \"duinvalleien\": \"duinvallei\",\n  \"duinwaterbedrijf\": \"duinwaterbedrijf\",\n  \"duisburg\": \"duisburg\",\n  \"duister\": \"duister\",\n  \"duisterde\": \"duisterd\",\n  \"duisterden\": \"duisterd\",\n  \"duistere\": \"duister\",\n  \"duisteren\": \"duister\",\n  \"duisterende\": \"duister\",\n  \"duistering\": \"duister\",\n  \"duisteringen\": \"duister\",\n  \"duisternis\": \"duisternis\",\n  \"duisternissen\": \"duisterniss\",\n  \"duiten\": \"duit\",\n  \"duits\": \"duit\",\n  \"duitse\": \"duit\",\n  \"duitser\": \"duitser\",\n  \"duitsers\": \"duitser\",\n  \"duitsland\": \"duitsland\",\n  \"duitslands\": \"duitsland\",\n  \"duitstalige\": \"duitstal\",\n  \"duivel\": \"duivel\",\n  \"duivels\": \"duivel\",\n  \"duivelse\": \"duivel\",\n  \"duivelsogen\": \"duivelsog\",\n  \"duiveltje\": \"duiveltj\",\n  \"duiven\": \"duiv\",\n  \"duizelde\": \"duizeld\",\n  \"duizelden\": \"duizeld\",\n  \"duizelflauw\": \"duizelflauw\",\n  \"duizelflauwte\": \"duizelflauwt\",\n  \"duizelig\": \"duizel\",\n  \"duizeling\": \"duizel\",\n  \"duizelingen\": \"duizel\",\n  \"duizelingwekkendheid\": \"duizelingwek\",\n  \"duizend\": \"duizend\",\n  \"duizende\": \"duizend\",\n  \"duizenden\": \"duizend\",\n  \"duizendmaal\": \"duizendmal\",\n  \"duizendpoot\": \"duizendpot\",\n  \"duizendpotige\": \"duizendpot\",\n  \"duizendste\": \"duizendst\",\n  \"duizendvoudig\": \"duizendvoud\",\n  \"duldde\": \"duld\",\n  \"duldden\": \"duld\",\n  \"dulden\": \"duld\",\n  \"duldende\": \"duldend\",\n  \"dumeco\": \"dumeco\",\n  \"dump\": \"dump\",\n  \"dumpen\": \"dump\",\n  \"dumping\": \"dumping\",\n  \"dumpingen\": \"dumping\",\n  \"dumpplaats\": \"dumpplat\",\n  \"dun\": \"dun\",\n  \"dunbevolkte\": \"dunbevolkt\",\n  \"dundoek\": \"dundoek\",\n  \"dungen\": \"dung\",\n  \"dunk\": \"dunk\",\n  \"dunkt\": \"dunkt\",\n  \"dunne\": \"dunn\",\n  \"dunnen\": \"dunn\",\n  \"dunner\": \"dunner\",\n  \"dunning\": \"dunning\",\n  \"dunwandige\": \"dunwand\",\n  \"duo\": \"duo\",\n  \"duobakken\": \"duobak\",\n  \"duos\": \"duos\",\n  \"dupe\": \"dup\",\n  \"dupleix\": \"dupleix\",\n  \"dupont\": \"dupont\",\n  \"dur\": \"dur\",\n  \"dura\": \"dura\",\n  \"duracell\": \"duracell\",\n  \"durban\": \"durban\",\n  \"dure\": \"dur\",\n  \"duren\": \"dur\",\n  \"düren\": \"dur\",\n  \"durend\": \"durend\",\n  \"durende\": \"durend\",\n  \"durf\": \"durf\",\n  \"durfde\": \"durfd\",\n  \"durfden\": \"durfd\",\n  \"durft\": \"durft\",\n  \"duromeren\": \"duromer\",\n  \"dürr\": \"durr\",\n  \"durven\": \"durv\",\n  \"durvende\": \"durvend\",\n  \"dus\": \"dus\",\n  \"dusdanig\": \"dusdan\",\n  \"düsseldorf\": \"dusseldorf\",\n  \"dusseldorp\": \"dusseldorp\",\n  \"dust\": \"dust\",\n  \"dusver\": \"dusver\",\n  \"dusverre\": \"dusverr\",\n  \"dutch\": \"dutch\",\n  \"dutilh\": \"dutilh\",\n  \"dutten\": \"dut\",\n  \"duur\": \"dur\",\n  \"duurde\": \"duurd\",\n  \"duurden\": \"duurd\",\n  \"duurder\": \"duurder\",\n  \"duurdere\": \"duurder\",\n  \"duurst\": \"duurst\",\n  \"duurste\": \"duurst\",\n  \"duurt\": \"duurt\",\n  \"duurzaam\": \"duurzam\",\n  \"duurzaamheid\": \"duurzam\",\n  \"duurzaamheidsaspecten\": \"duurzaamheidsaspect\",\n  \"duurzaamheidsbeleid\": \"duurzaamheidsbeleid\",\n  \"duurzaamheidsideaal\": \"duurzaamheidsideaal\",\n  \"duurzaamheidskosten\": \"duurzaamheidskost\",\n  \"duurzame\": \"duurzam\",\n  \"duurzamer\": \"duurzamer\",\n  \"duurzamere\": \"duurzamer\",\n  \"duut\": \"dut\",\n  \"duwbeugel\": \"duwbeugel\",\n  \"duwde\": \"duwd\",\n  \"duwden\": \"duwd\",\n  \"duwen\": \"duw\",\n  \"duyn\": \"duyn\",\n  \"duyvendak\": \"duyvendak\",\n  \"dv\": \"dv\",\n  \"dveb\": \"dveb\",\n  \"dwa\": \"dwa\",\n  \"dwaalde\": \"dwaald\",\n  \"dwaalden\": \"dwaald\",\n  \"dwaallichten\": \"dwaallicht\",\n  \"dwaalogen\": \"dwaalog\",\n  \"dwaas\": \"dwas\",\n  \"dwaasheden\": \"dwaasheid\",\n  \"dwaasheid\": \"dwaasheid\",\n  \"dwalen\": \"dwal\",\n  \"dwalende\": \"dwalend\",\n  \"dwaling\": \"dwaling\",\n  \"dwang\": \"dwang\",\n  \"dwangband\": \"dwangband\",\n  \"dwangmaatregelen\": \"dwangmaatregel\",\n  \"dwangmiddelen\": \"dwangmiddel\",\n  \"dwangsom\": \"dwangsom\",\n  \"dwangsombeschikkingen\": \"dwangsombeschik\",\n  \"dwangsombesluit\": \"dwangsombesluit\",\n  \"dwangsommen\": \"dwangsomm\",\n  \"dwarrelde\": \"dwarreld\",\n  \"dwarrelden\": \"dwarreld\",\n  \"dwarrelen\": \"dwarrel\",\n  \"dwarrelig\": \"dwarrel\",\n  \"dwarreligs\": \"dwarrel\",\n  \"dwarrelt\": \"dwarrelt\",\n  \"dwars\": \"dwar\",\n  \"dwarsbomen\": \"dwarsbom\",\n  \"dwarsdoorsnede\": \"dwarsdoorsned\",\n  \"dwarskijker\": \"dwarskijker\",\n  \"dwarsliggen\": \"dwarsligg\",\n  \"dwarsliggers\": \"dwarsligger\",\n  \"dwarsverbanden\": \"dwarsverband\",\n  \"dwaze\": \"dwaz\",\n  \"dweep\": \"dwep\",\n  \"dweept\": \"dweept\",\n  \"dweepte\": \"dweept\",\n  \"dweepten\": \"dweept\",\n  \"dwepen\": \"dwep\",\n  \"dweper\": \"dweper\",\n  \"dweperig\": \"dweper\",\n  \"dwepers\": \"dweper\",\n  \"dweping\": \"dweping\",\n  \"dwerg\": \"dwerg\",\n  \"dwergplanten\": \"dwergplant\",\n  \"dwing\": \"dwing\",\n  \"dwingeland\": \"dwingeland\",\n  \"dwingelo\": \"dwingelo\",\n  \"dwingeloo\": \"dwingeloo\",\n  \"dwingen\": \"dwing\",\n  \"dwingend\": \"dwingend\",\n  \"dwingende\": \"dwingend\",\n  \"dwingt\": \"dwingt\",\n  \"dwl\": \"dwl\",\n  \"dwong\": \"dwong\",\n  \"dwòng\": \"dwòng\",\n  \"dwongen\": \"dwong\",\n  \"dww\": \"dww\",\n  \"dyas\": \"dyas\",\n  \"dynamic\": \"dynamic\",\n  \"dynamica\": \"dynamica\",\n  \"dynamiek\": \"dynamiek\",\n  \"dynamisch\": \"dynamisch\",\n  \"dynamische\": \"dynamisch\",\n  \"dynamischer\": \"dynamischer\",\n  \"dynamo\": \"dynamo\",\n  \"dynasand\": \"dynasand\",\n  \"dzh\": \"dzh\",\n  \"e\": \"e\",\n  \"ea\": \"ea\",\n  \"earth\": \"earth\",\n  \"earthquake\": \"earthquak\",\n  \"east\": \"east\",\n  \"eastman\": \"eastman\",\n  \"eau\": \"eau\",\n  \"eb\": \"eb\",\n  \"eba\": \"eba\",\n  \"ebara\": \"ebara\",\n  \"ebb\": \"ebb\",\n  \"ebertstrasse\": \"ebertstras\",\n  \"ebo\": \"ebo\",\n  \"ebro\": \"ebro\",\n  \"ec\": \"ec\",\n  \"ecac\": \"ecac\",\n  \"ecb\": \"ecb\",\n  \"eccentricity\": \"eccentricity\",\n  \"ecd\": \"ecd\",\n  \"ecf\": \"ecf\",\n  \"echt\": \"echt\",\n  \"echtbreuk\": \"echtbreuk\",\n  \"echte\": \"echt\",\n  \"echteld\": \"echteld\",\n  \"echteldsedijk\": \"echteldsedijk\",\n  \"echter\": \"echter\",\n  \"echtgenoot\": \"echtgenot\",\n  \"echtgenote\": \"echtgenot\",\n  \"echtheid\": \"echtheid\",\n  \"echtpaar\": \"echtpar\",\n  \"éclat\": \"eclat\",\n  \"ecn\": \"ecn\",\n  \"eco\": \"eco\",\n  \"ecoadvies\": \"ecoadvies\",\n  \"ecocare\": \"ecocar\",\n  \"ecodesign\": \"ecodesign\",\n  \"ecodrome\": \"ecodrom\",\n  \"ecoeurope\": \"ecoeurop\",\n  \"ecofys\": \"ecofys\",\n  \"ecogest\": \"ecogest\",\n  \"ecohout\": \"ecohout\",\n  \"ecohydrologisch\": \"ecohydrologisch\",\n  \"ecohydrologische\": \"ecohydrologisch\",\n  \"ecokas\": \"ecokas\",\n  \"ecolabel\": \"ecolabel\",\n  \"ecolabeling\": \"ecolabel\",\n  \"ecole\": \"ecol\",\n  \"ecolint\": \"ecolint\",\n  \"ecolinten\": \"ecolint\",\n  \"ecological\": \"ecological\",\n  \"ecologie\": \"ecologie\",\n  \"ecologisch\": \"ecologisch\",\n  \"ecologische\": \"ecologisch\",\n  \"ecologischer\": \"ecologischer\",\n  \"ecologiseren\": \"ecologiser\",\n  \"ecologisering\": \"ecologiser\",\n  \"ecology\": \"ecology\",\n  \"ecolonia\": \"ecolonia\",\n  \"ecomanagement\": \"ecomanagement\",\n  \"ecomare\": \"ecomar\",\n  \"econic\": \"econic\",\n  \"econologie\": \"econologie\",\n  \"econologische\": \"econologisch\",\n  \"economen\": \"econom\",\n  \"economenvereniging\": \"economenveren\",\n  \"econometers\": \"econometer\",\n  \"economic\": \"economic\",\n  \"economie\": \"economie\",\n  \"economieën\": \"economieen\",\n  \"economisch\": \"economisch\",\n  \"economische\": \"economisch\",\n  \"economizers\": \"economizer\",\n  \"economy\": \"economy\",\n  \"econoom\": \"econom\",\n  \"econosto\": \"econosto\",\n  \"ecooperation\": \"ecooperation\",\n  \"ecopeace\": \"ecopeac\",\n  \"ecoplan\": \"ecoplan\",\n  \"ecopower\": \"ecopower\",\n  \"ecopunten\": \"ecopunt\",\n  \"ecoservice\": \"ecoservic\",\n  \"ecosysteem\": \"ecosystem\",\n  \"ecosystem\": \"ecosystem\",\n  \"ecosystemen\": \"ecosystem\",\n  \"ecota\": \"ecota\",\n  \"ecotax\": \"ecotax\",\n  \"ecotaxheffing\": \"ecotaxheff\",\n  \"ecotaxverhogingen\": \"ecotaxverhog\",\n  \"ecotaxwet\": \"ecotaxwet\",\n  \"ecotaxwetgeving\": \"ecotaxwetgev\",\n  \"ecoteam\": \"ecoteam\",\n  \"ecoteams\": \"ecoteam\",\n  \"ecotech\": \"ecotech\",\n  \"ecotechniek\": \"ecotechniek\",\n  \"ecoterres\": \"ecoterres\",\n  \"ecotextil\": \"ecotextil\",\n  \"ecotoxiciteit\": \"ecotoxiciteit\",\n  \"ecotoxicologie\": \"ecotoxicologie\",\n  \"ecover\": \"ecover\",\n  \"ecovision\": \"ecovision\",\n  \"ecovluchtelingen\": \"ecovluchtel\",\n  \"ecowatt\": \"ecowatt\",\n  \"ecsa\": \"ecsa\",\n  \"ect\": \"ect\",\n  \"ecu\": \"ecu\",\n  \"ecuador\": \"ecuador\",\n  \"eczeem\": \"eczem\",\n  \"ed\": \"ed\",\n  \"edah\": \"edah\",\n  \"edam\": \"edam\",\n  \"eddy\": \"eddy\",\n  \"ede\": \"ede\",\n  \"edel\": \"edel\",\n  \"edelchemie\": \"edelchemie\",\n  \"edele\": \"edel\",\n  \"edeler\": \"edeler\",\n  \"edelers\": \"edeler\",\n  \"edelherten\": \"edelhert\",\n  \"edelmetaal\": \"edelmetal\",\n  \"edelmetalen\": \"edelmetal\",\n  \"edelmoedig\": \"edelmoed\",\n  \"edelpelsdieren\": \"edelpelsdier\",\n  \"edelsteen\": \"edelsten\",\n  \"eden\": \"eden\",\n  \"edese\": \"edes\",\n  \"edinburg\": \"edinburg\",\n  \"edinburgh\": \"edinburgh\",\n  \"edith\": \"edith\",\n  \"editie\": \"editie\",\n  \"edmont\": \"edmont\",\n  \"edon\": \"edon\",\n  \"edp\": \"edp\",\n  \"edpm\": \"edpm\",\n  \"edr\": \"edr\",\n  \"eds\": \"eds\",\n  \"eduaard\": \"eduaard\",\n  \"eduard\": \"eduard\",\n  \"educatie\": \"educatie\",\n  \"educatiecentra\": \"educatiecentra\",\n  \"educatief\": \"educatief\",\n  \"educatiepark\": \"educatiepark\",\n  \"educatieprogramma\": \"educatieprogramma\",\n  \"educatieproject\": \"educatieproject\",\n  \"educatieprojecten\": \"educatieproject\",\n  \"eea\": \"eea\",\n  \"eeg\": \"eeg\",\n  \"eelde\": \"eeld\",\n  \"eem\": \"eem\",\n  \"eemmermeergebied\": \"eemmermeergebied\",\n  \"eems\": \"eem\",\n  \"eemscentrale\": \"eemscentral\",\n  \"eemsgebied\": \"eemsgebied\",\n  \"eemshaven\": \"eemshav\",\n  \"eemsmond\": \"eemsmond\",\n  \"eemsmondgebied\": \"eemsmondgebied\",\n  \"eemszijlvest\": \"eemszijlvest\",\n  \"een\": \"een\",\n  \"éen\": \"een\",\n  \"èen\": \"èen\",\n  \"eén\": \"een\",\n  \"eèn\": \"eèn\",\n  \"één\": \"een\",\n  \"eendaags\": \"eendag\",\n  \"eendekroos\": \"eendekros\",\n  \"eenden\": \"eend\",\n  \"eenderde\": \"eenderd\",\n  \"eénderde\": \"eenderd\",\n  \"éénderde\": \"eenderd\",\n  \"eenduidig\": \"eenduid\",\n  \"eenduidige\": \"eenduid\",\n  \"éénduidige\": \"eenduid\",\n  \"eenentwintigste\": \"eenentwintigst\",\n  \"eenheden\": \"eenheid\",\n  \"eenheid\": \"eenheid\",\n  \"eenhoorn\": \"eenhoorn\",\n  \"éénjarige\": \"eenjar\",\n  \"eenklaps\": \"eenklap\",\n  \"eenmaal\": \"eenmal\",\n  \"eénmaal\": \"eenmal\",\n  \"eenmalig\": \"eenmal\",\n  \"eenmalige\": \"eenmal\",\n  \"éénmalige\": \"eenmal\",\n  \"eenmansbediening\": \"eenmansbedien\",\n  \"eenrichting\": \"eenricht\",\n  \"eens\": \"een\",\n  \"éens\": \"een\",\n  \"èens\": \"èen\",\n  \"eéns\": \"een\",\n  \"eensgezind\": \"eensgezind\",\n  \"eensklaps\": \"eensklap\",\n  \"eensluidend\": \"eensluid\",\n  \"eenszelfden\": \"eenszelfd\",\n  \"eentje\": \"eentj\",\n  \"eentonig\": \"eenton\",\n  \"eentonige\": \"eenton\",\n  \"eentonigheid\": \"eenton\",\n  \"eentraps\": \"eentrap\",\n  \"éénurige\": \"eenur\",\n  \"eenvierde\": \"eenvierd\",\n  \"eenvijfde\": \"eenvijfd\",\n  \"éénvijfde\": \"eenvijfd\",\n  \"eenvormigheid\": \"eenvorm\",\n  \"eenvoud\": \"eenvoud\",\n  \"eenvoudig\": \"eenvoud\",\n  \"eenvoudige\": \"eenvoud\",\n  \"eenvoudiger\": \"eenvoudiger\",\n  \"eenvoudigh\": \"eenvoudigh\",\n  \"eenvoudigjes\": \"eenvoudigjes\",\n  \"eenvoudigste\": \"eenvoudigst\",\n  \"eenvoudigweg\": \"eenvoudigweg\",\n  \"eenzaam\": \"eenzam\",\n  \"eenzaamheid\": \"eenzam\",\n  \"eenzame\": \"eenzam\",\n  \"eenzelfde\": \"eenzelfd\",\n  \"eenzelvig\": \"eenzelv\",\n  \"eenzelvigheden\": \"eenzelv\",\n  \"eenzelvigheid\": \"eenzelv\",\n  \"eenzijdig\": \"eenzijd\",\n  \"eenzijdige\": \"eenzijd\",\n  \"eep\": \"eep\",\n  \"eer\": \"eer\",\n  \"eerbeek\": \"eerbek\",\n  \"eerbetoon\": \"eerbeton\",\n  \"eerbied\": \"eerbied\",\n  \"eerbiedig\": \"eerbied\",\n  \"eerbiedigde\": \"eerbiedigd\",\n  \"eerbiedigden\": \"eerbiedigd\",\n  \"eerbiedigheid\": \"eerbied\",\n  \"eerbiedwekkend\": \"eerbiedwek\",\n  \"eerde\": \"eerd\",\n  \"eerden\": \"eerd\",\n  \"eerder\": \"eerder\",\n  \"eerdere\": \"eerder\",\n  \"eergisteren\": \"eergister\",\n  \"eerlijk\": \"eerlijk\",\n  \"eerlijke\": \"eerlijk\",\n  \"eerlijker\": \"eerlijker\",\n  \"eerlijkheid\": \"eerlijk\",\n  \"eerlijks\": \"eerlijk\",\n  \"eerst\": \"eerst\",\n  \"éerst\": \"eerst\",\n  \"eerste\": \"eerst\",\n  \"éerste\": \"eerst\",\n  \"eerstelijns\": \"eerstelijn\",\n  \"eersten\": \"eerst\",\n  \"eerstverantwoordelijke\": \"eerstverantwoord\",\n  \"eerstvolgende\": \"eerstvolg\",\n  \"eervol\": \"eervol\",\n  \"eervolle\": \"eervoll\",\n  \"eervolste\": \"eervolst\",\n  \"eerzucht\": \"eerzucht\",\n  \"eet\": \"eet\",\n  \"eetbaar\": \"eetbar\",\n  \"eetgewoonten\": \"eetgewoont\",\n  \"eetkamer\": \"eetkamer\",\n  \"eetlust\": \"eetlust\",\n  \"eetlusten\": \"eetlust\",\n  \"eetzaal\": \"eetzal\",\n  \"eeuw\": \"eeuw\",\n  \"eeuwen\": \"eeuw\",\n  \"eeuwenlange\": \"eeuwenlang\",\n  \"eeuwenoude\": \"eeuwenoud\",\n  \"eeuwgrens\": \"eeuwgren\",\n  \"eeuwig\": \"eeuwig\",\n  \"eeuwigdurende\": \"eeuwigdur\",\n  \"eeuwige\": \"eeuwig\",\n  \"eeuwigheid\": \"eeuwig\",\n  \"eeuwijk\": \"eeuwijk\",\n  \"eeuwse\": \"eeuw\",\n  \"eeuwwisseling\": \"eeuwwissel\",\n  \"effect\": \"effect\",\n  \"effectbestrijding\": \"effectbestrijd\",\n  \"effectcommissie\": \"effectcommissie\",\n  \"effecten\": \"effect\",\n  \"effectenbeurs\": \"effectenbeur\",\n  \"effectenrapport\": \"effectenrapport\",\n  \"effectenrapportage\": \"effectenrapportag\",\n  \"effectenstudie\": \"effectenstudie\",\n  \"effectgerichte\": \"effectgericht\",\n  \"effectief\": \"effectief\",\n  \"effectiefst\": \"effectiefst\",\n  \"effectieve\": \"effectiev\",\n  \"effectiever\": \"effectiever\",\n  \"effectievere\": \"effectiever\",\n  \"effectiviteit\": \"effectiviteit\",\n  \"effectrapport\": \"effectrapport\",\n  \"effectrapportage\": \"effectrapportag\",\n  \"effectrapportages\": \"effectrapportages\",\n  \"effectrelaties\": \"effectrelaties\",\n  \"effects\": \"effect\",\n  \"effectstudie\": \"effectstudie\",\n  \"effen\": \"eff\",\n  \"effende\": \"effend\",\n  \"effenen\": \"effen\",\n  \"effens\": \"effen\",\n  \"efficiency\": \"efficiency\",\n  \"efficiëncy\": \"efficiency\",\n  \"efficiencyverbetering\": \"efficiencyverbeter\",\n  \"efficiënt\": \"efficient\",\n  \"efficiënte\": \"efficient\",\n  \"efficiënter\": \"efficienter\",\n  \"efficiëntere\": \"efficienter\",\n  \"efficiëntie\": \"efficientie\",\n  \"efficiëntieproject\": \"efficientieproject\",\n  \"efficiëntieverbetering\": \"efficientieverbeter\",\n  \"efficinter\": \"efficinter\",\n  \"effleurerende\": \"effleurer\",\n  \"effluent\": \"effluent\",\n  \"effluenten\": \"effluent\",\n  \"effluentpolishing\": \"effluentpolish\",\n  \"effort\": \"effort\",\n  \"efta\": \"efta\",\n  \"efteling\": \"eftel\",\n  \"eg\": \"eg\",\n  \"egaliseren\": \"egaliser\",\n  \"egg\": \"egg\",\n  \"eggboro\": \"eggboro\",\n  \"eggels\": \"eggel\",\n  \"eggen\": \"egg\",\n  \"egidius\": \"egidius\",\n  \"egmond\": \"egmond\",\n  \"egoïsme\": \"egoism\",\n  \"egoïst\": \"egoist\",\n  \"egoïste\": \"egoist\",\n  \"egypte\": \"egypt\",\n  \"egyptische\": \"egyptisch\",\n  \"eh\": \"eh\",\n  \"ehs\": \"ehs\",\n  \"ei\": \"ei\",\n  \"èi\": \"èi\",\n  \"eia\": \"eia\",\n  \"eib\": \"eib\",\n  \"eic\": \"eic\",\n  \"eieren\": \"eier\",\n  \"eierschaal\": \"eierschal\",\n  \"eierschalen\": \"eierschal\",\n  \"eigen\": \"eig\",\n  \"eigenaar\": \"eigenar\",\n  \"eigenaardigheden\": \"eigenaard\",\n  \"eigenaardigheid\": \"eigenaard\",\n  \"eigenaars\": \"eigenar\",\n  \"eigenaren\": \"eigenar\",\n  \"eigenbelang\": \"eigenbelang\",\n  \"eigenbewustheid\": \"eigenbewust\",\n  \"eigende\": \"eigend\",\n  \"eigendom\": \"eigendom\",\n  \"eigendommen\": \"eigendomm\",\n  \"eigendomsmerk\": \"eigendomsmerk\",\n  \"eigendomsverhouding\": \"eigendomsverhoud\",\n  \"eigendunk\": \"eigendunk\",\n  \"eigendunkelijkheid\": \"eigendunk\",\n  \"eigendunkelijkheidjes\": \"eigendunkelijkheidjes\",\n  \"eigene\": \"eig\",\n  \"eigenfrequentie\": \"eigenfrequentie\",\n  \"eigengemaakte\": \"eigengemaakt\",\n  \"eigengrondgebruiks\": \"eigengrondgebruik\",\n  \"eigenhandig\": \"eigenhand\",\n  \"eigenlijk\": \"eigen\",\n  \"èigenlijk\": \"èigen\",\n  \"eigenlijke\": \"eigen\",\n  \"eigenlijkheid\": \"eigen\",\n  \"eigenlijkste\": \"eigenlijkst\",\n  \"eigenmachtig\": \"eigenmacht\",\n  \"eigenschap\": \"eigenschap\",\n  \"eigenschappen\": \"eigenschapp\",\n  \"eigenste\": \"eigenst\",\n  \"eigentijdse\": \"eigentijd\",\n  \"eigenzinnig\": \"eigenzinn\",\n  \"eii\": \"eii\",\n  \"eijkelkamp\": \"eijkelkamp\",\n  \"eijsden\": \"eijsd\",\n  \"eik\": \"eik\",\n  \"eikebos\": \"eikebos\",\n  \"eikel\": \"eikel\",\n  \"eiken\": \"eik\",\n  \"eikenhout\": \"eikenhout\",\n  \"eikenhouten\": \"eikenhout\",\n  \"eiland\": \"eiland\",\n  \"eilandbewoners\": \"eilandbewoner\",\n  \"eilanden\": \"eiland\",\n  \"eilandje\": \"eilandj\",\n  \"eilandspolder\": \"eilandspolder\",\n  \"eilenburgh\": \"eilenburgh\",\n  \"eilenburghs\": \"eilenburgh\",\n  \"eim\": \"eim\",\n  \"eimert\": \"eimert\",\n  \"eind\": \"eind\",\n  \"eindafdichting\": \"eindafdicht\",\n  \"eindbestemming\": \"eindbestemm\",\n  \"eindcontrole\": \"eindcontrol\",\n  \"einddatum\": \"einddatum\",\n  \"einde\": \"eind\",\n  \"eindejaarsbijeenkomst\": \"eindejaarsbijeenkomst\",\n  \"eindelijk\": \"eindelijk\",\n  \"eindelijke\": \"eindelijk\",\n  \"eindeloos\": \"eindelos\",\n  \"eindeloze\": \"eindeloz\",\n  \"einden\": \"eind\",\n  \"einders\": \"einder\",\n  \"eindfase\": \"eindfas\",\n  \"eindgebruiker\": \"eindgebruiker\",\n  \"eindgebruikers\": \"eindgebruiker\",\n  \"eindhoven\": \"eindhov\",\n  \"eindhovense\": \"eindhoven\",\n  \"eindig\": \"eindig\",\n  \"eindigde\": \"eindigd\",\n  \"eindige\": \"eindig\",\n  \"eindigen\": \"eindig\",\n  \"eindje\": \"eindj\",\n  \"eindloos\": \"eindlos\",\n  \"eindnormen\": \"eindnorm\",\n  \"eindprodukt\": \"eindprodukt\",\n  \"eindprodukten\": \"eindprodukt\",\n  \"eindrapport\": \"eindrapport\",\n  \"eindrapportage\": \"eindrapportag\",\n  \"eindredacteuren\": \"eindredacteur\",\n  \"eindresultaat\": \"eindresultat\",\n  \"eindsituatie\": \"eindsituatie\",\n  \"eindtoestand\": \"eindtoestand\",\n  \"eindverslag\": \"eindverslag\",\n  \"eindverwerker\": \"eindverwerker\",\n  \"eindverwerkers\": \"eindverwerker\",\n  \"eindverwerking\": \"eindverwerk\",\n  \"eindwaarden\": \"eindwaard\",\n  \"eip\": \"eip\",\n  \"eis\": \"eis\",\n  \"eisen\": \"eis\",\n  \"eisende\": \"eisend\",\n  \"eisenpakket\": \"eisenpakket\",\n  \"eist\": \"eist\",\n  \"eiste\": \"eist\",\n  \"eisten\": \"eist\",\n  \"eitje\": \"eitj\",\n  \"eitjes\": \"eitjes\",\n  \"eiwit\": \"eiwit\",\n  \"eiwitbron\": \"eiwitbron\",\n  \"eiwitbronnen\": \"eiwitbronn\",\n  \"eiwithoudende\": \"eiwithoud\",\n  \"eiwitprodukten\": \"eiwitprodukt\",\n  \"eiwitrijke\": \"eiwitrijk\",\n  \"eiwitten\": \"eiwit\",\n  \"eiwitvervangers\": \"eiwitvervanger\",\n  \"ekatin\": \"ekatin\",\n  \"ekeus\": \"ekeus\",\n  \"ekleed\": \"ekled\",\n  \"eko\": \"eko\",\n  \"ekocompact\": \"ekocompact\",\n  \"ekodum\": \"ekodum\",\n  \"ekopower\": \"ekopower\",\n  \"ekorad\": \"ekorad\",\n  \"ekotaks\": \"ekotak\",\n  \"ekro\": \"ekro\",\n  \"el\": \"el\",\n  \"elan\": \"elan\",\n  \"élan\": \"elan\",\n  \"elastisch\": \"elastisch\",\n  \"elastische\": \"elastisch\",\n  \"elastomers\": \"elastomer\",\n  \"elbo\": \"elbo\",\n  \"elburg\": \"elburg\",\n  \"elders\": \"elder\",\n  \"elderveld\": \"elderveld\",\n  \"electrabel\": \"electrabel\",\n  \"electric\": \"electric\",\n  \"electrical\": \"electrical\",\n  \"electriciteits\": \"electriciteit\",\n  \"electricity\": \"electricity\",\n  \"electrics\": \"electric\",\n  \"electrification\": \"electrification\",\n  \"electrisch\": \"electrisch\",\n  \"electrische\": \"electrisch\",\n  \"electriseert\": \"electriseert\",\n  \"electroden\": \"electrod\",\n  \"electrolyse\": \"electrolys\",\n  \"electrolyte\": \"electrolyt\",\n  \"electron\": \"electron\",\n  \"electronics\": \"electronic\",\n  \"electrostatisch\": \"electrostatisch\",\n  \"electrotechnische\": \"electrotechnisch\",\n  \"elegance\": \"eleganc\",\n  \"élégance\": \"eleganc\",\n  \"elegant\": \"elegant\",\n  \"élegant\": \"elegant\",\n  \"elegante\": \"elegant\",\n  \"élegante\": \"elegant\",\n  \"elegantsten\": \"elegantst\",\n  \"elekriciteit\": \"elekriciteit\",\n  \"elektra\": \"elektra\",\n  \"elektriciteit\": \"elektriciteit\",\n  \"elektriciteits\": \"elektriciteit\",\n  \"elektriciteitsaansluiting\": \"elektriciteitsaansluit\",\n  \"elektriciteitsbedrijf\": \"elektriciteitsbedrijf\",\n  \"elektriciteitsbedrijven\": \"elektriciteitsbedrijv\",\n  \"elektriciteitsbehoefte\": \"elektriciteitsbehoeft\",\n  \"elektriciteitsbesparing\": \"elektriciteitsbespar\",\n  \"elektriciteitsbeurs\": \"elektriciteitsbeur\",\n  \"elektriciteitscentrale\": \"elektriciteitscentral\",\n  \"elektriciteitscentrales\": \"elektriciteitscentrales\",\n  \"elektriciteitsdistributeurs\": \"elektriciteitsdistributeur\",\n  \"elektriciteitsdistributiebedrijf\": \"elektriciteitsdistributiebedrijf\",\n  \"elektriciteitsdistributiebedrijven\": \"elektriciteitsdistributiebedrijv\",\n  \"elektriciteitsgebruik\": \"elektriciteitsgebruik\",\n  \"elektriciteitskabels\": \"elektriciteitskabel\",\n  \"elektriciteitskosten\": \"elektriciteitskost\",\n  \"elektriciteitsleveranties\": \"elektriciteitsleveranties\",\n  \"elektriciteitslevering\": \"elektriciteitslever\",\n  \"elektriciteitsmaatschappij\": \"elektriciteitsmaatschappij\",\n  \"elektriciteitsmaatschappijen\": \"elektriciteitsmaatschappij\",\n  \"elektriciteitsmarkt\": \"elektriciteitsmarkt\",\n  \"elektriciteitsnet\": \"elektriciteitsnet\",\n  \"elektriciteitsnetn\": \"elektriciteitsnetn\",\n  \"elektriciteitsopwekking\": \"elektriciteitsopwek\",\n  \"elektriciteitsopwekkingsvermogen\": \"elektriciteitsopwekkingsvermog\",\n  \"elektriciteitsplan\": \"elektriciteitsplan\",\n  \"elektriciteitsprijs\": \"elektriciteitsprijs\",\n  \"elektriciteitsproducent\": \"elektriciteitsproducent\",\n  \"elektriciteitsproducenten\": \"elektriciteitsproducent\",\n  \"elektriciteitsproduktie\": \"elektriciteitsproduktie\",\n  \"elektriciteitsproduktiebedrijf\": \"elektriciteitsproduktiebedrijf\",\n  \"elektriciteitsproduktiebedrijven\": \"elektriciteitsproduktiebedrijv\",\n  \"elektriciteitsproduktiesector\": \"elektriciteitsproduktiesector\",\n  \"elektriciteitsrekeninbg\": \"elektriciteitsrekeninbg\",\n  \"elektriciteitsrekening\": \"elektriciteitsreken\",\n  \"elektriciteitssector\": \"elektriciteitssector\",\n  \"elektriciteitstarieven\": \"elektriciteitstariev\",\n  \"elektriciteitsverbruik\": \"elektriciteitsverbruik\",\n  \"elektriciteitsverbruikers\": \"elektriciteitsverbruiker\",\n  \"elektriciteitsverzorgingsbedrijven\": \"elektriciteitsverzorgingsbedrijv\",\n  \"elektriciteitsvoorziening\": \"elektriciteitsvoorzien\",\n  \"elektriciteitsvoorzieningen\": \"elektriciteitsvoorzien\",\n  \"elektriciteitsvraag\": \"elektriciteitsvrag\",\n  \"elektriciteitswet\": \"elektriciteitswet\",\n  \"elektriciteitswetgeving\": \"elektriciteitswetgev\",\n  \"elektricity\": \"elektricity\",\n  \"elektricteit\": \"elektricteit\",\n  \"elektrificatie\": \"elektrificatie\",\n  \"elektrificeren\": \"elektrificer\",\n  \"elektrisch\": \"elektrisch\",\n  \"elektrische\": \"elektrisch\",\n  \"elektrischer\": \"elektrischer\",\n  \"elektrizitäts\": \"elektrizitat\",\n  \"elektrizitätswerke\": \"elektrizitatswerk\",\n  \"elektro\": \"elektro\",\n  \"elektrochemisch\": \"elektrochemisch\",\n  \"elektrochemische\": \"elektrochemisch\",\n  \"elektrode\": \"elektrod\",\n  \"elektroden\": \"elektrod\",\n  \"elektrodensysteem\": \"elektrodensystem\",\n  \"elektrodes\": \"elektrodes\",\n  \"elektrofilters\": \"elektrofilter\",\n  \"elektroflotatiesysteem\": \"elektroflotatiesystem\",\n  \"elektrolyse\": \"elektrolys\",\n  \"elektrolyseproefnemingen\": \"elektrolyseproefnem\",\n  \"elektrolyt\": \"elektrolyt\",\n  \"elektrolytische\": \"elektrolytisch\",\n  \"elektromagneet\": \"elektromagnet\",\n  \"elektromagneten\": \"elektromagnet\",\n  \"elektromagnetische\": \"elektromagnetisch\",\n  \"elektromechanische\": \"elektromechanisch\",\n  \"elektromotoren\": \"elektromotor\",\n  \"elektromotorenwerk\": \"elektromotorenwerk\",\n  \"elektronenstrahl\": \"elektronenstrahl\",\n  \"elektronenstralen\": \"elektronenstral\",\n  \"elektronenstructuur\": \"elektronenstructur\",\n  \"elektronica\": \"elektronica\",\n  \"elektronicabedrijven\": \"elektronicabedrijv\",\n  \"elektronicaconcern\": \"elektronicaconcern\",\n  \"elektronicaschroot\": \"elektronicaschrot\",\n  \"elektronikschrott\": \"elektronikschrott\",\n  \"elektronisch\": \"elektronisch\",\n  \"elektronische\": \"elektronisch\",\n  \"elektrosila\": \"elektrosila\",\n  \"elektrostatisch\": \"elektrostatisch\",\n  \"elektrostatische\": \"elektrostatisch\",\n  \"elektrotechniek\": \"elektrotechniek\",\n  \"elektrotechnische\": \"elektrotechnisch\",\n  \"elektrowinning\": \"elektrowinn\",\n  \"elektrowinnings\": \"elektrowinn\",\n  \"element\": \"element\",\n  \"elementair\": \"elementair\",\n  \"elementary\": \"elementary\",\n  \"elementen\": \"element\",\n  \"eleveld\": \"eleveld\",\n  \"elf\": \"elf\",\n  \"elfde\": \"elfd\",\n  \"elhorst\": \"elhorst\",\n  \"elimineert\": \"elimineert\",\n  \"elimineren\": \"eliminer\",\n  \"elin\": \"elin\",\n  \"elizabeth\": \"elizabeth\",\n  \"elk\": \"elk\",\n  \"elkaar\": \"elkar\",\n  \"elkaars\": \"elkar\",\n  \"elkander\": \"elkander\",\n  \"elkanders\": \"elkander\",\n  \"elke\": \"elk\",\n  \"ellebogen\": \"ellebog\",\n  \"elleboog\": \"ellebog\",\n  \"ellen\": \"ell\",\n  \"ellende\": \"ellend\",\n  \"ellendeling\": \"ellendel\",\n  \"ellendelingen\": \"ellendel\",\n  \"ellendig\": \"ellend\",\n  \"ellèndig\": \"ellènd\",\n  \"ellendige\": \"ellend\",\n  \"ellendigen\": \"ellend\",\n  \"ellendigs\": \"ellend\",\n  \"ellewoutsdijk\": \"ellewoutsdijk\",\n  \"ellson\": \"ellson\",\n  \"elly\": \"elly\",\n  \"elopak\": \"elopak\",\n  \"elsam\": \"elsam\",\n  \"elsloo\": \"elsloo\",\n  \"eltron\": \"eltron\",\n  \"elzen\": \"elz\",\n  \"email\": \"email\",\n  \"emanatie\": \"emanatie\",\n  \"emas\": \"emas\",\n  \"emb\": \"emb\",\n  \"emballage\": \"emballag\",\n  \"emballeurs\": \"emballeur\",\n  \"embargo\": \"embargo\",\n  \"emeritus\": \"emeritus\",\n  \"emf\": \"emf\",\n  \"emg\": \"emg\",\n  \"emie\": \"emie\",\n  \"emigrerende\": \"emigrer\",\n  \"emihe\": \"emih\",\n  \"emilie\": \"emilie\",\n  \"emilietje\": \"emilietj\",\n  \"emiliètje\": \"emiliètj\",\n  \"emiraten\": \"emirat\",\n  \"emissie\": \"emissie\",\n  \"emissiearme\": \"emissiearm\",\n  \"emissiebeheer\": \"emissiebeher\",\n  \"emissiebeperkende\": \"emissiebeperk\",\n  \"emissiebeperking\": \"emissiebeperk\",\n  \"emissiebron\": \"emissiebron\",\n  \"emissiebronnen\": \"emissiebronn\",\n  \"emissiecijfers\": \"emissiecijfer\",\n  \"emissiedetector\": \"emissiedetector\",\n  \"emissiedoelstelling\": \"emissiedoelstell\",\n  \"emissiefactor\": \"emissiefactor\",\n  \"emissiefactoren\": \"emissiefactor\",\n  \"emissiegegevens\": \"emissiegegeven\",\n  \"emissiegrenswaarden\": \"emissiegrenswaard\",\n  \"emissiejaarverslag\": \"emissiejaarverslag\",\n  \"emissieniveaus\": \"emissieniveaus\",\n  \"emissienormen\": \"emissienorm\",\n  \"emissieplafonds\": \"emissieplafond\",\n  \"emissiepreventie\": \"emissiepreventie\",\n  \"emissieprofielen\": \"emissieprofiel\",\n  \"emissierechten\": \"emissierecht\",\n  \"emissiereducerende\": \"emissiereducer\",\n  \"emissiereductie\": \"emissiereductie\",\n  \"emissiereducties\": \"emissiereducties\",\n  \"emissiereductiesystemen\": \"emissiereductiesystem\",\n  \"emissieregistratie\": \"emissieregistratie\",\n  \"emissieregistraties\": \"emissieregistraties\",\n  \"emissieregistratiesysteem\": \"emissieregistratiesystem\",\n  \"emissierichtlijnen\": \"emissierichtlijn\",\n  \"emissieroutes\": \"emissieroutes\",\n  \"emissies\": \"emissies\",\n  \"emissiesituatie\": \"emissiesituatie\",\n  \"emissievermindering\": \"emissieverminder\",\n  \"emissiewaarde\": \"emissiewaard\",\n  \"emissiewaarden\": \"emissiewaard\",\n  \"emission\": \"emission\",\n  \"emissions\": \"emission\",\n  \"emitteren\": \"emitter\",\n  \"emkel\": \"emkel\",\n  \"emma\": \"emma\",\n  \"emmaproject\": \"emmaproject\",\n  \"emmastraat\": \"emmastrat\",\n  \"emmeloord\": \"emmeloord\",\n  \"emmen\": \"emm\",\n  \"emmer\": \"emmer\",\n  \"emmers\": \"emmer\",\n  \"emotie\": \"emotie\",\n  \"emoties\": \"emoties\",\n  \"emotioneel\": \"emotionel\",\n  \"emotionele\": \"emotionel\",\n  \"empire\": \"empir\",\n  \"employé\": \"employ\",\n  \"empress\": \"empres\",\n  \"empteezy\": \"empteezy\",\n  \"ems\": \"ems\",\n  \"emsland\": \"emsland\",\n  \"emstar\": \"emstar\",\n  \"emstige\": \"emstig\",\n  \"emstigs\": \"emstig\",\n  \"emt\": \"emt\",\n  \"emulgator\": \"emulgator\",\n  \"emulsie\": \"emulsie\",\n  \"emulsiepertractie\": \"emulsiepertractie\",\n  \"emulsiepolymerisatie\": \"emulsiepolymerisatie\",\n  \"emulsies\": \"emulsies\",\n  \"emv\": \"emv\",\n  \"emveka\": \"emveka\",\n  \"en\": \"en\",\n  \"én\": \"en\",\n  \"èn\": \"èn\",\n  \"enbb\": \"enbb\",\n  \"encanailleren\": \"encanailler\",\n  \"encebe\": \"enceb\",\n  \"encevort\": \"encevort\",\n  \"enci\": \"enci\",\n  \"enclaves\": \"enclaves\",\n  \"end\": \"end\",\n  \"endangered\": \"endangered\",\n  \"endertig\": \"endert\",\n  \"endogene\": \"endog\",\n  \"endosulfan\": \"endosulfan\",\n  \"ene\": \"ene\",\n  \"éne\": \"ene\",\n  \"enec\": \"enec\",\n  \"eneco\": \"eneco\",\n  \"enel\": \"enel\",\n  \"ener\": \"ener\",\n  \"enercon\": \"enercon\",\n  \"energetisch\": \"energetisch\",\n  \"energetische\": \"energetisch\",\n  \"energi\": \"energi\",\n  \"energiakonsult\": \"energiakonsult\",\n  \"energie\": \"energie\",\n  \"energieanlagen\": \"energieanlag\",\n  \"energiebalans\": \"energiebalan\",\n  \"energiebalansregeling\": \"energiebalansregel\",\n  \"energiebedrijf\": \"energiebedrijf\",\n  \"energiebedrijfsplan\": \"energiebedrijfsplan\",\n  \"energiebedrijven\": \"energiebedrijv\",\n  \"energiebeheer\": \"energiebeher\",\n  \"energiebeheersysteem\": \"energiebeheersystem\",\n  \"energiebehoefte\": \"energiebehoeft\",\n  \"energiebehoeften\": \"energiebehoeft\",\n  \"energiebelasting\": \"energiebelast\",\n  \"energiebeleid\": \"energiebeleid\",\n  \"energiebeleidsonderzoek\": \"energiebeleidsonderzoek\",\n  \"energieberekeningen\": \"energiebereken\",\n  \"energiebericht\": \"energiebericht\",\n  \"energiebesparend\": \"energiebespar\",\n  \"energiebesparende\": \"energiebespar\",\n  \"energiebesparing\": \"energiebespar\",\n  \"energiebesparingen\": \"energiebespar\",\n  \"energiebesparings\": \"energiebespar\",\n  \"energiebesparingsactie\": \"energiebesparingsactie\",\n  \"energiebesparingsbeleid\": \"energiebesparingsbeleid\",\n  \"energiebesparingsfonds\": \"energiebesparingsfond\",\n  \"energiebesparingsmaatregel\": \"energiebesparingsmaatregel\",\n  \"energiebesparingsmaatregelen\": \"energiebesparingsmaatregel\",\n  \"energiebesparingsmogelijkheden\": \"energiebesparingsmog\",\n  \"energiebesparingsplan\": \"energiebesparingsplan\",\n  \"energiebesparingsplannen\": \"energiebesparingsplann\",\n  \"energiebesparingsproject\": \"energiebesparingsproject\",\n  \"energiebesparingsprojecten\": \"energiebesparingsproject\",\n  \"energiebesparingstechnologie\": \"energiebesparingstechnologie\",\n  \"energiebewust\": \"energiebewust\",\n  \"energiebron\": \"energiebron\",\n  \"energiebronnen\": \"energiebronn\",\n  \"energiebuffer\": \"energiebuffer\",\n  \"energiecentrale\": \"energiecentral\",\n  \"energiecentrales\": \"energiecentrales\",\n  \"energiecommissie\": \"energiecommissie\",\n  \"energieconcern\": \"energieconcern\",\n  \"energieconferentie\": \"energieconferentie\",\n  \"energieconferenties\": \"energieconferenties\",\n  \"energieconsulent\": \"energieconsulent\",\n  \"energieconsulenten\": \"energieconsulent\",\n  \"energieconsumenten\": \"energieconsument\",\n  \"energieconversie\": \"energieconversie\",\n  \"energieconversiedag\": \"energieconversiedag\",\n  \"energiecrisis\": \"energiecrisis\",\n  \"energiedag\": \"energiedag\",\n  \"energiedagen\": \"energiedag\",\n  \"energiedepartement\": \"energiedepartement\",\n  \"energiedeskundigen\": \"energiedeskund\",\n  \"energiedichtheid\": \"energiedicht\",\n  \"energiediensten\": \"energiedienst\",\n  \"energiedistributeurs\": \"energiedistributeur\",\n  \"energiedistributie\": \"energiedistributie\",\n  \"energiedistributiebedrijf\": \"energiedistributiebedrijf\",\n  \"energiedistributiebedrijven\": \"energiedistributiebedrijv\",\n  \"energiedistributiemaatschappij\": \"energiedistributiemaatschappij\",\n  \"energiedoelstelling\": \"energiedoelstell\",\n  \"energiedoelstellingen\": \"energiedoelstell\",\n  \"energiedragers\": \"energiedrager\",\n  \"energieën\": \"energieen\",\n  \"energiefonds\": \"energiefond\",\n  \"energiegebied\": \"energiegebied\",\n  \"energiegebouw\": \"energiegebouw\",\n  \"energiegebruik\": \"energiegebruik\",\n  \"energiegebruiken\": \"energiegebruik\",\n  \"energiegebruikers\": \"energiegebruiker\",\n  \"energiegegevens\": \"energiegegeven\",\n  \"energiegewassen\": \"energiegewass\",\n  \"energiehandel\": \"energiehandel\",\n  \"energieheffing\": \"energieheff\",\n  \"energieheffingen\": \"energieheff\",\n  \"energiehergebruik\": \"energiehergebruik\",\n  \"energiehuis\": \"energiehuis\",\n  \"energiehuishouding\": \"energiehuishoud\",\n  \"energiek\": \"energiek\",\n  \"energiekabel\": \"energiekabel\",\n  \"energieke\": \"energiek\",\n  \"energiekosten\": \"energiekost\",\n  \"energieleverancier\": \"energieleverancier\",\n  \"energiemaatschappij\": \"energiemaatschappij\",\n  \"energiemaatschappijen\": \"energiemaatschappij\",\n  \"energiemanagement\": \"energiemanagement\",\n  \"energiemarkt\": \"energiemarkt\",\n  \"energiemärkte\": \"energiemarkt\",\n  \"energieminister\": \"energieminister\",\n  \"energiemix\": \"energiemix\",\n  \"energien\": \"energien\",\n  \"energiened\": \"energiened\",\n  \"energienota\": \"energienota\",\n  \"energieonderzoek\": \"energieonderzoek\",\n  \"energieonderzoekscentrum\": \"energieonderzoekscentrum\",\n  \"energieopbrengst\": \"energieopbrengst\",\n  \"energieopslagsystemen\": \"energieopslagsystem\",\n  \"energieopwekking\": \"energieopwek\",\n  \"energieplannen\": \"energieplann\",\n  \"energieplantages\": \"energieplantages\",\n  \"energiepolitiek\": \"energiepolitiek\",\n  \"energieprestatie\": \"energieprestatie\",\n  \"energieprestatiebestekken\": \"energieprestatiebestek\",\n  \"energieprestatienorm\": \"energieprestatienorm\",\n  \"energieprestatienormen\": \"energieprestatienorm\",\n  \"energieprijs\": \"energieprijs\",\n  \"energieprijzen\": \"energieprijz\",\n  \"energieprocessen\": \"energieprocess\",\n  \"energieproducenten\": \"energieproducent\",\n  \"energieproductiebedrijf\": \"energieproductiebedrijf\",\n  \"energieprodukten\": \"energieprodukt\",\n  \"energieproduktie\": \"energieproduktie\",\n  \"energieproduktiebedrijf\": \"energieproduktiebedrijf\",\n  \"energieprogramma\": \"energieprogramma\",\n  \"energieproject\": \"energieproject\",\n  \"energieprojecten\": \"energieproject\",\n  \"energieraad\": \"energierad\",\n  \"energierekening\": \"energiereken\",\n  \"energiereserves\": \"energiereserves\",\n  \"energierijk\": \"energierijk\",\n  \"energierijke\": \"energierijk\",\n  \"energies\": \"energies\",\n  \"energiesamenwerkingsverband\": \"energiesamenwerkingsverband\",\n  \"energieschermen\": \"energiescherm\",\n  \"energiesector\": \"energiesector\",\n  \"energiesectoren\": \"energiesector\",\n  \"energiesituatie\": \"energiesituatie\",\n  \"energiesparingsmogelijkheden\": \"energiesparingsmog\",\n  \"energiespecialist\": \"energiespecialist\",\n  \"energiespeicher\": \"energiespeicher\",\n  \"energiestreven\": \"energiestrev\",\n  \"energiesysteem\": \"energiesystem\",\n  \"energiesystemen\": \"energiesystem\",\n  \"energietaks\": \"energietak\",\n  \"energietarieven\": \"energietariev\",\n  \"energietax\": \"energietax\",\n  \"energietechnieken\": \"energietechniek\",\n  \"energietechnologie\": \"energietechnologie\",\n  \"energietechnologieën\": \"energietechnologieen\",\n  \"energieteelt\": \"energieteelt\",\n  \"energietekorten\": \"energietekort\",\n  \"energieterugwinning\": \"energieterugwinn\",\n  \"energietoepassing\": \"energietoepass\",\n  \"energietoevoer\": \"energietoevoer\",\n  \"energieuitgaven\": \"energieuitgav\",\n  \"energieverbruik\": \"energieverbruik\",\n  \"energieverbruikers\": \"energieverbruiker\",\n  \"energieverlies\": \"energieverlies\",\n  \"energievermindering\": \"energieverminder\",\n  \"energieverslindend\": \"energieverslind\",\n  \"energieversorgungs\": \"energieversorgung\",\n  \"energieverspillende\": \"energieverspill\",\n  \"energieverspilling\": \"energieverspill\",\n  \"energieverzorgingsbedrijven\": \"energieverzorgingsbedrijv\",\n  \"energieverzorgingsmaatschappij\": \"energieverzorgingsmaatschappij\",\n  \"energievoorraden\": \"energievoorrad\",\n  \"energievoorziening\": \"energievoorzien\",\n  \"energievoorzieningen\": \"energievoorzien\",\n  \"energievorm\": \"energievorm\",\n  \"energievormen\": \"energievorm\",\n  \"energievorming\": \"energievorm\",\n  \"energievraag\": \"energievrag\",\n  \"energievraagstuk\": \"energievraagstuk\",\n  \"energievraagstukken\": \"energievraagstuk\",\n  \"energiewijzers\": \"energiewijzer\",\n  \"energiewinning\": \"energiewinn\",\n  \"energiezaken\": \"energiezak\",\n  \"energiezorg\": \"energiezorg\",\n  \"energiezuinig\": \"energiezuin\",\n  \"energiezuinige\": \"energiezuin\",\n  \"energiezuiniger\": \"energiezuiniger\",\n  \"energiezuinigheid\": \"energiezuin\",\n  \"energy\": \"energy\",\n  \"enervatie\": \"enervatie\",\n  \"enerzijds\": \"enerzijd\",\n  \"enfin\": \"enfin\",\n  \"eng\": \"eng\",\n  \"engagement\": \"engagement\",\n  \"engageren\": \"engager\",\n  \"engeland\": \"engeland\",\n  \"engelden\": \"engeld\",\n  \"engelen\": \"engel\",\n  \"engelhard\": \"engelhard\",\n  \"engels\": \"engel\",\n  \"engelse\": \"engel\",\n  \"engelsen\": \"engels\",\n  \"engelstalig\": \"engelstal\",\n  \"engelstalige\": \"engelstal\",\n  \"engineer\": \"enginer\",\n  \"engineering\": \"enginer\",\n  \"engineeringafdeling\": \"engineeringafdel\",\n  \"engineers\": \"enginer\",\n  \"england\": \"england\",\n  \"enichem\": \"enichem\",\n  \"enig\": \"enig\",\n  \"enige\": \"enig\",\n  \"énige\": \"enig\",\n  \"enigszins\": \"enigszin\",\n  \"enistige\": \"enist\",\n  \"enkel\": \"enkel\",\n  \"enkele\": \"enkel\",\n  \"enkelen\": \"enkel\",\n  \"enkelgebogen\": \"enkelgebog\",\n  \"enkelpolige\": \"enkelpol\",\n  \"enkels\": \"enkel\",\n  \"enkelvoudige\": \"enkelvoud\",\n  \"enkhuizen\": \"enkhuiz\",\n  \"enorm\": \"enorm\",\n  \"enorme\": \"enorm\",\n  \"enormiteiten\": \"enormiteit\",\n  \"enquête\": \"enquêt\",\n  \"enquêtecommissie\": \"enquêtecommissie\",\n  \"enquêteerde\": \"enquêteerd\",\n  \"enquêtes\": \"enquêtes\",\n  \"enrôleerde\": \"enrôleerd\",\n  \"enschede\": \"ensched\",\n  \"enschedese\": \"enschedes\",\n  \"enserink\": \"enserink\",\n  \"enso\": \"enso\",\n  \"entailing\": \"entail\",\n  \"entendus\": \"entendus\",\n  \"enterde\": \"enterd\",\n  \"enteren\": \"enter\",\n  \"entering\": \"enter\",\n  \"entert\": \"entert\",\n  \"enthousiasme\": \"enthousiasm\",\n  \"enthousiast\": \"enthousiast\",\n  \"entourage\": \"entourag\",\n  \"entrée\": \"entree\",\n  \"entreprise\": \"entrepris\",\n  \"entsorga\": \"entsorga\",\n  \"entsorger\": \"entsorger\",\n  \"entsorgung\": \"entsorgung\",\n  \"entsorgungs\": \"entsorgung\",\n  \"entsorgungsgesellschaft\": \"entsorgungsgesellschaft\",\n  \"entsorgungswirtschaft\": \"entsorgungswirtschaft\",\n  \"entwicklung\": \"entwicklung\",\n  \"entwintig\": \"entwint\",\n  \"env\": \"env\",\n  \"enveertig\": \"enveert\",\n  \"envelope\": \"envelop\",\n  \"enveloppe\": \"envelopp\",\n  \"enveloppen\": \"envelopp\",\n  \"envirobend\": \"envirob\",\n  \"envirofilter\": \"envirofilter\",\n  \"enviromental\": \"enviromental\",\n  \"environ\": \"environ\",\n  \"environment\": \"environment\",\n  \"environmental\": \"environmental\",\n  \"environmex\": \"environmex\",\n  \"environnement\": \"environnement\",\n  \"environnementaux\": \"environnementaux\",\n  \"enviropower\": \"enviropower\",\n  \"enviroservice\": \"enviroservic\",\n  \"envirotec\": \"envirotec\",\n  \"enviscan\": \"enviscan\",\n  \"envitec\": \"envitec\",\n  \"enw\": \"enw\",\n  \"enz\": \"enz\",\n  \"enzo\": \"enzo\",\n  \"enzovoort\": \"enzovoort\",\n  \"enzym\": \"enzym\",\n  \"enzymatische\": \"enzymatisch\",\n  \"enzyme\": \"enzym\",\n  \"enzymen\": \"enzym\",\n  \"enzymverkopen\": \"enzymverkop\",\n  \"ep\": \"ep\",\n  \"epa\": \"epa\",\n  \"epc\": \"epc\",\n  \"epdm\": \"epdm\",\n  \"epe\": \"epe\",\n  \"epema\": \"epema\",\n  \"epia\": \"epia\",\n  \"epichloorhydrineproduktie\": \"epichloorhydrineproduktie\",\n  \"epidemie\": \"epidemie\",\n  \"epidemiologisch\": \"epidemiologisch\",\n  \"epidemiologische\": \"epidemiologisch\",\n  \"episodische\": \"episodisch\",\n  \"epista\": \"epista\",\n  \"epl\": \"epl\",\n  \"epn\": \"epn\",\n  \"epon\": \"epon\",\n  \"epoxidehars\": \"epoxidehar\",\n  \"epoxyharsen\": \"epoxyhars\",\n  \"epp\": \"epp\",\n  \"eps\": \"eps\",\n  \"eptisa\": \"eptisa\",\n  \"epz\": \"epz\",\n  \"equipment\": \"equipment\",\n  \"equity\": \"equity\",\n  \"equivalent\": \"equivalent\",\n  \"equivalenten\": \"equivalent\",\n  \"er\": \"er\",\n  \"eraan\": \"eran\",\n  \"erachter\": \"erachter\",\n  \"eraf\": \"eraf\",\n  \"erasmus\": \"erasmus\",\n  \"erbarming\": \"erbarm\",\n  \"erbarmingloos\": \"erbarminglos\",\n  \"erbarmingloze\": \"erbarmingloz\",\n  \"erbij\": \"erbij\",\n  \"erboven\": \"erbov\",\n  \"erbuiten\": \"erbuit\",\n  \"erdoor\": \"erdor\",\n  \"erdoorheen\": \"erdoorhen\",\n  \"erfde\": \"erfd\",\n  \"erfdeel\": \"erfdel\",\n  \"erfden\": \"erfd\",\n  \"erfelijk\": \"erfelijk\",\n  \"erfelijkheidskwestie\": \"erfelijkheidskwestie\",\n  \"erfenis\": \"erfenis\",\n  \"erfgenaam\": \"erfgenam\",\n  \"erfgeschenk\": \"erfgeschenk\",\n  \"erfgoed\": \"erfgoed\",\n  \"erfjord\": \"erfjord\",\n  \"erfoom\": \"erfom\",\n  \"erfpacht\": \"erfpacht\",\n  \"erfpachtbasis\": \"erfpachtbasis\",\n  \"erfpachtcontract\": \"erfpachtcontract\",\n  \"erfverhardingen\": \"erfverhard\",\n  \"erg\": \"erg\",\n  \"èrg\": \"èrg\",\n  \"erge\": \"erg\",\n  \"ergens\": \"ergen\",\n  \"erger\": \"erger\",\n  \"ergerde\": \"ergerd\",\n  \"ergerden\": \"ergerd\",\n  \"ergeren\": \"erger\",\n  \"ergernis\": \"ergernis\",\n  \"ergernissen\": \"ergerniss\",\n  \"ergert\": \"ergert\",\n  \"ergom\": \"ergom\",\n  \"ergonomie\": \"ergonomie\",\n  \"ergst\": \"ergst\",\n  \"ergste\": \"ergst\",\n  \"erhvervsfrugtavl\": \"erhvervsfrugtavl\",\n  \"eri\": \"eri\",\n  \"erin\": \"erin\",\n  \"erisman\": \"erisman\",\n  \"erkenbouts\": \"erkenbout\",\n  \"erkend\": \"erkend\",\n  \"erkende\": \"erkend\",\n  \"erkennen\": \"erkenn\",\n  \"erkenning\": \"erkenn\",\n  \"erkenningen\": \"erkenn\",\n  \"erkenningsregeling\": \"erkenningsregel\",\n  \"erkent\": \"erkent\",\n  \"erkers\": \"erker\",\n  \"erkimia\": \"erkimia\",\n  \"erlangen\": \"erlang\",\n  \"erm\": \"erm\",\n  \"ermee\": \"ermee\",\n  \"ermelo\": \"ermelo\",\n  \"erna\": \"erna\",\n  \"ernaar\": \"ernar\",\n  \"ernaast\": \"ernaast\",\n  \"ernestown\": \"ernestown\",\n  \"erneuerbare\": \"erneuer\",\n  \"ernst\": \"ernst\",\n  \"ernstig\": \"ernstig\",\n  \"ernstige\": \"ernstig\",\n  \"ernstiger\": \"ernstiger\",\n  \"ernstigere\": \"ernstiger\",\n  \"ernstigs\": \"ernstig\",\n  \"ernstigste\": \"ernstigst\",\n  \"ernsts\": \"ernst\",\n  \"erodeert\": \"erodeert\",\n  \"erom\": \"erom\",\n  \"eronder\": \"eronder\",\n  \"erop\": \"erop\",\n  \"erosie\": \"erosie\",\n  \"erotische\": \"erotisch\",\n  \"erover\": \"erover\",\n  \"erp\": \"erp\",\n  \"erra\": \"erra\",\n  \"èrrg\": \"èrrg\",\n  \"ers\": \"ers\",\n  \"ertegen\": \"erteg\",\n  \"ertoe\": \"ertoe\",\n  \"erts\": \"ert\",\n  \"ertsgebergte\": \"ertsgebergt\",\n  \"ertsverwerkende\": \"ertsverwerk\",\n  \"ertsvondst\": \"ertsvondst\",\n  \"ertswinning\": \"ertswinn\",\n  \"eruit\": \"eruit\",\n  \"ervan\": \"ervan\",\n  \"ervaren\": \"ervar\",\n  \"ervaring\": \"ervar\",\n  \"ervaringen\": \"ervar\",\n  \"erven\": \"erv\",\n  \"ervoor\": \"ervor\",\n  \"erwt\": \"erwt\",\n  \"erwten\": \"erwt\",\n  \"erysiphe\": \"erysiph\",\n  \"erzeele\": \"erzel\",\n  \"es\": \"es\",\n  \"esbjerg\": \"esbjerg\",\n  \"escadron\": \"escadron\",\n  \"escadronsbureau\": \"escadronsbureau\",\n  \"escorteer\": \"escorter\",\n  \"esculaap\": \"esculap\",\n  \"esdex\": \"esdex\",\n  \"esdoorns\": \"esdoorn\",\n  \"esens\": \"esen\",\n  \"esp\": \"esp\",\n  \"espoo\": \"espoo\",\n  \"esprit\": \"esprit\",\n  \"essai\": \"essai\",\n  \"essays\": \"essay\",\n  \"esseboom\": \"essebom\",\n  \"esselink\": \"esselink\",\n  \"essen\": \"ess\",\n  \"essence\": \"essenc\",\n  \"essencestank\": \"essencestank\",\n  \"essentieel\": \"essentieel\",\n  \"essentiële\": \"essentiel\",\n  \"esser\": \"esser\",\n  \"esso\": \"esso\",\n  \"essoraffinaderij\": \"essoraffinaderij\",\n  \"estafette\": \"estafet\",\n  \"esterificatie\": \"esterificatie\",\n  \"estervorming\": \"estervorm\",\n  \"esthetisch\": \"esthetisch\",\n  \"esthetische\": \"esthetisch\",\n  \"estland\": \"estland\",\n  \"estuariene\": \"estuarien\",\n  \"estuarium\": \"estuarium\",\n  \"esva\": \"esva\",\n  \"et\": \"et\",\n  \"étage\": \"etag\",\n  \"étagère\": \"etagèr\",\n  \"étagêre\": \"etagêr\",\n  \"etalage\": \"etalag\",\n  \"étalage\": \"etalag\",\n  \"etb\": \"etb\",\n  \"etbe\": \"etb\",\n  \"etc\": \"etc\",\n  \"etcetera\": \"etcetera\",\n  \"eten\": \"eten\",\n  \"éten\": \"eten\",\n  \"etende\": \"etend\",\n  \"etensresten\": \"etensrest\",\n  \"etenstijd\": \"etenstijd\",\n  \"eternaly\": \"eternaly\",\n  \"eternietvervaardiging\": \"eternietvervaard\",\n  \"eternit\": \"eternit\",\n  \"ethanol\": \"ethanol\",\n  \"ethanolinstallatie\": \"ethanolinstallatie\",\n  \"ethanolpomp\": \"ethanolpomp\",\n  \"ethanolproducenten\": \"ethanolproducent\",\n  \"ethanolproduktie\": \"ethanolproduktie\",\n  \"etheen\": \"ethen\",\n  \"etheengehalte\": \"etheengehalt\",\n  \"ether\": \"ether\",\n  \"etherische\": \"etherisch\",\n  \"ethisch\": \"ethisch\",\n  \"ethoxylaat\": \"ethoxylat\",\n  \"ethoxylaten\": \"ethoxylat\",\n  \"ethyl\": \"ethyl\",\n  \"ethylbenzeen\": \"ethylbenzen\",\n  \"ethyleen\": \"ethylen\",\n  \"ethyleenoxide\": \"ethyleenoxid\",\n  \"ethyleenoxyde\": \"ethyleenoxyd\",\n  \"ethylhexl\": \"ethylhexl\",\n  \"etiket\": \"etiket\",\n  \"etiketten\": \"etiket\",\n  \"etiketteren\": \"etiketter\",\n  \"etikettering\": \"etiketter\",\n  \"etiologie\": \"etiologie\",\n  \"etiquettetje\": \"etiquettetj\",\n  \"etos\": \"etos\",\n  \"ets\": \"ets\",\n  \"etsten\": \"etst\",\n  \"ett\": \"ett\",\n  \"ettelijke\": \"ettelijk\",\n  \"etten\": \"et\",\n  \"ettlingen\": \"ettling\",\n  \"etv\": \"etv\",\n  \"etva\": \"etva\",\n  \"etvtc\": \"etvtc\",\n  \"eu\": \"eu\",\n  \"eucc\": \"eucc\",\n  \"eufraat\": \"eufrat\",\n  \"eunet\": \"eunet\",\n  \"euram\": \"euram\",\n  \"euratom\": \"euratom\",\n  \"euratomverdrag\": \"euratomverdrag\",\n  \"euregio\": \"euregio\",\n  \"euregionaal\": \"euregional\",\n  \"euregionale\": \"euregional\",\n  \"euro\": \"euro\",\n  \"eurochlor\": \"eurochlor\",\n  \"euroconsult\": \"euroconsult\",\n  \"eurocontainers\": \"eurocontainer\",\n  \"euroenvironment\": \"euroenvironment\",\n  \"euroforum\": \"euroforum\",\n  \"euronet\": \"euronet\",\n  \"euronorm\": \"euronorm\",\n  \"europa\": \"europa\",\n  \"europabank\": \"europabank\",\n  \"europarlementariër\": \"europarlementarier\",\n  \"europarlementariërs\": \"europarlementarier\",\n  \"europarlementslid\": \"europarlementslid\",\n  \"europe\": \"europ\",\n  \"europeaan\": \"europeaan\",\n  \"european\": \"european\",\n  \"européenne\": \"europeenn\",\n  \"européens\": \"europen\",\n  \"europees\": \"europes\",\n  \"europeesrechtelijke\": \"europeesrecht\",\n  \"europen\": \"europ\",\n  \"europese\": \"europes\",\n  \"europoort\": \"europoort\",\n  \"eurosolar\": \"eurosolar\",\n  \"eurotainer\": \"eurotainer\",\n  \"eurotunnel\": \"eurotunnel\",\n  \"eurovignet\": \"eurovignet\",\n  \"eurowoningen\": \"eurowon\",\n  \"eutrofiërende\": \"eutrofier\",\n  \"eutrofiëringsmodellen\": \"eutrofieringsmodell\",\n  \"evacuatie\": \"evacuatie\",\n  \"evacuatieplannen\": \"evacuatieplann\",\n  \"evacuaties\": \"evacuaties\",\n  \"evaluatie\": \"evaluatie\",\n  \"evaluatiecommissie\": \"evaluatiecommissie\",\n  \"evaluatienota\": \"evaluatienota\",\n  \"evaluatieonderzoek\": \"evaluatieonderzoek\",\n  \"evaluatieperiode\": \"evaluatieperiod\",\n  \"evaluatieproject\": \"evaluatieproject\",\n  \"evaluatierapport\": \"evaluatierapport\",\n  \"evaluatierapporten\": \"evaluatierapport\",\n  \"evaluaties\": \"evaluaties\",\n  \"evaluatieverslag\": \"evaluatieverslag\",\n  \"evaluation\": \"evaluation\",\n  \"evalueert\": \"evalueert\",\n  \"evalueren\": \"evaluer\",\n  \"evd\": \"evd\",\n  \"evebat\": \"evebat\",\n  \"even\": \"even\",\n  \"éven\": \"even\",\n  \"evenaar\": \"evenar\",\n  \"evenals\": \"evenal\",\n  \"eveneens\": \"evenen\",\n  \"evenement\": \"evenement\",\n  \"evenementen\": \"evenement\",\n  \"evengoed\": \"evengoed\",\n  \"evenmens\": \"evenmen\",\n  \"evenmin\": \"evenmin\",\n  \"evenredig\": \"evenred\",\n  \"evenredigheid\": \"evenred\",\n  \"eventjes\": \"eventjes\",\n  \"eventueel\": \"eventueel\",\n  \"eventuele\": \"eventuel\",\n  \"evenveel\": \"evenvel\",\n  \"evenwel\": \"evenwel\",\n  \"evenwicht\": \"evenwicht\",\n  \"evenwichtig\": \"evenwicht\",\n  \"evenwichtiger\": \"evenwichtiger\",\n  \"evenwichtsbemesting\": \"evenwichtsbemest\",\n  \"evenzeer\": \"evenzer\",\n  \"evenzo\": \"evenzo\",\n  \"evenzoveel\": \"evenzovel\",\n  \"everest\": \"everest\",\n  \"everingepolder\": \"everingepolder\",\n  \"evers\": \"ever\",\n  \"evn\": \"evn\",\n  \"evo\": \"evo\",\n  \"evoa\": \"evoa\",\n  \"evocatie\": \"evocatie\",\n  \"evoluon\": \"evoluon\",\n  \"evolutie\": \"evolutie\",\n  \"evp\": \"evp\",\n  \"evtech\": \"evtech\",\n  \"ewab\": \"ewab\",\n  \"ewald\": \"ewald\",\n  \"ewals\": \"ewal\",\n  \"ewg\": \"ewg\",\n  \"ex\": \"ex\",\n  \"exact\": \"exact\",\n  \"exacte\": \"exact\",\n  \"examen\": \"exam\",\n  \"examens\": \"examen\",\n  \"excellence\": \"excellenc\",\n  \"excellent\": \"excellent\",\n  \"excellente\": \"excellent\",\n  \"excellentie\": \"excellentie\",\n  \"exceptionele\": \"exceptionel\",\n  \"excercities\": \"excercities\",\n  \"excessive\": \"excessiv\",\n  \"exchange\": \"exchang\",\n  \"exclusief\": \"exclusief\",\n  \"exclusieve\": \"exclusiev\",\n  \"excursies\": \"excursies\",\n  \"excuseerde\": \"excuseerd\",\n  \"excuseren\": \"excuser\",\n  \"excuses\": \"excuses\",\n  \"excuzes\": \"excuzes\",\n  \"executeren\": \"executer\",\n  \"executie\": \"executie\",\n  \"executief\": \"executief\",\n  \"executies\": \"executies\",\n  \"executiewaarde\": \"executiewaard\",\n  \"executive\": \"executiv\",\n  \"exemplaar\": \"exemplar\",\n  \"exemplaren\": \"exemplar\",\n  \"exergy\": \"exergy\",\n  \"exhibition\": \"exhibition\",\n  \"exophiala\": \"exophiala\",\n  \"exotherm\": \"exotherm\",\n  \"exotisch\": \"exotisch\",\n  \"expanderen\": \"expander\",\n  \"expanderende\": \"expander\",\n  \"expansie\": \"expansie\",\n  \"expansiedoelstellingen\": \"expansiedoelstell\",\n  \"expansiegedeelte\": \"expansiegedeelt\",\n  \"expansievaten\": \"expansievat\",\n  \"expected\": \"expected\",\n  \"expeditie\": \"expeditie\",\n  \"experiment\": \"experiment\",\n  \"experimenteel\": \"experimentel\",\n  \"experimenteerfase\": \"experimenteerfas\",\n  \"experimenteert\": \"experimenteert\",\n  \"experimentele\": \"experimentel\",\n  \"experimenten\": \"experiment\",\n  \"experimenteren\": \"experimenter\",\n  \"expert\": \"expert\",\n  \"expertise\": \"expertis\",\n  \"expertisepositie\": \"expertisepositie\",\n  \"experts\": \"expert\",\n  \"explicatie\": \"explicatie\",\n  \"expliciet\": \"expliciet\",\n  \"expliciete\": \"expliciet\",\n  \"explodeerde\": \"explodeerd\",\n  \"exploitabel\": \"exploitabel\",\n  \"exploitabele\": \"exploitabel\",\n  \"exploitant\": \"exploitant\",\n  \"exploitanten\": \"exploitant\",\n  \"exploitatie\": \"exploitatie\",\n  \"exploitatiebijdragen\": \"exploitatiebijdrag\",\n  \"exploitatiefase\": \"exploitatiefas\",\n  \"exploitatiekosten\": \"exploitatiekost\",\n  \"exploitatiemaatschappij\": \"exploitatiemaatschappij\",\n  \"exploitatiemaatschappijen\": \"exploitatiemaatschappij\",\n  \"exploitatiemogelijkheden\": \"exploitatiemog\",\n  \"exploitatieprogramma\": \"exploitatieprogramma\",\n  \"exploitatiesaldo\": \"exploitatiesaldo\",\n  \"exploitatievergunning\": \"exploitatievergunn\",\n  \"exploitatiewinst\": \"exploitatiewinst\",\n  \"exploiteert\": \"exploiteert\",\n  \"exploiteren\": \"exploiter\",\n  \"exploratie\": \"exploratie\",\n  \"exploratiemaatschappijen\": \"exploratiemaatschappij\",\n  \"exploration\": \"exploration\",\n  \"exploring\": \"explor\",\n  \"explosie\": \"explosie\",\n  \"explosief\": \"explosief\",\n  \"explosiegevaar\": \"explosiegevar\",\n  \"explosieholten\": \"explosieholt\",\n  \"explosies\": \"explosies\",\n  \"explosieve\": \"explosiev\",\n  \"explosion\": \"explosion\",\n  \"explosiviteit\": \"explosiviteit\",\n  \"expo\": \"expo\",\n  \"exponentiële\": \"exponentiel\",\n  \"export\": \"export\",\n  \"exportartikel\": \"exportartikel\",\n  \"exportbedrijf\": \"exportbedrijf\",\n  \"exportcijfers\": \"exportcijfer\",\n  \"exportcombinaties\": \"exportcombinaties\",\n  \"exporteerde\": \"exporteerd\",\n  \"exporteert\": \"exporteert\",\n  \"exporteren\": \"exporter\",\n  \"exporteur\": \"exporteur\",\n  \"exporteurs\": \"exporteur\",\n  \"exportgroei\": \"exportgroei\",\n  \"exportmogelijkheden\": \"exportmog\",\n  \"exportorganisaties\": \"exportorganisaties\",\n  \"exportprodukt\": \"exportprodukt\",\n  \"exportprodukten\": \"exportprodukt\",\n  \"exportpublikaties\": \"exportpublikaties\",\n  \"exportquote\": \"exportquot\",\n  \"exportsteun\": \"exportsteun\",\n  \"exportstrategie\": \"exportstrategie\",\n  \"exportverbod\": \"exportverbod\",\n  \"exportvergunning\": \"exportvergunn\",\n  \"exportwaarde\": \"exportwaard\",\n  \"exposanten\": \"exposant\",\n  \"exposeert\": \"exposeert\",\n  \"expositie\": \"expositie\",\n  \"exposities\": \"exposities\",\n  \"exposure\": \"exposur\",\n  \"expoterende\": \"expoter\",\n  \"expres\": \"expres\",\n  \"expressie\": \"expressie\",\n  \"expressies\": \"expressies\",\n  \"expro\": \"expro\",\n  \"exquis\": \"exquis\",\n  \"exquisiteit\": \"exquisiteit\",\n  \"exquize\": \"exquiz\",\n  \"extatische\": \"extatisch\",\n  \"extaze\": \"extaz\",\n  \"extensieve\": \"extensiev\",\n  \"extensivering\": \"extensiver\",\n  \"extern\": \"extern\",\n  \"externe\": \"extern\",\n  \"externen\": \"extern\",\n  \"extra\": \"extra\",\n  \"extracten\": \"extract\",\n  \"extractie\": \"extractie\",\n  \"extractief\": \"extractief\",\n  \"extractieputten\": \"extractieput\",\n  \"extractietechnologie\": \"extractietechnologie\",\n  \"extractieve\": \"extractiev\",\n  \"extraction\": \"extraction\",\n  \"extraferm\": \"extraferm\",\n  \"extraheren\": \"extraher\",\n  \"extramurale\": \"extramural\",\n  \"extreem\": \"extrem\",\n  \"extreme\": \"extrem\",\n  \"extrusie\": \"extrusie\",\n  \"extrusion\": \"extrusion\",\n  \"extrusions\": \"extrusion\",\n  \"exxon\": \"exxon\",\n  \"eyck\": \"eyck\",\n  \"ez\": \"ez\",\n  \"ezh\": \"ezh\",\n  \"ezw\": \"ezw\",\n  \"f\": \"f\",\n  \"faalde\": \"faald\",\n  \"faam\": \"fam\",\n  \"fabels\": \"fabel\",\n  \"faber\": \"faber\",\n  \"fabes\": \"fabes\",\n  \"fabricage\": \"fabricag\",\n  \"fabricageprocessen\": \"fabricageprocess\",\n  \"fabrications\": \"fabrication\",\n  \"fabriceerde\": \"fabriceerd\",\n  \"fabriceren\": \"fabricer\",\n  \"fabricom\": \"fabricom\",\n  \"fabriek\": \"fabriek\",\n  \"fabrieken\": \"fabriek\",\n  \"fabrieksgegevens\": \"fabrieksgegeven\",\n  \"fabriekshal\": \"fabriekshal\",\n  \"fabrieksleven\": \"fabriekslev\",\n  \"fabriekslokaties\": \"fabriekslokaties\",\n  \"fabrieksmatig\": \"fabrieksmat\",\n  \"fabrieksontwerp\": \"fabrieksontwerp\",\n  \"fabrieksopgaven\": \"fabrieksopgav\",\n  \"fabriekssteden\": \"fabriekssted\",\n  \"fabrieksterrein\": \"fabrieksterrein\",\n  \"fabriekszaken\": \"fabriekszak\",\n  \"fabrikage\": \"fabrikag\",\n  \"fabrikant\": \"fabrikant\",\n  \"fabrikanten\": \"fabrikant\",\n  \"fabrikantengeslacht\": \"fabrikantengeslacht\",\n  \"fabrikaten\": \"fabrikat\",\n  \"fabris\": \"fabris\",\n  \"face\": \"fac\",\n  \"facetten\": \"facet\",\n  \"fachhochschule\": \"fachhochschul\",\n  \"facilitaire\": \"facilitair\",\n  \"faciliteit\": \"faciliteit\",\n  \"faciliteiten\": \"faciliteit\",\n  \"facilitering\": \"faciliter\",\n  \"facility\": \"facility\",\n  \"factor\": \"factor\",\n  \"factoren\": \"factor\",\n  \"facturen\": \"factur\",\n  \"factuur\": \"factur\",\n  \"faculteit\": \"faculteit\",\n  \"faculteiten\": \"faculteit\",\n  \"faecaliën\": \"faecalien\",\n  \"faiences\": \"faiences\",\n  \"faïences\": \"faiences\",\n  \"failliet\": \"failliet\",\n  \"failliete\": \"failliet\",\n  \"faillisementen\": \"faillisement\",\n  \"faillissement\": \"faillissement\",\n  \"fair\": \"fair\",\n  \"fairfax\": \"fairfax\",\n  \"falend\": \"falend\",\n  \"falende\": \"falend\",\n  \"fall\": \"fall\",\n  \"fallout\": \"fallout\",\n  \"familie\": \"familie\",\n  \"familieavonden\": \"familieavond\",\n  \"familieband\": \"familieband\",\n  \"familiebanden\": \"familieband\",\n  \"familiegeheim\": \"familiegeheim\",\n  \"familiegevoel\": \"familiegevoel\",\n  \"familiegraf\": \"familiegraf\",\n  \"familiekring\": \"familiekr\",\n  \"familieleden\": \"familieled\",\n  \"familieleven\": \"familielev\",\n  \"familielid\": \"familielid\",\n  \"familieliefde\": \"familieliefd\",\n  \"familieportretten\": \"familieportret\",\n  \"families\": \"families\",\n  \"familieschande\": \"familieschand\",\n  \"familiestad\": \"familiestad\",\n  \"familietafereel\": \"familietaferel\",\n  \"familietrots\": \"familietrot\",\n  \"familiezwak\": \"familiezwak\",\n  \"fanatisme\": \"fanatism\",\n  \"fangataufa\": \"fangataufa\",\n  \"fanomos\": \"fanomos\",\n  \"fantaseer\": \"fantaser\",\n  \"fantaseerde\": \"fantaseerd\",\n  \"fantasie\": \"fantasie\",\n  \"fantastisch\": \"fantastisch\",\n  \"fantastische\": \"fantastisch\",\n  \"fantazie\": \"fantazie\",\n  \"fantazieën\": \"fantazieen\",\n  \"fantazietjes\": \"fantazietjes\",\n  \"fao\": \"fao\",\n  \"farce\": \"farc\",\n  \"fardem\": \"fardem\",\n  \"farm\": \"farm\",\n  \"farmaceutisch\": \"farmaceutisch\",\n  \"farmaceutische\": \"farmaceutisch\",\n  \"farmacieconcern\": \"farmacieconcern\",\n  \"farmers\": \"farmer\",\n  \"farming\": \"farming\",\n  \"fascistische\": \"fascistisch\",\n  \"fase\": \"fas\",\n  \"fasegewijs\": \"fasegewijs\",\n  \"fasegewijze\": \"fasegewijz\",\n  \"fasen\": \"fas\",\n  \"faseren\": \"faser\",\n  \"fasering\": \"faser\",\n  \"fases\": \"fases\",\n  \"faseverschil\": \"faseverschil\",\n  \"fashion\": \"fashion\",\n  \"fashionabele\": \"fashionabel\",\n  \"fast\": \"fast\",\n  \"fastfood\": \"fastfod\",\n  \"fasto\": \"fasto\",\n  \"fataal\": \"fatal\",\n  \"fathom\": \"fathom\",\n  \"fatje\": \"fatj\",\n  \"fatsoen\": \"fatsoen\",\n  \"fatsoenlijk\": \"fatsoen\",\n  \"fatsoenlijke\": \"fatsoen\",\n  \"fatsoenlijkheid\": \"fatsoen\",\n  \"fatsoenlijks\": \"fatsoen\",\n  \"fauline\": \"faulin\",\n  \"faun\": \"faun\",\n  \"fauna\": \"fauna\",\n  \"faunabeheer\": \"faunabeher\",\n  \"faunenmasker\": \"faunenmasker\",\n  \"fauteuil\": \"fauteuil\",\n  \"faversham\": \"faversham\",\n  \"favoriet\": \"favoriet\",\n  \"fax\": \"fax\",\n  \"faxen\": \"fax\",\n  \"faye\": \"fay\",\n  \"fayetteville\": \"fayettevill\",\n  \"fccc\": \"fccc\",\n  \"fcn\": \"fcn\",\n  \"fd\": \"fd\",\n  \"fda\": \"fda\",\n  \"fdm\": \"fdm\",\n  \"fdo\": \"fdo\",\n  \"fe\": \"fe\",\n  \"fearnside\": \"fearnsid\",\n  \"febiac\": \"febiac\",\n  \"februari\": \"februari\",\n  \"fechner\": \"fechner\",\n  \"federal\": \"federal\",\n  \"federale\": \"federal\",\n  \"federatie\": \"federatie\",\n  \"federation\": \"federation\",\n  \"fédération\": \"federation\",\n  \"fee\": \"fee\",\n  \"feedstock\": \"feedstock\",\n  \"feeën\": \"feeen\",\n  \"feeënfiguurtje\": \"feeenfiguurtj\",\n  \"feeënverhaaltjes\": \"feeenverhaaltjes\",\n  \"feenstra\": \"feenstra\",\n  \"feestelijke\": \"feestelijk\",\n  \"feesten\": \"feest\",\n  \"feestje\": \"feestj\",\n  \"fehmarn\": \"fehmarn\",\n  \"feijenoordstadion\": \"feijenoordstadion\",\n  \"feit\": \"feit\",\n  \"feite\": \"feit\",\n  \"feitelijk\": \"feitelijk\",\n  \"feitelijke\": \"feitelijk\",\n  \"feitelijkheid\": \"feitelijk\",\n  \"feiten\": \"feit\",\n  \"fel\": \"fel\",\n  \"feliciteren\": \"feliciter\",\n  \"felix\": \"felix\",\n  \"felle\": \"fell\",\n  \"feller\": \"feller\",\n  \"fels\": \"fel\",\n  \"felst\": \"felst\",\n  \"feminisme\": \"feminism\",\n  \"femke\": \"femk\",\n  \"fenol\": \"fenol\",\n  \"fenolherbiciden\": \"fenolherbicid\",\n  \"fenomeen\": \"fenomen\",\n  \"fenomenen\": \"fenomen\",\n  \"fenpicionil\": \"fenpicionil\",\n  \"fentin\": \"fentin\",\n  \"fenton\": \"fenton\",\n  \"fenuron\": \"fenuron\",\n  \"fenylhydrazine\": \"fenylhydrazin\",\n  \"fep\": \"fep\",\n  \"fergus\": \"fergus\",\n  \"fermacell\": \"fermacell\",\n  \"ferme\": \"ferm\",\n  \"fermentatie\": \"fermentatie\",\n  \"fermenteren\": \"fermenter\",\n  \"fermer\": \"fermer\",\n  \"feromonen\": \"feromon\",\n  \"ferrailles\": \"ferrailles\",\n  \"ferretti\": \"ferretti\",\n  \"ferriet\": \"ferriet\",\n  \"ferris\": \"ferris\",\n  \"ferro\": \"ferro\",\n  \"ferrometalen\": \"ferrometal\",\n  \"fes\": \"fes\",\n  \"feuerzauber\": \"feuerzauber\",\n  \"fevs\": \"fev\",\n  \"few\": \"few\",\n  \"fff\": \"fff\",\n  \"fg\": \"fg\",\n  \"fgd\": \"fgd\",\n  \"fhg\": \"fhg\",\n  \"fiar\": \"fiar\",\n  \"fiasco\": \"fiasco\",\n  \"fiat\": \"fiat\",\n  \"fiber\": \"fiber\",\n  \"fiberglas\": \"fiberglas\",\n  \"fibers\": \"fiber\",\n  \"fibrex\": \"fibrex\",\n  \"fiches\": \"fiches\",\n  \"fictief\": \"fictief\",\n  \"fictieve\": \"fictiev\",\n  \"fidic\": \"fidic\",\n  \"fie\": \"fie\",\n  \"fier\": \"fier\",\n  \"fiere\": \"fier\",\n  \"fierheid\": \"fierheid\",\n  \"fiets\": \"fiet\",\n  \"fietsen\": \"fiets\",\n  \"fietsende\": \"fietsend\",\n  \"fietsenmaker\": \"fietsenmaker\",\n  \"fietsenmarkt\": \"fietsenmarkt\",\n  \"fietsers\": \"fietser\",\n  \"fietsfabriek\": \"fietsfabriek\",\n  \"fietsinfrastructuur\": \"fietsinfrastructur\",\n  \"fietspad\": \"fietspad\",\n  \"fietspaden\": \"fietspad\",\n  \"fietspadenplan\": \"fietspadenplan\",\n  \"fietspak\": \"fietspak\",\n  \"fietspet\": \"fietspet\",\n  \"fietste\": \"fietst\",\n  \"fietsten\": \"fietst\",\n  \"fietstocht\": \"fietstocht\",\n  \"fietsverbindingen\": \"fietsverbind\",\n  \"fifra\": \"fifra\",\n  \"figaro\": \"figaro\",\n  \"figuren\": \"figur\",\n  \"figuur\": \"figur\",\n  \"figuurtje\": \"figuurtj\",\n  \"fijn\": \"fijn\",\n  \"fijnchemicaliën\": \"fijnchemicalien\",\n  \"fijnchemie\": \"fijnchemie\",\n  \"fijnchemische\": \"fijnchemisch\",\n  \"fijne\": \"fijn\",\n  \"fijner\": \"fijner\",\n  \"fijnere\": \"fijner\",\n  \"fijngemalen\": \"fijngemal\",\n  \"fijngevoelig\": \"fijngevoel\",\n  \"fijnheden\": \"fijnheid\",\n  \"fijnheid\": \"fijnheid\",\n  \"fijns\": \"fijn\",\n  \"fijntjes\": \"fijntjes\",\n  \"fikkende\": \"fikkend\",\n  \"fikse\": \"fik\",\n  \"file\": \"fil\",\n  \"fileprobleem\": \"fileproblem\",\n  \"files\": \"files\",\n  \"filevorming\": \"filevorm\",\n  \"filiaal\": \"filiaal\",\n  \"filialen\": \"filial\",\n  \"filippijnen\": \"filippijn\",\n  \"fill\": \"fill\",\n  \"film\": \"film\",\n  \"filmcassettes\": \"filmcassettes\",\n  \"films\": \"film\",\n  \"filmverpakkingen\": \"filmverpak\",\n  \"filosofie\": \"filosofie\",\n  \"filosofieën\": \"filosofieen\",\n  \"filozofeer\": \"filozofer\",\n  \"filozofeerde\": \"filozofeerd\",\n  \"filozoferende\": \"filozofer\",\n  \"filozofie\": \"filozofie\",\n  \"filozofietjes\": \"filozofietjes\",\n  \"filozofisch\": \"filozofisch\",\n  \"filozofische\": \"filozofisch\",\n  \"filpap\": \"filpap\",\n  \"filter\": \"filter\",\n  \"filterapparatuur\": \"filterapparatur\",\n  \"filteras\": \"filteras\",\n  \"filterdeel\": \"filterdel\",\n  \"filteren\": \"filter\",\n  \"filterende\": \"filter\",\n  \"filterinstallatie\": \"filterinstallatie\",\n  \"filterkoek\": \"filterkoek\",\n  \"filterkoeken\": \"filterkoek\",\n  \"filtermateriaal\": \"filtermateriaal\",\n  \"filterproducent\": \"filterproducent\",\n  \"filters\": \"filter\",\n  \"filterstof\": \"filterstof\",\n  \"filtersysteem\": \"filtersystem\",\n  \"filtersystemen\": \"filtersystem\",\n  \"filtert\": \"filtert\",\n  \"filtertank\": \"filtertank\",\n  \"filtertechniek\": \"filtertechniek\",\n  \"filtratie\": \"filtratie\",\n  \"filtratiemembranen\": \"filtratiemembran\",\n  \"filtratietechniek\": \"filtratietechniek\",\n  \"filtratietechnologie\": \"filtratietechnologie\",\n  \"filtreren\": \"filtrer\",\n  \"filtube\": \"filtub\",\n  \"finale\": \"final\",\n  \"finance\": \"financ\",\n  \"financial\": \"financial\",\n  \"financieel\": \"financieel\",\n  \"financieele\": \"financieel\",\n  \"financiële\": \"financiel\",\n  \"financiën\": \"financien\",\n  \"financierde\": \"financierd\",\n  \"financierders\": \"financierder\",\n  \"financieren\": \"financier\",\n  \"financiering\": \"financier\",\n  \"financieringen\": \"financier\",\n  \"financierings\": \"financier\",\n  \"financieringsbeleid\": \"financieringsbeleid\",\n  \"financieringsbronnen\": \"financieringsbronn\",\n  \"financieringsinstrumenten\": \"financieringsinstrument\",\n  \"financieringskader\": \"financieringskader\",\n  \"financieringsmechanismen\": \"financieringsmechanism\",\n  \"financieringsmogelijkheden\": \"financieringsmog\",\n  \"financieringsorgaan\": \"financieringsorgan\",\n  \"financieringsproblemen\": \"financieringsproblem\",\n  \"financieringssteun\": \"financieringssteun\",\n  \"financiert\": \"financiert\",\n  \"financing\": \"financ\",\n  \"fine\": \"fin\",\n  \"finish\": \"finish\",\n  \"finite\": \"finit\",\n  \"finland\": \"finland\",\n  \"finnen\": \"finn\",\n  \"fins\": \"fin\",\n  \"finse\": \"fin\",\n  \"finvold\": \"finvold\",\n  \"fir\": \"fir\",\n  \"fire\": \"fir\",\n  \"firefly\": \"firefly\",\n  \"firesaf\": \"firesaf\",\n  \"firesafe\": \"firesaf\",\n  \"firma\": \"firma\",\n  \"firmament\": \"firmament\",\n  \"firmanaam\": \"firmanam\",\n  \"first\": \"first\",\n  \"fiscaal\": \"fiscal\",\n  \"fiscaalvriendelijk\": \"fiscaalvriend\",\n  \"fiscale\": \"fiscal\",\n  \"fiscalestelsel\": \"fiscalestelsel\",\n  \"fiscalist\": \"fiscalist\",\n  \"fiscus\": \"fiscus\",\n  \"fish\": \"fish\",\n  \"fitting\": \"fitting\",\n  \"fittingen\": \"fitting\",\n  \"fjord\": \"fjord\",\n  \"fks\": \"fks\",\n  \"flachglas\": \"flachglas\",\n  \"flacon\": \"flacon\",\n  \"flaconnetjes\": \"flaconnetjes\",\n  \"flacons\": \"flacon\",\n  \"fladderde\": \"fladderd\",\n  \"fladderen\": \"fladder\",\n  \"fladderend\": \"fladder\",\n  \"fladderende\": \"fladder\",\n  \"fladderig\": \"fladder\",\n  \"fladdering\": \"fladder\",\n  \"flag\": \"flag\",\n  \"flagstad\": \"flagstad\",\n  \"flakkerde\": \"flakkerd\",\n  \"flakkerden\": \"flakkerd\",\n  \"flakkerende\": \"flakker\",\n  \"flame\": \"flam\",\n  \"flammen\": \"flamm\",\n  \"flanders\": \"flander\",\n  \"flanel\": \"flanel\",\n  \"flanellen\": \"flanell\",\n  \"flankerend\": \"flanker\",\n  \"flap\": \"flap\",\n  \"flapper\": \"flapper\",\n  \"flapperen\": \"flapper\",\n  \"flapperende\": \"flapper\",\n  \"flarden\": \"flard\",\n  \"flatbewoners\": \"flatbewoner\",\n  \"flatgebouw\": \"flatgebouw\",\n  \"flatgebouwen\": \"flatgebouw\",\n  \"flats\": \"flat\",\n  \"flatteert\": \"flatteert\",\n  \"flauw\": \"flauw\",\n  \"flauwe\": \"flauw\",\n  \"flauwiteit\": \"flauwiteit\",\n  \"flauwte\": \"flauwt\",\n  \"flauwtes\": \"flauwtes\",\n  \"flauwtjes\": \"flauwtjes\",\n  \"flèbbeldingen\": \"flèbbeld\",\n  \"flebbels\": \"flebbel\",\n  \"fleece\": \"flec\",\n  \"fleischmann\": \"fleischmann\",\n  \"flens\": \"flen\",\n  \"flensloze\": \"flensloz\",\n  \"fles\": \"fles\",\n  \"flessen\": \"fless\",\n  \"flesvoeding\": \"flesvoed\",\n  \"fletse\": \"flet\",\n  \"fleurig\": \"fleurig\",\n  \"fleverwaard\": \"fleverwaard\",\n  \"flevocentrale\": \"flevocentral\",\n  \"flevoland\": \"flevoland\",\n  \"flevolandse\": \"flevoland\",\n  \"flexibel\": \"flexibel\",\n  \"flexibele\": \"flexibel\",\n  \"flexibeler\": \"flexibeler\",\n  \"flexibiliseren\": \"flexibiliser\",\n  \"flexibilisering\": \"flexibiliser\",\n  \"flexibiliteit\": \"flexibiliteit\",\n  \"flexo\": \"flexo\",\n  \"fliert\": \"fliert\",\n  \"flink\": \"flink\",\n  \"flinke\": \"flink\",\n  \"flinker\": \"flinker\",\n  \"flipper\": \"flipper\",\n  \"flirt\": \"flirt\",\n  \"flirtation\": \"flirtation\",\n  \"flits\": \"flit\",\n  \"flitsen\": \"flits\",\n  \"flitsende\": \"flitsend\",\n  \"flitskapitaal\": \"flitskapital\",\n  \"flitste\": \"flitst\",\n  \"flitsten\": \"flitst\",\n  \"flixborough\": \"flixborough\",\n  \"flo\": \"flo\",\n  \"float\": \"float\",\n  \"floatex\": \"floatex\",\n  \"floatlands\": \"floatland\",\n  \"flocculatie\": \"flocculatie\",\n  \"floers\": \"floer\",\n  \"floersen\": \"floers\",\n  \"flonkerden\": \"flonkerd\",\n  \"floor\": \"flor\",\n  \"floortje\": \"floortj\",\n  \"flòortje\": \"flòortj\",\n  \"floortjes\": \"floortjes\",\n  \"floot\": \"flot\",\n  \"flor\": \"flor\",\n  \"flora\": \"flora\",\n  \"floreal\": \"floreal\",\n  \"florena\": \"florena\",\n  \"florence\": \"florenc\",\n  \"floriade\": \"floriad\",\n  \"florida\": \"florida\",\n  \"floridienne\": \"floridienn\",\n  \"florigene\": \"florig\",\n  \"flos\": \"flos\",\n  \"flotatie\": \"flotatie\",\n  \"flotatieresidu\": \"flotatieresidu\",\n  \"flow\": \"flow\",\n  \"flowcoat\": \"flowcoat\",\n  \"flto\": \"flto\",\n  \"fluazinam\": \"fluazinam\",\n  \"fluctuatie\": \"fluctuatie\",\n  \"fluctuaties\": \"fluctuaties\",\n  \"fluctueert\": \"fluctueert\",\n  \"fluctuerende\": \"fluctuer\",\n  \"fluid\": \"fluid\",\n  \"fluïde\": \"fluid\",\n  \"fluidised\": \"fluidised\",\n  \"fluidized\": \"fluidized\",\n  \"fluim\": \"fluim\",\n  \"fluisterde\": \"fluisterd\",\n  \"fluisterden\": \"fluisterd\",\n  \"fluisteren\": \"fluister\",\n  \"fluisterend\": \"fluister\",\n  \"fluisterende\": \"fluister\",\n  \"fluistering\": \"fluister\",\n  \"fluisteringen\": \"fluister\",\n  \"fluisterschijf\": \"fluisterschijf\",\n  \"fluiten\": \"fluit\",\n  \"fluitend\": \"fluitend\",\n  \"fluitje\": \"fluitj\",\n  \"fluor\": \"fluor\",\n  \"fluorescentieverlichting\": \"fluorescentieverlicht\",\n  \"fluoresceren\": \"fluorescer\",\n  \"fluoridegehalte\": \"fluoridegehalt\",\n  \"fluoriden\": \"fluorid\",\n  \"fluoridewolken\": \"fluoridewolk\",\n  \"fluorkoolwaterstofverbindingen\": \"fluorkoolwaterstofverbind\",\n  \"fluorocarbons\": \"fluorocarbon\",\n  \"flush\": \"flush\",\n  \"flushparagraaf\": \"flushparagraf\",\n  \"flushregeling\": \"flushregel\",\n  \"flushvoorziening\": \"flushvoorzien\",\n  \"flüssigkeiten\": \"flussigkeit\",\n  \"flutolanil\": \"flutolanil\",\n  \"fluweel\": \"fluwel\",\n  \"fluwelen\": \"fluwel\",\n  \"fluweligs\": \"fluwel\",\n  \"flux\": \"flux\",\n  \"fme\": \"fme\",\n  \"fnv\": \"fnv\",\n  \"fo\": \"fo\",\n  \"fochteloërveen\": \"fochteloerven\",\n  \"focus\": \"focus\",\n  \"focussen\": \"focuss\",\n  \"focwa\": \"focwa\",\n  \"foei\": \"foei\",\n  \"fokker\": \"fokker\",\n  \"fokkerij\": \"fokkerij\",\n  \"fokkinga\": \"fokkinga\",\n  \"fokvarkens\": \"fokvarken\",\n  \"fokzeugen\": \"fokzeug\",\n  \"folder\": \"folder\",\n  \"folders\": \"folder\",\n  \"folianten\": \"foliant\",\n  \"folie\": \"folie\",\n  \"foliefabrikant\": \"foliefabrikant\",\n  \"foliened\": \"foliened\",\n  \"folieraper\": \"folieraper\",\n  \"folies\": \"folies\",\n  \"foliescherm\": \"foliescherm\",\n  \"folined\": \"folined\",\n  \"fom\": \"fom\",\n  \"foma\": \"foma\",\n  \"fond\": \"fond\",\n  \"fonden\": \"fond\",\n  \"fonds\": \"fond\",\n  \"fondsen\": \"fonds\",\n  \"fonkelde\": \"fonkeld\",\n  \"fonkelen\": \"fonkel\",\n  \"fonograaf\": \"fonograf\",\n  \"fonteintje\": \"fonteintj\",\n  \"food\": \"fod\",\n  \"foodconcern\": \"foodconcern\",\n  \"foods\": \"fod\",\n  \"football\": \"football\",\n  \"fopma\": \"fopma\",\n  \"for\": \"for\",\n  \"foray\": \"foray\",\n  \"forbes\": \"forbes\",\n  \"forbo\": \"forbo\",\n  \"forbrugerraadet\": \"forbrugerraadet\",\n  \"force\": \"forc\",\n  \"forceren\": \"forcer\",\n  \"forcing\": \"forcing\",\n  \"ford\": \"ford\",\n  \"foreign\": \"foreign\",\n  \"forel\": \"forel\",\n  \"forellen\": \"forell\",\n  \"forest\": \"forest\",\n  \"forestal\": \"forestal\",\n  \"fôrests\": \"fôrest\",\n  \"forfait\": \"forfait\",\n  \"forfaitaire\": \"forfaitair\",\n  \"forma\": \"forma\",\n  \"formaat\": \"format\",\n  \"formaldehyde\": \"formaldehyd\",\n  \"formaliteit\": \"formaliteit\",\n  \"formaliteiten\": \"formaliteit\",\n  \"formaten\": \"format\",\n  \"formatiewater\": \"formatiewater\",\n  \"formation\": \"formation\",\n  \"formeel\": \"formel\",\n  \"formeelrechtelijk\": \"formeelrecht\",\n  \"formeelrechtelijke\": \"formeelrecht\",\n  \"formeerden\": \"formeerd\",\n  \"formele\": \"formel\",\n  \"formule\": \"formul\",\n  \"formuleert\": \"formuleert\",\n  \"formuleren\": \"formuler\",\n  \"formulering\": \"formuler\",\n  \"formulier\": \"formulier\",\n  \"formulieren\": \"formulier\",\n  \"fornuisklokje\": \"fornuisklokj\",\n  \"fornuizen\": \"fornuiz\",\n  \"foron\": \"foron\",\n  \"fors\": \"for\",\n  \"forschungszentrum\": \"forschungszentrum\",\n  \"forse\": \"for\",\n  \"forser\": \"forser\",\n  \"fort\": \"fort\",\n  \"fortuin\": \"fortuin\",\n  \"fortuintje\": \"fortuintj\",\n  \"forum\": \"forum\",\n  \"forumdiscussie\": \"forumdiscussie\",\n  \"forums\": \"forum\",\n  \"fosafaathoudend\": \"fosafaathoud\",\n  \"fosfaat\": \"fosfat\",\n  \"fosfaatarm\": \"fosfaatarm\",\n  \"fosfaatbalans\": \"fosfaatbalan\",\n  \"fosfaatbemesting\": \"fosfaatbemest\",\n  \"fosfaatcijfer\": \"fosfaatcijfer\",\n  \"fosfaatconcentratie\": \"fosfaatconcentratie\",\n  \"fosfaatfixerende\": \"fosfaatfixer\",\n  \"fosfaatgehalte\": \"fosfaatgehalt\",\n  \"fosfaatgehalten\": \"fosfaatgehalt\",\n  \"fosfaatniveau\": \"fosfaatniveau\",\n  \"fosfaatnorm\": \"fosfaatnorm\",\n  \"fosfaatoverschot\": \"fosfaatoverschot\",\n  \"fosfaatoverschotten\": \"fosfaatoverschot\",\n  \"fosfaatprijs\": \"fosfaatprijs\",\n  \"fosfaatproduktie\": \"fosfaatproduktie\",\n  \"fosfaatquota\": \"fosfaatquota\",\n  \"fosfaatreductie\": \"fosfaatreductie\",\n  \"fosfaatrisicogebieden\": \"fosfaatrisicogebied\",\n  \"fosfaattekort\": \"fosfaattekort\",\n  \"fosfaattoestand\": \"fosfaattoestand\",\n  \"fosfaatuitscheiding\": \"fosfaatuitscheid\",\n  \"fosfaatuitspoeling\": \"fosfaatuitspoel\",\n  \"fosfaatverlies\": \"fosfaatverlies\",\n  \"fosfaatverliezen\": \"fosfaatverliez\",\n  \"fosfaatverwijdering\": \"fosfaatverwijder\",\n  \"fosfaatverwijderingsinstallatie\": \"fosfaatverwijderingsinstallatie\",\n  \"fosfaatverzadigde\": \"fosfaatverzadigd\",\n  \"fosfaatverzadigingsgraad\": \"fosfaatverzadigingsgrad\",\n  \"fosfaatvrij\": \"fosfaatvrij\",\n  \"fosfaten\": \"fosfat\",\n  \"fosfor\": \"fosfor\",\n  \"fosforbalans\": \"fosforbalan\",\n  \"fosforgehalte\": \"fosforgehalt\",\n  \"fosfortoevoegingen\": \"fosfortoevoeg\",\n  \"fosforzuur\": \"fosforzur\",\n  \"fosgeen\": \"fosgen\",\n  \"fossiele\": \"fossiel\",\n  \"fossil\": \"fossil\",\n  \"fost\": \"fost\",\n  \"foster\": \"foster\",\n  \"foto\": \"foto\",\n  \"fotochemie\": \"fotochemie\",\n  \"fotochemische\": \"fotochemisch\",\n  \"fotodiode\": \"fotodiod\",\n  \"fotogeleider\": \"fotogeleider\",\n  \"fotograaf\": \"fotograf\",\n  \"fotokopieermachines\": \"fotokopieermachines\",\n  \"foton\": \"foton\",\n  \"fotonaslagwerk\": \"fotonaslagwerk\",\n  \"fotongeneratie\": \"fotongeneratie\",\n  \"fotoreacties\": \"fotoreacties\",\n  \"fotosynthese\": \"fotosynthes\",\n  \"fotosynthetische\": \"fotosynthetisch\",\n  \"fotovoltaische\": \"fotovoltaisch\",\n  \"fotovoltaïsche\": \"fotovoltaisch\",\n  \"fotovoltaordt\": \"fotovoltaordt\",\n  \"foulings\": \"fouling\",\n  \"foundation\": \"foundation\",\n  \"fouragehandelaar\": \"fouragehandelar\",\n  \"fouragerende\": \"fourager\",\n  \"fourier\": \"fourier\",\n  \"fourneert\": \"fourneert\",\n  \"fourneren\": \"fourner\",\n  \"fout\": \"fout\",\n  \"fouten\": \"fout\",\n  \"foutieve\": \"foutiev\",\n  \"foutmarges\": \"foutmarges\",\n  \"foxhol\": \"foxhol\",\n  \"fraaie\": \"fraai\",\n  \"fraanje\": \"fraanj\",\n  \"frac\": \"frac\",\n  \"fractie\": \"fractie\",\n  \"fractieleider\": \"fractieleider\",\n  \"fracties\": \"fracties\",\n  \"fractievoorzitter\": \"fractievoorzitter\",\n  \"fractiewoordvoerder\": \"fractiewoordvoerder\",\n  \"fractionering\": \"fractioner\",\n  \"fragmentatie\": \"fragmentatie\",\n  \"fragmentation\": \"fragmentation\",\n  \"frambozen\": \"framboz\",\n  \"frame\": \"fram\",\n  \"framework\": \"framework\",\n  \"franc\": \"franc\",\n  \"francaise\": \"francais\",\n  \"france\": \"franc\",\n  \"franchise\": \"franchis\",\n  \"franchisenemers\": \"franchisenemer\",\n  \"francis\": \"francis\",\n  \"franciscus\": \"franciscus\",\n  \"francs\": \"franc\",\n  \"frank\": \"frank\",\n  \"frankfurt\": \"frankfurt\",\n  \"frankrijk\": \"frankrijk\",\n  \"frankrijks\": \"frankrijk\",\n  \"franks\": \"frank\",\n  \"frans\": \"fran\",\n  \"franse\": \"fran\",\n  \"fransen\": \"frans\",\n  \"fransisco\": \"fransisco\",\n  \"fransman\": \"fransman\",\n  \"fraude\": \"fraud\",\n  \"fraudebestrijding\": \"fraudebestrijd\",\n  \"fraudegevoelig\": \"fraudegevoel\",\n  \"fraudegevoeligheid\": \"fraudegevoel\",\n  \"frauderende\": \"frauder\",\n  \"frauduleuze\": \"frauduleuz\",\n  \"fraunhofer\": \"fraunhofer\",\n  \"fraze\": \"fraz\",\n  \"frazier\": \"frazier\",\n  \"frederikstraat\": \"frederikstrat\",\n  \"free\": \"free\",\n  \"freeling\": \"freeling\",\n  \"freeman\": \"freeman\",\n  \"freeport\": \"freeport\",\n  \"freon\": \"freon\",\n  \"freonen\": \"freon\",\n  \"frequent\": \"frequent\",\n  \"frequentere\": \"frequenter\",\n  \"frequentie\": \"frequentie\",\n  \"frequentiegeregelde\": \"frequentiegeregeld\",\n  \"frequentieregelaar\": \"frequentieregelar\",\n  \"frequentieregelaars\": \"frequentieregelar\",\n  \"frequenties\": \"frequenties\",\n  \"fresco\": \"fresco\",\n  \"fresenius\": \"fresenius\",\n  \"freshwater\": \"freshwater\",\n  \"freule\": \"freul\",\n  \"frezen\": \"frez\",\n  \"frico\": \"frico\",\n  \"fried\": \"fried\",\n  \"frieling\": \"frieling\",\n  \"friends\": \"friend\",\n  \"fries\": \"fries\",\n  \"friese\": \"fries\",\n  \"friesesteijn\": \"friesesteijn\",\n  \"friesland\": \"friesland\",\n  \"friezen\": \"friez\",\n  \"frigo\": \"frigo\",\n  \"friis\": \"friis\",\n  \"frikadel\": \"frikadel\",\n  \"frima\": \"frima\",\n  \"fris\": \"fris\",\n  \"frisdrank\": \"frisdrank\",\n  \"frisdrankblikjes\": \"frisdrankblikjes\",\n  \"frisdranken\": \"frisdrank\",\n  \"friseer\": \"friser\",\n  \"frisgroene\": \"frisgroen\",\n  \"frisheid\": \"frisheid\",\n  \"frisse\": \"fris\",\n  \"frisser\": \"frisser\",\n  \"frissere\": \"frisser\",\n  \"frisvervige\": \"frisverv\",\n  \"frits\": \"frit\",\n  \"frituurt\": \"frituurt\",\n  \"frituurvet\": \"frituurvet\",\n  \"frizuur\": \"frizur\",\n  \"fro\": \"fro\",\n  \"from\": \"from\",\n  \"frommelde\": \"frommeld\",\n  \"frons\": \"fron\",\n  \"fronsen\": \"frons\",\n  \"fronsend\": \"fronsend\",\n  \"fronsende\": \"fronsend\",\n  \"fronste\": \"fronst\",\n  \"front\": \"front\",\n  \"frontaal\": \"frontal\",\n  \"fronten\": \"front\",\n  \"frontlader\": \"frontlader\",\n  \"frontplaten\": \"frontplat\",\n  \"frouws\": \"frouw\",\n  \"fruit\": \"fruit\",\n  \"fruitboomgaard\": \"fruitboomgaard\",\n  \"fruitboompjes\": \"fruitboompjes\",\n  \"fruitconsult\": \"fruitconsult\",\n  \"fruitmot\": \"fruitmot\",\n  \"fruitsector\": \"fruitsector\",\n  \"fruitsoorten\": \"fruitsoort\",\n  \"fruitspint\": \"fruitspint\",\n  \"fruitteelt\": \"fruitteelt\",\n  \"fruitteler\": \"fruitteler\",\n  \"fruittelers\": \"fruitteler\",\n  \"frustreerde\": \"frustreerd\",\n  \"frustreert\": \"frustreert\",\n  \"frustreren\": \"frustrer\",\n  \"frustrerend\": \"frustrer\",\n  \"fry\": \"fry\",\n  \"fsc\": \"fsc\",\n  \"fsconbag\": \"fsconbag\",\n  \"ftalaat\": \"ftalat\",\n  \"ftalaatesters\": \"ftalaatester\",\n  \"ftalaten\": \"ftalat\",\n  \"fucocloxuron\": \"fucocloxuron\",\n  \"fuel\": \"fuel\",\n  \"fuels\": \"fuel\",\n  \"fugro\": \"fugro\",\n  \"führungskräfte\": \"fuhrungskraft\",\n  \"fuji\": \"fuji\",\n  \"fujitsu\": \"fujitsu\",\n  \"fukuoka\": \"fukuoka\",\n  \"full\": \"full\",\n  \"funcosil\": \"funcosil\",\n  \"functie\": \"functie\",\n  \"functieindicatoren\": \"functieindicator\",\n  \"functies\": \"functies\",\n  \"functiewijziging\": \"functiewijz\",\n  \"functionaliteit\": \"functionaliteit\",\n  \"functionaris\": \"functionaris\",\n  \"functionarissen\": \"functionariss\",\n  \"functioneeert\": \"functioneeert\",\n  \"functioneert\": \"functioneert\",\n  \"functionele\": \"functionel\",\n  \"functioneren\": \"functioner\",\n  \"functionerend\": \"functioner\",\n  \"functionerende\": \"functioner\",\n  \"functionneert\": \"functionneert\",\n  \"fund\": \"fund\",\n  \"fundament\": \"fundament\",\n  \"fundamenteel\": \"fundamentel\",\n  \"fundering\": \"funder\",\n  \"funderingen\": \"funder\",\n  \"funderingsdieptes\": \"funderingsdieptes\",\n  \"funderingsmateriaal\": \"funderingsmateriaal\",\n  \"funderingspalen\": \"funderingspal\",\n  \"funderingszand\": \"funderingszand\",\n  \"funen\": \"fun\",\n  \"funest\": \"funest\",\n  \"fungeerde\": \"fungeerd\",\n  \"fungeert\": \"fungeert\",\n  \"fungeren\": \"funger\",\n  \"fungi\": \"fungi\",\n  \"fungicide\": \"fungicid\",\n  \"fungopie\": \"fungopie\",\n  \"fungus\": \"fungus\",\n  \"fup\": \"fup\",\n  \"für\": \"fur\",\n  \"furanen\": \"furan\",\n  \"fürth\": \"furth\",\n  \"fusarium\": \"fusarium\",\n  \"fuseerde\": \"fuseerd\",\n  \"fuseert\": \"fuseert\",\n  \"fuseren\": \"fuser\",\n  \"fusersysteem\": \"fusersystem\",\n  \"fusie\": \"fusie\",\n  \"fusiegolf\": \"fusiegolf\",\n  \"fusieplannen\": \"fusieplann\",\n  \"fusieproces\": \"fusieproces\",\n  \"fusiereactor\": \"fusiereactor\",\n  \"fusies\": \"fusies\",\n  \"fusion\": \"fusion\",\n  \"future\": \"futur\",\n  \"futuristische\": \"futuristisch\",\n  \"fwr\": \"fwr\",\n  \"fysica\": \"fysica\",\n  \"fysiek\": \"fysiek\",\n  \"fysieke\": \"fysiek\",\n  \"fysisch\": \"fysisch\",\n  \"fysische\": \"fysisch\",\n  \"fytofar\": \"fytofar\",\n  \"fytofarmacie\": \"fytofarmacie\",\n  \"fyziek\": \"fyziek\",\n  \"fzk\": \"fzk\",\n  \"g\": \"g\",\n  \"ga\": \"ga\",\n  \"gaaff\": \"gaaff\",\n  \"gaafste\": \"gaafst\",\n  \"gaan\": \"gan\",\n  \"gaande\": \"gaand\",\n  \"gaanderen\": \"gaander\",\n  \"gaapt\": \"gaapt\",\n  \"gaapte\": \"gaapt\",\n  \"gaarne\": \"gaarn\",\n  \"gaas\": \"gas\",\n  \"gaasband\": \"gaasband\",\n  \"gaasterland\": \"gaasterland\",\n  \"gaat\": \"gat\",\n  \"gáat\": \"gat\",\n  \"gáát\": \"gat\",\n  \"gabor\": \"gabor\",\n  \"gabrowski\": \"gabrowski\",\n  \"gabrowsky\": \"gabrowsky\",\n  \"gac\": \"gac\",\n  \"gado\": \"gado\",\n  \"gaf\": \"gaf\",\n  \"gaia\": \"gaia\",\n  \"gaillarde\": \"gaillard\",\n  \"gaillot\": \"gaillot\",\n  \"gal\": \"gal\",\n  \"gala\": \"gala\",\n  \"galant\": \"galant\",\n  \"galante\": \"galant\",\n  \"galanthamine\": \"galanthamin\",\n  \"galerie\": \"galerie\",\n  \"galicië\": \"galicie\",\n  \"gall\": \"gall\",\n  \"gallagher\": \"gallagher\",\n  \"gallery\": \"gallery\",\n  \"gallucci\": \"gallucci\",\n  \"galmden\": \"galmd\",\n  \"galon\": \"galon\",\n  \"galva\": \"galva\",\n  \"galvanisatiegroep\": \"galvanisatiegroep\",\n  \"galvanisatiezuren\": \"galvanisatiezur\",\n  \"galvanische\": \"galvanisch\",\n  \"galvaniseringsbedrijf\": \"galvaniseringsbedrijf\",\n  \"galvanizing\": \"galvaniz\",\n  \"gamma\": \"gamma\",\n  \"gammastraling\": \"gammastral\",\n  \"gamog\": \"gamog\",\n  \"gane\": \"gan\",\n  \"gang\": \"gang\",\n  \"gangbaar\": \"gangbar\",\n  \"gangbare\": \"gangbar\",\n  \"gangdeur\": \"gangdeur\",\n  \"gangen\": \"gang\",\n  \"gangetje\": \"gangetj\",\n  \"gansewinkel\": \"gansewinkel\",\n  \"ganzen\": \"ganz\",\n  \"ganzevles\": \"ganzevles\",\n  \"gao\": \"gao\",\n  \"gap\": \"gap\",\n  \"gapen\": \"gap\",\n  \"gapende\": \"gapend\",\n  \"garage\": \"garag\",\n  \"garagebedrijf\": \"garagebedrijf\",\n  \"garagebedrijfjes\": \"garagebedrijfjes\",\n  \"garagebedrijven\": \"garagebedrijv\",\n  \"garagehouders\": \"garagehouder\",\n  \"garages\": \"garages\",\n  \"garagevloeren\": \"garagevloer\",\n  \"garandeert\": \"garandeert\",\n  \"garanderen\": \"garander\",\n  \"garant\": \"garant\",\n  \"garantie\": \"garantie\",\n  \"garantiebepalingen\": \"garantiebepal\",\n  \"garantiefonds\": \"garantiefond\",\n  \"garantiefondsstelsel\": \"garantiefondsstelsel\",\n  \"garanties\": \"garanties\",\n  \"garantiestelsel\": \"garantiestelsel\",\n  \"garcia\": \"garcia\",\n  \"garderobe\": \"garderob\",\n  \"garen\": \"gar\",\n  \"garnaal\": \"garnal\",\n  \"garnalen\": \"garnal\",\n  \"garnalenfarms\": \"garnalenfarm\",\n  \"garnalenkwekerijen\": \"garnalenkwekerij\",\n  \"garnalenteelt\": \"garnalenteelt\",\n  \"garnizoen\": \"garnizoen\",\n  \"gas\": \"gas\",\n  \"gasbedrijf\": \"gasbedrijf\",\n  \"gasbehandeling\": \"gasbehandel\",\n  \"gasbehandelingsinstallatie\": \"gasbehandelingsinstallatie\",\n  \"gasboringen\": \"gasbor\",\n  \"gasbronhouders\": \"gasbronhouder\",\n  \"gasbroninstallaties\": \"gasbroninstallaties\",\n  \"gasbronnen\": \"gasbronn\",\n  \"gascentrale\": \"gascentral\",\n  \"gaschromatograaf\": \"gaschromatograf\",\n  \"gaschromatografie\": \"gaschromatografie\",\n  \"gasconcentraties\": \"gasconcentraties\",\n  \"gascooled\": \"gascooled\",\n  \"gasdicht\": \"gasdicht\",\n  \"gasdistributiebedrijven\": \"gasdistributiebedrijv\",\n  \"gasdistributieleiding\": \"gasdistributieleid\",\n  \"gasdistributiesysteem\": \"gasdistributiesystem\",\n  \"gasdroogfaciliteiten\": \"gasdroogfaciliteit\",\n  \"gasexplosie\": \"gasexplosie\",\n  \"gasexport\": \"gasexport\",\n  \"gasfabriek\": \"gasfabriek\",\n  \"gasfabrieken\": \"gasfabriek\",\n  \"gasfabriekterreinen\": \"gasfabriekterrein\",\n  \"gasfasetechnologie\": \"gasfasetechnologie\",\n  \"gasgebruik\": \"gasgebruik\",\n  \"gasgekoelde\": \"gasgekoeld\",\n  \"gasgestookte\": \"gasgestookt\",\n  \"gasgroep\": \"gasgroep\",\n  \"gashydraten\": \"gashydrat\",\n  \"gasinstallatie\": \"gasinstallatie\",\n  \"gasketel\": \"gasketel\",\n  \"gaskeur\": \"gaskeur\",\n  \"gaskeurlabel\": \"gaskeurlabel\",\n  \"gaskeurmerk\": \"gaskeurmerk\",\n  \"gaskronen\": \"gaskron\",\n  \"gaskroon\": \"gaskron\",\n  \"gasleiding\": \"gasleid\",\n  \"gasleidingen\": \"gasleid\",\n  \"gaslekken\": \"gaslek\",\n  \"gaslevering\": \"gaslever\",\n  \"gaslicht\": \"gaslicht\",\n  \"gasmaatschappijen\": \"gasmaatschappij\",\n  \"gasmarkt\": \"gasmarkt\",\n  \"gasmengsel\": \"gasmengsel\",\n  \"gasmeter\": \"gasmeter\",\n  \"gasmotor\": \"gasmotor\",\n  \"gasmotoren\": \"gasmotor\",\n  \"gasmotorinstallaties\": \"gasmotorinstallaties\",\n  \"gasnet\": \"gasnet\",\n  \"gasolie\": \"gasolie\",\n  \"gasoline\": \"gasolin\",\n  \"gasontladingslampen\": \"gasontladingslamp\",\n  \"gasontvangststantions\": \"gasontvangststantion\",\n  \"gasopbrengst\": \"gasopbrengst\",\n  \"gasopslag\": \"gasopslag\",\n  \"gaspijpen\": \"gaspijp\",\n  \"gasplatform\": \"gasplatform\",\n  \"gasplatforms\": \"gasplatform\",\n  \"gasprijs\": \"gasprijs\",\n  \"gasprijzen\": \"gasprijz\",\n  \"gasproducent\": \"gasproducent\",\n  \"gasproducenten\": \"gasproducent\",\n  \"gasproduktie\": \"gasproduktie\",\n  \"gasproject\": \"gasproject\",\n  \"gasputten\": \"gasput\",\n  \"gasreduceerstations\": \"gasreduceerstation\",\n  \"gasreinigingssectie\": \"gasreinigingssectie\",\n  \"gasreinigingssysteem\": \"gasreinigingssystem\",\n  \"gasreserves\": \"gasreserves\",\n  \"gassector\": \"gassector\",\n  \"gassen\": \"gass\",\n  \"gasstroom\": \"gasstrom\",\n  \"gast\": \"gast\",\n  \"gastank\": \"gastank\",\n  \"gastankunit\": \"gastankunit\",\n  \"gastec\": \"gastec\",\n  \"gastechnologie\": \"gastechnologie\",\n  \"gastekorten\": \"gastekort\",\n  \"gasten\": \"gast\",\n  \"gastheer\": \"gasther\",\n  \"gasthuis\": \"gasthuis\",\n  \"gastkemer\": \"gastkemer\",\n  \"gastoepassingen\": \"gastoepass\",\n  \"gastoestel\": \"gastoestel\",\n  \"gastoestellen\": \"gastoestell\",\n  \"gasturbine\": \"gasturbin\",\n  \"gasturbines\": \"gasturbines\",\n  \"gastvrij\": \"gastvrij\",\n  \"gastvrijheid\": \"gastvrij\",\n  \"gastvrouw\": \"gastvrouw\",\n  \"gasuitstoot\": \"gasuitstot\",\n  \"gasunie\": \"gasunie\",\n  \"gasveld\": \"gasveld\",\n  \"gasvelden\": \"gasveld\",\n  \"gasverbruik\": \"gasverbruik\",\n  \"gasverwarmingsaparatuur\": \"gasverwarmingsaparatur\",\n  \"gasverwarmingsapparatuur\": \"gasverwarmingsapparatur\",\n  \"gasverwarmingsfirma\": \"gasverwarmingsfirma\",\n  \"gasvlam\": \"gasvlam\",\n  \"gasvondsten\": \"gasvondst\",\n  \"gasvoorraad\": \"gasvoorrad\",\n  \"gasvoorziening\": \"gasvoorzien\",\n  \"gasvormige\": \"gasvorm\",\n  \"gasvraag\": \"gasvrag\",\n  \"gaswassing\": \"gaswass\",\n  \"gaswinning\": \"gaswinn\",\n  \"gaswinningsactiviteiten\": \"gaswinningsactiviteit\",\n  \"gaswinningsector\": \"gaswinningsector\",\n  \"gaswinningsvergunningen\": \"gaswinningsvergunn\",\n  \"gaswolk\": \"gaswolk\",\n  \"gaszuivering\": \"gaszuiver\",\n  \"gat\": \"gat\",\n  \"gate\": \"gat\",\n  \"gaten\": \"gat\",\n  \"gatt\": \"gatt\",\n  \"gatwick\": \"gatwick\",\n  \"gauging\": \"gauging\",\n  \"gault\": \"gault\",\n  \"gauw\": \"gauw\",\n  \"gauwer\": \"gauwer\",\n  \"gave\": \"gav\",\n  \"gaven\": \"gav\",\n  \"gavi\": \"gavi\",\n  \"gaza\": \"gaza\",\n  \"gazons\": \"gazon\",\n  \"gb\": \"gb\",\n  \"gbh\": \"gbh\",\n  \"gbs\": \"gbs\",\n  \"gc\": \"gc\",\n  \"gcb\": \"gcb\",\n  \"gcc\": \"gcc\",\n  \"gcn\": \"gcn\",\n  \"gco\": \"gco\",\n  \"gd\": \"gd\",\n  \"gdl\": \"gdl\",\n  \"ge\": \"ge\",\n  \"gea\": \"gea\",\n  \"geaarzeld\": \"geaarzeld\",\n  \"geaccapareerd\": \"geaccapareerd\",\n  \"geaccentueerde\": \"geaccentueerd\",\n  \"geaccepteerd\": \"geaccepteerd\",\n  \"geaccepteerde\": \"geaccepteerd\",\n  \"geaccrediteerd\": \"geaccrediteerd\",\n  \"geaccumuleerde\": \"geaccumuleerd\",\n  \"geacht\": \"geacht\",\n  \"geachte\": \"geacht\",\n  \"geactiveerd\": \"geactiveerd\",\n  \"geactiveerde\": \"geactiveerd\",\n  \"geactualiseerd\": \"geactualiseerd\",\n  \"geademd\": \"geademd\",\n  \"geaderde\": \"geaderd\",\n  \"geadopteerd\": \"geadopteerd\",\n  \"geadresseerd\": \"geadresseerd\",\n  \"geadviseerd\": \"geadviseerd\",\n  \"geaffecteerd\": \"geaffecteerd\",\n  \"geaffecteerde\": \"geaffecteerd\",\n  \"geafficheerd\": \"geafficheerd\",\n  \"geaggregeerd\": \"geaggregeerd\",\n  \"geagiteerd\": \"geagiteerd\",\n  \"geallieerden\": \"geallieerd\",\n  \"geamuseerd\": \"geamuseerd\",\n  \"geanalyseerd\": \"geanalyseerd\",\n  \"geannuleerd\": \"geannuleerd\",\n  \"geanticipeerd\": \"geanticipeerd\",\n  \"geantwoord\": \"geantwoord\",\n  \"geapprecieerd\": \"geapprecieerd\",\n  \"gearbeid\": \"gearbeid\",\n  \"gearrangeerd\": \"gearrangeerd\",\n  \"gearresteerd\": \"gearresteerd\",\n  \"gearresteerde\": \"gearresteerd\",\n  \"geasfalteerd\": \"geasfalteerd\",\n  \"geassisteerd\": \"geassisteerd\",\n  \"geassocieerd\": \"geassocieerd\",\n  \"geassocieerde\": \"geassocieerd\",\n  \"geattendeerd\": \"geattendeerd\",\n  \"geautomatiseerd\": \"geautomatiseerd\",\n  \"geautomatiseerde\": \"geautomatiseerd\",\n  \"geavanceerd\": \"geavanceerd\",\n  \"geavanceerde\": \"geavanceerd\",\n  \"gebaar\": \"gebar\",\n  \"gebaard\": \"gebaard\",\n  \"gebaarde\": \"gebaard\",\n  \"gebaarden\": \"gebaard\",\n  \"gebaartje\": \"gebaartj\",\n  \"gebaat\": \"gebat\",\n  \"gebagatelliseerd\": \"gebagatelliseerd\",\n  \"gebaggerd\": \"gebaggerd\",\n  \"gebaren\": \"gebar\",\n  \"gebarrikadeerd\": \"gebarrikadeerd\",\n  \"gebaseerd\": \"gebaseerd\",\n  \"gebaseerde\": \"gebaseerd\",\n  \"gebed\": \"gebed\",\n  \"gebeden\": \"gebed\",\n  \"gebedoproepen\": \"gebedoproep\",\n  \"gebeeste\": \"gebeest\",\n  \"gebel\": \"gebel\",\n  \"gebeld\": \"gebeld\",\n  \"gebergte\": \"gebergt\",\n  \"gebersten\": \"geberst\",\n  \"gebeurd\": \"gebeurd\",\n  \"gebeurde\": \"gebeurd\",\n  \"gebeurden\": \"gebeurd\",\n  \"gebeuren\": \"gebeur\",\n  \"gebeurlijkheid\": \"gebeur\",\n  \"gebeurt\": \"gebeurt\",\n  \"gebeurtenis\": \"gebeurtenis\",\n  \"gebeurtenissen\": \"gebeurteniss\",\n  \"gebied\": \"gebied\",\n  \"gebieden\": \"gebied\",\n  \"gebiedende\": \"gebied\",\n  \"gebiedsbeperkingen\": \"gebiedsbeperk\",\n  \"gebiedseigen\": \"gebiedseig\",\n  \"gebiedsgericht\": \"gebiedsgericht\",\n  \"gebiedsgerichte\": \"gebiedsgericht\",\n  \"gebiedsspecifieke\": \"gebiedsspecifiek\",\n  \"geblaas\": \"geblas\",\n  \"gebladerte\": \"gebladert\",\n  \"geblageerd\": \"geblageerd\",\n  \"geblagueerd\": \"geblagueerd\",\n  \"geblankt\": \"geblankt\",\n  \"geblazeerde\": \"geblazeerd\",\n  \"geblazen\": \"geblaz\",\n  \"gebleekt\": \"gebleekt\",\n  \"gebleekte\": \"gebleekt\",\n  \"gebleken\": \"geblek\",\n  \"gebleven\": \"geblev\",\n  \"gebliksemd\": \"gebliksemd\",\n  \"geblikt\": \"geblikt\",\n  \"gebloeid\": \"gebloeid\",\n  \"geblokkeerd\": \"geblokkeerd\",\n  \"gebloosd\": \"gebloosd\",\n  \"geboden\": \"gebod\",\n  \"gebodene\": \"gebod\",\n  \"geboekt\": \"geboekt\",\n  \"geboekte\": \"geboekt\",\n  \"geboezemde\": \"geboezemd\",\n  \"gebogen\": \"gebog\",\n  \"gebonden\": \"gebond\",\n  \"gebood\": \"gebod\",\n  \"geboomte\": \"geboomt\",\n  \"geboord\": \"geboord\",\n  \"geboorde\": \"geboord\",\n  \"geboorte\": \"geboort\",\n  \"geboorteafwijkingen\": \"geboorteafwijk\",\n  \"geboren\": \"gebor\",\n  \"geborgen\": \"geborg\",\n  \"gebotteld\": \"gebotteld\",\n  \"gebouw\": \"gebouw\",\n  \"gebouwbeheerders\": \"gebouwbeheerder\",\n  \"gebouwd\": \"gebouwd\",\n  \"gebouwde\": \"gebouwd\",\n  \"gebouweigenschappen\": \"gebouweigenschapp\",\n  \"gebouwen\": \"gebouw\",\n  \"gebouweninstallaties\": \"gebouweninstallaties\",\n  \"gebouwfunctie\": \"gebouwfunctie\",\n  \"gebouwniveau\": \"gebouwniveau\",\n  \"gebouwonderzoek\": \"gebouwonderzoek\",\n  \"geboycot\": \"geboycot\",\n  \"gebr\": \"gebr\",\n  \"gebracht\": \"gebracht\",\n  \"gebrachte\": \"gebracht\",\n  \"gebrande\": \"gebrand\",\n  \"gebrandmerkt\": \"gebrandmerkt\",\n  \"gebrek\": \"gebrek\",\n  \"gebreke\": \"gebrek\",\n  \"gebreken\": \"gebrek\",\n  \"gebrekkig\": \"gebrekk\",\n  \"gebrekkige\": \"gebrekk\",\n  \"gebroed\": \"gebroed\",\n  \"gebroeders\": \"gebroeder\",\n  \"gebroedsel\": \"gebroedsel\",\n  \"gebroken\": \"gebrok\",\n  \"gebrokens\": \"gebroken\",\n  \"gebromd\": \"gebromd\",\n  \"gebrouilleerd\": \"gebrouilleerd\",\n  \"gebruik\": \"gebruik\",\n  \"gebruikelijk\": \"gebruik\",\n  \"gebruikelijke\": \"gebruik\",\n  \"gebruiken\": \"gebruik\",\n  \"gebruiker\": \"gebruiker\",\n  \"gebruikers\": \"gebruiker\",\n  \"gebruikersgedrag\": \"gebruikersgedrag\",\n  \"gebruikersgroepen\": \"gebruikersgroep\",\n  \"gebruikersmarkt\": \"gebruikersmarkt\",\n  \"gebruikersvriendelijk\": \"gebruikersvriend\",\n  \"gebruikersvriendelijke\": \"gebruikersvriend\",\n  \"gebruikmaking\": \"gebruikmak\",\n  \"gebruiks\": \"gebruik\",\n  \"gebruiksaanwijzing\": \"gebruiksaanwijz\",\n  \"gebruiksbepalingen\": \"gebruiksbepal\",\n  \"gebruiksduur\": \"gebruiksdur\",\n  \"gebruiksfase\": \"gebruiksfas\",\n  \"gebruiksgedrag\": \"gebruiksgedrag\",\n  \"gebruikskosten\": \"gebruikskost\",\n  \"gebruiksmogelijkheden\": \"gebruiksmog\",\n  \"gebruikspatroon\": \"gebruikspatron\",\n  \"gebruiksspecificaties\": \"gebruiksspecificaties\",\n  \"gebruiksverbod\": \"gebruiksverbod\",\n  \"gebruiksvolume\": \"gebruiksvolum\",\n  \"gebruiksvoorschriften\": \"gebruiksvoorschrift\",\n  \"gebruiksvoorwerpen\": \"gebruiksvoorwerp\",\n  \"gebruiksvriendelijk\": \"gebruiksvriend\",\n  \"gebruikswaarde\": \"gebruikswaard\",\n  \"gebruikt\": \"gebruikt\",\n  \"gebruikte\": \"gebruikt\",\n  \"gebruikten\": \"gebruikt\",\n  \"gebruinde\": \"gebruind\",\n  \"gebudgetteerde\": \"gebudgetteerd\",\n  \"gebukt\": \"gebukt\",\n  \"gebulder\": \"gebulder\",\n  \"gebundeld\": \"gebundeld\",\n  \"gebundelde\": \"gebundeld\",\n  \"geburgemeesterd\": \"geburgemeesterd\",\n  \"gec\": \"gec\",\n  \"gecertificeerd\": \"gecertificeerd\",\n  \"gecertificeerde\": \"gecertificeerd\",\n  \"gecharmeerd\": \"gecharmeerd\",\n  \"gechloreerd\": \"gechloreerd\",\n  \"gechloreerde\": \"gechloreerd\",\n  \"geciteerd\": \"geciteerd\",\n  \"geclassificeerd\": \"geclassificeerd\",\n  \"geclusterd\": \"geclusterd\",\n  \"gecombineerd\": \"gecombineerd\",\n  \"gecombineerde\": \"gecombineerd\",\n  \"gecompenseerd\": \"gecompenseerd\",\n  \"gecompleteerd\": \"gecompleteerd\",\n  \"gecompliceerd\": \"gecompliceerd\",\n  \"gecompliceerde\": \"gecompliceerd\",\n  \"gecompliceerder\": \"gecompliceerder\",\n  \"gecomposteerd\": \"gecomposteerd\",\n  \"gecomposteerde\": \"gecomposteerd\",\n  \"gecompromitteerd\": \"gecompromitteerd\",\n  \"gecomputeriseerde\": \"gecomputeriseerd\",\n  \"geconcentreerd\": \"geconcentreerd\",\n  \"geconcentreerde\": \"geconcentreerd\",\n  \"geconcludeerd\": \"geconcludeerd\",\n  \"gecondenseerd\": \"gecondenseerd\",\n  \"geconfronteerd\": \"geconfronteerd\",\n  \"geconstateerd\": \"geconstateerd\",\n  \"geconstateerde\": \"geconstateerd\",\n  \"geconstrueerd\": \"geconstrueerd\",\n  \"geconstrueerde\": \"geconstrueerd\",\n  \"geconsulteerd\": \"geconsulteerd\",\n  \"gecontinueerd\": \"gecontinueerd\",\n  \"gecontracteerd\": \"gecontracteerd\",\n  \"gecontroleerd\": \"gecontroleerd\",\n  \"gecontroleerde\": \"gecontroleerd\",\n  \"geconverteerd\": \"geconverteerd\",\n  \"gecoördineerd\": \"gecoordineerd\",\n  \"gecorreleerd\": \"gecorreleerd\",\n  \"gecreëerd\": \"gecreeerd\",\n  \"gecreosoteerd\": \"gecreosoteerd\",\n  \"gecreotoseerd\": \"gecreotoseerd\",\n  \"gedaagd\": \"gedaagd\",\n  \"gedaald\": \"gedaald\",\n  \"gedaan\": \"gedan\",\n  \"gedacht\": \"gedacht\",\n  \"gedaçht\": \"gedaçht\",\n  \"gedachte\": \"gedacht\",\n  \"gedachteloos\": \"gedachtelos\",\n  \"gedachteloosheid\": \"gedachtelos\",\n  \"gedachten\": \"gedacht\",\n  \"gedachtenwisseling\": \"gedachtenwissel\",\n  \"gedachtetjes\": \"gedachtetjes\",\n  \"gedachtig\": \"gedacht\",\n  \"gedagvaard\": \"gedagvaard\",\n  \"gedane\": \"gedan\",\n  \"gedanst\": \"gedanst\",\n  \"gedateerd\": \"gedateerd\",\n  \"gedébaucheerd\": \"gedebaucheerd\",\n  \"gedecentraliseerde\": \"gedecentraliseerd\",\n  \"gedecideerd\": \"gedecideerd\",\n  \"gedecideerde\": \"gedecideerd\",\n  \"gedecolleteerd\": \"gedecolleteerd\",\n  \"gedecoreerde\": \"gedecoreerd\",\n  \"gedeeld\": \"gedeeld\",\n  \"gedeelde\": \"gedeeld\",\n  \"gedeelte\": \"gedeelt\",\n  \"gedeeltelijk\": \"gedeelt\",\n  \"gedeeltelijke\": \"gedeelt\",\n  \"gedeelten\": \"gedeelt\",\n  \"gedefinieerd\": \"gedefinieerd\",\n  \"gedegen\": \"gedeg\",\n  \"gedehydrateerd\": \"gedehydrateerd\",\n  \"gedeinsd\": \"gedeinsd\",\n  \"gedekt\": \"gedekt\",\n  \"gedekte\": \"gedekt\",\n  \"gedemonstreerd\": \"gedemonstreerd\",\n  \"gedemonteerd\": \"gedemonteerd\",\n  \"gedemonteerde\": \"gedemonteerd\",\n  \"gedempt\": \"gedempt\",\n  \"gedempte\": \"gedempt\",\n  \"gedeponeerd\": \"gedeponeerd\",\n  \"gedeputeerde\": \"gedeputeerd\",\n  \"gedestilleerd\": \"gedestilleerd\",\n  \"gedetacheerd\": \"gedetacheerd\",\n  \"gedetailleerde\": \"gedetailleerd\",\n  \"gedetailleerder\": \"gedetailleerder\",\n  \"gedezoneerd\": \"gedezoneerd\",\n  \"gedicht\": \"gedicht\",\n  \"gedicteerd\": \"gedicteerd\",\n  \"gediend\": \"gediend\",\n  \"gediende\": \"gediend\",\n  \"gedierte\": \"gediert\",\n  \"gediffameerd\": \"gediffameerd\",\n  \"gedifferentieerde\": \"gedifferentieerd\",\n  \"gedijen\": \"gedij\",\n  \"gedijt\": \"gedijt\",\n  \"gedimensioneerde\": \"gedimensioneerd\",\n  \"gedineerd\": \"gedineerd\",\n  \"geding\": \"geding\",\n  \"gedirigeerd\": \"gedirigeerd\",\n  \"gediscrimineerd\": \"gediscrimineerd\",\n  \"gediscusieerd\": \"gediscusieerd\",\n  \"gediscussieerd\": \"gediscussieerd\",\n  \"gedistingeerd\": \"gedistingeerd\",\n  \"gedistingeerde\": \"gedistingeerd\",\n  \"gedistingeerds\": \"gedistingeerd\",\n  \"gedoe\": \"gedoe\",\n  \"gedoemd\": \"gedoemd\",\n  \"gedoezeld\": \"gedoezeld\",\n  \"gedoezelds\": \"gedoezeld\",\n  \"gedogen\": \"gedog\",\n  \"gedoken\": \"gedok\",\n  \"gedomineerd\": \"gedomineerd\",\n  \"gedonder\": \"gedonder\",\n  \"gedonkerde\": \"gedonkerd\",\n  \"gedood\": \"gedod\",\n  \"gedoofd\": \"gedoofd\",\n  \"gedoogbeschikking\": \"gedoogbeschik\",\n  \"gedoogd\": \"gedoogd\",\n  \"gedoogt\": \"gedoogt\",\n  \"gedoogverklaring\": \"gedoogverklar\",\n  \"gedoopt\": \"gedoopt\",\n  \"gedoseerd\": \"gedoseerd\",\n  \"gedoseerde\": \"gedoseerd\",\n  \"gedraaf\": \"gedraf\",\n  \"gedraagt\": \"gedraagt\",\n  \"gedraaid\": \"gedraaid\",\n  \"gedrag\": \"gedrag\",\n  \"gedragen\": \"gedrag\",\n  \"gedragscode\": \"gedragscod\",\n  \"gedragslijn\": \"gedragslijn\",\n  \"gedragsmaatregelen\": \"gedragsmaatregel\",\n  \"gedragsnorm\": \"gedragsnorm\",\n  \"gedragspatronen\": \"gedragspatron\",\n  \"gedragsverandering\": \"gedragsverander\",\n  \"gedragswetenschappen\": \"gedragswetenschapp\",\n  \"gedraineerd\": \"gedraineerd\",\n  \"gedrakenschubde\": \"gedrakenschubd\",\n  \"gedrang\": \"gedrang\",\n  \"gedregd\": \"gedregd\",\n  \"gedreigd\": \"gedreigd\",\n  \"gedrenkt\": \"gedrenkt\",\n  \"gedreun\": \"gedreun\",\n  \"gedreven\": \"gedrev\",\n  \"gedrevenheid\": \"gedrev\",\n  \"gedrongen\": \"gedrong\",\n  \"gedronken\": \"gedronk\",\n  \"gedroogd\": \"gedroogd\",\n  \"gedroogde\": \"gedroogd\",\n  \"gedroom\": \"gedrom\",\n  \"gedroomd\": \"gedroomd\",\n  \"gedrukt\": \"gedrukt\",\n  \"gedrukte\": \"gedrukt\",\n  \"geduchte\": \"geducht\",\n  \"geduelleerd\": \"geduelleerd\",\n  \"geduizeld\": \"geduizeld\",\n  \"geduld\": \"geduld\",\n  \"geduldig\": \"geduld\",\n  \"geduldige\": \"geduld\",\n  \"gedumpt\": \"gedumpt\",\n  \"gedumpte\": \"gedumpt\",\n  \"gedupeerd\": \"gedupeerd\",\n  \"gedupeerde\": \"gedupeerd\",\n  \"gedupeerden\": \"gedupeerd\",\n  \"gedurende\": \"gedur\",\n  \"gedurfd\": \"gedurfd\",\n  \"geduurd\": \"geduurd\",\n  \"geduwd\": \"geduwd\",\n  \"gedwaald\": \"gedwaald\",\n  \"gedwarrel\": \"gedwarrel\",\n  \"gedweept\": \"gedweept\",\n  \"gedwongen\": \"gedwong\",\n  \"gee\": \"gee\",\n  \"geëerbiedigd\": \"geeerbiedigd\",\n  \"geëerbiedigde\": \"geeerbiedigd\",\n  \"geef\": \"gef\",\n  \"geëffend\": \"geeffend\",\n  \"geeft\": \"geeft\",\n  \"geëigend\": \"geeigend\",\n  \"geëigende\": \"geeigend\",\n  \"geeindigd\": \"geeindigd\",\n  \"geëindigd\": \"geeindigd\",\n  \"geëist\": \"geeist\",\n  \"geëiste\": \"geeist\",\n  \"geel\": \"gel\",\n  \"geelbruine\": \"geelbruin\",\n  \"geelden\": \"geeld\",\n  \"geelhoed\": \"geelhoed\",\n  \"geëmailleerde\": \"geemailleerd\",\n  \"geëmigreerd\": \"geemigreerd\",\n  \"geëmigreerde\": \"geemigreerd\",\n  \"geëmitteerd\": \"geemitteerd\",\n  \"geëmulgeerde\": \"geemulgeerd\",\n  \"geen\": \"gen\",\n  \"géen\": \"gen\",\n  \"géén\": \"gen\",\n  \"geënerveerd\": \"geenerveerd\",\n  \"geënerveerde\": \"geenerveerd\",\n  \"geëngageerd\": \"geengageerd\",\n  \"geënquêteerde\": \"geenquêteerd\",\n  \"geent\": \"geent\",\n  \"geënt\": \"geent\",\n  \"geënterd\": \"geenterd\",\n  \"geëquilibreerd\": \"geequilibreerd\",\n  \"geërgerd\": \"geergerd\",\n  \"geertje\": \"geertj\",\n  \"geertruidenberg\": \"geertruidenberg\",\n  \"geesink\": \"geesink\",\n  \"geest\": \"geest\",\n  \"geestelijk\": \"geestelijk\",\n  \"geestelijke\": \"geestelijk\",\n  \"geesteskrank\": \"geesteskrank\",\n  \"geestig\": \"geestig\",\n  \"geestige\": \"geestig\",\n  \"geestiger\": \"geestiger\",\n  \"geestkracht\": \"geestkracht\",\n  \"geëtiketteerd\": \"geetiketteerd\",\n  \"geëvacueerd\": \"geevacueerd\",\n  \"geëvacueerde\": \"geevacueerd\",\n  \"geëvalueerd\": \"geevalueerd\",\n  \"geëxecuteerd\": \"geexecuteerd\",\n  \"geëxecuteerde\": \"geexecuteerd\",\n  \"geëxpandeerd\": \"geexpandeerd\",\n  \"geëxperimenteerd\": \"geexperimenteerd\",\n  \"geëxploiteerd\": \"geexploiteerd\",\n  \"geëxploreerd\": \"geexploreerd\",\n  \"geëxporteerd\": \"geexporteerd\",\n  \"geëxporteerde\": \"geexporteerd\",\n  \"geëxtrudeerd\": \"geextrudeerd\",\n  \"gefabriceerd\": \"gefabriceerd\",\n  \"gefaseerd\": \"gefaseerd\",\n  \"gefaseerde\": \"gefaseerd\",\n  \"geffen\": \"geff\",\n  \"gefietst\": \"gefietst\",\n  \"gefilterd\": \"gefilterd\",\n  \"gefilterde\": \"gefilterd\",\n  \"gefinancierd\": \"gefinancierd\",\n  \"gefinancierde\": \"gefinancierd\",\n  \"gefixeerd\": \"gefixeerd\",\n  \"gefixeerde\": \"gefixeerd\",\n  \"geflirt\": \"geflirt\",\n  \"geflotteerde\": \"geflotteerd\",\n  \"gefluïdiseerd\": \"gefluidiseerd\",\n  \"gefluisterd\": \"gefluisterd\",\n  \"gefluisterde\": \"gefluisterd\",\n  \"gefluit\": \"gefluit\",\n  \"geforceerde\": \"geforceerd\",\n  \"geformuleerd\": \"geformuleerd\",\n  \"gefortuneerd\": \"gefortuneerd\",\n  \"gefragmenteerd\": \"gefragmenteerd\",\n  \"gefrankeerd\": \"gefrankeerd\",\n  \"gefriseerd\": \"gefriseerd\",\n  \"gefundeerd\": \"gefundeerd\",\n  \"gefundeerde\": \"gefundeerd\",\n  \"gegaan\": \"gegan\",\n  \"gegadigde\": \"gegadigd\",\n  \"gegalvaniseerd\": \"gegalvaniseerd\",\n  \"gegane\": \"gegan\",\n  \"gegarandeerd\": \"gegarandeerd\",\n  \"gegarandeerde\": \"gegarandeerd\",\n  \"gegedacht\": \"gegedacht\",\n  \"gegen\": \"geg\",\n  \"gegenereerd\": \"gegenereerd\",\n  \"gegeseld\": \"gegeseld\",\n  \"gegeten\": \"geget\",\n  \"gegeven\": \"gegev\",\n  \"gegevens\": \"gegeven\",\n  \"gegevensbank\": \"gegevensbank\",\n  \"gegevensverzameling\": \"gegevensverzamel\",\n  \"gegewiegd\": \"gegewiegd\",\n  \"gegijzeld\": \"gegijzeld\",\n  \"gegleden\": \"gegled\",\n  \"geglimlacht\": \"geglimlacht\",\n  \"geglimpt\": \"geglimpt\",\n  \"gegloeid\": \"gegloeid\",\n  \"gegoede\": \"gegoed\",\n  \"gegolfd\": \"gegolfd\",\n  \"gegòlfd\": \"gegòlfd\",\n  \"gegolfde\": \"gegolfd\",\n  \"gegooid\": \"gegooid\",\n  \"gegoten\": \"gegot\",\n  \"gegraven\": \"gegrav\",\n  \"gegrepen\": \"gegrep\",\n  \"gegrijsd\": \"gegrijsd\",\n  \"gegrinnik\": \"gegrinnik\",\n  \"gegroefd\": \"gegroefd\",\n  \"gegroeid\": \"gegroeid\",\n  \"gegroeit\": \"gegroeit\",\n  \"gegroepeerd\": \"gegroepeerd\",\n  \"gegroet\": \"gegroet\",\n  \"gehaakt\": \"gehaakt\",\n  \"gehaald\": \"gehaald\",\n  \"gehaast\": \"gehaast\",\n  \"gehaat\": \"gehat\",\n  \"gehad\": \"gehad\",\n  \"gehaktachtige\": \"gehaktacht\",\n  \"gehalogeneerde\": \"gehalogeneerd\",\n  \"gehalte\": \"gehalt\",\n  \"gehalten\": \"gehalt\",\n  \"gehaltes\": \"gehaltes\",\n  \"gehalveerd\": \"gehalveerd\",\n  \"gehamerd\": \"gehamerd\",\n  \"gehandeld\": \"gehandeld\",\n  \"gehandhaafd\": \"gehandhaafd\",\n  \"gehandwerkte\": \"gehandwerkt\",\n  \"gehangen\": \"gehang\",\n  \"gehanteerd\": \"gehanteerd\",\n  \"gehanteerde\": \"gehanteerd\",\n  \"gehard\": \"gehard\",\n  \"geharmonieerd\": \"geharmonieerd\",\n  \"geharmoniseerd\": \"geharmoniseerd\",\n  \"geharmoniseerde\": \"geharmoniseerd\",\n  \"gehe\": \"geh\",\n  \"gehecht\": \"gehecht\",\n  \"gehechtheid\": \"gehecht\",\n  \"geheel\": \"gehel\",\n  \"gehéel\": \"gehel\",\n  \"geheerst\": \"geheerst\",\n  \"geheim\": \"geheim\",\n  \"geheime\": \"geheim\",\n  \"geheimenis\": \"geheimenis\",\n  \"geheimgehouden\": \"geheimgehoud\",\n  \"geheimhouding\": \"geheimhoud\",\n  \"geheimste\": \"geheimst\",\n  \"geheimweg\": \"geheimweg\",\n  \"geheimzinnig\": \"geheimzinn\",\n  \"geheimzinnige\": \"geheimzinn\",\n  \"geheimzinniger\": \"geheimzinniger\",\n  \"geheimzinnigheden\": \"geheimzinn\",\n  \"geheimzinnigheid\": \"geheimzinn\",\n  \"gehele\": \"gehel\",\n  \"geherstructureerd\": \"geherstructureerd\",\n  \"geheten\": \"gehet\",\n  \"geheugen\": \"geheug\",\n  \"geheugenkaartsystemen\": \"geheugenkaartsystem\",\n  \"geheugens\": \"geheugen\",\n  \"geheugenverlies\": \"geheugenverlies\",\n  \"geheven\": \"gehev\",\n  \"gehinderd\": \"gehinderd\",\n  \"gehinderden\": \"gehinderd\",\n  \"geholpen\": \"geholp\",\n  \"gehomogeniseerd\": \"gehomogeniseerd\",\n  \"gehonoreerd\": \"gehonoreerd\",\n  \"gehoopt\": \"gehoopt\",\n  \"gehoor\": \"gehor\",\n  \"gehoord\": \"gehoord\",\n  \"gehoororganen\": \"gehoororgan\",\n  \"gehoorschade\": \"gehoorschad\",\n  \"gehoorvlies\": \"gehoorvlies\",\n  \"gehoorzaam\": \"gehoorzam\",\n  \"gehoorzame\": \"gehoorzam\",\n  \"gehoorzamen\": \"gehoorzam\",\n  \"gehouden\": \"gehoud\",\n  \"gehuichel\": \"gehuichel\",\n  \"gehuild\": \"gehuild\",\n  \"gehuisvest\": \"gehuisvest\",\n  \"gehurkt\": \"gehurkt\",\n  \"gehuurd\": \"gehuurd\",\n  \"gehydrolyseerd\": \"gehydrolyseerd\",\n  \"gehypnotiseerd\": \"gehypnotiseerd\",\n  \"geïdentificeerd\": \"geidentificeerd\",\n  \"geigy\": \"geigy\",\n  \"geijkte\": \"geijkt\",\n  \"geijld\": \"geijld\",\n  \"geijsel\": \"geijsel\",\n  \"geïllustreerd\": \"geillustreerd\",\n  \"geimplanteerd\": \"geimplanteerd\",\n  \"geïmplementeerd\": \"geimplementeerd\",\n  \"geïmporteerd\": \"geimporteerd\",\n  \"geïmporteerde\": \"geimporteerd\",\n  \"geïmpregneerd\": \"geimpregneerd\",\n  \"geïmpregneerde\": \"geimpregneerd\",\n  \"gein\": \"gein\",\n  \"geïncrusteerd\": \"geincrusteerd\",\n  \"geïnd\": \"geind\",\n  \"geïnde\": \"geind\",\n  \"geïndustrialiseerde\": \"geindustrialiseerd\",\n  \"geïnfiltreerd\": \"geinfiltreerd\",\n  \"geïnformeerd\": \"geinformeerd\",\n  \"geïnhaleerde\": \"geinhaleerd\",\n  \"geïnitieerde\": \"geinitieerd\",\n  \"geïnjecteerd\": \"geinjecteerd\",\n  \"geïnspecteerd\": \"geinspecteerd\",\n  \"geïnspireerd\": \"geinspireerd\",\n  \"geïnstalleerd\": \"geinstalleerd\",\n  \"geïnstalleerde\": \"geinstalleerd\",\n  \"geïntegreerd\": \"geintegreerd\",\n  \"geïntegreerde\": \"geintegreerd\",\n  \"geïntensiveerd\": \"geintensiveerd\",\n  \"geinteresseerd\": \"geinteresseerd\",\n  \"geïnteresseerd\": \"geinteresseerd\",\n  \"geïnteresseerden\": \"geinteresseerd\",\n  \"geïnternaliseerd\": \"geinternaliseerd\",\n  \"geïnterpreteerd\": \"geinterpreteerd\",\n  \"geïntrigeerd\": \"geintrigeerd\",\n  \"geïntroduceerd\": \"geintroduceerd\",\n  \"geïntroduceerde\": \"geintroduceerd\",\n  \"geïnventariseerd\": \"geinventariseerd\",\n  \"geïnvesteerd\": \"geinvesteerd\",\n  \"geinviteerd\": \"geinviteerd\",\n  \"geïnviteerd\": \"geinviteerd\",\n  \"geiser\": \"geiser\",\n  \"geisers\": \"geiser\",\n  \"geïsoleerd\": \"geisoleerd\",\n  \"geïsoleerde\": \"geisoleerd\",\n  \"geitenhouderij\": \"geitenhouderij\",\n  \"gejaagd\": \"gejaagd\",\n  \"gejokt\": \"gejokt\",\n  \"gek\": \"gek\",\n  \"gèk\": \"gèk\",\n  \"gekalmeerd\": \"gekalmeerd\",\n  \"gekamd\": \"gekamd\",\n  \"gekanaliseerd\": \"gekanaliseerd\",\n  \"gekapt\": \"gekapt\",\n  \"gekarakteriseerd\": \"gekarakteriseerd\",\n  \"gekeerd\": \"gekeerd\",\n  \"gekeken\": \"gekek\",\n  \"gekend\": \"gekend\",\n  \"gekenmerkt\": \"gekenmerkt\",\n  \"gekerm\": \"gekerm\",\n  \"gekermd\": \"gekermd\",\n  \"geketende\": \"geket\",\n  \"gekeurd\": \"gekeurd\",\n  \"gekheid\": \"gekheid\",\n  \"gekhoudend\": \"gekhoud\",\n  \"gekhouderij\": \"gekhouderij\",\n  \"gekibbeld\": \"gekibbeld\",\n  \"gekieteld\": \"gekieteld\",\n  \"gekissebis\": \"gekissebis\",\n  \"gekke\": \"gek\",\n  \"gekken\": \"gek\",\n  \"gekkenhuis\": \"gekkenhuis\",\n  \"gekker\": \"gekker\",\n  \"geklaagd\": \"geklaagd\",\n  \"geklede\": \"gekled\",\n  \"gekleed\": \"gekled\",\n  \"geklemd\": \"geklemd\",\n  \"geklês\": \"geklê\",\n  \"geklets\": \"geklet\",\n  \"gekleurd\": \"gekleurd\",\n  \"gekleurde\": \"gekleurd\",\n  \"geklikklak\": \"geklikklak\",\n  \"geklit\": \"geklit\",\n  \"geklonken\": \"geklonk\",\n  \"geklopt\": \"geklopt\",\n  \"gekluisterd\": \"gekluisterd\",\n  \"geknabbeld\": \"geknabbeld\",\n  \"geknakt\": \"geknakt\",\n  \"geknakte\": \"geknakt\",\n  \"geknede\": \"gekned\",\n  \"geknepen\": \"geknep\",\n  \"geknield\": \"geknield\",\n  \"geknikt\": \"geknikt\",\n  \"geknipt\": \"geknipt\",\n  \"geknipte\": \"geknipt\",\n  \"geknoeid\": \"geknoeid\",\n  \"geknoopt\": \"geknoopt\",\n  \"gekocht\": \"gekocht\",\n  \"gekoeld\": \"gekoeld\",\n  \"gekoelde\": \"gekoeld\",\n  \"gekoesterd\": \"gekoesterd\",\n  \"gekomen\": \"gekom\",\n  \"gekookt\": \"gekookt\",\n  \"gekoosd\": \"gekoosd\",\n  \"gekoppeld\": \"gekoppeld\",\n  \"gekoppelde\": \"gekoppeld\",\n  \"gekort\": \"gekort\",\n  \"gekost\": \"gekost\",\n  \"gekozen\": \"gekoz\",\n  \"gekraak\": \"gekrak\",\n  \"gekraakt\": \"gekraakt\",\n  \"gekrampt\": \"gekrampt\",\n  \"gekrampte\": \"gekrampt\",\n  \"gekregen\": \"gekreg\",\n  \"gekrenkt\": \"gekrenkt\",\n  \"gekrenkte\": \"gekrenkt\",\n  \"gekreukeld\": \"gekreukeld\",\n  \"gekristalliseerd\": \"gekristalliseerd\",\n  \"gekritizeerd\": \"gekritizeerd\",\n  \"gekromd\": \"gekromd\",\n  \"gekronkel\": \"gekronkel\",\n  \"gekropen\": \"gekrop\",\n  \"gekruist\": \"gekruist\",\n  \"gekste\": \"gekst\",\n  \"gekund\": \"gekund\",\n  \"gekust\": \"gekust\",\n  \"gekwalificeerd\": \"gekwalificeerd\",\n  \"gekwalificeerde\": \"gekwalificeerd\",\n  \"gekwantificeerd\": \"gekwantificeerd\",\n  \"gekwantificeerde\": \"gekwantificeerd\",\n  \"gekweekt\": \"gekweekt\",\n  \"gekweekte\": \"gekweekt\",\n  \"gekwetst\": \"gekwetst\",\n  \"gekwetste\": \"gekwetst\",\n  \"gel\": \"gel\",\n  \"gelaagd\": \"gelaagd\",\n  \"gelaat\": \"gelat\",\n  \"gelaatskleur\": \"gelaatskleur\",\n  \"gelaatstrekken\": \"gelaatstrek\",\n  \"gelach\": \"gelach\",\n  \"gelachen\": \"gelach\",\n  \"geladen\": \"gelad\",\n  \"gelakt\": \"gelakt\",\n  \"gelakte\": \"gelakt\",\n  \"gelanceerd\": \"gelanceerd\",\n  \"gelanceerde\": \"gelanceerd\",\n  \"gelandde\": \"geland\",\n  \"gelang\": \"gelang\",\n  \"gelast\": \"gelast\",\n  \"gelaste\": \"gelast\",\n  \"gelasten\": \"gelast\",\n  \"gelaster\": \"gelaster\",\n  \"gelaten\": \"gelat\",\n  \"gelatenheid\": \"gelat\",\n  \"gelatens\": \"gelaten\",\n  \"geld\": \"geld\",\n  \"gèld\": \"gèld\",\n  \"geldbedrag\": \"geldbedrag\",\n  \"geldbeslommering\": \"geldbeslommer\",\n  \"geldbesparing\": \"geldbespar\",\n  \"geldboete\": \"geldboet\",\n  \"geldboetes\": \"geldboetes\",\n  \"geldeconomie\": \"geldeconomie\",\n  \"geldelijk\": \"geldelijk\",\n  \"geldelijke\": \"geldelijk\",\n  \"gelden\": \"geld\",\n  \"geldend\": \"geldend\",\n  \"geldende\": \"geldend\",\n  \"gelder\": \"gelder\",\n  \"gelderland\": \"gelderland\",\n  \"geldermalsen\": \"geldermals\",\n  \"gelders\": \"gelder\",\n  \"geldersch\": \"geldersch\",\n  \"geldersche\": \"geldersch\",\n  \"gelderse\": \"gelder\",\n  \"geldgebrek\": \"geldgebrek\",\n  \"geldig\": \"geldig\",\n  \"geldigheidsduur\": \"geldigheidsdur\",\n  \"geldkwestie\": \"geldkwestie\",\n  \"geldprijzen\": \"geldprijz\",\n  \"geldschieter\": \"geldschieter\",\n  \"geldschieters\": \"geldschieter\",\n  \"geldstromen\": \"geldstrom\",\n  \"geldstroom\": \"geldstrom\",\n  \"geldstukslaande\": \"geldstukslaand\",\n  \"geldt\": \"geldt\",\n  \"geldvastlegging\": \"geldvastlegg\",\n  \"geldwaarde\": \"geldwaard\",\n  \"gele\": \"gel\",\n  \"geleden\": \"geled\",\n  \"geledene\": \"geled\",\n  \"geledigd\": \"geledigd\",\n  \"geleedpotigen\": \"geleedpot\",\n  \"geleefd\": \"geleefd\",\n  \"geléefd\": \"geleefd\",\n  \"geleéfd\": \"geleefd\",\n  \"geleegd\": \"geleegd\",\n  \"geleegde\": \"geleegd\",\n  \"geleek\": \"gelek\",\n  \"geleen\": \"gelen\",\n  \"geleend\": \"geleend\",\n  \"geleense\": \"gelen\",\n  \"geleerd\": \"geleerd\",\n  \"geleerde\": \"geleerd\",\n  \"gelegd\": \"gelegd\",\n  \"gelegen\": \"geleg\",\n  \"gelegenheden\": \"geleg\",\n  \"gelegenheid\": \"geleg\",\n  \"gelei\": \"gelei\",\n  \"geleid\": \"geleid\",\n  \"geleidde\": \"geleid\",\n  \"geleide\": \"geleid\",\n  \"geleidebon\": \"geleidebon\",\n  \"geleidelijk\": \"geleid\",\n  \"geleidelijke\": \"geleid\",\n  \"geleidelijkjes\": \"geleidelijkjes\",\n  \"geleidelijkweg\": \"geleidelijkweg\",\n  \"geleidend\": \"geleid\",\n  \"geleidende\": \"geleid\",\n  \"geleiding\": \"geleid\",\n  \"geleidingsmetingen\": \"geleidingsmet\",\n  \"geleidingsverwarming\": \"geleidingsverwarm\",\n  \"geleidt\": \"geleidt\",\n  \"geleken\": \"gelek\",\n  \"gelekt\": \"gelekt\",\n  \"gelet\": \"gelet\",\n  \"geletter\": \"geletter\",\n  \"geleverd\": \"geleverd\",\n  \"geleverde\": \"geleverd\",\n  \"gelezen\": \"gelez\",\n  \"geliberaliseerde\": \"geliberaliseerd\",\n  \"gelicht\": \"gelicht\",\n  \"gelieerd\": \"gelieerd\",\n  \"gelieerde\": \"gelieerd\",\n  \"geliefd\": \"geliefd\",\n  \"geliefde\": \"geliefd\",\n  \"gelieve\": \"geliev\",\n  \"gelig\": \"gelig\",\n  \"gelige\": \"gelig\",\n  \"gelijk\": \"gelijk\",\n  \"gelijkblijvende\": \"gelijkblijv\",\n  \"gelijke\": \"gelijk\",\n  \"gelijkelijk\": \"gelijk\",\n  \"gelijkende\": \"gelijk\",\n  \"gelijkenis\": \"gelijkenis\",\n  \"gelijkenissen\": \"gelijkeniss\",\n  \"gelijker\": \"gelijker\",\n  \"gelijkgetrokken\": \"gelijkgetrok\",\n  \"gelijkheid\": \"gelijk\",\n  \"gelijkmatig\": \"gelijkmat\",\n  \"gelijkmatige\": \"gelijkmat\",\n  \"gelijkmatiger\": \"gelijkmatiger\",\n  \"gelijkmatigheid\": \"gelijkmat\",\n  \"gelijknamige\": \"gelijknam\",\n  \"gelijksoortig\": \"gelijksoort\",\n  \"gelijksoortige\": \"gelijksoort\",\n  \"gelijkspanning\": \"gelijkspann\",\n  \"gelijkstroom\": \"gelijkstrom\",\n  \"gelijktijdig\": \"gelijktijd\",\n  \"gelijktijdige\": \"gelijktijd\",\n  \"gelijkwaardig\": \"gelijkwaard\",\n  \"gelijkwaardige\": \"gelijkwaard\",\n  \"gelijkwaardigheid\": \"gelijkwaard\",\n  \"gelijmd\": \"gelijmd\",\n  \"gelikt\": \"gelikt\",\n  \"gelimiteerd\": \"gelimiteerd\",\n  \"gelman\": \"gelman\",\n  \"gelokaliseerd\": \"gelokaliseerd\",\n  \"geloken\": \"gelok\",\n  \"gelokt\": \"gelokt\",\n  \"gelonkt\": \"gelonkt\",\n  \"geloof\": \"gelof\",\n  \"geloofd\": \"geloofd\",\n  \"geloofde\": \"geloofd\",\n  \"geloofden\": \"geloofd\",\n  \"gelooft\": \"gelooft\",\n  \"geloofwaardig\": \"geloofwaard\",\n  \"geloofwaardige\": \"geloofwaard\",\n  \"geloofwaardigheid\": \"geloofwaard\",\n  \"geloosd\": \"geloosd\",\n  \"geloosde\": \"geloosd\",\n  \"gelopen\": \"gelop\",\n  \"gelost\": \"gelost\",\n  \"geloven\": \"gelov\",\n  \"gelovende\": \"gelov\",\n  \"geloverte\": \"gelovert\",\n  \"gelovig\": \"gelov\",\n  \"geluid\": \"geluid\",\n  \"geluidachtergrondniveau\": \"geluidachtergrondniveau\",\n  \"geluidarme\": \"geluidarm\",\n  \"geluidbelaste\": \"geluidbelast\",\n  \"geluidbelasting\": \"geluidbelast\",\n  \"geluidblootstelling\": \"geluidblootstell\",\n  \"geluidbron\": \"geluidbron\",\n  \"geluiddemping\": \"geluiddemp\",\n  \"geluiddeskundige\": \"geluiddeskund\",\n  \"geluideloze\": \"geluideloz\",\n  \"geluiden\": \"geluid\",\n  \"geluidgevoelige\": \"geluidgevoel\",\n  \"geluidhinder\": \"geluidhinder\",\n  \"geluidhinderprobleem\": \"geluidhinderproblem\",\n  \"geluidisolatie\": \"geluidisolatie\",\n  \"geluidisolatieproject\": \"geluidisolatieproject\",\n  \"geluidisolerende\": \"geluidisoler\",\n  \"geluidjes\": \"geluidjes\",\n  \"geluidloos\": \"geluidlos\",\n  \"geluidloze\": \"geluidloz\",\n  \"geluidluw\": \"geluidluw\",\n  \"geluidmeetpunten\": \"geluidmeetpunt\",\n  \"geluidmeters\": \"geluidmeter\",\n  \"geluidmetingen\": \"geluidmet\",\n  \"geluidniveau\": \"geluidniveau\",\n  \"geluidniveaukaart\": \"geluidniveaukaart\",\n  \"geluidniveaukaarten\": \"geluidniveaukaart\",\n  \"geluidnormen\": \"geluidnorm\",\n  \"geluidoverlast\": \"geluidoverlast\",\n  \"geluidproduktie\": \"geluidproduktie\",\n  \"geluidregels\": \"geluidregel\",\n  \"geluids\": \"geluid\",\n  \"geluidsapparatuur\": \"geluidsapparatur\",\n  \"geluidsarme\": \"geluidsarm\",\n  \"geluidsbelasting\": \"geluidsbelast\",\n  \"geluidsberekeningen\": \"geluidsbereken\",\n  \"geluidscassettes\": \"geluidscassettes\",\n  \"geluidscertificatie\": \"geluidscertificatie\",\n  \"geluidschermen\": \"geluidscherm\",\n  \"geluidschermwoning\": \"geluidschermwon\",\n  \"geluidscontouren\": \"geluidscontour\",\n  \"geluidsdeskundige\": \"geluidsdeskund\",\n  \"geluidseisen\": \"geluidseis\",\n  \"geluidsemissie\": \"geluidsemissie\",\n  \"geluidshinder\": \"geluidshinder\",\n  \"geluidsisolatie\": \"geluidsisolatie\",\n  \"geluidsisolerend\": \"geluidsisoler\",\n  \"geluidsituatie\": \"geluidsituatie\",\n  \"geluidslimiet\": \"geluidslimiet\",\n  \"geluidsmaatregel\": \"geluidsmaatregel\",\n  \"geluidsmetingen\": \"geluidsmet\",\n  \"geluidsniveau\": \"geluidsniveau\",\n  \"geluidsniveaukaart\": \"geluidsniveaukaart\",\n  \"geluidsniveaus\": \"geluidsniveaus\",\n  \"geluidsnorm\": \"geluidsnorm\",\n  \"geluidsnormen\": \"geluidsnorm\",\n  \"geluidsonderzoek\": \"geluidsonderzoek\",\n  \"geluidsoverlast\": \"geluidsoverlast\",\n  \"geluidsoverlastnormen\": \"geluidsoverlastnorm\",\n  \"geluidsprobleem\": \"geluidsproblem\",\n  \"geluidsproduktie\": \"geluidsproduktie\",\n  \"geluidsproeven\": \"geluidsproev\",\n  \"geluidsreductie\": \"geluidsreductie\",\n  \"geluidsscherm\": \"geluidsscherm\",\n  \"geluidsschermen\": \"geluidsscherm\",\n  \"geluidsvoorschriften\": \"geluidsvoorschrift\",\n  \"geluidsvoortplanting\": \"geluidsvoortplant\",\n  \"geluidswal\": \"geluidswal\",\n  \"geluidswallen\": \"geluidswall\",\n  \"geluidswering\": \"geluidswer\",\n  \"geluidszone\": \"geluidszon\",\n  \"geluidszones\": \"geluidszones\",\n  \"geluidvervuiling\": \"geluidvervuil\",\n  \"geluidvoorschriften\": \"geluidvoorschrift\",\n  \"geluidwalwoning\": \"geluidwalwon\",\n  \"geluidwerende\": \"geluidwer\",\n  \"geluidwering\": \"geluidwer\",\n  \"geluidzone\": \"geluidzon\",\n  \"geluisterd\": \"geluisterd\",\n  \"geluk\": \"geluk\",\n  \"gelukken\": \"geluk\",\n  \"gelukkig\": \"gelukk\",\n  \"gelukkige\": \"gelukk\",\n  \"gelukkiger\": \"gelukkiger\",\n  \"gelukkigst\": \"gelukkigst\",\n  \"gelukt\": \"gelukt\",\n  \"gelukte\": \"gelukt\",\n  \"geluncht\": \"geluncht\",\n  \"gem\": \"gem\",\n  \"gemaakt\": \"gemaakt\",\n  \"gemaakte\": \"gemaakt\",\n  \"gemaal\": \"gemal\",\n  \"gemaas\": \"gemas\",\n  \"gemachtigd\": \"gemachtigd\",\n  \"gemak\": \"gemak\",\n  \"gemakkelijk\": \"gemak\",\n  \"gemakkelijke\": \"gemak\",\n  \"gemakkelijker\": \"gemakkelijker\",\n  \"gemakkelijkheid\": \"gemak\",\n  \"gemakzucht\": \"gemakzucht\",\n  \"gemalen\": \"gemal\",\n  \"gemanipuleerd\": \"gemanipuleerd\",\n  \"gemanipuleerde\": \"gemanipuleerd\",\n  \"gemarkeerd\": \"gemarkeerd\",\n  \"gemarteld\": \"gemarteld\",\n  \"gemartelde\": \"gemarteld\",\n  \"gemartyrizeerd\": \"gemartyrizeerd\",\n  \"gemartyrizeerde\": \"gemartyrizeerd\",\n  \"gematigd\": \"gematigd\",\n  \"gematigde\": \"gematigd\",\n  \"gematigder\": \"gematigder\",\n  \"gematigdheid\": \"gematigd\",\n  \"gemco\": \"gemco\",\n  \"gemechaniseerde\": \"gemechaniseerd\",\n  \"gemeden\": \"gemed\",\n  \"gemeen\": \"gemen\",\n  \"gemeend\": \"gemeend\",\n  \"gemeengoed\": \"gemeengoed\",\n  \"gemeenschap\": \"gemeenschap\",\n  \"gemeenschappelijk\": \"gemeenschapp\",\n  \"gemeenschappelijke\": \"gemeenschapp\",\n  \"gemeenschappen\": \"gemeenschapp\",\n  \"gemeenschapsgevoel\": \"gemeenschapsgevoel\",\n  \"gemeenschapsprojecten\": \"gemeenschapsproject\",\n  \"gemeenste\": \"gemeenst\",\n  \"gemeente\": \"gemeent\",\n  \"gemeenteambtenaren\": \"gemeenteambtenar\",\n  \"gemeentebedrijven\": \"gemeentebedrijv\",\n  \"gemeentebesturen\": \"gemeentebestur\",\n  \"gemeentebestuur\": \"gemeentebestur\",\n  \"gemeentebestuurder\": \"gemeentebestuurder\",\n  \"gemeentediensten\": \"gemeentedienst\",\n  \"gemeentefonds\": \"gemeentefond\",\n  \"gemeentegrenzen\": \"gemeentegrenz\",\n  \"gemeentehuis\": \"gemeentehuis\",\n  \"gemeentehuizen\": \"gemeentehuiz\",\n  \"gemeentelijk\": \"gemeent\",\n  \"gemeentelijke\": \"gemeent\",\n  \"gemeenten\": \"gemeent\",\n  \"gemeenteplannen\": \"gemeenteplann\",\n  \"gemeenteplantsoen\": \"gemeenteplantsoen\",\n  \"gemeenteraad\": \"gemeenterad\",\n  \"gemeenteraadsleden\": \"gemeenteraadsled\",\n  \"gemeenteraden\": \"gemeenterad\",\n  \"gemeentereiniging\": \"gemeenterein\",\n  \"gemeentes\": \"gemeentes\",\n  \"gemeentestem\": \"gemeentestem\",\n  \"gemeentewaterleidingen\": \"gemeentewaterleid\",\n  \"gemeentewerken\": \"gemeentewerk\",\n  \"gemeentewet\": \"gemeentewet\",\n  \"gemeinschaft\": \"gemeinschaft\",\n  \"gemeld\": \"gemeld\",\n  \"gemene\": \"gemen\",\n  \"gemenebest\": \"gemenebest\",\n  \"gemener\": \"gemener\",\n  \"gemengd\": \"gemengd\",\n  \"gemengde\": \"gemengd\",\n  \"gemengeld\": \"gemengeld\",\n  \"gement\": \"gement\",\n  \"gemerkt\": \"gemerkt\",\n  \"gemerkte\": \"gemerkt\",\n  \"gemert\": \"gemert\",\n  \"gemest\": \"gemest\",\n  \"gemeten\": \"gemet\",\n  \"gemetselde\": \"gemetseld\",\n  \"gemeubileerd\": \"gemeubileerd\",\n  \"gemeubileerde\": \"gemeubileerd\",\n  \"gemicroniseerde\": \"gemicroniseerd\",\n  \"gemiddeld\": \"gemiddeld\",\n  \"gemiddelde\": \"gemiddeld\",\n  \"gemiddelden\": \"gemiddeld\",\n  \"gemijmerd\": \"gemijmerd\",\n  \"gemillimeterd\": \"gemillimeterd\",\n  \"geminimaliseerd\": \"geminimaliseerd\",\n  \"gemis\": \"gemis\",\n  \"gemist\": \"gemist\",\n  \"gemodelleerd\": \"gemodelleerd\",\n  \"gemoderniseerd\": \"gemoderniseerd\",\n  \"gemodificeerd\": \"gemodificeerd\",\n  \"gemodificeerde\": \"gemodificeerd\",\n  \"gemoed\": \"gemoed\",\n  \"gemoedsstemming\": \"gemoedsstemm\",\n  \"gemoeid\": \"gemoeid\",\n  \"gemonitored\": \"gemonitored\",\n  \"gemonteerd\": \"gemonteerd\",\n  \"gemopperd\": \"gemopperd\",\n  \"gemorst\": \"gemorst\",\n  \"gemorste\": \"gemorst\",\n  \"gemotiveerd\": \"gemotiveerd\",\n  \"gemotoriseerd\": \"gemotoriseerd\",\n  \"gemplementeerd\": \"gemplementeerd\",\n  \"gems\": \"gem\",\n  \"gemteresseerd\": \"gemteresseerd\",\n  \"gemuilde\": \"gemuild\",\n  \"gen\": \"gen\",\n  \"genaamd\": \"genaamd\",\n  \"genade\": \"genad\",\n  \"genadeloos\": \"genadelos\",\n  \"genaderd\": \"genaderd\",\n  \"genadig\": \"genad\",\n  \"genadiglijk\": \"genadig\",\n  \"genageld\": \"genageld\",\n  \"genas\": \"genas\",\n  \"genderen\": \"gender\",\n  \"gene\": \"gen\",\n  \"genees\": \"genes\",\n  \"geneesheer\": \"geneesher\",\n  \"geneeskunde\": \"geneeskund\",\n  \"geneeskundig\": \"geneeskund\",\n  \"geneesmiddel\": \"geneesmiddel\",\n  \"geneesmiddelen\": \"geneesmiddel\",\n  \"geneesmiddelenfabriek\": \"geneesmiddelenfabriek\",\n  \"geneest\": \"geneest\",\n  \"genegeerd\": \"genegeerd\",\n  \"genegenheid\": \"geneg\",\n  \"geneigd\": \"geneigd\",\n  \"genen\": \"gen\",\n  \"generaal\": \"general\",\n  \"generaals\": \"general\",\n  \"generaalskostuum\": \"generaalskostum\",\n  \"generaalstijd\": \"generaalstijd\",\n  \"general\": \"general\",\n  \"generale\": \"general\",\n  \"generalitat\": \"generalitat\",\n  \"generatie\": \"generatie\",\n  \"generaties\": \"generaties\",\n  \"generation\": \"generation\",\n  \"generator\": \"generator\",\n  \"generatoren\": \"generator\",\n  \"generatorenfabrikant\": \"generatorenfabrikant\",\n  \"generatorstroom\": \"generatorstrom\",\n  \"generen\": \"gener\",\n  \"genereren\": \"generer\",\n  \"genererend\": \"generer\",\n  \"geneseo\": \"geneseo\",\n  \"genesteld\": \"genesteld\",\n  \"genetic\": \"genetic\",\n  \"genetisch\": \"genetisch\",\n  \"genetische\": \"genetisch\",\n  \"geneurie\": \"geneurie\",\n  \"geneutraliseerd\": \"geneutraliseerd\",\n  \"genève\": \"genèv\",\n  \"genezen\": \"genez\",\n  \"genezing\": \"genez\",\n  \"genformeerd\": \"genformeerd\",\n  \"geniaal\": \"geniaal\",\n  \"genie\": \"genie\",\n  \"genieerd\": \"genieerd\",\n  \"geniepig\": \"geniep\",\n  \"geniet\": \"geniet\",\n  \"genieten\": \"geniet\",\n  \"genietend\": \"geniet\",\n  \"genietende\": \"geniet\",\n  \"genius\": \"genius\",\n  \"genk\": \"genk\",\n  \"genmiddeld\": \"genmiddeld\",\n  \"gennep\": \"gennep\",\n  \"genodigd\": \"genodigd\",\n  \"genodigden\": \"genodigd\",\n  \"genoeg\": \"genoeg\",\n  \"genoegen\": \"genoeg\",\n  \"genoemd\": \"genoemd\",\n  \"genoemde\": \"genoemd\",\n  \"genomen\": \"genom\",\n  \"genomineerd\": \"genomineerd\",\n  \"genomineerde\": \"genomineerd\",\n  \"genomineerden\": \"genomineerd\",\n  \"genoodzaakt\": \"genoodzaakt\",\n  \"genoot\": \"genot\",\n  \"genootschap\": \"genootschap\",\n  \"genormeerd\": \"genormeerd\",\n  \"genot\": \"genot\",\n  \"genoteerd\": \"genoteerd\",\n  \"genoteerde\": \"genoteerd\",\n  \"genoten\": \"genot\",\n  \"genotmiddelenbedrijven\": \"genotmiddelenbedrijv\",\n  \"genotmiddelenindustrie\": \"genotmiddelenindustrie\",\n  \"genotoxiciteit\": \"genotoxiciteit\",\n  \"genre\": \"genr\",\n  \"genres\": \"genres\",\n  \"gent\": \"gent\",\n  \"genten\": \"gent\",\n  \"gentleman\": \"gentleman\",\n  \"gentlemenrace\": \"gentlemenrac\",\n  \"gents\": \"gent\",\n  \"gentse\": \"gent\",\n  \"genua\": \"genua\",\n  \"genuanceerd\": \"genuanceerd\",\n  \"genummerde\": \"genummerd\",\n  \"genus\": \"genus\",\n  \"geo\": \"geo\",\n  \"geobsedeerd\": \"geobsedeerd\",\n  \"geocomposieten\": \"geocomposiet\",\n  \"geoefend\": \"geoefend\",\n  \"geoff\": \"geoff\",\n  \"geofferd\": \"geofferd\",\n  \"geoforschungszentrum\": \"geoforschungszentrum\",\n  \"geofysisch\": \"geofysisch\",\n  \"geofysische\": \"geofysisch\",\n  \"geografisch\": \"geografisch\",\n  \"geografische\": \"geografisch\",\n  \"geographical\": \"geographical\",\n  \"geohydrologie\": \"geohydrologie\",\n  \"geohydrologische\": \"geohydrologisch\",\n  \"geologenteam\": \"geologenteam\",\n  \"geologisch\": \"geologisch\",\n  \"geologische\": \"geologisch\",\n  \"geometrie\": \"geometrie\",\n  \"geonaut\": \"geonaut\",\n  \"geoogst\": \"geoogst\",\n  \"geoordeeld\": \"geoordeeld\",\n  \"geoormerkte\": \"geoormerkt\",\n  \"geopenbaard\": \"geopenbaard\",\n  \"geopend\": \"geopend\",\n  \"geopende\": \"geopend\",\n  \"geophysical\": \"geophysical\",\n  \"geopolis\": \"geopolis\",\n  \"geopperd\": \"geopperd\",\n  \"geoptimaliseerde\": \"geoptimaliseerd\",\n  \"georas\": \"georas\",\n  \"geordende\": \"geordend\",\n  \"georganiseerd\": \"georganiseerd\",\n  \"georganiseerde\": \"georganiseerd\",\n  \"george\": \"georg\",\n  \"georgswerder\": \"georgswerder\",\n  \"georiënteerd\": \"georienteerd\",\n  \"georiënteerde\": \"georienteerd\",\n  \"geostone\": \"geoston\",\n  \"geotechniek\": \"geotechniek\",\n  \"geotextiel\": \"geotextiel\",\n  \"geotextielen\": \"geotextiel\",\n  \"geothermie\": \"geothermie\",\n  \"geothermisch\": \"geothermisch\",\n  \"geothermische\": \"geothermisch\",\n  \"geoxideerd\": \"geoxideerd\",\n  \"geoxideerde\": \"geoxideerd\",\n  \"geoxydeerd\": \"geoxydeerd\",\n  \"geoxydeerde\": \"geoxydeerd\",\n  \"gepaard\": \"gepaard\",\n  \"gepaarde\": \"gepaard\",\n  \"gepakt\": \"gepakt\",\n  \"gepakte\": \"gepakt\",\n  \"geparenteerd\": \"geparenteerd\",\n  \"geparkeerd\": \"geparkeerd\",\n  \"gepast\": \"gepast\",\n  \"gepatenteerd\": \"gepatenteerd\",\n  \"gepatenteerde\": \"gepatenteerd\",\n  \"gepelletiseerd\": \"gepelletiseerd\",\n  \"gepensioneerde\": \"gepensioneerd\",\n  \"gepensionneerd\": \"gepensionneerd\",\n  \"gepeperde\": \"gepeperd\",\n  \"geperfectionneerd\": \"geperfectionneerd\",\n  \"geperforeerde\": \"geperforeerd\",\n  \"geperst\": \"geperst\",\n  \"gepijnigde\": \"gepijnigd\",\n  \"gepiqueerd\": \"gepiqueerd\",\n  \"gepiqueerde\": \"gepiqueerd\",\n  \"geplaagd\": \"geplaagd\",\n  \"geplaatst\": \"geplaatst\",\n  \"geplakt\": \"geplakt\",\n  \"geplakte\": \"geplakt\",\n  \"gepland\": \"gepland\",\n  \"geplande\": \"gepland\",\n  \"geplant\": \"geplant\",\n  \"geplante\": \"geplant\",\n  \"gepleegd\": \"gepleegd\",\n  \"gepleit\": \"gepleit\",\n  \"gepletterde\": \"gepletterd\",\n  \"geplooide\": \"geplooid\",\n  \"geplukt\": \"geplukt\",\n  \"geplukte\": \"geplukt\",\n  \"gepoeierd\": \"gepoeierd\",\n  \"gepoetst\": \"gepoetst\",\n  \"gepoetste\": \"gepoetst\",\n  \"gepompt\": \"gepompt\",\n  \"gepoogd\": \"gepoogd\",\n  \"gepoot\": \"gepot\",\n  \"geposeerd\": \"geposeerd\",\n  \"geposte\": \"gepost\",\n  \"gepousseerd\": \"gepousseerd\",\n  \"gepraat\": \"geprat\",\n  \"geprefabriceerde\": \"geprefabriceerd\",\n  \"gepresenteerd\": \"gepresenteerd\",\n  \"gepresenteerde\": \"gepresenteerd\",\n  \"geprezen\": \"geprez\",\n  \"geprijsd\": \"geprijsd\",\n  \"geprivatiseerd\": \"geprivatiseerd\",\n  \"geprivatiseerde\": \"geprivatiseerd\",\n  \"geprobeerd\": \"geprobeerd\",\n  \"geprocedeerd\": \"geprocedeerd\",\n  \"geproduceerd\": \"geproduceerd\",\n  \"geproduceerde\": \"geproduceerd\",\n  \"geproest\": \"geproest\",\n  \"geprofiteerd\": \"geprofiteerd\",\n  \"geprogrammeerd\": \"geprogrammeerd\",\n  \"geprojecteerd\": \"geprojecteerd\",\n  \"gepromoveerd\": \"gepromoveerd\",\n  \"geprononceerde\": \"geprononceerd\",\n  \"gepropageerd\": \"gepropageerd\",\n  \"gepropageerde\": \"gepropageerd\",\n  \"gepropt\": \"gepropt\",\n  \"geprotesteerd\": \"geprotesteerd\",\n  \"geprovoceerd\": \"geprovoceerd\",\n  \"gepubliceerd\": \"gepubliceerd\",\n  \"gepubliceerde\": \"gepubliceerd\",\n  \"gepulseerd\": \"gepulseerd\",\n  \"gepulste\": \"gepulst\",\n  \"gepyrolyseerd\": \"gepyrolyseerd\",\n  \"gequaterniseerd\": \"gequaterniseerd\",\n  \"gequoteerde\": \"gequoteerd\",\n  \"gèr\": \"gèr\",\n  \"geraadpleegd\": \"geraadpleegd\",\n  \"geraakt\": \"geraakt\",\n  \"geraakte\": \"geraakt\",\n  \"geraamd\": \"geraamd\",\n  \"geraden\": \"gerad\",\n  \"geradene\": \"gerad\",\n  \"geradoteerd\": \"geradoteerd\",\n  \"geraffineerd\": \"geraffineerd\",\n  \"geraffineerde\": \"geraffineerd\",\n  \"geraghty\": \"geraghty\",\n  \"geraken\": \"gerak\",\n  \"geraldine\": \"geraldin\",\n  \"gerammel\": \"gerammel\",\n  \"gerangschikt\": \"gerangschikt\",\n  \"geranseld\": \"geranseld\",\n  \"gerard\": \"gerard\",\n  \"geratificeerd\": \"geratificeerd\",\n  \"gerdy\": \"gerdy\",\n  \"gereageerd\": \"gereageerd\",\n  \"gerealiseerd\": \"gerealiseerd\",\n  \"gerealiseerde\": \"gerealiseerd\",\n  \"gerecht\": \"gerecht\",\n  \"gerechtelijk\": \"gerecht\",\n  \"gerechtelijke\": \"gerecht\",\n  \"gerechtigd\": \"gerechtigd\",\n  \"gerechtshof\": \"gerechtshof\",\n  \"gerechtshoven\": \"gerechtshov\",\n  \"gerechtvaardigd\": \"gerechtvaardigd\",\n  \"gerecirculeerd\": \"gerecirculeerd\",\n  \"gerecreëerd\": \"gerecreeerd\",\n  \"gerecupereerd\": \"gerecupereerd\",\n  \"gerecycelde\": \"gerecyceld\",\n  \"gerecycled\": \"gerecycled\",\n  \"gerecyclede\": \"gerecycled\",\n  \"gered\": \"gered\",\n  \"gereden\": \"gered\",\n  \"geredetwist\": \"geredetwist\",\n  \"geredigeerd\": \"geredigeerd\",\n  \"gereduceerd\": \"gereduceerd\",\n  \"gereduceerde\": \"gereduceerd\",\n  \"gereed\": \"gered\",\n  \"gereedmelding\": \"gereedmeld\",\n  \"gereedschap\": \"gereedschap\",\n  \"gereedschappen\": \"gereedschapp\",\n  \"geregeld\": \"geregeld\",\n  \"geregelde\": \"geregeld\",\n  \"geregen\": \"gereg\",\n  \"geregend\": \"gereg\",\n  \"geregenereerd\": \"geregenereerd\",\n  \"geregistreerd\": \"geregistreerd\",\n  \"geregistreerde\": \"geregistreerd\",\n  \"gereguleerd\": \"gereguleerd\",\n  \"gerehabiliteerd\": \"gerehabiliteerd\",\n  \"gereinigd\": \"gereinigd\",\n  \"gereinigde\": \"gereinigd\",\n  \"gereisd\": \"gereisd\",\n  \"gerekend\": \"gerek\",\n  \"gerekt\": \"gerekt\",\n  \"gerelateerd\": \"gerelateerd\",\n  \"gerelateerde\": \"gerelateerd\",\n  \"gerelativeerd\": \"gerelativeerd\",\n  \"gereleveerd\": \"gereleveerd\",\n  \"geremd\": \"geremd\",\n  \"gerenommeerde\": \"gerenommeerd\",\n  \"gerenoveerd\": \"gerenoveerd\",\n  \"gerepareerd\": \"gerepareerd\",\n  \"gerept\": \"gerept\",\n  \"gereserveerd\": \"gereserveerd\",\n  \"geresigneerd\": \"geresigneerd\",\n  \"gerespecteerd\": \"gerespecteerd\",\n  \"gerestaureerd\": \"gerestaureerd\",\n  \"geresulteerd\": \"geresulteerd\",\n  \"geretoucheerd\": \"geretoucheerd\",\n  \"geretourneerd\": \"geretourneerd\",\n  \"gerezen\": \"gerez\",\n  \"geribbelde\": \"geribbeld\",\n  \"gericht\": \"gericht\",\n  \"gerichte\": \"gericht\",\n  \"geridiculiseerd\": \"geridiculiseerd\",\n  \"gerieflijk\": \"gerief\",\n  \"gerijpt\": \"gerijpt\",\n  \"gerild\": \"gerild\",\n  \"gerimpelde\": \"gerimpeld\",\n  \"gering\": \"gering\",\n  \"geringe\": \"gering\",\n  \"geringer\": \"geringer\",\n  \"geringere\": \"geringer\",\n  \"gerinkel\": \"gerinkel\",\n  \"gerling\": \"gerling\",\n  \"germaan\": \"german\",\n  \"germaans\": \"german\",\n  \"germaanse\": \"german\",\n  \"germanen\": \"german\",\n  \"germanium\": \"germanium\",\n  \"geroepen\": \"geroep\",\n  \"geroerd\": \"geroerd\",\n  \"gerolde\": \"gerold\",\n  \"gerommel\": \"gerommel\",\n  \"gerookt\": \"gerookt\",\n  \"gerrit\": \"gerrit\",\n  \"gerrits\": \"gerrit\",\n  \"gerrk\": \"gerrk\",\n  \"gerst\": \"gerst\",\n  \"gertr\": \"gertr\",\n  \"gertrude\": \"gertrud\",\n  \"gertrùde\": \"gertrùd\",\n  \"gerucht\": \"gerucht\",\n  \"geruchten\": \"gerucht\",\n  \"geruchtmakende\": \"geruchtmak\",\n  \"geruimd\": \"geruimd\",\n  \"geruime\": \"geruim\",\n  \"geruineerd\": \"geruineerd\",\n  \"geruïneerd\": \"geruineerd\",\n  \"geruis\": \"geruis\",\n  \"geruisloos\": \"geruislos\",\n  \"geruisloze\": \"geruisloz\",\n  \"gerukt\": \"gerukt\",\n  \"gerust\": \"gerust\",\n  \"gerustgesteld\": \"gerustgesteld\",\n  \"gerustheid\": \"gerust\",\n  \"geruststellend\": \"geruststell\",\n  \"gesaboteerd\": \"gesaboteerd\",\n  \"gesaneerd\": \"gesaneerd\",\n  \"gesaneerde\": \"gesaneerd\",\n  \"geschaad\": \"geschad\",\n  \"geschaard\": \"geschaard\",\n  \"geschaatste\": \"geschaatst\",\n  \"geschaduwd\": \"geschaduwd\",\n  \"geschakeerd\": \"geschakeerd\",\n  \"geschakeld\": \"geschakeld\",\n  \"geschapen\": \"geschap\",\n  \"geschat\": \"geschat\",\n  \"geschatte\": \"geschat\",\n  \"gescheiden\": \"gescheid\",\n  \"geschemerd\": \"geschemerd\",\n  \"geschenen\": \"geschen\",\n  \"geschénen\": \"geschen\",\n  \"geschenk\": \"geschenk\",\n  \"geschept\": \"geschept\",\n  \"geschetst\": \"geschetst\",\n  \"geschetste\": \"geschetst\",\n  \"gescheurd\": \"gescheurd\",\n  \"gescheurde\": \"gescheurd\",\n  \"geschieden\": \"geschied\",\n  \"geschiedenis\": \"geschiedenis\",\n  \"geschiedt\": \"geschiedt\",\n  \"geschikt\": \"geschikt\",\n  \"geschikte\": \"geschikt\",\n  \"geschikter\": \"geschikter\",\n  \"geschiktheid\": \"geschikt\",\n  \"geschiktheidsproef\": \"geschiktheidsproef\",\n  \"geschil\": \"geschil\",\n  \"geschilbeslechting\": \"geschilbeslecht\",\n  \"geschild\": \"geschild\",\n  \"geschilderd\": \"geschilderd\",\n  \"geschilderde\": \"geschilderd\",\n  \"geschillen\": \"geschill\",\n  \"geschitterd\": \"geschitterd\",\n  \"geschoeide\": \"geschoeid\",\n  \"geschokt\": \"geschokt\",\n  \"geschokte\": \"geschokt\",\n  \"gescholden\": \"geschold\",\n  \"geschonden\": \"geschond\",\n  \"geschonken\": \"geschonk\",\n  \"geschoold\": \"geschoold\",\n  \"geschoond\": \"geschoond\",\n  \"geschoonde\": \"geschoond\",\n  \"geschoren\": \"geschor\",\n  \"geschorst\": \"geschorst\",\n  \"geschoten\": \"geschot\",\n  \"geschoven\": \"geschov\",\n  \"geschraapte\": \"geschraapt\",\n  \"geschreeuwd\": \"geschreeuwd\",\n  \"geschreid\": \"geschreid\",\n  \"geschreven\": \"geschrev\",\n  \"geschrifte\": \"geschrift\",\n  \"geschrikt\": \"geschrikt\",\n  \"geschrobd\": \"geschrobd\",\n  \"geschroefd\": \"geschroefd\",\n  \"geschroeid\": \"geschroeid\",\n  \"geschrokken\": \"geschrok\",\n  \"geschud\": \"geschud\",\n  \"geseind\": \"geseind\",\n  \"geselde\": \"geseld\",\n  \"geselecteerd\": \"geselecteerd\",\n  \"geselecteerde\": \"geselecteerd\",\n  \"geseling\": \"gesel\",\n  \"geselingen\": \"gesel\",\n  \"gesellig\": \"gesell\",\n  \"gesèllig\": \"gesèll\",\n  \"gesellschaft\": \"gesellschaft\",\n  \"gesels\": \"gesel\",\n  \"geshredderd\": \"geshredderd\",\n  \"geshredderde\": \"geshredderd\",\n  \"gesidderd\": \"gesidderd\",\n  \"gesignaleerd\": \"gesignaleerd\",\n  \"gesimuleerd\": \"gesimuleerd\",\n  \"gesjeesd\": \"gesjeesd\",\n  \"gesjeesde\": \"gesjeesd\",\n  \"gesjoemeld\": \"gesjoemeld\",\n  \"gesjord\": \"gesjord\",\n  \"gesjouwd\": \"gesjouwd\",\n  \"geslaagd\": \"geslaagd\",\n  \"gesláagd\": \"geslaagd\",\n  \"geslaagde\": \"geslaagd\",\n  \"geslacht\": \"geslacht\",\n  \"geslachten\": \"geslacht\",\n  \"geslachts\": \"geslacht\",\n  \"geslachtshormoon\": \"geslachtshormon\",\n  \"geslachtsverhoudingen\": \"geslachtsverhoud\",\n  \"geslagen\": \"geslag\",\n  \"geslagenheid\": \"geslag\",\n  \"geslapen\": \"geslap\",\n  \"gesleep\": \"geslep\",\n  \"gesleept\": \"gesleept\",\n  \"gesleten\": \"geslet\",\n  \"gesleurd\": \"gesleurd\",\n  \"geslingerd\": \"geslingerd\",\n  \"geslingerschilderd\": \"geslingerschilderd\",\n  \"geslonken\": \"geslonk\",\n  \"gesloopt\": \"gesloopt\",\n  \"gesloopte\": \"gesloopt\",\n  \"gesloten\": \"geslot\",\n  \"geslotener\": \"geslotener\",\n  \"geslotenheid\": \"geslot\",\n  \"gesluierd\": \"gesluierd\",\n  \"gesluimerd\": \"gesluimerd\",\n  \"gesmacht\": \"gesmacht\",\n  \"gesmade\": \"gesmad\",\n  \"gesman\": \"gesman\",\n  \"gesmeekt\": \"gesmeekt\",\n  \"gesmeerd\": \"gesmeerd\",\n  \"gesmolten\": \"gesmolt\",\n  \"gesmoord\": \"gesmoord\",\n  \"gesnapt\": \"gesnapt\",\n  \"gesneden\": \"gesned\",\n  \"gesnerp\": \"gesnerp\",\n  \"gesnerpt\": \"gesnerpt\",\n  \"gesnikt\": \"gesnikt\",\n  \"gesnoeid\": \"gesnoeid\",\n  \"gesorteerd\": \"gesorteerd\",\n  \"gespaard\": \"gespaard\",\n  \"gespaarde\": \"gespaard\",\n  \"gespannen\": \"gespann\",\n  \"gespat\": \"gespat\",\n  \"gespecialiseerd\": \"gespecialiseerd\",\n  \"gespecialiseerde\": \"gespecialiseerd\",\n  \"gespecificeerd\": \"gespecificeerd\",\n  \"gespeeld\": \"gespeeld\",\n  \"gespeelde\": \"gespeeld\",\n  \"gespiegeld\": \"gespiegeld\",\n  \"gespleten\": \"gesplet\",\n  \"gespletene\": \"gesplet\",\n  \"gesplitst\": \"gesplitst\",\n  \"gesponsord\": \"gesponsord\",\n  \"gespookt\": \"gespookt\",\n  \"gespot\": \"gespot\",\n  \"gespoten\": \"gespot\",\n  \"gespotlacht\": \"gespotlacht\",\n  \"gespreid\": \"gespreid\",\n  \"gespreide\": \"gespreid\",\n  \"gesprek\": \"gesprek\",\n  \"gesprekken\": \"gesprek\",\n  \"gesproeid\": \"gesproeid\",\n  \"gesproeidroogd\": \"gesproeidroogd\",\n  \"gesproken\": \"gesprok\",\n  \"gesprongen\": \"gesprong\",\n  \"gespte\": \"gespt\",\n  \"gespurt\": \"gespurt\",\n  \"gest\": \"gest\",\n  \"gestaag\": \"gestag\",\n  \"gestaakt\": \"gestaakt\",\n  \"gestaan\": \"gestan\",\n  \"gestaard\": \"gestaard\",\n  \"gestabiliseerd\": \"gestabiliseerd\",\n  \"gestadig\": \"gestad\",\n  \"gestadige\": \"gestad\",\n  \"gestage\": \"gestag\",\n  \"gestagneerd\": \"gestagneerd\",\n  \"gestalte\": \"gestalt\",\n  \"gestalten\": \"gestalt\",\n  \"gestampt\": \"gestampt\",\n  \"gestand\": \"gestand\",\n  \"gestandaardiseerd\": \"gestandaardiseerd\",\n  \"gestandaardiseerde\": \"gestandaardiseerd\",\n  \"gestapeld\": \"gestapeld\",\n  \"gestapelde\": \"gestapeld\",\n  \"gestapt\": \"gestapt\",\n  \"gestart\": \"gestart\",\n  \"gesteente\": \"gesteent\",\n  \"gestegen\": \"gesteg\",\n  \"gestel\": \"gestel\",\n  \"gesteld\": \"gesteld\",\n  \"gestelde\": \"gesteld\",\n  \"gesteldheid\": \"gesteld\",\n  \"gestellen\": \"gestell\",\n  \"gestelletjes\": \"gestelletjes\",\n  \"gestemd\": \"gestemd\",\n  \"gesteriliseerd\": \"gesteriliseerd\",\n  \"gesterkt\": \"gesterkt\",\n  \"gesteund\": \"gesteund\",\n  \"gesticht\": \"gesticht\",\n  \"gestichte\": \"gesticht\",\n  \"gestild\": \"gestild\",\n  \"gestileerde\": \"gestileerd\",\n  \"gestimuleerd\": \"gestimuleerd\",\n  \"gestippeld\": \"gestippeld\",\n  \"gestoelte\": \"gestoelt\",\n  \"gestoken\": \"gestok\",\n  \"gestolen\": \"gestol\",\n  \"gestompt\": \"gestompt\",\n  \"gestookt\": \"gestookt\",\n  \"gestookte\": \"gestookt\",\n  \"gestoord\": \"gestoord\",\n  \"gestoorde\": \"gestoord\",\n  \"gestopt\": \"gestopt\",\n  \"gestormd\": \"gestormd\",\n  \"gestort\": \"gestort\",\n  \"gestorte\": \"gestort\",\n  \"gestorven\": \"gestorv\",\n  \"gestoten\": \"gestot\",\n  \"gestotter\": \"gestotter\",\n  \"gestraald\": \"gestraald\",\n  \"gestraft\": \"gestraft\",\n  \"gestrande\": \"gestrand\",\n  \"gestreden\": \"gestred\",\n  \"gestreefd\": \"gestreefd\",\n  \"gestreeld\": \"gestreeld\",\n  \"gestreepte\": \"gestreept\",\n  \"gestreken\": \"gestrek\",\n  \"gestrekt\": \"gestrekt\",\n  \"gestrengeld\": \"gestrengeld\",\n  \"gestrengheid\": \"gestreng\",\n  \"gestriemd\": \"gestriemd\",\n  \"gestrikt\": \"gestrikt\",\n  \"gestrooid\": \"gestrooid\",\n  \"gestroomd\": \"gestroomd\",\n  \"gestroomlijnd\": \"gestroomlijnd\",\n  \"gestructureerd\": \"gestructureerd\",\n  \"gestructureerde\": \"gestructureerd\",\n  \"gestuct\": \"gestuct\",\n  \"gestudeerd\": \"gestudeerd\",\n  \"gestuifd\": \"gestuifd\",\n  \"gestuurd\": \"gestuurd\",\n  \"gestuurde\": \"gestuurd\",\n  \"gestuwd\": \"gestuwd\",\n  \"gesubsidieerd\": \"gesubsidieerd\",\n  \"gesubsidieerde\": \"gesubsidieerd\",\n  \"gesuggereerd\": \"gesuggereerd\",\n  \"gesuppleerd\": \"gesuppleerd\",\n  \"gesust\": \"gesust\",\n  \"getaald\": \"getaald\",\n  \"getakte\": \"getakt\",\n  \"getal\": \"getal\",\n  \"getale\": \"getal\",\n  \"getallen\": \"getall\",\n  \"getandeknerst\": \"getandeknerst\",\n  \"getankt\": \"getankt\",\n  \"getapt\": \"getapt\",\n  \"getast\": \"getast\",\n  \"geteeld\": \"geteeld\",\n  \"geteelde\": \"geteeld\",\n  \"geteisterd\": \"geteisterd\",\n  \"getekend\": \"getek\",\n  \"geteld\": \"geteld\",\n  \"getelegrafeerd\": \"getelegrafeerd\",\n  \"getemperd\": \"getemperd\",\n  \"getest\": \"getest\",\n  \"geteste\": \"getest\",\n  \"getijdecentrale\": \"getijdecentral\",\n  \"getijdecentrales\": \"getijdecentrales\",\n  \"getijdeverschil\": \"getijdeverschil\",\n  \"getijdewateren\": \"getijdewater\",\n  \"getijdewerking\": \"getijdewerk\",\n  \"getijverschil\": \"getijverschil\",\n  \"getikt\": \"getikt\",\n  \"getild\": \"getild\",\n  \"getint\": \"getint\",\n  \"getinte\": \"getint\",\n  \"getiteld\": \"getiteld\",\n  \"getitelde\": \"getiteld\",\n  \"getjilp\": \"getjilp\",\n  \"getobd\": \"getobd\",\n  \"getoerd\": \"getoerd\",\n  \"getoeter\": \"getoeter\",\n  \"getoetst\": \"getoetst\",\n  \"getogen\": \"getog\",\n  \"getolereerd\": \"getolereerd\",\n  \"getooid\": \"getooid\",\n  \"getoond\": \"getoond\",\n  \"getourmenteerd\": \"getourmenteerd\",\n  \"getracht\": \"getracht\",\n  \"getramd\": \"getramd\",\n  \"getransporteerd\": \"getransporteerd\",\n  \"getrapt\": \"getrapt\",\n  \"getrapte\": \"getrapt\",\n  \"getreden\": \"getred\",\n  \"getreurd\": \"getreurd\",\n  \"getrild\": \"getrild\",\n  \"getript\": \"getript\",\n  \"getroffen\": \"getroff\",\n  \"getrokken\": \"getrok\",\n  \"getronics\": \"getronic\",\n  \"getroost\": \"getroost\",\n  \"getroubleerd\": \"getroubleerd\",\n  \"getrouwd\": \"getrouwd\",\n  \"getrouwde\": \"getrouwd\",\n  \"getting\": \"getting\",\n  \"getuigde\": \"getuigd\",\n  \"getuigden\": \"getuigd\",\n  \"getuige\": \"getuig\",\n  \"getuigen\": \"getuig\",\n  \"getuigend\": \"getuig\",\n  \"getuigenverhoor\": \"getuigenverhor\",\n  \"getuigt\": \"getuigt\",\n  \"getuurd\": \"getuurd\",\n  \"getwijfeld\": \"getwijfeld\",\n  \"getwist\": \"getwist\",\n  \"getypeerd\": \"getypeerd\",\n  \"geuit\": \"geuit\",\n  \"geul\": \"geul\",\n  \"geuldal\": \"geuldal\",\n  \"geur\": \"geur\",\n  \"geuranalyses\": \"geuranalyses\",\n  \"geurbemonsteringssysteem\": \"geurbemonsteringssystem\",\n  \"geurbestrijding\": \"geurbestrijd\",\n  \"geurcassettes\": \"geurcassettes\",\n  \"geurcomponenten\": \"geurcomponent\",\n  \"geurconcentratie\": \"geurconcentratie\",\n  \"geurconcentraties\": \"geurconcentraties\",\n  \"geurde\": \"geurd\",\n  \"geurden\": \"geurd\",\n  \"geureenheden\": \"geuren\",\n  \"geureenheid\": \"geuren\",\n  \"geuremissie\": \"geuremissie\",\n  \"geuremissies\": \"geuremissies\",\n  \"geuremmissiesituatie\": \"geuremmissiesituatie\",\n  \"geuren\": \"geur\",\n  \"geurhinder\": \"geurhinder\",\n  \"geurig\": \"geurig\",\n  \"geurloze\": \"geurloz\",\n  \"geurmonsters\": \"geurmonster\",\n  \"geuroverlast\": \"geuroverlast\",\n  \"geurpanel\": \"geurpanel\",\n  \"geursituatie\": \"geursituatie\",\n  \"geurstoffen\": \"geurstoff\",\n  \"geurstrippen\": \"geurstripp\",\n  \"geurts\": \"geurt\",\n  \"geurveroorzakende\": \"geurveroorzak\",\n  \"geuze\": \"geuz\",\n  \"gevaar\": \"gevar\",\n  \"gevaarlijk\": \"gevar\",\n  \"gevaarlijke\": \"gevar\",\n  \"gevaarlijker\": \"gevaarlijker\",\n  \"gevaarten\": \"gevaart\",\n  \"geval\": \"geval\",\n  \"gevalideerd\": \"gevalideerd\",\n  \"gevalideerde\": \"gevalideerd\",\n  \"gevallen\": \"gevall\",\n  \"gevangen\": \"gevang\",\n  \"gevangenen\": \"gevangen\",\n  \"gevangenis\": \"gevangenis\",\n  \"gevangenisdagboek\": \"gevangenisdagboek\",\n  \"gevangenisstraf\": \"gevangenisstraf\",\n  \"gevangenisstraffen\": \"gevangenisstraff\",\n  \"gevaren\": \"gevar\",\n  \"gevarenniveau\": \"gevarenniveau\",\n  \"gevarenniveaus\": \"gevarenniveaus\",\n  \"gevarieerd\": \"gevarieerd\",\n  \"gevarieerde\": \"gevarieerd\",\n  \"gevat\": \"gevat\",\n  \"gevechtshelikopters\": \"gevechtshelikopter\",\n  \"geveegd\": \"geveegd\",\n  \"geveke\": \"gevek\",\n  \"gevel\": \"gevel\",\n  \"gevelbranche\": \"gevelbranch\",\n  \"gevelisolatie\": \"gevelisolatie\",\n  \"gevellijn\": \"gevellijn\",\n  \"gevelrijen\": \"gevelrij\",\n  \"gevels\": \"gevel\",\n  \"gevelsteen\": \"gevelsten\",\n  \"gevelverlichting\": \"gevelverlicht\",\n  \"geven\": \"gev\",\n  \"gevende\": \"gevend\",\n  \"geventileerd\": \"geventileerd\",\n  \"gever\": \"gever\",\n  \"geverbaliseerd\": \"geverbaliseerd\",\n  \"geverfd\": \"geverfd\",\n  \"gevergd\": \"gevergd\",\n  \"geverifieerd\": \"geverifieerd\",\n  \"gevestigd\": \"gevestigd\",\n  \"gevestigde\": \"gevestigd\",\n  \"gevierd\": \"gevierd\",\n  \"gevist\": \"gevist\",\n  \"gevit\": \"gevit\",\n  \"gevlakt\": \"gevlakt\",\n  \"gevleid\": \"gevleid\",\n  \"gevleugelde\": \"gevleugeld\",\n  \"gevloekt\": \"gevloekt\",\n  \"gevlogen\": \"gevlog\",\n  \"gevlucht\": \"gevlucht\",\n  \"gevochten\": \"gevocht\",\n  \"gevoed\": \"gevoed\",\n  \"gevoede\": \"gevoed\",\n  \"gevoegd\": \"gevoegd\",\n  \"gevoel\": \"gevoel\",\n  \"gevoeld\": \"gevoeld\",\n  \"gevoelde\": \"gevoeld\",\n  \"gevoelen\": \"gevoel\",\n  \"gevoelens\": \"gevoelen\",\n  \"gevoelig\": \"gevoel\",\n  \"gevoelige\": \"gevoel\",\n  \"gevoeliger\": \"gevoeliger\",\n  \"gevoeligheid\": \"gevoel\",\n  \"gevoelingen\": \"gevoel\",\n  \"gevoelloze\": \"gevoelloz\",\n  \"gevoelsleven\": \"gevoelslev\",\n  \"gevoelsmatig\": \"gevoelsmat\",\n  \"gevoelsregel\": \"gevoelsregel\",\n  \"gevoelstemperaturen\": \"gevoelstemperatur\",\n  \"gevoelstemperatuur\": \"gevoelstemperatur\",\n  \"gevoelt\": \"gevoelt\",\n  \"gevoerd\": \"gevoerd\",\n  \"gevoerde\": \"gevoerd\",\n  \"gevogelte\": \"gevogelt\",\n  \"gevolg\": \"gevolg\",\n  \"gevolgd\": \"gevolgd\",\n  \"gevolgde\": \"gevolgd\",\n  \"gevolge\": \"gevolg\",\n  \"gevolgen\": \"gevolg\",\n  \"gevolgtrekkingen\": \"gevolgtrek\",\n  \"gevonden\": \"gevond\",\n  \"gevónden\": \"gevond\",\n  \"gevorderd\": \"gevorderd\",\n  \"gevorderde\": \"gevorderd\",\n  \"gevormd\": \"gevormd\",\n  \"gevormde\": \"gevormd\",\n  \"gevouwen\": \"gevouw\",\n  \"gevraagd\": \"gevraagd\",\n  \"gevraagde\": \"gevraagd\",\n  \"gevreesd\": \"gevreesd\",\n  \"gevreesde\": \"gevreesd\",\n  \"gevreten\": \"gevret\",\n  \"gevrey\": \"gevrey\",\n  \"gevrijwaard\": \"gevrijwaard\",\n  \"gevudo\": \"gevudo\",\n  \"gevulcaniseerd\": \"gevulcaniseerd\",\n  \"gevuld\": \"gevuld\",\n  \"gevulde\": \"gevuld\",\n  \"gevulder\": \"gevulder\",\n  \"gewaagd\": \"gewaagd\",\n  \"gewaaid\": \"gewaaid\",\n  \"gewaarborgd\": \"gewaarborgd\",\n  \"gewaardeerd\": \"gewaardeerd\",\n  \"gewaarmerkte\": \"gewaarmerkt\",\n  \"gewaarschuwd\": \"gewaarschuwd\",\n  \"gewaarwording\": \"gewaarword\",\n  \"gewacht\": \"gewacht\",\n  \"gewag\": \"gewag\",\n  \"gewandeld\": \"gewandeld\",\n  \"gewapend\": \"gewap\",\n  \"geward\": \"geward\",\n  \"gewas\": \"gewas\",\n  \"gewasbescherming\": \"gewasbescherm\",\n  \"gewasbeschermingsmiddel\": \"gewasbeschermingsmiddel\",\n  \"gewasbeschermingsmiddelen\": \"gewasbeschermingsmiddel\",\n  \"gewasbeschermingsmiddelenrichtlijn\": \"gewasbeschermingsmiddelenrichtlijn\",\n  \"gewasfactor\": \"gewasfactor\",\n  \"gewasmonitoringsprogramma\": \"gewasmonitoringsprogramma\",\n  \"gewasonderzoek\": \"gewasonderzoek\",\n  \"gewasresten\": \"gewasrest\",\n  \"gewassen\": \"gewass\",\n  \"geweeklaag\": \"geweeklag\",\n  \"geweeklaagd\": \"geweeklaagd\",\n  \"geweend\": \"geweend\",\n  \"geweer\": \"gewer\",\n  \"geweerd\": \"geweerd\",\n  \"geweerlicht\": \"geweerlicht\",\n  \"geweest\": \"geweest\",\n  \"geweifeld\": \"geweifeld\",\n  \"geweigerd\": \"geweigerd\",\n  \"geweken\": \"gewek\",\n  \"gewekt\": \"gewekt\",\n  \"geweld\": \"geweld\",\n  \"geweldig\": \"geweld\",\n  \"geweldige\": \"geweld\",\n  \"gewelf\": \"gewelf\",\n  \"gewemeld\": \"gewemeld\",\n  \"gewend\": \"gewend\",\n  \"gewenst\": \"gewenst\",\n  \"gewenste\": \"gewenst\",\n  \"gewerkt\": \"gewerkt\",\n  \"gewest\": \"gewest\",\n  \"gewestelijk\": \"gewest\",\n  \"gewestelijke\": \"gewest\",\n  \"gewesten\": \"gewest\",\n  \"geweten\": \"gewet\",\n  \"gewetensvol\": \"gewetensvol\",\n  \"gewettigde\": \"gewettigd\",\n  \"gewezen\": \"gewez\",\n  \"gewicht\": \"gewicht\",\n  \"gewichtig\": \"gewicht\",\n  \"gewichtige\": \"gewicht\",\n  \"gewichtiger\": \"gewichtiger\",\n  \"gewichtigheid\": \"gewicht\",\n  \"gewichtigs\": \"gewicht\",\n  \"gewichtloosheid\": \"gewichtlos\",\n  \"gewichtsbepalend\": \"gewichtsbepal\",\n  \"gewichtsbesparing\": \"gewichtsbespar\",\n  \"gewichtsfactor\": \"gewichtsfactor\",\n  \"gewichtsfactoren\": \"gewichtsfactor\",\n  \"gewichtsprocent\": \"gewichtsprocent\",\n  \"gewichtsprocenten\": \"gewichtsprocent\",\n  \"gewichtsreductie\": \"gewichtsreductie\",\n  \"gewiekte\": \"gewiekt\",\n  \"gewijd\": \"gewijd\",\n  \"gewijzigd\": \"gewijzigd\",\n  \"gewijzigde\": \"gewijzigd\",\n  \"gewild\": \"gewild\",\n  \"gewilde\": \"gewild\",\n  \"gewinning\": \"gewinn\",\n  \"gewisseld\": \"gewisseld\",\n  \"gewoel\": \"gewoel\",\n  \"gewogen\": \"gewog\",\n  \"gewolmaniseerd\": \"gewolmaniseerd\",\n  \"gewond\": \"gewond\",\n  \"gewone\": \"gewon\",\n  \"gewoner\": \"gewoner\",\n  \"gewonnen\": \"gewonn\",\n  \"gewoon\": \"gewon\",\n  \"gewoond\": \"gewoond\",\n  \"gewoonheid\": \"gewon\",\n  \"gewoonlijk\": \"gewon\",\n  \"gewoonlijke\": \"gewon\",\n  \"gewoonste\": \"gewoonst\",\n  \"gewoonte\": \"gewoont\",\n  \"gewoontes\": \"gewoontes\",\n  \"gewoontetjes\": \"gewoontetjes\",\n  \"gewoonverstandelijks\": \"gewoonverstand\",\n  \"gewoonweg\": \"gewoonweg\",\n  \"geworden\": \"geword\",\n  \"geworpen\": \"geworp\",\n  \"gewraakte\": \"gewraakt\",\n  \"gewreven\": \"gewrev\",\n  \"gewrichten\": \"gewricht\",\n  \"gewrokt\": \"gewrokt\",\n  \"gewuifd\": \"gewuifd\",\n  \"geysels\": \"geysel\",\n  \"gezaagd\": \"gezaagd\",\n  \"gezaaid\": \"gezaaid\",\n  \"gezag\": \"gezag\",\n  \"gezaghebbende\": \"gezaghebb\",\n  \"gezakt\": \"gezakt\",\n  \"gezamelijke\": \"gezam\",\n  \"gezamenlijk\": \"gezamen\",\n  \"gezamenlijke\": \"gezamen\",\n  \"gezant\": \"gezant\",\n  \"gezeefd\": \"gezeefd\",\n  \"gezeefde\": \"gezeefd\",\n  \"gezegd\": \"gezegd\",\n  \"gezègd\": \"gezègd\",\n  \"gezegden\": \"gezegd\",\n  \"gezegeld\": \"gezegeld\",\n  \"gezegevierd\": \"gezegevierd\",\n  \"gezellig\": \"gezell\",\n  \"gezellige\": \"gezell\",\n  \"gezelliger\": \"gezelliger\",\n  \"gezelligheid\": \"gezell\",\n  \"gezelligs\": \"gezell\",\n  \"gezelligweg\": \"gezelligweg\",\n  \"gezelschap\": \"gezelschap\",\n  \"gezet\": \"gezet\",\n  \"gezeten\": \"gezet\",\n  \"gezette\": \"gezet\",\n  \"gezicht\": \"gezicht\",\n  \"gezichten\": \"gezicht\",\n  \"gezichtje\": \"gezichtj\",\n  \"gezieji\": \"gezieji\",\n  \"gezien\": \"gezien\",\n  \"gezin\": \"gezin\",\n  \"gezinnen\": \"gezinn\",\n  \"gezinsbedrijven\": \"gezinsbedrijv\",\n  \"gezinsleden\": \"gezinsled\",\n  \"gezinspeeld\": \"gezinspeeld\",\n  \"gezinsplanning\": \"gezinsplann\",\n  \"gezocht\": \"gezocht\",\n  \"gezochte\": \"gezocht\",\n  \"gezoend\": \"gezoend\",\n  \"gezogen\": \"gezog\",\n  \"gezond\": \"gezond\",\n  \"gezondblonde\": \"gezondblond\",\n  \"gezonde\": \"gezond\",\n  \"gezonden\": \"gezond\",\n  \"gezondere\": \"gezonder\",\n  \"gezondheid\": \"gezond\",\n  \"gezondheids\": \"gezond\",\n  \"gezondheidsaspecten\": \"gezondheidsaspect\",\n  \"gezondheidsbescherming\": \"gezondheidsbescherm\",\n  \"gezondheidsdoelen\": \"gezondheidsdoel\",\n  \"gezondheidseffecten\": \"gezondheidseffect\",\n  \"gezondheidsindustrie\": \"gezondheidsindustrie\",\n  \"gezondheidsklachten\": \"gezondheidsklacht\",\n  \"gezondheidskunde\": \"gezondheidskund\",\n  \"gezondheidskundig\": \"gezondheidskund\",\n  \"gezondheidskundige\": \"gezondheidskund\",\n  \"gezondheidskuur\": \"gezondheidskur\",\n  \"gezondheidsonderzoek\": \"gezondheidsonderzoek\",\n  \"gezondheidsorganisatie\": \"gezondheidsorganisatie\",\n  \"gezondheidsproblemen\": \"gezondheidsproblem\",\n  \"gezondheidsraad\": \"gezondheidsrad\",\n  \"gezondheidsrisico\": \"gezondheidsrisico\",\n  \"gezondheidsschoeisel\": \"gezondheidsschoeisel\",\n  \"gezondheidsschoenen\": \"gezondheidsschoen\",\n  \"gezondheidssector\": \"gezondheidssector\",\n  \"gezondheidsvoorwaarden\": \"gezondheidsvoorwaard\",\n  \"gezondheidswetenschappen\": \"gezondheidswetenschapp\",\n  \"gezondheidszorg\": \"gezondheidszorg\",\n  \"gezondheidszorginstellingen\": \"gezondheidszorginstell\",\n  \"gezonds\": \"gezond\",\n  \"gezonken\": \"gezonk\",\n  \"gezorgd\": \"gezorgd\",\n  \"gezuiverd\": \"gezuiverd\",\n  \"gezuiverde\": \"gezuiverd\",\n  \"gezwaaid\": \"gezwaaid\",\n  \"gezwiepte\": \"gezwiept\",\n  \"gft\": \"gft\",\n  \"gg\": \"gg\",\n  \"ggd\": \"ggd\",\n  \"ghana\": \"ghana\",\n  \"ghe\": \"ghe\",\n  \"gheb\": \"gheb\",\n  \"ghefochten\": \"ghefocht\",\n  \"ghek\": \"ghek\",\n  \"ghel\": \"ghel\",\n  \"gheleden\": \"gheled\",\n  \"ghelpt\": \"ghelpt\",\n  \"ghelukkig\": \"ghelukk\",\n  \"ghenoeg\": \"ghenoeg\",\n  \"gheweest\": \"gheweest\",\n  \"ghier\": \"ghier\",\n  \"ghoed\": \"ghoed\",\n  \"ghoede\": \"ghoed\",\n  \"ghoedig\": \"ghoedig\",\n  \"gholamreza\": \"gholamreza\",\n  \"gholland\": \"gholland\",\n  \"ghollând\": \"ghollând\",\n  \"ghollands\": \"gholland\",\n  \"ghollandse\": \"gholland\",\n  \"ghôtel\": \"ghôtel\",\n  \"ghr\": \"ghr\",\n  \"ghroot\": \"ghrot\",\n  \"ghuilen\": \"ghuil\",\n  \"gibo\": \"gibo\",\n  \"gids\": \"gid\",\n  \"gier\": \"gier\",\n  \"gierde\": \"gierd\",\n  \"gieren\": \"gier\",\n  \"gierende\": \"gierend\",\n  \"gierig\": \"gierig\",\n  \"gierige\": \"gierig\",\n  \"gierigheid\": \"gierig\",\n  \"gierklauw\": \"gierklauw\",\n  \"giertanks\": \"giertank\",\n  \"giessen\": \"giess\",\n  \"giessendam\": \"giessendam\",\n  \"giessense\": \"giessen\",\n  \"giet\": \"giet\",\n  \"gieten\": \"giet\",\n  \"gieter\": \"gieter\",\n  \"giethoorn\": \"giethoorn\",\n  \"gietijzer\": \"gietijzer\",\n  \"gietijzeren\": \"gietijzer\",\n  \"gietvloeren\": \"gietvloer\",\n  \"gietvloerenbranche\": \"gietvloerenbranch\",\n  \"gietwater\": \"gietwater\",\n  \"gif\": \"gif\",\n  \"gifgebruik\": \"gifgebruik\",\n  \"gifgehalte\": \"gifgehalt\",\n  \"gifgrond\": \"gifgrond\",\n  \"gifstoffen\": \"gifstoff\",\n  \"gift\": \"gift\",\n  \"giften\": \"gift\",\n  \"giftig\": \"giftig\",\n  \"giftige\": \"giftig\",\n  \"giftigheid\": \"giftig\",\n  \"gifvaten\": \"gifvat\",\n  \"gifwolk\": \"gifwolk\",\n  \"gifzakjes\": \"gifzakjes\",\n  \"gigajoule\": \"gigajoul\",\n  \"gigajoules\": \"gigajoules\",\n  \"gigalino\": \"gigalino\",\n  \"giganten\": \"gigant\",\n  \"gigantisch\": \"gigantisch\",\n  \"gigantische\": \"gigantisch\",\n  \"gil\": \"gil\",\n  \"gilde\": \"gild\",\n  \"gilden\": \"gild\",\n  \"gillen\": \"gill\",\n  \"gils\": \"gil\",\n  \"ginds\": \"gind\",\n  \"ging\": \"ging\",\n  \"ginge\": \"ging\",\n  \"gingen\": \"ging\",\n  \"ginjaar\": \"ginjar\",\n  \"ginkelse\": \"ginkel\",\n  \"ginnegappen\": \"ginnegapp\",\n  \"gips\": \"gip\",\n  \"gipsplaat\": \"gipsplat\",\n  \"gipsplaten\": \"gipsplat\",\n  \"giro\": \"giro\",\n  \"gis\": \"gis\",\n  \"gissen\": \"giss\",\n  \"gist\": \"gist\",\n  \"gisten\": \"gist\",\n  \"gisteravond\": \"gisteravond\",\n  \"gisteren\": \"gister\",\n  \"gisterenavond\": \"gisterenavond\",\n  \"gisterenmiddag\": \"gisterenmiddag\",\n  \"gisterennacht\": \"gisterennacht\",\n  \"giswerk\": \"giswerk\",\n  \"giveg\": \"giveg\",\n  \"gj\": \"gj\",\n  \"gk\": \"gk\",\n  \"gkd\": \"gkd\",\n  \"gkn\": \"gkn\",\n  \"glaasje\": \"glaasj\",\n  \"glaceert\": \"glaceert\",\n  \"glad\": \"glad\",\n  \"gladbach\": \"gladbach\",\n  \"gladde\": \"glad\",\n  \"gladheid\": \"gladheid\",\n  \"gladheidsbestrijding\": \"gladheidsbestrijd\",\n  \"gladzuiver\": \"gladzuiver\",\n  \"glans\": \"glan\",\n  \"glansbundels\": \"glansbundel\",\n  \"glansde\": \"glansd\",\n  \"glansden\": \"glansd\",\n  \"glanssteden\": \"glanssted\",\n  \"glanzen\": \"glanz\",\n  \"glanzend\": \"glanzend\",\n  \"glanzende\": \"glanzend\",\n  \"glanzender\": \"glanzender\",\n  \"glanzends\": \"glanzend\",\n  \"glanzig\": \"glanzig\",\n  \"glanzingen\": \"glanzing\",\n  \"glas\": \"glas\",\n  \"glasafbraak\": \"glasafbrak\",\n  \"glasafval\": \"glasafval\",\n  \"glasbak\": \"glasbak\",\n  \"glasbakken\": \"glasbak\",\n  \"glasberg\": \"glasberg\",\n  \"glasbetonklinker\": \"glasbetonklinker\",\n  \"glasbetontegel\": \"glasbetontegel\",\n  \"glasbloemenbedrijf\": \"glasbloemenbedrijf\",\n  \"glasdak\": \"glasdak\",\n  \"glasemailles\": \"glasemailles\",\n  \"glasfabrikanten\": \"glasfabrikant\",\n  \"glasfalt\": \"glasfalt\",\n  \"glasfilter\": \"glasfilter\",\n  \"glasfractie\": \"glasfractie\",\n  \"glasfritten\": \"glasfrit\",\n  \"glasgroente\": \"glasgroent\",\n  \"glasgroentebedrijven\": \"glasgroentebedrijv\",\n  \"glasgroentetelers\": \"glasgroenteteler\",\n  \"glasindustrie\": \"glasindustrie\",\n  \"glasinzamelsysteem\": \"glasinzamelsystem\",\n  \"glaslandschap\": \"glaslandschap\",\n  \"glasmatrix\": \"glasmatrix\",\n  \"glasovens\": \"glasoven\",\n  \"glaspartij\": \"glaspartij\",\n  \"glasplaat\": \"glasplat\",\n  \"glasprijzen\": \"glasprijz\",\n  \"glasproduktiemethoden\": \"glasproduktiemethod\",\n  \"glasrecycling\": \"glasrecycl\",\n  \"glasrecyclingbedrijf\": \"glasrecyclingbedrijf\",\n  \"glasrecyclingfabriek\": \"glasrecyclingfabriek\",\n  \"glasrecyclinginitiatief\": \"glasrecyclinginitiatief\",\n  \"glass\": \"glas\",\n  \"glasscheiding\": \"glasscheid\",\n  \"glasscherven\": \"glasscherv\",\n  \"glassector\": \"glassector\",\n  \"glassig\": \"glassig\",\n  \"glassige\": \"glassig\",\n  \"glasteelt\": \"glasteelt\",\n  \"glastuinbouw\": \"glastuinbouw\",\n  \"glastuinbouwareaal\": \"glastuinbouwareaal\",\n  \"glastuinbouwbedrijven\": \"glastuinbouwbedrijv\",\n  \"glastuinbouwcomplex\": \"glastuinbouwcomplex\",\n  \"glastuinbouwers\": \"glastuinbouwer\",\n  \"glastuinbouwgebied\": \"glastuinbouwgebied\",\n  \"glastuinbouwsector\": \"glastuinbouwsector\",\n  \"glastuinders\": \"glastuinder\",\n  \"glasvergruizer\": \"glasvergruizer\",\n  \"glasverwerkende\": \"glasverwerk\",\n  \"glasvezel\": \"glasvezel\",\n  \"glasvezelbedrijf\": \"glasvezelbedrijf\",\n  \"glasvezelkabel\": \"glasvezelkabel\",\n  \"glasvezelpolyester\": \"glasvezelpolyester\",\n  \"glasvezels\": \"glasvezel\",\n  \"glasvezelverbinding\": \"glasvezelverbind\",\n  \"glasvezelversterkte\": \"glasvezelversterkt\",\n  \"glasvorm\": \"glasvorm\",\n  \"glaswand\": \"glaswand\",\n  \"glaswerk\": \"glaswerk\",\n  \"glaswol\": \"glaswol\",\n  \"glaswolvezels\": \"glaswolvezel\",\n  \"glaszuilen\": \"glaszuil\",\n  \"glaszuivering\": \"glaszuiver\",\n  \"glaszuiveringsinstallatie\": \"glaszuiveringsinstallatie\",\n  \"glazen\": \"glaz\",\n  \"glazige\": \"glazig\",\n  \"glazuren\": \"glazur\",\n  \"glazuur\": \"glazur\",\n  \"glazuurden\": \"glazuurd\",\n  \"glazuurfabriek\": \"glazuurfabriek\",\n  \"gleden\": \"gled\",\n  \"gleed\": \"gled\",\n  \"gleesons\": \"gleeson\",\n  \"glenbuterol\": \"glenbuterol\",\n  \"gletscherende\": \"gletscher\",\n  \"gletschermeer\": \"gletschermer\",\n  \"gletschers\": \"gletscher\",\n  \"gleuf\": \"gleuf\",\n  \"glg\": \"glg\",\n  \"glijden\": \"glijd\",\n  \"glijdende\": \"glijdend\",\n  \"glijvlakken\": \"glijvlak\",\n  \"glimlach\": \"glimlach\",\n  \"glimlachen\": \"glimlach\",\n  \"glimlachend\": \"glimlach\",\n  \"glimlachende\": \"glimlach\",\n  \"glimlachends\": \"glimlach\",\n  \"glimlachte\": \"glimlacht\",\n  \"glimlachten\": \"glimlacht\",\n  \"glimmerde\": \"glimmerd\",\n  \"glimp\": \"glimp\",\n  \"glimpen\": \"glimp\",\n  \"glimpende\": \"glimpend\",\n  \"glimping\": \"glimping\",\n  \"glimpte\": \"glimpt\",\n  \"glimpten\": \"glimpt\",\n  \"glinster\": \"glinster\",\n  \"glinsterden\": \"glinsterd\",\n  \"glinsteren\": \"glinster\",\n  \"glinsterend\": \"glinster\",\n  \"glinsterende\": \"glinster\",\n  \"glippen\": \"glipp\",\n  \"glipte\": \"glipt\",\n  \"globaal\": \"global\",\n  \"global\": \"global\",\n  \"globale\": \"global\",\n  \"globalisering\": \"globaliser\",\n  \"globalisme\": \"globalism\",\n  \"globe\": \"glob\",\n  \"gloed\": \"gloed\",\n  \"gloeide\": \"gloeid\",\n  \"gloeiden\": \"gloeid\",\n  \"gloeien\": \"gloei\",\n  \"gloeiend\": \"gloeiend\",\n  \"gloeiende\": \"gloeiend\",\n  \"gloeiing\": \"gloeiing\",\n  \"gloeiingen\": \"gloeiing\",\n  \"gloeit\": \"gloeit\",\n  \"glom\": \"glom\",\n  \"glommen\": \"glomm\",\n  \"glooiing\": \"glooiing\",\n  \"gloorde\": \"gloord\",\n  \"glorie\": \"glorie\",\n  \"glorieus\": \"glorieus\",\n  \"glowacka\": \"glowacka\",\n  \"glückauf\": \"gluckauf\",\n  \"glucose\": \"glucos\",\n  \"glufosinaat\": \"glufosinat\",\n  \"glurende\": \"glurend\",\n  \"gluurde\": \"gluurd\",\n  \"glycerine\": \"glycerin\",\n  \"glycol\": \"glycol\",\n  \"glycolbodems\": \"glycolbodem\",\n  \"glyfosaat\": \"glyfosat\",\n  \"glyfosfaat\": \"glyfosfat\",\n  \"gm\": \"gm\",\n  \"gmbh\": \"gmbh\",\n  \"gmelich\": \"gmelich\",\n  \"gmex\": \"gmex\",\n  \"gmo\": \"gmo\",\n  \"gmods\": \"gmod\",\n  \"gms\": \"gms\",\n  \"gmt\": \"gmt\",\n  \"gn\": \"gn\",\n  \"gnk\": \"gnk\",\n  \"go\": \"go\",\n  \"god\": \"god\",\n  \"goddelijk\": \"goddelijk\",\n  \"goddelijke\": \"goddelijk\",\n  \"goddelijkheid\": \"goddelijk\",\n  \"godecke\": \"godeck\",\n  \"gödecke\": \"godeck\",\n  \"goden\": \"god\",\n  \"godley\": \"godley\",\n  \"gods\": \"god\",\n  \"godsdienst\": \"godsdienst\",\n  \"godsdienstige\": \"godsdienst\",\n  \"godsnaam\": \"godsnam\",\n  \"godverdomme\": \"godverdomm\",\n  \"goed\": \"goed\",\n  \"goèd\": \"goèd\",\n  \"goedbedoelde\": \"goedbedoeld\",\n  \"goede\": \"goed\",\n  \"goeder\": \"goeder\",\n  \"goederen\": \"goeder\",\n  \"goederenoverslag\": \"goederenoverslag\",\n  \"goederentransport\": \"goederentransport\",\n  \"goederentreinen\": \"goederentrein\",\n  \"goederenvervoer\": \"goederenvervoer\",\n  \"goederenvervoerders\": \"goederenvervoerder\",\n  \"goederenwagons\": \"goederenwagon\",\n  \"goederenwegvervoer\": \"goederenwegvervoer\",\n  \"goedgekeurd\": \"goedgekeurd\",\n  \"goedgekeurde\": \"goedgekeurd\",\n  \"goedgemaakt\": \"goedgemaakt\",\n  \"goedgevoede\": \"goedgevoed\",\n  \"goedheid\": \"goedheid\",\n  \"goedig\": \"goedig\",\n  \"goedige\": \"goedig\",\n  \"goedigheid\": \"goedig\",\n  \"goedkeurde\": \"goedkeurd\",\n  \"goedkeuren\": \"goedkeur\",\n  \"goedkeurend\": \"goedkeur\",\n  \"goedkeuring\": \"goedkeur\",\n  \"goedkeurt\": \"goedkeurt\",\n  \"goedkoop\": \"goedkop\",\n  \"goedkoopje\": \"goedkoopj\",\n  \"goedkoopst\": \"goedkoopst\",\n  \"goedkoopste\": \"goedkoopst\",\n  \"goedkoopte\": \"goedkoopt\",\n  \"goedkope\": \"goedkop\",\n  \"goedkoper\": \"goedkoper\",\n  \"goedkopere\": \"goedkoper\",\n  \"goedmakers\": \"goedmaker\",\n  \"goedmee\": \"goedmee\",\n  \"goedmoedig\": \"goedmoed\",\n  \"goedmoedigs\": \"goedmoed\",\n  \"goeds\": \"goed\",\n  \"goedsmoeds\": \"goedsmoed\",\n  \"goedwillende\": \"goedwill\",\n  \"goedzittende\": \"goedzit\",\n  \"goeie\": \"goei\",\n  \"goeien\": \"goei\",\n  \"goeiigheid\": \"goeiig\",\n  \"goeree\": \"goeree\",\n  \"goes\": \"goes\",\n  \"goetzberger\": \"goetzberger\",\n  \"goewie\": \"goewie\",\n  \"going\": \"going\",\n  \"gokt\": \"gokt\",\n  \"gold\": \"gold\",\n  \"golf\": \"golf\",\n  \"golfbaan\": \"golfban\",\n  \"golfbanen\": \"golfban\",\n  \"golfbeweging\": \"golfbeweg\",\n  \"golfbewegingen\": \"golfbeweg\",\n  \"golfbreker\": \"golfbreker\",\n  \"golfbrekers\": \"golfbreker\",\n  \"golfclubs\": \"golfclub\",\n  \"golfcomplex\": \"golfcomplex\",\n  \"golfde\": \"golfd\",\n  \"golfden\": \"golfd\",\n  \"golfenergie\": \"golfenergie\",\n  \"golfgoot\": \"golfgot\",\n  \"golfjes\": \"golfjes\",\n  \"golfkrachtenergie\": \"golfkrachtenergie\",\n  \"golflengte\": \"golflengt\",\n  \"golfoorlog\": \"golfoorlog\",\n  \"golfpatroon\": \"golfpatron\",\n  \"golfplaten\": \"golfplat\",\n  \"golfslag\": \"golfslag\",\n  \"golfslagenergie\": \"golfslagenergie\",\n  \"golfslagenergiecentrale\": \"golfslagenergiecentral\",\n  \"golfstaten\": \"golfstat\",\n  \"golfstroom\": \"golfstrom\",\n  \"golftraject\": \"golftraject\",\n  \"golven\": \"golv\",\n  \"golvend\": \"golvend\",\n  \"golvende\": \"golvend\",\n  \"golvingen\": \"golving\",\n  \"gölzau\": \"golzau\",\n  \"gondel\": \"gondel\",\n  \"gong\": \"gong\",\n  \"gonsde\": \"gonsd\",\n  \"gonsden\": \"gonsd\",\n  \"gonse\": \"gon\",\n  \"good\": \"god\",\n  \"goodwill\": \"goodwill\",\n  \"gooi\": \"gooi\",\n  \"gooide\": \"gooid\",\n  \"gooiden\": \"gooid\",\n  \"gooien\": \"gooi\",\n  \"gooise\": \"goois\",\n  \"gooit\": \"gooit\",\n  \"goot\": \"got\",\n  \"gordel\": \"gordel\",\n  \"gordijn\": \"gordijn\",\n  \"gordijnen\": \"gordijn\",\n  \"gordijnloze\": \"gordijnloz\",\n  \"gordijntjes\": \"gordijntjes\",\n  \"gorinchem\": \"gorinchem\",\n  \"goschen\": \"gosch\",\n  \"gossypol\": \"gossypol\",\n  \"góteborg\": \"goteborg\",\n  \"göteborg\": \"goteborg\",\n  \"goud\": \"goud\",\n  \"gouda\": \"gouda\",\n  \"gouden\": \"goud\",\n  \"goudgloed\": \"goudgloed\",\n  \"goudgrijs\": \"goudgrijs\",\n  \"goudig\": \"goudig\",\n  \"goudsmit\": \"goudsmit\",\n  \"goudstof\": \"goudstof\",\n  \"goudwinning\": \"goudwinn\",\n  \"goutum\": \"goutum\",\n  \"gouvermentele\": \"gouvermentel\",\n  \"gouvernante\": \"gouvernant\",\n  \"gouvernementele\": \"gouvernementel\",\n  \"gouverneur\": \"gouverneur\",\n  \"gouverneurgeneraalstijd\": \"gouverneurgeneraalstijd\",\n  \"gouverneursche\": \"gouverneursch\",\n  \"government\": \"government\",\n  \"goyaerts\": \"goyaert\",\n  \"goyarts\": \"goyart\",\n  \"gpr\": \"gpr\",\n  \"gps\": \"gps\",\n  \"gpv\": \"gpv\",\n  \"graad\": \"grad\",\n  \"graaddagenmeter\": \"graaddagenmeter\",\n  \"graaf\": \"graf\",\n  \"graafproces\": \"graafproces\",\n  \"graafschap\": \"graafschap\",\n  \"graaft\": \"graaft\",\n  \"graafwerkzaamheden\": \"graafwerkzam\",\n  \"graag\": \"grag\",\n  \"graaide\": \"graaid\",\n  \"graaiensgereed\": \"graaiensgered\",\n  \"graan\": \"gran\",\n  \"graanbeleid\": \"graanbeleid\",\n  \"graanexporterend\": \"graanexporter\",\n  \"graangewassen\": \"graangewass\",\n  \"graanhandel\": \"graanhandel\",\n  \"graanimporterend\": \"graanimporter\",\n  \"graanprijs\": \"graanprijs\",\n  \"graanproduktie\": \"graanproduktie\",\n  \"graanverwerkingsbedrijf\": \"graanverwerkingsbedrijf\",\n  \"graanvoorraden\": \"graanvoorrad\",\n  \"graasdieren\": \"graasdier\",\n  \"graast\": \"graast\",\n  \"graat\": \"grat\",\n  \"graauw\": \"graauw\",\n  \"graauwse\": \"graauw\",\n  \"grabbelde\": \"grabbeld\",\n  \"gracht\": \"gracht\",\n  \"gracieus\": \"gracieus\",\n  \"gracieuze\": \"gracieuz\",\n  \"gradatiën\": \"gradatien\",\n  \"gradaties\": \"gradaties\",\n  \"graden\": \"grad\",\n  \"gradiënten\": \"gradient\",\n  \"graedel\": \"graedel\",\n  \"graetheide\": \"graetheid\",\n  \"graf\": \"graf\",\n  \"grafbenadering\": \"grafbenader\",\n  \"grafiet\": \"grafiet\",\n  \"grafietkernreactoren\": \"grafietkernreactor\",\n  \"grafietreactoren\": \"grafietreactor\",\n  \"grafisch\": \"grafisch\",\n  \"grafische\": \"grafisch\",\n  \"grafpaleis\": \"grafpaleis\",\n  \"graham\": \"graham\",\n  \"gram\": \"gram\",\n  \"grand\": \"grand\",\n  \"grande\": \"grand\",\n  \"grandeur\": \"grandeur\",\n  \"grandioos\": \"grandioos\",\n  \"granen\": \"gran\",\n  \"graniet\": \"graniet\",\n  \"granuband\": \"granuband\",\n  \"granulaat\": \"granulat\",\n  \"granulair\": \"granulair\",\n  \"granulaten\": \"granulat\",\n  \"granulator\": \"granulator\",\n  \"grap\": \"grap\",\n  \"graphic\": \"graphic\",\n  \"grappen\": \"grapp\",\n  \"grappigjes\": \"grappigjes\",\n  \"gras\": \"gras\",\n  \"grasland\": \"grasland\",\n  \"graslandberegening\": \"graslandberegen\",\n  \"graslandgebruik\": \"graslandgebruik\",\n  \"grasmat\": \"grasmat\",\n  \"grassen\": \"grass\",\n  \"gratie\": \"gratie\",\n  \"gratis\": \"gratis\",\n  \"grätzel\": \"gratzel\",\n  \"gratzer\": \"gratzer\",\n  \"grauw\": \"grauw\",\n  \"grauwblauwe\": \"grauwblauw\",\n  \"grauwde\": \"grauwd\",\n  \"grauwden\": \"grauwd\",\n  \"grauwe\": \"grauw\",\n  \"grauwend\": \"grauwend\",\n  \"grauwende\": \"grauwend\",\n  \"grauwer\": \"grauwer\",\n  \"grauwheid\": \"grauwheid\",\n  \"grauwige\": \"grauwig\",\n  \"grauwigheden\": \"grauwig\",\n  \"grauwstil\": \"grauwstil\",\n  \"grauwte\": \"grauwt\",\n  \"grauwwitte\": \"grauwwit\",\n  \"graveland\": \"graveland\",\n  \"graven\": \"grav\",\n  \"gravenchon\": \"gravenchon\",\n  \"gravenhage\": \"gravenhag\",\n  \"gravenzande\": \"gravenzand\",\n  \"gravers\": \"graver\",\n  \"gravilectric\": \"gravilectric\",\n  \"gravuren\": \"gravur\",\n  \"gravures\": \"gravures\",\n  \"grazen\": \"graz\",\n  \"grazers\": \"grazer\",\n  \"greater\": \"greater\",\n  \"greatheide\": \"greatheid\",\n  \"grebbeberg\": \"grebbeberg\",\n  \"green\": \"gren\",\n  \"greencare\": \"greencar\",\n  \"greencareluier\": \"greencareluier\",\n  \"greenfield\": \"greenfield\",\n  \"greenfields\": \"greenfield\",\n  \"greenhouse\": \"greenhous\",\n  \"greenpeace\": \"greenpeac\",\n  \"greenpeaceschepen\": \"greenpeaceschep\",\n  \"greenpeacestaf\": \"greenpeacestaf\",\n  \"greentie\": \"greentie\",\n  \"greenville\": \"greenvill\",\n  \"greep\": \"grep\",\n  \"grein\": \"grein\",\n  \"greinig\": \"greinig\",\n  \"greintje\": \"greintj\",\n  \"grel\": \"grel\",\n  \"grelle\": \"grell\",\n  \"gremia\": \"gremia\",\n  \"grenadiers\": \"grenadier\",\n  \"grenen\": \"gren\",\n  \"grenoble\": \"grenobl\",\n  \"grens\": \"gren\",\n  \"grensgebied\": \"grensgebied\",\n  \"grenslagen\": \"grenslag\",\n  \"grensloop\": \"grenslop\",\n  \"grensmaas\": \"grensmas\",\n  \"grensmaasproject\": \"grensmaasproject\",\n  \"grensoverschrijdend\": \"grensoverschrijd\",\n  \"grensoverschrijdende\": \"grensoverschrijd\",\n  \"grensoverschrijdendheid\": \"grensoverschrijd\",\n  \"grensoverschrijding\": \"grensoverschrijd\",\n  \"grenst\": \"grenst\",\n  \"grensverleggend\": \"grensverlegg\",\n  \"grenswaarde\": \"grenswaard\",\n  \"grenswaarden\": \"grenswaard\",\n  \"grenzen\": \"grenz\",\n  \"grenzend\": \"grenzend\",\n  \"grenzende\": \"grenzend\",\n  \"grepen\": \"grep\",\n  \"greppels\": \"greppel\",\n  \"gres\": \"gres\",\n  \"gretig\": \"gretig\",\n  \"gretige\": \"gretig\",\n  \"grief\": \"grief\",\n  \"griefjes\": \"griefjes\",\n  \"grieg\": \"grieg\",\n  \"grieken\": \"griek\",\n  \"griekenland\": \"griekenland\",\n  \"grieks\": \"griek\",\n  \"griekse\": \"griek\",\n  \"grieven\": \"griev\",\n  \"griezelde\": \"griezeld\",\n  \"griezelig\": \"griezel\",\n  \"griezelige\": \"griezel\",\n  \"griffiekosten\": \"griffiekost\",\n  \"griffier\": \"griffier\",\n  \"grift\": \"grift\",\n  \"griftpark\": \"griftpark\",\n  \"grijns\": \"grijn\",\n  \"grijnsde\": \"grijnsd\",\n  \"grijnzen\": \"grijnz\",\n  \"grijnzende\": \"grijnzend\",\n  \"grijpen\": \"grijp\",\n  \"grijpend\": \"grijpend\",\n  \"grijpende\": \"grijpend\",\n  \"grijpreflex\": \"grijpreflex\",\n  \"grijpskerk\": \"grijpskerk\",\n  \"grijpt\": \"grijpt\",\n  \"grijs\": \"grijs\",\n  \"grijsaard\": \"grijsaard\",\n  \"grijsde\": \"grijsd\",\n  \"grijze\": \"grijz\",\n  \"grijzen\": \"grijz\",\n  \"grijzend\": \"grijzend\",\n  \"grijzer\": \"grijzer\",\n  \"gril\": \"gril\",\n  \"grilden\": \"grild\",\n  \"grillig\": \"grillig\",\n  \"grillige\": \"grillig\",\n  \"grilligheid\": \"grillig\",\n  \"grilligste\": \"grilligst\",\n  \"grimeert\": \"grimeert\",\n  \"grimeren\": \"grimer\",\n  \"grind\": \"grind\",\n  \"grinder\": \"grinder\",\n  \"grinders\": \"grinder\",\n  \"grindgat\": \"grindgat\",\n  \"grinding\": \"grinding\",\n  \"grindplas\": \"grindplas\",\n  \"grindproducenten\": \"grindproducent\",\n  \"grindvervanger\": \"grindvervanger\",\n  \"grindwinning\": \"grindwinn\",\n  \"grindwinningen\": \"grindwinn\",\n  \"gringo\": \"gringo\",\n  \"grinnik\": \"grinnik\",\n  \"grinniken\": \"grinnik\",\n  \"grinnikt\": \"grinnikt\",\n  \"grinnikte\": \"grinnikt\",\n  \"grinten\": \"grint\",\n  \"grintgat\": \"grintgat\",\n  \"grintpaden\": \"grintpad\",\n  \"grip\": \"grip\",\n  \"grit\": \"grit\",\n  \"grl\": \"grl\",\n  \"grodan\": \"grodan\",\n  \"groef\": \"groef\",\n  \"groefde\": \"groefd\",\n  \"groefden\": \"groefd\",\n  \"groei\": \"groei\",\n  \"groeibevorderaar\": \"groeibevorderar\",\n  \"groeibevorderend\": \"groeibevorder\",\n  \"groeicijfers\": \"groeicijfer\",\n  \"groeide\": \"groeid\",\n  \"groeiden\": \"groeid\",\n  \"groeien\": \"groei\",\n  \"groeiend\": \"groeiend\",\n  \"groeiende\": \"groeiend\",\n  \"groeihormonen\": \"groeihormon\",\n  \"groeiing\": \"groeiing\",\n  \"groeikansen\": \"groeikans\",\n  \"groeilanden\": \"groeiland\",\n  \"groeimarkt\": \"groeimarkt\",\n  \"groeimarkten\": \"groeimarkt\",\n  \"groeiperspectieven\": \"groeiperspectiev\",\n  \"groeiplannen\": \"groeiplann\",\n  \"groeipotentieel\": \"groeipotentieel\",\n  \"groeiproces\": \"groeiproces\",\n  \"groeiregulatie\": \"groeiregulatie\",\n  \"groeirendement\": \"groeirendement\",\n  \"groeiseizoen\": \"groeiseizoen\",\n  \"groeistoornissen\": \"groeistoorniss\",\n  \"groeistuipen\": \"groeistuip\",\n  \"groeit\": \"groeit\",\n  \"groeivooruitzichten\": \"groeivooruitzicht\",\n  \"groen\": \"groen\",\n  \"groenafval\": \"groenafval\",\n  \"groenbemester\": \"groenbemester\",\n  \"groenbemesters\": \"groenbemester\",\n  \"groenblijvende\": \"groenblijv\",\n  \"groencertificaat\": \"groencertificat\",\n  \"groencertificaten\": \"groencertificat\",\n  \"groene\": \"groen\",\n  \"groenelaan\": \"groenelan\",\n  \"groenen\": \"groen\",\n  \"groenfonds\": \"groenfond\",\n  \"groenfondsen\": \"groenfonds\",\n  \"groenfondsregeling\": \"groenfondsregel\",\n  \"groengebied\": \"groengebied\",\n  \"groengebieden\": \"groengebied\",\n  \"groenheid\": \"groenheid\",\n  \"groenlabelnorm\": \"groenlabelnorm\",\n  \"groenlabelstal\": \"groenlabelstal\",\n  \"groenlinks\": \"groenlink\",\n  \"groenlo\": \"groenlo\",\n  \"groenontwikkeling\": \"groenontwikkel\",\n  \"groenproject\": \"groenproject\",\n  \"groenprojecten\": \"groenproject\",\n  \"groenprojectenfonds\": \"groenprojectenfond\",\n  \"groenregeling\": \"groenregel\",\n  \"groenrente\": \"groenrent\",\n  \"groenstroken\": \"groenstrok\",\n  \"groenstrook\": \"groenstrok\",\n  \"groenstructuur\": \"groenstructur\",\n  \"groenstructuurplan\": \"groenstructuurplan\",\n  \"groente\": \"groent\",\n  \"groenteabonnementen\": \"groenteabonnement\",\n  \"groenteboeren\": \"groenteboer\",\n  \"groenteboerin\": \"groenteboerin\",\n  \"groenten\": \"groent\",\n  \"groentenburger\": \"groentenburger\",\n  \"groenteteelt\": \"groenteteelt\",\n  \"groentetelers\": \"groenteteler\",\n  \"groentjes\": \"groentjes\",\n  \"groenveld\": \"groenveld\",\n  \"groenverklaring\": \"groenverklar\",\n  \"groenvoerdrogerijen\": \"groenvoerdrogerij\",\n  \"groenvoorziening\": \"groenvoorzien\",\n  \"groenvoorzieningen\": \"groenvoorzien\",\n  \"groenvrijstelling\": \"groenvrijstell\",\n  \"groenzones\": \"groenzones\",\n  \"groep\": \"groep\",\n  \"groepen\": \"groep\",\n  \"groepering\": \"groeper\",\n  \"groeperingen\": \"groeper\",\n  \"groepje\": \"groepj\",\n  \"groepjes\": \"groepjes\",\n  \"groepsstallen\": \"groepsstall\",\n  \"groepsvermogen\": \"groepsvermog\",\n  \"groepte\": \"groept\",\n  \"groesbeek\": \"groesbek\",\n  \"groet\": \"groet\",\n  \"groeten\": \"groet\",\n  \"groetende\": \"groetend\",\n  \"groette\": \"groet\",\n  \"groetten\": \"groet\",\n  \"groeve\": \"groev\",\n  \"groeven\": \"groev\",\n  \"groezeligs\": \"groezel\",\n  \"grof\": \"grof\",\n  \"grofkeramische\": \"grofkeramisch\",\n  \"grofvuilverkleiner\": \"grofvuilverkleiner\",\n  \"grofvuilvermaler\": \"grofvuilvermaler\",\n  \"grofweg\": \"grofweg\",\n  \"grofwild\": \"grofwild\",\n  \"grog\": \"grog\",\n  \"grogje\": \"grogj\",\n  \"grogjes\": \"grogjes\",\n  \"grohe\": \"groh\",\n  \"grond\": \"grond\",\n  \"grondafvoer\": \"grondafvoer\",\n  \"grondbank\": \"grondbank\",\n  \"grondbehandelingscentrum\": \"grondbehandelingscentrum\",\n  \"grondbemonstering\": \"grondbemonster\",\n  \"grondbewerking\": \"grondbewerk\",\n  \"grondbezit\": \"grondbezit\",\n  \"grondbezitter\": \"grondbezitter\",\n  \"grondboringen\": \"grondbor\",\n  \"gronddeeltjes\": \"gronddeeltjes\",\n  \"gronde\": \"grond\",\n  \"grondeekhoorns\": \"grondeekhoorn\",\n  \"grondeigenaars\": \"grondeigenar\",\n  \"grondeigenaren\": \"grondeigenar\",\n  \"gronden\": \"grond\",\n  \"grondgebied\": \"grondgebied\",\n  \"grondgebonden\": \"grondgebond\",\n  \"grondgebruik\": \"grondgebruik\",\n  \"grondgebruiker\": \"grondgebruiker\",\n  \"grondgebruikers\": \"grondgebruiker\",\n  \"grondgebruiksfuncties\": \"grondgebruiksfuncties\",\n  \"grondig\": \"grondig\",\n  \"grondige\": \"grondig\",\n  \"grondkabels\": \"grondkabel\",\n  \"grondkosten\": \"grondkost\",\n  \"grondlaag\": \"grondlag\",\n  \"grondlagen\": \"grondlag\",\n  \"grondleggers\": \"grondlegger\",\n  \"grondmarkt\": \"grondmarkt\",\n  \"grondmechanica\": \"grondmechanica\",\n  \"grondmechanische\": \"grondmechanisch\",\n  \"grondmonsters\": \"grondmonster\",\n  \"grondolie\": \"grondolie\",\n  \"grondontsmetting\": \"grondontsmet\",\n  \"grondontsmettingsmiddel\": \"grondontsmettingsmiddel\",\n  \"grondontsmettingsmiddelen\": \"grondontsmettingsmiddel\",\n  \"grondprijzen\": \"grondprijz\",\n  \"grondradar\": \"grondradar\",\n  \"grondradarmethodiek\": \"grondradarmethodiek\",\n  \"grondreiniger\": \"grondreiniger\",\n  \"grondreiniging\": \"grondrein\",\n  \"grondreinigings\": \"grondrein\",\n  \"grondreinigingsbedrijven\": \"grondreinigingsbedrijv\",\n  \"grondreinigingsinstalatie\": \"grondreinigingsinstalatie\",\n  \"grondreinigingsinstallatie\": \"grondreinigingsinstallatie\",\n  \"grondsanering\": \"grondsaner\",\n  \"grondsaneringbedrijf\": \"grondsaneringbedrijf\",\n  \"grondsaneringsbedrijf\": \"grondsaneringsbedrijf\",\n  \"grondsaneringsmarkt\": \"grondsaneringsmarkt\",\n  \"grondslag\": \"grondslag\",\n  \"grondslagen\": \"grondslag\",\n  \"grondsoort\": \"grondsoort\",\n  \"grondsoorten\": \"grondsoort\",\n  \"grondspeculatie\": \"grondspeculatie\",\n  \"grondstof\": \"grondstof\",\n  \"grondstofarm\": \"grondstofarm\",\n  \"grondstoffen\": \"grondstoff\",\n  \"grondstoffenbank\": \"grondstoffenbank\",\n  \"grondstoffenbeheer\": \"grondstoffenbeher\",\n  \"grondstoffenbeleid\": \"grondstoffenbeleid\",\n  \"grondstoffenbesparing\": \"grondstoffenbespar\",\n  \"grondstoffengebruik\": \"grondstoffengebruik\",\n  \"grondstoffenmarkt\": \"grondstoffenmarkt\",\n  \"grondstoffenproducent\": \"grondstoffenproducent\",\n  \"grondstoffenvoorraad\": \"grondstoffenvoorrad\",\n  \"grondstofgebruik\": \"grondstofgebruik\",\n  \"grondstofkosten\": \"grondstofkost\",\n  \"grondstofprijzen\": \"grondstofprijz\",\n  \"grondstofproducent\": \"grondstofproducent\",\n  \"grondstofrecycling\": \"grondstofrecycl\",\n  \"grondstofzuiniger\": \"grondstofzuiniger\",\n  \"grondteelt\": \"grondteelt\",\n  \"grondtelers\": \"grondteler\",\n  \"grondtransacties\": \"grondtransacties\",\n  \"gronduitgiften\": \"gronduitgift\",\n  \"grondverbeteraar\": \"grondverbeterar\",\n  \"grondverbetering\": \"grondverbeter\",\n  \"grondverklaringen\": \"grondverklar\",\n  \"grondverschuivingen\": \"grondverschuiv\",\n  \"grondverwerving\": \"grondverwerv\",\n  \"grondverzet\": \"grondverzet\",\n  \"grondwasinstallatie\": \"grondwasinstallatie\",\n  \"grondwassen\": \"grondwass\",\n  \"grondwater\": \"grondwater\",\n  \"grondwateraanvulling\": \"grondwateraanvull\",\n  \"grondwaterbehandeling\": \"grondwaterbehandel\",\n  \"grondwaterbeheer\": \"grondwaterbeher\",\n  \"grondwaterbelasting\": \"grondwaterbelast\",\n  \"grondwaterbeleid\": \"grondwaterbeleid\",\n  \"grondwaterbescherming\": \"grondwaterbescherm\",\n  \"grondwaterbeschermingsgebied\": \"grondwaterbeschermingsgebied\",\n  \"grondwaterbeschermingsgebieden\": \"grondwaterbeschermingsgebied\",\n  \"grondwaterbesparing\": \"grondwaterbespar\",\n  \"grondwaterbronnen\": \"grondwaterbronn\",\n  \"grondwatercircuit\": \"grondwatercircuit\",\n  \"grondwaterdaling\": \"grondwaterdal\",\n  \"grondwaterdecreet\": \"grondwaterdecret\",\n  \"grondwatergebruik\": \"grondwatergebruik\",\n  \"grondwaterhuishouding\": \"grondwaterhuishoud\",\n  \"grondwaterkwaliteit\": \"grondwaterkwaliteit\",\n  \"grondwatermeetnet\": \"grondwatermeetnet\",\n  \"grondwatermeting\": \"grondwatermet\",\n  \"grondwatermodel\": \"grondwatermodel\",\n  \"grondwatermodellen\": \"grondwatermodell\",\n  \"grondwatermonster\": \"grondwatermonster\",\n  \"grondwateronderzoek\": \"grondwateronderzoek\",\n  \"grondwateronttrekking\": \"grondwateronttrek\",\n  \"grondwaterpeil\": \"grondwaterpeil\",\n  \"grondwaterputten\": \"grondwaterput\",\n  \"grondwatersanering\": \"grondwatersaner\",\n  \"grondwaterspiegel\": \"grondwaterspiegel\",\n  \"grondwaterstand\": \"grondwaterstand\",\n  \"grondwaterstanden\": \"grondwaterstand\",\n  \"grondwaterstromen\": \"grondwaterstrom\",\n  \"grondwaterstroming\": \"grondwaterstrom\",\n  \"grondwaterverbruik\": \"grondwaterverbruik\",\n  \"grondwaterverontreiniging\": \"grondwaterverontrein\",\n  \"grondwatervoorraad\": \"grondwatervoorrad\",\n  \"grondwaterwinning\": \"grondwaterwinn\",\n  \"grondwaterwinningen\": \"grondwaterwinn\",\n  \"grondwaterzuivering\": \"grondwaterzuiver\",\n  \"grondwaterzuiveringsinstallaties\": \"grondwaterzuiveringsinstallaties\",\n  \"grondwet\": \"grondwet\",\n  \"grondwinning\": \"grondwinn\",\n  \"groningen\": \"groning\",\n  \"groninger\": \"groninger\",\n  \"gronings\": \"groning\",\n  \"groningse\": \"groning\",\n  \"grontmij\": \"grontmij\",\n  \"groot\": \"grot\",\n  \"gróot\": \"grot\",\n  \"groót\": \"grot\",\n  \"gróót\": \"grot\",\n  \"grootaandeelhouder\": \"grootaandeelhouder\",\n  \"grootafnemers\": \"grootafnemer\",\n  \"grootbedrijf\": \"grootbedrijf\",\n  \"groote\": \"grot\",\n  \"grootformaat\": \"grootformat\",\n  \"grootgebruikers\": \"grootgebruiker\",\n  \"grootgruttersketen\": \"grootgruttersket\",\n  \"groothandel\": \"groothandel\",\n  \"groothandelsondernemingen\": \"groothandelsondernem\",\n  \"grootharige\": \"groothar\",\n  \"grootheden\": \"grootheid\",\n  \"grootheid\": \"grootheid\",\n  \"groothuizen\": \"groothuiz\",\n  \"grootkeukens\": \"grootkeuken\",\n  \"grootkleurige\": \"grootkleur\",\n  \"grootma\": \"grootma\",\n  \"grootmachten\": \"grootmacht\",\n  \"grootmama\": \"grootmama\",\n  \"grootmarna\": \"grootmarna\",\n  \"grootmeesteres\": \"grootmeesteres\",\n  \"gròotmeesteres\": \"gròotmeesteres\",\n  \"grootmoeder\": \"grootmoeder\",\n  \"grootouders\": \"grootouder\",\n  \"grootpapa\": \"grootpapa\",\n  \"groots\": \"grot\",\n  \"grootschalig\": \"grootschal\",\n  \"grootschalige\": \"grootschal\",\n  \"grootschaligheid\": \"grootschal\",\n  \"grootscheepse\": \"grootschep\",\n  \"grootse\": \"grot\",\n  \"grootser\": \"grootser\",\n  \"grootsheden\": \"grootsheid\",\n  \"grootst\": \"grootst\",\n  \"grootste\": \"grootst\",\n  \"grootstedelijke\": \"grootsted\",\n  \"grootsteedse\": \"grootsted\",\n  \"grootte\": \"grot\",\n  \"grootvader\": \"grootvader\",\n  \"grootvee\": \"grootvee\",\n  \"grootveld\": \"grootveld\",\n  \"grootverbruiker\": \"grootverbruiker\",\n  \"grootverbruikers\": \"grootverbruiker\",\n  \"grootverbruikerscontract\": \"grootverbruikerscontract\",\n  \"grootwinkelbedrijven\": \"grootwinkelbedrijv\",\n  \"gros\": \"gros\",\n  \"gross\": \"gros\",\n  \"grote\": \"grot\",\n  \"gróte\": \"grot\",\n  \"grotendeels\": \"grotendel\",\n  \"groter\": \"groter\",\n  \"grotere\": \"groter\",\n  \"groun\": \"groun\",\n  \"ground\": \"ground\",\n  \"group\": \"group\",\n  \"groups\": \"group\",\n  \"groutsoorten\": \"groutsoort\",\n  \"grove\": \"grov\",\n  \"grp\": \"grp\",\n  \"gruis\": \"gruis\",\n  \"gruisafval\": \"gruisafval\",\n  \"gruizelend\": \"gruizel\",\n  \"gruizelregen\": \"gruizelreg\",\n  \"grumbly\": \"grumbly\",\n  \"grundfos\": \"grundfos\",\n  \"grüne\": \"grun\",\n  \"grünen\": \"grun\",\n  \"gruppe\": \"grupp\",\n  \"gruwel\": \"gruwel\",\n  \"gruwelijke\": \"gruwelijk\",\n  \"gruwelijkheid\": \"gruwelijk\",\n  \"gruyère\": \"gruyèr\",\n  \"gs\": \"gs\",\n  \"gt\": \"gt\",\n  \"gti\": \"gti\",\n  \"guard\": \"guard\",\n  \"guardian\": \"guardian\",\n  \"gudde\": \"gud\",\n  \"guet\": \"guet\",\n  \"guide\": \"guid\",\n  \"guido\": \"guido\",\n  \"guinea\": \"guinea\",\n  \"guinness\": \"guinnes\",\n  \"guitigheid\": \"guitig\",\n  \"guizhou\": \"guizhou\",\n  \"gujarat\": \"gujarat\",\n  \"gul\": \"gul\",\n  \"guldemond\": \"guldemond\",\n  \"gulden\": \"guld\",\n  \"guldens\": \"gulden\",\n  \"guldensbazar\": \"guldensbazar\",\n  \"guldensleningen\": \"guldenslen\",\n  \"gulf\": \"gulf\",\n  \"gullfiber\": \"gullfiber\",\n  \"gulzige\": \"gulzig\",\n  \"gummer\": \"gummer\",\n  \"gun\": \"gun\",\n  \"gunde\": \"gund\",\n  \"gunden\": \"gund\",\n  \"gunnerman\": \"gunnerman\",\n  \"gunst\": \"gunst\",\n  \"gunste\": \"gunst\",\n  \"gunsten\": \"gunst\",\n  \"gunster\": \"gunster\",\n  \"gunstig\": \"gunstig\",\n  \"gunstige\": \"gunstig\",\n  \"gunstiger\": \"gunstiger\",\n  \"gunstigere\": \"gunstiger\",\n  \"gunstigste\": \"gunstigst\",\n  \"gunstjes\": \"gunstjes\",\n  \"gunt\": \"gunt\",\n  \"günther\": \"gunther\",\n  \"gurp\": \"gurp\",\n  \"gutzeit\": \"gutzeit\",\n  \"guy\": \"guy\",\n  \"gve\": \"gve\",\n  \"gvm\": \"gvm\",\n  \"gwh\": \"gwh\",\n  \"gww\": \"gww\",\n  \"gx\": \"gx\",\n  \"gymnasiast\": \"gymnasiast\",\n  \"gymnasiastje\": \"gymnasiastj\",\n  \"gymnasium\": \"gymnasium\",\n  \"gymnasiumtijd\": \"gymnasiumtijd\",\n  \"gymnastiek\": \"gymnastiek\",\n  \"gymzalen\": \"gymzal\",\n  \"gyropower\": \"gyropower\",\n  \"gyroscoop\": \"gyroscop\",\n  \"gyvlon\": \"gyvlon\",\n  \"gzo\": \"gzo\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"haag\": \"hag\",\n  \"haaglanden\": \"haagland\",\n  \"haags\": \"hag\",\n  \"haagse\": \"hag\",\n  \"haagsheid\": \"haagsheid\",\n  \"haai\": \"haai\",\n  \"haaie\": \"haai\",\n  \"haaien\": \"haai\",\n  \"haakarm\": \"haakarm\",\n  \"haakarminstallatie\": \"haakarminstallatie\",\n  \"haakjes\": \"haakjes\",\n  \"haaks\": \"hak\",\n  \"haakten\": \"haakt\",\n  \"haakverbinding\": \"haakverbind\",\n  \"haakwerk\": \"haakwerk\",\n  \"haal\": \"hal\",\n  \"haalbaar\": \"haalbar\",\n  \"haalbaarheid\": \"haalbar\",\n  \"haalbaarheids\": \"haalbar\",\n  \"haalbaarheidsonderzoek\": \"haalbaarheidsonderzoek\",\n  \"haalbaarheidsonderzoeken\": \"haalbaarheidsonderzoek\",\n  \"haalbaarheidsprojecten\": \"haalbaarheidsproject\",\n  \"haalbaarheidsstudie\": \"haalbaarheidsstudie\",\n  \"haalbaarheidsstudies\": \"haalbaarheidsstudies\",\n  \"haalbare\": \"haalbar\",\n  \"haalde\": \"haald\",\n  \"haalden\": \"haald\",\n  \"haalsysteem\": \"haalsystem\",\n  \"haalsystemen\": \"haalsystem\",\n  \"haalt\": \"haalt\",\n  \"haantje\": \"haantj\",\n  \"haar\": \"har\",\n  \"háar\": \"har\",\n  \"haard\": \"haard\",\n  \"haardvuur\": \"haardvur\",\n  \"haarlem\": \"haarlem\",\n  \"haarlemmerhout\": \"haarlemmerhout\",\n  \"haarlemmermeer\": \"haarlemmermer\",\n  \"haarlemmermeerpolder\": \"haarlemmermeerpolder\",\n  \"haarlemse\": \"haarlem\",\n  \"haars\": \"har\",\n  \"haartjes\": \"haartjes\",\n  \"haarzelf\": \"haarzelf\",\n  \"háarzelf\": \"haarzelf\",\n  \"haarzuilens\": \"haarzuilen\",\n  \"haas\": \"has\",\n  \"haast\": \"haast\",\n  \"haasten\": \"haast\",\n  \"haastig\": \"haastig\",\n  \"haastige\": \"haastig\",\n  \"haastiger\": \"haastiger\",\n  \"haastigheid\": \"haastig\",\n  \"haastte\": \"haast\",\n  \"haastten\": \"haast\",\n  \"haat\": \"hat\",\n  \"haatdragend\": \"haatdrag\",\n  \"haatte\": \"hat\",\n  \"haatten\": \"hat\",\n  \"haazen\": \"haz\",\n  \"habitat\": \"habitat\",\n  \"habitats\": \"habitat\",\n  \"hacros\": \"hacros\",\n  \"had\": \"had\",\n  \"hadden\": \"had\",\n  \"haden\": \"had\",\n  \"haen\": \"haen\",\n  \"hagedis\": \"hagedis\",\n  \"hagedissen\": \"hagediss\",\n  \"hagelden\": \"hageld\",\n  \"hagenaars\": \"hagenar\",\n  \"hagoort\": \"hagoort\",\n  \"hague\": \"hague\",\n  \"haier\": \"haier\",\n  \"haifa\": \"haifa\",\n  \"hailsham\": \"hailsham\",\n  \"haitjema\": \"haitjema\",\n  \"haken\": \"hak\",\n  \"hakende\": \"hakend\",\n  \"hakensysteem\": \"hakensystem\",\n  \"hakhout\": \"hakhout\",\n  \"hakkelend\": \"hakkel\",\n  \"hakken\": \"hak\",\n  \"hakkerig\": \"hakker\",\n  \"hakkerigs\": \"hakker\",\n  \"hakt\": \"hakt\",\n  \"hal\": \"hal\",\n  \"halen\": \"hal\",\n  \"half\": \"half\",\n  \"halffabrikaat\": \"halffabrikat\",\n  \"halffabrikaten\": \"halffabrikat\",\n  \"halfgehalogeneerde\": \"halfgehalogeneerd\",\n  \"halfgeleidende\": \"halfgeleid\",\n  \"halfgeleider\": \"halfgeleider\",\n  \"halfheid\": \"halfheid\",\n  \"halfjaar\": \"halfjar\",\n  \"halfjaarlijks\": \"halfjar\",\n  \"halfjaarlÿkse\": \"halfjaarlÿk\",\n  \"halfjaarresultaat\": \"halfjaarresultat\",\n  \"halflast\": \"halflast\",\n  \"halflicht\": \"halflicht\",\n  \"halfprodukten\": \"halfprodukt\",\n  \"halfrond\": \"halfrond\",\n  \"halftinten\": \"halftint\",\n  \"halfwaarde\": \"halfwaard\",\n  \"halfwaardetijd\": \"halfwaardetijd\",\n  \"halfweg\": \"halfweg\",\n  \"halfzuster\": \"halfzuster\",\n  \"halfzwaar\": \"halfzwar\",\n  \"haliaeëtus\": \"haliaeetus\",\n  \"hall\": \"hall\",\n  \"haller\": \"haller\",\n  \"hallucinatie\": \"hallucinatie\",\n  \"hallucinaties\": \"hallucinaties\",\n  \"hallum\": \"hallum\",\n  \"halo\": \"halo\",\n  \"halonen\": \"halon\",\n  \"hals\": \"hal\",\n  \"halsstarrig\": \"halsstarr\",\n  \"halsstarrige\": \"halsstarr\",\n  \"halsteren\": \"halster\",\n  \"halszaak\": \"halszak\",\n  \"halt\": \"halt\",\n  \"halte\": \"halt\",\n  \"halters\": \"halter\",\n  \"halve\": \"halv\",\n  \"halveert\": \"halveert\",\n  \"halveren\": \"halver\",\n  \"halvering\": \"halver\",\n  \"halverwege\": \"halverweg\",\n  \"halzen\": \"halz\",\n  \"ham\": \"ham\",\n  \"hamans\": \"haman\",\n  \"hamburg\": \"hamburg\",\n  \"hamelen\": \"hamel\",\n  \"hameren\": \"hamer\",\n  \"hamert\": \"hamert\",\n  \"hammel\": \"hammel\",\n  \"hamsters\": \"hamster\",\n  \"han\": \"han\",\n  \"hand\": \"hand\",\n  \"handbelading\": \"handbelad\",\n  \"handbereik\": \"handbereik\",\n  \"handbeweging\": \"handbeweg\",\n  \"handboek\": \"handboek\",\n  \"handboeken\": \"handboek\",\n  \"handdoek\": \"handdoek\",\n  \"handdruk\": \"handdruk\",\n  \"handdrukje\": \"handdrukj\",\n  \"handel\": \"handel\",\n  \"handelaar\": \"handelar\",\n  \"handelaars\": \"handelar\",\n  \"handelaren\": \"handelar\",\n  \"handelde\": \"handeld\",\n  \"handelden\": \"handeld\",\n  \"handelen\": \"handel\",\n  \"handelende\": \"handel\",\n  \"handeling\": \"handel\",\n  \"handelingen\": \"handel\",\n  \"handelingsadviezen\": \"handelingsadviez\",\n  \"handels\": \"handel\",\n  \"handelsagent\": \"handelsagent\",\n  \"handelsbalans\": \"handelsbalan\",\n  \"handelsban\": \"handelsban\",\n  \"handelsbelemmeringen\": \"handelsbelemmer\",\n  \"handelsbetrekkingen\": \"handelsbetrek\",\n  \"handelsbeurs\": \"handelsbeur\",\n  \"handelsblatt\": \"handelsblatt\",\n  \"handelsboycot\": \"handelsboycot\",\n  \"handelsbureau\": \"handelsbureau\",\n  \"handelsconcurrent\": \"handelsconcurrent\",\n  \"handelsconflicten\": \"handelsconflict\",\n  \"handelscontracten\": \"handelscontract\",\n  \"handelskade\": \"handelskad\",\n  \"handelskennisgeving\": \"handelskennisgev\",\n  \"handelslui\": \"handelslui\",\n  \"handelsmaatschappij\": \"handelsmaatschappij\",\n  \"handelsmechanismen\": \"handelsmechanism\",\n  \"handelsmissie\": \"handelsmissie\",\n  \"handelsnaam\": \"handelsnam\",\n  \"handelsonderneming\": \"handelsondernem\",\n  \"handelsondernemingen\": \"handelsondernem\",\n  \"handelsorganisatie\": \"handelsorganisatie\",\n  \"handelspartner\": \"handelspartner\",\n  \"handelspartners\": \"handelspartner\",\n  \"handelspoot\": \"handelspot\",\n  \"handelssancties\": \"handelssancties\",\n  \"handelsschool\": \"handelsschol\",\n  \"handelsverbod\": \"handelsverbod\",\n  \"handelsverhoudingen\": \"handelsverhoud\",\n  \"handelsverkeer\": \"handelsverker\",\n  \"handelswijze\": \"handelswijz\",\n  \"handelt\": \"handelt\",\n  \"handelwijze\": \"handelwijz\",\n  \"handen\": \"hand\",\n  \"handenarbeid\": \"handenarbeid\",\n  \"handgemeen\": \"handgemen\",\n  \"handhaafbaar\": \"handhaf\",\n  \"handhaafbaarheid\": \"handhaf\",\n  \"handhaafbare\": \"handhaf\",\n  \"handhaaft\": \"handhaaft\",\n  \"handhaven\": \"handhav\",\n  \"handhavende\": \"handhav\",\n  \"handhaver\": \"handhaver\",\n  \"handhavers\": \"handhaver\",\n  \"handhaving\": \"handhav\",\n  \"handhavings\": \"handhav\",\n  \"handhavingsactie\": \"handhavingsactie\",\n  \"handhavingsactiviteiten\": \"handhavingsactiviteit\",\n  \"handhavingsbeleid\": \"handhavingsbeleid\",\n  \"handhavingsbundel\": \"handhavingsbundel\",\n  \"handhavingscultuur\": \"handhavingscultur\",\n  \"handhavingsmaatregelen\": \"handhavingsmaatregel\",\n  \"handhavingsorganisatie\": \"handhavingsorganisatie\",\n  \"handhavingsoverleg\": \"handhavingsoverleg\",\n  \"handhavingsprogramma\": \"handhavingsprogramma\",\n  \"handhavingsproject\": \"handhavingsproject\",\n  \"handhavingsstructuur\": \"handhavingsstructur\",\n  \"handhavingstaak\": \"handhavingstak\",\n  \"handhavingstaken\": \"handhavingstak\",\n  \"handhavingsvormen\": \"handhavingsvorm\",\n  \"handig\": \"handig\",\n  \"handigheid\": \"handig\",\n  \"handje\": \"handj\",\n  \"handjes\": \"handjes\",\n  \"handkoffer\": \"handkoffer\",\n  \"handleiding\": \"handleid\",\n  \"handleidingen\": \"handleid\",\n  \"handling\": \"handling\",\n  \"handlingzones\": \"handlingzones\",\n  \"handmatige\": \"handmat\",\n  \"handomdraai\": \"handomdraai\",\n  \"handreiking\": \"handreik\",\n  \"handreikingen\": \"handreik\",\n  \"handschoen\": \"handschoen\",\n  \"handschoenen\": \"handschoen\",\n  \"handslag\": \"handslag\",\n  \"handtekening\": \"handteken\",\n  \"handtekeningen\": \"handteken\",\n  \"handtekeningenactie\": \"handtekeningenactie\",\n  \"handvat\": \"handvat\",\n  \"handvest\": \"handvest\",\n  \"handvol\": \"handvol\",\n  \"handwerk\": \"handwerk\",\n  \"handwerken\": \"handwerk\",\n  \"handwerkjes\": \"handwerkjes\",\n  \"handwerkten\": \"handwerkt\",\n  \"hanekamp\": \"hanekamp\",\n  \"hanemaaijer\": \"hanemaaijer\",\n  \"hang\": \"hang\",\n  \"hangar\": \"hangar\",\n  \"hangen\": \"hang\",\n  \"hangend\": \"hangend\",\n  \"hangende\": \"hangend\",\n  \"hangingen\": \"hanging\",\n  \"hanglamp\": \"hanglamp\",\n  \"hangpu\": \"hangpu\",\n  \"hangslot\": \"hangslot\",\n  \"hangt\": \"hangt\",\n  \"haniel\": \"haniel\",\n  \"hannover\": \"hannover\",\n  \"hanoi\": \"hanoi\",\n  \"hans\": \"han\",\n  \"hanteerbaar\": \"hanter\",\n  \"hanteerbaarheid\": \"hanter\",\n  \"hanteerde\": \"hanteerd\",\n  \"hanteert\": \"hanteert\",\n  \"hanteren\": \"hanter\",\n  \"hantering\": \"hanter\",\n  \"hanze\": \"hanz\",\n  \"hanzemilieu\": \"hanzemilieu\",\n  \"hao\": \"hao\",\n  \"hap\": \"hap\",\n  \"haperen\": \"haper\",\n  \"hapje\": \"hapj\",\n  \"hapjes\": \"hapjes\",\n  \"hapte\": \"hapt\",\n  \"harare\": \"harar\",\n  \"harbor\": \"harbor\",\n  \"harbour\": \"harbour\",\n  \"harburg\": \"harburg\",\n  \"harceringen\": \"harcer\",\n  \"hard\": \"hard\",\n  \"hardblauwe\": \"hardblauw\",\n  \"harde\": \"hard\",\n  \"harden\": \"hard\",\n  \"hardenberg\": \"hardenberg\",\n  \"harder\": \"harder\",\n  \"harderbroek\": \"harderbroek\",\n  \"hardere\": \"harder\",\n  \"harderwijk\": \"harderwijk\",\n  \"hardfruit\": \"hardfruit\",\n  \"hardheid\": \"hardheid\",\n  \"hardhorig\": \"hardhor\",\n  \"hardhorige\": \"hardhor\",\n  \"hardhout\": \"hardhout\",\n  \"hardinxveld\": \"hardinxveld\",\n  \"hardklinkende\": \"hardklink\",\n  \"hardmaking\": \"hardmak\",\n  \"hardnekkig\": \"hardnekk\",\n  \"hardnekkige\": \"hardnekk\",\n  \"hardnekkigheid\": \"hardnekk\",\n  \"hardop\": \"hardop\",\n  \"hards\": \"hard\",\n  \"hardsolderen\": \"hardsolder\",\n  \"hardst\": \"hardst\",\n  \"hardvlezig\": \"hardvlez\",\n  \"hare\": \"har\",\n  \"haren\": \"har\",\n  \"harer\": \"harer\",\n  \"harige\": \"harig\",\n  \"haring\": \"haring\",\n  \"haringvangsten\": \"haringvangst\",\n  \"haringvliet\": \"haringvliet\",\n  \"harlingen\": \"harling\",\n  \"harlow\": \"harlow\",\n  \"harm\": \"harm\",\n  \"harmelen\": \"harmel\",\n  \"harmelerwaard\": \"harmelerwaard\",\n  \"harmonie\": \"harmonie\",\n  \"harmonieerden\": \"harmonieerd\",\n  \"harmoniëren\": \"harmonier\",\n  \"harmonieuze\": \"harmonieuz\",\n  \"harmonisatie\": \"harmonisatie\",\n  \"harmonisch\": \"harmonisch\",\n  \"harmonische\": \"harmonisch\",\n  \"harmoniseren\": \"harmoniser\",\n  \"harmonisering\": \"harmoniser\",\n  \"harnas\": \"harnas\",\n  \"harrie\": \"harrie\",\n  \"harris\": \"harris\",\n  \"harry\": \"harry\",\n  \"hars\": \"har\",\n  \"harsachtige\": \"harsacht\",\n  \"harsen\": \"hars\",\n  \"harskolommen\": \"harskolomm\",\n  \"harsslurry\": \"harsslurry\",\n  \"hart\": \"hart\",\n  \"harte\": \"hart\",\n  \"hartelijk\": \"hartelijk\",\n  \"hartelijke\": \"hartelijk\",\n  \"hartelijker\": \"hartelijker\",\n  \"hartelijkheid\": \"hartelijk\",\n  \"hartelijks\": \"hartelijk\",\n  \"harten\": \"hart\",\n  \"hartje\": \"hartj\",\n  \"hartklopping\": \"hartklopp\",\n  \"hartmann\": \"hartmann\",\n  \"hartstikke\": \"hartstik\",\n  \"hartstocht\": \"hartstocht\",\n  \"hartstochtelijk\": \"hartstocht\",\n  \"hartstochten\": \"hartstocht\",\n  \"harzburg\": \"harzburg\",\n  \"has\": \"has\",\n  \"hashimoto\": \"hashimoto\",\n  \"haskoning\": \"haskon\",\n  \"haspelde\": \"haspeld\",\n  \"hasselt\": \"hasselt\",\n  \"hat\": \"hat\",\n  \"hatelijk\": \"hatelijk\",\n  \"hatelijke\": \"hatelijk\",\n  \"hatelijkheden\": \"hatelijk\",\n  \"hatelijkheid\": \"hatelijk\",\n  \"haten\": \"hat\",\n  \"hatende\": \"hatend\",\n  \"haule\": \"haul\",\n  \"hausgeräte\": \"hausgerat\",\n  \"haut\": \"haut\",\n  \"have\": \"hav\",\n  \"havelaar\": \"havelar\",\n  \"havelaarprodukten\": \"havelaarprodukt\",\n  \"haven\": \"hav\",\n  \"havenbedrijf\": \"havenbedrijf\",\n  \"havenbedrijven\": \"havenbedrijv\",\n  \"havendienst\": \"havendienst\",\n  \"havenfaciliteiten\": \"havenfaciliteit\",\n  \"havengebied\": \"havengebied\",\n  \"havenhoofden\": \"havenhoofd\",\n  \"havenmond\": \"havenmond\",\n  \"havenontvangstinstallaties\": \"havenontvangstinstallaties\",\n  \"havens\": \"haven\",\n  \"havenschap\": \"havenschap\",\n  \"havenslib\": \"havenslib\",\n  \"havenspoorlijn\": \"havenspoorlijn\",\n  \"havenstad\": \"havenstad\",\n  \"havenwater\": \"havenwater\",\n  \"havenweg\": \"havenweg\",\n  \"havenwegtracé\": \"havenwegtrac\",\n  \"havenwethouder\": \"havenwethouder\",\n  \"haver\": \"haver\",\n  \"haverklap\": \"haverklap\",\n  \"havermeel\": \"havermel\",\n  \"havik\": \"havik\",\n  \"havre\": \"havr\",\n  \"hawaï\": \"hawai\",\n  \"hazard\": \"hazard\",\n  \"hazardous\": \"hazardous\",\n  \"hazards\": \"hazard\",\n  \"hazelaar\": \"hazelar\",\n  \"hazeldonk\": \"hazeldonk\",\n  \"hazemag\": \"hazemag\",\n  \"hazerswoude\": \"hazerswoud\",\n  \"hbc\": \"hbc\",\n  \"hbfk\": \"hbfk\",\n  \"hbg\": \"hbg\",\n  \"hbm\": \"hbm\",\n  \"hbo\": \"hbo\",\n  \"hc\": \"hc\",\n  \"hcb\": \"hcb\",\n  \"hcfk\": \"hcfk\",\n  \"hch\": \"hch\",\n  \"hcl\": \"hcl\",\n  \"hcn\": \"hcn\",\n  \"hdpe\": \"hdpe\",\n  \"hdr\": \"hdr\",\n  \"he\": \"he\",\n  \"hé\": \"he\",\n  \"hè\": \"hè\",\n  \"head\": \"head\",\n  \"health\": \"health\",\n  \"heat\": \"heat\",\n  \"heathrow\": \"heathrow\",\n  \"heating\": \"heating\",\n  \"heavy\": \"heavy\",\n  \"heb\": \"heb\",\n  \"hèb\": \"hèb\",\n  \"hebben\": \"hebb\",\n  \"hèbben\": \"hèbb\",\n  \"hebbende\": \"hebbend\",\n  \"hebhen\": \"hebh\",\n  \"hebreeuws\": \"hebreeuw\",\n  \"hebt\": \"hebt\",\n  \"hebzucht\": \"hebzucht\",\n  \"hecht\": \"hecht\",\n  \"hechten\": \"hecht\",\n  \"hechtenis\": \"hechtenis\",\n  \"hechting\": \"hechting\",\n  \"hechtingsverbeteraars\": \"hechtingsverbeterar\",\n  \"hechtmiddelen\": \"hechtmiddel\",\n  \"hechtte\": \"hecht\",\n  \"hectare\": \"hectar\",\n  \"hectaren\": \"hectar\",\n  \"hectares\": \"hectares\",\n  \"hectoliter\": \"hectoliter\",\n  \"hectoliters\": \"hectoliter\",\n  \"hedel\": \"hedel\",\n  \"heden\": \"heden\",\n  \"hedendaagse\": \"hedendag\",\n  \"hedonische\": \"hedonisch\",\n  \"hedrix\": \"hedrix\",\n  \"hedwigepolder\": \"hedwigepolder\",\n  \"heeft\": \"heeft\",\n  \"heel\": \"hel\",\n  \"héel\": \"hel\",\n  \"hèel\": \"hèel\",\n  \"heél\": \"hel\",\n  \"heèl\": \"heèl\",\n  \"heelal\": \"heelal\",\n  \"heemkundigen\": \"heemkund\",\n  \"heemraadschap\": \"heemraadschap\",\n  \"heemstede\": \"heemsted\",\n  \"heen\": \"hen\",\n  \"heendringen\": \"heendring\",\n  \"heengaan\": \"heengan\",\n  \"heengaande\": \"heengaand\",\n  \"heengegaan\": \"heengegan\",\n  \"heengegleden\": \"heengegled\",\n  \"heengevlogen\": \"heengevlog\",\n  \"heenslaan\": \"heenslan\",\n  \"heenstappen\": \"heenstapp\",\n  \"heentuurt\": \"heentuurt\",\n  \"heenvliet\": \"heenvliet\",\n  \"heer\": \"her\",\n  \"heerde\": \"heerd\",\n  \"heerema\": \"heerema\",\n  \"heerenveen\": \"heerenven\",\n  \"heerenveens\": \"heerenven\",\n  \"heerhugowaard\": \"heerhugowaard\",\n  \"heerlen\": \"heerl\",\n  \"heerlense\": \"heerlen\",\n  \"heerlijk\": \"heerlijk\",\n  \"heerlijke\": \"heerlijk\",\n  \"heerlijker\": \"heerlijker\",\n  \"heerlijkheden\": \"heerlijk\",\n  \"heerlijkheid\": \"heerlijk\",\n  \"heerlijks\": \"heerlijk\",\n  \"heerlijkste\": \"heerlijkst\",\n  \"heerma\": \"heerma\",\n  \"heerschappij\": \"heerschappij\",\n  \"heersen\": \"heers\",\n  \"heersende\": \"heersend\",\n  \"heerser\": \"heerser\",\n  \"heerst\": \"heerst\",\n  \"heerste\": \"heerst\",\n  \"heersziek\": \"heersziek\",\n  \"heertje\": \"heertj\",\n  \"hees\": \"hes\",\n  \"heesters\": \"heester\",\n  \"heet\": \"het\",\n  \"heetmanplein\": \"heetmanplein\",\n  \"heette\": \"het\",\n  \"heetwatercassette\": \"heetwatercasset\",\n  \"hef\": \"hef\",\n  \"heffen\": \"heff\",\n  \"heffing\": \"heffing\",\n  \"heffingen\": \"heffing\",\n  \"heffingensysteem\": \"heffingensystem\",\n  \"heffingsaanslag\": \"heffingsaanslag\",\n  \"heffingsbedrag\": \"heffingsbedrag\",\n  \"heffingsgrondslag\": \"heffingsgrondslag\",\n  \"heffingsplichtigen\": \"heffingsplicht\",\n  \"heffingstarief\": \"heffingstarief\",\n  \"heffingsvrije\": \"heffingsvrij\",\n  \"heffingvrije\": \"heffingvrij\",\n  \"hefinstallatie\": \"hefinstallatie\",\n  \"heft\": \"heft\",\n  \"heftig\": \"heftig\",\n  \"heftige\": \"heftig\",\n  \"heftiger\": \"heftiger\",\n  \"heftrucks\": \"heftruck\",\n  \"hegemann\": \"hegemann\",\n  \"hei\": \"hei\",\n  \"heide\": \"heid\",\n  \"heidebrand\": \"heidebrand\",\n  \"heidekimme\": \"heidekimm\",\n  \"heidekimmen\": \"heidekimm\",\n  \"heidelberg\": \"heidelberg\",\n  \"heidemaatschappij\": \"heidemaatschappij\",\n  \"heidemij\": \"heidemij\",\n  \"heiden\": \"heid\",\n  \"heidevelden\": \"heideveld\",\n  \"heidevennen\": \"heidevenn\",\n  \"heijkoop\": \"heijkop\",\n  \"heijmans\": \"heijman\",\n  \"heijn\": \"heijn\",\n  \"heijplaat\": \"heijplat\",\n  \"heijsman\": \"heijsman\",\n  \"heijvam\": \"heijvam\",\n  \"heil\": \"heil\",\n  \"heilbot\": \"heilbot\",\n  \"heilig\": \"heilig\",\n  \"heilige\": \"heilig\",\n  \"heiligenberg\": \"heiligenberg\",\n  \"heilijgers\": \"heilijger\",\n  \"heiloo\": \"heiloo\",\n  \"heilzaam\": \"heilzam\",\n  \"heimelijk\": \"heimelijk\",\n  \"heimelijke\": \"heimelijk\",\n  \"heimutsvullingen\": \"heimutsvull\",\n  \"heimwee\": \"heimwee\",\n  \"hein\": \"hein\",\n  \"heineken\": \"heinek\",\n  \"heinenoordtunnel\": \"heinenoordtunnel\",\n  \"heino\": \"heino\",\n  \"heipalen\": \"heipal\",\n  \"hek\": \"hek\",\n  \"hekelen\": \"hekel\",\n  \"hekelt\": \"hekelt\",\n  \"hel\": \"hel\",\n  \"helaas\": \"helas\",\n  \"helang\": \"helang\",\n  \"held\": \"held\",\n  \"helde\": \"held\",\n  \"helden\": \"held\",\n  \"helder\": \"helder\",\n  \"helderde\": \"helderd\",\n  \"helderder\": \"helderder\",\n  \"heldere\": \"helder\",\n  \"helderen\": \"helder\",\n  \"helderheid\": \"helder\",\n  \"helderse\": \"helder\",\n  \"helderste\": \"helderst\",\n  \"helderziendheid\": \"helderzi\",\n  \"heldin\": \"heldin\",\n  \"heldinnen\": \"heldinn\",\n  \"hele\": \"hel\",\n  \"heleboel\": \"heleboel\",\n  \"helemaal\": \"helemal\",\n  \"hélemaal\": \"helemal\",\n  \"helenaveen\": \"helenaven\",\n  \"helft\": \"helft\",\n  \"heli\": \"heli\",\n  \"helicoptervlucht\": \"helicoptervlucht\",\n  \"helikopter\": \"helikopter\",\n  \"helikopters\": \"helikopter\",\n  \"helium\": \"helium\",\n  \"heliview\": \"heliview\",\n  \"helklinkende\": \"helklink\",\n  \"helle\": \"hell\",\n  \"hellegatspolder\": \"hellegatspolder\",\n  \"hellend\": \"hellend\",\n  \"hellende\": \"hellend\",\n  \"hellendoorn\": \"hellendoorn\",\n  \"hellevoetsluis\": \"hellevoetsluis\",\n  \"helling\": \"helling\",\n  \"hellingshoek\": \"hellingshoek\",\n  \"helm\": \"helm\",\n  \"helmen\": \"helm\",\n  \"helmer\": \"helmer\",\n  \"helmholtz\": \"helmholtz\",\n  \"helmkaketoe\": \"helmkaketoe\",\n  \"helmond\": \"helmond\",\n  \"helmondse\": \"helmond\",\n  \"help\": \"help\",\n  \"helpdesk\": \"helpdesk\",\n  \"helpen\": \"help\",\n  \"helpster\": \"helpster\",\n  \"helpt\": \"helpt\",\n  \"helsen\": \"hels\",\n  \"helsinki\": \"helsinki\",\n  \"helvoirt\": \"helvoirt\",\n  \"helvoirtse\": \"helvoirt\",\n  \"hem\": \"hem\",\n  \"hèm\": \"hèm\",\n  \"hemd\": \"hemd\",\n  \"hemden\": \"hemd\",\n  \"hemdenfabrikant\": \"hemdenfabrikant\",\n  \"hemdje\": \"hemdj\",\n  \"hemel\": \"hemel\",\n  \"hemelen\": \"hemel\",\n  \"hemelland\": \"hemelland\",\n  \"hemelsblauw\": \"hemelsblauw\",\n  \"hemelsteppen\": \"hemelstepp\",\n  \"hemelwater\": \"hemelwater\",\n  \"hemelwereld\": \"hemelwereld\",\n  \"hemelwerelden\": \"hemelwereld\",\n  \"hemelwolken\": \"hemelwolk\",\n  \"hemi\": \"hemi\",\n  \"hemmetje\": \"hemmetj\",\n  \"hemmetjes\": \"hemmetjes\",\n  \"hemweg\": \"hemweg\",\n  \"hemzelf\": \"hemzelf\",\n  \"hèmzelf\": \"hèmzelf\",\n  \"hen\": \"hen\",\n  \"hèn\": \"hèn\",\n  \"hendrik\": \"hendrik\",\n  \"hendriks\": \"hendrik\",\n  \"hendrix\": \"hendrix\",\n  \"hengelo\": \"hengelo\",\n  \"hengsel\": \"hengsel\",\n  \"henk\": \"henk\",\n  \"henri\": \"henri\",\n  \"henriëtte\": \"henriet\",\n  \"hensley\": \"hensley\",\n  \"henzelf\": \"henzelf\",\n  \"her\": \"her\",\n  \"hèr\": \"hèr\",\n  \"herademde\": \"herademd\",\n  \"herademen\": \"heradem\",\n  \"herademend\": \"heradem\",\n  \"heraklith\": \"heraklith\",\n  \"herawoll\": \"herawoll\",\n  \"herbebossing\": \"herbeboss\",\n  \"herbebossingsproject\": \"herbebossingsproject\",\n  \"herbestemming\": \"herbestemm\",\n  \"herbewerking\": \"herbewerk\",\n  \"herbezinning\": \"herbezinn\",\n  \"herbicide\": \"herbicid\",\n  \"herbiciden\": \"herbicid\",\n  \"herbloeide\": \"herbloeid\",\n  \"herboreling\": \"herborel\",\n  \"herboren\": \"herbor\",\n  \"herbouwd\": \"herbouwd\",\n  \"herbruik\": \"herbruik\",\n  \"herbruikbaar\": \"herbruik\",\n  \"herbruikbaarheid\": \"herbruik\",\n  \"herbruikbare\": \"herbruik\",\n  \"herbruikt\": \"herbruikt\",\n  \"hercules\": \"hercules\",\n  \"hercultivering\": \"hercultiver\",\n  \"hercultiveringsverplichtingen\": \"hercultiveringsverplicht\",\n  \"herdachte\": \"herdacht\",\n  \"herdenken\": \"herdenk\",\n  \"here\": \"her\",\n  \"herediteit\": \"herediteit\",\n  \"heren\": \"her\",\n  \"herendiner\": \"herendiner\",\n  \"herenhuizen\": \"herenhuiz\",\n  \"hereniging\": \"heren\",\n  \"herenkleding\": \"herenkled\",\n  \"herenkleren\": \"herenkler\",\n  \"herenwinkel\": \"herenwinkel\",\n  \"herfst\": \"herfst\",\n  \"herfstachtig\": \"herfstacht\",\n  \"herfstdag\": \"herfstdag\",\n  \"herfstende\": \"herfstend\",\n  \"herfstmorgen\": \"herfstmorg\",\n  \"herfstregens\": \"herfstregen\",\n  \"herfststormen\": \"herfststorm\",\n  \"herfststraat\": \"herfststrat\",\n  \"herfstteelt\": \"herfstteelt\",\n  \"hergebruik\": \"hergebruik\",\n  \"hergebruiken\": \"hergebruik\",\n  \"hergebruikinstallaties\": \"hergebruikinstallaties\",\n  \"hergebruikmaatschappij\": \"hergebruikmaatschappij\",\n  \"hergebruikmogelijkheden\": \"hergebruikmog\",\n  \"hergebruiksdoelstelling\": \"hergebruiksdoelstell\",\n  \"hergebruiksgrond\": \"hergebruiksgrond\",\n  \"hergebruikspercentage\": \"hergebruikspercentag\",\n  \"hergebruiksrendement\": \"hergebruiksrendement\",\n  \"hergebruikt\": \"hergebruikt\",\n  \"hergebruikte\": \"hergebruikt\",\n  \"herhaal\": \"herhal\",\n  \"herhaald\": \"herhaald\",\n  \"herhaalde\": \"herhaald\",\n  \"herhaaldelijk\": \"herhaald\",\n  \"herhaalden\": \"herhaald\",\n  \"herhalen\": \"herhal\",\n  \"herhaling\": \"herhal\",\n  \"herhalingen\": \"herhal\",\n  \"herhalingscursus\": \"herhalingscursus\",\n  \"herijking\": \"herijk\",\n  \"herijkingen\": \"herijk\",\n  \"herijkingsnota\": \"herijkingsnota\",\n  \"herindustrialisering\": \"herindustrialiser\",\n  \"heringedeeld\": \"heringedeeld\",\n  \"heringericht\": \"heringericht\",\n  \"herinner\": \"herinner\",\n  \"herinnerd\": \"herinnerd\",\n  \"herinnerde\": \"herinnerd\",\n  \"herinnerden\": \"herinnerd\",\n  \"herinneren\": \"herinner\",\n  \"herinnerend\": \"herinner\",\n  \"herinnerende\": \"herinner\",\n  \"herinnering\": \"herinner\",\n  \"herinneringen\": \"herinner\",\n  \"herinneringloos\": \"herinneringlos\",\n  \"herinneringloosheid\": \"herinneringlos\",\n  \"herinnert\": \"herinnert\",\n  \"herinrichten\": \"herinricht\",\n  \"herinrichting\": \"herinricht\",\n  \"herinrichtingsbestek\": \"herinrichtingsbestek\",\n  \"herinrichtingsprojecten\": \"herinrichtingsproject\",\n  \"herintroduceren\": \"herintroducer\",\n  \"herintroductie\": \"herintroductie\",\n  \"herken\": \"herk\",\n  \"herkenbaar\": \"herken\",\n  \"herkenbaarheid\": \"herken\",\n  \"herkenbare\": \"herken\",\n  \"herkend\": \"herkend\",\n  \"herkende\": \"herkend\",\n  \"herkenden\": \"herkend\",\n  \"herkennen\": \"herkenn\",\n  \"herkennende\": \"herkenn\",\n  \"herkenningssymbolen\": \"herkenningssymbol\",\n  \"herkent\": \"herkent\",\n  \"herkomst\": \"herkomst\",\n  \"herkreeg\": \"herkreg\",\n  \"herkströter\": \"herkstroter\",\n  \"herlaadbare\": \"herlad\",\n  \"herladen\": \"herlad\",\n  \"herleefde\": \"herleefd\",\n  \"herleefden\": \"herleefd\",\n  \"herlev\": \"herlev\",\n  \"herleven\": \"herlev\",\n  \"herlezende\": \"herlez\",\n  \"herlokatie\": \"herlokatie\",\n  \"herman\": \"herman\",\n  \"hermes\": \"hermes\",\n  \"hernam\": \"hernam\",\n  \"hernandez\": \"hernandez\",\n  \"hernieuwbare\": \"hernieuw\",\n  \"hernieuwd\": \"hernieuwd\",\n  \"hernieuwde\": \"hernieuwd\",\n  \"herning\": \"herning\",\n  \"hero\": \"hero\",\n  \"heron\": \"heron\",\n  \"herontwerpt\": \"herontwerpt\",\n  \"herontwikkeld\": \"herontwikkeld\",\n  \"herontwikkeling\": \"herontwikkel\",\n  \"heropenen\": \"heropen\",\n  \"heroriëntatie\": \"herorientatie\",\n  \"heroriënteerd\": \"herorienteerd\",\n  \"heroverwegen\": \"heroverweg\",\n  \"heroverweging\": \"heroverweg\",\n  \"herplaatsen\": \"herplaats\",\n  \"herplantingsplicht\": \"herplantingsplicht\",\n  \"herregistratie\": \"herregistratie\",\n  \"herregistraties\": \"herregistraties\",\n  \"herrewegen\": \"herreweg\",\n  \"herrie\": \"herrie\",\n  \"herrit\": \"herrit\",\n  \"hersen\": \"hers\",\n  \"hersenen\": \"hersen\",\n  \"hersenklomp\": \"hersenklomp\",\n  \"hersens\": \"hersen\",\n  \"hersenschim\": \"hersenschim\",\n  \"hersentjes\": \"hersentjes\",\n  \"hersentumoren\": \"hersentumor\",\n  \"herstel\": \"herstel\",\n  \"herstelbedrijven\": \"herstelbedrijv\",\n  \"hersteld\": \"hersteld\",\n  \"herstelde\": \"hersteld\",\n  \"herstelden\": \"hersteld\",\n  \"herstelinrichtingen\": \"herstelinricht\",\n  \"herstelkosten\": \"herstelkost\",\n  \"herstellen\": \"herstell\",\n  \"herstelmaatregelen\": \"herstelmaatregel\",\n  \"herstelt\": \"herstelt\",\n  \"herstelwerk\": \"herstelwerk\",\n  \"herstelwerkzaamheden\": \"herstelwerkzam\",\n  \"herstrating\": \"herstrat\",\n  \"herstructureren\": \"herstructurer\",\n  \"herstructurering\": \"herstructurer\",\n  \"herstructureringfonds\": \"herstructureringfond\",\n  \"herstructureringsbeleid\": \"herstructureringsbeleid\",\n  \"herstructureringsfond\": \"herstructureringsfond\",\n  \"herstructureringsfonds\": \"herstructureringsfond\",\n  \"herstructureringskosten\": \"herstructureringskost\",\n  \"herstructureringsplan\": \"herstructureringsplan\",\n  \"herstructureringsplannen\": \"herstructureringsplann\",\n  \"herten\": \"hert\",\n  \"hertenkamp\": \"hertenkamp\",\n  \"hertfordshire\": \"hertfordshir\",\n  \"hertog\": \"hertog\",\n  \"hertogen\": \"hertog\",\n  \"hertogenbosch\": \"hertogenbosch\",\n  \"hertoghuizen\": \"hertoghuiz\",\n  \"hertz\": \"hertz\",\n  \"hervat\": \"hervat\",\n  \"hervatte\": \"hervat\",\n  \"hervatten\": \"hervat\",\n  \"hervatting\": \"hervat\",\n  \"hervé\": \"herv\",\n  \"herveld\": \"herveld\",\n  \"hervelds\": \"herveld\",\n  \"herverdeling\": \"herverdel\",\n  \"herverkaveling\": \"herverkavel\",\n  \"herverwerken\": \"herverwerk\",\n  \"herverwerking\": \"herverwerk\",\n  \"herverwerkingscapaciteit\": \"herverwerkingscapaciteit\",\n  \"herverzekeraar\": \"herverzekerar\",\n  \"herverzekeraars\": \"herverzekerar\",\n  \"herverzekering\": \"herverzeker\",\n  \"hervinden\": \"hervind\",\n  \"hervorming\": \"hervorm\",\n  \"hervormingen\": \"hervorm\",\n  \"hervormingsmaatregelen\": \"hervormingsmaatregel\",\n  \"hervormingsproces\": \"hervormingsproces\",\n  \"hervulbare\": \"hervul\",\n  \"herwaardering\": \"herwaarder\",\n  \"herwaarderingen\": \"herwaarder\",\n  \"herwinbare\": \"herwin\",\n  \"herwinnen\": \"herwinn\",\n  \"herwinning\": \"herwinn\",\n  \"herwint\": \"herwint\",\n  \"herwonnen\": \"herwonn\",\n  \"herzien\": \"herzien\",\n  \"herziene\": \"herzien\",\n  \"herziening\": \"herzien\",\n  \"herzieningswet\": \"herzieningswet\",\n  \"herziet\": \"herziet\",\n  \"hese\": \"hes\",\n  \"hesp\": \"hesp\",\n  \"hessen\": \"hess\",\n  \"hessenenergie\": \"hessenenergie\",\n  \"hessenwind\": \"hessenwind\",\n  \"hessing\": \"hessing\",\n  \"het\": \"het\",\n  \"hèt\": \"hèt\",\n  \"hete\": \"het\",\n  \"heteluchtballon\": \"heteluchtballon\",\n  \"heten\": \"het\",\n  \"heter\": \"heter\",\n  \"heterogene\": \"heterog\",\n  \"heterogener\": \"heterogener\",\n  \"hetgeen\": \"hetgen\",\n  \"hetzelfde\": \"hetzelfd\",\n  \"hetzij\": \"hetzij\",\n  \"heugde\": \"heugd\",\n  \"heugen\": \"heug\",\n  \"heugende\": \"heugend\",\n  \"heugenissen\": \"heugeniss\",\n  \"heugten\": \"heugt\",\n  \"heup\": \"heup\",\n  \"heupen\": \"heup\",\n  \"heur\": \"heur\",\n  \"heus\": \"heus\",\n  \"hèus\": \"hèus\",\n  \"heuse\": \"heus\",\n  \"heuvel\": \"heuvel\",\n  \"heuvelrug\": \"heuvelrug\",\n  \"heuvels\": \"heuvel\",\n  \"hevea\": \"hevea\",\n  \"hevelsysteem\": \"hevelsystem\",\n  \"hevig\": \"hevig\",\n  \"hevige\": \"hevig\",\n  \"heviger\": \"heviger\",\n  \"hevigheid\": \"hevig\",\n  \"hevigst\": \"hevigst\",\n  \"hexaan\": \"hexan\",\n  \"hexachloorbenzeen\": \"hexachloorbenzen\",\n  \"hexachloorbutadieen\": \"hexachloorbutadieen\",\n  \"hexachloorcyclohexaan\": \"hexachloorcyclohexan\",\n  \"hexachloorhexaan\": \"hexachloorhexan\",\n  \"hf\": \"hf\",\n  \"hfk\": \"hfk\",\n  \"hfsp\": \"hfsp\",\n  \"hiaten\": \"hiat\",\n  \"hibin\": \"hibin\",\n  \"hickson\": \"hickson\",\n  \"hid\": \"hid\",\n  \"hief\": \"hief\",\n  \"hield\": \"hield\",\n  \"hielden\": \"hield\",\n  \"hielp\": \"hielp\",\n  \"hielpen\": \"hielp\",\n  \"hiem\": \"hiem\",\n  \"hier\": \"hier\",\n  \"hieraan\": \"hieran\",\n  \"hierbij\": \"hierbij\",\n  \"hierbinnen\": \"hierbinn\",\n  \"hierden\": \"hierd\",\n  \"hierdoor\": \"hierdor\",\n  \"hierheen\": \"hierhen\",\n  \"hierin\": \"hierin\",\n  \"hiermee\": \"hiermee\",\n  \"hierna\": \"hierna\",\n  \"hiernaar\": \"hiernar\",\n  \"hierom\": \"hierom\",\n  \"hieronder\": \"hieronder\",\n  \"hierop\": \"hierop\",\n  \"hierover\": \"hierover\",\n  \"hiertegen\": \"hierteg\",\n  \"hiertoe\": \"hiertoe\",\n  \"hieruit\": \"hieruit\",\n  \"hiervan\": \"hiervan\",\n  \"hiervoor\": \"hiervor\",\n  \"hieven\": \"hiev\",\n  \"high\": \"high\",\n  \"highpolymer\": \"highpolymer\",\n  \"hij\": \"hij\",\n  \"hijdrecht\": \"hijdrecht\",\n  \"hijdrechts\": \"hijdrecht\",\n  \"hijgde\": \"hijgd\",\n  \"hijgden\": \"hijgd\",\n  \"hijgende\": \"hijgend\",\n  \"hijiori\": \"hijiori\",\n  \"hijsen\": \"hijs\",\n  \"hijslussen\": \"hijsluss\",\n  \"hijzelf\": \"hijzelf\",\n  \"hikken\": \"hik\",\n  \"hikkende\": \"hikkend\",\n  \"hikte\": \"hikt\",\n  \"hill\": \"hill\",\n  \"hillegom\": \"hillegom\",\n  \"hillegommerbeek\": \"hillegommerbek\",\n  \"hilleshög\": \"hilleshog\",\n  \"hilversum\": \"hilversum\",\n  \"hinder\": \"hinder\",\n  \"hinderbeleving\": \"hinderbelev\",\n  \"hinderde\": \"hinderd\",\n  \"hinderden\": \"hinderd\",\n  \"hinderen\": \"hinder\",\n  \"hinderenquête\": \"hinderenquêt\",\n  \"hindergrens\": \"hindergren\",\n  \"hinderlijk\": \"hinder\",\n  \"hindernis\": \"hindernis\",\n  \"hindernissen\": \"hinderniss\",\n  \"hinderniveau\": \"hinderniveau\",\n  \"hinderpaal\": \"hinderpal\",\n  \"hindersystematiek\": \"hindersystematiek\",\n  \"hindert\": \"hindert\",\n  \"hinderwet\": \"hinderwet\",\n  \"hinderwetvergunning\": \"hinderwetvergunn\",\n  \"hindoe\": \"hindoe\",\n  \"hing\": \"hing\",\n  \"hingen\": \"hing\",\n  \"hinkley\": \"hinkley\",\n  \"hiroshima\": \"hiroshima\",\n  \"hiruma\": \"hiruma\",\n  \"hispano\": \"hispano\",\n  \"historicus\": \"historicus\",\n  \"historie\": \"historie\",\n  \"historisch\": \"historisch\",\n  \"historische\": \"historisch\",\n  \"hiswa\": \"hiswa\",\n  \"hitachi\": \"hitachi\",\n  \"hitste\": \"hitst\",\n  \"hitte\": \"hit\",\n  \"hittebestendig\": \"hittebestend\",\n  \"hittebestendige\": \"hittebestend\",\n  \"hittegolf\": \"hittegolf\",\n  \"hittevast\": \"hittevast\",\n  \"hl\": \"hl\",\n  \"hm\": \"hm\",\n  \"hmil\": \"hmil\",\n  \"hmip\": \"hmip\",\n  \"hmso\": \"hmso\",\n  \"hnei\": \"hnei\",\n  \"ho\": \"ho\",\n  \"hobbelgang\": \"hobbelgang\",\n  \"hobbocks\": \"hobbock\",\n  \"hobby\": \"hobby\",\n  \"hobo\": \"hobo\",\n  \"hoboken\": \"hobok\",\n  \"hobsbawn\": \"hobsbawn\",\n  \"hoc\": \"hoc\",\n  \"hochtief\": \"hochtief\",\n  \"hodgson\": \"hodgson\",\n  \"hody\": \"hody\",\n  \"hoe\": \"hoe\",\n  \"hoè\": \"hoè\",\n  \"hoechst\": \"hoechst\",\n  \"hoed\": \"hoed\",\n  \"hoedanigheden\": \"hoedan\",\n  \"hoedanigheid\": \"hoedan\",\n  \"hoede\": \"hoed\",\n  \"hoeden\": \"hoed\",\n  \"hoedje\": \"hoedj\",\n  \"hoef\": \"hoef\",\n  \"hoefde\": \"hoefd\",\n  \"hoefden\": \"hoefd\",\n  \"hoefslag\": \"hoefslag\",\n  \"hoeft\": \"hoeft\",\n  \"hoek\": \"hoek\",\n  \"hoeken\": \"hoek\",\n  \"hoekhuis\": \"hoekhuis\",\n  \"hoekig\": \"hoekig\",\n  \"hoekige\": \"hoekig\",\n  \"hoekje\": \"hoekj\",\n  \"hoekjes\": \"hoekjes\",\n  \"hoekraam\": \"hoekram\",\n  \"hoeksema\": \"hoeksema\",\n  \"hoekstra\": \"hoekstra\",\n  \"hoen\": \"hoen\",\n  \"hoendiep\": \"hoendiep\",\n  \"hoensbroek\": \"hoensbroek\",\n  \"hoep\": \"hoep\",\n  \"hoepel\": \"hoepel\",\n  \"hoera\": \"hoera\",\n  \"hoes\": \"hoes\",\n  \"hoest\": \"hoest\",\n  \"hoeveel\": \"hoevel\",\n  \"hoeveelheden\": \"hoevel\",\n  \"hoeveelheid\": \"hoevel\",\n  \"hoevele\": \"hoevel\",\n  \"hoevelen\": \"hoevel\",\n  \"hoeven\": \"hoev\",\n  \"hoever\": \"hoever\",\n  \"hoeverre\": \"hoeverr\",\n  \"hoewel\": \"hoewel\",\n  \"hoezeer\": \"hoezer\",\n  \"hof\": \"hof\",\n  \"hòf\": \"hòf\",\n  \"hofaristocratie\": \"hofaristocratie\",\n  \"hofbal\": \"hofbal\",\n  \"hofbals\": \"hofbal\",\n  \"hofcostumes\": \"hofcostumes\",\n  \"hofcôterie\": \"hofcôterie\",\n  \"hoffelijk\": \"hoffelijk\",\n  \"hoffelijke\": \"hoffelijk\",\n  \"hofje\": \"hofj\",\n  \"hofkliek\": \"hofkliek\",\n  \"hofkliekje\": \"hofkliekj\",\n  \"hofkringen\": \"hofkring\",\n  \"hofmaker\": \"hofmaker\",\n  \"hofmakerij\": \"hofmakerij\",\n  \"hofpleinlijn\": \"hofpleinlijn\",\n  \"hoge\": \"hog\",\n  \"hogedruk\": \"hogedruk\",\n  \"hogedrukhaspel\": \"hogedrukhaspel\",\n  \"hogedrukpompen\": \"hogedrukpomp\",\n  \"hogedrukwaterstraal\": \"hogedrukwaterstral\",\n  \"hogeland\": \"hogeland\",\n  \"hoger\": \"hoger\",\n  \"hogere\": \"hoger\",\n  \"hogers\": \"hoger\",\n  \"hogescholen\": \"hogeschol\",\n  \"hogescholencomplex\": \"hogescholencomplex\",\n  \"hogeschool\": \"hogeschol\",\n  \"hogesnelheidslijn\": \"hogesnelheidslijn\",\n  \"hogesnelheidslijnen\": \"hogesnelheidslijn\",\n  \"hogesnelheidstrein\": \"hogesnelheidstrein\",\n  \"hogesnelheidstreinen\": \"hogesnelheidstrein\",\n  \"höhn\": \"hohn\",\n  \"höhns\": \"hohn\",\n  \"hok\": \"hok\",\n  \"hokken\": \"hok\",\n  \"hokkende\": \"hokkend\",\n  \"hokte\": \"hokt\",\n  \"hokten\": \"hokt\",\n  \"hol\": \"hol\",\n  \"hola\": \"hola\",\n  \"holco\": \"holco\",\n  \"holde\": \"hold\",\n  \"holding\": \"holding\",\n  \"holdings\": \"holding\",\n  \"holec\": \"holec\",\n  \"holes\": \"holes\",\n  \"holistische\": \"holistisch\",\n  \"holkema\": \"holkema\",\n  \"holkenborg\": \"holkenborg\",\n  \"holland\": \"holland\",\n  \"hollander\": \"hollander\",\n  \"hollanders\": \"hollander\",\n  \"hollandia\": \"hollandia\",\n  \"hollands\": \"holland\",\n  \"hollandsche\": \"hollandsch\",\n  \"hollandse\": \"holland\",\n  \"hóllandse\": \"holland\",\n  \"hòllandse\": \"hòlland\",\n  \"hollandste\": \"hollandst\",\n  \"holle\": \"holl\",\n  \"hölle\": \"holl\",\n  \"hollen\": \"holl\",\n  \"holman\": \"holman\",\n  \"holstein\": \"holstein\",\n  \"holte\": \"holt\",\n  \"holten\": \"holt\",\n  \"hölter\": \"holter\",\n  \"holzmann\": \"holzmann\",\n  \"home\": \"hom\",\n  \"homepage\": \"homepag\",\n  \"homer\": \"homer\",\n  \"homerisch\": \"homerisch\",\n  \"homerische\": \"homerisch\",\n  \"homero\": \"homero\",\n  \"homogeen\": \"homogen\",\n  \"homogene\": \"homog\",\n  \"homogenisering\": \"homogeniser\",\n  \"homogeniteit\": \"homogeniteit\",\n  \"hond\": \"hond\",\n  \"honda\": \"honda\",\n  \"hondebrokken\": \"hondebrok\",\n  \"honden\": \"hond\",\n  \"honderd\": \"honderd\",\n  \"honderdduizend\": \"honderdduiz\",\n  \"honderdduizenden\": \"honderdduiz\",\n  \"honderdduizendste\": \"honderdduizendst\",\n  \"honderdduizendvoudige\": \"honderdduizendvoud\",\n  \"honderden\": \"honderd\",\n  \"honderdjes\": \"honderdjes\",\n  \"honderdmaal\": \"honderdmal\",\n  \"honderdste\": \"honderdst\",\n  \"honderdtachtig\": \"honderdtacht\",\n  \"hondje\": \"hondj\",\n  \"hondjes\": \"hondjes\",\n  \"hondsdolheid\": \"hondsdol\",\n  \"hondsdolheidvaccin\": \"hondsdolheidvaccin\",\n  \"hondsrug\": \"hondsrug\",\n  \"hondt\": \"hondt\",\n  \"hong\": \"hong\",\n  \"hongarije\": \"hongarij\",\n  \"honger\": \"honger\",\n  \"hongerige\": \"honger\",\n  \"hongerkreet\": \"hongerkret\",\n  \"hongkong\": \"hongkong\",\n  \"honing\": \"honing\",\n  \"honingwafels\": \"honingwafel\",\n  \"honolulu\": \"honolulu\",\n  \"honorair\": \"honorair\",\n  \"honoreren\": \"honorer\",\n  \"honorering\": \"honorer\",\n  \"honschooten\": \"honschot\",\n  \"hoof\": \"hof\",\n  \"hoofd\": \"hoofd\",\n  \"hoofdaannemer\": \"hoofdaannemer\",\n  \"hoofdactiviteiten\": \"hoofdactiviteit\",\n  \"hoofdbedrijfschap\": \"hoofdbedrijfschap\",\n  \"hoofdbestanddeel\": \"hoofdbestanddel\",\n  \"hoofdbestuur\": \"hoofdbestur\",\n  \"hoofdcommies\": \"hoofdcommies\",\n  \"hoofdcomponenten\": \"hoofdcomponent\",\n  \"hoofdconclusie\": \"hoofdconclusie\",\n  \"hoofddirecteur\": \"hoofddirecteur\",\n  \"hoofddirectie\": \"hoofddirectie\",\n  \"hoofddoel\": \"hoofddoel\",\n  \"hoofddoelstelling\": \"hoofddoelstell\",\n  \"hoofddorp\": \"hoofddorp\",\n  \"hoofdeiland\": \"hoofdeiland\",\n  \"hoofden\": \"hoofd\",\n  \"hoofdfuncties\": \"hoofdfuncties\",\n  \"hoofdgroep\": \"hoofdgroep\",\n  \"hoofdinspectie\": \"hoofdinspectie\",\n  \"hoofdje\": \"hoofdj\",\n  \"hoofdkamer\": \"hoofdkamer\",\n  \"hoofdkantoor\": \"hoofdkantor\",\n  \"hoofdkwartier\": \"hoofdkwartier\",\n  \"hoofdleiding\": \"hoofdleid\",\n  \"hoofdlijnen\": \"hoofdlijn\",\n  \"hoofdontwikkelingen\": \"hoofdontwikkel\",\n  \"hoofdoorzaken\": \"hoofdoorzak\",\n  \"hoofdpijn\": \"hoofdpijn\",\n  \"hoofdprijs\": \"hoofdprijs\",\n  \"hoofdproblemen\": \"hoofdproblem\",\n  \"hoofdpunten\": \"hoofdpunt\",\n  \"hoofdriool\": \"hoofdriool\",\n  \"hoofdrol\": \"hoofdrol\",\n  \"hoofdschuddend\": \"hoofdschud\",\n  \"hoofdschuddende\": \"hoofdschud\",\n  \"hoofdschuldigen\": \"hoofdschuld\",\n  \"hoofdstad\": \"hoofdstad\",\n  \"hoofdstructuur\": \"hoofdstructur\",\n  \"hoofdstructuurassen\": \"hoofdstructuurass\",\n  \"hoofdstuk\": \"hoofdstuk\",\n  \"hoofdstukken\": \"hoofdstuk\",\n  \"hoofdtaak\": \"hoofdtak\",\n  \"hoofdthema\": \"hoofdthema\",\n  \"hoofdtrek\": \"hoofdtrek\",\n  \"hoofduitrusting\": \"hoofduitrust\",\n  \"hoofdvestiging\": \"hoofdvest\",\n  \"hoofdvormen\": \"hoofdvorm\",\n  \"hoofdwaterwegen\": \"hoofdwaterweg\",\n  \"hoofdwinnaars\": \"hoofdwinnar\",\n  \"hoofdzakelijk\": \"hoofdzak\",\n  \"hoofdzaken\": \"hoofdzak\",\n  \"hooftstraat\": \"hooftstrat\",\n  \"hoog\": \"hog\",\n  \"hoogachtend\": \"hoogacht\",\n  \"hoogbouw\": \"hoogbouw\",\n  \"hoogbouwbewoners\": \"hoogbouwbewoner\",\n  \"hoogbouwwijken\": \"hoogbouwwijk\",\n  \"hooge\": \"hog\",\n  \"hoogervorst\": \"hoogervorst\",\n  \"hoogeveen\": \"hoogeven\",\n  \"hoogezand\": \"hoogezand\",\n  \"hoogezands\": \"hoogezand\",\n  \"hoogfrequente\": \"hoogfrequent\",\n  \"hooggekwalificeerde\": \"hooggekwalificeerd\",\n  \"hooggelegen\": \"hooggeleg\",\n  \"hooggeplaatste\": \"hooggeplaatst\",\n  \"hooggewaardeerde\": \"hooggewaardeerd\",\n  \"hoogheemraadschap\": \"hoogheemraadschap\",\n  \"hooglanden\": \"hoogland\",\n  \"hoogleraar\": \"hooglerar\",\n  \"hoogleraren\": \"hooglerar\",\n  \"hoogmoed\": \"hoogmoed\",\n  \"hoogmoedig\": \"hoogmoed\",\n  \"hoogmoedige\": \"hoogmoed\",\n  \"hoogmoedsilluzie\": \"hoogmoedsilluzie\",\n  \"hoogmoedswaanzin\": \"hoogmoedswaanzin\",\n  \"hoogovencement\": \"hoogovencement\",\n  \"hoogovengas\": \"hoogovengas\",\n  \"hoogovengassen\": \"hoogovengass\",\n  \"hoogovens\": \"hoogoven\",\n  \"hoogovensterrein\": \"hoogovensterrein\",\n  \"hoogradioactief\": \"hoogradioactief\",\n  \"hoogrendement\": \"hoogrendement\",\n  \"hoogrendements\": \"hoogrendement\",\n  \"hoogrendementsketels\": \"hoogrendementsketel\",\n  \"hoogrendementsturbines\": \"hoogrendementsturbines\",\n  \"hoogs\": \"hog\",\n  \"hoogspanningskabel\": \"hoogspanningskabel\",\n  \"hoogspanningslijnen\": \"hoogspanningslijn\",\n  \"hoogspanningsmasten\": \"hoogspanningsmast\",\n  \"hoogspanningsnet\": \"hoogspanningsnet\",\n  \"hoogspanningsnetten\": \"hoogspanningsnet\",\n  \"hoogst\": \"hoogst\",\n  \"hoogstamfruitbomen\": \"hoogstamfruitbom\",\n  \"hoogstamvruchtbomen\": \"hoogstamvruchtbom\",\n  \"hoogstandjes\": \"hoogstandjes\",\n  \"hoogste\": \"hoogst\",\n  \"hoogstens\": \"hoogsten\",\n  \"hoogstraat\": \"hoogstrat\",\n  \"hoogstwaarschijnlijk\": \"hoogstwaarschijn\",\n  \"hoogte\": \"hoogt\",\n  \"hoogten\": \"hoogt\",\n  \"hoogtepunt\": \"hoogtepunt\",\n  \"hoogteverschillen\": \"hoogteverschill\",\n  \"hooguit\": \"hooguit\",\n  \"hoogveen\": \"hoogven\",\n  \"hoogveengebieden\": \"hoogveengebied\",\n  \"hoogvermogen\": \"hoogvermog\",\n  \"hoogvlaktes\": \"hoogvlaktes\",\n  \"hoogvliet\": \"hoogvliet\",\n  \"hoogwaardig\": \"hoogwaard\",\n  \"hoogwaardige\": \"hoogwaard\",\n  \"hoogwaardiger\": \"hoogwaardiger\",\n  \"hoogwater\": \"hoogwater\",\n  \"hoogwaterstand\": \"hoogwaterstand\",\n  \"hoogwaterstanden\": \"hoogwaterstand\",\n  \"hoogwerker\": \"hoogwerker\",\n  \"hooibalen\": \"hooibal\",\n  \"hooilanden\": \"hooiland\",\n  \"hoop\": \"hop\",\n  \"hoopgevend\": \"hoopgev\",\n  \"hoopgevende\": \"hoopgev\",\n  \"hoopt\": \"hoopt\",\n  \"hoopte\": \"hoopt\",\n  \"hoopten\": \"hoopt\",\n  \"hoopvol\": \"hoopvol\",\n  \"hoopvolheden\": \"hoopvol\",\n  \"hoor\": \"hor\",\n  \"hoorbaar\": \"hoorbar\",\n  \"hoorbare\": \"hoorbar\",\n  \"hoorbijeenkomsten\": \"hoorbijeenkomst\",\n  \"hoorde\": \"hoord\",\n  \"hoorden\": \"hoord\",\n  \"hoorders\": \"hoorder\",\n  \"hoorn\": \"hoorn\",\n  \"hoort\": \"hoort\",\n  \"hoorzitting\": \"hoorzit\",\n  \"hoorzittingen\": \"hoorzit\",\n  \"hoos\": \"hos\",\n  \"hopeloos\": \"hopelos\",\n  \"hopeloosheden\": \"hopelos\",\n  \"hopeloosheid\": \"hopelos\",\n  \"hopen\": \"hop\",\n  \"hopende\": \"hopend\",\n  \"hopper\": \"hopper\",\n  \"horeca\": \"horeca\",\n  \"horecabedrijven\": \"horecabedrijv\",\n  \"horecabeleid\": \"horecabeleid\",\n  \"horecagelegenheden\": \"horecageleg\",\n  \"horecazaak\": \"horecazak\",\n  \"horecazaken\": \"horecazak\",\n  \"horen\": \"hor\",\n  \"horende\": \"horend\",\n  \"horizon\": \"horizon\",\n  \"horizonnen\": \"horizonn\",\n  \"horizontaal\": \"horizontal\",\n  \"horizontale\": \"horizontal\",\n  \"horizonvervuiling\": \"horizonvervuil\",\n  \"horloge\": \"horlog\",\n  \"horlogefabrikant\": \"horlogefabrikant\",\n  \"hormonen\": \"hormon\",\n  \"hormoon\": \"hormon\",\n  \"hormoonbeïnvloedende\": \"hormoonbeinvloed\",\n  \"hormoongebruik\": \"hormoongebruik\",\n  \"hormoonstofwisseling\": \"hormoonstofwissel\",\n  \"horni\": \"horni\",\n  \"horreurs\": \"horreur\",\n  \"horrible\": \"horribl\",\n  \"hors\": \"hor\",\n  \"horsens\": \"horsen\",\n  \"horsmakreel\": \"horsmakrel\",\n  \"horst\": \"horst\",\n  \"horten\": \"hort\",\n  \"hortensius\": \"hortensius\",\n  \"hospitaal\": \"hospital\",\n  \"hospitalen\": \"hospital\",\n  \"hossen\": \"hoss\",\n  \"hot\": \"hot\",\n  \"hôte\": \"hôte\",\n  \"hotel\": \"hotel\",\n  \"hôtel\": \"hôtel\",\n  \"hôtelkamer\": \"hôtelkamer\",\n  \"hotels\": \"hotel\",\n  \"hotsende\": \"hotsend\",\n  \"hotste\": \"hotst\",\n  \"hou\": \"hou\",\n  \"houben\": \"houb\",\n  \"houd\": \"houd\",\n  \"houdbaar\": \"houdbar\",\n  \"houdbaarheid\": \"houdbar\",\n  \"houdbare\": \"houdbar\",\n  \"houden\": \"houd\",\n  \"houdend\": \"houdend\",\n  \"houdende\": \"houdend\",\n  \"houder\": \"houder\",\n  \"houderig\": \"houder\",\n  \"houderij\": \"houderij\",\n  \"houderschapsbelasting\": \"houderschapsbelast\",\n  \"houding\": \"houding\",\n  \"houdt\": \"houdt\",\n  \"houen\": \"houen\",\n  \"house\": \"hous\",\n  \"household\": \"household\",\n  \"housekeeping\": \"housekep\",\n  \"housemuziek\": \"housemuziek\",\n  \"houseparty\": \"houseparty\",\n  \"housing\": \"housing\",\n  \"houston\": \"houston\",\n  \"hout\": \"hout\",\n  \"houtafval\": \"houtafval\",\n  \"houtafvalproducenten\": \"houtafvalproducent\",\n  \"houtagenturen\": \"houtagentur\",\n  \"houtbare\": \"houtbar\",\n  \"houtbedrijven\": \"houtbedrijv\",\n  \"houtbelegging\": \"houtbelegg\",\n  \"houtbewerkende\": \"houtbewerk\",\n  \"houtbewerkers\": \"houtbewerker\",\n  \"houtblokken\": \"houtblok\",\n  \"houtbond\": \"houtbond\",\n  \"houtbranche\": \"houtbranch\",\n  \"houtcongres\": \"houtcongres\",\n  \"houtconserveringsmiddelen\": \"houtconserveringsmiddel\",\n  \"houten\": \"hout\",\n  \"houterig\": \"houter\",\n  \"houtfondsen\": \"houtfonds\",\n  \"houthandel\": \"houthandel\",\n  \"houthandelaren\": \"houthandelar\",\n  \"houthavens\": \"houthaven\",\n  \"houthoff\": \"houthoff\",\n  \"houtindustrie\": \"houtindustrie\",\n  \"houtje\": \"houtj\",\n  \"houtkap\": \"houtkap\",\n  \"houtkapbedrijven\": \"houtkapbedrijv\",\n  \"houtleveranciers\": \"houtleverancier\",\n  \"houtloods\": \"houtlod\",\n  \"houtman\": \"houtman\",\n  \"houtmot\": \"houtmot\",\n  \"houtondernemingen\": \"houtondernem\",\n  \"houtoogst\": \"houtoogst\",\n  \"houtplantages\": \"houtplantages\",\n  \"houtpoeder\": \"houtpoeder\",\n  \"houtprijzen\": \"houtprijz\",\n  \"houtproducenten\": \"houtproducent\",\n  \"houtproducerende\": \"houtproducer\",\n  \"houtproduktie\": \"houtproduktie\",\n  \"houtpulp\": \"houtpulp\",\n  \"houtpulpafval\": \"houtpulpafval\",\n  \"houtrakpolder\": \"houtrakpolder\",\n  \"houtresiduen\": \"houtresiduen\",\n  \"houtrijk\": \"houtrijk\",\n  \"houtrot\": \"houtrot\",\n  \"houtrust\": \"houtrust\",\n  \"houtsector\": \"houtsector\",\n  \"houtskeletbouw\": \"houtskeletbouw\",\n  \"houtskool\": \"houtskol\",\n  \"houtsnip\": \"houtsnip\",\n  \"houtsnippers\": \"houtsnipper\",\n  \"houtstof\": \"houtstof\",\n  \"houtstraat\": \"houtstrat\",\n  \"houttechnologie\": \"houttechnologie\",\n  \"houttong\": \"houttong\",\n  \"houtverbrandingsinstallatie\": \"houtverbrandingsinstallatie\",\n  \"houtverduurzamer\": \"houtverduurzamer\",\n  \"houtverduurzamingsmiddelen\": \"houtverduurzamingsmiddel\",\n  \"houtversnipperaar\": \"houtversnipperar\",\n  \"houtverwerkend\": \"houtverwerk\",\n  \"houtverwerkende\": \"houtverwerk\",\n  \"houtverwerking\": \"houtverwerk\",\n  \"houtverwerkings\": \"houtverwerk\",\n  \"houtvezel\": \"houtvezel\",\n  \"houtvezels\": \"houtvezel\",\n  \"houtvolume\": \"houtvolum\",\n  \"houtvoorraden\": \"houtvoorrad\",\n  \"houtvrek\": \"houtvrek\",\n  \"houtvrije\": \"houtvrij\",\n  \"houtwol\": \"houtwol\",\n  \"houtwolplaten\": \"houtwolplat\",\n  \"houtzagerijen\": \"houtzagerij\",\n  \"houvast\": \"houvast\",\n  \"hove\": \"hov\",\n  \"hovo\": \"hovo\",\n  \"how\": \"how\",\n  \"hoyu\": \"hoyu\",\n  \"hpe\": \"hpe\",\n  \"hplc\": \"hplc\",\n  \"hr\": \"hr\",\n  \"hse\": \"hse\",\n  \"hsl\": \"hsl\",\n  \"hsm\": \"hsm\",\n  \"hsmo\": \"hsmo\",\n  \"hso\": \"hso\",\n  \"hsp\": \"hsp\",\n  \"html\": \"html\",\n  \"hts\": \"hts\",\n  \"http\": \"http\",\n  \"hu\": \"hu\",\n  \"hubert\": \"hubert\",\n  \"huddersfield\": \"huddersfield\",\n  \"huelva\": \"huelva\",\n  \"huenges\": \"huenges\",\n  \"huggett\": \"huggett\",\n  \"hugo\": \"hugo\",\n  \"huibertplaat\": \"huibertplat\",\n  \"huichel\": \"huichel\",\n  \"huichelen\": \"huichel\",\n  \"huid\": \"huid\",\n  \"huidartsen\": \"huidarts\",\n  \"huidcontact\": \"huidcontact\",\n  \"huiden\": \"huid\",\n  \"huidfonds\": \"huidfond\",\n  \"huidig\": \"huidig\",\n  \"huidige\": \"huidig\",\n  \"huidirritatie\": \"huidirritatie\",\n  \"huidirritaties\": \"huidirritaties\",\n  \"huidkanker\": \"huidkanker\",\n  \"huidnotatie\": \"huidnotatie\",\n  \"huif\": \"huif\",\n  \"huig\": \"huig\",\n  \"huigen\": \"huig\",\n  \"huigje\": \"huigj\",\n  \"huil\": \"huil\",\n  \"huilbui\": \"huilbui\",\n  \"huilde\": \"huild\",\n  \"huilen\": \"huil\",\n  \"huilend\": \"huilend\",\n  \"huilende\": \"huilend\",\n  \"huilens\": \"huilen\",\n  \"huilogen\": \"huilog\",\n  \"huilschreeuw\": \"huilschreeuw\",\n  \"huilt\": \"huilt\",\n  \"huis\": \"huis\",\n  \"huisafval\": \"huisafval\",\n  \"huisartsen\": \"huisarts\",\n  \"huisbel\": \"huisbel\",\n  \"huisblad\": \"huisblad\",\n  \"huisbrandolie\": \"huisbrandolie\",\n  \"huisbrandolietanks\": \"huisbrandolietank\",\n  \"huisdeur\": \"huisdeur\",\n  \"huisdieren\": \"huisdier\",\n  \"huisdokter\": \"huisdokter\",\n  \"huiseigenaren\": \"huiseigenar\",\n  \"huiselijk\": \"huiselijk\",\n  \"huiselijke\": \"huiselijk\",\n  \"huiselijkheid\": \"huiselijk\",\n  \"huisgezin\": \"huisgezin\",\n  \"huisgezins\": \"huisgezin\",\n  \"huishoudafval\": \"huishoudafval\",\n  \"huishoudelijk\": \"huishoud\",\n  \"huishoudelijke\": \"huishoud\",\n  \"huishouden\": \"huishoud\",\n  \"huishoudens\": \"huishouden\",\n  \"huishoudenstype\": \"huishoudenstyp\",\n  \"huishoudentje\": \"huishoudentj\",\n  \"huishouding\": \"huishoud\",\n  \"huishoudplastic\": \"huishoudplastic\",\n  \"huishoudplastics\": \"huishoudplastic\",\n  \"huishoudverpakkingen\": \"huishoudverpak\",\n  \"huisinterieur\": \"huisinterieur\",\n  \"huisjasje\": \"huisjasj\",\n  \"huisje\": \"huisj\",\n  \"huisjes\": \"huisjes\",\n  \"huiskamer\": \"huiskamer\",\n  \"huislijke\": \"huislijk\",\n  \"huisman\": \"huisman\",\n  \"huismijten\": \"huismijt\",\n  \"huissen\": \"huiss\",\n  \"huissleutel\": \"huissleutel\",\n  \"huisstijl\": \"huisstijl\",\n  \"huisvesten\": \"huisvest\",\n  \"huisvesting\": \"huisvest\",\n  \"huisvestingssystemen\": \"huisvestingssystem\",\n  \"huisvestte\": \"huisvest\",\n  \"huisvriend\": \"huisvriend\",\n  \"huisvrouw\": \"huisvrouw\",\n  \"huisvrouwen\": \"huisvrouw\",\n  \"huisvuil\": \"huisvuil\",\n  \"huisvuilcentrale\": \"huisvuilcentral\",\n  \"huisvuilcontainer\": \"huisvuilcontainer\",\n  \"huisvuilinzamelsysteem\": \"huisvuilinzamelsystem\",\n  \"huisvuilscheiding\": \"huisvuilscheid\",\n  \"huisvuilverbrandingsinstallaties\": \"huisvuilverbrandingsinstallaties\",\n  \"huisvuilwagenopbouw\": \"huisvuilwagenopbouw\",\n  \"huisvuilzak\": \"huisvuilzak\",\n  \"huisvuilzakken\": \"huisvuilzak\",\n  \"huisvuilzakkenfabrieken\": \"huisvuilzakkenfabriek\",\n  \"huiswijn\": \"huiswijn\",\n  \"huiverde\": \"huiverd\",\n  \"huiverden\": \"huiverd\",\n  \"huiveren\": \"huiver\",\n  \"huiverend\": \"huiver\",\n  \"huiverende\": \"huiver\",\n  \"huiverends\": \"huiver\",\n  \"huiverig\": \"huiver\",\n  \"huiverige\": \"huiver\",\n  \"huiverigs\": \"huiver\",\n  \"huivering\": \"huiver\",\n  \"huiveringen\": \"huiver\",\n  \"huiveringwekkend\": \"huiveringwek\",\n  \"huize\": \"huiz\",\n  \"huizen\": \"huiz\",\n  \"huizenbezitters\": \"huizenbezitter\",\n  \"huizenblok\": \"huizenblok\",\n  \"huizende\": \"huizend\",\n  \"huizenrij\": \"huizenrij\",\n  \"huizes\": \"huizes\",\n  \"hulde\": \"huld\",\n  \"hulden\": \"huld\",\n  \"hulp\": \"hulp\",\n  \"hulpbranders\": \"hulpbrander\",\n  \"hulpbron\": \"hulpbron\",\n  \"hulpbronnen\": \"hulpbronn\",\n  \"hulpeloos\": \"hulpelos\",\n  \"hulpmiddel\": \"hulpmiddel\",\n  \"hulpmiddelen\": \"hulpmiddel\",\n  \"hulpprogramma\": \"hulpprogramma\",\n  \"hulpstof\": \"hulpstof\",\n  \"hulpstoffen\": \"hulpstoff\",\n  \"hulpstukken\": \"hulpstuk\",\n  \"hulpvaardig\": \"hulpvaard\",\n  \"hulpvaardigheid\": \"hulpvaard\",\n  \"huls\": \"hul\",\n  \"hulst\": \"hulst\",\n  \"hultermans\": \"hulterman\",\n  \"humaan\": \"human\",\n  \"human\": \"human\",\n  \"humane\": \"human\",\n  \"humanizeert\": \"humanizeert\",\n  \"humbug\": \"humbug\",\n  \"humeur\": \"humeur\",\n  \"humeus\": \"humeus\",\n  \"hummelo\": \"hummelo\",\n  \"humor\": \"humor\",\n  \"humus\": \"humus\",\n  \"humusboekhouding\": \"humusboekhoud\",\n  \"humusgehalte\": \"humusgehalt\",\n  \"humusverhaal\": \"humusverhal\",\n  \"hun\": \"hun\",\n  \"hùn\": \"hùn\",\n  \"hunkemöller\": \"hunkemoller\",\n  \"hunne\": \"hunn\",\n  \"hunnen\": \"hunn\",\n  \"hunner\": \"hunner\",\n  \"hunze\": \"hunz\",\n  \"hunzedal\": \"hunzedal\",\n  \"huren\": \"hur\",\n  \"hurks\": \"hurk\",\n  \"hurkte\": \"hurkt\",\n  \"hûs\": \"hûs\",\n  \"huur\": \"hur\",\n  \"huurappartementen\": \"huurappartement\",\n  \"huurcoupé\": \"huurcoup\",\n  \"huurder\": \"huurder\",\n  \"huurders\": \"huurder\",\n  \"huurhuis\": \"huurhuis\",\n  \"huurprijs\": \"huurprijs\",\n  \"huurprijzen\": \"huurprijz\",\n  \"huurstijging\": \"huurstijg\",\n  \"huurt\": \"huurt\",\n  \"huurverhoging\": \"huurverhog\",\n  \"huurwoningen\": \"huurwon\",\n  \"huwde\": \"huwd\",\n  \"huwelijk\": \"huwelijk\",\n  \"huwelijken\": \"huwelijk\",\n  \"huwelijks\": \"huwelijk\",\n  \"huwelijksgeluk\": \"huwelijksgeluk\",\n  \"huwelijksleven\": \"huwelijkslev\",\n  \"huwelijkstoebereidselen\": \"huwelijkstoebereidsel\",\n  \"huwen\": \"huw\",\n  \"huwlijk\": \"huwlijk\",\n  \"huydekoper\": \"huydekoper\",\n  \"huygen\": \"huyg\",\n  \"huys\": \"huy\",\n  \"huzaar\": \"huzar\",\n  \"huzaren\": \"huzar\",\n  \"huzarenuniform\": \"huzarenuniform\",\n  \"hv\": \"hv\",\n  \"hybride\": \"hybrid\",\n  \"hydraatkristallen\": \"hydraatkristall\",\n  \"hydraten\": \"hydrat\",\n  \"hydraudyne\": \"hydraudyn\",\n  \"hydraulic\": \"hydraulic\",\n  \"hydraulics\": \"hydraulic\",\n  \"hydraulisch\": \"hydraulisch\",\n  \"hydraulische\": \"hydraulisch\",\n  \"hydride\": \"hydrid\",\n  \"hydrinn\": \"hydrinn\",\n  \"hydro\": \"hydro\",\n  \"hydrocarbon\": \"hydrocarbon\",\n  \"hydrocyclonen\": \"hydrocyclon\",\n  \"hydrodynamische\": \"hydrodynamisch\",\n  \"hydrofoob\": \"hydrofob\",\n  \"hydrogeneren\": \"hydrogener\",\n  \"hydrogeologie\": \"hydrogeologie\",\n  \"hydrogeoloog\": \"hydrogeolog\",\n  \"hydrokraker\": \"hydrokraker\",\n  \"hydrologisch\": \"hydrologisch\",\n  \"hydrologische\": \"hydrologisch\",\n  \"hydroloog\": \"hydrolog\",\n  \"hydropiëzo\": \"hydropiezo\",\n  \"hydroslide\": \"hydroslid\",\n  \"hydroxide\": \"hydroxid\",\n  \"hygiëne\": \"hygien\",\n  \"hygiëneprodukten\": \"hygieneprodukt\",\n  \"hygiënisch\": \"hygienisch\",\n  \"hygiënische\": \"hygienisch\",\n  \"hygromycine\": \"hygromycin\",\n  \"hymne\": \"hymn\",\n  \"hyp\": \"hyp\",\n  \"hypercar\": \"hypercar\",\n  \"hyperfiltratie\": \"hyperfiltratie\",\n  \"hypermoderne\": \"hypermodern\",\n  \"hypersil\": \"hypersil\",\n  \"hypnose\": \"hypnos\",\n  \"hypnotisch\": \"hypnotisch\",\n  \"hypnotiseerde\": \"hypnotiseerd\",\n  \"hypnotizeerde\": \"hypnotizeerd\",\n  \"hypnotizeert\": \"hypnotizeert\",\n  \"hypnoze\": \"hypnoz\",\n  \"hypochloriet\": \"hypochloriet\",\n  \"hypochonder\": \"hypochonder\",\n  \"hypocriet\": \"hypocriet\",\n  \"hypocriete\": \"hypocriet\",\n  \"hypotheek\": \"hypothek\",\n  \"hypotheekconstructie\": \"hypotheekconstructie\",\n  \"hypotheekrente\": \"hypotheekrent\",\n  \"hypothese\": \"hypothes\",\n  \"hysterie\": \"hysterie\",\n  \"hysteriën\": \"hysterien\",\n  \"hysterisch\": \"hysterisch\",\n  \"i\": \"i\",\n  \"iac\": \"iac\",\n  \"iaea\": \"iaea\",\n  \"ial\": \"ial\",\n  \"iba\": \"iba\",\n  \"ibc\": \"ibc\",\n  \"ibm\": \"ibm\",\n  \"ibn\": \"ibn\",\n  \"ibs\": \"ibs\",\n  \"ic\": \"ic\",\n  \"icao\": \"icao\",\n  \"iceberg\": \"iceberg\",\n  \"ices\": \"ices\",\n  \"icf\": \"icf\",\n  \"icheme\": \"ichem\",\n  \"ici\": \"ici\",\n  \"icke\": \"ick\",\n  \"icl\": \"icl\",\n  \"icova\": \"icova\",\n  \"icpaes\": \"icpaes\",\n  \"ics\": \"ics\",\n  \"id\": \"id\",\n  \"idaho\": \"idaho\",\n  \"idb\": \"idb\",\n  \"ideaal\": \"ideaal\",\n  \"ideale\": \"ideal\",\n  \"idealist\": \"idealist\",\n  \"idealistische\": \"idealistisch\",\n  \"ideality\": \"ideality\",\n  \"ideas\": \"ideas\",\n  \"idee\": \"idee\",\n  \"ideeën\": \"ideeen\",\n  \"ideële\": \"idel\",\n  \"idees\": \"ides\",\n  \"idem\": \"idem\",\n  \"identiek\": \"identiek\",\n  \"identieke\": \"identiek\",\n  \"identificatie\": \"identificatie\",\n  \"identificatiestudie\": \"identificatiestudie\",\n  \"identificatiesysteem\": \"identificatiesystem\",\n  \"identificeert\": \"identificeert\",\n  \"identificeren\": \"identificer\",\n  \"identificerend\": \"identificer\",\n  \"identiteit\": \"identiteit\",\n  \"ideologische\": \"ideologisch\",\n  \"idioot\": \"idioot\",\n  \"idiote\": \"idiot\",\n  \"idool\": \"idol\",\n  \"idstein\": \"idstein\",\n  \"idyllisch\": \"idyllisch\",\n  \"ie\": \"ie\",\n  \"iea\": \"iea\",\n  \"iec\": \"iec\",\n  \"ieder\": \"ieder\",\n  \"iedere\": \"ieder\",\n  \"iedereen\": \"iederen\",\n  \"iederendaagse\": \"iederendag\",\n  \"iemand\": \"iemand\",\n  \"iepen\": \"iep\",\n  \"iepensterfte\": \"iepensterft\",\n  \"iepziekte\": \"iepziekt\",\n  \"ierland\": \"ierland\",\n  \"ierse\": \"ier\",\n  \"iet\": \"iet\",\n  \"ièt\": \"ièt\",\n  \"iets\": \"iet\",\n  \"ièts\": \"ièt\",\n  \"ietsje\": \"ietsj\",\n  \"ietwat\": \"ietwat\",\n  \"if\": \"if\",\n  \"ifat\": \"ifat\",\n  \"ifest\": \"ifest\",\n  \"ignobele\": \"ignobel\",\n  \"igt\": \"igt\",\n  \"ihc\": \"ihc\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"ij\": \"ij\",\n  \"ijburg\": \"ijburg\",\n  \"ijdel\": \"ijdel\",\n  \"ijdele\": \"ijdel\",\n  \"ijdelheid\": \"ijdel\",\n  \"ijdeltuit\": \"ijdeltuit\",\n  \"ijide\": \"ijid\",\n  \"ijking\": \"ijking\",\n  \"ijkstra\": \"ijkstra\",\n  \"ijl\": \"ijl\",\n  \"ijlblauwe\": \"ijlblauw\",\n  \"ijlde\": \"ijld\",\n  \"ijlden\": \"ijld\",\n  \"ijle\": \"ijl\",\n  \"ijlen\": \"ijl\",\n  \"ijlende\": \"ijlend\",\n  \"ijler\": \"ijler\",\n  \"ijlt\": \"ijlt\",\n  \"ijmeer\": \"ijmer\",\n  \"ijmond\": \"ijmond\",\n  \"ijmondgebied\": \"ijmondgebied\",\n  \"ijmuiden\": \"ijmuid\",\n  \"ijpoort\": \"ijpoort\",\n  \"ijs\": \"ijs\",\n  \"ijsbreker\": \"ijsbreker\",\n  \"ijsdagen\": \"ijsdag\",\n  \"ijsdendrieten\": \"ijsdendriet\",\n  \"ijselland\": \"ijselland\",\n  \"ijskasten\": \"ijskast\",\n  \"ijskoud\": \"ijskoud\",\n  \"ijskoude\": \"ijskoud\",\n  \"ijskristal\": \"ijskristal\",\n  \"ijskristallen\": \"ijskristall\",\n  \"ijskristalstructuren\": \"ijskristalstructur\",\n  \"ijslaag\": \"ijslag\",\n  \"ijsland\": \"ijsland\",\n  \"ijsmassa\": \"ijsmassa\",\n  \"ijsplaten\": \"ijsplat\",\n  \"ijspret\": \"ijspret\",\n  \"ijsschuursporen\": \"ijsschuurspor\",\n  \"ijssel\": \"ijssel\",\n  \"ijsseldelta\": \"ijsseldelta\",\n  \"ijsselhallen\": \"ijsselhall\",\n  \"ijsselland\": \"ijsselland\",\n  \"ijsselmeer\": \"ijsselmer\",\n  \"ijsselmeerdijken\": \"ijsselmeerdijk\",\n  \"ijsselmeergebied\": \"ijsselmeergebied\",\n  \"ijsselmeerpolders\": \"ijsselmeerpolder\",\n  \"ijsselmeervereniging\": \"ijsselmeerveren\",\n  \"ijsselmij\": \"ijsselmij\",\n  \"ijsselmuiden\": \"ijsselmuid\",\n  \"ijsselstein\": \"ijsselstein\",\n  \"ijstijden\": \"ijstijd\",\n  \"ijsvrij\": \"ijsvrij\",\n  \"ijswolken\": \"ijswolk\",\n  \"ijszee\": \"ijszee\",\n  \"ijver\": \"ijver\",\n  \"ijveren\": \"ijver\",\n  \"ijverig\": \"ijver\",\n  \"ijverige\": \"ijver\",\n  \"ijverzachtig\": \"ijverzacht\",\n  \"ijverzucht\": \"ijverzucht\",\n  \"ijverzuchten\": \"ijverzucht\",\n  \"ijverzuchtig\": \"ijverzucht\",\n  \"ijverzuchtige\": \"ijverzucht\",\n  \"ijzel\": \"ijzel\",\n  \"ijzendoorn\": \"ijzendoorn\",\n  \"ijzer\": \"ijzer\",\n  \"ijzerchloride\": \"ijzerchlorid\",\n  \"ijzerdraad\": \"ijzerdrad\",\n  \"ijzeren\": \"ijzer\",\n  \"ijzerfabriek\": \"ijzerfabriek\",\n  \"ijzerfabrikant\": \"ijzerfabrikant\",\n  \"ijzergieterij\": \"ijzergieterij\",\n  \"ijzerhoudend\": \"ijzerhoud\",\n  \"ijzerhoudende\": \"ijzerhoud\",\n  \"ijzerhydroxyde\": \"ijzerhydroxyd\",\n  \"ijzermoleculen\": \"ijzermolecul\",\n  \"ijzeroxyde\": \"ijzeroxyd\",\n  \"ijzerproduktie\": \"ijzerproduktie\",\n  \"ijzerrijk\": \"ijzerrijk\",\n  \"ijzerverontreiniging\": \"ijzerverontrein\",\n  \"ijzig\": \"ijzig\",\n  \"ijzige\": \"ijzig\",\n  \"ijzigheid\": \"ijzig\",\n  \"ijzing\": \"ijzing\",\n  \"ik\": \"ik\",\n  \"ikb\": \"ikb\",\n  \"ikc\": \"ikc\",\n  \"ikimi\": \"ikimi\",\n  \"ikje\": \"ikj\",\n  \"ikp\": \"ikp\",\n  \"ikzelf\": \"ikzelf\",\n  \"il\": \"il\",\n  \"ile\": \"ile\",\n  \"iljoesjin\": \"iljoesjin\",\n  \"illegaal\": \"illegal\",\n  \"illegale\": \"illegal\",\n  \"illegaliteit\": \"illegaliteit\",\n  \"illinois\": \"illinois\",\n  \"illustration\": \"illustration\",\n  \"illuzie\": \"illuzie\",\n  \"illuzies\": \"illuzies\",\n  \"illya\": \"illya\",\n  \"im\": \"im\",\n  \"ima\": \"ima\",\n  \"imag\": \"imag\",\n  \"image\": \"imag\",\n  \"imago\": \"imago\",\n  \"imagocampagne\": \"imagocampagn\",\n  \"imagoverbetering\": \"imagoverbeter\",\n  \"imd\": \"imd\",\n  \"imdmicon\": \"imdmicon\",\n  \"imh\": \"imh\",\n  \"imitatie\": \"imitatie\",\n  \"imitaties\": \"imitaties\",\n  \"imitation\": \"imitation\",\n  \"imiteren\": \"imiter\",\n  \"immateriële\": \"immateriel\",\n  \"immens\": \"immen\",\n  \"immense\": \"immen\",\n  \"immensiteit\": \"immensiteit\",\n  \"immers\": \"immer\",\n  \"immobilisaat\": \"immobilisat\",\n  \"immobilisatie\": \"immobilisatie\",\n  \"immobilisatieprocédé\": \"immobilisatieproced\",\n  \"immobilisatietechniek\": \"immobilisatietechniek\",\n  \"immobilisatietechnieken\": \"immobilisatietechniek\",\n  \"immobiliseren\": \"immobiliser\",\n  \"immoreels\": \"immorel\",\n  \"immunoassay\": \"immunoassay\",\n  \"impact\": \"impact\",\n  \"impacts\": \"impact\",\n  \"impasse\": \"impas\",\n  \"imperatieve\": \"imperatiev\",\n  \"imperial\": \"imperial\",\n  \"imperiale\": \"imperial\",\n  \"imperialistische\": \"imperialistisch\",\n  \"impertinent\": \"impertinent\",\n  \"implementatie\": \"implementatie\",\n  \"implementatieprocessen\": \"implementatieprocess\",\n  \"implementatieschema\": \"implementatieschema\",\n  \"implementatietijd\": \"implementatietijd\",\n  \"implementation\": \"implementation\",\n  \"implementeren\": \"implementer\",\n  \"implicaties\": \"implicaties\",\n  \"implications\": \"implication\",\n  \"impliceert\": \"impliceert\",\n  \"impliciete\": \"impliciet\",\n  \"impopulair\": \"impopulair\",\n  \"impopulaire\": \"impopulair\",\n  \"import\": \"import\",\n  \"importaardappelen\": \"importaardappel\",\n  \"importeerde\": \"importeerd\",\n  \"importeert\": \"importeert\",\n  \"importen\": \"import\",\n  \"importeren\": \"importer\",\n  \"importeur\": \"importeur\",\n  \"importeurs\": \"importeur\",\n  \"importfirma\": \"importfirma\",\n  \"importvergunning\": \"importvergunn\",\n  \"imposant\": \"imposant\",\n  \"impregneerbedrijven\": \"impregneerbedrijv\",\n  \"impregneermiddel\": \"impregneermiddel\",\n  \"impregneermidelen\": \"impregneermidel\",\n  \"impregneren\": \"impregner\",\n  \"improviseren\": \"improviser\",\n  \"impuls\": \"impul\",\n  \"impulsen\": \"impuls\",\n  \"impulsie\": \"impulsie\",\n  \"impulsief\": \"impulsief\",\n  \"impulsies\": \"impulsies\",\n  \"impulsprogramma\": \"impulsprogramma\",\n  \"ims\": \"ims\",\n  \"imsa\": \"imsa\",\n  \"imt\": \"imt\",\n  \"in\": \"in\",\n  \"inachtneming\": \"inachtnem\",\n  \"inactiveren\": \"inactiver\",\n  \"inactivering\": \"inactiver\",\n  \"inademen\": \"inadem\",\n  \"inademing\": \"inadem\",\n  \"inadequate\": \"inadequat\",\n  \"inauguratie\": \"inauguratie\",\n  \"inaugurele\": \"inaugurel\",\n  \"inbedden\": \"inbed\",\n  \"inbedding\": \"inbed\",\n  \"inbedrijfstelling\": \"inbedrijfstell\",\n  \"inbegrepen\": \"inbegrep\",\n  \"inbegrip\": \"inbegrip\",\n  \"inbeslagname\": \"inbeslagnam\",\n  \"inbeslagneming\": \"inbeslagnem\",\n  \"inbinden\": \"inbind\",\n  \"inblazen\": \"inblaz\",\n  \"inbo\": \"inbo\",\n  \"inboezemde\": \"inboezemd\",\n  \"inborst\": \"inborst\",\n  \"inbouw\": \"inbouw\",\n  \"inbouwen\": \"inbouw\",\n  \"inbranding\": \"inbrand\",\n  \"inbreiding\": \"inbreid\",\n  \"inbrekerszielen\": \"inbrekersziel\",\n  \"inbreng\": \"inbreng\",\n  \"inbrengen\": \"inbreng\",\n  \"inbrengt\": \"inbrengt\",\n  \"inbreuk\": \"inbreuk\",\n  \"inc\": \"inc\",\n  \"incentive\": \"incentiv\",\n  \"incentives\": \"incentives\",\n  \"incident\": \"incident\",\n  \"incidenteel\": \"incidentel\",\n  \"incidentele\": \"incidentel\",\n  \"incidenten\": \"incident\",\n  \"incinerator\": \"incinerator\",\n  \"inclusief\": \"inclusief\",\n  \"incoherent\": \"incoherent\",\n  \"incorporation\": \"incorporation\",\n  \"indampen\": \"indamp\",\n  \"indamping\": \"indamp\",\n  \"indampprocédé\": \"indampproced\",\n  \"indapp\": \"indapp\",\n  \"indaver\": \"indaver\",\n  \"indekken\": \"indek\",\n  \"indeling\": \"indel\",\n  \"independent\": \"independent\",\n  \"inderdaad\": \"inderdad\",\n  \"inderson\": \"inderson\",\n  \"indertijd\": \"indertijd\",\n  \"indes\": \"indes\",\n  \"index\": \"index\",\n  \"indexcijfers\": \"indexcijfer\",\n  \"india\": \"india\",\n  \"indiana\": \"indiana\",\n  \"indianen\": \"indian\",\n  \"indianenstammen\": \"indianenstamm\",\n  \"indiase\": \"indias\",\n  \"indicatie\": \"indicatie\",\n  \"indicatief\": \"indicatief\",\n  \"indicaties\": \"indicaties\",\n  \"indicatieve\": \"indicatiev\",\n  \"indicator\": \"indicator\",\n  \"indicatoren\": \"indicator\",\n  \"indicatormethode\": \"indicatormethod\",\n  \"indië\": \"indie\",\n  \"indien\": \"indien\",\n  \"indienen\": \"indien\",\n  \"indiener\": \"indiener\",\n  \"indieners\": \"indiener\",\n  \"indiening\": \"indien\",\n  \"indieningstermijn\": \"indieningstermijn\",\n  \"indiest\": \"indiest\",\n  \"indigo\": \"indigo\",\n  \"indirect\": \"indirect\",\n  \"indirecte\": \"indirect\",\n  \"indisch\": \"indisch\",\n  \"indische\": \"indisch\",\n  \"indiscreet\": \"indiscret\",\n  \"individu\": \"individu\",\n  \"individueel\": \"individueel\",\n  \"individuele\": \"individuel\",\n  \"individuen\": \"individuen\",\n  \"indofin\": \"indofin\",\n  \"indonesia\": \"indonesia\",\n  \"indonesië\": \"indonesie\",\n  \"indonesische\": \"indonesisch\",\n  \"indonor\": \"indonor\",\n  \"indringer\": \"indringer\",\n  \"indringster\": \"indringster\",\n  \"indruk\": \"indruk\",\n  \"inductie\": \"inductie\",\n  \"inductive\": \"inductiv\",\n  \"indumij\": \"indumij\",\n  \"industria\": \"industria\",\n  \"industrial\": \"industrial\",\n  \"industrialisatie\": \"industrialisatie\",\n  \"industrie\": \"industrie\",\n  \"industriebanden\": \"industrieband\",\n  \"industriebond\": \"industriebond\",\n  \"industriebonden\": \"industriebond\",\n  \"industrieel\": \"industrieel\",\n  \"industrieën\": \"industrieen\",\n  \"industriegebied\": \"industriegebied\",\n  \"industriegebieden\": \"industriegebied\",\n  \"industriegigant\": \"industriegigant\",\n  \"industriehaven\": \"industriehav\",\n  \"industrielanden\": \"industrieland\",\n  \"industrielawaai\": \"industrielawaai\",\n  \"industriële\": \"industriel\",\n  \"industriëlen\": \"industriel\",\n  \"industriepolitieke\": \"industriepolitiek\",\n  \"industrier\": \"industrier\",\n  \"industries\": \"industries\",\n  \"industrietak\": \"industrietak\",\n  \"industrietakken\": \"industrietak\",\n  \"industrieterrein\": \"industrieterrein\",\n  \"industrieterreinen\": \"industrieterrein\",\n  \"industrievloeren\": \"industrievloer\",\n  \"industriewater\": \"industriewater\",\n  \"industriewaterproject\": \"industriewaterproject\",\n  \"industrieweg\": \"industrieweg\",\n  \"industriezand\": \"industriezand\",\n  \"industriezandwinning\": \"industriezandwinn\",\n  \"industry\": \"industry\",\n  \"ineen\": \"inen\",\n  \"ineengeschrompeld\": \"ineengeschrompeld\",\n  \"ineens\": \"inen\",\n  \"ineéns\": \"inen\",\n  \"ineenstorten\": \"ineenstort\",\n  \"ineenstorting\": \"ineenstort\",\n  \"ineffectiviteit\": \"ineffectiviteit\",\n  \"inefficiënt\": \"inefficient\",\n  \"inefficiëntie\": \"inefficientie\",\n  \"inert\": \"inert\",\n  \"inerte\": \"inert\",\n  \"inertie\": \"inertie\",\n  \"inertscheider\": \"inertscheider\",\n  \"ines\": \"ines\",\n  \"infectie\": \"infectie\",\n  \"infectueuze\": \"infectueuz\",\n  \"infiltratie\": \"infiltratie\",\n  \"infiltratiebesluit\": \"infiltratiebesluit\",\n  \"infiltratievoorziening\": \"infiltratievoorzien\",\n  \"infiltreren\": \"infiltrer\",\n  \"inflatie\": \"inflatie\",\n  \"inflow\": \"inflow\",\n  \"influences\": \"influences\",\n  \"influenza\": \"influenza\",\n  \"info\": \"info\",\n  \"infocentrum\": \"infocentrum\",\n  \"infodisk\": \"infodisk\",\n  \"infolijn\": \"infolijn\",\n  \"infoline\": \"infolin\",\n  \"infomil\": \"infomil\",\n  \"informatica\": \"informatica\",\n  \"informatie\": \"informatie\",\n  \"informatieavond\": \"informatieavond\",\n  \"informatiebalk\": \"informatiebalk\",\n  \"informatiebank\": \"informatiebank\",\n  \"informatiebeleid\": \"informatiebeleid\",\n  \"informatiebijeenkomst\": \"informatiebijeenkomst\",\n  \"informatiebijeenkomsten\": \"informatiebijeenkomst\",\n  \"informatieblad\": \"informatieblad\",\n  \"informatiebladen\": \"informatieblad\",\n  \"informatiebron\": \"informatiebron\",\n  \"informatiebureau\": \"informatiebureau\",\n  \"informatiecentrum\": \"informatiecentrum\",\n  \"informatiedienst\": \"informatiedienst\",\n  \"informatiedrager\": \"informatiedrager\",\n  \"informatiefuncties\": \"informatiefuncties\",\n  \"informatielijn\": \"informatielijn\",\n  \"informatienetwerk\": \"informatienetwerk\",\n  \"informatiepakket\": \"informatiepakket\",\n  \"informatieplan\": \"informatieplan\",\n  \"informatieplicht\": \"informatieplicht\",\n  \"informatiepunt\": \"informatiepunt\",\n  \"informatiepunten\": \"informatiepunt\",\n  \"informatiescherm\": \"informatiescherm\",\n  \"informatiestand\": \"informatiestand\",\n  \"informatiestructuur\": \"informatiestructur\",\n  \"informatiesysteem\": \"informatiesystem\",\n  \"informatiesystemen\": \"informatiesystem\",\n  \"informatietechnologie\": \"informatietechnologie\",\n  \"informatieve\": \"informatiev\",\n  \"informatieverkeer\": \"informatieverker\",\n  \"informatieversnippering\": \"informatieversnipper\",\n  \"informatievoorziening\": \"informatievoorzien\",\n  \"information\": \"information\",\n  \"informationsdienst\": \"informationsdienst\",\n  \"informeel\": \"informel\",\n  \"informeerde\": \"informeerd\",\n  \"informeert\": \"informeert\",\n  \"informele\": \"informel\",\n  \"informeren\": \"informer\",\n  \"infrarood\": \"infrarod\",\n  \"infraroodstralers\": \"infraroodstraler\",\n  \"infrastructure\": \"infrastructur\",\n  \"infrastructurele\": \"infrastructurel\",\n  \"infrastructuur\": \"infrastructur\",\n  \"infrastructuurplannen\": \"infrastructuurplann\",\n  \"infratech\": \"infratech\",\n  \"ing\": \"ing\",\n  \"ingaan\": \"ingan\",\n  \"ingaande\": \"ingaand\",\n  \"ingaat\": \"ingat\",\n  \"ingaf\": \"ingaf\",\n  \"ingang\": \"ingang\",\n  \"ingangsdatum\": \"ingangsdatum\",\n  \"ingangsmateriaal\": \"ingangsmateriaal\",\n  \"ingeademd\": \"ingeademd\",\n  \"ingebed\": \"ingebed\",\n  \"ingeblikt\": \"ingeblikt\",\n  \"ingebonden\": \"ingebond\",\n  \"ingeboren\": \"ingebor\",\n  \"ingebouwd\": \"ingebouwd\",\n  \"ingebouwde\": \"ingebouwd\",\n  \"ingebracht\": \"ingebracht\",\n  \"ingebrachte\": \"ingebracht\",\n  \"ingebruikname\": \"ingebruiknam\",\n  \"ingebruikneming\": \"ingebruiknem\",\n  \"ingeburgerd\": \"ingeburgerd\",\n  \"ingeburgerde\": \"ingeburgerd\",\n  \"ingedeeld\": \"ingedeeld\",\n  \"ingediend\": \"ingedi\",\n  \"ingediende\": \"ingedi\",\n  \"ingedikt\": \"ingedikt\",\n  \"ingedrongen\": \"ingedrong\",\n  \"ingeeft\": \"ingeeft\",\n  \"ingegaan\": \"ingegan\",\n  \"ingegeven\": \"ingegev\",\n  \"ingegooid\": \"ingegooid\",\n  \"ingegraven\": \"ingegrav\",\n  \"ingegrepen\": \"ingegrep\",\n  \"ingehaald\": \"ingehaald\",\n  \"ingehouden\": \"ingehoud\",\n  \"ingehuurd\": \"ingehuurd\",\n  \"ingekapseld\": \"ingekapseld\",\n  \"ingekeken\": \"ingekek\",\n  \"ingeklemd\": \"ingeklemd\",\n  \"ingekochte\": \"ingekocht\",\n  \"ingekrimpte\": \"ingekrimpt\",\n  \"ingekrompen\": \"ingekromp\",\n  \"ingelast\": \"ingelast\",\n  \"ingeleerd\": \"ingeleerd\",\n  \"ingelegd\": \"ingelegd\",\n  \"ingelegde\": \"ingelegd\",\n  \"ingeleverd\": \"ingeleverd\",\n  \"ingeleverde\": \"ingeleverd\",\n  \"ingelheim\": \"ingelheim\",\n  \"ingelicht\": \"ingelicht\",\n  \"ingelogd\": \"ingelogd\",\n  \"ingelopen\": \"ingelop\",\n  \"ingenieur\": \"ingenieur\",\n  \"ingenieure\": \"ingenieur\",\n  \"ingenieurs\": \"ingenieur\",\n  \"ingenieursbedrijf\": \"ingenieursbedrijf\",\n  \"ingenieursbureau\": \"ingenieursbureau\",\n  \"ingenieursbureaus\": \"ingenieursbureaus\",\n  \"ingenieursoplossing\": \"ingenieursoploss\",\n  \"ingenomen\": \"ingenom\",\n  \"ingepakt\": \"ingepakt\",\n  \"ingepast\": \"ingepast\",\n  \"ingepland\": \"ingepland\",\n  \"ingepompt\": \"ingepompt\",\n  \"ingerekend\": \"ingerek\",\n  \"ingericht\": \"ingericht\",\n  \"ingerichte\": \"ingericht\",\n  \"ingeroepen\": \"ingeroep\",\n  \"ingeschakeld\": \"ingeschakeld\",\n  \"ingeschat\": \"ingeschat\",\n  \"ingeschatte\": \"ingeschat\",\n  \"ingeschreven\": \"ingeschrev\",\n  \"ingeschrompelde\": \"ingeschrompeld\",\n  \"ingeslagen\": \"ingeslag\",\n  \"ingeslapen\": \"ingeslap\",\n  \"ingesluimerd\": \"ingesluimerd\",\n  \"ingespannen\": \"ingespann\",\n  \"ingespeeld\": \"ingespeeld\",\n  \"ingespoten\": \"ingespot\",\n  \"ingesteld\": \"ingesteld\",\n  \"ingestelde\": \"ingesteld\",\n  \"ingestemd\": \"ingestemd\",\n  \"ingestompt\": \"ingestompt\",\n  \"ingestraalde\": \"ingestraald\",\n  \"ingestuurd\": \"ingestuurd\",\n  \"ingetekende\": \"ingetek\",\n  \"ingetrokken\": \"ingetrok\",\n  \"ingeval\": \"ingeval\",\n  \"ingevallen\": \"ingevall\",\n  \"ingeving\": \"ingev\",\n  \"ingevoerd\": \"ingevoerd\",\n  \"ingevoerde\": \"ingevoerd\",\n  \"ingevuld\": \"ingevuld\",\n  \"ingewanden\": \"ingewand\",\n  \"ingewikkeld\": \"ingewikkeld\",\n  \"ingewikkelde\": \"ingewikkeld\",\n  \"ingewikkelder\": \"ingewikkelder\",\n  \"ingewilligd\": \"ingewilligd\",\n  \"ingewonnen\": \"ingewonn\",\n  \"ingeworteld\": \"ingeworteld\",\n  \"ingezaaid\": \"ingezaaid\",\n  \"ingezameld\": \"ingezameld\",\n  \"ingezamelde\": \"ingezameld\",\n  \"ingezet\": \"ingezet\",\n  \"ingezetenen\": \"ingezeten\",\n  \"ingezetenenbelasting\": \"ingezetenenbelast\",\n  \"ingezette\": \"ingezet\",\n  \"ingezien\": \"ingezien\",\n  \"ingeziene\": \"ingezien\",\n  \"ingezogen\": \"ingezog\",\n  \"ingezonden\": \"ingezond\",\n  \"ingezonken\": \"ingezonk\",\n  \"ingingen\": \"inging\",\n  \"ingolstadt\": \"ingolstadt\",\n  \"ingooihoogte\": \"ingooihoogt\",\n  \"ingrediënt\": \"ingredient\",\n  \"ingrediënten\": \"ingredient\",\n  \"ingreep\": \"ingrep\",\n  \"ingrepen\": \"ingrep\",\n  \"ingrijpen\": \"ingrijp\",\n  \"ingrijpend\": \"ingrijp\",\n  \"ingrijpende\": \"ingrijp\",\n  \"ingrijpt\": \"ingrijpt\",\n  \"inhaalslag\": \"inhaalslag\",\n  \"inhaalt\": \"inhaalt\",\n  \"inhaalverbod\": \"inhaalverbod\",\n  \"inhaleerbaar\": \"inhaler\",\n  \"inhalen\": \"inhal\",\n  \"inhalende\": \"inhal\",\n  \"inhaleringsstudies\": \"inhaleringsstudies\",\n  \"inhammen\": \"inhamm\",\n  \"inheemse\": \"inhem\",\n  \"inherent\": \"inherent\",\n  \"inhibitie\": \"inhibitie\",\n  \"inhield\": \"inhield\",\n  \"inhomogeniteiten\": \"inhomogeniteit\",\n  \"inhoud\": \"inhoud\",\n  \"inhoudelijk\": \"inhoud\",\n  \"inhoudelijke\": \"inhoud\",\n  \"inhouden\": \"inhoud\",\n  \"inhoudende\": \"inhoud\",\n  \"inhouding\": \"inhoud\",\n  \"inhoudsbeschrijving\": \"inhoudsbeschrijv\",\n  \"inhoudsmaat\": \"inhoudsmat\",\n  \"inhoudsopgaven\": \"inhoudsopgav\",\n  \"inhoudt\": \"inhoudt\",\n  \"inhouwt\": \"inhouwt\",\n  \"iniatiefnemers\": \"iniatiefnemer\",\n  \"initiatief\": \"initiatief\",\n  \"initiatiefgroep\": \"initiatiefgroep\",\n  \"initiatiefneemster\": \"initiatiefneemster\",\n  \"initiatiefnemer\": \"initiatiefnemer\",\n  \"initiatiefnemers\": \"initiatiefnemer\",\n  \"initiatieven\": \"initiatiev\",\n  \"initiative\": \"initiativ\",\n  \"initiator\": \"initiator\",\n  \"initiële\": \"initiel\",\n  \"initiëren\": \"initier\",\n  \"injecteert\": \"injecteert\",\n  \"injecteren\": \"injecter\",\n  \"injectie\": \"injectie\",\n  \"injectiedruk\": \"injectiedruk\",\n  \"injectiespuiten\": \"injectiespuit\",\n  \"injectiesysteem\": \"injectiesystem\",\n  \"injection\": \"injection\",\n  \"injury\": \"injury\",\n  \"ink\": \"ink\",\n  \"inkapseling\": \"inkapsel\",\n  \"inkijken\": \"inkijk\",\n  \"inklappen\": \"inklapp\",\n  \"inklinken\": \"inklink\",\n  \"inklinking\": \"inklink\",\n  \"inkomen\": \"inkom\",\n  \"inkomende\": \"inkom\",\n  \"inkomens\": \"inkomen\",\n  \"inkomenscijfer\": \"inkomenscijfer\",\n  \"inkomenscompensatie\": \"inkomenscompensatie\",\n  \"inkomensgroei\": \"inkomensgroei\",\n  \"inkomensgroepen\": \"inkomensgroep\",\n  \"inkomensklasse\": \"inkomensklas\",\n  \"inkomensverdeling\": \"inkomensverdel\",\n  \"inkomensverlies\": \"inkomensverlies\",\n  \"inkomensverschillen\": \"inkomensverschill\",\n  \"inkomsten\": \"inkomst\",\n  \"inkomstenbelasting\": \"inkomstenbelast\",\n  \"inkomstenbetasting\": \"inkomstenbetast\",\n  \"inkomsteneffect\": \"inkomsteneffect\",\n  \"inkomstenverlies\": \"inkomstenverlies\",\n  \"inkoop\": \"inkop\",\n  \"inkoopt\": \"inkoopt\",\n  \"inkopen\": \"inkop\",\n  \"inkopers\": \"inkoper\",\n  \"inkrimpen\": \"inkrimp\",\n  \"inkrimping\": \"inkrimp\",\n  \"inkrimpingen\": \"inkrimp\",\n  \"inkromp\": \"inkromp\",\n  \"inkruist\": \"inkruist\",\n  \"inkt\": \"inkt\",\n  \"inkten\": \"inkt\",\n  \"inktkoker\": \"inktkoker\",\n  \"inktresten\": \"inktrest\",\n  \"inktvis\": \"inktvis\",\n  \"inla\": \"inla\",\n  \"inlaat\": \"inlat\",\n  \"inlaatdruk\": \"inlaatdruk\",\n  \"inlaatgemaal\": \"inlaatgemal\",\n  \"inlaatkanaal\": \"inlaatkanal\",\n  \"inlaatlucht\": \"inlaatlucht\",\n  \"inlaatmechanisme\": \"inlaatmechanism\",\n  \"inlaatpijp\": \"inlaatpijp\",\n  \"inlaatschoepen\": \"inlaatschoep\",\n  \"inlaatsysteem\": \"inlaatsystem\",\n  \"inlands\": \"inland\",\n  \"inleg\": \"inleg\",\n  \"inleiding\": \"inleid\",\n  \"inleven\": \"inlev\",\n  \"inleverbakken\": \"inleverbak\",\n  \"inleverdata\": \"inleverdata\",\n  \"inleveren\": \"inlever\",\n  \"inlevering\": \"inlever\",\n  \"inlevert\": \"inlevert\",\n  \"inlichtingen\": \"inlicht\",\n  \"inliepen\": \"inliep\",\n  \"inliggende\": \"inligg\",\n  \"inloggen\": \"inlogg\",\n  \"inloopt\": \"inloopt\",\n  \"inmenging\": \"inmeng\",\n  \"inmiddels\": \"inmiddel\",\n  \"innam\": \"innam\",\n  \"inname\": \"innam\",\n  \"innamen\": \"innam\",\n  \"inneemt\": \"inneemt\",\n  \"innemen\": \"innem\",\n  \"innemend\": \"innem\",\n  \"innemends\": \"innem\",\n  \"innen\": \"inn\",\n  \"innerlijk\": \"inner\",\n  \"innerlijke\": \"inner\",\n  \"innerlijkste\": \"innerlijkst\",\n  \"innerste\": \"innerst\",\n  \"innig\": \"innig\",\n  \"innige\": \"innig\",\n  \"innigende\": \"innig\",\n  \"inniger\": \"inniger\",\n  \"innigheid\": \"innig\",\n  \"innigjes\": \"innigjes\",\n  \"innigste\": \"innigst\",\n  \"innovatie\": \"innovatie\",\n  \"innovatiecentra\": \"innovatiecentra\",\n  \"innovatiecentrum\": \"innovatiecentrum\",\n  \"innovatief\": \"innovatief\",\n  \"innovatiegericht\": \"innovatiegericht\",\n  \"innovatieketen\": \"innovatieket\",\n  \"innovatieketens\": \"innovatieketen\",\n  \"innovatieproces\": \"innovatieproces\",\n  \"innovaties\": \"innovaties\",\n  \"innovatiestrategie\": \"innovatiestrategie\",\n  \"innovatieve\": \"innovatiev\",\n  \"innovation\": \"innovation\",\n  \"innovative\": \"innovativ\",\n  \"innovator\": \"innovator\",\n  \"innovene\": \"innov\",\n  \"innoveren\": \"innover\",\n  \"innoverende\": \"innover\",\n  \"inodes\": \"inodes\",\n  \"inofficiële\": \"inofficiel\",\n  \"inpakken\": \"inpak\",\n  \"inpalmen\": \"inpalm\",\n  \"inpasbaar\": \"inpas\",\n  \"inpasbaarheid\": \"inpas\",\n  \"inpassen\": \"inpass\",\n  \"inpassing\": \"inpass\",\n  \"inperking\": \"inperk\",\n  \"inplaats\": \"inplat\",\n  \"inplanten\": \"inplant\",\n  \"inpoldering\": \"inpolder\",\n  \"inpompen\": \"inpomp\",\n  \"inprenten\": \"inprent\",\n  \"inprentten\": \"inprent\",\n  \"input\": \"input\",\n  \"inputs\": \"input\",\n  \"inreed\": \"inred\",\n  \"inregelen\": \"inregel\",\n  \"inregeling\": \"inregel\",\n  \"inrichtend\": \"inricht\",\n  \"inrichting\": \"inricht\",\n  \"inrichtingen\": \"inricht\",\n  \"inrichtinggebonden\": \"inrichtinggebond\",\n  \"inrichtingsgebonden\": \"inrichtingsgebond\",\n  \"inrichtingskosten\": \"inrichtingskost\",\n  \"inrichtingsmaterialen\": \"inrichtingsmaterial\",\n  \"inrichtingsplan\": \"inrichtingsplan\",\n  \"inrichtingsplannen\": \"inrichtingsplann\",\n  \"inrichtte\": \"inricht\",\n  \"inruilen\": \"inruil\",\n  \"inruimen\": \"inruim\",\n  \"insaan\": \"insan\",\n  \"inschakelen\": \"inschakel\",\n  \"inschakelt\": \"inschakelt\",\n  \"inschatten\": \"inschat\",\n  \"inschatting\": \"inschat\",\n  \"inschenken\": \"inschenk\",\n  \"inschrijfformulier\": \"inschrijfformulier\",\n  \"inschrijven\": \"inschrijv\",\n  \"inschrijving\": \"inschrijv\",\n  \"inschrijvingen\": \"inschrijv\",\n  \"inschrijvingsronde\": \"inschrijvingsrond\",\n  \"inschrijvingsrondes\": \"inschrijvingsrondes\",\n  \"insecten\": \"insect\",\n  \"insecticide\": \"insecticid\",\n  \"insecticoat\": \"insecticoat\",\n  \"insekten\": \"insekt\",\n  \"insektenbestrijdingsmiddel\": \"insektenbestrijdingsmiddel\",\n  \"insekticiden\": \"insekticid\",\n  \"insekticides\": \"insekticides\",\n  \"insi\": \"insi\",\n  \"insinuerende\": \"insinuer\",\n  \"insipide\": \"insipid\",\n  \"insituut\": \"insitut\",\n  \"inslaat\": \"inslat\",\n  \"inslagen\": \"inslag\",\n  \"insliep\": \"insliep\",\n  \"insloeg\": \"insloeg\",\n  \"insloegen\": \"insloeg\",\n  \"insoesde\": \"insoesd\",\n  \"inspannen\": \"inspann\",\n  \"inspanning\": \"inspann\",\n  \"inspanningen\": \"inspann\",\n  \"inspecteert\": \"inspecteert\",\n  \"inspecteren\": \"inspecter\",\n  \"inspecteur\": \"inspecteur\",\n  \"inspecteurs\": \"inspecteur\",\n  \"inspectie\": \"inspectie\",\n  \"inspectiebezoeken\": \"inspectiebezoek\",\n  \"inspectiedienst\": \"inspectiedienst\",\n  \"inspectiediensten\": \"inspectiedienst\",\n  \"inspecties\": \"inspecties\",\n  \"inspectietocht\": \"inspectietocht\",\n  \"inspector\": \"inspector\",\n  \"inspectorate\": \"inspectorat\",\n  \"inspeelt\": \"inspeelt\",\n  \"inspelen\": \"inspel\",\n  \"inspraak\": \"insprak\",\n  \"inspraakavond\": \"inspraakavond\",\n  \"inspraakprocedure\": \"inspraakprocedur\",\n  \"inspraakreactie\": \"inspraakreactie\",\n  \"inspraakreacties\": \"inspraakreacties\",\n  \"inspraakronde\": \"inspraakrond\",\n  \"inspraaktijd\": \"inspraaktijd\",\n  \"inspringen\": \"inspring\",\n  \"inspuiting\": \"inspuit\",\n  \"instaat\": \"instat\",\n  \"instabiel\": \"instabiel\",\n  \"installateur\": \"installateur\",\n  \"installateurs\": \"installateur\",\n  \"installateursorganisaties\": \"installateursorganisaties\",\n  \"installatie\": \"installatie\",\n  \"installatiebedrijven\": \"installatiebedrijv\",\n  \"installatiebouwer\": \"installatiebouwer\",\n  \"installatiebranche\": \"installatiebranch\",\n  \"installatiegereedschappen\": \"installatiegereedschapp\",\n  \"installatiekosten\": \"installatiekost\",\n  \"installatiemateriaal\": \"installatiemateriaal\",\n  \"installatieprodukten\": \"installatieprodukt\",\n  \"installaties\": \"installaties\",\n  \"installatietechniek\": \"installatietechniek\",\n  \"installatietechnisch\": \"installatietechnisch\",\n  \"installatietechnische\": \"installatietechnisch\",\n  \"installatiewerk\": \"installatiewerk\",\n  \"installeer\": \"installer\",\n  \"installeerde\": \"installeerd\",\n  \"installeert\": \"installeert\",\n  \"installeren\": \"installer\",\n  \"installering\": \"installer\",\n  \"installeurs\": \"installeur\",\n  \"instandhouden\": \"instandhoud\",\n  \"instandhouding\": \"instandhoud\",\n  \"instantie\": \"instantie\",\n  \"instanties\": \"instanties\",\n  \"instappen\": \"instapp\",\n  \"insteek\": \"instek\",\n  \"insteekadaptors\": \"insteekadaptor\",\n  \"instelbare\": \"instel\",\n  \"instellen\": \"instell\",\n  \"instelling\": \"instell\",\n  \"instellingen\": \"instell\",\n  \"instemmen\": \"instemm\",\n  \"instemming\": \"instemm\",\n  \"instemt\": \"instemt\",\n  \"instijgen\": \"instijg\",\n  \"instinct\": \"instinct\",\n  \"instincten\": \"instinct\",\n  \"instinctief\": \"instinctief\",\n  \"instinctmatig\": \"instinctmat\",\n  \"institituut\": \"instititut\",\n  \"institut\": \"institut\",\n  \"institüt\": \"institut\",\n  \"institute\": \"institut\",\n  \"instituten\": \"institut\",\n  \"institution\": \"institution\",\n  \"institutioneel\": \"institutionel\",\n  \"institutionele\": \"institutionel\",\n  \"instituut\": \"institut\",\n  \"instoppen\": \"instopp\",\n  \"instorten\": \"instort\",\n  \"instorting\": \"instort\",\n  \"instortingsgevaar\": \"instortingsgevar\",\n  \"instralende\": \"instral\",\n  \"instraling\": \"instral\",\n  \"instralingsschijf\": \"instralingsschijf\",\n  \"instroom\": \"instrom\",\n  \"instructeur\": \"instructeur\",\n  \"instructeurs\": \"instructeur\",\n  \"instructieregels\": \"instructieregel\",\n  \"instructies\": \"instructies\",\n  \"instrument\": \"instrument\",\n  \"instrumentarium\": \"instrumentarium\",\n  \"instrumentatie\": \"instrumentatie\",\n  \"instrumentation\": \"instrumentation\",\n  \"instrumentele\": \"instrumentel\",\n  \"instrumenten\": \"instrument\",\n  \"instruments\": \"instrument\",\n  \"insturen\": \"instur\",\n  \"insurance\": \"insuranc\",\n  \"insurances\": \"insurances\",\n  \"intact\": \"intact\",\n  \"intech\": \"intech\",\n  \"intechnium\": \"intechnium\",\n  \"inteelt\": \"inteelt\",\n  \"integendeel\": \"integendel\",\n  \"integraal\": \"integral\",\n  \"integrale\": \"integral\",\n  \"integrated\": \"integrated\",\n  \"integratie\": \"integratie\",\n  \"integratieproject\": \"integratieproject\",\n  \"integreert\": \"integreert\",\n  \"integreren\": \"integrer\",\n  \"integrerend\": \"integrer\",\n  \"integriteit\": \"integriteit\",\n  \"intel\": \"intel\",\n  \"intelligent\": \"intelligent\",\n  \"intelligente\": \"intelligent\",\n  \"intelligentie\": \"intelligentie\",\n  \"intelligenties\": \"intelligenties\",\n  \"intens\": \"inten\",\n  \"intense\": \"inten\",\n  \"intenser\": \"intenser\",\n  \"intensers\": \"intenser\",\n  \"intensief\": \"intensief\",\n  \"intensieve\": \"intensiev\",\n  \"intensiever\": \"intensiever\",\n  \"intensievere\": \"intensiever\",\n  \"intensiteit\": \"intensiteit\",\n  \"intensive\": \"intensiv\",\n  \"intensiveren\": \"intensiver\",\n  \"intensivering\": \"intensiver\",\n  \"intentie\": \"intentie\",\n  \"intenties\": \"intenties\",\n  \"intentieverklaring\": \"intentieverklar\",\n  \"intentieverklaringen\": \"intentieverklar\",\n  \"inter\": \"inter\",\n  \"interactie\": \"interactie\",\n  \"interactieve\": \"interactiev\",\n  \"interaction\": \"interaction\",\n  \"interbeton\": \"interbeton\",\n  \"interbuild\": \"interbuild\",\n  \"intercommunale\": \"intercommunal\",\n  \"intercommunales\": \"intercommunales\",\n  \"intercontinentale\": \"intercontinental\",\n  \"interdepartementaal\": \"interdepartemental\",\n  \"interdepartementale\": \"interdepartemental\",\n  \"interdisciplinaire\": \"interdisciplinair\",\n  \"interduct\": \"interduct\",\n  \"interelectra\": \"interelectra\",\n  \"interelektra\": \"interelektra\",\n  \"interessant\": \"interessant\",\n  \"interessante\": \"interessant\",\n  \"interessanter\": \"interessanter\",\n  \"interesse\": \"interes\",\n  \"interesseerde\": \"interesseerd\",\n  \"interesseerden\": \"interesseerd\",\n  \"interesseert\": \"interesseert\",\n  \"interessegebieden\": \"interessegebied\",\n  \"interessengemeinschaft\": \"interessengemeinschaft\",\n  \"interesseprofiel\": \"interesseprofiel\",\n  \"interesseren\": \"interesser\",\n  \"interesten\": \"interest\",\n  \"interests\": \"interest\",\n  \"interfacing\": \"interfac\",\n  \"interfacultair\": \"interfacultair\",\n  \"interfacultaire\": \"interfacultair\",\n  \"interferentie\": \"interferentie\",\n  \"intergamma\": \"intergamma\",\n  \"intergemeentelijke\": \"intergemeent\",\n  \"intergouvernementeel\": \"intergouvernementel\",\n  \"intergovernmental\": \"intergovernmental\",\n  \"interieur\": \"interieur\",\n  \"interim\": \"interim\",\n  \"interimbeleid\": \"interimbeleid\",\n  \"interimwet\": \"interimwet\",\n  \"interkerkelijke\": \"interkerk\",\n  \"interleuvenlaan\": \"interleuvenlan\",\n  \"interliter\": \"interliter\",\n  \"intermediair\": \"intermediair\",\n  \"intermediaire\": \"intermediair\",\n  \"intermediairen\": \"intermediair\",\n  \"intermediairs\": \"intermediair\",\n  \"intermitterend\": \"intermitter\",\n  \"intermodaal\": \"intermodal\",\n  \"intern\": \"intern\",\n  \"internalisatie\": \"internalisatie\",\n  \"internationaal\": \"international\",\n  \"international\": \"international\",\n  \"internationale\": \"international\",\n  \"internationaler\": \"internationaler\",\n  \"internationalisatieproces\": \"internationalisatieproces\",\n  \"internationalisering\": \"internationaliser\",\n  \"internationaliteit\": \"internationaliteit\",\n  \"interne\": \"intern\",\n  \"internet\": \"internet\",\n  \"internetadressen\": \"internetadress\",\n  \"interpolis\": \"interpolis\",\n  \"interpretatie\": \"interpretatie\",\n  \"interpretaties\": \"interpretaties\",\n  \"interpreteren\": \"interpreter\",\n  \"interprise\": \"interpris\",\n  \"interprovinciaal\": \"interprovinciaal\",\n  \"interprovinciale\": \"interprovincial\",\n  \"interreg\": \"interreg\",\n  \"interstate\": \"interstat\",\n  \"interval\": \"interval\",\n  \"interventie\": \"interventie\",\n  \"interventiewaarde\": \"interventiewaard\",\n  \"interventiewaarden\": \"interventiewaard\",\n  \"interview\": \"interview\",\n  \"interviewen\": \"interview\",\n  \"interviews\": \"interview\",\n  \"interzuid\": \"interzuid\",\n  \"intexo\": \"intexo\",\n  \"intiem\": \"intiem\",\n  \"intieme\": \"intiem\",\n  \"intiemer\": \"intiemer\",\n  \"intiemere\": \"intiemer\",\n  \"intiems\": \"intiem\",\n  \"intiemst\": \"intiemst\",\n  \"intimiteit\": \"intimiteit\",\n  \"intituut\": \"intitut\",\n  \"into\": \"into\",\n  \"intomart\": \"intomart\",\n  \"intonatie\": \"intonatie\",\n  \"intonatiën\": \"intonatien\",\n  \"intradel\": \"intradel\",\n  \"intramurale\": \"intramural\",\n  \"intrappen\": \"intrapp\",\n  \"intree\": \"intree\",\n  \"intreerede\": \"intreered\",\n  \"intrek\": \"intrek\",\n  \"intrekgebied\": \"intrekgebied\",\n  \"intrekken\": \"intrek\",\n  \"intrekking\": \"intrek\",\n  \"intrekt\": \"intrekt\",\n  \"intrigante\": \"intrigant\",\n  \"intrigeert\": \"intrigeert\",\n  \"intrigeren\": \"intriger\",\n  \"intrigue\": \"intrigue\",\n  \"intrillen\": \"intrill\",\n  \"introduceerde\": \"introduceerd\",\n  \"introduceert\": \"introduceert\",\n  \"introduceren\": \"introducer\",\n  \"introductie\": \"introductie\",\n  \"introducties\": \"introducties\",\n  \"introk\": \"introk\",\n  \"intron\": \"intron\",\n  \"intstitute\": \"intstitut\",\n  \"intuïtie\": \"intuitie\",\n  \"intuïtief\": \"intuitief\",\n  \"intuïtieve\": \"intuitiev\",\n  \"intussen\": \"intuss\",\n  \"inval\": \"inval\",\n  \"invallen\": \"invall\",\n  \"invallende\": \"invall\",\n  \"invasie\": \"invasie\",\n  \"invent\": \"invent\",\n  \"inventaris\": \"inventaris\",\n  \"inventarisatie\": \"inventarisatie\",\n  \"inventarisatiefase\": \"inventarisatiefas\",\n  \"inventarisaties\": \"inventarisaties\",\n  \"inventarisatiewerk\": \"inventarisatiewerk\",\n  \"inventariseert\": \"inventariseert\",\n  \"inventariseren\": \"inventariser\",\n  \"inventariserend\": \"inventariser\",\n  \"inventory\": \"inventory\",\n  \"inverters\": \"inverter\",\n  \"invest\": \"invest\",\n  \"investeerde\": \"investeerd\",\n  \"investeerden\": \"investeerd\",\n  \"investeerder\": \"investeerder\",\n  \"investeerders\": \"investeerder\",\n  \"investeert\": \"investeert\",\n  \"investeren\": \"invester\",\n  \"investering\": \"invester\",\n  \"investeringen\": \"invester\",\n  \"investerings\": \"invester\",\n  \"investeringsaftrek\": \"investeringsaftrek\",\n  \"investeringsbank\": \"investeringsbank\",\n  \"investeringsbeslissingen\": \"investeringsbesliss\",\n  \"investeringsbesteding\": \"investeringsbested\",\n  \"investeringsklimaat\": \"investeringsklimat\",\n  \"investeringskosten\": \"investeringskost\",\n  \"investeringsland\": \"investeringsland\",\n  \"investeringsmiddelen\": \"investeringsmiddel\",\n  \"investeringsmogelijkheden\": \"investeringsmog\",\n  \"investeringspiek\": \"investeringspiek\",\n  \"investeringspolitiek\": \"investeringspolitiek\",\n  \"investeringsprogramma\": \"investeringsprogramma\",\n  \"investeringsraming\": \"investeringsram\",\n  \"investeringsruimte\": \"investeringsruimt\",\n  \"investeringsschade\": \"investeringsschad\",\n  \"investeringssubsidie\": \"investeringssubsidie\",\n  \"investeringssubsidieregeling\": \"investeringssubsidieregel\",\n  \"investeringssubsidies\": \"investeringssubsidies\",\n  \"investeringstermijn\": \"investeringstermijn\",\n  \"investitionsbank\": \"investitionsbank\",\n  \"investment\": \"investment\",\n  \"investments\": \"investment\",\n  \"invitatie\": \"invitatie\",\n  \"invitaties\": \"invitaties\",\n  \"invite\": \"invit\",\n  \"invité\": \"invit\",\n  \"inviteerde\": \"inviteerd\",\n  \"inviteerden\": \"inviteerd\",\n  \"inviteert\": \"inviteert\",\n  \"inviteren\": \"inviter\",\n  \"invités\": \"invites\",\n  \"invloed\": \"invloed\",\n  \"invloeden\": \"invloed\",\n  \"invloedrijk\": \"invloedrijk\",\n  \"invloedrijke\": \"invloedrijk\",\n  \"invoer\": \"invoer\",\n  \"invoeren\": \"invoer\",\n  \"invoering\": \"invoer\",\n  \"invoeringstraject\": \"invoeringstraject\",\n  \"invoert\": \"invoert\",\n  \"invoerverbod\": \"invoerverbod\",\n  \"invriesprocedures\": \"invriesprocedures\",\n  \"invriezen\": \"invriez\",\n  \"invullen\": \"invull\",\n  \"invulling\": \"invull\",\n  \"invult\": \"invult\",\n  \"inwendig\": \"inwend\",\n  \"inwendige\": \"inwend\",\n  \"inwerkingstelling\": \"inwerkingstell\",\n  \"inwerkingtreding\": \"inwerkingtred\",\n  \"inwerphoogte\": \"inwerphoogt\",\n  \"inwerppunt\": \"inwerppunt\",\n  \"inwilliging\": \"inwill\",\n  \"inwinnen\": \"inwinn\",\n  \"inwonen\": \"inwon\",\n  \"inwoner\": \"inwoner\",\n  \"inwoners\": \"inwoner\",\n  \"inwonertal\": \"inwonertal\",\n  \"inwoonde\": \"inwoond\",\n  \"inwoonden\": \"inwoond\",\n  \"inzag\": \"inzag\",\n  \"inzage\": \"inzag\",\n  \"inzagen\": \"inzag\",\n  \"inzake\": \"inzak\",\n  \"inzakken\": \"inzak\",\n  \"inzakkende\": \"inzak\",\n  \"inzamel\": \"inzamel\",\n  \"inzamelaar\": \"inzamelar\",\n  \"inzamelaars\": \"inzamelar\",\n  \"inzamelbakken\": \"inzamelbak\",\n  \"inzamelcontainers\": \"inzamelcontainer\",\n  \"inzameldienst\": \"inzameldienst\",\n  \"inzamelen\": \"inzamel\",\n  \"inzamelfrequentie\": \"inzamelfrequentie\",\n  \"inzameling\": \"inzamel\",\n  \"inzamelings\": \"inzamel\",\n  \"inzamelingscijfer\": \"inzamelingscijfer\",\n  \"inzamelingskosten\": \"inzamelingskost\",\n  \"inzamelingsoperatie\": \"inzamelingsoperatie\",\n  \"inzamelingsplan\": \"inzamelingsplan\",\n  \"inzamelingsplicht\": \"inzamelingsplicht\",\n  \"inzamelingspunten\": \"inzamelingspunt\",\n  \"inzamelingsregeling\": \"inzamelingsregel\",\n  \"inzamelingsstructuur\": \"inzamelingsstructur\",\n  \"inzamelingssysteem\": \"inzamelingssystem\",\n  \"inzamelingssystemen\": \"inzamelingssystem\",\n  \"inzamelingssyteem\": \"inzamelingssytem\",\n  \"inzamelingsysteem\": \"inzamelingsystem\",\n  \"inzamelpersoneel\": \"inzamelpersonel\",\n  \"inzamelplaatsen\": \"inzamelplaats\",\n  \"inzamelplicht\": \"inzamelplicht\",\n  \"inzamelplichtgebied\": \"inzamelplichtgebied\",\n  \"inzamelpunt\": \"inzamelpunt\",\n  \"inzamelpunten\": \"inzamelpunt\",\n  \"inzamelrechtgebied\": \"inzamelrechtgebied\",\n  \"inzamelstations\": \"inzamelstation\",\n  \"inzamelstructuren\": \"inzamelstructur\",\n  \"inzamelstructuur\": \"inzamelstructur\",\n  \"inzamelsysteem\": \"inzamelsystem\",\n  \"inzamelsystemen\": \"inzamelsystem\",\n  \"inzamelvergunning\": \"inzamelvergunn\",\n  \"inzamelvoertuig\": \"inzamelvoertu\",\n  \"inzamelwijze\": \"inzamelwijz\",\n  \"inzaten\": \"inzat\",\n  \"inzenden\": \"inzend\",\n  \"inzenders\": \"inzender\",\n  \"inzendingen\": \"inzend\",\n  \"inzendtermijn\": \"inzendtermijn\",\n  \"inzet\": \"inzet\",\n  \"inzetbaar\": \"inzet\",\n  \"inzetbare\": \"inzet\",\n  \"inzetbeperkende\": \"inzetbeperk\",\n  \"inzetten\": \"inzet\",\n  \"inzicht\": \"inzicht\",\n  \"inzichtelijk\": \"inzicht\",\n  \"inzichten\": \"inzicht\",\n  \"inziek\": \"inziek\",\n  \"inzien\": \"inzien\",\n  \"inziet\": \"inziet\",\n  \"inzinking\": \"inzink\",\n  \"ion\": \"ion\",\n  \"ionen\": \"ion\",\n  \"ionenuitwisselingstechnologie\": \"ionenuitwisselingstechnologie\",\n  \"ionenwisselaar\": \"ionenwisselar\",\n  \"ionenwisselaarhars\": \"ionenwisselaarhar\",\n  \"ionenwisselaars\": \"ionenwisselar\",\n  \"ionenwisseling\": \"ionenwissel\",\n  \"ionisatie\": \"ionisatie\",\n  \"ionisatiebeveiliging\": \"ionisatiebeveil\",\n  \"ioniseert\": \"ioniseert\",\n  \"ioniseren\": \"ioniser\",\n  \"ioniserende\": \"ioniser\",\n  \"ionwisselaars\": \"ionwisselar\",\n  \"ioo\": \"ioo\",\n  \"iop\": \"iop\",\n  \"iowa\": \"iowa\",\n  \"ip\": \"ip\",\n  \"ipc\": \"ipc\",\n  \"ipcc\": \"ipcc\",\n  \"ipo\": \"ipo\",\n  \"ippc\": \"ippc\",\n  \"ir\": \"ir\",\n  \"iraakse\": \"irak\",\n  \"iraanse\": \"iran\",\n  \"irak\": \"irak\",\n  \"iran\": \"iran\",\n  \"iredale\": \"iredal\",\n  \"irian\": \"irian\",\n  \"iris\": \"iris\",\n  \"irizeerde\": \"irizeerd\",\n  \"ironbridge\": \"ironbridg\",\n  \"ironie\": \"ironie\",\n  \"ironieën\": \"ironieen\",\n  \"ironisch\": \"ironisch\",\n  \"ironische\": \"ironisch\",\n  \"irreëel\": \"irreeel\",\n  \"irrigatie\": \"irrigatie\",\n  \"irrigatieplan\": \"irrigatieplan\",\n  \"irrigatiesysteem\": \"irrigatiesystem\",\n  \"irritatie\": \"irritatie\",\n  \"irriteren\": \"irriter\",\n  \"irvine\": \"irvin\",\n  \"is\": \"is\",\n  \"isbn\": \"isbn\",\n  \"isc\": \"isc\",\n  \"isco\": \"isco\",\n  \"iserief\": \"iserief\",\n  \"iserlohner\": \"iserlohner\",\n  \"isermann\": \"isermann\",\n  \"ises\": \"ises\",\n  \"isev\": \"isev\",\n  \"isidore\": \"isidor\",\n  \"isla\": \"isla\",\n  \"islam\": \"islam\",\n  \"islamitische\": \"islamitisch\",\n  \"island\": \"island\",\n  \"islands\": \"island\",\n  \"iso\": \"iso\",\n  \"isobend\": \"isob\",\n  \"isocratische\": \"isocratisch\",\n  \"isoflachs\": \"isoflach\",\n  \"isolatie\": \"isolatie\",\n  \"isolatiebedrijven\": \"isolatiebedrijv\",\n  \"isolatiebelasting\": \"isolatiebelast\",\n  \"isolatiekuur\": \"isolatiekur\",\n  \"isolatiemaatregelen\": \"isolatiemaatregel\",\n  \"isolatiemateriaal\": \"isolatiemateriaal\",\n  \"isolatiematerialen\": \"isolatiematerial\",\n  \"isolatiematerialenfabriek\": \"isolatiematerialenfabriek\",\n  \"isolatiemiddel\": \"isolatiemiddel\",\n  \"isolatiepaneel\": \"isolatiepanel\",\n  \"isolatieplaat\": \"isolatieplat\",\n  \"isolatieplaten\": \"isolatieplat\",\n  \"isolatieschuim\": \"isolatieschuim\",\n  \"isolatievermogen\": \"isolatievermog\",\n  \"isolatievoorziening\": \"isolatievoorzien\",\n  \"isolatievoorzieningen\": \"isolatievoorzien\",\n  \"isolatiewaarde\": \"isolatiewaard\",\n  \"isolatiewerk\": \"isolatiewerk\",\n  \"isolatiewinst\": \"isolatiewinst\",\n  \"isolator\": \"isolator\",\n  \"isolatoren\": \"isolator\",\n  \"isolde\": \"isold\",\n  \"isoleer\": \"isoler\",\n  \"isoleert\": \"isoleert\",\n  \"isoleren\": \"isoler\",\n  \"isolerend\": \"isoler\",\n  \"isolerende\": \"isoler\",\n  \"isolering\": \"isoler\",\n  \"isomeren\": \"isomer\",\n  \"isopropylalcohol\": \"isopropylalcohol\",\n  \"isoproturon\": \"isoproturon\",\n  \"isotoop\": \"isotop\",\n  \"isotopen\": \"isotop\",\n  \"isover\": \"isover\",\n  \"isp\": \"isp\",\n  \"isphording\": \"isphord\",\n  \"israel\": \"israel\",\n  \"israël\": \"israel\",\n  \"israëlische\": \"israelisch\",\n  \"isso\": \"isso\",\n  \"issues\": \"issues\",\n  \"istanbul\": \"istanbul\",\n  \"istha\": \"istha\",\n  \"iswa\": \"iswa\",\n  \"it\": \"it\",\n  \"italiaan\": \"italiaan\",\n  \"italiaans\": \"italiaan\",\n  \"italiaanse\": \"italiaan\",\n  \"italianen\": \"italian\",\n  \"italië\": \"italie\",\n  \"itc\": \"itc\",\n  \"item\": \"item\",\n  \"items\": \"item\",\n  \"iterson\": \"iterson\",\n  \"itho\": \"itho\",\n  \"itochu\": \"itochu\",\n  \"itteren\": \"itter\",\n  \"iucn\": \"iucn\",\n  \"iv\": \"iv\",\n  \"ivam\": \"ivam\",\n  \"iveco\": \"iveco\",\n  \"ivm\": \"ivm\",\n  \"ivms\": \"ivm\",\n  \"ivo\": \"ivo\",\n  \"ivoor\": \"ivor\",\n  \"ivoorsmokkel\": \"ivoorsmokkel\",\n  \"ivoortintig\": \"ivoortint\",\n  \"ivoren\": \"ivor\",\n  \"ivorig\": \"ivor\",\n  \"ivorige\": \"ivor\",\n  \"ivorigjes\": \"ivorigjes\",\n  \"iwaco\": \"iwaco\",\n  \"iwex\": \"iwex\",\n  \"iww\": \"iww\",\n  \"ix\": \"ix\",\n  \"izopol\": \"izopol\",\n  \"j\": \"j\",\n  \"ja\": \"ja\",\n  \"jaa\": \"jaa\",\n  \"jaagden\": \"jaagd\",\n  \"jaagt\": \"jaagt\",\n  \"jaap\": \"jap\",\n  \"jaaps\": \"jap\",\n  \"jaar\": \"jar\",\n  \"jaarabonnement\": \"jaarabonnement\",\n  \"jaarbasis\": \"jaarbasis\",\n  \"jaarbeurs\": \"jaarbeur\",\n  \"jaarboek\": \"jaarboek\",\n  \"jaarcijfers\": \"jaarcijfer\",\n  \"jaarcongres\": \"jaarcongres\",\n  \"jaardotatie\": \"jaardotatie\",\n  \"jaardotaties\": \"jaardotaties\",\n  \"jaáren\": \"jar\",\n  \"jaargemiddeld\": \"jaargemiddeld\",\n  \"jaargemiddelde\": \"jaargemiddeld\",\n  \"jaarkaart\": \"jaarkaart\",\n  \"jaarlijke\": \"jaarlijk\",\n  \"jaarlijks\": \"jaarlijk\",\n  \"jaarlijkse\": \"jaarlijk\",\n  \"jaaromzet\": \"jaaromzet\",\n  \"jaarprijs\": \"jaarprijs\",\n  \"jaarproduktie\": \"jaarproduktie\",\n  \"jaarrapport\": \"jaarrapport\",\n  \"jaarrapportage\": \"jaarrapportag\",\n  \"jaarrede\": \"jaarred\",\n  \"jaarrekening\": \"jaarreken\",\n  \"jaarresultaat\": \"jaarresultat\",\n  \"jaars\": \"jar\",\n  \"jaarverbruik\": \"jaarverbruik\",\n  \"jaarvergadering\": \"jaarvergader\",\n  \"jaarverslag\": \"jaarverslag\",\n  \"jaarverslagen\": \"jaarverslag\",\n  \"jablokov\": \"jablokov\",\n  \"jacht\": \"jacht\",\n  \"jachtbouw\": \"jachtbouw\",\n  \"jachtbui\": \"jachtbui\",\n  \"jachtfonds\": \"jachtfond\",\n  \"jachthaven\": \"jachthav\",\n  \"jachthavens\": \"jachthaven\",\n  \"jachtlobby\": \"jachtlobby\",\n  \"jachtseizoen\": \"jachtseizoen\",\n  \"jachtverbod\": \"jachtverbod\",\n  \"jachtvereniging\": \"jachtveren\",\n  \"jachtwet\": \"jachtwet\",\n  \"jack\": \"jack\",\n  \"jackson\": \"jackson\",\n  \"jacob\": \"jacob\",\n  \"jacques\": \"jacques\",\n  \"jacquet\": \"jacquet\",\n  \"jagen\": \"jag\",\n  \"jagende\": \"jagend\",\n  \"jager\": \"jager\",\n  \"jagers\": \"jager\",\n  \"jagt\": \"jagt\",\n  \"jahr\": \"jahr\",\n  \"jaitske\": \"jaitsk\",\n  \"jakarta\": \"jakarta\",\n  \"jakob\": \"jakob\",\n  \"jalen\": \"jal\",\n  \"jaloers\": \"jaloer\",\n  \"jaloersheid\": \"jaloers\",\n  \"jaloezie\": \"jaloezie\",\n  \"jalouzie\": \"jalouzie\",\n  \"jalouzieën\": \"jalouzieen\",\n  \"jam\": \"jam\",\n  \"james\": \"james\",\n  \"jammer\": \"jammer\",\n  \"jammerde\": \"jammerd\",\n  \"jammerden\": \"jammerd\",\n  \"jammergenoeg\": \"jammergenoeg\",\n  \"jammerlijk\": \"jammer\",\n  \"jan\": \"jan\",\n  \"janeiro\": \"janeiro\",\n  \"jangtse\": \"jangt\",\n  \"janse\": \"jan\",\n  \"jansen\": \"jans\",\n  \"janssen\": \"janss\",\n  \"jantje\": \"jantj\",\n  \"januari\": \"januari\",\n  \"japan\": \"japan\",\n  \"japanners\": \"japanner\",\n  \"japans\": \"japan\",\n  \"japanse\": \"japan\",\n  \"japon\": \"japon\",\n  \"japonnen\": \"japonn\",\n  \"japonnetje\": \"japonnetj\",\n  \"japonnetjes\": \"japonnetjes\",\n  \"jaren\": \"jar\",\n  \"járen\": \"jar\",\n  \"jarenlang\": \"jarenlang\",\n  \"jarenlange\": \"jarenlang\",\n  \"jarig\": \"jarig\",\n  \"jarige\": \"jarig\",\n  \"jarosiet\": \"jarosiet\",\n  \"jas\": \"jas\",\n  \"jasje\": \"jasj\",\n  \"jasjes\": \"jasjes\",\n  \"jasper\": \"jasper\",\n  \"jassen\": \"jass\",\n  \"java\": \"java\",\n  \"javaanse\": \"javan\",\n  \"javastraat\": \"javastrat\",\n  \"jawel\": \"jawel\",\n  \"jaya\": \"jaya\",\n  \"je\": \"je\",\n  \"jé\": \"je\",\n  \"jean\": \"jean\",\n  \"jeanselmei\": \"jeanselmei\",\n  \"jefferson\": \"jefferson\",\n  \"jegens\": \"jegen\",\n  \"jeltsin\": \"jeltsin\",\n  \"jenz\": \"jenz\",\n  \"jerevan\": \"jerevan\",\n  \"jerofejev\": \"jerofejev\",\n  \"jerry\": \"jerry\",\n  \"jersey\": \"jersey\",\n  \"jerusalem\": \"jerusalem\",\n  \"jeruzalem\": \"jeruzalem\",\n  \"jet\": \"jet\",\n  \"jetje\": \"jetj\",\n  \"jetson\": \"jetson\",\n  \"jeude\": \"jeud\",\n  \"jeugd\": \"jeugd\",\n  \"jeugdige\": \"jeugdig\",\n  \"jeuk\": \"jeuk\",\n  \"jeukte\": \"jeukt\",\n  \"jezelf\": \"jezelf\",\n  \"jezelve\": \"jezelv\",\n  \"jg\": \"jg\",\n  \"ji\": \"ji\",\n  \"jia\": \"jia\",\n  \"jichtig\": \"jichtig\",\n  \"jichtige\": \"jichtig\",\n  \"jij\": \"jij\",\n  \"jo\": \"jo\",\n  \"joanknecht\": \"joanknecht\",\n  \"joden\": \"jod\",\n  \"jodium\": \"jodium\",\n  \"joeg\": \"joeg\",\n  \"joegen\": \"joeg\",\n  \"joegoslavië\": \"joegoslavie\",\n  \"joei\": \"joei\",\n  \"joelden\": \"joeld\",\n  \"joh\": \"joh\",\n  \"johan\": \"johan\",\n  \"johannes\": \"johannes\",\n  \"johans\": \"johan\",\n  \"john\": \"john\",\n  \"johnson\": \"johnson\",\n  \"joint\": \"joint\",\n  \"joke\": \"jok\",\n  \"jokt\": \"jokt\",\n  \"jokte\": \"jokt\",\n  \"jolig\": \"jolig\",\n  \"jolige\": \"jolig\",\n  \"jón\": \"jon\",\n  \"jones\": \"jones\",\n  \"jong\": \"jong\",\n  \"jòng\": \"jòng\",\n  \"jongblauwe\": \"jongblauw\",\n  \"jonge\": \"jong\",\n  \"jònge\": \"jònge\",\n  \"jongeheer\": \"jongeher\",\n  \"jongelui\": \"jongelui\",\n  \"jongemeisjesdromen\": \"jongemeisjesdrom\",\n  \"jongen\": \"jong\",\n  \"jòngen\": \"jòngen\",\n  \"jongens\": \"jongen\",\n  \"jongensgebaren\": \"jongensgebar\",\n  \"jongensgezicht\": \"jongensgezicht\",\n  \"jongenshaat\": \"jongenshat\",\n  \"jongenshand\": \"jongenshand\",\n  \"jongenshanden\": \"jongenshand\",\n  \"jongensjaren\": \"jongensjar\",\n  \"jongenskamer\": \"jongenskamer\",\n  \"jongenskamertje\": \"jongenskamertj\",\n  \"jongenslach\": \"jongenslach\",\n  \"jongensleven\": \"jongenslev\",\n  \"jongenslippen\": \"jongenslipp\",\n  \"jongensnagels\": \"jongensnagel\",\n  \"jongensogen\": \"jongensog\",\n  \"jongensreden\": \"jongensred\",\n  \"jongensspelen\": \"jongensspel\",\n  \"jongensspraak\": \"jongenssprak\",\n  \"jongenstijd\": \"jongenstijd\",\n  \"jongenstwist\": \"jongenstwist\",\n  \"jongensverliefdheid\": \"jongensverliefd\",\n  \"jongenswoord\": \"jongenswoord\",\n  \"jongensziel\": \"jongensziel\",\n  \"jonger\": \"jonger\",\n  \"jongere\": \"jonger\",\n  \"jongerë\": \"jonger\",\n  \"jongeren\": \"jonger\",\n  \"jongerenorganisaties\": \"jongerenorganisaties\",\n  \"jongerenraad\": \"jongerenrad\",\n  \"jongerenreferendum\": \"jongerenreferendum\",\n  \"jongerius\": \"jongerius\",\n  \"jongetje\": \"jongetj\",\n  \"jongetjes\": \"jongetjes\",\n  \"jongevee\": \"jongevee\",\n  \"jongh\": \"jongh\",\n  \"jongkind\": \"jongkind\",\n  \"jongmens\": \"jongmen\",\n  \"jongs\": \"jong\",\n  \"jongske\": \"jongsk\",\n  \"jongste\": \"jongst\",\n  \"jongsten\": \"jongst\",\n  \"jongvee\": \"jongvee\",\n  \"jongveebezetting\": \"jongveebezet\",\n  \"jonker\": \"jonker\",\n  \"jonkheer\": \"jonkher\",\n  \"jood\": \"jod\",\n  \"joost\": \"joost\",\n  \"jordaan\": \"jordan\",\n  \"jordanië\": \"jordanie\",\n  \"jorritsma\": \"jorritsma\",\n  \"jos\": \"jos\",\n  \"joseph\": \"joseph\",\n  \"joséphine\": \"josephin\",\n  \"jospin\": \"jospin\",\n  \"jou\": \"jou\",\n  \"joule\": \"joul\",\n  \"joules\": \"joules\",\n  \"jour\": \"jour\",\n  \"joure\": \"jour\",\n  \"journal\": \"journal\",\n  \"journalist\": \"journalist\",\n  \"journalisten\": \"journalist\",\n  \"journalistiek\": \"journalistiek\",\n  \"jours\": \"jour\",\n  \"jouw\": \"jouw\",\n  \"jouwe\": \"jouw\",\n  \"joviaal\": \"joviaal\",\n  \"joviale\": \"jovial\",\n  \"jovialerig\": \"jovialer\",\n  \"jovialiteit\": \"jovialiteit\",\n  \"jubelde\": \"jubeld\",\n  \"jubelend\": \"jubel\",\n  \"jubelende\": \"jubel\",\n  \"jubileum\": \"jubileum\",\n  \"jubileumbijeenkomst\": \"jubileumbijeenkomst\",\n  \"jubileumboek\": \"jubileumboek\",\n  \"jubileumcongres\": \"jubileumcongres\",\n  \"juf\": \"juf\",\n  \"juffershondje\": \"juffershondj\",\n  \"juffrouw\": \"juffrouw\",\n  \"juffrouwen\": \"juffrouw\",\n  \"jui\": \"jui\",\n  \"juichen\": \"juich\",\n  \"juichende\": \"juichend\",\n  \"juicht\": \"juicht\",\n  \"juichte\": \"juicht\",\n  \"juist\": \"juist\",\n  \"juiste\": \"juist\",\n  \"juistheid\": \"juistheid\",\n  \"juk\": \"juk\",\n  \"jukbeenderen\": \"jukbeender\",\n  \"juli\": \"juli\",\n  \"julianakanaal\": \"julianakanal\",\n  \"jülich\": \"julich\",\n  \"julio\": \"julio\",\n  \"julius\": \"julius\",\n  \"jullie\": \"jullie\",\n  \"juni\": \"juni\",\n  \"junior\": \"junior\",\n  \"junk\": \"junk\",\n  \"junne\": \"junn\",\n  \"junta\": \"junta\",\n  \"jupiter\": \"jupiter\",\n  \"juppé\": \"jupp\",\n  \"jureert\": \"jureert\",\n  \"jürgens\": \"jurgen\",\n  \"juridisch\": \"juridisch\",\n  \"juridische\": \"juridisch\",\n  \"jurisprudentie\": \"jurisprudentie\",\n  \"juristen\": \"jurist\",\n  \"jury\": \"jury\",\n  \"jus\": \"jus\",\n  \"justitie\": \"justitie\",\n  \"justitiële\": \"justitiel\",\n  \"juten\": \"jut\",\n  \"jutland\": \"jutland\",\n  \"juwelen\": \"juwel\",\n  \"jwc\": \"jwc\",\n  \"k\": \"k\",\n  \"ka\": \"ka\",\n  \"kaaiman\": \"kaaiman\",\n  \"kaalkopibis\": \"kaalkopibis\",\n  \"kaalkopibissen\": \"kaalkopibiss\",\n  \"kaapse\": \"kap\",\n  \"kaapstad\": \"kaapstad\",\n  \"kaars\": \"kar\",\n  \"kaarsen\": \"kaars\",\n  \"kaarsjes\": \"kaarsjes\",\n  \"kaarsrecht\": \"kaarsrecht\",\n  \"kaarsvlam\": \"kaarsvlam\",\n  \"kaart\": \"kaart\",\n  \"kaarten\": \"kaart\",\n  \"kaartje\": \"kaartj\",\n  \"kaartjes\": \"kaartjes\",\n  \"kaartspelen\": \"kaartspel\",\n  \"kaartspelende\": \"kaartspel\",\n  \"kaas\": \"kas\",\n  \"kaascoating\": \"kaascoat\",\n  \"kaasfabriek\": \"kaasfabriek\",\n  \"kaasproduktie\": \"kaasproduktie\",\n  \"kaasstremsel\": \"kaasstremsel\",\n  \"kaaswei\": \"kaaswei\",\n  \"kaatsende\": \"kaatsend\",\n  \"kaatsheuvel\": \"kaatsheuvel\",\n  \"kaatsten\": \"kaatst\",\n  \"kab\": \"kab\",\n  \"kabaai\": \"kabaai\",\n  \"kabbelden\": \"kabbeld\",\n  \"kabel\": \"kabel\",\n  \"kabelafval\": \"kabelafval\",\n  \"kabelbranden\": \"kabelbrand\",\n  \"kabeljauw\": \"kabeljauw\",\n  \"kabeljauwachtigen\": \"kabeljauwacht\",\n  \"kabeljauwvangsten\": \"kabeljauwvangst\",\n  \"kabels\": \"kabel\",\n  \"kabelschroot\": \"kabelschrot\",\n  \"kabeltelevisie\": \"kabeltelevisie\",\n  \"kabinet\": \"kabinet\",\n  \"kabinetje\": \"kabinetj\",\n  \"kabinetsakkoord\": \"kabinetsakkoord\",\n  \"kabinetsbeleid\": \"kabinetsbeleid\",\n  \"kabinetsbesluit\": \"kabinetsbesluit\",\n  \"kabinetsnota\": \"kabinetsnota\",\n  \"kabinetsperiode\": \"kabinetsperiod\",\n  \"kabinetsplan\": \"kabinetsplan\",\n  \"kabinetsplannen\": \"kabinetsplann\",\n  \"kabinetsvoorstel\": \"kabinetsvoorstel\",\n  \"kabinetsvoorstellen\": \"kabinetsvoorstell\",\n  \"kabinetten\": \"kabinet\",\n  \"kachel\": \"kachel\",\n  \"kachelgebruik\": \"kachelgebruik\",\n  \"kachels\": \"kachel\",\n  \"kadaster\": \"kadaster\",\n  \"kadavers\": \"kadaver\",\n  \"kade\": \"kad\",\n  \"kademuren\": \"kademur\",\n  \"kademuur\": \"kademur\",\n  \"kaden\": \"kad\",\n  \"kadeplan\": \"kadeplan\",\n  \"kadeplannen\": \"kadeplann\",\n  \"kader\": \"kader\",\n  \"kaderbesluit\": \"kaderbesluit\",\n  \"kaderplan\": \"kaderplan\",\n  \"kaderprogramma\": \"kaderprogramma\",\n  \"kaderrichtlijn\": \"kaderrichtlijn\",\n  \"kaders\": \"kader\",\n  \"kaderwetgeving\": \"kaderwetgev\",\n  \"kades\": \"kades\",\n  \"kadet\": \"kadet\",\n  \"kadir\": \"kadir\",\n  \"kaiser\": \"kaiser\",\n  \"kaiserslautern\": \"kaiserslautern\",\n  \"kajuitzeilschip\": \"kajuitzeilschip\",\n  \"kakelden\": \"kakeld\",\n  \"kaken\": \"kak\",\n  \"kale\": \"kal\",\n  \"kaleidoscoop\": \"kaleidoscop\",\n  \"kalen\": \"kal\",\n  \"kalende\": \"kalend\",\n  \"kalenderpanden\": \"kalenderpand\",\n  \"kalfsvleesproducenten\": \"kalfsvleesproducent\",\n  \"kalibro\": \"kalibro\",\n  \"kalimantan\": \"kalimantan\",\n  \"kalimijn\": \"kalimijn\",\n  \"kalis\": \"kalis\",\n  \"kalium\": \"kalium\",\n  \"kaliumnitraat\": \"kaliumnitrat\",\n  \"kalk\": \"kalk\",\n  \"kalkafzetting\": \"kalkafzet\",\n  \"kalkammonsalpeter\": \"kalkammonsalpeter\",\n  \"kalkar\": \"kalkar\",\n  \"kalkdam\": \"kalkdam\",\n  \"kalkgestreepte\": \"kalkgestreept\",\n  \"kalkoplossing\": \"kalkoploss\",\n  \"kalkrijk\": \"kalkrijk\",\n  \"kalkrijke\": \"kalkrijk\",\n  \"kalksplitreactor\": \"kalksplitreactor\",\n  \"kalksteen\": \"kalksten\",\n  \"kalksteenzand\": \"kalksteenzand\",\n  \"kalkzandindustrie\": \"kalkzandindustrie\",\n  \"kalkzandsteen\": \"kalkzandsten\",\n  \"kalkzandsteenelementen\": \"kalkzandsteenelement\",\n  \"kalkzandsteenindustrie\": \"kalkzandsteenindustrie\",\n  \"kalm\": \"kalm\",\n  \"kalme\": \"kalm\",\n  \"kalmeerde\": \"kalmeerd\",\n  \"kalmeert\": \"kalmeert\",\n  \"kalmer\": \"kalmer\",\n  \"kalmere\": \"kalmer\",\n  \"kalmeren\": \"kalmer\",\n  \"kalmerend\": \"kalmer\",\n  \"kalmers\": \"kalmer\",\n  \"kalms\": \"kalm\",\n  \"kalmte\": \"kalmt\",\n  \"kalterbroeken\": \"kalterbroek\",\n  \"kalveren\": \"kalver\",\n  \"kalvermest\": \"kalvermest\",\n  \"kalverslachterij\": \"kalverslachterij\",\n  \"kam\": \"kam\",\n  \"kameel\": \"kamel\",\n  \"kamenier\": \"kamenier\",\n  \"kamer\": \"kamer\",\n  \"kameraad\": \"kamerad\",\n  \"kameraadjes\": \"kameraadjes\",\n  \"kameraden\": \"kamerad\",\n  \"kameratmosfeer\": \"kameratmosfer\",\n  \"kamercommissie\": \"kamercommissie\",\n  \"kamerdebat\": \"kamerdebat\",\n  \"kamerdeur\": \"kamerdeur\",\n  \"kamerdeuren\": \"kamerdeur\",\n  \"kamerfractie\": \"kamerfractie\",\n  \"kamerfracties\": \"kamerfracties\",\n  \"kamergordijnen\": \"kamergordijn\",\n  \"kamerheer\": \"kamerher\",\n  \"kamerleden\": \"kamerled\",\n  \"kamerlid\": \"kamerlid\",\n  \"kamerlucht\": \"kamerlucht\",\n  \"kamermeerderheid\": \"kamermeerder\",\n  \"kamernacht\": \"kamernacht\",\n  \"kamerpeinzing\": \"kamerpeinz\",\n  \"kamers\": \"kamer\",\n  \"kamerstuk\": \"kamerstuk\",\n  \"kamertemperatuur\": \"kamertemperatur\",\n  \"kamertje\": \"kamertj\",\n  \"kamervragen\": \"kamervrag\",\n  \"kamerwand\": \"kamerwand\",\n  \"kamerwanden\": \"kamerwand\",\n  \"kamgras\": \"kamgras\",\n  \"kamminga\": \"kamminga\",\n  \"kamp\": \"kamp\",\n  \"kampen\": \"kamp\",\n  \"kamperland\": \"kamperland\",\n  \"kampioen\": \"kampioen\",\n  \"kampt\": \"kampt\",\n  \"kan\": \"kan\",\n  \"kanaal\": \"kanal\",\n  \"kanaalstromingen\": \"kanaalstrom\",\n  \"kanaaltjes\": \"kanaaltjes\",\n  \"kanaaltunnel\": \"kanaaltunnel\",\n  \"kanaalwater\": \"kanaalwater\",\n  \"kanalen\": \"kanal\",\n  \"kanamycine\": \"kanamycin\",\n  \"kanarie\": \"kanarie\",\n  \"kandidaat\": \"kandidat\",\n  \"kandidaten\": \"kandidat\",\n  \"kandjeng\": \"kandjeng\",\n  \"kanjers\": \"kanjer\",\n  \"kanker\": \"kanker\",\n  \"kankerbestrijding\": \"kankerbestrijd\",\n  \"kankeren\": \"kanker\",\n  \"kankergevallen\": \"kankergevall\",\n  \"kankermechanismes\": \"kankermechanismes\",\n  \"kankerrisico\": \"kankerrisico\",\n  \"kankers\": \"kanker\",\n  \"kankersoorten\": \"kankersoort\",\n  \"kankerverwekkend\": \"kankerverwek\",\n  \"kankerverwekkende\": \"kankerverwek\",\n  \"kankerverwekkendheid\": \"kankerverwek\",\n  \"kankerverwekkers\": \"kankerverwekker\",\n  \"kannen\": \"kann\",\n  \"kannibalen\": \"kannibal\",\n  \"kanon\": \"kanon\",\n  \"kanonknallende\": \"kanonknall\",\n  \"kans\": \"kan\",\n  \"kansai\": \"kansai\",\n  \"kansen\": \"kans\",\n  \"kansrijk\": \"kansrijk\",\n  \"kansrijke\": \"kansrijk\",\n  \"kant\": \"kant\",\n  \"kantelt\": \"kantelt\",\n  \"kanten\": \"kant\",\n  \"kantje\": \"kantj\",\n  \"kantjes\": \"kantjes\",\n  \"kantomkapte\": \"kantomkapt\",\n  \"kantons\": \"kanton\",\n  \"kantoor\": \"kantor\",\n  \"kantoorapparatuur\": \"kantoorapparatur\",\n  \"kantoorautomatisering\": \"kantoorautomatiser\",\n  \"kantoorgebouw\": \"kantoorgebouw\",\n  \"kantoorgebouwen\": \"kantoorgebouw\",\n  \"kantoormedewerker\": \"kantoormedewerker\",\n  \"kantoorpand\": \"kantoorpand\",\n  \"kantoorpapier\": \"kantoorpapier\",\n  \"kantoorruimte\": \"kantoorruimt\",\n  \"kantoorstoel\": \"kantoorstoel\",\n  \"kantooruren\": \"kantoorur\",\n  \"kantoren\": \"kantor\",\n  \"kantorencomplex\": \"kantorencomplex\",\n  \"kantstrooiers\": \"kantstrooier\",\n  \"kanttekening\": \"kantteken\",\n  \"kanttekeningen\": \"kantteken\",\n  \"kap\": \"kap\",\n  \"kapaanvraag\": \"kapaanvrag\",\n  \"kapel\": \"kapel\",\n  \"kapellen\": \"kapell\",\n  \"kaping\": \"kaping\",\n  \"kapitaal\": \"kapital\",\n  \"kapitaalgoederen\": \"kapitaalgoeder\",\n  \"kapitaalkosten\": \"kapitaalkost\",\n  \"kapitaalkrachtige\": \"kapitaalkracht\",\n  \"kapitaalmarkt\": \"kapitaalmarkt\",\n  \"kapitaalverlies\": \"kapitaalverlies\",\n  \"kapitaalvernietiging\": \"kapitaalverniet\",\n  \"kapitaalverschaffing\": \"kapitaalverschaff\",\n  \"kapitale\": \"kapital\",\n  \"kapitaliseren\": \"kapitaliser\",\n  \"kapitalist\": \"kapitalist\",\n  \"kapitalisten\": \"kapitalist\",\n  \"kaplengte\": \"kaplengt\",\n  \"kapot\": \"kapot\",\n  \"kapotgaan\": \"kapotgan\",\n  \"kapotgevroren\": \"kapotgevror\",\n  \"kapotje\": \"kapotj\",\n  \"kapotte\": \"kapot\",\n  \"kappen\": \"kapp\",\n  \"kapper\": \"kapper\",\n  \"kappers\": \"kapper\",\n  \"kapselt\": \"kapselt\",\n  \"kapstok\": \"kapstok\",\n  \"kapvergunning\": \"kapvergunn\",\n  \"kapvlakten\": \"kapvlakt\",\n  \"kar\": \"kar\",\n  \"karaffen\": \"karaff\",\n  \"karakter\": \"karakter\",\n  \"karakteriseert\": \"karakteriseert\",\n  \"karakteriseren\": \"karakteriser\",\n  \"karakterisering\": \"karakteriser\",\n  \"karakteriseringen\": \"karakteriser\",\n  \"karakteristieke\": \"karakteristiek\",\n  \"karakters\": \"karakter\",\n  \"karavanen\": \"karavan\",\n  \"karel\": \"karel\",\n  \"kárel\": \"karel\",\n  \"karels\": \"karel\",\n  \"karen\": \"kar\",\n  \"karimov\": \"karimov\",\n  \"karin\": \"karin\",\n  \"karlsruhe\": \"karlsruh\",\n  \"karretje\": \"karretj\",\n  \"karretjes\": \"karretjes\",\n  \"kartelde\": \"karteld\",\n  \"karton\": \"karton\",\n  \"kartonactiviteiten\": \"kartonactiviteit\",\n  \"kartonafval\": \"kartonafval\",\n  \"kartonbranche\": \"kartonbranch\",\n  \"kartonfabrieken\": \"kartonfabriek\",\n  \"kartonfabrikage\": \"kartonfabrikag\",\n  \"kartonindustrie\": \"kartonindustrie\",\n  \"kartonnagebedrijven\": \"kartonnagebedrijv\",\n  \"kartonnen\": \"kartonn\",\n  \"kartonproducent\": \"kartonproducent\",\n  \"kartonproducenten\": \"kartonproducent\",\n  \"kartonrecyclinginstallatie\": \"kartonrecyclinginstallatie\",\n  \"kartonverkleiner\": \"kartonverkleiner\",\n  \"kartonverpakkers\": \"kartonverpakker\",\n  \"karwats\": \"karwat\",\n  \"karwatsen\": \"karwats\",\n  \"karwei\": \"karwei\",\n  \"kas\": \"kas\",\n  \"kasklimaat\": \"kasklimat\",\n  \"kaspische\": \"kaspisch\",\n  \"kasproject\": \"kasproject\",\n  \"kassa\": \"kassa\",\n  \"kassel\": \"kassel\",\n  \"kassen\": \"kass\",\n  \"kassengebieden\": \"kassengebied\",\n  \"kassian\": \"kassian\",\n  \"kassla\": \"kassla\",\n  \"kast\": \"kast\",\n  \"kastanje\": \"kastanj\",\n  \"kastanjebomen\": \"kastanjebom\",\n  \"kaste\": \"kast\",\n  \"kasteel\": \"kastel\",\n  \"kasteelt\": \"kasteelt\",\n  \"kasteelten\": \"kasteelt\",\n  \"kastelen\": \"kastel\",\n  \"kasten\": \"kast\",\n  \"kastenkabinet\": \"kastenkabinet\",\n  \"kastenkamer\": \"kastenkamer\",\n  \"kastoestand\": \"kastoestand\",\n  \"kastrup\": \"kastrup\",\n  \"kasverwarmingsproject\": \"kasverwarmingsproject\",\n  \"kat\": \"kat\",\n  \"katalysator\": \"katalysator\",\n  \"katalysatoren\": \"katalysator\",\n  \"katalysatorvolume\": \"katalysatorvolum\",\n  \"katalytisch\": \"katalytisch\",\n  \"katalytische\": \"katalytisch\",\n  \"kathedraal\": \"kathedral\",\n  \"kathode\": \"kathod\",\n  \"katholieke\": \"katholiek\",\n  \"kationische\": \"kationisch\",\n  \"katje\": \"katj\",\n  \"katoen\": \"katoen\",\n  \"katoenen\": \"katoen\",\n  \"katoenproducent\": \"katoenproducent\",\n  \"katoenspinnerij\": \"katoenspinnerij\",\n  \"katoenteelt\": \"katoenteelt\",\n  \"katoentextiel\": \"katoentextiel\",\n  \"katowice\": \"katowic\",\n  \"katten\": \"kat\",\n  \"katterig\": \"katter\",\n  \"kattesnorren\": \"kattesnorr\",\n  \"katwijk\": \"katwijk\",\n  \"kauwen\": \"kauw\",\n  \"kauwgom\": \"kauwgom\",\n  \"kavb\": \"kavb\",\n  \"kavelruil\": \"kavelruil\",\n  \"kavelsloten\": \"kavelslot\",\n  \"kaviaar\": \"kaviaar\",\n  \"kawasaki\": \"kawasaki\",\n  \"kayen\": \"kay\",\n  \"kazachstan\": \"kazachstan\",\n  \"kazen\": \"kaz\",\n  \"kazerne\": \"kazern\",\n  \"kazerneterrein\": \"kazerneterrein\",\n  \"kca\": \"kca\",\n  \"kcna\": \"kcna\",\n  \"keating\": \"keating\",\n  \"kee\": \"kee\",\n  \"keek\": \"kek\",\n  \"keel\": \"kel\",\n  \"keelbas\": \"keelbas\",\n  \"keent\": \"keent\",\n  \"keer\": \"ker\",\n  \"keerde\": \"keerd\",\n  \"keerden\": \"keerd\",\n  \"keermuren\": \"keermur\",\n  \"keert\": \"keert\",\n  \"keerwand\": \"keerwand\",\n  \"keerzijde\": \"keerzijd\",\n  \"kees\": \"kes\",\n  \"keetje\": \"keetj\",\n  \"kegels\": \"kegel\",\n  \"kegro\": \"kegro\",\n  \"kehrer\": \"kehrer\",\n  \"keien\": \"kei\",\n  \"keihard\": \"keihard\",\n  \"keiharde\": \"keihard\",\n  \"keijsers\": \"keijser\",\n  \"keilgootcentrale\": \"keilgootcentral\",\n  \"keith\": \"keith\",\n  \"keken\": \"kek\",\n  \"kelchtermans\": \"kelchterman\",\n  \"kelder\": \"kelder\",\n  \"keldert\": \"keldert\",\n  \"kelen\": \"kel\",\n  \"kelken\": \"kelk\",\n  \"kellner\": \"kellner\",\n  \"keltan\": \"keltan\",\n  \"kelthane\": \"kelthan\",\n  \"kelvin\": \"kelvin\",\n  \"kema\": \"kema\",\n  \"kembang\": \"kembang\",\n  \"kemira\": \"kemira\",\n  \"kemiralokatie\": \"kemiralokatie\",\n  \"kempen\": \"kemp\",\n  \"kemperman\": \"kemperman\",\n  \"kemphaan\": \"kemphan\",\n  \"kempton\": \"kempton\",\n  \"ken\": \"ken\",\n  \"kenbaar\": \"kenbar\",\n  \"kende\": \"kend\",\n  \"kenden\": \"kend\",\n  \"kenia\": \"kenia\",\n  \"kenmerken\": \"kenmerk\",\n  \"kenmerkend\": \"kenmerk\",\n  \"kennelijk\": \"kennelijk\",\n  \"kennelijke\": \"kennelijk\",\n  \"kennemerland\": \"kennemerland\",\n  \"kennen\": \"kenn\",\n  \"kennende\": \"kennend\",\n  \"kenneth\": \"kenneth\",\n  \"kennis\": \"kennis\",\n  \"kennisachterstand\": \"kennisachterstand\",\n  \"kennisbeleid\": \"kennisbeleid\",\n  \"kenniscentra\": \"kenniscentra\",\n  \"kenniscentrum\": \"kenniscentrum\",\n  \"kennisexploitatie\": \"kennisexploitatie\",\n  \"kennisgebrek\": \"kennisgebrek\",\n  \"kennisgeven\": \"kennisgev\",\n  \"kennisgeving\": \"kennisgev\",\n  \"kennisgevingsplicht\": \"kennisgevingsplicht\",\n  \"kennisinfrastructuur\": \"kennisinfrastructur\",\n  \"kennisinstellingen\": \"kennisinstell\",\n  \"kennisinstituten\": \"kennisinstitut\",\n  \"kennisintensieve\": \"kennisintensiev\",\n  \"kennisintensievere\": \"kennisintensiever\",\n  \"kennismaken\": \"kennismak\",\n  \"kennisontwikkeling\": \"kennisontwikkel\",\n  \"kennisoverdracht\": \"kennisoverdracht\",\n  \"kennisoverdrachtprojecten\": \"kennisoverdrachtproject\",\n  \"kennispool\": \"kennispol\",\n  \"kennissen\": \"kenniss\",\n  \"kennissenkringen\": \"kennissenkr\",\n  \"kennisuitwisseling\": \"kennisuitwissel\",\n  \"kennisverspreiding\": \"kennisverspreid\",\n  \"kenschetst\": \"kenschetst\",\n  \"kent\": \"kent\",\n  \"kentallen\": \"kentall\",\n  \"kentucky\": \"kentucky\",\n  \"keppel\": \"keppel\",\n  \"keramiek\": \"keramiek\",\n  \"keramisch\": \"keramisch\",\n  \"keramische\": \"keramisch\",\n  \"kerel\": \"kerel\",\n  \"kérel\": \"kerel\",\n  \"kereltje\": \"kereltj\",\n  \"kereltjes\": \"kereltjes\",\n  \"keren\": \"ker\",\n  \"kerende\": \"kerend\",\n  \"kerk\": \"kerk\",\n  \"kerke\": \"kerk\",\n  \"kerkelijke\": \"kerkelijk\",\n  \"kerken\": \"kerk\",\n  \"kerkespitsen\": \"kerkespits\",\n  \"kerkhof\": \"kerkhof\",\n  \"kerkhoflaan\": \"kerkhoflan\",\n  \"kerkhoven\": \"kerkhov\",\n  \"kerkrade\": \"kerkrad\",\n  \"kerkspitsen\": \"kerkspits\",\n  \"kerkzuilen\": \"kerkzuil\",\n  \"kermde\": \"kermd\",\n  \"kermden\": \"kermd\",\n  \"kermen\": \"kerm\",\n  \"kermende\": \"kermend\",\n  \"kern\": \"kern\",\n  \"kernactiviteiten\": \"kernactiviteit\",\n  \"kernafval\": \"kernafval\",\n  \"kernarsenaal\": \"kernarsenal\",\n  \"kernbegrippen\": \"kernbegripp\",\n  \"kernbeslissing\": \"kernbesliss\",\n  \"kernbeslissingen\": \"kernbesliss\",\n  \"kernbom\": \"kernbom\",\n  \"kernbommen\": \"kernbomm\",\n  \"kernbrennstoff\": \"kernbrennstoff\",\n  \"kerncentrale\": \"kerncentral\",\n  \"kerncentralepark\": \"kerncentralepark\",\n  \"kerncentrales\": \"kerncentrales\",\n  \"kernen\": \"kern\",\n  \"kernenergie\": \"kernenergie\",\n  \"kernenergiecentrales\": \"kernenergiecentrales\",\n  \"kernenergierecht\": \"kernenergierecht\",\n  \"kernenergiewet\": \"kernenergiewet\",\n  \"kernenergiewetgeving\": \"kernenergiewetgev\",\n  \"kernexperts\": \"kernexpert\",\n  \"kernfusie\": \"kernfusie\",\n  \"kernfusiegelden\": \"kernfusiegeld\",\n  \"kernfusieonderzoek\": \"kernfusieonderzoek\",\n  \"kerngegevens\": \"kerngegeven\",\n  \"kerngezond\": \"kerngezond\",\n  \"kerngroep\": \"kerngroep\",\n  \"kernkop\": \"kernkop\",\n  \"kernkoppen\": \"kernkopp\",\n  \"kernkoppenpolitiek\": \"kernkoppenpolitiek\",\n  \"kernkraftgesellschaft\": \"kernkraftgesellschaft\",\n  \"kernlading\": \"kernlad\",\n  \"kernmacht\": \"kernmacht\",\n  \"kernonderzeeërs\": \"kernonderzeeer\",\n  \"kernongevallen\": \"kernongevall\",\n  \"kernprobleem\": \"kernproblem\",\n  \"kernproef\": \"kernproef\",\n  \"kernproeven\": \"kernproev\",\n  \"kernproevenbeleid\": \"kernproevenbeleid\",\n  \"kernpunt\": \"kernpunt\",\n  \"kernpunten\": \"kernpunt\",\n  \"kernramp\": \"kernramp\",\n  \"kernreactie\": \"kernreactie\",\n  \"kernreactor\": \"kernreactor\",\n  \"kernreactoren\": \"kernreactor\",\n  \"kernreactors\": \"kernreactor\",\n  \"kerntaken\": \"kerntak\",\n  \"kernwapen\": \"kernwap\",\n  \"kernwapenactivist\": \"kernwapenactivist\",\n  \"kernwapenlobby\": \"kernwapenlobby\",\n  \"kernwapens\": \"kernwapen\",\n  \"kernwapenstaten\": \"kernwapenstat\",\n  \"kernwapenvrij\": \"kernwapenvrij\",\n  \"kernwapenvrije\": \"kernwapenvrij\",\n  \"kerosine\": \"kerosin\",\n  \"kerosineheffing\": \"kerosineheff\",\n  \"kerosinelozing\": \"kerosineloz\",\n  \"kerosinelozingen\": \"kerosineloz\",\n  \"kerr\": \"kerr\",\n  \"kers\": \"ker\",\n  \"kersies\": \"kersies\",\n  \"kerst\": \"kerst\",\n  \"kerstbomen\": \"kerstbom\",\n  \"kerstbomenteelt\": \"kerstbomenteelt\",\n  \"kerstkaarten\": \"kerstkaart\",\n  \"kerstpakketten\": \"kerstpakket\",\n  \"kerstreces\": \"kerstreces\",\n  \"kesber\": \"kesber\",\n  \"kesteren\": \"kester\",\n  \"ketel\": \"ketel\",\n  \"ketelassortiment\": \"ketelassortiment\",\n  \"ketelbouwers\": \"ketelbouwer\",\n  \"ketelbrug\": \"ketelbrug\",\n  \"ketelfabrikant\": \"ketelfabrikant\",\n  \"ketelfabrikanten\": \"ketelfabrikant\",\n  \"ketelfundaties\": \"ketelfundaties\",\n  \"ketelhuis\": \"ketelhuis\",\n  \"ketelmeer\": \"ketelmer\",\n  \"ketelmeerslib\": \"ketelmeerslib\",\n  \"ketelpijpen\": \"ketelpijp\",\n  \"ketelrendement\": \"ketelrendement\",\n  \"ketels\": \"ketel\",\n  \"ketelserie\": \"ketelserie\",\n  \"ketelsteen\": \"ketelsten\",\n  \"keten\": \"ket\",\n  \"ketenanalyses\": \"ketenanalyses\",\n  \"ketenbeheer\": \"ketenbeher\",\n  \"ketenbeheersing\": \"ketenbeheers\",\n  \"ketenden\": \"ketend\",\n  \"ketenen\": \"keten\",\n  \"ketenkaart\": \"ketenkaart\",\n  \"ketens\": \"keten\",\n  \"ketensysteem\": \"ketensystem\",\n  \"ketimoen\": \"ketimoen\",\n  \"ketonen\": \"keton\",\n  \"ketterij\": \"ketterij\",\n  \"ketting\": \"ketting\",\n  \"kettingen\": \"ketting\",\n  \"kettings\": \"ketting\",\n  \"keu\": \"keu\",\n  \"keuken\": \"keuk\",\n  \"keukenafval\": \"keukenafval\",\n  \"keukenapparatuur\": \"keukenapparatur\",\n  \"keukenblok\": \"keukenblok\",\n  \"keukendeur\": \"keukendeur\",\n  \"keukenmeid\": \"keukenmeid\",\n  \"keukenmeiden\": \"keukenmeid\",\n  \"keukens\": \"keuken\",\n  \"keukenzout\": \"keukenzout\",\n  \"keulen\": \"keul\",\n  \"keur\": \"keur\",\n  \"keurde\": \"keurd\",\n  \"keurden\": \"keurd\",\n  \"keuren\": \"keur\",\n  \"keurig\": \"keurig\",\n  \"keurige\": \"keurig\",\n  \"keuring\": \"keuring\",\n  \"keuringen\": \"keuring\",\n  \"keurings\": \"keuring\",\n  \"keuringsdienst\": \"keuringsdienst\",\n  \"keuringseisen\": \"keuringseis\",\n  \"keuringsinstituut\": \"keuringsinstitut\",\n  \"keuringskosten\": \"keuringskost\",\n  \"keurmerk\": \"keurmerk\",\n  \"keurmerkaanduidingen\": \"keurmerkaanduid\",\n  \"keurmerken\": \"keurmerk\",\n  \"keurmerksysteem\": \"keurmerksystem\",\n  \"keurslijf\": \"keurslijf\",\n  \"keurt\": \"keurt\",\n  \"keus\": \"keus\",\n  \"keuze\": \"keuz\",\n  \"keuzen\": \"keuz\",\n  \"keuzes\": \"keuzes\",\n  \"key\": \"key\",\n  \"keynes\": \"keynes\",\n  \"kfc\": \"kfc\",\n  \"kg\": \"kg\",\n  \"kga\": \"kga\",\n  \"khambhat\": \"khambhat\",\n  \"khz\": \"khz\",\n  \"kibbel\": \"kibbel\",\n  \"kibbèl\": \"kibbèl\",\n  \"kibbelden\": \"kibbeld\",\n  \"kibbelen\": \"kibbel\",\n  \"kibbelende\": \"kibbel\",\n  \"kidu\": \"kidu\",\n  \"kiekeboe\": \"kiekeboe\",\n  \"kielce\": \"kielc\",\n  \"kiem\": \"kiem\",\n  \"kiemende\": \"kiemend\",\n  \"kieplaadsysteem\": \"kieplaadsystem\",\n  \"kieplaadsystemen\": \"kieplaadsystem\",\n  \"kier\": \"kier\",\n  \"kieren\": \"kier\",\n  \"kieseriet\": \"kieseriet\",\n  \"kiesheid\": \"kiesheid\",\n  \"kiesschijf\": \"kiesschijf\",\n  \"kiest\": \"kiest\",\n  \"kietelde\": \"kieteld\",\n  \"kiev\": \"kiev\",\n  \"kievieten\": \"kieviet\",\n  \"kievietseieren\": \"kievietseier\",\n  \"kievitsbloem\": \"kievitsbloem\",\n  \"kiewiet\": \"kiewiet\",\n  \"kiezen\": \"kiez\",\n  \"kiezers\": \"kiezer\",\n  \"kiggen\": \"kigg\",\n  \"kijfde\": \"kijfd\",\n  \"kijk\": \"kijk\",\n  \"kijken\": \"kijk\",\n  \"kijkend\": \"kijkend\",\n  \"kijkende\": \"kijkend\",\n  \"kijkers\": \"kijker\",\n  \"kijkgat\": \"kijkgat\",\n  \"kijkt\": \"kijkt\",\n  \"kikker\": \"kikker\",\n  \"kikkers\": \"kikker\",\n  \"kikkersterfte\": \"kikkersterft\",\n  \"kikvorsen\": \"kikvors\",\n  \"kil\": \"kil\",\n  \"kilder\": \"kilder\",\n  \"kille\": \"kill\",\n  \"killick\": \"killick\",\n  \"killige\": \"killig\",\n  \"kiln\": \"kiln\",\n  \"kilnattig\": \"kilnatt\",\n  \"kilo\": \"kilo\",\n  \"kilogram\": \"kilogram\",\n  \"kilometer\": \"kilometer\",\n  \"kilometers\": \"kilometer\",\n  \"kilonewton\": \"kilonewton\",\n  \"kiloton\": \"kiloton\",\n  \"kilowatt\": \"kilowatt\",\n  \"kilowattuur\": \"kilowattur\",\n  \"kilowattuurprijs\": \"kilowattuurprijs\",\n  \"kilte\": \"kilt\",\n  \"kilwinderige\": \"kilwinder\",\n  \"kim\": \"kim\",\n  \"kimman\": \"kimman\",\n  \"kimmen\": \"kimm\",\n  \"kin\": \"kin\",\n  \"kind\": \"kind\",\n  \"kinder\": \"kinder\",\n  \"kinderachtig\": \"kinderacht\",\n  \"kinderarmpjes\": \"kinderarmpjes\",\n  \"kinderarts\": \"kinderart\",\n  \"kinderbals\": \"kinderbal\",\n  \"kinderbijslag\": \"kinderbijslag\",\n  \"kinderboeken\": \"kinderboek\",\n  \"kinderborst\": \"kinderborst\",\n  \"kinderen\": \"kinder\",\n  \"kindergedroom\": \"kindergedrom\",\n  \"kindergemoed\": \"kindergemoed\",\n  \"kindergezicht\": \"kindergezicht\",\n  \"kinderhart\": \"kinderhart\",\n  \"kinderhelderheid\": \"kinderhelder\",\n  \"kinderherinneringen\": \"kinderherinner\",\n  \"kinderheugenissen\": \"kinderheugeniss\",\n  \"kinderjaren\": \"kinderjar\",\n  \"kinderkamer\": \"kinderkamer\",\n  \"kinderklank\": \"kinderklank\",\n  \"kinderkopjes\": \"kinderkopjes\",\n  \"kinderleed\": \"kinderled\",\n  \"kinderliefde\": \"kinderliefd\",\n  \"kinderlijf\": \"kinderlijf\",\n  \"kinderlijk\": \"kinder\",\n  \"kinderlijke\": \"kinder\",\n  \"kinderlijker\": \"kinderlijker\",\n  \"kinderlijkheid\": \"kinder\",\n  \"kinderlijkjes\": \"kinderlijkjes\",\n  \"kinderlijks\": \"kinder\",\n  \"kindermeid\": \"kindermeid\",\n  \"kindermeisje\": \"kindermeisj\",\n  \"kinderogen\": \"kinderog\",\n  \"kinderschoenen\": \"kinderschoen\",\n  \"kinderspeelplaats\": \"kinderspeelplat\",\n  \"kinderspel\": \"kinderspel\",\n  \"kinderspelen\": \"kinderspel\",\n  \"kindersprookjes\": \"kindersprookjes\",\n  \"kinderstem\": \"kinderstem\",\n  \"kinderstemmen\": \"kinderstemm\",\n  \"kindertijd\": \"kindertijd\",\n  \"kindertjes\": \"kindertjes\",\n  \"kindervel\": \"kindervel\",\n  \"kinderverbeelding\": \"kinderverbeeld\",\n  \"kinderverbeeldingen\": \"kinderverbeeld\",\n  \"kindervriendelijk\": \"kindervriend\",\n  \"kinderwagentje\": \"kinderwagentj\",\n  \"kinderwang\": \"kinderwang\",\n  \"kinderwangen\": \"kinderwang\",\n  \"kinderziekten\": \"kinderziekt\",\n  \"kinderziel\": \"kinderziel\",\n  \"kinderzielen\": \"kinderziel\",\n  \"kinderzwakte\": \"kinderzwakt\",\n  \"kindeten\": \"kindet\",\n  \"kindje\": \"kindj\",\n  \"kindjesjaren\": \"kindjesjar\",\n  \"kindjeslichaam\": \"kindjeslicham\",\n  \"kindjesspeelsheid\": \"kindjesspeels\",\n  \"kinds\": \"kind\",\n  \"kindse\": \"kind\",\n  \"kindsheid\": \"kindsheid\",\n  \"kindsjaren\": \"kindsjar\",\n  \"kindskinderen\": \"kindskinder\",\n  \"kinetische\": \"kinetisch\",\n  \"kingdom\": \"kingdom\",\n  \"kingma\": \"kingma\",\n  \"kingstown\": \"kingstown\",\n  \"kinshofer\": \"kinshofer\",\n  \"kinston\": \"kinston\",\n  \"kinzig\": \"kinzig\",\n  \"kiosk\": \"kiosk\",\n  \"kip\": \"kip\",\n  \"kipautovervoer\": \"kipautovervoer\",\n  \"kippen\": \"kipp\",\n  \"kippenhouder\": \"kippenhouder\",\n  \"kippenmest\": \"kippenmest\",\n  \"kippenmestverwerker\": \"kippenmestverwerker\",\n  \"kipper\": \"kipper\",\n  \"kipperman\": \"kipperman\",\n  \"kippers\": \"kipper\",\n  \"kipwagens\": \"kipwagen\",\n  \"kirchhoff\": \"kirchhoff\",\n  \"kirkpatrick\": \"kirkpatrick\",\n  \"kirstin\": \"kirstin\",\n  \"kiruna\": \"kiruna\",\n  \"kissebissende\": \"kissebiss\",\n  \"kist\": \"kist\",\n  \"kisten\": \"kist\",\n  \"kistkalveren\": \"kistkalver\",\n  \"kistverbod\": \"kistverbod\",\n  \"kit\": \"kit\",\n  \"kits\": \"kit\",\n  \"kivi\": \"kivi\",\n  \"kiwa\": \"kiwa\",\n  \"kj\": \"kj\",\n  \"kjeller\": \"kjeller\",\n  \"klaagde\": \"klaagd\",\n  \"klaagden\": \"klaagd\",\n  \"klaagsnikte\": \"klaagsnikt\",\n  \"klaar\": \"klar\",\n  \"klaarbassins\": \"klaarbassin\",\n  \"klaarblijkelijk\": \"klaarblijk\",\n  \"klaarde\": \"klaard\",\n  \"klaarder\": \"klaarder\",\n  \"klaardere\": \"klaarder\",\n  \"klaarduidelijk\": \"klaarduid\",\n  \"klaargezet\": \"klaargezet\",\n  \"klaarheid\": \"klaarheid\",\n  \"klaarmaaltijden\": \"klaarmaaltijd\",\n  \"klaarmaken\": \"klaarmak\",\n  \"klaarte\": \"klaart\",\n  \"klaartje\": \"klaartj\",\n  \"klaasje\": \"klaasj\",\n  \"klacht\": \"klacht\",\n  \"klachten\": \"klacht\",\n  \"klachtenregistratie\": \"klachtenregistratie\",\n  \"kladversie\": \"kladversie\",\n  \"klagelijke\": \"klagelijk\",\n  \"klagen\": \"klag\",\n  \"klagend\": \"klagend\",\n  \"klagende\": \"klagend\",\n  \"klager\": \"klager\",\n  \"klagers\": \"klager\",\n  \"klam\": \"klam\",\n  \"klamme\": \"klamm\",\n  \"klampende\": \"klampend\",\n  \"klampte\": \"klampt\",\n  \"klank\": \"klank\",\n  \"klankbord\": \"klankbord\",\n  \"klankbordgroep\": \"klankbordgroep\",\n  \"klanken\": \"klank\",\n  \"klankje\": \"klankj\",\n  \"klankklare\": \"klankklar\",\n  \"klankreinheid\": \"klankrein\",\n  \"klankrijker\": \"klankrijker\",\n  \"klant\": \"klant\",\n  \"klanten\": \"klant\",\n  \"klantengroep\": \"klantengroep\",\n  \"klantenspecificatie\": \"klantenspecificatie\",\n  \"klantgericht\": \"klantgericht\",\n  \"klantgerichter\": \"klantgerichter\",\n  \"klantvriendelijk\": \"klantvriend\",\n  \"klap\": \"klap\",\n  \"klaplopen\": \"klaplop\",\n  \"klapmutsen\": \"klapmuts\",\n  \"klappen\": \"klapp\",\n  \"klappende\": \"klappend\",\n  \"klapperbomen\": \"klapperbom\",\n  \"klapperde\": \"klapperd\",\n  \"klapperden\": \"klapperd\",\n  \"klapperen\": \"klapper\",\n  \"klappertandde\": \"klappertand\",\n  \"klare\": \"klar\",\n  \"klaren\": \"klar\",\n  \"klaroenen\": \"klaroen\",\n  \"klasse\": \"klas\",\n  \"klassegebied\": \"klassegebied\",\n  \"klassen\": \"klass\",\n  \"klassiek\": \"klassiek\",\n  \"klassieke\": \"klassiek\",\n  \"klauwen\": \"klauw\",\n  \"klaver\": \"klaver\",\n  \"klaveren\": \"klaver\",\n  \"klb\": \"klb\",\n  \"kleden\": \"kled\",\n  \"kledij\": \"kledij\",\n  \"kleding\": \"kleding\",\n  \"kledingconcern\": \"kledingconcern\",\n  \"kledingketen\": \"kledingket\",\n  \"kledingstuk\": \"kledingstuk\",\n  \"kleed\": \"kled\",\n  \"kleedde\": \"kled\",\n  \"kleedgeld\": \"kleedgeld\",\n  \"kleedkamer\": \"kleedkamer\",\n  \"kleedt\": \"kleedt\",\n  \"kleef\": \"klef\",\n  \"kleefkracht\": \"kleefkracht\",\n  \"kleefkruid\": \"kleefkruid\",\n  \"kleefstoffen\": \"kleefstoff\",\n  \"kleeft\": \"kleeft\",\n  \"kleermaker\": \"kleermaker\",\n  \"kleertjes\": \"kleertjes\",\n  \"klei\": \"klei\",\n  \"kleigrond\": \"kleigrond\",\n  \"kleigronden\": \"kleigrond\",\n  \"kleilaag\": \"kleilag\",\n  \"kleilagen\": \"kleilag\",\n  \"kleimineralen\": \"kleimineral\",\n  \"klein\": \"klein\",\n  \"klèin\": \"klèin\",\n  \"kleinbedrijf\": \"kleinbedrijf\",\n  \"kleinchemie\": \"kleinchemie\",\n  \"kleindochter\": \"kleindochter\",\n  \"kleindochtertje\": \"kleindochtertj\",\n  \"kleine\": \"klein\",\n  \"kleinekindjes\": \"kleinekindjes\",\n  \"kleiner\": \"kleiner\",\n  \"kleinere\": \"kleiner\",\n  \"kleinfruitteeltdag\": \"kleinfruitteeltdag\",\n  \"kleinfruittelers\": \"kleinfruitteler\",\n  \"kleingebruikers\": \"kleingebruiker\",\n  \"kleinhandelaren\": \"kleinhandelar\",\n  \"kleinheid\": \"kleinheid\",\n  \"kleinigheden\": \"kleinig\",\n  \"kleinigheid\": \"kleinig\",\n  \"kleinkind\": \"kleinkind\",\n  \"kleinkinderen\": \"kleinkinder\",\n  \"kleinkinderenkring\": \"kleinkinderenkr\",\n  \"kleinkinderliefde\": \"kleinkinderliefd\",\n  \"kleinkindertjes\": \"kleinkindertjes\",\n  \"kleinschalig\": \"kleinschal\",\n  \"kleinschalige\": \"kleinschal\",\n  \"kleinschaliger\": \"kleinschaliger\",\n  \"kleinschaligheid\": \"kleinschal\",\n  \"kleinste\": \"kleinst\",\n  \"kleinsteeds\": \"kleinsted\",\n  \"kleinsten\": \"kleinst\",\n  \"kleinte\": \"kleint\",\n  \"kleintjes\": \"kleintjes\",\n  \"kleinverbruik\": \"kleinverbruik\",\n  \"kleinverbruiker\": \"kleinverbruiker\",\n  \"kleinverbruikers\": \"kleinverbruiker\",\n  \"kleinverbruikersheffing\": \"kleinverbruikersheff\",\n  \"kleinververbruikers\": \"kleinververbruiker\",\n  \"kleinzakelijke\": \"kleinzak\",\n  \"kleinzielig\": \"kleinziel\",\n  \"kleinzoon\": \"kleinzon\",\n  \"kleiput\": \"kleiput\",\n  \"kleiputten\": \"kleiput\",\n  \"kleiweg\": \"kleiweg\",\n  \"klemde\": \"klemd\",\n  \"klemmende\": \"klemmend\",\n  \"klemprofielen\": \"klemprofiel\",\n  \"klep\": \"klep\",\n  \"kleppen\": \"klepp\",\n  \"klepperden\": \"klepperd\",\n  \"kleren\": \"kler\",\n  \"kléren\": \"kler\",\n  \"klerenkast\": \"klerenkast\",\n  \"klets\": \"klet\",\n  \"kletsen\": \"klets\",\n  \"kletsnat\": \"kletsnat\",\n  \"kletspartijen\": \"kletspartij\",\n  \"kletsregen\": \"kletsreg\",\n  \"kletst\": \"kletst\",\n  \"kletste\": \"kletst\",\n  \"kletsten\": \"kletst\",\n  \"kletterde\": \"kletterd\",\n  \"kletterden\": \"kletterd\",\n  \"kletterende\": \"kletter\",\n  \"kletteringetjes\": \"kletteringetjes\",\n  \"kleur\": \"kleur\",\n  \"kleurden\": \"kleurd\",\n  \"kleurechte\": \"kleurecht\",\n  \"kleuren\": \"kleur\",\n  \"kleurennamen\": \"kleurennam\",\n  \"kleurgloeiingen\": \"kleurgloei\",\n  \"kleurige\": \"kleurig\",\n  \"kleurlingen\": \"kleurling\",\n  \"kleurloze\": \"kleurloz\",\n  \"kleurschietende\": \"kleurschiet\",\n  \"kleurstelling\": \"kleurstell\",\n  \"kleurstof\": \"kleurstof\",\n  \"kleurstoffen\": \"kleurstoff\",\n  \"kleurtjes\": \"kleurtjes\",\n  \"kleuters\": \"kleuter\",\n  \"kleven\": \"klev\",\n  \"kliek\": \"kliek\",\n  \"kliekjes\": \"kliekjes\",\n  \"klim\": \"klim\",\n  \"klima\": \"klima\",\n  \"klimaat\": \"klimat\",\n  \"klimaatbeheersing\": \"klimaatbeheers\",\n  \"klimaatbeheersingssysteem\": \"klimaatbeheersingssystem\",\n  \"klimaatbeleid\": \"klimaatbeleid\",\n  \"klimaatbescherming\": \"klimaatbescherm\",\n  \"klimaatcentrum\": \"klimaatcentrum\",\n  \"klimaatconferentie\": \"klimaatconferentie\",\n  \"klimaatinstallaties\": \"klimaatinstallaties\",\n  \"klimaatmodellen\": \"klimaatmodell\",\n  \"klimaatnota\": \"klimaatnota\",\n  \"klimaatonderzoek\": \"klimaatonderzoek\",\n  \"klimaatonderzoekers\": \"klimaatonderzoeker\",\n  \"klimaatopwarming\": \"klimaatopwarm\",\n  \"klimaatproblematiek\": \"klimaatproblematiek\",\n  \"klimaatregeling\": \"klimaatregel\",\n  \"klimaatschommelingen\": \"klimaatschommel\",\n  \"klimaatsverandering\": \"klimaatsverander\",\n  \"klimaatsveranderingen\": \"klimaatsverander\",\n  \"klimaatverandering\": \"klimaatverander\",\n  \"klimaatveranderingen\": \"klimaatverander\",\n  \"klimaatverbond\": \"klimaatverbond\",\n  \"klimaatverdrag\": \"klimaatverdrag\",\n  \"klimatisering\": \"klimatiser\",\n  \"klimatologische\": \"klimatologisch\",\n  \"klimmen\": \"klimm\",\n  \"klimmers\": \"klimmer\",\n  \"klimming\": \"klimming\",\n  \"klingelden\": \"klingeld\",\n  \"klinieken\": \"kliniek\",\n  \"klinisch\": \"klinisch\",\n  \"klinische\": \"klinisch\",\n  \"klinkelend\": \"klinkel\",\n  \"klinken\": \"klink\",\n  \"klinkend\": \"klinkend\",\n  \"klinkende\": \"klinkend\",\n  \"klinkers\": \"klinker\",\n  \"klinkerweg\": \"klinkerweg\",\n  \"klinkt\": \"klinkt\",\n  \"klip\": \"klip\",\n  \"klippen\": \"klipp\",\n  \"klissen\": \"kliss\",\n  \"klitten\": \"klit\",\n  \"klm\": \"klm\",\n  \"klodder\": \"klodder\",\n  \"kloek\": \"kloek\",\n  \"kloet\": \"kloet\",\n  \"klok\": \"klok\",\n  \"klokgelui\": \"klokgelui\",\n  \"klokje\": \"klokj\",\n  \"klokjes\": \"klokjes\",\n  \"klokjesfamilie\": \"klokjesfamilie\",\n  \"klokpompen\": \"klokpomp\",\n  \"klom\": \"klom\",\n  \"klommen\": \"klomm\",\n  \"klomp\": \"klomp\",\n  \"klompen\": \"klomp\",\n  \"klonk\": \"klonk\",\n  \"klonken\": \"klonk\",\n  \"klontje\": \"klontj\",\n  \"kloof\": \"klof\",\n  \"klooster\": \"klooster\",\n  \"kloostereenvoud\": \"kloostereenvoud\",\n  \"klop\": \"klop\",\n  \"kloppen\": \"klopp\",\n  \"kloppend\": \"kloppend\",\n  \"kloppende\": \"kloppend\",\n  \"klopt\": \"klopt\",\n  \"klopte\": \"klopt\",\n  \"klopten\": \"klopt\",\n  \"klos\": \"klos\",\n  \"klotst\": \"klotst\",\n  \"kls\": \"kls\",\n  \"kluchtigjes\": \"kluchtigjes\",\n  \"kluis\": \"kluis\",\n  \"kluisteren\": \"kluister\",\n  \"kluisters\": \"kluister\",\n  \"kluwende\": \"kluwend\",\n  \"kluwens\": \"kluwen\",\n  \"kluwer\": \"kluwer\",\n  \"km\": \"km\",\n  \"kmi\": \"kmi\",\n  \"kmo\": \"kmo\",\n  \"kmw\": \"kmw\",\n  \"knaagde\": \"knaagd\",\n  \"knaagdieren\": \"knaagdier\",\n  \"knak\": \"knak\",\n  \"knakken\": \"knak\",\n  \"knakt\": \"knakt\",\n  \"knakten\": \"knakt\",\n  \"knallen\": \"knall\",\n  \"knap\": \"knap\",\n  \"knapheid\": \"knapheid\",\n  \"knappe\": \"knapp\",\n  \"knappen\": \"knapp\",\n  \"knapste\": \"knapst\",\n  \"knapton\": \"knapton\",\n  \"knapzak\": \"knapzak\",\n  \"knapzakken\": \"knapzak\",\n  \"knapzaksysteem\": \"knapzaksystem\",\n  \"knarsende\": \"knarsend\",\n  \"knarste\": \"knarst\",\n  \"knarsten\": \"knarst\",\n  \"knaw\": \"knaw\",\n  \"knb\": \"knb\",\n  \"kncv\": \"kncv\",\n  \"knecht\": \"knecht\",\n  \"knechts\": \"knecht\",\n  \"kneep\": \"knep\",\n  \"knel\": \"knel\",\n  \"knellend\": \"knellend\",\n  \"knelpunt\": \"knelpunt\",\n  \"knelpunten\": \"knelpunt\",\n  \"knelpuntenfonds\": \"knelpuntenfond\",\n  \"knerpend\": \"knerpend\",\n  \"knerpende\": \"knerpend\",\n  \"knerpt\": \"knerpt\",\n  \"knerpte\": \"knerpt\",\n  \"knie\": \"knie\",\n  \"knieen\": \"knieen\",\n  \"knieën\": \"knieen\",\n  \"knielde\": \"knield\",\n  \"knielende\": \"knielend\",\n  \"knietjes\": \"knietjes\",\n  \"knieval\": \"knieval\",\n  \"knijpende\": \"knijpend\",\n  \"knijper\": \"knijper\",\n  \"knik\": \"knik\",\n  \"knikkebolde\": \"knikkebold\",\n  \"knikkend\": \"knikkend\",\n  \"knikkende\": \"knikkend\",\n  \"knikkers\": \"knikker\",\n  \"knikking\": \"knikking\",\n  \"knikte\": \"knikt\",\n  \"knikten\": \"knikt\",\n  \"knipoogje\": \"knipoogj\",\n  \"knippen\": \"knipp\",\n  \"knippende\": \"knippend\",\n  \"knipte\": \"knipt\",\n  \"knipten\": \"knipt\",\n  \"knjv\": \"knjv\",\n  \"knmi\": \"knmi\",\n  \"knoeide\": \"knoeid\",\n  \"knokelige\": \"knokel\",\n  \"knokkelig\": \"knokkel\",\n  \"knokkels\": \"knokkel\",\n  \"knoop\": \"knop\",\n  \"knoopcelbatterijen\": \"knoopcelbatterij\",\n  \"knoopcellen\": \"knoopcell\",\n  \"knoopjes\": \"knoopjes\",\n  \"knooplaarzen\": \"knooplaarz\",\n  \"knooppunt\": \"knooppunt\",\n  \"knop\": \"knop\",\n  \"knopen\": \"knop\",\n  \"knoppen\": \"knopp\",\n  \"knotje\": \"knotj\",\n  \"knottnerus\": \"knottnerus\",\n  \"knotwilgen\": \"knotwilg\",\n  \"know\": \"know\",\n  \"knowhow\": \"knowhow\",\n  \"knoxville\": \"knoxvill\",\n  \"knp\": \"knp\",\n  \"knuffelen\": \"knuffel\",\n  \"knv\": \"knv\",\n  \"knwv\": \"knwv\",\n  \"ko\": \"ko\",\n  \"koac\": \"koac\",\n  \"kobe\": \"kob\",\n  \"koch\": \"koch\",\n  \"kocht\": \"kocht\",\n  \"kochten\": \"kocht\",\n  \"kocks\": \"kock\",\n  \"kodde\": \"kod\",\n  \"kodela\": \"kodela\",\n  \"koe\": \"koe\",\n  \"koedood\": \"koedod\",\n  \"koedoot\": \"koedot\",\n  \"koeien\": \"koei\",\n  \"koek\": \"koek\",\n  \"koekebakker\": \"koekebakker\",\n  \"koeken\": \"koek\",\n  \"koekje\": \"koekj\",\n  \"koekjes\": \"koekjes\",\n  \"koekoek\": \"koekoek\",\n  \"koel\": \"koel\",\n  \"koelapparaat\": \"koelapparat\",\n  \"koelbox\": \"koelbox\",\n  \"koelcapaciteit\": \"koelcapaciteit\",\n  \"koelcircuit\": \"koelcircuit\",\n  \"koelcompressoren\": \"koelcompressor\",\n  \"koelde\": \"koeld\",\n  \"koele\": \"koel\",\n  \"koelen\": \"koel\",\n  \"koeler\": \"koeler\",\n  \"koelers\": \"koeler\",\n  \"koelgas\": \"koelgas\",\n  \"koelheid\": \"koelheid\",\n  \"koelhuis\": \"koelhuis\",\n  \"koelhuizen\": \"koelhuiz\",\n  \"koeling\": \"koeling\",\n  \"koelinstallatie\": \"koelinstallatie\",\n  \"koelinstallaties\": \"koelinstallaties\",\n  \"koelkast\": \"koelkast\",\n  \"koelkasten\": \"koelkast\",\n  \"koelkastenfabriek\": \"koelkastenfabriek\",\n  \"koelmachine\": \"koelmachin\",\n  \"koelmachines\": \"koelmachines\",\n  \"koelmethode\": \"koelmethod\",\n  \"koelmeubel\": \"koelmeubel\",\n  \"koelmeubels\": \"koelmeubel\",\n  \"koelmiddel\": \"koelmiddel\",\n  \"koelmiddelen\": \"koelmiddel\",\n  \"koels\": \"koel\",\n  \"koelschepen\": \"koelschep\",\n  \"koelschroot\": \"koelschrot\",\n  \"koelschrootafzeving\": \"koelschrootafzev\",\n  \"koelsysteem\": \"koelsystem\",\n  \"koelsystemen\": \"koelsystem\",\n  \"koelt\": \"koelt\",\n  \"koelte\": \"koelt\",\n  \"koeltechniek\": \"koeltechniek\",\n  \"koeltechnieken\": \"koeltechniek\",\n  \"koeltechnische\": \"koeltechnisch\",\n  \"koeltechnologie\": \"koeltechnologie\",\n  \"koeltjes\": \"koeltjes\",\n  \"koeltoren\": \"koeltor\",\n  \"koelvitrines\": \"koelvitrines\",\n  \"koelvloeistof\": \"koelvloeistof\",\n  \"koelvloeistoffen\": \"koelvloeistoff\",\n  \"koelvraag\": \"koelvrag\",\n  \"koelwater\": \"koelwater\",\n  \"koelwatercicuit\": \"koelwatercicuit\",\n  \"koelwatercircuit\": \"koelwatercircuit\",\n  \"koelwaterleidingen\": \"koelwaterleid\",\n  \"koelwaterpompen\": \"koelwaterpomp\",\n  \"koelwaterzeven\": \"koelwaterzev\",\n  \"koeman\": \"koeman\",\n  \"koen\": \"koen\",\n  \"koepel\": \"koepel\",\n  \"koepelden\": \"koepeld\",\n  \"koepelingen\": \"koepel\",\n  \"koepelkerk\": \"koepelkerk\",\n  \"koepels\": \"koepel\",\n  \"koepelzaal\": \"koepelzal\",\n  \"koers\": \"koer\",\n  \"koersdaling\": \"koersdal\",\n  \"koersen\": \"koers\",\n  \"koersgevend\": \"koersgev\",\n  \"koerswijziging\": \"koerswijz\",\n  \"koerswinst\": \"koerswinst\",\n  \"koesterde\": \"koesterd\",\n  \"koesteren\": \"koester\",\n  \"koesterende\": \"koester\",\n  \"koestert\": \"koestert\",\n  \"koetsier\": \"koetsier\",\n  \"koeweit\": \"koeweit\",\n  \"koffer\": \"koffer\",\n  \"koffers\": \"koffer\",\n  \"koffie\": \"koffie\",\n  \"koffieboeren\": \"koffieboer\",\n  \"koffiebranderij\": \"koffiebranderij\",\n  \"koffiebranderijen\": \"koffiebranderij\",\n  \"koffiefilters\": \"koffiefilter\",\n  \"koffieland\": \"koffieland\",\n  \"koffiemerk\": \"koffiemerk\",\n  \"koffieprijs\": \"koffieprijs\",\n  \"kogels\": \"kogel\",\n  \"kogelvangers\": \"kogelvanger\",\n  \"kohlepfennig\": \"kohlepfenn\",\n  \"kohler\": \"kohler\",\n  \"kohorten\": \"kohort\",\n  \"kojima\": \"kojima\",\n  \"kok\": \"kok\",\n  \"koken\": \"kok\",\n  \"kokendwaterreactoren\": \"kokendwaterreactor\",\n  \"koker\": \"koker\",\n  \"kokers\": \"koker\",\n  \"kokkel\": \"kokkel\",\n  \"kokkelbanken\": \"kokkelbank\",\n  \"kokkels\": \"kokkel\",\n  \"kokos\": \"kokos\",\n  \"kokosvezel\": \"kokosvezel\",\n  \"kokoswaaiers\": \"kokoswaaier\",\n  \"koks\": \"kok\",\n  \"kolding\": \"kolding\",\n  \"kolen\": \"kol\",\n  \"kolencentrale\": \"kolencentral\",\n  \"kolencentrales\": \"kolencentrales\",\n  \"kolenconsumptie\": \"kolenconsumptie\",\n  \"kolengestookte\": \"kolengestookt\",\n  \"koleninjectie\": \"koleninjectie\",\n  \"kolenketels\": \"kolenketel\",\n  \"kolenlagen\": \"kolenlag\",\n  \"kolenmaallijn\": \"kolenmaallijn\",\n  \"kolenmengsel\": \"kolenmengsel\",\n  \"kolenmijn\": \"kolenmijn\",\n  \"kolentechnologie\": \"kolentechnologie\",\n  \"kolenvergassing\": \"kolenvergass\",\n  \"kolenvergassingscentrale\": \"kolenvergassingscentral\",\n  \"kolenvergassingscentrales\": \"kolenvergassingscentrales\",\n  \"kolenwinning\": \"kolenwinn\",\n  \"kolffgemaal\": \"kolffgemal\",\n  \"kolk\": \"kolk\",\n  \"kolken\": \"kolk\",\n  \"kolkenzuiger\": \"kolkenzuiger\",\n  \"kollum\": \"kollum\",\n  \"köln\": \"koln\",\n  \"kolom\": \"kolom\",\n  \"kolonel\": \"kolonel\",\n  \"koloniale\": \"kolonial\",\n  \"kolonialistisch\": \"kolonialistisch\",\n  \"kolonie\": \"kolonie\",\n  \"koloniën\": \"kolonien\",\n  \"kolos\": \"kolos\",\n  \"kolossaal\": \"kolossal\",\n  \"kolossale\": \"kolossal\",\n  \"kom\": \"kom\",\n  \"komedie\": \"komedie\",\n  \"komediespelen\": \"komediespel\",\n  \"komen\": \"kom\",\n  \"komend\": \"komend\",\n  \"komende\": \"komend\",\n  \"komi\": \"komi\",\n  \"komineft\": \"komineft\",\n  \"komisch\": \"komisch\",\n  \"komische\": \"komisch\",\n  \"kommandeerde\": \"kommandeerd\",\n  \"kommetje\": \"kommetj\",\n  \"komo\": \"komo\",\n  \"kompas\": \"kompas\",\n  \"kompressoren\": \"kompressor\",\n  \"komst\": \"komst\",\n  \"komt\": \"komt\",\n  \"kon\": \"kon\",\n  \"kón\": \"kon\",\n  \"kòn\": \"kòn\",\n  \"konakovo\": \"konakovo\",\n  \"konden\": \"kond\",\n  \"kònden\": \"kònden\",\n  \"kondigde\": \"kondigd\",\n  \"kondigden\": \"kondigd\",\n  \"kondigen\": \"kondig\",\n  \"kondigt\": \"kondigt\",\n  \"kondre\": \"kondr\",\n  \"kong\": \"kong\",\n  \"konijnen\": \"konijn\",\n  \"koning\": \"koning\",\n  \"koningin\": \"koningin\",\n  \"kóningin\": \"koningin\",\n  \"kòningin\": \"kòningin\",\n  \"koninginnegracht\": \"koninginnegracht\",\n  \"koningschap\": \"koningschap\",\n  \"köningsgalerie\": \"koningsgalerie\",\n  \"koninklijk\": \"konink\",\n  \"koninklijke\": \"konink\",\n  \"koninkrijk\": \"koninkrijk\",\n  \"konische\": \"konisch\",\n  \"konkelde\": \"konkeld\",\n  \"konsumentenbond\": \"konsumentenbond\",\n  \"kontakt\": \"kontakt\",\n  \"kontich\": \"kontich\",\n  \"konto\": \"konto\",\n  \"konusglas\": \"konusglas\",\n  \"konusglasreceptuur\": \"konusglasreceptur\",\n  \"konusglazen\": \"konusglaz\",\n  \"konzern\": \"konzern\",\n  \"koog\": \"kog\",\n  \"kooi\": \"kooi\",\n  \"kooiconstructie\": \"kooiconstructie\",\n  \"kooijmans\": \"kooijman\",\n  \"kooimaaiers\": \"kooimaaier\",\n  \"kooistra\": \"kooistra\",\n  \"kookte\": \"kookt\",\n  \"kool\": \"kol\",\n  \"kooldioxide\": \"kooldioxid\",\n  \"kooldioxyde\": \"kooldioxyd\",\n  \"kooldioxydegas\": \"kooldioxydegas\",\n  \"kooldioxydemoleculen\": \"kooldioxydemolecul\",\n  \"kooldioxydeniveaus\": \"kooldioxydeniveaus\",\n  \"koolenbrander\": \"koolenbrander\",\n  \"koolfiltergebouwen\": \"koolfiltergebouw\",\n  \"koolfilterinstallatie\": \"koolfilterinstallatie\",\n  \"koolfilters\": \"koolfilter\",\n  \"koolfiltratie\": \"koolfiltratie\",\n  \"koolhoven\": \"koolhov\",\n  \"koolhydraten\": \"koolhydrat\",\n  \"koolkamp\": \"koolkamp\",\n  \"koolmonoxide\": \"koolmonoxid\",\n  \"koolmonoxyde\": \"koolmonoxyd\",\n  \"koolstof\": \"koolstof\",\n  \"koolstofarmere\": \"koolstofarmer\",\n  \"koolstofatomen\": \"koolstofatom\",\n  \"koolstofdioxyde\": \"koolstofdioxyd\",\n  \"koolstofdisulfide\": \"koolstofdisulfid\",\n  \"koolstoffen\": \"koolstoff\",\n  \"koolstofmolecuul\": \"koolstofmolecul\",\n  \"koolstofmonoxyde\": \"koolstofmonoxyd\",\n  \"koolstofoxyden\": \"koolstofoxyd\",\n  \"koolstofpercentage\": \"koolstofpercentag\",\n  \"koolstoftetrachloride\": \"koolstoftetrachlorid\",\n  \"koolstofverbranding\": \"koolstofverbrand\",\n  \"koolteer\": \"koolter\",\n  \"koolwaterstof\": \"koolwaterstof\",\n  \"koolwaterstoffen\": \"koolwaterstoff\",\n  \"koolzaad\": \"koolzad\",\n  \"koolzaadolie\": \"koolzaadolie\",\n  \"koolzuur\": \"koolzur\",\n  \"kooman\": \"kooman\",\n  \"koop\": \"kop\",\n  \"koopgedrag\": \"koopgedrag\",\n  \"koophandel\": \"koophandel\",\n  \"koophuizen\": \"koophuiz\",\n  \"koopkracht\": \"koopkracht\",\n  \"kooplieden\": \"kooplied\",\n  \"kooplui\": \"kooplui\",\n  \"koopman\": \"koopman\",\n  \"koopmans\": \"koopman\",\n  \"koopsom\": \"koopsom\",\n  \"koopsompolis\": \"koopsompolis\",\n  \"koopsomstorting\": \"koopsomstort\",\n  \"koopt\": \"koopt\",\n  \"koopwoningen\": \"koopwon\",\n  \"koorden\": \"koord\",\n  \"koorts\": \"koort\",\n  \"koortsachtig\": \"koortsacht\",\n  \"koortsachtige\": \"koortsacht\",\n  \"koortsgezicht\": \"koortsgezicht\",\n  \"koortsig\": \"koortsig\",\n  \"koortsige\": \"koortsig\",\n  \"koortslijders\": \"koortslijder\",\n  \"koos\": \"kos\",\n  \"koot\": \"kot\",\n  \"kooy\": \"koy\",\n  \"kop\": \"kop\",\n  \"kopakkers\": \"kopakker\",\n  \"kopen\": \"kop\",\n  \"kopenhagen\": \"kopenhag\",\n  \"koper\": \"koper\",\n  \"koperaanvoer\": \"koperaanvoer\",\n  \"koperafval\": \"koperafval\",\n  \"koperchloride\": \"koperchlorid\",\n  \"koperde\": \"koperd\",\n  \"koperdraad\": \"koperdrad\",\n  \"koperen\": \"koper\",\n  \"kopergehalte\": \"kopergehalt\",\n  \"kopergrauwe\": \"kopergrauw\",\n  \"kopermijnen\": \"kopermijn\",\n  \"kopermolen\": \"kopermol\",\n  \"koperoxyde\": \"koperoxyd\",\n  \"koperproduktie\": \"koperproduktie\",\n  \"kopers\": \"koper\",\n  \"kopersmacht\": \"kopersmacht\",\n  \"kopersmarkt\": \"kopersmarkt\",\n  \"kopervracht\": \"kopervracht\",\n  \"koperwinning\": \"koperwinn\",\n  \"kopieën\": \"kopieen\",\n  \"kopieerapparaat\": \"kopieerapparat\",\n  \"kopieerapparaten\": \"kopieerapparat\",\n  \"kopieerpapier\": \"kopieerpapier\",\n  \"kopje\": \"kopj\",\n  \"kopjes\": \"kopjes\",\n  \"koploper\": \"koploper\",\n  \"koplopers\": \"koploper\",\n  \"koppe\": \"kopp\",\n  \"koppelen\": \"koppel\",\n  \"koppeling\": \"koppel\",\n  \"koppelingen\": \"koppel\",\n  \"koppelings\": \"koppel\",\n  \"koppelingsinstallatie\": \"koppelingsinstallatie\",\n  \"koppelingsinstallaties\": \"koppelingsinstallaties\",\n  \"koppen\": \"kopp\",\n  \"koppert\": \"koppert\",\n  \"koppig\": \"koppig\",\n  \"koraal\": \"koral\",\n  \"koraalrif\": \"koraalrif\",\n  \"koraalriffen\": \"koraalriff\",\n  \"korde\": \"kord\",\n  \"kordes\": \"kordes\",\n  \"korea\": \"korea\",\n  \"koreaanse\": \"koreaan\",\n  \"korèk\": \"korèk\",\n  \"koren\": \"kor\",\n  \"korenromp\": \"korenromp\",\n  \"korenslangen\": \"korenslang\",\n  \"korf\": \"korf\",\n  \"korps\": \"korp\",\n  \"korrel\": \"korrel\",\n  \"korrelbeton\": \"korrelbeton\",\n  \"korrelgroottes\": \"korrelgroottes\",\n  \"korrelig\": \"korrel\",\n  \"korrelmateriaal\": \"korrelmateriaal\",\n  \"korrelmix\": \"korrelmix\",\n  \"korrelproduktie\": \"korrelproduktie\",\n  \"korrelreactor\": \"korrelreactor\",\n  \"korrels\": \"korrel\",\n  \"korreltje\": \"korreltj\",\n  \"korrelverdeling\": \"korrelverdel\",\n  \"korstmossen\": \"korstmoss\",\n  \"kort\": \"kort\",\n  \"korte\": \"kort\",\n  \"korten\": \"kort\",\n  \"korter\": \"korter\",\n  \"kortere\": \"korter\",\n  \"kortgeknipte\": \"kortgeknipt\",\n  \"kortgeleden\": \"kortgeled\",\n  \"korting\": \"korting\",\n  \"kortingsregeling\": \"kortingsregel\",\n  \"kortlopende\": \"kortlop\",\n  \"kortom\": \"kortom\",\n  \"kortsluiting\": \"kortsluit\",\n  \"kortsluitroute\": \"kortsluitrout\",\n  \"kortsluitverlies\": \"kortsluitverlies\",\n  \"kortstondig\": \"kortstond\",\n  \"kortweg\": \"kortweg\",\n  \"kosan\": \"kosan\",\n  \"kosice\": \"kosic\",\n  \"kosmetica\": \"kosmetica\",\n  \"kost\": \"kost\",\n  \"kostbaar\": \"kostbar\",\n  \"kostbaarder\": \"kostbaarder\",\n  \"kostbare\": \"kostbar\",\n  \"koste\": \"kost\",\n  \"kosteloos\": \"kostelos\",\n  \"kosten\": \"kost\",\n  \"kostenaspect\": \"kostenaspect\",\n  \"kostenbeheersing\": \"kostenbeheers\",\n  \"kostenbeperking\": \"kostenbeperk\",\n  \"kostenberekeningen\": \"kostenbereken\",\n  \"kostenbesparen\": \"kostenbespar\",\n  \"kostenbesparend\": \"kostenbespar\",\n  \"kostenbesparende\": \"kostenbespar\",\n  \"kostenbesparing\": \"kostenbespar\",\n  \"kostenbesparingen\": \"kostenbespar\",\n  \"kostendalingen\": \"kostendal\",\n  \"kostende\": \"kostend\",\n  \"kostendekkend\": \"kostendek\",\n  \"kostendekkende\": \"kostendek\",\n  \"kosteneffectief\": \"kosteneffectief\",\n  \"kosteneffectieve\": \"kosteneffectiev\",\n  \"kosteneffectievere\": \"kosteneffectiever\",\n  \"kosteneffectiviteit\": \"kosteneffectiviteit\",\n  \"kosteneffectiviteitsgrenswaarden\": \"kosteneffectiviteitsgrenswaard\",\n  \"kostenefficiënte\": \"kostenefficient\",\n  \"kostenfactor\": \"kostenfactor\",\n  \"kostenloos\": \"kostenlos\",\n  \"kostenmodel\": \"kostenmodel\",\n  \"kostenneutraal\": \"kostenneutral\",\n  \"kostenplaatje\": \"kostenplaatj\",\n  \"kostenpost\": \"kostenpost\",\n  \"kostenreductie\": \"kostenreductie\",\n  \"kostenreducties\": \"kostenreducties\",\n  \"kostenstijging\": \"kostenstijg\",\n  \"kostentendenzen\": \"kostentendenz\",\n  \"kostenvergelijking\": \"kostenvergelijk\",\n  \"kostenverhoging\": \"kostenverhog\",\n  \"kostenverlaging\": \"kostenverlag\",\n  \"kostenvermindering\": \"kostenverminder\",\n  \"kostenvoordeel\": \"kostenvoordel\",\n  \"kostjes\": \"kostjes\",\n  \"kostprijs\": \"kostprijs\",\n  \"kostprijsberekening\": \"kostprijsbereken\",\n  \"kostprijsverhoging\": \"kostprijsverhog\",\n  \"kostprijsverlaging\": \"kostprijsverlag\",\n  \"kostroma\": \"kostroma\",\n  \"kostscholen\": \"kostschol\",\n  \"kostschool\": \"kostschol\",\n  \"kostschoolmeisje\": \"kostschoolmeisj\",\n  \"kostte\": \"kost\",\n  \"kostten\": \"kost\",\n  \"kostuum\": \"kostum\",\n  \"kotter\": \"kotter\",\n  \"kottervloot\": \"kottervlot\",\n  \"kotterzuiger\": \"kotterzuiger\",\n  \"kou\": \"kou\",\n  \"koud\": \"koud\",\n  \"koude\": \"koud\",\n  \"koudebehoefte\": \"koudebehoeft\",\n  \"koudebuffering\": \"koudebuffer\",\n  \"koudegolf\": \"koudegolf\",\n  \"koudegolfje\": \"koudegolfj\",\n  \"koudemachine\": \"koudemachin\",\n  \"koudenetten\": \"koudenet\",\n  \"koudeopslag\": \"koudeopslag\",\n  \"koudeproduktie\": \"koudeproduktie\",\n  \"koudetechniek\": \"koudetechniek\",\n  \"koudheid\": \"koudheid\",\n  \"kouds\": \"koud\",\n  \"koudsten\": \"koudst\",\n  \"koufront\": \"koufront\",\n  \"kous\": \"kous\",\n  \"kousen\": \"kous\",\n  \"kouwe\": \"kouw\",\n  \"kovohute\": \"kovohut\",\n  \"kozen\": \"koz\",\n  \"kozend\": \"kozend\",\n  \"kozijn\": \"kozijn\",\n  \"kozijnen\": \"kozijn\",\n  \"kozlodoej\": \"kozlodoej\",\n  \"kozloduy\": \"kozloduy\",\n  \"kpa\": \"kpa\",\n  \"kpi\": \"kpi\",\n  \"kpmg\": \"kpmg\",\n  \"kraag\": \"krag\",\n  \"kraaide\": \"kraaid\",\n  \"kraaiden\": \"kraaid\",\n  \"kraaien\": \"kraai\",\n  \"kraaiende\": \"kraaiend\",\n  \"kraak\": \"krak\",\n  \"kraakt\": \"kraakt\",\n  \"kraakte\": \"kraakt\",\n  \"kraakten\": \"kraakt\",\n  \"kraal\": \"kral\",\n  \"kraan\": \"kran\",\n  \"kraanwater\": \"kraanwater\",\n  \"krab\": \"krab\",\n  \"krabbelde\": \"krabbeld\",\n  \"krabben\": \"krabb\",\n  \"kracht\": \"kracht\",\n  \"krachtcentrale\": \"krachtcentral\",\n  \"krachtcentrales\": \"krachtcentrales\",\n  \"krachtdadig\": \"krachtdad\",\n  \"krachten\": \"kracht\",\n  \"krachtens\": \"krachten\",\n  \"krachtenveld\": \"krachtenveld\",\n  \"krachtig\": \"krachtig\",\n  \"krachtige\": \"krachtig\",\n  \"krachtiger\": \"krachtiger\",\n  \"krachtigheid\": \"krachtig\",\n  \"krachtigs\": \"krachtig\",\n  \"krachtinstallatie\": \"krachtinstallatie\",\n  \"krachtinstallaties\": \"krachtinstallaties\",\n  \"krachtjes\": \"krachtjes\",\n  \"krachtkoppeling\": \"krachtkoppel\",\n  \"krachtvoer\": \"krachtvoer\",\n  \"krachtwerktuigen\": \"krachtwerktu\",\n  \"kragen\": \"krag\",\n  \"kragten\": \"kragt\",\n  \"kraken\": \"krak\",\n  \"krakende\": \"krakend\",\n  \"krakingen\": \"kraking\",\n  \"kralen\": \"kral\",\n  \"kralenblik\": \"kralenblik\",\n  \"kramer\": \"kramer\",\n  \"kramp\": \"kramp\",\n  \"krampachtig\": \"krampacht\",\n  \"krampende\": \"krampend\",\n  \"krampte\": \"krampt\",\n  \"krampten\": \"krampt\",\n  \"krampvingers\": \"krampvinger\",\n  \"kran\": \"kran\",\n  \"kranen\": \"kran\",\n  \"kranji\": \"kranji\",\n  \"krank\": \"krank\",\n  \"krankzinnig\": \"krankzinn\",\n  \"krankzinnige\": \"krankzinn\",\n  \"krankzinniger\": \"krankzinniger\",\n  \"krankzinnigheid\": \"krankzinn\",\n  \"krans\": \"kran\",\n  \"krant\": \"krant\",\n  \"kranten\": \"krant\",\n  \"krantepapier\": \"krantepapier\",\n  \"krap\": \"krap\",\n  \"krapte\": \"krapt\",\n  \"kras\": \"kras\",\n  \"krasnapolsky\": \"krasnapolsky\",\n  \"krasse\": \"kras\",\n  \"kraste\": \"krast\",\n  \"krat\": \"krat\",\n  \"kratsten\": \"kratst\",\n  \"krc\": \"krc\",\n  \"krediet\": \"krediet\",\n  \"kredietbank\": \"kredietbank\",\n  \"kredieten\": \"krediet\",\n  \"kredietfaciliteiten\": \"kredietfaciliteit\",\n  \"kredietgarantie\": \"kredietgarantie\",\n  \"kredietregeling\": \"kredietregel\",\n  \"kredietverzekeringsmaatschappij\": \"kredietverzekeringsmaatschappij\",\n  \"kredietwezen\": \"kredietwez\",\n  \"kreditanstalt\": \"kreditanstalt\",\n  \"kreeg\": \"kreg\",\n  \"kreek\": \"krek\",\n  \"kreekeraksluizen\": \"kreekeraksluiz\",\n  \"kreet\": \"kret\",\n  \"krefeld\": \"krefeld\",\n  \"kregen\": \"kreg\",\n  \"kreike\": \"kreik\",\n  \"kreken\": \"krek\",\n  \"krenken\": \"krenk\",\n  \"kreolen\": \"kreol\",\n  \"kreten\": \"kret\",\n  \"kreukeling\": \"kreukel\",\n  \"kreuken\": \"kreuk\",\n  \"kreukt\": \"kreukt\",\n  \"kreukte\": \"kreukt\",\n  \"kreun\": \"kreun\",\n  \"kreunde\": \"kreund\",\n  \"kreunende\": \"kreunend\",\n  \"kreunt\": \"kreunt\",\n  \"kribbig\": \"kribbig\",\n  \"kribvak\": \"kribvak\",\n  \"kriebelde\": \"kriebeld\",\n  \"kriebelden\": \"kriebeld\",\n  \"kriebelende\": \"kriebel\",\n  \"kriebelig\": \"kriebel\",\n  \"krieg\": \"krieg\",\n  \"krieken\": \"kriek\",\n  \"krijg\": \"krijg\",\n  \"krijgen\": \"krijg\",\n  \"krijgsverhaal\": \"krijgsverhal\",\n  \"krijgt\": \"krijgt\",\n  \"krijste\": \"krijst\",\n  \"krijsten\": \"krijst\",\n  \"krijt\": \"krijt\",\n  \"krijtjes\": \"krijtjes\",\n  \"krijtwit\": \"krijtwit\",\n  \"krijtzee\": \"krijtzee\",\n  \"krikken\": \"krik\",\n  \"krimp\": \"krimp\",\n  \"krimpen\": \"krimp\",\n  \"krimpende\": \"krimpend\",\n  \"krimpenerwaard\": \"krimpenerwaard\",\n  \"krimpfolies\": \"krimpfolies\",\n  \"krimphoezen\": \"krimphoez\",\n  \"krimpmarkt\": \"krimpmarkt\",\n  \"krimpt\": \"krimpt\",\n  \"kring\": \"kring\",\n  \"kringen\": \"kring\",\n  \"kringetje\": \"kringetj\",\n  \"kringloop\": \"kringlop\",\n  \"kringloopbedrijf\": \"kringloopbedrijf\",\n  \"kringloopbedrijven\": \"kringloopbedrijv\",\n  \"kringloopbranche\": \"kringloopbranch\",\n  \"kringloopcentra\": \"kringloopcentra\",\n  \"kringlooppapier\": \"kringlooppapier\",\n  \"kringloopsector\": \"kringloopsector\",\n  \"kringloopsysteem\": \"kringloopsystem\",\n  \"kringloopwet\": \"kringloopwet\",\n  \"kringloopwinkels\": \"kringloopwinkel\",\n  \"kringlopen\": \"kringlop\",\n  \"krinkelende\": \"krinkel\",\n  \"krioelden\": \"krioeld\",\n  \"krioelt\": \"krioelt\",\n  \"kris\": \"kris\",\n  \"krissen\": \"kriss\",\n  \"kristal\": \"kristal\",\n  \"kristalblauw\": \"kristalblauw\",\n  \"kristalheldere\": \"kristalhelder\",\n  \"kristalkoepels\": \"kristalkoepel\",\n  \"kristallen\": \"kristall\",\n  \"kristallige\": \"kristall\",\n  \"kristallijn\": \"kristallijn\",\n  \"kristallijne\": \"kristallijn\",\n  \"kristallijnen\": \"kristallijn\",\n  \"kristallisatie\": \"kristallisatie\",\n  \"kristalliseren\": \"kristalliser\",\n  \"kristinsson\": \"kristinsson\",\n  \"kritiek\": \"kritiek\",\n  \"kritieke\": \"kritiek\",\n  \"kritiekpunt\": \"kritiekpunt\",\n  \"kritiekpunten\": \"kritiekpunt\",\n  \"kritiker\": \"kritiker\",\n  \"kritisch\": \"kritisch\",\n  \"kritische\": \"kritisch\",\n  \"kritischer\": \"kritischer\",\n  \"kritiseerde\": \"kritiseerd\",\n  \"kritiseert\": \"kritiseert\",\n  \"kritizeerde\": \"kritizeerd\",\n  \"kritizeerden\": \"kritizeerd\",\n  \"kritizeert\": \"kritizeert\",\n  \"kritizeren\": \"kritizer\",\n  \"krkk\": \"krkk\",\n  \"krl\": \"krl\",\n  \"kroepoek\": \"kroepoek\",\n  \"kroes\": \"kroes\",\n  \"kroesbruin\": \"kroesbruin\",\n  \"kroesde\": \"kroesd\",\n  \"kroese\": \"kroes\",\n  \"kroeshaar\": \"kroeshar\",\n  \"kroesige\": \"kroesig\",\n  \"kroessnor\": \"kroessnor\",\n  \"kroezehaar\": \"kroezehar\",\n  \"kroezekop\": \"kroezekop\",\n  \"kroezend\": \"kroezend\",\n  \"kroezig\": \"kroezig\",\n  \"krom\": \"krom\",\n  \"kromhoutkazerne\": \"kromhoutkazern\",\n  \"kromhoutpark\": \"kromhoutpark\",\n  \"kromme\": \"kromm\",\n  \"krommende\": \"krommend\",\n  \"krommenie\": \"krommenie\",\n  \"kromp\": \"kromp\",\n  \"krompen\": \"kromp\",\n  \"krone\": \"kron\",\n  \"kronen\": \"kron\",\n  \"kroniek\": \"kroniek\",\n  \"kronkelde\": \"kronkeld\",\n  \"kronkelden\": \"kronkeld\",\n  \"kronkelen\": \"kronkel\",\n  \"kronkelende\": \"kronkel\",\n  \"kronkeling\": \"kronkel\",\n  \"kronkelingen\": \"kronkel\",\n  \"kronkellijf\": \"kronkellijf\",\n  \"kronkellijnen\": \"kronkellijn\",\n  \"kronkellijntjes\": \"kronkellijntjes\",\n  \"kroon\": \"kron\",\n  \"kroonlid\": \"kroonlid\",\n  \"kroonprins\": \"kroonprin\",\n  \"kroontje\": \"kroontj\",\n  \"kroop\": \"krop\",\n  \"kroos\": \"kros\",\n  \"kropen\": \"krop\",\n  \"kropte\": \"kropt\",\n  \"krrs\": \"krrs\",\n  \"krs\": \"krs\",\n  \"kruiden\": \"kruid\",\n  \"kruidenier\": \"kruidenier\",\n  \"kruimeldief\": \"kruimeldief\",\n  \"kruiningen\": \"kruining\",\n  \"kruip\": \"kruip\",\n  \"kruipen\": \"kruip\",\n  \"kruipende\": \"kruipend\",\n  \"kruipruimte\": \"kruipruimt\",\n  \"kruisen\": \"kruis\",\n  \"kruisgewijze\": \"kruisgewijz\",\n  \"kruishoogte\": \"kruishoogt\",\n  \"kruising\": \"kruising\",\n  \"kruisorganisaties\": \"kruisorganisaties\",\n  \"kruisorganisties\": \"kruisorganisties\",\n  \"kruispunt\": \"kruispunt\",\n  \"kruispunten\": \"kruispunt\",\n  \"kruisraketten\": \"kruisraket\",\n  \"kruist\": \"kruist\",\n  \"kruiste\": \"kruist\",\n  \"kruisten\": \"kruist\",\n  \"kruisvuur\": \"kruisvur\",\n  \"kruk\": \"kruk\",\n  \"krul\": \"krul\",\n  \"krulde\": \"kruld\",\n  \"krulkop\": \"krulkop\",\n  \"krulkoppen\": \"krulkopp\",\n  \"krullen\": \"krull\",\n  \"krullende\": \"krullend\",\n  \"krulletjes\": \"krulletjes\",\n  \"krullip\": \"krullip\",\n  \"krult\": \"krult\",\n  \"kt\": \"kt\",\n  \"kti\": \"kti\",\n  \"kton\": \"kton\",\n  \"kuala\": \"kuala\",\n  \"kubieke\": \"kubiek\",\n  \"kuchte\": \"kucht\",\n  \"kudde\": \"kud\",\n  \"kudden\": \"kud\",\n  \"kuddes\": \"kuddes\",\n  \"kuif\": \"kuif\",\n  \"kuifeend\": \"kuifeend\",\n  \"kuiken\": \"kuik\",\n  \"kuikenmesterij\": \"kuikenmesterij\",\n  \"kuikens\": \"kuiken\",\n  \"kuil\": \"kuil\",\n  \"kuiltjes\": \"kuiltjes\",\n  \"kuip\": \"kuip\",\n  \"kuipje\": \"kuipj\",\n  \"kuis\": \"kuis\",\n  \"kuise\": \"kuis\",\n  \"kuisheid\": \"kuisheid\",\n  \"kuit\": \"kuit\",\n  \"kuiten\": \"kuit\",\n  \"kunde\": \"kund\",\n  \"kundige\": \"kundig\",\n  \"kundigen\": \"kundig\",\n  \"kunnen\": \"kunn\",\n  \"kùnnen\": \"kùnnen\",\n  \"kunnende\": \"kunnend\",\n  \"kunst\": \"kunst\",\n  \"kunstbanden\": \"kunstband\",\n  \"kunstenaar\": \"kunstenar\",\n  \"kunstigjes\": \"kunstigjes\",\n  \"kunstmatig\": \"kunstmat\",\n  \"kunstmatige\": \"kunstmat\",\n  \"kunstmest\": \"kunstmest\",\n  \"kunstmestfabriek\": \"kunstmestfabriek\",\n  \"kunstmestfabrieken\": \"kunstmestfabriek\",\n  \"kunstmestfabrikant\": \"kunstmestfabrikant\",\n  \"kunstmestfabrikanten\": \"kunstmestfabrikant\",\n  \"kunstmestgebruik\": \"kunstmestgebruik\",\n  \"kunstmestindustrie\": \"kunstmestindustrie\",\n  \"kunstmestproducenten\": \"kunstmestproducent\",\n  \"kunstmeststoffen\": \"kunstmeststoff\",\n  \"kunstmestvraag\": \"kunstmestvrag\",\n  \"kunstmin\": \"kunstmin\",\n  \"kunstofafval\": \"kunstofafval\",\n  \"kunstriffen\": \"kunstriff\",\n  \"kunststof\": \"kunststof\",\n  \"kunststofafval\": \"kunststofafval\",\n  \"kunststofbeurs\": \"kunststofbeur\",\n  \"kunststofcontainer\": \"kunststofcontainer\",\n  \"kunststoff\": \"kunststoff\",\n  \"kunststoffabriek\": \"kunststoffabriek\",\n  \"kunststoffabrikant\": \"kunststoffabrikant\",\n  \"kunststoffen\": \"kunststoff\",\n  \"kunststoffenbeurs\": \"kunststoffenbeur\",\n  \"kunststoffenbranche\": \"kunststoffenbranch\",\n  \"kunststoffenindustrie\": \"kunststoffenindustrie\",\n  \"kunststoffenstudie\": \"kunststoffenstudie\",\n  \"kunststofflessen\": \"kunststoffless\",\n  \"kunststoffolie\": \"kunststoffolie\",\n  \"kunststoffoliën\": \"kunststoffolien\",\n  \"kunststoffracties\": \"kunststoffracties\",\n  \"kunststoffrecycling\": \"kunststoffrecycl\",\n  \"kunststofgebruik\": \"kunststofgebruik\",\n  \"kunststofindustrie\": \"kunststofindustrie\",\n  \"kunststoflassen\": \"kunststoflass\",\n  \"kunststofleidingsystemen\": \"kunststofleidingsystem\",\n  \"kunststofmarkt\": \"kunststofmarkt\",\n  \"kunststofprodukt\": \"kunststofprodukt\",\n  \"kunststofprodukten\": \"kunststofprodukt\",\n  \"kunststofrecycling\": \"kunststofrecycl\",\n  \"kunststofrecyclingindustrie\": \"kunststofrecyclingindustrie\",\n  \"kunststofrecyclingstromen\": \"kunststofrecyclingstrom\",\n  \"kunststofspriraal\": \"kunststofspriral\",\n  \"kunststofverpakkingen\": \"kunststofverpak\",\n  \"kunststofverwerkende\": \"kunststofverwerk\",\n  \"kunstvezels\": \"kunstvezel\",\n  \"kunstvoorwerp\": \"kunstvoorwerp\",\n  \"kunstwerk\": \"kunstwerk\",\n  \"kunstwerken\": \"kunstwerk\",\n  \"kunt\": \"kunt\",\n  \"kùnt\": \"kùnt\",\n  \"kur\": \"kur\",\n  \"kurk\": \"kurk\",\n  \"kurkeik\": \"kurkeik\",\n  \"kurkeiken\": \"kurkeik\",\n  \"kurken\": \"kurk\",\n  \"kurketrekkers\": \"kurketrekker\",\n  \"kurkschoenvulling\": \"kurkschoenvull\",\n  \"kurkvoetbed\": \"kurkvoetbed\",\n  \"kus\": \"kus\",\n  \"kussen\": \"kuss\",\n  \"kussens\": \"kussen\",\n  \"kussenvulsel\": \"kussenvulsel\",\n  \"kust\": \"kust\",\n  \"kustbeheer\": \"kustbeher\",\n  \"kustbreedte\": \"kustbreedt\",\n  \"kuste\": \"kust\",\n  \"kusten\": \"kust\",\n  \"kustgebied\": \"kustgebied\",\n  \"kustgebieden\": \"kustgebied\",\n  \"kustlijn\": \"kustlijn\",\n  \"kustlocatie\": \"kustlocatie\",\n  \"kustlocaties\": \"kustlocaties\",\n  \"kustlokatie\": \"kustlokatie\",\n  \"kustlokaties\": \"kustlokaties\",\n  \"kustmorfodynamica\": \"kustmorfodynamica\",\n  \"kustnota\": \"kustnota\",\n  \"kustomgeving\": \"kustomgev\",\n  \"kustonderhoud\": \"kustonderhoud\",\n  \"kustonderzoek\": \"kustonderzoek\",\n  \"kustontwikkeling\": \"kustontwikkel\",\n  \"kustregio\": \"kustregio\",\n  \"kustsuppleties\": \"kustsuppleties\",\n  \"kustsysteem\": \"kustsystem\",\n  \"kusttraject\": \"kusttraject\",\n  \"kustuitbreiding\": \"kustuitbreid\",\n  \"kustverdediging\": \"kustverded\",\n  \"kustwacht\": \"kustwacht\",\n  \"kustwater\": \"kustwater\",\n  \"kustwateren\": \"kustwater\",\n  \"kustwijzigingen\": \"kustwijz\",\n  \"kustzone\": \"kustzon\",\n  \"kustzones\": \"kustzones\",\n  \"kutno\": \"kutno\",\n  \"kuub\": \"kub\",\n  \"kuur\": \"kur\",\n  \"kuurtjes\": \"kuurtjes\",\n  \"kuwayt\": \"kuwayt\",\n  \"kv\": \"kv\",\n  \"kvaerner\": \"kvaerner\",\n  \"kvem\": \"kvem\",\n  \"kw\": \"kw\",\n  \"kwaad\": \"kwad\",\n  \"kwaadaardig\": \"kwaadaard\",\n  \"kwaadheid\": \"kwaadheid\",\n  \"kwaadnijdige\": \"kwaadnijd\",\n  \"kwaads\": \"kwad\",\n  \"kwaadspreekt\": \"kwaadspreekt\",\n  \"kwaadspreken\": \"kwaadsprek\",\n  \"kwaadwillend\": \"kwaadwill\",\n  \"kwaal\": \"kwal\",\n  \"kwade\": \"kwad\",\n  \"kwader\": \"kwader\",\n  \"kwajongen\": \"kwajong\",\n  \"kwakel\": \"kwakel\",\n  \"kwakte\": \"kwakt\",\n  \"kwalen\": \"kwal\",\n  \"kwalificatie\": \"kwalificatie\",\n  \"kwalificeren\": \"kwalificer\",\n  \"kwalijk\": \"kwalijk\",\n  \"kwalijke\": \"kwalijk\",\n  \"kwalitatief\": \"kwalitatief\",\n  \"kwaliteit\": \"kwaliteit\",\n  \"kwaliteiten\": \"kwaliteit\",\n  \"kwaliteits\": \"kwaliteit\",\n  \"kwaliteitsaanduiding\": \"kwaliteitsaanduid\",\n  \"kwaliteitsbeheersing\": \"kwaliteitsbeheers\",\n  \"kwaliteitsbesef\": \"kwaliteitsbesef\",\n  \"kwaliteitsbevordering\": \"kwaliteitsbevorder\",\n  \"kwaliteitsbewaking\": \"kwaliteitsbewak\",\n  \"kwaliteitsborging\": \"kwaliteitsborg\",\n  \"kwaliteitsborgingssysteem\": \"kwaliteitsborgingssystem\",\n  \"kwaliteitscertificaat\": \"kwaliteitscertificat\",\n  \"kwaliteitscertificaten\": \"kwaliteitscertificat\",\n  \"kwaliteitscertificering\": \"kwaliteitscertificer\",\n  \"kwaliteitscontrole\": \"kwaliteitscontrol\",\n  \"kwaliteitscoördinator\": \"kwaliteitscoordinator\",\n  \"kwaliteitscriteria\": \"kwaliteitscriteria\",\n  \"kwaliteitsdoelstellingen\": \"kwaliteitsdoelstell\",\n  \"kwaliteitseisen\": \"kwaliteitseis\",\n  \"kwaliteitshandboek\": \"kwaliteitshandboek\",\n  \"kwaliteitsinformatielabel\": \"kwaliteitsinformatielabel\",\n  \"kwaliteitskeurmerk\": \"kwaliteitskeurmerk\",\n  \"kwaliteitsniveau\": \"kwaliteitsniveau\",\n  \"kwaliteitsnorm\": \"kwaliteitsnorm\",\n  \"kwaliteitsnormen\": \"kwaliteitsnorm\",\n  \"kwaliteitsplan\": \"kwaliteitsplan\",\n  \"kwaliteitsprijs\": \"kwaliteitsprijs\",\n  \"kwaliteitsprodukt\": \"kwaliteitsprodukt\",\n  \"kwaliteitsprogramma\": \"kwaliteitsprogramma\",\n  \"kwaliteitsstandaard\": \"kwaliteitsstandaard\",\n  \"kwaliteitsstatus\": \"kwaliteitsstatus\",\n  \"kwaliteitssysteem\": \"kwaliteitssystem\",\n  \"kwaliteitsverbetering\": \"kwaliteitsverbeter\",\n  \"kwaliteitsverhouding\": \"kwaliteitsverhoud\",\n  \"kwaliteitsverklaring\": \"kwaliteitsverklar\",\n  \"kwaliteitsverklaringen\": \"kwaliteitsverklar\",\n  \"kwaliteitsverlies\": \"kwaliteitsverlies\",\n  \"kwaliteitswijn\": \"kwaliteitswijn\",\n  \"kwaliteitszorg\": \"kwaliteitszorg\",\n  \"kwaliteitszorgsysteem\": \"kwaliteitszorgsystem\",\n  \"kwaliteitszorgsystemen\": \"kwaliteitszorgsystem\",\n  \"kwalititeitsmetingen\": \"kwalititeitsmet\",\n  \"kwam\": \"kwam\",\n  \"kwamen\": \"kwam\",\n  \"kwantificering\": \"kwantificer\",\n  \"kwantitatief\": \"kwantitatief\",\n  \"kwantitatieve\": \"kwantitatiev\",\n  \"kwantiteitsbeheer\": \"kwantiteitsbeher\",\n  \"kwart\": \"kwart\",\n  \"kwartaal\": \"kwartal\",\n  \"kwartaalblad\": \"kwartaalblad\",\n  \"kwartaalcijfers\": \"kwartaalcijfer\",\n  \"kwartaaltijdschrift\": \"kwartaaltijdschrift\",\n  \"kwartalen\": \"kwartal\",\n  \"kwartcirkel\": \"kwartcirkel\",\n  \"kwartier\": \"kwartier\",\n  \"kwartieren\": \"kwartier\",\n  \"kwartjes\": \"kwartjes\",\n  \"kwarts\": \"kwart\",\n  \"kwdb\": \"kwdb\",\n  \"kwe\": \"kwe\",\n  \"kwee\": \"kwee\",\n  \"kweek\": \"kwek\",\n  \"kweekreactor\": \"kweekreactor\",\n  \"kweekreactoren\": \"kweekreactor\",\n  \"kweekreactortechnologie\": \"kweekreactortechnologie\",\n  \"kweekte\": \"kweekt\",\n  \"kweekvijvers\": \"kweekvijver\",\n  \"kweken\": \"kwek\",\n  \"kweker\": \"kweker\",\n  \"kwekerij\": \"kwekerij\",\n  \"kwekers\": \"kweker\",\n  \"kwellen\": \"kwell\",\n  \"kwelwater\": \"kwelwater\",\n  \"kwestie\": \"kwestie\",\n  \"kwesties\": \"kwesties\",\n  \"kwetsbaar\": \"kwetsbar\",\n  \"kwetsbaarder\": \"kwetsbaarder\",\n  \"kwetsbaarheid\": \"kwetsbar\",\n  \"kwetsbaarste\": \"kwetsbaarst\",\n  \"kwetsbare\": \"kwetsbar\",\n  \"kwetsen\": \"kwets\",\n  \"kwetste\": \"kwetst\",\n  \"kwf\": \"kwf\",\n  \"kwh\": \"kwh\",\n  \"kwijnde\": \"kwijnd\",\n  \"kwijnden\": \"kwijnd\",\n  \"kwijnen\": \"kwijn\",\n  \"kwijnend\": \"kwijnend\",\n  \"kwijnensgebaar\": \"kwijnensge\",\n  \"kwijning\": \"kwijning\",\n  \"kwijnt\": \"kwijnt\",\n  \"kwijt\": \"kwijt\",\n  \"kwijtgescholden\": \"kwijtgeschold\",\n  \"kwijtraken\": \"kwijtrak\",\n  \"kwijtschelding\": \"kwijtscheld\",\n  \"kwik\": \"kwik\",\n  \"kwikafval\": \"kwikafval\",\n  \"kwikhoudend\": \"kwikhoud\",\n  \"kwikhoudende\": \"kwikhoud\",\n  \"kwiklampen\": \"kwiklamp\",\n  \"kwikschandaal\": \"kwikschandal\",\n  \"kwikvergiftiging\": \"kwikvergift\",\n  \"kwikvrij\": \"kwikvrij\",\n  \"kwispelde\": \"kwispeld\",\n  \"kwispelen\": \"kwispel\",\n  \"kwispelende\": \"kwispel\",\n  \"kwispeling\": \"kwispel\",\n  \"kwitantie\": \"kwitantie\",\n  \"kwp\": \"kwp\",\n  \"kws\": \"kws\",\n  \"kwth\": \"kwth\",\n  \"kwu\": \"kwu\",\n  \"kyushu\": \"kyushu\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"laa\": \"laa\",\n  \"laad\": \"lad\",\n  \"laadbox\": \"laadbox\",\n  \"laadsysteem\": \"laadsystem\",\n  \"laag\": \"lag\",\n  \"laagbouw\": \"laagbouw\",\n  \"laagcalorisch\": \"laagcalorisch\",\n  \"laagcalorische\": \"laagcalorisch\",\n  \"laagdrempeligheid\": \"laagdrempel\",\n  \"laagfrequent\": \"laagfrequent\",\n  \"laagfrequente\": \"laagfrequent\",\n  \"laaggelegen\": \"laaggeleg\",\n  \"laaggeschoolde\": \"laaggeschoold\",\n  \"laaggewaardeerde\": \"laaggewaardeerd\",\n  \"laagheden\": \"laagheid\",\n  \"laagheid\": \"laagheid\",\n  \"laagje\": \"laagj\",\n  \"laagland\": \"laagland\",\n  \"laagpakket\": \"laagpakket\",\n  \"laagst\": \"laagst\",\n  \"laagstbetaalden\": \"laagstbetaald\",\n  \"laagste\": \"laagst\",\n  \"laagte\": \"laagt\",\n  \"laagtoerig\": \"laagtoer\",\n  \"laagwaardige\": \"laagwaard\",\n  \"laaide\": \"laaid\",\n  \"laaiende\": \"laaiend\",\n  \"laaiing\": \"laaiing\",\n  \"laak\": \"lak\",\n  \"laakbaar\": \"laakbar\",\n  \"laakt\": \"laakt\",\n  \"laan\": \"lan\",\n  \"laar\": \"lar\",\n  \"laarzen\": \"laarz\",\n  \"laarzenfabrikant\": \"laarzenfabrikant\",\n  \"laat\": \"lat\",\n  \"laatdunkende\": \"laatdunk\",\n  \"laatjes\": \"laatjes\",\n  \"laatst\": \"laatst\",\n  \"laatste\": \"laatst\",\n  \"laatsten\": \"laatst\",\n  \"laatstgenoemde\": \"laatstgenoemd\",\n  \"labbekakkerig\": \"labbekakker\",\n  \"label\": \"label\",\n  \"labeling\": \"label\",\n  \"labelrichtlijnen\": \"labelrichtlijn\",\n  \"labelstallen\": \"labelstall\",\n  \"labelstatus\": \"labelstatus\",\n  \"labelsysteem\": \"labelsystem\",\n  \"labelsystemen\": \"labelsystem\",\n  \"labeltechniek\": \"labeltechniek\",\n  \"laboratoria\": \"laboratoria\",\n  \"laboratories\": \"laboratories\",\n  \"laboratorium\": \"laboratorium\",\n  \"laboratoriumfaciliteiten\": \"laboratoriumfaciliteit\",\n  \"laboratoriumkosten\": \"laboratoriumkost\",\n  \"laboratoriumkweek\": \"laboratoriumkwek\",\n  \"laboratoriumonderzoek\": \"laboratoriumonderzoek\",\n  \"laboratoriumproeven\": \"laboratoriumproev\",\n  \"laboratoriumschaal\": \"laboratoriumschal\",\n  \"laboratoriumtests\": \"laboratoriumtest\",\n  \"laboratory\": \"laboratory\",\n  \"labour\": \"labour\",\n  \"labourlid\": \"labourlid\",\n  \"labourpartij\": \"labourpartij\",\n  \"laboyrie\": \"laboyrie\",\n  \"labs\": \"lab\",\n  \"labyrinth\": \"labyrinth\",\n  \"lach\": \"lach\",\n  \"lachblik\": \"lachblik\",\n  \"lachcongestie\": \"lachcongestie\",\n  \"lachebekje\": \"lachebekj\",\n  \"lachen\": \"lach\",\n  \"lachend\": \"lachend\",\n  \"lachende\": \"lachend\",\n  \"lachgas\": \"lachgas\",\n  \"lachgeluid\": \"lachgeluid\",\n  \"laching\": \"laching\",\n  \"lachje\": \"lachj\",\n  \"lachlichte\": \"lachlicht\",\n  \"lachlippen\": \"lachlipp\",\n  \"lachspieren\": \"lachspier\",\n  \"lacht\": \"lacht\",\n  \"lachte\": \"lacht\",\n  \"lachten\": \"lacht\",\n  \"laconiek\": \"laconiek\",\n  \"laconieke\": \"laconiek\",\n  \"laconisch\": \"laconisch\",\n  \"lactoferrine\": \"lactoferrin\",\n  \"lacunes\": \"lacunes\",\n  \"ladder\": \"ladder\",\n  \"ladders\": \"ladder\",\n  \"laden\": \"lad\",\n  \"lading\": \"lading\",\n  \"ladingen\": \"lading\",\n  \"ladingsdetector\": \"ladingsdetector\",\n  \"laer\": \"laer\",\n  \"laffe\": \"laff\",\n  \"lag\": \"lag\",\n  \"lage\": \"lag\",\n  \"lagedruk\": \"lagedruk\",\n  \"lagemaat\": \"lagemat\",\n  \"lagen\": \"lag\",\n  \"lager\": \"lager\",\n  \"lagere\": \"lager\",\n  \"lagergeschoolden\": \"lagergeschoold\",\n  \"lagers\": \"lager\",\n  \"lagerwey\": \"lagerwey\",\n  \"lagune\": \"lagun\",\n  \"laidlaw\": \"laidlaw\",\n  \"lak\": \"lak\",\n  \"laka\": \"laka\",\n  \"lake\": \"lak\",\n  \"laken\": \"lak\",\n  \"lakens\": \"laken\",\n  \"lakken\": \"lak\",\n  \"lakschurft\": \"lakschurft\",\n  \"laksoorten\": \"laksoort\",\n  \"lalde\": \"lald\",\n  \"lam\": \"lam\",\n  \"lambert\": \"lambert\",\n  \"lambson\": \"lambson\",\n  \"lamellen\": \"lamell\",\n  \"lamers\": \"lamer\",\n  \"lamgeslagen\": \"lamgeslag\",\n  \"laminaatparket\": \"laminaatparket\",\n  \"laminaten\": \"laminat\",\n  \"lamineertechniek\": \"lamineertechniek\",\n  \"lamme\": \"lamm\",\n  \"lammeling\": \"lammel\",\n  \"lammelingen\": \"lammel\",\n  \"lammerts\": \"lammert\",\n  \"lamp\": \"lamp\",\n  \"lampen\": \"lamp\",\n  \"lampenschamplichten\": \"lampenschamplicht\",\n  \"lampeschijnsel\": \"lampeschijnsel\",\n  \"lancaster\": \"lancaster\",\n  \"lance\": \"lanc\",\n  \"lanceerde\": \"lanceerd\",\n  \"lanceert\": \"lanceert\",\n  \"lanceren\": \"lancer\",\n  \"land\": \"land\",\n  \"landaanwinning\": \"landaanwinn\",\n  \"landaanwinningsproject\": \"landaanwinningsproject\",\n  \"landaanwinningsprojecten\": \"landaanwinningsproject\",\n  \"landauer\": \"landauer\",\n  \"landbezitters\": \"landbezitter\",\n  \"landbodems\": \"landbodem\",\n  \"landbouw\": \"landbouw\",\n  \"landbouwareaal\": \"landbouwareaal\",\n  \"landbouwbanken\": \"landbouwbank\",\n  \"landbouwbedrijf\": \"landbouwbedrijf\",\n  \"landbouwbedrijfsleven\": \"landbouwbedrijfslev\",\n  \"landbouwbedrijven\": \"landbouwbedrijv\",\n  \"landbouwbegrotingen\": \"landbouwbegrot\",\n  \"landbouwbelangen\": \"landbouwbelang\",\n  \"landbouwbeleid\": \"landbouwbeleid\",\n  \"landbouwbestrijdingsmiddel\": \"landbouwbestrijdingsmiddel\",\n  \"landbouwbestrijdingsmiddelen\": \"landbouwbestrijdingsmiddel\",\n  \"landbouwbudget\": \"landbouwbudget\",\n  \"landbouwcommissie\": \"landbouwcommissie\",\n  \"landbouwcoöperatie\": \"landbouwcooperatie\",\n  \"landbouwdebat\": \"landbouwdebat\",\n  \"landbouwdepartement\": \"landbouwdepartement\",\n  \"landbouwenclaves\": \"landbouwenclaves\",\n  \"landbouwers\": \"landbouwer\",\n  \"landbouwfaculteit\": \"landbouwfaculteit\",\n  \"landbouwfolie\": \"landbouwfolie\",\n  \"landbouwfolies\": \"landbouwfolies\",\n  \"landbouwgebieden\": \"landbouwgebied\",\n  \"landbouwgedeputeerde\": \"landbouwgedeputeerd\",\n  \"landbouwgewassen\": \"landbouwgewass\",\n  \"landbouwgif\": \"landbouwgif\",\n  \"landbouwgiften\": \"landbouwgift\",\n  \"landbouwgrond\": \"landbouwgrond\",\n  \"landbouwgronden\": \"landbouwgrond\",\n  \"landbouwgrondstoffen\": \"landbouwgrondstoff\",\n  \"landbouwkern\": \"landbouwkern\",\n  \"landbouwkundig\": \"landbouwkund\",\n  \"landbouwkundige\": \"landbouwkund\",\n  \"landbouwluchtvaartbedrijf\": \"landbouwluchtvaartbedrijf\",\n  \"landbouwluchtvaartbedrijven\": \"landbouwluchtvaartbedrijv\",\n  \"landbouwmaatschappij\": \"landbouwmaatschappij\",\n  \"landbouwmethoden\": \"landbouwmethod\",\n  \"landbouwminister\": \"landbouwminister\",\n  \"landbouwministerie\": \"landbouwministerie\",\n  \"landbouwministers\": \"landbouwminister\",\n  \"landbouwontwikkelingsmogelijkheden\": \"landbouwontwikkelingsmog\",\n  \"landbouworganisatie\": \"landbouworganisatie\",\n  \"landbouworganisaties\": \"landbouworganisaties\",\n  \"landbouwpercelen\": \"landbouwpercel\",\n  \"landbouwplastic\": \"landbouwplastic\",\n  \"landbouwpolitiek\": \"landbouwpolitiek\",\n  \"landbouwpremies\": \"landbouwpremies\",\n  \"landbouwprodukten\": \"landbouwprodukt\",\n  \"landbouwproduktie\": \"landbouwproduktie\",\n  \"landbouwprojecten\": \"landbouwproject\",\n  \"landbouwraad\": \"landbouwrad\",\n  \"landbouwschap\": \"landbouwschap\",\n  \"landbouwschool\": \"landbouwschol\",\n  \"landbouwsector\": \"landbouwsector\",\n  \"landbouwsocioloog\": \"landbouwsociolog\",\n  \"landbouwstaten\": \"landbouwstat\",\n  \"landbouwstructuur\": \"landbouwstructur\",\n  \"landbouwsubsidies\": \"landbouwsubsidies\",\n  \"landbouwtermijnmarkt\": \"landbouwtermijnmarkt\",\n  \"landbouwuniversiteit\": \"landbouwuniversiteit\",\n  \"landbouwvakbeurs\": \"landbouwvakbeur\",\n  \"landbouwvoorlichting\": \"landbouwvoorlicht\",\n  \"landbouwvoorlichtingsdienst\": \"landbouwvoorlichtingsdienst\",\n  \"landbouwvormen\": \"landbouwvorm\",\n  \"landbouwwoordvoerder\": \"landbouwwoordvoerder\",\n  \"lande\": \"land\",\n  \"landeigenaren\": \"landeigenar\",\n  \"landelijk\": \"landelijk\",\n  \"landelijke\": \"landelijk\",\n  \"landelijker\": \"landelijker\",\n  \"landen\": \"land\",\n  \"landerige\": \"lander\",\n  \"landesbank\": \"landesbank\",\n  \"landfarming\": \"landfarm\",\n  \"landfill\": \"landfill\",\n  \"landgebruik\": \"landgebruik\",\n  \"landgoed\": \"landgoed\",\n  \"landgoedeigenaren\": \"landgoedeigenar\",\n  \"landgoederen\": \"landgoeder\",\n  \"landgraaf\": \"landgraf\",\n  \"landijs\": \"landijs\",\n  \"landingen\": \"landing\",\n  \"landingsbaan\": \"landingsban\",\n  \"landingsbanen\": \"landingsban\",\n  \"landingsroutes\": \"landingsroutes\",\n  \"landinrichting\": \"landinricht\",\n  \"landinrichtingen\": \"landinricht\",\n  \"landinrichtingscommissie\": \"landinrichtingscommissie\",\n  \"landkartering\": \"landkarter\",\n  \"landkreis\": \"landkreis\",\n  \"landmacht\": \"landmacht\",\n  \"landontwikkelaars\": \"landontwikkelar\",\n  \"landouwen\": \"landouw\",\n  \"landpachters\": \"landpachter\",\n  \"landplanten\": \"landplant\",\n  \"landraad\": \"landrad\",\n  \"lands\": \"land\",\n  \"landschaftsoekologie\": \"landschaftsoekologie\",\n  \"landschap\": \"landschap\",\n  \"landschappelijk\": \"landschapp\",\n  \"landschappelijke\": \"landschapp\",\n  \"landschappen\": \"landschapp\",\n  \"landschaps\": \"landschap\",\n  \"landschapsarchitect\": \"landschapsarchitect\",\n  \"landschapsbeheer\": \"landschapsbeher\",\n  \"landschapsbehoud\": \"landschapsbehoud\",\n  \"landschapseffecten\": \"landschapseffect\",\n  \"landschapselementen\": \"landschapselement\",\n  \"landschapsontwikkeling\": \"landschapsontwikkel\",\n  \"landschapsontwikkelingsplan\": \"landschapsontwikkelingsplan\",\n  \"landschapsplan\": \"landschapsplan\",\n  \"landschapsschoon\": \"landschapsschon\",\n  \"landsgrens\": \"landsgren\",\n  \"landsgrenzen\": \"landsgrenz\",\n  \"landtec\": \"landtec\",\n  \"lane\": \"lan\",\n  \"lang\": \"lang\",\n  \"langdurig\": \"langdur\",\n  \"langdurige\": \"langdur\",\n  \"lange\": \"lang\",\n  \"langeberg\": \"langeberg\",\n  \"langedijk\": \"langedijk\",\n  \"langen\": \"lang\",\n  \"langenberg\": \"langenberg\",\n  \"langer\": \"langer\",\n  \"langerak\": \"langerak\",\n  \"langere\": \"langer\",\n  \"langeslag\": \"langeslag\",\n  \"langetermijndoelen\": \"langetermijndoel\",\n  \"langlopend\": \"langlop\",\n  \"langs\": \"lang\",\n  \"langste\": \"langst\",\n  \"langswaterdichte\": \"langswaterdicht\",\n  \"langwerpige\": \"langwerp\",\n  \"langzaam\": \"langzam\",\n  \"langzaamaan\": \"langzaaman\",\n  \"langzaamlopende\": \"langzaamlop\",\n  \"langzaamwerkende\": \"langzaamwerk\",\n  \"langzame\": \"langzam\",\n  \"langzamer\": \"langzamer\",\n  \"langzamerhand\": \"langzamerhand\",\n  \"lanka\": \"lanka\",\n  \"lansen\": \"lans\",\n  \"lansink\": \"lansink\",\n  \"lantaarn\": \"lantaarn\",\n  \"lantaarnpalen\": \"lantaarnpal\",\n  \"lantaarns\": \"lantaarn\",\n  \"lantaren\": \"lantar\",\n  \"lantarenoog\": \"lantarenog\",\n  \"lantarens\": \"lantaren\",\n  \"lanthaniden\": \"lanthanid\",\n  \"lantmännen\": \"lantmann\",\n  \"lap\": \"lap\",\n  \"lapinus\": \"lapinus\",\n  \"lapje\": \"lapj\",\n  \"lapjes\": \"lapjes\",\n  \"lapland\": \"lapland\",\n  \"lappen\": \"lapp\",\n  \"lappende\": \"lappend\",\n  \"lappendeken\": \"lappendek\",\n  \"lappenmand\": \"lappenmand\",\n  \"laren\": \"lar\",\n  \"lariks\": \"larik\",\n  \"larsen\": \"lars\",\n  \"larven\": \"larv\",\n  \"las\": \"las\",\n  \"laser\": \"laser\",\n  \"lasertechniek\": \"lasertechniek\",\n  \"lasertechnologie\": \"lasertechnologie\",\n  \"lasnaad\": \"lasnad\",\n  \"lasnaden\": \"lasnad\",\n  \"lasposities\": \"lasposities\",\n  \"lassen\": \"lass\",\n  \"last\": \"last\",\n  \"laste\": \"last\",\n  \"lastechniek\": \"lastechniek\",\n  \"lastechnieken\": \"lastechniek\",\n  \"lasten\": \"last\",\n  \"lastendruk\": \"lastendruk\",\n  \"lastenverhoging\": \"lastenverhog\",\n  \"lastenverlichting\": \"lastenverlicht\",\n  \"lastenverlichtingen\": \"lastenverlicht\",\n  \"lastenverlichtingspakket\": \"lastenverlichtingspakket\",\n  \"lastenverzwaring\": \"lastenverzwar\",\n  \"laster\": \"laster\",\n  \"lasterden\": \"lasterd\",\n  \"lasteren\": \"laster\",\n  \"lasteringen\": \"laster\",\n  \"lasterlijke\": \"laster\",\n  \"lastig\": \"lastig\",\n  \"lastiger\": \"lastiger\",\n  \"late\": \"lat\",\n  \"laten\": \"lat\",\n  \"latende\": \"latend\",\n  \"later\": \"later\",\n  \"latere\": \"later\",\n  \"laterosporus\": \"laterosporus\",\n  \"latex\": \"latex\",\n  \"latijns\": \"latijn\",\n  \"latijnsamerika\": \"latijnsamerika\",\n  \"latour\": \"latour\",\n  \"latta\": \"latta\",\n  \"laura\": \"laura\",\n  \"lausanne\": \"lausann\",\n  \"lausitz\": \"lausitz\",\n  \"lauwe\": \"lauw\",\n  \"lauwer\": \"lauwer\",\n  \"lauwersoog\": \"lauwersog\",\n  \"lauwte\": \"lauwt\",\n  \"lavagesteente\": \"lavagesteent\",\n  \"laval\": \"laval\",\n  \"lavastenen\": \"lavasten\",\n  \"laverman\": \"laverman\",\n  \"law\": \"law\",\n  \"lawaai\": \"lawaai\",\n  \"lawaaidoofheid\": \"lawaaidof\",\n  \"lawaaierig\": \"lawaaier\",\n  \"lawaaierige\": \"lawaaier\",\n  \"lawaaiig\": \"lawaai\",\n  \"lawaaiige\": \"lawaai\",\n  \"lawaainiveau\": \"lawaainiveau\",\n  \"lawickse\": \"lawick\",\n  \"lazen\": \"laz\",\n  \"lb\": \"lb\",\n  \"lbl\": \"lbl\",\n  \"lbo\": \"lbo\",\n  \"lc\": \"lc\",\n  \"lca\": \"lca\",\n  \"lcd\": \"lcd\",\n  \"ldpe\": \"ldpe\",\n  \"le\": \"le\",\n  \"leaflets\": \"leaflet\",\n  \"leakproof\": \"leakprof\",\n  \"lease\": \"leas\",\n  \"leasebedrag\": \"leasebedrag\",\n  \"leased\": \"leased\",\n  \"leasen\": \"leas\",\n  \"least\": \"least\",\n  \"leather\": \"leather\",\n  \"lebbink\": \"lebbink\",\n  \"lebensmitteltechnologie\": \"lebensmitteltechnologie\",\n  \"lectuur\": \"lectur\",\n  \"led\": \"led\",\n  \"lede\": \"led\",\n  \"ledematen\": \"ledemat\",\n  \"leden\": \"led\",\n  \"ledenbedrijven\": \"ledenbedrijv\",\n  \"ledenlijst\": \"ledenlijst\",\n  \"lederindustrie\": \"lederindustrie\",\n  \"ledige\": \"ledig\",\n  \"ledigen\": \"ledig\",\n  \"lediging\": \"ledig\",\n  \"ledigingen\": \"ledig\",\n  \"ledikant\": \"ledikant\",\n  \"lee\": \"lee\",\n  \"leebur\": \"leebur\",\n  \"leed\": \"led\",\n  \"léed\": \"led\",\n  \"leedvermaak\": \"leedvermak\",\n  \"leef\": \"lef\",\n  \"leefbaarheid\": \"leefbar\",\n  \"leefbare\": \"leefbar\",\n  \"leefde\": \"leefd\",\n  \"léefde\": \"leefd\",\n  \"leefden\": \"leefd\",\n  \"léefden\": \"leefd\",\n  \"leefgebied\": \"leefgebied\",\n  \"leefgebieden\": \"leefgebied\",\n  \"leefgemeenschappen\": \"leefgemeenschapp\",\n  \"leefkwaliteit\": \"leefkwaliteit\",\n  \"leefloze\": \"leefloz\",\n  \"leefmilieu\": \"leefmilieu\",\n  \"leefniveau\": \"leefniveau\",\n  \"leefomgeving\": \"leefomgev\",\n  \"leeft\": \"leeft\",\n  \"leeftijd\": \"leeftijd\",\n  \"leeftijdsopbouw\": \"leeftijdsopbouw\",\n  \"leeg\": \"leg\",\n  \"leegden\": \"leegd\",\n  \"leeggehaald\": \"leeggehaald\",\n  \"leeggepompt\": \"leeggepompt\",\n  \"leeggesproeid\": \"leeggesproeid\",\n  \"leeggezogen\": \"leeggezog\",\n  \"leegheid\": \"leegheid\",\n  \"leegmaakten\": \"leegmaakt\",\n  \"leegte\": \"leegt\",\n  \"leegvissen\": \"leegviss\",\n  \"leek\": \"lek\",\n  \"leem\": \"lem\",\n  \"leemgrond\": \"leemgrond\",\n  \"leemtewet\": \"leemtewet\",\n  \"leen\": \"len\",\n  \"leende\": \"leend\",\n  \"leent\": \"leent\",\n  \"leentje\": \"leentj\",\n  \"leer\": \"ler\",\n  \"leerbedrijven\": \"leerbedrijv\",\n  \"leerbranche\": \"leerbranch\",\n  \"leerde\": \"leerd\",\n  \"leerden\": \"leerd\",\n  \"leerindustrie\": \"leerindustrie\",\n  \"leerlingen\": \"leerling\",\n  \"leerlooierij\": \"leerlooierij\",\n  \"leerlooierijen\": \"leerlooierij\",\n  \"leerprocessen\": \"leerprocess\",\n  \"leers\": \"ler\",\n  \"leerstoel\": \"leerstoel\",\n  \"leert\": \"leert\",\n  \"leertijd\": \"leertijd\",\n  \"lees\": \"les\",\n  \"leesbaar\": \"leesbar\",\n  \"leesbaarheid\": \"leesbar\",\n  \"leesboeken\": \"leesboek\",\n  \"leesgezelschap\": \"leesgezelschap\",\n  \"leeslesjes\": \"leeslesjes\",\n  \"leest\": \"leest\",\n  \"leeuw\": \"leeuw\",\n  \"leeuwarden\": \"leeuward\",\n  \"leeuwedeel\": \"leeuwedel\",\n  \"leeuwen\": \"leeuw\",\n  \"leg\": \"leg\",\n  \"legaal\": \"legal\",\n  \"legaliteitsbeginsel\": \"legaliteitsbeginsel\",\n  \"legatie\": \"legatie\",\n  \"legatiën\": \"legatien\",\n  \"legaties\": \"legaties\",\n  \"legbatterijen\": \"legbatterij\",\n  \"legbedrijven\": \"legbedrijv\",\n  \"legde\": \"legd\",\n  \"legden\": \"legd\",\n  \"lege\": \"leg\",\n  \"legen\": \"leg\",\n  \"legenden\": \"legend\",\n  \"leger\": \"leger\",\n  \"legerbasis\": \"legerbasis\",\n  \"legeringen\": \"leger\",\n  \"leges\": \"leges\",\n  \"legeskorting\": \"legeskort\",\n  \"legeskosten\": \"legeskost\",\n  \"legestarief\": \"legestarief\",\n  \"legestarieven\": \"legestariev\",\n  \"leggen\": \"legg\",\n  \"leghennenmest\": \"leghennenmest\",\n  \"leghennenstal\": \"leghennenstal\",\n  \"leging\": \"leging\",\n  \"legt\": \"legt\",\n  \"legwijze\": \"legwijz\",\n  \"lei\": \"lei\",\n  \"leicester\": \"leicester\",\n  \"leidde\": \"leid\",\n  \"leidden\": \"leid\",\n  \"leiden\": \"leid\",\n  \"leidende\": \"leidend\",\n  \"leider\": \"leider\",\n  \"leiderdorp\": \"leiderdorp\",\n  \"leiders\": \"leider\",\n  \"leiderschap\": \"leiderschap\",\n  \"leiding\": \"leiding\",\n  \"leidingen\": \"leiding\",\n  \"leidingennet\": \"leidingennet\",\n  \"leidinggevenden\": \"leidinggev\",\n  \"leidingnet\": \"leidingnet\",\n  \"leidingsysteem\": \"leidingsystem\",\n  \"leidingsystemen\": \"leidingsystem\",\n  \"leidingwater\": \"leidingwater\",\n  \"leidraad\": \"leidrad\",\n  \"leidsche\": \"leidsch\",\n  \"leidschendam\": \"leidschendam\",\n  \"leidschenveen\": \"leidschenven\",\n  \"leidse\": \"leid\",\n  \"leidsebuurt\": \"leidsebuurt\",\n  \"leidseplein\": \"leidseplein\",\n  \"leidt\": \"leidt\",\n  \"leien\": \"lei\",\n  \"leigh\": \"leigh\",\n  \"leipzig\": \"leipzig\",\n  \"leisewitzstr\": \"leisewitzstr\",\n  \"leisteen\": \"leisten\",\n  \"leithold\": \"leithold\",\n  \"lek\": \"lek\",\n  \"lekbak\": \"lekbak\",\n  \"lekdetectie\": \"lekdetectie\",\n  \"lekdichtheidsvoorschriften\": \"lekdichtheidsvoorschrift\",\n  \"leken\": \"lek\",\n  \"lekkage\": \"lekkag\",\n  \"lekkages\": \"lekkages\",\n  \"lekkanaal\": \"lekkanal\",\n  \"lekken\": \"lek\",\n  \"lekkend\": \"lekkend\",\n  \"lekkende\": \"lekkend\",\n  \"lekker\": \"lekker\",\n  \"lekkerder\": \"lekkerder\",\n  \"lekkere\": \"lekker\",\n  \"lekkerkerk\": \"lekkerkerk\",\n  \"lèkkertjes\": \"lèkkertjes\",\n  \"lekolie\": \"lekolie\",\n  \"lekt\": \"lekt\",\n  \"lekte\": \"lekt\",\n  \"lekten\": \"lekt\",\n  \"lekvloeistoffen\": \"lekvloeistoff\",\n  \"lekvrij\": \"lekvrij\",\n  \"lekvrije\": \"lekvrij\",\n  \"lelie\": \"lelie\",\n  \"lelielijn\": \"lelielijn\",\n  \"leliën\": \"lelien\",\n  \"lelies\": \"lelies\",\n  \"lelieveld\": \"lelieveld\",\n  \"lelijk\": \"lelijk\",\n  \"lelijke\": \"lelijk\",\n  \"lelijker\": \"lelijker\",\n  \"lelystad\": \"lelystad\",\n  \"lemacon\": \"lemacon\",\n  \"leman\": \"leman\",\n  \"lemkowitz\": \"lemkowitz\",\n  \"lemmer\": \"lemmer\",\n  \"lemstra\": \"lemstra\",\n  \"lenen\": \"len\",\n  \"lengte\": \"lengt\",\n  \"lengtes\": \"lengtes\",\n  \"lenie\": \"lenie\",\n  \"lenig\": \"lenig\",\n  \"lenigde\": \"lenigd\",\n  \"lenigen\": \"lenig\",\n  \"lenigheid\": \"lenig\",\n  \"lening\": \"lening\",\n  \"leningen\": \"lening\",\n  \"leningenproduktie\": \"leningenproduktie\",\n  \"leningradsky\": \"leningradsky\",\n  \"lenitnus\": \"lenitnus\",\n  \"lente\": \"lent\",\n  \"lenteleven\": \"lentelev\",\n  \"lentestemmen\": \"lentestemm\",\n  \"lenteweefde\": \"lenteweefd\",\n  \"lenteweven\": \"lentewev\",\n  \"lentewevende\": \"lentewev\",\n  \"lentjes\": \"lentjes\",\n  \"leon\": \"leon\",\n  \"lepage\": \"lepag\",\n  \"lepelen\": \"lepel\",\n  \"lepeltje\": \"lepeltj\",\n  \"lepeltjes\": \"lepeltjes\",\n  \"lepidus\": \"lepidus\",\n  \"leraar\": \"lerar\",\n  \"leraars\": \"lerar\",\n  \"leraren\": \"lerar\",\n  \"leren\": \"ler\",\n  \"lerend\": \"lerend\",\n  \"lerende\": \"lerend\",\n  \"lernacken\": \"lernack\",\n  \"leroy\": \"leroy\",\n  \"les\": \"les\",\n  \"lesprogramma\": \"lesprogramma\",\n  \"lessen\": \"less\",\n  \"lester\": \"lester\",\n  \"lesvluchten\": \"lesvlucht\",\n  \"let\": \"let\",\n  \"letale\": \"letal\",\n  \"lethargie\": \"lethargie\",\n  \"lethem\": \"lethem\",\n  \"letland\": \"letland\",\n  \"leto\": \"leto\",\n  \"letsel\": \"letsel\",\n  \"lette\": \"let\",\n  \"letten\": \"let\",\n  \"lettende\": \"lettend\",\n  \"letter\": \"letter\",\n  \"letterlijk\": \"letter\",\n  \"letters\": \"letter\",\n  \"leugen\": \"leug\",\n  \"leugens\": \"leugen\",\n  \"leuk\": \"leuk\",\n  \"leuke\": \"leuk\",\n  \"leukemie\": \"leukemie\",\n  \"leukheid\": \"leukheid\",\n  \"leun\": \"leun\",\n  \"leuna\": \"leuna\",\n  \"leunde\": \"leund\",\n  \"leunden\": \"leund\",\n  \"leunen\": \"leun\",\n  \"leunende\": \"leunend\",\n  \"leuning\": \"leuning\",\n  \"leunstoel\": \"leunstoel\",\n  \"leunt\": \"leunt\",\n  \"leusden\": \"leusd\",\n  \"leuter\": \"leuter\",\n  \"leuterdorf\": \"leuterdorf\",\n  \"leutersdorf\": \"leutersdorf\",\n  \"leuven\": \"leuv\",\n  \"levantestreek\": \"levantestrek\",\n  \"leve\": \"lev\",\n  \"level\": \"level\",\n  \"leven\": \"lev\",\n  \"léven\": \"lev\",\n  \"levend\": \"levend\",\n  \"levendbarende\": \"levendbar\",\n  \"levende\": \"levend\",\n  \"levenden\": \"levend\",\n  \"levendig\": \"levend\",\n  \"levendige\": \"levend\",\n  \"levendiger\": \"levendiger\",\n  \"levendigheid\": \"levend\",\n  \"levendigs\": \"levend\",\n  \"levens\": \"leven\",\n  \"levensbedreigende\": \"levensbedreig\",\n  \"levensbehoefte\": \"levensbehoeft\",\n  \"levenscyclus\": \"levenscyclus\",\n  \"levenscyclusanalyse\": \"levenscyclusanalys\",\n  \"levenscyclusanalyses\": \"levenscyclusanalyses\",\n  \"levensdageraad\": \"levensdagerad\",\n  \"levensduur\": \"levensdur\",\n  \"levensduurverlengende\": \"levensduurverleng\",\n  \"levensernst\": \"levensernst\",\n  \"levensgevaarlijk\": \"levensgevar\",\n  \"levenshoogmoed\": \"levenshoogmoed\",\n  \"levenshorizon\": \"levenshorizon\",\n  \"levensinblazer\": \"levensinblazer\",\n  \"levenskrachten\": \"levenskracht\",\n  \"levenslange\": \"levenslang\",\n  \"levenslast\": \"levenslast\",\n  \"levenslijn\": \"levenslijn\",\n  \"levenslust\": \"levenslust\",\n  \"levenslustige\": \"levenslust\",\n  \"levensmiddelen\": \"levensmiddel\",\n  \"levensmiddelenbedrijf\": \"levensmiddelenbedrijf\",\n  \"levensmiddelendetailhandel\": \"levensmiddelendetailhandel\",\n  \"levensmiddelenhandel\": \"levensmiddelenhandel\",\n  \"levensmiddelenindustrie\": \"levensmiddelenindustrie\",\n  \"levensmiddelenonderzoek\": \"levensmiddelenonderzoek\",\n  \"levensmoeheid\": \"levensmoe\",\n  \"levensomstandigheden\": \"levensomstand\",\n  \"levensonderhoud\": \"levensonderhoud\",\n  \"levensonmisbaar\": \"levensonmis\",\n  \"levensontevredenheid\": \"levensontevred\",\n  \"levensonwetendheid\": \"levensonwet\",\n  \"levensopvatting\": \"levensopvat\",\n  \"levensopvattingen\": \"levensopvat\",\n  \"levenssap\": \"levenssap\",\n  \"levensstijl\": \"levensstijl\",\n  \"levensstijlen\": \"levensstijl\",\n  \"levenstekenen\": \"levensteken\",\n  \"levenstreurig\": \"levenstreur\",\n  \"levensvatbaar\": \"levensvat\",\n  \"levensvatbaarheid\": \"levensvat\",\n  \"levensvatbare\": \"levensvat\",\n  \"levensvergissing\": \"levensvergiss\",\n  \"levensverwachting\": \"levensverwacht\",\n  \"levensverzekering\": \"levensverzeker\",\n  \"levensverzekeringen\": \"levensverzeker\",\n  \"levenswandel\": \"levenswandel\",\n  \"levenswel\": \"levenswel\",\n  \"levenswijsheid\": \"levenswijs\",\n  \"leventje\": \"leventj\",\n  \"lever\": \"lever\",\n  \"leverancier\": \"leverancier\",\n  \"leveranciers\": \"leverancier\",\n  \"leverantie\": \"leverantie\",\n  \"leverbaar\": \"lever\",\n  \"leverbare\": \"lever\",\n  \"leverde\": \"leverd\",\n  \"leverden\": \"leverd\",\n  \"leveren\": \"lever\",\n  \"leverende\": \"lever\",\n  \"levering\": \"lever\",\n  \"leveringen\": \"lever\",\n  \"levert\": \"levert\",\n  \"levy\": \"levy\",\n  \"leysen\": \"leys\",\n  \"leyten\": \"leyt\",\n  \"lezen\": \"lez\",\n  \"lèzen\": \"lèz\",\n  \"lezend\": \"lezend\",\n  \"lezende\": \"lezend\",\n  \"lezer\": \"lezer\",\n  \"lezers\": \"lezer\",\n  \"lezing\": \"lezing\",\n  \"lezingen\": \"lezing\",\n  \"lezingenprogramma\": \"lezingenprogramma\",\n  \"lf\": \"lf\",\n  \"lheeweg\": \"lheeweg\",\n  \"lhv\": \"lhv\",\n  \"lia\": \"lia\",\n  \"liaison\": \"liaison\",\n  \"liaisons\": \"liaison\",\n  \"liason\": \"liason\",\n  \"libanese\": \"libanes\",\n  \"libanon\": \"libanon\",\n  \"libema\": \"libema\",\n  \"liberaal\": \"liberal\",\n  \"liberalen\": \"liberal\",\n  \"liberalisatie\": \"liberalisatie\",\n  \"liberaliseren\": \"liberaliser\",\n  \"liberalisering\": \"liberaliser\",\n  \"liberation\": \"liberation\",\n  \"liberiaanse\": \"liberiaan\",\n  \"libië\": \"libie\",\n  \"library\": \"library\",\n  \"licentie\": \"licentie\",\n  \"licentiehouder\": \"licentiehouder\",\n  \"licentienemer\": \"licentienemer\",\n  \"licentieovereenkomsten\": \"licentieovereenkomst\",\n  \"licentierechten\": \"licentierecht\",\n  \"licenties\": \"licenties\",\n  \"lichaam\": \"licham\",\n  \"lichaamsbouw\": \"lichaamsbouw\",\n  \"lichaamsdelen\": \"lichaamsdel\",\n  \"lichaamsvreemde\": \"lichaamsvreemd\",\n  \"lichaamsziek\": \"lichaamsziek\",\n  \"lichamelijk\": \"licham\",\n  \"lichamelijke\": \"licham\",\n  \"lichamelijkheden\": \"licham\",\n  \"lichamen\": \"licham\",\n  \"lichere\": \"licher\",\n  \"licht\": \"licht\",\n  \"lichtbeeld\": \"lichtbeeld\",\n  \"lichtbruin\": \"lichtbruin\",\n  \"lichtdoorlatende\": \"lichtdoorlat\",\n  \"lichte\": \"licht\",\n  \"lichten\": \"licht\",\n  \"lichtende\": \"lichtend\",\n  \"lichtenvoorde\": \"lichtenvoord\",\n  \"lichter\": \"lichter\",\n  \"lichtere\": \"lichter\",\n  \"lichters\": \"lichter\",\n  \"lichtgevoeligheid\": \"lichtgevoel\",\n  \"lichtgewicht\": \"lichtgewicht\",\n  \"lichtgrijs\": \"lichtgrijs\",\n  \"lichthoeveelheid\": \"lichthoevel\",\n  \"lichtintensiteit\": \"lichtintensiteit\",\n  \"lichtje\": \"lichtj\",\n  \"lichtjes\": \"lichtjes\",\n  \"lichtkranten\": \"lichtkrant\",\n  \"lichtkring\": \"lichtkring\",\n  \"lichtkringen\": \"lichtkring\",\n  \"lichtregelsystemen\": \"lichtregelsystem\",\n  \"lichtste\": \"lichtst\",\n  \"lichtstromende\": \"lichtstrom\",\n  \"lichtte\": \"licht\",\n  \"lichtten\": \"licht\",\n  \"lichttoetreding\": \"lichttoetred\",\n  \"lichtverontreinigde\": \"lichtverontreinigd\",\n  \"lichtzinnige\": \"lichtzinn\",\n  \"lid\": \"lid\",\n  \"lidia\": \"lidia\",\n  \"lidmaatschap\": \"lidmaatschap\",\n  \"lidstaten\": \"lidstat\",\n  \"lidvereniging\": \"lidveren\",\n  \"liebeslied\": \"liebeslied\",\n  \"liebestod\": \"liebestod\",\n  \"liebregts\": \"liebregt\",\n  \"liechtenstein\": \"liechtenstein\",\n  \"lied\": \"lied\",\n  \"liede\": \"lied\",\n  \"liedje\": \"liedj\",\n  \"lief\": \"lief\",\n  \"liefdadig\": \"liefdad\",\n  \"liefdadigheid\": \"liefdad\",\n  \"liefdadigheidsbezoek\": \"liefdadigheidsbezoek\",\n  \"liefdadigheidsmatinée\": \"liefdadigheidsmatinee\",\n  \"liefde\": \"liefd\",\n  \"liefdevol\": \"liefdevol\",\n  \"liefgehad\": \"liefgehad\",\n  \"liefgekregen\": \"liefgekreg\",\n  \"liefglimlachspelingen\": \"liefglimlachspel\",\n  \"liefhad\": \"liefhad\",\n  \"liefhadden\": \"liefhad\",\n  \"liefheb\": \"liefheb\",\n  \"liefhebben\": \"liefhebb\",\n  \"liefhebbende\": \"liefhebb\",\n  \"liefhebbends\": \"liefhebb\",\n  \"liefhebberijen\": \"liefhebberij\",\n  \"liefhebt\": \"liefhebt\",\n  \"liefheeft\": \"liefheeft\",\n  \"liefheid\": \"liefheid\",\n  \"liefjes\": \"liefjes\",\n  \"liefkozen\": \"liefkoz\",\n  \"liefkozend\": \"liefkoz\",\n  \"liefkozende\": \"liefkoz\",\n  \"liefkozender\": \"liefkozender\",\n  \"liefkozing\": \"liefkoz\",\n  \"liefkreeg\": \"liefkreg\",\n  \"lieflijkjes\": \"lieflijkjes\",\n  \"liefs\": \"lief\",\n  \"liefst\": \"liefst\",\n  \"liefste\": \"liefst\",\n  \"lieftalliger\": \"lieftalliger\",\n  \"liegen\": \"lieg\",\n  \"liegt\": \"liegt\",\n  \"lien\": \"lien\",\n  \"liep\": \"liep\",\n  \"liepen\": \"liep\",\n  \"lier\": \"lier\",\n  \"lieshout\": \"lieshout\",\n  \"liesveld\": \"liesveld\",\n  \"liet\": \"liet\",\n  \"lieten\": \"liet\",\n  \"liètje\": \"liètj\",\n  \"lieu\": \"lieu\",\n  \"lieve\": \"liev\",\n  \"lieveling\": \"lievel\",\n  \"lievelingen\": \"lievel\",\n  \"lievelingsdochter\": \"lievelingsdochter\",\n  \"lievelingszuster\": \"lievelingszuster\",\n  \"lievense\": \"lieven\",\n  \"liever\": \"liever\",\n  \"lievige\": \"lievig\",\n  \"life\": \"lif\",\n  \"liff\": \"liff\",\n  \"lift\": \"lift\",\n  \"lifter\": \"lifter\",\n  \"liftmotor\": \"liftmotor\",\n  \"lig\": \"lig\",\n  \"ligboxstallen\": \"ligboxstall\",\n  \"liggen\": \"ligg\",\n  \"liggend\": \"liggend\",\n  \"liggende\": \"liggend\",\n  \"liggers\": \"ligger\",\n  \"ligging\": \"ligging\",\n  \"ligh\": \"ligh\",\n  \"light\": \"light\",\n  \"lightning\": \"lightning\",\n  \"lignieresii\": \"lignieresii\",\n  \"lignine\": \"lignin\",\n  \"lignitevoorraden\": \"lignitevoorrad\",\n  \"ligplaatsen\": \"ligplaats\",\n  \"ligt\": \"ligt\",\n  \"ligtermoet\": \"ligtermoet\",\n  \"ligthart\": \"ligthart\",\n  \"lijd\": \"lijd\",\n  \"lijden\": \"lijd\",\n  \"lijdend\": \"lijdend\",\n  \"lijdende\": \"lijdend\",\n  \"lijdsman\": \"lijdsman\",\n  \"lijdt\": \"lijdt\",\n  \"lijdzaam\": \"lijdzam\",\n  \"lijf\": \"lijf\",\n  \"lijfarts\": \"lijfart\",\n  \"lijfje\": \"lijfj\",\n  \"lijflijke\": \"lijflijk\",\n  \"lijfrentepolis\": \"lijfrentepolis\",\n  \"lijfrenteverzekeringen\": \"lijfrenteverzeker\",\n  \"lijfskronkelingen\": \"lijfskronkel\",\n  \"lijfsliefde\": \"lijfsliefd\",\n  \"lijfslust\": \"lijfslust\",\n  \"lijk\": \"lijk\",\n  \"lijken\": \"lijk\",\n  \"lijkt\": \"lijkt\",\n  \"lijkwagen\": \"lijkwag\",\n  \"lijm\": \"lijm\",\n  \"lijmbehandeling\": \"lijmbehandel\",\n  \"lijmen\": \"lijm\",\n  \"lijmresten\": \"lijmrest\",\n  \"lijmt\": \"lijmt\",\n  \"lijn\": \"lijn\",\n  \"lijnde\": \"lijnd\",\n  \"lijnen\": \"lijn\",\n  \"lijnharmonieën\": \"lijnharmonieen\",\n  \"lijnrecht\": \"lijnrecht\",\n  \"lijnvluchten\": \"lijnvlucht\",\n  \"lijst\": \"lijst\",\n  \"lijsten\": \"lijst\",\n  \"lijstje\": \"lijstj\",\n  \"lijstjes\": \"lijstjes\",\n  \"lijven\": \"lijv\",\n  \"lik\": \"lik\",\n  \"like\": \"lik\",\n  \"likeur\": \"likeur\",\n  \"likken\": \"lik\",\n  \"likte\": \"likt\",\n  \"likten\": \"likt\",\n  \"lila\": \"lila\",\n  \"lillehammer\": \"lillehammer\",\n  \"lillende\": \"lillend\",\n  \"limborgh\": \"limborgh\",\n  \"limburg\": \"limburg\",\n  \"limburgers\": \"limburger\",\n  \"limburgse\": \"limburg\",\n  \"limiet\": \"limiet\",\n  \"limieten\": \"limiet\",\n  \"limietwaarden\": \"limietwaard\",\n  \"limit\": \"limit\",\n  \"limitatieve\": \"limitatiev\",\n  \"limited\": \"limited\",\n  \"limitering\": \"limiter\",\n  \"limits\": \"limit\",\n  \"limmel\": \"limmel\",\n  \"limonade\": \"limonad\",\n  \"limonadefabriek\": \"limonadefabriek\",\n  \"linda\": \"linda\",\n  \"lindaan\": \"lindan\",\n  \"linde\": \"lind\",\n  \"lindebomen\": \"lindebom\",\n  \"lindemann\": \"lindemann\",\n  \"linden\": \"lind\",\n  \"lindvall\": \"lindvall\",\n  \"line\": \"lin\",\n  \"linea\": \"linea\",\n  \"lineaire\": \"lineair\",\n  \"lined\": \"lined\",\n  \"liner\": \"liner\",\n  \"linersystemen\": \"linersystem\",\n  \"linge\": \"ling\",\n  \"lingenfeld\": \"lingenfeld\",\n  \"linie\": \"linie\",\n  \"lining\": \"lining\",\n  \"link\": \"link\",\n  \"links\": \"link\",\n  \"linkse\": \"link\",\n  \"linne\": \"linn\",\n  \"linnengoed\": \"linnengoed\",\n  \"linnenkast\": \"linnenkast\",\n  \"linoleumprodukten\": \"linoleumprodukt\",\n  \"linschoten\": \"linschot\",\n  \"lint\": \"lint\",\n  \"linten\": \"lint\",\n  \"lintweg\": \"lintweg\",\n  \"lionel\": \"lionel\",\n  \"lip\": \"lip\",\n  \"lipiden\": \"lipid\",\n  \"lipjes\": \"lipjes\",\n  \"lippen\": \"lipp\",\n  \"liquefied\": \"liquefied\",\n  \"liqueur\": \"liqueur\",\n  \"liquid\": \"liquid\",\n  \"liquidatie\": \"liquidatie\",\n  \"liquiditeits\": \"liquiditeit\",\n  \"liquiditeitsproblemen\": \"liquiditeitsproblem\",\n  \"liquiditeitsvoordeel\": \"liquiditeitsvoordel\",\n  \"lire\": \"lir\",\n  \"lissabon\": \"lissabon\",\n  \"list\": \"list\",\n  \"lista\": \"lista\",\n  \"listen\": \"list\",\n  \"listig\": \"listig\",\n  \"listige\": \"listig\",\n  \"listigheid\": \"listig\",\n  \"liston\": \"liston\",\n  \"listons\": \"liston\",\n  \"liter\": \"liter\",\n  \"literatuur\": \"literatur\",\n  \"literatuuronderzoek\": \"literatuuronderzoek\",\n  \"literatuuropgave\": \"literatuuropgav\",\n  \"literatuurstudie\": \"literatuurstudie\",\n  \"literatuurverwijzing\": \"literatuurverwijz\",\n  \"literatuurverwijzingen\": \"literatuurverwijz\",\n  \"liters\": \"liter\",\n  \"lith\": \"lith\",\n  \"lithium\": \"lithium\",\n  \"lithiumbatterij\": \"lithiumbatterij\",\n  \"lithiumion\": \"lithiumion\",\n  \"lithosfeer\": \"lithosfer\",\n  \"litouwen\": \"litouw\",\n  \"litteratuur\": \"litteratur\",\n  \"little\": \"littl\",\n  \"livermore\": \"livermor\",\n  \"liverpool\": \"liverpol\",\n  \"living\": \"living\",\n  \"lize\": \"liz\",\n  \"llanos\": \"llanos\",\n  \"lldpe\": \"lldpe\",\n  \"lloyd\": \"lloyd\",\n  \"lloyds\": \"lloyd\",\n  \"lltb\": \"lltb\",\n  \"lm\": \"lm\",\n  \"lma\": \"lma\",\n  \"lme\": \"lme\",\n  \"lmr\": \"lmr\",\n  \"lmw\": \"lmw\",\n  \"lng\": \"lng\",\n  \"lnv\": \"lnv\",\n  \"lobby\": \"lobby\",\n  \"lobith\": \"lobith\",\n  \"local\": \"local\",\n  \"locatie\": \"locatie\",\n  \"locatieproblematiek\": \"locatieproblematiek\",\n  \"locaties\": \"locaties\",\n  \"locatiespecifiek\": \"locatiespecifiek\",\n  \"locatiespecifieke\": \"locatiespecifiek\",\n  \"lochem\": \"lochem\",\n  \"locomotief\": \"locomotief\",\n  \"locomotieven\": \"locomotiev\",\n  \"lodeh\": \"lodeh\",\n  \"loden\": \"lod\",\n  \"lodewijkx\": \"lodewijkx\",\n  \"loeide\": \"loeid\",\n  \"loeiende\": \"loeiend\",\n  \"loeiklacht\": \"loeiklacht\",\n  \"loenen\": \"loen\",\n  \"loer\": \"loer\",\n  \"loerblikken\": \"loerblik\",\n  \"loerden\": \"loerd\",\n  \"loeren\": \"loer\",\n  \"lof\": \"lof\",\n  \"log\": \"log\",\n  \"logam\": \"logam\",\n  \"loge\": \"log\",\n  \"logé\": \"log\",\n  \"logeerde\": \"logeerd\",\n  \"logeerkamer\": \"logeerkamer\",\n  \"logeerkamers\": \"logeerkamer\",\n  \"logeren\": \"loger\",\n  \"logerende\": \"loger\",\n  \"logic\": \"logic\",\n  \"logica\": \"logica\",\n  \"logisch\": \"logisch\",\n  \"logische\": \"logisch\",\n  \"logisticon\": \"logisticon\",\n  \"logistiek\": \"logistiek\",\n  \"logistieke\": \"logistiek\",\n  \"loglineaire\": \"loglineair\",\n  \"lognormal\": \"lognormal\",\n  \"logo\": \"logo\",\n  \"loire\": \"loir\",\n  \"lokaal\": \"lokal\",\n  \"lokale\": \"lokal\",\n  \"lokalen\": \"lokal\",\n  \"lokaliseren\": \"lokaliser\",\n  \"lokatie\": \"lokatie\",\n  \"lokaties\": \"lokaties\",\n  \"loken\": \"lok\",\n  \"lokeren\": \"loker\",\n  \"loket\": \"loket\",\n  \"loketjes\": \"loketjes\",\n  \"lokkelijk\": \"lokkelijk\",\n  \"lokken\": \"lok\",\n  \"lokkende\": \"lokkend\",\n  \"lokring\": \"lokring\",\n  \"lokte\": \"lokt\",\n  \"lol\": \"lol\",\n  \"lollig\": \"lollig\",\n  \"lombardië\": \"lombardie\",\n  \"lome\": \"lom\",\n  \"loméverdrag\": \"lomeverdrag\",\n  \"lomp\": \"lomp\",\n  \"lompheden\": \"lompheid\",\n  \"lompheid\": \"lompheid\",\n  \"londen\": \"lond\",\n  \"londense\": \"londen\",\n  \"london\": \"london\",\n  \"lonen\": \"lon\",\n  \"lonend\": \"lonend\",\n  \"long\": \"long\",\n  \"longen\": \"long\",\n  \"longlifecaps\": \"longlifecap\",\n  \"longschokken\": \"longschok\",\n  \"longue\": \"longue\",\n  \"lonkende\": \"lonkend\",\n  \"lonkten\": \"lonkt\",\n  \"loochenen\": \"loochen\",\n  \"lood\": \"lod\",\n  \"loodchloride\": \"loodchlorid\",\n  \"loodconcentratie\": \"loodconcentratie\",\n  \"loodemissies\": \"loodemissies\",\n  \"loodgehalte\": \"loodgehalt\",\n  \"loodgehaltes\": \"loodgehaltes\",\n  \"loodhoudende\": \"loodhoud\",\n  \"loodjes\": \"loodjes\",\n  \"loodkleur\": \"loodkleur\",\n  \"loodmetaal\": \"loodmetal\",\n  \"loodoxyde\": \"loodoxyd\",\n  \"loodrechte\": \"loodrecht\",\n  \"loods\": \"lod\",\n  \"looduitstoot\": \"looduitstot\",\n  \"loodvervuiling\": \"loodvervuil\",\n  \"loodvrij\": \"loodvrij\",\n  \"loodvrije\": \"loodvrij\",\n  \"loodzwaar\": \"loodzwar\",\n  \"loodzware\": \"loodzwar\",\n  \"loof\": \"lof\",\n  \"loofbomen\": \"loofbom\",\n  \"loofde\": \"loofd\",\n  \"looft\": \"looft\",\n  \"loog\": \"log\",\n  \"look\": \"lok\",\n  \"loom\": \"lom\",\n  \"loomheid\": \"loomheid\",\n  \"loon\": \"lon\",\n  \"loonkoel\": \"loonkoel\",\n  \"loonkosten\": \"loonkost\",\n  \"loont\": \"loont\",\n  \"loonvrieshuis\": \"loonvrieshuis\",\n  \"loonwerk\": \"loonwerk\",\n  \"loonwerker\": \"loonwerker\",\n  \"loonwerkers\": \"loonwerker\",\n  \"loop\": \"lop\",\n  \"loopafstand\": \"loopafstand\",\n  \"loopbaan\": \"loopban\",\n  \"loopfolie\": \"loopfolie\",\n  \"loopjes\": \"loopjes\",\n  \"loopjongen\": \"loopjong\",\n  \"loops\": \"lop\",\n  \"loopt\": \"loopt\",\n  \"looptijd\": \"looptijd\",\n  \"loos\": \"los\",\n  \"loosde\": \"loosd\",\n  \"loosden\": \"loosd\",\n  \"loost\": \"loost\",\n  \"lopen\": \"lop\",\n  \"lopend\": \"lopend\",\n  \"lopende\": \"lopend\",\n  \"loper\": \"loper\",\n  \"loprox\": \"loprox\",\n  \"lor\": \"lor\",\n  \"lord\": \"lord\",\n  \"los\": \"los\",\n  \"losbarstende\": \"losbarst\",\n  \"losbladige\": \"losblad\",\n  \"losbreekt\": \"losbreekt\",\n  \"lösch\": \"losch\",\n  \"losgebarsten\": \"losgebarst\",\n  \"losgeknoopt\": \"losgeknoopt\",\n  \"losgelaten\": \"losgelat\",\n  \"losgeslagen\": \"losgeslag\",\n  \"losheid\": \"losheid\",\n  \"loskoppelen\": \"loskoppel\",\n  \"loslaten\": \"loslat\",\n  \"losmaak\": \"losmak\",\n  \"losmaken\": \"losmak\",\n  \"losmakende\": \"losmak\",\n  \"losraking\": \"losrak\",\n  \"loss\": \"los\",\n  \"losse\": \"los\",\n  \"lossen\": \"loss\",\n  \"losser\": \"losser\",\n  \"losses\": \"losses\",\n  \"lossnijden\": \"lossnijd\",\n  \"losstaat\": \"losstat\",\n  \"lost\": \"lost\",\n  \"lostrekken\": \"lostrek\",\n  \"losvloer\": \"losvloer\",\n  \"losvoorzieningen\": \"losvoorzien\",\n  \"loswal\": \"loswal\",\n  \"loswikkelen\": \"loswikkel\",\n  \"loswoelen\": \"loswoel\",\n  \"lot\": \"lot\",\n  \"lotharingen\": \"lothar\",\n  \"lotje\": \"lotj\",\n  \"lots\": \"lot\",\n  \"lotz\": \"lotz\",\n  \"louis\": \"louis\",\n  \"louise\": \"louis\",\n  \"louisiana\": \"louisiana\",\n  \"lousiana\": \"lousiana\",\n  \"louter\": \"louter\",\n  \"loutere\": \"louter\",\n  \"louteren\": \"louter\",\n  \"loverde\": \"loverd\",\n  \"lovers\": \"lover\",\n  \"lovertoppen\": \"lovertopp\",\n  \"lovinklaan\": \"lovinklan\",\n  \"lovins\": \"lovin\",\n  \"low\": \"low\",\n  \"lowe\": \"low\",\n  \"lozen\": \"loz\",\n  \"lozer\": \"lozer\",\n  \"lozers\": \"lozer\",\n  \"lozing\": \"lozing\",\n  \"lozingbesluit\": \"lozingbesluit\",\n  \"lozingen\": \"lozing\",\n  \"lozingenbesluit\": \"lozingenbesluit\",\n  \"lozingenformulier\": \"lozingenformulier\",\n  \"lozingsincident\": \"lozingsincident\",\n  \"lozingskosten\": \"lozingskost\",\n  \"lozingspunt\": \"lozingspunt\",\n  \"lozingsverbod\": \"lozingsverbod\",\n  \"lozingsvergunning\": \"lozingsvergunn\",\n  \"lozingsysteem\": \"lozingsystem\",\n  \"lozo\": \"lozo\",\n  \"lpg\": \"lpg\",\n  \"lrf\": \"lrf\",\n  \"lrqa\": \"lrqa\",\n  \"lrs\": \"lrs\",\n  \"ltd\": \"ltd\",\n  \"lto\": \"lto\",\n  \"lu\": \"lu\",\n  \"lubbers\": \"lubber\",\n  \"lucas\": \"lucas\",\n  \"lucht\": \"lucht\",\n  \"luchtaanvoer\": \"luchtaanvoer\",\n  \"luchtbehandeling\": \"luchtbehandel\",\n  \"luchtbellen\": \"luchtbell\",\n  \"luchtcelletjes\": \"luchtcelletjes\",\n  \"luchtcirculatie\": \"luchtcirculatie\",\n  \"luchtcirculaties\": \"luchtcirculaties\",\n  \"luchtcompressor\": \"luchtcompressor\",\n  \"luchtdebiet\": \"luchtdebiet\",\n  \"luchtdicht\": \"luchtdicht\",\n  \"luchtdichter\": \"luchtdichter\",\n  \"luchtdoorlatende\": \"luchtdoorlat\",\n  \"luchtdruk\": \"luchtdruk\",\n  \"luchtemissie\": \"luchtemissie\",\n  \"luchtemissiebeperking\": \"luchtemissiebeperk\",\n  \"luchtemissies\": \"luchtemissies\",\n  \"luchten\": \"lucht\",\n  \"luchtfactor\": \"luchtfactor\",\n  \"luchtfilter\": \"luchtfilter\",\n  \"luchtfoto\": \"luchtfoto\",\n  \"luchtgedreven\": \"luchtgedrev\",\n  \"luchtgekoelde\": \"luchtgekoeld\",\n  \"luchtgeluid\": \"luchtgeluid\",\n  \"luchtgroeve\": \"luchtgroev\",\n  \"luchthartig\": \"luchthart\",\n  \"luchthartigheid\": \"luchthart\",\n  \"luchthaven\": \"luchthav\",\n  \"luchthavenafval\": \"luchthavenafval\",\n  \"luchthavencapaciteit\": \"luchthavencapaciteit\",\n  \"luchthavengebouw\": \"luchthavengebouw\",\n  \"luchthavens\": \"luchthaven\",\n  \"luchtig\": \"luchtig\",\n  \"luchtige\": \"luchtig\",\n  \"luchtiger\": \"luchtiger\",\n  \"luchtigheid\": \"luchtig\",\n  \"luchtijlte\": \"luchtijlt\",\n  \"luchtinjectors\": \"luchtinjector\",\n  \"luchtje\": \"luchtj\",\n  \"luchtkleppen\": \"luchtklepp\",\n  \"luchtkoeling\": \"luchtkoel\",\n  \"luchtkwaliteit\": \"luchtkwaliteit\",\n  \"luchtkwaliteitsbeleid\": \"luchtkwaliteitsbeleid\",\n  \"luchtkwaliteitsnormen\": \"luchtkwaliteitsnorm\",\n  \"luchtkwaliteitsstandaard\": \"luchtkwaliteitsstandaard\",\n  \"luchtkwaliteitswetgeving\": \"luchtkwaliteitswetgev\",\n  \"luchtlagen\": \"luchtlag\",\n  \"luchtlagers\": \"luchtlager\",\n  \"luchtloze\": \"luchtloz\",\n  \"luchtmacht\": \"luchtmacht\",\n  \"luchtmobiele\": \"luchtmobiel\",\n  \"luchtmobiliteit\": \"luchtmobiliteit\",\n  \"luchtmonsters\": \"luchtmonster\",\n  \"luchtondersteuning\": \"luchtondersteun\",\n  \"luchtopnamen\": \"luchtopnam\",\n  \"luchtpost\": \"luchtpost\",\n  \"luchtrails\": \"luchtrail\",\n  \"luchtramen\": \"luchtram\",\n  \"luchtreiniger\": \"luchtreiniger\",\n  \"luchtreiniging\": \"luchtrein\",\n  \"luchtreinigingsinstallatie\": \"luchtreinigingsinstallatie\",\n  \"luchtreinigingssysteem\": \"luchtreinigingssystem\",\n  \"luchtreinigingssystemen\": \"luchtreinigingssystem\",\n  \"luchtruim\": \"luchtruim\",\n  \"luchtsneltrein\": \"luchtsneltrein\",\n  \"luchtspuiten\": \"luchtspuit\",\n  \"luchtstromen\": \"luchtstrom\",\n  \"luchtstroming\": \"luchtstrom\",\n  \"luchtstroom\": \"luchtstrom\",\n  \"luchttemperatuur\": \"luchttemperatur\",\n  \"luchttoevoer\": \"luchttoevoer\",\n  \"luchtvaart\": \"luchtvaart\",\n  \"luchtvaartbedrijven\": \"luchtvaartbedrijv\",\n  \"luchtvaartemissies\": \"luchtvaartemissies\",\n  \"luchtvaartincidenten\": \"luchtvaartincident\",\n  \"luchtvaartindustrie\": \"luchtvaartindustrie\",\n  \"luchtvaartmaatschappij\": \"luchtvaartmaatschappij\",\n  \"luchtvaartmaatschappijen\": \"luchtvaartmaatschappij\",\n  \"luchtvaartonderzoeksinstituut\": \"luchtvaartonderzoeksinstitut\",\n  \"luchtvaarttoepassingen\": \"luchtvaarttoepass\",\n  \"luchtvaartverkeer\": \"luchtvaartverker\",\n  \"luchtverhouding\": \"luchtverhoud\",\n  \"luchtverkeer\": \"luchtverker\",\n  \"luchtverontreinigende\": \"luchtverontrein\",\n  \"luchtverontreiniging\": \"luchtverontrein\",\n  \"luchtvervuiler\": \"luchtvervuiler\",\n  \"luchtvervuiling\": \"luchtvervuil\",\n  \"luchtvervuilingsbeleid\": \"luchtvervuilingsbeleid\",\n  \"luchtvochtigheid\": \"luchtvocht\",\n  \"luchtwegaandoeningen\": \"luchtwegaandoen\",\n  \"luchtwegen\": \"luchtweg\",\n  \"luchtwolken\": \"luchtwolk\",\n  \"luchtzuivering\": \"luchtzuiver\",\n  \"luchtzuiveringsinstallatie\": \"luchtzuiveringsinstallatie\",\n  \"luchverontreiniging\": \"luchverontrein\",\n  \"lucifer\": \"lucifer\",\n  \"lucifers\": \"lucifer\",\n  \"lucratieve\": \"lucratiev\",\n  \"lucratiever\": \"lucratiever\",\n  \"ludger\": \"ludger\",\n  \"ludieke\": \"ludiek\",\n  \"ludlow\": \"ludlow\",\n  \"ludwigshafen\": \"ludwigshaf\",\n  \"lufthansa\": \"lufthansa\",\n  \"luguber\": \"luguber\",\n  \"lugubere\": \"luguber\",\n  \"lui\": \"lui\",\n  \"luid\": \"luid\",\n  \"luidde\": \"luid\",\n  \"luide\": \"luid\",\n  \"luiden\": \"luid\",\n  \"luider\": \"luider\",\n  \"luidheid\": \"luidheid\",\n  \"luidkeels\": \"luidkel\",\n  \"luidop\": \"luidop\",\n  \"luidruchtig\": \"luidrucht\",\n  \"luidruchtige\": \"luidrucht\",\n  \"luidruchtigheid\": \"luidrucht\",\n  \"luidt\": \"luidt\",\n  \"luier\": \"luier\",\n  \"luiercampagne\": \"luiercampagn\",\n  \"luiercentrales\": \"luiercentrales\",\n  \"luierde\": \"luierd\",\n  \"luieronderzoek\": \"luieronderzoek\",\n  \"luierproject\": \"luierproject\",\n  \"luiers\": \"luier\",\n  \"luierservice\": \"luierservic\",\n  \"luiersystemen\": \"luiersystem\",\n  \"luifels\": \"luifel\",\n  \"luigjes\": \"luigjes\",\n  \"luik\": \"luik\",\n  \"luiken\": \"luik\",\n  \"luis\": \"luis\",\n  \"luister\": \"luister\",\n  \"luisterde\": \"luisterd\",\n  \"luisterden\": \"luisterd\",\n  \"luisteren\": \"luister\",\n  \"luisterend\": \"luister\",\n  \"luisterende\": \"luister\",\n  \"luistering\": \"luister\",\n  \"luisterposten\": \"luisterpost\",\n  \"luistert\": \"luistert\",\n  \"luitenant\": \"luitenant\",\n  \"luitenants\": \"luitenant\",\n  \"luitenantsjaren\": \"luitenantsjar\",\n  \"luk\": \"luk\",\n  \"lukken\": \"luk\",\n  \"lukraak\": \"lukrak\",\n  \"lukt\": \"lukt\",\n  \"lukte\": \"lukt\",\n  \"lulu\": \"lulu\",\n  \"lummelachtig\": \"lummelacht\",\n  \"lummelde\": \"lummeld\",\n  \"lummels\": \"lummel\",\n  \"lummen\": \"lumm\",\n  \"lumpur\": \"lumpur\",\n  \"lunch\": \"lunch\",\n  \"lunchbel\": \"lunchbel\",\n  \"lunchen\": \"lunch\",\n  \"lunchtafel\": \"lunchtafel\",\n  \"lunchte\": \"luncht\",\n  \"lupine\": \"lupin\",\n  \"lurge\": \"lurg\",\n  \"lurgi\": \"lurgi\",\n  \"lus\": \"lus\",\n  \"lust\": \"lust\",\n  \"lustbehoefte\": \"lustbehoeft\",\n  \"lusteloos\": \"lustelos\",\n  \"lusten\": \"lust\",\n  \"lustliefde\": \"lustliefd\",\n  \"lustrum\": \"lustrum\",\n  \"lustrumcongres\": \"lustrumcongres\",\n  \"lustrumeditie\": \"lustrumeditie\",\n  \"lutgen\": \"lutg\",\n  \"lutger\": \"lutger\",\n  \"luther\": \"luther\",\n  \"lutterade\": \"lutterad\",\n  \"luttmer\": \"luttmer\",\n  \"luvo\": \"luvo\",\n  \"luw\": \"luw\",\n  \"lùwen\": \"lùwen\",\n  \"luwte\": \"luwt\",\n  \"luxe\": \"lux\",\n  \"luxemburg\": \"luxemburg\",\n  \"luzerne\": \"luzern\",\n  \"lybrand\": \"lybrand\",\n  \"lydia\": \"lydia\",\n  \"lye\": \"lye\",\n  \"lyon\": \"lyon\",\n  \"lze\": \"lze\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"maa\": \"maa\",\n  \"maag\": \"mag\",\n  \"maagd\": \"maagd\",\n  \"maagdelijk\": \"maagdelijk\",\n  \"maaggrinnik\": \"maaggrinnik\",\n  \"maagkanker\": \"maagkanker\",\n  \"maaglach\": \"maaglach\",\n  \"maagpijn\": \"maagpijn\",\n  \"maaide\": \"maaid\",\n  \"maaike\": \"maaik\",\n  \"maaisel\": \"maaisel\",\n  \"maaiveld\": \"maaiveld\",\n  \"maak\": \"mak\",\n  \"maakt\": \"maakt\",\n  \"maakte\": \"maakt\",\n  \"maakten\": \"maakt\",\n  \"maal\": \"mal\",\n  \"maalgoed\": \"maalgoed\",\n  \"maalsel\": \"maalsel\",\n  \"maaltechniek\": \"maaltechniek\",\n  \"maaltijd\": \"maaltijd\",\n  \"maaltijden\": \"maaltijd\",\n  \"maand\": \"maand\",\n  \"maandag\": \"maandag\",\n  \"maandagavond\": \"maandagavond\",\n  \"maandagmiddag\": \"maandagmiddag\",\n  \"maandblad\": \"maandblad\",\n  \"maande\": \"maand\",\n  \"maandelijks\": \"maandelijk\",\n  \"maanden\": \"maand\",\n  \"maandpaard\": \"maandpaard\",\n  \"maantje\": \"maantj\",\n  \"maar\": \"mar\",\n  \"máar\": \"mar\",\n  \"maarheeze\": \"maarhez\",\n  \"maarssen\": \"maarss\",\n  \"maart\": \"maart\",\n  \"maarten\": \"maart\",\n  \"maartense\": \"maarten\",\n  \"maartse\": \"maart\",\n  \"maas\": \"mas\",\n  \"maasbodem\": \"maasbodem\",\n  \"maasbommel\": \"maasbommel\",\n  \"maasbracht\": \"maasbracht\",\n  \"maasdal\": \"maasdal\",\n  \"maasdam\": \"maasdam\",\n  \"maasdorpbewoners\": \"maasdorpbewoner\",\n  \"maaskades\": \"maaskades\",\n  \"maaskant\": \"maaskant\",\n  \"maasmond\": \"maasmond\",\n  \"maassluis\": \"maassluis\",\n  \"maastricht\": \"maastricht\",\n  \"maastrichtse\": \"maastricht\",\n  \"maasvallei\": \"maasvallei\",\n  \"maasvlakte\": \"maasvlakt\",\n  \"maaswater\": \"maaswater\",\n  \"maat\": \"mat\",\n  \"maaten\": \"mat\",\n  \"maatgevend\": \"maatgev\",\n  \"maatregel\": \"maatregel\",\n  \"maatregelen\": \"maatregel\",\n  \"maatregelenpakket\": \"maatregelenpakket\",\n  \"maatregelenprogramma\": \"maatregelenprogramma\",\n  \"maatschap\": \"maatschap\",\n  \"maatschappelijk\": \"maatschapp\",\n  \"maatschappelijke\": \"maatschapp\",\n  \"maatschappij\": \"maatschappij\",\n  \"maatschappijen\": \"maatschappij\",\n  \"maatstaf\": \"maatstaf\",\n  \"maatstaven\": \"maatstav\",\n  \"maatwerk\": \"maatwerk\",\n  \"maatwerkcontracten\": \"maatwerkcontract\",\n  \"mabon\": \"mabon\",\n  \"mac\": \"mac\",\n  \"macassar\": \"macassar\",\n  \"macdonald\": \"macdonald\",\n  \"maché\": \"mach\",\n  \"machevo\": \"machevo\",\n  \"machinaal\": \"machinal\",\n  \"machinale\": \"machinal\",\n  \"machine\": \"machin\",\n  \"machinebouwer\": \"machinebouwer\",\n  \"machinebouwers\": \"machinebouwer\",\n  \"machinefabriek\": \"machinefabriek\",\n  \"machinegebouw\": \"machinegebouw\",\n  \"machinehoogte\": \"machinehoogt\",\n  \"machinekamers\": \"machinekamer\",\n  \"machinerichtlijn\": \"machinerichtlijn\",\n  \"machinerie\": \"machinerie\",\n  \"machinery\": \"machinery\",\n  \"machines\": \"machines\",\n  \"machinetje\": \"machinetj\",\n  \"machinevaatwasmiddelen\": \"machinevaatwasmiddel\",\n  \"machinist\": \"machinist\",\n  \"macht\": \"macht\",\n  \"machte\": \"macht\",\n  \"machteloos\": \"machtelos\",\n  \"machteloosheid\": \"machtelos\",\n  \"machten\": \"macht\",\n  \"machtig\": \"machtig\",\n  \"machtigde\": \"machtigd\",\n  \"machtige\": \"machtig\",\n  \"machtiger\": \"machtiger\",\n  \"machtsblokken\": \"machtsblok\",\n  \"machtsmisbruik\": \"machtsmisbruik\",\n  \"machtsposities\": \"machtsposities\",\n  \"machtsstructuur\": \"machtsstructur\",\n  \"mackenzie\": \"mackenzie\",\n  \"macmillan\": \"macmillan\",\n  \"macro\": \"macro\",\n  \"macrocampings\": \"macrocamp\",\n  \"macrochemie\": \"macrochemie\",\n  \"macrochloorbalansen\": \"macrochloorbalans\",\n  \"macromoleculair\": \"macromoleculair\",\n  \"macroschaal\": \"macroschal\",\n  \"macsharry\": \"macsharry\",\n  \"mact\": \"mact\",\n  \"madame\": \"madam\",\n  \"madison\": \"madison\",\n  \"madrid\": \"madrid\",\n  \"maduro\": \"maduro\",\n  \"madurodam\": \"madurodam\",\n  \"maersk\": \"maersk\",\n  \"maessen\": \"maess\",\n  \"maey\": \"maey\",\n  \"maeyer\": \"maeyer\",\n  \"maffen\": \"maff\",\n  \"mag\": \"mag\",\n  \"magazijn\": \"magazijn\",\n  \"magazijnen\": \"magazijn\",\n  \"magazin\": \"magazin\",\n  \"magazine\": \"magazin\",\n  \"magazines\": \"magazines\",\n  \"mager\": \"mager\",\n  \"magere\": \"mager\",\n  \"maggiore\": \"maggior\",\n  \"magisch\": \"magisch\",\n  \"magneet\": \"magnet\",\n  \"magneetscheiders\": \"magneetscheider\",\n  \"magneetsysteem\": \"magneetsystem\",\n  \"magneettrommel\": \"magneettrommel\",\n  \"magnesia\": \"magnesia\",\n  \"magnesium\": \"magnesium\",\n  \"magnesiumcarbonaat\": \"magnesiumcarbonat\",\n  \"magnesiumchloride\": \"magnesiumchlorid\",\n  \"magneten\": \"magnet\",\n  \"magnetic\": \"magnetic\",\n  \"magnetics\": \"magnetic\",\n  \"magnetisch\": \"magnetisch\",\n  \"magnetische\": \"magnetisch\",\n  \"magnetiseerbare\": \"magnetiser\",\n  \"magnetisme\": \"magnetism\",\n  \"magnetrons\": \"magnetron\",\n  \"magnifique\": \"magnifique\",\n  \"mahoniehouten\": \"mahoniehout\",\n  \"maij\": \"maij\",\n  \"mail\": \"mail\",\n  \"mailadres\": \"mailadres\",\n  \"mailing\": \"mailing\",\n  \"mailstoel\": \"mailstoel\",\n  \"main\": \"main\",\n  \"maine\": \"main\",\n  \"mainframes\": \"mainframes\",\n  \"mainport\": \"mainport\",\n  \"mainports\": \"mainport\",\n  \"maintenance\": \"maintenanc\",\n  \"mainz\": \"mainz\",\n  \"maïs\": \"mais\",\n  \"maïskolvenschroot\": \"maiskolvenschrot\",\n  \"maïsland\": \"maisland\",\n  \"maisonnettes\": \"maisonnettes\",\n  \"maïsproduktie\": \"maisproduktie\",\n  \"maissoorten\": \"maissoort\",\n  \"maïsstro\": \"maisstro\",\n  \"maïsteelt\": \"maisteelt\",\n  \"maitresse\": \"maitres\",\n  \"maîtresse\": \"maîtres\",\n  \"maïzena\": \"maizena\",\n  \"majak\": \"majak\",\n  \"majesteit\": \"majesteit\",\n  \"majesteitelijk\": \"majesteit\",\n  \"majesteiten\": \"majesteit\",\n  \"majesty\": \"majesty\",\n  \"major\": \"major\",\n  \"mak\": \"mak\",\n  \"makartbouquetten\": \"makartbouquet\",\n  \"makelaars\": \"makelar\",\n  \"makelaarshuizen\": \"makelaarshuiz\",\n  \"makelaarskantoor\": \"makelaarskantor\",\n  \"makelij\": \"makelij\",\n  \"maken\": \"mak\",\n  \"makend\": \"makend\",\n  \"makende\": \"makend\",\n  \"maker\": \"maker\",\n  \"makers\": \"maker\",\n  \"making\": \"making\",\n  \"makkelijk\": \"makkelijk\",\n  \"makkelijker\": \"makkelijker\",\n  \"makkum\": \"makkum\",\n  \"makreel\": \"makrel\",\n  \"makreelvangsten\": \"makreelvangst\",\n  \"mal\": \"mal\",\n  \"malafide\": \"malafid\",\n  \"malaise\": \"malais\",\n  \"malaria\": \"malaria\",\n  \"malariamuggen\": \"malariamugg\",\n  \"malaysia\": \"malaysia\",\n  \"malaysian\": \"malaysian\",\n  \"malburgerhaven\": \"malburgerhav\",\n  \"male\": \"mal\",\n  \"maleis\": \"maleis\",\n  \"maleisië\": \"maleisie\",\n  \"maleisische\": \"maleisisch\",\n  \"malen\": \"mal\",\n  \"mali\": \"mali\",\n  \"malik\": \"malik\",\n  \"malle\": \"mall\",\n  \"mallen\": \"mall\",\n  \"malmö\": \"malmo\",\n  \"maltha\": \"maltha\",\n  \"malus\": \"malus\",\n  \"malussysteem\": \"malussystem\",\n  \"malville\": \"malvill\",\n  \"mama\": \"mama\",\n  \"mamaatje\": \"mamaatj\",\n  \"mamberka\": \"mamberka\",\n  \"mammoetvarkensstallen\": \"mammoetvarkensstall\",\n  \"man\": \"man\",\n  \"management\": \"management\",\n  \"managementaspecten\": \"managementaspect\",\n  \"managementrapport\": \"managementrapport\",\n  \"managementstijl\": \"managementstijl\",\n  \"managementstructuur\": \"managementstructur\",\n  \"managementsysteem\": \"managementsystem\",\n  \"managementsystematiek\": \"managementsystematiek\",\n  \"managementsystemen\": \"managementsystem\",\n  \"manager\": \"manager\",\n  \"managers\": \"manager\",\n  \"managing\": \"manag\",\n  \"manchester\": \"manchester\",\n  \"manchetten\": \"manchet\",\n  \"mancozeb\": \"mancozeb\",\n  \"mand\": \"mand\",\n  \"mandate\": \"mandat\",\n  \"mandela\": \"mandela\",\n  \"manden\": \"mand\",\n  \"mandje\": \"mandj\",\n  \"manen\": \"man\",\n  \"manfred\": \"manfred\",\n  \"mangaan\": \"mangan\",\n  \"mangaanoxyde\": \"mangaanoxyd\",\n  \"mangrovebossen\": \"mangroveboss\",\n  \"manhattan\": \"manhattan\",\n  \"maniak\": \"maniak\",\n  \"manie\": \"manie\",\n  \"manieën\": \"manieen\",\n  \"manier\": \"manier\",\n  \"manieren\": \"manier\",\n  \"maniertjes\": \"maniertjes\",\n  \"manifest\": \"manifest\",\n  \"manifestatie\": \"manifestatie\",\n  \"manifestaties\": \"manifestaties\",\n  \"manifesteren\": \"manifester\",\n  \"manipulatie\": \"manipulatie\",\n  \"manjaren\": \"manjar\",\n  \"mankeer\": \"manker\",\n  \"mankementen\": \"mankement\",\n  \"mankracht\": \"mankracht\",\n  \"manley\": \"manley\",\n  \"manlijke\": \"manlijk\",\n  \"mann\": \"mann\",\n  \"mannelijk\": \"mannelijk\",\n  \"mannelijke\": \"mannelijk\",\n  \"mannelijkheid\": \"mannelijk\",\n  \"mannemerg\": \"mannemerg\",\n  \"mannen\": \"mann\",\n  \"mannenmond\": \"mannenmond\",\n  \"mannesmann\": \"mannesmann\",\n  \"mannetje\": \"mannetj\",\n  \"manneziel\": \"manneziel\",\n  \"mannezinnen\": \"mannezinn\",\n  \"manometers\": \"manometer\",\n  \"manschappen\": \"manschapp\",\n  \"manschot\": \"manschot\",\n  \"manser\": \"manser\",\n  \"mantel\": \"mantel\",\n  \"manteljas\": \"manteljas\",\n  \"mantelkamertje\": \"mantelkamertj\",\n  \"mantels\": \"mantel\",\n  \"manteltje\": \"manteltj\",\n  \"manteltjes\": \"manteltjes\",\n  \"manufacturers\": \"manufacturer\",\n  \"manufactures\": \"manufactures\",\n  \"manufacturing\": \"manufactur\",\n  \"manutea\": \"manutea\",\n  \"manutua\": \"manutua\",\n  \"manuur\": \"manur\",\n  \"manvan\": \"manvan\",\n  \"maori\": \"maori\",\n  \"map\": \"map\",\n  \"maquettes\": \"maquettes\",\n  \"mar\": \"mar\",\n  \"marc\": \"marc\",\n  \"marco\": \"marco\",\n  \"marconi\": \"marconi\",\n  \"mare\": \"mar\",\n  \"marechaussee\": \"marechaussee\",\n  \"marflex\": \"marflex\",\n  \"marge\": \"marg\",\n  \"marges\": \"marges\",\n  \"marginaal\": \"marginal\",\n  \"marginale\": \"marginal\",\n  \"margot\": \"margot\",\n  \"margraten\": \"margrat\",\n  \"margrietkanaal\": \"margrietkanal\",\n  \"marianne\": \"mariann\",\n  \"mariapeel\": \"mariapel\",\n  \"marie\": \"marie\",\n  \"marieantoinette\": \"marieantoinet\",\n  \"mariendorf\": \"mariendorf\",\n  \"mariene\": \"marien\",\n  \"marietje\": \"marietj\",\n  \"mariètje\": \"mariètj\",\n  \"marietjes\": \"marietjes\",\n  \"marijke\": \"marijk\",\n  \"marijnissen\": \"marijniss\",\n  \"marine\": \"marin\",\n  \"marinehaven\": \"marinehav\",\n  \"marineschip\": \"marineschip\",\n  \"mariniers\": \"marinier\",\n  \"marion\": \"marion\",\n  \"marionetten\": \"marionet\",\n  \"maris\": \"maris\",\n  \"maritieme\": \"maritiem\",\n  \"marius\": \"marius\",\n  \"marja\": \"marja\",\n  \"mark\": \"mark\",\n  \"marke\": \"mark\",\n  \"markelo\": \"markelo\",\n  \"markering\": \"marker\",\n  \"markermeer\": \"markermer\",\n  \"market\": \"market\",\n  \"marketing\": \"market\",\n  \"marketingplan\": \"marketingplan\",\n  \"marketingservice\": \"marketingservic\",\n  \"marketingtechnieken\": \"marketingtechniek\",\n  \"markets\": \"market\",\n  \"markies\": \"markies\",\n  \"markiezentitel\": \"markiezentitel\",\n  \"markiezin\": \"markiezin\",\n  \"marking\": \"marking\",\n  \"markka\": \"markka\",\n  \"markt\": \"markt\",\n  \"marktaandeel\": \"marktaandel\",\n  \"marktaandelen\": \"marktaandel\",\n  \"marktafval\": \"marktafval\",\n  \"marktbederf\": \"marktbederf\",\n  \"marktbewerking\": \"marktbewerk\",\n  \"marktcombinatie\": \"marktcombinatie\",\n  \"marktconform\": \"marktconform\",\n  \"markteconomie\": \"markteconomie\",\n  \"markten\": \"markt\",\n  \"marktgericht\": \"marktgericht\",\n  \"marktgerichte\": \"marktgericht\",\n  \"marktgerichter\": \"marktgerichter\",\n  \"marktgestuurde\": \"marktgestuurd\",\n  \"marktgroei\": \"marktgroei\",\n  \"markthoudende\": \"markthoud\",\n  \"marktingrijpen\": \"marktingrijp\",\n  \"marktintroductie\": \"marktintroductie\",\n  \"marktintroductieproject\": \"marktintroductieproject\",\n  \"marktintroductieprojecten\": \"marktintroductieproject\",\n  \"marktkans\": \"marktkan\",\n  \"marktkansen\": \"marktkans\",\n  \"marktleider\": \"marktleider\",\n  \"marktleiders\": \"marktleider\",\n  \"marktmechanisme\": \"marktmechanism\",\n  \"marktmogelijkheden\": \"marktmog\",\n  \"marktniches\": \"marktniches\",\n  \"marktonderzoek\": \"marktonderzoek\",\n  \"marktonderzoeksinstituut\": \"marktonderzoeksinstitut\",\n  \"marktontwikkeling\": \"marktontwikkel\",\n  \"marktontwikkelingen\": \"marktontwikkel\",\n  \"marktpartijen\": \"marktpartij\",\n  \"marktpositie\": \"marktpositie\",\n  \"marktpotentieel\": \"marktpotentieel\",\n  \"marktprikkels\": \"marktprikkel\",\n  \"marktproces\": \"marktproces\",\n  \"marktsector\": \"marktsector\",\n  \"marktsegment\": \"marktsegment\",\n  \"marktsegmenten\": \"marktsegment\",\n  \"marktsituatie\": \"marktsituatie\",\n  \"marktstimulans\": \"marktstimulan\",\n  \"marktstraat\": \"marktstrat\",\n  \"marktveranderingen\": \"marktverander\",\n  \"marktverkenning\": \"marktverkenn\",\n  \"marktverwachtingen\": \"marktverwacht\",\n  \"marktvoorwaarden\": \"marktvoorwaard\",\n  \"marktwaarde\": \"marktwaard\",\n  \"marktwerking\": \"marktwerk\",\n  \"markus\": \"markus\",\n  \"marlex\": \"marlex\",\n  \"marlow\": \"marlow\",\n  \"marmer\": \"marmer\",\n  \"marne\": \"marn\",\n  \"marokko\": \"marokko\",\n  \"marrakech\": \"marrakech\",\n  \"marrekrite\": \"marrekrit\",\n  \"marron\": \"marron\",\n  \"mars\": \"mar\",\n  \"marsdiep\": \"marsdiep\",\n  \"marsepein\": \"marsepein\",\n  \"martelaar\": \"martelar\",\n  \"martelaarschap\": \"martelaarschap\",\n  \"martelares\": \"martelares\",\n  \"martelde\": \"marteld\",\n  \"marteling\": \"martel\",\n  \"martens\": \"marten\",\n  \"martin\": \"martin\",\n  \"martinikerkhof\": \"martinikerkhof\",\n  \"maru\": \"maru\",\n  \"marvision\": \"marvision\",\n  \"marx\": \"marx\",\n  \"mary\": \"mary\",\n  \"maryland\": \"maryland\",\n  \"mas\": \"mas\",\n  \"maschine\": \"maschin\",\n  \"maschinenbau\": \"maschinenbau\",\n  \"masker\": \"masker\",\n  \"maskerade\": \"maskerad\",\n  \"mass\": \"mas\",\n  \"massa\": \"massa\",\n  \"massaal\": \"massal\",\n  \"massachusetts\": \"massachusett\",\n  \"massaconsumptie\": \"massaconsumptie\",\n  \"massadichtheid\": \"massadicht\",\n  \"massale\": \"massal\",\n  \"massaproduktie\": \"massaproduktie\",\n  \"massaspectrometers\": \"massaspectrometer\",\n  \"massaspectrometrie\": \"massaspectrometrie\",\n  \"massastroom\": \"massastrom\",\n  \"masseerde\": \"masseerd\",\n  \"masseren\": \"masser\",\n  \"massief\": \"massief\",\n  \"massiefkarton\": \"massiefkarton\",\n  \"massieve\": \"massiev\",\n  \"massievig\": \"massiev\",\n  \"massink\": \"massink\",\n  \"mast\": \"mast\",\n  \"mastbos\": \"mastbos\",\n  \"masten\": \"mast\",\n  \"mastersopleiding\": \"mastersopleid\",\n  \"masthoogte\": \"masthoogt\",\n  \"mat\": \"mat\",\n  \"mate\": \"mat\",\n  \"matelot\": \"matelot\",\n  \"maten\": \"mat\",\n  \"materiaal\": \"materiaal\",\n  \"materiaalanalyses\": \"materiaalanalyses\",\n  \"materiaaleigenschappen\": \"materiaaleigenschapp\",\n  \"materiaalfouten\": \"materiaalfout\",\n  \"materiaalgebruik\": \"materiaalgebruik\",\n  \"materiaalhergebruik\": \"materiaalhergebruik\",\n  \"materiaalintensiteit\": \"materiaalintensiteit\",\n  \"materiaalkeuze\": \"materiaalkeuz\",\n  \"materiaalkosten\": \"materiaalkost\",\n  \"materiaalkunde\": \"materiaalkund\",\n  \"materiaalresten\": \"materiaalrest\",\n  \"materiaalsoort\": \"materiaalsoort\",\n  \"materiaalstromen\": \"materiaalstrom\",\n  \"materiaaltechnologie\": \"materiaaltechnologie\",\n  \"materiaaltechnologisch\": \"materiaaltechnologisch\",\n  \"material\": \"material\",\n  \"materialen\": \"material\",\n  \"materialentechnologie\": \"materialentechnologie\",\n  \"materialisme\": \"materialism\",\n  \"materialistische\": \"materialistisch\",\n  \"materialiteiten\": \"materialiteit\",\n  \"materials\": \"material\",\n  \"materie\": \"materie\",\n  \"materieel\": \"materieel\",\n  \"materiële\": \"materiel\",\n  \"matha\": \"matha\",\n  \"matheid\": \"matheid\",\n  \"mathematische\": \"mathematisch\",\n  \"mathey\": \"mathey\",\n  \"mathilde\": \"mathild\",\n  \"mathildes\": \"mathildes\",\n  \"matig\": \"matig\",\n  \"matige\": \"matig\",\n  \"matigen\": \"matig\",\n  \"matigheid\": \"matig\",\n  \"matje\": \"matj\",\n  \"matjes\": \"matjes\",\n  \"matraskern\": \"matraskern\",\n  \"matrassen\": \"matrass\",\n  \"matrijs\": \"matrijs\",\n  \"matrix\": \"matrix\",\n  \"matroos\": \"matros\",\n  \"matrozen\": \"matroz\",\n  \"matser\": \"matser\",\n  \"matsuffe\": \"matsuff\",\n  \"matte\": \"mat\",\n  \"matten\": \"mat\",\n  \"matter\": \"matter\",\n  \"matthey\": \"matthey\",\n  \"matto\": \"matto\",\n  \"mau\": \"mau\",\n  \"maui\": \"maui\",\n  \"mauretaans\": \"mauretan\",\n  \"mauretanië\": \"mauretanie\",\n  \"maurits\": \"maurit\",\n  \"max\": \"max\",\n  \"maximaal\": \"maximal\",\n  \"maximale\": \"maximal\",\n  \"maximalisatie\": \"maximalisatie\",\n  \"maximaliseren\": \"maximaliser\",\n  \"maximeren\": \"maximer\",\n  \"maximum\": \"maximum\",\n  \"maximumgrens\": \"maximumgren\",\n  \"maximumsnelheden\": \"maximumsnel\",\n  \"maximumsnelheid\": \"maximumsnel\",\n  \"mayen\": \"may\",\n  \"mayr\": \"mayr\",\n  \"mazda\": \"mazda\",\n  \"mbb\": \"mbb\",\n  \"mbi\": \"mbi\",\n  \"mboca\": \"mboca\",\n  \"mbr\": \"mbr\",\n  \"mbt\": \"mbt\",\n  \"mc\": \"mc\",\n  \"mcclelland\": \"mcclelland\",\n  \"mcdade\": \"mcdad\",\n  \"mcdonalds\": \"mcdonald\",\n  \"mcewan\": \"mcewan\",\n  \"mcfc\": \"mcfc\",\n  \"mchenry\": \"mchenry\",\n  \"mckee\": \"mckee\",\n  \"mckinnon\": \"mckinnon\",\n  \"mcpa\": \"mcpa\",\n  \"mctaggert\": \"mctaggert\",\n  \"md\": \"md\",\n  \"mdi\": \"mdi\",\n  \"mdw\": \"mdw\",\n  \"me\": \"me\",\n  \"mec\": \"mec\",\n  \"mecc\": \"mecc\",\n  \"mechanical\": \"mechanical\",\n  \"mechanisch\": \"mechanisch\",\n  \"mechanische\": \"mechanisch\",\n  \"mechanisme\": \"mechanism\",\n  \"mechanisms\": \"mechanism\",\n  \"mechatronica\": \"mechatronica\",\n  \"mecklenburg\": \"mecklenburg\",\n  \"med\": \"med\",\n  \"mede\": \"med\",\n  \"medearbeiders\": \"medearbeider\",\n  \"medeburgers\": \"medeburger\",\n  \"mededeelde\": \"mededeeld\",\n  \"mededeelzaam\": \"mededeelzam\",\n  \"mededeelzaamheid\": \"mededeelzam\",\n  \"mededeelzaams\": \"mededeelzam\",\n  \"mededelen\": \"mededel\",\n  \"mededeling\": \"mededel\",\n  \"mededelingen\": \"mededel\",\n  \"mededingingsaspecten\": \"mededingingsaspect\",\n  \"medefinanciering\": \"medefinancier\",\n  \"medegedeeld\": \"medegedeeld\",\n  \"medegevoel\": \"medegevoel\",\n  \"medegevoeld\": \"medegevoeld\",\n  \"medeleed\": \"medeled\",\n  \"medelij\": \"medelij\",\n  \"medelijden\": \"medelijd\",\n  \"medelijdend\": \"medelijd\",\n  \"medemblik\": \"medemblik\",\n  \"medeplichtig\": \"medeplicht\",\n  \"medesleping\": \"medeslep\",\n  \"medesmart\": \"medesmart\",\n  \"medespelers\": \"medespeler\",\n  \"medestanders\": \"medestander\",\n  \"medeverantwoordelijk\": \"medeverantwoord\",\n  \"medewerker\": \"medewerker\",\n  \"medewerkers\": \"medewerker\",\n  \"medewerking\": \"medewerk\",\n  \"medewerkster\": \"medewerkster\",\n  \"medeweten\": \"medewet\",\n  \"media\": \"media\",\n  \"mediahype\": \"mediahyp\",\n  \"mediation\": \"mediation\",\n  \"medical\": \"medical\",\n  \"medicamenten\": \"medicament\",\n  \"medici\": \"medici\",\n  \"medicijnen\": \"medicijn\",\n  \"medicijnenvervaardiging\": \"medicijnenvervaard\",\n  \"medicinale\": \"medicinal\",\n  \"medio\": \"medio\",\n  \"medisch\": \"medisch\",\n  \"medische\": \"medisch\",\n  \"meditatie\": \"meditatie\",\n  \"mediterrane\": \"mediterran\",\n  \"medium\": \"medium\",\n  \"medvedev\": \"medvedev\",\n  \"mee\": \"mee\",\n  \"mée\": \"mee\",\n  \"mèe\": \"mèe\",\n  \"meé\": \"mee\",\n  \"meebetalen\": \"meebetal\",\n  \"meebouwen\": \"meebouw\",\n  \"meebracht\": \"meebracht\",\n  \"meebrengen\": \"meebreng\",\n  \"meebrengt\": \"meebrengt\",\n  \"meededen\": \"meeded\",\n  \"meedeed\": \"meeded\",\n  \"meedeelde\": \"meedeeld\",\n  \"meedeelt\": \"meedeelt\",\n  \"meedeinden\": \"meedeind\",\n  \"meedeinende\": \"meedein\",\n  \"meedeint\": \"meedeint\",\n  \"meedenken\": \"meedenk\",\n  \"meedineerde\": \"meedineerd\",\n  \"meedingen\": \"meeding\",\n  \"meedoen\": \"meedoen\",\n  \"meedoet\": \"meedoet\",\n  \"meedraaiden\": \"meedraaid\",\n  \"meedroomden\": \"meedroomd\",\n  \"meegaan\": \"meegan\",\n  \"meegaandheid\": \"meegaand\",\n  \"meegaat\": \"meegat\",\n  \"meegebracht\": \"meegebracht\",\n  \"meegedaan\": \"meegedan\",\n  \"meegedeeld\": \"meegedeeld\",\n  \"meegedongen\": \"meegedong\",\n  \"meegeëxtrudeerd\": \"meegeextrudeerd\",\n  \"meegegaan\": \"meegegan\",\n  \"meegegeven\": \"meegegev\",\n  \"meegegroeid\": \"meegegroeid\",\n  \"meegeholpen\": \"meegeholp\",\n  \"meegekregen\": \"meegekreg\",\n  \"meegeleverd\": \"meegeleverd\",\n  \"meegelopen\": \"meegelop\",\n  \"meegenomen\": \"meegenom\",\n  \"meegerekend\": \"meegerek\",\n  \"meegestookt\": \"meegestookt\",\n  \"meegestuurd\": \"meegestuurd\",\n  \"meegeteld\": \"meegeteld\",\n  \"meegetrokken\": \"meegetrok\",\n  \"meegeven\": \"meegev\",\n  \"meegevoerd\": \"meegevoerd\",\n  \"meegeweefd\": \"meegeweefd\",\n  \"meegewerkt\": \"meegewerkt\",\n  \"meegewogen\": \"meegewog\",\n  \"meeging\": \"meeging\",\n  \"meel\": \"mel\",\n  \"meeldauw\": \"meeldauw\",\n  \"meeleefde\": \"meeleefd\",\n  \"meelijden\": \"meelijd\",\n  \"meelijdend\": \"meelijd\",\n  \"meelijdende\": \"meelijd\",\n  \"meemaken\": \"meemak\",\n  \"meen\": \"men\",\n  \"meenam\": \"meenam\",\n  \"meenamen\": \"meenam\",\n  \"meende\": \"meend\",\n  \"meenden\": \"meend\",\n  \"meenemen\": \"meenem\",\n  \"meent\": \"meent\",\n  \"meepraten\": \"meeprat\",\n  \"meeprofiteren\": \"meeprofiter\",\n  \"meer\": \"mer\",\n  \"méér\": \"mer\",\n  \"meerder\": \"meerder\",\n  \"meerdere\": \"meerder\",\n  \"meerderheid\": \"meerder\",\n  \"meerderheidbelang\": \"meerderheidbelang\",\n  \"meerderheidsbelang\": \"meerderheidsbelang\",\n  \"meerderheidsparticipatie\": \"meerderheidsparticipatie\",\n  \"meerekenen\": \"meereken\",\n  \"meerekening\": \"meereken\",\n  \"meerekent\": \"meerekent\",\n  \"meergezinswoningen\": \"meergezinswon\",\n  \"meerhoven\": \"meerhov\",\n  \"meerjaren\": \"meerjar\",\n  \"meerjarenafpraak\": \"meerjarenafprak\",\n  \"meerjarenafspraak\": \"meerjarenafsprak\",\n  \"meerjarenafspraken\": \"meerjarenafsprak\",\n  \"meerjarenplan\": \"meerjarenplan\",\n  \"meerjarenplanning\": \"meerjarenplann\",\n  \"meerjarenprogramma\": \"meerjarenprogramma\",\n  \"meerjarig\": \"meerjar\",\n  \"meerjarige\": \"meerjar\",\n  \"meerkosten\": \"meerkost\",\n  \"meerlandengemeenten\": \"meerlandengemeent\",\n  \"meermalen\": \"meermal\",\n  \"meermalige\": \"meermal\",\n  \"meern\": \"meern\",\n  \"meeroken\": \"meerok\",\n  \"meeropbrengsten\": \"meeropbrengst\",\n  \"meerpaal\": \"meerpal\",\n  \"meerprijs\": \"meerprijs\",\n  \"meerssen\": \"meerss\",\n  \"meertalig\": \"meertal\",\n  \"meertalige\": \"meertal\",\n  \"meertje\": \"meertj\",\n  \"meertraps\": \"meertrap\",\n  \"meervoudig\": \"meervoud\",\n  \"meervoudige\": \"meervoud\",\n  \"meerwaarde\": \"meerwaard\",\n  \"meesleepte\": \"meesleept\",\n  \"meesleepten\": \"meesleept\",\n  \"meeslepen\": \"meeslep\",\n  \"meesleping\": \"meeslep\",\n  \"meespeelden\": \"meespeeld\",\n  \"meespeelt\": \"meespeelt\",\n  \"meespreken\": \"meesprek\",\n  \"meest\": \"meest\",\n  \"meestal\": \"meestal\",\n  \"meeste\": \"meest\",\n  \"meesten\": \"meest\",\n  \"meester\": \"meester\",\n  \"meesteres\": \"meesteres\",\n  \"meesuffen\": \"meesuff\",\n  \"meet\": \"met\",\n  \"meetapparatuur\": \"meetapparatur\",\n  \"meetbaar\": \"meetbar\",\n  \"meetbare\": \"meetbar\",\n  \"meetcampagne\": \"meetcampagn\",\n  \"meetcampagnes\": \"meetcampagnes\",\n  \"meetelde\": \"meeteld\",\n  \"meetelectrode\": \"meetelectrod\",\n  \"meetfout\": \"meetfout\",\n  \"meetgegevens\": \"meetgegeven\",\n  \"meeting\": \"meeting\",\n  \"meetinstrumenten\": \"meetinstrument\",\n  \"meetkamer\": \"meetkamer\",\n  \"meetkundige\": \"meetkund\",\n  \"meetlocaties\": \"meetlocaties\",\n  \"meetlokaties\": \"meetlokaties\",\n  \"meetmethode\": \"meetmethod\",\n  \"meetmethoden\": \"meetmethod\",\n  \"meetnet\": \"meetnet\",\n  \"meetnetten\": \"meetnet\",\n  \"meetnormen\": \"meetnorm\",\n  \"meetplaatsen\": \"meetplaats\",\n  \"meetpunt\": \"meetpunt\",\n  \"meetpunten\": \"meetpunt\",\n  \"meetrappen\": \"meetrapp\",\n  \"meetresultaten\": \"meetresultat\",\n  \"meetsondes\": \"meetsondes\",\n  \"meetstations\": \"meetstation\",\n  \"meetstrategie\": \"meetstrategie\",\n  \"meetsysteem\": \"meetsystem\",\n  \"meetsystemen\": \"meetsystem\",\n  \"meette\": \"met\",\n  \"meetwaarden\": \"meetwaard\",\n  \"meetwagen\": \"meetwag\",\n  \"meeuwen\": \"meeuw\",\n  \"meevallen\": \"meevall\",\n  \"meevoelt\": \"meevoelt\",\n  \"meevoerde\": \"meevoerd\",\n  \"meevoeren\": \"meevoer\",\n  \"meevoering\": \"meevoer\",\n  \"meewarig\": \"meewar\",\n  \"meewarige\": \"meewar\",\n  \"meewarigheid\": \"meewar\",\n  \"meeweegt\": \"meeweegt\",\n  \"meewegen\": \"meeweg\",\n  \"meewerken\": \"meewerk\",\n  \"meewerkt\": \"meewerkt\",\n  \"mega\": \"mega\",\n  \"megapower\": \"megapower\",\n  \"megaprojecten\": \"megaproject\",\n  \"megastad\": \"megastad\",\n  \"megaton\": \"megaton\",\n  \"megawatt\": \"megawatt\",\n  \"megawatts\": \"megawatt\",\n  \"megawattuur\": \"megawattur\",\n  \"mehrwertsteuer\": \"mehrwertsteuer\",\n  \"mei\": \"mei\",\n  \"meid\": \"meid\",\n  \"meide\": \"meid\",\n  \"meiden\": \"meid\",\n  \"meidenhistorie\": \"meidenhistorie\",\n  \"meidenkamers\": \"meidenkamer\",\n  \"meidoorn\": \"meidoorn\",\n  \"meijden\": \"meijd\",\n  \"meijer\": \"meijer\",\n  \"meijling\": \"meijling\",\n  \"meinhof\": \"meinhof\",\n  \"meisje\": \"meisj\",\n  \"meisjes\": \"meisjes\",\n  \"meisjesachtig\": \"meisjesacht\",\n  \"meisjesachtige\": \"meisjesacht\",\n  \"meisjesdromen\": \"meisjesdrom\",\n  \"meisjeshoofd\": \"meisjeshoofd\",\n  \"meisjesjaren\": \"meisjesjar\",\n  \"meisjesleven\": \"meisjeslev\",\n  \"meisjeslichaam\": \"meisjeslicham\",\n  \"meisjesstem\": \"meisjesstem\",\n  \"meisjeszenuwen\": \"meisjeszenuw\",\n  \"meisjesziel\": \"meisjesziel\",\n  \"mejeri\": \"mejeri\",\n  \"mekong\": \"mekong\",\n  \"mekwademo\": \"mekwademo\",\n  \"melancholie\": \"melancholie\",\n  \"melancholieën\": \"melancholieen\",\n  \"melancholiek\": \"melancholiek\",\n  \"melancholieke\": \"melancholiek\",\n  \"melancholische\": \"melancholisch\",\n  \"melanoom\": \"melanom\",\n  \"meld\": \"meld\",\n  \"meldde\": \"meld\",\n  \"meldden\": \"meld\",\n  \"melden\": \"meld\",\n  \"meldende\": \"meldend\",\n  \"melding\": \"melding\",\n  \"meldingen\": \"melding\",\n  \"meldingenformulier\": \"meldingenformulier\",\n  \"meldings\": \"melding\",\n  \"meldingsformulier\": \"meldingsformulier\",\n  \"meldingsplicht\": \"meldingsplicht\",\n  \"meldkamer\": \"meldkamer\",\n  \"meldpunt\": \"meldpunt\",\n  \"meldpunten\": \"meldpunt\",\n  \"meldt\": \"meldt\",\n  \"melitopol\": \"melitopol\",\n  \"melitta\": \"melitta\",\n  \"melk\": \"melk\",\n  \"melkconsumptie\": \"melkconsumptie\",\n  \"melkert\": \"melkert\",\n  \"melkertbanen\": \"melkertban\",\n  \"melkfles\": \"melkfles\",\n  \"melkgezichtje\": \"melkgezichtj\",\n  \"melkinstallatie\": \"melkinstallatie\",\n  \"melkinstallaties\": \"melkinstallaties\",\n  \"melkkoe\": \"melkkoe\",\n  \"melkkoeien\": \"melkkoei\",\n  \"melkniveau\": \"melkniveau\",\n  \"melkoe\": \"melkoe\",\n  \"melkpoederfabriek\": \"melkpoederfabriek\",\n  \"melkpoeders\": \"melkpoeder\",\n  \"melkprijs\": \"melkprijs\",\n  \"melkproduktie\": \"melkproduktie\",\n  \"melkquotering\": \"melkquoter\",\n  \"melkquotum\": \"melkquotum\",\n  \"melkrundveehouderijen\": \"melkrundveehouderij\",\n  \"melkspoelwater\": \"melkspoelwater\",\n  \"melkstimulerend\": \"melkstimuler\",\n  \"melktank\": \"melktank\",\n  \"melkunie\": \"melkunie\",\n  \"melkvee\": \"melkvee\",\n  \"melkveebedrijven\": \"melkveebedrijv\",\n  \"melkveeboeren\": \"melkveeboer\",\n  \"melkveehouder\": \"melkveehouder\",\n  \"melkveehouderij\": \"melkveehouderij\",\n  \"melkveehouderijbedrijven\": \"melkveehouderijbedrijv\",\n  \"melkveehouders\": \"melkveehouder\",\n  \"melkverpakkingen\": \"melkverpak\",\n  \"melkzuren\": \"melkzur\",\n  \"melkzuur\": \"melkzur\",\n  \"melle\": \"mell\",\n  \"melnik\": \"melnik\",\n  \"melodieën\": \"melodieen\",\n  \"meltdown\": \"meltdown\",\n  \"membraan\": \"membran\",\n  \"membraanfilter\": \"membraanfilter\",\n  \"membraanfiltratie\": \"membraanfiltratie\",\n  \"membraankeuze\": \"membraankeuz\",\n  \"membraanmodule\": \"membraanmodul\",\n  \"membraanmodulen\": \"membraanmodul\",\n  \"membraanprestaties\": \"membraanprestaties\",\n  \"membraanscheiding\": \"membraanscheid\",\n  \"membraansysteem\": \"membraansystem\",\n  \"membraansystemen\": \"membraansystem\",\n  \"membraantechnologie\": \"membraantechnologie\",\n  \"membraanvervuiling\": \"membraanvervuil\",\n  \"membrane\": \"membran\",\n  \"membranen\": \"membran\",\n  \"membrex\": \"membrex\",\n  \"memelancholie\": \"memelancholie\",\n  \"memo\": \"memo\",\n  \"memon\": \"memon\",\n  \"memorandum\": \"memorandum\",\n  \"memorie\": \"memorie\",\n  \"memory\": \"memory\",\n  \"memorycard\": \"memorycard\",\n  \"men\": \"men\",\n  \"menagerie\": \"menagerie\",\n  \"menaldum\": \"menaldum\",\n  \"meneer\": \"mener\",\n  \"menen\": \"men\",\n  \"menende\": \"menend\",\n  \"mengde\": \"mengd\",\n  \"mengelberg\": \"mengelberg\",\n  \"mengelde\": \"mengeld\",\n  \"mengelden\": \"mengeld\",\n  \"mengeling\": \"mengel\",\n  \"mengelt\": \"mengelt\",\n  \"mengen\": \"meng\",\n  \"mengers\": \"menger\",\n  \"menggranulaat\": \"menggranulat\",\n  \"menging\": \"menging\",\n  \"mengkamer\": \"mengkamer\",\n  \"mengkleuren\": \"mengkleur\",\n  \"mengkorrelmix\": \"mengkorrelmix\",\n  \"mengsel\": \"mengsel\",\n  \"mengsels\": \"mengsel\",\n  \"mengseltoxiciteit\": \"mengseltoxiciteit\",\n  \"mengt\": \"mengt\",\n  \"mengverhouding\": \"mengverhoud\",\n  \"mengvijzels\": \"mengvijzel\",\n  \"mengvoederbedrijf\": \"mengvoederbedrijf\",\n  \"mengvoederindustrie\": \"mengvoederindustrie\",\n  \"mengvoeders\": \"mengvoeder\",\n  \"mengvoercoöperatie\": \"mengvoercooperatie\",\n  \"mengvoerindustrie\": \"mengvoerindustrie\",\n  \"menige\": \"menig\",\n  \"menigte\": \"menigt\",\n  \"mening\": \"mening\",\n  \"meningen\": \"mening\",\n  \"meningsverschil\": \"meningsverschil\",\n  \"meningsverschillen\": \"meningsverschill\",\n  \"meningsvorming\": \"meningsvorm\",\n  \"menken\": \"menk\",\n  \"menlo\": \"menlo\",\n  \"mennen\": \"menn\",\n  \"mens\": \"men\",\n  \"mensehanden\": \"mensehand\",\n  \"menselijk\": \"menselijk\",\n  \"menselijke\": \"menselijk\",\n  \"menselijkgheid\": \"menselijkg\",\n  \"menselijkheden\": \"menselijk\",\n  \"menselijkheid\": \"menselijk\",\n  \"menselijkste\": \"menselijkst\",\n  \"mensen\": \"mens\",\n  \"mènsen\": \"mèns\",\n  \"mensenhaar\": \"mensenhar\",\n  \"mensenkennis\": \"mensenkennis\",\n  \"mensenleven\": \"mensenlev\",\n  \"mensenlevens\": \"mensenleven\",\n  \"mensenrechten\": \"mensenrecht\",\n  \"mensenrechtenactivist\": \"mensenrechtenactivist\",\n  \"mensenrechtenbeleid\": \"mensenrechtenbeleid\",\n  \"mensenrechtenbeweging\": \"mensenrechtenbeweg\",\n  \"mensenrechtencommissie\": \"mensenrechtencommissie\",\n  \"mensenschuw\": \"mensenschuw\",\n  \"mensenschuwte\": \"mensenschuwt\",\n  \"mensenzielen\": \"mensenziel\",\n  \"mensheden\": \"mensheid\",\n  \"mensheid\": \"mensheid\",\n  \"mensjes\": \"mensjes\",\n  \"menskracht\": \"menskracht\",\n  \"mensloze\": \"mensloz\",\n  \"mentale\": \"mental\",\n  \"mentaliteit\": \"mentaliteit\",\n  \"mentaliteitsverandering\": \"mentaliteitsverander\",\n  \"mentaliteitveranderingen\": \"mentaliteitverander\",\n  \"menting\": \"menting\",\n  \"menu\": \"menu\",\n  \"menugestuurd\": \"menugestuurd\",\n  \"mep\": \"mep\",\n  \"meppel\": \"meppel\",\n  \"mer\": \"mer\",\n  \"mercedes\": \"mercedes\",\n  \"merci\": \"merci\",\n  \"mercier\": \"mercier\",\n  \"merck\": \"merck\",\n  \"mercure\": \"mercur\",\n  \"mercurius\": \"mercurius\",\n  \"meren\": \"mer\",\n  \"merendeel\": \"merendel\",\n  \"merg\": \"merg\",\n  \"mergelland\": \"mergelland\",\n  \"merieux\": \"merieux\",\n  \"merit\": \"merit\",\n  \"merites\": \"merites\",\n  \"merk\": \"merk\",\n  \"merkbaar\": \"merkbar\",\n  \"merkbare\": \"merkbar\",\n  \"merkel\": \"merkel\",\n  \"merken\": \"merk\",\n  \"merkende\": \"merkend\",\n  \"merknaam\": \"merknam\",\n  \"merksignalen\": \"merksignal\",\n  \"merkt\": \"merkt\",\n  \"merkte\": \"merkt\",\n  \"merkteken\": \"merktek\",\n  \"merkten\": \"merkt\",\n  \"merkwaardige\": \"merkwaard\",\n  \"merwede\": \"merwed\",\n  \"merwedijk\": \"merwedijk\",\n  \"mes\": \"mes\",\n  \"mesheften\": \"mesheft\",\n  \"meso\": \"meso\",\n  \"mesolongi\": \"mesolongi\",\n  \"messe\": \"mes\",\n  \"messen\": \"mess\",\n  \"messensysteem\": \"messensystem\",\n  \"messpress\": \"messpres\",\n  \"mest\": \"mest\",\n  \"mestaangifte\": \"mestaangift\",\n  \"mestaangifteformulieren\": \"mestaangifteformulier\",\n  \"mestactie\": \"mestactie\",\n  \"mestactieplan\": \"mestactieplan\",\n  \"mestacties\": \"mestacties\",\n  \"mestadministratie\": \"mestadministratie\",\n  \"mestafleveringsbewijzen\": \"mestafleveringsbewijz\",\n  \"mestafleveringsestafette\": \"mestafleveringsestafet\",\n  \"mestafvoer\": \"mestafvoer\",\n  \"mestafzet\": \"mestafzet\",\n  \"mestafzetcontract\": \"mestafzetcontract\",\n  \"mestafzetcontracten\": \"mestafzetcontract\",\n  \"mestakkoord\": \"mestakkoord\",\n  \"mestbandbatterijen\": \"mestbandbatterij\",\n  \"mestbank\": \"mestbank\",\n  \"mestbanken\": \"mestbank\",\n  \"mestbassins\": \"mestbassin\",\n  \"mestbeleid\": \"mestbeleid\",\n  \"mestbewerking\": \"mestbewerk\",\n  \"mestbewerkingstechniek\": \"mestbewerkingstechniek\",\n  \"mestboekhouding\": \"mestboekhoud\",\n  \"mestboekhuding\": \"mestboekhud\",\n  \"mestbon\": \"mestbon\",\n  \"mestbonnen\": \"mestbonn\",\n  \"mestbonnenboycot\": \"mestbonnenboycot\",\n  \"mestboycot\": \"mestboycot\",\n  \"mestbureau\": \"mestbureau\",\n  \"mestdebat\": \"mestdebat\",\n  \"mestdecreet\": \"mestdecret\",\n  \"mestdistributeurs\": \"mestdistributeur\",\n  \"mestdossiers\": \"mestdossier\",\n  \"mestdroging\": \"mestdrog\",\n  \"mesterijen\": \"mesterij\",\n  \"mestexporterende\": \"mestexporter\",\n  \"mestfabriek\": \"mestfabriek\",\n  \"mestfabrieken\": \"mestfabriek\",\n  \"mestfonds\": \"mestfond\",\n  \"mestfractie\": \"mestfractie\",\n  \"mestgang\": \"mestgang\",\n  \"mestgassen\": \"mestgass\",\n  \"mestgebruik\": \"mestgebruik\",\n  \"mestgift\": \"mestgift\",\n  \"mesthandel\": \"mesthandel\",\n  \"mestheffing\": \"mestheff\",\n  \"mesthoop\": \"mesthop\",\n  \"mesthuishouding\": \"mesthuishoud\",\n  \"mestinjecteur\": \"mestinjecteur\",\n  \"mestinjectoren\": \"mestinjector\",\n  \"mestkappen\": \"mestkapp\",\n  \"mestkorrels\": \"mestkorrel\",\n  \"mestloods\": \"mestlod\",\n  \"mestmaatregelen\": \"mestmaatregel\",\n  \"mestmarkt\": \"mestmarkt\",\n  \"mestmoeras\": \"mestmoeras\",\n  \"mestnadroogsysteem\": \"mestnadroogsystem\",\n  \"mestnorm\": \"mestnorm\",\n  \"mestnormen\": \"mestnorm\",\n  \"mestnotitie\": \"mestnotitie\",\n  \"mestopslag\": \"mestopslag\",\n  \"mestopslagplaats\": \"mestopslagplat\",\n  \"mestorganisaties\": \"mestorganisaties\",\n  \"mestoverleg\": \"mestoverleg\",\n  \"mestoverschot\": \"mestoverschot\",\n  \"mestoverschotgebieden\": \"mestoverschotgebied\",\n  \"mestoverschotten\": \"mestoverschot\",\n  \"mestplan\": \"mestplan\",\n  \"mestplannen\": \"mestplann\",\n  \"mestprobleem\": \"mestproblem\",\n  \"mestproblematiek\": \"mestproblematiek\",\n  \"mestproblemen\": \"mestproblem\",\n  \"mestproduktie\": \"mestproduktie\",\n  \"mestproduktienorm\": \"mestproduktienorm\",\n  \"mestproduktierechten\": \"mestproduktierecht\",\n  \"mestprotest\": \"mestprotest\",\n  \"mestput\": \"mestput\",\n  \"mestquota\": \"mestquota\",\n  \"mestquotum\": \"mestquotum\",\n  \"mestrechten\": \"mestrecht\",\n  \"mestregels\": \"mestregel\",\n  \"mestregistratie\": \"mestregistratie\",\n  \"mestreservoirs\": \"mestreservoir\",\n  \"mestsaneringsfonds\": \"mestsaneringsfond\",\n  \"mestscheider\": \"mestscheider\",\n  \"mestscheiders\": \"mestscheider\",\n  \"mestschuiven\": \"mestschuiv\",\n  \"mestsilo\": \"mestsilo\",\n  \"mestsoorten\": \"mestsoort\",\n  \"mestspecialisten\": \"mestspecialist\",\n  \"meststof\": \"meststof\",\n  \"meststoffen\": \"meststoff\",\n  \"meststoffengebruik\": \"meststoffengebruik\",\n  \"meststoffenwet\": \"meststoffenwet\",\n  \"meststromen\": \"meststrom\",\n  \"mesttransacties\": \"mesttransacties\",\n  \"mesttransport\": \"mesttransport\",\n  \"mestuitrijden\": \"mestuitrijd\",\n  \"mestuitrijvoorwaarden\": \"mestuitrijvoorwaard\",\n  \"mestvarkens\": \"mestvarken\",\n  \"mestverwerker\": \"mestverwerker\",\n  \"mestverwerkers\": \"mestverwerker\",\n  \"mestverwerking\": \"mestverwerk\",\n  \"mestverwerkingsbedrijf\": \"mestverwerkingsbedrijf\",\n  \"mestverwerkingsfabriek\": \"mestverwerkingsfabriek\",\n  \"mestverwerkingsfabrieken\": \"mestverwerkingsfabriek\",\n  \"mestverwerkingsinstallatie\": \"mestverwerkingsinstallatie\",\n  \"mestverwerkingskosten\": \"mestverwerkingskost\",\n  \"mestverwerkingsorganisatie\": \"mestverwerkingsorganisatie\",\n  \"mestverwerkingssysteem\": \"mestverwerkingssystem\",\n  \"mestvocht\": \"mestvocht\",\n  \"mestvolume\": \"mestvolum\",\n  \"mestvoorstellen\": \"mestvoorstell\",\n  \"mestvraagstuk\": \"mestvraagstuk\",\n  \"mestvrije\": \"mestvrij\",\n  \"mestwetgeving\": \"mestwetgev\",\n  \"mestwetten\": \"mestwet\",\n  \"met\": \"met\",\n  \"meta\": \"meta\",\n  \"metaal\": \"metal\",\n  \"metaalafval\": \"metaalafval\",\n  \"metaalalkylenfabriek\": \"metaalalkylenfabriek\",\n  \"metaalbedrijven\": \"metaalbedrijv\",\n  \"metaalbewerking\": \"metaalbewerk\",\n  \"metaalbewerkingsbedrijf\": \"metaalbewerkingsbedrijf\",\n  \"metaalbewerkingszuur\": \"metaalbewerkingszur\",\n  \"metaalconstructies\": \"metaalconstructies\",\n  \"metaaldeeltjes\": \"metaaldeeltjes\",\n  \"metaalertsfabrieken\": \"metaalertsfabriek\",\n  \"metaalhoudende\": \"metaalhoud\",\n  \"metaalhydroxide\": \"metaalhydroxid\",\n  \"metaalindustrie\": \"metaalindustrie\",\n  \"metaallegeringen\": \"metaalleger\",\n  \"metaalmengsels\": \"metaalmengsel\",\n  \"metaaloppervlakken\": \"metaaloppervlak\",\n  \"metaaloxidedeeltjes\": \"metaaloxidedeeltjes\",\n  \"metaaloxiden\": \"metaaloxid\",\n  \"metaaloxyde\": \"metaaloxyd\",\n  \"metaaloxyden\": \"metaaloxyd\",\n  \"metaalpoeder\": \"metaalpoeder\",\n  \"metaalproducenten\": \"metaalproducent\",\n  \"metaalsilicaten\": \"metaalsilicat\",\n  \"metaalunie\": \"metaalunie\",\n  \"metaalverwerking\": \"metaalverwerk\",\n  \"metaalzouten\": \"metaalzout\",\n  \"metabolic\": \"metabolic\",\n  \"metaboliet\": \"metaboliet\",\n  \"metabolieten\": \"metaboliet\",\n  \"metabouw\": \"metabouw\",\n  \"metacrylzuur\": \"metacrylzur\",\n  \"metal\": \"metal\",\n  \"metalchem\": \"metalchem\",\n  \"metalektro\": \"metalektro\",\n  \"metalen\": \"metal\",\n  \"metalenemissies\": \"metalenemissies\",\n  \"metálicos\": \"metalicos\",\n  \"metallichesky\": \"metallichesky\",\n  \"metalloceen\": \"metallocen\",\n  \"metalloceenkatalysator\": \"metalloceenkatalysator\",\n  \"metallurgische\": \"metallurgisch\",\n  \"metam\": \"metam\",\n  \"metamorfose\": \"metamorfos\",\n  \"metawa\": \"metawa\",\n  \"meteen\": \"meten\",\n  \"meten\": \"met\",\n  \"metende\": \"metend\",\n  \"meteon\": \"meteon\",\n  \"meteoor\": \"meteoor\",\n  \"meteoriet\": \"meteoriet\",\n  \"meteorologen\": \"meteorolog\",\n  \"meteorological\": \"meteorological\",\n  \"meteorologie\": \"meteorologie\",\n  \"meteorologische\": \"meteorologisch\",\n  \"meter\": \"meter\",\n  \"meters\": \"meter\",\n  \"meterslange\": \"meterslang\",\n  \"methaan\": \"methan\",\n  \"methaangas\": \"methaangas\",\n  \"methaangisting\": \"methaangist\",\n  \"methaanopbrengst\": \"methaanopbrengst\",\n  \"methanol\": \"methanol\",\n  \"methode\": \"method\",\n  \"methoden\": \"method\",\n  \"methodes\": \"methodes\",\n  \"methodiek\": \"methodiek\",\n  \"methodisch\": \"methodisch\",\n  \"methodische\": \"methodisch\",\n  \"methodologie\": \"methodologie\",\n  \"methoxy\": \"methoxy\",\n  \"methyl\": \"methyl\",\n  \"methylbromide\": \"methylbromid\",\n  \"methylchloroform\": \"methylchloroform\",\n  \"methylcyclopentadienyl\": \"methylcyclopentadienyl\",\n  \"methylcyclopentadiënylmangaan\": \"methylcyclopentadienylmangan\",\n  \"methyldiethanolamine\": \"methyldiethanolamin\",\n  \"methyleenchloride\": \"methyleenchlorid\",\n  \"methylethylamine\": \"methylethylamin\",\n  \"methylmetacrylaat\": \"methylmetacrylat\",\n  \"meting\": \"meting\",\n  \"metingen\": \"meting\",\n  \"metrex\": \"metrex\",\n  \"metro\": \"metro\",\n  \"metrolijn\": \"metrolijn\",\n  \"metrologie\": \"metrologie\",\n  \"metropolen\": \"metropol\",\n  \"metropool\": \"metropol\",\n  \"metrostation\": \"metrostation\",\n  \"metrosysteem\": \"metrosystem\",\n  \"metroverbinding\": \"metroverbind\",\n  \"metsel\": \"metsel\",\n  \"metselzand\": \"metselzand\",\n  \"mettertijd\": \"mettertijd\",\n  \"meubel\": \"meubel\",\n  \"meubelen\": \"meubel\",\n  \"meubels\": \"meubel\",\n  \"meubeltjes\": \"meubeltjes\",\n  \"meubilair\": \"meubilair\",\n  \"meubileerde\": \"meubileerd\",\n  \"meubileren\": \"meubiler\",\n  \"meulemans\": \"meuleman\",\n  \"meulen\": \"meul\",\n  \"meulenberg\": \"meulenberg\",\n  \"meulendijks\": \"meulendijk\",\n  \"meulenmeester\": \"meulenmeester\",\n  \"meuwissen\": \"meuwiss\",\n  \"mevr\": \"mevr\",\n  \"mevrouw\": \"mevrouw\",\n  \"mewa\": \"mewa\",\n  \"mexicaanse\": \"mexican\",\n  \"mexico\": \"mexico\",\n  \"meyburg\": \"meyburg\",\n  \"mezelf\": \"mezelf\",\n  \"mfh\": \"mfh\",\n  \"mg\": \"mg\",\n  \"mgas\": \"mgas\",\n  \"mgc\": \"mgc\",\n  \"mgso\": \"mgso\",\n  \"mhp\": \"mhp\",\n  \"mhz\": \"mhz\",\n  \"mi\": \"mi\",\n  \"miami\": \"miami\",\n  \"miar\": \"miar\",\n  \"miasmas\": \"miasmas\",\n  \"mica\": \"mica\",\n  \"michael\": \"michael\",\n  \"michigan\": \"michigan\",\n  \"micon\": \"micon\",\n  \"micro\": \"micro\",\n  \"microben\": \"microb\",\n  \"microbiële\": \"microbiel\",\n  \"microbiologie\": \"microbiologie\",\n  \"microbiologisch\": \"microbiologisch\",\n  \"microbiologische\": \"microbiologisch\",\n  \"microbische\": \"microbisch\",\n  \"microdrainage\": \"microdrainag\",\n  \"microfiltratie\": \"microfiltratie\",\n  \"microfoons\": \"microfon\",\n  \"microgram\": \"microgram\",\n  \"micrometer\": \"micrometer\",\n  \"microniseren\": \"microniser\",\n  \"microniveau\": \"microniveau\",\n  \"microorganismen\": \"microorganism\",\n  \"microprocessor\": \"microprocessor\",\n  \"microprocessoren\": \"microprocessor\",\n  \"microprocessortechniek\": \"microprocessortechniek\",\n  \"microscopisch\": \"microscopisch\",\n  \"microscopische\": \"microscopisch\",\n  \"microsievert\": \"microsievert\",\n  \"microsilica\": \"microsilica\",\n  \"microverontreiniging\": \"microverontrein\",\n  \"microverontreinigingen\": \"microverontrein\",\n  \"microwatt\": \"microwatt\",\n  \"middachten\": \"middacht\",\n  \"middag\": \"middag\",\n  \"middagen\": \"middag\",\n  \"middagh\": \"middagh\",\n  \"middagmaal\": \"middagmal\",\n  \"middagrit\": \"middagrit\",\n  \"middagrust\": \"middagrust\",\n  \"middags\": \"middag\",\n  \"middagtafel\": \"middagtafel\",\n  \"middaguren\": \"middagur\",\n  \"middel\": \"middel\",\n  \"middelbaar\": \"middel\",\n  \"middelburgse\": \"middelburg\",\n  \"middeldrukgedeelte\": \"middeldrukgedeelt\",\n  \"middeleeuwse\": \"middeleeuw\",\n  \"middelen\": \"middel\",\n  \"middelgebergte\": \"middelgebergt\",\n  \"middelgrote\": \"middelgrot\",\n  \"middelhoge\": \"middelhog\",\n  \"middeling\": \"middel\",\n  \"middelkoop\": \"middelkop\",\n  \"middellandse\": \"middelland\",\n  \"middellange\": \"middellang\",\n  \"middelmatig\": \"middelmat\",\n  \"middelpunt\": \"middelpunt\",\n  \"middels\": \"middel\",\n  \"middelspanningsinstallaties\": \"middelspanningsinstallaties\",\n  \"middelspanningsnet\": \"middelspanningsnet\",\n  \"middelvoorschriften\": \"middelvoorschrift\",\n  \"middelzware\": \"middelzwar\",\n  \"midden\": \"mid\",\n  \"middengebied\": \"middengebied\",\n  \"middenkader\": \"middenkader\",\n  \"middenlimburgse\": \"middenlimburg\",\n  \"middenmeer\": \"middenmer\",\n  \"middenoosten\": \"middenoost\",\n  \"middenpunt\": \"middenpunt\",\n  \"middenspanningsstations\": \"middenspanningsstation\",\n  \"middenstanders\": \"middenstander\",\n  \"middenweg\": \"middenweg\",\n  \"middletown\": \"middletown\",\n  \"midland\": \"midland\",\n  \"midoost\": \"midoost\",\n  \"midreth\": \"midreth\",\n  \"mie\": \"mie\",\n  \"mieke\": \"miek\",\n  \"mierennest\": \"mierennest\",\n  \"mierlo\": \"mierlo\",\n  \"migratie\": \"migratie\",\n  \"migratiebanen\": \"migratieban\",\n  \"migratory\": \"migratory\",\n  \"migrerende\": \"migrer\",\n  \"mii\": \"mii\",\n  \"mij\": \"mij\",\n  \"mijden\": \"mijd\",\n  \"mijdrecht\": \"mijdrecht\",\n  \"mijl\": \"mijl\",\n  \"mijlen\": \"mijl\",\n  \"mijlenlange\": \"mijlenlang\",\n  \"mijllange\": \"mijllang\",\n  \"mijlpaal\": \"mijlpal\",\n  \"mijlpalen\": \"mijlpal\",\n  \"mijlszone\": \"mijlszon\",\n  \"mijmeren\": \"mijmer\",\n  \"mijmeringen\": \"mijmer\",\n  \"mijn\": \"mijn\",\n  \"mijnbouw\": \"mijnbouw\",\n  \"mijnbouwaktiviteiten\": \"mijnbouwaktiviteit\",\n  \"mijnbouwbedrijven\": \"mijnbouwbedrijv\",\n  \"mijnbouwbureau\": \"mijnbouwbureau\",\n  \"mijnbouwkunde\": \"mijnbouwkund\",\n  \"mijnbouwkundige\": \"mijnbouwkund\",\n  \"mijnbouwonderneming\": \"mijnbouwondernem\",\n  \"mijne\": \"mijn\",\n  \"mijnen\": \"mijn\",\n  \"mijnent\": \"mijnent\",\n  \"mijner\": \"mijner\",\n  \"mijnproject\": \"mijnproject\",\n  \"mijnsteenverzet\": \"mijnsteenverzet\",\n  \"mijnstreek\": \"mijnstrek\",\n  \"mijnterreinen\": \"mijnterrein\",\n  \"mijnwerker\": \"mijnwerker\",\n  \"mijzelf\": \"mijzelf\",\n  \"mike\": \"mik\",\n  \"mikpunt\": \"mikpunt\",\n  \"mikpunten\": \"mikpunt\",\n  \"mikt\": \"mikt\",\n  \"mikulski\": \"mikulski\",\n  \"mil\": \"mil\",\n  \"milaan\": \"milan\",\n  \"mild\": \"mild\",\n  \"milestone\": \"mileston\",\n  \"milford\": \"milford\",\n  \"milieu\": \"milieu\",\n  \"milieuactieplan\": \"milieuactieplan\",\n  \"milieuactieplannen\": \"milieuactieplann\",\n  \"milieuactieprogramma\": \"milieuactieprogramma\",\n  \"milieuactivisten\": \"milieuactivist\",\n  \"milieuactiviteiten\": \"milieuactiviteit\",\n  \"milieuadministratieprogramma\": \"milieuadministratieprogramma\",\n  \"milieuadvies\": \"milieuadvies\",\n  \"milieuadviezen\": \"milieuadviez\",\n  \"milieuadvisering\": \"milieuadviser\",\n  \"milieuadviseurs\": \"milieuadviseur\",\n  \"milieuaffaire\": \"milieuaffair\",\n  \"milieuaffaires\": \"milieuaffaires\",\n  \"milieuafspraken\": \"milieuafsprak\",\n  \"milieuambtenaar\": \"milieuambtenar\",\n  \"milieuanalyse\": \"milieuanalys\",\n  \"milieuanalyses\": \"milieuanalyses\",\n  \"milieuaspecten\": \"milieuaspect\",\n  \"milieubaan\": \"milieuban\",\n  \"milieubalans\": \"milieubalan\",\n  \"milieubalansen\": \"milieubalans\",\n  \"milieubanden\": \"milieuband\",\n  \"milieubanen\": \"milieuban\",\n  \"milieubarometer\": \"milieubarometer\",\n  \"milieubaten\": \"milieubat\",\n  \"milieubedrijf\": \"milieubedrijf\",\n  \"milieubedrijfsplan\": \"milieubedrijfsplan\",\n  \"milieubedrijven\": \"milieubedrijv\",\n  \"milieubegrippen\": \"milieubegripp\",\n  \"milieubeheer\": \"milieubeher\",\n  \"milieubeheersysteem\": \"milieubeheersystem\",\n  \"milieubelang\": \"milieubelang\",\n  \"milieubelangen\": \"milieubelang\",\n  \"milieubelastend\": \"milieubelast\",\n  \"milieubelastende\": \"milieubelast\",\n  \"milieubelasting\": \"milieubelast\",\n  \"milieubelastingen\": \"milieubelast\",\n  \"milieubeleid\": \"milieubeleid\",\n  \"milieubeleids\": \"milieubeleid\",\n  \"milieubeleidsindicatoren\": \"milieubeleidsindicator\",\n  \"milieubeleidsovereenkomst\": \"milieubeleidsovereenkomst\",\n  \"milieubeleidsplan\": \"milieubeleidsplan\",\n  \"milieubeleidsplannen\": \"milieubeleidsplann\",\n  \"milieubeleidsprogramma\": \"milieubeleidsprogramma\",\n  \"milieubeleidsverklaring\": \"milieubeleidsverklar\",\n  \"milieubeoordeling\": \"milieubeoordel\",\n  \"milieuberaad\": \"milieuberad\",\n  \"milieubeschaving\": \"milieubeschav\",\n  \"milieubeschermend\": \"milieubescherm\",\n  \"milieubeschermende\": \"milieubescherm\",\n  \"milieubeschermers\": \"milieubeschermer\",\n  \"milieubescherming\": \"milieubescherm\",\n  \"milieubeschermingsbeleid\": \"milieubeschermingsbeleid\",\n  \"milieubeschermingsgebieden\": \"milieubeschermingsgebied\",\n  \"milieubeschermregels\": \"milieubeschermregel\",\n  \"milieubesef\": \"milieubesef\",\n  \"milieubeslaglegging\": \"milieubeslaglegg\",\n  \"milieubesparende\": \"milieubespar\",\n  \"milieubeurs\": \"milieubeur\",\n  \"milieubevrijdingsteam\": \"milieubevrijdingsteam\",\n  \"milieubewaking\": \"milieubewak\",\n  \"milieubeweging\": \"milieubeweg\",\n  \"milieubewegingen\": \"milieubeweg\",\n  \"milieubewust\": \"milieubewust\",\n  \"milieubewuste\": \"milieubewust\",\n  \"milieubewuster\": \"milieubewuster\",\n  \"milieubewustzijn\": \"milieubewustzijn\",\n  \"milieubezwaren\": \"milieubezwar\",\n  \"milieubijstandsteam\": \"milieubijstandsteam\",\n  \"milieubiologie\": \"milieubiologie\",\n  \"milieublad\": \"milieublad\",\n  \"milieubladen\": \"milieublad\",\n  \"milieubouw\": \"milieubouw\",\n  \"milieubureau\": \"milieubureau\",\n  \"milieucentrum\": \"milieucentrum\",\n  \"milieucertificering\": \"milieucertificer\",\n  \"milieuchecklist\": \"milieuchecklist\",\n  \"milieucijfer\": \"milieucijfer\",\n  \"milieuclaims\": \"milieuclaim\",\n  \"milieuclassificatie\": \"milieuclassificatie\",\n  \"milieuclassificaties\": \"milieuclassificaties\",\n  \"milieuclub\": \"milieuclub\",\n  \"milieucode\": \"milieucod\",\n  \"milieucommisaris\": \"milieucommisaris\",\n  \"milieucommissaris\": \"milieucommissaris\",\n  \"milieucommissie\": \"milieucommissie\",\n  \"milieucommunicatie\": \"milieucommunicatie\",\n  \"milieucompartiment\": \"milieucompartiment\",\n  \"milieucondities\": \"milieucondities\",\n  \"milieuconferentie\": \"milieuconferentie\",\n  \"milieucongres\": \"milieucongres\",\n  \"milieucontainer\": \"milieucontainer\",\n  \"milieucontroles\": \"milieucontroles\",\n  \"milieuconvenant\": \"milieuconvenant\",\n  \"milieuconvenanten\": \"milieuconvenant\",\n  \"milieucoöperatie\": \"milieucooperatie\",\n  \"milieucoöperaties\": \"milieucooperaties\",\n  \"milieucoördinator\": \"milieucoordinator\",\n  \"milieucriminaliteit\": \"milieucriminaliteit\",\n  \"milieucrisis\": \"milieucrisis\",\n  \"milieucriteria\": \"milieucriteria\",\n  \"milieucriterium\": \"milieucriterium\",\n  \"milieucursus\": \"milieucursus\",\n  \"milieudebat\": \"milieudebat\",\n  \"milieudefensie\": \"milieudefensie\",\n  \"milieudelict\": \"milieudelict\",\n  \"milieudelicten\": \"milieudelict\",\n  \"milieudepartement\": \"milieudepartement\",\n  \"milieudeskundige\": \"milieudeskund\",\n  \"milieudeskundigen\": \"milieudeskund\",\n  \"milieudialoog\": \"milieudialog\",\n  \"milieudienst\": \"milieudienst\",\n  \"milieudiensten\": \"milieudienst\",\n  \"milieudivisie\": \"milieudivisie\",\n  \"milieudochter\": \"milieudochter\",\n  \"milieudoelen\": \"milieudoel\",\n  \"milieudoelstelling\": \"milieudoelstell\",\n  \"milieudoelstellingen\": \"milieudoelstell\",\n  \"milieudruk\": \"milieudruk\",\n  \"milieueducatie\": \"milieueducatie\",\n  \"milieueffect\": \"milieueffect\",\n  \"milieueffecten\": \"milieueffect\",\n  \"milieueffectrapportage\": \"milieueffectrapportag\",\n  \"milieueffectrapportages\": \"milieueffectrapportages\",\n  \"milieueisen\": \"milieueis\",\n  \"milieufederatie\": \"milieufederatie\",\n  \"milieufederaties\": \"milieufederaties\",\n  \"milieufilosofie\": \"milieufilosofie\",\n  \"milieufilter\": \"milieufilter\",\n  \"milieufonds\": \"milieufond\",\n  \"milieufraude\": \"milieufraud\",\n  \"milieufruit\": \"milieufruit\",\n  \"milieugebied\": \"milieugebied\",\n  \"milieugebruik\": \"milieugebruik\",\n  \"milieugebruiksruimte\": \"milieugebruiksruimt\",\n  \"milieugebruiksvergunningen\": \"milieugebruiksvergunn\",\n  \"milieugedeputeerde\": \"milieugedeputeerd\",\n  \"milieugedrag\": \"milieugedrag\",\n  \"milieugegevens\": \"milieugegeven\",\n  \"milieugelden\": \"milieugeld\",\n  \"milieugericht\": \"milieugericht\",\n  \"milieugerichte\": \"milieugericht\",\n  \"milieugevaarlijke\": \"milieugevar\",\n  \"milieugevoelige\": \"milieugevoel\",\n  \"milieugevolgen\": \"milieugevolg\",\n  \"milieugroente\": \"milieugroent\",\n  \"milieugroep\": \"milieugroep\",\n  \"milieugroepen\": \"milieugroep\",\n  \"milieugroepering\": \"milieugroeper\",\n  \"milieugroeperingen\": \"milieugroeper\",\n  \"milieugrondslag\": \"milieugrondslag\",\n  \"milieuhandhaving\": \"milieuhandhav\",\n  \"milieuhandhavingsoverleg\": \"milieuhandhavingsoverleg\",\n  \"milieuheffing\": \"milieuheff\",\n  \"milieuheffingen\": \"milieuheff\",\n  \"milieuhinder\": \"milieuhinder\",\n  \"milieuhulp\": \"milieuhulp\",\n  \"milieuhygiëne\": \"milieuhygien\",\n  \"milieuhygiënisch\": \"milieuhygienisch\",\n  \"milieuhygienische\": \"milieuhygienisch\",\n  \"milieuhygiënische\": \"milieuhygienisch\",\n  \"milieuinformatiepakket\": \"milieuinformatiepakket\",\n  \"milieuinspectie\": \"milieuinspectie\",\n  \"milieuinspectiedienst\": \"milieuinspectiedienst\",\n  \"milieuinvesteringen\": \"milieuinvester\",\n  \"milieujaarverslag\": \"milieujaarverslag\",\n  \"milieujaarverslagen\": \"milieujaarverslag\",\n  \"milieukampioen\": \"milieukampioen\",\n  \"milieukennis\": \"milieukennis\",\n  \"milieukeur\": \"milieukeur\",\n  \"milieukeurmerk\": \"milieukeurmerk\",\n  \"milieukeurnormen\": \"milieukeurnorm\",\n  \"milieukeurpercelen\": \"milieukeurpercel\",\n  \"milieukeurtelers\": \"milieukeurteler\",\n  \"milieuklachten\": \"milieuklacht\",\n  \"milieuklachtenlijn\": \"milieuklachtenlijn\",\n  \"milieuklassen\": \"milieuklass\",\n  \"milieukosten\": \"milieukost\",\n  \"milieukritiek\": \"milieukritiek\",\n  \"milieukunde\": \"milieukund\",\n  \"milieukundige\": \"milieukund\",\n  \"milieukundigen\": \"milieukund\",\n  \"milieukwaliteit\": \"milieukwaliteit\",\n  \"milieukwaliteitsdoelstellingen\": \"milieukwaliteitsdoelstell\",\n  \"milieukwaliteitsnorm\": \"milieukwaliteitsnorm\",\n  \"milieukwesties\": \"milieukwesties\",\n  \"milieulaboratoria\": \"milieulaboratoria\",\n  \"milieuland\": \"milieuland\",\n  \"milieulast\": \"milieulast\",\n  \"milieulasten\": \"milieulast\",\n  \"milieulease\": \"milieuleas\",\n  \"milieulijst\": \"milieulijst\",\n  \"milieulobby\": \"milieulobby\",\n  \"milieuloket\": \"milieuloket\",\n  \"milieumaat\": \"milieumat\",\n  \"milieumaatregel\": \"milieumaatregel\",\n  \"milieumaatregelen\": \"milieumaatregel\",\n  \"milieumaatschappij\": \"milieumaatschappij\",\n  \"milieumanagement\": \"milieumanagement\",\n  \"milieumarketing\": \"milieumarket\",\n  \"milieumarkt\": \"milieumarkt\",\n  \"milieumarkten\": \"milieumarkt\",\n  \"milieumaten\": \"milieumat\",\n  \"milieumedewerker\": \"milieumedewerker\",\n  \"milieumeetlat\": \"milieumeetlat\",\n  \"milieumeetmethoden\": \"milieumeetmethod\",\n  \"milieumensen\": \"milieumens\",\n  \"milieumetingen\": \"milieumet\",\n  \"milieuminister\": \"milieuminister\",\n  \"milieuministerie\": \"milieuministerie\",\n  \"milieuministers\": \"milieuminister\",\n  \"milieumonitor\": \"milieumonitor\",\n  \"milieunorm\": \"milieunorm\",\n  \"milieunormen\": \"milieunorm\",\n  \"milieuonderzoek\": \"milieuonderzoek\",\n  \"milieuonderzoeksbureau\": \"milieuonderzoeksbureau\",\n  \"milieuonvriendelijk\": \"milieuonvriend\",\n  \"milieuonvriendelijke\": \"milieuonvriend\",\n  \"milieuoogpunt\": \"milieuoogpunt\",\n  \"milieuoordelen\": \"milieuoordel\",\n  \"milieuorganisatie\": \"milieuorganisatie\",\n  \"milieuorganisaties\": \"milieuorganisaties\",\n  \"milieuoverwegingen\": \"milieuoverweg\",\n  \"milieupakket\": \"milieupakket\",\n  \"milieuparagraaf\": \"milieuparagraf\",\n  \"milieupaviljoen\": \"milieupaviljoen\",\n  \"milieuperspectieven\": \"milieuperspectiev\",\n  \"milieuplan\": \"milieuplan\",\n  \"milieuplanbureau\": \"milieuplanbureau\",\n  \"milieuplannen\": \"milieuplann\",\n  \"milieuplatform\": \"milieuplatform\",\n  \"milieuplein\": \"milieuplein\",\n  \"milieupolitie\": \"milieupolitie\",\n  \"milieuprestatie\": \"milieuprestatie\",\n  \"milieuprestaties\": \"milieuprestaties\",\n  \"milieuprijs\": \"milieuprijs\",\n  \"milieuprijsvraag\": \"milieuprijsvrag\",\n  \"milieuprijzen\": \"milieuprijz\",\n  \"milieuprioriteit\": \"milieuprioriteit\",\n  \"milieuprioriteiten\": \"milieuprioriteit\",\n  \"milieuprobleem\": \"milieuproblem\",\n  \"milieuproblematiek\": \"milieuproblematiek\",\n  \"milieuproblemen\": \"milieuproblem\",\n  \"milieuprocedures\": \"milieuprocedures\",\n  \"milieuproces\": \"milieuproces\",\n  \"milieuprodukten\": \"milieuprodukt\",\n  \"milieuproduktiebedrijven\": \"milieuproduktiebedrijv\",\n  \"milieuproduktinformatie\": \"milieuproduktinformatie\",\n  \"milieuprofiel\": \"milieuprofiel\",\n  \"milieuprofielen\": \"milieuprofiel\",\n  \"milieuprofilering\": \"milieuprofiler\",\n  \"milieuprogramma\": \"milieuprogramma\",\n  \"milieuprogrammatuur\": \"milieuprogrammatur\",\n  \"milieuproject\": \"milieuproject\",\n  \"milieuprojecten\": \"milieuproject\",\n  \"milieuraad\": \"milieurad\",\n  \"milieuramp\": \"milieuramp\",\n  \"milieurampen\": \"milieuramp\",\n  \"milieurapport\": \"milieurapport\",\n  \"milieurapportage\": \"milieurapportag\",\n  \"milieurapportages\": \"milieurapportages\",\n  \"milieurapporten\": \"milieurapport\",\n  \"milieurechercheurs\": \"milieurechercheur\",\n  \"milieurecht\": \"milieurecht\",\n  \"milieurechtelijke\": \"milieurecht\",\n  \"milieureclame\": \"milieureclam\",\n  \"milieureclamecode\": \"milieureclamecod\",\n  \"milieuregelgeving\": \"milieuregelgev\",\n  \"milieuregels\": \"milieuregel\",\n  \"milieurelatie\": \"milieurelatie\",\n  \"milieurendement\": \"milieurendement\",\n  \"milieuresultaten\": \"milieuresultat\",\n  \"milieurichtlijnen\": \"milieurichtlijn\",\n  \"milieurisico\": \"milieurisico\",\n  \"milieuruimte\": \"milieuruimt\",\n  \"milieus\": \"milieus\",\n  \"milieusamenwerking\": \"milieusamenwerk\",\n  \"milieusamenwerkingsverband\": \"milieusamenwerkingsverband\",\n  \"milieuschade\": \"milieuschad\",\n  \"milieuschadelijk\": \"milieuschad\",\n  \"milieuschadelijke\": \"milieuschad\",\n  \"milieuschadelijkheid\": \"milieuschad\",\n  \"milieuschandaal\": \"milieuschandal\",\n  \"milieuscore\": \"milieuscor\",\n  \"milieuscores\": \"milieuscores\",\n  \"milieusecretaris\": \"milieusecretaris\",\n  \"milieusector\": \"milieusector\",\n  \"milieuservice\": \"milieuservic\",\n  \"milieusituatie\": \"milieusituatie\",\n  \"milieusocioloog\": \"milieusociolog\",\n  \"milieusoftware\": \"milieusoftwar\",\n  \"milieusparende\": \"milieuspar\",\n  \"milieuspecialist\": \"milieuspecialist\",\n  \"milieuspecificaties\": \"milieuspecificaties\",\n  \"milieustal\": \"milieustal\",\n  \"milieustandaarden\": \"milieustandaard\",\n  \"milieustempel\": \"milieustempel\",\n  \"milieusticker\": \"milieusticker\",\n  \"milieustrafrecht\": \"milieustrafrecht\",\n  \"milieustrafzaken\": \"milieustrafzak\",\n  \"milieustrategie\": \"milieustrategie\",\n  \"milieustrijd\": \"milieustrijd\",\n  \"milieustudie\": \"milieustudie\",\n  \"milieusystemen\": \"milieusystem\",\n  \"milieutaak\": \"milieutak\",\n  \"milieutaakstelling\": \"milieutaakstell\",\n  \"milieutaakstellingen\": \"milieutaakstell\",\n  \"milieutaken\": \"milieutak\",\n  \"milieutarieven\": \"milieutariev\",\n  \"milieutax\": \"milieutax\",\n  \"milieuteam\": \"milieuteam\",\n  \"milieutechniek\": \"milieutechniek\",\n  \"milieutechniekdag\": \"milieutechniekdag\",\n  \"milieutechnieken\": \"milieutechniek\",\n  \"milieutechnisch\": \"milieutechnisch\",\n  \"milieutechnische\": \"milieutechnisch\",\n  \"milieutechnologie\": \"milieutechnologie\",\n  \"milieutechnologiebedrijf\": \"milieutechnologiebedrijf\",\n  \"milieutechnologiebedrijven\": \"milieutechnologiebedrijv\",\n  \"milieutechnologiebeurs\": \"milieutechnologiebeur\",\n  \"milieutechnologiebijeenkomsten\": \"milieutechnologiebijeenkomst\",\n  \"milieutechnologiemarkt\": \"milieutechnologiemarkt\",\n  \"milieutechnologiesector\": \"milieutechnologiesector\",\n  \"milieutechnologievakbeurs\": \"milieutechnologievakbeur\",\n  \"milieutechnologisch\": \"milieutechnologisch\",\n  \"milieutechnologische\": \"milieutechnologisch\",\n  \"milieutechologie\": \"milieutechologie\",\n  \"milieuteksten\": \"milieutekst\",\n  \"milieutelefoon\": \"milieutelefon\",\n  \"milieutermen\": \"milieuterm\",\n  \"milieuterrein\": \"milieuterrein\",\n  \"milieutest\": \"milieutest\",\n  \"milieuthema\": \"milieuthema\",\n  \"milieutoepassingen\": \"milieutoepass\",\n  \"milieutoeslag\": \"milieutoeslag\",\n  \"milieutoets\": \"milieutoet\",\n  \"milieuveilige\": \"milieuveil\",\n  \"milieuverantwoord\": \"milieuverantwoord\",\n  \"milieuverantwoorde\": \"milieuverantwoord\",\n  \"milieuverantwoordelijke\": \"milieuverantwoord\",\n  \"milieuverbetering\": \"milieuverbeter\",\n  \"milieuverbeteringen\": \"milieuverbeter\",\n  \"milieuverbeteringsprojecten\": \"milieuverbeteringsproject\",\n  \"milieuverdiensten\": \"milieuverdienst\",\n  \"milieuvergelijking\": \"milieuvergelijk\",\n  \"milieuvergunning\": \"milieuvergunn\",\n  \"milieuvergunningaanvraag\": \"milieuvergunningaanvrag\",\n  \"milieuvergunningaanvragen\": \"milieuvergunningaanvrag\",\n  \"milieuvergunningen\": \"milieuvergunn\",\n  \"milieuvergunningenbeleid\": \"milieuvergunningenbeleid\",\n  \"milieuvergunningenprocedures\": \"milieuvergunningenprocedures\",\n  \"milieuvergunningsprocedure\": \"milieuvergunningsprocedur\",\n  \"milieuvergunningverlening\": \"milieuvergunningverlen\",\n  \"milieuvericateur\": \"milieuvericateur\",\n  \"milieuverkenning\": \"milieuverkenn\",\n  \"milieuverkenningen\": \"milieuverkenn\",\n  \"milieuverklaring\": \"milieuverklar\",\n  \"milieuverklaringen\": \"milieuverklar\",\n  \"milieuvernietiging\": \"milieuverniet\",\n  \"milieuverontreiniging\": \"milieuverontrein\",\n  \"milieuverordening\": \"milieuverorden\",\n  \"milieuverordeningen\": \"milieuverorden\",\n  \"milieuverpakking\": \"milieuverpak\",\n  \"milieuverpestende\": \"milieuverpest\",\n  \"milieuverplichtingen\": \"milieuverplicht\",\n  \"milieuverslag\": \"milieuverslag\",\n  \"milieuverslagen\": \"milieuverslag\",\n  \"milieuverslaggeving\": \"milieuverslaggev\",\n  \"milieuverslaglegging\": \"milieuverslaglegg\",\n  \"milieuverslagplicht\": \"milieuverslagplicht\",\n  \"milieuverslechtering\": \"milieuverslechter\",\n  \"milieuvervuilend\": \"milieuvervuil\",\n  \"milieuvervuilende\": \"milieuvervuil\",\n  \"milieuvervuiler\": \"milieuvervuiler\",\n  \"milieuvervuilers\": \"milieuvervuiler\",\n  \"milieuvervuiling\": \"milieuvervuil\",\n  \"milieuverzekeringen\": \"milieuverzeker\",\n  \"milieuvoordeel\": \"milieuvoordel\",\n  \"milieuvoordelen\": \"milieuvoordel\",\n  \"milieuvoorkeuren\": \"milieuvoorkeur\",\n  \"milieuvoorkeurslijsten\": \"milieuvoorkeurslijst\",\n  \"milieuvoorlichting\": \"milieuvoorlicht\",\n  \"milieuvoorschriften\": \"milieuvoorschrift\",\n  \"milieuvoorwaarden\": \"milieuvoorwaard\",\n  \"milieuvoorziening\": \"milieuvoorzien\",\n  \"milieuvoorzieningen\": \"milieuvoorzien\",\n  \"milieuvraagstuk\": \"milieuvraagstuk\",\n  \"milieuvraagstukken\": \"milieuvraagstuk\",\n  \"milieuvragen\": \"milieuvrag\",\n  \"milieuvreemde\": \"milieuvreemd\",\n  \"milieuvriendelijk\": \"milieuvriend\",\n  \"milieuvriendelijke\": \"milieuvriend\",\n  \"milieuvriendelijker\": \"milieuvriendelijker\",\n  \"milieuvriendelijkere\": \"milieuvriendelijker\",\n  \"milieuvriendelijkheid\": \"milieuvriend\",\n  \"milieuwaarde\": \"milieuwaard\",\n  \"milieuwaarden\": \"milieuwaard\",\n  \"milieuwet\": \"milieuwet\",\n  \"milieuwetenschappen\": \"milieuwetenschapp\",\n  \"milieuwetgeving\": \"milieuwetgev\",\n  \"milieuwetgevingen\": \"milieuwetgev\",\n  \"milieuwethandhaving\": \"milieuwethandhav\",\n  \"milieuwetten\": \"milieuwet\",\n  \"milieuwijk\": \"milieuwijk\",\n  \"milieuwinst\": \"milieuwinst\",\n  \"milieuwinsten\": \"milieuwinst\",\n  \"milieuwoordvoerder\": \"milieuwoordvoerder\",\n  \"milieuzaken\": \"milieuzak\",\n  \"milieuzonering\": \"milieuzoner\",\n  \"milieuzorg\": \"milieuzorg\",\n  \"milieuzorgadviseurs\": \"milieuzorgadviseur\",\n  \"milieuzorgbeleid\": \"milieuzorgbeleid\",\n  \"milieuzorgcertificaat\": \"milieuzorgcertificat\",\n  \"milieuzorgcertificaten\": \"milieuzorgcertificat\",\n  \"milieuzorgcertificatie\": \"milieuzorgcertificatie\",\n  \"milieuzorgdag\": \"milieuzorgdag\",\n  \"milieuzorgprijs\": \"milieuzorgprijs\",\n  \"milieuzorgsysteem\": \"milieuzorgsystem\",\n  \"milieuzorgsystemen\": \"milieuzorgsystem\",\n  \"milis\": \"milis\",\n  \"militair\": \"militair\",\n  \"militaire\": \"militair\",\n  \"militairen\": \"militair\",\n  \"militante\": \"militant\",\n  \"militarisme\": \"militarism\",\n  \"miljard\": \"miljard\",\n  \"miljarden\": \"miljard\",\n  \"miljoen\": \"miljoen\",\n  \"miljoenen\": \"miljoen\",\n  \"miljoenenclaims\": \"miljoenenclaim\",\n  \"miljoenenschade\": \"miljoenenschad\",\n  \"miljoenensubsidie\": \"miljoenensubsidie\",\n  \"miljoenenverlies\": \"miljoenenverlies\",\n  \"miljúndersógelser\": \"miljundersogelser\",\n  \"milko\": \"milko\",\n  \"miller\": \"miller\",\n  \"millhaven\": \"millhav\",\n  \"milligram\": \"milligram\",\n  \"milligrammen\": \"milligramm\",\n  \"millimeter\": \"millimeter\",\n  \"millingen\": \"milling\",\n  \"millingerwaard\": \"millingerwaard\",\n  \"millioenen\": \"millioen\",\n  \"millon\": \"millon\",\n  \"mills\": \"mill\",\n  \"miloba\": \"miloba\",\n  \"milsbeek\": \"milsbek\",\n  \"milton\": \"milton\",\n  \"miltvuur\": \"miltvur\",\n  \"mima\": \"mima\",\n  \"min\": \"min\",\n  \"mina\": \"mina\",\n  \"minachten\": \"minacht\",\n  \"minachtend\": \"minacht\",\n  \"minachtende\": \"minacht\",\n  \"minachting\": \"minacht\",\n  \"minachtte\": \"minacht\",\n  \"minamata\": \"minamata\",\n  \"minas\": \"minas\",\n  \"minder\": \"minder\",\n  \"mindere\": \"minder\",\n  \"minderen\": \"minder\",\n  \"minderheid\": \"minder\",\n  \"minderheidsbelang\": \"minderheidsbelang\",\n  \"minderkosten\": \"minderkost\",\n  \"minderwaardig\": \"minderwaard\",\n  \"minenergo\": \"minenergo\",\n  \"mineraal\": \"mineral\",\n  \"mineral\": \"mineral\",\n  \"minerale\": \"mineral\",\n  \"mineralen\": \"mineral\",\n  \"mineralenaangifte\": \"mineralenaangift\",\n  \"mineralenaangiften\": \"mineralenaangift\",\n  \"mineralenaangiftesysteem\": \"mineralenaangiftesystem\",\n  \"mineralenaanvoer\": \"mineralenaanvoer\",\n  \"mineralenbalans\": \"mineralenbalan\",\n  \"mineralenbeleid\": \"mineralenbeleid\",\n  \"mineralenboekhouding\": \"mineralenboekhoud\",\n  \"mineralencirkel\": \"mineralencirkel\",\n  \"mineralengebruik\": \"mineralengebruik\",\n  \"mineralengehalten\": \"mineralengehalt\",\n  \"mineralenheffing\": \"mineralenheff\",\n  \"mineralenheffingen\": \"mineralenheff\",\n  \"mineralenmanagement\": \"mineralenmanagement\",\n  \"mineralenmengsel\": \"mineralenmengsel\",\n  \"mineralenoverschot\": \"mineralenoverschot\",\n  \"mineralenoverschotten\": \"mineralenoverschot\",\n  \"mineralenproduktie\": \"mineralenproduktie\",\n  \"mineralenstromen\": \"mineralenstrom\",\n  \"mineralenverlies\": \"mineralenverlies\",\n  \"mineralenverliezen\": \"mineralenverliez\",\n  \"mineralenvermindering\": \"mineralenverminder\",\n  \"mineralisatie\": \"mineralisatie\",\n  \"mineraliseerbaar\": \"mineraliser\",\n  \"mineraliseren\": \"mineraliser\",\n  \"minez\": \"minez\",\n  \"mini\": \"mini\",\n  \"miniaire\": \"miniair\",\n  \"minicontainers\": \"minicontainer\",\n  \"minieme\": \"miniem\",\n  \"minière\": \"minièr\",\n  \"minimaal\": \"minimal\",\n  \"minimale\": \"minimal\",\n  \"minimaliseren\": \"minimaliser\",\n  \"minimalisering\": \"minimaliser\",\n  \"minimum\": \"minimum\",\n  \"minimumafstanden\": \"minimumafstand\",\n  \"minimumcijfers\": \"minimumcijfer\",\n  \"minimumeisen\": \"minimumeis\",\n  \"minimuminleg\": \"minimuminleg\",\n  \"minimumpercentage\": \"minimumpercentag\",\n  \"minimumvergoeding\": \"minimumvergoed\",\n  \"minimumvergoedingen\": \"minimumvergoed\",\n  \"mining\": \"mining\",\n  \"minister\": \"minister\",\n  \"ministerconferentie\": \"ministerconferentie\",\n  \"ministerie\": \"ministerie\",\n  \"ministeriële\": \"ministeriel\",\n  \"ministeries\": \"ministeries\",\n  \"ministerraad\": \"ministerrad\",\n  \"ministers\": \"minister\",\n  \"ministerstraktement\": \"ministerstraktement\",\n  \"ministersvergadering\": \"ministersvergader\",\n  \"minitank\": \"minitank\",\n  \"minke\": \"mink\",\n  \"minnaar\": \"minnar\",\n  \"minnaars\": \"minnar\",\n  \"minnertsga\": \"minnertsga\",\n  \"minnesota\": \"minnesota\",\n  \"minpunten\": \"minpunt\",\n  \"minst\": \"minst\",\n  \"minste\": \"minst\",\n  \"minstens\": \"minsten\",\n  \"minus\": \"minus\",\n  \"minuscule\": \"minuscul\",\n  \"minuten\": \"minut\",\n  \"minutieuze\": \"minutieuz\",\n  \"minuut\": \"minut\",\n  \"minvrom\": \"minvrom\",\n  \"minzaam\": \"minzam\",\n  \"minzaamheid\": \"minzam\",\n  \"mir\": \"mir\",\n  \"mirec\": \"mirec\",\n  \"mirobolante\": \"mirobolant\",\n  \"mis\": \"mis\",\n  \"misbruik\": \"misbruik\",\n  \"misbruikte\": \"misbruikt\",\n  \"misdaad\": \"misdad\",\n  \"misdaan\": \"misdan\",\n  \"misdadiger\": \"misdadiger\",\n  \"misdeelden\": \"misdeeld\",\n  \"misdragen\": \"misdrag\",\n  \"mise\": \"mis\",\n  \"misener\": \"misener\",\n  \"miserabele\": \"miserabel\",\n  \"misère\": \"misèr\",\n  \"misev\": \"misev\",\n  \"misgunden\": \"misgund\",\n  \"mishagen\": \"mishag\",\n  \"mishandeld\": \"mishandeld\",\n  \"mishandelde\": \"mishandeld\",\n  \"mishandelt\": \"mishandelt\",\n  \"miskend\": \"miskend\",\n  \"miskraam\": \"miskram\",\n  \"miskramen\": \"miskram\",\n  \"misleidend\": \"misleid\",\n  \"misleidende\": \"misleid\",\n  \"mislopen\": \"mislop\",\n  \"mislukken\": \"misluk\",\n  \"mislukking\": \"misluk\",\n  \"mislukkingen\": \"misluk\",\n  \"mislukt\": \"mislukt\",\n  \"mislukte\": \"mislukt\",\n  \"misplaatst\": \"misplaatst\",\n  \"misschien\": \"misschien\",\n  \"misselijk\": \"misselijk\",\n  \"misselijke\": \"misselijk\",\n  \"misselijkheid\": \"misselijk\",\n  \"missen\": \"miss\",\n  \"missers\": \"misser\",\n  \"misset\": \"misset\",\n  \"missie\": \"missie\",\n  \"missies\": \"missies\",\n  \"mississipi\": \"mississipi\",\n  \"misstanden\": \"misstand\",\n  \"misstap\": \"misstap\",\n  \"mist\": \"mist\",\n  \"mistdruipende\": \"mistdruip\",\n  \"miste\": \"mist\",\n  \"misten\": \"mist\",\n  \"mistig\": \"mistig\",\n  \"mistige\": \"mistig\",\n  \"mistoestanden\": \"mistoestand\",\n  \"mistroostig\": \"mistroost\",\n  \"mistte\": \"mist\",\n  \"mistten\": \"mist\",\n  \"misverstand\": \"misverstand\",\n  \"mit\": \"mit\",\n  \"mitac\": \"mitac\",\n  \"miti\": \"miti\",\n  \"mitigerende\": \"mitiger\",\n  \"mitrailleurs\": \"mitrailleur\",\n  \"mits\": \"mit\",\n  \"mitsubishi\": \"mitsubishi\",\n  \"mitsui\": \"mitsui\",\n  \"mittelständischen\": \"mittelstandisch\",\n  \"mittermeier\": \"mittermeier\",\n  \"miura\": \"miura\",\n  \"mix\": \"mix\",\n  \"mixed\": \"mixed\",\n  \"mixer\": \"mixer\",\n  \"mj\": \"mj\",\n  \"mja\": \"mja\",\n  \"mjp\": \"mjp\",\n  \"mjpg\": \"mjpg\",\n  \"mkb\": \"mkb\",\n  \"mks\": \"mks\",\n  \"mksbouw\": \"mksbouw\",\n  \"ml\": \"ml\",\n  \"mm\": \"mm\",\n  \"mma\": \"mma\",\n  \"mmt\": \"mmt\",\n  \"mnisek\": \"mnisek\",\n  \"mobiel\": \"mobiel\",\n  \"mobiele\": \"mobiel\",\n  \"mobil\": \"mobil\",\n  \"mobiliteit\": \"mobiliteit\",\n  \"mobiliteitsbeleid\": \"mobiliteitsbeleid\",\n  \"moby\": \"moby\",\n  \"mocht\": \"mocht\",\n  \"mócht\": \"mocht\",\n  \"mòcht\": \"mòcht\",\n  \"mochten\": \"mocht\",\n  \"modaal\": \"modal\",\n  \"modale\": \"modal\",\n  \"modder\": \"modder\",\n  \"modderachtig\": \"modderacht\",\n  \"modderig\": \"modder\",\n  \"modderlaag\": \"modderlag\",\n  \"modderrand\": \"modderrand\",\n  \"mode\": \"mod\",\n  \"modec\": \"modec\",\n  \"modedokter\": \"modedokter\",\n  \"model\": \"model\",\n  \"modelberekeningen\": \"modelbereken\",\n  \"modeldraaiboek\": \"modeldraaiboek\",\n  \"modell\": \"modell\",\n  \"modellen\": \"modell\",\n  \"modelleren\": \"modeller\",\n  \"modellering\": \"modeller\",\n  \"modelmatig\": \"modelmat\",\n  \"models\": \"model\",\n  \"modelstudie\": \"modelstudie\",\n  \"modelstudies\": \"modelstudies\",\n  \"modem\": \"modem\",\n  \"modeplaten\": \"modeplat\",\n  \"modern\": \"modern\",\n  \"moderne\": \"modern\",\n  \"moderner\": \"moderner\",\n  \"modernere\": \"moderner\",\n  \"modernisatie\": \"modernisatie\",\n  \"moderniseert\": \"moderniseert\",\n  \"moderniseren\": \"moderniser\",\n  \"modernisering\": \"moderniser\",\n  \"moderniseringsoperatie\": \"moderniseringsoperatie\",\n  \"moderniseringsprogramma\": \"moderniseringsprogramma\",\n  \"modernisme\": \"modernism\",\n  \"moderniteit\": \"moderniteit\",\n  \"modernste\": \"modernst\",\n  \"moderoman\": \"moderoman\",\n  \"moderomans\": \"moderoman\",\n  \"modificatie\": \"modificatie\",\n  \"modo\": \"modo\",\n  \"modobalans\": \"modobalan\",\n  \"modulair\": \"modulair\",\n  \"modulairsgewijs\": \"modulairsgewijs\",\n  \"module\": \"modul\",\n  \"modulekosten\": \"modulekost\",\n  \"modules\": \"modules\",\n  \"modulobac\": \"modulobac\",\n  \"moe\": \"moe\",\n  \"moed\": \"moed\",\n  \"moeda\": \"moeda\",\n  \"moede\": \"moed\",\n  \"moedeloos\": \"moedelos\",\n  \"moedeloosheid\": \"moedelos\",\n  \"moedeloze\": \"moedeloz\",\n  \"moeder\": \"moeder\",\n  \"moèder\": \"moèder\",\n  \"moederbedrijf\": \"moederbedrijf\",\n  \"moederbedrijven\": \"moederbedrijv\",\n  \"moederlijk\": \"moeder\",\n  \"moederlijke\": \"moeder\",\n  \"moederlijkheid\": \"moeder\",\n  \"moederlijkjes\": \"moederlijkjes\",\n  \"moederlijks\": \"moeder\",\n  \"moedermeisje\": \"moedermeisj\",\n  \"moedermelk\": \"moedermelk\",\n  \"moedèrr\": \"moedèrr\",\n  \"moeders\": \"moeder\",\n  \"moedertje\": \"moedertj\",\n  \"moedertjes\": \"moedertjes\",\n  \"moedertjesgezichtje\": \"moedertjesgezichtj\",\n  \"moedig\": \"moedig\",\n  \"moedigen\": \"moedig\",\n  \"moedigt\": \"moedigt\",\n  \"moedwillig\": \"moedwill\",\n  \"moedwillige\": \"moedwill\",\n  \"moedwilligheid\": \"moedwill\",\n  \"moeheid\": \"moeheid\",\n  \"moeiigjes\": \"moeiigjes\",\n  \"moeilijk\": \"moeilijk\",\n  \"moèilijk\": \"moèilijk\",\n  \"moeilijke\": \"moeilijk\",\n  \"moeilijker\": \"moeilijker\",\n  \"moeilijkheden\": \"moeilijk\",\n  \"moeilijkheid\": \"moeilijk\",\n  \"moeite\": \"moeit\",\n  \"moeitjes\": \"moeitjes\",\n  \"moeizaam\": \"moeizam\",\n  \"moeizame\": \"moeizam\",\n  \"moeras\": \"moeras\",\n  \"moerasachtig\": \"moerasacht\",\n  \"moerasgebied\": \"moerasgebied\",\n  \"moerasgebieden\": \"moerasgebied\",\n  \"moerasgedeelte\": \"moerasgedeelt\",\n  \"moerasjes\": \"moerasjes\",\n  \"moerasland\": \"moerasland\",\n  \"moerasplan\": \"moerasplan\",\n  \"moerasschildpadden\": \"moerasschildpad\",\n  \"moerassen\": \"moerass\",\n  \"moerasspirea\": \"moerasspirea\",\n  \"moerasstrook\": \"moerasstrok\",\n  \"moerasvogels\": \"moerasvogel\",\n  \"moerasvorming\": \"moerasvorm\",\n  \"moerdijk\": \"moerdijk\",\n  \"moergestel\": \"moergestel\",\n  \"moermansk\": \"moermansk\",\n  \"moes\": \"moes\",\n  \"moesje\": \"moesj\",\n  \"moest\": \"moest\",\n  \"moèst\": \"moèst\",\n  \"moesten\": \"moest\",\n  \"móesten\": \"moest\",\n  \"moèsten\": \"moèst\",\n  \"moet\": \"moet\",\n  \"mòet\": \"mòet\",\n  \"moèt\": \"moèt\",\n  \"moeten\": \"moet\",\n  \"mòeten\": \"mòet\",\n  \"moèten\": \"moèt\",\n  \"mof\": \"mof\",\n  \"mogadishu\": \"mogadishu\",\n  \"moge\": \"mog\",\n  \"mogelijk\": \"mogelijk\",\n  \"mógelijk\": \"mogelijk\",\n  \"mogelijke\": \"mogelijk\",\n  \"mogelijkheden\": \"mogelijk\",\n  \"mogelijkheid\": \"mogelijk\",\n  \"mogen\": \"mog\",\n  \"mogendheden\": \"mogend\",\n  \"mogendheid\": \"mogend\",\n  \"moghelijk\": \"moghelijk\",\n  \"moguntia\": \"moguntia\",\n  \"mohilo\": \"mohilo\",\n  \"moilanen\": \"moilan\",\n  \"mok\": \"mok\",\n  \"mokers\": \"moker\",\n  \"mokken\": \"mok\",\n  \"mokkende\": \"mokkend\",\n  \"mokte\": \"mokt\",\n  \"mol\": \"mol\",\n  \"moleculaire\": \"moleculair\",\n  \"moleculen\": \"molecul\",\n  \"molecuulgewicht\": \"molecuulgewicht\",\n  \"molecuulgewichten\": \"molecuulgewicht\",\n  \"molecuulstructuur\": \"molecuulstructur\",\n  \"molekamp\": \"molekamp\",\n  \"molen\": \"mol\",\n  \"molenbeekdal\": \"molenbeekdal\",\n  \"molengreend\": \"molengre\",\n  \"molenkamp\": \"molenkamp\",\n  \"molenpark\": \"molenpark\",\n  \"molens\": \"molen\",\n  \"molensteen\": \"molensten\",\n  \"molenwieken\": \"molenwiek\",\n  \"molenwiekgebaren\": \"molenwiekgebar\",\n  \"molina\": \"molina\",\n  \"mollen\": \"moll\",\n  \"mollenoverlast\": \"mollenoverlast\",\n  \"mollenplaag\": \"mollenplag\",\n  \"möller\": \"moller\",\n  \"mollig\": \"mollig\",\n  \"mollige\": \"mollig\",\n  \"molligheid\": \"mollig\",\n  \"molligjes\": \"molligjes\",\n  \"molshopen\": \"molshop\",\n  \"molten\": \"molt\",\n  \"mom\": \"mom\",\n  \"moment\": \"moment\",\n  \"momenteel\": \"momentel\",\n  \"momenten\": \"moment\",\n  \"momentenmethode\": \"momentenmethod\",\n  \"mompelde\": \"mompeld\",\n  \"mönchen\": \"monch\",\n  \"mönchengladbach\": \"monchengladbach\",\n  \"mond\": \"mond\",\n  \"mondainiteitjes\": \"mondainiteitjes\",\n  \"monde\": \"mond\",\n  \"mondeling\": \"mondel\",\n  \"mondelinge\": \"mondel\",\n  \"monden\": \"mond\",\n  \"mondiaal\": \"mondiaal\",\n  \"mondiale\": \"mondial\",\n  \"mondialisering\": \"mondialiser\",\n  \"mondiger\": \"mondiger\",\n  \"monding\": \"monding\",\n  \"mondje\": \"mondj\",\n  \"mondjes\": \"mondjes\",\n  \"mondjesmaat\": \"mondjesmat\",\n  \"mondsee\": \"mondsee\",\n  \"monetary\": \"monetary\",\n  \"mongolië\": \"mongolie\",\n  \"monitor\": \"monitor\",\n  \"monitoren\": \"monitor\",\n  \"monitorfaciliteit\": \"monitorfaciliteit\",\n  \"monitoring\": \"monitor\",\n  \"monitoringssysteem\": \"monitoringssystem\",\n  \"monitoringssystemen\": \"monitoringssystem\",\n  \"monitoringsysteem\": \"monitoringsystem\",\n  \"monitors\": \"monitor\",\n  \"monju\": \"monju\",\n  \"mono\": \"mono\",\n  \"monoculturen\": \"monocultur\",\n  \"monocultures\": \"monocultures\",\n  \"monokristallijne\": \"monokristallijn\",\n  \"monolitisch\": \"monolitisch\",\n  \"monomeer\": \"monomer\",\n  \"monopolie\": \"monopolie\",\n  \"monopoliepositie\": \"monopoliepositie\",\n  \"monopolistische\": \"monopolistisch\",\n  \"monorail\": \"monorail\",\n  \"monotone\": \"monoton\",\n  \"monotoon\": \"monoton\",\n  \"monsal\": \"monsal\",\n  \"monsanto\": \"monsanto\",\n  \"monster\": \"monster\",\n  \"monsterachtig\": \"monsteracht\",\n  \"monsterachtigs\": \"monsteracht\",\n  \"monsteranaylse\": \"monsteranayl\",\n  \"monsterbeest\": \"monsterbeest\",\n  \"monsterlijke\": \"monster\",\n  \"monsterlijkheid\": \"monster\",\n  \"monstername\": \"monsternam\",\n  \"monsternamen\": \"monsternam\",\n  \"monsternames\": \"monsternames\",\n  \"monsternemers\": \"monsternemer\",\n  \"monsteroverdracht\": \"monsteroverdracht\",\n  \"monsterpunt\": \"monsterpunt\",\n  \"monsters\": \"monster\",\n  \"monstrueuze\": \"monstrueuz\",\n  \"mont\": \"mont\",\n  \"montage\": \"montag\",\n  \"montageschuim\": \"montageschuim\",\n  \"monte\": \"mont\",\n  \"montell\": \"montell\",\n  \"monteren\": \"monter\",\n  \"monteur\": \"monteur\",\n  \"monteurs\": \"monteur\",\n  \"montferland\": \"montferland\",\n  \"montferrand\": \"montferrand\",\n  \"montfort\": \"montfort\",\n  \"montgomery\": \"montgomery\",\n  \"month\": \"month\",\n  \"montpellier\": \"montpellier\",\n  \"montreal\": \"montreal\",\n  \"montréal\": \"montreal\",\n  \"monument\": \"monument\",\n  \"monumenten\": \"monument\",\n  \"monumentenzorg\": \"monumentenzorg\",\n  \"monuron\": \"monuron\",\n  \"moo\": \"moo\",\n  \"mooi\": \"mooi\",\n  \"móoi\": \"mooi\",\n  \"mooie\": \"mooi\",\n  \"mooier\": \"mooier\",\n  \"mooiere\": \"mooier\",\n  \"mooij\": \"mooij\",\n  \"moois\": \"moois\",\n  \"mooiste\": \"mooist\",\n  \"mook\": \"mok\",\n  \"moonen\": \"mon\",\n  \"moons\": \"mon\",\n  \"moor\": \"mor\",\n  \"moord\": \"moord\",\n  \"moordende\": \"moordend\",\n  \"mop\": \"mop\",\n  \"moppen\": \"mopp\",\n  \"mopperde\": \"mopperd\",\n  \"mopperen\": \"mopper\",\n  \"mopperend\": \"mopper\",\n  \"mopperende\": \"mopper\",\n  \"moppig\": \"moppig\",\n  \"moppige\": \"moppig\",\n  \"moraal\": \"moral\",\n  \"moraaltjes\": \"moraaltjes\",\n  \"moratorium\": \"moratorium\",\n  \"morbide\": \"morbid\",\n  \"morbiditeit\": \"morbiditeit\",\n  \"moreel\": \"morel\",\n  \"morfologisch\": \"morfologisch\",\n  \"morgen\": \"morg\",\n  \"morgenavond\": \"morgenavond\",\n  \"morgenblauw\": \"morgenblauw\",\n  \"morgencourant\": \"morgencourant\",\n  \"morgenlicht\": \"morgenlicht\",\n  \"morgenmist\": \"morgenmist\",\n  \"morgens\": \"morgen\",\n  \"morgenschijn\": \"morgenschijn\",\n  \"morgenstraat\": \"morgenstrat\",\n  \"morgentwijfel\": \"morgentwijfel\",\n  \"morgenwandelaars\": \"morgenwandelar\",\n  \"morgue\": \"morgue\",\n  \"moringa\": \"moringa\",\n  \"morning\": \"morning\",\n  \"morrapark\": \"morrapark\",\n  \"morren\": \"morr\",\n  \"morris\": \"morris\",\n  \"morselt\": \"morselt\",\n  \"morsen\": \"mors\",\n  \"morsinkhof\": \"morsinkhof\",\n  \"morskielen\": \"morskiel\",\n  \"morssink\": \"morssink\",\n  \"morste\": \"morst\",\n  \"morszeck\": \"morszeck\",\n  \"mortaliteit\": \"mortaliteit\",\n  \"morton\": \"morton\",\n  \"mos\": \"mos\",\n  \"mosaangroei\": \"mosaangroei\",\n  \"moscow\": \"moscow\",\n  \"moskou\": \"moskou\",\n  \"mosop\": \"mosop\",\n  \"mosselbanken\": \"mosselbank\",\n  \"mosselen\": \"mossel\",\n  \"mosselgroei\": \"mosselgroei\",\n  \"mossels\": \"mossel\",\n  \"mossen\": \"moss\",\n  \"most\": \"most\",\n  \"mosterd\": \"mosterd\",\n  \"mostert\": \"mostert\",\n  \"mot\": \"mot\",\n  \"motel\": \"motel\",\n  \"motie\": \"motie\",\n  \"motief\": \"motief\",\n  \"moties\": \"moties\",\n  \"motieven\": \"motiev\",\n  \"motivatie\": \"motivatie\",\n  \"motiveerde\": \"motiveerd\",\n  \"motiveren\": \"motiver\",\n  \"motiverend\": \"motiver\",\n  \"motivering\": \"motiver\",\n  \"moto\": \"moto\",\n  \"motocar\": \"motocar\",\n  \"motor\": \"motor\",\n  \"motorbelasting\": \"motorbelast\",\n  \"motorbrandstoffen\": \"motorbrandstoff\",\n  \"motorcylinders\": \"motorcylinder\",\n  \"motoren\": \"motor\",\n  \"motorentestbank\": \"motorentestbank\",\n  \"motorenwerke\": \"motorenwerk\",\n  \"motorische\": \"motorisch\",\n  \"motorkabel\": \"motorkabel\",\n  \"motorolie\": \"motorolie\",\n  \"motororganisaties\": \"motororganisaties\",\n  \"motorproefbank\": \"motorproefbank\",\n  \"motorrijders\": \"motorrijder\",\n  \"motorrijtuigenbelasting\": \"motorrijtuigenbelast\",\n  \"motorrijwielen\": \"motorrijwiel\",\n  \"motors\": \"motor\",\n  \"motorschip\": \"motorschip\",\n  \"motorsportcircuit\": \"motorsportcircuit\",\n  \"motortechniek\": \"motortechniek\",\n  \"motorvermogen\": \"motorvermog\",\n  \"motorvoertuigen\": \"motorvoertu\",\n  \"motorzijde\": \"motorzijd\",\n  \"mott\": \"mott\",\n  \"motto\": \"motto\",\n  \"moujik\": \"moujik\",\n  \"mount\": \"mount\",\n  \"mountain\": \"mountain\",\n  \"mountains\": \"mountain\",\n  \"mourik\": \"mourik\",\n  \"mousseline\": \"mousselin\",\n  \"mouw\": \"mouw\",\n  \"mouwen\": \"mouw\",\n  \"mouwovertrekken\": \"mouwovertrek\",\n  \"mp\": \"mp\",\n  \"mpa\": \"mpa\",\n  \"mpi\": \"mpi\",\n  \"mps\": \"mps\",\n  \"mr\": \"mr\",\n  \"mrc\": \"mrc\",\n  \"ms\": \"ms\",\n  \"msg\": \"msg\",\n  \"msi\": \"msi\",\n  \"mskbouw\": \"mskbouw\",\n  \"msp\": \"msp\",\n  \"msrc\": \"msrc\",\n  \"msw\": \"msw\",\n  \"mtc\": \"mtc\",\n  \"mtr\": \"mtr\",\n  \"mud\": \"mud\",\n  \"muffe\": \"muff\",\n  \"muffin\": \"muffin\",\n  \"mug\": \"mug\",\n  \"mugabe\": \"mugab\",\n  \"muijsenberg\": \"muijsenberg\",\n  \"muil\": \"muil\",\n  \"muilen\": \"muil\",\n  \"muilenafgrond\": \"muilenafgrond\",\n  \"muiltjes\": \"muiltjes\",\n  \"muizen\": \"muiz\",\n  \"mukherjee\": \"mukherjee\",\n  \"mulder\": \"mulder\",\n  \"mülheim\": \"mulheim\",\n  \"mülheimer\": \"mulheimer\",\n  \"muller\": \"muller\",\n  \"mülltrans\": \"mulltran\",\n  \"multi\": \"multi\",\n  \"multicell\": \"multicell\",\n  \"multidisciplinair\": \"multidisciplinair\",\n  \"multidisciplinaire\": \"multidisciplinair\",\n  \"multifunctionaliteit\": \"multifunctionaliteit\",\n  \"multifunctioneel\": \"multifunctionel\",\n  \"multifunctionele\": \"multifunctionel\",\n  \"multikristallijn\": \"multikristallijn\",\n  \"multikristallijne\": \"multikristallijn\",\n  \"multimedia\": \"multimedia\",\n  \"multimodaal\": \"multimodal\",\n  \"multimodale\": \"multimodal\",\n  \"multinational\": \"multinational\",\n  \"multinationals\": \"multinational\",\n  \"multiplier\": \"multiplier\",\n  \"multisales\": \"multisales\",\n  \"multistageproces\": \"multistageproces\",\n  \"multiway\": \"multiway\",\n  \"mum\": \"mum\",\n  \"mummies\": \"mummies\",\n  \"münchen\": \"munch\",\n  \"munich\": \"munich\",\n  \"municipal\": \"municipal\",\n  \"munsflow\": \"munsflow\",\n  \"munster\": \"munster\",\n  \"münster\": \"munster\",\n  \"münsterland\": \"munsterland\",\n  \"munt\": \"munt\",\n  \"munten\": \"munt\",\n  \"muren\": \"mur\",\n  \"murmelde\": \"murmeld\",\n  \"mururoa\": \"mururoa\",\n  \"musa\": \"musa\",\n  \"musea\": \"musea\",\n  \"museum\": \"museum\",\n  \"museumplein\": \"museumplein\",\n  \"mushtaq\": \"mushtaq\",\n  \"musis\": \"musis\",\n  \"mussen\": \"muss\",\n  \"mutageniteitstests\": \"mutageniteitstest\",\n  \"mutant\": \"mutant\",\n  \"mutanten\": \"mutant\",\n  \"mutatie\": \"mutatie\",\n  \"mutaties\": \"mutaties\",\n  \"mutsjes\": \"mutsjes\",\n  \"muttenz\": \"muttenz\",\n  \"muur\": \"mur\",\n  \"muurbedekkingen\": \"muurbedek\",\n  \"muurbevestiging\": \"muurbevest\",\n  \"muurisolatie\": \"muurisolatie\",\n  \"muurkrant\": \"muurkrant\",\n  \"muurtje\": \"muurtj\",\n  \"muurverf\": \"muurverf\",\n  \"muurverwarming\": \"muurverwarm\",\n  \"muziek\": \"muziek\",\n  \"muziekles\": \"muziekles\",\n  \"muzieklessen\": \"muziekless\",\n  \"muziekzilveren\": \"muziekzilver\",\n  \"muzikanten\": \"muzikant\",\n  \"muzzlers\": \"muzzler\",\n  \"mv\": \"mv\",\n  \"mvr\": \"mvr\",\n  \"mvt\": \"mvt\",\n  \"mw\": \"mw\",\n  \"mwe\": \"mwe\",\n  \"mwh\": \"mwh\",\n  \"mwp\": \"mwp\",\n  \"mwth\": \"mwth\",\n  \"mycogen\": \"mycog\",\n  \"myers\": \"myer\",\n  \"mysterie\": \"mysterie\",\n  \"mysterieuze\": \"mysterieuz\",\n  \"mystiek\": \"mystiek\",\n  \"mystieke\": \"mystiek\",\n  \"mystieker\": \"mystieker\",\n  \"mystieks\": \"mystiek\",\n  \"mystisch\": \"mystisch\",\n  \"mystische\": \"mystisch\",\n  \"mythe\": \"myth\",\n  \"mzo\": \"mzo\",\n  \"n\": \"n\",\n  \"na\": \"na\",\n  \"ná\": \"na\",\n  \"nà\": \"nà\",\n  \"naadloze\": \"naadloz\",\n  \"naafhoogte\": \"naafhoogt\",\n  \"naaide\": \"naaid\",\n  \"naaidoos\": \"naaidos\",\n  \"naaien\": \"naai\",\n  \"naaister\": \"naaister\",\n  \"naaiwerk\": \"naaiwerk\",\n  \"naakt\": \"naakt\",\n  \"naakte\": \"naakt\",\n  \"naaktheid\": \"naaktheid\",\n  \"naaldbossen\": \"naaldboss\",\n  \"naalden\": \"naald\",\n  \"naaldenbed\": \"naaldenbed\",\n  \"naaldhout\": \"naaldhout\",\n  \"naaldhouten\": \"naaldhout\",\n  \"naaldspitse\": \"naaldspit\",\n  \"naaldwijk\": \"naaldwijk\",\n  \"naam\": \"nam\",\n  \"naamgeving\": \"naamgev\",\n  \"naamloze\": \"naamloz\",\n  \"naaqs\": \"naq\",\n  \"naar\": \"nar\",\n  \"naarden\": \"naard\",\n  \"naarmate\": \"naarmat\",\n  \"naarstig\": \"naarstig\",\n  \"naast\": \"naast\",\n  \"naaste\": \"naast\",\n  \"naastgelegen\": \"naastgeleg\",\n  \"nabarro\": \"nabarro\",\n  \"nabestaan\": \"nabestan\",\n  \"nabewerking\": \"nabewerk\",\n  \"nabewerkingen\": \"nabewerk\",\n  \"nabewerkingskosten\": \"nabewerkingskost\",\n  \"nabewerkt\": \"nabewerkt\",\n  \"nabij\": \"nabij\",\n  \"nabije\": \"nabij\",\n  \"nabijgelegen\": \"nabijgeleg\",\n  \"nabijheid\": \"nabij\",\n  \"nabootsen\": \"naboots\",\n  \"naburige\": \"nabur\",\n  \"nachenlus\": \"nachenlus\",\n  \"nachrichten\": \"nachricht\",\n  \"nacht\": \"nacht\",\n  \"nachtafdekking\": \"nachtafdek\",\n  \"nachtdistributie\": \"nachtdistributie\",\n  \"nachtelijk\": \"nachtelijk\",\n  \"nachtelijke\": \"nachtelijk\",\n  \"nachten\": \"nacht\",\n  \"nachtende\": \"nachtend\",\n  \"nachthemd\": \"nachthemd\",\n  \"nachthuisschemering\": \"nachthuisschemer\",\n  \"nachtmerrie\": \"nachtmerrie\",\n  \"nachtnorm\": \"nachtnorm\",\n  \"nachtregen\": \"nachtreg\",\n  \"nachtregime\": \"nachtregim\",\n  \"nachts\": \"nacht\",\n  \"nachtschade\": \"nachtschad\",\n  \"nachtstemming\": \"nachtstemm\",\n  \"nachttrein\": \"nachttrein\",\n  \"nachturen\": \"nachtur\",\n  \"nachtvensters\": \"nachtvenster\",\n  \"nachtventilatie\": \"nachtventilatie\",\n  \"nachtvluchten\": \"nachtvlucht\",\n  \"nacompostering\": \"nacomposter\",\n  \"nadacht\": \"nadacht\",\n  \"nadat\": \"nadat\",\n  \"nadeel\": \"nadel\",\n  \"nadelen\": \"nadel\",\n  \"nadelig\": \"nadel\",\n  \"nadelige\": \"nadel\",\n  \"naden\": \"nad\",\n  \"nadenken\": \"nadenk\",\n  \"nadenkende\": \"nadenk\",\n  \"nadenkt\": \"nadenkt\",\n  \"nader\": \"nader\",\n  \"naderde\": \"naderd\",\n  \"naderden\": \"naderd\",\n  \"nadere\": \"nader\",\n  \"naderen\": \"nader\",\n  \"naderend\": \"nader\",\n  \"naderende\": \"nader\",\n  \"nadering\": \"nader\",\n  \"naderingshoogtes\": \"naderingshoogtes\",\n  \"nadert\": \"nadert\",\n  \"nadien\": \"nadien\",\n  \"nadoende\": \"nadoend\",\n  \"nadoet\": \"nadoet\",\n  \"nadruk\": \"nadruk\",\n  \"nadrukkelijk\": \"nadruk\",\n  \"nadrukkelijke\": \"nadruk\",\n  \"nadrukkelijker\": \"nadrukkelijker\",\n  \"naf\": \"naf\",\n  \"nafta\": \"nafta\",\n  \"naftaleen\": \"naftalen\",\n  \"nagaan\": \"nagan\",\n  \"nagahama\": \"nagahama\",\n  \"nagasaki\": \"nagasaki\",\n  \"nagebootst\": \"nagebootst\",\n  \"nagedaan\": \"nagedan\",\n  \"nagedacht\": \"nagedacht\",\n  \"nagedachte\": \"nagedacht\",\n  \"nagedronken\": \"nagedronk\",\n  \"nagegaan\": \"nagegan\",\n  \"nagekeken\": \"nagekek\",\n  \"nagekomen\": \"nagekom\",\n  \"nagelaten\": \"nagelat\",\n  \"nagele\": \"nagel\",\n  \"nageleefd\": \"nageleefd\",\n  \"nagels\": \"nagel\",\n  \"nagemeten\": \"nagemet\",\n  \"nagenoeg\": \"nagenoeg\",\n  \"nageschakeld\": \"nageschakeld\",\n  \"nageschakelde\": \"nageschakeld\",\n  \"nageslacht\": \"nageslacht\",\n  \"nagestaard\": \"nagestaard\",\n  \"nagestreefd\": \"nagestreefd\",\n  \"nagewas\": \"nagewas\",\n  \"naghel\": \"naghel\",\n  \"naghels\": \"naghel\",\n  \"naglansde\": \"naglansd\",\n  \"naheffing\": \"naheff\",\n  \"nahouden\": \"nahoud\",\n  \"naïef\": \"naief\",\n  \"naieve\": \"naiev\",\n  \"naïeve\": \"naiev\",\n  \"naiveteit\": \"naiveteit\",\n  \"naïveteit\": \"naiveteit\",\n  \"najaar\": \"najar\",\n  \"najk\": \"najk\",\n  \"nak\": \"nak\",\n  \"nakijken\": \"nakijk\",\n  \"nakomen\": \"nakom\",\n  \"nalaten\": \"nalat\",\n  \"nalatig\": \"nalat\",\n  \"nalatige\": \"nalat\",\n  \"nalatigheid\": \"nalat\",\n  \"nalco\": \"nalco\",\n  \"naleeft\": \"naleeft\",\n  \"nales\": \"nales\",\n  \"naleven\": \"nalev\",\n  \"naleving\": \"nalev\",\n  \"nalevingsgedrag\": \"nalevingsgedrag\",\n  \"naliep\": \"naliep\",\n  \"nalieten\": \"naliet\",\n  \"naloopt\": \"naloopt\",\n  \"nam\": \"nam\",\n  \"namaken\": \"namak\",\n  \"name\": \"nam\",\n  \"namelijk\": \"namelijk\",\n  \"namen\": \"nam\",\n  \"namens\": \"namen\",\n  \"namibia\": \"namibia\",\n  \"namiddag\": \"namiddag\",\n  \"namiddagdonkerte\": \"namiddagdonkert\",\n  \"namiddagduister\": \"namiddagduister\",\n  \"namiddagen\": \"namiddag\",\n  \"namiddags\": \"namiddag\",\n  \"nanokristallijn\": \"nanokristallijn\",\n  \"nanometer\": \"nanometer\",\n  \"nanotechnologie\": \"nanotechnologie\",\n  \"naoorlogse\": \"naoorlog\",\n  \"nap\": \"nap\",\n  \"napa\": \"napa\",\n  \"napels\": \"napel\",\n  \"naperville\": \"napervill\",\n  \"naphthaleendicarboxylaat\": \"naphthaleendicarboxylat\",\n  \"napoeffende\": \"napoeff\",\n  \"nappas\": \"nappas\",\n  \"nappassen\": \"nappass\",\n  \"napratende\": \"naprat\",\n  \"nardo\": \"nardo\",\n  \"nareco\": \"nareco\",\n  \"narmada\": \"narmada\",\n  \"naroken\": \"narok\",\n  \"nas\": \"nas\",\n  \"nasa\": \"nasa\",\n  \"nasdaq\": \"nasdaq\",\n  \"nasional\": \"nasional\",\n  \"naslagwerk\": \"naslagwerk\",\n  \"nasleep\": \"naslep\",\n  \"naspoelwater\": \"naspoelwater\",\n  \"nassau\": \"nassau\",\n  \"nassauplein\": \"nassauplein\",\n  \"nassaustraat\": \"nassaustrat\",\n  \"nassi\": \"nassi\",\n  \"nastreeft\": \"nastreeft\",\n  \"nastreven\": \"nastrev\",\n  \"nat\": \"nat\",\n  \"natco\": \"natco\",\n  \"nathanson\": \"nathanson\",\n  \"natie\": \"natie\",\n  \"naties\": \"naties\",\n  \"nationaal\": \"national\",\n  \"national\": \"national\",\n  \"nationale\": \"national\",\n  \"nationalisme\": \"nationalism\",\n  \"nationalisten\": \"nationalist\",\n  \"nationaliteiten\": \"nationaliteit\",\n  \"nations\": \"nation\",\n  \"natraject\": \"natraject\",\n  \"natrium\": \"natrium\",\n  \"natriumazide\": \"natriumazid\",\n  \"natriumbicarbonaat\": \"natriumbicarbonat\",\n  \"natriumcarbonaat\": \"natriumcarbonat\",\n  \"natriumchloride\": \"natriumchlorid\",\n  \"natriumcyanideverbindingen\": \"natriumcyanideverbind\",\n  \"natriumhalide\": \"natriumhalid\",\n  \"natriumhydroxyde\": \"natriumhydroxyd\",\n  \"natriumlekkages\": \"natriumlekkages\",\n  \"natriumsilicaat\": \"natriumsilicat\",\n  \"natronloog\": \"natronlog\",\n  \"natte\": \"nat\",\n  \"nattige\": \"nattig\",\n  \"nattigheid\": \"nattig\",\n  \"natural\": \"natural\",\n  \"nature\": \"natur\",\n  \"naturen\": \"natur\",\n  \"naturschutz\": \"naturschutz\",\n  \"naturspan\": \"naturspan\",\n  \"natuur\": \"natur\",\n  \"natuuraankopen\": \"natuuraankop\",\n  \"natuuraantasting\": \"natuuraantast\",\n  \"natuurasfalt\": \"natuurasfalt\",\n  \"natuurbeheer\": \"natuurbeher\",\n  \"natuurbeheerinstanties\": \"natuurbeheerinstanties\",\n  \"natuurbeheerinstellingen\": \"natuurbeheerinstell\",\n  \"natuurbehoud\": \"natuurbehoud\",\n  \"natuurbelangen\": \"natuurbelang\",\n  \"natuurbeleid\": \"natuurbeleid\",\n  \"natuurbeleidsplan\": \"natuurbeleidsplan\",\n  \"natuurbeleving\": \"natuurbelev\",\n  \"natuurbeloning\": \"natuurbelon\",\n  \"natuurbeschermers\": \"natuurbeschermer\",\n  \"natuurbescherming\": \"natuurbescherm\",\n  \"natuurbeschermingsbond\": \"natuurbeschermingsbond\",\n  \"natuurbeschermingsjaar\": \"natuurbeschermingsjar\",\n  \"natuurbeschermingsorganisatie\": \"natuurbeschermingsorganisatie\",\n  \"natuurbeschermingsorganisaties\": \"natuurbeschermingsorganisaties\",\n  \"natuurbeschermingsraad\": \"natuurbeschermingsrad\",\n  \"natuurbeschermingswet\": \"natuurbeschermingswet\",\n  \"natuurbestemming\": \"natuurbestemm\",\n  \"natuurbeweging\": \"natuurbeweg\",\n  \"natuurboulevard\": \"natuurboulevard\",\n  \"natuurbouwer\": \"natuurbouwer\",\n  \"natuurbouwers\": \"natuurbouwer\",\n  \"natuurcompensatieplan\": \"natuurcompensatieplan\",\n  \"natuurcriminaliteit\": \"natuurcriminaliteit\",\n  \"natuureisen\": \"natuureis\",\n  \"natuurfonds\": \"natuurfond\",\n  \"natuurfunctie\": \"natuurfunctie\",\n  \"natuurgebied\": \"natuurgebied\",\n  \"natuurgebieden\": \"natuurgebied\",\n  \"natuurhars\": \"natuurhar\",\n  \"natuurhistorisch\": \"natuurhistorisch\",\n  \"natuurkenners\": \"natuurkenner\",\n  \"natuurkerngebied\": \"natuurkerngebied\",\n  \"natuurkind\": \"natuurkind\",\n  \"natuurkunde\": \"natuurkund\",\n  \"natuurkundige\": \"natuurkund\",\n  \"natuurkwaliteit\": \"natuurkwaliteit\",\n  \"natuurlijk\": \"natur\",\n  \"natuurlijke\": \"natur\",\n  \"natuurlijker\": \"natuurlijker\",\n  \"natuurlijkerwijze\": \"natuurlijkerwijz\",\n  \"natuurlijkheid\": \"natur\",\n  \"natuurlijks\": \"natur\",\n  \"natuurlijkweg\": \"natuurlijkweg\",\n  \"natuurmonument\": \"natuurmonument\",\n  \"natuurmonumenten\": \"natuurmonument\",\n  \"natuurmuseum\": \"natuurmuseum\",\n  \"natuuronderzoek\": \"natuuronderzoek\",\n  \"natuurontwikkelaars\": \"natuurontwikkelar\",\n  \"natuurontwikkeling\": \"natuurontwikkel\",\n  \"natuurontwikkelingsgebied\": \"natuurontwikkelingsgebied\",\n  \"natuurontwikkelingsgebieden\": \"natuurontwikkelingsgebied\",\n  \"natuurontwikkelingsplan\": \"natuurontwikkelingsplan\",\n  \"natuurontwikkelingsplannen\": \"natuurontwikkelingsplann\",\n  \"natuurontwikkelingsprojecten\": \"natuurontwikkelingsproject\",\n  \"natuuronwikkeling\": \"natuuronwikkel\",\n  \"natuurorganisatie\": \"natuurorganisatie\",\n  \"natuurorganisaties\": \"natuurorganisaties\",\n  \"natuurplan\": \"natuurplan\",\n  \"natuurplanbureaufunctie\": \"natuurplanbureaufunctie\",\n  \"natuurplannen\": \"natuurplann\",\n  \"natuurprodukt\": \"natuurprodukt\",\n  \"natuurproduktie\": \"natuurproduktie\",\n  \"natuurprojecten\": \"natuurproject\",\n  \"natuurrampen\": \"natuurramp\",\n  \"natuurramppolissen\": \"natuurramppoliss\",\n  \"natuurreservaat\": \"natuurreservat\",\n  \"natuurreservaten\": \"natuurreservat\",\n  \"natuurrubber\": \"natuurrubber\",\n  \"natuurschoonwet\": \"natuurschoonwet\",\n  \"natuursoorten\": \"natuursoort\",\n  \"natuurstroom\": \"natuurstrom\",\n  \"natuurterrein\": \"natuurterrein\",\n  \"natuurterreinen\": \"natuurterrein\",\n  \"natuurtriomf\": \"natuurtriomf\",\n  \"natuurverenigingen\": \"natuurveren\",\n  \"natuurverf\": \"natuurverf\",\n  \"natuurverschijnsel\": \"natuurverschijnsel\",\n  \"natuurverschijnselen\": \"natuurverschijnsel\",\n  \"natuurverven\": \"natuurverv\",\n  \"natuurvoeding\": \"natuurvoed\",\n  \"natuurvoedingswinkels\": \"natuurvoedingswinkel\",\n  \"natuurvriendelijk\": \"natuurvriend\",\n  \"natuurvriendelijke\": \"natuurvriend\",\n  \"natuurvriendelijker\": \"natuurvriendelijker\",\n  \"natuurwaarde\": \"natuurwaard\",\n  \"natuurwaarden\": \"natuurwaard\",\n  \"natuurwetenschap\": \"natuurwetenschap\",\n  \"natuurwetenschappelijke\": \"natuurwetenschapp\",\n  \"natuurwinst\": \"natuurwinst\",\n  \"nauerna\": \"nauerna\",\n  \"nauru\": \"nauru\",\n  \"nauta\": \"nauta\",\n  \"nautilus\": \"nautilus\",\n  \"nauw\": \"nauw\",\n  \"nauwe\": \"nauw\",\n  \"nauwelijks\": \"nauwelijk\",\n  \"nauwer\": \"nauwer\",\n  \"nauwere\": \"nauwer\",\n  \"nauwgezet\": \"nauwgezet\",\n  \"nauwgezette\": \"nauwgezet\",\n  \"nauwkeurig\": \"nauwkeur\",\n  \"nauwkeurige\": \"nauwkeur\",\n  \"nauwkeuriger\": \"nauwkeuriger\",\n  \"nauwkeurigere\": \"nauwkeuriger\",\n  \"nauwkeurigheid\": \"nauwkeur\",\n  \"nauwlijks\": \"nauwlijk\",\n  \"nauwpassend\": \"nauwpass\",\n  \"nav\": \"nav\",\n  \"naverbrander\": \"naverbrander\",\n  \"naverbrandingskamer\": \"naverbrandingskamer\",\n  \"naverkleiners\": \"naverkleiner\",\n  \"naverwarmd\": \"naverwarmd\",\n  \"naverwarmer\": \"naverwarmer\",\n  \"naverwarming\": \"naverwarm\",\n  \"navigatie\": \"navigatie\",\n  \"navigatieroutes\": \"navigatieroutes\",\n  \"navolging\": \"navolg\",\n  \"navorderingsheffing\": \"navorderingsheff\",\n  \"navraag\": \"navrag\",\n  \"navrant\": \"navrant\",\n  \"navrante\": \"navrant\",\n  \"navulautomaten\": \"navulautomat\",\n  \"navulfles\": \"navulfles\",\n  \"nawerken\": \"nawerk\",\n  \"nawerking\": \"nawerk\",\n  \"nawijst\": \"nawijst\",\n  \"nazien\": \"nazien\",\n  \"nazomeravond\": \"nazomeravond\",\n  \"nazomerdag\": \"nazomerdag\",\n  \"nazorg\": \"nazorg\",\n  \"nazorgverplichtingen\": \"nazorgverplicht\",\n  \"nazuchtende\": \"nazucht\",\n  \"nazuigpomp\": \"nazuigpomp\",\n  \"nazuiveringsruimte\": \"nazuiveringsruimt\",\n  \"nb\": \"nb\",\n  \"nbbs\": \"nbbs\",\n  \"nbdm\": \"nbdm\",\n  \"nbf\": \"nbf\",\n  \"nblf\": \"nblf\",\n  \"nbm\": \"nbm\",\n  \"ncb\": \"ncb\",\n  \"ncc\": \"ncc\",\n  \"ncdo\": \"ncdo\",\n  \"nci\": \"nci\",\n  \"nco\": \"nco\",\n  \"ncw\": \"ncw\",\n  \"ndc\": \"ndc\",\n  \"ne\": \"ne\",\n  \"ned\": \"ned\",\n  \"neda\": \"neda\",\n  \"nedam\": \"nedam\",\n  \"neder\": \"neder\",\n  \"nederig\": \"neder\",\n  \"nederige\": \"neder\",\n  \"nederigheid\": \"neder\",\n  \"nederigjes\": \"nederigjes\",\n  \"nederland\": \"nederland\",\n  \"nederlander\": \"nederlander\",\n  \"nederlanders\": \"nederlander\",\n  \"nederlands\": \"nederland\",\n  \"nederlandsche\": \"nederlandsch\",\n  \"nederlandse\": \"nederland\",\n  \"nederlandstalige\": \"nederlandstal\",\n  \"nederrijn\": \"nederrijn\",\n  \"nedersaksen\": \"nedersaks\",\n  \"nedersaksische\": \"nedersaksisch\",\n  \"nedship\": \"nedship\",\n  \"nedstaal\": \"nedstal\",\n  \"nedwind\": \"nedwind\",\n  \"nee\": \"nee\",\n  \"neede\": \"ned\",\n  \"needs\": \"ned\",\n  \"néeen\": \"neeen\",\n  \"neef\": \"nef\",\n  \"neefje\": \"neefj\",\n  \"neefjes\": \"neefjes\",\n  \"neem\": \"nem\",\n  \"neemt\": \"neemt\",\n  \"neen\": \"nen\",\n  \"néen\": \"nen\",\n  \"neènn\": \"neènn\",\n  \"neer\": \"ner\",\n  \"neerbrokkelden\": \"neerbrokkeld\",\n  \"neerbuigend\": \"neerbuig\",\n  \"neerbuigende\": \"neerbuig\",\n  \"neerbuigendheid\": \"neerbuig\",\n  \"neerdaalde\": \"neerdaald\",\n  \"neerdrukken\": \"neerdruk\",\n  \"neerdrukkende\": \"neerdruk\",\n  \"neerduiken\": \"neerduik\",\n  \"neergaande\": \"neergaand\",\n  \"neergebogen\": \"neergebog\",\n  \"neergedaald\": \"neergedaald\",\n  \"neergedrukt\": \"neergedrukt\",\n  \"neergelaten\": \"neergelat\",\n  \"neergelegd\": \"neergelegd\",\n  \"neergeschoten\": \"neergeschot\",\n  \"neergeslagen\": \"neergeslag\",\n  \"neergestort\": \"neergestort\",\n  \"neergeteld\": \"neergeteld\",\n  \"neergevallen\": \"neergevall\",\n  \"neergezet\": \"neergezet\",\n  \"neergezonken\": \"neergezonk\",\n  \"neergooide\": \"neergooid\",\n  \"neerhagelen\": \"neerhagel\",\n  \"neerhing\": \"neerhing\",\n  \"neerhingen\": \"neerhing\",\n  \"neerkijkende\": \"neerkijk\",\n  \"neerkletsende\": \"neerklets\",\n  \"neerkletste\": \"neerkletst\",\n  \"neerkletterende\": \"neerkletter\",\n  \"neerknielen\": \"neerkniel\",\n  \"neerknielende\": \"neerkniel\",\n  \"neerkomen\": \"neerkom\",\n  \"neerkomt\": \"neerkomt\",\n  \"neerlands\": \"neerland\",\n  \"neêrlands\": \"neêrland\",\n  \"neerleggen\": \"neerlegg\",\n  \"neerregende\": \"neerreg\",\n  \"neerslaan\": \"neerslan\",\n  \"neerslaat\": \"neerslat\",\n  \"neerslachtig\": \"neerslacht\",\n  \"neerslachtige\": \"neerslacht\",\n  \"neerslachtigheid\": \"neerslacht\",\n  \"neerslag\": \"neerslag\",\n  \"neerslagoverschot\": \"neerslagoverschot\",\n  \"neerslagpatronen\": \"neerslagpatron\",\n  \"neerslagvorming\": \"neerslagvorm\",\n  \"neersloeg\": \"neersloeg\",\n  \"neerstorten\": \"neerstort\",\n  \"neerstortte\": \"neerstort\",\n  \"neerstreek\": \"neerstrek\",\n  \"neertinkelend\": \"neertinkel\",\n  \"neervallen\": \"neervall\",\n  \"neervallend\": \"neervall\",\n  \"neervalt\": \"neervalt\",\n  \"neerviel\": \"neerviel\",\n  \"neervielen\": \"neerviel\",\n  \"neervlokken\": \"neervlok\",\n  \"neervoort\": \"neervoort\",\n  \"neerwaartse\": \"neerwaart\",\n  \"neerzag\": \"neerzag\",\n  \"neerzagen\": \"neerzag\",\n  \"neerzetten\": \"neerzet\",\n  \"neerzien\": \"neerzien\",\n  \"neerziende\": \"neerziend\",\n  \"neerziends\": \"neerziend\",\n  \"nefibat\": \"nefibat\",\n  \"nefit\": \"nefit\",\n  \"nefyto\": \"nefyto\",\n  \"negatief\": \"negatief\",\n  \"negatieve\": \"negatiev\",\n  \"negeerde\": \"negeerd\",\n  \"negeert\": \"negeert\",\n  \"negen\": \"neg\",\n  \"négen\": \"neg\",\n  \"negende\": \"negend\",\n  \"negenen\": \"negen\",\n  \"negenhonderd\": \"negenhonderd\",\n  \"negenman\": \"negenman\",\n  \"negental\": \"negental\",\n  \"negentien\": \"negentien\",\n  \"negentiende\": \"negenti\",\n  \"negentig\": \"negent\",\n  \"negeren\": \"neger\",\n  \"negligeer\": \"negliger\",\n  \"negligeren\": \"negliger\",\n  \"nehem\": \"nehem\",\n  \"neiging\": \"neiging\",\n  \"neigingen\": \"neiging\",\n  \"neil\": \"neil\",\n  \"neipende\": \"neipend\",\n  \"nek\": \"nek\",\n  \"nekovri\": \"nekovri\",\n  \"nelson\": \"nelson\",\n  \"nemen\": \"nem\",\n  \"nemende\": \"nemend\",\n  \"nen\": \"nen\",\n  \"nentjes\": \"nentjes\",\n  \"neo\": \"neo\",\n  \"neonatoloog\": \"neonatolog\",\n  \"neopreen\": \"neopren\",\n  \"nep\": \"nep\",\n  \"nepa\": \"nepa\",\n  \"nepal\": \"nepal\",\n  \"ner\": \"ner\",\n  \"nerc\": \"nerc\",\n  \"nerf\": \"nerf\",\n  \"nergens\": \"nergen\",\n  \"nering\": \"nering\",\n  \"nerneuze\": \"nerneuz\",\n  \"nertsen\": \"nerts\",\n  \"nerveus\": \"nerveus\",\n  \"nerveust\": \"nerveust\",\n  \"nerveuze\": \"nerveuz\",\n  \"nerveuzer\": \"nerveuzer\",\n  \"nerveuzere\": \"nerveuzer\",\n  \"nervige\": \"nervig\",\n  \"nervositeit\": \"nervositeit\",\n  \"nervoziteit\": \"nervoziteit\",\n  \"nest\": \"nest\",\n  \"nestelde\": \"nesteld\",\n  \"nestelen\": \"nestel\",\n  \"nesten\": \"nest\",\n  \"nestje\": \"nestj\",\n  \"nestlé\": \"nestl\",\n  \"nestor\": \"nestor\",\n  \"net\": \"net\",\n  \"netaansluiting\": \"netaansluit\",\n  \"netaansluitingscapaciteit\": \"netaansluitingscapaciteit\",\n  \"netac\": \"netac\",\n  \"netbeheer\": \"netbeher\",\n  \"netco\": \"netco\",\n  \"netgekoppelde\": \"netgekoppeld\",\n  \"nethart\": \"nethart\",\n  \"netheid\": \"netheid\",\n  \"netherlands\": \"netherland\",\n  \"netinpassing\": \"netinpass\",\n  \"netjes\": \"netjes\",\n  \"netstroom\": \"netstrom\",\n  \"nette\": \"net\",\n  \"netten\": \"net\",\n  \"netterigheid\": \"netter\",\n  \"netto\": \"netto\",\n  \"nettoresultaat\": \"nettoresultat\",\n  \"nettowinst\": \"nettowinst\",\n  \"netwerk\": \"netwerk\",\n  \"netwerken\": \"netwerk\",\n  \"network\": \"network\",\n  \"networks\": \"network\",\n  \"neueinbau\": \"neueinbau\",\n  \"neurale\": \"neural\",\n  \"neurenberg\": \"neurenberg\",\n  \"neuriede\": \"neuried\",\n  \"neurologische\": \"neurologisch\",\n  \"neuroloog\": \"neurolog\",\n  \"neus\": \"neus\",\n  \"neuteboom\": \"neutebom\",\n  \"neutra\": \"neutra\",\n  \"neutraal\": \"neutral\",\n  \"neutrale\": \"neutral\",\n  \"neutraliseren\": \"neutraliser\",\n  \"neutraliteit\": \"neutraliteit\",\n  \"neutramag\": \"neutramag\",\n  \"neutronen\": \"neutron\",\n  \"neuzen\": \"neuz\",\n  \"nevada\": \"nevada\",\n  \"nevadawoestijn\": \"nevadawoestijn\",\n  \"nevel\": \"nevel\",\n  \"nevelblusinstallatie\": \"nevelblusinstallatie\",\n  \"nevelblusinstallaties\": \"nevelblusinstallaties\",\n  \"nevelde\": \"neveld\",\n  \"nevelig\": \"nevel\",\n  \"nevelige\": \"nevel\",\n  \"neveligheid\": \"nevel\",\n  \"neveling\": \"nevel\",\n  \"nevels\": \"nevel\",\n  \"neveltjes\": \"neveltjes\",\n  \"neveltriestige\": \"neveltriest\",\n  \"neven\": \"nev\",\n  \"nevenactiviteit\": \"nevenactiviteit\",\n  \"nevenactiviteiten\": \"nevenactiviteit\",\n  \"neveneffect\": \"neveneffect\",\n  \"nevenprodukten\": \"nevenprodukt\",\n  \"nevenstromen\": \"nevenstrom\",\n  \"nevenstroom\": \"nevenstrom\",\n  \"nevrip\": \"nevrip\",\n  \"nevroze\": \"nevroz\",\n  \"nevrozisme\": \"nevrozism\",\n  \"new\": \"new\",\n  \"newark\": \"newark\",\n  \"newcastle\": \"newcastl\",\n  \"newecs\": \"newec\",\n  \"newin\": \"newin\",\n  \"news\": \"new\",\n  \"newton\": \"newton\",\n  \"newtonweg\": \"newtonweg\",\n  \"nf\": \"nf\",\n  \"nfk\": \"nfk\",\n  \"nfo\": \"nfo\",\n  \"ng\": \"ng\",\n  \"ngo\": \"ngo\",\n  \"nh\": \"nh\",\n  \"nhi\": \"nhi\",\n  \"nia\": \"nia\",\n  \"niaba\": \"niaba\",\n  \"nibbering\": \"nibber\",\n  \"nibe\": \"nib\",\n  \"nibé\": \"nib\",\n  \"nibv\": \"nibv\",\n  \"nice\": \"nic\",\n  \"niche\": \"nich\",\n  \"nicht\": \"nicht\",\n  \"nichten\": \"nicht\",\n  \"nichtje\": \"nichtj\",\n  \"nichtjes\": \"nichtjes\",\n  \"nicolaasga\": \"nicolaasga\",\n  \"nido\": \"nido\",\n  \"nidro\": \"nidro\",\n  \"niedersachsen\": \"niedersachs\",\n  \"niedorp\": \"niedorp\",\n  \"niedrigenergiehaus\": \"niedrigenergiehaus\",\n  \"nieerde\": \"nieerd\",\n  \"nieert\": \"nieert\",\n  \"niellé\": \"niell\",\n  \"niemand\": \"niemand\",\n  \"niendorf\": \"niendorf\",\n  \"niëren\": \"nier\",\n  \"niet\": \"niet\",\n  \"niét\": \"niet\",\n  \"nièt\": \"nièt\",\n  \"niethollands\": \"nietholland\",\n  \"niethouden\": \"niethoud\",\n  \"nietig\": \"nietig\",\n  \"nietigheden\": \"nietig\",\n  \"nietlevende\": \"nietlev\",\n  \"niets\": \"niet\",\n  \"nièts\": \"nièt\",\n  \"nietsbetekenend\": \"nietsbeteken\",\n  \"nietszeggende\": \"nietszegg\",\n  \"niettegenstaande\": \"niettegenstaand\",\n  \"niettemin\": \"niettemin\",\n  \"nietwaar\": \"nietwar\",\n  \"nietweten\": \"nietwet\",\n  \"nieuw\": \"nieuw\",\n  \"nieuwbouw\": \"nieuwbouw\",\n  \"nieuwbouwactiviteiten\": \"nieuwbouwactiviteit\",\n  \"nieuwbouwgebieden\": \"nieuwbouwgebied\",\n  \"nieuwbouwlocatie\": \"nieuwbouwlocatie\",\n  \"nieuwbouwlokaties\": \"nieuwbouwlokaties\",\n  \"nieuwbouwplannen\": \"nieuwbouwplann\",\n  \"nieuwbouwproject\": \"nieuwbouwproject\",\n  \"nieuwbouwprojecten\": \"nieuwbouwproject\",\n  \"nieuwbouwwijk\": \"nieuwbouwwijk\",\n  \"nieuwbouwwijken\": \"nieuwbouwwijk\",\n  \"nieuwbouwwoningen\": \"nieuwbouwwon\",\n  \"nieuwe\": \"nieuw\",\n  \"nieuwegein\": \"nieuwegein\",\n  \"nieuwelinge\": \"nieuwel\",\n  \"nieuwenhof\": \"nieuwenhof\",\n  \"nieuwer\": \"nieuwer\",\n  \"nieuwere\": \"nieuwer\",\n  \"nieuwerkerk\": \"nieuwerkerk\",\n  \"nieuweschans\": \"nieuweschan\",\n  \"nieuwheid\": \"nieuwheid\",\n  \"nieuwjaarskaarten\": \"nieuwjaarskaart\",\n  \"nieuwjaarstoespraak\": \"nieuwjaarstoesprak\",\n  \"nieuwkomers\": \"nieuwkomer\",\n  \"nieuwkoop\": \"nieuwkop\",\n  \"nieuwkoopse\": \"nieuwkop\",\n  \"nieuwland\": \"nieuwland\",\n  \"nieuwlandpolder\": \"nieuwlandpolder\",\n  \"nieuwprijs\": \"nieuwprijs\",\n  \"nieuws\": \"nieuw\",\n  \"nieuwsblad\": \"nieuwsblad\",\n  \"nieuwsbrief\": \"nieuwsbrief\",\n  \"nieuwsgierig\": \"nieuwsgier\",\n  \"nieuwsgierige\": \"nieuwsgier\",\n  \"nieuwsgierigheid\": \"nieuwsgier\",\n  \"nieuwsgroep\": \"nieuwsgroep\",\n  \"nieuwslijn\": \"nieuwslijn\",\n  \"nieuwsrubriek\": \"nieuwsrubriek\",\n  \"nieuwste\": \"nieuwst\",\n  \"nieuwsvoorziening\": \"nieuwsvoorzien\",\n  \"nieuwzeelandse\": \"nieuwzeeland\",\n  \"niftrik\": \"niftrik\",\n  \"nigerdelta\": \"nigerdelta\",\n  \"nigeria\": \"nigeria\",\n  \"nigeriaanse\": \"nigeriaan\",\n  \"nigerianen\": \"nigerian\",\n  \"nigrum\": \"nigrum\",\n  \"nihil\": \"nihil\",\n  \"nijd\": \"nijd\",\n  \"nijdam\": \"nijdam\",\n  \"nijdaste\": \"nijdast\",\n  \"nijdig\": \"nijdig\",\n  \"nijdigde\": \"nijdigd\",\n  \"nijdige\": \"nijdig\",\n  \"nijdigheden\": \"nijdig\",\n  \"nijdigheid\": \"nijdig\",\n  \"nijenhuis\": \"nijenhuis\",\n  \"nijenrode\": \"nijenrod\",\n  \"nijkerk\": \"nijkerk\",\n  \"nijl\": \"nijl\",\n  \"nijland\": \"nijland\",\n  \"nijlganzen\": \"nijlganz\",\n  \"nijlwater\": \"nijlwater\",\n  \"nijman\": \"nijman\",\n  \"nijmeegs\": \"nijmeg\",\n  \"nijmeegse\": \"nijmeg\",\n  \"nijmegen\": \"nijmeg\",\n  \"nijpels\": \"nijpel\",\n  \"nijpend\": \"nijpend\",\n  \"nijpende\": \"nijpend\",\n  \"nijpte\": \"nijpt\",\n  \"nijsi\": \"nijsi\",\n  \"nijverdal\": \"nijverdal\",\n  \"nijverheid\": \"nijver\",\n  \"nikkel\": \"nikkel\",\n  \"nikkelcadmium\": \"nikkelcadmium\",\n  \"nikkelmetaalhydride\": \"nikkelmetaalhydrid\",\n  \"nikkelresten\": \"nikkelrest\",\n  \"nikkelverwijdering\": \"nikkelverwijder\",\n  \"niks\": \"nik\",\n  \"nil\": \"nil\",\n  \"nima\": \"nima\",\n  \"nimcr\": \"nimcr\",\n  \"nimmer\": \"nimmer\",\n  \"nimos\": \"nimos\",\n  \"ninja\": \"ninja\",\n  \"nioo\": \"nioo\",\n  \"nipo\": \"nipo\",\n  \"nippen\": \"nipp\",\n  \"nippon\": \"nippon\",\n  \"nipte\": \"nipt\",\n  \"niras\": \"niras\",\n  \"nirex\": \"nirex\",\n  \"niria\": \"niria\",\n  \"niro\": \"niro\",\n  \"nirov\": \"nirov\",\n  \"nissan\": \"nissan\",\n  \"nissen\": \"niss\",\n  \"nistelrode\": \"nistelrod\",\n  \"nitraat\": \"nitrat\",\n  \"nitraatbelasting\": \"nitraatbelast\",\n  \"nitraatconcentraties\": \"nitraatconcentraties\",\n  \"nitraatgehalte\": \"nitraatgehalt\",\n  \"nitraatgehalten\": \"nitraatgehalt\",\n  \"nitraatgevoelige\": \"nitraatgevoel\",\n  \"nitraatnormen\": \"nitraatnorm\",\n  \"nitraatprobleem\": \"nitraatproblem\",\n  \"nitraatrichtlijn\": \"nitraatrichtlijn\",\n  \"nitraatstikstof\": \"nitraatstikstof\",\n  \"nitraatuitspoeling\": \"nitraatuitspoel\",\n  \"nitraatvervuiler\": \"nitraatvervuiler\",\n  \"nitraatvervuiling\": \"nitraatvervuil\",\n  \"nitraatvrij\": \"nitraatvrij\",\n  \"nitraatzuivering\": \"nitraatzuiver\",\n  \"nitraatzuiveringsinstallatie\": \"nitraatzuiveringsinstallatie\",\n  \"nitraten\": \"nitrat\",\n  \"nitriet\": \"nitriet\",\n  \"nitriflex\": \"nitriflex\",\n  \"nitril\": \"nitril\",\n  \"nitrocellulose\": \"nitrocellulos\",\n  \"niveau\": \"niveau\",\n  \"niveaus\": \"niveaus\",\n  \"niveauschakelaar\": \"niveauschakelar\",\n  \"niveausensor\": \"niveausensor\",\n  \"niveauverschil\": \"niveauverschil\",\n  \"nivôse\": \"nivô\",\n  \"nixen\": \"nix\",\n  \"nizhnevartovsk\": \"nizhnevartovsk\",\n  \"nizna\": \"nizna\",\n  \"njmo\": \"njmo\",\n  \"njonja\": \"njonja\",\n  \"nkf\": \"nkf\",\n  \"nkk\": \"nkk\",\n  \"nko\": \"nko\",\n  \"nl\": \"nl\",\n  \"nlg\": \"nlg\",\n  \"nlr\": \"nlr\",\n  \"nmc\": \"nmc\",\n  \"nme\": \"nme\",\n  \"nmi\": \"nmi\",\n  \"nmp\": \"nmp\",\n  \"nmr\": \"nmr\",\n  \"nmtd\": \"nmtd\",\n  \"nni\": \"nni\",\n  \"nnwb\": \"nnwb\",\n  \"no\": \"no\",\n  \"noaa\": \"noaa\",\n  \"noachs\": \"noach\",\n  \"nob\": \"nob\",\n  \"nobel\": \"nobel\",\n  \"nobelprijs\": \"nobelprijs\",\n  \"nobelprijswinnaar\": \"nobelprijswinnar\",\n  \"nobi\": \"nobi\",\n  \"nobis\": \"nobis\",\n  \"nobisprogramma\": \"nobisprogramma\",\n  \"noch\": \"noch\",\n  \"nodeloos\": \"nodelos\",\n  \"nodeloosheid\": \"nodelos\",\n  \"nodeloze\": \"nodeloz\",\n  \"nodig\": \"nodig\",\n  \"nodige\": \"nodig\",\n  \"nodigs\": \"nodig\",\n  \"nodigt\": \"nodigt\",\n  \"noell\": \"noell\",\n  \"noem\": \"noem\",\n  \"noemde\": \"noemd\",\n  \"noemden\": \"noemd\",\n  \"noemen\": \"noem\",\n  \"noemenswaardig\": \"noemenswaard\",\n  \"noemenswaardige\": \"noemenswaard\",\n  \"noemt\": \"noemt\",\n  \"nog\": \"nog\",\n  \"nóg\": \"nog\",\n  \"nòg\": \"nòg\",\n  \"nogal\": \"nogal\",\n  \"nogepa\": \"nogepa\",\n  \"nogh\": \"nogh\",\n  \"nogmaals\": \"nogmal\",\n  \"noh\": \"noh\",\n  \"nom\": \"nom\",\n  \"nominaal\": \"nominal\",\n  \"nominale\": \"nominal\",\n  \"nominatie\": \"nominatie\",\n  \"nominaties\": \"nominaties\",\n  \"nomura\": \"nomura\",\n  \"non\": \"non\",\n  \"nonattainment\": \"nonattainment\",\n  \"nonchalant\": \"nonchalant\",\n  \"nonferro\": \"nonferro\",\n  \"nonna\": \"nonna\",\n  \"nonvlinder\": \"nonvlinder\",\n  \"nood\": \"nod\",\n  \"noodgedwongen\": \"noodgedwong\",\n  \"noodgevallen\": \"noodgevall\",\n  \"noodhulporganisaties\": \"noodhulporganisaties\",\n  \"noodkreet\": \"noodkret\",\n  \"noodlijdende\": \"noodlijd\",\n  \"noodlot\": \"noodlot\",\n  \"noodlotgrote\": \"noodlotgrot\",\n  \"noodlottig\": \"noodlott\",\n  \"noodlottige\": \"noodlott\",\n  \"noodlottigheid\": \"noodlott\",\n  \"noodlotzware\": \"noodlotzwar\",\n  \"noodstroomdieselinstallatie\": \"noodstroomdieselinstallatie\",\n  \"noodstroomvoorziening\": \"noodstroomvoorzien\",\n  \"noodweer\": \"noodwer\",\n  \"noodwendig\": \"noodwend\",\n  \"noodzaak\": \"noodzak\",\n  \"noodzaakt\": \"noodzaakt\",\n  \"noodzakelijk\": \"noodzak\",\n  \"noodzakelijke\": \"noodzak\",\n  \"noodzakelijkerwijs\": \"noodzakelijkerwijs\",\n  \"noodzaken\": \"noodzak\",\n  \"nooit\": \"nooit\",\n  \"nóoit\": \"nooit\",\n  \"noòit\": \"noòit\",\n  \"nóóit\": \"nooit\",\n  \"noopt\": \"noopt\",\n  \"noorbeek\": \"noorbek\",\n  \"noord\": \"noord\",\n  \"noordafrikaanse\": \"noordafrikan\",\n  \"noordamerikaanse\": \"noordamerikan\",\n  \"noordatlantische\": \"noordatlantisch\",\n  \"noordbrabantse\": \"noordbrabant\",\n  \"noordduitse\": \"noordduit\",\n  \"noordelijk\": \"noordelijk\",\n  \"noordelijke\": \"noordelijk\",\n  \"noordelijker\": \"noordelijker\",\n  \"noordelijkste\": \"noordelijkst\",\n  \"noorden\": \"noord\",\n  \"noorder\": \"noorder\",\n  \"noorderhaaks\": \"noorderhak\",\n  \"noorderkwartier\": \"noorderkwartier\",\n  \"noordervliet\": \"noordervliet\",\n  \"noordfranse\": \"noordfran\",\n  \"noordhollandse\": \"noordholland\",\n  \"noordholt\": \"noordholt\",\n  \"noordkoreaanse\": \"noordkoreaan\",\n  \"noordkoreanen\": \"noordkorean\",\n  \"noordkust\": \"noordkust\",\n  \"noordlijn\": \"noordlijn\",\n  \"noordlimburgse\": \"noordlimburg\",\n  \"noordnoorse\": \"noordnor\",\n  \"noordoever\": \"noordoever\",\n  \"noordoost\": \"noordoost\",\n  \"noordoosten\": \"noordoost\",\n  \"noordoostgrens\": \"noordoostgren\",\n  \"noordoostpolder\": \"noordoostpolder\",\n  \"noordpool\": \"noordpol\",\n  \"noordrand\": \"noordrand\",\n  \"noordrijn\": \"noordrijn\",\n  \"noordse\": \"noord\",\n  \"noordwaarts\": \"noordwaart\",\n  \"noordwand\": \"noordwand\",\n  \"noordwest\": \"noordwest\",\n  \"noordwestelijke\": \"noordwest\",\n  \"noordwesten\": \"noordwest\",\n  \"noordwestpunt\": \"noordwestpunt\",\n  \"noordwijk\": \"noordwijk\",\n  \"noordwijkerhout\": \"noordwijkerhout\",\n  \"noordzee\": \"noordzee\",\n  \"noordzeebadplaatsen\": \"noordzeebadplaats\",\n  \"noordzeebodem\": \"noordzeebodem\",\n  \"noordzeekanaal\": \"noordzeekanal\",\n  \"noordzeekust\": \"noordzeekust\",\n  \"noordzeekustzone\": \"noordzeekustzon\",\n  \"noordzeevissers\": \"noordzeevisser\",\n  \"noordzeezand\": \"noordzeezand\",\n  \"noors\": \"nor\",\n  \"noorse\": \"nor\",\n  \"noort\": \"noort\",\n  \"noorwegen\": \"noorweg\",\n  \"nooter\": \"nooter\",\n  \"nop\": \"nop\",\n  \"noppenstructuur\": \"noppenstructur\",\n  \"nord\": \"nord\",\n  \"nordberg\": \"nordberg\",\n  \"nordmann\": \"nordmann\",\n  \"nordrhein\": \"nordrhein\",\n  \"nordtank\": \"nordtank\",\n  \"noren\": \"nor\",\n  \"norester\": \"norester\",\n  \"norg\": \"norg\",\n  \"norm\": \"norm\",\n  \"normaal\": \"normal\",\n  \"normaalbedrijf\": \"normaalbedrijf\",\n  \"normaalvermogen\": \"normaalvermog\",\n  \"normadressant\": \"normadressant\",\n  \"normale\": \"normal\",\n  \"normalisatie\": \"normalisatie\",\n  \"normaliseren\": \"normaliser\",\n  \"normaliteit\": \"normaliteit\",\n  \"normaliter\": \"normaliter\",\n  \"normandië\": \"normandie\",\n  \"normandische\": \"normandisch\",\n  \"normbepalingen\": \"normbepal\",\n  \"normblad\": \"normblad\",\n  \"normbladen\": \"normblad\",\n  \"normconcentratie\": \"normconcentratie\",\n  \"normen\": \"norm\",\n  \"normering\": \"normer\",\n  \"normontwerp\": \"normontwerp\",\n  \"normoverschreiding\": \"normoverschreid\",\n  \"normoverschrijding\": \"normoverschrijd\",\n  \"normstelling\": \"normstell\",\n  \"normstijging\": \"normstijg\",\n  \"norned\": \"norned\",\n  \"norsk\": \"norsk\",\n  \"norske\": \"norsk\",\n  \"north\": \"north\",\n  \"norvell\": \"norvell\",\n  \"norway\": \"norway\",\n  \"norwich\": \"norwich\",\n  \"not\": \"not\",\n  \"nota\": \"nota\",\n  \"notabene\": \"notab\",\n  \"notaris\": \"notaris\",\n  \"notebooks\": \"notebok\",\n  \"noteerde\": \"noteerd\",\n  \"noteerden\": \"noteerd\",\n  \"noten\": \"not\",\n  \"notengezichtjes\": \"notengezichtjes\",\n  \"noteren\": \"noter\",\n  \"noterende\": \"noter\",\n  \"notering\": \"noter\",\n  \"notie\": \"notie\",\n  \"notitie\": \"notitie\",\n  \"notre\": \"notr\",\n  \"nou\": \"nou\",\n  \"nouveau\": \"nouveau\",\n  \"nouwen\": \"nouw\",\n  \"nova\": \"nova\",\n  \"novadan\": \"novadan\",\n  \"novatie\": \"novatie\",\n  \"novel\": \"novel\",\n  \"novem\": \"novem\",\n  \"november\": \"november\",\n  \"novembernummer\": \"novembernummer\",\n  \"novemproject\": \"novemproject\",\n  \"novib\": \"novib\",\n  \"noviteit\": \"noviteit\",\n  \"noviteiten\": \"noviteit\",\n  \"nox\": \"nox\",\n  \"noxon\": \"noxon\",\n  \"noz\": \"noz\",\n  \"nozema\": \"nozema\",\n  \"nozzle\": \"nozzl\",\n  \"nozzles\": \"nozzles\",\n  \"npf\": \"npf\",\n  \"npi\": \"npi\",\n  \"npra\": \"npra\",\n  \"nr\": \"nr\",\n  \"nra\": \"nra\",\n  \"nrb\": \"nrb\",\n  \"nrc\": \"nrc\",\n  \"nrel\": \"nrel\",\n  \"nrit\": \"nrit\",\n  \"nrs\": \"nrs\",\n  \"nrsp\": \"nrsp\",\n  \"ns\": \"ns\",\n  \"nsg\": \"nsg\",\n  \"nskm\": \"nskm\",\n  \"nta\": \"nta\",\n  \"nts\": \"nts\",\n  \"nu\": \"nu\",\n  \"nú\": \"nu\",\n  \"nù\": \"nù\",\n  \"nuanceren\": \"nuancer\",\n  \"nuarimol\": \"nuarimol\",\n  \"nubl\": \"nubl\",\n  \"nuchter\": \"nuchter\",\n  \"nuchtere\": \"nuchter\",\n  \"nucleair\": \"nucleair\",\n  \"nucleaire\": \"nucleair\",\n  \"nuclear\": \"nuclear\",\n  \"nuclide\": \"nuclid\",\n  \"nucliden\": \"nuclid\",\n  \"nuenen\": \"nuen\",\n  \"nuf\": \"nuf\",\n  \"nuffige\": \"nuffig\",\n  \"nufjes\": \"nufjes\",\n  \"nukjes\": \"nukjes\",\n  \"nul\": \"nul\",\n  \"nulemissie\": \"nulemissie\",\n  \"nulkortingsregeling\": \"nulkortingsregel\",\n  \"nullast\": \"nullast\",\n  \"nullijn\": \"nullijn\",\n  \"nulliteit\": \"nulliteit\",\n  \"nulmeting\": \"nulmet\",\n  \"nuloptie\": \"nuloptie\",\n  \"numansdorp\": \"numansdorp\",\n  \"numerieke\": \"numeriek\",\n  \"nummer\": \"nummer\",\n  \"nummers\": \"nummer\",\n  \"nunspeet\": \"nunspet\",\n  \"nuon\": \"nuon\",\n  \"nut\": \"nut\",\n  \"nutek\": \"nutek\",\n  \"nuth\": \"nuth\",\n  \"nutricia\": \"nutricia\",\n  \"nutriënten\": \"nutrient\",\n  \"nutriëntengebruik\": \"nutrientengebruik\",\n  \"nutriëntenmanagement\": \"nutrientenmanagement\",\n  \"nutriëntenverliezen\": \"nutrientenverliez\",\n  \"nutsbedrijf\": \"nutsbedrijf\",\n  \"nutsbedrijven\": \"nutsbedrijv\",\n  \"nutteloos\": \"nuttelos\",\n  \"nutteloosheid\": \"nuttelos\",\n  \"nutteloze\": \"nutteloz\",\n  \"nuttelozer\": \"nuttelozer\",\n  \"nuttig\": \"nuttig\",\n  \"nuttige\": \"nuttig\",\n  \"nuttigen\": \"nuttig\",\n  \"nuttiger\": \"nuttiger\",\n  \"nv\": \"nv\",\n  \"nva\": \"nva\",\n  \"nvc\": \"nvc\",\n  \"nvca\": \"nvca\",\n  \"nvg\": \"nvg\",\n  \"nvkl\": \"nvkl\",\n  \"nvm\": \"nvm\",\n  \"nvn\": \"nvn\",\n  \"nvob\": \"nvob\",\n  \"nvpb\": \"nvpb\",\n  \"nvpg\": \"nvpg\",\n  \"nvrd\": \"nvrd\",\n  \"nvtb\": \"nvtb\",\n  \"nvv\": \"nvv\",\n  \"nvvh\": \"nvvh\",\n  \"nvz\": \"nvz\",\n  \"nw\": \"nw\",\n  \"nwo\": \"nwo\",\n  \"nwr\": \"nwr\",\n  \"nww\": \"nww\",\n  \"nylon\": \"nylon\",\n  \"nytrosylatie\": \"nytrosylatie\",\n  \"o\": \"o\",\n  \"oak\": \"oak\",\n  \"oasis\": \"oasis\",\n  \"obeessie\": \"obeessie\",\n  \"oberhausen\": \"oberhaus\",\n  \"oberlausitz\": \"oberlausitz\",\n  \"object\": \"object\",\n  \"objecten\": \"object\",\n  \"objectief\": \"objectief\",\n  \"objectieve\": \"objectiev\",\n  \"objectiveerbare\": \"objectiver\",\n  \"objectiviteit\": \"objectiviteit\",\n  \"objekten\": \"objekt\",\n  \"oblast\": \"oblast\",\n  \"obligatie\": \"obligatie\",\n  \"obligaties\": \"obligaties\",\n  \"obm\": \"obm\",\n  \"obscure\": \"obscur\",\n  \"obscuur\": \"obscur\",\n  \"obscuurweg\": \"obscuurweg\",\n  \"observatiepost\": \"observatiepost\",\n  \"observatieposten\": \"observatiepost\",\n  \"observatieputten\": \"observatieput\",\n  \"observatietoren\": \"observatietor\",\n  \"observer\": \"observer\",\n  \"observeren\": \"observer\",\n  \"obsessie\": \"obsessie\",\n  \"obsidiaan\": \"obsidiaan\",\n  \"obstakel\": \"obstakel\",\n  \"obstakels\": \"obstakel\",\n  \"ocato\": \"ocato\",\n  \"occ\": \"occ\",\n  \"occupational\": \"occupational\",\n  \"occupeer\": \"occuper\",\n  \"occuperen\": \"occuper\",\n  \"occurence\": \"occurenc\",\n  \"océ\": \"oce\",\n  \"oceaan\": \"oceaan\",\n  \"oceaanbodem\": \"oceaanbodem\",\n  \"oceaanproject\": \"oceaanproject\",\n  \"oceaanwater\": \"oceaanwater\",\n  \"ocean\": \"ocean\",\n  \"oceanen\": \"ocean\",\n  \"oceanic\": \"oceanic\",\n  \"oceanograaf\": \"oceanograf\",\n  \"oceanografen\": \"oceanograf\",\n  \"oceanografie\": \"oceanografie\",\n  \"oceanoloog\": \"oceanolog\",\n  \"ochsenfurt\": \"ochsenfurt\",\n  \"ochten\": \"ocht\",\n  \"ochtend\": \"ochtend\",\n  \"ochtendprogramma\": \"ochtendprogramma\",\n  \"ochtends\": \"ochtend\",\n  \"ochtendstemming\": \"ochtendstemm\",\n  \"ochtendsymposium\": \"ochtendsymposium\",\n  \"octaangehalte\": \"octaangehalt\",\n  \"octrooi\": \"octrooi\",\n  \"octrooibureau\": \"octrooibureau\",\n  \"ode\": \"ode\",\n  \"odense\": \"oden\",\n  \"odescalchi\": \"odescalchi\",\n  \"odessa\": \"odessa\",\n  \"odiflora\": \"odiflora\",\n  \"odp\": \"odp\",\n  \"oecd\": \"oecd\",\n  \"oecologie\": \"oecologie\",\n  \"oecumene\": \"oecum\",\n  \"oefen\": \"oef\",\n  \"oefende\": \"oefend\",\n  \"oefenen\": \"oefen\",\n  \"oefening\": \"oefen\",\n  \"oefent\": \"oefent\",\n  \"oefenterrein\": \"oefenterrein\",\n  \"oefenterreinen\": \"oefenterrein\",\n  \"oegstgeest\": \"oegstgeest\",\n  \"oekotechnik\": \"oekotechnik\",\n  \"oekraïense\": \"oekraien\",\n  \"oekraine\": \"oekrain\",\n  \"oekraïne\": \"oekrain\",\n  \"oekraïnse\": \"oekrain\",\n  \"oer\": \"oer\",\n  \"oeral\": \"oeral\",\n  \"oerbos\": \"oerbos\",\n  \"oerbossen\": \"oerboss\",\n  \"oerlemans\": \"oerleman\",\n  \"oerwoud\": \"oerwoud\",\n  \"oerwouden\": \"oerwoud\",\n  \"oeso\": \"oeso\",\n  \"oestrogeen\": \"oestrogen\",\n  \"oestrogene\": \"oestrog\",\n  \"oestrogenen\": \"oestrogen\",\n  \"oestrogenic\": \"oestrogenic\",\n  \"oestrogens\": \"oestrogen\",\n  \"oeuvre\": \"oeuvr\",\n  \"oever\": \"oever\",\n  \"oeverbegroeiing\": \"oeverbegroei\",\n  \"oeverbeschermingen\": \"oeverbescherm\",\n  \"oeverbossen\": \"oeverboss\",\n  \"oeverinfiltratie\": \"oeverinfiltratie\",\n  \"oeverloos\": \"oeverlos\",\n  \"oeverplanten\": \"oeverplant\",\n  \"oevers\": \"oever\",\n  \"oeververbinding\": \"oeververbind\",\n  \"oezbeekse\": \"oezbek\",\n  \"of\": \"of\",\n  \"óf\": \"of\",\n  \"òf\": \"òf\",\n  \"ofelia\": \"ofelia\",\n  \"off\": \"off\",\n  \"offensieve\": \"offensiev\",\n  \"offer\": \"offer\",\n  \"offerde\": \"offerd\",\n  \"offeren\": \"offer\",\n  \"offers\": \"offer\",\n  \"offert\": \"offert\",\n  \"offerte\": \"offert\",\n  \"offertes\": \"offertes\",\n  \"office\": \"offic\",\n  \"official\": \"official\",\n  \"officials\": \"official\",\n  \"officieel\": \"officieel\",\n  \"officieels\": \"officieel\",\n  \"officiële\": \"officiel\",\n  \"officier\": \"officier\",\n  \"officieren\": \"officier\",\n  \"officierstafel\": \"officierstafel\",\n  \"offs\": \"off\",\n  \"offshore\": \"offshor\",\n  \"ofschoon\": \"ofschon\",\n  \"oftech\": \"oftech\",\n  \"oftewel\": \"oftewel\",\n  \"ofwel\": \"ofwel\",\n  \"ogachi\": \"ogachi\",\n  \"ogden\": \"ogd\",\n  \"ogen\": \"ogen\",\n  \"ogenblik\": \"ogenblik\",\n  \"ogenblikje\": \"ogenblikj\",\n  \"ogenblikkelijk\": \"ogenblik\",\n  \"ogenblikken\": \"ogenblik\",\n  \"ogenlach\": \"ogenlach\",\n  \"ogenschouw\": \"ogenschouw\",\n  \"ogenvonk\": \"ogenvonk\",\n  \"oggel\": \"oggel\",\n  \"oghenblik\": \"oghenblik\",\n  \"oginiland\": \"oginiland\",\n  \"ogoni\": \"ogoni\",\n  \"ogoniland\": \"ogoniland\",\n  \"oh\": \"oh\",\n  \"ohé\": \"ohe\",\n  \"ohio\": \"ohio\",\n  \"ohmen\": \"ohm\",\n  \"ohra\": \"ohra\",\n  \"oil\": \"oil\",\n  \"oilbooms\": \"oilbom\",\n  \"oirsbeek\": \"oirsbek\",\n  \"oisterwijk\": \"oisterwijk\",\n  \"oisterwijkse\": \"oisterwijk\",\n  \"ok\": \"ok\",\n  \"okd\": \"okd\",\n  \"oke\": \"oke\",\n  \"oklahoma\": \"oklahoma\",\n  \"öko\": \"oko\",\n  \"økologiske\": \"økologisk\",\n  \"oksels\": \"oksel\",\n  \"oktaangehalte\": \"oktaangehalt\",\n  \"oktober\": \"oktober\",\n  \"öl\": \"ol\",\n  \"olaf\": \"olaf\",\n  \"olc\": \"olc\",\n  \"old\": \"old\",\n  \"oldenzaal\": \"oldenzal\",\n  \"ole\": \"ole\",\n  \"olefinengehalte\": \"olefinengehalt\",\n  \"olefinverbund\": \"olefinverbund\",\n  \"oleg\": \"oleg\",\n  \"oleifeira\": \"oleifeira\",\n  \"olfactometer\": \"olfactometer\",\n  \"olfaktometrie\": \"olfaktometrie\",\n  \"olie\": \"olie\",\n  \"olieachtig\": \"olieacht\",\n  \"olieachtige\": \"olieacht\",\n  \"olieafscheider\": \"olieafscheider\",\n  \"olieafscheiders\": \"olieafscheider\",\n  \"oliebad\": \"oliebad\",\n  \"oliebasis\": \"oliebasis\",\n  \"oliebedrijven\": \"oliebedrijv\",\n  \"oliebestrijdingsoefening\": \"oliebestrijdingsoefen\",\n  \"oliebewerking\": \"oliebewerk\",\n  \"olieboycot\": \"olieboycot\",\n  \"oliebronnen\": \"oliebronn\",\n  \"olieconcern\": \"olieconcern\",\n  \"olieconcerns\": \"olieconcern\",\n  \"oliecrises\": \"oliecrises\",\n  \"oliedepots\": \"oliedepot\",\n  \"oliedistributiemaatschappij\": \"oliedistributiemaatschappij\",\n  \"oliedruppel\": \"oliedruppel\",\n  \"oliedruppels\": \"oliedruppel\",\n  \"oliedruppeltjes\": \"oliedruppeltjes\",\n  \"oliefilter\": \"oliefilter\",\n  \"oliefilters\": \"oliefilter\",\n  \"oliegesmeerde\": \"oliegesmeerd\",\n  \"oliegigant\": \"oliegigant\",\n  \"oliehandelaren\": \"oliehandelar\",\n  \"oliehoudend\": \"oliehoud\",\n  \"oliehoudende\": \"oliehoud\",\n  \"olieimporterende\": \"olieimporter\",\n  \"olieinstallatie\": \"olieinstallatie\",\n  \"oliekamer\": \"oliekamer\",\n  \"olielaag\": \"olielag\",\n  \"olieleidingen\": \"olieleid\",\n  \"olielekbak\": \"olielekbak\",\n  \"olielekkage\": \"olielekkag\",\n  \"olielekkages\": \"olielekkages\",\n  \"oliemaatschappij\": \"oliemaatschappij\",\n  \"oliemaatschappijen\": \"oliemaatschappij\",\n  \"olieminister\": \"olieminister\",\n  \"oliemonsters\": \"oliemonster\",\n  \"oliën\": \"olien\",\n  \"olieongeluk\": \"olieongeluk\",\n  \"olieopbrengst\": \"olieopbrengst\",\n  \"olieopslag\": \"olieopslag\",\n  \"olieopslagtanks\": \"olieopslagtank\",\n  \"oliepijpleiding\": \"oliepijpleid\",\n  \"oliepijpleidingen\": \"oliepijpleid\",\n  \"olieplatform\": \"olieplatform\",\n  \"olieplatforms\": \"olieplatform\",\n  \"olieprijs\": \"olieprijs\",\n  \"olieprijzen\": \"olieprijz\",\n  \"olieproducenten\": \"olieproducent\",\n  \"olieproducerende\": \"olieproducer\",\n  \"olieprodukten\": \"olieprodukt\",\n  \"olieproduktie\": \"olieproduktie\",\n  \"olieproduktiebedrijf\": \"olieproduktiebedrijf\",\n  \"olieproduktspecificaties\": \"olieproduktspecificaties\",\n  \"olieprojecten\": \"olieproject\",\n  \"olieraffinaderij\": \"olieraffinaderij\",\n  \"olieraffinaderijen\": \"olieraffinaderij\",\n  \"olieraffinage\": \"olieraffinag\",\n  \"olieramp\": \"olieramp\",\n  \"olierampen\": \"olieramp\",\n  \"oliereserves\": \"oliereserves\",\n  \"olieresten\": \"olierest\",\n  \"olierijke\": \"olierijk\",\n  \"oliescheider\": \"oliescheider\",\n  \"oliescheidingsinstallatie\": \"oliescheidingsinstallatie\",\n  \"olieschermen\": \"oliescherm\",\n  \"olieschoonmaak\": \"olieschoonmak\",\n  \"oliesector\": \"oliesector\",\n  \"olieslang\": \"olieslang\",\n  \"olieslijk\": \"olies\",\n  \"oliesoort\": \"oliesoort\",\n  \"oliesoorten\": \"oliesoort\",\n  \"oliestook\": \"oliestok\",\n  \"oliestroom\": \"oliestrom\",\n  \"olietank\": \"olietank\",\n  \"olietanker\": \"olietanker\",\n  \"olietanks\": \"olietank\",\n  \"olietekort\": \"olietekort\",\n  \"olievaten\": \"olievat\",\n  \"olieveld\": \"olieveld\",\n  \"olievelden\": \"olieveld\",\n  \"olieverf\": \"olieverf\",\n  \"olieverontreiniging\": \"olieverontrein\",\n  \"olieverontreinigingen\": \"olieverontrein\",\n  \"olievervuiling\": \"olievervuil\",\n  \"olievlek\": \"olievlek\",\n  \"olievlekken\": \"olievlek\",\n  \"olievoorraad\": \"olievoorrad\",\n  \"oliewinning\": \"oliewinn\",\n  \"oliewinsten\": \"oliewinst\",\n  \"olifant\": \"olifant\",\n  \"olifanten\": \"olifant\",\n  \"olijf\": \"olijf\",\n  \"olijfboomgaarden\": \"olijfboomgaard\",\n  \"olm\": \"olm\",\n  \"olsen\": \"ols\",\n  \"olympische\": \"olympisch\",\n  \"om\": \"om\",\n  \"óm\": \"om\",\n  \"òm\": \"òm\",\n  \"oma\": \"oma\",\n  \"omarming\": \"omarm\",\n  \"ombouw\": \"ombouw\",\n  \"ombudsman\": \"ombudsman\",\n  \"ombuigingsoperatie\": \"ombuigingsoperatie\",\n  \"omc\": \"omc\",\n  \"omdat\": \"omdat\",\n  \"omdraaide\": \"omdraaid\",\n  \"omdraaien\": \"omdraai\",\n  \"omdrongen\": \"omdrong\",\n  \"omdwaling\": \"omdwal\",\n  \"omegam\": \"omegam\",\n  \"omer\": \"omer\",\n  \"omgaan\": \"omgan\",\n  \"omgaat\": \"omgat\",\n  \"omgang\": \"omgang\",\n  \"omgebogen\": \"omgebog\",\n  \"omgebouwd\": \"omgebouwd\",\n  \"omgebouwde\": \"omgebouwd\",\n  \"omgedaan\": \"omgedan\",\n  \"omgedraaid\": \"omgedraaid\",\n  \"omgegaan\": \"omgegan\",\n  \"omgekeerd\": \"omgekeerd\",\n  \"omgekeerde\": \"omgekeerd\",\n  \"omgekomen\": \"omgekom\",\n  \"omgerekend\": \"omgerek\",\n  \"omgeslagen\": \"omgeslag\",\n  \"omgesprongen\": \"omgesprong\",\n  \"omgestaard\": \"omgestaard\",\n  \"omgeurden\": \"omgeurd\",\n  \"omgeven\": \"omgev\",\n  \"omgeving\": \"omgev\",\n  \"omgevingen\": \"omgev\",\n  \"omgevingscondities\": \"omgevingscondities\",\n  \"omgevingsfactoren\": \"omgevingsfactor\",\n  \"omgevingsinvloeden\": \"omgevingsinvloed\",\n  \"omgevingskwaliteit\": \"omgevingskwaliteit\",\n  \"omgevingslucht\": \"omgevingslucht\",\n  \"omgevingspsychologie\": \"omgevingspsychologie\",\n  \"omgevormd\": \"omgevormd\",\n  \"omgezeild\": \"omgezeild\",\n  \"omgezet\": \"omgezet\",\n  \"omgezworven\": \"omgezworv\",\n  \"omging\": \"omging\",\n  \"omgingen\": \"omging\",\n  \"omhaal\": \"omhal\",\n  \"omhakken\": \"omhak\",\n  \"omheen\": \"omhen\",\n  \"omheinig\": \"omhein\",\n  \"omheisde\": \"omheisd\",\n  \"omhels\": \"omhel\",\n  \"omhelsd\": \"omhelsd\",\n  \"omhelsde\": \"omhelsd\",\n  \"omhelsden\": \"omhelsd\",\n  \"omhelse\": \"omhel\",\n  \"omhelst\": \"omhelst\",\n  \"omhelzen\": \"omhelz\",\n  \"omhelzing\": \"omhelz\",\n  \"omhelzingen\": \"omhelz\",\n  \"omhoog\": \"omhog\",\n  \"omhoogduwen\": \"omhoogduw\",\n  \"omhuld\": \"omhuld\",\n  \"omhulling\": \"omhull\",\n  \"omhulsel\": \"omhulsel\",\n  \"omive\": \"omiv\",\n  \"omkapte\": \"omkapt\",\n  \"omkeren\": \"omker\",\n  \"omkerende\": \"omker\",\n  \"omkijken\": \"omkijk\",\n  \"omkijkende\": \"omkijk\",\n  \"omklemde\": \"omklemd\",\n  \"omkopen\": \"omkop\",\n  \"omkoperij\": \"omkoperij\",\n  \"omkransing\": \"omkrans\",\n  \"omkronkelen\": \"omkronkel\",\n  \"omlaag\": \"omlag\",\n  \"omleggen\": \"omlegg\",\n  \"omleiden\": \"omleid\",\n  \"omleidingen\": \"omleid\",\n  \"omleidingstunnel\": \"omleidingstunnel\",\n  \"omliggende\": \"omligg\",\n  \"omlijnd\": \"omlijnd\",\n  \"omlijst\": \"omlijst\",\n  \"omlijste\": \"omlijst\",\n  \"omlijstte\": \"omlijst\",\n  \"omlijstten\": \"omlijst\",\n  \"omloop\": \"omlop\",\n  \"ommedwaling\": \"ommedwal\",\n  \"ommeheen\": \"ommehen\",\n  \"ommekeer\": \"ommeker\",\n  \"ommelijn\": \"ommelijn\",\n  \"ommelijnen\": \"ommelijn\",\n  \"ommen\": \"omm\",\n  \"ommense\": \"ommen\",\n  \"ommeren\": \"ommer\",\n  \"omn\": \"omn\",\n  \"omneveling\": \"omnevel\",\n  \"omnium\": \"omnium\",\n  \"omo\": \"omo\",\n  \"omploegen\": \"omploeg\",\n  \"omraming\": \"omram\",\n  \"omrekeningsfactoren\": \"omrekeningsfactor\",\n  \"omringd\": \"omringd\",\n  \"omringde\": \"omringd\",\n  \"omringden\": \"omringd\",\n  \"omringende\": \"omring\",\n  \"omroep\": \"omroep\",\n  \"omruil\": \"omruil\",\n  \"omruilen\": \"omruil\",\n  \"omschakelen\": \"omschakel\",\n  \"omschakeling\": \"omschakel\",\n  \"omscholing\": \"omschol\",\n  \"omschreef\": \"omschref\",\n  \"omschreven\": \"omschrev\",\n  \"omschrijft\": \"omschrijft\",\n  \"omschrijving\": \"omschrijv\",\n  \"omschrijvingen\": \"omschrijv\",\n  \"omslaan\": \"omslan\",\n  \"omslaand\": \"omslaand\",\n  \"omslachtig\": \"omslacht\",\n  \"omslag\": \"omslag\",\n  \"omslagjes\": \"omslagjes\",\n  \"omsloegen\": \"omsloeg\",\n  \"omspringen\": \"omspring\",\n  \"omspringt\": \"omspringt\",\n  \"omspuiten\": \"omspuit\",\n  \"omstandigheden\": \"omstand\",\n  \"omstreden\": \"omstred\",\n  \"omstreek\": \"omstrek\",\n  \"omstreeks\": \"omstrek\",\n  \"omstreken\": \"omstrek\",\n  \"omtoverd\": \"omtoverd\",\n  \"omtovering\": \"omtover\",\n  \"omtrent\": \"omtrent\",\n  \"omvang\": \"omvang\",\n  \"omvangen\": \"omvang\",\n  \"omvangende\": \"omvang\",\n  \"omvangrijk\": \"omvangrijk\",\n  \"omvangrijke\": \"omvangrijk\",\n  \"omvangrijker\": \"omvangrijker\",\n  \"omvangt\": \"omvangt\",\n  \"omvat\": \"omvat\",\n  \"omvatte\": \"omvat\",\n  \"omvatten\": \"omvat\",\n  \"omvattend\": \"omvat\",\n  \"omvattende\": \"omvat\",\n  \"omver\": \"omver\",\n  \"omverwerpen\": \"omverwerp\",\n  \"omvormer\": \"omvormer\",\n  \"omvormers\": \"omvormer\",\n  \"omvorming\": \"omvorm\",\n  \"omwaaien\": \"omwaai\",\n  \"omweg\": \"omweg\",\n  \"omwille\": \"omwill\",\n  \"omwonden\": \"omwond\",\n  \"omwondene\": \"omwond\",\n  \"omwonende\": \"omwon\",\n  \"omwonenden\": \"omwon\",\n  \"omzag\": \"omzag\",\n  \"omzeild\": \"omzeild\",\n  \"omzeilen\": \"omzeil\",\n  \"omzet\": \"omzet\",\n  \"omzetachterstand\": \"omzetachterstand\",\n  \"omzetgroei\": \"omzetgroei\",\n  \"omzetreductie\": \"omzetreductie\",\n  \"omzetstijging\": \"omzetstijg\",\n  \"omzetten\": \"omzet\",\n  \"omzetters\": \"omzetter\",\n  \"omzetting\": \"omzet\",\n  \"omzettingscoëfficiënt\": \"omzettingscoefficient\",\n  \"omzetverhoging\": \"omzetverhog\",\n  \"omzetverlies\": \"omzetverlies\",\n  \"omzichtig\": \"omzicht\",\n  \"omzichtige\": \"omzicht\",\n  \"omzichtigheid\": \"omzicht\",\n  \"omzomeren\": \"omzomer\",\n  \"on\": \"on\",\n  \"onaangekondigd\": \"onaangekondigd\",\n  \"onaangekondigde\": \"onaangekondigd\",\n  \"onaangenaam\": \"onaangenam\",\n  \"onaangename\": \"onaangenam\",\n  \"onaangeroerd\": \"onaangeroerd\",\n  \"onaangetast\": \"onaangetast\",\n  \"onaanroerbare\": \"onaanroer\",\n  \"onaantrekkelijk\": \"onaantrek\",\n  \"onaantrekkelijkheid\": \"onaantrek\",\n  \"onaanvaardbaar\": \"onaanvaard\",\n  \"onaanvaardbare\": \"onaanvaard\",\n  \"onaardig\": \"onaard\",\n  \"onaardige\": \"onaard\",\n  \"onacceptabel\": \"onacceptabel\",\n  \"onafgebroken\": \"onafgebrok\",\n  \"onafhankelijk\": \"onafhank\",\n  \"onafhankelijke\": \"onafhank\",\n  \"onafhankelijkheid\": \"onafhank\",\n  \"onafhankelijkheidsbeweging\": \"onafhankelijkheidsbeweg\",\n  \"onafwijsbaar\": \"onafwijs\",\n  \"onas\": \"onas\",\n  \"onbalans\": \"onbalan\",\n  \"onbarmhartig\": \"onbarmhart\",\n  \"onbedachtzaam\": \"onbedachtzam\",\n  \"onbedachtzaamheid\": \"onbedachtzam\",\n  \"onbedijkte\": \"onbedijkt\",\n  \"onbedoeld\": \"onbedoeld\",\n  \"onbedorvenheid\": \"onbedorv\",\n  \"onbeduidend\": \"onbeduid\",\n  \"onbeduidende\": \"onbeduid\",\n  \"onbeduidender\": \"onbeduidender\",\n  \"onbeduidendheid\": \"onbeduid\",\n  \"onbedwingbaar\": \"onbedwing\",\n  \"onbedwingbare\": \"onbedwing\",\n  \"onbeghrijpelijk\": \"onbeghrijp\",\n  \"onbegonnen\": \"onbegonn\",\n  \"onbegrijpelijk\": \"onbegrijp\",\n  \"onbegrijpelijke\": \"onbegrijp\",\n  \"onbegrijpelijker\": \"onbegrijpelijker\",\n  \"onbegrijpelijkheid\": \"onbegrijp\",\n  \"onbegrijpend\": \"onbegrijp\",\n  \"onbegrip\": \"onbegrip\",\n  \"onbehaaglijk\": \"onbehag\",\n  \"onbehagelijk\": \"onbehag\",\n  \"onbehagelijks\": \"onbehag\",\n  \"onbehandeld\": \"onbehandeld\",\n  \"onbeholpen\": \"onbeholp\",\n  \"onbehoorlijk\": \"onbehor\",\n  \"onbehoorlijkheid\": \"onbehor\",\n  \"onbehouwens\": \"onbehouwen\",\n  \"onbekend\": \"onbek\",\n  \"onbekende\": \"onbek\",\n  \"onbekenden\": \"onbek\",\n  \"onbekendheid\": \"onbek\",\n  \"onbelangrijk\": \"onbelangrijk\",\n  \"onbelast\": \"onbelast\",\n  \"onbelastbaarheid\": \"onbelast\",\n  \"onbelaste\": \"onbelast\",\n  \"onbeleefd\": \"onbeleefd\",\n  \"onbeleefdheden\": \"onbeleefd\",\n  \"onbemand\": \"onbemand\",\n  \"onbeminnelijk\": \"onbeminn\",\n  \"onbenaderbaar\": \"onbenader\",\n  \"onbenaderbare\": \"onbenader\",\n  \"onbenullig\": \"onbenull\",\n  \"onbenut\": \"onbenut\",\n  \"onbenutte\": \"onbenut\",\n  \"onbepaald\": \"onbepaald\",\n  \"onbepaalde\": \"onbepaald\",\n  \"onbeperkt\": \"onbeperkt\",\n  \"onbeperkte\": \"onbeperkt\",\n  \"onberaden\": \"onberad\",\n  \"onberedeneerd\": \"onberedeneerd\",\n  \"onbereikbaar\": \"onbereik\",\n  \"onbereikbare\": \"onbereik\",\n  \"onberekenbaar\": \"onbereken\",\n  \"onberispelijk\": \"onberisp\",\n  \"onberispelijkheid\": \"onberisp\",\n  \"onbeschoft\": \"onbeschoft\",\n  \"onbespreekbaar\": \"onbesprek\",\n  \"onbestaanbaar\": \"onbestan\",\n  \"onbestemde\": \"onbestemd\",\n  \"onbestendig\": \"onbestend\",\n  \"onbetaalbaar\": \"onbetal\",\n  \"onbetaalbare\": \"onbetal\",\n  \"onbetaald\": \"onbetaald\",\n  \"onbetrouwbare\": \"onbetrouw\",\n  \"onbetwijfelbaar\": \"onbetwijfel\",\n  \"onbevoegd\": \"onbevoegd\",\n  \"onbevredigend\": \"onbevred\",\n  \"onbeweeglijke\": \"onbeweg\",\n  \"onbewegelijk\": \"onbeweg\",\n  \"onbewegelijke\": \"onbeweg\",\n  \"onbewegelijkheid\": \"onbeweg\",\n  \"onbewerkt\": \"onbewerkt\",\n  \"onbewimpeld\": \"onbewimpeld\",\n  \"onbewolkt\": \"onbewolkt\",\n  \"onbewolkte\": \"onbewolkt\",\n  \"onbewoond\": \"onbewoond\",\n  \"onbewust\": \"onbewust\",\n  \"onbewuste\": \"onbewust\",\n  \"onbewustheid\": \"onbewust\",\n  \"onbezorgd\": \"onbezorgd\",\n  \"onbrandbaar\": \"onbrand\",\n  \"onbrandbare\": \"onbrand\",\n  \"onbreekbaar\": \"onbrek\",\n  \"onbreekbaarheid\": \"onbrek\",\n  \"onbruikbaar\": \"onbruik\",\n  \"onbruikbare\": \"onbruik\",\n  \"oncontroleerbaar\": \"oncontroler\",\n  \"ondankbaar\": \"ondank\",\n  \"ondankbare\": \"ondank\",\n  \"ondanks\": \"ondank\",\n  \"ondemocratische\": \"ondemocratisch\",\n  \"onden\": \"ond\",\n  \"onder\": \"onder\",\n  \"onderaan\": \"onderan\",\n  \"onderaannemer\": \"onderaannemer\",\n  \"onderaannemers\": \"onderaannemer\",\n  \"onderaardse\": \"onderaard\",\n  \"onderafdichting\": \"onderafdicht\",\n  \"onderbelichting\": \"onderbelicht\",\n  \"onderbouwd\": \"onderbouwd\",\n  \"onderbouwde\": \"onderbouwd\",\n  \"onderbouwen\": \"onderbouw\",\n  \"onderbouwing\": \"onderbouw\",\n  \"onderbrak\": \"onderbrak\",\n  \"onderbraken\": \"onderbrak\",\n  \"onderbrekingen\": \"onderbrek\",\n  \"onderbrengen\": \"onderbreng\",\n  \"onderbroek\": \"onderbroek\",\n  \"onderbroken\": \"onderbrok\",\n  \"onderdak\": \"onderdak\",\n  \"onderdeel\": \"onderdel\",\n  \"onderdelen\": \"onderdel\",\n  \"onderdoen\": \"onderdoen\",\n  \"onderdruk\": \"onderdruk\",\n  \"onderdrukken\": \"onderdruk\",\n  \"onderdrukt\": \"onderdrukt\",\n  \"onderen\": \"onder\",\n  \"ondergaan\": \"ondergan\",\n  \"ondergang\": \"ondergang\",\n  \"ondergebracht\": \"ondergebracht\",\n  \"ondergedompeld\": \"ondergedompeld\",\n  \"ondergedompelde\": \"ondergedompeld\",\n  \"ondergeschikt\": \"ondergeschikt\",\n  \"ondergeschikte\": \"ondergeschikt\",\n  \"ondergeschoven\": \"ondergeschov\",\n  \"ondergewaardeerd\": \"ondergewaardeerd\",\n  \"ondergewerkt\": \"ondergewerkt\",\n  \"onderging\": \"onderg\",\n  \"ondergingen\": \"onderg\",\n  \"ondergoed\": \"ondergoed\",\n  \"ondergrens\": \"ondergren\",\n  \"ondergrond\": \"ondergrond\",\n  \"ondergronden\": \"ondergrond\",\n  \"ondergrondisolatie\": \"ondergrondisolatie\",\n  \"ondergronds\": \"ondergrond\",\n  \"ondergrondse\": \"ondergrond\",\n  \"onderhandelaar\": \"onderhandelar\",\n  \"onderhandelaars\": \"onderhandelar\",\n  \"onderhandeld\": \"onderhandeld\",\n  \"onderhandelen\": \"onderhandel\",\n  \"onderhandeling\": \"onderhandel\",\n  \"onderhandelingen\": \"onderhandel\",\n  \"onderhandelt\": \"onderhandelt\",\n  \"onderhands\": \"onderhand\",\n  \"onderheid\": \"onder\",\n  \"onderhevig\": \"onderhev\",\n  \"onderhield\": \"onderhield\",\n  \"onderhoud\": \"onderhoud\",\n  \"onderhoudbaarheid\": \"onderhoud\",\n  \"onderhouden\": \"onderhoud\",\n  \"onderhoudend\": \"onderhoud\",\n  \"onderhoudsactiviteiten\": \"onderhoudsactiviteit\",\n  \"onderhoudsarm\": \"onderhoudsarm\",\n  \"onderhoudsarme\": \"onderhoudsarm\",\n  \"onderhoudsbaggerwerk\": \"onderhoudsbaggerwerk\",\n  \"onderhoudsbeurten\": \"onderhoudsbeurt\",\n  \"onderhoudscontract\": \"onderhoudscontract\",\n  \"onderhoudsgevoeligheid\": \"onderhoudsgevoel\",\n  \"onderhoudskosten\": \"onderhoudskost\",\n  \"onderhoudsmanagement\": \"onderhoudsmanagement\",\n  \"onderhoudsmiddelen\": \"onderhoudsmiddel\",\n  \"onderhoudsovereenkomst\": \"onderhoudsovereenkomst\",\n  \"onderhoudsperioden\": \"onderhoudsperiod\",\n  \"onderhoudsprogramma\": \"onderhoudsprogramma\",\n  \"onderhoudsschilders\": \"onderhoudsschilder\",\n  \"onderhoudsstructuur\": \"onderhoudsstructur\",\n  \"onderhoudsvriendelijke\": \"onderhoudsvriend\",\n  \"onderhoudsvrij\": \"onderhoudsvrij\",\n  \"onderhoudswerk\": \"onderhoudswerk\",\n  \"onderhoudswerkzaamheden\": \"onderhoudswerkzam\",\n  \"onderhuidse\": \"onderhuid\",\n  \"onderin\": \"onderin\",\n  \"onderkant\": \"onderkant\",\n  \"onderkend\": \"onderk\",\n  \"onderkent\": \"onderkent\",\n  \"onderlaag\": \"onderlag\",\n  \"onderlagen\": \"onderlag\",\n  \"onderliggende\": \"onderligg\",\n  \"onderling\": \"onderl\",\n  \"onderlinge\": \"onderl\",\n  \"ondermaat\": \"ondermat\",\n  \"ondermeer\": \"ondermer\",\n  \"ondermijnen\": \"ondermijn\",\n  \"ondermijnt\": \"ondermijnt\",\n  \"onderminister\": \"onderminister\",\n  \"ondermode\": \"ondermod\",\n  \"onderneemt\": \"onderneemt\",\n  \"ondernemen\": \"ondernem\",\n  \"ondernemer\": \"ondernemer\",\n  \"ondernemers\": \"ondernemer\",\n  \"ondernemersbond\": \"ondernemersbond\",\n  \"ondernemerschap\": \"ondernemerschap\",\n  \"ondernemersorganisatie\": \"ondernemersorganisatie\",\n  \"ondernemersorganisaties\": \"ondernemersorganisaties\",\n  \"onderneming\": \"ondernem\",\n  \"ondernemingen\": \"ondernem\",\n  \"ondernemingsorganisaties\": \"ondernemingsorganisaties\",\n  \"ondernemingsraden\": \"ondernemingsrad\",\n  \"ondernemingsstrategiën\": \"ondernemingsstrategien\",\n  \"ondernomen\": \"ondernom\",\n  \"onderontwikkeld\": \"onderontwikkeld\",\n  \"onderop\": \"onderop\",\n  \"onderricht\": \"onderricht\",\n  \"onderrok\": \"onderrok\",\n  \"onderschat\": \"onderschat\",\n  \"onderscheid\": \"onderscheid\",\n  \"onderscheiden\": \"onderscheid\",\n  \"onderscheiding\": \"onderscheid\",\n  \"onderscheids\": \"onderscheid\",\n  \"onderscheidt\": \"onderscheidt\",\n  \"onderscheppen\": \"onderschepp\",\n  \"onderschept\": \"onderschept\",\n  \"onderschreden\": \"onderschred\",\n  \"onderschreef\": \"onderschref\",\n  \"onderschreven\": \"onderschrev\",\n  \"onderschrift\": \"onderschrift\",\n  \"onderschrijft\": \"onderschrijft\",\n  \"onderschrijven\": \"onderschrijv\",\n  \"onderstaand\": \"onderstaand\",\n  \"onderstations\": \"onderstation\",\n  \"onderste\": \"onderst\",\n  \"ondersteund\": \"ondersteund\",\n  \"ondersteunde\": \"ondersteund\",\n  \"ondersteunen\": \"ondersteun\",\n  \"ondersteunend\": \"ondersteun\",\n  \"ondersteunende\": \"ondersteun\",\n  \"ondersteuning\": \"ondersteun\",\n  \"ondersteuningsprogramma\": \"ondersteuningsprogramma\",\n  \"ondersteunt\": \"ondersteunt\",\n  \"onderstreept\": \"onderstreept\",\n  \"ondertekenaars\": \"ondertekenar\",\n  \"ondertekend\": \"ondertek\",\n  \"ondertekende\": \"ondertek\",\n  \"ondertekenden\": \"ondertek\",\n  \"ondertekenen\": \"onderteken\",\n  \"ondertekening\": \"onderteken\",\n  \"ondertekent\": \"ondertekent\",\n  \"ondertitel\": \"ondertitel\",\n  \"ondertoon\": \"onderton\",\n  \"ondertussen\": \"ondertuss\",\n  \"ondervertegenwoordigd\": \"ondervertegenwoordigd\",\n  \"ondervinden\": \"ondervind\",\n  \"ondervinding\": \"ondervind\",\n  \"ondervindt\": \"ondervindt\",\n  \"ondervond\": \"ondervond\",\n  \"ondervonden\": \"ondervond\",\n  \"ondervraagd\": \"ondervraagd\",\n  \"ondervraagden\": \"ondervraagd\",\n  \"ondervragen\": \"ondervrag\",\n  \"onderwaardering\": \"onderwaarder\",\n  \"onderwaterdepot\": \"onderwaterdepot\",\n  \"onderwatergeluid\": \"onderwatergeluid\",\n  \"onderwatergeluiden\": \"onderwatergeluid\",\n  \"onderwaterrif\": \"onderwaterrif\",\n  \"onderwatersuppletie\": \"onderwatersuppletie\",\n  \"onderwaterzanddepot\": \"onderwaterzanddepot\",\n  \"onderwaterzoogdieren\": \"onderwaterzoogdier\",\n  \"onderweg\": \"onderweg\",\n  \"onderwerken\": \"onderwerk\",\n  \"onderwerp\": \"onderwerp\",\n  \"onderwerpen\": \"onderwerp\",\n  \"onderwijl\": \"onderwijl\",\n  \"onderwijs\": \"onderwijs\",\n  \"onderwijsactiviteiten\": \"onderwijsactiviteit\",\n  \"onderwijscompetitie\": \"onderwijscompetitie\",\n  \"onderwijsprogramma\": \"onderwijsprogramma\",\n  \"onderwijsproject\": \"onderwijsproject\",\n  \"onderworpen\": \"onderworp\",\n  \"onderworpenheid\": \"onderworp\",\n  \"onderzeeboot\": \"onderzeebot\",\n  \"onderzeeboten\": \"onderzeebot\",\n  \"onderzeeërs\": \"onderzeeer\",\n  \"onderzeese\": \"onderzes\",\n  \"onderzocht\": \"onderzocht\",\n  \"onderzochte\": \"onderzocht\",\n  \"onderzochten\": \"onderzocht\",\n  \"onderzoek\": \"onderzoek\",\n  \"onderzoekbedrijf\": \"onderzoekbedrijf\",\n  \"onderzoekcentrum\": \"onderzoekcentrum\",\n  \"onderzoeken\": \"onderzoek\",\n  \"onderzoekend\": \"onderzoek\",\n  \"onderzoeker\": \"onderzoeker\",\n  \"onderzoekers\": \"onderzoeker\",\n  \"onderzoekinstelling\": \"onderzoekinstell\",\n  \"onderzoekinstituut\": \"onderzoekinstitut\",\n  \"onderzoekprogramma\": \"onderzoekprogramma\",\n  \"onderzoeks\": \"onderzoek\",\n  \"onderzoeksagenda\": \"onderzoeksagenda\",\n  \"onderzoeksbeurzen\": \"onderzoeksbeurz\",\n  \"onderzoeksbevel\": \"onderzoeksbevel\",\n  \"onderzoeksbureau\": \"onderzoeksbureau\",\n  \"onderzoekscentra\": \"onderzoekscentra\",\n  \"onderzoekscentrum\": \"onderzoekscentrum\",\n  \"onderzoekscommissie\": \"onderzoekscommissie\",\n  \"onderzoeksdienst\": \"onderzoeksdienst\",\n  \"onderzoekservaring\": \"onderzoekservar\",\n  \"onderzoeksfase\": \"onderzoeksfas\",\n  \"onderzoeksgegevens\": \"onderzoeksgegeven\",\n  \"onderzoeksgeld\": \"onderzoeksgeld\",\n  \"onderzoeksgroep\": \"onderzoeksgroep\",\n  \"onderzoeksinstellingen\": \"onderzoeksinstell\",\n  \"onderzoeksinstituten\": \"onderzoeksinstitut\",\n  \"onderzoeksinstituut\": \"onderzoeksinstitut\",\n  \"onderzoekskosten\": \"onderzoekskost\",\n  \"onderzoeksmethode\": \"onderzoeksmethod\",\n  \"onderzoeksmethoden\": \"onderzoeksmethod\",\n  \"onderzoeksobjecten\": \"onderzoeksobject\",\n  \"onderzoeksorganisatie\": \"onderzoeksorganisatie\",\n  \"onderzoeksorganisaties\": \"onderzoeksorganisaties\",\n  \"onderzoeksplicht\": \"onderzoeksplicht\",\n  \"onderzoeksprogramma\": \"onderzoeksprogramma\",\n  \"onderzoeksproject\": \"onderzoeksproject\",\n  \"onderzoeksprojecten\": \"onderzoeksproject\",\n  \"onderzoekspunten\": \"onderzoekspunt\",\n  \"onderzoeksrapport\": \"onderzoeksrapport\",\n  \"onderzoeksreactoren\": \"onderzoeksreactor\",\n  \"onderzoeksresulaten\": \"onderzoeksresulat\",\n  \"onderzoeksresultaten\": \"onderzoeksresultat\",\n  \"onderzoeksruimte\": \"onderzoeksruimt\",\n  \"onderzoeksschepen\": \"onderzoeksschep\",\n  \"onderzoeksschip\": \"onderzoeksschip\",\n  \"onderzoeksstrategie\": \"onderzoeksstrategie\",\n  \"onderzoeksteam\": \"onderzoeksteam\",\n  \"onderzoeksthema\": \"onderzoeksthema\",\n  \"onderzoekstraject\": \"onderzoekstraject\",\n  \"onderzoeksverslag\": \"onderzoeksverslag\",\n  \"onderzoeksvoorstellen\": \"onderzoeksvoorstell\",\n  \"onderzoeksvormen\": \"onderzoeksvorm\",\n  \"onderzoekt\": \"onderzoekt\",\n  \"ondesteunt\": \"ondesteunt\",\n  \"ondeugd\": \"ondeugd\",\n  \"ondeugdelijk\": \"ondeugd\",\n  \"ondeugden\": \"ondeugd\",\n  \"ondeugend\": \"ondeug\",\n  \"ondeugende\": \"ondeug\",\n  \"ondiep\": \"ondiep\",\n  \"ondiepe\": \"ondiep\",\n  \"ondiepte\": \"ondiept\",\n  \"ondier\": \"ondier\",\n  \"ondoelmatig\": \"ondoelmat\",\n  \"ondoenlijk\": \"ondoen\",\n  \"ondoordacht\": \"ondoordacht\",\n  \"ondoordachte\": \"ondoordacht\",\n  \"ondoordachtheid\": \"ondoordacht\",\n  \"ondoordringbaar\": \"ondoordring\",\n  \"ondoordringbaarheid\": \"ondoordring\",\n  \"ondoordringbare\": \"ondoordring\",\n  \"ondoorgrondelijke\": \"ondoorgrond\",\n  \"ondoorlatende\": \"ondoorlat\",\n  \"ondoorzichtig\": \"ondoorzicht\",\n  \"ondoorzichtigheid\": \"ondoorzicht\",\n  \"ondraagbare\": \"ondrag\",\n  \"ondragelijk\": \"ondrag\",\n  \"ondragelijke\": \"ondrag\",\n  \"ondragelijkheid\": \"ondrag\",\n  \"ondrinkbaar\": \"ondrink\",\n  \"onduidelijk\": \"onduid\",\n  \"onduidelijke\": \"onduid\",\n  \"onduidelijkheden\": \"onduid\",\n  \"onduidelijkheid\": \"onduid\",\n  \"oneens\": \"onen\",\n  \"oneerlijk\": \"oner\",\n  \"oneerlijke\": \"oner\",\n  \"oneerlijkheid\": \"oner\",\n  \"oneigenlijk\": \"oneigen\",\n  \"oneigenlijkheid\": \"oneigen\",\n  \"oneindig\": \"oneind\",\n  \"oneindige\": \"oneind\",\n  \"oneindigheden\": \"oneind\",\n  \"oneindigheid\": \"oneind\",\n  \"onem\": \"onem\",\n  \"onenigheid\": \"onen\",\n  \"onervaren\": \"onervar\",\n  \"onevenredige\": \"onevenred\",\n  \"onevenwichtig\": \"onevenwicht\",\n  \"onfatsoenlijke\": \"onfatsoen\",\n  \"onfeilbaar\": \"onfeil\",\n  \"ongeacht\": \"ongeacht\",\n  \"ongebleekt\": \"ongebleekt\",\n  \"ongebleekte\": \"ongebleekt\",\n  \"ongeboren\": \"ongebor\",\n  \"ongebreidelde\": \"ongebreideld\",\n  \"ongebruikt\": \"ongebruikt\",\n  \"ongebruikte\": \"ongebruikt\",\n  \"ongecontroleerd\": \"ongecontroleerd\",\n  \"ongedaan\": \"ongedan\",\n  \"ongedekte\": \"ongedekt\",\n  \"ongedierte\": \"ongediert\",\n  \"ongedisciplineerd\": \"ongedisciplineerd\",\n  \"ongeduld\": \"ongeduld\",\n  \"ongeduldig\": \"ongeduld\",\n  \"ongedurig\": \"ongedur\",\n  \"ongegeneerde\": \"ongegeneerd\",\n  \"ongegeneerdheid\": \"ongegeneerd\",\n  \"ongegrond\": \"ongegrond\",\n  \"ongehuwde\": \"ongehuwd\",\n  \"ongekamd\": \"ongekamd\",\n  \"ongekapt\": \"ongekapt\",\n  \"ongekend\": \"ongek\",\n  \"ongekende\": \"ongek\",\n  \"ongeleefd\": \"ongeleefd\",\n  \"ongelegeerd\": \"ongelegeerd\",\n  \"ongelegeerde\": \"ongelegeerd\",\n  \"ongelijk\": \"ongelijk\",\n  \"ongelikte\": \"ongelikt\",\n  \"ongeloof\": \"ongelof\",\n  \"ongelooflijk\": \"ongelof\",\n  \"ongelooflijkheid\": \"ongelof\",\n  \"ongeloofwaardig\": \"ongeloofwaard\",\n  \"ongelovig\": \"ongelov\",\n  \"ongeluk\": \"ongeluk\",\n  \"ongelukig\": \"ongeluk\",\n  \"ongelukje\": \"ongelukj\",\n  \"ongelukken\": \"ongeluk\",\n  \"ongelukkig\": \"ongelukk\",\n  \"ongelukkige\": \"ongelukk\",\n  \"ongelukkiger\": \"ongelukkiger\",\n  \"ongelukscenario\": \"ongelukscenario\",\n  \"ongemak\": \"ongemak\",\n  \"ongemakkelijk\": \"ongemak\",\n  \"ongemerkt\": \"ongemerkt\",\n  \"ongemoeid\": \"ongemoeid\",\n  \"ongenaakbaarheid\": \"ongenak\",\n  \"ongenaakbare\": \"ongenak\",\n  \"ongenade\": \"ongenad\",\n  \"ongenadig\": \"ongenad\",\n  \"ongeneeslijk\": \"ongenes\",\n  \"ongenoegen\": \"ongenoeg\",\n  \"ongenuanceerd\": \"ongenuanceerd\",\n  \"ongeoorloofd\": \"ongeoorloofd\",\n  \"ongeoorloofde\": \"ongeoorloofd\",\n  \"ongerechtigheden\": \"ongerecht\",\n  \"ongeremd\": \"ongeremd\",\n  \"ongerepte\": \"ongerept\",\n  \"ongerieflijke\": \"ongerief\",\n  \"ongerust\": \"ongerust\",\n  \"ongerustheid\": \"ongerust\",\n  \"ongescheiden\": \"ongescheid\",\n  \"ongeschikt\": \"ongeschikt\",\n  \"ongeschonden\": \"ongeschond\",\n  \"ongeschreven\": \"ongeschrev\",\n  \"ongeslepen\": \"ongeslep\",\n  \"ongesteldheid\": \"ongesteld\",\n  \"ongestoord\": \"ongestoord\",\n  \"ongestoorde\": \"ongestoord\",\n  \"ongetiteld\": \"ongetiteld\",\n  \"ongetrouwd\": \"ongetrouwd\",\n  \"ongetrouwde\": \"ongetrouwd\",\n  \"ongetwijfeld\": \"ongetwijfeld\",\n  \"ongevaarlijk\": \"ongevar\",\n  \"ongevaarlijke\": \"ongevar\",\n  \"ongeval\": \"ongeval\",\n  \"ongevallen\": \"ongevall\",\n  \"ongevallendienst\": \"ongevallendienst\",\n  \"ongeveer\": \"ongever\",\n  \"ongevoelig\": \"ongevoel\",\n  \"ongevoelige\": \"ongevoel\",\n  \"ongevoeligheid\": \"ongevoel\",\n  \"ongevoerde\": \"ongevoerd\",\n  \"ongevraagd\": \"ongevraagd\",\n  \"ongewenst\": \"ongewenst\",\n  \"ongewenste\": \"ongewenst\",\n  \"ongewijzigd\": \"ongewijzigd\",\n  \"ongewone\": \"ongewon\",\n  \"ongewoon\": \"ongewon\",\n  \"ongewoons\": \"ongewon\",\n  \"ongezegd\": \"ongezegd\",\n  \"ongezellig\": \"ongezell\",\n  \"ongezellige\": \"ongezell\",\n  \"ongezond\": \"ongezond\",\n  \"ongezonde\": \"ongezond\",\n  \"ongezonder\": \"ongezonder\",\n  \"ongezuiverd\": \"ongezuiverd\",\n  \"onghartelijk\": \"onghart\",\n  \"ongrijpbaar\": \"ongrijp\",\n  \"ongunstig\": \"ongunst\",\n  \"ongunstige\": \"ongunst\",\n  \"onhaalbaar\": \"onhal\",\n  \"onhandelbaar\": \"onhandel\",\n  \"onhandelbare\": \"onhandel\",\n  \"onhandig\": \"onhand\",\n  \"onhandige\": \"onhand\",\n  \"onhandigheden\": \"onhand\",\n  \"onhandigheid\": \"onhand\",\n  \"onhartelijk\": \"onhart\",\n  \"onhartelijkheid\": \"onhart\",\n  \"onhebbelijk\": \"onhebb\",\n  \"onhebbelijke\": \"onhebb\",\n  \"onhebbelijkheden\": \"onhebb\",\n  \"onheduidend\": \"onheduid\",\n  \"onheil\": \"onheil\",\n  \"onherroepelijk\": \"onherroep\",\n  \"onherroepelijke\": \"onherroep\",\n  \"onherstelbaar\": \"onherstel\",\n  \"onherstelbare\": \"onherstel\",\n  \"onhoorbaar\": \"onhor\",\n  \"onhoorbare\": \"onhor\",\n  \"onivins\": \"onivin\",\n  \"onjuist\": \"onjuist\",\n  \"onjuiste\": \"onjuist\",\n  \"onjuistheden\": \"onjuist\",\n  \"onklaar\": \"onklar\",\n  \"onkosten\": \"onkost\",\n  \"onkruid\": \"onkruid\",\n  \"onkruidbeheersing\": \"onkruidbeheers\",\n  \"onkruidbestrijder\": \"onkruidbestrijder\",\n  \"onkruidbestrijding\": \"onkruidbestrijd\",\n  \"onkruidbestrijdingsmaterieel\": \"onkruidbestrijdingsmaterieel\",\n  \"onkruidbestrijdingsmiddel\": \"onkruidbestrijdingsmiddel\",\n  \"onkruidbestrijdingsmiddelen\": \"onkruidbestrijdingsmiddel\",\n  \"onkruidborstel\": \"onkruidborstel\",\n  \"onkruidborstelarmen\": \"onkruidborstelarm\",\n  \"onkruidborstelen\": \"onkruidborstel\",\n  \"onkruidbrander\": \"onkruidbrander\",\n  \"onkruidbranders\": \"onkruidbrander\",\n  \"onkruiden\": \"onkruid\",\n  \"onkruidverdelgers\": \"onkruidverdelger\",\n  \"onkruidverhitter\": \"onkruidverhitter\",\n  \"onkruidverhitting\": \"onkruidverhit\",\n  \"onkundig\": \"onkund\",\n  \"onkundige\": \"onkund\",\n  \"onlangs\": \"onlang\",\n  \"onlesbaar\": \"onles\",\n  \"onlief\": \"onlief\",\n  \"onlogisch\": \"onlogisch\",\n  \"onlogische\": \"onlogisch\",\n  \"onlosmakelijk\": \"onlosmak\",\n  \"onlusten\": \"onlust\",\n  \"onmacht\": \"onmacht\",\n  \"onmachtig\": \"onmacht\",\n  \"onmachtssfinx\": \"onmachtssfinx\",\n  \"onmenselijk\": \"onmens\",\n  \"onmènselijk\": \"onmèns\",\n  \"onmerkbaar\": \"onmerk\",\n  \"onmetelijke\": \"onmet\",\n  \"onmetelijkheid\": \"onmet\",\n  \"onmiddellijk\": \"onmiddel\",\n  \"onmiddellijke\": \"onmiddel\",\n  \"onmin\": \"onmin\",\n  \"onmisbaar\": \"onmis\",\n  \"onmiskenbaar\": \"onmisken\",\n  \"onmiskenbare\": \"onmisken\",\n  \"onmoetten\": \"onmoet\",\n  \"onmogelijk\": \"onmog\",\n  \"onmogelijkbereikbare\": \"onmogelijkbereik\",\n  \"onmogelijke\": \"onmog\",\n  \"onmogelijkheid\": \"onmog\",\n  \"onnatuurlijk\": \"onnatur\",\n  \"onnatuurlijke\": \"onnatur\",\n  \"onnauwkeurigheidsmarge\": \"onnauwkeurigheidsmarg\",\n  \"onnodig\": \"onnod\",\n  \"onnodige\": \"onnod\",\n  \"onnozel\": \"onnozel\",\n  \"onnozele\": \"onnozel\",\n  \"ono\": \"ono\",\n  \"onomkeerbaar\": \"onomker\",\n  \"onomstotelijk\": \"onomstot\",\n  \"ononderbroken\": \"ononderbrok\",\n  \"onontbeerlijk\": \"onontber\",\n  \"onontknoopbaar\": \"onontknop\",\n  \"onontkoombaar\": \"onontkom\",\n  \"onopgeloste\": \"onopgelost\",\n  \"onophoudelijk\": \"onophoud\",\n  \"onophoudelijke\": \"onophoud\",\n  \"onoplettendheid\": \"onoplet\",\n  \"onoplosbaar\": \"onoplos\",\n  \"onoplosbare\": \"onoplos\",\n  \"onoprecht\": \"onoprecht\",\n  \"onopzettelijk\": \"onopzet\",\n  \"onoverbrugbaar\": \"onoverbrug\",\n  \"onoverkomelijk\": \"onoverkom\",\n  \"onoverwinlijke\": \"onoverwin\",\n  \"onoverzichtelijk\": \"onoverzicht\",\n  \"onoverzienbare\": \"onoverzien\",\n  \"onpassend\": \"onpass\",\n  \"onpersoonlijke\": \"onperson\",\n  \"onpractisch\": \"onpractisch\",\n  \"onpraktisch\": \"onpraktisch\",\n  \"onrealistisch\": \"onrealistisch\",\n  \"onrecht\": \"onrecht\",\n  \"onrechte\": \"onrecht\",\n  \"onrechtmatig\": \"onrechtmat\",\n  \"onrechtmatigheden\": \"onrechtmat\",\n  \"onrechtvaardig\": \"onrechtvaard\",\n  \"onrechtvaardigheid\": \"onrechtvaard\",\n  \"onredelijk\": \"onred\",\n  \"onredelijke\": \"onred\",\n  \"onredelijkheid\": \"onred\",\n  \"onregelmatige\": \"onregelmat\",\n  \"onregelmatigheden\": \"onregelmat\",\n  \"onregelmatigs\": \"onregelmat\",\n  \"onrendabele\": \"onrendabel\",\n  \"onri\": \"onri\",\n  \"onroerend\": \"onroer\",\n  \"onroerende\": \"onroer\",\n  \"onroerendgoedtransacties\": \"onroerendgoedtransacties\",\n  \"onrust\": \"onrust\",\n  \"onrustig\": \"onrust\",\n  \"onrustpolder\": \"onrustpolder\",\n  \"ons\": \"ons\",\n  \"òns\": \"òns\",\n  \"onsamenhangende\": \"onsamenhang\",\n  \"onschadelijk\": \"onschad\",\n  \"onschadelijke\": \"onschad\",\n  \"onschatbare\": \"onschat\",\n  \"onschuld\": \"onschuld\",\n  \"onschuldig\": \"onschuld\",\n  \"onschuldige\": \"onschuld\",\n  \"onschuldigs\": \"onschuld\",\n  \"onsi\": \"onsi\",\n  \"onstuimig\": \"onstuim\",\n  \"onstwedde\": \"onstwed\",\n  \"onsympathieke\": \"onsympathiek\",\n  \"onszelf\": \"onszelf\",\n  \"ontapbaar\": \"ontap\",\n  \"ontario\": \"ontario\",\n  \"ontastbaar\": \"ontast\",\n  \"ontastbare\": \"ontast\",\n  \"ontbeert\": \"ontbeert\",\n  \"ontbeet\": \"ontbet\",\n  \"ontberen\": \"ontber\",\n  \"ontbiedt\": \"ontbiedt\",\n  \"ontbijt\": \"ontbijt\",\n  \"ontbijten\": \"ontbijt\",\n  \"ontbijttafel\": \"ontbijttafel\",\n  \"ontbindingsprodukten\": \"ontbindingsprodukt\",\n  \"ontbloeien\": \"ontbloei\",\n  \"ontblootte\": \"ontblot\",\n  \"ontboezemde\": \"ontboezemd\",\n  \"ontboezeming\": \"ontboezem\",\n  \"ontboezemingen\": \"ontboezem\",\n  \"ontbolsteren\": \"ontbolster\",\n  \"ontbossing\": \"ontboss\",\n  \"ontbossingen\": \"ontboss\",\n  \"ontbrak\": \"ontbrak\",\n  \"ontbraken\": \"ontbrak\",\n  \"ontbranden\": \"ontbrand\",\n  \"ontbreekt\": \"ontbreekt\",\n  \"ontbreken\": \"ontbrek\",\n  \"ontbrekende\": \"ontbrek\",\n  \"ontdaan\": \"ontdan\",\n  \"ontdeed\": \"ontded\",\n  \"ontdekken\": \"ontdek\",\n  \"ontdekker\": \"ontdekker\",\n  \"ontdekkers\": \"ontdekker\",\n  \"ontdekking\": \"ontdek\",\n  \"ontdekkingen\": \"ontdek\",\n  \"ontdekt\": \"ontdekt\",\n  \"ontdekte\": \"ontdekt\",\n  \"ontdekten\": \"ontdekt\",\n  \"ontdoen\": \"ontdoen\",\n  \"ontdoeners\": \"ontdoener\",\n  \"ontdoet\": \"ontdoet\",\n  \"ontdoken\": \"ontdok\",\n  \"ontdooifrequentie\": \"ontdooifrequentie\",\n  \"ontduiken\": \"ontduik\",\n  \"ontduikende\": \"ontduik\",\n  \"ontduiking\": \"ontduik\",\n  \"ontduikt\": \"ontduikt\",\n  \"onteelt\": \"onteelt\",\n  \"onteigenen\": \"onteigen\",\n  \"onteigening\": \"onteigen\",\n  \"onteigeningen\": \"onteigen\",\n  \"ontelbare\": \"ontel\",\n  \"onterecht\": \"onterecht\",\n  \"onterven\": \"onterv\",\n  \"ontevreden\": \"ontevred\",\n  \"ontevredenheden\": \"ontevred\",\n  \"ontevredenheid\": \"ontevred\",\n  \"ontex\": \"ontex\",\n  \"ontfermde\": \"ontfermd\",\n  \"ontferming\": \"ontferm\",\n  \"ontfermt\": \"ontfermt\",\n  \"ontgassing\": \"ontgass\",\n  \"ontgelden\": \"ontgeld\",\n  \"ontging\": \"ontging\",\n  \"ontginnen\": \"ontginn\",\n  \"ontgoocheld\": \"ontgoocheld\",\n  \"ontgoocheling\": \"ontgoochel\",\n  \"ontgraven\": \"ontgrav\",\n  \"ontgraving\": \"ontgrav\",\n  \"ontgroeit\": \"ontgroeit\",\n  \"ontgronders\": \"ontgronder\",\n  \"ontgronding\": \"ontgrond\",\n  \"ontgrondingenbeleid\": \"ontgrondingenbeleid\",\n  \"ontgrondingenfonds\": \"ontgrondingenfond\",\n  \"ontgrondingenlocaties\": \"ontgrondingenlocaties\",\n  \"ontgrondingenplan\": \"ontgrondingenplan\",\n  \"ontgrondingenwet\": \"ontgrondingenwet\",\n  \"ontgrondingsbedrijven\": \"ontgrondingsbedrijv\",\n  \"ontgrondingsfonds\": \"ontgrondingsfond\",\n  \"ontgrondingslocaties\": \"ontgrondingslocaties\",\n  \"ontgrondingswet\": \"ontgrondingswet\",\n  \"onthaald\": \"onthaald\",\n  \"onthaalde\": \"onthaald\",\n  \"onthalen\": \"onthal\",\n  \"ontharden\": \"onthard\",\n  \"ontharding\": \"onthard\",\n  \"onthardingsinstallaties\": \"onthardingsinstallaties\",\n  \"onthardt\": \"onthardt\",\n  \"ontheet\": \"onthet\",\n  \"ontheffing\": \"ontheff\",\n  \"ontheffingen\": \"ontheff\",\n  \"ontheffingsprocedures\": \"ontheffingsprocedures\",\n  \"ontheffingsregeling\": \"ontheffingsregel\",\n  \"ontheven\": \"onthev\",\n  \"onthield\": \"onthield\",\n  \"onthielden\": \"onthield\",\n  \"onthoofd\": \"onthoofd\",\n  \"onthouden\": \"onthoud\",\n  \"onthoudt\": \"onthoudt\",\n  \"onthuld\": \"onthuld\",\n  \"onthutsende\": \"onthuts\",\n  \"ontinkte\": \"ontinkt\",\n  \"ontinktingsresidu\": \"ontinktingsresidu\",\n  \"ontkend\": \"ontkend\",\n  \"ontkende\": \"ontkend\",\n  \"ontkenden\": \"ontkend\",\n  \"ontkennen\": \"ontkenn\",\n  \"ontkennend\": \"ontkenn\",\n  \"ontkenning\": \"ontkenn\",\n  \"ontkenningen\": \"ontkenn\",\n  \"ontkent\": \"ontkent\",\n  \"ontkiemt\": \"ontkiemt\",\n  \"ontkleed\": \"ontkled\",\n  \"ontkleedde\": \"ontkled\",\n  \"ontkleurt\": \"ontkleurt\",\n  \"ontknoopt\": \"ontknoopt\",\n  \"ontkomen\": \"ontkom\",\n  \"ontkoppelen\": \"ontkoppel\",\n  \"ontkrachten\": \"ontkracht\",\n  \"ontladen\": \"ontlad\",\n  \"ontladingen\": \"ontlad\",\n  \"ontlast\": \"ontlast\",\n  \"ontlasten\": \"ontlast\",\n  \"ontlasting\": \"ontlast\",\n  \"ontleden\": \"ontled\",\n  \"ontleding\": \"ontled\",\n  \"ontleed\": \"ontled\",\n  \"ontleedt\": \"ontleedt\",\n  \"ontleend\": \"ontleend\",\n  \"ontloken\": \"ontlok\",\n  \"ontlokkende\": \"ontlok\",\n  \"ontlopen\": \"ontlop\",\n  \"ontluchten\": \"ontlucht\",\n  \"ontmanteld\": \"ontmanteld\",\n  \"ontmantelen\": \"ontmantel\",\n  \"ontmanteling\": \"ontmantel\",\n  \"ontmantelingsbesluit\": \"ontmantelingsbesluit\",\n  \"ontmantelingskosten\": \"ontmantelingskost\",\n  \"ontmantelingsproces\": \"ontmantelingsproces\",\n  \"ontmoedigd\": \"ontmoedigd\",\n  \"ontmoedigen\": \"ontmoed\",\n  \"ontmoediging\": \"ontmoed\",\n  \"ontmoedigingen\": \"ontmoed\",\n  \"ontmoet\": \"ontmoet\",\n  \"ontmoeten\": \"ontmoet\",\n  \"ontmoeting\": \"ontmoet\",\n  \"ontmoetingen\": \"ontmoet\",\n  \"ontmoette\": \"ontmoet\",\n  \"ontmoetten\": \"ontmoet\",\n  \"ontnam\": \"ontnam\",\n  \"ontnamen\": \"ontnam\",\n  \"ontnemen\": \"ontnem\",\n  \"ontneming\": \"ontnem\",\n  \"ontnemingsvorderingen\": \"ontnemingsvorder\",\n  \"ontnomen\": \"ontnom\",\n  \"ontnuchterd\": \"ontnuchterd\",\n  \"ontnuchterden\": \"ontnuchterd\",\n  \"ontoegankelijkheid\": \"ontoegank\",\n  \"ontoelaatbaar\": \"ontoelat\",\n  \"ontoelaatbare\": \"ontoelat\",\n  \"ontoereikend\": \"ontoereik\",\n  \"ontoonbaar\": \"onton\",\n  \"ontoonbaarder\": \"ontoonbaarder\",\n  \"ontplofbare\": \"ontplof\",\n  \"ontploffen\": \"ontploff\",\n  \"ontploffing\": \"ontploff\",\n  \"ontploffings\": \"ontploff\",\n  \"ontploffingsgevaar\": \"ontploffingsgevar\",\n  \"ontplofte\": \"ontploft\",\n  \"ontplooien\": \"ontplooi\",\n  \"ontpoldering\": \"ontpolder\",\n  \"ontpolding\": \"ontpold\",\n  \"ontregeld\": \"ontregeld\",\n  \"ontroerd\": \"ontroerd\",\n  \"ontroerde\": \"ontroerd\",\n  \"ontroering\": \"ontroer\",\n  \"ontruimd\": \"ontruimd\",\n  \"ontruimen\": \"ontruim\",\n  \"ontruiming\": \"ontruim\",\n  \"ontsiering\": \"ontsier\",\n  \"ontslag\": \"ontslag\",\n  \"ontslagen\": \"ontslag\",\n  \"ontsluiten\": \"ontsluit\",\n  \"ontsluiting\": \"ontsluit\",\n  \"ontsluitingsweg\": \"ontsluitingsweg\",\n  \"ontsmetters\": \"ontsmetter\",\n  \"ontsmettingsmiddel\": \"ontsmettingsmiddel\",\n  \"ontsmettingsmiddelen\": \"ontsmettingsmiddel\",\n  \"ontsnappen\": \"ontsnapp\",\n  \"ontsnappend\": \"ontsnapp\",\n  \"ontsnappende\": \"ontsnapp\",\n  \"ontsnappingsstoom\": \"ontsnappingsstom\",\n  \"ontsnapt\": \"ontsnapt\",\n  \"ontsnapte\": \"ontsnapt\",\n  \"ontsnippering\": \"ontsnipper\",\n  \"ontspande\": \"ontspand\",\n  \"ontspanden\": \"ontspand\",\n  \"ontspannen\": \"ontspann\",\n  \"ontspoord\": \"ontspoord\",\n  \"ontspoorden\": \"ontspoord\",\n  \"ontsporingen\": \"ontspor\",\n  \"ontsprongen\": \"ontsprong\",\n  \"ontstaan\": \"ontstan\",\n  \"ontstaat\": \"ontstat\",\n  \"ontstak\": \"ontstak\",\n  \"ontstane\": \"ontstan\",\n  \"ontsteking\": \"ontstek\",\n  \"ontstekingsbron\": \"ontstekingsbron\",\n  \"ontsteld\": \"ontsteld\",\n  \"ontstelde\": \"ontsteld\",\n  \"ontsteltenis\": \"ontsteltenis\",\n  \"ontstemd\": \"ontstemd\",\n  \"ontstemden\": \"ontstemd\",\n  \"ontstemming\": \"ontstemm\",\n  \"ontstoken\": \"ontstok\",\n  \"ontstond\": \"ontstond\",\n  \"ontstonden\": \"ontstond\",\n  \"ontstraalde\": \"ontstraald\",\n  \"ontstromend\": \"ontstrom\",\n  \"onttakeling\": \"onttakel\",\n  \"onttrekken\": \"onttrek\",\n  \"onttrekking\": \"onttrek\",\n  \"onttrekkingssysteem\": \"onttrekkingssystem\",\n  \"onttrekt\": \"onttrekt\",\n  \"onttrokken\": \"onttrok\",\n  \"ontvallen\": \"ontvall\",\n  \"ontvang\": \"ontvang\",\n  \"ontvangdagen\": \"ontvangdag\",\n  \"ontvangen\": \"ontvang\",\n  \"ontvangende\": \"ontvang\",\n  \"ontvangenis\": \"ontvangenis\",\n  \"ontvanger\": \"ontvanger\",\n  \"ontvangers\": \"ontvanger\",\n  \"ontvangst\": \"ontvangst\",\n  \"ontvangsten\": \"ontvangst\",\n  \"ontvangsthal\": \"ontvangsthal\",\n  \"ontvangt\": \"ontvangt\",\n  \"ontvankelijk\": \"ontvank\",\n  \"ontvankelijker\": \"ontvankelijker\",\n  \"ontvankelijkheid\": \"ontvank\",\n  \"ontvetters\": \"ontvetter\",\n  \"ontvettingsmiddelen\": \"ontvettingsmiddel\",\n  \"ontving\": \"ontving\",\n  \"ontvingen\": \"ontving\",\n  \"ontvlambare\": \"ontvlam\",\n  \"ontvlucht\": \"ontvlucht\",\n  \"ontvluchten\": \"ontvlucht\",\n  \"ontvouwden\": \"ontvouwd\",\n  \"ontvreemdde\": \"ontvreemd\",\n  \"ontvreemde\": \"ontvreemd\",\n  \"ontvreemden\": \"ontvreemd\",\n  \"ontvreemders\": \"ontvreemder\",\n  \"ontvreemding\": \"ontvreemd\",\n  \"ontwaakte\": \"ontwaakt\",\n  \"ontwaken\": \"ontwak\",\n  \"ontwakende\": \"ontwak\",\n  \"ontwapening\": \"ontwapen\",\n  \"ontwapeningscommissie\": \"ontwapeningscommissie\",\n  \"ontwapeningsconferentie\": \"ontwapeningsconferentie\",\n  \"ontwaterd\": \"ontwaterd\",\n  \"ontwateren\": \"ontwater\",\n  \"ontwatering\": \"ontwater\",\n  \"ontweek\": \"ontwek\",\n  \"ontweken\": \"ontwek\",\n  \"ontwend\": \"ontwend\",\n  \"ontwerp\": \"ontwerp\",\n  \"ontwerpbeschikking\": \"ontwerpbeschik\",\n  \"ontwerpbureau\": \"ontwerpbureau\",\n  \"ontwerpdruk\": \"ontwerpdruk\",\n  \"ontwerpdrukken\": \"ontwerpdruk\",\n  \"ontwerpen\": \"ontwerp\",\n  \"ontwerper\": \"ontwerper\",\n  \"ontwerpers\": \"ontwerper\",\n  \"ontwerpfase\": \"ontwerpfas\",\n  \"ontwerpfouten\": \"ontwerpfout\",\n  \"ontwerpgereedschap\": \"ontwerpgereedschap\",\n  \"ontwerpgereedschappen\": \"ontwerpgereedschapp\",\n  \"ontwerpmaatregelen\": \"ontwerpmaatregel\",\n  \"ontwerpmethode\": \"ontwerpmethod\",\n  \"ontwerpoplossingen\": \"ontwerpoploss\",\n  \"ontwerpprijs\": \"ontwerpprijs\",\n  \"ontwerpproces\": \"ontwerpproces\",\n  \"ontwerpt\": \"ontwerpt\",\n  \"ontwerptechnologie\": \"ontwerptechnologie\",\n  \"ontwerptemperatuur\": \"ontwerptemperatur\",\n  \"ontwerpvergunning\": \"ontwerpvergunn\",\n  \"ontwerpversie\": \"ontwerpversie\",\n  \"ontwerpwaarde\": \"ontwerpwaard\",\n  \"ontwerpwedstrijd\": \"ontwerpwedstrijd\",\n  \"ontwierp\": \"ontwierp\",\n  \"ontwijd\": \"ontwijd\",\n  \"ontwijdde\": \"ontwijd\",\n  \"ontwijken\": \"ontwijk\",\n  \"ontwikkel\": \"ontwikkel\",\n  \"ontwikkelaars\": \"ontwikkelar\",\n  \"ontwikkeld\": \"ontwikkeld\",\n  \"ontwikkelde\": \"ontwikkeld\",\n  \"ontwikkelden\": \"ontwikkeld\",\n  \"ontwikkelen\": \"ontwikkel\",\n  \"ontwikkelend\": \"ontwikkel\",\n  \"ontwikkelende\": \"ontwikkel\",\n  \"ontwikkeling\": \"ontwikkel\",\n  \"ontwikkelingen\": \"ontwikkel\",\n  \"ontwikkelings\": \"ontwikkel\",\n  \"ontwikkelingsbank\": \"ontwikkelingsbank\",\n  \"ontwikkelingsfonds\": \"ontwikkelingsfond\",\n  \"ontwikkelingsgeld\": \"ontwikkelingsgeld\",\n  \"ontwikkelingsgraad\": \"ontwikkelingsgrad\",\n  \"ontwikkelingshulp\": \"ontwikkelingshulp\",\n  \"ontwikkelingskansen\": \"ontwikkelingskans\",\n  \"ontwikkelingskosten\": \"ontwikkelingskost\",\n  \"ontwikkelingsland\": \"ontwikkelingsland\",\n  \"ontwikkelingslanden\": \"ontwikkelingsland\",\n  \"ontwikkelingsmaatschappij\": \"ontwikkelingsmaatschappij\",\n  \"ontwikkelingsmodel\": \"ontwikkelingsmodel\",\n  \"ontwikkelingsorganisatie\": \"ontwikkelingsorganisatie\",\n  \"ontwikkelingsplan\": \"ontwikkelingsplan\",\n  \"ontwikkelingsproject\": \"ontwikkelingsproject\",\n  \"ontwikkelingsprojecten\": \"ontwikkelingsproject\",\n  \"ontwikkelingsrace\": \"ontwikkelingsrac\",\n  \"ontwikkelingssamenwerking\": \"ontwikkelingssamenwerk\",\n  \"ontwikkelingsscenario\": \"ontwikkelingsscenario\",\n  \"ontwikkelingsstadium\": \"ontwikkelingsstadium\",\n  \"ontwikkelingsverdrag\": \"ontwikkelingsverdrag\",\n  \"ontwikkelingsvisie\": \"ontwikkelingsvisie\",\n  \"ontwikkelomgeving\": \"ontwikkelomgev\",\n  \"ontwikkelpasta\": \"ontwikkelpasta\",\n  \"ontwikkelt\": \"ontwikkelt\",\n  \"ontwikkkeld\": \"ontwikkkeld\",\n  \"ontworpen\": \"ontworp\",\n  \"ontwrichtte\": \"ontwricht\",\n  \"ontzag\": \"ontzag\",\n  \"ontzaglijk\": \"ontzag\",\n  \"ontzaglijke\": \"ontzag\",\n  \"ontzaglijkheden\": \"ontzag\",\n  \"ontzanding\": \"ontzand\",\n  \"ontzandingsplaats\": \"ontzandingsplat\",\n  \"ontzandingsplan\": \"ontzandingsplan\",\n  \"ontzegd\": \"ontzegd\",\n  \"ontzenuwd\": \"ontzenuwd\",\n  \"ontzenuwde\": \"ontzenuwd\",\n  \"ontzenuwen\": \"ontzenuw\",\n  \"ontzenuwing\": \"ontzenuw\",\n  \"ontzet\": \"ontzet\",\n  \"ontzette\": \"ontzet\",\n  \"ontzettend\": \"ontzet\",\n  \"ontzettende\": \"ontzet\",\n  \"ontzetting\": \"ontzet\",\n  \"ontzield\": \"ontzield\",\n  \"ontzien\": \"ontzien\",\n  \"ontziet\": \"ontziet\",\n  \"ontzilte\": \"ontzilt\",\n  \"ontzilten\": \"ontzilt\",\n  \"ontziltingsfabrieken\": \"ontziltingsfabriek\",\n  \"ontziltingsinstallatie\": \"ontziltingsinstallatie\",\n  \"ontzinken\": \"ontzink\",\n  \"ontzinkingsfabriek\": \"ontzinkingsfabriek\",\n  \"ontzinkingsproces\": \"ontzinkingsproces\",\n  \"ontzuren\": \"ontzur\",\n  \"ontzwaveling\": \"ontzwavel\",\n  \"ontzwavelingsapparatuur\": \"ontzwavelingsapparatur\",\n  \"ontzwavelingsinstallatie\": \"ontzwavelingsinstallatie\",\n  \"onuithoudbare\": \"onuithoud\",\n  \"onuitloogbaar\": \"onuitlog\",\n  \"onuitputtelijke\": \"onuitput\",\n  \"onuitroeibare\": \"onuitroei\",\n  \"onuitsprekelijke\": \"onuitsprek\",\n  \"onuitstaanbaar\": \"onuitstan\",\n  \"onuitstaanbare\": \"onuitstan\",\n  \"onuitvoerbaar\": \"onuitvoer\",\n  \"onuitvoerbaarheid\": \"onuitvoer\",\n  \"onuitwisbare\": \"onuitwis\",\n  \"onveilige\": \"onveil\",\n  \"onveranderd\": \"onveranderd\",\n  \"onveranderde\": \"onveranderd\",\n  \"onveranderlijk\": \"onverander\",\n  \"onveranderlijke\": \"onverander\",\n  \"onveranderlijkheid\": \"onverander\",\n  \"onverantwoord\": \"onverantwoord\",\n  \"onverantwoordelijk\": \"onverantwoord\",\n  \"onverantwoordelijkheid\": \"onverantwoord\",\n  \"onverbiddelijk\": \"onverbid\",\n  \"onverbiddelijke\": \"onverbid\",\n  \"onverbiddelijkheid\": \"onverbid\",\n  \"onverbloemde\": \"onverbloemd\",\n  \"onverbrande\": \"onverbrand\",\n  \"onverbreekbare\": \"onverbrek\",\n  \"onverdelgbare\": \"onverdelg\",\n  \"onverdraagzaam\": \"onverdraagzam\",\n  \"onverdraagzaamste\": \"onverdraagzaamst\",\n  \"onverdragelijk\": \"onverdrag\",\n  \"onverdroten\": \"onverdrot\",\n  \"onvergankelijk\": \"onvergank\",\n  \"onvergankelijke\": \"onvergank\",\n  \"onverharde\": \"onverhard\",\n  \"onverhoopte\": \"onverhoopt\",\n  \"onverklaarbaar\": \"onverklar\",\n  \"onverklaarbare\": \"onverklar\",\n  \"onverkorte\": \"onverkort\",\n  \"onverlichte\": \"onverlicht\",\n  \"onvermijdelijk\": \"onvermijd\",\n  \"onvermijdelijke\": \"onvermijd\",\n  \"onverminderd\": \"onverminderd\",\n  \"onvermoede\": \"onvermoed\",\n  \"onvermoeid\": \"onvermoeid\",\n  \"onvermomde\": \"onvermomd\",\n  \"onverplichte\": \"onverplicht\",\n  \"onverschillig\": \"onverschill\",\n  \"onverschillige\": \"onverschill\",\n  \"onverschilligheid\": \"onverschill\",\n  \"onverschoten\": \"onverschot\",\n  \"onverstandig\": \"onverstand\",\n  \"onverstandige\": \"onverstand\",\n  \"onverstoorde\": \"onverstoord\",\n  \"onvervalste\": \"onvervalst\",\n  \"onvervangbaar\": \"onvervang\",\n  \"onverwacht\": \"onverwacht\",\n  \"onverwachte\": \"onverwacht\",\n  \"onverwachts\": \"onverwacht\",\n  \"onverwerkbaar\": \"onverwerk\",\n  \"onverwerkbare\": \"onverwerk\",\n  \"onverzadigde\": \"onverzadigd\",\n  \"onverzoenlijk\": \"onverzoen\",\n  \"onverzoenlijke\": \"onverzoen\",\n  \"onverzoenlijkheid\": \"onverzoen\",\n  \"onverzorgde\": \"onverzorgd\",\n  \"onvoldaan\": \"onvoldan\",\n  \"onvoldaanheid\": \"onvoldan\",\n  \"onvoldoende\": \"onvoldo\",\n  \"onvolledig\": \"onvolled\",\n  \"onvolledige\": \"onvolled\",\n  \"onvolledigheid\": \"onvolled\",\n  \"onvoorspelbaar\": \"onvoorspel\",\n  \"onvoorspelbaarheid\": \"onvoorspel\",\n  \"onvoorwaardelijk\": \"onvoorwaard\",\n  \"onvoorwaardelijke\": \"onvoorwaard\",\n  \"onvoorzichtigheid\": \"onvoorzicht\",\n  \"onvrede\": \"onvred\",\n  \"onvriendelijk\": \"onvriend\",\n  \"onvriendelijke\": \"onvriend\",\n  \"onvruchtbaar\": \"onvrucht\",\n  \"onwaar\": \"onwar\",\n  \"onwaardig\": \"onwaard\",\n  \"onwaardige\": \"onwaard\",\n  \"onwaarheden\": \"onwar\",\n  \"onwaarheid\": \"onwar\",\n  \"onwaarschijnlijk\": \"onwaarschijn\",\n  \"onwaarschijnlijke\": \"onwaarschijn\",\n  \"onwederstaanbaar\": \"onwederstan\",\n  \"onwederstaanbare\": \"onwederstan\",\n  \"onweer\": \"onwer\",\n  \"onweerhoudbaar\": \"onweerhoud\",\n  \"onweerhoudbare\": \"onweerhoud\",\n  \"onweerlegbaar\": \"onweerleg\",\n  \"onweersbui\": \"onweersbui\",\n  \"onweerslucht\": \"onweerslucht\",\n  \"onweersluchten\": \"onweerslucht\",\n  \"onweerstaanbaar\": \"onweerstan\",\n  \"onweerstaanbare\": \"onweerstan\",\n  \"onweerszwoelte\": \"onweerszwoelt\",\n  \"onwelwillend\": \"onwelwill\",\n  \"onwerkelijkheid\": \"onwerk\",\n  \"onwetend\": \"onwet\",\n  \"onwetendheid\": \"onwet\",\n  \"onwetenschappelijke\": \"onwetenschapp\",\n  \"onwetingen\": \"onwet\",\n  \"onwezenlijkheden\": \"onwezen\",\n  \"onwil\": \"onwil\",\n  \"onwillekeurig\": \"onwillekeur\",\n  \"onwillekeurige\": \"onwillekeur\",\n  \"onwillig\": \"onwill\",\n  \"onwillige\": \"onwill\",\n  \"onwilligheid\": \"onwill\",\n  \"onwrikbaar\": \"onwrik\",\n  \"onwrikbare\": \"onwrik\",\n  \"ony\": \"ony\",\n  \"onzat\": \"onzat\",\n  \"onze\": \"onz\",\n  \"ónze\": \"onz\",\n  \"ònze\": \"ònze\",\n  \"onzedelijk\": \"onzed\",\n  \"onzedelijkheid\": \"onzed\",\n  \"onzegbaars\": \"onzeg\",\n  \"onzeker\": \"onzeker\",\n  \"onzekere\": \"onzeker\",\n  \"onzekerheden\": \"onzeker\",\n  \"onzekerheid\": \"onzeker\",\n  \"onzer\": \"onzer\",\n  \"onzichtbaaar\": \"onzichtbaaar\",\n  \"onzichtbaar\": \"onzicht\",\n  \"onzichtbare\": \"onzicht\",\n  \"onzienlijke\": \"onzien\",\n  \"onzienlijks\": \"onzien\",\n  \"onzin\": \"onzin\",\n  \"onzinnig\": \"onzinn\",\n  \"onzinnige\": \"onzinn\",\n  \"onzorgvuldig\": \"onzorgvuld\",\n  \"onzorgvuldige\": \"onzorgvuld\",\n  \"onzuiver\": \"onzuiver\",\n  \"onzuiverheden\": \"onzuiver\",\n  \"ooftbomen\": \"ooftbom\",\n  \"oog\": \"oog\",\n  \"oogjes\": \"oogjes\",\n  \"oogleden\": \"oogled\",\n  \"oogluikend\": \"oogluik\",\n  \"oogmerk\": \"oogmerk\",\n  \"oogopslag\": \"oogopslag\",\n  \"oogpunt\": \"oogpunt\",\n  \"oogst\": \"oogst\",\n  \"oogstafval\": \"oogstafval\",\n  \"oogstderving\": \"oogstderv\",\n  \"oogsten\": \"oogst\",\n  \"oogstjaren\": \"oogstjar\",\n  \"oogt\": \"oogt\",\n  \"oogverblindende\": \"oogverblind\",\n  \"ooit\": \"ooit\",\n  \"óoit\": \"ooit\",\n  \"oóit\": \"ooit\",\n  \"ook\": \"ook\",\n  \"óok\": \"ook\",\n  \"òok\": \"òok\",\n  \"óók\": \"ook\",\n  \"ookal\": \"ookal\",\n  \"ookwel\": \"ookwel\",\n  \"oom\": \"oom\",\n  \"óom\": \"oom\",\n  \"oomen\": \"oom\",\n  \"oompje\": \"oompj\",\n  \"ooms\": \"oom\",\n  \"oor\": \"oor\",\n  \"oord\": \"oord\",\n  \"oordeel\": \"oordel\",\n  \"oordeelde\": \"oordeeld\",\n  \"oordeelt\": \"oordeelt\",\n  \"oordelen\": \"oordel\",\n  \"oorden\": \"oord\",\n  \"oorkonde\": \"oorkond\",\n  \"oorlog\": \"oorlog\",\n  \"oorlogse\": \"oorlog\",\n  \"oorschot\": \"oorschot\",\n  \"oorsprong\": \"oorsprong\",\n  \"oorspronkelijk\": \"oorspronk\",\n  \"oorspronkelijke\": \"oorspronk\",\n  \"oorspronkelijkheid\": \"oorspronk\",\n  \"oorspronkelijks\": \"oorspronk\",\n  \"oorveeg\": \"oorveg\",\n  \"oorwurmen\": \"oorwurm\",\n  \"oorzaak\": \"oorzak\",\n  \"oorzaken\": \"oorzak\",\n  \"oost\": \"oost\",\n  \"oostblok\": \"oostblok\",\n  \"oostelijk\": \"oostelijk\",\n  \"oostelijke\": \"oostelijk\",\n  \"oosten\": \"oost\",\n  \"oostende\": \"oostend\",\n  \"oostenrijk\": \"oostenrijk\",\n  \"oostenrijks\": \"oostenrijk\",\n  \"oostenrijkse\": \"oostenrijk\",\n  \"oostenwind\": \"oostenwind\",\n  \"oostenwinden\": \"oostenwind\",\n  \"oostenwindkoude\": \"oostenwindkoud\",\n  \"ooster\": \"ooster\",\n  \"oosterbeek\": \"oosterbek\",\n  \"oosterbierum\": \"oosterbierum\",\n  \"oosterburen\": \"oosterbur\",\n  \"oostergasfabriek\": \"oostergasfabriek\",\n  \"oostergrachtswal\": \"oostergrachtswal\",\n  \"oosterhof\": \"oosterhof\",\n  \"oosterhout\": \"oosterhout\",\n  \"oostermeer\": \"oostermer\",\n  \"oosterschelde\": \"oosterscheld\",\n  \"oosterscheldedam\": \"oosterscheldedam\",\n  \"oosterse\": \"ooster\",\n  \"oosterwijk\": \"oosterwijk\",\n  \"oosteuropa\": \"oosteuropa\",\n  \"oosteuropese\": \"oosteuropes\",\n  \"oostgroningse\": \"oostgron\",\n  \"oostkanaalweg\": \"oostkanaalweg\",\n  \"oostkant\": \"oostkant\",\n  \"oostkust\": \"oostkust\",\n  \"oostnederlandse\": \"oostnederland\",\n  \"oostoever\": \"oostoever\",\n  \"oostsiberië\": \"oostsiberie\",\n  \"oostsiberische\": \"oostsiberisch\",\n  \"oostvaarderplassen\": \"oostvaarderplass\",\n  \"oostvaardersplassen\": \"oostvaardersplass\",\n  \"oostwaarde\": \"oostwaard\",\n  \"oostzaan\": \"oostzan\",\n  \"oostzijde\": \"oostzijd\",\n  \"ooy\": \"ooy\",\n  \"ooykaas\": \"ooykas\",\n  \"ooypolder\": \"ooypolder\",\n  \"op\": \"op\",\n  \"óp\": \"op\",\n  \"òp\": \"òp\",\n  \"opademend\": \"opadem\",\n  \"opake\": \"opak\",\n  \"opalig\": \"opal\",\n  \"opalla\": \"opalla\",\n  \"opat\": \"opat\",\n  \"opbergen\": \"opberg\",\n  \"opbergmijn\": \"opbergmijn\",\n  \"opbeurende\": \"opbeur\",\n  \"opblazen\": \"opblaz\",\n  \"opbleef\": \"opblef\",\n  \"opblijven\": \"opblijv\",\n  \"opbloei\": \"opbloei\",\n  \"opbloeien\": \"opbloei\",\n  \"opbloesemde\": \"opbloesemd\",\n  \"opboksen\": \"opboks\",\n  \"opborg\": \"opborg\",\n  \"opborrelde\": \"opborreld\",\n  \"opbouw\": \"opbouw\",\n  \"opbouwen\": \"opbouw\",\n  \"opbrengen\": \"opbreng\",\n  \"opbrengend\": \"opbreng\",\n  \"opbrengst\": \"opbrengst\",\n  \"opbrengsten\": \"opbrengst\",\n  \"opbrengstprijzen\": \"opbrengstprijz\",\n  \"opbrengstverbeteringen\": \"opbrengstverbeter\",\n  \"opbrengstvergoedingsregeling\": \"opbrengstvergoedingsregel\",\n  \"opbrengstverklaring\": \"opbrengstverklar\",\n  \"opbrengstvoorspelling\": \"opbrengstvoorspell\",\n  \"opbruising\": \"opbruis\",\n  \"opdagen\": \"opdag\",\n  \"opdamptechnieken\": \"opdamptechniek\",\n  \"opdanste\": \"opdanst\",\n  \"opdat\": \"opdat\",\n  \"opdeling\": \"opdel\",\n  \"opdoeken\": \"opdoek\",\n  \"opdoemde\": \"opdoemd\",\n  \"opdoemen\": \"opdoem\",\n  \"opdoemende\": \"opdoem\",\n  \"opdoen\": \"opdoen\",\n  \"opdoet\": \"opdoet\",\n  \"opdraaien\": \"opdraai\",\n  \"opdraait\": \"opdraait\",\n  \"opdracht\": \"opdracht\",\n  \"opdrachten\": \"opdracht\",\n  \"opdrachtgever\": \"opdrachtgever\",\n  \"opdrachtgevers\": \"opdrachtgever\",\n  \"opdrijven\": \"opdrijv\",\n  \"opdrogen\": \"opdrog\",\n  \"opdrong\": \"opdrong\",\n  \"opdroogde\": \"opdroogd\",\n  \"opec\": \"opec\",\n  \"opeengestapeld\": \"opeengestapeld\",\n  \"opeens\": \"open\",\n  \"opeenstapelingen\": \"opeenstapel\",\n  \"opeenvolgende\": \"opeenvolg\",\n  \"opeenvolging\": \"opeenvolg\",\n  \"opegenomen\": \"opegenom\",\n  \"opel\": \"opel\",\n  \"open\": \"open\",\n  \"openbaar\": \"open\",\n  \"openbaarden\": \"openbaard\",\n  \"openbaarheid\": \"open\",\n  \"openbaart\": \"openbaart\",\n  \"openbare\": \"open\",\n  \"openbarende\": \"openbar\",\n  \"openbaring\": \"openbar\",\n  \"openbaringen\": \"openbar\",\n  \"openbreidde\": \"openbreid\",\n  \"openbreidende\": \"openbreid\",\n  \"opende\": \"opend\",\n  \"opendeed\": \"opended\",\n  \"openden\": \"opend\",\n  \"opene\": \"open\",\n  \"openen\": \"open\",\n  \"opener\": \"opener\",\n  \"openflapperden\": \"openflapperd\",\n  \"opengaan\": \"opengan\",\n  \"opengaande\": \"opengaand\",\n  \"opengedaan\": \"opengedan\",\n  \"opengegaan\": \"opengegan\",\n  \"opengehouden\": \"opengehoud\",\n  \"opengekraakte\": \"opengekraakt\",\n  \"opengelaten\": \"opengelat\",\n  \"opengemaakt\": \"opengemaakt\",\n  \"opengeplooid\": \"opengeplooid\",\n  \"opengerukte\": \"opengerukt\",\n  \"opengesloten\": \"opengeslot\",\n  \"opengesteld\": \"opengesteld\",\n  \"opengetrokken\": \"opengetrok\",\n  \"opengeweken\": \"opengewek\",\n  \"opengezet\": \"opengezet\",\n  \"openging\": \"openg\",\n  \"openheid\": \"open\",\n  \"openhield\": \"openhield\",\n  \"openhouden\": \"openhoud\",\n  \"opening\": \"open\",\n  \"openingen\": \"open\",\n  \"openings\": \"open\",\n  \"openleg\": \"openleg\",\n  \"openlijk\": \"open\",\n  \"openlijke\": \"open\",\n  \"openluchtrecreatie\": \"openluchtrecreatie\",\n  \"openmaak\": \"openmak\",\n  \"openmaakte\": \"openmaakt\",\n  \"openplooien\": \"openplooi\",\n  \"opens\": \"open\",\n  \"openscheuren\": \"openscheur\",\n  \"openschoof\": \"openschof\",\n  \"opensluiten\": \"opensluit\",\n  \"openspringen\": \"openspr\",\n  \"openstaan\": \"openstan\",\n  \"openstaande\": \"openstaand\",\n  \"openstellen\": \"openstell\",\n  \"openstelling\": \"openstell\",\n  \"openstond\": \"openstond\",\n  \"openstraalden\": \"openstraald\",\n  \"opent\": \"opent\",\n  \"opentrekken\": \"opentrek\",\n  \"openwaaien\": \"openwaai\",\n  \"openweken\": \"openwek\",\n  \"openwoei\": \"openwoei\",\n  \"opera\": \"opera\",\n  \"operatie\": \"operatie\",\n  \"operatiekamer\": \"operatiekamer\",\n  \"operaties\": \"operaties\",\n  \"operational\": \"operational\",\n  \"operationaliseren\": \"operationaliser\",\n  \"operationeel\": \"operationel\",\n  \"operationele\": \"operationel\",\n  \"operators\": \"operator\",\n  \"opereert\": \"opereert\",\n  \"opereren\": \"operer\",\n  \"opererend\": \"operer\",\n  \"opererende\": \"operer\",\n  \"opeten\": \"opet\",\n  \"opetende\": \"opet\",\n  \"opflakkerend\": \"opflakker\",\n  \"opflikkering\": \"opflikker\",\n  \"opflikkert\": \"opflikkert\",\n  \"opfrissen\": \"opfriss\",\n  \"opgaan\": \"opgan\",\n  \"opgaande\": \"opgaand\",\n  \"opgaat\": \"opgat\",\n  \"opgaf\": \"opgaf\",\n  \"opgave\": \"opgav\",\n  \"opgaven\": \"opgav\",\n  \"opgebloeid\": \"opgebloeid\",\n  \"opgebloeide\": \"opgebloeid\",\n  \"opgeborgen\": \"opgeborg\",\n  \"opgebouwd\": \"opgebouwd\",\n  \"opgebracht\": \"opgebracht\",\n  \"opgebrachte\": \"opgebracht\",\n  \"opgebrande\": \"opgebrand\",\n  \"opgedaan\": \"opgedan\",\n  \"opgedane\": \"opgedan\",\n  \"opgedeeld\": \"opgedeeld\",\n  \"opgedoemd\": \"opgedoemd\",\n  \"opgedragen\": \"opgedrag\",\n  \"opgedreven\": \"opgedrev\",\n  \"opgedroogd\": \"opgedroogd\",\n  \"opgeëist\": \"opgeeist\",\n  \"opgegaan\": \"opgegan\",\n  \"opgegaarde\": \"opgegaard\",\n  \"opgegeten\": \"opgeget\",\n  \"opgegeven\": \"opgegev\",\n  \"opgegraven\": \"opgegrav\",\n  \"opgegroeid\": \"opgegroeid\",\n  \"opgehaald\": \"opgehaald\",\n  \"opgehaalde\": \"opgehaald\",\n  \"opgehangen\": \"opgehang\",\n  \"opgeheven\": \"opgehev\",\n  \"opgehoogd\": \"opgehoogd\",\n  \"opgehouden\": \"opgehoud\",\n  \"opgejaagd\": \"opgejaagd\",\n  \"opgejaagde\": \"opgejaagd\",\n  \"opgeklaard\": \"opgeklaard\",\n  \"opgeknapt\": \"opgeknapt\",\n  \"opgeknapte\": \"opgeknapt\",\n  \"opgekocht\": \"opgekocht\",\n  \"opgekoeld\": \"opgekoeld\",\n  \"opgekomen\": \"opgekom\",\n  \"opgekronkeld\": \"opgekronkeld\",\n  \"opgekropt\": \"opgekropt\",\n  \"opgekropte\": \"opgekropt\",\n  \"opgeladen\": \"opgelad\",\n  \"opgelegd\": \"opgelegd\",\n  \"opgelegde\": \"opgelegd\",\n  \"opgeleid\": \"opgeleid\",\n  \"opgeleide\": \"opgeleid\",\n  \"opgelet\": \"opgelet\",\n  \"opgeleverd\": \"opgeleverd\",\n  \"opgelicht\": \"opgelicht\",\n  \"opgeloken\": \"opgelok\",\n  \"opgelopen\": \"opgelop\",\n  \"opgelost\": \"opgelost\",\n  \"opgeloste\": \"opgelost\",\n  \"opgelucht\": \"opgelucht\",\n  \"opgemaakt\": \"opgemaakt\",\n  \"opgemerkt\": \"opgemerkt\",\n  \"opgenomen\": \"opgenom\",\n  \"opgeofferd\": \"opgeofferd\",\n  \"opgepakt\": \"opgepakt\",\n  \"opgeplakt\": \"opgeplakt\",\n  \"opgepompt\": \"opgepompt\",\n  \"opgepompte\": \"opgepompt\",\n  \"opgepropt\": \"opgepropt\",\n  \"opgeraakt\": \"opgeraakt\",\n  \"opgerakeld\": \"opgerakeld\",\n  \"opgerezen\": \"opgerez\",\n  \"opgericht\": \"opgericht\",\n  \"opgerichte\": \"opgericht\",\n  \"opgeroepen\": \"opgeroep\",\n  \"opgerold\": \"opgerold\",\n  \"opgeruimd\": \"opgeruimd\",\n  \"opgeruimde\": \"opgeruimd\",\n  \"opgeschoond\": \"opgeschoond\",\n  \"opgeschort\": \"opgeschort\",\n  \"opgeschoten\": \"opgeschot\",\n  \"opgeschoven\": \"opgeschov\",\n  \"opgeschreven\": \"opgeschrev\",\n  \"opgeschroefd\": \"opgeschroefd\",\n  \"opgeschroefde\": \"opgeschroefd\",\n  \"opgesjord\": \"opgesjord\",\n  \"opgeslagen\": \"opgeslag\",\n  \"opgesloten\": \"opgeslot\",\n  \"opgesmeerd\": \"opgesmeerd\",\n  \"opgesmuld\": \"opgesmuld\",\n  \"opgesplitst\": \"opgesplitst\",\n  \"opgespookt\": \"opgespookt\",\n  \"opgespoord\": \"opgespoord\",\n  \"opgespoten\": \"opgespot\",\n  \"opgestaan\": \"opgestan\",\n  \"opgestapeld\": \"opgestapeld\",\n  \"opgestart\": \"opgestart\",\n  \"opgesteld\": \"opgesteld\",\n  \"opgestelde\": \"opgesteld\",\n  \"opgestoken\": \"opgestok\",\n  \"opgestookt\": \"opgestookt\",\n  \"opgestraald\": \"opgestraald\",\n  \"opgestuurd\": \"opgestuurd\",\n  \"opgetild\": \"opgetild\",\n  \"opgetogen\": \"opgetog\",\n  \"opgetogenheid\": \"opgetog\",\n  \"opgetreden\": \"opgetred\",\n  \"opgetrokken\": \"opgetrok\",\n  \"opgevallen\": \"opgevall\",\n  \"opgevangen\": \"opgevang\",\n  \"opgevat\": \"opgevat\",\n  \"opgeven\": \"opgev\",\n  \"opgevist\": \"opgevist\",\n  \"opgevizioend\": \"opgevizio\",\n  \"opgevoed\": \"opgevoed\",\n  \"opgevoerd\": \"opgevoerd\",\n  \"opgevolgd\": \"opgevolgd\",\n  \"opgevouwen\": \"opgevouw\",\n  \"opgevreten\": \"opgevret\",\n  \"opgevrolijkt\": \"opgevrolijkt\",\n  \"opgevuld\": \"opgevuld\",\n  \"opgewaaid\": \"opgewaaid\",\n  \"opgewarmd\": \"opgewarmd\",\n  \"opgewassen\": \"opgewass\",\n  \"opgewekt\": \"opgewekt\",\n  \"opgewekte\": \"opgewekt\",\n  \"opgewekter\": \"opgewekter\",\n  \"opgewektheid\": \"opgewekt\",\n  \"opgewerkt\": \"opgewerkt\",\n  \"opgewoelde\": \"opgewoeld\",\n  \"opgewonden\": \"opgewond\",\n  \"opgewondenheid\": \"opgewond\",\n  \"opgewondenste\": \"opgewondenst\",\n  \"opgezadeld\": \"opgezadeld\",\n  \"opgezegd\": \"opgezegd\",\n  \"opgezet\": \"opgezet\",\n  \"opgezette\": \"opgezet\",\n  \"opgezien\": \"opgezien\",\n  \"opgezocht\": \"opgezocht\",\n  \"opgezogen\": \"opgezog\",\n  \"opgezweept\": \"opgezweept\",\n  \"opgezweepte\": \"opgezweept\",\n  \"opgezwollen\": \"opgezwoll\",\n  \"opgierende\": \"opgier\",\n  \"opging\": \"opging\",\n  \"opgingen\": \"opging\",\n  \"opglanzing\": \"opglanz\",\n  \"opglanzingen\": \"opglanz\",\n  \"opglimlachten\": \"opglimlacht\",\n  \"opglimpen\": \"opglimp\",\n  \"opglimpende\": \"opglimp\",\n  \"opglimping\": \"opglimp\",\n  \"opglimpingen\": \"opglimp\",\n  \"opgraven\": \"opgrav\",\n  \"opgrijnzen\": \"opgrijnz\",\n  \"opgrijzende\": \"opgrijz\",\n  \"opgroeien\": \"opgroei\",\n  \"opgroeiende\": \"opgroei\",\n  \"opgroeiplaats\": \"opgroeiplat\",\n  \"ophaal\": \"ophal\",\n  \"ophaaldienst\": \"ophaaldienst\",\n  \"ophaalkosten\": \"ophaalkost\",\n  \"ophaalsystemen\": \"ophaalsystem\",\n  \"ophaalt\": \"ophaalt\",\n  \"ophaaltruck\": \"ophaaltruck\",\n  \"ophalen\": \"ophal\",\n  \"ophalend\": \"ophal\",\n  \"ophalers\": \"ophaler\",\n  \"ophef\": \"ophef\",\n  \"opheffen\": \"opheff\",\n  \"opheffende\": \"opheff\",\n  \"opheffing\": \"opheff\",\n  \"opheldering\": \"ophelder\",\n  \"ophemelde\": \"ophemeld\",\n  \"ophemelen\": \"ophemel\",\n  \"opheusden\": \"opheusd\",\n  \"ophief\": \"ophief\",\n  \"ophield\": \"ophield\",\n  \"ophieven\": \"ophiev\",\n  \"ophoepelt\": \"ophoepelt\",\n  \"ophoog\": \"ophog\",\n  \"ophoogzand\": \"ophoogzand\",\n  \"ophopen\": \"ophop\",\n  \"ophoping\": \"ophop\",\n  \"ophouden\": \"ophoud\",\n  \"ophoudt\": \"ophoudt\",\n  \"opic\": \"opic\",\n  \"opinie\": \"opinie\",\n  \"opiniepeiling\": \"opiniepeil\",\n  \"opiniepeilingen\": \"opiniepeil\",\n  \"opinietjes\": \"opinietjes\",\n  \"opinion\": \"opinion\",\n  \"opjaagde\": \"opjaagd\",\n  \"opjeugdigende\": \"opjeugd\",\n  \"opjeugdiging\": \"opjeugd\",\n  \"opkijkende\": \"opkijk\",\n  \"opklaarde\": \"opklaard\",\n  \"opkleuren\": \"opkleur\",\n  \"opklimmen\": \"opklimm\",\n  \"opklimming\": \"opklimm\",\n  \"opknapbeurt\": \"opknapbeurt\",\n  \"opknappen\": \"opknapp\",\n  \"opkomen\": \"opkom\",\n  \"opkomende\": \"opkom\",\n  \"opkoming\": \"opkom\",\n  \"opkomst\": \"opkomst\",\n  \"opkomt\": \"opkomt\",\n  \"opkon\": \"opkon\",\n  \"opkoop\": \"opkop\",\n  \"opkopen\": \"opkop\",\n  \"opkrachtende\": \"opkracht\",\n  \"opkrikken\": \"opkrik\",\n  \"opkropte\": \"opkropt\",\n  \"opkwam\": \"opkwam\",\n  \"opkweek\": \"opkwek\",\n  \"oplaadbaar\": \"oplad\",\n  \"oplaadbare\": \"oplad\",\n  \"oplaaide\": \"oplaaid\",\n  \"oplaaiend\": \"oplaai\",\n  \"opladen\": \"oplad\",\n  \"oplader\": \"oplader\",\n  \"oplage\": \"oplag\",\n  \"opleefde\": \"opleefd\",\n  \"opleefden\": \"opleefd\",\n  \"opleeft\": \"opleeft\",\n  \"oplegde\": \"oplegd\",\n  \"opleggen\": \"oplegg\",\n  \"oplegger\": \"oplegger\",\n  \"opleggers\": \"oplegger\",\n  \"oplegmateriaal\": \"oplegmateriaal\",\n  \"oplegt\": \"oplegt\",\n  \"opleiding\": \"opleid\",\n  \"opleidingen\": \"opleid\",\n  \"opleidingsbehoefte\": \"opleidingsbehoeft\",\n  \"opleidingsinstituten\": \"opleidingsinstitut\",\n  \"opleidingssector\": \"opleidingssector\",\n  \"opleidt\": \"opleidt\",\n  \"oplekte\": \"oplekt\",\n  \"oplette\": \"oplet\",\n  \"opletten\": \"oplet\",\n  \"oplettende\": \"oplet\",\n  \"opleven\": \"oplev\",\n  \"oplevende\": \"oplev\",\n  \"opleverde\": \"opleverd\",\n  \"opleveren\": \"oplever\",\n  \"opleverende\": \"oplever\",\n  \"oplevering\": \"oplever\",\n  \"oplevert\": \"oplevert\",\n  \"opleving\": \"oplev\",\n  \"oplichten\": \"oplicht\",\n  \"oplichtende\": \"oplicht\",\n  \"oplichterij\": \"oplichterij\",\n  \"oplichting\": \"oplicht\",\n  \"oplichtingen\": \"oplicht\",\n  \"oplichtte\": \"oplicht\",\n  \"opliep\": \"opliep\",\n  \"opliepen\": \"opliep\",\n  \"oplikte\": \"oplikt\",\n  \"oploopt\": \"oploopt\",\n  \"oplopen\": \"oplop\",\n  \"oplopend\": \"oplop\",\n  \"oplosbaar\": \"oplos\",\n  \"oplosbare\": \"oplos\",\n  \"oploskoffie\": \"oploskoffie\",\n  \"oplosmiddel\": \"oplosmiddel\",\n  \"oplosmiddelarme\": \"oplosmiddelarm\",\n  \"oplosmiddelemissies\": \"oplosmiddelemissies\",\n  \"oplosmiddelen\": \"oplosmiddel\",\n  \"oplosmiddelenhoudende\": \"oplosmiddelenhoud\",\n  \"oplosmiddelgehalte\": \"oplosmiddelgehalt\",\n  \"oplosmiddelhoudende\": \"oplosmiddelhoud\",\n  \"oplosmiddelrijke\": \"oplosmiddelrijk\",\n  \"oplosmiddelvrije\": \"oplosmiddelvrij\",\n  \"oplossen\": \"oploss\",\n  \"oplossing\": \"oploss\",\n  \"oplossingen\": \"oploss\",\n  \"oplossingsgericht\": \"oplossingsgericht\",\n  \"oplossingsgerichtheid\": \"oplossingsgericht\",\n  \"oplossingsrichting\": \"oplossingsricht\",\n  \"oplost\": \"oplost\",\n  \"opluchting\": \"oplucht\",\n  \"opluikende\": \"opluik\",\n  \"opmaakt\": \"opmaakt\",\n  \"opmaakte\": \"opmaakt\",\n  \"opmaken\": \"opmak\",\n  \"opmars\": \"opmar\",\n  \"opmerkelijk\": \"opmerk\",\n  \"opmerkelijker\": \"opmerkelijker\",\n  \"opmerking\": \"opmerk\",\n  \"opmerkingen\": \"opmerk\",\n  \"opmerkte\": \"opmerkt\",\n  \"opmerkten\": \"opmerkt\",\n  \"opmerkzaam\": \"opmerkzam\",\n  \"opmonterend\": \"opmonter\",\n  \"opname\": \"opnam\",\n  \"opnames\": \"opnames\",\n  \"opneembaar\": \"opnem\",\n  \"opneembare\": \"opnem\",\n  \"opneempunten\": \"opneempunt\",\n  \"opneemt\": \"opneemt\",\n  \"opnemen\": \"opnem\",\n  \"opnieuw\": \"opnieuw\",\n  \"opofferen\": \"opoffer\",\n  \"opofferend\": \"opoffer\",\n  \"opofferende\": \"opoffer\",\n  \"opoffering\": \"opoffer\",\n  \"oppas\": \"oppas\",\n  \"oppassen\": \"oppass\",\n  \"oppasser\": \"oppasser\",\n  \"oppasseres\": \"oppasseres\",\n  \"oppast\": \"oppast\",\n  \"oppaste\": \"oppast\",\n  \"opperde\": \"opperd\",\n  \"opperduit\": \"opperduit\",\n  \"opperen\": \"opper\",\n  \"opperst\": \"opperst\",\n  \"opperste\": \"opperst\",\n  \"oppert\": \"oppert\",\n  \"oppervlak\": \"oppervlak\",\n  \"oppervlakbescherming\": \"oppervlakbescherm\",\n  \"oppervlakken\": \"oppervlak\",\n  \"oppervlakkig\": \"oppervlakk\",\n  \"oppervlakkige\": \"oppervlakk\",\n  \"oppervlakkigheid\": \"oppervlakk\",\n  \"oppervlakkigweg\": \"oppervlakkigweg\",\n  \"oppervlakte\": \"oppervlakt\",\n  \"oppervlaktebehandelende\": \"oppervlaktebehandel\",\n  \"oppervlaktebehandeling\": \"oppervlaktebehandel\",\n  \"oppervlaktebronnen\": \"oppervlaktebronn\",\n  \"oppervlaktedelfstoffen\": \"oppervlaktedelfstoff\",\n  \"oppervlakten\": \"oppervlakt\",\n  \"oppervlaktestructuur\": \"oppervlaktestructur\",\n  \"oppervlaktetechnieken\": \"oppervlaktetechniek\",\n  \"oppervlaktetechnologie\": \"oppervlaktetechnologie\",\n  \"oppervlaktewater\": \"oppervlaktewater\",\n  \"oppervlaktewateren\": \"oppervlaktewater\",\n  \"oppervlaktewaterpeilen\": \"oppervlaktewaterpeil\",\n  \"oppervlaktewatersysteem\": \"oppervlaktewatersystem\",\n  \"oppervlaktwateren\": \"oppervlaktwater\",\n  \"oppoetsen\": \"oppoets\",\n  \"oppompen\": \"oppomp\",\n  \"opponent\": \"opponent\",\n  \"opportunities\": \"opportunities\",\n  \"opposanten\": \"opposant\",\n  \"oppositie\": \"oppositie\",\n  \"oppositieleider\": \"oppositieleider\",\n  \"oppositiepartijen\": \"oppositiepartij\",\n  \"opra\": \"opra\",\n  \"opraasde\": \"opraasd\",\n  \"oprakeling\": \"oprakel\",\n  \"opraken\": \"oprak\",\n  \"opranselen\": \"opransel\",\n  \"opraper\": \"opraper\",\n  \"oprazende\": \"opraz\",\n  \"oprecht\": \"oprecht\",\n  \"oprechtheid\": \"oprecht\",\n  \"oprechtste\": \"oprechtst\",\n  \"oprees\": \"opres\",\n  \"oprekt\": \"oprekt\",\n  \"oprezen\": \"oprez\",\n  \"oprichten\": \"opricht\",\n  \"oprichter\": \"oprichter\",\n  \"oprichters\": \"oprichter\",\n  \"oprichting\": \"opricht\",\n  \"oprijzen\": \"oprijz\",\n  \"oprit\": \"oprit\",\n  \"opritten\": \"oprit\",\n  \"oproep\": \"oproep\",\n  \"oproepen\": \"oproep\",\n  \"oproeping\": \"oproep\",\n  \"oproepkrachten\": \"oproepkracht\",\n  \"oproept\": \"oproept\",\n  \"oproereenheden\": \"oproeren\",\n  \"oprolt\": \"oprolt\",\n  \"opruimen\": \"opruim\",\n  \"opruiming\": \"opruim\",\n  \"opruimkosten\": \"opruimkost\",\n  \"opruimploegen\": \"opruimploeg\",\n  \"opruimt\": \"opruimt\",\n  \"oprukkende\": \"opruk\",\n  \"ops\": \"ops\",\n  \"opschalen\": \"opschal\",\n  \"opschaling\": \"opschal\",\n  \"opschemerde\": \"opschemerd\",\n  \"opschieten\": \"opschiet\",\n  \"opschijningen\": \"opschijn\",\n  \"opschoor\": \"opschor\",\n  \"opschoot\": \"opschot\",\n  \"opschorting\": \"opschort\",\n  \"opschriften\": \"opschrift\",\n  \"opschrikken\": \"opschrik\",\n  \"opschrikten\": \"opschrikt\",\n  \"opschroeft\": \"opschroeft\",\n  \"opschroevende\": \"opschroev\",\n  \"opschudding\": \"opschud\",\n  \"opschuift\": \"opschuift\",\n  \"opslaan\": \"opslan\",\n  \"opslaat\": \"opslat\",\n  \"opslag\": \"opslag\",\n  \"opslagbunkers\": \"opslagbunker\",\n  \"opslagcapaciteit\": \"opslagcapaciteit\",\n  \"opslagdepot\": \"opslagdepot\",\n  \"opslageiland\": \"opslageiland\",\n  \"opslagen\": \"opslag\",\n  \"opslaggoederen\": \"opslaggoeder\",\n  \"opslaginstallaties\": \"opslaginstallaties\",\n  \"opslagkasten\": \"opslagkast\",\n  \"opslagloods\": \"opslaglod\",\n  \"opslagplaats\": \"opslagplat\",\n  \"opslagplaatsen\": \"opslagplaats\",\n  \"opslagprojecten\": \"opslagproject\",\n  \"opslagruimte\": \"opslagruimt\",\n  \"opslagruimten\": \"opslagruimt\",\n  \"opslagsysteem\": \"opslagsystem\",\n  \"opslagtank\": \"opslagtank\",\n  \"opslagtanks\": \"opslagtank\",\n  \"opslagterrein\": \"opslagterrein\",\n  \"opslagterreinen\": \"opslagterrein\",\n  \"opslagvat\": \"opslagvat\",\n  \"opslagvaten\": \"opslagvat\",\n  \"opslagvermogen\": \"opslagvermog\",\n  \"opslagvoorstel\": \"opslagvoorstel\",\n  \"opslikken\": \"opslik\",\n  \"opsloeg\": \"opsloeg\",\n  \"opsloot\": \"opslot\",\n  \"opsluiten\": \"opsluit\",\n  \"opsluiting\": \"opsluit\",\n  \"opsnijdende\": \"opsnijd\",\n  \"opsnoof\": \"opsnof\",\n  \"opsomming\": \"opsomm\",\n  \"opspitsten\": \"opspitst\",\n  \"opspookte\": \"opspookt\",\n  \"opspookten\": \"opspookt\",\n  \"opsporen\": \"opspor\",\n  \"opsporende\": \"opspor\",\n  \"opsporing\": \"opspor\",\n  \"opsporings\": \"opspor\",\n  \"opsporingsactiviteiten\": \"opsporingsactiviteit\",\n  \"opsporingsambtenaar\": \"opsporingsambtenar\",\n  \"opsporingsambtenaren\": \"opsporingsambtenar\",\n  \"opsporingsbevoegdheid\": \"opsporingsbevoegd\",\n  \"opsporingsdiensten\": \"opsporingsdienst\",\n  \"opsporingsonderzoeken\": \"opsporingsonderzoek\",\n  \"opspraak\": \"opsprak\",\n  \"opsprong\": \"opsprong\",\n  \"opspuiten\": \"opspuit\",\n  \"opstaan\": \"opstan\",\n  \"opstaande\": \"opstaand\",\n  \"opstak\": \"opstak\",\n  \"opstand\": \"opstand\",\n  \"opstapelde\": \"opstapeld\",\n  \"opstapeling\": \"opstapel\",\n  \"opstappen\": \"opstapp\",\n  \"opstarten\": \"opstart\",\n  \"opsteeg\": \"opsteg\",\n  \"opsteken\": \"opstek\",\n  \"opstekende\": \"opstek\",\n  \"opstellen\": \"opstell\",\n  \"opstellers\": \"opsteller\",\n  \"opstelling\": \"opstell\",\n  \"opstelt\": \"opstelt\",\n  \"opstijgen\": \"opstijg\",\n  \"opstijgende\": \"opstijg\",\n  \"opstijvend\": \"opstijv\",\n  \"opstoken\": \"opstok\",\n  \"opstond\": \"opstond\",\n  \"opstonden\": \"opstond\",\n  \"opstorming\": \"opstorm\",\n  \"opstralen\": \"opstral\",\n  \"opstrijk\": \"opstrijk\",\n  \"opsturen\": \"opstur\",\n  \"opstuwing\": \"opstuw\",\n  \"optelling\": \"optell\",\n  \"optelt\": \"optelt\",\n  \"optic\": \"optic\",\n  \"optie\": \"optie\",\n  \"opties\": \"opties\",\n  \"optima\": \"optima\",\n  \"optimaal\": \"optimal\",\n  \"optimale\": \"optimal\",\n  \"optimalisatie\": \"optimalisatie\",\n  \"optimaliseert\": \"optimaliseert\",\n  \"optimaliseren\": \"optimaliser\",\n  \"optimalisering\": \"optimaliser\",\n  \"optimisme\": \"optimism\",\n  \"optimistisch\": \"optimistisch\",\n  \"optimistische\": \"optimistisch\",\n  \"option\": \"option\",\n  \"options\": \"option\",\n  \"optisch\": \"optisch\",\n  \"optische\": \"optisch\",\n  \"optocht\": \"optocht\",\n  \"optochten\": \"optocht\",\n  \"optrad\": \"optrad\",\n  \"optraden\": \"optrad\",\n  \"optreden\": \"optred\",\n  \"optredende\": \"optred\",\n  \"optredens\": \"optreden\",\n  \"optreedt\": \"optreedt\",\n  \"optrekken\": \"optrek\",\n  \"optroebelen\": \"optroebel\",\n  \"optrokken\": \"optrok\",\n  \"opvallen\": \"opvall\",\n  \"opvallend\": \"opvall\",\n  \"opvang\": \"opvang\",\n  \"opvangbak\": \"opvangbak\",\n  \"opvangbakken\": \"opvangbak\",\n  \"opvangen\": \"opvang\",\n  \"opvangsysteem\": \"opvangsystem\",\n  \"opvatte\": \"opvat\",\n  \"opvatting\": \"opvat\",\n  \"opvattingen\": \"opvat\",\n  \"opviel\": \"opviel\",\n  \"opvijzelde\": \"opvijzeld\",\n  \"opving\": \"opving\",\n  \"opvlam\": \"opvlam\",\n  \"opvlamde\": \"opvlamd\",\n  \"opvliegend\": \"opvlieg\",\n  \"opvloeiingen\": \"opvloei\",\n  \"opvoedde\": \"opvoed\",\n  \"opvoeden\": \"opvoed\",\n  \"opvoeding\": \"opvoed\",\n  \"opvoeren\": \"opvoer\",\n  \"opvoerinstallatie\": \"opvoerinstallatie\",\n  \"opvolgen\": \"opvolg\",\n  \"opvolgende\": \"opvolg\",\n  \"opvolger\": \"opvolger\",\n  \"opvolgers\": \"opvolger\",\n  \"opvolgingscommissie\": \"opvolgingscommissie\",\n  \"opvouwen\": \"opvouw\",\n  \"opvrat\": \"opvrat\",\n  \"opvullen\": \"opvull\",\n  \"opwaaien\": \"opwaai\",\n  \"opwaartse\": \"opwaart\",\n  \"opwaasde\": \"opwaasd\",\n  \"opwachting\": \"opwacht\",\n  \"opwarmen\": \"opwarm\",\n  \"opwarmend\": \"opwarm\",\n  \"opwarming\": \"opwarm\",\n  \"opwarmt\": \"opwarmt\",\n  \"opweegt\": \"opweegt\",\n  \"opwek\": \"opwek\",\n  \"opwekken\": \"opwek\",\n  \"opwekking\": \"opwek\",\n  \"opwekkingskosten\": \"opwekkingskost\",\n  \"opwekt\": \"opwekt\",\n  \"opwekte\": \"opwekt\",\n  \"opwellen\": \"opwell\",\n  \"opwelling\": \"opwell\",\n  \"opwellingen\": \"opwell\",\n  \"opwellingterstond\": \"opwellingterstond\",\n  \"opwerking\": \"opwerk\",\n  \"opwerkings\": \"opwerk\",\n  \"opwerkingsfabriek\": \"opwerkingsfabriek\",\n  \"opwerkingsfabrieken\": \"opwerkingsfabriek\",\n  \"opwerpen\": \"opwerp\",\n  \"opwikkelend\": \"opwikkel\",\n  \"opwillen\": \"opwill\",\n  \"opwind\": \"opwind\",\n  \"opwindbare\": \"opwind\",\n  \"opwinden\": \"opwind\",\n  \"opwindende\": \"opwind\",\n  \"opwinding\": \"opwind\",\n  \"opwindingen\": \"opwind\",\n  \"opwolkend\": \"opwolk\",\n  \"opwonden\": \"opwond\",\n  \"opzag\": \"opzag\",\n  \"opzagen\": \"opzag\",\n  \"opzet\": \"opzet\",\n  \"opzette\": \"opzet\",\n  \"opzettelijk\": \"opzet\",\n  \"opzetten\": \"opzet\",\n  \"opzettend\": \"opzet\",\n  \"opzicht\": \"opzicht\",\n  \"opzichte\": \"opzicht\",\n  \"opzichten\": \"opzicht\",\n  \"opzieden\": \"opzied\",\n  \"opzien\": \"opzien\",\n  \"opziende\": \"opziend\",\n  \"opzij\": \"opzij\",\n  \"opzocht\": \"opzocht\",\n  \"opzoeken\": \"opzoek\",\n  \"opzoekt\": \"opzoekt\",\n  \"opzweefde\": \"opzweefd\",\n  \"opzweping\": \"opzwep\",\n  \"opzwol\": \"opzwol\",\n  \"or\": \"or\",\n  \"oranje\": \"oranj\",\n  \"oranjepolder\": \"oranjepolder\",\n  \"oranjerieën\": \"oranjerieen\",\n  \"oranjestraat\": \"oranjestrat\",\n  \"oranjewoud\": \"oranjewoud\",\n  \"oranjezon\": \"oranjezon\",\n  \"oratie\": \"oratie\",\n  \"orbaek\": \"orbaek\",\n  \"orchidee\": \"orchidee\",\n  \"orchideeën\": \"orchideeen\",\n  \"orda\": \"orda\",\n  \"orde\": \"ord\",\n  \"ordelijk\": \"ordelijk\",\n  \"ordening\": \"orden\",\n  \"ordeningsbeleid\": \"ordeningsbeleid\",\n  \"order\": \"order\",\n  \"orderontvangsten\": \"orderontvangst\",\n  \"orderportefeuille\": \"orderportefeuill\",\n  \"orders\": \"order\",\n  \"orderstromen\": \"orderstrom\",\n  \"ordnance\": \"ordnanc\",\n  \"ordner\": \"ordner\",\n  \"ordners\": \"ordner\",\n  \"ordonnans\": \"ordonnan\",\n  \"oren\": \"oren\",\n  \"orenburg\": \"orenburg\",\n  \"oresundskonsortiet\": \"oresundskonsortiet\",\n  \"org\": \"org\",\n  \"orgaan\": \"organ\",\n  \"organen\": \"organ\",\n  \"organic\": \"organic\",\n  \"organics\": \"organic\",\n  \"organisatie\": \"organisatie\",\n  \"organisatieantropologe\": \"organisatieantropolog\",\n  \"organisaties\": \"organisaties\",\n  \"organisatiestructuur\": \"organisatiestructur\",\n  \"organisation\": \"organisation\",\n  \"organisator\": \"organisator\",\n  \"organisatoren\": \"organisator\",\n  \"organisatorisch\": \"organisatorisch\",\n  \"organisatorische\": \"organisatorisch\",\n  \"organisch\": \"organisch\",\n  \"organische\": \"organisch\",\n  \"organiseerde\": \"organiseerd\",\n  \"organiseert\": \"organiseert\",\n  \"organiseren\": \"organiser\",\n  \"organiserend\": \"organiser\",\n  \"organisme\": \"organism\",\n  \"organismen\": \"organism\",\n  \"organization\": \"organization\",\n  \"organizeer\": \"organizer\",\n  \"organizeerde\": \"organizeerd\",\n  \"organo\": \"organo\",\n  \"organochloorbestrijdingsmiddelen\": \"organochloorbestrijdingsmiddel\",\n  \"organochloorhoudend\": \"organochloorhoud\",\n  \"organochloorverbindingen\": \"organochloorverbind\",\n  \"organofosforbestrijdingsmiddelen\": \"organofosforbestrijdingsmiddel\",\n  \"organometaal\": \"organometal\",\n  \"organotinverbindingen\": \"organotinverbind\",\n  \"orgie\": \"orgie\",\n  \"oriëntatie\": \"orientatie\",\n  \"oriënteert\": \"orienteert\",\n  \"oriënteren\": \"orienter\",\n  \"oriënterend\": \"orienter\",\n  \"oriënterende\": \"orienter\",\n  \"oriëntering\": \"orienter\",\n  \"originaliteit\": \"originaliteit\",\n  \"origine\": \"origin\",\n  \"origineel\": \"originel\",\n  \"originele\": \"originel\",\n  \"orkaan\": \"orkan\",\n  \"orkaanseizoen\": \"orkaanseizoen\",\n  \"orkanen\": \"orkan\",\n  \"orknefteorgsyntez\": \"orknefteorgsyntez\",\n  \"orkney\": \"orkney\",\n  \"orlaco\": \"orlaco\",\n  \"ornament\": \"ornament\",\n  \"ornamenten\": \"ornament\",\n  \"ornithologische\": \"ornithologisch\",\n  \"ornl\": \"ornl\",\n  \"ors\": \"ors\",\n  \"orthodox\": \"orthodox\",\n  \"orthodoxe\": \"orthodox\",\n  \"orthopedische\": \"orthopedisch\",\n  \"os\": \"os\",\n  \"osaka\": \"osaka\",\n  \"osb\": \"osb\",\n  \"oscar\": \"oscar\",\n  \"oscilleren\": \"osciller\",\n  \"oscillerende\": \"osciller\",\n  \"osha\": \"osha\",\n  \"osieck\": \"osieck\",\n  \"oskam\": \"oskam\",\n  \"oskamp\": \"oskamp\",\n  \"oskarhamn\": \"oskarhamn\",\n  \"oslo\": \"oslo\",\n  \"osmocote\": \"osmocot\",\n  \"osmose\": \"osmos\",\n  \"osnabrück\": \"osnabruck\",\n  \"ospar\": \"ospar\",\n  \"osprey\": \"osprey\",\n  \"oss\": \"oss\",\n  \"osse\": \"oss\",\n  \"ossenvlees\": \"ossenvles\",\n  \"ostende\": \"ostend\",\n  \"österreich\": \"osterreich\",\n  \"ostfriesland\": \"ostfriesland\",\n  \"otb\": \"otb\",\n  \"otero\": \"otero\",\n  \"ottawa\": \"ottawa\",\n  \"ottelientje\": \"ottelientj\",\n  \"otters\": \"otter\",\n  \"otto\": \"otto\",\n  \"ottocar\": \"ottocar\",\n  \"oud\": \"oud\",\n  \"oude\": \"oud\",\n  \"oudelui\": \"oudelui\",\n  \"oudenallen\": \"oudenall\",\n  \"oudenbosch\": \"oudenbosch\",\n  \"oudenrijn\": \"oudenrijn\",\n  \"ouder\": \"ouder\",\n  \"ouderdom\": \"ouderdom\",\n  \"ouderdoms\": \"ouderdom\",\n  \"oudere\": \"ouder\",\n  \"ouderen\": \"ouder\",\n  \"ouderenaftrek\": \"ouderenaftrek\",\n  \"ouderkerk\": \"ouderkerk\",\n  \"ouderlijk\": \"ouder\",\n  \"ouderlijke\": \"ouder\",\n  \"ouders\": \"ouder\",\n  \"ouderwets\": \"ouderwet\",\n  \"ouderwetse\": \"ouderwet\",\n  \"oudewater\": \"oudewater\",\n  \"oudheden\": \"oudheid\",\n  \"oudheid\": \"oudheid\",\n  \"oudje\": \"oudj\",\n  \"oudjes\": \"oudjes\",\n  \"oudpapier\": \"oudpapier\",\n  \"oudpapierbedrijf\": \"oudpapierbedrijf\",\n  \"oudpapiermarkt\": \"oudpapiermarkt\",\n  \"oudste\": \"oudst\",\n  \"òudste\": \"òudst\",\n  \"oudsten\": \"oudst\",\n  \"oudwoude\": \"oudwoud\",\n  \"ouest\": \"ouest\",\n  \"our\": \"our\",\n  \"out\": \"out\",\n  \"outplacement\": \"outplacement\",\n  \"output\": \"output\",\n  \"ouwe\": \"ouw\",\n  \"oùwe\": \"oùw\",\n  \"ouweheer\": \"ouweher\",\n  \"ouwelijk\": \"ouwelijk\",\n  \"ouwelijke\": \"ouwelijk\",\n  \"ouwsterhaule\": \"ouwsterhaul\",\n  \"ov\": \"ov\",\n  \"ovale\": \"oval\",\n  \"ovam\": \"ovam\",\n  \"ovb\": \"ovb\",\n  \"oven\": \"oven\",\n  \"ovens\": \"oven\",\n  \"over\": \"over\",\n  \"overaanbod\": \"overaanbod\",\n  \"overal\": \"overal\",\n  \"overall\": \"overall\",\n  \"overasselt\": \"overasselt\",\n  \"overbekende\": \"overbek\",\n  \"overbelast\": \"overbelast\",\n  \"overbemest\": \"overbemest\",\n  \"overbemesten\": \"overbemest\",\n  \"overbemesting\": \"overbemest\",\n  \"overbevissing\": \"overbeviss\",\n  \"overbevist\": \"overbevist\",\n  \"overbleef\": \"overblef\",\n  \"overblijfselen\": \"overblijfsel\",\n  \"overblijft\": \"overblijft\",\n  \"overblijven\": \"overblijv\",\n  \"overblijvende\": \"overblijv\",\n  \"overbodig\": \"overbod\",\n  \"overbodige\": \"overbod\",\n  \"overboog\": \"overbog\",\n  \"overboord\": \"overboord\",\n  \"overbosch\": \"overbosch\",\n  \"overbrengen\": \"overbreng\",\n  \"overbrenging\": \"overbreng\",\n  \"overbrugging\": \"overbrugg\",\n  \"overbulderde\": \"overbulderd\",\n  \"overcapaciteit\": \"overcapaciteit\",\n  \"overdaad\": \"overdad\",\n  \"overdadigheden\": \"overdad\",\n  \"overdadigheid\": \"overdad\",\n  \"overdag\": \"overdag\",\n  \"overdekt\": \"overdekt\",\n  \"overdekte\": \"overdekt\",\n  \"overdenken\": \"overdenk\",\n  \"overdracht\": \"overdracht\",\n  \"overdrachts\": \"overdracht\",\n  \"overdrachtsprijs\": \"overdrachtsprijs\",\n  \"overdragen\": \"overdrag\",\n  \"overdreef\": \"overdref\",\n  \"overdreven\": \"overdrev\",\n  \"overdrijft\": \"overdrijft\",\n  \"overdrijven\": \"overdrijv\",\n  \"overdrijving\": \"overdrijv\",\n  \"overdruk\": \"overdruk\",\n  \"overeen\": \"overen\",\n  \"overeengekomen\": \"overeengekom\",\n  \"overeenkomst\": \"overeenkomst\",\n  \"overeenkomsten\": \"overeenkomst\",\n  \"overeenkomstig\": \"overeenkomst\",\n  \"overeenkomstige\": \"overeenkomst\",\n  \"overeenkomt\": \"overeenkomt\",\n  \"overeenkwamen\": \"overeenkwam\",\n  \"overeenstemming\": \"overeenstemm\",\n  \"overeenstemt\": \"overeenstemt\",\n  \"overeind\": \"overeind\",\n  \"overexploitatie\": \"overexploitatie\",\n  \"overgaan\": \"overgan\",\n  \"overgaat\": \"overgat\",\n  \"overgaf\": \"overgaf\",\n  \"overgang\": \"overgang\",\n  \"overgangsfase\": \"overgangsfas\",\n  \"overgangsgebied\": \"overgangsgebied\",\n  \"overgangsperiode\": \"overgangsperiod\",\n  \"overgangsregeling\": \"overgangsregel\",\n  \"overgangssubsidie\": \"overgangssubsidie\",\n  \"overgangstermijn\": \"overgangstermijn\",\n  \"overgave\": \"overgav\",\n  \"overgebleven\": \"overgeblev\",\n  \"overgebogen\": \"overgebog\",\n  \"overgebracht\": \"overgebracht\",\n  \"overgedachte\": \"overgedacht\",\n  \"overgedragen\": \"overgedrag\",\n  \"overgeeft\": \"overgeeft\",\n  \"overgeërfde\": \"overgeerfd\",\n  \"overgegaan\": \"overgegan\",\n  \"overgehaald\": \"overgehaald\",\n  \"overgeheveld\": \"overgeheveld\",\n  \"overgekomen\": \"overgekom\",\n  \"overgelaten\": \"overgelat\",\n  \"overgeleverd\": \"overgeleverd\",\n  \"overgelopen\": \"overgelop\",\n  \"overgemaakt\": \"overgemaakt\",\n  \"overgenomen\": \"overgenom\",\n  \"overgeplaatst\": \"overgeplaatst\",\n  \"overgeplant\": \"overgeplant\",\n  \"overgeschakeld\": \"overgeschakeld\",\n  \"overgeschilderd\": \"overgeschilderd\",\n  \"overgeslagen\": \"overgeslag\",\n  \"overgestapt\": \"overgestapt\",\n  \"overgestoken\": \"overgestok\",\n  \"overgevende\": \"overgev\",\n  \"overgevoel\": \"overgevoel\",\n  \"overgevoelig\": \"overgevoel\",\n  \"overgevoelige\": \"overgevoel\",\n  \"overgevoeligheid\": \"overgevoel\",\n  \"overgewichtig\": \"overgewicht\",\n  \"overgordijn\": \"overgordijn\",\n  \"overgordijnen\": \"overgordijn\",\n  \"overgrootmoeder\": \"overgrootmoeder\",\n  \"overgrote\": \"overgrot\",\n  \"overhalen\": \"overhal\",\n  \"overhand\": \"overhand\",\n  \"overhandigd\": \"overhandigd\",\n  \"overhandigde\": \"overhandigd\",\n  \"overhandigden\": \"overhandigd\",\n  \"overhandigen\": \"overhand\",\n  \"overhandiging\": \"overhand\",\n  \"overhangend\": \"overhang\",\n  \"overhead\": \"overhead\",\n  \"overheden\": \"over\",\n  \"overheen\": \"overhen\",\n  \"overheerlijke\": \"overher\",\n  \"overheersen\": \"overheers\",\n  \"overheersend\": \"overheers\",\n  \"overheersten\": \"overheerst\",\n  \"overheid\": \"over\",\n  \"overheids\": \"over\",\n  \"overheidsaandelen\": \"overheidsaandel\",\n  \"overheidsambtenaren\": \"overheidsambtenar\",\n  \"overheidsbeambten\": \"overheidsbeambt\",\n  \"overheidsbedrijf\": \"overheidsbedrijf\",\n  \"overheidsbeleid\": \"overheidsbeleid\",\n  \"overheidsberekeningen\": \"overheidsbereken\",\n  \"overheidsbeslissingen\": \"overheidsbesliss\",\n  \"overheidsbijdrage\": \"overheidsbijdrag\",\n  \"overheidscommissie\": \"overheidscommissie\",\n  \"overheidsdeel\": \"overheidsdel\",\n  \"overheidsdeelneming\": \"overheidsdeelnem\",\n  \"overheidsdiensten\": \"overheidsdienst\",\n  \"overheidsdoelstelling\": \"overheidsdoelstell\",\n  \"overheidsfunctionarissen\": \"overheidsfunctionariss\",\n  \"overheidsgebouwen\": \"overheidsgebouw\",\n  \"overheidsgegevens\": \"overheidsgegeven\",\n  \"overheidsgeld\": \"overheidsgeld\",\n  \"overheidshulp\": \"overheidshulp\",\n  \"overheidsingrijpen\": \"overheidsingrijp\",\n  \"overheidsinspanning\": \"overheidsinspann\",\n  \"overheidsinstanties\": \"overheidsinstanties\",\n  \"overheidsinstelling\": \"overheidsinstell\",\n  \"overheidsinstellingen\": \"overheidsinstell\",\n  \"overheidsinvestering\": \"overheidsinvester\",\n  \"overheidsmaatregelen\": \"overheidsmaatregel\",\n  \"overheidsnorm\": \"overheidsnorm\",\n  \"overheidsnormen\": \"overheidsnorm\",\n  \"overheidsonderneming\": \"overheidsondernem\",\n  \"overheidsopdrachten\": \"overheidsopdracht\",\n  \"overheidsorgaan\": \"overheidsorgan\",\n  \"overheidsorganisatie\": \"overheidsorganisatie\",\n  \"overheidsorganisaties\": \"overheidsorganisaties\",\n  \"overheidsplan\": \"overheidsplan\",\n  \"overheidsplannen\": \"overheidsplann\",\n  \"overheidsprogamma\": \"overheidsprogamma\",\n  \"overheidsprogramma\": \"overheidsprogramma\",\n  \"overheidspubliciteit\": \"overheidspubliciteit\",\n  \"overheidsregeling\": \"overheidsregel\",\n  \"overheidsregels\": \"overheidsregel\",\n  \"overheidssteun\": \"overheidssteun\",\n  \"overheidssturing\": \"overheidsstur\",\n  \"overheidssubsidie\": \"overheidssubsidie\",\n  \"overheidsuitgaven\": \"overheidsuitgav\",\n  \"overheidsverslag\": \"overheidsverslag\",\n  \"overheidsvoorlichting\": \"overheidsvoorlicht\",\n  \"overheidswege\": \"overheidsweg\",\n  \"overhevelen\": \"overhevel\",\n  \"overheveling\": \"overhevel\",\n  \"overhevelingstoeslag\": \"overhevelingstoeslag\",\n  \"overhevelingstoeslagen\": \"overhevelingstoeslag\",\n  \"overhoop\": \"overhop\",\n  \"overhoorde\": \"overhoord\",\n  \"overhouden\": \"overhoud\",\n  \"overig\": \"over\",\n  \"overige\": \"over\",\n  \"overigen\": \"over\",\n  \"overigens\": \"overigen\",\n  \"overijse\": \"overijs\",\n  \"overijsel\": \"overijsel\",\n  \"overijselse\": \"overijsel\",\n  \"overijssel\": \"overijssel\",\n  \"overijsselse\": \"overijssel\",\n  \"overjas\": \"overjas\",\n  \"overjasje\": \"overjasj\",\n  \"overkant\": \"overkant\",\n  \"overkappen\": \"overkapp\",\n  \"overkapping\": \"overkapp\",\n  \"overkapt\": \"overkapt\",\n  \"overkoepelend\": \"overkoepel\",\n  \"overkoepelende\": \"overkoepel\",\n  \"overkomen\": \"overkom\",\n  \"overkomst\": \"overkomst\",\n  \"overlaadstation\": \"overlaadstation\",\n  \"overlaat\": \"overlat\",\n  \"overlap\": \"overlap\",\n  \"overlappende\": \"overlapp\",\n  \"overlapt\": \"overlapt\",\n  \"overlast\": \"overlast\",\n  \"overlaten\": \"overlat\",\n  \"overleden\": \"overled\",\n  \"overleed\": \"overled\",\n  \"overleefd\": \"overleefd\",\n  \"overleeft\": \"overleeft\",\n  \"overleerafval\": \"overleerafval\",\n  \"overleg\": \"overleg\",\n  \"overlegcentrum\": \"overlegcentrum\",\n  \"overlegd\": \"overlegd\",\n  \"overlegde\": \"overlegd\",\n  \"overlegden\": \"overlegd\",\n  \"overlegeconomie\": \"overlegeconomie\",\n  \"overleggen\": \"overlegg\",\n  \"overleggende\": \"overlegg\",\n  \"overleggroep\": \"overleggroep\",\n  \"overleggroepen\": \"overleggroep\",\n  \"overlegorgaan\": \"overlegorgan\",\n  \"overlegorganen\": \"overlegorgan\",\n  \"overlegplatform\": \"overlegplatform\",\n  \"overlegproces\": \"overlegproces\",\n  \"overlegt\": \"overlegt\",\n  \"overleven\": \"overlev\",\n  \"overlevende\": \"overlev\",\n  \"overleving\": \"overlev\",\n  \"overlevingsslag\": \"overlevingsslag\",\n  \"overliet\": \"overliet\",\n  \"overlieten\": \"overliet\",\n  \"overlijden\": \"overlijd\",\n  \"overloopgebied\": \"overloopgebied\",\n  \"overmaas\": \"overmas\",\n  \"overmaat\": \"overmat\",\n  \"overmate\": \"overmat\",\n  \"overmatige\": \"overmat\",\n  \"overmeesterde\": \"overmeesterd\",\n  \"overmeesteren\": \"overmeester\",\n  \"overmoedige\": \"overmoed\",\n  \"overmoedigheid\": \"overmoed\",\n  \"overmorgen\": \"overmorg\",\n  \"overnacht\": \"overnacht\",\n  \"overnachting\": \"overnacht\",\n  \"overnam\": \"overnam\",\n  \"overname\": \"overnam\",\n  \"overnamebesprekingen\": \"overnamebesprek\",\n  \"overnamedoelstelling\": \"overnamedoelstell\",\n  \"overnames\": \"overnames\",\n  \"overneemt\": \"overneemt\",\n  \"overnemen\": \"overnem\",\n  \"overpersen\": \"overpers\",\n  \"overpoeierd\": \"overpoeierd\",\n  \"overproduktie\": \"overproduktie\",\n  \"overreden\": \"overred\",\n  \"overreding\": \"overred\",\n  \"overrijden\": \"overrijd\",\n  \"overrompeld\": \"overrompeld\",\n  \"overschaduwd\": \"overschaduwd\",\n  \"overschakelen\": \"overschakel\",\n  \"overschakeling\": \"overschakel\",\n  \"overschat\": \"overschat\",\n  \"overschoenen\": \"overschoen\",\n  \"overschot\": \"overschot\",\n  \"overschotbedrijven\": \"overschotbedrijv\",\n  \"overschotgebieden\": \"overschotgebied\",\n  \"overschotheffing\": \"overschotheff\",\n  \"overschotsheffingen\": \"overschotsheff\",\n  \"overschotten\": \"overschot\",\n  \"overschreden\": \"overschred\",\n  \"overschreed\": \"overschred\",\n  \"overschreiden\": \"overschreid\",\n  \"overschreiding\": \"overschreid\",\n  \"overschrijden\": \"overschrijd\",\n  \"overschrijding\": \"overschrijd\",\n  \"overschrijdingen\": \"overschrijd\",\n  \"overschrijdt\": \"overschrijdt\",\n  \"overschrÿdt\": \"overschrÿdt\",\n  \"overseas\": \"overseas\",\n  \"overslaan\": \"overslan\",\n  \"overslaande\": \"overslaand\",\n  \"overslag\": \"overslag\",\n  \"overslagbedrijf\": \"overslagbedrijf\",\n  \"overslagbedrijven\": \"overslagbedrijv\",\n  \"overslagen\": \"overslag\",\n  \"overslaginstallaties\": \"overslaginstallaties\",\n  \"overslagplatform\": \"overslagplatform\",\n  \"overslagstation\": \"overslagstation\",\n  \"overslagstations\": \"overslagstation\",\n  \"overslagvoorzieningen\": \"overslagvoorzien\",\n  \"oversloeg\": \"oversloeg\",\n  \"overspannen\": \"overspann\",\n  \"overstaan\": \"overstan\",\n  \"overstap\": \"overstap\",\n  \"overstappen\": \"overstapp\",\n  \"oversteek\": \"overstek\",\n  \"oversteken\": \"overstek\",\n  \"overstelpen\": \"overstelp\",\n  \"overstelpend\": \"overstelp\",\n  \"overstelpt\": \"overstelpt\",\n  \"overstelpte\": \"overstelpt\",\n  \"overstelpten\": \"overstelpt\",\n  \"overstijgen\": \"overstijg\",\n  \"overstijgt\": \"overstijgt\",\n  \"overstromende\": \"overstrom\",\n  \"overstroming\": \"overstrom\",\n  \"overstromingen\": \"overstrom\",\n  \"overstroomde\": \"overstroomd\",\n  \"overstuur\": \"overstur\",\n  \"oversubsidiëring\": \"oversubsidier\",\n  \"overtekend\": \"overtek\",\n  \"overtochten\": \"overtocht\",\n  \"overtollig\": \"overtoll\",\n  \"overtollige\": \"overtoll\",\n  \"overtraden\": \"overtrad\",\n  \"overtreden\": \"overtred\",\n  \"overtreder\": \"overtreder\",\n  \"overtreders\": \"overtreder\",\n  \"overtreding\": \"overtred\",\n  \"overtredingen\": \"overtred\",\n  \"overtreedt\": \"overtreedt\",\n  \"overtreffen\": \"overtreff\",\n  \"overtreft\": \"overtreft\",\n  \"overtripte\": \"overtript\",\n  \"overtrof\": \"overtrof\",\n  \"overtroffen\": \"overtroff\",\n  \"overtuigd\": \"overtuigd\",\n  \"overtuigde\": \"overtuigd\",\n  \"overtuigdheid\": \"overtuigd\",\n  \"overtuigen\": \"overtu\",\n  \"overtuiging\": \"overtu\",\n  \"overtuigingen\": \"overtu\",\n  \"overuren\": \"overur\",\n  \"overvallen\": \"overvall\",\n  \"overvalt\": \"overvalt\",\n  \"oververhit\": \"oververhit\",\n  \"oververhitting\": \"oververhit\",\n  \"overviel\": \"overviel\",\n  \"overview\": \"overview\",\n  \"overvloed\": \"overvloed\",\n  \"overvloedig\": \"overvloed\",\n  \"overvloedige\": \"overvloed\",\n  \"overvol\": \"overvol\",\n  \"overvolle\": \"overvoll\",\n  \"overwaaien\": \"overwaai\",\n  \"overweegt\": \"overweegt\",\n  \"overweek\": \"overwek\",\n  \"overweg\": \"overweg\",\n  \"overwegen\": \"overweg\",\n  \"overwegend\": \"overweg\",\n  \"overweging\": \"overweg\",\n  \"overwegingen\": \"overweg\",\n  \"overweldigd\": \"overweldigd\",\n  \"overweldigde\": \"overweldigd\",\n  \"overweldigen\": \"overweld\",\n  \"overweldigend\": \"overweld\",\n  \"overweldigende\": \"overweld\",\n  \"overwin\": \"overwin\",\n  \"overwinnaar\": \"overwinnar\",\n  \"overwinnen\": \"overwinn\",\n  \"overwinnende\": \"overwinn\",\n  \"overwinning\": \"overwinn\",\n  \"overwogen\": \"overwog\",\n  \"overwon\": \"overwon\",\n  \"overwonnen\": \"overwonn\",\n  \"overwoog\": \"overwog\",\n  \"overzag\": \"overzag\",\n  \"overzeese\": \"overzes\",\n  \"overzicht\": \"overzicht\",\n  \"overzichtelijk\": \"overzicht\",\n  \"overzichten\": \"overzicht\",\n  \"overzichtsrapport\": \"overzichtsrapport\",\n  \"overzien\": \"overzien\",\n  \"overziet\": \"overziet\",\n  \"overzijde\": \"overzijd\",\n  \"ovto\": \"ovto\",\n  \"ow\": \"ow\",\n  \"owens\": \"owen\",\n  \"owners\": \"owner\",\n  \"ows\": \"ows\",\n  \"oxidant\": \"oxidant\",\n  \"oxidatie\": \"oxidatie\",\n  \"oxidatiestap\": \"oxidatiestap\",\n  \"oxidation\": \"oxidation\",\n  \"oxide\": \"oxid\",\n  \"oxideert\": \"oxideert\",\n  \"oxinil\": \"oxinil\",\n  \"oxydatie\": \"oxydatie\",\n  \"oxydatiekatalysator\": \"oxydatiekatalysator\",\n  \"oxydatiemiddel\": \"oxydatiemiddel\",\n  \"oxydatiereactie\": \"oxydatiereactie\",\n  \"oxydatiestap\": \"oxydatiestap\",\n  \"oxydatieve\": \"oxydatiev\",\n  \"oxyde\": \"oxyd\",\n  \"oxyden\": \"oxyd\",\n  \"oxyderen\": \"oxyder\",\n  \"oxyderende\": \"oxyder\",\n  \"oxygrafische\": \"oxygrafisch\",\n  \"oxykalkslik\": \"oxykalkslik\",\n  \"oxypro\": \"oxypro\",\n  \"ozb\": \"ozb\",\n  \"ozon\": \"ozon\",\n  \"ozonaantastend\": \"ozonaantast\",\n  \"ozonaantastende\": \"ozonaantast\",\n  \"ozonafbraak\": \"ozonafbrak\",\n  \"ozonafbrekende\": \"ozonafbrek\",\n  \"ozonapparatuur\": \"ozonapparatur\",\n  \"ozonconcentratie\": \"ozonconcentratie\",\n  \"ozonconcentraties\": \"ozonconcentraties\",\n  \"ozonfonds\": \"ozonfond\",\n  \"ozongat\": \"ozongat\",\n  \"ozonhuishouding\": \"ozonhuishoud\",\n  \"ozonisatie\": \"ozonisatie\",\n  \"ozonisator\": \"ozonisator\",\n  \"ozonlaag\": \"ozonlag\",\n  \"ozonlaagaantastende\": \"ozonlaagaantast\",\n  \"ozonlaagafbreker\": \"ozonlaagafbreker\",\n  \"ozonlaagonderzoek\": \"ozonlaagonderzoek\",\n  \"ozonniveaus\": \"ozonniveaus\",\n  \"ozonnorm\": \"ozonnorm\",\n  \"ozonnormen\": \"ozonnorm\",\n  \"ozonperiode\": \"ozonperiod\",\n  \"ozonproblematiek\": \"ozonproblematiek\",\n  \"ozonrichtlijn\": \"ozonrichtlijn\",\n  \"ozonstandaard\": \"ozonstandaard\",\n  \"ozontoename\": \"ozontoenam\",\n  \"ozonverdrag\": \"ozonverdrag\",\n  \"ozonvervuiling\": \"ozonvervuil\",\n  \"ozonvorming\": \"ozonvorm\",\n  \"ozonvriendelijke\": \"ozonvriend\",\n  \"ozonwaarden\": \"ozonwaard\",\n  \"p\": \"p\",\n  \"pa\": \"pa\",\n  \"paadjes\": \"paadjes\",\n  \"paai\": \"paai\",\n  \"paaien\": \"paai\",\n  \"paal\": \"pal\",\n  \"paalsfundering\": \"paalsfunder\",\n  \"paar\": \"par\",\n  \"páar\": \"par\",\n  \"paard\": \"paard\",\n  \"paardachtigen\": \"paardacht\",\n  \"paardehaar\": \"paardehar\",\n  \"paarden\": \"paard\",\n  \"paardenhouderij\": \"paardenhouderij\",\n  \"paardentram\": \"paardentram\",\n  \"paardje\": \"paardj\",\n  \"paarlemoer\": \"paarlemoer\",\n  \"paars\": \"par\",\n  \"paarse\": \"par\",\n  \"paarsig\": \"paarsig\",\n  \"paarsige\": \"paarsig\",\n  \"paart\": \"paart\",\n  \"paartijd\": \"paartijd\",\n  \"paartje\": \"paartj\",\n  \"paassen\": \"paass\",\n  \"pab\": \"pab\",\n  \"pacht\": \"pacht\",\n  \"pachtcontracten\": \"pachtcontract\",\n  \"pachter\": \"pachter\",\n  \"pachthof\": \"pachthof\",\n  \"pachtsituatie\": \"pachtsituatie\",\n  \"pachyderm\": \"pachyderm\",\n  \"pacific\": \"pacific\",\n  \"pacificgebied\": \"pacificgebied\",\n  \"packaging\": \"packag\",\n  \"packer\": \"packer\",\n  \"pacs\": \"pac\",\n  \"pact\": \"pact\",\n  \"pad\": \"pad\",\n  \"paddestoelen\": \"paddestoel\",\n  \"paden\": \"pad\",\n  \"pafc\": \"pafc\",\n  \"page\": \"pag\",\n  \"pagina\": \"pagina\",\n  \"paginagroot\": \"paginagrot\",\n  \"paginagrote\": \"paginagrot\",\n  \"pais\": \"pais\",\n  \"paisley\": \"paisley\",\n  \"pajong\": \"pajong\",\n  \"pak\": \"pak\",\n  \"pakhuizen\": \"pakhuiz\",\n  \"pakje\": \"pakj\",\n  \"pakken\": \"pak\",\n  \"pakkende\": \"pakkend\",\n  \"pakket\": \"pakket\",\n  \"pakketten\": \"pakket\",\n  \"pakkingen\": \"pakking\",\n  \"pakkings\": \"pakking\",\n  \"pakt\": \"pakt\",\n  \"pakte\": \"pakt\",\n  \"pakten\": \"pakt\",\n  \"pal\": \"pal\",\n  \"paleis\": \"paleis\",\n  \"paleizen\": \"paleiz\",\n  \"palen\": \"pal\",\n  \"paleobotany\": \"paleobotany\",\n  \"palermo\": \"palermo\",\n  \"palestijnen\": \"palestijn\",\n  \"palet\": \"palet\",\n  \"palfrenier\": \"palfrenier\",\n  \"paling\": \"paling\",\n  \"palingfuiken\": \"palingfuik\",\n  \"paljas\": \"paljas\",\n  \"palladium\": \"palladium\",\n  \"pallavicini\": \"pallavicini\",\n  \"pallethout\": \"pallethout\",\n  \"pallets\": \"pallet\",\n  \"palm\": \"palm\",\n  \"palmen\": \"palm\",\n  \"palmhout\": \"palmhout\",\n  \"palmpitolie\": \"palmpitolie\",\n  \"palynology\": \"palynology\",\n  \"pamerindo\": \"pamerindo\",\n  \"pamflet\": \"pamflet\",\n  \"pamfletten\": \"pamflet\",\n  \"pamplona\": \"pamplona\",\n  \"pan\": \"pan\",\n  \"panasonic\": \"panasonic\",\n  \"pancanadian\": \"pancanadian\",\n  \"pand\": \"pand\",\n  \"panden\": \"pand\",\n  \"pandjes\": \"pandjes\",\n  \"paneel\": \"panel\",\n  \"panel\": \"panel\",\n  \"panelen\": \"panel\",\n  \"panheel\": \"panhel\",\n  \"paniek\": \"paniek\",\n  \"panklare\": \"panklar\",\n  \"pannen\": \"pann\",\n  \"pannerdens\": \"pannerden\",\n  \"pannerdensch\": \"pannerdensch\",\n  \"panoplie\": \"panoplie\",\n  \"pantalon\": \"pantalon\",\n  \"pantalons\": \"pantalon\",\n  \"pantoffels\": \"pantoffel\",\n  \"pantomime\": \"pantomim\",\n  \"pantser\": \"pantser\",\n  \"pap\": \"pap\",\n  \"papa\": \"papa\",\n  \"papagaaiduikers\": \"papagaaiduiker\",\n  \"papaverbloemen\": \"papaverbloem\",\n  \"papeete\": \"papet\",\n  \"papegaaien\": \"papegaai\",\n  \"papegaaikleuren\": \"papegaaikleur\",\n  \"papendrecht\": \"papendrecht\",\n  \"papenveer\": \"papenver\",\n  \"paper\": \"paper\",\n  \"papier\": \"papier\",\n  \"papierafval\": \"papierafval\",\n  \"papierafvalcontainers\": \"papierafvalcontainer\",\n  \"papierafvalverwerking\": \"papierafvalverwerk\",\n  \"papierbrij\": \"papierbrij\",\n  \"papiercellulose\": \"papiercellulos\",\n  \"papierchemicaliën\": \"papierchemicalien\",\n  \"papierconcern\": \"papierconcern\",\n  \"papieren\": \"papier\",\n  \"papierfabricage\": \"papierfabricag\",\n  \"papierfabriek\": \"papierfabriek\",\n  \"papierfabrieken\": \"papierfabriek\",\n  \"papierfabrikant\": \"papierfabrikant\",\n  \"papiergebruik\": \"papiergebruik\",\n  \"papiergroep\": \"papiergroep\",\n  \"papiergroothandel\": \"papiergroothandel\",\n  \"papierindustrie\": \"papierindustrie\",\n  \"papierinzameling\": \"papierinzamel\",\n  \"papierloze\": \"papierloz\",\n  \"papiermengsel\": \"papiermengsel\",\n  \"papierprijs\": \"papierprijs\",\n  \"papierproducenten\": \"papierproducent\",\n  \"papierprodukten\": \"papierprodukt\",\n  \"papierproduktie\": \"papierproduktie\",\n  \"papierpulp\": \"papierpulp\",\n  \"papiersoort\": \"papiersoort\",\n  \"papiersoorten\": \"papiersoort\",\n  \"papiertje\": \"papiertj\",\n  \"papierverbruik\": \"papierverbruik\",\n  \"papiervernietigers\": \"papiervernietiger\",\n  \"papierverwerkers\": \"papierverwerker\",\n  \"papierwerk\": \"papierwerk\",\n  \"papoea\": \"papoea\",\n  \"paprika\": \"paprika\",\n  \"paprikaplanten\": \"paprikaplant\",\n  \"paprikateelt\": \"paprikateelt\",\n  \"paques\": \"paques\",\n  \"parabole\": \"parabol\",\n  \"parachin\": \"parachin\",\n  \"paradichloorbenzeen\": \"paradichloorbenzen\",\n  \"paradijs\": \"paradijs\",\n  \"paradijsvogels\": \"paradijsvogel\",\n  \"paradiso\": \"paradiso\",\n  \"paradox\": \"paradox\",\n  \"parafines\": \"parafines\",\n  \"paragraaf\": \"paragraf\",\n  \"parallel\": \"parallel\",\n  \"parallelle\": \"parallell\",\n  \"parallelsessies\": \"parallelsessies\",\n  \"paramaribo\": \"paramaribo\",\n  \"parameters\": \"parameter\",\n  \"parapluie\": \"paraplui\",\n  \"parapluies\": \"parapluies\",\n  \"paras\": \"paras\",\n  \"parasieten\": \"parasiet\",\n  \"parasit\": \"parasit\",\n  \"parasjin\": \"parasjin\",\n  \"parasol\": \"parasol\",\n  \"parasols\": \"parasol\",\n  \"paravent\": \"paravent\",\n  \"paravents\": \"paravent\",\n  \"parcours\": \"parcour\",\n  \"pardon\": \"pardon\",\n  \"parel\": \"parel\",\n  \"parelde\": \"pareld\",\n  \"parelden\": \"pareld\",\n  \"parelen\": \"parel\",\n  \"parelend\": \"parel\",\n  \"parelsnoeren\": \"parelsnoer\",\n  \"paren\": \"par\",\n  \"parfumeren\": \"parfumer\",\n  \"paribas\": \"paribas\",\n  \"pariëren\": \"parier\",\n  \"parijs\": \"parijs\",\n  \"parijse\": \"parijs\",\n  \"paris\": \"paris\",\n  \"parisienne\": \"parisienn\",\n  \"park\": \"park\",\n  \"parkachtige\": \"parkacht\",\n  \"parkbos\": \"parkbos\",\n  \"parkeerelementen\": \"parkeerelement\",\n  \"parkeergarages\": \"parkeergarages\",\n  \"parkeergelegenheid\": \"parkeergeleg\",\n  \"parkeermogelijkheden\": \"parkeermog\",\n  \"parkeerplaats\": \"parkeerplat\",\n  \"parkeerplaatsen\": \"parkeerplaats\",\n  \"parkeerterreinen\": \"parkeerterrein\",\n  \"parken\": \"park\",\n  \"parket\": \"parket\",\n  \"parketten\": \"parket\",\n  \"parkgebied\": \"parkgebied\",\n  \"parkjes\": \"parkjes\",\n  \"parks\": \"park\",\n  \"parksysteem\": \"parksystem\",\n  \"parlement\": \"parlement\",\n  \"parlementair\": \"parlementair\",\n  \"parlementaire\": \"parlementair\",\n  \"parlementariër\": \"parlementarier\",\n  \"parlementariërs\": \"parlementarier\",\n  \"parlementslid\": \"parlementslid\",\n  \"parlementssteun\": \"parlementssteun\",\n  \"parma\": \"parma\",\n  \"parool\": \"parol\",\n  \"parsons\": \"parson\",\n  \"part\": \"part\",\n  \"participant\": \"participant\",\n  \"participanten\": \"participant\",\n  \"participatie\": \"participatie\",\n  \"participeert\": \"participeert\",\n  \"participeren\": \"participer\",\n  \"particle\": \"particl\",\n  \"particulate\": \"particulat\",\n  \"particulier\": \"particulier\",\n  \"particuliere\": \"particulier\",\n  \"particulieren\": \"particulier\",\n  \"partie\": \"partie\",\n  \"partiële\": \"partiel\",\n  \"partij\": \"partij\",\n  \"partijen\": \"partij\",\n  \"partijkeuringen\": \"partijkeur\",\n  \"partijstaat\": \"partijstat\",\n  \"partijstaten\": \"partijstat\",\n  \"partijtje\": \"partijtj\",\n  \"partijtjes\": \"partijtjes\",\n  \"partner\": \"partner\",\n  \"partnerbeurs\": \"partnerbeur\",\n  \"partners\": \"partner\",\n  \"partnership\": \"partnership\",\n  \"parvenùachtig\": \"parvenùacht\",\n  \"parzer\": \"parzer\",\n  \"pas\": \"pas\",\n  \"pasen\": \"pas\",\n  \"pasgeboren\": \"pasgebor\",\n  \"pasklaar\": \"pasklar\",\n  \"pasklare\": \"pasklar\",\n  \"pasminco\": \"pasminco\",\n  \"paso\": \"paso\",\n  \"passaatwinden\": \"passaatwind\",\n  \"passabel\": \"passabel\",\n  \"passage\": \"passag\",\n  \"passages\": \"passages\",\n  \"passagier\": \"passagier\",\n  \"passagiers\": \"passagier\",\n  \"passagiersvolume\": \"passagiersvolum\",\n  \"passanten\": \"passant\",\n  \"passeerde\": \"passeerd\",\n  \"passeert\": \"passeert\",\n  \"passen\": \"pass\",\n  \"passend\": \"passend\",\n  \"passende\": \"passend\",\n  \"passer\": \"passer\",\n  \"passeren\": \"passer\",\n  \"passerend\": \"passer\",\n  \"passerende\": \"passer\",\n  \"passie\": \"passie\",\n  \"passies\": \"passies\",\n  \"passieve\": \"passiev\",\n  \"past\": \"past\",\n  \"paste\": \"past\",\n  \"pasten\": \"past\",\n  \"pastoraal\": \"pastoral\",\n  \"pastorale\": \"pastoral\",\n  \"pastoraler\": \"pastoraler\",\n  \"pâté\": \"pâte\",\n  \"patent\": \"patent\",\n  \"patentaanvraag\": \"patentaanvrag\",\n  \"patenten\": \"patent\",\n  \"patenteren\": \"patenter\",\n  \"patenthouder\": \"patenthouder\",\n  \"patenttijd\": \"patenttijd\",\n  \"pathway\": \"pathway\",\n  \"patiënt\": \"patient\",\n  \"patiënte\": \"patient\",\n  \"patiënten\": \"patient\",\n  \"patiëntenorganisaties\": \"patientenorganisaties\",\n  \"patijn\": \"patijn\",\n  \"patriarchale\": \"patriarchal\",\n  \"patriarchen\": \"patriarch\",\n  \"patricia\": \"patricia\",\n  \"patricisch\": \"patricisch\",\n  \"patrick\": \"patrick\",\n  \"patronen\": \"patron\",\n  \"patroon\": \"patron\",\n  \"paul\": \"paul\",\n  \"pauline\": \"paulin\",\n  \"paulowna\": \"paulowna\",\n  \"pauls\": \"paul\",\n  \"paulus\": \"paulus\",\n  \"paus\": \"paus\",\n  \"pauto\": \"pauto\",\n  \"pauw\": \"pauw\",\n  \"pauze\": \"pauz\",\n  \"pawex\": \"pawex\",\n  \"pax\": \"pax\",\n  \"paxon\": \"paxon\",\n  \"pay\": \"pay\",\n  \"pays\": \"pay\",\n  \"pb\": \"pb\",\n  \"pbeg\": \"pbeg\",\n  \"pbts\": \"pbts\",\n  \"pbv\": \"pbv\",\n  \"pc\": \"pc\",\n  \"pcb\": \"pcb\",\n  \"pcbp\": \"pcbp\",\n  \"pcf\": \"pcf\",\n  \"pcmcia\": \"pcmcia\",\n  \"pd\": \"pd\",\n  \"pdc\": \"pdc\",\n  \"pdf\": \"pdf\",\n  \"pe\": \"pe\",\n  \"pec\": \"pec\",\n  \"pedant\": \"pedant\",\n  \"pedantisme\": \"pedantism\",\n  \"peebles\": \"peebles\",\n  \"peek\": \"pek\",\n  \"peel\": \"pel\",\n  \"peelen\": \"pel\",\n  \"peelgebied\": \"peelgebied\",\n  \"peenplukker\": \"peenplukker\",\n  \"peer\": \"per\",\n  \"peerdsbos\": \"peerdsbos\",\n  \"peereboom\": \"peerebom\",\n  \"peignoir\": \"peignoir\",\n  \"peil\": \"peil\",\n  \"peilbeheer\": \"peilbeher\",\n  \"peilbuis\": \"peilbuis\",\n  \"peilbuizen\": \"peilbuiz\",\n  \"peilde\": \"peild\",\n  \"peilen\": \"peil\",\n  \"peiling\": \"peiling\",\n  \"peiljaar\": \"peiljar\",\n  \"peilloos\": \"peillos\",\n  \"peilverhogingen\": \"peilverhog\",\n  \"peins\": \"pein\",\n  \"peinsde\": \"peinsd\",\n  \"peinzen\": \"peinz\",\n  \"peinzend\": \"peinzend\",\n  \"peinzende\": \"peinzend\",\n  \"peinzens\": \"peinzen\",\n  \"peinzing\": \"peinzing\",\n  \"peizermaden\": \"peizermad\",\n  \"pekela\": \"pekela\",\n  \"peking\": \"peking\",\n  \"pélerine\": \"pelerin\",\n  \"pellet\": \"pellet\",\n  \"pellets\": \"pellet\",\n  \"pelsdierhouders\": \"pelsdierhouder\",\n  \"pembrokeshire\": \"pembrokeshir\",\n  \"pemega\": \"pemega\",\n  \"pen\": \"pen\",\n  \"pendelbus\": \"pendelbus\",\n  \"pendelbusje\": \"pendelbusj\",\n  \"pendelen\": \"pendel\",\n  \"pendrecht\": \"pendrecht\",\n  \"pendule\": \"pendul\",\n  \"penetratieweerstand\": \"penetratieweerstand\",\n  \"penetrating\": \"penetrat\",\n  \"penicilline\": \"penicillin\",\n  \"penlite\": \"penlit\",\n  \"pennemes\": \"pennemes\",\n  \"pennsylvania\": \"pennsylvania\",\n  \"penselen\": \"pensel\",\n  \"pensioen\": \"pensioen\",\n  \"pension\": \"pension\",\n  \"pensionering\": \"pensioner\",\n  \"penthouse\": \"penthous\",\n  \"peoria\": \"peoria\",\n  \"peper\": \"peper\",\n  \"peperdure\": \"peperdur\",\n  \"peppel\": \"peppel\",\n  \"peppen\": \"pepp\",\n  \"pept\": \"pept\",\n  \"per\": \"per\",\n  \"perceel\": \"percel\",\n  \"perceelgrenzen\": \"perceelgrenz\",\n  \"perceelopgave\": \"perceelopgav\",\n  \"perceelsranden\": \"perceelsrand\",\n  \"perceeltje\": \"perceeltj\",\n  \"percelen\": \"percel\",\n  \"percentage\": \"percentag\",\n  \"percentages\": \"percentages\",\n  \"percentiel\": \"percentiel\",\n  \"perceptie\": \"perceptie\",\n  \"perception\": \"perception\",\n  \"perchloorethyleen\": \"perchloorethylen\",\n  \"percolaat\": \"percolat\",\n  \"percolaatbassin\": \"percolaatbassin\",\n  \"percolaatwater\": \"percolaatwater\",\n  \"percolaatzuivering\": \"percolaatzuiver\",\n  \"percolatiefilter\": \"percolatiefilter\",\n  \"percolatiewater\": \"percolatiewater\",\n  \"peren\": \"per\",\n  \"perentelers\": \"perenteler\",\n  \"perfectioneren\": \"perfectioner\",\n  \"performance\": \"performanc\",\n  \"periode\": \"period\",\n  \"perioden\": \"period\",\n  \"periodes\": \"periodes\",\n  \"periodiek\": \"periodiek\",\n  \"periodieke\": \"periodiek\",\n  \"perk\": \"perk\",\n  \"perkara\": \"perkara\",\n  \"perken\": \"perk\",\n  \"perliet\": \"perliet\",\n  \"permanent\": \"permanent\",\n  \"permanente\": \"permanent\",\n  \"permanentmagneetgeneratoren\": \"permanentmagneetgenerator\",\n  \"permeabele\": \"permeabel\",\n  \"permeable\": \"permeabl\",\n  \"permeameter\": \"permeameter\",\n  \"permeatie\": \"permeatie\",\n  \"permissie\": \"permissie\",\n  \"permitteert\": \"permitteert\",\n  \"permitteren\": \"permitter\",\n  \"pernis\": \"pernis\",\n  \"perpignan\": \"perpignan\",\n  \"perron\": \"perron\",\n  \"pers\": \"per\",\n  \"persbericht\": \"persbericht\",\n  \"persbijeenkomst\": \"persbijeenkomst\",\n  \"persbureau\": \"persbureau\",\n  \"persconferentie\": \"persconferentie\",\n  \"perscontainers\": \"perscontainer\",\n  \"persen\": \"pers\",\n  \"persgesprek\": \"persgesprek\",\n  \"persifleerden\": \"persifleerd\",\n  \"persist\": \"persist\",\n  \"persistent\": \"persistent\",\n  \"persistente\": \"persistent\",\n  \"persistentie\": \"persistentie\",\n  \"persleidingen\": \"persleid\",\n  \"perslucht\": \"perslucht\",\n  \"persluchtcompressoren\": \"persluchtcompressor\",\n  \"persluchtkoeler\": \"persluchtkoeler\",\n  \"persofficier\": \"persofficier\",\n  \"personages\": \"personages\",\n  \"personal\": \"personal\",\n  \"personeel\": \"personel\",\n  \"personeelsadministratie\": \"personeelsadministratie\",\n  \"personeelsbestand\": \"personeelsbestand\",\n  \"personeelsbezetting\": \"personeelsbezet\",\n  \"personeelsblad\": \"personeelsblad\",\n  \"personeelsleden\": \"personeelsled\",\n  \"personeelsorganisatie\": \"personeelsorganisatie\",\n  \"personele\": \"personel\",\n  \"personen\": \"person\",\n  \"personenauto\": \"personenauto\",\n  \"personentreinen\": \"personentrein\",\n  \"personenvervoer\": \"personenvervoer\",\n  \"personenwagens\": \"personenwagen\",\n  \"persoon\": \"person\",\n  \"persoonlijk\": \"person\",\n  \"persoonlijke\": \"person\",\n  \"persoonlijkheid\": \"person\",\n  \"persoonlijkheidsstoornissen\": \"persoonlijkheidsstoorniss\",\n  \"persoonlijks\": \"person\",\n  \"perspectief\": \"perspectief\",\n  \"perspectiefloos\": \"perspectieflos\",\n  \"perspectieven\": \"perspectiev\",\n  \"perspektiven\": \"perspektiv\",\n  \"perspomp\": \"perspomp\",\n  \"persproces\": \"persproces\",\n  \"perste\": \"perst\",\n  \"persverklaring\": \"persverklar\",\n  \"persvijzelscheider\": \"persvijzelscheider\",\n  \"persvoorlichting\": \"persvoorlicht\",\n  \"perswagen\": \"perswag\",\n  \"perszeef\": \"perszef\",\n  \"perverse\": \"perver\",\n  \"perzische\": \"perzisch\",\n  \"peschar\": \"peschar\",\n  \"peseta\": \"peseta\",\n  \"pesetas\": \"pesetas\",\n  \"peso\": \"peso\",\n  \"pessimist\": \"pessimist\",\n  \"pest\": \"pest\",\n  \"pestanal\": \"pestanal\",\n  \"pesticide\": \"pesticid\",\n  \"pesticiden\": \"pesticid\",\n  \"pesticidengebruik\": \"pesticidengebruik\",\n  \"pesticidenregistratie\": \"pesticidenregistratie\",\n  \"pesticideprodukten\": \"pesticideprodukt\",\n  \"pesticideresten\": \"pesticiderest\",\n  \"pesticides\": \"pesticides\",\n  \"pestman\": \"pestman\",\n  \"pet\": \"pet\",\n  \"peta\": \"peta\",\n  \"petajoule\": \"petajoul\",\n  \"petcore\": \"petcor\",\n  \"peter\": \"peter\",\n  \"petersburg\": \"petersburg\",\n  \"petis\": \"petis\",\n  \"petitie\": \"petitie\",\n  \"petities\": \"petities\",\n  \"petkus\": \"petkus\",\n  \"petro\": \"petro\",\n  \"petrochemie\": \"petrochemie\",\n  \"petrochemisch\": \"petrochemisch\",\n  \"petrochemische\": \"petrochemisch\",\n  \"petroleum\": \"petroleum\",\n  \"petroleumcokes\": \"petroleumcokes\",\n  \"petroleumlucht\": \"petroleumlucht\",\n  \"petroleumraffinaderijen\": \"petroleumraffinaderij\",\n  \"petroleumwet\": \"petroleumwet\",\n  \"petroleumwinning\": \"petroleumwinn\",\n  \"petroliam\": \"petroliam\",\n  \"petrov\": \"petrov\",\n  \"petten\": \"pet\",\n  \"petto\": \"petto\",\n  \"peugeot\": \"peugeot\",\n  \"peuters\": \"peuter\",\n  \"pevac\": \"pevac\",\n  \"pf\": \"pf\",\n  \"pfaffenschlag\": \"pfaffenschlag\",\n  \"pfältzer\": \"pfaltzer\",\n  \"pfeiffer\": \"pfeiffer\",\n  \"pfennig\": \"pfennig\",\n  \"pff\": \"pff\",\n  \"pfinztal\": \"pfinztal\",\n  \"pfk\": \"pfk\",\n  \"ph\": \"ph\",\n  \"phare\": \"phar\",\n  \"pharmaceutical\": \"pharmaceutical\",\n  \"pharmaceutisch\": \"pharmaceutisch\",\n  \"pharmeuropa\": \"pharmeuropa\",\n  \"pharming\": \"pharming\",\n  \"phase\": \"phas\",\n  \"phaseout\": \"phaseout\",\n  \"phébus\": \"phebus\",\n  \"phénix\": \"phenix\",\n  \"phenyleendiamine\": \"phenyleendiamin\",\n  \"philadelphia\": \"philadelphia\",\n  \"philip\": \"philip\",\n  \"philipp\": \"philipp\",\n  \"philips\": \"philip\",\n  \"phoebus\": \"phoebus\",\n  \"phosphoric\": \"phosphoric\",\n  \"photo\": \"photo\",\n  \"photochemische\": \"photochemisch\",\n  \"photovoltaïc\": \"photovoltaic\",\n  \"photovoltaik\": \"photovoltaik\",\n  \"photovoltaïsch\": \"photovoltaisch\",\n  \"photovoltaische\": \"photovoltaisch\",\n  \"photovoltaïsche\": \"photovoltaisch\",\n  \"phthalaat\": \"phthalat\",\n  \"phthalaten\": \"phthalat\",\n  \"phthalates\": \"phthalates\",\n  \"phu\": \"phu\",\n  \"phuu\": \"phuu\",\n  \"phuuu\": \"phuuu\",\n  \"physics\": \"physic\",\n  \"physieke\": \"physiek\",\n  \"phyteuma\": \"phyteuma\",\n  \"phytophthora\": \"phytophthora\",\n  \"phyziek\": \"phyziek\",\n  \"pi\": \"pi\",\n  \"piano\": \"piano\",\n  \"picardie\": \"picardie\",\n  \"pichtr\": \"pichtr\",\n  \"pick\": \"pick\",\n  \"pickering\": \"picker\",\n  \"picnic\": \"picnic\",\n  \"picto\": \"picto\",\n  \"pie\": \"pie\",\n  \"piedemonte\": \"piedemont\",\n  \"piedemontegebied\": \"piedemontegebied\",\n  \"piedmont\": \"piedmont\",\n  \"piek\": \"piek\",\n  \"piekbelasting\": \"piekbelast\",\n  \"pieken\": \"piek\",\n  \"piekende\": \"piekend\",\n  \"piekerig\": \"pieker\",\n  \"piekgas\": \"piekgas\",\n  \"piekgebruik\": \"piekgebruik\",\n  \"piekjes\": \"piekjes\",\n  \"pieklast\": \"pieklast\",\n  \"piekproduktie\": \"piekproduktie\",\n  \"piekrechte\": \"piekrecht\",\n  \"piekrendement\": \"piekrendement\",\n  \"piekuitstoot\": \"piekuitstot\",\n  \"piekuren\": \"piekur\",\n  \"piekvermogen\": \"piekvermog\",\n  \"piekwaarde\": \"piekwaard\",\n  \"piekwarmtevraag\": \"piekwarmtevrag\",\n  \"piekwatt\": \"piekwatt\",\n  \"pieper\": \"pieper\",\n  \"piepers\": \"pieper\",\n  \"piepjong\": \"piepjong\",\n  \"piepschuim\": \"piepschuim\",\n  \"pier\": \"pier\",\n  \"pierewaaide\": \"pierewaaid\",\n  \"pierre\": \"pierr\",\n  \"piet\": \"piet\",\n  \"pieten\": \"piet\",\n  \"pieter\": \"pieter\",\n  \"pieterburen\": \"pieterbur\",\n  \"pietro\": \"pietro\",\n  \"piëzo\": \"piezo\",\n  \"pigment\": \"pigment\",\n  \"pigmenten\": \"pigment\",\n  \"pijl\": \"pijl\",\n  \"pijlen\": \"pijl\",\n  \"pijlers\": \"pijler\",\n  \"pijlstaart\": \"pijlstaart\",\n  \"pijn\": \"pijn\",\n  \"pijnacker\": \"pijnacker\",\n  \"pijnigde\": \"pijnigd\",\n  \"pijnigen\": \"pijnig\",\n  \"pijnlijk\": \"pijnlijk\",\n  \"pijnlijke\": \"pijnlijk\",\n  \"pijnlijks\": \"pijnlijk\",\n  \"pijp\": \"pijp\",\n  \"pijpen\": \"pijp\",\n  \"pijpencircuit\": \"pijpencircuit\",\n  \"pijpleiding\": \"pijpleid\",\n  \"pijpleidingen\": \"pijpleid\",\n  \"pijpleidingenstelsel\": \"pijpleidingenstelsel\",\n  \"pijplijn\": \"pijplijn\",\n  \"pijpwerk\": \"pijpwerk\",\n  \"pikant\": \"pikant\",\n  \"pikante\": \"pikant\",\n  \"pikdonker\": \"pikdonker\",\n  \"pikduister\": \"pikduister\",\n  \"pikduisternis\": \"pikduisternis\",\n  \"pikken\": \"pik\",\n  \"pikte\": \"pikt\",\n  \"pikzwart\": \"pikzwart\",\n  \"pikzwarte\": \"pikzwart\",\n  \"pil\": \"pil\",\n  \"piloot\": \"pilot\",\n  \"pilot\": \"pilot\",\n  \"piloten\": \"pilot\",\n  \"pilotinstallatie\": \"pilotinstallatie\",\n  \"pilotproject\": \"pilotproject\",\n  \"pim\": \"pim\",\n  \"pimm\": \"pimm\",\n  \"pin\": \"pin\",\n  \"pinatubo\": \"pinatubo\",\n  \"pinch\": \"pinch\",\n  \"pinguïns\": \"pinguin\",\n  \"pink\": \"pink\",\n  \"pinkegat\": \"pinkegat\",\n  \"pinus\": \"pinus\",\n  \"pioneer\": \"pioner\",\n  \"pioniers\": \"pionier\",\n  \"pionierswerk\": \"pionierswerk\",\n  \"pipa\": \"pipa\",\n  \"pipe\": \"pip\",\n  \"piping\": \"piping\",\n  \"pir\": \"pir\",\n  \"pisa\": \"pisa\",\n  \"pistolen\": \"pistol\",\n  \"pistool\": \"pistol\",\n  \"pit\": \"pit\",\n  \"pitrus\": \"pitrus\",\n  \"pittem\": \"pittem\",\n  \"pittig\": \"pittig\",\n  \"pittige\": \"pittig\",\n  \"pittsburgh\": \"pittsburgh\",\n  \"pizza\": \"pizza\",\n  \"pj\": \"pj\",\n  \"pk\": \"pk\",\n  \"pkb\": \"pkb\",\n  \"pkl\": \"pkl\",\n  \"plaag\": \"plag\",\n  \"plaagde\": \"plaagd\",\n  \"plaagden\": \"plaagd\",\n  \"plaaggeest\": \"plaaggeest\",\n  \"plaagt\": \"plaagt\",\n  \"plaat\": \"plat\",\n  \"plaatafval\": \"plaatafval\",\n  \"plaatgat\": \"plaatgat\",\n  \"plaatje\": \"plaatj\",\n  \"plaatjes\": \"plaatjes\",\n  \"plaatmateriaal\": \"plaatmateriaal\",\n  \"plaatmaterialen\": \"plaatmaterial\",\n  \"plaats\": \"plat\",\n  \"plaatsbare\": \"plaatsbar\",\n  \"plaatschroot\": \"plaatschrot\",\n  \"plaatse\": \"plat\",\n  \"plaatselijk\": \"plaatselijk\",\n  \"plaatselijke\": \"plaatselijk\",\n  \"plaatsen\": \"plaats\",\n  \"plaatsgebonden\": \"plaatsgebond\",\n  \"plaatsgevonden\": \"plaatsgevond\",\n  \"plaatsing\": \"plaatsing\",\n  \"plaatsingsbeleid\": \"plaatsingsbeleid\",\n  \"plaatsingsmogelijkheden\": \"plaatsingsmog\",\n  \"plaatsingsproblematiek\": \"plaatsingsproblematiek\",\n  \"plaatsingsrichtlijn\": \"plaatsingsrichtlijn\",\n  \"plaatsingsruimte\": \"plaatsingsruimt\",\n  \"plaatsingstempo\": \"plaatsingstempo\",\n  \"plaatsje\": \"plaatsj\",\n  \"plaatsjes\": \"plaatsjes\",\n  \"plaatsmaken\": \"plaatsmak\",\n  \"plaatst\": \"plaatst\",\n  \"plaatste\": \"plaatst\",\n  \"plaatsvervangend\": \"plaatsvervang\",\n  \"plaatsvinden\": \"plaatsvind\",\n  \"plaatsvindt\": \"plaatsvindt\",\n  \"plaatsvond\": \"plaatsvond\",\n  \"plaatsvonden\": \"plaatsvond\",\n  \"place\": \"plac\",\n  \"placht\": \"placht\",\n  \"placide\": \"placid\",\n  \"plafond\": \"plafond\",\n  \"plafondpanelen\": \"plafondpanel\",\n  \"plafonds\": \"plafond\",\n  \"plagen\": \"plag\",\n  \"plagerij\": \"plagerij\",\n  \"plagerijen\": \"plagerij\",\n  \"plaines\": \"plaines\",\n  \"plainfield\": \"plainfield\",\n  \"plak\": \"plak\",\n  \"plakkaten\": \"plakkat\",\n  \"plakken\": \"plak\",\n  \"plakte\": \"plakt\",\n  \"plakten\": \"plakt\",\n  \"plan\": \"plan\",\n  \"planaflora\": \"planaflora\",\n  \"planbureau\": \"planbureau\",\n  \"planck\": \"planck\",\n  \"planeconomie\": \"planeconomie\",\n  \"planeet\": \"planet\",\n  \"planfase\": \"planfas\",\n  \"plangebied\": \"plangebied\",\n  \"plank\": \"plank\",\n  \"planken\": \"plank\",\n  \"plankton\": \"plankton\",\n  \"planktondiertjes\": \"planktondiertjes\",\n  \"planmatig\": \"planmat\",\n  \"planmatige\": \"planmat\",\n  \"plannen\": \"plann\",\n  \"planning\": \"planning\",\n  \"planologisch\": \"planologisch\",\n  \"planologische\": \"planologisch\",\n  \"planstudie\": \"planstudie\",\n  \"plant\": \"plant\",\n  \"plantaardig\": \"plantaard\",\n  \"plantaardige\": \"plantaard\",\n  \"plantage\": \"plantag\",\n  \"plantages\": \"plantages\",\n  \"plante\": \"plant\",\n  \"planteavlforsøg\": \"planteavlforsøg\",\n  \"planten\": \"plant\",\n  \"plantengroei\": \"plantengroei\",\n  \"plantenkas\": \"plantenkas\",\n  \"plantenkwekers\": \"plantenkweker\",\n  \"plantenprodukten\": \"plantenprodukt\",\n  \"plantensoorten\": \"plantensoort\",\n  \"plantenziektekundige\": \"plantenziektekund\",\n  \"plantenziektenkundige\": \"plantenziektenkund\",\n  \"planters\": \"planter\",\n  \"plantesoorten\": \"plantesoort\",\n  \"planteziektenkundig\": \"planteziektenkund\",\n  \"planteziektenkundige\": \"planteziektenkund\",\n  \"plantijnstraat\": \"plantijnstrat\",\n  \"plantje\": \"plantj\",\n  \"plantmanager\": \"plantmanager\",\n  \"plantmateriaal\": \"plantmateriaal\",\n  \"plantsoen\": \"plantsoen\",\n  \"plantsoendiensten\": \"plantsoendienst\",\n  \"plantsoenen\": \"plantsoen\",\n  \"planvoorbereidingsfase\": \"planvoorbereidingsfas\",\n  \"plas\": \"plas\",\n  \"plasbermen\": \"plasberm\",\n  \"plasma\": \"plasma\",\n  \"plasmaboogcentrifuge\": \"plasmaboogcentrifug\",\n  \"plasmalichtboogcentrifuge\": \"plasmalichtboogcentrifug\",\n  \"plasmatechnik\": \"plasmatechnik\",\n  \"plasmatoorts\": \"plasmatoort\",\n  \"plasmatoortscentrifuge\": \"plasmatoortscentrifug\",\n  \"plassen\": \"plass\",\n  \"plassende\": \"plassend\",\n  \"plassengebied\": \"plassengebied\",\n  \"plasserwaard\": \"plasserwaard\",\n  \"plaste\": \"plast\",\n  \"plastic\": \"plastic\",\n  \"plasticfabrikant\": \"plasticfabrikant\",\n  \"plasticgranulaat\": \"plasticgranulat\",\n  \"plasticinzameling\": \"plasticinzamel\",\n  \"plasticproducenten\": \"plasticproducent\",\n  \"plastics\": \"plastic\",\n  \"plasticsoorten\": \"plasticsoort\",\n  \"plasticstructuur\": \"plasticstructur\",\n  \"plastificeermiddel\": \"plastificeermiddel\",\n  \"plastomeren\": \"plastomer\",\n  \"plat\": \"plat\",\n  \"platdakprodukten\": \"platdakprodukt\",\n  \"plate\": \"plat\",\n  \"plateau\": \"plateau\",\n  \"platen\": \"plat\",\n  \"platform\": \"platform\",\n  \"platforms\": \"platform\",\n  \"platformsloperij\": \"platformsloperij\",\n  \"platgebrand\": \"platgebrand\",\n  \"platgedrukt\": \"platgedrukt\",\n  \"platgelopen\": \"platgelop\",\n  \"platgevouwen\": \"platgevouw\",\n  \"platinum\": \"platinum\",\n  \"platisolplaat\": \"platisolplat\",\n  \"platonisme\": \"platonism\",\n  \"platte\": \"plat\",\n  \"plattegronden\": \"plattegrond\",\n  \"platteland\": \"platteland\",\n  \"plattelands\": \"platteland\",\n  \"plattelandsgemeenten\": \"plattelandsgemeent\",\n  \"plattelandsmilieu\": \"plattelandsmilieu\",\n  \"plattelandsontwikkeling\": \"plattelandsontwikkel\",\n  \"plattelandsvernieuwing\": \"plattelandsvernieuw\",\n  \"plattelandsvrouwen\": \"plattelandsvrouw\",\n  \"plaza\": \"plaza\",\n  \"plc\": \"plc\",\n  \"plebs\": \"pleb\",\n  \"plechtig\": \"plechtig\",\n  \"plechtige\": \"plechtig\",\n  \"pleegden\": \"pleegd\",\n  \"pleegkind\": \"pleegkind\",\n  \"pleegkinderen\": \"pleegkinder\",\n  \"pleegt\": \"pleegt\",\n  \"pleegvader\": \"pleegvader\",\n  \"plegen\": \"pleg\",\n  \"plegers\": \"pleger\",\n  \"pleidooi\": \"pleidooi\",\n  \"plein\": \"plein\",\n  \"pleinen\": \"plein\",\n  \"pleisterwerk\": \"pleisterwerk\",\n  \"pleit\": \"pleit\",\n  \"pleitbezorger\": \"pleitbezorger\",\n  \"pleiten\": \"pleit\",\n  \"pleitte\": \"pleit\",\n  \"pleizier\": \"pleizier\",\n  \"pleizierig\": \"pleizier\",\n  \"plek\": \"plek\",\n  \"plekgebonden\": \"plekgebond\",\n  \"plekje\": \"plekj\",\n  \"plekjes\": \"plekjes\",\n  \"plekke\": \"plek\",\n  \"plekken\": \"plek\",\n  \"pleksgewijs\": \"pleksgewijs\",\n  \"plenaire\": \"plenair\",\n  \"plenum\": \"plenum\",\n  \"plezier\": \"plezier\",\n  \"plezierig\": \"plezier\",\n  \"plezierjacht\": \"plezierjacht\",\n  \"plezierjagers\": \"plezierjager\",\n  \"pleziervaart\": \"pleziervaart\",\n  \"plicht\": \"plicht\",\n  \"plichtige\": \"plichtig\",\n  \"plichtjes\": \"plichtjes\",\n  \"plichtsbesef\": \"plichtsbesef\",\n  \"plichtsgetrouw\": \"plichtsgetrouw\",\n  \"pln\": \"pln\",\n  \"ploeg\": \"ploeg\",\n  \"ploegen\": \"ploeg\",\n  \"ploert\": \"ploert\",\n  \"ploerten\": \"ploert\",\n  \"ploften\": \"ploft\",\n  \"plomp\": \"plomp\",\n  \"plompe\": \"plomp\",\n  \"plooi\": \"plooi\",\n  \"plooibare\": \"plooibar\",\n  \"plooiboezem\": \"plooiboezem\",\n  \"plooide\": \"plooid\",\n  \"plooiden\": \"plooid\",\n  \"plooien\": \"plooi\",\n  \"plooiende\": \"plooiend\",\n  \"plooierig\": \"plooier\",\n  \"plooit\": \"plooit\",\n  \"plots\": \"plot\",\n  \"plotse\": \"plot\",\n  \"plotseling\": \"plotsel\",\n  \"plotselinge\": \"plotsel\",\n  \"pluim\": \"pluim\",\n  \"pluimmodellen\": \"pluimmodell\",\n  \"pluimplus\": \"pluimplus\",\n  \"pluimvee\": \"pluimvee\",\n  \"pluimveebedrijf\": \"pluimveebedrijf\",\n  \"pluimveebedrijven\": \"pluimveebedrijv\",\n  \"pluimveehouder\": \"pluimveehouder\",\n  \"pluimveehouderij\": \"pluimveehouderij\",\n  \"pluimveehouderijen\": \"pluimveehouderij\",\n  \"pluimveehouders\": \"pluimveehouder\",\n  \"pluimveemest\": \"pluimveemest\",\n  \"pluimveesector\": \"pluimveesector\",\n  \"pluis\": \"pluis\",\n  \"pluisjes\": \"pluisjes\",\n  \"pluk\": \"pluk\",\n  \"plukken\": \"pluk\",\n  \"plukte\": \"plukt\",\n  \"plunje\": \"plunj\",\n  \"plus\": \"plus\",\n  \"pluspunt\": \"pluspunt\",\n  \"plutonium\": \"plutonium\",\n  \"plutoniumoxyde\": \"plutoniumoxyd\",\n  \"plutoniumschip\": \"plutoniumschip\",\n  \"plutoniumsmokkel\": \"plutoniumsmokkel\",\n  \"plv\": \"plv\",\n  \"pm\": \"pm\",\n  \"pmo\": \"pmo\",\n  \"pmv\": \"pmv\",\n  \"pnem\": \"pnem\",\n  \"pneumatische\": \"pneumatisch\",\n  \"pneuwielen\": \"pneuwiel\",\n  \"pocerady\": \"pocerady\",\n  \"pochen\": \"poch\",\n  \"pochend\": \"pochend\",\n  \"pocherijen\": \"pocherij\",\n  \"pochner\": \"pochner\",\n  \"pochte\": \"pocht\",\n  \"podium\": \"podium\",\n  \"poeder\": \"poeder\",\n  \"poedercoating\": \"poedercoat\",\n  \"poederhout\": \"poederhout\",\n  \"poederkalk\": \"poederkalk\",\n  \"poederkool\": \"poederkol\",\n  \"poederkoolcentrale\": \"poederkoolcentral\",\n  \"poederkoolcentrales\": \"poederkoolcentrales\",\n  \"poederkoolvliegas\": \"poederkoolvliegas\",\n  \"poedermateriaal\": \"poedermateriaal\",\n  \"poeders\": \"poeder\",\n  \"poedertechnologie\": \"poedertechnologie\",\n  \"poederverdichting\": \"poederverdicht\",\n  \"poederverfharsen\": \"poederverfhars\",\n  \"poederverven\": \"poederverv\",\n  \"poedervorm\": \"poedervorm\",\n  \"poedervormig\": \"poedervorm\",\n  \"poefende\": \"poefend\",\n  \"poeffende\": \"poeffend\",\n  \"poefte\": \"poeft\",\n  \"poeier\": \"poeier\",\n  \"poeierblanke\": \"poeierblank\",\n  \"poeierde\": \"poeierd\",\n  \"poeierden\": \"poeierd\",\n  \"poelen\": \"poel\",\n  \"poept\": \"poept\",\n  \"poesmooi\": \"poesmooi\",\n  \"poëtisch\": \"poetisch\",\n  \"poetri\": \"poetri\",\n  \"poetries\": \"poetries\",\n  \"poetsen\": \"poets\",\n  \"poëzie\": \"poezie\",\n  \"poëzietje\": \"poezietj\",\n  \"pof\": \"pof\",\n  \"pogen\": \"pog\",\n  \"poging\": \"poging\",\n  \"pogingen\": \"poging\",\n  \"point\": \"point\",\n  \"points\": \"point\",\n  \"poisson\": \"poisson\",\n  \"pok\": \"pok\",\n  \"poken\": \"pok\",\n  \"pol\": \"pol\",\n  \"polaire\": \"polair\",\n  \"polar\": \"polar\",\n  \"polaroid\": \"polaroid\",\n  \"polder\": \"polder\",\n  \"polderbewoners\": \"polderbewoner\",\n  \"polderboeren\": \"polderboer\",\n  \"polderdistrict\": \"polderdistrict\",\n  \"poldergebied\": \"poldergebied\",\n  \"poldergemalen\": \"poldergemal\",\n  \"polders\": \"polder\",\n  \"polen\": \"pol\",\n  \"policy\": \"policy\",\n  \"poliepen\": \"poliep\",\n  \"polinat\": \"polinat\",\n  \"polis\": \"polis\",\n  \"polissen\": \"poliss\",\n  \"politici\": \"politici\",\n  \"politicologie\": \"politicologie\",\n  \"politicoloog\": \"politicolog\",\n  \"politie\": \"politie\",\n  \"politieblad\": \"politieblad\",\n  \"politiebureau\": \"politiebureau\",\n  \"politiebureaus\": \"politiebureaus\",\n  \"politiecel\": \"politiecel\",\n  \"politiek\": \"politiek\",\n  \"politieke\": \"politiek\",\n  \"politiemensen\": \"politiemens\",\n  \"politiemilieutaak\": \"politiemilieutak\",\n  \"politierechter\": \"politierechter\",\n  \"politieregio\": \"politieregio\",\n  \"pollinat\": \"pollinat\",\n  \"pollutants\": \"pollutant\",\n  \"pollutec\": \"pollutec\",\n  \"polluter\": \"polluter\",\n  \"pollution\": \"pollution\",\n  \"polonoreste\": \"polonorest\",\n  \"pols\": \"pol\",\n  \"polsen\": \"pols\",\n  \"poly\": \"poly\",\n  \"polyacrylamide\": \"polyacrylamid\",\n  \"polyamide\": \"polyamid\",\n  \"polyamidemembraan\": \"polyamidemembran\",\n  \"polychloorbifenylen\": \"polychloorbifenyl\",\n  \"polychloordioxines\": \"polychloordioxines\",\n  \"polycyanoraathoudende\": \"polycyanoraathoud\",\n  \"polycyanoraten\": \"polycyanorat\",\n  \"polycyclische\": \"polycyclisch\",\n  \"polydek\": \"polydek\",\n  \"polydisperse\": \"polydisper\",\n  \"polyester\": \"polyester\",\n  \"polyesterband\": \"polyesterband\",\n  \"polyesterbasis\": \"polyesterbasis\",\n  \"polyesterfabriek\": \"polyesterfabriek\",\n  \"polyesterharsverwerking\": \"polyesterharsverwerk\",\n  \"polyesters\": \"polyester\",\n  \"polyetheen\": \"polyethen\",\n  \"polyetheenglycolen\": \"polyetheenglycol\",\n  \"polyethenen\": \"polyethen\",\n  \"polyethoxylaten\": \"polyethoxylat\",\n  \"polyethyleen\": \"polyethylen\",\n  \"polyethyleenfabriek\": \"polyethyleenfabriek\",\n  \"polyethyleenfolie\": \"polyethyleenfolie\",\n  \"polyethyleentereftalaat\": \"polyethyleentereftalat\",\n  \"polyethyleentereftelaat\": \"polyethyleentereftelat\",\n  \"polygechloreerde\": \"polygechloreerd\",\n  \"polymeer\": \"polymer\",\n  \"polymeeremulsies\": \"polymeeremulsies\",\n  \"polymeermatrix\": \"polymeermatrix\",\n  \"polymeerpoeder\": \"polymeerpoeder\",\n  \"polymeerverbindingen\": \"polymeerverbind\",\n  \"polymelkzuur\": \"polymelkzur\",\n  \"polymer\": \"polymer\",\n  \"polymeren\": \"polymer\",\n  \"polymerisatie\": \"polymerisatie\",\n  \"polymers\": \"polymer\",\n  \"polynesië\": \"polynesie\",\n  \"polynesische\": \"polynesisch\",\n  \"polyolefine\": \"polyolefin\",\n  \"polyolefins\": \"polyolefin\",\n  \"polypropeen\": \"polypropen\",\n  \"polypropyleen\": \"polypropylen\",\n  \"polystyreen\": \"polystyren\",\n  \"polystyreenschuim\": \"polystyreenschuim\",\n  \"polysulfide\": \"polysulfid\",\n  \"polytechnique\": \"polytechnique\",\n  \"polytechnische\": \"polytechnisch\",\n  \"polytropisch\": \"polytropisch\",\n  \"polyurethaan\": \"polyurethan\",\n  \"polyurethaanplaten\": \"polyurethaanplat\",\n  \"polyurethaanschuim\": \"polyurethaanschuim\",\n  \"polyurethaantechnologie\": \"polyurethaantechnologie\",\n  \"polyvinylchloride\": \"polyvinylchlorid\",\n  \"polyvinylideenfluoride\": \"polyvinylideenfluorid\",\n  \"pom\": \"pom\",\n  \"pommée\": \"pommee\",\n  \"pomp\": \"pomp\",\n  \"pompen\": \"pomp\",\n  \"pompende\": \"pompend\",\n  \"pompenfabrikant\": \"pompenfabrikant\",\n  \"pompensysteem\": \"pompensystem\",\n  \"pompinstallatie\": \"pompinstallatie\",\n  \"pompput\": \"pompput\",\n  \"pompstation\": \"pompstation\",\n  \"pompstations\": \"pompstation\",\n  \"pompsysteem\": \"pompsystem\",\n  \"pompsystemen\": \"pompsystem\",\n  \"pompt\": \"pompt\",\n  \"pompte\": \"pompt\",\n  \"pompzijde\": \"pompzijd\",\n  \"pon\": \"pon\",\n  \"pond\": \"pond\",\n  \"ponden\": \"pond\",\n  \"pondje\": \"pondj\",\n  \"ponnetje\": \"ponnetj\",\n  \"pons\": \"pon\",\n  \"pont\": \"pont\",\n  \"pontech\": \"pontech\",\n  \"pontoise\": \"pontois\",\n  \"pony\": \"pony\",\n  \"poogde\": \"poogd\",\n  \"poogden\": \"poogd\",\n  \"pookte\": \"pookt\",\n  \"pool\": \"pol\",\n  \"poolafstanden\": \"poolafstand\",\n  \"pooling\": \"pooling\",\n  \"pools\": \"pol\",\n  \"poolse\": \"pol\",\n  \"poolstreken\": \"poolstrek\",\n  \"poolvorming\": \"poolvorm\",\n  \"poort\": \"poort\",\n  \"poorten\": \"poort\",\n  \"poortjes\": \"poortjes\",\n  \"poortvliet\": \"poortvliet\",\n  \"poosde\": \"poosd\",\n  \"poot\": \"pot\",\n  \"pootaardappelen\": \"pootaardappel\",\n  \"pootgoed\": \"pootgoed\",\n  \"pop\": \"pop\",\n  \"popconcerten\": \"popconcert\",\n  \"pophost\": \"pophost\",\n  \"poppe\": \"popp\",\n  \"poppemoedertje\": \"poppemoedertj\",\n  \"poppen\": \"popp\",\n  \"poppenwereld\": \"poppenwereld\",\n  \"popperigheid\": \"popper\",\n  \"poppetje\": \"poppetj\",\n  \"poppetjes\": \"poppetjes\",\n  \"poppie\": \"poppie\",\n  \"poppig\": \"poppig\",\n  \"poptel\": \"poptel\",\n  \"populair\": \"populair\",\n  \"populaire\": \"populair\",\n  \"populariteit\": \"populariteit\",\n  \"populatie\": \"populatie\",\n  \"populatiegrootte\": \"populatiegrot\",\n  \"populaties\": \"populaties\",\n  \"population\": \"population\",\n  \"populier\": \"populier\",\n  \"populieren\": \"populier\",\n  \"populierenbossen\": \"populierenboss\",\n  \"por\": \"por\",\n  \"porcelein\": \"porcelein\",\n  \"porceleinen\": \"porcelein\",\n  \"poreus\": \"poreus\",\n  \"poreusheid\": \"poreus\",\n  \"poreuze\": \"poreuz\",\n  \"poriën\": \"porien\",\n  \"poriëngetal\": \"poriengetal\",\n  \"poriënstructuur\": \"porienstructur\",\n  \"poriewater\": \"poriewater\",\n  \"porosiemiddel\": \"porosiemiddel\",\n  \"porseleinen\": \"porselein\",\n  \"porta\": \"porta\",\n  \"portaalarm\": \"portaalarm\",\n  \"portaalkranen\": \"portaalkran\",\n  \"portcurno\": \"portcurno\",\n  \"porte\": \"port\",\n  \"portée\": \"portee\",\n  \"portefeuille\": \"portefeuill\",\n  \"portegijs\": \"portegijs\",\n  \"portemonnee\": \"portemonnee\",\n  \"portie\": \"portie\",\n  \"portier\": \"portier\",\n  \"portière\": \"portièr\",\n  \"portillo\": \"portillo\",\n  \"portret\": \"portret\",\n  \"portretten\": \"portret\",\n  \"portrettenstijl\": \"portrettenstijl\",\n  \"portugal\": \"portugal\",\n  \"portugese\": \"portuges\",\n  \"pose\": \"pos\",\n  \"poseren\": \"poser\",\n  \"poseur\": \"poseur\",\n  \"positie\": \"positie\",\n  \"positief\": \"positief\",\n  \"posities\": \"posities\",\n  \"positieve\": \"positiev\",\n  \"position\": \"position\",\n  \"positivisme\": \"positivism\",\n  \"positivistische\": \"positivistisch\",\n  \"post\": \"post\",\n  \"postbank\": \"postbank\",\n  \"postbankrekeningnummer\": \"postbankrekeningnummer\",\n  \"postbestelauto\": \"postbestelauto\",\n  \"postbus\": \"postbus\",\n  \"postbusnummer\": \"postbusnummer\",\n  \"posten\": \"post\",\n  \"poster\": \"poster\",\n  \"posterborden\": \"posterbord\",\n  \"posterijen\": \"posterij\",\n  \"postpapier\": \"postpapier\",\n  \"postzakken\": \"postzak\",\n  \"postzegeldoosje\": \"postzegeldoosj\",\n  \"postzegels\": \"postzegel\",\n  \"posw\": \"posw\",\n  \"pot\": \"pot\",\n  \"potash\": \"potash\",\n  \"poten\": \"pot\",\n  \"potentiaal\": \"potentiaal\",\n  \"potentiaalverschil\": \"potentiaalverschil\",\n  \"potentie\": \"potentie\",\n  \"potentieel\": \"potentieel\",\n  \"potentiële\": \"potentiel\",\n  \"potenties\": \"potenties\",\n  \"potgrond\": \"potgrond\",\n  \"pothoven\": \"pothov\",\n  \"potje\": \"potj\",\n  \"potlood\": \"potlod\",\n  \"potomac\": \"potomac\",\n  \"potplanten\": \"potplant\",\n  \"potplantenbedrijven\": \"potplantenbedrijv\",\n  \"potsdam\": \"potsdam\",\n  \"potten\": \"pot\",\n  \"pottetrien\": \"pottetrien\",\n  \"potvissen\": \"potviss\",\n  \"poudre\": \"poudr\",\n  \"poulenc\": \"poulenc\",\n  \"pousseert\": \"pousseert\",\n  \"pousseren\": \"pousser\",\n  \"pouw\": \"pouw\",\n  \"powell\": \"powell\",\n  \"power\": \"power\",\n  \"powered\": \"powered\",\n  \"poze\": \"poz\",\n  \"pp\": \"pp\",\n  \"ppb\": \"ppb\",\n  \"ppc\": \"ppc\",\n  \"ppg\": \"ppg\",\n  \"ppm\": \"ppm\",\n  \"ppr\": \"ppr\",\n  \"pq\": \"pq\",\n  \"pr\": \"pr\",\n  \"pra\": \"pra\",\n  \"praag\": \"prag\",\n  \"praat\": \"prat\",\n  \"praatjes\": \"praatjes\",\n  \"praatte\": \"prat\",\n  \"praatten\": \"prat\",\n  \"pracht\": \"pracht\",\n  \"prachtig\": \"prachtig\",\n  \"prachtige\": \"prachtig\",\n  \"practice\": \"practic\",\n  \"practices\": \"practices\",\n  \"practici\": \"practici\",\n  \"practisch\": \"practisch\",\n  \"praediniussingel\": \"praediniussingel\",\n  \"pragmatisch\": \"pragmatisch\",\n  \"pragmatische\": \"pragmatisch\",\n  \"praktijk\": \"praktijk\",\n  \"praktijkbladen\": \"praktijkblad\",\n  \"praktijkboek\": \"praktijkboek\",\n  \"praktijkbrief\": \"praktijkbrief\",\n  \"praktijken\": \"praktijk\",\n  \"praktijkexperimenten\": \"praktijkexperiment\",\n  \"praktijkgerichter\": \"praktijkgerichter\",\n  \"praktijkgroep\": \"praktijkgroep\",\n  \"praktijkinformatie\": \"praktijkinformatie\",\n  \"praktijkkennis\": \"praktijkkennis\",\n  \"praktijkomstandigheden\": \"praktijkomstand\",\n  \"praktijkonderzoek\": \"praktijkonderzoek\",\n  \"praktijkoplossingen\": \"praktijkoploss\",\n  \"praktijkproeven\": \"praktijkproev\",\n  \"praktijkreeks\": \"praktijkrek\",\n  \"praktijkrijpe\": \"praktijkrijp\",\n  \"praktijkschaal\": \"praktijkschal\",\n  \"praktijkschool\": \"praktijkschol\",\n  \"praktijksituaties\": \"praktijksituaties\",\n  \"praktijkvoorbeelden\": \"praktijkvoorbeeld\",\n  \"praktisch\": \"praktisch\",\n  \"praktische\": \"praktisch\",\n  \"praktischer\": \"praktischer\",\n  \"praktisheid\": \"praktis\",\n  \"pralende\": \"pralend\",\n  \"pralmolens\": \"pralmolen\",\n  \"pralwerken\": \"pralwerk\",\n  \"pranab\": \"pranab\",\n  \"prangde\": \"prangd\",\n  \"prangende\": \"prangend\",\n  \"praten\": \"prat\",\n  \"pratende\": \"pratend\",\n  \"praxair\": \"praxair\",\n  \"prc\": \"prc\",\n  \"pre\": \"pre\",\n  \"precedent\": \"precedent\",\n  \"precedentwerking\": \"precedentwerk\",\n  \"precies\": \"precies\",\n  \"preciese\": \"precies\",\n  \"precieze\": \"preciez\",\n  \"precipitator\": \"precipitator\",\n  \"precisieverwarming\": \"precisieverwarm\",\n  \"precisieverwarmingssystemen\": \"precisieverwarmingssystem\",\n  \"predicdcyn\": \"predicdcyn\",\n  \"predichat\": \"predichat\",\n  \"predicted\": \"predicted\",\n  \"predikant\": \"predikant\",\n  \"prees\": \"pres\",\n  \"prefab\": \"prefab\",\n  \"prefereert\": \"prefereert\",\n  \"prefereren\": \"preferer\",\n  \"preis\": \"preis\",\n  \"preiteelt\": \"preiteelt\",\n  \"prekwalificatie\": \"prekwalificatie\",\n  \"prélude\": \"prelud\",\n  \"premie\": \"premie\",\n  \"premiebetalingen\": \"premiebetal\",\n  \"premier\": \"premier\",\n  \"premiere\": \"premier\",\n  \"première\": \"premièr\",\n  \"premiers\": \"premier\",\n  \"premies\": \"premies\",\n  \"premiestelsel\": \"premiestelsel\",\n  \"prentenboek\": \"prentenboek\",\n  \"prentenboeken\": \"prentenboek\",\n  \"prentjes\": \"prentjes\",\n  \"preparaat\": \"preparat\",\n  \"preparaten\": \"preparat\",\n  \"prepare\": \"prepar\",\n  \"present\": \"present\",\n  \"presentabel\": \"presentabel\",\n  \"presentatie\": \"presentatie\",\n  \"presentaties\": \"presentaties\",\n  \"presentatrice\": \"presentatric\",\n  \"presenteerbladen\": \"presenteerblad\",\n  \"presenteerde\": \"presenteerd\",\n  \"presenteerden\": \"presenteerd\",\n  \"presenteert\": \"presenteert\",\n  \"presenteren\": \"presenter\",\n  \"presentie\": \"presentie\",\n  \"president\": \"president\",\n  \"presidentscampagne\": \"presidentscampagn\",\n  \"presidentschap\": \"presidentschap\",\n  \"presidentskandidaten\": \"presidentskandidat\",\n  \"presidentsverkiezingen\": \"presidentsverkiez\",\n  \"press\": \"pres\",\n  \"presse\": \"pres\",\n  \"pressen\": \"press\",\n  \"pressie\": \"pressie\",\n  \"pressiegroepen\": \"pressiegroep\",\n  \"pressure\": \"pressur\",\n  \"prestatie\": \"prestatie\",\n  \"prestatiekromme\": \"prestatiekromm\",\n  \"prestatiematen\": \"prestatiemat\",\n  \"prestaties\": \"prestaties\",\n  \"prestatieverhouding\": \"prestatieverhoud\",\n  \"prestatieverlies\": \"prestatieverlies\",\n  \"presteerde\": \"presteerd\",\n  \"presteert\": \"presteert\",\n  \"presteren\": \"prester\",\n  \"presterende\": \"prester\",\n  \"prestige\": \"prestig\",\n  \"pret\": \"pret\",\n  \"pretentie\": \"pretentie\",\n  \"pretenties\": \"pretenties\",\n  \"pretentieus\": \"pretentieus\",\n  \"pretentieuze\": \"pretentieuz\",\n  \"pretje\": \"pretj\",\n  \"pretpark\": \"pretpark\",\n  \"pretparken\": \"pretpark\",\n  \"prettig\": \"prettig\",\n  \"prettige\": \"prettig\",\n  \"prettiger\": \"prettiger\",\n  \"preussenelektra\": \"preussenelektra\",\n  \"preventie\": \"preventie\",\n  \"preventieaanpak\": \"preventieaanpak\",\n  \"preventiebeleid\": \"preventiebeleid\",\n  \"preventief\": \"preventief\",\n  \"preventiehandleiding\": \"preventiehandleid\",\n  \"preventiekostenmethode\": \"preventiekostenmethod\",\n  \"preventiemaatregelen\": \"preventiemaatregel\",\n  \"preventieprogramma\": \"preventieprogramma\",\n  \"preventieproject\": \"preventieproject\",\n  \"preventieprojecten\": \"preventieproject\",\n  \"preventietraining\": \"preventietrain\",\n  \"preventieve\": \"preventiev\",\n  \"prevention\": \"prevention\",\n  \"prezen\": \"prez\",\n  \"pri\": \"pri\",\n  \"pricing\": \"pricing\",\n  \"priddle\": \"priddl\",\n  \"priem\": \"priem\",\n  \"priemde\": \"priemd\",\n  \"priemden\": \"priemd\",\n  \"priemen\": \"priem\",\n  \"priemende\": \"priemend\",\n  \"priempijl\": \"priempijl\",\n  \"prijs\": \"prijs\",\n  \"prijsbeleid\": \"prijsbeleid\",\n  \"prijsbewuste\": \"prijsbewust\",\n  \"prijsconcurrentie\": \"prijsconcurrentie\",\n  \"prijsdalingen\": \"prijsdal\",\n  \"prijsinformatie\": \"prijsinformatie\",\n  \"prijsinstrument\": \"prijsinstrument\",\n  \"prijsniveau\": \"prijsniveau\",\n  \"prijsontwikkeling\": \"prijsontwikkel\",\n  \"prijsopdrijving\": \"prijsopdrijv\",\n  \"prijspeil\": \"prijspeil\",\n  \"prijsrisico\": \"prijsrisico\",\n  \"prijsspiraal\": \"prijsspiral\",\n  \"prijsstijging\": \"prijsstijg\",\n  \"prijsstijgingen\": \"prijsstijg\",\n  \"prijst\": \"prijst\",\n  \"prijsuitreiking\": \"prijsuitreik\",\n  \"prijsverhogingen\": \"prijsverhog\",\n  \"prijsverhouding\": \"prijsverhoud\",\n  \"prijsverlaging\": \"prijsverlag\",\n  \"prijsverlagingen\": \"prijsverlag\",\n  \"prijsverschil\": \"prijsverschil\",\n  \"prijsverschillen\": \"prijsverschill\",\n  \"prijsvorming\": \"prijsvorm\",\n  \"prijsvraag\": \"prijsvrag\",\n  \"prijswinnaar\": \"prijswinnar\",\n  \"prijswinnaars\": \"prijswinnar\",\n  \"prijswinnend\": \"prijswinn\",\n  \"prijzen\": \"prijz\",\n  \"prijzengeld\": \"prijzengeld\",\n  \"prijzenswaardig\": \"prijzenswaard\",\n  \"prijzensysteem\": \"prijzensystem\",\n  \"prikborden\": \"prikbord\",\n  \"prikkel\": \"prikkel\",\n  \"prikkelbaar\": \"prikkel\",\n  \"prikkelbaars\": \"prikkel\",\n  \"prikkelde\": \"prikkeld\",\n  \"prikkelen\": \"prikkel\",\n  \"prikkelend\": \"prikkel\",\n  \"prikkeling\": \"prikkel\",\n  \"prikkels\": \"prikkel\",\n  \"prikte\": \"prikt\",\n  \"prima\": \"prima\",\n  \"primaat\": \"primat\",\n  \"primair\": \"primair\",\n  \"primaire\": \"primair\",\n  \"primeur\": \"primeur\",\n  \"primeuraardappelen\": \"primeuraardappel\",\n  \"primeurs\": \"primeur\",\n  \"primitief\": \"primitief\",\n  \"primordiale\": \"primordial\",\n  \"prince\": \"princ\",\n  \"princeton\": \"princeton\",\n  \"principe\": \"princip\",\n  \"principes\": \"principes\",\n  \"principieel\": \"principieel\",\n  \"principiële\": \"principiel\",\n  \"principle\": \"principl\",\n  \"principles\": \"principles\",\n  \"prins\": \"prin\",\n  \"prinsenbeek\": \"prinsenbek\",\n  \"prinsenland\": \"prinsenland\",\n  \"prinses\": \"prinses\",\n  \"printer\": \"printer\",\n  \"printers\": \"printer\",\n  \"printplaten\": \"printplat\",\n  \"prioritaire\": \"prioritair\",\n  \"prioriteit\": \"prioriteit\",\n  \"prioriteiten\": \"prioriteit\",\n  \"prioriteitenlijst\": \"prioriteitenlijst\",\n  \"prioriteitennota\": \"prioriteitennota\",\n  \"prioriteitsstelling\": \"prioriteitsstell\",\n  \"prioriteitstelling\": \"prioriteitstell\",\n  \"prioriteitsthema\": \"prioriteitsthema\",\n  \"prioritering\": \"prioriter\",\n  \"priorities\": \"priorities\",\n  \"prisma\": \"prisma\",\n  \"prismakleuren\": \"prismakleur\",\n  \"privaat\": \"privat\",\n  \"privaatles\": \"privaatles\",\n  \"privaatlessen\": \"privaatless\",\n  \"privaatrecht\": \"privaatrecht\",\n  \"privaatrechtelijk\": \"privaatrecht\",\n  \"privaatrechtelijke\": \"privaatrecht\",\n  \"privacy\": \"privacy\",\n  \"private\": \"privat\",\n  \"privater\": \"privater\",\n  \"privatiseerde\": \"privatiseerd\",\n  \"privatiseren\": \"privatiser\",\n  \"privatisering\": \"privatiser\",\n  \"privé\": \"priv\",\n  \"privépersonen\": \"priveperson\",\n  \"privérijders\": \"priverijder\",\n  \"pro\": \"pro\",\n  \"proactieve\": \"proactiev\",\n  \"proav\": \"proav\",\n  \"probabilistische\": \"probabilistisch\",\n  \"probeer\": \"prober\",\n  \"probeerde\": \"probeerd\",\n  \"probeerden\": \"probeerd\",\n  \"probeert\": \"probeert\",\n  \"proberen\": \"prober\",\n  \"proberende\": \"prober\",\n  \"probes\": \"probes\",\n  \"probleem\": \"problem\",\n  \"probleembedrijven\": \"probleembedrijv\",\n  \"probleembranches\": \"probleembranches\",\n  \"probleemgrondeigenaren\": \"probleemgrondeigenar\",\n  \"probleemstoffen\": \"probleemstoff\",\n  \"problematiek\": \"problematiek\",\n  \"problematisch\": \"problematisch\",\n  \"problematische\": \"problematisch\",\n  \"problematischer\": \"problematischer\",\n  \"problemen\": \"problem\",\n  \"procedé\": \"proced\",\n  \"procédé\": \"proced\",\n  \"procederen\": \"proceder\",\n  \"procédés\": \"procedes\",\n  \"procedure\": \"procedur\",\n  \"procedureel\": \"procedurel\",\n  \"procedures\": \"procedures\",\n  \"procent\": \"procent\",\n  \"procenten\": \"procent\",\n  \"procentsbelang\": \"procentsbelang\",\n  \"proces\": \"proces\",\n  \"procesaanpassing\": \"procesaanpass\",\n  \"procesbeheersing\": \"procesbeheers\",\n  \"procesbesturingsapparatuur\": \"procesbesturingsapparatur\",\n  \"procescertificaat\": \"procescertificat\",\n  \"procescondities\": \"procescondities\",\n  \"procesfase\": \"procesfas\",\n  \"procesgang\": \"procesgang\",\n  \"procesgeïntegreerde\": \"procesgeintegreerd\",\n  \"procesindustrie\": \"procesindustrie\",\n  \"procesindustrieën\": \"procesindustrieen\",\n  \"procesinnovatie\": \"procesinnovatie\",\n  \"procesintegratiestudies\": \"procesintegratiestudies\",\n  \"proceskosten\": \"proceskost\",\n  \"procesleverancier\": \"procesleverancier\",\n  \"proceslucht\": \"proceslucht\",\n  \"procesmatige\": \"procesmat\",\n  \"procesonderdelen\": \"procesonderdel\",\n  \"procesontwikkeling\": \"procesontwikkel\",\n  \"procesontwikkelingen\": \"procesontwikkel\",\n  \"procesoptimalisatie\": \"procesoptimalisatie\",\n  \"procesroutes\": \"procesroutes\",\n  \"process\": \"proces\",\n  \"processen\": \"process\",\n  \"processing\": \"process\",\n  \"processor\": \"processor\",\n  \"processtap\": \"processtap\",\n  \"processtappen\": \"processtapp\",\n  \"processtromen\": \"processtrom\",\n  \"procestanks\": \"procestank\",\n  \"procestechniek\": \"procestechniek\",\n  \"procestechnische\": \"procestechnisch\",\n  \"procestechnologen\": \"procestechnolog\",\n  \"procestechnologie\": \"procestechnologie\",\n  \"procestechnologieën\": \"procestechnologieen\",\n  \"procestemperaturen\": \"procestemperatur\",\n  \"procestijd\": \"procestijd\",\n  \"procesverbaal\": \"procesverbal\",\n  \"procesverbalen\": \"procesverbal\",\n  \"procesverbetering\": \"procesverbeter\",\n  \"procesverloop\": \"procesverlop\",\n  \"procesvernieuwing\": \"procesvernieuw\",\n  \"procesvoering\": \"procesvoer\",\n  \"proceswarmte\": \"proceswarmt\",\n  \"proceswater\": \"proceswater\",\n  \"procureur\": \"procureur\",\n  \"procureurs\": \"procureur\",\n  \"produceerde\": \"produceerd\",\n  \"produceerden\": \"produceerd\",\n  \"produceert\": \"produceert\",\n  \"producent\": \"producent\",\n  \"producenten\": \"producent\",\n  \"producentenlanden\": \"producentenland\",\n  \"producentenverantwoordelijkheid\": \"producentenverantwoord\",\n  \"produceren\": \"producer\",\n  \"producerende\": \"producer\",\n  \"product\": \"product\",\n  \"producten\": \"product\",\n  \"production\": \"production\",\n  \"products\": \"product\",\n  \"produkt\": \"produkt\",\n  \"produktaanbod\": \"produktaanbod\",\n  \"produktaankopen\": \"produktaankop\",\n  \"produktaansprakelijkheid\": \"produktaansprak\",\n  \"produktbeleid\": \"produktbeleid\",\n  \"produktcertificaat\": \"produktcertificat\",\n  \"produktclusters\": \"produktcluster\",\n  \"produktdifferentiatie\": \"produktdifferentiatie\",\n  \"produktdoorloop\": \"produktdoorlop\",\n  \"produkten\": \"produkt\",\n  \"produktenbeleid\": \"produktenbeleid\",\n  \"produktgericht\": \"produktgericht\",\n  \"produktgerichte\": \"produktgericht\",\n  \"produktgroep\": \"produktgroep\",\n  \"produktgroepen\": \"produktgroep\",\n  \"produkthergebruik\": \"produkthergebruik\",\n  \"produktie\": \"produktie\",\n  \"produktiebedrijf\": \"produktiebedrijf\",\n  \"produktiebedrijven\": \"produktiebedrijv\",\n  \"produktiebossen\": \"produktieboss\",\n  \"produktiecapaciteit\": \"produktiecapaciteit\",\n  \"produktiedoeleinden\": \"produktiedoeleind\",\n  \"produktiefaciliteit\": \"produktiefaciliteit\",\n  \"produktiefaciliteiten\": \"produktiefaciliteit\",\n  \"produktiefste\": \"produktiefst\",\n  \"produktiefuncties\": \"produktiefuncties\",\n  \"produktiegedeelte\": \"produktiegedeelt\",\n  \"produktiegerichte\": \"produktiegericht\",\n  \"produktiegroei\": \"produktiegroei\",\n  \"produktiehal\": \"produktiehal\",\n  \"produktieinformatiesysteem\": \"produktieinformatiesystem\",\n  \"produktieketen\": \"produktieket\",\n  \"produktiekosten\": \"produktiekost\",\n  \"produktielijn\": \"produktielijn\",\n  \"produktielijnen\": \"produktielijn\",\n  \"produktielocatie\": \"produktielocatie\",\n  \"produktielocaties\": \"produktielocaties\",\n  \"produktielokatie\": \"produktielokatie\",\n  \"produktielokaties\": \"produktielokaties\",\n  \"produktiemaatschappij\": \"produktiemaatschappij\",\n  \"produktiemethode\": \"produktiemethod\",\n  \"produktieomvang\": \"produktieomvang\",\n  \"produktieproces\": \"produktieproces\",\n  \"produktieprocessen\": \"produktieprocess\",\n  \"produktieput\": \"produktieput\",\n  \"produkties\": \"produkties\",\n  \"produktiesector\": \"produktiesector\",\n  \"produktiestap\": \"produktiestap\",\n  \"produktiestations\": \"produktiestation\",\n  \"produktiestijging\": \"produktiestijg\",\n  \"produktiestraat\": \"produktiestrat\",\n  \"produktiesysteem\": \"produktiesystem\",\n  \"produktiesystemen\": \"produktiesystem\",\n  \"produktietechniek\": \"produktietechniek\",\n  \"produktietechnieken\": \"produktietechniek\",\n  \"produktietechnologie\": \"produktietechnologie\",\n  \"produktieverhoging\": \"produktieverhog\",\n  \"produktieverlies\": \"produktieverlies\",\n  \"produktievermindering\": \"produktieverminder\",\n  \"produktievermogen\": \"produktievermog\",\n  \"produktievrijheid\": \"produktievrij\",\n  \"produktiewaarde\": \"produktiewaard\",\n  \"produktiewijze\": \"produktiewijz\",\n  \"produktiewinst\": \"produktiewinst\",\n  \"produktinformatie\": \"produktinformatie\",\n  \"produktinformatiesysteem\": \"produktinformatiesystem\",\n  \"produktinnovatie\": \"produktinnovatie\",\n  \"produktiviteit\": \"produktiviteit\",\n  \"produktkwaliteit\": \"produktkwaliteit\",\n  \"produktlijn\": \"produktlijn\",\n  \"produktnormen\": \"produktnorm\",\n  \"produktontvangstruimte\": \"produktontvangstruimt\",\n  \"produktontwikkelaars\": \"produktontwikkelar\",\n  \"produktontwikkeling\": \"produktontwikkel\",\n  \"produktoplossingen\": \"produktoploss\",\n  \"produktprijzen\": \"produktprijz\",\n  \"produktregistratie\": \"produktregistratie\",\n  \"produktschap\": \"produktschap\",\n  \"produktschappen\": \"produktschapp\",\n  \"produktsoort\": \"produktsoort\",\n  \"produktstromen\": \"produktstrom\",\n  \"produktveiligheid\": \"produktveil\",\n  \"produktverantwoordelijkheid\": \"produktverantwoord\",\n  \"produktverbetering\": \"produktverbeter\",\n  \"produktvoorbeelden\": \"produktvoorbeeld\",\n  \"produktvoorschriften\": \"produktvoorschrift\",\n  \"produktzorg\": \"produktzorg\",\n  \"produktzorgsysteem\": \"produktzorgsystem\",\n  \"proef\": \"proef\",\n  \"próef\": \"proef\",\n  \"proefbaggeren\": \"proefbagger\",\n  \"proefbank\": \"proefbank\",\n  \"proefbedrijf\": \"proefbedrijf\",\n  \"proefboerderij\": \"proefboerderij\",\n  \"proefboerderijen\": \"proefboerderij\",\n  \"proefboren\": \"proefbor\",\n  \"proefboring\": \"proefbor\",\n  \"proefboringen\": \"proefbor\",\n  \"proefcentrum\": \"proefcentrum\",\n  \"proefcontract\": \"proefcontract\",\n  \"proefde\": \"proefd\",\n  \"proefdier\": \"proefdier\",\n  \"proefdieren\": \"proefdier\",\n  \"proefdiergebruik\": \"proefdiergebruik\",\n  \"proefdieronderzoek\": \"proefdieronderzoek\",\n  \"proefdierstudies\": \"proefdierstudies\",\n  \"proefdraaien\": \"proefdraai\",\n  \"proeffabriek\": \"proeffabriek\",\n  \"proeffase\": \"proeffas\",\n  \"proefgebied\": \"proefgebied\",\n  \"proefgedraaid\": \"proefgedraaid\",\n  \"proefgemeenten\": \"proefgemeent\",\n  \"proefinstallatie\": \"proefinstallatie\",\n  \"proefinstallaties\": \"proefinstallaties\",\n  \"proeflocatie\": \"proeflocatie\",\n  \"proeflocaties\": \"proeflocaties\",\n  \"proefnemingen\": \"proefnem\",\n  \"proefopstelling\": \"proefopstell\",\n  \"proefperiode\": \"proefperiod\",\n  \"proefpersonen\": \"proefperson\",\n  \"proefprocedure\": \"proefprocedur\",\n  \"proefproces\": \"proefproces\",\n  \"proefprocessen\": \"proefprocess\",\n  \"proefproject\": \"proefproject\",\n  \"proefprojecten\": \"proefproject\",\n  \"proefprojectprogramma\": \"proefprojectprogramma\",\n  \"proefresultaten\": \"proefresultat\",\n  \"proefsanering\": \"proefsaner\",\n  \"proefsaneringen\": \"proefsaner\",\n  \"proefschrift\": \"proefschrift\",\n  \"proefstation\": \"proefstation\",\n  \"proeftijd\": \"proeftijd\",\n  \"proeftuin\": \"proeftuin\",\n  \"proefvak\": \"proefvak\",\n  \"proefzending\": \"proefzend\",\n  \"proémineren\": \"proeminer\",\n  \"proestbui\": \"proestbui\",\n  \"proesten\": \"proest\",\n  \"proestende\": \"proestend\",\n  \"proestlach\": \"proestlach\",\n  \"proestte\": \"proest\",\n  \"proestten\": \"proest\",\n  \"proeven\": \"proev\",\n  \"proeverijen\": \"proeverij\",\n  \"prof\": \"prof\",\n  \"profane\": \"profan\",\n  \"profession\": \"profession\",\n  \"professionalisering\": \"professionaliser\",\n  \"professionals\": \"professional\",\n  \"professioneel\": \"professionel\",\n  \"professionele\": \"professionel\",\n  \"professionelen\": \"professionel\",\n  \"professor\": \"professor\",\n  \"professoren\": \"professor\",\n  \"profeterende\": \"profeter\",\n  \"profiel\": \"profiel\",\n  \"profielen\": \"profiel\",\n  \"profijt\": \"profijt\",\n  \"profijtbeginsel\": \"profijtbeginsel\",\n  \"profileren\": \"profiler\",\n  \"profit\": \"profit\",\n  \"profiteerde\": \"profiteerd\",\n  \"profiteerden\": \"profiteerd\",\n  \"profiteert\": \"profiteert\",\n  \"profiteren\": \"profiter\",\n  \"profitinstellingen\": \"profitinstell\",\n  \"profitorganisaties\": \"profitorganisaties\",\n  \"prognos\": \"prognos\",\n  \"prognose\": \"prognos\",\n  \"prognosemodel\": \"prognosemodel\",\n  \"prognoses\": \"prognoses\",\n  \"program\": \"program\",\n  \"programm\": \"programm\",\n  \"programma\": \"programma\",\n  \"programmable\": \"programmabl\",\n  \"programme\": \"programm\",\n  \"programmeerbare\": \"programmer\",\n  \"programmering\": \"programmer\",\n  \"progress\": \"progres\",\n  \"progressief\": \"progressief\",\n  \"project\": \"project\",\n  \"projectaanbieders\": \"projectaanbieder\",\n  \"projectarchitect\": \"projectarchitect\",\n  \"projectbijdragen\": \"projectbijdrag\",\n  \"projectbureau\": \"projectbureau\",\n  \"projectdirector\": \"projectdirector\",\n  \"projecten\": \"project\",\n  \"projectenoverzicht\": \"projectenoverzicht\",\n  \"projectenwijzer\": \"projectenwijzer\",\n  \"projectfondsen\": \"projectfonds\",\n  \"projectgroep\": \"projectgroep\",\n  \"projectkosten\": \"projectkost\",\n  \"projectleider\": \"projectleider\",\n  \"projectleiding\": \"projectleid\",\n  \"projectmanager\": \"projectmanager\",\n  \"projectmatige\": \"projectmat\",\n  \"projectnota\": \"projectnota\",\n  \"projectontwikkelaar\": \"projectontwikkelar\",\n  \"projectontwikkelaars\": \"projectontwikkelar\",\n  \"projectontwikkelbedrijven\": \"projectontwikkelbedrijv\",\n  \"projectontwikkeling\": \"projectontwikkel\",\n  \"projectorganisatie\": \"projectorganisatie\",\n  \"projectovereenkomsten\": \"projectovereenkomst\",\n  \"projectplan\": \"projectplan\",\n  \"projects\": \"project\",\n  \"projectsgewijs\": \"projectsgewijs\",\n  \"projectteam\": \"projectteam\",\n  \"projectuitvoerders\": \"projectuitvoerder\",\n  \"projectvoorstel\": \"projectvoorstel\",\n  \"projectvoorstellen\": \"projectvoorstell\",\n  \"projectwaarde\": \"projectwaard\",\n  \"projekt\": \"projekt\",\n  \"projektbureau\": \"projektbureau\",\n  \"projekten\": \"projekt\",\n  \"proletariër\": \"proletarier\",\n  \"proliferatie\": \"proliferatie\",\n  \"promecht\": \"promecht\",\n  \"prominent\": \"prominent\",\n  \"prominente\": \"prominent\",\n  \"promise\": \"promis\",\n  \"promises\": \"promises\",\n  \"promoot\": \"promot\",\n  \"promoten\": \"promot\",\n  \"promotie\": \"promotie\",\n  \"promotiefilm\": \"promotiefilm\",\n  \"promotieonderzoek\": \"promotieonderzoek\",\n  \"promoveerde\": \"promoveerd\",\n  \"promoveert\": \"promoveert\",\n  \"promovendus\": \"promovendus\",\n  \"promoveren\": \"promover\",\n  \"pronk\": \"pronk\",\n  \"prooi\": \"prooi\",\n  \"prop\": \"prop\",\n  \"propaan\": \"propan\",\n  \"propaedeutisch\": \"propaedeutisch\",\n  \"propageert\": \"propageert\",\n  \"propak\": \"propak\",\n  \"propeen\": \"propen\",\n  \"propeenglycol\": \"propeenglycol\",\n  \"propellor\": \"propellor\",\n  \"propellors\": \"propellor\",\n  \"properties\": \"properties\",\n  \"property\": \"property\",\n  \"propionaten\": \"propionat\",\n  \"proporties\": \"proporties\",\n  \"propos\": \"propos\",\n  \"propoxur\": \"propoxur\",\n  \"propvolle\": \"propvoll\",\n  \"propyleen\": \"propylen\",\n  \"prospectus\": \"prospectus\",\n  \"protect\": \"protect\",\n  \"protectie\": \"protectie\",\n  \"protection\": \"protection\",\n  \"protectionisme\": \"protectionism\",\n  \"protecto\": \"protecto\",\n  \"protein\": \"protein\",\n  \"protektrite\": \"protektrit\",\n  \"protest\": \"protest\",\n  \"protestactie\": \"protestactie\",\n  \"protestacties\": \"protestacties\",\n  \"protestbijeenkomst\": \"protestbijeenkomst\",\n  \"protestborden\": \"protestbord\",\n  \"protesteerde\": \"protesteerd\",\n  \"protesteerden\": \"protesteerd\",\n  \"protesteert\": \"protesteert\",\n  \"protesten\": \"protest\",\n  \"protesteren\": \"protester\",\n  \"protesterende\": \"protester\",\n  \"protestgroepen\": \"protestgroep\",\n  \"protestkaarten\": \"protestkaart\",\n  \"protestmars\": \"protestmar\",\n  \"protestmarsen\": \"protestmars\",\n  \"protestoptochten\": \"protestoptocht\",\n  \"protestsongs\": \"protestsong\",\n  \"protex\": \"protex\",\n  \"protoc\": \"protoc\",\n  \"protocol\": \"protocol\",\n  \"protocollen\": \"protocoll\",\n  \"protocolonderhandelingen\": \"protocolonderhandel\",\n  \"prototype\": \"prototyp\",\n  \"prototypen\": \"prototyp\",\n  \"prototypes\": \"prototypes\",\n  \"provicies\": \"provicies\",\n  \"providers\": \"provider\",\n  \"provinciaal\": \"provinciaal\",\n  \"provinciale\": \"provincial\",\n  \"provincie\": \"provincie\",\n  \"provinciebestuur\": \"provinciebestur\",\n  \"provinciebestuurder\": \"provinciebestuurder\",\n  \"provinciegrens\": \"provinciegren\",\n  \"provinciegrenzen\": \"provinciegrenz\",\n  \"provinciehuis\": \"provinciehuis\",\n  \"provinciehuizen\": \"provinciehuiz\",\n  \"provincies\": \"provincies\",\n  \"provisie\": \"provisie\",\n  \"provisiekamer\": \"provisiekamer\",\n  \"provisiekast\": \"provisiekast\",\n  \"provisorisch\": \"provisorisch\",\n  \"pruilmondje\": \"pruilmondj\",\n  \"prul\": \"prul\",\n  \"prullemand\": \"prullemand\",\n  \"prullige\": \"prullig\",\n  \"prutsige\": \"prutsig\",\n  \"prutsigheden\": \"prutsig\",\n  \"ps\": \"ps\",\n  \"psa\": \"psa\",\n  \"pseudo\": \"pseudo\",\n  \"psi\": \"psi\",\n  \"pstdp\": \"pstdp\",\n  \"psycho\": \"psycho\",\n  \"psycholoog\": \"psycholog\",\n  \"psychomotorische\": \"psychomotorisch\",\n  \"pt\": \"pt\",\n  \"pta\": \"pta\",\n  \"ptt\": \"ptt\",\n  \"puber\": \"puber\",\n  \"public\": \"public\",\n  \"publicatie\": \"publicatie\",\n  \"publicatienummer\": \"publicatienummer\",\n  \"publications\": \"publication\",\n  \"publiceerde\": \"publiceerd\",\n  \"publiceerden\": \"publiceerd\",\n  \"publiceren\": \"publicer\",\n  \"publicitair\": \"publicitair\",\n  \"publiciteit\": \"publiciteit\",\n  \"publiek\": \"publiek\",\n  \"publieke\": \"publiek\",\n  \"publiekelijk\": \"publiek\",\n  \"publiekrechtelijk\": \"publiekrecht\",\n  \"publieks\": \"publiek\",\n  \"publieksdeel\": \"publieksdel\",\n  \"publiekspresentatie\": \"publiekspresentatie\",\n  \"publieksprijs\": \"publieksprijs\",\n  \"publieksrechtelijk\": \"publieksrecht\",\n  \"publiekstrekker\": \"publiekstrekker\",\n  \"publieksverslag\": \"publieksverslag\",\n  \"publieksvriendelijke\": \"publieksvriend\",\n  \"publikatie\": \"publikatie\",\n  \"publikatienummer\": \"publikatienummer\",\n  \"publikaties\": \"publikaties\",\n  \"publishers\": \"publisher\",\n  \"puck\": \"puck\",\n  \"puckies\": \"puckies\",\n  \"puckje\": \"puckj\",\n  \"pudding\": \"pudding\",\n  \"puddu\": \"puddu\",\n  \"puerto\": \"puerto\",\n  \"puffende\": \"puffend\",\n  \"pufferigs\": \"puffer\",\n  \"pufte\": \"puft\",\n  \"puget\": \"puget\",\n  \"puhh\": \"puhh\",\n  \"puilden\": \"puild\",\n  \"puilende\": \"puilend\",\n  \"puimsteen\": \"puimsten\",\n  \"puin\": \"puin\",\n  \"puinafval\": \"puinafval\",\n  \"puinbreek\": \"puinbrek\",\n  \"puinbreekbedrijven\": \"puinbreekbedrijv\",\n  \"puinbreekbeleid\": \"puinbreekbeleid\",\n  \"puinbreekinstallaties\": \"puinbreekinstallaties\",\n  \"puinbreken\": \"puinbrek\",\n  \"puinbreker\": \"puinbreker\",\n  \"puinbrekers\": \"puinbreker\",\n  \"puinfractie\": \"puinfractie\",\n  \"puingranulaat\": \"puingranulat\",\n  \"puingranulaten\": \"puingranulat\",\n  \"puinhoop\": \"puinhop\",\n  \"puinrecycling\": \"puinrecycl\",\n  \"puinstroom\": \"puinstrom\",\n  \"pullen\": \"pull\",\n  \"pulp\": \"pulp\",\n  \"pulpfabrieken\": \"pulpfabriek\",\n  \"pulsboringen\": \"pulsbor\",\n  \"pulsen\": \"puls\",\n  \"pulserende\": \"pulser\",\n  \"pummel\": \"pummel\",\n  \"pumps\": \"pump\",\n  \"punkt\": \"punkt\",\n  \"punt\": \"punt\",\n  \"punta\": \"punta\",\n  \"puntbronnen\": \"puntbronn\",\n  \"puntdakjes\": \"puntdakjes\",\n  \"punten\": \"punt\",\n  \"puntensysteem\": \"puntensystem\",\n  \"puntige\": \"puntig\",\n  \"puntjes\": \"puntjes\",\n  \"puntsgewijs\": \"puntsgewijs\",\n  \"puntsgewijze\": \"puntsgewijz\",\n  \"pur\": \"pur\",\n  \"pure\": \"pur\",\n  \"purmerend\": \"purmer\",\n  \"purper\": \"purper\",\n  \"pùrper\": \"pùrper\",\n  \"purperden\": \"purperd\",\n  \"purperen\": \"purper\",\n  \"purpose\": \"purpos\",\n  \"purschuim\": \"purschuim\",\n  \"purvac\": \"purvac\",\n  \"put\": \"put\",\n  \"putman\": \"putman\",\n  \"putra\": \"putra\",\n  \"putte\": \"put\",\n  \"putten\": \"put\",\n  \"puur\": \"pur\",\n  \"puzzy\": \"puzzy\",\n  \"pv\": \"pv\",\n  \"pva\": \"pva\",\n  \"pvc\": \"pvc\",\n  \"pvda\": \"pvda\",\n  \"pvdf\": \"pvdf\",\n  \"pve\": \"pve\",\n  \"pvv\": \"pvv\",\n  \"pw\": \"pw\",\n  \"pwt\": \"pwt\",\n  \"pygmeeën\": \"pygmeeen\",\n  \"pyramides\": \"pyramides\",\n  \"pyreneeën\": \"pyreneeen\",\n  \"pyrolyse\": \"pyrolys\",\n  \"pyrolysetemperatuur\": \"pyrolysetemperatur\",\n  \"pyrometallurgie\": \"pyrometallurgie\",\n  \"pyrometer\": \"pyrometer\",\n  \"pythons\": \"python\",\n  \"q\": \"q\",\n  \"qian\": \"qian\",\n  \"qichen\": \"qich\",\n  \"qua\": \"qua\",\n  \"quacks\": \"quack\",\n  \"quak\": \"quak\",\n  \"quantumkorting\": \"quantumkort\",\n  \"quaterniseren\": \"quaterniser\",\n  \"québec\": \"quebec\",\n  \"queen\": \"queen\",\n  \"quenchtoren\": \"quenchtor\",\n  \"quest\": \"quest\",\n  \"qui\": \"qui\",\n  \"quick\": \"quick\",\n  \"quickscans\": \"quickscan\",\n  \"quicktreat\": \"quicktreat\",\n  \"quinn\": \"quinn\",\n  \"quint\": \"quint\",\n  \"quirinaal\": \"quirinal\",\n  \"quota\": \"quota\",\n  \"quoteringsbeleid\": \"quoteringsbeleid\",\n  \"quotum\": \"quotum\",\n  \"quotumkosten\": \"quotumkost\",\n  \"r\": \"r\",\n  \"ra\": \"ra\",\n  \"raad\": \"rad\",\n  \"raadde\": \"rad\",\n  \"raadgevend\": \"raadgev\",\n  \"raadgevende\": \"raadgev\",\n  \"raadgevingen\": \"raadgev\",\n  \"raadpleegde\": \"raadpleegd\",\n  \"raadpleegt\": \"raadpleegt\",\n  \"raadplegen\": \"raadpleg\",\n  \"raadplegende\": \"raadpleg\",\n  \"raadpleging\": \"raadpleg\",\n  \"raadscommissies\": \"raadscommissies\",\n  \"raadsel\": \"raadsel\",\n  \"raadseloplossing\": \"raadseloploss\",\n  \"raadseltje\": \"raadseltj\",\n  \"raadt\": \"raadt\",\n  \"raadvermogen\": \"raadvermog\",\n  \"raadzaam\": \"raadzam\",\n  \"raak\": \"rak\",\n  \"raakt\": \"raakt\",\n  \"raakte\": \"raakt\",\n  \"raakten\": \"raakt\",\n  \"raakvlak\": \"raakvlak\",\n  \"raalte\": \"raalt\",\n  \"raam\": \"ram\",\n  \"raambuurt\": \"raambuurt\",\n  \"raamkozijnenfabrikant\": \"raamkozijnenfabrikant\",\n  \"raamoppervlak\": \"raamoppervlak\",\n  \"raampje\": \"raampj\",\n  \"raampjes\": \"raampjes\",\n  \"raamposten\": \"raampost\",\n  \"raamt\": \"raamt\",\n  \"raamwerk\": \"raamwerk\",\n  \"raapolie\": \"raapolie\",\n  \"raapzaad\": \"raapzad\",\n  \"raar\": \"rar\",\n  \"raas\": \"ras\",\n  \"raasde\": \"raasd\",\n  \"raasden\": \"raasd\",\n  \"raaskalde\": \"raaskald\",\n  \"raaskalt\": \"raaskalt\",\n  \"rabo\": \"rabo\",\n  \"rabobank\": \"rabobank\",\n  \"rabobanken\": \"rabobank\",\n  \"rabovisie\": \"rabovisie\",\n  \"race\": \"rac\",\n  \"races\": \"races\",\n  \"racket\": \"racket\",\n  \"rad\": \"rad\",\n  \"råd\": \"råd\",\n  \"radar\": \"radar\",\n  \"radarreflexies\": \"radarreflexies\",\n  \"radarsysteem\": \"radarsystem\",\n  \"radeloos\": \"radelos\",\n  \"radeloosheden\": \"radelos\",\n  \"radeloosheid\": \"radelos\",\n  \"radeloze\": \"radeloz\",\n  \"radelozer\": \"radelozer\",\n  \"raden\": \"rad\",\n  \"radende\": \"radend\",\n  \"radertjes\": \"radertjes\",\n  \"radian\": \"radian\",\n  \"radiata\": \"radiata\",\n  \"radiative\": \"radiativ\",\n  \"radiator\": \"radiator\",\n  \"radicaal\": \"radical\",\n  \"radicale\": \"radical\",\n  \"radicalen\": \"radical\",\n  \"radicalisering\": \"radicaliser\",\n  \"radijs\": \"radijs\",\n  \"radio\": \"radio\",\n  \"radioactief\": \"radioactief\",\n  \"radioactiefafval\": \"radioactiefafval\",\n  \"radioactieve\": \"radioactiev\",\n  \"radioactiviteit\": \"radioactiviteit\",\n  \"radiologische\": \"radiologisch\",\n  \"radioprogramma\": \"radioprogramma\",\n  \"radioveld\": \"radioveld\",\n  \"radom\": \"radom\",\n  \"radon\": \"radon\",\n  \"rafa\": \"rafa\",\n  \"raffinaderij\": \"raffinaderij\",\n  \"raffinaderijafval\": \"raffinaderijafval\",\n  \"raffinaderijen\": \"raffinaderij\",\n  \"raffinaderijslib\": \"raffinaderijslib\",\n  \"raffinage\": \"raffinag\",\n  \"raffinagecapaciteit\": \"raffinagecapaciteit\",\n  \"raffinageproces\": \"raffinageproces\",\n  \"raffineringscapaciteit\": \"raffineringscapaciteit\",\n  \"rage\": \"rag\",\n  \"rai\": \"rai\",\n  \"rail\": \"rail\",\n  \"railbeheer\": \"railbeher\",\n  \"railconsult\": \"railconsult\",\n  \"railprojecten\": \"railproject\",\n  \"rails\": \"rail\",\n  \"railtrack\": \"railtrack\",\n  \"rain\": \"rain\",\n  \"rainbow\": \"rainbow\",\n  \"rainforest\": \"rainforest\",\n  \"raising\": \"raising\",\n  \"raisonnabel\": \"raisonnabel\",\n  \"raken\": \"rak\",\n  \"raket\": \"raket\",\n  \"raketbrandstoffen\": \"raketbrandstoff\",\n  \"raketten\": \"raket\",\n  \"ralston\": \"ralston\",\n  \"ramen\": \"ram\",\n  \"raming\": \"raming\",\n  \"ramingen\": \"raming\",\n  \"rammelde\": \"rammeld\",\n  \"rammelden\": \"rammeld\",\n  \"rammelen\": \"rammel\",\n  \"rammelend\": \"rammel\",\n  \"rammelmuziek\": \"rammelmuziek\",\n  \"ramp\": \"ramp\",\n  \"rampen\": \"ramp\",\n  \"rampenbestrijding\": \"rampenbestrijd\",\n  \"rampenplannen\": \"rampenplann\",\n  \"rampenscenario\": \"rampenscenario\",\n  \"rampplek\": \"rampplek\",\n  \"rampzalig\": \"rampzal\",\n  \"rampzalige\": \"rampzal\",\n  \"ramsar\": \"ramsar\",\n  \"ramsgate\": \"ramsgat\",\n  \"rancune\": \"rancun\",\n  \"rand\": \"rand\",\n  \"randcondities\": \"randcondities\",\n  \"randen\": \"rand\",\n  \"randgebieden\": \"randgebied\",\n  \"randmeren\": \"randmer\",\n  \"randstad\": \"randstad\",\n  \"randstadagglomeratie\": \"randstadagglomeratie\",\n  \"randstadgroenstructuur\": \"randstadgroenstructur\",\n  \"randstadprovincies\": \"randstadprovincies\",\n  \"randstadrail\": \"randstadrail\",\n  \"randsteden\": \"randsted\",\n  \"randvoorwaarde\": \"randvoorwaard\",\n  \"randvoorwaarden\": \"randvoorwaard\",\n  \"randweg\": \"randweg\",\n  \"randzones\": \"randzones\",\n  \"rangau\": \"rangau\",\n  \"range\": \"rang\",\n  \"ranglijst\": \"ranglijst\",\n  \"rangschikking\": \"rangschik\",\n  \"rank\": \"rank\",\n  \"rankas\": \"rankas\",\n  \"ranke\": \"rank\",\n  \"rankte\": \"rankt\",\n  \"ranse\": \"ran\",\n  \"ransel\": \"ransel\",\n  \"ranselde\": \"ranseld\",\n  \"ranselden\": \"ranseld\",\n  \"ranselen\": \"ransel\",\n  \"ransuil\": \"ransuil\",\n  \"rantsoensamenstellingen\": \"rantsoensamenstell\",\n  \"ranze\": \"ranz\",\n  \"raoûts\": \"raoût\",\n  \"rap\": \"rap\",\n  \"rapen\": \"rap\",\n  \"rappe\": \"rapp\",\n  \"rapport\": \"rapport\",\n  \"rapportage\": \"rapportag\",\n  \"rapportagemethode\": \"rapportagemethod\",\n  \"rapportages\": \"rapportages\",\n  \"rapportageverplichting\": \"rapportageverplicht\",\n  \"rapportageverplichtingen\": \"rapportageverplicht\",\n  \"rapporteert\": \"rapporteert\",\n  \"rapporten\": \"rapport\",\n  \"rapporteren\": \"rapporter\",\n  \"rapporteur\": \"rapporteur\",\n  \"rapunzel\": \"rapunzel\",\n  \"raratonga\": \"raratonga\",\n  \"rare\": \"rar\",\n  \"rariteiten\": \"rariteit\",\n  \"ras\": \"ras\",\n  \"rassen\": \"rass\",\n  \"raster\": \"raster\",\n  \"rasters\": \"raster\",\n  \"rat\": \"rat\",\n  \"ratcliff\": \"ratcliff\",\n  \"ratd\": \"ratd\",\n  \"rate\": \"rat\",\n  \"raté\": \"rat\",\n  \"ratelde\": \"rateld\",\n  \"rateling\": \"ratel\",\n  \"rathenau\": \"rathenau\",\n  \"ratificatie\": \"ratificatie\",\n  \"ratingen\": \"rating\",\n  \"rationaal\": \"rational\",\n  \"rationeel\": \"rationel\",\n  \"rationele\": \"rationel\",\n  \"ratios\": \"ratios\",\n  \"ratten\": \"rat\",\n  \"rattink\": \"rattink\",\n  \"raven\": \"rav\",\n  \"ravens\": \"raven\",\n  \"ravenstein\": \"ravenstein\",\n  \"ravo\": \"ravo\",\n  \"ravon\": \"ravon\",\n  \"ravotte\": \"ravot\",\n  \"ravotten\": \"ravot\",\n  \"ravottende\": \"ravot\",\n  \"raw\": \"raw\",\n  \"raytheon\": \"raytheon\",\n  \"razen\": \"raz\",\n  \"razend\": \"razend\",\n  \"razende\": \"razend\",\n  \"razender\": \"razender\",\n  \"razernij\": \"razernij\",\n  \"rc\": \"rc\",\n  \"rcc\": \"rcc\",\n  \"rced\": \"rced\",\n  \"rcf\": \"rcf\",\n  \"rco\": \"rco\",\n  \"rcra\": \"rcra\",\n  \"rdf\": \"rdf\",\n  \"rdg\": \"rdg\",\n  \"re\": \"re\",\n  \"reactanten\": \"reactant\",\n  \"reactie\": \"reactie\",\n  \"reactiemengsels\": \"reactiemengsel\",\n  \"reacties\": \"reacties\",\n  \"reactiesnelheid\": \"reactiesnel\",\n  \"reactietemperatuur\": \"reactietemperatur\",\n  \"reactivering\": \"reactiver\",\n  \"reactor\": \"reactor\",\n  \"reactorbuizen\": \"reactorbuiz\",\n  \"reactorconcepten\": \"reactorconcept\",\n  \"reactordrukvaten\": \"reactordrukvat\",\n  \"reactoren\": \"reactor\",\n  \"reactorgebouw\": \"reactorgebouw\",\n  \"reactorinstallatie\": \"reactorinstallatie\",\n  \"reactorinstituut\": \"reactorinstitut\",\n  \"reactorkern\": \"reactorkern\",\n  \"reactorkunde\": \"reactorkund\",\n  \"reactors\": \"reactor\",\n  \"reactorstraat\": \"reactorstrat\",\n  \"reactorvat\": \"reactorvat\",\n  \"reageerbuisproeven\": \"reageerbuisproev\",\n  \"reageerde\": \"reageerd\",\n  \"reageerden\": \"reageerd\",\n  \"reageert\": \"reageert\",\n  \"reagens\": \"reagen\",\n  \"reageren\": \"reager\",\n  \"reagerende\": \"reager\",\n  \"real\": \"real\",\n  \"realisatie\": \"realisatie\",\n  \"realisatiedatum\": \"realisatiedatum\",\n  \"realiseerbaarheid\": \"realiser\",\n  \"realiseerbare\": \"realiser\",\n  \"realiseerde\": \"realiseerd\",\n  \"realiseert\": \"realiseert\",\n  \"realiseren\": \"realiser\",\n  \"realisering\": \"realiser\",\n  \"realist\": \"realist\",\n  \"realistisch\": \"realistisch\",\n  \"realistische\": \"realistisch\",\n  \"reality\": \"reality\",\n  \"reasonable\": \"reasonabl\",\n  \"reasonably\": \"reasonably\",\n  \"reb\": \"reb\",\n  \"rebag\": \"rebag\",\n  \"reboiler\": \"reboiler\",\n  \"rebound\": \"rebound\",\n  \"rebus\": \"rebus\",\n  \"rec\": \"rec\",\n  \"recam\": \"recam\",\n  \"recarton\": \"recarton\",\n  \"recensente\": \"recensent\",\n  \"recent\": \"recent\",\n  \"recente\": \"recent\",\n  \"recentelijk\": \"recent\",\n  \"recentere\": \"recenter\",\n  \"receptie\": \"receptie\",\n  \"receptiedag\": \"receptiedag\",\n  \"recepties\": \"recepties\",\n  \"receptoren\": \"receptor\",\n  \"recessie\": \"recessie\",\n  \"recetor\": \"recetor\",\n  \"recherche\": \"recherch\",\n  \"rechercheschool\": \"rechercheschol\",\n  \"recht\": \"recht\",\n  \"rècht\": \"rècht\",\n  \"rechtbank\": \"rechtbank\",\n  \"rechtbanken\": \"rechtbank\",\n  \"rechtbankzitting\": \"rechtbankzit\",\n  \"rechte\": \"recht\",\n  \"rechtelijk\": \"rechtelijk\",\n  \"rechten\": \"recht\",\n  \"rechter\": \"rechter\",\n  \"rechteren\": \"rechter\",\n  \"rechterlijk\": \"rechter\",\n  \"rechters\": \"rechter\",\n  \"rechtgezet\": \"rechtgezet\",\n  \"rechthoekig\": \"rechthoek\",\n  \"rechthoekige\": \"rechthoek\",\n  \"rechtmatig\": \"rechtmat\",\n  \"rechtmatigheid\": \"rechtmat\",\n  \"rechts\": \"recht\",\n  \"rechtsaspecten\": \"rechtsaspect\",\n  \"rechtsbedrijf\": \"rechtsbedrijf\",\n  \"rechtschapen\": \"rechtschap\",\n  \"rechtscollege\": \"rechtscolleg\",\n  \"rechtsgebied\": \"rechtsgebied\",\n  \"rechtsgebieden\": \"rechtsgebied\",\n  \"rechtsgeldigheid\": \"rechtsgeld\",\n  \"rechtsgeoriënteerde\": \"rechtsgeorienteerd\",\n  \"rechtshalve\": \"rechtshalv\",\n  \"rechtshandhaving\": \"rechtshandhav\",\n  \"rechtsongelijkheid\": \"rechtsong\",\n  \"rechtsonzekerheid\": \"rechtsonzeker\",\n  \"rechtsorde\": \"rechtsord\",\n  \"rechtspraak\": \"rechtsprak\",\n  \"rechtspraktijk\": \"rechtspraktijk\",\n  \"rechtstreeks\": \"rechtstrek\",\n  \"rechtstreekse\": \"rechtstrek\",\n  \"rechtsuitspraak\": \"rechtsuitsprak\",\n  \"rechtswinkels\": \"rechtswinkel\",\n  \"rechtszaak\": \"rechtszak\",\n  \"rechtszaal\": \"rechtszal\",\n  \"rechtszaken\": \"rechtszak\",\n  \"rechtvaardig\": \"rechtvaard\",\n  \"rechtvaardige\": \"rechtvaard\",\n  \"rechtvaardiger\": \"rechtvaardiger\",\n  \"rechtvaardigheid\": \"rechtvaard\",\n  \"rechtvaardigheidsbeginsel\": \"rechtvaardigheidsbeginsel\",\n  \"rechtvaardiging\": \"rechtvaard\",\n  \"recirculatie\": \"recirculatie\",\n  \"recirculeert\": \"recirculeert\",\n  \"reclamatie\": \"reclamatie\",\n  \"reclamation\": \"reclamation\",\n  \"reclame\": \"reclam\",\n  \"reclamebureau\": \"reclamebureau\",\n  \"reclamecampagne\": \"reclamecampagn\",\n  \"reclamecampagnes\": \"reclamecampagnes\",\n  \"reclamecode\": \"reclamecod\",\n  \"reclamecodecommissie\": \"reclamecodecommissie\",\n  \"reclamedrukwerk\": \"reclamedrukwerk\",\n  \"reclameplaten\": \"reclameplat\",\n  \"reclames\": \"reclames\",\n  \"reclamesector\": \"reclamesector\",\n  \"reclamevluchten\": \"reclamevlucht\",\n  \"reclamezinsnede\": \"reclamezinsned\",\n  \"reclamezinsneden\": \"reclamezinsned\",\n  \"recom\": \"recom\",\n  \"recombinant\": \"recombinant\",\n  \"recombinatie\": \"recombinatie\",\n  \"recommandatie\": \"recommandatie\",\n  \"recommended\": \"recommended\",\n  \"reconstructie\": \"reconstructie\",\n  \"reconversie\": \"reconversie\",\n  \"record\": \"record\",\n  \"recordaantal\": \"recordaantal\",\n  \"recordbedrag\": \"recordbedrag\",\n  \"recordhoeveelheid\": \"recordhoevel\",\n  \"recordhoogte\": \"recordhoogt\",\n  \"recordjaar\": \"recordjar\",\n  \"records\": \"record\",\n  \"recordtempo\": \"recordtempo\",\n  \"recordvraag\": \"recordvrag\",\n  \"recordwinst\": \"recordwinst\",\n  \"recordwinsten\": \"recordwinst\",\n  \"recovery\": \"recovery\",\n  \"recreanten\": \"recreant\",\n  \"recreatie\": \"recreatie\",\n  \"recreatiebehoefte\": \"recreatiebehoeft\",\n  \"recreatiegebied\": \"recreatiegebied\",\n  \"recreatiegebieden\": \"recreatiegebied\",\n  \"recreatiemogelijkheden\": \"recreatiemog\",\n  \"recreatiepark\": \"recreatiepark\",\n  \"recreatieplan\": \"recreatieplan\",\n  \"recreatieprojecten\": \"recreatieproject\",\n  \"recreatieschap\": \"recreatieschap\",\n  \"recreatieschepen\": \"recreatieschep\",\n  \"recreatievaart\": \"recreatievaart\",\n  \"recreatieve\": \"recreatiev\",\n  \"recreatiewoning\": \"recreatiewon\",\n  \"recreatiewoningen\": \"recreatiewon\",\n  \"recreëren\": \"recrer\",\n  \"rectificatie\": \"rectificatie\",\n  \"recuperatie\": \"recuperatie\",\n  \"recuperatieve\": \"recuperatiev\",\n  \"recycal\": \"recycal\",\n  \"recyclables\": \"recyclables\",\n  \"recyclage\": \"recyclag\",\n  \"recycle\": \"recycl\",\n  \"recyclebaar\": \"recycle\",\n  \"recyclebare\": \"recycle\",\n  \"recyclebedrijf\": \"recyclebedrijf\",\n  \"recycled\": \"recycled\",\n  \"recycleerbare\": \"recycler\",\n  \"recyclen\": \"recycl\",\n  \"recycler\": \"recycler\",\n  \"recyclers\": \"recycler\",\n  \"recyclerzak\": \"recyclerzak\",\n  \"recyclerzakken\": \"recyclerzak\",\n  \"recyclet\": \"recyclet\",\n  \"recycling\": \"recycl\",\n  \"recyclingbedrijf\": \"recyclingbedrijf\",\n  \"recyclingbedrijven\": \"recyclingbedrijv\",\n  \"recyclingbeton\": \"recyclingbeton\",\n  \"recyclingcentrum\": \"recyclingcentrum\",\n  \"recyclingcontract\": \"recyclingcontract\",\n  \"recyclingfabriek\": \"recyclingfabriek\",\n  \"recyclingfolder\": \"recyclingfolder\",\n  \"recyclingindustrie\": \"recyclingindustrie\",\n  \"recyclinginstallatie\": \"recyclinginstallatie\",\n  \"recyclingmaatregelen\": \"recyclingmaatregel\",\n  \"recyclingmarkt\": \"recyclingmarkt\",\n  \"recyclingmateriaal\": \"recyclingmateriaal\",\n  \"recyclingmethoden\": \"recyclingmethod\",\n  \"recyclingniveau\": \"recyclingniveau\",\n  \"recyclingnormen\": \"recyclingnorm\",\n  \"recyclingopties\": \"recyclingopties\",\n  \"recyclingperspectieven\": \"recyclingperspectiev\",\n  \"recyclingplan\": \"recyclingplan\",\n  \"recyclingprijs\": \"recyclingprijs\",\n  \"recyclingprodukten\": \"recyclingprodukt\",\n  \"recyclingproduktielijn\": \"recyclingproduktielijn\",\n  \"recyclingprogramma\": \"recyclingprogramma\",\n  \"recyclingrubber\": \"recyclingrubber\",\n  \"recyclingsbedrijf\": \"recyclingsbedrijf\",\n  \"recyclingsbedrijven\": \"recyclingsbedrijv\",\n  \"recyclingscapaciteit\": \"recyclingscapaciteit\",\n  \"recyclingscontract\": \"recyclingscontract\",\n  \"recyclingsfabriek\": \"recyclingsfabriek\",\n  \"recyclingsinstallatie\": \"recyclingsinstallatie\",\n  \"recyclingsmaterialen\": \"recyclingsmaterial\",\n  \"recyclingsmethode\": \"recyclingsmethod\",\n  \"recyclingsmethoden\": \"recyclingsmethod\",\n  \"recyclingsmogelijkheden\": \"recyclingsmog\",\n  \"recyclingsondernemingen\": \"recyclingsondernem\",\n  \"recyclingspercentage\": \"recyclingspercentag\",\n  \"recyclingspercentages\": \"recyclingspercentages\",\n  \"recyclingsproces\": \"recyclingsproces\",\n  \"recyclingsysteem\": \"recyclingsystem\",\n  \"recyclingsystemen\": \"recyclingsystem\",\n  \"recyclingtechnieken\": \"recyclingtechniek\",\n  \"recyclingtechnologie\": \"recyclingtechnologie\",\n  \"recyclingwet\": \"recyclingwet\",\n  \"red\": \"red\",\n  \"redacteur\": \"redacteur\",\n  \"redactie\": \"redactie\",\n  \"redakteur\": \"redakteur\",\n  \"reddeloos\": \"reddelos\",\n  \"redden\": \"red\",\n  \"redding\": \"redding\",\n  \"reddingsboten\": \"reddingsbot\",\n  \"rede\": \"red\",\n  \"redelijk\": \"redelijk\",\n  \"redelijke\": \"redelijk\",\n  \"redelijker\": \"redelijker\",\n  \"redelijkerwijs\": \"redelijkerwijs\",\n  \"redelijkheid\": \"redelijk\",\n  \"redelijkheidsnorm\": \"redelijkheidsnorm\",\n  \"reden\": \"red\",\n  \"redenaar\": \"redenar\",\n  \"redeneer\": \"redener\",\n  \"redeneerde\": \"redeneerd\",\n  \"redeneert\": \"redeneert\",\n  \"redenen\": \"reden\",\n  \"redeneren\": \"redener\",\n  \"redenering\": \"redener\",\n  \"redeneringen\": \"redener\",\n  \"redentjes\": \"redentjes\",\n  \"reder\": \"reder\",\n  \"rederij\": \"rederij\",\n  \"rederijen\": \"rederij\",\n  \"redetwisten\": \"redetwist\",\n  \"redevoeringen\": \"redevoer\",\n  \"redi\": \"redi\",\n  \"redland\": \"redland\",\n  \"redt\": \"redt\",\n  \"reduce\": \"reduc\",\n  \"reduced\": \"reduced\",\n  \"reduceer\": \"reducer\",\n  \"reduceerde\": \"reduceerd\",\n  \"reduceert\": \"reduceert\",\n  \"reduceren\": \"reducer\",\n  \"reducering\": \"reducer\",\n  \"reducing\": \"reduc\",\n  \"reductie\": \"reductie\",\n  \"reductiedoelstelling\": \"reductiedoelstell\",\n  \"reductiekatalysator\": \"reductiekatalysator\",\n  \"reductiemogelijkheden\": \"reductiemog\",\n  \"reductiepercentage\": \"reductiepercentag\",\n  \"reductieplan\": \"reductieplan\",\n  \"reductiepotentiaal\": \"reductiepotentiaal\",\n  \"reductieproces\": \"reductieproces\",\n  \"reductieprogramma\": \"reductieprogramma\",\n  \"reducties\": \"reducties\",\n  \"reduction\": \"reduction\",\n  \"reductions\": \"reduction\",\n  \"reductor\": \"reductor\",\n  \"redwitz\": \"redwitz\",\n  \"ree\": \"ree\",\n  \"reed\": \"red\",\n  \"reeds\": \"red\",\n  \"reëel\": \"reeel\",\n  \"reeën\": \"reeen\",\n  \"reeënberg\": \"reeenberg\",\n  \"reef\": \"ref\",\n  \"reehorst\": \"reehorst\",\n  \"reek\": \"rek\",\n  \"reeks\": \"rek\",\n  \"reële\": \"rel\",\n  \"reëler\": \"reeler\",\n  \"reepjes\": \"reepjes\",\n  \"rees\": \"res\",\n  \"reet\": \"ret\",\n  \"reeuws\": \"reeuw\",\n  \"referendum\": \"referendum\",\n  \"referentie\": \"referentie\",\n  \"referentiejaar\": \"referentiejar\",\n  \"referentiejaren\": \"referentiejar\",\n  \"referentiekader\": \"referentiekader\",\n  \"referentiemethode\": \"referentiemethod\",\n  \"referentienummer\": \"referentienummer\",\n  \"referentieprijs\": \"referentieprijs\",\n  \"referentieprojecten\": \"referentieproject\",\n  \"referentiescenario\": \"referentiescenario\",\n  \"referentiewaarde\": \"referentiewaard\",\n  \"referentiewaarden\": \"referentiewaard\",\n  \"refill\": \"refill\",\n  \"refiom\": \"refiom\",\n  \"reflecteert\": \"reflecteert\",\n  \"reflecteren\": \"reflecter\",\n  \"reflux\": \"reflux\",\n  \"reformulated\": \"reformulated\",\n  \"refrigeration\": \"refrigeration\",\n  \"refsa\": \"refsa\",\n  \"refuse\": \"refus\",\n  \"regan\": \"regan\",\n  \"regeerakkoord\": \"regeerakkoord\",\n  \"regeerde\": \"regeerd\",\n  \"regel\": \"regel\",\n  \"regelaar\": \"regelar\",\n  \"regelbaar\": \"regel\",\n  \"regelbaarheid\": \"regel\",\n  \"regelelektronica\": \"regelelektronica\",\n  \"regelen\": \"regel\",\n  \"regelend\": \"regel\",\n  \"regelgevende\": \"regelgev\",\n  \"regelgever\": \"regelgever\",\n  \"regelgevers\": \"regelgever\",\n  \"regelgeving\": \"regelgev\",\n  \"regelgevingen\": \"regelgev\",\n  \"regelgevings\": \"regelgev\",\n  \"regelgevingslast\": \"regelgevingslast\",\n  \"regeling\": \"regel\",\n  \"regelingen\": \"regel\",\n  \"regelkamer\": \"regelkamer\",\n  \"regelmaat\": \"regelmat\",\n  \"regelmatig\": \"regelmat\",\n  \"regelmatige\": \"regelmat\",\n  \"regelmatiger\": \"regelmatiger\",\n  \"regeln\": \"regeln\",\n  \"regelrecht\": \"regelrecht\",\n  \"regels\": \"regel\",\n  \"regelsysteem\": \"regelsystem\",\n  \"regelt\": \"regelt\",\n  \"regeltechniek\": \"regeltechniek\",\n  \"regeltjes\": \"regeltjes\",\n  \"regelzaal\": \"regelzal\",\n  \"regen\": \"reg\",\n  \"regenachtige\": \"regenacht\",\n  \"regenboogden\": \"regenboogd\",\n  \"regenbui\": \"regenbui\",\n  \"regenbuien\": \"regenbui\",\n  \"regende\": \"regend\",\n  \"regenden\": \"regend\",\n  \"regenen\": \"regen\",\n  \"regenende\": \"regen\",\n  \"regeneratie\": \"regeneratie\",\n  \"regeneratief\": \"regeneratief\",\n  \"regeneratieve\": \"regeneratiev\",\n  \"regenereert\": \"regenereert\",\n  \"regenereren\": \"regenerer\",\n  \"regenhemel\": \"regenhemel\",\n  \"regenloos\": \"regenlos\",\n  \"regenluchten\": \"regenlucht\",\n  \"regenmantel\": \"regenmantel\",\n  \"regenmist\": \"regenmist\",\n  \"regenmoesson\": \"regenmoesson\",\n  \"regennatte\": \"regennat\",\n  \"regenruisen\": \"regenruis\",\n  \"regenruisende\": \"regenruis\",\n  \"regens\": \"regen\",\n  \"regensburg\": \"regensburg\",\n  \"regenstriemen\": \"regenstriem\",\n  \"regent\": \"regent\",\n  \"regentes\": \"regentes\",\n  \"regentijd\": \"regentijd\",\n  \"regenval\": \"regenval\",\n  \"regenwater\": \"regenwater\",\n  \"regenwaterafvoer\": \"regenwaterafvoer\",\n  \"regenweer\": \"regenwer\",\n  \"regenwind\": \"regenwind\",\n  \"regenwinter\": \"regenwinter\",\n  \"regenwolken\": \"regenwolk\",\n  \"regenwormen\": \"regenworm\",\n  \"regenwoud\": \"regenwoud\",\n  \"regenwouden\": \"regenwoud\",\n  \"regering\": \"reger\",\n  \"regeringen\": \"reger\",\n  \"regerings\": \"reger\",\n  \"regeringsbeleid\": \"regeringsbeleid\",\n  \"regeringscoalitie\": \"regeringscoalitie\",\n  \"regeringscôterie\": \"regeringscôterie\",\n  \"regeringsdelegaties\": \"regeringsdelegaties\",\n  \"regeringsfracties\": \"regeringsfracties\",\n  \"regeringsgebonden\": \"regeringsgebond\",\n  \"regeringsgebouwen\": \"regeringsgebouw\",\n  \"regeringsgezinde\": \"regeringsgezind\",\n  \"regeringskast\": \"regeringskast\",\n  \"regeringsleiders\": \"regeringsleider\",\n  \"regeringsniveau\": \"regeringsniveau\",\n  \"regeringspartij\": \"regeringspartij\",\n  \"regeringspartijen\": \"regeringspartij\",\n  \"regeringsperiode\": \"regeringsperiod\",\n  \"regeringsstandpunt\": \"regeringsstandpunt\",\n  \"regge\": \"regg\",\n  \"regie\": \"regie\",\n  \"regienota\": \"regienota\",\n  \"regierol\": \"regierol\",\n  \"regime\": \"regim\",\n  \"regio\": \"regio\",\n  \"regiobestuur\": \"regiobestur\",\n  \"regiogrenzen\": \"regiogrenz\",\n  \"regionaal\": \"regional\",\n  \"regional\": \"regional\",\n  \"regionale\": \"regional\",\n  \"regionaler\": \"regionaler\",\n  \"regionalisatie\": \"regionalisatie\",\n  \"regionalisering\": \"regionaliser\",\n  \"regionalisme\": \"regionalism\",\n  \"regionele\": \"regionel\",\n  \"regiopolitie\": \"regiopolitie\",\n  \"regioraad\": \"regiorad\",\n  \"regis\": \"regis\",\n  \"register\": \"register\",\n  \"registeraccountants\": \"registeraccountant\",\n  \"registers\": \"register\",\n  \"registratie\": \"registratie\",\n  \"registratieplicht\": \"registratieplicht\",\n  \"registratieprocedures\": \"registratieprocedures\",\n  \"registratieprogramma\": \"registratieprogramma\",\n  \"registratiepunt\": \"registratiepunt\",\n  \"registraties\": \"registraties\",\n  \"registratiesysteem\": \"registratiesystem\",\n  \"registratieverplichting\": \"registratieverplicht\",\n  \"registratieverplichtingen\": \"registratieverplicht\",\n  \"registreerbare\": \"registrer\",\n  \"registreerde\": \"registreerd\",\n  \"registreert\": \"registreert\",\n  \"registreren\": \"registrer\",\n  \"reglementaire\": \"reglementair\",\n  \"regranulaat\": \"regranulat\",\n  \"regranulaten\": \"regranulat\",\n  \"regressie\": \"regressie\",\n  \"regtering\": \"regter\",\n  \"regtuijt\": \"regtuijt\",\n  \"regulatie\": \"regulatie\",\n  \"regulatiefuncties\": \"regulatiefuncties\",\n  \"regulatory\": \"regulatory\",\n  \"reguleert\": \"reguleert\",\n  \"reguleren\": \"reguler\",\n  \"regulerend\": \"reguler\",\n  \"regulerende\": \"reguler\",\n  \"regulering\": \"reguler\",\n  \"regulier\": \"regulier\",\n  \"reguliere\": \"regulier\",\n  \"rehabilitatie\": \"rehabilitatie\",\n  \"rehabiliteren\": \"rehabiliter\",\n  \"reiger\": \"reiger\",\n  \"reigerbroedplaatsen\": \"reigerbroedplaats\",\n  \"reigers\": \"reiger\",\n  \"reijenga\": \"reijenga\",\n  \"reijnders\": \"reijnder\",\n  \"reikarmde\": \"reikarmd\",\n  \"reiken\": \"reik\",\n  \"reikhalsde\": \"reikhalsd\",\n  \"reikt\": \"reikt\",\n  \"reikte\": \"reikt\",\n  \"reikwijdte\": \"reikwijdt\",\n  \"reimerswaal\": \"reimerswal\",\n  \"rein\": \"rein\",\n  \"reincultures\": \"reincultures\",\n  \"reinders\": \"reinder\",\n  \"reine\": \"rein\",\n  \"reiner\": \"reiner\",\n  \"reiners\": \"reiner\",\n  \"reinheid\": \"reinheid\",\n  \"reinigbare\": \"reinig\",\n  \"reinigde\": \"reinigd\",\n  \"reinigen\": \"reinig\",\n  \"reinigende\": \"reinig\",\n  \"reiniger\": \"reiniger\",\n  \"reiniging\": \"reinig\",\n  \"reinigings\": \"reinig\",\n  \"reinigingsaanhangers\": \"reinigingsaanhanger\",\n  \"reinigingsambtenaren\": \"reinigingsambtenar\",\n  \"reinigingsauto\": \"reinigingsauto\",\n  \"reinigingsbaden\": \"reinigingsbad\",\n  \"reinigingsdienst\": \"reinigingsdienst\",\n  \"reinigingsdiensten\": \"reinigingsdienst\",\n  \"reinigingsinstallatie\": \"reinigingsinstallatie\",\n  \"reinigingsinstallaties\": \"reinigingsinstallaties\",\n  \"reinigingsmachines\": \"reinigingsmachines\",\n  \"reinigingsmechanisme\": \"reinigingsmechanism\",\n  \"reinigingsmethoden\": \"reinigingsmethod\",\n  \"reinigingsmiddel\": \"reinigingsmiddel\",\n  \"reinigingsmiddelen\": \"reinigingsmiddel\",\n  \"reinigingsprocedé\": \"reinigingsproced\",\n  \"reinigingsproces\": \"reinigingsproces\",\n  \"reinigingsprocessen\": \"reinigingsprocess\",\n  \"reinigingsrendement\": \"reinigingsrendement\",\n  \"reinigingsstap\": \"reinigingsstap\",\n  \"reinigingsstappen\": \"reinigingsstapp\",\n  \"reinigingssysteem\": \"reinigingssystem\",\n  \"reinigingssystemen\": \"reinigingssystem\",\n  \"reinigingstechniek\": \"reinigingstechniek\",\n  \"reinigingstechnieken\": \"reinigingstechniek\",\n  \"reinigingswater\": \"reinigingswater\",\n  \"reinigt\": \"reinigt\",\n  \"reinwater\": \"reinwater\",\n  \"reis\": \"reis\",\n  \"reisbureau\": \"reisbureau\",\n  \"reisde\": \"reisd\",\n  \"reisden\": \"reisd\",\n  \"reisduur\": \"reisdur\",\n  \"reisgegevens\": \"reisgegeven\",\n  \"reisinformatie\": \"reisinformatie\",\n  \"reisinformatiesysteem\": \"reisinformatiesystem\",\n  \"reisje\": \"reisj\",\n  \"reiskosten\": \"reiskost\",\n  \"reiskostenforfait\": \"reiskostenforfait\",\n  \"reist\": \"reist\",\n  \"reistijd\": \"reistijd\",\n  \"reistijden\": \"reistijd\",\n  \"reistoilet\": \"reistoilet\",\n  \"reitsma\": \"reitsma\",\n  \"reizen\": \"reiz\",\n  \"reizigers\": \"reiziger\",\n  \"rek\": \"rek\",\n  \"rekels\": \"rekel\",\n  \"reken\": \"rek\",\n  \"rekende\": \"rekend\",\n  \"rekenen\": \"reken\",\n  \"rekenhof\": \"rekenhof\",\n  \"rekening\": \"reken\",\n  \"rekeningen\": \"reken\",\n  \"rekeningrijden\": \"rekeningrijd\",\n  \"rekeninstrument\": \"rekeninstrument\",\n  \"rekenkamer\": \"rekenkamer\",\n  \"rekenkundig\": \"rekenkund\",\n  \"rekenmethode\": \"rekenmethod\",\n  \"rekenmodel\": \"rekenmodel\",\n  \"rekenmodellen\": \"rekenmodell\",\n  \"rekenprogramma\": \"rekenprogramma\",\n  \"rekenschap\": \"rekenschap\",\n  \"rekent\": \"rekent\",\n  \"rekentijd\": \"rekentijd\",\n  \"rekenvoorbeeld\": \"rekenvoorbeeld\",\n  \"rekken\": \"rek\",\n  \"rekkend\": \"rekkend\",\n  \"reko\": \"reko\",\n  \"rekte\": \"rekt\",\n  \"rekultivace\": \"rekultivac\",\n  \"rekwikkelfolie\": \"rekwikkelfolie\",\n  \"rel\": \"rel\",\n  \"relatie\": \"relatie\",\n  \"relatief\": \"relatief\",\n  \"relatienotagebied\": \"relatienotagebied\",\n  \"relaties\": \"relaties\",\n  \"relatieve\": \"relatiev\",\n  \"relations\": \"relation\",\n  \"relative\": \"relativ\",\n  \"release\": \"releas\",\n  \"releases\": \"releases\",\n  \"relevant\": \"relevant\",\n  \"relevante\": \"relevant\",\n  \"relevantie\": \"relevantie\",\n  \"reliëf\": \"relief\",\n  \"religietjes\": \"religietjes\",\n  \"religieus\": \"religieus\",\n  \"relining\": \"relin\",\n  \"rellen\": \"rell\",\n  \"rem\": \"rem\",\n  \"rematt\": \"rematt\",\n  \"remazol\": \"remazol\",\n  \"rembrandttower\": \"rembrandttower\",\n  \"remkes\": \"remkes\",\n  \"remmen\": \"remm\",\n  \"remmend\": \"remmend\",\n  \"remmenterrein\": \"remmenterrein\",\n  \"remmers\": \"remmer\",\n  \"remote\": \"remot\",\n  \"remu\": \"remu\",\n  \"ren\": \"ren\",\n  \"renaissance\": \"renaissanc\",\n  \"renault\": \"renault\",\n  \"rendabel\": \"rendabel\",\n  \"rendabele\": \"rendabel\",\n  \"rendabeler\": \"rendabeler\",\n  \"rendabiliteit\": \"rendabiliteit\",\n  \"rende\": \"rend\",\n  \"rendeert\": \"rendeert\",\n  \"rendement\": \"rendement\",\n  \"rendementen\": \"rendement\",\n  \"rendementsgasketels\": \"rendementsgasketel\",\n  \"rendementspolis\": \"rendementspolis\",\n  \"rendementsproblemen\": \"rendementsproblem\",\n  \"rendementsverbetering\": \"rendementsverbeter\",\n  \"rendementsverbeteringen\": \"rendementsverbeter\",\n  \"renderen\": \"render\",\n  \"renderende\": \"render\",\n  \"rendez\": \"rendez\",\n  \"rendieren\": \"rendier\",\n  \"rendierteelt\": \"rendierteelt\",\n  \"rendiervlees\": \"rendiervles\",\n  \"rene\": \"ren\",\n  \"renewable\": \"renewabl\",\n  \"renko\": \"renko\",\n  \"renkumse\": \"renkum\",\n  \"rennen\": \"renn\",\n  \"rennes\": \"rennes\",\n  \"reno\": \"reno\",\n  \"renovatie\": \"renovatie\",\n  \"renovatieadviezen\": \"renovatieadviez\",\n  \"renovatieplan\": \"renovatieplan\",\n  \"renovatieproces\": \"renovatieproces\",\n  \"renovatiewerken\": \"renovatiewerk\",\n  \"renoveren\": \"renover\",\n  \"rentabiliteit\": \"rentabiliteit\",\n  \"rentabiliteitscriterium\": \"rentabiliteitscriterium\",\n  \"rente\": \"rent\",\n  \"rentec\": \"rentec\",\n  \"renteopbrengst\": \"renteopbrengst\",\n  \"rentepercentage\": \"rentepercentag\",\n  \"rentestand\": \"rentestand\",\n  \"renteverlies\": \"renteverlies\",\n  \"rentevoeten\": \"rentevoet\",\n  \"rentevoordeel\": \"rentevoordel\",\n  \"rentmeester\": \"rentmeester\",\n  \"reorganisatie\": \"reorganisatie\",\n  \"reorganisaties\": \"reorganisaties\",\n  \"reorganiseren\": \"reorganiser\",\n  \"reparatie\": \"reparatie\",\n  \"reparaties\": \"reparaties\",\n  \"repareerbaarheid\": \"reparer\",\n  \"repareerbare\": \"reparer\",\n  \"repareert\": \"repareert\",\n  \"repareren\": \"reparer\",\n  \"repetities\": \"repetities\",\n  \"repetitor\": \"repetitor\",\n  \"repliek\": \"repliek\",\n  \"repo\": \"repo\",\n  \"report\": \"report\",\n  \"reportable\": \"reportabl\",\n  \"reporting\": \"report\",\n  \"reppen\": \"repp\",\n  \"representatief\": \"representatief\",\n  \"representatieve\": \"representatiev\",\n  \"representativiteit\": \"representativiteit\",\n  \"reproduceerbaarheid\": \"reproducer\",\n  \"reproduktieremming\": \"reproduktieremm\",\n  \"repte\": \"rept\",\n  \"repten\": \"rept\",\n  \"reptielen\": \"reptiel\",\n  \"reptielendeskundige\": \"reptielendeskund\",\n  \"republiek\": \"republiek\",\n  \"republieken\": \"republiek\",\n  \"republikeinse\": \"republikein\",\n  \"reputatie\": \"reputatie\",\n  \"requirements\": \"requirement\",\n  \"research\": \"research\",\n  \"researchlaboratorium\": \"researchlaboratorium\",\n  \"reservaat\": \"reservat\",\n  \"reservaatsgebied\": \"reservaatsgebied\",\n  \"reservaatsgebieden\": \"reservaatsgebied\",\n  \"reservaten\": \"reservat\",\n  \"reserve\": \"reserv\",\n  \"reservebrandstof\": \"reservebrandstof\",\n  \"reserveert\": \"reserveert\",\n  \"reservegebied\": \"reservegebied\",\n  \"reservelocatie\": \"reservelocatie\",\n  \"reserveonderdelen\": \"reserveonderdel\",\n  \"reserveren\": \"reserver\",\n  \"reservering\": \"reserver\",\n  \"reserveringen\": \"reserver\",\n  \"reserves\": \"reserves\",\n  \"reservestoffen\": \"reservestoff\",\n  \"reservoir\": \"reservoir\",\n  \"reservoirs\": \"reservoir\",\n  \"resident\": \"resident\",\n  \"residentie\": \"residentie\",\n  \"residentsvrouw\": \"residentsvrouw\",\n  \"residu\": \"residu\",\n  \"residuen\": \"residuen\",\n  \"residustromen\": \"residustrom\",\n  \"resignatie\": \"resignatie\",\n  \"resina\": \"resina\",\n  \"resins\": \"resin\",\n  \"resistent\": \"resistent\",\n  \"resistente\": \"resistent\",\n  \"resistentie\": \"resistentie\",\n  \"resistoflex\": \"resistoflex\",\n  \"resolutie\": \"resolutie\",\n  \"resonator\": \"resonator\",\n  \"resorteerd\": \"resorteerd\",\n  \"resorts\": \"resort\",\n  \"resource\": \"resourc\",\n  \"resources\": \"resources\",\n  \"resp\": \"resp\",\n  \"respect\": \"respect\",\n  \"respecteren\": \"respecter\",\n  \"respectievelijk\": \"respectiev\",\n  \"respectievelijke\": \"respectiev\",\n  \"respijt\": \"respijt\",\n  \"respirabel\": \"respirabel\",\n  \"respiratiemeter\": \"respiratiemeter\",\n  \"respondenten\": \"respondent\",\n  \"respons\": \"respon\",\n  \"response\": \"respon\",\n  \"responsible\": \"responsibl\",\n  \"resposible\": \"resposibl\",\n  \"ressources\": \"ressources\",\n  \"rest\": \"rest\",\n  \"restafval\": \"restafval\",\n  \"restant\": \"restant\",\n  \"restanten\": \"restant\",\n  \"restaurant\": \"restaurant\",\n  \"restaurants\": \"restaurant\",\n  \"restauratie\": \"restauratie\",\n  \"restauratieactiviteiten\": \"restauratieactiviteit\",\n  \"restauratieplan\": \"restauratieplan\",\n  \"restbedrag\": \"restbedrag\",\n  \"resteert\": \"resteert\",\n  \"resten\": \"rest\",\n  \"resteren\": \"rester\",\n  \"resterende\": \"rester\",\n  \"restgas\": \"restgas\",\n  \"restmaterialen\": \"restmaterial\",\n  \"restmilieuvraagstukken\": \"restmilieuvraagstuk\",\n  \"restprodukt\": \"restprodukt\",\n  \"restprodukten\": \"restprodukt\",\n  \"restricties\": \"restricties\",\n  \"restrictieve\": \"restrictiev\",\n  \"restructuring\": \"restructur\",\n  \"reststof\": \"reststof\",\n  \"reststoffen\": \"reststoff\",\n  \"reststoffenbergingen\": \"reststoffenberg\",\n  \"reststoffenbeurs\": \"reststoffenbeur\",\n  \"reststoffenonderzoek\": \"reststoffenonderzoek\",\n  \"reststromen\": \"reststrom\",\n  \"reststroom\": \"reststrom\",\n  \"restte\": \"rest\",\n  \"restvervuiling\": \"restvervuil\",\n  \"restvochtgehalte\": \"restvochtgehalt\",\n  \"restwarmte\": \"restwarmt\",\n  \"resulaten\": \"resulat\",\n  \"resultaat\": \"resultat\",\n  \"resultaatbeloning\": \"resultaatbelon\",\n  \"resultaatgarantie\": \"resultaatgarantie\",\n  \"resultaatgericht\": \"resultaatgericht\",\n  \"resultaatverbetering\": \"resultaatverbeter\",\n  \"resultaten\": \"resultat\",\n  \"resulteerde\": \"resulteerd\",\n  \"resulteert\": \"resulteert\",\n  \"resulteren\": \"resulter\",\n  \"resulterend\": \"resulter\",\n  \"resulterende\": \"resulter\",\n  \"results\": \"result\",\n  \"retailers\": \"retailer\",\n  \"rete\": \"ret\",\n  \"rethmann\": \"rethmann\",\n  \"réticule\": \"reticul\",\n  \"retour\": \"retour\",\n  \"retourconcept\": \"retourconcept\",\n  \"retourette\": \"retouret\",\n  \"retourinname\": \"retourinnam\",\n  \"retourpremie\": \"retourpremie\",\n  \"retourshop\": \"retourshop\",\n  \"retoursysteem\": \"retoursystem\",\n  \"retourverpakking\": \"retourverpak\",\n  \"return\": \"return\",\n  \"reuk\": \"reuk\",\n  \"reukloze\": \"reukloz\",\n  \"reukneutrale\": \"reukneutral\",\n  \"reünie\": \"reunie\",\n  \"reus\": \"reus\",\n  \"reusachtig\": \"reusacht\",\n  \"reusachtige\": \"reusacht\",\n  \"reusachtiger\": \"reusachtiger\",\n  \"reusachtigheid\": \"reusacht\",\n  \"reusel\": \"reusel\",\n  \"reuze\": \"reuz\",\n  \"reuzebezems\": \"reuzebezem\",\n  \"reuzegroot\": \"reuzegrot\",\n  \"reuzehaai\": \"reuzehaai\",\n  \"reuzehaaien\": \"reuzehaai\",\n  \"reuzehoofd\": \"reuzehoofd\",\n  \"reuzenalgen\": \"reuzenalg\",\n  \"reuzenlianen\": \"reuzenlian\",\n  \"reuzenmuis\": \"reuzenmuis\",\n  \"reuzenschildpadden\": \"reuzenschildpad\",\n  \"reuzenvarens\": \"reuzenvaren\",\n  \"reuzesmarten\": \"reuzesmart\",\n  \"reuzeweemoedigheden\": \"reuzeweemoed\",\n  \"reuzewolken\": \"reuzewolk\",\n  \"reuzeworm\": \"reuzeworm\",\n  \"reuzig\": \"reuzig\",\n  \"reuzige\": \"reuzig\",\n  \"revanche\": \"revanch\",\n  \"reveil\": \"reveil\",\n  \"revelatie\": \"revelatie\",\n  \"revelaties\": \"revelaties\",\n  \"reverentie\": \"reverentie\",\n  \"revers\": \"rever\",\n  \"reversing\": \"revers\",\n  \"review\": \"review\",\n  \"revisie\": \"revisie\",\n  \"revisievergunning\": \"revisievergunn\",\n  \"revisievergunningen\": \"revisievergunn\",\n  \"revolutie\": \"revolutie\",\n  \"revolutionair\": \"revolutionair\",\n  \"revolver\": \"revolver\",\n  \"revolvers\": \"revolver\",\n  \"rez\": \"rez\",\n  \"rezen\": \"rez\",\n  \"rezes\": \"rezes\",\n  \"rfg\": \"rfg\",\n  \"rgd\": \"rgd\",\n  \"rheden\": \"rheden\",\n  \"rhein\": \"rhein\",\n  \"rheinberg\": \"rheinberg\",\n  \"rheingold\": \"rheingold\",\n  \"rhenen\": \"rhen\",\n  \"rhinoceros\": \"rhinoceros\",\n  \"rhizopus\": \"rhizopus\",\n  \"rhône\": \"rhône\",\n  \"rhoon\": \"rhon\",\n  \"rhythme\": \"rhythm\",\n  \"rhythmisch\": \"rhythmisch\",\n  \"rhythmische\": \"rhythmisch\",\n  \"rhythmischer\": \"rhythmischer\",\n  \"ria\": \"ria\",\n  \"riba\": \"riba\",\n  \"ribbed\": \"ribbed\",\n  \"ribben\": \"ribb\",\n  \"ribstukken\": \"ribstuk\",\n  \"rica\": \"rica\",\n  \"rich\": \"rich\",\n  \"richard\": \"richard\",\n  \"richelieu\": \"richelieu\",\n  \"richt\": \"richt\",\n  \"richtbedrag\": \"richtbedrag\",\n  \"richten\": \"richt\",\n  \"richtende\": \"richtend\",\n  \"richter\": \"richter\",\n  \"richting\": \"richting\",\n  \"richtingen\": \"richting\",\n  \"richtinggevend\": \"richtinggev\",\n  \"richtlijn\": \"richtlijn\",\n  \"richtlijnen\": \"richtlijn\",\n  \"richtte\": \"richt\",\n  \"richtten\": \"richt\",\n  \"rico\": \"rico\",\n  \"ridderkerk\": \"ridderkerk\",\n  \"ridderorden\": \"ridderord\",\n  \"ridders\": \"ridder\",\n  \"ridge\": \"ridg\",\n  \"ridicule\": \"ridicul\",\n  \"riding\": \"riding\",\n  \"riedel\": \"riedel\",\n  \"riek\": \"riek\",\n  \"riekende\": \"riekend\",\n  \"riel\": \"riel\",\n  \"rien\": \"rien\",\n  \"rientje\": \"rientj\",\n  \"riep\": \"riep\",\n  \"riepen\": \"riep\",\n  \"ries\": \"ries\",\n  \"riessen\": \"riess\",\n  \"riet\": \"riet\",\n  \"rietbedden\": \"rietbed\",\n  \"rieten\": \"riet\",\n  \"rietfilter\": \"rietfilter\",\n  \"rietkragen\": \"rietkrag\",\n  \"rietlanden\": \"rietland\",\n  \"rietveld\": \"rietveld\",\n  \"rietvelden\": \"rietveld\",\n  \"rif\": \"rif\",\n  \"riffen\": \"riff\",\n  \"rigide\": \"rigid\",\n  \"rigoureus\": \"rigoureus\",\n  \"rigoureuze\": \"rigoureuz\",\n  \"rij\": \"rij\",\n  \"rijafstand\": \"rijafstand\",\n  \"rijbaan\": \"rijban\",\n  \"rijd\": \"rijd\",\n  \"rijden\": \"rijd\",\n  \"rijdend\": \"rijdend\",\n  \"rijdende\": \"rijdend\",\n  \"rijders\": \"rijder\",\n  \"rijdt\": \"rijdt\",\n  \"rijen\": \"rij\",\n  \"rijgedrag\": \"rijgedrag\",\n  \"rijk\": \"rijk\",\n  \"rijkdom\": \"rijkdom\",\n  \"rijkdommen\": \"rijkdomm\",\n  \"rijke\": \"rijk\",\n  \"rijkelijk\": \"rijkelijk\",\n  \"rijkelui\": \"rijkelui\",\n  \"rijker\": \"rijker\",\n  \"rijkere\": \"rijker\",\n  \"rijks\": \"rijk\",\n  \"rijksadviesorganen\": \"rijksadviesorgan\",\n  \"rijksbeleid\": \"rijksbeleid\",\n  \"rijksdaalders\": \"rijksdaalder\",\n  \"rijksdag\": \"rijksdag\",\n  \"rijksdienst\": \"rijksdienst\",\n  \"rijksdiensten\": \"rijksdienst\",\n  \"rijksgebouwen\": \"rijksgebouw\",\n  \"rijksgebouwendienst\": \"rijksgebouwendienst\",\n  \"rijksgeld\": \"rijksgeld\",\n  \"rijksgelden\": \"rijksgeld\",\n  \"rijkshogeschool\": \"rijkshogeschol\",\n  \"rijksinspectie\": \"rijksinspectie\",\n  \"rijksinstituten\": \"rijksinstitut\",\n  \"rijksinstituut\": \"rijksinstitut\",\n  \"rijksoverheid\": \"rijksover\",\n  \"rijksplanologische\": \"rijksplanologisch\",\n  \"rijksprijs\": \"rijksprijs\",\n  \"rijkssubsidies\": \"rijkssubsidies\",\n  \"rijkstaken\": \"rijkstak\",\n  \"rijkste\": \"rijkst\",\n  \"rijksuniversiteit\": \"rijksuniversiteit\",\n  \"rijksverkeersinspectie\": \"rijksverkeersinspectie\",\n  \"rijksverplichtingen\": \"rijksverplicht\",\n  \"rijksvoorlichtingsdienst\": \"rijksvoorlichtingsdienst\",\n  \"rijkswacht\": \"rijkswacht\",\n  \"rijkswateren\": \"rijkswater\",\n  \"rijkswaterstaat\": \"rijkswaterstat\",\n  \"rijksweg\": \"rijksweg\",\n  \"rijkswegen\": \"rijksweg\",\n  \"rijkszijde\": \"rijkszijd\",\n  \"rijlaarzen\": \"rijlaarz\",\n  \"rijmen\": \"rijm\",\n  \"rijn\": \"rijn\",\n  \"rijngebied\": \"rijngebied\",\n  \"rijnhal\": \"rijnhal\",\n  \"rijnkanaal\": \"rijnkanal\",\n  \"rijnland\": \"rijnland\",\n  \"rijnmond\": \"rijnmond\",\n  \"rijnmondgebied\": \"rijnmondgebied\",\n  \"rijnsoever\": \"rijnsoever\",\n  \"rijnwater\": \"rijnwater\",\n  \"rijp\": \"rijp\",\n  \"rijpe\": \"rijp\",\n  \"rijpende\": \"rijpend\",\n  \"rijpere\": \"rijper\",\n  \"rijping\": \"rijping\",\n  \"rijpvat\": \"rijpvat\",\n  \"rijrichting\": \"rijricht\",\n  \"rijsenhout\": \"rijsenhout\",\n  \"rijsnelheid\": \"rijsnel\",\n  \"rijst\": \"rijst\",\n  \"rijstebrij\": \"rijstebrij\",\n  \"rijstlunch\": \"rijstlunch\",\n  \"rijstroken\": \"rijstrok\",\n  \"rijstrook\": \"rijstrok\",\n  \"rijsttafel\": \"rijsttafel\",\n  \"rijsttafels\": \"rijsttafel\",\n  \"rijstvelden\": \"rijstveld\",\n  \"rijswijk\": \"rijswijk\",\n  \"rijtje\": \"rijtj\",\n  \"rijtoer\": \"rijtoer\",\n  \"rijtuig\": \"rijtuig\",\n  \"rijtuigen\": \"rijtuig\",\n  \"rijtuigje\": \"rijtuigj\",\n  \"rijv\": \"rijv\",\n  \"rijweg\": \"rijweg\",\n  \"rijwielen\": \"rijwiel\",\n  \"rijwielpaden\": \"rijwielpad\",\n  \"rijzen\": \"rijz\",\n  \"rikz\": \"rikz\",\n  \"ril\": \"ril\",\n  \"rilde\": \"rild\",\n  \"rilden\": \"rild\",\n  \"rillen\": \"rill\",\n  \"rillend\": \"rillend\",\n  \"rillende\": \"rillend\",\n  \"rilling\": \"rilling\",\n  \"rillingen\": \"rilling\",\n  \"rilt\": \"rilt\",\n  \"rimh\": \"rimh\",\n  \"rimpeis\": \"rimpeis\",\n  \"rimpel\": \"rimpel\",\n  \"rimpelig\": \"rimpel\",\n  \"rimpelige\": \"rimpel\",\n  \"rimpellach\": \"rimpellach\",\n  \"rimpels\": \"rimpel\",\n  \"rin\": \"rin\",\n  \"ring\": \"ring\",\n  \"ringband\": \"ringband\",\n  \"ringdijk\": \"ringdijk\",\n  \"ringen\": \"ring\",\n  \"ringgenerator\": \"ringgenerator\",\n  \"ringhals\": \"ringhal\",\n  \"ringleiding\": \"ringleid\",\n  \"ringnet\": \"ringnet\",\n  \"ringvej\": \"ringvej\",\n  \"ringvinger\": \"ringvinger\",\n  \"ringvormige\": \"ringvorm\",\n  \"ringweg\": \"ringweg\",\n  \"rinkelde\": \"rinkeld\",\n  \"rinkelden\": \"rinkeld\",\n  \"rinkelend\": \"rinkel\",\n  \"rinnooy\": \"rinnoy\",\n  \"rinnoy\": \"rinnoy\",\n  \"rio\": \"rio\",\n  \"riolen\": \"riol\",\n  \"riolering\": \"rioler\",\n  \"rioleringen\": \"rioler\",\n  \"rioleringmarkt\": \"rioleringmarkt\",\n  \"rioleringsbuis\": \"rioleringsbuis\",\n  \"rioleringsbuizen\": \"rioleringsbuiz\",\n  \"rioleringsmarkt\": \"rioleringsmarkt\",\n  \"rioleringsnetwerk\": \"rioleringsnetwerk\",\n  \"rioleringsopleidingen\": \"rioleringsopleid\",\n  \"rioleringsplan\": \"rioleringsplan\",\n  \"rioleringsprijs\": \"rioleringsprijs\",\n  \"rioleringsproblemen\": \"rioleringsproblem\",\n  \"rioleringsprojecten\": \"rioleringsproject\",\n  \"rioleringsstelsel\": \"rioleringsstelsel\",\n  \"rioleringssysteem\": \"rioleringssystem\",\n  \"rioleringszorg\": \"rioleringszorg\",\n  \"rioned\": \"rioned\",\n  \"riool\": \"riool\",\n  \"rioolbelasting\": \"rioolbelast\",\n  \"rioolbuis\": \"rioolbuis\",\n  \"rioolcapaciteit\": \"rioolcapaciteit\",\n  \"rioolheffing\": \"rioolheff\",\n  \"rioolheffingen\": \"rioolheff\",\n  \"rioolinspectiecamera\": \"rioolinspectiecamera\",\n  \"rioolleidingen\": \"rioolleid\",\n  \"rioolmanagement\": \"rioolmanagement\",\n  \"riooloverstorten\": \"riooloverstort\",\n  \"rioolrecht\": \"rioolrecht\",\n  \"rioolreiniger\": \"rioolreiniger\",\n  \"rioolreinigingsmachines\": \"rioolreinigingsmachines\",\n  \"rioolslib\": \"rioolslib\",\n  \"rioolstelsel\": \"rioolstelsel\",\n  \"rioolstelsels\": \"rioolstelsel\",\n  \"rioolsysteem\": \"rioolsystem\",\n  \"rioolwater\": \"rioolwater\",\n  \"rioolwateranalyse\": \"rioolwateranalys\",\n  \"rioolwaterinstallaties\": \"rioolwaterinstallaties\",\n  \"rioolwaterzuivering\": \"rioolwaterzuiver\",\n  \"rioolwaterzuiveringen\": \"rioolwaterzuiver\",\n  \"rioolwaterzuiveringsinstallatie\": \"rioolwaterzuiveringsinstallatie\",\n  \"rioolwaterzuiveringsinstallaties\": \"rioolwaterzuiveringsinstallaties\",\n  \"riosan\": \"riosan\",\n  \"riouwstraat\": \"riouwstrat\",\n  \"risc\": \"risc\",\n  \"risdalheia\": \"risdalheia\",\n  \"rise\": \"ris\",\n  \"risico\": \"risico\",\n  \"risicoanalyse\": \"risicoanalys\",\n  \"risicoanalyses\": \"risicoanalyses\",\n  \"risicobeleid\": \"risicobeleid\",\n  \"risicobeoordeling\": \"risicobeoordel\",\n  \"risicobepalingen\": \"risicobepal\",\n  \"risicoberekeningen\": \"risicobereken\",\n  \"risicodragend\": \"risicodrag\",\n  \"risicoinventarisatie\": \"risicoinventarisatie\",\n  \"risicomateriaal\": \"risicomateriaal\",\n  \"risiconiveau\": \"risiconiveau\",\n  \"risiconiveaus\": \"risiconiveaus\",\n  \"risicoprofiel\": \"risicoprofiel\",\n  \"risicovolle\": \"risicovoll\",\n  \"risk\": \"risk\",\n  \"riskant\": \"riskant\",\n  \"riskeren\": \"risker\",\n  \"risks\": \"risk\",\n  \"risky\": \"risky\",\n  \"risqueert\": \"risqueert\",\n  \"rit\": \"rit\",\n  \"rite\": \"rit\",\n  \"ritgegevens\": \"ritgegeven\",\n  \"ritmeester\": \"ritmeester\",\n  \"ritselen\": \"ritsel\",\n  \"ritselend\": \"ritsel\",\n  \"ritt\": \"ritt\",\n  \"ritten\": \"rit\",\n  \"ritzen\": \"ritz\",\n  \"rive\": \"riv\",\n  \"river\": \"river\",\n  \"riverclear\": \"riverclear\",\n  \"rivers\": \"river\",\n  \"rivier\": \"rivier\",\n  \"rivièra\": \"rivièra\",\n  \"rivierbed\": \"rivierbed\",\n  \"rivierbeheer\": \"rivierbeher\",\n  \"rivierbodem\": \"rivierbodem\",\n  \"rivierdijken\": \"rivierdijk\",\n  \"rivierdijkverzwaring\": \"rivierdijkverzwar\",\n  \"rivieren\": \"rivier\",\n  \"rivierenbuurt\": \"rivierenbuurt\",\n  \"rivierengebied\": \"rivierengebied\",\n  \"rivierenland\": \"rivierenland\",\n  \"rivierenwet\": \"rivierenwet\",\n  \"rivierlopen\": \"rivierlop\",\n  \"rivieroevers\": \"rivieroever\",\n  \"rivierproject\": \"rivierproject\",\n  \"rivierslib\": \"rivierslib\",\n  \"riviertje\": \"riviertj\",\n  \"riviervervuilers\": \"riviervervuiler\",\n  \"riviervisserij\": \"riviervisserij\",\n  \"rivierwater\": \"rivierwater\",\n  \"rivm\": \"rivm\",\n  \"rivo\": \"rivo\",\n  \"rivoli\": \"rivoli\",\n  \"riz\": \"riz\",\n  \"riza\": \"riza\",\n  \"rm\": \"rm\",\n  \"rmi\": \"rmi\",\n  \"rmk\": \"rmk\",\n  \"rmno\": \"rmno\",\n  \"road\": \"road\",\n  \"roadparcours\": \"roadparcour\",\n  \"roadtrains\": \"roadtrain\",\n  \"rob\": \"rob\",\n  \"robber\": \"robber\",\n  \"robbins\": \"robbin\",\n  \"robeco\": \"robeco\",\n  \"robert\": \"robert\",\n  \"robertson\": \"robertson\",\n  \"robertus\": \"robertus\",\n  \"robinson\": \"robinson\",\n  \"robots\": \"robot\",\n  \"robuuster\": \"robuuster\",\n  \"roc\": \"roc\",\n  \"roccade\": \"roccad\",\n  \"roche\": \"roch\",\n  \"rock\": \"rock\",\n  \"rockwool\": \"rockwol\",\n  \"rocky\": \"rocky\",\n  \"rode\": \"rod\",\n  \"roden\": \"rod\",\n  \"rodenhuis\": \"rodenhuis\",\n  \"rodenticide\": \"rodenticid\",\n  \"rodger\": \"rodger\",\n  \"roeken\": \"roek\",\n  \"roekenesten\": \"roekenest\",\n  \"roelfsema\": \"roelfsema\",\n  \"roelof\": \"roelof\",\n  \"roemaat\": \"roemat\",\n  \"roemburg\": \"roemburg\",\n  \"roemeense\": \"roemen\",\n  \"roemenië\": \"roemenie\",\n  \"roemruchtige\": \"roemrucht\",\n  \"roemt\": \"roemt\",\n  \"roep\": \"roep\",\n  \"roepen\": \"roep\",\n  \"roeping\": \"roeping\",\n  \"roept\": \"roept\",\n  \"roer\": \"roer\",\n  \"roerde\": \"roerd\",\n  \"roerende\": \"roerend\",\n  \"roerloos\": \"roerlos\",\n  \"roerloze\": \"roerloz\",\n  \"roermond\": \"roermond\",\n  \"roes\": \"roes\",\n  \"roest\": \"roest\",\n  \"roestig\": \"roestig\",\n  \"roestmijt\": \"roestmijt\",\n  \"roestvaststaal\": \"roestvaststal\",\n  \"roestvaststalen\": \"roestvaststal\",\n  \"roestvorming\": \"roestvorm\",\n  \"roestvrij\": \"roestvrij\",\n  \"roestvrijstalen\": \"roestvrijstal\",\n  \"roet\": \"roet\",\n  \"roetdeeltjes\": \"roetdeeltjes\",\n  \"roetrokerige\": \"roetroker\",\n  \"roetverwijdering\": \"roetverwijder\",\n  \"roetzwarte\": \"roetzwart\",\n  \"roezemoes\": \"roezemoes\",\n  \"roggen\": \"rogg\",\n  \"roggenplaat\": \"roggenplat\",\n  \"rohm\": \"rohm\",\n  \"rohstoff\": \"rohstoff\",\n  \"rok\": \"rok\",\n  \"roken\": \"rok\",\n  \"rokende\": \"rokend\",\n  \"rokhemden\": \"rokhemd\",\n  \"rokje\": \"rokj\",\n  \"rokken\": \"rok\",\n  \"rokvest\": \"rokvest\",\n  \"rol\": \"rol\",\n  \"rolcontainers\": \"rolcontainer\",\n  \"rolde\": \"rold\",\n  \"rolden\": \"rold\",\n  \"rolf\": \"rolf\",\n  \"rolgeluid\": \"rolgeluid\",\n  \"röling\": \"roling\",\n  \"roll\": \"roll\",\n  \"rollaag\": \"rollag\",\n  \"rollen\": \"roll\",\n  \"rollend\": \"rollend\",\n  \"rollende\": \"rollend\",\n  \"rollenpers\": \"rollenper\",\n  \"rollers\": \"roller\",\n  \"rolluik\": \"rolluik\",\n  \"rolluiken\": \"rolluik\",\n  \"rolpa\": \"rolpa\",\n  \"rolstoelen\": \"rolstoel\",\n  \"rolt\": \"rolt\",\n  \"rom\": \"rom\",\n  \"roman\": \"roman\",\n  \"romancier\": \"romancier\",\n  \"romanhelden\": \"romanheld\",\n  \"romannetje\": \"romannetj\",\n  \"romannetjes\": \"romannetjes\",\n  \"romans\": \"roman\",\n  \"romanschrijver\": \"romanschrijver\",\n  \"rombout\": \"rombout\",\n  \"rome\": \"rom\",\n  \"ròme\": \"ròme\",\n  \"romeinen\": \"romein\",\n  \"romeinse\": \"romein\",\n  \"romelt\": \"romelt\",\n  \"romen\": \"rom\",\n  \"rommel\": \"rommel\",\n  \"rommelde\": \"rommeld\",\n  \"rommeldiners\": \"rommeldiner\",\n  \"rommelfamilie\": \"rommelfamilie\",\n  \"rommelig\": \"rommel\",\n  \"rommelkliek\": \"rommelkliek\",\n  \"rommelpartij\": \"rommelpartij\",\n  \"rommelse\": \"rommel\",\n  \"rommelzooi\": \"rommelzooi\",\n  \"romp\": \"romp\",\n  \"rompslomp\": \"rompslomp\",\n  \"ron\": \"ron\",\n  \"ronald\": \"ronald\",\n  \"rond\": \"rond\",\n  \"rondborstig\": \"rondborst\",\n  \"rondde\": \"rond\",\n  \"ronddraaien\": \"ronddraai\",\n  \"ronddraaiende\": \"ronddraai\",\n  \"ronddraait\": \"ronddraait\",\n  \"ronddroeg\": \"ronddroeg\",\n  \"rondduisteren\": \"rondduister\",\n  \"ronde\": \"rond\",\n  \"ronden\": \"rond\",\n  \"ronder\": \"ronder\",\n  \"rondetafelgesprekken\": \"rondetafelgesprek\",\n  \"rondeveense\": \"rondeven\",\n  \"rondgekeken\": \"rondgekek\",\n  \"rondgelopen\": \"rondgelop\",\n  \"rondging\": \"rondging\",\n  \"rondheid\": \"rondheid\",\n  \"ronding\": \"ronding\",\n  \"rondjes\": \"rondjes\",\n  \"rondkijkende\": \"rondkijk\",\n  \"rondkruipen\": \"rondkruip\",\n  \"rondliep\": \"rondliep\",\n  \"rondloop\": \"rondlop\",\n  \"rondom\": \"rondom\",\n  \"rondonia\": \"rondonia\",\n  \"rondreisje\": \"rondreisj\",\n  \"rondt\": \"rondt\",\n  \"ronduit\": \"ronduit\",\n  \"rondvlogen\": \"rondvlog\",\n  \"rondvloot\": \"rondvlot\",\n  \"rondweg\": \"rondweg\",\n  \"rondziende\": \"rondziend\",\n  \"rontberg\": \"rontberg\",\n  \"rood\": \"rod\",\n  \"roodachtige\": \"roodacht\",\n  \"roodgekleurde\": \"roodgekleurd\",\n  \"roodlof\": \"roodlof\",\n  \"roodvlees\": \"roodvles\",\n  \"roodvleesproduktie\": \"roodvleesproduktie\",\n  \"roofbouw\": \"roofbouw\",\n  \"roofdier\": \"roofdier\",\n  \"roofdierdreiging\": \"roofdierdreig\",\n  \"roofer\": \"roofer\",\n  \"roofvis\": \"roofvis\",\n  \"roofvogelnesten\": \"roofvogelnest\",\n  \"roofvogels\": \"roofvogel\",\n  \"rooimachines\": \"rooimachines\",\n  \"rooisystemen\": \"rooisystem\",\n  \"rook\": \"rok\",\n  \"rookgas\": \"rookgas\",\n  \"rookgasafvoeren\": \"rookgasafvoer\",\n  \"rookgasbak\": \"rookgasbak\",\n  \"rookgascondensator\": \"rookgascondensator\",\n  \"rookgascondensor\": \"rookgascondensor\",\n  \"rookgascondensors\": \"rookgascondensor\",\n  \"rookgasemissie\": \"rookgasemissie\",\n  \"rookgasemissies\": \"rookgasemissies\",\n  \"rookgasfilters\": \"rookgasfilter\",\n  \"rookgasinstallatie\": \"rookgasinstallatie\",\n  \"rookgaskatalysatoren\": \"rookgaskatalysator\",\n  \"rookgaskleppen\": \"rookgasklepp\",\n  \"rookgaskoeling\": \"rookgaskoel\",\n  \"rookgasnakoeling\": \"rookgasnakoel\",\n  \"rookgasontzwavelingsinstallatie\": \"rookgasontzwavelingsinstallatie\",\n  \"rookgasontzwavelingsinstallaties\": \"rookgasontzwavelingsinstallaties\",\n  \"rookgasreiniger\": \"rookgasreiniger\",\n  \"rookgasreinigers\": \"rookgasreiniger\",\n  \"rookgasreiniging\": \"rookgasrein\",\n  \"rookgasreinigingsinstallatie\": \"rookgasreinigingsinstallatie\",\n  \"rookgasreinigingsinstallaties\": \"rookgasreinigingsinstallaties\",\n  \"rookgasreinigingsresidu\": \"rookgasreinigingsresidu\",\n  \"rookgasreinigingsresiduen\": \"rookgasreinigingsresiduen\",\n  \"rookgasreinigingssystemen\": \"rookgasreinigingssystem\",\n  \"rookgassen\": \"rookgass\",\n  \"rookgaswassers\": \"rookgaswasser\",\n  \"rookgaszuiveringsinstallaties\": \"rookgaszuiveringsinstallaties\",\n  \"rookkamer\": \"rookkamer\",\n  \"rookkamertje\": \"rookkamertj\",\n  \"rookontwikkeling\": \"rookontwikkel\",\n  \"rookontzwaveling\": \"rookontzwavel\",\n  \"rookte\": \"rookt\",\n  \"rookten\": \"rookt\",\n  \"rookverbod\": \"rookverbod\",\n  \"room\": \"rom\",\n  \"roomboterfabriek\": \"roomboterfabriek\",\n  \"roomkleurig\": \"roomkleur\",\n  \"roompot\": \"roompot\",\n  \"rooms\": \"rom\",\n  \"roomt\": \"roomt\",\n  \"roorda\": \"roorda\",\n  \"roos\": \"ros\",\n  \"roosendaal\": \"roosendal\",\n  \"rooskleurig\": \"rooskleur\",\n  \"roosmalen\": \"roosmal\",\n  \"rooster\": \"rooster\",\n  \"roosteroven\": \"roosterov\",\n  \"roosterovens\": \"roosteroven\",\n  \"roosters\": \"rooster\",\n  \"roosterstaaf\": \"roosterstaf\",\n  \"roosterverbranding\": \"roosterverbrand\",\n  \"roosterverbrandingsovens\": \"roosterverbrandingsoven\",\n  \"roostervloeren\": \"roostervloer\",\n  \"roostervloersysteem\": \"roostervloersystem\",\n  \"rooymans\": \"rooyman\",\n  \"rosa\": \"rosa\",\n  \"roscam\": \"roscam\",\n  \"rosenmöller\": \"rosenmoller\",\n  \"rosep\": \"rosep\",\n  \"rosestone\": \"roseston\",\n  \"rosetta\": \"rosetta\",\n  \"rosmalen\": \"rosmal\",\n  \"rosse\": \"ros\",\n  \"rossig\": \"rossig\",\n  \"rossum\": \"rossum\",\n  \"rot\": \"rot\",\n  \"rotary\": \"rotary\",\n  \"rotatie\": \"rotatie\",\n  \"rotatiemechanisme\": \"rotatiemechanism\",\n  \"rotaties\": \"rotaties\",\n  \"rotblat\": \"rotblat\",\n  \"roteb\": \"roteb\",\n  \"roterende\": \"roter\",\n  \"rotganzen\": \"rotganz\",\n  \"rotomoulded\": \"rotomoulded\",\n  \"rotonde\": \"rotond\",\n  \"rotor\": \"rotor\",\n  \"rotorblad\": \"rotorblad\",\n  \"rotorbladen\": \"rotorblad\",\n  \"rotordiameter\": \"rotordiameter\",\n  \"rotoren\": \"rotor\",\n  \"rotoroppervlak\": \"rotoroppervlak\",\n  \"rotorschaar\": \"rotorschar\",\n  \"rotorscharen\": \"rotorschar\",\n  \"rots\": \"rot\",\n  \"rotsblok\": \"rotsblok\",\n  \"rotsen\": \"rots\",\n  \"rotslawine\": \"rotslawin\",\n  \"rotslawines\": \"rotslawines\",\n  \"rotte\": \"rot\",\n  \"rottende\": \"rottend\",\n  \"rotterdam\": \"rotterdam\",\n  \"rotterdammer\": \"rotterdammer\",\n  \"rotterdams\": \"rotterdam\",\n  \"rotterdamse\": \"rotterdam\",\n  \"rotting\": \"rotting\",\n  \"rottummeroog\": \"rottummerog\",\n  \"rottummerplaat\": \"rottummerplat\",\n  \"rouge\": \"roug\",\n  \"roundtable\": \"roundtabl\",\n  \"roussillon\": \"roussillon\",\n  \"route\": \"rout\",\n  \"routelijsten\": \"routelijst\",\n  \"routeplanning\": \"routeplann\",\n  \"routeregistratie\": \"routeregistratie\",\n  \"routes\": \"routes\",\n  \"routine\": \"routin\",\n  \"routti\": \"routti\",\n  \"rouw\": \"rouw\",\n  \"rover\": \"rover\",\n  \"rovers\": \"rover\",\n  \"rowland\": \"rowland\",\n  \"rowohlt\": \"rowohlt\",\n  \"royaal\": \"royal\",\n  \"royal\": \"royal\",\n  \"royale\": \"royal\",\n  \"roze\": \"roz\",\n  \"rozekleurtjes\": \"rozekleurtjes\",\n  \"rozen\": \"roz\",\n  \"rozenbloei\": \"rozenbloei\",\n  \"rozenburg\": \"rozenburg\",\n  \"rozenkwekers\": \"rozenkweker\",\n  \"rozenstraat\": \"rozenstrat\",\n  \"rozenstruiken\": \"rozenstruik\",\n  \"rozentelers\": \"rozenteler\",\n  \"rozig\": \"rozig\",\n  \"rozigblanke\": \"rozigblank\",\n  \"rozige\": \"rozig\",\n  \"rozijnen\": \"rozijn\",\n  \"rpd\": \"rpd\",\n  \"rpf\": \"rpf\",\n  \"rpm\": \"rpm\",\n  \"rqa\": \"rqa\",\n  \"rrr\": \"rrr\",\n  \"rrrr\": \"rrrr\",\n  \"rrrrr\": \"rrrrr\",\n  \"rs\": \"rs\",\n  \"rss\": \"rss\",\n  \"rti\": \"rti\",\n  \"rts\": \"rts\",\n  \"rtss\": \"rtss\",\n  \"rtts\": \"rtts\",\n  \"ru\": \"ru\",\n  \"rubber\": \"rubber\",\n  \"rubberafval\": \"rubberafval\",\n  \"rubberbasis\": \"rubberbasis\",\n  \"rubberboot\": \"rubberbot\",\n  \"rubberen\": \"rubber\",\n  \"rubberfabriek\": \"rubberfabriek\",\n  \"rubbergranulaat\": \"rubbergranulat\",\n  \"rubbergruis\": \"rubbergruis\",\n  \"rubberindustrie\": \"rubberindustrie\",\n  \"rubberplantages\": \"rubberplantages\",\n  \"rubberslangen\": \"rubberslang\",\n  \"rübenau\": \"rubenau\",\n  \"rubrieken\": \"rubriek\",\n  \"ruckelshaus\": \"ruckelshaus\",\n  \"rudolf\": \"rudolf\",\n  \"rue\": \"rue\",\n  \"rug\": \"rug\",\n  \"rugby\": \"rugby\",\n  \"rugdekking\": \"rugdek\",\n  \"rügen\": \"rug\",\n  \"rügenwasser\": \"rugenwasser\",\n  \"ruggegraat\": \"ruggegrat\",\n  \"ruggen\": \"rugg\",\n  \"rugzak\": \"rugzak\",\n  \"ruhr\": \"ruhr\",\n  \"ruhrgebied\": \"ruhrgebied\",\n  \"ruhrkohle\": \"ruhrkohl\",\n  \"ruig\": \"ruig\",\n  \"ruigoord\": \"ruigoord\",\n  \"ruigten\": \"ruigt\",\n  \"ruijten\": \"ruijt\",\n  \"ruiken\": \"ruik\",\n  \"ruikend\": \"ruikend\",\n  \"ruikt\": \"ruikt\",\n  \"ruil\": \"ruil\",\n  \"ruilen\": \"ruil\",\n  \"ruilhandel\": \"ruilhandel\",\n  \"ruim\": \"ruim\",\n  \"ruimde\": \"ruimd\",\n  \"ruimden\": \"ruimd\",\n  \"ruime\": \"ruim\",\n  \"ruimen\": \"ruim\",\n  \"ruimer\": \"ruimer\",\n  \"ruimere\": \"ruimer\",\n  \"ruimhartig\": \"ruimhart\",\n  \"ruimschoots\": \"ruimschot\",\n  \"ruimste\": \"ruimst\",\n  \"ruimt\": \"ruimt\",\n  \"ruimte\": \"ruimt\",\n  \"ruimtebehandeling\": \"ruimtebehandel\",\n  \"ruimtebehoefte\": \"ruimtebehoeft\",\n  \"ruimtebeslag\": \"ruimtebeslag\",\n  \"ruimtebesparend\": \"ruimtebespar\",\n  \"ruimtegebrek\": \"ruimtegebrek\",\n  \"ruimtegebruik\": \"ruimtegebruik\",\n  \"ruimtelijk\": \"ruimtelijk\",\n  \"ruimtelijke\": \"ruimtelijk\",\n  \"ruimten\": \"ruimt\",\n  \"ruimteonderzoek\": \"ruimteonderzoek\",\n  \"ruimteprobleem\": \"ruimteproblem\",\n  \"ruimteproblemen\": \"ruimteproblem\",\n  \"ruimtes\": \"ruimtes\",\n  \"ruimtestation\": \"ruimtestation\",\n  \"ruimtestations\": \"ruimtestation\",\n  \"ruimtevaart\": \"ruimtevaart\",\n  \"ruimtevaartlaboratorium\": \"ruimtevaartlaboratorium\",\n  \"ruimtevaartorganisatie\": \"ruimtevaartorganisatie\",\n  \"ruimtevaarttechnieken\": \"ruimtevaarttechniek\",\n  \"ruimtevaartuigen\": \"ruimtevaartu\",\n  \"ruimteverwarming\": \"ruimteverwarm\",\n  \"ruimtewetenschappen\": \"ruimtewetenschapp\",\n  \"ruïne\": \"ruin\",\n  \"ruïneren\": \"ruiner\",\n  \"ruïnes\": \"ruines\",\n  \"ruisen\": \"ruis\",\n  \"ruisende\": \"ruisend\",\n  \"ruising\": \"ruising\",\n  \"ruist\": \"ruist\",\n  \"ruiste\": \"ruist\",\n  \"ruit\": \"ruit\",\n  \"ruiten\": \"ruit\",\n  \"ruitenbeek\": \"ruitenbek\",\n  \"ruiter\": \"ruiter\",\n  \"ruiterpaden\": \"ruiterpad\",\n  \"ruitgemeente\": \"ruitgemeent\",\n  \"ruitje\": \"ruitj\",\n  \"ruitvormig\": \"ruitvorm\",\n  \"ruizelde\": \"ruizeld\",\n  \"ruizelende\": \"ruizel\",\n  \"ruk\": \"ruk\",\n  \"rukken\": \"ruk\",\n  \"rukte\": \"rukt\",\n  \"rukten\": \"rukt\",\n  \"rulle\": \"rull\",\n  \"rumal\": \"rumal\",\n  \"rumoerig\": \"rumoer\",\n  \"rumoerige\": \"rumoer\",\n  \"run\": \"run\",\n  \"rund\": \"rund\",\n  \"runderen\": \"runder\",\n  \"runderfosfaat\": \"runderfosfat\",\n  \"rundermest\": \"rundermest\",\n  \"runderteelt\": \"runderteelt\",\n  \"rundvee\": \"rundvee\",\n  \"rundveebedrijven\": \"rundveebedrijv\",\n  \"rundveedrijfmest\": \"rundveedrijfmest\",\n  \"rundveehouderij\": \"rundveehouderij\",\n  \"rundveehouders\": \"rundveehouder\",\n  \"rundveesector\": \"rundveesector\",\n  \"rundveestallen\": \"rundveestall\",\n  \"rundvlees\": \"rundvles\",\n  \"runnen\": \"runn\",\n  \"rups\": \"rup\",\n  \"rupsen\": \"rups\",\n  \"rupskranen\": \"rupskran\",\n  \"rural\": \"rural\",\n  \"rurale\": \"rural\",\n  \"rusland\": \"rusland\",\n  \"russe\": \"rus\",\n  \"russell\": \"russell\",\n  \"russen\": \"russ\",\n  \"russisch\": \"russisch\",\n  \"russische\": \"russisch\",\n  \"rust\": \"rust\",\n  \"rustbank\": \"rustbank\",\n  \"rusten\": \"rust\",\n  \"rustgebieden\": \"rustgebied\",\n  \"rustig\": \"rustig\",\n  \"rustige\": \"rustig\",\n  \"rustiger\": \"rustiger\",\n  \"rustigjes\": \"rustigjes\",\n  \"rustigweg\": \"rustigweg\",\n  \"rustist\": \"rustist\",\n  \"rustplaats\": \"rustplat\",\n  \"rustte\": \"rust\",\n  \"rutland\": \"rutland\",\n  \"rutte\": \"rut\",\n  \"rutten\": \"rut\",\n  \"ruud\": \"rud\",\n  \"ruurlo\": \"ruurlo\",\n  \"ruvvenaer\": \"ruvvenaer\",\n  \"ruw\": \"ruw\",\n  \"ruwbeid\": \"ruwbeid\",\n  \"ruwe\": \"ruw\",\n  \"ruwer\": \"ruwer\",\n  \"ruwheid\": \"ruwheid\",\n  \"ruwijzer\": \"ruwijzer\",\n  \"ruwvoer\": \"ruwvoer\",\n  \"ruwweg\": \"ruwweg\",\n  \"ruyiten\": \"ruyit\",\n  \"ruyslaan\": \"ruyslan\",\n  \"ruyterlaan\": \"ruyterlan\",\n  \"ruyvenaer\": \"ruyvenaer\",\n  \"ruyvenaers\": \"ruyvenaer\",\n  \"ruzie\": \"ruzie\",\n  \"ruziën\": \"ruzien\",\n  \"rv\": \"rv\",\n  \"rvs\": \"rvs\",\n  \"rvv\": \"rvv\",\n  \"rw\": \"rw\",\n  \"rwa\": \"rwa\",\n  \"rwe\": \"rwe\",\n  \"rws\": \"rws\",\n  \"rwzi\": \"rwzi\",\n  \"rypma\": \"rypma\",\n  \"s\": \"s\",\n  \"sa\": \"sa\",\n  \"saab\": \"sab\",\n  \"saai\": \"saai\",\n  \"saak\": \"sak\",\n  \"saar\": \"sar\",\n  \"saarberg\": \"saarberg\",\n  \"saarbrücken\": \"saarbruck\",\n  \"saarbrücker\": \"saarbrucker\",\n  \"saarland\": \"saarland\",\n  \"saarlandse\": \"saarland\",\n  \"saba\": \"saba\",\n  \"sabel\": \"sabel\",\n  \"sabels\": \"sabel\",\n  \"sabinadijk\": \"sabinadijk\",\n  \"sabine\": \"sabin\",\n  \"sabotage\": \"sabotag\",\n  \"sac\": \"sac\",\n  \"sacha\": \"sacha\",\n  \"sachsen\": \"sachs\",\n  \"sacilor\": \"sacilor\",\n  \"sacrum\": \"sacrum\",\n  \"saeijs\": \"saeijs\",\n  \"saet\": \"saet\",\n  \"saetzema\": \"saetzema\",\n  \"safa\": \"safa\",\n  \"safari\": \"safari\",\n  \"safaripark\": \"safaripark\",\n  \"safe\": \"saf\",\n  \"safety\": \"safety\",\n  \"saffiertjes\": \"saffiertjes\",\n  \"safiplast\": \"safiplast\",\n  \"sahara\": \"sahara\",\n  \"saigon\": \"saigon\",\n  \"sails\": \"sail\",\n  \"saint\": \"saint\",\n  \"saken\": \"sak\",\n  \"saksen\": \"saks\",\n  \"saksisch\": \"saksisch\",\n  \"salaam\": \"salam\",\n  \"salade\": \"salad\",\n  \"salaris\": \"salaris\",\n  \"salarissen\": \"salariss\",\n  \"salderingsmethode\": \"salderingsmethod\",\n  \"saldomethode\": \"saldomethod\",\n  \"salland\": \"salland\",\n  \"sallandse\": \"salland\",\n  \"sally\": \"sally\",\n  \"salmonella\": \"salmonella\",\n  \"salon\": \"salon\",\n  \"salonbeschaving\": \"salonbeschav\",\n  \"salondeur\": \"salondeur\",\n  \"salonkomedie\": \"salonkomedie\",\n  \"salonkwestie\": \"salonkwestie\",\n  \"salonmens\": \"salonmen\",\n  \"salonmensen\": \"salonmens\",\n  \"salons\": \"salon\",\n  \"salonstuk\": \"salonstuk\",\n  \"salpeterzuur\": \"salpeterzur\",\n  \"salt\": \"salt\",\n  \"salueerde\": \"salueerd\",\n  \"salueerden\": \"salueerd\",\n  \"salzburgse\": \"salzburg\",\n  \"sambal\": \"sambal\",\n  \"sambals\": \"sambal\",\n  \"samen\": \"sam\",\n  \"samenbindend\": \"samenbind\",\n  \"samenbonden\": \"samenbond\",\n  \"samengaan\": \"samengan\",\n  \"samengaande\": \"samengaand\",\n  \"samengebeurlijkheden\": \"samengebeur\",\n  \"samengebracht\": \"samengebracht\",\n  \"samengeklemd\": \"samengeklemd\",\n  \"samengeperst\": \"samengeperst\",\n  \"samengeperste\": \"samengeperst\",\n  \"samengesteld\": \"samengesteld\",\n  \"samengestelde\": \"samengesteld\",\n  \"samengetrild\": \"samengetrild\",\n  \"samengevat\": \"samengevat\",\n  \"samengevoegd\": \"samengevoegd\",\n  \"samengevoel\": \"samengevoel\",\n  \"samengewerkt\": \"samengewerkt\",\n  \"samengewrongen\": \"samengewrong\",\n  \"samenhang\": \"samenhang\",\n  \"samenhangen\": \"samenhang\",\n  \"samenhangend\": \"samenhang\",\n  \"samenhangende\": \"samenhang\",\n  \"samenhangt\": \"samenhangt\",\n  \"samenhielden\": \"samenhield\",\n  \"samenhoudt\": \"samenhoudt\",\n  \"samenklonteren\": \"samenklonter\",\n  \"samenklontering\": \"samenklonter\",\n  \"samenkomen\": \"samenkom\",\n  \"samenkomst\": \"samenkomst\",\n  \"samenkomsten\": \"samenkomst\",\n  \"samenkrampten\": \"samenkrampt\",\n  \"samenkromp\": \"samenkromp\",\n  \"samenleven\": \"samenlev\",\n  \"samenleving\": \"samenlev\",\n  \"samenlevingen\": \"samenlev\",\n  \"samenloop\": \"samenlop\",\n  \"samenscholing\": \"samenschol\",\n  \"samensmeden\": \"samensmed\",\n  \"samensmelten\": \"samensmelt\",\n  \"samensmolt\": \"samensmolt\",\n  \"samenspel\": \"samenspel\",\n  \"samenspraak\": \"samensprak\",\n  \"samenstellen\": \"samenstell\",\n  \"samenstelling\": \"samenstell\",\n  \"samenstellingseisen\": \"samenstellingseis\",\n  \"samenstellingswaarde\": \"samenstellingswaard\",\n  \"samenstemming\": \"samenstemm\",\n  \"samentaste\": \"samentast\",\n  \"samenvatting\": \"samenvat\",\n  \"samenvattings\": \"samenvat\",\n  \"samenvloeien\": \"samenvloei\",\n  \"samenvoeging\": \"samenvoeg\",\n  \"samenvoegingen\": \"samenvoeg\",\n  \"samenwerken\": \"samenwerk\",\n  \"samenwerkende\": \"samenwerk\",\n  \"samenwerking\": \"samenwerk\",\n  \"samenwerkingscontract\": \"samenwerkingscontract\",\n  \"samenwerkingsorgaan\": \"samenwerkingsorgan\",\n  \"samenwerkingsovereenkomst\": \"samenwerkingsovereenkomst\",\n  \"samenwerkingsovereenkomsten\": \"samenwerkingsovereenkomst\",\n  \"samenwerkingsproject\": \"samenwerkingsproject\",\n  \"samenwerkingsprojecten\": \"samenwerkingsproject\",\n  \"samenwerkingsverband\": \"samenwerkingsverband\",\n  \"samenwerkingsverbanden\": \"samenwerkingsverband\",\n  \"samenwerkingsvorm\": \"samenwerkingsvorm\",\n  \"samenwerkingverband\": \"samenwerkingverband\",\n  \"samenwerkt\": \"samenwerkt\",\n  \"samenwerkten\": \"samenwerkt\",\n  \"samenzien\": \"samenzien\",\n  \"samenzijn\": \"samenzijn\",\n  \"samenzwering\": \"samenzwer\",\n  \"samotlor\": \"samotlor\",\n  \"samplers\": \"sampler\",\n  \"samsom\": \"samsom\",\n  \"san\": \"san\",\n  \"sanctiemiddelen\": \"sanctiemiddel\",\n  \"sancties\": \"sancties\",\n  \"sandelhout\": \"sandelhout\",\n  \"sanden\": \"sand\",\n  \"sandia\": \"sandia\",\n  \"sandoz\": \"sandoz\",\n  \"sandra\": \"sandra\",\n  \"sandwiches\": \"sandwiches\",\n  \"saneert\": \"saneert\",\n  \"saneren\": \"saner\",\n  \"sanering\": \"saner\",\n  \"saneringbevel\": \"saneringbevel\",\n  \"saneringen\": \"saner\",\n  \"sanerings\": \"saner\",\n  \"saneringsaanpak\": \"saneringsaanpak\",\n  \"saneringsbevel\": \"saneringsbevel\",\n  \"saneringscentra\": \"saneringscentra\",\n  \"saneringsfonds\": \"saneringsfond\",\n  \"saneringsgevallen\": \"saneringsgevall\",\n  \"saneringskosten\": \"saneringskost\",\n  \"saneringslocatie\": \"saneringslocatie\",\n  \"saneringsmaatregelen\": \"saneringsmaatregel\",\n  \"saneringsmarkt\": \"saneringsmarkt\",\n  \"saneringsonderzoek\": \"saneringsonderzoek\",\n  \"saneringsonderzoeken\": \"saneringsonderzoek\",\n  \"saneringsonderzoeksbevel\": \"saneringsonderzoeksbevel\",\n  \"saneringsoperatie\": \"saneringsoperatie\",\n  \"saneringsparagraaf\": \"saneringsparagraf\",\n  \"saneringsplan\": \"saneringsplan\",\n  \"saneringsplannen\": \"saneringsplann\",\n  \"saneringsplicht\": \"saneringsplicht\",\n  \"saneringsprocessen\": \"saneringsprocess\",\n  \"saneringsprogramma\": \"saneringsprogramma\",\n  \"saneringsprojecten\": \"saneringsproject\",\n  \"saneringsregeling\": \"saneringsregel\",\n  \"saneringsronde\": \"saneringsrond\",\n  \"saneringstechnieken\": \"saneringstechniek\",\n  \"saneringstechnologie\": \"saneringstechnologie\",\n  \"saneringstechnologieën\": \"saneringstechnologieen\",\n  \"saneringsurgentie\": \"saneringsurgentie\",\n  \"saneringsurgentiesystematiek\": \"saneringsurgentiesystematiek\",\n  \"saneringsvarianten\": \"saneringsvariant\",\n  \"saneringswerkzaamheden\": \"saneringswerkzam\",\n  \"sang\": \"sang\",\n  \"sanghvi\": \"sanghvi\",\n  \"sanitair\": \"sanitair\",\n  \"sanitairreinigingsmiddelen\": \"sanitairreinigingsmiddel\",\n  \"sans\": \"san\",\n  \"santa\": \"santa\",\n  \"santen\": \"sant\",\n  \"santer\": \"santer\",\n  \"santpoort\": \"santpoort\",\n  \"saoedi\": \"saoedi\",\n  \"saone\": \"saon\",\n  \"sap\": \"sap\",\n  \"sappen\": \"sapp\",\n  \"sapristi\": \"sapristi\",\n  \"sarcasme\": \"sarcasm\",\n  \"sardinië\": \"sardinie\",\n  \"saro\": \"saro\",\n  \"sarong\": \"sarong\",\n  \"sas\": \"sas\",\n  \"sassenheim\": \"sassenheim\",\n  \"satelliet\": \"satelliet\",\n  \"satellietbeelden\": \"satellietbeeld\",\n  \"satellieten\": \"satelliet\",\n  \"satellietfoto\": \"satellietfoto\",\n  \"satellite\": \"satellit\",\n  \"satijn\": \"satijn\",\n  \"satijnen\": \"satijn\",\n  \"satzumavaas\": \"satzumavas\",\n  \"saus\": \"saus\",\n  \"sauterie\": \"sauterie\",\n  \"savannah\": \"savannah\",\n  \"save\": \"sav\",\n  \"savings\": \"saving\",\n  \"sba\": \"sba\",\n  \"sbb\": \"sbb\",\n  \"sbk\": \"sbk\",\n  \"sbr\": \"sbr\",\n  \"sc\": \"sc\",\n  \"scala\": \"scala\",\n  \"scalfaro\": \"scalfaro\",\n  \"scan\": \"scan\",\n  \"scandinavië\": \"scandinavie\",\n  \"scandinavische\": \"scandinavisch\",\n  \"scania\": \"scania\",\n  \"scanmat\": \"scanmat\",\n  \"scans\": \"scan\",\n  \"scarabee\": \"scarabee\",\n  \"scarborough\": \"scarborough\",\n  \"scenario\": \"scenario\",\n  \"scenarioberekeningen\": \"scenariobereken\",\n  \"scène\": \"scèn\",\n  \"scènes\": \"scènes\",\n  \"scepsis\": \"scepsis\",\n  \"scepticisme\": \"scepticism\",\n  \"scepticismetje\": \"scepticismetj\",\n  \"scepticismetjes\": \"scepticismetjes\",\n  \"scepticus\": \"scepticus\",\n  \"sceptisch\": \"sceptisch\",\n  \"sceptische\": \"sceptisch\",\n  \"scg\": \"scg\",\n  \"schaadt\": \"schaadt\",\n  \"schaafsma\": \"schaafsma\",\n  \"schaakbord\": \"schaakbord\",\n  \"schaakklok\": \"schaakklok\",\n  \"schaal\": \"schal\",\n  \"schaaldierverwerkende\": \"schaaldierverwerk\",\n  \"schaalgrootte\": \"schaalgrot\",\n  \"schaalmodel\": \"schaalmodel\",\n  \"schaaltje\": \"schaaltj\",\n  \"schaalvergroting\": \"schaalvergrot\",\n  \"schaalverkleining\": \"schaalverklein\",\n  \"schaam\": \"scham\",\n  \"schaamde\": \"schaamd\",\n  \"schaamden\": \"schaamd\",\n  \"schaamt\": \"schaamt\",\n  \"schaamte\": \"schaamt\",\n  \"schaap\": \"schap\",\n  \"schaapjes\": \"schaapjes\",\n  \"schaapjeswit\": \"schaapjeswit\",\n  \"schaars\": \"schar\",\n  \"schaarse\": \"schar\",\n  \"schaarser\": \"schaarser\",\n  \"schaarste\": \"schaarst\",\n  \"schaart\": \"schaart\",\n  \"schaatsbaan\": \"schaatsban\",\n  \"schaatsen\": \"schaats\",\n  \"schaatsenrijden\": \"schaatsenrijd\",\n  \"schacht\": \"schacht\",\n  \"schachtbau\": \"schachtbau\",\n  \"schachten\": \"schacht\",\n  \"schade\": \"schad\",\n  \"schadebedrag\": \"schadebedrag\",\n  \"schadebeeld\": \"schadebeeld\",\n  \"schadebeperking\": \"schadebeperk\",\n  \"schadeclaim\": \"schadeclaim\",\n  \"schadeclaims\": \"schadeclaim\",\n  \"schadelast\": \"schadelast\",\n  \"schadelijk\": \"schadelijk\",\n  \"schadelijke\": \"schadelijk\",\n  \"schadelijker\": \"schadelijker\",\n  \"schadelijkheid\": \"schadelijk\",\n  \"schadeloos\": \"schadelos\",\n  \"schadeloosstelling\": \"schadeloosstell\",\n  \"schaden\": \"schad\",\n  \"schadepost\": \"schadepost\",\n  \"schaderegeling\": \"schaderegel\",\n  \"schaderegelingen\": \"schaderegel\",\n  \"schades\": \"schades\",\n  \"schadevergoeding\": \"schadevergoed\",\n  \"schadevergoedingsregeling\": \"schadevergoedingsregel\",\n  \"schadeverzekeraars\": \"schadeverzekerar\",\n  \"schadeverzekering\": \"schadeverzeker\",\n  \"schaduw\": \"schaduw\",\n  \"schaduwde\": \"schaduwd\",\n  \"schaduwden\": \"schaduwd\",\n  \"schaduwduisteringen\": \"schaduwduister\",\n  \"schaduwen\": \"schaduw\",\n  \"schaduwend\": \"schaduw\",\n  \"schaduwende\": \"schaduw\",\n  \"schaduwing\": \"schaduw\",\n  \"schaduwplekjes\": \"schaduwplekjes\",\n  \"schaduwzijden\": \"schaduwzijd\",\n  \"schaerbeek\": \"schaerbek\",\n  \"schaffen\": \"schaff\",\n  \"schaft\": \"schaft\",\n  \"schagen\": \"schag\",\n  \"schaik\": \"schaik\",\n  \"schakeer\": \"schaker\",\n  \"schakel\": \"schakel\",\n  \"schakelaars\": \"schakelar\",\n  \"schakelden\": \"schakeld\",\n  \"schakelen\": \"schakel\",\n  \"schakelketting\": \"schakelket\",\n  \"schakels\": \"schakel\",\n  \"schakelt\": \"schakelt\",\n  \"schaker\": \"schaker\",\n  \"schakeringen\": \"schaker\",\n  \"schaling\": \"schaling\",\n  \"schamen\": \"scham\",\n  \"schamper\": \"schamper\",\n  \"schamplicht\": \"schamplicht\",\n  \"schamplichten\": \"schamplicht\",\n  \"schanda\": \"schanda\",\n  \"schandaal\": \"schandal\",\n  \"schandaaltjes\": \"schandaaltjes\",\n  \"schandalen\": \"schandal\",\n  \"schandalig\": \"schandal\",\n  \"schandalige\": \"schandal\",\n  \"schandaligh\": \"schandaligh\",\n  \"schandblaadje\": \"schandblaadj\",\n  \"schandblaadjes\": \"schandblaadjes\",\n  \"schandblad\": \"schandblad\",\n  \"schande\": \"schand\",\n  \"schandelijk\": \"schandelijk\",\n  \"schanderl\": \"schanderl\",\n  \"schandtaal\": \"schandtal\",\n  \"schans\": \"schan\",\n  \"schap\": \"schap\",\n  \"schapen\": \"schap\",\n  \"schapenboerderijen\": \"schapenboerderij\",\n  \"schapenhouderij\": \"schapenhouderij\",\n  \"schapewol\": \"schapewol\",\n  \"schappelijker\": \"schappelijker\",\n  \"schappen\": \"schapp\",\n  \"schapruimte\": \"schapruimt\",\n  \"schar\": \"schar\",\n  \"scharen\": \"schar\",\n  \"scharrel\": \"scharrel\",\n  \"scharrelde\": \"scharreld\",\n  \"scharrelen\": \"scharrel\",\n  \"scharrelvarkenshouders\": \"scharrelvarkenshouder\",\n  \"scharrelvarkensvlees\": \"scharrelvarkensvles\",\n  \"scharrelvlees\": \"scharrelvles\",\n  \"scharsterbrug\": \"scharsterbrug\",\n  \"schat\": \"schat\",\n  \"schater\": \"schater\",\n  \"schaterde\": \"schaterd\",\n  \"schateren\": \"schater\",\n  \"schaterend\": \"schater\",\n  \"schaterlachte\": \"schaterlacht\",\n  \"schatkist\": \"schatkist\",\n  \"schatte\": \"schat\",\n  \"schatten\": \"schat\",\n  \"schatting\": \"schatting\",\n  \"schattingen\": \"schatting\",\n  \"schaumbergbad\": \"schaumbergbad\",\n  \"schedel\": \"schedel\",\n  \"scheef\": \"schef\",\n  \"scheel\": \"schel\",\n  \"scheelde\": \"scheeld\",\n  \"scheelt\": \"scheelt\",\n  \"scheen\": \"schen\",\n  \"schéen\": \"schen\",\n  \"scheepsafvalstoffen\": \"scheepsafvalstoff\",\n  \"scheepsbemanning\": \"scheepsbemann\",\n  \"scheepsfinanciering\": \"scheepsfinancier\",\n  \"scheepsfinancieringen\": \"scheepsfinancier\",\n  \"scheepshuid\": \"scheepshuid\",\n  \"scheepsmotoren\": \"scheepsmotor\",\n  \"scheepstransporten\": \"scheepstransport\",\n  \"scheepsverven\": \"scheepsverv\",\n  \"scheept\": \"scheept\",\n  \"scheepvaart\": \"scheepvaart\",\n  \"scheepvaartinspectie\": \"scheepvaartinspectie\",\n  \"scheer\": \"scher\",\n  \"scheergestippelde\": \"scheergestippeld\",\n  \"scheerwol\": \"scheerwol\",\n  \"schei\": \"schei\",\n  \"scheidde\": \"scheid\",\n  \"scheidden\": \"scheid\",\n  \"scheiden\": \"scheid\",\n  \"schèiden\": \"schèid\",\n  \"scheider\": \"scheider\",\n  \"scheiders\": \"scheider\",\n  \"scheiding\": \"scheiding\",\n  \"scheidings\": \"scheiding\",\n  \"scheidingsapparatuur\": \"scheidingsapparatur\",\n  \"scheidingsfabriek\": \"scheidingsfabriek\",\n  \"scheidingsgraad\": \"scheidingsgrad\",\n  \"scheidingsinstallatie\": \"scheidingsinstallatie\",\n  \"scheidingsinstallaties\": \"scheidingsinstallaties\",\n  \"scheidingsmogelijkheden\": \"scheidingsmog\",\n  \"scheidingsprocede\": \"scheidingsproced\",\n  \"scheidingsprocédé\": \"scheidingsproced\",\n  \"scheidingsprocessen\": \"scheidingsprocess\",\n  \"scheidingsrendement\": \"scheidingsrendement\",\n  \"scheidingssysteem\": \"scheidingssystem\",\n  \"scheidingstechnieken\": \"scheidingstechniek\",\n  \"scheidingswarmtewisselaar\": \"scheidingswarmtewisselar\",\n  \"scheidslijn\": \"scheidslijn\",\n  \"scheidsrechter\": \"scheidsrechter\",\n  \"scheidt\": \"scheidt\",\n  \"scheikundig\": \"scheikund\",\n  \"scheikundige\": \"scheikund\",\n  \"scheikundigen\": \"scheikund\",\n  \"schel\": \"schel\",\n  \"schelde\": \"scheld\",\n  \"scheldegebied\": \"scheldegebied\",\n  \"schelden\": \"scheld\",\n  \"scheldende\": \"scheldend\",\n  \"scheldt\": \"scheldt\",\n  \"scheldwoord\": \"scheldwoord\",\n  \"schele\": \"schel\",\n  \"schelen\": \"schel\",\n  \"schèlen\": \"schèl\",\n  \"schelle\": \"schell\",\n  \"scheller\": \"scheller\",\n  \"schelletjes\": \"schelletjes\",\n  \"schelluinen\": \"schelluin\",\n  \"schelp\": \"schelp\",\n  \"schelpdier\": \"schelpdier\",\n  \"schelpdieren\": \"schelpdier\",\n  \"schelpdierverwerkers\": \"schelpdierverwerker\",\n  \"schelpen\": \"schelp\",\n  \"schelpkade\": \"schelpkad\",\n  \"schelpkalk\": \"schelpkalk\",\n  \"schelpkalkbranderij\": \"schelpkalkbranderij\",\n  \"schelpkalksamenstellingen\": \"schelpkalksamenstell\",\n  \"schema\": \"schema\",\n  \"scheme\": \"schem\",\n  \"schemer\": \"schemer\",\n  \"schemerde\": \"schemerd\",\n  \"schemerden\": \"schemerd\",\n  \"schemeren\": \"schemer\",\n  \"schemerende\": \"schemer\",\n  \"schemerig\": \"schemer\",\n  \"schemering\": \"schemer\",\n  \"schemeringen\": \"schemer\",\n  \"schemerjaren\": \"schemerjar\",\n  \"schemerlicht\": \"schemerlicht\",\n  \"schemermist\": \"schemermist\",\n  \"schemert\": \"schemert\",\n  \"schemerzevend\": \"schemerzev\",\n  \"schenden\": \"schend\",\n  \"schending\": \"schending\",\n  \"schendt\": \"schendt\",\n  \"schenen\": \"schen\",\n  \"schenk\": \"schenk\",\n  \"schenken\": \"schenk\",\n  \"schenking\": \"schenking\",\n  \"schenste\": \"schenst\",\n  \"schepen\": \"schep\",\n  \"scheppen\": \"schepp\",\n  \"schepper\": \"schepper\",\n  \"schepte\": \"schept\",\n  \"scheren\": \"scher\",\n  \"scherm\": \"scherm\",\n  \"schermen\": \"scherm\",\n  \"schermer\": \"schermer\",\n  \"schermpjes\": \"schermpjes\",\n  \"schermwand\": \"schermwand\",\n  \"scherp\": \"scherp\",\n  \"scherpe\": \"scherp\",\n  \"scherpen\": \"scherp\",\n  \"scherpenzeel\": \"scherpenzel\",\n  \"scherper\": \"scherper\",\n  \"scherpere\": \"scherper\",\n  \"scherpst\": \"scherpst\",\n  \"scherpste\": \"scherpst\",\n  \"scherpte\": \"scherpt\",\n  \"scherts\": \"schert\",\n  \"schertsen\": \"scherts\",\n  \"schertsend\": \"schertsend\",\n  \"schertsende\": \"schertsend\",\n  \"schertste\": \"schertst\",\n  \"scherven\": \"scherv\",\n  \"schets\": \"schet\",\n  \"schetsen\": \"schets\",\n  \"schetsend\": \"schetsend\",\n  \"schetst\": \"schetst\",\n  \"schetste\": \"schetst\",\n  \"schetsten\": \"schetst\",\n  \"schettermuziek\": \"schettermuziek\",\n  \"scheur\": \"scheur\",\n  \"scheurde\": \"scheurd\",\n  \"scheurden\": \"scheurd\",\n  \"scheuren\": \"scheur\",\n  \"scheurende\": \"scheurend\",\n  \"scheurmorfologie\": \"scheurmorfologie\",\n  \"scheuroverbruggende\": \"scheuroverbrugg\",\n  \"scheurtjes\": \"scheurtjes\",\n  \"scheurwijdte\": \"scheurwijdt\",\n  \"scheve\": \"schev\",\n  \"scheveningen\": \"scheven\",\n  \"scheveningse\": \"scheven\",\n  \"schichten\": \"schicht\",\n  \"schichtig\": \"schichtig\",\n  \"schichtige\": \"schichtig\",\n  \"schiedam\": \"schiedam\",\n  \"schiep\": \"schiep\",\n  \"schiereiland\": \"schiereiland\",\n  \"schiermonnikoog\": \"schiermonnikog\",\n  \"schiet\": \"schiet\",\n  \"schietbanen\": \"schietban\",\n  \"schieten\": \"schiet\",\n  \"schietende\": \"schietend\",\n  \"schietverbod\": \"schietverbod\",\n  \"schijf\": \"schijf\",\n  \"schijfschieten\": \"schijfschiet\",\n  \"schijn\": \"schijn\",\n  \"schijnbaar\": \"schijnbar\",\n  \"schijndel\": \"schijndel\",\n  \"schijnen\": \"schijn\",\n  \"schijnjeugd\": \"schijnjeugd\",\n  \"schijnkracht\": \"schijnkracht\",\n  \"schijnsel\": \"schijnsel\",\n  \"schijnsels\": \"schijnsel\",\n  \"schijnt\": \"schijnt\",\n  \"schijt\": \"schijt\",\n  \"schijven\": \"schijv\",\n  \"schikken\": \"schik\",\n  \"schikkend\": \"schikkend\",\n  \"schikkende\": \"schikkend\",\n  \"schikking\": \"schikking\",\n  \"schikkingsaanbod\": \"schikkingsaanbod\",\n  \"schikkingsvoorstel\": \"schikkingsvoorstel\",\n  \"schikte\": \"schikt\",\n  \"schikten\": \"schikt\",\n  \"schild\": \"schild\",\n  \"schilder\": \"schilder\",\n  \"schilderde\": \"schilderd\",\n  \"schilderen\": \"schilder\",\n  \"schilderes\": \"schilderes\",\n  \"schildergebaar\": \"schilderge\",\n  \"schilderij\": \"schilderij\",\n  \"schilders\": \"schilder\",\n  \"schildersbedrijf\": \"schildersbedrijf\",\n  \"schildersbedrijven\": \"schildersbedrijv\",\n  \"schildersbranche\": \"schildersbranch\",\n  \"schilderwerk\": \"schilderwerk\",\n  \"schildklierfunctie\": \"schildklierfunctie\",\n  \"schildklierkanker\": \"schildklierkanker\",\n  \"schildpad\": \"schildpad\",\n  \"schildpadden\": \"schildpad\",\n  \"schim\": \"schim\",\n  \"schimmel\": \"schimmel\",\n  \"schimmelfilter\": \"schimmelfilter\",\n  \"schimmels\": \"schimmel\",\n  \"schimmelsoort\": \"schimmelsoort\",\n  \"schimmelvorming\": \"schimmelvorm\",\n  \"schimmelwerend\": \"schimmelwer\",\n  \"schimmelziekten\": \"schimmelziekt\",\n  \"schimmen\": \"schimm\",\n  \"schimmige\": \"schimmig\",\n  \"schinnen\": \"schinn\",\n  \"schinnerer\": \"schinnerer\",\n  \"schip\": \"schip\",\n  \"schiphol\": \"schiphol\",\n  \"schiphorst\": \"schiphorst\",\n  \"schipluiden\": \"schipluid\",\n  \"schippersvereniging\": \"schippersveren\",\n  \"schippert\": \"schippert\",\n  \"schistosomiasis\": \"schistosomiasis\",\n  \"schitterde\": \"schitterd\",\n  \"schitterden\": \"schitterd\",\n  \"schitteren\": \"schitter\",\n  \"schitterend\": \"schitter\",\n  \"schitterènd\": \"schitterènd\",\n  \"schitterende\": \"schitter\",\n  \"schitterendste\": \"schitterendst\",\n  \"schittering\": \"schitter\",\n  \"schitteringen\": \"schitter\",\n  \"schitterwaan\": \"schitterwan\",\n  \"schleswag\": \"schleswag\",\n  \"schleswig\": \"schleswig\",\n  \"schliesing\": \"schliesing\",\n  \"schmidt\": \"schmidt\",\n  \"schmutzige\": \"schmutzig\",\n  \"schnabbelt\": \"schnabbelt\",\n  \"schneider\": \"schneider\",\n  \"schnell\": \"schnell\",\n  \"schnug\": \"schnug\",\n  \"schoen\": \"schoen\",\n  \"schoenen\": \"schoen\",\n  \"schoenenindustrie\": \"schoenenindustrie\",\n  \"schoenfabriek\": \"schoenfabriek\",\n  \"schoenmakers\": \"schoenmaker\",\n  \"schoentjes\": \"schoentjes\",\n  \"schoenvisie\": \"schoenvisie\",\n  \"schoepen\": \"schoep\",\n  \"schoepenwiel\": \"schoepenwiel\",\n  \"schofferen\": \"schoffer\",\n  \"schok\": \"schok\",\n  \"schokbrekers\": \"schokbreker\",\n  \"schokgolf\": \"schokgolf\",\n  \"schokgolven\": \"schokgolv\",\n  \"schokken\": \"schok\",\n  \"schokkend\": \"schokkend\",\n  \"schokkende\": \"schokkend\",\n  \"schokker\": \"schokker\",\n  \"schokre\": \"schokr\",\n  \"schokte\": \"schokt\",\n  \"schol\": \"schol\",\n  \"schold\": \"schold\",\n  \"scholekster\": \"scholekster\",\n  \"scholeksters\": \"scholekster\",\n  \"scholen\": \"schol\",\n  \"scholengemeenschap\": \"scholengemeenschap\",\n  \"scholieren\": \"scholier\",\n  \"scholing\": \"scholing\",\n  \"scholten\": \"scholt\",\n  \"scholvangsten\": \"scholvangst\",\n  \"schommelde\": \"schommeld\",\n  \"schommelgang\": \"schommelgang\",\n  \"schommelingen\": \"schommel\",\n  \"schommelt\": \"schommelt\",\n  \"schone\": \"schon\",\n  \"schonen\": \"schon\",\n  \"schoner\": \"schoner\",\n  \"schonere\": \"schoner\",\n  \"schonk\": \"schonk\",\n  \"schoof\": \"schof\",\n  \"school\": \"schol\",\n  \"schoolboeken\": \"schoolboek\",\n  \"schoolbussen\": \"schoolbuss\",\n  \"schooljongen\": \"schooljong\",\n  \"schooljongens\": \"schooljongen\",\n  \"schoolkantine\": \"schoolkantin\",\n  \"schoolkennissen\": \"schoolkenniss\",\n  \"schoolmeisje\": \"schoolmeisj\",\n  \"schoolmeisjes\": \"schoolmeisjes\",\n  \"schoolmelk\": \"schoolmelk\",\n  \"schoolmelkbekers\": \"schoolmelkbeker\",\n  \"schoolpleinen\": \"schoolplein\",\n  \"schoolvorming\": \"schoolvorm\",\n  \"schoon\": \"schon\",\n  \"schòon\": \"schòon\",\n  \"schoonbaggeren\": \"schoonbagger\",\n  \"schoonborstelt\": \"schoonborstelt\",\n  \"schoonbroer\": \"schoonbroer\",\n  \"schoondochter\": \"schoondochter\",\n  \"schooneveld\": \"schooneveld\",\n  \"schoongemaakt\": \"schoongemaakt\",\n  \"schoongemaakte\": \"schoongemaakt\",\n  \"schoongeveegd\": \"schoongeveegd\",\n  \"schoonheid\": \"schoonheid\",\n  \"schoonhoven\": \"schoonhov\",\n  \"schoonmaak\": \"schoonmak\",\n  \"schoonmaakkosten\": \"schoonmaakkost\",\n  \"schoonmaakmethodes\": \"schoonmaakmethodes\",\n  \"schoonmaakmiddel\": \"schoonmaakmiddel\",\n  \"schoonmaakmiddelen\": \"schoonmaakmiddel\",\n  \"schoonmaakoperaties\": \"schoonmaakoperaties\",\n  \"schoonmaakploeg\": \"schoonmaakploeg\",\n  \"schoonmaakster\": \"schoonmaakster\",\n  \"schoonmaaksters\": \"schoonmaakster\",\n  \"schoonmaaktechnieken\": \"schoonmaaktechniek\",\n  \"schoonmaken\": \"schoonmak\",\n  \"schoonmama\": \"schoonmama\",\n  \"schoonmoeder\": \"schoonmoeder\",\n  \"schoonouders\": \"schoonouder\",\n  \"schoonspoelen\": \"schoonspoel\",\n  \"schoonspuiten\": \"schoonspuit\",\n  \"schoonste\": \"schoonst\",\n  \"schoonvader\": \"schoonvader\",\n  \"schoonzoon\": \"schoonzon\",\n  \"schoonzuster\": \"schoonzuster\",\n  \"schoor\": \"schor\",\n  \"schoorsteen\": \"schoorsten\",\n  \"schoorsteenkanalen\": \"schoorsteenkanal\",\n  \"schoorsteenmantel\": \"schoorsteenmantel\",\n  \"schoorsteenrotor\": \"schoorsteenrotor\",\n  \"schoorsteentechnieken\": \"schoorsteentechniek\",\n  \"schoorsteenuitstoot\": \"schoorsteenuitstot\",\n  \"schoorsteenventilator\": \"schoorsteenventilator\",\n  \"schoorsteenvorming\": \"schoorsteenvorm\",\n  \"schoorstenen\": \"schoorsten\",\n  \"schoot\": \"schot\",\n  \"schop\": \"schop\",\n  \"schoppen\": \"schopp\",\n  \"schorengebied\": \"schorengebied\",\n  \"schorre\": \"schorr\",\n  \"schorren\": \"schorr\",\n  \"schorsen\": \"schors\",\n  \"schorsende\": \"schorsend\",\n  \"schorsing\": \"schorsing\",\n  \"schorst\": \"schorst\",\n  \"schorste\": \"schorst\",\n  \"schort\": \"schort\",\n  \"schorten\": \"schort\",\n  \"schortje\": \"schortj\",\n  \"schortte\": \"schort\",\n  \"schot\": \"schot\",\n  \"schotel\": \"schotel\",\n  \"schotels\": \"schotel\",\n  \"schoten\": \"schot\",\n  \"schoteroog\": \"schoterog\",\n  \"schotland\": \"schotland\",\n  \"schotse\": \"schot\",\n  \"schouder\": \"schouder\",\n  \"schouders\": \"schouder\",\n  \"schouwburg\": \"schouwburg\",\n  \"schoven\": \"schov\",\n  \"schraler\": \"schraler\",\n  \"schrap\": \"schrap\",\n  \"schrappen\": \"schrapp\",\n  \"schrapt\": \"schrapt\",\n  \"schreef\": \"schref\",\n  \"schreeuw\": \"schreeuw\",\n  \"schreeuwde\": \"schreeuwd\",\n  \"schreeuwden\": \"schreeuwd\",\n  \"schreeuwen\": \"schreeuw\",\n  \"schreeuwerig\": \"schreeuwer\",\n  \"schreeuwerige\": \"schreeuwer\",\n  \"schreeuwhuilende\": \"schreeuwhuil\",\n  \"schreeuwklaagde\": \"schreeuwklaagd\",\n  \"schreeuwt\": \"schreeuwt\",\n  \"schrei\": \"schrei\",\n  \"schreide\": \"schreid\",\n  \"schreien\": \"schrei\",\n  \"schreijer\": \"schreijer\",\n  \"schreit\": \"schreit\",\n  \"schrèit\": \"schrèit\",\n  \"schreven\": \"schrev\",\n  \"schriftelijk\": \"schriftelijk\",\n  \"schriftelijke\": \"schriftelijk\",\n  \"schriften\": \"schrift\",\n  \"schrijen\": \"schrij\",\n  \"schrijf\": \"schrijf\",\n  \"schrijfgerei\": \"schrijfgerei\",\n  \"schrijfkoppen\": \"schrijfkopp\",\n  \"schrijfster\": \"schrijfster\",\n  \"schrijft\": \"schrijft\",\n  \"schrijftafel\": \"schrijftafel\",\n  \"schrijn\": \"schrijn\",\n  \"schrijnden\": \"schrijnd\",\n  \"schrijnend\": \"schrijnend\",\n  \"schrijven\": \"schrijv\",\n  \"schrijvenaars\": \"schrijvenar\",\n  \"schrijver\": \"schrijver\",\n  \"schrijvers\": \"schrijver\",\n  \"schrik\": \"schrik\",\n  \"schrikken\": \"schrik\",\n  \"schrikkende\": \"schrikkend\",\n  \"schrikte\": \"schrikt\",\n  \"schrikten\": \"schrikt\",\n  \"schril\": \"schril\",\n  \"schrille\": \"schrill\",\n  \"schriller\": \"schriller\",\n  \"schrillere\": \"schriller\",\n  \"schrobben\": \"schrobb\",\n  \"schrobvast\": \"schrobvast\",\n  \"schröder\": \"schroder\",\n  \"schroef\": \"schroef\",\n  \"schroefachtige\": \"schroefacht\",\n  \"schroefbeweging\": \"schroefbeweg\",\n  \"schroefcompressoren\": \"schroefcompressor\",\n  \"schroefde\": \"schroefd\",\n  \"schroeven\": \"schroev\",\n  \"schroot\": \"schrot\",\n  \"schroothaven\": \"schroothav\",\n  \"schroothoop\": \"schroothop\",\n  \"schrootmarkt\": \"schrootmarkt\",\n  \"schrootmolen\": \"schrootmol\",\n  \"schrootverwerkend\": \"schrootverwerk\",\n  \"schubbefestoen\": \"schubbefestoen\",\n  \"schubben\": \"schubb\",\n  \"schubbestaart\": \"schubbestaart\",\n  \"schuchter\": \"schuchter\",\n  \"schuchtere\": \"schuchter\",\n  \"schuchterheid\": \"schuchter\",\n  \"schuchters\": \"schuchter\",\n  \"schud\": \"schud\",\n  \"schudde\": \"schud\",\n  \"schudden\": \"schud\",\n  \"schuddend\": \"schuddend\",\n  \"schuddende\": \"schuddend\",\n  \"schudders\": \"schudder\",\n  \"schuif\": \"schuif\",\n  \"schuifelde\": \"schuifeld\",\n  \"schuilen\": \"schuil\",\n  \"schuilende\": \"schuilend\",\n  \"schuilgaat\": \"schuilgat\",\n  \"schuiling\": \"schuiling\",\n  \"schuilplaats\": \"schuilplat\",\n  \"schuilt\": \"schuilt\",\n  \"schuim\": \"schuim\",\n  \"schuimbeton\": \"schuimbeton\",\n  \"schuimbetonfundering\": \"schuimbetonfunder\",\n  \"schuimende\": \"schuimend\",\n  \"schuimflottatie\": \"schuimflottatie\",\n  \"schuimrossen\": \"schuimross\",\n  \"schuimrubberen\": \"schuimrubber\",\n  \"schuimvorming\": \"schuimvorm\",\n  \"schuin\": \"schuin\",\n  \"schuine\": \"schuin\",\n  \"schuiner\": \"schuiner\",\n  \"schuins\": \"schuin\",\n  \"schuit\": \"schuit\",\n  \"schuitenbeek\": \"schuitenbek\",\n  \"schuiven\": \"schuiv\",\n  \"schuld\": \"schuld\",\n  \"schuldbewustzijn\": \"schuldbewustzijn\",\n  \"schuldeisers\": \"schuldeiser\",\n  \"schulden\": \"schuld\",\n  \"schuldig\": \"schuldig\",\n  \"schuldigen\": \"schuldig\",\n  \"schulpen\": \"schulp\",\n  \"schulpevorm\": \"schulpevorm\",\n  \"schultz\": \"schultz\",\n  \"schuren\": \"schur\",\n  \"schurende\": \"schurend\",\n  \"schurftbestrijdingsregistratie\": \"schurftbestrijdingsregistratie\",\n  \"schurftige\": \"schurftig\",\n  \"schurftschimmel\": \"schurftschimmel\",\n  \"schut\": \"schut\",\n  \"schuttersveld\": \"schuttersveld\",\n  \"schuttevaer\": \"schuttevaer\",\n  \"schuur\": \"schur\",\n  \"schuurtje\": \"schuurtj\",\n  \"schuw\": \"schuw\",\n  \"schuwe\": \"schuw\",\n  \"schuwheid\": \"schuwheid\",\n  \"schuws\": \"schuw\",\n  \"schuyt\": \"schuyt\",\n  \"schwarzenberg\": \"schwarzenberg\",\n  \"schweizer\": \"schweizer\",\n  \"schwel\": \"schwel\",\n  \"schwell\": \"schwell\",\n  \"sci\": \"sci\",\n  \"science\": \"scienc\",\n  \"sciences\": \"sciences\",\n  \"scientific\": \"scientific\",\n  \"scientist\": \"scientist\",\n  \"sconacella\": \"sconacella\",\n  \"scoorde\": \"scoord\",\n  \"scoorden\": \"scoord\",\n  \"scoort\": \"scoort\",\n  \"scooters\": \"scooter\",\n  \"score\": \"scor\",\n  \"scoren\": \"scor\",\n  \"scores\": \"scores\",\n  \"scottish\": \"scottish\",\n  \"scotts\": \"scott\",\n  \"scp\": \"scp\",\n  \"scr\": \"scr\",\n  \"scrap\": \"scrap\",\n  \"screed\": \"scred\",\n  \"screening\": \"screening\",\n  \"scriptie\": \"scriptie\",\n  \"scriptumprijs\": \"scriptumprijs\",\n  \"scrupules\": \"scrupules\",\n  \"scsl\": \"scsl\",\n  \"sculptuur\": \"sculptur\",\n  \"sdu\": \"sdu\",\n  \"sdv\": \"sdv\",\n  \"sea\": \"sea\",\n  \"seal\": \"seal\",\n  \"sealer\": \"sealer\",\n  \"sealife\": \"sealif\",\n  \"seamap\": \"seamap\",\n  \"seamount\": \"seamount\",\n  \"season\": \"season\",\n  \"seatec\": \"seatec\",\n  \"sebes\": \"sebes\",\n  \"sec\": \"sec\",\n  \"second\": \"second\",\n  \"secondary\": \"secondary\",\n  \"seconde\": \"second\",\n  \"seconden\": \"second\",\n  \"secretariaat\": \"secretariaat\",\n  \"secretaris\": \"secretaris\",\n  \"secretarisgeneraal\": \"secretarisgeneral\",\n  \"secretary\": \"secretary\",\n  \"sectie\": \"sectie\",\n  \"sector\": \"sector\",\n  \"sectorale\": \"sectoral\",\n  \"sectoranalyse\": \"sectoranalys\",\n  \"sectorbeleidsplannen\": \"sectorbeleidsplann\",\n  \"sectordirecteur\": \"sectordirecteur\",\n  \"sectoren\": \"sector\",\n  \"sectorhoofd\": \"sectorhoofd\",\n  \"sectorieel\": \"sectorieel\",\n  \"sectorzetels\": \"sectorzetel\",\n  \"secundair\": \"secundair\",\n  \"secundaire\": \"secundair\",\n  \"secundairgrondstoffen\": \"secundairgrondstoff\",\n  \"secundairgrondstoffenbranche\": \"secundairgrondstoffenbranch\",\n  \"secuur\": \"secur\",\n  \"sedert\": \"sedert\",\n  \"sediment\": \"sediment\",\n  \"sedimentatie\": \"sedimentatie\",\n  \"sedimentatietanks\": \"sedimentatietank\",\n  \"sedimentmonsters\": \"sedimentmonster\",\n  \"seeder\": \"seeder\",\n  \"seeds\": \"sed\",\n  \"seg\": \"seg\",\n  \"sèg\": \"sèg\",\n  \"segaar\": \"segar\",\n  \"segers\": \"seger\",\n  \"sègh\": \"sègh\",\n  \"segment\": \"segment\",\n  \"segmenten\": \"segment\",\n  \"seignette\": \"seignet\",\n  \"sein\": \"sein\",\n  \"seine\": \"sein\",\n  \"seismiek\": \"seismiek\",\n  \"seismisch\": \"seismisch\",\n  \"seismische\": \"seismisch\",\n  \"seita\": \"seita\",\n  \"seizoen\": \"seizoen\",\n  \"seizoenen\": \"seizoen\",\n  \"seizoensafhankelijk\": \"seizoensafhank\",\n  \"seizoensfluctuaties\": \"seizoensfluctuaties\",\n  \"seizoensveranderingen\": \"seizoensverander\",\n  \"seko\": \"seko\",\n  \"selby\": \"selby\",\n  \"select\": \"select\",\n  \"selecte\": \"select\",\n  \"selecteerde\": \"selecteerd\",\n  \"selecteert\": \"selecteert\",\n  \"selecteren\": \"selecter\",\n  \"selectie\": \"selectie\",\n  \"selectief\": \"selectief\",\n  \"selectiemethode\": \"selectiemethod\",\n  \"selectieve\": \"selectiev\",\n  \"selectievere\": \"selectiever\",\n  \"selectiviteit\": \"selectiviteit\",\n  \"seleen\": \"selen\",\n  \"selfsupporting\": \"selfsupport\",\n  \"sellafield\": \"sellafield\",\n  \"selm\": \"selm\",\n  \"semarang\": \"semarang\",\n  \"sembawang\": \"sembawang\",\n  \"semi\": \"semi\",\n  \"semibulk\": \"semibulk\",\n  \"seminar\": \"seminar\",\n  \"senaat\": \"senat\",\n  \"senaatsbesluit\": \"senaatsbesluit\",\n  \"senaatszetels\": \"senaatszetel\",\n  \"senator\": \"senator\",\n  \"senatoren\": \"senator\",\n  \"sencor\": \"sencor\",\n  \"senegal\": \"senegal\",\n  \"sengewald\": \"sengewald\",\n  \"senior\": \"senior\",\n  \"seniorencomplex\": \"seniorencomplex\",\n  \"sens\": \"sen\",\n  \"sensatiezucht\": \"sensatiezucht\",\n  \"sense\": \"sen\",\n  \"sensing\": \"sensing\",\n  \"sensitiviteit\": \"sensitiviteit\",\n  \"sensor\": \"sensor\",\n  \"sensoren\": \"sensor\",\n  \"sensorholte\": \"sensorholt\",\n  \"sensuele\": \"sensuel\",\n  \"senter\": \"senter\",\n  \"sentiment\": \"sentiment\",\n  \"sentimentaliteit\": \"sentimentaliteit\",\n  \"sentimenteel\": \"sentimentel\",\n  \"sentimenteeltjes\": \"sentimenteeltjes\",\n  \"sentimentele\": \"sentimentel\",\n  \"sentimenten\": \"sentiment\",\n  \"senyang\": \"senyang\",\n  \"seoul\": \"seoul\",\n  \"sep\": \"sep\",\n  \"separate\": \"separat\",\n  \"separatietechnieken\": \"separatietechniek\",\n  \"separation\": \"separation\",\n  \"separatisten\": \"separatist\",\n  \"seperatoren\": \"seperator\",\n  \"seppelfricke\": \"seppelfrick\",\n  \"september\": \"september\",\n  \"septic\": \"septic\",\n  \"septictanks\": \"septictank\",\n  \"sequencing\": \"sequenc\",\n  \"ser\": \"ser\",\n  \"sereen\": \"seren\",\n  \"sereniteit\": \"sereniteit\",\n  \"sergie\": \"sergie\",\n  \"serie\": \"serie\",\n  \"serieproduktie\": \"serieproduktie\",\n  \"series\": \"series\",\n  \"serieus\": \"serieus\",\n  \"serieuze\": \"serieuz\",\n  \"sero\": \"sero\",\n  \"serpentine\": \"serpentin\",\n  \"serre\": \"serr\",\n  \"serreglazen\": \"serreglaz\",\n  \"serreraam\": \"serreram\",\n  \"serres\": \"serres\",\n  \"serretje\": \"serretj\",\n  \"serveert\": \"serveert\",\n  \"server\": \"server\",\n  \"serveren\": \"server\",\n  \"servet\": \"servet\",\n  \"servetten\": \"servet\",\n  \"service\": \"servic\",\n  \"serviceafdelingen\": \"serviceafdel\",\n  \"servicebedrijf\": \"servicebedrijf\",\n  \"servicegaranties\": \"servicegaranties\",\n  \"servicemonteur\": \"servicemonteur\",\n  \"servicepakket\": \"servicepakket\",\n  \"services\": \"services\",\n  \"serviceteam\": \"serviceteam\",\n  \"servië\": \"servie\",\n  \"servies\": \"servies\",\n  \"serviesgoed\": \"serviesgoed\",\n  \"servojet\": \"servojet\",\n  \"sesam\": \"sesam\",\n  \"sessie\": \"sessie\",\n  \"sessies\": \"sessies\",\n  \"set\": \"set\",\n  \"setting\": \"setting\",\n  \"settlement\": \"settlement\",\n  \"sev\": \"sev\",\n  \"severn\": \"severn\",\n  \"seveso\": \"seveso\",\n  \"sex\": \"sex\",\n  \"sexbierum\": \"sexbierum\",\n  \"sf\": \"sf\",\n  \"sfeer\": \"sfer\",\n  \"sfeergaskachels\": \"sfeergaskachel\",\n  \"sferen\": \"sfer\",\n  \"sfg\": \"sfg\",\n  \"sfinx\": \"sfinx\",\n  \"sfinxenmacht\": \"sfinxenmacht\",\n  \"sformulering\": \"sformuler\",\n  \"sgp\": \"sgp\",\n  \"sgs\": \"sgs\",\n  \"shaanxi\": \"shaanxi\",\n  \"shampoo\": \"shampoo\",\n  \"shampoos\": \"shampos\",\n  \"shandon\": \"shandon\",\n  \"shandong\": \"shandong\",\n  \"shanghai\": \"shanghai\",\n  \"shanks\": \"shank\",\n  \"shared\": \"shared\",\n  \"shawl\": \"shawl\",\n  \"shawltje\": \"shawltj\",\n  \"shear\": \"shear\",\n  \"sheet\": \"shet\",\n  \"sheila\": \"sheila\",\n  \"shell\": \"shell\",\n  \"sherbro\": \"sherbro\",\n  \"sherwood\": \"sherwod\",\n  \"shetland\": \"shetland\",\n  \"shilling\": \"shilling\",\n  \"shimadzu\": \"shimadzu\",\n  \"shirlan\": \"shirlan\",\n  \"shoes\": \"shoes\",\n  \"shore\": \"shor\",\n  \"shovel\": \"shovel\",\n  \"showcase\": \"showcas\",\n  \"shower\": \"shower\",\n  \"shred\": \"shred\",\n  \"shredder\": \"shredder\",\n  \"shredderafval\": \"shredderafval\",\n  \"shredderen\": \"shredder\",\n  \"shredderinstallatie\": \"shredderinstallatie\",\n  \"shredders\": \"shredder\",\n  \"shropshire\": \"shropshir\",\n  \"shs\": \"shs\",\n  \"shushufindi\": \"shushufindi\",\n  \"shuttle\": \"shuttl\",\n  \"shv\": \"shv\",\n  \"si\": \"si\",\n  \"siberië\": \"siberie\",\n  \"siberische\": \"siberisch\",\n  \"sichuan\": \"sichuan\",\n  \"sicilië\": \"sicilie\",\n  \"sick\": \"sick\",\n  \"sidderde\": \"sidderd\",\n  \"sidderden\": \"sidderd\",\n  \"sidderen\": \"sidder\",\n  \"siddering\": \"sidder\",\n  \"siegmunds\": \"siegmund\",\n  \"siemens\": \"siemen\",\n  \"siemensprojecten\": \"siemensproject\",\n  \"sien\": \"sien\",\n  \"sientje\": \"sientj\",\n  \"sier\": \"sier\",\n  \"sieralgen\": \"sieralg\",\n  \"sierende\": \"sierend\",\n  \"sierlijkheid\": \"sierlijk\",\n  \"sierprodukt\": \"sierprodukt\",\n  \"sierra\": \"sierra\",\n  \"siersteen\": \"siersten\",\n  \"sierteelt\": \"sierteelt\",\n  \"siësta\": \"siesta\",\n  \"siet\": \"siet\",\n  \"sievert\": \"sievert\",\n  \"sigaar\": \"sigar\",\n  \"sigaren\": \"sigar\",\n  \"sigarenwalm\": \"sigarenwalm\",\n  \"sigaret\": \"sigaret\",\n  \"sigaretten\": \"sigaret\",\n  \"sigaretterook\": \"sigaretterok\",\n  \"sige\": \"sig\",\n  \"sigma\": \"sigma\",\n  \"sign\": \"sign\",\n  \"signaal\": \"signal\",\n  \"signaaloverdracht\": \"signaaloverdracht\",\n  \"signaalwaarde\": \"signaalwaard\",\n  \"signal\": \"signal\",\n  \"signaleerde\": \"signaleerd\",\n  \"signaleert\": \"signaleert\",\n  \"signalen\": \"signal\",\n  \"signaleren\": \"signaler\",\n  \"signalering\": \"signaler\",\n  \"signaleringsfunctie\": \"signaleringsfunctie\",\n  \"significant\": \"significant\",\n  \"significante\": \"significant\",\n  \"significantie\": \"significantie\",\n  \"sijpelende\": \"sijpel\",\n  \"sijpelt\": \"sijpelt\",\n  \"sijtsma\": \"sijtsma\",\n  \"sijtwende\": \"sijtwend\",\n  \"sikkelde\": \"sikkeld\",\n  \"sikkens\": \"sikken\",\n  \"silaan\": \"silan\",\n  \"silenka\": \"silenka\",\n  \"silhouet\": \"silhouet\",\n  \"silhouetten\": \"silhouet\",\n  \"silica\": \"silica\",\n  \"silicaateilandjes\": \"silicaateilandjes\",\n  \"silicagel\": \"silicagel\",\n  \"silicatische\": \"silicatisch\",\n  \"silicium\": \"silicium\",\n  \"siliciumcarbide\": \"siliciumcarbid\",\n  \"siliconen\": \"silicon\",\n  \"siliconenolie\": \"siliconenolie\",\n  \"silo\": \"silo\",\n  \"silva\": \"silva\",\n  \"silvestrini\": \"silvestrini\",\n  \"simazine\": \"simazin\",\n  \"simcoe\": \"simcoe\",\n  \"simmeringdichting\": \"simmeringdicht\",\n  \"simon\": \"simon\",\n  \"simpel\": \"simpel\",\n  \"simpele\": \"simpel\",\n  \"simpeler\": \"simpeler\",\n  \"simulatie\": \"simulatie\",\n  \"simulatiegegevens\": \"simulatiegegeven\",\n  \"simulatiemodellen\": \"simulatiemodell\",\n  \"simulatieresultaten\": \"simulatieresultat\",\n  \"simulaties\": \"simulaties\",\n  \"simulatietechniek\": \"simulatietechniek\",\n  \"simulatietechnieken\": \"simulatietechniek\",\n  \"simulator\": \"simulator\",\n  \"simuleert\": \"simuleert\",\n  \"simuleren\": \"simuler\",\n  \"sinaasappelen\": \"sinaasappel\",\n  \"sinaasappels\": \"sinaasappel\",\n  \"sinds\": \"sind\",\n  \"sindsdien\": \"sindsdien\",\n  \"singapore\": \"singapor\",\n  \"singels\": \"singel\",\n  \"single\": \"singl\",\n  \"sinjo\": \"sinjo\",\n  \"sink\": \"sink\",\n  \"sinox\": \"sinox\",\n  \"sint\": \"sint\",\n  \"sintef\": \"sintef\",\n  \"sinteren\": \"sinter\",\n  \"sinterfabrieken\": \"sinterfabriek\",\n  \"sinusvormig\": \"sinusvorm\",\n  \"sipra\": \"sipra\",\n  \"sir\": \"sir\",\n  \"sirif\": \"sirif\",\n  \"siroop\": \"sirop\",\n  \"siste\": \"sist\",\n  \"site\": \"sit\",\n  \"sites\": \"sites\",\n  \"sitra\": \"sitra\",\n  \"sittard\": \"sittard\",\n  \"sittardse\": \"sittard\",\n  \"sitten\": \"sit\",\n  \"situ\": \"situ\",\n  \"situatie\": \"situatie\",\n  \"situaties\": \"situaties\",\n  \"situeren\": \"situer\",\n  \"situering\": \"situer\",\n  \"sivam\": \"sivam\",\n  \"sivop\": \"sivop\",\n  \"sjoemelen\": \"sjoemel\",\n  \"sjokken\": \"sjok\",\n  \"sjokte\": \"sjokt\",\n  \"sjouwde\": \"sjouwd\",\n  \"sjouwen\": \"sjouw\",\n  \"sjouwer\": \"sjouwer\",\n  \"sk\": \"sk\",\n  \"skal\": \"skal\",\n  \"skarsterlan\": \"skarsterlan\",\n  \"ske\": \"ske\",\n  \"skelet\": \"skelet\",\n  \"ski\": \"ski\",\n  \"skk\": \"skk\",\n  \"skorboom\": \"skorbom\",\n  \"skua\": \"skua\",\n  \"skw\": \"skw\",\n  \"sky\": \"sky\",\n  \"skylla\": \"skylla\",\n  \"sl\": \"sl\",\n  \"sla\": \"sla\",\n  \"slaag\": \"slag\",\n  \"slaagde\": \"slaagd\",\n  \"slaaghwijk\": \"slaaghwijk\",\n  \"slaagkans\": \"slaagkan\",\n  \"slaags\": \"slag\",\n  \"slaagt\": \"slaagt\",\n  \"slaakte\": \"slaakt\",\n  \"slaan\": \"slan\",\n  \"slaande\": \"slaand\",\n  \"slaap\": \"slap\",\n  \"slaapkabinet\": \"slaapkabinet\",\n  \"slaapkamer\": \"slaapkamer\",\n  \"slaapkamers\": \"slaapkamer\",\n  \"slaaploze\": \"slaaploz\",\n  \"slaapt\": \"slaapt\",\n  \"slaapverdieping\": \"slaapverdiep\",\n  \"slaapwandel\": \"slaapwandel\",\n  \"slaapwandelachtig\": \"slaapwandelacht\",\n  \"slaapwandelen\": \"slaapwandel\",\n  \"slaat\": \"slat\",\n  \"slaatje\": \"slaatj\",\n  \"slacht\": \"slacht\",\n  \"slachterij\": \"slachterij\",\n  \"slachterijen\": \"slachterij\",\n  \"slachtkuikenstal\": \"slachtkuikenstal\",\n  \"slachtoffer\": \"slachtoffer\",\n  \"slachtoffers\": \"slachtoffer\",\n  \"slag\": \"slag\",\n  \"slagen\": \"slag\",\n  \"slager\": \"slager\",\n  \"slagerijen\": \"slagerij\",\n  \"slagersbedrijf\": \"slagersbedrijf\",\n  \"slagersjongens\": \"slagersjongen\",\n  \"slagersrekening\": \"slagersreken\",\n  \"slagintensiteit\": \"slagintensiteit\",\n  \"slagregen\": \"slagreg\",\n  \"slagter\": \"slagter\",\n  \"slagvaardig\": \"slagvaard\",\n  \"slak\": \"slak\",\n  \"slakeilandjes\": \"slakeilandjes\",\n  \"slakken\": \"slak\",\n  \"slakkenbehandelingsinstallatie\": \"slakkenbehandelingsinstallatie\",\n  \"slakresten\": \"slakrest\",\n  \"slang\": \"slang\",\n  \"slange\": \"slang\",\n  \"slangen\": \"slang\",\n  \"slangenpomp\": \"slangenpomp\",\n  \"slangensysteem\": \"slangensystem\",\n  \"slangetjes\": \"slangetjes\",\n  \"slangewal\": \"slangewal\",\n  \"slanggebeeste\": \"slanggebeest\",\n  \"slank\": \"slank\",\n  \"slanke\": \"slank\",\n  \"slankheid\": \"slankheid\",\n  \"slap\": \"slap\",\n  \"slapeloosheid\": \"slapelos\",\n  \"slapen\": \"slap\",\n  \"slapende\": \"slapend\",\n  \"slapjes\": \"slapjes\",\n  \"slappe\": \"slapp\",\n  \"slateelt\": \"slateelt\",\n  \"slateler\": \"slateler\",\n  \"slaven\": \"slav\",\n  \"slavernij\": \"slavernij\",\n  \"slecht\": \"slecht\",\n  \"slechte\": \"slecht\",\n  \"slechten\": \"slecht\",\n  \"slechter\": \"slechter\",\n  \"slechtere\": \"slechter\",\n  \"slechtheid\": \"slechtheid\",\n  \"slechthorend\": \"slechthor\",\n  \"slechts\": \"slecht\",\n  \"slechtst\": \"slechtst\",\n  \"sleep\": \"slep\",\n  \"sleepboten\": \"sleepbot\",\n  \"sleepcontact\": \"sleepcontact\",\n  \"sleepjapon\": \"sleepjapon\",\n  \"sleeppoging\": \"sleeppog\",\n  \"sleept\": \"sleept\",\n  \"sleepte\": \"sleept\",\n  \"sleepten\": \"sleept\",\n  \"sleepvoeten\": \"sleepvoet\",\n  \"sleeswijk\": \"sleeswijk\",\n  \"slenterde\": \"slenterd\",\n  \"slenteren\": \"slenter\",\n  \"slepen\": \"slep\",\n  \"slepend\": \"slepend\",\n  \"slepende\": \"slepend\",\n  \"sleping\": \"sleping\",\n  \"slepingen\": \"sleping\",\n  \"slet\": \"slet\",\n  \"slèt\": \"slèt\",\n  \"sleurde\": \"sleurd\",\n  \"sleurmens\": \"sleurmen\",\n  \"sleutel\": \"sleutel\",\n  \"sleutelbegrip\": \"sleutelbegrip\",\n  \"sleutelbegrippen\": \"sleutelbegripp\",\n  \"sleutelfiguren\": \"sleutelfigur\",\n  \"sleutelgat\": \"sleutelgat\",\n  \"sleutelinformanten\": \"sleutelinformant\",\n  \"sleutelmandje\": \"sleutelmandj\",\n  \"sleutelrol\": \"sleutelrol\",\n  \"sleutels\": \"sleutel\",\n  \"sleutelwoord\": \"sleutelwoord\",\n  \"sleuvengraver\": \"sleuvengraver\",\n  \"slf\": \"slf\",\n  \"slib\": \"slib\",\n  \"slibabsorberend\": \"slibabsorber\",\n  \"slibachtig\": \"slibacht\",\n  \"slibafscheiding\": \"slibafscheid\",\n  \"slibafzet\": \"slibafzet\",\n  \"slibbehandelingssystemen\": \"slibbehandelingssystem\",\n  \"slibben\": \"slibb\",\n  \"slibboycot\": \"slibboycot\",\n  \"slibcompostering\": \"slibcomposter\",\n  \"slibdepot\": \"slibdepot\",\n  \"slibdepots\": \"slibdepot\",\n  \"slibdrogers\": \"slibdroger\",\n  \"slibdroging\": \"slibdrog\",\n  \"slibdrogingsinstallatie\": \"slibdrogingsinstallatie\",\n  \"slibdrooginstallatie\": \"slibdrooginstallatie\",\n  \"slibfractie\": \"slibfractie\",\n  \"slibgroei\": \"slibgroei\",\n  \"slibklassen\": \"slibklass\",\n  \"slibkoek\": \"slibkoek\",\n  \"sliblaag\": \"sliblag\",\n  \"slibmengsels\": \"slibmengsel\",\n  \"slibontwatering\": \"slibontwater\",\n  \"slibproblematiek\": \"slibproblematiek\",\n  \"slibputten\": \"slibput\",\n  \"slibreiniging\": \"slibrein\",\n  \"slibslurrie\": \"slibslurrie\",\n  \"slibt\": \"slibt\",\n  \"slibtransport\": \"slibtransport\",\n  \"slibvangputten\": \"slibvangput\",\n  \"slibverbranding\": \"slibverbrand\",\n  \"slibverwerker\": \"slibverwerker\",\n  \"slibverwerking\": \"slibverwerk\",\n  \"slibverwijderingssysteem\": \"slibverwijderingssystem\",\n  \"slibzuivering\": \"slibzuiver\",\n  \"sliedrecht\": \"sliedrecht\",\n  \"sliep\": \"sliep\",\n  \"sliepen\": \"sliep\",\n  \"slieren\": \"slier\",\n  \"slijk\": \"slijk\",\n  \"slijm\": \"slijm\",\n  \"slijt\": \"slijt\",\n  \"slijten\": \"slijt\",\n  \"slijtende\": \"slijtend\",\n  \"slijters\": \"slijter\",\n  \"slijtvast\": \"slijtvast\",\n  \"slijtvaste\": \"slijtvast\",\n  \"slik\": \"slik\",\n  \"slikken\": \"slik\",\n  \"slikte\": \"slikt\",\n  \"slim\": \"slim\",\n  \"slimheid\": \"slimheid\",\n  \"slimme\": \"slimm\",\n  \"slimmetjes\": \"slimmetjes\",\n  \"slinger\": \"slinger\",\n  \"slingerde\": \"slingerd\",\n  \"slingeren\": \"slinger\",\n  \"slingerend\": \"slinger\",\n  \"slingerende\": \"slinger\",\n  \"slingering\": \"slinger\",\n  \"slingeringen\": \"slinger\",\n  \"slingers\": \"slinger\",\n  \"slinken\": \"slink\",\n  \"slinkt\": \"slinkt\",\n  \"slip\": \"slip\",\n  \"slips\": \"slip\",\n  \"slipt\": \"slipt\",\n  \"slobeend\": \"slobeend\",\n  \"slochteren\": \"slochter\",\n  \"sloeg\": \"sloeg\",\n  \"sloegen\": \"sloeg\",\n  \"slogan\": \"slogan\",\n  \"slok\": \"slok\",\n  \"slokjes\": \"slokjes\",\n  \"slokker\": \"slokker\",\n  \"slokte\": \"slokt\",\n  \"slooft\": \"slooft\",\n  \"sloop\": \"slop\",\n  \"sloopafval\": \"sloopafval\",\n  \"sloopauto\": \"sloopauto\",\n  \"sloophout\": \"sloophout\",\n  \"sloopobjecten\": \"sloopobject\",\n  \"sloopplannen\": \"sloopplann\",\n  \"slooppuin\": \"slooppuin\",\n  \"sloopresten\": \"slooprest\",\n  \"sloopt\": \"sloopt\",\n  \"sloopterrein\": \"sloopterrein\",\n  \"sloopvergunning\": \"sloopvergunn\",\n  \"sloopwerken\": \"sloopwerk\",\n  \"sloot\": \"slot\",\n  \"slootbodem\": \"slootbodem\",\n  \"slootbodems\": \"slootbodem\",\n  \"slootkant\": \"slootkant\",\n  \"slootkanten\": \"slootkant\",\n  \"slootwater\": \"slootwater\",\n  \"slop\": \"slop\",\n  \"slopen\": \"slop\",\n  \"sloper\": \"sloper\",\n  \"sloperij\": \"sloperij\",\n  \"slordig\": \"slordig\",\n  \"slordige\": \"slordig\",\n  \"slot\": \"slot\",\n  \"slotbijeenkomst\": \"slotbijeenkomst\",\n  \"slotconclusie\": \"slotconclusie\",\n  \"slotdag\": \"slotdag\",\n  \"slotdagen\": \"slotdag\",\n  \"sloten\": \"slot\",\n  \"sloterplas\": \"sloterplas\",\n  \"slotkoers\": \"slotkoer\",\n  \"slotmanifestatie\": \"slotmanifestatie\",\n  \"slotte\": \"slot\",\n  \"slottoespraken\": \"slottoesprak\",\n  \"slotverklaring\": \"slotverklar\",\n  \"sloven\": \"slov\",\n  \"slowakije\": \"slowakij\",\n  \"sludge\": \"sludg\",\n  \"sludges\": \"sludges\",\n  \"slufter\": \"slufter\",\n  \"slufterdam\": \"slufterdam\",\n  \"sluier\": \"sluier\",\n  \"sluiers\": \"sluier\",\n  \"sluik\": \"sluik\",\n  \"sluimerde\": \"sluimerd\",\n  \"sluimerden\": \"sluimerd\",\n  \"sluimeren\": \"sluimer\",\n  \"sluimerend\": \"sluimer\",\n  \"sluimerende\": \"sluimer\",\n  \"sluimering\": \"sluimer\",\n  \"sluimert\": \"sluimert\",\n  \"sluipende\": \"sluipend\",\n  \"sluis\": \"sluis\",\n  \"sluiskil\": \"sluiskil\",\n  \"sluit\": \"sluit\",\n  \"sluiten\": \"sluit\",\n  \"sluitend\": \"sluitend\",\n  \"sluiting\": \"sluiting\",\n  \"sluitingen\": \"sluiting\",\n  \"sluitingsbevel\": \"sluitingsbevel\",\n  \"sluitingsdatum\": \"sluitingsdatum\",\n  \"sluitingstijden\": \"sluitingstijd\",\n  \"sluizen\": \"sluiz\",\n  \"slungel\": \"slungel\",\n  \"slurpte\": \"slurpt\",\n  \"slurrie\": \"slurrie\",\n  \"slurries\": \"slurries\",\n  \"slurry\": \"slurry\",\n  \"sluw\": \"sluw\",\n  \"smaak\": \"smak\",\n  \"smaakstoffen\": \"smaakstoff\",\n  \"smaaktest\": \"smaaktest\",\n  \"smaakvol\": \"smaakvol\",\n  \"smaal\": \"smal\",\n  \"smacht\": \"smacht\",\n  \"smachten\": \"smacht\",\n  \"smachtend\": \"smachtend\",\n  \"smachtende\": \"smachtend\",\n  \"smachting\": \"smachting\",\n  \"smachtte\": \"smacht\",\n  \"smachtten\": \"smacht\",\n  \"smakkende\": \"smakkend\",\n  \"smakte\": \"smakt\",\n  \"smalle\": \"small\",\n  \"smallingerland\": \"smallingerland\",\n  \"smals\": \"smal\",\n  \"smart\": \"smart\",\n  \"smartelijke\": \"smartelijk\",\n  \"smartelijker\": \"smartelijker\",\n  \"smartte\": \"smart\",\n  \"sme\": \"sme\",\n  \"smederij\": \"smederij\",\n  \"smeek\": \"smek\",\n  \"smeekte\": \"smeekt\",\n  \"smeekten\": \"smeekt\",\n  \"smeenk\": \"smeenk\",\n  \"smeer\": \"smer\",\n  \"smeerde\": \"smeerd\",\n  \"smeerden\": \"smeerd\",\n  \"smeergeld\": \"smeergeld\",\n  \"smeergeldaffaire\": \"smeergeldaffair\",\n  \"smeerlap\": \"smeerlap\",\n  \"smeerlapperij\": \"smeerlapperij\",\n  \"smeermiddel\": \"smeermiddel\",\n  \"smeermiddelen\": \"smeermiddel\",\n  \"smeerolie\": \"smeerolie\",\n  \"smeet\": \"smet\",\n  \"smeèt\": \"smeèt\",\n  \"smeets\": \"smet\",\n  \"smekeling\": \"smekel\",\n  \"smeken\": \"smek\",\n  \"smekend\": \"smekend\",\n  \"smekende\": \"smekend\",\n  \"smeking\": \"smeking\",\n  \"smelt\": \"smelt\",\n  \"smelten\": \"smelt\",\n  \"smeltende\": \"smeltend\",\n  \"smeltmengsel\": \"smeltmengsel\",\n  \"smeltoven\": \"smeltov\",\n  \"smeltproces\": \"smeltproces\",\n  \"smeltprocessen\": \"smeltprocess\",\n  \"smelttraject\": \"smelttraject\",\n  \"smeren\": \"smer\",\n  \"smerende\": \"smerend\",\n  \"smerig\": \"smerig\",\n  \"smerige\": \"smerig\",\n  \"smeriger\": \"smeriger\",\n  \"smerigheid\": \"smerig\",\n  \"smerigste\": \"smerigst\",\n  \"smet\": \"smet\",\n  \"smeten\": \"smet\",\n  \"smeulde\": \"smeuld\",\n  \"smid\": \"smid\",\n  \"smijten\": \"smijt\",\n  \"smile\": \"smil\",\n  \"smit\": \"smit\",\n  \"smith\": \"smith\",\n  \"smithsonian\": \"smithsonian\",\n  \"smits\": \"smit\",\n  \"smoel\": \"smoel\",\n  \"smoesden\": \"smoesd\",\n  \"smoezen\": \"smoez\",\n  \"smog\": \"smog\",\n  \"smogbeleid\": \"smogbeleid\",\n  \"smogmelding\": \"smogmeld\",\n  \"smogveroorzakende\": \"smogveroorzak\",\n  \"smogvorming\": \"smogvorm\",\n  \"smoke\": \"smok\",\n  \"smoking\": \"smoking\",\n  \"smokings\": \"smoking\",\n  \"smokkel\": \"smokkel\",\n  \"smolt\": \"smolt\",\n  \"smolten\": \"smolt\",\n  \"smoorde\": \"smoord\",\n  \"smoorplaat\": \"smoorplat\",\n  \"smoring\": \"smoring\",\n  \"smul\": \"smul\",\n  \"smulden\": \"smuld\",\n  \"smullen\": \"smull\",\n  \"smullend\": \"smullend\",\n  \"smurrie\": \"smurrie\",\n  \"snaak\": \"snak\",\n  \"snaartuig\": \"snaartuig\",\n  \"snab\": \"snab\",\n  \"snackbar\": \"snackbar\",\n  \"snackbars\": \"snackbar\",\n  \"snacks\": \"snack\",\n  \"snakkende\": \"snakkend\",\n  \"snakte\": \"snakt\",\n  \"snap\": \"snap\",\n  \"snapt\": \"snapt\",\n  \"snaren\": \"snar\",\n  \"snarentuig\": \"snarentu\",\n  \"snaterde\": \"snaterd\",\n  \"snauw\": \"snauw\",\n  \"snauwde\": \"snauwd\",\n  \"snauwden\": \"snauwd\",\n  \"sncr\": \"sncr\",\n  \"snede\": \"sned\",\n  \"sneed\": \"sned\",\n  \"sneer\": \"sner\",\n  \"sneeuw\": \"sneeuw\",\n  \"sneeuwde\": \"sneeuwd\",\n  \"sneeuwen\": \"sneeuw\",\n  \"sneeuwgekroonlijste\": \"sneeuwgekroonlijst\",\n  \"sneeuwgrauwe\": \"sneeuwgrauw\",\n  \"sneeuwige\": \"sneeuwig\",\n  \"sneeuwjacht\": \"sneeuwjacht\",\n  \"sneeuwlandschappen\": \"sneeuwlandschapp\",\n  \"sneeuwnacht\": \"sneeuwnacht\",\n  \"sneeuwontruiming\": \"sneeuwontruim\",\n  \"sneeuwploegen\": \"sneeuwploeg\",\n  \"sneeuwschijn\": \"sneeuwschijn\",\n  \"sneeuwschitterende\": \"sneeuwschitter\",\n  \"sneeuwval\": \"sneeuwval\",\n  \"sneeuwvelden\": \"sneeuwveld\",\n  \"sneeuwzwangere\": \"sneeuwzwanger\",\n  \"snel\": \"snel\",\n  \"snelde\": \"sneld\",\n  \"snelgroeiende\": \"snelgroei\",\n  \"snelheden\": \"snelheid\",\n  \"snelheid\": \"snelheid\",\n  \"snelheidsbegrenzer\": \"snelheidsbegrenzer\",\n  \"snelheidsbegrenzers\": \"snelheidsbegrenzer\",\n  \"snelheidsbeperking\": \"snelheidsbeperk\",\n  \"snelheidscontroles\": \"snelheidscontroles\",\n  \"snelheidslijn\": \"snelheidslijn\",\n  \"snelheidslimieten\": \"snelheidslimiet\",\n  \"snelheidsmetingen\": \"snelheidsmet\",\n  \"snelheidsprofiel\": \"snelheidsprofiel\",\n  \"snelheidsregelaar\": \"snelheidsregelar\",\n  \"snelheidsvariaties\": \"snelheidsvariaties\",\n  \"snelheidsverdeling\": \"snelheidsverdel\",\n  \"snelle\": \"snell\",\n  \"snellen\": \"snell\",\n  \"snellende\": \"snellend\",\n  \"sneller\": \"sneller\",\n  \"snellere\": \"sneller\",\n  \"snelpompstations\": \"snelpompstation\",\n  \"snelroterende\": \"snelroter\",\n  \"snelst\": \"snelst\",\n  \"snelte\": \"snelt\",\n  \"sneltram\": \"sneltram\",\n  \"sneltrein\": \"sneltrein\",\n  \"snelweg\": \"snelweg\",\n  \"snelwegen\": \"snelweg\",\n  \"snelwegtunnels\": \"snelwegtunnel\",\n  \"snelwegverbreding\": \"snelwegverbred\",\n  \"snerpend\": \"snerpend\",\n  \"snerpende\": \"snerpend\",\n  \"snerpte\": \"snerpt\",\n  \"snert\": \"snert\",\n  \"snetterde\": \"snetterd\",\n  \"snetteren\": \"snetter\",\n  \"sneuvelde\": \"sneuveld\",\n  \"sneuvelen\": \"sneuvel\",\n  \"snij\": \"snij\",\n  \"snijbloemenbedrijven\": \"snijbloemenbedrijv\",\n  \"snijbloementelers\": \"snijbloementeler\",\n  \"snijcilinders\": \"snijcilinder\",\n  \"snijd\": \"snijd\",\n  \"snijden\": \"snijd\",\n  \"snijdend\": \"snijdend\",\n  \"snijdende\": \"snijdend\",\n  \"snijder\": \"snijder\",\n  \"snijkamerafmetingen\": \"snijkamerafmet\",\n  \"snijmaïs\": \"snijmais\",\n  \"snik\": \"snik\",\n  \"snikke\": \"snik\",\n  \"snikken\": \"snik\",\n  \"snikkend\": \"snikkend\",\n  \"snikkende\": \"snikkend\",\n  \"snikschok\": \"snikschok\",\n  \"snikte\": \"snikt\",\n  \"snikten\": \"snikt\",\n  \"snippers\": \"snipper\",\n  \"snit\": \"snit\",\n  \"snk\": \"snk\",\n  \"snoeiafval\": \"snoeiafval\",\n  \"snoeien\": \"snoei\",\n  \"snoeihout\": \"snoeihout\",\n  \"snoek\": \"snoek\",\n  \"snoekbaars\": \"snoekbar\",\n  \"snoeken\": \"snoek\",\n  \"snoep\": \"snoep\",\n  \"snoepfabrikant\": \"snoepfabrikant\",\n  \"snoeplustige\": \"snoeplust\",\n  \"snoepte\": \"snoept\",\n  \"snoepwaar\": \"snoepwar\",\n  \"snoer\": \"snoer\",\n  \"snoeren\": \"snoer\",\n  \"snoézig\": \"snoezig\",\n  \"snor\": \"snor\",\n  \"snormond\": \"snormond\",\n  \"snowball\": \"snowball\",\n  \"snuffelen\": \"snuffel\",\n  \"snuffelploegmetingen\": \"snuffelploegmet\",\n  \"snuit\": \"snuit\",\n  \"snuiten\": \"snuit\",\n  \"snuiters\": \"snuiter\",\n  \"snv\": \"snv\",\n  \"so\": \"so\",\n  \"só\": \"so\",\n  \"soar\": \"soar\",\n  \"soay\": \"soay\",\n  \"sobel\": \"sobel\",\n  \"soberheid\": \"sober\",\n  \"socar\": \"socar\",\n  \"sociaal\": \"sociaal\",\n  \"sociale\": \"social\",\n  \"socialisme\": \"socialism\",\n  \"socialisten\": \"socialist\",\n  \"socialistische\": \"socialistisch\",\n  \"sociëteit\": \"societeit\",\n  \"sociëteiten\": \"societeit\",\n  \"societies\": \"societies\",\n  \"society\": \"society\",\n  \"sociologen\": \"sociolog\",\n  \"sociologische\": \"sociologisch\",\n  \"socioloog\": \"sociolog\",\n  \"soda\": \"soda\",\n  \"sodabad\": \"sodabad\",\n  \"soeda\": \"soeda\",\n  \"soedab\": \"soedab\",\n  \"soedah\": \"soedah\",\n  \"soeharto\": \"soeharto\",\n  \"soelaas\": \"soelas\",\n  \"soep\": \"soep\",\n  \"soepel\": \"soepel\",\n  \"soepele\": \"soepel\",\n  \"soepeler\": \"soepeler\",\n  \"soesah\": \"soesah\",\n  \"soesden\": \"soesd\",\n  \"soest\": \"soest\",\n  \"soestdijk\": \"soestdijk\",\n  \"soezen\": \"soez\",\n  \"soezig\": \"soezig\",\n  \"sofc\": \"sofc\",\n  \"sofia\": \"sofia\",\n  \"softstarters\": \"softstarter\",\n  \"software\": \"softwar\",\n  \"softwarepakket\": \"softwarepakket\",\n  \"softwareprogramma\": \"softwareprogramma\",\n  \"softwaresysteem\": \"softwaresystem\",\n  \"soie\": \"soi\",\n  \"soil\": \"soil\",\n  \"soils\": \"soil\",\n  \"soir\": \"soir\",\n  \"soirée\": \"soiree\",\n  \"soirées\": \"soires\",\n  \"soit\": \"soit\",\n  \"soja\": \"soja\",\n  \"sojabonen\": \"sojabon\",\n  \"sokjes\": \"sokjes\",\n  \"sokken\": \"sok\",\n  \"sol\": \"sol\",\n  \"solar\": \"solar\",\n  \"solarcool\": \"solarcol\",\n  \"solas\": \"solas\",\n  \"soldaten\": \"soldat\",\n  \"soldeerafval\": \"soldeerafval\",\n  \"soldeerwerk\": \"soldeerwerk\",\n  \"solid\": \"solid\",\n  \"solidariteit\": \"solidariteit\",\n  \"solidariteits\": \"solidariteit\",\n  \"solidariteitsfonds\": \"solidariteitsfond\",\n  \"solide\": \"solid\",\n  \"solidificatie\": \"solidificatie\",\n  \"soliditeit\": \"soliditeit\",\n  \"solids\": \"solid\",\n  \"solitair\": \"solitair\",\n  \"sollicitatie\": \"sollicitatie\",\n  \"solnor\": \"solnor\",\n  \"solo\": \"solo\",\n  \"solomat\": \"solomat\",\n  \"solomon\": \"solomon\",\n  \"solutietechnologie\": \"solutietechnologie\",\n  \"solution\": \"solution\",\n  \"solutions\": \"solution\",\n  \"solvay\": \"solvay\",\n  \"solvent\": \"solvent\",\n  \"som\": \"som\",\n  \"somalië\": \"somalie\",\n  \"somato\": \"somato\",\n  \"somber\": \"somber\",\n  \"somberde\": \"somberd\",\n  \"somberden\": \"somberd\",\n  \"somberder\": \"somberder\",\n  \"sombere\": \"somber\",\n  \"somberen\": \"somber\",\n  \"somberende\": \"somber\",\n  \"somberheden\": \"somber\",\n  \"somberheid\": \"somber\",\n  \"sombering\": \"somber\",\n  \"somberste\": \"somberst\",\n  \"some\": \"som\",\n  \"someren\": \"somer\",\n  \"sommatie\": \"sommatie\",\n  \"sommeerde\": \"sommeerd\",\n  \"sommige\": \"sommig\",\n  \"sommigen\": \"sommig\",\n  \"soms\": \"som\",\n  \"somstijds\": \"somstijd\",\n  \"somt\": \"somt\",\n  \"son\": \"son\",\n  \"sonatrach\": \"sonatrach\",\n  \"sondag\": \"sondag\",\n  \"sonde\": \"sond\",\n  \"sondeerapparatuur\": \"sondeerapparatur\",\n  \"sondeergat\": \"sondeergat\",\n  \"sondeermachine\": \"sondeermachin\",\n  \"sondeermachines\": \"sondeermachines\",\n  \"sondeerstreng\": \"sondeerstreng\",\n  \"sonderabfallgesellschaft\": \"sonderabfallgesellschaft\",\n  \"sonderhausen\": \"sonderhaus\",\n  \"sondershausen\": \"sondershaus\",\n  \"sondes\": \"sondes\",\n  \"sonja\": \"sonja\",\n  \"sont\": \"sont\",\n  \"sony\": \"sony\",\n  \"soo\": \"soo\",\n  \"soons\": \"son\",\n  \"soort\": \"soort\",\n  \"soorten\": \"soort\",\n  \"soortgelijk\": \"soortgelijk\",\n  \"soortgelijke\": \"soortgelijk\",\n  \"soos\": \"sos\",\n  \"sopar\": \"sopar\",\n  \"soppen\": \"sopp\",\n  \"sorgdrager\": \"sorgdrager\",\n  \"sorptie\": \"sorptie\",\n  \"sorteer\": \"sorter\",\n  \"sorteeranalyse\": \"sorteeranalys\",\n  \"sorteeranalyses\": \"sorteeranalyses\",\n  \"sorteerbedrijven\": \"sorteerbedrijv\",\n  \"sorteerden\": \"sorteerd\",\n  \"sorteerinrichtingen\": \"sorteerinricht\",\n  \"sorteerinstallatie\": \"sorteerinstallatie\",\n  \"sorteerinstallaties\": \"sorteerinstallaties\",\n  \"sorteerproef\": \"sorteerproef\",\n  \"sorteerstromen\": \"sorteerstrom\",\n  \"sorteersysteem\": \"sorteersystem\",\n  \"sorteersystemen\": \"sorteersystem\",\n  \"sorteert\": \"sorteert\",\n  \"sorteren\": \"sorter\",\n  \"sortering\": \"sorter\",\n  \"sortie\": \"sortie\",\n  \"souffreert\": \"souffreert\",\n  \"soultz\": \"soultz\",\n  \"sound\": \"sound\",\n  \"soune\": \"soun\",\n  \"souper\": \"souper\",\n  \"sourdine\": \"sourdin\",\n  \"sous\": \"sous\",\n  \"south\": \"south\",\n  \"southampton\": \"southampton\",\n  \"southern\": \"southern\",\n  \"souvenir\": \"souvenir\",\n  \"souvenirs\": \"souvenir\",\n  \"souvereiniteit\": \"souvereiniteit\",\n  \"sovabo\": \"sovabo\",\n  \"sovjet\": \"sovjet\",\n  \"sovon\": \"sovon\",\n  \"sow\": \"sow\",\n  \"sowieso\": \"sowieso\",\n  \"soya\": \"soya\",\n  \"soyinka\": \"soyinka\",\n  \"sp\": \"sp\",\n  \"spa\": \"spa\",\n  \"spaanderplaat\": \"spaanderplat\",\n  \"spaanplaat\": \"spaanplat\",\n  \"spaanplaatindustrie\": \"spaanplaatindustrie\",\n  \"spaans\": \"span\",\n  \"spaanse\": \"span\",\n  \"spaar\": \"spar\",\n  \"spaarbank\": \"spaarbank\",\n  \"spaarbekken\": \"spaarbek\",\n  \"spaarde\": \"spaard\",\n  \"spaardeposito\": \"spaardeposito\",\n  \"spaarder\": \"spaarder\",\n  \"spaardouches\": \"spaardouches\",\n  \"spaargeld\": \"spaargeld\",\n  \"spaarkop\": \"spaarkop\",\n  \"spaarkoppen\": \"spaarkopp\",\n  \"spaarlampen\": \"spaarlamp\",\n  \"spaarpot\": \"spaarpot\",\n  \"spaarprodukt\": \"spaarprodukt\",\n  \"spaarrekeningen\": \"spaarreken\",\n  \"spaart\": \"spaart\",\n  \"space\": \"spac\",\n  \"spande\": \"spand\",\n  \"spandoek\": \"spandoek\",\n  \"spangen\": \"spang\",\n  \"spanje\": \"spanj\",\n  \"spankeren\": \"spanker\",\n  \"spannen\": \"spann\",\n  \"spannende\": \"spannend\",\n  \"spanning\": \"spanning\",\n  \"spanningen\": \"spanning\",\n  \"spanningsniveau\": \"spanningsniveau\",\n  \"spanningsverval\": \"spanningsverval\",\n  \"spanningverschil\": \"spanningverschil\",\n  \"spant\": \"spant\",\n  \"spar\": \"spar\",\n  \"sparen\": \"spar\",\n  \"sparrebossen\": \"sparreboss\",\n  \"sparren\": \"sparr\",\n  \"sparrenbos\": \"sparrenbos\",\n  \"sparrenmassa\": \"sparrenmassa\",\n  \"sparretjes\": \"sparretjes\",\n  \"sparta\": \"sparta\",\n  \"spat\": \"spat\",\n  \"spatje\": \"spatj\",\n  \"spatoe\": \"spatoe\",\n  \"spatte\": \"spat\",\n  \"spatten\": \"spat\",\n  \"spd\": \"spd\",\n  \"spe\": \"spe\",\n  \"speciaal\": \"speciaal\",\n  \"speciale\": \"special\",\n  \"specialisatie\": \"specialisatie\",\n  \"specialiseren\": \"specialiser\",\n  \"specialist\": \"specialist\",\n  \"specialisten\": \"specialist\",\n  \"specialistische\": \"specialistisch\",\n  \"specie\": \"specie\",\n  \"species\": \"species\",\n  \"specificatie\": \"specificatie\",\n  \"specificatiebladen\": \"specificatieblad\",\n  \"specificaties\": \"specificaties\",\n  \"specifiek\": \"specifiek\",\n  \"specifieke\": \"specifiek\",\n  \"specifieker\": \"specifieker\",\n  \"specimens\": \"specimen\",\n  \"spectaculair\": \"spectaculair\",\n  \"spectaculaire\": \"spectaculair\",\n  \"spectra\": \"spectra\",\n  \"spectraal\": \"spectral\",\n  \"spectrale\": \"spectral\",\n  \"spectrometer\": \"spectrometer\",\n  \"spectrometrie\": \"spectrometrie\",\n  \"spectrometry\": \"spectrometry\",\n  \"spectrophotometry\": \"spectrophotometry\",\n  \"spectrum\": \"spectrum\",\n  \"speculaasbrokken\": \"speculaasbrok\",\n  \"speechen\": \"speech\",\n  \"speedcontrol\": \"speedcontrol\",\n  \"speel\": \"spel\",\n  \"speelde\": \"speeld\",\n  \"speelden\": \"speeld\",\n  \"speelgoed\": \"speelgoed\",\n  \"speelgoedindustrie\": \"speelgoedindustrie\",\n  \"speelgoedklei\": \"speelgoedklei\",\n  \"speelgoedklein\": \"speelgoedklein\",\n  \"speelkamerwereldje\": \"speelkamerwereldj\",\n  \"speelruimte\": \"speelruimt\",\n  \"speelt\": \"speelt\",\n  \"speeltafel\": \"speeltafel\",\n  \"speeltafels\": \"speeltafel\",\n  \"speeltafeltjes\": \"speeltafeltjes\",\n  \"speeltuig\": \"speeltuig\",\n  \"speeluur\": \"speelur\",\n  \"speelveld\": \"speelveld\",\n  \"speerpunt\": \"speerpunt\",\n  \"speerpunten\": \"speerpunt\",\n  \"speet\": \"spet\",\n  \"spekken\": \"spek\",\n  \"spel\": \"spel\",\n  \"spelbreker\": \"spelbreker\",\n  \"spelbrekers\": \"spelbreker\",\n  \"speldde\": \"speld\",\n  \"spelde\": \"speld\",\n  \"spelden\": \"speld\",\n  \"spelderholt\": \"spelderholt\",\n  \"spelen\": \"spel\",\n  \"spélen\": \"spel\",\n  \"spelend\": \"spelend\",\n  \"spelende\": \"spelend\",\n  \"spelers\": \"speler\",\n  \"spelletjes\": \"spelletjes\",\n  \"spelregels\": \"spelregel\",\n  \"spencer\": \"spencer\",\n  \"sperden\": \"sperd\",\n  \"sperma\": \"sperma\",\n  \"speuren\": \"speur\",\n  \"spichtig\": \"spichtig\",\n  \"spiedde\": \"spied\",\n  \"spiedden\": \"spied\",\n  \"spieden\": \"spied\",\n  \"spiedende\": \"spiedend\",\n  \"spiegel\": \"spiegel\",\n  \"spiegelblouse\": \"spiegelblous\",\n  \"spiegelconsole\": \"spiegelconsol\",\n  \"spiegelden\": \"spiegeld\",\n  \"spiegeldiepte\": \"spiegeldiept\",\n  \"spiegelen\": \"spiegel\",\n  \"spiegelend\": \"spiegel\",\n  \"spiegelglans\": \"spiegelglan\",\n  \"spiegelglazen\": \"spiegelglaz\",\n  \"spiegeling\": \"spiegel\",\n  \"spiegelkast\": \"spiegelkast\",\n  \"spiegeloptiekarmatuur\": \"spiegeloptiekarmatur\",\n  \"spiegelramen\": \"spiegelram\",\n  \"spiegels\": \"spiegel\",\n  \"spier\": \"spier\",\n  \"spierarbeid\": \"spierarbeid\",\n  \"spieren\": \"spier\",\n  \"spierige\": \"spierig\",\n  \"spierkracht\": \"spierkracht\",\n  \"spierlichaam\": \"spierlicham\",\n  \"spierloze\": \"spierloz\",\n  \"spiernaakt\": \"spiernaakt\",\n  \"spietsten\": \"spietst\",\n  \"spijkenisse\": \"spijkenis\",\n  \"spijkerboor\": \"spijkerbor\",\n  \"spijskokerij\": \"spijskokerij\",\n  \"spijsolie\": \"spijsolie\",\n  \"spijsolieverwarming\": \"spijsolieverwarm\",\n  \"spijsverwarming\": \"spijsverwarm\",\n  \"spijt\": \"spijt\",\n  \"spijten\": \"spijt\",\n  \"spil\": \"spil\",\n  \"spill\": \"spill\",\n  \"spilling\": \"spilling\",\n  \"spills\": \"spill\",\n  \"spin\": \"spin\",\n  \"spinazie\": \"spinazie\",\n  \"spinnenstand\": \"spinnenstand\",\n  \"spinnewebben\": \"spinnewebb\",\n  \"spiraal\": \"spiral\",\n  \"spiraalvormige\": \"spiraalvorm\",\n  \"spiralen\": \"spiral\",\n  \"spiralencircuit\": \"spiralencircuit\",\n  \"spiralende\": \"spiral\",\n  \"spiritusvlam\": \"spiritusvlam\",\n  \"spiro\": \"spiro\",\n  \"spirofloor\": \"spiroflor\",\n  \"spirulina\": \"spirulina\",\n  \"spisula\": \"spisula\",\n  \"spitman\": \"spitman\",\n  \"spits\": \"spit\",\n  \"spitse\": \"spit\",\n  \"spitsen\": \"spits\",\n  \"spitsje\": \"spitsj\",\n  \"spitsjes\": \"spitsjes\",\n  \"spitste\": \"spitst\",\n  \"spitsuren\": \"spitsur\",\n  \"spitsvignetten\": \"spitsvignet\",\n  \"spitsvormige\": \"spitsvorm\",\n  \"spitte\": \"spit\",\n  \"spivey\": \"spivey\",\n  \"spleen\": \"splen\",\n  \"spleet\": \"splet\",\n  \"splijtstofelementen\": \"splijtstofelement\",\n  \"splijtstoffen\": \"splijtstoff\",\n  \"splijtstofketen\": \"splijtstofket\",\n  \"splijtstofwisseling\": \"splijtstofwissel\",\n  \"splinterbond\": \"splinterbond\",\n  \"spm\": \"spm\",\n  \"spoed\": \"spoed\",\n  \"spoeddebat\": \"spoeddebat\",\n  \"spoedeisend\": \"spoedeis\",\n  \"spoedig\": \"spoedig\",\n  \"spoedinterpellatie\": \"spoedinterpellatie\",\n  \"spoedopnamen\": \"spoedopnam\",\n  \"spoedprocedure\": \"spoedprocedur\",\n  \"spoelen\": \"spoel\",\n  \"spoelgotensysteem\": \"spoelgotensystem\",\n  \"spoeling\": \"spoeling\",\n  \"spoelingen\": \"spoeling\",\n  \"spoelingwater\": \"spoelingwater\",\n  \"spoelinstallaties\": \"spoelinstallaties\",\n  \"spoelonderbreekknoppen\": \"spoelonderbreekknopp\",\n  \"spoelonderbreking\": \"spoelonderbrek\",\n  \"spoelt\": \"spoelt\",\n  \"spoelwater\": \"spoelwater\",\n  \"spoelwaterbehandeling\": \"spoelwaterbehandel\",\n  \"spoken\": \"spok\",\n  \"spokende\": \"spokend\",\n  \"spokig\": \"spokig\",\n  \"spokige\": \"spokig\",\n  \"spons\": \"spon\",\n  \"sponsachtige\": \"sponsacht\",\n  \"sponsor\": \"sponsor\",\n  \"sponsors\": \"sponsor\",\n  \"sponsort\": \"sponsort\",\n  \"sponste\": \"sponst\",\n  \"spontaan\": \"spontan\",\n  \"spontaans\": \"spontan\",\n  \"spontaanweg\": \"spontaanweg\",\n  \"spontane\": \"spontan\",\n  \"spontaner\": \"spontaner\",\n  \"sponzen\": \"sponz\",\n  \"spook\": \"spok\",\n  \"spookachtig\": \"spookacht\",\n  \"spookgebaar\": \"spookgebar\",\n  \"spookgezichten\": \"spookgezicht\",\n  \"spookhuis\": \"spookhuis\",\n  \"spooklandschap\": \"spooklandschap\",\n  \"spooksel\": \"spooksel\",\n  \"spookt\": \"spookt\",\n  \"spookte\": \"spookt\",\n  \"spookten\": \"spookt\",\n  \"spooktrein\": \"spooktrein\",\n  \"spoor\": \"spor\",\n  \"spooraansluiting\": \"spooraansluit\",\n  \"spoorbaan\": \"spoorban\",\n  \"spoorbanen\": \"spoorban\",\n  \"spoorde\": \"spoord\",\n  \"spoordijk\": \"spoordijk\",\n  \"spoorlijn\": \"spoorlijn\",\n  \"spoorlijnen\": \"spoorlijn\",\n  \"spoornet\": \"spoornet\",\n  \"spoort\": \"spoort\",\n  \"spoortechnische\": \"spoortechnisch\",\n  \"spoortje\": \"spoortj\",\n  \"spoortree\": \"spoortree\",\n  \"spoortrein\": \"spoortrein\",\n  \"spoorverdubbeling\": \"spoorverdubbel\",\n  \"spoorwegen\": \"spoorweg\",\n  \"spoorweggeluid\": \"spoorweggeluid\",\n  \"spoorweggrind\": \"spoorweggrind\",\n  \"spoorwegnet\": \"spoorwegnet\",\n  \"spoorwegviaducten\": \"spoorwegviaduct\",\n  \"spoot\": \"spot\",\n  \"sporadisch\": \"sporadisch\",\n  \"sporadische\": \"sporadisch\",\n  \"sporen\": \"spor\",\n  \"sporenbedden\": \"sporenbed\",\n  \"sport\": \"sport\",\n  \"sportboycot\": \"sportboycot\",\n  \"sportfondsenbad\": \"sportfondsenbad\",\n  \"sporthemd\": \"sporthemd\",\n  \"sportkantines\": \"sportkantines\",\n  \"sportorganisaties\": \"sportorganisaties\",\n  \"sportpak\": \"sportpak\",\n  \"sportterreinen\": \"sportterrein\",\n  \"sportveld\": \"sportveld\",\n  \"sportvelden\": \"sportveld\",\n  \"sportvliegtuigen\": \"sportvliegtu\",\n  \"sporulerende\": \"sporuler\",\n  \"spot\": \"spot\",\n  \"spothandel\": \"spothandel\",\n  \"spotlach\": \"spotlach\",\n  \"spotogen\": \"spotog\",\n  \"spotte\": \"spot\",\n  \"spotten\": \"spot\",\n  \"spottend\": \"spottend\",\n  \"spotting\": \"spotting\",\n  \"spotvogel\": \"spotvogel\",\n  \"spouthouse\": \"spouthous\",\n  \"spouwankers\": \"spouwanker\",\n  \"spouwconstructies\": \"spouwconstructies\",\n  \"spouwen\": \"spouw\",\n  \"spouwisolatieplaat\": \"spouwisolatieplat\",\n  \"spouwmuren\": \"spouwmur\",\n  \"spp\": \"spp\",\n  \"spraak\": \"sprak\",\n  \"spraakgebruik\": \"spraakgebruik\",\n  \"spraakzaam\": \"spraakzam\",\n  \"spraakzamer\": \"spraakzamer\",\n  \"sprak\": \"sprak\",\n  \"sprake\": \"sprak\",\n  \"sprakeloze\": \"sprakeloz\",\n  \"spraken\": \"sprak\",\n  \"spray\": \"spray\",\n  \"spreek\": \"sprek\",\n  \"spreekkoren\": \"spreekkor\",\n  \"spreekt\": \"spreekt\",\n  \"spreidde\": \"spreid\",\n  \"spreiden\": \"spreid\",\n  \"spreiding\": \"spreiding\",\n  \"spreien\": \"sprei\",\n  \"spreitzer\": \"spreitzer\",\n  \"spreken\": \"sprek\",\n  \"spréken\": \"sprek\",\n  \"sprekende\": \"sprekend\",\n  \"sprekers\": \"spreker\",\n  \"sprenkelden\": \"sprenkeld\",\n  \"springeffect\": \"springeffect\",\n  \"springende\": \"springend\",\n  \"springplank\": \"springplank\",\n  \"springt\": \"springt\",\n  \"sprinklerinstallaties\": \"sprinklerinstallaties\",\n  \"sprint\": \"sprint\",\n  \"sproei\": \"sproei\",\n  \"sproeiboommachine\": \"sproeiboommachin\",\n  \"sproeidroger\": \"sproeidroger\",\n  \"sproeidroogfabriek\": \"sproeidroogfabriek\",\n  \"sproeidrooginstallatie\": \"sproeidrooginstallatie\",\n  \"sproeifilmverdamper\": \"sproeifilmverdamper\",\n  \"sproeikoeler\": \"sproeikoeler\",\n  \"sproeikop\": \"sproeikop\",\n  \"sproetjes\": \"sproetjes\",\n  \"sprokkelhout\": \"sprokkelhout\",\n  \"sprong\": \"sprong\",\n  \"sprongen\": \"sprong\",\n  \"sprookje\": \"sprookj\",\n  \"sprookjes\": \"sprookjes\",\n  \"spruijt\": \"spruijt\",\n  \"spruiten\": \"spruit\",\n  \"spuien\": \"spui\",\n  \"spuimethodiek\": \"spuimethodiek\",\n  \"spuistraat\": \"spuistrat\",\n  \"spuit\": \"spuit\",\n  \"spuitactiviteiten\": \"spuitactiviteit\",\n  \"spuitbus\": \"spuitbus\",\n  \"spuitbussen\": \"spuitbuss\",\n  \"spuitdrift\": \"spuitdrift\",\n  \"spuiten\": \"spuit\",\n  \"spuitgieten\": \"spuitgiet\",\n  \"spuithoogte\": \"spuithoogt\",\n  \"spuitinstallatie\": \"spuitinstallatie\",\n  \"spuitinstallaties\": \"spuitinstallaties\",\n  \"spuitmachine\": \"spuitmachin\",\n  \"spuitmonden\": \"spuitmond\",\n  \"spuittechniek\": \"spuittechniek\",\n  \"spuitvliegers\": \"spuitvlieger\",\n  \"spuitvrije\": \"spuitvrij\",\n  \"spuitwerkzaamheden\": \"spuitwerkzam\",\n  \"spuiverlies\": \"spuiverlies\",\n  \"spuiwater\": \"spuiwater\",\n  \"spul\": \"spul\",\n  \"spullen\": \"spull\",\n  \"spun\": \"spun\",\n  \"spurtende\": \"spurtend\",\n  \"spurtte\": \"spurt\",\n  \"spurtten\": \"spurt\",\n  \"square\": \"squar\",\n  \"sr\": \"sr\",\n  \"srdb\": \"srdb\",\n  \"sri\": \"sri\",\n  \"sron\": \"sron\",\n  \"sspp\": \"sspp\",\n  \"st\": \"st\",\n  \"sta\": \"sta\",\n  \"staafjes\": \"staafjes\",\n  \"staakte\": \"staakt\",\n  \"staal\": \"stal\",\n  \"staalafval\": \"staalafval\",\n  \"staalbedrijf\": \"staalbedrijf\",\n  \"staalconcern\": \"staalconcern\",\n  \"staalconstructie\": \"staalconstructie\",\n  \"staalgigant\": \"staalgigant\",\n  \"staalgrit\": \"staalgrit\",\n  \"staalindustrie\": \"staalindustrie\",\n  \"staalkleur\": \"staalkleur\",\n  \"staalkleurig\": \"staalkleur\",\n  \"staalplaat\": \"staalplat\",\n  \"staalproducenten\": \"staalproducent\",\n  \"staalproducerende\": \"staalproducer\",\n  \"staalproduktie\": \"staalproduktie\",\n  \"staalprofielen\": \"staalprofiel\",\n  \"staalsnippers\": \"staalsnipper\",\n  \"staalsoorten\": \"staalsoort\",\n  \"staalverwerkende\": \"staalverwerk\",\n  \"staalwalserij\": \"staalwalserij\",\n  \"staan\": \"stan\",\n  \"staand\": \"staand\",\n  \"staande\": \"staand\",\n  \"staar\": \"star\",\n  \"staarblik\": \"staarblik\",\n  \"staarde\": \"staard\",\n  \"staarden\": \"staard\",\n  \"staart\": \"staart\",\n  \"staartepunt\": \"staartepunt\",\n  \"staartpunt\": \"staartpunt\",\n  \"staat\": \"stat\",\n  \"staatje\": \"staatj\",\n  \"staatkundige\": \"staatkund\",\n  \"staatsbedrijf\": \"staatsbedrijf\",\n  \"staatsbedrijven\": \"staatsbedrijv\",\n  \"staatsbelang\": \"staatsbelang\",\n  \"staatsbezoek\": \"staatsbezoek\",\n  \"staatsblad\": \"staatsblad\",\n  \"staatsbos\": \"staatsbos\",\n  \"staatsbosbeheer\": \"staatsbosbeher\",\n  \"staatscourant\": \"staatscourant\",\n  \"staatsdeelnemingen\": \"staatsdeelnem\",\n  \"staatselektriciteitsbedrijf\": \"staatselektriciteitsbedrijf\",\n  \"staatsexamen\": \"staatsexam\",\n  \"staatsgelden\": \"staatsgeld\",\n  \"staatshoofden\": \"staatshoofd\",\n  \"staatskas\": \"staatskas\",\n  \"staatsman\": \"staatsman\",\n  \"staatsmannen\": \"staatsmann\",\n  \"staatsmijn\": \"staatsmijn\",\n  \"staatsnatuurmonument\": \"staatsnatuurmonument\",\n  \"staatsoliemaatschappij\": \"staatsoliemaatschappij\",\n  \"staatsrecht\": \"staatsrecht\",\n  \"staatssecretaris\": \"staatssecretaris\",\n  \"staatssteun\": \"staatssteun\",\n  \"staatssubsidie\": \"staatssubsidie\",\n  \"stabiel\": \"stabiel\",\n  \"stabiele\": \"stabiel\",\n  \"stabilisatie\": \"stabilisatie\",\n  \"stabilisatoren\": \"stabilisator\",\n  \"stabiliseert\": \"stabiliseert\",\n  \"stabiliseren\": \"stabiliser\",\n  \"stabilisering\": \"stabiliser\",\n  \"stabiliteit\": \"stabiliteit\",\n  \"stabu\": \"stabu\",\n  \"stad\": \"stad\",\n  \"stadhuis\": \"stadhuis\",\n  \"stadia\": \"stadia\",\n  \"stadig\": \"stadig\",\n  \"stadion\": \"stadion\",\n  \"stadium\": \"stadium\",\n  \"stadje\": \"stadj\",\n  \"stads\": \"stad\",\n  \"stadsbestuur\": \"stadsbestur\",\n  \"stadsbewoners\": \"stadsbewoner\",\n  \"stadsbussen\": \"stadsbuss\",\n  \"stadscentra\": \"stadscentra\",\n  \"stadsdeel\": \"stadsdel\",\n  \"stadsdeelbestuurders\": \"stadsdeelbestuurder\",\n  \"stadsdeelraad\": \"stadsdeelrad\",\n  \"stadsdelen\": \"stadsdel\",\n  \"stadsdistributiecentra\": \"stadsdistributiecentra\",\n  \"stadsdistributiecentrum\": \"stadsdistributiecentrum\",\n  \"stadsgas\": \"stadsgas\",\n  \"stadsgebieden\": \"stadsgebied\",\n  \"stadsgewest\": \"stadsgewest\",\n  \"stadsgezicht\": \"stadsgezicht\",\n  \"stadsgezichten\": \"stadsgezicht\",\n  \"stadslaboratorium\": \"stadslaboratorium\",\n  \"stadslandschappen\": \"stadslandschapp\",\n  \"stadslucht\": \"stadslucht\",\n  \"stadspark\": \"stadspark\",\n  \"stadspartij\": \"stadspartij\",\n  \"stadsrand\": \"stadsrand\",\n  \"stadsregio\": \"stadsregio\",\n  \"stadsreiniging\": \"stadsrein\",\n  \"stadsreinigingsdienst\": \"stadsreinigingsdienst\",\n  \"stadsschouwburg\": \"stadsschouwburg\",\n  \"stadstuin\": \"stadstuin\",\n  \"stadsuitbreiding\": \"stadsuitbreid\",\n  \"stadsuitleglocaties\": \"stadsuitleglocaties\",\n  \"stadsvernieuwing\": \"stadsvernieuw\",\n  \"stadsvervoer\": \"stadsvervoer\",\n  \"stadsverwarming\": \"stadsverwarm\",\n  \"stadsverwarmingscentrale\": \"stadsverwarmingscentral\",\n  \"stadsverwarmingsnetten\": \"stadsverwarmingsnet\",\n  \"stadsverwarmingsproject\": \"stadsverwarmingsproject\",\n  \"stadswarmte\": \"stadswarmt\",\n  \"stadswerk\": \"stadswerk\",\n  \"stadswijk\": \"stadswijk\",\n  \"städtische\": \"stadtisch\",\n  \"stadtwerke\": \"stadtwerk\",\n  \"staf\": \"staf\",\n  \"staffe\": \"staff\",\n  \"staffelaer\": \"staffelaer\",\n  \"staffelaers\": \"staffelaer\",\n  \"stafmedewerker\": \"stafmedewerker\",\n  \"stagnatie\": \"stagnatie\",\n  \"stagneert\": \"stagneert\",\n  \"stagneren\": \"stagner\",\n  \"staiger\": \"staiger\",\n  \"stainless\": \"stainles\",\n  \"stak\": \"stak\",\n  \"staken\": \"stak\",\n  \"staking\": \"staking\",\n  \"stakingswinst\": \"stakingswinst\",\n  \"stal\": \"stal\",\n  \"stalen\": \"stal\",\n  \"stall\": \"stall\",\n  \"stallen\": \"stall\",\n  \"stallucht\": \"stallucht\",\n  \"stalmest\": \"stalmest\",\n  \"stalsysteem\": \"stalsystem\",\n  \"stalsystemen\": \"stalsystem\",\n  \"staltijd\": \"staltijd\",\n  \"stam\": \"stam\",\n  \"stamelde\": \"stameld\",\n  \"stamelend\": \"stamel\",\n  \"stamelende\": \"stamel\",\n  \"stamgenoten\": \"stamgenot\",\n  \"stamhoofden\": \"stamhoofd\",\n  \"stamhouders\": \"stamhouder\",\n  \"stamhoudertjes\": \"stamhoudertjes\",\n  \"stammen\": \"stamm\",\n  \"stammende\": \"stammend\",\n  \"stamoudsten\": \"stamoudst\",\n  \"stampen\": \"stamp\",\n  \"stampende\": \"stampend\",\n  \"stampte\": \"stampt\",\n  \"stamrozen\": \"stamroz\",\n  \"stamt\": \"stamt\",\n  \"stan\": \"stan\",\n  \"stand\": \"stand\",\n  \"standaard\": \"standaard\",\n  \"standaardadvisering\": \"standaardadviser\",\n  \"standaardcomponenten\": \"standaardcomponent\",\n  \"standaardconstructie\": \"standaardconstructie\",\n  \"standaarden\": \"standaard\",\n  \"standaardgevallen\": \"standaardgevall\",\n  \"standaardisatie\": \"standaardisatie\",\n  \"standaardiseren\": \"standaardiser\",\n  \"standaardisering\": \"standaardiser\",\n  \"standaardkast\": \"standaardkast\",\n  \"standaardmaatregelenpakket\": \"standaardmaatregelenpakket\",\n  \"standaardpakket\": \"standaardpakket\",\n  \"standaardspectrum\": \"standaardspectrum\",\n  \"standaarduitvoering\": \"standaarduitvoer\",\n  \"standaardverpakking\": \"standaardverpak\",\n  \"standaardwoning\": \"standaardwon\",\n  \"standaardzonneboiler\": \"standaardzonneboiler\",\n  \"standardisation\": \"standardisation\",\n  \"standardization\": \"standardization\",\n  \"standards\": \"standard\",\n  \"standbeelden\": \"standbeeld\",\n  \"standplaatsen\": \"standplaats\",\n  \"standpunt\": \"standpunt\",\n  \"standpunten\": \"standpunt\",\n  \"stands\": \"stand\",\n  \"standsverschil\": \"standsverschil\",\n  \"standtijd\": \"standtijd\",\n  \"stank\": \"stank\",\n  \"stankbeleid\": \"stankbeleid\",\n  \"stankbestrijding\": \"stankbestrijd\",\n  \"stankbrief\": \"stankbrief\",\n  \"stankcirkels\": \"stankcirkel\",\n  \"stankhinder\": \"stankhinder\",\n  \"stankklachten\": \"stankklacht\",\n  \"stankmoleculen\": \"stankmolecul\",\n  \"stankoverlast\": \"stankoverlast\",\n  \"stankproblemen\": \"stankproblem\",\n  \"stankreductie\": \"stankreductie\",\n  \"stankverwijdering\": \"stankverwijder\",\n  \"stankvrij\": \"stankvrij\",\n  \"stanley\": \"stanley\",\n  \"stans\": \"stan\",\n  \"stansmachines\": \"stansmachines\",\n  \"stap\": \"stap\",\n  \"stapel\": \"stapel\",\n  \"stapelbare\": \"stapel\",\n  \"stapelde\": \"stapeld\",\n  \"stapelden\": \"stapeld\",\n  \"stapelend\": \"stapel\",\n  \"stapelgek\": \"stapelgek\",\n  \"stapeling\": \"stapel\",\n  \"stapelingen\": \"stapel\",\n  \"stapels\": \"stapel\",\n  \"stapelt\": \"stapelt\",\n  \"stappen\": \"stapp\",\n  \"stappenplan\": \"stappenplan\",\n  \"stappenschema\": \"stappenschema\",\n  \"stapsgewijs\": \"stapsgewijs\",\n  \"stapsgewijze\": \"stapsgewijz\",\n  \"stapsproces\": \"stapsproces\",\n  \"stapt\": \"stapt\",\n  \"stapte\": \"stapt\",\n  \"stapten\": \"stapt\",\n  \"stapvoets\": \"stapvoet\",\n  \"stapvoetse\": \"stapvoet\",\n  \"star\": \"star\",\n  \"stardrain\": \"stardrain\",\n  \"staren\": \"star\",\n  \"starend\": \"starend\",\n  \"starende\": \"starend\",\n  \"starends\": \"starend\",\n  \"starheid\": \"starheid\",\n  \"staring\": \"staring\",\n  \"staringcentrum\": \"staringcentrum\",\n  \"starke\": \"stark\",\n  \"starre\": \"starr\",\n  \"starrelen\": \"starrel\",\n  \"starrelingen\": \"starrel\",\n  \"starreluchten\": \"starrelucht\",\n  \"start\": \"start\",\n  \"startbaan\": \"startban\",\n  \"startbanen\": \"startban\",\n  \"startcapaciteit\": \"startcapaciteit\",\n  \"starten\": \"start\",\n  \"startende\": \"startend\",\n  \"starters\": \"starter\",\n  \"startersfonds\": \"startersfond\",\n  \"startkapitaal\": \"startkapital\",\n  \"startnota\": \"startnota\",\n  \"startnotitie\": \"startnotitie\",\n  \"startpunt\": \"startpunt\",\n  \"starts\": \"start\",\n  \"startsein\": \"startsein\",\n  \"startte\": \"start\",\n  \"startvermogen\": \"startvermog\",\n  \"state\": \"stat\",\n  \"statement\": \"statement\",\n  \"staten\": \"stat\",\n  \"statenfractie\": \"statenfractie\",\n  \"statenleden\": \"statenled\",\n  \"statenlid\": \"statenlid\",\n  \"statenpad\": \"statenpad\",\n  \"statens\": \"staten\",\n  \"states\": \"states\",\n  \"statiegeld\": \"statiegeld\",\n  \"statiegeldflessen\": \"statiegeldfless\",\n  \"statiegeldregelingen\": \"statiegeldregel\",\n  \"statiegeldsysteeem\": \"statiegeldsysteeem\",\n  \"statiegeldsysteem\": \"statiegeldsystem\",\n  \"station\": \"station\",\n  \"stationair\": \"stationair\",\n  \"stationaire\": \"stationair\",\n  \"stationeren\": \"stationer\",\n  \"stations\": \"station\",\n  \"statische\": \"statisch\",\n  \"statistiek\": \"statistiek\",\n  \"statistisch\": \"statistisch\",\n  \"statistische\": \"statistisch\",\n  \"statsnaett\": \"statsnaett\",\n  \"statsnett\": \"statsnett\",\n  \"statuette\": \"statuet\",\n  \"status\": \"status\",\n  \"statussymbool\": \"statussymbol\",\n  \"staudinger\": \"staudinger\",\n  \"staven\": \"stav\",\n  \"stavoren\": \"stavor\",\n  \"stawel\": \"stawel\",\n  \"stb\": \"stb\",\n  \"stcrt\": \"stcrt\",\n  \"ste\": \"ste\",\n  \"stedebouw\": \"stedebouw\",\n  \"stedebouwers\": \"stedebouwer\",\n  \"stedebouwkundig\": \"stedebouwkund\",\n  \"stedebouwkundige\": \"stedebouwkund\",\n  \"stedebouwkundigen\": \"stedebouwkund\",\n  \"stedelijk\": \"stedelijk\",\n  \"stedelijke\": \"stedelijk\",\n  \"stedelingen\": \"stedel\",\n  \"steden\": \"sted\",\n  \"stedenbeleid\": \"stedenbeleid\",\n  \"stedendriehoek\": \"stedendriehoek\",\n  \"stee\": \"stee\",\n  \"steeds\": \"sted\",\n  \"steeg\": \"steg\",\n  \"steek\": \"stek\",\n  \"steekpenningen\": \"steekpenn\",\n  \"steekproef\": \"steekproef\",\n  \"steekproefonderzoek\": \"steekproefonderzoek\",\n  \"steekproefsgewijs\": \"steekproefsgewijs\",\n  \"steekproeven\": \"steekproev\",\n  \"steekt\": \"steekt\",\n  \"steel\": \"stel\",\n  \"steelsgewijs\": \"steelsgewijs\",\n  \"steen\": \"sten\",\n  \"steenachtig\": \"steenacht\",\n  \"steenachtige\": \"steenacht\",\n  \"steenbergen\": \"steenberg\",\n  \"steenblokken\": \"steenblok\",\n  \"steenbrugge\": \"steenbrugg\",\n  \"steenderen\": \"steender\",\n  \"steendijkpolder\": \"steendijkpolder\",\n  \"steenenhoek\": \"steenenhoek\",\n  \"steenfabriek\": \"steenfabriek\",\n  \"steenfabrieken\": \"steenfabriek\",\n  \"steengaasstellers\": \"steengaassteller\",\n  \"steengroeve\": \"steengroev\",\n  \"steengroeven\": \"steengroev\",\n  \"steenhard\": \"steenhard\",\n  \"steenkolenmijn\": \"steenkolenmijn\",\n  \"steenkool\": \"steenkol\",\n  \"steenkoolbranden\": \"steenkoolbrand\",\n  \"steenkoolderivaten\": \"steenkoolderivat\",\n  \"steenkooleenheden\": \"steenkoolen\",\n  \"steenkoollagen\": \"steenkoollag\",\n  \"steenkoolreserves\": \"steenkoolreserves\",\n  \"steenkoolsoort\": \"steenkoolsoort\",\n  \"steenkoolteerdestillaat\": \"steenkoolteerdestillat\",\n  \"steenkoolteeroliedestilaat\": \"steenkoolteeroliedestilat\",\n  \"steenkoolteeroliedestillaat\": \"steenkoolteeroliedestillat\",\n  \"steenkoolwasserijen\": \"steenkoolwasserij\",\n  \"steenkorrel\": \"steenkorrel\",\n  \"steenlaag\": \"steenlag\",\n  \"steenmassa\": \"steenmassa\",\n  \"steenpuin\": \"steenpuin\",\n  \"steentje\": \"steentj\",\n  \"steenwol\": \"steenwol\",\n  \"steenwolafval\": \"steenwolafval\",\n  \"steenwolbroodjes\": \"steenwolbroodjes\",\n  \"steenwolfabrikant\": \"steenwolfabrikant\",\n  \"steenwolprodukten\": \"steenwolprodukt\",\n  \"steenwolresten\": \"steenwolrest\",\n  \"steenzout\": \"steenzout\",\n  \"steenzoutformaties\": \"steenzoutformaties\",\n  \"steering\": \"steering\",\n  \"stef\": \"stef\",\n  \"steg\": \"steg\",\n  \"stegeman\": \"stegeman\",\n  \"stegen\": \"steg\",\n  \"stegeren\": \"steger\",\n  \"steigerbekledingen\": \"steigerbekled\",\n  \"steigers\": \"steiger\",\n  \"steil\": \"steil\",\n  \"steile\": \"steil\",\n  \"stein\": \"stein\",\n  \"steinbeis\": \"steinbeis\",\n  \"stekel\": \"stekel\",\n  \"stekelenburg\": \"stekelenburg\",\n  \"stekelstaarten\": \"stekelstaart\",\n  \"steken\": \"stek\",\n  \"stekende\": \"stekend\",\n  \"stel\": \"stel\",\n  \"stelcon\": \"stelcon\",\n  \"stelde\": \"steld\",\n  \"stelden\": \"steld\",\n  \"stelen\": \"stel\",\n  \"stelende\": \"stelend\",\n  \"stellen\": \"stell\",\n  \"stellend\": \"stellend\",\n  \"stellig\": \"stellig\",\n  \"stelligste\": \"stelligst\",\n  \"stelling\": \"stelling\",\n  \"stellingen\": \"stelling\",\n  \"stellingname\": \"stellingnam\",\n  \"stelsel\": \"stelsel\",\n  \"stelselmatig\": \"stelselmat\",\n  \"stelselmatigs\": \"stelselmat\",\n  \"stelsels\": \"stelsel\",\n  \"stelt\": \"stelt\",\n  \"stem\": \"stem\",\n  \"stembuiging\": \"stembuig\",\n  \"stemde\": \"stemd\",\n  \"stemden\": \"stemd\",\n  \"stemlijst\": \"stemlijst\",\n  \"stemmen\": \"stemm\",\n  \"stemmenwinst\": \"stemmenwinst\",\n  \"stemmers\": \"stemmer\",\n  \"stemmetje\": \"stemmetj\",\n  \"stemmetjes\": \"stemmetjes\",\n  \"stemming\": \"stemming\",\n  \"stemmingen\": \"stemming\",\n  \"stempel\": \"stempel\",\n  \"stempeldurchdrückprüfung\": \"stempeldurchdruckprufung\",\n  \"stemrecht\": \"stemrecht\",\n  \"stemt\": \"stemt\",\n  \"stenen\": \"sten\",\n  \"stengelen\": \"stengel\",\n  \"stengels\": \"stengel\",\n  \"stenig\": \"stenig\",\n  \"stephanie\": \"stephanie\",\n  \"stephanopoulos\": \"stephanopoulos\",\n  \"steppe\": \"stepp\",\n  \"steppen\": \"stepp\",\n  \"ster\": \"ster\",\n  \"stereo\": \"stereo\",\n  \"sterf\": \"sterf\",\n  \"stèrf\": \"stèrf\",\n  \"sterfbed\": \"sterfbed\",\n  \"sterfgevallen\": \"sterfgevall\",\n  \"sterft\": \"sterft\",\n  \"sterfte\": \"sterft\",\n  \"sterftecijfers\": \"sterftecijfer\",\n  \"sterieler\": \"sterieler\",\n  \"steriliteit\": \"steriliteit\",\n  \"sterin\": \"sterin\",\n  \"sterk\": \"sterk\",\n  \"sterke\": \"sterk\",\n  \"sterkende\": \"sterkend\",\n  \"sterker\": \"sterker\",\n  \"sterkere\": \"sterker\",\n  \"sterkers\": \"sterker\",\n  \"sterksel\": \"sterksel\",\n  \"sterkst\": \"sterkst\",\n  \"sterkste\": \"sterkst\",\n  \"sterkte\": \"sterkt\",\n  \"sterkteklasse\": \"sterkteklas\",\n  \"sterlab\": \"sterlab\",\n  \"sterlabcertificaat\": \"sterlabcertificat\",\n  \"sterling\": \"sterling\",\n  \"sterren\": \"sterr\",\n  \"sterrenzeef\": \"sterrenzef\",\n  \"sterretje\": \"sterretj\",\n  \"sterrollen\": \"sterroll\",\n  \"sterven\": \"sterv\",\n  \"stervende\": \"stervend\",\n  \"stervensangst\": \"stervensangst\",\n  \"sterving\": \"sterving\",\n  \"stervingen\": \"sterving\",\n  \"steun\": \"steun\",\n  \"steunde\": \"steund\",\n  \"steunden\": \"steund\",\n  \"steunen\": \"steun\",\n  \"steunpunt\": \"steunpunt\",\n  \"steunpunten\": \"steunpunt\",\n  \"steunt\": \"steunt\",\n  \"steur\": \"steur\",\n  \"stevaert\": \"stevaert\",\n  \"steve\": \"stev\",\n  \"stevensweert\": \"stevensweert\",\n  \"stevent\": \"stevent\",\n  \"stevig\": \"stevig\",\n  \"stevige\": \"stevig\",\n  \"steviger\": \"steviger\",\n  \"stevigheid\": \"stevig\",\n  \"stevigs\": \"stevig\",\n  \"stevigste\": \"stevigst\",\n  \"stevin\": \"stevin\",\n  \"stewardship\": \"stewardship\",\n  \"steyn\": \"steyn\",\n  \"steyns\": \"steyn\",\n  \"stg\": \"stg\",\n  \"sti\": \"sti\",\n  \"stiba\": \"stiba\",\n  \"stibat\": \"stibat\",\n  \"sticht\": \"sticht\",\n  \"stichten\": \"sticht\",\n  \"stichting\": \"stichting\",\n  \"stichtse\": \"sticht\",\n  \"sticker\": \"sticker\",\n  \"stickers\": \"sticker\",\n  \"stickertje\": \"stickertj\",\n  \"stiebel\": \"stiebel\",\n  \"stiefdochter\": \"stiefdochter\",\n  \"stiefvaderlijke\": \"stiefvader\",\n  \"stienstra\": \"stienstra\",\n  \"stier\": \"stier\",\n  \"stieren\": \"stier\",\n  \"stierenhouderij\": \"stierenhouderij\",\n  \"stierenvlees\": \"stierenvles\",\n  \"stierf\": \"stierf\",\n  \"stierven\": \"stierv\",\n  \"stiet\": \"stiet\",\n  \"stifoxydes\": \"stifoxydes\",\n  \"stijf\": \"stijf\",\n  \"stijfheid\": \"stijfheid\",\n  \"stijfjes\": \"stijfjes\",\n  \"stijfrechte\": \"stijfrecht\",\n  \"stijfsel\": \"stijfsel\",\n  \"stijgen\": \"stijg\",\n  \"stijgend\": \"stijgend\",\n  \"stijgende\": \"stijgend\",\n  \"stijghoogten\": \"stijghoogt\",\n  \"stijging\": \"stijging\",\n  \"stijgpijp\": \"stijgpijp\",\n  \"stijgt\": \"stijgt\",\n  \"stijgzifter\": \"stijgzifter\",\n  \"stijl\": \"stijl\",\n  \"stijlvolle\": \"stijlvoll\",\n  \"stijve\": \"stijv\",\n  \"stik\": \"stik\",\n  \"stikdonkere\": \"stikdonker\",\n  \"stikken\": \"stik\",\n  \"stikkend\": \"stikkend\",\n  \"stikkende\": \"stikkend\",\n  \"stiklachte\": \"stiklacht\",\n  \"stikstof\": \"stikstof\",\n  \"stikstofarme\": \"stikstofarm\",\n  \"stikstofbemestingsadvies\": \"stikstofbemestingsadvies\",\n  \"stikstofbevattende\": \"stikstofbevat\",\n  \"stikstofconcentratie\": \"stikstofconcentratie\",\n  \"stikstofconcentraties\": \"stikstofconcentraties\",\n  \"stikstofdeeltjes\": \"stikstofdeeltjes\",\n  \"stikstofdepositie\": \"stikstofdepositie\",\n  \"stikstofdioxyde\": \"stikstofdioxyd\",\n  \"stikstofdioxyden\": \"stikstofdioxyd\",\n  \"stikstofemissie\": \"stikstofemissie\",\n  \"stikstofemissies\": \"stikstofemissies\",\n  \"stikstofgas\": \"stikstofgas\",\n  \"stikstofgebruik\": \"stikstofgebruik\",\n  \"stikstofgehalte\": \"stikstofgehalt\",\n  \"stikstofgehalten\": \"stikstofgehalt\",\n  \"stikstofgehaltes\": \"stikstofgehaltes\",\n  \"stikstofgift\": \"stikstofgift\",\n  \"stikstofheffing\": \"stikstofheff\",\n  \"stikstofheffingen\": \"stikstofheff\",\n  \"stikstofkunstmest\": \"stikstofkunstmest\",\n  \"stikstofmonoxide\": \"stikstofmonoxid\",\n  \"stikstofmonoxyde\": \"stikstofmonoxyd\",\n  \"stikstofneerslag\": \"stikstofneerslag\",\n  \"stikstofnorm\": \"stikstofnorm\",\n  \"stikstofnormen\": \"stikstofnorm\",\n  \"stikstofoverschot\": \"stikstofoverschot\",\n  \"stikstofoxiden\": \"stikstofoxid\",\n  \"stikstofoxyde\": \"stikstofoxyd\",\n  \"stikstofoxyden\": \"stikstofoxyd\",\n  \"stikstofoxydereductie\": \"stikstofoxydereductie\",\n  \"stikstofoxydes\": \"stikstofoxydes\",\n  \"stikstofproduktie\": \"stikstofproduktie\",\n  \"stikstofreductie\": \"stikstofreductie\",\n  \"stikstofrijke\": \"stikstofrijk\",\n  \"stikstofuitscheiding\": \"stikstofuitscheid\",\n  \"stikstofuitstoot\": \"stikstofuitstot\",\n  \"stikstofverbindingen\": \"stikstofverbind\",\n  \"stikstofverlies\": \"stikstofverlies\",\n  \"stikstofverliezen\": \"stikstofverliez\",\n  \"stikstofverontreiniging\": \"stikstofverontrein\",\n  \"stikstofverwijdering\": \"stikstofverwijder\",\n  \"stikt\": \"stikt\",\n  \"stikte\": \"stikt\",\n  \"stikten\": \"stikt\",\n  \"stil\": \"stil\",\n  \"stilde\": \"stild\",\n  \"stilden\": \"stild\",\n  \"stilgelegd\": \"stilgelegd\",\n  \"stilgestaan\": \"stilgestan\",\n  \"still\": \"still\",\n  \"stille\": \"still\",\n  \"stilleggen\": \"stillegg\",\n  \"stillegging\": \"stillegg\",\n  \"stillen\": \"still\",\n  \"stiller\": \"stiller\",\n  \"stilletjes\": \"stilletjes\",\n  \"stillige\": \"stillig\",\n  \"stilstaan\": \"stilstan\",\n  \"stilstaande\": \"stilstaand\",\n  \"stilstand\": \"stilstand\",\n  \"stilt\": \"stilt\",\n  \"stilte\": \"stilt\",\n  \"stiltegebieden\": \"stiltegebied\",\n  \"stilvallen\": \"stilvall\",\n  \"stilzwijgen\": \"stilzwijg\",\n  \"stilzwijgend\": \"stilzwijg\",\n  \"stilzwijgende\": \"stilzwijg\",\n  \"stilzwijgendheid\": \"stilzwijg\",\n  \"stimad\": \"stimad\",\n  \"stimaruba\": \"stimaruba\",\n  \"stimev\": \"stimev\",\n  \"stimulans\": \"stimulan\",\n  \"stimulansen\": \"stimulans\",\n  \"stimuleer\": \"stimuler\",\n  \"stimuleert\": \"stimuleert\",\n  \"stimuleren\": \"stimuler\",\n  \"stimulerend\": \"stimuler\",\n  \"stimulerende\": \"stimuler\",\n  \"stimulering\": \"stimuler\",\n  \"stimuleringregeling\": \"stimuleringregel\",\n  \"stimulerings\": \"stimuler\",\n  \"stimuleringsactiviteiten\": \"stimuleringsactiviteit\",\n  \"stimuleringseffect\": \"stimuleringseffect\",\n  \"stimuleringsfondsen\": \"stimuleringsfonds\",\n  \"stimuleringsmaatregelen\": \"stimuleringsmaatregel\",\n  \"stimuleringsprojecten\": \"stimuleringsproject\",\n  \"stimuleringsregeling\": \"stimuleringsregel\",\n  \"stimuleringsregelingen\": \"stimuleringsregel\",\n  \"stimuli\": \"stimuli\",\n  \"stinkende\": \"stinkend\",\n  \"stinkt\": \"stinkt\",\n  \"stirred\": \"stirred\",\n  \"stive\": \"stiv\",\n  \"stock\": \"stock\",\n  \"stockholm\": \"stockholm\",\n  \"stockholmse\": \"stockholm\",\n  \"stoeiend\": \"stoeiend\",\n  \"stoel\": \"stoel\",\n  \"stoelen\": \"stoel\",\n  \"stoep\": \"stoep\",\n  \"stoer\": \"stoer\",\n  \"stoere\": \"stoer\",\n  \"stoet\": \"stoet\",\n  \"stof\": \"stof\",\n  \"stofabsorptiekolom\": \"stofabsorptiekolom\",\n  \"stofbestrijdings\": \"stofbestrijd\",\n  \"stofbestrijdingssystemen\": \"stofbestrijdingssystem\",\n  \"stofbestrijdingstechnieken\": \"stofbestrijdingstechniek\",\n  \"stofdeeltjes\": \"stofdeeltjes\",\n  \"stofdichte\": \"stofdicht\",\n  \"stofemissie\": \"stofemissie\",\n  \"stofexplosies\": \"stofexplosies\",\n  \"stoffen\": \"stoff\",\n  \"stoffenbalans\": \"stoffenbalan\",\n  \"stoffenbeleid\": \"stoffenbeleid\",\n  \"stoffenrichtlijn\": \"stoffenrichtlijn\",\n  \"stoffig\": \"stoffig\",\n  \"stoffige\": \"stoffig\",\n  \"stofgehalte\": \"stofgehalt\",\n  \"stofgoud\": \"stofgoud\",\n  \"stofgroep\": \"stofgroep\",\n  \"stofgroepen\": \"stofgroep\",\n  \"stofje\": \"stofj\",\n  \"stofkeringssysteem\": \"stofkeringssystem\",\n  \"stofkringloop\": \"stofkringlop\",\n  \"stofmonitoring\": \"stofmonitor\",\n  \"stofneerslag\": \"stofneerslag\",\n  \"stofopbouw\": \"stofopbouw\",\n  \"stofoverlast\": \"stofoverlast\",\n  \"stofpercentage\": \"stofpercentag\",\n  \"stofstudie\": \"stofstudie\",\n  \"stofstudies\": \"stofstudies\",\n  \"stofte\": \"stoft\",\n  \"stofvang\": \"stofvang\",\n  \"stofverzamelsysteem\": \"stofverzamelsystem\",\n  \"stofvrij\": \"stofvrij\",\n  \"stofvrijhouden\": \"stofvrijhoud\",\n  \"stofwisseling\": \"stofwissel\",\n  \"stofwolkverbranding\": \"stofwolkverbrand\",\n  \"stofwolkvergassing\": \"stofwolkvergass\",\n  \"stok\": \"stok\",\n  \"stoken\": \"stok\",\n  \"stoker\": \"stoker\",\n  \"stokje\": \"stokj\",\n  \"stokken\": \"stok\",\n  \"stokoude\": \"stokoud\",\n  \"stokpaardje\": \"stokpaardj\",\n  \"stokstijf\": \"stokstijf\",\n  \"stokte\": \"stokt\",\n  \"stolde\": \"stold\",\n  \"stolling\": \"stolling\",\n  \"stolp\": \"stolp\",\n  \"stolwijk\": \"stolwijk\",\n  \"stom\": \"stom\",\n  \"stòm\": \"stòm\",\n  \"stomen\": \"stom\",\n  \"stomme\": \"stomm\",\n  \"stommelde\": \"stommeld\",\n  \"stommelen\": \"stommel\",\n  \"stommeling\": \"stommel\",\n  \"stomp\": \"stomp\",\n  \"stompt\": \"stompt\",\n  \"stompte\": \"stompt\",\n  \"stond\": \"stond\",\n  \"stonden\": \"stond\",\n  \"stonken\": \"stonk\",\n  \"stoof\": \"stof\",\n  \"stoofde\": \"stoofd\",\n  \"stook\": \"stok\",\n  \"stookgas\": \"stookgas\",\n  \"stookgasreiniging\": \"stookgasrein\",\n  \"stookgedrag\": \"stookgedrag\",\n  \"stookinstallaties\": \"stookinstallaties\",\n  \"stookkar\": \"stookkar\",\n  \"stookkosten\": \"stookkost\",\n  \"stookolie\": \"stookolie\",\n  \"stookrendement\": \"stookrendement\",\n  \"stookt\": \"stookt\",\n  \"stookte\": \"stookt\",\n  \"stookten\": \"stookt\",\n  \"stoom\": \"stom\",\n  \"stoomden\": \"stoomd\",\n  \"stoominstallaties\": \"stoominstallaties\",\n  \"stoomketel\": \"stoomketel\",\n  \"stoomketels\": \"stoomketel\",\n  \"stoomleidingen\": \"stoomleid\",\n  \"stoomsysteem\": \"stoomsystem\",\n  \"stoomtemperatuur\": \"stoomtemperatur\",\n  \"stoomtram\": \"stoomtram\",\n  \"stoomturbine\": \"stoomturbin\",\n  \"stoomverbruikers\": \"stoomverbruiker\",\n  \"stoomvorming\": \"stoomvorm\",\n  \"stoor\": \"stor\",\n  \"stóor\": \"stor\",\n  \"stoort\": \"stoort\",\n  \"stoot\": \"stot\",\n  \"stootje\": \"stootj\",\n  \"stootrand\": \"stootrand\",\n  \"stootte\": \"stot\",\n  \"stootten\": \"stot\",\n  \"stootverliezen\": \"stootverliez\",\n  \"stop\": \"stop\",\n  \"stopcontact\": \"stopcontact\",\n  \"stopgezet\": \"stopgezet\",\n  \"stoppelde\": \"stoppeld\",\n  \"stoppen\": \"stopp\",\n  \"stopt\": \"stopt\",\n  \"stopte\": \"stopt\",\n  \"stopverdrag\": \"stopverdrag\",\n  \"stopzetten\": \"stopzet\",\n  \"stopzetting\": \"stopzet\",\n  \"storage\": \"storag\",\n  \"storebrand\": \"storebrand\",\n  \"storen\": \"stor\",\n  \"storende\": \"storend\",\n  \"stores\": \"stores\",\n  \"storing\": \"storing\",\n  \"storingen\": \"storing\",\n  \"storingsoorzaken\": \"storingsoorzak\",\n  \"storingsvrij\": \"storingsvrij\",\n  \"stork\": \"stork\",\n  \"storm\": \"storm\",\n  \"stormachtige\": \"stormacht\",\n  \"stormbestendig\": \"stormbestend\",\n  \"stormdagen\": \"stormdag\",\n  \"stormde\": \"stormd\",\n  \"stormdeiningen\": \"stormdein\",\n  \"stormen\": \"storm\",\n  \"stormende\": \"stormend\",\n  \"stormink\": \"stormink\",\n  \"stormt\": \"stormt\",\n  \"stormvlaag\": \"stormvlag\",\n  \"stormvlagen\": \"stormvlag\",\n  \"stormvloeden\": \"stormvloed\",\n  \"stormvloedkering\": \"stormvloedker\",\n  \"stormvogels\": \"stormvogel\",\n  \"stormwind\": \"stormwind\",\n  \"stormzee\": \"stormzee\",\n  \"stort\": \"stort\",\n  \"stortafval\": \"stortafval\",\n  \"stortbaar\": \"stortbar\",\n  \"stortbeleid\": \"stortbeleid\",\n  \"stortbesluit\": \"stortbesluit\",\n  \"stortbuien\": \"stortbui\",\n  \"stortcapaciteit\": \"stortcapaciteit\",\n  \"storten\": \"stort\",\n  \"stortende\": \"stortend\",\n  \"stortgas\": \"stortgas\",\n  \"stortgascentra\": \"stortgascentra\",\n  \"stortgasinfo\": \"stortgasinfo\",\n  \"stortgasinstallaties\": \"stortgasinstallaties\",\n  \"stortgasmonsters\": \"stortgasmonster\",\n  \"stortgasproduktie\": \"stortgasproduktie\",\n  \"stortgasprojecten\": \"stortgasproject\",\n  \"stortgaswinning\": \"stortgaswinn\",\n  \"stortgelden\": \"stortgeld\",\n  \"stortgewichten\": \"stortgewicht\",\n  \"stortheffing\": \"stortheff\",\n  \"storting\": \"storting\",\n  \"stortingen\": \"storting\",\n  \"stortinrichtingen\": \"stortinricht\",\n  \"stortkosten\": \"stortkost\",\n  \"stortlichaam\": \"stortlicham\",\n  \"stortlocaties\": \"stortlocaties\",\n  \"stortplaats\": \"stortplat\",\n  \"stortplaatsen\": \"stortplaats\",\n  \"stortplaatsexploitanten\": \"stortplaatsexploitant\",\n  \"stortplaatsgebonden\": \"stortplaatsgebond\",\n  \"stortput\": \"stortput\",\n  \"stortregen\": \"stortreg\",\n  \"stortregende\": \"stortreg\",\n  \"stortsteen\": \"stortsten\",\n  \"storttarief\": \"storttarief\",\n  \"storttarieven\": \"storttariev\",\n  \"stortte\": \"stort\",\n  \"storttechniek\": \"storttechniek\",\n  \"stortten\": \"stort\",\n  \"stortverbod\": \"stortverbod\",\n  \"stortverboden\": \"stortverbod\",\n  \"stortvloed\": \"stortvloed\",\n  \"stortvloeden\": \"stortvloed\",\n  \"stortvolume\": \"stortvolum\",\n  \"stortvoorschriften\": \"stortvoorschrift\",\n  \"stortwet\": \"stortwet\",\n  \"stoten\": \"stot\",\n  \"stotend\": \"stotend\",\n  \"stotende\": \"stotend\",\n  \"stotterde\": \"stotterd\",\n  \"stotteren\": \"stotter\",\n  \"stotterend\": \"stotter\",\n  \"stout\": \"stout\",\n  \"stoute\": \"stout\",\n  \"stoven\": \"stov\",\n  \"straal\": \"stral\",\n  \"straalbreken\": \"straalbrek\",\n  \"straalbrekende\": \"straalbrek\",\n  \"straalde\": \"straald\",\n  \"straalden\": \"straald\",\n  \"straalgrit\": \"straalgrit\",\n  \"straalmotoren\": \"straalmotor\",\n  \"straalnet\": \"straalnet\",\n  \"straalt\": \"straalt\",\n  \"straat\": \"strat\",\n  \"straatbeeld\": \"straatbeeld\",\n  \"straaten\": \"strat\",\n  \"straathandelaren\": \"straathandelar\",\n  \"straatje\": \"straatj\",\n  \"straatjongen\": \"straatjong\",\n  \"straatkeien\": \"straatkei\",\n  \"straatklinkers\": \"straatklinker\",\n  \"straatlaag\": \"straatlag\",\n  \"straatlantaarns\": \"straatlantaarn\",\n  \"straatplassen\": \"straatplass\",\n  \"straatsburg\": \"straatsburg\",\n  \"straatsteen\": \"straatsten\",\n  \"straatstenen\": \"straatsten\",\n  \"straattaal\": \"straattal\",\n  \"straattoilet\": \"straattoilet\",\n  \"straatvegers\": \"straatveger\",\n  \"straf\": \"straf\",\n  \"strafbaar\": \"strafbar\",\n  \"strafbare\": \"strafbar\",\n  \"strafbepaling\": \"strafbepal\",\n  \"strafcommissie\": \"strafcommissie\",\n  \"straffe\": \"straff\",\n  \"straffeloos\": \"straffelos\",\n  \"straffen\": \"straff\",\n  \"strafheffing\": \"strafheff\",\n  \"strafheffingen\": \"strafheff\",\n  \"strafrecht\": \"strafrecht\",\n  \"strafrechtelijk\": \"strafrecht\",\n  \"strafrechtelijke\": \"strafrecht\",\n  \"strafrechtelike\": \"strafrechtelik\",\n  \"strafrechter\": \"strafrechter\",\n  \"straft\": \"straft\",\n  \"strafuitsluitingsgronden\": \"strafuitsluitingsgrond\",\n  \"strafzaak\": \"strafzak\",\n  \"straight\": \"straight\",\n  \"strain\": \"strain\",\n  \"strak\": \"strak\",\n  \"strakheid\": \"strakheid\",\n  \"strakke\": \"strak\",\n  \"strakker\": \"strakker\",\n  \"straks\": \"strak\",\n  \"stralen\": \"stral\",\n  \"stralenbescherming\": \"stralenbescherm\",\n  \"stralenbeschermingsrecht\": \"stralenbeschermingsrecht\",\n  \"stralend\": \"stralend\",\n  \"stralende\": \"stralend\",\n  \"straling\": \"straling\",\n  \"stralingbescherming\": \"stralingbescherm\",\n  \"stralingen\": \"straling\",\n  \"stralingsdivisie\": \"stralingsdivisie\",\n  \"stralingsmeetnetten\": \"stralingsmeetnet\",\n  \"stralingsnormen\": \"stralingsnorm\",\n  \"stralingsrisico\": \"stralingsrisico\",\n  \"stram\": \"stram\",\n  \"stramproy\": \"stramproy\",\n  \"strand\": \"strand\",\n  \"stranden\": \"strand\",\n  \"strandingen\": \"stranding\",\n  \"strategic\": \"strategic\",\n  \"strategie\": \"strategie\",\n  \"strategiedocument\": \"strategiedocument\",\n  \"strategieën\": \"strategieen\",\n  \"strategies\": \"strategies\",\n  \"strategieschets\": \"strategieschet\",\n  \"strategisch\": \"strategisch\",\n  \"strategische\": \"strategisch\",\n  \"strategy\": \"strategy\",\n  \"stratem\": \"stratem\",\n  \"straten\": \"strat\",\n  \"stratosfeer\": \"stratosfer\",\n  \"stratosferische\": \"stratosferisch\",\n  \"stream\": \"stream\",\n  \"streden\": \"stred\",\n  \"streed\": \"stred\",\n  \"streefbeelden\": \"streefbeeld\",\n  \"streefcijfer\": \"streefcijfer\",\n  \"streefcijfers\": \"streefcijfer\",\n  \"streefdatum\": \"streefdatum\",\n  \"streefde\": \"streefd\",\n  \"streefden\": \"streefd\",\n  \"streefgetal\": \"streefgetal\",\n  \"streefkerk\": \"streefkerk\",\n  \"streefnormen\": \"streefnorm\",\n  \"streeft\": \"streeft\",\n  \"streefwaarde\": \"streefwaard\",\n  \"streefwaarden\": \"streefwaard\",\n  \"streek\": \"strek\",\n  \"streekgewest\": \"streekgewest\",\n  \"streekplan\": \"streekplan\",\n  \"streekplanherziening\": \"streekplanherzien\",\n  \"streekplannen\": \"streekplann\",\n  \"streekvervoer\": \"streekvervoer\",\n  \"streelde\": \"streeld\",\n  \"streelden\": \"streeld\",\n  \"streep\": \"strep\",\n  \"streepje\": \"streepj\",\n  \"streepjes\": \"streepjes\",\n  \"strekdam\": \"strekdam\",\n  \"streken\": \"strek\",\n  \"strekken\": \"strek\",\n  \"strekkende\": \"strekkend\",\n  \"strekking\": \"strekking\",\n  \"strekkingen\": \"strekking\",\n  \"strekt\": \"strekt\",\n  \"strekte\": \"strekt\",\n  \"strelen\": \"strel\",\n  \"strelend\": \"strelend\",\n  \"strelende\": \"strelend\",\n  \"streling\": \"streling\",\n  \"stremmen\": \"stremm\",\n  \"stremming\": \"stremming\",\n  \"streng\": \"streng\",\n  \"strenge\": \"streng\",\n  \"strenger\": \"strenger\",\n  \"strengere\": \"strenger\",\n  \"strengste\": \"strengst\",\n  \"strepen\": \"strep\",\n  \"strepende\": \"strepend\",\n  \"stress\": \"stres\",\n  \"stressverschijnselen\": \"stressverschijnsel\",\n  \"stretchfolie\": \"stretchfolie\",\n  \"streven\": \"strev\",\n  \"streving\": \"streving\",\n  \"stribbelde\": \"stribbeld\",\n  \"striemen\": \"striem\",\n  \"striemt\": \"striemt\",\n  \"strijd\": \"strijd\",\n  \"strijdbare\": \"strijdbar\",\n  \"strijden\": \"strijd\",\n  \"strijdende\": \"strijdend\",\n  \"strijdig\": \"strijdig\",\n  \"strijdigheid\": \"strijdig\",\n  \"strijdkrachten\": \"strijdkracht\",\n  \"strijdlust\": \"strijdlust\",\n  \"strijdperk\": \"strijdperk\",\n  \"strijdpunt\": \"strijdpunt\",\n  \"strijdster\": \"strijdster\",\n  \"strijdt\": \"strijdt\",\n  \"strijken\": \"strijk\",\n  \"strijkende\": \"strijkend\",\n  \"strijker\": \"strijker\",\n  \"strikjes\": \"strikjes\",\n  \"strikken\": \"strik\",\n  \"strikt\": \"strikt\",\n  \"strikte\": \"strikt\",\n  \"strikter\": \"strikter\",\n  \"striktere\": \"strikter\",\n  \"stringent\": \"stringent\",\n  \"stringente\": \"stringent\",\n  \"stringenter\": \"stringenter\",\n  \"stringentere\": \"stringenter\",\n  \"strip\": \"strip\",\n  \"strippen\": \"stripp\",\n  \"stripping\": \"stripping\",\n  \"strips\": \"strip\",\n  \"stripverhaal\": \"stripverhal\",\n  \"stro\": \"stro\",\n  \"stroef\": \"stroef\",\n  \"stroeve\": \"stroev\",\n  \"strofilter\": \"strofilter\",\n  \"strofilterinstallatie\": \"strofilterinstallatie\",\n  \"strohoed\": \"strohoed\",\n  \"strohoeden\": \"strohoed\",\n  \"stroken\": \"strok\",\n  \"strolaag\": \"strolag\",\n  \"stromeinspeisung\": \"stromeinspeisung\",\n  \"stromen\": \"strom\",\n  \"stromende\": \"stromend\",\n  \"stroming\": \"stroming\",\n  \"stromingen\": \"stroming\",\n  \"stromings\": \"stroming\",\n  \"stromingsdynamica\": \"stromingsdynamica\",\n  \"stromingseigenschappen\": \"stromingseigenschapp\",\n  \"stromingsenergie\": \"stromingsenergie\",\n  \"stromingsmetingen\": \"stromingsmet\",\n  \"strompelde\": \"strompeld\",\n  \"strompelden\": \"strompeld\",\n  \"strompelen\": \"strompel\",\n  \"strompelend\": \"strompel\",\n  \"strontium\": \"strontium\",\n  \"strooi\": \"strooi\",\n  \"strooiapparatuur\": \"strooiapparatur\",\n  \"strooibaar\": \"strooibar\",\n  \"strooibeleid\": \"strooibeleid\",\n  \"strooibreedte\": \"strooibreedt\",\n  \"strooiden\": \"strooid\",\n  \"strooien\": \"strooi\",\n  \"strooier\": \"strooier\",\n  \"strooigegevens\": \"strooigegeven\",\n  \"strooimachines\": \"strooimachines\",\n  \"strooimateriaal\": \"strooimateriaal\",\n  \"strooiopdracht\": \"strooiopdracht\",\n  \"strooiparelen\": \"strooiparel\",\n  \"strooiplaat\": \"strooiplat\",\n  \"strooiroute\": \"strooirout\",\n  \"strooit\": \"strooit\",\n  \"strooivlakken\": \"strooivlak\",\n  \"strooiwagen\": \"strooiwag\",\n  \"strooiwagens\": \"strooiwagen\",\n  \"strooizout\": \"strooizout\",\n  \"strook\": \"strok\",\n  \"strookt\": \"strookt\",\n  \"stroom\": \"strom\",\n  \"stroomafwaarts\": \"stroomafwaart\",\n  \"stroombedrijven\": \"stroombedrijv\",\n  \"stroombesparende\": \"stroombespar\",\n  \"stroomdal\": \"stroomdal\",\n  \"stroomde\": \"stroomd\",\n  \"stroomdiagrammen\": \"stroomdiagramm\",\n  \"stroomgebied\": \"stroomgebied\",\n  \"stroomgebieden\": \"stroomgebied\",\n  \"stroomlijnen\": \"stroomlijn\",\n  \"stroomlijning\": \"stroomlijn\",\n  \"stroomopbrengst\": \"stroomopbrengst\",\n  \"stroomopwaarts\": \"stroomopwaart\",\n  \"stroomopwekking\": \"stroomopwek\",\n  \"stroomprijs\": \"stroomprijs\",\n  \"stroomproducent\": \"stroomproducent\",\n  \"stroomproducenten\": \"stroomproducent\",\n  \"stroomproduktiebedrijven\": \"stroomproduktiebedrijv\",\n  \"stroomschema\": \"stroomschema\",\n  \"stroomsector\": \"stroomsector\",\n  \"stroomsnelheden\": \"stroomsnel\",\n  \"stroomsnelheid\": \"stroomsnel\",\n  \"stroomsterkte\": \"stroomsterkt\",\n  \"stroomt\": \"stroomt\",\n  \"stroomtarief\": \"stroomtarief\",\n  \"stroomtarieven\": \"stroomtariev\",\n  \"stroomverbruik\": \"stroomverbruik\",\n  \"stroomverbruikers\": \"stroomverbruiker\",\n  \"stroomversnelling\": \"stroomversnell\",\n  \"stroomverzorging\": \"stroomverzorg\",\n  \"stroomvoerend\": \"stroomvoer\",\n  \"stroomvoorziening\": \"stroomvoorzien\",\n  \"stroomvoorzieningssysteem\": \"stroomvoorzieningssystem\",\n  \"stroomvreters\": \"stroomvreter\",\n  \"stroomwerk\": \"stroomwerk\",\n  \"stroomwonden\": \"stroomwond\",\n  \"stropellets\": \"stropellet\",\n  \"stroperij\": \"stroperij\",\n  \"stropers\": \"stroper\",\n  \"strozak\": \"strozak\",\n  \"strubbelingen\": \"strubbel\",\n  \"structureel\": \"structurel\",\n  \"structureert\": \"structureert\",\n  \"structurele\": \"structurel\",\n  \"structuren\": \"structur\",\n  \"structureren\": \"structurer\",\n  \"structurerende\": \"structurer\",\n  \"structures\": \"structures\",\n  \"structuur\": \"structur\",\n  \"structuurfondsen\": \"structuurfonds\",\n  \"structuurmateriaal\": \"structuurmateriaal\",\n  \"structuurplan\": \"structuurplan\",\n  \"structuurschema\": \"structuurschema\",\n  \"structuurschets\": \"structuurschet\",\n  \"structuurschetsen\": \"structuurschets\",\n  \"structuurvennootschap\": \"structuurvennootschap\",\n  \"structuurverandering\": \"structuurverander\",\n  \"structuurverbetering\": \"structuurverbeter\",\n  \"structuurversterking\": \"structuurversterk\",\n  \"structuurvisie\": \"structuurvisie\",\n  \"struikelblok\": \"struikelblok\",\n  \"struikelblokken\": \"struikelblok\",\n  \"struikelde\": \"struikeld\",\n  \"struikelend\": \"struikel\",\n  \"struiken\": \"struik\",\n  \"struisveren\": \"struisver\",\n  \"struisvogelfokkerij\": \"struisvogelfokkerij\",\n  \"sts\": \"sts\",\n  \"stuart\": \"stuart\",\n  \"stubbing\": \"stubbing\",\n  \"studdrain\": \"studdrain\",\n  \"studeerde\": \"studeerd\",\n  \"studeerkamer\": \"studeerkamer\",\n  \"studeert\": \"studeert\",\n  \"student\": \"student\",\n  \"studenten\": \"student\",\n  \"studentenflats\": \"studentenflat\",\n  \"studentenkorting\": \"studentenkort\",\n  \"studentikoos\": \"studentikos\",\n  \"studentikoze\": \"studentikoz\",\n  \"students\": \"student\",\n  \"studeren\": \"studer\",\n  \"studerend\": \"studer\",\n  \"studerende\": \"studer\",\n  \"studie\": \"studie\",\n  \"studiebijeenkomst\": \"studiebijeenkomst\",\n  \"studiecentrum\": \"studiecentrum\",\n  \"studieclub\": \"studieclub\",\n  \"studieclubs\": \"studieclub\",\n  \"studieconferentie\": \"studieconferentie\",\n  \"studiedag\": \"studiedag\",\n  \"studiegenoot\": \"studiegenot\",\n  \"studiegroep\": \"studiegroep\",\n  \"studiegroepen\": \"studiegroep\",\n  \"studiekameraad\": \"studiekamerad\",\n  \"studiekosten\": \"studiekost\",\n  \"studiekracht\": \"studiekracht\",\n  \"studiemiddag\": \"studiemiddag\",\n  \"studiemorgen\": \"studiemorg\",\n  \"studiën\": \"studien\",\n  \"studieopdracht\": \"studieopdracht\",\n  \"studiepocket\": \"studiepocket\",\n  \"studieprogramma\": \"studieprogramma\",\n  \"studies\": \"studies\",\n  \"studievereniging\": \"studieveren\",\n  \"studievrienden\": \"studievri\",\n  \"studio\": \"studio\",\n  \"study\": \"study\",\n  \"stug\": \"stug\",\n  \"stuifbeleid\": \"stuifbeleid\",\n  \"stuifbestrijder\": \"stuifbestrijder\",\n  \"stuifbestrijding\": \"stuifbestrijd\",\n  \"stuikten\": \"stuikt\",\n  \"stuipen\": \"stuip\",\n  \"stuit\": \"stuit\",\n  \"stuiten\": \"stuit\",\n  \"stuiteren\": \"stuiter\",\n  \"stuitte\": \"stuit\",\n  \"stuivend\": \"stuivend\",\n  \"stuk\": \"stuk\",\n  \"stukadoors\": \"stukador\",\n  \"stukbeleid\": \"stukbeleid\",\n  \"stukje\": \"stukj\",\n  \"stukjes\": \"stukjes\",\n  \"stukken\": \"stuk\",\n  \"stukproject\": \"stukproject\",\n  \"stuks\": \"stuk\",\n  \"stuksafvalverwerking\": \"stuksafvalverwerk\",\n  \"stumpel\": \"stumpel\",\n  \"stumpers\": \"stumper\",\n  \"stupefactie\": \"stupefactie\",\n  \"stupéfactie\": \"stupefactie\",\n  \"sturen\": \"stur\",\n  \"sturend\": \"sturend\",\n  \"sturende\": \"sturend\",\n  \"sturing\": \"sturing\",\n  \"sturingsmodel\": \"sturingsmodel\",\n  \"sturingsorganisatie\": \"sturingsorganisatie\",\n  \"stuurde\": \"stuurd\",\n  \"stuurgroep\": \"stuurgroep\",\n  \"stuurt\": \"stuurt\",\n  \"stuvex\": \"stuvex\",\n  \"stuw\": \"stuw\",\n  \"stuwdam\": \"stuwdam\",\n  \"stuwdammen\": \"stuwdamm\",\n  \"stuwden\": \"stuwd\",\n  \"stuwen\": \"stuw\",\n  \"stuwmeren\": \"stuwmer\",\n  \"stuwt\": \"stuwt\",\n  \"stw\": \"stw\",\n  \"stybenex\": \"stybenex\",\n  \"styreen\": \"styren\",\n  \"styreenfabriek\": \"styreenfabriek\",\n  \"styreenmonomeer\": \"styreenmonomer\",\n  \"styrodur\": \"styrodur\",\n  \"styropor\": \"styropor\",\n  \"sub\": \"sub\",\n  \"subat\": \"subat\",\n  \"subcontracten\": \"subcontract\",\n  \"subdek\": \"subdek\",\n  \"subitrek\": \"subitrek\",\n  \"subjectieve\": \"subjectiev\",\n  \"subliem\": \"subliem\",\n  \"submerged\": \"submerged\",\n  \"suboptimale\": \"suboptimal\",\n  \"subsidie\": \"subsidie\",\n  \"subsidieaanvraag\": \"subsidieaanvrag\",\n  \"subsidiebedrag\": \"subsidiebedrag\",\n  \"subsidiebedragen\": \"subsidiebedrag\",\n  \"subsidiebeleid\": \"subsidiebeleid\",\n  \"subsidiebijdrage\": \"subsidiebijdrag\",\n  \"subsidiebudget\": \"subsidiebudget\",\n  \"subsidieerbare\": \"subsidieer\",\n  \"subsidieert\": \"subsidieert\",\n  \"subsidiefraude\": \"subsidiefraud\",\n  \"subsidiegeld\": \"subsidiegeld\",\n  \"subsidiegelden\": \"subsidiegeld\",\n  \"subsidiemogelijkheden\": \"subsidiemog\",\n  \"subsidiepot\": \"subsidiepot\",\n  \"subsidieprogramma\": \"subsidieprogramma\",\n  \"subsidieregeling\": \"subsidieregel\",\n  \"subsidieregelingen\": \"subsidieregel\",\n  \"subsidiëren\": \"subsidier\",\n  \"subsidiëring\": \"subsidier\",\n  \"subsidies\": \"subsidies\",\n  \"subsidiesysteem\": \"subsidiesystem\",\n  \"subsone\": \"subson\",\n  \"substances\": \"substances\",\n  \"substantie\": \"substantie\",\n  \"substantieel\": \"substantieel\",\n  \"substantiële\": \"substantiel\",\n  \"substantiëler\": \"substantieler\",\n  \"substitutie\": \"substitutie\",\n  \"substraat\": \"substrat\",\n  \"substraatproduktie\": \"substraatproduktie\",\n  \"subterranea\": \"subterranea\",\n  \"subtiele\": \"subtiel\",\n  \"subtiliteit\": \"subtiliteit\",\n  \"subtropen\": \"subtrop\",\n  \"succes\": \"succes\",\n  \"successen\": \"success\",\n  \"succesverhaal\": \"succesverhal\",\n  \"succesvol\": \"succesvol\",\n  \"succesvolle\": \"succesvoll\",\n  \"succesvoller\": \"succesvoller\",\n  \"suction\": \"suction\",\n  \"süd\": \"sud\",\n  \"sudhölter\": \"sudholter\",\n  \"sudimara\": \"sudimara\",\n  \"südwind\": \"sudwind\",\n  \"suf\": \"suf\",\n  \"suffe\": \"suff\",\n  \"suffen\": \"suff\",\n  \"suffende\": \"suffend\",\n  \"sufjes\": \"sufjes\",\n  \"suft\": \"suft\",\n  \"sufte\": \"suft\",\n  \"sugar\": \"sugar\",\n  \"suggereerde\": \"suggereerd\",\n  \"suggereert\": \"suggereert\",\n  \"suggererend\": \"suggerer\",\n  \"suggestie\": \"suggestie\",\n  \"suggesties\": \"suggesties\",\n  \"suggestieve\": \"suggestiev\",\n  \"suidman\": \"suidman\",\n  \"suijkerbuijk\": \"suijkerbuijk\",\n  \"suiker\": \"suiker\",\n  \"suikerbasis\": \"suikerbasis\",\n  \"suikerbelangen\": \"suikerbelang\",\n  \"suikerbieten\": \"suikerbiet\",\n  \"suikerfabriek\": \"suikerfabriek\",\n  \"suikerindustrie\": \"suikerindustrie\",\n  \"suikerproduktie\": \"suikerproduktie\",\n  \"suikerriet\": \"suikerriet\",\n  \"suikers\": \"suiker\",\n  \"suikerunie\": \"suikerunie\",\n  \"suisde\": \"suisd\",\n  \"suite\": \"suit\",\n  \"suizeloos\": \"suizelos\",\n  \"suizen\": \"suiz\",\n  \"suizend\": \"suizend\",\n  \"suizende\": \"suizend\",\n  \"sujet\": \"sujet\",\n  \"sukabumi\": \"sukabumi\",\n  \"sukkar\": \"sukkar\",\n  \"sukkelde\": \"sukkeld\",\n  \"sukkeldrafje\": \"sukkeldrafj\",\n  \"sukkelen\": \"sukkel\",\n  \"sukkelend\": \"sukkel\",\n  \"sukkelig\": \"sukkel\",\n  \"sulawesi\": \"sulawesi\",\n  \"sulfaat\": \"sulfat\",\n  \"sulfaatemissie\": \"sulfaatemissie\",\n  \"sulfaatlignine\": \"sulfaatlignin\",\n  \"sulfaatreductie\": \"sulfaatreductie\",\n  \"sulfide\": \"sulfid\",\n  \"sulfiet\": \"sulfiet\",\n  \"sulfonaten\": \"sulfonat\",\n  \"sullivan\": \"sullivan\",\n  \"sulo\": \"sulo\",\n  \"sulpheric\": \"sulpheric\",\n  \"sumatra\": \"sumatra\",\n  \"sumimoto\": \"sumimoto\",\n  \"sumito\": \"sumito\",\n  \"sumitomo\": \"sumitomo\",\n  \"summerhayes\": \"summerhayes\",\n  \"summiere\": \"summier\",\n  \"sump\": \"sump\",\n  \"sun\": \"sun\",\n  \"sundsvall\": \"sundsvall\",\n  \"sunergy\": \"sunergy\",\n  \"sung\": \"sung\",\n  \"sunny\": \"sunny\",\n  \"suparator\": \"suparator\",\n  \"suparlesc\": \"suparlesc\",\n  \"super\": \"super\",\n  \"superbe\": \"superb\",\n  \"superbenzine\": \"superbenzin\",\n  \"supercycle\": \"supercycl\",\n  \"superdex\": \"superdex\",\n  \"superdunne\": \"superdunn\",\n  \"superfund\": \"superfund\",\n  \"supergeheime\": \"supergeheim\",\n  \"supergeleider\": \"supergeleider\",\n  \"superieuren\": \"superieur\",\n  \"superioriteit\": \"superioriteit\",\n  \"superkritisch\": \"superkritisch\",\n  \"superkritische\": \"superkritisch\",\n  \"supermarkt\": \"supermarkt\",\n  \"supermarkten\": \"supermarkt\",\n  \"supermarktketen\": \"supermarktket\",\n  \"supermarktketens\": \"supermarktketen\",\n  \"superphénix\": \"superphenix\",\n  \"supersnelle\": \"supersnell\",\n  \"supersone\": \"superson\",\n  \"supersonische\": \"supersonisch\",\n  \"supertanker\": \"supertanker\",\n  \"superverhitte\": \"superverhit\",\n  \"supervisie\": \"supervisie\",\n  \"superzuinige\": \"superzuin\",\n  \"supplies\": \"supplies\",\n  \"supply\": \"supply\",\n  \"support\": \"support\",\n  \"supranationale\": \"supranational\",\n  \"surcéance\": \"surceanc\",\n  \"surfactanten\": \"surfactant\",\n  \"suri\": \"suri\",\n  \"surinaame\": \"surinam\",\n  \"surinaamse\": \"surinam\",\n  \"suriname\": \"surinam\",\n  \"surinamers\": \"surinamer\",\n  \"surnumerair\": \"surnumerair\",\n  \"surséance\": \"surseanc\",\n  \"surveillances\": \"surveillances\",\n  \"survey\": \"survey\",\n  \"susan\": \"susan\",\n  \"susceptibel\": \"susceptibel\",\n  \"suspended\": \"suspended\",\n  \"sussen\": \"suss\",\n  \"sussex\": \"sussex\",\n  \"sustainability\": \"sustainability\",\n  \"sustainable\": \"sustainabl\",\n  \"suste\": \"sust\",\n  \"sustech\": \"sustech\",\n  \"susten\": \"sust\",\n  \"susteren\": \"suster\",\n  \"suwid\": \"suwid\",\n  \"sv\": \"sv\",\n  \"svedala\": \"svedala\",\n  \"svend\": \"svend\",\n  \"svenska\": \"svenska\",\n  \"svm\": \"svm\",\n  \"svn\": \"svn\",\n  \"sw\": \"sw\",\n  \"swaabs\": \"swab\",\n  \"swaan\": \"swan\",\n  \"swaay\": \"sway\",\n  \"swage\": \"swag\",\n  \"swagelinen\": \"swagelin\",\n  \"swagelining\": \"swagelin\",\n  \"swaghers\": \"swagher\",\n  \"swatch\": \"swatch\",\n  \"swéér\": \"swer\",\n  \"swell\": \"swell\",\n  \"swig\": \"swig\",\n  \"swijg\": \"swijg\",\n  \"swill\": \"swill\",\n  \"swing\": \"swing\",\n  \"swiss\": \"swis\",\n  \"switch\": \"switch\",\n  \"switchgrass\": \"switchgras\",\n  \"symbiose\": \"symbios\",\n  \"symboliek\": \"symboliek\",\n  \"symbolisch\": \"symbolisch\",\n  \"symboliseren\": \"symboliser\",\n  \"symbool\": \"symbol\",\n  \"symboolwerking\": \"symboolwerk\",\n  \"sympathie\": \"sympathie\",\n  \"sympathieën\": \"sympathieen\",\n  \"sympathiek\": \"sympathiek\",\n  \"sympathieke\": \"sympathiek\",\n  \"sympathieloze\": \"sympathieloz\",\n  \"sympathisanten\": \"sympathisant\",\n  \"sympathisch\": \"sympathisch\",\n  \"sympathische\": \"sympathisch\",\n  \"sympathiseerde\": \"sympathiseerd\",\n  \"sympatisch\": \"sympatisch\",\n  \"symposia\": \"symposia\",\n  \"symposium\": \"symposium\",\n  \"symposiumbundel\": \"symposiumbundel\",\n  \"symposiumprogramma\": \"symposiumprogramma\",\n  \"symposiumverslag\": \"symposiumverslag\",\n  \"symptomen\": \"symptom\",\n  \"symptoom\": \"symptom\",\n  \"symptoombestrijding\": \"symptoombestrijd\",\n  \"syndroom\": \"syndrom\",\n  \"synerchem\": \"synerchem\",\n  \"synergie\": \"synergie\",\n  \"synergieën\": \"synergieen\",\n  \"syngas\": \"syngas\",\n  \"synoniem\": \"synoniem\",\n  \"synthese\": \"synthes\",\n  \"synthesegas\": \"synthesegas\",\n  \"syntheses\": \"syntheses\",\n  \"synthesis\": \"synthesis\",\n  \"synthetisch\": \"synthetisch\",\n  \"synthetische\": \"synthetisch\",\n  \"systeem\": \"system\",\n  \"systeemeisen\": \"systeemeis\",\n  \"systeemkeuze\": \"systeemkeuz\",\n  \"systeemleveranciers\": \"systeemleverancier\",\n  \"systeemontwikkelaar\": \"systeemontwikkelar\",\n  \"systeemrendement\": \"systeemrendement\",\n  \"systeemverliezen\": \"systeemverliez\",\n  \"system\": \"system\",\n  \"systematiek\": \"systematiek\",\n  \"systematisch\": \"systematisch\",\n  \"systematische\": \"systematisch\",\n  \"systeme\": \"system\",\n  \"systemen\": \"system\",\n  \"systems\": \"system\",\n  \"systemtechnik\": \"systemtechnik\",\n  \"szw\": \"szw\",\n  \"t\": \"t\",\n  \"taag\": \"tag\",\n  \"taaiere\": \"taaier\",\n  \"taak\": \"tak\",\n  \"taakgroep\": \"taakgroep\",\n  \"taakstelling\": \"taakstell\",\n  \"taakstellingen\": \"taakstell\",\n  \"taal\": \"tal\",\n  \"taartje\": \"taartj\",\n  \"taartjes\": \"taartjes\",\n  \"taartvormen\": \"taartvorm\",\n  \"taastrup\": \"taastrup\",\n  \"tabak\": \"tabak\",\n  \"tabaksteelt\": \"tabaksteelt\",\n  \"tabellen\": \"tabell\",\n  \"table\": \"tabl\",\n  \"tableau\": \"tableau\",\n  \"tableaux\": \"tableaux\",\n  \"tablier\": \"tablier\",\n  \"taboe\": \"taboe\",\n  \"tache\": \"tach\",\n  \"tachtig\": \"tachtig\",\n  \"tacis\": \"tacis\",\n  \"tacke\": \"tack\",\n  \"tackling\": \"tackling\",\n  \"taco\": \"taco\",\n  \"tacolijnen\": \"tacolijn\",\n  \"tact\": \"tact\",\n  \"tactloos\": \"tactlos\",\n  \"tactloosheid\": \"tactlos\",\n  \"tactloze\": \"tactloz\",\n  \"tactvol\": \"tactvol\",\n  \"tactvolle\": \"tactvoll\",\n  \"tactvolst\": \"tactvolst\",\n  \"taf\": \"taf\",\n  \"tafel\": \"tafel\",\n  \"tafeleend\": \"tafele\",\n  \"tafelkleed\": \"tafelkled\",\n  \"tafellakens\": \"tafellaken\",\n  \"tafels\": \"tafel\",\n  \"tafeltje\": \"tafeltj\",\n  \"tafeltjes\": \"tafeltjes\",\n  \"tafelzilver\": \"tafelzilver\",\n  \"tafereel\": \"taferel\",\n  \"tag\": \"tag\",\n  \"tahiti\": \"tahiti\",\n  \"tahitianen\": \"tahitian\",\n  \"tailleur\": \"tailleur\",\n  \"tailormade\": \"tailormad\",\n  \"taishet\": \"taishet\",\n  \"taiwan\": \"taiwan\",\n  \"taiwanese\": \"taiwanes\",\n  \"tak\": \"tak\",\n  \"taken\": \"tak\",\n  \"takeru\": \"takeru\",\n  \"takje\": \"takj\",\n  \"takkebomen\": \"takkebom\",\n  \"takkeboomkimmen\": \"takkeboomkimm\",\n  \"takken\": \"tak\",\n  \"takkenbomen\": \"takkenbom\",\n  \"takkenboomkimmen\": \"takkenboomkimm\",\n  \"takkenkruinen\": \"takkenkruin\",\n  \"takuma\": \"takuma\",\n  \"tal\": \"tal\",\n  \"talboom\": \"talbom\",\n  \"talent\": \"talent\",\n  \"talenten\": \"talent\",\n  \"talentje\": \"talentj\",\n  \"talks\": \"talk\",\n  \"talloze\": \"talloz\",\n  \"tallozer\": \"tallozer\",\n  \"talmde\": \"talmd\",\n  \"talrijk\": \"talrijk\",\n  \"talrijke\": \"talrijk\",\n  \"talud\": \"talud\",\n  \"taluds\": \"talud\",\n  \"tamelijk\": \"tamelijk\",\n  \"tamil\": \"tamil\",\n  \"tammer\": \"tammer\",\n  \"tammere\": \"tammer\",\n  \"tan\": \"tan\",\n  \"tandartsen\": \"tandarts\",\n  \"tandeknarsen\": \"tandeknars\",\n  \"tandem\": \"tandem\",\n  \"tandemcellen\": \"tandemcell\",\n  \"tanden\": \"tand\",\n  \"tandheelkunde\": \"tandheelkund\",\n  \"tandwielkast\": \"tandwielkast\",\n  \"tandwielkasten\": \"tandwielkast\",\n  \"tandwieltje\": \"tandwieltj\",\n  \"tanende\": \"tanend\",\n  \"tangent\": \"tangent\",\n  \"tanig\": \"tanig\",\n  \"tank\": \"tank\",\n  \"tankbezitters\": \"tankbezitter\",\n  \"tankcleaning\": \"tankclean\",\n  \"tankcontainers\": \"tankcontainer\",\n  \"tankeigenaar\": \"tankeigenar\",\n  \"tanken\": \"tank\",\n  \"tanker\": \"tanker\",\n  \"tankers\": \"tanker\",\n  \"tankoverslag\": \"tankoverslag\",\n  \"tanks\": \"tank\",\n  \"tanksanering\": \"tanksaner\",\n  \"tanksaneringsbedrijf\": \"tanksaneringsbedrijf\",\n  \"tanksaneringsbedrijven\": \"tanksaneringsbedrijv\",\n  \"tankslag\": \"tankslag\",\n  \"tankstation\": \"tankstation\",\n  \"tankstations\": \"tankstation\",\n  \"tanktoestel\": \"tanktoestel\",\n  \"tankwagon\": \"tankwagon\",\n  \"tante\": \"tant\",\n  \"tantelief\": \"tantelief\",\n  \"tantes\": \"tantes\",\n  \"tanzania\": \"tanzania\",\n  \"tanzaniaanse\": \"tanzaniaan\",\n  \"tapijt\": \"tapijt\",\n  \"tapijtafval\": \"tapijtafval\",\n  \"tapijten\": \"tapijt\",\n  \"tapijtindustrie\": \"tapijtindustrie\",\n  \"tapijtkleuren\": \"tapijtkleur\",\n  \"tapijtonderzoek\": \"tapijtonderzoek\",\n  \"tapijtresten\": \"tapijtrest\",\n  \"tappatroon\": \"tappatron\",\n  \"tappeling\": \"tappel\",\n  \"tappende\": \"tappend\",\n  \"tapte\": \"tapt\",\n  \"tapuit\": \"tapuit\",\n  \"tapwater\": \"tapwater\",\n  \"target\": \"target\",\n  \"targeted\": \"targeted\",\n  \"tarief\": \"tarief\",\n  \"tariefdifferentiatie\": \"tariefdifferentiatie\",\n  \"tariefsverhoging\": \"tariefsverhog\",\n  \"tariefverhoging\": \"tariefverhog\",\n  \"tarieven\": \"tariev\",\n  \"tariffs\": \"tariff\",\n  \"tarra\": \"tarra\",\n  \"tart\": \"tart\",\n  \"tarwe\": \"tarw\",\n  \"tarzana\": \"tarzana\",\n  \"tas\": \"tas\",\n  \"task\": \"task\",\n  \"tassen\": \"tass\",\n  \"tast\": \"tast\",\n  \"tastbaar\": \"tastbar\",\n  \"tastbare\": \"tastbar\",\n  \"tasten\": \"tast\",\n  \"tastend\": \"tastend\",\n  \"tastende\": \"tastend\",\n  \"tastte\": \"tast\",\n  \"tastten\": \"tast\",\n  \"tata\": \"tata\",\n  \"tatatata\": \"tatatata\",\n  \"taunus\": \"taunus\",\n  \"taunusstein\": \"taunusstein\",\n  \"tauw\": \"tauw\",\n  \"tax\": \"tax\",\n  \"taxaties\": \"taxaties\",\n  \"taxen\": \"tax\",\n  \"taxering\": \"taxer\",\n  \"taxi\": \"taxi\",\n  \"tbt\": \"tbt\",\n  \"tc\": \"tc\",\n  \"tcb\": \"tcb\",\n  \"tcf\": \"tcf\",\n  \"tcr\": \"tcr\",\n  \"tdg\": \"tdg\",\n  \"tdk\": \"tdk\",\n  \"te\": \"te\",\n  \"té\": \"te\",\n  \"tea\": \"tea\",\n  \"teak\": \"teak\",\n  \"teakhout\": \"teakhout\",\n  \"teakhoutbedrijf\": \"teakhoutbedrijf\",\n  \"teakhoutplantages\": \"teakhoutplantages\",\n  \"teakhoutpolis\": \"teakhoutpolis\",\n  \"teakwood\": \"teakwod\",\n  \"team\": \"team\",\n  \"teamleden\": \"teamled\",\n  \"teams\": \"team\",\n  \"teamsters\": \"teamster\",\n  \"teamwork\": \"teamwork\",\n  \"teban\": \"teban\",\n  \"tebodin\": \"tebodin\",\n  \"tebuconazool\": \"tebuconazol\",\n  \"tech\": \"tech\",\n  \"techform\": \"techform\",\n  \"technical\": \"technical\",\n  \"technici\": \"technici\",\n  \"techniek\": \"techniek\",\n  \"technieken\": \"techniek\",\n  \"technik\": \"technik\",\n  \"techniplan\": \"techniplan\",\n  \"technique\": \"technique\",\n  \"techniques\": \"techniques\",\n  \"technisch\": \"technisch\",\n  \"technische\": \"technisch\",\n  \"technischen\": \"technisch\",\n  \"techno\": \"techno\",\n  \"technologen\": \"technolog\",\n  \"technologie\": \"technologie\",\n  \"technologiebeleid\": \"technologiebeleid\",\n  \"technologiecentrum\": \"technologiecentrum\",\n  \"technologieën\": \"technologieen\",\n  \"technologieland\": \"technologieland\",\n  \"technologieprijs\": \"technologieprijs\",\n  \"technologieprogramma\": \"technologieprogramma\",\n  \"technologies\": \"technologies\",\n  \"technologisch\": \"technologisch\",\n  \"technologische\": \"technologisch\",\n  \"technology\": \"technology\",\n  \"technoport\": \"technoport\",\n  \"tecnologie\": \"tecnologie\",\n  \"tecto\": \"tecto\",\n  \"ted\": \"ted\",\n  \"teder\": \"teder\",\n  \"tederder\": \"tederder\",\n  \"tedere\": \"teder\",\n  \"tederendaagse\": \"tederendag\",\n  \"tederheden\": \"teder\",\n  \"tederheid\": \"teder\",\n  \"teelt\": \"teelt\",\n  \"teelten\": \"teelt\",\n  \"teeltjaar\": \"teeltjar\",\n  \"teelttechnische\": \"teelttechnisch\",\n  \"teeltvrije\": \"teeltvrij\",\n  \"teemde\": \"teemd\",\n  \"teer\": \"ter\",\n  \"teerachtige\": \"teeracht\",\n  \"teerder\": \"teerder\",\n  \"teerheid\": \"teerheid\",\n  \"teerhoudend\": \"teerhoud\",\n  \"teerprodukten\": \"teerprodukt\",\n  \"teerputten\": \"teerput\",\n  \"teerrestanten\": \"teerrestant\",\n  \"teers\": \"ter\",\n  \"teertjes\": \"teertjes\",\n  \"teesing\": \"teesing\",\n  \"teflon\": \"teflon\",\n  \"tegelen\": \"tegel\",\n  \"tegelijk\": \"tegelijk\",\n  \"tegelijkertijd\": \"tegelijkertijd\",\n  \"tegels\": \"tegel\",\n  \"tegemoet\": \"tegemoet\",\n  \"tegemoetkoming\": \"tegemoetkom\",\n  \"tegen\": \"teg\",\n  \"tégen\": \"teg\",\n  \"tegenaanvallen\": \"tegenaanvall\",\n  \"tegendeel\": \"tegendel\",\n  \"tegendruk\": \"tegendruk\",\n  \"tegengaan\": \"tegengan\",\n  \"tegengegaan\": \"tegengegan\",\n  \"tegengehouden\": \"tegengehoud\",\n  \"tegengekomen\": \"tegengekom\",\n  \"tegengesproken\": \"tegengesprok\",\n  \"tegengesteld\": \"tegengesteld\",\n  \"tegengestelde\": \"tegengesteld\",\n  \"tegengewerkt\": \"tegengewerkt\",\n  \"tegenglimlachte\": \"tegenglimlacht\",\n  \"tegenhangers\": \"tegenhanger\",\n  \"tegenhield\": \"tegenhield\",\n  \"tegenhouden\": \"tegenhoud\",\n  \"tegenhoudt\": \"tegenhoudt\",\n  \"tegenkwam\": \"tegenkwam\",\n  \"tegenkwamen\": \"tegenkwam\",\n  \"tegenoffensief\": \"tegenoffensief\",\n  \"tegenop\": \"tegenop\",\n  \"tegenover\": \"tegenover\",\n  \"tegenovergestelde\": \"tegenovergesteld\",\n  \"tegenpool\": \"tegenpol\",\n  \"tegenprestatie\": \"tegenprestatie\",\n  \"tegenslagen\": \"tegenslag\",\n  \"tegenspraak\": \"tegensprak\",\n  \"tegensprak\": \"tegensprak\",\n  \"tegenspreekt\": \"tegenspreekt\",\n  \"tegenspreken\": \"tegensprek\",\n  \"tegenstand\": \"tegenstand\",\n  \"tegenstander\": \"tegenstander\",\n  \"tegenstanders\": \"tegenstander\",\n  \"tegenstelling\": \"tegenstell\",\n  \"tegenstrijdig\": \"tegenstrijd\",\n  \"tegenstrijdige\": \"tegenstrijd\",\n  \"tegenstrijdigheid\": \"tegenstrijd\",\n  \"tegenstroom\": \"tegenstrom\",\n  \"tégenvallen\": \"tegenvall\",\n  \"tegenvallend\": \"tegenvall\",\n  \"tegenvallende\": \"tegenvall\",\n  \"tegenvaller\": \"tegenvaller\",\n  \"tegenvallers\": \"tegenvaller\",\n  \"tegenviel\": \"tegenviel\",\n  \"tegenvoorbeelden\": \"tegenvoorbeeld\",\n  \"tegenwerken\": \"tegenwerk\",\n  \"tegenwicht\": \"tegenwicht\",\n  \"tegenwoordig\": \"tegenwoord\",\n  \"tegenwoordige\": \"tegenwoord\",\n  \"tegenwoordigheid\": \"tegenwoord\",\n  \"tegenzin\": \"tegenzin\",\n  \"tegoeden\": \"tegoed\",\n  \"teijin\": \"teijin\",\n  \"teint\": \"teint\",\n  \"teisterde\": \"teisterd\",\n  \"teisteren\": \"teister\",\n  \"teken\": \"tek\",\n  \"tekenaar\": \"tekenar\",\n  \"tekende\": \"tekend\",\n  \"tekenden\": \"tekend\",\n  \"tekenen\": \"teken\",\n  \"tekenend\": \"teken\",\n  \"tekening\": \"teken\",\n  \"tekent\": \"tekent\",\n  \"tekort\": \"tekort\",\n  \"tekorten\": \"tekort\",\n  \"tekortkomingen\": \"tekortkom\",\n  \"tekortschieten\": \"tekortschiet\",\n  \"tekortschietende\": \"tekortschiet\",\n  \"tekst\": \"tekst\",\n  \"teksten\": \"tekst\",\n  \"tel\": \"tel\",\n  \"telde\": \"teld\",\n  \"tele\": \"tel\",\n  \"telecom\": \"telecom\",\n  \"telecommunicatie\": \"telecommunicatie\",\n  \"telecommunicatieapparatuur\": \"telecommunicatieapparatur\",\n  \"telecommunicatiebedrijven\": \"telecommunicatiebedrijv\",\n  \"telecommuting\": \"telecommut\",\n  \"telecomrelatie\": \"telecomrelatie\",\n  \"telefonisch\": \"telefonisch\",\n  \"telefonische\": \"telefonisch\",\n  \"telefoon\": \"telefon\",\n  \"telefooncel\": \"telefooncel\",\n  \"telefooncellen\": \"telefooncell\",\n  \"telefooncentrales\": \"telefooncentrales\",\n  \"telefoongesprekken\": \"telefoongesprek\",\n  \"telefoonnet\": \"telefoonnet\",\n  \"telefoonnummer\": \"telefoonnummer\",\n  \"telefoons\": \"telefon\",\n  \"telefoontje\": \"telefoontj\",\n  \"telefoontjes\": \"telefoontjes\",\n  \"telefoontoestellen\": \"telefoontoestell\",\n  \"telegraaf\": \"telegraf\",\n  \"telegrafeer\": \"telegrafer\",\n  \"telegrafeerde\": \"telegrafeerd\",\n  \"telegraferen\": \"telegrafer\",\n  \"telegram\": \"telegram\",\n  \"telemetrie\": \"telemetrie\",\n  \"telen\": \"tel\",\n  \"teler\": \"teler\",\n  \"telers\": \"teler\",\n  \"telescopische\": \"telescopisch\",\n  \"teletekst\": \"teletekst\",\n  \"teleurgesteld\": \"teleurgesteld\",\n  \"teleurgestelde\": \"teleurgesteld\",\n  \"teleurstellend\": \"teleurstell\",\n  \"teleurstellende\": \"teleurstell\",\n  \"teleurstelling\": \"teleurstell\",\n  \"teleurstellingen\": \"teleurstell\",\n  \"televisie\": \"televisie\",\n  \"televisieprogramma\": \"televisieprogramma\",\n  \"televisies\": \"televisies\",\n  \"televisiespot\": \"televisiespot\",\n  \"televisiespotjes\": \"televisiespotjes\",\n  \"televisietoestel\": \"televisietoestel\",\n  \"televisietoestellen\": \"televisietoestell\",\n  \"televisiezendtijd\": \"televisiezendtijd\",\n  \"television\": \"television\",\n  \"telkenmale\": \"telkenmal\",\n  \"telkens\": \"telken\",\n  \"tellen\": \"tell\",\n  \"tellende\": \"tellend\",\n  \"telling\": \"telling\",\n  \"tellingen\": \"telling\",\n  \"teloor\": \"telor\",\n  \"teloorgang\": \"teloorgang\",\n  \"telsonic\": \"telsonic\",\n  \"telt\": \"telt\",\n  \"temaru\": \"temaru\",\n  \"temeer\": \"temer\",\n  \"temende\": \"temend\",\n  \"temmerman\": \"temmerman\",\n  \"temming\": \"temming\",\n  \"tempelman\": \"tempelman\",\n  \"tempels\": \"tempel\",\n  \"temperament\": \"temperament\",\n  \"temperaturen\": \"temperatur\",\n  \"temperatuur\": \"temperatur\",\n  \"temperatuurbestendigheid\": \"temperatuurbestend\",\n  \"temperatuurcompensatie\": \"temperatuurcompensatie\",\n  \"temperatuurgradiënt\": \"temperatuurgradient\",\n  \"temperatuurmeting\": \"temperatuurmet\",\n  \"temperatuurschommelingen\": \"temperatuurschommel\",\n  \"temperatuursstijging\": \"temperatuursstijg\",\n  \"temperatuurstijging\": \"temperatuurstijg\",\n  \"temperatuursveranderingen\": \"temperatuursverander\",\n  \"temperatuursverdeling\": \"temperatuursverdel\",\n  \"temperatuursytemen\": \"temperatuursytem\",\n  \"temperatuurverschil\": \"temperatuurverschil\",\n  \"temperde\": \"temperd\",\n  \"temperend\": \"temper\",\n  \"tempo\": \"tempo\",\n  \"ten\": \"ten\",\n  \"tendens\": \"tenden\",\n  \"tender\": \"tender\",\n  \"tenderprijzen\": \"tenderprijz\",\n  \"tenderprocedure\": \"tenderprocedur\",\n  \"tenderregeling\": \"tenderregel\",\n  \"tenderregelingen\": \"tenderregel\",\n  \"tenders\": \"tender\",\n  \"tendersysteem\": \"tendersystem\",\n  \"teneinde\": \"teneind\",\n  \"tenen\": \"ten\",\n  \"tenger\": \"tenger\",\n  \"tengere\": \"tenger\",\n  \"tengevolge\": \"tengevolg\",\n  \"teniet\": \"teniet\",\n  \"tenietdoen\": \"tenietdoen\",\n  \"tenminste\": \"tenminst\",\n  \"tennessee\": \"tennessee\",\n  \"tennis\": \"tennis\",\n  \"tennisclub\": \"tennisclub\",\n  \"tennissen\": \"tenniss\",\n  \"tennistroepje\": \"tennistroepj\",\n  \"tenslotte\": \"tenslot\",\n  \"tenten\": \"tent\",\n  \"tentoonstelling\": \"tentoonstell\",\n  \"tentoonstellingen\": \"tentoonstell\",\n  \"tentoonstellingsterrein\": \"tentoonstellingsterrein\",\n  \"tenzij\": \"tenzij\",\n  \"tepper\": \"tepper\",\n  \"ter\": \"ter\",\n  \"terblijt\": \"terblijt\",\n  \"terdege\": \"terdeg\",\n  \"tere\": \"ter\",\n  \"terecht\": \"terecht\",\n  \"terechtgekomen\": \"terechtgekom\",\n  \"terechtgesteld\": \"terechtgesteld\",\n  \"terechtgewezen\": \"terechtgewez\",\n  \"terechtkomen\": \"terechtkom\",\n  \"terechtstaande\": \"terechtstaand\",\n  \"terechtstonden\": \"terechtstond\",\n  \"terephtalaat\": \"terephtalat\",\n  \"tergend\": \"tergend\",\n  \"tering\": \"tering\",\n  \"terloops\": \"terlop\",\n  \"terlouw\": \"terlouw\",\n  \"term\": \"term\",\n  \"termen\": \"term\",\n  \"termieten\": \"termiet\",\n  \"termietenplaag\": \"termietenplag\",\n  \"termijn\": \"termijn\",\n  \"termijnafspraken\": \"termijnafsprak\",\n  \"termijnbehoeften\": \"termijnbehoeft\",\n  \"termijnbetalingen\": \"termijnbetal\",\n  \"termijncontracten\": \"termijncontract\",\n  \"termijnfinanciering\": \"termijnfinancier\",\n  \"termijnmarkt\": \"termijnmarkt\",\n  \"termijnoplossingen\": \"termijnoploss\",\n  \"termijnrisico\": \"termijnrisico\",\n  \"termijntrends\": \"termijntr\",\n  \"terminal\": \"terminal\",\n  \"terminals\": \"terminal\",\n  \"ternauwernood\": \"ternauwernod\",\n  \"terneer\": \"terner\",\n  \"terneuzen\": \"terneuz\",\n  \"terpentijn\": \"terpentijn\",\n  \"terpstra\": \"terpstra\",\n  \"terra\": \"terra\",\n  \"terrapin\": \"terrapin\",\n  \"terrarium\": \"terrarium\",\n  \"terras\": \"terras\",\n  \"terrasjes\": \"terrasjes\",\n  \"terrassen\": \"terrass\",\n  \"terrazzo\": \"terrazzo\",\n  \"terrazzobedrijf\": \"terrazzobedrijf\",\n  \"terrazzowerkers\": \"terrazzowerker\",\n  \"terrein\": \"terrein\",\n  \"terreinbeherende\": \"terreinbeher\",\n  \"terreinen\": \"terrein\",\n  \"terreinleidingen\": \"terreinleid\",\n  \"terrier\": \"terrier\",\n  \"territoriale\": \"territorial\",\n  \"territorium\": \"territorium\",\n  \"terrorisme\": \"terrorism\",\n  \"terruggelopen\": \"terruggelop\",\n  \"terschelling\": \"terschell\",\n  \"terschuur\": \"terschur\",\n  \"tersluiks\": \"tersluik\",\n  \"tert\": \"tert\",\n  \"terug\": \"terug\",\n  \"terugbetalen\": \"terugbetal\",\n  \"terugblik\": \"terugblik\",\n  \"terugblikken\": \"terugblik\",\n  \"terugbonzen\": \"terugbonz\",\n  \"terugbracht\": \"terugbracht\",\n  \"terugbrengen\": \"terugbreng\",\n  \"terugdeinzen\": \"terugdeinz\",\n  \"terugdraaien\": \"terugdraai\",\n  \"terugdringen\": \"terugdr\",\n  \"terugdringing\": \"terugdring\",\n  \"terugdrukken\": \"terugdruk\",\n  \"teruggaan\": \"teruggan\",\n  \"teruggaf\": \"teruggaf\",\n  \"teruggang\": \"teruggang\",\n  \"teruggave\": \"teruggav\",\n  \"teruggebracht\": \"teruggebracht\",\n  \"teruggedraaid\": \"teruggedraaid\",\n  \"teruggedrongen\": \"teruggedrong\",\n  \"teruggegaan\": \"teruggegan\",\n  \"teruggegeven\": \"teruggegev\",\n  \"teruggekeerd\": \"teruggekeerd\",\n  \"teruggekomen\": \"teruggekom\",\n  \"teruggekregen\": \"teruggekreg\",\n  \"teruggeleid\": \"teruggeleid\",\n  \"teruggeleiding\": \"teruggeleid\",\n  \"teruggeleverd\": \"teruggeleverd\",\n  \"teruggelopen\": \"teruggelop\",\n  \"teruggenomen\": \"teruggenom\",\n  \"teruggescholden\": \"teruggeschold\",\n  \"teruggeschroefd\": \"teruggeschroefd\",\n  \"teruggesluisd\": \"teruggesluisd\",\n  \"teruggestopt\": \"teruggestopt\",\n  \"teruggestort\": \"teruggestort\",\n  \"teruggestoten\": \"teruggestot\",\n  \"teruggestuurd\": \"teruggestuurd\",\n  \"teruggestuurde\": \"teruggestuurd\",\n  \"teruggetrokken\": \"teruggetrok\",\n  \"teruggeven\": \"teruggev\",\n  \"teruggevoerd\": \"teruggevoerd\",\n  \"teruggevonden\": \"teruggevond\",\n  \"teruggewonnen\": \"teruggewonn\",\n  \"teruggezette\": \"teruggezet\",\n  \"teruggezien\": \"teruggezien\",\n  \"terugging\": \"terugg\",\n  \"terughoudend\": \"terughoud\",\n  \"terughoudendheid\": \"terughoud\",\n  \"terughoudends\": \"terughoud\",\n  \"terughouding\": \"terughoud\",\n  \"terugkaatsen\": \"terugkaats\",\n  \"terugkeer\": \"terugker\",\n  \"terugkeren\": \"terugker\",\n  \"terugkomdag\": \"terugkomdag\",\n  \"terugkomen\": \"terugkom\",\n  \"terugkomende\": \"terugkom\",\n  \"terugkomst\": \"terugkomst\",\n  \"terugkomt\": \"terugkomt\",\n  \"terugkopen\": \"terugkop\",\n  \"terugkrijgen\": \"terugkrijg\",\n  \"terugkwam\": \"terugkwam\",\n  \"terugleefde\": \"terugleefd\",\n  \"teruglevering\": \"teruglever\",\n  \"terugleverkabel\": \"terugleverkabel\",\n  \"teruglevertarief\": \"teruglevertarief\",\n  \"terugleververgoeding\": \"terugleververgoed\",\n  \"terugliep\": \"terugliep\",\n  \"terugloop\": \"teruglop\",\n  \"teruglopen\": \"teruglop\",\n  \"teruglopend\": \"teruglop\",\n  \"teruglopende\": \"teruglop\",\n  \"terugname\": \"terugnam\",\n  \"terugnameplicht\": \"terugnameplicht\",\n  \"terugnameservice\": \"terugnameservic\",\n  \"terugnameverplichting\": \"terugnameverplicht\",\n  \"terugneem\": \"terugnem\",\n  \"terugnemen\": \"terugnem\",\n  \"terugratel\": \"terugratel\",\n  \"terugroepen\": \"terugroep\",\n  \"terugsluizen\": \"terugsluiz\",\n  \"terugsluizing\": \"terugsluiz\",\n  \"terugspookte\": \"terugspookt\",\n  \"terugstootte\": \"terugstot\",\n  \"terugstroming\": \"terugstrom\",\n  \"terugtredende\": \"terugtred\",\n  \"terugtrek\": \"terugtrek\",\n  \"terugtrekken\": \"terugtrek\",\n  \"terugtrekkende\": \"terugtrek\",\n  \"terugtrok\": \"terugtrok\",\n  \"terugvallen\": \"terugvall\",\n  \"terugverdiend\": \"terugverdi\",\n  \"terugverdienen\": \"terugverdien\",\n  \"terugverdient\": \"terugverdient\",\n  \"terugverdientijd\": \"terugverdientijd\",\n  \"terugverdientijden\": \"terugverdientijd\",\n  \"terugverkocht\": \"terugverkocht\",\n  \"terugverkregen\": \"terugverkreg\",\n  \"terugvinden\": \"terugvind\",\n  \"terugvloeien\": \"terugvloei\",\n  \"terugvond\": \"terugvond\",\n  \"terugvonden\": \"terugvond\",\n  \"terugwerkende\": \"terugwerk\",\n  \"terugwinbare\": \"terugwin\",\n  \"terugwinnen\": \"terugwinn\",\n  \"terugwinning\": \"terugwinn\",\n  \"terugwinningsinstallaties\": \"terugwinningsinstallaties\",\n  \"terugwinsysteem\": \"terugwinsystem\",\n  \"terugwint\": \"terugwint\",\n  \"terugzien\": \"terugzien\",\n  \"terugziende\": \"terugzi\",\n  \"terugziet\": \"terugziet\",\n  \"terwijl\": \"terwijl\",\n  \"terwille\": \"terwill\",\n  \"terzake\": \"terzak\",\n  \"terzelfder\": \"terzelfder\",\n  \"terzij\": \"terzij\",\n  \"terzijde\": \"terzijd\",\n  \"tes\": \"tes\",\n  \"test\": \"test\",\n  \"testament\": \"testament\",\n  \"testbank\": \"testbank\",\n  \"testbassin\": \"testbassin\",\n  \"testcase\": \"testcas\",\n  \"testen\": \"test\",\n  \"testgebied\": \"testgebied\",\n  \"testinstallatie\": \"testinstallatie\",\n  \"testmethode\": \"testmethod\",\n  \"testmethoden\": \"testmethod\",\n  \"testprocedures\": \"testprocedures\",\n  \"testprogramma\": \"testprogramma\",\n  \"testrapporten\": \"testrapport\",\n  \"testreeks\": \"testrek\",\n  \"testruimte\": \"testruimt\",\n  \"tests\": \"test\",\n  \"teststations\": \"teststation\",\n  \"testte\": \"test\",\n  \"tetc\": \"tetc\",\n  \"tetra\": \"tetra\",\n  \"tetrachlooretheen\": \"tetrachloorethen\",\n  \"tetrachloorethyleen\": \"tetrachloorethylen\",\n  \"tetrachloorkoolstof\": \"tetrachloorkoolstof\",\n  \"tetramethyllood\": \"tetramethyllod\",\n  \"tetsja\": \"tetsja\",\n  \"tetterode\": \"tetterod\",\n  \"teug\": \"teug\",\n  \"teugel\": \"teugel\",\n  \"teugels\": \"teugel\",\n  \"teunisse\": \"teunis\",\n  \"teunissen\": \"teuniss\",\n  \"teutschental\": \"teutschental\",\n  \"tevan\": \"tevan\",\n  \"teveel\": \"tevel\",\n  \"tevens\": \"teven\",\n  \"tevergeefs\": \"tevergef\",\n  \"tevergeefse\": \"tevergef\",\n  \"tevoren\": \"tevor\",\n  \"tevreden\": \"tevred\",\n  \"tevredenheid\": \"tevred\",\n  \"teweeg\": \"teweg\",\n  \"teweeggebracht\": \"teweeggebracht\",\n  \"texaanse\": \"texan\",\n  \"texaco\": \"texaco\",\n  \"texas\": \"texas\",\n  \"texel\": \"texel\",\n  \"texels\": \"texel\",\n  \"texelse\": \"texel\",\n  \"textiel\": \"textiel\",\n  \"textielafvalwater\": \"textielafvalwater\",\n  \"textiele\": \"textiel\",\n  \"textielfabrikanten\": \"textielfabrikant\",\n  \"textielindustie\": \"textielindustie\",\n  \"textielindustrie\": \"textielindustrie\",\n  \"textielindustrieën\": \"textielindustrieen\",\n  \"textielvereniging\": \"textielveren\",\n  \"teyler\": \"teyler\",\n  \"teylers\": \"teyler\",\n  \"teylingen\": \"teyling\",\n  \"tezamen\": \"tezam\",\n  \"tezijnertijd\": \"tezijnertijd\",\n  \"tfi\": \"tfi\",\n  \"tg\": \"tg\",\n  \"th\": \"th\",\n  \"thailand\": \"thailand\",\n  \"thais\": \"thais\",\n  \"thans\": \"than\",\n  \"the\": \"the\",\n  \"theater\": \"theater\",\n  \"theaters\": \"theater\",\n  \"thee\": \"thee\",\n  \"theeblad\": \"theeblad\",\n  \"theedoekje\": \"theedoekj\",\n  \"theedrinken\": \"theedrink\",\n  \"theedrukte\": \"theedrukt\",\n  \"theegerei\": \"theegerei\",\n  \"theehandelaars\": \"theehandelar\",\n  \"theeplantages\": \"theeplantages\",\n  \"theeproduktie\": \"theeproduktie\",\n  \"thees\": \"thes\",\n  \"theetuinen\": \"theetuin\",\n  \"theeuur\": \"theeuur\",\n  \"thema\": \"thema\",\n  \"themabijeenkomsten\": \"themabijeenkomst\",\n  \"themadag\": \"themadag\",\n  \"themadagen\": \"themadag\",\n  \"themaindicatoren\": \"themaindicator\",\n  \"themamiddag\": \"themamiddag\",\n  \"themapark\": \"themapark\",\n  \"theo\": \"theo\",\n  \"theodore\": \"theodor\",\n  \"theoretisch\": \"theoretisch\",\n  \"theoretische\": \"theoretisch\",\n  \"theorie\": \"theorie\",\n  \"theorieën\": \"theorieen\",\n  \"thermaal\": \"thermal\",\n  \"thermal\": \"thermal\",\n  \"thermie\": \"thermie\",\n  \"thermieprogramma\": \"thermieprogramma\",\n  \"thermisch\": \"thermisch\",\n  \"thermische\": \"thermisch\",\n  \"thermo\": \"thermo\",\n  \"thermoanaerobacter\": \"thermoanaerobacter\",\n  \"thermochemische\": \"thermochemisch\",\n  \"thermodesulfobacterium\": \"thermodesulfobacterium\",\n  \"thermolyse\": \"thermolys\",\n  \"thermometers\": \"thermometer\",\n  \"thermometry\": \"thermometry\",\n  \"thermoshock\": \"thermoshock\",\n  \"thermotogales\": \"thermotogales\",\n  \"thesis\": \"thesis\",\n  \"theunissen\": \"theuniss\",\n  \"thialf\": \"thialf\",\n  \"thijs\": \"thijs\",\n  \"thilo\": \"thilo\",\n  \"thin\": \"thin\",\n  \"thiokol\": \"thiokol\",\n  \"third\": \"third\",\n  \"thoenis\": \"thoenis\",\n  \"tholen\": \"thol\",\n  \"tholey\": \"tholey\",\n  \"thomae\": \"thomae\",\n  \"thomas\": \"thomas\",\n  \"thomassen\": \"thomass\",\n  \"thomson\": \"thomson\",\n  \"three\": \"three\",\n  \"thuis\": \"thuis\",\n  \"thuisgekomen\": \"thuisgekom\",\n  \"thuishoren\": \"thuishor\",\n  \"thuiskomen\": \"thuiskom\",\n  \"thuiskomende\": \"thuiskom\",\n  \"thuiskwam\": \"thuiskwam\",\n  \"thuismarkt\": \"thuismarkt\",\n  \"thuiswerken\": \"thuiswerk\",\n  \"thüringen\": \"thuring\",\n  \"thüringer\": \"thuringer\",\n  \"thuringiensis\": \"thuringiensis\",\n  \"thüringsche\": \"thuringsch\",\n  \"thyssen\": \"thyss\",\n  \"thyssengas\": \"thyssengas\",\n  \"tic\": \"tic\",\n  \"tichels\": \"tichel\",\n  \"ticket\": \"ticket\",\n  \"tickets\": \"ticket\",\n  \"tieb\": \"tieb\",\n  \"tiel\": \"tiel\",\n  \"tieleman\": \"tieleman\",\n  \"tien\": \"tien\",\n  \"tiende\": \"tiend\",\n  \"tienduizend\": \"tienduiz\",\n  \"tienduizenden\": \"tienduiz\",\n  \"tienduizendste\": \"tienduizendst\",\n  \"tienen\": \"tien\",\n  \"tiengemeten\": \"tiengemet\",\n  \"tienjaren\": \"tienjar\",\n  \"tienjarenplan\": \"tienjarenplan\",\n  \"tienjarenprogramma\": \"tienjarenprogramma\",\n  \"tienjarig\": \"tienjar\",\n  \"tiental\": \"tiental\",\n  \"tientallen\": \"tientall\",\n  \"tientje\": \"tientj\",\n  \"tientjes\": \"tientjes\",\n  \"tij\": \"tij\",\n  \"tijd\": \"tijd\",\n  \"tijdbesparing\": \"tijdbespar\",\n  \"tijde\": \"tijd\",\n  \"tijdelijk\": \"tijdelijk\",\n  \"tijdelijke\": \"tijdelijk\",\n  \"tijdelijkheden\": \"tijdelijk\",\n  \"tijden\": \"tijd\",\n  \"tijdens\": \"tijden\",\n  \"tijdgebrek\": \"tijdgebrek\",\n  \"tijdgenoten\": \"tijdgenot\",\n  \"tijdgewogen\": \"tijdgewog\",\n  \"tijdig\": \"tijdig\",\n  \"tijdige\": \"tijdig\",\n  \"tijding\": \"tijding\",\n  \"tijdje\": \"tijdj\",\n  \"tijdperk\": \"tijdperk\",\n  \"tijdrovend\": \"tijdrov\",\n  \"tijdrovende\": \"tijdrov\",\n  \"tijdsaanduiding\": \"tijdsaanduid\",\n  \"tijdsbesparend\": \"tijdsbespar\",\n  \"tijdsbesparing\": \"tijdsbespar\",\n  \"tijdsblok\": \"tijdsblok\",\n  \"tijdschaal\": \"tijdschal\",\n  \"tijdschema\": \"tijdschema\",\n  \"tijdschrift\": \"tijdschrift\",\n  \"tijdschriften\": \"tijdschrift\",\n  \"tijdsduur\": \"tijdsdur\",\n  \"tijdspad\": \"tijdspad\",\n  \"tijdspanne\": \"tijdspann\",\n  \"tijdstip\": \"tijdstip\",\n  \"tijdstippen\": \"tijdstipp\",\n  \"tijdverlies\": \"tijdverlies\",\n  \"tijdwinst\": \"tijdwinst\",\n  \"tikje\": \"tikj\",\n  \"tikjes\": \"tikjes\",\n  \"tikkelde\": \"tikkeld\",\n  \"tikkelden\": \"tikkeld\",\n  \"tikken\": \"tik\",\n  \"tikkende\": \"tikkend\",\n  \"tikt\": \"tikt\",\n  \"tiktak\": \"tiktak\",\n  \"tikte\": \"tikt\",\n  \"tikten\": \"tikt\",\n  \"tilburg\": \"tilburg\",\n  \"tilburgs\": \"tilburg\",\n  \"tilburgse\": \"tilburg\",\n  \"tilde\": \"tild\",\n  \"tilly\": \"tilly\",\n  \"tilmar\": \"tilmar\",\n  \"time\": \"tim\",\n  \"times\": \"times\",\n  \"timmer\": \"timmer\",\n  \"timmerbedrijven\": \"timmerbedrijv\",\n  \"timmerindustrie\": \"timmerindustrie\",\n  \"timmert\": \"timmert\",\n  \"timorstraat\": \"timorstrat\",\n  \"timra\": \"timra\",\n  \"tin\": \"tin\",\n  \"tingeling\": \"tingel\",\n  \"tinkelend\": \"tinkel\",\n  \"tinning\": \"tinning\",\n  \"tint\": \"tint\",\n  \"tintelde\": \"tinteld\",\n  \"tintelden\": \"tinteld\",\n  \"tinteling\": \"tintel\",\n  \"tintelsterren\": \"tintelsterr\",\n  \"tinten\": \"tint\",\n  \"tintje\": \"tintj\",\n  \"tintte\": \"tint\",\n  \"tio\": \"tio\",\n  \"tip\": \"tip\",\n  \"tips\": \"tip\",\n  \"tiran\": \"tiran\",\n  \"titaanoxyde\": \"titaanoxyd\",\n  \"titaanoxydebolletjes\": \"titaanoxydebolletjes\",\n  \"titan\": \"titan\",\n  \"titanesmarten\": \"titanesmart\",\n  \"titanisch\": \"titanisch\",\n  \"titel\": \"titel\",\n  \"titels\": \"titel\",\n  \"titratie\": \"titratie\",\n  \"titulaer\": \"titulaer\",\n  \"tj\": \"tj\",\n  \"tjabé\": \"tjab\",\n  \"tjaereborg\": \"tjaereborg\",\n  \"tje\": \"tje\",\n  \"tjeenk\": \"tjeenk\",\n  \"tjernobyl\": \"tjernobyl\",\n  \"tjes\": \"tjes\",\n  \"tjessinga\": \"tjessinga\",\n  \"tjeukermeer\": \"tjeukermer\",\n  \"tjilpten\": \"tjilpt\",\n  \"tjing\": \"tjing\",\n  \"tjingelden\": \"tjingeld\",\n  \"tjipanas\": \"tjipanas\",\n  \"tjongerhof\": \"tjongerhof\",\n  \"tjp\": \"tjp\",\n  \"tl\": \"tl\",\n  \"tln\": \"tln\",\n  \"tlo\": \"tlo\",\n  \"tm\": \"tm\",\n  \"tn\": \"tn\",\n  \"tnli\": \"tnli\",\n  \"tno\": \"tno\",\n  \"to\": \"to\",\n  \"toa\": \"toa\",\n  \"toatsu\": \"toatsu\",\n  \"tob\": \"tob\",\n  \"tobben\": \"tobb\",\n  \"tobde\": \"tobd\",\n  \"tobt\": \"tobt\",\n  \"toby\": \"toby\",\n  \"toc\": \"toc\",\n  \"toch\": \"toch\",\n  \"tóch\": \"toch\",\n  \"tòch\": \"tòch\",\n  \"tocht\": \"tocht\",\n  \"tochtdeuren\": \"tochtdeur\",\n  \"tochtdicht\": \"tochtdicht\",\n  \"tochten\": \"tocht\",\n  \"tochtje\": \"tochtj\",\n  \"tochtjes\": \"tochtjes\",\n  \"tochtte\": \"tocht\",\n  \"toe\": \"toe\",\n  \"toè\": \"toè\",\n  \"toean\": \"toean\",\n  \"toebehoord\": \"toebehoord\",\n  \"toebehoren\": \"toebehor\",\n  \"toebrengen\": \"toebreng\",\n  \"toebrengt\": \"toebrengt\",\n  \"toediening\": \"toedien\",\n  \"toedieningstechnieken\": \"toedieningstechniek\",\n  \"toedient\": \"toedient\",\n  \"toedoen\": \"toedoen\",\n  \"toedraaide\": \"toedraaid\",\n  \"toedragen\": \"toedrag\",\n  \"toeë\": \"toee\",\n  \"toefde\": \"toefd\",\n  \"toefluisterde\": \"toefluisterd\",\n  \"toegaan\": \"toegan\",\n  \"toegaat\": \"toegat\",\n  \"toegang\": \"toegang\",\n  \"toegangen\": \"toegang\",\n  \"toegangsbiljet\": \"toegangsbiljet\",\n  \"toegangskanaal\": \"toegangskanal\",\n  \"toegangsroute\": \"toegangsrout\",\n  \"toegangsweg\": \"toegangsweg\",\n  \"toegangswegen\": \"toegangsweg\",\n  \"toegankelijk\": \"toegank\",\n  \"toegankelijke\": \"toegank\",\n  \"toegankelijker\": \"toegankelijker\",\n  \"toegankelijkheid\": \"toegank\",\n  \"toegebracht\": \"toegebracht\",\n  \"toegedronken\": \"toegedronk\",\n  \"toegeeflijk\": \"toegef\",\n  \"toegeeflijkheid\": \"toegef\",\n  \"toegegeven\": \"toegegev\",\n  \"toegehoord\": \"toegehoord\",\n  \"toegekeerd\": \"toegekeerd\",\n  \"toegekend\": \"toegek\",\n  \"toegekende\": \"toegek\",\n  \"toegeknepen\": \"toegeknep\",\n  \"toegelaten\": \"toegelat\",\n  \"toegelegd\": \"toegelegd\",\n  \"toegelicht\": \"toegelicht\",\n  \"toegelichte\": \"toegelicht\",\n  \"toegelokt\": \"toegelokt\",\n  \"toegelopen\": \"toegelop\",\n  \"toegenomen\": \"toegenom\",\n  \"toegepast\": \"toegepast\",\n  \"toegepaste\": \"toegepast\",\n  \"toegeroepen\": \"toegeroep\",\n  \"toegerust\": \"toegerust\",\n  \"toegeschenen\": \"toegeschen\",\n  \"toegeschreven\": \"toegeschrev\",\n  \"toegesloten\": \"toegeslot\",\n  \"toegesneden\": \"toegesned\",\n  \"toegestaan\": \"toegestan\",\n  \"toegestane\": \"toegestan\",\n  \"toegestort\": \"toegestort\",\n  \"toegetreden\": \"toegetred\",\n  \"toegeven\": \"toegev\",\n  \"toegevend\": \"toegev\",\n  \"toegevende\": \"toegev\",\n  \"toegevoegd\": \"toegevoegd\",\n  \"toegevoegde\": \"toegevoegd\",\n  \"toegevoerd\": \"toegevoerd\",\n  \"toegevoerde\": \"toegevoerd\",\n  \"toegevouwen\": \"toegevouw\",\n  \"toegewezen\": \"toegewez\",\n  \"toegezegd\": \"toegezegd\",\n  \"toegezegde\": \"toegezegd\",\n  \"toegezien\": \"toegezien\",\n  \"toegezonden\": \"toegezond\",\n  \"toeging\": \"toeging\",\n  \"toegingen\": \"toeging\",\n  \"toehoorde\": \"toehoord\",\n  \"toehoorster\": \"toehoorster\",\n  \"toekennen\": \"toekenn\",\n  \"toekenning\": \"toekenn\",\n  \"toekenningen\": \"toekenn\",\n  \"toekijken\": \"toekijk\",\n  \"toeklonk\": \"toeklonk\",\n  \"toéklonk\": \"toeklonk\",\n  \"toekomst\": \"toekomst\",\n  \"toekomstangst\": \"toekomstangst\",\n  \"toekomstbeeld\": \"toekomstbeeld\",\n  \"toekomsten\": \"toekomst\",\n  \"toekomstideeën\": \"toekomstideeen\",\n  \"toekomstig\": \"toekomst\",\n  \"toekomstige\": \"toekomst\",\n  \"toekomstigheden\": \"toekomst\",\n  \"toekomstmodellen\": \"toekomstmodell\",\n  \"toekomstmogelijkheden\": \"toekomstmog\",\n  \"toekomstmuziek\": \"toekomstmuziek\",\n  \"toekomstplannen\": \"toekomstplann\",\n  \"toekomstscenario\": \"toekomstscenario\",\n  \"toekomststeden\": \"toekomststed\",\n  \"toekomstvisie\": \"toekomstvisie\",\n  \"toekomstwoord\": \"toekomstwoord\",\n  \"toekomt\": \"toekomt\",\n  \"toekwam\": \"toekwam\",\n  \"toelaat\": \"toelat\",\n  \"toelaatbaar\": \"toelat\",\n  \"toelaatbaarheid\": \"toelat\",\n  \"toelaatbare\": \"toelat\",\n  \"toelage\": \"toelag\",\n  \"toelaten\": \"toelat\",\n  \"toelating\": \"toelat\",\n  \"toelatingen\": \"toelat\",\n  \"toelatinghouders\": \"toelatinghouder\",\n  \"toelatings\": \"toelat\",\n  \"toelatingsaanvraag\": \"toelatingsaanvrag\",\n  \"toelatingsbeleid\": \"toelatingsbeleid\",\n  \"toelatingsprocedure\": \"toelatingsprocedur\",\n  \"toeleggen\": \"toelegg\",\n  \"toeleveranciers\": \"toeleverancier\",\n  \"toeleverend\": \"toelever\",\n  \"toeleverende\": \"toelever\",\n  \"toelevering\": \"toelever\",\n  \"toeleverings\": \"toelever\",\n  \"toeleveringsbedrijven\": \"toeleveringsbedrijv\",\n  \"toeleveringsprodukten\": \"toeleveringsprodukt\",\n  \"toelicht\": \"toelicht\",\n  \"toelichting\": \"toelicht\",\n  \"toeliet\": \"toeliet\",\n  \"toen\": \"toen\",\n  \"tóen\": \"toen\",\n  \"tòen\": \"tòen\",\n  \"toèn\": \"toèn\",\n  \"toenadering\": \"toenader\",\n  \"toenam\": \"toenam\",\n  \"toename\": \"toenam\",\n  \"toenamen\": \"toenam\",\n  \"toeneemt\": \"toeneemt\",\n  \"toenemen\": \"toenem\",\n  \"toenemend\": \"toenem\",\n  \"toenemende\": \"toenem\",\n  \"toenmalige\": \"toenmal\",\n  \"toentertijd\": \"toentertijd\",\n  \"toepasbaar\": \"toepas\",\n  \"toepasbaarheid\": \"toepas\",\n  \"toepasselijk\": \"toepass\",\n  \"toepassen\": \"toepass\",\n  \"toepassende\": \"toepass\",\n  \"toepasser\": \"toepasser\",\n  \"toepassing\": \"toepass\",\n  \"toepassingen\": \"toepass\",\n  \"toepassingsgericht\": \"toepassingsgericht\",\n  \"toepassingsmogelijkheden\": \"toepassingsmog\",\n  \"toepassingsprojecten\": \"toepassingsproject\",\n  \"toepassingswijzen\": \"toepassingswijz\",\n  \"toepasssing\": \"toepasss\",\n  \"toepaste\": \"toepast\",\n  \"toer\": \"toer\",\n  \"toerde\": \"toerd\",\n  \"toereikend\": \"toereik\",\n  \"toerekenen\": \"toereken\",\n  \"toerekening\": \"toereken\",\n  \"toeren\": \"toer\",\n  \"toerenregelaars\": \"toerenregelar\",\n  \"toerenregeling\": \"toerenregel\",\n  \"toerental\": \"toerental\",\n  \"toerisme\": \"toerism\",\n  \"toeristen\": \"toerist\",\n  \"toeristenindustrie\": \"toeristenindustrie\",\n  \"toeristenweg\": \"toeristenweg\",\n  \"toeristische\": \"toeristisch\",\n  \"toescheen\": \"toeschen\",\n  \"toeschietelijk\": \"toeschiet\",\n  \"toeslag\": \"toeslag\",\n  \"toeslagen\": \"toeslag\",\n  \"toeslagmateriaal\": \"toeslagmateriaal\",\n  \"toeslagmaterialen\": \"toeslagmaterial\",\n  \"toeslagstof\": \"toeslagstof\",\n  \"toeslagstoffen\": \"toeslagstoff\",\n  \"toespelingen\": \"toespel\",\n  \"toespitsen\": \"toespits\",\n  \"toespraak\": \"toesprak\",\n  \"toestaan\": \"toestan\",\n  \"toestaat\": \"toestat\",\n  \"toestand\": \"toestand\",\n  \"toestanden\": \"toestand\",\n  \"toesteken\": \"toestek\",\n  \"toestel\": \"toestel\",\n  \"toestellen\": \"toestell\",\n  \"toestemmen\": \"toestemm\",\n  \"toestemmend\": \"toestemm\",\n  \"toestemming\": \"toestemm\",\n  \"toestemt\": \"toestemt\",\n  \"toetie\": \"toetie\",\n  \"toetreden\": \"toetred\",\n  \"toetreedt\": \"toetreedt\",\n  \"toets\": \"toet\",\n  \"toetsen\": \"toets\",\n  \"toetsing\": \"toetsing\",\n  \"toetsingsadvies\": \"toetsingsadvies\",\n  \"toetsingskader\": \"toetsingskader\",\n  \"toetsingssysteem\": \"toetsingssystem\",\n  \"toetsingswaarde\": \"toetsingswaard\",\n  \"toetst\": \"toetst\",\n  \"toetste\": \"toetst\",\n  \"toeval\": \"toeval\",\n  \"toevallig\": \"toevall\",\n  \"toevallige\": \"toevall\",\n  \"toevertrouwd\": \"toevertrouwd\",\n  \"toevertrouwing\": \"toevertrouw\",\n  \"toevlucht\": \"toevlucht\",\n  \"toevluchtsoord\": \"toevluchtsoord\",\n  \"toevoegden\": \"toevoegd\",\n  \"toevoegen\": \"toevoeg\",\n  \"toevoeging\": \"toevoeg\",\n  \"toevoegingen\": \"toevoeg\",\n  \"toevoegt\": \"toevoegt\",\n  \"toevoer\": \"toevoer\",\n  \"toevoerroutes\": \"toevoerroutes\",\n  \"toevoerstation\": \"toevoerstation\",\n  \"toevroor\": \"toevror\",\n  \"toewenste\": \"toewenst\",\n  \"toewerkt\": \"toewerkt\",\n  \"toewijzing\": \"toewijz\",\n  \"toewuifde\": \"toewuifd\",\n  \"toezag\": \"toezag\",\n  \"toezegging\": \"toezegg\",\n  \"toezeggingen\": \"toezegg\",\n  \"toezegt\": \"toezegt\",\n  \"toezicht\": \"toezicht\",\n  \"toezichthoudende\": \"toezichthoud\",\n  \"toezichthouders\": \"toezichthouder\",\n  \"toezien\": \"toezien\",\n  \"toeziet\": \"toeziet\",\n  \"toilet\": \"toilet\",\n  \"toiletafval\": \"toiletafval\",\n  \"toiletgebruik\": \"toiletgebruik\",\n  \"toiletpapier\": \"toiletpapier\",\n  \"toilettafel\": \"toilettafel\",\n  \"toiletten\": \"toilet\",\n  \"tokio\": \"tokio\",\n  \"tokyo\": \"tokyo\",\n  \"tol\": \"tol\",\n  \"tolerantie\": \"tolerantie\",\n  \"tolereren\": \"tolerer\",\n  \"tolheffing\": \"tolheff\",\n  \"tollen\": \"toll\",\n  \"tolstoï\": \"tolstoi\",\n  \"tolueen\": \"tolueen\",\n  \"tolueenbelasting\": \"tolueenbelast\",\n  \"tomaat\": \"tomat\",\n  \"tomas\": \"tomas\",\n  \"tomaten\": \"tomat\",\n  \"tombo\": \"tombo\",\n  \"tomen\": \"tom\",\n  \"tomlinson\": \"tomlinson\",\n  \"tommel\": \"tommel\",\n  \"tomorrow\": \"tomorrow\",\n  \"ton\": \"ton\",\n  \"toneel\": \"tonel\",\n  \"tonen\": \"ton\",\n  \"tong\": \"tong\",\n  \"tongenaald\": \"tongenaald\",\n  \"tongeren\": \"tonger\",\n  \"tongestralen\": \"tongestral\",\n  \"tongsmeren\": \"tongsmer\",\n  \"tonnage\": \"tonnag\",\n  \"tonnen\": \"tonn\",\n  \"tons\": \"ton\",\n  \"tool\": \"tol\",\n  \"toom\": \"tom\",\n  \"toomden\": \"toomd\",\n  \"toon\": \"ton\",\n  \"toonaangevend\": \"toonaangev\",\n  \"toonaangevende\": \"toonaangev\",\n  \"toonbaar\": \"toonbar\",\n  \"toonbank\": \"toonbank\",\n  \"toonbeeld\": \"toonbeeld\",\n  \"toonde\": \"toond\",\n  \"toonden\": \"toond\",\n  \"toonder\": \"toonder\",\n  \"toont\": \"toont\",\n  \"toontje\": \"toontj\",\n  \"toorn\": \"toorn\",\n  \"toornig\": \"toornig\",\n  \"toornige\": \"toornig\",\n  \"toot\": \"tot\",\n  \"tooth\": \"tooth\",\n  \"top\": \"top\",\n  \"topambtenaar\": \"topambtenar\",\n  \"topambtenaren\": \"topambtenar\",\n  \"topdag\": \"topdag\",\n  \"topdrukte\": \"topdrukt\",\n  \"topfunctionarissen\": \"topfunctionariss\",\n  \"topgun\": \"topgun\",\n  \"topingenieurs\": \"topingenieur\",\n  \"topinstituut\": \"topinstitut\",\n  \"topjaar\": \"topjar\",\n  \"topkoeling\": \"topkoel\",\n  \"toplaag\": \"toplag\",\n  \"topman\": \"topman\",\n  \"topmanagement\": \"topmanagement\",\n  \"topografische\": \"topografisch\",\n  \"toppen\": \"topp\",\n  \"toppereend\": \"toppere\",\n  \"toppers\": \"topper\",\n  \"torch\": \"torch\",\n  \"toren\": \"tor\",\n  \"torende\": \"torend\",\n  \"torengewemel\": \"torengewemel\",\n  \"torenkamer\": \"torenkamer\",\n  \"torenkamertje\": \"torenkamertj\",\n  \"torens\": \"toren\",\n  \"torentje\": \"torentj\",\n  \"tornbedrijf\": \"tornbedrijf\",\n  \"torpedojager\": \"torpedojager\",\n  \"torremolinos\": \"torremolinos\",\n  \"torridge\": \"torridg\",\n  \"torsen\": \"tors\",\n  \"torste\": \"torst\",\n  \"torsten\": \"torst\",\n  \"tosco\": \"tosco\",\n  \"tosko\": \"tosko\",\n  \"tot\": \"tot\",\n  \"totaal\": \"total\",\n  \"totaalbedrag\": \"totaalbedrag\",\n  \"totaaloplossing\": \"totaaloploss\",\n  \"totaaloppervlak\": \"totaaloppervlak\",\n  \"totaalpakket\": \"totaalpakket\",\n  \"totaalstikstof\": \"totaalstikstof\",\n  \"total\": \"total\",\n  \"totale\": \"total\",\n  \"totalitaire\": \"totalitair\",\n  \"totally\": \"totally\",\n  \"totdat\": \"totdat\",\n  \"totók\": \"totok\",\n  \"totstandkomen\": \"totstandkom\",\n  \"totstandkoming\": \"totstandkom\",\n  \"tourismusorgte\": \"tourismusorgt\",\n  \"tours\": \"tour\",\n  \"toutle\": \"toutl\",\n  \"touw\": \"touw\",\n  \"touwsluiting\": \"touwsluit\",\n  \"touwtje\": \"touwtj\",\n  \"toverweb\": \"toverweb\",\n  \"towards\": \"toward\",\n  \"toxic\": \"toxic\",\n  \"toxiciteit\": \"toxiciteit\",\n  \"toxiciteitsniveau\": \"toxiciteitsniveau\",\n  \"toxicologie\": \"toxicologie\",\n  \"toxicologische\": \"toxicologisch\",\n  \"toxicoloog\": \"toxicolog\",\n  \"toxics\": \"toxic\",\n  \"toxisch\": \"toxisch\",\n  \"toxische\": \"toxisch\",\n  \"toyota\": \"toyota\",\n  \"traag\": \"trag\",\n  \"traagdraaiende\": \"traagdraai\",\n  \"traagheid\": \"traagheid\",\n  \"traan\": \"tran\",\n  \"traangas\": \"traangas\",\n  \"trac\": \"trac\",\n  \"tracbord\": \"tracbord\",\n  \"trace\": \"trac\",\n  \"tracé\": \"trac\",\n  \"tracébesluit\": \"tracebesluit\",\n  \"tracékeuze\": \"tracekeuz\",\n  \"tracénota\": \"tracenota\",\n  \"tracering\": \"tracer\",\n  \"tracés\": \"traces\",\n  \"tracévariant\": \"tracevariant\",\n  \"tracéwet\": \"tracewet\",\n  \"tracht\": \"tracht\",\n  \"trachten\": \"tracht\",\n  \"tractebel\": \"tractebel\",\n  \"tractoren\": \"tractor\",\n  \"tractorenfabrikant\": \"tractorenfabrikant\",\n  \"trad\": \"trad\",\n  \"trade\": \"trad\",\n  \"traden\": \"trad\",\n  \"traditie\": \"traditie\",\n  \"traditioneel\": \"traditionel\",\n  \"traditionele\": \"traditionel\",\n  \"traffic\": \"traffic\",\n  \"trage\": \"trag\",\n  \"tragedie\": \"tragedie\",\n  \"tragiek\": \"tragiek\",\n  \"tragisch\": \"tragisch\",\n  \"tragische\": \"tragisch\",\n  \"trailer\": \"trailer\",\n  \"train\": \"train\",\n  \"trainende\": \"trainend\",\n  \"training\": \"training\",\n  \"trainingen\": \"training\",\n  \"trainingscentrum\": \"trainingscentrum\",\n  \"trainingspakket\": \"trainingspakket\",\n  \"trainingssimulator\": \"trainingssimulator\",\n  \"traject\": \"traject\",\n  \"trajectbesluiten\": \"trajectbesluit\",\n  \"trajecten\": \"traject\",\n  \"trajectnota\": \"trajectnota\",\n  \"traktement\": \"traktement\",\n  \"tram\": \"tram\",\n  \"trambilletjes\": \"trambilletjes\",\n  \"tramde\": \"tramd\",\n  \"trammen\": \"tramm\",\n  \"trams\": \"tram\",\n  \"tramspoor\": \"tramspor\",\n  \"tramspoorconstructie\": \"tramspoorconstructie\",\n  \"tramsporen\": \"tramspor\",\n  \"tramtunnel\": \"tramtunnel\",\n  \"tramwerken\": \"tramwerk\",\n  \"tranchant\": \"tranchant\",\n  \"trane\": \"tran\",\n  \"tranen\": \"tran\",\n  \"trans\": \"tran\",\n  \"transactie\": \"transactie\",\n  \"transactievoorstel\": \"transactievoorstel\",\n  \"transcendente\": \"transcendent\",\n  \"transducers\": \"transducer\",\n  \"transfer\": \"transfer\",\n  \"transferium\": \"transferium\",\n  \"transformator\": \"transformator\",\n  \"transformatoren\": \"transformator\",\n  \"transformatorstations\": \"transformatorstation\",\n  \"transgene\": \"transg\",\n  \"transistoren\": \"transistor\",\n  \"transitoreizigers\": \"transitoreiziger\",\n  \"translift\": \"translift\",\n  \"transmissie\": \"transmissie\",\n  \"transmissiesystemen\": \"transmissiesystem\",\n  \"transnationale\": \"transnational\",\n  \"transparant\": \"transparant\",\n  \"transparante\": \"transparant\",\n  \"transpiratie\": \"transpiratie\",\n  \"transpireren\": \"transpirer\",\n  \"transponder\": \"transponder\",\n  \"transponders\": \"transponder\",\n  \"transport\": \"transport\",\n  \"transportband\": \"transportband\",\n  \"transportbanden\": \"transportband\",\n  \"transportbedrijf\": \"transportbedrijf\",\n  \"transportbedrijven\": \"transportbedrijv\",\n  \"transportbonnen\": \"transportbonn\",\n  \"transportbrandstof\": \"transportbrandstof\",\n  \"transportcentrum\": \"transportcentrum\",\n  \"transportcontainer\": \"transportcontainer\",\n  \"transporteert\": \"transporteert\",\n  \"transporteigenschappen\": \"transporteigenschapp\",\n  \"transporten\": \"transport\",\n  \"transporteren\": \"transporter\",\n  \"transporteurs\": \"transporteur\",\n  \"transportinstallaties\": \"transportinstallaties\",\n  \"transportkarateristieken\": \"transportkarateristiek\",\n  \"transportkosten\": \"transportkost\",\n  \"transportleiding\": \"transportleid\",\n  \"transportmaterieel\": \"transportmaterieel\",\n  \"transportmedium\": \"transportmedium\",\n  \"transportmodel\": \"transportmodel\",\n  \"transportonderneming\": \"transportondernem\",\n  \"transportongevallen\": \"transportongevall\",\n  \"transportorders\": \"transportorder\",\n  \"transportorganisaties\": \"transportorganisaties\",\n  \"transportplatforms\": \"transportplatform\",\n  \"transportproces\": \"transportproces\",\n  \"transportraad\": \"transportrad\",\n  \"transportroutes\": \"transportroutes\",\n  \"transportsector\": \"transportsector\",\n  \"transportsysteem\": \"transportsystem\",\n  \"transporttunnels\": \"transporttunnel\",\n  \"transportverpakking\": \"transportverpak\",\n  \"transportverpakkingen\": \"transportverpak\",\n  \"transportverpakkingsfolie\": \"transportverpakkingsfolie\",\n  \"transvaal\": \"transval\",\n  \"transvac\": \"transvac\",\n  \"trant\": \"trant\",\n  \"trap\": \"trap\",\n  \"trapdeur\": \"trapdeur\",\n  \"trapje\": \"trapj\",\n  \"traploos\": \"traplos\",\n  \"trapman\": \"trapman\",\n  \"trappelen\": \"trappel\",\n  \"trappelende\": \"trappel\",\n  \"trappeltripjes\": \"trappeltripjes\",\n  \"trappen\": \"trapp\",\n  \"trappenbeurt\": \"trappenbeurt\",\n  \"trappend\": \"trappend\",\n  \"trappende\": \"trappend\",\n  \"trappenstilte\": \"trappenstilt\",\n  \"trappetreden\": \"trappetred\",\n  \"trapsgewijs\": \"trapsgewijs\",\n  \"trapt\": \"trapt\",\n  \"trapte\": \"trapt\",\n  \"trapten\": \"trapt\",\n  \"traptreden\": \"traptred\",\n  \"traumatologie\": \"traumatologie\",\n  \"traumatoloog\": \"traumatolog\",\n  \"trbf\": \"trbf\",\n  \"trc\": \"trc\",\n  \"treatment\": \"treatment\",\n  \"trechtervormig\": \"trechtervorm\",\n  \"trechtervormige\": \"trechtervorm\",\n  \"treco\": \"treco\",\n  \"tred\": \"tred\",\n  \"trede\": \"tred\",\n  \"treden\": \"tred\",\n  \"treedjes\": \"treedjes\",\n  \"treedt\": \"treedt\",\n  \"tref\": \"tref\",\n  \"treffen\": \"treff\",\n  \"treffend\": \"treffend\",\n  \"treffers\": \"treffer\",\n  \"treft\": \"treft\",\n  \"trefwoord\": \"trefwoord\",\n  \"trefwoorden\": \"trefwoord\",\n  \"trein\": \"trein\",\n  \"treinen\": \"trein\",\n  \"treinendonder\": \"treinendonder\",\n  \"treingeluid\": \"treingeluid\",\n  \"treinlawaai\": \"treinlawaai\",\n  \"treinproject\": \"treinproject\",\n  \"treinreis\": \"treinreis\",\n  \"treinreizen\": \"treinreiz\",\n  \"treinstation\": \"treinstation\",\n  \"treintracés\": \"treintraces\",\n  \"treinverkeer\": \"treinverker\",\n  \"treinwagons\": \"treinwagon\",\n  \"treiteren\": \"treiter\",\n  \"trek\": \"trek\",\n  \"trèk\": \"trèk\",\n  \"trekapparatuur\": \"trekapparatur\",\n  \"trekken\": \"trek\",\n  \"trekkende\": \"trekkend\",\n  \"trekker\": \"trekker\",\n  \"trekkers\": \"trekker\",\n  \"trekkracht\": \"trekkracht\",\n  \"trekpot\": \"trekpot\",\n  \"trekspanning\": \"trekspann\",\n  \"treksterkte\": \"treksterkt\",\n  \"trekt\": \"trekt\",\n  \"trekvissen\": \"trekviss\",\n  \"trekvogelroute\": \"trekvogelrout\",\n  \"trekvogels\": \"trekvogel\",\n  \"trend\": \"trend\",\n  \"trendbox\": \"trendbox\",\n  \"trendbreuk\": \"trendbreuk\",\n  \"trends\": \"trend\",\n  \"trendsettende\": \"trendset\",\n  \"trendsetters\": \"trendsetter\",\n  \"trendzetten\": \"trendzet\",\n  \"trent\": \"trent\",\n  \"trentelman\": \"trentelman\",\n  \"trespa\": \"trespa\",\n  \"tressen\": \"tress\",\n  \"treurde\": \"treurd\",\n  \"treurden\": \"treurd\",\n  \"treuren\": \"treur\",\n  \"treurig\": \"treurig\",\n  \"treurige\": \"treurig\",\n  \"treuriger\": \"treuriger\",\n  \"treurigheden\": \"treurig\",\n  \"treurigheid\": \"treurig\",\n  \"treurigjes\": \"treurigjes\",\n  \"treuring\": \"treuring\",\n  \"treurt\": \"treurt\",\n  \"treurzwarte\": \"treurzwart\",\n  \"treuzelde\": \"treuzeld\",\n  \"tri\": \"tri\",\n  \"triangel\": \"triangel\",\n  \"triangle\": \"triangl\",\n  \"triazinen\": \"triazin\",\n  \"tribalisme\": \"tribalism\",\n  \"tribo\": \"tribo\",\n  \"tribunal\": \"tribunal\",\n  \"tribune\": \"tribun\",\n  \"tric\": \"tric\",\n  \"tricarbonyl\": \"tricarbonyl\",\n  \"trichloorbenzenen\": \"trichloorbenzen\",\n  \"trichloorethaan\": \"trichloorethan\",\n  \"trichloorethyleen\": \"trichloorethylen\",\n  \"trickle\": \"trickl\",\n  \"tricot\": \"tricot\",\n  \"triestig\": \"triestig\",\n  \"triestige\": \"triestig\",\n  \"triestiger\": \"triestiger\",\n  \"triethylamine\": \"triethylamin\",\n  \"trifenyltinverbindingen\": \"trifenyltinverbind\",\n  \"trilateraal\": \"trilateral\",\n  \"trilde\": \"trild\",\n  \"trilden\": \"trild\",\n  \"triljoen\": \"triljoen\",\n  \"trillen\": \"trill\",\n  \"trillend\": \"trillend\",\n  \"trillende\": \"trillend\",\n  \"trilling\": \"trilling\",\n  \"trillingdemping\": \"trillingdemp\",\n  \"trillingen\": \"trilling\",\n  \"trillingsgebied\": \"trillingsgebied\",\n  \"trillingsniveau\": \"trillingsniveau\",\n  \"trillingsvrij\": \"trillingsvrij\",\n  \"trilt\": \"trilt\",\n  \"triltikte\": \"triltikt\",\n  \"trimester\": \"trimester\",\n  \"trimphone\": \"trimphon\",\n  \"tring\": \"tring\",\n  \"trinidad\": \"trinidad\",\n  \"triodos\": \"triodos\",\n  \"triodosbank\": \"triodosbank\",\n  \"triomf\": \"triomf\",\n  \"triomfaal\": \"triomfal\",\n  \"triomfeerde\": \"triomfeerd\",\n  \"triomfen\": \"triomf\",\n  \"triomferende\": \"triomfer\",\n  \"triomphale\": \"triomphal\",\n  \"triomphant\": \"triomphant\",\n  \"trippelde\": \"trippeld\",\n  \"tripte\": \"tript\",\n  \"tritium\": \"tritium\",\n  \"triumf\": \"triumf\",\n  \"triunfo\": \"triunfo\",\n  \"trivialiteiten\": \"trivialiteit\",\n  \"troebel\": \"troebel\",\n  \"troebelden\": \"troebeld\",\n  \"troebelheid\": \"troebel\",\n  \"troebelheidsmeter\": \"troebelheidsmeter\",\n  \"troebelheidsmeters\": \"troebelheidsmeter\",\n  \"troebeling\": \"troebel\",\n  \"troebleerden\": \"troebleerd\",\n  \"troef\": \"troef\",\n  \"troep\": \"troep\",\n  \"troèp\": \"troèp\",\n  \"troepen\": \"troep\",\n  \"troepje\": \"troepj\",\n  \"troeven\": \"troev\",\n  \"trof\": \"trof\",\n  \"troffen\": \"troff\",\n  \"trofische\": \"trofisch\",\n  \"trok\": \"trok\",\n  \"trokken\": \"trok\",\n  \"trommel\": \"trommel\",\n  \"trommels\": \"trommel\",\n  \"trommelzeefmachine\": \"trommelzeefmachin\",\n  \"trommelzeefmachines\": \"trommelzeefmachines\",\n  \"trompetten\": \"trompet\",\n  \"tromso\": \"tromso\",\n  \"trondheim\": \"trondheim\",\n  \"tronen\": \"tron\",\n  \"tronende\": \"tronend\",\n  \"tronie\": \"tronie\",\n  \"troon\": \"tron\",\n  \"troonde\": \"troond\",\n  \"troonrede\": \"troonred\",\n  \"troost\": \"troost\",\n  \"troosteloos\": \"troostelos\",\n  \"troosteloosheid\": \"troostelos\",\n  \"troosteloze\": \"troosteloz\",\n  \"troosten\": \"troost\",\n  \"troostende\": \"troostend\",\n  \"trooster\": \"trooster\",\n  \"troostte\": \"troost\",\n  \"troostten\": \"troost\",\n  \"tropen\": \"trop\",\n  \"tropenbladeren\": \"tropenblader\",\n  \"tropenbomen\": \"tropenbom\",\n  \"tropine\": \"tropin\",\n  \"tropisch\": \"tropisch\",\n  \"tropische\": \"tropisch\",\n  \"troposfeer\": \"troposfer\",\n  \"trostberg\": \"trostberg\",\n  \"trots\": \"trot\",\n  \"trotse\": \"trot\",\n  \"trotsende\": \"trotsend\",\n  \"trotsheid\": \"trotsheid\",\n  \"trotsmoederlijk\": \"trotsmoeder\",\n  \"trottoir\": \"trottoir\",\n  \"trottoirkolken\": \"trottoirkolk\",\n  \"trottoirs\": \"trottoir\",\n  \"trouw\": \"trouw\",\n  \"trouwde\": \"trouwd\",\n  \"trouwden\": \"trouwd\",\n  \"trouwen\": \"trouw\",\n  \"trouwens\": \"trouwen\",\n  \"trouwer\": \"trouwer\",\n  \"trouwt\": \"trouwt\",\n  \"tru\": \"tru\",\n  \"truc\": \"truc\",\n  \"trucje\": \"trucj\",\n  \"truck\": \"truck\",\n  \"truckchaffeur\": \"truckchaffeur\",\n  \"truckchauffeur\": \"truckchauffeur\",\n  \"trucks\": \"truck\",\n  \"trucs\": \"truc\",\n  \"truiden\": \"truid\",\n  \"truien\": \"trui\",\n  \"truitje\": \"truitj\",\n  \"trust\": \"trust\",\n  \"truus\": \"trus\",\n  \"tsho\": \"tsho\",\n  \"tsjechië\": \"tsjechie\",\n  \"tsjechische\": \"tsjechisch\",\n  \"tsjernobyl\": \"tsjernobyl\",\n  \"tsjernomyrdin\": \"tsjernomyrdin\",\n  \"tsn\": \"tsn\",\n  \"tss\": \"tss\",\n  \"tsuruga\": \"tsuruga\",\n  \"tti\": \"tti\",\n  \"tu\": \"tu\",\n  \"tub\": \"tub\",\n  \"tubantia\": \"tubantia\",\n  \"tubgrinder\": \"tubgrinder\",\n  \"tubgrinders\": \"tubgrinder\",\n  \"tud\": \"tud\",\n  \"tue\": \"tue\",\n  \"tufts\": \"tuft\",\n  \"tuidraden\": \"tuidrad\",\n  \"tuier\": \"tuier\",\n  \"tuigden\": \"tuigd\",\n  \"tuijn\": \"tuijn\",\n  \"tuimeldrogers\": \"tuimeldroger\",\n  \"tuimelen\": \"tuimel\",\n  \"tuin\": \"tuin\",\n  \"tuinafval\": \"tuinafval\",\n  \"tuinbouw\": \"tuinbouw\",\n  \"tuinbouwbedrijf\": \"tuinbouwbedrijf\",\n  \"tuinbouwbedrijfsleven\": \"tuinbouwbedrijfslev\",\n  \"tuinbouwbedrijven\": \"tuinbouwbedrijv\",\n  \"tuinbouwbond\": \"tuinbouwbond\",\n  \"tuinbouwfolie\": \"tuinbouwfolie\",\n  \"tuinbouwfolies\": \"tuinbouwfolies\",\n  \"tuinbouwkassen\": \"tuinbouwkass\",\n  \"tuinbouwland\": \"tuinbouwland\",\n  \"tuinbouworganisatie\": \"tuinbouworganisatie\",\n  \"tuinbouworganisaties\": \"tuinbouworganisaties\",\n  \"tuinbouwpercelen\": \"tuinbouwpercel\",\n  \"tuinbouwprodukten\": \"tuinbouwprodukt\",\n  \"tuinbouwraad\": \"tuinbouwrad\",\n  \"tuinbouwsector\": \"tuinbouwsector\",\n  \"tuinbouwsectoren\": \"tuinbouwsector\",\n  \"tuinbouwstudiegroepen\": \"tuinbouwstudiegroep\",\n  \"tuinbouwstudiegroepenfederatie\": \"tuinbouwstudiegroepenfederatie\",\n  \"tuinbouwtoeleverancier\": \"tuinbouwtoeleverancier\",\n  \"tuinbouwveilingen\": \"tuinbouwveil\",\n  \"tuinbouwverenigingen\": \"tuinbouwveren\",\n  \"tuinbouwvoorlichter\": \"tuinbouwvoorlichter\",\n  \"tuincentrum\": \"tuincentrum\",\n  \"tuinder\": \"tuinder\",\n  \"tuinders\": \"tuinder\",\n  \"tuindersorganisatie\": \"tuindersorganisatie\",\n  \"tuindeuren\": \"tuindeur\",\n  \"tuinen\": \"tuin\",\n  \"tuingeheim\": \"tuingeheim\",\n  \"tuinhek\": \"tuinhek\",\n  \"tuintje\": \"tuintj\",\n  \"tuinturf\": \"tuinturf\",\n  \"tuinverschieten\": \"tuinverschiet\",\n  \"tuiten\": \"tuit\",\n  \"tuk\": \"tuk\",\n  \"tukker\": \"tukker\",\n  \"tukkers\": \"tukker\",\n  \"tulle\": \"tull\",\n  \"tulpebladeren\": \"tulpeblader\",\n  \"tulpen\": \"tulp\",\n  \"tummers\": \"tummer\",\n  \"tumoren\": \"tumor\",\n  \"tunesië\": \"tunesie\",\n  \"tunetanken\": \"tunetank\",\n  \"tungstencarbide\": \"tungstencarbid\",\n  \"tunnel\": \"tunnel\",\n  \"tunnelboorder\": \"tunnelboorder\",\n  \"tunnelboormachine\": \"tunnelboormachin\",\n  \"tunnelboortechniek\": \"tunnelboortechniek\",\n  \"tunnelbouw\": \"tunnelbouw\",\n  \"tunnelbuis\": \"tunnelbuis\",\n  \"tunnelmanagement\": \"tunnelmanagement\",\n  \"tunnels\": \"tunnel\",\n  \"tunneltechniek\": \"tunneltechniek\",\n  \"tunnelverbinding\": \"tunnelverbind\",\n  \"tunnelvormige\": \"tunnelvorm\",\n  \"turbine\": \"turbin\",\n  \"turbinebouwers\": \"turbinebouwer\",\n  \"turbinefabrikant\": \"turbinefabrikant\",\n  \"turbinemethode\": \"turbinemethod\",\n  \"turbines\": \"turbines\",\n  \"turbio\": \"turbio\",\n  \"turbo\": \"turbo\",\n  \"turbodieselmotor\": \"turbodieselmotor\",\n  \"turbogenerator\": \"turbogenerator\",\n  \"turbogrinder\": \"turbogrinder\",\n  \"turbowind\": \"turbowind\",\n  \"turbulentie\": \"turbulentie\",\n  \"turbulentiegraad\": \"turbulentiegrad\",\n  \"turen\": \"tur\",\n  \"turende\": \"turend\",\n  \"turf\": \"turf\",\n  \"turijn\": \"turijn\",\n  \"turkenburg\": \"turkenburg\",\n  \"turkije\": \"turkij\",\n  \"turkmenistan\": \"turkmenistan\",\n  \"turkse\": \"turk\",\n  \"turn\": \"turn\",\n  \"turnkey\": \"turnkey\",\n  \"turnpike\": \"turnpik\",\n  \"tuscarora\": \"tuscarora\",\n  \"tussen\": \"tuss\",\n  \"tussenafdeklaag\": \"tussenafdeklag\",\n  \"tussendeur\": \"tussendeur\",\n  \"tussendoelstelling\": \"tussendoelstell\",\n  \"tussenhandel\": \"tussenhandel\",\n  \"tussenijstijden\": \"tussenijstijd\",\n  \"tussenin\": \"tussenin\",\n  \"tussenkomst\": \"tussenkomst\",\n  \"tussenlaag\": \"tussenlag\",\n  \"tussenliggende\": \"tussenligg\",\n  \"tussenopslag\": \"tussenopslag\",\n  \"tussenpersonen\": \"tussenperson\",\n  \"tussenpositie\": \"tussenpositie\",\n  \"tussenpozen\": \"tussenpoz\",\n  \"tussenprodukten\": \"tussenprodukt\",\n  \"tussenrapport\": \"tussenrapport\",\n  \"tussenruimte\": \"tussenruimt\",\n  \"tussenstap\": \"tussenstap\",\n  \"tussentijd\": \"tussentijd\",\n  \"tussentijds\": \"tussentijd\",\n  \"tussentijdse\": \"tussentijd\",\n  \"tuurde\": \"tuurd\",\n  \"tuurden\": \"tuurd\",\n  \"tüv\": \"tuv\",\n  \"tv\": \"tv\",\n  \"tw\": \"tw\",\n  \"twa\": \"twa\",\n  \"twaalf\": \"twaalf\",\n  \"twaalfde\": \"twaalfd\",\n  \"twaalfduizend\": \"twaalfduiz\",\n  \"twaalfhonderd\": \"twaalfhonderd\",\n  \"twaalfjarige\": \"twaalfjar\",\n  \"twaalfmijlszone\": \"twaalfmijlszon\",\n  \"twaalven\": \"twaalv\",\n  \"twathuisbasis\": \"twathuisbasis\",\n  \"twee\": \"twee\",\n  \"twée\": \"twee\",\n  \"tweeassig\": \"tweeassig\",\n  \"tweebaans\": \"tweeban\",\n  \"tweebladige\": \"tweeblad\",\n  \"tweedaags\": \"tweedag\",\n  \"tweedaagse\": \"tweedag\",\n  \"tweede\": \"twed\",\n  \"tweedehands\": \"tweedehand\",\n  \"tweedelige\": \"tweedel\",\n  \"tweederde\": \"tweederd\",\n  \"tweeduizend\": \"tweeduiz\",\n  \"tweeën\": \"tweeen\",\n  \"tweeëntwintig\": \"tweeentwint\",\n  \"tweeënvijftig\": \"tweeenvijft\",\n  \"tweeërlei\": \"tweeerlei\",\n  \"tweegevecht\": \"tweegevecht\",\n  \"tweehonderd\": \"tweehonderd\",\n  \"tweehonderdduizend\": \"tweehonderdduiz\",\n  \"tweehonderdvijftig\": \"tweehonderdvijft\",\n  \"tweehondervijftig\": \"tweehondervijft\",\n  \"tweejaarlijks\": \"tweejar\",\n  \"tweejaarlijkse\": \"tweejar\",\n  \"tweejarig\": \"tweejar\",\n  \"tweejarige\": \"tweejar\",\n  \"tweelitermotor\": \"tweelitermotor\",\n  \"tweemaal\": \"tweemal\",\n  \"tweespalt\": \"tweespalt\",\n  \"tweesporig\": \"tweespor\",\n  \"tweetal\": \"tweetal\",\n  \"tweetoerenmotor\": \"tweetoerenmotor\",\n  \"tweetraps\": \"tweetrap\",\n  \"tweeverdieners\": \"tweeverdiener\",\n  \"tweewekelijkse\": \"tweewek\",\n  \"twente\": \"twent\",\n  \"twentekanalen\": \"twentekanal\",\n  \"twentenaren\": \"twentenar\",\n  \"twents\": \"twent\",\n  \"twentse\": \"twent\",\n  \"twh\": \"twh\",\n  \"twickel\": \"twickel\",\n  \"twijfel\": \"twijfel\",\n  \"twijfelachtig\": \"twijfelacht\",\n  \"twijfelde\": \"twijfeld\",\n  \"twijfelen\": \"twijfel\",\n  \"twijfelend\": \"twijfel\",\n  \"twijfeling\": \"twijfel\",\n  \"twijfelingen\": \"twijfel\",\n  \"twijfels\": \"twijfel\",\n  \"twijfelt\": \"twijfelt\",\n  \"twijgen\": \"twijg\",\n  \"twijnstra\": \"twijnstra\",\n  \"twinfo\": \"twinfo\",\n  \"twingo\": \"twingo\",\n  \"twinkelde\": \"twinkeld\",\n  \"twinning\": \"twinning\",\n  \"twintig\": \"twintig\",\n  \"twintigduizend\": \"twintigduiz\",\n  \"twintigste\": \"twintigst\",\n  \"twintigtal\": \"twintigtal\",\n  \"twist\": \"twist\",\n  \"twisten\": \"twist\",\n  \"twistende\": \"twistend\",\n  \"twistpunt\": \"twistpunt\",\n  \"two\": \"two\",\n  \"tyfoon\": \"tyfon\",\n  \"type\": \"typ\",\n  \"typeert\": \"typeert\",\n  \"typekeuring\": \"typekeur\",\n  \"typen\": \"typ\",\n  \"types\": \"types\",\n  \"typheuze\": \"typheuz\",\n  \"typhoon\": \"typhon\",\n  \"typisch\": \"typisch\",\n  \"typische\": \"typisch\",\n  \"tyranniek\": \"tyranniek\",\n  \"tyumen\": \"tyum\",\n  \"u\": \"u\",\n  \"uasb\": \"uasb\",\n  \"ubach\": \"ubach\",\n  \"ubbens\": \"ubben\",\n  \"überhaupt\": \"uberhaupt\",\n  \"überwachungsvereine\": \"uberwachungsverein\",\n  \"uc\": \"uc\",\n  \"uce\": \"uce\",\n  \"uci\": \"uci\",\n  \"uddel\": \"uddel\",\n  \"uden\": \"uden\",\n  \"udenhausen\": \"udenhaus\",\n  \"udi\": \"udi\",\n  \"udmurtië\": \"udmurtie\",\n  \"udo\": \"udo\",\n  \"uefa\": \"uefa\",\n  \"ug\": \"ug\",\n  \"uid\": \"uid\",\n  \"uien\": \"uien\",\n  \"uile\": \"uil\",\n  \"uilenogen\": \"uilenog\",\n  \"uit\": \"uit\",\n  \"uitbaggeren\": \"uitbagger\",\n  \"uitbannen\": \"uitbann\",\n  \"uitbanning\": \"uitbann\",\n  \"uitbarsten\": \"uitbarst\",\n  \"uitbarstende\": \"uitbarst\",\n  \"uitbarsting\": \"uitbarst\",\n  \"uitbarstte\": \"uitbarst\",\n  \"uitbating\": \"uitbat\",\n  \"uitbazuinen\": \"uitbazuin\",\n  \"uitbesteden\": \"uitbested\",\n  \"uitbesteding\": \"uitbested\",\n  \"uitbesteed\": \"uitbested\",\n  \"uitbetaald\": \"uitbetaald\",\n  \"uitbetaling\": \"uitbetal\",\n  \"uitbladerend\": \"uitblader\",\n  \"uitbleef\": \"uitblef\",\n  \"uitbleven\": \"uitblev\",\n  \"uitblijft\": \"uitblijft\",\n  \"uitblijven\": \"uitblijv\",\n  \"uitbliksemden\": \"uitbliksemd\",\n  \"uitblinken\": \"uitblink\",\n  \"uitbloeingen\": \"uitbloeing\",\n  \"uitblonk\": \"uitblonk\",\n  \"uitbouwen\": \"uitbouw\",\n  \"uitbracht\": \"uitbracht\",\n  \"uitbrak\": \"uitbrak\",\n  \"uitbreid\": \"uitbreid\",\n  \"uitbreiden\": \"uitbreid\",\n  \"uitbreidende\": \"uitbreid\",\n  \"uitbreiding\": \"uitbreid\",\n  \"uitbreidingen\": \"uitbreid\",\n  \"uitbreidingsgebied\": \"uitbreidingsgebied\",\n  \"uitbreidingsgebieden\": \"uitbreidingsgebied\",\n  \"uitbreidingsplannen\": \"uitbreidingsplann\",\n  \"uitbreidingsprojecten\": \"uitbreidingsproject\",\n  \"uitbreidingsvergunning\": \"uitbreidingsvergunn\",\n  \"uitbreidingswijk\": \"uitbreidingswijk\",\n  \"uitbreidingswijken\": \"uitbreidingswijk\",\n  \"uitbreidt\": \"uitbreidt\",\n  \"uitbreken\": \"uitbrek\",\n  \"uitbrengen\": \"uitbreng\",\n  \"uitbrengt\": \"uitbrengt\",\n  \"uitbuiting\": \"uitbuit\",\n  \"uitbundig\": \"uitbund\",\n  \"uitbundige\": \"uitbund\",\n  \"uitdaagde\": \"uitdaagd\",\n  \"uitdagen\": \"uitdag\",\n  \"uitdagend\": \"uitdag\",\n  \"uitdaging\": \"uitdag\",\n  \"uitdeelactie\": \"uitdeelactie\",\n  \"uitdeelde\": \"uitdeeld\",\n  \"uitdelen\": \"uitdel\",\n  \"uitdiepen\": \"uitdiep\",\n  \"uitdieping\": \"uitdiep\",\n  \"uitdooft\": \"uitdooft\",\n  \"uitdraagt\": \"uitdraagt\",\n  \"uitdraaiden\": \"uitdraaid\",\n  \"uitdragen\": \"uitdrag\",\n  \"uitdrijvend\": \"uitdrijv\",\n  \"uitdrogen\": \"uitdrog\",\n  \"uitdroging\": \"uitdrog\",\n  \"uitdroomde\": \"uitdroomd\",\n  \"uitdrukkelijk\": \"uitdruk\",\n  \"uitdrukking\": \"uitdruk\",\n  \"uitdrukkingloze\": \"uitdrukkingloz\",\n  \"uiteen\": \"uiten\",\n  \"uiteengezet\": \"uiteengezet\",\n  \"uiteenlopen\": \"uiteenlop\",\n  \"uiteenlopende\": \"uiteenlop\",\n  \"uiteenspatting\": \"uiteenspat\",\n  \"uiteenvallen\": \"uiteenvall\",\n  \"uiteenzetten\": \"uiteenzet\",\n  \"uiteenzetting\": \"uiteenzet\",\n  \"uiteenzettingen\": \"uiteenzet\",\n  \"uiteinde\": \"uiteind\",\n  \"uiteindelijk\": \"uiteind\",\n  \"uiteindelijke\": \"uiteind\",\n  \"uiten\": \"uit\",\n  \"uiteraard\": \"uiteraard\",\n  \"uiterlijk\": \"uiter\",\n  \"uiterlijke\": \"uiter\",\n  \"uiterlijkheid\": \"uiter\",\n  \"uitermate\": \"uitermat\",\n  \"uiterst\": \"uiterst\",\n  \"uiterste\": \"uiterst\",\n  \"uitersten\": \"uiterst\",\n  \"uiterwaard\": \"uiterwaard\",\n  \"uiterwaarden\": \"uiterwaard\",\n  \"uitfaseringstermijnen\": \"uitfaseringstermijn\",\n  \"uitgaaf\": \"uitgaf\",\n  \"uitgaan\": \"uitgan\",\n  \"uitgaand\": \"uitgaand\",\n  \"uitgaande\": \"uitgaand\",\n  \"uitgaansdorp\": \"uitgaansdorp\",\n  \"uitgaat\": \"uitgat\",\n  \"uitgaf\": \"uitgaf\",\n  \"uitgang\": \"uitgang\",\n  \"uitgangsgewas\": \"uitgangsgewas\",\n  \"uitgangsmateriaal\": \"uitgangsmateriaal\",\n  \"uitgangspositie\": \"uitgangspositie\",\n  \"uitgangspunt\": \"uitgangspunt\",\n  \"uitgangspunten\": \"uitgangspunt\",\n  \"uitgave\": \"uitgav\",\n  \"uitgavekoers\": \"uitgavekoer\",\n  \"uitgaven\": \"uitgav\",\n  \"uitgeademd\": \"uitgeademd\",\n  \"uitgebaggerd\": \"uitgebaggerd\",\n  \"uitgebannen\": \"uitgebann\",\n  \"uitgeblazen\": \"uitgeblaz\",\n  \"uitgebouwd\": \"uitgebouwd\",\n  \"uitgebracht\": \"uitgebracht\",\n  \"uitgebrachte\": \"uitgebracht\",\n  \"uitgebreid\": \"uitgebreid\",\n  \"uitgebreide\": \"uitgebreid\",\n  \"uitgebreider\": \"uitgebreider\",\n  \"uitgebreidste\": \"uitgebreidst\",\n  \"uitgebroken\": \"uitgebrok\",\n  \"uitgedaagd\": \"uitgedaagd\",\n  \"uitgedacht\": \"uitgedacht\",\n  \"uitgedachte\": \"uitgedacht\",\n  \"uitgedeeld\": \"uitgedeeld\",\n  \"uitgediept\": \"uitgediept\",\n  \"uitgedokterd\": \"uitgedokterd\",\n  \"uitgedoofd\": \"uitgedoofd\",\n  \"uitgedraaid\": \"uitgedraaid\",\n  \"uitgedronken\": \"uitgedronk\",\n  \"uitgedroogd\": \"uitgedroogd\",\n  \"uitgedrukt\": \"uitgedrukt\",\n  \"uitgeef\": \"uitgef\",\n  \"uitgeeft\": \"uitgeeft\",\n  \"uitgefaseerd\": \"uitgefaseerd\",\n  \"uitgegaan\": \"uitgegan\",\n  \"uitgegeven\": \"uitgegev\",\n  \"uitgegist\": \"uitgegist\",\n  \"uitgegloeid\": \"uitgegloeid\",\n  \"uitgegooid\": \"uitgegooid\",\n  \"uitgegraven\": \"uitgegrav\",\n  \"uitgegroeid\": \"uitgegroeid\",\n  \"uitgegumd\": \"uitgegumd\",\n  \"uitgehaald\": \"uitgehaald\",\n  \"uitgehold\": \"uitgehold\",\n  \"uitgehongerde\": \"uitgehongerd\",\n  \"uitgekeerd\": \"uitgekeerd\",\n  \"uitgeklede\": \"uitgekled\",\n  \"uitgekleed\": \"uitgekled\",\n  \"uitgekocht\": \"uitgekocht\",\n  \"uitgekomen\": \"uitgekom\",\n  \"uitgekozen\": \"uitgekoz\",\n  \"uitgelaten\": \"uitgelat\",\n  \"uitgelegd\": \"uitgelegd\",\n  \"uitgelekt\": \"uitgelekt\",\n  \"uitgelekte\": \"uitgelekt\",\n  \"uitgelezen\": \"uitgelez\",\n  \"uitgelicht\": \"uitgelicht\",\n  \"uitgelokt\": \"uitgelokt\",\n  \"uitgeloogd\": \"uitgeloogd\",\n  \"uitgemergeld\": \"uitgemergeld\",\n  \"uitgemeten\": \"uitgemet\",\n  \"uitgenodigd\": \"uitgenodigd\",\n  \"uitgenodigde\": \"uitgenodigd\",\n  \"uitgeoefend\": \"uitgeoef\",\n  \"uitgepakt\": \"uitgepakt\",\n  \"uitgepakte\": \"uitgepakt\",\n  \"uitgeprobeerd\": \"uitgeprobeerd\",\n  \"uitgeput\": \"uitgeput\",\n  \"uitgeputte\": \"uitgeput\",\n  \"uitgereden\": \"uitgered\",\n  \"uitgeregend\": \"uitgereg\",\n  \"uitgereikt\": \"uitgereikt\",\n  \"uitgerekend\": \"uitgerek\",\n  \"uitgerekte\": \"uitgerekt\",\n  \"uitgeroepen\": \"uitgeroep\",\n  \"uitgerold\": \"uitgerold\",\n  \"uitgerukt\": \"uitgerukt\",\n  \"uitgerust\": \"uitgerust\",\n  \"uitgeruste\": \"uitgerust\",\n  \"uitgeschakeld\": \"uitgeschakeld\",\n  \"uitgescheiden\": \"uitgescheid\",\n  \"uitgeschenen\": \"uitgeschen\",\n  \"uitgeschitterd\": \"uitgeschitterd\",\n  \"uitgescholden\": \"uitgeschold\",\n  \"uitgeschreeuwd\": \"uitgeschreeuwd\",\n  \"uitgeschreven\": \"uitgeschrev\",\n  \"uitgeslagen\": \"uitgeslag\",\n  \"uitgesleten\": \"uitgeslet\",\n  \"uitgesloten\": \"uitgeslot\",\n  \"uitgesmeerd\": \"uitgesmeerd\",\n  \"uitgespaard\": \"uitgespaard\",\n  \"uitgespeel\": \"uitgespel\",\n  \"uitgesplitst\": \"uitgesplitst\",\n  \"uitgespoeld\": \"uitgespoeld\",\n  \"uitgespoten\": \"uitgespot\",\n  \"uitgespreid\": \"uitgespreid\",\n  \"uitgespreide\": \"uitgespreid\",\n  \"uitgesproken\": \"uitgesprok\",\n  \"uitgestapt\": \"uitgestapt\",\n  \"uitgesteld\": \"uitgesteld\",\n  \"uitgestelde\": \"uitgesteld\",\n  \"uitgestippeld\": \"uitgestippeld\",\n  \"uitgestoken\": \"uitgestok\",\n  \"uitgestort\": \"uitgestort\",\n  \"uitgestorven\": \"uitgestorv\",\n  \"uitgestote\": \"uitgestot\",\n  \"uitgestoten\": \"uitgestot\",\n  \"uitgestraald\": \"uitgestraald\",\n  \"uitgestrekt\": \"uitgestrekt\",\n  \"uitgestrekte\": \"uitgestrekt\",\n  \"uitgetrokken\": \"uitgetrok\",\n  \"uitgevaagd\": \"uitgevaagd\",\n  \"uitgevaardigd\": \"uitgevaardigd\",\n  \"uitgevallen\": \"uitgevall\",\n  \"uitgevaren\": \"uitgevar\",\n  \"uitgeven\": \"uitgev\",\n  \"uitgever\": \"uitgever\",\n  \"uitgeverij\": \"uitgeverij\",\n  \"uitgevers\": \"uitgever\",\n  \"uitgevochten\": \"uitgevocht\",\n  \"uitgevoerd\": \"uitgevoerd\",\n  \"uitgevoerde\": \"uitgevoerd\",\n  \"uitgevonden\": \"uitgevond\",\n  \"uitgevraagd\": \"uitgevraagd\",\n  \"uitgevuurd\": \"uitgevuurd\",\n  \"uitgewaaid\": \"uitgewaaid\",\n  \"uitgeweken\": \"uitgewek\",\n  \"uitgewerkt\": \"uitgewerkt\",\n  \"uitgewerkte\": \"uitgewerkt\",\n  \"uitgewezen\": \"uitgewez\",\n  \"uitgewisseld\": \"uitgewisseld\",\n  \"uitgewist\": \"uitgewist\",\n  \"uitgeworpen\": \"uitgeworp\",\n  \"uitgewroet\": \"uitgewroet\",\n  \"uitgezenuwde\": \"uitgezenuwd\",\n  \"uitgezet\": \"uitgezet\",\n  \"uitgezette\": \"uitgezet\",\n  \"uitgezocht\": \"uitgezocht\",\n  \"uitgezonden\": \"uitgezond\",\n  \"uitgezonderd\": \"uitgezonderd\",\n  \"uitgifte\": \"uitgift\",\n  \"uitging\": \"uitging\",\n  \"uitgingen\": \"uitging\",\n  \"uitgluurden\": \"uitgluurd\",\n  \"uitgroeien\": \"uitgroei\",\n  \"uithangbord\": \"uithangbord\",\n  \"uitheemse\": \"uithem\",\n  \"uithou\": \"uithou\",\n  \"uithouden\": \"uithoud\",\n  \"uithoudt\": \"uithoudt\",\n  \"uithuilen\": \"uithuil\",\n  \"uithuizen\": \"uithuiz\",\n  \"uithuizig\": \"uithuiz\",\n  \"uiting\": \"uiting\",\n  \"uitkeek\": \"uitkek\",\n  \"uitkeren\": \"uitker\",\n  \"uitkering\": \"uitker\",\n  \"uitkeringen\": \"uitker\",\n  \"uitkiezen\": \"uitkiez\",\n  \"uitkijken\": \"uitkijk\",\n  \"uitkijkende\": \"uitkijk\",\n  \"uitklaparmen\": \"uitklaparm\",\n  \"uitkleden\": \"uitkled\",\n  \"uitkleed\": \"uitkled\",\n  \"uitklinken\": \"uitklink\",\n  \"uitkneep\": \"uitknep\",\n  \"uitknijpende\": \"uitknijp\",\n  \"uitkomen\": \"uitkom\",\n  \"uitkomst\": \"uitkomst\",\n  \"uitkomsten\": \"uitkomst\",\n  \"uitkomt\": \"uitkomt\",\n  \"uitkoopregeling\": \"uitkoopregel\",\n  \"uitkopen\": \"uitkop\",\n  \"uitkrinkelen\": \"uitkrinkel\",\n  \"uitkrinkelt\": \"uitkrinkelt\",\n  \"uitkwam\": \"uitkwam\",\n  \"uitkwamen\": \"uitkwam\",\n  \"uitlaat\": \"uitlat\",\n  \"uitlaatgas\": \"uitlaatgas\",\n  \"uitlaatgasen\": \"uitlaatgas\",\n  \"uitlaatgasnorm\": \"uitlaatgasnorm\",\n  \"uitlaatgassen\": \"uitlaatgass\",\n  \"uitlaatgemaal\": \"uitlaatgemal\",\n  \"uitlachen\": \"uitlach\",\n  \"uitlachte\": \"uitlacht\",\n  \"uitlaten\": \"uitlat\",\n  \"uitlating\": \"uitlat\",\n  \"uitlatingen\": \"uitlat\",\n  \"uitleg\": \"uitleg\",\n  \"uitlegde\": \"uitlegd\",\n  \"uitleggen\": \"uitlegg\",\n  \"uitlegt\": \"uitlegt\",\n  \"uitlek\": \"uitlek\",\n  \"uitliet\": \"uitliet\",\n  \"uitlogen\": \"uitlog\",\n  \"uitloging\": \"uitlog\",\n  \"uitlokten\": \"uitlokt\",\n  \"uitloog\": \"uitlog\",\n  \"uitloogbare\": \"uitlog\",\n  \"uitlooggedrag\": \"uitlooggedrag\",\n  \"uitloogkarakteristieken\": \"uitloogkarakteristiek\",\n  \"uitloogt\": \"uitloogt\",\n  \"uitloopspleten\": \"uitloopsplet\",\n  \"uitlopen\": \"uitlop\",\n  \"uitloven\": \"uitlov\",\n  \"uitmaakt\": \"uitmaakt\",\n  \"uitmaakte\": \"uitmaakt\",\n  \"uitmaken\": \"uitmak\",\n  \"uitmonden\": \"uitmond\",\n  \"uitmondend\": \"uitmond\",\n  \"uitmondt\": \"uitmondt\",\n  \"uitneembare\": \"uitnem\",\n  \"uitnodigde\": \"uitnodigd\",\n  \"uitnodigen\": \"uitnod\",\n  \"uitnodiging\": \"uitnod\",\n  \"uitoefende\": \"uitoef\",\n  \"uitoefenen\": \"uitoefen\",\n  \"uitoefening\": \"uitoefen\",\n  \"uitontwikkeld\": \"uitontwikkeld\",\n  \"uitpakken\": \"uitpak\",\n  \"uitpersen\": \"uitpers\",\n  \"uitputbaarheid\": \"uitput\",\n  \"uitputtend\": \"uitput\",\n  \"uitputting\": \"uitput\",\n  \"uitputtingsslag\": \"uitputtingsslag\",\n  \"uitreiken\": \"uitreik\",\n  \"uitreiking\": \"uitreik\",\n  \"uitrekenen\": \"uitreken\",\n  \"uitrekken\": \"uitrek\",\n  \"uitriep\": \"uitriep\",\n  \"uitrijden\": \"uitrijd\",\n  \"uitrijkosten\": \"uitrijkost\",\n  \"uitrijnormen\": \"uitrijnorm\",\n  \"uitrijregel\": \"uitrijregel\",\n  \"uitrijregeling\": \"uitrijregel\",\n  \"uitrijverbod\": \"uitrijverbod\",\n  \"uitrijverboden\": \"uitrijverbod\",\n  \"uitrit\": \"uitrit\",\n  \"uitroep\": \"uitroep\",\n  \"uitroepen\": \"uitroep\",\n  \"uitroepjes\": \"uitroepjes\",\n  \"uitrukken\": \"uitruk\",\n  \"uitrukkende\": \"uitruk\",\n  \"uitrusten\": \"uitrust\",\n  \"uitrusting\": \"uitrust\",\n  \"uitrustingen\": \"uitrust\",\n  \"uitschakelen\": \"uitschakel\",\n  \"uitschaterde\": \"uitschaterd\",\n  \"uitscheidden\": \"uitscheid\",\n  \"uitscheiden\": \"uitscheid\",\n  \"uitscheiding\": \"uitscheid\",\n  \"uitscheidt\": \"uitscheidt\",\n  \"uitschelden\": \"uitscheld\",\n  \"uitschemering\": \"uitschemer\",\n  \"uitschieters\": \"uitschieter\",\n  \"uitschitterend\": \"uitschitter\",\n  \"uitschoten\": \"uitschot\",\n  \"uitschreeuwde\": \"uitschreeuwd\",\n  \"uitschreeuwen\": \"uitschreeuw\",\n  \"uitslag\": \"uitslag\",\n  \"uitslagen\": \"uitslag\",\n  \"uitsleuver\": \"uitsleuver\",\n  \"uitslingerden\": \"uitslingerd\",\n  \"uitsloegen\": \"uitsloeg\",\n  \"uitsloot\": \"uitslot\",\n  \"uitsluit\": \"uitsluit\",\n  \"uitsluiten\": \"uitsluit\",\n  \"uitsluitend\": \"uitsluit\",\n  \"uitsluiting\": \"uitsluit\",\n  \"uitsluitsel\": \"uitsluitsel\",\n  \"uitsnikken\": \"uitsnik\",\n  \"uitspaart\": \"uitspaart\",\n  \"uitspande\": \"uitspand\",\n  \"uitspanning\": \"uitspann\",\n  \"uitspanselwijd\": \"uitspanselwijd\",\n  \"uitspeelde\": \"uitspeeld\",\n  \"uitspelende\": \"uitspel\",\n  \"uitspoelen\": \"uitspoel\",\n  \"uitspoelgevoelige\": \"uitspoelgevoel\",\n  \"uitspoeling\": \"uitspoel\",\n  \"uitspoelt\": \"uitspoelt\",\n  \"uitspraak\": \"uitsprak\",\n  \"uitsprak\": \"uitsprak\",\n  \"uitspraken\": \"uitsprak\",\n  \"uitspreken\": \"uitsprek\",\n  \"uitstaan\": \"uitstan\",\n  \"uitstaande\": \"uitstaand\",\n  \"uitstak\": \"uitstak\",\n  \"uitstaken\": \"uitstak\",\n  \"uitstapje\": \"uitstapj\",\n  \"uitstapjes\": \"uitstapjes\",\n  \"uitstappen\": \"uitstapp\",\n  \"uitstapplaats\": \"uitstapplat\",\n  \"uitstapplaatsen\": \"uitstapplaats\",\n  \"uitstapte\": \"uitstapt\",\n  \"uitsteekt\": \"uitsteekt\",\n  \"uitstek\": \"uitstek\",\n  \"uitsteken\": \"uitstek\",\n  \"uitstekend\": \"uitstek\",\n  \"uitstekende\": \"uitstek\",\n  \"uitstel\": \"uitstel\",\n  \"uitstellen\": \"uitstell\",\n  \"uitstelt\": \"uitstelt\",\n  \"uitsterven\": \"uitsterv\",\n  \"uitstijgen\": \"uitstijg\",\n  \"uitstomen\": \"uitstom\",\n  \"uitstond\": \"uitstond\",\n  \"uitstoot\": \"uitstot\",\n  \"uitstootbeperkingen\": \"uitstootbeperk\",\n  \"uitstootcijfer\": \"uitstootcijfer\",\n  \"uitstootcijfers\": \"uitstootcijfer\",\n  \"uitstort\": \"uitstort\",\n  \"uitstortte\": \"uitstort\",\n  \"uitstoten\": \"uitstot\",\n  \"uitstraalde\": \"uitstraald\",\n  \"uitstraalden\": \"uitstraald\",\n  \"uitstraat\": \"uitstrat\",\n  \"uitstralen\": \"uitstral\",\n  \"uitstralende\": \"uitstral\",\n  \"uitstraling\": \"uitstral\",\n  \"uitstrekken\": \"uitstrek\",\n  \"uitstrekkende\": \"uitstrek\",\n  \"uitstrekkingen\": \"uitstrek\",\n  \"uitstrekt\": \"uitstrekt\",\n  \"uitstrekte\": \"uitstrekt\",\n  \"uitstroom\": \"uitstrom\",\n  \"uitte\": \"uit\",\n  \"uittinkelende\": \"uittinkel\",\n  \"uittreding\": \"uittred\",\n  \"uittreedplaatsen\": \"uittreedplaats\",\n  \"uittreedregeling\": \"uittreedregel\",\n  \"uittrekken\": \"uittrek\",\n  \"uittrok\": \"uittrok\",\n  \"uittrouwen\": \"uittrouw\",\n  \"uitvaarde\": \"uitvaard\",\n  \"uitvaardigen\": \"uitvaard\",\n  \"uitval\": \"uitval\",\n  \"uitvallen\": \"uitvall\",\n  \"uitvallend\": \"uitvall\",\n  \"uitvalswegen\": \"uitvalsweg\",\n  \"uitvalt\": \"uitvalt\",\n  \"uitvaren\": \"uitvar\",\n  \"uitvarende\": \"uitvar\",\n  \"uitverkoop\": \"uitverkop\",\n  \"uitverkoren\": \"uitverkor\",\n  \"uitviel\": \"uitviel\",\n  \"uitvinden\": \"uitvind\",\n  \"uitvinder\": \"uitvinder\",\n  \"uitvindersprijs\": \"uitvindersprijs\",\n  \"uitvindingen\": \"uitvind\",\n  \"uitvliegroutes\": \"uitvliegroutes\",\n  \"uitvloeisel\": \"uitvloeisel\",\n  \"uitvlucht\": \"uitvlucht\",\n  \"uitvluchten\": \"uitvlucht\",\n  \"uitvluchtte\": \"uitvlucht\",\n  \"uitvoer\": \"uitvoer\",\n  \"uitvoerbaar\": \"uitvoer\",\n  \"uitvoerbaarheid\": \"uitvoer\",\n  \"uitvoerbeperkingen\": \"uitvoerbeperk\",\n  \"uitvoerde\": \"uitvoerd\",\n  \"uitvoerder\": \"uitvoerder\",\n  \"uitvoerders\": \"uitvoerder\",\n  \"uitvoeren\": \"uitvoer\",\n  \"uitvoerende\": \"uitvoer\",\n  \"uitvoerenden\": \"uitvoer\",\n  \"uitvoerig\": \"uitvoer\",\n  \"uitvoerige\": \"uitvoer\",\n  \"uitvoering\": \"uitvoer\",\n  \"uitvoeringen\": \"uitvoer\",\n  \"uitvoerings\": \"uitvoer\",\n  \"uitvoeringsaanpak\": \"uitvoeringsaanpak\",\n  \"uitvoeringsaspecten\": \"uitvoeringsaspect\",\n  \"uitvoeringsbesluiten\": \"uitvoeringsbesluit\",\n  \"uitvoeringsconvenant\": \"uitvoeringsconvenant\",\n  \"uitvoeringsdienst\": \"uitvoeringsdienst\",\n  \"uitvoeringsfase\": \"uitvoeringsfas\",\n  \"uitvoeringsfouten\": \"uitvoeringsfout\",\n  \"uitvoeringshoofdstuk\": \"uitvoeringshoofdstuk\",\n  \"uitvoeringskosten\": \"uitvoeringskost\",\n  \"uitvoeringsniveau\": \"uitvoeringsniveau\",\n  \"uitvoeringsorganen\": \"uitvoeringsorgan\",\n  \"uitvoeringsorganisatie\": \"uitvoeringsorganisatie\",\n  \"uitvoeringsorganisaties\": \"uitvoeringsorganisaties\",\n  \"uitvoeringsplan\": \"uitvoeringsplan\",\n  \"uitvoeringspraktijk\": \"uitvoeringspraktijk\",\n  \"uitvoeringsprogramma\": \"uitvoeringsprogramma\",\n  \"uitvoeringsregeling\": \"uitvoeringsregel\",\n  \"uitvoeringstechniek\": \"uitvoeringstechniek\",\n  \"uitvoert\": \"uitvoert\",\n  \"uitvoervergunning\": \"uitvoervergunn\",\n  \"uitvond\": \"uitvond\",\n  \"uitvroeg\": \"uitvroeg\",\n  \"uitwaterende\": \"uitwater\",\n  \"uitweg\": \"uitweg\",\n  \"uitwerken\": \"uitwerk\",\n  \"uitwerking\": \"uitwerk\",\n  \"uitwerkte\": \"uitwerkt\",\n  \"uitwijkende\": \"uitwijk\",\n  \"uitwijzen\": \"uitwijz\",\n  \"uitwisselen\": \"uitwissel\",\n  \"uitwisseling\": \"uitwissel\",\n  \"uitwonderden\": \"uitwonderd\",\n  \"uitzag\": \"uitzag\",\n  \"uitzagen\": \"uitzag\",\n  \"uitzeg\": \"uitzeg\",\n  \"uitzeggen\": \"uitzegg\",\n  \"uitzendbureau\": \"uitzendbureau\",\n  \"uitzenden\": \"uitzend\",\n  \"uitzet\": \"uitzet\",\n  \"uitzette\": \"uitzet\",\n  \"uitzetten\": \"uitzet\",\n  \"uitzettende\": \"uitzet\",\n  \"uitzetting\": \"uitzet\",\n  \"uitzicht\": \"uitzicht\",\n  \"uitzichtloosheid\": \"uitzichtlos\",\n  \"uitzien\": \"uitzien\",\n  \"uitziende\": \"uitziend\",\n  \"uitziet\": \"uitziet\",\n  \"uitzoeken\": \"uitzoek\",\n  \"uitzonderen\": \"uitzonder\",\n  \"uitzondering\": \"uitzonder\",\n  \"uitzonderingen\": \"uitzonder\",\n  \"uitzonderingsbepaling\": \"uitzonderingsbepal\",\n  \"uitzonderingsbepalingen\": \"uitzonderingsbepal\",\n  \"uitzonderingspositie\": \"uitzonderingspositie\",\n  \"uitzonderingssituaties\": \"uitzonderingssituaties\",\n  \"uitzonderlijk\": \"uitzonder\",\n  \"uitzondert\": \"uitzondert\",\n  \"uitzong\": \"uitzong\",\n  \"uitzonnende\": \"uitzonn\",\n  \"uitzwaai\": \"uitzwaai\",\n  \"uitzwaaide\": \"uitzwaaid\",\n  \"uitzwermen\": \"uitzwerm\",\n  \"uk\": \"uk\",\n  \"ukkel\": \"ukkel\",\n  \"ulenhof\": \"ulenhof\",\n  \"ulft\": \"ulft\",\n  \"ulrich\": \"ulrich\",\n  \"ultieme\": \"ultiem\",\n  \"ultimem\": \"ultimem\",\n  \"ultimer\": \"ultimer\",\n  \"ultra\": \"ultra\",\n  \"ultrafiltratie\": \"ultrafiltratie\",\n  \"ultrageluid\": \"ultrageluid\",\n  \"ultramoderne\": \"ultramodern\",\n  \"ultrasone\": \"ultrason\",\n  \"ultrasonics\": \"ultrasonic\",\n  \"ultraviolet\": \"ultraviolet\",\n  \"ultraviolette\": \"ultraviolet\",\n  \"ump\": \"ump\",\n  \"umwelt\": \"umwelt\",\n  \"umweltakademie\": \"umweltakademie\",\n  \"umweltbundesamt\": \"umweltbundesamt\",\n  \"umweltechniek\": \"umweltechniek\",\n  \"umwelttechnik\": \"umwelttechnik\",\n  \"un\": \"un\",\n  \"una\": \"una\",\n  \"unaniem\": \"unaniem\",\n  \"unattended\": \"unattended\",\n  \"unced\": \"unced\",\n  \"unctad\": \"unctad\",\n  \"und\": \"und\",\n  \"understanding\": \"understand\",\n  \"undp\": \"undp\",\n  \"unep\": \"unep\",\n  \"uneto\": \"uneto\",\n  \"uni\": \"uni\",\n  \"unicarb\": \"unicarb\",\n  \"unice\": \"unic\",\n  \"unidek\": \"unidek\",\n  \"unie\": \"unie\",\n  \"uniek\": \"uniek\",\n  \"unieke\": \"uniek\",\n  \"unifill\": \"unifill\",\n  \"uniform\": \"uniform\",\n  \"uniforme\": \"uniform\",\n  \"uniformering\": \"uniformer\",\n  \"uniformfiguur\": \"uniformfigur\",\n  \"uniformiteit\": \"uniformiteit\",\n  \"uniformjas\": \"uniformjas\",\n  \"uniformkraag\": \"uniformkrag\",\n  \"unilever\": \"unilever\",\n  \"unileverconcern\": \"unileverconcern\",\n  \"unimuenster\": \"unimuenster\",\n  \"union\": \"union\",\n  \"unit\": \"unit\",\n  \"united\": \"united\",\n  \"units\": \"unit\",\n  \"universeel\": \"universel\",\n  \"universele\": \"universel\",\n  \"universitair\": \"universitair\",\n  \"universitaire\": \"universitair\",\n  \"universität\": \"universitat\",\n  \"universiteit\": \"universiteit\",\n  \"universiteiten\": \"universiteit\",\n  \"universiteitstijd\": \"universiteitstijd\",\n  \"university\": \"university\",\n  \"unsaturated\": \"unsaturated\",\n  \"up\": \"up\",\n  \"update\": \"updat\",\n  \"upflow\": \"upflow\",\n  \"upgrade\": \"upgrad\",\n  \"upper\": \"upper\",\n  \"uranium\": \"uranium\",\n  \"uraniumverrijkingsfabriek\": \"uraniumverrijkingsfabriek\",\n  \"uraniumvoorraden\": \"uraniumvoorrad\",\n  \"urea\": \"urea\",\n  \"uren\": \"uren\",\n  \"urenco\": \"urenco\",\n  \"ureum\": \"ureum\",\n  \"ureumgehalte\": \"ureumgehalt\",\n  \"urey\": \"urey\",\n  \"urgent\": \"urgent\",\n  \"urgente\": \"urgent\",\n  \"urgentie\": \"urgentie\",\n  \"urgentiebepaling\": \"urgentiebepal\",\n  \"urgenties\": \"urgenties\",\n  \"urgentiesystematiek\": \"urgentiesystematiek\",\n  \"urgentiesystemen\": \"urgentiesystem\",\n  \"urine\": \"urin\",\n  \"urineconcentratie\": \"urineconcentratie\",\n  \"urineproeven\": \"urineproev\",\n  \"urinoirs\": \"urinoir\",\n  \"urk\": \"urk\",\n  \"us\": \"us\",\n  \"usa\": \"usa\",\n  \"usaid\": \"usaid\",\n  \"usd\": \"usd\",\n  \"usda\": \"usda\",\n  \"use\": \"use\",\n  \"usinor\": \"usinor\",\n  \"usinsk\": \"usinsk\",\n  \"ussc\": \"ussc\",\n  \"usual\": \"usual\",\n  \"ut\": \"ut\",\n  \"utec\": \"utec\",\n  \"utgast\": \"utgast\",\n  \"utiliteitsbouw\": \"utiliteitsbouw\",\n  \"utiliteitsgebouwen\": \"utiliteitsgebouw\",\n  \"utiliteitsprojecten\": \"utiliteitsproject\",\n  \"utilities\": \"utilities\",\n  \"utility\": \"utility\",\n  \"utopie\": \"utopie\",\n  \"utrecht\": \"utrecht\",\n  \"utrechts\": \"utrecht\",\n  \"utrechtse\": \"utrecht\",\n  \"uur\": \"uur\",\n  \"uurgemiddelde\": \"uurgemiddeld\",\n  \"uurtje\": \"uurtj\",\n  \"uv\": \"uv\",\n  \"uva\": \"uva\",\n  \"uw\": \"uw\",\n  \"uwe\": \"uwe\",\n  \"uylenburg\": \"uylenburg\",\n  \"uzelf\": \"uzelf\",\n  \"v\": \"v\",\n  \"va\": \"va\",\n  \"vaag\": \"vag\",\n  \"vaagde\": \"vaagd\",\n  \"vaagheden\": \"vaagheid\",\n  \"vaagheid\": \"vaagheid\",\n  \"vaagjes\": \"vaagjes\",\n  \"vaags\": \"vag\",\n  \"vaagte\": \"vaagt\",\n  \"vaagweg\": \"vaagweg\",\n  \"vaak\": \"vak\",\n  \"vaal\": \"val\",\n  \"vaalblanke\": \"vaalblank\",\n  \"vaalbleek\": \"vaalblek\",\n  \"vaalte\": \"vaalt\",\n  \"vaarboeren\": \"vaarboer\",\n  \"vaarde\": \"vaard\",\n  \"vaarden\": \"vaard\",\n  \"vaardigen\": \"vaardig\",\n  \"vaardigheden\": \"vaardig\",\n  \"vaargebied\": \"vaargebied\",\n  \"vaargeul\": \"vaargeul\",\n  \"vaargeulen\": \"vaargeul\",\n  \"vaarroute\": \"vaarrout\",\n  \"vaart\": \"vaart\",\n  \"vaarten\": \"vaart\",\n  \"vaartijd\": \"vaartijd\",\n  \"vaarverboden\": \"vaarverbod\",\n  \"vaarverkeer\": \"vaarverker\",\n  \"vaarwater\": \"vaarwater\",\n  \"vaarwegen\": \"vaarweg\",\n  \"vaarwel\": \"vaarwel\",\n  \"vaas\": \"vas\",\n  \"vaatwasmachine\": \"vaatwasmachin\",\n  \"vabi\": \"vabi\",\n  \"vac\": \"vac\",\n  \"vacantie\": \"vacantie\",\n  \"vaccin\": \"vaccin\",\n  \"vaco\": \"vaco\",\n  \"vacudest\": \"vacudest\",\n  \"vacuüm\": \"vacum\",\n  \"vacuümextractie\": \"vacuumextractie\",\n  \"vacuümpomp\": \"vacuumpomp\",\n  \"vacuümwateringsmethode\": \"vacuumwateringsmethod\",\n  \"vacuümzout\": \"vacuumzout\",\n  \"vademecum\": \"vademecum\",\n  \"vader\": \"vader\",\n  \"vaderde\": \"vaderd\",\n  \"vadergezicht\": \"vadergezicht\",\n  \"vaderland\": \"vaderland\",\n  \"vaderlandsliefde\": \"vaderlandsliefd\",\n  \"vaderlijk\": \"vader\",\n  \"vaderlijke\": \"vader\",\n  \"vaderlijkheid\": \"vader\",\n  \"vaderlijkjes\": \"vaderlijkjes\",\n  \"vaders\": \"vader\",\n  \"vadertje\": \"vadertj\",\n  \"vage\": \"vag\",\n  \"vager\": \"vager\",\n  \"vagevuur\": \"vagevur\",\n  \"vagron\": \"vagron\",\n  \"vai\": \"vai\",\n  \"vak\": \"vak\",\n  \"vakantie\": \"vakantie\",\n  \"vakantiebeurs\": \"vakantiebeur\",\n  \"vakantiebungalows\": \"vakantiebungalow\",\n  \"vakantiecentrum\": \"vakantiecentrum\",\n  \"vakantiehuisjes\": \"vakantiehuisjes\",\n  \"vakantiepark\": \"vakantiepark\",\n  \"vakanties\": \"vakanties\",\n  \"vakantietrek\": \"vakantietrek\",\n  \"vakantievluchten\": \"vakantievlucht\",\n  \"vakbekwaamheid\": \"vakbekwam\",\n  \"vakbeurs\": \"vakbeur\",\n  \"vakbeweging\": \"vakbeweg\",\n  \"vakblad\": \"vakblad\",\n  \"vakbond\": \"vakbond\",\n  \"vakbonden\": \"vakbond\",\n  \"vakbondsacties\": \"vakbondsacties\",\n  \"vakdag\": \"vakdag\",\n  \"vaker\": \"vaker\",\n  \"vakgebied\": \"vakgebied\",\n  \"vakgebieden\": \"vakgebied\",\n  \"vakgenoten\": \"vakgenot\",\n  \"vakgroep\": \"vakgroep\",\n  \"vakgroepen\": \"vakgroep\",\n  \"vakjes\": \"vakjes\",\n  \"vakken\": \"vak\",\n  \"vakkundig\": \"vakkund\",\n  \"vaklieden\": \"vaklied\",\n  \"vakman\": \"vakman\",\n  \"vakmanschap\": \"vakmanschap\",\n  \"vakmatig\": \"vakmat\",\n  \"vakondernemers\": \"vakondernemer\",\n  \"vakorganisatie\": \"vakorganisatie\",\n  \"vakorganisaties\": \"vakorganisaties\",\n  \"vakschool\": \"vakschol\",\n  \"vaktechnische\": \"vaktechnisch\",\n  \"vaktijdschrift\": \"vaktijdschrift\",\n  \"val\": \"val\",\n  \"valdez\": \"valdez\",\n  \"vale\": \"val\",\n  \"valencia\": \"valencia\",\n  \"valenciennes\": \"valenciennes\",\n  \"valgordijnen\": \"valgordijn\",\n  \"validatie\": \"validatie\",\n  \"validation\": \"validation\",\n  \"valideert\": \"valideert\",\n  \"valkenburg\": \"valkenburg\",\n  \"valkeniers\": \"valkenier\",\n  \"vallei\": \"vallei\",\n  \"valleien\": \"vallei\",\n  \"vallen\": \"vall\",\n  \"vallend\": \"vallend\",\n  \"vallende\": \"vallend\",\n  \"valley\": \"valley\",\n  \"valling\": \"valling\",\n  \"valmet\": \"valmet\",\n  \"valpijp\": \"valpijp\",\n  \"valreep\": \"valrep\",\n  \"vals\": \"val\",\n  \"valse\": \"val\",\n  \"valselijke\": \"valselijk\",\n  \"valsheid\": \"valsheid\",\n  \"valt\": \"valt\",\n  \"value\": \"value\",\n  \"valuta\": \"valuta\",\n  \"valvas\": \"valvas\",\n  \"vam\": \"vam\",\n  \"vamij\": \"vamij\",\n  \"vamil\": \"vamil\",\n  \"vamilregeling\": \"vamilregel\",\n  \"van\": \"van\",\n  \"vanaf\": \"vanaf\",\n  \"vanavond\": \"vanavond\",\n  \"vandaag\": \"vandag\",\n  \"vandaan\": \"vandan\",\n  \"vandaar\": \"vandar\",\n  \"vandalistische\": \"vandalistisch\",\n  \"vanderveen\": \"vanderven\",\n  \"vandien\": \"vandien\",\n  \"vandofix\": \"vandofix\",\n  \"vandoor\": \"vandor\",\n  \"vanga\": \"vanga\",\n  \"vangen\": \"vang\",\n  \"vangnet\": \"vangnet\",\n  \"vangnetregels\": \"vangnetregel\",\n  \"vangrail\": \"vangrail\",\n  \"vangst\": \"vangst\",\n  \"vangstbeperkingen\": \"vangstbeperk\",\n  \"vangsten\": \"vangst\",\n  \"vangstlimieten\": \"vangstlimiet\",\n  \"vangstquota\": \"vangstquota\",\n  \"vangstrendement\": \"vangstrendement\",\n  \"vangt\": \"vangt\",\n  \"vangveld\": \"vangveld\",\n  \"vanla\": \"vanla\",\n  \"vanmiddag\": \"vanmiddag\",\n  \"vanmorgen\": \"vanmorg\",\n  \"vannacht\": \"vannacht\",\n  \"vanochtend\": \"vanocht\",\n  \"vantevoren\": \"vantevor\",\n  \"vanuit\": \"vanuit\",\n  \"vanwaar\": \"vanwar\",\n  \"vanwege\": \"vanweg\",\n  \"vanzelf\": \"vanzelf\",\n  \"vanzelfsprekend\": \"vanzelfsprek\",\n  \"vapotherm\": \"vapotherm\",\n  \"var\": \"var\",\n  \"vara\": \"vara\",\n  \"varekamp\": \"varekamp\",\n  \"varen\": \"var\",\n  \"varend\": \"varend\",\n  \"varende\": \"varend\",\n  \"variabel\": \"variabel\",\n  \"variabele\": \"variabel\",\n  \"variabelen\": \"variabel\",\n  \"variabiliteit\": \"variabiliteit\",\n  \"variant\": \"variant\",\n  \"varianten\": \"variant\",\n  \"variatie\": \"variatie\",\n  \"variaties\": \"variaties\",\n  \"varieerde\": \"varieerd\",\n  \"varieert\": \"varieert\",\n  \"variëren\": \"varier\",\n  \"variërend\": \"varier\",\n  \"variëteit\": \"varieteit\",\n  \"varirende\": \"varir\",\n  \"varkelsingel\": \"varkelsingel\",\n  \"varken\": \"vark\",\n  \"varkens\": \"varken\",\n  \"varkensbedrijf\": \"varkensbedrijf\",\n  \"varkensbedrijven\": \"varkensbedrijv\",\n  \"varkensboeren\": \"varkensboer\",\n  \"varkensdrijfmest\": \"varkensdrijfmest\",\n  \"varkensfokkerij\": \"varkensfokkerij\",\n  \"varkensfosfaat\": \"varkensfosfat\",\n  \"varkenshouder\": \"varkenshouder\",\n  \"varkenshouderij\": \"varkenshouderij\",\n  \"varkenshouderijen\": \"varkenshouderij\",\n  \"varkenshouders\": \"varkenshouder\",\n  \"varkensmest\": \"varkensmest\",\n  \"varkensmester\": \"varkensmester\",\n  \"varkensmesters\": \"varkensmester\",\n  \"varkensproefbedrijf\": \"varkensproefbedrijf\",\n  \"varkensquotumregeling\": \"varkensquotumregel\",\n  \"varkenssector\": \"varkenssector\",\n  \"varkensstapel\": \"varkensstapel\",\n  \"varkensstaten\": \"varkensstat\",\n  \"varkensvlees\": \"varkensvles\",\n  \"varkensvoer\": \"varkensvoer\",\n  \"varta\": \"varta\",\n  \"varteig\": \"varteig\",\n  \"vas\": \"vas\",\n  \"vast\": \"vast\",\n  \"vastbedvergassing\": \"vastbedvergass\",\n  \"vaste\": \"vast\",\n  \"vasteland\": \"vasteland\",\n  \"vaster\": \"vaster\",\n  \"vastestofgehalte\": \"vastestofgehalt\",\n  \"vastgegroeid\": \"vastgegroeid\",\n  \"vastgehouden\": \"vastgehoud\",\n  \"vastgeketend\": \"vastgeket\",\n  \"vastgeklonken\": \"vastgeklonk\",\n  \"vastgelegd\": \"vastgelegd\",\n  \"vastgelegde\": \"vastgelegd\",\n  \"vastgelopen\": \"vastgelop\",\n  \"vastgemeerd\": \"vastgemeerd\",\n  \"vastgepakt\": \"vastgepakt\",\n  \"vastgesteld\": \"vastgesteld\",\n  \"vastgestelde\": \"vastgesteld\",\n  \"vastgevroren\": \"vastgevror\",\n  \"vastgeworteld\": \"vastgeworteld\",\n  \"vastgezet\": \"vastgezet\",\n  \"vastgezeten\": \"vastgezet\",\n  \"vastgoed\": \"vastgoed\",\n  \"vastgoedontwikkeling\": \"vastgoedontwikkel\",\n  \"vastgroeide\": \"vastgroeid\",\n  \"vastgroeien\": \"vastgroei\",\n  \"vastheid\": \"vastheid\",\n  \"vasthield\": \"vasthield\",\n  \"vasthielden\": \"vasthield\",\n  \"vasthouden\": \"vasthoud\",\n  \"vasthoudende\": \"vasthoud\",\n  \"vasthoudingen\": \"vasthoud\",\n  \"vasthoudt\": \"vasthoudt\",\n  \"vastklampende\": \"vastklamp\",\n  \"vastklampingen\": \"vastklamp\",\n  \"vastleggen\": \"vastlegg\",\n  \"vastlegging\": \"vastlegg\",\n  \"vastloopt\": \"vastloopt\",\n  \"vastpakte\": \"vastpakt\",\n  \"vastpint\": \"vastpint\",\n  \"vaststaat\": \"vaststat\",\n  \"vaststellen\": \"vaststell\",\n  \"vaststelling\": \"vaststell\",\n  \"vaststellingsbesluiten\": \"vaststellingsbesluit\",\n  \"vaststelt\": \"vaststelt\",\n  \"vastzetcode\": \"vastzetcod\",\n  \"vat\": \"vat\",\n  \"vatbaar\": \"vatbar\",\n  \"vaten\": \"vat\",\n  \"vatenhandling\": \"vatenhandl\",\n  \"vatenlifter\": \"vatenlifter\",\n  \"vatenopslagsystemen\": \"vatenopslagsystem\",\n  \"vatenpallet\": \"vatenpallet\",\n  \"vatenpompen\": \"vatenpomp\",\n  \"vatentransport\": \"vatentransport\",\n  \"vathorst\": \"vathorst\",\n  \"vaticaan\": \"vatican\",\n  \"vatte\": \"vat\",\n  \"vatten\": \"vat\",\n  \"vattende\": \"vattend\",\n  \"vavi\": \"vavi\",\n  \"vazallen\": \"vazall\",\n  \"vazalletjes\": \"vazalletjes\",\n  \"vazen\": \"vaz\",\n  \"vb\": \"vb\",\n  \"vbbm\": \"vbbm\",\n  \"vbm\": \"vbm\",\n  \"vbnm\": \"vbnm\",\n  \"vbr\": \"vbr\",\n  \"vbw\": \"vbw\",\n  \"vca\": \"vca\",\n  \"vcbw\": \"vcbw\",\n  \"vci\": \"vci\",\n  \"vda\": \"vda\",\n  \"vdi\": \"vdi\",\n  \"veba\": \"veba\",\n  \"vecht\": \"vecht\",\n  \"vechten\": \"vecht\",\n  \"vechtplassen\": \"vechtplass\",\n  \"vechtplassengebied\": \"vechtplassengebied\",\n  \"vechtstreek\": \"vechtstrek\",\n  \"vee\": \"vee\",\n  \"veebedrijf\": \"veebedrijf\",\n  \"veebedrijven\": \"veebedrijv\",\n  \"veebezetting\": \"veebezet\",\n  \"veeboeren\": \"veeboer\",\n  \"veedichtheid\": \"veedicht\",\n  \"veeg\": \"veg\",\n  \"veegde\": \"veegd\",\n  \"veegden\": \"veegd\",\n  \"veegmachine\": \"veegmachin\",\n  \"veegmachines\": \"veegmachines\",\n  \"veegroutes\": \"veegroutes\",\n  \"veegt\": \"veegt\",\n  \"veegvuil\": \"veegvuil\",\n  \"veegwagens\": \"veegwagen\",\n  \"veehouder\": \"veehouder\",\n  \"veehouderij\": \"veehouderij\",\n  \"veehouderijbedrijven\": \"veehouderijbedrijv\",\n  \"veehouderijen\": \"veehouderij\",\n  \"veehouders\": \"veehouder\",\n  \"veehoudersbedrijven\": \"veehoudersbedrijv\",\n  \"veehoudersfamilie\": \"veehoudersfamilie\",\n  \"veeken\": \"vek\",\n  \"veel\": \"vel\",\n  \"véel\": \"vel\",\n  \"veelal\": \"veelal\",\n  \"veelbelovend\": \"veelbelov\",\n  \"veelbelovende\": \"veelbelov\",\n  \"veelde\": \"veeld\",\n  \"veeleer\": \"veeler\",\n  \"veeleisend\": \"veeleis\",\n  \"veelgebruikte\": \"veelgebruikt\",\n  \"veelgevraagde\": \"veelgevraagd\",\n  \"veelheid\": \"veelheid\",\n  \"veelomvattende\": \"veelomvat\",\n  \"veelvoud\": \"veelvoud\",\n  \"veelvuldig\": \"veelvuld\",\n  \"veen\": \"ven\",\n  \"veendam\": \"veendam\",\n  \"veenendaal\": \"veenendal\",\n  \"veenendaalse\": \"veenendal\",\n  \"veengebieden\": \"veengebied\",\n  \"veengrond\": \"veengrond\",\n  \"veengronden\": \"veengrond\",\n  \"veenhuizen\": \"veenhuiz\",\n  \"veenkoloniale\": \"veenkolonial\",\n  \"veenkoloniën\": \"veenkolonien\",\n  \"veenman\": \"veenman\",\n  \"veenpluis\": \"veenpluis\",\n  \"veenweide\": \"veenweid\",\n  \"veenweidegebied\": \"veenweidegebied\",\n  \"veenweidelandschap\": \"veenweidelandschap\",\n  \"veenwinning\": \"veenwinn\",\n  \"veer\": \"ver\",\n  \"veerboten\": \"veerbot\",\n  \"veerdam\": \"veerdam\",\n  \"veerkracht\": \"veerkracht\",\n  \"veerse\": \"ver\",\n  \"veerstraat\": \"veerstrat\",\n  \"veersysteem\": \"veersystem\",\n  \"veertien\": \"veertien\",\n  \"veertiende\": \"veertiend\",\n  \"veertig\": \"veertig\",\n  \"veèrtig\": \"veèrtig\",\n  \"veesoorten\": \"veesoort\",\n  \"veestallen\": \"veestall\",\n  \"veestapel\": \"veestapel\",\n  \"veestapels\": \"veestapel\",\n  \"veeteelt\": \"veeteelt\",\n  \"veetelers\": \"veeteler\",\n  \"veevoeder\": \"veevoeder\",\n  \"veevoederbedrijf\": \"veevoederbedrijf\",\n  \"veevoederindustrie\": \"veevoederindustrie\",\n  \"veevoedernorm\": \"veevoedernorm\",\n  \"veevoedingsmaatregelen\": \"veevoedingsmaatregel\",\n  \"veevoer\": \"veevoer\",\n  \"veevoermaatregelen\": \"veevoermaatregel\",\n  \"veeziekten\": \"veeziekt\",\n  \"vega\": \"vega\",\n  \"vegen\": \"veg\",\n  \"vegetatie\": \"vegetatie\",\n  \"vegetatiedak\": \"vegetatiedak\",\n  \"vegetaties\": \"vegetaties\",\n  \"vegetatiezones\": \"vegetatiezones\",\n  \"vegeteerden\": \"vegeteerd\",\n  \"vegeteren\": \"vegeter\",\n  \"veghel\": \"veghel\",\n  \"vehicle\": \"vehicl\",\n  \"vehicles\": \"vehicles\",\n  \"vehikel\": \"vehikel\",\n  \"veilig\": \"veilig\",\n  \"veilige\": \"veilig\",\n  \"veiliger\": \"veiliger\",\n  \"veiligheid\": \"veilig\",\n  \"veiligheidniveau\": \"veiligheidniveau\",\n  \"veiligheids\": \"veilig\",\n  \"veiligheidsanalyses\": \"veiligheidsanalyses\",\n  \"veiligheidsaspecten\": \"veiligheidsaspect\",\n  \"veiligheidsbelang\": \"veiligheidsbelang\",\n  \"veiligheidsbeschouwing\": \"veiligheidsbeschouw\",\n  \"veiligheidseisen\": \"veiligheidseis\",\n  \"veiligheidsgebied\": \"veiligheidsgebied\",\n  \"veiligheidshelmen\": \"veiligheidshelm\",\n  \"veiligheidskranen\": \"veiligheidskran\",\n  \"veiligheidsmaatregelen\": \"veiligheidsmaatregel\",\n  \"veiligheidsmanagementsysteem\": \"veiligheidsmanagementsystem\",\n  \"veiligheidsmarge\": \"veiligheidsmarg\",\n  \"veiligheidsmarges\": \"veiligheidsmarges\",\n  \"veiligheidsniveau\": \"veiligheidsniveau\",\n  \"veiligheidsnorm\": \"veiligheidsnorm\",\n  \"veiligheidsnormen\": \"veiligheidsnorm\",\n  \"veiligheidsplatform\": \"veiligheidsplatform\",\n  \"veiligheidspolitiek\": \"veiligheidspolitiek\",\n  \"veiligheidsprestaties\": \"veiligheidsprestaties\",\n  \"veiligheidsproeven\": \"veiligheidsproev\",\n  \"veiligheidsraad\": \"veiligheidsrad\",\n  \"veiligheidsrapportage\": \"veiligheidsrapportag\",\n  \"veiligheidsrisico\": \"veiligheidsrisico\",\n  \"veiligheidsschoenen\": \"veiligheidsschoen\",\n  \"veiligheidsstelling\": \"veiligheidsstell\",\n  \"veiligheidsstudies\": \"veiligheidsstudies\",\n  \"veiligheidssysteem\": \"veiligheidssystem\",\n  \"veiligheidssystemen\": \"veiligheidssystem\",\n  \"veiligheidstechniek\": \"veiligheidstechniek\",\n  \"veiligheidsventielen\": \"veiligheidsventiel\",\n  \"veiligheidsvoorschriften\": \"veiligheidsvoorschrift\",\n  \"veiligs\": \"veilig\",\n  \"veiligste\": \"veiligst\",\n  \"veiligstellen\": \"veiligstell\",\n  \"veiling\": \"veiling\",\n  \"veilinghal\": \"veilinghal\",\n  \"veine\": \"vein\",\n  \"veitsiluoto\": \"veitsiluoto\",\n  \"veka\": \"veka\",\n  \"vel\": \"vel\",\n  \"veld\": \"veld\",\n  \"veldbrand\": \"veldbrand\",\n  \"velddelicten\": \"velddelict\",\n  \"velddienst\": \"velddienst\",\n  \"velden\": \"veld\",\n  \"velders\": \"velder\",\n  \"veldexperimenten\": \"veldexperiment\",\n  \"veldhoven\": \"veldhov\",\n  \"veldhuis\": \"veldhuis\",\n  \"veldpolitie\": \"veldpolitie\",\n  \"veldproeven\": \"veldproev\",\n  \"veldtest\": \"veldtest\",\n  \"velduitbreidingen\": \"velduitbreid\",\n  \"vele\": \"vel\",\n  \"véle\": \"vel\",\n  \"velen\": \"vel\",\n  \"vélen\": \"vel\",\n  \"velerlei\": \"velerlei\",\n  \"veligheidsinformatiebladen\": \"veligheidsinformatieblad\",\n  \"vellen\": \"vell\",\n  \"velletje\": \"velletj\",\n  \"vellinga\": \"vellinga\",\n  \"velouté\": \"velout\",\n  \"velp\": \"velp\",\n  \"velperbroek\": \"velperbroek\",\n  \"velsen\": \"vels\",\n  \"veltman\": \"veltman\",\n  \"veluwe\": \"veluw\",\n  \"veluwse\": \"veluw\",\n  \"velzen\": \"velz\",\n  \"ven\": \"ven\",\n  \"venen\": \"ven\",\n  \"venestraat\": \"venestrat\",\n  \"venezolaanse\": \"venezolan\",\n  \"venezuela\": \"venezuela\",\n  \"venijn\": \"venijn\",\n  \"venlo\": \"venlo\",\n  \"vennen\": \"venn\",\n  \"vennep\": \"vennep\",\n  \"vennoot\": \"vennot\",\n  \"vennootschap\": \"vennootschap\",\n  \"vennootschappen\": \"vennootschapp\",\n  \"vennootschaps\": \"vennootschap\",\n  \"vennootschapsbelasting\": \"vennootschapsbelast\",\n  \"vennootschapsbelastingen\": \"vennootschapsbelast\",\n  \"vennootsschaps\": \"vennootsschap\",\n  \"venster\": \"venster\",\n  \"venstergordijnen\": \"venstergordijn\",\n  \"vensterguipure\": \"vensterguipur\",\n  \"vensterogen\": \"vensterog\",\n  \"vensterposten\": \"vensterpost\",\n  \"vensters\": \"venster\",\n  \"vent\": \"vent\",\n  \"ventiel\": \"ventiel\",\n  \"ventielen\": \"ventiel\",\n  \"ventielsystemen\": \"ventielsystem\",\n  \"ventilatie\": \"ventilatie\",\n  \"ventilatiehoeveelheden\": \"ventilatiehoevel\",\n  \"ventilatiekanalen\": \"ventilatiekanal\",\n  \"ventilatielucht\": \"ventilatielucht\",\n  \"ventilatiemogelijkheid\": \"ventilatiemog\",\n  \"ventilatiesysteem\": \"ventilatiesystem\",\n  \"ventilatiesystemen\": \"ventilatiesystem\",\n  \"ventilating\": \"ventilat\",\n  \"ventilator\": \"ventilator\",\n  \"ventilatorbladen\": \"ventilatorblad\",\n  \"ventilatorcapaciteit\": \"ventilatorcapaciteit\",\n  \"ventilatoren\": \"ventilator\",\n  \"ventje\": \"ventj\",\n  \"venture\": \"ventur\",\n  \"ventures\": \"ventures\",\n  \"venturi\": \"venturi\",\n  \"venushaar\": \"venushar\",\n  \"veoorzaakt\": \"veoorzaakt\",\n  \"vepakkingsregels\": \"vepakkingsregel\",\n  \"ver\": \"ver\",\n  \"vèr\": \"vèr\",\n  \"verachte\": \"veracht\",\n  \"verachting\": \"veracht\",\n  \"verademen\": \"veradem\",\n  \"verademing\": \"veradem\",\n  \"verafgelegen\": \"verafgeleg\",\n  \"verafgood\": \"verafgod\",\n  \"verafgoodde\": \"verafgod\",\n  \"verafgoodden\": \"verafgod\",\n  \"veranda\": \"veranda\",\n  \"veranderd\": \"veranderd\",\n  \"veranderde\": \"veranderd\",\n  \"veranderden\": \"veranderd\",\n  \"veranderen\": \"verander\",\n  \"veranderende\": \"verander\",\n  \"verandering\": \"verander\",\n  \"veranderingen\": \"verander\",\n  \"veranderings\": \"verander\",\n  \"veranderingsproces\": \"veranderingsproces\",\n  \"veranderingsprocessen\": \"veranderingsprocess\",\n  \"verandert\": \"verandert\",\n  \"verankerd\": \"verankerd\",\n  \"verantwoord\": \"verantwoord\",\n  \"verantwoorde\": \"verantwoord\",\n  \"verantwoordelijk\": \"verantwoord\",\n  \"verantwoordelijke\": \"verantwoord\",\n  \"verantwoordelijken\": \"verantwoord\",\n  \"verantwoordelijkheden\": \"verantwoord\",\n  \"verantwoordelijkheid\": \"verantwoord\",\n  \"verantwoorden\": \"verantwoord\",\n  \"verantwoording\": \"verantwoord\",\n  \"verarmd\": \"verarmd\",\n  \"verarmde\": \"verarmd\",\n  \"verarming\": \"verarm\",\n  \"verarmt\": \"verarmt\",\n  \"verbaaasd\": \"verbaaasd\",\n  \"verbaal\": \"verbal\",\n  \"verbaasd\": \"verbaasd\",\n  \"verbaasde\": \"verbaasd\",\n  \"verbaast\": \"verbaast\",\n  \"verbaliseerd\": \"verbaliseerd\",\n  \"verband\": \"verband\",\n  \"verbanden\": \"verband\",\n  \"verbannen\": \"verbann\",\n  \"verbasterd\": \"verbasterd\",\n  \"verbazen\": \"verbaz\",\n  \"verbazend\": \"verbaz\",\n  \"verbazing\": \"verbaz\",\n  \"verbeek\": \"verbek\",\n  \"verbeeld\": \"verbeeld\",\n  \"verbeeldde\": \"verbeeld\",\n  \"verbeelden\": \"verbeeld\",\n  \"verbeelding\": \"verbeeld\",\n  \"verbeeldingen\": \"verbeeld\",\n  \"verbeeldt\": \"verbeeldt\",\n  \"verberg\": \"verberg\",\n  \"verbergen\": \"verberg\",\n  \"verbergt\": \"verbergt\",\n  \"verberne\": \"verbern\",\n  \"verbeterd\": \"verbeterd\",\n  \"verbeterde\": \"verbeterd\",\n  \"verbeterdoelstelling\": \"verbeterdoelstell\",\n  \"verbeterdoelstellingen\": \"verbeterdoelstell\",\n  \"verbeteren\": \"verbeter\",\n  \"verbetering\": \"verbeter\",\n  \"verbeteringen\": \"verbeter\",\n  \"verbeterprogramma\": \"verbeterprogramma\",\n  \"verbetert\": \"verbetert\",\n  \"verbied\": \"verbied\",\n  \"verbieden\": \"verbied\",\n  \"verbiedt\": \"verbiedt\",\n  \"verbijsterd\": \"verbijsterd\",\n  \"verbinden\": \"verbind\",\n  \"verbinding\": \"verbind\",\n  \"verbindingen\": \"verbind\",\n  \"verbindingskanaal\": \"verbindingskanal\",\n  \"verbindingssystemen\": \"verbindingssystem\",\n  \"verbindingsweg\": \"verbindingsweg\",\n  \"verbindingswegen\": \"verbindingsweg\",\n  \"verbindingszone\": \"verbindingszon\",\n  \"verbindingszones\": \"verbindingszones\",\n  \"verbitst\": \"verbitst\",\n  \"verbitterd\": \"verbitterd\",\n  \"verbitterde\": \"verbitterd\",\n  \"verbittering\": \"verbitter\",\n  \"verblankende\": \"verblank\",\n  \"verbleekt\": \"verbleekt\",\n  \"verbleekte\": \"verbleekt\",\n  \"verbleekten\": \"verbleekt\",\n  \"verbleking\": \"verblek\",\n  \"verbleven\": \"verblev\",\n  \"verblijf\": \"verblijf\",\n  \"verblijfsruimten\": \"verblijfsruimt\",\n  \"verblijft\": \"verblijft\",\n  \"verblijven\": \"verblijv\",\n  \"verblind\": \"verblind\",\n  \"verblindde\": \"verblind\",\n  \"verblinden\": \"verblind\",\n  \"verblindend\": \"verblind\",\n  \"verblindende\": \"verblind\",\n  \"verblinding\": \"verblind\",\n  \"verbod\": \"verbod\",\n  \"verboden\": \"verbod\",\n  \"verbolgen\": \"verbolg\",\n  \"verbond\": \"verbond\",\n  \"verbonden\": \"verbond\",\n  \"verbood\": \"verbod\",\n  \"verboosd\": \"verboosd\",\n  \"verborg\": \"verborg\",\n  \"verborgen\": \"verborg\",\n  \"verborgenheden\": \"verborg\",\n  \"verbouwd\": \"verbouwd\",\n  \"verbouwde\": \"verbouwd\",\n  \"verbouwen\": \"verbouw\",\n  \"verbouwingen\": \"verbouw\",\n  \"verbraken\": \"verbrak\",\n  \"verbrand\": \"verbrand\",\n  \"verbrandbare\": \"verbrand\",\n  \"verbrande\": \"verbrand\",\n  \"verbranden\": \"verbrand\",\n  \"verbranding\": \"verbrand\",\n  \"verbrandingscapaciteit\": \"verbrandingscapaciteit\",\n  \"verbrandingsenergie\": \"verbrandingsenergie\",\n  \"verbrandingsgas\": \"verbrandingsgas\",\n  \"verbrandingsgassen\": \"verbrandingsgass\",\n  \"verbrandingsinstallatie\": \"verbrandingsinstallatie\",\n  \"verbrandingsinstallaties\": \"verbrandingsinstallaties\",\n  \"verbrandingskamer\": \"verbrandingskamer\",\n  \"verbrandingskamers\": \"verbrandingskamer\",\n  \"verbrandingslijn\": \"verbrandingslijn\",\n  \"verbrandingslucht\": \"verbrandingslucht\",\n  \"verbrandingsoptie\": \"verbrandingsoptie\",\n  \"verbrandingsoven\": \"verbrandingsov\",\n  \"verbrandingsovens\": \"verbrandingsoven\",\n  \"verbrandingsproces\": \"verbrandingsproces\",\n  \"verbrandingsprocessen\": \"verbrandingsprocess\",\n  \"verbrandingsprodukten\": \"verbrandingsprodukt\",\n  \"verbrandingsresten\": \"verbrandingsrest\",\n  \"verbrandingsslakken\": \"verbrandingsslak\",\n  \"verbrandingssysteem\": \"verbrandingssystem\",\n  \"verbrandingstarief\": \"verbrandingstarief\",\n  \"verbrandingstechniek\": \"verbrandingstechniek\",\n  \"verbrandingstechnieken\": \"verbrandingstechniek\",\n  \"verbrandingstechnologie\": \"verbrandingstechnologie\",\n  \"verbrandingstemperatuur\": \"verbrandingstemperatur\",\n  \"verbrandingswaarde\": \"verbrandingswaard\",\n  \"verbrandingswarmte\": \"verbrandingswarmt\",\n  \"verbrandt\": \"verbrandt\",\n  \"verbrede\": \"verbred\",\n  \"verbreden\": \"verbred\",\n  \"verbreding\": \"verbred\",\n  \"verbreed\": \"verbred\",\n  \"verbreedden\": \"verbred\",\n  \"verbreekt\": \"verbreekt\",\n  \"verbreid\": \"verbreid\",\n  \"verbreken\": \"verbrek\",\n  \"verbrijzelen\": \"verbrijzel\",\n  \"verbroederen\": \"verbroeder\",\n  \"verbroederlijken\": \"verbroeder\",\n  \"verbroederlijkt\": \"verbroederlijkt\",\n  \"verbroken\": \"verbrok\",\n  \"verbrugge\": \"verbrugg\",\n  \"verbruggen\": \"verbrugg\",\n  \"verbruik\": \"verbruik\",\n  \"verbruiken\": \"verbruik\",\n  \"verbruikers\": \"verbruiker\",\n  \"verbruiksbelasting\": \"verbruiksbelast\",\n  \"verbruiksgoederen\": \"verbruiksgoeder\",\n  \"verbruiksvolume\": \"verbruiksvolum\",\n  \"verbruikt\": \"verbruikt\",\n  \"verbruikte\": \"verbruikt\",\n  \"verbugt\": \"verbugt\",\n  \"verburgerlijkt\": \"verburgerlijkt\",\n  \"verburgerlijkte\": \"verburgerlijkt\",\n  \"verchroominrichting\": \"verchroominricht\",\n  \"vercirkelen\": \"vercirkel\",\n  \"vercomposteerd\": \"vercomposteerd\",\n  \"vercomposteert\": \"vercomposteert\",\n  \"verdacht\": \"verdacht\",\n  \"verdachte\": \"verdacht\",\n  \"verdachten\": \"verdacht\",\n  \"verdampen\": \"verdamp\",\n  \"verdamper\": \"verdamper\",\n  \"verdampers\": \"verdamper\",\n  \"verdamping\": \"verdamp\",\n  \"verdampingsmeter\": \"verdampingsmeter\",\n  \"verdampingsronde\": \"verdampingsrond\",\n  \"verdampingssysteem\": \"verdampingssystem\",\n  \"verdampingstemperatuur\": \"verdampingstemperatur\",\n  \"verdampt\": \"verdampt\",\n  \"verdamptemperatuur\": \"verdamptemperatur\",\n  \"verdedig\": \"verded\",\n  \"verdedigbaar\": \"verdedig\",\n  \"verdedigd\": \"verdedigd\",\n  \"verdedigde\": \"verdedigd\",\n  \"verdedigen\": \"verded\",\n  \"verdedigend\": \"verded\",\n  \"verdedigende\": \"verded\",\n  \"verdediger\": \"verdediger\",\n  \"verdediging\": \"verded\",\n  \"verdedigingslinie\": \"verdedigingslinie\",\n  \"verdedigingssystemen\": \"verdedigingssystem\",\n  \"verdedigingswerken\": \"verdedigingswerk\",\n  \"verdedigt\": \"verdedigt\",\n  \"verdeel\": \"verdel\",\n  \"verdeeld\": \"verdeeld\",\n  \"verdeelde\": \"verdeeld\",\n  \"verdeeldheid\": \"verdeeld\",\n  \"verdeelnet\": \"verdeelnet\",\n  \"verdeelplan\": \"verdeelplan\",\n  \"verdeelsleutel\": \"verdeelsleutel\",\n  \"verdeelstations\": \"verdeelstation\",\n  \"verdeelstelsel\": \"verdeelstelsel\",\n  \"verdeelt\": \"verdeelt\",\n  \"verdelen\": \"verdel\",\n  \"verdeling\": \"verdel\",\n  \"verdelingen\": \"verdel\",\n  \"verdenking\": \"verdenk\",\n  \"verdenkt\": \"verdenkt\",\n  \"verder\": \"verder\",\n  \"vèrder\": \"vèrder\",\n  \"verdere\": \"verder\",\n  \"verderf\": \"verderf\",\n  \"verdergaand\": \"verdergaand\",\n  \"verdergaande\": \"verdergaand\",\n  \"verderop\": \"verderop\",\n  \"verdicht\": \"verdicht\",\n  \"verdichten\": \"verdicht\",\n  \"verdichting\": \"verdicht\",\n  \"verdichtingsprincipe\": \"verdichtingsprincip\",\n  \"verdien\": \"verdien\",\n  \"verdiend\": \"verdiend\",\n  \"verdiende\": \"verdiend\",\n  \"verdienden\": \"verdiend\",\n  \"verdienen\": \"verdien\",\n  \"verdienste\": \"verdienst\",\n  \"verdienstelijk\": \"verdienst\",\n  \"verdiensten\": \"verdienst\",\n  \"verdient\": \"verdient\",\n  \"verdiepen\": \"verdiep\",\n  \"verdieping\": \"verdiep\",\n  \"verdiepingen\": \"verdiep\",\n  \"verdiepingsvloeren\": \"verdiepingsvloer\",\n  \"verdiept\": \"verdiept\",\n  \"verdiepte\": \"verdiept\",\n  \"verdisconteerd\": \"verdisconteerd\",\n  \"verdoen\": \"verdoen\",\n  \"verdoet\": \"verdoet\",\n  \"verdoezeld\": \"verdoezeld\",\n  \"verdomd\": \"verdomd\",\n  \"verdòmd\": \"verdòmd\",\n  \"verdomde\": \"verdomd\",\n  \"verdómde\": \"verdomd\",\n  \"verdomme\": \"verdomm\",\n  \"verdommen\": \"verdomm\",\n  \"verdorde\": \"verdord\",\n  \"verdorren\": \"verdorr\",\n  \"verdorven\": \"verdorv\",\n  \"verdoving\": \"verdov\",\n  \"verdraag\": \"verdrag\",\n  \"verdraagzaam\": \"verdraagzam\",\n  \"verdraagzaamheid\": \"verdraagzam\",\n  \"verdraai\": \"verdraai\",\n  \"verdraaiing\": \"verdraai\",\n  \"verdraait\": \"verdraait\",\n  \"verdrag\": \"verdrag\",\n  \"verdragen\": \"verdrag\",\n  \"verdrie\": \"verdrie\",\n  \"verdriet\": \"verdriet\",\n  \"verdrietige\": \"verdriet\",\n  \"verdrievoudigd\": \"verdrievoudigd\",\n  \"verdrievoudigen\": \"verdrievoud\",\n  \"verdrievoudiging\": \"verdrievoud\",\n  \"verdrijven\": \"verdrijv\",\n  \"verdringen\": \"verdring\",\n  \"verdringerpomp\": \"verdringerpomp\",\n  \"verdringingsprincipe\": \"verdringingsprincip\",\n  \"verdringt\": \"verdringt\",\n  \"verdrinken\": \"verdrink\",\n  \"verdrinkende\": \"verdrink\",\n  \"verdrinking\": \"verdrink\",\n  \"verdrogen\": \"verdrog\",\n  \"verdroging\": \"verdrog\",\n  \"verdrogingsbeleid\": \"verdrogingsbeleid\",\n  \"verdrogingsbestrijding\": \"verdrogingsbestrijd\",\n  \"verdrogingsproblematiek\": \"verdrogingsproblematiek\",\n  \"verdrongen\": \"verdrong\",\n  \"verdronk\": \"verdronk\",\n  \"verdronken\": \"verdronk\",\n  \"verdroogd\": \"verdroogd\",\n  \"verdropen\": \"verdrop\",\n  \"verdrukken\": \"verdruk\",\n  \"verdrukking\": \"verdruk\",\n  \"verdrukt\": \"verdrukt\",\n  \"verdrukte\": \"verdrukt\",\n  \"verdruppeling\": \"verdruppel\",\n  \"verdubbeld\": \"verdubbeld\",\n  \"verdubbelde\": \"verdubbeld\",\n  \"verdubbelen\": \"verdubbel\",\n  \"verdubbeling\": \"verdubbel\",\n  \"verdubbelt\": \"verdubbelt\",\n  \"verduistert\": \"verduistert\",\n  \"verduiveld\": \"verduiveld\",\n  \"verdund\": \"verdund\",\n  \"verdunde\": \"verdund\",\n  \"verdunning\": \"verdunn\",\n  \"verdunningsapparaat\": \"verdunningsapparat\",\n  \"verdunt\": \"verdunt\",\n  \"verduren\": \"verdur\",\n  \"verduurzaamd\": \"verduurzaamd\",\n  \"verduurzamen\": \"verduurzam\",\n  \"verdwaalde\": \"verdwaald\",\n  \"verdwalen\": \"verdwal\",\n  \"verdween\": \"verdwen\",\n  \"verdwenen\": \"verdwen\",\n  \"verdwijn\": \"verdwijn\",\n  \"verdwijnen\": \"verdwijn\",\n  \"verdwijnend\": \"verdwijn\",\n  \"verdwijnende\": \"verdwijn\",\n  \"verdwijning\": \"verdwijn\",\n  \"verdwijnt\": \"verdwijnt\",\n  \"veredeling\": \"veredel\",\n  \"veredelingsbedrijven\": \"veredelingsbedrijv\",\n  \"veredelingsprogramma\": \"veredelingsprogramma\",\n  \"vereende\": \"vereend\",\n  \"vereeniging\": \"veren\",\n  \"vereenvoudigd\": \"vereenvoudigd\",\n  \"vereenvoudigde\": \"vereenvoudigd\",\n  \"vereenvoudigen\": \"vereenvoud\",\n  \"vereenvoudiging\": \"vereenvoud\",\n  \"vereenzaamd\": \"vereenzaamd\",\n  \"vereenzaamde\": \"vereenzaamd\",\n  \"vereenzelvigd\": \"vereenzelvigd\",\n  \"vereerd\": \"vereerd\",\n  \"vereerde\": \"vereerd\",\n  \"vereerder\": \"vereerder\",\n  \"vereffend\": \"vereff\",\n  \"vereffende\": \"vereff\",\n  \"vereffening\": \"vereffen\",\n  \"vereinigte\": \"vereinigt\",\n  \"vereinigung\": \"vereinigung\",\n  \"vereisen\": \"vereis\",\n  \"vereist\": \"vereist\",\n  \"vereiste\": \"vereist\",\n  \"vereisten\": \"vereist\",\n  \"veren\": \"ver\",\n  \"verenen\": \"veren\",\n  \"verenigd\": \"verenigd\",\n  \"verenigde\": \"verenigd\",\n  \"verenigden\": \"verenigd\",\n  \"verenigen\": \"veren\",\n  \"vereniging\": \"veren\",\n  \"verenigingen\": \"veren\",\n  \"verenigingsmolens\": \"verenigingsmolen\",\n  \"verenigingstijdschrift\": \"verenigingstijdschrift\",\n  \"verenigt\": \"verenigt\",\n  \"verergerd\": \"verergerd\",\n  \"verergeren\": \"vererger\",\n  \"verevening\": \"vereven\",\n  \"verf\": \"verf\",\n  \"verfafval\": \"verfafval\",\n  \"verfapplicatie\": \"verfapplicatie\",\n  \"verfbranchevereniging\": \"verfbrancheveren\",\n  \"verfconvenant\": \"verfconvenant\",\n  \"verfde\": \"verfd\",\n  \"verffabrieken\": \"verffabriek\",\n  \"verffabrikanten\": \"verffabrikant\",\n  \"verfhoudende\": \"verfhoud\",\n  \"verfijnd\": \"verfijnd\",\n  \"verfijnde\": \"verfijnd\",\n  \"verfijnder\": \"verfijnder\",\n  \"verfijnen\": \"verfijn\",\n  \"verfijning\": \"verfijn\",\n  \"verfindustrie\": \"verfindustrie\",\n  \"verflaag\": \"verflag\",\n  \"verflensende\": \"verflens\",\n  \"verflijn\": \"verflijn\",\n  \"verfomzet\": \"verfomzet\",\n  \"verfproducenten\": \"verfproducent\",\n  \"verfprodukten\": \"verfprodukt\",\n  \"verfrestanten\": \"verfrestant\",\n  \"verfrissends\": \"verfriss\",\n  \"verfriste\": \"verfrist\",\n  \"verfsector\": \"verfsector\",\n  \"verfsoorten\": \"verfsoort\",\n  \"verfstof\": \"verfstof\",\n  \"verfsysteem\": \"verfsystem\",\n  \"verfsystemen\": \"verfsystem\",\n  \"vergaan\": \"vergan\",\n  \"vergaand\": \"vergaand\",\n  \"vergaande\": \"vergaand\",\n  \"vergaard\": \"vergaard\",\n  \"vergaarde\": \"vergaard\",\n  \"vergaat\": \"vergat\",\n  \"vergaderboeren\": \"vergaderboer\",\n  \"vergaderen\": \"vergader\",\n  \"vergadering\": \"vergader\",\n  \"vergaderingen\": \"vergader\",\n  \"vergaf\": \"vergaf\",\n  \"vergaren\": \"vergar\",\n  \"vergaring\": \"vergar\",\n  \"vergassen\": \"vergass\",\n  \"vergasser\": \"vergasser\",\n  \"vergassers\": \"vergasser\",\n  \"vergassing\": \"vergass\",\n  \"vergassingsgedeelte\": \"vergassingsgedeelt\",\n  \"vergassingsinstallatie\": \"vergassingsinstallatie\",\n  \"vergast\": \"vergast\",\n  \"vergat\": \"vergat\",\n  \"vergaten\": \"vergat\",\n  \"vergde\": \"vergd\",\n  \"vergeef\": \"vergef\",\n  \"vergeefs\": \"vergef\",\n  \"vergeeft\": \"vergeeft\",\n  \"vergeeld\": \"vergeeld\",\n  \"vergeet\": \"verget\",\n  \"vergeetachtigheid\": \"vergeetacht\",\n  \"vergeleek\": \"vergelek\",\n  \"vergeleken\": \"vergelek\",\n  \"vergelijk\": \"vergelijk\",\n  \"vergelijkbaar\": \"vergelijk\",\n  \"vergelijkbare\": \"vergelijk\",\n  \"vergelijken\": \"vergelijk\",\n  \"vergelijkend\": \"vergelijk\",\n  \"vergelijkende\": \"vergelijk\",\n  \"vergelijking\": \"vergelijk\",\n  \"vergelijkingen\": \"vergelijk\",\n  \"vergelijkingsmateriaal\": \"vergelijkingsmateriaal\",\n  \"vergelijkt\": \"vergelijkt\",\n  \"vergemakkelijken\": \"vergemak\",\n  \"vergen\": \"verg\",\n  \"vergenoegen\": \"vergenoeg\",\n  \"vergetelheid\": \"vergetel\",\n  \"vergeten\": \"verget\",\n  \"vergetend\": \"verget\",\n  \"vergetende\": \"verget\",\n  \"vergeven\": \"vergev\",\n  \"vergevende\": \"vergev\",\n  \"vergevensgezind\": \"vergevensgezind\",\n  \"vergevensgezindheid\": \"vergevensgezind\",\n  \"vergeving\": \"vergev\",\n  \"vergezeld\": \"vergezeld\",\n  \"vergezelde\": \"vergezeld\",\n  \"vergezicht\": \"vergezicht\",\n  \"vergezichten\": \"vergezicht\",\n  \"vergheléken\": \"verghelek\",\n  \"vergheten\": \"verghet\",\n  \"vergheven\": \"verghev\",\n  \"vergiffenis\": \"vergiffenis\",\n  \"vergiftigd\": \"vergiftigd\",\n  \"vergiftigen\": \"vergift\",\n  \"vergiftiging\": \"vergift\",\n  \"verging\": \"verging\",\n  \"vergis\": \"vergis\",\n  \"vergissen\": \"vergiss\",\n  \"vergissing\": \"vergiss\",\n  \"vergissingen\": \"vergiss\",\n  \"vergist\": \"vergist\",\n  \"vergiste\": \"vergist\",\n  \"vergisten\": \"vergist\",\n  \"vergisting\": \"vergist\",\n  \"vergistingsinstallatie\": \"vergistingsinstallatie\",\n  \"vergistingsproces\": \"vergistingsproces\",\n  \"vergistingsproeven\": \"vergistingsproev\",\n  \"vergistingstechniek\": \"vergistingstechniek\",\n  \"verglaasd\": \"verglaasd\",\n  \"verglazen\": \"verglaz\",\n  \"verglazing\": \"verglaz\",\n  \"verglazingsproces\": \"verglazingsproces\",\n  \"vergoed\": \"vergoed\",\n  \"vergoeden\": \"vergoed\",\n  \"vergoeding\": \"vergoed\",\n  \"vergoedingen\": \"vergoed\",\n  \"vergoedingensysteem\": \"vergoedingensystem\",\n  \"vergoeilijkte\": \"vergoeilijkt\",\n  \"vergoelijken\": \"vergoelijk\",\n  \"vergoelijkend\": \"vergoelijk\",\n  \"vergoelijking\": \"vergoelijk\",\n  \"vergoelijkt\": \"vergoelijkt\",\n  \"vergoelijkte\": \"vergoelijkt\",\n  \"vergoèlijkte\": \"vergoèlijkt\",\n  \"vergrijzing\": \"vergrijz\",\n  \"vergroenen\": \"vergroen\",\n  \"vergroening\": \"vergroen\",\n  \"vergroot\": \"vergrot\",\n  \"vergrootte\": \"vergrot\",\n  \"vergroten\": \"vergrot\",\n  \"vergroting\": \"vergrot\",\n  \"vergruizer\": \"vergruizer\",\n  \"vergt\": \"vergt\",\n  \"vergulde\": \"verguld\",\n  \"vergun\": \"vergun\",\n  \"vergùn\": \"vergùn\",\n  \"vergund\": \"vergund\",\n  \"vergunde\": \"vergund\",\n  \"vergunning\": \"vergunn\",\n  \"vergunningaanvraag\": \"vergunningaanvrag\",\n  \"vergunningbeleid\": \"vergunningbeleid\",\n  \"vergunningen\": \"vergunn\",\n  \"vergunningenbeleid\": \"vergunningenbeleid\",\n  \"vergunningenbesluit\": \"vergunningenbesluit\",\n  \"vergunningenproces\": \"vergunningenproces\",\n  \"vergunningenstelsel\": \"vergunningenstelsel\",\n  \"vergunningenstop\": \"vergunningenstop\",\n  \"vergunningensysteem\": \"vergunningensystem\",\n  \"vergunninghouder\": \"vergunninghouder\",\n  \"vergunningplichtig\": \"vergunningplicht\",\n  \"vergunningplichtige\": \"vergunningplicht\",\n  \"vergunningprocedure\": \"vergunningprocedur\",\n  \"vergunningsaanvraag\": \"vergunningsaanvrag\",\n  \"vergunningsaanvragen\": \"vergunningsaanvrag\",\n  \"vergunningseisen\": \"vergunningseis\",\n  \"vergunningsnormen\": \"vergunningsnorm\",\n  \"vergunningsplicht\": \"vergunningsplicht\",\n  \"vergunningsprocedure\": \"vergunningsprocedur\",\n  \"vergunningstelsel\": \"vergunningstelsel\",\n  \"vergunningsverlening\": \"vergunningsverlen\",\n  \"vergunningsvoorschriften\": \"vergunningsvoorschrift\",\n  \"vergunningsvoorwaarden\": \"vergunningsvoorwaard\",\n  \"vergunningverlenende\": \"vergunningverlen\",\n  \"vergunningverlener\": \"vergunningverlener\",\n  \"vergunningverleners\": \"vergunningverlener\",\n  \"vergunningverlening\": \"vergunningverlen\",\n  \"vergunningverleningen\": \"vergunningverlen\",\n  \"vergunningvoorschrift\": \"vergunningvoorschrift\",\n  \"vergunningvoorschriften\": \"vergunningvoorschrift\",\n  \"vergunniningverlener\": \"vergunniningverlener\",\n  \"verhaal\": \"verhal\",\n  \"verhaald\": \"verhaald\",\n  \"verhaalde\": \"verhaald\",\n  \"verhaaltjes\": \"verhaaltjes\",\n  \"verhaastte\": \"verhaast\",\n  \"verhakselen\": \"verhaksel\",\n  \"verhalen\": \"verhal\",\n  \"verhandelbaar\": \"verhandel\",\n  \"verhandelbare\": \"verhandel\",\n  \"verhandeld\": \"verhandeld\",\n  \"verhandelen\": \"verhandel\",\n  \"verhangen\": \"verhang\",\n  \"verhard\": \"verhard\",\n  \"verharde\": \"verhard\",\n  \"verhardingen\": \"verhard\",\n  \"verhardingselementen\": \"verhardingselement\",\n  \"verheerlijken\": \"verher\",\n  \"verheerlijking\": \"verheerlijk\",\n  \"verheerlijkte\": \"verheerlijkt\",\n  \"verheffen\": \"verheff\",\n  \"verheffing\": \"verheff\",\n  \"verheijen\": \"verheij\",\n  \"verhelderd\": \"verhelderd\",\n  \"verhelderde\": \"verhelderd\",\n  \"vèrhelderde\": \"vèrhelderd\",\n  \"verhelderden\": \"verhelderd\",\n  \"verhelderende\": \"verhelder\",\n  \"verheldering\": \"verhelder\",\n  \"verhelen\": \"verhel\",\n  \"verhelpen\": \"verhelp\",\n  \"verhemelte\": \"verhemelt\",\n  \"verheugd\": \"verheugd\",\n  \"verheuging\": \"verheug\",\n  \"verheven\": \"verhev\",\n  \"verheyen\": \"verhey\",\n  \"verhief\": \"verhief\",\n  \"verhieven\": \"verhiev\",\n  \"verhinderd\": \"verhinderd\",\n  \"verhinderde\": \"verhinderd\",\n  \"verhinderden\": \"verhinderd\",\n  \"verhinderen\": \"verhinder\",\n  \"verhinderende\": \"verhinder\",\n  \"verhindering\": \"verhinder\",\n  \"verhindert\": \"verhindert\",\n  \"verhit\": \"verhit\",\n  \"verhitte\": \"verhit\",\n  \"verhitten\": \"verhit\",\n  \"verhitters\": \"verhitter\",\n  \"verhitting\": \"verhit\",\n  \"verhittingsmethoden\": \"verhittingsmethod\",\n  \"verhoeden\": \"verhoed\",\n  \"verhoeff\": \"verhoeff\",\n  \"verhoeve\": \"verhoev\",\n  \"verhogen\": \"verhog\",\n  \"verhoging\": \"verhog\",\n  \"verhogingen\": \"verhog\",\n  \"verholpen\": \"verholp\",\n  \"verhonderdvoudigd\": \"verhonderdvoudigd\",\n  \"verhoog\": \"verhog\",\n  \"verhoogd\": \"verhoogd\",\n  \"verhoogde\": \"verhoogd\",\n  \"verhoogt\": \"verhoogt\",\n  \"verhoor\": \"verhor\",\n  \"verhoord\": \"verhoord\",\n  \"verhoren\": \"verhor\",\n  \"verhouden\": \"verhoud\",\n  \"verhouding\": \"verhoud\",\n  \"verhoudingen\": \"verhoud\",\n  \"verhoudingsgewijs\": \"verhoudingsgewijs\",\n  \"verhuis\": \"verhuis\",\n  \"verhuisd\": \"verhuisd\",\n  \"verhuisde\": \"verhuisd\",\n  \"verhuisden\": \"verhuisd\",\n  \"verhuizen\": \"verhuiz\",\n  \"verhuizing\": \"verhuiz\",\n  \"verhulden\": \"verhuld\",\n  \"verhuren\": \"verhur\",\n  \"verhuur\": \"verhur\",\n  \"verhuurd\": \"verhuurd\",\n  \"verhuurder\": \"verhuurder\",\n  \"verhuurders\": \"verhuurder\",\n  \"verhuurt\": \"verhuurt\",\n  \"vericel\": \"vericel\",\n  \"veridat\": \"veridat\",\n  \"verificateur\": \"verificateur\",\n  \"verificateurs\": \"verificateur\",\n  \"verificatie\": \"verificatie\",\n  \"verificeren\": \"verificer\",\n  \"verifieerbaarheid\": \"verifieer\",\n  \"verifieerbare\": \"verifieer\",\n  \"verifiëren\": \"verifier\",\n  \"verijlde\": \"verijld\",\n  \"verijlende\": \"verijl\",\n  \"verijling\": \"verijl\",\n  \"vérilac\": \"verilac\",\n  \"verinnelijkingsgedachte\": \"verinnelijkingsgedacht\",\n  \"verinnerlijking\": \"verinnerlijk\",\n  \"verinnerlijkingsbeleidslijn\": \"verinnerlijkingsbeleidslijn\",\n  \"verinnerlijkingslijn\": \"verinnerlijkingslijn\",\n  \"veritas\": \"veritas\",\n  \"verjaagt\": \"verjaagt\",\n  \"verjaard\": \"verjaard\",\n  \"verjaardag\": \"verjaardag\",\n  \"verjaardagen\": \"verjaardag\",\n  \"verjaart\": \"verjaart\",\n  \"verjagen\": \"verjag\",\n  \"verjagend\": \"verjag\",\n  \"verjagingen\": \"verjag\",\n  \"verjaring\": \"verjar\",\n  \"verjaringen\": \"verjar\",\n  \"verjaringstermijn\": \"verjaringstermijn\",\n  \"verjeugdigd\": \"verjeugdigd\",\n  \"verjeugdigde\": \"verjeugdigd\",\n  \"verjeugdigen\": \"verjeugd\",\n  \"verjeugdigend\": \"verjeugd\",\n  \"verkampen\": \"verkamp\",\n  \"verkassen\": \"verkass\",\n  \"verkavelen\": \"verkavel\",\n  \"verkaveling\": \"verkavel\",\n  \"verkavelingen\": \"verkavel\",\n  \"verkeer\": \"verker\",\n  \"verkeerd\": \"verkeerd\",\n  \"verkeerde\": \"verkeerd\",\n  \"verkeers\": \"verker\",\n  \"verkeersbegeleidingssysteem\": \"verkeersbegeleidingssystem\",\n  \"verkeersbewegingen\": \"verkeersbeweg\",\n  \"verkeersborden\": \"verkeersbord\",\n  \"verkeersdoorstroming\": \"verkeersdoorstrom\",\n  \"verkeersdrempels\": \"verkeersdrempel\",\n  \"verkeersdrukte\": \"verkeersdrukt\",\n  \"verkeerseconoom\": \"verkeerseconom\",\n  \"verkeersemissies\": \"verkeersemissies\",\n  \"verkeersknooppunt\": \"verkeersknooppunt\",\n  \"verkeerslawaai\": \"verkeerslawaai\",\n  \"verkeersleiding\": \"verkeersleid\",\n  \"verkeersleidingsheffingen\": \"verkeersleidingsheff\",\n  \"verkeerslichten\": \"verkeerslicht\",\n  \"verkeersmaatregelen\": \"verkeersmaatregel\",\n  \"verkeersmanagementplannen\": \"verkeersmanagementplann\",\n  \"verkeersmodel\": \"verkeersmodel\",\n  \"verkeersongelukken\": \"verkeersongeluk\",\n  \"verkeersongevallen\": \"verkeersongevall\",\n  \"verkeersoverlast\": \"verkeersoverlast\",\n  \"verkeerspatronen\": \"verkeerspatron\",\n  \"verkeersplan\": \"verkeersplan\",\n  \"verkeersproblematiek\": \"verkeersproblematiek\",\n  \"verkeersproblemen\": \"verkeersproblem\",\n  \"verkeersrapport\": \"verkeersrapport\",\n  \"verkeerssituatie\": \"verkeerssituatie\",\n  \"verkeersstromen\": \"verkeersstrom\",\n  \"verkeerstechniek\": \"verkeerstechniek\",\n  \"verkeerstechnische\": \"verkeerstechnisch\",\n  \"verkeersveiligheid\": \"verkeersveil\",\n  \"verkeersverboden\": \"verkeersverbod\",\n  \"verkeersvliegtuigen\": \"verkeersvliegtu\",\n  \"verkeersvoorschrift\": \"verkeersvoorschrift\",\n  \"verkeersvoorschriften\": \"verkeersvoorschrift\",\n  \"verkeert\": \"verkeert\",\n  \"verkend\": \"verkend\",\n  \"verkennen\": \"verkenn\",\n  \"verkennend\": \"verkenn\",\n  \"verkennende\": \"verkenn\",\n  \"verkenning\": \"verkenn\",\n  \"verkenningen\": \"verkenn\",\n  \"verkenningsdiensten\": \"verkenningsdienst\",\n  \"verkenningsstudie\": \"verkenningsstudie\",\n  \"verkenningsvluchten\": \"verkenningsvlucht\",\n  \"verkeren\": \"verker\",\n  \"verkerende\": \"verker\",\n  \"verkies\": \"verkies\",\n  \"verkiest\": \"verkiest\",\n  \"verkiezen\": \"verkiez\",\n  \"verkiezing\": \"verkiez\",\n  \"verkiezingen\": \"verkiez\",\n  \"verkindst\": \"verkindst\",\n  \"verklaarbaar\": \"verklar\",\n  \"verklaard\": \"verklaard\",\n  \"verklaarde\": \"verklaard\",\n  \"verklaarden\": \"verklaard\",\n  \"verklaart\": \"verklaart\",\n  \"verklaren\": \"verklar\",\n  \"verklaring\": \"verklar\",\n  \"verklaringen\": \"verklar\",\n  \"verkleden\": \"verkled\",\n  \"verkleed\": \"verkled\",\n  \"verkleedde\": \"verkled\",\n  \"verkleind\": \"verkleind\",\n  \"verkleinde\": \"verkleind\",\n  \"verkleinen\": \"verklein\",\n  \"verkleiners\": \"verkleiner\",\n  \"verkleining\": \"verklein\",\n  \"verkleint\": \"verkleint\",\n  \"verkleurd\": \"verkleurd\",\n  \"verkleuring\": \"verkleur\",\n  \"verklikken\": \"verklik\",\n  \"verklikt\": \"verklikt\",\n  \"verkniesde\": \"verkniesd\",\n  \"verknocht\": \"verknocht\",\n  \"verknoei\": \"verknoei\",\n  \"verknoeid\": \"verknoeid\",\n  \"verknoeiing\": \"verknoei\",\n  \"verknopingen\": \"verknop\",\n  \"verkocht\": \"verkocht\",\n  \"verkochte\": \"verkocht\",\n  \"verkochten\": \"verkocht\",\n  \"verkoelende\": \"verkoel\",\n  \"verkoeling\": \"verkoel\",\n  \"verkondig\": \"verkond\",\n  \"verkondigde\": \"verkondigd\",\n  \"verkooijen\": \"verkooij\",\n  \"verkoop\": \"verkop\",\n  \"verkoopargument\": \"verkoopargument\",\n  \"verkoopkanalen\": \"verkoopkanal\",\n  \"verkoopkantoor\": \"verkoopkantor\",\n  \"verkoopkosten\": \"verkoopkost\",\n  \"verkoopleider\": \"verkoopleider\",\n  \"verkoopmaatschappij\": \"verkoopmaatschappij\",\n  \"verkoopprijs\": \"verkoopprijs\",\n  \"verkooppunten\": \"verkooppunt\",\n  \"verkoopresultaten\": \"verkoopresultat\",\n  \"verkoopt\": \"verkoopt\",\n  \"verkooptechniek\": \"verkooptechniek\",\n  \"verkoos\": \"verkos\",\n  \"verkopen\": \"verkop\",\n  \"verkoper\": \"verkoper\",\n  \"verkopers\": \"verkoper\",\n  \"verkoping\": \"verkop\",\n  \"verkort\": \"verkort\",\n  \"verkorte\": \"verkort\",\n  \"verkorten\": \"verkort\",\n  \"verkorting\": \"verkort\",\n  \"verkouden\": \"verkoud\",\n  \"verkozen\": \"verkoz\",\n  \"verkreeg\": \"verkreg\",\n  \"verkregen\": \"verkreg\",\n  \"verkreukeld\": \"verkreukeld\",\n  \"verkreukelde\": \"verkreukeld\",\n  \"verkreukelen\": \"verkreukel\",\n  \"verkreukt\": \"verkreukt\",\n  \"verkrijgbaar\": \"verkrijg\",\n  \"verkrijgbaarheid\": \"verkrijg\",\n  \"verkrijgbare\": \"verkrijg\",\n  \"verkrijgen\": \"verkrijg\",\n  \"verkromd\": \"verkromd\",\n  \"verkromde\": \"verkromd\",\n  \"verkrompen\": \"verkromp\",\n  \"verkwisting\": \"verkwist\",\n  \"verlaagd\": \"verlaagd\",\n  \"verlaagde\": \"verlaagd\",\n  \"verlaagt\": \"verlaagt\",\n  \"verlaat\": \"verlat\",\n  \"verlagen\": \"verlag\",\n  \"verlaging\": \"verlag\",\n  \"verlagingen\": \"verlag\",\n  \"verlakte\": \"verlakt\",\n  \"verlamd\": \"verlamd\",\n  \"verlamde\": \"verlamd\",\n  \"verlammen\": \"verlamm\",\n  \"verlanding\": \"verland\",\n  \"verlang\": \"verlang\",\n  \"verlangd\": \"verlangd\",\n  \"verlangde\": \"verlangd\",\n  \"verlangen\": \"verlang\",\n  \"verlangend\": \"verlang\",\n  \"verlangende\": \"verlang\",\n  \"verlangenloos\": \"verlangenlos\",\n  \"verlangens\": \"verlangen\",\n  \"verlangt\": \"verlangt\",\n  \"verlaten\": \"verlat\",\n  \"verlatende\": \"verlat\",\n  \"verlatene\": \"verlat\",\n  \"verleden\": \"verled\",\n  \"verledene\": \"verled\",\n  \"verledens\": \"verleden\",\n  \"verleend\": \"verleend\",\n  \"verleende\": \"verleend\",\n  \"verleent\": \"verleent\",\n  \"verleerd\": \"verleerd\",\n  \"verleerde\": \"verleerd\",\n  \"verlegen\": \"verleg\",\n  \"verlegens\": \"verlegen\",\n  \"verlegging\": \"verlegg\",\n  \"verleiden\": \"verleid\",\n  \"verleidende\": \"verleid\",\n  \"verleider\": \"verleider\",\n  \"verleideres\": \"verleideres\",\n  \"verleiding\": \"verleid\",\n  \"verleidster\": \"verleidster\",\n  \"verlelie\": \"verlelie\",\n  \"verlenen\": \"verlen\",\n  \"verlengd\": \"verlengd\",\n  \"verlengde\": \"verlengd\",\n  \"verlengen\": \"verleng\",\n  \"verlenging\": \"verleng\",\n  \"verlengstuk\": \"verlengstuk\",\n  \"verlengt\": \"verlengt\",\n  \"verlening\": \"verlen\",\n  \"verlevende\": \"verlev\",\n  \"verlevendigd\": \"verlevendigd\",\n  \"verlicht\": \"verlicht\",\n  \"verlichte\": \"verlicht\",\n  \"verlichten\": \"verlicht\",\n  \"verlichting\": \"verlicht\",\n  \"verlichtingskosten\": \"verlichtingskost\",\n  \"verlichtste\": \"verlichtst\",\n  \"verliefd\": \"verliefd\",\n  \"verliefde\": \"verliefd\",\n  \"verliefdentuin\": \"verliefdentuin\",\n  \"verliefdheden\": \"verliefd\",\n  \"verliefdheid\": \"verliefd\",\n  \"verlies\": \"verlies\",\n  \"verliescijfer\": \"verliescijfer\",\n  \"verliesgevend\": \"verliesgev\",\n  \"verliesnorm\": \"verliesnorm\",\n  \"verliesnormen\": \"verliesnorm\",\n  \"verliesrekening\": \"verliesreken\",\n  \"verliest\": \"verliest\",\n  \"verliet\": \"verliet\",\n  \"verlieten\": \"verliet\",\n  \"verliezen\": \"verliez\",\n  \"verliezende\": \"verliez\",\n  \"verlijmd\": \"verlijmd\",\n  \"verlof\": \"verlof\",\n  \"verlokkende\": \"verlok\",\n  \"verloochend\": \"verlooch\",\n  \"verloochenen\": \"verloochen\",\n  \"verloofde\": \"verloofd\",\n  \"verloom\": \"verlom\",\n  \"verloop\": \"verlop\",\n  \"verloopt\": \"verloopt\",\n  \"verloor\": \"verlor\",\n  \"verlopen\": \"verlop\",\n  \"verloren\": \"verlor\",\n  \"verlossen\": \"verloss\",\n  \"verlost\": \"verlost\",\n  \"verloten\": \"verlot\",\n  \"verlucht\": \"verlucht\",\n  \"verluchtende\": \"verlucht\",\n  \"verluchting\": \"verlucht\",\n  \"verluid\": \"verluid\",\n  \"verluidt\": \"verluidt\",\n  \"vermaak\": \"vermak\",\n  \"vermaakt\": \"vermaakt\",\n  \"vermaakte\": \"vermaakt\",\n  \"vermaalt\": \"vermaalt\",\n  \"vermaarde\": \"vermaard\",\n  \"vermagerd\": \"vermagerd\",\n  \"vermagerde\": \"vermagerd\",\n  \"vermakelijk\": \"vermak\",\n  \"vermalen\": \"vermal\",\n  \"vermaling\": \"vermal\",\n  \"vermande\": \"vermand\",\n  \"vermanend\": \"verman\",\n  \"vermanende\": \"verman\",\n  \"vermannelijkten\": \"vermannelijkt\",\n  \"vermarketing\": \"vermarket\",\n  \"vermeden\": \"vermed\",\n  \"vermeed\": \"vermed\",\n  \"vermeend\": \"vermeend\",\n  \"vermeende\": \"vermeend\",\n  \"vermeer\": \"vermer\",\n  \"vermeerderd\": \"vermeerderd\",\n  \"vermeerderen\": \"vermeerder\",\n  \"vermeerdering\": \"vermeerder\",\n  \"vermeil\": \"vermeil\",\n  \"vermeld\": \"vermeld\",\n  \"vermeldde\": \"vermeld\",\n  \"vermelde\": \"vermeld\",\n  \"vermelden\": \"vermeld\",\n  \"vermelding\": \"vermeld\",\n  \"vermeldingen\": \"vermeld\",\n  \"vermeldt\": \"vermeldt\",\n  \"vermengd\": \"vermengd\",\n  \"vermengde\": \"vermengd\",\n  \"vermengen\": \"vermeng\",\n  \"vermenging\": \"vermeng\",\n  \"vermengt\": \"vermengt\",\n  \"vermenigvuldigd\": \"vermenigvuldigd\",\n  \"vermenigvuldigen\": \"vermenigvuld\",\n  \"vermesten\": \"vermest\",\n  \"vermestende\": \"vermest\",\n  \"vermesting\": \"vermest\",\n  \"vermestingsdoelstellingen\": \"vermestingsdoelstell\",\n  \"vermeten\": \"vermet\",\n  \"vermeulen\": \"vermeul\",\n  \"vermijdbaar\": \"vermijd\",\n  \"vermijden\": \"vermijd\",\n  \"vermijdende\": \"vermijd\",\n  \"verminderd\": \"verminderd\",\n  \"verminderde\": \"verminderd\",\n  \"verminderden\": \"verminderd\",\n  \"verminderdering\": \"verminderder\",\n  \"verminderen\": \"verminder\",\n  \"vermindering\": \"verminder\",\n  \"vermindert\": \"vermindert\",\n  \"vermocht\": \"vermocht\",\n  \"vermoed\": \"vermoed\",\n  \"vermoedde\": \"vermoed\",\n  \"vermoedden\": \"vermoed\",\n  \"vermoede\": \"vermoed\",\n  \"vermoedelijk\": \"vermoed\",\n  \"vermoeden\": \"vermoed\",\n  \"vermoedens\": \"vermoeden\",\n  \"vermoederd\": \"vermoederd\",\n  \"vermoedt\": \"vermoedt\",\n  \"vermoeid\": \"vermoeid\",\n  \"vermoeide\": \"vermoeid\",\n  \"vermoeiden\": \"vermoeid\",\n  \"vermoeidheid\": \"vermoeid\",\n  \"vermoeien\": \"vermoei\",\n  \"vermoeiend\": \"vermoei\",\n  \"vermoeiende\": \"vermoei\",\n  \"vermoeienis\": \"vermoeienis\",\n  \"vermoeit\": \"vermoeit\",\n  \"vermogen\": \"vermog\",\n  \"vermogens\": \"vermogen\",\n  \"vermogensdichtheid\": \"vermogensdicht\",\n  \"vermogenspositie\": \"vermogenspositie\",\n  \"vermogensreductie\": \"vermogensreductie\",\n  \"vermoord\": \"vermoord\",\n  \"vermoorden\": \"vermoord\",\n  \"vermoordt\": \"vermoordt\",\n  \"vernederde\": \"vernederd\",\n  \"vernedering\": \"verneder\",\n  \"verneveld\": \"verneveld\",\n  \"verneveling\": \"vernevel\",\n  \"vernield\": \"vernield\",\n  \"vernielen\": \"verniel\",\n  \"vernieling\": \"verniel\",\n  \"vernielt\": \"vernielt\",\n  \"vernielzuchtige\": \"vernielzucht\",\n  \"vernietigd\": \"vernietigd\",\n  \"vernietigde\": \"vernietigd\",\n  \"vernietigen\": \"verniet\",\n  \"vernietigers\": \"vernietiger\",\n  \"vernietiging\": \"verniet\",\n  \"vernietigingsattest\": \"vernietigingsattest\",\n  \"vernietigt\": \"vernietigt\",\n  \"vernieuwbare\": \"vernieuw\",\n  \"vernieuwd\": \"vernieuwd\",\n  \"vernieuwde\": \"vernieuwd\",\n  \"vernieuwen\": \"vernieuw\",\n  \"vernieuwend\": \"vernieuw\",\n  \"vernieuwende\": \"vernieuw\",\n  \"vernieuwing\": \"vernieuw\",\n  \"vernieuwingen\": \"vernieuw\",\n  \"vernijdigd\": \"vernijdigd\",\n  \"vernijdigde\": \"vernijdigd\",\n  \"vernijdigende\": \"vernijd\",\n  \"vernon\": \"vernon\",\n  \"verol\": \"verol\",\n  \"verolma\": \"verolma\",\n  \"veronachtzaamd\": \"veronachtzaamd\",\n  \"veronderstellen\": \"veronderstell\",\n  \"veronderstelling\": \"veronderstell\",\n  \"veronderstellingen\": \"veronderstell\",\n  \"veronderstelt\": \"veronderstelt\",\n  \"verongelukken\": \"verongeluk\",\n  \"verongelukkende\": \"verongeluk\",\n  \"verongelukt\": \"verongelukt\",\n  \"veronica\": \"veronica\",\n  \"verontreinigd\": \"verontreinigd\",\n  \"verontreinigde\": \"verontreinigd\",\n  \"verontreinigen\": \"verontrein\",\n  \"verontreinigende\": \"verontrein\",\n  \"verontreiniging\": \"verontrein\",\n  \"verontreinigingen\": \"verontrein\",\n  \"verontreinigingsbron\": \"verontreinigingsbron\",\n  \"verontreinigingshaarden\": \"verontreinigingshaard\",\n  \"verontreinigingsheffing\": \"verontreinigingsheff\",\n  \"verontreinigingsongelukken\": \"verontreinigingsongeluk\",\n  \"verontreiningen\": \"verontrein\",\n  \"verontrust\": \"verontrust\",\n  \"verontruste\": \"verontrust\",\n  \"verontrusten\": \"verontrust\",\n  \"verontrustend\": \"verontrust\",\n  \"verontrustende\": \"verontrust\",\n  \"verontrustte\": \"verontrust\",\n  \"verontschuldigde\": \"verontschuldigd\",\n  \"verontschuldigend\": \"verontschuld\",\n  \"verontschuldigende\": \"verontschuld\",\n  \"verontschuldiging\": \"verontschuld\",\n  \"verontschuldigingen\": \"verontschuld\",\n  \"verontwaardigd\": \"verontwaardigd\",\n  \"verontwaardigde\": \"verontwaardigd\",\n  \"verontwaardiging\": \"verontwaard\",\n  \"veroordeel\": \"veroordel\",\n  \"veroordeeld\": \"veroordeeld\",\n  \"veroordeelde\": \"veroordeeld\",\n  \"veroordeelden\": \"veroordeeld\",\n  \"veroordeelt\": \"veroordeelt\",\n  \"veroordelen\": \"veroordel\",\n  \"veroordeling\": \"veroordel\",\n  \"veroordelingen\": \"veroordel\",\n  \"veroorloofde\": \"veroorloofd\",\n  \"veroorzaakt\": \"veroorzaakt\",\n  \"veroorzaakte\": \"veroorzaakt\",\n  \"veroorzaakten\": \"veroorzaakt\",\n  \"veroorzaken\": \"veroorzak\",\n  \"veroorzaker\": \"veroorzaker\",\n  \"veroorzakers\": \"veroorzaker\",\n  \"verorberden\": \"verorberd\",\n  \"verordening\": \"verorden\",\n  \"verordeningen\": \"verorden\",\n  \"verordonneren\": \"verordonner\",\n  \"verouderd\": \"verouderd\",\n  \"verouderde\": \"verouderd\",\n  \"verouderen\": \"verouder\",\n  \"veroudering\": \"verouder\",\n  \"veroverd\": \"veroverd\",\n  \"veroveren\": \"verover\",\n  \"verpachter\": \"verpachter\",\n  \"verpackung\": \"verpackung\",\n  \"verpakken\": \"verpak\",\n  \"verpakker\": \"verpakker\",\n  \"verpakkers\": \"verpakker\",\n  \"verpakking\": \"verpak\",\n  \"verpakkingafval\": \"verpakkingafval\",\n  \"verpakkingcentrum\": \"verpakkingcentrum\",\n  \"verpakkingen\": \"verpak\",\n  \"verpakkingenbeleid\": \"verpakkingenbeleid\",\n  \"verpakkingenregelgeving\": \"verpakkingenregelgev\",\n  \"verpakkingenregeling\": \"verpakkingenregel\",\n  \"verpakkingfolie\": \"verpakkingfolie\",\n  \"verpakkings\": \"verpak\",\n  \"verpakkingsafval\": \"verpakkingsafval\",\n  \"verpakkingsbeleid\": \"verpakkingsbeleid\",\n  \"verpakkingscentrum\": \"verpakkingscentrum\",\n  \"verpakkingscertificaat\": \"verpakkingscertificat\",\n  \"verpakkingschips\": \"verpakkingschip\",\n  \"verpakkingsconvenant\": \"verpakkingsconvenant\",\n  \"verpakkingsfabrikanten\": \"verpakkingsfabrikant\",\n  \"verpakkingsfolie\": \"verpakkingsfolie\",\n  \"verpakkingsgedeelte\": \"verpakkingsgedeelt\",\n  \"verpakkingsgewicht\": \"verpakkingsgewicht\",\n  \"verpakkingsglas\": \"verpakkingsglas\",\n  \"verpakkingsindustrie\": \"verpakkingsindustrie\",\n  \"verpakkingsketen\": \"verpakkingsket\",\n  \"verpakkingsmachines\": \"verpakkingsmachines\",\n  \"verpakkingsmateriaal\": \"verpakkingsmateriaal\",\n  \"verpakkingsmaterialen\": \"verpakkingsmaterial\",\n  \"verpakkingsmiddelen\": \"verpakkingsmiddel\",\n  \"verpakkingsnormen\": \"verpakkingsnorm\",\n  \"verpakkingsregelingen\": \"verpakkingsregel\",\n  \"verpakkingsresten\": \"verpakkingsrest\",\n  \"verpakkingsrichtlijn\": \"verpakkingsrichtlijn\",\n  \"verpakkingsrichtlijnen\": \"verpakkingsrichtlijn\",\n  \"verpakkingssafval\": \"verpakkingssafval\",\n  \"verpakkingssystemen\": \"verpakkingssystem\",\n  \"verpakkingsverordening\": \"verpakkingsverorden\",\n  \"verpakkingsvorm\": \"verpakkingsvorm\",\n  \"verpakt\": \"verpakt\",\n  \"verpakte\": \"verpakt\",\n  \"verpapping\": \"verpapp\",\n  \"verplaatsbaarheid\": \"verplaats\",\n  \"verplaatsbare\": \"verplaats\",\n  \"verplaatsen\": \"verplaats\",\n  \"verplaatsing\": \"verplaats\",\n  \"verplaatsingen\": \"verplaats\",\n  \"verplaatsingsplan\": \"verplaatsingsplan\",\n  \"verplaatsingswet\": \"verplaatsingswet\",\n  \"verplaatst\": \"verplaatst\",\n  \"verplaatste\": \"verplaatst\",\n  \"verplaatsten\": \"verplaatst\",\n  \"verplanteleefd\": \"verplanteleefd\",\n  \"verpleegd\": \"verpleegd\",\n  \"verpleegde\": \"verpleegd\",\n  \"verpleegden\": \"verpleegd\",\n  \"verpleegster\": \"verpleegster\",\n  \"verplegen\": \"verpleg\",\n  \"verpleger\": \"verpleger\",\n  \"verplegers\": \"verpleger\",\n  \"verpleging\": \"verpleg\",\n  \"verpletterd\": \"verpletterd\",\n  \"verpletterde\": \"verpletterd\",\n  \"verpletteren\": \"verpletter\",\n  \"verpletterend\": \"verpletter\",\n  \"verplettering\": \"verpletter\",\n  \"verplettert\": \"verplettert\",\n  \"verpletterzwaar\": \"verpletterzwar\",\n  \"verplicht\": \"verplicht\",\n  \"verplichte\": \"verplicht\",\n  \"verplichten\": \"verplicht\",\n  \"verplichtende\": \"verplicht\",\n  \"verplichting\": \"verplicht\",\n  \"verplichtingen\": \"verplicht\",\n  \"verplichtte\": \"verplicht\",\n  \"verpoederen\": \"verpoeder\",\n  \"verpoedering\": \"verpoeder\",\n  \"verpompen\": \"verpomp\",\n  \"verpulverd\": \"verpulverd\",\n  \"verraden\": \"verrad\",\n  \"verrassen\": \"verrass\",\n  \"verrassend\": \"verrass\",\n  \"verrassing\": \"verrass\",\n  \"verrassingen\": \"verrass\",\n  \"verrast\": \"verrast\",\n  \"verraste\": \"verrast\",\n  \"verre\": \"verr\",\n  \"verreden\": \"verred\",\n  \"verregaande\": \"verregaand\",\n  \"verregend\": \"verreg\",\n  \"verregende\": \"verreg\",\n  \"verrekenen\": \"verreken\",\n  \"verrekent\": \"verrekent\",\n  \"verreweg\": \"verreweg\",\n  \"verricht\": \"verricht\",\n  \"verrichte\": \"verricht\",\n  \"verrichten\": \"verricht\",\n  \"verrichtte\": \"verricht\",\n  \"verrijken\": \"verrijk\",\n  \"verrijking\": \"verrijk\",\n  \"verrijkt\": \"verrijkt\",\n  \"verrijst\": \"verrijst\",\n  \"verrijzen\": \"verrijz\",\n  \"verroerde\": \"verroerd\",\n  \"verroeren\": \"verroer\",\n  \"verruild\": \"verruild\",\n  \"verruilen\": \"verruil\",\n  \"verruimd\": \"verruimd\",\n  \"verruimde\": \"verruimd\",\n  \"verruiming\": \"verruim\",\n  \"verrukkelijk\": \"verruk\",\n  \"verrukking\": \"verruk\",\n  \"verrukt\": \"verrukt\",\n  \"vers\": \"ver\",\n  \"versa\": \"versa\",\n  \"verschaffen\": \"verschaff\",\n  \"verschaft\": \"verschaft\",\n  \"verscheen\": \"verschen\",\n  \"verscheept\": \"verscheept\",\n  \"verscheepte\": \"verscheept\",\n  \"verscheidene\": \"verscheid\",\n  \"verschemerde\": \"verschemerd\",\n  \"verschemeren\": \"verschemer\",\n  \"verschenen\": \"verschen\",\n  \"verschepen\": \"verschep\",\n  \"verscherpen\": \"verscherp\",\n  \"verscherping\": \"verscherp\",\n  \"verscherpt\": \"verscherpt\",\n  \"verscherpte\": \"verscherpt\",\n  \"verscheurde\": \"verscheurd\",\n  \"verscheuren\": \"verscheur\",\n  \"verschfllende\": \"verschfllend\",\n  \"verschiet\": \"verschiet\",\n  \"verschieten\": \"verschiet\",\n  \"verschijnen\": \"verschijn\",\n  \"verschijnende\": \"verschijn\",\n  \"verschijning\": \"verschijn\",\n  \"verschijningsvorm\": \"verschijningsvorm\",\n  \"verschijnsel\": \"verschijnsel\",\n  \"verschijnselen\": \"verschijnsel\",\n  \"verschijnt\": \"verschijnt\",\n  \"verschil\": \"verschil\",\n  \"verschilde\": \"verschild\",\n  \"verschilden\": \"verschild\",\n  \"verschillen\": \"verschill\",\n  \"verschillend\": \"verschill\",\n  \"verschillende\": \"verschill\",\n  \"verschilpunten\": \"verschilpunt\",\n  \"verschilt\": \"verschilt\",\n  \"verscholen\": \"verschol\",\n  \"verschoppeling\": \"verschoppel\",\n  \"verschoten\": \"verschot\",\n  \"verschoven\": \"verschov\",\n  \"verschrijft\": \"verschrijft\",\n  \"verschrikkelijk\": \"verschrik\",\n  \"verschrikkelijke\": \"verschrik\",\n  \"verschrikkelijkste\": \"verschrikkelijkst\",\n  \"verschrikking\": \"verschrik\",\n  \"verschrikt\": \"verschrikt\",\n  \"verschrikte\": \"verschrikt\",\n  \"verschroeid\": \"verschroeid\",\n  \"verschroeide\": \"verschroeid\",\n  \"verschrompeld\": \"verschrompeld\",\n  \"verschrompelde\": \"verschrompeld\",\n  \"verschuift\": \"verschuift\",\n  \"verschuilen\": \"verschuil\",\n  \"verschuilend\": \"verschuil\",\n  \"verschuiven\": \"verschuiv\",\n  \"verschuivende\": \"verschuiv\",\n  \"verschuiving\": \"verschuiv\",\n  \"verschuldigd\": \"verschuldigd\",\n  \"verschuldigde\": \"verschuldigd\",\n  \"verse\": \"ver\",\n  \"versheid\": \"versheid\",\n  \"versie\": \"versie\",\n  \"versierd\": \"versierd\",\n  \"versies\": \"versies\",\n  \"versjeesd\": \"versjeesd\",\n  \"versjouwd\": \"versjouwd\",\n  \"verslaafden\": \"verslaafd\",\n  \"verslag\": \"verslag\",\n  \"verslagen\": \"verslag\",\n  \"verslagjaar\": \"verslagjar\",\n  \"verslaglegging\": \"verslaglegg\",\n  \"verslappen\": \"verslapp\",\n  \"verslapping\": \"verslapp\",\n  \"verslapt\": \"verslapt\",\n  \"verslechterd\": \"verslechterd\",\n  \"verslechteren\": \"verslechter\",\n  \"verslechtert\": \"verslechtert\",\n  \"verslenst\": \"verslenst\",\n  \"versleten\": \"verslet\",\n  \"verslinden\": \"verslind\",\n  \"verslond\": \"verslond\",\n  \"verslonden\": \"verslond\",\n  \"versmallen\": \"versmall\",\n  \"versmallende\": \"versmall\",\n  \"versmolt\": \"versmolt\",\n  \"versmolten\": \"versmolt\",\n  \"versneden\": \"versned\",\n  \"versnel\": \"versnel\",\n  \"versneld\": \"versneld\",\n  \"versnelde\": \"versneld\",\n  \"versnellen\": \"versnell\",\n  \"versnelling\": \"versnell\",\n  \"versnelt\": \"versnelt\",\n  \"versnipperd\": \"versnipperd\",\n  \"versnipperde\": \"versnipperd\",\n  \"versnipperder\": \"versnipperder\",\n  \"versnipperen\": \"versnipper\",\n  \"versnippering\": \"versnipper\",\n  \"versoepeld\": \"versoepeld\",\n  \"versoepelen\": \"versoepel\",\n  \"versoepeling\": \"versoepel\",\n  \"versoesde\": \"versoesd\",\n  \"versomberden\": \"versomberd\",\n  \"versomberen\": \"versomber\",\n  \"verspanen\": \"verspan\",\n  \"verspelen\": \"verspel\",\n  \"versperde\": \"versperd\",\n  \"verspild\": \"verspild\",\n  \"verspilde\": \"verspild\",\n  \"verspillen\": \"verspill\",\n  \"verspilling\": \"verspill\",\n  \"verspillingen\": \"verspill\",\n  \"versplinteren\": \"versplinter\",\n  \"versprak\": \"versprak\",\n  \"verspreid\": \"verspreid\",\n  \"verspreidde\": \"verspreid\",\n  \"verspreide\": \"verspreid\",\n  \"verspreiden\": \"verspreid\",\n  \"verspreiding\": \"verspreid\",\n  \"verspreidingsgebied\": \"verspreidingsgebied\",\n  \"verspreidingsmodel\": \"verspreidingsmodel\",\n  \"verspreidingsrisico\": \"verspreidingsrisico\",\n  \"verspreidingstheorie\": \"verspreidingstheorie\",\n  \"verspreidt\": \"verspreidt\",\n  \"versproken\": \"versprok\",\n  \"verspuit\": \"verspuit\",\n  \"verspuiten\": \"verspuit\",\n  \"verst\": \"verst\",\n  \"versta\": \"versta\",\n  \"verstaan\": \"verstan\",\n  \"verstaanbaar\": \"verstan\",\n  \"verstand\": \"verstand\",\n  \"verstandelijk\": \"verstand\",\n  \"verstandelijkheid\": \"verstand\",\n  \"verstandhouding\": \"verstandhoud\",\n  \"verstandhoudingen\": \"verstandhoud\",\n  \"verstandig\": \"verstand\",\n  \"verstandige\": \"verstand\",\n  \"verstandiger\": \"verstandiger\",\n  \"verstard\": \"verstard\",\n  \"verstarren\": \"verstarr\",\n  \"verstedelijking\": \"verstedelijk\",\n  \"verstedelijkingsproces\": \"verstedelijkingsproces\",\n  \"verstedelijkingsprocessen\": \"verstedelijkingsprocess\",\n  \"verstedelijkt\": \"verstedelijkt\",\n  \"versterken\": \"versterk\",\n  \"versterking\": \"versterk\",\n  \"versterkt\": \"versterkt\",\n  \"versterkte\": \"versterkt\",\n  \"versterven\": \"versterv\",\n  \"verstevigd\": \"verstevigd\",\n  \"versteviging\": \"verstev\",\n  \"verstijfd\": \"verstijfd\",\n  \"verstijven\": \"verstijv\",\n  \"verstikkend\": \"verstik\",\n  \"verstoft\": \"verstoft\",\n  \"verstoken\": \"verstok\",\n  \"verstokt\": \"verstokt\",\n  \"verstomd\": \"verstomd\",\n  \"verstompen\": \"verstomp\",\n  \"verstompt\": \"verstompt\",\n  \"verstompte\": \"verstompt\",\n  \"verstond\": \"verstond\",\n  \"verstonden\": \"verstond\",\n  \"verstoof\": \"verstof\",\n  \"verstookt\": \"verstookt\",\n  \"verstookte\": \"verstookt\",\n  \"verstoor\": \"verstor\",\n  \"verstoord\": \"verstoord\",\n  \"verstoorde\": \"verstoord\",\n  \"verstoort\": \"verstoort\",\n  \"verstoppen\": \"verstopp\",\n  \"verstopping\": \"verstopp\",\n  \"verstoppingen\": \"verstopp\",\n  \"verstopt\": \"verstopt\",\n  \"verstopte\": \"verstopt\",\n  \"verstoren\": \"verstor\",\n  \"verstoring\": \"verstor\",\n  \"verstoringen\": \"verstor\",\n  \"verstoringsonderzoek\": \"verstoringsonderzoek\",\n  \"verstraeten\": \"verstraet\",\n  \"verstrakt\": \"verstrakt\",\n  \"verstrekken\": \"verstrek\",\n  \"verstrekkend\": \"verstrek\",\n  \"verstrekt\": \"verstrekt\",\n  \"verstrekte\": \"verstrekt\",\n  \"verstrekten\": \"verstrekt\",\n  \"verstrikt\": \"verstrikt\",\n  \"verstrooid\": \"verstrooid\",\n  \"verstrooids\": \"verstrooid\",\n  \"verstrooien\": \"verstrooi\",\n  \"verstrooiende\": \"verstrooi\",\n  \"verstrooiing\": \"verstrooi\",\n  \"verstuiver\": \"verstuiver\",\n  \"versturen\": \"verstur\",\n  \"verstuurd\": \"verstuurd\",\n  \"versuffen\": \"versuff\",\n  \"versufte\": \"versuft\",\n  \"versus\": \"versus\",\n  \"vertaald\": \"vertaald\",\n  \"vertaalt\": \"vertaalt\",\n  \"vertakt\": \"vertakt\",\n  \"vertakte\": \"vertakt\",\n  \"vertalen\": \"vertal\",\n  \"vertaling\": \"vertal\",\n  \"verte\": \"vert\",\n  \"vertech\": \"vertech\",\n  \"vertederd\": \"vertederd\",\n  \"vertederde\": \"vertederd\",\n  \"vertederen\": \"verteder\",\n  \"vertederende\": \"verteder\",\n  \"vertedering\": \"verteder\",\n  \"verteerd\": \"verteerd\",\n  \"verteerde\": \"verteerd\",\n  \"vertegenwoordigd\": \"vertegenwoordigd\",\n  \"vertegenwoordigde\": \"vertegenwoordigd\",\n  \"vertegenwoordigen\": \"vertegenwoord\",\n  \"vertegenwoordiger\": \"vertegenwoordiger\",\n  \"vertegenwoordigers\": \"vertegenwoordiger\",\n  \"vertegenwoordiging\": \"vertegenwoord\",\n  \"vertegenwoordigt\": \"vertegenwoordigt\",\n  \"vertekend\": \"vertek\",\n  \"vertekenen\": \"verteken\",\n  \"vertel\": \"vertel\",\n  \"verteld\": \"verteld\",\n  \"vertelde\": \"verteld\",\n  \"vertelden\": \"verteld\",\n  \"vertellen\": \"vertell\",\n  \"vertellende\": \"vertell\",\n  \"vertelt\": \"vertelt\",\n  \"verteren\": \"verter\",\n  \"vertering\": \"verter\",\n  \"verticaal\": \"vertical\",\n  \"verticale\": \"vertical\",\n  \"vertienvoudigd\": \"vertienvoudigd\",\n  \"vertienvoudigen\": \"vertienvoud\",\n  \"vertikte\": \"vertikt\",\n  \"vertonen\": \"verton\",\n  \"vertoning\": \"verton\",\n  \"vertoon\": \"verton\",\n  \"vertoond\": \"vertoond\",\n  \"vertoonde\": \"vertoond\",\n  \"vertoonden\": \"vertoond\",\n  \"vertoont\": \"vertoont\",\n  \"vertoornde\": \"vertoornd\",\n  \"vertraagd\": \"vertraagd\",\n  \"vertraagde\": \"vertraagd\",\n  \"vertraagt\": \"vertraagt\",\n  \"vertragen\": \"vertrag\",\n  \"vertragend\": \"vertrag\",\n  \"vertraging\": \"vertrag\",\n  \"vertragingen\": \"vertrag\",\n  \"vertragingstactieken\": \"vertragingstactiek\",\n  \"vertrappeld\": \"vertrappeld\",\n  \"vertrappelde\": \"vertrappeld\",\n  \"vertrappen\": \"vertrapp\",\n  \"vertrapt\": \"vertrapt\",\n  \"vertrapte\": \"vertrapt\",\n  \"vertrek\": \"vertrek\",\n  \"vertrekken\": \"vertrek\",\n  \"vertrekkende\": \"vertrek\",\n  \"vertrektijd\": \"vertrektijd\",\n  \"vertreurde\": \"vertreurd\",\n  \"vertreuren\": \"vertreur\",\n  \"vertrok\": \"vertrok\",\n  \"vertrokken\": \"vertrok\",\n  \"vertrouw\": \"vertrouw\",\n  \"vertrouwd\": \"vertrouwd\",\n  \"vertrouwde\": \"vertrouwd\",\n  \"vertrouwelijk\": \"vertrouw\",\n  \"vertrouwelijke\": \"vertrouw\",\n  \"vertrouwelijkheden\": \"vertrouw\",\n  \"vertrouwelijkheid\": \"vertrouw\",\n  \"vertrouwelijks\": \"vertrouw\",\n  \"vertrouwen\": \"vertrouw\",\n  \"vertrouwensrelatie\": \"vertrouwensrelatie\",\n  \"vertrouwt\": \"vertrouwt\",\n  \"vertwaalfvoudigen\": \"vertwaalfvoud\",\n  \"veruit\": \"veruit\",\n  \"vervaagde\": \"vervaagd\",\n  \"vervaardigd\": \"vervaardigd\",\n  \"vervaardigde\": \"vervaardigd\",\n  \"vervaardigen\": \"vervaard\",\n  \"vervaardiging\": \"vervaard\",\n  \"verval\": \"verval\",\n  \"vervallen\": \"vervall\",\n  \"vervalprodukten\": \"vervalprodukt\",\n  \"vervalspiraal\": \"vervalspiral\",\n  \"vervalsten\": \"vervalst\",\n  \"vervalt\": \"vervalt\",\n  \"vervangen\": \"vervang\",\n  \"vervangend\": \"vervang\",\n  \"vervangende\": \"vervang\",\n  \"vervanger\": \"vervanger\",\n  \"vervangers\": \"vervanger\",\n  \"vervanging\": \"vervang\",\n  \"vervangingsoperatie\": \"vervangingsoperatie\",\n  \"vervangingstechnologie\": \"vervangingstechnologie\",\n  \"vervangingswaarde\": \"vervangingswaard\",\n  \"vervangt\": \"vervangt\",\n  \"verveel\": \"vervel\",\n  \"verveeld\": \"verveeld\",\n  \"verveelde\": \"verveeld\",\n  \"verveelt\": \"verveelt\",\n  \"vervelen\": \"vervel\",\n  \"vervelend\": \"vervel\",\n  \"vervelende\": \"vervel\",\n  \"verveling\": \"vervel\",\n  \"verven\": \"verv\",\n  \"ververst\": \"ververst\",\n  \"verviel\": \"verviel\",\n  \"verviervoudigd\": \"verviervoudigd\",\n  \"verviervoudigen\": \"verviervoud\",\n  \"verving\": \"verving\",\n  \"vervloeien\": \"vervloei\",\n  \"vervloekte\": \"vervloekt\",\n  \"vervloekten\": \"vervloekt\",\n  \"vervlogen\": \"vervlog\",\n  \"vervluchtigd\": \"vervluchtigd\",\n  \"vervluchtiging\": \"vervlucht\",\n  \"vervluchtigt\": \"vervluchtigt\",\n  \"vervoer\": \"vervoer\",\n  \"vervoerbedrijf\": \"vervoerbedrijf\",\n  \"vervoerd\": \"vervoerd\",\n  \"vervoerde\": \"vervoerd\",\n  \"vervoerden\": \"vervoerd\",\n  \"vervoerders\": \"vervoerder\",\n  \"vervoeren\": \"vervoer\",\n  \"vervoerinformatie\": \"vervoerinformatie\",\n  \"vervoermiddel\": \"vervoermiddel\",\n  \"vervoermiddelen\": \"vervoermiddel\",\n  \"vervoerplannen\": \"vervoerplann\",\n  \"vervoerprojecten\": \"vervoerproject\",\n  \"vervoers\": \"vervoer\",\n  \"vervoersbedrijf\": \"vervoersbedrijf\",\n  \"vervoersbewegingen\": \"vervoersbeweg\",\n  \"vervoersbrandstoffen\": \"vervoersbrandstoff\",\n  \"vervoerscontracten\": \"vervoerscontract\",\n  \"vervoersdienst\": \"vervoersdienst\",\n  \"vervoersgewoonten\": \"vervoersgewoont\",\n  \"vervoerskeuzen\": \"vervoerskeuz\",\n  \"vervoerskosten\": \"vervoerskost\",\n  \"vervoersmogelijkheden\": \"vervoersmog\",\n  \"vervoersplan\": \"vervoersplan\",\n  \"vervoersplannen\": \"vervoersplann\",\n  \"vervoerssector\": \"vervoerssector\",\n  \"vervoersstromen\": \"vervoersstrom\",\n  \"vervoerssysteem\": \"vervoerssystem\",\n  \"vervoerstickets\": \"vervoersticket\",\n  \"vervoersystemen\": \"vervoersystem\",\n  \"vervoervoorzieningen\": \"vervoervoorzien\",\n  \"vervolg\": \"vervolg\",\n  \"vervolgbaar\": \"vervolg\",\n  \"vervolgconferentie\": \"vervolgconferentie\",\n  \"vervolgd\": \"vervolgd\",\n  \"vervolgde\": \"vervolgd\",\n  \"vervolgen\": \"vervolg\",\n  \"vervolgens\": \"vervolgen\",\n  \"vervolgfases\": \"vervolgfases\",\n  \"vervolging\": \"vervolg\",\n  \"vervolgingen\": \"vervolg\",\n  \"vervolgnota\": \"vervolgnota\",\n  \"vervolgnotitie\": \"vervolgnotitie\",\n  \"vervolgonderzoek\": \"vervolgonderzoek\",\n  \"vervolgopdrachten\": \"vervolgopdracht\",\n  \"vervolgproject\": \"vervolgproject\",\n  \"vervolgprojecten\": \"vervolgproject\",\n  \"vervolgregeling\": \"vervolgregel\",\n  \"vervolgstappen\": \"vervolgstapp\",\n  \"vervolgt\": \"vervolgt\",\n  \"vervolmaakte\": \"vervolmaakt\",\n  \"vervormd\": \"vervormd\",\n  \"vervormen\": \"vervorm\",\n  \"vervormingen\": \"vervorm\",\n  \"vervreemd\": \"vervreemd\",\n  \"vervreemdden\": \"vervreemd\",\n  \"vervreemdt\": \"vervreemdt\",\n  \"vervroegd\": \"vervroegd\",\n  \"vervroegde\": \"vervroegd\",\n  \"vervrolijkte\": \"vervrolijkt\",\n  \"vervroren\": \"vervror\",\n  \"vervuild\": \"vervuild\",\n  \"vervuilde\": \"vervuild\",\n  \"vervuilen\": \"vervuil\",\n  \"vervuilend\": \"vervuil\",\n  \"vervuilende\": \"vervuil\",\n  \"vervuiler\": \"vervuiler\",\n  \"vervuilers\": \"vervuiler\",\n  \"vervuiling\": \"vervuil\",\n  \"vervuilingen\": \"vervuil\",\n  \"vervuilingseenheden\": \"vervuilingsen\",\n  \"vervuilingsgraad\": \"vervuilingsgrad\",\n  \"vervuilingsregels\": \"vervuilingsregel\",\n  \"vervuilt\": \"vervuilt\",\n  \"vervuld\": \"vervuld\",\n  \"vervulde\": \"vervuld\",\n  \"vervullen\": \"vervull\",\n  \"vervulling\": \"vervull\",\n  \"vervult\": \"vervult\",\n  \"verwaaid\": \"verwaaid\",\n  \"verwaaien\": \"verwaai\",\n  \"verwaait\": \"verwaait\",\n  \"verwaardigen\": \"verwaard\",\n  \"verwaarloosbaar\": \"verwaarlos\",\n  \"verwaarloosd\": \"verwaarloosd\",\n  \"verwaarloosde\": \"verwaarloosd\",\n  \"verwaarloost\": \"verwaarloost\",\n  \"verwaarlozen\": \"verwaarloz\",\n  \"verwaarlozing\": \"verwaarloz\",\n  \"verwacht\": \"verwacht\",\n  \"verwachte\": \"verwacht\",\n  \"verwachten\": \"verwacht\",\n  \"verwachting\": \"verwacht\",\n  \"verwachtingen\": \"verwacht\",\n  \"verwachtingspatroon\": \"verwachtingspatron\",\n  \"verwachtte\": \"verwacht\",\n  \"verwachtten\": \"verwacht\",\n  \"verwant\": \"verwant\",\n  \"verwante\": \"verwant\",\n  \"verwanten\": \"verwant\",\n  \"verwantenkring\": \"verwantenkr\",\n  \"verwantschap\": \"verwantschap\",\n  \"verward\": \"verward\",\n  \"verwarde\": \"verward\",\n  \"verwarden\": \"verward\",\n  \"verwarm\": \"verwarm\",\n  \"verwarmd\": \"verwarmd\",\n  \"verwarmde\": \"verwarmd\",\n  \"verwarmen\": \"verwarm\",\n  \"verwarming\": \"verwarm\",\n  \"verwarmingbuizen\": \"verwarmingbuiz\",\n  \"verwarmingen\": \"verwarm\",\n  \"verwarmings\": \"verwarm\",\n  \"verwarmingsbuizen\": \"verwarmingsbuiz\",\n  \"verwarmingsinstallaties\": \"verwarmingsinstallaties\",\n  \"verwarmingsketel\": \"verwarmingsketel\",\n  \"verwarmingsketels\": \"verwarmingsketel\",\n  \"verwarmingslucht\": \"verwarmingslucht\",\n  \"verwarmingsprocessen\": \"verwarmingsprocess\",\n  \"verwarmingsseizoen\": \"verwarmingsseizoen\",\n  \"verwarmingssysteem\": \"verwarmingssystem\",\n  \"verwarmingssystemen\": \"verwarmingssystem\",\n  \"verwarmingstoepassingen\": \"verwarmingstoepass\",\n  \"verwarmingstoestellen\": \"verwarmingstoestell\",\n  \"verwarmt\": \"verwarmt\",\n  \"verwarren\": \"verwarr\",\n  \"verwarring\": \"verwarr\",\n  \"verwarringen\": \"verwarr\",\n  \"verwaterde\": \"verwaterd\",\n  \"verwazigd\": \"verwazigd\",\n  \"verweekte\": \"verweekt\",\n  \"verweemoedigen\": \"verweemoed\",\n  \"verweer\": \"verwer\",\n  \"verweerd\": \"verweerd\",\n  \"verweerde\": \"verweerd\",\n  \"verweerschrift\": \"verweerschrift\",\n  \"verweert\": \"verweert\",\n  \"verweet\": \"verwet\",\n  \"verweg\": \"verweg\",\n  \"verwekken\": \"verwek\",\n  \"verwekking\": \"verwek\",\n  \"verwekt\": \"verwekt\",\n  \"verwekte\": \"verwekt\",\n  \"verwelken\": \"verwelk\",\n  \"verwelking\": \"verwelk\",\n  \"verwelkomde\": \"verwelkomd\",\n  \"verwelkomden\": \"verwelkomd\",\n  \"verwelkomen\": \"verwelkom\",\n  \"verwelkt\": \"verwelkt\",\n  \"verwer\": \"verwer\",\n  \"verweren\": \"verwer\",\n  \"verwerft\": \"verwerft\",\n  \"verwering\": \"verwer\",\n  \"verwerkbaar\": \"verwerk\",\n  \"verwerken\": \"verwerk\",\n  \"verwerkende\": \"verwerk\",\n  \"verwerker\": \"verwerker\",\n  \"verwerkers\": \"verwerker\",\n  \"verwerking\": \"verwerk\",\n  \"verwerkingsbedrijf\": \"verwerkingsbedrijf\",\n  \"verwerkingsbedrijven\": \"verwerkingsbedrijv\",\n  \"verwerkingsbranche\": \"verwerkingsbranch\",\n  \"verwerkingscapaciteit\": \"verwerkingscapaciteit\",\n  \"verwerkingsfabriek\": \"verwerkingsfabriek\",\n  \"verwerkingsinrichting\": \"verwerkingsinricht\",\n  \"verwerkingsinrichtingen\": \"verwerkingsinricht\",\n  \"verwerkingsinstallaties\": \"verwerkingsinstallaties\",\n  \"verwerkingskosten\": \"verwerkingskost\",\n  \"verwerkingslijn\": \"verwerkingslijn\",\n  \"verwerkingsmethoden\": \"verwerkingsmethod\",\n  \"verwerkingsmogelijkheden\": \"verwerkingsmog\",\n  \"verwerkingsmogelijkheid\": \"verwerkingsmog\",\n  \"verwerkingspas\": \"verwerkingspas\",\n  \"verwerkingsplan\": \"verwerkingsplan\",\n  \"verwerkingsprocessen\": \"verwerkingsprocess\",\n  \"verwerkingsstructuur\": \"verwerkingsstructur\",\n  \"verwerkingssysteem\": \"verwerkingssystem\",\n  \"verwerkingstarief\": \"verwerkingstarief\",\n  \"verwerkingstarieven\": \"verwerkingstariev\",\n  \"verwerkingstechniek\": \"verwerkingstechniek\",\n  \"verwerkingstechnieken\": \"verwerkingstechniek\",\n  \"verwerkingstechnologie\": \"verwerkingstechnologie\",\n  \"verwerkt\": \"verwerkt\",\n  \"verwerkte\": \"verwerkt\",\n  \"verwerpen\": \"verwerp\",\n  \"verwerpt\": \"verwerpt\",\n  \"verwerven\": \"verwerv\",\n  \"verwerving\": \"verwerv\",\n  \"verweten\": \"verwet\",\n  \"verwezen\": \"verwez\",\n  \"verwezenlijken\": \"verwezen\",\n  \"verwezenlijking\": \"verwezenlijk\",\n  \"verwezenlijkingen\": \"verwezenlijk\",\n  \"verwezenlijkt\": \"verwezenlijkt\",\n  \"verwierp\": \"verwierp\",\n  \"verwijd\": \"verwijd\",\n  \"verwijder\": \"verwijder\",\n  \"verwijderbaarheid\": \"verwijder\",\n  \"verwijderd\": \"verwijderd\",\n  \"verwijderde\": \"verwijderd\",\n  \"verwijderen\": \"verwijder\",\n  \"verwijdering\": \"verwijder\",\n  \"verwijderings\": \"verwijder\",\n  \"verwijderingsbedrijven\": \"verwijderingsbedrijv\",\n  \"verwijderingsbijdrage\": \"verwijderingsbijdrag\",\n  \"verwijderingskosten\": \"verwijderingskost\",\n  \"verwijderingsstructuur\": \"verwijderingsstructur\",\n  \"verwijderingssysteem\": \"verwijderingssystem\",\n  \"verwijderingstechnieken\": \"verwijderingstechniek\",\n  \"verwijderingstechnologie\": \"verwijderingstechnologie\",\n  \"verwijdert\": \"verwijdert\",\n  \"verwijst\": \"verwijst\",\n  \"verwijt\": \"verwijt\",\n  \"verwijten\": \"verwijt\",\n  \"verwijtend\": \"verwijt\",\n  \"verwijtende\": \"verwijt\",\n  \"verwijtingen\": \"verwijt\",\n  \"verwijzen\": \"verwijz\",\n  \"verwijzing\": \"verwijz\",\n  \"verwijzingen\": \"verwijz\",\n  \"verwinterde\": \"verwinterd\",\n  \"verwisselbare\": \"verwissel\",\n  \"verwisseld\": \"verwisseld\",\n  \"verwisselden\": \"verwisseld\",\n  \"verwisselen\": \"verwissel\",\n  \"verwisselend\": \"verwissel\",\n  \"verwoest\": \"verwoest\",\n  \"verwoesten\": \"verwoest\",\n  \"verwoestende\": \"verwoest\",\n  \"verwoesting\": \"verwoest\",\n  \"verwoestte\": \"verwoest\",\n  \"verwonderd\": \"verwonderd\",\n  \"verwonderde\": \"verwonderd\",\n  \"verwònderde\": \"verwònderd\",\n  \"verwonderden\": \"verwonderd\",\n  \"verwonderend\": \"verwonder\",\n  \"verwonderende\": \"verwonder\",\n  \"verwondering\": \"verwonder\",\n  \"verwonderlijk\": \"verwonder\",\n  \"verwondert\": \"verwondert\",\n  \"verwoord\": \"verwoord\",\n  \"verwoorden\": \"verwoord\",\n  \"verworden\": \"verword\",\n  \"verworpen\": \"verworp\",\n  \"verworven\": \"verworv\",\n  \"verwrong\": \"verwrong\",\n  \"verwrongen\": \"verwrong\",\n  \"verzacht\": \"verzacht\",\n  \"verzachten\": \"verzacht\",\n  \"verzachting\": \"verzacht\",\n  \"verzachtte\": \"verzacht\",\n  \"verzadigd\": \"verzadigd\",\n  \"verzadigde\": \"verzadigd\",\n  \"verzadiging\": \"verzad\",\n  \"verzadigt\": \"verzadigt\",\n  \"verzakelijking\": \"verzakelijk\",\n  \"verzakkende\": \"verzak\",\n  \"verzamelaars\": \"verzamelar\",\n  \"verzamelcontainers\": \"verzamelcontainer\",\n  \"verzameld\": \"verzameld\",\n  \"verzamelde\": \"verzameld\",\n  \"verzamelden\": \"verzameld\",\n  \"verzamelen\": \"verzamel\",\n  \"verzameling\": \"verzamel\",\n  \"verzamelnaam\": \"verzamelnam\",\n  \"verzamelplaatsen\": \"verzamelplaats\",\n  \"verzamelt\": \"verzamelt\",\n  \"verzeild\": \"verzeild\",\n  \"verzeker\": \"verzeker\",\n  \"verzekeraar\": \"verzekerar\",\n  \"verzekeraars\": \"verzekerar\",\n  \"verzekerd\": \"verzekerd\",\n  \"verzekerde\": \"verzekerd\",\n  \"verzekeren\": \"verzeker\",\n  \"verzekerende\": \"verzeker\",\n  \"verzekering\": \"verzeker\",\n  \"verzekeringen\": \"verzeker\",\n  \"verzekeringsbranche\": \"verzekeringsbranch\",\n  \"verzekeringskamer\": \"verzekeringskamer\",\n  \"verzekeringsmaatschappij\": \"verzekeringsmaatschappij\",\n  \"verzekeringsmaatschappijen\": \"verzekeringsmaatschappij\",\n  \"verzekeringspremies\": \"verzekeringspremies\",\n  \"verzekeringstechnische\": \"verzekeringstechnisch\",\n  \"verzekeringswereld\": \"verzekeringswereld\",\n  \"verzekert\": \"verzekert\",\n  \"verzelfstandigd\": \"verzelfstandigd\",\n  \"verzelfstandigde\": \"verzelfstandigd\",\n  \"verzelfstandigen\": \"verzelfstand\",\n  \"verzelfstandiging\": \"verzelfstand\",\n  \"verzen\": \"verz\",\n  \"verzenden\": \"verzend\",\n  \"verzenuwd\": \"verzenuwd\",\n  \"verzet\": \"verzet\",\n  \"verzette\": \"verzet\",\n  \"verzetten\": \"verzet\",\n  \"verziekelijkte\": \"verziekelijkt\",\n  \"verziekt\": \"verziekt\",\n  \"verziekte\": \"verziekt\",\n  \"verzilt\": \"verzilt\",\n  \"verzilting\": \"verzilt\",\n  \"verzilveren\": \"verzilver\",\n  \"verzinkbranche\": \"verzinkbranch\",\n  \"verzinken\": \"verzink\",\n  \"verzinkingsproces\": \"verzinkingsproces\",\n  \"verzinkt\": \"verzinkt\",\n  \"verzinsels\": \"verzinsel\",\n  \"verzitten\": \"verzit\",\n  \"verzocht\": \"verzocht\",\n  \"verzoek\": \"verzoek\",\n  \"verzoeken\": \"verzoek\",\n  \"verzoekende\": \"verzoek\",\n  \"verzoekt\": \"verzoekt\",\n  \"verzoenden\": \"verzoend\",\n  \"verzoenen\": \"verzoen\",\n  \"verzoenend\": \"verzoen\",\n  \"verzoenende\": \"verzoen\",\n  \"verzoening\": \"verzoen\",\n  \"verzomering\": \"verzomer\",\n  \"verzonden\": \"verzond\",\n  \"verzonk\": \"verzonk\",\n  \"verzonken\": \"verzonk\",\n  \"verzorg\": \"verzorg\",\n  \"verzorgd\": \"verzorgd\",\n  \"verzorgde\": \"verzorgd\",\n  \"verzorgen\": \"verzorg\",\n  \"verzorgende\": \"verzorg\",\n  \"verzorgers\": \"verzorger\",\n  \"verzorging\": \"verzorg\",\n  \"verzorgingen\": \"verzorg\",\n  \"verzorgingsgebied\": \"verzorgingsgebied\",\n  \"verzorgt\": \"verzorgt\",\n  \"verzucht\": \"verzucht\",\n  \"verzuim\": \"verzuim\",\n  \"verzuimbeleid\": \"verzuimbeleid\",\n  \"verzuimd\": \"verzuimd\",\n  \"verzuimden\": \"verzuimd\",\n  \"verzuimen\": \"verzuim\",\n  \"verzuimt\": \"verzuimt\",\n  \"verzurend\": \"verzur\",\n  \"verzurende\": \"verzur\",\n  \"verzuring\": \"verzur\",\n  \"verzuringsdoelstellingen\": \"verzuringsdoelstell\",\n  \"verzuringsgevoelig\": \"verzuringsgevoel\",\n  \"verzuringsgevoelige\": \"verzuringsgevoel\",\n  \"verzuringsonderzoek\": \"verzuringsonderzoek\",\n  \"verzuringsproces\": \"verzuringsproces\",\n  \"verzusterlijken\": \"verzuster\",\n  \"verzusterlijkt\": \"verzusterlijkt\",\n  \"verzuurd\": \"verzuurd\",\n  \"verzuurde\": \"verzuurd\",\n  \"verzwakkende\": \"verzwak\",\n  \"verzwakking\": \"verzwak\",\n  \"verzwakt\": \"verzwakt\",\n  \"verzwaring\": \"verzwar\",\n  \"verzwaringen\": \"verzwar\",\n  \"verzweeg\": \"verzweg\",\n  \"verzwegen\": \"verzweg\",\n  \"verzwijgen\": \"verzwijg\",\n  \"verzwijmd\": \"verzwijmd\",\n  \"verzwijmende\": \"verzwijm\",\n  \"vest\": \"vest\",\n  \"vestas\": \"vestas\",\n  \"vestiaire\": \"vestiair\",\n  \"vestibule\": \"vestibul\",\n  \"vestigde\": \"vestigd\",\n  \"vestigen\": \"vestig\",\n  \"vestiging\": \"vestig\",\n  \"vestigingen\": \"vestig\",\n  \"vestigingsklimaat\": \"vestigingsklimat\",\n  \"vestigingsplaats\": \"vestigingsplat\",\n  \"vestkraft\": \"vestkraft\",\n  \"veston\": \"veston\",\n  \"vet\": \"vet\",\n  \"vetafscheiders\": \"vetafscheider\",\n  \"vetafval\": \"vetafval\",\n  \"vetalcoholen\": \"vetalcohol\",\n  \"veterinair\": \"veterinair\",\n  \"veterinaire\": \"veterinair\",\n  \"vetlozing\": \"vetloz\",\n  \"vetlozingen\": \"vetloz\",\n  \"veto\": \"veto\",\n  \"vette\": \"vet\",\n  \"vetten\": \"vet\",\n  \"vetvangers\": \"vetvanger\",\n  \"vetvrij\": \"vetvrij\",\n  \"vetweefsel\": \"vetweefsel\",\n  \"vetzuren\": \"vetzur\",\n  \"vetzurenproduktie\": \"vetzurenproduktie\",\n  \"vetzuur\": \"vetzur\",\n  \"veulen\": \"veul\",\n  \"vew\": \"vew\",\n  \"vewin\": \"vewin\",\n  \"vezelachtige\": \"vezelacht\",\n  \"vezelhoudend\": \"vezelhoud\",\n  \"vezels\": \"vezel\",\n  \"vezelstructuur\": \"vezelstructur\",\n  \"vfk\": \"vfk\",\n  \"vfw\": \"vfw\",\n  \"vgbouw\": \"vgbouw\",\n  \"vgom\": \"vgom\",\n  \"vi\": \"vi\",\n  \"via\": \"via\",\n  \"viaduct\": \"viaduct\",\n  \"viaducten\": \"viaduct\",\n  \"viag\": \"viag\",\n  \"vianen\": \"vian\",\n  \"viar\": \"viar\",\n  \"viba\": \"viba\",\n  \"vice\": \"vic\",\n  \"victor\": \"victor\",\n  \"victoria\": \"victoria\",\n  \"vidal\": \"vidal\",\n  \"video\": \"video\",\n  \"videoaansluiting\": \"videoaansluit\",\n  \"videobeelden\": \"videobeeld\",\n  \"videofilm\": \"videofilm\",\n  \"videoinspectie\": \"videoinspectie\",\n  \"videorecorder\": \"videorecorder\",\n  \"videorecorders\": \"videorecorder\",\n  \"videotex\": \"videotex\",\n  \"vie\": \"vie\",\n  \"viel\": \"viel\",\n  \"vielen\": \"viel\",\n  \"vienna\": \"vienna\",\n  \"vier\": \"vier\",\n  \"vierbaksduwvaart\": \"vierbaksduwvaart\",\n  \"vierde\": \"vierd\",\n  \"vierduizend\": \"vierduiz\",\n  \"vieren\": \"vier\",\n  \"vierendertig\": \"vierendert\",\n  \"vierentwintig\": \"vierentwint\",\n  \"vierge\": \"vierg\",\n  \"vierhonderd\": \"vierhonderd\",\n  \"vierhonderdduizend\": \"vierhonderdduiz\",\n  \"viering\": \"viering\",\n  \"vierjaarlijks\": \"vierjar\",\n  \"vierkant\": \"vierkant\",\n  \"vierkante\": \"vierkant\",\n  \"vierkantjes\": \"vierkantjes\",\n  \"viermaal\": \"viermal\",\n  \"viermotorige\": \"viermotor\",\n  \"vierpersoons\": \"vierperson\",\n  \"viersporig\": \"vierspor\",\n  \"viert\": \"viert\",\n  \"viertal\": \"viertal\",\n  \"viertjes\": \"viertjes\",\n  \"vierwaardige\": \"vierwaard\",\n  \"vierwiel\": \"vierwiel\",\n  \"vies\": \"vies\",\n  \"vietnam\": \"vietnam\",\n  \"vietnamese\": \"vietnames\",\n  \"vieve\": \"viev\",\n  \"vieze\": \"viez\",\n  \"vièze\": \"vièz\",\n  \"viezig\": \"viezig\",\n  \"vifka\": \"vifka\",\n  \"vigilante\": \"vigilant\",\n  \"vignet\": \"vignet\",\n  \"vii\": \"vii\",\n  \"viii\": \"viii\",\n  \"vijand\": \"vijand\",\n  \"vijandelijkheden\": \"vijand\",\n  \"vijandelijkheid\": \"vijand\",\n  \"vijanden\": \"vijand\",\n  \"vijandig\": \"vijand\",\n  \"vijandige\": \"vijand\",\n  \"vijandinnen\": \"vijandinn\",\n  \"vijandschap\": \"vijandschap\",\n  \"vijf\": \"vijf\",\n  \"vijfdaags\": \"vijfdag\",\n  \"vijfde\": \"vijfd\",\n  \"vijfduizend\": \"vijfduiz\",\n  \"vijfennegentig\": \"vijfennegent\",\n  \"vijfentwintig\": \"vijfentwint\",\n  \"vijfenveertig\": \"vijfenveert\",\n  \"vijfenzeventig\": \"vijfenzevent\",\n  \"vijfheerenlanden\": \"vijfheerenland\",\n  \"vijfhonderd\": \"vijfhonderd\",\n  \"vijfhuizen\": \"vijfhuiz\",\n  \"vijfjarig\": \"vijfjar\",\n  \"vijfjarige\": \"vijfjar\",\n  \"vijfstappenplan\": \"vijfstappenplan\",\n  \"vijftal\": \"vijftal\",\n  \"vijftien\": \"vijftien\",\n  \"vijftienduizend\": \"vijftienduiz\",\n  \"vijftienduizendste\": \"vijftienduizendst\",\n  \"vijftienhonderd\": \"vijftienhonderd\",\n  \"vijftienjarig\": \"vijftienjar\",\n  \"vijftig\": \"vijftig\",\n  \"vijftigjarige\": \"vijftigjar\",\n  \"vijftigste\": \"vijftigst\",\n  \"vijltjes\": \"vijltjes\",\n  \"vijver\": \"vijver\",\n  \"vijverplas\": \"vijverplas\",\n  \"vijvers\": \"vijver\",\n  \"vijzel\": \"vijzel\",\n  \"vijzelde\": \"vijzeld\",\n  \"villa\": \"villa\",\n  \"villaatje\": \"villaatj\",\n  \"villatje\": \"villatj\",\n  \"vilt\": \"vilt\",\n  \"viltstiften\": \"viltstift\",\n  \"vinamul\": \"vinamul\",\n  \"vincent\": \"vincent\",\n  \"vincotte\": \"vincot\",\n  \"vinçotte\": \"vinçot\",\n  \"vind\": \"vind\",\n  \"vinden\": \"vind\",\n  \"vindend\": \"vindend\",\n  \"vindende\": \"vindend\",\n  \"vinding\": \"vinding\",\n  \"vindingen\": \"vinding\",\n  \"vindt\": \"vindt\",\n  \"vinex\": \"vinex\",\n  \"ving\": \"ving\",\n  \"vingen\": \"ving\",\n  \"vinger\": \"vinger\",\n  \"vingerafdruk\": \"vingerafdruk\",\n  \"vingers\": \"vinger\",\n  \"vingertjes\": \"vingertjes\",\n  \"vingerzeefdekken\": \"vingerzeefdek\",\n  \"vinkeveen\": \"vinkeven\",\n  \"vinkeveense\": \"vinkeven\",\n  \"vinnig\": \"vinnig\",\n  \"vinnige\": \"vinnig\",\n  \"vintges\": \"vintges\",\n  \"vinyl\": \"vinyl\",\n  \"vinylchloride\": \"vinylchlorid\",\n  \"vinylchlorideprodukten\": \"vinylchlorideprodukt\",\n  \"vinylvloerbedekkingen\": \"vinylvloerbedek\",\n  \"violet\": \"violet\",\n  \"violette\": \"violet\",\n  \"viooltjes\": \"viooltjes\",\n  \"virgin\": \"virgin\",\n  \"virginia\": \"virginia\",\n  \"virtual\": \"virtual\",\n  \"virus\": \"virus\",\n  \"virussen\": \"viruss\",\n  \"vis\": \"vis\",\n  \"visa\": \"visa\",\n  \"visafslag\": \"visafslag\",\n  \"visbeleid\": \"visbeleid\",\n  \"visbestanden\": \"visbestand\",\n  \"viscapaciteit\": \"viscapaciteit\",\n  \"viscositeiten\": \"viscositeit\",\n  \"visibiliteit\": \"visibiliteit\",\n  \"visibiliteitsdoelstelling\": \"visibiliteitsdoelstell\",\n  \"visibility\": \"visibility\",\n  \"visie\": \"visie\",\n  \"visienota\": \"visienota\",\n  \"visienotitie\": \"visienotitie\",\n  \"visies\": \"visies\",\n  \"visioen\": \"visioen\",\n  \"visioenen\": \"visioen\",\n  \"visionaire\": \"visionair\",\n  \"visite\": \"visit\",\n  \"visitegesprek\": \"visitegesprek\",\n  \"visitekaartjes\": \"visitekaartjes\",\n  \"visites\": \"visites\",\n  \"visje\": \"visj\",\n  \"viskwaliteit\": \"viskwaliteit\",\n  \"vislabel\": \"vislabel\",\n  \"visnet\": \"visnet\",\n  \"vispopulaties\": \"vispopulaties\",\n  \"visprodukten\": \"visprodukt\",\n  \"visquota\": \"visquota\",\n  \"visrechten\": \"visrecht\",\n  \"vissen\": \"viss\",\n  \"visser\": \"visser\",\n  \"visserij\": \"visserij\",\n  \"visserijautoriteiten\": \"visserijautoriteit\",\n  \"visserijbedrijfsleven\": \"visserijbedrijfslev\",\n  \"visserijbeleid\": \"visserijbeleid\",\n  \"visserijbiologen\": \"visserijbiolog\",\n  \"visserijdruk\": \"visserijdruk\",\n  \"visserijmethoden\": \"visserijmethod\",\n  \"visserijministers\": \"visserijminister\",\n  \"visserijoorlogen\": \"visserijoorlog\",\n  \"visserijsector\": \"visserijsector\",\n  \"visserijwet\": \"visserijwet\",\n  \"vissers\": \"visser\",\n  \"vissersschepen\": \"vissersschep\",\n  \"vissersvloot\": \"vissersvlot\",\n  \"vissoorten\": \"vissoort\",\n  \"visstand\": \"visstand\",\n  \"vist\": \"vist\",\n  \"vista\": \"vista\",\n  \"vistrap\": \"vistrap\",\n  \"vistrappen\": \"vistrapp\",\n  \"vistuigen\": \"vistuig\",\n  \"visuele\": \"visuel\",\n  \"visum\": \"visum\",\n  \"visvangst\": \"visvangst\",\n  \"visvangsten\": \"visvangst\",\n  \"visvijvers\": \"visvijver\",\n  \"vit\": \"vit\",\n  \"vitaal\": \"vital\",\n  \"vitalair\": \"vitalair\",\n  \"vitale\": \"vital\",\n  \"vitaliteit\": \"vitaliteit\",\n  \"vitalscheme\": \"vitalschem\",\n  \"vitamine\": \"vitamin\",\n  \"vitamix\": \"vitamix\",\n  \"vitellogenine\": \"vitellogenin\",\n  \"vitrage\": \"vitrag\",\n  \"vitrages\": \"vitrages\",\n  \"vitro\": \"vitro\",\n  \"vitten\": \"vit\",\n  \"vivant\": \"vivant\",\n  \"vivants\": \"vivant\",\n  \"vive\": \"viv\",\n  \"viveurs\": \"viveur\",\n  \"vivo\": \"vivo\",\n  \"vizier\": \"vizier\",\n  \"vizioen\": \"vizioen\",\n  \"vizioenen\": \"vizioen\",\n  \"vizioenende\": \"vizioen\",\n  \"vizioentje\": \"vizioentj\",\n  \"vjjftig\": \"vjjftig\",\n  \"vkf\": \"vkf\",\n  \"vlaag\": \"vlag\",\n  \"vlaagje\": \"vlaagj\",\n  \"vlaams\": \"vlam\",\n  \"vlaamse\": \"vlam\",\n  \"vlaanderen\": \"vlaander\",\n  \"vlaardingen\": \"vlaarding\",\n  \"vlag\": \"vlag\",\n  \"vlagen\": \"vlag\",\n  \"vlaggen\": \"vlagg\",\n  \"vlaggeschip\": \"vlaggeschip\",\n  \"vlaggestok\": \"vlaggestok\",\n  \"vlaggestokken\": \"vlaggestok\",\n  \"vlagheide\": \"vlagheid\",\n  \"vlak\": \"vlak\",\n  \"vlakbij\": \"vlakbij\",\n  \"vlakje\": \"vlakj\",\n  \"vlakjes\": \"vlakjes\",\n  \"vlakke\": \"vlak\",\n  \"vlakken\": \"vlak\",\n  \"vlakkerig\": \"vlakker\",\n  \"vlakte\": \"vlakt\",\n  \"vlakten\": \"vlakt\",\n  \"vlaktes\": \"vlaktes\",\n  \"vlam\": \"vlam\",\n  \"vlamde\": \"vlamd\",\n  \"vlamden\": \"vlamd\",\n  \"vlammen\": \"vlamm\",\n  \"vlammende\": \"vlammend\",\n  \"vlammetje\": \"vlammetj\",\n  \"vlamstopper\": \"vlamstopper\",\n  \"vlamstoppers\": \"vlamstopper\",\n  \"vlas\": \"vlas\",\n  \"vlasblond\": \"vlasblond\",\n  \"vlasblonde\": \"vlasblond\",\n  \"vlasvezels\": \"vlasvezel\",\n  \"vld\": \"vld\",\n  \"vleermuizen\": \"vleermuiz\",\n  \"vlees\": \"vles\",\n  \"vleesactiviteiten\": \"vleesactiviteit\",\n  \"vleesconsumptie\": \"vleesconsumptie\",\n  \"vleesindustrie\": \"vleesindustrie\",\n  \"vleeskuikenhouder\": \"vleeskuikenhouder\",\n  \"vleeskuikenhouderij\": \"vleeskuikenhouderij\",\n  \"vleeskuikens\": \"vleeskuiken\",\n  \"vleesmarkt\": \"vleesmarkt\",\n  \"vleesprodukten\": \"vleesprodukt\",\n  \"vleesproduktie\": \"vleesproduktie\",\n  \"vleesvarkens\": \"vleesvarken\",\n  \"vleesvarkensbedrijven\": \"vleesvarkensbedrijv\",\n  \"vleesvarkensdrijfmest\": \"vleesvarkensdrijfmest\",\n  \"vleesvarkensmest\": \"vleesvarkensmest\",\n  \"vleesvervangers\": \"vleesvervanger\",\n  \"vleesverwerkend\": \"vleesverwerk\",\n  \"vleesverwerkende\": \"vleesverwerk\",\n  \"vleeswaren\": \"vleeswar\",\n  \"vleeswarenindustrie\": \"vleeswarenindustrie\",\n  \"vlegel\": \"vlegel\",\n  \"vlehan\": \"vlehan\",\n  \"vleide\": \"vleid\",\n  \"vleien\": \"vlei\",\n  \"vleiend\": \"vleiend\",\n  \"vleiende\": \"vleiend\",\n  \"vleierig\": \"vleier\",\n  \"vleiing\": \"vleiing\",\n  \"vlek\": \"vlek\",\n  \"vlekjes\": \"vlekjes\",\n  \"vlekken\": \"vlek\",\n  \"vlerk\": \"vlerk\",\n  \"vlerken\": \"vlerk\",\n  \"vleselijk\": \"vleselijk\",\n  \"vleugels\": \"vleugel\",\n  \"vleuten\": \"vleut\",\n  \"vlezen\": \"vlez\",\n  \"vlieg\": \"vlieg\",\n  \"vliegas\": \"vliegas\",\n  \"vliegassen\": \"vliegass\",\n  \"vliegbasis\": \"vliegbasis\",\n  \"vliegbewegingen\": \"vliegbeweg\",\n  \"vliegcorridoor\": \"vliegcorridor\",\n  \"vliegen\": \"vlieg\",\n  \"vliegende\": \"vliegend\",\n  \"vliegers\": \"vlieger\",\n  \"vlieghoogte\": \"vlieghoogt\",\n  \"vliegkamp\": \"vliegkamp\",\n  \"vlieglawaai\": \"vlieglawaai\",\n  \"vliegmarkt\": \"vliegmarkt\",\n  \"vliegreizen\": \"vliegreiz\",\n  \"vliegroutes\": \"vliegroutes\",\n  \"vliegsnelheid\": \"vliegsnel\",\n  \"vliegt\": \"vliegt\",\n  \"vliegtuig\": \"vliegtuig\",\n  \"vliegtuigbespuitingen\": \"vliegtuigbespuit\",\n  \"vliegtuigbewegingen\": \"vliegtuigbeweg\",\n  \"vliegtuigbrandstof\": \"vliegtuigbrandstof\",\n  \"vliegtuigemissies\": \"vliegtuigemissies\",\n  \"vliegtuigen\": \"vliegtuig\",\n  \"vliegtuiggeluid\": \"vliegtuiggeluid\",\n  \"vliegtuiglawaai\": \"vliegtuiglawaai\",\n  \"vliegtuigmaatschappij\": \"vliegtuigmaatschappij\",\n  \"vliegtuigmaatschappijen\": \"vliegtuigmaatschappij\",\n  \"vliegtuigmetingen\": \"vliegtuigmet\",\n  \"vliegtuigmotoren\": \"vliegtuigmotor\",\n  \"vliegtuigontwikkeling\": \"vliegtuigontwikkel\",\n  \"vliegtuigspuiten\": \"vliegtuigspuit\",\n  \"vliegtuigtoepassingen\": \"vliegtuigtoepass\",\n  \"vliegtuigtransport\": \"vliegtuigtransport\",\n  \"vliegtuigtype\": \"vliegtuigtyp\",\n  \"vliegtuigtypen\": \"vliegtuigtyp\",\n  \"vliegveld\": \"vliegveld\",\n  \"vliegveldbouw\": \"vliegveldbouw\",\n  \"vliegvelden\": \"vliegveld\",\n  \"vliegverbod\": \"vliegverbod\",\n  \"vliegverkeer\": \"vliegverker\",\n  \"vliegvervoer\": \"vliegvervoer\",\n  \"vliegwiel\": \"vliegwiel\",\n  \"vlieland\": \"vlieland\",\n  \"vlier\": \"vlier\",\n  \"vliering\": \"vliering\",\n  \"vliert\": \"vliert\",\n  \"vlies\": \"vlies\",\n  \"vlijmend\": \"vlijmend\",\n  \"vlijmende\": \"vlijmend\",\n  \"vlijmender\": \"vlijmender\",\n  \"vlijtige\": \"vlijtig\",\n  \"vlinder\": \"vlinder\",\n  \"vlinderbloemigen\": \"vlinderbloem\",\n  \"vlinderende\": \"vlinder\",\n  \"vlinderlijven\": \"vlinderlijv\",\n  \"vlinderpopulatie\": \"vlinderpopulatie\",\n  \"vlinders\": \"vlinder\",\n  \"vlinderslijven\": \"vlinderslijv\",\n  \"vlissingen\": \"vlissing\",\n  \"vlissingse\": \"vlissing\",\n  \"vlm\": \"vlm\",\n  \"vloed\": \"vloed\",\n  \"vloedbelt\": \"vloedbelt\",\n  \"vloedgolf\": \"vloedgolf\",\n  \"vloeibaar\": \"vloeibar\",\n  \"vloeibare\": \"vloeibar\",\n  \"vloeide\": \"vloeid\",\n  \"vloeiden\": \"vloeid\",\n  \"vloeien\": \"vloei\",\n  \"vloeiende\": \"vloeiend\",\n  \"vloeiing\": \"vloeiing\",\n  \"vloeistof\": \"vloeistof\",\n  \"vloeistofdebiet\": \"vloeistofdebiet\",\n  \"vloeistofdicht\": \"vloeistofdicht\",\n  \"vloeistofdichte\": \"vloeistofdicht\",\n  \"vloeistofelementen\": \"vloeistofelement\",\n  \"vloeistoffase\": \"vloeistoffas\",\n  \"vloeistoffen\": \"vloeistoff\",\n  \"vloeistofniveau\": \"vloeistofniveau\",\n  \"vloeistofoppervlak\": \"vloeistofoppervlak\",\n  \"vloeistoftransporteurs\": \"vloeistoftransporteur\",\n  \"vloeistofverwarming\": \"vloeistofverwarm\",\n  \"vloeistofwisselaar\": \"vloeistofwisselar\",\n  \"vloeit\": \"vloeit\",\n  \"vloek\": \"vloek\",\n  \"vloeken\": \"vloek\",\n  \"vloekende\": \"vloekend\",\n  \"vloekte\": \"vloekt\",\n  \"vloekten\": \"vloekt\",\n  \"vloer\": \"vloer\",\n  \"vloerbedekkingen\": \"vloerbedek\",\n  \"vloerdelen\": \"vloerdel\",\n  \"vloeren\": \"vloer\",\n  \"vloerisolatie\": \"vloerisolatie\",\n  \"vloermat\": \"vloermat\",\n  \"vloeroppervlak\": \"vloeroppervlak\",\n  \"vloerreinigingsmiddelen\": \"vloerreinigingsmiddel\",\n  \"vloerverwarming\": \"vloerverwarm\",\n  \"vlogen\": \"vlog\",\n  \"vlok\": \"vlok\",\n  \"vlokken\": \"vlok\",\n  \"vlokkende\": \"vlokkend\",\n  \"vlokmiddel\": \"vlokmiddel\",\n  \"vlokte\": \"vlokt\",\n  \"vlood\": \"vlod\",\n  \"vloog\": \"vlog\",\n  \"vloot\": \"vlot\",\n  \"vlot\": \"vlot\",\n  \"vloten\": \"vlot\",\n  \"vlotte\": \"vlot\",\n  \"vlottende\": \"vlottend\",\n  \"vlucht\": \"vlucht\",\n  \"vluchten\": \"vlucht\",\n  \"vluchtende\": \"vluchtend\",\n  \"vluchtig\": \"vluchtig\",\n  \"vluchtige\": \"vluchtig\",\n  \"vluchtiger\": \"vluchtiger\",\n  \"vluchtigheden\": \"vluchtig\",\n  \"vluchtplaats\": \"vluchtplat\",\n  \"vluchtstroken\": \"vluchtstrok\",\n  \"vluchtte\": \"vlucht\",\n  \"vluchtten\": \"vlucht\",\n  \"vlug\": \"vlug\",\n  \"vlugge\": \"vlugg\",\n  \"vlugger\": \"vlugger\",\n  \"vma\": \"vma\",\n  \"vmd\": \"vmd\",\n  \"vmi\": \"vmi\",\n  \"vmk\": \"vmk\",\n  \"vmm\": \"vmm\",\n  \"vmrg\": \"vmrg\",\n  \"vn\": \"vn\",\n  \"vnci\": \"vnci\",\n  \"vng\": \"vng\",\n  \"vnh\": \"vnh\",\n  \"vni\": \"vni\",\n  \"vnl\": \"vnl\",\n  \"vno\": \"vno\",\n  \"vnp\": \"vnp\",\n  \"voc\": \"voc\",\n  \"vocht\": \"vocht\",\n  \"vochtbergend\": \"vochtberg\",\n  \"vochtbestendige\": \"vochtbestend\",\n  \"vochte\": \"vocht\",\n  \"vochten\": \"vocht\",\n  \"vochter\": \"vochter\",\n  \"vochtgehalte\": \"vochtgehalt\",\n  \"vochthoudende\": \"vochthoud\",\n  \"vochtig\": \"vochtig\",\n  \"vochtige\": \"vochtig\",\n  \"vochtiger\": \"vochtiger\",\n  \"vochtigheid\": \"vochtig\",\n  \"vochtigheidsgehalte\": \"vochtigheidsgehalt\",\n  \"vochtopname\": \"vochtopnam\",\n  \"voed\": \"voed\",\n  \"voedde\": \"voed\",\n  \"voedden\": \"voed\",\n  \"voeden\": \"voed\",\n  \"voedereenheid\": \"voederen\",\n  \"voedergedrag\": \"voedergedrag\",\n  \"voederingrediënten\": \"voederingredient\",\n  \"voeders\": \"voeder\",\n  \"voederwaarde\": \"voederwaard\",\n  \"voeding\": \"voeding\",\n  \"voedings\": \"voeding\",\n  \"voedingsbodem\": \"voedingsbodem\",\n  \"voedingselementen\": \"voedingselement\",\n  \"voedingsindustrie\": \"voedingsindustrie\",\n  \"voedingsmiddelen\": \"voedingsmiddel\",\n  \"voedingsmiddelenindustrie\": \"voedingsmiddelenindustrie\",\n  \"voedingsmiddelentechnologie\": \"voedingsmiddelentechnologie\",\n  \"voedingsniveau\": \"voedingsniveau\",\n  \"voedingspatroon\": \"voedingspatron\",\n  \"voedingsstoffen\": \"voedingsstoff\",\n  \"voedingssysteem\": \"voedingssystem\",\n  \"voedingswarenconcerns\": \"voedingswarenconcern\",\n  \"voedingswater\": \"voedingswater\",\n  \"voedingszouten\": \"voedingszout\",\n  \"voedsel\": \"voedsel\",\n  \"voedselafval\": \"voedselafval\",\n  \"voedselarme\": \"voedselarm\",\n  \"voedselarmer\": \"voedselarmer\",\n  \"voedselbalans\": \"voedselbalan\",\n  \"voedselgebruik\": \"voedselgebruik\",\n  \"voedselgewassen\": \"voedselgewass\",\n  \"voedselketens\": \"voedselketen\",\n  \"voedselproduktie\": \"voedselproduktie\",\n  \"voedselrijk\": \"voedselrijk\",\n  \"voedselrijkdom\": \"voedselrijkdom\",\n  \"voedselrijke\": \"voedselrijk\",\n  \"voedselrijker\": \"voedselrijker\",\n  \"voedseltekorten\": \"voedseltekort\",\n  \"voedseltoestand\": \"voedseltoestand\",\n  \"voedselveiligheid\": \"voedselveil\",\n  \"voedselvoorziening\": \"voedselvoorzien\",\n  \"voegafdichtingssysteem\": \"voegafdichtingssystem\",\n  \"voegband\": \"voegband\",\n  \"voegde\": \"voegd\",\n  \"voegen\": \"voeg\",\n  \"voegmassa\": \"voegmassa\",\n  \"voegt\": \"voegt\",\n  \"voel\": \"voel\",\n  \"voèl\": \"voèl\",\n  \"voelarmen\": \"voelarm\",\n  \"voelbare\": \"voelbar\",\n  \"voelde\": \"voeld\",\n  \"voèlde\": \"voèld\",\n  \"voelden\": \"voeld\",\n  \"voelen\": \"voel\",\n  \"voelend\": \"voelend\",\n  \"voelende\": \"voelend\",\n  \"voelt\": \"voelt\",\n  \"voer\": \"voer\",\n  \"voerde\": \"voerd\",\n  \"voerden\": \"voerd\",\n  \"voeren\": \"voer\",\n  \"voerende\": \"voerend\",\n  \"voering\": \"voering\",\n  \"voerman\": \"voerman\",\n  \"voermans\": \"voerman\",\n  \"voermengwagen\": \"voermengwag\",\n  \"voeropbrengst\": \"voeropbrengst\",\n  \"voerplaatsen\": \"voerplaats\",\n  \"voert\": \"voert\",\n  \"voertuig\": \"voertuig\",\n  \"voertuigbrandstof\": \"voertuigbrandstof\",\n  \"voertuigen\": \"voertuig\",\n  \"voertuigtechnologie\": \"voertuigtechnologie\",\n  \"voertuigweegbrug\": \"voertuigweegbrug\",\n  \"voerwagenfabrikant\": \"voerwagenfabrikant\",\n  \"voet\": \"voet\",\n  \"voetbalbond\": \"voetbalbond\",\n  \"voetbalclub\": \"voetbalclub\",\n  \"voetbalfederatie\": \"voetbalfederatie\",\n  \"voetballer\": \"voetballer\",\n  \"voetballers\": \"voetballer\",\n  \"voetbalstadions\": \"voetbalstadion\",\n  \"voetbaltribunes\": \"voetbaltribunes\",\n  \"voetbalveld\": \"voetbalveld\",\n  \"voetbalvelden\": \"voetbalveld\",\n  \"voetbalvereniging\": \"voetbalveren\",\n  \"voetbalwedstrijd\": \"voetbalwedstrijd\",\n  \"voetbed\": \"voetbed\",\n  \"voetbedden\": \"voetbed\",\n  \"voetbeweging\": \"voetbeweg\",\n  \"voeten\": \"voet\",\n  \"voetenbankje\": \"voetenbankj\",\n  \"voeteneinde\": \"voeteneind\",\n  \"voetenkussen\": \"voetenkuss\",\n  \"voetgangers\": \"voetganger\",\n  \"voetgangersgebieden\": \"voetgangersgebied\",\n  \"voetjes\": \"voetjes\",\n  \"voets\": \"voet\",\n  \"voetstappen\": \"voetstapp\",\n  \"vogel\": \"vogel\",\n  \"vogelbescherming\": \"vogelbescherm\",\n  \"vogelbestand\": \"vogelbestand\",\n  \"vogelbroedgebieden\": \"vogelbroedgebied\",\n  \"vogelenzang\": \"vogelenzang\",\n  \"vogelkarkassen\": \"vogelkarkass\",\n  \"vogelkers\": \"vogelker\",\n  \"vogelkolonie\": \"vogelkolonie\",\n  \"vogelnesten\": \"vogelnest\",\n  \"vogelonderzoek\": \"vogelonderzoek\",\n  \"vogelonderzoekers\": \"vogelonderzoeker\",\n  \"vogelpopulatie\": \"vogelpopulatie\",\n  \"vogelrichtlijn\": \"vogelrichtlijn\",\n  \"vogelrijke\": \"vogelrijk\",\n  \"vogels\": \"vogel\",\n  \"vogelsoort\": \"vogelsoort\",\n  \"vogelsoorten\": \"vogelsoort\",\n  \"vogeltellingen\": \"vogeltell\",\n  \"vogeltijdschrift\": \"vogeltijdschrift\",\n  \"vogeltjes\": \"vogeltjes\",\n  \"vogelverschrikkers\": \"vogelverschrikker\",\n  \"vogelwacht\": \"vogelwacht\",\n  \"vogelwachten\": \"vogelwacht\",\n  \"vogelwet\": \"vogelwet\",\n  \"vogelzang\": \"vogelzang\",\n  \"vogm\": \"vogm\",\n  \"vogt\": \"vogt\",\n  \"vogtländer\": \"vogtlander\",\n  \"voile\": \"voil\",\n  \"vol\": \"vol\",\n  \"vòl\": \"vòl\",\n  \"volautomatisch\": \"volautomatisch\",\n  \"volautomatische\": \"volautomatisch\",\n  \"volbracht\": \"volbracht\",\n  \"volcanera\": \"volcanera\",\n  \"volclay\": \"volclay\",\n  \"voldaan\": \"voldan\",\n  \"voldaanheid\": \"voldan\",\n  \"voldeden\": \"volded\",\n  \"voldeed\": \"volded\",\n  \"voldoen\": \"voldoen\",\n  \"voldoende\": \"voldoend\",\n  \"voldoening\": \"voldoen\",\n  \"voldoet\": \"voldoet\",\n  \"volg\": \"volg\",\n  \"volgacties\": \"volgacties\",\n  \"volgde\": \"volgd\",\n  \"volgden\": \"volgd\",\n  \"volgebouwd\": \"volgebouwd\",\n  \"volgen\": \"volg\",\n  \"volgend\": \"volgend\",\n  \"volgende\": \"volgend\",\n  \"volgens\": \"volgen\",\n  \"volgepropt\": \"volgepropt\",\n  \"volgespoten\": \"volgespot\",\n  \"volgestort\": \"volgestort\",\n  \"volgewemeld\": \"volgewemeld\",\n  \"volgorde\": \"volgord\",\n  \"volgroeid\": \"volgroeid\",\n  \"volgroeide\": \"volgroeid\",\n  \"volgsysteem\": \"volgsystem\",\n  \"volgt\": \"volgt\",\n  \"volharden\": \"volhard\",\n  \"volhardend\": \"volhard\",\n  \"volharding\": \"volhard\",\n  \"volhardt\": \"volhardt\",\n  \"volhield\": \"volhield\",\n  \"volhouden\": \"volhoud\",\n  \"volk\": \"volk\",\n  \"volker\": \"volker\",\n  \"volkerak\": \"volkerak\",\n  \"volkeren\": \"volker\",\n  \"volkomen\": \"volkom\",\n  \"volkomener\": \"volkomener\",\n  \"volksgezondheid\": \"volksgezond\",\n  \"volkshuisvesting\": \"volkshuisvest\",\n  \"volkshuisvestingszaken\": \"volkshuisvestingszak\",\n  \"volkskrant\": \"volkskrant\",\n  \"volksraadpleging\": \"volksraadpleg\",\n  \"volksrepubliek\": \"volksrepubliek\",\n  \"volkstuincomplex\": \"volkstuincomplex\",\n  \"volkstuinencomplexen\": \"volkstuinencomplex\",\n  \"volkstuinhouders\": \"volkstuinhouder\",\n  \"volkstuintjes\": \"volkstuintjes\",\n  \"volkswagen\": \"volkswag\",\n  \"vollast\": \"vollast\",\n  \"volle\": \"voll\",\n  \"vollebergh\": \"vollebergh\",\n  \"volledig\": \"volled\",\n  \"volledige\": \"volled\",\n  \"vollegrond\": \"vollegrond\",\n  \"vollegrondsgroenteteelt\": \"vollegrondsgroenteteelt\",\n  \"vollegrondsteelt\": \"vollegrondsteelt\",\n  \"vollemaansgezicht\": \"vollemaansgezicht\",\n  \"voller\": \"voller\",\n  \"volmaakt\": \"volmaakt\",\n  \"volmac\": \"volmac\",\n  \"volmacht\": \"volmacht\",\n  \"volmachten\": \"volmacht\",\n  \"volop\": \"volop\",\n  \"volstaan\": \"volstan\",\n  \"volstaat\": \"volstat\",\n  \"volstond\": \"volstond\",\n  \"volstrekt\": \"volstrekt\",\n  \"volstrekte\": \"volstrekt\",\n  \"volt\": \"volt\",\n  \"voltage\": \"voltag\",\n  \"voltaic\": \"voltaic\",\n  \"voltaische\": \"voltaisch\",\n  \"voltaïsche\": \"voltaisch\",\n  \"voltallige\": \"voltall\",\n  \"voltnet\": \"voltnet\",\n  \"voltooid\": \"voltooid\",\n  \"voltooide\": \"voltooid\",\n  \"voltooien\": \"voltooi\",\n  \"voltooiing\": \"voltooi\",\n  \"voluit\": \"voluit\",\n  \"volume\": \"volum\",\n  \"volumebeleid\": \"volumebeleid\",\n  \"volumemeetsysteem\": \"volumemeetsystem\",\n  \"volumereductie\": \"volumereductie\",\n  \"volumevermindering\": \"volumeverminder\",\n  \"volumineus\": \"volumineus\",\n  \"volumineuze\": \"volumineuz\",\n  \"volvo\": \"volvo\",\n  \"volwaardig\": \"volwaard\",\n  \"volwaardige\": \"volwaard\",\n  \"volwassen\": \"volwass\",\n  \"volwassenen\": \"volwassen\",\n  \"volwassener\": \"volwassener\",\n  \"von\": \"von\",\n  \"vond\": \"vond\",\n  \"vonden\": \"vond\",\n  \"vondst\": \"vondst\",\n  \"vonhoff\": \"vonhoff\",\n  \"vonk\": \"vonk\",\n  \"vonkelend\": \"vonkel\",\n  \"vonken\": \"vonk\",\n  \"vonkenregen\": \"vonkenreg\",\n  \"vonnis\": \"vonnis\",\n  \"voogd\": \"voogd\",\n  \"voogdij\": \"voogdij\",\n  \"voogt\": \"voogt\",\n  \"voor\": \"vor\",\n  \"vóor\": \"vor\",\n  \"vòor\": \"vòor\",\n  \"voór\": \"vor\",\n  \"voòr\": \"voòr\",\n  \"vóór\": \"vor\",\n  \"vooraanstaand\": \"vooraanstaand\",\n  \"vooraanstaande\": \"vooraanstaand\",\n  \"vooraf\": \"vooraf\",\n  \"voorafgaand\": \"voorafgaand\",\n  \"voorafgaande\": \"voorafgaand\",\n  \"voorafgegaan\": \"voorafgegan\",\n  \"vooral\": \"vooral\",\n  \"voorallen\": \"voorall\",\n  \"vooralsnog\": \"vooralsnog\",\n  \"voorarrest\": \"voorarrest\",\n  \"voorbaat\": \"voorbat\",\n  \"voorbarig\": \"voorbar\",\n  \"voorbeeld\": \"voorbeeld\",\n  \"voorbeeldbedrijven\": \"voorbeeldbedrijv\",\n  \"voorbeelden\": \"voorbeeld\",\n  \"voorbeeldenboek\": \"voorbeeldenboek\",\n  \"voorbeeldige\": \"voorbeeld\",\n  \"voorbeeldlocaties\": \"voorbeeldlocaties\",\n  \"voorbeeldproject\": \"voorbeeldproject\",\n  \"voorbeeldprojecten\": \"voorbeeldproject\",\n  \"voorbeeldrol\": \"voorbeeldrol\",\n  \"voorbeeldstellen\": \"voorbeeldstell\",\n  \"voorbeeldwerking\": \"voorbeeldwerk\",\n  \"voorbehandeld\": \"voorbehandeld\",\n  \"voorbehandeling\": \"voorbehandel\",\n  \"voorbehandelings\": \"voorbehandel\",\n  \"voorbehandelingsmethoden\": \"voorbehandelingsmethod\",\n  \"voorbehoud\": \"voorbehoud\",\n  \"voorbereid\": \"voorbereid\",\n  \"voorbereidde\": \"voorbereid\",\n  \"voorbereiden\": \"voorbereid\",\n  \"voorbereidende\": \"voorbereid\",\n  \"voorbereiding\": \"voorbereid\",\n  \"voorbereidingen\": \"voorbereid\",\n  \"voorbereidingsprogramma\": \"voorbereidingsprogramma\",\n  \"voorbestaan\": \"voorbestan\",\n  \"voorbewerking\": \"voorbewerk\",\n  \"voorbewerkt\": \"voorbewerkt\",\n  \"voorbij\": \"voorbij\",\n  \"voorbijgaan\": \"voorbijgan\",\n  \"voorbijgaand\": \"voorbijgaand\",\n  \"voorbijgaande\": \"voorbijgaand\",\n  \"voorbijgegaan\": \"voorbijgegan\",\n  \"voorbode\": \"voorbod\",\n  \"voorbodes\": \"voorbodes\",\n  \"voorburg\": \"voorburg\",\n  \"voordat\": \"voordat\",\n  \"vóordat\": \"voordat\",\n  \"voorde\": \"voord\",\n  \"voordeden\": \"voorded\",\n  \"voordeel\": \"voordel\",\n  \"voordele\": \"voordel\",\n  \"voordelen\": \"voordel\",\n  \"voordelig\": \"voordel\",\n  \"voordelige\": \"voordel\",\n  \"voordeliger\": \"voordeliger\",\n  \"voordeur\": \"voordeur\",\n  \"voordeurbel\": \"voordeurbel\",\n  \"voordien\": \"voordien\",\n  \"voordoen\": \"voordoen\",\n  \"voordracht\": \"voordracht\",\n  \"voordrachten\": \"voordracht\",\n  \"vooreerst\": \"vooreerst\",\n  \"voorfinancieren\": \"voorfinancier\",\n  \"voorfinanciering\": \"voorfinancier\",\n  \"voorfinancieringsfondsen\": \"voorfinancieringsfonds\",\n  \"voorgaande\": \"voorgaand\",\n  \"voorganger\": \"voorganger\",\n  \"voorgedaan\": \"voorgedan\",\n  \"voorgedachte\": \"voorgedacht\",\n  \"voorgedachten\": \"voorgedacht\",\n  \"voorgedragen\": \"voorgedrag\",\n  \"voorgedroogde\": \"voorgedroogd\",\n  \"voorgefinancierd\": \"voorgefinancierd\",\n  \"voorgehouden\": \"voorgehoud\",\n  \"voorgekoeld\": \"voorgekoeld\",\n  \"voorgekomen\": \"voorgekom\",\n  \"voorgelegd\": \"voorgelegd\",\n  \"voorgeleid\": \"voorgeleid\",\n  \"voorgelicht\": \"voorgelicht\",\n  \"voorgenoemde\": \"voorgenoemd\",\n  \"voorgenomen\": \"voorgenom\",\n  \"voorgescheiden\": \"voorgescheid\",\n  \"voorgeschreven\": \"voorgeschrev\",\n  \"voorgespannen\": \"voorgespann\",\n  \"voorgespiegelde\": \"voorgespiegeld\",\n  \"voorgestaande\": \"voorgestaand\",\n  \"voorgestane\": \"voorgestan\",\n  \"voorgesteld\": \"voorgesteld\",\n  \"voorgestelde\": \"voorgesteld\",\n  \"voorgevallen\": \"voorgevall\",\n  \"voorgevel\": \"voorgevel\",\n  \"voorgevoel\": \"voorgevoel\",\n  \"voorgevoeld\": \"voorgevoeld\",\n  \"voorgevoelde\": \"voorgevoeld\",\n  \"voorgevoelen\": \"voorgevoel\",\n  \"voorgevoelens\": \"voorgevoelen\",\n  \"voorgevormd\": \"voorgevormd\",\n  \"voorgezet\": \"voorgezet\",\n  \"voorgezeten\": \"voorgezet\",\n  \"voorging\": \"voorging\",\n  \"voorgoed\": \"voorgoed\",\n  \"voorhand\": \"voorhand\",\n  \"voorhanden\": \"voorhand\",\n  \"voorheen\": \"voorhen\",\n  \"voorhoeve\": \"voorhoev\",\n  \"voorhoofd\": \"voorhoofd\",\n  \"voorhout\": \"voorhout\",\n  \"voorin\": \"voorin\",\n  \"voorinschrijving\": \"voorinschrijv\",\n  \"voorinvestering\": \"voorinvester\",\n  \"voorjaar\": \"voorjar\",\n  \"voorjaars\": \"voorjar\",\n  \"voorjaarsaromen\": \"voorjaarsarom\",\n  \"voorjaarsdagen\": \"voorjaarsdag\",\n  \"voorjaarsfier\": \"voorjaarsfier\",\n  \"voorjaarshemelen\": \"voorjaarshemel\",\n  \"voorjaarslichten\": \"voorjaarslicht\",\n  \"voorkamer\": \"voorkamer\",\n  \"voorkamertje\": \"voorkamertj\",\n  \"voorkennis\": \"voorkennis\",\n  \"voorkeur\": \"voorkeur\",\n  \"voorkeuren\": \"voorkeur\",\n  \"voorkeursmethode\": \"voorkeursmethod\",\n  \"voorkeursplaatsen\": \"voorkeursplaats\",\n  \"voorkeursrecht\": \"voorkeursrecht\",\n  \"voorkeurstracé\": \"voorkeurstrac\",\n  \"voorkeurstraject\": \"voorkeurstraject\",\n  \"voorkom\": \"voorkom\",\n  \"voorkomen\": \"voorkom\",\n  \"voorkómen\": \"voorkom\",\n  \"vóórkomen\": \"voorkom\",\n  \"voorkomend\": \"voorkom\",\n  \"voorkomende\": \"voorkom\",\n  \"voorkoming\": \"voorkom\",\n  \"voorkomt\": \"voorkomt\",\n  \"voorkwam\": \"voorkwam\",\n  \"voorkwamen\": \"voorkwam\",\n  \"voorlader\": \"voorlader\",\n  \"voorland\": \"voorland\",\n  \"voorleggen\": \"voorlegg\",\n  \"voorlichten\": \"voorlicht\",\n  \"voorlichter\": \"voorlichter\",\n  \"voorlichters\": \"voorlichter\",\n  \"voorlichting\": \"voorlicht\",\n  \"voorlichtingsafdeling\": \"voorlichtingsafdel\",\n  \"voorlichtingsavond\": \"voorlichtingsavond\",\n  \"voorlichtingsavonden\": \"voorlichtingsavond\",\n  \"voorlichtingsbijeenkomst\": \"voorlichtingsbijeenkomst\",\n  \"voorlichtingsbrochure\": \"voorlichtingsbrochur\",\n  \"voorlichtingsbrochures\": \"voorlichtingsbrochures\",\n  \"voorlichtingsbureau\": \"voorlichtingsbureau\",\n  \"voorlichtingscampagne\": \"voorlichtingscampagn\",\n  \"voorlichtingscampagnes\": \"voorlichtingscampagnes\",\n  \"voorlichtingsdienst\": \"voorlichtingsdienst\",\n  \"voorlichtingsfolder\": \"voorlichtingsfolder\",\n  \"voorlichtingskunde\": \"voorlichtingskund\",\n  \"voorlichtingsmateriaal\": \"voorlichtingsmateriaal\",\n  \"voorlichtingsprojecten\": \"voorlichtingsproject\",\n  \"voorlichtingsronde\": \"voorlichtingsrond\",\n  \"voorloper\": \"voorloper\",\n  \"voorlopers\": \"voorloper\",\n  \"voorlopersrol\": \"voorlopersrol\",\n  \"voorlopig\": \"voorlop\",\n  \"voorlopige\": \"voorlop\",\n  \"voormalig\": \"voormal\",\n  \"voormalige\": \"voormal\",\n  \"voorman\": \"voorman\",\n  \"voormannen\": \"voormann\",\n  \"voormolen\": \"voormol\",\n  \"voorn\": \"voorn\",\n  \"voornaam\": \"voornam\",\n  \"voornaamheid\": \"voornam\",\n  \"voornaams\": \"voornam\",\n  \"voornaamste\": \"voornaamst\",\n  \"voorname\": \"voornam\",\n  \"voornamelijk\": \"voornam\",\n  \"voornemen\": \"voornem\",\n  \"voornemens\": \"voornemen\",\n  \"voornorm\": \"voornorm\",\n  \"voornse\": \"voorn\",\n  \"vooronderzoek\": \"vooronderzoek\",\n  \"vooronderzoeksrapport\": \"vooronderzoeksrapport\",\n  \"voorontwerp\": \"voorontwerp\",\n  \"vooroordeel\": \"vooroordel\",\n  \"vooroordeeltjes\": \"vooroordeeltjes\",\n  \"vooroordelen\": \"vooroordel\",\n  \"vooroorlogse\": \"vooroorlog\",\n  \"voorop\": \"voorop\",\n  \"vooropeningen\": \"vooropen\",\n  \"vooropstellen\": \"vooropstell\",\n  \"voorover\": \"voorover\",\n  \"voorpersklep\": \"voorpersklep\",\n  \"voorraad\": \"voorrad\",\n  \"voorraadadministratie\": \"voorraadadministratie\",\n  \"voorraadbeheer\": \"voorraadbeher\",\n  \"voorraadhoudende\": \"voorraadhoud\",\n  \"voorraadtanks\": \"voorraadtank\",\n  \"voorraden\": \"voorrad\",\n  \"voorrang\": \"voorrang\",\n  \"voorrecht\": \"voorrecht\",\n  \"voorschakelapparaat\": \"voorschakelapparat\",\n  \"voorschijn\": \"voorschijn\",\n  \"voorschot\": \"voorschot\",\n  \"voorschoten\": \"voorschot\",\n  \"voorschrift\": \"voorschrift\",\n  \"voorschriften\": \"voorschrift\",\n  \"voorschriftenselectieprogramma\": \"voorschriftenselectieprogramma\",\n  \"voorschrijft\": \"voorschrijft\",\n  \"voorschrijven\": \"voorschrijv\",\n  \"voorspel\": \"voorspel\",\n  \"voorspelbaar\": \"voorspel\",\n  \"voorspelbare\": \"voorspel\",\n  \"voorspeld\": \"voorspeld\",\n  \"voorspelde\": \"voorspeld\",\n  \"voorspellen\": \"voorspell\",\n  \"voorspellend\": \"voorspell\",\n  \"voorspelling\": \"voorspell\",\n  \"voorspellingen\": \"voorspell\",\n  \"voorspellingsmodellen\": \"voorspellingsmodell\",\n  \"voorspelt\": \"voorspelt\",\n  \"voorspiegelend\": \"voorspiegel\",\n  \"voorspoedig\": \"voorspoed\",\n  \"voorspoelwater\": \"voorspoelwater\",\n  \"voorsprong\": \"voorsprong\",\n  \"voorstaat\": \"voorstat\",\n  \"voorstad\": \"voorstad\",\n  \"voorstander\": \"voorstander\",\n  \"voorstanders\": \"voorstander\",\n  \"voorste\": \"voorst\",\n  \"voorstel\": \"voorstel\",\n  \"voorstelden\": \"voorsteld\",\n  \"voorstellen\": \"voorstell\",\n  \"voorstelling\": \"voorstell\",\n  \"voorstelt\": \"voorstelt\",\n  \"voorstudie\": \"voorstudie\",\n  \"voort\": \"voort\",\n  \"voortaan\": \"voortan\",\n  \"voortbestaan\": \"voortbestan\",\n  \"voortbeweging\": \"voortbeweg\",\n  \"voortbloeien\": \"voortbloei\",\n  \"voortbracht\": \"voortbracht\",\n  \"voortbrengen\": \"voortbreng\",\n  \"voortbrengkosten\": \"voortbrengkost\",\n  \"voortduren\": \"voortdur\",\n  \"voortdurend\": \"voortdur\",\n  \"voortdurende\": \"voortdur\",\n  \"voortgaande\": \"voortgaand\",\n  \"voortgaat\": \"voortgat\",\n  \"voortgang\": \"voortgang\",\n  \"voortgangscontrole\": \"voortgangscontrol\",\n  \"voortgangscontroles\": \"voortgangscontroles\",\n  \"voortgangsrapportage\": \"voortgangsrapportag\",\n  \"voortgangsverslag\": \"voortgangsverslag\",\n  \"voortgebracht\": \"voortgebracht\",\n  \"voortgedreven\": \"voortgedrev\",\n  \"voortgegaan\": \"voortgegan\",\n  \"voortgeijld\": \"voortgeijld\",\n  \"voortgekomen\": \"voortgekom\",\n  \"voortgeschopt\": \"voortgeschopt\",\n  \"voortgesleept\": \"voortgesleept\",\n  \"voortgestuwd\": \"voortgestuwd\",\n  \"voortgezet\": \"voortgezet\",\n  \"voortgezette\": \"voortgezet\",\n  \"voortging\": \"voortging\",\n  \"voortgingen\": \"voortging\",\n  \"voorthelpen\": \"voorthelp\",\n  \"voortijdig\": \"voortijd\",\n  \"voortijdige\": \"voortijd\",\n  \"voortijlde\": \"voortijld\",\n  \"voortkomen\": \"voortkom\",\n  \"voortkomende\": \"voortkom\",\n  \"voortkomt\": \"voortkomt\",\n  \"voortleven\": \"voortlev\",\n  \"voortmaken\": \"voortmak\",\n  \"voortouw\": \"voortouw\",\n  \"voortplanting\": \"voortplant\",\n  \"voortplantingsorganen\": \"voortplantingsorgan\",\n  \"voortplantingssysteem\": \"voortplantingssystem\",\n  \"voortplantingstijd\": \"voortplantingstijd\",\n  \"voortraject\": \"voortraject\",\n  \"voortrekkende\": \"voortrek\",\n  \"voortrekkersrol\": \"voortrekkersrol\",\n  \"voortrollende\": \"voortroll\",\n  \"voorts\": \"voort\",\n  \"voortschoot\": \"voortschot\",\n  \"voortsjokken\": \"voortsjok\",\n  \"voortsjokkende\": \"voortsjok\",\n  \"voortsjokte\": \"voortsjokt\",\n  \"voortslepen\": \"voortslep\",\n  \"voortsleping\": \"voortslep\",\n  \"voortspruitende\": \"voortspruit\",\n  \"voortsukkelen\": \"voortsukkel\",\n  \"voorttastte\": \"voorttast\",\n  \"voortuin\": \"voortuin\",\n  \"voortvarend\": \"voortvar\",\n  \"voortvarende\": \"voortvar\",\n  \"voortvloeien\": \"voortvloei\",\n  \"voortvloeiend\": \"voortvloei\",\n  \"voortvloeiende\": \"voortvloei\",\n  \"voortvloeit\": \"voortvloeit\",\n  \"voortwerken\": \"voortwerk\",\n  \"voortweven\": \"voortwev\",\n  \"voortzet\": \"voortzet\",\n  \"voortzetten\": \"voortzet\",\n  \"voortzetting\": \"voortzet\",\n  \"vooruit\": \"vooruit\",\n  \"vooruitblik\": \"vooruitblik\",\n  \"vooruitgang\": \"vooruitgang\",\n  \"vooruitkijken\": \"vooruitkijk\",\n  \"vooruitlopen\": \"vooruitlop\",\n  \"vooruitlopend\": \"vooruitlop\",\n  \"vooruitstekende\": \"vooruitstek\",\n  \"vooruitstrevend\": \"vooruitstrev\",\n  \"vooruitstrevende\": \"vooruitstrev\",\n  \"vooruitzicht\": \"vooruitzicht\",\n  \"vooruitzichten\": \"vooruitzicht\",\n  \"vooruitziende\": \"vooruitzi\",\n  \"voorval\": \"voorval\",\n  \"voorverkleiners\": \"voorverkleiner\",\n  \"voorverwarmd\": \"voorverwarmd\",\n  \"voorverwarmer\": \"voorverwarmer\",\n  \"voorviel\": \"voorviel\",\n  \"voorwaarde\": \"voorwaard\",\n  \"voorwaardelijk\": \"voorwaard\",\n  \"voorwaardelijke\": \"voorwaard\",\n  \"voorwaarden\": \"voorwaard\",\n  \"voorwaarts\": \"voorwaart\",\n  \"voorwendsel\": \"voorwendsel\",\n  \"voorwendsels\": \"voorwendsel\",\n  \"voorwerp\": \"voorwerp\",\n  \"voorwerpen\": \"voorwerp\",\n  \"voorzag\": \"voorzag\",\n  \"voorzeide\": \"voorzeid\",\n  \"voorzette\": \"voorzet\",\n  \"voorzichte\": \"voorzicht\",\n  \"voorzichtig\": \"voorzicht\",\n  \"voorzichtige\": \"voorzicht\",\n  \"voorzichtiger\": \"voorzichtiger\",\n  \"voorzichtigheid\": \"voorzicht\",\n  \"voorzien\": \"voorzien\",\n  \"voorziene\": \"voorzien\",\n  \"voorziening\": \"voorzien\",\n  \"voorzieningen\": \"voorzien\",\n  \"voorzieningsgebied\": \"voorzieningsgebied\",\n  \"voorziet\": \"voorziet\",\n  \"voorziter\": \"voorziter\",\n  \"voorzitter\": \"voorzitter\",\n  \"voorzitters\": \"voorzitter\",\n  \"voorzitterschap\": \"voorzitterschap\",\n  \"voorzittersschap\": \"voorzittersschap\",\n  \"voorzorg\": \"voorzorg\",\n  \"voorzorgprincipe\": \"voorzorgprincip\",\n  \"voorzorgs\": \"voorzorg\",\n  \"voorzorgsmaatregelen\": \"voorzorgsmaatregel\",\n  \"voorzorgsprincipe\": \"voorzorgsprincip\",\n  \"voorzuivering\": \"voorzuiver\",\n  \"voorzuiveringsinstallaties\": \"voorzuiveringsinstallaties\",\n  \"vor\": \"vor\",\n  \"vorderde\": \"vorderd\",\n  \"vordering\": \"vorder\",\n  \"vorderingen\": \"vorder\",\n  \"vorderingsstaten\": \"vorderingsstat\",\n  \"vordert\": \"vordert\",\n  \"voren\": \"vor\",\n  \"vorig\": \"vorig\",\n  \"vorige\": \"vorig\",\n  \"vork\": \"vork\",\n  \"vorkheftruck\": \"vorkheftruck\",\n  \"vorm\": \"vorm\",\n  \"vormde\": \"vormd\",\n  \"vormden\": \"vormd\",\n  \"vormen\": \"vorm\",\n  \"vormgegeven\": \"vormgegev\",\n  \"vormgeven\": \"vormgev\",\n  \"vormgeving\": \"vormgev\",\n  \"vormgevingsinstituut\": \"vormgevingsinstitut\",\n  \"vormige\": \"vormig\",\n  \"vorming\": \"vorming\",\n  \"vormt\": \"vormt\",\n  \"vormvrij\": \"vormvrij\",\n  \"vorst\": \"vorst\",\n  \"vorstelijkheid\": \"vorstelijk\",\n  \"vorsten\": \"vorst\",\n  \"vorsteuerabzug\": \"vorsteuerabzug\",\n  \"vorstin\": \"vorstin\",\n  \"vorstloze\": \"vorstloz\",\n  \"vorstperiodes\": \"vorstperiodes\",\n  \"vorstverlet\": \"vorstverlet\",\n  \"vortex\": \"vortex\",\n  \"vos\": \"vos\",\n  \"vossehaai\": \"vossehaai\",\n  \"vossehaaien\": \"vossehaai\",\n  \"vosselaars\": \"vosselar\",\n  \"vossemeer\": \"vossemer\",\n  \"votulast\": \"votulast\",\n  \"voudige\": \"voudig\",\n  \"vous\": \"vous\",\n  \"vouw\": \"vouw\",\n  \"vouwde\": \"vouwd\",\n  \"vouwen\": \"vouw\",\n  \"vouwmes\": \"vouwmes\",\n  \"vpb\": \"vpb\",\n  \"vpr\": \"vpr\",\n  \"vpro\": \"vpro\",\n  \"vr\": \"vr\",\n  \"vraag\": \"vrag\",\n  \"vraagsituatie\": \"vraagsituatie\",\n  \"vraagstelling\": \"vraagstell\",\n  \"vraagstukken\": \"vraagstuk\",\n  \"vraagt\": \"vraagt\",\n  \"vraagtekens\": \"vraagteken\",\n  \"vraagzijde\": \"vraagzijd\",\n  \"vraat\": \"vrat\",\n  \"vraatzucht\": \"vraatzucht\",\n  \"vraatzuchtige\": \"vraatzucht\",\n  \"vracht\": \"vracht\",\n  \"vrachtauto\": \"vrachtauto\",\n  \"vrachten\": \"vracht\",\n  \"vrachtjumbo\": \"vrachtjumbo\",\n  \"vrachtpapieren\": \"vrachtpapier\",\n  \"vrachtschip\": \"vrachtschip\",\n  \"vrachtverkeer\": \"vrachtverker\",\n  \"vrachtvervoerders\": \"vrachtvervoerder\",\n  \"vrachtvliegtuigen\": \"vrachtvliegtu\",\n  \"vrachtvluchten\": \"vrachtvlucht\",\n  \"vrachtwagen\": \"vrachtwag\",\n  \"vrachtwagenactiviteiten\": \"vrachtwagenactiviteit\",\n  \"vrachtwagenbanden\": \"vrachtwagenband\",\n  \"vrachtwagenchauffeur\": \"vrachtwagenchauffeur\",\n  \"vrachtwagencontainers\": \"vrachtwagencontainer\",\n  \"vrachtwagenfabrikanten\": \"vrachtwagenfabrikant\",\n  \"vrachtwagenritten\": \"vrachtwagenrit\",\n  \"vrachtwagens\": \"vrachtwagen\",\n  \"vragen\": \"vrag\",\n  \"vragend\": \"vragend\",\n  \"vragende\": \"vragend\",\n  \"vragenformulier\": \"vragenformulier\",\n  \"vragenlijst\": \"vragenlijst\",\n  \"vraging\": \"vraging\",\n  \"vranitzky\": \"vranitzky\",\n  \"vrat\": \"vrat\",\n  \"vrede\": \"vred\",\n  \"vredelievende\": \"vredeliev\",\n  \"vredes\": \"vredes\",\n  \"vredestein\": \"vredestein\",\n  \"vredevanen\": \"vredevan\",\n  \"vredo\": \"vredo\",\n  \"vreedzame\": \"vreedzam\",\n  \"vreemd\": \"vreemd\",\n  \"vreemde\": \"vreemd\",\n  \"vreemdeling\": \"vreemdel\",\n  \"vreemdelinge\": \"vreemdel\",\n  \"vreemden\": \"vreemd\",\n  \"vreemder\": \"vreemder\",\n  \"vreemdheid\": \"vreemdheid\",\n  \"vreemds\": \"vreemd\",\n  \"vreemdste\": \"vreemdst\",\n  \"vrees\": \"vres\",\n  \"vreesde\": \"vreesd\",\n  \"vreesden\": \"vreesd\",\n  \"vreeslijk\": \"vreeslijk\",\n  \"vreeslijke\": \"vreeslijk\",\n  \"vreeslijks\": \"vreeslijk\",\n  \"vreeslijkste\": \"vreeslijkst\",\n  \"vreest\": \"vreest\",\n  \"vreeswijck\": \"vreeswijck\",\n  \"vreeswijckjes\": \"vreeswijckjes\",\n  \"vreeswijek\": \"vreeswijek\",\n  \"vreet\": \"vret\",\n  \"vreselijk\": \"vreselijk\",\n  \"vreselijke\": \"vreselijk\",\n  \"vreten\": \"vret\",\n  \"vreugd\": \"vreugd\",\n  \"vreugde\": \"vreugd\",\n  \"vreugdeloos\": \"vreugdelos\",\n  \"vreze\": \"vrez\",\n  \"vrezen\": \"vrez\",\n  \"vrezende\": \"vrezend\",\n  \"vrg\": \"vrg\",\n  \"vrieland\": \"vrieland\",\n  \"vriend\": \"vriend\",\n  \"vriendelijk\": \"vriendelijk\",\n  \"vriendelijke\": \"vriendelijk\",\n  \"vriendelijker\": \"vriendelijker\",\n  \"vriendelijkheid\": \"vriendelijk\",\n  \"vriendelijkjes\": \"vriendelijkjes\",\n  \"vriendelijks\": \"vriendelijk\",\n  \"vrienden\": \"vriend\",\n  \"vriendin\": \"vriendin\",\n  \"vriendinnen\": \"vriendinn\",\n  \"vriendinnetje\": \"vriendinnetj\",\n  \"vriends\": \"vriend\",\n  \"vriendschap\": \"vriendschap\",\n  \"vriendschappelijk\": \"vriendschapp\",\n  \"vriendschappelijke\": \"vriendschapp\",\n  \"vriendschappelijks\": \"vriendschapp\",\n  \"vriendt\": \"vriendt\",\n  \"vrienschappelijk\": \"vrienschapp\",\n  \"vries\": \"vries\",\n  \"vriesconcentreer\": \"vriesconcentrer\",\n  \"vriesconcentreren\": \"vriesconcentrer\",\n  \"vriesdrogen\": \"vriesdrog\",\n  \"vrieseilanden\": \"vrieseiland\",\n  \"vrieshuis\": \"vrieshuis\",\n  \"vrieshuizen\": \"vrieshuiz\",\n  \"vriespunt\": \"vriespunt\",\n  \"vriesruimten\": \"vriesruimt\",\n  \"vriessneeuw\": \"vriessneeuw\",\n  \"vriest\": \"vriest\",\n  \"vriestechniek\": \"vriestechniek\",\n  \"vriestunnel\": \"vriestunnel\",\n  \"vriezen\": \"vriez\",\n  \"vriezer\": \"vriezer\",\n  \"vrij\": \"vrij\",\n  \"vrijaf\": \"vrijaf\",\n  \"vrijblijvend\": \"vrijblijv\",\n  \"vrijdag\": \"vrijdag\",\n  \"vrijde\": \"vrijd\",\n  \"vrije\": \"vrij\",\n  \"vrijelijk\": \"vrijelijk\",\n  \"vrijen\": \"vrij\",\n  \"vrijer\": \"vrijer\",\n  \"vrijere\": \"vrijer\",\n  \"vrijersidee\": \"vrijersidee\",\n  \"vrijetijdsparken\": \"vrijetijdspark\",\n  \"vrijgegeven\": \"vrijgegev\",\n  \"vrijgehouden\": \"vrijgehoud\",\n  \"vrijgekomen\": \"vrijgekom\",\n  \"vrijgelaten\": \"vrijgelat\",\n  \"vrijgemaakt\": \"vrijgemaakt\",\n  \"vrijgesproken\": \"vrijgesprok\",\n  \"vrijgesteld\": \"vrijgesteld\",\n  \"vrijhandel\": \"vrijhandel\",\n  \"vrijheid\": \"vrijheid\",\n  \"vrijhouden\": \"vrijhoud\",\n  \"vrijkomen\": \"vrijkom\",\n  \"vrijkomend\": \"vrijkom\",\n  \"vrijkomende\": \"vrijkom\",\n  \"vrijkomt\": \"vrijkomt\",\n  \"vrijkwam\": \"vrijkwam\",\n  \"vrijkwamen\": \"vrijkwam\",\n  \"vrijlaten\": \"vrijlat\",\n  \"vrijlating\": \"vrijlat\",\n  \"vrijliggende\": \"vrijligg\",\n  \"vrijmaakt\": \"vrijmaakt\",\n  \"vrijmaken\": \"vrijmak\",\n  \"vrijstaande\": \"vrijstaand\",\n  \"vrijstellen\": \"vrijstell\",\n  \"vrijstelling\": \"vrijstell\",\n  \"vrijstellingen\": \"vrijstell\",\n  \"vrijwaard\": \"vrijwaard\",\n  \"vrijwaren\": \"vrijwar\",\n  \"vrijwaring\": \"vrijwar\",\n  \"vrijwel\": \"vrijwel\",\n  \"vrijwillig\": \"vrijwill\",\n  \"vrijwillige\": \"vrijwill\",\n  \"vrijwilligers\": \"vrijwilliger\",\n  \"vrijwilligheid\": \"vrijwill\",\n  \"vrijzinnigheid\": \"vrijzinn\",\n  \"vroeg\": \"vroeg\",\n  \"vroege\": \"vroeg\",\n  \"vroegen\": \"vroeg\",\n  \"vroeger\": \"vroeger\",\n  \"vroegere\": \"vroeger\",\n  \"vroegers\": \"vroeger\",\n  \"vroegoude\": \"vroegoud\",\n  \"vroegrijpe\": \"vroegrijp\",\n  \"vroegst\": \"vroegst\",\n  \"vroegtijdig\": \"vroegtijd\",\n  \"vrolijk\": \"vrolijk\",\n  \"vrolijke\": \"vrolijk\",\n  \"vrolijker\": \"vrolijker\",\n  \"vrolijkheid\": \"vrolijk\",\n  \"vrolijks\": \"vrolijk\",\n  \"vrolijkte\": \"vrolijkt\",\n  \"vrom\": \"vrom\",\n  \"vrome\": \"vrom\",\n  \"vroom\": \"vrom\",\n  \"vroomheid\": \"vroomheid\",\n  \"vrouw\": \"vrouw\",\n  \"vrouwe\": \"vrouw\",\n  \"vrouwehaar\": \"vrouwehar\",\n  \"vrouwehand\": \"vrouwehand\",\n  \"vrouweleven\": \"vrouwelev\",\n  \"vrouwelijk\": \"vrouwelijk\",\n  \"vrouwelijke\": \"vrouwelijk\",\n  \"vrouwelijkheid\": \"vrouwelijk\",\n  \"vrouwelijkheidjes\": \"vrouwelijkheidjes\",\n  \"vrouwelijks\": \"vrouwelijk\",\n  \"vrouwen\": \"vrouw\",\n  \"vrouwenleven\": \"vrouwenlev\",\n  \"vrouwenuniversiteit\": \"vrouwenuniversiteit\",\n  \"vrouwenwaardering\": \"vrouwenwaarder\",\n  \"vrouwevorm\": \"vrouwevorm\",\n  \"vrouweziel\": \"vrouweziel\",\n  \"vrouwplichtjes\": \"vrouwplichtjes\",\n  \"vrouwtje\": \"vrouwtj\",\n  \"vrouwtjes\": \"vrouwtjes\",\n  \"vrouwvan\": \"vrouwvan\",\n  \"vrucht\": \"vrucht\",\n  \"vruchtbaar\": \"vruchtbar\",\n  \"vruchtbaarheid\": \"vruchtbar\",\n  \"vruchtbare\": \"vruchtbar\",\n  \"vruchten\": \"vrucht\",\n  \"vruchtenjood\": \"vruchtenjod\",\n  \"vruchtenkoeken\": \"vruchtenkoek\",\n  \"vruchtenverkopers\": \"vruchtenverkoper\",\n  \"vruchtesappen\": \"vruchtesapp\",\n  \"vruchtgebruik\": \"vruchtgebruik\",\n  \"vs\": \"vs\",\n  \"vsa\": \"vsa\",\n  \"vse\": \"vse\",\n  \"vsk\": \"vsk\",\n  \"vsn\": \"vsn\",\n  \"vsop\": \"vsop\",\n  \"vtm\": \"vtm\",\n  \"vu\": \"vu\",\n  \"vues\": \"vues\",\n  \"vuga\": \"vuga\",\n  \"vught\": \"vught\",\n  \"vugt\": \"vugt\",\n  \"vuil\": \"vuil\",\n  \"vuilafstotend\": \"vuilafstot\",\n  \"vuilbelasting\": \"vuilbelast\",\n  \"vuile\": \"vuil\",\n  \"vuilemissie\": \"vuilemissie\",\n  \"vuilere\": \"vuiler\",\n  \"vuiligheid\": \"vuilig\",\n  \"vuillinnenmand\": \"vuillinnenmand\",\n  \"vuilnis\": \"vuilnis\",\n  \"vuilnisbak\": \"vuilnisbak\",\n  \"vuilnisbelt\": \"vuilnisbelt\",\n  \"vuilnisbelten\": \"vuilnisbelt\",\n  \"vuilnisboel\": \"vuilnisboel\",\n  \"vuilnismannen\": \"vuilnismann\",\n  \"vuilnisophalers\": \"vuilnisophaler\",\n  \"vuilnisprobleem\": \"vuilnisproblem\",\n  \"vuilniswagen\": \"vuilniswag\",\n  \"vuilniswagens\": \"vuilniswagen\",\n  \"vuilniszak\": \"vuilniszak\",\n  \"vuilniszakken\": \"vuilniszak\",\n  \"vuilophalers\": \"vuilophaler\",\n  \"vuilopslagcapaciteit\": \"vuilopslagcapaciteit\",\n  \"vuilste\": \"vuilst\",\n  \"vuilstort\": \"vuilstort\",\n  \"vuilstortplaats\": \"vuilstortplat\",\n  \"vuilstortplaatsen\": \"vuilstortplaats\",\n  \"vuiluitstort\": \"vuiluitstort\",\n  \"vuilverbrander\": \"vuilverbrander\",\n  \"vuilverbranders\": \"vuilverbrander\",\n  \"vuilverbranding\": \"vuilverbrand\",\n  \"vuilverbrandings\": \"vuilverbrand\",\n  \"vuilverbrandingsinstalaties\": \"vuilverbrandingsinstalaties\",\n  \"vuilverbrandingsinstallatie\": \"vuilverbrandingsinstallatie\",\n  \"vuilverbrandingsinstallaties\": \"vuilverbrandingsinstallaties\",\n  \"vuilverbrandingsoven\": \"vuilverbrandingsov\",\n  \"vuilverbrandingsovens\": \"vuilverbrandingsoven\",\n  \"vuilverwerker\": \"vuilverwerker\",\n  \"vuilverwerkingsbedrijf\": \"vuilverwerkingsbedrijf\",\n  \"vuilverwerkingsfabrieken\": \"vuilverwerkingsfabriek\",\n  \"vuilverwijdering\": \"vuilverwijder\",\n  \"vuilvissen\": \"vuilviss\",\n  \"vuilwater\": \"vuilwater\",\n  \"vuilwaterinzameling\": \"vuilwaterinzamel\",\n  \"vuilwaterinzamelstations\": \"vuilwaterinzamelstation\",\n  \"vuilwaterinzamelstructuur\": \"vuilwaterinzamelstructur\",\n  \"vuilwaterklokpompen\": \"vuilwaterklokpomp\",\n  \"vuilwaterlocaties\": \"vuilwaterlocaties\",\n  \"vuilwatertanks\": \"vuilwatertank\",\n  \"vuist\": \"vuist\",\n  \"vuisten\": \"vuist\",\n  \"vuistjes\": \"vuistjes\",\n  \"vul\": \"vul\",\n  \"vulcan\": \"vulcan\",\n  \"vulcanisering\": \"vulcaniser\",\n  \"vulde\": \"vuld\",\n  \"vulden\": \"vuld\",\n  \"vulgair\": \"vulgair\",\n  \"vulgaire\": \"vulgair\",\n  \"vulgariteit\": \"vulgariteit\",\n  \"vulkaan\": \"vulkan\",\n  \"vulkaanbasalt\": \"vulkaanbasalt\",\n  \"vulkaanuitbarstingen\": \"vulkaanuitbarst\",\n  \"vulkachel\": \"vulkachel\",\n  \"vulkanen\": \"vulkan\",\n  \"vulkanisch\": \"vulkanisch\",\n  \"vulkanische\": \"vulkanisch\",\n  \"vulkanologen\": \"vulkanolog\",\n  \"vulkanoloog\": \"vulkanolog\",\n  \"vullen\": \"vull\",\n  \"vullende\": \"vullend\",\n  \"vuller\": \"vuller\",\n  \"vullers\": \"vuller\",\n  \"vulliez\": \"vulliez\",\n  \"vullis\": \"vullis\",\n  \"vulmateriaal\": \"vulmateriaal\",\n  \"vulmiddel\": \"vulmiddel\",\n  \"vulschuim\": \"vulschuim\",\n  \"vulstof\": \"vulstof\",\n  \"vulstoffen\": \"vulstoff\",\n  \"vult\": \"vult\",\n  \"vunzig\": \"vunzig\",\n  \"vuren\": \"vur\",\n  \"vurende\": \"vurend\",\n  \"vurige\": \"vurig\",\n  \"vuur\": \"vur\",\n  \"vuurbestrijding\": \"vuurbestrijd\",\n  \"vuurgevaarlijke\": \"vuurgevar\",\n  \"vuurhaard\": \"vuurhaard\",\n  \"vuurlek\": \"vuurlek\",\n  \"vuurrood\": \"vuurrod\",\n  \"vuurs\": \"vur\",\n  \"vuursmeren\": \"vuursmer\",\n  \"vuurtong\": \"vuurtong\",\n  \"vuurtoren\": \"vuurtor\",\n  \"vuurvast\": \"vuurvast\",\n  \"vuurwerk\": \"vuurwerk\",\n  \"vuurwerkgebied\": \"vuurwerkgebied\",\n  \"vuylsteke\": \"vuylstek\",\n  \"vvav\": \"vvav\",\n  \"vvd\": \"vvd\",\n  \"vvm\": \"vvm\",\n  \"vvnh\": \"vvnh\",\n  \"vvvf\": \"vvvf\",\n  \"vws\": \"vws\",\n  \"vzw\": \"vzw\",\n  \"w\": \"w\",\n  \"waagde\": \"waagd\",\n  \"waai\": \"waai\",\n  \"waaide\": \"waaid\",\n  \"waaiden\": \"waaid\",\n  \"waaidenaan\": \"waaidenan\",\n  \"waaien\": \"waai\",\n  \"waaiend\": \"waaiend\",\n  \"waaiende\": \"waaiend\",\n  \"waaier\": \"waaier\",\n  \"waaiers\": \"waaier\",\n  \"waaiïngen\": \"waaiing\",\n  \"waait\": \"waait\",\n  \"waaivuil\": \"waaivuil\",\n  \"waaivuilvangsysteem\": \"waaivuilvangsystem\",\n  \"waakte\": \"waakt\",\n  \"waakvlam\": \"waakvlam\",\n  \"waal\": \"wal\",\n  \"waaldijk\": \"waaldijk\",\n  \"waalsdorpse\": \"waalsdorp\",\n  \"waalse\": \"wal\",\n  \"waan\": \"wan\",\n  \"waande\": \"waand\",\n  \"waanzin\": \"waanzin\",\n  \"waar\": \"war\",\n  \"wáar\": \"war\",\n  \"waaraan\": \"waaran\",\n  \"waarachter\": \"waarachter\",\n  \"waarachtig\": \"waaracht\",\n  \"waarbij\": \"waarbij\",\n  \"waarbinnen\": \"waarbinn\",\n  \"waarborg\": \"waarborg\",\n  \"waarborgen\": \"waarborg\",\n  \"waarborgfonds\": \"waarborgfond\",\n  \"waarborging\": \"waarborg\",\n  \"waarborgt\": \"waarborgt\",\n  \"waarboven\": \"waarbov\",\n  \"waard\": \"waard\",\n  \"waarde\": \"waard\",\n  \"waardebon\": \"waardebon\",\n  \"waardedaling\": \"waardedal\",\n  \"waardedrukkende\": \"waardedruk\",\n  \"waardeer\": \"waarder\",\n  \"waardeerde\": \"waardeerd\",\n  \"waardeert\": \"waardeert\",\n  \"waardeloos\": \"waardelos\",\n  \"waardeloosheid\": \"waardelos\",\n  \"waarden\": \"waard\",\n  \"waarderen\": \"waarder\",\n  \"waarderend\": \"waarder\",\n  \"waarderende\": \"waarder\",\n  \"waardering\": \"waarder\",\n  \"waardevol\": \"waardevol\",\n  \"waardevolle\": \"waardevoll\",\n  \"waardig\": \"waardig\",\n  \"waardige\": \"waardig\",\n  \"waardigheid\": \"waardig\",\n  \"waardoon\": \"waardon\",\n  \"waardoor\": \"waardor\",\n  \"waardpolder\": \"waardpolder\",\n  \"waargemaakt\": \"waargemaakt\",\n  \"waargenomen\": \"waargenom\",\n  \"waarheden\": \"waarheid\",\n  \"waarheen\": \"waarhen\",\n  \"waarheid\": \"waarheid\",\n  \"waarin\": \"waarin\",\n  \"waarlangs\": \"waarlang\",\n  \"waarlijk\": \"waarlijk\",\n  \"waarmaken\": \"waarmak\",\n  \"waarmede\": \"waarmed\",\n  \"waarmee\": \"waarmee\",\n  \"waarna\": \"waarna\",\n  \"waarnaar\": \"waarnar\",\n  \"waarneembaar\": \"waarnem\",\n  \"waarneembare\": \"waarnem\",\n  \"waarnemen\": \"waarnem\",\n  \"waarnemers\": \"waarnemer\",\n  \"waarneming\": \"waarnem\",\n  \"waarnemingen\": \"waarnem\",\n  \"waarom\": \"waarom\",\n  \"waaronder\": \"waaronder\",\n  \"waarop\": \"waarop\",\n  \"waarover\": \"waarover\",\n  \"waars\": \"war\",\n  \"waarschijnlijk\": \"waarschijn\",\n  \"waarschijnlijke\": \"waarschijn\",\n  \"waarschijnlijkheid\": \"waarschijn\",\n  \"waarschuwde\": \"waarschuwd\",\n  \"waarschuwden\": \"waarschuwd\",\n  \"waarschuwen\": \"waarschuw\",\n  \"waarschuwend\": \"waarschuw\",\n  \"waarschuwings\": \"waarschuw\",\n  \"waarschuwingssystemen\": \"waarschuwingssystem\",\n  \"waarschuwingstekens\": \"waarschuwingsteken\",\n  \"waarschuwingstijd\": \"waarschuwingstijd\",\n  \"waarschuwt\": \"waarschuwt\",\n  \"waartegen\": \"waarteg\",\n  \"waartoe\": \"waartoe\",\n  \"waartussen\": \"waartuss\",\n  \"waaruit\": \"waaruit\",\n  \"waarvan\": \"waarvan\",\n  \"waarvandaan\": \"waarvandan\",\n  \"waarvoor\": \"waarvor\",\n  \"waas\": \"was\",\n  \"waasde\": \"waasd\",\n  \"waasden\": \"waasd\",\n  \"wabm\": \"wabm\",\n  \"wacht\": \"wacht\",\n  \"wachten\": \"wacht\",\n  \"wachtend\": \"wachtend\",\n  \"wachtende\": \"wachtend\",\n  \"wachting\": \"wachting\",\n  \"wachtkamer\": \"wachtkamer\",\n  \"wachtkamertje\": \"wachtkamertj\",\n  \"wachtstand\": \"wachtstand\",\n  \"wachtte\": \"wacht\",\n  \"wachtten\": \"wacht\",\n  \"wadden\": \"wad\",\n  \"waddenadviesraad\": \"waddenadviesrad\",\n  \"waddeneilanden\": \"waddeneiland\",\n  \"waddengebied\": \"waddengebied\",\n  \"waddenhandhavings\": \"waddenhandhav\",\n  \"waddeninspectie\": \"waddeninspectie\",\n  \"waddenkaas\": \"waddenkas\",\n  \"waddenkust\": \"waddenkust\",\n  \"waddenkustprovincies\": \"waddenkustprovincies\",\n  \"waddenmilieu\": \"waddenmilieu\",\n  \"waddennatuur\": \"waddennatur\",\n  \"waddenprodukten\": \"waddenprodukt\",\n  \"waddenprovincies\": \"waddenprovincies\",\n  \"waddenvereniging\": \"waddenveren\",\n  \"waddenzee\": \"waddenzee\",\n  \"waddenzeebeleid\": \"waddenzeebeleid\",\n  \"waddenzeeconferentie\": \"waddenzeeconferentie\",\n  \"waddenzeehavens\": \"waddenzeehaven\",\n  \"waddinxveen\": \"waddinxven\",\n  \"wade\": \"wad\",\n  \"wademde\": \"wademd\",\n  \"waden\": \"wad\",\n  \"wadlooptochten\": \"wadlooptocht\",\n  \"wadloopverordening\": \"wadloopverorden\",\n  \"wadvogels\": \"wadvogel\",\n  \"waeht\": \"waeht\",\n  \"wagelaar\": \"wagelar\",\n  \"wagen\": \"wag\",\n  \"wageningen\": \"wagen\",\n  \"wagenings\": \"wagen\",\n  \"wageningse\": \"wagen\",\n  \"wagenpark\": \"wagenpark\",\n  \"wagenplanning\": \"wagenplann\",\n  \"wagens\": \"wagen\",\n  \"wagensporen\": \"wagenspor\",\n  \"wagentje\": \"wagentj\",\n  \"wagner\": \"wagner\",\n  \"wagons\": \"wagon\",\n  \"waiboerhoeve\": \"waiboerhoev\",\n  \"waidhofen\": \"waidhof\",\n  \"waigel\": \"waigel\",\n  \"waken\": \"wak\",\n  \"wakend\": \"wakend\",\n  \"wakende\": \"wakend\",\n  \"wakens\": \"waken\",\n  \"wakker\": \"wakker\",\n  \"wakkerde\": \"wakkerd\",\n  \"wal\": \"wal\",\n  \"walaansluiting\": \"walaansluit\",\n  \"walburcht\": \"walburcht\",\n  \"walcheren\": \"walcher\",\n  \"wâldwei\": \"wâldwei\",\n  \"wales\": \"wales\",\n  \"walgde\": \"walgd\",\n  \"walgelijke\": \"walgelijk\",\n  \"walhi\": \"walhi\",\n  \"waling\": \"waling\",\n  \"walkanten\": \"walkant\",\n  \"walking\": \"walking\",\n  \"wallage\": \"wallag\",\n  \"walle\": \"wall\",\n  \"wallen\": \"wall\",\n  \"wallhäusser\": \"wallhausser\",\n  \"wallonie\": \"wallonie\",\n  \"wallonië\": \"wallonie\",\n  \"walm\": \"walm\",\n  \"walnotenhout\": \"walnotenhout\",\n  \"wals\": \"wal\",\n  \"walsen\": \"wals\",\n  \"walter\": \"walter\",\n  \"walthaus\": \"walthaus\",\n  \"walvisachtigen\": \"walvisacht\",\n  \"walvissen\": \"walviss\",\n  \"wambachgroeve\": \"wambachgroev\",\n  \"wambuis\": \"wambuis\",\n  \"wams\": \"wam\",\n  \"wanbetalers\": \"wanbetaler\",\n  \"wanbetaling\": \"wanbetal\",\n  \"wand\": \"wand\",\n  \"wandel\": \"wandel\",\n  \"wandelaar\": \"wandelar\",\n  \"wandelaars\": \"wandelar\",\n  \"wandelde\": \"wandeld\",\n  \"wandelden\": \"wandeld\",\n  \"wandelen\": \"wandel\",\n  \"wandelend\": \"wandel\",\n  \"wandelende\": \"wandel\",\n  \"wandeling\": \"wandel\",\n  \"wandelingen\": \"wandel\",\n  \"wandelingetjes\": \"wandelingetjes\",\n  \"wandelpad\": \"wandelpad\",\n  \"wandelpaden\": \"wandelpad\",\n  \"wandelt\": \"wandelt\",\n  \"wandeltoilet\": \"wandeltoilet\",\n  \"wanden\": \"wand\",\n  \"wandruwheid\": \"wandruw\",\n  \"wang\": \"wang\",\n  \"wangedrag\": \"wangedrag\",\n  \"wangen\": \"wang\",\n  \"wangi\": \"wangi\",\n  \"wanhoop\": \"wanhop\",\n  \"wanhoopsarmbeweeg\": \"wanhoopsarmbeweg\",\n  \"wanhoopsarmen\": \"wanhoopsarm\",\n  \"wanhoopsbesluit\": \"wanhoopsbesluit\",\n  \"wanhoopsgebaar\": \"wanhoopsge\",\n  \"wanhoopsilluzie\": \"wanhoopsilluzie\",\n  \"wanhoopsschrik\": \"wanhoopsschrik\",\n  \"wanhoopssnik\": \"wanhoopssnik\",\n  \"wanhoopszwaarte\": \"wanhoopszwaart\",\n  \"wanhoopte\": \"wanhoopt\",\n  \"wanhopig\": \"wanhop\",\n  \"wanhopige\": \"wanhop\",\n  \"wankel\": \"wankel\",\n  \"wankelde\": \"wankeld\",\n  \"wankele\": \"wankel\",\n  \"wankelen\": \"wankel\",\n  \"wankelend\": \"wankel\",\n  \"wankelende\": \"wankel\",\n  \"wankellopende\": \"wankellop\",\n  \"wankeltrippelend\": \"wankeltrippel\",\n  \"wanneer\": \"wanner\",\n  \"wanorde\": \"wanord\",\n  \"wanprestatie\": \"wanprestatie\",\n  \"want\": \"want\",\n  \"wantoestanden\": \"wantoestand\",\n  \"wantrouwen\": \"wantrouw\",\n  \"wantrouwend\": \"wantrouw\",\n  \"wantrouwig\": \"wantrouw\",\n  \"wantrouwt\": \"wantrouwt\",\n  \"wapen\": \"wap\",\n  \"wapenembargo\": \"wapenembargo\",\n  \"wapenrek\": \"wapenrek\",\n  \"wapens\": \"wapen\",\n  \"wapenstok\": \"wapenstok\",\n  \"wapensveld\": \"wapensveld\",\n  \"wapentesten\": \"wapentest\",\n  \"wapentests\": \"wapentest\",\n  \"wapentje\": \"wapentj\",\n  \"wapenveld\": \"wapenveld\",\n  \"wapperde\": \"wapperd\",\n  \"wapperden\": \"wapperd\",\n  \"waprog\": \"waprog\",\n  \"war\": \"war\",\n  \"warden\": \"ward\",\n  \"ware\": \"war\",\n  \"waren\": \"war\",\n  \"warenhuis\": \"warenhuis\",\n  \"warenhuisdirecteur\": \"warenhuisdirecteur\",\n  \"warenhuizen\": \"warenhuiz\",\n  \"warenwet\": \"warenwet\",\n  \"warenwetbesluit\": \"warenwetbesluit\",\n  \"warenwetcommissie\": \"warenwetcommissie\",\n  \"warenwetregeling\": \"warenwetregel\",\n  \"warffum\": \"warffum\",\n  \"warm\": \"warm\",\n  \"warmde\": \"warmd\",\n  \"warme\": \"warm\",\n  \"warmelo\": \"warmelo\",\n  \"warmen\": \"warm\",\n  \"warmer\": \"warmer\",\n  \"warmere\": \"warmer\",\n  \"warmoeziers\": \"warmoezier\",\n  \"warmoezierwagens\": \"warmoezierwagen\",\n  \"warmst\": \"warmst\",\n  \"warmste\": \"warmst\",\n  \"warmt\": \"warmt\",\n  \"warmtapwater\": \"warmtapwater\",\n  \"warmte\": \"warmt\",\n  \"warmtebalans\": \"warmtebalan\",\n  \"warmtebehoefte\": \"warmtebehoeft\",\n  \"warmtebehoeften\": \"warmtebehoeft\",\n  \"warmtebenutting\": \"warmtebenut\",\n  \"warmteboilers\": \"warmteboiler\",\n  \"warmtebron\": \"warmtebron\",\n  \"warmtebuffer\": \"warmtebuffer\",\n  \"warmtebuffers\": \"warmtebuffer\",\n  \"warmtecentrale\": \"warmtecentral\",\n  \"warmtecentrales\": \"warmtecentrales\",\n  \"warmtedistributienet\": \"warmtedistributienet\",\n  \"warmtegeleiding\": \"warmtegeleid\",\n  \"warmtehuishouding\": \"warmtehuishoud\",\n  \"warmtekaart\": \"warmtekaart\",\n  \"warmtekoppeling\": \"warmtekoppel\",\n  \"warmtekosten\": \"warmtekost\",\n  \"warmtekracht\": \"warmtekracht\",\n  \"warmtekrachtcentrale\": \"warmtekrachtcentral\",\n  \"warmtekrachtcentrales\": \"warmtekrachtcentrales\",\n  \"warmtekrachtinstallatie\": \"warmtekrachtinstallatie\",\n  \"warmtekrachtkoppeling\": \"warmtekrachtkoppel\",\n  \"warmtekrachtprojecten\": \"warmtekrachtproject\",\n  \"warmtekrachtsystemen\": \"warmtekrachtsystem\",\n  \"warmtelevering\": \"warmtelever\",\n  \"warmteleveringsprojecten\": \"warmteleveringsproject\",\n  \"warmtemeter\": \"warmtemeter\",\n  \"warmtemeters\": \"warmtemeter\",\n  \"warmtemeting\": \"warmtemet\",\n  \"warmteopslag\": \"warmteopslag\",\n  \"warmteopslagtank\": \"warmteopslagtank\",\n  \"warmteoverdracht\": \"warmteoverdracht\",\n  \"warmtepomp\": \"warmtepomp\",\n  \"warmtepompen\": \"warmtepomp\",\n  \"warmtepompsysteem\": \"warmtepompsystem\",\n  \"warmteproduktie\": \"warmteproduktie\",\n  \"warmteterugwinning\": \"warmteterugwinn\",\n  \"warmteterugwinningsinstallatie\": \"warmteterugwinningsinstallatie\",\n  \"warmtetransport\": \"warmtetransport\",\n  \"warmteuitwisseling\": \"warmteuitwissel\",\n  \"warmteverbruik\": \"warmteverbruik\",\n  \"warmteverlies\": \"warmteverlies\",\n  \"warmteverliezen\": \"warmteverliez\",\n  \"warmtevoorziening\": \"warmtevoorzien\",\n  \"warmtevraag\": \"warmtevrag\",\n  \"warmtewand\": \"warmtewand\",\n  \"warmtewisselaar\": \"warmtewisselar\",\n  \"warmtewisselaars\": \"warmtewisselar\",\n  \"warmtewisseling\": \"warmtewissel\",\n  \"warmwater\": \"warmwater\",\n  \"warmwatercomfort\": \"warmwatercomfort\",\n  \"warmwaterinstallatie\": \"warmwaterinstallatie\",\n  \"warmwateropwekking\": \"warmwateropwek\",\n  \"warmwatertoestel\": \"warmwatertoestel\",\n  \"warmwatervoorziening\": \"warmwatervoorzien\",\n  \"warnsborn\": \"warnsborn\",\n  \"warongs\": \"warong\",\n  \"warre\": \"warr\",\n  \"warrelde\": \"warreld\",\n  \"warreling\": \"warrel\",\n  \"warrelingen\": \"warrel\",\n  \"warrelkoppen\": \"warrelkopp\",\n  \"warren\": \"warr\",\n  \"warrington\": \"warrington\",\n  \"warrior\": \"warrior\",\n  \"wars\": \"war\",\n  \"warschau\": \"warschau\",\n  \"was\": \"was\",\n  \"wasactieve\": \"wasactiev\",\n  \"wasbaar\": \"wasbar\",\n  \"wasbare\": \"wasbar\",\n  \"wasbleke\": \"wasblek\",\n  \"wasdom\": \"wasdom\",\n  \"wasdroger\": \"wasdroger\",\n  \"wasgehalte\": \"wasgehalt\",\n  \"washington\": \"washington\",\n  \"wasinrichting\": \"wasinricht\",\n  \"wasinstallatie\": \"wasinstallatie\",\n  \"wasinstallaties\": \"wasinstallaties\",\n  \"waskaarsen\": \"waskaars\",\n  \"waskolom\": \"waskolom\",\n  \"waslijst\": \"waslijst\",\n  \"wasmachine\": \"wasmachin\",\n  \"wasmachines\": \"wasmachines\",\n  \"wasmiddel\": \"wasmiddel\",\n  \"wasmiddelen\": \"wasmiddel\",\n  \"wasmobiel\": \"wasmobiel\",\n  \"wasplaats\": \"wasplat\",\n  \"waspoeder\": \"waspoeder\",\n  \"waspoederfamilie\": \"waspoederfamilie\",\n  \"waspoeders\": \"waspoeder\",\n  \"wasprocessen\": \"wasprocess\",\n  \"wassen\": \"wass\",\n  \"wassenaar\": \"wassenar\",\n  \"wassenaarse\": \"wassenar\",\n  \"wassend\": \"wassend\",\n  \"wasser\": \"wasser\",\n  \"wasserchemie\": \"wasserchemie\",\n  \"wasserhaushaltgesetz\": \"wasserhaushaltgesetz\",\n  \"wasserij\": \"wasserij\",\n  \"wasserijen\": \"wasserij\",\n  \"wassers\": \"wasser\",\n  \"wassertechnischen\": \"wassertechnisch\",\n  \"wassertechnologie\": \"wassertechnologie\",\n  \"wassig\": \"wassig\",\n  \"wassysteem\": \"wassystem\",\n  \"wastafel\": \"wastafel\",\n  \"waste\": \"wast\",\n  \"wastewater\": \"wastewater\",\n  \"wastorens\": \"wastoren\",\n  \"wasvrouw\": \"wasvrouw\",\n  \"waswater\": \"waswater\",\n  \"waswatercircuit\": \"waswatercircuit\",\n  \"wat\": \"wat\",\n  \"watch\": \"watch\",\n  \"watco\": \"watco\",\n  \"water\": \"water\",\n  \"wateraanvoer\": \"wateraanvoer\",\n  \"waterabsorbtie\": \"waterabsorbtie\",\n  \"waterafscheider\": \"waterafscheider\",\n  \"waterafstotende\": \"waterafstot\",\n  \"waterafvoer\": \"waterafvoer\",\n  \"waterbasis\": \"waterbasis\",\n  \"waterbassins\": \"waterbassin\",\n  \"waterbed\": \"waterbed\",\n  \"waterbedrijven\": \"waterbedrijv\",\n  \"waterbehandelaar\": \"waterbehandelar\",\n  \"waterbehandeling\": \"waterbehandel\",\n  \"waterbehandelingsbranche\": \"waterbehandelingsbranch\",\n  \"waterbeheer\": \"waterbeher\",\n  \"waterbeheerders\": \"waterbeheerder\",\n  \"waterbeheersing\": \"waterbeheers\",\n  \"waterbeheersingstechnologieën\": \"waterbeheersingstechnologieen\",\n  \"waterbeheersplan\": \"waterbeheersplan\",\n  \"waterbeheersplannen\": \"waterbeheersplann\",\n  \"waterbehoefte\": \"waterbehoeft\",\n  \"waterbeleid\": \"waterbeleid\",\n  \"waterbeparende\": \"waterbepar\",\n  \"waterberg\": \"waterberg\",\n  \"waterbergend\": \"waterberg\",\n  \"waterbeschikbaarheid\": \"waterbeschik\",\n  \"waterbesparende\": \"waterbespar\",\n  \"waterbesparing\": \"waterbespar\",\n  \"waterbesparingsmaatregelen\": \"waterbesparingsmaatregel\",\n  \"waterbesparingsplan\": \"waterbesparingsplan\",\n  \"waterbestendigheid\": \"waterbestend\",\n  \"waterbeweging\": \"waterbeweg\",\n  \"waterbewust\": \"waterbewust\",\n  \"waterbewuster\": \"waterbewuster\",\n  \"waterbodem\": \"waterbodem\",\n  \"waterbodemonderzoek\": \"waterbodemonderzoek\",\n  \"waterbodems\": \"waterbodem\",\n  \"waterbodemsanering\": \"waterbodemsaner\",\n  \"waterbouw\": \"waterbouw\",\n  \"waterbouwkunde\": \"waterbouwkund\",\n  \"waterbouwkundige\": \"waterbouwkund\",\n  \"waterbron\": \"waterbron\",\n  \"waterbronnen\": \"waterbronn\",\n  \"waterbuffers\": \"waterbuffer\",\n  \"watercentrales\": \"watercentrales\",\n  \"waterdamp\": \"waterdamp\",\n  \"waterdeeltjes\": \"waterdeeltjes\",\n  \"waterdicht\": \"waterdicht\",\n  \"waterdichte\": \"waterdicht\",\n  \"waterdiepte\": \"waterdiept\",\n  \"waterdieren\": \"waterdier\",\n  \"waterdoorlaatbaarheid\": \"waterdoorlat\",\n  \"waterdoorlatendheid\": \"waterdoorlat\",\n  \"waterdruk\": \"waterdruk\",\n  \"waterdrukken\": \"waterdruk\",\n  \"watereffluent\": \"watereffluent\",\n  \"wateremissies\": \"wateremissies\",\n  \"wateren\": \"water\",\n  \"waterenergie\": \"waterenergie\",\n  \"watereservoirs\": \"watereservoir\",\n  \"waterfabrikant\": \"waterfabrikant\",\n  \"waterfilm\": \"waterfilm\",\n  \"watergangen\": \"watergang\",\n  \"watergebrek\": \"watergebrek\",\n  \"watergebruik\": \"watergebruik\",\n  \"watergedragen\": \"watergedrag\",\n  \"watergekoelde\": \"watergekoeld\",\n  \"waterglas\": \"waterglas\",\n  \"watergraafsmeer\": \"watergraafsmer\",\n  \"waterhuishouding\": \"waterhuishoud\",\n  \"waterhuishoudingsplan\": \"waterhuishoudingsplan\",\n  \"waterhuishoudingswet\": \"waterhuishoudingswet\",\n  \"waterhuishoudkundig\": \"waterhuishoudkund\",\n  \"waterhuishoudkundige\": \"waterhuishoudkund\",\n  \"waterige\": \"water\",\n  \"waterindustrie\": \"waterindustrie\",\n  \"waterinfiltratie\": \"waterinfiltratie\",\n  \"wateringen\": \"water\",\n  \"waterjet\": \"waterjet\",\n  \"waterkanalen\": \"waterkanal\",\n  \"waterkering\": \"waterker\",\n  \"waterkeringen\": \"waterker\",\n  \"waterkoelte\": \"waterkoelt\",\n  \"waterkracht\": \"waterkracht\",\n  \"waterkrachtcentrale\": \"waterkrachtcentral\",\n  \"waterkrachtcentrales\": \"waterkrachtcentrales\",\n  \"waterkrachtinstallaties\": \"waterkrachtinstallaties\",\n  \"waterkringloop\": \"waterkringlop\",\n  \"waterkwaliteit\": \"waterkwaliteit\",\n  \"waterkwaliteitsambtenaar\": \"waterkwaliteitsambtenar\",\n  \"waterkwaliteitsbeheer\": \"waterkwaliteitsbeher\",\n  \"waterkwaliteitsbeheerders\": \"waterkwaliteitsbeheerder\",\n  \"waterkwaliteitsbeleid\": \"waterkwaliteitsbeleid\",\n  \"waterlaagje\": \"waterlaagj\",\n  \"waterland\": \"waterland\",\n  \"waterleiding\": \"waterleid\",\n  \"waterleidingbedrijf\": \"waterleidingbedrijf\",\n  \"waterleidingbedrijven\": \"waterleidingbedrijv\",\n  \"waterleidingen\": \"waterleid\",\n  \"waterleidingmaatschappij\": \"waterleidingmaatschappij\",\n  \"waterleidingmaatschappijen\": \"waterleidingmaatschappij\",\n  \"waterleidingnet\": \"waterleidingnet\",\n  \"waterleidingsmaatschappij\": \"waterleidingsmaatschappij\",\n  \"waterlelies\": \"waterlelies\",\n  \"waterloop\": \"waterlop\",\n  \"waterloopkundig\": \"waterloopkund\",\n  \"waterlopen\": \"waterlop\",\n  \"watermaatschappij\": \"watermaatschappij\",\n  \"waterman\": \"waterman\",\n  \"watermanagement\": \"watermanagement\",\n  \"watermengsel\": \"watermengsel\",\n  \"watermengsels\": \"watermengsel\",\n  \"watermeters\": \"watermeter\",\n  \"watermetingen\": \"watermet\",\n  \"watermex\": \"watermex\",\n  \"watermilieu\": \"watermilieu\",\n  \"watermoleculen\": \"watermolecul\",\n  \"watermolen\": \"watermol\",\n  \"watermonitoren\": \"watermonitor\",\n  \"watermonster\": \"watermonster\",\n  \"watermonsters\": \"watermonster\",\n  \"waterniveau\": \"waterniveau\",\n  \"waternoodsramp\": \"waternoodsramp\",\n  \"waterondoorlatendheid\": \"waterondoorlat\",\n  \"waterontharding\": \"wateronthard\",\n  \"wateronttrekking\": \"wateronttrek\",\n  \"wateropname\": \"wateropnam\",\n  \"wateropnemende\": \"wateropnem\",\n  \"wateroverlast\": \"wateroverlast\",\n  \"waterpakt\": \"waterpakt\",\n  \"waterpalet\": \"waterpalet\",\n  \"waterpartij\": \"waterpartij\",\n  \"waterpeil\": \"waterpeil\",\n  \"waterpeilverlagingen\": \"waterpeilverlag\",\n  \"waterpinch\": \"waterpinch\",\n  \"waterplanten\": \"waterplant\",\n  \"waterplas\": \"waterplas\",\n  \"waterpompen\": \"waterpomp\",\n  \"waterprobleem\": \"waterproblem\",\n  \"waterproblemen\": \"waterproblem\",\n  \"waterrantsoenen\": \"waterrantsoen\",\n  \"waterrantsoenering\": \"waterrantsoener\",\n  \"waterreactoren\": \"waterreactor\",\n  \"waterrechten\": \"waterrecht\",\n  \"waterrecreanten\": \"waterrecreant\",\n  \"waterreinigingssysteem\": \"waterreinigingssystem\",\n  \"waterreservoirs\": \"waterreservoir\",\n  \"waterrestricties\": \"waterrestricties\",\n  \"waterrijke\": \"waterrijk\",\n  \"watersalamanders\": \"watersalamander\",\n  \"waterschap\": \"waterschap\",\n  \"waterschappen\": \"waterschapp\",\n  \"waterschapsbank\": \"waterschapsbank\",\n  \"waterschapsbesturen\": \"waterschapsbestur\",\n  \"waterschapswereld\": \"waterschapswereld\",\n  \"waterschei\": \"waterschei\",\n  \"watersector\": \"watersector\",\n  \"watersnip\": \"watersnip\",\n  \"watersnoodramp\": \"watersnoodramp\",\n  \"waterspaarders\": \"waterspaarder\",\n  \"watersparende\": \"waterspar\",\n  \"waterspiegel\": \"waterspiegel\",\n  \"watersport\": \"watersport\",\n  \"watersporten\": \"watersport\",\n  \"watersporters\": \"watersporter\",\n  \"watersportverbond\": \"watersportverbond\",\n  \"watersportverenigingen\": \"watersportveren\",\n  \"waterspray\": \"waterspray\",\n  \"waterspuit\": \"waterspuit\",\n  \"waterstaat\": \"waterstat\",\n  \"waterstaatssector\": \"waterstaatssector\",\n  \"waterstand\": \"waterstand\",\n  \"waterstanden\": \"waterstand\",\n  \"waterstilte\": \"waterstilt\",\n  \"waterstof\": \"waterstof\",\n  \"waterstofafdeling\": \"waterstofafdel\",\n  \"waterstofbommen\": \"waterstofbomm\",\n  \"waterstofcarbonaten\": \"waterstofcarbonat\",\n  \"waterstofgas\": \"waterstofgas\",\n  \"waterstofopslag\": \"waterstofopslag\",\n  \"waterstofperoxyde\": \"waterstofperoxyd\",\n  \"waterstofsysteem\": \"waterstofsystem\",\n  \"waterstoftanks\": \"waterstoftank\",\n  \"waterstoof\": \"waterstof\",\n  \"waterstralen\": \"waterstral\",\n  \"waterstromen\": \"waterstrom\",\n  \"waterstroom\": \"waterstrom\",\n  \"watersysteem\": \"watersystem\",\n  \"watersysteemverkenning\": \"watersysteemverkenn\",\n  \"watersysteemverkenningen\": \"watersysteemverkenn\",\n  \"watersystemen\": \"watersystem\",\n  \"watertech\": \"watertech\",\n  \"watertechniek\": \"watertechniek\",\n  \"watertekort\": \"watertekort\",\n  \"watertekorten\": \"watertekort\",\n  \"watertemperaturen\": \"watertemperatur\",\n  \"watertemperatuur\": \"watertemperatur\",\n  \"watertoevoer\": \"watertoevoer\",\n  \"watertransport\": \"watertransport\",\n  \"waterval\": \"waterval\",\n  \"waterverbruik\": \"waterverbruik\",\n  \"waterverdragen\": \"waterverdrag\",\n  \"waterverdunbare\": \"waterverdun\",\n  \"waterverlies\": \"waterverlies\",\n  \"waterverontreiniging\": \"waterverontrein\",\n  \"waterverstrekking\": \"waterverstrek\",\n  \"waterverven\": \"waterverv\",\n  \"watervervuiling\": \"watervervuil\",\n  \"waterverzadigde\": \"waterverzadigd\",\n  \"watervlo\": \"watervlo\",\n  \"watervloeden\": \"watervloed\",\n  \"watervlooien\": \"watervlooi\",\n  \"watervoerende\": \"watervoer\",\n  \"watervoerendheid\": \"watervoer\",\n  \"watervogels\": \"watervogel\",\n  \"watervoorraad\": \"watervoorrad\",\n  \"watervoorraden\": \"watervoorrad\",\n  \"watervoorziening\": \"watervoorzien\",\n  \"watervrienden\": \"watervri\",\n  \"watervrij\": \"watervrij\",\n  \"watervrije\": \"watervrij\",\n  \"waterwegen\": \"waterweg\",\n  \"waterweringen\": \"waterwer\",\n  \"waterwerken\": \"waterwerk\",\n  \"waterwijf\": \"waterwijf\",\n  \"waterwijven\": \"waterwijv\",\n  \"waterwild\": \"waterwild\",\n  \"waterwin\": \"waterwin\",\n  \"waterwingebied\": \"waterwingebied\",\n  \"waterwingebieden\": \"waterwingebied\",\n  \"waterwinning\": \"waterwinn\",\n  \"waterwinningsbedrijven\": \"waterwinningsbedrijv\",\n  \"waterwinstation\": \"waterwinstation\",\n  \"waterwisselaar\": \"waterwisselar\",\n  \"waterzuivering\": \"waterzuiver\",\n  \"waterzuiveringsbedrijf\": \"waterzuiveringsbedrijf\",\n  \"waterzuiveringsgebouw\": \"waterzuiveringsgebouw\",\n  \"waterzuiveringsinrichtingen\": \"waterzuiveringsinricht\",\n  \"waterzuiveringsinstallatie\": \"waterzuiveringsinstallatie\",\n  \"waterzuiveringsinstallaties\": \"waterzuiveringsinstallaties\",\n  \"waterzuiveringslocatie\": \"waterzuiveringslocatie\",\n  \"waterzuiveringsslib\": \"waterzuiveringsslib\",\n  \"waterzuiveringsstation\": \"waterzuiveringsstation\",\n  \"waterzuiveringssystemen\": \"waterzuiveringssystem\",\n  \"waterzuiveringstechnieken\": \"waterzuiveringstechniek\",\n  \"waterzuiveringstechnologieën\": \"waterzuiveringstechnologieen\",\n  \"wathey\": \"wathey\",\n  \"watis\": \"watis\",\n  \"watson\": \"watson\",\n  \"watt\": \"watt\",\n  \"wattenscheid\": \"wattenscheid\",\n  \"wattman\": \"wattman\",\n  \"watts\": \"watt\",\n  \"wav\": \"wav\",\n  \"wave\": \"wav\",\n  \"wavin\": \"wavin\",\n  \"wazen\": \"waz\",\n  \"wazig\": \"wazig\",\n  \"wazige\": \"wazig\",\n  \"wazigheid\": \"wazig\",\n  \"wazing\": \"wazing\",\n  \"wazingen\": \"wazing\",\n  \"wb\": \"wb\",\n  \"wbb\": \"wbb\",\n  \"wbm\": \"wbm\",\n  \"wc\": \"wc\",\n  \"wca\": \"wca\",\n  \"wcl\": \"wcl\",\n  \"wdb\": \"wdb\",\n  \"wdc\": \"wdc\",\n  \"we\": \"we\",\n  \"web\": \"web\",\n  \"weber\": \"weber\",\n  \"wecke\": \"weck\",\n  \"weckseler\": \"weckseler\",\n  \"wedeco\": \"wedeco\",\n  \"wederkerende\": \"wederker\",\n  \"wederkerigheid\": \"wederker\",\n  \"wederom\": \"wederom\",\n  \"wederopbouw\": \"wederopbouw\",\n  \"wedervaren\": \"wedervar\",\n  \"wederzijdse\": \"wederzijd\",\n  \"wedrennen\": \"wedrenn\",\n  \"wedstrijd\": \"wedstrijd\",\n  \"wedstrijdzeilen\": \"wedstrijdzeil\",\n  \"weduwe\": \"weduw\",\n  \"wee\": \"wee\",\n  \"weedom\": \"weedom\",\n  \"weeë\": \"weee\",\n  \"weeënremmend\": \"weeenremm\",\n  \"weefde\": \"weefd\",\n  \"weefden\": \"weefd\",\n  \"weefsel\": \"weefsel\",\n  \"weefsels\": \"weefsel\",\n  \"weeg\": \"weg\",\n  \"weegapparatuur\": \"weegapparatur\",\n  \"weegbrug\": \"weegbrug\",\n  \"weegbruggen\": \"weegbrugg\",\n  \"weegen\": \"weg\",\n  \"weeginstallatie\": \"weeginstallatie\",\n  \"weegplateau\": \"weegplateau\",\n  \"weegs\": \"weg\",\n  \"weegschaalinstallatie\": \"weegschaalinstallatie\",\n  \"weegsysteem\": \"weegsystem\",\n  \"weegsystemen\": \"weegsystem\",\n  \"weegt\": \"weegt\",\n  \"week\": \"wek\",\n  \"weekblad\": \"weekblad\",\n  \"weekend\": \"weekend\",\n  \"weekenden\": \"weekend\",\n  \"weekendkaart\": \"weekendkaart\",\n  \"weekheid\": \"weekheid\",\n  \"weeklagend\": \"weeklag\",\n  \"weekmaker\": \"weekmaker\",\n  \"weekmakers\": \"weekmaker\",\n  \"weeks\": \"wek\",\n  \"weekte\": \"weekt\",\n  \"weelde\": \"weeld\",\n  \"weelderige\": \"weelder\",\n  \"weele\": \"wel\",\n  \"weemoed\": \"weemoed\",\n  \"weemoedig\": \"weemoed\",\n  \"weemoedige\": \"weemoed\",\n  \"weemoediger\": \"weemoediger\",\n  \"weemoedigheden\": \"weemoed\",\n  \"weemoedigheid\": \"weemoed\",\n  \"weemoedsdagen\": \"weemoedsdag\",\n  \"weemoedwolken\": \"weemoedwolk\",\n  \"weende\": \"weend\",\n  \"weenden\": \"weend\",\n  \"weens\": \"wen\",\n  \"weer\": \"wer\",\n  \"weêr\": \"weêr\",\n  \"weerbestendige\": \"weerbestend\",\n  \"weercondities\": \"weercondities\",\n  \"weerde\": \"weerd\",\n  \"weerdhof\": \"weerdhof\",\n  \"weergave\": \"weergav\",\n  \"weergeeft\": \"weergeeft\",\n  \"weergegeven\": \"weergegev\",\n  \"weergeven\": \"weergev\",\n  \"weergevonden\": \"weergevond\",\n  \"weerhield\": \"weerhield\",\n  \"weerhouden\": \"weerhoud\",\n  \"weerhoudt\": \"weerhoudt\",\n  \"weerkaatsen\": \"weerkaats\",\n  \"weerkundigen\": \"weerkund\",\n  \"weerlegd\": \"weerlegd\",\n  \"weerlegde\": \"weerlegd\",\n  \"weerlegt\": \"weerlegt\",\n  \"weerlicht\": \"weerlicht\",\n  \"weerlichten\": \"weerlicht\",\n  \"weerlichtsnelle\": \"weerlichtsnell\",\n  \"weerlichtten\": \"weerlicht\",\n  \"weerorganisatie\": \"weerorganisatie\",\n  \"weerpatronen\": \"weerpatron\",\n  \"weerribben\": \"weerribb\",\n  \"weerscheen\": \"weerschen\",\n  \"weerschemerden\": \"weerschemerd\",\n  \"weerschenen\": \"weerschen\",\n  \"weerschijn\": \"weerschijn\",\n  \"weerschijnen\": \"weerschijn\",\n  \"weerschijning\": \"weerschijn\",\n  \"weerschijningen\": \"weerschijn\",\n  \"weersgesteldheid\": \"weersgesteld\",\n  \"weersinvloeden\": \"weersinvloed\",\n  \"weerskanten\": \"weerskant\",\n  \"weersomstandigheden\": \"weersomstand\",\n  \"weerspel\": \"weerspel\",\n  \"weerspiegeld\": \"weerspiegeld\",\n  \"weerspiegelden\": \"weerspiegeld\",\n  \"weerspiegeling\": \"weerspiegel\",\n  \"weerspiegelingen\": \"weerspiegel\",\n  \"weersprak\": \"weersprak\",\n  \"weerspraken\": \"weersprak\",\n  \"weerstaan\": \"weerstan\",\n  \"weerstand\": \"weerstand\",\n  \"weerstanden\": \"weerstand\",\n  \"weerstations\": \"weerstation\",\n  \"weerstreefde\": \"weerstreefd\",\n  \"weerstrevig\": \"weerstrev\",\n  \"weerszijde\": \"weerszijd\",\n  \"weerszijden\": \"weerszijd\",\n  \"weert\": \"weert\",\n  \"wees\": \"wes\",\n  \"weesp\": \"weesp\",\n  \"weest\": \"weest\",\n  \"weet\": \"wet\",\n  \"wéet\": \"wet\",\n  \"weg\": \"weg\",\n  \"wegblijft\": \"wegblijft\",\n  \"wegblijven\": \"wegblijv\",\n  \"wegbrengen\": \"wegbreng\",\n  \"wegcijferend\": \"wegcijfer\",\n  \"wegcirkelen\": \"wegcirkel\",\n  \"wegdeinden\": \"wegdeind\",\n  \"wegdek\": \"wegdek\",\n  \"wegdekken\": \"wegdek\",\n  \"wegdoen\": \"wegdoen\",\n  \"wegdoezelden\": \"wegdoezeld\",\n  \"wegdoezelen\": \"wegdoezel\",\n  \"wegdoomden\": \"wegdoomd\",\n  \"wegdreef\": \"wegdref\",\n  \"wegdromende\": \"wegdrom\",\n  \"wegdrukbaar\": \"wegdruk\",\n  \"wegdrukbare\": \"wegdruk\",\n  \"wegen\": \"weg\",\n  \"wegenaanleg\": \"wegenaanleg\",\n  \"wegenaanlegprojecten\": \"wegenaanlegproject\",\n  \"wegenbelasting\": \"wegenbelast\",\n  \"wegenbouw\": \"wegenbouw\",\n  \"wegend\": \"wegend\",\n  \"wegeninfrastructuur\": \"wegeninfrastructur\",\n  \"wegenproject\": \"wegenproject\",\n  \"wegenprojecten\": \"wegenproject\",\n  \"wegens\": \"wegen\",\n  \"wegenverf\": \"wegenverf\",\n  \"wegenverkeerswet\": \"wegenverkeerswet\",\n  \"wegenwachthulp\": \"wegenwachthulp\",\n  \"wegenzout\": \"wegenzout\",\n  \"wegfietsen\": \"wegfiets\",\n  \"wegfundering\": \"wegfunder\",\n  \"wegga\": \"wegga\",\n  \"weggaan\": \"weggan\",\n  \"weggebleven\": \"weggeblev\",\n  \"weggebruiker\": \"weggebruiker\",\n  \"weggebruikers\": \"weggebruiker\",\n  \"weggedeelten\": \"weggedeelt\",\n  \"weggeduwd\": \"weggeduwd\",\n  \"weggefilterd\": \"weggefilterd\",\n  \"weggegaan\": \"weggegan\",\n  \"weggegooid\": \"weggegooid\",\n  \"weggegraven\": \"weggegrav\",\n  \"weggehaald\": \"weggehaald\",\n  \"weggeijld\": \"weggeijld\",\n  \"weggekoeld\": \"weggekoeld\",\n  \"weggelegd\": \"weggelegd\",\n  \"weggelekt\": \"weggelekt\",\n  \"weggelekte\": \"weggelekt\",\n  \"weggelopen\": \"weggelop\",\n  \"weggemaakt\": \"weggemaakt\",\n  \"weggen\": \"wegg\",\n  \"weggenomen\": \"weggenom\",\n  \"weggepompt\": \"weggepompt\",\n  \"weggeregeld\": \"weggeregeld\",\n  \"weggerukt\": \"weggerukt\",\n  \"weggesaneerd\": \"weggesaneerd\",\n  \"weggeschaduwd\": \"weggeschaduwd\",\n  \"weggeschoven\": \"weggeschov\",\n  \"weggeslagen\": \"weggeslag\",\n  \"weggesmolten\": \"weggesmolt\",\n  \"weggesoesd\": \"weggesoesd\",\n  \"weggespoelde\": \"weggespoeld\",\n  \"weggestopt\": \"weggestopt\",\n  \"weggestorven\": \"weggestorv\",\n  \"weggestreken\": \"weggestrek\",\n  \"weggetreurd\": \"weggetreurd\",\n  \"weggetrokken\": \"weggetrok\",\n  \"weggevangen\": \"weggevang\",\n  \"weggeweest\": \"weggeweest\",\n  \"weggewenteld\": \"weggewenteld\",\n  \"weggewist\": \"weggewist\",\n  \"weggewuifd\": \"weggewuifd\",\n  \"weggezet\": \"weggezet\",\n  \"weggeziekt\": \"weggeziekt\",\n  \"weggezonken\": \"weggezonk\",\n  \"wegging\": \"wegging\",\n  \"weggooien\": \"weggooi\",\n  \"weggroef\": \"weggroef\",\n  \"weghalen\": \"weghal\",\n  \"weginfrastructuur\": \"weginfrastructur\",\n  \"weging\": \"weging\",\n  \"wegingsfactoren\": \"wegingsfactor\",\n  \"wegjaagt\": \"wegjaagt\",\n  \"wegjoeg\": \"wegjoeg\",\n  \"wegklapbaar\": \"wegklap\",\n  \"wegkomt\": \"wegkomt\",\n  \"wegkronkelde\": \"wegkronkeld\",\n  \"wegkwijnen\": \"wegkwijn\",\n  \"weglaten\": \"weglat\",\n  \"weglekkende\": \"weglek\",\n  \"weglopen\": \"weglop\",\n  \"wegmateriaal\": \"wegmateriaal\",\n  \"wegmistten\": \"wegmist\",\n  \"wegnam\": \"wegnam\",\n  \"wegneemt\": \"wegneemt\",\n  \"wegnemen\": \"wegnem\",\n  \"wegnevelend\": \"wegnevel\",\n  \"wegpakken\": \"wegpak\",\n  \"wegprojecten\": \"wegproject\",\n  \"wegreed\": \"wegred\",\n  \"wegroosterde\": \"wegroosterd\",\n  \"wegschietend\": \"wegschiet\",\n  \"wegschommelen\": \"wegschommel\",\n  \"wegschuilende\": \"wegschuil\",\n  \"wegsijpelen\": \"wegsijpel\",\n  \"wegslaan\": \"wegslan\",\n  \"wegsloeg\": \"wegsloeg\",\n  \"wegstemmen\": \"wegstemm\",\n  \"wegsterven\": \"wegsterv\",\n  \"wegstoof\": \"wegstof\",\n  \"wegstoppen\": \"wegstopp\",\n  \"wegstroomde\": \"wegstroomd\",\n  \"wegstroomt\": \"wegstroomt\",\n  \"wegtransport\": \"wegtransport\",\n  \"wegtransportmiddelen\": \"wegtransportmiddel\",\n  \"wegtrekken\": \"wegtrek\",\n  \"wegtreuren\": \"wegtreur\",\n  \"wegvallen\": \"wegvall\",\n  \"wegvalt\": \"wegvalt\",\n  \"wegverkeer\": \"wegverker\",\n  \"wegverleggingen\": \"wegverlegg\",\n  \"wegvervoer\": \"wegvervoer\",\n  \"wegvervoerders\": \"wegvervoerder\",\n  \"wegvliedende\": \"wegvlied\",\n  \"wegvliegt\": \"wegvliegt\",\n  \"wegvluchtten\": \"wegvlucht\",\n  \"wegwandelen\": \"wegwandel\",\n  \"wegwaste\": \"wegwast\",\n  \"wegwazende\": \"wegwaz\",\n  \"wegwentelt\": \"wegwentelt\",\n  \"wegwerken\": \"wegwerk\",\n  \"wegwerp\": \"wegwerp\",\n  \"wegwerpartikelen\": \"wegwerpartikel\",\n  \"wegwerpbatterijen\": \"wegwerpbatterij\",\n  \"wegwerpgebruik\": \"wegwerpgebruik\",\n  \"wegwerpkleding\": \"wegwerpkled\",\n  \"wegwerpluier\": \"wegwerpluier\",\n  \"wegwerpluiers\": \"wegwerpluier\",\n  \"wegwiekte\": \"wegwiekt\",\n  \"wegwieleren\": \"wegwieler\",\n  \"wegwijkt\": \"wegwijkt\",\n  \"wegwijs\": \"wegwijs\",\n  \"wegwijzer\": \"wegwijzer\",\n  \"wegwissen\": \"wegwiss\",\n  \"wegwissende\": \"wegwiss\",\n  \"wegwisten\": \"wegwist\",\n  \"wegwoei\": \"wegwoei\",\n  \"wegzonk\": \"wegzonk\",\n  \"wegzuiging\": \"wegzuig\",\n  \"wehl\": \"wehl\",\n  \"wei\": \"wei\",\n  \"weicke\": \"weick\",\n  \"weide\": \"weid\",\n  \"weidebedrijven\": \"weidebedrijv\",\n  \"weidegebied\": \"weidegebied\",\n  \"weidegras\": \"weidegras\",\n  \"weidegrond\": \"weidegrond\",\n  \"weiden\": \"weid\",\n  \"weidend\": \"weidend\",\n  \"weidevogelgebied\": \"weidevogelgebied\",\n  \"weidevogelnesten\": \"weidevogelnest\",\n  \"weidevogels\": \"weidevogel\",\n  \"weids\": \"weid\",\n  \"weier\": \"weier\",\n  \"weifelde\": \"weifeld\",\n  \"weifelen\": \"weifel\",\n  \"weifelend\": \"weifel\",\n  \"weifelig\": \"weifel\",\n  \"weifeling\": \"weifel\",\n  \"weifelingen\": \"weifel\",\n  \"weifelt\": \"weifelt\",\n  \"weiger\": \"weiger\",\n  \"weigerde\": \"weigerd\",\n  \"weigerden\": \"weigerd\",\n  \"weigeren\": \"weiger\",\n  \"weigering\": \"weiger\",\n  \"weigert\": \"weigert\",\n  \"weighted\": \"weighted\",\n  \"weijden\": \"weijd\",\n  \"weijer\": \"weijer\",\n  \"weiland\": \"weiland\",\n  \"weilanden\": \"weiland\",\n  \"weinig\": \"weinig\",\n  \"weinige\": \"weinig\",\n  \"weinigen\": \"weinig\",\n  \"weizakken\": \"weizak\",\n  \"weka\": \"weka\",\n  \"weke\": \"wek\",\n  \"wekelijks\": \"wekelijk\",\n  \"wekelijkse\": \"wekelijk\",\n  \"weken\": \"wek\",\n  \"wéken\": \"wek\",\n  \"weker\": \"weker\",\n  \"wekken\": \"wek\",\n  \"wekkerradio\": \"wekkerradio\",\n  \"wekt\": \"wekt\",\n  \"wekte\": \"wekt\",\n  \"wekten\": \"wekt\",\n  \"wel\": \"wel\",\n  \"wèl\": \"wèl\",\n  \"welbehagelijk\": \"welbehag\",\n  \"welbehagelijkheid\": \"welbehag\",\n  \"welbehagen\": \"welbehag\",\n  \"welch\": \"welch\",\n  \"welcke\": \"welck\",\n  \"wèlcke\": \"wèlck\",\n  \"welckë\": \"welck\",\n  \"welcken\": \"welck\",\n  \"welckje\": \"welckj\",\n  \"weldaad\": \"weldad\",\n  \"weldaden\": \"weldad\",\n  \"weldadig\": \"weldad\",\n  \"weldadige\": \"weldad\",\n  \"weldadiger\": \"weldadiger\",\n  \"weldadigheid\": \"weldad\",\n  \"weldadigheidjes\": \"weldadigheidjes\",\n  \"weldadigs\": \"weldad\",\n  \"welde\": \"weld\",\n  \"welden\": \"weld\",\n  \"weldoening\": \"weldoen\",\n  \"weldon\": \"weldon\",\n  \"weldra\": \"weldra\",\n  \"weleens\": \"welen\",\n  \"weleer\": \"weler\",\n  \"weleke\": \"welek\",\n  \"welfde\": \"welfd\",\n  \"welfden\": \"welfd\",\n  \"welger\": \"welger\",\n  \"welgevallen\": \"welgevall\",\n  \"weligheid\": \"welig\",\n  \"weliswaar\": \"weliswar\",\n  \"welk\": \"welk\",\n  \"welke\": \"welk\",\n  \"welkom\": \"welkom\",\n  \"welkomstwoord\": \"welkomstwoord\",\n  \"welkunnen\": \"welkunn\",\n  \"wellen\": \"well\",\n  \"wellicht\": \"wellicht\",\n  \"wellust\": \"wellust\",\n  \"welmenend\": \"welmen\",\n  \"welnu\": \"welnu\",\n  \"welopgevoedheid\": \"welopgevoed\",\n  \"welslagen\": \"welslag\",\n  \"welsprekendheid\": \"welsprek\",\n  \"welstandscommissie\": \"welstandscommissie\",\n  \"welvaart\": \"welvaart\",\n  \"welvaarts\": \"welvaart\",\n  \"welvaartsgroei\": \"welvaartsgroei\",\n  \"welvend\": \"welvend\",\n  \"welvoeglijk\": \"welvoeg\",\n  \"welwetend\": \"welwet\",\n  \"welwetende\": \"welwet\",\n  \"welweterij\": \"welweterij\",\n  \"welweting\": \"welwet\",\n  \"welwillend\": \"welwill\",\n  \"welwillende\": \"welwill\",\n  \"welwillendheid\": \"welwill\",\n  \"welwilligjes\": \"welwilligjes\",\n  \"welzijn\": \"welzijn\",\n  \"welzijnsproblematiek\": \"welzijnsproblematiek\",\n  \"wemelde\": \"wemeld\",\n  \"wemelden\": \"wemeld\",\n  \"wemelen\": \"wemel\",\n  \"wemelend\": \"wemel\",\n  \"wemelende\": \"wemel\",\n  \"wemeling\": \"wemel\",\n  \"wemelingen\": \"wemel\",\n  \"wemelt\": \"wemelt\",\n  \"wen\": \"wen\",\n  \"wend\": \"wend\",\n  \"wendbaarheid\": \"wendbar\",\n  \"wendde\": \"wend\",\n  \"wendden\": \"wend\",\n  \"wende\": \"wend\",\n  \"wenden\": \"wend\",\n  \"wendend\": \"wendend\",\n  \"wendende\": \"wendend\",\n  \"wendingen\": \"wending\",\n  \"wenen\": \"wen\",\n  \"wenend\": \"wenend\",\n  \"wenende\": \"wenend\",\n  \"wening\": \"wening\",\n  \"wenk\": \"wenk\",\n  \"wenkbrauwen\": \"wenkbrauw\",\n  \"wenken\": \"wenk\",\n  \"wenkende\": \"wenkend\",\n  \"wenkte\": \"wenkt\",\n  \"wennen\": \"wenn\",\n  \"wens\": \"wen\",\n  \"wenselijk\": \"wenselijk\",\n  \"wenselijkheid\": \"wenselijk\",\n  \"wensen\": \"wens\",\n  \"wenst\": \"wenst\",\n  \"wenste\": \"wenst\",\n  \"went\": \"went\",\n  \"weom\": \"weom\",\n  \"werd\": \"werd\",\n  \"werden\": \"werd\",\n  \"werdt\": \"werdt\",\n  \"wereld\": \"wereld\",\n  \"wereldbank\": \"wereldbank\",\n  \"wereldbegin\": \"wereldbegin\",\n  \"wereldberoemd\": \"wereldberoemd\",\n  \"wereldbevolking\": \"wereldbevolk\",\n  \"wereldbolletje\": \"wereldbolletj\",\n  \"wereldburger\": \"wereldburger\",\n  \"wereldcongres\": \"wereldcongres\",\n  \"werelddelen\": \"werelddel\",\n  \"werelddierendag\": \"werelddierendag\",\n  \"wereldeconomie\": \"wereldeconomie\",\n  \"wereldenergiemarkt\": \"wereldenergiemarkt\",\n  \"wereldenergievraag\": \"wereldenergievrag\",\n  \"wereldfederatie\": \"wereldfederatie\",\n  \"wereldgemeenschap\": \"wereldgemeenschap\",\n  \"wereldgeschiedenis\": \"wereldgeschiedenis\",\n  \"wereldgezondheidsorganisatie\": \"wereldgezondheidsorganisatie\",\n  \"wereldhandel\": \"wereldhandel\",\n  \"wereldhandelsovereenkomst\": \"wereldhandelsovereenkomst\",\n  \"wereldjes\": \"wereldjes\",\n  \"wereldkampioen\": \"wereldkampioen\",\n  \"wereldkennis\": \"wereldkennis\",\n  \"wereldlanden\": \"wereldland\",\n  \"wereldleed\": \"wereldled\",\n  \"wereldleider\": \"wereldleider\",\n  \"wereldlucht\": \"wereldlucht\",\n  \"wereldmarkt\": \"wereldmarkt\",\n  \"wereldmarktaandeel\": \"wereldmarktaandel\",\n  \"wereldmarktleider\": \"wereldmarktleider\",\n  \"wereldmeisjes\": \"wereldmeisjes\",\n  \"wereldmilieuconferentie\": \"wereldmilieuconferentie\",\n  \"wereldmilieufonds\": \"wereldmilieufond\",\n  \"wereldmist\": \"wereldmist\",\n  \"wereldnatuurfonds\": \"wereldnatuurfond\",\n  \"wereldniveau\": \"wereldniveau\",\n  \"wereldomspannende\": \"wereldomspann\",\n  \"wereldoorlog\": \"wereldoorlog\",\n  \"wereldopinie\": \"wereldopinie\",\n  \"wereldorde\": \"wereldord\",\n  \"wereldorganisaties\": \"wereldorganisaties\",\n  \"wereldpers\": \"wereldper\",\n  \"wereldprijzen\": \"wereldprijz\",\n  \"wereldproduktie\": \"wereldproduktie\",\n  \"werelds\": \"wereld\",\n  \"wereldschaakbond\": \"wereldschaakbond\",\n  \"wereldschat\": \"wereldschat\",\n  \"wereldse\": \"wereld\",\n  \"wereldsheid\": \"werelds\",\n  \"wereldstad\": \"wereldstad\",\n  \"wereldstandaard\": \"wereldstandaard\",\n  \"wereldvraag\": \"wereldvrag\",\n  \"wereldvrede\": \"wereldvred\",\n  \"wereldvrouw\": \"wereldvrouw\",\n  \"wereldwijd\": \"wereldwijd\",\n  \"wereldwijde\": \"wereldwijd\",\n  \"wereldwijs\": \"wereldwijs\",\n  \"wereldwijsheid\": \"wereldwijs\",\n  \"wereldwijze\": \"wereldwijz\",\n  \"weren\": \"wer\",\n  \"werf\": \"werf\",\n  \"werk\": \"werk\",\n  \"werkafspraken\": \"werkafsprak\",\n  \"werkbaar\": \"werkbar\",\n  \"werkbank\": \"werkbank\",\n  \"werkbelasting\": \"werkbelast\",\n  \"werkbesparing\": \"werkbespar\",\n  \"werkbezoek\": \"werkbezoek\",\n  \"werkbladen\": \"werkblad\",\n  \"werkboek\": \"werkboek\",\n  \"werkbreedte\": \"werkbreedt\",\n  \"werkbreedtes\": \"werkbreedtes\",\n  \"werkconferentie\": \"werkconferentie\",\n  \"werkdagen\": \"werkdag\",\n  \"werkdruk\": \"werkdruk\",\n  \"werke\": \"werk\",\n  \"werkelijk\": \"werkelijk\",\n  \"werkelijke\": \"werkelijk\",\n  \"werkelijkheid\": \"werkelijk\",\n  \"werkeloos\": \"werkelos\",\n  \"werkeloosheid\": \"werkelos\",\n  \"werken\": \"werk\",\n  \"werkend\": \"werkend\",\n  \"werkende\": \"werkend\",\n  \"werker\": \"werker\",\n  \"werkers\": \"werker\",\n  \"werkervaring\": \"werkervar\",\n  \"werkfunctie\": \"werkfunctie\",\n  \"werkgang\": \"werkgang\",\n  \"werkgebied\": \"werkgebied\",\n  \"werkgebieden\": \"werkgebied\",\n  \"werkgelegenheid\": \"werkgeleg\",\n  \"werkgelegenheidsbeleid\": \"werkgelegenheidsbeleid\",\n  \"werkgelegenheidseffecten\": \"werkgelegenheidseffect\",\n  \"werkgelegenheidsprojecten\": \"werkgelegenheidsproject\",\n  \"werkgever\": \"werkgever\",\n  \"werkgevers\": \"werkgever\",\n  \"werkgeversbonden\": \"werkgeversbond\",\n  \"werkgeversorganisatie\": \"werkgeversorganisatie\",\n  \"werkgeversorganisaties\": \"werkgeversorganisaties\",\n  \"werkgeversplan\": \"werkgeversplan\",\n  \"werkgeversvereniging\": \"werkgeversveren\",\n  \"werkgeversvoorzitters\": \"werkgeversvoorzitter\",\n  \"werkgroep\": \"werkgroep\",\n  \"werkgroepen\": \"werkgroep\",\n  \"werkhoogte\": \"werkhoogt\",\n  \"werking\": \"werking\",\n  \"werkingsduur\": \"werkingsdur\",\n  \"werkingsmechanismen\": \"werkingsmechanism\",\n  \"werkingssfeer\": \"werkingssfer\",\n  \"werkkring\": \"werkkring\",\n  \"werklamp\": \"werklamp\",\n  \"werkloosheid\": \"werklos\",\n  \"werkloze\": \"werkloz\",\n  \"werklozen\": \"werkloz\",\n  \"werklui\": \"werklui\",\n  \"werklust\": \"werklust\",\n  \"werkmaatschappij\": \"werkmaatschappij\",\n  \"werkman\": \"werkman\",\n  \"werkmansstand\": \"werkmansstand\",\n  \"werkmethode\": \"werkmethod\",\n  \"werknemer\": \"werknemer\",\n  \"werknemers\": \"werknemer\",\n  \"werkomgeving\": \"werkomgev\",\n  \"werkomstandigheden\": \"werkomstand\",\n  \"werkplaats\": \"werkplat\",\n  \"werkplaatsconcentraties\": \"werkplaatsconcentraties\",\n  \"werkplaatsen\": \"werkplaats\",\n  \"werkplan\": \"werkplan\",\n  \"werkplannen\": \"werkplann\",\n  \"werkplek\": \"werkplek\",\n  \"werkplekkaarten\": \"werkplekkaart\",\n  \"werkplekken\": \"werkplek\",\n  \"werkprogramma\": \"werkprogramma\",\n  \"werksnelheid\": \"werksnel\",\n  \"werkstoffrecycling\": \"werkstoffrecycl\",\n  \"werkstuk\": \"werkstuk\",\n  \"werkt\": \"werkt\",\n  \"werktafel\": \"werktafel\",\n  \"werkte\": \"werkt\",\n  \"werkten\": \"werkt\",\n  \"werkterrein\": \"werkterrein\",\n  \"werkterreinen\": \"werkterrein\",\n  \"werktheater\": \"werktheater\",\n  \"werktijd\": \"werktijd\",\n  \"werktijden\": \"werktijd\",\n  \"werktuigbouw\": \"werktuigbouw\",\n  \"werktuigbouwkunde\": \"werktuigbouwkund\",\n  \"werktuigelijk\": \"werktuig\",\n  \"werktuigen\": \"werktuig\",\n  \"werktuigkeuze\": \"werktuigkeuz\",\n  \"werkveld\": \"werkveld\",\n  \"werkverkeer\": \"werkverker\",\n  \"werkvloer\": \"werkvloer\",\n  \"werkvoorbereiders\": \"werkvoorbereider\",\n  \"werkvoorzieningsschappen\": \"werkvoorzieningsschapp\",\n  \"werkwater\": \"werkwater\",\n  \"werkweek\": \"werkwek\",\n  \"werkwijze\": \"werkwijz\",\n  \"werkwoorden\": \"werkwoord\",\n  \"werkzaam\": \"werkzam\",\n  \"werkzaamheden\": \"werkzam\",\n  \"werkzaamheid\": \"werkzam\",\n  \"werkzame\": \"werkzam\",\n  \"werpen\": \"werp\",\n  \"werpt\": \"werpt\",\n  \"wert\": \"wert\",\n  \"wertz\": \"wertz\",\n  \"wervelbed\": \"wervelbed\",\n  \"wervelbedoven\": \"wervelbedov\",\n  \"wervelbedsysteem\": \"wervelbedsystem\",\n  \"wervelbedverbranding\": \"wervelbedverbrand\",\n  \"wervelbedverbrandingsinstallatie\": \"wervelbedverbrandingsinstallatie\",\n  \"wervelbedvergasser\": \"wervelbedvergasser\",\n  \"wervelbedvergassing\": \"wervelbedvergass\",\n  \"werven\": \"werv\",\n  \"wervend\": \"wervend\",\n  \"wesmycon\": \"wesmycon\",\n  \"wesp\": \"wesp\",\n  \"wesphix\": \"wesphix\",\n  \"wesselink\": \"wesselink\",\n  \"wessles\": \"wessles\",\n  \"west\": \"west\",\n  \"westab\": \"westab\",\n  \"westafrikaanse\": \"westafrikan\",\n  \"westbaan\": \"westban\",\n  \"westberg\": \"westberg\",\n  \"westcentrum\": \"westcentrum\",\n  \"westelijk\": \"westelijk\",\n  \"westelijke\": \"westelijk\",\n  \"westen\": \"west\",\n  \"westenwind\": \"westenwind\",\n  \"westergasfabriek\": \"westergasfabriek\",\n  \"western\": \"western\",\n  \"westerpark\": \"westerpark\",\n  \"westers\": \"wester\",\n  \"westerschelde\": \"westerscheld\",\n  \"westerse\": \"wester\",\n  \"westertocht\": \"westertocht\",\n  \"westervoort\": \"westervoort\",\n  \"westerzand\": \"westerzand\",\n  \"westeuropees\": \"westeuropes\",\n  \"westeuropese\": \"westeuropes\",\n  \"westfalen\": \"westfal\",\n  \"westfalica\": \"westfalica\",\n  \"westfriesland\": \"westfriesland\",\n  \"westkaap\": \"westkap\",\n  \"westkant\": \"westkant\",\n  \"westkust\": \"westkust\",\n  \"westlaken\": \"westlak\",\n  \"westland\": \"westland\",\n  \"westlandse\": \"westland\",\n  \"westminster\": \"westminster\",\n  \"westnederlandse\": \"westnederland\",\n  \"westpoort\": \"westpoort\",\n  \"westwoude\": \"westwoud\",\n  \"westzijde\": \"westzijd\",\n  \"wet\": \"wet\",\n  \"wetboek\": \"wetboek\",\n  \"wetbudep\": \"wetbudep\",\n  \"weten\": \"wet\",\n  \"wéten\": \"wet\",\n  \"wetèn\": \"wetèn\",\n  \"wetend\": \"wetend\",\n  \"wetende\": \"wetend\",\n  \"wetens\": \"weten\",\n  \"wetenschap\": \"wetenschap\",\n  \"wetenschappelijk\": \"wetenschapp\",\n  \"wetenschappelijke\": \"wetenschapp\",\n  \"wetenschappen\": \"wetenschapp\",\n  \"wetenschapper\": \"wetenschapper\",\n  \"wetenschappers\": \"wetenschapper\",\n  \"wetenschapstijdschrift\": \"wetenschapstijdschrift\",\n  \"wetenschapswinkel\": \"wetenschapswinkel\",\n  \"wetgeving\": \"wetgev\",\n  \"wetgevingen\": \"wetgev\",\n  \"wetgevings\": \"wetgev\",\n  \"wetgevingskwaliteit\": \"wetgevingskwaliteit\",\n  \"wetgevingstoets\": \"wetgevingstoet\",\n  \"wethouder\": \"wethouder\",\n  \"wethouders\": \"wethouder\",\n  \"weting\": \"weting\",\n  \"wetland\": \"wetland\",\n  \"wetlands\": \"wetland\",\n  \"wetsontwerp\": \"wetsontwerp\",\n  \"wetsvoorstel\": \"wetsvoorstel\",\n  \"wetsvoorstellen\": \"wetsvoorstell\",\n  \"wetswijziging\": \"wetswijz\",\n  \"wetswijzigingen\": \"wetswijz\",\n  \"wettelijk\": \"wettelijk\",\n  \"wettelijke\": \"wettelijk\",\n  \"wetten\": \"wet\",\n  \"wetterhaut\": \"wetterhaut\",\n  \"wettige\": \"wettig\",\n  \"weu\": \"weu\",\n  \"weurt\": \"weurt\",\n  \"weurtse\": \"weurt\",\n  \"weven\": \"wev\",\n  \"weyers\": \"weyer\",\n  \"weytingh\": \"weytingh\",\n  \"wezen\": \"wez\",\n  \"wezenlijk\": \"wezen\",\n  \"wezenlijke\": \"wezen\",\n  \"wezenloos\": \"wezenlos\",\n  \"wezenloosheid\": \"wezenlos\",\n  \"wezens\": \"wezen\",\n  \"wgd\": \"wgd\",\n  \"wgh\": \"wgh\",\n  \"wgr\": \"wgr\",\n  \"wheelabrator\": \"wheelabrator\",\n  \"wheeler\": \"wheeler\",\n  \"whisky\": \"whisky\",\n  \"whist\": \"whist\",\n  \"whisten\": \"whist\",\n  \"whistregels\": \"whistregel\",\n  \"whisttafel\": \"whisttafel\",\n  \"who\": \"who\",\n  \"whoe\": \"whoe\",\n  \"wibra\": \"wibra\",\n  \"wicc\": \"wicc\",\n  \"wide\": \"wid\",\n  \"wideraufbau\": \"wideraufbau\",\n  \"wie\": \"wie\",\n  \"wiebelt\": \"wiebelt\",\n  \"wieden\": \"wied\",\n  \"wiederaufwirkung\": \"wiederaufwirkung\",\n  \"wieg\": \"wieg\",\n  \"wiegand\": \"wiegand\",\n  \"wiegde\": \"wiegd\",\n  \"wiegen\": \"wieg\",\n  \"wiegende\": \"wiegend\",\n  \"wieggang\": \"wieggang\",\n  \"wieging\": \"wieging\",\n  \"wiegt\": \"wiegt\",\n  \"wiekdiameter\": \"wiekdiameter\",\n  \"wieken\": \"wiek\",\n  \"wieklengte\": \"wieklengt\",\n  \"wiel\": \"wiel\",\n  \"wielen\": \"wiel\",\n  \"wielenbranche\": \"wielenbranch\",\n  \"wielerende\": \"wieler\",\n  \"wielerwedstrijd\": \"wielerwedstrijd\",\n  \"wielslip\": \"wielslip\",\n  \"wieltjes\": \"wieltjes\",\n  \"wielwijk\": \"wielwijk\",\n  \"wien\": \"wien\",\n  \"wiens\": \"wien\",\n  \"wier\": \"wier\",\n  \"wierde\": \"wierd\",\n  \"wierden\": \"wierd\",\n  \"wieren\": \"wier\",\n  \"wieringa\": \"wieringa\",\n  \"wieringermeer\": \"wieringermer\",\n  \"wieringerwaard\": \"wieringerwaard\",\n  \"wierp\": \"wierp\",\n  \"wierpen\": \"wierp\",\n  \"wiersma\": \"wiersma\",\n  \"wiesbaden\": \"wiesbad\",\n  \"wij\": \"wij\",\n  \"wijchen\": \"wijch\",\n  \"wijd\": \"wijd\",\n  \"wijdbeens\": \"wijdben\",\n  \"wijdbeense\": \"wijdben\",\n  \"wijdde\": \"wijd\",\n  \"wijde\": \"wijd\",\n  \"wijden\": \"wijd\",\n  \"wijder\": \"wijder\",\n  \"wijdere\": \"wijder\",\n  \"wijds\": \"wijd\",\n  \"wijdt\": \"wijdt\",\n  \"wijdte\": \"wijdt\",\n  \"wijers\": \"wijer\",\n  \"wijf\": \"wijf\",\n  \"wijffels\": \"wijffel\",\n  \"wijk\": \"wijk\",\n  \"wijken\": \"wijk\",\n  \"wijkje\": \"wijkj\",\n  \"wijkkoeling\": \"wijkkoel\",\n  \"wijkkoelsystemen\": \"wijkkoelsystem\",\n  \"wijkverwarming\": \"wijkverwarm\",\n  \"wijkverwarmingsbedrijven\": \"wijkverwarmingsbedrijv\",\n  \"wijkverwarmingsinstallaties\": \"wijkverwarmingsinstallaties\",\n  \"wijkverwarmingsnet\": \"wijkverwarmingsnet\",\n  \"wijkverwarmingssector\": \"wijkverwarmingssector\",\n  \"wijkverwarmingssystemen\": \"wijkverwarmingssystem\",\n  \"wijn\": \"wijn\",\n  \"wijnand\": \"wijnand\",\n  \"wijnbars\": \"wijnbar\",\n  \"wijnberg\": \"wijnberg\",\n  \"wijnboer\": \"wijnboer\",\n  \"wijnboeren\": \"wijnboer\",\n  \"wijnen\": \"wijn\",\n  \"wijnexport\": \"wijnexport\",\n  \"wijnexporteurs\": \"wijnexporteur\",\n  \"wijnflessen\": \"wijnfless\",\n  \"wijnhandel\": \"wijnhandel\",\n  \"wijnimporteurs\": \"wijnimporteur\",\n  \"wijnindustrie\": \"wijnindustrie\",\n  \"wijnsaus\": \"wijnsaus\",\n  \"wijnverkopen\": \"wijnverkop\",\n  \"wijs\": \"wijs\",\n  \"wijsbegeerte\": \"wijsbegeert\",\n  \"wijsbegeertes\": \"wijsbegeertes\",\n  \"wijsgeer\": \"wijsger\",\n  \"wijsgerig\": \"wijsger\",\n  \"wijsgerige\": \"wijsger\",\n  \"wijsheid\": \"wijsheid\",\n  \"wijst\": \"wijst\",\n  \"wijste\": \"wijst\",\n  \"wijster\": \"wijster\",\n  \"wijsvinger\": \"wijsvinger\",\n  \"wijt\": \"wijt\",\n  \"wijten\": \"wijt\",\n  \"wijting\": \"wijting\",\n  \"wijven\": \"wijv\",\n  \"wijze\": \"wijz\",\n  \"wijzelf\": \"wijzelf\",\n  \"wijzen\": \"wijz\",\n  \"wijzende\": \"wijzend\",\n  \"wijzigde\": \"wijzigd\",\n  \"wijzigen\": \"wijzig\",\n  \"wijziging\": \"wijzig\",\n  \"wijzigingen\": \"wijzig\",\n  \"wijzigings\": \"wijzig\",\n  \"wijzigingsprocedures\": \"wijzigingsprocedures\",\n  \"wijzigingsrichtlijn\": \"wijzigingsrichtlijn\",\n  \"wijzigingsvergunning\": \"wijzigingsvergunn\",\n  \"wijzigt\": \"wijzigt\",\n  \"wikkelde\": \"wikkeld\",\n  \"wil\": \"wil\",\n  \"wild\": \"wild\",\n  \"wildbeheer\": \"wildbeher\",\n  \"wildbeheerseenheden\": \"wildbeheersen\",\n  \"wilde\": \"wild\",\n  \"wilden\": \"wild\",\n  \"wildgroei\": \"wildgroei\",\n  \"wildlife\": \"wildlif\",\n  \"wildschade\": \"wildschad\",\n  \"wildschadecommissie\": \"wildschadecommissie\",\n  \"wildspoor\": \"wildspor\",\n  \"wildtunnels\": \"wildtunnel\",\n  \"wilduittreedplaats\": \"wilduittreedplat\",\n  \"wildvreemde\": \"wildvreemd\",\n  \"wildvreemden\": \"wildvreemd\",\n  \"wildweiden\": \"wildweid\",\n  \"wilen\": \"wil\",\n  \"wilg\": \"wilg\",\n  \"wilgen\": \"wilg\",\n  \"wilgenplas\": \"wilgenplas\",\n  \"wilhelmina\": \"wilhelmina\",\n  \"wilhelminahaven\": \"wilhelminahav\",\n  \"wilhelminakanaal\": \"wilhelminakanal\",\n  \"wilhelms\": \"wilhelm\",\n  \"wilhelmshaven\": \"wilhelmshav\",\n  \"wilkens\": \"wilken\",\n  \"wilkhahn\": \"wilkhahn\",\n  \"willand\": \"willand\",\n  \"wille\": \"will\",\n  \"willekeur\": \"willekeur\",\n  \"willekeurig\": \"willekeur\",\n  \"willekeurige\": \"willekeur\",\n  \"willem\": \"willem\",\n  \"willemsoord\": \"willemsoord\",\n  \"willemstad\": \"willemstad\",\n  \"willen\": \"will\",\n  \"willende\": \"willend\",\n  \"willens\": \"willen\",\n  \"willenvinden\": \"willenvind\",\n  \"william\": \"william\",\n  \"willigheid\": \"willig\",\n  \"willink\": \"willink\",\n  \"wilma\": \"wilma\",\n  \"wilnis\": \"wilnis\",\n  \"wilp\": \"wilp\",\n  \"wilson\": \"wilson\",\n  \"wilt\": \"wilt\",\n  \"wiltink\": \"wiltink\",\n  \"wilton\": \"wilton\",\n  \"wim\": \"wim\",\n  \"wimek\": \"wimek\",\n  \"wimpelde\": \"wimpeld\",\n  \"wimpers\": \"wimper\",\n  \"win\": \"win\",\n  \"winbare\": \"winbar\",\n  \"winbedrijven\": \"winbedrijv\",\n  \"wind\": \"wind\",\n  \"windaanbod\": \"windaanbod\",\n  \"windbeleid\": \"windbeleid\",\n  \"windbewogen\": \"windbewog\",\n  \"winden\": \"wind\",\n  \"windenergie\": \"windenergie\",\n  \"windenergiebeleid\": \"windenergiebeleid\",\n  \"windenergiedagen\": \"windenergiedag\",\n  \"windenergiedoelstelling\": \"windenergiedoelstell\",\n  \"windenergiefaciliteit\": \"windenergiefaciliteit\",\n  \"windenergiegebruik\": \"windenergiegebruik\",\n  \"windenergielocaties\": \"windenergielocaties\",\n  \"windenergielokatie\": \"windenergielokatie\",\n  \"windenergiepark\": \"windenergiepark\",\n  \"windenergieparken\": \"windenergiepark\",\n  \"windenergieproducenten\": \"windenergieproducent\",\n  \"windenergieproject\": \"windenergieproject\",\n  \"windenergieprojecten\": \"windenergieproject\",\n  \"windenergiesector\": \"windenergiesector\",\n  \"windenergietage\": \"windenergietag\",\n  \"windenergietoepassingen\": \"windenergietoepass\",\n  \"windenergievereniging\": \"windenergieveren\",\n  \"windenergievermogen\": \"windenergievermog\",\n  \"windenergievoorziening\": \"windenergievoorzien\",\n  \"windenergiewereld\": \"windenergiewereld\",\n  \"winderige\": \"winder\",\n  \"windermere\": \"windermer\",\n  \"windfarmers\": \"windfarmer\",\n  \"windgekoelde\": \"windgekoeld\",\n  \"windindustrie\": \"windindustrie\",\n  \"windinstallaties\": \"windinstallaties\",\n  \"windjaar\": \"windjar\",\n  \"windklassen\": \"windklass\",\n  \"windklimaat\": \"windklimat\",\n  \"windklimaatwijzigingen\": \"windklimaatwijz\",\n  \"windkracht\": \"windkracht\",\n  \"windkraft\": \"windkraft\",\n  \"windlocaties\": \"windlocaties\",\n  \"windlogger\": \"windlogger\",\n  \"windmaster\": \"windmaster\",\n  \"windmolen\": \"windmol\",\n  \"windmolencoöperaties\": \"windmolencooperaties\",\n  \"windmolenlocaties\": \"windmolenlocaties\",\n  \"windmolenpark\": \"windmolenpark\",\n  \"windmolenparken\": \"windmolenpark\",\n  \"windmolenplan\": \"windmolenplan\",\n  \"windmolenproject\": \"windmolenproject\",\n  \"windmolenprojekten\": \"windmolenprojekt\",\n  \"windmolens\": \"windmolen\",\n  \"windmolentje\": \"windmolentj\",\n  \"window\": \"window\",\n  \"windows\": \"window\",\n  \"windpark\": \"windpark\",\n  \"windparken\": \"windpark\",\n  \"windparkvermogens\": \"windparkvermogen\",\n  \"windprogramma\": \"windprogramma\",\n  \"windprojecten\": \"windproject\",\n  \"windregime\": \"windregim\",\n  \"windrekening\": \"windreken\",\n  \"windrijke\": \"windrijk\",\n  \"windscale\": \"windscal\",\n  \"windscherm\": \"windscherm\",\n  \"windshiften\": \"windshift\",\n  \"windsituatie\": \"windsituatie\",\n  \"windsnelheden\": \"windsnel\",\n  \"windsnelheid\": \"windsnel\",\n  \"windsterkte\": \"windsterkt\",\n  \"windstil\": \"windstil\",\n  \"windstille\": \"windstill\",\n  \"windstilte\": \"windstilt\",\n  \"windstreek\": \"windstrek\",\n  \"windstroom\": \"windstrom\",\n  \"windtechnik\": \"windtechnik\",\n  \"windtunnels\": \"windtunnel\",\n  \"windtunneltype\": \"windtunneltyp\",\n  \"windturbine\": \"windturbin\",\n  \"windturbinefabrikant\": \"windturbinefabrikant\",\n  \"windturbinefabrikanten\": \"windturbinefabrikant\",\n  \"windturbinepark\": \"windturbinepark\",\n  \"windturbineparken\": \"windturbinepark\",\n  \"windturbines\": \"windturbines\",\n  \"windturbinetypen\": \"windturbinetyp\",\n  \"windvanger\": \"windvanger\",\n  \"windvermogen\": \"windvermog\",\n  \"windvermogens\": \"windvermogen\",\n  \"windvlaggetjes\": \"windvlaggetjes\",\n  \"windwaaiing\": \"windwaai\",\n  \"windzifter\": \"windzifter\",\n  \"wingerd\": \"wingerd\",\n  \"winkel\": \"winkel\",\n  \"winkelaar\": \"winkelar\",\n  \"winkelbedrijven\": \"winkelbedrijv\",\n  \"winkelcentra\": \"winkelcentra\",\n  \"winkelcentrum\": \"winkelcentrum\",\n  \"winkelend\": \"winkel\",\n  \"winkelier\": \"winkelier\",\n  \"winkeliers\": \"winkelier\",\n  \"winkelketens\": \"winkelketen\",\n  \"winkelpromenades\": \"winkelpromenades\",\n  \"winkelruimten\": \"winkelruimt\",\n  \"winkels\": \"winkel\",\n  \"winkelsectoren\": \"winkelsector\",\n  \"winkelstraat\": \"winkelstrat\",\n  \"winkelstraten\": \"winkelstrat\",\n  \"winkelt\": \"winkelt\",\n  \"winkra\": \"winkra\",\n  \"winmogelijkheden\": \"winmog\",\n  \"winnaar\": \"winnar\",\n  \"winnaars\": \"winnar\",\n  \"winnen\": \"winn\",\n  \"winnende\": \"winnend\",\n  \"winnenden\": \"winnend\",\n  \"winning\": \"winning\",\n  \"winningsbeleid\": \"winningsbeleid\",\n  \"winningsconcessies\": \"winningsconcessies\",\n  \"winningsmethoden\": \"winningsmethod\",\n  \"winplaats\": \"winplat\",\n  \"winplaatsen\": \"winplaats\",\n  \"winsemius\": \"winsemius\",\n  \"winst\": \"winst\",\n  \"winstbelasting\": \"winstbelast\",\n  \"winstdaling\": \"winstdal\",\n  \"winsten\": \"winst\",\n  \"winstgevende\": \"winstgev\",\n  \"winstgevender\": \"winstgevender\",\n  \"winstgevendheid\": \"winstgev\",\n  \"winstgevenheid\": \"winstgev\",\n  \"winstgroei\": \"winstgroei\",\n  \"winstmarge\": \"winstmarg\",\n  \"winstmarges\": \"winstmarges\",\n  \"winstniveau\": \"winstniveau\",\n  \"winston\": \"winston\",\n  \"winstoogmerk\": \"winstoogmerk\",\n  \"winstpunten\": \"winstpunt\",\n  \"winststijging\": \"winststijg\",\n  \"winstverwachting\": \"winstverwacht\",\n  \"winstverwachtingen\": \"winstverwacht\",\n  \"wint\": \"wint\",\n  \"winter\": \"winter\",\n  \"winteravond\": \"winteravond\",\n  \"winterbed\": \"winterbed\",\n  \"winterberging\": \"winterberg\",\n  \"winterbomen\": \"winterbom\",\n  \"wintergewas\": \"wintergewas\",\n  \"winterjas\": \"winterjas\",\n  \"winterluchten\": \"winterlucht\",\n  \"wintermaanden\": \"wintermaand\",\n  \"wintermachines\": \"wintermachines\",\n  \"wintermorgen\": \"wintermorg\",\n  \"winternacht\": \"winternacht\",\n  \"winterperiode\": \"winterperiod\",\n  \"winterregen\": \"winterreg\",\n  \"winterrouw\": \"winterrouw\",\n  \"winters\": \"winter\",\n  \"winterse\": \"winter\",\n  \"wintersituatie\": \"wintersituatie\",\n  \"winterslag\": \"winterslag\",\n  \"wintersmog\": \"wintersmog\",\n  \"wintersmogfasen\": \"wintersmogfas\",\n  \"wintersportplaatsen\": \"wintersportplaats\",\n  \"wintersportsector\": \"wintersportsector\",\n  \"winterstoken\": \"winterstok\",\n  \"winterswijk\": \"winterswijk\",\n  \"winterswijkse\": \"winterswijk\",\n  \"wintertakken\": \"wintertak\",\n  \"wintertaling\": \"wintertal\",\n  \"wintertarwe\": \"wintertarw\",\n  \"winterweer\": \"winterwer\",\n  \"winterweerschijn\": \"winterweerschijn\",\n  \"winterweg\": \"winterweg\",\n  \"winterzonnedag\": \"winterzonnedag\",\n  \"wintig\": \"wintig\",\n  \"wip\": \"wip\",\n  \"wipte\": \"wipt\",\n  \"wirrewarrelend\": \"wirrewarrel\",\n  \"wirtschaft\": \"wirtschaft\",\n  \"wirtschaftlichkeit\": \"wirtschaftlichkeit\",\n  \"wirtschaftsförderung\": \"wirtschaftsforderung\",\n  \"wis\": \"wis\",\n  \"wisconsin\": \"wisconsin\",\n  \"wisgerhof\": \"wisgerhof\",\n  \"wiskunde\": \"wiskund\",\n  \"wiskundig\": \"wiskund\",\n  \"wisse\": \"wis\",\n  \"wissel\": \"wissel\",\n  \"wisselde\": \"wisseld\",\n  \"wisselden\": \"wisseld\",\n  \"wisselen\": \"wissel\",\n  \"wisselend\": \"wissel\",\n  \"wisselende\": \"wissel\",\n  \"wisselfrequentie\": \"wisselfrequentie\",\n  \"wisselgeld\": \"wisselgeld\",\n  \"wisseling\": \"wissel\",\n  \"wisselingen\": \"wissel\",\n  \"wissels\": \"wissel\",\n  \"wisselspanning\": \"wisselspann\",\n  \"wisselstroom\": \"wisselstrom\",\n  \"wisselstroomdynamo\": \"wisselstroomdynamo\",\n  \"wisselstroompaneel\": \"wisselstroompanel\",\n  \"wisselstroompanelen\": \"wisselstroompanel\",\n  \"wisselstuk\": \"wisselstuk\",\n  \"wisselstukken\": \"wisselstuk\",\n  \"wisselt\": \"wisselt\",\n  \"wisselteelt\": \"wisselteelt\",\n  \"wisselwerking\": \"wisselwerk\",\n  \"wissen\": \"wiss\",\n  \"wissende\": \"wissend\",\n  \"wist\": \"wist\",\n  \"wiste\": \"wist\",\n  \"wisten\": \"wist\",\n  \"wit\": \"wit\",\n  \"witboek\": \"witboek\",\n  \"witbrant\": \"witbrant\",\n  \"witen\": \"wit\",\n  \"witgoed\": \"witgoed\",\n  \"with\": \"with\",\n  \"witheid\": \"witheid\",\n  \"within\": \"within\",\n  \"witjes\": \"witjes\",\n  \"witmaken\": \"witmak\",\n  \"witmaker\": \"witmaker\",\n  \"witrotschimmels\": \"witrotschimmel\",\n  \"witschuimende\": \"witschuim\",\n  \"witte\": \"wit\",\n  \"witteman\": \"witteman\",\n  \"witter\": \"witter\",\n  \"wittere\": \"witter\",\n  \"witteveen\": \"witteven\",\n  \"wittevlieg\": \"wittevlieg\",\n  \"wittig\": \"wittig\",\n  \"wittmund\": \"wittmund\",\n  \"witvellig\": \"witvell\",\n  \"witven\": \"witv\",\n  \"wiva\": \"wiva\",\n  \"wiwa\": \"wiwa\",\n  \"wk\": \"wk\",\n  \"wkc\": \"wkc\",\n  \"wkk\": \"wkk\",\n  \"wkon\": \"wkon\",\n  \"wladimir\": \"wladimir\",\n  \"wlto\": \"wlto\",\n  \"wm\": \"wm\",\n  \"wmd\": \"wmd\",\n  \"wmep\": \"wmep\",\n  \"wmi\": \"wmi\",\n  \"wmo\": \"wmo\",\n  \"wms\": \"wms\",\n  \"wnf\": \"wnf\",\n  \"wocd\": \"wocd\",\n  \"woedde\": \"woed\",\n  \"woede\": \"woed\",\n  \"woedend\": \"woedend\",\n  \"woedende\": \"woedend\",\n  \"woedt\": \"woedt\",\n  \"woei\": \"woei\",\n  \"woeien\": \"woei\",\n  \"woekerde\": \"woekerd\",\n  \"woekerden\": \"woekerd\",\n  \"woekering\": \"woeker\",\n  \"woekert\": \"woekert\",\n  \"woelde\": \"woeld\",\n  \"woelden\": \"woeld\",\n  \"woelen\": \"woel\",\n  \"woelige\": \"woelig\",\n  \"woensdag\": \"woensdag\",\n  \"woensdagmiddag\": \"woensdagmiddag\",\n  \"woerden\": \"woerd\",\n  \"woest\": \"woest\",\n  \"woeste\": \"woest\",\n  \"woestijn\": \"woestijn\",\n  \"woestijnen\": \"woestijn\",\n  \"woestijnfamilie\": \"woestijnfamilie\",\n  \"woestijnvorming\": \"woestijnvorm\",\n  \"wog\": \"wog\",\n  \"wogen\": \"wog\",\n  \"wol\": \"wol\",\n  \"wolafval\": \"wolafval\",\n  \"wold\": \"wold\",\n  \"woldjerspoor\": \"woldjerspor\",\n  \"wole\": \"wol\",\n  \"wolf\": \"wolf\",\n  \"wolff\": \"wolff\",\n  \"wolfgang\": \"wolfgang\",\n  \"wolfheze\": \"wolfhez\",\n  \"wolk\": \"wolk\",\n  \"wolken\": \"wolk\",\n  \"wolkende\": \"wolkend\",\n  \"wolkenland\": \"wolkenland\",\n  \"wolkenluchten\": \"wolkenlucht\",\n  \"wolkennacht\": \"wolkennacht\",\n  \"wolkenrijk\": \"wolkenrijk\",\n  \"wolkgevaarten\": \"wolkgevaart\",\n  \"wolkige\": \"wolkig\",\n  \"wolkigheid\": \"wolkig\",\n  \"wolkje\": \"wolkj\",\n  \"wolkjes\": \"wolkjes\",\n  \"wolklanden\": \"wolkland\",\n  \"wolkleven\": \"wolklev\",\n  \"wolkluchten\": \"wolklucht\",\n  \"wolkte\": \"wolkt\",\n  \"wolkten\": \"wolkt\",\n  \"wolkuitspansel\": \"wolkuitspansel\",\n  \"wollen\": \"woll\",\n  \"wolligheid\": \"wollig\",\n  \"wolmanzout\": \"wolmanzout\",\n  \"wolmanzouten\": \"wolmanzout\",\n  \"wolter\": \"wolter\",\n  \"wolterbeek\": \"wolterbek\",\n  \"wolters\": \"wolter\",\n  \"woltersum\": \"woltersum\",\n  \"wolvega\": \"wolvega\",\n  \"wolvlies\": \"wolvlies\",\n  \"wolwasserijen\": \"wolwasserij\",\n  \"won\": \"won\",\n  \"wond\": \"wond\",\n  \"wonder\": \"wonder\",\n  \"wonderen\": \"wonder\",\n  \"wondering\": \"wonder\",\n  \"wonderlijk\": \"wonder\",\n  \"wonen\": \"won\",\n  \"wonende\": \"wonend\",\n  \"woning\": \"woning\",\n  \"woningbouw\": \"woningbouw\",\n  \"woningbouwlocatie\": \"woningbouwlocatie\",\n  \"woningbouwlocaties\": \"woningbouwlocaties\",\n  \"woningbouwplan\": \"woningbouwplan\",\n  \"woningbouwplannen\": \"woningbouwplann\",\n  \"woningbouwproject\": \"woningbouwproject\",\n  \"woningbouwprojecten\": \"woningbouwproject\",\n  \"woningbouwstichting\": \"woningbouwsticht\",\n  \"woningbouwtaakstelling\": \"woningbouwtaakstell\",\n  \"woningbouwverenigingen\": \"woningbouwveren\",\n  \"woningcorporatie\": \"woningcorporatie\",\n  \"woningcorporaties\": \"woningcorporaties\",\n  \"woningdichtheden\": \"woningdicht\",\n  \"woningeigenaar\": \"woningeigenar\",\n  \"woningeigenaren\": \"woningeigenar\",\n  \"woningen\": \"woning\",\n  \"woninggebied\": \"woninggebied\",\n  \"woninggids\": \"woninggid\",\n  \"woningisolatie\": \"woningisolatie\",\n  \"woningmarkt\": \"woningmarkt\",\n  \"woningnood\": \"woningnod\",\n  \"woningraad\": \"woningrad\",\n  \"woningstichting\": \"woningsticht\",\n  \"woningtype\": \"woningtyp\",\n  \"woningtypen\": \"woningtyp\",\n  \"woningvoorraad\": \"woningvoorrad\",\n  \"woningwet\": \"woningwet\",\n  \"wonnen\": \"wonn\",\n  \"wood\": \"wod\",\n  \"woog\": \"wog\",\n  \"woon\": \"won\",\n  \"woonbebouwing\": \"woonbebouw\",\n  \"woonbond\": \"woonbond\",\n  \"woonbootbewoners\": \"woonbootbewoner\",\n  \"woonbouwplannen\": \"woonbouwplann\",\n  \"wooncentra\": \"wooncentra\",\n  \"woonconsumenten\": \"woonconsument\",\n  \"woonde\": \"woond\",\n  \"woonden\": \"woond\",\n  \"woonerf\": \"woonerf\",\n  \"woongebied\": \"woongebied\",\n  \"woongebieden\": \"woongebied\",\n  \"woonhuizen\": \"woonhuiz\",\n  \"woonkern\": \"woonkern\",\n  \"woonkernen\": \"woonkern\",\n  \"woonklimaat\": \"woonklimat\",\n  \"woonkwaliteit\": \"woonkwaliteit\",\n  \"woonlasten\": \"woonlast\",\n  \"woonlocaties\": \"woonlocaties\",\n  \"woonplaats\": \"woonplat\",\n  \"woont\": \"woont\",\n  \"woonthema\": \"woonthema\",\n  \"woonwagencentrum\": \"woonwagencentrum\",\n  \"woonwijk\": \"woonwijk\",\n  \"woonwijken\": \"woonwijk\",\n  \"woonwijzer\": \"woonwijzer\",\n  \"woord\": \"woord\",\n  \"woordelijk\": \"woordelijk\",\n  \"woordeloos\": \"woordelos\",\n  \"woorden\": \"woord\",\n  \"woordenloos\": \"woordenlos\",\n  \"woordenstrijd\": \"woordenstrijd\",\n  \"woordenwisseling\": \"woordenwissel\",\n  \"woordgegons\": \"woordgegon\",\n  \"woordje\": \"woordj\",\n  \"woordjes\": \"woordjes\",\n  \"woordloze\": \"woordloz\",\n  \"woordvoeder\": \"woordvoeder\",\n  \"woordvoerder\": \"woordvoerder\",\n  \"woordvoerders\": \"woordvoerder\",\n  \"woordvoerster\": \"woordvoerster\",\n  \"woordweinige\": \"woordwein\",\n  \"word\": \"word\",\n  \"wórd\": \"word\",\n  \"worden\": \"word\",\n  \"wòrden\": \"wòrden\",\n  \"wordend\": \"wordend\",\n  \"wordende\": \"wordend\",\n  \"wordingen\": \"wording\",\n  \"wordt\": \"wordt\",\n  \"wöretshofer\": \"woretshofer\",\n  \"worgde\": \"worgd\",\n  \"worgen\": \"worg\",\n  \"work\": \"work\",\n  \"working\": \"working\",\n  \"works\": \"work\",\n  \"workshop\": \"workshop\",\n  \"workshops\": \"workshop\",\n  \"world\": \"world\",\n  \"worldaccess\": \"worldacces\",\n  \"worldbank\": \"worldbank\",\n  \"worldwatch\": \"worldwatch\",\n  \"worldwood\": \"worldwod\",\n  \"worm\": \"worm\",\n  \"wormgebeeste\": \"wormgebeest\",\n  \"wormpers\": \"wormper\",\n  \"worms\": \"worm\",\n  \"wormwiel\": \"wormwiel\",\n  \"wormwielzuiger\": \"wormwielzuiger\",\n  \"wormziekte\": \"wormziekt\",\n  \"worstelaar\": \"worstelar\",\n  \"worstelden\": \"worsteld\",\n  \"worsteling\": \"worstel\",\n  \"wort\": \"wort\",\n  \"wortelactiviteit\": \"wortelactiviteit\",\n  \"wortelboer\": \"wortelboer\",\n  \"wortelde\": \"worteld\",\n  \"wortelgroei\": \"wortelgroei\",\n  \"wortelkluit\": \"wortelkluit\",\n  \"wortelplanten\": \"wortelplant\",\n  \"wortelresistentie\": \"wortelresistentie\",\n  \"wortels\": \"wortel\",\n  \"wortelstelsels\": \"wortelstelsel\",\n  \"wortelzone\": \"wortelzon\",\n  \"wortman\": \"wortman\",\n  \"wot\": \"wot\",\n  \"wotans\": \"wotan\",\n  \"wou\": \"wou\",\n  \"woud\": \"woud\",\n  \"wouden\": \"woud\",\n  \"woudenweemoed\": \"woudenweemoed\",\n  \"woudloper\": \"woudloper\",\n  \"wouter\": \"wouter\",\n  \"wouters\": \"wouter\",\n  \"wouwse\": \"wouw\",\n  \"wp\": \"wp\",\n  \"wpiek\": \"wpiek\",\n  \"wpz\": \"wpz\",\n  \"wraak\": \"wrak\",\n  \"wraakactie\": \"wraakactie\",\n  \"wraakzuchtige\": \"wraakzucht\",\n  \"wrak\": \"wrak\",\n  \"wrakken\": \"wrak\",\n  \"wrc\": \"wrc\",\n  \"wrede\": \"wred\",\n  \"wreder\": \"wreder\",\n  \"wreed\": \"wred\",\n  \"wrèed\": \"wrèed\",\n  \"wreedaards\": \"wreedaard\",\n  \"wreedheden\": \"wreedheid\",\n  \"wreedheid\": \"wreedheid\",\n  \"wreeds\": \"wred\",\n  \"wreef\": \"wref\",\n  \"wrevel\": \"wrevel\",\n  \"wri\": \"wri\",\n  \"wriemelen\": \"wriemel\",\n  \"wriemelend\": \"wriemel\",\n  \"wriemelende\": \"wriemel\",\n  \"wriemelt\": \"wriemelt\",\n  \"wrijfstijlen\": \"wrijfstijl\",\n  \"wrijvende\": \"wrijvend\",\n  \"wrijving\": \"wrijving\",\n  \"wrijvingen\": \"wrijving\",\n  \"wrijvingselektriciteit\": \"wrijvingselektriciteit\",\n  \"wringelde\": \"wringeld\",\n  \"wringelen\": \"wringel\",\n  \"wringelende\": \"wringel\",\n  \"wringen\": \"wring\",\n  \"wringend\": \"wringend\",\n  \"wringende\": \"wringend\",\n  \"wroeging\": \"wroeging\",\n  \"wroetende\": \"wroetend\",\n  \"wroette\": \"wroet\",\n  \"wroetten\": \"wroet\",\n  \"wrok\": \"wrok\",\n  \"wrokken\": \"wrok\",\n  \"wrokkende\": \"wrokkend\",\n  \"wrokte\": \"wrokt\",\n  \"wrong\": \"wrong\",\n  \"wrr\": \"wrr\",\n  \"wsa\": \"wsa\",\n  \"wsv\": \"wsv\",\n  \"wto\": \"wto\",\n  \"wubben\": \"wubb\",\n  \"wufte\": \"wuft\",\n  \"wuftheid\": \"wuftheid\",\n  \"wuifde\": \"wuifd\",\n  \"wuiven\": \"wuiv\",\n  \"wuivende\": \"wuivend\",\n  \"wulff\": \"wulff\",\n  \"wunderland\": \"wunderland\",\n  \"wuppertalinstituut\": \"wuppertalinstitut\",\n  \"wurf\": \"wurf\",\n  \"wurfix\": \"wurfix\",\n  \"wurgslangen\": \"wurgslang\",\n  \"wurm\": \"wurm\",\n  \"wutha\": \"wutha\",\n  \"wvk\": \"wvk\",\n  \"wvo\": \"wvo\",\n  \"wwf\": \"wwf\",\n  \"wwh\": \"wwh\",\n  \"www\": \"www\",\n  \"wyers\": \"wyer\",\n  \"wytze\": \"wytz\",\n  \"wzho\": \"wzho\",\n  \"x\": \"x\",\n  \"xanthobacter\": \"xanthobacter\",\n  \"xerox\": \"xerox\",\n  \"xi\": \"xi\",\n  \"xii\": \"xii\",\n  \"xiii\": \"xiii\",\n  \"xinhua\": \"xinhua\",\n  \"xiv\": \"xiv\",\n  \"xix\": \"xix\",\n  \"xk\": \"xk\",\n  \"xs\": \"xs\",\n  \"xto\": \"xto\",\n  \"xv\": \"xv\",\n  \"xvi\": \"xvi\",\n  \"xvii\": \"xvii\",\n  \"xviii\": \"xviii\",\n  \"xx\": \"xx\",\n  \"xxi\": \"xxi\",\n  \"xyleen\": \"xylen\",\n  \"xylenen\": \"xylen\",\n  \"y\": \"y\",\n  \"yamaki\": \"yamaki\",\n  \"yang\": \"yang\",\n  \"yangming\": \"yangming\",\n  \"ydema\": \"ydema\",\n  \"year\": \"year\",\n  \"yen\": \"yen\",\n  \"yerseke\": \"yersek\",\n  \"yersey\": \"yersey\",\n  \"ykstra\": \"ykstra\",\n  \"yoghurtbekertjes\": \"yoghurtbekertjes\",\n  \"york\": \"york\",\n  \"yorkshire\": \"yorkshir\",\n  \"yosu\": \"yosu\",\n  \"yours\": \"your\",\n  \"ype\": \"ype\",\n  \"ysselstein\": \"ysselstein\",\n  \"ysselsteyn\": \"ysselsteyn\",\n  \"ytsen\": \"ytsen\",\n  \"yunnan\": \"yunnan\",\n  \"yves\": \"yves\",\n  \"z\": \"z\",\n  \"zaad\": \"zad\",\n  \"zaadbalkanker\": \"zaadbalkanker\",\n  \"zaadbedrijf\": \"zaadbedrijf\",\n  \"zaadval\": \"zaadval\",\n  \"zaagmachine\": \"zaagmachin\",\n  \"zaagmeel\": \"zaagmel\",\n  \"zaagmolenlaan\": \"zaagmolenlan\",\n  \"zaaien\": \"zaai\",\n  \"zaait\": \"zaait\",\n  \"zaak\": \"zak\",\n  \"zaakgelastigde\": \"zaakgelastigd\",\n  \"zaal\": \"zal\",\n  \"zaâl\": \"zaâl\",\n  \"zaaltjes\": \"zaaltjes\",\n  \"zaanstad\": \"zaanstad\",\n  \"zaanstreek\": \"zaanstrek\",\n  \"zacharasse\": \"zacharas\",\n  \"zachariasse\": \"zacharias\",\n  \"zacht\": \"zacht\",\n  \"zachtbruine\": \"zachtbruin\",\n  \"zachte\": \"zacht\",\n  \"zachter\": \"zachter\",\n  \"zachtere\": \"zachter\",\n  \"zachters\": \"zachter\",\n  \"zachtes\": \"zachtes\",\n  \"zachtheid\": \"zachtheid\",\n  \"zachthout\": \"zachthout\",\n  \"zachthoutvezels\": \"zachthoutvezel\",\n  \"zachtjes\": \"zachtjes\",\n  \"zachtjesblasé\": \"zachtjesblas\",\n  \"zachtmoedig\": \"zachtmoed\",\n  \"zachtroze\": \"zachtroz\",\n  \"zachts\": \"zacht\",\n  \"zadel\": \"zadel\",\n  \"zadelrobben\": \"zadelrobb\",\n  \"zaden\": \"zad\",\n  \"zag\": \"zag\",\n  \"zagen\": \"zag\",\n  \"zaïrese\": \"zaires\",\n  \"zak\": \"zak\",\n  \"zakboekje\": \"zakboekj\",\n  \"zakdoek\": \"zakdoek\",\n  \"zakdoeken\": \"zakdoek\",\n  \"zake\": \"zak\",\n  \"zakedebat\": \"zakedebat\",\n  \"zakelijk\": \"zakelijk\",\n  \"zakelijke\": \"zakelijk\",\n  \"zakelijker\": \"zakelijker\",\n  \"zaken\": \"zak\",\n  \"zakenleven\": \"zakenlev\",\n  \"zakenman\": \"zakenman\",\n  \"zakenmissie\": \"zakenmissie\",\n  \"zakgeld\": \"zakgeld\",\n  \"zakjes\": \"zakjes\",\n  \"zakken\": \"zak\",\n  \"zakt\": \"zakt\",\n  \"zakte\": \"zakt\",\n  \"zakten\": \"zakt\",\n  \"zal\": \"zal\",\n  \"zalen\": \"zal\",\n  \"zalig\": \"zalig\",\n  \"zaligdiepe\": \"zaligdiep\",\n  \"zalige\": \"zalig\",\n  \"zaligen\": \"zalig\",\n  \"zaligheden\": \"zalig\",\n  \"zaligheid\": \"zalig\",\n  \"zalm\": \"zalm\",\n  \"zalmproducent\": \"zalmproducent\",\n  \"zaltbommel\": \"zaltbommel\",\n  \"zalving\": \"zalving\",\n  \"zamelen\": \"zamel\",\n  \"zamelt\": \"zamelt\",\n  \"zamen\": \"zam\",\n  \"zand\": \"zand\",\n  \"zandafscheiding\": \"zandafscheid\",\n  \"zandbank\": \"zandbank\",\n  \"zandbentoniet\": \"zandbentoniet\",\n  \"zandbentonietlaag\": \"zandbentonietlag\",\n  \"zandblankheid\": \"zandblank\",\n  \"zandbodem\": \"zandbodem\",\n  \"zanderige\": \"zander\",\n  \"zandgebieden\": \"zandgebied\",\n  \"zandgezeef\": \"zandgezef\",\n  \"zandgrond\": \"zandgrond\",\n  \"zandgronden\": \"zandgrond\",\n  \"zandhagedis\": \"zandhagedis\",\n  \"zandig\": \"zandig\",\n  \"zandige\": \"zandig\",\n  \"zandkorrels\": \"zandkorrel\",\n  \"zandkust\": \"zandkust\",\n  \"zandlaag\": \"zandlag\",\n  \"zandlading\": \"zandlad\",\n  \"zandlichaam\": \"zandlicham\",\n  \"zandlichamen\": \"zandlicham\",\n  \"zandmaas\": \"zandmas\",\n  \"zandmaasproject\": \"zandmaasproject\",\n  \"zandopspuitingen\": \"zandopspuit\",\n  \"zandoverslag\": \"zandoverslag\",\n  \"zandplaat\": \"zandplat\",\n  \"zandplek\": \"zandplek\",\n  \"zandscheidings\": \"zandscheid\",\n  \"zandslibmengsel\": \"zandslibmengsel\",\n  \"zandsuppletie\": \"zandsuppletie\",\n  \"zandsuppleties\": \"zandsuppleties\",\n  \"zandtekort\": \"zandtekort\",\n  \"zandvoort\": \"zandvoort\",\n  \"zandwallen\": \"zandwall\",\n  \"zandwasser\": \"zandwasser\",\n  \"zandwegen\": \"zandweg\",\n  \"zandwinbedrijven\": \"zandwinbedrijv\",\n  \"zandwinners\": \"zandwinner\",\n  \"zandwinning\": \"zandwinn\",\n  \"zandwinningsbedrijf\": \"zandwinningsbedrijf\",\n  \"zandwinningsbedrijven\": \"zandwinningsbedrijv\",\n  \"zang\": \"zang\",\n  \"zangeres\": \"zangeres\",\n  \"zangerig\": \"zanger\",\n  \"zanik\": \"zanik\",\n  \"zaniken\": \"zanik\",\n  \"zanikerig\": \"zaniker\",\n  \"zanikerigjes\": \"zanikerigjes\",\n  \"zanikte\": \"zanikt\",\n  \"zantingh\": \"zantingh\",\n  \"zaporoshye\": \"zaporoshye\",\n  \"zapt\": \"zapt\",\n  \"zat\": \"zat\",\n  \"zaten\": \"zat\",\n  \"zaterdag\": \"zaterdag\",\n  \"zaterdageditie\": \"zaterdageditie\",\n  \"zaterdagmiddag\": \"zaterdagmiddag\",\n  \"zaterdagnacht\": \"zaterdagnacht\",\n  \"zaterdags\": \"zaterdag\",\n  \"zavod\": \"zavod\",\n  \"ze\": \"ze\",\n  \"zé\": \"ze\",\n  \"zealand\": \"zealand\",\n  \"zeddam\": \"zeddam\",\n  \"zedelijk\": \"zedelijk\",\n  \"zeden\": \"zed\",\n  \"zederik\": \"zederik\",\n  \"zee\": \"zee\",\n  \"zeeafzettingen\": \"zeeafzet\",\n  \"zeearend\": \"zeearend\",\n  \"zeearm\": \"zeearm\",\n  \"zeebodem\": \"zeebodem\",\n  \"zeebodemonderzoek\": \"zeebodemonderzoek\",\n  \"zeebrugge\": \"zeebrugg\",\n  \"zeeburg\": \"zeeburg\",\n  \"zeeburgereiland\": \"zeeburgereiland\",\n  \"zeedieren\": \"zeedier\",\n  \"zeedijk\": \"zeedijk\",\n  \"zeeën\": \"zeeen\",\n  \"zeef\": \"zef\",\n  \"zeefde\": \"zeefd\",\n  \"zeefden\": \"zeefd\",\n  \"zeefdrukindustrie\": \"zeefdrukindustrie\",\n  \"zeefeenheid\": \"zeefen\",\n  \"zeeforel\": \"zeeforel\",\n  \"zeefschermen\": \"zeefscherm\",\n  \"zeefwisselsysteem\": \"zeefwisselsystem\",\n  \"zeefzand\": \"zeefzand\",\n  \"zeefzandhoudend\": \"zeefzandhoud\",\n  \"zeegat\": \"zeegat\",\n  \"zeegebied\": \"zeegebied\",\n  \"zeegemaal\": \"zeegemal\",\n  \"zeegolven\": \"zeegolv\",\n  \"zeehaven\": \"zeehav\",\n  \"zeehavens\": \"zeehaven\",\n  \"zeehond\": \"zeehond\",\n  \"zeehonden\": \"zeehond\",\n  \"zeehondencrèche\": \"zeehondencrèch\",\n  \"zeehondendeskundigen\": \"zeehondendeskund\",\n  \"zeehondenjagers\": \"zeehondenjager\",\n  \"zeehondenkolonie\": \"zeehondenkolonie\",\n  \"zeehondje\": \"zeehondj\",\n  \"zeekoeten\": \"zeekoet\",\n  \"zeekreeft\": \"zeekreeft\",\n  \"zeekust\": \"zeekust\",\n  \"zeeland\": \"zeeland\",\n  \"zeelandse\": \"zeeland\",\n  \"zeeleven\": \"zeelev\",\n  \"zeelui\": \"zeelui\",\n  \"zeeman\": \"zeeman\",\n  \"zeemanachtige\": \"zeemanacht\",\n  \"zeemijl\": \"zeemijl\",\n  \"zeemijlen\": \"zeemijl\",\n  \"zeemilieu\": \"zeemilieu\",\n  \"zeeniveau\": \"zeeniveau\",\n  \"zeeofficier\": \"zeeofficier\",\n  \"zeep\": \"zep\",\n  \"zeepfabrikanten\": \"zeepfabrikant\",\n  \"zeepokken\": \"zeepok\",\n  \"zeepost\": \"zeepost\",\n  \"zeer\": \"zer\",\n  \"zeereep\": \"zeerep\",\n  \"zeerst\": \"zeerst\",\n  \"zeeschepen\": \"zeeschep\",\n  \"zeeschip\": \"zeeschip\",\n  \"zeesla\": \"zeesla\",\n  \"zeespiegel\": \"zeespiegel\",\n  \"zeespiegelstijging\": \"zeespiegelstijg\",\n  \"zeesterren\": \"zeesterr\",\n  \"zeetankers\": \"zeetanker\",\n  \"zeeuw\": \"zeeuw\",\n  \"zeeuwen\": \"zeeuw\",\n  \"zeeuws\": \"zeeuw\",\n  \"zeeuwse\": \"zeeuw\",\n  \"zeevis\": \"zeevis\",\n  \"zeevogelgroep\": \"zeevogelgroep\",\n  \"zeevogels\": \"zeevogel\",\n  \"zeewaarts\": \"zeewaart\",\n  \"zeewater\": \"zeewater\",\n  \"zeewaterdruppeltjes\": \"zeewaterdruppeltjes\",\n  \"zeewaterspiegel\": \"zeewaterspiegel\",\n  \"zeewatertemperatuur\": \"zeewatertemperatur\",\n  \"zeewaterwasser\": \"zeewaterwasser\",\n  \"zeeweringeisen\": \"zeeweringeis\",\n  \"zeewier\": \"zeewier\",\n  \"zeewolde\": \"zeewold\",\n  \"zeezand\": \"zeezand\",\n  \"zeezandgronden\": \"zeezandgrond\",\n  \"zeezijde\": \"zeezijd\",\n  \"zeezoogdieren\": \"zeezoogdier\",\n  \"zeg\": \"zeg\",\n  \"zég\": \"zeg\",\n  \"zèg\": \"zèg\",\n  \"zegbaar\": \"zegbar\",\n  \"zegel\": \"zegel\",\n  \"zegen\": \"zeg\",\n  \"zegevierde\": \"zegevierd\",\n  \"zegevierden\": \"zegevierd\",\n  \"zegevierend\": \"zegevier\",\n  \"zeggen\": \"zegg\",\n  \"zèggen\": \"zègg\",\n  \"zeggend\": \"zeggend\",\n  \"zeggende\": \"zeggend\",\n  \"zeggenschap\": \"zeggenschap\",\n  \"zegsman\": \"zegsman\",\n  \"zegswijzen\": \"zegswijz\",\n  \"zegt\": \"zegt\",\n  \"zegveld\": \"zegveld\",\n  \"zegwaard\": \"zegwaard\",\n  \"zei\": \"zei\",\n  \"zeide\": \"zeid\",\n  \"zeiden\": \"zeid\",\n  \"zeifzekerheid\": \"zeifzeker\",\n  \"zeil\": \"zeil\",\n  \"zeildoeken\": \"zeildoek\",\n  \"zeilen\": \"zeil\",\n  \"zeiljacht\": \"zeiljacht\",\n  \"zeilmaker\": \"zeilmaker\",\n  \"zeilmakerij\": \"zeilmakerij\",\n  \"zeilschip\": \"zeilschip\",\n  \"zeilsport\": \"zeilsport\",\n  \"zeiss\": \"zeis\",\n  \"zeist\": \"zeist\",\n  \"zeister\": \"zeister\",\n  \"zeker\": \"zeker\",\n  \"zéker\": \"zeker\",\n  \"zekerders\": \"zekerder\",\n  \"zekere\": \"zeker\",\n  \"zekerheden\": \"zeker\",\n  \"zekerheid\": \"zeker\",\n  \"zekerheidsstelling\": \"zekerheidsstell\",\n  \"zekerheidswaarde\": \"zekerheidswaard\",\n  \"zekers\": \"zeker\",\n  \"zelden\": \"zeld\",\n  \"zeldzaam\": \"zeldzam\",\n  \"zeldzame\": \"zeldzam\",\n  \"zelf\": \"zelf\",\n  \"zèlf\": \"zèlf\",\n  \"zelfbedrijven\": \"zelfbedrijv\",\n  \"zelfbedrog\": \"zelfbedrog\",\n  \"zelfbedwang\": \"zelfbedwang\",\n  \"zelfbegoocheling\": \"zelfbegoochel\",\n  \"zelfbeheersing\": \"zelfbeheers\",\n  \"zelfbekentenis\": \"zelfbekentenis\",\n  \"zelfbestuur\": \"zelfbestur\",\n  \"zelfbeveiliging\": \"zelfbeveil\",\n  \"zelfbewust\": \"zelfbewust\",\n  \"zelfbewustheid\": \"zelfbewust\",\n  \"zelfde\": \"zelfd\",\n  \"zelfdood\": \"zelfdod\",\n  \"zelfgekozen\": \"zelfgekoz\",\n  \"zelfherstellende\": \"zelfherstell\",\n  \"zelfhoogte\": \"zelfhoogt\",\n  \"zelflossende\": \"zelfloss\",\n  \"zelfmoord\": \"zelfmoord\",\n  \"zelfontevredenheid\": \"zelfontevred\",\n  \"zelfonvoldaanheden\": \"zelfonvoldan\",\n  \"zelfonvoldaanheid\": \"zelfonvoldan\",\n  \"zelfopvoeding\": \"zelfopvoed\",\n  \"zelfpersende\": \"zelfpers\",\n  \"zelfregulering\": \"zelfreguler\",\n  \"zelfreinigende\": \"zelfrein\",\n  \"zelfresonerende\": \"zelfresoner\",\n  \"zelfrijdende\": \"zelfrijd\",\n  \"zelfs\": \"zelf\",\n  \"zelfsbeheersing\": \"zelfsbeheers\",\n  \"zelfstandig\": \"zelfstand\",\n  \"zelfstandige\": \"zelfstand\",\n  \"zelfstandigenaftrek\": \"zelfstandigenaftrek\",\n  \"zelftrekkend\": \"zelftrek\",\n  \"zelfverheerlijking\": \"zelfverheerlijk\",\n  \"zelfverwijt\": \"zelfverwijt\",\n  \"zelfvoldaan\": \"zelfvoldan\",\n  \"zelfvoorzienend\": \"zelfvoorzien\",\n  \"zelfvoorziening\": \"zelfvoorzien\",\n  \"zelfvoorzieningsbeginsel\": \"zelfvoorzieningsbeginsel\",\n  \"zelfvraag\": \"zelfvrag\",\n  \"zelfwegen\": \"zelfweg\",\n  \"zelfwelwillende\": \"zelfwelwill\",\n  \"zelfwelwillendheid\": \"zelfwelwill\",\n  \"zelfwerkzaamheid\": \"zelfwerkzam\",\n  \"zelfweten\": \"zelfwet\",\n  \"zelfzekerheid\": \"zelfzeker\",\n  \"zelhem\": \"zelhem\",\n  \"zelve\": \"zelv\",\n  \"zelvers\": \"zelver\",\n  \"zelzate\": \"zelzat\",\n  \"zema\": \"zema\",\n  \"zen\": \"zen\",\n  \"zend\": \"zend\",\n  \"zenden\": \"zend\",\n  \"zendende\": \"zendend\",\n  \"zender\": \"zender\",\n  \"zenderen\": \"zender\",\n  \"zenderpark\": \"zenderpark\",\n  \"zenders\": \"zender\",\n  \"zendertje\": \"zendertj\",\n  \"zendertjes\": \"zendertjes\",\n  \"zending\": \"zending\",\n  \"zendingen\": \"zending\",\n  \"zendt\": \"zendt\",\n  \"zeneca\": \"zeneca\",\n  \"zennewijnen\": \"zennewijn\",\n  \"zenuw\": \"zenuw\",\n  \"zenuwachtig\": \"zenuwacht\",\n  \"zenuwachtige\": \"zenuwacht\",\n  \"zenuwachtiger\": \"zenuwachtiger\",\n  \"zenuwachtigheid\": \"zenuwacht\",\n  \"zenuwbuien\": \"zenuwbui\",\n  \"zenuwcrisis\": \"zenuwcrisis\",\n  \"zenuwen\": \"zenuw\",\n  \"zenuwkreten\": \"zenuwkret\",\n  \"zenuwleven\": \"zenuwlev\",\n  \"zenuwlijden\": \"zenuwlijd\",\n  \"zenuwlijders\": \"zenuwlijder\",\n  \"zenuwpatiënten\": \"zenuwpatient\",\n  \"zenuwsnelle\": \"zenuwsnell\",\n  \"zenuwsnik\": \"zenuwsnik\",\n  \"zenuwsnikbui\": \"zenuwsnikbui\",\n  \"zenuwsnikken\": \"zenuwsnik\",\n  \"zenuwsnikkend\": \"zenuwsnik\",\n  \"zenuwsnikte\": \"zenuwsnikt\",\n  \"zenuwspecialist\": \"zenuwspecialist\",\n  \"zenuwspecialiteit\": \"zenuwspecialiteit\",\n  \"zenuwstelsel\": \"zenuwstelsel\",\n  \"zenuwstoornis\": \"zenuwstoornis\",\n  \"zenuwtoeval\": \"zenuwtoeval\",\n  \"zenuwtrillende\": \"zenuwtrill\",\n  \"zenuwtrilling\": \"zenuwtrill\",\n  \"zenuwzieke\": \"zenuwziek\",\n  \"zeoliet\": \"zeoliet\",\n  \"zeolieten\": \"zeoliet\",\n  \"zeolietkatalysator\": \"zeolietkatalysator\",\n  \"zeolites\": \"zeolites\",\n  \"zeppelins\": \"zeppelin\",\n  \"zerdiratoren\": \"zerdirator\",\n  \"zero\": \"zero\",\n  \"zes\": \"zes\",\n  \"zesde\": \"zesd\",\n  \"zesduizend\": \"zesduiz\",\n  \"zesennegentig\": \"zesennegent\",\n  \"zesentwintig\": \"zesentwint\",\n  \"zeshonderd\": \"zeshonderd\",\n  \"zessen\": \"zess\",\n  \"zessporig\": \"zesspor\",\n  \"zessporigheid\": \"zesspor\",\n  \"zestal\": \"zestal\",\n  \"zestien\": \"zestien\",\n  \"zestienhoven\": \"zestienhov\",\n  \"zestig\": \"zestig\",\n  \"zestiger\": \"zestiger\",\n  \"zet\": \"zet\",\n  \"zetel\": \"zetel\",\n  \"zetmeel\": \"zetmel\",\n  \"zetmeelbron\": \"zetmeelbron\",\n  \"zetmeelderivaten\": \"zetmeelderivat\",\n  \"zetmeelplastic\": \"zetmeelplastic\",\n  \"zetmeelplastics\": \"zetmeelplastic\",\n  \"zette\": \"zet\",\n  \"zetten\": \"zet\",\n  \"zettende\": \"zettend\",\n  \"zettingsgevoelig\": \"zettingsgevoel\",\n  \"zeugen\": \"zeug\",\n  \"zeugenhouder\": \"zeugenhouder\",\n  \"zeulden\": \"zeuld\",\n  \"zeurde\": \"zeurd\",\n  \"zeurden\": \"zeurd\",\n  \"zeuren\": \"zeur\",\n  \"zeuring\": \"zeuring\",\n  \"zeurstem\": \"zeurstem\",\n  \"zeven\": \"zev\",\n  \"zevenbergen\": \"zevenberg\",\n  \"zevende\": \"zevend\",\n  \"zevenduizend\": \"zevenduiz\",\n  \"zevenen\": \"zeven\",\n  \"zevenendertig\": \"zevenendert\",\n  \"zevenhonderd\": \"zevenhonderd\",\n  \"zevenhuizen\": \"zevenhuiz\",\n  \"zeventien\": \"zeventien\",\n  \"zeventig\": \"zevent\",\n  \"zhang\": \"zhang\",\n  \"zhm\": \"zhm\",\n  \"zich\": \"zich\",\n  \"zichbaar\": \"zichbar\",\n  \"zicht\": \"zicht\",\n  \"zichtbaar\": \"zichtbar\",\n  \"zichtbare\": \"zichtbar\",\n  \"zichte\": \"zicht\",\n  \"zichzelf\": \"zichzelf\",\n  \"zichzelve\": \"zichzelv\",\n  \"zie\": \"zie\",\n  \"ziè\": \"ziè\",\n  \"ziedde\": \"zied\",\n  \"ziedelde\": \"ziedeld\",\n  \"zieden\": \"zied\",\n  \"ziedend\": \"ziedend\",\n  \"ziedende\": \"ziedend\",\n  \"ziehier\": \"ziehier\",\n  \"ziek\": \"ziek\",\n  \"ziekbed\": \"ziekbed\",\n  \"zieke\": \"ziek\",\n  \"ziekelijk\": \"ziekelijk\",\n  \"ziekelijke\": \"ziekelijk\",\n  \"ziekelijkheid\": \"ziekelijk\",\n  \"ziekelijkjes\": \"ziekelijkjes\",\n  \"zieken\": \"ziek\",\n  \"ziekende\": \"ziekend\",\n  \"ziekenhuis\": \"ziekenhuis\",\n  \"ziekenhuisafval\": \"ziekenhuisafval\",\n  \"ziekenhuisopnamen\": \"ziekenhuisopnam\",\n  \"ziekenhuizen\": \"ziekenhuiz\",\n  \"zieker\": \"zieker\",\n  \"ziekte\": \"ziekt\",\n  \"ziektebestrijding\": \"ziektebestrijd\",\n  \"ziektegeval\": \"ziektegeval\",\n  \"ziektegevoeligheid\": \"ziektegevoel\",\n  \"ziektekiemen\": \"ziektekiem\",\n  \"ziekten\": \"ziekt\",\n  \"ziekteprobleem\": \"ziekteproblem\",\n  \"ziektes\": \"ziektes\",\n  \"ziekteverwekkende\": \"ziekteverwek\",\n  \"ziekteverwekkers\": \"ziekteverwekker\",\n  \"ziekteverzuim\": \"ziekteverzuim\",\n  \"ziektevrij\": \"ziektevrij\",\n  \"ziel\": \"ziel\",\n  \"zielatoom\": \"zielatom\",\n  \"zielatoompje\": \"zielatoompj\",\n  \"ziele\": \"ziel\",\n  \"zieleblik\": \"zieleblik\",\n  \"zieledingen\": \"zieled\",\n  \"zielemachten\": \"zielemacht\",\n  \"zielen\": \"ziel\",\n  \"zielenschimmen\": \"zielenschimm\",\n  \"zieleschim\": \"zieleschim\",\n  \"zielesmartelijk\": \"zielesmart\",\n  \"zielevingers\": \"zielevinger\",\n  \"zielig\": \"zielig\",\n  \"zielloos\": \"ziellos\",\n  \"ziels\": \"ziel\",\n  \"zielsbegoocheling\": \"zielsbegoochel\",\n  \"zielsgezicht\": \"zielsgezicht\",\n  \"zielsleven\": \"zielslev\",\n  \"zielslief\": \"zielslief\",\n  \"zielstoestand\": \"zielstoestand\",\n  \"zielsverwant\": \"zielsverwant\",\n  \"zielsziek\": \"zielsziek\",\n  \"zieltje\": \"zieltj\",\n  \"zieltogende\": \"zieltog\",\n  \"zien\": \"zien\",\n  \"zién\": \"zien\",\n  \"ziende\": \"ziend\",\n  \"ziet\": \"ziet\",\n  \"zigzaggende\": \"zigzagg\",\n  \"zij\": \"zij\",\n  \"zijbelading\": \"zijbelad\",\n  \"zijde\": \"zijd\",\n  \"zijden\": \"zijd\",\n  \"zijdeveld\": \"zijdeveld\",\n  \"zijgt\": \"zijgt\",\n  \"zijkamer\": \"zijkamer\",\n  \"zijkamertje\": \"zijkamertj\",\n  \"zijkanten\": \"zijkant\",\n  \"zijl\": \"zijl\",\n  \"zijladers\": \"zijlader\",\n  \"zijlstra\": \"zijlstra\",\n  \"zijn\": \"zijn\",\n  \"zijnde\": \"zijnd\",\n  \"zijne\": \"zijn\",\n  \"zijnen\": \"zijn\",\n  \"zijner\": \"zijner\",\n  \"zijns\": \"zijn\",\n  \"zijpad\": \"zijpad\",\n  \"zijpendaalseweg\": \"zijpendaalseweg\",\n  \"zijriviertje\": \"zijriviertj\",\n  \"zijstraat\": \"zijstrat\",\n  \"zijt\": \"zijt\",\n  \"zijweg\": \"zijweg\",\n  \"zijzelf\": \"zijzelf\",\n  \"zijzelve\": \"zijzelv\",\n  \"zikkamer\": \"zikkamer\",\n  \"zilt\": \"zilt\",\n  \"zilte\": \"zilt\",\n  \"ziltgeurige\": \"ziltgeur\",\n  \"zilver\": \"zilver\",\n  \"zilveren\": \"zilver\",\n  \"zilvergrijs\": \"zilvergrijs\",\n  \"zilvergrijze\": \"zilvergrijz\",\n  \"zilverkast\": \"zilverkast\",\n  \"zilvernitraat\": \"zilvernitrat\",\n  \"zilversolderen\": \"zilversolder\",\n  \"zimbabwaanse\": \"zimbabwan\",\n  \"zin\": \"zin\",\n  \"zindelijk\": \"zindelijk\",\n  \"zindelijker\": \"zindelijker\",\n  \"zindelijkheid\": \"zindelijk\",\n  \"zingen\": \"zing\",\n  \"zink\": \"zink\",\n  \"zinkafval\": \"zinkafval\",\n  \"zinkcassette\": \"zinkcasset\",\n  \"zinken\": \"zink\",\n  \"zinkende\": \"zinkend\",\n  \"zinkerts\": \"zinkert\",\n  \"zinkfabriek\": \"zinkfabriek\",\n  \"zinkfabrieken\": \"zinkfabriek\",\n  \"zinkgehalte\": \"zinkgehalt\",\n  \"zinkionen\": \"zinkion\",\n  \"zinklaag\": \"zinklag\",\n  \"zinkmetaal\": \"zinkmetal\",\n  \"zinkplaten\": \"zinkplat\",\n  \"zinkproducerende\": \"zinkproducer\",\n  \"zinkt\": \"zinkt\",\n  \"zinkverwijdering\": \"zinkverwijder\",\n  \"zinkwitfabriek\": \"zinkwitfabriek\",\n  \"zinnelijk\": \"zinnelijk\",\n  \"zinnelijkheid\": \"zinnelijk\",\n  \"zinnen\": \"zinn\",\n  \"zinnetjes\": \"zinnetjes\",\n  \"zinnevlam\": \"zinnevlam\",\n  \"zinnige\": \"zinnig\",\n  \"zinsbegoochelde\": \"zinsbegoocheld\",\n  \"zinsbegoocheling\": \"zinsbegoochel\",\n  \"zinsnede\": \"zinsned\",\n  \"zinspeelde\": \"zinspeeld\",\n  \"zinvol\": \"zinvol\",\n  \"zinvolle\": \"zinvoll\",\n  \"zinzieke\": \"zinziek\",\n  \"zirconiumoxyde\": \"zirconiumoxyd\",\n  \"zirconiumsilicaat\": \"zirconiumsilicat\",\n  \"zirkoonoxyde\": \"zirkoonoxyd\",\n  \"zit\": \"zit\",\n  \"zitbanken\": \"zitbank\",\n  \"zitkamer\": \"zitkamer\",\n  \"zitten\": \"zit\",\n  \"zittende\": \"zittend\",\n  \"zitting\": \"zitting\",\n  \"zjores\": \"zjores\",\n  \"zmo\": \"zmo\",\n  \"zo\": \"zo\",\n  \"zó\": \"zo\",\n  \"zò\": \"zò\",\n  \"zoab\": \"zoab\",\n  \"zoabclean\": \"zoabclean\",\n  \"zoabreinigers\": \"zoabreiniger\",\n  \"zoal\": \"zoal\",\n  \"zoals\": \"zoal\",\n  \"zocht\": \"zocht\",\n  \"zochten\": \"zocht\",\n  \"zodanig\": \"zodan\",\n  \"zodanige\": \"zodan\",\n  \"zodat\": \"zodat\",\n  \"zodebemester\": \"zodebemester\",\n  \"zodoende\": \"zodoend\",\n  \"zodra\": \"zodra\",\n  \"zoek\": \"zoek\",\n  \"zoeken\": \"zoek\",\n  \"zoekend\": \"zoekend\",\n  \"zoekende\": \"zoekend\",\n  \"zoekends\": \"zoekend\",\n  \"zoeker\": \"zoeker\",\n  \"zoeking\": \"zoeking\",\n  \"zoekmogelijkheden\": \"zoekmog\",\n  \"zoekt\": \"zoekt\",\n  \"zoel\": \"zoel\",\n  \"zoele\": \"zoel\",\n  \"zoelen\": \"zoel\",\n  \"zoeler\": \"zoeler\",\n  \"zoeligheden\": \"zoelig\",\n  \"zoemende\": \"zoemend\",\n  \"zoen\": \"zoen\",\n  \"zoende\": \"zoend\",\n  \"zoenen\": \"zoen\",\n  \"zoenlach\": \"zoenlach\",\n  \"zoentjes\": \"zoentjes\",\n  \"zoest\": \"zoest\",\n  \"zoet\": \"zoet\",\n  \"zoetbitter\": \"zoetbitter\",\n  \"zoete\": \"zoet\",\n  \"zoeteman\": \"zoeteman\",\n  \"zoetermeer\": \"zoetermer\",\n  \"zoethoudertje\": \"zoethoudertj\",\n  \"zoetwarenproducent\": \"zoetwarenproducent\",\n  \"zoetwater\": \"zoetwater\",\n  \"zoetwaterbassin\": \"zoetwaterbassin\",\n  \"zoetwaterbeheer\": \"zoetwaterbeher\",\n  \"zoetwaterbellen\": \"zoetwaterbell\",\n  \"zoetwateromgevingen\": \"zoetwateromgev\",\n  \"zoetwatervis\": \"zoetwatervis\",\n  \"zoëven\": \"zoev\",\n  \"zogeheten\": \"zogehet\",\n  \"zogenaamd\": \"zogenaamd\",\n  \"zogenaamde\": \"zogenaamd\",\n  \"zogenoemd\": \"zogenoemd\",\n  \"zogenoemde\": \"zogenoemd\",\n  \"zola\": \"zola\",\n  \"zolang\": \"zolang\",\n  \"zolder\": \"zolder\",\n  \"zoldering\": \"zolder\",\n  \"zolderingen\": \"zolder\",\n  \"zolderkamers\": \"zolderkamer\",\n  \"zolderverdieping\": \"zolderverdiep\",\n  \"zolen\": \"zol\",\n  \"zolenindrukken\": \"zolenindruk\",\n  \"zöller\": \"zoller\",\n  \"zomer\": \"zomer\",\n  \"zomerblauw\": \"zomerblauw\",\n  \"zomercongres\": \"zomercongres\",\n  \"zomerdaad\": \"zomerdad\",\n  \"zomerdag\": \"zomerdag\",\n  \"zomerdagen\": \"zomerdag\",\n  \"zomerde\": \"zomerd\",\n  \"zomerdijk\": \"zomerdijk\",\n  \"zomerdiner\": \"zomerdiner\",\n  \"zomerende\": \"zomer\",\n  \"zomergloed\": \"zomergloed\",\n  \"zomerhemel\": \"zomerhemel\",\n  \"zomerhuizen\": \"zomerhuiz\",\n  \"zomering\": \"zomer\",\n  \"zomerlanen\": \"zomerlan\",\n  \"zomerleven\": \"zomerlev\",\n  \"zomerlucht\": \"zomerlucht\",\n  \"zomermaanden\": \"zomermaand\",\n  \"zomermorgen\": \"zomermorg\",\n  \"zomernacht\": \"zomernacht\",\n  \"zomeronweer\": \"zomeronwer\",\n  \"zomerreces\": \"zomerreces\",\n  \"zomers\": \"zomer\",\n  \"zomersmog\": \"zomersmog\",\n  \"zomertortel\": \"zomertortel\",\n  \"zomeruur\": \"zomerur\",\n  \"zomerverblijf\": \"zomerverblijf\",\n  \"zomerverblijven\": \"zomerverblijv\",\n  \"zomerwadem\": \"zomerwadem\",\n  \"zomerwolken\": \"zomerwolk\",\n  \"zomerzwoelte\": \"zomerzwoelt\",\n  \"zompige\": \"zompig\",\n  \"zon\": \"zon\",\n  \"zonaanbod\": \"zonaanbod\",\n  \"zonbijdrage\": \"zonbijdrag\",\n  \"zond\": \"zond\",\n  \"zondag\": \"zondag\",\n  \"zondagavond\": \"zondagavond\",\n  \"zondagavonden\": \"zondagavond\",\n  \"zondagen\": \"zondag\",\n  \"zondagmiddag\": \"zondagmiddag\",\n  \"zondags\": \"zondag\",\n  \"zondagsavonds\": \"zondagsavond\",\n  \"zondagse\": \"zondag\",\n  \"zondagsmensen\": \"zondagsmens\",\n  \"zondagsmorgens\": \"zondagsmorgen\",\n  \"zonde\": \"zond\",\n  \"zonden\": \"zond\",\n  \"zonder\": \"zonder\",\n  \"zonderen\": \"zonder\",\n  \"zonderling\": \"zonderl\",\n  \"zonderlinge\": \"zonderl\",\n  \"zondig\": \"zondig\",\n  \"zondoorstraald\": \"zondoorstraald\",\n  \"zondvloed\": \"zondvloed\",\n  \"zone\": \"zon\",\n  \"zonen\": \"zon\",\n  \"zones\": \"zones\",\n  \"zong\": \"zong\",\n  \"zongen\": \"zong\",\n  \"zongericht\": \"zongericht\",\n  \"zoninval\": \"zoninval\",\n  \"zonk\": \"zonk\",\n  \"zonken\": \"zonk\",\n  \"zonlicht\": \"zonlicht\",\n  \"zonlichte\": \"zonlicht\",\n  \"zonne\": \"zonn\",\n  \"zonnebanken\": \"zonnebank\",\n  \"zonnebloemolie\": \"zonnebloemolie\",\n  \"zonneboiler\": \"zonneboiler\",\n  \"zonneboilercombi\": \"zonneboilercombi\",\n  \"zonneboilerfabrikanten\": \"zonneboilerfabrikant\",\n  \"zonneboilers\": \"zonneboiler\",\n  \"zonneboilersysteem\": \"zonneboilersystem\",\n  \"zonnebranche\": \"zonnebranch\",\n  \"zonnecel\": \"zonnecel\",\n  \"zonnecellen\": \"zonnecell\",\n  \"zonnecellenbedrijf\": \"zonnecellenbedrijf\",\n  \"zonnecelonderzoek\": \"zonnecelonderzoek\",\n  \"zonnecelpanelen\": \"zonnecelpanel\",\n  \"zonneceltechnieken\": \"zonneceltechniek\",\n  \"zonnecentrales\": \"zonnecentrales\",\n  \"zonnecollector\": \"zonnecollector\",\n  \"zonnecollectoren\": \"zonnecollector\",\n  \"zonnecrème\": \"zonnecrèm\",\n  \"zonnedag\": \"zonnedag\",\n  \"zonnedauw\": \"zonnedauw\",\n  \"zonnedorpen\": \"zonnedorp\",\n  \"zonneënergie\": \"zonneenergie\",\n  \"zonnegascombi\": \"zonnegascombi\",\n  \"zonneglanzingen\": \"zonneglanz\",\n  \"zonnelampen\": \"zonnelamp\",\n  \"zonnelantaarns\": \"zonnelantaarn\",\n  \"zonnelicht\": \"zonnelicht\",\n  \"zonnemethode\": \"zonnemethod\",\n  \"zonnemodule\": \"zonnemodul\",\n  \"zonnemodules\": \"zonnemodules\",\n  \"zonnemuren\": \"zonnemur\",\n  \"zonnen\": \"zonn\",\n  \"zonnepaneel\": \"zonnepanel\",\n  \"zonnepanelen\": \"zonnepanel\",\n  \"zonnereactor\": \"zonnereactor\",\n  \"zonneschijf\": \"zonneschijf\",\n  \"zonneschijn\": \"zonneschijn\",\n  \"zonnespiegels\": \"zonnespiegel\",\n  \"zonnestoffige\": \"zonnestoff\",\n  \"zonnestraalden\": \"zonnestraald\",\n  \"zonnestralen\": \"zonnestral\",\n  \"zonnestraling\": \"zonnestral\",\n  \"zonnestroom\": \"zonnestrom\",\n  \"zonneveld\": \"zonneveld\",\n  \"zonnewasdroger\": \"zonnewasdroger\",\n  \"zonnewoningen\": \"zonnewon\",\n  \"zonnezeil\": \"zonnezeil\",\n  \"zonnig\": \"zonnig\",\n  \"zonnige\": \"zonnig\",\n  \"zonnigheid\": \"zonnig\",\n  \"zonnigs\": \"zonnig\",\n  \"zonodig\": \"zonod\",\n  \"zonwering\": \"zonwer\",\n  \"zoogdieren\": \"zoogdier\",\n  \"zooitje\": \"zooitj\",\n  \"zool\": \"zol\",\n  \"zoom\": \"zom\",\n  \"zoon\": \"zon\",\n  \"zoons\": \"zon\",\n  \"zorg\": \"zorg\",\n  \"zorgde\": \"zorgd\",\n  \"zorgden\": \"zorgd\",\n  \"zorgdragen\": \"zorgdrag\",\n  \"zorgelementen\": \"zorgelement\",\n  \"zorgeloosheid\": \"zorgelos\",\n  \"zorgen\": \"zorg\",\n  \"zorgende\": \"zorgend\",\n  \"zorginstellingen\": \"zorginstell\",\n  \"zorgplicht\": \"zorgplicht\",\n  \"zorgplichtartikel\": \"zorgplichtartikel\",\n  \"zorgsector\": \"zorgsector\",\n  \"zorgsysteem\": \"zorgsystem\",\n  \"zorgsystemen\": \"zorgsystem\",\n  \"zorgt\": \"zorgt\",\n  \"zorgvuldig\": \"zorgvuld\",\n  \"zorgvuldige\": \"zorgvuld\",\n  \"zorgvuldiger\": \"zorgvuldiger\",\n  \"zorgwekkend\": \"zorgwek\",\n  \"zorgzaamheid\": \"zorgzam\",\n  \"zoro\": \"zoro\",\n  \"zosen\": \"zos\",\n  \"zotteklap\": \"zotteklap\",\n  \"zou\": \"zou\",\n  \"zouden\": \"zoud\",\n  \"zoùden\": \"zoùd\",\n  \"zoudt\": \"zoudt\",\n  \"zout\": \"zout\",\n  \"zoute\": \"zout\",\n  \"zouten\": \"zout\",\n  \"zouter\": \"zouter\",\n  \"zoutfabriek\": \"zoutfabriek\",\n  \"zoutgehalte\": \"zoutgehalt\",\n  \"zoutkoepels\": \"zoutkoepel\",\n  \"zoutmijn\": \"zoutmijn\",\n  \"zoutproduktie\": \"zoutproduktie\",\n  \"zoutwater\": \"zoutwater\",\n  \"zoutwaterbassin\": \"zoutwaterbassin\",\n  \"zoutwatervis\": \"zoutwatervis\",\n  \"zoutwatervissen\": \"zoutwaterviss\",\n  \"zoutwinning\": \"zoutwinn\",\n  \"zoutzuur\": \"zoutzur\",\n  \"zoutzuurafval\": \"zoutzuurafval\",\n  \"zoutzuurverspilling\": \"zoutzuurverspill\",\n  \"zoutzuurvervuiling\": \"zoutzuurvervuil\",\n  \"zoveel\": \"zovel\",\n  \"zóveel\": \"zovel\",\n  \"zovéel\": \"zovel\",\n  \"zoveelste\": \"zoveelst\",\n  \"zovele\": \"zovel\",\n  \"zovelen\": \"zovel\",\n  \"zover\": \"zover\",\n  \"zoverre\": \"zoverr\",\n  \"zowat\": \"zowat\",\n  \"zowel\": \"zowel\",\n  \"zozeer\": \"zozer\",\n  \"zucht\": \"zucht\",\n  \"zuchten\": \"zucht\",\n  \"zuchtende\": \"zuchtend\",\n  \"zuchtte\": \"zucht\",\n  \"zuid\": \"zuid\",\n  \"zuidafrikaanse\": \"zuidafrikan\",\n  \"zuidafrikanen\": \"zuidafrikan\",\n  \"zuidaziatische\": \"zuidaziatisch\",\n  \"zuidelijk\": \"zuidelijk\",\n  \"zuidelijke\": \"zuidelijk\",\n  \"zuidelijker\": \"zuidelijker\",\n  \"zuiden\": \"zuid\",\n  \"zuidermeerdijk\": \"zuidermeerdijk\",\n  \"zuiderpolderschool\": \"zuiderpolderschol\",\n  \"zuidflank\": \"zuidflank\",\n  \"zuidhessische\": \"zuidhessisch\",\n  \"zuidhollands\": \"zuidholland\",\n  \"zuidhollandse\": \"zuidholland\",\n  \"zuiditaliaanse\": \"zuiditaliaan\",\n  \"zuidkant\": \"zuidkant\",\n  \"zuidkoreaanse\": \"zuidkoreaan\",\n  \"zuidlaardermeer\": \"zuidlaardermer\",\n  \"zuidlimburgers\": \"zuidlimburger\",\n  \"zuidlimburgse\": \"zuidlimburg\",\n  \"zuidnederlandse\": \"zuidnederland\",\n  \"zuidoekraïnse\": \"zuidoekrain\",\n  \"zuidoost\": \"zuidoost\",\n  \"zuidoosten\": \"zuidoost\",\n  \"zuidpoldercomplex\": \"zuidpoldercomplex\",\n  \"zuidpool\": \"zuidpol\",\n  \"zuidwest\": \"zuidwest\",\n  \"zuidwestelijke\": \"zuidwest\",\n  \"zuidwesten\": \"zuidwest\",\n  \"zuidwesthoek\": \"zuidwesthoek\",\n  \"zuidzee\": \"zuidzee\",\n  \"zuidzijde\": \"zuidzijd\",\n  \"zuig\": \"zuig\",\n  \"zuigen\": \"zuig\",\n  \"zuiger\": \"zuiger\",\n  \"zuigmachine\": \"zuigmachin\",\n  \"zuigt\": \"zuigt\",\n  \"zuigwormen\": \"zuigworm\",\n  \"zuil\": \"zuil\",\n  \"zuinig\": \"zuinig\",\n  \"zuinige\": \"zuinig\",\n  \"zuiniger\": \"zuiniger\",\n  \"zuinigere\": \"zuiniger\",\n  \"zuinigheid\": \"zuinig\",\n  \"zuinigjes\": \"zuinigjes\",\n  \"zuinigste\": \"zuinigst\",\n  \"zuivel\": \"zuivel\",\n  \"zuivelfabriek\": \"zuivelfabriek\",\n  \"zuivelindustrie\": \"zuivelindustrie\",\n  \"zuivelinrichtingen\": \"zuivelinricht\",\n  \"zuivelonderneming\": \"zuivelondernem\",\n  \"zuivelprodukten\": \"zuivelprodukt\",\n  \"zuiver\": \"zuiver\",\n  \"zuiveraar\": \"zuiverar\",\n  \"zuiverbaar\": \"zuiver\",\n  \"zuiverder\": \"zuiverder\",\n  \"zuiverders\": \"zuiverder\",\n  \"zuivere\": \"zuiver\",\n  \"zuiveren\": \"zuiver\",\n  \"zuiverheid\": \"zuiver\",\n  \"zuiverheidsstandaarden\": \"zuiverheidsstandaard\",\n  \"zuivering\": \"zuiver\",\n  \"zuiveringen\": \"zuiver\",\n  \"zuiverings\": \"zuiver\",\n  \"zuiveringsbeheer\": \"zuiveringsbeher\",\n  \"zuiveringschap\": \"zuiveringschap\",\n  \"zuiveringschappen\": \"zuiveringschapp\",\n  \"zuiveringsheffing\": \"zuiveringsheff\",\n  \"zuiveringsinstallatie\": \"zuiveringsinstallatie\",\n  \"zuiveringsinstallaties\": \"zuiveringsinstallaties\",\n  \"zuiveringslasten\": \"zuiveringslast\",\n  \"zuiveringsmethode\": \"zuiveringsmethod\",\n  \"zuiveringsproces\": \"zuiveringsproces\",\n  \"zuiveringsprocessen\": \"zuiveringsprocess\",\n  \"zuiveringsresultaten\": \"zuiveringsresultat\",\n  \"zuiveringsschap\": \"zuiveringsschap\",\n  \"zuiveringsslib\": \"zuiveringsslib\",\n  \"zuiveringsstadium\": \"zuiveringsstadium\",\n  \"zuiveringsstation\": \"zuiveringsstation\",\n  \"zuiveringsstations\": \"zuiveringsstation\",\n  \"zuiveringssysteem\": \"zuiveringssystem\",\n  \"zuiveringstechniek\": \"zuiveringstechniek\",\n  \"zuiveringstechnieken\": \"zuiveringstechniek\",\n  \"zuiverste\": \"zuiverst\",\n  \"zuivert\": \"zuivert\",\n  \"zulk\": \"zulk\",\n  \"zulke\": \"zulk\",\n  \"zulks\": \"zulk\",\n  \"zullen\": \"zull\",\n  \"zùllen\": \"zùllen\",\n  \"zult\": \"zult\",\n  \"zum\": \"zum\",\n  \"zure\": \"zur\",\n  \"zuren\": \"zur\",\n  \"zus\": \"zus\",\n  \"zusammenwachsenden\": \"zusammenwachs\",\n  \"zusje\": \"zusj\",\n  \"zusjes\": \"zusjes\",\n  \"zuster\": \"zuster\",\n  \"zusterbedrijf\": \"zusterbedrijf\",\n  \"zusterlijk\": \"zuster\",\n  \"zusterlijke\": \"zuster\",\n  \"zusterlijkheid\": \"zuster\",\n  \"zusterorganisatie\": \"zusterorganisatie\",\n  \"zusterorganisaties\": \"zusterorganisaties\",\n  \"zusters\": \"zuster\",\n  \"zùsters\": \"zùster\",\n  \"zustervereniging\": \"zusterveren\",\n  \"zusterziel\": \"zusterziel\",\n  \"zutphen\": \"zutph\",\n  \"zutphense\": \"zutphen\",\n  \"zuur\": \"zur\",\n  \"zuuraccu\": \"zuuraccu\",\n  \"zuurdepositie\": \"zuurdepositie\",\n  \"zuurgevoelige\": \"zuurgevoel\",\n  \"zuurgraad\": \"zuurgrad\",\n  \"zuurpercentage\": \"zuurpercentag\",\n  \"zuurstof\": \"zuurstof\",\n  \"zuurstofaccu\": \"zuurstofaccu\",\n  \"zuurstofarm\": \"zuurstofarm\",\n  \"zuurstofatoom\": \"zuurstofatom\",\n  \"zuurstofbleking\": \"zuurstofblek\",\n  \"zuurstofdruk\": \"zuurstofdruk\",\n  \"zuurstofgehalte\": \"zuurstofgehalt\",\n  \"zuurstofisotopen\": \"zuurstofisotop\",\n  \"zuurstofloos\": \"zuurstoflos\",\n  \"zuurstofmolecuul\": \"zuurstofmolecul\",\n  \"zuurstofreductie\": \"zuurstofreductie\",\n  \"zuurstofrijke\": \"zuurstofrijk\",\n  \"zuurstofverbruik\": \"zuurstofverbruik\",\n  \"zuurstofvrije\": \"zuurstofvrij\",\n  \"zuurteer\": \"zuurter\",\n  \"zuurwolk\": \"zuurwolk\",\n  \"zw\": \"zw\",\n  \"zwaai\": \"zwaai\",\n  \"zwaaide\": \"zwaaid\",\n  \"zwaaiden\": \"zwaaid\",\n  \"zwaaien\": \"zwaai\",\n  \"zwaaipalen\": \"zwaaipal\",\n  \"zwaan\": \"zwan\",\n  \"zwaans\": \"zwan\",\n  \"zwaar\": \"zwar\",\n  \"zwaaraderige\": \"zwaarader\",\n  \"zwaard\": \"zwaard\",\n  \"zwaarder\": \"zwaarder\",\n  \"zwaardere\": \"zwaarder\",\n  \"zwaarmoedig\": \"zwaarmoed\",\n  \"zwaarspierig\": \"zwaarspier\",\n  \"zwaarste\": \"zwaarst\",\n  \"zwaarte\": \"zwaart\",\n  \"zwaartekracht\": \"zwaartekracht\",\n  \"zwaartekrachtscheiders\": \"zwaartekrachtscheider\",\n  \"zwaartepunt\": \"zwaartepunt\",\n  \"zwaartepunten\": \"zwaartepunt\",\n  \"zwaartillend\": \"zwaartill\",\n  \"zwaarwegend\": \"zwaarweg\",\n  \"zwaarwegende\": \"zwaarweg\",\n  \"zwager\": \"zwager\",\n  \"zwak\": \"zwak\",\n  \"zwakepolder\": \"zwakepolder\",\n  \"zwakhals\": \"zwakhal\",\n  \"zwakheid\": \"zwakheid\",\n  \"zwakjes\": \"zwakjes\",\n  \"zwakke\": \"zwak\",\n  \"zwakken\": \"zwak\",\n  \"zwakker\": \"zwakker\",\n  \"zwakkere\": \"zwakker\",\n  \"zwakte\": \"zwakt\",\n  \"zwammen\": \"zwamm\",\n  \"zwanenburgbaan\": \"zwanenburgban\",\n  \"zwanenwater\": \"zwanenwater\",\n  \"zwanger\": \"zwanger\",\n  \"zwangerschap\": \"zwangerschap\",\n  \"zwapperde\": \"zwapperd\",\n  \"zware\": \"zwar\",\n  \"zwart\": \"zwart\",\n  \"zwartblauwe\": \"zwartblauw\",\n  \"zwarte\": \"zwart\",\n  \"zwarteweg\": \"zwarteweg\",\n  \"zwartige\": \"zwartig\",\n  \"zwavel\": \"zwavel\",\n  \"zwavelaerosolen\": \"zwavelaerosol\",\n  \"zwavelarme\": \"zwavelarm\",\n  \"zwavelberg\": \"zwavelberg\",\n  \"zwaveldioxide\": \"zwaveldioxid\",\n  \"zwaveldioxyde\": \"zwaveldioxyd\",\n  \"zwavelgehalte\": \"zwavelgehalt\",\n  \"zwavelhexafluoride\": \"zwavelhexafluorid\",\n  \"zwavelopslagplaats\": \"zwavelopslagplat\",\n  \"zwaveloxyden\": \"zwaveloxyd\",\n  \"zwaveluitstotende\": \"zwaveluitstot\",\n  \"zwavelverbindingen\": \"zwavelverbind\",\n  \"zwavelverwijdering\": \"zwavelverwijder\",\n  \"zwavelwaterstof\": \"zwavelwaterstof\",\n  \"zwavelzure\": \"zwavelzur\",\n  \"zwavelzuur\": \"zwavelzur\",\n  \"zwavelzuurbad\": \"zwavelzuurbad\",\n  \"zweckverband\": \"zweckverband\",\n  \"zweden\": \"zwed\",\n  \"zweeds\": \"zwed\",\n  \"zweedse\": \"zwed\",\n  \"zweefde\": \"zweefd\",\n  \"zweefden\": \"zweefd\",\n  \"zweeft\": \"zweeft\",\n  \"zweeg\": \"zweg\",\n  \"zweem\": \"zwem\",\n  \"zweemde\": \"zweemd\",\n  \"zweemden\": \"zweemd\",\n  \"zweep\": \"zwep\",\n  \"zweepte\": \"zweept\",\n  \"zweer\": \"zwer\",\n  \"zweet\": \"zwet\",\n  \"zwegen\": \"zweg\",\n  \"zwelbeton\": \"zwelbeton\",\n  \"zwelelementen\": \"zwelelement\",\n  \"zwelgen\": \"zwelg\",\n  \"zwelkleiafdichtingen\": \"zwelkleiafdicht\",\n  \"zwellen\": \"zwell\",\n  \"zwellend\": \"zwellend\",\n  \"zwellende\": \"zwellend\",\n  \"zwelling\": \"zwelling\",\n  \"zwembad\": \"zwembad\",\n  \"zwembaden\": \"zwembad\",\n  \"zwembadsystemen\": \"zwembadsystem\",\n  \"zwembadwater\": \"zwembadwater\",\n  \"zwemen\": \"zwem\",\n  \"zweming\": \"zweming\",\n  \"zwemmen\": \"zwemm\",\n  \"zwemmer\": \"zwemmer\",\n  \"zwemmers\": \"zwemmer\",\n  \"zwemwater\": \"zwemwater\",\n  \"zwengelen\": \"zwengel\",\n  \"zwenkwielen\": \"zwenkwiel\",\n  \"zwepen\": \"zwep\",\n  \"zwepende\": \"zwepend\",\n  \"zweren\": \"zwer\",\n  \"zwerfafval\": \"zwerfafval\",\n  \"zwerftocht\": \"zwerftocht\",\n  \"zwerfvuil\": \"zwerfvuil\",\n  \"zwermen\": \"zwerm\",\n  \"zweten\": \"zwet\",\n  \"zwetsloot\": \"zwetslot\",\n  \"zweven\": \"zwev\",\n  \"zwevend\": \"zwevend\",\n  \"zwevende\": \"zwevend\",\n  \"zweving\": \"zweving\",\n  \"zwiepende\": \"zwiepend\",\n  \"zwiepte\": \"zwiept\",\n  \"zwiepten\": \"zwiept\",\n  \"zwier\": \"zwier\",\n  \"zwierden\": \"zwierd\",\n  \"zwieren\": \"zwier\",\n  \"zwierf\": \"zwierf\",\n  \"zwijgen\": \"zwijg\",\n  \"zwijgend\": \"zwijgend\",\n  \"zwijgende\": \"zwijgend\",\n  \"zwijggeld\": \"zwijggeld\",\n  \"zwijgt\": \"zwijgt\",\n  \"zwijmde\": \"zwijmd\",\n  \"zwijmden\": \"zwijmd\",\n  \"zwijn\": \"zwijn\",\n  \"zwijnen\": \"zwijn\",\n  \"zwikkende\": \"zwikkend\",\n  \"zwinpolder\": \"zwinpolder\",\n  \"zwitser\": \"zwitser\",\n  \"zwitserland\": \"zwitserland\",\n  \"zwitsers\": \"zwitser\",\n  \"zwitserse\": \"zwitser\",\n  \"zwo\": \"zwo\",\n  \"zwoel\": \"zwoel\",\n  \"zwoelde\": \"zwoeld\",\n  \"zwoele\": \"zwoel\",\n  \"zwoelte\": \"zwoelt\",\n  \"zwoer\": \"zwoer\",\n  \"zwoete\": \"zwoet\",\n  \"zwol\": \"zwol\",\n  \"zwolle\": \"zwoll\",\n  \"zwollen\": \"zwoll\",\n  \"zwolse\": \"zwol\",\n  \"zwom\": \"zwom\"\n}"
  },
  {
    "path": "spec/test_data/snowball_no.json",
    "content": "{\n  \"a\": \"a\",\n  \"aabakken\": \"aabakk\",\n  \"aabakkens\": \"aabakk\",\n  \"aarbakke\": \"aarbakk\",\n  \"aarum\": \"aarum\",\n  \"aase\": \"aas\",\n  \"ab\": \"ab\",\n  \"abitanti\": \"abitanti\",\n  \"abitazione\": \"abitazion\",\n  \"ablegøyer\": \"ablegøy\",\n  \"absolutt\": \"absolutt\",\n  \"absorberes\": \"absorber\",\n  \"ad\": \"ad\",\n  \"adgang\": \"adgang\",\n  \"adgangen\": \"adgang\",\n  \"adkomst\": \"adkomst\",\n  \"adkomstdokument\": \"adkomstdokument\",\n  \"adkomstdokumenter\": \"adkomstdokument\",\n  \"adkomsten\": \"adkomst\",\n  \"adlyde\": \"adlyd\",\n  \"adlyder\": \"adlyd\",\n  \"adm\": \"adm\",\n  \"administrasjon\": \"administrasjon\",\n  \"administrasjonen\": \"administrasjon\",\n  \"administrasjonsdepartementet\": \"administrasjonsdepartement\",\n  \"administrasjonskostnadene\": \"administrasjonskostnad\",\n  \"administrativ\": \"administrativ\",\n  \"administrative\": \"administrativ\",\n  \"administrativt\": \"administrativ\",\n  \"administrere\": \"administrer\",\n  \"administrerende\": \"administrer\",\n  \"administreres\": \"administrer\",\n  \"administrert\": \"administrer\",\n  \"adopsjon\": \"adopsjon\",\n  \"adopsjonspenger\": \"adopsjonspeng\",\n  \"adresse\": \"adress\",\n  \"adresser\": \"adress\",\n  \"adskillelse\": \"adskill\",\n  \"adskilt\": \"adskilt\",\n  \"advare\": \"advar\",\n  \"advarselen\": \"advarsel\",\n  \"advart\": \"advart\",\n  \"advokat\": \"advokat\",\n  \"advokatar\": \"advokat\",\n  \"advokatfirmaet\": \"advokatfirma\",\n  \"advokatfullmektig\": \"advokatfullmekt\",\n  \"agder\": \"agd\",\n  \"agenter\": \"agent\",\n  \"agenturer\": \"agentur\",\n  \"aggregeres\": \"aggreger\",\n  \"aggregert\": \"aggreger\",\n  \"agn\": \"agn\",\n  \"agnar\": \"agn\",\n  \"agreement\": \"agreement\",\n  \"ajourføring\": \"ajourføring\",\n  \"akademikerne\": \"akademikern\",\n  \"akademikernes\": \"akademikern\",\n  \"ake\": \"ake\",\n  \"akershus\": \"akershus\",\n  \"akkord\": \"akkord\",\n  \"akkumulerte\": \"akkumuler\",\n  \"akkurat\": \"akkurat\",\n  \"aksept\": \"aksept\",\n  \"akseptabel\": \"akseptabel\",\n  \"akseptabelt\": \"akseptabelt\",\n  \"akseptable\": \"akseptabl\",\n  \"aksepterast\": \"aksepter\",\n  \"akseptere\": \"aksepter\",\n  \"aksepteres\": \"aksepter\",\n  \"akseptert\": \"aksepter\",\n  \"aksjane\": \"aksj\",\n  \"aksjar\": \"aksj\",\n  \"aksje\": \"aksj\",\n  \"aksjeandel\": \"aksjeandel\",\n  \"aksjeavkastning\": \"aksjeavkastning\",\n  \"aksjebrev\": \"aksjebrev\",\n  \"aksjebustader\": \"aksjebustad\",\n  \"aksjeeigar\": \"aksje\",\n  \"aksjeeigarane\": \"aksjeeigar\",\n  \"aksjeeigarar\": \"aksjeeigar\",\n  \"aksjeeigaravtale\": \"aksjeeigaravtal\",\n  \"aksjeeigaren\": \"aksjeeigar\",\n  \"aksjegevinster\": \"aksjegevinst\",\n  \"aksjeinnskot\": \"aksjeinnskot\",\n  \"aksjekapital\": \"aksjekapital\",\n  \"aksjekapitalen\": \"aksjekapital\",\n  \"aksjelov\": \"aksj\",\n  \"aksjelova\": \"aksj\",\n  \"aksjeloven\": \"aksj\",\n  \"aksjelovens\": \"aksj\",\n  \"aksjelovgjeving\": \"aksjelovgjeving\",\n  \"aksjelovgjevinga\": \"aksjelovgjeving\",\n  \"aksjer\": \"aksj\",\n  \"aksjerettslig\": \"aksjeretts\",\n  \"aksjeselskap\": \"aksjeselskap\",\n  \"aksjeselskaper\": \"aksjeselskap\",\n  \"aksjeselskapet\": \"aksjeselskap\",\n  \"aksjeselskapsformen\": \"aksjeselskapsform\",\n  \"aksjeselskapsrettslege\": \"aksjeselskapsretts\",\n  \"aksjonær\": \"aksjonær\",\n  \"aksjonæroppgaver\": \"aksjonæroppgav\",\n  \"aktersetet\": \"akterset\",\n  \"aktes\": \"akt\",\n  \"aktiv\": \"aktiv\",\n  \"aktiva\": \"aktiv\",\n  \"aktivaklasser\": \"aktivaklass\",\n  \"aktivasammensetning\": \"aktivasammensetning\",\n  \"aktive\": \"aktiv\",\n  \"aktivitet\": \"aktivit\",\n  \"aktivitetane\": \"aktivitet\",\n  \"aktivitetar\": \"aktivitet\",\n  \"aktiviteten\": \"aktivitet\",\n  \"aktivitetene\": \"aktivitet\",\n  \"aktiviteter\": \"aktivitet\",\n  \"aktivitetsøkning\": \"aktivitetsøkning\",\n  \"aktivt\": \"aktiv\",\n  \"aktlaust\": \"aktlaust\",\n  \"aktløyse\": \"aktløys\",\n  \"aktsemd\": \"aktsemd\",\n  \"aktsemdplikta\": \"aktsemdplikt\",\n  \"aktualisere\": \"aktualiser\",\n  \"aktuar\": \"aktu\",\n  \"aktuell\": \"aktuell\",\n  \"aktuelle\": \"aktuell\",\n  \"aktuelt\": \"aktuelt\",\n  \"aktør\": \"aktør\",\n  \"aktørane\": \"aktør\",\n  \"aktørar\": \"aktør\",\n  \"aktørene\": \"aktør\",\n  \"aktørenes\": \"aktør\",\n  \"aktørens\": \"aktør\",\n  \"aktører\": \"aktør\",\n  \"aktørers\": \"aktør\",\n  \"aktørgruppe\": \"aktørgrupp\",\n  \"aku\": \"aku\",\n  \"alarmsignalet\": \"alarmsignal\",\n  \"aldeles\": \"aldel\",\n  \"alder\": \"ald\",\n  \"alderdom\": \"alderdom\",\n  \"alderdommen\": \"alderdomm\",\n  \"alderen\": \"alder\",\n  \"alderkilde\": \"alderkild\",\n  \"alderpensjonen\": \"alderpensjon\",\n  \"alderpensjonskapital\": \"alderpensjonskapital\",\n  \"alders\": \"ald\",\n  \"aldersdifferanse\": \"aldersdifferans\",\n  \"aldersforskjellen\": \"aldersforskjell\",\n  \"aldersgrense\": \"aldersgrens\",\n  \"aldersgrensen\": \"aldersgrens\",\n  \"aldersgrensene\": \"aldersgrens\",\n  \"aldersgrupper\": \"aldersgrupp\",\n  \"alderspensjon\": \"alderspensjon\",\n  \"alderspensjonen\": \"alderspensjon\",\n  \"alderspensjoner\": \"alderspensjon\",\n  \"alderspensjonist\": \"alderspensjonist\",\n  \"alderspensjonistene\": \"alderspensjonist\",\n  \"alderspensjonister\": \"alderspensjonist\",\n  \"alderspensjonsforsikring\": \"alderspensjonsforsikring\",\n  \"alderspensjonsforsikringen\": \"alderspensjonsforsikring\",\n  \"alderspensjonsforsikringsavtale\": \"alderspensjonsforsikringsavtal\",\n  \"alderspensjonsforsikringsavtaler\": \"alderspensjonsforsikringsavtal\",\n  \"alderspensjonskapital\": \"alderspensjonskapital\",\n  \"alderspensjonskapitalbevis\": \"alderspensjonskapitalbevis\",\n  \"alderspensjonskapitalen\": \"alderspensjonskapital\",\n  \"alderspensjonskapitalens\": \"alderspensjonskapital\",\n  \"alderspensjonskapitalkontoen\": \"alderspensjonskapitalkonto\",\n  \"alderspensjonskonti\": \"alderspensjonskonti\",\n  \"alderspensjonskonto\": \"alderspensjonskonto\",\n  \"alderspensjonskontoen\": \"alderspensjonskonto\",\n  \"alderspensjonsnivå\": \"alderspensjonsnivå\",\n  \"alderspensjonsordning\": \"alderspensjonsordning\",\n  \"alderspensjonsordninger\": \"alderspensjonsordning\",\n  \"alderspensjonsrettigheter\": \"alderspensjonsrett\",\n  \"alderspensjonsspareavtale\": \"alderspensjonsspareavtal\",\n  \"alderspensjonsytelse\": \"alderspensjonsyt\",\n  \"alderssamansetjinga\": \"alderssamansetjing\",\n  \"aldre\": \"aldr\",\n  \"aldri\": \"aldri\",\n  \"aldringen\": \"aldring\",\n  \"aleine\": \"alein\",\n  \"alene\": \"alen\",\n  \"alf\": \"alf\",\n  \"alfhild\": \"alfhild\",\n  \"all\": \"all\",\n  \"alldeles\": \"alldel\",\n  \"alle\": \"all\",\n  \"aller\": \"all\",\n  \"allerede\": \"aller\",\n  \"allereie\": \"allerei\",\n  \"alles\": \"all\",\n  \"allfader\": \"allfad\",\n  \"alliance\": \"allianc\",\n  \"alliansen\": \"allians\",\n  \"allianser\": \"allians\",\n  \"allierte\": \"allier\",\n  \"allmannyttiga\": \"allmannytt\",\n  \"allmektig\": \"allmekt\",\n  \"allmen\": \"allm\",\n  \"allmenn\": \"allmenn\",\n  \"allmennaksjelova\": \"allmennaksj\",\n  \"allmennaksjeloven\": \"allmennaksj\",\n  \"allmennaksjeselskap\": \"allmennaksjeselskap\",\n  \"allmennaksjeselskaper\": \"allmennaksjeselskap\",\n  \"allmenne\": \"allmenn\",\n  \"allmennhetens\": \"allmenn\",\n  \"allmennspråket\": \"allmennspråk\",\n  \"allmennyttiga\": \"allmennytt\",\n  \"allmennyttige\": \"allmennytt\",\n  \"allment\": \"allment\",\n  \"allmugen\": \"allmug\",\n  \"allsidige\": \"allsid\",\n  \"alltid\": \"alltid\",\n  \"alltids\": \"alltid\",\n  \"allting\": \"allting\",\n  \"almen\": \"alm\",\n  \"almene\": \"alm\",\n  \"almenmerknadene\": \"almenmerknad\",\n  \"almennaksjelovens\": \"almennaksj\",\n  \"almennyttig\": \"almennytt\",\n  \"alminnelig\": \"alminn\",\n  \"alminnelige\": \"alminn\",\n  \"alminnelighet\": \"alminn\",\n  \"alnabru\": \"alnabru\",\n  \"alt\": \"alt\",\n  \"alta\": \"alt\",\n  \"alternativ\": \"alternativ\",\n  \"alternative\": \"alternativ\",\n  \"alternativene\": \"alternativ\",\n  \"alternativer\": \"alternativ\",\n  \"alternativet\": \"alternativ\",\n  \"alternativt\": \"alternativ\",\n  \"alternerer\": \"alterner\",\n  \"altfor\": \"altfor\",\n  \"altoverveiende\": \"altovervei\",\n  \"altså\": \"altså\",\n  \"aluminium\": \"aluminium\",\n  \"alvalde\": \"alvald\",\n  \"alvene\": \"alv\",\n  \"alvenes\": \"alv\",\n  \"alver\": \"alv\",\n  \"alveslekt\": \"alveslekt\",\n  \"alvheim\": \"alvheim\",\n  \"alvim\": \"alvim\",\n  \"alvor\": \"alvor\",\n  \"alvorleg\": \"alvor\",\n  \"alvorlege\": \"alvor\",\n  \"alvorlig\": \"alvor\",\n  \"ambisjonsnivået\": \"ambisjonsnivå\",\n  \"amma\": \"amm\",\n  \"ammas\": \"amm\",\n  \"amsterdam\": \"amsterdam\",\n  \"amtmannsvingen\": \"amtmannsving\",\n  \"an\": \"an\",\n  \"analogt\": \"analogt\",\n  \"analyse\": \"analys\",\n  \"analysen\": \"analys\",\n  \"analysene\": \"analys\",\n  \"analyser\": \"analys\",\n  \"analysere\": \"analyser\",\n  \"analysert\": \"analyser\",\n  \"anbefaler\": \"anbefal\",\n  \"anbefales\": \"anbefal\",\n  \"anbefaling\": \"anbefaling\",\n  \"anbefalingene\": \"anbefaling\",\n  \"anbefalinger\": \"anbefaling\",\n  \"anbefalt\": \"anbefalt\",\n  \"anbefalte\": \"anbefalt\",\n  \"and\": \"and\",\n  \"andamål\": \"andamål\",\n  \"andamålsenlig\": \"andamålsen\",\n  \"andel\": \"andel\",\n  \"andelane\": \"andel\",\n  \"andelar\": \"andel\",\n  \"andeleigar\": \"andel\",\n  \"andeleigarane\": \"andeleigar\",\n  \"andeleigarbok\": \"andeleigarbok\",\n  \"andelen\": \"andel\",\n  \"andelene\": \"andel\",\n  \"andeler\": \"andel\",\n  \"andelsbevis\": \"andelsbevis\",\n  \"andelsbok\": \"andelsbok\",\n  \"andelsboka\": \"andelsbok\",\n  \"andelsboligforening\": \"andelsboligforening\",\n  \"andelsboligforeninger\": \"andelsboligforening\",\n  \"andelsboligorganisation\": \"andelsboligorganisation\",\n  \"andelsboligorganisationer\": \"andelsboligorganisation\",\n  \"andelsbrev\": \"andelsbrev\",\n  \"andelsbrevet\": \"andelsbrev\",\n  \"andelsdokument\": \"andelsdokument\",\n  \"andelseier\": \"andelsei\",\n  \"andelseiere\": \"andelseier\",\n  \"andelseierne\": \"andelseiern\",\n  \"andelseiernes\": \"andelseiern\",\n  \"andelseigar\": \"andels\",\n  \"andelseigarane\": \"andelseigar\",\n  \"andelseigarar\": \"andelseigar\",\n  \"andelseigarbok\": \"andelseigarbok\",\n  \"andelseigarboka\": \"andelseigarbok\",\n  \"andelseigaren\": \"andelseigar\",\n  \"andelseigarens\": \"andelseigar\",\n  \"andelseigarforholdet\": \"andelseigarforhold\",\n  \"andelseigarposisjonen\": \"andelseigarposisjon\",\n  \"andelseigarregister\": \"andelseigarregist\",\n  \"andelseigartal\": \"andelseigartal\",\n  \"andelshaver\": \"andelshav\",\n  \"andelshavers\": \"andelshav\",\n  \"andelsinnskot\": \"andelsinnskot\",\n  \"andelsinnskotet\": \"andelsinnskot\",\n  \"andelsinnskottet\": \"andelsinnskott\",\n  \"andelskapital\": \"andelskapital\",\n  \"andelskapitalen\": \"andelskapital\",\n  \"andelslag\": \"andelslag\",\n  \"andelslaget\": \"andelslag\",\n  \"andelsobligasjonane\": \"andelsobligasjon\",\n  \"andelsobligasjonar\": \"andelsobligasjon\",\n  \"andelsrett\": \"andelsrett\",\n  \"andelsselskaber\": \"andelsselskab\",\n  \"andelsselskapa\": \"andelsselskap\",\n  \"andelssum\": \"andelssum\",\n  \"andelssummen\": \"andelssumm\",\n  \"andelsteikning\": \"andelsteikning\",\n  \"andelsteikninga\": \"andelsteikning\",\n  \"anders\": \"and\",\n  \"anderssen\": \"anderss\",\n  \"andra\": \"andr\",\n  \"andre\": \"andr\",\n  \"andres\": \"andr\",\n  \"andrimne\": \"andrimn\",\n  \"andsynes\": \"andsyn\",\n  \"andvare\": \"andvar\",\n  \"andvarefoss\": \"andvarefoss\",\n  \"aner\": \"aner\",\n  \"anerkjenne\": \"anerkjenn\",\n  \"anerkjente\": \"anerkjent\",\n  \"anføre\": \"anfør\",\n  \"anfører\": \"anfør\",\n  \"anføres\": \"anfør\",\n  \"anført\": \"anført\",\n  \"angerboda\": \"angerbod\",\n  \"angi\": \"angi\",\n  \"angir\": \"angir\",\n  \"angis\": \"angis\",\n  \"angitt\": \"angitt\",\n  \"angitte\": \"angitt\",\n  \"angivelse\": \"angiv\",\n  \"angjeldende\": \"angjeld\",\n  \"angre\": \"angr\",\n  \"angrefrist\": \"angrefrist\",\n  \"angrep\": \"angrep\",\n  \"angrepet\": \"angrep\",\n  \"angrer\": \"angr\",\n  \"angret\": \"angr\",\n  \"angripe\": \"angrip\",\n  \"angriper\": \"angrip\",\n  \"angst\": \"angst\",\n  \"angt\": \"angt\",\n  \"angår\": \"angår\",\n  \"ankler\": \"ankl\",\n  \"ankommer\": \"ankomm\",\n  \"ankre\": \"ankr\",\n  \"anledning\": \"anledning\",\n  \"anledninger\": \"anledning\",\n  \"anlegg\": \"anlegg\",\n  \"anleggene\": \"anlegg\",\n  \"anlegget\": \"anlegg\",\n  \"anleggsmessig\": \"anleggsmess\",\n  \"anleggsmidler\": \"anleggsmidl\",\n  \"anliggende\": \"anligg\",\n  \"anløp\": \"anløp\",\n  \"anløpe\": \"anløp\",\n  \"anløpene\": \"anløp\",\n  \"anløper\": \"anløp\",\n  \"anløpes\": \"anløp\",\n  \"anløpsavgift\": \"anløpsavgift\",\n  \"anløpsfrekvens\": \"anløpsfrekv\",\n  \"anløpshavn\": \"anløpshavn\",\n  \"anløpshavner\": \"anløpshavn\",\n  \"anløpshyppighet\": \"anløpshypp\",\n  \"anløpsmønster\": \"anløpsmønst\",\n  \"anløpsmønstre\": \"anløpsmønstr\",\n  \"anløpspunkter\": \"anløpspunkt\",\n  \"anløpssteder\": \"anløpssted\",\n  \"anløpsutgiftene\": \"anløpsutgift\",\n  \"anmodet\": \"anmod\",\n  \"anna\": \"ann\",\n  \"annan\": \"annan\",\n  \"annaniassen\": \"annaniass\",\n  \"annat\": \"annat\",\n  \"anne\": \"ann\",\n  \"annen\": \"ann\",\n  \"annenhver\": \"annenhv\",\n  \"annenhvert\": \"annenhver\",\n  \"annens\": \"ann\",\n  \"annerledes\": \"annerl\",\n  \"annet\": \"ann\",\n  \"annleis\": \"annleis\",\n  \"ansatt\": \"ansatt\",\n  \"ansatte\": \"ansatt\",\n  \"ansattes\": \"ansatt\",\n  \"anse\": \"ans\",\n  \"ansees\": \"anse\",\n  \"anser\": \"ans\",\n  \"anses\": \"ans\",\n  \"ansett\": \"ansett\",\n  \"ansettelse\": \"ansett\",\n  \"ansettelsen\": \"ansett\",\n  \"ansettelsesforhold\": \"ansettelsesforhold\",\n  \"ansettelsesforholdet\": \"ansettelsesforhold\",\n  \"ansettelseskrav\": \"ansettelseskrav\",\n  \"ansettelsestid\": \"ansettelsestid\",\n  \"ansettes\": \"ansett\",\n  \"ansiennitet\": \"ansiennit\",\n  \"ansienniteten\": \"ansiennitet\",\n  \"ansiennitetsreglar\": \"ansiennitetsregl\",\n  \"ansikt\": \"ansikt\",\n  \"ansiktet\": \"ansikt\",\n  \"anskaffelse\": \"anskaff\",\n  \"anslag\": \"anslag\",\n  \"anslagene\": \"anslag\",\n  \"anslaget\": \"anslag\",\n  \"anslagsvis\": \"anslagsvis\",\n  \"anslå\": \"anslå\",\n  \"anslår\": \"anslår\",\n  \"anslås\": \"anslås\",\n  \"anslått\": \"anslått\",\n  \"anslåtte\": \"anslått\",\n  \"anstrenger\": \"anstreng\",\n  \"ansvar\": \"ansv\",\n  \"ansvaret\": \"ansvar\",\n  \"ansvarleg\": \"ansvar\",\n  \"ansvarlege\": \"ansvar\",\n  \"ansvarlig\": \"ansvar\",\n  \"ansvarlige\": \"ansvar\",\n  \"ansvarliges\": \"ansvar\",\n  \"ansvarsavgrensing\": \"ansvarsavgrensing\",\n  \"ansvarsavgrensinga\": \"ansvarsavgrensing\",\n  \"ansvarsfri\": \"ansvarsfri\",\n  \"ansvarsfritak\": \"ansvarsfritak\",\n  \"ansvarsfråskrivingar\": \"ansvarsfråskriving\",\n  \"ansvarsgrunnlaget\": \"ansvarsgrunnlag\",\n  \"ansvarsinnskot\": \"ansvarsinnskot\",\n  \"ansvarskapital\": \"ansvarskapital\",\n  \"ansvarsområde\": \"ansvarsområd\",\n  \"ansvarspulverisering\": \"ansvarspulverisering\",\n  \"ansvarsregel\": \"ansvarsregel\",\n  \"ansvarsreglar\": \"ansvarsregl\",\n  \"ansvarsreguleringa\": \"ansvarsregulering\",\n  \"ansvarsspørsmåla\": \"ansvarsspørsmål\",\n  \"ant\": \"ant\",\n  \"anta\": \"ant\",\n  \"antagelig\": \"antag\",\n  \"antakelig\": \"antak\",\n  \"antakelse\": \"antak\",\n  \"antakelsen\": \"antak\",\n  \"antakelsene\": \"antak\",\n  \"antakelser\": \"antak\",\n  \"antall\": \"antall\",\n  \"antallet\": \"antall\",\n  \"antar\": \"ant\",\n  \"antas\": \"ant\",\n  \"antatt\": \"antatt\",\n  \"antatte\": \"antatt\",\n  \"anten\": \"ant\",\n  \"antenne\": \"antenn\",\n  \"antenneanlegg\": \"antenneanlegg\",\n  \"antitetisk\": \"antitetisk\",\n  \"antwerpen\": \"antwerp\",\n  \"antydede\": \"antyd\",\n  \"antyder\": \"antyd\",\n  \"antydes\": \"antyd\",\n  \"antydet\": \"antyd\",\n  \"anvende\": \"anv\",\n  \"anvendelse\": \"anvend\",\n  \"anvendelsen\": \"anvend\",\n  \"anvendelser\": \"anvend\",\n  \"anvendelsesområde\": \"anvendelsesområd\",\n  \"anvendelsesområder\": \"anvendelsesområd\",\n  \"anvender\": \"anvend\",\n  \"anvendes\": \"anv\",\n  \"anvendt\": \"anvend\",\n  \"anviser\": \"anvis\",\n  \"anvisning\": \"anvisning\",\n  \"ap\": \"ap\",\n  \"apparat\": \"apparat\",\n  \"april\": \"april\",\n  \"ar\": \"ar\",\n  \"arbeid\": \"arbeid\",\n  \"arbeidast\": \"arbeid\",\n  \"arbeidde\": \"arbeidd\",\n  \"arbeide\": \"arbeid\",\n  \"arbeider\": \"arbeid\",\n  \"arbeidere\": \"arbeider\",\n  \"arbeiderpartiet\": \"arbeiderparti\",\n  \"arbeides\": \"arbeid\",\n  \"arbeidet\": \"arbeid\",\n  \"arbeidgiver\": \"arbeidgiv\",\n  \"arbeids\": \"arbeid\",\n  \"arbeidsavtale\": \"arbeidsavtal\",\n  \"arbeidsavtalen\": \"arbeidsavtal\",\n  \"arbeidsavtalene\": \"arbeidsavtal\",\n  \"arbeidsavtalenes\": \"arbeidsavtal\",\n  \"arbeidsavtaler\": \"arbeidsavtal\",\n  \"arbeidsdag\": \"arbeidsdag\",\n  \"arbeidsdeling\": \"arbeidsdeling\",\n  \"arbeidsdelinga\": \"arbeidsdeling\",\n  \"arbeidsdelingen\": \"arbeidsdeling\",\n  \"arbeidsdepartementet\": \"arbeidsdepartement\",\n  \"arbeidsforhold\": \"arbeidsforhold\",\n  \"arbeidsforholdet\": \"arbeidsforhold\",\n  \"arbeidsfør\": \"arbeidsfør\",\n  \"arbeidsgiver\": \"arbeidsgiv\",\n  \"arbeidsgiveravgift\": \"arbeidsgiveravgift\",\n  \"arbeidsgiveravgiften\": \"arbeidsgiveravgift\",\n  \"arbeidsgivere\": \"arbeidsgiver\",\n  \"arbeidsgiveren\": \"arbeidsgiver\",\n  \"arbeidsgiverens\": \"arbeidsgiver\",\n  \"arbeidsgiverfinansiert\": \"arbeidsgiverfinansier\",\n  \"arbeidsgiverne\": \"arbeidsgivern\",\n  \"arbeidsgiverorganisasjoner\": \"arbeidsgiverorganisasjon\",\n  \"arbeidsgivers\": \"arbeidsgiv\",\n  \"arbeidsgjevar\": \"arbeidsgjev\",\n  \"arbeidsgrunnlag\": \"arbeidsgrunnlag\",\n  \"arbeidsgruppa\": \"arbeidsgrupp\",\n  \"arbeidsgruppas\": \"arbeidsgrupp\",\n  \"arbeidsgruppe\": \"arbeidsgrupp\",\n  \"arbeidsgruppen\": \"arbeidsgrupp\",\n  \"arbeidsgruppens\": \"arbeidsgrupp\",\n  \"arbeidsinnsats\": \"arbeidsinnsat\",\n  \"arbeidsinntekt\": \"arbeidsinntekt\",\n  \"arbeidskapasitet\": \"arbeidskapasit\",\n  \"arbeidskonflikter\": \"arbeidskonflikt\",\n  \"arbeidskontrakt\": \"arbeidskontrakt\",\n  \"arbeidskraft\": \"arbeidskraft\",\n  \"arbeidskraftens\": \"arbeidskraft\",\n  \"arbeidskraftsundersøkelse\": \"arbeidskraftsundersøk\",\n  \"arbeidsliv\": \"arbeidsliv\",\n  \"arbeidslivet\": \"arbeidsliv\",\n  \"arbeidslivets\": \"arbeidsliv\",\n  \"arbeidsløyse\": \"arbeidsløys\",\n  \"arbeidsmarkedet\": \"arbeidsmarked\",\n  \"arbeidsmarkedsbidrag\": \"arbeidsmarkedsbidrag\",\n  \"arbeidsmarkedspensjoner\": \"arbeidsmarkedspensjon\",\n  \"arbeidsmengda\": \"arbeidsmengd\",\n  \"arbeidsmiljøloven\": \"arbeidsmiljø\",\n  \"arbeidsmåte\": \"arbeidsmåt\",\n  \"arbeidsmøter\": \"arbeidsmøt\",\n  \"arbeidsområde\": \"arbeidsområd\",\n  \"arbeidsoppgaver\": \"arbeidsoppgav\",\n  \"arbeidsoppgåver\": \"arbeidsoppgåv\",\n  \"arbeidsopplegg\": \"arbeidsopplegg\",\n  \"arbeidsopplegget\": \"arbeidsopplegg\",\n  \"arbeidsperioden\": \"arbeidsperiod\",\n  \"arbeidsplassar\": \"arbeidsplass\",\n  \"arbeidsplasser\": \"arbeidsplass\",\n  \"arbeidsrelaterte\": \"arbeidsrelater\",\n  \"arbeidsrettslig\": \"arbeidsretts\",\n  \"arbeidsrettslige\": \"arbeidsretts\",\n  \"arbeidssammenheng\": \"arbeidssammenheng\",\n  \"arbeidsstokken\": \"arbeidsstokk\",\n  \"arbeidssøkere\": \"arbeidssøker\",\n  \"arbeidstagere\": \"arbeidstager\",\n  \"arbeidstakar\": \"arbeidstak\",\n  \"arbeidstakarane\": \"arbeidstakar\",\n  \"arbeidstakaren\": \"arbeidstakar\",\n  \"arbeidstaker\": \"arbeidstak\",\n  \"arbeidstakere\": \"arbeidstaker\",\n  \"arbeidstakeren\": \"arbeidstaker\",\n  \"arbeidstakerens\": \"arbeidstaker\",\n  \"arbeidstakeres\": \"arbeidstaker\",\n  \"arbeidstakergrupper\": \"arbeidstakergrupp\",\n  \"arbeidstakerhold\": \"arbeidstakerhold\",\n  \"arbeidstakerne\": \"arbeidstakern\",\n  \"arbeidstakernes\": \"arbeidstakern\",\n  \"arbeidstakerorganisasjonene\": \"arbeidstakerorganisasjon\",\n  \"arbeidstakers\": \"arbeidstak\",\n  \"arbeidstid\": \"arbeidstid\",\n  \"arbeidstilhøve\": \"arbeidstilhøv\",\n  \"arbeidsuke\": \"arbeidsuk\",\n  \"arbeidsutvalg\": \"arbeidsutvalg\",\n  \"arbeidsvilkår\": \"arbeidsvilkår\",\n  \"arbeidsvilkårene\": \"arbeidsvilkår\",\n  \"arbetsinsats\": \"arbetsinsat\",\n  \"areal\": \"areal\",\n  \"arealanvendelse\": \"arealanvend\",\n  \"arealbehov\": \"arealbehov\",\n  \"arealbehovet\": \"arealbehov\",\n  \"arealbruk\": \"arealbruk\",\n  \"arealbruken\": \"arealbruk\",\n  \"arealbruksendring\": \"arealbruksendring\",\n  \"arealbrukskonfliktene\": \"arealbrukskonflikt\",\n  \"arealdel\": \"arealdel\",\n  \"arealdelen\": \"arealdel\",\n  \"arealdelplan\": \"arealdelplan\",\n  \"arealdelplanen\": \"arealdelplan\",\n  \"arealdisponering\": \"arealdisponering\",\n  \"arealeffektiviserende\": \"arealeffektiviser\",\n  \"arealeffektivisering\": \"arealeffektivisering\",\n  \"arealeffektivitet\": \"arealeffektivit\",\n  \"arealene\": \"areal\",\n  \"arealer\": \"areal\",\n  \"arealervervelser\": \"arealerverv\",\n  \"arealet\": \"areal\",\n  \"arealforhold\": \"arealforhold\",\n  \"arealintensiv\": \"arealintensiv\",\n  \"arealkapasiteten\": \"arealkapasitet\",\n  \"arealknapphet\": \"arealknapp\",\n  \"arealkonflikter\": \"arealkonflikt\",\n  \"arealkostnadene\": \"arealkostnad\",\n  \"arealkostnader\": \"arealkostnad\",\n  \"arealkrevende\": \"arealkrev\",\n  \"arealmessig\": \"arealmess\",\n  \"arealmessige\": \"arealmess\",\n  \"arealplanen\": \"arealplan\",\n  \"arealplaner\": \"arealplan\",\n  \"arealplanlegging\": \"arealplanlegging\",\n  \"arealpolitikk\": \"arealpolitikk\",\n  \"arealpolitikken\": \"arealpolitikk\",\n  \"arealproduktivitet\": \"arealproduktivit\",\n  \"arealreguleringstiltak\": \"arealreguleringstiltak\",\n  \"arealreservene\": \"arealreserv\",\n  \"arealressurser\": \"arealressurs\",\n  \"arealsituasjon\": \"arealsituasjon\",\n  \"arealsituasjonen\": \"arealsituasjon\",\n  \"arealspørsmål\": \"arealspørsmål\",\n  \"arealtilgang\": \"arealtilgang\",\n  \"arealtilgangen\": \"arealtilgang\",\n  \"arealtilganger\": \"arealtilgang\",\n  \"arealtilgjengelighet\": \"arealtilgjeng\",\n  \"arealtilskot\": \"arealtilskot\",\n  \"arealutnyttelse\": \"arealutnytt\",\n  \"arealutnyttelsen\": \"arealutnytt\",\n  \"arealutvidelser\": \"arealutvid\",\n  \"arealutvidelsesmuligheter\": \"arealutvidelsesmu\",\n  \"arealverdien\": \"arealverdi\",\n  \"arealøkning\": \"arealøkning\",\n  \"arena\": \"aren\",\n  \"argeste\": \"argest\",\n  \"argument\": \"argument\",\n  \"argumentasjon\": \"argumentasjon\",\n  \"argumentasjonen\": \"argumentasjon\",\n  \"argumentene\": \"argument\",\n  \"argumenter\": \"argument\",\n  \"argumenterer\": \"argumenter\",\n  \"argumenteres\": \"argumenter\",\n  \"argumentet\": \"argument\",\n  \"arm\": \"arm\",\n  \"armbåndet\": \"armbånd\",\n  \"armen\": \"arm\",\n  \"armene\": \"arm\",\n  \"armer\": \"arm\",\n  \"armhulen\": \"armhul\",\n  \"armring\": \"armring\",\n  \"armringer\": \"armring\",\n  \"arne\": \"arn\",\n  \"arnhild\": \"arnhild\",\n  \"arrangerte\": \"arranger\",\n  \"arrest\": \"arrest\",\n  \"arresten\": \"arrest\",\n  \"art\": \"art\",\n  \"arte\": \"art\",\n  \"arten\": \"art\",\n  \"arter\": \"art\",\n  \"artikkel\": \"artikkel\",\n  \"artikkelen\": \"artikkel\",\n  \"artiklene\": \"artikl\",\n  \"arv\": \"arv\",\n  \"arveavgift\": \"arveavgift\",\n  \"arveavgiftslov\": \"arveavgift\",\n  \"arveavgiftsloven\": \"arveavgift\",\n  \"arveavgiftslovgivningen\": \"arveavgiftslovgivning\",\n  \"arveavgiftsmessige\": \"arveavgiftsmess\",\n  \"arveavgiftsreglene\": \"arveavgiftsregl\",\n  \"arveavgiftsutvalgets\": \"arveavgiftsutvalg\",\n  \"arvebuet\": \"arvebu\",\n  \"arvede\": \"arv\",\n  \"arvefall\": \"arvefall\",\n  \"arvefallet\": \"arvefall\",\n  \"arvegangsreglene\": \"arvegangsregl\",\n  \"arvegangsregler\": \"arvegangsregl\",\n  \"arveloven\": \"arv\",\n  \"arven\": \"arv\",\n  \"arveovergangen\": \"arveovergang\",\n  \"arvet\": \"arv\",\n  \"arvetilfella\": \"arvetilfell\",\n  \"arving\": \"arving\",\n  \"arvingane\": \"arving\",\n  \"arvingar\": \"arving\",\n  \"arvingen\": \"arving\",\n  \"arvinger\": \"arving\",\n  \"arvlataren\": \"arvlatar\",\n  \"as\": \"as\",\n  \"asia\": \"asi\",\n  \"asiatiske\": \"asiatisk\",\n  \"ask\": \"ask\",\n  \"aske\": \"ask\",\n  \"askelut\": \"askelut\",\n  \"asken\": \"ask\",\n  \"asker\": \"ask\",\n  \"asketreet\": \"asketre\",\n  \"asl\": \"asl\",\n  \"aspekt\": \"aspekt\",\n  \"aspekter\": \"aspekt\",\n  \"aspektet\": \"aspekt\",\n  \"assev\": \"assev\",\n  \"associazione\": \"associazion\",\n  \"assosiasjoner\": \"assosiasjon\",\n  \"assosierte\": \"assosier\",\n  \"asylsøkjarar\": \"asylsøkjar\",\n  \"asymmetrien\": \"asymmetri\",\n  \"at\": \"at\",\n  \"atferden\": \"atferd\",\n  \"atkomstdokument\": \"atkomstdokument\",\n  \"atkomstdokumentene\": \"atkomstdokument\",\n  \"atkomstdokumentet\": \"atkomstdokument\",\n  \"atskillelse\": \"atskill\",\n  \"atskilt\": \"atskilt\",\n  \"att\": \"att\",\n  \"atten\": \"att\",\n  \"attende\": \"att\",\n  \"attendebetaling\": \"attendebetaling\",\n  \"attendebetalt\": \"attendebetalt\",\n  \"attendeføring\": \"attendeføring\",\n  \"attendekalling\": \"attendekalling\",\n  \"attendelevering\": \"attendelevering\",\n  \"atterhald\": \"atterhald\",\n  \"atterhaldet\": \"atterhald\",\n  \"attest\": \"attest\",\n  \"attestasjonar\": \"attestasjon\",\n  \"attestert\": \"attester\",\n  \"attgjevast\": \"attgjev\",\n  \"attom\": \"attom\",\n  \"attraktiv\": \"attraktiv\",\n  \"attraktive\": \"attraktiv\",\n  \"attraktivitet\": \"attraktivit\",\n  \"attraktivt\": \"attraktiv\",\n  \"attval\": \"attval\",\n  \"au\": \"au\",\n  \"aud\": \"aud\",\n  \"audhumla\": \"audhuml\",\n  \"august\": \"august\",\n  \"auka\": \"auk\",\n  \"aukande\": \"auk\",\n  \"aukar\": \"auk\",\n  \"aukast\": \"auk\",\n  \"auke\": \"auk\",\n  \"auprema\": \"auprem\",\n  \"aurvandil\": \"aurvandil\",\n  \"aurvandils\": \"aurvandil\",\n  \"australia\": \"australi\",\n  \"automatisk\": \"automatisk\",\n  \"autorisasjon\": \"autorisasjon\",\n  \"autorisasjonen\": \"autorisasjon\",\n  \"autorisasjonsordning\": \"autorisasjonsordning\",\n  \"autoriserte\": \"autoriser\",\n  \"av\": \"av\",\n  \"avbrot\": \"avbrot\",\n  \"avbroten\": \"avbrot\",\n  \"avbrytast\": \"avbryt\",\n  \"avbryte\": \"avbryt\",\n  \"avbryter\": \"avbryt\",\n  \"avbøtende\": \"avbøt\",\n  \"avdekke\": \"avdekk\",\n  \"avdekker\": \"avdekk\",\n  \"avdekket\": \"avdekk\",\n  \"avdeling\": \"avdeling\",\n  \"avdelingane\": \"avdeling\",\n  \"avdelingar\": \"avdeling\",\n  \"avdelingsdirektør\": \"avdelingsdirektør\",\n  \"avdempet\": \"avdemp\",\n  \"avdrag\": \"avdrag\",\n  \"avdraga\": \"avdrag\",\n  \"avdragsplanen\": \"avdragsplan\",\n  \"avdød\": \"avdød\",\n  \"avdødes\": \"avdød\",\n  \"averterer\": \"averter\",\n  \"avfall\": \"avfall\",\n  \"avfallshandtering\": \"avfallshandtering\",\n  \"avga\": \"avg\",\n  \"avgang\": \"avgang\",\n  \"avgangsalder\": \"avgangsald\",\n  \"avgangstider\": \"avgangstid\",\n  \"avgi\": \"avgi\",\n  \"avgifer\": \"avgif\",\n  \"avgift\": \"avgift\",\n  \"avgiften\": \"avgift\",\n  \"avgiftene\": \"avgift\",\n  \"avgifter\": \"avgift\",\n  \"avgiftsbestemmelsene\": \"avgiftsbestemm\",\n  \"avgiftsforskrifter\": \"avgiftsforskrift\",\n  \"avgiftsfrie\": \"avgiftsfri\",\n  \"avgiftsfritt\": \"avgiftsfritt\",\n  \"avgiftsinnkreving\": \"avgiftsinnkreving\",\n  \"avgiftsinntektene\": \"avgiftsinntekt\",\n  \"avgiftsmessig\": \"avgiftsmess\",\n  \"avgiftsmessige\": \"avgiftsmess\",\n  \"avgiftsmidlene\": \"avgiftsmidl\",\n  \"avgiftsmidler\": \"avgiftsmidl\",\n  \"avgiftsnivået\": \"avgiftsnivå\",\n  \"avgiftsområder\": \"avgiftsområd\",\n  \"avgiftsplikt\": \"avgiftsplikt\",\n  \"avgiftspliktig\": \"avgiftsplikt\",\n  \"avgiftsreglene\": \"avgiftsregl\",\n  \"avgiftsregulativene\": \"avgiftsregulativ\",\n  \"avgiftsregulativer\": \"avgiftsregulativ\",\n  \"avgiftsspørsmål\": \"avgiftsspørsmål\",\n  \"avgiftssystem\": \"avgiftssystem\",\n  \"avgiftstyper\": \"avgiftstyp\",\n  \"avgir\": \"avgir\",\n  \"avgis\": \"avgis\",\n  \"avgitt\": \"avgitt\",\n  \"avgivelse\": \"avgiv\",\n  \"avgjer\": \"avgj\",\n  \"avgjerande\": \"avgjer\",\n  \"avgjerast\": \"avgjer\",\n  \"avgjerd\": \"avgjerd\",\n  \"avgjerda\": \"avgjerd\",\n  \"avgjerdene\": \"avgjerd\",\n  \"avgjerder\": \"avgjerd\",\n  \"avgjerdskompetansen\": \"avgjerdskompetans\",\n  \"avgjere\": \"avgjer\",\n  \"avgjord\": \"avgjord\",\n  \"avgjort\": \"avgjort\",\n  \"avgjør\": \"avgjør\",\n  \"avgjøre\": \"avgjør\",\n  \"avgjørelse\": \"avgjør\",\n  \"avgjørelsen\": \"avgjør\",\n  \"avgjørelsene\": \"avgjør\",\n  \"avgjørelser\": \"avgjør\",\n  \"avgjørelsesmyndighet\": \"avgjørelsesmynd\",\n  \"avgjørende\": \"avgjør\",\n  \"avgjøres\": \"avgjør\",\n  \"avgrensa\": \"avgrens\",\n  \"avgrensar\": \"avgrens\",\n  \"avgrensast\": \"avgrens\",\n  \"avgrense\": \"avgrens\",\n  \"avgrenser\": \"avgrens\",\n  \"avgrenses\": \"avgrens\",\n  \"avgrenset\": \"avgrens\",\n  \"avgrensing\": \"avgrensing\",\n  \"avgrensinga\": \"avgrensing\",\n  \"avgrensingane\": \"avgrensing\",\n  \"avgrensingar\": \"avgrensing\",\n  \"avgrensinger\": \"avgrensing\",\n  \"avgrensning\": \"avgrensning\",\n  \"avgrunnen\": \"avgrunn\",\n  \"avhenda\": \"avhend\",\n  \"avhendar\": \"avhend\",\n  \"avhendaren\": \"avhendar\",\n  \"avhendast\": \"avhend\",\n  \"avhende\": \"avh\",\n  \"avhending\": \"avhending\",\n  \"avhendinga\": \"avhending\",\n  \"avhendingslova\": \"avhending\",\n  \"avhenge\": \"avheng\",\n  \"avhenger\": \"avheng\",\n  \"avhengig\": \"avheng\",\n  \"avhengige\": \"avheng\",\n  \"avhengighet\": \"avheng\",\n  \"avhjelpast\": \"avhjelp\",\n  \"avhl\": \"avhl\",\n  \"avholdt\": \"avhold\",\n  \"avhugget\": \"avhugg\",\n  \"avis\": \"avis\",\n  \"avisa\": \"avis\",\n  \"avisrom\": \"avisrom\",\n  \"avkall\": \"avkall\",\n  \"avkasting\": \"avkasting\",\n  \"avkastning\": \"avkastning\",\n  \"avkastningen\": \"avkastning\",\n  \"avkastningprosent\": \"avkastningprosent\",\n  \"avkastningsavhengig\": \"avkastningsavheng\",\n  \"avkastningsdeling\": \"avkastningsdeling\",\n  \"avkastningsgaranti\": \"avkastningsgaranti\",\n  \"avkastningsgarantier\": \"avkastningsgaranti\",\n  \"avkastningsgrense\": \"avkastningsgrens\",\n  \"avkastningskatt\": \"avkastningskatt\",\n  \"avkastningsnivå\": \"avkastningsnivå\",\n  \"avkastningsnivåer\": \"avkastningsnivå\",\n  \"avkastningsnivået\": \"avkastningsnivå\",\n  \"avkastningsprosent\": \"avkastningsprosent\",\n  \"avkastningsprosenten\": \"avkastningsprosent\",\n  \"avkastningsrater\": \"avkastningsrat\",\n  \"avkastningsrisiko\": \"avkastningsrisiko\",\n  \"avkastningsskatt\": \"avkastningsskatt\",\n  \"avkastningsskatten\": \"avkastningsskatt\",\n  \"avkastningsusikkerheten\": \"avkastningsusikker\",\n  \"avkjøring\": \"avkjøring\",\n  \"avklare\": \"avklar\",\n  \"avklaring\": \"avklaring\",\n  \"avklart\": \"avklart\",\n  \"avklårast\": \"avklår\",\n  \"avklåre\": \"avklår\",\n  \"avklåring\": \"avklåring\",\n  \"avklåringa\": \"avklåring\",\n  \"avklårt\": \"avklårt\",\n  \"avkortes\": \"avkort\",\n  \"avkorting\": \"avkorting\",\n  \"avkortinga\": \"avkorting\",\n  \"avkuttede\": \"avkutt\",\n  \"avlaste\": \"avlast\",\n  \"avlaster\": \"avlast\",\n  \"avlastning\": \"avlastning\",\n  \"avlastningsbehov\": \"avlastningsbehov\",\n  \"avlastningsbehovet\": \"avlastningsbehov\",\n  \"avlastningshavn\": \"avlastningshavn\",\n  \"avlastningshavner\": \"avlastningshavn\",\n  \"avlastningsløsninger\": \"avlastningsløsning\",\n  \"avlastningstilbudet\": \"avlastningstilbud\",\n  \"avlastningsveg\": \"avlastningsveg\",\n  \"avledes\": \"avl\",\n  \"avledet\": \"avled\",\n  \"avleggjast\": \"avleggj\",\n  \"avleidde\": \"avleidd\",\n  \"avlen\": \"avl\",\n  \"avleverte\": \"avlever\",\n  \"avling\": \"avling\",\n  \"avlønning\": \"avlønning\",\n  \"avløse\": \"avløs\",\n  \"avløsningsbeløp\": \"avløsningsbeløp\",\n  \"avløyst\": \"avløyst\",\n  \"avregningen\": \"avregning\",\n  \"avregninger\": \"avregning\",\n  \"avsa\": \"avs\",\n  \"avsatt\": \"avsatt\",\n  \"avse\": \"avs\",\n  \"avsender\": \"avsend\",\n  \"avsendere\": \"avsender\",\n  \"avsenderfylke\": \"avsenderfylk\",\n  \"avsendersted\": \"avsendersted\",\n  \"avsendinga\": \"avsending\",\n  \"avsetjast\": \"avsetj\",\n  \"avsetjing\": \"avsetjing\",\n  \"avsetjinga\": \"avsetjing\",\n  \"avsetning\": \"avsetning\",\n  \"avsetningar\": \"avsetning\",\n  \"avsetningen\": \"avsetning\",\n  \"avsetninger\": \"avsetning\",\n  \"avsetningsadgang\": \"avsetningsadgang\",\n  \"avsettes\": \"avsett\",\n  \"avsindig\": \"avsind\",\n  \"avskiper\": \"avskip\",\n  \"avskipere\": \"avskiper\",\n  \"avskipssted\": \"avskipssted\",\n  \"avskjere\": \"avskjer\",\n  \"avskjære\": \"avskjær\",\n  \"avskriving\": \"avskriving\",\n  \"avskrivninger\": \"avskrivning\",\n  \"avsky\": \"avsky\",\n  \"avslag\": \"avslag\",\n  \"avslege\": \"avs\",\n  \"avslutningsfase\": \"avslutningsfas\",\n  \"avslutta\": \"avslutt\",\n  \"avsluttar\": \"avslutt\",\n  \"avsluttast\": \"avslutt\",\n  \"avslutte\": \"avslutt\",\n  \"avslutter\": \"avslutt\",\n  \"avsluttes\": \"avslutt\",\n  \"avsluttet\": \"avslutt\",\n  \"avslå\": \"avslå\",\n  \"avsnitt\": \"avsnitt\",\n  \"avsnittene\": \"avsnitt\",\n  \"avsnittet\": \"avsnitt\",\n  \"avspeile\": \"avspeil\",\n  \"avspeiler\": \"avspeil\",\n  \"avstand\": \"avstand\",\n  \"avstanden\": \"avstand\",\n  \"avstander\": \"avstand\",\n  \"avsted\": \"avsted\",\n  \"avstedkommer\": \"avstedkomm\",\n  \"avstemming\": \"avstemming\",\n  \"avstemt\": \"avstemt\",\n  \"avstå\": \"avstå\",\n  \"avstår\": \"avstår\",\n  \"avta\": \"avt\",\n  \"avtakende\": \"avtak\",\n  \"avtala\": \"avtal\",\n  \"avtalane\": \"avtal\",\n  \"avtalar\": \"avtal\",\n  \"avtalast\": \"avtal\",\n  \"avtale\": \"avtal\",\n  \"avtalebrot\": \"avtalebrot\",\n  \"avtaleelementet\": \"avtaleelement\",\n  \"avtaleerverv\": \"avtaleerverv\",\n  \"avtaleervervarar\": \"avtaleervervar\",\n  \"avtaleervervaren\": \"avtaleervervar\",\n  \"avtalefestede\": \"avtalefest\",\n  \"avtaleforhold\": \"avtaleforhold\",\n  \"avtaleforholdet\": \"avtaleforhold\",\n  \"avtalefriheten\": \"avtalefri\",\n  \"avtaleklausul\": \"avtaleklausul\",\n  \"avtaleliknande\": \"avtalelikn\",\n  \"avtalelova\": \"avtal\",\n  \"avtalen\": \"avtal\",\n  \"avtalene\": \"avtal\",\n  \"avtalens\": \"avtal\",\n  \"avtaleområdet\": \"avtaleområd\",\n  \"avtalepant\": \"avtalepant\",\n  \"avtalepanthavarar\": \"avtalepanthavar\",\n  \"avtalepart\": \"avtalepart\",\n  \"avtalepartar\": \"avtalepart\",\n  \"avtalepartene\": \"avtalepart\",\n  \"avtalepraksis\": \"avtalepraksis\",\n  \"avtaler\": \"avtal\",\n  \"avtalereglane\": \"avtaleregl\",\n  \"avtalerett\": \"avtalerett\",\n  \"avtalerettslege\": \"avtaleretts\",\n  \"avtales\": \"avtal\",\n  \"avtalesituasjonen\": \"avtalesituasjon\",\n  \"avtaletida\": \"avtaletid\",\n  \"avtaletidspunktet\": \"avtaletidspunkt\",\n  \"avtaletypar\": \"avtaletyp\",\n  \"avtalpension\": \"avtalpension\",\n  \"avtalt\": \"avtalt\",\n  \"avtalte\": \"avtalt\",\n  \"avtar\": \"avt\",\n  \"avveging\": \"avveging\",\n  \"avveginga\": \"avveging\",\n  \"avveining\": \"avveining\",\n  \"avveiningen\": \"avveining\",\n  \"avvente\": \"avvent\",\n  \"avvik\": \"avvik\",\n  \"avvikande\": \"avvik\",\n  \"avvike\": \"avvik\",\n  \"avvikene\": \"avvik\",\n  \"avviker\": \"avvik\",\n  \"avviket\": \"avvik\",\n  \"avvikla\": \"avvikl\",\n  \"avviklast\": \"avvikl\",\n  \"avvikle\": \"avvikl\",\n  \"avvikler\": \"avvikl\",\n  \"avvikles\": \"avvikl\",\n  \"avviklet\": \"avvikl\",\n  \"avvikling\": \"avvikling\",\n  \"avviklinga\": \"avvikling\",\n  \"avviklingen\": \"avvikling\",\n  \"avviklingsbalanse\": \"avviklingsbalans\",\n  \"avviklingsbuet\": \"avviklingsbu\",\n  \"avviklingsperioden\": \"avviklingsperiod\",\n  \"avviklingsstyre\": \"avviklingsstyr\",\n  \"avviklingsstyret\": \"avviklingsstyr\",\n  \"avviklingstida\": \"avviklingstid\",\n  \"avviklingstyret\": \"avviklingstyr\",\n  \"avviklingsvedtak\": \"avviklingsvedtak\",\n  \"avvisast\": \"avvis\",\n  \"avvist\": \"avvist\",\n  \"avviste\": \"avvist\",\n  \"b\": \"b\",\n  \"ba\": \"ba\",\n  \"babler\": \"babl\",\n  \"bachmann\": \"bachmann\",\n  \"bad\": \"bad\",\n  \"baderom\": \"baderom\",\n  \"baderomsgolv\": \"baderomsgolv\",\n  \"badet\": \"bad\",\n  \"badstue\": \"badstu\",\n  \"badstuen\": \"badstu\",\n  \"bak\": \"bak\",\n  \"bakbena\": \"bakben\",\n  \"baken\": \"bak\",\n  \"bakenfor\": \"bakenfor\",\n  \"bakenforliggende\": \"bakenforligg\",\n  \"bakfoten\": \"bakfot\",\n  \"bakgrunn\": \"bakgrunn\",\n  \"bakgrunnen\": \"bakgrunn\",\n  \"bakgrunnsarbeid\": \"bakgrunnsarbeid\",\n  \"bakgrunnsmaterialet\": \"bakgrunnsmaterial\",\n  \"bakgrunnsregel\": \"bakgrunnsregel\",\n  \"bakgrunnsreglane\": \"bakgrunnsregl\",\n  \"bakgrunnsreglar\": \"bakgrunnsregl\",\n  \"bakhand\": \"bakhand\",\n  \"bakke\": \"bakk\",\n  \"bakkekontakt\": \"bakkekontakt\",\n  \"bakken\": \"bakk\",\n  \"bakkene\": \"bakk\",\n  \"bakkete\": \"bakket\",\n  \"bakketopp\": \"bakketopp\",\n  \"baklandet\": \"bakland\",\n  \"baklengs\": \"bakleng\",\n  \"bakover\": \"bakov\",\n  \"bakre\": \"bakr\",\n  \"bakrus\": \"bakrus\",\n  \"bakser\": \"baks\",\n  \"bakveien\": \"bakvei\",\n  \"balanse\": \"balans\",\n  \"balansen\": \"balans\",\n  \"balansere\": \"balanser\",\n  \"balanserer\": \"balanser\",\n  \"balansert\": \"balanser\",\n  \"balanserte\": \"balanser\",\n  \"balder\": \"bald\",\n  \"balders\": \"bald\",\n  \"balkong\": \"balkong\",\n  \"balkongar\": \"balkong\",\n  \"ball\": \"ball\",\n  \"ballonger\": \"ballong\",\n  \"bamble\": \"bambl\",\n  \"band\": \"band\",\n  \"banda\": \"band\",\n  \"bandt\": \"band\",\n  \"bane\": \"ban\",\n  \"baneforbindelse\": \"baneforbind\",\n  \"banekorridorene\": \"banekorridor\",\n  \"banekorridorer\": \"banekorridor\",\n  \"banemann\": \"banemann\",\n  \"banenett\": \"banenett\",\n  \"banenettet\": \"banenett\",\n  \"banetilknytning\": \"banetilknytning\",\n  \"banetransport\": \"banetransport\",\n  \"bank\": \"bank\",\n  \"bankar\": \"bank\",\n  \"banken\": \"bank\",\n  \"bankenes\": \"bank\",\n  \"banker\": \"bank\",\n  \"bankforening\": \"bankforening\",\n  \"bankgaranti\": \"bankgaranti\",\n  \"bankinnskot\": \"bankinnskot\",\n  \"bankinnskudd\": \"bankinnskudd\",\n  \"bankinnskuddene\": \"bankinnskudd\",\n  \"bankinnskuddet\": \"bankinnskudd\",\n  \"bankkonto\": \"bankkonto\",\n  \"banklovgivingen\": \"banklovgiving\",\n  \"banklovkommisjonen\": \"banklovkommisjon\",\n  \"banksparing\": \"banksparing\",\n  \"banksystemet\": \"banksystem\",\n  \"banner\": \"bann\",\n  \"barbent\": \"barbent\",\n  \"barber\": \"barb\",\n  \"bare\": \"bar\",\n  \"barfot\": \"barfot\",\n  \"barkebit\": \"barkebit\",\n  \"barkebiten\": \"barkebit\",\n  \"barken\": \"bark\",\n  \"barlaup\": \"barlaup\",\n  \"barn\": \"barn\",\n  \"barna\": \"barn\",\n  \"barnas\": \"barn\",\n  \"barndomstraktene\": \"barndomstrakt\",\n  \"barne\": \"barn\",\n  \"barnebarn\": \"barnebarn\",\n  \"barnebarns\": \"barnebarn\",\n  \"barnefamiliar\": \"barnefamili\",\n  \"barnehagar\": \"barnehag\",\n  \"barnehage\": \"barnehag\",\n  \"barnehager\": \"barnehag\",\n  \"barnepass\": \"barnepass\",\n  \"barnepensjon\": \"barnepensjon\",\n  \"barnepensjonen\": \"barnepensjon\",\n  \"barnepensjonens\": \"barnepensjon\",\n  \"barnet\": \"barn\",\n  \"barnetrygd\": \"barnetrygd\",\n  \"barnets\": \"barn\",\n  \"barnløse\": \"barnløs\",\n  \"barre\": \"barr\",\n  \"barten\": \"bart\",\n  \"basbelopp\": \"basbelopp\",\n  \"basehavn\": \"basehavn\",\n  \"basen\": \"bas\",\n  \"basere\": \"baser\",\n  \"baserer\": \"baser\",\n  \"baseres\": \"baser\",\n  \"basert\": \"baser\",\n  \"baserte\": \"baser\",\n  \"basis\": \"basis\",\n  \"basisalternativet\": \"basisalternativ\",\n  \"basisår\": \"basisår\",\n  \"basisåret\": \"basisår\",\n  \"basketak\": \"basketak\",\n  \"bassenget\": \"basseng\",\n  \"bastet\": \"bast\",\n  \"baten\": \"bat\",\n  \"bauge\": \"baug\",\n  \"baugen\": \"baug\",\n  \"bauges\": \"baug\",\n  \"bbl\": \"bbl\",\n  \"be\": \"be\",\n  \"bearbeidede\": \"bearbeid\",\n  \"beboerdemokrati\": \"beboerdemokrati\",\n  \"beboerkantiner\": \"beboerkantin\",\n  \"bebuarane\": \"bebuar\",\n  \"bebuarar\": \"bebuar\",\n  \"bebuardemokrati\": \"bebuardemokrati\",\n  \"bebuaren\": \"bebuar\",\n  \"bebudede\": \"bebud\",\n  \"bebyggelsen\": \"bebygg\",\n  \"bebygget\": \"bebygg\",\n  \"bede\": \"bed\",\n  \"bedre\": \"bedr\",\n  \"bedres\": \"bedr\",\n  \"bedret\": \"bedr\",\n  \"bedrift\": \"bedrift\",\n  \"bedrifta\": \"bedrift\",\n  \"bedriften\": \"bedrift\",\n  \"bedriftene\": \"bedrift\",\n  \"bedriftenes\": \"bedrift\",\n  \"bedriftens\": \"bedrift\",\n  \"bedrifter\": \"bedrift\",\n  \"bedrifters\": \"bedrift\",\n  \"bedriftsforsamling\": \"bedriftsforsamling\",\n  \"bedriftsinterne\": \"bedriftsintern\",\n  \"bedriftsordningen\": \"bedriftsordning\",\n  \"bedriftsstørrelser\": \"bedriftsstørr\",\n  \"bedring\": \"bedring\",\n  \"bedrivas\": \"bedriv\",\n  \"bedt\": \"bedt\",\n  \"bedømme\": \"bedømm\",\n  \"bedømminga\": \"bedømming\",\n  \"bedømt\": \"bedømt\",\n  \"befaler\": \"befal\",\n  \"befaringene\": \"befaring\",\n  \"befaringer\": \"befaring\",\n  \"befinne\": \"befinn\",\n  \"befinner\": \"befinn\",\n  \"befolkede\": \"befolk\",\n  \"befolkningen\": \"befolkning\",\n  \"befolkningens\": \"befolkning\",\n  \"befolkningskonsentrasjon\": \"befolkningskonsentrasjon\",\n  \"befolkningsvekst\": \"befolkningsvekst\",\n  \"befri\": \"befri\",\n  \"begagna\": \"begagn\",\n  \"begeistret\": \"begeistr\",\n  \"beger\": \"beg\",\n  \"begeret\": \"beger\",\n  \"begge\": \"begg\",\n  \"begivenhet\": \"begiven\",\n  \"begjæring\": \"begjæring\",\n  \"begjært\": \"begjært\",\n  \"begrense\": \"begrens\",\n  \"begrensede\": \"begrens\",\n  \"begrenser\": \"begrens\",\n  \"begrenses\": \"begrens\",\n  \"begrenset\": \"begrens\",\n  \"begrensete\": \"begrenset\",\n  \"begrensing\": \"begrensing\",\n  \"begrensinger\": \"begrensing\",\n  \"begrensning\": \"begrensning\",\n  \"begrensningene\": \"begrensning\",\n  \"begrensninger\": \"begrensning\",\n  \"begrensningsregler\": \"begrensningsregl\",\n  \"begrep\": \"begrep\",\n  \"begrepene\": \"begrep\",\n  \"begreper\": \"begrep\",\n  \"begrepet\": \"begrep\",\n  \"begrepsbruk\": \"begrepsbruk\",\n  \"begriper\": \"begrip\",\n  \"begrunne\": \"begrunn\",\n  \"begrunnede\": \"begrunn\",\n  \"begrunnelse\": \"begrunn\",\n  \"begrunnelsen\": \"begrunn\",\n  \"begrunnelsene\": \"begrunn\",\n  \"begrunnelser\": \"begrunn\",\n  \"begrunner\": \"begrunn\",\n  \"begrunnet\": \"begrunn\",\n  \"begunstigede\": \"begunst\",\n  \"begunstigedes\": \"begunst\",\n  \"begunstiget\": \"begunst\",\n  \"begynne\": \"begynn\",\n  \"begynnelse\": \"begynn\",\n  \"begynnelsen\": \"begynn\",\n  \"begynnende\": \"begynn\",\n  \"begynner\": \"begynn\",\n  \"begynt\": \"begynt\",\n  \"begynte\": \"begynt\",\n  \"behag\": \"behag\",\n  \"behandla\": \"behandl\",\n  \"behandlar\": \"behandl\",\n  \"behandlast\": \"behandl\",\n  \"behandle\": \"behandl\",\n  \"behandler\": \"behandl\",\n  \"behandles\": \"behandl\",\n  \"behandlet\": \"behandl\",\n  \"behandling\": \"behandling\",\n  \"behandlinga\": \"behandling\",\n  \"behandlingen\": \"behandling\",\n  \"behandlingsmåte\": \"behandlingsmåt\",\n  \"behandlingspunkter\": \"behandlingspunkt\",\n  \"beheftet\": \"beheft\",\n  \"beherske\": \"behersk\",\n  \"behersker\": \"behersk\",\n  \"behold\": \"behold\",\n  \"beholde\": \"behold\",\n  \"beholder\": \"behold\",\n  \"beholdes\": \"behold\",\n  \"beholdning\": \"beholdning\",\n  \"behov\": \"behov\",\n  \"behova\": \"behov\",\n  \"behovene\": \"behov\",\n  \"behovet\": \"behov\",\n  \"behovsprøvet\": \"behovsprøv\",\n  \"behøver\": \"behøv\",\n  \"behøves\": \"behøv\",\n  \"beinkrok\": \"beinkrok\",\n  \"beist\": \"beist\",\n  \"beistet\": \"beist\",\n  \"beitemarker\": \"beitemark\",\n  \"beitet\": \"beit\",\n  \"bekjempe\": \"bekjemp\",\n  \"bekk\": \"bekk\",\n  \"bekkelaget\": \"bekkelag\",\n  \"bekkelagskai\": \"bekkelagskai\",\n  \"bekkelagskaia\": \"bekkelagskai\",\n  \"bekkelagskaiene\": \"bekkelagskai\",\n  \"bekkelagsområdet\": \"bekkelagsområd\",\n  \"bekostning\": \"bekostning\",\n  \"bekreftelse\": \"bekreft\",\n  \"bekrefter\": \"bekreft\",\n  \"bekymrer\": \"bekymr\",\n  \"bekymret\": \"bekymr\",\n  \"belaste\": \"belast\",\n  \"belastede\": \"belast\",\n  \"belastende\": \"belast\",\n  \"belaster\": \"belast\",\n  \"belastes\": \"belast\",\n  \"belastet\": \"belast\",\n  \"belastning\": \"belastning\",\n  \"belastningen\": \"belastning\",\n  \"belastningene\": \"belastning\",\n  \"belastninger\": \"belastning\",\n  \"belgen\": \"belg\",\n  \"beliggenhet\": \"beliggen\",\n  \"beltestedet\": \"beltested\",\n  \"beltet\": \"belt\",\n  \"belyse\": \"belys\",\n  \"belyses\": \"belys\",\n  \"belyst\": \"belyst\",\n  \"belønne\": \"belønn\",\n  \"beløp\": \"beløp\",\n  \"beløpe\": \"beløp\",\n  \"beløpene\": \"beløp\",\n  \"beløpet\": \"beløp\",\n  \"beløpets\": \"beløp\",\n  \"beløpsbegrenset\": \"beløpsbegrens\",\n  \"beløpsgrense\": \"beløpsgrens\",\n  \"beløpsmessig\": \"beløpsmess\",\n  \"bemerke\": \"bemerk\",\n  \"bemerker\": \"bemerk\",\n  \"bemerket\": \"bemerk\",\n  \"ben\": \"ben\",\n  \"bena\": \"ben\",\n  \"benefits\": \"benefit\",\n  \"benevnes\": \"benevn\",\n  \"benevningene\": \"benevning\",\n  \"benevnt\": \"benevnt\",\n  \"benkene\": \"benk\",\n  \"benkepryd\": \"benkepryd\",\n  \"benker\": \"benk\",\n  \"benkeradene\": \"benkerad\",\n  \"benket\": \"benk\",\n  \"benrester\": \"benrest\",\n  \"bensin\": \"bensin\",\n  \"bensplinter\": \"bensplint\",\n  \"bent\": \"bent\",\n  \"benytte\": \"benytt\",\n  \"benytter\": \"benytt\",\n  \"benyttes\": \"benytt\",\n  \"benyttet\": \"benytt\",\n  \"ber\": \"ber\",\n  \"berande\": \"ber\",\n  \"berar\": \"ber\",\n  \"berast\": \"ber\",\n  \"berdal\": \"berdal\",\n  \"bere\": \"ber\",\n  \"beredskap\": \"beredskap\",\n  \"beredskapsarbeidet\": \"beredskapsarbeid\",\n  \"beredskapshensyn\": \"beredskapshensyn\",\n  \"beredskapsmessig\": \"beredskapsmess\",\n  \"beredskapsmessige\": \"beredskapsmess\",\n  \"beredskapsplanlegging\": \"beredskapsplanlegging\",\n  \"bereevne\": \"bereevn\",\n  \"beregne\": \"beregn\",\n  \"beregnede\": \"beregn\",\n  \"beregner\": \"beregn\",\n  \"beregnes\": \"beregn\",\n  \"beregnet\": \"beregn\",\n  \"beregning\": \"beregning\",\n  \"beregningen\": \"beregning\",\n  \"beregningene\": \"beregning\",\n  \"beregninger\": \"beregning\",\n  \"beregningsarbeidet\": \"beregningsarbeid\",\n  \"beregningsgrunnlag\": \"beregningsgrunnlag\",\n  \"beregningsgrunnlaget\": \"beregningsgrunnlag\",\n  \"beregningsmessig\": \"beregningsmess\",\n  \"beregningsprinsippet\": \"beregningsprinsipp\",\n  \"beregningsrenten\": \"beregningsrent\",\n  \"beregningsresultatene\": \"beregningsresultat\",\n  \"beregningsteknisk\": \"beregningsteknisk\",\n  \"beregningstidspunktet\": \"beregningstidspunkt\",\n  \"berekraftig\": \"berekraft\",\n  \"beretninger\": \"beretning\",\n  \"berette\": \"berett\",\n  \"beretter\": \"berett\",\n  \"berettige\": \"berett\",\n  \"berettigede\": \"berett\",\n  \"berettiger\": \"berett\",\n  \"berettiget\": \"berett\",\n  \"berg\": \"berg\",\n  \"berge\": \"berg\",\n  \"bergelmer\": \"bergelm\",\n  \"bergen\": \"berg\",\n  \"berget\": \"berg\",\n  \"bergets\": \"berg\",\n  \"bergknauser\": \"bergknaus\",\n  \"bergrise\": \"bergris\",\n  \"bergriser\": \"bergris\",\n  \"bergtatt\": \"bergtatt\",\n  \"bero\": \"bero\",\n  \"beror\": \"beror\",\n  \"berre\": \"berr\",\n  \"berserk\": \"berserk\",\n  \"beruset\": \"berus\",\n  \"berømmelse\": \"berømm\",\n  \"berømt\": \"berømt\",\n  \"berøre\": \"berør\",\n  \"berører\": \"berør\",\n  \"berøres\": \"berør\",\n  \"berørt\": \"berørt\",\n  \"berørte\": \"berørt\",\n  \"bes\": \"bes\",\n  \"beseiret\": \"beseir\",\n  \"besk\": \"besk\",\n  \"beskatning\": \"beskatning\",\n  \"beskatningen\": \"beskatning\",\n  \"beskatningsmyndigheten\": \"beskatningsmynd\",\n  \"beskatningsprinsipp\": \"beskatningsprinsipp\",\n  \"beskatningsprinsippet\": \"beskatningsprinsipp\",\n  \"beskatte\": \"beskatt\",\n  \"beskattede\": \"beskatt\",\n  \"beskattes\": \"beskatt\",\n  \"beskattet\": \"beskatt\",\n  \"beskjed\": \"beskjed\",\n  \"beskjeden\": \"beskjed\",\n  \"beskjedent\": \"beskjedent\",\n  \"beskjedne\": \"beskjedn\",\n  \"beskrankninger\": \"beskrankning\",\n  \"beskrevet\": \"beskrev\",\n  \"beskrivast\": \"beskriv\",\n  \"beskrive\": \"beskriv\",\n  \"beskrivelse\": \"beskriv\",\n  \"beskrivelser\": \"beskriv\",\n  \"beskrivende\": \"beskriv\",\n  \"beskriver\": \"beskriv\",\n  \"beskrives\": \"beskriv\",\n  \"beskrivingar\": \"beskriving\",\n  \"beskytte\": \"beskytt\",\n  \"beskytter\": \"beskytt\",\n  \"beslag\": \"beslag\",\n  \"beslutning\": \"beslutning\",\n  \"beslutningen\": \"beslutning\",\n  \"beslutningene\": \"beslutning\",\n  \"beslutninger\": \"beslutning\",\n  \"beslutningsgrunnlag\": \"beslutningsgrunnlag\",\n  \"beslutningskjeden\": \"beslutningskjed\",\n  \"beslutningsmyndighet\": \"beslutningsmynd\",\n  \"beslutningsorganer\": \"beslutningsorgan\",\n  \"beslutningsproblem\": \"beslutningsproblem\",\n  \"beslutningsprosess\": \"beslutningsprosess\",\n  \"beslutningsprosessen\": \"beslutningsprosess\",\n  \"beslutningsrekkefølgen\": \"beslutningsrekkefølg\",\n  \"beslutningsrekkene\": \"beslutningsrekk\",\n  \"beslutningstaker\": \"beslutningstak\",\n  \"beslutningsvariabel\": \"beslutningsvariabel\",\n  \"beslutningsvariabelen\": \"beslutningsvariabel\",\n  \"beslutte\": \"beslutt\",\n  \"besluttende\": \"beslutt\",\n  \"beslutter\": \"beslutt\",\n  \"best\": \"best\",\n  \"bestandig\": \"bestand\",\n  \"beste\": \"best\",\n  \"besteme\": \"bestem\",\n  \"bestemme\": \"bestemm\",\n  \"bestemmelse\": \"bestemm\",\n  \"bestemmelsen\": \"bestemm\",\n  \"bestemmelsene\": \"bestemm\",\n  \"bestemmelsens\": \"bestemm\",\n  \"bestemmelser\": \"bestemm\",\n  \"bestemmelseshavn\": \"bestemmelseshavn\",\n  \"bestemmer\": \"bestemm\",\n  \"bestemmes\": \"bestemm\",\n  \"bestemor\": \"bestemor\",\n  \"bestemt\": \"bestemt\",\n  \"bestemte\": \"bestemt\",\n  \"bestevilkårsprinsippet\": \"bestevilkårsprinsipp\",\n  \"bestille\": \"bestill\",\n  \"bestilling\": \"bestilling\",\n  \"bestla\": \"bestl\",\n  \"besto\": \"besto\",\n  \"bestod\": \"bestod\",\n  \"bestå\": \"bestå\",\n  \"bestående\": \"bestå\",\n  \"består\": \"består\",\n  \"bestått\": \"bestått\",\n  \"besvare\": \"besvar\",\n  \"besvart\": \"besvart\",\n  \"besvergelser\": \"besverg\",\n  \"besvimer\": \"besvim\",\n  \"besøk\": \"besøk\",\n  \"besøke\": \"besøk\",\n  \"besøker\": \"besøk\",\n  \"besøket\": \"besøk\",\n  \"bet\": \"bet\",\n  \"betalast\": \"betal\",\n  \"betale\": \"betal\",\n  \"betaler\": \"betal\",\n  \"betales\": \"betal\",\n  \"betaling\": \"betaling\",\n  \"betalinga\": \"betaling\",\n  \"betalingen\": \"betaling\",\n  \"betalingsblankettar\": \"betalingsblankett\",\n  \"betalingsevne\": \"betalingsevn\",\n  \"betalingsforpliktelser\": \"betalingsforplikt\",\n  \"betalingsmishaldet\": \"betalingsmishald\",\n  \"betalingsperioder\": \"betalingsperiod\",\n  \"betalingsplikt\": \"betalingsplikt\",\n  \"betalingssystema\": \"betalingssystem\",\n  \"betalingstid\": \"betalingstid\",\n  \"betalt\": \"betalt\",\n  \"betalte\": \"betalt\",\n  \"betegnelse\": \"betegn\",\n  \"betegnelsen\": \"betegn\",\n  \"betegner\": \"betegn\",\n  \"betegnes\": \"betegn\",\n  \"betegnet\": \"betegn\",\n  \"betenkte\": \"betenkt\",\n  \"betingede\": \"beting\",\n  \"betingelse\": \"beting\",\n  \"betingelsene\": \"beting\",\n  \"betingelser\": \"beting\",\n  \"betinger\": \"beting\",\n  \"betinget\": \"beting\",\n  \"betjene\": \"betj\",\n  \"betjener\": \"betjen\",\n  \"betjenes\": \"betj\",\n  \"betjening\": \"betjening\",\n  \"betjeningen\": \"betjening\",\n  \"betrakte\": \"betrakt\",\n  \"betraktelig\": \"betrakt\",\n  \"betraktelige\": \"betrakt\",\n  \"betrakter\": \"betrakt\",\n  \"betraktes\": \"betrakt\",\n  \"betraktning\": \"betraktning\",\n  \"betraktningen\": \"betraktning\",\n  \"betraktninger\": \"betraktning\",\n  \"betraktningsmåte\": \"betraktningsmåt\",\n  \"betraktningsmåten\": \"betraktningsmåt\",\n  \"betre\": \"betr\",\n  \"betreffend\": \"betreffend\",\n  \"betrodde\": \"betrodd\",\n  \"betror\": \"betror\",\n  \"betryggende\": \"betrygg\",\n  \"bety\": \"bety\",\n  \"betydeleg\": \"betyd\",\n  \"betydelig\": \"betyd\",\n  \"betydelige\": \"betyd\",\n  \"betydning\": \"betydning\",\n  \"betydningen\": \"betydning\",\n  \"betydninger\": \"betydning\",\n  \"betyr\": \"betyr\",\n  \"beundrer\": \"beundr\",\n  \"beuthien\": \"beuthi\",\n  \"bevegelse\": \"beveg\",\n  \"bevegelsene\": \"beveg\",\n  \"beveger\": \"beveg\",\n  \"bevilge\": \"bevilg\",\n  \"bevilgede\": \"bevilg\",\n  \"bevis\": \"bevis\",\n  \"beviset\": \"bevis\",\n  \"bevisreglar\": \"bevisregl\",\n  \"bevisstløs\": \"bevisstløs\",\n  \"bevøkollen\": \"bevøkoll\",\n  \"bezwecken\": \"bezweck\",\n  \"bhv\": \"bhv\",\n  \"bhvs\": \"bhvs\",\n  \"bibeholder\": \"bibehold\",\n  \"bibliotek\": \"bibliotek\",\n  \"bidra\": \"bidr\",\n  \"bidrag\": \"bidrag\",\n  \"bidraget\": \"bidrag\",\n  \"bidrar\": \"bidr\",\n  \"bidratt\": \"bidratt\",\n  \"bidro\": \"bidro\",\n  \"biene\": \"bien\",\n  \"bifrost\": \"bifrost\",\n  \"bikkje\": \"bikkj\",\n  \"bikkjer\": \"bikkj\",\n  \"bil\": \"bil\",\n  \"bilde\": \"bild\",\n  \"bildene\": \"bild\",\n  \"bilder\": \"bild\",\n  \"bildet\": \"bild\",\n  \"biled\": \"biled\",\n  \"biler\": \"bil\",\n  \"biletet\": \"bilet\",\n  \"bilferjer\": \"bilferj\",\n  \"bilimport\": \"bilimport\",\n  \"bilindustrien\": \"bilindustri\",\n  \"billedspråk\": \"billedspråk\",\n  \"billeg\": \"bil\",\n  \"billettsalg\": \"billettsalg\",\n  \"billig\": \"bil\",\n  \"billigere\": \"billiger\",\n  \"billing\": \"billing\",\n  \"billings\": \"billing\",\n  \"bilskirne\": \"bilskirn\",\n  \"biltrafikk\": \"biltrafikk\",\n  \"biltransport\": \"biltransport\",\n  \"bindande\": \"bind\",\n  \"binde\": \"bind\",\n  \"bindende\": \"bind\",\n  \"binder\": \"bind\",\n  \"bindes\": \"bind\",\n  \"bindinga\": \"binding\",\n  \"bindingen\": \"binding\",\n  \"bindingsliste\": \"bindingslist\",\n  \"bindingslister\": \"bindingslist\",\n  \"bindingstid\": \"bindingstid\",\n  \"bindingstida\": \"bindingstid\",\n  \"bindingstider\": \"bindingstid\",\n  \"bingen\": \"bing\",\n  \"biologisk\": \"biologisk\",\n  \"bisk\": \"bisk\",\n  \"bispevika\": \"bispevik\",\n  \"bisselet\": \"bissel\",\n  \"bistand\": \"bistand\",\n  \"bistert\": \"bister\",\n  \"bistå\": \"bistå\",\n  \"bit\": \"bit\",\n  \"bite\": \"bit\",\n  \"bitene\": \"bit\",\n  \"biter\": \"bit\",\n  \"bitre\": \"bitr\",\n  \"bitt\": \"bitt\",\n  \"bitte\": \"bitt\",\n  \"bitter\": \"bitt\",\n  \"bittert\": \"bitter\",\n  \"bjeff\": \"bjeff\",\n  \"bjeffer\": \"bjeff\",\n  \"bjelkelag\": \"bjelkelag\",\n  \"bjelker\": \"bjelk\",\n  \"bjelkeveggene\": \"bjelkevegg\",\n  \"bjella\": \"bjell\",\n  \"bjerkeris\": \"bjerkeris\",\n  \"bjørn\": \"bjørn\",\n  \"bjørnens\": \"bjørn\",\n  \"bjørvika\": \"bjørvik\",\n  \"bjørvikatunnelen\": \"bjørvikatunnel\",\n  \"bl\": \"bl\",\n  \"bladene\": \"blad\",\n  \"blader\": \"blad\",\n  \"blanda\": \"bland\",\n  \"blandast\": \"bland\",\n  \"blande\": \"bland\",\n  \"blander\": \"bland\",\n  \"blandet\": \"bland\",\n  \"blandingen\": \"blanding\",\n  \"blandingsforma\": \"blandingsform\",\n  \"blandingsformer\": \"blandingsform\",\n  \"blandt\": \"bland\",\n  \"blanke\": \"blank\",\n  \"blankettar\": \"blankett\",\n  \"blant\": \"blant\",\n  \"ble\": \"ble\",\n  \"blek\": \"blek\",\n  \"bleke\": \"blek\",\n  \"blekksprut\": \"blekksprut\",\n  \"blekner\": \"blekn\",\n  \"bli\": \"bli\",\n  \"blikk\": \"blikk\",\n  \"blikket\": \"blikk\",\n  \"blind\": \"blind\",\n  \"blinde\": \"blind\",\n  \"blink\": \"blink\",\n  \"blinker\": \"blink\",\n  \"blir\": \"blir\",\n  \"blitt\": \"blitt\",\n  \"blod\": \"blod\",\n  \"blodbadet\": \"blodbad\",\n  \"blodet\": \"blod\",\n  \"blodfeide\": \"blodfeid\",\n  \"blodig\": \"blod\",\n  \"blodige\": \"blod\",\n  \"blodighov\": \"blodighov\",\n  \"blodskutte\": \"blodskutt\",\n  \"blodsprengte\": \"blodsprengt\",\n  \"blokka\": \"blokk\",\n  \"blokker\": \"blokk\",\n  \"blokkstein\": \"blokkstein\",\n  \"blokktog\": \"blokktog\",\n  \"blokktogavganger\": \"blokktogavgang\",\n  \"blokktogforbindelse\": \"blokktogforbind\",\n  \"blomst\": \"blomst\",\n  \"blomster\": \"blomst\",\n  \"blomsterkranser\": \"blomsterkrans\",\n  \"blond\": \"blond\",\n  \"blunker\": \"blunk\",\n  \"blå\": \"blå\",\n  \"blåfrosne\": \"blåfrosn\",\n  \"blåklokker\": \"blåklokk\",\n  \"blåmalte\": \"blåmalt\",\n  \"blåner\": \"blån\",\n  \"blåse\": \"blås\",\n  \"blåsebelgen\": \"blåsebelg\",\n  \"blåser\": \"blås\",\n  \"blåsingen\": \"blåsing\",\n  \"blåst\": \"blåst\",\n  \"blåsvart\": \"blåsvart\",\n  \"blør\": \"blør\",\n  \"bløt\": \"bløt\",\n  \"bnp\": \"bnp\",\n  \"bo\": \"bo\",\n  \"board\": \"board\",\n  \"bob\": \"bob\",\n  \"bobler\": \"bobl\",\n  \"bod\": \"bod\",\n  \"bodd\": \"bodd\",\n  \"bodet\": \"bod\",\n  \"bodrunden\": \"bodrund\",\n  \"bodø\": \"bodø\",\n  \"boende\": \"boend\",\n  \"boet\": \"boet\",\n  \"boets\": \"boet\",\n  \"boforhold\": \"boforhold\",\n  \"boforholdsundersøkelsen\": \"boforholdsundersøk\",\n  \"boger\": \"bog\",\n  \"boh\": \"boh\",\n  \"bointeresser\": \"bointeress\",\n  \"boka\": \"bok\",\n  \"bokn\": \"bokn\",\n  \"bokreserver\": \"bokreserv\",\n  \"boks\": \"boks\",\n  \"bokstav\": \"bokstav\",\n  \"bokstaver\": \"bokstav\",\n  \"bokstavlig\": \"bokstav\",\n  \"bokstavtro\": \"bokstavtro\",\n  \"bol\": \"bol\",\n  \"bolig\": \"bol\",\n  \"boligarealer\": \"boligareal\",\n  \"boligbebyggelse\": \"boligbebygg\",\n  \"boligbygg\": \"boligbygg\",\n  \"boligbyggelag\": \"boligbyggelag\",\n  \"boligbyggelaget\": \"boligbyggelag\",\n  \"boligbyggelags\": \"boligbyggelag\",\n  \"boligbyggelagsloven\": \"boligbyggelag\",\n  \"boligdekning\": \"boligdekning\",\n  \"boligen\": \"bol\",\n  \"boligene\": \"bol\",\n  \"boliger\": \"bol\",\n  \"boligetablering\": \"boligetablering\",\n  \"boligfeltet\": \"boligfelt\",\n  \"boligfordeling\": \"boligfordeling\",\n  \"boligforetak\": \"boligforetak\",\n  \"boligfællesskaber\": \"boligfællesskab\",\n  \"boligkonsentrasjoner\": \"boligkonsentrasjon\",\n  \"boliglov\": \"bolig\",\n  \"boliglover\": \"bolig\",\n  \"boligmarkedet\": \"boligmarked\",\n  \"boligmassen\": \"boligmass\",\n  \"boligområdene\": \"boligområd\",\n  \"boligområder\": \"boligområd\",\n  \"boligområdet\": \"boligområd\",\n  \"boligpolitikk\": \"boligpolitikk\",\n  \"boligpolitikken\": \"boligpolitikk\",\n  \"boligpolitiske\": \"boligpolitisk\",\n  \"boligsameier\": \"boligsamei\",\n  \"boligsamvirket\": \"boligsamvirk\",\n  \"boligsektoren\": \"boligsektor\",\n  \"boligselskabernes\": \"boligselskabern\",\n  \"boligselskap\": \"boligselskap\",\n  \"boligselskaper\": \"boligselskap\",\n  \"boligsjef\": \"boligsjef\",\n  \"bollingmo\": \"bollingmo\",\n  \"bolt\": \"bolt\",\n  \"bolten\": \"bolt\",\n  \"boltet\": \"bolt\",\n  \"boltorns\": \"boltorn\",\n  \"bolverk\": \"bolverk\",\n  \"bom\": \"bom\",\n  \"bombinga\": \"bombing\",\n  \"bomiljø\": \"bomiljø\",\n  \"bomiljøer\": \"bomiljø\",\n  \"bomiljøet\": \"bomiljø\",\n  \"bommestad\": \"bommestad\",\n  \"bompenger\": \"bompeng\",\n  \"bondekone\": \"bondekon\",\n  \"bonden\": \"bond\",\n  \"bondens\": \"bond\",\n  \"boområder\": \"boområd\",\n  \"boområdet\": \"boområd\",\n  \"bopel\": \"bopel\",\n  \"bor\": \"bor\",\n  \"bord\": \"bord\",\n  \"bordene\": \"bord\",\n  \"bordet\": \"bord\",\n  \"bordkant\": \"bordkant\",\n  \"bordplaten\": \"bordplat\",\n  \"bords\": \"bord\",\n  \"bore\": \"bor\",\n  \"borealis\": \"borealis\",\n  \"borehullet\": \"borehull\",\n  \"boret\": \"bor\",\n  \"borettshaverne\": \"borettshavern\",\n  \"borettslag\": \"borettslag\",\n  \"borettslagene\": \"borettslag\",\n  \"borettslagenes\": \"borettslag\",\n  \"borettslaget\": \"borettslag\",\n  \"borettslagsandel\": \"borettslagsandel\",\n  \"borettslagsandelen\": \"borettslagsandel\",\n  \"borettslagsloven\": \"borettslag\",\n  \"borettsloven\": \"borett\",\n  \"borettslovene\": \"borett\",\n  \"borettslovkomiteen\": \"borettslovkomite\",\n  \"borettslovutvalget\": \"borettslovutvalg\",\n  \"borettsregister\": \"borettsregist\",\n  \"borettsregisteret\": \"borettsregister\",\n  \"borg\": \"borg\",\n  \"borge\": \"borg\",\n  \"borgen\": \"borg\",\n  \"borgere\": \"borger\",\n  \"borgerne\": \"borgern\",\n  \"borgestad\": \"borgestad\",\n  \"borgmuren\": \"borgmur\",\n  \"borgporten\": \"borgport\",\n  \"borgs\": \"borg\",\n  \"born\": \"born\",\n  \"borna\": \"born\",\n  \"borre\": \"borr\",\n  \"borregaard\": \"borregaard\",\n  \"bort\": \"bort\",\n  \"borte\": \"bort\",\n  \"bortenfor\": \"bortenfor\",\n  \"bortfall\": \"bortfall\",\n  \"bortfaller\": \"bortfall\",\n  \"bortfallet\": \"bortfall\",\n  \"bortforklare\": \"bortforklar\",\n  \"borti\": \"borti\",\n  \"bortkomne\": \"bortkomn\",\n  \"bortleige\": \"bortl\",\n  \"bortlån\": \"bortlån\",\n  \"bortsett\": \"bortsett\",\n  \"borttaking\": \"borttaking\",\n  \"bosetter\": \"bosett\",\n  \"bosetting\": \"bosetting\",\n  \"bosettingen\": \"bosetting\",\n  \"bosettingsmønsteret\": \"bosettingsmønster\",\n  \"bostadrattsforeningar\": \"bostadrattsforening\",\n  \"bostadrattsforeninger\": \"bostadrattsforening\",\n  \"bostadsforeningars\": \"bostadsforeningar\",\n  \"bostadsforetag\": \"bostadsforetag\",\n  \"bostadsforetags\": \"bostadsforetag\",\n  \"bostadsratt\": \"bostadsratt\",\n  \"bostadsratter\": \"bostadsratt\",\n  \"bostadsrattforeningar\": \"bostadsrattforening\",\n  \"bostadsratthavare\": \"bostadsratthavar\",\n  \"bostadsrattsforening\": \"bostadsrattsforening\",\n  \"bostadsrattsforeningar\": \"bostadsrattsforening\",\n  \"bostadsrattsforeningarna\": \"bostadsrattsforeningarn\",\n  \"bostadsrattsforeningen\": \"bostadsrattsforening\",\n  \"bostadsrattsforeninger\": \"bostadsrattsforening\",\n  \"bostadsrattshavarna\": \"bostadsrattshavarn\",\n  \"bostadsrattslagen\": \"bostadsrattslag\",\n  \"bostadsrattsregister\": \"bostadsrattsregist\",\n  \"bostadsrattsutredningen\": \"bostadsrattsutredning\",\n  \"bostadsrettsforening\": \"bostadsrettsforening\",\n  \"bot\": \"bot\",\n  \"boten\": \"bot\",\n  \"botnen\": \"botn\",\n  \"botrygghet\": \"botrygg\",\n  \"bottom\": \"bottom\",\n  \"bra\": \"bra\",\n  \"brage\": \"brag\",\n  \"bragernesløpet\": \"bragernesløp\",\n  \"bragernesutløpet\": \"bragernesutløp\",\n  \"bragt\": \"bragt\",\n  \"brak\": \"brak\",\n  \"brakerøya\": \"brakerøy\",\n  \"brakkvann\": \"brakkvann\",\n  \"brann\": \"brann\",\n  \"brannsår\": \"brannsår\",\n  \"branntomt\": \"branntomt\",\n  \"bransjenemnder\": \"bransjenemnd\",\n  \"bransjeorganisasjoner\": \"bransjeorganisasjon\",\n  \"bransjer\": \"bransj\",\n  \"bratsbergbanen\": \"bratsbergban\",\n  \"bratte\": \"bratt\",\n  \"brattegard\": \"brattegard\",\n  \"brattstrom\": \"brattstrom\",\n  \"bred\": \"bred\",\n  \"bredbent\": \"bredbent\",\n  \"bredde\": \"bredd\",\n  \"bredden\": \"bredd\",\n  \"brede\": \"bred\",\n  \"bredere\": \"breder\",\n  \"bredt\": \"bredt\",\n  \"brei\": \"brei\",\n  \"breidablikk\": \"breidablikk\",\n  \"breidd\": \"breidd\",\n  \"breidda\": \"breidd\",\n  \"breie\": \"breie\",\n  \"breitt\": \"breitt\",\n  \"breker\": \"brek\",\n  \"brekke\": \"brekk\",\n  \"bremerhaven\": \"bremerhav\",\n  \"brenn\": \"brenn\",\n  \"brenne\": \"brenn\",\n  \"brennende\": \"brenn\",\n  \"brenner\": \"brenn\",\n  \"brent\": \"brent\",\n  \"brer\": \"brer\",\n  \"brett\": \"brett\",\n  \"bretter\": \"brett\",\n  \"brev\": \"brev\",\n  \"breva\": \"brev\",\n  \"brevik\": \"brevik\",\n  \"breviksterminalen\": \"breviksterminal\",\n  \"brevikstrømmen\": \"brevikstrømm\",\n  \"brevikterminalen\": \"brevikterminal\",\n  \"brime\": \"brim\",\n  \"bring\": \"bring\",\n  \"bringe\": \"bring\",\n  \"bringer\": \"bring\",\n  \"bringes\": \"bring\",\n  \"bringsværd\": \"bringsværd\",\n  \"brisinga\": \"brising\",\n  \"briste\": \"brist\",\n  \"brister\": \"brist\",\n  \"britiske\": \"britisk\",\n  \"brl\": \"brl\",\n  \"bro\": \"bro\",\n  \"broen\": \"broen\",\n  \"brokk\": \"brokk\",\n  \"brokks\": \"brokk\",\n  \"bror\": \"bror\",\n  \"broren\": \"bror\",\n  \"brorparten\": \"brorpart\",\n  \"brors\": \"bror\",\n  \"brot\": \"brot\",\n  \"broten\": \"brot\",\n  \"bru\": \"bru\",\n  \"brua\": \"brua\",\n  \"brualternativet\": \"brualternativ\",\n  \"brud\": \"brud\",\n  \"brudd\": \"brudd\",\n  \"brudeferd\": \"brudeferd\",\n  \"brudegave\": \"brudegav\",\n  \"brudelin\": \"brudelin\",\n  \"brudelinet\": \"brudelin\",\n  \"bruden\": \"brud\",\n  \"brudens\": \"brud\",\n  \"brudeparet\": \"brudepar\",\n  \"brudepike\": \"brudepik\",\n  \"brudepiken\": \"brudepik\",\n  \"bruer\": \"bruer\",\n  \"brugsforeninger\": \"brugsforening\",\n  \"bruk\": \"bruk\",\n  \"brukar\": \"bruk\",\n  \"brukarane\": \"brukar\",\n  \"brukarar\": \"brukar\",\n  \"brukareige\": \"brukar\",\n  \"brukareigeprinsipp\": \"brukareigeprinsipp\",\n  \"brukareigeprinsippet\": \"brukareigeprinsipp\",\n  \"brukaren\": \"brukar\",\n  \"brukarens\": \"brukar\",\n  \"brukarhusstanden\": \"brukarhusstand\",\n  \"brukast\": \"bruk\",\n  \"brukbar\": \"brukb\",\n  \"brukbart\": \"brukbart\",\n  \"bruke\": \"bruk\",\n  \"bruken\": \"bruk\",\n  \"bruker\": \"bruk\",\n  \"brukeravgiftene\": \"brukeravgift\",\n  \"brukere\": \"bruker\",\n  \"brukeren\": \"bruker\",\n  \"brukergrupper\": \"brukergrupp\",\n  \"brukerinteressene\": \"brukerinteress\",\n  \"brukerne\": \"brukern\",\n  \"brukerorganisasjonene\": \"brukerorganisasjon\",\n  \"brukerrepresentanter\": \"brukerrepresentant\",\n  \"brukes\": \"bruk\",\n  \"brukseining\": \"brukseining\",\n  \"bruksnummer\": \"bruksnumm\",\n  \"bruksoverlating\": \"bruksoverlating\",\n  \"bruksoverlatinga\": \"bruksoverlating\",\n  \"bruksovertaking\": \"bruksovertaking\",\n  \"bruksregulering\": \"bruksregulering\",\n  \"bruksrett\": \"bruksrett\",\n  \"bruksrettane\": \"bruksrett\",\n  \"bruksrettar\": \"bruksrett\",\n  \"bruksretten\": \"bruksrett\",\n  \"bruksrettsforhold\": \"bruksrettsforhold\",\n  \"bruksrettsforholdet\": \"bruksrettsforhold\",\n  \"brukt\": \"brukt\",\n  \"brukte\": \"brukt\",\n  \"brummer\": \"brumm\",\n  \"brundtland\": \"brundtland\",\n  \"brune\": \"brun\",\n  \"brunrøde\": \"brunrød\",\n  \"brunst\": \"brunst\",\n  \"brutto\": \"brutto\",\n  \"bruttobeskattes\": \"bruttobeskatt\",\n  \"bruttoformue\": \"bruttoformu\",\n  \"bry\": \"bry\",\n  \"brydd\": \"brydd\",\n  \"bryet\": \"bryet\",\n  \"brygge\": \"brygg\",\n  \"bryggekar\": \"bryggek\",\n  \"bryggekaret\": \"bryggekar\",\n  \"brygger\": \"brygg\",\n  \"brygget\": \"brygg\",\n  \"bryllups\": \"bryllup\",\n  \"bryllupsgjest\": \"bryllupsgjest\",\n  \"bryllupsgjestene\": \"bryllupsgjest\",\n  \"bryllupsreise\": \"bryllupsreis\",\n  \"bryn\": \"bryn\",\n  \"bryne\": \"bryn\",\n  \"brynene\": \"bryn\",\n  \"brynestein\": \"brynestein\",\n  \"brynesten\": \"brynest\",\n  \"brynestenen\": \"brynesten\",\n  \"brynet\": \"bryn\",\n  \"brynje\": \"brynj\",\n  \"brynjekledde\": \"brynjekledd\",\n  \"brynjer\": \"brynj\",\n  \"brynjulv\": \"brynjulv\",\n  \"bryr\": \"bryr\",\n  \"bryst\": \"bryst\",\n  \"brystene\": \"bryst\",\n  \"bryster\": \"bryst\",\n  \"brystet\": \"bryst\",\n  \"bryte\": \"bryt\",\n  \"brytekamp\": \"brytekamp\",\n  \"brytekampen\": \"brytekamp\",\n  \"bryter\": \"bryt\",\n  \"brytes\": \"bryt\",\n  \"brå\": \"brå\",\n  \"bråk\": \"bråk\",\n  \"bråker\": \"bråk\",\n  \"bråket\": \"bråk\",\n  \"bråsinte\": \"bråsint\",\n  \"bråthen\": \"bråth\",\n  \"brått\": \"brått\",\n  \"bråvender\": \"bråvend\",\n  \"bråvåkner\": \"bråvåkn\",\n  \"brød\": \"brød\",\n  \"brødre\": \"brødr\",\n  \"brødrene\": \"brødr\",\n  \"brøkdel\": \"brøkdel\",\n  \"brøken\": \"brøk\",\n  \"brøle\": \"brøl\",\n  \"brøler\": \"brøl\",\n  \"brønn\": \"brønn\",\n  \"brønnen\": \"brønn\",\n  \"brønner\": \"brønn\",\n  \"brønnøysundregistra\": \"brønnøysundregistr\",\n  \"brøt\": \"brøt\",\n  \"bu\": \"bu\",\n  \"buande\": \"buand\",\n  \"bud\": \"bud\",\n  \"budde\": \"budd\",\n  \"budsjett\": \"budsjett\",\n  \"budsjettere\": \"budsjetter\",\n  \"budsjetteringa\": \"budsjettering\",\n  \"budsjettet\": \"budsjett\",\n  \"budsjettproposisjonane\": \"budsjettproposisjon\",\n  \"budsjettsaker\": \"budsjettsak\",\n  \"budskapet\": \"budskap\",\n  \"budt\": \"budt\",\n  \"budtjeneste\": \"budtjenest\",\n  \"bue\": \"bue\",\n  \"buen\": \"buen\",\n  \"buer\": \"buer\",\n  \"bueskyting\": \"bueskyting\",\n  \"bueskytter\": \"bueskytt\",\n  \"buestrengen\": \"buestreng\",\n  \"buet\": \"buet\",\n  \"buffer\": \"buff\",\n  \"buffere\": \"buffer\",\n  \"buform\": \"buform\",\n  \"buformer\": \"buform\",\n  \"buinteressene\": \"buinteress\",\n  \"buinteresser\": \"buinteress\",\n  \"bukke\": \"bukk\",\n  \"bukkekjerra\": \"bukkekjerr\",\n  \"bukkene\": \"bukk\",\n  \"bukker\": \"bukk\",\n  \"bukkeskinnene\": \"bukkeskinn\",\n  \"bukostnadene\": \"bukostnad\",\n  \"buktende\": \"bukt\",\n  \"bukter\": \"bukt\",\n  \"buktet\": \"bukt\",\n  \"buldrende\": \"buldr\",\n  \"buldrer\": \"buldr\",\n  \"bulk\": \"bulk\",\n  \"bulkanlegg\": \"bulkanlegg\",\n  \"bulkfartøyer\": \"bulkfartøy\",\n  \"bulkgods\": \"bulkgod\",\n  \"bulkhavn\": \"bulkhavn\",\n  \"bulkklassifiserte\": \"bulkklassifiser\",\n  \"bulklast\": \"bulkl\",\n  \"bulklaster\": \"bulklast\",\n  \"bulkprodukter\": \"bulkprodukt\",\n  \"bulktrafikken\": \"bulktrafikk\",\n  \"bulktransporter\": \"bulktransport\",\n  \"bulkvare\": \"bulkvar\",\n  \"bulkvarer\": \"bulkvar\",\n  \"bulmeurt\": \"bulmeurt\",\n  \"bumiljø\": \"bumiljø\",\n  \"bumiljøarbeid\": \"bumiljøarbeid\",\n  \"bumiljøet\": \"bumiljø\",\n  \"bumiljøtiltak\": \"bumiljøtiltak\",\n  \"bunde\": \"bund\",\n  \"bunden\": \"bund\",\n  \"bundesverband\": \"bundesverband\",\n  \"bundet\": \"bund\",\n  \"bundne\": \"bundn\",\n  \"bunnen\": \"bunn\",\n  \"bunner\": \"bunn\",\n  \"bunnfradraget\": \"bunnfradrag\",\n  \"bunnløst\": \"bunnløst\",\n  \"bunns\": \"bunn\",\n  \"buofl\": \"buofl\",\n  \"buplikt\": \"buplikt\",\n  \"bur\": \"bur\",\n  \"burde\": \"burd\",\n  \"bure\": \"bur\",\n  \"bures\": \"bur\",\n  \"burett\": \"burett\",\n  \"buretten\": \"burett\",\n  \"burettsbustader\": \"burettsbustad\",\n  \"burettshavar\": \"burettshav\",\n  \"burettshavarane\": \"burettshavar\",\n  \"burettshavarar\": \"burettshavar\",\n  \"burettshavaren\": \"burettshavar\",\n  \"burettshavarinteressene\": \"burettshavarinteress\",\n  \"burettsinnskot\": \"burettsinnskot\",\n  \"burettsinnskota\": \"burettsinnskot\",\n  \"burettslag\": \"burettslag\",\n  \"burettslaga\": \"burettslag\",\n  \"burettslagandel\": \"burettslagandel\",\n  \"burettslagbustader\": \"burettslagbustad\",\n  \"burettslaget\": \"burettslag\",\n  \"burettslagets\": \"burettslag\",\n  \"burettslagsandel\": \"burettslagsandel\",\n  \"burettslagsandelane\": \"burettslagsandel\",\n  \"burettslagsandelar\": \"burettslagsandel\",\n  \"burettslagsandelen\": \"burettslagsandel\",\n  \"burettslagsbustad\": \"burettslagsbustad\",\n  \"burettslagsbustadene\": \"burettslagsbustad\",\n  \"burettslagsbustader\": \"burettslagsbustad\",\n  \"burettslagsforhold\": \"burettslagsforhold\",\n  \"burettslagsforma\": \"burettslagsform\",\n  \"burettslagslov\": \"burettslag\",\n  \"burettslagslova\": \"burettslag\",\n  \"burettslagsmidlar\": \"burettslagsmidl\",\n  \"burettslagsmodell\": \"burettslagsmodell\",\n  \"burettslagsmodellen\": \"burettslagsmodell\",\n  \"burettslov\": \"burett\",\n  \"burettslovene\": \"burett\",\n  \"burettslovgjeving\": \"burettslovgjeving\",\n  \"burettslovgjevinga\": \"burettslovgjeving\",\n  \"burettslovutvalet\": \"burettslovutval\",\n  \"burettsregister\": \"burettsregist\",\n  \"burettsregisteret\": \"burettsregister\",\n  \"buseti\": \"buseti\",\n  \"busituasjon\": \"busituasjon\",\n  \"busituasjonen\": \"busituasjon\",\n  \"busk\": \"busk\",\n  \"buskapen\": \"buskap\",\n  \"busker\": \"busk\",\n  \"buskerud\": \"buskerud\",\n  \"bustad\": \"bustad\",\n  \"bustadaksjeselskap\": \"bustadaksjeselskap\",\n  \"bustadaksjeselskapet\": \"bustadaksjeselskap\",\n  \"bustadar\": \"bustad\",\n  \"bustadbank\": \"bustadbank\",\n  \"bustadbehov\": \"bustadbehov\",\n  \"bustadbehova\": \"bustadbehov\",\n  \"bustadbygg\": \"bustadbygg\",\n  \"bustadbygga\": \"bustadbygg\",\n  \"bustadbygging\": \"bustadbygging\",\n  \"bustadbygginga\": \"bustadbygging\",\n  \"bustadbyggjelag\": \"bustadbyggjelag\",\n  \"bustadbyggjelaga\": \"bustadbyggjelag\",\n  \"bustadbyggjelaget\": \"bustadbyggjelag\",\n  \"bustadbyggjelagsforma\": \"bustadbyggjelagsform\",\n  \"bustadbyggjelagslov\": \"bustadbyggjelag\",\n  \"bustadbyggjelagslova\": \"bustadbyggjelag\",\n  \"bustadbyte\": \"bustadbyt\",\n  \"bustadeigarar\": \"bustadeigar\",\n  \"bustadeigedom\": \"bustadeigedom\",\n  \"bustaden\": \"bustad\",\n  \"bustadene\": \"bustad\",\n  \"bustadeneburetten\": \"bustadeneburett\",\n  \"bustader\": \"bustad\",\n  \"bustadetablering\": \"bustadetablering\",\n  \"bustadfellesskapar\": \"bustadfellesskap\",\n  \"bustadfellesskapen\": \"bustadfellesskap\",\n  \"bustadfinansieringa\": \"bustadfinansiering\",\n  \"bustadforbruket\": \"bustadforbruk\",\n  \"bustadfordelinga\": \"bustadfordeling\",\n  \"bustadforhold\": \"bustadforhold\",\n  \"bustadform\": \"bustadform\",\n  \"bustadformene\": \"bustadform\",\n  \"bustadformer\": \"bustadform\",\n  \"bustadfornying\": \"bustadfornying\",\n  \"bustadforsyning\": \"bustadforsyning\",\n  \"bustadforsyninga\": \"bustadforsyning\",\n  \"bustadforvaltning\": \"bustadforvaltning\",\n  \"bustadforvaltninga\": \"bustadforvaltning\",\n  \"bustadføremål\": \"bustadføremål\",\n  \"bustadføremålet\": \"bustadføremål\",\n  \"bustadføretak\": \"bustadføretak\",\n  \"bustadføretaka\": \"bustadføretak\",\n  \"bustadinndelinga\": \"bustadinndeling\",\n  \"bustadinteressentane\": \"bustadinteressent\",\n  \"bustadinteressenten\": \"bustadinteressent\",\n  \"bustadinteressentskap\": \"bustadinteressentskap\",\n  \"bustadkjøparar\": \"bustadkjøpar\",\n  \"bustadkonsumet\": \"bustadkonsum\",\n  \"bustadkooperasjonen\": \"bustadkooperasjon\",\n  \"bustadkooperativ\": \"bustadkooperativ\",\n  \"bustadkooperativa\": \"bustadkooperativ\",\n  \"bustadkooperative\": \"bustadkooperativ\",\n  \"bustadkooperativet\": \"bustadkooperativ\",\n  \"bustadkooperativt\": \"bustadkooperativ\",\n  \"bustadlause\": \"bustadlaus\",\n  \"bustadleige\": \"bustadl\",\n  \"bustadlov\": \"bustad\",\n  \"bustadlovene\": \"bustad\",\n  \"bustadlovgjevinga\": \"bustadlovgjeving\",\n  \"bustadmarknad\": \"bustadmarknad\",\n  \"bustadmarknaden\": \"bustadmarknad\",\n  \"bustadmasse\": \"bustadmass\",\n  \"bustadmeldingane\": \"bustadmelding\",\n  \"bustadmiljø\": \"bustadmiljø\",\n  \"bustadområde\": \"bustadområd\",\n  \"bustadområdet\": \"bustadområd\",\n  \"bustadomsetninga\": \"bustadomsetning\",\n  \"bustadoppføringslova\": \"bustadoppføring\",\n  \"bustadorganisasjon\": \"bustadorganisasjon\",\n  \"bustadorganisasjonane\": \"bustadorganisasjon\",\n  \"bustadorganisasjonar\": \"bustadorganisasjon\",\n  \"bustadorganisering\": \"bustadorganisering\",\n  \"bustadpolitikk\": \"bustadpolitikk\",\n  \"bustadpolitikken\": \"bustadpolitikk\",\n  \"bustadpolitiske\": \"bustadpolitisk\",\n  \"bustadprisane\": \"bustadpris\",\n  \"bustadproduksjon\": \"bustadproduksjon\",\n  \"bustadproduksjonen\": \"bustadproduksjon\",\n  \"bustadprosjekt\": \"bustadprosjekt\",\n  \"bustadreglane\": \"bustadregl\",\n  \"bustadrett\": \"bustadrett\",\n  \"bustadsamanslutningane\": \"bustadsamanslutning\",\n  \"bustadsameiger\": \"bustadsam\",\n  \"bustadsamvirke\": \"bustadsamvirk\",\n  \"bustadsamvirket\": \"bustadsamvirk\",\n  \"bustadsamvirkets\": \"bustadsamvirk\",\n  \"bustadseksjon\": \"bustadseksjon\",\n  \"bustadseksjonane\": \"bustadseksjon\",\n  \"bustadseksjonar\": \"bustadseksjon\",\n  \"bustadsituasjon\": \"bustadsituasjon\",\n  \"bustadskaffing\": \"bustadskaffing\",\n  \"bustadsosiale\": \"bustadsosial\",\n  \"bustadspørsmåla\": \"bustadspørsmål\",\n  \"bustadstiftingar\": \"bustadstifting\",\n  \"bustadtilbod\": \"bustadtilbod\",\n  \"bustadverksemd\": \"bustadverksemd\",\n  \"bustehode\": \"bustehod\",\n  \"busten\": \"bust\",\n  \"bustønad\": \"bustønad\",\n  \"butikkar\": \"butikk\",\n  \"butilhøva\": \"butilhøv\",\n  \"butilhøve\": \"butilhøv\",\n  \"butt\": \"butt\",\n  \"buutgifter\": \"buutgift\",\n  \"by\": \"by\",\n  \"byane\": \"byan\",\n  \"byar\": \"byar\",\n  \"bybroen\": \"bybro\",\n  \"bydel\": \"bydel\",\n  \"byen\": \"byen\",\n  \"byene\": \"byen\",\n  \"byenes\": \"byen\",\n  \"byens\": \"byen\",\n  \"byer\": \"byer\",\n  \"byformål\": \"byformål\",\n  \"byfornying\": \"byfornying\",\n  \"byfornyinga\": \"byfornying\",\n  \"byfunksjoner\": \"byfunksjon\",\n  \"bygd\": \"bygd\",\n  \"bygda\": \"bygd\",\n  \"bygde\": \"bygd\",\n  \"bygder\": \"bygd\",\n  \"bygg\": \"bygg\",\n  \"bygga\": \"bygg\",\n  \"bygge\": \"bygg\",\n  \"byggemarked\": \"byggemarked\",\n  \"bygger\": \"bygg\",\n  \"bygges\": \"bygg\",\n  \"byggesoner\": \"byggeson\",\n  \"bygget\": \"bygg\",\n  \"byggetrinn\": \"byggetrinn\",\n  \"byggevirksomhet\": \"byggevirksom\",\n  \"byggherre\": \"byggherr\",\n  \"byggherrecentral\": \"byggherrecentral\",\n  \"byggherren\": \"byggherr\",\n  \"byggherreombod\": \"byggherreombod\",\n  \"byggherresida\": \"byggherresid\",\n  \"bygging\": \"bygging\",\n  \"bygginga\": \"bygging\",\n  \"byggjast\": \"byggj\",\n  \"byggje\": \"byggj\",\n  \"byggjebudsjett\": \"byggjebudsjett\",\n  \"byggjebudsjettet\": \"byggjebudsjett\",\n  \"byggjefeil\": \"byggjefeil\",\n  \"byggjefelt\": \"byggjefelt\",\n  \"byggjeforskriftene\": \"byggjeforskrift\",\n  \"byggjeklare\": \"byggjeklar\",\n  \"byggjekostnader\": \"byggjekostnad\",\n  \"byggjelån\": \"byggjelån\",\n  \"byggjematerialar\": \"byggjematerial\",\n  \"byggjeoppdrag\": \"byggjeoppdrag\",\n  \"byggjeperioden\": \"byggjeperiod\",\n  \"byggjeprosess\": \"byggjeprosess\",\n  \"byggjeprosessen\": \"byggjeprosess\",\n  \"byggjeprosjekt\": \"byggjeprosjekt\",\n  \"byggjeprosjekta\": \"byggjeprosjekt\",\n  \"byggjeprosjektet\": \"byggjeprosjekt\",\n  \"byggjer\": \"byggj\",\n  \"byggjerekneskapen\": \"byggjerekneskap\",\n  \"byggjesak\": \"byggjesak\",\n  \"byggjesaka\": \"byggjesak\",\n  \"byggjeskikk\": \"byggjeskikk\",\n  \"byggjestyret\": \"byggjestyr\",\n  \"byggjetekniske\": \"byggjeteknisk\",\n  \"byggjetida\": \"byggjetid\",\n  \"byggjeverksemda\": \"byggjeverksemd\",\n  \"byggkvalitet\": \"byggkvalit\",\n  \"byggmester\": \"byggmest\",\n  \"byggmesteren\": \"byggmester\",\n  \"byggnadsforening\": \"byggnadsforening\",\n  \"byggøkonomi\": \"byggøkonomi\",\n  \"bygning\": \"bygning\",\n  \"bygningar\": \"bygning\",\n  \"bygningen\": \"bygning\",\n  \"bygninger\": \"bygning\",\n  \"bygningsetaten\": \"bygningsetat\",\n  \"bygningsetatens\": \"bygningsetat\",\n  \"bygningskrav\": \"bygningskrav\",\n  \"bygningsloven\": \"bygning\",\n  \"bygningslovens\": \"bygning\",\n  \"bygningslovgjevinga\": \"bygningslovgjeving\",\n  \"bygningsmateriale\": \"bygningsmaterial\",\n  \"bygt\": \"bygt\",\n  \"bykassen\": \"bykass\",\n  \"bykjernen\": \"bykjern\",\n  \"byleist\": \"byleist\",\n  \"bymessig\": \"bymess\",\n  \"bymiljø\": \"bymiljø\",\n  \"byområdene\": \"byområd\",\n  \"byområder\": \"byområd\",\n  \"byområdet\": \"byområd\",\n  \"bypass\": \"bypass\",\n  \"byr\": \"byr\",\n  \"byrden\": \"byrd\",\n  \"byrelaterte\": \"byrelater\",\n  \"byrett\": \"byrett\",\n  \"byrje\": \"byrj\",\n  \"byrådet\": \"byråd\",\n  \"byrådsbehandling\": \"byrådsbehandling\",\n  \"byrådsmøte\": \"byrådsmøt\",\n  \"byrådssak\": \"byrådssak\",\n  \"byrådsvedtak\": \"byrådsvedtak\",\n  \"bys\": \"bys\",\n  \"bysamfunn\": \"bysamfunn\",\n  \"bysamfunnene\": \"bysamfunn\",\n  \"bysamfunnet\": \"bysamfunn\",\n  \"bysentraene\": \"bysentra\",\n  \"byspredning\": \"byspredning\",\n  \"bystruktur\": \"bystruktur\",\n  \"bystrøk\": \"bystrøk\",\n  \"bystyre\": \"bystyr\",\n  \"bystyret\": \"bystyr\",\n  \"bystyrevedtak\": \"bystyrevedtak\",\n  \"bystyrevedtaket\": \"bystyrevedtak\",\n  \"bytast\": \"byt\",\n  \"byte\": \"byt\",\n  \"byteforhold\": \"byteforhold\",\n  \"bytte\": \"bytt\",\n  \"byttet\": \"bytt\",\n  \"byutvikling\": \"byutvikling\",\n  \"byutviklingen\": \"byutvikling\",\n  \"byutviklings\": \"byutvikling\",\n  \"byutviklingsformål\": \"byutviklingsformål\",\n  \"byutviklingsmønster\": \"byutviklingsmønst\",\n  \"byutviklingsområder\": \"byutviklingsområd\",\n  \"byutviklingsplaner\": \"byutviklingsplan\",\n  \"byutviklingstankegang\": \"byutviklingstankegang\",\n  \"både\": \"båd\",\n  \"bål\": \"bål\",\n  \"bålene\": \"bål\",\n  \"bålet\": \"bål\",\n  \"bålferden\": \"bålferd\",\n  \"båløyg\": \"båløyg\",\n  \"bånd\": \"bånd\",\n  \"båndet\": \"bånd\",\n  \"båret\": \"bår\",\n  \"båt\": \"båt\",\n  \"båten\": \"båt\",\n  \"båter\": \"båt\",\n  \"båtplass\": \"båtplass\",\n  \"båtripa\": \"båtrip\",\n  \"bære\": \"bær\",\n  \"bærebjelker\": \"bærebjelk\",\n  \"bæreevne\": \"bæreevn\",\n  \"bærekraftig\": \"bærekraft\",\n  \"bærende\": \"bær\",\n  \"bærer\": \"bær\",\n  \"bæres\": \"bær\",\n  \"bærum\": \"bærum\",\n  \"bøe\": \"bøe\",\n  \"bøen\": \"bøen\",\n  \"bøkene\": \"bøk\",\n  \"bøker\": \"bøk\",\n  \"bølgene\": \"bølg\",\n  \"bølger\": \"bølg\",\n  \"bølgje\": \"bølgj\",\n  \"bønder\": \"bønd\",\n  \"bønnfaller\": \"bønnfall\",\n  \"bønnfalt\": \"bønnfalt\",\n  \"bør\": \"bør\",\n  \"børge\": \"børg\",\n  \"børs\": \"bør\",\n  \"børstet\": \"børst\",\n  \"bøte\": \"bøt\",\n  \"bøter\": \"bøt\",\n  \"bøtter\": \"bøtt\",\n  \"bøyd\": \"bøyd\",\n  \"bøye\": \"bøye\",\n  \"bøyer\": \"bøyer\",\n  \"bøyes\": \"bøyes\",\n  \"bøyet\": \"bøyet\",\n  \"bøyla\": \"bøyl\",\n  \"c\": \"c\",\n  \"ca\": \"ca\",\n  \"cargo\": \"cargo\",\n  \"cargos\": \"cargo\",\n  \"carl\": \"carl\",\n  \"cecodhas\": \"cecodh\",\n  \"cellulose\": \"cellulos\",\n  \"centralforening\": \"centralforening\",\n  \"chilenske\": \"chilensk\",\n  \"christina\": \"christin\",\n  \"christine\": \"christin\",\n  \"cif\": \"cif\",\n  \"clay\": \"clay\",\n  \"cluster\": \"clust\",\n  \"clusteret\": \"cluster\",\n  \"co\": \"co\",\n  \"coloroll\": \"coloroll\",\n  \"com\": \"com\",\n  \"comite\": \"comit\",\n  \"common\": \"common\",\n  \"compensation\": \"compensation\",\n  \"confederazione\": \"confederazion\",\n  \"container\": \"contain\",\n  \"containeraktivitet\": \"containeraktivit\",\n  \"containeraktivitetene\": \"containeraktivitet\",\n  \"containerareal\": \"containerareal\",\n  \"containerarealene\": \"containerareal\",\n  \"containerarealer\": \"containerareal\",\n  \"containerarealet\": \"containerareal\",\n  \"containerdepotene\": \"containerdepot\",\n  \"containere\": \"container\",\n  \"containeren\": \"container\",\n  \"containerfordeling\": \"containerfordeling\",\n  \"containergods\": \"containergod\",\n  \"containergodset\": \"containergods\",\n  \"containerhavn\": \"containerhavn\",\n  \"containerhavnen\": \"containerhavn\",\n  \"containerhavnene\": \"containerhavn\",\n  \"containerhavner\": \"containerhavn\",\n  \"containerhåndtering\": \"containerhåndtering\",\n  \"containerhåndteringen\": \"containerhåndtering\",\n  \"containerhåndteringskapasitet\": \"containerhåndteringskapasit\",\n  \"containerhåndteringsområdet\": \"containerhåndteringsområd\",\n  \"containerisere\": \"containeriser\",\n  \"containerisering\": \"containerisering\",\n  \"containeriseringsgrad\": \"containeriseringsgrad\",\n  \"containeriseringsgraden\": \"containeriseringsgrad\",\n  \"containerisert\": \"containeriser\",\n  \"containeriserte\": \"containeriser\",\n  \"containerkapasitet\": \"containerkapasit\",\n  \"containerkraner\": \"containerkran\",\n  \"containerlast\": \"containerl\",\n  \"containermarkedet\": \"containermarked\",\n  \"containerne\": \"containern\",\n  \"containernes\": \"containern\",\n  \"containeromlasting\": \"containeromlasting\",\n  \"containeromsetning\": \"containeromsetning\",\n  \"containeromslag\": \"containeromslag\",\n  \"containeromslaget\": \"containeromslag\",\n  \"containerrederiene\": \"containerrederi\",\n  \"containerruter\": \"containerrut\",\n  \"containerskip\": \"containerskip\",\n  \"containerskipene\": \"containerskip\",\n  \"containerskipenes\": \"containerskip\",\n  \"containerterminal\": \"containerterminal\",\n  \"containerterminalen\": \"containerterminal\",\n  \"containerterminalene\": \"containerterminal\",\n  \"containerterminaler\": \"containerterminal\",\n  \"containertrafikk\": \"containertrafikk\",\n  \"containertrafikken\": \"containertrafikk\",\n  \"containertransport\": \"containertransport\",\n  \"containertransporten\": \"containertransport\",\n  \"containertransporter\": \"containertransport\",\n  \"containerutstyret\": \"containerutstyr\",\n  \"containervekst\": \"containervekst\",\n  \"containerveksten\": \"containervekst\",\n  \"containervirksomhet\": \"containervirksom\",\n  \"containervirksomheten\": \"containervirksom\",\n  \"containervolum\": \"containervolum\",\n  \"containervolumene\": \"containervolum\",\n  \"containervolumer\": \"containervolum\",\n  \"cooperative\": \"cooperativ\",\n  \"coordination\": \"coordination\",\n  \"cost\": \"cost\",\n  \"cruise\": \"cruis\",\n  \"ctse\": \"ctse\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"dag\": \"dag\",\n  \"dagar\": \"dag\",\n  \"dagbok\": \"dagbok\",\n  \"dagen\": \"dag\",\n  \"dagene\": \"dag\",\n  \"dagens\": \"dag\",\n  \"dager\": \"dag\",\n  \"dagfinn\": \"dagfinn\",\n  \"daggry\": \"daggry\",\n  \"daghjem\": \"daghjem\",\n  \"dagjeldande\": \"dagjeld\",\n  \"dagjeldende\": \"dagjeld\",\n  \"dagleg\": \"dag\",\n  \"daglege\": \"dag\",\n  \"daglig\": \"dag\",\n  \"daglige\": \"dag\",\n  \"dagligliv\": \"dagligliv\",\n  \"dagliglivet\": \"dagligliv\",\n  \"dagligvarer\": \"dagligvar\",\n  \"dagmulkt\": \"dagmulkt\",\n  \"dagslys\": \"dagsly\",\n  \"dagslysbegrensninger\": \"dagslysbegrensning\",\n  \"dagslyset\": \"dagslys\",\n  \"dagtid\": \"dagtid\",\n  \"dal\": \"dal\",\n  \"dalarnas\": \"dalarn\",\n  \"dale\": \"dal\",\n  \"daler\": \"dal\",\n  \"dalsøkk\": \"dalsøkk\",\n  \"dam\": \"dam\",\n  \"damper\": \"damp\",\n  \"danielsen\": \"dani\",\n  \"danmark\": \"danmark\",\n  \"danmarks\": \"danmark\",\n  \"danne\": \"dann\",\n  \"dannelsen\": \"dann\",\n  \"danner\": \"dann\",\n  \"dannes\": \"dann\",\n  \"dannet\": \"dann\",\n  \"dansen\": \"dans\",\n  \"danser\": \"dans\",\n  \"danset\": \"dans\",\n  \"dansk\": \"dansk\",\n  \"danske\": \"dansk\",\n  \"data\": \"dat\",\n  \"database\": \"databas\",\n  \"dataene\": \"data\",\n  \"datainnsamlingsmetode\": \"datainnsamlingsmetod\",\n  \"datamateriale\": \"datamaterial\",\n  \"datasystem\": \"datasystem\",\n  \"datasystema\": \"datasystem\",\n  \"daterast\": \"dater\",\n  \"datere\": \"dater\",\n  \"datert\": \"dater\",\n  \"dato\": \"dato\",\n  \"datoen\": \"dato\",\n  \"datter\": \"datt\",\n  \"datteren\": \"datter\",\n  \"datterselskap\": \"datterselskap\",\n  \"datterselskaper\": \"datterselskap\",\n  \"daværende\": \"davær\",\n  \"de\": \"de\",\n  \"debatt\": \"debatt\",\n  \"debatten\": \"debatt\",\n  \"debitert\": \"debiter\",\n  \"debitor\": \"debitor\",\n  \"dedikerte\": \"dediker\",\n  \"defekte\": \"defekt\",\n  \"definere\": \"definer\",\n  \"definerer\": \"definer\",\n  \"defineres\": \"definer\",\n  \"definert\": \"definer\",\n  \"definerte\": \"definer\",\n  \"definisjon\": \"definisjon\",\n  \"definisjonane\": \"definisjon\",\n  \"definisjonar\": \"definisjon\",\n  \"definisjonen\": \"definisjon\",\n  \"definisjonene\": \"definisjon\",\n  \"definisjoner\": \"definisjon\",\n  \"definitive\": \"definitiv\",\n  \"definitivt\": \"definitiv\",\n  \"deg\": \"deg\",\n  \"dei\": \"dei\",\n  \"deig\": \"deig\",\n  \"deilig\": \"deil\",\n  \"deilige\": \"deil\",\n  \"deiligste\": \"deiligst\",\n  \"deira\": \"deir\",\n  \"deiser\": \"deis\",\n  \"dekar\": \"dek\",\n  \"dekk\": \"dekk\",\n  \"dekke\": \"dekk\",\n  \"dekkende\": \"dekk\",\n  \"dekker\": \"dekk\",\n  \"dekkes\": \"dekk\",\n  \"dekket\": \"dekk\",\n  \"dekkjast\": \"dekkj\",\n  \"dekkje\": \"dekkj\",\n  \"dekkjer\": \"dekkj\",\n  \"dekkshøyde\": \"dekkshøyd\",\n  \"dekning\": \"dekning\",\n  \"dekninga\": \"dekning\",\n  \"dekningen\": \"dekning\",\n  \"dekningslova\": \"dekning\",\n  \"dekningsområde\": \"dekningsområd\",\n  \"dekningsprosent\": \"dekningsprosent\",\n  \"dekningsrett\": \"dekningsrett\",\n  \"dekt\": \"dekt\",\n  \"dekte\": \"dekt\",\n  \"del\": \"del\",\n  \"delar\": \"del\",\n  \"delast\": \"del\",\n  \"dele\": \"del\",\n  \"delegasjon\": \"delegasjon\",\n  \"delegere\": \"deleger\",\n  \"delegering\": \"delegering\",\n  \"delegert\": \"deleger\",\n  \"delegerte\": \"deleger\",\n  \"delegertforsamling\": \"delegertforsamling\",\n  \"delegertordning\": \"delegertordning\",\n  \"delegertordningar\": \"delegertordning\",\n  \"deleige\": \"del\",\n  \"delen\": \"del\",\n  \"delene\": \"del\",\n  \"delentreprisar\": \"delentrepris\",\n  \"deler\": \"del\",\n  \"deles\": \"del\",\n  \"deling\": \"deling\",\n  \"delinga\": \"deling\",\n  \"delingen\": \"deling\",\n  \"delingsforholdet\": \"delingsforhold\",\n  \"delingsreglene\": \"delingsregl\",\n  \"delingsregler\": \"delingsregl\",\n  \"delingstilfella\": \"delingstilfell\",\n  \"delingsåret\": \"delingsår\",\n  \"delje\": \"delj\",\n  \"delkapittel\": \"delkapittel\",\n  \"della\": \"dell\",\n  \"delle\": \"dell\",\n  \"delling\": \"delling\",\n  \"delmål\": \"delmål\",\n  \"delmålene\": \"delmål\",\n  \"delområder\": \"delområd\",\n  \"delplanarbeidet\": \"delplanarbeid\",\n  \"delrapport\": \"delrapport\",\n  \"delrapporter\": \"delrapport\",\n  \"dels\": \"del\",\n  \"delsystemet\": \"delsystem\",\n  \"delt\": \"delt\",\n  \"delta\": \"delt\",\n  \"deltagelse\": \"deltag\",\n  \"deltagende\": \"deltag\",\n  \"deltager\": \"deltag\",\n  \"deltagerforhold\": \"deltagerforhold\",\n  \"deltagerkommunene\": \"deltagerkommun\",\n  \"deltagerkommunenes\": \"deltagerkommun\",\n  \"deltakar\": \"deltak\",\n  \"deltakarane\": \"deltakar\",\n  \"deltakarar\": \"deltakar\",\n  \"deltakartal\": \"deltakartal\",\n  \"deltakelse\": \"deltak\",\n  \"deltakende\": \"deltak\",\n  \"deltaker\": \"deltak\",\n  \"deltakere\": \"deltaker\",\n  \"deltakerforhold\": \"deltakerforhold\",\n  \"deltakerkommunene\": \"deltakerkommun\",\n  \"deltakerkommunenes\": \"deltakerkommun\",\n  \"deltakerlignende\": \"deltakerlign\",\n  \"deltakerne\": \"deltakern\",\n  \"deltaking\": \"deltaking\",\n  \"deltakinga\": \"deltaking\",\n  \"deltar\": \"delt\",\n  \"deltatt\": \"deltatt\",\n  \"delte\": \"delt\",\n  \"deltid\": \"deltid\",\n  \"deltids\": \"deltid\",\n  \"deltidsandel\": \"deltidsandel\",\n  \"deltidsansatte\": \"deltidsansatt\",\n  \"deltidsansattes\": \"deltidsansatt\",\n  \"deltidsarbeidere\": \"deltidsarbeider\",\n  \"deltidsstilling\": \"deltidsstilling\",\n  \"deltok\": \"deltok\",\n  \"delutredning\": \"delutredning\",\n  \"delutredninger\": \"delutredning\",\n  \"delvis\": \"delvis\",\n  \"dem\": \"dem\",\n  \"demmes\": \"demm\",\n  \"demokrati\": \"demokrati\",\n  \"demokratisk\": \"demokratisk\",\n  \"demokratiske\": \"demokratisk\",\n  \"demper\": \"demp\",\n  \"demre\": \"demr\",\n  \"den\": \"den\",\n  \"denger\": \"deng\",\n  \"denne\": \"denn\",\n  \"dennes\": \"denn\",\n  \"denofa\": \"denof\",\n  \"dens\": \"den\",\n  \"departement\": \"departement\",\n  \"departementene\": \"departement\",\n  \"departementer\": \"departement\",\n  \"departementet\": \"departement\",\n  \"departementets\": \"departement\",\n  \"deponerast\": \"deponer\",\n  \"deponere\": \"deponer\",\n  \"deponerer\": \"deponer\",\n  \"deponering\": \"deponering\",\n  \"deponeringslova\": \"deponering\",\n  \"deponeringsordning\": \"deponeringsordning\",\n  \"depot\": \"depot\",\n  \"depoter\": \"depot\",\n  \"depothold\": \"depothold\",\n  \"depotholdet\": \"depothold\",\n  \"depotsted\": \"depotsted\",\n  \"der\": \"der\",\n  \"dere\": \"der\",\n  \"deres\": \"der\",\n  \"deretter\": \"derett\",\n  \"derfor\": \"derfor\",\n  \"derfra\": \"derfr\",\n  \"derfrå\": \"derfrå\",\n  \"derigjennom\": \"derigjennom\",\n  \"derimot\": \"derimot\",\n  \"dermed\": \"dermed\",\n  \"dernest\": \"dernest\",\n  \"dersom\": \"dersom\",\n  \"dertil\": \"dertil\",\n  \"derunder\": \"derund\",\n  \"derved\": \"derved\",\n  \"des\": \"des\",\n  \"desember\": \"desemb\",\n  \"desentralisert\": \"desentraliser\",\n  \"desse\": \"dess\",\n  \"dessutan\": \"dessutan\",\n  \"dessuten\": \"dessut\",\n  \"destinasjon\": \"destinasjon\",\n  \"destinasjoner\": \"destinasjon\",\n  \"destinasjonsmønstre\": \"destinasjonsmønstr\",\n  \"desto\": \"desto\",\n  \"det\": \"det\",\n  \"detalj\": \"detalj\",\n  \"detaljane\": \"detalj\",\n  \"detaljeringsgrad\": \"detaljeringsgrad\",\n  \"detaljert\": \"detaljer\",\n  \"detaljerte\": \"detaljer\",\n  \"detaljleddet\": \"detaljledd\",\n  \"detaljregulere\": \"detaljreguler\",\n  \"detaljregulert\": \"detaljreguler\",\n  \"dets\": \"det\",\n  \"detta\": \"dett\",\n  \"dette\": \"dett\",\n  \"deutscher\": \"deutsch\",\n  \"dfds\": \"dfds\",\n  \"dh\": \"dh\",\n  \"di\": \"di\",\n  \"dialog\": \"dialog\",\n  \"die\": \"die\",\n  \"differanse\": \"differans\",\n  \"differansen\": \"differans\",\n  \"differanser\": \"differans\",\n  \"differensierte\": \"differensier\",\n  \"diger\": \"dig\",\n  \"digert\": \"diger\",\n  \"digre\": \"digr\",\n  \"dikte\": \"dikt\",\n  \"diktere\": \"dikter\",\n  \"dikteren\": \"dikter\",\n  \"dikteres\": \"dikter\",\n  \"dikterkunstens\": \"dikterkunst\",\n  \"dilemma\": \"dilemm\",\n  \"diltende\": \"dilt\",\n  \"dimensjoner\": \"dimensjon\",\n  \"dimensjonerende\": \"dimensjoner\",\n  \"dimensjonering\": \"dimensjonering\",\n  \"din\": \"din\",\n  \"dine\": \"din\",\n  \"dingler\": \"dingl\",\n  \"dir\": \"dir\",\n  \"direkte\": \"direkt\",\n  \"direktekrav\": \"direktekrav\",\n  \"direktekravsregel\": \"direktekravsregel\",\n  \"direkteutdelingar\": \"direkteutdeling\",\n  \"direktiv\": \"direktiv\",\n  \"direktivbestemmelsen\": \"direktivbestemm\",\n  \"direktivet\": \"direktiv\",\n  \"direktivets\": \"direktiv\",\n  \"direktør\": \"direktør\",\n  \"dirigerer\": \"diriger\",\n  \"dirigeres\": \"diriger\",\n  \"dirre\": \"dirr\",\n  \"dirrer\": \"dirr\",\n  \"disaggregert\": \"disaggreger\",\n  \"diskriminerande\": \"diskriminer\",\n  \"diskriminere\": \"diskriminer\",\n  \"diskriminering\": \"diskriminering\",\n  \"diskrimineringsforbod\": \"diskrimineringsforbod\",\n  \"diskusjon\": \"diskusjon\",\n  \"diskusjonar\": \"diskusjon\",\n  \"diskusjonen\": \"diskusjon\",\n  \"diskutere\": \"diskuter\",\n  \"diskuteres\": \"diskuter\",\n  \"diskutert\": \"diskuter\",\n  \"dispensasjon\": \"dispensasjon\",\n  \"dispensasjoner\": \"dispensasjon\",\n  \"disponere\": \"disponer\",\n  \"disponerer\": \"disponer\",\n  \"disponeres\": \"disponer\",\n  \"disponering\": \"disponering\",\n  \"disponeringen\": \"disponering\",\n  \"disponert\": \"disponer\",\n  \"disponerte\": \"disponer\",\n  \"disposisjon\": \"disposisjon\",\n  \"disposisjonane\": \"disposisjon\",\n  \"disposisjonar\": \"disposisjon\",\n  \"disposisjonen\": \"disposisjon\",\n  \"disposisjoner\": \"disposisjon\",\n  \"disposisjonsrett\": \"disposisjonsrett\",\n  \"disposisjonsretten\": \"disposisjonsrett\",\n  \"disse\": \"diss\",\n  \"dissens\": \"diss\",\n  \"dissensen\": \"dissens\",\n  \"disses\": \"diss\",\n  \"distanse\": \"distans\",\n  \"distanseavhengige\": \"distanseavheng\",\n  \"distansen\": \"distans\",\n  \"distanser\": \"distans\",\n  \"distribuerer\": \"distribuer\",\n  \"distribueres\": \"distribuer\",\n  \"distribusjon\": \"distribusjon\",\n  \"distribusjonen\": \"distribusjon\",\n  \"distribusjonsbiler\": \"distribusjonsbil\",\n  \"distribusjonsdistanser\": \"distribusjonsdistans\",\n  \"distribusjonsenhet\": \"distribusjonsen\",\n  \"distribusjonsfunksjonen\": \"distribusjonsfunksjon\",\n  \"distribusjonsfunksjoner\": \"distribusjonsfunksjon\",\n  \"distribusjonskanalene\": \"distribusjonskanal\",\n  \"distribusjonskanaler\": \"distribusjonskanal\",\n  \"distribusjonslagre\": \"distribusjonslagr\",\n  \"distribusjonsløsningene\": \"distribusjonsløsning\",\n  \"distribusjonsløsninger\": \"distribusjonsløsning\",\n  \"distribusjonsmønsteret\": \"distribusjonsmønster\",\n  \"distribusjonsmønstre\": \"distribusjonsmønstr\",\n  \"distribusjonsroller\": \"distribusjonsroll\",\n  \"distribusjonsselskaper\": \"distribusjonsselskap\",\n  \"distribusjonssentraler\": \"distribusjonssentral\",\n  \"distribusjonssentrum\": \"distribusjonssentrum\",\n  \"distribusjonssystemene\": \"distribusjonssystem\",\n  \"distribusjonsterminaler\": \"distribusjonsterminal\",\n  \"distribusjonstransporter\": \"distribusjonstransport\",\n  \"distribusjonsvirksomheten\": \"distribusjonsvirksom\",\n  \"distributører\": \"distributør\",\n  \"distriktene\": \"distrikt\",\n  \"distrikts\": \"distrikt\",\n  \"dit\": \"dit\",\n  \"ditt\": \"ditt\",\n  \"diverse\": \"divers\",\n  \"diversifisering\": \"diversifisering\",\n  \"diversifisert\": \"diversifiser\",\n  \"djerv\": \"djerv\",\n  \"djervere\": \"djerver\",\n  \"dkk\": \"dkk\",\n  \"dobbel\": \"dobbel\",\n  \"dobbelt\": \"dobbelt\",\n  \"dobbeltbeskatning\": \"dobbeltbeskatning\",\n  \"dobbelte\": \"dobbelt\",\n  \"dobbeltpantsetjing\": \"dobbeltpantsetjing\",\n  \"dobbeltrolle\": \"dobbeltroll\",\n  \"dobbeltrøyst\": \"dobbeltrøyst\",\n  \"dobbeltsal\": \"dobbeltsal\",\n  \"dobbeltspor\": \"dobbeltspor\",\n  \"dobbeltsporet\": \"dobbeltspor\",\n  \"doble\": \"dobl\",\n  \"dobles\": \"dobl\",\n  \"dobling\": \"dobling\",\n  \"dog\": \"dog\",\n  \"dokument\": \"dokument\",\n  \"dokumenta\": \"dokument\",\n  \"dokumentasjon\": \"dokumentasjon\",\n  \"dokumentavgift\": \"dokumentavgift\",\n  \"dokumenteigenskapar\": \"dokumenteigenskap\",\n  \"dokumentene\": \"dokument\",\n  \"dokumenter\": \"dokument\",\n  \"dokumentert\": \"dokumenter\",\n  \"dokumentet\": \"dokument\",\n  \"dokumenthandtering\": \"dokumenthandtering\",\n  \"dom\": \"dom\",\n  \"dominans\": \"dominan\",\n  \"dominerande\": \"dominer\",\n  \"dominere\": \"dominer\",\n  \"dominerende\": \"dominer\",\n  \"dominerer\": \"dominer\",\n  \"domineres\": \"dominer\",\n  \"dominert\": \"dominer\",\n  \"dommarar\": \"dommar\",\n  \"dommen\": \"domm\",\n  \"dommene\": \"domm\",\n  \"dommer\": \"domm\",\n  \"dommere\": \"dommer\",\n  \"domstolane\": \"domstol\",\n  \"domstolar\": \"domstol\",\n  \"domstolen\": \"domstol\",\n  \"domstolens\": \"domstol\",\n  \"domstolslova\": \"domstol\",\n  \"dotter\": \"dott\",\n  \"dotterforetag\": \"dotterforetag\",\n  \"dotterselskap\": \"dotterselskap\",\n  \"dotterselskapet\": \"dotterselskap\",\n  \"dottertiltak\": \"dottertiltak\",\n  \"doven\": \"dov\",\n  \"dovent\": \"dovent\",\n  \"dovne\": \"dovn\",\n  \"down\": \"down\",\n  \"dra\": \"dra\",\n  \"drabelig\": \"drab\",\n  \"drabelige\": \"drab\",\n  \"drag\": \"drag\",\n  \"draga\": \"drag\",\n  \"drage\": \"drag\",\n  \"dragehodet\": \"dragehod\",\n  \"dragen\": \"drag\",\n  \"drager\": \"drag\",\n  \"dragsug\": \"dragsug\",\n  \"drakk\": \"drakk\",\n  \"dramatisk\": \"dramatisk\",\n  \"drammen\": \"dramm\",\n  \"drammenselva\": \"drammenselv\",\n  \"drammensfjorden\": \"drammensfjord\",\n  \"drammensregionens\": \"drammensregion\",\n  \"drapet\": \"drap\",\n  \"drar\": \"drar\",\n  \"drasil\": \"drasil\",\n  \"drastisk\": \"drastisk\",\n  \"dratt\": \"dratt\",\n  \"draug\": \"draug\",\n  \"draupne\": \"draupn\",\n  \"dreide\": \"dreid\",\n  \"dreie\": \"dreie\",\n  \"dreier\": \"dreier\",\n  \"dreining\": \"dreining\",\n  \"drepe\": \"drep\",\n  \"dreper\": \"drep\",\n  \"drept\": \"drept\",\n  \"drepte\": \"drept\",\n  \"dressmann\": \"dressmann\",\n  \"drev\": \"drev\",\n  \"drevet\": \"drev\",\n  \"drift\": \"drift\",\n  \"drifta\": \"drift\",\n  \"driften\": \"drift\",\n  \"driftoversikt\": \"driftoversikt\",\n  \"driftsansvar\": \"driftsansv\",\n  \"driftsansvaret\": \"driftsansvar\",\n  \"driftsbudsjett\": \"driftsbudsjett\",\n  \"driftsformer\": \"driftsform\",\n  \"driftsinnskrenkinger\": \"driftsinnskrenking\",\n  \"driftsinnskrenkninger\": \"driftsinnskrenkning\",\n  \"driftsinntektene\": \"driftsinntekt\",\n  \"driftskostnader\": \"driftskostnad\",\n  \"driftsmidler\": \"driftsmidl\",\n  \"driftsopplegg\": \"driftsopplegg\",\n  \"driftsoversikt\": \"driftsoversikt\",\n  \"driftsoverskotet\": \"driftsoverskot\",\n  \"driftsselskapet\": \"driftsselskap\",\n  \"driftssystemer\": \"driftssystem\",\n  \"drikk\": \"drikk\",\n  \"drikke\": \"drikk\",\n  \"drikkegilde\": \"drikkegild\",\n  \"drikkehorn\": \"drikkehorn\",\n  \"drikkehornet\": \"drikkehorn\",\n  \"drikken\": \"drikk\",\n  \"drikker\": \"drikk\",\n  \"dristig\": \"drist\",\n  \"dristige\": \"drist\",\n  \"driv\": \"driv\",\n  \"drivast\": \"driv\",\n  \"drive\": \"driv\",\n  \"driven\": \"driv\",\n  \"drivende\": \"driv\",\n  \"driver\": \"driv\",\n  \"drives\": \"driv\",\n  \"drivkrefter\": \"drivkreft\",\n  \"drivne\": \"drivn\",\n  \"dro\": \"dro\",\n  \"dronning\": \"dronning\",\n  \"dronningen\": \"dronning\",\n  \"drukket\": \"drukk\",\n  \"drukne\": \"drukn\",\n  \"druknede\": \"drukn\",\n  \"drukner\": \"drukn\",\n  \"druknet\": \"drukn\",\n  \"dryppe\": \"drypp\",\n  \"drypper\": \"drypp\",\n  \"dråpe\": \"dråp\",\n  \"dråpene\": \"dråp\",\n  \"drøbak\": \"drøbak\",\n  \"drøbaksundet\": \"drøbaksund\",\n  \"drøfta\": \"drøft\",\n  \"drøftast\": \"drøft\",\n  \"drøfte\": \"drøft\",\n  \"drøftelsen\": \"drøft\",\n  \"drøfter\": \"drøft\",\n  \"drøftes\": \"drøft\",\n  \"drøftet\": \"drøft\",\n  \"drøfting\": \"drøfting\",\n  \"drøftinga\": \"drøfting\",\n  \"drøftingar\": \"drøfting\",\n  \"drøftingen\": \"drøfting\",\n  \"drøftinger\": \"drøfting\",\n  \"drøm\": \"drøm\",\n  \"drømme\": \"drømm\",\n  \"drømmene\": \"drømm\",\n  \"drømmer\": \"drømm\",\n  \"drømt\": \"drømt\",\n  \"drønnende\": \"drønn\",\n  \"drønner\": \"drønn\",\n  \"drøy\": \"drøy\",\n  \"drøye\": \"drøye\",\n  \"drøyt\": \"drøyt\",\n  \"du\": \"du\",\n  \"duger\": \"dug\",\n  \"duggen\": \"dugg\",\n  \"duk\": \"duk\",\n  \"dukker\": \"dukk\",\n  \"dukket\": \"dukk\",\n  \"dulter\": \"dult\",\n  \"dum\": \"dum\",\n  \"dumme\": \"dumm\",\n  \"dummer\": \"dumm\",\n  \"dummere\": \"dummer\",\n  \"dummeste\": \"dummest\",\n  \"dummet\": \"dumm\",\n  \"dumt\": \"dumt\",\n  \"dun\": \"dun\",\n  \"dunder\": \"dund\",\n  \"dundrende\": \"dundr\",\n  \"dundrer\": \"dundr\",\n  \"dunker\": \"dunk\",\n  \"dur\": \"dur\",\n  \"durer\": \"dur\",\n  \"dverg\": \"dverg\",\n  \"dvergen\": \"dverg\",\n  \"dvergene\": \"dverg\",\n  \"dvergenes\": \"dverg\",\n  \"dvergens\": \"dverg\",\n  \"dverger\": \"dverg\",\n  \"dvergers\": \"dverg\",\n  \"dvergeslekt\": \"dvergeslekt\",\n  \"dvergsten\": \"dvergst\",\n  \"dvs\": \"dvs\",\n  \"dy\": \"dy\",\n  \"dybde\": \"dybd\",\n  \"dybdeproblemer\": \"dybdeproblem\",\n  \"dybedal\": \"dybedal\",\n  \"dykker\": \"dykk\",\n  \"dyktig\": \"dykt\",\n  \"dyktighet\": \"dykt\",\n  \"dynamikk\": \"dynamikk\",\n  \"dynamisk\": \"dynamisk\",\n  \"dynke\": \"dynk\",\n  \"dyp\": \"dyp\",\n  \"dype\": \"dyp\",\n  \"dypere\": \"dyper\",\n  \"dypeskaten\": \"dypeskat\",\n  \"dypest\": \"dypest\",\n  \"dypet\": \"dyp\",\n  \"dypgående\": \"dypgå\",\n  \"dyppes\": \"dypp\",\n  \"dypt\": \"dypt\",\n  \"dyr\": \"dyr\",\n  \"dyrare\": \"dyrar\",\n  \"dyre\": \"dyr\",\n  \"dyrebare\": \"dyrebar\",\n  \"dyrehald\": \"dyrehald\",\n  \"dyrehaldet\": \"dyrehald\",\n  \"dyrere\": \"dyrer\",\n  \"dyret\": \"dyr\",\n  \"dyrt\": \"dyrt\",\n  \"dystert\": \"dyster\",\n  \"dystre\": \"dystr\",\n  \"dåres\": \"dår\",\n  \"dårleg\": \"dår\",\n  \"dårlegare\": \"dårlegar\",\n  \"dårlig\": \"dår\",\n  \"dårlige\": \"dår\",\n  \"dårligere\": \"dårliger\",\n  \"dø\": \"dø\",\n  \"død\": \"død\",\n  \"døde\": \"død\",\n  \"dødelighet\": \"død\",\n  \"dødelighetsarv\": \"dødelighetsarv\",\n  \"dødelighetsarven\": \"dødelighetsarv\",\n  \"døden\": \"død\",\n  \"dødes\": \"død\",\n  \"dødning\": \"dødning\",\n  \"dødningene\": \"dødning\",\n  \"dødninger\": \"dødning\",\n  \"dødningeskaller\": \"dødningeskall\",\n  \"dødsbo\": \"dødsbo\",\n  \"dødsboet\": \"dødsbo\",\n  \"dødsfall\": \"dødsfall\",\n  \"dødsfallet\": \"dødsfall\",\n  \"dødsfallstidspunktet\": \"dødsfallstidspunkt\",\n  \"dødsriket\": \"dødsrik\",\n  \"dødsrikets\": \"dødsrik\",\n  \"dødsrisiko\": \"dødsrisiko\",\n  \"dødt\": \"dødt\",\n  \"døgn\": \"døgn\",\n  \"døgnet\": \"døgn\",\n  \"døgnets\": \"døgn\",\n  \"døma\": \"døm\",\n  \"døme\": \"døm\",\n  \"dømes\": \"døm\",\n  \"dømet\": \"døm\",\n  \"dømme\": \"dømm\",\n  \"dømmer\": \"dømm\",\n  \"dønn\": \"dønn\",\n  \"dør\": \"dør\",\n  \"døren\": \"dør\",\n  \"dørene\": \"dør\",\n  \"dører\": \"dør\",\n  \"dørgende\": \"dørg\",\n  \"dørhellen\": \"dørhell\",\n  \"dørsprekken\": \"dørsprekk\",\n  \"døråpningen\": \"døråpning\",\n  \"døtre\": \"døtr\",\n  \"døtrene\": \"døtr\",\n  \"e\": \"e\",\n  \"econ\": \"econ\",\n  \"econs\": \"econ\",\n  \"ed\": \"ed\",\n  \"edda\": \"edd\",\n  \"eddas\": \"edd\",\n  \"edderkopper\": \"edderkopp\",\n  \"edel\": \"edel\",\n  \"eder\": \"eder\",\n  \"edilizie\": \"edilizi\",\n  \"edw\": \"edw\",\n  \"edward\": \"edward\",\n  \"ef\": \"ef\",\n  \"effekt\": \"effekt\",\n  \"effekten\": \"effekt\",\n  \"effekter\": \"effekt\",\n  \"effektiv\": \"effektiv\",\n  \"effektive\": \"effektiv\",\n  \"effektivisering\": \"effektivisering\",\n  \"effektiviseringprinsippene\": \"effektiviseringprinsipp\",\n  \"effektiviseringsgevinster\": \"effektiviseringsgevinst\",\n  \"effektivitet\": \"effektivit\",\n  \"effektiviteten\": \"effektivitet\",\n  \"effektivitetshensyn\": \"effektivitetshensyn\",\n  \"effektivitetskrav\": \"effektivitetskrav\",\n  \"effektivt\": \"effektiv\",\n  \"efta\": \"eft\",\n  \"egalitær\": \"egalitær\",\n  \"egen\": \"egen\",\n  \"egenandel\": \"egenandel\",\n  \"egene\": \"egen\",\n  \"egenkapital\": \"egenkapital\",\n  \"egenkapitalen\": \"egenkapital\",\n  \"egenskapen\": \"egenskap\",\n  \"egenskaper\": \"egenskap\",\n  \"egentlig\": \"egent\",\n  \"eget\": \"eget\",\n  \"egge\": \"egg\",\n  \"egger\": \"egg\",\n  \"eggeskall\": \"eggeskall\",\n  \"egget\": \"egg\",\n  \"eggum\": \"eggum\",\n  \"egil\": \"egil\",\n  \"egils\": \"egil\",\n  \"egne\": \"egn\",\n  \"egnede\": \"egn\",\n  \"egner\": \"egn\",\n  \"egnet\": \"egn\",\n  \"ei\": \"ei\",\n  \"eid\": \"eid\",\n  \"eidanger\": \"eidang\",\n  \"eidangerfjorden\": \"eidangerfjord\",\n  \"eide\": \"eid\",\n  \"eie\": \"eie\",\n  \"eiendelene\": \"eiendel\",\n  \"eiendeler\": \"eiendel\",\n  \"eiendom\": \"eiendom\",\n  \"eiendommen\": \"eiendomm\",\n  \"eiendommene\": \"eiendomm\",\n  \"eiendommer\": \"eiendomm\",\n  \"eiendomserverv\": \"eiendomserverv\",\n  \"eiendomsmegling\": \"eiendomsmegling\",\n  \"eiendomspriser\": \"eiendomspris\",\n  \"eiendomsrett\": \"eiendomsrett\",\n  \"eiendomsretten\": \"eiendomsrett\",\n  \"eier\": \"eier\",\n  \"eierandel\": \"eierandel\",\n  \"eierandeler\": \"eierandel\",\n  \"eiere\": \"eier\",\n  \"eierforhold\": \"eierforhold\",\n  \"eierforholdet\": \"eierforhold\",\n  \"eierinteresse\": \"eierinteress\",\n  \"eierinteresser\": \"eierinteress\",\n  \"eierkommune\": \"eierkommun\",\n  \"eierkommunene\": \"eierkommun\",\n  \"eierkommunenes\": \"eierkommun\",\n  \"eierne\": \"eiern\",\n  \"eierseksjoner\": \"eierseksjon\",\n  \"eierseksjonsloven\": \"eierseksjon\",\n  \"eierseksjonssameier\": \"eierseksjonssamei\",\n  \"eierskap\": \"eierskap\",\n  \"eiersl\": \"eiersl\",\n  \"eies\": \"eies\",\n  \"eiet\": \"eiet\",\n  \"eig\": \"eig\",\n  \"eiga\": \"eig\",\n  \"eigar\": \"eig\",\n  \"eigarane\": \"eigar\",\n  \"eigarar\": \"eigar\",\n  \"eigarbrøk\": \"eigarbrøk\",\n  \"eigarbustad\": \"eigarbustad\",\n  \"eigarbustadene\": \"eigarbustad\",\n  \"eigarbustader\": \"eigarbustad\",\n  \"eigardelar\": \"eigardel\",\n  \"eigaren\": \"eigar\",\n  \"eigarens\": \"eigar\",\n  \"eigarforhold\": \"eigarforhold\",\n  \"eigarforholdet\": \"eigarforhold\",\n  \"eigarinteressa\": \"eigarinteress\",\n  \"eigarinteresse\": \"eigarinteress\",\n  \"eigarinteressene\": \"eigarinteress\",\n  \"eigarinteresser\": \"eigarinteress\",\n  \"eigarleilegheiter\": \"eigarleilegheit\",\n  \"eigarpart\": \"eigarpart\",\n  \"eigarpartane\": \"eigarpart\",\n  \"eigarposisjonen\": \"eigarposisjon\",\n  \"eigarpreg\": \"eigarpreg\",\n  \"eigarrisikoen\": \"eigarrisiko\",\n  \"eigarsamanslutningar\": \"eigarsamanslutning\",\n  \"eigarseksjon\": \"eigarseksjon\",\n  \"eigarseksjonar\": \"eigarseksjon\",\n  \"eigarseksjonsforma\": \"eigarseksjonsform\",\n  \"eigarseksjonslov\": \"eigarseksjon\",\n  \"eigarseksjonslova\": \"eigarseksjon\",\n  \"eigarseksjonssameiger\": \"eigarseksjonssam\",\n  \"eigarskifte\": \"eigarskift\",\n  \"eigarskifteforsikring\": \"eigarskifteforsikring\",\n  \"eigarskiftet\": \"eigarskift\",\n  \"eigarstatusen\": \"eigarstatus\",\n  \"eigast\": \"eig\",\n  \"eige\": \"eig\",\n  \"eigeansvar\": \"eigeansv\",\n  \"eigedom\": \"eigedom\",\n  \"eigedommane\": \"eigedomm\",\n  \"eigedommar\": \"eigedomm\",\n  \"eigedommen\": \"eigedomm\",\n  \"eigedomseiningar\": \"eigedomseining\",\n  \"eigedomsforhold\": \"eigedomsforhold\",\n  \"eigedomsformidling\": \"eigedomsformidling\",\n  \"eigedomsforvaltning\": \"eigedomsforvaltning\",\n  \"eigedomskjøp\": \"eigedomskjøp\",\n  \"eigedomsmeklar\": \"eigedomsmekl\",\n  \"eigedomsmeklarar\": \"eigedomsmeklar\",\n  \"eigedomsmekling\": \"eigedomsmekling\",\n  \"eigedomsmeklingslova\": \"eigedomsmekling\",\n  \"eigedomsmeklingsløyve\": \"eigedomsmeklingsløyv\",\n  \"eigedomsovergangen\": \"eigedomsovergang\",\n  \"eigedomsrett\": \"eigedomsrett\",\n  \"eigedomsretten\": \"eigedomsrett\",\n  \"eigedomsselskap\": \"eigedomsselskap\",\n  \"eigedomssjefen\": \"eigedomssjef\",\n  \"eigeform\": \"eigeform\",\n  \"eigeformene\": \"eigeform\",\n  \"eigeformer\": \"eigeform\",\n  \"eigen\": \"eig\",\n  \"eigendelar\": \"eigendel\",\n  \"eigenkapital\": \"eigenkapital\",\n  \"eigenkapitalbeitragen\": \"eigenkapitalbeitrag\",\n  \"eigenkapitalen\": \"eigenkapital\",\n  \"eigenkapitalinnskot\": \"eigenkapitalinnskot\",\n  \"eigenskap\": \"eigenskap\",\n  \"eigentleg\": \"eigent\",\n  \"eigentlege\": \"eigent\",\n  \"eigne\": \"eign\",\n  \"eignedelane\": \"eignedel\",\n  \"eignedelar\": \"eignedel\",\n  \"eik\": \"eik\",\n  \"eika\": \"eik\",\n  \"eikenøtt\": \"eikenøtt\",\n  \"eiketre\": \"eiketr\",\n  \"eikrem\": \"eikrem\",\n  \"ein\": \"ein\",\n  \"einaste\": \"einast\",\n  \"eine\": \"ein\",\n  \"einebustad\": \"einebustad\",\n  \"einebustader\": \"einebustad\",\n  \"eineeigar\": \"eine\",\n  \"eineeige\": \"eine\",\n  \"einerett\": \"einerett\",\n  \"eineretten\": \"einerett\",\n  \"einerådande\": \"eineråd\",\n  \"eingong\": \"eingong\",\n  \"eingongsbetalingar\": \"eingongsbetaling\",\n  \"eingongsinnbetalingar\": \"eingongsinnbetaling\",\n  \"einherjene\": \"einherj\",\n  \"einherjer\": \"einherj\",\n  \"einherjers\": \"einherj\",\n  \"eining\": \"eining\",\n  \"einingar\": \"eining\",\n  \"einingsregisteret\": \"einingsregister\",\n  \"eins\": \"ein\",\n  \"einsidig\": \"einsid\",\n  \"einskapen\": \"einskap\",\n  \"einskild\": \"einskild\",\n  \"einskildbustader\": \"einskildbustad\",\n  \"einskilde\": \"einskild\",\n  \"einskildmedlemmer\": \"einskildmedlemm\",\n  \"einskildpersonar\": \"einskildperson\",\n  \"einskildsaker\": \"einskildsak\",\n  \"einslege\": \"eins\",\n  \"eintydig\": \"eintyd\",\n  \"eit\": \"eit\",\n  \"eiter\": \"eit\",\n  \"eiterdryppet\": \"eiterdrypp\",\n  \"eiteren\": \"eiter\",\n  \"eiterorm\": \"eiterorm\",\n  \"eiterormen\": \"eiterorm\",\n  \"eitrende\": \"eitr\",\n  \"eitt\": \"eitt\",\n  \"eittårsfristen\": \"eittårsfrist\",\n  \"ejerlejligheder\": \"ejerlejlighed\",\n  \"ekeberganleggene\": \"ekeberganlegg\",\n  \"ekebergtunnelen\": \"ekebergtunnel\",\n  \"ekebergåsen\": \"ekebergås\",\n  \"ekle\": \"ekl\",\n  \"ekonomisk\": \"ekonomisk\",\n  \"ekonomiska\": \"ekonomisk\",\n  \"ekornet\": \"ekorn\",\n  \"eks\": \"eks\",\n  \"eksakt\": \"eksakt\",\n  \"eksakte\": \"eksakt\",\n  \"eksempel\": \"eksempel\",\n  \"eksempelvis\": \"eksempelvis\",\n  \"eksemplene\": \"eksempl\",\n  \"eksempler\": \"eksempl\",\n  \"eksemplet\": \"eksempl\",\n  \"eksistensen\": \"eksistens\",\n  \"eksisterande\": \"eksister\",\n  \"eksistere\": \"eksister\",\n  \"eksisterende\": \"eksister\",\n  \"eksisterer\": \"eksister\",\n  \"ekskl\": \"ekskl\",\n  \"eksklusiv\": \"eksklusiv\",\n  \"eksklusive\": \"eksklusiv\",\n  \"eksmemplene\": \"eksmempl\",\n  \"eksogent\": \"eksogent\",\n  \"ekspansjon\": \"ekspansjon\",\n  \"ekspederes\": \"ekspeder\",\n  \"eksperthjelp\": \"eksperthjelp\",\n  \"ekspertisen\": \"ekspertis\",\n  \"eksplisitt\": \"eksplisitt\",\n  \"eksponeringa\": \"eksponering\",\n  \"eksponert\": \"eksponer\",\n  \"eksport\": \"eksport\",\n  \"eksportbedrifter\": \"eksportbedrift\",\n  \"eksportbedrifters\": \"eksportbedrift\",\n  \"eksportcontainere\": \"eksportcontainer\",\n  \"eksporten\": \"eksport\",\n  \"eksporterer\": \"eksporter\",\n  \"eksporteres\": \"eksporter\",\n  \"eksportert\": \"eksporter\",\n  \"eksporterte\": \"eksporter\",\n  \"eksportfunksjonene\": \"eksportfunksjon\",\n  \"eksportfylke\": \"eksportfylk\",\n  \"eksportgods\": \"eksportgod\",\n  \"eksportgodset\": \"eksportgods\",\n  \"eksporthavnene\": \"eksporthavn\",\n  \"eksporthavner\": \"eksporthavn\",\n  \"eksportkundenes\": \"eksportkund\",\n  \"eksportlaster\": \"eksportlast\",\n  \"eksportmengden\": \"eksportmengd\",\n  \"eksportnæringer\": \"eksportnæring\",\n  \"eksportorienterte\": \"eksportorienter\",\n  \"eksportoverskudd\": \"eksportoverskudd\",\n  \"eksportprofil\": \"eksportprofil\",\n  \"eksportrettede\": \"eksportrett\",\n  \"eksportrettet\": \"eksportrett\",\n  \"eksportsammenheng\": \"eksportsammenheng\",\n  \"eksportsiden\": \"eksportsid\",\n  \"eksporttransportene\": \"eksporttransport\",\n  \"eksporttransporter\": \"eksporttransport\",\n  \"eksportutvikling\": \"eksportutvikling\",\n  \"eksportvarer\": \"eksportvar\",\n  \"eksportvekst\": \"eksportvekst\",\n  \"eksportveksten\": \"eksportvekst\",\n  \"eksportverdi\": \"eksportverdi\",\n  \"eksportvolum\": \"eksportvolum\",\n  \"eksportvolumene\": \"eksportvolum\",\n  \"eksportvolumer\": \"eksportvolum\",\n  \"eksportvolumet\": \"eksportvolum\",\n  \"ekstern\": \"ekstern\",\n  \"eksterne\": \"ekstern\",\n  \"ekstingverte\": \"ekstingver\",\n  \"ekstinksjon\": \"ekstinksjon\",\n  \"ekstinksjonen\": \"ekstinksjon\",\n  \"ekstinksjonsregelen\": \"ekstinksjonsregel\",\n  \"ekstra\": \"ekstr\",\n  \"ekstrakostnader\": \"ekstrakostnad\",\n  \"ekstraordinær\": \"ekstraordinær\",\n  \"ekstraordinære\": \"ekstraordinær\",\n  \"ekstremt\": \"ekstremt\",\n  \"ekte\": \"ekt\",\n  \"ektefelle\": \"ektefell\",\n  \"ektefellen\": \"ektefell\",\n  \"ektefellepensjon\": \"ektefellepensjon\",\n  \"ektefellepensjonens\": \"ektefellepensjon\",\n  \"ektefeller\": \"ektefell\",\n  \"ektefelles\": \"ektefell\",\n  \"ektemakar\": \"ektemak\",\n  \"ektemake\": \"ektemak\",\n  \"ektemaken\": \"ektemak\",\n  \"ektemakens\": \"ektemak\",\n  \"ektemann\": \"ektemann\",\n  \"ektepar\": \"ektep\",\n  \"ekteparet\": \"ektepar\",\n  \"ekteskap\": \"ekteskap\",\n  \"ekteskapet\": \"ekteskap\",\n  \"ekteskaps\": \"ekteskap\",\n  \"ekteskapslova\": \"ekteskap\",\n  \"ekteskapslovgivningen\": \"ekteskapslovgivning\",\n  \"el\": \"el\",\n  \"eld\": \"eld\",\n  \"elde\": \"eld\",\n  \"eldre\": \"eldr\",\n  \"eldrebustader\": \"eldrebustad\",\n  \"eldst\": \"eldst\",\n  \"eldste\": \"eldst\",\n  \"elektrisk\": \"elektrisk\",\n  \"elektronisk\": \"elektronisk\",\n  \"elektroniske\": \"elektronisk\",\n  \"element\": \"element\",\n  \"elementa\": \"element\",\n  \"elementene\": \"element\",\n  \"elementer\": \"element\",\n  \"elementet\": \"element\",\n  \"elendig\": \"elend\",\n  \"elendige\": \"elend\",\n  \"elendighet\": \"elend\",\n  \"elg\": \"elg\",\n  \"elgar\": \"elg\",\n  \"eliminere\": \"eliminer\",\n  \"elisabeth\": \"elisabeth\",\n  \"eljudne\": \"eljudn\",\n  \"elkem\": \"elkem\",\n  \"elkjøp\": \"elkjøp\",\n  \"elle\": \"ell\",\n  \"eller\": \"ell\",\n  \"ellers\": \"ell\",\n  \"elles\": \"ell\",\n  \"elleve\": \"ellev\",\n  \"ellingsen\": \"ellings\",\n  \"elsk\": \"elsk\",\n  \"elske\": \"elsk\",\n  \"elsker\": \"elsk\",\n  \"elsket\": \"elsk\",\n  \"elskovssyk\": \"elskovssyk\",\n  \"elv\": \"elv\",\n  \"elva\": \"elv\",\n  \"elveløpet\": \"elveløp\",\n  \"elven\": \"elv\",\n  \"elver\": \"elv\",\n  \"elvevegen\": \"elveveg\",\n  \"embla\": \"embl\",\n  \"emden\": \"emd\",\n  \"emne\": \"emn\",\n  \"empirisk\": \"empirisk\",\n  \"en\": \"en\",\n  \"enda\": \"end\",\n  \"endar\": \"end\",\n  \"ende\": \"end\",\n  \"endeleg\": \"end\",\n  \"endelege\": \"end\",\n  \"endelig\": \"end\",\n  \"endelige\": \"end\",\n  \"enden\": \"end\",\n  \"endepunkt\": \"endepunkt\",\n  \"ender\": \"end\",\n  \"endevendt\": \"endevend\",\n  \"endingar\": \"ending\",\n  \"endr\": \"endr\",\n  \"endra\": \"endr\",\n  \"endrar\": \"endr\",\n  \"endrast\": \"endr\",\n  \"endre\": \"endr\",\n  \"endrede\": \"endr\",\n  \"endrer\": \"endr\",\n  \"endres\": \"endr\",\n  \"endret\": \"endr\",\n  \"endrete\": \"endret\",\n  \"endring\": \"endring\",\n  \"endringa\": \"endring\",\n  \"endringane\": \"endring\",\n  \"endringar\": \"endring\",\n  \"endringen\": \"endring\",\n  \"endringene\": \"endring\",\n  \"endringer\": \"endring\",\n  \"endringsarbeid\": \"endringsarbeid\",\n  \"endringsavtale\": \"endringsavtal\",\n  \"endringsdirektivets\": \"endringsdirektiv\",\n  \"endringsforslag\": \"endringsforslag\",\n  \"endringslov\": \"endring\",\n  \"endringstidspunktet\": \"endringstidspunkt\",\n  \"endt\": \"endt\",\n  \"endte\": \"endt\",\n  \"ene\": \"ene\",\n  \"eneansvarlig\": \"eneansvar\",\n  \"enearving\": \"enearving\",\n  \"enerett\": \"enerett\",\n  \"energi\": \"energi\",\n  \"energieffektivisering\": \"energieffektivisering\",\n  \"energiøkonomi\": \"energiøkonomi\",\n  \"enerom\": \"enerom\",\n  \"eneste\": \"enest\",\n  \"enestående\": \"enestå\",\n  \"eng\": \"eng\",\n  \"engangs\": \"engang\",\n  \"engangsbeløp\": \"engangsbeløp\",\n  \"engangsbeløpet\": \"engangsbeløp\",\n  \"engangsinnbetalinger\": \"engangsinnbetaling\",\n  \"engangspremie\": \"engangspremi\",\n  \"engangspremier\": \"engangspremi\",\n  \"engangssum\": \"engangssum\",\n  \"engangsutbetaling\": \"engangsutbetaling\",\n  \"engangsutbetalinger\": \"engangsutbetaling\",\n  \"engangsutbetalt\": \"engangsutbetalt\",\n  \"engangsutgifter\": \"engangsutgift\",\n  \"engangsytelse\": \"engangsyt\",\n  \"engangsytelsen\": \"engangsyt\",\n  \"engangsytelser\": \"engangsyt\",\n  \"engasjement\": \"engasjement\",\n  \"engasjert\": \"engasjer\",\n  \"engelske\": \"engelsk\",\n  \"england\": \"england\",\n  \"engroslagre\": \"engroslagr\",\n  \"engrosvirksomhet\": \"engrosvirksom\",\n  \"engsoleie\": \"engsolei\",\n  \"engstelig\": \"engst\",\n  \"engstet\": \"engst\",\n  \"enhet\": \"enh\",\n  \"enheter\": \"enhet\",\n  \"enheterisering\": \"enheterisering\",\n  \"enheterisert\": \"enheteriser\",\n  \"enhetlig\": \"enhet\",\n  \"enhetlige\": \"enhet\",\n  \"enhetsgods\": \"enhetsgod\",\n  \"enhetslaster\": \"enhetslast\",\n  \"enhetslasteskip\": \"enhetslasteskip\",\n  \"enhetslastet\": \"enhetslast\",\n  \"enhetslasthavner\": \"enhetslasthavn\",\n  \"enhetslasthåndtering\": \"enhetslasthåndtering\",\n  \"enhetslasttrafikk\": \"enhetslasttrafikk\",\n  \"enhetslasttrafikken\": \"enhetslasttrafikk\",\n  \"enhver\": \"enhv\",\n  \"enig\": \"enig\",\n  \"enige\": \"enig\",\n  \"enkel\": \"enkel\",\n  \"enkelhet\": \"enkel\",\n  \"enkelt\": \"enkelt\",\n  \"enkeltaksjer\": \"enkeltaksj\",\n  \"enkeltaktørene\": \"enkeltaktør\",\n  \"enkelte\": \"enkelt\",\n  \"enkeltengasjementer\": \"enkeltengasjement\",\n  \"enkeltes\": \"enkelt\",\n  \"enkeltforetak\": \"enkeltforetak\",\n  \"enkeltforhold\": \"enkeltforhold\",\n  \"enkeltforslag\": \"enkeltforslag\",\n  \"enkelthavner\": \"enkelthavn\",\n  \"enkeltkommuners\": \"enkeltkommun\",\n  \"enkeltlandenes\": \"enkeltland\",\n  \"enkeltmannsforetak\": \"enkeltmannsforetak\",\n  \"enkeltmannsføretak\": \"enkeltmannsføretak\",\n  \"enkeltmannsføretaket\": \"enkeltmannsføretak\",\n  \"enkeltområder\": \"enkeltområd\",\n  \"enkeltpersoner\": \"enkeltperson\",\n  \"enkeltprosjekter\": \"enkeltprosjekt\",\n  \"enkeltsaker\": \"enkeltsak\",\n  \"enkeltsaksbehandlingen\": \"enkeltsaksbehandling\",\n  \"enkeltspørsmål\": \"enkeltspørsmål\",\n  \"enkeltvalg\": \"enkeltvalg\",\n  \"enkeltvedtak\": \"enkeltvedtak\",\n  \"enkeltvis\": \"enkeltvis\",\n  \"enkeltår\": \"enkeltår\",\n  \"enkemann\": \"enkemann\",\n  \"enklare\": \"enklar\",\n  \"enklaste\": \"enklast\",\n  \"enkle\": \"enkl\",\n  \"enklere\": \"enkler\",\n  \"enkleste\": \"enklest\",\n  \"enn\": \"enn\",\n  \"enno\": \"enno\",\n  \"ennå\": \"ennå\",\n  \"enorme\": \"enorm\",\n  \"ensbetydende\": \"ensbetyd\",\n  \"enser\": \"ens\",\n  \"ensidig\": \"ensid\",\n  \"enslig\": \"ens\",\n  \"enslige\": \"ens\",\n  \"ensom\": \"ensom\",\n  \"enten\": \"ent\",\n  \"entreprenør\": \"entreprenør\",\n  \"entreprenørar\": \"entreprenør\",\n  \"entreprenøren\": \"entreprenør\",\n  \"entreprenørføretak\": \"entreprenørføretak\",\n  \"entreprise\": \"entrepris\",\n  \"entydig\": \"entyd\",\n  \"enøyd\": \"enøyd\",\n  \"enøyde\": \"enøyd\",\n  \"epes\": \"epes\",\n  \"eple\": \"epl\",\n  \"eplene\": \"epl\",\n  \"epler\": \"epl\",\n  \"eplet\": \"epl\",\n  \"epletrær\": \"epletrær\",\n  \"equivalent\": \"equivalent\",\n  \"er\": \"er\",\n  \"erfaren\": \"erfar\",\n  \"erfaring\": \"erfaring\",\n  \"erfaringene\": \"erfaring\",\n  \"erfaringer\": \"erfaring\",\n  \"erfaringsmateriale\": \"erfaringsmaterial\",\n  \"erfaringstall\": \"erfaringstall\",\n  \"ergerlig\": \"erger\",\n  \"ergerlige\": \"erger\",\n  \"ergrelse\": \"ergr\",\n  \"erik\": \"erik\",\n  \"erkjennelse\": \"erkjenn\",\n  \"erling\": \"erling\",\n  \"erstatning\": \"erstatning\",\n  \"erstatningsansvaret\": \"erstatningsansvar\",\n  \"erstatte\": \"erstatt\",\n  \"erstattes\": \"erstatt\",\n  \"erstattet\": \"erstatt\",\n  \"erte\": \"ert\",\n  \"erter\": \"ert\",\n  \"ertet\": \"ert\",\n  \"erverv\": \"erverv\",\n  \"erverva\": \"erverv\",\n  \"ervervar\": \"erverv\",\n  \"ervervarane\": \"ervervar\",\n  \"ervervarar\": \"ervervar\",\n  \"ervervaren\": \"ervervar\",\n  \"ervervarens\": \"ervervar\",\n  \"erverve\": \"erverv\",\n  \"ervervede\": \"erverv\",\n  \"ervervet\": \"erverv\",\n  \"ervervsevnen\": \"ervervsevn\",\n  \"ervervsfasen\": \"ervervsfas\",\n  \"ervervsinntekt\": \"ervervsinntekt\",\n  \"ervervskostnadene\": \"ervervskostnad\",\n  \"ervervsmessig\": \"ervervsmess\",\n  \"ervervsprøves\": \"ervervsprøv\",\n  \"ervervsprøving\": \"ervervsprøving\",\n  \"ervervsprøvingen\": \"ervervsprøving\",\n  \"erwerbes\": \"erwerb\",\n  \"erwerbs\": \"erwerb\",\n  \"estetikk\": \"estetikk\",\n  \"estetiske\": \"estetisk\",\n  \"estimert\": \"estimer\",\n  \"et\": \"et\",\n  \"etablerast\": \"etabler\",\n  \"etablere\": \"etabler\",\n  \"etablerer\": \"etabler\",\n  \"etableres\": \"etabler\",\n  \"etablering\": \"etablering\",\n  \"etableringa\": \"etablering\",\n  \"etableringen\": \"etablering\",\n  \"etableringsadgangen\": \"etableringsadgang\",\n  \"etableringshorisont\": \"etableringshorisont\",\n  \"etableringsproblem\": \"etableringsproblem\",\n  \"etableringsstaten\": \"etableringsstat\",\n  \"etablert\": \"etabler\",\n  \"etablerte\": \"etabler\",\n  \"etappe\": \"etapp\",\n  \"etappen\": \"etapp\",\n  \"etapper\": \"etapp\",\n  \"etappevis\": \"etappevis\",\n  \"etappevise\": \"etappevis\",\n  \"etasje\": \"etasj\",\n  \"etat\": \"etat\",\n  \"etatar\": \"etat\",\n  \"etaten\": \"etat\",\n  \"etatene\": \"etat\",\n  \"etatens\": \"etat\",\n  \"etc\": \"etc\",\n  \"ete\": \"ete\",\n  \"eter\": \"eter\",\n  \"ethvert\": \"ethver\",\n  \"etiske\": \"etisk\",\n  \"etla\": \"etl\",\n  \"etnisk\": \"etnisk\",\n  \"ett\": \"ett\",\n  \"etter\": \"ett\",\n  \"etterarbeid\": \"etterarbeid\",\n  \"etterfølgende\": \"etterfølg\",\n  \"etterkome\": \"etterkom\",\n  \"etterkomme\": \"etterkomm\",\n  \"etterkommere\": \"etterkommer\",\n  \"etterkommes\": \"etterkomm\",\n  \"etterkrigstida\": \"etterkrigstid\",\n  \"etterlate\": \"etterlat\",\n  \"etterlatt\": \"etterlatt\",\n  \"etterlatte\": \"etterlatt\",\n  \"etterlattedekning\": \"etterlattedekning\",\n  \"etterlattepensjon\": \"etterlattepensjon\",\n  \"etterlattepensjonenes\": \"etterlattepensjon\",\n  \"etterlattepensjoner\": \"etterlattepensjon\",\n  \"etterlattes\": \"etterlatt\",\n  \"etterlatteytelsene\": \"etterlatteyt\",\n  \"etterlatteytelser\": \"etterlatteyt\",\n  \"etterlattforsikring\": \"etterlattforsikring\",\n  \"etterlattpensjon\": \"etterlattpensjon\",\n  \"etterlattpensjoner\": \"etterlattpensjon\",\n  \"etterleving\": \"etterleving\",\n  \"ettermiddag\": \"ettermiddag\",\n  \"ettermiddagen\": \"ettermiddag\",\n  \"ettermæle\": \"ettermæl\",\n  \"etterprioriterte\": \"etterprioriter\",\n  \"etterprøve\": \"etterprøv\",\n  \"etterpå\": \"etterpå\",\n  \"etterskot\": \"etterskot\",\n  \"etterskotsvis\": \"etterskotsvis\",\n  \"etterslepseffekten\": \"etterslepseffekt\",\n  \"ettersom\": \"ettersom\",\n  \"etterspurde\": \"etterspurd\",\n  \"etterspurnad\": \"etterspurnad\",\n  \"etterspurnaden\": \"etterspurnad\",\n  \"etterspør\": \"etterspør\",\n  \"etterspørelsen\": \"etterspør\",\n  \"etterspørsel\": \"etterspørsel\",\n  \"etterspørselen\": \"etterspørsel\",\n  \"etterspørselens\": \"etterspørsel\",\n  \"etterspørselsregulering\": \"etterspørselsregulering\",\n  \"etterspørselssiden\": \"etterspørselssid\",\n  \"etterspørselsvekst\": \"etterspørselsvekst\",\n  \"etterspørselsveksten\": \"etterspørselsvekst\",\n  \"etterståande\": \"etterstå\",\n  \"ettersyn\": \"ettersyn\",\n  \"ettertid\": \"ettertid\",\n  \"etterutluting\": \"etterutluting\",\n  \"ettårige\": \"ettår\",\n  \"eu\": \"eu\",\n  \"euro\": \"euro\",\n  \"europa\": \"europ\",\n  \"europaparlaments\": \"europaparlament\",\n  \"europas\": \"europ\",\n  \"european\": \"european\",\n  \"europeen\": \"europe\",\n  \"europeisk\": \"europeisk\",\n  \"europeiske\": \"europeisk\",\n  \"eus\": \"eus\",\n  \"eventuell\": \"eventuell\",\n  \"eventuelle\": \"eventuell\",\n  \"eventuelt\": \"eventuelt\",\n  \"eventyr\": \"eventyr\",\n  \"eventyrene\": \"eventyr\",\n  \"eventyret\": \"eventyr\",\n  \"evig\": \"evig\",\n  \"evige\": \"evig\",\n  \"eviggrønne\": \"eviggrønn\",\n  \"evighet\": \"evig\",\n  \"evne\": \"evn\",\n  \"evnen\": \"evn\",\n  \"evt\": \"evt\",\n  \"eøf\": \"eøf\",\n  \"eøs\": \"eøs\",\n  \"f\": \"f\",\n  \"fabrikker\": \"fabrikk\",\n  \"fact\": \"fact\",\n  \"fager\": \"fag\",\n  \"fagforeining\": \"fagforeining\",\n  \"fagforeiningar\": \"fagforeining\",\n  \"faggrupper\": \"faggrupp\",\n  \"fagleg\": \"fag\",\n  \"faglig\": \"fag\",\n  \"faglige\": \"fag\",\n  \"fagmyndigheter\": \"fagmynd\",\n  \"fagorganisasjonar\": \"fagorganisasjon\",\n  \"fagrest\": \"fagrest\",\n  \"fakkeltog\": \"fakkeltog\",\n  \"fakket\": \"fakk\",\n  \"fakler\": \"fakl\",\n  \"faktisk\": \"faktisk\",\n  \"faktiske\": \"faktisk\",\n  \"faktor\": \"faktor\",\n  \"faktorar\": \"faktor\",\n  \"faktorene\": \"faktor\",\n  \"faktorer\": \"faktor\",\n  \"faktoringpant\": \"faktoringpant\",\n  \"faktum\": \"faktum\",\n  \"fakulteta\": \"fakultet\",\n  \"falk\": \"falk\",\n  \"falke\": \"falk\",\n  \"falkehammen\": \"falkehamm\",\n  \"falkemannen\": \"falkemann\",\n  \"falken\": \"falk\",\n  \"fall\": \"fall\",\n  \"falle\": \"fall\",\n  \"falleferdig\": \"falleferd\",\n  \"fallen\": \"fall\",\n  \"faller\": \"fall\",\n  \"fallet\": \"fall\",\n  \"falne\": \"faln\",\n  \"falnes\": \"faln\",\n  \"falsk\": \"falsk\",\n  \"falskest\": \"falskest\",\n  \"falskhet\": \"falsk\",\n  \"falt\": \"falt\",\n  \"familiane\": \"famili\",\n  \"familie\": \"famili\",\n  \"familieforhold\": \"familieforhold\",\n  \"familieliv\": \"familieliv\",\n  \"familiemedlemmer\": \"familiemedlemm\",\n  \"familien\": \"famili\",\n  \"familierettslege\": \"familieretts\",\n  \"familiesituasjon\": \"familiesituasjon\",\n  \"famler\": \"faml\",\n  \"fang\": \"fang\",\n  \"fanga\": \"fang\",\n  \"fangar\": \"fang\",\n  \"fange\": \"fang\",\n  \"fangen\": \"fang\",\n  \"fanger\": \"fang\",\n  \"fanges\": \"fang\",\n  \"fanget\": \"fang\",\n  \"fangst\": \"fangst\",\n  \"fangsten\": \"fangst\",\n  \"fanst\": \"fanst\",\n  \"fant\": \"fant\",\n  \"fanteri\": \"fanteri\",\n  \"fantes\": \"fant\",\n  \"far\": \"far\",\n  \"farbror\": \"farbror\",\n  \"fare\": \"far\",\n  \"faren\": \"far\",\n  \"farende\": \"far\",\n  \"farer\": \"far\",\n  \"fargede\": \"farg\",\n  \"farkosten\": \"farkost\",\n  \"farleden\": \"farled\",\n  \"farledene\": \"farled\",\n  \"farleder\": \"farled\",\n  \"farledsnettet\": \"farledsnett\",\n  \"farledssektoren\": \"farledssektor\",\n  \"farlig\": \"far\",\n  \"farlige\": \"far\",\n  \"farligere\": \"farliger\",\n  \"farligste\": \"farligst\",\n  \"farmasøyt\": \"farmasøyt\",\n  \"farmasøytiske\": \"farmasøytisk\",\n  \"farriseidet\": \"farriseid\",\n  \"fars\": \"far\",\n  \"fart\": \"fart\",\n  \"farten\": \"fart\",\n  \"fartsdempende\": \"fartsdemp\",\n  \"fartøy\": \"fartøy\",\n  \"fartøyene\": \"fartøy\",\n  \"fartøyer\": \"fartøy\",\n  \"fartøystørrelse\": \"fartøystørr\",\n  \"farvann\": \"farvann\",\n  \"farvannet\": \"farvann\",\n  \"farvannets\": \"farvann\",\n  \"farvannslov\": \"farvann\",\n  \"farvannsloven\": \"farvann\",\n  \"farvannslovens\": \"farvann\",\n  \"farvannssaker\": \"farvannssak\",\n  \"farve\": \"farv\",\n  \"farvel\": \"farvel\",\n  \"farvene\": \"farv\",\n  \"fascinerer\": \"fasciner\",\n  \"fase\": \"fas\",\n  \"fasen\": \"fas\",\n  \"fasiliteter\": \"fasilitet\",\n  \"fast\": \"fast\",\n  \"faste\": \"fast\",\n  \"fastere\": \"faster\",\n  \"fastlagt\": \"fastlagt\",\n  \"fastlandet\": \"fastland\",\n  \"fastlands\": \"fastland\",\n  \"fastlege\": \"fast\",\n  \"fastlegge\": \"fastlegg\",\n  \"fastlegger\": \"fastlegg\",\n  \"fastlegges\": \"fastlegg\",\n  \"fastlegging\": \"fastlegging\",\n  \"fastlegginga\": \"fastlegging\",\n  \"fastleggjast\": \"fastleggj\",\n  \"fastleggje\": \"fastleggj\",\n  \"fastlåst\": \"fastlåst\",\n  \"fastprisavtalar\": \"fastprisavtal\",\n  \"fastrenteinnskudd\": \"fastrenteinnskudd\",\n  \"fastrentelån\": \"fastrentelån\",\n  \"fastsatt\": \"fastsatt\",\n  \"fastsatte\": \"fastsatt\",\n  \"fastset\": \"fasts\",\n  \"fastsetjast\": \"fastsetj\",\n  \"fastsetje\": \"fastsetj\",\n  \"fastsetjing\": \"fastsetjing\",\n  \"fastsetjinga\": \"fastsetjing\",\n  \"fastsetjingsdom\": \"fastsetjingsdom\",\n  \"fastsett\": \"fastsett\",\n  \"fastsette\": \"fastsett\",\n  \"fastsettelse\": \"fastsett\",\n  \"fastsettelsen\": \"fastsett\",\n  \"fastsetter\": \"fastsett\",\n  \"fastsettes\": \"fastsett\",\n  \"fastslege\": \"fasts\",\n  \"fastslo\": \"fastslo\",\n  \"fastslå\": \"fastslå\",\n  \"fastslår\": \"fastslår\",\n  \"fastslås\": \"fastslås\",\n  \"fat\": \"fat\",\n  \"fatet\": \"fat\",\n  \"fatt\": \"fatt\",\n  \"fatte\": \"fatt\",\n  \"fatter\": \"fatt\",\n  \"fattes\": \"fatt\",\n  \"fattet\": \"fatt\",\n  \"fattig\": \"fatt\",\n  \"fattigdom\": \"fattigdom\",\n  \"fauna\": \"faun\",\n  \"favne\": \"favn\",\n  \"favnen\": \"favn\",\n  \"favner\": \"favn\",\n  \"favntak\": \"favntak\",\n  \"favoriserer\": \"favoriser\",\n  \"favorisering\": \"favorisering\",\n  \"favoriseringen\": \"favorisering\",\n  \"favør\": \"favør\",\n  \"fdb\": \"fdb\",\n  \"fe\": \"fe\",\n  \"februar\": \"febru\",\n  \"federabitazione\": \"federabitazion\",\n  \"federazione\": \"federazion\",\n  \"feederbåter\": \"feederbåt\",\n  \"feederhavner\": \"feederhavn\",\n  \"feederløsninger\": \"feederløsning\",\n  \"feedernettet\": \"feedernett\",\n  \"feederrederiene\": \"feederrederi\",\n  \"feederskip\": \"feederskip\",\n  \"feedersystem\": \"feedersystem\",\n  \"feedertrafikk\": \"feedertrafikk\",\n  \"feedertrafikken\": \"feedertrafikk\",\n  \"feedertransport\": \"feedertransport\",\n  \"feedertransportene\": \"feedertransport\",\n  \"feedertransporter\": \"feedertransport\",\n  \"feedervolumer\": \"feedervolum\",\n  \"feeedertransport\": \"feeedertransport\",\n  \"feier\": \"feier\",\n  \"feig\": \"feig\",\n  \"feige\": \"feig\",\n  \"feigeste\": \"feigest\",\n  \"feil\": \"feil\",\n  \"feilen\": \"feil\",\n  \"feiler\": \"feil\",\n  \"feilkalkylar\": \"feilkalkyl\",\n  \"feire\": \"feir\",\n  \"fekk\": \"fekk\",\n  \"fekter\": \"fekt\",\n  \"fektet\": \"fekt\",\n  \"felixstowe\": \"felixstow\",\n  \"fell\": \"fell\",\n  \"felle\": \"fell\",\n  \"fellen\": \"fell\",\n  \"feller\": \"fell\",\n  \"felles\": \"fell\",\n  \"fellesareal\": \"fellesareal\",\n  \"fellesareala\": \"fellesareal\",\n  \"fellesbestemmelser\": \"fellesbestemm\",\n  \"felleseiga\": \"felles\",\n  \"fellesfinansiering\": \"fellesfinansiering\",\n  \"fellesfond\": \"fellesfond\",\n  \"fellesformue\": \"fellesformu\",\n  \"fellesforvaltninga\": \"fellesforvaltning\",\n  \"fellesgjeld\": \"fellesgjeld\",\n  \"fellesgjelda\": \"fellesgjeld\",\n  \"felleshavn\": \"felleshavn\",\n  \"fellesinstallasjonar\": \"fellesinstallasjon\",\n  \"felleskapital\": \"felleskapital\",\n  \"felleskapitalen\": \"felleskapital\",\n  \"felleskonto\": \"felleskonto\",\n  \"felleskontor\": \"felleskontor\",\n  \"felleskostnadene\": \"felleskostnad\",\n  \"felleskostnader\": \"felleskostnad\",\n  \"felleskostnder\": \"felleskostnd\",\n  \"felleslån\": \"felleslån\",\n  \"felleslåna\": \"felleslån\",\n  \"felleslångjevaren\": \"felleslångjevar\",\n  \"fellesnevneren\": \"fellesnevner\",\n  \"fellesobligasjon\": \"fellesobligasjon\",\n  \"fellesoppgåve\": \"fellesoppgåv\",\n  \"fellesoppgåver\": \"fellesoppgåv\",\n  \"fellesorganisasjon\": \"fellesorganisasjon\",\n  \"fellesskap\": \"fellesskap\",\n  \"fellesskapar\": \"fellesskap\",\n  \"fellesskapen\": \"fellesskap\",\n  \"fellesskapet\": \"fellesskap\",\n  \"fellesskapsretten\": \"fellesskapsrett\",\n  \"fellesskyldnader\": \"fellesskyldnad\",\n  \"fellestenester\": \"fellestenest\",\n  \"fellestiltak\": \"fellestiltak\",\n  \"fellestiltaka\": \"fellestiltak\",\n  \"fellestrekk\": \"fellestrekk\",\n  \"felt\": \"felt\",\n  \"felter\": \"felt\",\n  \"fem\": \"fem\",\n  \"femdel\": \"femdel\",\n  \"femdels\": \"femdel\",\n  \"femne\": \"femn\",\n  \"femner\": \"femn\",\n  \"femte\": \"femt\",\n  \"femtedel\": \"femtedel\",\n  \"femten\": \"femt\",\n  \"femteparten\": \"femtepart\",\n  \"femti\": \"femti\",\n  \"femårsperioden\": \"femårsperiod\",\n  \"fenja\": \"fenj\",\n  \"fenre\": \"fenr\",\n  \"fenrisulven\": \"fenrisulv\",\n  \"ferd\": \"ferd\",\n  \"ferde\": \"ferd\",\n  \"ferden\": \"ferd\",\n  \"ferdes\": \"ferd\",\n  \"ferdig\": \"ferd\",\n  \"ferdige\": \"ferd\",\n  \"ferdiggjering\": \"ferdiggjering\",\n  \"ferdigheter\": \"ferd\",\n  \"ferdigstillast\": \"ferdigstill\",\n  \"ferdigstilles\": \"ferdigstill\",\n  \"ferdigstilling\": \"ferdigstilling\",\n  \"ferdigstillinga\": \"ferdigstilling\",\n  \"ferdigstilt\": \"ferdigstilt\",\n  \"ferdigstilte\": \"ferdigstilt\",\n  \"ferdigvarer\": \"ferdigvar\",\n  \"ferdsel\": \"ferdsel\",\n  \"fergen\": \"ferg\",\n  \"fergene\": \"ferg\",\n  \"ferger\": \"ferg\",\n  \"fergetilbud\": \"fergetilbud\",\n  \"fergetrafikk\": \"fergetrafikk\",\n  \"fergetrafikken\": \"fergetrafikk\",\n  \"ferje\": \"ferj\",\n  \"ferjeankomstene\": \"ferjeankomst\",\n  \"ferjefartens\": \"ferjefart\",\n  \"ferjeforbindelsen\": \"ferjeforbind\",\n  \"ferjeforbindelsene\": \"ferjeforbind\",\n  \"ferjehavnen\": \"ferjehavn\",\n  \"ferjehavner\": \"ferjehavn\",\n  \"ferjekai\": \"ferjekai\",\n  \"ferjelinjene\": \"ferjelinj\",\n  \"ferjelinjer\": \"ferjelinj\",\n  \"ferjen\": \"ferj\",\n  \"ferjene\": \"ferj\",\n  \"ferjer\": \"ferj\",\n  \"ferjerederiene\": \"ferjerederi\",\n  \"ferjerederier\": \"ferjerederi\",\n  \"ferjeruten\": \"ferjerut\",\n  \"ferjerutene\": \"ferjerut\",\n  \"ferjeruter\": \"ferjerut\",\n  \"ferjeterminalene\": \"ferjeterminal\",\n  \"ferjeterminaler\": \"ferjeterminal\",\n  \"ferjetrafikk\": \"ferjetrafikk\",\n  \"ferjetrafikken\": \"ferjetrafikk\",\n  \"ferrosilisium\": \"ferrosilisium\",\n  \"ferskere\": \"fersker\",\n  \"ferskvann\": \"ferskvann\",\n  \"ferskvannsgehalten\": \"ferskvannsgehalt\",\n  \"ferskvannstilførselen\": \"ferskvannstilførsel\",\n  \"fersum\": \"fersum\",\n  \"fest\": \"fest\",\n  \"festa\": \"fest\",\n  \"festar\": \"fest\",\n  \"feste\": \"fest\",\n  \"festen\": \"fest\",\n  \"fester\": \"fest\",\n  \"festet\": \"fest\",\n  \"festning\": \"festning\",\n  \"festningen\": \"festning\",\n  \"festningstunnelen\": \"festningstunnel\",\n  \"festningsverket\": \"festningsverk\",\n  \"festsal\": \"festsal\",\n  \"festsalen\": \"festsal\",\n  \"festsaler\": \"festsal\",\n  \"fet\": \"fet\",\n  \"fett\": \"fett\",\n  \"fid\": \"fid\",\n  \"fiende\": \"fiend\",\n  \"fiendeføtter\": \"fiendeføtt\",\n  \"fiendehæren\": \"fiendehær\",\n  \"fienden\": \"fiend\",\n  \"fiendene\": \"fiend\",\n  \"fiendens\": \"fiend\",\n  \"fiender\": \"fiend\",\n  \"fiendskap\": \"fiendskap\",\n  \"fiendtlig\": \"fiendt\",\n  \"figur\": \"figur\",\n  \"figurbetraktninger\": \"figurbetraktning\",\n  \"figuren\": \"figur\",\n  \"figurene\": \"figur\",\n  \"fikk\": \"fikk\",\n  \"fiktive\": \"fiktiv\",\n  \"filial\": \"filial\",\n  \"filialer\": \"filial\",\n  \"filialetablering\": \"filialetablering\",\n  \"filialvirksomhet\": \"filialvirksom\",\n  \"fililaler\": \"fililal\",\n  \"filipstad\": \"filipstad\",\n  \"filipstadområdet\": \"filipstadområd\",\n  \"filipstadterminalen\": \"filipstadterminal\",\n  \"filipstadutbygging\": \"filipstadutbygging\",\n  \"fillehaug\": \"fillehaug\",\n  \"fillene\": \"fill\",\n  \"filler\": \"fill\",\n  \"fillete\": \"fillet\",\n  \"fimafeng\": \"fimafeng\",\n  \"fimbul\": \"fimbul\",\n  \"fin\": \"fin\",\n  \"final\": \"final\",\n  \"finans\": \"finan\",\n  \"finansdepartementet\": \"finansdepartement\",\n  \"finansdepartementets\": \"finansdepartement\",\n  \"finanseringsvirksomhetsloven\": \"finanseringsvirksom\",\n  \"finansforetak\": \"finansforetak\",\n  \"finansiell\": \"finansiell\",\n  \"finansielle\": \"finansiell\",\n  \"finansielt\": \"finansielt\",\n  \"finansierast\": \"finansier\",\n  \"finansiere\": \"finansier\",\n  \"finansieres\": \"finansier\",\n  \"finansiering\": \"finansiering\",\n  \"finansieringa\": \"finansiering\",\n  \"finansieringen\": \"finansiering\",\n  \"finansierings\": \"finansiering\",\n  \"finansieringsføretak\": \"finansieringsføretak\",\n  \"finansieringskilde\": \"finansieringskild\",\n  \"finansieringsordning\": \"finansieringsordning\",\n  \"finansieringsordningar\": \"finansieringsordning\",\n  \"finansieringsplan\": \"finansieringsplan\",\n  \"finansieringsplanen\": \"finansieringsplan\",\n  \"finansieringsverksemd\": \"finansieringsverksemd\",\n  \"finansieringsverksemdslova\": \"finansieringsverksemd\",\n  \"finansieringsvirksomhet\": \"finansieringsvirksom\",\n  \"finansieringsvirksomhetsloven\": \"finansieringsvirksom\",\n  \"finansiert\": \"finansier\",\n  \"finansinnstillingen\": \"finansinnstilling\",\n  \"finansinntekter\": \"finansinntekt\",\n  \"finansinstitusjon\": \"finansinstitusjon\",\n  \"finansinstitusjonar\": \"finansinstitusjon\",\n  \"finansinstitusjonens\": \"finansinstitusjon\",\n  \"finansinstitusjoner\": \"finansinstitusjon\",\n  \"finanskomiteen\": \"finanskomite\",\n  \"finanskomiteens\": \"finanskomite\",\n  \"finansmarkedet\": \"finansmarked\",\n  \"finansmatematikk\": \"finansmatematikk\",\n  \"finansnæringen\": \"finansnæring\",\n  \"finanspolitikk\": \"finanspolitikk\",\n  \"finanssparing\": \"finanssparing\",\n  \"fine\": \"fin\",\n  \"finere\": \"finer\",\n  \"fineste\": \"finest\",\n  \"finger\": \"fing\",\n  \"fingre\": \"fingr\",\n  \"fingrene\": \"fingr\",\n  \"finland\": \"finland\",\n  \"finn\": \"finn\",\n  \"finnast\": \"finn\",\n  \"finne\": \"finn\",\n  \"finnenes\": \"finn\",\n  \"finner\": \"finn\",\n  \"finnes\": \"finn\",\n  \"finnmark\": \"finnmark\",\n  \"finrekne\": \"finrekn\",\n  \"finst\": \"finst\",\n  \"fint\": \"fint\",\n  \"fire\": \"fir\",\n  \"firedel\": \"firedel\",\n  \"firedelar\": \"firedel\",\n  \"firefelts\": \"firefelt\",\n  \"firkantede\": \"firkant\",\n  \"firma\": \"firm\",\n  \"firmaattest\": \"firmaattest\",\n  \"firmaet\": \"firma\",\n  \"firmateiknar\": \"firmateikn\",\n  \"fisjon\": \"fisjon\",\n  \"fisjoner\": \"fisjon\",\n  \"fisk\": \"fisk\",\n  \"fiskarlag\": \"fiskarlag\",\n  \"fiske\": \"fisk\",\n  \"fiskeeksport\": \"fiskeeksport\",\n  \"fiskelykke\": \"fiskelykk\",\n  \"fisken\": \"fisk\",\n  \"fiskens\": \"fisk\",\n  \"fiskeolje\": \"fiskeolj\",\n  \"fisker\": \"fisk\",\n  \"fiskere\": \"fisker\",\n  \"fiskeren\": \"fisker\",\n  \"fiskeridepartementet\": \"fiskeridepartement\",\n  \"fiskeridepartementets\": \"fiskeridepartement\",\n  \"fiskerihavner\": \"fiskerihavn\",\n  \"fiskerileder\": \"fiskeriled\",\n  \"fiskeriministeren\": \"fiskeriminister\",\n  \"fiskerinæringen\": \"fiskerinæring\",\n  \"fiskesalslaga\": \"fiskesalslag\",\n  \"fiskeskjell\": \"fiskeskjell\",\n  \"fiskestang\": \"fiskestang\",\n  \"fiskestangen\": \"fiskestang\",\n  \"fiskestenger\": \"fiskesteng\",\n  \"fisketur\": \"fisketur\",\n  \"fisketuren\": \"fisketur\",\n  \"fiskeværene\": \"fiskevær\",\n  \"fisks\": \"fisk\",\n  \"fistelstemme\": \"fistelstemm\",\n  \"fjalar\": \"fjal\",\n  \"fjas\": \"fjas\",\n  \"fjell\": \"fjell\",\n  \"fjellanlegg\": \"fjellanlegg\",\n  \"fjellene\": \"fjell\",\n  \"fjellet\": \"fjell\",\n  \"fjellfestningen\": \"fjellfestning\",\n  \"fjellgård\": \"fjellgård\",\n  \"fjellkløft\": \"fjellkløft\",\n  \"fjellknauser\": \"fjellknaus\",\n  \"fjells\": \"fjell\",\n  \"fjellsiden\": \"fjellsid\",\n  \"fjellsider\": \"fjellsid\",\n  \"fjerde\": \"fjerd\",\n  \"fjerdeparten\": \"fjerdepart\",\n  \"fjern\": \"fjern\",\n  \"fjerne\": \"fjern\",\n  \"fjerning\": \"fjerning\",\n  \"fjeset\": \"fjes\",\n  \"fjollete\": \"fjollet\",\n  \"fjord\": \"fjord\",\n  \"fjordane\": \"fjord\",\n  \"fjordarm\": \"fjordarm\",\n  \"fjordby\": \"fjordby\",\n  \"fjordbyen\": \"fjordby\",\n  \"fjordbyløsningen\": \"fjordbyløsning\",\n  \"fjordbyscenariet\": \"fjordbyscenari\",\n  \"fjorden\": \"fjord\",\n  \"fjorten\": \"fjort\",\n  \"fjær\": \"fjær\",\n  \"fjæresteinene\": \"fjærestein\",\n  \"fjærhammen\": \"fjærhamm\",\n  \"fjøset\": \"fjøs\",\n  \"fjøskone\": \"fjøskon\",\n  \"fl\": \"fl\",\n  \"flak\": \"flak\",\n  \"flakket\": \"flakk\",\n  \"flakse\": \"flaks\",\n  \"flaksende\": \"flaks\",\n  \"flakser\": \"flaks\",\n  \"flakvarp\": \"flakvarp\",\n  \"flakvarpområdet\": \"flakvarpområd\",\n  \"flammende\": \"flamm\",\n  \"flammene\": \"flamm\",\n  \"flammer\": \"flamm\",\n  \"flammesverd\": \"flammesverd\",\n  \"flammesverdet\": \"flammesverd\",\n  \"flaskehalsen\": \"flaskehals\",\n  \"flaskehalser\": \"flaskehals\",\n  \"flat\": \"flat\",\n  \"flate\": \"flat\",\n  \"flater\": \"flat\",\n  \"flatt\": \"flatt\",\n  \"flaum\": \"flaum\",\n  \"fleirbustadbustadhus\": \"fleirbustadbustadhus\",\n  \"fleirbustadhus\": \"fleirbustadhus\",\n  \"fleire\": \"fleir\",\n  \"fleirtal\": \"fleirtal\",\n  \"fleirtalet\": \"fleirtal\",\n  \"fleirtalskompetanse\": \"fleirtalskompetans\",\n  \"fleirtalskrav\": \"fleirtalskrav\",\n  \"fleirtalskrava\": \"fleirtalskrav\",\n  \"fleirtalskravet\": \"fleirtalskrav\",\n  \"fleirtalsmakt\": \"fleirtalsmakt\",\n  \"fleirtalsmisbruk\": \"fleirtalsmisbruk\",\n  \"fleirtalsmynde\": \"fleirtalsmynd\",\n  \"fleirtalsregelen\": \"fleirtalsregel\",\n  \"fleirtalsvedtak\": \"fleirtalsvedtak\",\n  \"flekken\": \"flekk\",\n  \"flekker\": \"flekk\",\n  \"flekkete\": \"flekket\",\n  \"fleksibel\": \"fleksibel\",\n  \"fleksibelt\": \"fleksibelt\",\n  \"fleksibilitet\": \"fleksibilit\",\n  \"fleksibiliteten\": \"fleksibilitet\",\n  \"fleksible\": \"fleksibl\",\n  \"flenger\": \"fleng\",\n  \"flere\": \"fler\",\n  \"flertall\": \"flertall\",\n  \"flertallet\": \"flertall\",\n  \"flertallets\": \"flertall\",\n  \"flertallsregelen\": \"flertallsregel\",\n  \"flesk\": \"flesk\",\n  \"flest\": \"flest\",\n  \"fleste\": \"flest\",\n  \"fletter\": \"flett\",\n  \"flettet\": \"flett\",\n  \"flg\": \"flg\",\n  \"flight\": \"flight\",\n  \"flimrer\": \"flimr\",\n  \"flink\": \"flink\",\n  \"flirer\": \"flir\",\n  \"flis\": \"flis\",\n  \"fliser\": \"flis\",\n  \"flodbølge\": \"flodbølg\",\n  \"flokete\": \"floket\",\n  \"flokk\": \"flokk\",\n  \"flokken\": \"flokk\",\n  \"flokker\": \"flokk\",\n  \"flora\": \"flor\",\n  \"flott\": \"flott\",\n  \"flotteste\": \"flottest\",\n  \"flua\": \"flua\",\n  \"flue\": \"flue\",\n  \"fluer\": \"fluer\",\n  \"flukt\": \"flukt\",\n  \"fly\": \"fly\",\n  \"flydrivstoff\": \"flydrivstoff\",\n  \"flykte\": \"flykt\",\n  \"flykter\": \"flykt\",\n  \"flyktningar\": \"flyktning\",\n  \"flyplasser\": \"flyplass\",\n  \"flyr\": \"flyr\",\n  \"flyt\": \"flyt\",\n  \"flytende\": \"flyt\",\n  \"flyter\": \"flyt\",\n  \"flytrafikk\": \"flytrafikk\",\n  \"flytransport\": \"flytransport\",\n  \"flytta\": \"flytt\",\n  \"flyttar\": \"flytt\",\n  \"flyttbar\": \"flyttb\",\n  \"flyttbare\": \"flyttbar\",\n  \"flyttbart\": \"flyttbart\",\n  \"flytte\": \"flytt\",\n  \"flytteadgang\": \"flytteadgang\",\n  \"flyttebestemmelse\": \"flyttebestemm\",\n  \"flytteforskriften\": \"flytteforskrift\",\n  \"flytter\": \"flytt\",\n  \"flytterett\": \"flytterett\",\n  \"flyttes\": \"flytt\",\n  \"flyttet\": \"flytt\",\n  \"flytting\": \"flytting\",\n  \"flyttingen\": \"flytting\",\n  \"flyvende\": \"flyv\",\n  \"flådd\": \"flådd\",\n  \"flår\": \"flår\",\n  \"flåte\": \"flåt\",\n  \"flåter\": \"flåt\",\n  \"fløy\": \"fløy\",\n  \"fnis\": \"fnis\",\n  \"fnise\": \"fnis\",\n  \"fnisende\": \"fnis\",\n  \"fniser\": \"fnis\",\n  \"fnyser\": \"fnys\",\n  \"fob\": \"fob\",\n  \"fokus\": \"fokus\",\n  \"fokuserast\": \"fokuser\",\n  \"fokusere\": \"fokuser\",\n  \"fokuserer\": \"fokuser\",\n  \"fokuseres\": \"fokuser\",\n  \"fokusert\": \"fokuser\",\n  \"folde\": \"fold\",\n  \"fole\": \"fol\",\n  \"folk\": \"folk\",\n  \"folkene\": \"folk\",\n  \"folkeparti\": \"folkeparti\",\n  \"folket\": \"folk\",\n  \"folketrygd\": \"folketrygd\",\n  \"folketrygda\": \"folketrygd\",\n  \"folketrygden\": \"folketrygd\",\n  \"folketrygdens\": \"folketrygd\",\n  \"folketrygdloven\": \"folketrygd\",\n  \"folketrygdlovens\": \"folketrygd\",\n  \"folketrygdpensjon\": \"folketrygdpensjon\",\n  \"folketrygdpensjonen\": \"folketrygdpensjon\",\n  \"folketrygdytelse\": \"folketrygdyt\",\n  \"folketrygdytelsen\": \"folketrygdyt\",\n  \"folkevalgte\": \"folkevalgt\",\n  \"folksomt\": \"folksomt\",\n  \"folkvang\": \"folkvang\",\n  \"follo\": \"follo\",\n  \"fond\": \"fond\",\n  \"fondene\": \"fond\",\n  \"fondering\": \"fondering\",\n  \"fondert\": \"fonder\",\n  \"fondet\": \"fond\",\n  \"fondets\": \"fond\",\n  \"fonds\": \"fond\",\n  \"fondsandeler\": \"fondsandel\",\n  \"fondsavkastning\": \"fondsavkastning\",\n  \"fondsinnskudd\": \"fondsinnskudd\",\n  \"fondskonstruksjoner\": \"fondskonstruksjon\",\n  \"fondsoppbyggede\": \"fondsoppbygg\",\n  \"fondsoppbygging\": \"fondsoppbygging\",\n  \"fonner\": \"fonn\",\n  \"foot\": \"foot\",\n  \"for\": \"for\",\n  \"forakter\": \"forakt\",\n  \"foran\": \"foran\",\n  \"forandre\": \"forandr\",\n  \"forandres\": \"forandr\",\n  \"forandret\": \"forandr\",\n  \"forankrast\": \"forankr\",\n  \"forankring\": \"forankring\",\n  \"forannevnte\": \"forannevnt\",\n  \"forarbeidene\": \"forarbeid\",\n  \"forarbeidet\": \"forarbeid\",\n  \"forargelse\": \"forarg\",\n  \"forarget\": \"forarg\",\n  \"forbannelse\": \"forbann\",\n  \"forbannelsen\": \"forbann\",\n  \"forbannelser\": \"forbann\",\n  \"forbannet\": \"forbann\",\n  \"forbauselse\": \"forbaus\",\n  \"forbedre\": \"forbedr\",\n  \"forbedres\": \"forbedr\",\n  \"forbedret\": \"forbedr\",\n  \"forbedring\": \"forbedring\",\n  \"forbedringene\": \"forbedring\",\n  \"forbedringer\": \"forbedring\",\n  \"forbehold\": \"forbehold\",\n  \"forberede\": \"forber\",\n  \"forberedelse\": \"forbered\",\n  \"forbereder\": \"forbered\",\n  \"forberedt\": \"forbered\",\n  \"forbi\": \"forbi\",\n  \"forbigått\": \"forbigått\",\n  \"forbindelse\": \"forbind\",\n  \"forbindelsen\": \"forbind\",\n  \"forbindelser\": \"forbind\",\n  \"forbinder\": \"forbind\",\n  \"forbli\": \"forbli\",\n  \"forblir\": \"forblir\",\n  \"forblitt\": \"forblitt\",\n  \"forblåste\": \"forblåst\",\n  \"forbod\": \"forbod\",\n  \"forboden\": \"forbod\",\n  \"forbodet\": \"forbod\",\n  \"forbrente\": \"forbrent\",\n  \"forbruk\": \"forbruk\",\n  \"forbrukar\": \"forbruk\",\n  \"forbrukarane\": \"forbrukar\",\n  \"forbrukarar\": \"forbrukar\",\n  \"forbrukaravtalar\": \"forbrukaravtal\",\n  \"forbrukare\": \"forbrukar\",\n  \"forbrukaren\": \"forbrukar\",\n  \"forbrukarforhold\": \"forbrukarforhold\",\n  \"forbrukarkjøp\": \"forbrukarkjøp\",\n  \"forbrukarkontor\": \"forbrukarkontor\",\n  \"forbrukarkooperative\": \"forbrukarkooperativ\",\n  \"forbrukarlovgjeving\": \"forbrukarlovgjeving\",\n  \"forbrukarlovgjevinga\": \"forbrukarlovgjeving\",\n  \"forbrukarombodet\": \"forbrukarombod\",\n  \"forbrukarorganisasjonar\": \"forbrukarorganisasjon\",\n  \"forbrukarpolitikk\": \"forbrukarpolitikk\",\n  \"forbrukarrådet\": \"forbrukarråd\",\n  \"forbrukarsamvirke\": \"forbrukarsamvirk\",\n  \"forbrukarsamvirkelag\": \"forbrukarsamvirkelag\",\n  \"forbrukarsamvirkelaga\": \"forbrukarsamvirkelag\",\n  \"forbrukarsamvirket\": \"forbrukarsamvirk\",\n  \"forbrukarstyrte\": \"forbrukarstyrt\",\n  \"forbrukartilhøve\": \"forbrukartilhøv\",\n  \"forbrukartvistar\": \"forbrukartvist\",\n  \"forbrukartvistutval\": \"forbrukartvistutval\",\n  \"forbrukartvistutvalet\": \"forbrukartvistutval\",\n  \"forbrukermarkeder\": \"forbrukermarked\",\n  \"forbruket\": \"forbruk\",\n  \"forbruksavhengige\": \"forbruksavheng\",\n  \"forbruksmessige\": \"forbruksmess\",\n  \"forbruksvarer\": \"forbruksvar\",\n  \"forbud\": \"forbud\",\n  \"forbudet\": \"forbud\",\n  \"forbudt\": \"forbud\",\n  \"forbundet\": \"forbund\",\n  \"forby\": \"forby\",\n  \"forbyr\": \"forbyr\",\n  \"fordel\": \"fordel\",\n  \"fordelaktig\": \"fordelakt\",\n  \"fordelane\": \"fordel\",\n  \"fordelar\": \"fordel\",\n  \"fordelast\": \"fordel\",\n  \"fordele\": \"fordel\",\n  \"fordelen\": \"fordel\",\n  \"fordelene\": \"fordel\",\n  \"fordeler\": \"fordel\",\n  \"fordeles\": \"fordel\",\n  \"fordeling\": \"fordeling\",\n  \"fordelinga\": \"fordeling\",\n  \"fordelingen\": \"fordeling\",\n  \"fordelinger\": \"fordeling\",\n  \"fordelingsmekanisme\": \"fordelingsmekanism\",\n  \"fordelingsmessig\": \"fordelingsmess\",\n  \"fordelingsmessige\": \"fordelingsmess\",\n  \"fordelingsnøkkel\": \"fordelingsnøkkel\",\n  \"fordelingsoppgaver\": \"fordelingsoppgav\",\n  \"fordelingspolitikken\": \"fordelingspolitikk\",\n  \"fordelingspolitiske\": \"fordelingspolitisk\",\n  \"fordelingsprofil\": \"fordelingsprofil\",\n  \"fordelingsprofilen\": \"fordelingsprofil\",\n  \"fordelingsreglane\": \"fordelingsregl\",\n  \"fordelingsreglene\": \"fordelingsregl\",\n  \"fordelingsscenarier\": \"fordelingsscenari\",\n  \"fordelingsspørsmåla\": \"fordelingsspørsmål\",\n  \"fordelingsvirkninger\": \"fordelingsvirkning\",\n  \"fordelsbeskattes\": \"fordelsbeskatt\",\n  \"fordelt\": \"fordelt\",\n  \"fordelte\": \"fordelt\",\n  \"forderung\": \"forderung\",\n  \"fordervelse\": \"forderv\",\n  \"fordi\": \"fordi\",\n  \"fordobling\": \"fordobling\",\n  \"fordre\": \"fordr\",\n  \"fordring\": \"fordring\",\n  \"fordringer\": \"fordring\",\n  \"fordringshavernes\": \"fordringshavern\",\n  \"fordyrende\": \"fordyr\",\n  \"fordømte\": \"fordømt\",\n  \"foredle\": \"foredl\",\n  \"foredling\": \"foredling\",\n  \"foredlingsrad\": \"foredlingsrad\",\n  \"foredlingsverksemder\": \"foredlingsverksemd\",\n  \"foregå\": \"foregå\",\n  \"foregående\": \"foregå\",\n  \"foregår\": \"foregår\",\n  \"foregått\": \"foregått\",\n  \"foreining\": \"foreining\",\n  \"foreininga\": \"foreining\",\n  \"foreiningane\": \"foreining\",\n  \"foreiningar\": \"foreining\",\n  \"foreiningskassa\": \"foreiningskass\",\n  \"foreiningsreglane\": \"foreiningsregl\",\n  \"forekomme\": \"forekomm\",\n  \"forekommer\": \"forekomm\",\n  \"forekommet\": \"forekomm\",\n  \"forelagt\": \"forelagt\",\n  \"forelda\": \"foreld\",\n  \"forelding\": \"forelding\",\n  \"foreldinga\": \"forelding\",\n  \"foreldingsfrist\": \"foreldingsfrist\",\n  \"foreldingsfristen\": \"foreldingsfrist\",\n  \"foreldingsregelen\": \"foreldingsregel\",\n  \"foreldre\": \"foreldr\",\n  \"foreldrene\": \"foreldr\",\n  \"forelegg\": \"forelegg\",\n  \"forelegges\": \"forelegg\",\n  \"foreligge\": \"foreligg\",\n  \"foreliggende\": \"foreligg\",\n  \"foreligger\": \"foreligg\",\n  \"forelskelser\": \"forelsk\",\n  \"forelsker\": \"forelsk\",\n  \"forelsket\": \"forelsk\",\n  \"forelå\": \"forelå\",\n  \"foreløbig\": \"foreløb\",\n  \"foreløpig\": \"foreløp\",\n  \"forene\": \"for\",\n  \"forening\": \"forening\",\n  \"foreningar\": \"forening\",\n  \"foreningen\": \"forening\",\n  \"foreningens\": \"forening\",\n  \"foreninger\": \"forening\",\n  \"forenings\": \"forening\",\n  \"foreningsandel\": \"foreningsandel\",\n  \"foreningsliv\": \"foreningsliv\",\n  \"forenkla\": \"forenkl\",\n  \"forenklende\": \"forenkl\",\n  \"forenklet\": \"forenkl\",\n  \"forenkling\": \"forenkling\",\n  \"forenklingar\": \"forenkling\",\n  \"forenlig\": \"foren\",\n  \"foreskrivs\": \"foreskriv\",\n  \"foreslo\": \"foreslo\",\n  \"foreslå\": \"foreslå\",\n  \"foreslår\": \"foreslår\",\n  \"foreslås\": \"foreslås\",\n  \"foreslått\": \"foreslått\",\n  \"foreslåtte\": \"foreslått\",\n  \"forestille\": \"forestill\",\n  \"forestå\": \"forestå\",\n  \"forestående\": \"forestå\",\n  \"forestår\": \"forestår\",\n  \"foresvinner\": \"foresvinn\",\n  \"foreta\": \"foret\",\n  \"foretak\": \"foretak\",\n  \"foretakene\": \"foretak\",\n  \"foretakenes\": \"foretak\",\n  \"foretaket\": \"foretak\",\n  \"foretakets\": \"foretak\",\n  \"foretakpensjonsordninger\": \"foretakpensjonsordning\",\n  \"foretaks\": \"foretaks\",\n  \"foretaksendringer\": \"foretaksendring\",\n  \"foretaksopprettet\": \"foretaksopprett\",\n  \"foretaksordning\": \"foretaksordning\",\n  \"foretaksordningen\": \"foretaksordning\",\n  \"foretaksorganisert\": \"foretaksorganiser\",\n  \"foretakspensjon\": \"foretakspensjon\",\n  \"foretakspensjonen\": \"foretakspensjon\",\n  \"foretakspensjoner\": \"foretakspensjon\",\n  \"foretakspensjonsforsikring\": \"foretakspensjonsforsikring\",\n  \"foretakspensjonsordning\": \"foretakspensjonsordning\",\n  \"foretakspensjonsordningen\": \"foretakspensjonsordning\",\n  \"foretakspensjonsordningene\": \"foretakspensjonsordning\",\n  \"foretakspensjonsordninger\": \"foretakspensjonsordning\",\n  \"foretakspensjonsordningers\": \"foretakspensjonsordning\",\n  \"foretaksstørrelse\": \"foretaksstørr\",\n  \"foretar\": \"foret\",\n  \"foretas\": \"foret\",\n  \"foretatt\": \"foretatt\",\n  \"foretatte\": \"foretatt\",\n  \"foretrekke\": \"foretrekk\",\n  \"forfall\": \"forfall\",\n  \"forfalle\": \"forfall\",\n  \"forfallen\": \"forfall\",\n  \"forfallsdagen\": \"forfallsdag\",\n  \"forfallstid\": \"forfallstid\",\n  \"forfallstidspunktet\": \"forfallstidspunkt\",\n  \"forfalne\": \"forfaln\",\n  \"forfalska\": \"forfalsk\",\n  \"forfalsking\": \"forfalsking\",\n  \"forfalte\": \"forfalt\",\n  \"forfattarverksemd\": \"forfattarverksemd\",\n  \"forfedre\": \"forfedr\",\n  \"forfell\": \"forfell\",\n  \"forferdet\": \"forferd\",\n  \"forfordelte\": \"forfordelt\",\n  \"forfulgt\": \"forfulgt\",\n  \"forfølger\": \"forfølg\",\n  \"forføye\": \"forføy\",\n  \"forføyer\": \"forføy\",\n  \"forgjeves\": \"forgjev\",\n  \"forgreininger\": \"forgreining\",\n  \"forhandla\": \"forhandl\",\n  \"forhandle\": \"forhandl\",\n  \"forhandler\": \"forhandl\",\n  \"forhandlet\": \"forhandl\",\n  \"forhandling\": \"forhandling\",\n  \"forhandlingar\": \"forhandling\",\n  \"forhandlinger\": \"forhandling\",\n  \"forhandlingssituasjon\": \"forhandlingssituasjon\",\n  \"forhandlingsspørsmål\": \"forhandlingsspørsmål\",\n  \"forhekselse\": \"forheks\",\n  \"forhindre\": \"forhindr\",\n  \"forhindrer\": \"forhindr\",\n  \"forhindret\": \"forhindr\",\n  \"forhold\": \"forhold\",\n  \"forholda\": \"forhold\",\n  \"forholde\": \"forhold\",\n  \"forholdene\": \"forhold\",\n  \"forholder\": \"forhold\",\n  \"forholdet\": \"forhold\",\n  \"forholdsmessig\": \"forholdsmess\",\n  \"forholdsmessige\": \"forholdsmess\",\n  \"forholdsmessighet\": \"forholdsmess\",\n  \"forholdsmessighetprinsippet\": \"forholdsmessighetprinsipp\",\n  \"forholdsmessighetskriterier\": \"forholdsmessighetskriteri\",\n  \"forholdsmessighetsprinsipp\": \"forholdsmessighetsprinsipp\",\n  \"forholdsmessighetsprinsippet\": \"forholdsmessighetsprinsipp\",\n  \"forholdsvis\": \"forholdsvis\",\n  \"forholdt\": \"forhold\",\n  \"forhånd\": \"forhånd\",\n  \"forhåndsavgjørelse\": \"forhåndsavgjør\",\n  \"forhåndsavgjørelser\": \"forhåndsavgjør\",\n  \"forhåndsfinansieres\": \"forhåndsfinansier\",\n  \"forhåndsfinansiert\": \"forhåndsfinansier\",\n  \"forhåndssikres\": \"forhåndssikr\",\n  \"forhøye\": \"forhøy\",\n  \"forhøyes\": \"forhøy\",\n  \"forhøyet\": \"forhøy\",\n  \"forkant\": \"forkant\",\n  \"forkasta\": \"forkast\",\n  \"forkaste\": \"forkast\",\n  \"forkastet\": \"forkast\",\n  \"forkasting\": \"forkasting\",\n  \"forkjøpsrett\": \"forkjøpsrett\",\n  \"forkjøpsrettane\": \"forkjøpsrett\",\n  \"forkjøpsrettar\": \"forkjøpsrett\",\n  \"forkjøpsretten\": \"forkjøpsrett\",\n  \"forkjøpsretthavaren\": \"forkjøpsretthavar\",\n  \"forkjøpsrettshavar\": \"forkjøpsrettshav\",\n  \"forkjøpsrettshavarane\": \"forkjøpsrettshavar\",\n  \"forkjøpsrettshavarar\": \"forkjøpsrettshavar\",\n  \"forkjøpsrettshavaren\": \"forkjøpsrettshavar\",\n  \"forkjøpsspørsmålet\": \"forkjøpsspørsmål\",\n  \"forklare\": \"forklar\",\n  \"forklarer\": \"forklar\",\n  \"forklares\": \"forklar\",\n  \"forklaring\": \"forklaring\",\n  \"forklaringer\": \"forklaring\",\n  \"forklart\": \"forklart\",\n  \"forkledd\": \"forkledd\",\n  \"forkledning\": \"forkledning\",\n  \"forkledningen\": \"forkledning\",\n  \"forkledninger\": \"forkledning\",\n  \"forkler\": \"forkl\",\n  \"forklet\": \"forkl\",\n  \"forklåre\": \"forklår\",\n  \"forklåring\": \"forklåring\",\n  \"forklåringa\": \"forklåring\",\n  \"forkortes\": \"forkort\",\n  \"forlag\": \"forlag\",\n  \"forlaget\": \"forlag\",\n  \"forlagsinsatser\": \"forlagsinsats\",\n  \"forlagskapital\": \"forlagskapital\",\n  \"forlagt\": \"forlagt\",\n  \"forlangast\": \"forlang\",\n  \"forlanger\": \"forlang\",\n  \"forlate\": \"forlat\",\n  \"forlatt\": \"forlatt\",\n  \"forleden\": \"forled\",\n  \"forlengede\": \"forleng\",\n  \"forlengelse\": \"forleng\",\n  \"forlengelsen\": \"forleng\",\n  \"forlenget\": \"forleng\",\n  \"forlik\": \"forlik\",\n  \"forliksråda\": \"forliksråd\",\n  \"forliksrådet\": \"forliksråd\",\n  \"forlikt\": \"forlikt\",\n  \"forlikte\": \"forlikt\",\n  \"forlot\": \"forlot\",\n  \"forløp\": \"forløp\",\n  \"form\": \"form\",\n  \"forma\": \"form\",\n  \"formalia\": \"formali\",\n  \"formalisering\": \"formalisering\",\n  \"formalisert\": \"formaliser\",\n  \"formaliserte\": \"formaliser\",\n  \"formannskap\": \"formannskap\",\n  \"formannskapet\": \"formannskap\",\n  \"formannskapets\": \"formannskap\",\n  \"forme\": \"form\",\n  \"formell\": \"formell\",\n  \"formelle\": \"formell\",\n  \"formelt\": \"formelt\",\n  \"formen\": \"form\",\n  \"formene\": \"form\",\n  \"former\": \"form\",\n  \"formet\": \"form\",\n  \"formidabel\": \"formidabel\",\n  \"formidable\": \"formidabl\",\n  \"formidla\": \"formidl\",\n  \"formidlar\": \"formidl\",\n  \"formidlarane\": \"formidlar\",\n  \"formidlarar\": \"formidlar\",\n  \"formidler\": \"formidl\",\n  \"formidling\": \"formidling\",\n  \"formidlinga\": \"formidling\",\n  \"formidlingsoppdrag\": \"formidlingsoppdrag\",\n  \"formidlingsverksemd\": \"formidlingsverksemd\",\n  \"formidlingsverksemda\": \"formidlingsverksemd\",\n  \"formkrav\": \"formkrav\",\n  \"formodentlig\": \"formodent\",\n  \"formodning\": \"formodning\",\n  \"formodningen\": \"formodning\",\n  \"formue\": \"formu\",\n  \"formueforvaltning\": \"formueforvaltning\",\n  \"formueforvaltninga\": \"formueforvaltning\",\n  \"formuen\": \"formu\",\n  \"formuesbeskatning\": \"formuesbeskatning\",\n  \"formuesbeskattes\": \"formuesbeskatt\",\n  \"formuesdata\": \"formuesdat\",\n  \"formueselementer\": \"formueselement\",\n  \"formuesforøkelse\": \"formuesforøk\",\n  \"formuesgoda\": \"formuesgod\",\n  \"formuesgode\": \"formuesgod\",\n  \"formuesgoder\": \"formuesgod\",\n  \"formuesgodet\": \"formuesgod\",\n  \"formuesgrupper\": \"formuesgrupp\",\n  \"formuesmasse\": \"formuesmass\",\n  \"formuesobjekt\": \"formuesobjekt\",\n  \"formuesoppbygginga\": \"formuesoppbygging\",\n  \"formuesskatt\": \"formuesskatt\",\n  \"formuesskattegrunnlaget\": \"formuesskattegrunnlag\",\n  \"formuesskatten\": \"formuesskatt\",\n  \"formuesskatteplikt\": \"formuesskatteplikt\",\n  \"formuesskattepliktig\": \"formuesskatteplikt\",\n  \"formuesverdien\": \"formuesverdi\",\n  \"formuesøkning\": \"formuesøkning\",\n  \"formuesøkningen\": \"formuesøkning\",\n  \"formulerast\": \"formuler\",\n  \"formulering\": \"formulering\",\n  \"formuleringa\": \"formulering\",\n  \"formuleringar\": \"formulering\",\n  \"formuleringen\": \"formulering\",\n  \"formulert\": \"formuler\",\n  \"formulerte\": \"formuler\",\n  \"formynderargument\": \"formynderargument\",\n  \"formål\": \"formål\",\n  \"formålet\": \"formål\",\n  \"formålstjenlige\": \"formålstjen\",\n  \"fornemmer\": \"fornemm\",\n  \"fornuft\": \"fornuft\",\n  \"fornuftens\": \"fornuft\",\n  \"fornuftig\": \"fornuft\",\n  \"fornuftsmessige\": \"fornuftsmess\",\n  \"fornyelse\": \"forny\",\n  \"fornyet\": \"forny\",\n  \"fornying\": \"fornying\",\n  \"fornærmer\": \"fornærm\",\n  \"fornærmet\": \"fornærm\",\n  \"fornøyd\": \"fornøyd\",\n  \"fornøyde\": \"fornøyd\",\n  \"forpinte\": \"forpint\",\n  \"forplikta\": \"forplikt\",\n  \"forpliktar\": \"forplikt\",\n  \"forpliktelse\": \"forplikt\",\n  \"forpliktelsene\": \"forplikt\",\n  \"forpliktelser\": \"forplikt\",\n  \"forpliktende\": \"forplikt\",\n  \"forpliktet\": \"forplikt\",\n  \"forrang\": \"forrang\",\n  \"forrenta\": \"forrent\",\n  \"forrentast\": \"forrent\",\n  \"forrenting\": \"forrenting\",\n  \"forresten\": \"forrest\",\n  \"forretningsbygg\": \"forretningsbygg\",\n  \"forretningsdrift\": \"forretningsdrift\",\n  \"forretningseigedommar\": \"forretningseigedomm\",\n  \"forretningsførar\": \"forretningsfør\",\n  \"forretningsførarane\": \"forretningsførar\",\n  \"forretningsførarar\": \"forretningsførar\",\n  \"forretningsføraravtalane\": \"forretningsføraravtal\",\n  \"forretningsføraravtalar\": \"forretningsføraravtal\",\n  \"forretningsføraravtale\": \"forretningsføraravtal\",\n  \"forretningsføraravtalen\": \"forretningsføraravtal\",\n  \"forretningsføraren\": \"forretningsførar\",\n  \"forretningsførarforhold\": \"forretningsførarforhold\",\n  \"forretningsførarhonorar\": \"forretningsførarhonor\",\n  \"forretningsførarhonoraret\": \"forretningsførarhonorar\",\n  \"forretningsførarkontraktar\": \"forretningsførarkontrakt\",\n  \"forretningsføraroppdraga\": \"forretningsføraroppdrag\",\n  \"forretningsføraroppgåver\": \"forretningsføraroppgåv\",\n  \"forretningsførarstyre\": \"forretningsførarstyr\",\n  \"forretningsførarverksemda\": \"forretningsførarverksemd\",\n  \"forretningsføretak\": \"forretningsføretak\",\n  \"forretningsførsel\": \"forretningsførsel\",\n  \"forretningsførselen\": \"forretningsførsel\",\n  \"forretningskommunar\": \"forretningskommun\",\n  \"forretningskontor\": \"forretningskontor\",\n  \"forretningskontoret\": \"forretningskontor\",\n  \"forretningslokale\": \"forretningslokal\",\n  \"forretningsmessig\": \"forretningsmess\",\n  \"forretningsmessige\": \"forretningsmess\",\n  \"forretningsområda\": \"forretningsområd\",\n  \"forretningspraksis\": \"forretningspraksis\",\n  \"forretningsstaden\": \"forretningsstad\",\n  \"forretningssted\": \"forretningssted\",\n  \"forretningsverksemd\": \"forretningsverksemd\",\n  \"forrige\": \"forr\",\n  \"forringa\": \"forring\",\n  \"forringelse\": \"forring\",\n  \"forringing\": \"forringing\",\n  \"forrykking\": \"forrykking\",\n  \"forrykkje\": \"forrykkj\",\n  \"forrykkjer\": \"forrykkj\",\n  \"forråtnelse\": \"forråtn\",\n  \"forsamlingar\": \"forsamling\",\n  \"forseinka\": \"forseink\",\n  \"forseinking\": \"forseinking\",\n  \"forseinkingsrente\": \"forseinkingsrent\",\n  \"forseinkingstilfelle\": \"forseinkingstilfell\",\n  \"forsendelsene\": \"forsend\",\n  \"forsendelser\": \"forsend\",\n  \"forseres\": \"forser\",\n  \"forseringer\": \"forsering\",\n  \"forsert\": \"forser\",\n  \"forsete\": \"forset\",\n  \"forsettleg\": \"forsett\",\n  \"forsettlege\": \"forsett\",\n  \"forsikre\": \"forsikr\",\n  \"forsikrede\": \"forsikr\",\n  \"forsikrer\": \"forsikr\",\n  \"forsikring\": \"forsikring\",\n  \"forsikringa\": \"forsikring\",\n  \"forsikringane\": \"forsikring\",\n  \"forsikringar\": \"forsikring\",\n  \"forsikringen\": \"forsikring\",\n  \"forsikringene\": \"forsikring\",\n  \"forsikringens\": \"forsikring\",\n  \"forsikringer\": \"forsikring\",\n  \"forsikrings\": \"forsikring\",\n  \"forsikringsavtale\": \"forsikringsavtal\",\n  \"forsikringsavtaleloven\": \"forsikringsavtal\",\n  \"forsikringsavtalen\": \"forsikringsavtal\",\n  \"forsikringsavtalene\": \"forsikringsavtal\",\n  \"forsikringsavtaler\": \"forsikringsavtal\",\n  \"forsikringsbasert\": \"forsikringsbaser\",\n  \"forsikringsbaserte\": \"forsikringsbaser\",\n  \"forsikringsbeløpet\": \"forsikringsbeløp\",\n  \"forsikringsbransjen\": \"forsikringsbransj\",\n  \"forsikringselement\": \"forsikringselement\",\n  \"forsikringselementer\": \"forsikringselement\",\n  \"forsikringsfond\": \"forsikringsfond\",\n  \"forsikringsfondet\": \"forsikringsfond\",\n  \"forsikringsforbund\": \"forsikringsforbund\",\n  \"forsikringsform\": \"forsikringsform\",\n  \"forsikringsformer\": \"forsikringsform\",\n  \"forsikringsforpliktelser\": \"forsikringsforplikt\",\n  \"forsikringsgaranti\": \"forsikringsgaranti\",\n  \"forsikringsinstitusjoner\": \"forsikringsinstitusjon\",\n  \"forsikringskapital\": \"forsikringskapital\",\n  \"forsikringsklasser\": \"forsikringsklass\",\n  \"forsikringskollektiv\": \"forsikringskollektiv\",\n  \"forsikringskollektivet\": \"forsikringskollektiv\",\n  \"forsikringskontrakt\": \"forsikringskontrakt\",\n  \"forsikringskontraktene\": \"forsikringskontrakt\",\n  \"forsikringskontrakter\": \"forsikringskontrakt\",\n  \"forsikringsløsning\": \"forsikringsløsning\",\n  \"forsikringsløsninger\": \"forsikringsløsning\",\n  \"forsikringsmekanismen\": \"forsikringsmekanism\",\n  \"forsikringsmeklarar\": \"forsikringsmeklar\",\n  \"forsikringsmessig\": \"forsikringsmess\",\n  \"forsikringsmessige\": \"forsikringsmess\",\n  \"forsikringsmuligheter\": \"forsikringsmu\",\n  \"forsikringsområdet\": \"forsikringsområd\",\n  \"forsikringsordning\": \"forsikringsordning\",\n  \"forsikringsordninger\": \"forsikringsordning\",\n  \"forsikringsorganisert\": \"forsikringsorganiser\",\n  \"forsikringspoliser\": \"forsikringspolis\",\n  \"forsikringspremiar\": \"forsikringspremi\",\n  \"forsikringsprodukt\": \"forsikringsprodukt\",\n  \"forsikringsprodukter\": \"forsikringsprodukt\",\n  \"forsikringsrisiko\": \"forsikringsrisiko\",\n  \"forsikringsselskap\": \"forsikringsselskap\",\n  \"forsikringsselskapene\": \"forsikringsselskap\",\n  \"forsikringsselskaper\": \"forsikringsselskap\",\n  \"forsikringsselskapers\": \"forsikringsselskap\",\n  \"forsikringsselskapet\": \"forsikringsselskap\",\n  \"forsikringsspørsmål\": \"forsikringsspørsmål\",\n  \"forsikringssum\": \"forsikringssum\",\n  \"forsikringstaker\": \"forsikringstak\",\n  \"forsikringstakeren\": \"forsikringstaker\",\n  \"forsikringstakerne\": \"forsikringstakern\",\n  \"forsikringsteknisk\": \"forsikringsteknisk\",\n  \"forsikringstekniske\": \"forsikringsteknisk\",\n  \"forsikringstid\": \"forsikringstid\",\n  \"forsikringstiden\": \"forsikringstid\",\n  \"forsikringstilfellet\": \"forsikringstilfell\",\n  \"forsikringsvilkårene\": \"forsikringsvilkår\",\n  \"forsikringsvirksomhet\": \"forsikringsvirksom\",\n  \"forsikringsvirksomhetsloven\": \"forsikringsvirksom\",\n  \"forsikringsvirksomhetslovens\": \"forsikringsvirksom\",\n  \"forsikringsytelsen\": \"forsikringsyt\",\n  \"forsikringsytelsene\": \"forsikringsyt\",\n  \"forsiktig\": \"forsikt\",\n  \"forsiktige\": \"forsikt\",\n  \"forsiktighet\": \"forsikt\",\n  \"forsiktighetshensyn\": \"forsiktighetshensyn\",\n  \"forsinkelser\": \"forsink\",\n  \"forsinket\": \"forsink\",\n  \"forsker\": \"forsk\",\n  \"forskjell\": \"forskjell\",\n  \"forskjellen\": \"forskjell\",\n  \"forskjellene\": \"forskjell\",\n  \"forskjeller\": \"forskjell\",\n  \"forskjellig\": \"forskjel\",\n  \"forskjellige\": \"forskjel\",\n  \"forskjellsbehandle\": \"forskjellsbehandl\",\n  \"forskjellsbehandling\": \"forskjellsbehandling\",\n  \"forskning\": \"forskning\",\n  \"forskningsinstitutter\": \"forskningsinstitutt\",\n  \"forskot\": \"forskot\",\n  \"forskota\": \"forskot\",\n  \"forskotet\": \"forskot\",\n  \"forskotsbetaling\": \"forskotsbetaling\",\n  \"forskrekket\": \"forskrekk\",\n  \"forskrift\": \"forskrift\",\n  \"forskrifta\": \"forskrift\",\n  \"forskriften\": \"forskrift\",\n  \"forskriftene\": \"forskrift\",\n  \"forskriftens\": \"forskrift\",\n  \"forskrifter\": \"forskrift\",\n  \"forskrifts\": \"forskrift\",\n  \"forskriftshjemmel\": \"forskriftshjemmel\",\n  \"forskriftsverket\": \"forskriftsverk\",\n  \"forskuddsbetaling\": \"forskuddsbetaling\",\n  \"forskuddsbetalt\": \"forskuddsbetalt\",\n  \"forskuddsfinansierte\": \"forskuddsfinansier\",\n  \"forskuddsinnskudd\": \"forskuddsinnskudd\",\n  \"forskuddspremie\": \"forskuddspremi\",\n  \"forskuddsvis\": \"forskuddsvis\",\n  \"forskyvning\": \"forskyvning\",\n  \"forslag\": \"forslag\",\n  \"forslagene\": \"forslag\",\n  \"forslaget\": \"forslag\",\n  \"forslagets\": \"forslag\",\n  \"forslitte\": \"forslitt\",\n  \"forslår\": \"forslår\",\n  \"forsprang\": \"forsprang\",\n  \"forspranget\": \"forsprang\",\n  \"forstand\": \"forstand\",\n  \"forstandardskapet\": \"forstandardskap\",\n  \"forstandarskapet\": \"forstandarskap\",\n  \"forstanden\": \"forstand\",\n  \"forstarkt\": \"forstarkt\",\n  \"forsterke\": \"forsterk\",\n  \"forsterker\": \"forsterk\",\n  \"forsterkes\": \"forsterk\",\n  \"forsterket\": \"forsterk\",\n  \"forsto\": \"forsto\",\n  \"forstod\": \"forstod\",\n  \"forstoffer\": \"forstoff\",\n  \"forstsetter\": \"forstsett\",\n  \"forstyrre\": \"forstyrr\",\n  \"forstyrrelser\": \"forstyrr\",\n  \"forstå\": \"forstå\",\n  \"forståelig\": \"forstå\",\n  \"forståelse\": \"forstå\",\n  \"forståelsen\": \"forstå\",\n  \"forståelsesfull\": \"forståelsesfull\",\n  \"forståing\": \"forståing\",\n  \"forståinga\": \"forståing\",\n  \"forstår\": \"forstår\",\n  \"forstås\": \"forstås\",\n  \"forstått\": \"forstått\",\n  \"forstørrelsesglass\": \"forstørrelsesglass\",\n  \"forsvant\": \"forsvant\",\n  \"forsvarar\": \"forsvar\",\n  \"forsvarast\": \"forsvar\",\n  \"forsvare\": \"forsvar\",\n  \"forsvarer\": \"forsvar\",\n  \"forsvares\": \"forsvar\",\n  \"forsvaret\": \"forsvar\",\n  \"forsvarleg\": \"forsvar\",\n  \"forsvarlege\": \"forsvar\",\n  \"forsvarlig\": \"forsvar\",\n  \"forsvarsmessig\": \"forsvarsmess\",\n  \"forsvart\": \"forsvart\",\n  \"forsvinne\": \"forsvinn\",\n  \"forsvinner\": \"forsvinn\",\n  \"forsvunnet\": \"forsvunn\",\n  \"forsyningsberedskap\": \"forsyningsberedskap\",\n  \"forsyningsberedskapen\": \"forsyningsberedskap\",\n  \"forsøk\": \"forsøk\",\n  \"forsøke\": \"forsøk\",\n  \"forsøker\": \"forsøk\",\n  \"forsøksordningar\": \"forsøksordning\",\n  \"forsøkt\": \"forsøkt\",\n  \"forsøme\": \"forsøm\",\n  \"forsømer\": \"forsøm\",\n  \"forsøming\": \"forsøming\",\n  \"forsømt\": \"forsømt\",\n  \"forsørge\": \"forsørg\",\n  \"forsørgelsesbyrdene\": \"forsørgelsesbyrd\",\n  \"forsørget\": \"forsørg\",\n  \"fort\": \"fort\",\n  \"fortalt\": \"fortalt\",\n  \"fortalte\": \"fortalt\",\n  \"fortell\": \"fortell\",\n  \"fortelle\": \"fortell\",\n  \"forteller\": \"fortell\",\n  \"forteneste\": \"fortenest\",\n  \"fortere\": \"forter\",\n  \"fortid\": \"fortid\",\n  \"fortjener\": \"fortjen\",\n  \"fortjent\": \"fortjent\",\n  \"fortolkinga\": \"fortolking\",\n  \"fortolkning\": \"fortolkning\",\n  \"fortolles\": \"fortoll\",\n  \"fortollet\": \"fortoll\",\n  \"fortolling\": \"fortolling\",\n  \"fortollingssted\": \"fortollingssted\",\n  \"fortrengde\": \"fortrengd\",\n  \"fortrenger\": \"fortreng\",\n  \"fortrengje\": \"fortrengj\",\n  \"fortrengning\": \"fortrengning\",\n  \"fortrinn\": \"fortrinn\",\n  \"fortrinnsvis\": \"fortrinnsvis\",\n  \"fortrolige\": \"fortro\",\n  \"fortrolighet\": \"fortro\",\n  \"fortsatt\": \"fortsatt\",\n  \"fortsatte\": \"fortsatt\",\n  \"fortsette\": \"fortsett\",\n  \"fortsettelse\": \"fortsett\",\n  \"fortsettelsesforsikring\": \"fortsettelsesforsikring\",\n  \"fortsettelsesforsikringen\": \"fortsettelsesforsikring\",\n  \"fortsettelsesforsikringer\": \"fortsettelsesforsikring\",\n  \"fortsettelsessikring\": \"fortsettelsessikring\",\n  \"fortsetter\": \"fortsett\",\n  \"fortumlet\": \"fortuml\",\n  \"fortvilelse\": \"fortvil\",\n  \"fortvilet\": \"fortvil\",\n  \"fortærende\": \"fortær\",\n  \"fortøyningene\": \"fortøyning\",\n  \"fortøyninger\": \"fortøyning\",\n  \"forum\": \"forum\",\n  \"forunderlig\": \"forunder\",\n  \"forunderlige\": \"forunder\",\n  \"forundret\": \"forundr\",\n  \"forundring\": \"forundring\",\n  \"forureining\": \"forureining\",\n  \"forurensing\": \"forurensing\",\n  \"forurensingsmål\": \"forurensingsmål\",\n  \"forurensning\": \"forurensning\",\n  \"forut\": \"forut\",\n  \"forutberegnelighet\": \"forutberegn\",\n  \"foruten\": \"forut\",\n  \"forutgående\": \"forutgå\",\n  \"forutsatt\": \"forutsatt\",\n  \"forutsatte\": \"forutsatt\",\n  \"forutseielege\": \"forutsei\",\n  \"forutses\": \"foruts\",\n  \"forutsetning\": \"forutsetning\",\n  \"forutsetningen\": \"forutsetning\",\n  \"forutsetningene\": \"forutsetning\",\n  \"forutsetninger\": \"forutsetning\",\n  \"forutsetningsvis\": \"forutsetningsvis\",\n  \"forutsette\": \"forutsett\",\n  \"forutsetter\": \"forutsett\",\n  \"forutsettes\": \"forutsett\",\n  \"forutsies\": \"forutsi\",\n  \"forutsigbar\": \"forutsigb\",\n  \"forutsigbarhet\": \"forutsigbar\",\n  \"forvalta\": \"forvalt\",\n  \"forvaltar\": \"forvalt\",\n  \"forvaltarar\": \"forvaltar\",\n  \"forvaltaren\": \"forvaltar\",\n  \"forvaltarrolle\": \"forvaltarroll\",\n  \"forvaltast\": \"forvalt\",\n  \"forvalte\": \"forvalt\",\n  \"forvalter\": \"forvalt\",\n  \"forvalterens\": \"forvalter\",\n  \"forvaltes\": \"forvalt\",\n  \"forvaltet\": \"forvalt\",\n  \"forvaltinga\": \"forvalting\",\n  \"forvaltning\": \"forvaltning\",\n  \"forvaltninga\": \"forvaltning\",\n  \"forvaltningen\": \"forvaltning\",\n  \"forvaltningsalternativene\": \"forvaltningsalternativ\",\n  \"forvaltningsavtalar\": \"forvaltningsavtal\",\n  \"forvaltningsenhet\": \"forvaltningsen\",\n  \"forvaltningsforetak\": \"forvaltningsforetak\",\n  \"forvaltningsinstitusjon\": \"forvaltningsinstitusjon\",\n  \"forvaltningsinstitusjonen\": \"forvaltningsinstitusjon\",\n  \"forvaltningsinstitusjonens\": \"forvaltningsinstitusjon\",\n  \"forvaltningskapital\": \"forvaltningskapital\",\n  \"forvaltningskontrakt\": \"forvaltningskontrakt\",\n  \"forvaltningskostnader\": \"forvaltningskostnad\",\n  \"forvaltningslova\": \"forvaltning\",\n  \"forvaltningsloven\": \"forvaltning\",\n  \"forvaltningsmessige\": \"forvaltningsmess\",\n  \"forvaltningsoppdraget\": \"forvaltningsoppdrag\",\n  \"forvaltningsoppgåve\": \"forvaltningsoppgåv\",\n  \"forvaltningsoppgåvene\": \"forvaltningsoppgåv\",\n  \"forvaltningsoppgåver\": \"forvaltningsoppgåv\",\n  \"forvaltningsorgan\": \"forvaltningsorgan\",\n  \"forvaltningspraksis\": \"forvaltningspraksis\",\n  \"forvaltningsprodukter\": \"forvaltningsprodukt\",\n  \"forvaltningsrettane\": \"forvaltningsrett\",\n  \"forvaltningsrettar\": \"forvaltningsrett\",\n  \"forvaltningsselskap\": \"forvaltningsselskap\",\n  \"forvaltningsselskaper\": \"forvaltningsselskap\",\n  \"forvaltningsselskapet\": \"forvaltningsselskap\",\n  \"forvaltningsspørsmålet\": \"forvaltningsspørsmål\",\n  \"forvaltningstenestene\": \"forvaltningstenest\",\n  \"forvaltningstenester\": \"forvaltningstenest\",\n  \"forvaltningsverksemd\": \"forvaltningsverksemd\",\n  \"forvaltningsverksemda\": \"forvaltningsverksemd\",\n  \"forvandler\": \"forvandl\",\n  \"forvandles\": \"forvandl\",\n  \"forvandlet\": \"forvandl\",\n  \"forvandling\": \"forvandling\",\n  \"forvente\": \"forvent\",\n  \"forventede\": \"forvent\",\n  \"forventer\": \"forvent\",\n  \"forventes\": \"forvent\",\n  \"forventet\": \"forvent\",\n  \"forventninger\": \"forventning\",\n  \"forvirret\": \"forvirr\",\n  \"forvirring\": \"forvirring\",\n  \"forvirringens\": \"forvirring\",\n  \"forårsaket\": \"forårsak\",\n  \"forøvrig\": \"forøvr\",\n  \"foss\": \"foss\",\n  \"fossefall\": \"fossefall\",\n  \"fossen\": \"foss\",\n  \"fosser\": \"foss\",\n  \"fosset\": \"foss\",\n  \"fosterbarn\": \"fosterbarn\",\n  \"fosterborn\": \"fosterborn\",\n  \"fosterbror\": \"fosterbror\",\n  \"fosterbroren\": \"fosterbror\",\n  \"fosterfar\": \"fosterf\",\n  \"fostermoren\": \"fostermor\",\n  \"fostersønn\": \"fostersønn\",\n  \"fostre\": \"fostr\",\n  \"fostret\": \"fostr\",\n  \"fot\": \"fot\",\n  \"foten\": \"fot\",\n  \"fotnote\": \"fotnot\",\n  \"fotografere\": \"fotografer\",\n  \"fots\": \"fot\",\n  \"fotside\": \"fotsid\",\n  \"fottøyet\": \"fottøy\",\n  \"fra\": \"fra\",\n  \"fradrag\": \"fradrag\",\n  \"fradraget\": \"fradrag\",\n  \"fradragsbegrensning\": \"fradragsbegrensning\",\n  \"fradragsberettigede\": \"fradragsberett\",\n  \"fradragsberettiget\": \"fradragsberett\",\n  \"fradragshjemmel\": \"fradragshjemmel\",\n  \"fradragsramme\": \"fradragsramm\",\n  \"fradragsrammen\": \"fradragsramm\",\n  \"fradragsrammer\": \"fradragsramm\",\n  \"fradragsreglene\": \"fradragsregl\",\n  \"fradragsregler\": \"fradragsregl\",\n  \"fradragsrett\": \"fradragsrett\",\n  \"fradragsretten\": \"fradragsrett\",\n  \"fraflyttede\": \"fraflytt\",\n  \"fragmenter\": \"fragment\",\n  \"fragmentert\": \"fragmenter\",\n  \"frakt\": \"frakt\",\n  \"fraktdistansen\": \"fraktdistans\",\n  \"frakte\": \"frakt\",\n  \"frakter\": \"frakt\",\n  \"fraktes\": \"frakt\",\n  \"fraktet\": \"frakt\",\n  \"fraktkostnadene\": \"fraktkostnad\",\n  \"fraktkostnader\": \"fraktkostnad\",\n  \"fraktområdet\": \"fraktområd\",\n  \"fraktraten\": \"fraktrat\",\n  \"fraktratene\": \"fraktrat\",\n  \"fraktrater\": \"fraktrat\",\n  \"fraktruter\": \"fraktrut\",\n  \"fraktsammenheng\": \"fraktsammenheng\",\n  \"fraktskip\": \"fraktskip\",\n  \"fram\": \"fram\",\n  \"framfor\": \"framfor\",\n  \"framføring\": \"framføring\",\n  \"framføringstid\": \"framføringstid\",\n  \"framgangsmåtar\": \"framgangsmåt\",\n  \"framgangsmåte\": \"framgangsmåt\",\n  \"framgangsmåten\": \"framgangsmåt\",\n  \"framgangsmåter\": \"framgangsmåt\",\n  \"framgå\": \"framgå\",\n  \"framgår\": \"framgår\",\n  \"framheva\": \"framhev\",\n  \"framheve\": \"framhev\",\n  \"framhever\": \"framhev\",\n  \"framhevet\": \"framhev\",\n  \"framheving\": \"framheving\",\n  \"framja\": \"framj\",\n  \"framkomme\": \"framkomm\",\n  \"framkommelighet\": \"framkomm\",\n  \"framkommeligheten\": \"framkomm\",\n  \"framkommer\": \"framkomm\",\n  \"framlegg\": \"framlegg\",\n  \"framlegga\": \"framlegg\",\n  \"framlegge\": \"framlegg\",\n  \"framlegget\": \"framlegg\",\n  \"framleggs\": \"framlegg\",\n  \"framleigar\": \"framl\",\n  \"framleigarens\": \"framleigar\",\n  \"framleige\": \"framl\",\n  \"framleigerettar\": \"framleigerett\",\n  \"framleigt\": \"framleigt\",\n  \"framleis\": \"framleis\",\n  \"framme\": \"framm\",\n  \"frammøte\": \"frammøt\",\n  \"frammøtet\": \"frammøt\",\n  \"frammøtte\": \"frammøtt\",\n  \"framom\": \"framom\",\n  \"framover\": \"framov\",\n  \"framsetjing\": \"framsetjing\",\n  \"framsetter\": \"framsett\",\n  \"framskaffe\": \"framskaff\",\n  \"framskaffelse\": \"framskaff\",\n  \"framskaffing\": \"framskaffing\",\n  \"framskrevet\": \"framskrev\",\n  \"framskrive\": \"framskriv\",\n  \"framskriving\": \"framskriving\",\n  \"framskrivingen\": \"framskriving\",\n  \"framskrivingene\": \"framskriving\",\n  \"framskrivinger\": \"framskriving\",\n  \"framskrivingsalternativer\": \"framskrivingsalternativ\",\n  \"framskrivingsresultater\": \"framskrivingsresultat\",\n  \"framskrivning\": \"framskrivning\",\n  \"framskynde\": \"framskynd\",\n  \"framstavnen\": \"framstavn\",\n  \"framstille\": \"framstill\",\n  \"framstilling\": \"framstilling\",\n  \"framstillinga\": \"framstilling\",\n  \"framstillingen\": \"framstilling\",\n  \"framstilt\": \"framstilt\",\n  \"framstå\": \"framstå\",\n  \"framstår\": \"framstår\",\n  \"framstått\": \"framstått\",\n  \"framtid\": \"framtid\",\n  \"framtida\": \"framtid\",\n  \"framtidas\": \"framtid\",\n  \"framtiden\": \"framtid\",\n  \"framtidens\": \"framtid\",\n  \"framtidig\": \"framtid\",\n  \"framtidige\": \"framtid\",\n  \"framtidsbilde\": \"framtidsbild\",\n  \"framtidsbildene\": \"framtidsbild\",\n  \"framtidsbilder\": \"framtidsbild\",\n  \"framtidsbildet\": \"framtidsbild\",\n  \"framtredende\": \"framtred\",\n  \"framveksten\": \"framvekst\",\n  \"framvising\": \"framvising\",\n  \"frankrike\": \"frankrik\",\n  \"fraser\": \"fras\",\n  \"fraskrive\": \"fraskriv\",\n  \"fratre\": \"fratr\",\n  \"fratredelse\": \"fratred\",\n  \"fratredelsen\": \"fratred\",\n  \"fratredelsestidspunktet\": \"fratredelsestidspunkt\",\n  \"fratreden\": \"fratred\",\n  \"fratrekk\": \"fratrekk\",\n  \"fratrer\": \"fratr\",\n  \"fratrukket\": \"fratrukk\",\n  \"fratrådt\": \"fratråd\",\n  \"fratrådte\": \"fratråd\",\n  \"fratrådtes\": \"fratråd\",\n  \"fravike\": \"fravik\",\n  \"fravikes\": \"fravik\",\n  \"fred\": \"fred\",\n  \"fredelige\": \"fred\",\n  \"freden\": \"fred\",\n  \"frederikshavn\": \"frederikshavn\",\n  \"fredrikstad\": \"fredrikstad\",\n  \"fredstid\": \"fredstid\",\n  \"free\": \"free\",\n  \"freight\": \"freight\",\n  \"freistnad\": \"freistnad\",\n  \"freke\": \"frek\",\n  \"frekvens\": \"frekv\",\n  \"frem\": \"frem\",\n  \"fremadskuende\": \"fremadsku\",\n  \"fremdeles\": \"fremdel\",\n  \"fremfor\": \"fremfor\",\n  \"fremgår\": \"fremgår\",\n  \"fremja\": \"fremj\",\n  \"fremjar\": \"fremj\",\n  \"fremjast\": \"fremj\",\n  \"fremje\": \"fremj\",\n  \"fremjing\": \"fremjing\",\n  \"fremleie\": \"fremlei\",\n  \"fremme\": \"fremm\",\n  \"fremmed\": \"fremmed\",\n  \"fremmede\": \"fremm\",\n  \"fremmer\": \"fremm\",\n  \"fremmes\": \"fremm\",\n  \"fremmet\": \"fremm\",\n  \"fremover\": \"fremov\",\n  \"fremskrittspartiet\": \"fremskrittsparti\",\n  \"fremst\": \"fremst\",\n  \"fremste\": \"fremst\",\n  \"fremt\": \"fremt\",\n  \"fremtid\": \"fremtid\",\n  \"fremtiden\": \"fremtid\",\n  \"fremtidig\": \"fremtid\",\n  \"frendedrap\": \"frendedrap\",\n  \"frender\": \"frend\",\n  \"fresende\": \"fres\",\n  \"freser\": \"fres\",\n  \"fri\": \"fri\",\n  \"friare\": \"friar\",\n  \"fridom\": \"fridom\",\n  \"friere\": \"frier\",\n  \"frierferd\": \"frierferd\",\n  \"frierføtter\": \"frierføtt\",\n  \"frieriet\": \"frieri\",\n  \"frifunne\": \"frifunn\",\n  \"frigg\": \"frigg\",\n  \"friggs\": \"frigg\",\n  \"frigis\": \"frigis\",\n  \"frigitte\": \"frigitt\",\n  \"frigivelse\": \"frigiv\",\n  \"frigjort\": \"frigjort\",\n  \"frigjorte\": \"frigjort\",\n  \"frigjør\": \"frigjør\",\n  \"frigjøre\": \"frigjør\",\n  \"frigjøres\": \"frigjør\",\n  \"frigjøring\": \"frigjøring\",\n  \"frihavn\": \"frihavn\",\n  \"frihavnen\": \"frihavn\",\n  \"frihet\": \"frih\",\n  \"frikortgrensen\": \"frikortgrens\",\n  \"friluftsinteresser\": \"friluftsinteress\",\n  \"friluftsliv\": \"friluftsliv\",\n  \"friluftslivet\": \"friluftsliv\",\n  \"friluftslivs\": \"friluftsliv\",\n  \"friområde\": \"friområd\",\n  \"fripolise\": \"fripolis\",\n  \"fripolisen\": \"fripolis\",\n  \"fripolisene\": \"fripolis\",\n  \"fripolisens\": \"fripolis\",\n  \"fripoliser\": \"fripolis\",\n  \"fripoliseregisteret\": \"fripoliseregister\",\n  \"fripoliserettighetene\": \"fripoliserett\",\n  \"fripoliserettigheter\": \"fripoliserett\",\n  \"fripolises\": \"fripolis\",\n  \"frisk\": \"frisk\",\n  \"friske\": \"frisk\",\n  \"friskt\": \"friskt\",\n  \"frist\": \"frist\",\n  \"fristane\": \"frist\",\n  \"fristar\": \"frist\",\n  \"friste\": \"frist\",\n  \"fristed\": \"fristed\",\n  \"fristen\": \"frist\",\n  \"fristende\": \"frist\",\n  \"frister\": \"frist\",\n  \"fristforsøminga\": \"fristforsøming\",\n  \"fristille\": \"fristill\",\n  \"fristoversitjing\": \"fristoversitjing\",\n  \"fristrekning\": \"fristrekning\",\n  \"fritak\": \"fritak\",\n  \"fritaket\": \"fritak\",\n  \"fritar\": \"frit\",\n  \"fritas\": \"frit\",\n  \"fritatt\": \"fritatt\",\n  \"friteken\": \"fritek\",\n  \"fritidsaktivitetar\": \"fritidsaktivitet\",\n  \"fritidsaktiviteter\": \"fritidsaktivitet\",\n  \"fritidsarealer\": \"fritidsareal\",\n  \"fritidsbustad\": \"fritidsbustad\",\n  \"fritidsbustader\": \"fritidsbustad\",\n  \"fritidssysler\": \"fritidssysl\",\n  \"fritt\": \"fritt\",\n  \"frittliggjande\": \"frittliggj\",\n  \"frittståande\": \"frittstå\",\n  \"frittstående\": \"frittstå\",\n  \"friviljug\": \"friviljug\",\n  \"friviljuge\": \"friviljug\",\n  \"frivillig\": \"frivil\",\n  \"frivillige\": \"frivil\",\n  \"frode\": \"frod\",\n  \"frodes\": \"frod\",\n  \"frodig\": \"frod\",\n  \"frogn\": \"frogn\",\n  \"frognerkilen\": \"frognerkil\",\n  \"frokost\": \"frokost\",\n  \"frokostbord\": \"frokostbord\",\n  \"frosne\": \"frosn\",\n  \"frosset\": \"fross\",\n  \"frost\": \"frost\",\n  \"frukt\": \"frukt\",\n  \"fruktbare\": \"fruktbar\",\n  \"fruktimporten\": \"fruktimport\",\n  \"fryd\": \"fryd\",\n  \"fryder\": \"fryd\",\n  \"frydet\": \"fryd\",\n  \"frykte\": \"frykt\",\n  \"fryktelig\": \"frykt\",\n  \"frykter\": \"frykt\",\n  \"fryktet\": \"frykt\",\n  \"frynset\": \"fryns\",\n  \"fryse\": \"frys\",\n  \"fryseboksanlegg\": \"fryseboksanlegg\",\n  \"fryser\": \"frys\",\n  \"fryses\": \"frys\",\n  \"frå\": \"frå\",\n  \"frådelt\": \"frådelt\",\n  \"frådelte\": \"frådelt\",\n  \"fråden\": \"fråd\",\n  \"frådende\": \"fråd\",\n  \"frådrag\": \"frådrag\",\n  \"fråfalle\": \"fråfall\",\n  \"fråflytting\": \"fråflytting\",\n  \"fråga\": \"fråg\",\n  \"frånangersfossen\": \"frånangersfoss\",\n  \"fråsegn\": \"fråsegn\",\n  \"fråsegna\": \"fråsegn\",\n  \"fråvere\": \"fråver\",\n  \"fråvikast\": \"fråvik\",\n  \"fråvikelege\": \"fråvik\",\n  \"fråviking\": \"fråviking\",\n  \"fråvikinga\": \"fråviking\",\n  \"fråvikingsklausular\": \"fråvikingsklausul\",\n  \"frøs\": \"frøs\",\n  \"frøy\": \"frøy\",\n  \"frøya\": \"frøya\",\n  \"frøyas\": \"frøyas\",\n  \"frøys\": \"frøys\",\n  \"fugl\": \"fugl\",\n  \"fuglen\": \"fugl\",\n  \"fuglene\": \"fugl\",\n  \"fuglenes\": \"fugl\",\n  \"fuglens\": \"fugl\",\n  \"fugler\": \"fugl\",\n  \"fuglers\": \"fugl\",\n  \"fugleskrik\": \"fugleskrik\",\n  \"fuglum\": \"fuglum\",\n  \"fukt\": \"fukt\",\n  \"fuktig\": \"fukt\",\n  \"fuktighet\": \"fukt\",\n  \"fulgt\": \"fulgt\",\n  \"fulgte\": \"fulgt\",\n  \"full\": \"full\",\n  \"fulla\": \"full\",\n  \"fulle\": \"full\",\n  \"fullere\": \"fuller\",\n  \"fullføring\": \"fullføring\",\n  \"fullført\": \"fullført\",\n  \"fullførte\": \"fullført\",\n  \"fullgod\": \"fullgod\",\n  \"fullmakt\": \"fullmakt\",\n  \"fullmakta\": \"fullmakt\",\n  \"fullmaktene\": \"fullmakt\",\n  \"fullmakter\": \"fullmakt\",\n  \"fullmektig\": \"fullmekt\",\n  \"fullmektigen\": \"fullmekt\",\n  \"fullstendig\": \"fullstend\",\n  \"fullstendige\": \"fullstend\",\n  \"fullt\": \"fullt\",\n  \"fulltids\": \"fulltid\",\n  \"fulltidsinnskudd\": \"fulltidsinnskudd\",\n  \"fulltidsstilling\": \"fulltidsstilling\",\n  \"fullvoksen\": \"fullvoks\",\n  \"fungere\": \"funger\",\n  \"fungerende\": \"funger\",\n  \"fungerer\": \"funger\",\n  \"funkler\": \"funkl\",\n  \"funksjon\": \"funksjon\",\n  \"funksjonell\": \"funksjonell\",\n  \"funksjonelt\": \"funksjonelt\",\n  \"funksjonen\": \"funksjon\",\n  \"funksjoner\": \"funksjon\",\n  \"funksjonshemma\": \"funksjonshemm\",\n  \"funksjonshemmede\": \"funksjonshemm\",\n  \"funksjonshemming\": \"funksjonshemming\",\n  \"funksjonstida\": \"funksjonstid\",\n  \"funksjonstiden\": \"funksjonstid\",\n  \"funksjonær\": \"funksjonær\",\n  \"funksjonærer\": \"funksjonær\",\n  \"funne\": \"funn\",\n  \"funnene\": \"funn\",\n  \"funnet\": \"funn\",\n  \"furten\": \"furt\",\n  \"fusjon\": \"fusjon\",\n  \"fusjoner\": \"fusjon\",\n  \"fusjonerast\": \"fusjoner\",\n  \"fusjonsplanen\": \"fusjonsplan\",\n  \"fyker\": \"fyk\",\n  \"fyldigare\": \"fyldigar\",\n  \"fylgjene\": \"fylgj\",\n  \"fylke\": \"fylk\",\n  \"fylkene\": \"fylk\",\n  \"fylker\": \"fylk\",\n  \"fylkes\": \"fylk\",\n  \"fylkesdelplan\": \"fylkesdelplan\",\n  \"fylkesdelplaner\": \"fylkesdelplan\",\n  \"fylkeskommunal\": \"fylkeskommunal\",\n  \"fylkeskommunale\": \"fylkeskommunal\",\n  \"fylkeskommunalt\": \"fylkeskommunalt\",\n  \"fylkeskommunar\": \"fylkeskommun\",\n  \"fylkeskommune\": \"fylkeskommun\",\n  \"fylkeskommunen\": \"fylkeskommun\",\n  \"fylkeskommunene\": \"fylkeskommun\",\n  \"fylkeskommunenes\": \"fylkeskommun\",\n  \"fylkeskommuner\": \"fylkeskommun\",\n  \"fylkesmannen\": \"fylkesmann\",\n  \"fylkesmannens\": \"fylkesmann\",\n  \"fylkesmiljøvernsjef\": \"fylkesmiljøvernsjef\",\n  \"fylkesplanen\": \"fylkesplan\",\n  \"fylkesplanlegging\": \"fylkesplanlegging\",\n  \"fylkesting\": \"fylkesting\",\n  \"fylkesveg\": \"fylkesveg\",\n  \"fylkesvis\": \"fylkesvis\",\n  \"fylket\": \"fylk\",\n  \"fylkinger\": \"fylking\",\n  \"fylle\": \"fyll\",\n  \"fyller\": \"fyll\",\n  \"fylles\": \"fyll\",\n  \"fyllprat\": \"fyllprat\",\n  \"fylt\": \"fylt\",\n  \"fylte\": \"fylt\",\n  \"fyr\": \"fyr\",\n  \"fyrbelysning\": \"fyrbelysning\",\n  \"fyrer\": \"fyr\",\n  \"fyrste\": \"fyrst\",\n  \"fyrtjenestens\": \"fyrtjenest\",\n  \"fysisk\": \"fysisk\",\n  \"fysiske\": \"fysisk\",\n  \"få\": \"få\",\n  \"fåmælt\": \"fåmælt\",\n  \"fåmælte\": \"fåmælt\",\n  \"får\": \"får\",\n  \"fårbaute\": \"fårbaut\",\n  \"fåtall\": \"fåtall\",\n  \"fått\": \"fått\",\n  \"fåvne\": \"fåvn\",\n  \"fåvnes\": \"fåvn\",\n  \"fåvnesbane\": \"fåvnesb\",\n  \"fæl\": \"fæl\",\n  \"fællesforbund\": \"fællesforbund\",\n  \"fællesforeningen\": \"fællesforening\",\n  \"fælt\": \"fælt\",\n  \"færder\": \"færd\",\n  \"færre\": \"færr\",\n  \"færrest\": \"færrest\",\n  \"føde\": \"fød\",\n  \"føder\": \"fød\",\n  \"føderåd\": \"føderåd\",\n  \"fødes\": \"fød\",\n  \"fødsels\": \"fødsel\",\n  \"fødselsdato\": \"fødselsdato\",\n  \"fødselsgave\": \"fødselsgav\",\n  \"fødselsnummer\": \"fødselsnumm\",\n  \"født\": \"født\",\n  \"fødte\": \"født\",\n  \"føle\": \"føl\",\n  \"følelser\": \"føl\",\n  \"føler\": \"føl\",\n  \"følg\": \"følg\",\n  \"følgde\": \"følgd\",\n  \"følge\": \"følg\",\n  \"følgelig\": \"følg\",\n  \"følgende\": \"følg\",\n  \"følgene\": \"følg\",\n  \"følger\": \"følg\",\n  \"følges\": \"følg\",\n  \"følgesvenn\": \"følgesvenn\",\n  \"følgja\": \"følgj\",\n  \"følgjande\": \"følgj\",\n  \"følgjast\": \"følgj\",\n  \"følgje\": \"følgj\",\n  \"følgjene\": \"følgj\",\n  \"følgjer\": \"følgj\",\n  \"følgt\": \"følgt\",\n  \"føll\": \"føll\",\n  \"føllet\": \"føll\",\n  \"følsomhet\": \"følsom\",\n  \"følsomheten\": \"følsom\",\n  \"følsomme\": \"følsomm\",\n  \"før\": \"før\",\n  \"førarhund\": \"førarhund\",\n  \"førast\": \"før\",\n  \"føre\": \"før\",\n  \"førearbeida\": \"førearbeid\",\n  \"førebels\": \"førebel\",\n  \"førebu\": \"førebu\",\n  \"førebuast\": \"førebu\",\n  \"førebudd\": \"førebudd\",\n  \"førebudde\": \"førebudd\",\n  \"førebuing\": \"førebuing\",\n  \"førebuinga\": \"førebuing\",\n  \"førebur\": \"førebur\",\n  \"førehand\": \"førehand\",\n  \"førehandsavtale\": \"førehandsavtal\",\n  \"førehandsgodkjenning\": \"førehandsgodkjenning\",\n  \"førehandssamtykke\": \"førehandssamtykk\",\n  \"førehandsvarsel\": \"førehandsvarsel\",\n  \"førehaving\": \"førehaving\",\n  \"føremonene\": \"føremon\",\n  \"føremoner\": \"føremon\",\n  \"føremål\": \"føremål\",\n  \"føremåla\": \"føremål\",\n  \"føremålet\": \"føremål\",\n  \"føremålstenleg\": \"føremålsten\",\n  \"førende\": \"før\",\n  \"fører\": \"før\",\n  \"førerett\": \"førerett\",\n  \"føreretten\": \"førerett\",\n  \"føres\": \"før\",\n  \"føresegn\": \"føresegn\",\n  \"føresegna\": \"føresegn\",\n  \"føresegnene\": \"føresegn\",\n  \"føresegner\": \"føresegn\",\n  \"føreset\": \"føres\",\n  \"føresetnad\": \"føresetnad\",\n  \"føresetnaden\": \"føresetnad\",\n  \"førespurnaden\": \"førespurnad\",\n  \"føretak\": \"føretak\",\n  \"føretaka\": \"føretak\",\n  \"føretaket\": \"føretak\",\n  \"føretaksform\": \"føretaksform\",\n  \"føretaksformer\": \"føretaksform\",\n  \"føretaksregisteret\": \"føretaksregister\",\n  \"føretaksregistret\": \"føretaksregistr\",\n  \"førevegen\": \"føreveg\",\n  \"føring\": \"føring\",\n  \"føringa\": \"føring\",\n  \"føringer\": \"føring\",\n  \"førre\": \"førr\",\n  \"først\": \"først\",\n  \"første\": \"først\",\n  \"førsteamanuensis\": \"førsteamanuensis\",\n  \"førstedestinasjon\": \"førstedestinasjon\",\n  \"førstegongs\": \"førstegong\",\n  \"førstekonsulent\": \"førstekonsulent\",\n  \"førstemottakere\": \"førstemottaker\",\n  \"førstkomande\": \"førstkom\",\n  \"førstnevnte\": \"førstnevnt\",\n  \"førstnevntes\": \"førstnevnt\",\n  \"ført\": \"ført\",\n  \"førte\": \"ført\",\n  \"førti\": \"førti\",\n  \"førtidspensjon\": \"førtidspensjon\",\n  \"førtidspensjoner\": \"førtidspensjon\",\n  \"førtidspensjoneringen\": \"førtidspensjonering\",\n  \"førtidspensjonert\": \"førtidspensjoner\",\n  \"førtidspensjonerte\": \"førtidspensjoner\",\n  \"førtidspensjonister\": \"førtidspensjonist\",\n  \"førutset\": \"føruts\",\n  \"føttene\": \"føtt\",\n  \"føtter\": \"føtt\",\n  \"føyd\": \"føyd\",\n  \"føye\": \"føye\",\n  \"føyelig\": \"føyel\",\n  \"føyer\": \"føyer\",\n  \"g\": \"g\",\n  \"ga\": \"ga\",\n  \"gagn\": \"gagn\",\n  \"gagnråd\": \"gagnråd\",\n  \"gal\": \"gal\",\n  \"galar\": \"gal\",\n  \"galder\": \"gald\",\n  \"galdrer\": \"galdr\",\n  \"galdt\": \"gald\",\n  \"gale\": \"gal\",\n  \"galer\": \"gal\",\n  \"galge\": \"galg\",\n  \"galopperende\": \"galopper\",\n  \"galskap\": \"galskap\",\n  \"galt\": \"galt\",\n  \"galte\": \"galt\",\n  \"galten\": \"galt\",\n  \"gambara\": \"gambar\",\n  \"gamle\": \"gaml\",\n  \"gamlingene\": \"gamling\",\n  \"gammal\": \"gammal\",\n  \"gammel\": \"gammel\",\n  \"gammelt\": \"gammelt\",\n  \"gang\": \"gang\",\n  \"gangen\": \"gang\",\n  \"gangene\": \"gang\",\n  \"ganger\": \"gang\",\n  \"ganske\": \"gansk\",\n  \"gantry\": \"gantry\",\n  \"gantrykran\": \"gantrykran\",\n  \"gap\": \"gap\",\n  \"gape\": \"gap\",\n  \"gaper\": \"gap\",\n  \"gapet\": \"gap\",\n  \"gaphals\": \"gaphal\",\n  \"gapskratter\": \"gapskratt\",\n  \"gapte\": \"gapt\",\n  \"garaas\": \"gara\",\n  \"garantere\": \"garanter\",\n  \"garanterer\": \"garanter\",\n  \"garanteres\": \"garanter\",\n  \"garantert\": \"garanter\",\n  \"garanterte\": \"garanter\",\n  \"garanti\": \"garanti\",\n  \"garantiane\": \"garanti\",\n  \"garantiar\": \"garanti\",\n  \"garantien\": \"garanti\",\n  \"garantier\": \"garanti\",\n  \"garantikapital\": \"garantikapital\",\n  \"garantikostnaden\": \"garantikostnad\",\n  \"garantirisikoen\": \"garantirisiko\",\n  \"garantistillelse\": \"garantistill\",\n  \"garasjar\": \"garasj\",\n  \"garasje\": \"garasj\",\n  \"gardering\": \"gardering\",\n  \"gardermoen\": \"gardermo\",\n  \"gards\": \"gard\",\n  \"gardsbruk\": \"gardsbruk\",\n  \"garm\": \"garm\",\n  \"garn\": \"garn\",\n  \"garnet\": \"garn\",\n  \"garnmaskene\": \"garnmask\",\n  \"gass\": \"gass\",\n  \"gater\": \"gat\",\n  \"gats\": \"gat\",\n  \"gatt\": \"gatt\",\n  \"gauler\": \"gaul\",\n  \"gaupehetter\": \"gaupehett\",\n  \"gav\": \"gav\",\n  \"gave\": \"gav\",\n  \"gaven\": \"gav\",\n  \"gavene\": \"gav\",\n  \"gaver\": \"gav\",\n  \"gavmild\": \"gavmild\",\n  \"gdw\": \"gdw\",\n  \"gebyr\": \"gebyr\",\n  \"gebyra\": \"gebyr\",\n  \"gebyrer\": \"gebyr\",\n  \"gebyrordning\": \"gebyrordning\",\n  \"gebyrsystemet\": \"gebyrsystem\",\n  \"geipe\": \"geip\",\n  \"geirrød\": \"geirrød\",\n  \"geirrøds\": \"geirrød\",\n  \"geit\": \"geit\",\n  \"geita\": \"geit\",\n  \"geitebukk\": \"geitebukk\",\n  \"geitebukken\": \"geitebukk\",\n  \"geitebukker\": \"geitebukk\",\n  \"geitene\": \"geit\",\n  \"geitepiss\": \"geitepiss\",\n  \"geiteryggen\": \"geiterygg\",\n  \"geiteskinnene\": \"geiteskinn\",\n  \"gemeinschaftlichen\": \"gemeinschaftlich\",\n  \"general\": \"general\",\n  \"generalforsamling\": \"generalforsamling\",\n  \"generalforsamlinga\": \"generalforsamling\",\n  \"generalforsamlingaallmenne\": \"generalforsamlingaallmenn\",\n  \"generalforsamlingane\": \"generalforsamling\",\n  \"generalforsamlingar\": \"generalforsamling\",\n  \"generalforsamlingsvedtak\": \"generalforsamlingsvedtak\",\n  \"generaliserte\": \"generaliser\",\n  \"generalklausulen\": \"generalklausul\",\n  \"generasjon\": \"generasjon\",\n  \"generasjonane\": \"generasjon\",\n  \"generasjonar\": \"generasjon\",\n  \"generasjoner\": \"generasjon\",\n  \"generell\": \"generell\",\n  \"generelle\": \"generell\",\n  \"generelt\": \"generelt\",\n  \"genererasjoner\": \"genererasjon\",\n  \"generert\": \"generer\",\n  \"genererte\": \"generer\",\n  \"genom\": \"genom\",\n  \"genossenschaft\": \"genossenschaft\",\n  \"gent\": \"gent\",\n  \"geografisk\": \"geografisk\",\n  \"geografiske\": \"geografisk\",\n  \"gerd\": \"gerd\",\n  \"gere\": \"ger\",\n  \"geschaftsbetriebes\": \"geschaftsbetrieb\",\n  \"geschlossener\": \"geschlossen\",\n  \"gesellschaften\": \"gesellschaft\",\n  \"gesetz\": \"gesetz\",\n  \"gevinst\": \"gevinst\",\n  \"gevinstbeskatning\": \"gevinstbeskatning\",\n  \"gevinsten\": \"gevinst\",\n  \"gevinster\": \"gevinst\",\n  \"geysirer\": \"geysir\",\n  \"ghv\": \"ghv\",\n  \"gi\": \"gi\",\n  \"gidder\": \"gidd\",\n  \"gift\": \"gift\",\n  \"gifte\": \"gift\",\n  \"giften\": \"gift\",\n  \"gifter\": \"gift\",\n  \"giftet\": \"gift\",\n  \"giftig\": \"gift\",\n  \"giftige\": \"gift\",\n  \"gikk\": \"gikk\",\n  \"gilde\": \"gild\",\n  \"gildet\": \"gild\",\n  \"gilling\": \"gilling\",\n  \"gillings\": \"gilling\",\n  \"gillion\": \"gillion\",\n  \"ginnunagagap\": \"ginnunagagap\",\n  \"ginnungagap\": \"ginnungagap\",\n  \"gir\": \"gir\",\n  \"gis\": \"gis\",\n  \"gisler\": \"gisl\",\n  \"gissel\": \"gissel\",\n  \"gitt\": \"gitt\",\n  \"gitte\": \"gitt\",\n  \"gjallarbru\": \"gjallarbru\",\n  \"gjallarbrua\": \"gjallarbru\",\n  \"gjallarhorn\": \"gjallarhorn\",\n  \"gjallarhornet\": \"gjallarhorn\",\n  \"gjalp\": \"gjalp\",\n  \"gje\": \"gje\",\n  \"gjeddes\": \"gjedd\",\n  \"gjekk\": \"gjekk\",\n  \"gjeld\": \"gjeld\",\n  \"gjelda\": \"gjeld\",\n  \"gjeldande\": \"gjeld\",\n  \"gjelde\": \"gjeld\",\n  \"gjeldende\": \"gjeld\",\n  \"gjelder\": \"gjeld\",\n  \"gjeldsandel\": \"gjeldsandel\",\n  \"gjeldsbrevlova\": \"gjeldsbrev\",\n  \"gjeldsforhandling\": \"gjeldsforhandling\",\n  \"gjeldshøve\": \"gjeldshøv\",\n  \"gjeldsinstrumenter\": \"gjeldsinstrument\",\n  \"gjeldsnemnda\": \"gjeldsnemnd\",\n  \"gjeldssanering\": \"gjeldssanering\",\n  \"gjeldt\": \"gjeld\",\n  \"gjeller\": \"gjell\",\n  \"gjem\": \"gjem\",\n  \"gjemme\": \"gjemm\",\n  \"gjemmer\": \"gjemm\",\n  \"gjemt\": \"gjemt\",\n  \"gjenforsikring\": \"gjenforsikring\",\n  \"gjenfortelles\": \"gjenfortell\",\n  \"gjengitt\": \"gjengitt\",\n  \"gjengjeld\": \"gjengjeld\",\n  \"gjengs\": \"gjeng\",\n  \"gjenkjøpsverdi\": \"gjenkjøpsverdi\",\n  \"gjenlevende\": \"gjenlev\",\n  \"gjenlyd\": \"gjenlyd\",\n  \"gjennom\": \"gjennom\",\n  \"gjennomboret\": \"gjennombor\",\n  \"gjennomførast\": \"gjennomfør\",\n  \"gjennomføre\": \"gjennomfør\",\n  \"gjennomfører\": \"gjennomfør\",\n  \"gjennomføres\": \"gjennomfør\",\n  \"gjennomføring\": \"gjennomføring\",\n  \"gjennomføringa\": \"gjennomføring\",\n  \"gjennomføringen\": \"gjennomføring\",\n  \"gjennomføringsloven\": \"gjennomføring\",\n  \"gjennomføringsorganet\": \"gjennomføringsorgan\",\n  \"gjennomført\": \"gjennomført\",\n  \"gjennomførte\": \"gjennomført\",\n  \"gjennomgang\": \"gjennomgang\",\n  \"gjennomgangen\": \"gjennomgang\",\n  \"gjennomgangsbustader\": \"gjennomgangsbustad\",\n  \"gjennomgangstrafikk\": \"gjennomgangstrafikk\",\n  \"gjennomgangsåre\": \"gjennomgangsår\",\n  \"gjennomgå\": \"gjennomgå\",\n  \"gjennomgåande\": \"gjennomgå\",\n  \"gjennomgående\": \"gjennomgå\",\n  \"gjennomgåinga\": \"gjennomgåing\",\n  \"gjennomgås\": \"gjennomgås\",\n  \"gjennomgått\": \"gjennomgått\",\n  \"gjennomsiktige\": \"gjennomsikt\",\n  \"gjennomslag\": \"gjennomslag\",\n  \"gjennomsnitlig\": \"gjennomsnit\",\n  \"gjennomsnitt\": \"gjennomsnitt\",\n  \"gjennomsnittet\": \"gjennomsnitt\",\n  \"gjennomsnittlig\": \"gjennomsnitt\",\n  \"gjennomsnittlige\": \"gjennomsnitt\",\n  \"gjennomsnittsavkastningen\": \"gjennomsnittsavkastning\",\n  \"gjennomsnittsberegninger\": \"gjennomsnittsberegning\",\n  \"gjennomsnittsbetraktninger\": \"gjennomsnittsbetraktning\",\n  \"gjennomsnittsinnskudd\": \"gjennomsnittsinnskudd\",\n  \"gjennomsnittsinnskuddene\": \"gjennomsnittsinnskudd\",\n  \"gjennomsnittsinnskuddet\": \"gjennomsnittsinnskudd\",\n  \"gjennomsnittslønn\": \"gjennomsnittslønn\",\n  \"gjennomsnittssatsen\": \"gjennomsnittssats\",\n  \"gjennomsnittsskattesatsen\": \"gjennomsnittsskattesats\",\n  \"gjennomsnittstall\": \"gjennomsnittstall\",\n  \"gjennomsnittsverdi\": \"gjennomsnittsverdi\",\n  \"gjennomsnittsverdien\": \"gjennomsnittsverdi\",\n  \"gjennomsyn\": \"gjennomsyn\",\n  \"gjennomtrekken\": \"gjennomtrekk\",\n  \"gjennoppstår\": \"gjennoppstår\",\n  \"gjenom\": \"gjenom\",\n  \"gjenoppta\": \"gjenoppt\",\n  \"gjenopptagelse\": \"gjenopptag\",\n  \"gjensidig\": \"gjensid\",\n  \"gjensidige\": \"gjensid\",\n  \"gjenspeiles\": \"gjenspeil\",\n  \"gjenstand\": \"gjenstand\",\n  \"gjenstående\": \"gjenstå\",\n  \"gjenstår\": \"gjenstår\",\n  \"gjensyn\": \"gjensyn\",\n  \"gjentar\": \"gjent\",\n  \"gjentatt\": \"gjentatt\",\n  \"gjenværende\": \"gjenvær\",\n  \"gjer\": \"gjer\",\n  \"gjerast\": \"gjer\",\n  \"gjerdene\": \"gjerd\",\n  \"gjere\": \"gjer\",\n  \"gjerne\": \"gjern\",\n  \"gjerning\": \"gjerning\",\n  \"gjerrige\": \"gjerr\",\n  \"gjerrigknark\": \"gjerrigknark\",\n  \"gjersem\": \"gjersem\",\n  \"gjerseme\": \"gjersem\",\n  \"gjest\": \"gjest\",\n  \"gjestearbeidende\": \"gjestearbeid\",\n  \"gjestebud\": \"gjestebud\",\n  \"gjestehus\": \"gjestehus\",\n  \"gjesten\": \"gjest\",\n  \"gjestene\": \"gjest\",\n  \"gjester\": \"gjest\",\n  \"gjesterom\": \"gjesterom\",\n  \"gjestfrihet\": \"gjestfri\",\n  \"gjestfrihetens\": \"gjestfri\",\n  \"gjette\": \"gjett\",\n  \"gjev\": \"gjev\",\n  \"gjevast\": \"gjev\",\n  \"gjeve\": \"gjev\",\n  \"gjeven\": \"gjev\",\n  \"gjevjon\": \"gjevjon\",\n  \"gjevne\": \"gjevn\",\n  \"gjoll\": \"gjoll\",\n  \"gjord\": \"gjord\",\n  \"gjorde\": \"gjord\",\n  \"gjort\": \"gjort\",\n  \"gjærer\": \"gjær\",\n  \"gjødning\": \"gjødning\",\n  \"gjødsel\": \"gjødsel\",\n  \"gjør\": \"gjør\",\n  \"gjøre\": \"gjør\",\n  \"gjøres\": \"gjør\",\n  \"glad\": \"glad\",\n  \"glade\": \"glad\",\n  \"gladsheim\": \"gladsheim\",\n  \"glasruter\": \"glasrut\",\n  \"glassperler\": \"glassperl\",\n  \"glassverk\": \"glassverk\",\n  \"glatt\": \"glatt\",\n  \"glatte\": \"glatt\",\n  \"glede\": \"gled\",\n  \"gleden\": \"gled\",\n  \"gleder\": \"gled\",\n  \"glefser\": \"glefs\",\n  \"gleipne\": \"gleipn\",\n  \"glem\": \"glem\",\n  \"glemmer\": \"glemm\",\n  \"glemsel\": \"glemsel\",\n  \"glemselsfuglen\": \"glemselsfugl\",\n  \"glemt\": \"glemt\",\n  \"glemte\": \"glemt\",\n  \"glipp\": \"glipp\",\n  \"glir\": \"glir\",\n  \"glitrende\": \"glitr\",\n  \"glitrer\": \"glitr\",\n  \"glitter\": \"glitt\",\n  \"globale\": \"global\",\n  \"globalisering\": \"globalisering\",\n  \"globalt\": \"globalt\",\n  \"globe\": \"glob\",\n  \"globes\": \"glob\",\n  \"glohete\": \"glohet\",\n  \"glomma\": \"glomm\",\n  \"glommafarvannet\": \"glommafarvann\",\n  \"glugge\": \"glugg\",\n  \"gluggen\": \"glugg\",\n  \"glødende\": \"glød\",\n  \"gløder\": \"glød\",\n  \"glør\": \"glør\",\n  \"gløttet\": \"gløtt\",\n  \"gnage\": \"gnag\",\n  \"gnager\": \"gnag\",\n  \"gni\": \"gni\",\n  \"gnir\": \"gnir\",\n  \"gnist\": \"gnist\",\n  \"gnister\": \"gnist\",\n  \"gnistrer\": \"gnistr\",\n  \"gnitahei\": \"gnitahei\",\n  \"gnitaheia\": \"gnitahei\",\n  \"gnå\": \"gnå\",\n  \"god\": \"god\",\n  \"godbit\": \"godbit\",\n  \"gode\": \"god\",\n  \"godet\": \"god\",\n  \"godkjend\": \"godkjend\",\n  \"godkjende\": \"godkj\",\n  \"godkjennast\": \"godkjenn\",\n  \"godkjenne\": \"godkjenn\",\n  \"godkjenner\": \"godkjenn\",\n  \"godkjennes\": \"godkjenn\",\n  \"godkjenning\": \"godkjenning\",\n  \"godkjenninga\": \"godkjenning\",\n  \"godkjenningsinstans\": \"godkjenningsinstan\",\n  \"godkjenningsinstansen\": \"godkjenningsinstans\",\n  \"godkjenningskompetanse\": \"godkjenningskompetans\",\n  \"godkjenningsnekting\": \"godkjenningsnekting\",\n  \"godkjenningsnektinga\": \"godkjenningsnekting\",\n  \"godkjenningsordning\": \"godkjenningsordning\",\n  \"godkjenningsordninga\": \"godkjenningsordning\",\n  \"godkjenningsregelen\": \"godkjenningsregel\",\n  \"godkjenningsspørsmålet\": \"godkjenningsspørsmål\",\n  \"godkjent\": \"godkjent\",\n  \"godkjente\": \"godkjent\",\n  \"gods\": \"god\",\n  \"godsaktivitetene\": \"godsaktivitet\",\n  \"godsaktiviteter\": \"godsaktivitet\",\n  \"godsbanegården\": \"godsbanegård\",\n  \"godsbiler\": \"godsbil\",\n  \"godset\": \"gods\",\n  \"godsforsendelse\": \"godsforsend\",\n  \"godsgrunnlag\": \"godsgrunnlag\",\n  \"godsgrunnlaget\": \"godsgrunnlag\",\n  \"godshavna\": \"godshavn\",\n  \"godshavnaktivitet\": \"godshavnaktivit\",\n  \"godshavnen\": \"godshavn\",\n  \"godshavner\": \"godshavn\",\n  \"godshåndtering\": \"godshåndtering\",\n  \"godshåndteringen\": \"godshåndtering\",\n  \"godshåndteringsutstyr\": \"godshåndteringsutstyr\",\n  \"godskapasitet\": \"godskapasit\",\n  \"godskrevet\": \"godskrev\",\n  \"godskrivast\": \"godskriv\",\n  \"godskriver\": \"godskriv\",\n  \"godskrives\": \"godskriv\",\n  \"godsmarkedet\": \"godsmarked\",\n  \"godsmengde\": \"godsmengd\",\n  \"godsmengden\": \"godsmengd\",\n  \"godsmengdene\": \"godsmengd\",\n  \"godsmengdenes\": \"godsmengd\",\n  \"godsmengder\": \"godsmengd\",\n  \"godsomlasting\": \"godsomlasting\",\n  \"godsomlastingen\": \"godsomlasting\",\n  \"godsomlastingstallene\": \"godsomlastingstall\",\n  \"godsomslag\": \"godsomslag\",\n  \"godsomslaget\": \"godsomslag\",\n  \"godsprognosene\": \"godsprognos\",\n  \"godsprognoser\": \"godsprognos\",\n  \"godsspor\": \"godsspor\",\n  \"godssporene\": \"godsspor\",\n  \"godsstrømmen\": \"godsstrømm\",\n  \"godsstrømmene\": \"godsstrømm\",\n  \"godsstrømmer\": \"godsstrømm\",\n  \"godsterminal\": \"godsterminal\",\n  \"godsterminalen\": \"godsterminal\",\n  \"godstog\": \"godstog\",\n  \"godstomlasting\": \"godstomlasting\",\n  \"godstrafikk\": \"godstrafikk\",\n  \"godstrafikken\": \"godstrafikk\",\n  \"godstransport\": \"godstransport\",\n  \"godstransporten\": \"godstransport\",\n  \"godstransportene\": \"godstransport\",\n  \"godstransporter\": \"godstransport\",\n  \"godstransportknutepunkt\": \"godstransportknutepunkt\",\n  \"godstransportkorridorer\": \"godstransportkorridor\",\n  \"godstransportmønstrene\": \"godstransportmønstr\",\n  \"godstransportstrømmene\": \"godstransportstrømm\",\n  \"godstransporttjenester\": \"godstransporttjenest\",\n  \"godstrømmene\": \"godstrømm\",\n  \"godstrømmer\": \"godstrømm\",\n  \"godstyper\": \"godstyp\",\n  \"godsvirksomhet\": \"godsvirksom\",\n  \"godsvolum\": \"godsvolum\",\n  \"godsvolumene\": \"godsvolum\",\n  \"godsvolumer\": \"godsvolum\",\n  \"godt\": \"godt\",\n  \"godta\": \"godt\",\n  \"godtakast\": \"godtak\",\n  \"godtatt\": \"godtatt\",\n  \"godtek\": \"godtek\",\n  \"godteke\": \"godtek\",\n  \"godtgjer\": \"godtgj\",\n  \"godtgjere\": \"godtgjer\",\n  \"godtgjersla\": \"godtgjersl\",\n  \"godtgjersle\": \"godtgjersl\",\n  \"godtgjort\": \"godtgjort\",\n  \"godtgjørelse\": \"godtgjør\",\n  \"godtgjørelsene\": \"godtgjør\",\n  \"godtgjøres\": \"godtgjør\",\n  \"godtgjøring\": \"godtgjøring\",\n  \"godtgjøringer\": \"godtgjøring\",\n  \"godtok\": \"godtok\",\n  \"godtruerverv\": \"godtruerverv\",\n  \"golv\": \"golv\",\n  \"golvbelegg\": \"golvbelegg\",\n  \"golvet\": \"golv\",\n  \"golvteppe\": \"golvtepp\",\n  \"gom\": \"gom\",\n  \"gomlet\": \"goml\",\n  \"gommen\": \"gomm\",\n  \"gommene\": \"gomm\",\n  \"gong\": \"gong\",\n  \"gongen\": \"gong\",\n  \"gonger\": \"gong\",\n  \"gotter\": \"gott\",\n  \"gotterier\": \"gotteri\",\n  \"gottet\": \"gott\",\n  \"grad\": \"grad\",\n  \"graden\": \"grad\",\n  \"gradert\": \"grader\",\n  \"gradvis\": \"gradvis\",\n  \"gradvise\": \"gradvis\",\n  \"granbar\": \"granb\",\n  \"grane\": \"gran\",\n  \"granlegg\": \"granlegg\",\n  \"grann\": \"grann\",\n  \"grannar\": \"grann\",\n  \"granneeigedom\": \"granneeigedom\",\n  \"granskar\": \"gransk\",\n  \"granskarane\": \"granskar\",\n  \"granskarar\": \"granskar\",\n  \"gransking\": \"gransking\",\n  \"granskinga\": \"gransking\",\n  \"granskingsrapporten\": \"granskingsrapport\",\n  \"grantoppene\": \"grantopp\",\n  \"grantrær\": \"grantrær\",\n  \"gratis\": \"gratis\",\n  \"grav\": \"grav\",\n  \"gravalvorlige\": \"gravalvor\",\n  \"grave\": \"grav\",\n  \"graven\": \"grav\",\n  \"graver\": \"grav\",\n  \"gravet\": \"grav\",\n  \"gravid\": \"gravid\",\n  \"gravøl\": \"gravøl\",\n  \"gre\": \"gre\",\n  \"green\": \"green\",\n  \"grei\": \"grei\",\n  \"greiast\": \"greiast\",\n  \"greiaste\": \"greiast\",\n  \"greid\": \"greid\",\n  \"greidd\": \"greidd\",\n  \"greidde\": \"greidd\",\n  \"greide\": \"greid\",\n  \"greie\": \"greie\",\n  \"greier\": \"greier\",\n  \"greip\": \"greip\",\n  \"greitt\": \"greitt\",\n  \"gren\": \"gren\",\n  \"grendehus\": \"grendehus\",\n  \"grenene\": \"gren\",\n  \"grener\": \"gren\",\n  \"grenland\": \"grenland\",\n  \"grenlandsfarvannet\": \"grenlandsfarvann\",\n  \"grenlandsområdet\": \"grenlandsområd\",\n  \"grensa\": \"grens\",\n  \"grense\": \"grens\",\n  \"grensedraging\": \"grensedraging\",\n  \"grensedraginga\": \"grensedraging\",\n  \"grensekryssende\": \"grensekryss\",\n  \"grenseland\": \"grenseland\",\n  \"grensen\": \"grens\",\n  \"grensene\": \"grens\",\n  \"grenseoverskridende\": \"grenseoverskrid\",\n  \"grensepassering\": \"grensepassering\",\n  \"grenser\": \"grens\",\n  \"grenseskogen\": \"grenseskog\",\n  \"grenseverdier\": \"grenseverdi\",\n  \"grepstad\": \"grepstad\",\n  \"grer\": \"grer\",\n  \"gress\": \"gress\",\n  \"gressbakke\": \"gressbakk\",\n  \"gresser\": \"gress\",\n  \"gresset\": \"gress\",\n  \"gressgangene\": \"gressgang\",\n  \"gresstorven\": \"gresstorv\",\n  \"gretten\": \"grett\",\n  \"grettent\": \"grettent\",\n  \"gribber\": \"gribb\",\n  \"grid\": \"grid\",\n  \"gridarvol\": \"gridarvol\",\n  \"grimase\": \"grimas\",\n  \"grimne\": \"grimn\",\n  \"grimsbo\": \"grimsbo\",\n  \"grind\": \"grind\",\n  \"grinden\": \"grind\",\n  \"griner\": \"grin\",\n  \"grini\": \"grini\",\n  \"grip\": \"grip\",\n  \"gripe\": \"grip\",\n  \"griper\": \"grip\",\n  \"gris\": \"gris\",\n  \"grisen\": \"gris\",\n  \"grisk\": \"grisk\",\n  \"griske\": \"grisk\",\n  \"griskheten\": \"grisk\",\n  \"grjotunagard\": \"grjotunagard\",\n  \"gro\": \"gro\",\n  \"groa\": \"groa\",\n  \"gror\": \"gror\",\n  \"groruddalen\": \"groruddal\",\n  \"groruddalens\": \"groruddal\",\n  \"grossist\": \"grossist\",\n  \"grossister\": \"grossist\",\n  \"grossisters\": \"grossist\",\n  \"grossistlagre\": \"grossistlagr\",\n  \"grossistledd\": \"grossistledd\",\n  \"grossistleddet\": \"grossistledd\",\n  \"grossistvirksomheter\": \"grossistvirksom\",\n  \"grotte\": \"grott\",\n  \"grotter\": \"grott\",\n  \"grov\": \"grov\",\n  \"grove\": \"grov\",\n  \"gru\": \"gru\",\n  \"grubler\": \"grubl\",\n  \"gruen\": \"gruen\",\n  \"gruer\": \"gruer\",\n  \"grundig\": \"grund\",\n  \"grundigare\": \"grundigar\",\n  \"grunn\": \"grunn\",\n  \"grunna\": \"grunn\",\n  \"grunnane\": \"grunn\",\n  \"grunnar\": \"grunn\",\n  \"grunnareal\": \"grunnareal\",\n  \"grunnareala\": \"grunnareal\",\n  \"grunnast\": \"grunn\",\n  \"grunnbeløp\": \"grunnbeløp\",\n  \"grunnbeløpet\": \"grunnbeløp\",\n  \"grunnbok\": \"grunnbok\",\n  \"grunnboka\": \"grunnbok\",\n  \"grunnbokheimel\": \"grunnbokheimel\",\n  \"grunndokument\": \"grunndokument\",\n  \"grunndraga\": \"grunndrag\",\n  \"grunne\": \"grunn\",\n  \"grunneier\": \"grunnei\",\n  \"grunnen\": \"grunn\",\n  \"grunnene\": \"grunn\",\n  \"grunner\": \"grunn\",\n  \"grunnet\": \"grunn\",\n  \"grunnfond\": \"grunnfond\",\n  \"grunnfondbevis\": \"grunnfondbevis\",\n  \"grunnfondet\": \"grunnfond\",\n  \"grunnfondsbevis\": \"grunnfondsbevis\",\n  \"grunnfondsbevisa\": \"grunnfondsbevis\",\n  \"grunnforholdene\": \"grunnforhold\",\n  \"grunngje\": \"grunngj\",\n  \"grunngjevast\": \"grunngjev\",\n  \"grunngjeve\": \"grunngjev\",\n  \"grunngjeving\": \"grunngjeving\",\n  \"grunngjevinga\": \"grunngjeving\",\n  \"grunngjevne\": \"grunngjevn\",\n  \"grunnivået\": \"grunnivå\",\n  \"grunnkravene\": \"grunnkrav\",\n  \"grunnlag\": \"grunnlag\",\n  \"grunnlaget\": \"grunnlag\",\n  \"grunnlagselementene\": \"grunnlagselement\",\n  \"grunnlagselementer\": \"grunnlagselement\",\n  \"grunnlagsmaterialet\": \"grunnlagsmaterial\",\n  \"grunnlagsrente\": \"grunnlagsrent\",\n  \"grunnlagsrenten\": \"grunnlagsrent\",\n  \"grunnlause\": \"grunnlaus\",\n  \"grunnleggende\": \"grunnlegg\",\n  \"grunnleggjande\": \"grunnleggj\",\n  \"grunnleggjarane\": \"grunnleggjar\",\n  \"grunnlinjen\": \"grunnlinj\",\n  \"grunnlova\": \"grunn\",\n  \"grunnlønn\": \"grunnlønn\",\n  \"grunnmateriale\": \"grunnmaterial\",\n  \"grunnorganisasjonane\": \"grunnorganisasjon\",\n  \"grunnpensjon\": \"grunnpensjon\",\n  \"grunnpensjonen\": \"grunnpensjon\",\n  \"grunnprinsipp\": \"grunnprinsipp\",\n  \"grunnsikring\": \"grunnsikring\",\n  \"grunnsikringens\": \"grunnsikring\",\n  \"grunnstykke\": \"grunnstykk\",\n  \"grunnstøting\": \"grunnstøting\",\n  \"grunnstøtinger\": \"grunnstøting\",\n  \"grunnstøtninger\": \"grunnstøtning\",\n  \"grunnsummen\": \"grunnsumm\",\n  \"grunnvilkår\": \"grunnvilkår\",\n  \"gruntvannsområder\": \"gruntvannsområd\",\n  \"gruppa\": \"grupp\",\n  \"gruppe\": \"grupp\",\n  \"gruppeinndeling\": \"gruppeinndeling\",\n  \"gruppeliv\": \"gruppeliv\",\n  \"gruppelivsforsikring\": \"gruppelivsforsikring\",\n  \"gruppen\": \"grupp\",\n  \"gruppene\": \"grupp\",\n  \"gruppens\": \"grupp\",\n  \"grupper\": \"grupp\",\n  \"grupperinger\": \"gruppering\",\n  \"gruppert\": \"grupper\",\n  \"grus\": \"grus\",\n  \"grusomme\": \"grusomm\",\n  \"grusomt\": \"grusomt\",\n  \"grynt\": \"grynt\",\n  \"grynter\": \"grynt\",\n  \"grytidlig\": \"grytid\",\n  \"grå\": \"grå\",\n  \"gråbein\": \"gråbein\",\n  \"gråbeinskikkelse\": \"gråbeinskikk\",\n  \"grådig\": \"gråd\",\n  \"grådige\": \"gråd\",\n  \"grådighet\": \"gråd\",\n  \"grålysningen\": \"grålysning\",\n  \"gråspurv\": \"gråspurv\",\n  \"gråt\": \"gråt\",\n  \"gråte\": \"gråt\",\n  \"gråtekone\": \"gråtekon\",\n  \"gråtende\": \"gråt\",\n  \"gråter\": \"gråt\",\n  \"gråtes\": \"gråt\",\n  \"grått\": \"grått\",\n  \"grøft\": \"grøft\",\n  \"grønlia\": \"grønli\",\n  \"grønn\": \"grønn\",\n  \"grønnboken\": \"grønnbok\",\n  \"grønne\": \"grønn\",\n  \"grønnsaker\": \"grønnsak\",\n  \"grønt\": \"grønt\",\n  \"grøntområde\": \"grøntområd\",\n  \"grøsser\": \"grøss\",\n  \"grøt\": \"grøt\",\n  \"gud\": \"gud\",\n  \"gudeborgen\": \"gudeborg\",\n  \"gudehøvdingen\": \"gudehøvding\",\n  \"gudekongen\": \"gudekong\",\n  \"gudekongens\": \"gudekong\",\n  \"gudekreftene\": \"gudekreft\",\n  \"guden\": \"gud\",\n  \"gudene\": \"gud\",\n  \"gudenes\": \"gud\",\n  \"gudepakket\": \"gudepakk\",\n  \"guder\": \"gud\",\n  \"gudeslekten\": \"gudeslekt\",\n  \"gudeslekter\": \"gudeslekt\",\n  \"gudespytt\": \"gudespytt\",\n  \"gudinne\": \"gudinn\",\n  \"gudinnen\": \"gudinn\",\n  \"gudinnene\": \"gudinn\",\n  \"gudinner\": \"gudinn\",\n  \"gufse\": \"gufs\",\n  \"gufser\": \"gufs\",\n  \"gulating\": \"gulating\",\n  \"gule\": \"gul\",\n  \"gull\": \"gull\",\n  \"gullbrikkespill\": \"gullbrikkespill\",\n  \"gullbrua\": \"gullbru\",\n  \"gullbust\": \"gullbust\",\n  \"gullbånd\": \"gullbånd\",\n  \"gullet\": \"gull\",\n  \"gullfakse\": \"gullfaks\",\n  \"gullhjelmen\": \"gullhjelm\",\n  \"gullhorn\": \"gullhorn\",\n  \"gullhåret\": \"gullhår\",\n  \"gullklump\": \"gullklump\",\n  \"gullregn\": \"gullregn\",\n  \"gullringen\": \"gullring\",\n  \"gulltennene\": \"gulltenn\",\n  \"gulltopp\": \"gulltopp\",\n  \"gullveig\": \"gullv\",\n  \"gulne\": \"guln\",\n  \"gulv\": \"gulv\",\n  \"gulvet\": \"gulv\",\n  \"gungne\": \"gungn\",\n  \"gunnlod\": \"gunnlod\",\n  \"gunst\": \"gunst\",\n  \"gunstig\": \"gunst\",\n  \"gunstige\": \"gunst\",\n  \"gunstigere\": \"gunstiger\",\n  \"gusten\": \"gust\",\n  \"gustne\": \"gustn\",\n  \"gutt\": \"gutt\",\n  \"guttebarnet\": \"guttebarn\",\n  \"gutten\": \"gutt\",\n  \"guttene\": \"gutt\",\n  \"gutter\": \"gutt\",\n  \"gyger\": \"gyg\",\n  \"gygra\": \"gygr\",\n  \"gyldig\": \"gyld\",\n  \"gyldige\": \"gyld\",\n  \"gyldne\": \"gyldn\",\n  \"gyllenbuste\": \"gyllenbust\",\n  \"gylve\": \"gylv\",\n  \"gymes\": \"gym\",\n  \"gymesdatter\": \"gymesdatt\",\n  \"gyver\": \"gyv\",\n  \"gå\": \"gå\",\n  \"går\": \"går\",\n  \"gård\": \"gård\",\n  \"gården\": \"gård\",\n  \"gårder\": \"gård\",\n  \"gårdsfolket\": \"gårdsfolk\",\n  \"gårdshundene\": \"gårdshund\",\n  \"gåsøya\": \"gåsøy\",\n  \"gåtefulle\": \"gåtefull\",\n  \"gåtene\": \"gåt\",\n  \"gåter\": \"gåt\",\n  \"gått\": \"gått\",\n  \"gåve\": \"gåv\",\n  \"gåver\": \"gåv\",\n  \"gøteborg\": \"gøteborg\",\n  \"h\": \"h\",\n  \"ha\": \"ha\",\n  \"haavind\": \"haavind\",\n  \"habilitet\": \"habilit\",\n  \"habilitetsreglane\": \"habilitetsregl\",\n  \"habitat\": \"habitat\",\n  \"hadde\": \"hadd\",\n  \"hafslund\": \"hafslund\",\n  \"haglskur\": \"haglskur\",\n  \"haken\": \"hak\",\n  \"hakk\": \"hakk\",\n  \"hakon\": \"hakon\",\n  \"haldast\": \"hald\",\n  \"halde\": \"hald\",\n  \"halden\": \"hald\",\n  \"haldenleia\": \"haldenlei\",\n  \"haldne\": \"haldn\",\n  \"haldningar\": \"haldning\",\n  \"hale\": \"hal\",\n  \"halen\": \"hal\",\n  \"haler\": \"hal\",\n  \"hall\": \"hall\",\n  \"hallen\": \"hall\",\n  \"halm\": \"halm\",\n  \"hals\": \"hal\",\n  \"halse\": \"hals\",\n  \"halsen\": \"hals\",\n  \"halset\": \"hals\",\n  \"halshugget\": \"halshugg\",\n  \"halsringen\": \"halsring\",\n  \"halt\": \"halt\",\n  \"haltende\": \"halt\",\n  \"halv\": \"halv\",\n  \"halvdel\": \"halvdel\",\n  \"halvdelen\": \"halvdel\",\n  \"halve\": \"halv\",\n  \"halvfabrikata\": \"halvfabrikat\",\n  \"halvgjort\": \"halvgjort\",\n  \"halvparten\": \"halvpart\",\n  \"halvsøvne\": \"halvsøvn\",\n  \"halvt\": \"halv\",\n  \"halvtroll\": \"halvtroll\",\n  \"halvveis\": \"halvveis\",\n  \"halvår\": \"halvår\",\n  \"halvårsvis\": \"halvårsvis\",\n  \"ham\": \"ham\",\n  \"hamburg\": \"hamburg\",\n  \"hammen\": \"hamm\",\n  \"hammer\": \"hamm\",\n  \"hammeren\": \"hammer\",\n  \"hammerfest\": \"hammerfest\",\n  \"hammerskaftet\": \"hammerskaft\",\n  \"hammerslag\": \"hammerslag\",\n  \"hamrer\": \"hamr\",\n  \"hamsdokka\": \"hamsdokk\",\n  \"han\": \"han\",\n  \"hand\": \"hand\",\n  \"handel\": \"handel\",\n  \"handeland\": \"handeland\",\n  \"handelen\": \"handel\",\n  \"handels\": \"handel\",\n  \"handelsagenter\": \"handelsagent\",\n  \"handelsbedrifter\": \"handelsbedrift\",\n  \"handelsdepartementet\": \"handelsdepartement\",\n  \"handelshindringer\": \"handelshindring\",\n  \"handelsorganisasjon\": \"handelsorganisasjon\",\n  \"handelspartnere\": \"handelspartner\",\n  \"handheva\": \"handhev\",\n  \"handheve\": \"handhev\",\n  \"handhevinga\": \"handheving\",\n  \"handkasser\": \"handkass\",\n  \"handla\": \"handl\",\n  \"handlar\": \"handl\",\n  \"handle\": \"handl\",\n  \"handleevne\": \"handleevn\",\n  \"handlefridom\": \"handlefridom\",\n  \"handlefrihet\": \"handlefri\",\n  \"handleplikt\": \"handleplikt\",\n  \"handles\": \"handl\",\n  \"handlet\": \"handl\",\n  \"handling\": \"handling\",\n  \"handlinga\": \"handling\",\n  \"handlinger\": \"handling\",\n  \"handlingsfrist\": \"handlingsfrist\",\n  \"handlingsprogram\": \"handlingsprogram\",\n  \"handlingsprogrammer\": \"handlingsprogramm\",\n  \"handlingsrom\": \"handlingsrom\",\n  \"handlingsrommet\": \"handlingsromm\",\n  \"handpantsetjing\": \"handpantsetjing\",\n  \"handtering\": \"handtering\",\n  \"handterleg\": \"handter\",\n  \"handverkar\": \"handverk\",\n  \"handverkarar\": \"handverkar\",\n  \"handverkartenestelova\": \"handverkartenest\",\n  \"handverkartenester\": \"handverkartenest\",\n  \"hane\": \"han\",\n  \"hanegal\": \"hanegal\",\n  \"hanen\": \"han\",\n  \"haner\": \"han\",\n  \"hang\": \"hang\",\n  \"hanken\": \"hank\",\n  \"hans\": \"han\",\n  \"hansker\": \"hansk\",\n  \"hanstholm\": \"hanstholm\",\n  \"har\": \"har\",\n  \"harald\": \"harald\",\n  \"hard\": \"hard\",\n  \"hardare\": \"hardar\",\n  \"harde\": \"hard\",\n  \"hardere\": \"harder\",\n  \"hardfør\": \"hardfør\",\n  \"hardt\": \"hard\",\n  \"harer\": \"har\",\n  \"harker\": \"hark\",\n  \"harlem\": \"harlem\",\n  \"harme\": \"harm\",\n  \"harmonisere\": \"harmoniser\",\n  \"harmonisering\": \"harmonisering\",\n  \"harsk\": \"harsk\",\n  \"harstad\": \"harstad\",\n  \"hasteordrer\": \"hasteordr\",\n  \"haster\": \"hast\",\n  \"hastighet\": \"hast\",\n  \"hastverk\": \"hastverk\",\n  \"hat\": \"hat\",\n  \"hate\": \"hat\",\n  \"hater\": \"hat\",\n  \"hatet\": \"hat\",\n  \"hatt\": \"hatt\",\n  \"hattebrem\": \"hattebrem\",\n  \"hattebremmen\": \"hattebremm\",\n  \"hatten\": \"hatt\",\n  \"haug\": \"haug\",\n  \"haugen\": \"haug\",\n  \"hauger\": \"haug\",\n  \"haugesund\": \"haugesund\",\n  \"hauk\": \"hauk\",\n  \"hauker\": \"hauk\",\n  \"hausten\": \"haust\",\n  \"hav\": \"hav\",\n  \"havarer\": \"havar\",\n  \"havarere\": \"havarer\",\n  \"havet\": \"hav\",\n  \"havfolk\": \"havfolk\",\n  \"havfruer\": \"havfru\",\n  \"havgapet\": \"havgap\",\n  \"havheksen\": \"havheks\",\n  \"havkongen\": \"havkong\",\n  \"havkongens\": \"havkong\",\n  \"havmenn\": \"havmenn\",\n  \"havmennene\": \"havmenn\",\n  \"havn\": \"havn\",\n  \"havna\": \"havn\",\n  \"havnas\": \"havn\",\n  \"havne\": \"havn\",\n  \"havneaktivitetene\": \"havneaktivitet\",\n  \"havneaktiviteter\": \"havneaktivitet\",\n  \"havneanlegg\": \"havneanlegg\",\n  \"havneanløp\": \"havneanløp\",\n  \"havneareal\": \"havneareal\",\n  \"havnearealene\": \"havneareal\",\n  \"havnearealer\": \"havneareal\",\n  \"havnearealet\": \"havneareal\",\n  \"havneavgiftene\": \"havneavgift\",\n  \"havneavgifter\": \"havneavgift\",\n  \"havneavgiftssystemet\": \"havneavgiftssystem\",\n  \"havneavsnitt\": \"havneavsnitt\",\n  \"havneavsnittene\": \"havneavsnitt\",\n  \"havneavsnittet\": \"havneavsnitt\",\n  \"havnebassenget\": \"havnebasseng\",\n  \"havnebehov\": \"havnebehov\",\n  \"havnebehovet\": \"havnebehov\",\n  \"havnebruker\": \"havnebruk\",\n  \"havneby\": \"havneby\",\n  \"havnebyen\": \"havneby\",\n  \"havnebyene\": \"havneby\",\n  \"havnebyer\": \"havneby\",\n  \"havnebyscenariet\": \"havnebyscenari\",\n  \"havnedistrikt\": \"havnedistrikt\",\n  \"havnedistriktene\": \"havnedistrikt\",\n  \"havnedistrikter\": \"havnedistrikt\",\n  \"havnedistriktet\": \"havnedistrikt\",\n  \"havnedistriktets\": \"havnedistrikt\",\n  \"havnedrift\": \"havnedrift\",\n  \"havnedriften\": \"havnedrift\",\n  \"havneeffektivitet\": \"havneeffektivit\",\n  \"havneeier\": \"havneei\",\n  \"havneeiere\": \"havneeier\",\n  \"havneenheter\": \"havneen\",\n  \"havneforbund\": \"havneforbund\",\n  \"havneforbundets\": \"havneforbund\",\n  \"havneformål\": \"havneformål\",\n  \"havneforvaltningen\": \"havneforvaltning\",\n  \"havnefunksjonene\": \"havnefunksjon\",\n  \"havnefunksjoner\": \"havnefunksjon\",\n  \"havnefylkene\": \"havnefylk\",\n  \"havnefylker\": \"havnefylk\",\n  \"havnehagen\": \"havnehag\",\n  \"havneinfrastrukturen\": \"havneinfrastruktur\",\n  \"havneinnretningene\": \"havneinnretning\",\n  \"havneinnretninger\": \"havneinnretning\",\n  \"havneinteresser\": \"havneinteress\",\n  \"havnekapasitet\": \"havnekapasit\",\n  \"havnekassa\": \"havnekass\",\n  \"havnekasse\": \"havnekass\",\n  \"havnekassemidler\": \"havnekassemidl\",\n  \"havnekassen\": \"havnekass\",\n  \"havnekassene\": \"havnekass\",\n  \"havnekassens\": \"havnekass\",\n  \"havnelokalisering\": \"havnelokalisering\",\n  \"havneloven\": \"havn\",\n  \"havnelovens\": \"havn\",\n  \"havneløsning\": \"havneløsning\",\n  \"havneløsningene\": \"havneløsning\",\n  \"havneløsninger\": \"havneløsning\",\n  \"havnemessig\": \"havnemess\",\n  \"havnemyndighetene\": \"havnemynd\",\n  \"havnemyndigheter\": \"havnemynd\",\n  \"havnemønster\": \"havnemønst\",\n  \"havnen\": \"havn\",\n  \"havnene\": \"havn\",\n  \"havnenes\": \"havn\",\n  \"havnens\": \"havn\",\n  \"havneområdene\": \"havneområd\",\n  \"havneområder\": \"havneområd\",\n  \"havneområdet\": \"havneområd\",\n  \"havneoperatørene\": \"havneoperatør\",\n  \"havneoperatørenes\": \"havneoperatør\",\n  \"havneoperatører\": \"havneoperatør\",\n  \"havneoppgaver\": \"havneoppgav\",\n  \"havneplan\": \"havneplan\",\n  \"havneplanlegging\": \"havneplanlegging\",\n  \"havnepolitikk\": \"havnepolitikk\",\n  \"havnepolitikken\": \"havnepolitikk\",\n  \"havner\": \"havn\",\n  \"havnerelatert\": \"havnerelater\",\n  \"havnerettet\": \"havnerett\",\n  \"havners\": \"havn\",\n  \"havneråd\": \"havneråd\",\n  \"havnerådet\": \"havneråd\",\n  \"havnerådets\": \"havneråd\",\n  \"havnesaker\": \"havnesak\",\n  \"havnesamarbeid\": \"havnesamarbeid\",\n  \"havnesamarbeide\": \"havnesamarbeid\",\n  \"havnesamarbeider\": \"havnesamarbeid\",\n  \"havnesamarbeidet\": \"havnesamarbeid\",\n  \"havnesammenheng\": \"havnesammenheng\",\n  \"havnescenariene\": \"havnescenari\",\n  \"havnesektoren\": \"havnesektor\",\n  \"havneselskaper\": \"havneselskap\",\n  \"havnesiden\": \"havnesid\",\n  \"havnespørsmål\": \"havnespørsmål\",\n  \"havnestatistikk\": \"havnestatistikk\",\n  \"havnestruktur\": \"havnestruktur\",\n  \"havnestrukturen\": \"havnestruktur\",\n  \"havnestrukturer\": \"havnestruktur\",\n  \"havnestyre\": \"havnestyr\",\n  \"havnestyrer\": \"havnestyr\",\n  \"havnestyret\": \"havnestyr\",\n  \"havnestyrets\": \"havnestyr\",\n  \"havnesystem\": \"havnesystem\",\n  \"havneterminal\": \"havneterminal\",\n  \"havneterminalen\": \"havneterminal\",\n  \"havneterminalene\": \"havneterminal\",\n  \"havnetilbud\": \"havnetilbud\",\n  \"havnetilbudet\": \"havnetilbud\",\n  \"havnetiltakene\": \"havnetiltak\",\n  \"havnetjenesten\": \"havnetjenest\",\n  \"havnetjenestene\": \"havnetjenest\",\n  \"havnetjenester\": \"havnetjenest\",\n  \"havnetrafikk\": \"havnetrafikk\",\n  \"havnetrafikken\": \"havnetrafikk\",\n  \"havnetyper\": \"havnetyp\",\n  \"havneutbygging\": \"havneutbygging\",\n  \"havneutbyggingen\": \"havneutbygging\",\n  \"havneutflytting\": \"havneutflytting\",\n  \"havneutvalget\": \"havneutvalg\",\n  \"havneutvalgets\": \"havneutvalg\",\n  \"havneutvikling\": \"havneutvikling\",\n  \"havneutviklingen\": \"havneutvikling\",\n  \"havnevalg\": \"havnevalg\",\n  \"havnevesen\": \"havneves\",\n  \"havnevesenet\": \"havnevesen\",\n  \"havnevesenets\": \"havnevesen\",\n  \"havnevesens\": \"havneves\",\n  \"havnevirksomhet\": \"havnevirksom\",\n  \"havnevirksomheten\": \"havnevirksom\",\n  \"havnevirksomhetene\": \"havnevirksom\",\n  \"havneøkonomi\": \"havneøkonomi\",\n  \"havns\": \"havn\",\n  \"havre\": \"havr\",\n  \"havs\": \"hav\",\n  \"heder\": \"hed\",\n  \"hedmark\": \"hedmark\",\n  \"hefta\": \"heft\",\n  \"heftar\": \"heft\",\n  \"heftast\": \"heft\",\n  \"hefte\": \"heft\",\n  \"hefteform\": \"hefteform\",\n  \"hefter\": \"heft\",\n  \"heftet\": \"heft\",\n  \"hei\": \"hei\",\n  \"heia\": \"heia\",\n  \"heider\": \"heid\",\n  \"heidrun\": \"heidrun\",\n  \"heiene\": \"heien\",\n  \"heildagsmøte\": \"heildagsmøt\",\n  \"heile\": \"heil\",\n  \"heilskapleg\": \"heilskap\",\n  \"heilt\": \"heilt\",\n  \"heilårsbustader\": \"heilårsbustad\",\n  \"heim\": \"heim\",\n  \"heimdall\": \"heimdall\",\n  \"heimdalls\": \"heimdall\",\n  \"heime\": \"heim\",\n  \"heimekontor\": \"heimekontor\",\n  \"heimel\": \"heimel\",\n  \"heimelen\": \"heimel\",\n  \"heimelsdokument\": \"heimelsdokument\",\n  \"heimelsdokumenta\": \"heimelsdokument\",\n  \"heimelshavar\": \"heimelshav\",\n  \"heimelsoverføring\": \"heimelsoverføring\",\n  \"heimelsovergang\": \"heimelsovergang\",\n  \"heimen\": \"heim\",\n  \"heimesider\": \"heimesid\",\n  \"heimlar\": \"heiml\",\n  \"heise\": \"heis\",\n  \"heisen\": \"heis\",\n  \"heiser\": \"heis\",\n  \"heises\": \"heis\",\n  \"heiter\": \"heit\",\n  \"heks\": \"heks\",\n  \"heksen\": \"heks\",\n  \"hekser\": \"heks\",\n  \"hel\": \"hel\",\n  \"helagt\": \"helagt\",\n  \"helblinde\": \"helblind\",\n  \"held\": \"held\",\n  \"heldagsmøter\": \"heldagsmøt\",\n  \"heldig\": \"held\",\n  \"heldige\": \"held\",\n  \"heldigvis\": \"heldigvis\",\n  \"hele\": \"hel\",\n  \"helgedag\": \"helgedag\",\n  \"helgedagar\": \"helgedag\",\n  \"helhet\": \"hel\",\n  \"helhetlig\": \"helhet\",\n  \"helhetlige\": \"helhet\",\n  \"helhetsvurdering\": \"helhetsvurdering\",\n  \"helhunden\": \"helhund\",\n  \"hell\": \"hell\",\n  \"heller\": \"hell\",\n  \"hellet\": \"hell\",\n  \"hellig\": \"hel\",\n  \"hellige\": \"hel\",\n  \"hels\": \"hel\",\n  \"helse\": \"hels\",\n  \"helsefarlege\": \"helsefar\",\n  \"helsesituasjon\": \"helsesituasjon\",\n  \"helst\": \"helst\",\n  \"helt\": \"helt\",\n  \"heltedåder\": \"heltedåd\",\n  \"heltegjerninger\": \"heltegjerning\",\n  \"heltene\": \"helt\",\n  \"helter\": \"helt\",\n  \"heltidsansatte\": \"heltidsansatt\",\n  \"heltidsstilling\": \"heltidsstilling\",\n  \"helveien\": \"helvei\",\n  \"hemmelege\": \"hemm\",\n  \"hemmeleghald\": \"hemmeleghald\",\n  \"hemmelig\": \"hemm\",\n  \"hemmelige\": \"hemm\",\n  \"hemmelighet\": \"hemm\",\n  \"hemmeligheten\": \"hemm\",\n  \"hemmeligheter\": \"hemm\",\n  \"hemmelighetsfulle\": \"hemmelighetsfull\",\n  \"hen\": \"hen\",\n  \"hende\": \"hend\",\n  \"hendene\": \"hend\",\n  \"hender\": \"hend\",\n  \"hending\": \"hending\",\n  \"hendt\": \"hend\",\n  \"hendte\": \"hend\",\n  \"henføres\": \"henfør\",\n  \"henført\": \"henført\",\n  \"heng\": \"heng\",\n  \"henge\": \"heng\",\n  \"hengekjeft\": \"hengekjeft\",\n  \"hengende\": \"heng\",\n  \"henger\": \"heng\",\n  \"henges\": \"heng\",\n  \"henhold\": \"henhold\",\n  \"henholdsvis\": \"henholdsvis\",\n  \"henne\": \"henn\",\n  \"hennes\": \"henn\",\n  \"henning\": \"henning\",\n  \"henseende\": \"hense\",\n  \"hensett\": \"hensett\",\n  \"hensettingsspor\": \"hensettingsspor\",\n  \"hensikt\": \"hensikt\",\n  \"hensikten\": \"hensikt\",\n  \"hensiktsmessig\": \"hensiktsmess\",\n  \"hensiktsmessige\": \"hensiktsmess\",\n  \"hensiktsmessighetsnorm\": \"hensiktsmessighetsnorm\",\n  \"hensiktsmessighetssider\": \"hensiktsmessighetssid\",\n  \"henstille\": \"henstill\",\n  \"henstilling\": \"henstilling\",\n  \"hensyn\": \"hensyn\",\n  \"hensynene\": \"hensyn\",\n  \"hensynet\": \"hensyn\",\n  \"hensynsløst\": \"hensynsløst\",\n  \"hensynta\": \"hensynt\",\n  \"hensyntas\": \"hensynt\",\n  \"henta\": \"hent\",\n  \"hentar\": \"hent\",\n  \"hentast\": \"hent\",\n  \"hente\": \"hent\",\n  \"henter\": \"hent\",\n  \"hentes\": \"hent\",\n  \"hentet\": \"hent\",\n  \"henting\": \"henting\",\n  \"henvendelser\": \"henvend\",\n  \"henviser\": \"henvis\",\n  \"henvises\": \"henvis\",\n  \"henvisning\": \"henvisning\",\n  \"henvisningen\": \"henvisning\",\n  \"henvist\": \"henvist\",\n  \"her\": \"her\",\n  \"heradsrett\": \"heradsrett\",\n  \"herav\": \"herav\",\n  \"heretter\": \"herett\",\n  \"herfra\": \"herfr\",\n  \"hergarten\": \"hergart\",\n  \"herjan\": \"herjan\",\n  \"herje\": \"herj\",\n  \"herjer\": \"herj\",\n  \"herjet\": \"herj\",\n  \"herligste\": \"herligst\",\n  \"hermed\": \"hermed\",\n  \"hermod\": \"hermod\",\n  \"herre\": \"herr\",\n  \"herrer\": \"herr\",\n  \"herres\": \"herr\",\n  \"hersker\": \"hersk\",\n  \"herunder\": \"herund\",\n  \"herøya\": \"herøy\",\n  \"hese\": \"hes\",\n  \"heslige\": \"hes\",\n  \"hest\": \"hest\",\n  \"hestehover\": \"hestehov\",\n  \"hestekar\": \"hestek\",\n  \"hesten\": \"hest\",\n  \"hestene\": \"hest\",\n  \"hester\": \"hest\",\n  \"hesteryggen\": \"hesterygg\",\n  \"het\": \"het\",\n  \"hete\": \"het\",\n  \"heter\": \"het\",\n  \"heva\": \"hev\",\n  \"hevast\": \"hev\",\n  \"hevde\": \"hevd\",\n  \"hevder\": \"hevd\",\n  \"hevdes\": \"hevd\",\n  \"heve\": \"hev\",\n  \"heving\": \"heving\",\n  \"hevingsregelen\": \"hevingsregel\",\n  \"hevingsrett\": \"hevingsrett\",\n  \"hevn\": \"hevn\",\n  \"hevne\": \"hevn\",\n  \"hevnens\": \"hevn\",\n  \"hevner\": \"hevn\",\n  \"hevnes\": \"hevn\",\n  \"hevnet\": \"hevn\",\n  \"hht\": \"hht\",\n  \"hhv\": \"hhv\",\n  \"hikker\": \"hikk\",\n  \"hikster\": \"hikst\",\n  \"hilde\": \"hild\",\n  \"hils\": \"hil\",\n  \"hilse\": \"hils\",\n  \"hilser\": \"hils\",\n  \"hilset\": \"hils\",\n  \"himler\": \"himl\",\n  \"himling\": \"himling\",\n  \"himlingsplater\": \"himlingsplat\",\n  \"himmel\": \"himmel\",\n  \"himmelberget\": \"himmelberg\",\n  \"himmelen\": \"himmel\",\n  \"himmelhvelvingen\": \"himmelhvelving\",\n  \"himmelretninger\": \"himmelretning\",\n  \"himmelske\": \"himmelsk\",\n  \"himmelvogn\": \"himmelvogn\",\n  \"hindarfjell\": \"hindarfjell\",\n  \"hinder\": \"hind\",\n  \"hindra\": \"hindr\",\n  \"hindrar\": \"hindr\",\n  \"hindre\": \"hindr\",\n  \"hindrer\": \"hindr\",\n  \"hindring\": \"hindring\",\n  \"hindringa\": \"hindring\",\n  \"hindringer\": \"hindring\",\n  \"hingst\": \"hingst\",\n  \"hingsten\": \"hingst\",\n  \"hink\": \"hink\",\n  \"hinkende\": \"hink\",\n  \"hinket\": \"hink\",\n  \"hinne\": \"hinn\",\n  \"hirtshals\": \"hirtshal\",\n  \"hisse\": \"hiss\",\n  \"hissig\": \"hiss\",\n  \"historien\": \"histori\",\n  \"historier\": \"histori\",\n  \"historikk\": \"historikk\",\n  \"historisk\": \"historisk\",\n  \"historiske\": \"historisk\",\n  \"hit\": \"hit\",\n  \"hittil\": \"hittil\",\n  \"hiver\": \"hiv\",\n  \"hjalp\": \"hjalp\",\n  \"hjel\": \"hjel\",\n  \"hjelm\": \"hjelm\",\n  \"hjelp\": \"hjelp\",\n  \"hjelpe\": \"hjelp\",\n  \"hjelpeløs\": \"hjelpeløs\",\n  \"hjelpeløse\": \"hjelpeløs\",\n  \"hjelpemidler\": \"hjelpemidl\",\n  \"hjelper\": \"hjelp\",\n  \"hjelpesmann\": \"hjelpesmann\",\n  \"hjem\": \"hjem\",\n  \"hjemkomsten\": \"hjemkomst\",\n  \"hjemland\": \"hjemland\",\n  \"hjemlandet\": \"hjemland\",\n  \"hjemlands\": \"hjemland\",\n  \"hjemlandskontroll\": \"hjemlandskontroll\",\n  \"hjemler\": \"hjeml\",\n  \"hjemlet\": \"hjeml\",\n  \"hjemløs\": \"hjemløs\",\n  \"hjemme\": \"hjemm\",\n  \"hjemmehørende\": \"hjemmehør\",\n  \"hjemmel\": \"hjemmel\",\n  \"hjemmelen\": \"hjemmel\",\n  \"hjemmelsbruken\": \"hjemmelsbruk\",\n  \"hjemmet\": \"hjemm\",\n  \"hjemover\": \"hjemov\",\n  \"hjemsøkes\": \"hjemsøk\",\n  \"hjemvei\": \"hjemvei\",\n  \"hjernen\": \"hjern\",\n  \"hjerte\": \"hjert\",\n  \"hjerteblod\": \"hjerteblod\",\n  \"hjertelig\": \"hjert\",\n  \"hjertens\": \"hjert\",\n  \"hjertet\": \"hjert\",\n  \"hjort\": \"hjort\",\n  \"hjorter\": \"hjort\",\n  \"hjortland\": \"hjortland\",\n  \"hjortnes\": \"hjortn\",\n  \"hjul\": \"hjul\",\n  \"hjulene\": \"hjul\",\n  \"hjulet\": \"hjul\",\n  \"hjå\": \"hjå\",\n  \"hjørne\": \"hjørn\",\n  \"hjørner\": \"hjørn\",\n  \"hjørnesteinsbedriften\": \"hjørnesteinsbedrift\",\n  \"hlin\": \"hlin\",\n  \"hm\": \"hm\",\n  \"ho\": \"ho\",\n  \"hobbyrom\": \"hobbyrom\",\n  \"hod\": \"hod\",\n  \"hoddmimes\": \"hoddmim\",\n  \"hode\": \"hod\",\n  \"hodeduk\": \"hodeduk\",\n  \"hodene\": \"hod\",\n  \"hodepine\": \"hodepin\",\n  \"hoder\": \"hod\",\n  \"hodeskalle\": \"hodeskall\",\n  \"hodeskallen\": \"hodeskall\",\n  \"hodet\": \"hod\",\n  \"hods\": \"hod\",\n  \"hoffet\": \"hoff\",\n  \"hoftene\": \"hoft\",\n  \"hofter\": \"hoft\",\n  \"hoho\": \"hoho\",\n  \"hoi\": \"hoi\",\n  \"hold\": \"hold\",\n  \"holde\": \"hold\",\n  \"holdent\": \"holdent\",\n  \"holdepunkter\": \"holdepunkt\",\n  \"holder\": \"hold\",\n  \"holdes\": \"hold\",\n  \"holdning\": \"holdning\",\n  \"holdninger\": \"holdning\",\n  \"holdt\": \"hold\",\n  \"holme\": \"holm\",\n  \"holmen\": \"holm\",\n  \"holmer\": \"holm\",\n  \"holmestrand\": \"holmestrand\",\n  \"holmgang\": \"holmgang\",\n  \"holt\": \"holt\",\n  \"homofil\": \"homofil\",\n  \"homogene\": \"homog\",\n  \"honning\": \"honning\",\n  \"honningdugg\": \"honningdugg\",\n  \"hop\": \"hop\",\n  \"hopar\": \"hop\",\n  \"hoppa\": \"hopp\",\n  \"hoppe\": \"hopp\",\n  \"hoppende\": \"hopp\",\n  \"hopper\": \"hopp\",\n  \"hoppet\": \"hopp\",\n  \"hordaland\": \"hordaland\",\n  \"horisont\": \"horisont\",\n  \"horisontalt\": \"horisontalt\",\n  \"horisonten\": \"horisont\",\n  \"horisontår\": \"horisontår\",\n  \"horn\": \"horn\",\n  \"hornene\": \"horn\",\n  \"hornet\": \"horn\",\n  \"horten\": \"hort\",\n  \"hos\": \"hos\",\n  \"hospits\": \"hospit\",\n  \"housing\": \"housing\",\n  \"hovedadresse\": \"hovedadress\",\n  \"hovedaktiviteten\": \"hovedaktivitet\",\n  \"hovedaktør\": \"hovedaktør\",\n  \"hovedaktørene\": \"hovedaktør\",\n  \"hovedalternativ\": \"hovedalternativ\",\n  \"hovedalternativer\": \"hovedalternativ\",\n  \"hovedalternativet\": \"hovedalternativ\",\n  \"hovedandelen\": \"hovedandel\",\n  \"hovedansvaret\": \"hovedansvar\",\n  \"hovedargumentet\": \"hovedargument\",\n  \"hovedavsnitt\": \"hovedavsnitt\",\n  \"hoveddelen\": \"hoveddel\",\n  \"hoveddelene\": \"hoveddel\",\n  \"hoveddeler\": \"hoveddel\",\n  \"hoveddepotet\": \"hoveddepot\",\n  \"hovedelementer\": \"hovedelement\",\n  \"hovedforbindelse\": \"hovedforbind\",\n  \"hovedforbindelsen\": \"hovedforbind\",\n  \"hovedformål\": \"hovedformål\",\n  \"hovedforutsetning\": \"hovedforutsetning\",\n  \"hovedgodsstrømmene\": \"hovedgodsstrømm\",\n  \"hovedgodsterminal\": \"hovedgodsterminal\",\n  \"hovedgruppene\": \"hovedgrupp\",\n  \"hovedgrupper\": \"hovedgrupp\",\n  \"hovedhavn\": \"hovedhavn\",\n  \"hovedhavnen\": \"hovedhavn\",\n  \"hovedhavneområder\": \"hovedhavneområd\",\n  \"hovedhavner\": \"hovedhavn\",\n  \"hovedhensyn\": \"hovedhensyn\",\n  \"hovedhensynene\": \"hovedhensyn\",\n  \"hovedinndeling\": \"hovedinndeling\",\n  \"hovedinndelinger\": \"hovedinndeling\",\n  \"hovedinnfartsvegene\": \"hovedinnfartsveg\",\n  \"hovedinntekts\": \"hovedinntekt\",\n  \"hovedkonklusjonene\": \"hovedkonklusjon\",\n  \"hovedkonklusjoner\": \"hovedkonklusjon\",\n  \"hovedkontoradresse\": \"hovedkontoradress\",\n  \"hovedkontoreffekt\": \"hovedkontoreffekt\",\n  \"hovedkorridorene\": \"hovedkorridor\",\n  \"hovedkravet\": \"hovedkrav\",\n  \"hovedkriterium\": \"hovedkriterium\",\n  \"hovedled\": \"hovedled\",\n  \"hovedlinjene\": \"hovedlinj\",\n  \"hovedmoment\": \"hovedmoment\",\n  \"hovedmål\": \"hovedmål\",\n  \"hovedmålet\": \"hovedmål\",\n  \"hovedmønsteret\": \"hovedmønster\",\n  \"hovedoppgave\": \"hovedoppgav\",\n  \"hovedoppgavene\": \"hovedoppgav\",\n  \"hovedoppgaver\": \"hovedoppgav\",\n  \"hovedordning\": \"hovedordning\",\n  \"hovedorganisasjon\": \"hovedorganisasjon\",\n  \"hovedperspektiver\": \"hovedperspektiv\",\n  \"hovedplan\": \"hovedplan\",\n  \"hovedpoeng\": \"hovedpoeng\",\n  \"hovedpremisser\": \"hovedpremiss\",\n  \"hovedprinsipp\": \"hovedprinsipp\",\n  \"hovedprinsipper\": \"hovedprinsipp\",\n  \"hovedprinsippet\": \"hovedprinsipp\",\n  \"hovedproblemene\": \"hovedproblem\",\n  \"hovedproblemstilling\": \"hovedproblemstilling\",\n  \"hovedproblemstillingen\": \"hovedproblemstilling\",\n  \"hovedproblemstillinger\": \"hovedproblemstilling\",\n  \"hovedprognose\": \"hovedprognos\",\n  \"hovedpunkter\": \"hovedpunkt\",\n  \"hovedrapport\": \"hovedrapport\",\n  \"hovedrapporten\": \"hovedrapport\",\n  \"hovedregel\": \"hovedregel\",\n  \"hovedregelen\": \"hovedregel\",\n  \"hovedretningslinjer\": \"hovedretningslinj\",\n  \"hovedrolle\": \"hovedroll\",\n  \"hovedsak\": \"hovedsak\",\n  \"hovedsakelig\": \"hovedsak\",\n  \"hovedsamarbeidspartner\": \"hovedsamarbeidspartn\",\n  \"hovedsammenslutningene\": \"hovedsammenslutning\",\n  \"hovedsete\": \"hovedset\",\n  \"hovedside\": \"hovedsid\",\n  \"hovedsiden\": \"hovedsid\",\n  \"hovedskipsleia\": \"hovedskipslei\",\n  \"hovedspørsmål\": \"hovedspørsmål\",\n  \"hovedspørsmålene\": \"hovedspørsmål\",\n  \"hovedspørsmålet\": \"hovedspørsmål\",\n  \"hovedstaden\": \"hovedstad\",\n  \"hovedstadsområdet\": \"hovedstadsområd\",\n  \"hovedstadsutvalget\": \"hovedstadsutvalg\",\n  \"hovedstrømmene\": \"hovedstrømm\",\n  \"hovedsynspunkt\": \"hovedsynspunkt\",\n  \"hovedtall\": \"hovedtall\",\n  \"hovedtanken\": \"hovedtank\",\n  \"hovedtema\": \"hovedtem\",\n  \"hovedtemaene\": \"hovedtema\",\n  \"hovedtemaer\": \"hovedtema\",\n  \"hovedterminal\": \"hovedterminal\",\n  \"hovedterminalen\": \"hovedterminal\",\n  \"hovedtransportåren\": \"hovedtransportår\",\n  \"hovedtrekk\": \"hovedtrekk\",\n  \"hovedtrekkene\": \"hovedtrekk\",\n  \"hovedtrekket\": \"hovedtrekk\",\n  \"hovedtrender\": \"hovedtrend\",\n  \"hovedtyngden\": \"hovedtyngd\",\n  \"hovedtypene\": \"hovedtyp\",\n  \"hovedtyper\": \"hovedtyp\",\n  \"hovedutfordringene\": \"hovedutfordring\",\n  \"hovedutfyllingene\": \"hovedutfylling\",\n  \"hovedvalg\": \"hovedvalg\",\n  \"hovedvaregrupper\": \"hovedvaregrupp\",\n  \"hovedvareslag\": \"hovedvareslag\",\n  \"hovedvegnett\": \"hovedvegnett\",\n  \"hovedvegnettet\": \"hovedvegnett\",\n  \"hovedvegsystem\": \"hovedvegsystem\",\n  \"hovedvegsystemet\": \"hovedvegsystem\",\n  \"hovedvekt\": \"hovedvekt\",\n  \"hovedvirksomheten\": \"hovedvirksom\",\n  \"hovedvurderinger\": \"hovedvurdering\",\n  \"hovedytelse\": \"hovedyt\",\n  \"hovi\": \"hovi\",\n  \"hovudaktivitetane\": \"hovudaktivitet\",\n  \"hovudalternativ\": \"hovudalternativ\",\n  \"hovudansvaret\": \"hovudansvar\",\n  \"hovuddrag\": \"hovuddrag\",\n  \"hovuddraga\": \"hovuddrag\",\n  \"hovudformer\": \"hovudform\",\n  \"hovudføremål\": \"hovudføremål\",\n  \"hovudføremålet\": \"hovudføremål\",\n  \"hovudinnhaldet\": \"hovudinnhald\",\n  \"hovudkontor\": \"hovudkontor\",\n  \"hovudleigar\": \"hovudl\",\n  \"hovudliner\": \"hovudlin\",\n  \"hovudmål\": \"hovudmål\",\n  \"hovudorganisasjonen\": \"hovudorganisasjon\",\n  \"hovudpunkt\": \"hovudpunkt\",\n  \"hovudregel\": \"hovudregel\",\n  \"hovudregelen\": \"hovudregel\",\n  \"hovudreglane\": \"hovudregl\",\n  \"hovudreglar\": \"hovudregl\",\n  \"hovudsak\": \"hovudsak\",\n  \"hovudsakleg\": \"hovudsak\",\n  \"hovudsaklege\": \"hovudsak\",\n  \"hovudsamanslutninga\": \"hovudsamanslutning\",\n  \"hovudstol\": \"hovudstol\",\n  \"hovudsynspunktet\": \"hovudsynspunkt\",\n  \"hovudtypar\": \"hovudtyp\",\n  \"hovudvekta\": \"hovudvekt\",\n  \"hovvarpne\": \"hovvarpn\",\n  \"hsb\": \"hsb\",\n  \"hubs\": \"hub\",\n  \"huden\": \"hud\",\n  \"hudfarge\": \"hudfarg\",\n  \"hudfarve\": \"hudfarv\",\n  \"huff\": \"huff\",\n  \"huge\": \"hug\",\n  \"hugen\": \"hug\",\n  \"hugge\": \"hugg\",\n  \"hugger\": \"hugg\",\n  \"hugget\": \"hugg\",\n  \"huggormer\": \"huggorm\",\n  \"hugin\": \"hugin\",\n  \"huk\": \"huk\",\n  \"huke\": \"huk\",\n  \"huldrefolket\": \"huldrefolk\",\n  \"huldrer\": \"huldr\",\n  \"hule\": \"hul\",\n  \"huler\": \"hul\",\n  \"hulker\": \"hulk\",\n  \"hull\": \"hull\",\n  \"hullet\": \"hull\",\n  \"humanitære\": \"humanitær\",\n  \"humør\": \"humør\",\n  \"hun\": \"hun\",\n  \"hunaland\": \"hunaland\",\n  \"hund\": \"hund\",\n  \"hundehus\": \"hundehus\",\n  \"hunden\": \"hund\",\n  \"hundene\": \"hund\",\n  \"hunder\": \"hund\",\n  \"hundre\": \"hundr\",\n  \"hundreår\": \"hundreår\",\n  \"hundreåret\": \"hundreår\",\n  \"hunger\": \"hung\",\n  \"hurtig\": \"hurt\",\n  \"hurtige\": \"hurt\",\n  \"hurtiggående\": \"hurtiggå\",\n  \"hurtigruta\": \"hurtigrut\",\n  \"hurum\": \"hurum\",\n  \"hus\": \"hus\",\n  \"husa\": \"hus\",\n  \"husbank\": \"husbank\",\n  \"husbanken\": \"husbank\",\n  \"husbankterminar\": \"husbanktermin\",\n  \"husbråk\": \"husbråk\",\n  \"huseigarar\": \"huseigar\",\n  \"husene\": \"hus\",\n  \"huset\": \"hus\",\n  \"husflid\": \"husflid\",\n  \"husgeråd\": \"husgeråd\",\n  \"hushalda\": \"hushald\",\n  \"husholdningene\": \"husholdning\",\n  \"husholdningenes\": \"husholdning\",\n  \"husholdninger\": \"husholdning\",\n  \"husk\": \"husk\",\n  \"huske\": \"husk\",\n  \"husker\": \"husk\",\n  \"huskes\": \"husk\",\n  \"husleieloven\": \"huslei\",\n  \"husleiereguleringsloven\": \"husleieregulering\",\n  \"husleiga\": \"husl\",\n  \"husleige\": \"husl\",\n  \"husleigeavtalane\": \"husleigeavtal\",\n  \"husleigeavtale\": \"husleigeavtal\",\n  \"husleigebetaling\": \"husleigebetaling\",\n  \"husleigedomstolar\": \"husleigedomstol\",\n  \"husleigeforhold\": \"husleigeforhold\",\n  \"husleigeinnkrevjing\": \"husleigeinnkrevjing\",\n  \"husleigelova\": \"husleig\",\n  \"husleigelovgjevinga\": \"husleigelovgjeving\",\n  \"husleigeretten\": \"husleigerett\",\n  \"husleigerettsleg\": \"husleigeretts\",\n  \"husleigetap\": \"husleigetap\",\n  \"husleigetvistar\": \"husleigetvist\",\n  \"husleigetvistutval\": \"husleigetvistutval\",\n  \"husleigetvistutvala\": \"husleigetvistutval\",\n  \"husordensreglar\": \"husordensregl\",\n  \"husrom\": \"husrom\",\n  \"husstand\": \"husstand\",\n  \"husstanden\": \"husstand\",\n  \"husstandsfellesskap\": \"husstandsfellesskap\",\n  \"husstandsfellesskapslova\": \"husstandsfellesskap\",\n  \"husstandsmedlem\": \"husstandsmedlem\",\n  \"husstandsmedlemmen\": \"husstandsmedlemm\",\n  \"husstandsmedlemmer\": \"husstandsmedlemm\",\n  \"hussøkjande\": \"hussøkj\",\n  \"hussøkjarane\": \"hussøkjar\",\n  \"hussøkjarar\": \"hussøkjar\",\n  \"hussøkjarinteressene\": \"hussøkjarinteress\",\n  \"hustelefonsentral\": \"hustelefonsentral\",\n  \"hustru\": \"hustru\",\n  \"husvære\": \"husvær\",\n  \"hutrende\": \"hutr\",\n  \"hutrer\": \"hutr\",\n  \"hutte\": \"hutt\",\n  \"hva\": \"hva\",\n  \"hvalene\": \"hval\",\n  \"hvaler\": \"hval\",\n  \"hvalp\": \"hvalp\",\n  \"hvasse\": \"hvass\",\n  \"hvasst\": \"hvasst\",\n  \"hvelving\": \"hvelving\",\n  \"hvem\": \"hvem\",\n  \"hver\": \"hver\",\n  \"hverandre\": \"hverandr\",\n  \"hverdag\": \"hverdag\",\n  \"hvergelme\": \"hvergelm\",\n  \"hverken\": \"hverk\",\n  \"hvert\": \"hvert\",\n  \"hvese\": \"hves\",\n  \"hveser\": \"hves\",\n  \"hvil\": \"hvil\",\n  \"hvile\": \"hvil\",\n  \"hviler\": \"hvil\",\n  \"hvilke\": \"hvilk\",\n  \"hvilken\": \"hvilk\",\n  \"hvilket\": \"hvilk\",\n  \"hvirvlende\": \"hvirvl\",\n  \"hvirvler\": \"hvirvl\",\n  \"hvis\": \"hvis\",\n  \"hviske\": \"hvisk\",\n  \"hvisker\": \"hvisk\",\n  \"hvisket\": \"hvisk\",\n  \"hvisler\": \"hvisl\",\n  \"hvit\": \"hvit\",\n  \"hvite\": \"hvit\",\n  \"hviteste\": \"hvitest\",\n  \"hvitner\": \"hvitn\",\n  \"hvitt\": \"hvitt\",\n  \"hvittensand\": \"hvittensand\",\n  \"hvor\": \"hvor\",\n  \"hvorav\": \"hvorav\",\n  \"hvordan\": \"hvordan\",\n  \"hvoretter\": \"hvorett\",\n  \"hvorfor\": \"hvorfor\",\n  \"hvorledes\": \"hvorl\",\n  \"hvorvidt\": \"hvorvid\",\n  \"hybelbuarar\": \"hybelbuar\",\n  \"hyblar\": \"hybl\",\n  \"hydro\": \"hydro\",\n  \"hydros\": \"hydro\",\n  \"hyggelig\": \"hygg\",\n  \"hyggeligste\": \"hyggeligst\",\n  \"hyl\": \"hyl\",\n  \"hyler\": \"hyl\",\n  \"hylland\": \"hylland\",\n  \"hyllandutvalget\": \"hyllandutvalg\",\n  \"hylte\": \"hylt\",\n  \"hyme\": \"hym\",\n  \"hymes\": \"hym\",\n  \"hypotekforeiningar\": \"hypotekforeining\",\n  \"hypp\": \"hypp\",\n  \"hypper\": \"hypp\",\n  \"hyppige\": \"hypp\",\n  \"hyppigere\": \"hyppiger\",\n  \"hyre\": \"hyr\",\n  \"hyresgasternas\": \"hyresgastern\",\n  \"hyrrokken\": \"hyrrokk\",\n  \"hysj\": \"hysj\",\n  \"hytta\": \"hytt\",\n  \"hytte\": \"hytt\",\n  \"hyttefelt\": \"hyttefelt\",\n  \"hytter\": \"hytt\",\n  \"hå\": \"hå\",\n  \"håkan\": \"håkan\",\n  \"hånd\": \"hånd\",\n  \"hånde\": \"hånd\",\n  \"hånden\": \"hånd\",\n  \"håndflaten\": \"håndflat\",\n  \"håndheve\": \"håndhev\",\n  \"håndheving\": \"håndheving\",\n  \"håndkvern\": \"håndkvern\",\n  \"håndledd\": \"håndledd\",\n  \"håndleddet\": \"håndledd\",\n  \"håndslag\": \"håndslag\",\n  \"håndtak\": \"håndtak\",\n  \"håndtere\": \"håndter\",\n  \"håndterer\": \"håndter\",\n  \"håndteres\": \"håndter\",\n  \"håndtering\": \"håndtering\",\n  \"håndteringen\": \"håndtering\",\n  \"håndteringsevne\": \"håndteringsevn\",\n  \"håndteringsform\": \"håndteringsform\",\n  \"håndteringskapasitet\": \"håndteringskapasit\",\n  \"håndteringsteknologi\": \"håndteringsteknologi\",\n  \"håndteringstjenester\": \"håndteringstjenest\",\n  \"håndteringsutstyr\": \"håndteringsutstyr\",\n  \"håndtert\": \"håndter\",\n  \"håndterte\": \"håndter\",\n  \"håne\": \"hån\",\n  \"håner\": \"hån\",\n  \"hånlig\": \"hån\",\n  \"håp\": \"håp\",\n  \"håpe\": \"håp\",\n  \"håper\": \"håp\",\n  \"håpet\": \"håp\",\n  \"håpløsheten\": \"håpløs\",\n  \"hår\": \"hår\",\n  \"håret\": \"hår\",\n  \"hårete\": \"håret\",\n  \"håvamål\": \"håvamål\",\n  \"hæl\": \"hæl\",\n  \"hælene\": \"hæl\",\n  \"hæler\": \"hæl\",\n  \"hær\": \"hær\",\n  \"hæren\": \"hær\",\n  \"hærene\": \"hær\",\n  \"hærfører\": \"hærfør\",\n  \"hærguden\": \"hærgud\",\n  \"hærklær\": \"hærklær\",\n  \"hærskare\": \"hærskar\",\n  \"hærskarer\": \"hærskar\",\n  \"hæs\": \"hæs\",\n  \"høflig\": \"høf\",\n  \"høg\": \"høg\",\n  \"høgare\": \"høgar\",\n  \"høgast\": \"høg\",\n  \"høgaste\": \"høgast\",\n  \"høge\": \"høg\",\n  \"høgst\": \"høgst\",\n  \"høgste\": \"høgst\",\n  \"høgsteretts\": \"høgsterett\",\n  \"høgt\": \"høgt\",\n  \"høilund\": \"høilund\",\n  \"høne\": \"høn\",\n  \"hør\": \"hør\",\n  \"høre\": \"hør\",\n  \"hører\": \"hør\",\n  \"høres\": \"hør\",\n  \"høring\": \"høring\",\n  \"høringsfrist\": \"høringsfrist\",\n  \"høringsnotatet\": \"høringsnotat\",\n  \"høringsuttalelse\": \"høringsuttal\",\n  \"høringsuttalelsene\": \"høringsuttal\",\n  \"hørsel\": \"hørsel\",\n  \"hørt\": \"hørt\",\n  \"hørte\": \"hørt\",\n  \"høst\": \"høst\",\n  \"høste\": \"høst\",\n  \"høsten\": \"høst\",\n  \"høststormene\": \"høststorm\",\n  \"høvding\": \"høvding\",\n  \"høvdingen\": \"høvding\",\n  \"høvdinger\": \"høvding\",\n  \"høvdings\": \"høvding\",\n  \"høvdingsetet\": \"høvdingset\",\n  \"høve\": \"høv\",\n  \"høveleg\": \"høv\",\n  \"høvet\": \"høv\",\n  \"høvik\": \"høvik\",\n  \"høvisk\": \"høvisk\",\n  \"høy\": \"høy\",\n  \"høyavkastningsperiode\": \"høyavkastningsperiod\",\n  \"høyde\": \"høyd\",\n  \"høydebegrensninger\": \"høydebegrensning\",\n  \"høyden\": \"høyd\",\n  \"høye\": \"høye\",\n  \"høyere\": \"høyer\",\n  \"høyes\": \"høyes\",\n  \"høyest\": \"høyest\",\n  \"høyeste\": \"høyest\",\n  \"høyfrekvent\": \"høyfrekvent\",\n  \"høyfrekvente\": \"høyfrekvent\",\n  \"høyhastighetstog\": \"høyhastighetstog\",\n  \"høyinntektsgruppen\": \"høyinntektsgrupp\",\n  \"høyrde\": \"høyrd\",\n  \"høyre\": \"høyr\",\n  \"høyrer\": \"høyr\",\n  \"høyringsmøta\": \"høyringsmøt\",\n  \"høyringsmøte\": \"høyringsmøt\",\n  \"høyringsnotatet\": \"høyringsnotat\",\n  \"høyringsrunden\": \"høyringsrund\",\n  \"høyrt\": \"høyrt\",\n  \"høysete\": \"høyset\",\n  \"høyseter\": \"høyset\",\n  \"høysetet\": \"høyset\",\n  \"høyst\": \"høyst\",\n  \"høyt\": \"høyt\",\n  \"høytlønte\": \"høytlønt\",\n  \"høyvann\": \"høyvann\",\n  \"i\": \"i\",\n  \"iallfall\": \"iallfall\",\n  \"ica\": \"ica\",\n  \"ida\": \"ida\",\n  \"idag\": \"idag\",\n  \"idavollen\": \"idavoll\",\n  \"iddefjorden\": \"iddefjord\",\n  \"ide\": \"ide\",\n  \"idealistisk\": \"idealistisk\",\n  \"idear\": \"ide\",\n  \"ideell\": \"ideell\",\n  \"ideelle\": \"ideell\",\n  \"ideelt\": \"ideelt\",\n  \"ideen\": \"ide\",\n  \"identifiseres\": \"identifiser\",\n  \"identisk\": \"identisk\",\n  \"identiske\": \"identisk\",\n  \"identiteten\": \"identitet\",\n  \"idet\": \"idet\",\n  \"idretter\": \"idrett\",\n  \"idretts\": \"idrett\",\n  \"idunn\": \"idunn\",\n  \"idunns\": \"idunn\",\n  \"ifra\": \"ifr\",\n  \"ifølge\": \"ifølg\",\n  \"igangsatt\": \"igangsatt\",\n  \"igangsette\": \"igangsett\",\n  \"igangsettes\": \"igangsett\",\n  \"igjen\": \"igj\",\n  \"igjennom\": \"igjennom\",\n  \"igår\": \"igår\",\n  \"ihjel\": \"ihjel\",\n  \"ihrer\": \"ihr\",\n  \"iht\": \"iht\",\n  \"ii\": \"ii\",\n  \"ikke\": \"ikk\",\n  \"ikkeeksisterende\": \"ikkeeksister\",\n  \"ikkje\": \"ikkj\",\n  \"ikraft\": \"ikraft\",\n  \"ikraftsetjing\": \"ikraftsetjing\",\n  \"ikraftsetjinga\": \"ikraftsetjing\",\n  \"ikrafttredelse\": \"ikrafttred\",\n  \"ikrafttreden\": \"ikrafttred\",\n  \"iksl\": \"iksl\",\n  \"ild\": \"ild\",\n  \"ilden\": \"ild\",\n  \"ildfolket\": \"ildfolk\",\n  \"ildkjempen\": \"ildkjemp\",\n  \"ildkulen\": \"ildkul\",\n  \"ildlandet\": \"ildland\",\n  \"ildringen\": \"ildring\",\n  \"ildrytterne\": \"ildryttern\",\n  \"ildrød\": \"ildrød\",\n  \"ildsmykket\": \"ildsmykk\",\n  \"ildstedet\": \"ildsted\",\n  \"ildstormen\": \"ildstorm\",\n  \"ille\": \"ill\",\n  \"illeluktende\": \"illelukt\",\n  \"illusorisk\": \"illusorisk\",\n  \"illustrasjon\": \"illustrasjon\",\n  \"illustrasjonene\": \"illustrasjon\",\n  \"illustrasjonens\": \"illustrasjon\",\n  \"illustrasjoner\": \"illustrasjon\",\n  \"illustrasjonsmessig\": \"illustrasjonsmess\",\n  \"illustrere\": \"illustrer\",\n  \"illustrerende\": \"illustrer\",\n  \"illustrerer\": \"illustrer\",\n  \"illustreres\": \"illustrer\",\n  \"illustrert\": \"illustrer\",\n  \"ilo\": \"ilo\",\n  \"iltre\": \"iltr\",\n  \"imellom\": \"imellom\",\n  \"imens\": \"imen\",\n  \"imidlertid\": \"imidlertid\",\n  \"immingham\": \"immingham\",\n  \"imorgen\": \"imorg\",\n  \"imot\": \"imot\",\n  \"implementere\": \"implementer\",\n  \"implementeres\": \"implementer\",\n  \"implementert\": \"implementer\",\n  \"impliserer\": \"impliser\",\n  \"implisitt\": \"implisitt\",\n  \"import\": \"import\",\n  \"importanlegg\": \"importanlegg\",\n  \"importanløpssteder\": \"importanløpssted\",\n  \"importbedrifter\": \"importbedrift\",\n  \"importen\": \"import\",\n  \"importeres\": \"importer\",\n  \"importert\": \"importer\",\n  \"importerte\": \"importer\",\n  \"importgods\": \"importgod\",\n  \"importgodset\": \"importgods\",\n  \"importhavn\": \"importhavn\",\n  \"importhavnen\": \"importhavn\",\n  \"importlagre\": \"importlagr\",\n  \"importlast\": \"importl\",\n  \"importlasten\": \"importlast\",\n  \"importmarkeder\": \"importmarked\",\n  \"importoverskudd\": \"importoverskudd\",\n  \"importsiden\": \"importsid\",\n  \"importtilbøyelighet\": \"importtilbøy\",\n  \"importtransportene\": \"importtransport\",\n  \"importvarer\": \"importvar\",\n  \"importvekst\": \"importvekst\",\n  \"importveksten\": \"importvekst\",\n  \"importverdi\": \"importverdi\",\n  \"importvirksomheter\": \"importvirksom\",\n  \"importvolum\": \"importvolum\",\n  \"importvolumene\": \"importvolum\",\n  \"importvolumer\": \"importvolum\",\n  \"importvolumet\": \"importvolum\",\n  \"importør\": \"importør\",\n  \"importører\": \"importør\",\n  \"impulsen\": \"impuls\",\n  \"imøtekomme\": \"imøtekomm\",\n  \"imøtekommer\": \"imøtekomm\",\n  \"in\": \"in\",\n  \"inatt\": \"inatt\",\n  \"incitamenter\": \"incitament\",\n  \"indeksen\": \"indeks\",\n  \"indeksobligasjoner\": \"indeksobligasjon\",\n  \"indikasjon\": \"indikasjon\",\n  \"indikasjoner\": \"indikasjon\",\n  \"indikator\": \"indikator\",\n  \"indikatorbasert\": \"indikatorbaser\",\n  \"indikatorene\": \"indikator\",\n  \"indikatorer\": \"indikator\",\n  \"indikere\": \"indiker\",\n  \"indikerer\": \"indiker\",\n  \"indirekte\": \"indirekt\",\n  \"individbasert\": \"individbaser\",\n  \"individualisert\": \"individualiser\",\n  \"individualiserte\": \"individualiser\",\n  \"individuell\": \"individuell\",\n  \"individuelle\": \"individuell\",\n  \"individuelt\": \"individuelt\",\n  \"indre\": \"indr\",\n  \"industri\": \"industri\",\n  \"industrianlegg\": \"industrianlegg\",\n  \"industriareal\": \"industriareal\",\n  \"industribedriftene\": \"industribedrift\",\n  \"industribedrifter\": \"industribedrift\",\n  \"industrielle\": \"industriell\",\n  \"industrien\": \"industri\",\n  \"industriens\": \"industri\",\n  \"industriforetak\": \"industriforetak\",\n  \"industriforetakene\": \"industriforetak\",\n  \"industrigods\": \"industrigod\",\n  \"industrigrupperinger\": \"industrigruppering\",\n  \"industrihavnen\": \"industrihavn\",\n  \"industrihavner\": \"industrihavn\",\n  \"industrikaiene\": \"industrikai\",\n  \"industrikaier\": \"industrikai\",\n  \"industriland\": \"industriland\",\n  \"industrinasjoner\": \"industrinasjon\",\n  \"industriområdene\": \"industriområd\",\n  \"industriproduksjon\": \"industriproduksjon\",\n  \"industris\": \"industris\",\n  \"industrivarene\": \"industrivar\",\n  \"industrivarer\": \"industrivar\",\n  \"industrivirksomheter\": \"industrivirksom\",\n  \"ineffektiv\": \"ineffektiv\",\n  \"inflasjon\": \"inflasjon\",\n  \"inflasjonen\": \"inflasjon\",\n  \"inflasjonsendringer\": \"inflasjonsendring\",\n  \"inflasjonsrate\": \"inflasjonsrat\",\n  \"inflasjonsraten\": \"inflasjonsrat\",\n  \"inflasjonssikring\": \"inflasjonssikring\",\n  \"influensområde\": \"influensområd\",\n  \"influerer\": \"influer\",\n  \"informasjon\": \"informasjon\",\n  \"informasjoner\": \"informasjon\",\n  \"informasjons\": \"informasjon\",\n  \"informasjonsansvar\": \"informasjonsansv\",\n  \"informasjonsgrunnlaget\": \"informasjonsgrunnlag\",\n  \"informasjonskravet\": \"informasjonskrav\",\n  \"informasjonsplikt\": \"informasjonsplikt\",\n  \"informasjonsteknologi\": \"informasjonsteknologi\",\n  \"informasjonsutveksling\": \"informasjonsutveksling\",\n  \"informere\": \"informer\",\n  \"informerer\": \"informer\",\n  \"informert\": \"informer\",\n  \"infrastructure\": \"infrastructur\",\n  \"infrastruktur\": \"infrastruktur\",\n  \"infrastrukturbehov\": \"infrastrukturbehov\",\n  \"infrastrukturelle\": \"infrastrukturell\",\n  \"infrastrukturen\": \"infrastruktur\",\n  \"infrastrukturene\": \"infrastruktur\",\n  \"infrastrukturinvesteringer\": \"infrastrukturinvestering\",\n  \"infrastrukturproblemer\": \"infrastrukturproblem\",\n  \"infrastrukturprosjekter\": \"infrastrukturprosjekt\",\n  \"infrastrukturtiltak\": \"infrastrukturtiltak\",\n  \"inga\": \"ing\",\n  \"ingen\": \"ing\",\n  \"ingenting\": \"ingenting\",\n  \"inger\": \"ing\",\n  \"ingrid\": \"ingrid\",\n  \"inhabil\": \"inhabil\",\n  \"inhabile\": \"inhabil\",\n  \"inhabilitet\": \"inhabilit\",\n  \"inhabilitetsreglane\": \"inhabilitetsregl\",\n  \"initiativ\": \"initiativ\",\n  \"initiativene\": \"initiativ\",\n  \"initiativet\": \"initiativ\",\n  \"inkassolova\": \"inkasso\",\n  \"inkl\": \"inkl\",\n  \"inkludere\": \"inkluder\",\n  \"inkluderer\": \"inkluder\",\n  \"inkluderes\": \"inkluder\",\n  \"inkludert\": \"inkluder\",\n  \"inkluderte\": \"inkluder\",\n  \"inklusive\": \"inklusiv\",\n  \"inkonsekvent\": \"inkonsekvent\",\n  \"inn\": \"inn\",\n  \"innad\": \"innad\",\n  \"innafor\": \"innafor\",\n  \"innan\": \"innan\",\n  \"innarbeidast\": \"innarbeid\",\n  \"innarbeidd\": \"innarbeidd\",\n  \"innarbeidde\": \"innarbeidd\",\n  \"innarbeide\": \"innarbeid\",\n  \"innarbeides\": \"innarbeid\",\n  \"innarbeidet\": \"innarbeid\",\n  \"innbakt\": \"innbakt\",\n  \"innbeding\": \"innbeding\",\n  \"innbefatter\": \"innbefatt\",\n  \"innberetning\": \"innberetning\",\n  \"innberette\": \"innberett\",\n  \"innberettes\": \"innberett\",\n  \"innberettet\": \"innberett\",\n  \"innbetale\": \"innbetal\",\n  \"innbetaler\": \"innbetal\",\n  \"innbetales\": \"innbetal\",\n  \"innbetaling\": \"innbetaling\",\n  \"innbetalinga\": \"innbetaling\",\n  \"innbetalingane\": \"innbetaling\",\n  \"innbetalingar\": \"innbetaling\",\n  \"innbetalingen\": \"innbetaling\",\n  \"innbetalingene\": \"innbetaling\",\n  \"innbetalinger\": \"innbetaling\",\n  \"innbetalingsperiode\": \"innbetalingsperiod\",\n  \"innbetalingsperioden\": \"innbetalingsperiod\",\n  \"innbetalingsprofil\": \"innbetalingsprofil\",\n  \"innbetalingsprofilen\": \"innbetalingsprofil\",\n  \"innbetalingstid\": \"innbetalingstid\",\n  \"innbetalingstiden\": \"innbetalingstid\",\n  \"innbetalingstidens\": \"innbetalingstid\",\n  \"innbetalingstidspunktet\": \"innbetalingstidspunkt\",\n  \"innbetalingsår\": \"innbetalingsår\",\n  \"innbetalt\": \"innbetalt\",\n  \"innbetalte\": \"innbetalt\",\n  \"innbille\": \"innbill\",\n  \"innbringe\": \"innbring\",\n  \"innbrot\": \"innbrot\",\n  \"innbu\": \"innbu\",\n  \"innbyggere\": \"innbygger\",\n  \"innbyrdes\": \"innbyrd\",\n  \"inndeling\": \"inndeling\",\n  \"inndelinga\": \"inndeling\",\n  \"inndelingen\": \"inndeling\",\n  \"inndelinger\": \"inndeling\",\n  \"inndelt\": \"inndelt\",\n  \"inndrive\": \"inndriv\",\n  \"inndriving\": \"inndriving\",\n  \"inne\": \"inn\",\n  \"innebar\": \"inneb\",\n  \"inneber\": \"inneb\",\n  \"innebere\": \"inneber\",\n  \"innebygde\": \"innebygd\",\n  \"innebære\": \"innebær\",\n  \"innebærer\": \"innebær\",\n  \"innefor\": \"innefor\",\n  \"inneha\": \"inneh\",\n  \"innehalde\": \"innehald\",\n  \"innehar\": \"inneh\",\n  \"innehavarane\": \"innehavar\",\n  \"innehavaren\": \"innehavar\",\n  \"innehaver\": \"innehav\",\n  \"innehaveren\": \"innehaver\",\n  \"inneheld\": \"inneheld\",\n  \"inneholde\": \"innehold\",\n  \"inneholder\": \"innehold\",\n  \"inneklemt\": \"inneklemt\",\n  \"innen\": \"inn\",\n  \"innenfor\": \"innenfor\",\n  \"innenlands\": \"innenland\",\n  \"innenlandsk\": \"innenlandsk\",\n  \"innenlandske\": \"innenlandsk\",\n  \"innenlandstrafikk\": \"innenlandstrafikk\",\n  \"innenriks\": \"innenriks\",\n  \"innenrikstrafikken\": \"innenrikstrafikk\",\n  \"innenrikstransporter\": \"innenrikstransport\",\n  \"inneriks\": \"inneriks\",\n  \"innerst\": \"innerst\",\n  \"inneståande\": \"innestå\",\n  \"innestående\": \"innestå\",\n  \"innestår\": \"innestår\",\n  \"inneværende\": \"innevær\",\n  \"innfart\": \"innfart\",\n  \"innfartsvegene\": \"innfartsveg\",\n  \"innfartsveger\": \"innfartsveg\",\n  \"innflytelse\": \"innflyt\",\n  \"innflytting\": \"innflytting\",\n  \"innflyttingsklar\": \"innflyttingskl\",\n  \"innflyttingsklare\": \"innflyttingsklar\",\n  \"innforstått\": \"innforstått\",\n  \"innfortolke\": \"innfortolk\",\n  \"innfri\": \"innfri\",\n  \"innfridd\": \"innfridd\",\n  \"innfriing\": \"innfriing\",\n  \"innfrir\": \"innfrir\",\n  \"innfris\": \"innfris\",\n  \"innførast\": \"innfør\",\n  \"innføre\": \"innfør\",\n  \"innfører\": \"innfør\",\n  \"innføres\": \"innfør\",\n  \"innføring\": \"innføring\",\n  \"innføringa\": \"innføring\",\n  \"innføringen\": \"innføring\",\n  \"innført\": \"innført\",\n  \"innførte\": \"innført\",\n  \"inngang\": \"inngang\",\n  \"inngangen\": \"inngang\",\n  \"inngikk\": \"inngikk\",\n  \"inngis\": \"inngis\",\n  \"inngrep\": \"inngrep\",\n  \"inngå\": \"inngå\",\n  \"inngåande\": \"inngå\",\n  \"inngåelse\": \"inngå\",\n  \"inngående\": \"inngå\",\n  \"inngåing\": \"inngåing\",\n  \"inngår\": \"inngår\",\n  \"inngås\": \"inngås\",\n  \"inngått\": \"inngått\",\n  \"innhald\": \"innhald\",\n  \"innhaldet\": \"innhald\",\n  \"innhaldsrike\": \"innhaldsrik\",\n  \"innhenta\": \"innhent\",\n  \"innhente\": \"innhent\",\n  \"innhentet\": \"innhent\",\n  \"innhenting\": \"innhenting\",\n  \"innhold\": \"innhold\",\n  \"innholdet\": \"innhold\",\n  \"innhule\": \"innhul\",\n  \"innkalling\": \"innkalling\",\n  \"innkallinga\": \"innkalling\",\n  \"innkallingsplikt\": \"innkallingsplikt\",\n  \"innkjøp\": \"innkjøp\",\n  \"innkjøpslag\": \"innkjøpslag\",\n  \"innkjøpsmakt\": \"innkjøpsmakt\",\n  \"innkomne\": \"innkomn\",\n  \"innkrevingssentral\": \"innkrevingssentral\",\n  \"innkrevjing\": \"innkrevjing\",\n  \"innledning\": \"innledning\",\n  \"innledningen\": \"innledning\",\n  \"innledningsvis\": \"innledningsvis\",\n  \"innleiande\": \"innlei\",\n  \"innleiing\": \"innleiing\",\n  \"innleiinga\": \"innleiing\",\n  \"innlemme\": \"innlemm\",\n  \"innlemmes\": \"innlemm\",\n  \"innlevering\": \"innlevering\",\n  \"innlosjering\": \"innlosjering\",\n  \"innlysande\": \"innlys\",\n  \"innlån\": \"innlån\",\n  \"innlånte\": \"innlånt\",\n  \"innlåsing\": \"innlåsing\",\n  \"innløpet\": \"innløp\",\n  \"innløsning\": \"innløsning\",\n  \"innløsningsretten\": \"innløsningsrett\",\n  \"innløst\": \"innløst\",\n  \"innløysing\": \"innløysing\",\n  \"innløysingspapir\": \"innløysingspapir\",\n  \"innløysingsregelen\": \"innløysingsregel\",\n  \"innløysingssummen\": \"innløysingssumm\",\n  \"innmelde\": \"innmeld\",\n  \"innmeldes\": \"innmeld\",\n  \"innmelding\": \"innmelding\",\n  \"innom\": \"innom\",\n  \"innovativt\": \"innovativ\",\n  \"innover\": \"innov\",\n  \"innpasset\": \"innpass\",\n  \"innpå\": \"innpå\",\n  \"innreidde\": \"innreidd\",\n  \"innretning\": \"innretning\",\n  \"innretningen\": \"innretning\",\n  \"innretninger\": \"innretning\",\n  \"innretta\": \"innrett\",\n  \"innrettar\": \"innrett\",\n  \"innrette\": \"innrett\",\n  \"innrettet\": \"innrett\",\n  \"innretting\": \"innretting\",\n  \"innrømme\": \"innrømm\",\n  \"innrømmer\": \"innrømm\",\n  \"innrømmes\": \"innrømm\",\n  \"innrømmet\": \"innrømm\",\n  \"innsamling\": \"innsamling\",\n  \"innsats\": \"innsat\",\n  \"innsatsfaktorer\": \"innsatsfaktor\",\n  \"innseiling\": \"innseiling\",\n  \"innseilingen\": \"innseiling\",\n  \"innseilingskorridorene\": \"innseilingskorridor\",\n  \"innseilingsled\": \"innseilingsled\",\n  \"innseilingsleder\": \"innseilingsled\",\n  \"innsende\": \"inns\",\n  \"innsending\": \"innsending\",\n  \"innser\": \"inns\",\n  \"innsida\": \"innsid\",\n  \"innsiden\": \"innsid\",\n  \"innsigelse\": \"innsig\",\n  \"innsigelsen\": \"innsig\",\n  \"innsigelser\": \"innsig\",\n  \"innsigelses\": \"innsig\",\n  \"innsikt\": \"innsikt\",\n  \"innsjø\": \"innsjø\",\n  \"innsjøer\": \"innsjø\",\n  \"innskot\": \"innskot\",\n  \"innskota\": \"innskot\",\n  \"innskoten\": \"innskot\",\n  \"innskotet\": \"innskot\",\n  \"innskotsbasert\": \"innskotsbaser\",\n  \"innskotsbaserte\": \"innskotsbaser\",\n  \"innskotsforma\": \"innskotsform\",\n  \"innskotskapital\": \"innskotskapital\",\n  \"innskotskapitalen\": \"innskotskapital\",\n  \"innskottsbasert\": \"innskottsbaser\",\n  \"innskrenkende\": \"innskrenk\",\n  \"innskrenker\": \"innskrenk\",\n  \"innskrenkes\": \"innskrenk\",\n  \"innskrenking\": \"innskrenking\",\n  \"innskrenkning\": \"innskrenkning\",\n  \"innskrenkningen\": \"innskrenkning\",\n  \"innskudd\": \"innskudd\",\n  \"innskuddene\": \"innskudd\",\n  \"innskuddenes\": \"innskudd\",\n  \"innskuddet\": \"innskudd\",\n  \"innskuddets\": \"innskudd\",\n  \"innskudds\": \"innskudd\",\n  \"innskuddsalternativer\": \"innskuddsalternativ\",\n  \"innskuddsatser\": \"innskuddsats\",\n  \"innskuddsbasering\": \"innskuddsbasering\",\n  \"innskuddsbasert\": \"innskuddsbaser\",\n  \"innskuddsbaserte\": \"innskuddsbaser\",\n  \"innskuddsbolig\": \"innskuddsbo\",\n  \"innskuddsfond\": \"innskuddsfond\",\n  \"innskuddsfondet\": \"innskuddsfond\",\n  \"innskuddsfondets\": \"innskuddsfond\",\n  \"innskuddsfondsmidlene\": \"innskuddsfondsmidl\",\n  \"innskuddsfondsmidler\": \"innskuddsfondsmidl\",\n  \"innskuddsforskjeller\": \"innskuddsforskjell\",\n  \"innskuddsfradrag\": \"innskuddsfradrag\",\n  \"innskuddsfritak\": \"innskuddsfritak\",\n  \"innskuddsfritaket\": \"innskuddsfritak\",\n  \"innskuddsgivende\": \"innskuddsgiv\",\n  \"innskuddsgrenser\": \"innskuddsgrens\",\n  \"innskuddskvittering\": \"innskuddskvittering\",\n  \"innskuddskvitteringene\": \"innskuddskvittering\",\n  \"innskuddskvitteringer\": \"innskuddskvittering\",\n  \"innskuddsordning\": \"innskuddsordning\",\n  \"innskuddsordningen\": \"innskuddsordning\",\n  \"innskuddsordninger\": \"innskuddsordning\",\n  \"innskuddsordningers\": \"innskuddsordning\",\n  \"innskuddsordnings\": \"innskuddsordning\",\n  \"innskuddspensjon\": \"innskuddspensjon\",\n  \"innskuddspensjoner\": \"innskuddspensjon\",\n  \"innskuddspensjonsordning\": \"innskuddspensjonsordning\",\n  \"innskuddspensjonsordningen\": \"innskuddspensjonsordning\",\n  \"innskuddspensjonsordningene\": \"innskuddspensjonsordning\",\n  \"innskuddspensjonsordningens\": \"innskuddspensjonsordning\",\n  \"innskuddspensjonsordninger\": \"innskuddspensjonsordning\",\n  \"innskuddspensjonsspesifikke\": \"innskuddspensjonsspesifikk\",\n  \"innskuddsplan\": \"innskuddsplan\",\n  \"innskuddsplanen\": \"innskuddsplan\",\n  \"innskuddsplaner\": \"innskuddsplan\",\n  \"innskuddsprinsipper\": \"innskuddsprinsipp\",\n  \"innskuddsprofil\": \"innskuddsprofil\",\n  \"innskuddsprosent\": \"innskuddsprosent\",\n  \"innskuddsprosenten\": \"innskuddsprosent\",\n  \"innskuddsprosentene\": \"innskuddsprosent\",\n  \"innskuddsprosenter\": \"innskuddsprosent\",\n  \"innskuddsrammene\": \"innskuddsramm\",\n  \"innskuddsreserve\": \"innskuddsreserv\",\n  \"innskuddsreserven\": \"innskuddsreserv\",\n  \"innskuddssats\": \"innskuddssat\",\n  \"innskuddssatsen\": \"innskuddssats\",\n  \"innskuddssatsene\": \"innskuddssats\",\n  \"innskuddssatser\": \"innskuddssats\",\n  \"innskuddstid\": \"innskuddstid\",\n  \"innskuddstidspunktet\": \"innskuddstidspunkt\",\n  \"innskuddsvalg\": \"innskuddsvalg\",\n  \"innskuddsår\": \"innskuddsår\",\n  \"innskuddsåret\": \"innskuddsår\",\n  \"innskutt\": \"innskutt\",\n  \"innskutte\": \"innskutt\",\n  \"innskytarane\": \"innskytar\",\n  \"innskytarar\": \"innskytar\",\n  \"innskytere\": \"innskyter\",\n  \"innskytergaranti\": \"innskytergaranti\",\n  \"innslag\": \"innslag\",\n  \"innsnevring\": \"innsnevring\",\n  \"innsnevringer\": \"innsnevring\",\n  \"innsparing\": \"innsparing\",\n  \"innsparingar\": \"innsparing\",\n  \"innspill\": \"innspill\",\n  \"innst\": \"innst\",\n  \"innstille\": \"innstill\",\n  \"innstiller\": \"innstill\",\n  \"innstilling\": \"innstilling\",\n  \"innstillingen\": \"innstilling\",\n  \"innstillingene\": \"innstilling\",\n  \"innstilt\": \"innstilt\",\n  \"innstilte\": \"innstilt\",\n  \"innstramminga\": \"innstramming\",\n  \"innsyn\": \"innsyn\",\n  \"innta\": \"innt\",\n  \"inntatt\": \"inntatt\",\n  \"inntekstbortfall\": \"inntekstbortfall\",\n  \"inntekt\": \"inntekt\",\n  \"inntekta\": \"inntekt\",\n  \"inntekten\": \"inntekt\",\n  \"inntektene\": \"inntekt\",\n  \"inntekter\": \"inntekt\",\n  \"inntekts\": \"inntekt\",\n  \"inntektsbeskatning\": \"inntektsbeskatning\",\n  \"inntektsbeskattes\": \"inntektsbeskatt\",\n  \"inntektsbortfall\": \"inntektsbortfall\",\n  \"inntektseffekt\": \"inntektseffekt\",\n  \"inntektsfordelinga\": \"inntektsfordeling\",\n  \"inntektsfordelingen\": \"inntektsfordeling\",\n  \"inntektsfradrag\": \"inntektsfradrag\",\n  \"inntektsfradraget\": \"inntektsfradrag\",\n  \"inntektsfradragets\": \"inntektsfradrag\",\n  \"inntektsfrådrag\": \"inntektsfrådrag\",\n  \"inntektsføres\": \"inntektsfør\",\n  \"inntektsføring\": \"inntektsføring\",\n  \"inntektsgrensene\": \"inntektsgrens\",\n  \"inntektsgrunnlag\": \"inntektsgrunnlag\",\n  \"inntektsintervallene\": \"inntektsintervall\",\n  \"inntektsintervaller\": \"inntektsintervall\",\n  \"inntektsintervallet\": \"inntektsintervall\",\n  \"inntektskilder\": \"inntektskild\",\n  \"inntektsnivå\": \"inntektsnivå\",\n  \"inntektsnivået\": \"inntektsnivå\",\n  \"inntektsprøvet\": \"inntektsprøv\",\n  \"inntektssikring\": \"inntektssikring\",\n  \"inntektsstruktur\": \"inntektsstruktur\",\n  \"inntektstap\": \"inntektstap\",\n  \"inntektstavhengig\": \"inntektstavheng\",\n  \"inntektsuavhengig\": \"inntektsuavheng\",\n  \"inntektsvilkår\": \"inntektsvilkår\",\n  \"inntektsår\": \"inntektsår\",\n  \"inntektsåret\": \"inntektsår\",\n  \"inntil\": \"inntil\",\n  \"inntjening\": \"inntjening\",\n  \"inntransport\": \"inntransport\",\n  \"inntreffe\": \"inntreff\",\n  \"inntreffer\": \"inntreff\",\n  \"inntrer\": \"inntr\",\n  \"inntrykk\": \"inntrykk\",\n  \"inntrykket\": \"inntrykk\",\n  \"inntrådt\": \"inntråd\",\n  \"innunder\": \"innund\",\n  \"innvendast\": \"innvend\",\n  \"innvende\": \"innv\",\n  \"innvendig\": \"innvend\",\n  \"innvendige\": \"innvend\",\n  \"innvending\": \"innvending\",\n  \"innvendinga\": \"innvending\",\n  \"innvendingane\": \"innvending\",\n  \"innvendingar\": \"innvending\",\n  \"innvendinger\": \"innvending\",\n  \"innverknad\": \"innverknad\",\n  \"innverknaden\": \"innverknad\",\n  \"innvinne\": \"innvinn\",\n  \"innvinnes\": \"innvinn\",\n  \"innvinning\": \"innvinning\",\n  \"innvirking\": \"innvirking\",\n  \"innvirkning\": \"innvirkning\",\n  \"innvollene\": \"innvoll\",\n  \"innvoller\": \"innvoll\",\n  \"innvunnet\": \"innvunn\",\n  \"insentivene\": \"insentiv\",\n  \"insentiver\": \"insentiv\",\n  \"insitament\": \"insitament\",\n  \"insitamenter\": \"insitament\",\n  \"insitamentstrukturen\": \"insitamentstruktur\",\n  \"installasjonar\": \"installasjon\",\n  \"installeres\": \"installer\",\n  \"installering\": \"installering\",\n  \"instans\": \"instan\",\n  \"institusjon\": \"institusjon\",\n  \"institusjonar\": \"institusjon\",\n  \"institusjonen\": \"institusjon\",\n  \"institusjonene\": \"institusjon\",\n  \"institusjonenes\": \"institusjon\",\n  \"institusjonens\": \"institusjon\",\n  \"institusjoner\": \"institusjon\",\n  \"institusjonstilsynet\": \"institusjonstilsyn\",\n  \"institusjonstype\": \"institusjonstyp\",\n  \"institutt\": \"institutt\",\n  \"instituttet\": \"institutt\",\n  \"instituttsjef\": \"instituttsjef\",\n  \"instruere\": \"instruer\",\n  \"instruks\": \"instruks\",\n  \"instruksar\": \"instruks\",\n  \"instruksen\": \"instruks\",\n  \"instruksjoner\": \"instruksjon\",\n  \"instrumenter\": \"instrument\",\n  \"insurance\": \"insuranc\",\n  \"intakt\": \"intakt\",\n  \"integrasjon\": \"integrasjon\",\n  \"integrasjonen\": \"integrasjon\",\n  \"integrere\": \"integrer\",\n  \"integrering\": \"integrering\",\n  \"integrert\": \"integrer\",\n  \"integrerte\": \"integrer\",\n  \"intensjonen\": \"intensjon\",\n  \"intensjonene\": \"intensjon\",\n  \"intenst\": \"intenst\",\n  \"inter\": \"int\",\n  \"interessa\": \"interess\",\n  \"interessant\": \"interessant\",\n  \"interessante\": \"interessant\",\n  \"interesse\": \"interess\",\n  \"interesseavveging\": \"interesseavveging\",\n  \"interessegrupper\": \"interessegrupp\",\n  \"interessekonflikt\": \"interessekonflikt\",\n  \"interessekonfliktar\": \"interessekonflikt\",\n  \"interessemotsetnader\": \"interessemotsetnad\",\n  \"interessemotsetningar\": \"interessemotsetning\",\n  \"interessene\": \"interess\",\n  \"interessentane\": \"interessent\",\n  \"interessentar\": \"interessent\",\n  \"interesseorganisasjon\": \"interesseorganisasjon\",\n  \"interesseorganisasjonar\": \"interesseorganisasjon\",\n  \"interesser\": \"interess\",\n  \"interesserer\": \"interesser\",\n  \"interessert\": \"interesser\",\n  \"interesserte\": \"interesser\",\n  \"intereuropeisk\": \"intereuropeisk\",\n  \"interkommunal\": \"interkommunal\",\n  \"interkommunale\": \"interkommunal\",\n  \"interkommunalt\": \"interkommunalt\",\n  \"intermodale\": \"intermodal\",\n  \"intern\": \"intern\",\n  \"internasjonal\": \"internasjonal\",\n  \"internasjonale\": \"internasjonal\",\n  \"internasjonalisering\": \"internasjonalisering\",\n  \"internasjonaliseringen\": \"internasjonalisering\",\n  \"internasjonalisert\": \"internasjonaliser\",\n  \"internasjonalt\": \"internasjonalt\",\n  \"international\": \"international\",\n  \"interne\": \"intern\",\n  \"internettsider\": \"internettsid\",\n  \"internt\": \"internt\",\n  \"interregional\": \"interregional\",\n  \"intervall\": \"intervall\",\n  \"intervallene\": \"intervall\",\n  \"intervaller\": \"intervall\",\n  \"intervallet\": \"intervall\",\n  \"intressen\": \"intress\",\n  \"introduksjon\": \"introduksjon\",\n  \"inventar\": \"invent\",\n  \"investeres\": \"invester\",\n  \"investering\": \"investering\",\n  \"investeringa\": \"investering\",\n  \"investeringar\": \"investering\",\n  \"investeringene\": \"investering\",\n  \"investeringer\": \"investering\",\n  \"investeringsalternativene\": \"investeringsalternativ\",\n  \"investeringsalternativer\": \"investeringsalternativ\",\n  \"investeringsbehovet\": \"investeringsbehov\",\n  \"investeringsbeslutningene\": \"investeringsbeslutning\",\n  \"investeringsbeslutninger\": \"investeringsbeslutning\",\n  \"investeringskostnader\": \"investeringskostnad\",\n  \"investeringsmidler\": \"investeringsmidl\",\n  \"investeringsobjekter\": \"investeringsobjekt\",\n  \"investeringsorienterte\": \"investeringsorienter\",\n  \"investeringsperiode\": \"investeringsperiod\",\n  \"investeringsportefølje\": \"investeringsportefølj\",\n  \"investeringsporteføljen\": \"investeringsportefølj\",\n  \"investeringsporteføljene\": \"investeringsportefølj\",\n  \"investeringsporteføljer\": \"investeringsportefølj\",\n  \"investeringsporteføljes\": \"investeringsportefølj\",\n  \"investeringsstrategier\": \"investeringsstrategi\",\n  \"investeringstiltak\": \"investeringstiltak\",\n  \"investeringsvalg\": \"investeringsvalg\",\n  \"investeringsvalget\": \"investeringsvalg\",\n  \"investert\": \"invester\",\n  \"investorer\": \"investor\",\n  \"involvere\": \"involver\",\n  \"involverer\": \"involver\",\n  \"iogforseg\": \"iogforseg\",\n  \"ipa\": \"ipa\",\n  \"ir\": \"ir\",\n  \"ira\": \"ira\",\n  \"irland\": \"irland\",\n  \"ironisk\": \"ironisk\",\n  \"irritert\": \"irriter\",\n  \"is\": \"is\",\n  \"isbreene\": \"isbre\",\n  \"isbreer\": \"isbre\",\n  \"isen\": \"isen\",\n  \"isf\": \"isf\",\n  \"isfjell\": \"isfjell\",\n  \"isflak\": \"isflak\",\n  \"iskalde\": \"iskald\",\n  \"iskaldt\": \"iskald\",\n  \"island\": \"island\",\n  \"iso\": \"iso\",\n  \"isolert\": \"isoler\",\n  \"isproblemer\": \"isproblem\",\n  \"istand\": \"istand\",\n  \"istandsetjing\": \"istandsetjing\",\n  \"istappene\": \"istapp\",\n  \"istapper\": \"istapp\",\n  \"istedenfor\": \"istedenfor\",\n  \"istedet\": \"isted\",\n  \"istykker\": \"istykk\",\n  \"isødet\": \"isød\",\n  \"it\": \"it\",\n  \"italia\": \"itali\",\n  \"italiane\": \"itali\",\n  \"italiensk\": \"italiensk\",\n  \"italienske\": \"italiensk\",\n  \"itp\": \"itp\",\n  \"iv\": \"iv\",\n  \"ivalde\": \"ivald\",\n  \"ivareta\": \"ivaret\",\n  \"ivaretagelse\": \"ivaretag\",\n  \"ivaretakast\": \"ivaretak\",\n  \"ivaretakelse\": \"ivaretak\",\n  \"ivaretaking\": \"ivaretaking\",\n  \"ivaretar\": \"ivaret\",\n  \"ivaretas\": \"ivaret\",\n  \"ivaretatt\": \"ivaretatt\",\n  \"ivareteke\": \"ivaretek\",\n  \"ivaretekne\": \"ivaretekn\",\n  \"iverksatt\": \"iverksatt\",\n  \"iverksetjing\": \"iverksetjing\",\n  \"iverksetjinga\": \"iverksetjing\",\n  \"iverksette\": \"iverksett\",\n  \"iverksettelse\": \"iverksett\",\n  \"iverksettelsen\": \"iverksett\",\n  \"iverksettes\": \"iverksett\",\n  \"ivrig\": \"ivr\",\n  \"ivrige\": \"ivr\",\n  \"ivrigste\": \"ivrigst\",\n  \"ja\": \"ja\",\n  \"jage\": \"jag\",\n  \"jager\": \"jag\",\n  \"jakt\": \"jakt\",\n  \"jaktbikkjene\": \"jaktbikkj\",\n  \"jakte\": \"jakt\",\n  \"jakten\": \"jakt\",\n  \"jakter\": \"jakt\",\n  \"jaktet\": \"jakt\",\n  \"jaktfalk\": \"jaktfalk\",\n  \"jaktlykke\": \"jaktlykk\",\n  \"jammen\": \"jamm\",\n  \"jammer\": \"jamm\",\n  \"jamrer\": \"jamr\",\n  \"jamringen\": \"jamring\",\n  \"jamstellast\": \"jamstell\",\n  \"jamt\": \"jamt\",\n  \"jan\": \"jan\",\n  \"januar\": \"janu\",\n  \"jarl\": \"jarl\",\n  \"jarnsaksa\": \"jarnsaks\",\n  \"javel\": \"javel\",\n  \"javisst\": \"javisst\",\n  \"jbv\": \"jbv\",\n  \"jeg\": \"jeg\",\n  \"jegeren\": \"jeger\",\n  \"jeløya\": \"jeløy\",\n  \"jentene\": \"jent\",\n  \"jenteord\": \"jenteord\",\n  \"jenter\": \"jent\",\n  \"jern\": \"jern\",\n  \"jernbane\": \"jernb\",\n  \"jernbanebru\": \"jernbanebru\",\n  \"jernbaneforbindelse\": \"jernbaneforbind\",\n  \"jernbaneforbindelser\": \"jernbaneforbind\",\n  \"jernbanefrakt\": \"jernbanefrakt\",\n  \"jernbaneknutepunktet\": \"jernbaneknutepunkt\",\n  \"jernbaneløsninger\": \"jernbaneløsning\",\n  \"jernbanen\": \"jernban\",\n  \"jernbanenett\": \"jernbanenett\",\n  \"jernbanenettet\": \"jernbanenett\",\n  \"jernbanens\": \"jernban\",\n  \"jernbanespor\": \"jernbanespor\",\n  \"jernbanestasjon\": \"jernbanestasjon\",\n  \"jernbanetilknytning\": \"jernbanetilknytning\",\n  \"jernbanetilknytningen\": \"jernbanetilknytning\",\n  \"jernbanetiltak\": \"jernbanetiltak\",\n  \"jernbanetransport\": \"jernbanetransport\",\n  \"jernbanetransportens\": \"jernbanetransport\",\n  \"jernbanetrase\": \"jernbanetras\",\n  \"jernbaneverket\": \"jernbaneverk\",\n  \"jernbanevogn\": \"jernbanevogn\",\n  \"jernbanevogner\": \"jernbanevogn\",\n  \"jernbitene\": \"jernbit\",\n  \"jernhansker\": \"jernhansk\",\n  \"jernlenker\": \"jernlenk\",\n  \"jernsakser\": \"jernsaks\",\n  \"jernskogen\": \"jernskog\",\n  \"jernstang\": \"jernstang\",\n  \"jernstenger\": \"jernsteng\",\n  \"jernstykke\": \"jernstykk\",\n  \"jernstykket\": \"jernstykk\",\n  \"jernvotter\": \"jernvott\",\n  \"jessica\": \"jessic\",\n  \"jevn\": \"jevn\",\n  \"jevnbyrdige\": \"jevnbyrd\",\n  \"jevnere\": \"jevner\",\n  \"jevnt\": \"jevnt\",\n  \"jf\": \"jf\",\n  \"jo\": \"jo\",\n  \"jobb\": \"jobb\",\n  \"jobbskifte\": \"jobbskift\",\n  \"jobbytte\": \"jobbytt\",\n  \"joda\": \"jod\",\n  \"johansen\": \"johans\",\n  \"johnstad\": \"johnstad\",\n  \"jomfruer\": \"jomfru\",\n  \"jord\": \"jord\",\n  \"jorden\": \"jord\",\n  \"jorder\": \"jord\",\n  \"jordskjelv\": \"jordskjelv\",\n  \"jormungand\": \"jormungand\",\n  \"jotnen\": \"jotn\",\n  \"jotnene\": \"jotn\",\n  \"jotnens\": \"jotn\",\n  \"jotner\": \"jotn\",\n  \"jotun\": \"jotun\",\n  \"jotunborgen\": \"jotunborg\",\n  \"jotundatter\": \"jotundatt\",\n  \"jotundatteren\": \"jotundatter\",\n  \"jotundatters\": \"jotundatt\",\n  \"jotundøtrene\": \"jotundøtr\",\n  \"jotunfoten\": \"jotunfot\",\n  \"jotunheim\": \"jotunheim\",\n  \"jotunhodet\": \"jotunhod\",\n  \"jotunjente\": \"jotunjent\",\n  \"jotunkjemper\": \"jotunkjemp\",\n  \"jotunkjerringa\": \"jotunkjerring\",\n  \"jotunkongen\": \"jotunkong\",\n  \"jotunkvinne\": \"jotunkvinn\",\n  \"jotunkvinnen\": \"jotunkvinn\",\n  \"jotunkvinner\": \"jotunkvinn\",\n  \"jotunmor\": \"jotunmor\",\n  \"jotunsinnet\": \"jotunsinn\",\n  \"jotunskalle\": \"jotunskall\",\n  \"jotunskallen\": \"jotunskall\",\n  \"jotunskaller\": \"jotunskall\",\n  \"jotunslekt\": \"jotunslekt\",\n  \"jotunsønnen\": \"jotunsønn\",\n  \"jotunætt\": \"jotunætt\",\n  \"journal\": \"journal\",\n  \"journalar\": \"journal\",\n  \"jubel\": \"jubel\",\n  \"jubler\": \"jubl\",\n  \"juks\": \"juks\",\n  \"juli\": \"juli\",\n  \"julius\": \"julius\",\n  \"juni\": \"juni\",\n  \"jur\": \"jur\",\n  \"juret\": \"jur\",\n  \"juridisk\": \"juridisk\",\n  \"juridiske\": \"juridisk\",\n  \"just\": \"just\",\n  \"justerast\": \"juster\",\n  \"justerbar\": \"justerb\",\n  \"justere\": \"juster\",\n  \"justerer\": \"juster\",\n  \"justering\": \"justering\",\n  \"justert\": \"juster\",\n  \"justerte\": \"juster\",\n  \"justisdepartementet\": \"justisdepartement\",\n  \"juv\": \"juv\",\n  \"juveler\": \"juvel\",\n  \"juvet\": \"juv\",\n  \"k\": \"k\",\n  \"kabelanlegg\": \"kabelanlegg\",\n  \"kadavere\": \"kadaver\",\n  \"kaholmen\": \"kaholm\",\n  \"kai\": \"kai\",\n  \"kaianlegg\": \"kaianlegg\",\n  \"kaianlegget\": \"kaianlegg\",\n  \"kaibygging\": \"kaibygging\",\n  \"kaiene\": \"kaien\",\n  \"kaier\": \"kaier\",\n  \"kaifronten\": \"kaifront\",\n  \"kaifronter\": \"kaifront\",\n  \"kaikapasiteten\": \"kaikapasitet\",\n  \"kailengde\": \"kailengd\",\n  \"kaimetre\": \"kaimetr\",\n  \"kaiområde\": \"kaiområd\",\n  \"kaiområder\": \"kaiområd\",\n  \"kakker\": \"kakk\",\n  \"kald\": \"kald\",\n  \"kalde\": \"kald\",\n  \"kaldere\": \"kalder\",\n  \"kaldt\": \"kald\",\n  \"kalenderdagane\": \"kalenderdag\",\n  \"kalenderdagar\": \"kalenderdag\",\n  \"kalenderår\": \"kalenderår\",\n  \"kalk\": \"kalk\",\n  \"kalkulere\": \"kalkuler\",\n  \"kalla\": \"kall\",\n  \"kallar\": \"kall\",\n  \"kallast\": \"kall\",\n  \"kalle\": \"kall\",\n  \"kallen\": \"kall\",\n  \"kaller\": \"kall\",\n  \"kalles\": \"kall\",\n  \"kalt\": \"kalt\",\n  \"kalte\": \"kalt\",\n  \"kalvene\": \"kalv\",\n  \"kalver\": \"kalv\",\n  \"kalveskinnsko\": \"kalveskinnsko\",\n  \"kam\": \"kam\",\n  \"kameratslig\": \"kamerats\",\n  \"kammerpike\": \"kammerpik\",\n  \"kamp\": \"kamp\",\n  \"kampen\": \"kamp\",\n  \"kampestener\": \"kampesten\",\n  \"kamptreningen\": \"kamptrening\",\n  \"kan\": \"kan\",\n  \"kanalar\": \"kanal\",\n  \"kanalen\": \"kanal\",\n  \"kanskje\": \"kanskj\",\n  \"kant\": \"kant\",\n  \"kanten\": \"kant\",\n  \"kanter\": \"kant\",\n  \"kantre\": \"kantr\",\n  \"kantrer\": \"kantr\",\n  \"kantsatt\": \"kantsatt\",\n  \"kap\": \"kap\",\n  \"kapasitet\": \"kapasit\",\n  \"kapasiteten\": \"kapasitet\",\n  \"kapasitetsbegrensninger\": \"kapasitetsbegrensning\",\n  \"kapasitetsbehov\": \"kapasitetsbehov\",\n  \"kapasitetsbehovet\": \"kapasitetsbehov\",\n  \"kapasitetsbeskrankninger\": \"kapasitetsbeskrankning\",\n  \"kapasitetsforhold\": \"kapasitetsforhold\",\n  \"kapasitetsforutsetninger\": \"kapasitetsforutsetning\",\n  \"kapasitetsgrense\": \"kapasitetsgrens\",\n  \"kapasitetsgrensen\": \"kapasitetsgrens\",\n  \"kapasitetsgrenser\": \"kapasitetsgrens\",\n  \"kapasitetsmangel\": \"kapasitetsmangel\",\n  \"kapasitetsmessige\": \"kapasitetsmess\",\n  \"kapasitetsmuligheter\": \"kapasitetsmu\",\n  \"kapasitetspotensiale\": \"kapasitetspotensial\",\n  \"kapasitetspotensialet\": \"kapasitetspotensial\",\n  \"kapasitetspress\": \"kapasitetspress\",\n  \"kapasitetsproblem\": \"kapasitetsproblem\",\n  \"kapasitetsproblemer\": \"kapasitetsproblem\",\n  \"kapasitetsreserver\": \"kapasitetsreserv\",\n  \"kapasitetssituasjonen\": \"kapasitetssituasjon\",\n  \"kapasitetsskranker\": \"kapasitetsskrank\",\n  \"kapasitetsspørsmål\": \"kapasitetsspørsmål\",\n  \"kapasitetstall\": \"kapasitetstall\",\n  \"kapasitetstallene\": \"kapasitetstall\",\n  \"kapasitetsutvidelse\": \"kapasitetsutvid\",\n  \"kapasitetsutvidelser\": \"kapasitetsutvid\",\n  \"kapasitetsutvidelsestiltak\": \"kapasitetsutvidelsestiltak\",\n  \"kapasitetsutvikling\": \"kapasitetsutvikling\",\n  \"kapasitetsutviklingen\": \"kapasitetsutvikling\",\n  \"kapasitetsvurderinger\": \"kapasitetsvurdering\",\n  \"kapasitetsøkende\": \"kapasitetsøk\",\n  \"kapasitetsøkning\": \"kapasitetsøkning\",\n  \"kapital\": \"kapital\",\n  \"kapitalavkasting\": \"kapitalavkasting\",\n  \"kapitalavkastning\": \"kapitalavkastning\",\n  \"kapitalavkastningen\": \"kapitalavkastning\",\n  \"kapitalavsetning\": \"kapitalavsetning\",\n  \"kapitalen\": \"kapital\",\n  \"kapitalens\": \"kapital\",\n  \"kapitalforsikring\": \"kapitalforsikring\",\n  \"kapitalforsikringene\": \"kapitalforsikring\",\n  \"kapitalforsikringer\": \"kapitalforsikring\",\n  \"kapitalforvaltning\": \"kapitalforvaltning\",\n  \"kapitalforvaltningen\": \"kapitalforvaltning\",\n  \"kapitalforvaltningsforskriften\": \"kapitalforvaltningsforskrift\",\n  \"kapitalforvaltningsregler\": \"kapitalforvaltningsregl\",\n  \"kapitalgrunnlaget\": \"kapitalgrunnlag\",\n  \"kapitalinnskot\": \"kapitalinnskot\",\n  \"kapitalinnskota\": \"kapitalinnskot\",\n  \"kapitalinnskudd\": \"kapitalinnskudd\",\n  \"kapitalinnskytarar\": \"kapitalinnskytar\",\n  \"kapitalinntekt\": \"kapitalinntekt\",\n  \"kapitaliseringsprodukt\": \"kapitaliseringsprodukt\",\n  \"kapitaliseringsprodukter\": \"kapitaliseringsprodukt\",\n  \"kapitaloppbygging\": \"kapitaloppbygging\",\n  \"kapitaloppbygginga\": \"kapitaloppbygging\",\n  \"kapitaloppbyggingen\": \"kapitaloppbygging\",\n  \"kapitaloppsparing\": \"kapitaloppsparing\",\n  \"kapitalpensjoner\": \"kapitalpensjon\",\n  \"kapitalsamanslutningane\": \"kapitalsamanslutning\",\n  \"kapitalsamanslutningar\": \"kapitalsamanslutning\",\n  \"kapitalsituasjonen\": \"kapitalsituasjon\",\n  \"kapitalsterke\": \"kapitalsterk\",\n  \"kapitaltilskot\": \"kapitaltilskot\",\n  \"kapitalverdien\": \"kapitalverdi\",\n  \"kapitel\": \"kapitel\",\n  \"kapitlene\": \"kapitl\",\n  \"kapitler\": \"kapitl\",\n  \"kapitlet\": \"kapitl\",\n  \"kapitlets\": \"kapitl\",\n  \"kapittel\": \"kapittel\",\n  \"kapittelet\": \"kapittel\",\n  \"kapp\": \"kapp\",\n  \"kappdrikker\": \"kappdrikk\",\n  \"kappe\": \"kapp\",\n  \"kappen\": \"kapp\",\n  \"kapper\": \"kapp\",\n  \"kappri\": \"kappri\",\n  \"kappridning\": \"kappridning\",\n  \"kar\": \"kar\",\n  \"karakter\": \"karakt\",\n  \"karakteren\": \"karakter\",\n  \"karakteriseres\": \"karakteriser\",\n  \"karakteristika\": \"karakteristik\",\n  \"karakteristikken\": \"karakteristikk\",\n  \"karen\": \"kar\",\n  \"karene\": \"kar\",\n  \"karensperiode\": \"karensperiod\",\n  \"karer\": \"kar\",\n  \"karet\": \"kar\",\n  \"kari\": \"kari\",\n  \"karl\": \"karl\",\n  \"karmar\": \"karm\",\n  \"karmsund\": \"karmsund\",\n  \"karmøy\": \"karmøy\",\n  \"karre\": \"karr\",\n  \"karriere\": \"karrier\",\n  \"karrieren\": \"karrier\",\n  \"karriereutvikling\": \"karriereutvikling\",\n  \"kartlagt\": \"kartlagt\",\n  \"kartlegge\": \"kartlegg\",\n  \"kartlegging\": \"kartlegging\",\n  \"kartleggingen\": \"kartlegging\",\n  \"kartlegginger\": \"kartlegging\",\n  \"kartleggingsarbeidet\": \"kartleggingsarbeid\",\n  \"kartleggingsfasen\": \"kartleggingsfas\",\n  \"kaserne\": \"kasern\",\n  \"kasernebygningen\": \"kasernebygning\",\n  \"kasernen\": \"kasern\",\n  \"kasse\": \"kass\",\n  \"kast\": \"kast\",\n  \"kasta\": \"kast\",\n  \"kastar\": \"kast\",\n  \"kastast\": \"kast\",\n  \"kaste\": \"kast\",\n  \"kaster\": \"kast\",\n  \"kastes\": \"kast\",\n  \"kastet\": \"kast\",\n  \"katalog\": \"katalog\",\n  \"katalysator\": \"katalysator\",\n  \"kategorien\": \"kategori\",\n  \"kategoriene\": \"kategori\",\n  \"kategorier\": \"kategori\",\n  \"katt\": \"katt\",\n  \"katte\": \"katt\",\n  \"katten\": \"katt\",\n  \"kattene\": \"katt\",\n  \"kattepoter\": \"kattepot\",\n  \"katter\": \"katt\",\n  \"katteskinn\": \"katteskinn\",\n  \"kattunger\": \"kattung\",\n  \"kave\": \"kav\",\n  \"kaver\": \"kav\",\n  \"kgl\": \"kgl\",\n  \"kh\": \"kh\",\n  \"kiel\": \"kiel\",\n  \"kikke\": \"kikk\",\n  \"kikker\": \"kikk\",\n  \"kilde\": \"kild\",\n  \"kilden\": \"kild\",\n  \"kilder\": \"kild\",\n  \"kildevannet\": \"kildevann\",\n  \"kiler\": \"kil\",\n  \"kilo\": \"kilo\",\n  \"kilometer\": \"kilomet\",\n  \"kilometerdistanse\": \"kilometerdistans\",\n  \"kinn\": \"kinn\",\n  \"kinnene\": \"kinn\",\n  \"kinnet\": \"kinn\",\n  \"kinnskjegget\": \"kinnskjegg\",\n  \"kiosk\": \"kiosk\",\n  \"kirkenes\": \"kirk\",\n  \"kiste\": \"kist\",\n  \"kjede\": \"kjed\",\n  \"kjededannelsene\": \"kjededann\",\n  \"kjededannelser\": \"kjededann\",\n  \"kjedegrupperinger\": \"kjedegruppering\",\n  \"kjedeintegrasjon\": \"kjedeintegrasjon\",\n  \"kjedelige\": \"kjed\",\n  \"kjedens\": \"kjed\",\n  \"kjeder\": \"kjed\",\n  \"kjedestrukturene\": \"kjedestruktur\",\n  \"kjedet\": \"kjed\",\n  \"kjeft\": \"kjeft\",\n  \"kjeften\": \"kjeft\",\n  \"kjeftesmella\": \"kjeftesmell\",\n  \"kjekkaseri\": \"kjekkaseri\",\n  \"kjelde\": \"kjeld\",\n  \"kjelder\": \"kjeld\",\n  \"kjele\": \"kjel\",\n  \"kjelen\": \"kjel\",\n  \"kjeler\": \"kjel\",\n  \"kjelker\": \"kjelk\",\n  \"kjellar\": \"kjell\",\n  \"kjellarar\": \"kjellar\",\n  \"kjellstad\": \"kjellstad\",\n  \"kjem\": \"kjem\",\n  \"kjemikalier\": \"kjemikali\",\n  \"kjemiske\": \"kjemisk\",\n  \"kjemmet\": \"kjemm\",\n  \"kjempe\": \"kjemp\",\n  \"kjempediger\": \"kjemped\",\n  \"kjempedigre\": \"kjempedigr\",\n  \"kjempekrefter\": \"kjempekreft\",\n  \"kjempen\": \"kjemp\",\n  \"kjempene\": \"kjemp\",\n  \"kjempens\": \"kjemp\",\n  \"kjemper\": \"kjemp\",\n  \"kjempes\": \"kjemp\",\n  \"kjempestor\": \"kjempestor\",\n  \"kjempet\": \"kjemp\",\n  \"kjend\": \"kjend\",\n  \"kjende\": \"kjend\",\n  \"kjennast\": \"kjenn\",\n  \"kjenne\": \"kjenn\",\n  \"kjennelse\": \"kjenn\",\n  \"kjennemerka\": \"kjennemerk\",\n  \"kjennemerke\": \"kjennemerk\",\n  \"kjennemerket\": \"kjennemerk\",\n  \"kjenner\": \"kjenn\",\n  \"kjennes\": \"kjenn\",\n  \"kjennetegner\": \"kjennetegn\",\n  \"kjennetegnes\": \"kjennetegn\",\n  \"kjennetegnet\": \"kjennetegn\",\n  \"kjenneteikna\": \"kjenneteikn\",\n  \"kjenneteiknar\": \"kjenneteikn\",\n  \"kjenneteiknet\": \"kjenneteikn\",\n  \"kjennskap\": \"kjennskap\",\n  \"kjent\": \"kjent\",\n  \"kjente\": \"kjent\",\n  \"kjepp\": \"kjepp\",\n  \"kjeppjage\": \"kjeppjag\",\n  \"kjeppjages\": \"kjeppjag\",\n  \"kjeppjaget\": \"kjeppjag\",\n  \"kjerneaktivitetene\": \"kjerneaktivitet\",\n  \"kjerneaktiviteter\": \"kjerneaktivitet\",\n  \"kjerneverksemda\": \"kjerneverksemd\",\n  \"kjerra\": \"kjerr\",\n  \"kjerre\": \"kjerr\",\n  \"kjerring\": \"kjerring\",\n  \"kjerringa\": \"kjerring\",\n  \"kjerter\": \"kjert\",\n  \"kjettingen\": \"kjetting\",\n  \"kjevene\": \"kjev\",\n  \"kjolen\": \"kjol\",\n  \"kjælent\": \"kjælent\",\n  \"kjælne\": \"kjæln\",\n  \"kjære\": \"kjær\",\n  \"kjæremål\": \"kjæremål\",\n  \"kjæremålsutval\": \"kjæremålsutval\",\n  \"kjæreste\": \"kjærest\",\n  \"kjærester\": \"kjærest\",\n  \"kjærlighet\": \"kjær\",\n  \"kjærligheten\": \"kjær\",\n  \"kjærlighets\": \"kjærligh\",\n  \"kjærlighetsgudinnen\": \"kjærlighetsgudinn\",\n  \"kjærtegn\": \"kjærtegn\",\n  \"kjøkenapparat\": \"kjøkenapparat\",\n  \"kjøkenbenken\": \"kjøkenbenk\",\n  \"kjøkeninnreiing\": \"kjøkeninnreiing\",\n  \"kjøkenvifter\": \"kjøkenvift\",\n  \"kjøkkenet\": \"kjøkken\",\n  \"kjøkøsundet\": \"kjøkøsund\",\n  \"kjøl\": \"kjøl\",\n  \"kjølevarer\": \"kjølevar\",\n  \"kjølvannet\": \"kjølvann\",\n  \"kjønn\": \"kjønn\",\n  \"kjønnene\": \"kjønn\",\n  \"kjønnsforskjellen\": \"kjønnsforskjell\",\n  \"kjønnsforskjellene\": \"kjønnsforskjell\",\n  \"kjønnslem\": \"kjønnslem\",\n  \"kjønnsnøytralt\": \"kjønnsnøytralt\",\n  \"kjøp\": \"kjøp\",\n  \"kjøpar\": \"kjøp\",\n  \"kjøparar\": \"kjøpar\",\n  \"kjøparen\": \"kjøpar\",\n  \"kjøpast\": \"kjøp\",\n  \"kjøpe\": \"kjøp\",\n  \"kjøpekraft\": \"kjøpekraft\",\n  \"kjøpekraftsforbedring\": \"kjøpekraftsforbedring\",\n  \"kjøper\": \"kjøp\",\n  \"kjøperett\": \"kjøperett\",\n  \"kjøpes\": \"kjøp\",\n  \"kjøpesenter\": \"kjøpesent\",\n  \"kjøpesummen\": \"kjøpesumm\",\n  \"kjøpeutbyte\": \"kjøpeutbyt\",\n  \"kjøpsavtalar\": \"kjøpsavtal\",\n  \"kjøpsavtale\": \"kjøpsavtal\",\n  \"kjøpslova\": \"kjøp\",\n  \"kjøpssituasjonen\": \"kjøpssituasjon\",\n  \"kjøpt\": \"kjøpt\",\n  \"kjøpte\": \"kjøpt\",\n  \"kjøre\": \"kjør\",\n  \"kjøreavtaler\": \"kjøreavtal\",\n  \"kjørehastighet\": \"kjørehast\",\n  \"kjører\": \"kjør\",\n  \"kjøretøy\": \"kjøretøy\",\n  \"kjøretøyer\": \"kjøretøy\",\n  \"kjørte\": \"kjørt\",\n  \"kjøteren\": \"kjøter\",\n  \"kjøtt\": \"kjøtt\",\n  \"kjøttet\": \"kjøtt\",\n  \"klagast\": \"klag\",\n  \"klage\": \"klag\",\n  \"klageadgang\": \"klageadgang\",\n  \"klagefristen\": \"klagefrist\",\n  \"klageinteresse\": \"klageinteress\",\n  \"klagen\": \"klag\",\n  \"klagenemnd\": \"klagenemnd\",\n  \"klager\": \"klag\",\n  \"klagereglane\": \"klageregl\",\n  \"klagerett\": \"klagerett\",\n  \"klagesaker\": \"klagesak\",\n  \"klaget\": \"klag\",\n  \"klam\": \"klam\",\n  \"klamrer\": \"klamr\",\n  \"klang\": \"klang\",\n  \"klapper\": \"klapp\",\n  \"klar\": \"klar\",\n  \"klarar\": \"klar\",\n  \"klare\": \"klar\",\n  \"klarer\": \"klar\",\n  \"klarere\": \"klarer\",\n  \"klargjere\": \"klargjer\",\n  \"klargjort\": \"klargjort\",\n  \"klargjør\": \"klargjør\",\n  \"klargjøre\": \"klargjør\",\n  \"klargjøring\": \"klargjøring\",\n  \"klarlagt\": \"klarlagt\",\n  \"klarlegge\": \"klarlegg\",\n  \"klarsignal\": \"klarsignal\",\n  \"klart\": \"klart\",\n  \"klasse\": \"klass\",\n  \"klasseforskriften\": \"klasseforskrift\",\n  \"klassen\": \"klass\",\n  \"klassifiseres\": \"klassifiser\",\n  \"klassifisering\": \"klassifisering\",\n  \"klassifiseringen\": \"klassifisering\",\n  \"klassifisert\": \"klassifiser\",\n  \"klassifiserte\": \"klassifiser\",\n  \"klatre\": \"klatr\",\n  \"klatrer\": \"klatr\",\n  \"klatret\": \"klatr\",\n  \"klauslane\": \"klausl\",\n  \"klausul\": \"klausul\",\n  \"klausulane\": \"klausul\",\n  \"klausular\": \"klausul\",\n  \"klausulering\": \"klausulering\",\n  \"klausuleringa\": \"klausulering\",\n  \"klausuleringar\": \"klausulering\",\n  \"klausulert\": \"klausuler\",\n  \"klausulerte\": \"klausuler\",\n  \"kle\": \"kle\",\n  \"kleberget\": \"kleberg\",\n  \"kledd\": \"kledd\",\n  \"kledt\": \"kledt\",\n  \"klegg\": \"klegg\",\n  \"klem\": \"klem\",\n  \"klemmer\": \"klemm\",\n  \"kler\": \"kler\",\n  \"klevstrand\": \"klevstrand\",\n  \"klientkontomodellen\": \"klientkontomodell\",\n  \"klimaavtale\": \"klimaavtal\",\n  \"klimagasser\": \"klimagass\",\n  \"kling\": \"kling\",\n  \"klippeblokk\": \"klippeblokk\",\n  \"klippen\": \"klipp\",\n  \"klipper\": \"klipp\",\n  \"klippes\": \"klipp\",\n  \"klippevegger\": \"klippevegg\",\n  \"klirrende\": \"klirr\",\n  \"klisjeer\": \"klisje\",\n  \"klok\": \"klok\",\n  \"kloke\": \"klok\",\n  \"klokere\": \"kloker\",\n  \"klokeste\": \"klokest\",\n  \"klokkeslett\": \"klokkeslett\",\n  \"klokskap\": \"klokskap\",\n  \"klokt\": \"klokt\",\n  \"klorer\": \"klor\",\n  \"klp\": \"klp\",\n  \"klps\": \"klps\",\n  \"klubblokaler\": \"klubblokal\",\n  \"klump\": \"klump\",\n  \"klumpen\": \"klump\",\n  \"klumper\": \"klump\",\n  \"klynk\": \"klynk\",\n  \"klynkende\": \"klynk\",\n  \"klynker\": \"klynk\",\n  \"klyper\": \"klyp\",\n  \"klår\": \"klår\",\n  \"klårare\": \"klårar\",\n  \"klårast\": \"klår\",\n  \"klåre\": \"klår\",\n  \"klårgjerande\": \"klårgjer\",\n  \"klårgjere\": \"klårgjer\",\n  \"klårleggje\": \"klårleggj\",\n  \"klårt\": \"klårt\",\n  \"klær\": \"klær\",\n  \"klærne\": \"klærn\",\n  \"kløftede\": \"kløft\",\n  \"kløkt\": \"kløkt\",\n  \"klør\": \"klør\",\n  \"klørne\": \"klørn\",\n  \"kløv\": \"kløv\",\n  \"kløver\": \"kløv\",\n  \"km\": \"km\",\n  \"knaker\": \"knak\",\n  \"knapp\": \"knapp\",\n  \"knappe\": \"knapp\",\n  \"knapphet\": \"knapp\",\n  \"knapt\": \"knapt\",\n  \"knasende\": \"knas\",\n  \"knaser\": \"knas\",\n  \"kne\": \"kne\",\n  \"kneet\": \"kneet\",\n  \"knehasene\": \"knehas\",\n  \"knekke\": \"knekk\",\n  \"knekker\": \"knekk\",\n  \"knekkes\": \"knekk\",\n  \"knekkpunkt\": \"knekkpunkt\",\n  \"knekkpunktene\": \"knekkpunkt\",\n  \"knekt\": \"knekt\",\n  \"kneler\": \"knel\",\n  \"knep\": \"knep\",\n  \"knepper\": \"knepp\",\n  \"kneppeskjærsutstikkeren\": \"kneppeskjærsutstikker\",\n  \"knipe\": \"knip\",\n  \"knipen\": \"knip\",\n  \"kniper\": \"knip\",\n  \"knipser\": \"knips\",\n  \"knipset\": \"knips\",\n  \"knitrende\": \"knitr\",\n  \"kniv\": \"kniv\",\n  \"kniven\": \"kniv\",\n  \"kniver\": \"kniv\",\n  \"knokene\": \"knok\",\n  \"knoklene\": \"knokl\",\n  \"knokler\": \"knokl\",\n  \"knopper\": \"knopp\",\n  \"knurrer\": \"knurr\",\n  \"knuse\": \"knus\",\n  \"knuser\": \"knus\",\n  \"knuses\": \"knus\",\n  \"knuste\": \"knust\",\n  \"knut\": \"knut\",\n  \"knute\": \"knut\",\n  \"knuten\": \"knut\",\n  \"knutepunkt\": \"knutepunkt\",\n  \"knutepunkter\": \"knutepunkt\",\n  \"knutepunkthavnene\": \"knutepunkthavn\",\n  \"knutepunktsprinsippet\": \"knutepunktsprinsipp\",\n  \"knuter\": \"knut\",\n  \"knytast\": \"knyt\",\n  \"knyte\": \"knyt\",\n  \"knyter\": \"knyt\",\n  \"knytt\": \"knytt\",\n  \"knytte\": \"knytt\",\n  \"knyttede\": \"knytt\",\n  \"knytter\": \"knytt\",\n  \"knyttes\": \"knytt\",\n  \"knyttet\": \"knytt\",\n  \"knyttneven\": \"knyttnev\",\n  \"knærne\": \"knærn\",\n  \"kobler\": \"kobl\",\n  \"koblet\": \"kobl\",\n  \"kobling\": \"kobling\",\n  \"koblingen\": \"kobling\",\n  \"koften\": \"koft\",\n  \"koke\": \"kok\",\n  \"kokegrop\": \"kokegrop\",\n  \"kokekar\": \"kokek\",\n  \"koker\": \"kok\",\n  \"kokingen\": \"koking\",\n  \"kokken\": \"kokk\",\n  \"kokt\": \"kokt\",\n  \"kolber\": \"kolb\",\n  \"koldbrann\": \"koldbrann\",\n  \"kollegium\": \"kollegium\",\n  \"kollektiv\": \"kollektiv\",\n  \"kollektive\": \"kollektiv\",\n  \"kollektivet\": \"kollektiv\",\n  \"kollektivordning\": \"kollektivordning\",\n  \"kollektivordninger\": \"kollektivordning\",\n  \"kollektivt\": \"kollektiv\",\n  \"kollektivtrafikken\": \"kollektivtrafikk\",\n  \"kolliderer\": \"kollider\",\n  \"kollisjon\": \"kollisjon\",\n  \"kollisjonar\": \"kollisjon\",\n  \"kollisjoner\": \"kollisjon\",\n  \"kolonne\": \"kolonn\",\n  \"kolonnen\": \"kolonn\",\n  \"kolonnene\": \"kolonn\",\n  \"kom\": \"kom\",\n  \"komande\": \"kom\",\n  \"kombinasjon\": \"kombinasjon\",\n  \"kombinasjonar\": \"kombinasjon\",\n  \"kombinasjonen\": \"kombinasjon\",\n  \"kombinasjonsarealene\": \"kombinasjonsareal\",\n  \"kombinere\": \"kombiner\",\n  \"kombineres\": \"kombiner\",\n  \"kombinert\": \"kombiner\",\n  \"kombinerte\": \"kombiner\",\n  \"kombiskip\": \"kombiskip\",\n  \"kombiterminal\": \"kombiterminal\",\n  \"kombitransporter\": \"kombitransport\",\n  \"kome\": \"kom\",\n  \"komen\": \"kom\",\n  \"komite\": \"komit\",\n  \"komiteen\": \"komite\",\n  \"komiteens\": \"komite\",\n  \"komitemedlemmene\": \"komitemedlemm\",\n  \"komiteutgreiingar\": \"komiteutgreiing\",\n  \"kommandittselskaper\": \"kommandittselskap\",\n  \"komme\": \"komm\",\n  \"kommentarer\": \"kommentar\",\n  \"kommentert\": \"kommenter\",\n  \"kommenterte\": \"kommenter\",\n  \"kommer\": \"komm\",\n  \"kommersiell\": \"kommersiell\",\n  \"kommersielle\": \"kommersiell\",\n  \"kommet\": \"komm\",\n  \"kommisjonen\": \"kommisjon\",\n  \"kommisjonens\": \"kommisjon\",\n  \"kommunal\": \"kommunal\",\n  \"kommunaldepartementet\": \"kommunaldepartement\",\n  \"kommunale\": \"kommunal\",\n  \"kommunalrettslige\": \"kommunalretts\",\n  \"kommunalt\": \"kommunalt\",\n  \"kommunane\": \"kommun\",\n  \"kommunar\": \"kommun\",\n  \"kommune\": \"kommun\",\n  \"kommuneadministrasjon\": \"kommuneadministrasjon\",\n  \"kommunedelplan\": \"kommunedelplan\",\n  \"kommunedelplanen\": \"kommunedelplan\",\n  \"kommunegrensen\": \"kommunegrens\",\n  \"kommunegrensene\": \"kommunegrens\",\n  \"kommunekassen\": \"kommunekass\",\n  \"kommunelov\": \"kommun\",\n  \"kommuneloven\": \"kommun\",\n  \"kommunelovens\": \"kommun\",\n  \"kommunen\": \"kommun\",\n  \"kommunene\": \"kommun\",\n  \"kommunenes\": \"kommun\",\n  \"kommunens\": \"kommun\",\n  \"kommuneplan\": \"kommuneplan\",\n  \"kommuneplanen\": \"kommuneplan\",\n  \"kommuneplanens\": \"kommuneplan\",\n  \"kommuner\": \"kommun\",\n  \"kommuners\": \"kommun\",\n  \"kommunes\": \"kommun\",\n  \"kommunestyre\": \"kommunestyr\",\n  \"kommunestyrene\": \"kommunestyr\",\n  \"kommunestyrer\": \"kommunestyr\",\n  \"kommunestyret\": \"kommunestyr\",\n  \"kommunestyrets\": \"kommunestyr\",\n  \"kommunevalgperioden\": \"kommunevalgperiod\",\n  \"kommunikasjon\": \"kommunikasjon\",\n  \"kommunikasjonar\": \"kommunikasjon\",\n  \"kommunikasjonen\": \"kommunikasjon\",\n  \"kommunikasjonsforhold\": \"kommunikasjonsforhold\",\n  \"komne\": \"komn\",\n  \"kompensasjon\": \"kompensasjon\",\n  \"kompensasjonen\": \"kompensasjon\",\n  \"kompensasjonsgrad\": \"kompensasjonsgrad\",\n  \"kompensasjonsgraden\": \"kompensasjonsgrad\",\n  \"kompensasjonsgrader\": \"kompensasjonsgrad\",\n  \"kompensasjonsnivå\": \"kompensasjonsnivå\",\n  \"kompensasjonsnivåene\": \"kompensasjonsnivå\",\n  \"kompensasjonsnivåer\": \"kompensasjonsnivå\",\n  \"kompensasjonsnivået\": \"kompensasjonsnivå\",\n  \"kompensere\": \"kompenser\",\n  \"kompenserer\": \"kompenser\",\n  \"kompensert\": \"kompenser\",\n  \"kompetanse\": \"kompetans\",\n  \"kompetansen\": \"kompetans\",\n  \"kompetansepersoner\": \"kompetanseperson\",\n  \"kompetansestrid\": \"kompetansestrid\",\n  \"kompleksitet\": \"kompleksit\",\n  \"kompletteringsregel\": \"kompletteringsregel\",\n  \"kompletteringsregelen\": \"kompletteringsregel\",\n  \"komplikasjonar\": \"komplikasjon\",\n  \"komplikasjoner\": \"komplikasjon\",\n  \"komplisere\": \"kompliser\",\n  \"komplisert\": \"kompliser\",\n  \"kompliserte\": \"kompliser\",\n  \"komponent\": \"komponent\",\n  \"komponenter\": \"komponent\",\n  \"komprimert\": \"komprimer\",\n  \"kompromiss\": \"kompromiss\",\n  \"kon\": \"kon\",\n  \"kona\": \"kon\",\n  \"kone\": \"kon\",\n  \"koneløs\": \"koneløs\",\n  \"konen\": \"kon\",\n  \"koner\": \"kon\",\n  \"konflikt\": \"konflikt\",\n  \"konfliktar\": \"konflikt\",\n  \"konflikten\": \"konflikt\",\n  \"konfliktene\": \"konflikt\",\n  \"konflikter\": \"konflikt\",\n  \"konfliktforhold\": \"konfliktforhold\",\n  \"konfliktfylt\": \"konfliktfylt\",\n  \"konfliktområdet\": \"konfliktområd\",\n  \"konfliktsituasjonar\": \"konfliktsituasjon\",\n  \"konfliktsituasjoner\": \"konfliktsituasjon\",\n  \"kong\": \"kong\",\n  \"konge\": \"kong\",\n  \"kongelig\": \"kong\",\n  \"kongen\": \"kong\",\n  \"kongens\": \"kong\",\n  \"konger\": \"kong\",\n  \"kongsgården\": \"kongsgård\",\n  \"kongshavn\": \"kongshavn\",\n  \"kongssønnene\": \"kongssønn\",\n  \"konjunkturavhengig\": \"konjunkturavheng\",\n  \"konjunkturer\": \"konjunktur\",\n  \"konjunktursvingningene\": \"konjunktursvingning\",\n  \"konkluderer\": \"konkluder\",\n  \"konkluderte\": \"konkluder\",\n  \"konklusjon\": \"konklusjon\",\n  \"konklusjonen\": \"konklusjon\",\n  \"konklusjonene\": \"konklusjon\",\n  \"konklusjoner\": \"konklusjon\",\n  \"konklusjonskapitlet\": \"konklusjonskapitl\",\n  \"konkret\": \"konkr\",\n  \"konkrete\": \"konkret\",\n  \"konkretiserer\": \"konkretiser\",\n  \"konkretisering\": \"konkretisering\",\n  \"konkretisert\": \"konkretiser\",\n  \"konkurransdyktige\": \"konkurransdykt\",\n  \"konkurranse\": \"konkurrans\",\n  \"konkurransebegrensende\": \"konkurransebegrens\",\n  \"konkurransedyktig\": \"konkurransedykt\",\n  \"konkurransedyktige\": \"konkurransedykt\",\n  \"konkurransedyktighet\": \"konkurransedykt\",\n  \"konkurranseevne\": \"konkurranseevn\",\n  \"konkurransefaktor\": \"konkurransefaktor\",\n  \"konkurranseflatene\": \"konkurranseflat\",\n  \"konkurranseflater\": \"konkurranseflat\",\n  \"konkurranseforhold\": \"konkurranseforhold\",\n  \"konkurransefortrinn\": \"konkurransefortrinn\",\n  \"konkurransehemmende\": \"konkurransehemm\",\n  \"konkurransekraft\": \"konkurransekraft\",\n  \"konkurransekriteriene\": \"konkurransekriteri\",\n  \"konkurranselova\": \"konkurrans\",\n  \"konkurranseloven\": \"konkurrans\",\n  \"konkurranselovens\": \"konkurrans\",\n  \"konkurranselovgivning\": \"konkurranselovgivning\",\n  \"konkurranselovgivningen\": \"konkurranselovgivning\",\n  \"konkurranselovgjeving\": \"konkurranselovgjeving\",\n  \"konkurranselovgjevinga\": \"konkurranselovgjeving\",\n  \"konkurransemarked\": \"konkurransemarked\",\n  \"konkurransemessige\": \"konkurransemess\",\n  \"konkurransen\": \"konkurrans\",\n  \"konkurranseorienterte\": \"konkurranseorienter\",\n  \"konkurranseparameter\": \"konkurranseparamet\",\n  \"konkurranseparametre\": \"konkurranseparametr\",\n  \"konkurranseregler\": \"konkurranseregl\",\n  \"konkurranserettslege\": \"konkurranseretts\",\n  \"konkurransesituasjonen\": \"konkurransesituasjon\",\n  \"konkurranseskadeleg\": \"konkurranseskad\",\n  \"konkurransetilsynet\": \"konkurransetilsyn\",\n  \"konkurranseutsatt\": \"konkurranseutsatt\",\n  \"konkurranseutsatte\": \"konkurranseutsatt\",\n  \"konkurransevilkår\": \"konkurransevilkår\",\n  \"konkurransevilkåra\": \"konkurransevilkår\",\n  \"konkurransevridende\": \"konkurransevrid\",\n  \"konkurransvridende\": \"konkurransvrid\",\n  \"konkurrent\": \"konkurrent\",\n  \"konkurrentar\": \"konkurrent\",\n  \"konkurrerande\": \"konkurrer\",\n  \"konkurrere\": \"konkurrer\",\n  \"konkurrerende\": \"konkurrer\",\n  \"konkurrerer\": \"konkurrer\",\n  \"konkurrert\": \"konkurrer\",\n  \"konkurs\": \"konkur\",\n  \"konkursar\": \"konkurs\",\n  \"konkursbehandling\": \"konkursbehandling\",\n  \"konkursbu\": \"konkursbu\",\n  \"konkursbuet\": \"konkursbu\",\n  \"konkursen\": \"konkurs\",\n  \"konkurskarantene\": \"konkurskarant\",\n  \"konkurslova\": \"konkur\",\n  \"konkursopning\": \"konkursopning\",\n  \"konkursopninga\": \"konkursopning\",\n  \"konkursskyldnar\": \"konkursskyldn\",\n  \"konkurstilfelle\": \"konkurstilfell\",\n  \"konr\": \"konr\",\n  \"konsekvens\": \"konsekv\",\n  \"konsekvensane\": \"konsekvens\",\n  \"konsekvensar\": \"konsekvens\",\n  \"konsekvensberegningene\": \"konsekvensberegning\",\n  \"konsekvensberegninger\": \"konsekvensberegning\",\n  \"konsekvensen\": \"konsekvens\",\n  \"konsekvensene\": \"konsekvens\",\n  \"konsekvenser\": \"konsekvens\",\n  \"konsekvensutredes\": \"konsekvensutr\",\n  \"konsekvensutredning\": \"konsekvensutredning\",\n  \"konsekvensutredningen\": \"konsekvensutredning\",\n  \"konsekvensutredninger\": \"konsekvensutredning\",\n  \"konsekvensutredningsforskriftens\": \"konsekvensutredningsforskrift\",\n  \"konsekvensutredningsmeldingen\": \"konsekvensutredningsmelding\",\n  \"konsekvensutredningsreglene\": \"konsekvensutredningsregl\",\n  \"konsekvensvurderingene\": \"konsekvensvurdering\",\n  \"konsekvensvurderinger\": \"konsekvensvurdering\",\n  \"konsentrasjon\": \"konsentrasjon\",\n  \"konsentrasjonen\": \"konsentrasjon\",\n  \"konsentrerast\": \"konsentrer\",\n  \"konsentrere\": \"konsentrer\",\n  \"konsentrerer\": \"konsentrer\",\n  \"konsentrert\": \"konsentrer\",\n  \"konsentrerte\": \"konsentrer\",\n  \"konsern\": \"konsern\",\n  \"konsernbegrepet\": \"konsernbegrep\",\n  \"konserner\": \"konsern\",\n  \"konsernet\": \"konsern\",\n  \"konsernets\": \"konsern\",\n  \"konsernforetak\": \"konsernforetak\",\n  \"konsernforhold\": \"konsernforhold\",\n  \"konsernforholdet\": \"konsernforhold\",\n  \"konserninterne\": \"konsernintern\",\n  \"konsernkontoordningar\": \"konsernkontoordning\",\n  \"konsernlignende\": \"konsernlign\",\n  \"konsernmodell\": \"konsernmodell\",\n  \"konsernmodellen\": \"konsernmodell\",\n  \"konservativt\": \"konservativ\",\n  \"konsesjon\": \"konsesjon\",\n  \"konsesjonstildeling\": \"konsesjonstildeling\",\n  \"konsistente\": \"konsistent\",\n  \"konsolidering\": \"konsolidering\",\n  \"konstant\": \"konstant\",\n  \"konstatere\": \"konstater\",\n  \"konstaterer\": \"konstater\",\n  \"konstatert\": \"konstater\",\n  \"konstituerande\": \"konstituer\",\n  \"konstruerer\": \"konstruer\",\n  \"konstruert\": \"konstruer\",\n  \"konstruksjon\": \"konstruksjon\",\n  \"konstruksjonar\": \"konstruksjon\",\n  \"konstruksjonsløsninger\": \"konstruksjonsløsning\",\n  \"konsulent\": \"konsulent\",\n  \"konsulentar\": \"konsulent\",\n  \"konsulenter\": \"konsulent\",\n  \"konsulentrolle\": \"konsulentroll\",\n  \"konsulenttenester\": \"konsulenttenest\",\n  \"konsulenttjenester\": \"konsulenttjenest\",\n  \"konsum\": \"konsum\",\n  \"konsumenter\": \"konsument\",\n  \"konsumprisindeksen\": \"konsumprisindeks\",\n  \"konsumvarer\": \"konsumvar\",\n  \"kontakt\": \"kontakt\",\n  \"kontakten\": \"kontakt\",\n  \"kontaktutvalget\": \"kontaktutvalg\",\n  \"kontant\": \"kontant\",\n  \"kontantar\": \"kontant\",\n  \"kontantbetalinga\": \"kontantbetaling\",\n  \"kontanter\": \"kontant\",\n  \"kontantstrømanalyse\": \"kontantstrømanalys\",\n  \"kontantvederlag\": \"kontantvederlag\",\n  \"kontantverdi\": \"kontantverdi\",\n  \"konti\": \"konti\",\n  \"kontinent\": \"kontinent\",\n  \"kontinentale\": \"kontinental\",\n  \"kontinentet\": \"kontinent\",\n  \"kontinuerleg\": \"kontinuer\",\n  \"kontinuerlig\": \"kontinuer\",\n  \"kontinuitet\": \"kontinuit\",\n  \"kontinuiteten\": \"kontinuitet\",\n  \"konto\": \"konto\",\n  \"kontoen\": \"konto\",\n  \"kontoens\": \"konto\",\n  \"kontoer\": \"konto\",\n  \"kontoføring\": \"kontoføring\",\n  \"kontohaver\": \"kontohav\",\n  \"kontohaveren\": \"kontohaver\",\n  \"kontohold\": \"kontohold\",\n  \"kontorbedrifter\": \"kontorbedrift\",\n  \"kontorbygg\": \"kontorbygg\",\n  \"kontorer\": \"kontor\",\n  \"kontorfellesskapet\": \"kontorfellesskap\",\n  \"kontorlokaler\": \"kontorlokal\",\n  \"kontorstifta\": \"kontorstift\",\n  \"kontorstiftast\": \"kontorstift\",\n  \"kontorstifte\": \"kontorstift\",\n  \"kontorstifting\": \"kontorstifting\",\n  \"kontoutskrift\": \"kontoutskrift\",\n  \"kontoutskriften\": \"kontoutskrift\",\n  \"kontoutskrifter\": \"kontoutskrift\",\n  \"kontrakt\": \"kontrakt\",\n  \"kontrakten\": \"kontrakt\",\n  \"kontraktens\": \"kontrakt\",\n  \"kontrakter\": \"kontrakt\",\n  \"kontrakters\": \"kontrakt\",\n  \"kontraktsfestede\": \"kontraktsfest\",\n  \"kontraktsforhold\": \"kontraktsforhold\",\n  \"kontraktsforpliktelser\": \"kontraktsforplikt\",\n  \"kontraktsinngåelse\": \"kontraktsinngå\",\n  \"kontraktslast\": \"kontraktsl\",\n  \"kontraktslovene\": \"kontrakt\",\n  \"kontraktsplikter\": \"kontraktsplikt\",\n  \"kontraktsreglar\": \"kontraktsregl\",\n  \"kontraktsretten\": \"kontraktsrett\",\n  \"kontraktsrettsleg\": \"kontraktsretts\",\n  \"kontroll\": \"kontroll\",\n  \"kontrollansvar\": \"kontrollansv\",\n  \"kontrollansvaret\": \"kontrollansvar\",\n  \"kontrollansvarsregelen\": \"kontrollansvarsregel\",\n  \"kontrollansvarsreglane\": \"kontrollansvarsregl\",\n  \"kontrollen\": \"kontroll\",\n  \"kontrollerast\": \"kontroller\",\n  \"kontrollere\": \"kontroller\",\n  \"kontrollerer\": \"kontroller\",\n  \"kontrolleres\": \"kontroller\",\n  \"kontrollert\": \"kontroller\",\n  \"kontrollerte\": \"kontroller\",\n  \"kontrollhensyn\": \"kontrollhensyn\",\n  \"kontrollinstanser\": \"kontrollinstans\",\n  \"kontrolloppgaver\": \"kontrolloppgav\",\n  \"kontrollsystemer\": \"kontrollsystem\",\n  \"kontrolltiltak\": \"kontrolltiltak\",\n  \"konturene\": \"kontur\",\n  \"konvensjonell\": \"konvensjonell\",\n  \"konvensjonelle\": \"konvensjonell\",\n  \"konvensjonelt\": \"konvensjonelt\",\n  \"konvertere\": \"konverter\",\n  \"konverteres\": \"konverter\",\n  \"konvertering\": \"konvertering\",\n  \"konverteringen\": \"konvertering\",\n  \"konverteringstidspunktet\": \"konverteringstidspunkt\",\n  \"kooperasjon\": \"kooperasjon\",\n  \"kooperasjonen\": \"kooperasjon\",\n  \"kooperativ\": \"kooperativ\",\n  \"kooperativa\": \"kooperativ\",\n  \"kooperative\": \"kooperativ\",\n  \"kooperativet\": \"kooperativ\",\n  \"kooperativt\": \"kooperativ\",\n  \"koordinere\": \"koordiner\",\n  \"koordinerer\": \"koordiner\",\n  \"koordinering\": \"koordinering\",\n  \"koordinerings\": \"koordinering\",\n  \"koordinert\": \"koordiner\",\n  \"kopi\": \"kopi\",\n  \"kopiar\": \"kopi\",\n  \"kopla\": \"kopl\",\n  \"kor\": \"kor\",\n  \"kork\": \"kork\",\n  \"korkje\": \"korkj\",\n  \"korleis\": \"korleis\",\n  \"korn\": \"korn\",\n  \"kornsjø\": \"kornsjø\",\n  \"kornåkrene\": \"kornåkr\",\n  \"korreksjon\": \"korreksjon\",\n  \"korrekt\": \"korrekt\",\n  \"korrekte\": \"korrekt\",\n  \"korrelert\": \"korreler\",\n  \"korrespondanse\": \"korrespondans\",\n  \"korridor\": \"korridor\",\n  \"korridorene\": \"korridor\",\n  \"korridorer\": \"korridor\",\n  \"korridorgruppa\": \"korridorgrupp\",\n  \"korridorgruppen\": \"korridorgrupp\",\n  \"korridortenkning\": \"korridortenkning\",\n  \"korrigering\": \"korrigering\",\n  \"korrigert\": \"korriger\",\n  \"kort\": \"kort\",\n  \"kortare\": \"kortar\",\n  \"kortast\": \"kort\",\n  \"korte\": \"kort\",\n  \"kortere\": \"korter\",\n  \"kortest\": \"kortest\",\n  \"korteste\": \"kortest\",\n  \"kortfattet\": \"kortfatt\",\n  \"kortform\": \"kortform\",\n  \"korthet\": \"kort\",\n  \"kortsiden\": \"kortsid\",\n  \"kortsiktige\": \"kortsikt\",\n  \"kortvarig\": \"kortvar\",\n  \"kosnadseffektive\": \"kosnadseffektiv\",\n  \"kost\": \"kost\",\n  \"kostar\": \"kost\",\n  \"kostbar\": \"kostb\",\n  \"kostbare\": \"kostbar\",\n  \"kostbarhetene\": \"kostbar\",\n  \"kostbarheter\": \"kostbar\",\n  \"koste\": \"kost\",\n  \"kostelig\": \"kost\",\n  \"koster\": \"kost\",\n  \"kostn\": \"kostn\",\n  \"kostnad\": \"kostnad\",\n  \"kostnaden\": \"kostnad\",\n  \"kostnadene\": \"kostnad\",\n  \"kostnader\": \"kostnad\",\n  \"kostnadsauke\": \"kostnadsauk\",\n  \"kostnadsbaserte\": \"kostnadsbaser\",\n  \"kostnadseffekter\": \"kostnadseffekt\",\n  \"kostnadseffektiv\": \"kostnadseffektiv\",\n  \"kostnadseffektive\": \"kostnadseffektiv\",\n  \"kostnadseffektivitet\": \"kostnadseffektivit\",\n  \"kostnadsgevinster\": \"kostnadsgevinst\",\n  \"kostnadshensyn\": \"kostnadshensyn\",\n  \"kostnadskontroll\": \"kostnadskontroll\",\n  \"kostnadskrevende\": \"kostnadskrev\",\n  \"kostnadskrevjande\": \"kostnadskrevj\",\n  \"kostnadsmessig\": \"kostnadsmess\",\n  \"kostnadsmessige\": \"kostnadsmess\",\n  \"kostnadsnivå\": \"kostnadsnivå\",\n  \"kostnadsnivået\": \"kostnadsnivå\",\n  \"kostnadsoptimale\": \"kostnadsoptimal\",\n  \"kostnadsoverslag\": \"kostnadsoverslag\",\n  \"kostnadsoverslaget\": \"kostnadsoverslag\",\n  \"kostnadssiden\": \"kostnadssid\",\n  \"kostnadstallene\": \"kostnadstall\",\n  \"kostnadsøkningen\": \"kostnadsøkning\",\n  \"kr\": \"kr\",\n  \"krabbe\": \"krabb\",\n  \"krabber\": \"krabb\",\n  \"kraft\": \"kraft\",\n  \"kraften\": \"kraft\",\n  \"kraftig\": \"kraft\",\n  \"kraftige\": \"kraft\",\n  \"kraftigst\": \"kraftigst\",\n  \"kraftkjøp\": \"kraftkjøp\",\n  \"kraftlag\": \"kraftlag\",\n  \"krakk\": \"krakk\",\n  \"kran\": \"kran\",\n  \"kraner\": \"kran\",\n  \"krangel\": \"krangel\",\n  \"krangle\": \"krangl\",\n  \"krangler\": \"krangl\",\n  \"kranhåndtering\": \"kranhåndtering\",\n  \"kranser\": \"krans\",\n  \"kransystemer\": \"kransystem\",\n  \"kratt\": \"kratt\",\n  \"krattet\": \"kratt\",\n  \"krattskog\": \"krattskog\",\n  \"krav\": \"krav\",\n  \"krava\": \"krav\",\n  \"kravde\": \"kravd\",\n  \"kravene\": \"krav\",\n  \"kravet\": \"krav\",\n  \"kravsmål\": \"kravsmål\",\n  \"kravsmålet\": \"kravsmål\",\n  \"kravstor\": \"kravstor\",\n  \"kravt\": \"kravt\",\n  \"krediterast\": \"krediter\",\n  \"kreditor\": \"kreditor\",\n  \"kreditorane\": \"kreditor\",\n  \"kreditorar\": \"kreditor\",\n  \"kreditoren\": \"kreditor\",\n  \"kreditorer\": \"kreditor\",\n  \"kreditorinteressene\": \"kreditorinteress\",\n  \"kreditors\": \"kreditor\",\n  \"kreditorsvik\": \"kreditorsvik\",\n  \"kreditorvarsel\": \"kreditorvarsel\",\n  \"kreditorvarselet\": \"kreditorvarsel\",\n  \"kreditt\": \"kreditt\",\n  \"kredittavtaler\": \"kredittavtal\",\n  \"kredittforholdet\": \"kredittforhold\",\n  \"kredittgjevinga\": \"kredittgjeving\",\n  \"kredittilgangen\": \"kredittilgang\",\n  \"kredittilsynet\": \"kredittilsyn\",\n  \"kredittilsynets\": \"kredittilsyn\",\n  \"kredittilsynsloven\": \"kredittilsyn\",\n  \"kredittinstitusjon\": \"kredittinstitusjon\",\n  \"kredittinstitusjoner\": \"kredittinstitusjon\",\n  \"kredittstellet\": \"kredittstell\",\n  \"kredittverdig\": \"kredittverd\",\n  \"kreftene\": \"kreft\",\n  \"krefter\": \"kreft\",\n  \"krek\": \"krek\",\n  \"kremter\": \"kremt\",\n  \"krets\": \"kret\",\n  \"kretser\": \"krets\",\n  \"krev\": \"krev\",\n  \"kreve\": \"krev\",\n  \"krevende\": \"krev\",\n  \"krever\": \"krev\",\n  \"kreves\": \"krev\",\n  \"krevjast\": \"krevj\",\n  \"krevje\": \"krevj\",\n  \"krevst\": \"krevst\",\n  \"krig\": \"krig\",\n  \"krigen\": \"krig\",\n  \"kriger\": \"krig\",\n  \"krigere\": \"kriger\",\n  \"krigerne\": \"krigern\",\n  \"krigersk\": \"krigersk\",\n  \"krigstog\": \"krigstog\",\n  \"krigstrommene\": \"krigstromm\",\n  \"kring\": \"kring\",\n  \"krins\": \"krin\",\n  \"krinsar\": \"krins\",\n  \"krinsen\": \"krins\",\n  \"krisa\": \"kris\",\n  \"kriser\": \"kris\",\n  \"krisescenarier\": \"krisescenari\",\n  \"krisesituasjonar\": \"krisesituasjon\",\n  \"krisesituasjoner\": \"krisesituasjon\",\n  \"kriseåra\": \"kriseår\",\n  \"kristeleg\": \"krist\",\n  \"kristelig\": \"krist\",\n  \"kristensen\": \"kristens\",\n  \"kristiansand\": \"kristiansand\",\n  \"kristiansund\": \"kristiansund\",\n  \"kristin\": \"kristin\",\n  \"kriteriene\": \"kriteri\",\n  \"kriterier\": \"kriteri\",\n  \"kriteriet\": \"kriteri\",\n  \"kriterium\": \"kriterium\",\n  \"kritikk\": \"kritikk\",\n  \"kritiserast\": \"kritiser\",\n  \"kritisert\": \"kritiser\",\n  \"kritisk\": \"kritisk\",\n  \"kritiske\": \"kritisk\",\n  \"kroer\": \"kroer\",\n  \"krok\": \"krok\",\n  \"kroken\": \"krok\",\n  \"kroker\": \"krok\",\n  \"krokrygget\": \"krokrygg\",\n  \"kronebeløp\": \"kronebeløp\",\n  \"kronen\": \"kron\",\n  \"kroner\": \"kron\",\n  \"kroneverdien\": \"kroneverdi\",\n  \"krongle\": \"krongl\",\n  \"kropp\": \"kropp\",\n  \"kroppen\": \"kropp\",\n  \"kroppene\": \"kropp\",\n  \"kroppsløse\": \"kroppsløs\",\n  \"krummer\": \"krumm\",\n  \"krus\": \"krus\",\n  \"kruset\": \"krus\",\n  \"kryp\": \"kryp\",\n  \"krype\": \"kryp\",\n  \"kryper\": \"kryp\",\n  \"kryr\": \"kryr\",\n  \"kryss\": \"kryss\",\n  \"kryssende\": \"kryss\",\n  \"krysser\": \"kryss\",\n  \"krysset\": \"kryss\",\n  \"kryssområder\": \"kryssområd\",\n  \"kråke\": \"kråk\",\n  \"kråkes\": \"kråk\",\n  \"krøker\": \"krøk\",\n  \"krøp\": \"krøp\",\n  \"ku\": \"ku\",\n  \"kua\": \"kua\",\n  \"kuer\": \"kuer\",\n  \"kulde\": \"kuld\",\n  \"kulden\": \"kuld\",\n  \"kull\": \"kull\",\n  \"kulltangenbroen\": \"kulltangenbro\",\n  \"kullterminal\": \"kullterminal\",\n  \"kulturelle\": \"kulturell\",\n  \"kulturlandskap\": \"kulturlandskap\",\n  \"kulturminner\": \"kulturminn\",\n  \"kun\": \"kun\",\n  \"kundane\": \"kund\",\n  \"kundar\": \"kund\",\n  \"kunde\": \"kund\",\n  \"kundeforhold\": \"kundeforhold\",\n  \"kundegrupper\": \"kundegrupp\",\n  \"kundehensyn\": \"kundehensyn\",\n  \"kundemarkedet\": \"kundemarked\",\n  \"kunden\": \"kund\",\n  \"kundene\": \"kund\",\n  \"kundens\": \"kund\",\n  \"kunder\": \"kund\",\n  \"kune\": \"kun\",\n  \"kunna\": \"kunn\",\n  \"kunne\": \"kunn\",\n  \"kunnet\": \"kunn\",\n  \"kunngjerast\": \"kunngjer\",\n  \"kunngjere\": \"kunngjer\",\n  \"kunngjering\": \"kunngjering\",\n  \"kunngjeringa\": \"kunngjering\",\n  \"kunngjeringar\": \"kunngjering\",\n  \"kunngjeringsmåten\": \"kunngjeringsmåt\",\n  \"kunnskap\": \"kunnskap\",\n  \"kunnskapar\": \"kunnskap\",\n  \"kunnskaper\": \"kunnskap\",\n  \"kunnskapsoppbygging\": \"kunnskapsoppbygging\",\n  \"kunnskapstørst\": \"kunnskapstørst\",\n  \"kunst\": \"kunst\",\n  \"kunsten\": \"kunst\",\n  \"kunster\": \"kunst\",\n  \"kuppel\": \"kuppel\",\n  \"kurant\": \"kurant\",\n  \"kurs\": \"kur\",\n  \"kursen\": \"kurs\",\n  \"kursivering\": \"kursivering\",\n  \"kursreguleringsfond\": \"kursreguleringsfond\",\n  \"kurvatur\": \"kurvatur\",\n  \"kurve\": \"kurv\",\n  \"kutter\": \"kutt\",\n  \"kuttes\": \"kutt\",\n  \"kva\": \"kva\",\n  \"kvalifikasjonar\": \"kvalifikasjon\",\n  \"kvalifisert\": \"kvalifiser\",\n  \"kvalifiserte\": \"kvalifiser\",\n  \"kvalitativ\": \"kvalitativ\",\n  \"kvalitativt\": \"kvalitativ\",\n  \"kvalitet\": \"kvalit\",\n  \"kvalitetar\": \"kvalitet\",\n  \"kvaliteten\": \"kvalitet\",\n  \"kvalitetsaspektet\": \"kvalitetsaspekt\",\n  \"kvalitetskontroll\": \"kvalitetskontroll\",\n  \"kvalitetssikring\": \"kvalitetssikring\",\n  \"kvalm\": \"kvalm\",\n  \"kvalt\": \"kvalt\",\n  \"kvanta\": \"kvant\",\n  \"kvar\": \"kvar\",\n  \"kvarande\": \"kvar\",\n  \"kvarandre\": \"kvarandr\",\n  \"kvardagane\": \"kvardag\",\n  \"kvardagar\": \"kvardag\",\n  \"kvart\": \"kvart\",\n  \"kvartalsvis\": \"kvartalsvis\",\n  \"kvaser\": \"kvas\",\n  \"kvasers\": \"kvas\",\n  \"kvasse\": \"kvass\",\n  \"kveder\": \"kved\",\n  \"kveile\": \"kveil\",\n  \"kveiler\": \"kveil\",\n  \"kveld\": \"kveld\",\n  \"kvelden\": \"kveld\",\n  \"kvelds\": \"kveld\",\n  \"kveldsmat\": \"kveldsmat\",\n  \"kveldsmaten\": \"kveldsmat\",\n  \"kveles\": \"kvel\",\n  \"kven\": \"kven\",\n  \"kverke\": \"kverk\",\n  \"kvern\": \"kvern\",\n  \"kverna\": \"kvern\",\n  \"kvernstein\": \"kvernstein\",\n  \"kvernsteinene\": \"kvernstein\",\n  \"kvier\": \"kvier\",\n  \"kvikk\": \"kvikk\",\n  \"kvikt\": \"kvikt\",\n  \"kvile\": \"kvil\",\n  \"kviler\": \"kvil\",\n  \"kvinne\": \"kvinn\",\n  \"kvinneklær\": \"kvinneklær\",\n  \"kvinnelig\": \"kvinn\",\n  \"kvinnelige\": \"kvinn\",\n  \"kvinnen\": \"kvinn\",\n  \"kvinnene\": \"kvinn\",\n  \"kvinnens\": \"kvinn\",\n  \"kvinner\": \"kvinn\",\n  \"kvinners\": \"kvinn\",\n  \"kvinnfolk\": \"kvinnfolk\",\n  \"kvist\": \"kvist\",\n  \"kvisten\": \"kvist\",\n  \"kvister\": \"kvist\",\n  \"kvitrer\": \"kvitr\",\n  \"kvitt\": \"kvitt\",\n  \"kvitta\": \"kvitt\",\n  \"kvittar\": \"kvitt\",\n  \"kvitte\": \"kvitt\",\n  \"kvitteringer\": \"kvittering\",\n  \"kvm\": \"kvm\",\n  \"kvoten\": \"kvot\",\n  \"kyllingene\": \"kylling\",\n  \"kyllinger\": \"kylling\",\n  \"kyndig\": \"kynd\",\n  \"kyndige\": \"kynd\",\n  \"kyr\": \"kyr\",\n  \"kyrkje\": \"kyrkj\",\n  \"kyss\": \"kyss\",\n  \"kysse\": \"kyss\",\n  \"kysser\": \"kyss\",\n  \"kyst\": \"kyst\",\n  \"kystdirektoratet\": \"kystdirektorat\",\n  \"kysten\": \"kyst\",\n  \"kystkommuner\": \"kystkommun\",\n  \"kystsonen\": \"kystson\",\n  \"kystsoneplan\": \"kystsoneplan\",\n  \"kystterminal\": \"kystterminal\",\n  \"kåre\": \"kår\",\n  \"kåt\": \"kåt\",\n  \"kåte\": \"kåt\",\n  \"kåtere\": \"kåter\",\n  \"kåteste\": \"kåtest\",\n  \"kø\": \"kø\",\n  \"københavn\": \"københavn\",\n  \"køen\": \"køen\",\n  \"køer\": \"køer\",\n  \"køsystem\": \"køsystem\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"labbene\": \"labb\",\n  \"laboratorie\": \"laboratori\",\n  \"lag\": \"lag\",\n  \"laga\": \"lag\",\n  \"lagar\": \"lag\",\n  \"lagast\": \"lag\",\n  \"lagd\": \"lagd\",\n  \"lagde\": \"lagd\",\n  \"lage\": \"lag\",\n  \"lagen\": \"lag\",\n  \"lagene\": \"lag\",\n  \"lager\": \"lag\",\n  \"lagerbedrifter\": \"lagerbedrift\",\n  \"lagerbygninger\": \"lagerbygning\",\n  \"lagerfunksjoner\": \"lagerfunksjon\",\n  \"lagerhold\": \"lagerhold\",\n  \"lagerholdsfunksjoner\": \"lagerholdsfunksjon\",\n  \"lagersted\": \"lagersted\",\n  \"lagervirksomheter\": \"lagervirksom\",\n  \"lages\": \"lag\",\n  \"laget\": \"lag\",\n  \"lagetkrav\": \"lagetkrav\",\n  \"lagets\": \"lag\",\n  \"lagmannsrett\": \"lagmannsrett\",\n  \"lagmannsretten\": \"lagmannsrett\",\n  \"lagre\": \"lagr\",\n  \"lagrene\": \"lagr\",\n  \"lagring\": \"lagring\",\n  \"lagsdrifta\": \"lagsdrift\",\n  \"lagsforholdet\": \"lagsforhold\",\n  \"lagsføremålet\": \"lagsføremål\",\n  \"lagskontoret\": \"lagskontor\",\n  \"lagsmidlane\": \"lagsmidl\",\n  \"lagsorgan\": \"lagsorgan\",\n  \"lagsorgana\": \"lagsorgan\",\n  \"lagsskyldnadene\": \"lagsskyldnad\",\n  \"lagt\": \"lagt\",\n  \"lagtinget\": \"lagting\",\n  \"laks\": \"laks\",\n  \"laksens\": \"laks\",\n  \"laksestammen\": \"laksestamm\",\n  \"lam\": \"lam\",\n  \"lammekjøtt\": \"lammekjøtt\",\n  \"lammeskinnslue\": \"lammeskinnslu\",\n  \"lampe\": \"lamp\",\n  \"lan\": \"lan\",\n  \"land\": \"land\",\n  \"landa\": \"land\",\n  \"landarealer\": \"landareal\",\n  \"landarealet\": \"landareal\",\n  \"landbasert\": \"landbaser\",\n  \"landbaserte\": \"landbaser\",\n  \"landbruk\": \"landbruk\",\n  \"landbruket\": \"landbruk\",\n  \"landbruksavtalar\": \"landbruksavtal\",\n  \"landbrukssamvirket\": \"landbrukssamvirk\",\n  \"landbrukssamvirkets\": \"landbrukssamvirk\",\n  \"landdistribusjon\": \"landdistribusjon\",\n  \"lande\": \"land\",\n  \"landegrensene\": \"landegrens\",\n  \"landene\": \"land\",\n  \"lander\": \"land\",\n  \"landet\": \"land\",\n  \"landets\": \"land\",\n  \"landeveg\": \"landeveg\",\n  \"landfast\": \"landf\",\n  \"landfordeling\": \"landfordeling\",\n  \"landområde\": \"landområd\",\n  \"lands\": \"land\",\n  \"landsbygda\": \"landsbygd\",\n  \"landsdekkjande\": \"landsdekkj\",\n  \"landsdelene\": \"landsdel\",\n  \"landsdeler\": \"landsdel\",\n  \"landsforbund\": \"landsforbund\",\n  \"landsforening\": \"landsforening\",\n  \"landsgjennomsnittet\": \"landsgjennomsnitt\",\n  \"landsiden\": \"landsid\",\n  \"landskapet\": \"landskap\",\n  \"landskillet\": \"landskill\",\n  \"landsorganisasjonen\": \"landsorganisasjon\",\n  \"landspensjonskasse\": \"landspensjonskass\",\n  \"landssamanslutning\": \"landssamanslutning\",\n  \"landssamband\": \"landssamband\",\n  \"landsting\": \"landsting\",\n  \"landstotalen\": \"landstotal\",\n  \"landtransport\": \"landtransport\",\n  \"landtransportdistanse\": \"landtransportdistans\",\n  \"landtransporten\": \"landtransport\",\n  \"landvegs\": \"landveg\",\n  \"landverts\": \"landvert\",\n  \"lang\": \"lang\",\n  \"langbent\": \"langbent\",\n  \"langbordene\": \"langbord\",\n  \"langbordet\": \"langbord\",\n  \"lange\": \"lang\",\n  \"langesund\": \"langesund\",\n  \"langesundbukta\": \"langesundbukt\",\n  \"langesundsfjorden\": \"langesundsfjord\",\n  \"langesundterminalen\": \"langesundterminal\",\n  \"langobarder\": \"langobard\",\n  \"langs\": \"lang\",\n  \"langsetter\": \"langsett\",\n  \"langsiktig\": \"langsikt\",\n  \"langsiktige\": \"langsikt\",\n  \"langskjegger\": \"langskjegg\",\n  \"langsomme\": \"langsomm\",\n  \"langsommere\": \"langsommer\",\n  \"langsomste\": \"langsomst\",\n  \"langsomt\": \"langsomt\",\n  \"langt\": \"langt\",\n  \"langtidsplaner\": \"langtidsplan\",\n  \"langtidsprogram\": \"langtidsprogram\",\n  \"langtidsprogramma\": \"langtidsprogramm\",\n  \"langtidsprogrammet\": \"langtidsprogramm\",\n  \"langtidsprograms\": \"langtidsprogram\",\n  \"langtur\": \"langtur\",\n  \"langvarig\": \"langvar\",\n  \"langvarige\": \"langvar\",\n  \"langveggen\": \"langvegg\",\n  \"langveggene\": \"langvegg\",\n  \"lansert\": \"lanser\",\n  \"lanterne\": \"lantern\",\n  \"lapper\": \"lapp\",\n  \"lappeteppe\": \"lappetepp\",\n  \"lar\": \"lar\",\n  \"larm\": \"larm\",\n  \"larmen\": \"larm\",\n  \"larvik\": \"larvik\",\n  \"larviksfjorden\": \"larviksfjord\",\n  \"lass\": \"lass\",\n  \"lassevis\": \"lassevis\",\n  \"last\": \"last\",\n  \"lastbærer\": \"lastbær\",\n  \"laste\": \"last\",\n  \"lastebil\": \"lastebil\",\n  \"lastebilen\": \"lastebil\",\n  \"lastebiler\": \"lastebil\",\n  \"lastebiltransport\": \"lastebiltransport\",\n  \"lastebærer\": \"lastebær\",\n  \"lastebærere\": \"lastebærer\",\n  \"lasteeiere\": \"lasteeier\",\n  \"lasteevne\": \"lasteevn\",\n  \"lasten\": \"last\",\n  \"lastens\": \"last\",\n  \"laster\": \"last\",\n  \"lasterommet\": \"lasteromm\",\n  \"lasteskip\": \"lasteskip\",\n  \"lastesystemer\": \"lastesystem\",\n  \"lastet\": \"last\",\n  \"lasteutstyr\": \"lasteutstyr\",\n  \"lastevekt\": \"lastevekt\",\n  \"lastevolum\": \"lastevolum\",\n  \"lasting\": \"lasting\",\n  \"lat\": \"lat\",\n  \"late\": \"lat\",\n  \"later\": \"lat\",\n  \"latt\": \"latt\",\n  \"latter\": \"latt\",\n  \"latteren\": \"latter\",\n  \"laurdag\": \"laurdag\",\n  \"laurdagar\": \"laurdag\",\n  \"lausøyre\": \"lausøyr\",\n  \"lausøyreregisteret\": \"lausøyreregister\",\n  \"lausøyreting\": \"lausøyreting\",\n  \"lauvøy\": \"lauvøy\",\n  \"lauvøysson\": \"lauvøysson\",\n  \"lav\": \"lav\",\n  \"lavavkastningsperiode\": \"lavavkastningsperiod\",\n  \"lave\": \"lav\",\n  \"lavere\": \"laver\",\n  \"lavest\": \"lavest\",\n  \"laveste\": \"lavest\",\n  \"lavkostnadsland\": \"lavkostnadsland\",\n  \"lavori\": \"lavori\",\n  \"lavoro\": \"lavoro\",\n  \"lavt\": \"lavt\",\n  \"lavtlønte\": \"lavtlønt\",\n  \"le\": \"le\",\n  \"leca\": \"lec\",\n  \"ledd\": \"ledd\",\n  \"leddet\": \"ledd\",\n  \"ledds\": \"ledd\",\n  \"lede\": \"led\",\n  \"ledelse\": \"led\",\n  \"ledelsen\": \"led\",\n  \"leden\": \"led\",\n  \"ledende\": \"led\",\n  \"ledene\": \"led\",\n  \"leder\": \"led\",\n  \"ledervervet\": \"lederverv\",\n  \"ledes\": \"led\",\n  \"ledetid\": \"ledetid\",\n  \"ledetiden\": \"ledetid\",\n  \"ledig\": \"led\",\n  \"ledige\": \"led\",\n  \"leet\": \"leet\",\n  \"lega\": \"leg\",\n  \"legacoop\": \"legacoop\",\n  \"legaldefinisjon\": \"legaldefinisjon\",\n  \"legalpant\": \"legalpant\",\n  \"legalpanterett\": \"legalpanterett\",\n  \"legalpanteretten\": \"legalpanterett\",\n  \"lege\": \"leg\",\n  \"legedrikk\": \"legedrikk\",\n  \"legekunst\": \"legekunst\",\n  \"legende\": \"leg\",\n  \"legesenter\": \"legesent\",\n  \"legg\": \"legg\",\n  \"legge\": \"legg\",\n  \"legger\": \"legg\",\n  \"legges\": \"legg\",\n  \"leggjast\": \"leggj\",\n  \"leggje\": \"leggj\",\n  \"legitimiteten\": \"legitimitet\",\n  \"legning\": \"legning\",\n  \"lei\": \"lei\",\n  \"leia\": \"leia\",\n  \"leiar\": \"leiar\",\n  \"leiarar\": \"leiar\",\n  \"leiaren\": \"leiar\",\n  \"leiast\": \"leiast\",\n  \"leid\": \"leid\",\n  \"leidd\": \"leidd\",\n  \"leidningar\": \"leidning\",\n  \"leie\": \"leie\",\n  \"leieavtaler\": \"leieavtal\",\n  \"leieforhold\": \"leieforhold\",\n  \"leiegårder\": \"leiegård\",\n  \"leieinntekter\": \"leieinntekt\",\n  \"leier\": \"leier\",\n  \"leieren\": \"leier\",\n  \"leierett\": \"leierett\",\n  \"leieretten\": \"leierett\",\n  \"leiga\": \"leig\",\n  \"leigar\": \"leig\",\n  \"leigarane\": \"leigar\",\n  \"leigarar\": \"leigar\",\n  \"leigaren\": \"leigar\",\n  \"leigarens\": \"leigar\",\n  \"leigast\": \"leig\",\n  \"leigde\": \"leigd\",\n  \"leige\": \"leig\",\n  \"leigeavtalane\": \"leigeavtal\",\n  \"leigeavtalar\": \"leigeavtal\",\n  \"leigeavtale\": \"leigeavtal\",\n  \"leigeavtalen\": \"leigeavtal\",\n  \"leigebetaling\": \"leigebetaling\",\n  \"leigebuarorganisasjonane\": \"leigebuarorganisasjon\",\n  \"leigebuarrørsla\": \"leigebuarrørsl\",\n  \"leigebustad\": \"leigebustad\",\n  \"leigebustaden\": \"leigebustad\",\n  \"leigebustader\": \"leigebustad\",\n  \"leigeforhold\": \"leigeforhold\",\n  \"leigeforholdet\": \"leigeforhold\",\n  \"leigegard\": \"leigegard\",\n  \"leigegardslova\": \"leigegard\",\n  \"leigeinntekter\": \"leigeinntekt\",\n  \"leigekonstruksjonen\": \"leigekonstruksjon\",\n  \"leigekontraktar\": \"leigekontrakt\",\n  \"leigemodellen\": \"leigemodell\",\n  \"leigenivået\": \"leigenivå\",\n  \"leigeobjektet\": \"leigeobjekt\",\n  \"leiger\": \"leig\",\n  \"leigereguleringa\": \"leigeregulering\",\n  \"leigeregulert\": \"leigereguler\",\n  \"leigerett\": \"leigerett\",\n  \"leigerettane\": \"leigerett\",\n  \"leigerettar\": \"leigerett\",\n  \"leigeretten\": \"leigerett\",\n  \"leigt\": \"leigt\",\n  \"leiing\": \"leiing\",\n  \"leiinga\": \"leiing\",\n  \"leikeplass\": \"leikeplass\",\n  \"leikeplassar\": \"leikeplass\",\n  \"leir\": \"leir\",\n  \"leire\": \"leir\",\n  \"leiren\": \"leir\",\n  \"leirkjempen\": \"leirkjemp\",\n  \"leirtrollet\": \"leirtroll\",\n  \"leit\": \"leit\",\n  \"lek\": \"lek\",\n  \"leke\": \"lek\",\n  \"leken\": \"lek\",\n  \"lekent\": \"lekent\",\n  \"leker\": \"lek\",\n  \"lekne\": \"lekn\",\n  \"lekte\": \"lekt\",\n  \"lekter\": \"lekt\",\n  \"lemlestede\": \"lemlest\",\n  \"lempast\": \"lemp\",\n  \"lempeligere\": \"lempeliger\",\n  \"lemper\": \"lemp\",\n  \"lempes\": \"lemp\",\n  \"lemping\": \"lemping\",\n  \"lempingsreglar\": \"lempingsregl\",\n  \"lener\": \"len\",\n  \"lengd\": \"lengd\",\n  \"lengda\": \"lengd\",\n  \"lengde\": \"lengd\",\n  \"lengden\": \"lengd\",\n  \"lenge\": \"leng\",\n  \"lenger\": \"leng\",\n  \"lenging\": \"lenging\",\n  \"lengje\": \"lengj\",\n  \"lengre\": \"lengr\",\n  \"lengsel\": \"lengsel\",\n  \"lengst\": \"lengst\",\n  \"lengste\": \"lengst\",\n  \"lengstefrist\": \"lengstefrist\",\n  \"lengstetida\": \"lengstetid\",\n  \"lengte\": \"lengt\",\n  \"lengter\": \"lengt\",\n  \"lengtet\": \"lengt\",\n  \"lenke\": \"lenk\",\n  \"lenken\": \"lenk\",\n  \"lenkene\": \"lenk\",\n  \"lenker\": \"lenk\",\n  \"lenket\": \"lenk\",\n  \"lensmannen\": \"lensmann\",\n  \"lensmannsdistrikt\": \"lensmannsdistrikt\",\n  \"leppene\": \"lepp\",\n  \"ler\": \"ler\",\n  \"lese\": \"les\",\n  \"lesen\": \"les\",\n  \"leser\": \"les\",\n  \"leses\": \"les\",\n  \"leske\": \"lesk\",\n  \"let\": \"let\",\n  \"lete\": \"let\",\n  \"leter\": \"let\",\n  \"lett\": \"lett\",\n  \"lettar\": \"lett\",\n  \"lettare\": \"lettar\",\n  \"lettast\": \"lett\",\n  \"lette\": \"lett\",\n  \"letter\": \"lett\",\n  \"lettere\": \"letter\",\n  \"lettest\": \"lettest\",\n  \"lettet\": \"lett\",\n  \"levd\": \"levd\",\n  \"levde\": \"levd\",\n  \"leve\": \"lev\",\n  \"levealder\": \"leveald\",\n  \"levealderen\": \"levealder\",\n  \"levedyktig\": \"levedykt\",\n  \"leveform\": \"leveform\",\n  \"levekår\": \"levekår\",\n  \"levekårspolitikken\": \"levekårspolitikk\",\n  \"levekårsundersøkelsen\": \"levekårsundersøk\",\n  \"levelalder\": \"levelald\",\n  \"leven\": \"lev\",\n  \"levende\": \"lev\",\n  \"levenet\": \"leven\",\n  \"lever\": \"lev\",\n  \"leverandørar\": \"leverandør\",\n  \"leverandørens\": \"leverandør\",\n  \"leverandører\": \"leverandør\",\n  \"leveranser\": \"leverans\",\n  \"leveransesikkerhet\": \"leveransesikker\",\n  \"leverantorer\": \"leverantor\",\n  \"leverast\": \"lever\",\n  \"levere\": \"lever\",\n  \"levereglene\": \"leveregl\",\n  \"leveregler\": \"leveregl\",\n  \"leverer\": \"lever\",\n  \"leveres\": \"lever\",\n  \"levering\": \"levering\",\n  \"leveringens\": \"levering\",\n  \"leveringer\": \"levering\",\n  \"leveringskjeden\": \"leveringskjed\",\n  \"leveringskrav\": \"leveringskrav\",\n  \"leveringspålitelighet\": \"leveringspålit\",\n  \"leveringsservice\": \"leveringsservic\",\n  \"leveringstidspunkt\": \"leveringstidspunkt\",\n  \"leveringsønsker\": \"leveringsønsk\",\n  \"levert\": \"lever\",\n  \"levesett\": \"levesett\",\n  \"levet\": \"lev\",\n  \"levetid\": \"levetid\",\n  \"levetida\": \"levetid\",\n  \"levetidkilde\": \"levetidkild\",\n  \"lf\": \"lf\",\n  \"li\": \"li\",\n  \"lidd\": \"lidd\",\n  \"lide\": \"lid\",\n  \"lidelsen\": \"lid\",\n  \"lidskjalv\": \"lidskjalv\",\n  \"lidt\": \"lidt\",\n  \"lier\": \"lier\",\n  \"lierstranda\": \"lierstrand\",\n  \"life\": \"lif\",\n  \"lift\": \"lift\",\n  \"ligg\": \"ligg\",\n  \"ligge\": \"ligg\",\n  \"liggende\": \"ligg\",\n  \"ligger\": \"ligg\",\n  \"ligget\": \"ligg\",\n  \"liggetid\": \"liggetid\",\n  \"liggetiden\": \"liggetid\",\n  \"liggjande\": \"liggj\",\n  \"liggje\": \"liggj\",\n  \"light\": \"light\",\n  \"ligne\": \"lign\",\n  \"lignende\": \"lign\",\n  \"ligner\": \"lign\",\n  \"lignet\": \"lign\",\n  \"ligning\": \"ligning\",\n  \"ligningen\": \"ligning\",\n  \"lignings\": \"ligning\",\n  \"ligningsforhold\": \"ligningsforhold\",\n  \"ligningsforvaltning\": \"ligningsforvaltning\",\n  \"ligningsloven\": \"ligning\",\n  \"ligningsmyndighetene\": \"ligningsmynd\",\n  \"ligningsmyndighetenes\": \"ligningsmynd\",\n  \"ligningsmyndigheter\": \"ligningsmynd\",\n  \"ligningspraksis\": \"ligningspraksis\",\n  \"ligningstekniske\": \"ligningsteknisk\",\n  \"lik\": \"lik\",\n  \"like\": \"lik\",\n  \"likebehandles\": \"likebehandl\",\n  \"likebehandling\": \"likebehandling\",\n  \"likeins\": \"likein\",\n  \"likeledes\": \"likel\",\n  \"likemenn\": \"likemenn\",\n  \"likene\": \"lik\",\n  \"liker\": \"lik\",\n  \"likestille\": \"likestill\",\n  \"likestilles\": \"likestill\",\n  \"likestilling\": \"likestilling\",\n  \"likestillingshensyn\": \"likestillingshensyn\",\n  \"likestillingsmessig\": \"likestillingsmess\",\n  \"likestilt\": \"likestilt\",\n  \"likestilte\": \"likestilt\",\n  \"liket\": \"lik\",\n  \"likevel\": \"likevel\",\n  \"likeverdig\": \"likeverd\",\n  \"likeverdige\": \"likeverd\",\n  \"likhet\": \"lik\",\n  \"likheter\": \"lik\",\n  \"likhetskrav\": \"likhetskrav\",\n  \"likhetsprinsipp\": \"likhetsprinsipp\",\n  \"likhetsprinsippet\": \"likhetsprinsipp\",\n  \"likhetsvurderinger\": \"likhetsvurdering\",\n  \"liknande\": \"likn\",\n  \"liknar\": \"likn\",\n  \"likne\": \"likn\",\n  \"likninga\": \"likning\",\n  \"likningsstyresmaktene\": \"likningsstyresmakt\",\n  \"likskap\": \"likskap\",\n  \"likskapen\": \"likskap\",\n  \"likt\": \"likt\",\n  \"likte\": \"likt\",\n  \"likvide\": \"likvid\",\n  \"likvider\": \"likvid\",\n  \"likviditet\": \"likvidit\",\n  \"likviditeten\": \"likviditet\",\n  \"likviditetsbehov\": \"likviditetsbehov\",\n  \"likviditetsmessig\": \"likviditetsmess\",\n  \"likviditetsproblemer\": \"likviditetsproblem\",\n  \"likviditetsregnskap\": \"likviditetsregnskap\",\n  \"lille\": \"lill\",\n  \"lillebroren\": \"lillebror\",\n  \"lilleholt\": \"lilleholt\",\n  \"limited\": \"limited\",\n  \"limt\": \"limt\",\n  \"line\": \"lin\",\n  \"linene\": \"lin\",\n  \"liner\": \"lin\",\n  \"lines\": \"lin\",\n  \"lineær\": \"lineær\",\n  \"lineære\": \"lineær\",\n  \"lineært\": \"lineært\",\n  \"linje\": \"linj\",\n  \"linjefart\": \"linjefart\",\n  \"linjefarten\": \"linjefart\",\n  \"linjeføringen\": \"linjeføring\",\n  \"linjegods\": \"linjegod\",\n  \"linjene\": \"linj\",\n  \"linjenes\": \"linj\",\n  \"linjenettet\": \"linjenett\",\n  \"linjeopplegg\": \"linjeopplegg\",\n  \"linjer\": \"linj\",\n  \"linjerederiene\": \"linjerederi\",\n  \"linjerederienes\": \"linjerederi\",\n  \"linjerederier\": \"linjerederi\",\n  \"linjeskip\": \"linjeskip\",\n  \"linjetilbud\": \"linjetilbud\",\n  \"linjetrafikken\": \"linjetrafikk\",\n  \"lintråd\": \"lintråd\",\n  \"lir\": \"lir\",\n  \"lirker\": \"lirk\",\n  \"lisens\": \"lis\",\n  \"list\": \"list\",\n  \"lista\": \"list\",\n  \"liste\": \"list\",\n  \"lister\": \"list\",\n  \"listet\": \"list\",\n  \"listig\": \"list\",\n  \"listverk\": \"listverk\",\n  \"lit\": \"lit\",\n  \"lite\": \"lit\",\n  \"liten\": \"lit\",\n  \"litt\": \"litt\",\n  \"litteraturen\": \"litteratur\",\n  \"litterære\": \"litterær\",\n  \"liv\": \"liv\",\n  \"live\": \"liv\",\n  \"livet\": \"liv\",\n  \"livets\": \"liv\",\n  \"livgivende\": \"livgiv\",\n  \"livrente\": \"livrent\",\n  \"livrenteforsikring\": \"livrenteforsikring\",\n  \"livrenteforsikringen\": \"livrenteforsikring\",\n  \"livrenteforsikringer\": \"livrenteforsikring\",\n  \"livrenteforskriften\": \"livrenteforskrift\",\n  \"livrenten\": \"livrent\",\n  \"livrenteordninger\": \"livrenteordning\",\n  \"livrenteproduktene\": \"livrenteprodukt\",\n  \"livrenter\": \"livrent\",\n  \"livs\": \"liv\",\n  \"livsarving\": \"livsarving\",\n  \"livsfase\": \"livsfas\",\n  \"livsforsikring\": \"livsforsikring\",\n  \"livsforsikringar\": \"livsforsikring\",\n  \"livsforsikringsavtalen\": \"livsforsikringsavtal\",\n  \"livsforsikringsdirektiv\": \"livsforsikringsdirektiv\",\n  \"livsforsikringsdirektivene\": \"livsforsikringsdirektiv\",\n  \"livsforsikringspremie\": \"livsforsikringspremi\",\n  \"livsforsikringsselskap\": \"livsforsikringsselskap\",\n  \"livsforsikringsselskapa\": \"livsforsikringsselskap\",\n  \"livsforsikringsselskapene\": \"livsforsikringsselskap\",\n  \"livsforsikringsselskapenes\": \"livsforsikringsselskap\",\n  \"livsforsikringsselskaper\": \"livsforsikringsselskap\",\n  \"livsforsikringsselskapet\": \"livsforsikringsselskap\",\n  \"livsforsikringsvirksomhet\": \"livsforsikringsvirksom\",\n  \"livsinntekten\": \"livsinntekt\",\n  \"livskvalitet\": \"livskvalit\",\n  \"livslang\": \"livslang\",\n  \"livslange\": \"livslang\",\n  \"livsledsager\": \"livsledsag\",\n  \"livsløpet\": \"livsløp\",\n  \"livssituasjon\": \"livssituasjon\",\n  \"livstørst\": \"livstørst\",\n  \"livsvarig\": \"livsvar\",\n  \"livsvarige\": \"livsvar\",\n  \"livtrase\": \"livtras\",\n  \"ljåene\": \"ljåen\",\n  \"lo\": \"lo\",\n  \"lock\": \"lock\",\n  \"lodne\": \"lodn\",\n  \"logisk\": \"logisk\",\n  \"logistikk\": \"logistikk\",\n  \"logistikkbedrifter\": \"logistikkbedrift\",\n  \"logistikkfunksjonene\": \"logistikkfunksjon\",\n  \"logistikkfunksjoner\": \"logistikkfunksjon\",\n  \"logistikkkostnader\": \"logistikkkostnad\",\n  \"logistikkløsning\": \"logistikkløsning\",\n  \"logistikkløsninger\": \"logistikkløsning\",\n  \"logistikksammenheng\": \"logistikksammenheng\",\n  \"logistikktankegang\": \"logistikktankegang\",\n  \"logistikkteminalene\": \"logistikkteminal\",\n  \"logistikkterminalene\": \"logistikkterminal\",\n  \"logistiske\": \"logistisk\",\n  \"logrer\": \"logr\",\n  \"lohavn\": \"lohavn\",\n  \"lokal\": \"lokal\",\n  \"lokale\": \"lokal\",\n  \"lokalisere\": \"lokaliser\",\n  \"lokaliseres\": \"lokaliser\",\n  \"lokalisering\": \"lokalisering\",\n  \"lokaliseringen\": \"lokalisering\",\n  \"lokaliseringsmønsteret\": \"lokaliseringsmønster\",\n  \"lokaliseringspunkt\": \"lokaliseringspunkt\",\n  \"lokaliseringsspørsmål\": \"lokaliseringsspørsmål\",\n  \"lokaliseringsvalg\": \"lokaliseringsvalg\",\n  \"lokaliseringsvurderingen\": \"lokaliseringsvurdering\",\n  \"lokalisert\": \"lokaliser\",\n  \"lokalområder\": \"lokalområd\",\n  \"lokalpolitiske\": \"lokalpolitisk\",\n  \"lokalsamfunn\": \"lokalsamfunn\",\n  \"lokalsamfunnet\": \"lokalsamfunn\",\n  \"lokalt\": \"lokalt\",\n  \"lokaltrafikk\": \"lokaltrafikk\",\n  \"lokaltrafikken\": \"lokaltrafikk\",\n  \"loke\": \"lok\",\n  \"loker\": \"lok\",\n  \"lokes\": \"lok\",\n  \"lokk\": \"lokk\",\n  \"lokke\": \"lokk\",\n  \"lokker\": \"lokk\",\n  \"lokket\": \"lokk\",\n  \"lombardia\": \"lombardi\",\n  \"loneskatt\": \"loneskatt\",\n  \"loppe\": \"lopp\",\n  \"loran\": \"loran\",\n  \"los\": \"los\",\n  \"losbordingsfelt\": \"losbordingsfelt\",\n  \"losgebyrene\": \"losgebyr\",\n  \"losing\": \"losing\",\n  \"losplikten\": \"losplikt\",\n  \"loss\": \"loss\",\n  \"losse\": \"loss\",\n  \"lossearbeider\": \"lossearbeid\",\n  \"losses\": \"loss\",\n  \"lossesystemet\": \"lossesystem\",\n  \"losseutstyr\": \"losseutstyr\",\n  \"lossing\": \"lossing\",\n  \"lostjenesten\": \"lostjenest\",\n  \"losvirksomhet\": \"losvirksom\",\n  \"lot\": \"lot\",\n  \"lov\": \"lov\",\n  \"lova\": \"lov\",\n  \"lovarbeid\": \"lovarbeid\",\n  \"lovarbeidet\": \"lovarbeid\",\n  \"lovbestemmelse\": \"lovbestemm\",\n  \"lovbestemmelsene\": \"lovbestemm\",\n  \"lovbestemt\": \"lovbestemt\",\n  \"lovbestemte\": \"lovbestemt\",\n  \"love\": \"lov\",\n  \"loven\": \"lov\",\n  \"lovendring\": \"lovendring\",\n  \"lovendringar\": \"lovendring\",\n  \"lovendringen\": \"lovendring\",\n  \"lovendringene\": \"lovendring\",\n  \"lovendringenes\": \"lovendring\",\n  \"lovene\": \"lov\",\n  \"lovens\": \"lov\",\n  \"lover\": \"lov\",\n  \"lovet\": \"lov\",\n  \"lovfastsett\": \"lovfastsett\",\n  \"lovfastsette\": \"lovfastsett\",\n  \"lovfesta\": \"lovfest\",\n  \"lovfestast\": \"lovfest\",\n  \"lovfeste\": \"lovfest\",\n  \"lovfestede\": \"lovfest\",\n  \"lovfestes\": \"lovfest\",\n  \"lovfestet\": \"lovfest\",\n  \"lovfesting\": \"lovfesting\",\n  \"lovforslaget\": \"lovforslag\",\n  \"lovforslagets\": \"lovforslag\",\n  \"lovføresegn\": \"lovføresegn\",\n  \"lovføresegnene\": \"lovføresegn\",\n  \"lovgivingen\": \"lovgiving\",\n  \"lovgivning\": \"lovgivning\",\n  \"lovgivningen\": \"lovgivning\",\n  \"lovgivningskompetanse\": \"lovgivningskompetans\",\n  \"lovgjevaren\": \"lovgjevar\",\n  \"lovgjevarens\": \"lovgjevar\",\n  \"lovgjeving\": \"lovgjeving\",\n  \"lovgjevinga\": \"lovgjeving\",\n  \"lovgrunnlag\": \"lovgrunnlag\",\n  \"lovheimel\": \"lovheimel\",\n  \"lovleg\": \"lov\",\n  \"lovlege\": \"lov\",\n  \"lovlig\": \"lov\",\n  \"lovmotiv\": \"lovmotiv\",\n  \"lovmotiva\": \"lovmotiv\",\n  \"lovn\": \"lovn\",\n  \"lovnad\": \"lovnad\",\n  \"lovpåbod\": \"lovpåbod\",\n  \"lovpålagt\": \"lovpålagt\",\n  \"lovregelen\": \"lovregel\",\n  \"lovreglar\": \"lovregl\",\n  \"lovregler\": \"lovregl\",\n  \"lovregulering\": \"lovregulering\",\n  \"lovreguleringa\": \"lovregulering\",\n  \"lovreguleringen\": \"lovregulering\",\n  \"lovregulert\": \"lovreguler\",\n  \"lovregulerte\": \"lovreguler\",\n  \"lovstrukturelt\": \"lovstrukturelt\",\n  \"lovstrukturutvalet\": \"lovstrukturutval\",\n  \"lovteknisk\": \"lovteknisk\",\n  \"lovtekst\": \"lovtekst\",\n  \"lovtekstar\": \"lovtekst\",\n  \"lovteksten\": \"lovtekst\",\n  \"lovtekster\": \"lovtekst\",\n  \"lovutkast\": \"lovutk\",\n  \"lovutkastet\": \"lovutkast\",\n  \"lovutkastets\": \"lovutkast\",\n  \"lovutval\": \"lovutval\",\n  \"lovval\": \"lovval\",\n  \"lovverk\": \"lovverk\",\n  \"lovverkene\": \"lovverk\",\n  \"lovverket\": \"lovverk\",\n  \"ltp\": \"ltp\",\n  \"ltps\": \"ltps\",\n  \"lue\": \"lue\",\n  \"luft\": \"luft\",\n  \"luften\": \"luft\",\n  \"luftetur\": \"luftetur\",\n  \"luftfart\": \"luftfart\",\n  \"luftfartslova\": \"luftfart\",\n  \"luftfartsverket\": \"luftfartsverk\",\n  \"luftfarty\": \"luftfarty\",\n  \"luftfartyregister\": \"luftfartyregist\",\n  \"luftfartyregisteret\": \"luftfartyregister\",\n  \"luftfartøyregister\": \"luftfartøyregist\",\n  \"luftforurensing\": \"luftforurensing\",\n  \"luftforurensning\": \"luftforurensning\",\n  \"lufthavn\": \"lufthavn\",\n  \"luker\": \"luk\",\n  \"lukke\": \"lukk\",\n  \"lukkede\": \"lukk\",\n  \"lukker\": \"lukk\",\n  \"lukket\": \"lukk\",\n  \"lukt\": \"lukt\",\n  \"lukter\": \"lukt\",\n  \"lumske\": \"lumsk\",\n  \"lunden\": \"lund\",\n  \"lunder\": \"lund\",\n  \"lur\": \"lur\",\n  \"lure\": \"lur\",\n  \"lurer\": \"lur\",\n  \"lurest\": \"lurest\",\n  \"lurt\": \"lurt\",\n  \"lurte\": \"lurt\",\n  \"lurvelevenet\": \"lurveleven\",\n  \"lurvete\": \"lurvet\",\n  \"lus\": \"lus\",\n  \"luskende\": \"lusk\",\n  \"lusker\": \"lusk\",\n  \"lut\": \"lut\",\n  \"lutast\": \"lut\",\n  \"lutkast\": \"lutk\",\n  \"lutryggete\": \"lutrygget\",\n  \"ly\": \"ly\",\n  \"lyd\": \"lyd\",\n  \"lyde\": \"lyd\",\n  \"lyden\": \"lyd\",\n  \"lyder\": \"lyd\",\n  \"lydløse\": \"lydløs\",\n  \"lykke\": \"lykk\",\n  \"lykkelig\": \"lykk\",\n  \"lykten\": \"lykt\",\n  \"lyn\": \"lyn\",\n  \"lyner\": \"lyn\",\n  \"lyng\": \"lyng\",\n  \"lynget\": \"lyng\",\n  \"lyngve\": \"lyngv\",\n  \"lynsnart\": \"lynsnart\",\n  \"lys\": \"lys\",\n  \"lysaker\": \"lysak\",\n  \"lysast\": \"lys\",\n  \"lyse\": \"lys\",\n  \"lysende\": \"lys\",\n  \"lysene\": \"lys\",\n  \"lyser\": \"lys\",\n  \"lysere\": \"lyser\",\n  \"lysest\": \"lysest\",\n  \"lyset\": \"lys\",\n  \"lysingsblad\": \"lysingsblad\",\n  \"lyskryss\": \"lyskryss\",\n  \"lysner\": \"lysn\",\n  \"lyst\": \"lyst\",\n  \"lyste\": \"lyst\",\n  \"lysten\": \"lyst\",\n  \"lyster\": \"lyst\",\n  \"lystig\": \"lyst\",\n  \"lystrer\": \"lystr\",\n  \"lyt\": \"lyt\",\n  \"lyte\": \"lyt\",\n  \"lytt\": \"lytt\",\n  \"lytte\": \"lytt\",\n  \"lytter\": \"lytt\",\n  \"lyttet\": \"lytt\",\n  \"lyve\": \"lyv\",\n  \"lyver\": \"lyv\",\n  \"lå\": \"lå\",\n  \"låg\": \"låg\",\n  \"lågare\": \"lågar\",\n  \"lågaste\": \"lågast\",\n  \"låge\": \"låg\",\n  \"lågen\": \"låg\",\n  \"lågt\": \"lågt\",\n  \"lån\": \"lån\",\n  \"låna\": \"lån\",\n  \"lånast\": \"lån\",\n  \"låne\": \"lån\",\n  \"lånebevis\": \"lånebevis\",\n  \"lånefinansieringen\": \"lånefinansiering\",\n  \"låneforhold\": \"låneforhold\",\n  \"lånegarantier\": \"lånegaranti\",\n  \"låneinnskot\": \"låneinnskot\",\n  \"låneinnskota\": \"låneinnskot\",\n  \"låneinstitusjonar\": \"låneinstitusjon\",\n  \"lånekapital\": \"lånekapital\",\n  \"lånemarkedet\": \"lånemarked\",\n  \"låneopptak\": \"låneopptak\",\n  \"låneopptaka\": \"låneopptak\",\n  \"låner\": \"lån\",\n  \"lånes\": \"lån\",\n  \"lånet\": \"lån\",\n  \"låneterminar\": \"lånetermin\",\n  \"lånetidspunktet\": \"lånetidspunkt\",\n  \"låneutmåling\": \"låneutmåling\",\n  \"låneutmålinga\": \"låneutmåling\",\n  \"lånevilkårene\": \"lånevilkår\",\n  \"långjevarar\": \"långjevar\",\n  \"lånt\": \"lånt\",\n  \"låntakar\": \"låntak\",\n  \"lånte\": \"lånt\",\n  \"lår\": \"lår\",\n  \"lårbenet\": \"lårben\",\n  \"lårene\": \"lår\",\n  \"låsen\": \"lås\",\n  \"låser\": \"lås\",\n  \"låst\": \"låst\",\n  \"lær\": \"lær\",\n  \"lærdom\": \"lærdom\",\n  \"lære\": \"lær\",\n  \"lærer\": \"lær\",\n  \"læres\": \"lær\",\n  \"lært\": \"lært\",\n  \"lærte\": \"lært\",\n  \"læsø\": \"læsø\",\n  \"lød\": \"lød\",\n  \"løfte\": \"løft\",\n  \"løfter\": \"løft\",\n  \"løftet\": \"løft\",\n  \"løgn\": \"løgn\",\n  \"løgnen\": \"løgn\",\n  \"løgnene\": \"løgn\",\n  \"løgner\": \"løgn\",\n  \"løkkeberg\": \"løkkeberg\",\n  \"løkker\": \"løkk\",\n  \"løne\": \"løn\",\n  \"lønn\": \"lønn\",\n  \"lønnen\": \"lønn\",\n  \"lønninger\": \"lønning\",\n  \"lønns\": \"lønn\",\n  \"lønnsbegrep\": \"lønnsbegrep\",\n  \"lønnsbegrepet\": \"lønnsbegrep\",\n  \"lønnsbeskatning\": \"lønnsbeskatning\",\n  \"lønnsbrøk\": \"lønnsbrøk\",\n  \"lønnsendring\": \"lønnsendring\",\n  \"lønnsendringer\": \"lønnsendring\",\n  \"lønnsevnen\": \"lønnsevn\",\n  \"lønnsfordelingen\": \"lønnsfordeling\",\n  \"lønnsforhandlinger\": \"lønnsforhandling\",\n  \"lønnsforholdene\": \"lønnsforhold\",\n  \"lønnsgrunnlag\": \"lønnsgrunnlag\",\n  \"lønnsgrunnlaget\": \"lønnsgrunnlag\",\n  \"lønnsgrupper\": \"lønnsgrupp\",\n  \"lønnsinntekt\": \"lønnsinntekt\",\n  \"lønnsintervall\": \"lønnsintervall\",\n  \"lønnsintervallene\": \"lønnsintervall\",\n  \"lønnsintervaller\": \"lønnsintervall\",\n  \"lønnskostnad\": \"lønnskostnad\",\n  \"lønnskostnader\": \"lønnskostnad\",\n  \"lønnsmottakeren\": \"lønnsmottaker\",\n  \"lønnsnivå\": \"lønnsnivå\",\n  \"lønnsnivåene\": \"lønnsnivå\",\n  \"lønnsnivåer\": \"lønnsnivå\",\n  \"lønnsnivået\": \"lønnsnivå\",\n  \"lønnsomhet\": \"lønnsom\",\n  \"lønnsomheten\": \"lønnsom\",\n  \"lønnsomt\": \"lønnsomt\",\n  \"lønnsoppgaver\": \"lønnsoppgav\",\n  \"lønnsstigning\": \"lønnsstigning\",\n  \"lønnstaker\": \"lønnstak\",\n  \"lønnstakere\": \"lønnstaker\",\n  \"lønnstakerne\": \"lønnstakern\",\n  \"lønnstillegg\": \"lønnstillegg\",\n  \"lønnsutbetalinger\": \"lønnsutbetaling\",\n  \"lønnsutvikling\": \"lønnsutvikling\",\n  \"lønnsutviklingen\": \"lønnsutvikling\",\n  \"lønnsvekst\": \"lønnsvekst\",\n  \"lønnsveksten\": \"lønnsvekst\",\n  \"lønnsøkning\": \"lønnsøkning\",\n  \"lønnsøkningen\": \"lønnsøkning\",\n  \"lønnsøkninger\": \"lønnsøkning\",\n  \"lønsam\": \"lønsam\",\n  \"lønsame\": \"lønsam\",\n  \"lønsamt\": \"lønsamt\",\n  \"lønsemd\": \"lønsemd\",\n  \"lønte\": \"lønt\",\n  \"løp\": \"løp\",\n  \"løpe\": \"løp\",\n  \"løpefart\": \"løpefart\",\n  \"løpende\": \"løp\",\n  \"løper\": \"løp\",\n  \"løperen\": \"løper\",\n  \"løpet\": \"løp\",\n  \"løpetid\": \"løpetid\",\n  \"løpetiden\": \"løpetid\",\n  \"løpt\": \"løpt\",\n  \"lørenskogområdet\": \"lørenskogområd\",\n  \"løs\": \"løs\",\n  \"løsbart\": \"løsbart\",\n  \"løse\": \"løs\",\n  \"løselig\": \"løs\",\n  \"løsepenger\": \"løsepeng\",\n  \"løser\": \"løs\",\n  \"løses\": \"løs\",\n  \"løsgods\": \"løsgod\",\n  \"løsne\": \"løsn\",\n  \"løsner\": \"løsn\",\n  \"løsning\": \"løsning\",\n  \"løsningen\": \"løsning\",\n  \"løsningene\": \"løsning\",\n  \"løsninger\": \"løsning\",\n  \"løsningers\": \"løsning\",\n  \"løst\": \"løst\",\n  \"løv\": \"løv\",\n  \"løvverket\": \"løvverk\",\n  \"løysast\": \"løys\",\n  \"løyse\": \"løys\",\n  \"løysing\": \"løysing\",\n  \"løysinga\": \"løysing\",\n  \"løysingane\": \"løysing\",\n  \"løysingar\": \"løysing\",\n  \"løysingskravet\": \"løysingskrav\",\n  \"løysingsrett\": \"løysingsrett\",\n  \"løysingsrettar\": \"løysingsrett\",\n  \"løysingsretten\": \"løysingsrett\",\n  \"løysingsrettslova\": \"løysingsrett\",\n  \"løysingssummen\": \"løysingssumm\",\n  \"løysingsummen\": \"løysingsumm\",\n  \"løyst\": \"løyst\",\n  \"løyste\": \"løyst\",\n  \"løyvde\": \"løyvd\",\n  \"løyve\": \"løyv\",\n  \"løyvet\": \"løyv\",\n  \"løyvinga\": \"løyving\",\n  \"m\": \"m\",\n  \"madslien\": \"madsli\",\n  \"maersk\": \"maersk\",\n  \"magemålet\": \"magemål\",\n  \"mager\": \"mag\",\n  \"magi\": \"magi\",\n  \"magisk\": \"magisk\",\n  \"magiske\": \"magisk\",\n  \"magne\": \"magn\",\n  \"magnor\": \"magnor\",\n  \"magnus\": \"magnus\",\n  \"mai\": \"mai\",\n  \"makeløs\": \"makeløs\",\n  \"maken\": \"mak\",\n  \"makeskifte\": \"makeskift\",\n  \"makrobaserte\": \"makrobaser\",\n  \"makroøkonomiske\": \"makroøkonomisk\",\n  \"maksimal\": \"maksimal\",\n  \"maksimale\": \"maksimal\",\n  \"maksimalgrense\": \"maksimalgrens\",\n  \"maksimalgrensen\": \"maksimalgrens\",\n  \"maksimalgrenser\": \"maksimalgrens\",\n  \"maksimalpris\": \"maksimalpris\",\n  \"maksimalprisane\": \"maksimalpris\",\n  \"maksimalprisar\": \"maksimalpris\",\n  \"maksimalprisen\": \"maksimalpris\",\n  \"maksimalprisregulering\": \"maksimalprisregulering\",\n  \"maksimalprisreguleringa\": \"maksimalprisregulering\",\n  \"maksimalsatsene\": \"maksimalsats\",\n  \"maksimalsatser\": \"maksimalsats\",\n  \"maksimalt\": \"maksimalt\",\n  \"maksimalytelser\": \"maksimalyt\",\n  \"maksimere\": \"maksimer\",\n  \"maksimum\": \"maksimum\",\n  \"makt\": \"makt\",\n  \"makta\": \"makt\",\n  \"maktar\": \"makt\",\n  \"maktene\": \"makt\",\n  \"makter\": \"makt\",\n  \"maktmisbruk\": \"maktmisbruk\",\n  \"mal\": \"mal\",\n  \"malaren\": \"malar\",\n  \"male\": \"mal\",\n  \"malende\": \"mal\",\n  \"maler\": \"mal\",\n  \"mallmen\": \"mallm\",\n  \"malm\": \"malm\",\n  \"malstrøm\": \"malstrøm\",\n  \"malt\": \"malt\",\n  \"man\": \"man\",\n  \"mandat\": \"mandat\",\n  \"mandatet\": \"mandat\",\n  \"mandatets\": \"mandat\",\n  \"manen\": \"man\",\n  \"mange\": \"mang\",\n  \"mangehodete\": \"mangehodet\",\n  \"mangel\": \"mangel\",\n  \"mangelen\": \"mangel\",\n  \"mangelfull\": \"mangelfull\",\n  \"mangelfulle\": \"mangelfull\",\n  \"mangelskrav\": \"mangelskrav\",\n  \"mangelskrava\": \"mangelskrav\",\n  \"mangfold\": \"mangfold\",\n  \"manglande\": \"mangl\",\n  \"manglane\": \"mangl\",\n  \"manglar\": \"mangl\",\n  \"manglende\": \"mangl\",\n  \"mangler\": \"mangl\",\n  \"manglet\": \"mangl\",\n  \"mangt\": \"mangt\",\n  \"manken\": \"mank\",\n  \"mann\": \"mann\",\n  \"mannefall\": \"mannefall\",\n  \"mannen\": \"mann\",\n  \"mannfolkgæern\": \"mannfolkgæern\",\n  \"manngard\": \"manngard\",\n  \"manngarden\": \"manngard\",\n  \"mannlig\": \"mann\",\n  \"mannlige\": \"mann\",\n  \"manns\": \"mann\",\n  \"mannskap\": \"mannskap\",\n  \"mannvonde\": \"mannvond\",\n  \"mao\": \"mao\",\n  \"mara\": \"mar\",\n  \"marburg\": \"marburg\",\n  \"margareta\": \"margaret\",\n  \"margen\": \"marg\",\n  \"marginale\": \"marginal\",\n  \"marginalsatsen\": \"marginalsats\",\n  \"marginalskatt\": \"marginalskatt\",\n  \"marginalskatten\": \"marginalskatt\",\n  \"marginalskatteprosentene\": \"marginalskatteprosent\",\n  \"marginalskattesatsen\": \"marginalskattesats\",\n  \"marginalt\": \"marginalt\",\n  \"maritim\": \"maritim\",\n  \"maritime\": \"maritim\",\n  \"mark\": \"mark\",\n  \"marked\": \"marked\",\n  \"markedene\": \"marked\",\n  \"markeder\": \"marked\",\n  \"markedet\": \"marked\",\n  \"markedets\": \"marked\",\n  \"markeds\": \"marked\",\n  \"markedsadgang\": \"markedsadgang\",\n  \"markedsadgangen\": \"markedsadgang\",\n  \"markedsaktørene\": \"markedsaktør\",\n  \"markedsaktører\": \"markedsaktør\",\n  \"markedsandel\": \"markedsandel\",\n  \"markedsandeler\": \"markedsandel\",\n  \"markedsavkastning\": \"markedsavkastning\",\n  \"markedsdeltaker\": \"markedsdeltak\",\n  \"markedsdominert\": \"markedsdominer\",\n  \"markedsføring\": \"markedsføring\",\n  \"markedsinndeks\": \"markedsinndeks\",\n  \"markedsmakt\": \"markedsmakt\",\n  \"markedsmekanismer\": \"markedsmekanism\",\n  \"markedsmessig\": \"markedsmess\",\n  \"markedsmessige\": \"markedsmess\",\n  \"markedsnærhet\": \"markedsnær\",\n  \"markedsnærheten\": \"markedsnær\",\n  \"markedsnært\": \"markedsnært\",\n  \"markedsområde\": \"markedsområd\",\n  \"markedsområder\": \"markedsområd\",\n  \"markedsposisjon\": \"markedsposisjon\",\n  \"markedsregulering\": \"markedsregulering\",\n  \"markedsrente\": \"markedsrent\",\n  \"markedsrisiko\": \"markedsrisiko\",\n  \"markedssituasjonen\": \"markedssituasjon\",\n  \"markedstilgang\": \"markedstilgang\",\n  \"markedstilpasning\": \"markedstilpasning\",\n  \"markedstilpassede\": \"markedstilpass\",\n  \"markedsutviklingen\": \"markedsutvikling\",\n  \"markedsverdien\": \"markedsverdi\",\n  \"markedsverdiene\": \"markedsverdi\",\n  \"markedsverdiprinsippet\": \"markedsverdiprinsipp\",\n  \"markedsvilkår\": \"markedsvilkår\",\n  \"marken\": \"mark\",\n  \"markene\": \"mark\",\n  \"markerast\": \"marker\",\n  \"markere\": \"marker\",\n  \"markering\": \"markering\",\n  \"markert\": \"marker\",\n  \"market\": \"mark\",\n  \"marknad\": \"marknad\",\n  \"marknaden\": \"marknad\",\n  \"marknadsendringar\": \"marknadsendring\",\n  \"marknadspris\": \"marknadspris\",\n  \"marknadsprisane\": \"marknadspris\",\n  \"marknadsprisar\": \"marknadspris\",\n  \"marknadsprisen\": \"marknadspris\",\n  \"marknadstilhøva\": \"marknadstilhøv\",\n  \"marknadstilhøve\": \"marknadstilhøv\",\n  \"marknadsutviklinga\": \"marknadsutvikling\",\n  \"marknadsverdien\": \"marknadsverdi\",\n  \"markspiste\": \"markspist\",\n  \"markstukne\": \"markstukn\",\n  \"mars\": \"mar\",\n  \"martin\": \"martin\",\n  \"mase\": \"mas\",\n  \"masende\": \"mas\",\n  \"maser\": \"mas\",\n  \"maskene\": \"mask\",\n  \"masker\": \"mask\",\n  \"maskeradene\": \"maskerad\",\n  \"maskin\": \"maskin\",\n  \"maskiner\": \"maskin\",\n  \"maskinlesbar\": \"maskinlesb\",\n  \"maskinstasjonar\": \"maskinstasjon\",\n  \"maskinstopp\": \"maskinstopp\",\n  \"massetransporter\": \"massetransport\",\n  \"mastemyr\": \"mastemyr\",\n  \"masten\": \"mast\",\n  \"mat\": \"mat\",\n  \"matbordet\": \"matbord\",\n  \"maten\": \"mat\",\n  \"mater\": \"mat\",\n  \"materialane\": \"material\",\n  \"materialar\": \"material\",\n  \"materiale\": \"material\",\n  \"materialet\": \"material\",\n  \"materialiserer\": \"materialiser\",\n  \"materiell\": \"materiell\",\n  \"matjord\": \"matjord\",\n  \"matlyst\": \"matlyst\",\n  \"matmor\": \"matmor\",\n  \"matrestene\": \"matrest\",\n  \"matsekken\": \"matsekk\",\n  \"matvarer\": \"matvar\",\n  \"maurtue\": \"maurtu\",\n  \"mauseth\": \"mauseth\",\n  \"mave\": \"mav\",\n  \"mavemålet\": \"mavemål\",\n  \"maven\": \"mav\",\n  \"med\": \"med\",\n  \"medan\": \"medan\",\n  \"meddele\": \"meddel\",\n  \"medeier\": \"medei\",\n  \"medeigar\": \"med\",\n  \"medeigarar\": \"medeigar\",\n  \"medføre\": \"medfør\",\n  \"medfører\": \"medfør\",\n  \"medført\": \"medført\",\n  \"medgift\": \"medgift\",\n  \"medgått\": \"medgått\",\n  \"medhald\": \"medhald\",\n  \"medhjelpar\": \"medhjelp\",\n  \"medhjelparen\": \"medhjelpar\",\n  \"medhjelper\": \"medhjelp\",\n  \"medhold\": \"medhold\",\n  \"medkontrahent\": \"medkontrahent\",\n  \"medkontrahentar\": \"medkontrahent\",\n  \"medkontrahenten\": \"medkontrahent\",\n  \"medkontrahentens\": \"medkontrahent\",\n  \"medlem\": \"medlem\",\n  \"medlemene\": \"medlem\",\n  \"medlemer\": \"medlem\",\n  \"medlemmarna\": \"medlemmarn\",\n  \"medlemmarnas\": \"medlemmarn\",\n  \"medlemmen\": \"medlemm\",\n  \"medlemmene\": \"medlemm\",\n  \"medlemmenes\": \"medlemm\",\n  \"medlemmer\": \"medlemm\",\n  \"medlemmers\": \"medlemm\",\n  \"medlemmet\": \"medlemm\",\n  \"medlemmets\": \"medlemm\",\n  \"medlems\": \"medlem\",\n  \"medlemsaktiviteten\": \"medlemsaktivitet\",\n  \"medlemsblad\": \"medlemsblad\",\n  \"medlemsdemokrati\": \"medlemsdemokrati\",\n  \"medlemsfordel\": \"medlemsfordel\",\n  \"medlemsfordelane\": \"medlemsfordel\",\n  \"medlemsfordelar\": \"medlemsfordel\",\n  \"medlemsforeiningar\": \"medlemsforeining\",\n  \"medlemsføretak\": \"medlemsføretak\",\n  \"medlemsgenerasjonar\": \"medlemsgenerasjon\",\n  \"medlemsgrupper\": \"medlemsgrupp\",\n  \"medlemsinteresser\": \"medlemsinteress\",\n  \"medlemskap\": \"medlemskap\",\n  \"medlemskapen\": \"medlemskap\",\n  \"medlemskapet\": \"medlemskap\",\n  \"medlemskapsperioden\": \"medlemskapsperiod\",\n  \"medlemskarrieren\": \"medlemskarrier\",\n  \"medlemskommunene\": \"medlemskommun\",\n  \"medlemskontroll\": \"medlemskontroll\",\n  \"medlemskontrollen\": \"medlemskontroll\",\n  \"medlemskontrollerte\": \"medlemskontroller\",\n  \"medlemskort\": \"medlemskort\",\n  \"medlemslag\": \"medlemslag\",\n  \"medlemslaga\": \"medlemslag\",\n  \"medlemsland\": \"medlemsland\",\n  \"medlemslands\": \"medlemsland\",\n  \"medlemsorganisasjon\": \"medlemsorganisasjon\",\n  \"medlemsorganisasjonar\": \"medlemsorganisasjon\",\n  \"medlemsskap\": \"medlemsskap\",\n  \"medlemsskapsreglene\": \"medlemsskapsregl\",\n  \"medlemsstatene\": \"medlemsstat\",\n  \"medlemsstatenes\": \"medlemsstat\",\n  \"medlemsstater\": \"medlemsstat\",\n  \"medlemsstokken\": \"medlemsstokk\",\n  \"medlemsstyret\": \"medlemsstyr\",\n  \"medlemsstyring\": \"medlemsstyring\",\n  \"medlemsstyrte\": \"medlemsstyrt\",\n  \"medlemstal\": \"medlemstal\",\n  \"medlemstallet\": \"medlemstall\",\n  \"medlemstenester\": \"medlemstenest\",\n  \"medlemstid\": \"medlemstid\",\n  \"medlemstiden\": \"medlemstid\",\n  \"medmindre\": \"medmindr\",\n  \"medregne\": \"medregn\",\n  \"medregnet\": \"medregn\",\n  \"medregning\": \"medregning\",\n  \"medregningen\": \"medregning\",\n  \"medregningsadgangen\": \"medregningsadgang\",\n  \"medregningsreglene\": \"medregningsregl\",\n  \"medrekna\": \"medrekn\",\n  \"medråderett\": \"medråderett\",\n  \"medråderetten\": \"medråderett\",\n  \"medverka\": \"medverk\",\n  \"medverkande\": \"medverk\",\n  \"medverkar\": \"medverk\",\n  \"medverkaransvaret\": \"medverkaransvar\",\n  \"medverke\": \"medverk\",\n  \"medverknad\": \"medverknad\",\n  \"medverknaden\": \"medverknad\",\n  \"medvind\": \"medvind\",\n  \"medvirke\": \"medvirk\",\n  \"medvirkning\": \"medvirkning\",\n  \"meg\": \"meg\",\n  \"meget\": \"meg\",\n  \"megleren\": \"megler\",\n  \"mehr\": \"mehr\",\n  \"meieri\": \"meieri\",\n  \"meine\": \"mein\",\n  \"meiner\": \"mein\",\n  \"meininga\": \"meining\",\n  \"meiningane\": \"meining\",\n  \"meiningar\": \"meining\",\n  \"meiningsinnhald\": \"meiningsinnhald\",\n  \"meint\": \"meint\",\n  \"meinte\": \"meint\",\n  \"meir\": \"meir\",\n  \"meirinntekter\": \"meirinntekt\",\n  \"meirkostnader\": \"meirkostnad\",\n  \"meirverdiavgift\": \"meirverdiavgift\",\n  \"meirverdiavgifta\": \"meirverdiavgift\",\n  \"mekanisk\": \"mekanisk\",\n  \"mekanisme\": \"mekanism\",\n  \"meklartenester\": \"meklartenest\",\n  \"mektig\": \"mekt\",\n  \"mektige\": \"mekt\",\n  \"mektigere\": \"mektiger\",\n  \"mektigste\": \"mektigst\",\n  \"meld\": \"meld\",\n  \"meldast\": \"meld\",\n  \"melde\": \"meld\",\n  \"melder\": \"meld\",\n  \"meldes\": \"meld\",\n  \"melding\": \"melding\",\n  \"meldinga\": \"melding\",\n  \"meldingane\": \"melding\",\n  \"meldingar\": \"melding\",\n  \"meldingen\": \"melding\",\n  \"meldingene\": \"melding\",\n  \"meldinger\": \"melding\",\n  \"meldt\": \"meld\",\n  \"melk\": \"melk\",\n  \"melket\": \"melk\",\n  \"mellan\": \"mellan\",\n  \"mellom\": \"mellom\",\n  \"mellombels\": \"mellombel\",\n  \"mellomkomst\": \"mellomkomst\",\n  \"mellomlagring\": \"mellomlagring\",\n  \"mellomlang\": \"mellomlang\",\n  \"mellomlange\": \"mellomlang\",\n  \"mellomlangsiktige\": \"mellomlangsikt\",\n  \"mellomlangt\": \"mellomlangt\",\n  \"mellomliggjande\": \"mellomliggj\",\n  \"mellomløsninger\": \"mellomløsning\",\n  \"mellomløysing\": \"mellomløysing\",\n  \"mellommann\": \"mellommann\",\n  \"mellommenn\": \"mellommenn\",\n  \"mellomnivå\": \"mellomnivå\",\n  \"mellomperiode\": \"mellomperiod\",\n  \"mellomrekning\": \"mellomrekning\",\n  \"mellomrekninga\": \"mellomrekning\",\n  \"mellomrekningsmidlane\": \"mellomrekningsmidl\",\n  \"mellomrekningsordninga\": \"mellomrekningsordning\",\n  \"mellomrom\": \"mellomrom\",\n  \"mellomstasjon\": \"mellomstasjon\",\n  \"mellomstasjonen\": \"mellomstasjon\",\n  \"mellomstore\": \"mellomstor\",\n  \"mellomtida\": \"mellomtid\",\n  \"mellomtiden\": \"mellomtid\",\n  \"mellomting\": \"mellomting\",\n  \"mellomveg\": \"mellomveg\",\n  \"melz\": \"melz\",\n  \"men\": \"men\",\n  \"mene\": \"men\",\n  \"mener\": \"men\",\n  \"menes\": \"men\",\n  \"mengd\": \"mengd\",\n  \"mengda\": \"mengd\",\n  \"mengde\": \"mengd\",\n  \"mengden\": \"mengd\",\n  \"mengdene\": \"mengd\",\n  \"mengder\": \"mengd\",\n  \"menger\": \"meng\",\n  \"mening\": \"mening\",\n  \"meningen\": \"mening\",\n  \"menja\": \"menj\",\n  \"menn\": \"menn\",\n  \"mennene\": \"menn\",\n  \"menneske\": \"mennesk\",\n  \"menneskebarn\": \"menneskebarn\",\n  \"menneskebarna\": \"menneskebarn\",\n  \"menneskehår\": \"menneskehår\",\n  \"menneskekryp\": \"menneskekryp\",\n  \"menneskelignende\": \"menneskelign\",\n  \"menneskeliv\": \"menneskeliv\",\n  \"menneskene\": \"mennesk\",\n  \"menneskenes\": \"mennesk\",\n  \"menneskepar\": \"menneskep\",\n  \"mennesker\": \"mennesk\",\n  \"menneskeslekt\": \"menneskeslekt\",\n  \"menneskeslekten\": \"menneskeslekt\",\n  \"menns\": \"menn\",\n  \"mens\": \"men\",\n  \"ment\": \"ment\",\n  \"mente\": \"ment\",\n  \"mer\": \"mer\",\n  \"merarbeid\": \"merarbeid\",\n  \"meravkastningen\": \"meravkastning\",\n  \"merbelastning\": \"merbelastning\",\n  \"merbelastningene\": \"merbelastning\",\n  \"merchanisms\": \"merchanism\",\n  \"merforpliktelsen\": \"merforplikt\",\n  \"merinnskudd\": \"merinnskudd\",\n  \"merk\": \"merk\",\n  \"merkbar\": \"merkb\",\n  \"merke\": \"merk\",\n  \"merkelig\": \"merk\",\n  \"merkelige\": \"merk\",\n  \"merkeligste\": \"merkeligst\",\n  \"merkene\": \"merk\",\n  \"merker\": \"merk\",\n  \"merkes\": \"merk\",\n  \"merkesystemet\": \"merkesystem\",\n  \"merket\": \"merk\",\n  \"merketjenesten\": \"merketjenest\",\n  \"merkevarer\": \"merkevar\",\n  \"merking\": \"merking\",\n  \"merknad\": \"merknad\",\n  \"merknadene\": \"merknad\",\n  \"merknader\": \"merknad\",\n  \"merkostnader\": \"merkostnad\",\n  \"merksam\": \"merksam\",\n  \"merksame\": \"merksam\",\n  \"merkverdig\": \"merkverd\",\n  \"merutgiftene\": \"merutgift\",\n  \"messing\": \"messing\",\n  \"mest\": \"mest\",\n  \"mesta\": \"mest\",\n  \"meste\": \"mest\",\n  \"mesteparten\": \"mestepart\",\n  \"mester\": \"mest\",\n  \"mestersmed\": \"mestersmed\",\n  \"mestersmeder\": \"mestersmed\",\n  \"mestertyv\": \"mestertyv\",\n  \"mestrer\": \"mestr\",\n  \"mestret\": \"mestr\",\n  \"metall\": \"metall\",\n  \"metaller\": \"metall\",\n  \"metallklumpen\": \"metallklump\",\n  \"metallproduksjon\": \"metallproduksjon\",\n  \"metallprodukter\": \"metallprodukt\",\n  \"meter\": \"met\",\n  \"metergrunnen\": \"metergrunn\",\n  \"meters\": \"met\",\n  \"metersbeltet\": \"metersbelt\",\n  \"metode\": \"metod\",\n  \"metoden\": \"metod\",\n  \"metoder\": \"metod\",\n  \"metodisk\": \"metodisk\",\n  \"mette\": \"mett\",\n  \"mfl\": \"mfl\",\n  \"mht\": \"mht\",\n  \"michael\": \"michael\",\n  \"michaels\": \"michael\",\n  \"middagstid\": \"middagstid\",\n  \"middel\": \"middel\",\n  \"middelklassen\": \"middelklass\",\n  \"middels\": \"middel\",\n  \"midgard\": \"midgard\",\n  \"midgards\": \"midgard\",\n  \"midgardsormen\": \"midgardsorm\",\n  \"midgardsormon\": \"midgardsormon\",\n  \"midlane\": \"midl\",\n  \"midlar\": \"midl\",\n  \"midlene\": \"midl\",\n  \"midlenes\": \"midl\",\n  \"midler\": \"midl\",\n  \"midlere\": \"midler\",\n  \"midlertidig\": \"midlertid\",\n  \"midlertidige\": \"midlertid\",\n  \"midnattstid\": \"midnattstid\",\n  \"midt\": \"midt\",\n  \"midten\": \"midt\",\n  \"mil\": \"mil\",\n  \"milano\": \"milano\",\n  \"mild\": \"mild\",\n  \"mildare\": \"mildar\",\n  \"militær\": \"militær\",\n  \"militære\": \"militær\",\n  \"militærteneste\": \"militærtenest\",\n  \"militærtjeneste\": \"militærtjenest\",\n  \"miljø\": \"miljø\",\n  \"miljøavdelingen\": \"miljøavdeling\",\n  \"miljøbelastende\": \"miljøbelast\",\n  \"miljøbelastning\": \"miljøbelastning\",\n  \"miljøbelastningen\": \"miljøbelastning\",\n  \"miljøbelastninger\": \"miljøbelastning\",\n  \"miljødepartementet\": \"miljødepartement\",\n  \"miljødifferensierte\": \"miljødifferensier\",\n  \"miljøeffekter\": \"miljøeffekt\",\n  \"miljøet\": \"miljø\",\n  \"miljøforbedring\": \"miljøforbedring\",\n  \"miljøforbedringer\": \"miljøforbedring\",\n  \"miljøforhold\": \"miljøforhold\",\n  \"miljøforstyrrende\": \"miljøforstyrr\",\n  \"miljøhensyn\": \"miljøhensyn\",\n  \"miljøkonflikter\": \"miljøkonflikt\",\n  \"miljøkostnadene\": \"miljøkostnad\",\n  \"miljøkostnader\": \"miljøkostnad\",\n  \"miljøkrav\": \"miljøkrav\",\n  \"miljøkriteriene\": \"miljøkriteri\",\n  \"miljømessig\": \"miljømess\",\n  \"miljømessige\": \"miljømess\",\n  \"miljøpolitikk\": \"miljøpolitikk\",\n  \"miljøpolitikkens\": \"miljøpolitikk\",\n  \"miljøpolitisk\": \"miljøpolitisk\",\n  \"miljøpolitiske\": \"miljøpolitisk\",\n  \"miljøprioriteringstiltak\": \"miljøprioriteringstiltak\",\n  \"miljøproblemene\": \"miljøproblem\",\n  \"miljøproblemer\": \"miljøproblem\",\n  \"miljørevisjon\": \"miljørevisjon\",\n  \"miljøsikkerhet\": \"miljøsikker\",\n  \"miljøspørsmål\": \"miljøspørsmål\",\n  \"miljøspørsmåla\": \"miljøspørsmål\",\n  \"miljøulemper\": \"miljøulemp\",\n  \"miljøvennlig\": \"miljøvenn\",\n  \"miljøvennlige\": \"miljøvenn\",\n  \"miljøvernavdeling\": \"miljøvernavdeling\",\n  \"miljøverndepartementet\": \"miljøverndepartement\",\n  \"miljøverndepartementets\": \"miljøverndepartement\",\n  \"mill\": \"mill\",\n  \"milliarder\": \"milliard\",\n  \"million\": \"million\",\n  \"millionar\": \"million\",\n  \"millioner\": \"million\",\n  \"mime\": \"mim\",\n  \"mimes\": \"mim\",\n  \"min\": \"min\",\n  \"mindre\": \"mindr\",\n  \"mindretal\": \"mindretal\",\n  \"mindretalet\": \"mindretal\",\n  \"mindretall\": \"mindretall\",\n  \"mindretallet\": \"mindretall\",\n  \"mindretallets\": \"mindretall\",\n  \"mindretalsvern\": \"mindretalsvern\",\n  \"mindretalsvernet\": \"mindretalsvern\",\n  \"mindreårig\": \"mindreår\",\n  \"mine\": \"min\",\n  \"mineralprodukter\": \"mineralprodukt\",\n  \"minimal\": \"minimal\",\n  \"minimale\": \"minimal\",\n  \"minimalt\": \"minimalt\",\n  \"minimerer\": \"minimer\",\n  \"minimert\": \"minimer\",\n  \"minimum\": \"minimum\",\n  \"minimumskrav\": \"minimumskrav\",\n  \"ministeriet\": \"ministeri\",\n  \"ministerio\": \"ministerio\",\n  \"minka\": \"mink\",\n  \"minkar\": \"mink\",\n  \"minke\": \"mink\",\n  \"minker\": \"mink\",\n  \"minket\": \"mink\",\n  \"minnast\": \"minn\",\n  \"minne\": \"minn\",\n  \"minner\": \"minn\",\n  \"minnet\": \"minn\",\n  \"minske\": \"minsk\",\n  \"minsker\": \"minsk\",\n  \"minskes\": \"minsk\",\n  \"minst\": \"minst\",\n  \"minste\": \"minst\",\n  \"minstealder\": \"minsteald\",\n  \"minsteavkastning\": \"minsteavkastning\",\n  \"minstefradraget\": \"minstefradrag\",\n  \"minstefrist\": \"minstefrist\",\n  \"minstegrad\": \"minstegrad\",\n  \"minstegrense\": \"minstegrens\",\n  \"minstegrensen\": \"minstegrens\",\n  \"minstegrenser\": \"minstegrens\",\n  \"minstekapital\": \"minstekapital\",\n  \"minstekapitalen\": \"minstekapital\",\n  \"minstekrav\": \"minstekrav\",\n  \"minstekravene\": \"minstekrav\",\n  \"minstekravet\": \"minstekrav\",\n  \"minstelønn\": \"minstelønn\",\n  \"minstenivå\": \"minstenivå\",\n  \"minstenivåer\": \"minstenivå\",\n  \"minstenivået\": \"minstenivå\",\n  \"minstepensjon\": \"minstepensjon\",\n  \"minstepensjonen\": \"minstepensjon\",\n  \"minstesikring\": \"minstesikring\",\n  \"minstetal\": \"minstetal\",\n  \"minstetid\": \"minstetid\",\n  \"minstetida\": \"minstetid\",\n  \"minusgrader\": \"minusgrad\",\n  \"minutter\": \"minutt\",\n  \"misbruk\": \"misbruk\",\n  \"misbrukes\": \"misbruk\",\n  \"misbruksregel\": \"misbruksregel\",\n  \"misbruksregelen\": \"misbruksregel\",\n  \"misbruksreglane\": \"misbruksregl\",\n  \"misbruksreglar\": \"misbruksregl\",\n  \"misbrukt\": \"misbrukt\",\n  \"misbrukte\": \"misbrukt\",\n  \"misforståelse\": \"misforstå\",\n  \"misforståelser\": \"misforstå\",\n  \"mishald\": \"mishald\",\n  \"mishaldande\": \"mishald\",\n  \"mishalde\": \"mishald\",\n  \"mishaldet\": \"mishald\",\n  \"mishaldne\": \"mishaldn\",\n  \"mishaldskrav\": \"mishaldskrav\",\n  \"mishaldssynspunkt\": \"mishaldssynspunkt\",\n  \"mishaldstilfella\": \"mishaldstilfell\",\n  \"mishaldstilfelle\": \"mishaldstilfell\",\n  \"mishaldsverknader\": \"mishaldsverknad\",\n  \"mishaldsvurderinga\": \"mishaldsvurdering\",\n  \"misheld\": \"misheld\",\n  \"mishøve\": \"mishøv\",\n  \"mislykkes\": \"mislykk\",\n  \"misnøgd\": \"misnøgd\",\n  \"misnøya\": \"misnøy\",\n  \"misnøye\": \"misnøy\",\n  \"misoppfattast\": \"misoppfatt\",\n  \"mista\": \"mist\",\n  \"mistanke\": \"mistank\",\n  \"mistar\": \"mist\",\n  \"miste\": \"mist\",\n  \"misteltein\": \"misteltein\",\n  \"mistelteinen\": \"misteltein\",\n  \"mister\": \"mist\",\n  \"mistet\": \"mist\",\n  \"mistro\": \"mistro\",\n  \"mistydingar\": \"mistyding\",\n  \"misunnelig\": \"misunn\",\n  \"misunner\": \"misunn\",\n  \"misvisande\": \"misvis\",\n  \"mitgleiderzahl\": \"mitgleiderzahl\",\n  \"mitglieder\": \"mitglied\",\n  \"mitt\": \"mitt\",\n  \"mittels\": \"mittel\",\n  \"mjaue\": \"mjaue\",\n  \"mjauende\": \"mjauend\",\n  \"mjauer\": \"mjauer\",\n  \"mjød\": \"mjød\",\n  \"mjøden\": \"mjød\",\n  \"mjølner\": \"mjøln\",\n  \"mjøndalen\": \"mjøndal\",\n  \"mobile\": \"mobil\",\n  \"mobilisering\": \"mobilisering\",\n  \"mobilitet\": \"mobilit\",\n  \"mobiliteten\": \"mobilitet\",\n  \"mode\": \"mod\",\n  \"modell\": \"modell\",\n  \"modellane\": \"modell\",\n  \"modellar\": \"modell\",\n  \"modellberegningene\": \"modellberegning\",\n  \"modellberegninger\": \"modellberegning\",\n  \"modellen\": \"modell\",\n  \"modellene\": \"modell\",\n  \"modeller\": \"modell\",\n  \"moden\": \"mod\",\n  \"moderat\": \"moderat\",\n  \"modereres\": \"moderer\",\n  \"moderne\": \"modern\",\n  \"modernisering\": \"modernisering\",\n  \"moderniseringsprosjekter\": \"moderniseringsprosjekt\",\n  \"modernisert\": \"moderniser\",\n  \"modgunn\": \"modgunn\",\n  \"modifikasjonar\": \"modifikasjon\",\n  \"modig\": \"mod\",\n  \"modige\": \"mod\",\n  \"modigste\": \"modigst\",\n  \"mogleg\": \"mog\",\n  \"moglege\": \"mog\",\n  \"mokkurkalve\": \"mokkurkalv\",\n  \"moland\": \"moland\",\n  \"molandutvalgets\": \"molandutvalg\",\n  \"moment\": \"moment\",\n  \"momenta\": \"moment\",\n  \"momenter\": \"moment\",\n  \"momsnummer\": \"momsnumm\",\n  \"momsnummerbaserte\": \"momsnummerbaser\",\n  \"mon\": \"mon\",\n  \"monner\": \"monn\",\n  \"monopol\": \"monopol\",\n  \"monopollignende\": \"monopollign\",\n  \"monster\": \"monst\",\n  \"monsteret\": \"monster\",\n  \"monstre\": \"monstr\",\n  \"mor\": \"mor\",\n  \"moralsk\": \"moralsk\",\n  \"mord\": \"mord\",\n  \"moren\": \"mor\",\n  \"morer\": \"mor\",\n  \"morgen\": \"morg\",\n  \"morgendugg\": \"morgendugg\",\n  \"morgenen\": \"morgen\",\n  \"morkne\": \"morkn\",\n  \"moro\": \"moro\",\n  \"morro\": \"morro\",\n  \"mors\": \"mor\",\n  \"morselskapet\": \"morselskap\",\n  \"morsom\": \"morsom\",\n  \"mortifikasjon\": \"mortifikasjon\",\n  \"mortifisere\": \"mortifiser\",\n  \"mose\": \"mos\",\n  \"mosegrodd\": \"mosegrodd\",\n  \"mosegrodde\": \"mosegrodd\",\n  \"mosjons\": \"mosjon\",\n  \"moss\": \"moss\",\n  \"mosseporten\": \"mosseport\",\n  \"mosseregionen\": \"mosseregion\",\n  \"mossevegen\": \"mosseveg\",\n  \"mot\": \"mot\",\n  \"motargument\": \"motargument\",\n  \"motargumenter\": \"motargument\",\n  \"motbydelige\": \"motbyd\",\n  \"motet\": \"mot\",\n  \"motiv\": \"motiv\",\n  \"motivasjonen\": \"motivasjon\",\n  \"motiver\": \"motiv\",\n  \"motivere\": \"motiver\",\n  \"motiveres\": \"motiver\",\n  \"motløs\": \"motløs\",\n  \"motmelding\": \"motmelding\",\n  \"motorveg\": \"motorveg\",\n  \"motorvegar\": \"motorveg\",\n  \"motorvegbru\": \"motorvegbru\",\n  \"motorveger\": \"motorveg\",\n  \"motsatt\": \"motsatt\",\n  \"motsatte\": \"motsatt\",\n  \"motsegn\": \"motsegn\",\n  \"motsegner\": \"motsegn\",\n  \"motset\": \"mots\",\n  \"motsetje\": \"motsetj\",\n  \"motsetnad\": \"motsetnad\",\n  \"motsetning\": \"motsetning\",\n  \"motsetningar\": \"motsetning\",\n  \"motsetninger\": \"motsetning\",\n  \"motsetningsforhold\": \"motsetningsforhold\",\n  \"motsetningsforholdet\": \"motsetningsforhold\",\n  \"motsett\": \"motsett\",\n  \"motsette\": \"motsett\",\n  \"motsi\": \"motsi\",\n  \"motstand\": \"motstand\",\n  \"motstanderen\": \"motstander\",\n  \"motstrid\": \"motstrid\",\n  \"motstridande\": \"motstrid\",\n  \"motstrøms\": \"motstrøm\",\n  \"motstykke\": \"motstykk\",\n  \"motstykket\": \"motstykk\",\n  \"motståande\": \"motstå\",\n  \"motsvarer\": \"motsvar\",\n  \"motsvares\": \"motsvar\",\n  \"motta\": \"mott\",\n  \"mottak\": \"mottak\",\n  \"mottakar\": \"mottak\",\n  \"mottakaren\": \"mottakar\",\n  \"mottaker\": \"mottak\",\n  \"mottakere\": \"mottaker\",\n  \"mottakerer\": \"mottaker\",\n  \"mottakerfylke\": \"mottakerfylk\",\n  \"mottakersted\": \"mottakersted\",\n  \"mottaksanlegg\": \"mottaksanlegg\",\n  \"mottaksfylke\": \"mottaksfylk\",\n  \"mottaksordninger\": \"mottaksordning\",\n  \"mottakssted\": \"mottakssted\",\n  \"mottar\": \"mott\",\n  \"mottatt\": \"mottatt\",\n  \"motteke\": \"mottek\",\n  \"motteken\": \"mottek\",\n  \"mottekne\": \"mottekn\",\n  \"mottiltak\": \"mottiltak\",\n  \"mottok\": \"mottok\",\n  \"motvekt\": \"motvekt\",\n  \"motverka\": \"motverk\",\n  \"motverke\": \"motverk\",\n  \"motvilje\": \"motvilj\",\n  \"motvirke\": \"motvirk\",\n  \"motvirkes\": \"motvirk\",\n  \"moum\": \"moum\",\n  \"mounted\": \"mounted\",\n  \"mrd\": \"mrd\",\n  \"mudret\": \"mudr\",\n  \"muldvarp\": \"muldvarp\",\n  \"mulig\": \"mul\",\n  \"mulige\": \"mul\",\n  \"muligens\": \"mul\",\n  \"muliggjør\": \"muliggjør\",\n  \"mulighet\": \"mul\",\n  \"muligheten\": \"mul\",\n  \"mulighetene\": \"mul\",\n  \"muligheter\": \"mul\",\n  \"mulighetsområde\": \"mulighetsområd\",\n  \"mulighetsområdet\": \"mulighetsområd\",\n  \"multipliser\": \"multiplis\",\n  \"multipliseres\": \"multipliser\",\n  \"mumlende\": \"muml\",\n  \"mumler\": \"muml\",\n  \"mumlig\": \"mum\",\n  \"munck\": \"munck\",\n  \"mundilfare\": \"mundilfar\",\n  \"munin\": \"munin\",\n  \"munn\": \"munn\",\n  \"munnen\": \"munn\",\n  \"munnet\": \"munn\",\n  \"munnfull\": \"munnfull\",\n  \"munnhell\": \"munnhell\",\n  \"munnvikene\": \"munnvik\",\n  \"muntre\": \"muntr\",\n  \"mur\": \"mur\",\n  \"muren\": \"mur\",\n  \"murene\": \"mur\",\n  \"murer\": \"mur\",\n  \"musejakt\": \"musejakt\",\n  \"musikk\": \"musikk\",\n  \"musklene\": \"muskl\",\n  \"muskler\": \"muskl\",\n  \"muspellsheim\": \"muspellsheim\",\n  \"muspellshæren\": \"muspellshær\",\n  \"muspellsønnene\": \"muspellsønn\",\n  \"mutt\": \"mutt\",\n  \"mutue\": \"mutu\",\n  \"mv\": \"mv\",\n  \"mye\": \"mye\",\n  \"mygg\": \"mygg\",\n  \"myke\": \"myk\",\n  \"mykere\": \"myker\",\n  \"mykje\": \"mykj\",\n  \"mykt\": \"mykt\",\n  \"mynde\": \"mynd\",\n  \"myndet\": \"mynd\",\n  \"myndige\": \"mynd\",\n  \"myndighet\": \"mynd\",\n  \"myndigheten\": \"mynd\",\n  \"myndighetene\": \"mynd\",\n  \"myndighetenes\": \"mynd\",\n  \"myndigheter\": \"mynd\",\n  \"myndigheters\": \"myndighet\",\n  \"myndighetsområde\": \"myndighetsområd\",\n  \"myndighetsutøvelse\": \"myndighetsutøv\",\n  \"myndighetsutøvelsen\": \"myndighetsutøv\",\n  \"myr\": \"myr\",\n  \"myrhull\": \"myrhull\",\n  \"myser\": \"mys\",\n  \"mysing\": \"mysing\",\n  \"må\": \"må\",\n  \"måkeskrik\": \"måkeskrik\",\n  \"mål\": \"mål\",\n  \"måla\": \"mål\",\n  \"målast\": \"mål\",\n  \"målbevisst\": \"målbevisst\",\n  \"måle\": \"mål\",\n  \"målene\": \"mål\",\n  \"måler\": \"mål\",\n  \"målet\": \"mål\",\n  \"måling\": \"måling\",\n  \"målkonflikter\": \"målkonflikt\",\n  \"målrettet\": \"målrett\",\n  \"målsatt\": \"målsatt\",\n  \"målsatte\": \"målsatt\",\n  \"målsetning\": \"målsetning\",\n  \"målsetningen\": \"målsetning\",\n  \"målsetninger\": \"målsetning\",\n  \"målsetting\": \"målsetting\",\n  \"målsettingen\": \"målsetting\",\n  \"målsettinger\": \"målsetting\",\n  \"målsikkerhet\": \"målsikker\",\n  \"målstørrelse\": \"målstørr\",\n  \"målt\": \"målt\",\n  \"måltid\": \"måltid\",\n  \"måltidet\": \"måltid\",\n  \"månad\": \"månad\",\n  \"månaden\": \"månad\",\n  \"månadene\": \"månad\",\n  \"månader\": \"månad\",\n  \"månaders\": \"månad\",\n  \"månadleg\": \"månad\",\n  \"månadlege\": \"månad\",\n  \"månadsvis\": \"månadsvis\",\n  \"måne\": \"mån\",\n  \"måned\": \"måned\",\n  \"månedene\": \"måned\",\n  \"måneder\": \"måned\",\n  \"månedlige\": \"måned\",\n  \"måneløs\": \"måneløs\",\n  \"månen\": \"mån\",\n  \"måper\": \"måp\",\n  \"måtar\": \"måt\",\n  \"måte\": \"måt\",\n  \"måtelig\": \"måt\",\n  \"måten\": \"måt\",\n  \"måtene\": \"måt\",\n  \"måter\": \"måt\",\n  \"måtta\": \"mått\",\n  \"måtte\": \"mått\",\n  \"måttet\": \"mått\",\n  \"mæland\": \"mæland\",\n  \"mæle\": \"mæl\",\n  \"møblar\": \"møbl\",\n  \"mødre\": \"mødr\",\n  \"mølen\": \"møl\",\n  \"mønet\": \"møn\",\n  \"mønster\": \"mønst\",\n  \"mønsteret\": \"mønster\",\n  \"mønsterkontrakten\": \"mønsterkontrakt\",\n  \"mønstervedtektene\": \"mønstervedtekt\",\n  \"mørbanket\": \"mørbank\",\n  \"møre\": \"mør\",\n  \"mørk\": \"mørk\",\n  \"mørke\": \"mørk\",\n  \"mørkemaktene\": \"mørkemakt\",\n  \"mørket\": \"mørk\",\n  \"mørketiden\": \"mørketid\",\n  \"mørkets\": \"mørk\",\n  \"mørkt\": \"mørkt\",\n  \"mørkved\": \"mørkved\",\n  \"møta\": \"møt\",\n  \"møtast\": \"møt\",\n  \"møte\": \"møt\",\n  \"møtedagen\": \"møtedag\",\n  \"møteleiar\": \"møtelei\",\n  \"møteleiaren\": \"møteleiar\",\n  \"møteleiarens\": \"møteleiar\",\n  \"møteleiing\": \"møteleiing\",\n  \"møtene\": \"møt\",\n  \"møteplikt\": \"møteplikt\",\n  \"møter\": \"møt\",\n  \"møtereglar\": \"møteregl\",\n  \"møterett\": \"møterett\",\n  \"møteretten\": \"møterett\",\n  \"møtes\": \"møt\",\n  \"møtesituasjoner\": \"møtesituasjon\",\n  \"møtest\": \"møtest\",\n  \"møtet\": \"møt\",\n  \"møtevirksomhet\": \"møtevirksom\",\n  \"møtt\": \"møtt\",\n  \"møtte\": \"møtt\",\n  \"møy\": \"møy\",\n  \"n\": \"n\",\n  \"nabokommune\": \"nabokommun\",\n  \"naboland\": \"naboland\",\n  \"nag\": \"nag\",\n  \"naglfar\": \"naglf\",\n  \"naken\": \"nak\",\n  \"nakent\": \"nakent\",\n  \"nakken\": \"nakk\",\n  \"nakne\": \"nakn\",\n  \"namn\": \"namn\",\n  \"namna\": \"namn\",\n  \"namneendring\": \"namneendring\",\n  \"namneendringa\": \"namneendring\",\n  \"namnet\": \"namn\",\n  \"namngjeven\": \"namngjev\",\n  \"namngjevne\": \"namngjevn\",\n  \"namsretten\": \"namsrett\",\n  \"namsstyresmakta\": \"namsstyresmakt\",\n  \"namsstyresmaktene\": \"namsstyresmakt\",\n  \"nanna\": \"nann\",\n  \"nappe\": \"napp\",\n  \"napper\": \"napp\",\n  \"nara\": \"nar\",\n  \"narr\": \"narr\",\n  \"narra\": \"narr\",\n  \"narre\": \"narr\",\n  \"narret\": \"narr\",\n  \"narve\": \"narv\",\n  \"narvesen\": \"narves\",\n  \"narvik\": \"narvik\",\n  \"nasjonal\": \"nasjonal\",\n  \"nasjonalbudsjett\": \"nasjonalbudsjett\",\n  \"nasjonalbudsjettet\": \"nasjonalbudsjett\",\n  \"nasjonale\": \"nasjonal\",\n  \"nasjonalitet\": \"nasjonalit\",\n  \"nasjonalt\": \"nasjonalt\",\n  \"nasjonene\": \"nasjon\",\n  \"natt\": \"natt\",\n  \"natta\": \"natt\",\n  \"nattefrosten\": \"nattefrost\",\n  \"nattely\": \"nattely\",\n  \"nattemørket\": \"nattemørk\",\n  \"natten\": \"natt\",\n  \"nattens\": \"natt\",\n  \"nattestengning\": \"nattestengning\",\n  \"nattsvart\": \"nattsvart\",\n  \"natur\": \"natur\",\n  \"naturaldeling\": \"naturaldeling\",\n  \"naturalia\": \"naturali\",\n  \"naturalytelser\": \"naturalyt\",\n  \"naturgitte\": \"naturgitt\",\n  \"naturinngrep\": \"naturinngrep\",\n  \"naturlig\": \"natur\",\n  \"naturlige\": \"natur\",\n  \"naturligvis\": \"naturligvis\",\n  \"naturmessige\": \"naturmess\",\n  \"naturreservat\": \"naturreservat\",\n  \"naturreservatet\": \"naturreservat\",\n  \"naturressurser\": \"naturressurs\",\n  \"naudssituasjonar\": \"naudssituasjon\",\n  \"nautiske\": \"nautisk\",\n  \"nav\": \"nav\",\n  \"navet\": \"nav\",\n  \"navigasjon\": \"navigasjon\",\n  \"navigasjonsassistanse\": \"navigasjonsassistans\",\n  \"navigasjonsdekning\": \"navigasjonsdekning\",\n  \"navigasjonshjelpemidler\": \"navigasjonshjelpemidl\",\n  \"navigasjonspolitikk\": \"navigasjonspolitikk\",\n  \"navigasjonsspørsmål\": \"navigasjonsspørsmål\",\n  \"navigatørene\": \"navigatør\",\n  \"navigere\": \"naviger\",\n  \"navn\": \"navn\",\n  \"navnene\": \"navn\",\n  \"navnet\": \"navn\",\n  \"navprinsippet\": \"navprinsipp\",\n  \"nazionale\": \"nazional\",\n  \"nbbl\": \"nbbl\",\n  \"nbbls\": \"nbbls\",\n  \"nbo\": \"nbo\",\n  \"nebb\": \"nebb\",\n  \"nebbene\": \"nebb\",\n  \"nebbet\": \"nebb\",\n  \"ned\": \"ned\",\n  \"nedafor\": \"nedafor\",\n  \"nedbetaling\": \"nedbetaling\",\n  \"nedbetalt\": \"nedbetalt\",\n  \"nedbetalte\": \"nedbetalt\",\n  \"nedbrente\": \"nedbrent\",\n  \"nedbrytning\": \"nedbrytning\",\n  \"nedbygge\": \"nedbygg\",\n  \"nedbygging\": \"nedbygging\",\n  \"nede\": \"ned\",\n  \"nedenfor\": \"nedenfor\",\n  \"nedenfra\": \"nedenfr\",\n  \"nedenstående\": \"nedenstå\",\n  \"nedereland\": \"nedereland\",\n  \"nederlaget\": \"nederlag\",\n  \"nederland\": \"nederland\",\n  \"nederste\": \"nederst\",\n  \"nedfelle\": \"nedfell\",\n  \"nedfelles\": \"nedfell\",\n  \"nedfelt\": \"nedfelt\",\n  \"nedjustert\": \"nedjuster\",\n  \"nedlagd\": \"nedlagd\",\n  \"nedlagt\": \"nedlagt\",\n  \"nedlegge\": \"nedlegg\",\n  \"nedleggelse\": \"nedlegg\",\n  \"nedlegges\": \"nedlegg\",\n  \"nedlegging\": \"nedlegging\",\n  \"nedover\": \"nedov\",\n  \"nedprioritere\": \"nedprioriter\",\n  \"nedpå\": \"nedpå\",\n  \"nedre\": \"nedr\",\n  \"nedsatt\": \"nedsatt\",\n  \"nedsatte\": \"nedsatt\",\n  \"nedsetjing\": \"nedsetjing\",\n  \"nedsette\": \"nedsett\",\n  \"nedsettelse\": \"nedsett\",\n  \"nedskrivninger\": \"nedskrivning\",\n  \"nedsnedd\": \"nedsnedd\",\n  \"nedstigande\": \"nedst\",\n  \"negativ\": \"negativ\",\n  \"negative\": \"negativ\",\n  \"negativt\": \"negativ\",\n  \"neglene\": \"negl\",\n  \"negler\": \"negl\",\n  \"nei\": \"nei\",\n  \"neida\": \"neid\",\n  \"neie\": \"neie\",\n  \"neier\": \"neier\",\n  \"nekta\": \"nekt\",\n  \"nektar\": \"nekt\",\n  \"nektast\": \"nekt\",\n  \"nekte\": \"nekt\",\n  \"nekter\": \"nekt\",\n  \"nektet\": \"nekt\",\n  \"nekting\": \"nekting\",\n  \"nektinga\": \"nekting\",\n  \"nels\": \"nel\",\n  \"nemleg\": \"nem\",\n  \"nemlig\": \"nem\",\n  \"nemnande\": \"nemn\",\n  \"nemnast\": \"nemn\",\n  \"nemnd\": \"nemnd\",\n  \"nemnda\": \"nemnd\",\n  \"nemnde\": \"nemnd\",\n  \"nemndene\": \"nemnd\",\n  \"nemnder\": \"nemnd\",\n  \"nemne\": \"nemn\",\n  \"nemner\": \"nemn\",\n  \"nemning\": \"nemning\",\n  \"nemninga\": \"nemning\",\n  \"nemningane\": \"nemning\",\n  \"nemningar\": \"nemning\",\n  \"nemnt\": \"nemnt\",\n  \"nemo\": \"nemo\",\n  \"neppe\": \"nepp\",\n  \"nepsdatter\": \"nepsdatt\",\n  \"neseborene\": \"nesebor\",\n  \"nesen\": \"nes\",\n  \"nest\": \"nest\",\n  \"neste\": \"nest\",\n  \"nesten\": \"nest\",\n  \"nestenulykker\": \"nestenulykk\",\n  \"nestleder\": \"nestled\",\n  \"nestledervervet\": \"nestlederverv\",\n  \"nestleiar\": \"nestlei\",\n  \"nett\": \"nett\",\n  \"netter\": \"nett\",\n  \"nettet\": \"nett\",\n  \"netto\": \"netto\",\n  \"nettoeiga\": \"netto\",\n  \"nettoen\": \"netto\",\n  \"nettoformue\": \"nettoformu\",\n  \"nettopp\": \"nettopp\",\n  \"nettopremier\": \"nettopremi\",\n  \"nettoverdiane\": \"nettoverdi\",\n  \"nettoverdien\": \"nettoverdi\",\n  \"nettoverdier\": \"nettoverdi\",\n  \"nettsider\": \"nettsid\",\n  \"nettverk\": \"nettverk\",\n  \"network\": \"network\",\n  \"neve\": \"nev\",\n  \"nevekamp\": \"nevekamp\",\n  \"nevekjemper\": \"nevekjemp\",\n  \"neven\": \"nev\",\n  \"nevene\": \"nev\",\n  \"never\": \"nev\",\n  \"nevn\": \"nevn\",\n  \"nevne\": \"nevn\",\n  \"nevner\": \"nevn\",\n  \"nevnes\": \"nevn\",\n  \"nevneverdige\": \"nevneverd\",\n  \"nevnt\": \"nevnt\",\n  \"nevnte\": \"nevnt\",\n  \"new\": \"new\",\n  \"nf\": \"nf\",\n  \"nff\": \"nff\",\n  \"nho\": \"nho\",\n  \"ni\": \"ni\",\n  \"niande\": \"niand\",\n  \"nibr\": \"nibr\",\n  \"nibrs\": \"nibr\",\n  \"nicht\": \"nicht\",\n  \"nidhogg\": \"nidhogg\",\n  \"niende\": \"niend\",\n  \"niflheim\": \"niflheim\",\n  \"nikker\": \"nikk\",\n  \"nils\": \"nil\",\n  \"nina\": \"nin\",\n  \"nisjer\": \"nisj\",\n  \"nistemat\": \"nistemat\",\n  \"nisten\": \"nist\",\n  \"nistepose\": \"nistepos\",\n  \"nisteposen\": \"nistepos\",\n  \"nisteskreppa\": \"nisteskrepp\",\n  \"nitberg\": \"nitberg\",\n  \"nitbergs\": \"nitberg\",\n  \"nivå\": \"nivå\",\n  \"nivåene\": \"nivå\",\n  \"nivåer\": \"nivå\",\n  \"nivået\": \"nivå\",\n  \"njord\": \"njord\",\n  \"njords\": \"njord\",\n  \"nkl\": \"nkl\",\n  \"no\": \"no\",\n  \"noahs\": \"noah\",\n  \"noatun\": \"noatun\",\n  \"noe\": \"noe\",\n  \"noen\": \"noen\",\n  \"noenlunde\": \"noenlund\",\n  \"nogjeldande\": \"nogjeld\",\n  \"nok\": \"nok\",\n  \"noka\": \"nok\",\n  \"noko\": \"noko\",\n  \"nokolunde\": \"nokolund\",\n  \"nokon\": \"nokon\",\n  \"nokre\": \"nokr\",\n  \"nokså\": \"nokså\",\n  \"nomenklaturen\": \"nomenklatur\",\n  \"nominell\": \"nominell\",\n  \"nominelle\": \"nominell\",\n  \"nominelt\": \"nominelt\",\n  \"nor\": \"nor\",\n  \"norcem\": \"norcem\",\n  \"norconsult\": \"norconsult\",\n  \"nord\": \"nord\",\n  \"nordeuropeisk\": \"nordeuropeisk\",\n  \"nordisk\": \"nordisk\",\n  \"nordiska\": \"nordisk\",\n  \"nordiske\": \"nordisk\",\n  \"nordlige\": \"nord\",\n  \"nordover\": \"nordov\",\n  \"nordre\": \"nordr\",\n  \"nordsjøen\": \"nordsjø\",\n  \"nordsjøtrafikken\": \"nordsjøtrafikk\",\n  \"nordøst\": \"nordøst\",\n  \"noreg\": \"noreg\",\n  \"noregs\": \"noreg\",\n  \"norge\": \"norg\",\n  \"norges\": \"norg\",\n  \"norgeslast\": \"norgesl\",\n  \"norm\": \"norm\",\n  \"normal\": \"normal\",\n  \"normale\": \"normal\",\n  \"normalordninga\": \"normalordning\",\n  \"normalt\": \"normalt\",\n  \"normalvedtektene\": \"normalvedtekt\",\n  \"normann\": \"normann\",\n  \"normer\": \"norm\",\n  \"normert\": \"normer\",\n  \"nornen\": \"norn\",\n  \"nornene\": \"norn\",\n  \"norner\": \"norn\",\n  \"norsk\": \"norsk\",\n  \"norske\": \"norsk\",\n  \"noss\": \"noss\",\n  \"notat\": \"notat\",\n  \"notatet\": \"notat\",\n  \"note\": \"not\",\n  \"noter\": \"not\",\n  \"notering\": \"notering\",\n  \"noteringa\": \"notering\",\n  \"notert\": \"noter\",\n  \"noterte\": \"noter\",\n  \"notifikasjonskravet\": \"notifikasjonskrav\",\n  \"nou\": \"nou\",\n  \"november\": \"novemb\",\n  \"noverande\": \"nover\",\n  \"nr\": \"nr\",\n  \"nsb\": \"nsb\",\n  \"nsbs\": \"nsbs\",\n  \"ntp\": \"ntp\",\n  \"null\": \"null\",\n  \"numedalslågen\": \"numedalslåg\",\n  \"nummer\": \"numm\",\n  \"nummeret\": \"nummer\",\n  \"nummerordningar\": \"nummerordning\",\n  \"nustad\": \"nustad\",\n  \"nvvp\": \"nvvp\",\n  \"ny\": \"ny\",\n  \"nyanlegget\": \"nyanlegg\",\n  \"nyansatte\": \"nyansatt\",\n  \"nyansert\": \"nyanser\",\n  \"nyanserte\": \"nyanser\",\n  \"nyare\": \"nyar\",\n  \"nyaste\": \"nyast\",\n  \"nybrottsmenn\": \"nybrottsmenn\",\n  \"nybyen\": \"nyby\",\n  \"nybygg\": \"nybygg\",\n  \"nybygget\": \"nybygg\",\n  \"nybygging\": \"nybygging\",\n  \"nybygginga\": \"nybygging\",\n  \"nydelig\": \"nyd\",\n  \"nye\": \"nye\",\n  \"nyere\": \"nyer\",\n  \"nyetablering\": \"nyetablering\",\n  \"nyetablerte\": \"nyetabler\",\n  \"nyfødte\": \"nyfød\",\n  \"nyinnmelde\": \"nyinnmeld\",\n  \"nykommerne\": \"nykommern\",\n  \"nyleg\": \"nyleg\",\n  \"nylig\": \"nyl\",\n  \"nymalt\": \"nymalt\",\n  \"nynnende\": \"nynn\",\n  \"nynner\": \"nynn\",\n  \"nyoppførte\": \"nyoppført\",\n  \"nysgjerrig\": \"nysgjerr\",\n  \"nysgjerrige\": \"nysgjerr\",\n  \"nysgjerrighet\": \"nysgjerr\",\n  \"nyskapning\": \"nyskapning\",\n  \"nyskapninger\": \"nyskapning\",\n  \"nyskapt\": \"nyskapt\",\n  \"nystifta\": \"nystift\",\n  \"nyte\": \"nyt\",\n  \"nyter\": \"nyt\",\n  \"nytt\": \"nytt\",\n  \"nytta\": \"nytt\",\n  \"nyttar\": \"nytt\",\n  \"nyttast\": \"nytt\",\n  \"nytte\": \"nytt\",\n  \"nytteeffekter\": \"nytteeffekt\",\n  \"nyttekostnadsanalyse\": \"nyttekostnadsanalys\",\n  \"nyttekostnadsanalyser\": \"nyttekostnadsanalys\",\n  \"nytten\": \"nytt\",\n  \"nytter\": \"nytt\",\n  \"nyttes\": \"nytt\",\n  \"nyttet\": \"nytt\",\n  \"nyttetrafikken\": \"nyttetrafikk\",\n  \"nyttig\": \"nytt\",\n  \"nyttiggjøre\": \"nyttiggjør\",\n  \"nyval\": \"nyval\",\n  \"nå\": \"nå\",\n  \"nådd\": \"nådd\",\n  \"nåde\": \"nåd\",\n  \"nådeløs\": \"nådeløs\",\n  \"någjeldende\": \"någjeld\",\n  \"nål\": \"nål\",\n  \"når\": \"når\",\n  \"nås\": \"nås\",\n  \"nåstrand\": \"nåstrand\",\n  \"nåtid\": \"nåtid\",\n  \"nått\": \"nått\",\n  \"nåverdi\": \"nåverdi\",\n  \"nåverdien\": \"nåverdi\",\n  \"nåværende\": \"nåvær\",\n  \"nær\": \"nær\",\n  \"nærare\": \"nærar\",\n  \"nærast\": \"nær\",\n  \"næraste\": \"nærast\",\n  \"nære\": \"nær\",\n  \"nærhet\": \"nær\",\n  \"nærheten\": \"nær\",\n  \"næring\": \"næring\",\n  \"næringer\": \"næring\",\n  \"nærings\": \"næring\",\n  \"næringsaktivitet\": \"næringsaktivit\",\n  \"næringsaktiviteter\": \"næringsaktivitet\",\n  \"næringsdrivande\": \"næringsdriv\",\n  \"næringsforhold\": \"næringsforhold\",\n  \"næringsformål\": \"næringsformål\",\n  \"næringsinteresser\": \"næringsinteress\",\n  \"næringsliv\": \"næringsliv\",\n  \"næringslivet\": \"næringsliv\",\n  \"næringslivets\": \"næringsliv\",\n  \"næringslivsaktivitet\": \"næringslivsaktivit\",\n  \"næringslivspolitikk\": \"næringslivspolitikk\",\n  \"næringslivsutvikling\": \"næringslivsutvikling\",\n  \"næringsplan\": \"næringsplan\",\n  \"næringspolitikk\": \"næringspolitikk\",\n  \"næringspolitikken\": \"næringspolitikk\",\n  \"næringspolitikkens\": \"næringspolitikk\",\n  \"næringspolitisk\": \"næringspolitisk\",\n  \"næringspolitiske\": \"næringspolitisk\",\n  \"næringsrettede\": \"næringsrett\",\n  \"næringsråd\": \"næringsråd\",\n  \"næringssameiger\": \"næringssam\",\n  \"næringsseksjonar\": \"næringsseksjon\",\n  \"næringsutvikling\": \"næringsutvikling\",\n  \"næringsutviklingen\": \"næringsutvikling\",\n  \"næringsutøvere\": \"næringsutøver\",\n  \"næringsverksemd\": \"næringsverksemd\",\n  \"næringsvirksomhet\": \"næringsvirksom\",\n  \"næringsvirksomheten\": \"næringsvirksom\",\n  \"næringsvirksomheter\": \"næringsvirksom\",\n  \"næringsøkonomi\": \"næringsøkonomi\",\n  \"næringsøkonomiske\": \"næringsøkonomisk\",\n  \"nærliggende\": \"nærligg\",\n  \"nærliggjande\": \"nærliggj\",\n  \"nærmar\": \"nærm\",\n  \"nærme\": \"nærm\",\n  \"nærmer\": \"nærm\",\n  \"nærmere\": \"nærmer\",\n  \"nærmest\": \"nærmest\",\n  \"nærmeste\": \"nærmest\",\n  \"nærmiljøet\": \"nærmiljø\",\n  \"nærområde\": \"nærområd\",\n  \"nærområdene\": \"nærområd\",\n  \"nærområder\": \"nærområd\",\n  \"nærskipsfarten\": \"nærskipsfart\",\n  \"nærståande\": \"nærstå\",\n  \"nærstående\": \"nærstå\",\n  \"nært\": \"nært\",\n  \"nærtliggende\": \"nærtligg\",\n  \"nærtrafikk\": \"nærtrafikk\",\n  \"nærvere\": \"nærver\",\n  \"nød\": \"nød\",\n  \"nødig\": \"nød\",\n  \"nødt\": \"nødt\",\n  \"nødvendig\": \"nødvend\",\n  \"nødvendige\": \"nødvend\",\n  \"nødvendigheten\": \"nødvend\",\n  \"nødvendigvis\": \"nødvendigvis\",\n  \"nøgde\": \"nøgd\",\n  \"nøkk\": \"nøkk\",\n  \"nøkkel\": \"nøkkel\",\n  \"nøkkelen\": \"nøkkel\",\n  \"nøkkelknippe\": \"nøkkelknipp\",\n  \"nøkkelroller\": \"nøkkelroll\",\n  \"nøktern\": \"nøktern\",\n  \"nøkterne\": \"nøktern\",\n  \"nøle\": \"nøl\",\n  \"nøler\": \"nøl\",\n  \"nøtt\": \"nøtt\",\n  \"nøtteskall\": \"nøtteskall\",\n  \"nøyaktig\": \"nøyakt\",\n  \"nøyd\": \"nøyd\",\n  \"nøye\": \"nøye\",\n  \"nøyer\": \"nøyer\",\n  \"nøyere\": \"nøyer\",\n  \"nøytral\": \"nøytral\",\n  \"nøytrale\": \"nøytral\",\n  \"nøytralitet\": \"nøytralit\",\n  \"nøytralt\": \"nøytralt\",\n  \"o\": \"o\",\n  \"objekta\": \"objekt\",\n  \"objektet\": \"objekt\",\n  \"obligasjonar\": \"obligasjon\",\n  \"obligasjonen\": \"obligasjon\",\n  \"obligasjonens\": \"obligasjon\",\n  \"obligasjoner\": \"obligasjon\",\n  \"obligasjonsinnskot\": \"obligasjonsinnskot\",\n  \"obligasjonsleilegheiter\": \"obligasjonsleilegheit\",\n  \"obligasjonsleilighet\": \"obligasjonslei\",\n  \"obligatorisk\": \"obligatorisk\",\n  \"obligatoriske\": \"obligatorisk\",\n  \"obos\": \"obo\",\n  \"observasjon\": \"observasjon\",\n  \"observatør\": \"observatør\",\n  \"observatørar\": \"observatør\",\n  \"observatøren\": \"observatør\",\n  \"observert\": \"observer\",\n  \"och\": \"och\",\n  \"od\": \"od\",\n  \"odder\": \"odd\",\n  \"odelstinget\": \"odelsting\",\n  \"oder\": \"oder\",\n  \"odin\": \"odin\",\n  \"odins\": \"odin\",\n  \"oecd\": \"oecd\",\n  \"of\": \"of\",\n  \"off\": \"off\",\n  \"offentleg\": \"offent\",\n  \"offentlege\": \"offent\",\n  \"offentlegrettslege\": \"offentlegretts\",\n  \"offentlig\": \"offent\",\n  \"offentlige\": \"offent\",\n  \"offentliges\": \"offent\",\n  \"offentligheten\": \"offent\",\n  \"offerfesten\": \"offerfest\",\n  \"offisiell\": \"offisiell\",\n  \"ofres\": \"ofr\",\n  \"oftare\": \"oftar\",\n  \"oftast\": \"oft\",\n  \"ofte\": \"oft\",\n  \"oftere\": \"ofter\",\n  \"oftest\": \"oftest\",\n  \"og\": \"og\",\n  \"også\": \"også\",\n  \"ogvalfader\": \"ogvalfad\",\n  \"ohnstad\": \"ohnstad\",\n  \"ohv\": \"ohv\",\n  \"ohvs\": \"ohv\",\n  \"oioioi\": \"oioioi\",\n  \"okolne\": \"okoln\",\n  \"okse\": \"oks\",\n  \"oksehodet\": \"oksehod\",\n  \"okselår\": \"okselår\",\n  \"oksene\": \"oks\",\n  \"okser\": \"oks\",\n  \"oktober\": \"oktob\",\n  \"ol\": \"ol\",\n  \"ola\": \"ola\",\n  \"olav\": \"olav\",\n  \"oldebarn\": \"oldebarn\",\n  \"oldemor\": \"oldemor\",\n  \"oldinger\": \"olding\",\n  \"olje\": \"olj\",\n  \"oljehavn\": \"oljehavn\",\n  \"oljehavnen\": \"oljehavn\",\n  \"oljeprodukter\": \"oljeprodukt\",\n  \"oljeraffineriet\": \"oljeraffineri\",\n  \"olmt\": \"olmt\",\n  \"olsen\": \"ols\",\n  \"om\": \"om\",\n  \"ombestemmer\": \"ombestemm\",\n  \"ombodsordning\": \"ombodsordning\",\n  \"ombord\": \"ombord\",\n  \"ombygging\": \"ombygging\",\n  \"ombygginga\": \"ombygging\",\n  \"ombyting\": \"ombyting\",\n  \"ombyttingsbetraktning\": \"ombyttingsbetraktning\",\n  \"omdannast\": \"omdann\",\n  \"omdanne\": \"omdann\",\n  \"omdannelse\": \"omdann\",\n  \"omdannes\": \"omdann\",\n  \"omdanning\": \"omdanning\",\n  \"omdanninga\": \"omdanning\",\n  \"omdanningen\": \"omdanning\",\n  \"omdanninger\": \"omdanning\",\n  \"omdanningsreglane\": \"omdanningsregl\",\n  \"omdanningstidspunktet\": \"omdanningstidspunkt\",\n  \"omdanningsvedtaket\": \"omdanningsvedtak\",\n  \"omdeling\": \"omdeling\",\n  \"omdiskutert\": \"omdiskuter\",\n  \"omdisponeres\": \"omdisponer\",\n  \"omdisponering\": \"omdisponering\",\n  \"omegn\": \"omegn\",\n  \"omfang\": \"omfang\",\n  \"omfanget\": \"omfang\",\n  \"omfatta\": \"omfatt\",\n  \"omfattande\": \"omfatt\",\n  \"omfattar\": \"omfatt\",\n  \"omfattast\": \"omfatt\",\n  \"omfatte\": \"omfatt\",\n  \"omfattende\": \"omfatt\",\n  \"omfatter\": \"omfatt\",\n  \"omfattes\": \"omfatt\",\n  \"omfattet\": \"omfatt\",\n  \"omfavne\": \"omfavn\",\n  \"omfavner\": \"omfavn\",\n  \"omfavnet\": \"omfavn\",\n  \"omfordelende\": \"omfordel\",\n  \"omfram\": \"omfram\",\n  \"omgang\": \"omgang\",\n  \"omgitt\": \"omgitt\",\n  \"omgivelsene\": \"omgiv\",\n  \"omgjering\": \"omgjering\",\n  \"omgjeringa\": \"omgjering\",\n  \"omgjort\": \"omgjort\",\n  \"omgjøre\": \"omgjør\",\n  \"omgrepa\": \"omgrep\",\n  \"omgrepet\": \"omgrep\",\n  \"omgåelse\": \"omgå\",\n  \"omgåing\": \"omgåing\",\n  \"omgåingar\": \"omgåing\",\n  \"omhandler\": \"omhandl\",\n  \"omhandles\": \"omhandl\",\n  \"omhandlet\": \"omhandl\",\n  \"omkjøring\": \"omkjøring\",\n  \"omkostningene\": \"omkostning\",\n  \"omkostninger\": \"omkostning\",\n  \"omkranser\": \"omkrans\",\n  \"omkring\": \"omkring\",\n  \"omkringliggende\": \"omkringligg\",\n  \"omlag\": \"omlag\",\n  \"omland\": \"omland\",\n  \"omlastet\": \"omlast\",\n  \"omlasting\": \"omlasting\",\n  \"omlastingen\": \"omlasting\",\n  \"omlastingsarealer\": \"omlastingsareal\",\n  \"omlastingsområder\": \"omlastingsområd\",\n  \"omlastingspotensialet\": \"omlastingspotensial\",\n  \"omlastingsterminal\": \"omlastingsterminal\",\n  \"omlastingsterminaler\": \"omlastingsterminal\",\n  \"omlastingsvekst\": \"omlastingsvekst\",\n  \"omlastingsvolumer\": \"omlastingsvolum\",\n  \"omlastningen\": \"omlastning\",\n  \"omlastninger\": \"omlastning\",\n  \"omlastningsforhold\": \"omlastningsforhold\",\n  \"omlastningshavn\": \"omlastningshavn\",\n  \"omlastningsterminaler\": \"omlastningsterminal\",\n  \"omlastningsvolum\": \"omlastningsvolum\",\n  \"omlegging\": \"omlegging\",\n  \"omleggingar\": \"omlegging\",\n  \"omlegginger\": \"omlegging\",\n  \"omliggende\": \"omligg\",\n  \"omlokalisering\": \"omlokalisering\",\n  \"omløpshastighet\": \"omløpshast\",\n  \"omme\": \"omm\",\n  \"omorganisere\": \"omorganiser\",\n  \"omorganiseres\": \"omorganiser\",\n  \"omorganisert\": \"omorganiser\",\n  \"omprioritering\": \"omprioritering\",\n  \"omprioriteringer\": \"omprioritering\",\n  \"omregnet\": \"omregn\",\n  \"omregning\": \"omregning\",\n  \"områ\": \"områ\",\n  \"område\": \"områd\",\n  \"områdene\": \"områd\",\n  \"områder\": \"områd\",\n  \"områders\": \"områd\",\n  \"området\": \"områd\",\n  \"områdets\": \"områd\",\n  \"områdingstid\": \"områdingstid\",\n  \"omsetjast\": \"omsetj\",\n  \"omsetje\": \"omsetj\",\n  \"omsetjeleg\": \"omsetj\",\n  \"omsetjelege\": \"omsetj\",\n  \"omsetjing\": \"omsetjing\",\n  \"omsetjinga\": \"omsetjing\",\n  \"omsetning\": \"omsetning\",\n  \"omsetninga\": \"omsetning\",\n  \"omsetningservervarar\": \"omsetningservervar\",\n  \"omsetningsregulering\": \"omsetningsregulering\",\n  \"omsetningsverdien\": \"omsetningsverdi\",\n  \"omsette\": \"omsett\",\n  \"omsettes\": \"omsett\",\n  \"omskiftninger\": \"omskiftning\",\n  \"omskipa\": \"omskip\",\n  \"omskiping\": \"omskiping\",\n  \"omslaget\": \"omslag\",\n  \"omsorg\": \"omsorg\",\n  \"omsorgsbehov\": \"omsorgsbehov\",\n  \"omsorgsbustader\": \"omsorgsbustad\",\n  \"omsorgstenester\": \"omsorgstenest\",\n  \"omstenda\": \"omstend\",\n  \"omstende\": \"omst\",\n  \"omstendighet\": \"omstend\",\n  \"omstillinger\": \"omstilling\",\n  \"omstillings\": \"omstilling\",\n  \"omstillingsdyktig\": \"omstillingsdykt\",\n  \"omstillingstiltak\": \"omstillingstiltak\",\n  \"omstillingstiltaka\": \"omstillingstiltak\",\n  \"omstreifer\": \"omstreif\",\n  \"omstridd\": \"omstridd\",\n  \"omstridde\": \"omstridd\",\n  \"omstridt\": \"omstrid\",\n  \"omstrukturering\": \"omstrukturering\",\n  \"omstruktureringer\": \"omstrukturering\",\n  \"omstøytast\": \"omstøyt\",\n  \"omstøyting\": \"omstøyting\",\n  \"omstøytingskravet\": \"omstøytingskrav\",\n  \"omstøytingsregelen\": \"omstøytingsregel\",\n  \"omsyn\": \"omsyn\",\n  \"omsyna\": \"omsyn\",\n  \"omsynet\": \"omsyn\",\n  \"omsynstaking\": \"omsynstaking\",\n  \"omtala\": \"omtal\",\n  \"omtalast\": \"omtal\",\n  \"omtale\": \"omtal\",\n  \"omtalen\": \"omtal\",\n  \"omtaler\": \"omtal\",\n  \"omtales\": \"omtal\",\n  \"omtalt\": \"omtalt\",\n  \"omtrent\": \"omtrent\",\n  \"omtvista\": \"omtvist\",\n  \"omvandrende\": \"omvandr\",\n  \"omveg\": \"omveg\",\n  \"omvei\": \"omvei\",\n  \"omvende\": \"omv\",\n  \"omvendt\": \"omvend\",\n  \"omverda\": \"omverd\",\n  \"on\": \"on\",\n  \"ond\": \"ond\",\n  \"onde\": \"ond\",\n  \"ondskap\": \"ondskap\",\n  \"ondskapsfull\": \"ondskapsfull\",\n  \"ondskapsfulle\": \"ondskapsfull\",\n  \"ondskapsfullt\": \"ondskapsfullt\",\n  \"ondt\": \"ondt\",\n  \"ondurdis\": \"ondurdis\",\n  \"onkelen\": \"onkel\",\n  \"ope\": \"ope\",\n  \"open\": \"open\",\n  \"openberre\": \"openberr\",\n  \"openbert\": \"openber\",\n  \"openheit\": \"openheit\",\n  \"operasjon\": \"operasjon\",\n  \"operativ\": \"operativ\",\n  \"operative\": \"operativ\",\n  \"operativt\": \"operativ\",\n  \"operatør\": \"operatør\",\n  \"operatøren\": \"operatør\",\n  \"operatørene\": \"operatør\",\n  \"operatører\": \"operatør\",\n  \"operatørhold\": \"operatørhold\",\n  \"operatørselskaper\": \"operatørselskap\",\n  \"operatørvirksomhet\": \"operatørvirksom\",\n  \"operer\": \"oper\",\n  \"operere\": \"operer\",\n  \"opererer\": \"operer\",\n  \"opereres\": \"operer\",\n  \"opinionsleiarar\": \"opinionsleiar\",\n  \"opna\": \"opn\",\n  \"opnar\": \"opn\",\n  \"opnare\": \"opnar\",\n  \"opnast\": \"opn\",\n  \"opne\": \"opn\",\n  \"opning\": \"opning\",\n  \"opninga\": \"opning\",\n  \"opningsbalanse\": \"opningsbalans\",\n  \"opningsbalansen\": \"opningsbalans\",\n  \"opp\": \"opp\",\n  \"oppad\": \"oppad\",\n  \"opparbeide\": \"opparbeid\",\n  \"opparbeidede\": \"opparbeid\",\n  \"opparbeidelse\": \"opparbeid\",\n  \"opparbeider\": \"opparbeid\",\n  \"opparbeides\": \"opparbeid\",\n  \"opparbeidet\": \"opparbeid\",\n  \"opparbeiding\": \"opparbeiding\",\n  \"oppattbygging\": \"oppattbygging\",\n  \"oppbevarer\": \"oppbevar\",\n  \"oppbevaring\": \"oppbevaring\",\n  \"oppblåst\": \"oppblåst\",\n  \"oppblåste\": \"oppblåst\",\n  \"oppbrente\": \"oppbrent\",\n  \"oppbygd\": \"oppbygd\",\n  \"oppbygde\": \"oppbygd\",\n  \"oppbygget\": \"oppbygg\",\n  \"oppbygging\": \"oppbygging\",\n  \"oppbygginga\": \"oppbygging\",\n  \"oppbyggingen\": \"oppbygging\",\n  \"oppdage\": \"oppdag\",\n  \"oppdager\": \"oppdag\",\n  \"oppdaterte\": \"oppdater\",\n  \"oppdeling\": \"oppdeling\",\n  \"oppdelingen\": \"oppdeling\",\n  \"oppdelt\": \"oppdelt\",\n  \"oppdrag\": \"oppdrag\",\n  \"oppdraget\": \"oppdrag\",\n  \"oppdragsavtale\": \"oppdragsavtal\",\n  \"oppdragsgivere\": \"oppdragsgiver\",\n  \"oppdragstakaren\": \"oppdragstakar\",\n  \"oppe\": \"opp\",\n  \"oppebærer\": \"oppebær\",\n  \"oppfarende\": \"oppfar\",\n  \"oppfatning\": \"oppfatning\",\n  \"oppfatninga\": \"oppfatning\",\n  \"oppfatningane\": \"oppfatning\",\n  \"oppfatningar\": \"oppfatning\",\n  \"oppfatningene\": \"oppfatning\",\n  \"oppfatninger\": \"oppfatning\",\n  \"oppfatta\": \"oppfatt\",\n  \"oppfattar\": \"oppfatt\",\n  \"oppfattast\": \"oppfatt\",\n  \"oppfatte\": \"oppfatt\",\n  \"oppfatter\": \"oppfatt\",\n  \"oppfattes\": \"oppfatt\",\n  \"oppfordre\": \"oppfordr\",\n  \"oppfylle\": \"oppfyll\",\n  \"oppfyller\": \"oppfyll\",\n  \"oppfylles\": \"oppfyll\",\n  \"oppfylling\": \"oppfylling\",\n  \"oppfyllinga\": \"oppfylling\",\n  \"oppfylt\": \"oppfylt\",\n  \"oppfylte\": \"oppfylt\",\n  \"oppfølging\": \"oppfølging\",\n  \"oppfølginga\": \"oppfølging\",\n  \"oppfølgning\": \"oppfølgning\",\n  \"oppfører\": \"oppfør\",\n  \"oppføring\": \"oppføring\",\n  \"oppføringa\": \"oppføring\",\n  \"oppført\": \"oppført\",\n  \"oppførte\": \"oppført\",\n  \"oppgangar\": \"oppgang\",\n  \"oppgave\": \"oppgav\",\n  \"oppgaven\": \"oppgav\",\n  \"oppgavene\": \"oppgav\",\n  \"oppgaveplikten\": \"oppgaveplikt\",\n  \"oppgaver\": \"oppgav\",\n  \"oppgir\": \"oppgir\",\n  \"oppgis\": \"oppgis\",\n  \"oppgitt\": \"oppgitt\",\n  \"oppgjer\": \"oppgj\",\n  \"oppgjeret\": \"oppgjer\",\n  \"oppgjevast\": \"oppgjev\",\n  \"oppgjeve\": \"oppgjev\",\n  \"oppgjeven\": \"oppgjev\",\n  \"oppgjevne\": \"oppgjevn\",\n  \"oppgjør\": \"oppgjør\",\n  \"oppgjøret\": \"oppgjør\",\n  \"oppgjørstidspunktet\": \"oppgjørstidspunkt\",\n  \"oppgradering\": \"oppgradering\",\n  \"oppgåva\": \"oppgåv\",\n  \"oppgåve\": \"oppgåv\",\n  \"oppgåvefordelinga\": \"oppgåvefordeling\",\n  \"oppgåvene\": \"oppgåv\",\n  \"oppgåver\": \"oppgåv\",\n  \"opphald\": \"opphald\",\n  \"opphav\": \"opphav\",\n  \"opphavet\": \"opphav\",\n  \"opphavleg\": \"opphav\",\n  \"opphavlege\": \"opphav\",\n  \"opphavssted\": \"opphavssted\",\n  \"oppheva\": \"opphev\",\n  \"oppheve\": \"opphev\",\n  \"oppheves\": \"opphev\",\n  \"opphevet\": \"opphev\",\n  \"opphisset\": \"opphiss\",\n  \"oppholder\": \"opphold\",\n  \"opphør\": \"opphør\",\n  \"opphøre\": \"opphør\",\n  \"opphørende\": \"opphør\",\n  \"opphører\": \"opphør\",\n  \"opphøret\": \"opphør\",\n  \"opphørsgrunner\": \"opphørsgrunn\",\n  \"opphørstidspunktet\": \"opphørstidspunkt\",\n  \"opphørsåret\": \"opphørsår\",\n  \"opphørt\": \"opphørt\",\n  \"oppjusteres\": \"oppjuster\",\n  \"oppkalt\": \"oppkalt\",\n  \"oppkavet\": \"oppkav\",\n  \"oppkjøp\": \"oppkjøp\",\n  \"oppkrevd\": \"oppkrevd\",\n  \"oppkreve\": \"oppkrev\",\n  \"oppkreves\": \"oppkrev\",\n  \"opplagring\": \"opplagring\",\n  \"opplagt\": \"opplagt\",\n  \"oppland\": \"oppland\",\n  \"opplandet\": \"oppland\",\n  \"opplegg\": \"opplegg\",\n  \"opplegget\": \"opplegg\",\n  \"opplevd\": \"opplevd\",\n  \"oppleve\": \"opplev\",\n  \"opplever\": \"opplev\",\n  \"oppleves\": \"opplev\",\n  \"opplistingen\": \"opplisting\",\n  \"opplysande\": \"opplys\",\n  \"opplysast\": \"opplys\",\n  \"opplyse\": \"opplys\",\n  \"opplyser\": \"opplys\",\n  \"opplyses\": \"opplys\",\n  \"opplysning\": \"opplysning\",\n  \"opplysninga\": \"opplysning\",\n  \"opplysningane\": \"opplysning\",\n  \"opplysningar\": \"opplysning\",\n  \"opplysningene\": \"opplysning\",\n  \"opplysninger\": \"opplysning\",\n  \"opplysningsplikt\": \"opplysningsplikt\",\n  \"opplysningsplikta\": \"opplysningsplikt\",\n  \"opplysningsverksemd\": \"opplysningsverksemd\",\n  \"opplyst\": \"opplyst\",\n  \"opplåning\": \"opplåning\",\n  \"opplæring\": \"opplæring\",\n  \"oppløses\": \"oppløs\",\n  \"oppløsning\": \"oppløsning\",\n  \"oppløsningsvedtaket\": \"oppløsningsvedtak\",\n  \"oppløysast\": \"oppløys\",\n  \"oppløyse\": \"oppløys\",\n  \"oppløysing\": \"oppløysing\",\n  \"oppløysinga\": \"oppløysing\",\n  \"oppløysingar\": \"oppløysing\",\n  \"oppløysingsgrunnen\": \"oppløysingsgrunn\",\n  \"oppløysingsreglane\": \"oppløysingsregl\",\n  \"oppløysingssituasjon\": \"oppløysingssituasjon\",\n  \"oppløysingstilfella\": \"oppløysingstilfell\",\n  \"oppløysingsvedtaket\": \"oppløysingsvedtak\",\n  \"oppløyst\": \"oppløyst\",\n  \"oppløyste\": \"oppløyst\",\n  \"oppmerking\": \"oppmerking\",\n  \"oppmerkingen\": \"oppmerking\",\n  \"oppmerksom\": \"oppmerksom\",\n  \"oppmerksomhet\": \"oppmerksom\",\n  \"oppmode\": \"oppmod\",\n  \"oppmoding\": \"oppmoding\",\n  \"oppmodinga\": \"oppmoding\",\n  \"oppmuntres\": \"oppmuntr\",\n  \"oppnemnast\": \"oppnemn\",\n  \"oppnemnde\": \"oppnemnd\",\n  \"oppnemne\": \"oppnemn\",\n  \"oppnemner\": \"oppnemn\",\n  \"oppnemning\": \"oppnemning\",\n  \"oppnemningsrett\": \"oppnemningsrett\",\n  \"oppnemnt\": \"oppnemnt\",\n  \"oppnevne\": \"oppnevn\",\n  \"oppnevner\": \"oppnevn\",\n  \"oppnevnes\": \"oppnevn\",\n  \"oppnevning\": \"oppnevning\",\n  \"oppnevnt\": \"oppnevnt\",\n  \"oppnå\": \"oppnå\",\n  \"oppnådd\": \"oppnådd\",\n  \"oppnådde\": \"oppnådd\",\n  \"oppnår\": \"oppnår\",\n  \"oppnås\": \"oppnås\",\n  \"oppover\": \"oppov\",\n  \"oppregnet\": \"oppregn\",\n  \"oppregning\": \"oppregning\",\n  \"oppregningen\": \"oppregning\",\n  \"oppregulering\": \"oppregulering\",\n  \"oppreising\": \"oppreising\",\n  \"oppreist\": \"oppreist\",\n  \"opprekning\": \"opprekning\",\n  \"opprekninga\": \"opprekning\",\n  \"opprett\": \"opprett\",\n  \"oppretta\": \"opprett\",\n  \"opprettast\": \"opprett\",\n  \"opprette\": \"opprett\",\n  \"opprettelse\": \"opprett\",\n  \"opprettelsen\": \"opprett\",\n  \"oppretter\": \"opprett\",\n  \"opprettes\": \"opprett\",\n  \"opprettet\": \"opprett\",\n  \"opprettholde\": \"oppretthold\",\n  \"opprettholdelse\": \"oppretthold\",\n  \"opprettholder\": \"oppretthold\",\n  \"opprettholdes\": \"oppretthold\",\n  \"opprettholdt\": \"oppretthold\",\n  \"oppretting\": \"oppretting\",\n  \"opprinnelig\": \"opprinn\",\n  \"opprinnelige\": \"opprinn\",\n  \"opprinnelse\": \"opprinn\",\n  \"opprinnelsen\": \"opprinn\",\n  \"opprinnelses\": \"opprinn\",\n  \"opprinnelsessted\": \"opprinnelsessted\",\n  \"opprinnelsessteder\": \"opprinnelsessted\",\n  \"opprusting\": \"opprusting\",\n  \"opprustning\": \"opprustning\",\n  \"opprydding\": \"opprydding\",\n  \"opprykksrett\": \"opprykksrett\",\n  \"opprør\": \"opprør\",\n  \"oppsamla\": \"oppsaml\",\n  \"oppsamlede\": \"oppsaml\",\n  \"oppsamlet\": \"oppsaml\",\n  \"oppsamlingsfond\": \"oppsamlingsfond\",\n  \"oppsatt\": \"oppsatt\",\n  \"oppseielege\": \"oppsei\",\n  \"oppseiing\": \"oppseiing\",\n  \"oppseiinga\": \"oppseiing\",\n  \"oppseiingar\": \"oppseiing\",\n  \"oppseiingsfrist\": \"oppseiingsfrist\",\n  \"oppseiingsfristane\": \"oppseiingsfrist\",\n  \"oppseiingsfristen\": \"oppseiingsfrist\",\n  \"oppseiingsreglane\": \"oppseiingsregl\",\n  \"oppseiingsretten\": \"oppseiingsrett\",\n  \"oppseiingstid\": \"oppseiingstid\",\n  \"oppseiingsvern\": \"oppseiingsvern\",\n  \"oppsettelsestiden\": \"oppsettelsestid\",\n  \"oppsettet\": \"oppsett\",\n  \"oppsikt\": \"oppsikt\",\n  \"oppskrives\": \"oppskriv\",\n  \"oppskrivninger\": \"oppskrivning\",\n  \"oppskåret\": \"oppskår\",\n  \"oppslag\": \"oppslag\",\n  \"oppslutning\": \"oppslutning\",\n  \"oppslutninga\": \"oppslutning\",\n  \"oppsparing\": \"oppsparing\",\n  \"oppsparingen\": \"oppsparing\",\n  \"oppsparingsbehovet\": \"oppsparingsbehov\",\n  \"oppsparingselement\": \"oppsparingselement\",\n  \"oppsparingsfasen\": \"oppsparingsfas\",\n  \"oppsparingsperioden\": \"oppsparingsperiod\",\n  \"oppsparingstiden\": \"oppsparingstid\",\n  \"oppspart\": \"oppspart\",\n  \"oppsparte\": \"oppspart\",\n  \"oppspinn\": \"oppspinn\",\n  \"oppsplitting\": \"oppsplitting\",\n  \"oppstiging\": \"oppstiging\",\n  \"oppstigingsrett\": \"oppstigingsrett\",\n  \"oppstilles\": \"oppstill\",\n  \"oppstilling\": \"oppstilling\",\n  \"oppstillingsplaner\": \"oppstillingsplan\",\n  \"oppstilt\": \"oppstilt\",\n  \"oppsto\": \"oppsto\",\n  \"oppstod\": \"oppstod\",\n  \"oppstyret\": \"oppstyr\",\n  \"oppstå\": \"oppstå\",\n  \"oppstår\": \"oppstår\",\n  \"oppstått\": \"oppstått\",\n  \"oppsummerer\": \"oppsummer\",\n  \"oppsummering\": \"oppsummering\",\n  \"oppsummert\": \"oppsummer\",\n  \"oppsøke\": \"oppsøk\",\n  \"oppsøker\": \"oppsøk\",\n  \"oppta\": \"oppt\",\n  \"opptak\": \"opptak\",\n  \"opptakelse\": \"opptak\",\n  \"opptaksvilkårene\": \"opptaksvilkår\",\n  \"opptas\": \"oppt\",\n  \"opptatt\": \"opptatt\",\n  \"oppteikning\": \"oppteikning\",\n  \"oppteikninga\": \"oppteikning\",\n  \"opptil\": \"opptil\",\n  \"opptjene\": \"opptj\",\n  \"opptjener\": \"opptjen\",\n  \"opptjenes\": \"opptj\",\n  \"opptjening\": \"opptjening\",\n  \"opptjeningen\": \"opptjening\",\n  \"opptjeningsgrunnlag\": \"opptjeningsgrunnlag\",\n  \"opptjeningsmodell\": \"opptjeningsmodell\",\n  \"opptjeningsperioden\": \"opptjeningsperiod\",\n  \"opptjeningsprofil\": \"opptjeningsprofil\",\n  \"opptjeningsprofilen\": \"opptjeningsprofil\",\n  \"opptjeningssystem\": \"opptjeningssystem\",\n  \"opptjeningstid\": \"opptjeningstid\",\n  \"opptjeningstiden\": \"opptjeningstid\",\n  \"opptjeningstidspunktet\": \"opptjeningstidspunkt\",\n  \"opptjeningsår\": \"opptjeningsår\",\n  \"opptjent\": \"opptjent\",\n  \"opptjente\": \"opptjent\",\n  \"opptreden\": \"opptred\",\n  \"opptrer\": \"opptr\",\n  \"opptrinnsrett\": \"opptrinnsrett\",\n  \"oppussing\": \"oppussing\",\n  \"oppveier\": \"oppvei\",\n  \"oppå\": \"oppå\",\n  \"optimal\": \"optimal\",\n  \"optimale\": \"optimal\",\n  \"optimaliseres\": \"optimaliser\",\n  \"optimalisering\": \"optimalisering\",\n  \"optimalisert\": \"optimaliser\",\n  \"optimalt\": \"optimalt\",\n  \"ord\": \"ord\",\n  \"orda\": \"ord\",\n  \"ordbruken\": \"ordbruk\",\n  \"orde\": \"ord\",\n  \"orden\": \"ord\",\n  \"ordene\": \"ord\",\n  \"ordens\": \"ord\",\n  \"ordensreglar\": \"ordensregl\",\n  \"ordentlig\": \"ordent\",\n  \"ordet\": \"ord\",\n  \"ordføraren\": \"ordførar\",\n  \"ordinær\": \"ordinær\",\n  \"ordinære\": \"ordinær\",\n  \"ordinært\": \"ordinært\",\n  \"ordlegginga\": \"ordlegging\",\n  \"ordlyd\": \"ordlyd\",\n  \"ordlyden\": \"ordlyd\",\n  \"ordna\": \"ordn\",\n  \"ordnast\": \"ordn\",\n  \"ordne\": \"ordn\",\n  \"ordnet\": \"ordn\",\n  \"ordning\": \"ordning\",\n  \"ordninga\": \"ordning\",\n  \"ordningane\": \"ordning\",\n  \"ordningar\": \"ordning\",\n  \"ordningen\": \"ordning\",\n  \"ordningene\": \"ordning\",\n  \"ordningenes\": \"ordning\",\n  \"ordningens\": \"ordning\",\n  \"ordninger\": \"ordning\",\n  \"ordre\": \"ordr\",\n  \"ordren\": \"ordr\",\n  \"ordreplassering\": \"ordreplassering\",\n  \"ordreproduksjon\": \"ordreproduksjon\",\n  \"ordrer\": \"ordr\",\n  \"ordrestyres\": \"ordrestyr\",\n  \"ordrestyrt\": \"ordrestyrt\",\n  \"ordskiftet\": \"ordskift\",\n  \"ordspill\": \"ordspill\",\n  \"organ\": \"organ\",\n  \"organa\": \"organ\",\n  \"organer\": \"organ\",\n  \"organet\": \"organ\",\n  \"organisasjon\": \"organisasjon\",\n  \"organisasjonane\": \"organisasjon\",\n  \"organisasjonar\": \"organisasjon\",\n  \"organisasjonen\": \"organisasjon\",\n  \"organisasjoner\": \"organisasjon\",\n  \"organisasjonsarbeid\": \"organisasjonsarbeid\",\n  \"organisasjonsform\": \"organisasjonsform\",\n  \"organisasjonsforma\": \"organisasjonsform\",\n  \"organisasjonsformen\": \"organisasjonsform\",\n  \"organisasjonsmodell\": \"organisasjonsmodell\",\n  \"organisasjonsmodellen\": \"organisasjonsmodell\",\n  \"organisasjonsnummer\": \"organisasjonsnumm\",\n  \"organisation\": \"organisation\",\n  \"organisatorisk\": \"organisatorisk\",\n  \"organisatoriske\": \"organisatorisk\",\n  \"organiserast\": \"organiser\",\n  \"organisere\": \"organiser\",\n  \"organiserer\": \"organiser\",\n  \"organiseres\": \"organiser\",\n  \"organisering\": \"organisering\",\n  \"organiseringa\": \"organisering\",\n  \"organiseringen\": \"organisering\",\n  \"organiseringsmessige\": \"organiseringsmess\",\n  \"organiseringsmodell\": \"organiseringsmodell\",\n  \"organiseringsspørsmålet\": \"organiseringsspørsmål\",\n  \"organisert\": \"organiser\",\n  \"organiserte\": \"organiser\",\n  \"organismer\": \"organism\",\n  \"orientere\": \"orienter\",\n  \"orienterer\": \"orienter\",\n  \"orientering\": \"orientering\",\n  \"orientert\": \"orienter\",\n  \"orienterte\": \"orienter\",\n  \"originaler\": \"original\",\n  \"orke\": \"ork\",\n  \"orker\": \"ork\",\n  \"orket\": \"ork\",\n  \"orm\": \"orm\",\n  \"ormebol\": \"ormebol\",\n  \"ormen\": \"orm\",\n  \"ormens\": \"orm\",\n  \"ormer\": \"orm\",\n  \"ormsund\": \"ormsund\",\n  \"ormsundkaia\": \"ormsundkai\",\n  \"ormsundterminalen\": \"ormsundterminal\",\n  \"orsakar\": \"orsak\",\n  \"orskurd\": \"orskurd\",\n  \"orskurdar\": \"orskurd\",\n  \"orskurden\": \"orskurd\",\n  \"osb\": \"osb\",\n  \"oslo\": \"oslo\",\n  \"oslobehov\": \"oslobehov\",\n  \"oslofjord\": \"oslofjord\",\n  \"oslofjorden\": \"oslofjord\",\n  \"oslofjordens\": \"oslofjord\",\n  \"oslofjordforbindelsen\": \"oslofjordforbind\",\n  \"oslofjordhavnene\": \"oslofjordhavn\",\n  \"oslofjordhavnenes\": \"oslofjordhavn\",\n  \"oslofjordhavner\": \"oslofjordhavn\",\n  \"oslofjordhavneutvalget\": \"oslofjordhavneutvalg\",\n  \"oslofjordområdet\": \"oslofjordområd\",\n  \"oslofjordregionen\": \"oslofjordregion\",\n  \"oslogodset\": \"oslogods\",\n  \"oslomarkedet\": \"oslomarked\",\n  \"osloområdet\": \"osloområd\",\n  \"oslos\": \"oslo\",\n  \"oss\": \"oss\",\n  \"osv\": \"osv\",\n  \"ot\": \"ot\",\n  \"oter\": \"oter\",\n  \"oteren\": \"oter\",\n  \"oterskinnet\": \"oterskinn\",\n  \"out\": \"out\",\n  \"ovafor\": \"ovafor\",\n  \"ovenfor\": \"ovenfor\",\n  \"ovennevnte\": \"ovennevnt\",\n  \"oventil\": \"oventil\",\n  \"over\": \"over\",\n  \"overalt\": \"overalt\",\n  \"overblikk\": \"overblikk\",\n  \"overbygning\": \"overbygning\",\n  \"overbygningen\": \"overbygning\",\n  \"overdra\": \"overdr\",\n  \"overdragande\": \"overdrag\",\n  \"overdragast\": \"overdrag\",\n  \"overdragelse\": \"overdrag\",\n  \"overdragelsen\": \"overdrag\",\n  \"overdragende\": \"overdrag\",\n  \"overdraging\": \"overdraging\",\n  \"overdraginga\": \"overdraging\",\n  \"overdreg\": \"overdreg\",\n  \"overdrive\": \"overdriv\",\n  \"overende\": \"over\",\n  \"overens\": \"over\",\n  \"overensstemmelse\": \"overensstemm\",\n  \"overenstemmelse\": \"overenstemm\",\n  \"overfall\": \"overfall\",\n  \"overfaller\": \"overfall\",\n  \"overfalt\": \"overfalt\",\n  \"overflod\": \"overflod\",\n  \"overflyttes\": \"overflytt\",\n  \"overflødig\": \"overflød\",\n  \"overfor\": \"overfor\",\n  \"overførast\": \"overfør\",\n  \"overførbar\": \"overførb\",\n  \"overføre\": \"overfør\",\n  \"overfører\": \"overfør\",\n  \"overføres\": \"overfør\",\n  \"overføring\": \"overføring\",\n  \"overføringa\": \"overføring\",\n  \"overføringar\": \"overføring\",\n  \"overføringen\": \"overføring\",\n  \"overføringer\": \"overføring\",\n  \"overføringsadgang\": \"overføringsadgang\",\n  \"overføringsordningar\": \"overføringsordning\",\n  \"overføringsrett\": \"overføringsrett\",\n  \"overføringsretten\": \"overføringsrett\",\n  \"overført\": \"overført\",\n  \"overførte\": \"overført\",\n  \"overgang\": \"overgang\",\n  \"overgangen\": \"overgang\",\n  \"overganger\": \"overgang\",\n  \"overgangsbestemmelse\": \"overgangsbestemm\",\n  \"overgangsfasar\": \"overgangsfas\",\n  \"overgangsfase\": \"overgangsfas\",\n  \"overgangsordning\": \"overgangsordning\",\n  \"overgangsordninger\": \"overgangsordning\",\n  \"overgangsperiode\": \"overgangsperiod\",\n  \"overgangsperioden\": \"overgangsperiod\",\n  \"overgangsproblem\": \"overgangsproblem\",\n  \"overgangsregel\": \"overgangsregel\",\n  \"overgangsregelen\": \"overgangsregel\",\n  \"overgangsreglane\": \"overgangsregl\",\n  \"overgangsreglar\": \"overgangsregl\",\n  \"overgangsreglarikraftsetjing\": \"overgangsreglarikraftsetjing\",\n  \"overgangsregler\": \"overgangsregl\",\n  \"overgangstid\": \"overgangstid\",\n  \"overgangstida\": \"overgangstid\",\n  \"overgangstilfella\": \"overgangstilfell\",\n  \"overgir\": \"overgir\",\n  \"overgå\": \"overgå\",\n  \"overgår\": \"overgår\",\n  \"overhalden\": \"overhald\",\n  \"overhodet\": \"overhod\",\n  \"overholde\": \"overhold\",\n  \"overholdelse\": \"overhold\",\n  \"overholdes\": \"overhold\",\n  \"overholdt\": \"overhold\",\n  \"overkant\": \"overkant\",\n  \"overkapasitet\": \"overkapasit\",\n  \"overkjeven\": \"overkjev\",\n  \"overkomeleg\": \"overkom\",\n  \"overkroppen\": \"overkropp\",\n  \"overkurs\": \"overkur\",\n  \"overlastast\": \"overlast\",\n  \"overlatast\": \"overlat\",\n  \"overlate\": \"overlat\",\n  \"overlaten\": \"overlat\",\n  \"overlating\": \"overlating\",\n  \"overlatinga\": \"overlating\",\n  \"overlegninger\": \"overlegning\",\n  \"overlever\": \"overlev\",\n  \"overleverast\": \"overlever\",\n  \"overleveres\": \"overlever\",\n  \"overlevering\": \"overlevering\",\n  \"overleveringa\": \"overlevering\",\n  \"overmakten\": \"overmakt\",\n  \"overmodig\": \"overmod\",\n  \"overmotet\": \"overmot\",\n  \"overnatte\": \"overnatt\",\n  \"overnattet\": \"overnatt\",\n  \"overoppsyn\": \"overoppsyn\",\n  \"overorda\": \"overord\",\n  \"overordna\": \"overordn\",\n  \"overordnede\": \"overordn\",\n  \"overordnet\": \"overordn\",\n  \"overordnete\": \"overordnet\",\n  \"overprøving\": \"overprøving\",\n  \"overprøvinga\": \"overprøving\",\n  \"overraskelse\": \"overrask\",\n  \"overraskende\": \"overrask\",\n  \"overrasket\": \"overrask\",\n  \"oversendelsesforslag\": \"oversendelsesforslag\",\n  \"oversendes\": \"overs\",\n  \"oversendt\": \"oversend\",\n  \"overseten\": \"overset\",\n  \"oversetne\": \"oversetn\",\n  \"oversikt\": \"oversikt\",\n  \"oversikten\": \"oversikt\",\n  \"oversikter\": \"oversikt\",\n  \"oversiktleg\": \"oversikt\",\n  \"oversiktlege\": \"oversikt\",\n  \"oversiktlig\": \"oversikt\",\n  \"oversiktlige\": \"oversikt\",\n  \"oversiktlighet\": \"oversikt\",\n  \"oversiktsbildet\": \"oversiktsbild\",\n  \"oversiktsmessig\": \"oversiktsmess\",\n  \"oversiktstallene\": \"oversiktstall\",\n  \"oversitje\": \"oversitj\",\n  \"oversitjing\": \"oversitjing\",\n  \"oversjøisk\": \"oversjøisk\",\n  \"oversjøiske\": \"oversjøisk\",\n  \"overskot\": \"overskot\",\n  \"overskotet\": \"overskot\",\n  \"overskotslikviditet\": \"overskotslikvidit\",\n  \"overskotslikviditeten\": \"overskotslikviditet\",\n  \"overskotsutdeling\": \"overskotsutdeling\",\n  \"overskott\": \"overskott\",\n  \"overskottsutdelning\": \"overskottsutdelning\",\n  \"overskrevs\": \"overskrev\",\n  \"overskride\": \"overskrid\",\n  \"overskrides\": \"overskrid\",\n  \"overskriding\": \"overskriding\",\n  \"overskridingar\": \"overskriding\",\n  \"overskriften\": \"overskrift\",\n  \"overskudd\": \"overskudd\",\n  \"overskuddene\": \"overskudd\",\n  \"overskuddet\": \"overskudd\",\n  \"overskuddsdeling\": \"overskuddsdeling\",\n  \"overskuddsfond\": \"overskuddsfond\",\n  \"overskuddsgods\": \"overskuddsgod\",\n  \"overskuddstildeling\": \"overskuddstildeling\",\n  \"overskuelig\": \"oversku\",\n  \"overskytande\": \"overskyt\",\n  \"overskytende\": \"overskyt\",\n  \"overskyter\": \"overskyt\",\n  \"overskøyting\": \"overskøyting\",\n  \"overslaget\": \"overslag\",\n  \"overstige\": \"overst\",\n  \"overstiger\": \"overst\",\n  \"oversvømmelsen\": \"oversvømm\",\n  \"oversyn\": \"oversyn\",\n  \"overta\": \"overt\",\n  \"overtagelse\": \"overtag\",\n  \"overtakande\": \"overtak\",\n  \"overtakast\": \"overtak\",\n  \"overtakende\": \"overtak\",\n  \"overtaket\": \"overtak\",\n  \"overtaking\": \"overtaking\",\n  \"overtakinga\": \"overtaking\",\n  \"overtale\": \"overtal\",\n  \"overtaler\": \"overtal\",\n  \"overtar\": \"overt\",\n  \"overtatt\": \"overtatt\",\n  \"overtek\": \"overtek\",\n  \"overteke\": \"overtek\",\n  \"overteken\": \"overtek\",\n  \"overtekne\": \"overtekn\",\n  \"overtid\": \"overtid\",\n  \"overtidsbetaling\": \"overtidsbetaling\",\n  \"overtok\": \"overtok\",\n  \"overtredelse\": \"overtred\",\n  \"overtyding\": \"overtyding\",\n  \"overveielser\": \"overvei\",\n  \"overvekt\": \"overvekt\",\n  \"overvinne\": \"overvinn\",\n  \"overvunne\": \"overvunn\",\n  \"overvurdering\": \"overvurdering\",\n  \"overvurdert\": \"overvurder\",\n  \"overvurderte\": \"overvurder\",\n  \"overvåking\": \"overvåking\",\n  \"overvåkingen\": \"overvåking\",\n  \"ovh\": \"ovh\",\n  \"ovn\": \"ovn\",\n  \"ownership\": \"ownership\",\n  \"p\": \"p\",\n  \"pa\": \"pa\",\n  \"pakke\": \"pakk\",\n  \"pakker\": \"pakk\",\n  \"pakkes\": \"pakk\",\n  \"pakket\": \"pakk\",\n  \"palletert\": \"palleter\",\n  \"pannen\": \"pann\",\n  \"pant\": \"pant\",\n  \"pantebrev\": \"pantebrev\",\n  \"pantebreva\": \"pantebrev\",\n  \"pantekravet\": \"pantekrav\",\n  \"pantel\": \"pantel\",\n  \"pantelova\": \"pant\",\n  \"panteobjekt\": \"panteobjekt\",\n  \"panterett\": \"panterett\",\n  \"panterettane\": \"panterett\",\n  \"panterettar\": \"panterett\",\n  \"panteretten\": \"panterett\",\n  \"pantesikra\": \"pantesikr\",\n  \"pantesikring\": \"pantesikring\",\n  \"pantet\": \"pant\",\n  \"pantetrygd\": \"pantetrygd\",\n  \"panthavar\": \"panthav\",\n  \"panthavarane\": \"panthavar\",\n  \"panthavarar\": \"panthavar\",\n  \"panthavaren\": \"panthavar\",\n  \"panthavarforhold\": \"panthavarforhold\",\n  \"pantobjekt\": \"pantobjekt\",\n  \"pantobjektet\": \"pantobjekt\",\n  \"pantobligasjonane\": \"pantobligasjon\",\n  \"pantobligasjonar\": \"pantobligasjon\",\n  \"pantobligasjonen\": \"pantobligasjon\",\n  \"pantsetjaren\": \"pantsetjar\",\n  \"pantsetjast\": \"pantsetj\",\n  \"pantsetje\": \"pantsetj\",\n  \"pantsetjing\": \"pantsetjing\",\n  \"pantsett\": \"pantsett\",\n  \"pantsettelse\": \"pantsett\",\n  \"pantsettes\": \"pantsett\",\n  \"paper\": \"pap\",\n  \"papir\": \"papir\",\n  \"papireksport\": \"papireksport\",\n  \"papirindustri\": \"papirindustri\",\n  \"papirindustrien\": \"papirindustri\",\n  \"papirvarer\": \"papirvar\",\n  \"papp\": \"papp\",\n  \"par\": \"par\",\n  \"parabolantenna\": \"parabolantenn\",\n  \"parabolantenner\": \"parabolantenn\",\n  \"paradoks\": \"paradoks\",\n  \"paradoksale\": \"paradoksal\",\n  \"paragraf\": \"paragraf\",\n  \"paragrafane\": \"paragraf\",\n  \"paragrafar\": \"paragraf\",\n  \"paragrafen\": \"paragraf\",\n  \"paragrafens\": \"paragraf\",\n  \"paragrafer\": \"paragraf\",\n  \"parallell\": \"parallell\",\n  \"parallellar\": \"parallell\",\n  \"parallelle\": \"parallell\",\n  \"parallellen\": \"parallell\",\n  \"paralleller\": \"parallell\",\n  \"parallelt\": \"parallelt\",\n  \"parametere\": \"parameter\",\n  \"parametre\": \"parametr\",\n  \"parentes\": \"parent\",\n  \"paret\": \"par\",\n  \"parkeringsplass\": \"parkeringsplass\",\n  \"part\": \"part\",\n  \"partane\": \"part\",\n  \"partar\": \"part\",\n  \"parten\": \"part\",\n  \"parter\": \"part\",\n  \"parti\": \"parti\",\n  \"partier\": \"parti\",\n  \"partilast\": \"partil\",\n  \"partnarar\": \"partnar\",\n  \"partner\": \"partn\",\n  \"partnerskap\": \"partnerskap\",\n  \"partnerskapsliknende\": \"partnerskapslikn\",\n  \"partsforhold\": \"partsforhold\",\n  \"pass\": \"pass\",\n  \"passande\": \"pass\",\n  \"passar\": \"pass\",\n  \"passasjerer\": \"passasjer\",\n  \"passasjerfergene\": \"passasjerferg\",\n  \"passasjerferjen\": \"passasjerferj\",\n  \"passasjerferjene\": \"passasjerferj\",\n  \"passasjerferjer\": \"passasjerferj\",\n  \"passasjergrunnlag\": \"passasjergrunnlag\",\n  \"passasjertrafikken\": \"passasjertrafikk\",\n  \"passe\": \"pass\",\n  \"passende\": \"pass\",\n  \"passer\": \"pass\",\n  \"passere\": \"passer\",\n  \"passerer\": \"passer\",\n  \"passering\": \"passering\",\n  \"passerte\": \"passer\",\n  \"passiv\": \"passiv\",\n  \"passiva\": \"passiv\",\n  \"passivitet\": \"passivit\",\n  \"patterød\": \"patterød\",\n  \"pause\": \"paus\",\n  \"pausen\": \"paus\",\n  \"pbe\": \"pbe\",\n  \"pbes\": \"pbes\",\n  \"pbl\": \"pbl\",\n  \"peikast\": \"peik\",\n  \"peike\": \"peik\",\n  \"peiker\": \"peik\",\n  \"peikt\": \"peikt\",\n  \"peikte\": \"peikt\",\n  \"peisen\": \"peis\",\n  \"pek\": \"pek\",\n  \"peke\": \"pek\",\n  \"pekefinger\": \"pekefing\",\n  \"pekepinn\": \"pekepinn\",\n  \"peker\": \"pek\",\n  \"pekes\": \"pek\",\n  \"pekt\": \"pekt\",\n  \"peler\": \"pel\",\n  \"pels\": \"pel\",\n  \"pendler\": \"pendl\",\n  \"pene\": \"pen\",\n  \"peneste\": \"penest\",\n  \"pengane\": \"peng\",\n  \"pengar\": \"peng\",\n  \"penge\": \"peng\",\n  \"pengefordringer\": \"pengefordring\",\n  \"pengekrav\": \"pengekrav\",\n  \"pengekreditorar\": \"pengekreditor\",\n  \"pengemangel\": \"pengemangel\",\n  \"penger\": \"peng\",\n  \"pensionkostnader\": \"pensionkostnad\",\n  \"pensions\": \"pension\",\n  \"pensjon\": \"pensjon\",\n  \"pensjonalderen\": \"pensjonalder\",\n  \"pensjonen\": \"pensjon\",\n  \"pensjonene\": \"pensjon\",\n  \"pensjonenes\": \"pensjon\",\n  \"pensjonens\": \"pensjon\",\n  \"pensjoner\": \"pensjon\",\n  \"pensjonering\": \"pensjonering\",\n  \"pensjoneringstidspunktet\": \"pensjoneringstidspunkt\",\n  \"pensjonerte\": \"pensjoner\",\n  \"pensjonist\": \"pensjonist\",\n  \"pensjonistbeskatningen\": \"pensjonistbeskatning\",\n  \"pensjonistektepar\": \"pensjonistektep\",\n  \"pensjonisten\": \"pensjonist\",\n  \"pensjonistene\": \"pensjonist\",\n  \"pensjonistenes\": \"pensjonist\",\n  \"pensjonistens\": \"pensjonist\",\n  \"pensjonister\": \"pensjonist\",\n  \"pensjonists\": \"pensjonist\",\n  \"pensjonisttilværelse\": \"pensjonisttilvær\",\n  \"pensjonisttilværelsen\": \"pensjonisttilvær\",\n  \"pensjonkapitalen\": \"pensjonkapital\",\n  \"pensjonnivå\": \"pensjonnivå\",\n  \"pensjons\": \"pensjon\",\n  \"pensjonsalder\": \"pensjonsald\",\n  \"pensjonsalderen\": \"pensjonsalder\",\n  \"pensjonsaldersnormen\": \"pensjonsaldersnorm\",\n  \"pensjonsaldre\": \"pensjonsaldr\",\n  \"pensjonsavtale\": \"pensjonsavtal\",\n  \"pensjonsavtalene\": \"pensjonsavtal\",\n  \"pensjonsavtaler\": \"pensjonsavtal\",\n  \"pensjonsbegrepet\": \"pensjonsbegrep\",\n  \"pensjonsbehov\": \"pensjonsbehov\",\n  \"pensjonsbehovet\": \"pensjonsbehov\",\n  \"pensjonsbeløp\": \"pensjonsbeløp\",\n  \"pensjonsberegningen\": \"pensjonsberegning\",\n  \"pensjonsberettigede\": \"pensjonsberett\",\n  \"pensjonsberettigedes\": \"pensjonsberett\",\n  \"pensjonsbeskatning\": \"pensjonsbeskatning\",\n  \"pensjonsbeskatningen\": \"pensjonsbeskatning\",\n  \"pensjonsbevis\": \"pensjonsbevis\",\n  \"pensjonsfond\": \"pensjonsfond\",\n  \"pensjonsfondene\": \"pensjonsfond\",\n  \"pensjonsforhold\": \"pensjonsforhold\",\n  \"pensjonsforholdene\": \"pensjonsforhold\",\n  \"pensjonsformer\": \"pensjonsform\",\n  \"pensjonsformue\": \"pensjonsformu\",\n  \"pensjonsformuen\": \"pensjonsformu\",\n  \"pensjonsformål\": \"pensjonsformål\",\n  \"pensjonsforpliktelse\": \"pensjonsforplikt\",\n  \"pensjonsforpliktelser\": \"pensjonsforplikt\",\n  \"pensjonsforsikring\": \"pensjonsforsikring\",\n  \"pensjonsforsikringen\": \"pensjonsforsikring\",\n  \"pensjonsforsikringer\": \"pensjonsforsikring\",\n  \"pensjonsforsikringsavtale\": \"pensjonsforsikringsavtal\",\n  \"pensjonsforsikringsavtaler\": \"pensjonsforsikringsavtal\",\n  \"pensjonsforsikringskontrakt\": \"pensjonsforsikringskontrakt\",\n  \"pensjonsforsikringskontrakter\": \"pensjonsforsikringskontrakt\",\n  \"pensjonsforsikringsordning\": \"pensjonsforsikringsordning\",\n  \"pensjonsforsikringsordninger\": \"pensjonsforsikringsordning\",\n  \"pensjonsforsikringspremie\": \"pensjonsforsikringspremi\",\n  \"pensjonsforsikringsutvalget\": \"pensjonsforsikringsutvalg\",\n  \"pensjonsforum\": \"pensjonsforum\",\n  \"pensjonsgivende\": \"pensjonsgiv\",\n  \"pensjonsgrunnlaget\": \"pensjonsgrunnlag\",\n  \"pensjonsinnbetaling\": \"pensjonsinnbetaling\",\n  \"pensjonsinnbetalingene\": \"pensjonsinnbetaling\",\n  \"pensjonsinnbetalinger\": \"pensjonsinnbetaling\",\n  \"pensjonsinnretningen\": \"pensjonsinnretning\",\n  \"pensjonsinnretningene\": \"pensjonsinnretning\",\n  \"pensjonsinnskudd\": \"pensjonsinnskudd\",\n  \"pensjonsinnskuddene\": \"pensjonsinnskudd\",\n  \"pensjonsinnskuddenes\": \"pensjonsinnskudd\",\n  \"pensjonsinnskuddet\": \"pensjonsinnskudd\",\n  \"pensjonsinntekt\": \"pensjonsinntekt\",\n  \"pensjonsintervallet\": \"pensjonsintervall\",\n  \"pensjonskapital\": \"pensjonskapital\",\n  \"pensjonskapitalbevis\": \"pensjonskapitalbevis\",\n  \"pensjonskapitalbeviset\": \"pensjonskapitalbevis\",\n  \"pensjonskapitalen\": \"pensjonskapital\",\n  \"pensjonskapitalens\": \"pensjonskapital\",\n  \"pensjonskapitalkonti\": \"pensjonskapitalkonti\",\n  \"pensjonskapitalkontoen\": \"pensjonskapitalkonto\",\n  \"pensjonskapitel\": \"pensjonskapitel\",\n  \"pensjonskasse\": \"pensjonskass\",\n  \"pensjonskasseforskriften\": \"pensjonskasseforskrift\",\n  \"pensjonskassen\": \"pensjonskass\",\n  \"pensjonskassene\": \"pensjonskass\",\n  \"pensjonskassenes\": \"pensjonskass\",\n  \"pensjonskassens\": \"pensjonskass\",\n  \"pensjonskasser\": \"pensjonskass\",\n  \"pensjonskassers\": \"pensjonskass\",\n  \"pensjonskollektivet\": \"pensjonskollektiv\",\n  \"pensjonskonti\": \"pensjonskonti\",\n  \"pensjonskonto\": \"pensjonskonto\",\n  \"pensjonskontoen\": \"pensjonskonto\",\n  \"pensjonskostnaden\": \"pensjonskostnad\",\n  \"pensjonskostnadene\": \"pensjonskostnad\",\n  \"pensjonskostnader\": \"pensjonskostnad\",\n  \"pensjonsløsninger\": \"pensjonsløsning\",\n  \"pensjonsmessig\": \"pensjonsmess\",\n  \"pensjonsmessige\": \"pensjonsmess\",\n  \"pensjonsmidlene\": \"pensjonsmidl\",\n  \"pensjonsmidler\": \"pensjonsmidl\",\n  \"pensjonsnivå\": \"pensjonsnivå\",\n  \"pensjonsnivåene\": \"pensjonsnivå\",\n  \"pensjonsnivået\": \"pensjonsnivå\",\n  \"pensjonsoppbygging\": \"pensjonsoppbygging\",\n  \"pensjonsopptjening\": \"pensjonsopptjening\",\n  \"pensjonsordning\": \"pensjonsordning\",\n  \"pensjonsordningen\": \"pensjonsordning\",\n  \"pensjonsordningene\": \"pensjonsordning\",\n  \"pensjonsordningens\": \"pensjonsordning\",\n  \"pensjonsordninger\": \"pensjonsordning\",\n  \"pensjonsordningers\": \"pensjonsordning\",\n  \"pensjonsordnings\": \"pensjonsordning\",\n  \"pensjonspareavtaler\": \"pensjonspareavtal\",\n  \"pensjonsparing\": \"pensjonsparing\",\n  \"pensjonsplan\": \"pensjonsplan\",\n  \"pensjonsplanen\": \"pensjonsplan\",\n  \"pensjonsplanene\": \"pensjonsplan\",\n  \"pensjonsplaner\": \"pensjonsplan\",\n  \"pensjonspolitikk\": \"pensjonspolitikk\",\n  \"pensjonspolitisk\": \"pensjonspolitisk\",\n  \"pensjonspolitiske\": \"pensjonspolitisk\",\n  \"pensjonsprosent\": \"pensjonsprosent\",\n  \"pensjonsprosenten\": \"pensjonsprosent\",\n  \"pensjonsreguleringsfond\": \"pensjonsreguleringsfond\",\n  \"pensjonsreserve\": \"pensjonsreserv\",\n  \"pensjonsrett\": \"pensjonsrett\",\n  \"pensjonsrettigheten\": \"pensjonsrett\",\n  \"pensjonsrettighetene\": \"pensjonsrett\",\n  \"pensjonsrettigheter\": \"pensjonsrett\",\n  \"pensjonssammenheng\": \"pensjonssammenheng\",\n  \"pensjonsskyddscentralen\": \"pensjonsskyddscentral\",\n  \"pensjonsspareavtale\": \"pensjonsspareavtal\",\n  \"pensjonsspareavtalen\": \"pensjonsspareavtal\",\n  \"pensjonsspareavtalene\": \"pensjonsspareavtal\",\n  \"pensjonsspareavtaler\": \"pensjonsspareavtal\",\n  \"pensjonsspareren\": \"pensjonssparer\",\n  \"pensjonssparerens\": \"pensjonssparer\",\n  \"pensjonssparing\": \"pensjonssparing\",\n  \"pensjonssparingen\": \"pensjonssparing\",\n  \"pensjonsspørsmål\": \"pensjonsspørsmål\",\n  \"pensjonssystem\": \"pensjonssystem\",\n  \"pensjonssystemene\": \"pensjonssystem\",\n  \"pensjonssystemer\": \"pensjonssystem\",\n  \"pensjonssystemet\": \"pensjonssystem\",\n  \"pensjonstilbud\": \"pensjonstilbud\",\n  \"pensjonstilfellet\": \"pensjonstilfell\",\n  \"pensjonstilskudd\": \"pensjonstilskudd\",\n  \"pensjonstilskuddet\": \"pensjonstilskudd\",\n  \"pensjonsutbetaling\": \"pensjonsutbetaling\",\n  \"pensjonsutbetalingen\": \"pensjonsutbetaling\",\n  \"pensjonsutbetalingene\": \"pensjonsutbetaling\",\n  \"pensjonsutbetalinger\": \"pensjonsutbetaling\",\n  \"pensjonsutgifter\": \"pensjonsutgift\",\n  \"pensjonsvilkår\": \"pensjonsvilkår\",\n  \"pensjonsytelse\": \"pensjonsyt\",\n  \"pensjonsytelsen\": \"pensjonsyt\",\n  \"pensjonsytelsene\": \"pensjonsyt\",\n  \"pensjonsytelser\": \"pensjonsyt\",\n  \"pensjonsøyemed\": \"pensjonsøyemed\",\n  \"pent\": \"pent\",\n  \"per\": \"per\",\n  \"periodar\": \"period\",\n  \"periode\": \"period\",\n  \"perioden\": \"period\",\n  \"periodene\": \"period\",\n  \"periodens\": \"period\",\n  \"perioder\": \"period\",\n  \"periodiseres\": \"periodiser\",\n  \"periodiseringen\": \"periodisering\",\n  \"periodiseringsprinsipp\": \"periodiseringsprinsipp\",\n  \"periodiseringsprinsipper\": \"periodiseringsprinsipp\",\n  \"periodisert\": \"periodiser\",\n  \"periodisk\": \"periodisk\",\n  \"periodiske\": \"periodisk\",\n  \"permanens\": \"perman\",\n  \"permanent\": \"permanent\",\n  \"permanente\": \"permanent\",\n  \"permisjon\": \"permisjon\",\n  \"permisjonen\": \"permisjon\",\n  \"permisjoner\": \"permisjon\",\n  \"permisjonstiden\": \"permisjonstid\",\n  \"permisjonstidspunktet\": \"permisjonstidspunkt\",\n  \"permittering\": \"permittering\",\n  \"permitteringer\": \"permittering\",\n  \"permittert\": \"permitter\",\n  \"permitterte\": \"permitter\",\n  \"person\": \"person\",\n  \"personane\": \"person\",\n  \"personar\": \"person\",\n  \"personbiler\": \"personbil\",\n  \"personen\": \"person\",\n  \"personene\": \"person\",\n  \"personens\": \"person\",\n  \"personer\": \"person\",\n  \"personfellesskap\": \"personfellesskap\",\n  \"persongrupper\": \"persongrupp\",\n  \"personinntekt\": \"personinntekt\",\n  \"personinntekten\": \"personinntekt\",\n  \"personleg\": \"person\",\n  \"personlege\": \"person\",\n  \"personopplysningar\": \"personopplysning\",\n  \"personskifte\": \"personskift\",\n  \"persontrafikken\": \"persontrafikk\",\n  \"perspektiv\": \"perspektiv\",\n  \"perspektivene\": \"perspektiv\",\n  \"perspektiver\": \"perspektiv\",\n  \"perspektivet\": \"perspektiv\",\n  \"persson\": \"persson\",\n  \"peser\": \"pes\",\n  \"pest\": \"pest\",\n  \"peter\": \"pet\",\n  \"peterson\": \"peterson\",\n  \"petter\": \"pett\",\n  \"pga\": \"pga\",\n  \"philipps\": \"philipp\",\n  \"piggeple\": \"piggepl\",\n  \"pike\": \"pik\",\n  \"piken\": \"pik\",\n  \"pil\": \"pil\",\n  \"pilen\": \"pil\",\n  \"piler\": \"pil\",\n  \"pilskudd\": \"pilskudd\",\n  \"pimpesten\": \"pimpest\",\n  \"pinefulle\": \"pinefull\",\n  \"pinne\": \"pinn\",\n  \"pinsler\": \"pinsl\",\n  \"pipende\": \"pip\",\n  \"piper\": \"pip\",\n  \"pipete\": \"pipet\",\n  \"pirret\": \"pirr\",\n  \"pisker\": \"pisk\",\n  \"pisser\": \"piss\",\n  \"pjokk\": \"pjokk\",\n  \"pjusket\": \"pjusk\",\n  \"pjuskete\": \"pjusket\",\n  \"pkt\": \"pkt\",\n  \"plage\": \"plag\",\n  \"plager\": \"plag\",\n  \"plaget\": \"plag\",\n  \"plagsam\": \"plagsam\",\n  \"plan\": \"plan\",\n  \"planane\": \"plan\",\n  \"planar\": \"plan\",\n  \"planarbeid\": \"planarbeid\",\n  \"planarbeider\": \"planarbeid\",\n  \"planarbeidet\": \"planarbeid\",\n  \"plandokument\": \"plandokument\",\n  \"planen\": \"plan\",\n  \"planene\": \"plan\",\n  \"planens\": \"plan\",\n  \"planer\": \"plan\",\n  \"planforutsetningene\": \"planforutsetning\",\n  \"planforutsetninger\": \"planforutsetning\",\n  \"plangrunnlag\": \"plangrunnlag\",\n  \"plangrunnlaget\": \"plangrunnlag\",\n  \"planhorisont\": \"planhorisont\",\n  \"planhorisonter\": \"planhorisont\",\n  \"planlagde\": \"planlagd\",\n  \"planlagt\": \"planlagt\",\n  \"planlagte\": \"planlagt\",\n  \"planlegg\": \"planlegg\",\n  \"planlegge\": \"planlegg\",\n  \"planlegger\": \"planlegg\",\n  \"planlegges\": \"planlegg\",\n  \"planlegging\": \"planlegging\",\n  \"planlegginga\": \"planlegging\",\n  \"planleggingen\": \"planlegging\",\n  \"planleggings\": \"planlegging\",\n  \"planleggingsstadiet\": \"planleggingsstadi\",\n  \"planleggingsvirksomhet\": \"planleggingsvirksom\",\n  \"planleggje\": \"planleggj\",\n  \"planlovgivningen\": \"planlovgivning\",\n  \"planløsninger\": \"planløsning\",\n  \"planmessig\": \"planmess\",\n  \"planoppgave\": \"planoppgav\",\n  \"planperioden\": \"planperiod\",\n  \"planprosessen\": \"planprosess\",\n  \"planrammen\": \"planramm\",\n  \"planrammer\": \"planramm\",\n  \"plansituasjonen\": \"plansituasjon\",\n  \"planstatus\": \"planstatus\",\n  \"planstyresmakt\": \"planstyresmakt\",\n  \"plante\": \"plant\",\n  \"planter\": \"plant\",\n  \"plantet\": \"plant\",\n  \"plantype\": \"plantyp\",\n  \"planvedtak\": \"planvedtak\",\n  \"plar\": \"plar\",\n  \"plaske\": \"plask\",\n  \"plasker\": \"plask\",\n  \"plass\": \"plass\",\n  \"plassen\": \"plass\",\n  \"plasserast\": \"plasser\",\n  \"plassere\": \"plasser\",\n  \"plasserer\": \"plasser\",\n  \"plasseres\": \"plasser\",\n  \"plassering\": \"plassering\",\n  \"plasseringa\": \"plassering\",\n  \"plasseringar\": \"plassering\",\n  \"plasseringen\": \"plassering\",\n  \"plasseringer\": \"plassering\",\n  \"plasseringsalternativer\": \"plasseringsalternativ\",\n  \"plasseringsformene\": \"plasseringsform\",\n  \"plasseringsformer\": \"plasseringsform\",\n  \"plassert\": \"plasser\",\n  \"plasserte\": \"plasser\",\n  \"plattform\": \"plattform\",\n  \"pleie\": \"pleie\",\n  \"pleier\": \"pleier\",\n  \"plenumsmøter\": \"plenumsmøt\",\n  \"plikt\": \"plikt\",\n  \"plikta\": \"plikt\",\n  \"pliktbrot\": \"pliktbrot\",\n  \"plikten\": \"plikt\",\n  \"pliktene\": \"plikt\",\n  \"plikter\": \"plikt\",\n  \"pliktet\": \"plikt\",\n  \"pliktig\": \"plikt\",\n  \"pliktige\": \"plikt\",\n  \"plm\": \"plm\",\n  \"plogen\": \"plog\",\n  \"pludder\": \"pludd\",\n  \"plukke\": \"plukk\",\n  \"plukket\": \"plukk\",\n  \"pluss\": \"pluss\",\n  \"plutselig\": \"pluts\",\n  \"plystrer\": \"plystr\",\n  \"pløyer\": \"pløyer\",\n  \"poeng\": \"poeng\",\n  \"poenget\": \"poeng\",\n  \"poenghistorie\": \"poenghistori\",\n  \"poetisk\": \"poetisk\",\n  \"poetiske\": \"poetisk\",\n  \"polisen\": \"polis\",\n  \"politikk\": \"politikk\",\n  \"politikken\": \"politikk\",\n  \"politikkområde\": \"politikkområd\",\n  \"politikkområder\": \"politikkområd\",\n  \"politisk\": \"politisk\",\n  \"politiske\": \"politisk\",\n  \"porsgrunn\": \"porsgrunn\",\n  \"port\": \"port\",\n  \"portefølje\": \"portefølj\",\n  \"porteføljen\": \"portefølj\",\n  \"porteføljer\": \"portefølj\",\n  \"porteføljesammensetningen\": \"porteføljesammensetning\",\n  \"porten\": \"port\",\n  \"portnerservice\": \"portnerservic\",\n  \"ports\": \"port\",\n  \"portstolper\": \"portstolp\",\n  \"portvakt\": \"portvakt\",\n  \"posisjon\": \"posisjon\",\n  \"posisjonar\": \"posisjon\",\n  \"posisjonen\": \"posisjon\",\n  \"posisjonere\": \"posisjoner\",\n  \"posisjoneres\": \"posisjoner\",\n  \"posisjonering\": \"posisjonering\",\n  \"posisjonert\": \"posisjoner\",\n  \"positiv\": \"positiv\",\n  \"positive\": \"positiv\",\n  \"positivt\": \"positiv\",\n  \"post\": \"post\",\n  \"postadresse\": \"postadress\",\n  \"postkassene\": \"postkass\",\n  \"postselskaper\": \"postselskap\",\n  \"poten\": \"pot\",\n  \"potensial\": \"potensial\",\n  \"potensiale\": \"potensial\",\n  \"potensialene\": \"potensial\",\n  \"potensialet\": \"potensial\",\n  \"potensiell\": \"potensiell\",\n  \"potensielle\": \"potensiell\",\n  \"potensielt\": \"potensielt\",\n  \"pr\": \"pr\",\n  \"praksis\": \"praksis\",\n  \"praksisen\": \"praksis\",\n  \"praksisens\": \"praksis\",\n  \"praktiserbart\": \"praktiserbart\",\n  \"praktiserer\": \"praktiser\",\n  \"praktisering\": \"praktisering\",\n  \"praktiseringa\": \"praktisering\",\n  \"praktiseringen\": \"praktisering\",\n  \"praktisert\": \"praktiser\",\n  \"praktisk\": \"praktisk\",\n  \"praktiske\": \"praktisk\",\n  \"prammen\": \"pramm\",\n  \"prat\": \"prat\",\n  \"preferanser\": \"preferans\",\n  \"prefereres\": \"preferer\",\n  \"preg\": \"preg\",\n  \"prega\": \"preg\",\n  \"preges\": \"preg\",\n  \"preget\": \"preg\",\n  \"preklusiv\": \"preklusiv\",\n  \"preklusivt\": \"preklusiv\",\n  \"prekær\": \"prekær\",\n  \"prekære\": \"prekær\",\n  \"preller\": \"prell\",\n  \"premiar\": \"premi\",\n  \"premie\": \"premi\",\n  \"premiebeløp\": \"premiebeløp\",\n  \"premiebeløpene\": \"premiebeløp\",\n  \"premieberegning\": \"premieberegning\",\n  \"premieberegningen\": \"premieberegning\",\n  \"premiebetaling\": \"premiebetaling\",\n  \"premiebetalingen\": \"premiebetaling\",\n  \"premiebetalinger\": \"premiebetaling\",\n  \"premiebetalingsperiodens\": \"premiebetalingsperiod\",\n  \"premiebetalingstiden\": \"premiebetalingstid\",\n  \"premiefastsettelsen\": \"premiefastsett\",\n  \"premiefond\": \"premiefond\",\n  \"premiefondet\": \"premiefond\",\n  \"premiefondets\": \"premiefond\",\n  \"premiefondsmidlene\": \"premiefondsmidl\",\n  \"premiefondsmidler\": \"premiefondsmidl\",\n  \"premiefritak\": \"premiefritak\",\n  \"premiefritaket\": \"premiefritak\",\n  \"premieinnbetaling\": \"premieinnbetaling\",\n  \"premieinnbetalingar\": \"premieinnbetaling\",\n  \"premieinnbetalingen\": \"premieinnbetaling\",\n  \"premieinnbetalingene\": \"premieinnbetaling\",\n  \"premieinnbetalinger\": \"premieinnbetaling\",\n  \"premien\": \"premi\",\n  \"premiene\": \"premi\",\n  \"premier\": \"premi\",\n  \"premiereserve\": \"premiereserv\",\n  \"premiereserven\": \"premiereserv\",\n  \"premieskatteloven\": \"premieskatt\",\n  \"premieskatten\": \"premieskatt\",\n  \"premietariffene\": \"premietariff\",\n  \"premieøkningene\": \"premieøkning\",\n  \"premiss\": \"premiss\",\n  \"premissane\": \"premiss\",\n  \"premissar\": \"premiss\",\n  \"premissene\": \"premiss\",\n  \"premisser\": \"premiss\",\n  \"presentasjon\": \"presentasjon\",\n  \"presentasjonen\": \"presentasjon\",\n  \"presentere\": \"presenter\",\n  \"presenterer\": \"presenter\",\n  \"presenteres\": \"presenter\",\n  \"presentert\": \"presenter\",\n  \"presenterte\": \"presenter\",\n  \"presisere\": \"presiser\",\n  \"presiserer\": \"presiser\",\n  \"presiseres\": \"presiser\",\n  \"presisering\": \"presisering\",\n  \"presiseringa\": \"presisering\",\n  \"presiseringen\": \"presisering\",\n  \"presisert\": \"presiser\",\n  \"presisjon\": \"presisjon\",\n  \"presist\": \"presist\",\n  \"press\": \"press\",\n  \"pressede\": \"press\",\n  \"presser\": \"press\",\n  \"presserende\": \"presser\",\n  \"presses\": \"press\",\n  \"presset\": \"press\",\n  \"presstendenser\": \"presstendens\",\n  \"presumptivt\": \"presumptiv\",\n  \"preventivt\": \"preventiv\",\n  \"previdenza\": \"previdenz\",\n  \"prikk\": \"prikk\",\n  \"primære\": \"primær\",\n  \"primært\": \"primært\",\n  \"prinsessen\": \"prinsess\",\n  \"prinsipalt\": \"prinsipalt\",\n  \"prinsipiell\": \"prinsipiell\",\n  \"prinsipielle\": \"prinsipiell\",\n  \"prinsipielt\": \"prinsipielt\",\n  \"prinsipp\": \"prinsipp\",\n  \"prinsippa\": \"prinsipp\",\n  \"prinsippene\": \"prinsipp\",\n  \"prinsipper\": \"prinsipp\",\n  \"prinsippet\": \"prinsipp\",\n  \"prinsippforskjeller\": \"prinsippforskjell\",\n  \"prinsippføresegn\": \"prinsippføresegn\",\n  \"priori\": \"priori\",\n  \"prioritere\": \"prioriter\",\n  \"prioriteres\": \"prioriter\",\n  \"prioritering\": \"prioritering\",\n  \"prioriteringer\": \"prioritering\",\n  \"prioritert\": \"prioriter\",\n  \"prioriterte\": \"prioriter\",\n  \"prioritet\": \"priorit\",\n  \"prioritetar\": \"prioritet\",\n  \"prioriteten\": \"prioritet\",\n  \"prioritetsendringar\": \"prioritetsendring\",\n  \"prioritetsreglane\": \"prioritetsregl\",\n  \"prioritetsreglar\": \"prioritetsregl\",\n  \"prioritetsviking\": \"prioritetsviking\",\n  \"pris\": \"pris\",\n  \"prisane\": \"pris\",\n  \"prisar\": \"pris\",\n  \"prisavslag\": \"prisavslag\",\n  \"prisdanninga\": \"prisdanning\",\n  \"prisen\": \"pris\",\n  \"prisene\": \"pris\",\n  \"priser\": \"pris\",\n  \"prises\": \"pris\",\n  \"priset\": \"pris\",\n  \"prisfastsetjing\": \"prisfastsetjing\",\n  \"prising\": \"prising\",\n  \"prisingen\": \"prising\",\n  \"prisklasse\": \"prisklass\",\n  \"prisklausular\": \"prisklausul\",\n  \"priskonkurranse\": \"priskonkurrans\",\n  \"prisnivå\": \"prisnivå\",\n  \"prisnivået\": \"prisnivå\",\n  \"prisreglane\": \"prisregl\",\n  \"prisreglar\": \"prisregl\",\n  \"prisregulering\": \"prisregulering\",\n  \"prisreguleringa\": \"prisregulering\",\n  \"prisregulert\": \"prisreguler\",\n  \"prissetjinga\": \"prissetjing\",\n  \"prissetting\": \"prissetting\",\n  \"prisskilnader\": \"prisskilnad\",\n  \"prisstiging\": \"prisstiging\",\n  \"prisstigning\": \"prisstigning\",\n  \"prisstigningen\": \"prisstigning\",\n  \"prisvilkår\": \"prisvilkår\",\n  \"privat\": \"privat\",\n  \"privatdisponibel\": \"privatdisponibel\",\n  \"private\": \"privat\",\n  \"privatrett\": \"privatrett\",\n  \"privatrettslege\": \"privatretts\",\n  \"privatrettslig\": \"privatretts\",\n  \"problem\": \"problem\",\n  \"problematikken\": \"problematikk\",\n  \"problematisk\": \"problematisk\",\n  \"problemene\": \"problem\",\n  \"problemer\": \"problem\",\n  \"problemet\": \"problem\",\n  \"problemstilling\": \"problemstilling\",\n  \"problemstillinga\": \"problemstilling\",\n  \"problemstillingane\": \"problemstilling\",\n  \"problemstillingar\": \"problemstilling\",\n  \"problemstillingen\": \"problemstilling\",\n  \"problemstillingene\": \"problemstilling\",\n  \"problemstillinger\": \"problemstilling\",\n  \"prod\": \"prod\",\n  \"produksjon\": \"produksjon\",\n  \"produksjonen\": \"produksjon\",\n  \"produksjons\": \"produksjon\",\n  \"produksjonsanlegg\": \"produksjonsanlegg\",\n  \"produksjonsbedrifter\": \"produksjonsbedrift\",\n  \"produksjonsgrunnlag\": \"produksjonsgrunnlag\",\n  \"produksjonskapasitet\": \"produksjonskapasit\",\n  \"produksjonskostnader\": \"produksjonskostnad\",\n  \"produksjonsleddet\": \"produksjonsledd\",\n  \"produksjonsmønster\": \"produksjonsmønst\",\n  \"produksjonsmønstre\": \"produksjonsmønstr\",\n  \"produksjonsområde\": \"produksjonsområd\",\n  \"produksjonssted\": \"produksjonssted\",\n  \"produksjonsvirksomhet\": \"produksjonsvirksom\",\n  \"produksjonsvirksomheter\": \"produksjonsvirksom\",\n  \"produkt\": \"produkt\",\n  \"produkta\": \"produkt\",\n  \"produkter\": \"produkt\",\n  \"produktive\": \"produktiv\",\n  \"produktkrav\": \"produktkrav\",\n  \"produktpris\": \"produktpris\",\n  \"produktspesialisering\": \"produktspesialisering\",\n  \"produsent\": \"produsent\",\n  \"produsenter\": \"produsent\",\n  \"produsentleddet\": \"produsentledd\",\n  \"produsentorganisasjonar\": \"produsentorganisasjon\",\n  \"produsere\": \"produser\",\n  \"profesjonalitet\": \"profesjonalit\",\n  \"profesjonell\": \"profesjonell\",\n  \"profesjonelle\": \"profesjonell\",\n  \"profesjonelt\": \"profesjonelt\",\n  \"profesjonsvis\": \"profesjonsvis\",\n  \"professor\": \"professor\",\n  \"profil\": \"profil\",\n  \"profilen\": \"profil\",\n  \"profilene\": \"profil\",\n  \"profiler\": \"profil\",\n  \"proforma\": \"proform\",\n  \"proformaselskaper\": \"proformaselskap\",\n  \"prognose\": \"prognos\",\n  \"prognosealternativet\": \"prognosealternativ\",\n  \"prognosearbeid\": \"prognosearbeid\",\n  \"prognosearbeider\": \"prognosearbeid\",\n  \"prognoseformål\": \"prognoseformål\",\n  \"prognosemakeren\": \"prognosemaker\",\n  \"prognosen\": \"prognos\",\n  \"prognosene\": \"prognos\",\n  \"prognoser\": \"prognos\",\n  \"prognoseresultater\": \"prognoseresultat\",\n  \"programkategorien\": \"programkategori\",\n  \"programmene\": \"programm\",\n  \"programmer\": \"programm\",\n  \"progressiv\": \"progressiv\",\n  \"proklama\": \"proklam\",\n  \"prokura\": \"prokur\",\n  \"prokuralova\": \"prokura\",\n  \"prop\": \"prop\",\n  \"property\": \"property\",\n  \"proposisjon\": \"proposisjon\",\n  \"proposisjonen\": \"proposisjon\",\n  \"proratarisk\": \"proratarisk\",\n  \"prosedyre\": \"prosedyr\",\n  \"prosent\": \"prosent\",\n  \"prosentandel\": \"prosentandel\",\n  \"prosentandelen\": \"prosentandel\",\n  \"prosentdel\": \"prosentdel\",\n  \"prosenten\": \"prosent\",\n  \"prosentene\": \"prosent\",\n  \"prosentfordelingene\": \"prosentfordeling\",\n  \"prosentpoeng\": \"prosentpoeng\",\n  \"prosentsats\": \"prosentsat\",\n  \"prosentsatsen\": \"prosentsats\",\n  \"prosentsatser\": \"prosentsats\",\n  \"prosentvis\": \"prosentvis\",\n  \"prosentvise\": \"prosentvis\",\n  \"prosess\": \"prosess\",\n  \"prosessen\": \"prosess\",\n  \"prosjekt\": \"prosjekt\",\n  \"prosjekta\": \"prosjekt\",\n  \"prosjektene\": \"prosjekt\",\n  \"prosjekter\": \"prosjekt\",\n  \"prosjektet\": \"prosjekt\",\n  \"prosjektrapport\": \"prosjektrapport\",\n  \"prospekt\": \"prospekt\",\n  \"protesterer\": \"protester\",\n  \"protokoll\": \"protokoll\",\n  \"protokollar\": \"protokoll\",\n  \"protokollen\": \"protokoll\",\n  \"protokollføring\": \"protokollføring\",\n  \"proveny\": \"proveny\",\n  \"provenymessige\": \"provenymess\",\n  \"provenytap\": \"provenytap\",\n  \"provenytapet\": \"provenytap\",\n  \"provenyvirkningen\": \"provenyvirkning\",\n  \"provenyvirkningene\": \"provenyvirkning\",\n  \"provisjon\": \"provisjon\",\n  \"prp\": \"prp\",\n  \"prufungsverbande\": \"prufungsverb\",\n  \"pruster\": \"prust\",\n  \"prøv\": \"prøv\",\n  \"prøvast\": \"prøv\",\n  \"prøvd\": \"prøvd\",\n  \"prøvde\": \"prøvd\",\n  \"prøve\": \"prøv\",\n  \"prøver\": \"prøv\",\n  \"prøves\": \"prøv\",\n  \"prøving\": \"prøving\",\n  \"prøvt\": \"prøvt\",\n  \"pst\": \"pst\",\n  \"psykisk\": \"psykisk\",\n  \"psykiske\": \"psykisk\",\n  \"pubblici\": \"pubblici\",\n  \"publikum\": \"publikum\",\n  \"publisert\": \"publiser\",\n  \"puff\": \"puff\",\n  \"pung\": \"pung\",\n  \"pungen\": \"pung\",\n  \"punkt\": \"punkt\",\n  \"punkta\": \"punkt\",\n  \"punktanslag\": \"punktanslag\",\n  \"punktene\": \"punkt\",\n  \"punkter\": \"punkt\",\n  \"punktet\": \"punkt\",\n  \"punktlighet\": \"punkt\",\n  \"punktum\": \"punktum\",\n  \"punktumet\": \"punktum\",\n  \"puslespillbrikker\": \"puslespillbrikk\",\n  \"puslete\": \"puslet\",\n  \"pusling\": \"pusling\",\n  \"pust\": \"pust\",\n  \"puste\": \"pust\",\n  \"pusten\": \"pust\",\n  \"puster\": \"pust\",\n  \"pyntet\": \"pynt\",\n  \"pyse\": \"pys\",\n  \"på\": \"på\",\n  \"påbegynner\": \"påbegynn\",\n  \"påbegynnes\": \"påbegynn\",\n  \"påbod\": \"påbod\",\n  \"påboda\": \"påbod\",\n  \"påbode\": \"påbod\",\n  \"påboden\": \"påbod\",\n  \"påbodet\": \"påbod\",\n  \"påbodne\": \"påbodn\",\n  \"påby\": \"påby\",\n  \"påbygging\": \"påbygging\",\n  \"påbyggingssaker\": \"påbyggingssak\",\n  \"pådra\": \"pådr\",\n  \"pådrage\": \"pådrag\",\n  \"pådregne\": \"pådregn\",\n  \"pådriv\": \"pådriv\",\n  \"påfølgende\": \"påfølg\",\n  \"påførast\": \"påfør\",\n  \"påføre\": \"påfør\",\n  \"påfører\": \"påfør\",\n  \"påføres\": \"påfør\",\n  \"påført\": \"påført\",\n  \"pågående\": \"pågå\",\n  \"pågår\": \"pågår\",\n  \"pågått\": \"pågått\",\n  \"påhefta\": \"påheft\",\n  \"påhefte\": \"påheft\",\n  \"påhviler\": \"påhvil\",\n  \"påkjærast\": \"påkjær\",\n  \"påklages\": \"påklag\",\n  \"påkommende\": \"påkomm\",\n  \"påkostingar\": \"påkosting\",\n  \"påkostning\": \"påkostning\",\n  \"påkostninger\": \"påkostning\",\n  \"påkrav\": \"påkrav\",\n  \"påkrevet\": \"påkrev\",\n  \"pål\": \"pål\",\n  \"påla\": \"pål\",\n  \"pålagde\": \"pålagd\",\n  \"pålagt\": \"pålagt\",\n  \"pålagte\": \"pålagt\",\n  \"pålegg\": \"pålegg\",\n  \"pålegga\": \"pålegg\",\n  \"pålegge\": \"pålegg\",\n  \"pålegger\": \"pålegg\",\n  \"pålegges\": \"pålegg\",\n  \"pålegget\": \"pålegg\",\n  \"påleggjast\": \"påleggj\",\n  \"påleggje\": \"påleggj\",\n  \"påleggskompetanse\": \"påleggskompetans\",\n  \"pålitelege\": \"pålit\",\n  \"pålitelig\": \"pålit\",\n  \"pålitelige\": \"pålit\",\n  \"pålitelighet\": \"pålit\",\n  \"pålydande\": \"pålyd\",\n  \"pålydende\": \"pålyd\",\n  \"påløpe\": \"påløp\",\n  \"påløper\": \"påløp\",\n  \"påløpt\": \"påløpt\",\n  \"påløpte\": \"påløpt\",\n  \"påmelde\": \"påmeld\",\n  \"påminning\": \"påminning\",\n  \"påpeikt\": \"påpeikt\",\n  \"påpeke\": \"påpek\",\n  \"påpeker\": \"påpek\",\n  \"påpekes\": \"påpek\",\n  \"påpeking\": \"påpeking\",\n  \"påpekningen\": \"påpekning\",\n  \"påpekt\": \"påpekt\",\n  \"pårekneleg\": \"pårekn\",\n  \"påse\": \"pås\",\n  \"påslag\": \"påslag\",\n  \"påstand\": \"påstand\",\n  \"påstått\": \"påstått\",\n  \"påta\": \"påt\",\n  \"påtale\": \"påtal\",\n  \"påtar\": \"påt\",\n  \"påtatt\": \"påtatt\",\n  \"påtegning\": \"påtegning\",\n  \"påtrengende\": \"påtreng\",\n  \"påvente\": \"påvent\",\n  \"påverka\": \"påverk\",\n  \"påverkar\": \"påverk\",\n  \"påverke\": \"påverk\",\n  \"påverknaden\": \"påverknad\",\n  \"påvirke\": \"påvirk\",\n  \"påvirker\": \"påvirk\",\n  \"påvirkes\": \"påvirk\",\n  \"påvirket\": \"påvirk\",\n  \"påvirkning\": \"påvirkning\",\n  \"påvisast\": \"påvis\",\n  \"påvise\": \"påvis\",\n  \"påvist\": \"påvist\",\n  \"pøse\": \"pøs\",\n  \"quorum\": \"quorum\",\n  \"r\": \"r\",\n  \"rabalder\": \"rabald\",\n  \"rabattar\": \"rabatt\",\n  \"rabattavtalar\": \"rabattavtal\",\n  \"rabatten\": \"rabatt\",\n  \"rabattordningar\": \"rabattordning\",\n  \"rad\": \"rad\",\n  \"radar\": \"rad\",\n  \"radardekning\": \"radardekning\",\n  \"radarovervåkningen\": \"radarovervåkning\",\n  \"radarseilas\": \"radarseil\",\n  \"radarutrustning\": \"radarutrustning\",\n  \"raden\": \"rad\",\n  \"rader\": \"rad\",\n  \"radikalt\": \"radikalt\",\n  \"radio\": \"radio\",\n  \"radiokommunikasjon\": \"radiokommunikasjon\",\n  \"ragnarok\": \"ragnarok\",\n  \"rail\": \"rail\",\n  \"rake\": \"rak\",\n  \"raker\": \"rak\",\n  \"rakk\": \"rakk\",\n  \"rakkestadsvingen\": \"rakkestadsving\",\n  \"ramlende\": \"raml\",\n  \"ramler\": \"raml\",\n  \"ramma\": \"ramm\",\n  \"ramme\": \"ramm\",\n  \"rammeavtale\": \"rammeavtal\",\n  \"rammebetingelsene\": \"rammebeting\",\n  \"rammebetingelser\": \"rammebeting\",\n  \"rammelovgiving\": \"rammelovgiving\",\n  \"rammen\": \"ramm\",\n  \"rammene\": \"ramm\",\n  \"rammeprogram\": \"rammeprogram\",\n  \"rammeprogrammet\": \"rammeprogramm\",\n  \"rammer\": \"ramm\",\n  \"rammes\": \"ramm\",\n  \"rammet\": \"ramm\",\n  \"rammeverk\": \"rammeverk\",\n  \"rammeverket\": \"rammeverk\",\n  \"rammevilkår\": \"rammevilkår\",\n  \"rammevilkåra\": \"rammevilkår\",\n  \"ramper\": \"ramp\",\n  \"ramse\": \"rams\",\n  \"ramser\": \"rams\",\n  \"randbebyggelsen\": \"randbebygg\",\n  \"randi\": \"randi\",\n  \"randsonen\": \"randson\",\n  \"range\": \"rang\",\n  \"rangeres\": \"ranger\",\n  \"rangering\": \"rangering\",\n  \"rangt\": \"rangt\",\n  \"rank\": \"rank\",\n  \"rant\": \"rant\",\n  \"raper\": \"rap\",\n  \"rappkjeftet\": \"rappkjeft\",\n  \"rapport\": \"rapport\",\n  \"rapporten\": \"rapport\",\n  \"rapportering\": \"rapportering\",\n  \"rar\": \"rar\",\n  \"rart\": \"rart\",\n  \"ras\": \"ras\",\n  \"rasa\": \"ras\",\n  \"rase\": \"ras\",\n  \"rasende\": \"ras\",\n  \"raser\": \"ras\",\n  \"raseri\": \"raseri\",\n  \"raset\": \"ras\",\n  \"rasjonaliseringsgevinster\": \"rasjonaliseringsgevinst\",\n  \"rasjonaliseringsvinstar\": \"rasjonaliseringsvinst\",\n  \"rasjonell\": \"rasjonell\",\n  \"rasjonelle\": \"rasjonell\",\n  \"rasjonelt\": \"rasjonelt\",\n  \"rask\": \"rask\",\n  \"raske\": \"rask\",\n  \"raskere\": \"rasker\",\n  \"raskt\": \"raskt\",\n  \"rastløs\": \"rastløs\",\n  \"rastløse\": \"rastløs\",\n  \"rastløsheten\": \"rastløs\",\n  \"ratatosk\": \"ratatosk\",\n  \"rate\": \"rat\",\n  \"rateforsikring\": \"rateforsikring\",\n  \"rateforsikringer\": \"rateforsikring\",\n  \"rateoppsparing\": \"rateoppsparing\",\n  \"rateordningene\": \"rateordning\",\n  \"ratten\": \"ratt\",\n  \"raudung\": \"raudung\",\n  \"raus\": \"raus\",\n  \"ravneguden\": \"ravnegud\",\n  \"ravnene\": \"ravn\",\n  \"ravner\": \"ravn\",\n  \"rdir\": \"rdir\",\n  \"reaksjoner\": \"reaksjon\",\n  \"realavkastning\": \"realavkastning\",\n  \"realavkastnings\": \"realavkastning\",\n  \"realindeksert\": \"realindekser\",\n  \"realisasjon\": \"realisasjon\",\n  \"realisasjonen\": \"realisasjon\",\n  \"realisere\": \"realiser\",\n  \"realiserer\": \"realiser\",\n  \"realiseres\": \"realiser\",\n  \"realisering\": \"realisering\",\n  \"realisert\": \"realiser\",\n  \"realiserte\": \"realiser\",\n  \"realismen\": \"realism\",\n  \"realistisk\": \"realistisk\",\n  \"realistiske\": \"realistisk\",\n  \"realitet\": \"realit\",\n  \"realitetane\": \"realitet\",\n  \"realiteten\": \"realitet\",\n  \"realitetene\": \"realitet\",\n  \"realitetsendring\": \"realitetsendring\",\n  \"realitetsforskjell\": \"realitetsforskjell\",\n  \"realitetsspørsmåla\": \"realitetsspørsmål\",\n  \"realitetsvotering\": \"realitetsvotering\",\n  \"reallønnsvekst\": \"reallønnsvekst\",\n  \"realregister\": \"realregist\",\n  \"realregistera\": \"realregister\",\n  \"realregistrerte\": \"realregistrer\",\n  \"realrenteavgift\": \"realrenteavgift\",\n  \"realrenteavgiften\": \"realrenteavgift\",\n  \"recent\": \"recent\",\n  \"red\": \"red\",\n  \"redd\": \"redd\",\n  \"redde\": \"redd\",\n  \"redder\": \"redd\",\n  \"reddest\": \"reddest\",\n  \"reddhare\": \"reddhar\",\n  \"rede\": \"red\",\n  \"redegjort\": \"redegjort\",\n  \"redegjøre\": \"redegjør\",\n  \"redegjørelse\": \"redegjør\",\n  \"redelig\": \"red\",\n  \"rederi\": \"rederi\",\n  \"rederiene\": \"rederi\",\n  \"rederienes\": \"rederi\",\n  \"rederier\": \"rederi\",\n  \"rederiforbund\": \"rederiforbund\",\n  \"rederinæringen\": \"rederinæring\",\n  \"redistribueres\": \"redistribuer\",\n  \"redsel\": \"redsel\",\n  \"redselshjelm\": \"redselshjelm\",\n  \"redskap\": \"redskap\",\n  \"redskapene\": \"redskap\",\n  \"redskapet\": \"redskap\",\n  \"reduksjon\": \"reduksjon\",\n  \"reduksjonen\": \"reduksjon\",\n  \"reduserast\": \"reduser\",\n  \"redusere\": \"reduser\",\n  \"reduserer\": \"reduser\",\n  \"reduseres\": \"reduser\",\n  \"redusering\": \"redusering\",\n  \"redusert\": \"reduser\",\n  \"reduserte\": \"reduser\",\n  \"reell\": \"reell\",\n  \"reelle\": \"reell\",\n  \"reelt\": \"reelt\",\n  \"referansegruppe\": \"referansegrupp\",\n  \"referansegruppen\": \"referansegrupp\",\n  \"referat\": \"referat\",\n  \"refererer\": \"referer\",\n  \"refereres\": \"referer\",\n  \"refererte\": \"referer\",\n  \"reflektere\": \"reflekter\",\n  \"reflekterer\": \"reflekter\",\n  \"reflektert\": \"reflekter\",\n  \"refse\": \"refs\",\n  \"refundert\": \"refunder\",\n  \"refusjon\": \"refusjon\",\n  \"regel\": \"regel\",\n  \"regelen\": \"regel\",\n  \"regelendringar\": \"regelendring\",\n  \"regelene\": \"regel\",\n  \"regelmessige\": \"regelmess\",\n  \"regelsetta\": \"regelsett\",\n  \"regelutforming\": \"regelutforming\",\n  \"regelverk\": \"regelverk\",\n  \"regelverkene\": \"regelverk\",\n  \"regelverket\": \"regelverk\",\n  \"regelverkets\": \"regelverk\",\n  \"regelverksutforming\": \"regelverksutforming\",\n  \"regi\": \"regi\",\n  \"regin\": \"regin\",\n  \"region\": \"region\",\n  \"regional\": \"regional\",\n  \"regionaldepartementet\": \"regionaldepartement\",\n  \"regionale\": \"regional\",\n  \"regionalplanlegging\": \"regionalplanlegging\",\n  \"regionalpolitikken\": \"regionalpolitikk\",\n  \"regionalpolitisk\": \"regionalpolitisk\",\n  \"regionalpolitiske\": \"regionalpolitisk\",\n  \"regionalsjef\": \"regionalsjef\",\n  \"regionalt\": \"regionalt\",\n  \"regionaløkonomiske\": \"regionaløkonomisk\",\n  \"regionane\": \"region\",\n  \"regionen\": \"region\",\n  \"regionene\": \"region\",\n  \"regionens\": \"region\",\n  \"regioner\": \"region\",\n  \"regionforskning\": \"regionforskning\",\n  \"regionstyresmaktene\": \"regionstyresmakt\",\n  \"register\": \"regist\",\n  \"registera\": \"register\",\n  \"registereigaren\": \"registereigar\",\n  \"registeret\": \"register\",\n  \"registerføraren\": \"registerførar\",\n  \"registerordning\": \"registerordning\",\n  \"registerspørsmålet\": \"registerspørsmål\",\n  \"registert\": \"register\",\n  \"registerutskrift\": \"registerutskrift\",\n  \"registrerast\": \"registrer\",\n  \"registrere\": \"registrer\",\n  \"registrerer\": \"registrer\",\n  \"registreres\": \"registrer\",\n  \"registrering\": \"registrering\",\n  \"registreringa\": \"registrering\",\n  \"registreringane\": \"registrering\",\n  \"registreringer\": \"registrering\",\n  \"registreringsdag\": \"registreringsdag\",\n  \"registreringsdagen\": \"registreringsdag\",\n  \"registreringsfeil\": \"registreringsfeil\",\n  \"registreringsordning\": \"registreringsordning\",\n  \"registreringsordninga\": \"registreringsordning\",\n  \"registreringsordningane\": \"registreringsordning\",\n  \"registreringsordningar\": \"registreringsordning\",\n  \"registreringsreglane\": \"registreringsregl\",\n  \"registreringstidspunktet\": \"registreringstidspunkt\",\n  \"registrert\": \"registrer\",\n  \"registrerte\": \"registrer\",\n  \"regjering\": \"regjering\",\n  \"regjeringa\": \"regjering\",\n  \"regjeringen\": \"regjering\",\n  \"regjeringens\": \"regjering\",\n  \"regjeringspartiene\": \"regjeringsparti\",\n  \"regjerningen\": \"regjerning\",\n  \"reglane\": \"regl\",\n  \"reglar\": \"regl\",\n  \"reglementet\": \"reglement\",\n  \"reglene\": \"regl\",\n  \"regler\": \"regl\",\n  \"regn\": \"regn\",\n  \"regnbue\": \"regnbu\",\n  \"regnbuebroen\": \"regnbuebro\",\n  \"regnbuen\": \"regnbu\",\n  \"regne\": \"regn\",\n  \"regneeksempler\": \"regneeksempl\",\n  \"regner\": \"regn\",\n  \"regnes\": \"regn\",\n  \"regnet\": \"regn\",\n  \"regnskap\": \"regnskap\",\n  \"regnskapene\": \"regnskap\",\n  \"regnskaper\": \"regnskap\",\n  \"regnskapet\": \"regnskap\",\n  \"regnskapsavleggelse\": \"regnskapsavlegg\",\n  \"regnskapsføring\": \"regnskapsføring\",\n  \"regnskapskontrollør\": \"regnskapskontrollør\",\n  \"regnskapslov\": \"regnskap\",\n  \"regnskapsloven\": \"regnskap\",\n  \"regnskapslovens\": \"regnskap\",\n  \"regnskapslovutvalget\": \"regnskapslovutvalg\",\n  \"regnskapsplikt\": \"regnskapsplikt\",\n  \"regnskapsplikten\": \"regnskapsplikt\",\n  \"regnskapspliktiges\": \"regnskapsplikt\",\n  \"regnskapsprinsipper\": \"regnskapsprinsipp\",\n  \"regnskapsprinsippet\": \"regnskapsprinsipp\",\n  \"regnskapsreglene\": \"regnskapsregl\",\n  \"regnskapsregler\": \"regnskapsregl\",\n  \"regnskapsskikk\": \"regnskapsskikk\",\n  \"regnskapsstandarden\": \"regnskapsstandard\",\n  \"regnskapsår\": \"regnskapsår\",\n  \"regnskapsåret\": \"regnskapsår\",\n  \"regnvåte\": \"regnvåt\",\n  \"regnvær\": \"regnvær\",\n  \"regress\": \"regress\",\n  \"regresskrav\": \"regresskrav\",\n  \"regressomgangen\": \"regressomgang\",\n  \"regularitet\": \"regularit\",\n  \"regulariteten\": \"regularitet\",\n  \"regularitetsproblemer\": \"regularitetsproblem\",\n  \"regulerast\": \"reguler\",\n  \"regulere\": \"reguler\",\n  \"regulerer\": \"reguler\",\n  \"reguleres\": \"reguler\",\n  \"regulering\": \"regulering\",\n  \"reguleringa\": \"regulering\",\n  \"reguleringen\": \"regulering\",\n  \"reguleringsforslag\": \"reguleringsforslag\",\n  \"reguleringskonflikter\": \"reguleringskonflikt\",\n  \"reguleringsmekanismene\": \"reguleringsmekanism\",\n  \"reguleringsmekanismer\": \"reguleringsmekanism\",\n  \"reguleringsmessig\": \"reguleringsmess\",\n  \"reguleringsmessige\": \"reguleringsmess\",\n  \"reguleringsmyndighet\": \"reguleringsmynd\",\n  \"reguleringsplan\": \"reguleringsplan\",\n  \"reguleringsplanarbeidet\": \"reguleringsplanarbeid\",\n  \"reguleringsplanen\": \"reguleringsplan\",\n  \"reguleringsplaner\": \"reguleringsplan\",\n  \"reguleringsplanforslagets\": \"reguleringsplanforslag\",\n  \"reguleringsplannivå\": \"reguleringsplannivå\",\n  \"reguleringssaker\": \"reguleringssak\",\n  \"reguleringstiltak\": \"reguleringstiltak\",\n  \"reguleringsvedtak\": \"reguleringsvedtak\",\n  \"regulert\": \"reguler\",\n  \"regulerte\": \"reguler\",\n  \"regulær\": \"regulær\",\n  \"regulære\": \"regulær\",\n  \"rehabilitering\": \"rehabilitering\",\n  \"reidmar\": \"reidm\",\n  \"reidmars\": \"reidmar\",\n  \"rein\": \"rein\",\n  \"reine\": \"rein\",\n  \"reinertsen\": \"reinerts\",\n  \"reinsing\": \"reinsing\",\n  \"reint\": \"reint\",\n  \"reinvestere\": \"reinvester\",\n  \"reinvesteres\": \"reinvester\",\n  \"reinvestering\": \"reinvestering\",\n  \"reinvesteringsadgang\": \"reinvesteringsadgang\",\n  \"reinvesteringsadgangen\": \"reinvesteringsadgang\",\n  \"reinvesterte\": \"reinvester\",\n  \"reis\": \"reis\",\n  \"reisast\": \"reis\",\n  \"reise\": \"reis\",\n  \"reiseaktivitet\": \"reiseaktivit\",\n  \"reisebyrå\": \"reisebyrå\",\n  \"reisefeller\": \"reisefell\",\n  \"reisefølget\": \"reisefølg\",\n  \"reiseklare\": \"reiseklar\",\n  \"reisen\": \"reis\",\n  \"reisene\": \"reis\",\n  \"reiser\": \"reis\",\n  \"reises\": \"reis\",\n  \"reising\": \"reising\",\n  \"reist\": \"reist\",\n  \"rekalkuleres\": \"rekalkuler\",\n  \"rekende\": \"rek\",\n  \"rekk\": \"rekk\",\n  \"rekke\": \"rekk\",\n  \"rekker\": \"rekk\",\n  \"rekkevidden\": \"rekkevidd\",\n  \"rekkje\": \"rekkj\",\n  \"rekkjefølgja\": \"rekkjefølgj\",\n  \"rekkjefølgje\": \"rekkjefølgj\",\n  \"rekkjehus\": \"rekkjehus\",\n  \"rekkjevidda\": \"rekkjevidd\",\n  \"reklamasjonar\": \"reklamasjon\",\n  \"reklamasjonsfristar\": \"reklamasjonsfrist\",\n  \"reklamasjonsnemnder\": \"reklamasjonsnemnd\",\n  \"rekna\": \"rekn\",\n  \"reknar\": \"rekn\",\n  \"reknast\": \"rekn\",\n  \"rekne\": \"rekn\",\n  \"rekneskap\": \"rekneskap\",\n  \"rekneskapane\": \"rekneskap\",\n  \"rekneskapen\": \"rekneskap\",\n  \"rekneskapsførsel\": \"rekneskapsførsel\",\n  \"rekneskapskunnige\": \"rekneskapskunn\",\n  \"rekneskapslova\": \"rekneskap\",\n  \"rekneskapsmateriale\": \"rekneskapsmaterial\",\n  \"rekneskapsopplysningar\": \"rekneskapsopplysning\",\n  \"rekneskapsplikt\": \"rekneskapsplikt\",\n  \"rekneskapsrapportering\": \"rekneskapsrapportering\",\n  \"rekneskapsregisteret\": \"rekneskapsregister\",\n  \"rekneskapsreglane\": \"rekneskapsregl\",\n  \"rekneskapsreglar\": \"rekneskapsregl\",\n  \"rekneskapsskikk\": \"rekneskapsskikk\",\n  \"rekneskapsår\": \"rekneskapsår\",\n  \"rekneskapsåret\": \"rekneskapsår\",\n  \"reknestykket\": \"reknestykk\",\n  \"rekning\": \"rekning\",\n  \"rekningsbasis\": \"rekningsbasis\",\n  \"rekningsprinsipp\": \"rekningsprinsipp\",\n  \"rekningsprinsippet\": \"rekningsprinsipp\",\n  \"rekningssvarande\": \"rekningssvar\",\n  \"rekreasjon\": \"rekreasjon\",\n  \"rekreasjonsformål\": \"rekreasjonsformål\",\n  \"rekreasjonsverdier\": \"rekreasjonsverdi\",\n  \"relasjoner\": \"relasjon\",\n  \"relatert\": \"relater\",\n  \"relativ\": \"relativ\",\n  \"relative\": \"relativ\",\n  \"relativt\": \"relativ\",\n  \"relevans\": \"relevan\",\n  \"relevant\": \"relevant\",\n  \"relevante\": \"relevant\",\n  \"religiøs\": \"religiøs\",\n  \"rem\": \"rem\",\n  \"remmen\": \"remm\",\n  \"ren\": \"ren\",\n  \"rene\": \"ren\",\n  \"rengjøring\": \"rengjøring\",\n  \"renkespill\": \"renkespill\",\n  \"renn\": \"renn\",\n  \"renne\": \"renn\",\n  \"renner\": \"renn\",\n  \"renovering\": \"renovering\",\n  \"rent\": \"rent\",\n  \"renta\": \"rent\",\n  \"rente\": \"rent\",\n  \"renteavkastning\": \"renteavkastning\",\n  \"rentebetingelser\": \"rentebeting\",\n  \"rentefastsettelsen\": \"rentefastsett\",\n  \"renteforsikring\": \"renteforsikring\",\n  \"renteforsikringer\": \"renteforsikring\",\n  \"rentefot\": \"rentefot\",\n  \"renteinntektene\": \"renteinntekt\",\n  \"renteinntekter\": \"renteinntekt\",\n  \"rentelova\": \"rent\",\n  \"rentemargin\": \"rentemargin\",\n  \"rentemarkedet\": \"rentemarked\",\n  \"renten\": \"rent\",\n  \"rentenivå\": \"rentenivå\",\n  \"renteoppgaver\": \"renteoppgav\",\n  \"renter\": \"rent\",\n  \"rentesatser\": \"rentesats\",\n  \"rentesrente\": \"rentesrent\",\n  \"rentevilkår\": \"rentevilkår\",\n  \"reparasjon\": \"reparasjon\",\n  \"reparasjonane\": \"reparasjon\",\n  \"reparasjonar\": \"reparasjon\",\n  \"reparasjonsverksted\": \"reparasjonsverksted\",\n  \"reparere\": \"reparer\",\n  \"reparerer\": \"reparer\",\n  \"representant\": \"representant\",\n  \"representantane\": \"representant\",\n  \"representantar\": \"representant\",\n  \"representanten\": \"representant\",\n  \"representantene\": \"representant\",\n  \"representanter\": \"representant\",\n  \"representantskap\": \"representantskap\",\n  \"representantskapet\": \"representantskap\",\n  \"representantskapets\": \"representantskap\",\n  \"representasjon\": \"representasjon\",\n  \"representasjonen\": \"representasjon\",\n  \"representasjonsrett\": \"representasjonsrett\",\n  \"representativ\": \"representativ\",\n  \"representative\": \"representativ\",\n  \"representativitet\": \"representativit\",\n  \"representativt\": \"representativ\",\n  \"representer\": \"represent\",\n  \"representere\": \"representer\",\n  \"representerer\": \"representer\",\n  \"representert\": \"representer\",\n  \"representerte\": \"representer\",\n  \"rere\": \"rer\",\n  \"res\": \"res\",\n  \"reservar\": \"reserv\",\n  \"reservasjonen\": \"reservasjon\",\n  \"reservasjoner\": \"reservasjon\",\n  \"reservatets\": \"reservat\",\n  \"reserve\": \"reserv\",\n  \"reservefond\": \"reservefond\",\n  \"reserver\": \"reserv\",\n  \"reservere\": \"reserver\",\n  \"reserveregel\": \"reserveregel\",\n  \"reservert\": \"reserver\",\n  \"reserverte\": \"reserver\",\n  \"resolusjon\": \"resolusjon\",\n  \"respekt\": \"respekt\",\n  \"respekterast\": \"respekter\",\n  \"respektere\": \"respekter\",\n  \"respektert\": \"respekter\",\n  \"respektive\": \"respektiv\",\n  \"ressurs\": \"ressur\",\n  \"ressursane\": \"ressurs\",\n  \"ressursbruk\": \"ressursbruk\",\n  \"ressursbruken\": \"ressursbruk\",\n  \"ressurseffektiv\": \"ressurseffektiv\",\n  \"ressursene\": \"ressurs\",\n  \"ressurser\": \"ressurs\",\n  \"ressursinnsats\": \"ressursinnsat\",\n  \"ressurskrevende\": \"ressurskrev\",\n  \"ressursomsyna\": \"ressursomsyn\",\n  \"ressursutnyttelse\": \"ressursutnytt\",\n  \"ressursutnytting\": \"ressursutnytting\",\n  \"restansane\": \"restans\",\n  \"restansar\": \"restans\",\n  \"resten\": \"rest\",\n  \"restene\": \"rest\",\n  \"resterende\": \"rester\",\n  \"restgjelda\": \"restgjeld\",\n  \"restriksjonar\": \"restriksjon\",\n  \"restriksjoner\": \"restriksjon\",\n  \"restruktureringene\": \"restrukturering\",\n  \"resultat\": \"resultat\",\n  \"resultatavhengig\": \"resultatavheng\",\n  \"resultatene\": \"resultat\",\n  \"resultater\": \"resultat\",\n  \"resultatet\": \"resultat\",\n  \"resultatlikhet\": \"resultatlik\",\n  \"resultatmessig\": \"resultatmess\",\n  \"resultatmessige\": \"resultatmess\",\n  \"resultatregnskap\": \"resultatregnskap\",\n  \"resultatutviklinga\": \"resultatutvikling\",\n  \"resultere\": \"resulter\",\n  \"resulterer\": \"resulter\",\n  \"resursbruk\": \"resursbruk\",\n  \"retning\": \"retning\",\n  \"retninger\": \"retning\",\n  \"retningsbalanse\": \"retningsbalans\",\n  \"retningsbalansen\": \"retningsbalans\",\n  \"retningsgivende\": \"retningsgiv\",\n  \"retningsgiver\": \"retningsgiv\",\n  \"retningslina\": \"retningslin\",\n  \"retningslinene\": \"retningslin\",\n  \"retningsliner\": \"retningslin\",\n  \"retningslinje\": \"retningslinj\",\n  \"retningslinjene\": \"retningslinj\",\n  \"retningslinjer\": \"retningslinj\",\n  \"retningsubalanse\": \"retningsubalans\",\n  \"rett\": \"rett\",\n  \"retta\": \"rett\",\n  \"rettane\": \"rett\",\n  \"rettar\": \"rett\",\n  \"rettargangslovgjevinga\": \"rettargangslovgjeving\",\n  \"rettast\": \"rett\",\n  \"rettaste\": \"rettast\",\n  \"rette\": \"rett\",\n  \"rettede\": \"rett\",\n  \"retteleg\": \"rett\",\n  \"retten\": \"rett\",\n  \"retter\": \"rett\",\n  \"rettes\": \"rett\",\n  \"rettet\": \"rett\",\n  \"rettferd\": \"rettferd\",\n  \"rettferdig\": \"rettferd\",\n  \"rettferdighet\": \"rettferd\",\n  \"rettferdighetsideal\": \"rettferdighetsideal\",\n  \"rettigheten\": \"rett\",\n  \"rettighetene\": \"rett\",\n  \"rettigheter\": \"rett\",\n  \"rettighetsforholdene\": \"rettighetsforhold\",\n  \"rettighetshaver\": \"rettighetshav\",\n  \"rettighetshaveren\": \"rettighetshaver\",\n  \"rettighetsregister\": \"rettighetsregist\",\n  \"retting\": \"retting\",\n  \"rettinga\": \"retting\",\n  \"rettkjende\": \"rettkj\",\n  \"rettkomen\": \"rettkom\",\n  \"rettleiande\": \"rettlei\",\n  \"rettleiing\": \"rettleiing\",\n  \"rettsavgjerd\": \"rettsavgjerd\",\n  \"rettsavgjerder\": \"rettsavgjerd\",\n  \"rettserverv\": \"rettserverv\",\n  \"rettservervet\": \"rettserverv\",\n  \"rettsforhold\": \"rettsforhold\",\n  \"rettsforholda\": \"rettsforhold\",\n  \"rettsforholdet\": \"rettsforhold\",\n  \"rettsgebyr\": \"rettsgebyr\",\n  \"rettsgebyret\": \"rettsgebyr\",\n  \"rettsgebyrlova\": \"rettsgebyr\",\n  \"rettshavar\": \"rettshav\",\n  \"rettshavarane\": \"rettshavar\",\n  \"rettshavaren\": \"rettshavar\",\n  \"rettskraft\": \"rettskraft\",\n  \"rettskraftig\": \"rettskraft\",\n  \"rettskraftverknad\": \"rettskraftverknad\",\n  \"rettsleg\": \"retts\",\n  \"rettslege\": \"retts\",\n  \"rettslig\": \"retts\",\n  \"rettsmekling\": \"rettsmekling\",\n  \"rettsovergang\": \"rettsovergang\",\n  \"rettspraksis\": \"rettspraksis\",\n  \"rettsregister\": \"rettsregist\",\n  \"rettsregistera\": \"rettsregister\",\n  \"rettsregisteret\": \"rettsregister\",\n  \"rettsregistrering\": \"rettsregistrering\",\n  \"rettsregler\": \"rettsregl\",\n  \"rettssak\": \"rettssak\",\n  \"rettsspørsmål\": \"rettsspørsmål\",\n  \"rettsstiftelser\": \"rettsstift\",\n  \"rettsstifting\": \"rettsstifting\",\n  \"rettsstiftingane\": \"rettsstifting\",\n  \"rettsstiftingar\": \"rettsstifting\",\n  \"rettsstilling\": \"rettsstilling\",\n  \"rettsstillinga\": \"rettsstilling\",\n  \"rettsstoffet\": \"rettsstoff\",\n  \"rettssubjekt\": \"rettssubjekt\",\n  \"rettssubjekter\": \"rettssubjekt\",\n  \"rettstilstand\": \"rettstilstand\",\n  \"rettstilstanden\": \"rettstilstand\",\n  \"rettsuvisse\": \"rettsuviss\",\n  \"rettsverknadene\": \"rettsverknad\",\n  \"rettsverknader\": \"rettsverknad\",\n  \"rettsvern\": \"rettsvern\",\n  \"rettsvernakt\": \"rettsvernakt\",\n  \"rettsvernet\": \"rettsvern\",\n  \"rettsvernreglane\": \"rettsvernregl\",\n  \"rettsvirkninger\": \"rettsvirkning\",\n  \"returkommisjonar\": \"returkommisjon\",\n  \"returlast\": \"returl\",\n  \"returprovisjonar\": \"returprovisjon\",\n  \"returreisen\": \"returreis\",\n  \"rev\": \"rev\",\n  \"reversering\": \"reversering\",\n  \"reversibel\": \"reversibel\",\n  \"revestreker\": \"revestrek\",\n  \"revet\": \"rev\",\n  \"reviderast\": \"revider\",\n  \"revidert\": \"revider\",\n  \"reviderte\": \"revider\",\n  \"revierhavna\": \"revierhavn\",\n  \"revisjon\": \"revisjon\",\n  \"revisjonen\": \"revisjon\",\n  \"revisjonsmelding\": \"revisjonsmelding\",\n  \"revisjonsmeldinga\": \"revisjonsmelding\",\n  \"revisjonsplikt\": \"revisjonsplikt\",\n  \"revisor\": \"revisor\",\n  \"revisorar\": \"revisor\",\n  \"revisorers\": \"revisor\",\n  \"revisorfråsegn\": \"revisorfråsegn\",\n  \"revisorlova\": \"revisor\",\n  \"revisormelding\": \"revisormelding\",\n  \"revisoroppdraget\": \"revisoroppdrag\",\n  \"revisors\": \"revisor\",\n  \"revner\": \"revn\",\n  \"revurdering\": \"revurdering\",\n  \"ri\": \"ri\",\n  \"ridd\": \"ridd\",\n  \"ridekunst\": \"ridekunst\",\n  \"ridende\": \"rid\",\n  \"rideredskap\": \"rideredskap\",\n  \"ridetur\": \"ridetur\",\n  \"rig\": \"rig\",\n  \"rigger\": \"rigg\",\n  \"rigide\": \"rigid\",\n  \"rik\": \"rik\",\n  \"rikdom\": \"rikdom\",\n  \"rike\": \"rik\",\n  \"rikelig\": \"rik\",\n  \"rikeste\": \"rikest\",\n  \"riket\": \"rik\",\n  \"rikke\": \"rikk\",\n  \"riksbyggen\": \"riksbygg\",\n  \"riksdagens\": \"riksdag\",\n  \"riksdekkende\": \"riksdekk\",\n  \"riksforbund\": \"riksforbund\",\n  \"riksgrensen\": \"riksgrens\",\n  \"riksnivå\": \"riksnivå\",\n  \"rikspolitiske\": \"rikspolitisk\",\n  \"riksveg\": \"riksveg\",\n  \"riksveger\": \"riksveg\",\n  \"riksvegforbindelse\": \"riksvegforbind\",\n  \"riksvegnettet\": \"riksvegnett\",\n  \"riksvegplaner\": \"riksvegplan\",\n  \"riktig\": \"rikt\",\n  \"riktige\": \"rikt\",\n  \"riktignok\": \"riktignok\",\n  \"rim\": \"rim\",\n  \"rimeleg\": \"rim\",\n  \"rimelegare\": \"rimelegar\",\n  \"rimelege\": \"rim\",\n  \"rimelig\": \"rim\",\n  \"rimelige\": \"rim\",\n  \"rimelighet\": \"rim\",\n  \"rimet\": \"rim\",\n  \"rimfakse\": \"rimfaks\",\n  \"rimfrost\": \"rimfrost\",\n  \"rimgrimne\": \"rimgrimn\",\n  \"rimkledde\": \"rimkledd\",\n  \"rimlaget\": \"rimlag\",\n  \"rimslåtte\": \"rimslått\",\n  \"rimtussenes\": \"rimtuss\",\n  \"rimtusser\": \"rimtuss\",\n  \"rimtusseslekter\": \"rimtusseslekt\",\n  \"rind\": \"rind\",\n  \"rinds\": \"rind\",\n  \"ring\": \"ring\",\n  \"ringdal\": \"ringdal\",\n  \"ringen\": \"ring\",\n  \"ringer\": \"ring\",\n  \"ringhorne\": \"ringhorn\",\n  \"ringveien\": \"ringvei\",\n  \"ringvirkninger\": \"ringvirkning\",\n  \"rir\": \"rir\",\n  \"rise\": \"ris\",\n  \"riser\": \"ris\",\n  \"risikabel\": \"risikabel\",\n  \"risikabelt\": \"risikabelt\",\n  \"risikere\": \"risiker\",\n  \"risikerer\": \"risiker\",\n  \"risiko\": \"risiko\",\n  \"risikoaksept\": \"risikoaksept\",\n  \"risikoberegning\": \"risikoberegning\",\n  \"risikobetont\": \"risikobetont\",\n  \"risikoelement\": \"risikoelement\",\n  \"risikoen\": \"risiko\",\n  \"risikofond\": \"risikofond\",\n  \"risikofondet\": \"risikofond\",\n  \"risikoforhold\": \"risikoforhold\",\n  \"risikoforsikringer\": \"risikoforsikring\",\n  \"risikofri\": \"risikofri\",\n  \"risikofrie\": \"risikofri\",\n  \"risikofylt\": \"risikofylt\",\n  \"risikofylte\": \"risikofylt\",\n  \"risikokapital\": \"risikokapital\",\n  \"risikokapitalen\": \"risikokapital\",\n  \"risikomessig\": \"risikomess\",\n  \"risikomomentet\": \"risikomoment\",\n  \"risikomåling\": \"risikomåling\",\n  \"risikonivået\": \"risikonivå\",\n  \"risikoplassering\": \"risikoplassering\",\n  \"risikopremie\": \"risikopremi\",\n  \"risikopremier\": \"risikopremi\",\n  \"risikoprofil\": \"risikoprofil\",\n  \"risikospredning\": \"risikospredning\",\n  \"risikotaking\": \"risikotaking\",\n  \"risikoviljug\": \"risikoviljug\",\n  \"risikovillig\": \"risikovil\",\n  \"risikovurderinger\": \"risikovurdering\",\n  \"risikoytelser\": \"risikoyt\",\n  \"risk\": \"risk\",\n  \"risp\": \"risp\",\n  \"risser\": \"riss\",\n  \"risset\": \"riss\",\n  \"riste\": \"rist\",\n  \"rister\": \"rist\",\n  \"ristet\": \"rist\",\n  \"risting\": \"risting\",\n  \"rive\": \"riv\",\n  \"river\": \"riv\",\n  \"rives\": \"riv\",\n  \"rivning\": \"rivning\",\n  \"ro\": \"ro\",\n  \"roar\": \"roar\",\n  \"robuste\": \"robust\",\n  \"robusthet\": \"robust\",\n  \"rockwool\": \"rockwool\",\n  \"rodd\": \"rodd\",\n  \"roende\": \"roend\",\n  \"rogaland\": \"rogaland\",\n  \"rognebusk\": \"rognebusk\",\n  \"rokvam\": \"rokvam\",\n  \"rolig\": \"rol\",\n  \"roligheten\": \"rol\",\n  \"roll\": \"roll\",\n  \"rolla\": \"roll\",\n  \"rolle\": \"roll\",\n  \"rolledelingen\": \"rolledeling\",\n  \"rollefordeling\": \"rollefordeling\",\n  \"rollen\": \"roll\",\n  \"roller\": \"roll\",\n  \"rom\": \"rom\",\n  \"romerike\": \"romerik\",\n  \"romerrike\": \"romerrik\",\n  \"rommer\": \"romm\",\n  \"rommet\": \"romm\",\n  \"romsdal\": \"romsdal\",\n  \"romslig\": \"roms\",\n  \"romslige\": \"roms\",\n  \"rop\": \"rop\",\n  \"rope\": \"rop\",\n  \"roper\": \"rop\",\n  \"ropt\": \"ropt\",\n  \"ropte\": \"ropt\",\n  \"ror\": \"ror\",\n  \"roret\": \"ror\",\n  \"ros\": \"ros\",\n  \"roser\": \"ros\",\n  \"roses\": \"ros\",\n  \"roskva\": \"roskv\",\n  \"roskvas\": \"roskv\",\n  \"rostiophus\": \"rostiophus\",\n  \"rostratt\": \"rostratt\",\n  \"rot\": \"rot\",\n  \"rote\": \"rot\",\n  \"roten\": \"rot\",\n  \"roter\": \"rot\",\n  \"roterminalene\": \"roterminal\",\n  \"roteskadar\": \"roteskad\",\n  \"rotet\": \"rot\",\n  \"rotterdam\": \"rotterdam\",\n  \"rovdyrtenner\": \"rovdyrtenn\",\n  \"rpr\": \"rpr\",\n  \"rprs\": \"rprs\",\n  \"rt\": \"rt\",\n  \"rufsete\": \"rufset\",\n  \"ruger\": \"rug\",\n  \"rugger\": \"rugg\",\n  \"rugtvedt\": \"rugtved\",\n  \"ruiner\": \"ruin\",\n  \"rukket\": \"rukk\",\n  \"rullende\": \"rull\",\n  \"ruller\": \"rull\",\n  \"rullering\": \"rullering\",\n  \"rullestenene\": \"rullesten\",\n  \"rullestokkene\": \"rullestokk\",\n  \"rumpe\": \"rump\",\n  \"rund\": \"rund\",\n  \"rundar\": \"rund\",\n  \"runde\": \"rund\",\n  \"rundt\": \"rund\",\n  \"rundtur\": \"rundtur\",\n  \"rundturer\": \"rundtur\",\n  \"runekunst\": \"runekunst\",\n  \"runer\": \"run\",\n  \"runetegnene\": \"runetegn\",\n  \"runger\": \"rung\",\n  \"rungne\": \"rungn\",\n  \"rungnes\": \"rungn\",\n  \"rushtrafikken\": \"rushtrafikk\",\n  \"rusk\": \"rusk\",\n  \"rusproblem\": \"rusproblem\",\n  \"russiske\": \"russisk\",\n  \"russland\": \"russland\",\n  \"ruste\": \"rust\",\n  \"rustet\": \"rust\",\n  \"rustfarget\": \"rustfarg\",\n  \"rustne\": \"rustn\",\n  \"rute\": \"rut\",\n  \"rutemønster\": \"rutemønst\",\n  \"rutemønstre\": \"rutemønstr\",\n  \"ruten\": \"rut\",\n  \"rutene\": \"rut\",\n  \"rutenes\": \"rut\",\n  \"rutenettet\": \"rutenett\",\n  \"ruteopplegg\": \"ruteopplegg\",\n  \"rutepapir\": \"rutepapir\",\n  \"ruter\": \"rut\",\n  \"rutetilbud\": \"rutetilbud\",\n  \"rutetilbudet\": \"rutetilbud\",\n  \"rutinane\": \"rutin\",\n  \"rutinar\": \"rutin\",\n  \"rutine\": \"rutin\",\n  \"ruver\": \"ruv\",\n  \"rydda\": \"rydd\",\n  \"rydder\": \"rydd\",\n  \"ryddet\": \"rydd\",\n  \"ryen\": \"ryen\",\n  \"rygge\": \"rygg\",\n  \"ryggen\": \"rygg\",\n  \"rygger\": \"rygg\",\n  \"ryke\": \"ryk\",\n  \"ryker\": \"ryk\",\n  \"rykk\": \"rykk\",\n  \"rykke\": \"rykk\",\n  \"rykker\": \"rykk\",\n  \"rykket\": \"rykk\",\n  \"rykter\": \"rykt\",\n  \"ryktet\": \"rykt\",\n  \"rynke\": \"rynk\",\n  \"rynkede\": \"rynk\",\n  \"rynkene\": \"rynk\",\n  \"rynker\": \"rynk\",\n  \"rynket\": \"rynk\",\n  \"rynkete\": \"rynket\",\n  \"ryster\": \"ryst\",\n  \"rytter\": \"rytt\",\n  \"ryttere\": \"rytter\",\n  \"rytteren\": \"rytter\",\n  \"rytterne\": \"ryttern\",\n  \"rå\": \"rå\",\n  \"råd\": \"råd\",\n  \"rådde\": \"rådd\",\n  \"råde\": \"råd\",\n  \"rådene\": \"råd\",\n  \"råder\": \"råd\",\n  \"råderett\": \"råderett\",\n  \"råderetten\": \"råderett\",\n  \"råderettsforbod\": \"råderettsforbod\",\n  \"rådet\": \"råd\",\n  \"rådgivende\": \"rådgiv\",\n  \"rådgiver\": \"rådgiv\",\n  \"rådgivere\": \"rådgiver\",\n  \"rådgivning\": \"rådgivning\",\n  \"rådgjevar\": \"rådgjev\",\n  \"rådgjevaren\": \"rådgjevar\",\n  \"rådgjevinga\": \"rådgjeving\",\n  \"rådighet\": \"råd\",\n  \"rådsdirektiv\": \"rådsdirektiv\",\n  \"rådslagning\": \"rådslagning\",\n  \"rådsmøte\": \"rådsmøt\",\n  \"rådsmøter\": \"rådsmøt\",\n  \"rådsvedtak\": \"rådsvedtak\",\n  \"rådvill\": \"rådvill\",\n  \"råk\": \"råk\",\n  \"råka\": \"råk\",\n  \"råkar\": \"råk\",\n  \"råkast\": \"råk\",\n  \"råmaterialet\": \"råmaterial\",\n  \"rån\": \"rån\",\n  \"rår\": \"rår\",\n  \"råsterke\": \"råsterk\",\n  \"råstoff\": \"råstoff\",\n  \"råstoffer\": \"råstoff\",\n  \"råtne\": \"råtn\",\n  \"råtner\": \"råtn\",\n  \"rått\": \"rått\",\n  \"råtten\": \"rått\",\n  \"råvareinntak\": \"råvareinntak\",\n  \"råvarer\": \"råvar\",\n  \"ræsvelg\": \"ræsvelg\",\n  \"rød\": \"rød\",\n  \"røde\": \"rød\",\n  \"rødeste\": \"rødest\",\n  \"rødhåret\": \"rødhår\",\n  \"rødmer\": \"rødm\",\n  \"rødskjeggete\": \"rødskjegget\",\n  \"rødsprengt\": \"rødsprengt\",\n  \"rødt\": \"rødt\",\n  \"røk\": \"røk\",\n  \"rømme\": \"rømm\",\n  \"rømmer\": \"rømm\",\n  \"røpe\": \"røp\",\n  \"røper\": \"røp\",\n  \"røre\": \"rør\",\n  \"rører\": \"rør\",\n  \"rørt\": \"rørt\",\n  \"rørte\": \"rørt\",\n  \"røsker\": \"røsk\",\n  \"røttene\": \"røtt\",\n  \"røtter\": \"røtt\",\n  \"røve\": \"røv\",\n  \"røver\": \"røv\",\n  \"røvet\": \"røv\",\n  \"røyken\": \"røyk\",\n  \"røynsla\": \"røynsl\",\n  \"røynsle\": \"røynsl\",\n  \"røynslene\": \"røynsl\",\n  \"røynsler\": \"røynsl\",\n  \"røyr\": \"røyr\",\n  \"røys\": \"røys\",\n  \"røyst\": \"røyst\",\n  \"røysta\": \"røyst\",\n  \"røystar\": \"røyst\",\n  \"røyste\": \"røyst\",\n  \"røysteforklåringar\": \"røysteforklåring\",\n  \"røystene\": \"røyst\",\n  \"røyster\": \"røyst\",\n  \"røystereglane\": \"røysteregl\",\n  \"røystereglar\": \"røysteregl\",\n  \"røysterett\": \"røysterett\",\n  \"røysteretten\": \"røysterett\",\n  \"røystetal\": \"røystetal\",\n  \"røystetalet\": \"røystetal\",\n  \"røysting\": \"røysting\",\n  \"røystinga\": \"røysting\",\n  \"røystingane\": \"røysting\",\n  \"s\": \"s\",\n  \"sa\": \"sa\",\n  \"sabo\": \"sabo\",\n  \"sabotere\": \"saboter\",\n  \"sadeltøy\": \"sadeltøy\",\n  \"saf\": \"saf\",\n  \"safir\": \"safir\",\n  \"sagd\": \"sagd\",\n  \"sagt\": \"sagt\",\n  \"sak\": \"sak\",\n  \"saka\": \"sak\",\n  \"saken\": \"sak\",\n  \"sakene\": \"sak\",\n  \"saker\": \"sak\",\n  \"sakleg\": \"sak\",\n  \"saklege\": \"sak\",\n  \"saklig\": \"sak\",\n  \"saklige\": \"sak\",\n  \"saklista\": \"saklist\",\n  \"sakliste\": \"saklist\",\n  \"saksbehandler\": \"saksbehandl\",\n  \"saksbehandling\": \"saksbehandling\",\n  \"saksbehandlinga\": \"saksbehandling\",\n  \"saksbehandlingsfeil\": \"saksbehandlingsfeil\",\n  \"saksbehandlingsregelen\": \"saksbehandlingsregel\",\n  \"saksbehandlingsregler\": \"saksbehandlingsregl\",\n  \"saksdokument\": \"saksdokument\",\n  \"saksforberedelse\": \"saksforbered\",\n  \"saksforutsetninger\": \"saksforutsetning\",\n  \"saksområde\": \"saksområd\",\n  \"sakspapir\": \"sakspapir\",\n  \"saksøkerens\": \"saksøker\",\n  \"saksøkjarane\": \"saksøkjar\",\n  \"saksøkjaren\": \"saksøkjar\",\n  \"saksøkte\": \"saksøkt\",\n  \"sakte\": \"sakt\",\n  \"saktens\": \"sakt\",\n  \"sal\": \"sal\",\n  \"saldo\": \"saldo\",\n  \"salen\": \"sal\",\n  \"saler\": \"sal\",\n  \"sales\": \"sal\",\n  \"salet\": \"sal\",\n  \"salg\": \"salg\",\n  \"salget\": \"salg\",\n  \"salgsavtaler\": \"salgsavtal\",\n  \"salgsinntektene\": \"salgsinntekt\",\n  \"salgsinntekter\": \"salgsinntekt\",\n  \"salslag\": \"salslag\",\n  \"salsoppdrag\": \"salsoppdrag\",\n  \"salspålegg\": \"salspålegg\",\n  \"salspålegget\": \"salspålegg\",\n  \"salstilfella\": \"salstilfell\",\n  \"salsverdi\": \"salsverdi\",\n  \"salsverdien\": \"salsverdi\",\n  \"salt\": \"salt\",\n  \"saltaskene\": \"saltask\",\n  \"salte\": \"salt\",\n  \"salve\": \"salv\",\n  \"salver\": \"salv\",\n  \"saman\": \"saman\",\n  \"samanblanding\": \"samanblanding\",\n  \"samandrag\": \"samandrag\",\n  \"samanhalde\": \"samanhald\",\n  \"samanhalden\": \"samanhald\",\n  \"samanheng\": \"samanheng\",\n  \"samanhengar\": \"samanheng\",\n  \"samanhengen\": \"samanheng\",\n  \"samanhengens\": \"samanheng\",\n  \"samanknytinga\": \"samanknyting\",\n  \"samanlikna\": \"samanlikn\",\n  \"samanliknar\": \"samanlikn\",\n  \"samanliknast\": \"samanlikn\",\n  \"samanlikne\": \"samanlikn\",\n  \"samanlikning\": \"samanlikning\",\n  \"samanlikninga\": \"samanlikning\",\n  \"samansett\": \"samansett\",\n  \"samansette\": \"samansett\",\n  \"samanskriving\": \"samanskriving\",\n  \"samanslegne\": \"samanslegn\",\n  \"samanslutning\": \"samanslutning\",\n  \"samanslutninga\": \"samanslutning\",\n  \"samanslutningane\": \"samanslutning\",\n  \"samanslutningar\": \"samanslutning\",\n  \"samanslutningsforma\": \"samanslutningsform\",\n  \"samanslutningsformene\": \"samanslutningsform\",\n  \"samanslutningsrettsleg\": \"samanslutningsretts\",\n  \"samanslutningsrettslege\": \"samanslutningsretts\",\n  \"samanslåing\": \"samanslåing\",\n  \"samanslåinga\": \"samanslåing\",\n  \"samanslåingar\": \"samanslåing\",\n  \"samarbeid\": \"samarbeid\",\n  \"samarbeidd\": \"samarbeidd\",\n  \"samarbeide\": \"samarbeid\",\n  \"samarbeidende\": \"samarbeid\",\n  \"samarbeider\": \"samarbeid\",\n  \"samarbeidet\": \"samarbeid\",\n  \"samarbeidets\": \"samarbeid\",\n  \"samarbeidsforhold\": \"samarbeidsforhold\",\n  \"samarbeidsformen\": \"samarbeidsform\",\n  \"samarbeidsformer\": \"samarbeidsform\",\n  \"samarbeidskommune\": \"samarbeidskommun\",\n  \"samarbeidskommunene\": \"samarbeidskommun\",\n  \"samarbeidskommunenes\": \"samarbeidskommun\",\n  \"samarbeidsløsninger\": \"samarbeidsløsning\",\n  \"samarbeidsmodeller\": \"samarbeidsmodell\",\n  \"samarbeidsområdet\": \"samarbeidsområd\",\n  \"samarbeidsorganer\": \"samarbeidsorgan\",\n  \"samarbeidsorganet\": \"samarbeidsorgan\",\n  \"samarbeidsorganisasjon\": \"samarbeidsorganisasjon\",\n  \"samarbeidspartnar\": \"samarbeidspartn\",\n  \"samarbeidspartnarar\": \"samarbeidspartnar\",\n  \"samarbeidstiltak\": \"samarbeidstiltak\",\n  \"samarbeidsutval\": \"samarbeidsutval\",\n  \"samarbeidsutvala\": \"samarbeidsutval\",\n  \"samarbeidsutvalet\": \"samarbeidsutval\",\n  \"samarbeidt\": \"samarbeid\",\n  \"samband\": \"samband\",\n  \"sambandskomite\": \"sambandskomit\",\n  \"samboer\": \"sambo\",\n  \"sambuar\": \"sambu\",\n  \"sambuarar\": \"sambuar\",\n  \"sambuarforholdet\": \"sambuarforhold\",\n  \"sambuarskap\": \"sambuarskap\",\n  \"samd\": \"samd\",\n  \"samde\": \"samd\",\n  \"same\": \"sam\",\n  \"sameie\": \"samei\",\n  \"sameieforholdet\": \"sameieforhold\",\n  \"sameiermøtet\": \"sameiermøt\",\n  \"sameiets\": \"samei\",\n  \"sameiga\": \"sam\",\n  \"sameigar\": \"sam\",\n  \"sameigarane\": \"sameigar\",\n  \"sameigarar\": \"sameigar\",\n  \"sameigaren\": \"sameigar\",\n  \"sameigarmøte\": \"sameigarmøt\",\n  \"sameigarmøtet\": \"sameigarmøt\",\n  \"sameige\": \"sam\",\n  \"sameigeforhold\": \"sameigeforhold\",\n  \"sameigelova\": \"sameig\",\n  \"sameigepart\": \"sameigepart\",\n  \"sameigepartane\": \"sameigepart\",\n  \"sameigepartar\": \"sameigepart\",\n  \"sameigeparten\": \"sameigepart\",\n  \"sameiger\": \"sam\",\n  \"sameigevedtektene\": \"sameigevedtekt\",\n  \"sameigevedtekter\": \"sameigevedtekt\",\n  \"sameinast\": \"samein\",\n  \"sameine\": \"samein\",\n  \"sameleis\": \"sameleis\",\n  \"samferdsel\": \"samferdsel\",\n  \"samferdsels\": \"samferdsel\",\n  \"samferdselsdepartement\": \"samferdselsdepartement\",\n  \"samferdselsdepartementet\": \"samferdselsdepartement\",\n  \"samferdselskomiteen\": \"samferdselskomite\",\n  \"samferdselsløsninger\": \"samferdselsløsning\",\n  \"samferdselsmessig\": \"samferdselsmess\",\n  \"samferdselsmessige\": \"samferdselsmess\",\n  \"samferdselsmønsteret\": \"samferdselsmønster\",\n  \"samferdselsnett\": \"samferdselsnett\",\n  \"samferdselsnettet\": \"samferdselsnett\",\n  \"samferdselsplanlegging\": \"samferdselsplanlegging\",\n  \"samferdselspolitikken\": \"samferdselspolitikk\",\n  \"samferdselspolitisk\": \"samferdselspolitisk\",\n  \"samferdselspolitiske\": \"samferdselspolitisk\",\n  \"samferdselssektoren\": \"samferdselssektor\",\n  \"samferdselstilbudet\": \"samferdselstilbud\",\n  \"samfunn\": \"samfunn\",\n  \"samfunnet\": \"samfunn\",\n  \"samfunnets\": \"samfunn\",\n  \"samfunns\": \"samfunn\",\n  \"samfunnsansvar\": \"samfunnsansv\",\n  \"samfunnsforskning\": \"samfunnsforskning\",\n  \"samfunnshensyn\": \"samfunnshensyn\",\n  \"samfunnsinteresser\": \"samfunnsinteress\",\n  \"samfunnsmessige\": \"samfunnsmess\",\n  \"samfunnsnyttig\": \"samfunnsnytt\",\n  \"samfunnsøkonomisk\": \"samfunnsøkonomisk\",\n  \"samfunnsøkonomiske\": \"samfunnsøkonomisk\",\n  \"samhandel\": \"samhandel\",\n  \"samhandelen\": \"samhandel\",\n  \"samhandlar\": \"samhandl\",\n  \"samhandle\": \"samhandl\",\n  \"samkjøringsgevinster\": \"samkjøringsgevinst\",\n  \"samkvem\": \"samkvem\",\n  \"samla\": \"saml\",\n  \"samlande\": \"saml\",\n  \"samlar\": \"saml\",\n  \"samlast\": \"saml\",\n  \"samlastere\": \"samlaster\",\n  \"samlasterne\": \"samlastern\",\n  \"samlasternes\": \"samlastern\",\n  \"samlastgods\": \"samlastgod\",\n  \"samlasting\": \"samlasting\",\n  \"samlastsentralene\": \"samlastsentral\",\n  \"samlastterminal\": \"samlastterminal\",\n  \"samlastterminalene\": \"samlastterminal\",\n  \"samlastterminaler\": \"samlastterminal\",\n  \"samle\": \"saml\",\n  \"samlede\": \"saml\",\n  \"samler\": \"saml\",\n  \"samles\": \"saml\",\n  \"samleseksjon\": \"samleseksjon\",\n  \"samlet\": \"saml\",\n  \"samling\": \"samling\",\n  \"samlivsbrot\": \"samlivsbrot\",\n  \"samlokalisering\": \"samlokalisering\",\n  \"samlokaliseringen\": \"samlokalisering\",\n  \"samme\": \"samm\",\n  \"sammelignbare\": \"sammelignbar\",\n  \"sammen\": \"samm\",\n  \"sammenblanding\": \"sammenblanding\",\n  \"sammendrag\": \"sammendrag\",\n  \"sammendraget\": \"sammendrag\",\n  \"sammenfall\": \"sammenfall\",\n  \"sammenfallende\": \"sammenfall\",\n  \"sammenheng\": \"sammenheng\",\n  \"sammenhengen\": \"sammenheng\",\n  \"sammenhengende\": \"sammenheng\",\n  \"sammenhenger\": \"sammenheng\",\n  \"sammenholder\": \"sammenhold\",\n  \"sammenholdt\": \"sammenhold\",\n  \"sammenknytning\": \"sammenknytning\",\n  \"sammenlagt\": \"sammenlagt\",\n  \"sammenlignbar\": \"sammenlignb\",\n  \"sammenlignbare\": \"sammenlignbar\",\n  \"sammenlignbarhet\": \"sammenlignbar\",\n  \"sammenligne\": \"sammenlign\",\n  \"sammenligner\": \"sammenlign\",\n  \"sammenlignet\": \"sammenlign\",\n  \"sammenligning\": \"sammenligning\",\n  \"sammenligninger\": \"sammenligning\",\n  \"sammenliknbare\": \"sammenliknbar\",\n  \"sammenlikne\": \"sammenlikn\",\n  \"sammenlikner\": \"sammenlikn\",\n  \"sammenliknet\": \"sammenlikn\",\n  \"sammenlikning\": \"sammenlikning\",\n  \"sammenlikningen\": \"sammenlikning\",\n  \"sammenlikninger\": \"sammenlikning\",\n  \"sammensatt\": \"sammensatt\",\n  \"sammensatte\": \"sammensatt\",\n  \"sammensetning\": \"sammensetning\",\n  \"sammensetningen\": \"sammensetning\",\n  \"sammensettes\": \"sammensett\",\n  \"sammenslutning\": \"sammenslutning\",\n  \"sammenslutningen\": \"sammenslutning\",\n  \"sammenslutninger\": \"sammenslutning\",\n  \"sammenslåing\": \"sammenslåing\",\n  \"sammenslåingen\": \"sammenslåing\",\n  \"sammenslåinger\": \"sammenslåing\",\n  \"sammenslåingsprosess\": \"sammenslåingsprosess\",\n  \"sammenslåingsvariant\": \"sammenslåingsvariant\",\n  \"sammenslåtte\": \"sammenslått\",\n  \"sammenstilling\": \"sammenstilling\",\n  \"sammenstøtet\": \"sammenstøt\",\n  \"samordna\": \"samordn\",\n  \"samordnast\": \"samordn\",\n  \"samordne\": \"samordn\",\n  \"samordnende\": \"samordn\",\n  \"samordner\": \"samordn\",\n  \"samordnet\": \"samordn\",\n  \"samordning\": \"samordning\",\n  \"samordninga\": \"samordning\",\n  \"samordningen\": \"samordning\",\n  \"samråd\": \"samråd\",\n  \"samrøystes\": \"samrøyst\",\n  \"sams\": \"sam\",\n  \"samspel\": \"samspel\",\n  \"samspelet\": \"samspel\",\n  \"samspill\": \"samspill\",\n  \"samstundes\": \"samstund\",\n  \"samsvar\": \"samsv\",\n  \"samsvarar\": \"samsvar\",\n  \"samsvarer\": \"samsvar\",\n  \"samsvaret\": \"samsvar\",\n  \"samsøy\": \"samsøy\",\n  \"samt\": \"samt\",\n  \"samtale\": \"samtal\",\n  \"samtaler\": \"samtal\",\n  \"samtidig\": \"samtid\",\n  \"samtidige\": \"samtid\",\n  \"samtlige\": \"samt\",\n  \"samtykka\": \"samtykk\",\n  \"samtykke\": \"samtykk\",\n  \"samtykkeregelen\": \"samtykkeregel\",\n  \"samtykket\": \"samtykk\",\n  \"samtykkje\": \"samtykkj\",\n  \"samtykkjer\": \"samtykkj\",\n  \"samtykt\": \"samtykt\",\n  \"samvariasjon\": \"samvariasjon\",\n  \"samverkan\": \"samverkan\",\n  \"samvirka\": \"samvirk\",\n  \"samvirke\": \"samvirk\",\n  \"samvirkeboka\": \"samvirkebok\",\n  \"samvirkeforma\": \"samvirkeform\",\n  \"samvirkeføretak\": \"samvirkeføretak\",\n  \"samvirkeføretaka\": \"samvirkeføretak\",\n  \"samvirkeføretaket\": \"samvirkeføretak\",\n  \"samvirkelag\": \"samvirkelag\",\n  \"samvirkelaga\": \"samvirkelag\",\n  \"samvirkelaget\": \"samvirkelag\",\n  \"samvirkelov\": \"samvirk\",\n  \"samvirkelovutvalet\": \"samvirkelovutval\",\n  \"samvirkeorganisasjon\": \"samvirkeorganisasjon\",\n  \"samvirkeorganisasjonane\": \"samvirkeorganisasjon\",\n  \"samvirkeorganisasjonar\": \"samvirkeorganisasjon\",\n  \"samvirkeorganisering\": \"samvirkeorganisering\",\n  \"samvirkepreget\": \"samvirkepreg\",\n  \"samvirkeprinsipp\": \"samvirkeprinsipp\",\n  \"samvirkeprinsippa\": \"samvirkeprinsipp\",\n  \"samvirkeprinsipper\": \"samvirkeprinsipp\",\n  \"samvirkerørsla\": \"samvirkerørsl\",\n  \"samvirkesamanheng\": \"samvirkesamanheng\",\n  \"samvirket\": \"samvirk\",\n  \"samvirketiltak\": \"samvirketiltak\",\n  \"samvirketiltaka\": \"samvirketiltak\",\n  \"samvirkeutvalget\": \"samvirkeutvalg\",\n  \"samvittighet\": \"samvitt\",\n  \"sand\": \"sand\",\n  \"sandefjord\": \"sandefjord\",\n  \"sandessjøen\": \"sandessjø\",\n  \"sandnessjøen\": \"sandnessjø\",\n  \"sandstrand\": \"sandstrand\",\n  \"sanerast\": \"saner\",\n  \"sang\": \"sang\",\n  \"sanger\": \"sang\",\n  \"sanksjoner\": \"sanksjon\",\n  \"sann\": \"sann\",\n  \"sannelig\": \"sann\",\n  \"sannhet\": \"sann\",\n  \"sannheten\": \"sann\",\n  \"sannsynlig\": \"sannsyn\",\n  \"sannsynlige\": \"sannsyn\",\n  \"sannsynliggjøre\": \"sannsynliggjør\",\n  \"sannsynlighet\": \"sannsyn\",\n  \"sannsynligheten\": \"sannsyn\",\n  \"sannsynligvis\": \"sannsynligvis\",\n  \"sans\": \"san\",\n  \"sanser\": \"sans\",\n  \"sant\": \"sant\",\n  \"sarpsborg\": \"sarpsborg\",\n  \"sarskild\": \"sarskild\",\n  \"sarskilda\": \"sarskild\",\n  \"sats\": \"sat\",\n  \"satsa\": \"sats\",\n  \"satse\": \"sats\",\n  \"satsen\": \"sats\",\n  \"satsene\": \"sats\",\n  \"satser\": \"sats\",\n  \"satses\": \"sats\",\n  \"satset\": \"sats\",\n  \"satsing\": \"satsing\",\n  \"satsingsområde\": \"satsingsområd\",\n  \"satsstruktur\": \"satsstruktur\",\n  \"satsstrukturen\": \"satsstruktur\",\n  \"satsstrukturene\": \"satsstruktur\",\n  \"satsstrukturer\": \"satsstruktur\",\n  \"satt\": \"satt\",\n  \"satte\": \"satt\",\n  \"sauene\": \"sauen\",\n  \"sauer\": \"sauer\",\n  \"saugbrugsforeningen\": \"saugbrugsforening\",\n  \"saugbruksforeningen\": \"saugbruksforening\",\n  \"sauholmene\": \"sauholm\",\n  \"sauøya\": \"sauøya\",\n  \"savner\": \"savn\",\n  \"sbc\": \"sbc\",\n  \"scan\": \"scan\",\n  \"scanproof\": \"scanproof\",\n  \"scc\": \"scc\",\n  \"scenariebeskrivelsene\": \"scenariebeskriv\",\n  \"scenarier\": \"scenari\",\n  \"scenario\": \"scenario\",\n  \"schwencke\": \"schwenck\",\n  \"schøne\": \"schøn\",\n  \"score\": \"scor\",\n  \"se\": \"se\",\n  \"sea\": \"sea\",\n  \"sedd\": \"sedd\",\n  \"sedde\": \"sedd\",\n  \"sees\": \"sees\",\n  \"seg\": \"seg\",\n  \"segment\": \"segment\",\n  \"segmenter\": \"segment\",\n  \"segner\": \"segn\",\n  \"seiast\": \"seiast\",\n  \"seid\": \"seid\",\n  \"seie\": \"seie\",\n  \"seier\": \"seier\",\n  \"seil\": \"seil\",\n  \"seilas\": \"seil\",\n  \"seilbare\": \"seilbar\",\n  \"seile\": \"seil\",\n  \"seilene\": \"seil\",\n  \"seiler\": \"seil\",\n  \"seilet\": \"seil\",\n  \"seilingsforhold\": \"seilingsforhold\",\n  \"seilingsopplegg\": \"seilingsopplegg\",\n  \"seilingsreglene\": \"seilingsregl\",\n  \"seilingsregler\": \"seilingsregl\",\n  \"seilingstider\": \"seilingstid\",\n  \"seilt\": \"seilt\",\n  \"sein\": \"sein\",\n  \"seinare\": \"seinar\",\n  \"seinast\": \"sein\",\n  \"seinaste\": \"seinast\",\n  \"seinere\": \"seiner\",\n  \"seinke\": \"seink\",\n  \"seint\": \"seint\",\n  \"seire\": \"seir\",\n  \"seiren\": \"seir\",\n  \"seirens\": \"seir\",\n  \"seirer\": \"seir\",\n  \"seiret\": \"seir\",\n  \"sek\": \"sek\",\n  \"sekk\": \"sekk\",\n  \"sekken\": \"sekk\",\n  \"sekretariat\": \"sekretariat\",\n  \"sekretariatet\": \"sekretariat\",\n  \"sekretær\": \"sekretær\",\n  \"seks\": \"seks\",\n  \"seksjon\": \"seksjon\",\n  \"seksjonane\": \"seksjon\",\n  \"seksjonar\": \"seksjon\",\n  \"seksjonen\": \"seksjon\",\n  \"seksjoner\": \"seksjon\",\n  \"seksjonering\": \"seksjonering\",\n  \"seksjoneringa\": \"seksjonering\",\n  \"seksjonerte\": \"seksjoner\",\n  \"seksjonsameiga\": \"seksjonsam\",\n  \"seksjonseigarane\": \"seksjonseigar\",\n  \"seksjonseigarar\": \"seksjonseigar\",\n  \"seksjonseigaren\": \"seksjonseigar\",\n  \"seksjonsforma\": \"seksjonsform\",\n  \"seksjonssameier\": \"seksjonssamei\",\n  \"seksjonssameiga\": \"seksjonssam\",\n  \"seksjonssameigarar\": \"seksjonssameigar\",\n  \"seksjonssameige\": \"seksjonssam\",\n  \"seksjonssameigene\": \"seksjonssam\",\n  \"seksjonssameiger\": \"seksjonssam\",\n  \"seksjonssjef\": \"seksjonssjef\",\n  \"sektor\": \"sektor\",\n  \"sektorar\": \"sektor\",\n  \"sektoren\": \"sektor\",\n  \"sektorer\": \"sektor\",\n  \"sektors\": \"sektor\",\n  \"sektorvise\": \"sektorvis\",\n  \"sekundærpantsetjing\": \"sekundærpantsetjing\",\n  \"sekundært\": \"sekundært\",\n  \"sel\": \"sel\",\n  \"seld\": \"seld\",\n  \"selde\": \"seld\",\n  \"seleksjon\": \"seleksjon\",\n  \"seleksjonsproblemene\": \"seleksjonsproblem\",\n  \"seleksjonsproblemer\": \"seleksjonsproblem\",\n  \"selene\": \"sel\",\n  \"seler\": \"sel\",\n  \"selge\": \"selg\",\n  \"selges\": \"selg\",\n  \"seljar\": \"selj\",\n  \"seljaransvar\": \"seljaransv\",\n  \"seljarar\": \"seljar\",\n  \"seljaren\": \"seljar\",\n  \"seljast\": \"selj\",\n  \"selje\": \"selj\",\n  \"seljefløyte\": \"seljefløyt\",\n  \"selskabsformerne\": \"selskabsformern\",\n  \"selskap\": \"selskap\",\n  \"selskapa\": \"selskap\",\n  \"selskapene\": \"selskap\",\n  \"selskapenes\": \"selskap\",\n  \"selskaper\": \"selskap\",\n  \"selskapers\": \"selskap\",\n  \"selskapet\": \"selskap\",\n  \"selskapets\": \"selskap\",\n  \"selskaps\": \"selskap\",\n  \"selskapsavtalen\": \"selskapsavtal\",\n  \"selskapsdirektiv\": \"selskapsdirektiv\",\n  \"selskapsendringer\": \"selskapsendring\",\n  \"selskapsform\": \"selskapsform\",\n  \"selskapsformer\": \"selskapsform\",\n  \"selskapskreditorar\": \"selskapskreditor\",\n  \"selskapslova\": \"selskap\",\n  \"selskapsloven\": \"selskap\",\n  \"selskapspartane\": \"selskapspart\",\n  \"selskapspartar\": \"selskapspart\",\n  \"selskapsrettsleg\": \"selskapsretts\",\n  \"selskapsrettslege\": \"selskapsretts\",\n  \"selskapsrettslige\": \"selskapsretts\",\n  \"selskapsskattelov\": \"selskapsskatt\",\n  \"selskapsskatteloven\": \"selskapsskatt\",\n  \"selt\": \"selt\",\n  \"selv\": \"selv\",\n  \"selve\": \"selv\",\n  \"selveste\": \"selvest\",\n  \"selvfinansierende\": \"selvfinansier\",\n  \"selvforsterkende\": \"selvforsterk\",\n  \"selvfølgelig\": \"selvfølg\",\n  \"selvig\": \"selv\",\n  \"selvsagt\": \"selvsagt\",\n  \"selvsikkert\": \"selvsikker\",\n  \"selvstendig\": \"selvstend\",\n  \"selvstendige\": \"selvstend\",\n  \"selvstyre\": \"selvstyr\",\n  \"sement\": \"sement\",\n  \"semitrailer\": \"semitrail\",\n  \"semitrailere\": \"semitrailer\",\n  \"sen\": \"sen\",\n  \"send\": \"send\",\n  \"sendast\": \"send\",\n  \"sende\": \"send\",\n  \"sendebud\": \"sendebud\",\n  \"sendebudene\": \"sendebud\",\n  \"sender\": \"send\",\n  \"sendes\": \"send\",\n  \"sendingsstørrelser\": \"sendingsstørr\",\n  \"sendt\": \"send\",\n  \"sendte\": \"send\",\n  \"sener\": \"sen\",\n  \"senere\": \"sener\",\n  \"senest\": \"senest\",\n  \"seneste\": \"senest\",\n  \"seng\": \"seng\",\n  \"sengehalmen\": \"sengehalm\",\n  \"sengekammer\": \"sengekamm\",\n  \"sengen\": \"seng\",\n  \"senger\": \"seng\",\n  \"sengestolpen\": \"sengestolp\",\n  \"sengestolpene\": \"sengestolp\",\n  \"sengs\": \"seng\",\n  \"seniorrådgiver\": \"seniorrådgiv\",\n  \"seniorrådgjevar\": \"seniorrådgjev\",\n  \"sent\": \"sent\",\n  \"senter\": \"sent\",\n  \"senterpartiet\": \"senterparti\",\n  \"sentral\": \"sentral\",\n  \"sentralbyrå\": \"sentralbyrå\",\n  \"sentralbyrås\": \"sentralbyrås\",\n  \"sentrale\": \"sentral\",\n  \"sentralene\": \"sentral\",\n  \"sentraleuropeiske\": \"sentraleuropeisk\",\n  \"sentralforbund\": \"sentralforbund\",\n  \"sentralhavn\": \"sentralhavn\",\n  \"sentralhavna\": \"sentralhavn\",\n  \"sentralisering\": \"sentralisering\",\n  \"sentraliseringseffekt\": \"sentraliseringseffekt\",\n  \"sentraliseringskrefter\": \"sentraliseringskreft\",\n  \"sentraliseringstendens\": \"sentraliseringstend\",\n  \"sentraliseringstendenser\": \"sentraliseringstendens\",\n  \"sentralisert\": \"sentraliser\",\n  \"sentrallager\": \"sentrallag\",\n  \"sentrallagre\": \"sentrallagr\",\n  \"sentralt\": \"sentralt\",\n  \"sentrum\": \"sentrum\",\n  \"sentrumsområdene\": \"sentrumsområd\",\n  \"sentrumsplanen\": \"sentrumsplan\",\n  \"separasjon\": \"separasjon\",\n  \"separasjonen\": \"separasjon\",\n  \"separat\": \"separat\",\n  \"separate\": \"separat\",\n  \"separerte\": \"separer\",\n  \"september\": \"septemb\",\n  \"ser\": \"ser\",\n  \"sertifikat\": \"sertifikat\",\n  \"sertifikater\": \"sertifikat\",\n  \"service\": \"servic\",\n  \"servicehavn\": \"servicehavn\",\n  \"servicenæringens\": \"servicenæring\",\n  \"services\": \"servic\",\n  \"servituttar\": \"servitutt\",\n  \"ses\": \"ses\",\n  \"sesong\": \"sesong\",\n  \"sesongarbeider\": \"sesongarbeid\",\n  \"sesongarbeidere\": \"sesongarbeider\",\n  \"sesongarbeideres\": \"sesongarbeider\",\n  \"sessrymne\": \"sessrymn\",\n  \"set\": \"set\",\n  \"sete\": \"set\",\n  \"setjast\": \"setj\",\n  \"setje\": \"setj\",\n  \"setning\": \"setning\",\n  \"setninger\": \"setning\",\n  \"setningsskadar\": \"setningsskad\",\n  \"sett\": \"sett\",\n  \"sette\": \"sett\",\n  \"setter\": \"sett\",\n  \"settes\": \"sett\",\n  \"sevjen\": \"sevj\",\n  \"shapiro\": \"shapiro\",\n  \"si\": \"si\",\n  \"sia\": \"sia\",\n  \"sida\": \"sid\",\n  \"side\": \"sid\",\n  \"sidelastere\": \"sidelaster\",\n  \"siden\": \"sid\",\n  \"sidene\": \"sid\",\n  \"sideportsbåter\": \"sideportsbåt\",\n  \"sider\": \"sid\",\n  \"siderom\": \"siderom\",\n  \"siderommet\": \"sideromm\",\n  \"sidespor\": \"sidespor\",\n  \"sidesprang\": \"sidesprang\",\n  \"sidestilles\": \"sidestill\",\n  \"sier\": \"sier\",\n  \"sies\": \"sies\",\n  \"siffernivå\": \"siffernivå\",\n  \"sige\": \"sig\",\n  \"signal\": \"signal\",\n  \"signaler\": \"signal\",\n  \"signalisere\": \"signaliser\",\n  \"signifikant\": \"signifikant\",\n  \"sigurd\": \"sigurd\",\n  \"sigyn\": \"sigyn\",\n  \"sikatomta\": \"sikatomt\",\n  \"sikker\": \"sikk\",\n  \"sikkerhet\": \"sikker\",\n  \"sikkerheten\": \"sikker\",\n  \"sikkerhets\": \"sikkerh\",\n  \"sikkerhetsgebyr\": \"sikkerhetsgebyr\",\n  \"sikkerhetsmessige\": \"sikkerhetsmess\",\n  \"sikkerhetsnivå\": \"sikkerhetsnivå\",\n  \"sikkerhetssystemet\": \"sikkerhetssystem\",\n  \"sikkert\": \"sikker\",\n  \"siklende\": \"sikl\",\n  \"sikler\": \"sikl\",\n  \"sikra\": \"sikr\",\n  \"sikrar\": \"sikr\",\n  \"sikrare\": \"sikrar\",\n  \"sikrast\": \"sikr\",\n  \"sikre\": \"sikr\",\n  \"sikrer\": \"sikr\",\n  \"sikrere\": \"sikrer\",\n  \"sikres\": \"sikr\",\n  \"sikreste\": \"sikrest\",\n  \"sikret\": \"sikr\",\n  \"sikring\": \"sikring\",\n  \"sikringsordning\": \"sikringsordning\",\n  \"sikringsordningane\": \"sikringsordning\",\n  \"sikringsordningar\": \"sikringsordning\",\n  \"sikt\": \"sikt\",\n  \"sikta\": \"sikt\",\n  \"siktbegrensninger\": \"siktbegrensning\",\n  \"sikte\": \"sikt\",\n  \"siktemål\": \"siktemål\",\n  \"siktemålet\": \"siktemål\",\n  \"sikter\": \"sikt\",\n  \"siktes\": \"sikt\",\n  \"siljan\": \"siljan\",\n  \"silkebånd\": \"silkebånd\",\n  \"simpelt\": \"simpelt\",\n  \"simultanstifting\": \"simultanstifting\",\n  \"sin\": \"sin\",\n  \"sindige\": \"sind\",\n  \"sindre\": \"sindr\",\n  \"sine\": \"sin\",\n  \"singasteinen\": \"singastein\",\n  \"singel\": \"singel\",\n  \"single\": \"singl\",\n  \"sinne\": \"sinn\",\n  \"sinnet\": \"sinn\",\n  \"sinns\": \"sinn\",\n  \"sint\": \"sint\",\n  \"sinte\": \"sint\",\n  \"sintere\": \"sinter\",\n  \"sirkelen\": \"sirkel\",\n  \"sirkulasjon\": \"sirkulasjon\",\n  \"sist\": \"sist\",\n  \"siste\": \"sist\",\n  \"sistnemnde\": \"sistnemnd\",\n  \"sistnevnte\": \"sistnevnt\",\n  \"sit\": \"sit\",\n  \"sitatet\": \"sitat\",\n  \"sitc\": \"sitc\",\n  \"sitert\": \"siter\",\n  \"siterte\": \"siter\",\n  \"sitjande\": \"sitj\",\n  \"sitje\": \"sitj\",\n  \"sitt\": \"sitt\",\n  \"sitte\": \"sitt\",\n  \"sittende\": \"sitt\",\n  \"sitter\": \"sitt\",\n  \"sittet\": \"sitt\",\n  \"situasjon\": \"situasjon\",\n  \"situasjonar\": \"situasjon\",\n  \"situasjonen\": \"situasjon\",\n  \"situasjoner\": \"situasjon\",\n  \"situasjonsbeskrivelse\": \"situasjonsbeskriv\",\n  \"siv\": \"siv\",\n  \"sivil\": \"sivil\",\n  \"sivile\": \"sivil\",\n  \"sivillovboka\": \"sivillovbok\",\n  \"sjablonmessig\": \"sjablonmess\",\n  \"sjalu\": \"sjalu\",\n  \"sjansen\": \"sjans\",\n  \"sjanser\": \"sjans\",\n  \"sjavn\": \"sjavn\",\n  \"sjekta\": \"sjekt\",\n  \"sjel\": \"sjel\",\n  \"sjeldan\": \"sjeldan\",\n  \"sjelden\": \"sjeld\",\n  \"sjeldnare\": \"sjeldnar\",\n  \"sjeldne\": \"sjeldn\",\n  \"sjeldnere\": \"sjeldner\",\n  \"sjelen\": \"sjel\",\n  \"sjenanse\": \"sjenans\",\n  \"sjenert\": \"sjener\",\n  \"sjette\": \"sjett\",\n  \"sjettedel\": \"sjettedel\",\n  \"sjikanering\": \"sjikanering\",\n  \"sju\": \"sju\",\n  \"sjuande\": \"sjuand\",\n  \"sjukdom\": \"sjukdom\",\n  \"sjuke\": \"sjuk\",\n  \"sjukeheimar\": \"sjukeheim\",\n  \"sjursøya\": \"sjursøy\",\n  \"sjursøyas\": \"sjursøy\",\n  \"sjå\": \"sjå\",\n  \"sjåast\": \"sjåast\",\n  \"sjælland\": \"sjælland\",\n  \"sjø\": \"sjø\",\n  \"sjøarealer\": \"sjøareal\",\n  \"sjødyrene\": \"sjødyr\",\n  \"sjøen\": \"sjøen\",\n  \"sjøfarende\": \"sjøfar\",\n  \"sjøfart\": \"sjøfart\",\n  \"sjøfartsdirektoratet\": \"sjøfartsdirektorat\",\n  \"sjøfolk\": \"sjøfolk\",\n  \"sjøfraktene\": \"sjøfrakt\",\n  \"sjøjotner\": \"sjøjotn\",\n  \"sjøkantarealer\": \"sjøkantareal\",\n  \"sjøkantbaserte\": \"sjøkantbaser\",\n  \"sjøkantlokalisert\": \"sjøkantlokaliser\",\n  \"sjøkantlokaliserte\": \"sjøkantlokaliser\",\n  \"sjøkart\": \"sjøkart\",\n  \"sjøkonge\": \"sjøkong\",\n  \"sjøkongen\": \"sjøkong\",\n  \"sjølv\": \"sjølv\",\n  \"sjølvdømme\": \"sjølvdømm\",\n  \"sjølve\": \"sjølv\",\n  \"sjølveigande\": \"sjølv\",\n  \"sjølveigarar\": \"sjølveigar\",\n  \"sjølvhjelp\": \"sjølvhjelp\",\n  \"sjølvhjelpsorganisasjonar\": \"sjølvhjelpsorganisasjon\",\n  \"sjølvhjelpstanken\": \"sjølvhjelpstank\",\n  \"sjølvkost\": \"sjølvkost\",\n  \"sjølvkostprinsipp\": \"sjølvkostprinsipp\",\n  \"sjølvkostprinsippet\": \"sjølvkostprinsipp\",\n  \"sjølvmelding\": \"sjølvmelding\",\n  \"sjølvmotseiande\": \"sjølvmotsei\",\n  \"sjølvsagt\": \"sjølvsagt\",\n  \"sjølvskiftande\": \"sjølvskift\",\n  \"sjølvskuldgaranti\": \"sjølvskuldgaranti\",\n  \"sjølvstendig\": \"sjølvstend\",\n  \"sjølvstendige\": \"sjølvstend\",\n  \"sjølvstyre\": \"sjølvstyr\",\n  \"sjølvstyret\": \"sjølvstyr\",\n  \"sjølvstyrt\": \"sjølvstyrt\",\n  \"sjølvstyrte\": \"sjølvstyrt\",\n  \"sjøområdene\": \"sjøområd\",\n  \"sjøområder\": \"sjøområd\",\n  \"sjøreise\": \"sjøreis\",\n  \"sjørholt\": \"sjørholt\",\n  \"sjøs\": \"sjøs\",\n  \"sjøside\": \"sjøsid\",\n  \"sjøsiden\": \"sjøsid\",\n  \"sjøsidens\": \"sjøsid\",\n  \"sjøsideområder\": \"sjøsideområd\",\n  \"sjøtrafikk\": \"sjøtrafikk\",\n  \"sjøtrafikken\": \"sjøtrafikk\",\n  \"sjøtransport\": \"sjøtransport\",\n  \"sjøtransportarbeidet\": \"sjøtransportarbeid\",\n  \"sjøtransporten\": \"sjøtransport\",\n  \"sjøtransportens\": \"sjøtransport\",\n  \"sjøtransporter\": \"sjøtransport\",\n  \"sjøtransportkorridorer\": \"sjøtransportkorridor\",\n  \"sjøtransportløsninger\": \"sjøtransportløsning\",\n  \"sjøtransportpolitikk\": \"sjøtransportpolitikk\",\n  \"sjøtransporttilbud\": \"sjøtransporttilbud\",\n  \"sjøtransporttilbudet\": \"sjøtransporttilbud\",\n  \"sjøvegen\": \"sjøveg\",\n  \"sjøvegs\": \"sjøveg\",\n  \"sjøveien\": \"sjøvei\",\n  \"sjøverts\": \"sjøvert\",\n  \"ska\": \"ska\",\n  \"skabbete\": \"skabbet\",\n  \"skadane\": \"skad\",\n  \"skadar\": \"skad\",\n  \"skadd\": \"skadd\",\n  \"skadde\": \"skadd\",\n  \"skade\": \"skad\",\n  \"skadebot\": \"skadebot\",\n  \"skadebotansvar\": \"skadebotansv\",\n  \"skadebotansvaret\": \"skadebotansvar\",\n  \"skadebotansvarleg\": \"skadebotansvar\",\n  \"skadebotansvarlege\": \"skadebotansvar\",\n  \"skadebotkrav\": \"skadebotkrav\",\n  \"skadebotkravet\": \"skadebotkrav\",\n  \"skadebotlova\": \"skadebot\",\n  \"skadebotregel\": \"skadebotregel\",\n  \"skadebotregelen\": \"skadebotregel\",\n  \"skadebotreglane\": \"skadebotregl\",\n  \"skadebotreglar\": \"skadebotregl\",\n  \"skadefryd\": \"skadefryd\",\n  \"skadelidande\": \"skadelid\",\n  \"skadelidne\": \"skadelidn\",\n  \"skadelidte\": \"skadelid\",\n  \"skaden\": \"skad\",\n  \"skadens\": \"skad\",\n  \"skadeoppgjer\": \"skadeoppgj\",\n  \"skader\": \"skad\",\n  \"skadet\": \"skad\",\n  \"skadeutvikling\": \"skadeutvikling\",\n  \"skaff\": \"skaff\",\n  \"skaffa\": \"skaff\",\n  \"skaffar\": \"skaff\",\n  \"skaffast\": \"skaff\",\n  \"skaffe\": \"skaff\",\n  \"skaffer\": \"skaff\",\n  \"skaffet\": \"skaff\",\n  \"skaftet\": \"skaft\",\n  \"skal\": \"skal\",\n  \"skala\": \"skal\",\n  \"skalaen\": \"skala\",\n  \"skaldekunst\": \"skaldekunst\",\n  \"skaldemjøden\": \"skaldemjød\",\n  \"skalder\": \"skald\",\n  \"skalle\": \"skall\",\n  \"skallen\": \"skall\",\n  \"skallene\": \"skall\",\n  \"skalpeller\": \"skalpell\",\n  \"skam\": \"skam\",\n  \"skamferte\": \"skamfer\",\n  \"skamfull\": \"skamfull\",\n  \"skammelig\": \"skamm\",\n  \"skandia\": \"skandi\",\n  \"skap\": \"skap\",\n  \"skapdører\": \"skapdør\",\n  \"skape\": \"skap\",\n  \"skapelse\": \"skap\",\n  \"skaper\": \"skap\",\n  \"skaperverk\": \"skaperverk\",\n  \"skapes\": \"skap\",\n  \"skapet\": \"skap\",\n  \"skapning\": \"skapning\",\n  \"skapningene\": \"skapning\",\n  \"skapninger\": \"skapning\",\n  \"skapt\": \"skapt\",\n  \"skapte\": \"skapt\",\n  \"skar\": \"skar\",\n  \"skare\": \"skar\",\n  \"skarp\": \"skarp\",\n  \"skarpe\": \"skarp\",\n  \"skarve\": \"skarv\",\n  \"skatt\": \"skatt\",\n  \"skatte\": \"skatt\",\n  \"skattebegrensningsregelen\": \"skattebegrensningsregel\",\n  \"skattebegunstiget\": \"skattebegunst\",\n  \"skattebesparelsen\": \"skattebespar\",\n  \"skattebestemmelsene\": \"skattebestemm\",\n  \"skattebetalerne\": \"skattebetalern\",\n  \"skattedirektoratet\": \"skattedirektorat\",\n  \"skattefavorisere\": \"skattefavoriser\",\n  \"skattefavorisering\": \"skattefavorisering\",\n  \"skattefavoriseringen\": \"skattefavorisering\",\n  \"skattefavorisert\": \"skattefavoriser\",\n  \"skattefavoriserte\": \"skattefavoriser\",\n  \"skattefordel\": \"skattefordel\",\n  \"skattefordelar\": \"skattefordel\",\n  \"skattefordelen\": \"skattefordel\",\n  \"skattefordelene\": \"skattefordel\",\n  \"skattefordeler\": \"skattefordel\",\n  \"skattefradrag\": \"skattefradrag\",\n  \"skattefri\": \"skattefri\",\n  \"skattefrihet\": \"skattefri\",\n  \"skatteinntekter\": \"skatteinntekt\",\n  \"skatteinsentiver\": \"skatteinsentiv\",\n  \"skatteklasse\": \"skatteklass\",\n  \"skattekontroll\": \"skattekontroll\",\n  \"skattelettelser\": \"skattelett\",\n  \"skatteligningen\": \"skatteligning\",\n  \"skattelov\": \"skatt\",\n  \"skattelova\": \"skatt\",\n  \"skatteloven\": \"skatt\",\n  \"skattelovgivingen\": \"skattelovgiving\",\n  \"skattelovgivningen\": \"skattelovgivning\",\n  \"skattelovgivningens\": \"skattelovgivning\",\n  \"skattemessig\": \"skattemess\",\n  \"skattemessige\": \"skattemess\",\n  \"skattemyndigheten\": \"skattemynd\",\n  \"skattemyndighetene\": \"skattemynd\",\n  \"skatten\": \"skatt\",\n  \"skattenøytralitet\": \"skattenøytralit\",\n  \"skatteplikt\": \"skatteplikt\",\n  \"skatteplikten\": \"skatteplikt\",\n  \"skattepliktens\": \"skatteplikt\",\n  \"skattepliktig\": \"skatteplikt\",\n  \"skattepliktige\": \"skatteplikt\",\n  \"skattepliktiges\": \"skatteplikt\",\n  \"skattepolitikk\": \"skattepolitikk\",\n  \"skatter\": \"skatt\",\n  \"skattereformen\": \"skattereform\",\n  \"skattereglane\": \"skatteregl\",\n  \"skattereglar\": \"skatteregl\",\n  \"skattereglene\": \"skatteregl\",\n  \"skatteregler\": \"skatteregl\",\n  \"skatteretten\": \"skatterett\",\n  \"skatterettslig\": \"skatteretts\",\n  \"skatterettslige\": \"skatteretts\",\n  \"skattesammenheng\": \"skattesammenheng\",\n  \"skattesats\": \"skattesat\",\n  \"skattespørsmål\": \"skattespørsmål\",\n  \"skattestimulert\": \"skattestimuler\",\n  \"skattestimulerte\": \"skattestimuler\",\n  \"skattestyresmakter\": \"skattestyresmakt\",\n  \"skattesubjekt\": \"skattesubjekt\",\n  \"skattesystem\": \"skattesystem\",\n  \"skattesystemet\": \"skattesystem\",\n  \"skattetrekket\": \"skattetrekk\",\n  \"skatteutsettelse\": \"skatteutsett\",\n  \"skatteutsettelsen\": \"skatteutsett\",\n  \"skattevedtak\": \"skattevedtak\",\n  \"skattevedtaket\": \"skattevedtak\",\n  \"skattlagt\": \"skattlagt\",\n  \"skattlagte\": \"skattlagt\",\n  \"skattlegges\": \"skattlegg\",\n  \"skattlegging\": \"skattlegging\",\n  \"skattyter\": \"skattyt\",\n  \"skattytere\": \"skattyter\",\n  \"skattyteren\": \"skattyter\",\n  \"skattyters\": \"skattyt\",\n  \"skavanker\": \"skavank\",\n  \"ske\": \"ske\",\n  \"skeivdeling\": \"skeivdeling\",\n  \"skeive\": \"skeiv\",\n  \"skeivt\": \"skeivt\",\n  \"skepsisen\": \"skepsis\",\n  \"skeptisk\": \"skeptisk\",\n  \"ski\": \"ski\",\n  \"skidbladner\": \"skidbladn\",\n  \"skien\": \"skien\",\n  \"skift\": \"skift\",\n  \"skifta\": \"skift\",\n  \"skiftar\": \"skift\",\n  \"skifte\": \"skift\",\n  \"skiftelova\": \"skift\",\n  \"skiftenede\": \"skiften\",\n  \"skifter\": \"skift\",\n  \"skifteretten\": \"skifterett\",\n  \"skiftes\": \"skift\",\n  \"skiftestasjonen\": \"skiftestasjon\",\n  \"skiftet\": \"skift\",\n  \"skifting\": \"skifting\",\n  \"skigarden\": \"skigard\",\n  \"skigudinne\": \"skigudinn\",\n  \"skikka\": \"skikk\",\n  \"skikke\": \"skikk\",\n  \"skikkelig\": \"skikk\",\n  \"skikkelse\": \"skikk\",\n  \"skikkelsen\": \"skikk\",\n  \"skikkelser\": \"skikk\",\n  \"skikker\": \"skikk\",\n  \"skikket\": \"skikk\",\n  \"skil\": \"skil\",\n  \"skilde\": \"skild\",\n  \"skilja\": \"skilj\",\n  \"skiljast\": \"skilj\",\n  \"skilje\": \"skilj\",\n  \"skiljet\": \"skilj\",\n  \"skiljevegger\": \"skiljevegg\",\n  \"skille\": \"skill\",\n  \"skiller\": \"skill\",\n  \"skilles\": \"skill\",\n  \"skillet\": \"skill\",\n  \"skilnad\": \"skilnad\",\n  \"skilnaden\": \"skilnad\",\n  \"skilnadene\": \"skilnad\",\n  \"skilnader\": \"skilnad\",\n  \"skilsdom\": \"skilsdom\",\n  \"skilsdomsavtalar\": \"skilsdomsavtal\",\n  \"skilsmål\": \"skilsmål\",\n  \"skilt\": \"skilt\",\n  \"skiltet\": \"skilt\",\n  \"skimrer\": \"skimr\",\n  \"skimter\": \"skimt\",\n  \"skinfakse\": \"skinfaks\",\n  \"skingrende\": \"skingr\",\n  \"skinnegående\": \"skinnegå\",\n  \"skinnende\": \"skinn\",\n  \"skinner\": \"skinn\",\n  \"skinnet\": \"skinn\",\n  \"skinnfellen\": \"skinnfell\",\n  \"skinnpung\": \"skinnpung\",\n  \"skint\": \"skint\",\n  \"skinte\": \"skint\",\n  \"skip\": \"skip\",\n  \"skipa\": \"skip\",\n  \"skipar\": \"skip\",\n  \"skipe\": \"skip\",\n  \"skipene\": \"skip\",\n  \"skipenes\": \"skip\",\n  \"skipet\": \"skip\",\n  \"skiping\": \"skiping\",\n  \"skipling\": \"skipling\",\n  \"skipningene\": \"skipning\",\n  \"skipningsmønster\": \"skipningsmønst\",\n  \"skipningsvolum\": \"skipningsvolum\",\n  \"skipsaksjeselskap\": \"skipsaksjeselskap\",\n  \"skipsandel\": \"skipsandel\",\n  \"skipsanløpene\": \"skipsanløp\",\n  \"skipsdekket\": \"skipsdekk\",\n  \"skipsfart\": \"skipsfart\",\n  \"skipsfarten\": \"skipsfart\",\n  \"skipsfraktede\": \"skipsfrakt\",\n  \"skipshastighet\": \"skipshast\",\n  \"skipsløsninger\": \"skipsløsning\",\n  \"skipsregister\": \"skipsregist\",\n  \"skipsregistera\": \"skipsregister\",\n  \"skipsstørrelse\": \"skipsstørr\",\n  \"skipsstørrelser\": \"skipsstørr\",\n  \"skipstilbud\": \"skipstilbud\",\n  \"skipstrafikk\": \"skipstrafikk\",\n  \"skipstrafikken\": \"skipstrafikk\",\n  \"skipstransport\": \"skipstransport\",\n  \"skipstransporten\": \"skipstransport\",\n  \"skipstyper\": \"skipstyp\",\n  \"skirne\": \"skirn\",\n  \"skisse\": \"skiss\",\n  \"skissemessige\": \"skissemess\",\n  \"skissere\": \"skisser\",\n  \"skisserer\": \"skisser\",\n  \"skisseres\": \"skisser\",\n  \"skissert\": \"skisser\",\n  \"skisserte\": \"skisser\",\n  \"skitten\": \"skitt\",\n  \"skittent\": \"skittent\",\n  \"skive\": \"skiv\",\n  \"skje\": \"skje\",\n  \"skjebne\": \"skjebn\",\n  \"skjebnen\": \"skjebn\",\n  \"skjebnetråd\": \"skjebnetråd\",\n  \"skjedd\": \"skjedd\",\n  \"skjedde\": \"skjedd\",\n  \"skjeftet\": \"skjeft\",\n  \"skjegg\": \"skjegg\",\n  \"skjegget\": \"skjegg\",\n  \"skjeggete\": \"skjegget\",\n  \"skjeggløse\": \"skjeggløs\",\n  \"skjell\": \"skjell\",\n  \"skjellete\": \"skjellet\",\n  \"skjellsord\": \"skjellsord\",\n  \"skjelne\": \"skjeln\",\n  \"skjelve\": \"skjelv\",\n  \"skjelvende\": \"skjelv\",\n  \"skjelver\": \"skjelv\",\n  \"skjematisk\": \"skjematisk\",\n  \"skjemt\": \"skjemt\",\n  \"skjenk\": \"skjenk\",\n  \"skjenke\": \"skjenk\",\n  \"skjenker\": \"skjenk\",\n  \"skjer\": \"skjer\",\n  \"skjere\": \"skjer\",\n  \"skjerma\": \"skjerm\",\n  \"skjerme\": \"skjerm\",\n  \"skjermes\": \"skjerm\",\n  \"skjermet\": \"skjerm\",\n  \"skjerming\": \"skjerming\",\n  \"skjerpe\": \"skjerp\",\n  \"skjerpede\": \"skjerp\",\n  \"skjett\": \"skjett\",\n  \"skjev\": \"skjev\",\n  \"skjevheter\": \"skjev\",\n  \"skjevseleksjon\": \"skjevseleksjon\",\n  \"skjold\": \"skjold\",\n  \"skjoldene\": \"skjold\",\n  \"skjoldet\": \"skjold\",\n  \"skjoldungene\": \"skjoldung\",\n  \"skjule\": \"skjul\",\n  \"skjuler\": \"skjul\",\n  \"skjult\": \"skjult\",\n  \"skjær\": \"skjær\",\n  \"skjære\": \"skjær\",\n  \"skjærende\": \"skjær\",\n  \"skjærer\": \"skjær\",\n  \"skjøn\": \"skjøn\",\n  \"skjønet\": \"skjøn\",\n  \"skjønne\": \"skjønn\",\n  \"skjønner\": \"skjønn\",\n  \"skjønnhet\": \"skjønn\",\n  \"skjønnsmessig\": \"skjønnsmess\",\n  \"skjørt\": \"skjørt\",\n  \"skjørtene\": \"skjørt\",\n  \"skjøter\": \"skjøt\",\n  \"skjøvet\": \"skjøv\",\n  \"skli\": \"skli\",\n  \"sko\": \"sko\",\n  \"skodden\": \"skodd\",\n  \"skoene\": \"skoen\",\n  \"skog\": \"skog\",\n  \"skogen\": \"skog\",\n  \"skogene\": \"skog\",\n  \"skoger\": \"skog\",\n  \"skogholt\": \"skogholt\",\n  \"skoglandet\": \"skogland\",\n  \"skogs\": \"skog\",\n  \"skoll\": \"skoll\",\n  \"skolten\": \"skolt\",\n  \"skote\": \"skot\",\n  \"skotter\": \"skott\",\n  \"skou\": \"skou\",\n  \"skrangler\": \"skrangl\",\n  \"skrankene\": \"skrank\",\n  \"skranker\": \"skrank\",\n  \"skrapeklev\": \"skrapeklev\",\n  \"skraper\": \"skrap\",\n  \"skratter\": \"skratt\",\n  \"skrekkelig\": \"skrekk\",\n  \"skrekkelige\": \"skrekk\",\n  \"skremme\": \"skremm\",\n  \"skremmende\": \"skremm\",\n  \"skremmer\": \"skremm\",\n  \"skremt\": \"skremt\",\n  \"skremte\": \"skremt\",\n  \"skrever\": \"skrev\",\n  \"skrevet\": \"skrev\",\n  \"skrevs\": \"skrev\",\n  \"skriftelig\": \"skrift\",\n  \"skriftleg\": \"skrift\",\n  \"skriftlig\": \"skrift\",\n  \"skrik\": \"skrik\",\n  \"skrike\": \"skrik\",\n  \"skrikene\": \"skrik\",\n  \"skriker\": \"skrik\",\n  \"skrin\": \"skrin\",\n  \"skrinet\": \"skrin\",\n  \"skrinlegges\": \"skrinlegg\",\n  \"skritt\": \"skritt\",\n  \"skriv\": \"skriv\",\n  \"skrivast\": \"skriv\",\n  \"skrive\": \"skriv\",\n  \"skriver\": \"skriv\",\n  \"skrives\": \"skriv\",\n  \"skrivne\": \"skrivn\",\n  \"skrotet\": \"skrot\",\n  \"skrotstein\": \"skrotstein\",\n  \"skryme\": \"skrym\",\n  \"skrymes\": \"skrym\",\n  \"skryt\": \"skryt\",\n  \"skryte\": \"skryt\",\n  \"skryter\": \"skryt\",\n  \"skrå\": \"skrå\",\n  \"skudd\": \"skudd\",\n  \"skuddet\": \"skudd\",\n  \"skuer\": \"skuer\",\n  \"skuffet\": \"skuff\",\n  \"skular\": \"skul\",\n  \"skuld\": \"skuld\",\n  \"skulder\": \"skuld\",\n  \"skulderen\": \"skulder\",\n  \"skuldre\": \"skuldr\",\n  \"skuldrene\": \"skuldr\",\n  \"skuler\": \"skul\",\n  \"skulle\": \"skull\",\n  \"skumdråper\": \"skumdråp\",\n  \"skumle\": \"skuml\",\n  \"skummel\": \"skummel\",\n  \"skummende\": \"skumm\",\n  \"skumpet\": \"skump\",\n  \"skur\": \"skur\",\n  \"skure\": \"skur\",\n  \"skurer\": \"skur\",\n  \"skurt\": \"skurt\",\n  \"skutt\": \"skutt\",\n  \"skvetter\": \"skvett\",\n  \"skvettes\": \"skvett\",\n  \"skybanke\": \"skybank\",\n  \"skyene\": \"skyen\",\n  \"skyer\": \"skyer\",\n  \"skygge\": \"skygg\",\n  \"skyggen\": \"skygg\",\n  \"skygger\": \"skygg\",\n  \"skyid\": \"skyid\",\n  \"skyld\": \"skyld\",\n  \"skyldansvar\": \"skyldansv\",\n  \"skyldansvaret\": \"skyldansvar\",\n  \"skylden\": \"skyld\",\n  \"skylder\": \"skyld\",\n  \"skyldes\": \"skyld\",\n  \"skyldforhold\": \"skyldforhold\",\n  \"skyldgrunnlag\": \"skyldgrunnlag\",\n  \"skyldig\": \"skyld\",\n  \"skyldige\": \"skyld\",\n  \"skyldnadene\": \"skyldnad\",\n  \"skyldnader\": \"skyldnad\",\n  \"skyldneren\": \"skyldner\",\n  \"skyldnerens\": \"skyldner\",\n  \"skylle\": \"skyll\",\n  \"skyller\": \"skyll\",\n  \"skynd\": \"skynd\",\n  \"skynde\": \"skynd\",\n  \"skynder\": \"skynd\",\n  \"skyndet\": \"skynd\",\n  \"skyr\": \"skyr\",\n  \"skyt\": \"skyt\",\n  \"skytast\": \"skyt\",\n  \"skyte\": \"skyt\",\n  \"skyter\": \"skyt\",\n  \"skytes\": \"skyt\",\n  \"skyve\": \"skyv\",\n  \"skyver\": \"skyv\",\n  \"skyves\": \"skyv\",\n  \"skål\": \"skål\",\n  \"skåler\": \"skål\",\n  \"skåne\": \"skån\",\n  \"skåner\": \"skån\",\n  \"skånsomt\": \"skånsomt\",\n  \"skøyte\": \"skøyt\",\n  \"sladder\": \"sladd\",\n  \"sladre\": \"sladr\",\n  \"sladrehanker\": \"sladrehank\",\n  \"sladrer\": \"sladr\",\n  \"sladret\": \"sladr\",\n  \"slag\": \"slag\",\n  \"slaga\": \"slag\",\n  \"slagentangen\": \"slagentang\",\n  \"slaget\": \"slag\",\n  \"slagmarken\": \"slagmark\",\n  \"slags\": \"slag\",\n  \"slagsmål\": \"slagsmål\",\n  \"slakte\": \"slakt\",\n  \"slaktedyr\": \"slaktedyr\",\n  \"slakter\": \"slakt\",\n  \"slaktet\": \"slakt\",\n  \"slange\": \"slang\",\n  \"slangehodet\": \"slangehod\",\n  \"slangen\": \"slang\",\n  \"slapp\": \"slapp\",\n  \"slarvekjerringer\": \"slarvekjerring\",\n  \"slede\": \"sled\",\n  \"sleden\": \"sled\",\n  \"slege\": \"sleg\",\n  \"slegne\": \"slegn\",\n  \"sleipner\": \"sleipn\",\n  \"sleivkjeftet\": \"sleivkjeft\",\n  \"slekt\": \"slekt\",\n  \"slekten\": \"slekt\",\n  \"slekter\": \"slekt\",\n  \"slektning\": \"slektning\",\n  \"slektningar\": \"slektning\",\n  \"slenger\": \"sleng\",\n  \"slengkyss\": \"slengkyss\",\n  \"slengt\": \"slengt\",\n  \"slepende\": \"slep\",\n  \"sleper\": \"slep\",\n  \"slepp\": \"slepp\",\n  \"sleppe\": \"slepp\",\n  \"slept\": \"slept\",\n  \"slet\": \"slet\",\n  \"slett\": \"slett\",\n  \"sletta\": \"slett\",\n  \"slettast\": \"slett\",\n  \"slette\": \"slett\",\n  \"sletten\": \"slett\",\n  \"sletter\": \"slett\",\n  \"sletting\": \"sletting\",\n  \"slik\": \"slik\",\n  \"slike\": \"slik\",\n  \"slikke\": \"slikk\",\n  \"slikker\": \"slikk\",\n  \"slikket\": \"slikk\",\n  \"slikt\": \"slikt\",\n  \"slim\": \"slim\",\n  \"slimet\": \"slim\",\n  \"slipp\": \"slipp\",\n  \"slippe\": \"slipp\",\n  \"slipper\": \"slipp\",\n  \"slippes\": \"slipp\",\n  \"slit\": \"slit\",\n  \"slitasje\": \"slitasj\",\n  \"slite\": \"slit\",\n  \"sliten\": \"slit\",\n  \"sliter\": \"slit\",\n  \"slites\": \"slit\",\n  \"slitt\": \"slitt\",\n  \"slo\": \"slo\",\n  \"sloss\": \"sloss\",\n  \"slottet\": \"slott\",\n  \"slottsparktunnelen\": \"slottsparktunnel\",\n  \"slu\": \"slu\",\n  \"sludre\": \"sludr\",\n  \"sludrer\": \"sludr\",\n  \"sluke\": \"sluk\",\n  \"sluker\": \"sluk\",\n  \"slukke\": \"slukk\",\n  \"slukkes\": \"slukk\",\n  \"slukket\": \"slukk\",\n  \"slukne\": \"slukn\",\n  \"slukner\": \"slukn\",\n  \"slukt\": \"slukt\",\n  \"slukøret\": \"slukør\",\n  \"sluppet\": \"slupp\",\n  \"slurk\": \"slurk\",\n  \"slurken\": \"slurk\",\n  \"slutt\": \"slutt\",\n  \"sluttar\": \"slutt\",\n  \"sluttbehandlet\": \"sluttbehandl\",\n  \"sluttbruker\": \"sluttbruk\",\n  \"slutte\": \"slutt\",\n  \"slutten\": \"slutt\",\n  \"slutter\": \"slutt\",\n  \"sluttes\": \"slutt\",\n  \"sluttet\": \"slutt\",\n  \"sluttfasen\": \"sluttfas\",\n  \"sluttført\": \"sluttført\",\n  \"sluttlønn\": \"sluttlønn\",\n  \"sluttlønnen\": \"sluttlønn\",\n  \"sluttlønnsbasert\": \"sluttlønnsbaser\",\n  \"sluttlønnsbaserte\": \"sluttlønnsbaser\",\n  \"sluttlønnsprinsippet\": \"sluttlønnsprinsipp\",\n  \"sluttregnskapet\": \"sluttregnskap\",\n  \"slynger\": \"slyng\",\n  \"slå\": \"slå\",\n  \"slåande\": \"slåand\",\n  \"slåast\": \"slåast\",\n  \"slåen\": \"slåen\",\n  \"slår\": \"slår\",\n  \"slås\": \"slås\",\n  \"slåss\": \"slåss\",\n  \"slåsskamp\": \"slåsskamp\",\n  \"slåsskjempene\": \"slåsskjemp\",\n  \"slåsskjemper\": \"slåsskjemp\",\n  \"slått\": \"slått\",\n  \"slåttefolk\": \"slåttefolk\",\n  \"slør\": \"slør\",\n  \"sløret\": \"slør\",\n  \"sløve\": \"sløv\",\n  \"sløvet\": \"sløv\",\n  \"smak\": \"smak\",\n  \"smake\": \"smak\",\n  \"smaker\": \"smak\",\n  \"smakt\": \"smakt\",\n  \"smal\": \"smal\",\n  \"smale\": \"smal\",\n  \"smalere\": \"smaler\",\n  \"smatter\": \"smatt\",\n  \"smed\": \"smed\",\n  \"smedarbeid\": \"smedarbeid\",\n  \"smeden\": \"smed\",\n  \"smedene\": \"smed\",\n  \"smeder\": \"smed\",\n  \"smedkunster\": \"smedkunst\",\n  \"smelle\": \"smell\",\n  \"smeller\": \"smell\",\n  \"smelte\": \"smelt\",\n  \"smelter\": \"smelt\",\n  \"smeltet\": \"smelt\",\n  \"smertene\": \"smert\",\n  \"smi\": \"smi\",\n  \"smia\": \"smia\",\n  \"smidd\": \"smidd\",\n  \"smidde\": \"smidd\",\n  \"smidig\": \"smid\",\n  \"smiene\": \"smien\",\n  \"smiger\": \"smig\",\n  \"smigre\": \"smigr\",\n  \"smil\": \"smil\",\n  \"smile\": \"smil\",\n  \"smiler\": \"smil\",\n  \"smilet\": \"smil\",\n  \"smilte\": \"smilt\",\n  \"smir\": \"smir\",\n  \"smiske\": \"smisk\",\n  \"smisker\": \"smisk\",\n  \"smittende\": \"smitt\",\n  \"smitter\": \"smitt\",\n  \"smoltens\": \"smolt\",\n  \"smurte\": \"smurt\",\n  \"smyge\": \"smyg\",\n  \"smyger\": \"smyg\",\n  \"smykkelåsen\": \"smykkelås\",\n  \"smykker\": \"smykk\",\n  \"smykket\": \"smykk\",\n  \"smykketyven\": \"smykketyv\",\n  \"små\": \"små\",\n  \"småbiter\": \"småbit\",\n  \"småbonde\": \"småbond\",\n  \"småfe\": \"småf\",\n  \"småguttene\": \"smågutt\",\n  \"smågutter\": \"smågutt\",\n  \"småhus\": \"småhus\",\n  \"småpakkeforsendelser\": \"småpakkeforsend\",\n  \"småpakker\": \"småpakk\",\n  \"småvilt\": \"småvilt\",\n  \"smører\": \"smør\",\n  \"smøring\": \"smøring\",\n  \"snakk\": \"snakk\",\n  \"snakke\": \"snakk\",\n  \"snakker\": \"snakk\",\n  \"snakkes\": \"snakk\",\n  \"snakket\": \"snakk\",\n  \"snar\": \"snar\",\n  \"snarare\": \"snarar\",\n  \"snarast\": \"snar\",\n  \"snare\": \"snar\",\n  \"snarere\": \"snarer\",\n  \"snarlig\": \"snar\",\n  \"snart\": \"snart\",\n  \"snartur\": \"snartur\",\n  \"snarvegen\": \"snarveg\",\n  \"snarvei\": \"snarvei\",\n  \"snarveien\": \"snarvei\",\n  \"snarveier\": \"snarvei\",\n  \"snauklippet\": \"snauklipp\",\n  \"snaut\": \"snaut\",\n  \"snautt\": \"snautt\",\n  \"sne\": \"sne\",\n  \"sneen\": \"sneen\",\n  \"snefonnene\": \"snefonn\",\n  \"snehule\": \"snehul\",\n  \"snek\": \"snek\",\n  \"sneket\": \"snek\",\n  \"snerrende\": \"snerr\",\n  \"snerrer\": \"snerr\",\n  \"snevre\": \"snevr\",\n  \"snevrere\": \"snevrer\",\n  \"sniker\": \"snik\",\n  \"snill\": \"snill\",\n  \"snille\": \"snill\",\n  \"snitt\": \"snitt\",\n  \"sno\": \"sno\",\n  \"snor\": \"snor\",\n  \"snoren\": \"snor\",\n  \"snorke\": \"snork\",\n  \"snorkende\": \"snork\",\n  \"snorker\": \"snork\",\n  \"snu\": \"snu\",\n  \"snubler\": \"snubl\",\n  \"snudd\": \"snudd\",\n  \"snufser\": \"snufs\",\n  \"snur\": \"snur\",\n  \"snus\": \"snus\",\n  \"snø\": \"snø\",\n  \"snøen\": \"snøen\",\n  \"snøfter\": \"snøft\",\n  \"snøre\": \"snør\",\n  \"snøret\": \"snør\",\n  \"snøvler\": \"snøvl\",\n  \"social\": \"social\",\n  \"sog\": \"sog\",\n  \"sogn\": \"sogn\",\n  \"sokkeletasjen\": \"sokkeletasj\",\n  \"sol\": \"sol\",\n  \"solberg\": \"solberg\",\n  \"solbergkrysset\": \"solbergkryss\",\n  \"soldatene\": \"soldat\",\n  \"soldater\": \"soldat\",\n  \"solen\": \"sol\",\n  \"solgt\": \"solgt\",\n  \"solgte\": \"solgt\",\n  \"solid\": \"solid\",\n  \"solidarisk\": \"solidarisk\",\n  \"solidaritet\": \"solidarit\",\n  \"solidariteten\": \"solidaritet\",\n  \"solidaritetsalternativet\": \"solidaritetsalternativ\",\n  \"soliditet\": \"solidit\",\n  \"soliditetskrav\": \"soliditetskrav\",\n  \"soloppgang\": \"soloppgang\",\n  \"soloppgangen\": \"soloppgang\",\n  \"solskinn\": \"solskinn\",\n  \"soltegnet\": \"soltegn\",\n  \"solvognen\": \"solvogn\",\n  \"som\": \"som\",\n  \"somme\": \"somm\",\n  \"sommer\": \"somm\",\n  \"sommerdag\": \"sommerdag\",\n  \"sommeren\": \"sommer\",\n  \"sommerfuglvinger\": \"sommerfuglving\",\n  \"sommersesongen\": \"sommersesong\",\n  \"somtid\": \"somtid\",\n  \"son\": \"son\",\n  \"sorg\": \"sorg\",\n  \"sorgløst\": \"sorgløst\",\n  \"sort\": \"sort\",\n  \"sorte\": \"sort\",\n  \"sortering\": \"sortering\",\n  \"sorteringsanlegg\": \"sorteringsanlegg\",\n  \"sortkledd\": \"sortkledd\",\n  \"sortkledde\": \"sortkledd\",\n  \"sortkledte\": \"sortkled\",\n  \"sosial\": \"sosial\",\n  \"sosiale\": \"sosial\",\n  \"sosialforsikringssystem\": \"sosialforsikringssystem\",\n  \"sosialistisk\": \"sosialistisk\",\n  \"sosialkomiteen\": \"sosialkomite\",\n  \"sosialkomiteens\": \"sosialkomite\",\n  \"sosialkontor\": \"sosialkontor\",\n  \"sosialpolitisk\": \"sosialpolitisk\",\n  \"sosialt\": \"sosialt\",\n  \"sosialtenestelova\": \"sosialtenest\",\n  \"sosialtjenesten\": \"sosialtjenest\",\n  \"sot\": \"sot\",\n  \"sotbrun\": \"sotbrun\",\n  \"sou\": \"sou\",\n  \"sov\": \"sov\",\n  \"sove\": \"sov\",\n  \"sovekammeret\": \"sovekammer\",\n  \"sovende\": \"sov\",\n  \"sover\": \"sov\",\n  \"soverommet\": \"soveromm\",\n  \"sovet\": \"sov\",\n  \"sovner\": \"sovn\",\n  \"sovnet\": \"sovn\",\n  \"spakt\": \"spakt\",\n  \"spankulerer\": \"spankuler\",\n  \"spann\": \"spann\",\n  \"spare\": \"spar\",\n  \"spareavtale\": \"spareavtal\",\n  \"spareavtalen\": \"spareavtal\",\n  \"spareavtalene\": \"spareavtal\",\n  \"spareavtaler\": \"spareavtal\",\n  \"sparebank\": \"sparebank\",\n  \"sparebankane\": \"sparebank\",\n  \"sparebankforeningen\": \"sparebankforening\",\n  \"sparebanklova\": \"sparebank\",\n  \"sparebeløp\": \"sparebeløp\",\n  \"sparedelen\": \"sparedel\",\n  \"spareelement\": \"spareelement\",\n  \"spareform\": \"spareform\",\n  \"spareformen\": \"spareform\",\n  \"spareformer\": \"spareform\",\n  \"spareinnskot\": \"spareinnskot\",\n  \"spareinnskota\": \"spareinnskot\",\n  \"sparekapital\": \"sparekapital\",\n  \"sparekasser\": \"sparekass\",\n  \"sparekontrakter\": \"sparekontrakt\",\n  \"sparelag\": \"sparelag\",\n  \"sparemarkedet\": \"sparemarked\",\n  \"sparemidlane\": \"sparemidl\",\n  \"sparemidlar\": \"sparemidl\",\n  \"sparemidlene\": \"sparemidl\",\n  \"sparemidler\": \"sparemidl\",\n  \"spareordning\": \"spareordning\",\n  \"spareordningene\": \"spareordning\",\n  \"spareordninger\": \"spareordning\",\n  \"spareprodukt\": \"spareprodukt\",\n  \"spareprodukter\": \"spareprodukt\",\n  \"sparer\": \"spar\",\n  \"spareren\": \"sparer\",\n  \"sparerens\": \"sparer\",\n  \"sparesaldoen\": \"sparesaldo\",\n  \"spareverksemda\": \"spareverksemd\",\n  \"sparing\": \"sparing\",\n  \"sparinga\": \"sparing\",\n  \"sparingen\": \"sparing\",\n  \"spark\": \"spark\",\n  \"sparkassan\": \"sparkassan\",\n  \"sparkasse\": \"sparkass\",\n  \"sparke\": \"spark\",\n  \"sparker\": \"spark\",\n  \"sparket\": \"spark\",\n  \"spart\": \"spart\",\n  \"spedisjons\": \"spedisjon\",\n  \"spedisjonstjenester\": \"spedisjonstjenest\",\n  \"speditørene\": \"speditør\",\n  \"speditører\": \"speditør\",\n  \"spegla\": \"spegl\",\n  \"speide\": \"speid\",\n  \"speider\": \"speid\",\n  \"speilbilde\": \"speilbild\",\n  \"spekter\": \"spekt\",\n  \"spekulant\": \"spekulant\",\n  \"spekulasjonsobjekt\": \"spekulasjonsobjekt\",\n  \"spela\": \"spel\",\n  \"spelar\": \"spel\",\n  \"spele\": \"spel\",\n  \"spelerom\": \"spelerom\",\n  \"spenene\": \"spen\",\n  \"spenn\": \"spenn\",\n  \"spennende\": \"spenn\",\n  \"spenner\": \"spenn\",\n  \"spennet\": \"spenn\",\n  \"spenninga\": \"spenning\",\n  \"spenningsfelt\": \"spenningsfelt\",\n  \"spenntak\": \"spenntak\",\n  \"spennvidden\": \"spennvidd\",\n  \"spent\": \"spent\",\n  \"spente\": \"spent\",\n  \"sperre\": \"sperr\",\n  \"sperrer\": \"sperr\",\n  \"spesialbustader\": \"spesialbustad\",\n  \"spesialhavn\": \"spesialhavn\",\n  \"spesialisering\": \"spesialisering\",\n  \"spesialisert\": \"spesialiser\",\n  \"spesialiserte\": \"spesialiser\",\n  \"spesialitetsprinsippet\": \"spesialitetsprinsipp\",\n  \"spesialmerknadene\": \"spesialmerknad\",\n  \"spesialmerknader\": \"spesialmerknad\",\n  \"spesialområder\": \"spesialområd\",\n  \"spesialregel\": \"spesialregel\",\n  \"spesialtilfelle\": \"spesialtilfell\",\n  \"spesiell\": \"spesiell\",\n  \"spesielle\": \"spesiell\",\n  \"spesielt\": \"spesielt\",\n  \"spesifikasjon\": \"spesifikasjon\",\n  \"spesifikasjonskrav\": \"spesifikasjonskrav\",\n  \"spesifikke\": \"spesifikk\",\n  \"spesifikt\": \"spesifikt\",\n  \"spesifiserer\": \"spesifiser\",\n  \"spesifiseres\": \"spesifiser\",\n  \"spesifisert\": \"spesifiser\",\n  \"spesifiserte\": \"spesifiser\",\n  \"spikker\": \"spikk\",\n  \"spilene\": \"spil\",\n  \"spill\": \"spill\",\n  \"spille\": \"spill\",\n  \"spiller\": \"spill\",\n  \"spilloppmakeren\": \"spilloppmaker\",\n  \"spilt\": \"spilt\",\n  \"spire\": \"spir\",\n  \"spise\": \"spis\",\n  \"spiser\": \"spis\",\n  \"spises\": \"spis\",\n  \"spissen\": \"spiss\",\n  \"spist\": \"spist\",\n  \"spiste\": \"spist\",\n  \"spk\": \"spk\",\n  \"splinten\": \"splint\",\n  \"splintene\": \"splint\",\n  \"splintres\": \"splintr\",\n  \"sponene\": \"spon\",\n  \"sponhaug\": \"sponhaug\",\n  \"sponhaugen\": \"sponhaug\",\n  \"sponvikskansen\": \"sponvikskans\",\n  \"spor\": \"spor\",\n  \"sporadisk\": \"sporadisk\",\n  \"sporene\": \"spor\",\n  \"sporet\": \"spor\",\n  \"sporforbindelse\": \"sporforbind\",\n  \"sportilknytning\": \"sportilknytning\",\n  \"spott\": \"spott\",\n  \"spotter\": \"spott\",\n  \"sprakende\": \"sprak\",\n  \"sprakk\": \"sprakk\",\n  \"sprang\": \"sprang\",\n  \"spranget\": \"sprang\",\n  \"spratt\": \"spratt\",\n  \"spre\": \"spre\",\n  \"spreading\": \"spreading\",\n  \"spredning\": \"spredning\",\n  \"spredningen\": \"spredning\",\n  \"spredningsalternativer\": \"spredningsalternativ\",\n  \"spredningsformer\": \"spredningsform\",\n  \"spredningsmønster\": \"spredningsmønst\",\n  \"spredningsnett\": \"spredningsnett\",\n  \"spredt\": \"spredt\",\n  \"spreiast\": \"spreiast\",\n  \"spreidde\": \"spreidd\",\n  \"sprekere\": \"spreker\",\n  \"sprekk\": \"sprekk\",\n  \"sprekke\": \"sprekk\",\n  \"sprekker\": \"sprekk\",\n  \"sprell\": \"sprell\",\n  \"sprellende\": \"sprell\",\n  \"spreller\": \"sprell\",\n  \"sprenge\": \"spreng\",\n  \"sprenger\": \"spreng\",\n  \"sprenges\": \"spreng\",\n  \"sprengkulda\": \"sprengkuld\",\n  \"sprengninger\": \"sprengning\",\n  \"sprengrir\": \"sprengrir\",\n  \"sprengt\": \"sprengt\",\n  \"spres\": \"spres\",\n  \"spretter\": \"sprett\",\n  \"sprik\": \"sprik\",\n  \"spriker\": \"sprik\",\n  \"spriket\": \"sprik\",\n  \"springer\": \"spring\",\n  \"springskaller\": \"springskall\",\n  \"spruten\": \"sprut\",\n  \"spruter\": \"sprut\",\n  \"sprutet\": \"sprut\",\n  \"språk\": \"språk\",\n  \"språkbruk\": \"språkbruk\",\n  \"språket\": \"språk\",\n  \"språkkunnskapar\": \"språkkunnskap\",\n  \"språklig\": \"språk\",\n  \"spurt\": \"spurt\",\n  \"spurte\": \"spurt\",\n  \"spyd\": \"spyd\",\n  \"spydet\": \"spyd\",\n  \"spydkast\": \"spydk\",\n  \"spyende\": \"spyend\",\n  \"spyr\": \"spyr\",\n  \"spytt\": \"spytt\",\n  \"spytte\": \"spytt\",\n  \"spytter\": \"spytt\",\n  \"spyttet\": \"spytt\",\n  \"spå\": \"spå\",\n  \"spådd\": \"spådd\",\n  \"spådommen\": \"spådomm\",\n  \"spåkjerringer\": \"spåkjerring\",\n  \"spåkoner\": \"spåkon\",\n  \"spåkunster\": \"spåkunst\",\n  \"spåkvinne\": \"spåkvinn\",\n  \"spåkvinnen\": \"spåkvinn\",\n  \"spåkvinner\": \"spåkvinn\",\n  \"spøk\": \"spøk\",\n  \"spøker\": \"spøk\",\n  \"spør\": \"spør\",\n  \"spørje\": \"spørj\",\n  \"spørre\": \"spørr\",\n  \"spørrende\": \"spørr\",\n  \"spørres\": \"spørr\",\n  \"spørreundersøkelse\": \"spørreundersøk\",\n  \"spørsmål\": \"spørsmål\",\n  \"spørsmåla\": \"spørsmål\",\n  \"spørsmålene\": \"spørsmål\",\n  \"spørsmålet\": \"spørsmål\",\n  \"ssbs\": \"ssbs\",\n  \"st\": \"st\",\n  \"stabber\": \"stabb\",\n  \"stabburet\": \"stabbur\",\n  \"stabil\": \"stabil\",\n  \"stabile\": \"stabil\",\n  \"stabilisert\": \"stabiliser\",\n  \"stabilitet\": \"stabilit\",\n  \"stabilt\": \"stabilt\",\n  \"stablekraner\": \"stablekran\",\n  \"stablekransystemer\": \"stablekransystem\",\n  \"stablekranteknologi\": \"stablekranteknologi\",\n  \"stables\": \"stabl\",\n  \"stableteknologi\": \"stableteknologi\",\n  \"stabling\": \"stabling\",\n  \"stad\": \"stad\",\n  \"staden\": \"stad\",\n  \"stader\": \"stad\",\n  \"stades\": \"stad\",\n  \"stadfesta\": \"stadfest\",\n  \"stadfestast\": \"stadfest\",\n  \"stadfeste\": \"stadfest\",\n  \"stadfestes\": \"stadfest\",\n  \"stadfestet\": \"stadfest\",\n  \"stadfesting\": \"stadfesting\",\n  \"stadfestingsorskurd\": \"stadfestingsorskurd\",\n  \"stadig\": \"stad\",\n  \"stadige\": \"stad\",\n  \"stagge\": \"stagg\",\n  \"stagger\": \"stagg\",\n  \"stagnasjon\": \"stagnasjon\",\n  \"stagnere\": \"stagner\",\n  \"staking\": \"staking\",\n  \"stakk\": \"stakk\",\n  \"stakkar\": \"stakk\",\n  \"stakkars\": \"stakkar\",\n  \"stamfar\": \"stamf\",\n  \"stammen\": \"stamm\",\n  \"stammer\": \"stamm\",\n  \"stamnett\": \"stamnett\",\n  \"stamnettet\": \"stamnett\",\n  \"stamper\": \"stamp\",\n  \"stamveg\": \"stamveg\",\n  \"stamvegforbindelsen\": \"stamvegforbind\",\n  \"stamvegnettet\": \"stamvegnett\",\n  \"stamvegtilknytning\": \"stamvegtilknytning\",\n  \"stand\": \"stand\",\n  \"standard\": \"standard\",\n  \"standardberegnet\": \"standardberegn\",\n  \"standardberegning\": \"standardberegning\",\n  \"standarden\": \"standard\",\n  \"standardfradrag\": \"standardfradrag\",\n  \"standardfradragene\": \"standardfradrag\",\n  \"standardisering\": \"standardisering\",\n  \"standardiserte\": \"standardiser\",\n  \"standardsikring\": \"standardsikring\",\n  \"standpunkt\": \"standpunkt\",\n  \"standpunkta\": \"standpunkt\",\n  \"stange\": \"stang\",\n  \"stanger\": \"stang\",\n  \"stanken\": \"stank\",\n  \"stans\": \"stan\",\n  \"stansa\": \"stans\",\n  \"stanse\": \"stans\",\n  \"stanser\": \"stans\",\n  \"stanset\": \"stans\",\n  \"stappe\": \"stapp\",\n  \"star\": \"star\",\n  \"starkad\": \"starkad\",\n  \"start\": \"start\",\n  \"starte\": \"start\",\n  \"starter\": \"start\",\n  \"startes\": \"start\",\n  \"startet\": \"start\",\n  \"startlønn\": \"startlønn\",\n  \"stas\": \"stas\",\n  \"staselig\": \"stas\",\n  \"staselige\": \"stas\",\n  \"stasjon\": \"stasjon\",\n  \"stasjons\": \"stasjon\",\n  \"stat\": \"stat\",\n  \"staten\": \"stat\",\n  \"statens\": \"stat\",\n  \"stater\": \"stat\",\n  \"states\": \"stat\",\n  \"statistikk\": \"statistikk\",\n  \"statistisk\": \"statistisk\",\n  \"statistiske\": \"statistisk\",\n  \"statlege\": \"stat\",\n  \"statlig\": \"stat\",\n  \"statlige\": \"stat\",\n  \"statlånsrente\": \"statlånsrent\",\n  \"stats\": \"stat\",\n  \"statsautorisert\": \"statsautoriser\",\n  \"statsautoriserte\": \"statsautoriser\",\n  \"statsborgarskap\": \"statsborgarskap\",\n  \"statsborgere\": \"statsborger\",\n  \"statsborgerskap\": \"statsborgerskap\",\n  \"statsbudsjettet\": \"statsbudsjett\",\n  \"statsen\": \"stats\",\n  \"statsmidler\": \"statsmidl\",\n  \"statsråd\": \"statsråd\",\n  \"statsstøtte\": \"statsstøtt\",\n  \"status\": \"status\",\n  \"statusen\": \"status\",\n  \"staur\": \"staur\",\n  \"staute\": \"staut\",\n  \"stav\": \"stav\",\n  \"stavanger\": \"stavang\",\n  \"stavbærerske\": \"stavbærersk\",\n  \"staven\": \"stav\",\n  \"stavnen\": \"stavn\",\n  \"stavrende\": \"stavr\",\n  \"stebarn\": \"stebarn\",\n  \"sted\": \"sted\",\n  \"stedbundet\": \"stedbund\",\n  \"stede\": \"sted\",\n  \"steden\": \"sted\",\n  \"stedene\": \"sted\",\n  \"steder\": \"sted\",\n  \"stedet\": \"sted\",\n  \"stedsforming\": \"stedsforming\",\n  \"stedvis\": \"stedvis\",\n  \"steg\": \"steg\",\n  \"steget\": \"steg\",\n  \"steil\": \"steil\",\n  \"steilene\": \"steil\",\n  \"stein\": \"stein\",\n  \"steineksport\": \"steineksport\",\n  \"steinene\": \"stein\",\n  \"steinnes\": \"steinn\",\n  \"steinrøys\": \"steinrøy\",\n  \"steinrøyser\": \"steinrøys\",\n  \"steke\": \"stek\",\n  \"stekt\": \"stekt\",\n  \"stell\": \"stell\",\n  \"stelle\": \"stell\",\n  \"stelt\": \"stelt\",\n  \"stemme\": \"stemm\",\n  \"stemmen\": \"stemm\",\n  \"stemmene\": \"stemm\",\n  \"stemmer\": \"stemm\",\n  \"stemmerett\": \"stemmerett\",\n  \"stemninga\": \"stemning\",\n  \"stemte\": \"stemt\",\n  \"sten\": \"sten\",\n  \"stendig\": \"stend\",\n  \"stenen\": \"sten\",\n  \"stenene\": \"sten\",\n  \"stener\": \"sten\",\n  \"stengd\": \"stengd\",\n  \"stengde\": \"stengd\",\n  \"stenge\": \"steng\",\n  \"stengjast\": \"stengj\",\n  \"stengje\": \"stengj\",\n  \"stengjer\": \"stengj\",\n  \"stengt\": \"stengt\",\n  \"stenk\": \"stenk\",\n  \"stenkisten\": \"stenkist\",\n  \"stenmurene\": \"stenmur\",\n  \"stenstolpe\": \"stenstolp\",\n  \"stephen\": \"steph\",\n  \"steppene\": \"stepp\",\n  \"sterk\": \"sterk\",\n  \"sterkare\": \"sterkar\",\n  \"sterkaste\": \"sterkast\",\n  \"sterke\": \"sterk\",\n  \"sterkere\": \"sterker\",\n  \"sterkest\": \"sterkest\",\n  \"sterkeste\": \"sterkest\",\n  \"sterkt\": \"sterkt\",\n  \"stesønn\": \"stesønn\",\n  \"stesønnen\": \"stesønn\",\n  \"stettar\": \"stett\",\n  \"stevnemøte\": \"stevnemøt\",\n  \"stien\": \"stien\",\n  \"stier\": \"stier\",\n  \"stifta\": \"stift\",\n  \"stiftar\": \"stift\",\n  \"stiftarane\": \"stiftar\",\n  \"stiftarar\": \"stiftar\",\n  \"stiftaren\": \"stiftar\",\n  \"stiftast\": \"stift\",\n  \"stifte\": \"stift\",\n  \"stiftelse\": \"stift\",\n  \"stiftelser\": \"stift\",\n  \"stiftelsesgrunnlaget\": \"stiftelsesgrunnlag\",\n  \"stiftelsesloven\": \"stiftelse\",\n  \"stiftelseslovens\": \"stiftelse\",\n  \"stifting\": \"stifting\",\n  \"stiftinga\": \"stifting\",\n  \"stiftingar\": \"stifting\",\n  \"stiftingsdokument\": \"stiftingsdokument\",\n  \"stiftingsdokumentet\": \"stiftingsdokument\",\n  \"stiftingsgrunnlaget\": \"stiftingsgrunnlag\",\n  \"stiftingslova\": \"stifting\",\n  \"stiftingsmøtet\": \"stiftingsmøt\",\n  \"stiftingsutgiftene\": \"stiftingsutgift\",\n  \"stiftingsutgifter\": \"stiftingsutgift\",\n  \"stiftingsvilkåra\": \"stiftingsvilkår\",\n  \"stig\": \"stig\",\n  \"stige\": \"stig\",\n  \"stigende\": \"stig\",\n  \"stiger\": \"stig\",\n  \"stigninger\": \"stigning\",\n  \"stikk\": \"stikk\",\n  \"stikke\": \"stikk\",\n  \"stikker\": \"stikk\",\n  \"stikkes\": \"stikk\",\n  \"stikkord\": \"stikkord\",\n  \"stilisert\": \"stiliser\",\n  \"stiliserte\": \"stiliser\",\n  \"stillast\": \"still\",\n  \"stille\": \"still\",\n  \"stiller\": \"still\",\n  \"stilles\": \"still\",\n  \"stilling\": \"stilling\",\n  \"stillinga\": \"stilling\",\n  \"stillingar\": \"stilling\",\n  \"stillingen\": \"stilling\",\n  \"stillinger\": \"stilling\",\n  \"stillingsandel\": \"stillingsandel\",\n  \"stillingsfullmakt\": \"stillingsfullmakt\",\n  \"stillingsgruppe\": \"stillingsgrupp\",\n  \"stillingsinstruksar\": \"stillingsinstruks\",\n  \"stillingsskifter\": \"stillingsskift\",\n  \"stilt\": \"stilt\",\n  \"stilte\": \"stilt\",\n  \"stime\": \"stim\",\n  \"stimler\": \"stiml\",\n  \"stimulansen\": \"stimulans\",\n  \"stimulere\": \"stimuler\",\n  \"stimulerer\": \"stimuler\",\n  \"stimulering\": \"stimulering\",\n  \"stinker\": \"stink\",\n  \"stipulert\": \"stipuler\",\n  \"stirre\": \"stirr\",\n  \"stirrer\": \"stirr\",\n  \"stiv\": \"stiv\",\n  \"stive\": \"stiv\",\n  \"stivnet\": \"stivn\",\n  \"stjal\": \"stjal\",\n  \"stjele\": \"stjel\",\n  \"stjerne\": \"stjern\",\n  \"stjernen\": \"stjern\",\n  \"stjernene\": \"stjern\",\n  \"stjerner\": \"stjern\",\n  \"stk\": \"stk\",\n  \"sto\": \"sto\",\n  \"stockholm\": \"stockholm\",\n  \"stod\": \"stod\",\n  \"stoda\": \"stod\",\n  \"stokk\": \"stokk\",\n  \"stokke\": \"stokk\",\n  \"stokken\": \"stokk\",\n  \"stokkene\": \"stokk\",\n  \"stol\": \"stol\",\n  \"stole\": \"stol\",\n  \"stolen\": \"stol\",\n  \"stolene\": \"stol\",\n  \"stoler\": \"stol\",\n  \"stolpe\": \"stolp\",\n  \"stolpen\": \"stolp\",\n  \"stolt\": \"stolt\",\n  \"stolte\": \"stolt\",\n  \"stoltere\": \"stolter\",\n  \"stolthet\": \"stolt\",\n  \"stoppe\": \"stopp\",\n  \"stopper\": \"stopp\",\n  \"stoppet\": \"stopp\",\n  \"stor\": \"stor\",\n  \"storbritannia\": \"storbritanni\",\n  \"storbyene\": \"storby\",\n  \"stordriftsfordelene\": \"stordriftsfordel\",\n  \"stordriftsfordeler\": \"stordriftsfordel\",\n  \"store\": \"stor\",\n  \"storebroren\": \"storebror\",\n  \"storesøster\": \"storesøst\",\n  \"storleik\": \"storleik\",\n  \"storleiken\": \"storleik\",\n  \"storm\": \"storm\",\n  \"stormannsgal\": \"stormannsgal\",\n  \"stormen\": \"storm\",\n  \"stormende\": \"storm\",\n  \"stormer\": \"storm\",\n  \"stormet\": \"storm\",\n  \"stormkastene\": \"stormkast\",\n  \"stormvind\": \"stormvind\",\n  \"stormvær\": \"stormvær\",\n  \"storstilet\": \"storstil\",\n  \"stort\": \"stort\",\n  \"stortinget\": \"storting\",\n  \"stortingets\": \"storting\",\n  \"stortingsbehandling\": \"stortingsbehandling\",\n  \"stortingsbehandlingen\": \"stortingsbehandling\",\n  \"stortingskomiteen\": \"stortingskomite\",\n  \"stortingsmelding\": \"stortingsmelding\",\n  \"stortingsmeldingen\": \"stortingsmelding\",\n  \"stortingsmeldingene\": \"stortingsmelding\",\n  \"stortingsmeldinger\": \"stortingsmelding\",\n  \"stortingsvedtak\": \"stortingsvedtak\",\n  \"stortåen\": \"stortå\",\n  \"storverk\": \"storverk\",\n  \"storøyde\": \"storøyd\",\n  \"stp\": \"stp\",\n  \"straff\": \"straff\",\n  \"straffast\": \"straff\",\n  \"straffe\": \"straff\",\n  \"straffeføresegn\": \"straffeføresegn\",\n  \"straffeføresegner\": \"straffeføresegn\",\n  \"straffelova\": \"straff\",\n  \"strafferegelen\": \"strafferegel\",\n  \"straffereglane\": \"strafferegl\",\n  \"straffes\": \"straff\",\n  \"straffesak\": \"straffesak\",\n  \"straks\": \"straks\",\n  \"stramme\": \"stramm\",\n  \"strammer\": \"stramm\",\n  \"strammere\": \"strammer\",\n  \"strand\": \"strand\",\n  \"stranden\": \"strand\",\n  \"strandet\": \"strand\",\n  \"strandlinjen\": \"strandlinj\",\n  \"strandområdene\": \"strandområd\",\n  \"strandområder\": \"strandområd\",\n  \"strandsonen\": \"strandson\",\n  \"strategi\": \"strategi\",\n  \"strategier\": \"strategi\",\n  \"strategiplan\": \"strategiplan\",\n  \"strategiplanarbeidet\": \"strategiplanarbeid\",\n  \"strategiplanen\": \"strategiplan\",\n  \"strategiplanens\": \"strategiplan\",\n  \"strategiplaner\": \"strategiplan\",\n  \"strategiplans\": \"strategiplan\",\n  \"strategisk\": \"strategisk\",\n  \"strategiske\": \"strategisk\",\n  \"straum\": \"straum\",\n  \"streife\": \"streif\",\n  \"streifer\": \"streif\",\n  \"streik\": \"streik\",\n  \"strekke\": \"strekk\",\n  \"strekker\": \"strekk\",\n  \"strekkje\": \"strekkj\",\n  \"strekkjer\": \"strekkj\",\n  \"strekning\": \"strekning\",\n  \"strekningen\": \"strekning\",\n  \"strekninger\": \"strekning\",\n  \"strekpunkt\": \"strekpunkt\",\n  \"strekpunktene\": \"strekpunkt\",\n  \"streng\": \"streng\",\n  \"strengare\": \"strengar\",\n  \"strenge\": \"streng\",\n  \"strengen\": \"streng\",\n  \"strengere\": \"strenger\",\n  \"strengt\": \"strengt\",\n  \"strev\": \"strev\",\n  \"strever\": \"strev\",\n  \"stri\": \"stri\",\n  \"strid\": \"strid\",\n  \"stride\": \"strid\",\n  \"striden\": \"strid\",\n  \"strider\": \"strid\",\n  \"strides\": \"strid\",\n  \"stridigheter\": \"strid\",\n  \"strie\": \"strie\",\n  \"striglet\": \"strigl\",\n  \"strimer\": \"strim\",\n  \"strippes\": \"stripp\",\n  \"stripping\": \"stripping\",\n  \"strir\": \"strir\",\n  \"stritter\": \"stritt\",\n  \"struktur\": \"struktur\",\n  \"strukturelle\": \"strukturell\",\n  \"strukturen\": \"struktur\",\n  \"strukturendringer\": \"strukturendring\",\n  \"strukturer\": \"struktur\",\n  \"strupen\": \"strup\",\n  \"stryk\": \"stryk\",\n  \"stryke\": \"stryk\",\n  \"strykene\": \"stryk\",\n  \"stryker\": \"stryk\",\n  \"strå\": \"strå\",\n  \"stråler\": \"strål\",\n  \"stråpersonar\": \"stråperson\",\n  \"strøk\": \"strøk\",\n  \"strøm\": \"strøm\",\n  \"strømforholdene\": \"strømforhold\",\n  \"strømføringen\": \"strømføring\",\n  \"strømme\": \"strømm\",\n  \"strømmen\": \"strømm\",\n  \"strømmende\": \"strømm\",\n  \"strømmer\": \"strømm\",\n  \"strømmet\": \"strømm\",\n  \"strømstad\": \"strømstad\",\n  \"stubbe\": \"stubb\",\n  \"studere\": \"studer\",\n  \"studerer\": \"studer\",\n  \"studie\": \"studi\",\n  \"studiene\": \"studi\",\n  \"studier\": \"studi\",\n  \"studietur\": \"studietur\",\n  \"stuedøra\": \"stuedør\",\n  \"stuffes\": \"stuff\",\n  \"stuffing\": \"stuffing\",\n  \"stukket\": \"stukk\",\n  \"stum\": \"stum\",\n  \"stumme\": \"stumm\",\n  \"stummende\": \"stumm\",\n  \"stump\": \"stump\",\n  \"stund\": \"stund\",\n  \"stundom\": \"stundom\",\n  \"stup\": \"stup\",\n  \"stuper\": \"stup\",\n  \"stupet\": \"stup\",\n  \"sture\": \"stur\",\n  \"sturer\": \"stur\",\n  \"sturte\": \"sturt\",\n  \"stusser\": \"stuss\",\n  \"stuten\": \"stut\",\n  \"stygg\": \"stygg\",\n  \"stygge\": \"stygg\",\n  \"styggelig\": \"stygg\",\n  \"styggeste\": \"styggest\",\n  \"stygt\": \"stygt\",\n  \"stykke\": \"stykk\",\n  \"stykker\": \"stykk\",\n  \"stykket\": \"stykk\",\n  \"stykkgods\": \"stykkgod\",\n  \"stykkgodsbåter\": \"stykkgodsbåt\",\n  \"stykkgodsdelen\": \"stykkgodsdel\",\n  \"stykkgodsdistribusjon\": \"stykkgodsdistribusjon\",\n  \"stykkgodsdistribusjonen\": \"stykkgodsdistribusjon\",\n  \"stykkgodseksporten\": \"stykkgodseksport\",\n  \"stykkgodset\": \"stykkgods\",\n  \"stykkgodsfarten\": \"stykkgodsfart\",\n  \"stykkgodshandel\": \"stykkgodshandel\",\n  \"stykkgodshaven\": \"stykkgodshav\",\n  \"stykkgodshavn\": \"stykkgodshavn\",\n  \"stykkgodshavnen\": \"stykkgodshavn\",\n  \"stykkgodshavnene\": \"stykkgodshavn\",\n  \"stykkgodshåndtering\": \"stykkgodshåndtering\",\n  \"stykkgodshåndteringen\": \"stykkgodshåndtering\",\n  \"stykkgodsimport\": \"stykkgodsimport\",\n  \"stykkgodsimporten\": \"stykkgodsimport\",\n  \"stykkgodskaier\": \"stykkgodskai\",\n  \"stykkgodsklassifiserte\": \"stykkgodsklassifiser\",\n  \"stykkgodsmarkedet\": \"stykkgodsmarked\",\n  \"stykkgodsmengdene\": \"stykkgodsmengd\",\n  \"stykkgodsmengder\": \"stykkgodsmengd\",\n  \"stykkgodsomlasting\": \"stykkgodsomlasting\",\n  \"stykkgodsomlastingen\": \"stykkgodsomlasting\",\n  \"stykkgodsomsetning\": \"stykkgodsomsetning\",\n  \"stykkgodsomsetningen\": \"stykkgodsomsetning\",\n  \"stykkgodsomslaget\": \"stykkgodsomslag\",\n  \"stykkgodspotensialet\": \"stykkgodspotensial\",\n  \"stykkgodstrafikk\": \"stykkgodstrafikk\",\n  \"stykkgodstrafikken\": \"stykkgodstrafikk\",\n  \"stykkgodstransport\": \"stykkgodstransport\",\n  \"stykkgodsutviklingen\": \"stykkgodsutvikling\",\n  \"stykkgodsvarer\": \"stykkgodsvar\",\n  \"stykkgodsveksten\": \"stykkgodsvekst\",\n  \"stykkgodsvolumer\": \"stykkgodsvolum\",\n  \"styr\": \"styr\",\n  \"styra\": \"styr\",\n  \"styrande\": \"styr\",\n  \"styrast\": \"styr\",\n  \"styre\": \"styr\",\n  \"styrearbeidet\": \"styrearbeid\",\n  \"styrebehandling\": \"styrebehandling\",\n  \"styrebehandlinga\": \"styrebehandling\",\n  \"styreinstruks\": \"styreinstruks\",\n  \"styrekompetansen\": \"styrekompetans\",\n  \"styreleiar\": \"styrelei\",\n  \"styreleiaren\": \"styreleiar\",\n  \"styremedlem\": \"styremedlem\",\n  \"styremedlemmen\": \"styremedlemm\",\n  \"styremedlemmene\": \"styremedlemm\",\n  \"styremedlemmer\": \"styremedlemm\",\n  \"styremøta\": \"styremøt\",\n  \"styremøte\": \"styremøt\",\n  \"styremøtet\": \"styremøt\",\n  \"styrende\": \"styr\",\n  \"styreprotokoll\": \"styreprotokoll\",\n  \"styrer\": \"styr\",\n  \"styrerepresentasjon\": \"styrerepresentasjon\",\n  \"styres\": \"styr\",\n  \"styresakene\": \"styresak\",\n  \"styresamansetjing\": \"styresamansetjing\",\n  \"styresamansetjinga\": \"styresamansetjing\",\n  \"styresmaktene\": \"styresmakt\",\n  \"styresmakter\": \"styresmakt\",\n  \"styret\": \"styr\",\n  \"styrets\": \"styr\",\n  \"styrevalet\": \"styreval\",\n  \"styrevedtak\": \"styrevedtak\",\n  \"styrevedtaka\": \"styrevedtak\",\n  \"styrevedtaket\": \"styrevedtak\",\n  \"styring\": \"styring\",\n  \"styringa\": \"styring\",\n  \"styringen\": \"styring\",\n  \"styringsgruppe\": \"styringsgrupp\",\n  \"styringsgruppen\": \"styringsgrupp\",\n  \"styringsgruppens\": \"styringsgrupp\",\n  \"styringsinstrument\": \"styringsinstrument\",\n  \"styringsorgan\": \"styringsorgan\",\n  \"styringsorganer\": \"styringsorgan\",\n  \"styringsredskap\": \"styringsredskap\",\n  \"styrke\": \"styrk\",\n  \"styrkebelte\": \"styrkebelt\",\n  \"styrkebeltet\": \"styrkebelt\",\n  \"styrken\": \"styrk\",\n  \"styrkeprøve\": \"styrkeprøv\",\n  \"styrkeprøven\": \"styrkeprøv\",\n  \"styrker\": \"styrk\",\n  \"styrket\": \"styrk\",\n  \"styrking\": \"styrking\",\n  \"styrkje\": \"styrkj\",\n  \"styrkjer\": \"styrkj\",\n  \"styrkt\": \"styrkt\",\n  \"styrt\": \"styrt\",\n  \"styrte\": \"styrt\",\n  \"styrter\": \"styrt\",\n  \"stå\": \"stå\",\n  \"ståande\": \"ståand\",\n  \"stående\": \"ståend\",\n  \"stål\": \"stål\",\n  \"stålimport\": \"stålimport\",\n  \"står\": \"står\",\n  \"stått\": \"stått\",\n  \"stø\": \"stø\",\n  \"støere\": \"støer\",\n  \"støkk\": \"støkk\",\n  \"støl\": \"støl\",\n  \"støle\": \"støl\",\n  \"stønad\": \"stønad\",\n  \"stønn\": \"stønn\",\n  \"stønner\": \"stønn\",\n  \"større\": \"størr\",\n  \"størrelse\": \"størr\",\n  \"størrelsen\": \"størr\",\n  \"størrelsene\": \"størr\",\n  \"størrelser\": \"størr\",\n  \"størrelsesorden\": \"størrelsesord\",\n  \"størst\": \"størst\",\n  \"største\": \"størst\",\n  \"størstedelen\": \"størstedel\",\n  \"støtte\": \"støtt\",\n  \"støtteordningene\": \"støtteordning\",\n  \"støtter\": \"støtt\",\n  \"støttet\": \"støtt\",\n  \"støy\": \"støy\",\n  \"støymessig\": \"støymess\",\n  \"subber\": \"subb\",\n  \"subjektene\": \"subjekt\",\n  \"subjekter\": \"subjekt\",\n  \"subsidiar\": \"subsidi\",\n  \"subsidieordningar\": \"subsidieordning\",\n  \"subsidier\": \"subsidi\",\n  \"subsidiering\": \"subsidiering\",\n  \"subsidiert\": \"subsidier\",\n  \"subsidierte\": \"subsidier\",\n  \"subsidiær\": \"subsidiær\",\n  \"subsidiært\": \"subsidiært\",\n  \"substansiell\": \"substansiell\",\n  \"substituert\": \"substituer\",\n  \"sug\": \"sug\",\n  \"sugende\": \"sug\",\n  \"suger\": \"sug\",\n  \"suget\": \"sug\",\n  \"sukk\": \"sukk\",\n  \"sukker\": \"sukk\",\n  \"sult\": \"sult\",\n  \"sulte\": \"sult\",\n  \"sulten\": \"sult\",\n  \"sultet\": \"sult\",\n  \"sultne\": \"sultn\",\n  \"sum\": \"sum\",\n  \"summar\": \"summ\",\n  \"summarisk\": \"summarisk\",\n  \"summen\": \"summ\",\n  \"summende\": \"summ\",\n  \"sundagar\": \"sundag\",\n  \"sunde\": \"sund\",\n  \"sunget\": \"sung\",\n  \"sunket\": \"sunk\",\n  \"sunn\": \"sunn\",\n  \"super\": \"sup\",\n  \"suppen\": \"supp\",\n  \"supplement\": \"supplement\",\n  \"supplementary\": \"supplementary\",\n  \"supplere\": \"suppler\",\n  \"supplerende\": \"suppler\",\n  \"supplerer\": \"suppler\",\n  \"supplering\": \"supplering\",\n  \"suppleringsval\": \"suppleringsval\",\n  \"supplert\": \"suppler\",\n  \"sur\": \"sur\",\n  \"surere\": \"surer\",\n  \"surklende\": \"surkl\",\n  \"surre\": \"surr\",\n  \"surret\": \"surr\",\n  \"surrogat\": \"surrogat\",\n  \"surt\": \"surt\",\n  \"sus\": \"sus\",\n  \"suse\": \"sus\",\n  \"susende\": \"sus\",\n  \"suser\": \"sus\",\n  \"susete\": \"suset\",\n  \"sutrer\": \"sutr\",\n  \"suttung\": \"suttung\",\n  \"suttungs\": \"suttung\",\n  \"svaberg\": \"svaberg\",\n  \"svadilfare\": \"svadilfar\",\n  \"svaier\": \"svaier\",\n  \"svak\": \"svak\",\n  \"svakare\": \"svakar\",\n  \"svake\": \"svak\",\n  \"svakere\": \"svaker\",\n  \"svakhet\": \"svak\",\n  \"svakheter\": \"svak\",\n  \"svakt\": \"svakt\",\n  \"svalbard\": \"svalbard\",\n  \"svanene\": \"svan\",\n  \"svaner\": \"svan\",\n  \"svangerskap\": \"svangerskap\",\n  \"svangerskapspermisjon\": \"svangerskapspermisjon\",\n  \"svanser\": \"svans\",\n  \"svanvik\": \"svanvik\",\n  \"svar\": \"svar\",\n  \"svara\": \"svar\",\n  \"svarar\": \"svar\",\n  \"svare\": \"svar\",\n  \"svarende\": \"svar\",\n  \"svarer\": \"svar\",\n  \"svares\": \"svar\",\n  \"svaret\": \"svar\",\n  \"svart\": \"svart\",\n  \"svartalver\": \"svartalv\",\n  \"svartalvheim\": \"svartalvheim\",\n  \"svarte\": \"svart\",\n  \"svartmale\": \"svartmal\",\n  \"svartner\": \"svartn\",\n  \"svartsyk\": \"svartsyk\",\n  \"sveio\": \"sveio\",\n  \"sveits\": \"sveit\",\n  \"sveket\": \"svek\",\n  \"svekke\": \"svekk\",\n  \"svekkelse\": \"svekk\",\n  \"svekkes\": \"svekk\",\n  \"svekket\": \"svekk\",\n  \"svelg\": \"svelg\",\n  \"svelge\": \"svelg\",\n  \"svelger\": \"svelg\",\n  \"svelvik\": \"svelvik\",\n  \"svelvikstrømmen\": \"svelvikstrømm\",\n  \"svelvikstrømmens\": \"svelvikstrømm\",\n  \"svenner\": \"svenn\",\n  \"svensk\": \"svensk\",\n  \"svenske\": \"svensk\",\n  \"svenskegrensen\": \"svenskegrens\",\n  \"svenskekongen\": \"svenskekong\",\n  \"sverd\": \"sverd\",\n  \"sverdet\": \"sverd\",\n  \"sverdspissen\": \"sverdspiss\",\n  \"sverdsvingere\": \"sverdsvinger\",\n  \"sverg\": \"sverg\",\n  \"sverger\": \"sverg\",\n  \"sverget\": \"sverg\",\n  \"sverige\": \"sver\",\n  \"sveriges\": \"sver\",\n  \"svett\": \"svett\",\n  \"svette\": \"svett\",\n  \"svetter\": \"svett\",\n  \"svevende\": \"svev\",\n  \"svever\": \"svev\",\n  \"svi\": \"svi\",\n  \"svidd\": \"svidd\",\n  \"svik\": \"svik\",\n  \"svike\": \"svik\",\n  \"svikta\": \"svikt\",\n  \"svikter\": \"svikt\",\n  \"sviktet\": \"svikt\",\n  \"svimle\": \"sviml\",\n  \"svimmel\": \"svimmel\",\n  \"svinekjøtt\": \"svinekjøtt\",\n  \"svineskinn\": \"svineskinn\",\n  \"svinesund\": \"svinesund\",\n  \"svinet\": \"svin\",\n  \"sving\": \"sving\",\n  \"svinga\": \"sving\",\n  \"svinge\": \"sving\",\n  \"svingende\": \"sving\",\n  \"svinger\": \"sving\",\n  \"svingingane\": \"svinging\",\n  \"svingninger\": \"svingning\",\n  \"svingte\": \"svingt\",\n  \"svinser\": \"svins\",\n  \"svir\": \"svir\",\n  \"svirelaget\": \"svirelag\",\n  \"svovelkis\": \"svovelkis\",\n  \"svært\": \"svært\",\n  \"svøm\": \"svøm\",\n  \"svømme\": \"svømm\",\n  \"svømmebasseng\": \"svømmebasseng\",\n  \"svømmehud\": \"svømmehud\",\n  \"svømmer\": \"svømm\",\n  \"syd\": \"syd\",\n  \"syder\": \"syd\",\n  \"sydfra\": \"sydfr\",\n  \"sydgående\": \"sydgå\",\n  \"sydhavna\": \"sydhavn\",\n  \"sydhimmelen\": \"sydhimmel\",\n  \"sydover\": \"sydov\",\n  \"sydsiden\": \"sydsid\",\n  \"sydspissen\": \"sydspiss\",\n  \"sydvestover\": \"sydvestov\",\n  \"sydøst\": \"sydøst\",\n  \"syk\": \"syk\",\n  \"sykdom\": \"sykdom\",\n  \"sykdommen\": \"sykdomm\",\n  \"syke\": \"syk\",\n  \"sykeleie\": \"sykelei\",\n  \"syl\": \"syl\",\n  \"symbolsk\": \"symbolsk\",\n  \"symmetri\": \"symmetri\",\n  \"syn\": \"syn\",\n  \"synd\": \"synd\",\n  \"syne\": \"syn\",\n  \"syner\": \"syn\",\n  \"synes\": \"syn\",\n  \"synest\": \"synest\",\n  \"synet\": \"syn\",\n  \"synfaring\": \"synfaring\",\n  \"synge\": \"syng\",\n  \"synger\": \"syng\",\n  \"synke\": \"synk\",\n  \"synkende\": \"synk\",\n  \"synker\": \"synk\",\n  \"synlege\": \"syn\",\n  \"synlig\": \"syn\",\n  \"synlige\": \"syn\",\n  \"synsmåtane\": \"synsmåt\",\n  \"synspunkt\": \"synspunkt\",\n  \"synspunkta\": \"synspunkt\",\n  \"synspunkter\": \"synspunkt\",\n  \"synspunktet\": \"synspunkt\",\n  \"synsstad\": \"synsstad\",\n  \"synsstaden\": \"synsstad\",\n  \"syntes\": \"synt\",\n  \"syr\": \"syr\",\n  \"sysken\": \"sysk\",\n  \"sysselsatte\": \"sysselsatt\",\n  \"sysselsetting\": \"sysselsetting\",\n  \"sysselsettingsvirkninger\": \"sysselsettingsvirkning\",\n  \"system\": \"system\",\n  \"systematisk\": \"systematisk\",\n  \"systematiske\": \"systematisk\",\n  \"systemer\": \"system\",\n  \"systemet\": \"system\",\n  \"systemkonkurranse\": \"systemkonkurrans\",\n  \"systemløsninger\": \"systemløsning\",\n  \"systemtogløsninger\": \"systemtogløsning\",\n  \"syte\": \"syt\",\n  \"syvende\": \"syv\",\n  \"så\": \"så\",\n  \"sådan\": \"sådan\",\n  \"sådd\": \"sådd\",\n  \"såfall\": \"såfall\",\n  \"såfremt\": \"såfremt\",\n  \"såg\": \"såg\",\n  \"såkalla\": \"såkall\",\n  \"såkalt\": \"såkalt\",\n  \"såkalte\": \"såkalt\",\n  \"således\": \"sål\",\n  \"såleis\": \"såleis\",\n  \"sånn\": \"sånn\",\n  \"såpass\": \"såpass\",\n  \"sår\": \"sår\",\n  \"såre\": \"sår\",\n  \"sårene\": \"sår\",\n  \"sårer\": \"sår\",\n  \"såret\": \"sår\",\n  \"sårt\": \"sårt\",\n  \"såvel\": \"såvel\",\n  \"såvidt\": \"såvid\",\n  \"sæming\": \"sæming\",\n  \"særaldersgrenser\": \"særaldersgrens\",\n  \"særbehandling\": \"særbehandling\",\n  \"særbehandlingen\": \"særbehandling\",\n  \"særbestemmelser\": \"særbestemm\",\n  \"særdeles\": \"særdel\",\n  \"særdrag\": \"særdrag\",\n  \"særdraga\": \"særdrag\",\n  \"særfordeler\": \"særfordel\",\n  \"særfradrag\": \"særfradrag\",\n  \"særimne\": \"særimn\",\n  \"særinteresse\": \"særinteress\",\n  \"særinteresser\": \"særinteress\",\n  \"særleg\": \"sær\",\n  \"særlege\": \"sær\",\n  \"særlig\": \"sær\",\n  \"særlige\": \"sær\",\n  \"særlovgjeving\": \"særlovgjeving\",\n  \"særlovgjevinga\": \"særlovgjeving\",\n  \"særløysingar\": \"særløysing\",\n  \"særmerknad\": \"særmerknad\",\n  \"særmerknadetil\": \"særmerknadetil\",\n  \"særordningar\": \"særordning\",\n  \"særpreg\": \"særpreg\",\n  \"særprega\": \"særpreg\",\n  \"særpregar\": \"særpreg\",\n  \"særpreget\": \"særpreg\",\n  \"særregel\": \"særregel\",\n  \"særregelen\": \"særregel\",\n  \"særreglane\": \"særregl\",\n  \"særreglar\": \"særregl\",\n  \"særreglene\": \"særregl\",\n  \"særregler\": \"særregl\",\n  \"særregulering\": \"særregulering\",\n  \"særrettar\": \"særrett\",\n  \"særskild\": \"særskild\",\n  \"særskilde\": \"særskild\",\n  \"særskilt\": \"særskilt\",\n  \"særskilte\": \"særskilt\",\n  \"særstilling\": \"særstilling\",\n  \"særtillegg\": \"særtillegg\",\n  \"særtillegget\": \"særtillegg\",\n  \"særvilkår\": \"særvilkår\",\n  \"sæther\": \"sæth\",\n  \"søk\": \"søk\",\n  \"søke\": \"søk\",\n  \"søker\": \"søk\",\n  \"søkes\": \"søk\",\n  \"søkjaransiennitet\": \"søkjaransiennit\",\n  \"søkjaransienniteten\": \"søkjaransiennitet\",\n  \"søkje\": \"søkj\",\n  \"søkjegod\": \"søkjegod\",\n  \"søkjer\": \"søkj\",\n  \"søknad\": \"søknad\",\n  \"søknaden\": \"søknad\",\n  \"søksmål\": \"søksmål\",\n  \"søksmålet\": \"søksmål\",\n  \"søksmåls\": \"søksmål\",\n  \"søksmålsfrist\": \"søksmålsfrist\",\n  \"søksmålsfristen\": \"søksmålsfrist\",\n  \"søksmålsrett\": \"søksmålsrett\",\n  \"søkt\": \"søkt\",\n  \"søkte\": \"søkt\",\n  \"sølv\": \"sølv\",\n  \"søndre\": \"søndr\",\n  \"sønn\": \"sønn\",\n  \"sønnavind\": \"sønnavind\",\n  \"sønnen\": \"sønn\",\n  \"sønnene\": \"sønn\",\n  \"sønner\": \"sønn\",\n  \"sør\": \"sør\",\n  \"sørenga\": \"søreng\",\n  \"sørge\": \"sørg\",\n  \"sørgelig\": \"sørg\",\n  \"sørger\": \"sørg\",\n  \"sørget\": \"sørg\",\n  \"sørgjer\": \"sørgj\",\n  \"sørkorridoren\": \"sørkorridor\",\n  \"sørlandsbanen\": \"sørlandsban\",\n  \"sørover\": \"sørov\",\n  \"sørpehull\": \"sørpehull\",\n  \"sørside\": \"sørsid\",\n  \"sørsiden\": \"sørsid\",\n  \"sørvendte\": \"sørvend\",\n  \"sørvisinnstilling\": \"sørvisinnstilling\",\n  \"søsken\": \"søsk\",\n  \"søster\": \"søst\",\n  \"søsteren\": \"søster\",\n  \"søstre\": \"søstr\",\n  \"søstrene\": \"søstr\",\n  \"søt\": \"søt\",\n  \"søtere\": \"søter\",\n  \"søvn\": \"søvn\",\n  \"søvne\": \"søvn\",\n  \"søvntorn\": \"søvntorn\",\n  \"søyle\": \"søyl\",\n  \"søyler\": \"søyl\",\n  \"t\": \"t\",\n  \"ta\": \"ta\",\n  \"tabell\": \"tabell\",\n  \"tabellen\": \"tabell\",\n  \"tabellene\": \"tabell\",\n  \"taggete\": \"tagget\",\n  \"tak\": \"tak\",\n  \"takast\": \"tak\",\n  \"takbjelkene\": \"takbjelk\",\n  \"takernes\": \"takern\",\n  \"taket\": \"tak\",\n  \"takk\": \"takk\",\n  \"takke\": \"takk\",\n  \"takker\": \"takk\",\n  \"takket\": \"takk\",\n  \"takknemlig\": \"takknem\",\n  \"takknemlighet\": \"takknem\",\n  \"takkonstruksjon\": \"takkonstruksjon\",\n  \"takle\": \"takl\",\n  \"takskjegget\": \"takskjegg\",\n  \"takstnemnder\": \"takstnemnd\",\n  \"takt\": \"takt\",\n  \"takten\": \"takt\",\n  \"taktfast\": \"taktf\",\n  \"tal\": \"tal\",\n  \"tala\": \"tal\",\n  \"talar\": \"tal\",\n  \"tale\": \"tal\",\n  \"taler\": \"tal\",\n  \"talerett\": \"talerett\",\n  \"talet\": \"tal\",\n  \"tall\": \"tall\",\n  \"talleksempler\": \"talleksempl\",\n  \"tallene\": \"tall\",\n  \"tallet\": \"tall\",\n  \"tallfeste\": \"tallfest\",\n  \"tallgrunnlaget\": \"tallgrunnlag\",\n  \"tallrik\": \"tallrik\",\n  \"tallrike\": \"tallrik\",\n  \"talt\": \"talt\",\n  \"tamme\": \"tamm\",\n  \"tang\": \"tang\",\n  \"tangen\": \"tang\",\n  \"tangent\": \"tangent\",\n  \"tangstrødde\": \"tangstrødd\",\n  \"tankane\": \"tank\",\n  \"tanke\": \"tank\",\n  \"tankegang\": \"tankegang\",\n  \"tankegangen\": \"tankegang\",\n  \"tankeløs\": \"tankeløs\",\n  \"tanken\": \"tank\",\n  \"tankene\": \"tank\",\n  \"tanker\": \"tank\",\n  \"tankespråk\": \"tankespråk\",\n  \"tann\": \"tann\",\n  \"tanngnjost\": \"tanngnjost\",\n  \"tanngrisne\": \"tanngrisn\",\n  \"tannløs\": \"tannløs\",\n  \"tannløse\": \"tannløs\",\n  \"tap\": \"tap\",\n  \"tapa\": \"tap\",\n  \"tape\": \"tap\",\n  \"taper\": \"tap\",\n  \"tapet\": \"tap\",\n  \"tapetsering\": \"tapetsering\",\n  \"tappa\": \"tapp\",\n  \"tappar\": \"tapp\",\n  \"tappe\": \"tapp\",\n  \"tapper\": \"tapp\",\n  \"tapping\": \"tapping\",\n  \"tappinga\": \"tapping\",\n  \"tapre\": \"tapr\",\n  \"tapsfordeling\": \"tapsfordeling\",\n  \"tapspostane\": \"tapspost\",\n  \"tapsrisiko\": \"tapsrisiko\",\n  \"tapsrisikoen\": \"tapsrisiko\",\n  \"tapt\": \"tapt\",\n  \"tapte\": \"tapt\",\n  \"tar\": \"tar\",\n  \"tariffavtale\": \"tariffavtal\",\n  \"tariffavtaler\": \"tariffavtal\",\n  \"tarifforhandlingene\": \"tarifforhandling\",\n  \"tarmene\": \"tarm\",\n  \"tas\": \"tas\",\n  \"tassen\": \"tass\",\n  \"tassler\": \"tassl\",\n  \"tatt\": \"tatt\",\n  \"tau\": \"tau\",\n  \"taubåt\": \"taubåt\",\n  \"taubåthjelp\": \"taubåthjelp\",\n  \"tauender\": \"tauend\",\n  \"taus\": \"taus\",\n  \"tause\": \"taus\",\n  \"taushet\": \"taus\",\n  \"taustump\": \"taustump\",\n  \"td\": \"td\",\n  \"team\": \"team\",\n  \"teften\": \"teft\",\n  \"tegn\": \"tegn\",\n  \"tegne\": \"tegn\",\n  \"tegner\": \"tegn\",\n  \"tegnes\": \"tegn\",\n  \"tegnet\": \"tegn\",\n  \"tegning\": \"tegning\",\n  \"tegningstidspunktet\": \"tegningstidspunkt\",\n  \"teieplikt\": \"teieplikt\",\n  \"teieplikta\": \"teieplikt\",\n  \"teiepliktreglane\": \"teiepliktregl\",\n  \"teikna\": \"teikn\",\n  \"teiknar\": \"teikn\",\n  \"teiknast\": \"teikn\",\n  \"teikne\": \"teikn\",\n  \"teikning\": \"teikning\",\n  \"teikninga\": \"teikning\",\n  \"teikningar\": \"teikning\",\n  \"teikningsavgift\": \"teikningsavgift\",\n  \"teikningsrett\": \"teikningsrett\",\n  \"tek\": \"tek\",\n  \"teke\": \"tek\",\n  \"teken\": \"tek\",\n  \"tekne\": \"tekn\",\n  \"teknisk\": \"teknisk\",\n  \"tekniske\": \"teknisk\",\n  \"teknologi\": \"teknologi\",\n  \"teksten\": \"tekst\",\n  \"tekstene\": \"tekst\",\n  \"tekster\": \"tekst\",\n  \"tel\": \"tel\",\n  \"telefon\": \"telefon\",\n  \"telekomunikasjonsinfrastruktur\": \"telekomunikasjonsinfrastruktur\",\n  \"telemark\": \"telemark\",\n  \"teletenester\": \"teletenest\",\n  \"telje\": \"telj\",\n  \"telle\": \"tell\",\n  \"teller\": \"tell\",\n  \"temaet\": \"tema\",\n  \"tematisk\": \"tematisk\",\n  \"temme\": \"temm\",\n  \"temmet\": \"temm\",\n  \"temperaturer\": \"temperatur\",\n  \"ten\": \"ten\",\n  \"tendens\": \"tend\",\n  \"tene\": \"ten\",\n  \"tener\": \"ten\",\n  \"teneste\": \"tenest\",\n  \"tenestebustader\": \"tenestebustad\",\n  \"tenestene\": \"tenest\",\n  \"tenester\": \"tenest\",\n  \"tenestetid\": \"tenestetid\",\n  \"tenestetida\": \"tenestetid\",\n  \"tenestettida\": \"tenestettid\",\n  \"tenk\": \"tenk\",\n  \"tenke\": \"tenk\",\n  \"tenkelige\": \"tenk\",\n  \"tenker\": \"tenk\",\n  \"tenkes\": \"tenk\",\n  \"tenkjast\": \"tenkj\",\n  \"tenkje\": \"tenkj\",\n  \"tenkjer\": \"tenkj\",\n  \"tenksom\": \"tenksom\",\n  \"tenksomt\": \"tenksomt\",\n  \"tenkt\": \"tenkt\",\n  \"tenkte\": \"tenkt\",\n  \"tenleg\": \"ten\",\n  \"tenlege\": \"ten\",\n  \"tennene\": \"tenn\",\n  \"tenner\": \"tenn\",\n  \"tennes\": \"tenn\",\n  \"tent\": \"tent\",\n  \"tente\": \"tent\",\n  \"teoretisk\": \"teoretisk\",\n  \"teoretiske\": \"teoretisk\",\n  \"teori\": \"teori\",\n  \"teorien\": \"teori\",\n  \"teppe\": \"tepp\",\n  \"teppet\": \"tepp\",\n  \"ter\": \"ter\",\n  \"termer\": \"term\",\n  \"terminal\": \"terminal\",\n  \"terminalbehandles\": \"terminalbehandl\",\n  \"terminalbehandling\": \"terminalbehandling\",\n  \"terminalbehandlingen\": \"terminalbehandling\",\n  \"terminaldrift\": \"terminaldrift\",\n  \"terminaldriften\": \"terminaldrift\",\n  \"terminalen\": \"terminal\",\n  \"terminalene\": \"terminal\",\n  \"terminaler\": \"terminal\",\n  \"terminalfunksjon\": \"terminalfunksjon\",\n  \"terminalhavn\": \"terminalhavn\",\n  \"terminalhåndteringen\": \"terminalhåndtering\",\n  \"terminallokalisering\": \"terminallokalisering\",\n  \"terminalområder\": \"terminalområd\",\n  \"terminalområdet\": \"terminalområd\",\n  \"terminaloperasjonen\": \"terminaloperasjon\",\n  \"terminaloperatørene\": \"terminaloperatør\",\n  \"terminaloperatørenes\": \"terminaloperatør\",\n  \"terminaloperatører\": \"terminaloperatør\",\n  \"terminaltypene\": \"terminaltyp\",\n  \"terminalvirksomhet\": \"terminalvirksom\",\n  \"terminalvirksomheter\": \"terminalvirksom\",\n  \"terminbeløp\": \"terminbeløp\",\n  \"terminbeløpet\": \"terminbeløp\",\n  \"terminer\": \"termin\",\n  \"terminvise\": \"terminvis\",\n  \"terne\": \"tern\",\n  \"terner\": \"tern\",\n  \"terskelverdier\": \"terskelverdi\",\n  \"tett\": \"tett\",\n  \"tettbebyggelsen\": \"tettbebygg\",\n  \"tettbygd\": \"tettbygd\",\n  \"tettbygde\": \"tettbygd\",\n  \"tette\": \"tett\",\n  \"tettere\": \"tetter\",\n  \"tettpakket\": \"tettpakk\",\n  \"tettstader\": \"tettstad\",\n  \"tettsteder\": \"tettsted\",\n  \"tettsteds\": \"tettsted\",\n  \"tettstedsbebyggelse\": \"tettstedsbebygg\",\n  \"tettstedsområder\": \"tettstedsområd\",\n  \"teu\": \"teu\",\n  \"teus\": \"teus\",\n  \"the\": \"the\",\n  \"ti\": \"ti\",\n  \"tiandepart\": \"tiandepart\",\n  \"tid\": \"tid\",\n  \"tida\": \"tid\",\n  \"tide\": \"tid\",\n  \"tidel\": \"tidel\",\n  \"tiden\": \"tid\",\n  \"tidene\": \"tid\",\n  \"tidenes\": \"tid\",\n  \"tider\": \"tid\",\n  \"tidfestet\": \"tidfest\",\n  \"tidkrevende\": \"tidkrev\",\n  \"tidkrevjande\": \"tidkrevj\",\n  \"tidleg\": \"tid\",\n  \"tidlegare\": \"tidlegar\",\n  \"tidlegast\": \"tid\",\n  \"tidlege\": \"tid\",\n  \"tidlig\": \"tid\",\n  \"tidlige\": \"tid\",\n  \"tidligere\": \"tidliger\",\n  \"tidligst\": \"tidligst\",\n  \"tidligsådd\": \"tidligsådd\",\n  \"tidobbelte\": \"tidobbelt\",\n  \"tids\": \"tid\",\n  \"tidsangivelsene\": \"tidsangiv\",\n  \"tidsavgrensa\": \"tidsavgrens\",\n  \"tidsavgrensing\": \"tidsavgrensing\",\n  \"tidsavgrensingar\": \"tidsavgrensing\",\n  \"tidsavhengig\": \"tidsavheng\",\n  \"tidsbruk\": \"tidsbruk\",\n  \"tidseffektive\": \"tidseffektiv\",\n  \"tidsforskyvningen\": \"tidsforskyvning\",\n  \"tidsfrist\": \"tidsfrist\",\n  \"tidshorisont\": \"tidshorisont\",\n  \"tidshorisonten\": \"tidshorisont\",\n  \"tidshorisontene\": \"tidshorisont\",\n  \"tidskontoordning\": \"tidskontoordning\",\n  \"tidskostnader\": \"tidskostnad\",\n  \"tidspartar\": \"tidspart\",\n  \"tidsperspektiv\": \"tidsperspektiv\",\n  \"tidsperspektivene\": \"tidsperspektiv\",\n  \"tidsperspektiver\": \"tidsperspektiv\",\n  \"tidsperspektivet\": \"tidsperspektiv\",\n  \"tidspunkt\": \"tidspunkt\",\n  \"tidspunkter\": \"tidspunkt\",\n  \"tidspunktet\": \"tidspunkt\",\n  \"tidsramme\": \"tidsramm\",\n  \"tidsrammen\": \"tidsramm\",\n  \"tidsrom\": \"tidsrom\",\n  \"tidsrommet\": \"tidsromm\",\n  \"tidsskriftrom\": \"tidsskriftrom\",\n  \"tidstap\": \"tidstap\",\n  \"tidsubestemt\": \"tidsubestemt\",\n  \"tidvis\": \"tidvis\",\n  \"tie\": \"tie\",\n  \"tiendedel\": \"tiendedel\",\n  \"tier\": \"tier\",\n  \"tiet\": \"tiet\",\n  \"tigger\": \"tigg\",\n  \"til\": \"til\",\n  \"tilbake\": \"tilbak\",\n  \"tilbakebetaling\": \"tilbakebetaling\",\n  \"tilbakeføre\": \"tilbakefør\",\n  \"tilbakeføres\": \"tilbakefør\",\n  \"tilbakeføring\": \"tilbakeføring\",\n  \"tilbakeføringa\": \"tilbakeføring\",\n  \"tilbakeføringsåret\": \"tilbakeføringsår\",\n  \"tilbakeført\": \"tilbakeført\",\n  \"tilbakeførte\": \"tilbakeført\",\n  \"tilbakeholde\": \"tilbakehold\",\n  \"tilbakeholdenhet\": \"tilbakeholden\",\n  \"tilbakeholder\": \"tilbakehold\",\n  \"tilbakeholdes\": \"tilbakehold\",\n  \"tilbakeverkande\": \"tilbakeverk\",\n  \"tilbakeverknad\": \"tilbakeverknad\",\n  \"tilbod\": \"tilbod\",\n  \"tilbodet\": \"tilbod\",\n  \"tilbringertjeneste\": \"tilbringertjenest\",\n  \"tilbud\": \"tilbud\",\n  \"tilbudene\": \"tilbud\",\n  \"tilbudet\": \"tilbud\",\n  \"tilbudssiden\": \"tilbudssid\",\n  \"tilbudt\": \"tilbud\",\n  \"tilbudte\": \"tilbud\",\n  \"tilby\": \"tilby\",\n  \"tilbyder\": \"tilbyd\",\n  \"tilbydere\": \"tilbyder\",\n  \"tilbyderne\": \"tilbydern\",\n  \"tilbydernes\": \"tilbydern\",\n  \"tilbydt\": \"tilbyd\",\n  \"tilbyr\": \"tilbyr\",\n  \"tilbys\": \"tilby\",\n  \"tilbørleg\": \"tilbør\",\n  \"tildeles\": \"tildel\",\n  \"tildeling\": \"tildeling\",\n  \"tildelt\": \"tildelt\",\n  \"tildelte\": \"tildelt\",\n  \"tildligpensjonering\": \"tildligpensjonering\",\n  \"tildriv\": \"tildriv\",\n  \"tileigne\": \"tileign\",\n  \"tilfalle\": \"tilfall\",\n  \"tilfaller\": \"tilfall\",\n  \"tilfalt\": \"tilfalt\",\n  \"tilfanget\": \"tilfang\",\n  \"tilfeldig\": \"tilfeld\",\n  \"tilfeldige\": \"tilfeld\",\n  \"tilfeldighet\": \"tilfeld\",\n  \"tilfell\": \"tilfell\",\n  \"tilfella\": \"tilfell\",\n  \"tilfelle\": \"tilfell\",\n  \"tilfellene\": \"tilfell\",\n  \"tilfeller\": \"tilfell\",\n  \"tilfellet\": \"tilfell\",\n  \"tilflyter\": \"tilflyt\",\n  \"tilflytting\": \"tilflytting\",\n  \"tilfredsstillande\": \"tilfredsstill\",\n  \"tilfredsstille\": \"tilfredsstill\",\n  \"tilfredsstillende\": \"tilfredsstill\",\n  \"tilfredsstiller\": \"tilfredsstill\",\n  \"tilføre\": \"tilfør\",\n  \"tilfører\": \"tilfør\",\n  \"tilføres\": \"tilfør\",\n  \"tilføring\": \"tilføring\",\n  \"tilførsel\": \"tilførsel\",\n  \"tilført\": \"tilført\",\n  \"tilføyde\": \"tilføyd\",\n  \"tilføyelse\": \"tilføy\",\n  \"tilføyelsen\": \"tilføy\",\n  \"tilgang\": \"tilgang\",\n  \"tilgangen\": \"tilgang\",\n  \"tilgir\": \"tilgir\",\n  \"tilgjenge\": \"tilgjeng\",\n  \"tilgjengeleg\": \"tilgjeng\",\n  \"tilgjengelege\": \"tilgjeng\",\n  \"tilgjengelig\": \"tilgjeng\",\n  \"tilgjengelige\": \"tilgjeng\",\n  \"tilgjengelighet\": \"tilgjeng\",\n  \"tilgodehavande\": \"tilgodehav\",\n  \"tilgodesedd\": \"tilgodesedd\",\n  \"tilgodeser\": \"tilgodes\",\n  \"tilgodesjå\": \"tilgodesjå\",\n  \"tilgrising\": \"tilgrising\",\n  \"tilhenger\": \"tilheng\",\n  \"tilhengere\": \"tilhenger\",\n  \"tilhøre\": \"tilhør\",\n  \"tilhørende\": \"tilhør\",\n  \"tilhører\": \"tilhør\",\n  \"tilhøva\": \"tilhøv\",\n  \"tilhøve\": \"tilhøv\",\n  \"tilhøvet\": \"tilhøv\",\n  \"tilhøyrande\": \"tilhøyr\",\n  \"tilhøyrde\": \"tilhøyrd\",\n  \"tilhøyre\": \"tilhøyr\",\n  \"tilhøyrer\": \"tilhøyr\",\n  \"tilhøyrsel\": \"tilhøyrsel\",\n  \"tilhøyrsle\": \"tilhøyrsl\",\n  \"tilhøyrslereglane\": \"tilhøyrsleregl\",\n  \"tilknyting\": \"tilknyting\",\n  \"tilknytinga\": \"tilknyting\",\n  \"tilknytingsband\": \"tilknytingsband\",\n  \"tilknytingsbanda\": \"tilknytingsband\",\n  \"tilknytingsforhold\": \"tilknytingsforhold\",\n  \"tilknytingsforholdet\": \"tilknytingsforhold\",\n  \"tilknytingsforma\": \"tilknytingsform\",\n  \"tilknytingsformer\": \"tilknytingsform\",\n  \"tilknytning\": \"tilknytning\",\n  \"tilknytningen\": \"tilknytning\",\n  \"tilknytninger\": \"tilknytning\",\n  \"tilknytningsforhold\": \"tilknytningsforhold\",\n  \"tilknytt\": \"tilknytt\",\n  \"tilknytte\": \"tilknytt\",\n  \"tilknyttede\": \"tilknytt\",\n  \"tilknyttes\": \"tilknytt\",\n  \"tilknyttet\": \"tilknytt\",\n  \"tilkomme\": \"tilkomm\",\n  \"tilkommer\": \"tilkomm\",\n  \"till\": \"till\",\n  \"tillagd\": \"tillagd\",\n  \"tillagde\": \"tillagd\",\n  \"tillagt\": \"tillagt\",\n  \"tillatast\": \"tillat\",\n  \"tillate\": \"tillat\",\n  \"tillatelse\": \"tillat\",\n  \"tillaten\": \"tillat\",\n  \"tillates\": \"tillat\",\n  \"tillatne\": \"tillatn\",\n  \"tillatt\": \"tillatt\",\n  \"tillegg\": \"tillegg\",\n  \"tillegge\": \"tillegg\",\n  \"tillegger\": \"tillegg\",\n  \"tillegges\": \"tillegg\",\n  \"tilleggsavsetninger\": \"tilleggsavsetning\",\n  \"tilleggsavtalar\": \"tilleggsavtal\",\n  \"tilleggsavtalen\": \"tilleggsavtal\",\n  \"tilleggsbevilgning\": \"tilleggsbevilgning\",\n  \"tilleggsføremål\": \"tilleggsføremål\",\n  \"tilleggsføremåla\": \"tilleggsføremål\",\n  \"tilleggsføremålet\": \"tilleggsføremål\",\n  \"tilleggsinnkalling\": \"tilleggsinnkalling\",\n  \"tilleggsinnskot\": \"tilleggsinnskot\",\n  \"tilleggsinnskotet\": \"tilleggsinnskot\",\n  \"tilleggskapasitet\": \"tilleggskapasit\",\n  \"tilleggskapital\": \"tilleggskapital\",\n  \"tilleggskontraktane\": \"tilleggskontrakt\",\n  \"tilleggskontraktar\": \"tilleggskontrakt\",\n  \"tilleggsmandat\": \"tilleggsmandat\",\n  \"tilleggsopplysningar\": \"tilleggsopplysning\",\n  \"tilleggspensjon\": \"tilleggspensjon\",\n  \"tilleggspensjonen\": \"tilleggspensjon\",\n  \"tilleggspensjonsordning\": \"tilleggspensjonsordning\",\n  \"tilleggspensjonsordningen\": \"tilleggspensjonsordning\",\n  \"tilleggspensjonsordninger\": \"tilleggspensjonsordning\",\n  \"tilleggspensjonsprosent\": \"tilleggspensjonsprosent\",\n  \"tilleggsreglar\": \"tilleggsregl\",\n  \"tilleggsregler\": \"tilleggsregl\",\n  \"tilleggssikkerhet\": \"tilleggssikker\",\n  \"tilleggstilråding\": \"tilleggstilråding\",\n  \"tilleggstrafikk\": \"tilleggstrafikk\",\n  \"tilleggsytelse\": \"tilleggsyt\",\n  \"tilleggsytelsene\": \"tilleggsyt\",\n  \"tilleggsytelser\": \"tilleggsyt\",\n  \"tillet\": \"till\",\n  \"tilligge\": \"tilligg\",\n  \"tilligger\": \"tilligg\",\n  \"tillit\": \"tillit\",\n  \"tillita\": \"tillit\",\n  \"tillitsmann\": \"tillitsmann\",\n  \"tillitsperson\": \"tillitsperson\",\n  \"tillitsvald\": \"tillitsvald\",\n  \"tillitsvalde\": \"tillitsvald\",\n  \"tillitsverv\": \"tillitsverv\",\n  \"tilnavn\": \"tilnavn\",\n  \"tilnytingsbanda\": \"tilnytingsband\",\n  \"tilnærma\": \"tilnærm\",\n  \"tilnærmet\": \"tilnærm\",\n  \"tilnærming\": \"tilnærming\",\n  \"tilnærminger\": \"tilnærming\",\n  \"tilordnede\": \"tilordn\",\n  \"tilordnes\": \"tilordn\",\n  \"tilordnet\": \"tilordn\",\n  \"tilordning\": \"tilordning\",\n  \"tilordningen\": \"tilordning\",\n  \"tilpasning\": \"tilpasning\",\n  \"tilpasningen\": \"tilpasning\",\n  \"tilpasninger\": \"tilpasning\",\n  \"tilpasningsdyktig\": \"tilpasningsdykt\",\n  \"tilpasningsmuligheter\": \"tilpasningsmu\",\n  \"tilpassa\": \"tilpass\",\n  \"tilpassast\": \"tilpass\",\n  \"tilpasse\": \"tilpass\",\n  \"tilpasseleg\": \"tilpass\",\n  \"tilpasser\": \"tilpass\",\n  \"tilpasses\": \"tilpass\",\n  \"tilpasset\": \"tilpass\",\n  \"tilpassete\": \"tilpasset\",\n  \"tilpassing\": \"tilpassing\",\n  \"tilpassingar\": \"tilpassing\",\n  \"tilpassingsvanskar\": \"tilpassingsvansk\",\n  \"tilrettelagde\": \"tilrettelagd\",\n  \"tilrettelegge\": \"tilrettelegg\",\n  \"tilretteleggelse\": \"tilrettelegg\",\n  \"tilretteleggende\": \"tilrettelegg\",\n  \"tilrettelegges\": \"tilrettelegg\",\n  \"tilrettelegging\": \"tilrettelegging\",\n  \"tilrå\": \"tilrå\",\n  \"tilrådeleg\": \"tilråd\",\n  \"tilrådelig\": \"tilråd\",\n  \"tilråding\": \"tilråding\",\n  \"tilrådinger\": \"tilråding\",\n  \"tilrår\": \"tilrår\",\n  \"tilseie\": \"tilsei\",\n  \"tilseier\": \"tilsei\",\n  \"tilseiing\": \"tilseiing\",\n  \"tilsendt\": \"tilsend\",\n  \"tilsetje\": \"tilsetj\",\n  \"tilsetjing\": \"tilsetjing\",\n  \"tilsetjinga\": \"tilsetjing\",\n  \"tilsetjingar\": \"tilsetjing\",\n  \"tilsetjingsavtale\": \"tilsetjingsavtal\",\n  \"tilsetjingsforhold\": \"tilsetjingsforhold\",\n  \"tilsett\": \"tilsett\",\n  \"tilsette\": \"tilsett\",\n  \"tilsi\": \"tilsi\",\n  \"tilsier\": \"tilsi\",\n  \"tilskot\": \"tilskot\",\n  \"tilskota\": \"tilskot\",\n  \"tilskotsordningar\": \"tilskotsordning\",\n  \"tilskrives\": \"tilskriv\",\n  \"tilskudd\": \"tilskudd\",\n  \"tilskuddene\": \"tilskudd\",\n  \"tilskuddet\": \"tilskudd\",\n  \"tilskuddsordning\": \"tilskuddsordning\",\n  \"tilskuddssatsene\": \"tilskuddssats\",\n  \"tilskuddssatser\": \"tilskuddssats\",\n  \"tilskuere\": \"tilskuer\",\n  \"tilslutning\": \"tilslutning\",\n  \"tilslutta\": \"tilslutt\",\n  \"tilsluttet\": \"tilslutt\",\n  \"tilslørte\": \"tilslørt\",\n  \"tilstanden\": \"tilstand\",\n  \"tilstede\": \"tilst\",\n  \"tilstrebe\": \"tilstreb\",\n  \"tilstreber\": \"tilstreb\",\n  \"tilstrebes\": \"tilstreb\",\n  \"tilstrekkeleg\": \"tilstrekk\",\n  \"tilstrekkelig\": \"tilstrekk\",\n  \"tilstrekkelige\": \"tilstrekk\",\n  \"tilstøtende\": \"tilstøt\",\n  \"tilstøytande\": \"tilstøyt\",\n  \"tilsvarande\": \"tilsvar\",\n  \"tilsvare\": \"tilsvar\",\n  \"tilsvarende\": \"tilsvar\",\n  \"tilsvarer\": \"tilsvar\",\n  \"tilsyn\": \"tilsyn\",\n  \"tilsynelatende\": \"tilsynelat\",\n  \"tilsynet\": \"tilsyn\",\n  \"tilsynsansvar\": \"tilsynsansv\",\n  \"tilsynsansvaret\": \"tilsynsansvar\",\n  \"tilsynsarbeidet\": \"tilsynsarbeid\",\n  \"tilsynsbehovet\": \"tilsynsbehov\",\n  \"tilsynsfunksjonane\": \"tilsynsfunksjon\",\n  \"tilsynsloven\": \"tilsyn\",\n  \"tilsynsmessige\": \"tilsynsmess\",\n  \"tilsynsmyndighet\": \"tilsynsmynd\",\n  \"tilsynsmyndigheten\": \"tilsynsmynd\",\n  \"tilsynsmyndighetene\": \"tilsynsmynd\",\n  \"tilsynsmyndigheter\": \"tilsynsmynd\",\n  \"tilsynsoppgaven\": \"tilsynsoppgav\",\n  \"tilsynsoppgåva\": \"tilsynsoppgåv\",\n  \"tilsynsorgan\": \"tilsynsorgan\",\n  \"tilsynsretten\": \"tilsynsrett\",\n  \"tiltagende\": \"tiltag\",\n  \"tiltak\": \"tiltak\",\n  \"tiltaka\": \"tiltak\",\n  \"tiltakende\": \"tiltak\",\n  \"tiltakene\": \"tiltak\",\n  \"tiltaket\": \"tiltak\",\n  \"tiltar\": \"tilt\",\n  \"tiltrekke\": \"tiltrekk\",\n  \"tiltrekkes\": \"tiltrekk\",\n  \"tiltrer\": \"tiltr\",\n  \"tiltro\": \"tiltro\",\n  \"tiltrådt\": \"tiltråd\",\n  \"tilvekst\": \"tilvekst\",\n  \"tilveksten\": \"tilvekst\",\n  \"tilvisast\": \"tilvis\",\n  \"tilvising\": \"tilvising\",\n  \"tilvisinga\": \"tilvising\",\n  \"tilvisingar\": \"tilvising\",\n  \"tilvisning\": \"tilvisning\",\n  \"tilværelse\": \"tilvær\",\n  \"tilårskomne\": \"tilårskomn\",\n  \"time\": \"tim\",\n  \"timer\": \"tim\",\n  \"timers\": \"tim\",\n  \"timersregelen\": \"timersregel\",\n  \"times\": \"tim\",\n  \"timing\": \"timing\",\n  \"ting\": \"ting\",\n  \"tingar\": \"ting\",\n  \"tinglysast\": \"tinglys\",\n  \"tinglyse\": \"tinglys\",\n  \"tinglysing\": \"tinglysing\",\n  \"tinglysinga\": \"tinglysing\",\n  \"tinglysingsdommarane\": \"tinglysingsdommar\",\n  \"tinglysingsfeilen\": \"tinglysingsfeil\",\n  \"tinglysingskontora\": \"tinglysingskontor\",\n  \"tinglysingslova\": \"tinglysing\",\n  \"tinglysingslovutkastet\": \"tinglysingslovutkast\",\n  \"tinglysingssperre\": \"tinglysingssperr\",\n  \"tinglysingsutkastet\": \"tinglysingsutkast\",\n  \"tinglyst\": \"tinglyst\",\n  \"tinglyste\": \"tinglyst\",\n  \"tings\": \"ting\",\n  \"tingsinnskot\": \"tingsinnskot\",\n  \"tinningen\": \"tinning\",\n  \"tinningene\": \"tinning\",\n  \"tirret\": \"tirr\",\n  \"tisker\": \"tisk\",\n  \"tisket\": \"tisk\",\n  \"tispe\": \"tisp\",\n  \"tissler\": \"tissl\",\n  \"tista\": \"tist\",\n  \"titt\": \"titt\",\n  \"tittelen\": \"tittel\",\n  \"tiår\": \"tiår\",\n  \"tiåret\": \"tiår\",\n  \"tiårperioden\": \"tiårperiod\",\n  \"tiårsperiode\": \"tiårsperiod\",\n  \"tja\": \"tja\",\n  \"tjalve\": \"tjalv\",\n  \"tjanster\": \"tjanst\",\n  \"tjatse\": \"tjats\",\n  \"tjatses\": \"tjats\",\n  \"tjene\": \"tjen\",\n  \"tjener\": \"tjen\",\n  \"tjenere\": \"tjener\",\n  \"tjeneste\": \"tjenest\",\n  \"tjenestefolk\": \"tjenestefolk\",\n  \"tjenestefolkene\": \"tjenestefolk\",\n  \"tjenesteforhold\": \"tjenesteforhold\",\n  \"tjenesteforholdet\": \"tjenesteforhold\",\n  \"tjenestejente\": \"tjenestejent\",\n  \"tjenestekvinner\": \"tjenestekvinn\",\n  \"tjenestemannsgruppen\": \"tjenestemannsgrupp\",\n  \"tjenestemenn\": \"tjenestemenn\",\n  \"tjenestemessige\": \"tjenestemess\",\n  \"tjenestene\": \"tjenest\",\n  \"tjenestepensjon\": \"tjenestepensjon\",\n  \"tjenestepensjoner\": \"tjenestepensjon\",\n  \"tjenestepensjonsdekningen\": \"tjenestepensjonsdekning\",\n  \"tjenestepensjonsforsikring\": \"tjenestepensjonsforsikring\",\n  \"tjenestepensjonsforsikringen\": \"tjenestepensjonsforsikring\",\n  \"tjenestepensjonsområdet\": \"tjenestepensjonsområd\",\n  \"tjenestepensjonsordning\": \"tjenestepensjonsordning\",\n  \"tjenestepensjonsordningen\": \"tjenestepensjonsordning\",\n  \"tjenestepensjonsordningene\": \"tjenestepensjonsordning\",\n  \"tjenestepensjonsordninger\": \"tjenestepensjonsordning\",\n  \"tjenestepensjonssystemet\": \"tjenestepensjonssystem\",\n  \"tjenestepike\": \"tjenestepik\",\n  \"tjenestepikene\": \"tjenestepik\",\n  \"tjenester\": \"tjenest\",\n  \"tjenestetid\": \"tjenestetid\",\n  \"tjenestetilbud\": \"tjenestetilbud\",\n  \"tjenesteytere\": \"tjenesteyter\",\n  \"tjenesteyteren\": \"tjenesteyter\",\n  \"tjenesteyting\": \"tjenesteyting\",\n  \"tjent\": \"tjent\",\n  \"tjern\": \"tjern\",\n  \"tjoret\": \"tjor\",\n  \"tjue\": \"tjue\",\n  \"tjuedagarsfristen\": \"tjuedagarsfrist\",\n  \"tjuedel\": \"tjuedel\",\n  \"tjuvholmen\": \"tjuvholm\",\n  \"tjærebredd\": \"tjærebredd\",\n  \"to\": \"to\",\n  \"todagers\": \"todag\",\n  \"tofte\": \"toft\",\n  \"tog\": \"tog\",\n  \"toger\": \"tog\",\n  \"tok\": \"tok\",\n  \"tokk\": \"tokk\",\n  \"tole\": \"tol\",\n  \"tolka\": \"tolk\",\n  \"tolkast\": \"tolk\",\n  \"tolke\": \"tolk\",\n  \"tolket\": \"tolk\",\n  \"tolking\": \"tolking\",\n  \"tolkinga\": \"tolking\",\n  \"tolkingstvil\": \"tolkingstvil\",\n  \"tolkning\": \"tolkning\",\n  \"tolkningen\": \"tolkning\",\n  \"tolkningspraksis\": \"tolkningspraksis\",\n  \"tollbehandlingen\": \"tollbehandling\",\n  \"tolldepartementet\": \"tolldepartement\",\n  \"tollekniven\": \"tollekniv\",\n  \"tollmaterialets\": \"tollmaterial\",\n  \"tollpost\": \"tollpost\",\n  \"tollsted\": \"tollsted\",\n  \"tollvesenet\": \"tollvesen\",\n  \"tollvesenets\": \"tollvesen\",\n  \"tolv\": \"tolv\",\n  \"tom\": \"tom\",\n  \"tomannsbustadene\": \"tomannsbustad\",\n  \"tomannsbustader\": \"tomannsbustad\",\n  \"tomcontainere\": \"tomcontainer\",\n  \"tomhendt\": \"tomhend\",\n  \"tomheten\": \"tom\",\n  \"tomkjøring\": \"tomkjøring\",\n  \"tomme\": \"tomm\",\n  \"tommelen\": \"tommel\",\n  \"tomrommet\": \"tomromm\",\n  \"tomsekker\": \"tomsekk\",\n  \"tomt\": \"tomt\",\n  \"tomta\": \"tomt\",\n  \"tomtefesteforhold\": \"tomtefesteforhold\",\n  \"tomtegrunn\": \"tomtegrunn\",\n  \"tomtekjøp\": \"tomtekjøp\",\n  \"tomtene\": \"tomt\",\n  \"tomteområde\": \"tomteområd\",\n  \"tomtepriser\": \"tomtepris\",\n  \"tomter\": \"tomt\",\n  \"tomteseljar\": \"tomteselj\",\n  \"tomteselskap\": \"tomteselskap\",\n  \"tomtetildeling\": \"tomtetildeling\",\n  \"tonn\": \"tonn\",\n  \"tonnasje\": \"tonnasj\",\n  \"tonnasjen\": \"tonnasj\",\n  \"tonnkilometer\": \"tonnkilomet\",\n  \"tonnkm\": \"tonnkm\",\n  \"tonnmengder\": \"tonnmengd\",\n  \"top\": \"top\",\n  \"toplanskrysset\": \"toplanskryss\",\n  \"topografiske\": \"topografisk\",\n  \"topp\": \"topp\",\n  \"toppen\": \"topp\",\n  \"topper\": \"topp\",\n  \"topphastighet\": \"topphast\",\n  \"toppskatt\": \"toppskatt\",\n  \"tor\": \"tor\",\n  \"torde\": \"tord\",\n  \"torden\": \"tord\",\n  \"tordengud\": \"tordengud\",\n  \"tordenguden\": \"tordengud\",\n  \"tordenskrall\": \"tordenskrall\",\n  \"tordner\": \"tordn\",\n  \"tornehekk\": \"tornehekk\",\n  \"tors\": \"tor\",\n  \"torskeøynene\": \"torskeøyn\",\n  \"torsønnene\": \"torsønn\",\n  \"toseksjonsregelen\": \"toseksjonsregel\",\n  \"tosk\": \"tosk\",\n  \"tosken\": \"tosk\",\n  \"tosporet\": \"tospor\",\n  \"total\": \"total\",\n  \"totale\": \"total\",\n  \"totalkostnaden\": \"totalkostnad\",\n  \"totalkostnader\": \"totalkostnad\",\n  \"totalløsninger\": \"totalløsning\",\n  \"totalmengde\": \"totalmengd\",\n  \"totalpremien\": \"totalpremi\",\n  \"totalskadd\": \"totalskadd\",\n  \"totalskadde\": \"totalskadd\",\n  \"totalskade\": \"totalskad\",\n  \"totalt\": \"totalt\",\n  \"totaltall\": \"totaltall\",\n  \"totalvolumene\": \"totalvolum\",\n  \"towards\": \"toward\",\n  \"toårsfristen\": \"toårsfrist\",\n  \"toårsperiodar\": \"toårsperiod\",\n  \"toårsregelen\": \"toårsregel\",\n  \"tpes\": \"tpes\",\n  \"trade\": \"trad\",\n  \"tradisjon\": \"tradisjon\",\n  \"tradisjonar\": \"tradisjon\",\n  \"tradisjonell\": \"tradisjonell\",\n  \"tradisjonelle\": \"tradisjonell\",\n  \"tradisjonelt\": \"tradisjonelt\",\n  \"tradisjonen\": \"tradisjon\",\n  \"traff\": \"traff\",\n  \"trafikk\": \"trafikk\",\n  \"trafikkavvikling\": \"trafikkavvikling\",\n  \"trafikkavviklingen\": \"trafikkavvikling\",\n  \"trafikkavviklingsproblemer\": \"trafikkavviklingsproblem\",\n  \"trafikkbegrensninger\": \"trafikkbegrensning\",\n  \"trafikkbelastede\": \"trafikkbelast\",\n  \"trafikkbelastning\": \"trafikkbelastning\",\n  \"trafikkbelastningen\": \"trafikkbelastning\",\n  \"trafikkbelastninger\": \"trafikkbelastning\",\n  \"trafikkbildet\": \"trafikkbild\",\n  \"trafikken\": \"trafikk\",\n  \"trafikkens\": \"trafikk\",\n  \"trafikkerer\": \"trafikker\",\n  \"trafikkert\": \"trafikker\",\n  \"trafikkerte\": \"trafikker\",\n  \"trafikkfordeling\": \"trafikkfordeling\",\n  \"trafikkgenererende\": \"trafikkgenerer\",\n  \"trafikkhavn\": \"trafikkhavn\",\n  \"trafikkhavneanlegg\": \"trafikkhavneanlegg\",\n  \"trafikkhavnene\": \"trafikkhavn\",\n  \"trafikkhavner\": \"trafikkhavn\",\n  \"trafikkhavnvirksomhet\": \"trafikkhavnvirksom\",\n  \"trafikkløsning\": \"trafikkløsning\",\n  \"trafikkmengde\": \"trafikkmengd\",\n  \"trafikkmengder\": \"trafikkmengd\",\n  \"trafikkmessig\": \"trafikkmess\",\n  \"trafikkmessige\": \"trafikkmess\",\n  \"trafikkmønster\": \"trafikkmønst\",\n  \"trafikkmønsteret\": \"trafikkmønster\",\n  \"trafikkoverskudd\": \"trafikkoverskudd\",\n  \"trafikkproblemer\": \"trafikkproblem\",\n  \"trafikkregulerende\": \"trafikkreguler\",\n  \"trafikkreguleringer\": \"trafikkregulering\",\n  \"trafikksentral\": \"trafikksentral\",\n  \"trafikksentralen\": \"trafikksentral\",\n  \"trafikksentralene\": \"trafikksentral\",\n  \"trafikksentraler\": \"trafikksentral\",\n  \"trafikkseparasjonssystem\": \"trafikkseparasjonssystem\",\n  \"trafikkseparasjonssytem\": \"trafikkseparasjonssytem\",\n  \"trafikksikkerhet\": \"trafikksikker\",\n  \"trafikksituasjon\": \"trafikksituasjon\",\n  \"trafikksituasjonen\": \"trafikksituasjon\",\n  \"trafikkstrømmer\": \"trafikkstrømm\",\n  \"trafikktellinger\": \"trafikktelling\",\n  \"trafikktetthet\": \"trafikktett\",\n  \"trafikktettheten\": \"trafikktett\",\n  \"trafikkutvikling\": \"trafikkutvikling\",\n  \"trafikkutviklingen\": \"trafikkutvikling\",\n  \"trafikkvekst\": \"trafikkvekst\",\n  \"trafikkveksten\": \"trafikkvekst\",\n  \"trafikkvekstrater\": \"trafikkvekstrat\",\n  \"trafikkvolumer\": \"trafikkvolum\",\n  \"trafikkvolumet\": \"trafikkvolum\",\n  \"trafikkvolums\": \"trafikkvolum\",\n  \"trafikkøkning\": \"trafikkøkning\",\n  \"trafikkøkninger\": \"trafikkøkning\",\n  \"trailer\": \"trail\",\n  \"trailere\": \"trailer\",\n  \"trailerutstyr\": \"trailerutstyr\",\n  \"traktaten\": \"traktat\",\n  \"traktatens\": \"traktat\",\n  \"traller\": \"trall\",\n  \"trampe\": \"tramp\",\n  \"trampende\": \"tramp\",\n  \"tramper\": \"tramp\",\n  \"trampet\": \"tramp\",\n  \"trang\": \"trang\",\n  \"trange\": \"trang\",\n  \"trangt\": \"trangt\",\n  \"tranportarbeidet\": \"tranportarbeid\",\n  \"trans\": \"tran\",\n  \"transaksjon\": \"transaksjon\",\n  \"transaksjonar\": \"transaksjon\",\n  \"transaksjonen\": \"transaksjon\",\n  \"transeuropeiske\": \"transeuropeisk\",\n  \"transformering\": \"transformering\",\n  \"transitt\": \"transitt\",\n  \"transittcontainerne\": \"transittcontainern\",\n  \"transittgods\": \"transittgod\",\n  \"transitthavn\": \"transitthavn\",\n  \"transittlast\": \"transittl\",\n  \"transittrafikk\": \"transittrafikk\",\n  \"transport\": \"transport\",\n  \"transportalternativ\": \"transportalternativ\",\n  \"transportarbeid\": \"transportarbeid\",\n  \"transportarbeidet\": \"transportarbeid\",\n  \"transportavstand\": \"transportavstand\",\n  \"transportavstander\": \"transportavstand\",\n  \"transportavvikling\": \"transportavvikling\",\n  \"transportbedriftene\": \"transportbedrift\",\n  \"transportbedrifter\": \"transportbedrift\",\n  \"transportbehov\": \"transportbehov\",\n  \"transportbildet\": \"transportbild\",\n  \"transportbransjen\": \"transportbransj\",\n  \"transportbrukere\": \"transportbruker\",\n  \"transportbrukeren\": \"transportbruker\",\n  \"transportbrukerne\": \"transportbrukern\",\n  \"transportbrukernes\": \"transportbrukern\",\n  \"transportbærere\": \"transportbærer\",\n  \"transportdistanse\": \"transportdistans\",\n  \"transporten\": \"transport\",\n  \"transportene\": \"transport\",\n  \"transporter\": \"transport\",\n  \"transporterer\": \"transporter\",\n  \"transporteres\": \"transporter\",\n  \"transportert\": \"transporter\",\n  \"transporterte\": \"transporter\",\n  \"transportetater\": \"transportetat\",\n  \"transportetterspørsel\": \"transportetterspørsel\",\n  \"transportfirmaer\": \"transportfirma\",\n  \"transportform\": \"transportform\",\n  \"transportformen\": \"transportform\",\n  \"transportformene\": \"transportform\",\n  \"transportformer\": \"transportform\",\n  \"transportinfrastruktur\": \"transportinfrastruktur\",\n  \"transportkjeden\": \"transportkjed\",\n  \"transportkjeder\": \"transportkjed\",\n  \"transportkjøpere\": \"transportkjøper\",\n  \"transportkjøperne\": \"transportkjøpern\",\n  \"transportkjøpernes\": \"transportkjøpern\",\n  \"transportknutepunkt\": \"transportknutepunkt\",\n  \"transportkorridor\": \"transportkorridor\",\n  \"transportkorridorene\": \"transportkorridor\",\n  \"transportkorridorer\": \"transportkorridor\",\n  \"transportkostnad\": \"transportkostnad\",\n  \"transportkostnadene\": \"transportkostnad\",\n  \"transportkostnader\": \"transportkostnad\",\n  \"transportkostnadsmessige\": \"transportkostnadsmess\",\n  \"transportkrevende\": \"transportkrev\",\n  \"transportkvalitet\": \"transportkvalit\",\n  \"transportkvaliteten\": \"transportkvalitet\",\n  \"transportleddene\": \"transportledd\",\n  \"transportleddet\": \"transportledd\",\n  \"transportlenker\": \"transportlenk\",\n  \"transportlinkene\": \"transportlink\",\n  \"transportløsning\": \"transportløsning\",\n  \"transportløsningen\": \"transportløsning\",\n  \"transportløsningene\": \"transportløsning\",\n  \"transportløsninger\": \"transportløsning\",\n  \"transportmarkedet\": \"transportmarked\",\n  \"transportmateriell\": \"transportmateriell\",\n  \"transportmessig\": \"transportmess\",\n  \"transportmessige\": \"transportmess\",\n  \"transportmiddel\": \"transportmiddel\",\n  \"transportmiddelfordelingen\": \"transportmiddelfordeling\",\n  \"transportmidlene\": \"transportmidl\",\n  \"transportmidler\": \"transportmidl\",\n  \"transportmåte\": \"transportmåt\",\n  \"transportmåter\": \"transportmåt\",\n  \"transportmønstre\": \"transportmønstr\",\n  \"transportmønstrene\": \"transportmønstr\",\n  \"transportnett\": \"transportnett\",\n  \"transportnettet\": \"transportnett\",\n  \"transportnettverket\": \"transportnettverk\",\n  \"transportomfang\": \"transportomfang\",\n  \"transportoppgaver\": \"transportoppgav\",\n  \"transportopplegg\": \"transportopplegg\",\n  \"transportorganisering\": \"transportorganisering\",\n  \"transportperspektiv\": \"transportperspektiv\",\n  \"transportplan\": \"transportplan\",\n  \"transportplanen\": \"transportplan\",\n  \"transportplanlegging\": \"transportplanlegging\",\n  \"transportpolitikken\": \"transportpolitikk\",\n  \"transportpris\": \"transportpris\",\n  \"transportprosjekter\": \"transportprosjekt\",\n  \"transportrelaterte\": \"transportrelater\",\n  \"transportruten\": \"transportrut\",\n  \"transportsammenheng\": \"transportsammenheng\",\n  \"transportsektoren\": \"transportsektor\",\n  \"transportsektorene\": \"transportsektor\",\n  \"transportselskapene\": \"transportselskap\",\n  \"transportselskaper\": \"transportselskap\",\n  \"transportstrømmene\": \"transportstrømm\",\n  \"transportstrømmer\": \"transportstrømm\",\n  \"transportsystem\": \"transportsystem\",\n  \"transportsystemer\": \"transportsystem\",\n  \"transportsystemers\": \"transportsystem\",\n  \"transportsystemet\": \"transportsystem\",\n  \"transportsystemets\": \"transportsystem\",\n  \"transporttilbud\": \"transporttilbud\",\n  \"transporttjeneste\": \"transporttjenest\",\n  \"transporttjenester\": \"transporttjenest\",\n  \"transportutviklingen\": \"transportutvikling\",\n  \"transportveg\": \"transportveg\",\n  \"transportvirksomhet\": \"transportvirksom\",\n  \"transportvirksomheter\": \"transportvirksom\",\n  \"transportvolumer\": \"transportvolum\",\n  \"transportårene\": \"transportår\",\n  \"transportøkonomi\": \"transportøkonomi\",\n  \"transportøkonomisk\": \"transportøkonomisk\",\n  \"transportørene\": \"transportør\",\n  \"transportørenes\": \"transportør\",\n  \"transportørens\": \"transportør\",\n  \"transportører\": \"transportør\",\n  \"trappes\": \"trapp\",\n  \"trase\": \"tras\",\n  \"trasket\": \"trask\",\n  \"trass\": \"trass\",\n  \"trassen\": \"trass\",\n  \"trassig\": \"trass\",\n  \"trau\": \"trau\",\n  \"trauet\": \"trauet\",\n  \"travemunde\": \"travemund\",\n  \"travle\": \"travl\",\n  \"tre\": \"tre\",\n  \"tredel\": \"tredel\",\n  \"tredelar\": \"tredel\",\n  \"tredeler\": \"tredel\",\n  \"tredeling\": \"tredeling\",\n  \"tredels\": \"tredel\",\n  \"tredje\": \"tredj\",\n  \"tredjedel\": \"tredjedel\",\n  \"tredjedelen\": \"tredjedel\",\n  \"tredjedeler\": \"tredjedel\",\n  \"tredjedels\": \"tredjedel\",\n  \"tredjemann\": \"tredjemann\",\n  \"tredjemenn\": \"tredjemenn\",\n  \"tredjeparten\": \"tredjepart\",\n  \"tredjeperson\": \"tredjeperson\",\n  \"tredjepersonen\": \"tredjeperson\",\n  \"tredjepersons\": \"tredjeperson\",\n  \"tredoblet\": \"tredobl\",\n  \"treet\": \"treet\",\n  \"treffande\": \"treff\",\n  \"treffe\": \"treff\",\n  \"treffende\": \"treff\",\n  \"treffer\": \"treff\",\n  \"treffes\": \"treff\",\n  \"trefigurer\": \"trefigur\",\n  \"trefork\": \"trefork\",\n  \"tregere\": \"treger\",\n  \"trekk\": \"trekk\",\n  \"trekke\": \"trekk\",\n  \"trekker\": \"trekk\",\n  \"trekkes\": \"trekk\",\n  \"trekkjast\": \"trekkj\",\n  \"trekkje\": \"trekkj\",\n  \"trekkjer\": \"trekkj\",\n  \"trekkvogn\": \"trekkvogn\",\n  \"trekte\": \"trekt\",\n  \"trelast\": \"trel\",\n  \"trelemmer\": \"trelemm\",\n  \"trell\": \"trell\",\n  \"trellene\": \"trell\",\n  \"treller\": \"trell\",\n  \"trellkvinnene\": \"trellkvinn\",\n  \"trellkvinner\": \"trellkvinn\",\n  \"tremasse\": \"tremass\",\n  \"trend\": \"trend\",\n  \"trenden\": \"trend\",\n  \"trender\": \"trend\",\n  \"trendmessig\": \"trendmess\",\n  \"trendmessige\": \"trendmess\",\n  \"trends\": \"trend\",\n  \"trener\": \"tren\",\n  \"trenere\": \"trener\",\n  \"trenet\": \"tren\",\n  \"treng\": \"treng\",\n  \"trenge\": \"treng\",\n  \"trenger\": \"treng\",\n  \"trengje\": \"trengj\",\n  \"trengs\": \"treng\",\n  \"trengst\": \"trengst\",\n  \"trengt\": \"trengt\",\n  \"trengte\": \"trengt\",\n  \"trening\": \"trening\",\n  \"trepunktsløsning\": \"trepunktsløsning\",\n  \"trer\": \"trer\",\n  \"trerot\": \"trerot\",\n  \"tresleiv\": \"tresleiv\",\n  \"trestammen\": \"trestamm\",\n  \"trestammer\": \"trestamm\",\n  \"trestokkene\": \"trestokk\",\n  \"trestokker\": \"trestokk\",\n  \"tretoppene\": \"tretopp\",\n  \"trett\": \"trett\",\n  \"trette\": \"trett\",\n  \"tretti\": \"tretti\",\n  \"trettiårsregelen\": \"trettiårsregel\",\n  \"triangel\": \"triangel\",\n  \"triller\": \"trill\",\n  \"trimrommet\": \"trimromm\",\n  \"trinn\": \"trinn\",\n  \"trinnene\": \"trinn\",\n  \"trinns\": \"trinn\",\n  \"trist\": \"trist\",\n  \"trives\": \"triv\",\n  \"trivielt\": \"trivielt\",\n  \"trivsel\": \"trivsel\",\n  \"trivst\": \"trivst\",\n  \"tro\": \"tro\",\n  \"trodd\": \"trodd\",\n  \"trodde\": \"trodd\",\n  \"trofast\": \"trof\",\n  \"trofaste\": \"trofast\",\n  \"trolig\": \"trol\",\n  \"troll\": \"troll\",\n  \"trollborg\": \"trollborg\",\n  \"trollborgen\": \"trollborg\",\n  \"trolldom\": \"trolldom\",\n  \"trolldomskunster\": \"trolldomskunst\",\n  \"trollene\": \"troll\",\n  \"trollet\": \"troll\",\n  \"trolljenter\": \"trolljent\",\n  \"trolljern\": \"trolljern\",\n  \"trollkjerring\": \"trollkjerring\",\n  \"trollkjerringer\": \"trollkjerring\",\n  \"trollkongen\": \"trollkong\",\n  \"trollkvinne\": \"trollkvinn\",\n  \"trollkvinnen\": \"trollkvinn\",\n  \"trollmann\": \"trollmann\",\n  \"trollskog\": \"trollskog\",\n  \"trollslekten\": \"trollslekt\",\n  \"tromsø\": \"tromsø\",\n  \"trond\": \"trond\",\n  \"trondheim\": \"trondheim\",\n  \"tronen\": \"tron\",\n  \"troner\": \"tron\",\n  \"trongare\": \"trongar\",\n  \"trongst\": \"trongst\",\n  \"tronstolen\": \"tronstol\",\n  \"tror\": \"tror\",\n  \"troskap\": \"troskap\",\n  \"troskaps\": \"troskap\",\n  \"troskyldig\": \"troskyld\",\n  \"troskyldighet\": \"troskyld\",\n  \"tross\": \"tross\",\n  \"trosser\": \"tross\",\n  \"troverdigheten\": \"troverd\",\n  \"tru\": \"tru\",\n  \"trucker\": \"truck\",\n  \"trud\": \"trud\",\n  \"trudvang\": \"trudvang\",\n  \"true\": \"true\",\n  \"truende\": \"truend\",\n  \"truer\": \"truer\",\n  \"truet\": \"truet\",\n  \"truffet\": \"truff\",\n  \"trukket\": \"trukk\",\n  \"truleg\": \"truleg\",\n  \"trur\": \"trur\",\n  \"trusler\": \"trusl\",\n  \"trutt\": \"trutt\",\n  \"truvedkjenning\": \"truvedkjenning\",\n  \"truverdet\": \"truverd\",\n  \"trygd\": \"trygd\",\n  \"trygda\": \"trygd\",\n  \"trygdeavgift\": \"trygdeavgift\",\n  \"trygdeavgiften\": \"trygdeavgift\",\n  \"trygdeetatens\": \"trygdeetat\",\n  \"trygdens\": \"trygd\",\n  \"trygdeordninger\": \"trygdeordning\",\n  \"trygdesystemet\": \"trygdesystem\",\n  \"trygdet\": \"trygd\",\n  \"trygdgjeving\": \"trygdgjeving\",\n  \"trygdgjevinga\": \"trygdgjeving\",\n  \"trygg\": \"trygg\",\n  \"tryggare\": \"tryggar\",\n  \"trygge\": \"trygg\",\n  \"tryggeste\": \"tryggest\",\n  \"tryggingsventilen\": \"tryggingsventil\",\n  \"tryggleik\": \"tryggleik\",\n  \"trygt\": \"trygt\",\n  \"trykker\": \"trykk\",\n  \"trykkjer\": \"trykkj\",\n  \"trykte\": \"trykt\",\n  \"trylleord\": \"trylleord\",\n  \"tryller\": \"tryll\",\n  \"tryllesangene\": \"tryllesang\",\n  \"tryllesanger\": \"tryllesang\",\n  \"tryllesøvn\": \"tryllesøvn\",\n  \"tryllevers\": \"tryllev\",\n  \"trym\": \"trym\",\n  \"trymheim\": \"trymheim\",\n  \"tryms\": \"trym\",\n  \"trymsheim\": \"trymsheim\",\n  \"trå\": \"trå\",\n  \"tråd\": \"tråd\",\n  \"tråder\": \"tråd\",\n  \"trådt\": \"trådt\",\n  \"trådte\": \"trådt\",\n  \"trær\": \"trær\",\n  \"trærne\": \"trærn\",\n  \"trøndelag\": \"trøndelag\",\n  \"trør\": \"trør\",\n  \"trøst\": \"trøst\",\n  \"trøste\": \"trøst\",\n  \"trøster\": \"trøst\",\n  \"tu\": \"tu\",\n  \"tumler\": \"tuml\",\n  \"tummelumsk\": \"tummelumsk\",\n  \"tunet\": \"tun\",\n  \"tung\": \"tung\",\n  \"tunge\": \"tung\",\n  \"tungen\": \"tung\",\n  \"tunger\": \"tung\",\n  \"tungt\": \"tungt\",\n  \"tungtrafikk\": \"tungtrafikk\",\n  \"tungtrafikken\": \"tungtrafikk\",\n  \"tungtrafikkens\": \"tungtrafikk\",\n  \"tungtransport\": \"tungtransport\",\n  \"tungtransportbil\": \"tungtransportbil\",\n  \"tungtransporten\": \"tungtransport\",\n  \"tungtvegande\": \"tungtveg\",\n  \"tungvint\": \"tungvint\",\n  \"tunnel\": \"tunnel\",\n  \"tunnelen\": \"tunnel\",\n  \"tunneler\": \"tunnel\",\n  \"tunnelgjennomføring\": \"tunnelgjennomføring\",\n  \"tunnelløsning\": \"tunnelløsning\",\n  \"tuntre\": \"tuntr\",\n  \"tuntreet\": \"tuntre\",\n  \"tur\": \"tur\",\n  \"ture\": \"tur\",\n  \"tusen\": \"tus\",\n  \"tusener\": \"tusen\",\n  \"tusenvis\": \"tusenvis\",\n  \"tusler\": \"tusl\",\n  \"tussefolkets\": \"tussefolk\",\n  \"tussekongen\": \"tussekong\",\n  \"tussekonger\": \"tussekong\",\n  \"tusser\": \"tuss\",\n  \"tussete\": \"tusset\",\n  \"tuter\": \"tut\",\n  \"tv\": \"tv\",\n  \"tvang\": \"tvang\",\n  \"tvangsakkord\": \"tvangsakkord\",\n  \"tvangsbruk\": \"tvangsbruk\",\n  \"tvangsdekning\": \"tvangsdekning\",\n  \"tvangsdekningen\": \"tvangsdekning\",\n  \"tvangsfråviking\": \"tvangsfråviking\",\n  \"tvangsfullbyrdelse\": \"tvangsfullbyrd\",\n  \"tvangsfullføring\": \"tvangsfullføring\",\n  \"tvangsfullføringslova\": \"tvangsfullføring\",\n  \"tvangsfullført\": \"tvangsfullført\",\n  \"tvangsgrunnlaga\": \"tvangsgrunnlag\",\n  \"tvangsinndrivelse\": \"tvangsinndriv\",\n  \"tvangsl\": \"tvangsl\",\n  \"tvangslova\": \"tvang\",\n  \"tvangsmiddel\": \"tvangsmiddel\",\n  \"tvangsmulkt\": \"tvangsmulkt\",\n  \"tvangssal\": \"tvangssal\",\n  \"tvangssalet\": \"tvangssal\",\n  \"tvangssalg\": \"tvangssalg\",\n  \"tvangsseld\": \"tvangsseld\",\n  \"tvangsseljast\": \"tvangsselj\",\n  \"tvekamp\": \"tvekamp\",\n  \"tvekampen\": \"tvekamp\",\n  \"tverrbjelken\": \"tverrbjelk\",\n  \"tverrgående\": \"tverrgå\",\n  \"tverrpolitisk\": \"tverrpolitisk\",\n  \"tverrsektoriell\": \"tverrsektoriell\",\n  \"tvers\": \"tver\",\n  \"tvert\": \"tvert\",\n  \"tvertimot\": \"tvertimot\",\n  \"tvi\": \"tvi\",\n  \"tvil\": \"tvil\",\n  \"tvilande\": \"tvil\",\n  \"tvile\": \"tvil\",\n  \"tvilen\": \"tvil\",\n  \"tvilende\": \"tvil\",\n  \"tviler\": \"tvil\",\n  \"tvilsamt\": \"tvilsamt\",\n  \"tvilsomt\": \"tvilsomt\",\n  \"tvilsspørsmål\": \"tvilsspørsmål\",\n  \"tvilsspørsmåla\": \"tvilsspørsmål\",\n  \"tvilstilfelle\": \"tvilstilfell\",\n  \"tvinge\": \"tving\",\n  \"tvinger\": \"tving\",\n  \"tvinges\": \"tving\",\n  \"tvist\": \"tvist\",\n  \"tvistane\": \"tvist\",\n  \"tvistar\": \"tvist\",\n  \"tvisteløysing\": \"tvisteløysing\",\n  \"tvisteløysingsorgan\": \"tvisteløysingsorgan\",\n  \"tvistemål\": \"tvistemål\",\n  \"tvistemålslov\": \"tvistemål\",\n  \"tvistemålslova\": \"tvistemål\",\n  \"tvisten\": \"tvist\",\n  \"tvungen\": \"tvung\",\n  \"tvunget\": \"tvung\",\n  \"twenty\": \"twenty\",\n  \"tyde\": \"tyd\",\n  \"tydeleg\": \"tyd\",\n  \"tydelig\": \"tyd\",\n  \"tydelige\": \"tyd\",\n  \"tydeligere\": \"tydeliger\",\n  \"tydeliggjort\": \"tydeliggjort\",\n  \"tydeliggjøre\": \"tydeliggjør\",\n  \"tyder\": \"tyd\",\n  \"tyding\": \"tyding\",\n  \"tydinga\": \"tyding\",\n  \"tydingar\": \"tyding\",\n  \"tygger\": \"tygg\",\n  \"tygget\": \"tygg\",\n  \"tykke\": \"tykk\",\n  \"tykkere\": \"tykker\",\n  \"tykt\": \"tykt\",\n  \"tyngdepunkt\": \"tyngdepunkt\",\n  \"tyngdepunktet\": \"tyngdepunkt\",\n  \"tyngende\": \"tyng\",\n  \"tyngjande\": \"tyngj\",\n  \"tyngst\": \"tyngst\",\n  \"tyngste\": \"tyngst\",\n  \"tynn\": \"tynn\",\n  \"tynt\": \"tynt\",\n  \"typane\": \"typ\",\n  \"typar\": \"typ\",\n  \"type\": \"typ\",\n  \"typeeksempel\": \"typeeksempel\",\n  \"typen\": \"typ\",\n  \"typene\": \"typ\",\n  \"typer\": \"typ\",\n  \"typisk\": \"typisk\",\n  \"typiske\": \"typisk\",\n  \"tyr\": \"tyr\",\n  \"tyrs\": \"tyr\",\n  \"tysk\": \"tysk\",\n  \"tyske\": \"tysk\",\n  \"tyskland\": \"tyskland\",\n  \"tysvær\": \"tysvær\",\n  \"tyter\": \"tyt\",\n  \"tyv\": \"tyv\",\n  \"tyve\": \"tyv\",\n  \"tyven\": \"tyv\",\n  \"tyveriet\": \"tyveri\",\n  \"tå\": \"tå\",\n  \"tåa\": \"tåa\",\n  \"tåke\": \"tåk\",\n  \"tåkeheimen\": \"tåkeheim\",\n  \"tåken\": \"tåk\",\n  \"tåle\": \"tål\",\n  \"tåler\": \"tål\",\n  \"tålmodig\": \"tålmod\",\n  \"tålmodighet\": \"tålmod\",\n  \"tålmodigheten\": \"tålmod\",\n  \"tålt\": \"tålt\",\n  \"tåre\": \"tår\",\n  \"tårene\": \"tår\",\n  \"tårer\": \"tår\",\n  \"tårn\": \"tårn\",\n  \"tårner\": \"tårn\",\n  \"tælen\": \"tæl\",\n  \"tær\": \"tær\",\n  \"tære\": \"tær\",\n  \"tærne\": \"tærn\",\n  \"tøi\": \"tøi\",\n  \"tømme\": \"tømm\",\n  \"tømmene\": \"tømm\",\n  \"tømmer\": \"tømm\",\n  \"tømmerimporten\": \"tømmerimport\",\n  \"tømmerstokkene\": \"tømmerstokk\",\n  \"tømmertransport\": \"tømmertransport\",\n  \"tømmertransporter\": \"tømmertransport\",\n  \"tømmervegger\": \"tømmervegg\",\n  \"tømmes\": \"tømm\",\n  \"tønnen\": \"tønn\",\n  \"tønner\": \"tønn\",\n  \"tønsberg\": \"tønsberg\",\n  \"tør\": \"tør\",\n  \"tørker\": \"tørk\",\n  \"tørner\": \"tørn\",\n  \"tørr\": \"tørr\",\n  \"tørrbulk\": \"tørrbulk\",\n  \"tørrbulkgodset\": \"tørrbulkgods\",\n  \"tørrbulkkai\": \"tørrbulkkai\",\n  \"tørrbulkomslag\": \"tørrbulkomslag\",\n  \"tørre\": \"tørr\",\n  \"tørst\": \"tørst\",\n  \"tørste\": \"tørst\",\n  \"tørstet\": \"tørst\",\n  \"tørt\": \"tørt\",\n  \"tøy\": \"tøy\",\n  \"tøyle\": \"tøyl\",\n  \"tøyler\": \"tøyl\",\n  \"tøyser\": \"tøys\",\n  \"uakseptable\": \"uakseptabl\",\n  \"uaktuelt\": \"uaktuelt\",\n  \"uanseelig\": \"uanse\",\n  \"uansett\": \"uansett\",\n  \"uavbrutt\": \"uavbrutt\",\n  \"uavgjort\": \"uavgjort\",\n  \"uavgrensa\": \"uavgrens\",\n  \"uavhengig\": \"uavheng\",\n  \"uavhengige\": \"uavheng\",\n  \"uavkortet\": \"uavkort\",\n  \"ubalanse\": \"ubalans\",\n  \"ubedte\": \"ubed\",\n  \"ubegrensede\": \"ubegrens\",\n  \"ubegrenset\": \"ubegrens\",\n  \"ubegripelig\": \"ubegrip\",\n  \"ubenyttet\": \"ubenytt\",\n  \"uberegnelig\": \"uberegn\",\n  \"uberegnelige\": \"uberegn\",\n  \"uberørte\": \"uberørt\",\n  \"ubestemt\": \"ubestemt\",\n  \"ubetinga\": \"ubeting\",\n  \"ubetinget\": \"ubeting\",\n  \"ubetydelig\": \"ubetyd\",\n  \"ubunden\": \"ubund\",\n  \"ubygde\": \"ubygd\",\n  \"ubøyelig\": \"ubøy\",\n  \"udekket\": \"udekk\",\n  \"udekte\": \"udekt\",\n  \"udgave\": \"udgav\",\n  \"udjerv\": \"udjerv\",\n  \"udyret\": \"udyr\",\n  \"udyrs\": \"udyr\",\n  \"ueigentleg\": \"ueigent\",\n  \"ueinsarta\": \"ueinsart\",\n  \"uendelig\": \"uend\",\n  \"uendelige\": \"uend\",\n  \"uendret\": \"uendr\",\n  \"ufattelig\": \"ufatt\",\n  \"uforanderlig\": \"uforander\",\n  \"uforandret\": \"uforandr\",\n  \"uforfalle\": \"uforfall\",\n  \"uforholdsmessig\": \"uforholdsmess\",\n  \"uforlikte\": \"uforlikt\",\n  \"uformelig\": \"uform\",\n  \"uformelle\": \"uformell\",\n  \"uforsiktig\": \"uforsikt\",\n  \"uforsvarleg\": \"uforsvar\",\n  \"uforsvarlege\": \"uforsvar\",\n  \"uforsvarlig\": \"uforsvar\",\n  \"uforutsett\": \"uforutsett\",\n  \"ufred\": \"ufred\",\n  \"ufri\": \"ufri\",\n  \"ufriviljuge\": \"ufriviljug\",\n  \"ufråvikeleg\": \"ufråvik\",\n  \"ufråvikelege\": \"ufråvik\",\n  \"ufullstendig\": \"ufullstend\",\n  \"ufullstendige\": \"ufullstend\",\n  \"ufyselig\": \"ufys\",\n  \"ufyselige\": \"ufys\",\n  \"ufør\": \"ufør\",\n  \"uføre\": \"ufør\",\n  \"uføreforsikring\": \"uføreforsikring\",\n  \"uføregraden\": \"uføregrad\",\n  \"uførepensjon\": \"uførepensjon\",\n  \"uførepensjonen\": \"uførepensjon\",\n  \"uførepensjonens\": \"uførepensjon\",\n  \"uførepensjoner\": \"uførepensjon\",\n  \"uførepensjonister\": \"uførepensjonist\",\n  \"uførepensjonsforsikring\": \"uførepensjonsforsikring\",\n  \"uføretidspunktet\": \"uføretidspunkt\",\n  \"uføreytelser\": \"uføreyt\",\n  \"uførhet\": \"ufør\",\n  \"uførheten\": \"ufør\",\n  \"ugagnskråka\": \"ugagnskråk\",\n  \"ugagnskråke\": \"ugagnskråk\",\n  \"uggla\": \"uggl\",\n  \"ugifte\": \"ugift\",\n  \"ugjennomsiktig\": \"ugjennomsikt\",\n  \"ugjennomsiktige\": \"ugjennomsikt\",\n  \"ugjerne\": \"ugjern\",\n  \"ugjerningsmenn\": \"ugjerningsmenn\",\n  \"ugyldig\": \"ugyld\",\n  \"ugyldige\": \"ugyld\",\n  \"uheldig\": \"uheld\",\n  \"uheldige\": \"uheld\",\n  \"uhell\": \"uhell\",\n  \"uhensiktsmessig\": \"uhensiktsmess\",\n  \"uhevnet\": \"uhevn\",\n  \"uhyggelig\": \"uhygg\",\n  \"uhyggelige\": \"uhygg\",\n  \"uhyrer\": \"uhyr\",\n  \"uhyret\": \"uhyr\",\n  \"uinnfridde\": \"uinnfridd\",\n  \"ujamn\": \"ujamn\",\n  \"uke\": \"uke\",\n  \"ukedager\": \"ukedag\",\n  \"uken\": \"uken\",\n  \"ukentlig\": \"ukent\",\n  \"uker\": \"uker\",\n  \"ukjent\": \"ukjent\",\n  \"ukjente\": \"ukjent\",\n  \"uklar\": \"ukl\",\n  \"uklare\": \"uklar\",\n  \"uklarhet\": \"uklar\",\n  \"uklarheter\": \"uklar\",\n  \"uklart\": \"uklart\",\n  \"uklok\": \"uklok\",\n  \"uklokt\": \"uklokt\",\n  \"uklår\": \"uklår\",\n  \"uklåre\": \"uklår\",\n  \"uklårt\": \"uklårt\",\n  \"ukrevet\": \"ukrev\",\n  \"ulage\": \"ulag\",\n  \"ulefoss\": \"ulefoss\",\n  \"ulempa\": \"ulemp\",\n  \"ulempe\": \"ulemp\",\n  \"ulempene\": \"ulemp\",\n  \"ulemper\": \"ulemp\",\n  \"uler\": \"uler\",\n  \"uleselige\": \"ules\",\n  \"ulik\": \"ulik\",\n  \"ulike\": \"ulik\",\n  \"ulikhet\": \"ulik\",\n  \"ulikhetene\": \"ulik\",\n  \"ulikheter\": \"ulik\",\n  \"ulikskap\": \"ulikskap\",\n  \"ulikskapen\": \"ulikskap\",\n  \"ulikt\": \"ulikt\",\n  \"ull\": \"ull\",\n  \"ullen\": \"ull\",\n  \"ulmer\": \"ulm\",\n  \"ulovfesta\": \"ulovfest\",\n  \"ulovleg\": \"ulov\",\n  \"ulv\": \"ulv\",\n  \"ulve\": \"ulv\",\n  \"ulvegapet\": \"ulvegap\",\n  \"ulveham\": \"ulveham\",\n  \"ulvekjeften\": \"ulvekjeft\",\n  \"ulven\": \"ulv\",\n  \"ulvene\": \"ulv\",\n  \"ulver\": \"ulv\",\n  \"ulveskikkelse\": \"ulveskikk\",\n  \"ulvesnute\": \"ulvesnut\",\n  \"ulvestemmer\": \"ulvestemm\",\n  \"ulvetid\": \"ulvetid\",\n  \"ulvungen\": \"ulvung\",\n  \"ulydighet\": \"ulyd\",\n  \"ulykke\": \"ulykk\",\n  \"ulykkelig\": \"ulykk\",\n  \"ulykkelige\": \"ulykk\",\n  \"ulykker\": \"ulykk\",\n  \"ulykkesfugl\": \"ulykkesfugl\",\n  \"ulykkeskostnader\": \"ulykkeskostnad\",\n  \"ulyst\": \"ulyst\",\n  \"ulønsamt\": \"ulønsamt\",\n  \"umettelige\": \"umett\",\n  \"umiddelbar\": \"umiddelb\",\n  \"umiddelbart\": \"umiddelbart\",\n  \"umogleg\": \"umog\",\n  \"umulig\": \"umu\",\n  \"umulige\": \"umu\",\n  \"umyndig\": \"umynd\",\n  \"umyndiggjorde\": \"umyndiggjord\",\n  \"und\": \"und\",\n  \"undamentet\": \"undament\",\n  \"under\": \"und\",\n  \"underdekning\": \"underdekning\",\n  \"underdirektør\": \"underdirektør\",\n  \"underforstått\": \"underforstått\",\n  \"underfulle\": \"underfull\",\n  \"undergang\": \"undergang\",\n  \"undergis\": \"undergis\",\n  \"undergitt\": \"undergitt\",\n  \"undergruppe\": \"undergrupp\",\n  \"underjordisk\": \"underjordisk\",\n  \"underjordiske\": \"underjordisk\",\n  \"underkant\": \"underkant\",\n  \"underkapitler\": \"underkapitl\",\n  \"underkjeven\": \"underkjev\",\n  \"underkurs\": \"underkur\",\n  \"underlag\": \"underlag\",\n  \"underlagde\": \"underlagd\",\n  \"underlagsmateriale\": \"underlagsmaterial\",\n  \"underlagsmaterialet\": \"underlagsmaterial\",\n  \"underlagt\": \"underlagt\",\n  \"underlegges\": \"underlegg\",\n  \"underleveranser\": \"underleverans\",\n  \"underlig\": \"under\",\n  \"underlige\": \"under\",\n  \"underliggende\": \"underligg\",\n  \"underminere\": \"underminer\",\n  \"underordna\": \"underordn\",\n  \"underordnet\": \"underordn\",\n  \"underordnete\": \"underordnet\",\n  \"underpris\": \"underpris\",\n  \"underprising\": \"underprising\",\n  \"underrapportering\": \"underrapportering\",\n  \"underrapporteringen\": \"underrapportering\",\n  \"underskift\": \"underskift\",\n  \"underskifter\": \"underskift\",\n  \"underskot\": \"underskot\",\n  \"underskrift\": \"underskrift\",\n  \"underskriftene\": \"underskrift\",\n  \"underskrifter\": \"underskrift\",\n  \"underskrivast\": \"underskriv\",\n  \"underskrive\": \"underskriv\",\n  \"underskriven\": \"underskriv\",\n  \"underskriving\": \"underskriving\",\n  \"underskudd\": \"underskudd\",\n  \"underskuddet\": \"underskudd\",\n  \"understreke\": \"understrek\",\n  \"understreker\": \"understrek\",\n  \"understrekes\": \"understrek\",\n  \"understøtter\": \"understøtt\",\n  \"undersøke\": \"undersøk\",\n  \"undersøkelse\": \"undersøk\",\n  \"undersøkelsen\": \"undersøk\",\n  \"undersøkelsene\": \"undersøk\",\n  \"undersøkelser\": \"undersøk\",\n  \"undersøkingane\": \"undersøking\",\n  \"undersøkingar\": \"undersøking\",\n  \"undersøkje\": \"undersøkj\",\n  \"undersøkjer\": \"undersøkj\",\n  \"undersøkt\": \"undersøkt\",\n  \"underteiknast\": \"underteikn\",\n  \"undervegs\": \"underveg\",\n  \"underveis\": \"underveis\",\n  \"undervurderer\": \"undervurder\",\n  \"undervurderte\": \"undervurder\",\n  \"undre\": \"undr\",\n  \"undrende\": \"undr\",\n  \"undrer\": \"undr\",\n  \"undres\": \"undr\",\n  \"undring\": \"undring\",\n  \"ung\": \"ung\",\n  \"ungdom\": \"ungdom\",\n  \"ungdommen\": \"ungdomm\",\n  \"ungdoms\": \"ungdom\",\n  \"ungdomsbustader\": \"ungdomsbustad\",\n  \"unge\": \"ung\",\n  \"ungen\": \"ung\",\n  \"unger\": \"ung\",\n  \"ungr\": \"ungr\",\n  \"union\": \"union\",\n  \"unionen\": \"union\",\n  \"uniship\": \"uniship\",\n  \"unit\": \"unit\",\n  \"united\": \"united\",\n  \"unitisering\": \"unitisering\",\n  \"unitiseringsgraden\": \"unitiseringsgrad\",\n  \"unitisert\": \"unitiser\",\n  \"unitiserte\": \"unitiser\",\n  \"universell\": \"universell\",\n  \"universitat\": \"universitat\",\n  \"university\": \"university\",\n  \"unna\": \"unn\",\n  \"unne\": \"unn\",\n  \"unner\": \"unn\",\n  \"unngå\": \"unngå\",\n  \"unngår\": \"unngår\",\n  \"unngås\": \"unngås\",\n  \"unngått\": \"unngått\",\n  \"unnlate\": \"unnlat\",\n  \"unnlater\": \"unnlat\",\n  \"unnlatt\": \"unnlatt\",\n  \"unnslippe\": \"unnslipp\",\n  \"unntak\": \"unntak\",\n  \"unntaka\": \"unntak\",\n  \"unntaket\": \"unntak\",\n  \"unntaksregel\": \"unntaksregel\",\n  \"unntaksregelen\": \"unntaksregel\",\n  \"unntakstilfeller\": \"unntakstilfell\",\n  \"unntaksvis\": \"unntaksvis\",\n  \"unntas\": \"unnt\",\n  \"unntatt\": \"unntatt\",\n  \"unormale\": \"unormal\",\n  \"unødig\": \"unød\",\n  \"unødvendig\": \"unødvend\",\n  \"unødvendige\": \"unødvend\",\n  \"uomtvista\": \"uomtvist\",\n  \"uoppseieleg\": \"uoppsei\",\n  \"uoppseielege\": \"uoppsei\",\n  \"uorden\": \"uord\",\n  \"uoverdrageleg\": \"uoverdrag\",\n  \"uoversiktleg\": \"uoversikt\",\n  \"uoversiktlig\": \"uoversikt\",\n  \"up\": \"up\",\n  \"uppfyller\": \"uppfyll\",\n  \"upplagan\": \"upplagan\",\n  \"uppsala\": \"uppsal\",\n  \"upraktisk\": \"upraktisk\",\n  \"upraktiske\": \"upraktisk\",\n  \"uprøvd\": \"uprøvd\",\n  \"ur\": \"ur\",\n  \"urasjonell\": \"urasjonell\",\n  \"urd\": \"urd\",\n  \"urds\": \"urd\",\n  \"urealisert\": \"urealiser\",\n  \"urealiserte\": \"urealiser\",\n  \"urealistisk\": \"urealistisk\",\n  \"uredd\": \"uredd\",\n  \"uregistrert\": \"uregistrer\",\n  \"uregistrerte\": \"uregistrer\",\n  \"uregulert\": \"ureguler\",\n  \"urette\": \"urett\",\n  \"urettferdig\": \"urettferd\",\n  \"urimeleg\": \"urim\",\n  \"urimelege\": \"urim\",\n  \"urimelig\": \"urim\",\n  \"uro\": \"uro\",\n  \"urolig\": \"uro\",\n  \"urolige\": \"uro\",\n  \"urter\": \"urt\",\n  \"urtiden\": \"urtid\",\n  \"uråd\": \"uråd\",\n  \"urørlig\": \"urør\",\n  \"usa\": \"usa\",\n  \"usakleg\": \"usak\",\n  \"usamde\": \"usamd\",\n  \"uselde\": \"useld\",\n  \"useljeleg\": \"uselj\",\n  \"usemje\": \"usemj\",\n  \"usikker\": \"usikk\",\n  \"usikkerhet\": \"usikker\",\n  \"usikkerheten\": \"usikker\",\n  \"usikkerhetsperiode\": \"usikkerhetsperiod\",\n  \"usikkert\": \"usikker\",\n  \"usikra\": \"usikr\",\n  \"usikre\": \"usikr\",\n  \"uskadd\": \"uskadd\",\n  \"uskadde\": \"uskadd\",\n  \"uskifte\": \"uskift\",\n  \"uskiftet\": \"uskift\",\n  \"uskikk\": \"uskikk\",\n  \"uskyidige\": \"uskyid\",\n  \"uskylden\": \"uskyld\",\n  \"uskyldig\": \"uskyld\",\n  \"uskyldsrene\": \"uskyldsr\",\n  \"uslingen\": \"usling\",\n  \"uslinger\": \"usling\",\n  \"uspesisfisert\": \"uspesisfiser\",\n  \"ustyrtelig\": \"ustyrt\",\n  \"ustøtt\": \"ustøtt\",\n  \"usynlige\": \"usyn\",\n  \"usårlig\": \"usår\",\n  \"ut\": \"ut\",\n  \"utad\": \"utad\",\n  \"utafor\": \"utafor\",\n  \"utaforståande\": \"utaforstå\",\n  \"utafrå\": \"utafrå\",\n  \"utan\": \"utan\",\n  \"utanfrå\": \"utanfrå\",\n  \"utanom\": \"utanom\",\n  \"utarbeidast\": \"utarbeid\",\n  \"utarbeidde\": \"utarbeidd\",\n  \"utarbeide\": \"utarbeid\",\n  \"utarbeidelse\": \"utarbeid\",\n  \"utarbeidelsen\": \"utarbeid\",\n  \"utarbeider\": \"utarbeid\",\n  \"utarbeides\": \"utarbeid\",\n  \"utarbeidet\": \"utarbeid\",\n  \"utarbeiding\": \"utarbeiding\",\n  \"utbedring\": \"utbedring\",\n  \"utbedringer\": \"utbedring\",\n  \"utbetale\": \"utbetal\",\n  \"utbetaler\": \"utbetal\",\n  \"utbetales\": \"utbetal\",\n  \"utbetaling\": \"utbetaling\",\n  \"utbetalingane\": \"utbetaling\",\n  \"utbetalingar\": \"utbetaling\",\n  \"utbetalingen\": \"utbetaling\",\n  \"utbetalingene\": \"utbetaling\",\n  \"utbetalingenes\": \"utbetaling\",\n  \"utbetalinger\": \"utbetaling\",\n  \"utbetalingsdagen\": \"utbetalingsdag\",\n  \"utbetalingsdatoen\": \"utbetalingsdato\",\n  \"utbetalingsfasen\": \"utbetalingsfas\",\n  \"utbetalingsperiode\": \"utbetalingsperiod\",\n  \"utbetalingsperioden\": \"utbetalingsperiod\",\n  \"utbetalingsperiodens\": \"utbetalingsperiod\",\n  \"utbetalingsprofil\": \"utbetalingsprofil\",\n  \"utbetalingsprofilen\": \"utbetalingsprofil\",\n  \"utbetalingsreglene\": \"utbetalingsregl\",\n  \"utbetalingstiden\": \"utbetalingstid\",\n  \"utbetalingstidspunktet\": \"utbetalingstidspunkt\",\n  \"utbetalingsår\": \"utbetalingsår\",\n  \"utbetalt\": \"utbetalt\",\n  \"utbetalte\": \"utbetalt\",\n  \"utbetrast\": \"utbetr\",\n  \"utbetre\": \"utbetr\",\n  \"utbetring\": \"utbetring\",\n  \"utbetringa\": \"utbetring\",\n  \"utbetringsplikt\": \"utbetringsplikt\",\n  \"utbredelse\": \"utbred\",\n  \"utbredelsen\": \"utbred\",\n  \"utbredt\": \"utbred\",\n  \"utbreidd\": \"utbreidd\",\n  \"utbreidde\": \"utbreidd\",\n  \"utbrent\": \"utbrent\",\n  \"utbudet\": \"utbud\",\n  \"utbygd\": \"utbygd\",\n  \"utbygde\": \"utbygd\",\n  \"utbygg\": \"utbygg\",\n  \"utbygger\": \"utbygg\",\n  \"utbygges\": \"utbygg\",\n  \"utbygget\": \"utbygg\",\n  \"utbygging\": \"utbygging\",\n  \"utbygginga\": \"utbygging\",\n  \"utbyggingen\": \"utbygging\",\n  \"utbyggingene\": \"utbygging\",\n  \"utbygginger\": \"utbygging\",\n  \"utbyggings\": \"utbygging\",\n  \"utbyggingsalternativet\": \"utbyggingsalternativ\",\n  \"utbyggingsbehov\": \"utbyggingsbehov\",\n  \"utbyggingsform\": \"utbyggingsform\",\n  \"utbyggingsgrad\": \"utbyggingsgrad\",\n  \"utbyggingskostnader\": \"utbyggingskostnad\",\n  \"utbyggingsmodell\": \"utbyggingsmodell\",\n  \"utbyggingsmodellen\": \"utbyggingsmodell\",\n  \"utbyggingsmuligheter\": \"utbyggingsmu\",\n  \"utbyggingsmønsteret\": \"utbyggingsmønster\",\n  \"utbyggingsområde\": \"utbyggingsområd\",\n  \"utbyggingsplan\": \"utbyggingsplan\",\n  \"utbyggingsplanene\": \"utbyggingsplan\",\n  \"utbyggingsplaner\": \"utbyggingsplan\",\n  \"utbyggingspotensiale\": \"utbyggingspotensial\",\n  \"utbyggingstakten\": \"utbyggingstakt\",\n  \"utbyggingstiltak\": \"utbyggingstiltak\",\n  \"utbyggjar\": \"utbyggj\",\n  \"utbyggjarane\": \"utbyggjar\",\n  \"utbyggjarar\": \"utbyggjar\",\n  \"utbyggjaren\": \"utbyggjar\",\n  \"utbyggjarrolle\": \"utbyggjarroll\",\n  \"utbyggjarsida\": \"utbyggjarsid\",\n  \"utbyggjartilfella\": \"utbyggjartilfell\",\n  \"utbygt\": \"utbygt\",\n  \"utbyte\": \"utbyt\",\n  \"utbytte\": \"utbytt\",\n  \"utdanning\": \"utdanning\",\n  \"utdeling\": \"utdeling\",\n  \"utdelinga\": \"utdeling\",\n  \"utdelingane\": \"utdeling\",\n  \"utdelingar\": \"utdeling\",\n  \"utdelt\": \"utdelt\",\n  \"utdelte\": \"utdelt\",\n  \"utdrag\": \"utdrag\",\n  \"utdypes\": \"utdyp\",\n  \"utdyping\": \"utdyping\",\n  \"utdypninger\": \"utdypning\",\n  \"ute\": \"ute\",\n  \"uteanlegg\": \"uteanlegg\",\n  \"uteareal\": \"uteareal\",\n  \"utearealene\": \"uteareal\",\n  \"utelukke\": \"utelukk\",\n  \"utelukkende\": \"utelukk\",\n  \"utelukker\": \"utelukk\",\n  \"utelukkes\": \"utelukk\",\n  \"utelukket\": \"utelukk\",\n  \"uten\": \"uten\",\n  \"utenfor\": \"utenfor\",\n  \"utenfra\": \"utenfr\",\n  \"utenlands\": \"utenland\",\n  \"utenlandsferjene\": \"utenlandsferj\",\n  \"utenlandsforbindelser\": \"utenlandsforbind\",\n  \"utenlandsk\": \"utenlandsk\",\n  \"utenlandske\": \"utenlandsk\",\n  \"utenlandstrafikk\": \"utenlandstrafikk\",\n  \"utenleg\": \"uten\",\n  \"utenom\": \"utenom\",\n  \"utenriks\": \"utenriks\",\n  \"utenriksfart\": \"utenriksfart\",\n  \"utenrikshandel\": \"utenrikshandel\",\n  \"utenrikshandelen\": \"utenrikshandel\",\n  \"utenrikshandelens\": \"utenrikshandel\",\n  \"utenrikshandelsstatistikk\": \"utenrikshandelsstatistikk\",\n  \"utenrikshandelsstatistikken\": \"utenrikshandelsstatistikk\",\n  \"utenrikshandelstransporter\": \"utenrikshandelstransport\",\n  \"utenrikshavn\": \"utenrikshavn\",\n  \"utenrikstrafikk\": \"utenrikstrafikk\",\n  \"utenrikstransporter\": \"utenrikstransport\",\n  \"uteområde\": \"uteområd\",\n  \"utestengd\": \"utestengd\",\n  \"utestenging\": \"utestenging\",\n  \"utestenginga\": \"utestenging\",\n  \"utette\": \"utett\",\n  \"utetter\": \"utett\",\n  \"utfalding\": \"utfalding\",\n  \"utfall\": \"utfall\",\n  \"utfallet\": \"utfall\",\n  \"utfart\": \"utfart\",\n  \"utferda\": \"utferd\",\n  \"utferdaren\": \"utferdar\",\n  \"utferdast\": \"utferd\",\n  \"utferde\": \"utferd\",\n  \"utferdige\": \"utferd\",\n  \"utferding\": \"utferding\",\n  \"utfisjonering\": \"utfisjonering\",\n  \"utflytting\": \"utflytting\",\n  \"utfor\": \"utfor\",\n  \"utfordre\": \"utfordr\",\n  \"utfordring\": \"utfordring\",\n  \"utfordringen\": \"utfordring\",\n  \"utfordringene\": \"utfordring\",\n  \"utfordringer\": \"utfordring\",\n  \"utforma\": \"utform\",\n  \"utformast\": \"utform\",\n  \"utforme\": \"utform\",\n  \"utformer\": \"utform\",\n  \"utformes\": \"utform\",\n  \"utformet\": \"utform\",\n  \"utforming\": \"utforming\",\n  \"utforminga\": \"utforming\",\n  \"utformingen\": \"utforming\",\n  \"utformingene\": \"utforming\",\n  \"utforminger\": \"utforming\",\n  \"utfyllande\": \"utfyll\",\n  \"utfyllende\": \"utfyll\",\n  \"utfyller\": \"utfyll\",\n  \"utfylles\": \"utfyll\",\n  \"utfylling\": \"utfylling\",\n  \"utfyllingene\": \"utfylling\",\n  \"utfyllinger\": \"utfylling\",\n  \"utfyllingsområde\": \"utfyllingsområd\",\n  \"utførande\": \"utfør\",\n  \"utførast\": \"utfør\",\n  \"utføre\": \"utfør\",\n  \"utførelse\": \"utfør\",\n  \"utfører\": \"utfør\",\n  \"utføres\": \"utfør\",\n  \"utføring\": \"utføring\",\n  \"utføringa\": \"utføring\",\n  \"utførleg\": \"utfør\",\n  \"utførlege\": \"utfør\",\n  \"utført\": \"utført\",\n  \"utgang\": \"utgang\",\n  \"utgangen\": \"utgang\",\n  \"utgangspunkt\": \"utgangspunkt\",\n  \"utgangspunktet\": \"utgangspunkt\",\n  \"utgard\": \"utgard\",\n  \"utgiften\": \"utgift\",\n  \"utgiftene\": \"utgift\",\n  \"utgifter\": \"utgift\",\n  \"utgiftsføres\": \"utgiftsfør\",\n  \"utgiftsgodtgjørelser\": \"utgiftsgodtgjør\",\n  \"utgiftsmønsteret\": \"utgiftsmønster\",\n  \"utgitt\": \"utgitt\",\n  \"utgivelse\": \"utgiv\",\n  \"utgjer\": \"utgj\",\n  \"utgjere\": \"utgjer\",\n  \"utgjeven\": \"utgjev\",\n  \"utgjorde\": \"utgjord\",\n  \"utgjort\": \"utgjort\",\n  \"utgjør\": \"utgjør\",\n  \"utgjøre\": \"utgjør\",\n  \"utgjøres\": \"utgjør\",\n  \"utgreiing\": \"utgreiing\",\n  \"utgreiinga\": \"utgreiing\",\n  \"utgreiingar\": \"utgreiing\",\n  \"utgå\": \"utgå\",\n  \"utgående\": \"utgå\",\n  \"utgår\": \"utgår\",\n  \"utgått\": \"utgått\",\n  \"utholing\": \"utholing\",\n  \"utilfredsstillende\": \"utilfredsstill\",\n  \"utilsiktede\": \"utilsikt\",\n  \"utilsiktet\": \"utilsikt\",\n  \"utjamningsmeldinga\": \"utjamningsmelding\",\n  \"utjevne\": \"utjevn\",\n  \"utjevner\": \"utjevn\",\n  \"utjevnes\": \"utjevn\",\n  \"utjevning\": \"utjevning\",\n  \"utjevningsbehovet\": \"utjevningsbehov\",\n  \"utkanten\": \"utkant\",\n  \"utkantområde\": \"utkantområd\",\n  \"utkast\": \"utk\",\n  \"utkasta\": \"utkast\",\n  \"utkastet\": \"utkast\",\n  \"utkastets\": \"utkast\",\n  \"utkasting\": \"utkasting\",\n  \"utkastingssaker\": \"utkastingssak\",\n  \"utkjøring\": \"utkjøring\",\n  \"utland\": \"utland\",\n  \"utlandet\": \"utland\",\n  \"utlegg\": \"utlegg\",\n  \"utlegget\": \"utlegg\",\n  \"utlegging\": \"utlegging\",\n  \"utleggspant\": \"utleggspant\",\n  \"utleggstakaren\": \"utleggstakar\",\n  \"utleid\": \"utleid\",\n  \"utleidd\": \"utleidd\",\n  \"utleidde\": \"utleidd\",\n  \"utleie\": \"utlei\",\n  \"utleieren\": \"utleier\",\n  \"utleiga\": \"utl\",\n  \"utleigar\": \"utl\",\n  \"utleigarar\": \"utleigar\",\n  \"utleigaren\": \"utleigar\",\n  \"utleigarselskap\": \"utleigarselskap\",\n  \"utleigd\": \"utleigd\",\n  \"utleige\": \"utl\",\n  \"utleigebustad\": \"utleigebustad\",\n  \"utleigebustadene\": \"utleigebustad\",\n  \"utleigebustader\": \"utleigebustad\",\n  \"utleigebygg\": \"utleigebygg\",\n  \"utleigeeigdom\": \"utleigeeigdom\",\n  \"utleigeeigedom\": \"utleigeeigedom\",\n  \"utleigeeigedommar\": \"utleigeeigedomm\",\n  \"utleigemodellar\": \"utleigemodell\",\n  \"utleigeobjekt\": \"utleigeobjekt\",\n  \"utleigeselskap\": \"utleigeselskap\",\n  \"utleigeverksemd\": \"utleigeverksemd\",\n  \"utleigeverksemda\": \"utleigeverksemd\",\n  \"utlikner\": \"utlikn\",\n  \"utlikninga\": \"utlikning\",\n  \"utlån\": \"utlån\",\n  \"utlåna\": \"utlån\",\n  \"utlånaren\": \"utlånar\",\n  \"utlånsordningane\": \"utlånsordning\",\n  \"utlånsverksemd\": \"utlånsverksemd\",\n  \"utløp\": \"utløp\",\n  \"utløpet\": \"utløp\",\n  \"utløse\": \"utløs\",\n  \"utløser\": \"utløs\",\n  \"utløses\": \"utløs\",\n  \"utløst\": \"utløst\",\n  \"utløyser\": \"utløys\",\n  \"utløysing\": \"utløysing\",\n  \"utløysinga\": \"utløysing\",\n  \"utløysingsgrunnen\": \"utløysingsgrunn\",\n  \"utløysingsregel\": \"utløysingsregel\",\n  \"utløysingssaka\": \"utløysingssak\",\n  \"utløysingssummen\": \"utløysingssumm\",\n  \"utløyst\": \"utløyst\",\n  \"utmarkande\": \"utmark\",\n  \"utmattet\": \"utmatt\",\n  \"utmeldelse\": \"utmeld\",\n  \"utmelding\": \"utmelding\",\n  \"utmeldinga\": \"utmelding\",\n  \"utmerket\": \"utmerk\",\n  \"utmåles\": \"utmål\",\n  \"utmålinga\": \"utmåling\",\n  \"utnytta\": \"utnytt\",\n  \"utnytte\": \"utnytt\",\n  \"utnyttelse\": \"utnytt\",\n  \"utnyttelsen\": \"utnytt\",\n  \"utnyttelsesgrad\": \"utnyttelsesgrad\",\n  \"utnyttes\": \"utnytt\",\n  \"utnytting\": \"utnytting\",\n  \"utnyttinga\": \"utnytting\",\n  \"utover\": \"utov\",\n  \"utpeiking\": \"utpeiking\",\n  \"utpeikte\": \"utpeikt\",\n  \"utpekt\": \"utpekt\",\n  \"utpenslinga\": \"utpensling\",\n  \"utporsjoneres\": \"utporsjoner\",\n  \"utprøving\": \"utprøving\",\n  \"utpå\": \"utpå\",\n  \"utrasing\": \"utrasing\",\n  \"utrede\": \"utr\",\n  \"utredes\": \"utr\",\n  \"utredet\": \"utred\",\n  \"utredning\": \"utredning\",\n  \"utredningen\": \"utredning\",\n  \"utredningens\": \"utredning\",\n  \"utredninger\": \"utredning\",\n  \"utredningsarbeid\": \"utredningsarbeid\",\n  \"utredningsarbeider\": \"utredningsarbeid\",\n  \"utredningsbehov\": \"utredningsbehov\",\n  \"utredningsinstruksen\": \"utredningsinstruks\",\n  \"utredningsplikten\": \"utredningsplikt\",\n  \"utredningsprosjekter\": \"utredningsprosjekt\",\n  \"utrenet\": \"utren\",\n  \"utro\": \"utro\",\n  \"utrolig\": \"utro\",\n  \"utrolige\": \"utro\",\n  \"utrustning\": \"utrustning\",\n  \"utrygg\": \"utrygg\",\n  \"utrygge\": \"utrygg\",\n  \"utrygt\": \"utrygt\",\n  \"utrådt\": \"utråd\",\n  \"utrøstelig\": \"utrøst\",\n  \"utsagn\": \"utsagn\",\n  \"utsatt\": \"utsatt\",\n  \"utseende\": \"utse\",\n  \"utseendet\": \"utseend\",\n  \"utsetjande\": \"utsetj\",\n  \"utsetje\": \"utsetj\",\n  \"utsett\": \"utsett\",\n  \"utsette\": \"utsett\",\n  \"utsettelse\": \"utsett\",\n  \"utsettes\": \"utsett\",\n  \"utsikt\": \"utsikt\",\n  \"utsiktene\": \"utsikt\",\n  \"utsikter\": \"utsikt\",\n  \"utskifting\": \"utskifting\",\n  \"utskiftingar\": \"utskifting\",\n  \"utskiljing\": \"utskiljing\",\n  \"utskillelse\": \"utskill\",\n  \"utskillelsen\": \"utskill\",\n  \"utskilles\": \"utskill\",\n  \"utskilling\": \"utskilling\",\n  \"utskilt\": \"utskilt\",\n  \"utskilte\": \"utskilt\",\n  \"utskiping\": \"utskiping\",\n  \"utskjemt\": \"utskjemt\",\n  \"utskrift\": \"utskrift\",\n  \"utskriving\": \"utskriving\",\n  \"utskårne\": \"utskårn\",\n  \"utslag\": \"utslag\",\n  \"utslaget\": \"utslag\",\n  \"utslagsgivende\": \"utslagsgiv\",\n  \"utslipp\": \"utslipp\",\n  \"utslippskostnader\": \"utslippskostnad\",\n  \"utslått\": \"utslått\",\n  \"utslåtte\": \"utslått\",\n  \"utspring\": \"utspring\",\n  \"utstede\": \"utst\",\n  \"utstedelse\": \"utsted\",\n  \"utsteder\": \"utsted\",\n  \"utstedes\": \"utst\",\n  \"utstedt\": \"utsted\",\n  \"utstengd\": \"utstengd\",\n  \"utstenging\": \"utstenging\",\n  \"utstenginga\": \"utstenging\",\n  \"utstoppete\": \"utstoppet\",\n  \"utstrakt\": \"utstrakt\",\n  \"utstrekning\": \"utstrekning\",\n  \"utstyr\": \"utstyr\",\n  \"utstyres\": \"utstyr\",\n  \"utstyret\": \"utstyr\",\n  \"utsyn\": \"utsyn\",\n  \"uttak\": \"uttak\",\n  \"uttala\": \"uttal\",\n  \"uttale\": \"uttal\",\n  \"uttalelse\": \"uttal\",\n  \"uttalelser\": \"uttal\",\n  \"uttaler\": \"uttal\",\n  \"uttalt\": \"uttalt\",\n  \"uttalte\": \"uttalt\",\n  \"uttrade\": \"uttrad\",\n  \"uttransport\": \"uttransport\",\n  \"uttreden\": \"uttred\",\n  \"uttrykk\": \"uttrykk\",\n  \"uttrykkelig\": \"uttrykk\",\n  \"uttrykkene\": \"uttrykk\",\n  \"uttrykker\": \"uttrykk\",\n  \"uttrykket\": \"uttrykk\",\n  \"uttrykt\": \"uttrykt\",\n  \"uttømmande\": \"uttømm\",\n  \"uttømmende\": \"uttømm\",\n  \"utval\": \"utval\",\n  \"utvala\": \"utval\",\n  \"utvalet\": \"utval\",\n  \"utvalets\": \"utval\",\n  \"utvalg\": \"utvalg\",\n  \"utvalget\": \"utvalg\",\n  \"utvalgets\": \"utvalg\",\n  \"utvalgsarbeid\": \"utvalgsarbeid\",\n  \"utvalgsarbeidet\": \"utvalgsarbeid\",\n  \"utvalgsundersøkelse\": \"utvalgsundersøk\",\n  \"utvalgte\": \"utvalgt\",\n  \"utvalsmedlemmene\": \"utvalsmedlemm\",\n  \"utvalsmedlemmer\": \"utvalsmedlemm\",\n  \"utvatna\": \"utvatn\",\n  \"utveg\": \"utveg\",\n  \"utvegen\": \"utveg\",\n  \"utvei\": \"utvei\",\n  \"utvendig\": \"utvend\",\n  \"utvida\": \"utvid\",\n  \"utvide\": \"utvid\",\n  \"utvidede\": \"utvid\",\n  \"utvidelse\": \"utvid\",\n  \"utvidelsen\": \"utvid\",\n  \"utvidelser\": \"utvid\",\n  \"utvidelsesmuligheter\": \"utvidelsesmu\",\n  \"utvidelsesplanene\": \"utvidelsesplan\",\n  \"utvidelsesplaner\": \"utvidelsesplan\",\n  \"utvidelsespotensiale\": \"utvidelsespotensial\",\n  \"utvidelsestrinnet\": \"utvidelsestrinn\",\n  \"utvider\": \"utvid\",\n  \"utvides\": \"utvid\",\n  \"utvidet\": \"utvid\",\n  \"utvidete\": \"utvidet\",\n  \"utvidingar\": \"utviding\",\n  \"utvikla\": \"utvikl\",\n  \"utvikle\": \"utvikl\",\n  \"utvikler\": \"utvikl\",\n  \"utvikles\": \"utvikl\",\n  \"utviklet\": \"utvikl\",\n  \"utvikling\": \"utvikling\",\n  \"utviklinga\": \"utvikling\",\n  \"utviklingen\": \"utvikling\",\n  \"utviklingpotensiale\": \"utviklingpotensial\",\n  \"utviklingsbaner\": \"utviklingsban\",\n  \"utviklingsforløp\": \"utviklingsforløp\",\n  \"utviklingsmuligheter\": \"utviklingsmu\",\n  \"utviklingsområder\": \"utviklingsområd\",\n  \"utviklingsplan\": \"utviklingsplan\",\n  \"utviklingsplanene\": \"utviklingsplan\",\n  \"utviklingsplaner\": \"utviklingsplan\",\n  \"utviklingsprosjekt\": \"utviklingsprosjekt\",\n  \"utviklingstendens\": \"utviklingstend\",\n  \"utviklingstendenser\": \"utviklingstendens\",\n  \"utviklingstrekk\": \"utviklingstrekk\",\n  \"utvise\": \"utvis\",\n  \"utviska\": \"utvisk\",\n  \"utydelig\": \"utyd\",\n  \"utyskene\": \"utysk\",\n  \"utysket\": \"utysk\",\n  \"utålmodig\": \"utålmod\",\n  \"utøvande\": \"utøv\",\n  \"utøvast\": \"utøv\",\n  \"utøve\": \"utøv\",\n  \"utøvelse\": \"utøv\",\n  \"utøvelsen\": \"utøv\",\n  \"utøver\": \"utøv\",\n  \"utøves\": \"utøv\",\n  \"utøvinga\": \"utøving\",\n  \"uvand\": \"uvand\",\n  \"uvanleg\": \"uvan\",\n  \"uvanlege\": \"uvan\",\n  \"uvanlig\": \"uvan\",\n  \"uvant\": \"uvant\",\n  \"uvedkomande\": \"uvedkom\",\n  \"uvenns\": \"uvenn\",\n  \"uventa\": \"uvent\",\n  \"uventede\": \"uvent\",\n  \"uventet\": \"uvent\",\n  \"uver\": \"uver\",\n  \"uvesentleg\": \"uvesent\",\n  \"uvisse\": \"uviss\",\n  \"uvisshet\": \"uviss\",\n  \"uværet\": \"uvær\",\n  \"v\": \"v\",\n  \"vader\": \"vad\",\n  \"vagger\": \"vagg\",\n  \"vagt\": \"vagt\",\n  \"vakker\": \"vakk\",\n  \"vakkert\": \"vakker\",\n  \"vakler\": \"vakl\",\n  \"vakre\": \"vakr\",\n  \"vakrere\": \"vakrer\",\n  \"vakreste\": \"vakrest\",\n  \"vakse\": \"vaks\",\n  \"vakt\": \"vakt\",\n  \"vakter\": \"vakt\",\n  \"vaktmann\": \"vaktmann\",\n  \"vaktmeistertenester\": \"vaktmeistertenest\",\n  \"vaktmenn\": \"vaktmenn\",\n  \"vaktmester\": \"vaktmest\",\n  \"vaktpost\": \"vaktpost\",\n  \"vaktsomme\": \"vaktsomm\",\n  \"vakttårnet\": \"vakttårn\",\n  \"val\": \"val\",\n  \"vald\": \"vald\",\n  \"valda\": \"vald\",\n  \"valdar\": \"vald\",\n  \"valde\": \"vald\",\n  \"vale\": \"val\",\n  \"valet\": \"val\",\n  \"valfridom\": \"valfridom\",\n  \"valfridommen\": \"valfridomm\",\n  \"valg\": \"valg\",\n  \"valgene\": \"valg\",\n  \"valget\": \"valg\",\n  \"valgfrihet\": \"valgfri\",\n  \"valgfritt\": \"valgfritt\",\n  \"valgmulighetene\": \"valgmu\",\n  \"valgmuligheter\": \"valgmu\",\n  \"valgrett\": \"valgrett\",\n  \"valgt\": \"valgt\",\n  \"valgte\": \"valgt\",\n  \"valhall\": \"valhall\",\n  \"valkomite\": \"valkomit\",\n  \"valkomiteen\": \"valkomite\",\n  \"valkyrjen\": \"valkyrj\",\n  \"valkyrjene\": \"valkyrj\",\n  \"valkyrjer\": \"valkyrj\",\n  \"valmåten\": \"valmåt\",\n  \"valperioden\": \"valperiod\",\n  \"valrett\": \"valrett\",\n  \"valretten\": \"valrett\",\n  \"valt\": \"valt\",\n  \"vanaheim\": \"vanaheim\",\n  \"vandalene\": \"vandal\",\n  \"vande\": \"vand\",\n  \"vandre\": \"vandr\",\n  \"vandrende\": \"vandr\",\n  \"vandrer\": \"vandr\",\n  \"vandret\": \"vandr\",\n  \"vandringene\": \"vandring\",\n  \"vandringsmann\": \"vandringsmann\",\n  \"vandringsmannen\": \"vandringsmann\",\n  \"vandringsstaven\": \"vandringsstav\",\n  \"vanene\": \"van\",\n  \"vanenes\": \"van\",\n  \"vaner\": \"van\",\n  \"vaneslekt\": \"vaneslekt\",\n  \"vanleg\": \"van\",\n  \"vanlege\": \"van\",\n  \"vanlegvis\": \"vanlegvis\",\n  \"vanlig\": \"van\",\n  \"vanlige\": \"van\",\n  \"vanligste\": \"vanligst\",\n  \"vanligvis\": \"vanligvis\",\n  \"vann\": \"vann\",\n  \"vannet\": \"vann\",\n  \"vannkanten\": \"vannkant\",\n  \"vannkvalitet\": \"vannkvalit\",\n  \"vanns\": \"vann\",\n  \"vanntroll\": \"vanntroll\",\n  \"vannveger\": \"vannveg\",\n  \"vanskane\": \"vansk\",\n  \"vanskar\": \"vansk\",\n  \"vanske\": \"vansk\",\n  \"vanskeleg\": \"vansk\",\n  \"vanskelegare\": \"vanskelegar\",\n  \"vanskelege\": \"vansk\",\n  \"vanskelegstilte\": \"vanskelegstilt\",\n  \"vanskelig\": \"vansk\",\n  \"vanskelige\": \"vansk\",\n  \"vanskeligere\": \"vanskeliger\",\n  \"vanskeliggjøre\": \"vanskeliggjør\",\n  \"vanskeligheter\": \"vansk\",\n  \"vanskeligstilte\": \"vanskeligstilt\",\n  \"vansker\": \"vansk\",\n  \"vant\": \"vant\",\n  \"vanta\": \"vant\",\n  \"vantar\": \"vant\",\n  \"vante\": \"vant\",\n  \"vantro\": \"vantro\",\n  \"vanvidd\": \"vanvidd\",\n  \"vanviddet\": \"vanvidd\",\n  \"var\": \"var\",\n  \"varafolk\": \"varafolk\",\n  \"varaleiaren\": \"varaleiar\",\n  \"varamedlem\": \"varamedlem\",\n  \"varamedlemmen\": \"varamedlemm\",\n  \"varamedlemmer\": \"varamedlemm\",\n  \"varandra\": \"varandr\",\n  \"varanger\": \"varang\",\n  \"varangerfjorden\": \"varangerfjord\",\n  \"vararevisor\": \"vararevisor\",\n  \"vararevisorar\": \"vararevisor\",\n  \"vare\": \"var\",\n  \"varedistribusjon\": \"varedistribusjon\",\n  \"vareeier\": \"vareei\",\n  \"vareeiere\": \"vareeier\",\n  \"vareeierene\": \"vareeier\",\n  \"vareeierens\": \"vareeier\",\n  \"vareeierne\": \"vareeiern\",\n  \"vareeiernes\": \"vareeiern\",\n  \"vareeiers\": \"vareei\",\n  \"vareflyt\": \"vareflyt\",\n  \"varegrupper\": \"varegrupp\",\n  \"varehandel\": \"varehandel\",\n  \"varehandelen\": \"varehandel\",\n  \"varehandelskjedene\": \"varehandelskjed\",\n  \"vareinnsats\": \"vareinnsat\",\n  \"varemedlemmer\": \"varemedlemm\",\n  \"varen\": \"var\",\n  \"varene\": \"var\",\n  \"varens\": \"var\",\n  \"vareomsetning\": \"vareomsetning\",\n  \"vareproduksjon\": \"vareproduksjon\",\n  \"vareproduksjonen\": \"vareproduksjon\",\n  \"vareprodusenter\": \"vareprodusent\",\n  \"vareprofil\": \"vareprofil\",\n  \"varer\": \"var\",\n  \"vareslag\": \"vareslag\",\n  \"varestrømmene\": \"varestrømm\",\n  \"varetransport\": \"varetransport\",\n  \"varetypene\": \"varetyp\",\n  \"varetyper\": \"varetyp\",\n  \"vareutval\": \"vareutval\",\n  \"vareverdi\": \"vareverdi\",\n  \"vareverdiene\": \"vareverdi\",\n  \"varg\": \"varg\",\n  \"variabel\": \"variabel\",\n  \"variablene\": \"variabl\",\n  \"varians\": \"varian\",\n  \"variant\": \"variant\",\n  \"variantar\": \"variant\",\n  \"varianten\": \"variant\",\n  \"variasjon\": \"variasjon\",\n  \"variasjonane\": \"variasjon\",\n  \"variasjonene\": \"variasjon\",\n  \"variasjoner\": \"variasjon\",\n  \"variasjonsbreidd\": \"variasjonsbreidd\",\n  \"varierande\": \"varier\",\n  \"variere\": \"varier\",\n  \"varierende\": \"varier\",\n  \"varierer\": \"varier\",\n  \"variert\": \"varier\",\n  \"varierte\": \"varier\",\n  \"varig\": \"var\",\n  \"varige\": \"var\",\n  \"varighet\": \"var\",\n  \"varm\": \"varm\",\n  \"varme\": \"varm\",\n  \"varmen\": \"varm\",\n  \"varmer\": \"varm\",\n  \"varmesentralar\": \"varmesentral\",\n  \"varmeste\": \"varmest\",\n  \"varmt\": \"varmt\",\n  \"varsam\": \"varsam\",\n  \"varsel\": \"varsel\",\n  \"varselet\": \"varsel\",\n  \"varsla\": \"varsl\",\n  \"varslast\": \"varsl\",\n  \"varsle\": \"varsl\",\n  \"varslet\": \"varsl\",\n  \"varsling\": \"varsling\",\n  \"vart\": \"vart\",\n  \"varte\": \"vart\",\n  \"vask\": \"vask\",\n  \"vasker\": \"vask\",\n  \"vaskeri\": \"vaskeri\",\n  \"vaskes\": \"vask\",\n  \"vasket\": \"vask\",\n  \"vasser\": \"vass\",\n  \"vasst\": \"vasst\",\n  \"vassum\": \"vassum\",\n  \"vatn\": \"vatn\",\n  \"ve\": \"ve\",\n  \"ved\": \"ved\",\n  \"veddemål\": \"veddemål\",\n  \"veddemålet\": \"veddemål\",\n  \"vedder\": \"vedd\",\n  \"vederlag\": \"vederlag\",\n  \"vederlaget\": \"vederlag\",\n  \"vederlags\": \"vederlag\",\n  \"vederlagssatsar\": \"vederlagssats\",\n  \"vedgår\": \"vedgår\",\n  \"vedkjem\": \"vedkjem\",\n  \"vedkomande\": \"vedkom\",\n  \"vedkommende\": \"vedkomm\",\n  \"vedkommendes\": \"vedkomm\",\n  \"vedlagte\": \"vedlagt\",\n  \"vedlegg\": \"vedlegg\",\n  \"vedlegga\": \"vedlegg\",\n  \"vedlegget\": \"vedlegg\",\n  \"vedleggets\": \"vedlegg\",\n  \"vedlikehald\": \"vedlikehald\",\n  \"vedlikehalden\": \"vedlikehald\",\n  \"vedlikehaldet\": \"vedlikehald\",\n  \"vedlikehalds\": \"vedlikehald\",\n  \"vedlikehaldsarbeid\": \"vedlikehaldsarbeid\",\n  \"vedlikehaldsmanglar\": \"vedlikehaldsmangl\",\n  \"vedlikehaldsplikt\": \"vedlikehaldsplikt\",\n  \"vedlikehaldsplikta\": \"vedlikehaldsplikt\",\n  \"vedlikehaldspliktene\": \"vedlikehaldsplikt\",\n  \"vedlikehaldsreglane\": \"vedlikehaldsregl\",\n  \"vedlikehold\": \"vedlikehold\",\n  \"vedrørende\": \"vedrør\",\n  \"vedrører\": \"vedrør\",\n  \"vedskive\": \"vedskiv\",\n  \"vedta\": \"vedt\",\n  \"vedtagelse\": \"vedtag\",\n  \"vedtagelsen\": \"vedtag\",\n  \"vedtak\": \"vedtak\",\n  \"vedtaka\": \"vedtak\",\n  \"vedtakast\": \"vedtak\",\n  \"vedtaket\": \"vedtak\",\n  \"vedtaking\": \"vedtaking\",\n  \"vedtakinga\": \"vedtaking\",\n  \"vedtaksført\": \"vedtaksført\",\n  \"vedtaksmessig\": \"vedtaksmess\",\n  \"vedtaksmyndighet\": \"vedtaksmynd\",\n  \"vedtaksprosedyre\": \"vedtaksprosedyr\",\n  \"vedtaksprosedyren\": \"vedtaksprosedyr\",\n  \"vedtaksprotokoll\": \"vedtaksprotokoll\",\n  \"vedtar\": \"vedt\",\n  \"vedtas\": \"vedt\",\n  \"vedtatt\": \"vedtatt\",\n  \"vedtatte\": \"vedtatt\",\n  \"vedtek\": \"vedtek\",\n  \"vedteke\": \"vedtek\",\n  \"vedteken\": \"vedtek\",\n  \"vedtekne\": \"vedtekn\",\n  \"vedtekstfesta\": \"vedtekstfest\",\n  \"vedtektene\": \"vedtekt\",\n  \"vedtektenes\": \"vedtekt\",\n  \"vedtekter\": \"vedtekt\",\n  \"vedtektfeste\": \"vedtektfest\",\n  \"vedtektsendring\": \"vedtektsendring\",\n  \"vedtektsendringane\": \"vedtektsendring\",\n  \"vedtektsendringar\": \"vedtektsendring\",\n  \"vedtektsfesta\": \"vedtektsfest\",\n  \"vedtektsfestar\": \"vedtektsfest\",\n  \"vedtektsfestast\": \"vedtektsfest\",\n  \"vedtektsfeste\": \"vedtektsfest\",\n  \"vedtektsfestede\": \"vedtektsfest\",\n  \"vedtektsfesting\": \"vedtektsfesting\",\n  \"vedtektsfleirtal\": \"vedtektsfleirtal\",\n  \"vedtektsføresegn\": \"vedtektsføresegn\",\n  \"vedtektsføresegna\": \"vedtektsføresegn\",\n  \"vedtektsføresegnene\": \"vedtektsføresegn\",\n  \"vedtektsføresegner\": \"vedtektsføresegn\",\n  \"vedtektsklausul\": \"vedtektsklausul\",\n  \"vedtektsklausular\": \"vedtektsklausul\",\n  \"vedtektsveto\": \"vedtektsveto\",\n  \"vedtektsvetoet\": \"vedtektsveto\",\n  \"vedtok\": \"vedtok\",\n  \"veene\": \"veen\",\n  \"veg\": \"veg\",\n  \"veganlegg\": \"veganlegg\",\n  \"vegar\": \"veg\",\n  \"vegast\": \"veg\",\n  \"vegdirektoratet\": \"vegdirektorat\",\n  \"vegen\": \"veg\",\n  \"vegene\": \"veg\",\n  \"veger\": \"veg\",\n  \"vegforbindelse\": \"vegforbind\",\n  \"vegforbindelsen\": \"vegforbind\",\n  \"vegforbindelsene\": \"vegforbind\",\n  \"vegformål\": \"vegformål\",\n  \"vegframføring\": \"vegframføring\",\n  \"vegføringer\": \"vegføring\",\n  \"vegg\": \"vegg\",\n  \"veggen\": \"vegg\",\n  \"veggene\": \"vegg\",\n  \"vegger\": \"vegg\",\n  \"veggkonstruksjonar\": \"veggkonstruksjon\",\n  \"vegkontoret\": \"vegkontor\",\n  \"vegkorridorer\": \"vegkorridor\",\n  \"vegkostnader\": \"vegkostnad\",\n  \"vegløsning\": \"vegløsning\",\n  \"vegløsningene\": \"vegløsning\",\n  \"vegløsninger\": \"vegløsning\",\n  \"vegne\": \"vegn\",\n  \"vegner\": \"vegn\",\n  \"vegnett\": \"vegnett\",\n  \"vegnettet\": \"vegnett\",\n  \"vegnettets\": \"vegnett\",\n  \"vegnormal\": \"vegnormal\",\n  \"vegpakke\": \"vegpakk\",\n  \"vegplaner\": \"vegplan\",\n  \"vegruten\": \"vegrut\",\n  \"vegsalt\": \"vegsalt\",\n  \"vegsiden\": \"vegsid\",\n  \"vegsituasjonen\": \"vegsituasjon\",\n  \"vegslitasje\": \"vegslitasj\",\n  \"vegstrekningen\": \"vegstrekning\",\n  \"vegstrekninger\": \"vegstrekning\",\n  \"vegsystem\": \"vegsystem\",\n  \"vegsystemene\": \"vegsystem\",\n  \"vegsystemer\": \"vegsystem\",\n  \"vegtam\": \"vegtam\",\n  \"vegtilknytning\": \"vegtilknytning\",\n  \"vegtilknytningen\": \"vegtilknytning\",\n  \"vegtiltak\": \"vegtiltak\",\n  \"vegtrafikk\": \"vegtrafikk\",\n  \"vegtrafikken\": \"vegtrafikk\",\n  \"vegtrafikkplan\": \"vegtrafikkplan\",\n  \"vegtransport\": \"vegtransport\",\n  \"vegtransporten\": \"vegtransport\",\n  \"vegtransportkostnadene\": \"vegtransportkostnad\",\n  \"vegtraseen\": \"vegtrase\",\n  \"vegvesen\": \"vegves\",\n  \"vegvesens\": \"vegves\",\n  \"vei\": \"vei\",\n  \"veie\": \"veie\",\n  \"veien\": \"veien\",\n  \"veier\": \"veier\",\n  \"veierud\": \"veierud\",\n  \"veies\": \"veies\",\n  \"veiet\": \"veiet\",\n  \"veik\": \"veik\",\n  \"veikare\": \"veikar\",\n  \"veike\": \"veik\",\n  \"veikro\": \"veikro\",\n  \"veiledende\": \"veiled\",\n  \"veiledning\": \"veiledning\",\n  \"veit\": \"veit\",\n  \"veiver\": \"veiv\",\n  \"veka\": \"vek\",\n  \"veke\": \"vek\",\n  \"veker\": \"vek\",\n  \"vekers\": \"vek\",\n  \"vekes\": \"vek\",\n  \"veket\": \"vek\",\n  \"vekk\": \"vekk\",\n  \"vekke\": \"vekk\",\n  \"vekker\": \"vekk\",\n  \"vekkes\": \"vekk\",\n  \"vekket\": \"vekk\",\n  \"vekse\": \"veks\",\n  \"vekselflak\": \"vekselflak\",\n  \"vekslande\": \"veksl\",\n  \"vekst\": \"vekst\",\n  \"vekstanslag\": \"vekstanslag\",\n  \"veksten\": \"vekst\",\n  \"vekstforutsetningene\": \"vekstforutsetning\",\n  \"vekstkraftig\": \"vekstkraft\",\n  \"vekstområde\": \"vekstområd\",\n  \"vekstpotensial\": \"vekstpotensial\",\n  \"vekstpotensiale\": \"vekstpotensial\",\n  \"vekstpotensialet\": \"vekstpotensial\",\n  \"vekstrate\": \"vekstrat\",\n  \"vekstratene\": \"vekstrat\",\n  \"vekstrater\": \"vekstrat\",\n  \"veksttakten\": \"veksttakt\",\n  \"veksttendenser\": \"veksttendens\",\n  \"veksttrend\": \"veksttrend\",\n  \"vekt\": \"vekt\",\n  \"vekta\": \"vekt\",\n  \"vektede\": \"vekt\",\n  \"vekten\": \"vekt\",\n  \"vektenhet\": \"vekten\",\n  \"vekter\": \"vekt\",\n  \"vektet\": \"vekt\",\n  \"vekting\": \"vekting\",\n  \"vektlagt\": \"vektlagt\",\n  \"vektlegge\": \"vektlegg\",\n  \"vektlegges\": \"vektlegg\",\n  \"vektlegging\": \"vektlegging\",\n  \"vektleggingen\": \"vektlegging\",\n  \"vel\": \"vel\",\n  \"velbegrunnede\": \"velbegrunn\",\n  \"velberget\": \"velberg\",\n  \"veldig\": \"veld\",\n  \"veldige\": \"veld\",\n  \"velegnet\": \"velegn\",\n  \"veletablerte\": \"veletabler\",\n  \"velferd\": \"velferd\",\n  \"velferdsgode\": \"velferdsgod\",\n  \"velferdsmeldingen\": \"velferdsmelding\",\n  \"velferdsmeldingens\": \"velferdsmelding\",\n  \"velferdsordninger\": \"velferdsordning\",\n  \"velferdstilbod\": \"velferdstilbod\",\n  \"velferdstiltak\": \"velferdstiltak\",\n  \"velforeining\": \"velforeining\",\n  \"velfunderte\": \"velfunder\",\n  \"velg\": \"velg\",\n  \"velge\": \"velg\",\n  \"velger\": \"velg\",\n  \"velges\": \"velg\",\n  \"velgjerd\": \"velgjerd\",\n  \"veljast\": \"velj\",\n  \"velje\": \"velj\",\n  \"velkjend\": \"velkjend\",\n  \"velkommen\": \"velkomm\",\n  \"velluktende\": \"vellukt\",\n  \"vellykkete\": \"vellykket\",\n  \"velsigner\": \"velsign\",\n  \"velskapt\": \"velskapt\",\n  \"velstand\": \"velstand\",\n  \"velta\": \"velt\",\n  \"veltalende\": \"veltal\",\n  \"veltalenhet\": \"veltalen\",\n  \"veltast\": \"velt\",\n  \"velte\": \"velt\",\n  \"velter\": \"velt\",\n  \"veltet\": \"velt\",\n  \"velutformede\": \"velutform\",\n  \"vende\": \"vend\",\n  \"vender\": \"vend\",\n  \"vendes\": \"vend\",\n  \"vendt\": \"vend\",\n  \"vendte\": \"vend\",\n  \"vene\": \"ven\",\n  \"venn\": \"venn\",\n  \"vennen\": \"venn\",\n  \"vennene\": \"venn\",\n  \"venner\": \"venn\",\n  \"vennet\": \"venn\",\n  \"vennlig\": \"venn\",\n  \"vennlige\": \"venn\",\n  \"vennskap\": \"vennskap\",\n  \"vennskapet\": \"vennskap\",\n  \"venstre\": \"venstr\",\n  \"venstreparti\": \"venstreparti\",\n  \"vent\": \"vent\",\n  \"vente\": \"vent\",\n  \"venteleg\": \"vent\",\n  \"ventelister\": \"ventelist\",\n  \"ventende\": \"vent\",\n  \"venter\": \"vent\",\n  \"ventes\": \"vent\",\n  \"ventet\": \"vent\",\n  \"ventetid\": \"ventetid\",\n  \"ventilar\": \"ventil\",\n  \"ver\": \"ver\",\n  \"vera\": \"ver\",\n  \"verande\": \"ver\",\n  \"verd\": \"verd\",\n  \"verda\": \"verd\",\n  \"verdande\": \"verd\",\n  \"verden\": \"verd\",\n  \"verdener\": \"verden\",\n  \"verdens\": \"verd\",\n  \"verdensbanken\": \"verdensbank\",\n  \"verdensbankens\": \"verdensbank\",\n  \"verdenshavet\": \"verdenshav\",\n  \"verdenstreet\": \"verdenstre\",\n  \"verdi\": \"verdi\",\n  \"verdiane\": \"verdi\",\n  \"verdiansettelse\": \"verdiansett\",\n  \"verdiar\": \"verdi\",\n  \"verdien\": \"verdi\",\n  \"verdiene\": \"verdi\",\n  \"verdier\": \"verdi\",\n  \"verdifall\": \"verdifall\",\n  \"verdifastsettelser\": \"verdifastsett\",\n  \"verdiforholda\": \"verdiforhold\",\n  \"verdiforholdet\": \"verdiforhold\",\n  \"verdifulle\": \"verdifull\",\n  \"verdifullt\": \"verdifullt\",\n  \"verdig\": \"verd\",\n  \"verdighet\": \"verd\",\n  \"verdikjeden\": \"verdikjed\",\n  \"verdikjedene\": \"verdikjed\",\n  \"verdikjeder\": \"verdikjed\",\n  \"verdilaus\": \"verdilaus\",\n  \"verdipapir\": \"verdipapir\",\n  \"verdipapirene\": \"verdipapir\",\n  \"verdipapirer\": \"verdipapir\",\n  \"verdipapirfond\": \"verdipapirfond\",\n  \"verdipapirfondenes\": \"verdipapirfond\",\n  \"verdipapirfondloven\": \"verdipapirfond\",\n  \"verdipapirfondsforvaltning\": \"verdipapirfondsforvaltning\",\n  \"verdipapirfondsforvaltningen\": \"verdipapirfondsforvaltning\",\n  \"verdipapirfondsloven\": \"verdipapirfond\",\n  \"verdipapirhandel\": \"verdipapirhandel\",\n  \"verdipapirsentralen\": \"verdipapirsentral\",\n  \"verdireduksjon\": \"verdireduksjon\",\n  \"verdireduksjonen\": \"verdireduksjon\",\n  \"verdiskaping\": \"verdiskaping\",\n  \"verdiskapingen\": \"verdiskaping\",\n  \"verdiskapning\": \"verdiskapning\",\n  \"verdistiging\": \"verdistiging\",\n  \"verdistigning\": \"verdistigning\",\n  \"verditilhøva\": \"verditilhøv\",\n  \"verdiutvikling\": \"verdiutvikling\",\n  \"verdiutviklingen\": \"verdiutvikling\",\n  \"verdiøkning\": \"verdiøkning\",\n  \"verdiøkninger\": \"verdiøkning\",\n  \"verdsetjing\": \"verdsetjing\",\n  \"verdskrigen\": \"verdskr\",\n  \"verdt\": \"verd\",\n  \"vere\": \"ver\",\n  \"verge\": \"verg\",\n  \"vergeløs\": \"vergeløs\",\n  \"veritas\": \"verit\",\n  \"verk\": \"verk\",\n  \"verka\": \"verk\",\n  \"verkar\": \"verk\",\n  \"verke\": \"verk\",\n  \"verkeleg\": \"verk\",\n  \"verkemiddel\": \"verkemiddel\",\n  \"verken\": \"verk\",\n  \"verkeområde\": \"verkeområd\",\n  \"verkeområdet\": \"verkeområd\",\n  \"verknad\": \"verknad\",\n  \"verknadane\": \"verknad\",\n  \"verknaden\": \"verknad\",\n  \"verknadene\": \"verknad\",\n  \"verknader\": \"verknad\",\n  \"verks\": \"verk\",\n  \"verksamhet\": \"verksam\",\n  \"verksemd\": \"verksemd\",\n  \"verksemda\": \"verksemd\",\n  \"verksemdsområde\": \"verksemdsområd\",\n  \"verksemdstypar\": \"verksemdstyp\",\n  \"verktøy\": \"verktøy\",\n  \"vern\": \"vern\",\n  \"verna\": \"vern\",\n  \"vernast\": \"vern\",\n  \"verne\": \"vern\",\n  \"vernende\": \"vern\",\n  \"verner\": \"vern\",\n  \"vernereglar\": \"verneregl\",\n  \"vernes\": \"vern\",\n  \"vernet\": \"vern\",\n  \"vernetiltak\": \"vernetiltak\",\n  \"verneverdier\": \"verneverdi\",\n  \"verre\": \"verr\",\n  \"versjonen\": \"versjon\",\n  \"verst\": \"verst\",\n  \"verste\": \"verst\",\n  \"vert\": \"vert\",\n  \"vertsfolket\": \"vertsfolk\",\n  \"vertskap\": \"vertskap\",\n  \"vertskommunen\": \"vertskommun\",\n  \"vertskommuner\": \"vertskommun\",\n  \"vertslandet\": \"vertsland\",\n  \"verv\": \"verv\",\n  \"vervet\": \"verv\",\n  \"vesen\": \"ves\",\n  \"vesenene\": \"vesen\",\n  \"vesener\": \"vesen\",\n  \"vesentleg\": \"vesent\",\n  \"vesentlege\": \"vesent\",\n  \"vesentlig\": \"vesent\",\n  \"vesentlige\": \"vesent\",\n  \"vesentligste\": \"vesentligst\",\n  \"vesle\": \"vesl\",\n  \"vest\": \"vest\",\n  \"vesterelven\": \"vesterelv\",\n  \"vestfjorden\": \"vestfjord\",\n  \"vestfold\": \"vestfold\",\n  \"vestfoldbanen\": \"vestfoldban\",\n  \"vesthavn\": \"vesthavn\",\n  \"vestlige\": \"vest\",\n  \"vestover\": \"vestov\",\n  \"vestre\": \"vestr\",\n  \"vestsiden\": \"vestsid\",\n  \"vet\": \"vet\",\n  \"veto\": \"veto\",\n  \"vetoet\": \"veto\",\n  \"vett\": \"vett\",\n  \"vettene\": \"vett\",\n  \"vetter\": \"vett\",\n  \"vettet\": \"vett\",\n  \"vev\": \"vev\",\n  \"vevsider\": \"vevsid\",\n  \"vi\": \"vi\",\n  \"via\": \"via\",\n  \"vibeke\": \"vibek\",\n  \"victorin\": \"victorin\",\n  \"vid\": \"vid\",\n  \"vidar\": \"vid\",\n  \"vidare\": \"vidar\",\n  \"vidareførast\": \"vidarefør\",\n  \"vidareføre\": \"vidarefør\",\n  \"vidareføring\": \"vidareføring\",\n  \"vidareført\": \"vidareført\",\n  \"vidaresal\": \"vidaresal\",\n  \"vidareutvikling\": \"vidareutvikling\",\n  \"vidder\": \"vidd\",\n  \"vide\": \"vid\",\n  \"videokamera\": \"videokamer\",\n  \"videre\": \"vider\",\n  \"viderebefordres\": \"viderebefordr\",\n  \"viderebefordring\": \"viderebefordring\",\n  \"videredistribusjon\": \"videredistribusjon\",\n  \"videredistribusjonen\": \"videredistribusjon\",\n  \"videreføre\": \"viderefør\",\n  \"viderefører\": \"viderefør\",\n  \"videreføres\": \"viderefør\",\n  \"videreføring\": \"videreføring\",\n  \"videreført\": \"videreført\",\n  \"videretransport\": \"videretransport\",\n  \"videreutvikling\": \"videreutvikling\",\n  \"videreutviklingen\": \"videreutvikling\",\n  \"vidgrunna\": \"vidgrunn\",\n  \"vidi\": \"vidi\",\n  \"vidt\": \"vidt\",\n  \"vidtgående\": \"vidtgå\",\n  \"vies\": \"vies\",\n  \"viet\": \"viet\",\n  \"vifte\": \"vift\",\n  \"vifter\": \"vift\",\n  \"vigrid\": \"vigrid\",\n  \"vii\": \"vii\",\n  \"viii\": \"viii\",\n  \"vik\": \"vik\",\n  \"vike\": \"vik\",\n  \"viker\": \"vik\",\n  \"vikinga\": \"viking\",\n  \"viktig\": \"vikt\",\n  \"viktigare\": \"viktigar\",\n  \"viktigast\": \"vikt\",\n  \"viktigaste\": \"viktigast\",\n  \"viktige\": \"vikt\",\n  \"viktigere\": \"viktiger\",\n  \"viktighet\": \"vikt\",\n  \"viktigheten\": \"vikt\",\n  \"viktigst\": \"viktigst\",\n  \"viktigste\": \"viktigst\",\n  \"vil\": \"vil\",\n  \"vilja\": \"vilj\",\n  \"vilje\": \"vilj\",\n  \"viljeløse\": \"viljeløs\",\n  \"viljug\": \"viljug\",\n  \"viljuge\": \"viljug\",\n  \"vilken\": \"vilk\",\n  \"vilkår\": \"vilkår\",\n  \"vilkåra\": \"vilkår\",\n  \"vilkårene\": \"vilkår\",\n  \"vilkåret\": \"vilkår\",\n  \"vilkårleg\": \"vilkår\",\n  \"vilkårlege\": \"vilkår\",\n  \"vill\": \"vill\",\n  \"ville\": \"vill\",\n  \"villere\": \"viller\",\n  \"villeste\": \"villest\",\n  \"villhester\": \"villhest\",\n  \"villig\": \"vil\",\n  \"villkor\": \"villkor\",\n  \"villmann\": \"villmann\",\n  \"villmannens\": \"villmann\",\n  \"villrede\": \"villr\",\n  \"vilt\": \"vilt\",\n  \"vimsete\": \"vimset\",\n  \"vimur\": \"vimur\",\n  \"vin\": \"vin\",\n  \"vind\": \"vind\",\n  \"vindauge\": \"vindaug\",\n  \"vinden\": \"vind\",\n  \"vinder\": \"vind\",\n  \"vindforholdene\": \"vindforhold\",\n  \"vindkast\": \"vindk\",\n  \"vindpust\": \"vindpust\",\n  \"vinduene\": \"vindu\",\n  \"vingene\": \"ving\",\n  \"vinger\": \"ving\",\n  \"vingeslag\": \"vingeslag\",\n  \"vingeslagene\": \"vingeslag\",\n  \"vinglete\": \"vinglet\",\n  \"vinilene\": \"vinil\",\n  \"vinilenes\": \"vinil\",\n  \"vinker\": \"vink\",\n  \"vinket\": \"vink\",\n  \"vinkling\": \"vinkling\",\n  \"vinn\": \"vinn\",\n  \"vinnast\": \"vinn\",\n  \"vinne\": \"vinn\",\n  \"vinner\": \"vinn\",\n  \"vinninger\": \"vinning\",\n  \"vinst\": \"vinst\",\n  \"vinstar\": \"vinst\",\n  \"vinsten\": \"vinst\",\n  \"vinter\": \"vint\",\n  \"vinterbro\": \"vinterbro\",\n  \"vinterdag\": \"vinterdag\",\n  \"vintere\": \"vinter\",\n  \"vinteren\": \"vinter\",\n  \"vintre\": \"vintr\",\n  \"vippetangen\": \"vippetang\",\n  \"vippetangens\": \"vippetang\",\n  \"virke\": \"virk\",\n  \"virkedag\": \"virkedag\",\n  \"virkedøgn\": \"virkedøgn\",\n  \"virkelig\": \"virk\",\n  \"virkelige\": \"virk\",\n  \"virkeligheten\": \"virk\",\n  \"virkemiddel\": \"virkemiddel\",\n  \"virkemiddelbruk\": \"virkemiddelbruk\",\n  \"virkemiddelet\": \"virkemiddel\",\n  \"virkemidlene\": \"virkemidl\",\n  \"virkemidler\": \"virkemidl\",\n  \"virkeområde\": \"virkeområd\",\n  \"virker\": \"virk\",\n  \"virket\": \"virk\",\n  \"virkning\": \"virkning\",\n  \"virkningen\": \"virkning\",\n  \"virkningene\": \"virkning\",\n  \"virkninger\": \"virkning\",\n  \"virksom\": \"virksom\",\n  \"virksomhet\": \"virksom\",\n  \"virksomheten\": \"virksom\",\n  \"virksomhetene\": \"virksom\",\n  \"virksomhetens\": \"virksom\",\n  \"virksomheter\": \"virksom\",\n  \"virksomhetsbegrep\": \"virksomhetsbegrep\",\n  \"virksomhetsbegrepet\": \"virksomhetsbegrep\",\n  \"virksomhetsoverdragelse\": \"virksomhetsoverdrag\",\n  \"virksomhetsoverdragelsen\": \"virksomhetsoverdrag\",\n  \"virksomhetsoverdragelser\": \"virksomhetsoverdrag\",\n  \"virksomhetsutøvelsen\": \"virksomhetsutøv\",\n  \"virvlende\": \"virvl\",\n  \"vis\": \"vis\",\n  \"visast\": \"vis\",\n  \"visdom\": \"visdom\",\n  \"visdommens\": \"visdomm\",\n  \"visdomskrefter\": \"visdomskreft\",\n  \"vise\": \"vis\",\n  \"viser\": \"vis\",\n  \"visere\": \"viser\",\n  \"vises\": \"vis\",\n  \"viset\": \"vis\",\n  \"visjoner\": \"visjon\",\n  \"vislie\": \"visli\",\n  \"vismenn\": \"vismenn\",\n  \"visne\": \"visn\",\n  \"viss\": \"viss\",\n  \"vissa\": \"viss\",\n  \"visse\": \"viss\",\n  \"visst\": \"visst\",\n  \"visste\": \"visst\",\n  \"vist\": \"vist\",\n  \"viste\": \"vist\",\n  \"visuelle\": \"visuell\",\n  \"visuelt\": \"visuelt\",\n  \"vit\": \"vit\",\n  \"vital\": \"vital\",\n  \"vitalisere\": \"vitaliser\",\n  \"vite\": \"vit\",\n  \"vitne\": \"vitn\",\n  \"vogn\": \"vogn\",\n  \"vognen\": \"vogn\",\n  \"vognene\": \"vogn\",\n  \"vognskifteområde\": \"vognskifteområd\",\n  \"vogntog\": \"vogntog\",\n  \"voks\": \"voks\",\n  \"vokse\": \"voks\",\n  \"voksen\": \"voks\",\n  \"vokser\": \"voks\",\n  \"voksne\": \"voksn\",\n  \"vokst\": \"vokst\",\n  \"vokste\": \"vokst\",\n  \"vokte\": \"vokt\",\n  \"vokter\": \"vokt\",\n  \"vold\": \"vold\",\n  \"voldgift\": \"voldgift\",\n  \"voldsfjorden\": \"voldsfjord\",\n  \"voldsom\": \"voldsom\",\n  \"voldsomme\": \"voldsomm\",\n  \"voldsomt\": \"voldsomt\",\n  \"voldtas\": \"vold\",\n  \"volen\": \"vol\",\n  \"volker\": \"volk\",\n  \"vollen\": \"voll\",\n  \"vollsfjorden\": \"vollsfjord\",\n  \"volsung\": \"volsung\",\n  \"volumer\": \"volum\",\n  \"volumet\": \"volum\",\n  \"volummessig\": \"volummess\",\n  \"volumutvikling\": \"volumutvikling\",\n  \"volumvekst\": \"volumvekst\",\n  \"volve\": \"volv\",\n  \"volven\": \"volv\",\n  \"von\": \"von\",\n  \"vond\": \"vond\",\n  \"vonde\": \"vond\",\n  \"vondt\": \"vond\",\n  \"voner\": \"von\",\n  \"vore\": \"vor\",\n  \"vorte\": \"vort\",\n  \"vorten\": \"vort\",\n  \"vorter\": \"vort\",\n  \"vortne\": \"vortn\",\n  \"voss\": \"voss\",\n  \"voteringsforslag\": \"voteringsforslag\",\n  \"vott\": \"vott\",\n  \"votten\": \"vott\",\n  \"votter\": \"vott\",\n  \"vrang\": \"vrang\",\n  \"vrangt\": \"vrangt\",\n  \"vred\": \"vred\",\n  \"vrenge\": \"vreng\",\n  \"vrenger\": \"vreng\",\n  \"vri\": \"vri\",\n  \"vridd\": \"vridd\",\n  \"vridde\": \"vridd\",\n  \"vridende\": \"vrid\",\n  \"vridning\": \"vridning\",\n  \"vrikke\": \"vrikk\",\n  \"vrikker\": \"vrikk\",\n  \"vrinsker\": \"vrinsk\",\n  \"vrir\": \"vrir\",\n  \"vris\": \"vris\",\n  \"vrister\": \"vrist\",\n  \"vuggen\": \"vugg\",\n  \"vugger\": \"vugg\",\n  \"vunnet\": \"vunn\",\n  \"vurderast\": \"vurder\",\n  \"vurdere\": \"vurder\",\n  \"vurderer\": \"vurder\",\n  \"vurderes\": \"vurder\",\n  \"vurdering\": \"vurdering\",\n  \"vurderinga\": \"vurdering\",\n  \"vurderingar\": \"vurdering\",\n  \"vurderingen\": \"vurdering\",\n  \"vurderingene\": \"vurdering\",\n  \"vurderinger\": \"vurdering\",\n  \"vurdert\": \"vurder\",\n  \"vurderte\": \"vurder\",\n  \"vvo\": \"vvo\",\n  \"våge\": \"våg\",\n  \"våger\": \"våg\",\n  \"vågestykket\": \"vågestykk\",\n  \"våget\": \"våg\",\n  \"våken\": \"våk\",\n  \"våkne\": \"våkn\",\n  \"våkner\": \"våkn\",\n  \"våknet\": \"våkn\",\n  \"våle\": \"vål\",\n  \"våpen\": \"våp\",\n  \"våpenlek\": \"våpenlek\",\n  \"våpenleken\": \"våpenlek\",\n  \"våpenløs\": \"våpenløs\",\n  \"våpnene\": \"våpn\",\n  \"vår\": \"vår\",\n  \"våre\": \"vår\",\n  \"våren\": \"vår\",\n  \"våres\": \"vår\",\n  \"vårgresset\": \"vårgress\",\n  \"vårt\": \"vårt\",\n  \"våt\": \"våt\",\n  \"våtbulk\": \"våtbulk\",\n  \"våte\": \"våt\",\n  \"vått\": \"vått\",\n  \"vægne\": \"vægn\",\n  \"vækerøkrysset\": \"vækerøkryss\",\n  \"væpnet\": \"væpn\",\n  \"vær\": \"vær\",\n  \"være\": \"vær\",\n  \"værende\": \"vær\",\n  \"været\": \"vær\",\n  \"værforhold\": \"værforhold\",\n  \"værforholdene\": \"værforhold\",\n  \"værhår\": \"værhår\",\n  \"værs\": \"vær\",\n  \"vært\": \"vært\",\n  \"væske\": \"væsk\",\n  \"væsker\": \"væsk\",\n  \"wealth\": \"wealth\",\n  \"welche\": \"welch\",\n  \"wenche\": \"wench\",\n  \"wessel\": \"wessel\",\n  \"wielockx\": \"wielockx\",\n  \"willy\": \"willy\",\n  \"wirtschaft\": \"wirtschaft\",\n  \"wirtschaftsgenossenschaften\": \"wirtschaftsgenossenschaft\",\n  \"wohnungsbaugenossenschaften\": \"wohnungsbaugenossenschaft\",\n  \"wohnungseigentum\": \"wohnungseigentum\",\n  \"wohnungsgenossenschaftsmitglieder\": \"wohnungsgenossenschaftsmitglied\",\n  \"wohnungsnutzergenossenschaften\": \"wohnungsnutzergenossenschaft\",\n  \"wohnungsunternehmen\": \"wohnungsunternehm\",\n  \"wolff\": \"wolff\",\n  \"wto\": \"wto\",\n  \"xviii\": \"xviii\",\n  \"xx\": \"xx\",\n  \"ydmyket\": \"ydmyk\",\n  \"ydt\": \"ydt\",\n  \"ygg\": \"ygg\",\n  \"yggdrasil\": \"yggdrasil\",\n  \"yggdrasils\": \"yggdrasil\",\n  \"yh\": \"yh\",\n  \"yin\": \"yin\",\n  \"ymer\": \"ymer\",\n  \"ymers\": \"ymer\",\n  \"ymse\": \"yms\",\n  \"yngre\": \"yngr\",\n  \"yngste\": \"yngst\",\n  \"york\": \"york\",\n  \"yr\": \"yr\",\n  \"yre\": \"yre\",\n  \"yrke\": \"yrk\",\n  \"yrkedagen\": \"yrkedag\",\n  \"yrkesaktiv\": \"yrkesaktiv\",\n  \"yrkesaktive\": \"yrkesaktiv\",\n  \"yrkesaktivitet\": \"yrkesaktivit\",\n  \"yrkesaktiviteten\": \"yrkesaktivitet\",\n  \"yrkesaktivt\": \"yrkesaktiv\",\n  \"yrkesbaserte\": \"yrkesbaser\",\n  \"yrkesdeltagelse\": \"yrkesdeltag\",\n  \"yrkesdeltakelse\": \"yrkesdeltak\",\n  \"yrkesdeltaking\": \"yrkesdeltaking\",\n  \"yrkesdøgn\": \"yrkesdøgn\",\n  \"yrkesdøgntrafikk\": \"yrkesdøgntrafikk\",\n  \"yrkesgrupper\": \"yrkesgrupp\",\n  \"yrkeskarrieren\": \"yrkeskarrier\",\n  \"yrkesmessige\": \"yrkesmess\",\n  \"yrkesorganisasjonenes\": \"yrkesorganisasjon\",\n  \"yrkesskadeforsikring\": \"yrkesskadeforsikring\",\n  \"yrkesutøvar\": \"yrkesutøv\",\n  \"yrkesutøvarar\": \"yrkesutøvar\",\n  \"yte\": \"yte\",\n  \"ytelse\": \"ytels\",\n  \"ytelsen\": \"ytels\",\n  \"ytelsene\": \"ytels\",\n  \"ytelsenes\": \"ytels\",\n  \"ytelsens\": \"ytels\",\n  \"ytelser\": \"ytels\",\n  \"ytelses\": \"ytels\",\n  \"ytelsesbasert\": \"ytelsesbaser\",\n  \"ytelsesbaserte\": \"ytelsesbaser\",\n  \"ytelsesberettigede\": \"ytelsesberett\",\n  \"ytelsesnivå\": \"ytelsesnivå\",\n  \"ytelsesnivåene\": \"ytelsesnivå\",\n  \"ytelsesnivået\": \"ytelsesnivå\",\n  \"ytelsesoppbygging\": \"ytelsesoppbygging\",\n  \"ytelsesordning\": \"ytelsesordning\",\n  \"ytelsesordninger\": \"ytelsesordning\",\n  \"ytelsesperioden\": \"ytelsesperiod\",\n  \"ytelsesperiodens\": \"ytelsesperiod\",\n  \"ytelsesplan\": \"ytelsesplan\",\n  \"ytelsesplanen\": \"ytelsesplan\",\n  \"ytelsessammensetningen\": \"ytelsessammensetning\",\n  \"yter\": \"yter\",\n  \"ytes\": \"ytes\",\n  \"yting\": \"yting\",\n  \"ytinga\": \"yting\",\n  \"ytingar\": \"yting\",\n  \"ytingsbaserte\": \"ytingsbaser\",\n  \"ytre\": \"ytr\",\n  \"ytste\": \"ytst\",\n  \"ytt\": \"ytt\",\n  \"ytte\": \"ytt\",\n  \"ytterdør\": \"ytterdør\",\n  \"ytterdører\": \"ytterdør\",\n  \"ytterkant\": \"ytterkant\",\n  \"ytterligere\": \"ytterliger\",\n  \"ytterliggere\": \"ytterligger\",\n  \"ytterst\": \"ytterst\",\n  \"ytterste\": \"ytterst\",\n  \"zapffe\": \"zapff\",\n  \"zealand\": \"zealand\",\n  \"zeebrugge\": \"zeebrugg\",\n  \"zu\": \"zu\",\n  \"å\": \"å\",\n  \"åe\": \"åe\",\n  \"åge\": \"åge\",\n  \"åker\": \"åker\",\n  \"åkeren\": \"åker\",\n  \"åkre\": \"åkr\",\n  \"ål\": \"ål\",\n  \"åle\": \"åle\",\n  \"åleine\": \"ålein\",\n  \"ålesund\": \"ålesund\",\n  \"åmsvartne\": \"åmsvartn\",\n  \"åndalsnes\": \"åndalsn\",\n  \"ånde\": \"ånd\",\n  \"åpen\": \"åpen\",\n  \"åpenbare\": \"åpenbar\",\n  \"åpenbart\": \"åpenbart\",\n  \"åpenlys\": \"åpenly\",\n  \"åpent\": \"åpent\",\n  \"åpne\": \"åpn\",\n  \"åpner\": \"åpn\",\n  \"åpnes\": \"åpn\",\n  \"åpnet\": \"åpn\",\n  \"åpning\": \"åpning\",\n  \"år\": \"år\",\n  \"åra\": \"åra\",\n  \"årene\": \"åren\",\n  \"årer\": \"årer\",\n  \"året\": \"året\",\n  \"åretak\": \"åretak\",\n  \"årets\": \"året\",\n  \"årevis\": \"årevis\",\n  \"århundre\": \"århundr\",\n  \"århundret\": \"århundr\",\n  \"årleg\": \"årleg\",\n  \"årlege\": \"årleg\",\n  \"årlig\": \"årl\",\n  \"årlige\": \"årl\",\n  \"årrekkje\": \"årrekkj\",\n  \"årringen\": \"årring\",\n  \"årringer\": \"årring\",\n  \"års\": \"års\",\n  \"årsak\": \"årsak\",\n  \"årsaka\": \"årsak\",\n  \"årsaken\": \"årsak\",\n  \"årsaker\": \"årsak\",\n  \"årsbalanse\": \"årsbalans\",\n  \"årsbasis\": \"årsbasis\",\n  \"årsberetning\": \"årsberetning\",\n  \"årsmelding\": \"årsmelding\",\n  \"årsmeldinga\": \"årsmelding\",\n  \"årsoppgjer\": \"årsoppgj\",\n  \"årsoppgjeret\": \"årsoppgjer\",\n  \"årsoppgjør\": \"årsoppgjør\",\n  \"årsoppgjøret\": \"årsoppgjør\",\n  \"årsoppgjørsforskriften\": \"årsoppgjørsforskrift\",\n  \"årsoppgjørskapittelet\": \"årsoppgjørskapittel\",\n  \"årspengane\": \"årspeng\",\n  \"årspengar\": \"årspeng\",\n  \"årsperiode\": \"årsperiod\",\n  \"årspremier\": \"årspremi\",\n  \"årsregnskapet\": \"årsregnskap\",\n  \"årsregnskapsreglene\": \"årsregnskapsregl\",\n  \"årsrekneskap\": \"årsrekneskap\",\n  \"årsrekneskapen\": \"årsrekneskap\",\n  \"årsresultatet\": \"årsresultat\",\n  \"årsskifte\": \"årsskift\",\n  \"årsskiftet\": \"årsskift\",\n  \"årum\": \"årum\",\n  \"årvold\": \"årvold\",\n  \"årvoldkrysset\": \"årvoldkryss\",\n  \"åsa\": \"åsa\",\n  \"åsene\": \"åsen\",\n  \"åser\": \"åser\",\n  \"åsgard\": \"åsgard\",\n  \"åsgards\": \"åsgard\",\n  \"åshild\": \"åshild\",\n  \"åsmund\": \"åsmund\",\n  \"åt\": \"åt\",\n  \"åtferd\": \"åtferd\",\n  \"åtgjerd\": \"åtgjerd\",\n  \"ått\": \"ått\",\n  \"åttande\": \"ått\",\n  \"åtte\": \"ått\",\n  \"åttefotede\": \"åttefot\",\n  \"åttefotete\": \"åttefotet\",\n  \"åttende\": \"ått\",\n  \"åtvaring\": \"åtvaring\",\n  \"ægir\": \"ægir\",\n  \"ægirs\": \"ægir\",\n  \"ærbødighet\": \"ærbød\",\n  \"ære\": \"ære\",\n  \"ærefullt\": \"ærefullt\",\n  \"æren\": \"æren\",\n  \"ærend\": \"ærend\",\n  \"ærendet\": \"ærend\",\n  \"ærlegdom\": \"ærlegdom\",\n  \"ærlig\": \"ærl\",\n  \"æsene\": \"æsen\",\n  \"æsenes\": \"æsen\",\n  \"æser\": \"æser\",\n  \"ætt\": \"ætt\",\n  \"øde\": \"øde\",\n  \"ødelagt\": \"ødelagt\",\n  \"ødelagte\": \"ødelagt\",\n  \"ødelegge\": \"ødelegg\",\n  \"ødemarken\": \"ødemark\",\n  \"ødemarker\": \"ødemark\",\n  \"øke\": \"øke\",\n  \"økende\": \"økend\",\n  \"øker\": \"øker\",\n  \"økes\": \"økes\",\n  \"økning\": \"økning\",\n  \"økningen\": \"økning\",\n  \"økningene\": \"økning\",\n  \"økninger\": \"økning\",\n  \"økonomi\": \"økonomi\",\n  \"økonomien\": \"økonomi\",\n  \"økonomiene\": \"økonomi\",\n  \"økonomiplan\": \"økonomiplan\",\n  \"økonomisk\": \"økonomisk\",\n  \"økonomiske\": \"økonomisk\",\n  \"øks\": \"øks\",\n  \"økser\": \"øks\",\n  \"økt\": \"økt\",\n  \"økte\": \"økt\",\n  \"øl\": \"øl\",\n  \"øldunkene\": \"øldunk\",\n  \"ølet\": \"ølet\",\n  \"ølkruset\": \"ølkrus\",\n  \"ønske\": \"ønsk\",\n  \"ønskede\": \"ønsk\",\n  \"ønskelig\": \"ønsk\",\n  \"ønskelige\": \"ønsk\",\n  \"ønskeligheten\": \"ønsk\",\n  \"ønsker\": \"ønsk\",\n  \"ønskes\": \"ønsk\",\n  \"ønsket\": \"ønsk\",\n  \"ønskje\": \"ønskj\",\n  \"ønskjeleg\": \"ønskj\",\n  \"ønskjer\": \"ønskj\",\n  \"ønskt\": \"ønskt\",\n  \"ønskte\": \"ønskt\",\n  \"ør\": \"ør\",\n  \"øra\": \"øra\",\n  \"øre\": \"øre\",\n  \"ørefik\": \"ørefik\",\n  \"øremerkede\": \"øremerk\",\n  \"øremerket\": \"øremerk\",\n  \"øremerking\": \"øremerking\",\n  \"ørene\": \"øren\",\n  \"ører\": \"ører\",\n  \"øresundforbindelsen\": \"øresundforbind\",\n  \"øresundsforbindelsen\": \"øresundsforbind\",\n  \"øret\": \"øret\",\n  \"ørje\": \"ørj\",\n  \"ørn\": \"ørn\",\n  \"ørneham\": \"ørneham\",\n  \"ørnehammen\": \"ørnehamm\",\n  \"ørnen\": \"ørn\",\n  \"ørner\": \"ørn\",\n  \"ørske\": \"ørsk\",\n  \"øse\": \"øse\",\n  \"øsekar\": \"øsek\",\n  \"øser\": \"øser\",\n  \"øst\": \"øst\",\n  \"østfold\": \"østfold\",\n  \"østfoldhavnene\": \"østfoldhavn\",\n  \"østfoldhavner\": \"østfoldhavn\",\n  \"østfra\": \"østfr\",\n  \"østhavn\": \"østhavn\",\n  \"østhavna\": \"østhavn\",\n  \"østland\": \"østland\",\n  \"østlandet\": \"østland\",\n  \"østlandsfylkene\": \"østlandsfylk\",\n  \"østlandshavnene\": \"østlandshavn\",\n  \"østlandsområder\": \"østlandsområd\",\n  \"østlandsområdet\": \"østlandsområd\",\n  \"østlandsregionen\": \"østlandsregion\",\n  \"østlandsregionens\": \"østlandsregion\",\n  \"østlandssamarbeidet\": \"østlandssamarbeid\",\n  \"østlig\": \"øst\",\n  \"østlige\": \"øst\",\n  \"østmoe\": \"østmo\",\n  \"østover\": \"østov\",\n  \"østre\": \"østr\",\n  \"østside\": \"østsid\",\n  \"østsiden\": \"østsid\",\n  \"østvendte\": \"østvend\",\n  \"øve\": \"øve\",\n  \"øver\": \"øver\",\n  \"øverste\": \"øverst\",\n  \"øvre\": \"øvr\",\n  \"øvrig\": \"øvr\",\n  \"øvrige\": \"øvr\",\n  \"øvste\": \"øvst\",\n  \"øy\": \"øy\",\n  \"øya\": \"øya\",\n  \"øydelagde\": \"øydelagd\",\n  \"øydelagt\": \"øydelagt\",\n  \"øydelegging\": \"øydelegging\",\n  \"øydelegginga\": \"øydelegging\",\n  \"øye\": \"øye\",\n  \"øyeblikk\": \"øyeblikk\",\n  \"øyeblikkelig\": \"øyeblikk\",\n  \"øyeblikket\": \"øyeblikk\",\n  \"øyelokkene\": \"øyelokk\",\n  \"øyelokket\": \"øyelokk\",\n  \"øyenvipper\": \"øyenvipp\",\n  \"øyet\": \"øyet\",\n  \"øyne\": \"øyn\",\n  \"øynene\": \"øyn\",\n  \"øystein\": \"øystein\"\n}"
  },
  {
    "path": "spec/test_data/snowball_pt.json",
    "content": "{\n  \"a\": \"a\",\n  \"á\": \"á\",\n  \"à\": \"à\",\n  \"ã\": \"ã\",\n  \"aacho\": \"aach\",\n  \"aacute\": \"aacut\",\n  \"abacaxi\": \"abacax\",\n  \"abade\": \"abad\",\n  \"abaeté\": \"abaet\",\n  \"abafar\": \"abaf\",\n  \"abafaram\": \"abaf\",\n  \"abaixa\": \"abaix\",\n  \"abaixe\": \"abaix\",\n  \"abaixei\": \"abaix\",\n  \"abaixo\": \"abaix\",\n  \"abaixou\": \"abaix\",\n  \"abalada\": \"abal\",\n  \"abalado\": \"abal\",\n  \"abalaram\": \"abal\",\n  \"abalos\": \"abal\",\n  \"abalou\": \"abal\",\n  \"abalroado\": \"abalro\",\n  \"abandona\": \"abandon\",\n  \"abandoná\": \"abandon\",\n  \"abandonada\": \"abandon\",\n  \"abandonadas\": \"abandon\",\n  \"abandonado\": \"abandon\",\n  \"abandonados\": \"abandon\",\n  \"abandonam\": \"abandon\",\n  \"abandonando\": \"abandon\",\n  \"abandonar\": \"abandon\",\n  \"abandonara\": \"abandon\",\n  \"abandonaram\": \"abandon\",\n  \"abandonasse\": \"abandon\",\n  \"abandono\": \"abandon\",\n  \"abandonou\": \"abandon\",\n  \"abarrotado\": \"abarrot\",\n  \"abarrotados\": \"abarrot\",\n  \"abarrotou\": \"abarrot\",\n  \"abastada\": \"abast\",\n  \"abastado\": \"abast\",\n  \"abastados\": \"abast\",\n  \"abastecem\": \"abastec\",\n  \"abastecer\": \"abastec\",\n  \"abastecida\": \"abastec\",\n  \"abastecimento\": \"abastec\",\n  \"abata\": \"abat\",\n  \"abate\": \"abat\",\n  \"abatedouro\": \"abatedour\",\n  \"abatem\": \"abat\",\n  \"abatendo\": \"abat\",\n  \"abater\": \"abat\",\n  \"abateram\": \"abat\",\n  \"abates\": \"abat\",\n  \"abateu\": \"abat\",\n  \"abatia\": \"abat\",\n  \"abatidas\": \"abat\",\n  \"abatido\": \"abat\",\n  \"abatidos\": \"abat\",\n  \"abaulado\": \"abaul\",\n  \"abbé\": \"abbé\",\n  \"abbey\": \"abbey\",\n  \"abc\": \"abc\",\n  \"abcesso\": \"abcess\",\n  \"abdel\": \"abdel\",\n  \"abdela\": \"abdel\",\n  \"abdias\": \"abdi\",\n  \"abdicação\": \"abdic\",\n  \"abdicar\": \"abdic\",\n  \"abdomen\": \"abdomen\",\n  \"abdômen\": \"abdômen\",\n  \"abdominais\": \"abdomin\",\n  \"abdominal\": \"abdominal\",\n  \"abecafé\": \"abecaf\",\n  \"abel\": \"abel\",\n  \"abençoadas\": \"abenço\",\n  \"aberrações\": \"aberr\",\n  \"aberta\": \"abert\",\n  \"abertamente\": \"abert\",\n  \"abertas\": \"abert\",\n  \"aberto\": \"abert\",\n  \"abertos\": \"abert\",\n  \"abertura\": \"abertur\",\n  \"abic\": \"abic\",\n  \"abicair\": \"abica\",\n  \"abichequer\": \"abichequ\",\n  \"abifarma\": \"abifarm\",\n  \"abih\": \"abih\",\n  \"abilio\": \"abili\",\n  \"abílio\": \"abíli\",\n  \"abismo\": \"abism\",\n  \"abissais\": \"abiss\",\n  \"abissal\": \"abissal\",\n  \"abnegação\": \"abneg\",\n  \"abocanhar\": \"abocanh\",\n  \"abolição\": \"aboliçã\",\n  \"abolicionistas\": \"abolicion\",\n  \"abolido\": \"abol\",\n  \"abolir\": \"abol\",\n  \"abomina\": \"abomin\",\n  \"abominação\": \"abomin\",\n  \"abomináveis\": \"abomin\",\n  \"abominável\": \"abomin\",\n  \"abono\": \"abon\",\n  \"aborda\": \"abord\",\n  \"abordada\": \"abord\",\n  \"abordadas\": \"abord\",\n  \"abordado\": \"abord\",\n  \"abordagem\": \"abordag\",\n  \"abordagens\": \"abordagens\",\n  \"abordando\": \"abord\",\n  \"abordar\": \"abord\",\n  \"abordava\": \"abord\",\n  \"abordavam\": \"abord\",\n  \"aborígines\": \"aborígin\",\n  \"aborrece\": \"aborrec\",\n  \"aborrecidíssima\": \"aborrecidíssim\",\n  \"aborrecido\": \"aborrec\",\n  \"aborrecidos\": \"aborrec\",\n  \"aborrecimentos\": \"aborrec\",\n  \"aborto\": \"abort\",\n  \"abortos\": \"abort\",\n  \"abouch\": \"abouch\",\n  \"abra\": \"abra\",\n  \"abraão\": \"abraã\",\n  \"abraçada\": \"abrac\",\n  \"abracadabra\": \"abracadabr\",\n  \"abraçando\": \"abrac\",\n  \"abraçaram\": \"abrac\",\n  \"abraço\": \"abrac\",\n  \"abraços\": \"abrac\",\n  \"abrafe\": \"abraf\",\n  \"abrahão\": \"abrahã\",\n  \"abram\": \"abram\",\n  \"abrandar\": \"abrand\",\n  \"abrange\": \"abrang\",\n  \"abrangência\": \"abrangent\",\n  \"abrangendo\": \"abrang\",\n  \"abrangente\": \"abrangent\",\n  \"abranger\": \"abrang\",\n  \"abrasador\": \"abras\",\n  \"abrasivo\": \"abras\",\n  \"abre\": \"abre\",\n  \"abrem\": \"abrem\",\n  \"abresi\": \"abres\",\n  \"abreu\": \"abreu\",\n  \"abreviação\": \"abrevi\",\n  \"abreviado\": \"abrevi\",\n  \"abri\": \"abri\",\n  \"abriga\": \"abrig\",\n  \"abrigada\": \"abrig\",\n  \"abrigam\": \"abrig\",\n  \"abrigar\": \"abrig\",\n  \"abrigaram\": \"abrig\",\n  \"abrigarem\": \"abrig\",\n  \"abrigaria\": \"abrig\",\n  \"abrigo\": \"abrig\",\n  \"abrigou\": \"abrig\",\n  \"abril\": \"abril\",\n  \"abrimos\": \"abrim\",\n  \"abrindo\": \"abrind\",\n  \"abrinq\": \"abrinq\",\n  \"abrir\": \"abrir\",\n  \"abrirá\": \"abrir\",\n  \"abriram\": \"abrir\",\n  \"abrirão\": \"abrirã\",\n  \"abrisse\": \"abriss\",\n  \"abriu\": \"abriu\",\n  \"abrolhos\": \"abrolh\",\n  \"abrucio\": \"abruci\",\n  \"abruptamente\": \"abrupt\",\n  \"absoluta\": \"absolut\",\n  \"absolutamente\": \"absolut\",\n  \"absolutas\": \"absolut\",\n  \"absoluto\": \"absolut\",\n  \"absolutos\": \"absolut\",\n  \"absolve\": \"absolv\",\n  \"absolvem\": \"absolv\",\n  \"absolver\": \"absolv\",\n  \"absolveram\": \"absolv\",\n  \"absolverem\": \"absolv\",\n  \"absolveu\": \"absolv\",\n  \"absolvido\": \"absolv\",\n  \"absorção\": \"absorçã\",\n  \"absorvam\": \"absorv\",\n  \"absorve\": \"absorv\",\n  \"absorvente\": \"absorvent\",\n  \"absorventes\": \"absorvent\",\n  \"absorver\": \"absorv\",\n  \"absorviam\": \"absorv\",\n  \"absorvida\": \"absorv\",\n  \"abstem\": \"abstem\",\n  \"abstêmio\": \"abstêmi\",\n  \"abstenção\": \"abstençã\",\n  \"absteve\": \"abstev\",\n  \"abstinência\": \"abstinent\",\n  \"abstratamente\": \"abstrat\",\n  \"abstratas\": \"abstrat\",\n  \"absurda\": \"absurd\",\n  \"absurdamente\": \"absurd\",\n  \"absurdas\": \"absurd\",\n  \"absurdo\": \"absurd\",\n  \"absurdos\": \"absurd\",\n  \"abuelita\": \"abuelit\",\n  \"abujamra\": \"abujamr\",\n  \"abundância\": \"abund\",\n  \"abundante\": \"abund\",\n  \"abusando\": \"abus\",\n  \"abusar\": \"abus\",\n  \"abuse\": \"abus\",\n  \"abuso\": \"abus\",\n  \"abusos\": \"abus\",\n  \"abusou\": \"abus\",\n  \"acaba\": \"acab\",\n  \"acabadas\": \"acab\",\n  \"acabado\": \"acab\",\n  \"acabados\": \"acab\",\n  \"acabam\": \"acab\",\n  \"acabamento\": \"acab\",\n  \"acabamos\": \"acab\",\n  \"acabando\": \"acab\",\n  \"acabar\": \"acab\",\n  \"acabara\": \"acab\",\n  \"acabaram\": \"acab\",\n  \"acabaria\": \"acab\",\n  \"acabasse\": \"acab\",\n  \"acabassem\": \"acab\",\n  \"acabava\": \"acab\",\n  \"acabavam\": \"acab\",\n  \"acabe\": \"acab\",\n  \"acabei\": \"acab\",\n  \"acabemos\": \"acab\",\n  \"acabo\": \"acab\",\n  \"acabou\": \"acab\",\n  \"acabrunham\": \"acabrunh\",\n  \"academia\": \"academ\",\n  \"academias\": \"academ\",\n  \"acadêmica\": \"acadêm\",\n  \"acadêmicas\": \"acadêm\",\n  \"acadêmico\": \"acadêm\",\n  \"acadêmicos\": \"acadêm\",\n  \"acahuazú\": \"acahuazú\",\n  \"acalantado\": \"acalant\",\n  \"acalmar\": \"acalm\",\n  \"acampada\": \"acamp\",\n  \"acampamento\": \"acamp\",\n  \"acampamentos\": \"acamp\",\n  \"acampamos\": \"acamp\",\n  \"acampando\": \"acamp\",\n  \"acampem\": \"acamp\",\n  \"acanhadas\": \"acanh\",\n  \"acanhado\": \"acanh\",\n  \"ação\": \"açã\",\n  \"acareação\": \"acar\",\n  \"acari\": \"acar\",\n  \"acarpetada\": \"acarpet\",\n  \"acarreta\": \"acarret\",\n  \"acarretar\": \"acarret\",\n  \"acasalam\": \"acasal\",\n  \"acaso\": \"acas\",\n  \"acatada\": \"acat\",\n  \"acatará\": \"acat\",\n  \"acatou\": \"acat\",\n  \"accelerati\": \"accelerat\",\n  \"accor\": \"accor\",\n  \"ace\": \"ace\",\n  \"aceita\": \"aceit\",\n  \"aceitá\": \"aceit\",\n  \"aceitação\": \"aceit\",\n  \"aceitam\": \"aceit\",\n  \"aceitamos\": \"aceit\",\n  \"aceitando\": \"aceit\",\n  \"aceitar\": \"aceit\",\n  \"aceitaram\": \"aceit\",\n  \"aceitarão\": \"aceit\",\n  \"aceitaria\": \"aceit\",\n  \"aceitariam\": \"aceit\",\n  \"aceitava\": \"aceit\",\n  \"aceitável\": \"aceit\",\n  \"aceitei\": \"aceit\",\n  \"aceitem\": \"aceit\",\n  \"aceito\": \"aceit\",\n  \"aceitos\": \"aceit\",\n  \"aceitou\": \"aceit\",\n  \"acelera\": \"acel\",\n  \"aceleração\": \"aceler\",\n  \"acelerada\": \"aceler\",\n  \"acelerado\": \"aceler\",\n  \"acelerador\": \"aceler\",\n  \"aceleramento\": \"aceler\",\n  \"acelerar\": \"aceler\",\n  \"aceleraram\": \"aceler\",\n  \"acelerava\": \"aceler\",\n  \"acelerou\": \"aceler\",\n  \"acena\": \"acen\",\n  \"acenam\": \"acen\",\n  \"acenar\": \"acen\",\n  \"acendê\": \"acend\",\n  \"acender\": \"acend\",\n  \"acenderam\": \"acend\",\n  \"acendeu\": \"acend\",\n  \"acendiam\": \"acend\",\n  \"acendo\": \"acend\",\n  \"acentuada\": \"acentu\",\n  \"acentuadas\": \"acentu\",\n  \"acentuado\": \"acentu\",\n  \"acentuados\": \"acentu\",\n  \"acentuem\": \"acentu\",\n  \"acerca\": \"acerc\",\n  \"acertado\": \"acert\",\n  \"acertados\": \"acert\",\n  \"acertando\": \"acert\",\n  \"acertar\": \"acert\",\n  \"acertaram\": \"acert\",\n  \"acertasse\": \"acert\",\n  \"acertava\": \"acert\",\n  \"acerto\": \"acert\",\n  \"acertou\": \"acert\",\n  \"acesa\": \"aces\",\n  \"acessadas\": \"acess\",\n  \"acessado\": \"acess\",\n  \"acessar\": \"acess\",\n  \"acessível\": \"acess\",\n  \"acesso\": \"acess\",\n  \"acessórias\": \"acessór\",\n  \"acessório\": \"acessóri\",\n  \"acessórios\": \"acessóri\",\n  \"acessos\": \"acess\",\n  \"acetona\": \"aceton\",\n  \"acha\": \"acha\",\n  \"achá\": \"achá\",\n  \"achacando\": \"achac\",\n  \"achado\": \"achad\",\n  \"achados\": \"achad\",\n  \"acham\": \"acham\",\n  \"achamos\": \"acham\",\n  \"achando\": \"achand\",\n  \"achaque\": \"achaqu\",\n  \"achar\": \"achar\",\n  \"achará\": \"achar\",\n  \"acharam\": \"achar\",\n  \"acharem\": \"achar\",\n  \"achasse\": \"achass\",\n  \"achava\": \"achav\",\n  \"achavam\": \"achav\",\n  \"ache\": \"ache\",\n  \"aché\": \"aché\",\n  \"achei\": \"ache\",\n  \"achismo\": \"achism\",\n  \"acho\": \"acho\",\n  \"achou\": \"achou\",\n  \"ácidas\": \"ácid\",\n  \"acidentado\": \"acident\",\n  \"acidentados\": \"acident\",\n  \"acidental\": \"acidental\",\n  \"acidente\": \"acident\",\n  \"acidentes\": \"acident\",\n  \"acidez\": \"acidez\",\n  \"ácido\": \"ácid\",\n  \"acima\": \"acim\",\n  \"acionadas\": \"acion\",\n  \"acionado\": \"acion\",\n  \"acionar\": \"acion\",\n  \"acionaram\": \"acion\",\n  \"acionário\": \"acionári\",\n  \"acionei\": \"acion\",\n  \"acionista\": \"acion\",\n  \"acionistas\": \"acion\",\n  \"acionou\": \"acion\",\n  \"acirrada\": \"acirr\",\n  \"acirram\": \"acirr\",\n  \"acirrava\": \"acirr\",\n  \"ackerman\": \"ackerman\",\n  \"aclamado\": \"aclam\",\n  \"aclarados\": \"aclar\",\n  \"aclarar\": \"aclar\",\n  \"acm\": \"acm\",\n  \"acne\": \"acne\",\n  \"aço\": \"aço\",\n  \"acobertar\": \"acobert\",\n  \"ações\": \"açõ\",\n  \"açoitado\": \"açoit\",\n  \"açoites\": \"açoit\",\n  \"acolhê\": \"acolh\",\n  \"acolhedor\": \"acolhedor\",\n  \"acolhem\": \"acolh\",\n  \"acomete\": \"acomet\",\n  \"acometem\": \"acomet\",\n  \"acometido\": \"acomet\",\n  \"açominas\": \"açomin\",\n  \"acomoda\": \"acomod\",\n  \"acomodação\": \"acomod\",\n  \"acomodações\": \"acomod\",\n  \"acomodadas\": \"acomod\",\n  \"acomodado\": \"acomod\",\n  \"acomodar\": \"acomod\",\n  \"acomodaram\": \"acomod\",\n  \"acomodaria\": \"acomod\",\n  \"acomodava\": \"acomod\",\n  \"acomodo\": \"acomod\",\n  \"acompanha\": \"acompanh\",\n  \"acompanhá\": \"acompanh\",\n  \"acompanhada\": \"acompanh\",\n  \"acompanhadas\": \"acompanh\",\n  \"acompanhado\": \"acompanh\",\n  \"acompanhados\": \"acompanh\",\n  \"acompanham\": \"acompanh\",\n  \"acompanhamento\": \"acompanh\",\n  \"acompanhando\": \"acompanh\",\n  \"acompanhante\": \"acompanh\",\n  \"acompanhantes\": \"acompanh\",\n  \"acompanhar\": \"acompanh\",\n  \"acompanhará\": \"acompanh\",\n  \"acompanhava\": \"acompanh\",\n  \"acompanhe\": \"acompanh\",\n  \"acompanhei\": \"acompanh\",\n  \"acompanho\": \"acompanh\",\n  \"acompanhou\": \"acompanh\",\n  \"aconcágua\": \"aconcágu\",\n  \"aconchegante\": \"aconcheg\",\n  \"aconchegantes\": \"aconcheg\",\n  \"aconchego\": \"aconcheg\",\n  \"aconselha\": \"aconselh\",\n  \"aconselhada\": \"aconselh\",\n  \"aconselhadas\": \"aconselh\",\n  \"aconselhado\": \"aconselh\",\n  \"aconselhados\": \"aconselh\",\n  \"aconselham\": \"aconselh\",\n  \"aconselhar\": \"aconselh\",\n  \"aconselhara\": \"aconselh\",\n  \"aconselhavam\": \"aconselh\",\n  \"aconselhável\": \"aconselh\",\n  \"aconselhou\": \"aconselh\",\n  \"aconteça\": \"acontec\",\n  \"aconteçam\": \"acontec\",\n  \"acontece\": \"acontec\",\n  \"acontecem\": \"acontec\",\n  \"acontecendo\": \"acontec\",\n  \"acontecer\": \"acontec\",\n  \"acontecera\": \"acontec\",\n  \"acontecerá\": \"acontec\",\n  \"aconteceram\": \"acontec\",\n  \"aconteceria\": \"acontec\",\n  \"aconteceu\": \"acontec\",\n  \"acontecia\": \"acontec\",\n  \"aconteciam\": \"acontec\",\n  \"acontecido\": \"acontec\",\n  \"acontecimento\": \"acontec\",\n  \"acontecimentos\": \"acontec\",\n  \"acoplada\": \"acopl\",\n  \"acoplado\": \"acopl\",\n  \"acoplados\": \"acopl\",\n  \"acoplamento\": \"acopl\",\n  \"acoplando\": \"acopl\",\n  \"acorda\": \"acord\",\n  \"acordadas\": \"acord\",\n  \"acordados\": \"acord\",\n  \"acordam\": \"acord\",\n  \"acordamos\": \"acord\",\n  \"acordar\": \"acord\",\n  \"acordaram\": \"acord\",\n  \"acordava\": \"acord\",\n  \"acordes\": \"acord\",\n  \"acordo\": \"acord\",\n  \"acordos\": \"acord\",\n  \"acordou\": \"acord\",\n  \"acostuma\": \"acostum\",\n  \"acostumada\": \"acostum\",\n  \"acostumadas\": \"acostum\",\n  \"acostumado\": \"acostum\",\n  \"acostumados\": \"acostum\",\n  \"acostumam\": \"acostum\",\n  \"acostumar\": \"acostum\",\n  \"acostumaram\": \"acostum\",\n  \"acostumou\": \"acostum\",\n  \"açougue\": \"açoug\",\n  \"acovardada\": \"acovard\",\n  \"acre\": \"acre\",\n  \"acredita\": \"acredit\",\n  \"acreditam\": \"acredit\",\n  \"acreditamos\": \"acredit\",\n  \"acreditando\": \"acredit\",\n  \"acreditar\": \"acredit\",\n  \"acreditará\": \"acredit\",\n  \"acreditarmos\": \"acredit\",\n  \"acreditava\": \"acredit\",\n  \"acreditavam\": \"acredit\",\n  \"acredite\": \"acredit\",\n  \"acreditei\": \"acredit\",\n  \"acreditem\": \"acredit\",\n  \"acredito\": \"acredit\",\n  \"acreditou\": \"acredit\",\n  \"acrescenta\": \"acrescent\",\n  \"acrescentada\": \"acrescent\",\n  \"acrescentado\": \"acrescent\",\n  \"acrescentam\": \"acrescent\",\n  \"acrescentando\": \"acrescent\",\n  \"acrescentar\": \"acrescent\",\n  \"acrescentava\": \"acrescent\",\n  \"acrescente\": \"acrescent\",\n  \"acrescentou\": \"acrescent\",\n  \"acrescida\": \"acresc\",\n  \"acréscimo\": \"acréscim\",\n  \"acrobáticas\": \"acrobát\",\n  \"activation\": \"activation\",\n  \"actor\": \"actor\",\n  \"actors\": \"actors\",\n  \"acuada\": \"acu\",\n  \"açucar\": \"açuc\",\n  \"açúcar\": \"açúc\",\n  \"açúcares\": \"açúc\",\n  \"aculturado\": \"acultur\",\n  \"acumula\": \"acumul\",\n  \"acumulação\": \"acumul\",\n  \"acumuladas\": \"acumul\",\n  \"acumulado\": \"acumul\",\n  \"acumulador\": \"acumul\",\n  \"acumulados\": \"acumul\",\n  \"acumulam\": \"acumul\",\n  \"acumulando\": \"acumul\",\n  \"acumular\": \"acumul\",\n  \"acumulavam\": \"acumul\",\n  \"acumule\": \"acumul\",\n  \"acúmulo\": \"acúmul\",\n  \"acumulou\": \"acumul\",\n  \"acupuntura\": \"acupuntur\",\n  \"acupunturista\": \"acupuntur\",\n  \"acupunturistas\": \"acupuntur\",\n  \"acusa\": \"acus\",\n  \"acusação\": \"acus\",\n  \"acusações\": \"acus\",\n  \"acusada\": \"acus\",\n  \"acusado\": \"acus\",\n  \"acusados\": \"acus\",\n  \"acusam\": \"acus\",\n  \"acusamos\": \"acus\",\n  \"acusando\": \"acus\",\n  \"acusar\": \"acus\",\n  \"acusaram\": \"acus\",\n  \"acusava\": \"acus\",\n  \"acusavam\": \"acus\",\n  \"acusou\": \"acus\",\n  \"acústica\": \"acúst\",\n  \"adair\": \"ada\",\n  \"adami\": \"adam\",\n  \"adams\": \"adams\",\n  \"adão\": \"adã\",\n  \"adaptação\": \"adapt\",\n  \"adaptações\": \"adapt\",\n  \"adaptada\": \"adapt\",\n  \"adaptadas\": \"adapt\",\n  \"adaptado\": \"adapt\",\n  \"adaptados\": \"adapt\",\n  \"adaptar\": \"adapt\",\n  \"adaptara\": \"adapt\",\n  \"adaptaram\": \"adapt\",\n  \"adaptou\": \"adapt\",\n  \"adauto\": \"adaut\",\n  \"adega\": \"adeg\",\n  \"adegas\": \"adeg\",\n  \"adelaide\": \"adelaid\",\n  \"adélia\": \"adél\",\n  \"adelmo\": \"adelm\",\n  \"ademais\": \"adem\",\n  \"adensar\": \"adens\",\n  \"adepta\": \"adept\",\n  \"adepto\": \"adept\",\n  \"adeptos\": \"adept\",\n  \"adequação\": \"adequ\",\n  \"adequada\": \"adequ\",\n  \"adequadamente\": \"adequ\",\n  \"adequadas\": \"adequ\",\n  \"adequado\": \"adequ\",\n  \"adequados\": \"adequ\",\n  \"adequar\": \"adequ\",\n  \"adere\": \"ader\",\n  \"aderem\": \"ader\",\n  \"aderência\": \"aderent\",\n  \"aderente\": \"aderent\",\n  \"aderir\": \"ader\",\n  \"aderiram\": \"ader\",\n  \"aderirem\": \"ader\",\n  \"aderiu\": \"ader\",\n  \"ades\": \"ades\",\n  \"adesão\": \"adesã\",\n  \"adesistas\": \"ades\",\n  \"adesiva\": \"ades\",\n  \"adesivo\": \"ades\",\n  \"adesivos\": \"ades\",\n  \"adesões\": \"adesõ\",\n  \"adeus\": \"adeus\",\n  \"adhemar\": \"adhem\",\n  \"adiada\": \"adi\",\n  \"adiamentos\": \"adiament\",\n  \"adiando\": \"adi\",\n  \"adianta\": \"adiant\",\n  \"adiantado\": \"adiant\",\n  \"adiantamento\": \"adiant\",\n  \"adiantar\": \"adiant\",\n  \"adiante\": \"adiant\",\n  \"adiantou\": \"adiant\",\n  \"adiar\": \"adi\",\n  \"adib\": \"adib\",\n  \"adiciona\": \"adicion\",\n  \"adicionada\": \"adicion\",\n  \"adicionado\": \"adicion\",\n  \"adicionais\": \"adicion\",\n  \"adicional\": \"adicional\",\n  \"adicionam\": \"adicion\",\n  \"adicionando\": \"adicion\",\n  \"adicionar\": \"adicion\",\n  \"adicionasse\": \"adicion\",\n  \"adido\": \"adid\",\n  \"adilson\": \"adilson\",\n  \"adiou\": \"adi\",\n  \"adir\": \"adir\",\n  \"adivinhação\": \"adivinh\",\n  \"adivinhar\": \"adivinh\",\n  \"adivinhatório\": \"adivinhatóri\",\n  \"adjetivo\": \"adjet\",\n  \"adjetivos\": \"adjet\",\n  \"adjudicar\": \"adjudic\",\n  \"adjunto\": \"adjunt\",\n  \"adler\": \"adler\",\n  \"administra\": \"administr\",\n  \"administração\": \"administr\",\n  \"administrações\": \"administr\",\n  \"administrada\": \"administr\",\n  \"administrado\": \"administr\",\n  \"administrador\": \"administr\",\n  \"administradora\": \"administr\",\n  \"administradoras\": \"administr\",\n  \"administradores\": \"administr\",\n  \"administrados\": \"administr\",\n  \"administram\": \"administr\",\n  \"administrar\": \"administr\",\n  \"administrativa\": \"administr\",\n  \"administrativamente\": \"administr\",\n  \"administrativas\": \"administr\",\n  \"administrativo\": \"administr\",\n  \"administrativos\": \"administr\",\n  \"adminstração\": \"adminstr\",\n  \"admira\": \"admir\",\n  \"admiração\": \"admir\",\n  \"admirada\": \"admir\",\n  \"admiradas\": \"admir\",\n  \"admirado\": \"admir\",\n  \"admirador\": \"admir\",\n  \"admiradores\": \"admir\",\n  \"admirando\": \"admir\",\n  \"admirar\": \"admir\",\n  \"admirei\": \"admir\",\n  \"admiro\": \"admir\",\n  \"admissão\": \"admissã\",\n  \"admite\": \"admit\",\n  \"admitem\": \"admit\",\n  \"admitia\": \"admit\",\n  \"admitida\": \"admit\",\n  \"admitido\": \"admit\",\n  \"admitidos\": \"admit\",\n  \"admitimos\": \"admit\",\n  \"admitindo\": \"admit\",\n  \"admitir\": \"admit\",\n  \"admitiram\": \"admit\",\n  \"admitiu\": \"admit\",\n  \"admito\": \"admit\",\n  \"adobe\": \"adob\",\n  \"adoçante\": \"adoc\",\n  \"adoção\": \"adoçã\",\n  \"adoçaram\": \"adoc\",\n  \"adocicado\": \"adocic\",\n  \"adoecem\": \"adoec\",\n  \"adoecer\": \"adoec\",\n  \"adolescência\": \"adolescent\",\n  \"adolescente\": \"adolescent\",\n  \"adolescentes\": \"adolescent\",\n  \"adolfo\": \"adolf\",\n  \"adolph\": \"adolph\",\n  \"adora\": \"ador\",\n  \"adoração\": \"ador\",\n  \"adoradores\": \"ador\",\n  \"adorados\": \"ador\",\n  \"adoram\": \"ador\",\n  \"adoramos\": \"ador\",\n  \"adoraria\": \"ador\",\n  \"adorava\": \"ador\",\n  \"adoravam\": \"ador\",\n  \"adorei\": \"ador\",\n  \"adormecer\": \"adormec\",\n  \"adormecida\": \"adormec\",\n  \"adornadas\": \"adorn\",\n  \"adoro\": \"ador\",\n  \"adota\": \"adot\",\n  \"adotada\": \"adot\",\n  \"adotadas\": \"adot\",\n  \"adotado\": \"adot\",\n  \"adotados\": \"adot\",\n  \"adotam\": \"adot\",\n  \"adotando\": \"adot\",\n  \"adotar\": \"adot\",\n  \"adotaram\": \"adot\",\n  \"adotarem\": \"adot\",\n  \"adotasse\": \"adot\",\n  \"adotássemos\": \"adot\",\n  \"adotei\": \"adot\",\n  \"adotiva\": \"adot\",\n  \"adotivo\": \"adot\",\n  \"adotivos\": \"adot\",\n  \"adotou\": \"adot\",\n  \"adquire\": \"adquir\",\n  \"adquirem\": \"adqu\",\n  \"adquiri\": \"adquir\",\n  \"adquirida\": \"adquir\",\n  \"adquiridas\": \"adquir\",\n  \"adquiridos\": \"adquir\",\n  \"adquirir\": \"adquir\",\n  \"adquirira\": \"adquir\",\n  \"adquiriu\": \"adquir\",\n  \"adre\": \"adre\",\n  \"adrenalina\": \"adrenalin\",\n  \"adrian\": \"adrian\",\n  \"adriana\": \"adrian\",\n  \"adriane\": \"adrian\",\n  \"adriano\": \"adrian\",\n  \"adstringentes\": \"adstringent\",\n  \"aduaneira\": \"aduaneir\",\n  \"adubo\": \"adub\",\n  \"adular\": \"adul\",\n  \"adulta\": \"adult\",\n  \"adultas\": \"adult\",\n  \"adúlteras\": \"adúlt\",\n  \"adultério\": \"adultéri\",\n  \"adultérios\": \"adultéri\",\n  \"adúltero\": \"adúlter\",\n  \"adúlteros\": \"adúlter\",\n  \"adulto\": \"adult\",\n  \"adultos\": \"adult\",\n  \"adulyadej\": \"adulyadej\",\n  \"adversa\": \"advers\",\n  \"adversárias\": \"adversár\",\n  \"adversário\": \"adversári\",\n  \"adversários\": \"adversári\",\n  \"adversas\": \"advers\",\n  \"adversidade\": \"advers\",\n  \"adversos\": \"advers\",\n  \"adverte\": \"advert\",\n  \"advertência\": \"advertent\",\n  \"advertências\": \"advertent\",\n  \"advertia\": \"advert\",\n  \"advindas\": \"advind\",\n  \"advirto\": \"advirt\",\n  \"advocacia\": \"advocac\",\n  \"advogada\": \"advog\",\n  \"advogado\": \"advog\",\n  \"advogados\": \"advog\",\n  \"aê\": \"aê\",\n  \"aécio\": \"aéci\",\n  \"aérea\": \"aér\",\n  \"aéreas\": \"aér\",\n  \"aéreo\": \"aér\",\n  \"aéreos\": \"aér\",\n  \"aeróbica\": \"aerób\",\n  \"aeróbicos\": \"aerób\",\n  \"aerodinâmico\": \"aerodinâm\",\n  \"aeroespaciais\": \"aeroespac\",\n  \"aeroespacial\": \"aeroespacial\",\n  \"aerolineas\": \"aerolin\",\n  \"aeromoça\": \"aeromoc\",\n  \"aeronautas\": \"aeronaut\",\n  \"aeronáutica\": \"aeronáut\",\n  \"aeronáuticas\": \"aeronáut\",\n  \"aeronáutico\": \"aeronáut\",\n  \"aeronáuticos\": \"aeronáut\",\n  \"aeronave\": \"aeronav\",\n  \"aeronaves\": \"aeronav\",\n  \"aeroporto\": \"aeroport\",\n  \"aeroportos\": \"aeroport\",\n  \"aeroviário\": \"aeroviári\",\n  \"aês\": \"aês\",\n  \"aeudf\": \"aeudf\",\n  \"afã\": \"afã\",\n  \"afamada\": \"afam\",\n  \"afanar\": \"afan\",\n  \"afanasio\": \"afanasi\",\n  \"afasia\": \"afas\",\n  \"afasta\": \"afast\",\n  \"afastá\": \"afast\",\n  \"afastada\": \"afast\",\n  \"afastadas\": \"afast\",\n  \"afastado\": \"afast\",\n  \"afastados\": \"afast\",\n  \"afastam\": \"afast\",\n  \"afastamento\": \"afast\",\n  \"afastamos\": \"afast\",\n  \"afastar\": \"afast\",\n  \"afasto\": \"afast\",\n  \"afastou\": \"afast\",\n  \"afável\": \"afável\",\n  \"afazeres\": \"afaz\",\n  \"afbec\": \"afbec\",\n  \"afeito\": \"afeit\",\n  \"afeminados\": \"afemin\",\n  \"aferidos\": \"afer\",\n  \"aferir\": \"afer\",\n  \"aferrar\": \"aferr\",\n  \"afeta\": \"afet\",\n  \"afetada\": \"afet\",\n  \"afetadas\": \"afet\",\n  \"afetado\": \"afet\",\n  \"afetados\": \"afet\",\n  \"afetam\": \"afet\",\n  \"afetar\": \"afet\",\n  \"afetaria\": \"afet\",\n  \"afetasse\": \"afet\",\n  \"afetiva\": \"afet\",\n  \"afetivamente\": \"afet\",\n  \"afetivas\": \"afet\",\n  \"afetividade\": \"afet\",\n  \"afetivo\": \"afet\",\n  \"afetivos\": \"afet\",\n  \"afeto\": \"afet\",\n  \"afetou\": \"afet\",\n  \"afetuosamente\": \"afetu\",\n  \"affair\": \"affa\",\n  \"affini\": \"affin\",\n  \"afiados\": \"afi\",\n  \"afiando\": \"afi\",\n  \"aficionado\": \"aficion\",\n  \"aficionados\": \"aficion\",\n  \"afilhada\": \"afilh\",\n  \"afinadas\": \"afin\",\n  \"afinal\": \"afinal\",\n  \"afinam\": \"afin\",\n  \"afinco\": \"afinc\",\n  \"afinidade\": \"afin\",\n  \"afinidades\": \"afin\",\n  \"afins\": \"afins\",\n  \"afirma\": \"afirm\",\n  \"afirmação\": \"afirm\",\n  \"afirmam\": \"afirm\",\n  \"afirmando\": \"afirm\",\n  \"afirmar\": \"afirm\",\n  \"afirmaram\": \"afirm\",\n  \"afirmativa\": \"afirm\",\n  \"afirmativas\": \"afirm\",\n  \"afirmava\": \"afirm\",\n  \"afirmou\": \"afirm\",\n  \"afivelados\": \"afivel\",\n  \"afixado\": \"afix\",\n  \"afixou\": \"afix\",\n  \"aflição\": \"afliçã\",\n  \"aflitas\": \"aflit\",\n  \"aflorou\": \"aflor\",\n  \"afluentes\": \"afluent\",\n  \"afogada\": \"afog\",\n  \"afogado\": \"afog\",\n  \"afogueadas\": \"afog\",\n  \"afonjá\": \"afonj\",\n  \"afonso\": \"afons\",\n  \"afora\": \"afor\",\n  \"aforismo\": \"afor\",\n  \"afrescos\": \"afresc\",\n  \"áfrica\": \"áfric\",\n  \"africana\": \"african\",\n  \"africanas\": \"african\",\n  \"africanizado\": \"africaniz\",\n  \"africano\": \"african\",\n  \"africanos\": \"african\",\n  \"afro\": \"afro\",\n  \"afronta\": \"afront\",\n  \"afros\": \"afros\",\n  \"after\": \"after\",\n  \"afundado\": \"afund\",\n  \"afundamento\": \"afund\",\n  \"afundar\": \"afund\",\n  \"afundaram\": \"afund\",\n  \"afundou\": \"afund\",\n  \"ag\": \"ag\",\n  \"agachado\": \"agach\",\n  \"against\": \"against\",\n  \"agarrado\": \"agarr\",\n  \"agarrados\": \"agarr\",\n  \"agarrar\": \"agarr\",\n  \"agarras\": \"agarr\",\n  \"agasalhar\": \"agasalh\",\n  \"agasalho\": \"agasalh\",\n  \"agassi\": \"agass\",\n  \"agaxtur\": \"agaxtur\",\n  \"age\": \"age\",\n  \"ágeis\": \"áge\",\n  \"agem\": \"agem\",\n  \"agência\": \"agênc\",\n  \"agências\": \"agênc\",\n  \"agenciava\": \"agenc\",\n  \"agencom\": \"agencom\",\n  \"agenda\": \"agend\",\n  \"agendados\": \"agend\",\n  \"agendar\": \"agend\",\n  \"agendas\": \"agend\",\n  \"agente\": \"agent\",\n  \"agentes\": \"agent\",\n  \"agiam\": \"agi\",\n  \"agigantava\": \"agigant\",\n  \"ágil\": \"ágil\",\n  \"agilidade\": \"agil\",\n  \"agilizar\": \"agiliz\",\n  \"agilizou\": \"agiliz\",\n  \"agilson\": \"agilson\",\n  \"agindo\": \"agind\",\n  \"agins\": \"agins\",\n  \"ágio\": \"ági\",\n  \"agir\": \"agir\",\n  \"agiram\": \"agir\",\n  \"agisse\": \"agiss\",\n  \"agita\": \"agit\",\n  \"agitação\": \"agit\",\n  \"agitada\": \"agit\",\n  \"agitado\": \"agit\",\n  \"agitador\": \"agit\",\n  \"agitados\": \"agit\",\n  \"agito\": \"agit\",\n  \"agiu\": \"agiu\",\n  \"aglomerações\": \"aglomer\",\n  \"aglomeram\": \"aglom\",\n  \"aglutina\": \"aglutin\",\n  \"agnaldo\": \"agnald\",\n  \"agnelli\": \"agnell\",\n  \"agonia\": \"agon\",\n  \"agora\": \"agor\",\n  \"agostim\": \"agostim\",\n  \"agostinho\": \"agostinh\",\n  \"agosto\": \"agost\",\n  \"agraciada\": \"agrac\",\n  \"agraciado\": \"agrac\",\n  \"agraciados\": \"agrac\",\n  \"agrada\": \"agrad\",\n  \"agradá\": \"agrad\",\n  \"agradabilíssimo\": \"agradabilíssim\",\n  \"agradam\": \"agrad\",\n  \"agradar\": \"agrad\",\n  \"agradáveis\": \"agrad\",\n  \"agradável\": \"agrad\",\n  \"agrade\": \"agrad\",\n  \"agradece\": \"agradec\",\n  \"agradecer\": \"agradec\",\n  \"agradeci\": \"agradec\",\n  \"agradecimento\": \"agradec\",\n  \"agrados\": \"agrad\",\n  \"agradou\": \"agrad\",\n  \"agrária\": \"agrár\",\n  \"agrava\": \"agrav\",\n  \"agravada\": \"agrav\",\n  \"agravam\": \"agrav\",\n  \"agravamento\": \"agrav\",\n  \"agravantes\": \"agrav\",\n  \"agravar\": \"agrav\",\n  \"agravou\": \"agrav\",\n  \"agredida\": \"agred\",\n  \"agredidas\": \"agred\",\n  \"agredido\": \"agred\",\n  \"agredir\": \"agred\",\n  \"agrega\": \"agreg\",\n  \"agregação\": \"agreg\",\n  \"agregado\": \"agreg\",\n  \"agregador\": \"agreg\",\n  \"agregados\": \"agreg\",\n  \"agregando\": \"agreg\",\n  \"agregar\": \"agreg\",\n  \"agregou\": \"agreg\",\n  \"agregue\": \"agreg\",\n  \"agressão\": \"agressã\",\n  \"agressiva\": \"agress\",\n  \"agressivamente\": \"agress\",\n  \"agressivas\": \"agress\",\n  \"agressividade\": \"agress\",\n  \"agressivo\": \"agress\",\n  \"agressivos\": \"agress\",\n  \"agressões\": \"agressõ\",\n  \"agressor\": \"agressor\",\n  \"agreste\": \"agrest\",\n  \"agrícola\": \"agrícol\",\n  \"agrícolas\": \"agrícol\",\n  \"agricultor\": \"agricultor\",\n  \"agricultores\": \"agricultor\",\n  \"agricultura\": \"agricultur\",\n  \"agridoce\": \"agridoc\",\n  \"agrocentro\": \"agrocentr\",\n  \"agroindústria\": \"agroindústr\",\n  \"agrônomo\": \"agrônom\",\n  \"agruras\": \"agrur\",\n  \"água\": \"águ\",\n  \"aguados\": \"agu\",\n  \"aguarda\": \"aguard\",\n  \"aguardam\": \"aguard\",\n  \"aguardar\": \"aguard\",\n  \"aguardava\": \"aguard\",\n  \"aguardavam\": \"aguard\",\n  \"aguardou\": \"aguard\",\n  \"águas\": \"águ\",\n  \"aguçada\": \"aguc\",\n  \"agudas\": \"agud\",\n  \"agudos\": \"agud\",\n  \"aguenta\": \"aguent\",\n  \"agüenta\": \"agüent\",\n  \"aguentam\": \"aguent\",\n  \"aguentamos\": \"aguent\",\n  \"aguentar\": \"aguent\",\n  \"aguentava\": \"aguent\",\n  \"agüentava\": \"agüent\",\n  \"aguente\": \"aguent\",\n  \"agüente\": \"agüent\",\n  \"aguento\": \"aguent\",\n  \"agüento\": \"agüent\",\n  \"aguentou\": \"aguent\",\n  \"agüentou\": \"agüent\",\n  \"aguiar\": \"agui\",\n  \"aguinaldo\": \"aguinald\",\n  \"agulha\": \"agulh\",\n  \"agulhas\": \"agulh\",\n  \"ah\": \"ah\",\n  \"ahouagi\": \"ahouag\",\n  \"ahuasca\": \"ahuasc\",\n  \"ai\": \"ai\",\n  \"aí\": \"aí\",\n  \"aidéticas\": \"aidét\",\n  \"aidético\": \"aidét\",\n  \"aidéticos\": \"aidét\",\n  \"aids\": \"aids\",\n  \"ailson\": \"ailson\",\n  \"ailton\": \"ailton\",\n  \"aílton\": \"aílton\",\n  \"ainda\": \"aind\",\n  \"air\": \"air\",\n  \"airbus\": \"airbus\",\n  \"aires\": \"air\",\n  \"airès\": \"airès\",\n  \"airlines\": \"airlin\",\n  \"ajeita\": \"ajeit\",\n  \"ajeitadinha\": \"ajeitadinh\",\n  \"ajeitando\": \"ajeit\",\n  \"ajoelharam\": \"ajoelh\",\n  \"ajuda\": \"ajud\",\n  \"ajudá\": \"ajud\",\n  \"ajudado\": \"ajud\",\n  \"ajudam\": \"ajud\",\n  \"ajudamos\": \"ajud\",\n  \"ajudando\": \"ajud\",\n  \"ajudante\": \"ajud\",\n  \"ajudar\": \"ajud\",\n  \"ajudará\": \"ajud\",\n  \"ajudaram\": \"ajud\",\n  \"ajudarão\": \"ajud\",\n  \"ajudaria\": \"ajud\",\n  \"ajudava\": \"ajud\",\n  \"ajudavam\": \"ajud\",\n  \"ajude\": \"ajud\",\n  \"ajudem\": \"ajud\",\n  \"ajudo\": \"ajud\",\n  \"ajudou\": \"ajud\",\n  \"ajusta\": \"ajust\",\n  \"ajustado\": \"ajust\",\n  \"ajustar\": \"ajust\",\n  \"ajuste\": \"ajust\",\n  \"ajustes\": \"ajust\",\n  \"ajustou\": \"ajust\",\n  \"ak\": \"ak\",\n  \"akihito\": \"akihit\",\n  \"akira\": \"akir\",\n  \"al\": \"al\",\n  \"ala\": \"ala\",\n  \"alá\": \"alá\",\n  \"alagoana\": \"alagoan\",\n  \"alagoano\": \"alagoan\",\n  \"alagoanos\": \"alagoan\",\n  \"alagoas\": \"alago\",\n  \"alaíde\": \"alaíd\",\n  \"alain\": \"alain\",\n  \"alambique\": \"alambiqu\",\n  \"alamogordo\": \"alamogord\",\n  \"alan\": \"alan\",\n  \"alarcón\": \"alarcón\",\n  \"alardeada\": \"alard\",\n  \"alardear\": \"alard\",\n  \"alardeassem\": \"alard\",\n  \"alargamento\": \"alarg\",\n  \"alargar\": \"alarg\",\n  \"alarmado\": \"alarm\",\n  \"alarmados\": \"alarm\",\n  \"alarme\": \"alarm\",\n  \"alarmes\": \"alarm\",\n  \"alasca\": \"alasc\",\n  \"alavanca\": \"alavanc\",\n  \"alavancar\": \"alavanc\",\n  \"alavancas\": \"alavanc\",\n  \"albarello\": \"albarell\",\n  \"albendazol\": \"albendazol\",\n  \"albergue\": \"alberg\",\n  \"alberico\": \"alber\",\n  \"albert\": \"albert\",\n  \"alberto\": \"albert\",\n  \"albertoni\": \"alberton\",\n  \"albiero\": \"albier\",\n  \"albino\": \"albin\",\n  \"álbum\": \"álbum\",\n  \"álbuns\": \"álbuns\",\n  \"albuquerque\": \"albuquerqu\",\n  \"alca\": \"alca\",\n  \"alça\": \"alça\",\n  \"alcaçuzz\": \"alcaçuzz\",\n  \"alçada\": \"alçad\",\n  \"alçado\": \"alçad\",\n  \"alcança\": \"alcanc\",\n  \"alcançá\": \"alcanc\",\n  \"alcançado\": \"alcanc\",\n  \"alcançamos\": \"alcanc\",\n  \"alcançar\": \"alcanc\",\n  \"alcançasse\": \"alcanc\",\n  \"alcance\": \"alcanc\",\n  \"alcancei\": \"alcanc\",\n  \"alcancem\": \"alcanc\",\n  \"alcançou\": \"alcanc\",\n  \"alcântara\": \"alcânt\",\n  \"alçapão\": \"alçapã\",\n  \"alçar\": \"alçar\",\n  \"alccólatra\": \"alccólatr\",\n  \"alcides\": \"alcid\",\n  \"alcoa\": \"alco\",\n  \"álcool\": \"álcool\",\n  \"alcoólatra\": \"alcoólatr\",\n  \"alcoólatras\": \"alcoólatr\",\n  \"alcoólica\": \"alcoól\",\n  \"alcoólicas\": \"alcoól\",\n  \"alcoólico\": \"alcoól\",\n  \"alcoólicos\": \"alcoól\",\n  \"alcoolismo\": \"alcool\",\n  \"alcoolizados\": \"alcooliz\",\n  \"alcoquímica\": \"alcoquím\",\n  \"alcorão\": \"alcorã\",\n  \"alçou\": \"alçou\",\n  \"alcova\": \"alcov\",\n  \"alcovitice\": \"alcovitic\",\n  \"alcunha\": \"alcunh\",\n  \"alcyr\": \"alcyr\",\n  \"aldeia\": \"alde\",\n  \"aldeota\": \"aldeot\",\n  \"aldo\": \"aldo\",\n  \"aldunate\": \"aldunat\",\n  \"alê\": \"alê\",\n  \"aleatória\": \"aleatór\",\n  \"alecrim\": \"alecrim\",\n  \"alega\": \"aleg\",\n  \"alegação\": \"aleg\",\n  \"alegadas\": \"aleg\",\n  \"alegado\": \"aleg\",\n  \"alegam\": \"aleg\",\n  \"alegando\": \"aleg\",\n  \"alegar\": \"aleg\",\n  \"alegaram\": \"aleg\",\n  \"alegava\": \"aleg\",\n  \"alegoria\": \"alegor\",\n  \"alegou\": \"aleg\",\n  \"alegra\": \"alegr\",\n  \"alegrasse\": \"alegr\",\n  \"alegre\": \"alegr\",\n  \"alegres\": \"alegr\",\n  \"alegrete\": \"alegret\",\n  \"alegria\": \"alegr\",\n  \"alegrias\": \"alegr\",\n  \"alegro\": \"alegr\",\n  \"aleida\": \"ale\",\n  \"aleijado\": \"aleij\",\n  \"aleixo\": \"aleix\",\n  \"alejandro\": \"alejandr\",\n  \"além\": \"além\",\n  \"alemã\": \"alemã\",\n  \"alemães\": \"alemã\",\n  \"alemanha\": \"alemanh\",\n  \"alemão\": \"alemã\",\n  \"alencar\": \"alenc\",\n  \"alencastro\": \"alencastr\",\n  \"alenquer\": \"alenqu\",\n  \"alentado\": \"alent\",\n  \"alentejo\": \"alentej\",\n  \"alento\": \"alent\",\n  \"alergia\": \"alerg\",\n  \"alergias\": \"alerg\",\n  \"alerta\": \"alert\",\n  \"alertadas\": \"alert\",\n  \"alertado\": \"alert\",\n  \"alertam\": \"alert\",\n  \"alertava\": \"alert\",\n  \"alertou\": \"alert\",\n  \"alessandra\": \"alessandr\",\n  \"alessandro\": \"alessandr\",\n  \"alessio\": \"alessi\",\n  \"alex\": \"alex\",\n  \"alexander\": \"alexand\",\n  \"alexandra\": \"alexandr\",\n  \"alexandre\": \"alexandr\",\n  \"alexim\": \"alexim\",\n  \"alfabetização\": \"alfabetiz\",\n  \"alfabetizado\": \"alfabetiz\",\n  \"alfabetizadora\": \"alfabetiz\",\n  \"alfabetizadores\": \"alfabetiz\",\n  \"alfabetizados\": \"alfabetiz\",\n  \"alfabetizar\": \"alfabetiz\",\n  \"alfabeto\": \"alfabet\",\n  \"alface\": \"alfac\",\n  \"alfaiates\": \"alfaiat\",\n  \"alfândega\": \"alfândeg\",\n  \"alfandegárias\": \"alfandegár\",\n  \"alfândegas\": \"alfândeg\",\n  \"alfer\": \"alfer\",\n  \"alferes\": \"alfer\",\n  \"alfineta\": \"alfinet\",\n  \"alforria\": \"alforr\",\n  \"alfred\": \"alfred\",\n  \"alfredo\": \"alfred\",\n  \"algarismos\": \"algar\",\n  \"algas\": \"algas\",\n  \"algema\": \"algem\",\n  \"algemados\": \"algem\",\n  \"algo\": \"algo\",\n  \"algodão\": \"algodã\",\n  \"alguém\": \"alguém\",\n  \"algum\": \"algum\",\n  \"alguma\": \"algum\",\n  \"algumas\": \"algum\",\n  \"alguns\": \"alguns\",\n  \"alheia\": \"alhe\",\n  \"alheias\": \"alhe\",\n  \"alheio\": \"alhei\",\n  \"alheios\": \"alhei\",\n  \"alho\": \"alho\",\n  \"ali\": \"ali\",\n  \"aliadas\": \"ali\",\n  \"aliado\": \"ali\",\n  \"aliados\": \"ali\",\n  \"aliança\": \"alianc\",\n  \"alianças\": \"alianc\",\n  \"aliar\": \"ali\",\n  \"aliaram\": \"ali\",\n  \"aliás\": \"aliás\",\n  \"álibi\": \"álib\",\n  \"álibis\": \"álib\",\n  \"alice\": \"alic\",\n  \"alicerces\": \"alicerc\",\n  \"alien\": \"alien\",\n  \"alienação\": \"alien\",\n  \"alienados\": \"alien\",\n  \"alienígena\": \"alienígen\",\n  \"alienígenas\": \"alienígen\",\n  \"alimenta\": \"aliment\",\n  \"alimentação\": \"aliment\",\n  \"alimentada\": \"aliment\",\n  \"alimentadas\": \"aliment\",\n  \"alimentado\": \"aliment\",\n  \"alimentados\": \"aliment\",\n  \"alimentam\": \"aliment\",\n  \"alimentando\": \"aliment\",\n  \"alimentar\": \"aliment\",\n  \"alimentaram\": \"aliment\",\n  \"alimentares\": \"aliment\",\n  \"alimentos\": \"aliment\",\n  \"aline\": \"alin\",\n  \"alinhado\": \"alinh\",\n  \"alinhados\": \"alinh\",\n  \"alinhou\": \"alinh\",\n  \"alíquota\": \"alíquot\",\n  \"alíquotas\": \"alíquot\",\n  \"alisia\": \"alis\",\n  \"alitalia\": \"alital\",\n  \"alivia\": \"aliv\",\n  \"aliviada\": \"alivi\",\n  \"aliviado\": \"alivi\",\n  \"aliviar\": \"alivi\",\n  \"aliviava\": \"alivi\",\n  \"alívio\": \"alívi\",\n  \"alka\": \"alka\",\n  \"allan\": \"allan\",\n  \"allen\": \"allen\",\n  \"alliance\": \"allianc\",\n  \"alma\": \"alma\",\n  \"almanaque\": \"almanaqu\",\n  \"almas\": \"almas\",\n  \"almeida\": \"alme\",\n  \"almeja\": \"almej\",\n  \"almejada\": \"almej\",\n  \"almejado\": \"almej\",\n  \"almejam\": \"almej\",\n  \"almirantado\": \"almirant\",\n  \"almirante\": \"almir\",\n  \"almoça\": \"almoc\",\n  \"almoçar\": \"almoc\",\n  \"almoço\": \"almoc\",\n  \"almoços\": \"almoc\",\n  \"almoçou\": \"almoc\",\n  \"almofada\": \"almof\",\n  \"aln\": \"aln\",\n  \"alô\": \"alô\",\n  \"aloe\": \"alo\",\n  \"aloha\": \"aloh\",\n  \"aloisio\": \"aloisi\",\n  \"aloizio\": \"aloizi\",\n  \"alojados\": \"aloj\",\n  \"alojamento\": \"aloj\",\n  \"alojamentos\": \"aloj\",\n  \"alone\": \"alon\",\n  \"alongamento\": \"along\",\n  \"alopata\": \"alopat\",\n  \"alopatas\": \"alopat\",\n  \"alopáticas\": \"alopát\",\n  \"alopáticos\": \"alopát\",\n  \"aloprado\": \"alopr\",\n  \"aloysio\": \"aloysi\",\n  \"alpargatas\": \"alpargat\",\n  \"alpha\": \"alpha\",\n  \"alphatem\": \"alphat\",\n  \"alphaville\": \"alphavill\",\n  \"alpinismo\": \"alpin\",\n  \"alpinista\": \"alpin\",\n  \"alpinistas\": \"alpin\",\n  \"alqueires\": \"alqu\",\n  \"alquimia\": \"alquim\",\n  \"alta\": \"alta\",\n  \"altair\": \"alta\",\n  \"altamair\": \"altama\",\n  \"altamente\": \"alt\",\n  \"altaneiro\": \"altaneir\",\n  \"altar\": \"altar\",\n  \"altas\": \"altas\",\n  \"alter\": \"alter\",\n  \"altera\": \"alter\",\n  \"alteração\": \"alter\",\n  \"alterações\": \"alter\",\n  \"alterado\": \"alter\",\n  \"alteram\": \"alter\",\n  \"alterar\": \"alter\",\n  \"alteravam\": \"alter\",\n  \"alternadamente\": \"altern\",\n  \"alternam\": \"altern\",\n  \"alternância\": \"altern\",\n  \"alternativa\": \"altern\",\n  \"alternativas\": \"altern\",\n  \"alternativo\": \"altern\",\n  \"alternativos\": \"altern\",\n  \"alternava\": \"altern\",\n  \"alternavam\": \"altern\",\n  \"altinópolis\": \"altinópol\",\n  \"altiplano\": \"altiplan\",\n  \"altíssima\": \"altíssim\",\n  \"altíssimas\": \"altíssim\",\n  \"altíssimo\": \"altíssim\",\n  \"altíssimos\": \"altíss\",\n  \"altissonantes\": \"altisson\",\n  \"altitude\": \"altitud\",\n  \"altitudes\": \"altitud\",\n  \"altiva\": \"altiv\",\n  \"alto\": \"alto\",\n  \"altoé\": \"alto\",\n  \"altos\": \"altos\",\n  \"altura\": \"altur\",\n  \"alturas\": \"altur\",\n  \"alucinada\": \"alucin\",\n  \"alucinado\": \"alucin\",\n  \"alucinados\": \"alucin\",\n  \"alucinante\": \"alucin\",\n  \"alucinógena\": \"alucinógen\",\n  \"alucinógenas\": \"alucinógen\",\n  \"aluga\": \"alug\",\n  \"alugada\": \"alug\",\n  \"alugadas\": \"alug\",\n  \"alugado\": \"alug\",\n  \"alugados\": \"alug\",\n  \"alugam\": \"alug\",\n  \"alugando\": \"alug\",\n  \"alugar\": \"alug\",\n  \"alugo\": \"alug\",\n  \"alugou\": \"alug\",\n  \"aluguei\": \"alugu\",\n  \"aluguéis\": \"alug\",\n  \"aluguel\": \"aluguel\",\n  \"aluminart\": \"aluminart\",\n  \"alumínio\": \"alumíni\",\n  \"alumni\": \"alumn\",\n  \"aluna\": \"alun\",\n  \"alunas\": \"alun\",\n  \"aluno\": \"alun\",\n  \"alunos\": \"alun\",\n  \"alusão\": \"alusã\",\n  \"alvará\": \"alvar\",\n  \"alvares\": \"alvar\",\n  \"álvares\": \"álvar\",\n  \"alvarez\": \"alvarez\",\n  \"álvaro\": \"álvar\",\n  \"alvejou\": \"alvej\",\n  \"alves\": \"alves\",\n  \"alvim\": \"alvim\",\n  \"alvíssimas\": \"alvíssim\",\n  \"alvo\": \"alvo\",\n  \"alvorada\": \"alvor\",\n  \"alvoroço\": \"alvoroc\",\n  \"alvos\": \"alvos\",\n  \"alzheimer\": \"alzheim\",\n  \"am\": \"am\",\n  \"ama\": \"ama\",\n  \"amable\": \"amabl\",\n  \"amada\": \"amad\",\n  \"amado\": \"amad\",\n  \"amador\": \"amador\",\n  \"amadores\": \"amador\",\n  \"amadurece\": \"amadurec\",\n  \"amadurecem\": \"amadurec\",\n  \"amadurecendo\": \"amadurec\",\n  \"amadurecer\": \"amadurec\",\n  \"amalia\": \"amal\",\n  \"amam\": \"amam\",\n  \"amamentando\": \"amament\",\n  \"amamentar\": \"amament\",\n  \"amâncio\": \"amânci\",\n  \"amanda\": \"amand\",\n  \"amanhã\": \"amanhã\",\n  \"amanhecidos\": \"amanhec\",\n  \"amansa\": \"amans\",\n  \"amante\": \"amant\",\n  \"amantes\": \"amant\",\n  \"amar\": \"amar\",\n  \"amaral\": \"amaral\",\n  \"amarela\": \"amarel\",\n  \"amarelada\": \"amarel\",\n  \"amarelas\": \"amarel\",\n  \"amarelo\": \"amarel\",\n  \"amarga\": \"amarg\",\n  \"amargam\": \"amarg\",\n  \"amargando\": \"amarg\",\n  \"amargas\": \"amarg\",\n  \"amargava\": \"amarg\",\n  \"amargo\": \"amarg\",\n  \"amargor\": \"amargor\",\n  \"amargos\": \"amarg\",\n  \"amargou\": \"amarg\",\n  \"amarguíssimas\": \"amarguíssim\",\n  \"amargurado\": \"amargur\",\n  \"amaro\": \"amar\",\n  \"amarra\": \"amarr\",\n  \"amarrada\": \"amarr\",\n  \"amarrado\": \"amarr\",\n  \"amarrados\": \"amarr\",\n  \"amarras\": \"amarr\",\n  \"amassado\": \"amass\",\n  \"amassando\": \"amass\",\n  \"amassar\": \"amass\",\n  \"amassava\": \"amass\",\n  \"amassos\": \"amass\",\n  \"amassou\": \"amass\",\n  \"amato\": \"amat\",\n  \"amava\": \"amav\",\n  \"amável\": \"amável\",\n  \"amazonas\": \"amazon\",\n  \"amazonense\": \"amazonens\",\n  \"amazonenses\": \"amazonens\",\n  \"amazônia\": \"amazôn\",\n  \"amazônica\": \"amazôn\",\n  \"amazônicas\": \"amazôn\",\n  \"amazônico\": \"amazôn\",\n  \"amazônicos\": \"amazôn\",\n  \"amazonino\": \"amazonin\",\n  \"âmbar\": \"âmbar\",\n  \"ambas\": \"ambas\",\n  \"ambição\": \"ambiçã\",\n  \"ambiciosa\": \"ambic\",\n  \"ambiciosas\": \"ambic\",\n  \"ambicioso\": \"ambic\",\n  \"ambições\": \"ambiçõ\",\n  \"ambiel\": \"ambiel\",\n  \"ambientação\": \"ambient\",\n  \"ambientais\": \"ambient\",\n  \"ambiental\": \"ambiental\",\n  \"ambientalista\": \"ambiental\",\n  \"ambientalistas\": \"ambiental\",\n  \"ambiente\": \"ambient\",\n  \"ambientes\": \"ambient\",\n  \"âmbito\": \"âmbit\",\n  \"ambivalência\": \"ambivalent\",\n  \"ambos\": \"ambos\",\n  \"ambulância\": \"ambul\",\n  \"ambulante\": \"ambul\",\n  \"ambulantes\": \"ambul\",\n  \"ambulatoriais\": \"ambulatori\",\n  \"ambulatorial\": \"ambulatorial\",\n  \"ameaça\": \"ameac\",\n  \"ameaçá\": \"ameac\",\n  \"ameaçada\": \"ameac\",\n  \"ameaçadas\": \"ameac\",\n  \"ameaçado\": \"ameac\",\n  \"ameaçador\": \"ameac\",\n  \"ameaçadora\": \"ameac\",\n  \"ameaçadores\": \"ameac\",\n  \"ameaçados\": \"ameac\",\n  \"ameaçam\": \"ameac\",\n  \"ameaçando\": \"ameac\",\n  \"ameaçar\": \"ameac\",\n  \"ameaçaram\": \"ameac\",\n  \"ameaças\": \"ameac\",\n  \"ameaçava\": \"ameac\",\n  \"ameaçou\": \"ameac\",\n  \"amealha\": \"amealh\",\n  \"amealhou\": \"amealh\",\n  \"amedrontada\": \"amedront\",\n  \"amedrontadoras\": \"amedront\",\n  \"amei\": \"ame\",\n  \"amélia\": \"amél\",\n  \"amélio\": \"améli\",\n  \"amém\": \"amém\",\n  \"amena\": \"amen\",\n  \"amêndoa\": \"amêndo\",\n  \"amendoados\": \"amendo\",\n  \"ameniza\": \"ameniz\",\n  \"amenizar\": \"ameniz\",\n  \"ameno\": \"amen\",\n  \"america\": \"amer\",\n  \"américa\": \"amér\",\n  \"american\": \"american\",\n  \"americana\": \"american\",\n  \"americanas\": \"american\",\n  \"americano\": \"american\",\n  \"americanópolis\": \"americanópol\",\n  \"americanos\": \"american\",\n  \"américas\": \"amér\",\n  \"américo\": \"amér\",\n  \"amesi\": \"ames\",\n  \"amesma\": \"amesm\",\n  \"amico\": \"amic\",\n  \"amiga\": \"amig\",\n  \"amigas\": \"amig\",\n  \"amigáveis\": \"amig\",\n  \"amigável\": \"amig\",\n  \"amigo\": \"amig\",\n  \"amigos\": \"amig\",\n  \"amiguinho\": \"amiguinh\",\n  \"amiguinhos\": \"amiguinh\",\n  \"amilcar\": \"amilc\",\n  \"amílcar\": \"amílc\",\n  \"amin\": \"amin\",\n  \"aminoácidos\": \"aminoác\",\n  \"amistosa\": \"amist\",\n  \"amistoso\": \"amist\",\n  \"amistosos\": \"amist\",\n  \"amix\": \"amix\",\n  \"amizade\": \"amizad\",\n  \"amizades\": \"amizad\",\n  \"amma\": \"amma\",\n  \"amnésica\": \"amnés\",\n  \"amo\": \"amo\",\n  \"amodeo\": \"amod\",\n  \"amolece\": \"amolec\",\n  \"amontoado\": \"amonto\",\n  \"amor\": \"amor\",\n  \"amores\": \"amor\",\n  \"amorim\": \"amorim\",\n  \"amorosa\": \"amor\",\n  \"amorosas\": \"amor\",\n  \"amoroso\": \"amor\",\n  \"amortecida\": \"amortec\",\n  \"amortização\": \"amortiz\",\n  \"amos\": \"amos\",\n  \"amostra\": \"amostr\",\n  \"amostras\": \"amostr\",\n  \"ampara\": \"ampar\",\n  \"amparadas\": \"ampar\",\n  \"amparado\": \"ampar\",\n  \"amparar\": \"ampar\",\n  \"ampla\": \"ampla\",\n  \"amplamente\": \"ampl\",\n  \"amplia\": \"ampli\",\n  \"ampliação\": \"ampliaçã\",\n  \"ampliado\": \"ampli\",\n  \"ampliam\": \"ampli\",\n  \"ampliando\": \"ampli\",\n  \"ampliar\": \"ampli\",\n  \"ampliava\": \"ampli\",\n  \"amplificar\": \"amplific\",\n  \"ampliou\": \"ampli\",\n  \"amplitude\": \"amplitud\",\n  \"amplo\": \"amplo\",\n  \"amplos\": \"amplos\",\n  \"ampola\": \"ampol\",\n  \"amputar\": \"amput\",\n  \"amsterdã\": \"amsterdã\",\n  \"amuletos\": \"amulet\",\n  \"amx\": \"amx\",\n  \"amy\": \"amy\",\n  \"an\": \"an\",\n  \"ana\": \"ana\",\n  \"anã\": \"anã\",\n  \"anabólico\": \"anaból\",\n  \"anabolizante\": \"anaboliz\",\n  \"anafranil\": \"anafranil\",\n  \"anal\": \"anal\",\n  \"analfabeta\": \"analfabet\",\n  \"analfabetismo\": \"analfabet\",\n  \"analfabetos\": \"analfabet\",\n  \"analgésico\": \"analgés\",\n  \"analgésicos\": \"analgés\",\n  \"analisa\": \"analis\",\n  \"analisá\": \"analis\",\n  \"analisada\": \"analis\",\n  \"analisadas\": \"analis\",\n  \"analisado\": \"analis\",\n  \"analisados\": \"analis\",\n  \"analisam\": \"analis\",\n  \"analisando\": \"analis\",\n  \"analisar\": \"analis\",\n  \"analisaram\": \"analis\",\n  \"analise\": \"analis\",\n  \"análise\": \"anális\",\n  \"análises\": \"anális\",\n  \"analisou\": \"analis\",\n  \"analista\": \"anal\",\n  \"analistas\": \"anal\",\n  \"anamburucu\": \"anamburucu\",\n  \"anão\": \"anã\",\n  \"anápolis\": \"anápol\",\n  \"anarquismo\": \"anarqu\",\n  \"anarquista\": \"anarqu\",\n  \"anarquizando\": \"anarquiz\",\n  \"anas\": \"anas\",\n  \"anastácia\": \"anastác\",\n  \"anastassiadis\": \"anastassiad\",\n  \"anatel\": \"anatel\",\n  \"anátemas\": \"anátem\",\n  \"anatólia\": \"anatól\",\n  \"anatomia\": \"anatom\",\n  \"anatomicamente\": \"anatom\",\n  \"anatômicas\": \"anatôm\",\n  \"anatômico\": \"anatôm\",\n  \"anatômicos\": \"anatôm\",\n  \"anbid\": \"anbid\",\n  \"ancestrais\": \"ancestr\",\n  \"ancestral\": \"ancestral\",\n  \"anchieta\": \"anchiet\",\n  \"anchovas\": \"anchov\",\n  \"ancora\": \"ancor\",\n  \"âncora\": \"âncor\",\n  \"ancorada\": \"ancor\",\n  \"ancorado\": \"ancor\",\n  \"ancoradouros\": \"ancoradour\",\n  \"ancoram\": \"ancor\",\n  \"and\": \"and\",\n  \"anda\": \"anda\",\n  \"andado\": \"andad\",\n  \"andam\": \"andam\",\n  \"andamento\": \"andament\",\n  \"andamos\": \"andam\",\n  \"andanças\": \"andanc\",\n  \"andando\": \"andand\",\n  \"andar\": \"andar\",\n  \"andará\": \"andar\",\n  \"andares\": \"andar\",\n  \"andassem\": \"andass\",\n  \"andava\": \"andav\",\n  \"andei\": \"ande\",\n  \"andersen\": \"andersen\",\n  \"anderson\": \"anderson\",\n  \"andes\": \"andes\",\n  \"andina\": \"andin\",\n  \"andinho\": \"andinh\",\n  \"ando\": \"ando\",\n  \"andor\": \"andor\",\n  \"andou\": \"andou\",\n  \"andrade\": \"andrad\",\n  \"andrajos\": \"andraj\",\n  \"andre\": \"andre\",\n  \"andré\": \"andré\",\n  \"andrea\": \"andre\",\n  \"andréa\": \"andré\",\n  \"andreazza\": \"andreazz\",\n  \"andrei\": \"andre\",\n  \"andreoli\": \"andreol\",\n  \"andreolli\": \"andreoll\",\n  \"andy\": \"andy\",\n  \"anéas\": \"ané\",\n  \"anedota\": \"anedot\",\n  \"anedotário\": \"anedotári\",\n  \"anéis\": \"ané\",\n  \"anel\": \"anel\",\n  \"anelados\": \"anel\",\n  \"anemia\": \"anem\",\n  \"anêmico\": \"anêm\",\n  \"anestesia\": \"anestes\",\n  \"anestésico\": \"anestés\",\n  \"aneurisma\": \"aneurism\",\n  \"aneurismas\": \"aneurism\",\n  \"anexadas\": \"anex\",\n  \"anexados\": \"anex\",\n  \"anexo\": \"anex\",\n  \"anfetamina\": \"anfetamin\",\n  \"anfetaminas\": \"anfetamin\",\n  \"anfetamínica\": \"anfetamín\",\n  \"anfetamínico\": \"anfetamín\",\n  \"anfetamínicos\": \"anfetamín\",\n  \"angariar\": \"angari\",\n  \"angariou\": \"angari\",\n  \"angel\": \"angel\",\n  \"angela\": \"angel\",\n  \"ângela\": \"ângel\",\n  \"angeles\": \"angel\",\n  \"angélica\": \"angél\",\n  \"angelical\": \"angelical\",\n  \"angelina\": \"angelin\",\n  \"angelo\": \"angel\",\n  \"ângelo\": \"ângel\",\n  \"angelotto\": \"angelott\",\n  \"angiotensina\": \"angiotensin\",\n  \"anglo\": \"anglo\",\n  \"angola\": \"angol\",\n  \"angolanas\": \"angolan\",\n  \"angolanos\": \"angolan\",\n  \"angra\": \"angra\",\n  \"ângulo\": \"ângul\",\n  \"ângulos\": \"ângul\",\n  \"angústia\": \"angúst\",\n  \"angustiada\": \"angusti\",\n  \"angustiadas\": \"angusti\",\n  \"angustiados\": \"angusti\",\n  \"angustiantes\": \"angusti\",\n  \"angústias\": \"angúst\",\n  \"anhanduí\": \"anhandu\",\n  \"anhangabaú\": \"anhangabaú\",\n  \"anhanguera\": \"anhangu\",\n  \"anhembi\": \"anhemb\",\n  \"anheuser\": \"anheus\",\n  \"anibal\": \"anibal\",\n  \"anima\": \"anim\",\n  \"animação\": \"anim\",\n  \"animações\": \"anim\",\n  \"animada\": \"anim\",\n  \"animadamente\": \"anim\",\n  \"animado\": \"anim\",\n  \"animador\": \"anim\",\n  \"animadores\": \"anim\",\n  \"animados\": \"anim\",\n  \"animais\": \"anim\",\n  \"animal\": \"animal\",\n  \"animam\": \"anim\",\n  \"animando\": \"anim\",\n  \"animar\": \"anim\",\n  \"ânimo\": \"ânim\",\n  \"ânimos\": \"ânim\",\n  \"animosidade\": \"animos\",\n  \"animou\": \"anim\",\n  \"aninha\": \"aninh\",\n  \"aniquile\": \"aniquil\",\n  \"anísio\": \"anísi\",\n  \"anistia\": \"anist\",\n  \"aniversário\": \"aniversári\",\n  \"aniversários\": \"aniversári\",\n  \"aniz\": \"aniz\",\n  \"anja\": \"anja\",\n  \"anjinho\": \"anjinh\",\n  \"anjo\": \"anjo\",\n  \"anlong\": \"anlong\",\n  \"anna\": \"anna\",\n  \"annie\": \"anni\",\n  \"anno\": \"anno\",\n  \"ano\": \"ano\",\n  \"anões\": \"anõ\",\n  \"anomalias\": \"anomal\",\n  \"anonimamente\": \"anonim\",\n  \"anônimas\": \"anônim\",\n  \"anonimato\": \"anonimat\",\n  \"anônimo\": \"anônim\",\n  \"anônimos\": \"anôn\",\n  \"anorexia\": \"anorex\",\n  \"anormal\": \"anormal\",\n  \"anos\": \"anos\",\n  \"anotá\": \"anot\",\n  \"anotações\": \"anot\",\n  \"anotados\": \"anot\",\n  \"anotam\": \"anot\",\n  \"anotar\": \"anot\",\n  \"anotava\": \"anot\",\n  \"anote\": \"anot\",\n  \"anotou\": \"anot\",\n  \"ansaldi\": \"ansald\",\n  \"anseia\": \"anse\",\n  \"anseiam\": \"anse\",\n  \"anseio\": \"ansei\",\n  \"anseios\": \"ansei\",\n  \"ansiedade\": \"ansiedad\",\n  \"ansiedades\": \"ansiedad\",\n  \"ansiolíticos\": \"ansiolít\",\n  \"ansiosa\": \"ansios\",\n  \"ansiosamente\": \"ansios\",\n  \"ansiosas\": \"ansios\",\n  \"ansioso\": \"ansios\",\n  \"ansiosos\": \"ansios\",\n  \"anta\": \"anta\",\n  \"antagônicas\": \"antagôn\",\n  \"antarctica\": \"antarct\",\n  \"antártica\": \"antárt\",\n  \"antártico\": \"antárt\",\n  \"antártida\": \"antárt\",\n  \"antebraço\": \"antebrac\",\n  \"antecede\": \"anteced\",\n  \"antecedem\": \"anteced\",\n  \"antecedência\": \"antecedent\",\n  \"antecedentes\": \"antecedent\",\n  \"antecederam\": \"anteced\",\n  \"antecedeu\": \"anteced\",\n  \"antecessor\": \"antecessor\",\n  \"antecessores\": \"antecessor\",\n  \"antecipa\": \"antecip\",\n  \"antecipação\": \"antecip\",\n  \"antecipações\": \"antecip\",\n  \"antecipada\": \"antecip\",\n  \"antecipadamente\": \"antecip\",\n  \"antecipadas\": \"antecip\",\n  \"antecipado\": \"antecip\",\n  \"antecipador\": \"antecip\",\n  \"antecipando\": \"antecip\",\n  \"antecipar\": \"antecip\",\n  \"antecipou\": \"antecip\",\n  \"antena\": \"anten\",\n  \"antenadas\": \"anten\",\n  \"antenado\": \"anten\",\n  \"antenas\": \"anten\",\n  \"antenor\": \"antenor\",\n  \"anteontem\": \"anteont\",\n  \"antepassados\": \"antepass\",\n  \"antepunham\": \"antepunh\",\n  \"anterior\": \"anterior\",\n  \"anteriores\": \"anterior\",\n  \"anteriormente\": \"anterior\",\n  \"antes\": \"antes\",\n  \"antevendo\": \"antev\",\n  \"anthony\": \"anthony\",\n  \"anti\": \"anti\",\n  \"antiarmas\": \"antiarm\",\n  \"antibélicas\": \"antibél\",\n  \"antibióticos\": \"antibiót\",\n  \"anticomunista\": \"anticomun\",\n  \"anticoncepção\": \"anticoncepçã\",\n  \"anticoncepcionais\": \"anticoncepcion\",\n  \"anticoncepcional\": \"anticoncepcional\",\n  \"anticonvulsivos\": \"anticonvuls\",\n  \"antidepressiva\": \"antidepress\",\n  \"antidepressivo\": \"antidepress\",\n  \"antidepressivos\": \"antidepress\",\n  \"antídotos\": \"antídot\",\n  \"antidrogas\": \"antidrog\",\n  \"antiespasmódico\": \"antiespasmód\",\n  \"antiético\": \"antiét\",\n  \"antiga\": \"antig\",\n  \"antigamente\": \"antig\",\n  \"antigas\": \"antig\",\n  \"antigen\": \"antigen\",\n  \"antígeno\": \"antígen\",\n  \"antigo\": \"antig\",\n  \"antigos\": \"antig\",\n  \"antigovernistas\": \"antigovern\",\n  \"antiguidade\": \"antigu\",\n  \"antiguidades\": \"antigu\",\n  \"antiinflamatório\": \"antiinflamatóri\",\n  \"antilusitanos\": \"antilusitan\",\n  \"antimonotonia\": \"antimonoton\",\n  \"antinarcotráfico\": \"antinarcotráf\",\n  \"antipatia\": \"antipat\",\n  \"antipatias\": \"antipat\",\n  \"antipático\": \"antipát\",\n  \"antipessoais\": \"antipesso\",\n  \"antiquado\": \"antiqu\",\n  \"antiquados\": \"antiqu\",\n  \"antiquários\": \"antiquári\",\n  \"antiquarius\": \"antiquarius\",\n  \"antissépticos\": \"antissépt\",\n  \"antitabagista\": \"antitabag\",\n  \"antitabagistas\": \"antitabag\",\n  \"antitérmico\": \"antitérm\",\n  \"antológica\": \"antológ\",\n  \"antonia\": \"anton\",\n  \"antônia\": \"antôn\",\n  \"antoninho\": \"antoninh\",\n  \"antonio\": \"antoni\",\n  \"antônio\": \"antôni\",\n  \"antropóloga\": \"antropólog\",\n  \"antropologia\": \"antropolog\",\n  \"antropólogo\": \"antropólog\",\n  \"antropólogos\": \"antropólog\",\n  \"antunes\": \"antun\",\n  \"anuais\": \"anu\",\n  \"anual\": \"anual\",\n  \"anualmente\": \"anual\",\n  \"anuário\": \"anuári\",\n  \"anuidade\": \"anuidad\",\n  \"anulação\": \"anul\",\n  \"anulado\": \"anul\",\n  \"anulam\": \"anul\",\n  \"anulando\": \"anul\",\n  \"anular\": \"anul\",\n  \"anularam\": \"anul\",\n  \"anulei\": \"anul\",\n  \"anulou\": \"anul\",\n  \"anuncia\": \"anunc\",\n  \"anunciada\": \"anunc\",\n  \"anunciadas\": \"anunc\",\n  \"anunciado\": \"anunc\",\n  \"anunciam\": \"anunc\",\n  \"anunciando\": \"anunc\",\n  \"anunciantes\": \"anunc\",\n  \"anunciar\": \"anunc\",\n  \"anunciaram\": \"anunc\",\n  \"anunciava\": \"anunc\",\n  \"anúncio\": \"anúnci\",\n  \"anúncios\": \"anúnci\",\n  \"anunciou\": \"anunc\",\n  \"anysio\": \"anysi\",\n  \"ao\": \"ao\",\n  \"ão\": \"ão\",\n  \"aonde\": \"aond\",\n  \"aorta\": \"aort\",\n  \"aórtico\": \"aórtic\",\n  \"aos\": \"aos\",\n  \"ap\": \"ap\",\n  \"apadrinhamento\": \"apadrinh\",\n  \"apadrinhou\": \"apadrinh\",\n  \"apagado\": \"apag\",\n  \"apagam\": \"apag\",\n  \"apagando\": \"apag\",\n  \"apagar\": \"apag\",\n  \"apagavam\": \"apag\",\n  \"apagou\": \"apag\",\n  \"apaixona\": \"apaixon\",\n  \"apaixonada\": \"apaixon\",\n  \"apaixonadas\": \"apaixon\",\n  \"apaixonadíssima\": \"apaixonadíssim\",\n  \"apaixonado\": \"apaixon\",\n  \"apaixonados\": \"apaixon\",\n  \"apaixonam\": \"apaixon\",\n  \"apaixonar\": \"apaixon\",\n  \"apaixonara\": \"apaixon\",\n  \"apaixone\": \"apaixon\",\n  \"apaixonei\": \"apaixon\",\n  \"apaixonou\": \"apaixon\",\n  \"apalpação\": \"apalp\",\n  \"apalpado\": \"apalp\",\n  \"apanha\": \"apanh\",\n  \"apanhado\": \"apanh\",\n  \"apanham\": \"apanh\",\n  \"apanhando\": \"apanh\",\n  \"apanhar\": \"apanh\",\n  \"apanhei\": \"apanh\",\n  \"apanhou\": \"apanh\",\n  \"aparacer\": \"aparac\",\n  \"aparar\": \"apar\",\n  \"aparato\": \"aparat\",\n  \"apareçam\": \"aparec\",\n  \"aparece\": \"aparec\",\n  \"aparecem\": \"aparec\",\n  \"aparecendo\": \"aparec\",\n  \"aparecer\": \"aparec\",\n  \"apareceram\": \"aparec\",\n  \"aparecerem\": \"aparec\",\n  \"apareceria\": \"aparec\",\n  \"aparecesse\": \"aparec\",\n  \"aparecessem\": \"aparec\",\n  \"apareceu\": \"aparec\",\n  \"apareci\": \"aparec\",\n  \"aparecia\": \"aparec\",\n  \"apareciam\": \"aparec\",\n  \"aparecida\": \"aparec\",\n  \"aparecido\": \"aparec\",\n  \"aparecimento\": \"aparec\",\n  \"aparelhada\": \"aparelh\",\n  \"aparelhagem\": \"aparelhag\",\n  \"aparelhinho\": \"aparelhinh\",\n  \"aparelho\": \"aparelh\",\n  \"aparelhos\": \"aparelh\",\n  \"aparência\": \"aparent\",\n  \"aparências\": \"aparent\",\n  \"aparenta\": \"aparent\",\n  \"aparentam\": \"aparent\",\n  \"aparente\": \"aparent\",\n  \"aparentemente\": \"aparent\",\n  \"aparentes\": \"aparent\",\n  \"aparição\": \"apariçã\",\n  \"aparições\": \"apariçõ\",\n  \"apartamento\": \"apart\",\n  \"apartamentos\": \"apart\",\n  \"apartava\": \"apart\",\n  \"apatia\": \"apat\",\n  \"apáticas\": \"apát\",\n  \"apáticos\": \"apát\",\n  \"apavora\": \"apavor\",\n  \"apavorada\": \"apavor\",\n  \"apavorou\": \"apavor\",\n  \"apaziguador\": \"apazigu\",\n  \"apeá\": \"ape\",\n  \"apec\": \"apec\",\n  \"apega\": \"apeg\",\n  \"apegada\": \"apeg\",\n  \"apegados\": \"apeg\",\n  \"apegar\": \"apeg\",\n  \"apego\": \"apeg\",\n  \"apela\": \"apel\",\n  \"apelação\": \"apel\",\n  \"apelar\": \"apel\",\n  \"apelei\": \"apel\",\n  \"apelem\": \"apel\",\n  \"apelidados\": \"apelid\",\n  \"apelidaram\": \"apelid\",\n  \"apelido\": \"apel\",\n  \"apelo\": \"apel\",\n  \"apelos\": \"apel\",\n  \"apelou\": \"apel\",\n  \"apenas\": \"apen\",\n  \"apêndice\": \"apêndic\",\n  \"aperfeiçoamento\": \"aperfeiço\",\n  \"aperfeiçoando\": \"aperfeiço\",\n  \"aperfeiçoar\": \"aperfeiço\",\n  \"aperfeiçoei\": \"aperfeiço\",\n  \"aperitivos\": \"aperit\",\n  \"aperreados\": \"aperr\",\n  \"aperta\": \"apert\",\n  \"apertada\": \"apert\",\n  \"apertado\": \"apert\",\n  \"apertados\": \"apert\",\n  \"apertam\": \"apert\",\n  \"apertar\": \"apert\",\n  \"apertou\": \"apert\",\n  \"apesar\": \"apes\",\n  \"apetite\": \"apetit\",\n  \"apetitoso\": \"apetit\",\n  \"apetrechos\": \"apetrech\",\n  \"ápice\": \"ápic\",\n  \"apinhado\": \"apinh\",\n  \"apitava\": \"apit\",\n  \"apito\": \"apit\",\n  \"aplaca\": \"aplac\",\n  \"aplacando\": \"aplac\",\n  \"aplacar\": \"aplac\",\n  \"aplacou\": \"aplac\",\n  \"aplaudida\": \"aplaud\",\n  \"aplausos\": \"aplaus\",\n  \"aplica\": \"aplic\",\n  \"aplicação\": \"aplic\",\n  \"aplicações\": \"aplic\",\n  \"aplicada\": \"aplic\",\n  \"aplicadas\": \"aplic\",\n  \"aplicado\": \"aplic\",\n  \"aplicadores\": \"aplic\",\n  \"aplicam\": \"aplic\",\n  \"aplicando\": \"aplic\",\n  \"aplicar\": \"aplic\",\n  \"aplicaram\": \"aplic\",\n  \"aplicativos\": \"aplic\",\n  \"aplicava\": \"aplic\",\n  \"aplicável\": \"aplic\",\n  \"aplicou\": \"aplic\",\n  \"aplique\": \"apliqu\",\n  \"apliquem\": \"apliqu\",\n  \"apliques\": \"apliqu\",\n  \"apnéia\": \"apné\",\n  \"apocalipse\": \"apocalips\",\n  \"apoderaram\": \"apoder\",\n  \"apoenan\": \"apoenan\",\n  \"apogeu\": \"apog\",\n  \"apóia\": \"apó\",\n  \"apoiá\": \"apoi\",\n  \"apoiadas\": \"apoi\",\n  \"apoiado\": \"apoi\",\n  \"apoiados\": \"apoi\",\n  \"apóiam\": \"apó\",\n  \"apoiar\": \"apoi\",\n  \"apoiarem\": \"apoi\",\n  \"apoiaria\": \"apoi\",\n  \"apoio\": \"apoi\",\n  \"apoiou\": \"apoi\",\n  \"apólice\": \"apólic\",\n  \"apolítico\": \"apolít\",\n  \"apollinari\": \"apollinar\",\n  \"apologia\": \"apolog\",\n  \"apologista\": \"apolog\",\n  \"aponta\": \"apont\",\n  \"apontá\": \"apont\",\n  \"apontada\": \"apont\",\n  \"apontadas\": \"apont\",\n  \"apontado\": \"apont\",\n  \"apontadores\": \"apont\",\n  \"apontados\": \"apont\",\n  \"apontam\": \"apont\",\n  \"apontando\": \"apont\",\n  \"apontar\": \"apont\",\n  \"apontava\": \"apont\",\n  \"apontem\": \"apont\",\n  \"apontou\": \"apont\",\n  \"apoplético\": \"apoplét\",\n  \"aportar\": \"aport\",\n  \"aportou\": \"aport\",\n  \"após\": \"após\",\n  \"aposentada\": \"aposent\",\n  \"aposentado\": \"aposent\",\n  \"aposentadoria\": \"aposentador\",\n  \"aposentados\": \"aposent\",\n  \"aposentam\": \"aposent\",\n  \"aposentar\": \"aposent\",\n  \"aposentos\": \"aposent\",\n  \"aposentou\": \"aposent\",\n  \"apossado\": \"aposs\",\n  \"aposta\": \"apost\",\n  \"apostador\": \"apost\",\n  \"apostadores\": \"apost\",\n  \"apostam\": \"apost\",\n  \"apostamos\": \"apost\",\n  \"apostando\": \"apost\",\n  \"apostar\": \"apost\",\n  \"apostaram\": \"apost\",\n  \"apostas\": \"apost\",\n  \"aposte\": \"apost\",\n  \"apostilas\": \"apostil\",\n  \"aposto\": \"apost\",\n  \"apóstolo\": \"apóstol\",\n  \"apóstolos\": \"apóstol\",\n  \"apostou\": \"apost\",\n  \"apoteose\": \"apoteos\",\n  \"apple\": \"apple\",\n  \"aprazível\": \"apraz\",\n  \"aprecia\": \"aprec\",\n  \"apreciação\": \"aprec\",\n  \"apreciações\": \"aprec\",\n  \"apreciada\": \"aprec\",\n  \"apreciado\": \"aprec\",\n  \"apreciando\": \"aprec\",\n  \"apreciar\": \"aprec\",\n  \"apreciaram\": \"aprec\",\n  \"apreciou\": \"aprec\",\n  \"apreço\": \"aprec\",\n  \"apreendem\": \"apreend\",\n  \"apreender\": \"apreend\",\n  \"apreenderam\": \"apreend\",\n  \"apreendida\": \"apreend\",\n  \"apreensão\": \"apreensã\",\n  \"apreensivo\": \"apreens\",\n  \"apreensivos\": \"apreens\",\n  \"apreensões\": \"apreensõ\",\n  \"apregoa\": \"aprego\",\n  \"apregoam\": \"aprego\",\n  \"aprenda\": \"aprend\",\n  \"aprendam\": \"aprend\",\n  \"aprende\": \"aprend\",\n  \"aprendem\": \"aprend\",\n  \"aprendemos\": \"aprend\",\n  \"aprendendo\": \"aprend\",\n  \"aprender\": \"aprend\",\n  \"aprenderam\": \"aprend\",\n  \"aprenderia\": \"aprend\",\n  \"aprendesse\": \"aprend\",\n  \"aprendeu\": \"aprend\",\n  \"aprendi\": \"aprend\",\n  \"aprendiam\": \"aprend\",\n  \"aprendíamos\": \"aprend\",\n  \"aprendida\": \"aprend\",\n  \"aprendidas\": \"aprend\",\n  \"aprendido\": \"aprend\",\n  \"aprendiz\": \"aprendiz\",\n  \"aprendizado\": \"aprendiz\",\n  \"aprendizagem\": \"aprendizag\",\n  \"aprendizes\": \"aprendiz\",\n  \"apresenta\": \"apresent\",\n  \"apresentação\": \"apresent\",\n  \"apresentações\": \"apresent\",\n  \"apresentada\": \"apresent\",\n  \"apresentadas\": \"apresent\",\n  \"apresentado\": \"apresent\",\n  \"apresentador\": \"apresent\",\n  \"apresentadora\": \"apresent\",\n  \"apresentadoras\": \"apresent\",\n  \"apresentados\": \"apresent\",\n  \"apresentam\": \"apresent\",\n  \"apresentamos\": \"apresent\",\n  \"apresentando\": \"apresent\",\n  \"apresentar\": \"apresent\",\n  \"apresentará\": \"apresent\",\n  \"apresentaram\": \"apresent\",\n  \"apresentarão\": \"apresent\",\n  \"apresentaria\": \"apresent\",\n  \"apresentasse\": \"apresent\",\n  \"apresentassem\": \"apresent\",\n  \"apresentava\": \"apresent\",\n  \"apresentavam\": \"apresent\",\n  \"apresentável\": \"apresent\",\n  \"apresente\": \"apresent\",\n  \"apresento\": \"apresent\",\n  \"apresentou\": \"apresent\",\n  \"apressada\": \"apress\",\n  \"apressadas\": \"apress\",\n  \"apressadinha\": \"apressadinh\",\n  \"apressadinhos\": \"apressadinh\",\n  \"apressado\": \"apress\",\n  \"apressados\": \"apress\",\n  \"apressam\": \"apress\",\n  \"apressamento\": \"apress\",\n  \"apressar\": \"apress\",\n  \"apresse\": \"apress\",\n  \"apressou\": \"apress\",\n  \"aprimoradas\": \"aprimor\",\n  \"aprimoramento\": \"aprimor\",\n  \"aprimorar\": \"aprimor\",\n  \"aprimorou\": \"aprimor\",\n  \"aprisionados\": \"aprision\",\n  \"aprisionassem\": \"aprision\",\n  \"aprofundar\": \"aprofund\",\n  \"aprofundou\": \"aprofund\",\n  \"aprontasse\": \"apront\",\n  \"aprontou\": \"apront\",\n  \"apropriação\": \"apropri\",\n  \"apropriada\": \"apropri\",\n  \"apropriadamente\": \"apropri\",\n  \"apropriadas\": \"apropri\",\n  \"apropriado\": \"apropri\",\n  \"aprova\": \"aprov\",\n  \"aprová\": \"aprov\",\n  \"aprovação\": \"aprov\",\n  \"aprovada\": \"aprov\",\n  \"aprovadas\": \"aprov\",\n  \"aprovado\": \"aprov\",\n  \"aprovados\": \"aprov\",\n  \"aprovando\": \"aprov\",\n  \"aprovar\": \"aprov\",\n  \"aprovaram\": \"aprov\",\n  \"aprovassem\": \"aprov\",\n  \"aprovavam\": \"aprov\",\n  \"aproveita\": \"aproveit\",\n  \"aproveitado\": \"aproveit\",\n  \"aproveitam\": \"aproveit\",\n  \"aproveitamento\": \"aproveit\",\n  \"aproveitamos\": \"aproveit\",\n  \"aproveitando\": \"aproveit\",\n  \"aproveitar\": \"aproveit\",\n  \"aproveitaria\": \"aproveit\",\n  \"aproveito\": \"aproveit\",\n  \"aproveitou\": \"aproveit\",\n  \"aprovou\": \"aprov\",\n  \"aproxima\": \"aproxim\",\n  \"aproximação\": \"aproxim\",\n  \"aproximações\": \"aproxim\",\n  \"aproximadamente\": \"aproxim\",\n  \"aproximado\": \"aproxim\",\n  \"aproximam\": \"aproxim\",\n  \"aproximando\": \"aproxim\",\n  \"aproximar\": \"aproxim\",\n  \"aproximava\": \"aproxim\",\n  \"aproximei\": \"aproxim\",\n  \"aproximou\": \"aproxim\",\n  \"apta\": \"apta\",\n  \"aptas\": \"aptas\",\n  \"aptidão\": \"aptidã\",\n  \"apto\": \"apto\",\n  \"aptos\": \"aptos\",\n  \"apura\": \"apur\",\n  \"apuração\": \"apur\",\n  \"apurações\": \"apur\",\n  \"apurada\": \"apur\",\n  \"apuradas\": \"apur\",\n  \"apurado\": \"apur\",\n  \"apurar\": \"apur\",\n  \"apuro\": \"apur\",\n  \"apuros\": \"apur\",\n  \"apurou\": \"apur\",\n  \"aqualung\": \"aqualung\",\n  \"aquarteladas\": \"aquartel\",\n  \"aquartelamento\": \"aquartel\",\n  \"aquartelar\": \"aquartel\",\n  \"aquartelou\": \"aquartel\",\n  \"aquática\": \"aquát\",\n  \"aquático\": \"aquát\",\n  \"aquecesse\": \"aquec\",\n  \"aquecidos\": \"aquec\",\n  \"aquecimento\": \"aquec\",\n  \"aquela\": \"aquel\",\n  \"àquela\": \"àquel\",\n  \"aquelas\": \"aquel\",\n  \"àquelas\": \"àquel\",\n  \"aquele\": \"aquel\",\n  \"àquele\": \"àquel\",\n  \"aqueles\": \"aquel\",\n  \"aquém\": \"aquém\",\n  \"aqui\": \"aqu\",\n  \"aquidauana\": \"aquidauan\",\n  \"aquilo\": \"aquil\",\n  \"aquino\": \"aquin\",\n  \"aquisição\": \"aquisiçã\",\n  \"aquisições\": \"aquisiçõ\",\n  \"aquisitivo\": \"aquisit\",\n  \"ar\": \"ar\",\n  \"árabe\": \"árab\",\n  \"árabes\": \"árab\",\n  \"arabi\": \"arab\",\n  \"arabica\": \"arab\",\n  \"arábica\": \"aráb\",\n  \"aracaju\": \"aracaju\",\n  \"aracruz\": \"aracruz\",\n  \"araçuaí\": \"araçua\",\n  \"aracy\": \"aracy\",\n  \"aragão\": \"aragã\",\n  \"araguaia\": \"aragua\",\n  \"aramaçã\": \"aramaçã\",\n  \"arandu\": \"arandu\",\n  \"aranha\": \"aranh\",\n  \"aranhas\": \"aranh\",\n  \"aranovich\": \"aranovich\",\n  \"arantes\": \"arant\",\n  \"arap\": \"arap\",\n  \"araponga\": \"arapong\",\n  \"arapongas\": \"arapong\",\n  \"arapuã\": \"arapuã\",\n  \"arara\": \"arar\",\n  \"araranguá\": \"ararangu\",\n  \"araraquara\": \"araraqu\",\n  \"araras\": \"arar\",\n  \"aratangy\": \"aratangy\",\n  \"arau\": \"arau\",\n  \"araujo\": \"arauj\",\n  \"araújo\": \"araúj\",\n  \"araxá\": \"arax\",\n  \"arbitragem\": \"arbitrag\",\n  \"arbitrar\": \"arbitr\",\n  \"arbitrara\": \"arbitr\",\n  \"arbitrária\": \"arbitrár\",\n  \"arbitrariamente\": \"arbitrari\",\n  \"árbitros\": \"árbitr\",\n  \"arbusto\": \"arbust\",\n  \"arca\": \"arca\",\n  \"arcada\": \"arcad\",\n  \"arcaica\": \"arcaic\",\n  \"arcaicas\": \"arcaic\",\n  \"arcaico\": \"arcaic\",\n  \"arcar\": \"arcar\",\n  \"arcebispo\": \"arcebisp\",\n  \"arco\": \"arco\",\n  \"ardente\": \"ardent\",\n  \"arderá\": \"arder\",\n  \"ardidas\": \"ardid\",\n  \"ardidinha\": \"ardidinh\",\n  \"ardil\": \"ardil\",\n  \"ardilosa\": \"ardil\",\n  \"ardor\": \"ardor\",\n  \"ardorosas\": \"ardor\",\n  \"árdua\": \"árdu\",\n  \"árduo\": \"árdu\",\n  \"área\": \"áre\",\n  \"áreas\": \"áre\",\n  \"areia\": \"are\",\n  \"areias\": \"are\",\n  \"arejado\": \"arej\",\n  \"arena\": \"aren\",\n  \"ares\": \"ares\",\n  \"arestas\": \"arest\",\n  \"argelich\": \"argelich\",\n  \"argentária\": \"argentár\",\n  \"argentina\": \"argentin\",\n  \"argentinas\": \"argentin\",\n  \"argentino\": \"argentin\",\n  \"argentinos\": \"argentin\",\n  \"argila\": \"argil\",\n  \"argola\": \"argol\",\n  \"argolas\": \"argol\",\n  \"argonauta\": \"argonaut\",\n  \"argumenta\": \"argument\",\n  \"argumentação\": \"argument\",\n  \"argumentações\": \"argument\",\n  \"argumentando\": \"argument\",\n  \"argumento\": \"argument\",\n  \"argumentos\": \"argument\",\n  \"argumentou\": \"argument\",\n  \"ari\": \"ari\",\n  \"ária\": \"ári\",\n  \"ariano\": \"arian\",\n  \"arias\": \"ari\",\n  \"árias\": \"ári\",\n  \"arida\": \"arid\",\n  \"árida\": \"árid\",\n  \"áridas\": \"árid\",\n  \"ariel\": \"ariel\",\n  \"aripuanã\": \"aripuanã\",\n  \"ariranhas\": \"ariranh\",\n  \"arisco\": \"arisc\",\n  \"aristo\": \"arist\",\n  \"aristocráticos\": \"aristocrát\",\n  \"aristodemo\": \"aristodem\",\n  \"aristóteles\": \"aristótel\",\n  \"arkin\": \"arkin\",\n  \"arlie\": \"arli\",\n  \"arlindo\": \"arlind\",\n  \"arliss\": \"arliss\",\n  \"arma\": \"arma\",\n  \"armação\": \"armaçã\",\n  \"armada\": \"armad\",\n  \"armadas\": \"armad\",\n  \"armadilha\": \"armadilh\",\n  \"armadilhas\": \"armadilh\",\n  \"armado\": \"armad\",\n  \"armador\": \"armador\",\n  \"armadores\": \"armador\",\n  \"armados\": \"armad\",\n  \"armam\": \"armam\",\n  \"armamentista\": \"armament\",\n  \"armamento\": \"armament\",\n  \"armamentos\": \"armament\",\n  \"armando\": \"armand\",\n  \"armani\": \"arman\",\n  \"armar\": \"armar\",\n  \"armário\": \"armári\",\n  \"armários\": \"armári\",\n  \"armas\": \"armas\",\n  \"armavam\": \"armav\",\n  \"armazém\": \"armazém\",\n  \"armazenadas\": \"armazen\",\n  \"armazenado\": \"armazen\",\n  \"armazenagem\": \"armazenag\",\n  \"armazenam\": \"armazen\",\n  \"armazenamento\": \"armazen\",\n  \"armazenamos\": \"armazen\",\n  \"armazenar\": \"armazen\",\n  \"armazéns\": \"armazéns\",\n  \"armênio\": \"armêni\",\n  \"armênios\": \"armêni\",\n  \"armentano\": \"armentan\",\n  \"armo\": \"armo\",\n  \"armório\": \"armóri\",\n  \"armstrong\": \"armstrong\",\n  \"arnaldo\": \"arnald\",\n  \"arno\": \"arno\",\n  \"arnoldo\": \"arnold\",\n  \"arnon\": \"arnon\",\n  \"aro\": \"aro\",\n  \"aroma\": \"arom\",\n  \"aromas\": \"arom\",\n  \"aromática\": \"aromát\",\n  \"aronson\": \"aronson\",\n  \"aros\": \"aros\",\n  \"arósio\": \"arósi\",\n  \"arqueologia\": \"arqueolog\",\n  \"arqueológicos\": \"arqueológ\",\n  \"arqueólogos\": \"arqueólog\",\n  \"arquibancada\": \"arquibanc\",\n  \"arquibancadas\": \"arquibanc\",\n  \"arquidiocese\": \"arquidioces\",\n  \"arquidioceses\": \"arquidioces\",\n  \"arquiinimigos\": \"arquiinimig\",\n  \"arquipélago\": \"arquipélag\",\n  \"arquiteta\": \"arquitet\",\n  \"arquitetada\": \"arquitet\",\n  \"arquitetado\": \"arquitet\",\n  \"arquiteto\": \"arquitet\",\n  \"arquitetônica\": \"arquitetôn\",\n  \"arquitetônicas\": \"arquitetôn\",\n  \"arquitetônicos\": \"arquitetôn\",\n  \"arquitetos\": \"arquitet\",\n  \"arquitetura\": \"arquitetur\",\n  \"arquivado\": \"arquiv\",\n  \"arquivados\": \"arquiv\",\n  \"arquivam\": \"arquiv\",\n  \"arquivamento\": \"arquiv\",\n  \"arquivo\": \"arquiv\",\n  \"arquivos\": \"arquiv\",\n  \"arrabal\": \"arrabal\",\n  \"arraial\": \"arraial\",\n  \"arrancada\": \"arranc\",\n  \"arrancadas\": \"arranc\",\n  \"arrancado\": \"arranc\",\n  \"arrancados\": \"arranc\",\n  \"arrancando\": \"arranc\",\n  \"arrancar\": \"arranc\",\n  \"arrancou\": \"arranc\",\n  \"arranha\": \"arranh\",\n  \"arranhada\": \"arranh\",\n  \"arranhando\": \"arranh\",\n  \"arranhão\": \"arranhã\",\n  \"arranhar\": \"arranh\",\n  \"arranja\": \"arranj\",\n  \"arranjada\": \"arranj\",\n  \"arranjador\": \"arranj\",\n  \"arranjadores\": \"arranj\",\n  \"arranjando\": \"arranj\",\n  \"arranjar\": \"arranj\",\n  \"arranjo\": \"arranj\",\n  \"arranjos\": \"arranj\",\n  \"arranque\": \"arranqu\",\n  \"arrasa\": \"arras\",\n  \"arrasada\": \"arras\",\n  \"arrasado\": \"arras\",\n  \"arrasando\": \"arras\",\n  \"arrasar\": \"arras\",\n  \"arrasaram\": \"arras\",\n  \"arrasta\": \"arrast\",\n  \"arrastá\": \"arrast\",\n  \"arrastada\": \"arrast\",\n  \"arrastado\": \"arrast\",\n  \"arrastados\": \"arrast\",\n  \"arrastam\": \"arrast\",\n  \"arrastando\": \"arrast\",\n  \"arrastão\": \"arrastã\",\n  \"arrastaria\": \"arrast\",\n  \"arrastões\": \"arrastõ\",\n  \"arrastou\": \"arrast\",\n  \"arrazoado\": \"arrazo\",\n  \"arrebanhar\": \"arrebanh\",\n  \"arrebanhou\": \"arrebanh\",\n  \"arrebatadas\": \"arrebat\",\n  \"arrebatadora\": \"arrebat\",\n  \"arrebatadores\": \"arrebat\",\n  \"arrebatava\": \"arrebat\",\n  \"arrebatou\": \"arrebat\",\n  \"arrebentando\": \"arrebent\",\n  \"arrebentar\": \"arrebent\",\n  \"arrebitam\": \"arrebit\",\n  \"arrecada\": \"arrec\",\n  \"arrecadação\": \"arrecad\",\n  \"arrecadado\": \"arrecad\",\n  \"arrecadadores\": \"arrecad\",\n  \"arrecadados\": \"arrecad\",\n  \"arrecadar\": \"arrecad\",\n  \"arrecadaram\": \"arrecad\",\n  \"arrecadavam\": \"arrecad\",\n  \"arrecadávamos\": \"arrecad\",\n  \"arrecadou\": \"arrecad\",\n  \"arrecifes\": \"arrecif\",\n  \"arredar\": \"arred\",\n  \"arredias\": \"arred\",\n  \"arredio\": \"arredi\",\n  \"arredores\": \"arredor\",\n  \"arregaçadas\": \"arregac\",\n  \"arregaçar\": \"arregac\",\n  \"arregimentar\": \"arregiment\",\n  \"arremata\": \"arremat\",\n  \"arrematado\": \"arremat\",\n  \"arrematados\": \"arremat\",\n  \"arrematar\": \"arremat\",\n  \"arremate\": \"arremat\",\n  \"arremates\": \"arremat\",\n  \"arrematou\": \"arremat\",\n  \"arremedo\": \"arremed\",\n  \"arremessada\": \"arremess\",\n  \"arremessar\": \"arremess\",\n  \"arremessos\": \"arremess\",\n  \"arrendadas\": \"arrend\",\n  \"arrendados\": \"arrend\",\n  \"arrepende\": \"arrepend\",\n  \"arrependeu\": \"arrepend\",\n  \"arrependi\": \"arrepend\",\n  \"arrependidas\": \"arrepend\",\n  \"arrependido\": \"arrepend\",\n  \"arrependimento\": \"arrepend\",\n  \"arrependo\": \"arrep\",\n  \"arrepiados\": \"arrepi\",\n  \"arrepiar\": \"arrepi\",\n  \"arrepios\": \"arrepi\",\n  \"arriadas\": \"arri\",\n  \"arrisca\": \"arrisc\",\n  \"arriscada\": \"arrisc\",\n  \"arriscadas\": \"arrisc\",\n  \"arriscado\": \"arrisc\",\n  \"arriscam\": \"arrisc\",\n  \"arriscando\": \"arrisc\",\n  \"arriscar\": \"arrisc\",\n  \"arriscaria\": \"arrisc\",\n  \"arriscava\": \"arrisc\",\n  \"arriscou\": \"arrisc\",\n  \"arrisque\": \"arrisqu\",\n  \"arrogância\": \"arrog\",\n  \"arrogante\": \"arrog\",\n  \"arrogantes\": \"arrog\",\n  \"arrojada\": \"arroj\",\n  \"arroladas\": \"arrol\",\n  \"arromba\": \"arromb\",\n  \"arrombamento\": \"arromb\",\n  \"arrombaram\": \"arromb\",\n  \"arroubos\": \"arroub\",\n  \"arroz\": \"arroz\",\n  \"arruaça\": \"arruac\",\n  \"arruaceiros\": \"arruaceir\",\n  \"arruda\": \"arrud\",\n  \"arruinando\": \"arruin\",\n  \"arruinar\": \"arruin\",\n  \"arruma\": \"arrum\",\n  \"arrumada\": \"arrum\",\n  \"arrumados\": \"arrum\",\n  \"arrumando\": \"arrum\",\n  \"arrumar\": \"arrum\",\n  \"arrumaria\": \"arrum\",\n  \"arrumava\": \"arrum\",\n  \"arrumo\": \"arrum\",\n  \"arrumou\": \"arrum\",\n  \"arsenal\": \"arsenal\",\n  \"art\": \"art\",\n  \"arte\": \"arte\",\n  \"artefacto\": \"artefact\",\n  \"artefato\": \"artefat\",\n  \"artefatos\": \"artefat\",\n  \"artéria\": \"artér\",\n  \"arterial\": \"arterial\",\n  \"artérias\": \"artér\",\n  \"artes\": \"artes\",\n  \"artesanal\": \"artesanal\",\n  \"artesanalmente\": \"artesanal\",\n  \"artesanato\": \"artesanat\",\n  \"artesão\": \"artesã\",\n  \"arthur\": \"arthur\",\n  \"articulação\": \"articul\",\n  \"articuladas\": \"articul\",\n  \"articulador\": \"articul\",\n  \"articuladores\": \"articul\",\n  \"articulando\": \"articul\",\n  \"articular\": \"articul\",\n  \"articulares\": \"articul\",\n  \"articulava\": \"articul\",\n  \"articulista\": \"articul\",\n  \"artificiais\": \"artific\",\n  \"artificial\": \"artificial\",\n  \"artificialmente\": \"artificial\",\n  \"artifício\": \"artifíci\",\n  \"artifícios\": \"artifíci\",\n  \"artigo\": \"artig\",\n  \"artigos\": \"artig\",\n  \"artilheiro\": \"artilheir\",\n  \"artista\": \"artist\",\n  \"artistas\": \"artist\",\n  \"artística\": \"artíst\",\n  \"artisticamente\": \"artist\",\n  \"artísticas\": \"artíst\",\n  \"artístico\": \"artíst\",\n  \"artrite\": \"artrit\",\n  \"arts\": \"arts\",\n  \"artur\": \"artur\",\n  \"aruba\": \"arub\",\n  \"arvin\": \"arvin\",\n  \"arvorar\": \"arvor\",\n  \"árvore\": \"árvor\",\n  \"árvores\": \"árvor\",\n  \"ary\": \"ary\",\n  \"as\": \"as\",\n  \"às\": \"às\",\n  \"asa\": \"asa\",\n  \"asas\": \"asas\",\n  \"ascedente\": \"ascedent\",\n  \"ascendência\": \"ascendent\",\n  \"ascensão\": \"ascensã\",\n  \"ascensorista\": \"ascensor\",\n  \"asceta\": \"ascet\",\n  \"ascética\": \"ascét\",\n  \"ascetismo\": \"ascet\",\n  \"ascher\": \"ascher\",\n  \"asemoções\": \"asemoçõ\",\n  \"asfaltadas\": \"asfalt\",\n  \"asfalto\": \"asfalt\",\n  \"ash\": \"ash\",\n  \"ashg\": \"ashg\",\n  \"ashkenazim\": \"ashkenazim\",\n  \"asia\": \"asi\",\n  \"ásia\": \"ási\",\n  \"asiática\": \"asiát\",\n  \"asiáticas\": \"asiát\",\n  \"asiático\": \"asiát\",\n  \"asiáticos\": \"asiát\",\n  \"asma\": \"asma\",\n  \"asmática\": \"asmát\",\n  \"asombrosos\": \"asombr\",\n  \"aspas\": \"aspas\",\n  \"aspecto\": \"aspect\",\n  \"aspectos\": \"aspect\",\n  \"aspem\": \"aspem\",\n  \"aspereza\": \"asper\",\n  \"áspero\": \"ásper\",\n  \"aspirantes\": \"aspir\",\n  \"aspirar\": \"aspir\",\n  \"aspirina\": \"aspirin\",\n  \"aspirinas\": \"aspirin\",\n  \"assalariado\": \"assalari\",\n  \"assalta\": \"assalt\",\n  \"assaltados\": \"assalt\",\n  \"assaltante\": \"assalt\",\n  \"assaltantes\": \"assalt\",\n  \"assalto\": \"assalt\",\n  \"assaltos\": \"assalt\",\n  \"assaltou\": \"assalt\",\n  \"assassinada\": \"assassin\",\n  \"assassinado\": \"assassin\",\n  \"assassinados\": \"assassin\",\n  \"assassinam\": \"assassin\",\n  \"assassinará\": \"assassin\",\n  \"assassinas\": \"assassin\",\n  \"assassinato\": \"assassinat\",\n  \"assassinatos\": \"assassinat\",\n  \"assassinavam\": \"assassin\",\n  \"assassino\": \"assassin\",\n  \"assassinos\": \"assassin\",\n  \"assassinou\": \"assassin\",\n  \"assediada\": \"assedi\",\n  \"assediado\": \"assedi\",\n  \"assediar\": \"assedi\",\n  \"assédio\": \"assédi\",\n  \"assegura\": \"assegur\",\n  \"assegurada\": \"assegur\",\n  \"assegurado\": \"assegur\",\n  \"assegurar\": \"assegur\",\n  \"asseguraram\": \"assegur\",\n  \"asseguraria\": \"assegur\",\n  \"assegurou\": \"assegur\",\n  \"assembléia\": \"assembl\",\n  \"assembleiano\": \"assembleian\",\n  \"assembléias\": \"assembl\",\n  \"assemelha\": \"assemelh\",\n  \"assemelham\": \"assemelh\",\n  \"assentadas\": \"assent\",\n  \"assentado\": \"assent\",\n  \"assentados\": \"assent\",\n  \"assentamento\": \"assent\",\n  \"assentamentos\": \"assent\",\n  \"assentando\": \"assent\",\n  \"assentar\": \"assent\",\n  \"assentaram\": \"assent\",\n  \"assento\": \"assent\",\n  \"assentos\": \"assent\",\n  \"assepsia\": \"asseps\",\n  \"assertivo\": \"assert\",\n  \"assessor\": \"assessor\",\n  \"assessora\": \"assessor\",\n  \"assessores\": \"assessor\",\n  \"assessoria\": \"assessor\",\n  \"assestaram\": \"assest\",\n  \"assexuado\": \"assexu\",\n  \"assídua\": \"assídu\",\n  \"assíduo\": \"assídu\",\n  \"assíduos\": \"assídu\",\n  \"assim\": \"assim\",\n  \"assimilação\": \"assimil\",\n  \"assimilados\": \"assimil\",\n  \"assimilar\": \"assimil\",\n  \"assimiláveis\": \"assimil\",\n  \"assina\": \"assin\",\n  \"assinada\": \"assin\",\n  \"assinado\": \"assin\",\n  \"assinados\": \"assin\",\n  \"assinala\": \"assinal\",\n  \"assinalado\": \"assinal\",\n  \"assinalar\": \"assinal\",\n  \"assinam\": \"assin\",\n  \"assinando\": \"assin\",\n  \"assinantes\": \"assin\",\n  \"assinar\": \"assin\",\n  \"assinaram\": \"assin\",\n  \"assinasse\": \"assin\",\n  \"assinatura\": \"assinatur\",\n  \"assinaturas\": \"assinatur\",\n  \"assinava\": \"assin\",\n  \"assine\": \"assin\",\n  \"assinei\": \"assin\",\n  \"assinou\": \"assin\",\n  \"assintomático\": \"assintomát\",\n  \"assíria\": \"assír\",\n  \"assírios\": \"assíri\",\n  \"assis\": \"assis\",\n  \"assiste\": \"assist\",\n  \"assistem\": \"assist\",\n  \"assistência\": \"assistent\",\n  \"assistenciais\": \"assistenc\",\n  \"assistente\": \"assistent\",\n  \"assistentes\": \"assistent\",\n  \"assisti\": \"assist\",\n  \"assistia\": \"assist\",\n  \"assistida\": \"assist\",\n  \"assistimos\": \"assist\",\n  \"assistindo\": \"assist\",\n  \"assistir\": \"assist\",\n  \"assistirá\": \"assist\",\n  \"assistiram\": \"assist\",\n  \"assistiria\": \"assist\",\n  \"assistiu\": \"assist\",\n  \"assisto\": \"assist\",\n  \"assoalho\": \"assoalh\",\n  \"associá\": \"associ\",\n  \"associação\": \"assoc\",\n  \"associações\": \"assoc\",\n  \"associada\": \"assoc\",\n  \"associadas\": \"assoc\",\n  \"associado\": \"assoc\",\n  \"associados\": \"assoc\",\n  \"associando\": \"assoc\",\n  \"associar\": \"assoc\",\n  \"association\": \"association\",\n  \"associo\": \"associ\",\n  \"associou\": \"assoc\",\n  \"assolando\": \"assol\",\n  \"assombra\": \"assombr\",\n  \"assombrado\": \"assombr\",\n  \"assombrar\": \"assombr\",\n  \"assombro\": \"assombr\",\n  \"assombrosa\": \"assombr\",\n  \"assombroso\": \"assombr\",\n  \"assoprou\": \"assopr\",\n  \"assuero\": \"assuer\",\n  \"assumam\": \"assum\",\n  \"assume\": \"assum\",\n  \"assumia\": \"assum\",\n  \"assumida\": \"assum\",\n  \"assumido\": \"assum\",\n  \"assumimos\": \"assum\",\n  \"assumindo\": \"assum\",\n  \"assumir\": \"assum\",\n  \"assumiram\": \"assum\",\n  \"assumiria\": \"assum\",\n  \"assumisse\": \"assum\",\n  \"assumissem\": \"assum\",\n  \"assumiu\": \"assum\",\n  \"assumo\": \"assum\",\n  \"assunção\": \"assunçã\",\n  \"assunto\": \"assunt\",\n  \"assuntos\": \"assunt\",\n  \"assusta\": \"assust\",\n  \"assustada\": \"assust\",\n  \"assustadas\": \"assust\",\n  \"assustado\": \"assust\",\n  \"assustadora\": \"assust\",\n  \"assustadoramente\": \"assustador\",\n  \"assustadores\": \"assust\",\n  \"assustados\": \"assust\",\n  \"assustam\": \"assust\",\n  \"assustar\": \"assust\",\n  \"assustaram\": \"assust\",\n  \"assustava\": \"assust\",\n  \"assuste\": \"assust\",\n  \"astolft\": \"astolft\",\n  \"aston\": \"aston\",\n  \"astral\": \"astral\",\n  \"astro\": \"astro\",\n  \"astrofísicos\": \"astrofís\",\n  \"astróloga\": \"astrólog\",\n  \"astrologia\": \"astrolog\",\n  \"astrólogos\": \"astrólog\",\n  \"astronauta\": \"astronaut\",\n  \"astronautas\": \"astronaut\",\n  \"astronáutica\": \"astronáut\",\n  \"astronomia\": \"astronom\",\n  \"astronômica\": \"astronôm\",\n  \"astronômicos\": \"astronôm\",\n  \"astrônomo\": \"astrônom\",\n  \"astrônomos\": \"astrônom\",\n  \"astros\": \"astros\",\n  \"astuto\": \"astut\",\n  \"at\": \"at\",\n  \"ata\": \"ata\",\n  \"atabaques\": \"atabaqu\",\n  \"ataca\": \"atac\",\n  \"atacado\": \"atac\",\n  \"atacados\": \"atac\",\n  \"atacam\": \"atac\",\n  \"atacando\": \"atac\",\n  \"atacante\": \"atac\",\n  \"atacar\": \"atac\",\n  \"atacaram\": \"atac\",\n  \"atacou\": \"atac\",\n  \"atadas\": \"atad\",\n  \"atalho\": \"atalh\",\n  \"ataque\": \"ataqu\",\n  \"ataques\": \"ataqu\",\n  \"atarefado\": \"ataref\",\n  \"atarracada\": \"atarrac\",\n  \"atarracado\": \"atarrac\",\n  \"atas\": \"atas\",\n  \"ataturk\": \"ataturk\",\n  \"até\": \"até\",\n  \"ateado\": \"ate\",\n  \"atear\": \"ate\",\n  \"ateliê\": \"ateli\",\n  \"atenas\": \"aten\",\n  \"atenção\": \"atençã\",\n  \"atenções\": \"atençõ\",\n  \"atende\": \"atend\",\n  \"atendem\": \"atend\",\n  \"atendendo\": \"atend\",\n  \"atender\": \"atend\",\n  \"atenderam\": \"atend\",\n  \"atendeu\": \"atend\",\n  \"atendi\": \"atend\",\n  \"atendia\": \"atend\",\n  \"atendida\": \"atend\",\n  \"atendidas\": \"atend\",\n  \"atendido\": \"atend\",\n  \"atendidos\": \"atend\",\n  \"atendimento\": \"atend\",\n  \"atendimentos\": \"atend\",\n  \"atenta\": \"atent\",\n  \"atentado\": \"atent\",\n  \"atentados\": \"atent\",\n  \"atentamente\": \"atent\",\n  \"atentaram\": \"atent\",\n  \"atentas\": \"atent\",\n  \"atente\": \"atent\",\n  \"atento\": \"atent\",\n  \"atentos\": \"atent\",\n  \"atenua\": \"atenu\",\n  \"atenuado\": \"atenu\",\n  \"atenuados\": \"atenu\",\n  \"atenuantes\": \"atenu\",\n  \"aterrisar\": \"aterris\",\n  \"aterrissado\": \"aterriss\",\n  \"aterrissagens\": \"aterrissagens\",\n  \"aterrissar\": \"aterriss\",\n  \"aterrorizá\": \"aterroriz\",\n  \"aterrorizar\": \"aterroriz\",\n  \"atesta\": \"atest\",\n  \"atestada\": \"atest\",\n  \"atestado\": \"atest\",\n  \"atestar\": \"atest\",\n  \"atibaia\": \"atiba\",\n  \"ática\": \"átic\",\n  \"átila\": \"átil\",\n  \"atilio\": \"atili\",\n  \"atílio\": \"atíli\",\n  \"atinge\": \"ating\",\n  \"atingi\": \"ating\",\n  \"atingia\": \"ating\",\n  \"atingida\": \"ating\",\n  \"atingidas\": \"ating\",\n  \"atingido\": \"ating\",\n  \"atingidos\": \"ating\",\n  \"atingir\": \"ating\",\n  \"atingiram\": \"ating\",\n  \"atingisse\": \"ating\",\n  \"atingissem\": \"ating\",\n  \"atingiu\": \"ating\",\n  \"atípica\": \"atíp\",\n  \"atípico\": \"atíp\",\n  \"atira\": \"atir\",\n  \"atirado\": \"atir\",\n  \"atirador\": \"atir\",\n  \"atirados\": \"atir\",\n  \"atirando\": \"atir\",\n  \"atirar\": \"atir\",\n  \"atirasse\": \"atir\",\n  \"atire\": \"atir\",\n  \"atirei\": \"atir\",\n  \"atirou\": \"atir\",\n  \"atitude\": \"atitud\",\n  \"atitudes\": \"atitud\",\n  \"ativa\": \"ativ\",\n  \"ativada\": \"ativ\",\n  \"ativadas\": \"ativ\",\n  \"ativamente\": \"ativ\",\n  \"ativar\": \"ativ\",\n  \"ativas\": \"ativ\",\n  \"atividade\": \"ativ\",\n  \"atividades\": \"ativ\",\n  \"ativista\": \"ativ\",\n  \"ativo\": \"ativ\",\n  \"ativos\": \"ativ\",\n  \"atlanta\": \"atlant\",\n  \"atlântico\": \"atlânt\",\n  \"atleta\": \"atlet\",\n  \"atletas\": \"atlet\",\n  \"atlética\": \"atlét\",\n  \"atlético\": \"atlét\",\n  \"atmosfera\": \"atmosf\",\n  \"atmosférica\": \"atmosfér\",\n  \"ato\": \"ato\",\n  \"atol\": \"atol\",\n  \"atolada\": \"atol\",\n  \"atolado\": \"atol\",\n  \"atoleiro\": \"atoleir\",\n  \"atoll\": \"atoll\",\n  \"atômica\": \"atôm\",\n  \"atômicas\": \"atôm\",\n  \"atômico\": \"atôm\",\n  \"atônito\": \"atônit\",\n  \"atônitos\": \"atônit\",\n  \"ator\": \"ator\",\n  \"atores\": \"ator\",\n  \"atormenta\": \"atorment\",\n  \"atormentada\": \"atorment\",\n  \"atormentado\": \"atorment\",\n  \"atormentam\": \"atorment\",\n  \"atormentar\": \"atorment\",\n  \"atormentou\": \"atorment\",\n  \"atos\": \"atos\",\n  \"atp\": \"atp\",\n  \"atraca\": \"atrac\",\n  \"atracadas\": \"atrac\",\n  \"atracados\": \"atrac\",\n  \"atração\": \"atraçã\",\n  \"atrações\": \"atraçõ\",\n  \"atraem\": \"atra\",\n  \"atraente\": \"atraent\",\n  \"atraentes\": \"atraent\",\n  \"atrai\": \"atra\",\n  \"atraída\": \"atraíd\",\n  \"atraídas\": \"atraíd\",\n  \"atraído\": \"atraíd\",\n  \"atraídos\": \"atraíd\",\n  \"atraindo\": \"atra\",\n  \"atrair\": \"atra\",\n  \"atrairá\": \"atra\",\n  \"atraíram\": \"atraír\",\n  \"atrairia\": \"atra\",\n  \"atraísse\": \"atraíss\",\n  \"atraiu\": \"atra\",\n  \"atrapalha\": \"atrapalh\",\n  \"atrapalhado\": \"atrapalh\",\n  \"atrapalhando\": \"atrapalh\",\n  \"atrapalhar\": \"atrapalh\",\n  \"atrapalharem\": \"atrapalh\",\n  \"atrapalhasse\": \"atrapalh\",\n  \"atrapalhem\": \"atrapalh\",\n  \"atrás\": \"atrás\",\n  \"atrasada\": \"atras\",\n  \"atrasadas\": \"atras\",\n  \"atrasado\": \"atras\",\n  \"atrasados\": \"atras\",\n  \"atrasar\": \"atras\",\n  \"atrasaria\": \"atras\",\n  \"atrasariam\": \"atras\",\n  \"atraso\": \"atras\",\n  \"atrasos\": \"atras\",\n  \"atrativo\": \"atrat\",\n  \"atrativos\": \"atrat\",\n  \"atravancado\": \"atravanc\",\n  \"através\": \"através\",\n  \"atravessa\": \"atravess\",\n  \"atravessado\": \"atravess\",\n  \"atravessar\": \"atravess\",\n  \"atravessaram\": \"atravess\",\n  \"atravessaria\": \"atravess\",\n  \"atravessava\": \"atravess\",\n  \"atravessavam\": \"atravess\",\n  \"atravessei\": \"atravess\",\n  \"atravessou\": \"atravess\",\n  \"atrelada\": \"atrel\",\n  \"atrelado\": \"atrel\",\n  \"atrelados\": \"atrel\",\n  \"atrelando\": \"atrel\",\n  \"atrelaram\": \"atrel\",\n  \"atreveu\": \"atrev\",\n  \"atribuem\": \"atribu\",\n  \"atribui\": \"atribu\",\n  \"atribuição\": \"atribuiçã\",\n  \"atribuições\": \"atribuiçõ\",\n  \"atribuída\": \"atribuíd\",\n  \"atribuído\": \"atribuíd\",\n  \"atribuídos\": \"atribuíd\",\n  \"atribuir\": \"atribu\",\n  \"atribuíram\": \"atribuír\",\n  \"atribuiu\": \"atribu\",\n  \"atribulada\": \"atribul\",\n  \"atributo\": \"atribut\",\n  \"atributos\": \"atribut\",\n  \"atrito\": \"atrit\",\n  \"atritos\": \"atrit\",\n  \"atriz\": \"atriz\",\n  \"atrizes\": \"atriz\",\n  \"atrocidade\": \"atroc\",\n  \"atrocidades\": \"atroc\",\n  \"atrofiadas\": \"atrofi\",\n  \"atrofiar\": \"atrofi\",\n  \"atropelado\": \"atropel\",\n  \"atropelamentos\": \"atropel\",\n  \"atropelou\": \"atropel\",\n  \"atroz\": \"atroz\",\n  \"atrriz\": \"atrriz\",\n  \"atua\": \"atu\",\n  \"atuação\": \"atuaçã\",\n  \"atuações\": \"atuaçõ\",\n  \"atuais\": \"atu\",\n  \"atual\": \"atual\",\n  \"atualidade\": \"atual\",\n  \"atualização\": \"atualiz\",\n  \"atualizando\": \"atualiz\",\n  \"atualizar\": \"atualiz\",\n  \"atualizei\": \"atualiz\",\n  \"atualizo\": \"atualiz\",\n  \"atualmente\": \"atual\",\n  \"atuam\": \"atu\",\n  \"atuando\": \"atu\",\n  \"atuante\": \"atuant\",\n  \"atuantes\": \"atuant\",\n  \"atuar\": \"atu\",\n  \"atuava\": \"atu\",\n  \"atuavam\": \"atu\",\n  \"atum\": \"atum\",\n  \"atuou\": \"atu\",\n  \"aturá\": \"atur\",\n  \"aturdido\": \"aturd\",\n  \"audaciosa\": \"audac\",\n  \"audacioso\": \"audac\",\n  \"audaciosos\": \"audac\",\n  \"auden\": \"auden\",\n  \"audi\": \"aud\",\n  \"audição\": \"audiçã\",\n  \"audiência\": \"audiênc\",\n  \"audiências\": \"audiênc\",\n  \"audio\": \"audi\",\n  \"audiovisuais\": \"audiovisu\",\n  \"auditiva\": \"audit\",\n  \"auditivo\": \"audit\",\n  \"auditor\": \"auditor\",\n  \"auditores\": \"auditor\",\n  \"auditoria\": \"auditor\",\n  \"auditorias\": \"auditor\",\n  \"auditório\": \"auditóri\",\n  \"auditórios\": \"auditóri\",\n  \"auditpharma\": \"auditpharm\",\n  \"auge\": \"aug\",\n  \"augusta\": \"august\",\n  \"augusti\": \"august\",\n  \"augusto\": \"august\",\n  \"aula\": \"aul\",\n  \"aulas\": \"aul\",\n  \"aumenta\": \"aument\",\n  \"aumentada\": \"aument\",\n  \"aumentado\": \"aument\",\n  \"aumentados\": \"aument\",\n  \"aumentam\": \"aument\",\n  \"aumentando\": \"aument\",\n  \"aumentar\": \"aument\",\n  \"aumentará\": \"aument\",\n  \"aumentaram\": \"aument\",\n  \"aumentarem\": \"aument\",\n  \"aumentaria\": \"aument\",\n  \"aumentasse\": \"aument\",\n  \"aumentava\": \"aument\",\n  \"aumente\": \"aument\",\n  \"aumentem\": \"aument\",\n  \"aumento\": \"aument\",\n  \"aumentos\": \"aument\",\n  \"aumentou\": \"aument\",\n  \"aura\": \"aur\",\n  \"áurea\": \"áur\",\n  \"aureliano\": \"aurelian\",\n  \"aurélio\": \"auréli\",\n  \"áureos\": \"áur\",\n  \"aurora\": \"auror\",\n  \"auschwitz\": \"auschwitz\",\n  \"ausência\": \"ausênc\",\n  \"ausências\": \"ausênc\",\n  \"ausente\": \"ausent\",\n  \"austeridade\": \"auster\",\n  \"austero\": \"auster\",\n  \"austin\": \"austin\",\n  \"austolft\": \"austolft\",\n  \"austrália\": \"austrál\",\n  \"australian\": \"australian\",\n  \"australiana\": \"australian\",\n  \"australiano\": \"australian\",\n  \"áustria\": \"áustr\",\n  \"austríaco\": \"austríac\",\n  \"austríacos\": \"austríac\",\n  \"autarquia\": \"autarqu\",\n  \"autárquica\": \"autárqu\",\n  \"autêntica\": \"autênt\",\n  \"autênticas\": \"autênt\",\n  \"autenticidade\": \"autent\",\n  \"autêntico\": \"autênt\",\n  \"autismo\": \"autism\",\n  \"auto\": \"aut\",\n  \"autobahns\": \"autobahns\",\n  \"autobiografia\": \"autobiograf\",\n  \"autobiográfico\": \"autobiográf\",\n  \"autocandidato\": \"autocandidat\",\n  \"autoconhecimento\": \"autoconhec\",\n  \"autocrítica\": \"autocrít\",\n  \"autóctone\": \"autócton\",\n  \"autóctones\": \"autócton\",\n  \"autodidata\": \"autodidat\",\n  \"autódromo\": \"autódrom\",\n  \"autogozação\": \"autogoz\",\n  \"autógrafo\": \"autógraf\",\n  \"autógrafos\": \"autógraf\",\n  \"automação\": \"autom\",\n  \"automática\": \"automát\",\n  \"automaticamente\": \"automat\",\n  \"automáticas\": \"automát\",\n  \"automático\": \"automát\",\n  \"automatizar\": \"automatiz\",\n  \"automedicação\": \"automedic\",\n  \"automedicar\": \"automedic\",\n  \"automobilismo\": \"automobil\",\n  \"automobilística\": \"automobilíst\",\n  \"automobilísticos\": \"automobilíst\",\n  \"automodelismo\": \"automodel\",\n  \"automotiva\": \"automot\",\n  \"automotivo\": \"automot\",\n  \"automóveis\": \"automóv\",\n  \"automóvel\": \"automóvel\",\n  \"autônoma\": \"autônom\",\n  \"autonomia\": \"autonom\",\n  \"autônomo\": \"autônom\",\n  \"autopeças\": \"autopec\",\n  \"autoproteção\": \"autoproteçã\",\n  \"autópsia\": \"autóps\",\n  \"autópsias\": \"autóps\",\n  \"autopsy\": \"autopsy\",\n  \"autor\": \"autor\",\n  \"autora\": \"autor\",\n  \"autorais\": \"autor\",\n  \"autoral\": \"autoral\",\n  \"autores\": \"autor\",\n  \"autoria\": \"autor\",\n  \"autoridade\": \"autor\",\n  \"autoridades\": \"autor\",\n  \"autoritária\": \"autoritár\",\n  \"autoritários\": \"autoritári\",\n  \"autorizá\": \"autoriz\",\n  \"autorização\": \"autoriz\",\n  \"autorizações\": \"autoriz\",\n  \"autorizada\": \"autoriz\",\n  \"autorizadas\": \"autoriz\",\n  \"autorizado\": \"autoriz\",\n  \"autorizados\": \"autoriz\",\n  \"autorizando\": \"autoriz\",\n  \"autorizar\": \"autoriz\",\n  \"autorizou\": \"autoriz\",\n  \"autos\": \"aut\",\n  \"autran\": \"autran\",\n  \"autuados\": \"autu\",\n  \"autuar\": \"autu\",\n  \"auxiliado\": \"auxili\",\n  \"auxiliar\": \"auxili\",\n  \"auxílio\": \"auxíli\",\n  \"auxiliou\": \"auxili\",\n  \"av\": \"av\",\n  \"avabens\": \"avabens\",\n  \"avaí\": \"ava\",\n  \"aval\": \"aval\",\n  \"avalanche\": \"avalanch\",\n  \"avalia\": \"aval\",\n  \"avaliação\": \"avali\",\n  \"avaliações\": \"avali\",\n  \"avaliada\": \"avali\",\n  \"avaliadas\": \"avali\",\n  \"avaliado\": \"avali\",\n  \"avaliadores\": \"avali\",\n  \"avaliados\": \"avali\",\n  \"avaliam\": \"aval\",\n  \"avaliando\": \"avali\",\n  \"avaliar\": \"avali\",\n  \"avaliarem\": \"avali\",\n  \"avaliou\": \"avali\",\n  \"avalista\": \"aval\",\n  \"avalizou\": \"avaliz\",\n  \"avallone\": \"avallon\",\n  \"avança\": \"avanc\",\n  \"avançada\": \"avanc\",\n  \"avançadas\": \"avanc\",\n  \"avançado\": \"avanc\",\n  \"avançados\": \"avanc\",\n  \"avançam\": \"avanc\",\n  \"avançando\": \"avanc\",\n  \"avançar\": \"avanc\",\n  \"avançaram\": \"avanc\",\n  \"avançavam\": \"avanc\",\n  \"avance\": \"avanc\",\n  \"avancini\": \"avancin\",\n  \"avanço\": \"avanc\",\n  \"avanços\": \"avanc\",\n  \"avançou\": \"avanc\",\n  \"avantajado\": \"avantaj\",\n  \"avante\": \"avant\",\n  \"avaré\": \"avar\",\n  \"avariado\": \"avari\",\n  \"avariou\": \"avari\",\n  \"avassaladora\": \"avassal\",\n  \"ave\": \"ave\",\n  \"avedon\": \"avedon\",\n  \"avelino\": \"avelin\",\n  \"avenida\": \"aven\",\n  \"avenidas\": \"aven\",\n  \"avenidona\": \"avenidon\",\n  \"aventura\": \"aventur\",\n  \"aventuram\": \"aventur\",\n  \"aventuras\": \"aventur\",\n  \"aventureiro\": \"aventureir\",\n  \"aventureiros\": \"aventureir\",\n  \"aventuresca\": \"aventuresc\",\n  \"aventurou\": \"aventur\",\n  \"avenue\": \"avenu\",\n  \"averiguadas\": \"averigu\",\n  \"avermelhada\": \"avermelh\",\n  \"avermelhadas\": \"avermelh\",\n  \"aversão\": \"aversã\",\n  \"aves\": \"aves\",\n  \"avessas\": \"avess\",\n  \"avesso\": \"avess\",\n  \"avestruz\": \"avestruz\",\n  \"avestruzes\": \"avestruz\",\n  \"avestuz\": \"avestuz\",\n  \"avi\": \"avi\",\n  \"aviação\": \"aviaçã\",\n  \"aviador\": \"aviador\",\n  \"avião\": \"aviã\",\n  \"aviãozinho\": \"aviãozinh\",\n  \"aviation\": \"aviation\",\n  \"ávida\": \"ávid\",\n  \"avidamente\": \"avid\",\n  \"ávidas\": \"ávid\",\n  \"avidez\": \"avidez\",\n  \"ávido\": \"ávid\",\n  \"ávila\": \"ávil\",\n  \"avinagrar\": \"avinagr\",\n  \"aviões\": \"aviõ\",\n  \"avisa\": \"avis\",\n  \"avisá\": \"avis\",\n  \"avisado\": \"avis\",\n  \"avisados\": \"avis\",\n  \"avisamos\": \"avis\",\n  \"avisando\": \"avis\",\n  \"avisar\": \"avis\",\n  \"avisasse\": \"avis\",\n  \"avisei\": \"avis\",\n  \"aviso\": \"avis\",\n  \"avisou\": \"avis\",\n  \"avista\": \"avist\",\n  \"avistados\": \"avist\",\n  \"avistara\": \"avist\",\n  \"avistaram\": \"avist\",\n  \"avistou\": \"avist\",\n  \"aviv\": \"aviv\",\n  \"avó\": \"avó\",\n  \"avô\": \"avô\",\n  \"avon\": \"avon\",\n  \"avós\": \"avós\",\n  \"avulsas\": \"avuls\",\n  \"award\": \"award\",\n  \"awards\": \"awards\",\n  \"axé\": \"axé\",\n  \"axila\": \"axil\",\n  \"axilas\": \"axil\",\n  \"ayres\": \"ayres\",\n  \"ayrton\": \"ayrton\",\n  \"azar\": \"azar\",\n  \"azarados\": \"azar\",\n  \"azarão\": \"azarã\",\n  \"azarar\": \"azar\",\n  \"azedam\": \"azed\",\n  \"azedo\": \"azed\",\n  \"azeitada\": \"azeit\",\n  \"azeitado\": \"azeit\",\n  \"azeitona\": \"azeiton\",\n  \"azeredo\": \"azered\",\n  \"azevedo\": \"azeved\",\n  \"azia\": \"azi\",\n  \"azt\": \"azt\",\n  \"azuis\": \"azu\",\n  \"azul\": \"azul\",\n  \"azulados\": \"azul\",\n  \"azulejos\": \"azulej\",\n  \"b\": \"b\",\n  \"ba\": \"ba\",\n  \"bá\": \"bá\",\n  \"baba\": \"bab\",\n  \"babá\": \"bab\",\n  \"babaçu\": \"babaçu\",\n  \"babados\": \"bab\",\n  \"babalaô\": \"babalaô\",\n  \"babalorixá\": \"babalorix\",\n  \"babaquice\": \"babaquic\",\n  \"babás\": \"babás\",\n  \"babel\": \"babel\",\n  \"baby\": \"baby\",\n  \"bacalhau\": \"bacalhau\",\n  \"bacana\": \"bacan\",\n  \"bach\": \"bach\",\n  \"bacha\": \"bach\",\n  \"bacharel\": \"bacharel\",\n  \"bacia\": \"bac\",\n  \"bacias\": \"bac\",\n  \"bacilógena\": \"bacilógen\",\n  \"back\": \"back\",\n  \"backar\": \"back\",\n  \"bactérias\": \"bactér\",\n  \"bad\": \"bad\",\n  \"bada\": \"bad\",\n  \"badalação\": \"badal\",\n  \"badalações\": \"badal\",\n  \"badalada\": \"badal\",\n  \"badaladas\": \"badal\",\n  \"badalado\": \"badal\",\n  \"badalados\": \"badal\",\n  \"badan\": \"badan\",\n  \"baden\": \"baden\",\n  \"baderna\": \"badern\",\n  \"baderneiros\": \"baderneir\",\n  \"badulaques\": \"badulaqu\",\n  \"bafo\": \"baf\",\n  \"baforada\": \"bafor\",\n  \"baforadas\": \"bafor\",\n  \"bag\": \"bag\",\n  \"bagageiro\": \"bagageir\",\n  \"bagageiros\": \"bagageir\",\n  \"bagagem\": \"bagag\",\n  \"bagagens\": \"bagagens\",\n  \"bagatela\": \"bagatel\",\n  \"bagrezinho\": \"bagrezinh\",\n  \"bagunça\": \"bagunc\",\n  \"bagunçar\": \"bagunc\",\n  \"bahamas\": \"baham\",\n  \"bahia\": \"bah\",\n  \"baht\": \"baht\",\n  \"bahts\": \"bahts\",\n  \"baía\": \"baí\",\n  \"baiana\": \"baian\",\n  \"baianinho\": \"baianinh\",\n  \"baiano\": \"baian\",\n  \"baianos\": \"baian\",\n  \"baigal\": \"baigal\",\n  \"baikal\": \"baikal\",\n  \"baikonur\": \"baikonur\",\n  \"bailarina\": \"bailarin\",\n  \"bailarino\": \"bailarin\",\n  \"bailarinos\": \"bailarin\",\n  \"baile\": \"bail\",\n  \"bailes\": \"bail\",\n  \"bailo\": \"bail\",\n  \"bairro\": \"bairr\",\n  \"bairros\": \"bairr\",\n  \"baisch\": \"baisch\",\n  \"baita\": \"bait\",\n  \"baixa\": \"baix\",\n  \"baixada\": \"baix\",\n  \"baixar\": \"baix\",\n  \"baixaria\": \"baix\",\n  \"baixarias\": \"baix\",\n  \"baixas\": \"baix\",\n  \"baixe\": \"baix\",\n  \"baixelas\": \"baixel\",\n  \"baixinha\": \"baixinh\",\n  \"baixinhas\": \"baixinh\",\n  \"baixinho\": \"baixinh\",\n  \"baixinhos\": \"baixinh\",\n  \"baixo\": \"baix\",\n  \"baixos\": \"baix\",\n  \"baixou\": \"baix\",\n  \"bala\": \"bal\",\n  \"balabanian\": \"balabanian\",\n  \"balada\": \"bal\",\n  \"balança\": \"balanc\",\n  \"balançado\": \"balanc\",\n  \"balançando\": \"balanc\",\n  \"balanço\": \"balanc\",\n  \"balanços\": \"balanc\",\n  \"balão\": \"balã\",\n  \"balas\": \"bal\",\n  \"balbuciam\": \"balbuc\",\n  \"balbuciar\": \"balbuc\",\n  \"balbuciou\": \"balbuc\",\n  \"balbúrdia\": \"balbúrd\",\n  \"balcão\": \"balcã\",\n  \"balconista\": \"balcon\",\n  \"balconistas\": \"balcon\",\n  \"baldaracci\": \"baldaracc\",\n  \"balde\": \"bald\",\n  \"baldes\": \"bald\",\n  \"baldio\": \"baldi\",\n  \"balé\": \"bal\",\n  \"baleado\": \"bal\",\n  \"balear\": \"bal\",\n  \"baleia\": \"bal\",\n  \"baleias\": \"bal\",\n  \"baleiro\": \"baleir\",\n  \"bali\": \"bal\",\n  \"balido\": \"bal\",\n  \"balizamento\": \"baliz\",\n  \"balizar\": \"baliz\",\n  \"balneário\": \"balneári\",\n  \"balneários\": \"balneári\",\n  \"balões\": \"balõ\",\n  \"balsa\": \"bals\",\n  \"bálsamos\": \"báls\",\n  \"baltimore\": \"baltimor\",\n  \"baluarte\": \"baluart\",\n  \"bamba\": \"bamb\",\n  \"bambas\": \"bamb\",\n  \"bambi\": \"bamb\",\n  \"bamerindus\": \"bamerindus\",\n  \"ban\": \"ban\",\n  \"banais\": \"ban\",\n  \"banal\": \"banal\",\n  \"banalização\": \"banaliz\",\n  \"banalizar\": \"banaliz\",\n  \"banana\": \"banan\",\n  \"bananas\": \"banan\",\n  \"bananeiras\": \"bananeir\",\n  \"banca\": \"banc\",\n  \"bancada\": \"banc\",\n  \"bancadas\": \"banc\",\n  \"bancados\": \"banc\",\n  \"bancaire\": \"bancair\",\n  \"bancar\": \"banc\",\n  \"bancária\": \"bancár\",\n  \"bancárias\": \"bancár\",\n  \"bancário\": \"bancári\",\n  \"bancários\": \"bancári\",\n  \"bancas\": \"banc\",\n  \"banco\": \"banc\",\n  \"bancos\": \"banc\",\n  \"bancou\": \"banc\",\n  \"band\": \"band\",\n  \"banda\": \"band\",\n  \"bandana\": \"bandan\",\n  \"bandas\": \"band\",\n  \"bandeia\": \"band\",\n  \"bandeira\": \"bandeir\",\n  \"bandeirantes\": \"bandeir\",\n  \"bandeiras\": \"bandeir\",\n  \"bandeirinha\": \"bandeirinh\",\n  \"bandeja\": \"bandej\",\n  \"bandeou\": \"band\",\n  \"bandido\": \"band\",\n  \"bandidos\": \"band\",\n  \"bando\": \"band\",\n  \"bandos\": \"band\",\n  \"banerj\": \"banerj\",\n  \"banespa\": \"banesp\",\n  \"bang\": \"bang\",\n  \"bangalôs\": \"bangalôs\",\n  \"bangcoc\": \"bangcoc\",\n  \"bangoc\": \"bangoc\",\n  \"bangu\": \"bangu\",\n  \"bangue\": \"bang\",\n  \"bangues\": \"bangu\",\n  \"banha\": \"banh\",\n  \"banhas\": \"banh\",\n  \"banheira\": \"banheir\",\n  \"banheiro\": \"banheir\",\n  \"banheiros\": \"banheir\",\n  \"banho\": \"banh\",\n  \"banhos\": \"banh\",\n  \"banido\": \"ban\",\n  \"banir\": \"ban\",\n  \"banis\": \"ban\",\n  \"baniu\": \"ban\",\n  \"bank\": \"bank\",\n  \"banking\": \"banking\",\n  \"banks\": \"banks\",\n  \"banque\": \"banqu\",\n  \"banqueiro\": \"banqueir\",\n  \"banqueiros\": \"banqueir\",\n  \"banqueteira\": \"banqueteir\",\n  \"bantim\": \"bantim\",\n  \"banzeco\": \"banzec\",\n  \"banzer\": \"banz\",\n  \"baptista\": \"baptist\",\n  \"baque\": \"baqu\",\n  \"bar\": \"bar\",\n  \"baralho\": \"baralh\",\n  \"barão\": \"barã\",\n  \"barassal\": \"barassal\",\n  \"barata\": \"barat\",\n  \"baratas\": \"barat\",\n  \"barateará\": \"barat\",\n  \"barateia\": \"barat\",\n  \"baratíssimos\": \"baratíss\",\n  \"barato\": \"barat\",\n  \"baratos\": \"barat\",\n  \"barba\": \"barb\",\n  \"barbacena\": \"barbacen\",\n  \"barbalho\": \"barbalh\",\n  \"barbara\": \"barb\",\n  \"barbaridades\": \"barbar\",\n  \"barbárie\": \"barbári\",\n  \"barbarismo\": \"barbar\",\n  \"barbariza\": \"barbariz\",\n  \"bárbaro\": \"bárbar\",\n  \"bárbaros\": \"bárbar\",\n  \"barbas\": \"barb\",\n  \"barbeado\": \"barb\",\n  \"barbear\": \"barb\",\n  \"barbearias\": \"barb\",\n  \"barbeiragem\": \"barbeirag\",\n  \"barbeiro\": \"barbeir\",\n  \"barbeiros\": \"barbeir\",\n  \"barbie\": \"barbi\",\n  \"barbitúricos\": \"barbitúr\",\n  \"barbosa\": \"barbos\",\n  \"barbudos\": \"barbud\",\n  \"barcaças\": \"barcac\",\n  \"barcelos\": \"barcel\",\n  \"barco\": \"barc\",\n  \"barcos\": \"barc\",\n  \"bardo\": \"bard\",\n  \"bares\": \"bar\",\n  \"barganha\": \"barganh\",\n  \"barganhar\": \"barganh\",\n  \"bariloche\": \"bariloch\",\n  \"barítono\": \"baríton\",\n  \"barkopolos\": \"barkopol\",\n  \"barman\": \"barman\",\n  \"barn\": \"barn\",\n  \"barnes\": \"barn\",\n  \"barões\": \"barõ\",\n  \"baron\": \"baron\",\n  \"baroni\": \"baron\",\n  \"barra\": \"barr\",\n  \"barraca\": \"barrac\",\n  \"barracas\": \"barrac\",\n  \"barraco\": \"barrac\",\n  \"barracões\": \"barracõ\",\n  \"barracos\": \"barrac\",\n  \"barrado\": \"barr\",\n  \"barrados\": \"barr\",\n  \"barragens\": \"barragens\",\n  \"barram\": \"barr\",\n  \"barranco\": \"barranc\",\n  \"barrancos\": \"barranc\",\n  \"barrando\": \"barr\",\n  \"barrar\": \"barr\",\n  \"barras\": \"barr\",\n  \"barraviera\": \"barravi\",\n  \"barre\": \"barr\",\n  \"barreira\": \"barreir\",\n  \"barreiras\": \"barreir\",\n  \"barrentas\": \"barrent\",\n  \"barreto\": \"barret\",\n  \"barriga\": \"barrig\",\n  \"barrigudo\": \"barrigud\",\n  \"barril\": \"barril\",\n  \"barris\": \"barr\",\n  \"barro\": \"barr\",\n  \"barros\": \"barr\",\n  \"barroso\": \"barros\",\n  \"bartolomeu\": \"bartolom\",\n  \"barulhento\": \"barulhent\",\n  \"barulhentos\": \"barulhent\",\n  \"barulho\": \"barulh\",\n  \"barulhos\": \"barulh\",\n  \"barzinho\": \"barzinh\",\n  \"barzinhos\": \"barzinh\",\n  \"basbaum\": \"basbaum\",\n  \"base\": \"bas\",\n  \"baseada\": \"bas\",\n  \"baseadas\": \"bas\",\n  \"baseado\": \"bas\",\n  \"baseia\": \"bas\",\n  \"baseiam\": \"bas\",\n  \"baseou\": \"bas\",\n  \"bases\": \"bas\",\n  \"básica\": \"básic\",\n  \"basicamente\": \"basic\",\n  \"básicas\": \"básic\",\n  \"básico\": \"básic\",\n  \"básicos\": \"básic\",\n  \"basílica\": \"basíl\",\n  \"basquete\": \"basquet\",\n  \"basso\": \"bass\",\n  \"bassoleil\": \"bassoleil\",\n  \"basta\": \"bast\",\n  \"bastante\": \"bastant\",\n  \"bastaria\": \"bast\",\n  \"bastasse\": \"bast\",\n  \"bastassem\": \"bast\",\n  \"bastava\": \"bast\",\n  \"bastidores\": \"bastidor\",\n  \"bastos\": \"bast\",\n  \"bastou\": \"bast\",\n  \"batalha\": \"batalh\",\n  \"batalham\": \"batalh\",\n  \"batalhão\": \"batalhã\",\n  \"batalhar\": \"batalh\",\n  \"batalhas\": \"batalh\",\n  \"batalhões\": \"batalhõ\",\n  \"batalhou\": \"batalh\",\n  \"batata\": \"batat\",\n  \"batatas\": \"batat\",\n  \"bate\": \"bat\",\n  \"batedores\": \"batedor\",\n  \"batelada\": \"batel\",\n  \"batem\": \"bat\",\n  \"batendo\": \"bat\",\n  \"batente\": \"batent\",\n  \"bater\": \"bat\",\n  \"baterá\": \"bat\",\n  \"bateria\": \"bat\",\n  \"baterias\": \"bat\",\n  \"baterista\": \"bater\",\n  \"batesse\": \"bat\",\n  \"bateu\": \"bat\",\n  \"bati\": \"bat\",\n  \"batia\": \"bat\",\n  \"batiam\": \"bat\",\n  \"batida\": \"bat\",\n  \"batido\": \"bat\",\n  \"batidos\": \"bat\",\n  \"batimento\": \"batiment\",\n  \"batismo\": \"batism\",\n  \"batismos\": \"batism\",\n  \"batista\": \"batist\",\n  \"batistas\": \"batist\",\n  \"batiza\": \"batiz\",\n  \"batizada\": \"batiz\",\n  \"batizadas\": \"batiz\",\n  \"batizado\": \"batiz\",\n  \"batizados\": \"batiz\",\n  \"batizou\": \"batiz\",\n  \"batom\": \"batom\",\n  \"batons\": \"batons\",\n  \"battistella\": \"battistell\",\n  \"batucada\": \"batuc\",\n  \"batucar\": \"batuc\",\n  \"batuta\": \"batut\",\n  \"baumgarten\": \"baumgarten\",\n  \"baunilha\": \"baunilh\",\n  \"bauzys\": \"bauzys\",\n  \"bavária\": \"bavár\",\n  \"bazaar\": \"baza\",\n  \"bazar\": \"baz\",\n  \"bb\": \"bb\",\n  \"bba\": \"bba\",\n  \"bbc\": \"bbc\",\n  \"bc\": \"bc\",\n  \"bchara\": \"bchar\",\n  \"bcn\": \"bcn\",\n  \"bcr\": \"bcr\",\n  \"be\": \"be\",\n  \"bê\": \"bê\",\n  \"bea\": \"bea\",\n  \"beak\": \"beak\",\n  \"beat\": \"beat\",\n  \"beatificação\": \"beatific\",\n  \"beatificados\": \"beatific\",\n  \"beatlemaníaco\": \"beatlemaníac\",\n  \"beatles\": \"beatl\",\n  \"beato\": \"beat\",\n  \"beatos\": \"beat\",\n  \"beatriz\": \"beatriz\",\n  \"beautiful\": \"beautiful\",\n  \"beauvoir\": \"beauvo\",\n  \"beaux\": \"beaux\",\n  \"bêbada\": \"bêb\",\n  \"bêbado\": \"bêb\",\n  \"bêbados\": \"bêb\",\n  \"bebam\": \"beb\",\n  \"bebe\": \"beb\",\n  \"bebê\": \"beb\",\n  \"bebedeira\": \"bebedeir\",\n  \"bebedeiras\": \"bebedeir\",\n  \"bebedouro\": \"bebedour\",\n  \"bebem\": \"beb\",\n  \"bebendo\": \"beb\",\n  \"beber\": \"beb\",\n  \"bebericar\": \"beberic\",\n  \"bebes\": \"beb\",\n  \"bebês\": \"bebês\",\n  \"bebesse\": \"beb\",\n  \"bebete\": \"bebet\",\n  \"bebeto\": \"bebet\",\n  \"bebia\": \"beb\",\n  \"bebiam\": \"beb\",\n  \"bebida\": \"beb\",\n  \"bebidas\": \"beb\",\n  \"bec\": \"bec\",\n  \"beca\": \"bec\",\n  \"becker\": \"beck\",\n  \"beco\": \"bec\",\n  \"becomes\": \"becom\",\n  \"becos\": \"bec\",\n  \"bege\": \"beg\",\n  \"beihai\": \"beiha\",\n  \"beija\": \"beij\",\n  \"beijá\": \"beij\",\n  \"beijado\": \"beij\",\n  \"beijando\": \"beij\",\n  \"beijar\": \"beij\",\n  \"beijaram\": \"beij\",\n  \"beijinhos\": \"beijinh\",\n  \"beijo\": \"beij\",\n  \"beijos\": \"beij\",\n  \"beijou\": \"beij\",\n  \"beira\": \"beir\",\n  \"beiram\": \"beir\",\n  \"beirute\": \"beirut\",\n  \"beisebol\": \"beisebol\",\n  \"beisiegel\": \"beisiegel\",\n  \"beitszaerhu\": \"beitszaerhu\",\n  \"bekaa\": \"beka\",\n  \"bekierman\": \"bekierman\",\n  \"bel\": \"bel\",\n  \"bela\": \"bel\",\n  \"belas\": \"bel\",\n  \"belchior\": \"belchior\",\n  \"beldades\": \"beldad\",\n  \"beleléu\": \"beleléu\",\n  \"belém\": \"belém\",\n  \"beleza\": \"belez\",\n  \"belezas\": \"belez\",\n  \"belga\": \"belg\",\n  \"bélgica\": \"bélgic\",\n  \"belgo\": \"belg\",\n  \"beliches\": \"belich\",\n  \"belicosa\": \"belic\",\n  \"belicoso\": \"belic\",\n  \"beliscam\": \"belisc\",\n  \"beliscamos\": \"belisc\",\n  \"beliscando\": \"belisc\",\n  \"beliscão\": \"beliscã\",\n  \"beliscar\": \"belisc\",\n  \"beliscões\": \"beliscõ\",\n  \"belíssimo\": \"belíssim\",\n  \"bell\": \"bell\",\n  \"bellini\": \"bellin\",\n  \"bellsouth\": \"bellsouth\",\n  \"belmondo\": \"belmond\",\n  \"belo\": \"bel\",\n  \"belos\": \"bel\",\n  \"beltrame\": \"beltram\",\n  \"beltran\": \"beltran\",\n  \"beltrão\": \"beltrã\",\n  \"bem\": \"bem\",\n  \"ben\": \"ben\",\n  \"benatti\": \"benatt\",\n  \"bênção\": \"bênçã\",\n  \"benedita\": \"benedit\",\n  \"benedito\": \"benedit\",\n  \"beneducci\": \"beneducc\",\n  \"benéfica\": \"benéf\",\n  \"beneficência\": \"beneficent\",\n  \"beneficente\": \"beneficent\",\n  \"beneficentes\": \"beneficent\",\n  \"beneficia\": \"benefic\",\n  \"beneficiada\": \"benefic\",\n  \"beneficiado\": \"benefic\",\n  \"beneficiados\": \"benefic\",\n  \"beneficiamento\": \"benefic\",\n  \"beneficiando\": \"benefic\",\n  \"beneficiar\": \"benefic\",\n  \"beneficiaram\": \"benefic\",\n  \"beneficiários\": \"beneficiári\",\n  \"beneficiava\": \"benefic\",\n  \"beneficiavam\": \"benefic\",\n  \"benefício\": \"benefíci\",\n  \"benefícios\": \"benefíci\",\n  \"beneficiou\": \"benefic\",\n  \"benéfico\": \"benéf\",\n  \"benesses\": \"ben\",\n  \"benevolência\": \"benevolent\",\n  \"benfeitor\": \"benfeitor\",\n  \"benfeitores\": \"benfeitor\",\n  \"benigna\": \"benign\",\n  \"benigno\": \"benign\",\n  \"benignos\": \"benign\",\n  \"benin\": \"benin\",\n  \"benitez\": \"benitez\",\n  \"benito\": \"benit\",\n  \"benja\": \"benj\",\n  \"benjamim\": \"benjamim\",\n  \"benjamin\": \"benjamin\",\n  \"bens\": \"bens\",\n  \"bento\": \"bent\",\n  \"benz\": \"benz\",\n  \"benzedeira\": \"benzedeir\",\n  \"benzedeiras\": \"benzedeir\",\n  \"benzedura\": \"benzedur\",\n  \"benzer\": \"benz\",\n  \"benzidos\": \"benz\",\n  \"beraldo\": \"berald\",\n  \"berço\": \"berc\",\n  \"beredo\": \"bered\",\n  \"berenice\": \"berenic\",\n  \"bergamin\": \"bergamin\",\n  \"bergen\": \"bergen\",\n  \"bergkamp\": \"bergkamp\",\n  \"bergman\": \"bergman\",\n  \"béria\": \"bér\",\n  \"berimbau\": \"berimbau\",\n  \"berimbaus\": \"berimbaus\",\n  \"berkeley\": \"berkeley\",\n  \"berlim\": \"berlim\",\n  \"berlinda\": \"berlind\",\n  \"bermuda\": \"bermud\",\n  \"bermudão\": \"bermudã\",\n  \"bermudas\": \"bermud\",\n  \"bernard\": \"bernard\",\n  \"bernarda\": \"bernard\",\n  \"bernardes\": \"bern\",\n  \"bernardino\": \"bernardin\",\n  \"bernardo\": \"bernard\",\n  \"beron\": \"beron\",\n  \"berra\": \"berr\",\n  \"berrante\": \"berrant\",\n  \"berrio\": \"berri\",\n  \"berro\": \"berr\",\n  \"bert\": \"bert\",\n  \"bertoli\": \"bertol\",\n  \"bertolozzi\": \"bertolozz\",\n  \"bertrand\": \"bertrand\",\n  \"besc\": \"besc\",\n  \"bessa\": \"bess\",\n  \"besserman\": \"besserman\",\n  \"bessie\": \"bessi\",\n  \"best\": \"best\",\n  \"besta\": \"best\",\n  \"besteira\": \"besteir\",\n  \"beta\": \"bet\",\n  \"betaendorfinas\": \"betaendorfin\",\n  \"betancourt\": \"betancourt\",\n  \"betânia\": \"betân\",\n  \"bete\": \"bet\",\n  \"beterraba\": \"beterrab\",\n  \"beth\": \"beth\",\n  \"bethânia\": \"bethân\",\n  \"bethesda\": \"bethesd\",\n  \"betim\": \"betim\",\n  \"betinho\": \"betinh\",\n  \"beto\": \"bet\",\n  \"betti\": \"bett\",\n  \"betto\": \"bett\",\n  \"betty\": \"betty\",\n  \"bétulas\": \"bétul\",\n  \"betzig\": \"betzig\",\n  \"bexiga\": \"bexig\",\n  \"bezerra\": \"bezerr\",\n  \"bezerros\": \"bezerr\",\n  \"bh\": \"bh\",\n  \"bhopal\": \"bhopal\",\n  \"bhumibol\": \"bhumibol\",\n  \"bia\": \"bia\",\n  \"bial\": \"bial\",\n  \"biancarelli\": \"biancarell\",\n  \"bianchi\": \"bianch\",\n  \"bianco\": \"bianc\",\n  \"biba\": \"bib\",\n  \"bibelôs\": \"bibelôs\",\n  \"bibi\": \"bib\",\n  \"bible\": \"bibl\",\n  \"bíblia\": \"bíbl\",\n  \"bíblias\": \"bíbl\",\n  \"bíblica\": \"bíblic\",\n  \"bíblicas\": \"bíblic\",\n  \"bíblico\": \"bíblic\",\n  \"bíblicos\": \"bíblic\",\n  \"bibliófila\": \"bibliófil\",\n  \"biblioteca\": \"bibliotec\",\n  \"bibliotecas\": \"bibliotec\",\n  \"bicampeão\": \"bicampeã\",\n  \"bicha\": \"bich\",\n  \"bicheiro\": \"bicheir\",\n  \"bicheiros\": \"bicheir\",\n  \"bichinhos\": \"bichinh\",\n  \"bicho\": \"bich\",\n  \"bichões\": \"bichõ\",\n  \"bichos\": \"bich\",\n  \"bichou\": \"bich\",\n  \"bicicleta\": \"biciclet\",\n  \"bicicletas\": \"biciclet\",\n  \"bico\": \"bic\",\n  \"bicos\": \"bic\",\n  \"bicudo\": \"bicud\",\n  \"bidê\": \"bid\",\n  \"bié\": \"bié\",\n  \"bienal\": \"bienal\",\n  \"bier\": \"bier\",\n  \"bife\": \"bif\",\n  \"big\": \"big\",\n  \"bigodão\": \"bigodã\",\n  \"bigode\": \"bigod\",\n  \"bigodudos\": \"bigodud\",\n  \"bijuterias\": \"bijut\",\n  \"bikini\": \"bikin\",\n  \"bikinianos\": \"bikinian\",\n  \"bilhão\": \"bilhã\",\n  \"bilhete\": \"bilhet\",\n  \"bilheteria\": \"bilhet\",\n  \"bilhetes\": \"bilhet\",\n  \"bilhões\": \"bilhõ\",\n  \"bilíngue\": \"bilíng\",\n  \"bilíngues\": \"bilíngu\",\n  \"bilionárias\": \"bilionár\",\n  \"bilionário\": \"bilionári\",\n  \"bilionários\": \"bilionári\",\n  \"bill\": \"bill\",\n  \"billings\": \"billings\",\n  \"billo\": \"bill\",\n  \"billy\": \"billy\",\n  \"bilro\": \"bilr\",\n  \"bimestre\": \"bimestr\",\n  \"bimotores\": \"bimotor\",\n  \"bind\": \"bind\",\n  \"bingo\": \"bing\",\n  \"binoche\": \"binoch\",\n  \"bio\": \"bio\",\n  \"biodiversidade\": \"biodivers\",\n  \"biografia\": \"biograf\",\n  \"biográfico\": \"biográf\",\n  \"biógrafos\": \"biógraf\",\n  \"bióloga\": \"biólog\",\n  \"biologia\": \"biolog\",\n  \"biológica\": \"biológ\",\n  \"biológicas\": \"biológ\",\n  \"biológico\": \"biológ\",\n  \"biológicos\": \"biológ\",\n  \"biólogo\": \"biólog\",\n  \"biólogos\": \"biólog\",\n  \"biomédica\": \"bioméd\",\n  \"biomédico\": \"bioméd\",\n  \"biópsia\": \"bióps\",\n  \"bioquímica\": \"bioquím\",\n  \"bioquímicos\": \"bioquím\",\n  \"biotecnologia\": \"biotecnolog\",\n  \"biotipo\": \"biotip\",\n  \"bip\": \"bip\",\n  \"bípede\": \"bíped\",\n  \"bips\": \"bips\",\n  \"biquíni\": \"biquín\",\n  \"biquínis\": \"biquín\",\n  \"birulio\": \"biruli\",\n  \"bis\": \"bis\",\n  \"bisavô\": \"bisavô\",\n  \"bisavós\": \"bisavós\",\n  \"bisbilhotar\": \"bisbilhot\",\n  \"biscoito\": \"biscoit\",\n  \"biscoitos\": \"biscoit\",\n  \"bismarck\": \"bismarck\",\n  \"bispa\": \"bisp\",\n  \"bispo\": \"bisp\",\n  \"bispos\": \"bisp\",\n  \"bissexto\": \"bissext\",\n  \"bissexuais\": \"bissexu\",\n  \"bistrô\": \"bistrô\",\n  \"bistrôs\": \"bistrôs\",\n  \"bisturi\": \"bistur\",\n  \"bita\": \"bit\",\n  \"bits\": \"bits\",\n  \"bixiga\": \"bixig\",\n  \"bizantina\": \"bizantin\",\n  \"bizantino\": \"bizantin\",\n  \"bizantinos\": \"bizantin\",\n  \"bizarra\": \"bizarr\",\n  \"bizarras\": \"bizarr\",\n  \"bizarrices\": \"bizarric\",\n  \"bizz\": \"bizz\",\n  \"bjorn\": \"bjorn\",\n  \"black\": \"black\",\n  \"blague\": \"blag\",\n  \"blair\": \"bla\",\n  \"blairo\": \"blair\",\n  \"blanc\": \"blanc\",\n  \"blanchard\": \"blanchard\",\n  \"blanco\": \"blanc\",\n  \"blanqui\": \"blanqu\",\n  \"blazer\": \"blaz\",\n  \"blazers\": \"blazers\",\n  \"blecaute\": \"blecaut\",\n  \"blecautes\": \"blecaut\",\n  \"blecher\": \"blech\",\n  \"blefe\": \"blef\",\n  \"blend\": \"blend\",\n  \"blends\": \"blends\",\n  \"blindado\": \"blind\",\n  \"blindados\": \"blind\",\n  \"blitz\": \"blitz\",\n  \"bloch\": \"bloch\",\n  \"blocker\": \"block\",\n  \"bloco\": \"bloc\",\n  \"blocos\": \"bloc\",\n  \"bloqueadoras\": \"bloqueador\",\n  \"bloqueadores\": \"bloqueador\",\n  \"bloquear\": \"bloqu\",\n  \"bloqueia\": \"bloqu\",\n  \"bloqueiam\": \"bloqu\",\n  \"bloqueio\": \"bloquei\",\n  \"bloquinho\": \"bloquinh\",\n  \"bloris\": \"blor\",\n  \"blue\": \"blu\",\n  \"blues\": \"blu\",\n  \"blumenau\": \"blumenau\",\n  \"blusa\": \"blus\",\n  \"blush\": \"blush\",\n  \"blushes\": \"blush\",\n  \"blusinhas\": \"blusinh\",\n  \"bmc\": \"bmc\",\n  \"bmg\": \"bmg\",\n  \"bmi\": \"bmi\",\n  \"bmw\": \"bmw\",\n  \"bndes\": \"bndes\",\n  \"boa\": \"boa\",\n  \"boainain\": \"boainain\",\n  \"boas\": \"boas\",\n  \"bôas\": \"bôas\",\n  \"boassu\": \"boassu\",\n  \"boataria\": \"boat\",\n  \"boate\": \"boat\",\n  \"boates\": \"boat\",\n  \"boatos\": \"boat\",\n  \"bob\": \"bob\",\n  \"boba\": \"bob\",\n  \"bobagem\": \"bobag\",\n  \"bobagens\": \"bobagens\",\n  \"bobalhões\": \"bobalhõ\",\n  \"bobear\": \"bob\",\n  \"bobeira\": \"bobeir\",\n  \"bobinho\": \"bobinh\",\n  \"bobinhos\": \"bobinh\",\n  \"bobo\": \"bob\",\n  \"bobs\": \"bobs\",\n  \"boca\": \"boc\",\n  \"bocadas\": \"boc\",\n  \"bocadinho\": \"bocadinh\",\n  \"bocado\": \"boc\",\n  \"bocaiúva\": \"bocaiúv\",\n  \"boçal\": \"boçal\",\n  \"bocarra\": \"bocarr\",\n  \"bocas\": \"boc\",\n  \"bode\": \"bod\",\n  \"bodoque\": \"bodoqu\",\n  \"body\": \"body\",\n  \"boeing\": \"boeing\",\n  \"boem\": \"boem\",\n  \"boemia\": \"boem\",\n  \"boêmio\": \"boêmi\",\n  \"boêmios\": \"boêmi\",\n  \"bogotá\": \"bogot\",\n  \"boi\": \"boi\",\n  \"bóia\": \"bói\",\n  \"boiando\": \"boi\",\n  \"boicotar\": \"boicot\",\n  \"boicote\": \"boicot\",\n  \"boieng\": \"boieng\",\n  \"bois\": \"bois\",\n  \"bola\": \"bol\",\n  \"bolachas\": \"bolach\",\n  \"bolada\": \"bol\",\n  \"bolão\": \"bolã\",\n  \"bolar\": \"bol\",\n  \"bolaram\": \"bol\",\n  \"bolas\": \"bol\",\n  \"bolero\": \"boler\",\n  \"boletim\": \"boletim\",\n  \"bolha\": \"bolh\",\n  \"bolhas\": \"bolh\",\n  \"bolinha\": \"bolinh\",\n  \"bolinhas\": \"bolinh\",\n  \"bolinhos\": \"bolinh\",\n  \"bolívia\": \"bolív\",\n  \"boliviana\": \"bolivian\",\n  \"boliviano\": \"bolivian\",\n  \"bolivianos\": \"bolivian\",\n  \"bolkan\": \"bolkan\",\n  \"bolo\": \"bol\",\n  \"bolonha\": \"bolonh\",\n  \"bolsa\": \"bols\",\n  \"bolsas\": \"bols\",\n  \"bolso\": \"bols\",\n  \"bolsos\": \"bols\",\n  \"bom\": \"bom\",\n  \"bomb\": \"bomb\",\n  \"bomba\": \"bomb\",\n  \"bombardeada\": \"bombard\",\n  \"bombardeado\": \"bombard\",\n  \"bombardear\": \"bombard\",\n  \"bombardeia\": \"bombard\",\n  \"bombardeio\": \"bombardei\",\n  \"bombardeiro\": \"bombardeir\",\n  \"bombardeiros\": \"bombardeir\",\n  \"bombardeou\": \"bombard\",\n  \"bombardier\": \"bombardi\",\n  \"bombas\": \"bomb\",\n  \"bombástica\": \"bombást\",\n  \"bombásticas\": \"bombást\",\n  \"bombástico\": \"bombást\",\n  \"bombeado\": \"bomb\",\n  \"bombear\": \"bomb\",\n  \"bombeiro\": \"bombeir\",\n  \"bombeiros\": \"bombeir\",\n  \"bombinha\": \"bombinh\",\n  \"bombinhas\": \"bombinh\",\n  \"bombons\": \"bombons\",\n  \"bompreço\": \"bomprec\",\n  \"bonadone\": \"bonadon\",\n  \"bonano\": \"bonan\",\n  \"bonde\": \"bond\",\n  \"bonder\": \"bond\",\n  \"bondes\": \"bond\",\n  \"bonds\": \"bonds\",\n  \"boné\": \"bon\",\n  \"boneca\": \"bonec\",\n  \"bonecas\": \"bonec\",\n  \"boneco\": \"bonec\",\n  \"bonecos\": \"bonec\",\n  \"bonequinhas\": \"bonequinh\",\n  \"bonés\": \"bonés\",\n  \"bonfim\": \"bonfim\",\n  \"boni\": \"bon\",\n  \"bonifácio\": \"bonifáci\",\n  \"boninho\": \"boninh\",\n  \"bonita\": \"bonit\",\n  \"bonitão\": \"bonitã\",\n  \"bonitas\": \"bonit\",\n  \"bonitinha\": \"bonitinh\",\n  \"bonitinho\": \"bonitinh\",\n  \"bonito\": \"bonit\",\n  \"bonitões\": \"bonitõ\",\n  \"bonitos\": \"bonit\",\n  \"bonn\": \"bonn\",\n  \"bonomi\": \"bonom\",\n  \"bons\": \"bons\",\n  \"bonzinho\": \"bonzinh\",\n  \"book\": \"book\",\n  \"books\": \"books\",\n  \"boom\": \"boom\",\n  \"booz\": \"booz\",\n  \"bora\": \"bor\",\n  \"borba\": \"borb\",\n  \"borboleta\": \"borbolet\",\n  \"borda\": \"bord\",\n  \"bordado\": \"bord\",\n  \"bordão\": \"bordã\",\n  \"bordas\": \"bord\",\n  \"bordeaux\": \"bordeaux\",\n  \"bordo\": \"bord\",\n  \"bordões\": \"bordõ\",\n  \"borg\": \"borg\",\n  \"borges\": \"borg\",\n  \"borghese\": \"borghes\",\n  \"boris\": \"bor\",\n  \"borja\": \"borj\",\n  \"borjalo\": \"borjal\",\n  \"bornéu\": \"bornéu\",\n  \"bornhausen\": \"bornhausen\",\n  \"borra\": \"borr\",\n  \"borracha\": \"borrach\",\n  \"borrada\": \"borr\",\n  \"borrados\": \"borr\",\n  \"borrifada\": \"borrif\",\n  \"borsoi\": \"borso\",\n  \"bosc\": \"bosc\",\n  \"bosco\": \"bosc\",\n  \"boseggia\": \"bosegg\",\n  \"bósforo\": \"bósfor\",\n  \"bósnia\": \"bósn\",\n  \"bosques\": \"bosqu\",\n  \"bossa\": \"boss\",\n  \"boston\": \"boston\",\n  \"bota\": \"bot\",\n  \"botafogo\": \"botafog\",\n  \"botando\": \"bot\",\n  \"botânico\": \"botân\",\n  \"botão\": \"botã\",\n  \"botar\": \"bot\",\n  \"botas\": \"bot\",\n  \"bote\": \"bot\",\n  \"boteco\": \"botec\",\n  \"botecos\": \"botec\",\n  \"botei\": \"bot\",\n  \"botelho\": \"botelh\",\n  \"botequim\": \"botequim\",\n  \"botero\": \"boter\",\n  \"boticelli\": \"boticell\",\n  \"botijão\": \"botijã\",\n  \"botinha\": \"botinh\",\n  \"boto\": \"bot\",\n  \"botões\": \"botõ\",\n  \"botou\": \"bot\",\n  \"botteghin\": \"botteghin\",\n  \"botton\": \"botton\",\n  \"botucatu\": \"botucatu\",\n  \"boucinhas\": \"boucinh\",\n  \"boulevard\": \"boulevard\",\n  \"bouquet\": \"bouquet\",\n  \"bourget\": \"bourget\",\n  \"bouterse\": \"bouters\",\n  \"bovary\": \"bovary\",\n  \"bovespa\": \"bovesp\",\n  \"bovina\": \"bovin\",\n  \"bovino\": \"bovin\",\n  \"bowie\": \"bowi\",\n  \"bowl\": \"bowl\",\n  \"box\": \"box\",\n  \"boxe\": \"box\",\n  \"boxeador\": \"boxeador\",\n  \"boxes\": \"box\",\n  \"boy\": \"boy\",\n  \"bozano\": \"bozan\",\n  \"bozzano\": \"bozzan\",\n  \"bps\": \"bps\",\n  \"br\": \"br\",\n  \"braçal\": \"braçal\",\n  \"braço\": \"brac\",\n  \"braços\": \"brac\",\n  \"bradesco\": \"bradesc\",\n  \"bradicinina\": \"bradicinin\",\n  \"bradley\": \"bradley\",\n  \"bradou\": \"brad\",\n  \"braga\": \"brag\",\n  \"bragança\": \"braganc\",\n  \"braganças\": \"braganc\",\n  \"brahma\": \"brahm\",\n  \"branca\": \"branc\",\n  \"brancaleone\": \"brancaleon\",\n  \"brancas\": \"branc\",\n  \"branco\": \"branc\",\n  \"brancos\": \"branc\",\n  \"branda\": \"brand\",\n  \"brandão\": \"brandã\",\n  \"brandindo\": \"brand\",\n  \"brando\": \"brand\",\n  \"brandt\": \"brandt\",\n  \"branqueamento\": \"branqueament\",\n  \"branquinho\": \"branquinh\",\n  \"brant\": \"brant\",\n  \"brantes\": \"brant\",\n  \"braquiterapia\": \"braquiterap\",\n  \"brás\": \"brás\",\n  \"brasil\": \"brasil\",\n  \"brasilândia\": \"brasilând\",\n  \"brasileira\": \"brasileir\",\n  \"brasileirada\": \"brasileir\",\n  \"brasileiras\": \"brasileir\",\n  \"brasileirinho\": \"brasileirinh\",\n  \"brasileirismo\": \"brasileir\",\n  \"brasileiro\": \"brasileir\",\n  \"brasileiros\": \"brasileir\",\n  \"brasília\": \"brasíl\",\n  \"brasiliano\": \"brasilian\",\n  \"brasílicas\": \"brasíl\",\n  \"brasilidade\": \"brasil\",\n  \"brasiliense\": \"brasiliens\",\n  \"brasiloche\": \"brasiloch\",\n  \"brasilpar\": \"brasilp\",\n  \"brasmarket\": \"brasmarket\",\n  \"brava\": \"brav\",\n  \"bravio\": \"bravi\",\n  \"bravo\": \"brav\",\n  \"bravos\": \"brav\",\n  \"braz\": \"braz\",\n  \"brazel\": \"brazel\",\n  \"brazil\": \"brazil\",\n  \"braziliense\": \"braziliens\",\n  \"brazucas\": \"brazuc\",\n  \"brca\": \"brca\",\n  \"brecar\": \"brec\",\n  \"brecha\": \"brech\",\n  \"brechas\": \"brech\",\n  \"brecht\": \"brecht\",\n  \"brega\": \"breg\",\n  \"breguices\": \"breguic\",\n  \"brejo\": \"brej\",\n  \"breno\": \"bren\",\n  \"bressan\": \"bressan\",\n  \"bresser\": \"bress\",\n  \"bretanha\": \"bretanh\",\n  \"brett\": \"brett\",\n  \"breuer\": \"breu\",\n  \"breve\": \"brev\",\n  \"brevemente\": \"brevement\",\n  \"breves\": \"brev\",\n  \"brevetado\": \"brevet\",\n  \"brevetagem\": \"brevetag\",\n  \"briefing\": \"briefing\",\n  \"briga\": \"brig\",\n  \"brigada\": \"brig\",\n  \"brigadeiro\": \"brigadeir\",\n  \"brigado\": \"brig\",\n  \"brigam\": \"brig\",\n  \"brigamos\": \"brig\",\n  \"brigar\": \"brig\",\n  \"brigaram\": \"brig\",\n  \"brigas\": \"brig\",\n  \"brigávamos\": \"brig\",\n  \"brigou\": \"brig\",\n  \"briguei\": \"brigu\",\n  \"briguenta\": \"briguent\",\n  \"brilha\": \"brilh\",\n  \"brilham\": \"brilh\",\n  \"brilhando\": \"brilh\",\n  \"brilhante\": \"brilhant\",\n  \"brilhantes\": \"brilhant\",\n  \"brilhantina\": \"brilhantin\",\n  \"brilho\": \"brilh\",\n  \"brinca\": \"brinc\",\n  \"brincadeira\": \"brincadeir\",\n  \"brincadeiras\": \"brincadeir\",\n  \"brincalhão\": \"brincalhã\",\n  \"brincam\": \"brinc\",\n  \"brincando\": \"brinc\",\n  \"brincar\": \"brinc\",\n  \"brincava\": \"brinc\",\n  \"brinco\": \"brinc\",\n  \"brincos\": \"brinc\",\n  \"brincou\": \"brinc\",\n  \"brindados\": \"brind\",\n  \"brinde\": \"brind\",\n  \"brindes\": \"brind\",\n  \"brinque\": \"brinqu\",\n  \"brinquedo\": \"brinqued\",\n  \"brinquedos\": \"brinqued\",\n  \"brinquinho\": \"brinquinh\",\n  \"brisa\": \"bris\",\n  \"brissac\": \"brissac\",\n  \"brita\": \"brit\",\n  \"britânica\": \"britân\",\n  \"britânico\": \"britân\",\n  \"britânicos\": \"britân\",\n  \"britannia\": \"britann\",\n  \"british\": \"british\",\n  \"brito\": \"brit\",\n  \"brittes\": \"britt\",\n  \"britto\": \"britt\",\n  \"brizola\": \"brizol\",\n  \"broadway\": \"broadway\",\n  \"brocas\": \"broc\",\n  \"brocca\": \"brocc\",\n  \"brochar\": \"broch\",\n  \"brócolis\": \"brócol\",\n  \"broderbund\": \"broderbund\",\n  \"bronca\": \"bronc\",\n  \"broncas\": \"bronc\",\n  \"bronco\": \"bronc\",\n  \"broncodilatadores\": \"broncodilat\",\n  \"brondi\": \"brond\",\n  \"bronquite\": \"bronquit\",\n  \"bronstein\": \"bronstein\",\n  \"bronx\": \"bronx\",\n  \"bronze\": \"bronz\",\n  \"bronzeada\": \"bronz\",\n  \"bronzeado\": \"bronz\",\n  \"bronzeadores\": \"bronzeador\",\n  \"bronzeamento\": \"bronzeament\",\n  \"brookhaven\": \"brookhaven\",\n  \"brooklin\": \"brooklin\",\n  \"brooklyn\": \"brooklyn\",\n  \"bros\": \"bros\",\n  \"brotado\": \"brot\",\n  \"brotam\": \"brot\",\n  \"brotando\": \"brot\",\n  \"brotar\": \"brot\",\n  \"brotará\": \"brot\",\n  \"brotaram\": \"brot\",\n  \"brotas\": \"brot\",\n  \"brotero\": \"broter\",\n  \"brothers\": \"brothers\",\n  \"broto\": \"brot\",\n  \"brotou\": \"brot\",\n  \"brown\": \"brown\",\n  \"browser\": \"brows\",\n  \"browsing\": \"browsing\",\n  \"bruce\": \"bruc\",\n  \"bruços\": \"bruc\",\n  \"brueghel\": \"brueghel\",\n  \"bruguera\": \"brugu\",\n  \"brum\": \"brum\",\n  \"brumas\": \"brum\",\n  \"bruna\": \"brun\",\n  \"brunet\": \"brunet\",\n  \"brunete\": \"brunet\",\n  \"brunini\": \"brunin\",\n  \"brunnhilde\": \"brunnhild\",\n  \"bruno\": \"brun\",\n  \"bruns\": \"bruns\",\n  \"bruscamente\": \"brusc\",\n  \"bruscas\": \"brusc\",\n  \"brusque\": \"brusqu\",\n  \"brut\": \"brut\",\n  \"bruta\": \"brut\",\n  \"brutais\": \"brut\",\n  \"brutal\": \"brutal\",\n  \"brutalidade\": \"brutal\",\n  \"brutalmente\": \"brutal\",\n  \"bruto\": \"brut\",\n  \"bruxa\": \"brux\",\n  \"bruxas\": \"brux\",\n  \"bruxismo\": \"bruxism\",\n  \"bryan\": \"bryan\",\n  \"bu\": \"bu\",\n  \"buaiz\": \"buaiz\",\n  \"buarque\": \"buarqu\",\n  \"bucal\": \"bucal\",\n  \"bucci\": \"bucc\",\n  \"buchadas\": \"buch\",\n  \"buchecha\": \"buchech\",\n  \"bucho\": \"buch\",\n  \"buchwald\": \"buchwald\",\n  \"buckup\": \"buckup\",\n  \"bucólica\": \"bucól\",\n  \"bucolicamente\": \"bucol\",\n  \"budismo\": \"budism\",\n  \"budista\": \"budist\",\n  \"buena\": \"buen\",\n  \"bueno\": \"buen\",\n  \"buenos\": \"buen\",\n  \"búfalo\": \"búfal\",\n  \"bufantes\": \"bufant\",\n  \"bufê\": \"buf\",\n  \"buger\": \"bug\",\n  \"bugigangas\": \"bugigang\",\n  \"buick\": \"buick\",\n  \"buíque\": \"buíqu\",\n  \"bujanda\": \"bujand\",\n  \"bula\": \"bul\",\n  \"buléu\": \"buléu\",\n  \"bulgari\": \"bulgar\",\n  \"bulgária\": \"bulgár\",\n  \"bulhufas\": \"bulhuf\",\n  \"bum\": \"bum\",\n  \"bumbum\": \"bumbum\",\n  \"bumbuns\": \"bumbuns\",\n  \"bunda\": \"bund\",\n  \"bundas\": \"bund\",\n  \"bundinha\": \"bundinh\",\n  \"bundudo\": \"bundud\",\n  \"bunkers\": \"bunkers\",\n  \"buquê\": \"buqu\",\n  \"buraco\": \"burac\",\n  \"buracos\": \"burac\",\n  \"buraqueira\": \"buraqueir\",\n  \"buraqueiras\": \"buraqueir\",\n  \"burgos\": \"burg\",\n  \"burguesa\": \"burgues\",\n  \"burgueses\": \"burgues\",\n  \"buriatas\": \"buriat\",\n  \"buriátia\": \"buriát\",\n  \"buriatos\": \"buriat\",\n  \"burin\": \"burin\",\n  \"buritis\": \"burit\",\n  \"burla\": \"burl\",\n  \"burlando\": \"burl\",\n  \"burlesco\": \"burlesc\",\n  \"burocracia\": \"burocrac\",\n  \"burocrata\": \"burocrat\",\n  \"burocratas\": \"burocrat\",\n  \"burocráticos\": \"burocrát\",\n  \"burra\": \"burr\",\n  \"burrice\": \"burric\",\n  \"burro\": \"burr\",\n  \"bursite\": \"bursit\",\n  \"buruma\": \"burum\",\n  \"busca\": \"busc\",\n  \"buscá\": \"busc\",\n  \"buscam\": \"busc\",\n  \"buscando\": \"busc\",\n  \"buscar\": \"busc\",\n  \"buscaram\": \"busc\",\n  \"buscava\": \"busc\",\n  \"buscopan\": \"buscopan\",\n  \"buscou\": \"busc\",\n  \"bush\": \"bush\",\n  \"business\": \"business\",\n  \"buss\": \"buss\",\n  \"bússola\": \"bússol\",\n  \"bussunda\": \"bussund\",\n  \"bustamante\": \"bustam\",\n  \"busto\": \"bust\",\n  \"bustos\": \"bust\",\n  \"butantã\": \"butantã\",\n  \"butantan\": \"butantan\",\n  \"butão\": \"butã\",\n  \"butique\": \"butiqu\",\n  \"butox\": \"butox\",\n  \"buttons\": \"buttons\",\n  \"buuááááá\": \"buuáááá\",\n  \"buying\": \"buying\",\n  \"buzaid\": \"buzaid\",\n  \"búzios\": \"búzi\",\n  \"bvrj\": \"bvrj\",\n  \"by\": \"by\",\n  \"bydlowski\": \"bydlowsk\",\n  \"bye\": \"bye\",\n  \"bytes\": \"bytes\",\n  \"c\": \"c\",\n  \"cá\": \"cá\",\n  \"caatinga\": \"caating\",\n  \"cabana\": \"caban\",\n  \"cabanas\": \"caban\",\n  \"cabaré\": \"cabar\",\n  \"cabarés\": \"cabarés\",\n  \"cabe\": \"cab\",\n  \"cabeça\": \"cabec\",\n  \"cabeças\": \"cabec\",\n  \"cabeceira\": \"cabeceir\",\n  \"cabeçudos\": \"cabeçud\",\n  \"cabeleira\": \"cabeleir\",\n  \"cabeleireira\": \"cabeleireir\",\n  \"cabeleireiro\": \"cabeleireir\",\n  \"cabelereiro\": \"cabelereir\",\n  \"cabello\": \"cabell\",\n  \"cabelo\": \"cabel\",\n  \"cabelos\": \"cabel\",\n  \"cabeludo\": \"cabelud\",\n  \"cabem\": \"cab\",\n  \"cabendo\": \"cab\",\n  \"caber\": \"cab\",\n  \"caberá\": \"cab\",\n  \"caberão\": \"cab\",\n  \"caberia\": \"cab\",\n  \"cabernet\": \"cabernet\",\n  \"cabide\": \"cabid\",\n  \"cabine\": \"cabin\",\n  \"cabines\": \"cabin\",\n  \"cabíria\": \"cabír\",\n  \"cabisbaixo\": \"cabisbaix\",\n  \"cabo\": \"cab\",\n  \"caboclo\": \"cabocl\",\n  \"cabos\": \"cab\",\n  \"cabotagem\": \"cabotag\",\n  \"cabra\": \"cabr\",\n  \"cabral\": \"cabral\",\n  \"cabras\": \"cabr\",\n  \"cabrini\": \"cabrin\",\n  \"cabriolet\": \"cabriolet\",\n  \"cabrita\": \"cabrit\",\n  \"cabritinhas\": \"cabritinh\",\n  \"cabuçu\": \"cabuçu\",\n  \"caça\": \"cac\",\n  \"cacá\": \"cac\",\n  \"caçada\": \"cac\",\n  \"caçado\": \"cac\",\n  \"caçador\": \"caçador\",\n  \"caçadores\": \"caçador\",\n  \"caçam\": \"cac\",\n  \"caçando\": \"cac\",\n  \"caçar\": \"cac\",\n  \"caçaram\": \"cac\",\n  \"caças\": \"cac\",\n  \"cacau\": \"cacau\",\n  \"cáceres\": \"các\",\n  \"cachaça\": \"cachac\",\n  \"cachaças\": \"cachac\",\n  \"cachê\": \"cach\",\n  \"cacheados\": \"cach\",\n  \"cachimbo\": \"cachimb\",\n  \"cachinhos\": \"cachinh\",\n  \"cachoeira\": \"cachoeir\",\n  \"cachoeiras\": \"cachoeir\",\n  \"cachorrinho\": \"cachorrinh\",\n  \"cachorrinhos\": \"cachorrinh\",\n  \"cachorro\": \"cachorr\",\n  \"cachorros\": \"cachorr\",\n  \"cacife\": \"cacif\",\n  \"cacique\": \"caciqu\",\n  \"caciques\": \"caciqu\",\n  \"cacoetes\": \"cacoet\",\n  \"cacos\": \"cac\",\n  \"cacto\": \"cact\",\n  \"cactos\": \"cact\",\n  \"caçula\": \"caçul\",\n  \"cada\": \"cad\",\n  \"cadastradas\": \"cadastr\",\n  \"cadastrado\": \"cadastr\",\n  \"cadastrados\": \"cadastr\",\n  \"cadastramento\": \"cadastr\",\n  \"cadastrando\": \"cadastr\",\n  \"cadastrar\": \"cadastr\",\n  \"cadastraram\": \"cadastr\",\n  \"cadastro\": \"cadastr\",\n  \"cadáver\": \"cadáv\",\n  \"cadáveres\": \"cadáv\",\n  \"cadavéricos\": \"cadavér\",\n  \"cade\": \"cad\",\n  \"cadê\": \"cad\",\n  \"cadeia\": \"cad\",\n  \"cadeira\": \"cadeir\",\n  \"cadeiras\": \"cadeir\",\n  \"caderneta\": \"cadernet\",\n  \"cadernetas\": \"cadernet\",\n  \"caderno\": \"cadern\",\n  \"cadernos\": \"cadern\",\n  \"cadet\": \"cadet\",\n  \"cadetes\": \"cadet\",\n  \"cadillac\": \"cadillac\",\n  \"cádmio\": \"cádmi\",\n  \"cae\": \"cae\",\n  \"caem\": \"caem\",\n  \"caemi\": \"caem\",\n  \"cães\": \"cã\",\n  \"caesar\": \"caes\",\n  \"caetano\": \"caetan\",\n  \"café\": \"caf\",\n  \"cafeicultor\": \"cafeicultor\",\n  \"cafeicultores\": \"cafeicultor\",\n  \"cafés\": \"cafés\",\n  \"cafetão\": \"cafetã\",\n  \"cafeterie\": \"cafeteri\",\n  \"cafetina\": \"cafetin\",\n  \"cafezais\": \"cafez\",\n  \"cafezinho\": \"cafezinh\",\n  \"cafezinhos\": \"cafezinh\",\n  \"caffé\": \"caff\",\n  \"cafonice\": \"cafonic\",\n  \"cagada\": \"cag\",\n  \"cai\": \"cai\",\n  \"caí\": \"caí\",\n  \"caía\": \"caí\",\n  \"caído\": \"caíd\",\n  \"caiena\": \"caien\",\n  \"caindo\": \"caind\",\n  \"caio\": \"cai\",\n  \"caipira\": \"caip\",\n  \"caipirinha\": \"caipirinh\",\n  \"cair\": \"cair\",\n  \"cairá\": \"cair\",\n  \"caíram\": \"caír\",\n  \"cairia\": \"cair\",\n  \"cairo\": \"cair\",\n  \"cais\": \"cais\",\n  \"caísse\": \"caíss\",\n  \"caiu\": \"caiu\",\n  \"caixa\": \"caix\",\n  \"caixão\": \"caixã\",\n  \"caixas\": \"caix\",\n  \"caixinha\": \"caixinh\",\n  \"caixotes\": \"caixot\",\n  \"cajá\": \"caj\",\n  \"cajado\": \"caj\",\n  \"cajueiro\": \"cajueir\",\n  \"cakoff\": \"cakoff\",\n  \"cal\": \"cal\",\n  \"calabria\": \"calabr\",\n  \"caladão\": \"caladã\",\n  \"calado\": \"cal\",\n  \"calados\": \"cal\",\n  \"calamina\": \"calamin\",\n  \"calamitosa\": \"calamit\",\n  \"calamitoso\": \"calamit\",\n  \"calango\": \"calang\",\n  \"calar\": \"cal\",\n  \"calça\": \"calc\",\n  \"calcada\": \"calc\",\n  \"calçada\": \"calc\",\n  \"calçadas\": \"calc\",\n  \"calcado\": \"calc\",\n  \"calçados\": \"calc\",\n  \"calcanhar\": \"calcanh\",\n  \"calção\": \"calçã\",\n  \"calçaram\": \"calc\",\n  \"calcária\": \"calcár\",\n  \"calças\": \"calc\",\n  \"calcinha\": \"calcinh\",\n  \"cálcio\": \"cálci\",\n  \"calcula\": \"calcul\",\n  \"calculada\": \"calcul\",\n  \"calculado\": \"calcul\",\n  \"calculadora\": \"calcul\",\n  \"calculadoras\": \"calcul\",\n  \"calculados\": \"calcul\",\n  \"calculam\": \"calcul\",\n  \"calcular\": \"calcul\",\n  \"calculava\": \"calcul\",\n  \"cálculo\": \"cálcul\",\n  \"cálculos\": \"cálcul\",\n  \"calculou\": \"calcul\",\n  \"calcutá\": \"calcut\",\n  \"caldas\": \"cald\",\n  \"caldeira\": \"caldeir\",\n  \"caldeirão\": \"cald\",\n  \"caldo\": \"cald\",\n  \"calendário\": \"calendári\",\n  \"calendários\": \"calendári\",\n  \"calendas\": \"calend\",\n  \"calhou\": \"calh\",\n  \"cali\": \"cal\",\n  \"calibre\": \"calibr\",\n  \"calicute\": \"calicut\",\n  \"california\": \"californ\",\n  \"califórnia\": \"califórn\",\n  \"calil\": \"calil\",\n  \"callas\": \"call\",\n  \"callegari\": \"callegar\",\n  \"callepso\": \"calleps\",\n  \"calligaris\": \"calligar\",\n  \"calma\": \"calm\",\n  \"calmamente\": \"calm\",\n  \"calmante\": \"calmant\",\n  \"calmantes\": \"calmant\",\n  \"calmaria\": \"calm\",\n  \"calmas\": \"calm\",\n  \"calminhas\": \"calminh\",\n  \"calor\": \"calor\",\n  \"caloria\": \"calor\",\n  \"calorias\": \"calor\",\n  \"calórico\": \"calór\",\n  \"calóricos\": \"calór\",\n  \"caloroso\": \"calor\",\n  \"calote\": \"calot\",\n  \"caloura\": \"calour\",\n  \"calouros\": \"calour\",\n  \"cals\": \"cals\",\n  \"calúnia\": \"calún\",\n  \"calvacom\": \"calvacom\",\n  \"calvário\": \"calvári\",\n  \"calvin\": \"calvin\",\n  \"calvo\": \"calv\",\n  \"calypso\": \"calyps\",\n  \"calzadilla\": \"calzadill\",\n  \"cama\": \"cam\",\n  \"camacho\": \"camach\",\n  \"camada\": \"cam\",\n  \"camadas\": \"cam\",\n  \"camaleônica\": \"camaleôn\",\n  \"camapuã\": \"camapuã\",\n  \"câmara\": \"câm\",\n  \"camarada\": \"camar\",\n  \"camarão\": \"cam\",\n  \"câmaras\": \"câm\",\n  \"camarena\": \"camaren\",\n  \"camargo\": \"camarg\",\n  \"camarim\": \"camarim\",\n  \"camarins\": \"camarins\",\n  \"camarote\": \"camarot\",\n  \"camas\": \"cam\",\n  \"cambará\": \"camb\",\n  \"cambial\": \"cambial\",\n  \"câmbio\": \"câmbi\",\n  \"camboja\": \"camboj\",\n  \"cambojana\": \"cambojan\",\n  \"cambojano\": \"cambojan\",\n  \"cambojanos\": \"cambojan\",\n  \"cambridge\": \"cambridg\",\n  \"camburão\": \"camburã\",\n  \"camburi\": \"cambur\",\n  \"camburões\": \"camburõ\",\n  \"camélia\": \"camél\",\n  \"camélias\": \"camél\",\n  \"camelo\": \"camel\",\n  \"camelô\": \"camelô\",\n  \"camelôs\": \"camelôs\",\n  \"camera\": \"cam\",\n  \"câmera\": \"câm\",\n  \"câmeras\": \"câm\",\n  \"camila\": \"camil\",\n  \"camilla\": \"camill\",\n  \"camilo\": \"camil\",\n  \"caminha\": \"caminh\",\n  \"caminhada\": \"caminh\",\n  \"caminham\": \"caminh\",\n  \"caminhando\": \"caminh\",\n  \"caminhão\": \"caminhã\",\n  \"caminhar\": \"caminh\",\n  \"caminhavam\": \"caminh\",\n  \"caminho\": \"caminh\",\n  \"caminhões\": \"caminhõ\",\n  \"caminhoneiro\": \"caminhoneir\",\n  \"caminhoneiros\": \"caminhoneir\",\n  \"caminhonete\": \"caminhonet\",\n  \"caminhonetes\": \"caminhonet\",\n  \"caminhos\": \"caminh\",\n  \"camino\": \"camin\",\n  \"camisa\": \"camis\",\n  \"camisaria\": \"camis\",\n  \"camisas\": \"camis\",\n  \"camiseta\": \"camiset\",\n  \"camisetas\": \"camiset\",\n  \"camisetinha\": \"camisetinh\",\n  \"camisinha\": \"camisinh\",\n  \"camisinhas\": \"camisinh\",\n  \"camisola\": \"camisol\",\n  \"camões\": \"camõ\",\n  \"camomila\": \"camomil\",\n  \"camp\": \"camp\",\n  \"campainha\": \"campainh\",\n  \"campana\": \"campan\",\n  \"campanha\": \"campanh\",\n  \"campanhas\": \"campanh\",\n  \"campeã\": \"campeã\",\n  \"campeão\": \"campeã\",\n  \"campearam\": \"camp\",\n  \"campeava\": \"camp\",\n  \"campelo\": \"campel\",\n  \"campeões\": \"campeõ\",\n  \"campeonato\": \"campeonat\",\n  \"campeonatos\": \"campeonat\",\n  \"campesinos\": \"campesin\",\n  \"campestre\": \"campestr\",\n  \"campina\": \"campin\",\n  \"campinas\": \"campin\",\n  \"camping\": \"camping\",\n  \"campings\": \"campings\",\n  \"campo\": \"camp\",\n  \"camponesas\": \"campones\",\n  \"camponeses\": \"campones\",\n  \"campos\": \"camp\",\n  \"campus\": \"campus\",\n  \"campuzana\": \"campuzan\",\n  \"camuflada\": \"camufl\",\n  \"camuflado\": \"camufl\",\n  \"camuflar\": \"camufl\",\n  \"camurças\": \"camurc\",\n  \"cana\": \"can\",\n  \"canadá\": \"canad\",\n  \"canadair\": \"canada\",\n  \"canadense\": \"canadens\",\n  \"canadenses\": \"canadens\",\n  \"canais\": \"can\",\n  \"canal\": \"canal\",\n  \"canale\": \"canal\",\n  \"canalha\": \"canalh\",\n  \"canalizado\": \"canaliz\",\n  \"canaqua\": \"canaqu\",\n  \"canário\": \"canári\",\n  \"canastrões\": \"canastrõ\",\n  \"canavieira\": \"canavieir\",\n  \"canção\": \"cançã\",\n  \"cancelado\": \"cancel\",\n  \"cancelados\": \"cancel\",\n  \"cancelam\": \"cancel\",\n  \"cancelar\": \"cancel\",\n  \"cancelou\": \"cancel\",\n  \"cancer\": \"canc\",\n  \"câncer\": \"cânc\",\n  \"cancerígena\": \"cancerígen\",\n  \"cancerígenas\": \"cancerígen\",\n  \"cancerígeno\": \"cancerígen\",\n  \"cancernet\": \"cancernet\",\n  \"cancerosas\": \"cancer\",\n  \"cancioneiro\": \"cancioneir\",\n  \"canções\": \"cançõ\",\n  \"cancún\": \"cancún\",\n  \"candeeira\": \"candeeir\",\n  \"candelabros\": \"candelabr\",\n  \"candelária\": \"candelár\",\n  \"candice\": \"candic\",\n  \"candidata\": \"candidat\",\n  \"candidatar\": \"candidat\",\n  \"candidataram\": \"candidat\",\n  \"candidatas\": \"candidat\",\n  \"candidatasse\": \"candidat\",\n  \"candidatei\": \"candidat\",\n  \"candidato\": \"candidat\",\n  \"candidatos\": \"candidat\",\n  \"candidatura\": \"candidatur\",\n  \"candido\": \"cand\",\n  \"cândido\": \"când\",\n  \"candomblé\": \"candombl\",\n  \"candomblés\": \"candomblés\",\n  \"canela\": \"canel\",\n  \"canelada\": \"canel\",\n  \"caneta\": \"canet\",\n  \"canetas\": \"canet\",\n  \"canetinhas\": \"canetinh\",\n  \"cangaceiro\": \"cangaceir\",\n  \"cangaço\": \"cangac\",\n  \"cangalo\": \"cangal\",\n  \"cangurus\": \"cangurus\",\n  \"canhão\": \"canhã\",\n  \"canhestra\": \"canhestr\",\n  \"canhões\": \"canhõ\",\n  \"canhonear\": \"canhon\",\n  \"canibalização\": \"canibaliz\",\n  \"canindé\": \"canind\",\n  \"cânion\": \"cânion\",\n  \"cânions\": \"cânions\",\n  \"cannes\": \"cann\",\n  \"canônica\": \"canôn\",\n  \"canônicas\": \"canôn\",\n  \"canônico\": \"canôn\",\n  \"canonização\": \"canoniz\",\n  \"canova\": \"canov\",\n  \"cansa\": \"cans\",\n  \"cansaço\": \"cansac\",\n  \"cansada\": \"cans\",\n  \"cansado\": \"cans\",\n  \"cansar\": \"cans\",\n  \"cansaram\": \"cans\",\n  \"cansativo\": \"cansat\",\n  \"canseira\": \"canseir\",\n  \"cansou\": \"cans\",\n  \"canta\": \"cant\",\n  \"cantada\": \"cant\",\n  \"cantadas\": \"cant\",\n  \"cantado\": \"cant\",\n  \"cantalice\": \"cantalic\",\n  \"cantaloup\": \"cantaloup\",\n  \"cantando\": \"cant\",\n  \"cantante\": \"cantant\",\n  \"cantar\": \"cant\",\n  \"cantaram\": \"cant\",\n  \"cantarolando\": \"cantarol\",\n  \"cantarolar\": \"cantarol\",\n  \"cantei\": \"cant\",\n  \"canteiros\": \"canteir\",\n  \"cânticos\": \"cântic\",\n  \"cantinho\": \"cantinh\",\n  \"canto\": \"cant\",\n  \"cantona\": \"canton\",\n  \"cantonês\": \"cantonês\",\n  \"cantor\": \"cantor\",\n  \"cantora\": \"cantor\",\n  \"cantoras\": \"cantor\",\n  \"cantores\": \"cantor\",\n  \"cantoria\": \"cantor\",\n  \"cantos\": \"cant\",\n  \"cantou\": \"cant\",\n  \"canudo\": \"canud\",\n  \"canudos\": \"canud\",\n  \"cao\": \"cao\",\n  \"cão\": \"cã\",\n  \"caos\": \"caos\",\n  \"caótica\": \"caótic\",\n  \"caótico\": \"caótic\",\n  \"capa\": \"cap\",\n  \"capacetes\": \"capacet\",\n  \"capacidade\": \"capac\",\n  \"capacitação\": \"capacit\",\n  \"capadócia\": \"capadóc\",\n  \"capão\": \"capã\",\n  \"capas\": \"cap\",\n  \"capaz\": \"capaz\",\n  \"capazes\": \"capaz\",\n  \"capcure\": \"capcur\",\n  \"capela\": \"capel\",\n  \"capelão\": \"capelã\",\n  \"capenga\": \"capeng\",\n  \"capes\": \"cap\",\n  \"capi\": \"cap\",\n  \"capilar\": \"capil\",\n  \"capim\": \"capim\",\n  \"capita\": \"capit\",\n  \"capitã\": \"capitã\",\n  \"capitais\": \"capit\",\n  \"capital\": \"capital\",\n  \"capitalismo\": \"capital\",\n  \"capitalista\": \"capital\",\n  \"capitalizada\": \"capitaliz\",\n  \"capitânia\": \"capitân\",\n  \"capitanias\": \"capitan\",\n  \"capitão\": \"capitã\",\n  \"capitólio\": \"capitóli\",\n  \"capítulo\": \"capítul\",\n  \"capítulos\": \"capítul\",\n  \"capitulou\": \"capitul\",\n  \"capo\": \"cap\",\n  \"capoeira\": \"capoeir\",\n  \"capoeirista\": \"capoeir\",\n  \"capone\": \"capon\",\n  \"caporegime\": \"caporegim\",\n  \"capos\": \"cap\",\n  \"capoten\": \"capoten\",\n  \"caprera\": \"capr\",\n  \"caprichada\": \"caprich\",\n  \"caprichado\": \"caprich\",\n  \"capricham\": \"caprich\",\n  \"caprichando\": \"caprich\",\n  \"capricho\": \"caprich\",\n  \"caprichosos\": \"caprich\",\n  \"caprichou\": \"caprich\",\n  \"capriglione\": \"capriglion\",\n  \"cápsulas\": \"cápsul\",\n  \"capta\": \"capt\",\n  \"captação\": \"captaçã\",\n  \"captações\": \"captaçõ\",\n  \"captada\": \"capt\",\n  \"captadores\": \"captador\",\n  \"captados\": \"capt\",\n  \"captam\": \"capt\",\n  \"captando\": \"capt\",\n  \"captar\": \"capt\",\n  \"captariam\": \"capt\",\n  \"captopril\": \"captopril\",\n  \"captores\": \"captor\",\n  \"captou\": \"capt\",\n  \"captura\": \"captur\",\n  \"capturado\": \"captur\",\n  \"capturar\": \"captur\",\n  \"capuano\": \"capuan\",\n  \"capuchinho\": \"capuchinh\",\n  \"capuchinhos\": \"capuchinh\",\n  \"capuz\": \"capuz\",\n  \"caquinhos\": \"caquinh\",\n  \"cara\": \"car\",\n  \"cará\": \"car\",\n  \"caracas\": \"carac\",\n  \"caracteres\": \"caract\",\n  \"característica\": \"característ\",\n  \"características\": \"característ\",\n  \"característico\": \"característ\",\n  \"caracteriza\": \"caracteriz\",\n  \"caracterização\": \"caracteriz\",\n  \"caracterizou\": \"caracteriz\",\n  \"caraguata\": \"caraguat\",\n  \"carajás\": \"carajás\",\n  \"caramba\": \"caramb\",\n  \"caramujo\": \"caramuj\",\n  \"caramujos\": \"caramuj\",\n  \"carão\": \"carã\",\n  \"carapuça\": \"carapuc\",\n  \"caras\": \"car\",\n  \"caratê\": \"carat\",\n  \"caráter\": \"carát\",\n  \"caravalle\": \"caravall\",\n  \"caravana\": \"caravan\",\n  \"caravanas\": \"caravan\",\n  \"caravela\": \"caravel\",\n  \"caravelas\": \"caravel\",\n  \"caravelle\": \"caravell\",\n  \"carbide\": \"carbid\",\n  \"carboidrato\": \"carboidrat\",\n  \"carboidratos\": \"carboidrat\",\n  \"carbonato\": \"carbonat\",\n  \"carbone\": \"carbon\",\n  \"carbonizados\": \"carboniz\",\n  \"carcaças\": \"carcac\",\n  \"carcará\": \"carc\",\n  \"carcerária\": \"carcerár\",\n  \"carcerário\": \"carcerári\",\n  \"carcereiras\": \"carcereir\",\n  \"carcereiros\": \"carcereir\",\n  \"card\": \"card\",\n  \"cardápio\": \"cardápi\",\n  \"cardeais\": \"card\",\n  \"cardeal\": \"cardeal\",\n  \"cardíaca\": \"cardíac\",\n  \"cardíacas\": \"cardíac\",\n  \"cardíaco\": \"cardíac\",\n  \"cardíacos\": \"cardíac\",\n  \"cardiologia\": \"cardiolog\",\n  \"cardiologista\": \"cardiolog\",\n  \"cardiorrespiratória\": \"cardiorrespiratór\",\n  \"cardiovascular\": \"cardiovascul\",\n  \"cardiovasculares\": \"cardiovascul\",\n  \"cardoso\": \"cardos\",\n  \"carducci\": \"carducc\",\n  \"cardume\": \"cardum\",\n  \"cardumes\": \"cardum\",\n  \"careca\": \"carec\",\n  \"carecas\": \"carec\",\n  \"carece\": \"carec\",\n  \"carência\": \"carênc\",\n  \"carências\": \"carênc\",\n  \"carente\": \"carent\",\n  \"carentes\": \"carent\",\n  \"careta\": \"caret\",\n  \"caretas\": \"caret\",\n  \"caretice\": \"caretic\",\n  \"caretta\": \"carett\",\n  \"carga\": \"carg\",\n  \"cargas\": \"carg\",\n  \"cargo\": \"carg\",\n  \"cargos\": \"carg\",\n  \"cargueiro\": \"cargueir\",\n  \"caribe\": \"carib\",\n  \"caribenhos\": \"caribenh\",\n  \"caricatura\": \"caricatur\",\n  \"caricatural\": \"caricatural\",\n  \"caricaturas\": \"caricatur\",\n  \"carícias\": \"caríc\",\n  \"caridade\": \"caridad\",\n  \"caridosa\": \"carid\",\n  \"carimbada\": \"carimb\",\n  \"carimbado\": \"carimb\",\n  \"carimbavam\": \"carimb\",\n  \"carimbo\": \"carimb\",\n  \"carimbó\": \"carimb\",\n  \"carina\": \"carin\",\n  \"carinho\": \"carinh\",\n  \"carinhosa\": \"carinh\",\n  \"carinhosamente\": \"carinh\",\n  \"carinhosas\": \"carinh\",\n  \"carinhoso\": \"carinh\",\n  \"carioca\": \"carioc\",\n  \"cariocas\": \"carioc\",\n  \"carisma\": \"carism\",\n  \"carismática\": \"carismát\",\n  \"carismáticos\": \"carismát\",\n  \"caríssimas\": \"caríssim\",\n  \"caríssimo\": \"caríssim\",\n  \"caríssimos\": \"caríss\",\n  \"carl\": \"carl\",\n  \"carla\": \"carl\",\n  \"carli\": \"carl\",\n  \"carlinhos\": \"carlinh\",\n  \"carlini\": \"carlin\",\n  \"carlos\": \"carl\",\n  \"carlota\": \"carlot\",\n  \"carmem\": \"carm\",\n  \"carmen\": \"carmen\",\n  \"carmo\": \"carm\",\n  \"carnal\": \"carnal\",\n  \"carnavais\": \"carnav\",\n  \"carnaval\": \"carnaval\",\n  \"carne\": \"carn\",\n  \"carnegie\": \"carnegi\",\n  \"carneiro\": \"carneir\",\n  \"carnejo\": \"carnej\",\n  \"carnes\": \"carn\",\n  \"carniceiro\": \"carniceir\",\n  \"carnificina\": \"carnificin\",\n  \"caro\": \"car\",\n  \"carol\": \"carol\",\n  \"carola\": \"carol\",\n  \"carolina\": \"carolin\",\n  \"caroline\": \"carolin\",\n  \"carolíssimo\": \"carolíssim\",\n  \"carolyn\": \"carolyn\",\n  \"carona\": \"caron\",\n  \"caros\": \"car\",\n  \"carpaccio\": \"carpacci\",\n  \"carpetes\": \"carpet\",\n  \"carpintaria\": \"carpint\",\n  \"carpinteiro\": \"carpinteir\",\n  \"carpir\": \"carp\",\n  \"carrão\": \"carrã\",\n  \"carrasco\": \"carrasc\",\n  \"carré\": \"carr\",\n  \"carrefour\": \"carrefour\",\n  \"carrega\": \"carreg\",\n  \"carregá\": \"carreg\",\n  \"carregada\": \"carreg\",\n  \"carregadas\": \"carreg\",\n  \"carregado\": \"carreg\",\n  \"carregados\": \"carreg\",\n  \"carregam\": \"carreg\",\n  \"carregamentos\": \"carreg\",\n  \"carregando\": \"carreg\",\n  \"carregar\": \"carreg\",\n  \"carregaram\": \"carreg\",\n  \"carregassem\": \"carreg\",\n  \"carregava\": \"carreg\",\n  \"carrego\": \"carreg\",\n  \"carregou\": \"carreg\",\n  \"carregue\": \"carreg\",\n  \"carreira\": \"carreir\",\n  \"carreiras\": \"carreir\",\n  \"carrero\": \"carrer\",\n  \"carreteiro\": \"carreteir\",\n  \"carrinheiro\": \"carrinheir\",\n  \"carrinheiros\": \"carrinheir\",\n  \"carrinho\": \"carrinh\",\n  \"carrinhos\": \"carrinh\",\n  \"carro\": \"carr\",\n  \"carroceria\": \"carroc\",\n  \"carrocinha\": \"carrocinh\",\n  \"carrocinhas\": \"carrocinh\",\n  \"carrões\": \"carrõ\",\n  \"carros\": \"carr\",\n  \"carrossel\": \"carrossel\",\n  \"carruagem\": \"carruag\",\n  \"carstensz\": \"carstensz\",\n  \"carta\": \"cart\",\n  \"cartão\": \"cartã\",\n  \"cartas\": \"cart\",\n  \"cartaz\": \"cartaz\",\n  \"cartazes\": \"cartaz\",\n  \"carteira\": \"carteir\",\n  \"carteiras\": \"carteir\",\n  \"carteirinha\": \"carteirinh\",\n  \"cartéis\": \"cart\",\n  \"cartel\": \"cartel\",\n  \"cartela\": \"cartel\",\n  \"carter\": \"cart\",\n  \"cartilha\": \"cartilh\",\n  \"cartilhas\": \"cartilh\",\n  \"cartões\": \"cartõ\",\n  \"cartografia\": \"cartograf\",\n  \"cartográficas\": \"cartográf\",\n  \"cartola\": \"cartol\",\n  \"cartorários\": \"cartorári\",\n  \"cartório\": \"cartóri\",\n  \"cartórios\": \"cartóri\",\n  \"cartum\": \"cartum\",\n  \"cartunista\": \"cartun\",\n  \"cartunistas\": \"cartun\",\n  \"cartuns\": \"cartuns\",\n  \"caruso\": \"carus\",\n  \"carvalho\": \"carvalh\",\n  \"carvalhos\": \"carvalh\",\n  \"carvana\": \"carvan\",\n  \"carvão\": \"carvã\",\n  \"carvoaria\": \"carvo\",\n  \"carvoeiros\": \"carvoeir\",\n  \"casa\": \"cas\",\n  \"casablancas\": \"casablanc\",\n  \"casaca\": \"casac\",\n  \"casaco\": \"casac\",\n  \"casacos\": \"casac\",\n  \"casada\": \"cas\",\n  \"casadas\": \"cas\",\n  \"casado\": \"cas\",\n  \"casados\": \"cas\",\n  \"casagrande\": \"casagrand\",\n  \"casais\": \"cas\",\n  \"casal\": \"casal\",\n  \"casam\": \"cas\",\n  \"casamento\": \"casament\",\n  \"casamentos\": \"casament\",\n  \"casando\": \"cas\",\n  \"casaquistão\": \"casaquistã\",\n  \"casar\": \"cas\",\n  \"casara\": \"cas\",\n  \"casaram\": \"cas\",\n  \"casarão\": \"cas\",\n  \"casarões\": \"casarõ\",\n  \"casas\": \"cas\",\n  \"casasse\": \"cas\",\n  \"casca\": \"casc\",\n  \"cascata\": \"cascat\",\n  \"cascatas\": \"cascat\",\n  \"cascateiro\": \"cascateir\",\n  \"cascavel\": \"cascavel\",\n  \"casco\": \"casc\",\n  \"casé\": \"cas\",\n  \"casebre\": \"casebr\",\n  \"casebres\": \"casebr\",\n  \"casei\": \"cas\",\n  \"caseira\": \"caseir\",\n  \"caseiro\": \"caseir\",\n  \"caseiros\": \"caseir\",\n  \"casernas\": \"casern\",\n  \"casildo\": \"casild\",\n  \"casinha\": \"casinh\",\n  \"casinhas\": \"casinh\",\n  \"casinhola\": \"casinhol\",\n  \"casini\": \"casin\",\n  \"casmurro\": \"casmurr\",\n  \"caso\": \"cas\",\n  \"casos\": \"cas\",\n  \"casou\": \"cas\",\n  \"casoy\": \"casoy\",\n  \"cassação\": \"cassaçã\",\n  \"casseb\": \"casseb\",\n  \"casseta\": \"casset\",\n  \"cassetas\": \"casset\",\n  \"cassetosos\": \"casset\",\n  \"cássia\": \"cáss\",\n  \"cassiano\": \"cassian\",\n  \"cassino\": \"cassin\",\n  \"cassinos\": \"cassin\",\n  \"cassio\": \"cassi\",\n  \"cássio\": \"cássi\",\n  \"cassou\": \"cass\",\n  \"casta\": \"cast\",\n  \"castanho\": \"castanh\",\n  \"castanhos\": \"castanh\",\n  \"castaño\": \"castañ\",\n  \"castelano\": \"castelan\",\n  \"castelhano\": \"castelhan\",\n  \"casteli\": \"castel\",\n  \"castelli\": \"castell\",\n  \"castelo\": \"castel\",\n  \"castelos\": \"castel\",\n  \"castiga\": \"castig\",\n  \"castigado\": \"castig\",\n  \"castigados\": \"castig\",\n  \"castigar\": \"castig\",\n  \"castigo\": \"castig\",\n  \"castilho\": \"castilh\",\n  \"casting\": \"casting\",\n  \"casto\": \"cast\",\n  \"castor\": \"castor\",\n  \"castratti\": \"castratt\",\n  \"castro\": \"castr\",\n  \"casualidades\": \"casual\",\n  \"casulo\": \"casul\",\n  \"cata\": \"cat\",\n  \"catador\": \"catador\",\n  \"cataflan\": \"cataflan\",\n  \"catalogadas\": \"catalog\",\n  \"catálogo\": \"catálog\",\n  \"catálogos\": \"catálog\",\n  \"catalogou\": \"catalog\",\n  \"catanduva\": \"catanduv\",\n  \"catão\": \"catã\",\n  \"catapulta\": \"catapult\",\n  \"catarata\": \"catarat\",\n  \"catarina\": \"catarin\",\n  \"catarinense\": \"catarinens\",\n  \"catarinenses\": \"catarinens\",\n  \"catarino\": \"catarin\",\n  \"catarse\": \"catars\",\n  \"catástrofe\": \"catástrof\",\n  \"catástrofes\": \"catástrof\",\n  \"catastróficas\": \"catastróf\",\n  \"catastrófico\": \"catastróf\",\n  \"catedral\": \"catedral\",\n  \"categoria\": \"categor\",\n  \"categorias\": \"categor\",\n  \"categórica\": \"categór\",\n  \"categóricos\": \"categór\",\n  \"catei\": \"cat\",\n  \"catequese\": \"cateques\",\n  \"cateter\": \"catet\",\n  \"cateterismo\": \"cateter\",\n  \"catherine\": \"catherin\",\n  \"catho\": \"cath\",\n  \"catholique\": \"catholiqu\",\n  \"cativa\": \"cativ\",\n  \"cativantes\": \"cativ\",\n  \"cativas\": \"cativ\",\n  \"cativeiro\": \"cativeir\",\n  \"católica\": \"catól\",\n  \"catolicismo\": \"catolic\",\n  \"católico\": \"catól\",\n  \"católicos\": \"catól\",\n  \"catorze\": \"catorz\",\n  \"catraca\": \"catrac\",\n  \"caução\": \"cauçã\",\n  \"cauda\": \"caud\",\n  \"caudalosas\": \"caudal\",\n  \"caudalosos\": \"caudal\",\n  \"causa\": \"caus\",\n  \"causada\": \"caus\",\n  \"causadas\": \"caus\",\n  \"causado\": \"caus\",\n  \"causador\": \"causador\",\n  \"causados\": \"caus\",\n  \"causam\": \"caus\",\n  \"causando\": \"caus\",\n  \"causar\": \"caus\",\n  \"causará\": \"caus\",\n  \"causaram\": \"caus\",\n  \"causas\": \"caus\",\n  \"causava\": \"caus\",\n  \"causou\": \"caus\",\n  \"cautela\": \"cautel\",\n  \"cautelas\": \"cautel\",\n  \"cauteloso\": \"cautel\",\n  \"cavada\": \"cav\",\n  \"cavado\": \"cav\",\n  \"cavalar\": \"caval\",\n  \"cavalares\": \"caval\",\n  \"cavalaria\": \"caval\",\n  \"cavalcante\": \"cavalc\",\n  \"cavalcanti\": \"cavalcant\",\n  \"cavaleiro\": \"cavaleir\",\n  \"cavaleiros\": \"cavaleir\",\n  \"cavalgadas\": \"cavalg\",\n  \"cavalheiro\": \"cavalheir\",\n  \"cavalheiros\": \"cavalheir\",\n  \"cavalinho\": \"cavalinh\",\n  \"cavalo\": \"caval\",\n  \"cavalos\": \"caval\",\n  \"cavanhaque\": \"cavanhaqu\",\n  \"cavar\": \"cav\",\n  \"cavava\": \"cav\",\n  \"caveira\": \"caveir\",\n  \"caveiras\": \"caveir\",\n  \"caverna\": \"cavern\",\n  \"cavernas\": \"cavern\",\n  \"caviar\": \"cavi\",\n  \"cavidade\": \"cavidad\",\n  \"cavidades\": \"cavidad\",\n  \"caxias\": \"cax\",\n  \"caymmi\": \"caymm\",\n  \"cazuza\": \"cazuz\",\n  \"cbf\": \"cbf\",\n  \"cbmm\": \"cbmm\",\n  \"cbs\": \"cbs\",\n  \"ccedil\": \"ccedil\",\n  \"ccf\": \"ccf\",\n  \"cd\": \"cd\",\n  \"cda\": \"cda\",\n  \"cdb\": \"cdb\",\n  \"cds\": \"cds\",\n  \"ce\": \"ce\",\n  \"cê\": \"cê\",\n  \"ceagesp\": \"ceagesp\",\n  \"ceará\": \"cear\",\n  \"cearense\": \"cearens\",\n  \"cebola\": \"cebol\",\n  \"cebolas\": \"cebol\",\n  \"cecilia\": \"cecil\",\n  \"cecília\": \"cecíl\",\n  \"cede\": \"ced\",\n  \"cedendo\": \"ced\",\n  \"ceder\": \"ced\",\n  \"cedeu\": \"ced\",\n  \"cedido\": \"ced\",\n  \"cedo\": \"ced\",\n  \"cedric\": \"cedric\",\n  \"cédula\": \"cédul\",\n  \"cédulas\": \"cédul\",\n  \"cef\": \"cef\",\n  \"cefaléia\": \"cefal\",\n  \"cega\": \"ceg\",\n  \"cegamente\": \"ceg\",\n  \"cego\": \"ceg\",\n  \"cegos\": \"ceg\",\n  \"cegueira\": \"cegueir\",\n  \"ceia\": \"cei\",\n  \"ceias\": \"cei\",\n  \"cela\": \"cel\",\n  \"celas\": \"cel\",\n  \"celebração\": \"celebr\",\n  \"celebrações\": \"celebr\",\n  \"celebrada\": \"celebr\",\n  \"celebradas\": \"celebr\",\n  \"celebram\": \"celebr\",\n  \"celebrar\": \"celebr\",\n  \"celebraram\": \"celebr\",\n  \"celebration\": \"celebration\",\n  \"célebre\": \"célebr\",\n  \"célebres\": \"célebr\",\n  \"celebridades\": \"celebr\",\n  \"celebrizaram\": \"celebriz\",\n  \"celebrizou\": \"celebriz\",\n  \"celeiro\": \"celeir\",\n  \"celesc\": \"celesc\",\n  \"celeste\": \"cel\",\n  \"celestial\": \"celestial\",\n  \"célia\": \"cél\",\n  \"celina\": \"celin\",\n  \"celsius\": \"celsius\",\n  \"celso\": \"cels\",\n  \"celson\": \"celson\",\n  \"célula\": \"célul\",\n  \"celular\": \"celul\",\n  \"celulares\": \"celul\",\n  \"celulari\": \"celular\",\n  \"células\": \"célul\",\n  \"celulite\": \"celulit\",\n  \"celulites\": \"celulit\",\n  \"celulose\": \"celulos\",\n  \"cem\": \"cem\",\n  \"cemig\": \"cemig\",\n  \"cemitério\": \"cemitéri\",\n  \"cemitérios\": \"cemitéri\",\n  \"cena\": \"cen\",\n  \"cenáculo\": \"cenácul\",\n  \"cenário\": \"cenári\",\n  \"cenários\": \"cenári\",\n  \"cenas\": \"cen\",\n  \"cênica\": \"cênic\",\n  \"cenimar\": \"cenim\",\n  \"cenipa\": \"cenip\",\n  \"cenógrafa\": \"cenógraf\",\n  \"cenoura\": \"cenour\",\n  \"cens\": \"cens\",\n  \"censo\": \"cens\",\n  \"censorship\": \"censorship\",\n  \"censura\": \"censur\",\n  \"censurá\": \"censur\",\n  \"centavo\": \"centav\",\n  \"centavos\": \"centav\",\n  \"centelha\": \"centelh\",\n  \"centena\": \"centen\",\n  \"centenária\": \"centenár\",\n  \"centenário\": \"centenári\",\n  \"centenários\": \"centenári\",\n  \"centenas\": \"centen\",\n  \"center\": \"cent\",\n  \"centers\": \"centers\",\n  \"centígrados\": \"centígr\",\n  \"centímetro\": \"centímetr\",\n  \"centímetros\": \"centímetr\",\n  \"cento\": \"cent\",\n  \"centra\": \"centr\",\n  \"centrada\": \"centr\",\n  \"centrais\": \"centr\",\n  \"central\": \"central\",\n  \"centraliza\": \"centraliz\",\n  \"centralização\": \"centraliz\",\n  \"centralizada\": \"centraliz\",\n  \"centre\": \"centr\",\n  \"centro\": \"centr\",\n  \"centroavante\": \"centroav\",\n  \"centros\": \"centr\",\n  \"centrus\": \"centrus\",\n  \"centurion\": \"centurion\",\n  \"cera\": \"cer\",\n  \"cerâmica\": \"cerâm\",\n  \"cerca\": \"cerc\",\n  \"cercada\": \"cerc\",\n  \"cercadas\": \"cerc\",\n  \"cercado\": \"cerc\",\n  \"cercados\": \"cerc\",\n  \"cercam\": \"cerc\",\n  \"cercando\": \"cerc\",\n  \"cercanias\": \"cercan\",\n  \"cercaram\": \"cerc\",\n  \"cerco\": \"cerc\",\n  \"cercou\": \"cerc\",\n  \"cereais\": \"cer\",\n  \"cerebrais\": \"cerebr\",\n  \"cerebral\": \"cerebral\",\n  \"cérebro\": \"cérebr\",\n  \"cérebros\": \"cérebr\",\n  \"cerefolho\": \"cerefolh\",\n  \"ceregatti\": \"ceregatt\",\n  \"cerimônia\": \"cerimôn\",\n  \"cerimonial\": \"cerimonial\",\n  \"cerimônias\": \"cerimôn\",\n  \"cerqueira\": \"cerqueir\",\n  \"cerrada\": \"cerr\",\n  \"cerradas\": \"cerr\",\n  \"cerrado\": \"cerr\",\n  \"cerro\": \"cerr\",\n  \"certa\": \"cert\",\n  \"certamente\": \"cert\",\n  \"certas\": \"cert\",\n  \"certeira\": \"certeir\",\n  \"certeiramente\": \"certeir\",\n  \"certeiro\": \"certeir\",\n  \"certeza\": \"certez\",\n  \"certezas\": \"certez\",\n  \"certidão\": \"certidã\",\n  \"certifica\": \"certif\",\n  \"certificação\": \"certific\",\n  \"certificadas\": \"certific\",\n  \"certificado\": \"certific\",\n  \"certinhas\": \"certinh\",\n  \"certinho\": \"certinh\",\n  \"certo\": \"cert\",\n  \"certos\": \"cert\",\n  \"cervantes\": \"cervant\",\n  \"cerveja\": \"cervej\",\n  \"cervejaria\": \"cervej\",\n  \"cervejarias\": \"cervej\",\n  \"cervejas\": \"cervej\",\n  \"cervejinha\": \"cervejinh\",\n  \"cesar\": \"ces\",\n  \"césar\": \"cés\",\n  \"cesáreas\": \"cesár\",\n  \"cesarianas\": \"cesarian\",\n  \"cesário\": \"cesári\",\n  \"cesarismo\": \"cesar\",\n  \"césio\": \"cési\",\n  \"cesp\": \"cesp\",\n  \"cessão\": \"cessã\",\n  \"cessar\": \"cess\",\n  \"cessna\": \"cessn\",\n  \"cesta\": \"cest\",\n  \"cestafe\": \"cestaf\",\n  \"cestas\": \"cest\",\n  \"cesto\": \"cest\",\n  \"cestos\": \"cest\",\n  \"cet\": \"cet\",\n  \"cetesb\": \"cetesb\",\n  \"ceticismo\": \"cetic\",\n  \"cético\": \"cétic\",\n  \"céticos\": \"cétic\",\n  \"cetim\": \"cetim\",\n  \"cetro\": \"cetr\",\n  \"céu\": \"céu\",\n  \"céus\": \"céus\",\n  \"cevada\": \"cev\",\n  \"cevap\": \"cevap\",\n  \"cevar\": \"cev\",\n  \"cezar\": \"cez\",\n  \"cézar\": \"céz\",\n  \"cgc\": \"cgc\",\n  \"chá\": \"chá\",\n  \"chácara\": \"chác\",\n  \"chácaras\": \"chác\",\n  \"chacina\": \"chacin\",\n  \"chacinas\": \"chacin\",\n  \"chaco\": \"chac\",\n  \"chacoalhar\": \"chacoalh\",\n  \"chacrete\": \"chacret\",\n  \"chagas\": \"chag\",\n  \"chairman\": \"chairman\",\n  \"chalés\": \"chalés\",\n  \"challenger\": \"challeng\",\n  \"chama\": \"cham\",\n  \"chamá\": \"cham\",\n  \"chamada\": \"cham\",\n  \"chamadas\": \"cham\",\n  \"chamado\": \"cham\",\n  \"chamados\": \"cham\",\n  \"chamam\": \"cham\",\n  \"chamamos\": \"cham\",\n  \"chamando\": \"cham\",\n  \"chamar\": \"cham\",\n  \"chamará\": \"cham\",\n  \"chamaram\": \"cham\",\n  \"chamarizes\": \"chamariz\",\n  \"chamas\": \"cham\",\n  \"chamativas\": \"chamat\",\n  \"chamativo\": \"chamat\",\n  \"chamava\": \"cham\",\n  \"chamavam\": \"cham\",\n  \"chambord\": \"chambord\",\n  \"chame\": \"cham\",\n  \"chamegos\": \"chameg\",\n  \"chamei\": \"cham\",\n  \"chamo\": \"cham\",\n  \"chamou\": \"cham\",\n  \"champanha\": \"champanh\",\n  \"champanhe\": \"champanh\",\n  \"champanhes\": \"champanh\",\n  \"chamuscada\": \"chamusc\",\n  \"chance\": \"chanc\",\n  \"chancela\": \"chancel\",\n  \"chanceler\": \"chancel\",\n  \"chances\": \"chanc\",\n  \"chanchada\": \"chanch\",\n  \"chandon\": \"chandon\",\n  \"chanel\": \"chanel\",\n  \"chang\": \"chang\",\n  \"channel\": \"channel\",\n  \"chantageavam\": \"chantag\",\n  \"chantagem\": \"chantag\",\n  \"chantagista\": \"chantag\",\n  \"chantal\": \"chantal\",\n  \"chão\": \"chã\",\n  \"chapa\": \"chap\",\n  \"chapada\": \"chap\",\n  \"chapadeiro\": \"chapadeir\",\n  \"chapéu\": \"chapéu\",\n  \"chapéus\": \"chapéus\",\n  \"chapeuzinho\": \"chapeuzinh\",\n  \"chaplin\": \"chaplin\",\n  \"chardonnay\": \"chardonnay\",\n  \"charges\": \"charg\",\n  \"charlab\": \"charlab\",\n  \"charlatães\": \"charlatã\",\n  \"charlatanismo\": \"charlatan\",\n  \"charlatão\": \"charlatã\",\n  \"charles\": \"charl\",\n  \"charlton\": \"charlton\",\n  \"charme\": \"charm\",\n  \"charmes\": \"charm\",\n  \"charmoso\": \"charmos\",\n  \"charretes\": \"charret\",\n  \"charutaria\": \"charut\",\n  \"charuteiros\": \"charuteir\",\n  \"charuto\": \"charut\",\n  \"charutos\": \"charut\",\n  \"chás\": \"chás\",\n  \"chase\": \"chas\",\n  \"chassi\": \"chass\",\n  \"chat\": \"chat\",\n  \"chateado\": \"chat\",\n  \"chatíssimas\": \"chatíssim\",\n  \"chato\": \"chat\",\n  \"chatos\": \"chat\",\n  \"chavall\": \"chavall\",\n  \"chave\": \"chav\",\n  \"chaveco\": \"chavec\",\n  \"chaveiro\": \"chaveir\",\n  \"chaveiros\": \"chaveir\",\n  \"chaves\": \"chav\",\n  \"che\": \"che\",\n  \"checados\": \"chec\",\n  \"checagem\": \"checag\",\n  \"checamos\": \"chec\",\n  \"checar\": \"chec\",\n  \"check\": \"check\",\n  \"checo\": \"chec\",\n  \"checou\": \"chec\",\n  \"chee\": \"che\",\n  \"cheesecake\": \"cheesecak\",\n  \"chef\": \"chef\",\n  \"chefão\": \"chefã\",\n  \"chefe\": \"chef\",\n  \"chefes\": \"chef\",\n  \"chefia\": \"chef\",\n  \"chefiada\": \"chefi\",\n  \"chefiado\": \"chefi\",\n  \"chefiados\": \"chefi\",\n  \"chefiar\": \"chefi\",\n  \"chefiava\": \"chefi\",\n  \"chefiei\": \"chefi\",\n  \"chefões\": \"chefõ\",\n  \"chega\": \"cheg\",\n  \"chegada\": \"cheg\",\n  \"chegado\": \"cheg\",\n  \"chegados\": \"cheg\",\n  \"chegam\": \"cheg\",\n  \"chegamos\": \"cheg\",\n  \"chegando\": \"cheg\",\n  \"chegar\": \"cheg\",\n  \"chegara\": \"cheg\",\n  \"chegará\": \"cheg\",\n  \"chegaram\": \"cheg\",\n  \"chegarão\": \"cheg\",\n  \"chegarem\": \"cheg\",\n  \"chegaremos\": \"cheg\",\n  \"chegaria\": \"cheg\",\n  \"chegasse\": \"cheg\",\n  \"chegava\": \"cheg\",\n  \"chegavam\": \"cheg\",\n  \"chegávamos\": \"cheg\",\n  \"chego\": \"cheg\",\n  \"chegou\": \"cheg\",\n  \"chegue\": \"cheg\",\n  \"cheguei\": \"chegu\",\n  \"cheguem\": \"chegu\",\n  \"cheia\": \"che\",\n  \"cheias\": \"che\",\n  \"cheinhos\": \"cheinh\",\n  \"cheio\": \"chei\",\n  \"cheios\": \"chei\",\n  \"cheira\": \"cheir\",\n  \"cheirando\": \"cheir\",\n  \"cheirar\": \"cheir\",\n  \"cheirava\": \"cheir\",\n  \"cheiro\": \"cheir\",\n  \"cheirosinho\": \"cheirosinh\",\n  \"cheirou\": \"cheir\",\n  \"chek\": \"chek\",\n  \"chelotti\": \"chelott\",\n  \"cheque\": \"chequ\",\n  \"cheques\": \"chequ\",\n  \"cher\": \"cher\",\n  \"chereze\": \"cherez\",\n  \"chermont\": \"chermont\",\n  \"cherokee\": \"cheroke\",\n  \"chester\": \"chest\",\n  \"chia\": \"chi\",\n  \"chiang\": \"chiang\",\n  \"chianti\": \"chiant\",\n  \"chiapas\": \"chiap\",\n  \"chiaram\": \"chi\",\n  \"chiarina\": \"chiarin\",\n  \"chiarini\": \"chiarin\",\n  \"chiaro\": \"chiar\",\n  \"chicago\": \"chicag\",\n  \"chicão\": \"chicã\",\n  \"chicletes\": \"chiclet\",\n  \"chico\": \"chic\",\n  \"chicotadas\": \"chicot\",\n  \"chicoteá\": \"chicot\",\n  \"chief\": \"chief\",\n  \"chien\": \"chien\",\n  \"chiga\": \"chig\",\n  \"children\": \"children\",\n  \"chile\": \"chil\",\n  \"chilena\": \"chilen\",\n  \"chileno\": \"chilen\",\n  \"chimanovitch\": \"chimanovitch\",\n  \"china\": \"chin\",\n  \"chinelo\": \"chinel\",\n  \"chinelões\": \"chinelõ\",\n  \"chinelos\": \"chinel\",\n  \"chinês\": \"chinês\",\n  \"chinesa\": \"chines\",\n  \"chinesas\": \"chines\",\n  \"chineses\": \"chines\",\n  \"chip\": \"chip\",\n  \"chips\": \"chips\",\n  \"chiquamanga\": \"chiquamang\",\n  \"chique\": \"chiqu\",\n  \"chiquérrima\": \"chiquérrim\",\n  \"chiquérrimo\": \"chiquérrim\",\n  \"chiques\": \"chiqu\",\n  \"chiquinho\": \"chiquinh\",\n  \"chirac\": \"chirac\",\n  \"chispasse\": \"chisp\",\n  \"chiyoda\": \"chiyod\",\n  \"chnaiderman\": \"chnaiderman\",\n  \"choca\": \"choc\",\n  \"chocada\": \"choc\",\n  \"chocado\": \"choc\",\n  \"chocam\": \"choc\",\n  \"chocando\": \"choc\",\n  \"chocante\": \"chocant\",\n  \"chocar\": \"choc\",\n  \"chocava\": \"choc\",\n  \"choco\": \"choc\",\n  \"chocolate\": \"chocolat\",\n  \"chocolates\": \"chocolat\",\n  \"chocou\": \"choc\",\n  \"chofer\": \"chof\",\n  \"chope\": \"chop\",\n  \"chopes\": \"chop\",\n  \"chopinot\": \"chopinot\",\n  \"chopnics\": \"chopnics\",\n  \"choque\": \"choqu\",\n  \"choques\": \"choqu\",\n  \"chora\": \"chor\",\n  \"chorando\": \"chor\",\n  \"chorar\": \"chor\",\n  \"choraram\": \"chor\",\n  \"chorava\": \"chor\",\n  \"chorei\": \"chor\",\n  \"chorizo\": \"choriz\",\n  \"choro\": \"chor\",\n  \"choros\": \"chor\",\n  \"chorou\": \"chor\",\n  \"chove\": \"chov\",\n  \"chovendo\": \"chov\",\n  \"chover\": \"chov\",\n  \"choveram\": \"chov\",\n  \"choveu\": \"chov\",\n  \"chovia\": \"chov\",\n  \"chovido\": \"chov\",\n  \"chris\": \"chris\",\n  \"christ\": \"christ\",\n  \"christian\": \"christian\",\n  \"christianity\": \"christianity\",\n  \"christina\": \"christin\",\n  \"christopher\": \"christoph\",\n  \"chronos\": \"chron\",\n  \"chrysler\": \"chrysler\",\n  \"chrystian\": \"chrystian\",\n  \"chuchu\": \"chuchu\",\n  \"chuí\": \"chu\",\n  \"chulas\": \"chul\",\n  \"chumbo\": \"chumb\",\n  \"chupar\": \"chup\",\n  \"chupei\": \"chup\",\n  \"chuquisaca\": \"chuquisac\",\n  \"church\": \"church\",\n  \"churchill\": \"churchill\",\n  \"churo\": \"chur\",\n  \"churrascaria\": \"churrasc\",\n  \"churrascarias\": \"churrasc\",\n  \"churrasco\": \"churrasc\",\n  \"churrascos\": \"churrasc\",\n  \"churrasqueiras\": \"churrasqueir\",\n  \"chuta\": \"chut\",\n  \"chutar\": \"chut\",\n  \"chute\": \"chut\",\n  \"chutei\": \"chut\",\n  \"chuteira\": \"chuteir\",\n  \"chuteiras\": \"chuteir\",\n  \"chutes\": \"chut\",\n  \"chutou\": \"chut\",\n  \"chuva\": \"chuv\",\n  \"chuvas\": \"chuv\",\n  \"chuveiro\": \"chuveir\",\n  \"chuvoso\": \"chuvos\",\n  \"cia\": \"cia\",\n  \"ciac\": \"ciac\",\n  \"cianê\": \"cian\",\n  \"cianogênio\": \"cianogêni\",\n  \"ciao\": \"cia\",\n  \"ciberbar\": \"ciberb\",\n  \"ciberespaço\": \"ciberespac\",\n  \"cibernética\": \"cibernét\",\n  \"cibernético\": \"cibernét\",\n  \"cic\": \"cic\",\n  \"cicatriz\": \"cicatriz\",\n  \"cicatrização\": \"cicatriz\",\n  \"cicatrizar\": \"cicatriz\",\n  \"cicatrizei\": \"cicatriz\",\n  \"cicatrizes\": \"cicatriz\",\n  \"cícero\": \"cícer\",\n  \"cíclico\": \"cíclic\",\n  \"ciclismo\": \"ciclism\",\n  \"ciclista\": \"ciclist\",\n  \"ciclo\": \"cicl\",\n  \"cics\": \"cics\",\n  \"cid\": \"cid\",\n  \"cidadania\": \"cidadan\",\n  \"cidadão\": \"cidadã\",\n  \"cidadãos\": \"cidadã\",\n  \"cidade\": \"cidad\",\n  \"cidades\": \"cidad\",\n  \"cidadezinha\": \"cidadezinh\",\n  \"cidadezinhas\": \"cidadezinh\",\n  \"cidinha\": \"cidinh\",\n  \"cie\": \"cie\",\n  \"ciência\": \"ciênc\",\n  \"ciências\": \"ciênc\",\n  \"científica\": \"científ\",\n  \"cientificamente\": \"cientif\",\n  \"científicas\": \"científ\",\n  \"científico\": \"científ\",\n  \"científicos\": \"científ\",\n  \"cientista\": \"cientist\",\n  \"cientistas\": \"cientist\",\n  \"cieps\": \"cieps\",\n  \"cifali\": \"cifal\",\n  \"cifra\": \"cifr\",\n  \"cifras\": \"cifr\",\n  \"cifrões\": \"cifrõ\",\n  \"cigana\": \"cigan\",\n  \"ciganas\": \"cigan\",\n  \"cigar\": \"cig\",\n  \"cigarro\": \"cigarr\",\n  \"cigarros\": \"cigarr\",\n  \"ciladas\": \"cil\",\n  \"cilene\": \"cilen\",\n  \"cilíndrica\": \"cilíndr\",\n  \"cilindro\": \"cilindr\",\n  \"cilindros\": \"cilindr\",\n  \"cima\": \"cim\",\n  \"cimento\": \"ciment\",\n  \"cimentos\": \"ciment\",\n  \"cincinnati\": \"cincinnat\",\n  \"cinco\": \"cinc\",\n  \"cinderela\": \"cinderel\",\n  \"cindy\": \"cindy\",\n  \"cine\": \"cin\",\n  \"cinearte\": \"cineart\",\n  \"cineasta\": \"cineast\",\n  \"cineastas\": \"cineast\",\n  \"cinecittà\": \"cinecittà\",\n  \"cineclube\": \"cineclub\",\n  \"cinéfilo\": \"cinéfil\",\n  \"cinema\": \"cinem\",\n  \"cinemas\": \"cinem\",\n  \"cinematográfica\": \"cinematográf\",\n  \"cineminha\": \"cineminh\",\n  \"cinep\": \"cinep\",\n  \"cingapura\": \"cingapur\",\n  \"cinismo\": \"cinism\",\n  \"cinquenta\": \"cinquent\",\n  \"cinqüenta\": \"cinqüent\",\n  \"cinquentão\": \"cinquentã\",\n  \"cinquentenário\": \"cinquentenári\",\n  \"cinqüentenário\": \"cinqüentenári\",\n  \"cinqüentões\": \"cinqüentõ\",\n  \"cinta\": \"cint\",\n  \"cinthya\": \"cinthy\",\n  \"cintilante\": \"cintil\",\n  \"cintilografia\": \"cintilograf\",\n  \"cinto\": \"cint\",\n  \"cintos\": \"cint\",\n  \"cintra\": \"cintr\",\n  \"cintura\": \"cintur\",\n  \"cinturinha\": \"cinturinh\",\n  \"cinza\": \"cinz\",\n  \"cinzas\": \"cinz\",\n  \"cinzeiro\": \"cinzeir\",\n  \"cinzeiros\": \"cinzeir\",\n  \"cinzenta\": \"cinzent\",\n  \"cinzento\": \"cinzent\",\n  \"cinzentos\": \"cinzent\",\n  \"cio\": \"cio\",\n  \"cios\": \"cios\",\n  \"cip\": \"cip\",\n  \"cipó\": \"cip\",\n  \"cipriano\": \"ciprian\",\n  \"ciranda\": \"cirand\",\n  \"circo\": \"circ\",\n  \"circuito\": \"circuit\",\n  \"circuitos\": \"circuit\",\n  \"circula\": \"circul\",\n  \"circulação\": \"circul\",\n  \"circulam\": \"circul\",\n  \"circulando\": \"circul\",\n  \"circular\": \"circul\",\n  \"circularem\": \"circul\",\n  \"circulatória\": \"circulatór\",\n  \"circulatório\": \"circulatóri\",\n  \"circulava\": \"circul\",\n  \"circulem\": \"circul\",\n  \"círculo\": \"círcul\",\n  \"círculos\": \"círcul\",\n  \"circulou\": \"circul\",\n  \"circundante\": \"circund\",\n  \"circundavam\": \"circund\",\n  \"circunstância\": \"circunst\",\n  \"circunstancial\": \"circunstancial\",\n  \"circunstâncias\": \"circunstânc\",\n  \"cirillo\": \"cirill\",\n  \"ciro\": \"cir\",\n  \"cirrose\": \"cirros\",\n  \"cirugia\": \"cirug\",\n  \"cirugião\": \"cirugiã\",\n  \"cirurgia\": \"cirurg\",\n  \"cirurgiã\": \"cirurgiã\",\n  \"cirurgião\": \"cirurgiã\",\n  \"cirurgias\": \"cirurg\",\n  \"cirúrgica\": \"cirúrg\",\n  \"cirúrgicas\": \"cirúrg\",\n  \"cirúrgico\": \"cirúrg\",\n  \"cirúrgicos\": \"cirúrg\",\n  \"cis\": \"cis\",\n  \"cisjordânia\": \"cisjordân\",\n  \"cisma\": \"cism\",\n  \"cismaram\": \"cism\",\n  \"cisne\": \"cisn\",\n  \"cisões\": \"cisõ\",\n  \"cística\": \"cístic\",\n  \"cisto\": \"cist\",\n  \"cistos\": \"cist\",\n  \"cita\": \"cit\",\n  \"citação\": \"citaçã\",\n  \"citadas\": \"cit\",\n  \"citado\": \"cit\",\n  \"citados\": \"cit\",\n  \"citando\": \"cit\",\n  \"citar\": \"cit\",\n  \"citation\": \"citation\",\n  \"cites\": \"cit\",\n  \"citiações\": \"citiaçõ\",\n  \"citibank\": \"citibank\",\n  \"citou\": \"cit\",\n  \"cítrico\": \"cítric\",\n  \"cítricos\": \"cítric\",\n  \"citrocar\": \"citroc\",\n  \"city\": \"city\",\n  \"ciúme\": \"ciúm\",\n  \"ciumento\": \"ciument\",\n  \"ciúmes\": \"ciúm\",\n  \"cível\": \"cível\",\n  \"civic\": \"civic\",\n  \"cívicas\": \"cívic\",\n  \"cívico\": \"cívic\",\n  \"civil\": \"civil\",\n  \"civilização\": \"civiliz\",\n  \"civilizações\": \"civiliz\",\n  \"civilizadas\": \"civiliz\",\n  \"civis\": \"civ\",\n  \"cl\": \"cl\",\n  \"clã\": \"clã\",\n  \"clamor\": \"clamor\",\n  \"clamorosos\": \"clamor\",\n  \"clandestina\": \"clandestin\",\n  \"clandestinamente\": \"clandestin\",\n  \"clandestinas\": \"clandestin\",\n  \"clandestinidade\": \"clandestin\",\n  \"clandestino\": \"clandestin\",\n  \"clandestinos\": \"clandestin\",\n  \"clapton\": \"clapton\",\n  \"clara\": \"clar\",\n  \"claramente\": \"clar\",\n  \"claras\": \"clar\",\n  \"clareada\": \"clar\",\n  \"clareando\": \"clar\",\n  \"clarear\": \"clar\",\n  \"clareiam\": \"clar\",\n  \"clareira\": \"clareir\",\n  \"clareza\": \"clarez\",\n  \"clarice\": \"claric\",\n  \"claridade\": \"claridad\",\n  \"claridge\": \"claridg\",\n  \"claríssimo\": \"claríssim\",\n  \"clark\": \"clark\",\n  \"clarke\": \"clark\",\n  \"claro\": \"clar\",\n  \"claros\": \"clar\",\n  \"classe\": \"class\",\n  \"classes\": \"class\",\n  \"clássica\": \"clássic\",\n  \"clássicas\": \"clássic\",\n  \"clássico\": \"clássic\",\n  \"clássicos\": \"clássic\",\n  \"classics\": \"classics\",\n  \"classifica\": \"classif\",\n  \"classificação\": \"classific\",\n  \"classificada\": \"classific\",\n  \"classificadas\": \"classific\",\n  \"classificado\": \"classific\",\n  \"classificador\": \"classific\",\n  \"classificados\": \"classific\",\n  \"classificam\": \"classific\",\n  \"classificando\": \"classific\",\n  \"classificar\": \"classific\",\n  \"classificaria\": \"classific\",\n  \"classiline\": \"classilin\",\n  \"claucerlei\": \"claucerl\",\n  \"claudeir\": \"claud\",\n  \"claudete\": \"claudet\",\n  \"claudia\": \"claud\",\n  \"cláudia\": \"cláud\",\n  \"claudinho\": \"claudinh\",\n  \"claudino\": \"claudin\",\n  \"claudio\": \"claudi\",\n  \"cláudio\": \"cláudi\",\n  \"claúdio\": \"claúdi\",\n  \"claudius\": \"claudius\",\n  \"cláusula\": \"cláusul\",\n  \"clayton\": \"clayton\",\n  \"clean\": \"clean\",\n  \"cleber\": \"cleb\",\n  \"cledson\": \"cledson\",\n  \"cléo\": \"clé\",\n  \"clérigo\": \"clérig\",\n  \"clérigos\": \"clérig\",\n  \"clero\": \"cler\",\n  \"cleto\": \"clet\",\n  \"cleusa\": \"cleus\",\n  \"cleveland\": \"cleveland\",\n  \"cleverson\": \"cleverson\",\n  \"cliente\": \"client\",\n  \"clientela\": \"clientel\",\n  \"clientelismo\": \"clientel\",\n  \"clientes\": \"client\",\n  \"clima\": \"clim\",\n  \"climas\": \"clim\",\n  \"climatério\": \"climatéri\",\n  \"climatizada\": \"climatiz\",\n  \"climatizadas\": \"climatiz\",\n  \"climatizado\": \"climatiz\",\n  \"clímax\": \"clímax\",\n  \"clínica\": \"clínic\",\n  \"clinicamente\": \"clinic\",\n  \"clínicas\": \"clínic\",\n  \"clínico\": \"clínic\",\n  \"clínicos\": \"clínic\",\n  \"clinics\": \"clinics\",\n  \"clinton\": \"clinton\",\n  \"clio\": \"cli\",\n  \"clip\": \"clip\",\n  \"clipe\": \"clip\",\n  \"clipes\": \"clip\",\n  \"clique\": \"cliqu\",\n  \"cliques\": \"cliqu\",\n  \"clitóris\": \"clitór\",\n  \"clitoromegalia\": \"clitoromegal\",\n  \"clô\": \"clô\",\n  \"clock\": \"clock\",\n  \"cloé\": \"clo\",\n  \"clonada\": \"clon\",\n  \"clonagem\": \"clonag\",\n  \"clone\": \"clon\",\n  \"clorofórmio\": \"clorofórmi\",\n  \"clos\": \"clos\",\n  \"close\": \"clos\",\n  \"closes\": \"clos\",\n  \"closet\": \"closet\",\n  \"clouseau\": \"clouseau\",\n  \"clovis\": \"clov\",\n  \"clóvis\": \"clóv\",\n  \"club\": \"club\",\n  \"clubber\": \"clubb\",\n  \"clubbers\": \"clubbers\",\n  \"clube\": \"club\",\n  \"clubes\": \"club\",\n  \"clylton\": \"clylton\",\n  \"cm\": \"cm\",\n  \"cnbb\": \"cnbb\",\n  \"cnn\": \"cnn\",\n  \"cnpq\": \"cnpq\",\n  \"cnt\": \"cnt\",\n  \"co\": \"co\",\n  \"coabitação\": \"coabit\",\n  \"coadjuvante\": \"coadjuv\",\n  \"coagida\": \"coag\",\n  \"coagulação\": \"coagul\",\n  \"coágulos\": \"coágul\",\n  \"coalhado\": \"coalh\",\n  \"coalho\": \"coalh\",\n  \"coalition\": \"coalition\",\n  \"coalizão\": \"coalizã\",\n  \"cobaia\": \"coba\",\n  \"cobaias\": \"coba\",\n  \"cobain\": \"cobain\",\n  \"coberta\": \"cobert\",\n  \"cobertas\": \"cobert\",\n  \"coberto\": \"cobert\",\n  \"cobertor\": \"cobertor\",\n  \"cobertos\": \"cobert\",\n  \"cobertura\": \"cobertur\",\n  \"coberturas\": \"cobertur\",\n  \"cobiça\": \"cobic\",\n  \"cobiçadas\": \"cobic\",\n  \"cobiçados\": \"cobic\",\n  \"cobiçaram\": \"cobic\",\n  \"cobra\": \"cobr\",\n  \"cobradas\": \"cobr\",\n  \"cobrado\": \"cobr\",\n  \"cobrados\": \"cobr\",\n  \"cobram\": \"cobr\",\n  \"cobrança\": \"cobranc\",\n  \"cobranças\": \"cobranc\",\n  \"cobrando\": \"cobr\",\n  \"cobrar\": \"cobr\",\n  \"cobras\": \"cobr\",\n  \"cobrava\": \"cobr\",\n  \"cobravam\": \"cobr\",\n  \"cobravem\": \"cobrav\",\n  \"cobre\": \"cobr\",\n  \"cobrem\": \"cobr\",\n  \"cobria\": \"cobr\",\n  \"cobrir\": \"cobr\",\n  \"cobriu\": \"cobr\",\n  \"cobro\": \"cobr\",\n  \"cobrou\": \"cobr\",\n  \"coca\": \"coc\",\n  \"cocaína\": \"cocaín\",\n  \"cochabamba\": \"cochabamb\",\n  \"cochichou\": \"cochich\",\n  \"cochilam\": \"cochil\",\n  \"cochilo\": \"cochil\",\n  \"cochin\": \"cochin\",\n  \"coco\": \"coc\",\n  \"cocô\": \"cocô\",\n  \"cocoa\": \"coco\",\n  \"cocoricó\": \"cocoric\",\n  \"cocos\": \"coc\",\n  \"code\": \"cod\",\n  \"codec\": \"codec\",\n  \"codi\": \"cod\",\n  \"codificadora\": \"codific\",\n  \"código\": \"códig\",\n  \"códigos\": \"códig\",\n  \"codinome\": \"codinom\",\n  \"codinomes\": \"codinom\",\n  \"codis\": \"cod\",\n  \"coelho\": \"coelh\",\n  \"coelhos\": \"coelh\",\n  \"coentro\": \"coentr\",\n  \"coerção\": \"coerçã\",\n  \"coerente\": \"coerent\",\n  \"coeso\": \"coes\",\n  \"coffee\": \"coffe\",\n  \"cofre\": \"cofr\",\n  \"cofres\": \"cofr\",\n  \"cogitado\": \"cogit\",\n  \"cogitar\": \"cogit\",\n  \"cogitou\": \"cogit\",\n  \"cohabs\": \"cohabs\",\n  \"cohen\": \"cohen\",\n  \"coi\": \"coi\",\n  \"coibir\": \"coib\",\n  \"coimbra\": \"coimbr\",\n  \"coincidam\": \"coincid\",\n  \"coincidência\": \"coincident\",\n  \"coincidências\": \"coincident\",\n  \"coincidentemente\": \"coincident\",\n  \"coincidia\": \"coincid\",\n  \"coincidiu\": \"coincid\",\n  \"coisa\": \"cois\",\n  \"coisas\": \"cois\",\n  \"coita\": \"coit\",\n  \"cola\": \"col\",\n  \"colabora\": \"colabor\",\n  \"colaboração\": \"colabor\",\n  \"colaborações\": \"colabor\",\n  \"colaborador\": \"colabor\",\n  \"colaboradores\": \"colabor\",\n  \"colaboram\": \"colabor\",\n  \"colaborando\": \"colabor\",\n  \"colaborar\": \"colabor\",\n  \"colaboraram\": \"colabor\",\n  \"colaboravam\": \"colabor\",\n  \"colaborou\": \"colabor\",\n  \"colada\": \"col\",\n  \"colado\": \"col\",\n  \"colagem\": \"colag\",\n  \"colágeno\": \"colágen\",\n  \"colando\": \"col\",\n  \"colantes\": \"colant\",\n  \"colapso\": \"colaps\",\n  \"colar\": \"col\",\n  \"colares\": \"col\",\n  \"colarinho\": \"colarinh\",\n  \"colarinhos\": \"colarinh\",\n  \"colas\": \"col\",\n  \"colaterais\": \"colater\",\n  \"colateral\": \"colateral\",\n  \"colava\": \"col\",\n  \"colchão\": \"colchã\",\n  \"colchões\": \"colchõ\",\n  \"cole\": \"col\",\n  \"coleção\": \"coleçã\",\n  \"coleciona\": \"colecion\",\n  \"colecionando\": \"colecion\",\n  \"colecionava\": \"colecion\",\n  \"coleções\": \"coleçõ\",\n  \"colega\": \"coleg\",\n  \"colegas\": \"coleg\",\n  \"colegiado\": \"colegi\",\n  \"colegial\": \"colegial\",\n  \"colégio\": \"colégi\",\n  \"colégios\": \"colégi\",\n  \"coleguinha\": \"coleguinh\",\n  \"coleguinhas\": \"coleguinh\",\n  \"cólera\": \"cól\",\n  \"coléricas\": \"colér\",\n  \"coles\": \"col\",\n  \"colesterol\": \"colesterol\",\n  \"coleta\": \"colet\",\n  \"coletado\": \"colet\",\n  \"coletados\": \"colet\",\n  \"coletando\": \"colet\",\n  \"coletâneas\": \"coletân\",\n  \"colete\": \"colet\",\n  \"coletes\": \"colet\",\n  \"coletiva\": \"colet\",\n  \"coletivas\": \"colet\",\n  \"coletivo\": \"colet\",\n  \"coletivos\": \"colet\",\n  \"colhe\": \"colh\",\n  \"colhedeira\": \"colhedeir\",\n  \"colhedeiras\": \"colhedeir\",\n  \"colheita\": \"colheit\",\n  \"colheitas\": \"colheit\",\n  \"colhem\": \"colh\",\n  \"colhendo\": \"colh\",\n  \"colher\": \"colh\",\n  \"colherá\": \"colh\",\n  \"colheu\": \"colh\",\n  \"colhidas\": \"colh\",\n  \"colhido\": \"colh\",\n  \"colhidos\": \"colh\",\n  \"colho\": \"colh\",\n  \"cólicas\": \"cólic\",\n  \"colidem\": \"colid\",\n  \"colidindo\": \"colid\",\n  \"colidiu\": \"colid\",\n  \"coligações\": \"colig\",\n  \"coligadas\": \"colig\",\n  \"coligará\": \"colig\",\n  \"colin\": \"colin\",\n  \"colina\": \"colin\",\n  \"colírio\": \"colíri\",\n  \"colisão\": \"colisã\",\n  \"collaborative\": \"collaborativ\",\n  \"collares\": \"coll\",\n  \"colli\": \"coll\",\n  \"collin\": \"collin\",\n  \"collor\": \"collor\",\n  \"colo\": \"col\",\n  \"coloboravam\": \"colobor\",\n  \"coloca\": \"coloc\",\n  \"colocá\": \"coloc\",\n  \"colocação\": \"coloc\",\n  \"colocada\": \"coloc\",\n  \"colocadas\": \"coloc\",\n  \"colocado\": \"coloc\",\n  \"colocados\": \"coloc\",\n  \"colocam\": \"coloc\",\n  \"colocamos\": \"coloc\",\n  \"colocando\": \"coloc\",\n  \"colocar\": \"coloc\",\n  \"colocaram\": \"coloc\",\n  \"colocarão\": \"coloc\",\n  \"colocaria\": \"coloc\",\n  \"colocariam\": \"coloc\",\n  \"colocarmos\": \"coloc\",\n  \"colocasse\": \"coloc\",\n  \"colocava\": \"coloc\",\n  \"coloco\": \"coloc\",\n  \"colocou\": \"coloc\",\n  \"colômbia\": \"colômb\",\n  \"colombiana\": \"colombian\",\n  \"colombianas\": \"colombian\",\n  \"colombiano\": \"colombian\",\n  \"colombianos\": \"colombian\",\n  \"colombo\": \"colomb\",\n  \"cólon\": \"cólon\",\n  \"colônia\": \"colôn\",\n  \"coloniais\": \"coloni\",\n  \"colonial\": \"colonial\",\n  \"colonialismo\": \"colonial\",\n  \"colonização\": \"coloniz\",\n  \"colonizado\": \"coloniz\",\n  \"colonizadores\": \"coloniz\",\n  \"colonizar\": \"coloniz\",\n  \"colono\": \"colon\",\n  \"colonos\": \"colon\",\n  \"coloque\": \"coloqu\",\n  \"coloquem\": \"coloqu\",\n  \"coloração\": \"color\",\n  \"colorado\": \"color\",\n  \"coloratura\": \"coloratur\",\n  \"colorida\": \"color\",\n  \"coloridas\": \"color\",\n  \"colorido\": \"color\",\n  \"coloridos\": \"color\",\n  \"colors\": \"colors\",\n  \"colortel\": \"colortel\",\n  \"colossais\": \"coloss\",\n  \"colossal\": \"colossal\",\n  \"columbia\": \"columb\",\n  \"colúmbia\": \"colúmb\",\n  \"coluna\": \"colun\",\n  \"colunas\": \"colun\",\n  \"colunáveis\": \"colun\",\n  \"colunista\": \"colun\",\n  \"com\": \"com\",\n  \"coma\": \"com\",\n  \"comam\": \"com\",\n  \"comanche\": \"comanch\",\n  \"comanda\": \"comand\",\n  \"comandada\": \"comand\",\n  \"comandadas\": \"comand\",\n  \"comandado\": \"comand\",\n  \"comandados\": \"comand\",\n  \"comandam\": \"comand\",\n  \"comandande\": \"comandand\",\n  \"comandante\": \"comand\",\n  \"comandantes\": \"comand\",\n  \"comandar\": \"comand\",\n  \"comandará\": \"comand\",\n  \"comandarem\": \"comand\",\n  \"comando\": \"com\",\n  \"comandos\": \"comand\",\n  \"comandou\": \"comand\",\n  \"comarca\": \"comarc\",\n  \"comarcas\": \"comarc\",\n  \"combalida\": \"combal\",\n  \"combalido\": \"combal\",\n  \"combate\": \"combat\",\n  \"combatê\": \"combat\",\n  \"combatem\": \"combat\",\n  \"combatendo\": \"combat\",\n  \"combatente\": \"combatent\",\n  \"combatentes\": \"combatent\",\n  \"combater\": \"combat\",\n  \"combateram\": \"combat\",\n  \"combates\": \"combat\",\n  \"combateu\": \"combat\",\n  \"combatiam\": \"combat\",\n  \"combatida\": \"combat\",\n  \"combatido\": \"combat\",\n  \"combativa\": \"combat\",\n  \"combativo\": \"combat\",\n  \"combativos\": \"combat\",\n  \"combina\": \"combin\",\n  \"combiná\": \"combin\",\n  \"combinação\": \"combin\",\n  \"combinações\": \"combin\",\n  \"combinada\": \"combin\",\n  \"combinadas\": \"combin\",\n  \"combinado\": \"combin\",\n  \"combinador\": \"combin\",\n  \"combinam\": \"combin\",\n  \"combinamos\": \"combin\",\n  \"combinando\": \"combin\",\n  \"combinar\": \"combin\",\n  \"combinaram\": \"combin\",\n  \"combinem\": \"combin\",\n  \"combinou\": \"combin\",\n  \"comboio\": \"comboi\",\n  \"comboios\": \"comboi\",\n  \"combustão\": \"combustã\",\n  \"combustível\": \"combust\",\n  \"come\": \"com\",\n  \"comê\": \"com\",\n  \"começa\": \"comec\",\n  \"começá\": \"comec\",\n  \"começado\": \"comec\",\n  \"começam\": \"comec\",\n  \"começamos\": \"comec\",\n  \"começando\": \"comec\",\n  \"começar\": \"comec\",\n  \"começará\": \"comec\",\n  \"começaram\": \"comec\",\n  \"começarão\": \"comec\",\n  \"começarem\": \"comec\",\n  \"começaremos\": \"comec\",\n  \"começasse\": \"comec\",\n  \"começava\": \"comec\",\n  \"começavam\": \"comec\",\n  \"comece\": \"comec\",\n  \"comecei\": \"comec\",\n  \"comecem\": \"comec\",\n  \"comecemos\": \"comec\",\n  \"começo\": \"comec\",\n  \"começou\": \"comec\",\n  \"comédia\": \"coméd\",\n  \"comediante\": \"comedi\",\n  \"comediantes\": \"comedi\",\n  \"comedido\": \"comed\",\n  \"comedores\": \"comedor\",\n  \"comem\": \"com\",\n  \"comemora\": \"comemor\",\n  \"comemoração\": \"comemor\",\n  \"comemorações\": \"comemor\",\n  \"comemorada\": \"comemor\",\n  \"comemorado\": \"comemor\",\n  \"comemoram\": \"comemor\",\n  \"comemorando\": \"comemor\",\n  \"comemorar\": \"comemor\",\n  \"comemoraram\": \"comemor\",\n  \"comemorativa\": \"comemor\",\n  \"comemorava\": \"comemor\",\n  \"comemoravam\": \"comemor\",\n  \"comemorou\": \"comemor\",\n  \"comemos\": \"com\",\n  \"comendo\": \"com\",\n  \"comenta\": \"coment\",\n  \"comentada\": \"coment\",\n  \"comentam\": \"coment\",\n  \"comentando\": \"coment\",\n  \"comentar\": \"coment\",\n  \"comentaram\": \"coment\",\n  \"comentário\": \"comentári\",\n  \"comentários\": \"comentári\",\n  \"comentarista\": \"comentar\",\n  \"comentaristas\": \"comentar\",\n  \"comentou\": \"coment\",\n  \"comer\": \"com\",\n  \"comeram\": \"com\",\n  \"comerciais\": \"comerc\",\n  \"comercial\": \"comercial\",\n  \"comercializa\": \"comercializ\",\n  \"comercialização\": \"comercializ\",\n  \"comercializadas\": \"comercializ\",\n  \"comercializados\": \"comercializ\",\n  \"comercializam\": \"comercializ\",\n  \"comercializando\": \"comercializ\",\n  \"comercializar\": \"comercializ\",\n  \"comercialmente\": \"comercial\",\n  \"comerciante\": \"comerc\",\n  \"comerciantes\": \"comerc\",\n  \"comerciar\": \"comerc\",\n  \"comércio\": \"comérci\",\n  \"comeria\": \"com\",\n  \"comes\": \"com\",\n  \"cometa\": \"comet\",\n  \"cometas\": \"comet\",\n  \"comete\": \"comet\",\n  \"cometem\": \"comet\",\n  \"cometemos\": \"comet\",\n  \"cometendo\": \"comet\",\n  \"cometer\": \"comet\",\n  \"cometeram\": \"comet\",\n  \"cometerem\": \"comet\",\n  \"cometeu\": \"comet\",\n  \"cometi\": \"comet\",\n  \"cometida\": \"comet\",\n  \"cometidas\": \"comet\",\n  \"cometido\": \"comet\",\n  \"cometidos\": \"comet\",\n  \"comeu\": \"com\",\n  \"comi\": \"com\",\n  \"comia\": \"com\",\n  \"comiam\": \"com\",\n  \"comíamos\": \"com\",\n  \"cômica\": \"cômic\",\n  \"comicidade\": \"comic\",\n  \"comício\": \"comíci\",\n  \"cômico\": \"cômic\",\n  \"comida\": \"com\",\n  \"comidas\": \"com\",\n  \"comido\": \"com\",\n  \"comigo\": \"comig\",\n  \"comissão\": \"comissã\",\n  \"comissária\": \"comissár\",\n  \"comissárias\": \"comissár\",\n  \"comissário\": \"comissári\",\n  \"comissários\": \"comissári\",\n  \"comission\": \"comission\",\n  \"comissões\": \"comissõ\",\n  \"comitê\": \"comit\",\n  \"comitiva\": \"comit\",\n  \"comjár\": \"comjár\",\n  \"commander\": \"command\",\n  \"commercial\": \"commercial\",\n  \"communicator\": \"communicator\",\n  \"como\": \"com\",\n  \"comoção\": \"comoçã\",\n  \"cômoda\": \"cômod\",\n  \"comodidade\": \"comod\",\n  \"comodidades\": \"comod\",\n  \"comodismo\": \"comod\",\n  \"comodo\": \"comod\",\n  \"cômodo\": \"cômod\",\n  \"cômodos\": \"cômod\",\n  \"comovem\": \"comov\",\n  \"comovente\": \"comovent\",\n  \"comoveu\": \"comov\",\n  \"compactas\": \"compact\",\n  \"compactos\": \"compact\",\n  \"compaixão\": \"compaixã\",\n  \"compañero\": \"compañer\",\n  \"companheira\": \"companheir\",\n  \"companheirada\": \"companheir\",\n  \"companheiro\": \"companheir\",\n  \"companheiros\": \"companheir\",\n  \"companhia\": \"companh\",\n  \"companhias\": \"companh\",\n  \"company\": \"company\",\n  \"compaq\": \"compaq\",\n  \"compara\": \"comp\",\n  \"compará\": \"comp\",\n  \"comparação\": \"compar\",\n  \"comparações\": \"compar\",\n  \"comparada\": \"compar\",\n  \"comparado\": \"compar\",\n  \"comparados\": \"compar\",\n  \"comparam\": \"comp\",\n  \"comparando\": \"compar\",\n  \"comparar\": \"compar\",\n  \"comparará\": \"compar\",\n  \"compararem\": \"compar\",\n  \"comparativamente\": \"compar\",\n  \"comparativo\": \"compar\",\n  \"comparato\": \"comparat\",\n  \"comparáveis\": \"compar\",\n  \"comparável\": \"compar\",\n  \"compare\": \"compar\",\n  \"comparecer\": \"comparec\",\n  \"compareceram\": \"comparec\",\n  \"comparecia\": \"comparec\",\n  \"comparou\": \"compar\",\n  \"comparsa\": \"compars\",\n  \"compartilha\": \"compartilh\",\n  \"compartilhada\": \"compartilh\",\n  \"compartilhado\": \"compartilh\",\n  \"compartilhados\": \"compartilh\",\n  \"compartilhamento\": \"compartilh\",\n  \"compartilhar\": \"compartilh\",\n  \"compartilharam\": \"compartilh\",\n  \"compartilhem\": \"compartilh\",\n  \"compartimentada\": \"compartiment\",\n  \"compartimentaram\": \"compartiment\",\n  \"compartimento\": \"compart\",\n  \"compatibilizar\": \"compatibiliz\",\n  \"compenetrado\": \"compenetr\",\n  \"compensa\": \"compens\",\n  \"compensá\": \"compens\",\n  \"compensação\": \"compens\",\n  \"compensações\": \"compens\",\n  \"compensada\": \"compens\",\n  \"compensado\": \"compens\",\n  \"compensados\": \"compens\",\n  \"compensam\": \"compens\",\n  \"compensar\": \"compens\",\n  \"compensasse\": \"compens\",\n  \"compenso\": \"compens\",\n  \"compensou\": \"compens\",\n  \"compete\": \"compet\",\n  \"competência\": \"competent\",\n  \"competente\": \"competent\",\n  \"competentes\": \"competent\",\n  \"competia\": \"compet\",\n  \"competiam\": \"compet\",\n  \"competição\": \"competiçã\",\n  \"competições\": \"competiçõ\",\n  \"competidores\": \"competidor\",\n  \"competir\": \"compet\",\n  \"competitiva\": \"competit\",\n  \"competitivas\": \"competit\",\n  \"competitividade\": \"competit\",\n  \"competitivo\": \"competit\",\n  \"competitivos\": \"competit\",\n  \"compiladas\": \"compil\",\n  \"compilado\": \"compil\",\n  \"complacência\": \"complacent\",\n  \"complementa\": \"complement\",\n  \"complementação\": \"complement\",\n  \"complementar\": \"complement\",\n  \"complementares\": \"complement\",\n  \"complemento\": \"complement\",\n  \"complementos\": \"complement\",\n  \"complementou\": \"complement\",\n  \"completa\": \"complet\",\n  \"completada\": \"complet\",\n  \"completado\": \"complet\",\n  \"completados\": \"complet\",\n  \"completam\": \"complet\",\n  \"completamente\": \"complet\",\n  \"completando\": \"complet\",\n  \"completar\": \"complet\",\n  \"completará\": \"complet\",\n  \"completas\": \"complet\",\n  \"completava\": \"complet\",\n  \"completinho\": \"completinh\",\n  \"completo\": \"complet\",\n  \"completos\": \"complet\",\n  \"completou\": \"complet\",\n  \"complexa\": \"complex\",\n  \"complexada\": \"complex\",\n  \"complexas\": \"complex\",\n  \"complexidade\": \"complex\",\n  \"complexidades\": \"complex\",\n  \"complexo\": \"complex\",\n  \"complexos\": \"complex\",\n  \"complica\": \"complic\",\n  \"complicação\": \"complic\",\n  \"complicações\": \"complic\",\n  \"complicada\": \"complic\",\n  \"complicadas\": \"complic\",\n  \"complicadíssima\": \"complicadíssim\",\n  \"complicado\": \"complic\",\n  \"complicador\": \"complic\",\n  \"complicados\": \"complic\",\n  \"complicando\": \"complic\",\n  \"complicar\": \"complic\",\n  \"complicava\": \"complic\",\n  \"complicou\": \"complic\",\n  \"complô\": \"complô\",\n  \"compõe\": \"compõ\",\n  \"compõem\": \"compõ\",\n  \"compondo\": \"compond\",\n  \"componente\": \"component\",\n  \"componentes\": \"component\",\n  \"compor\": \"compor\",\n  \"comporta\": \"comport\",\n  \"comportada\": \"comport\",\n  \"comportadíssima\": \"comportadíssim\",\n  \"comportado\": \"comport\",\n  \"comportamental\": \"comportamental\",\n  \"comportamento\": \"comport\",\n  \"comportamentos\": \"comport\",\n  \"comportar\": \"comport\",\n  \"comportava\": \"comport\",\n  \"compôs\": \"compôs\",\n  \"composição\": \"composiçã\",\n  \"composições\": \"composiçõ\",\n  \"compositor\": \"compositor\",\n  \"compositores\": \"compositor\",\n  \"composta\": \"compost\",\n  \"compostas\": \"compost\",\n  \"composto\": \"compost\",\n  \"compostos\": \"compost\",\n  \"compra\": \"compr\",\n  \"comprá\": \"compr\",\n  \"comprada\": \"compr\",\n  \"compradas\": \"compr\",\n  \"comprado\": \"compr\",\n  \"comprador\": \"comprador\",\n  \"compradoras\": \"comprador\",\n  \"compradores\": \"comprador\",\n  \"comprados\": \"compr\",\n  \"compram\": \"compr\",\n  \"compramos\": \"compr\",\n  \"comprando\": \"compr\",\n  \"comprar\": \"compr\",\n  \"compraram\": \"compr\",\n  \"compraria\": \"compr\",\n  \"compras\": \"compr\",\n  \"comprasse\": \"compr\",\n  \"comprava\": \"compr\",\n  \"compravam\": \"compr\",\n  \"compre\": \"compr\",\n  \"compreende\": \"compreend\",\n  \"compreendem\": \"compreend\",\n  \"compreendemos\": \"compreend\",\n  \"compreender\": \"compreend\",\n  \"compreenderam\": \"compreend\",\n  \"compreendidas\": \"compreend\",\n  \"compreendido\": \"compreend\",\n  \"compreensão\": \"compreensã\",\n  \"compreensiva\": \"compreens\",\n  \"compreensível\": \"compreens\",\n  \"compreensivo\": \"compreens\",\n  \"comprei\": \"compr\",\n  \"compresp\": \"compresp\",\n  \"compressão\": \"compressã\",\n  \"compressas\": \"compress\",\n  \"compressor\": \"compressor\",\n  \"comprida\": \"compr\",\n  \"compridão\": \"compridã\",\n  \"compridas\": \"compr\",\n  \"comprido\": \"compr\",\n  \"compridos\": \"compr\",\n  \"comprimento\": \"compriment\",\n  \"comprimidas\": \"comprim\",\n  \"comprimido\": \"comprim\",\n  \"comprimidos\": \"comprim\",\n  \"compro\": \"compr\",\n  \"compromete\": \"compromet\",\n  \"comprometedor\": \"comprometedor\",\n  \"comprometedoras\": \"comprometedor\",\n  \"comprometedores\": \"comprometedor\",\n  \"comprometem\": \"compromet\",\n  \"comprometendo\": \"compromet\",\n  \"comprometer\": \"compromet\",\n  \"comprometeu\": \"compromet\",\n  \"comprometiam\": \"compromet\",\n  \"comprometida\": \"compromet\",\n  \"comprometido\": \"compromet\",\n  \"comprometimento\": \"compromet\",\n  \"compromisso\": \"compromiss\",\n  \"compromissos\": \"compromiss\",\n  \"comprou\": \"compr\",\n  \"comprova\": \"comprov\",\n  \"comprovação\": \"comprov\",\n  \"comprovada\": \"comprov\",\n  \"comprovadamente\": \"comprov\",\n  \"comprovadas\": \"comprov\",\n  \"comprovado\": \"comprov\",\n  \"comprovados\": \"comprov\",\n  \"comprovam\": \"comprov\",\n  \"comprovar\": \"comprov\",\n  \"comprovaram\": \"comprov\",\n  \"comprovaria\": \"comprov\",\n  \"comprovou\": \"comprov\",\n  \"compulsão\": \"compulsã\",\n  \"compulsivamente\": \"compuls\",\n  \"compulsivo\": \"compuls\",\n  \"compulsivos\": \"compuls\",\n  \"compulsoriamente\": \"compulsori\",\n  \"compulsório\": \"compulsóri\",\n  \"compunha\": \"compunh\",\n  \"computação\": \"comput\",\n  \"computador\": \"comput\",\n  \"computadores\": \"comput\",\n  \"computadorizada\": \"computadoriz\",\n  \"computadorizado\": \"computadoriz\",\n  \"computando\": \"comput\",\n  \"computar\": \"comput\",\n  \"computava\": \"comput\",\n  \"computável\": \"comput\",\n  \"computer\": \"comput\",\n  \"comum\": \"comum\",\n  \"comungar\": \"comung\",\n  \"comunhão\": \"comunhã\",\n  \"comunica\": \"comun\",\n  \"comunicação\": \"comunic\",\n  \"comunicações\": \"comunic\",\n  \"comunicada\": \"comunic\",\n  \"comunicador\": \"comunic\",\n  \"comunicam\": \"comunic\",\n  \"comunicar\": \"comunic\",\n  \"comunicaram\": \"comunic\",\n  \"comunicou\": \"comunic\",\n  \"comunidade\": \"comun\",\n  \"comunidades\": \"comun\",\n  \"comunismo\": \"comun\",\n  \"comunista\": \"comun\",\n  \"comunistas\": \"comun\",\n  \"comunitária\": \"comunitár\",\n  \"comunitárias\": \"comunitár\",\n  \"comunitário\": \"comunitári\",\n  \"comunitários\": \"comunitári\",\n  \"comuns\": \"comuns\",\n  \"conab\": \"conab\",\n  \"conaf\": \"conaf\",\n  \"concebeu\": \"conceb\",\n  \"concebido\": \"conceb\",\n  \"concede\": \"conced\",\n  \"concedei\": \"conced\",\n  \"concedendo\": \"conced\",\n  \"conceder\": \"conced\",\n  \"concederá\": \"conced\",\n  \"concedeu\": \"conced\",\n  \"concedi\": \"conced\",\n  \"concedida\": \"conced\",\n  \"concedido\": \"conced\",\n  \"concedidos\": \"conced\",\n  \"conceição\": \"conceiçã\",\n  \"conceito\": \"conceit\",\n  \"conceitos\": \"conceit\",\n  \"conceituada\": \"conceitu\",\n  \"conceituado\": \"conceitu\",\n  \"conceituados\": \"conceitu\",\n  \"conceitual\": \"conceitual\",\n  \"concentra\": \"concentr\",\n  \"concentração\": \"concentr\",\n  \"concentrações\": \"concentr\",\n  \"concentrada\": \"concentr\",\n  \"concentrado\": \"concentr\",\n  \"concentrados\": \"concentr\",\n  \"concentram\": \"concentr\",\n  \"concentrando\": \"concentr\",\n  \"concentrar\": \"concentr\",\n  \"concentravam\": \"concentr\",\n  \"concentrou\": \"concentr\",\n  \"concepção\": \"concepçã\",\n  \"concert\": \"concert\",\n  \"concertos\": \"concert\",\n  \"concessão\": \"concessã\",\n  \"concessionária\": \"concessionár\",\n  \"concessões\": \"concessõ\",\n  \"conchas\": \"conch\",\n  \"conciliar\": \"concili\",\n  \"conciliou\": \"concili\",\n  \"conclui\": \"conclu\",\n  \"concluía\": \"concluí\",\n  \"concluídas\": \"concluíd\",\n  \"concluído\": \"concluíd\",\n  \"concluindo\": \"conclu\",\n  \"concluir\": \"conclu\",\n  \"concluíram\": \"concluír\",\n  \"concluiriam\": \"conclu\",\n  \"concluiu\": \"conclu\",\n  \"conclusão\": \"conclusã\",\n  \"conclusivo\": \"conclus\",\n  \"conclusivos\": \"conclus\",\n  \"conclusões\": \"conclusõ\",\n  \"concone\": \"concon\",\n  \"concorda\": \"concord\",\n  \"concordado\": \"concord\",\n  \"concordam\": \"concord\",\n  \"concordar\": \"concord\",\n  \"concordassem\": \"concord\",\n  \"concordata\": \"concordat\",\n  \"concordava\": \"concord\",\n  \"concórdia\": \"concórd\",\n  \"concordo\": \"concord\",\n  \"concordou\": \"concord\",\n  \"concorre\": \"concorr\",\n  \"concorrem\": \"concorr\",\n  \"concorrência\": \"concorrent\",\n  \"concorrendo\": \"concorr\",\n  \"concorrente\": \"concorrent\",\n  \"concorrentes\": \"concorrent\",\n  \"concorrer\": \"concorr\",\n  \"concorria\": \"concorr\",\n  \"concorrida\": \"concorr\",\n  \"concorrido\": \"concorr\",\n  \"concreta\": \"concret\",\n  \"concretamente\": \"concret\",\n  \"concretas\": \"concret\",\n  \"concretista\": \"concret\",\n  \"concretizá\": \"concretiz\",\n  \"concretização\": \"concretiz\",\n  \"concretizado\": \"concretiz\",\n  \"concretizando\": \"concretiz\",\n  \"concretizar\": \"concretiz\",\n  \"concreto\": \"concret\",\n  \"concretos\": \"concret\",\n  \"concurso\": \"concurs\",\n  \"concursos\": \"concurs\",\n  \"condão\": \"condã\",\n  \"conde\": \"cond\",\n  \"condecoração\": \"condecor\",\n  \"condena\": \"conden\",\n  \"condenação\": \"conden\",\n  \"condenações\": \"conden\",\n  \"condenada\": \"conden\",\n  \"condenado\": \"conden\",\n  \"condenados\": \"conden\",\n  \"condenam\": \"conden\",\n  \"condenando\": \"conden\",\n  \"condenar\": \"conden\",\n  \"condenava\": \"conden\",\n  \"condenável\": \"conden\",\n  \"condenou\": \"conden\",\n  \"condensa\": \"condens\",\n  \"condephaat\": \"condephaat\",\n  \"condescendente\": \"condescendent\",\n  \"condição\": \"condiçã\",\n  \"condicionada\": \"condicion\",\n  \"condicionado\": \"condicion\",\n  \"condicional\": \"condicional\",\n  \"condicionamento\": \"condicion\",\n  \"condicionou\": \"condicion\",\n  \"condições\": \"condiçõ\",\n  \"condimentar\": \"condiment\",\n  \"condizente\": \"condizent\",\n  \"condomínio\": \"condomíni\",\n  \"condomínios\": \"condomíni\",\n  \"condução\": \"conduçã\",\n  \"conduções\": \"conduçõ\",\n  \"conduta\": \"condut\",\n  \"condutas\": \"condut\",\n  \"conduz\": \"conduz\",\n  \"conduzia\": \"conduz\",\n  \"conduzidas\": \"conduz\",\n  \"conduzidos\": \"conduz\",\n  \"conduzindo\": \"conduz\",\n  \"conduzir\": \"conduz\",\n  \"conduziria\": \"conduz\",\n  \"conduziu\": \"conduz\",\n  \"cone\": \"con\",\n  \"conecta\": \"conect\",\n  \"conectadas\": \"conect\",\n  \"conectassem\": \"conect\",\n  \"conectava\": \"conect\",\n  \"conexão\": \"conexã\",\n  \"conexões\": \"conexõ\",\n  \"confecção\": \"confecçã\",\n  \"confeccionadas\": \"confeccion\",\n  \"confeccionado\": \"confeccion\",\n  \"confeccionar\": \"confeccion\",\n  \"confeccionistas\": \"confeccion\",\n  \"confecções\": \"confecçõ\",\n  \"confederação\": \"confeder\",\n  \"confederações\": \"confeder\",\n  \"conference\": \"conferenc\",\n  \"conferência\": \"conferent\",\n  \"conferenciaram\": \"conferenc\",\n  \"conferências\": \"conferent\",\n  \"conferiam\": \"conf\",\n  \"conferido\": \"confer\",\n  \"conferimos\": \"confer\",\n  \"conferindo\": \"confer\",\n  \"conferir\": \"confer\",\n  \"conferisse\": \"confer\",\n  \"conferíssemos\": \"confer\",\n  \"conferiu\": \"confer\",\n  \"confessa\": \"confess\",\n  \"confessado\": \"confess\",\n  \"confessam\": \"confess\",\n  \"confessando\": \"confess\",\n  \"confessasse\": \"confess\",\n  \"confessional\": \"confessional\",\n  \"confesso\": \"confess\",\n  \"confessos\": \"confess\",\n  \"confessou\": \"confess\",\n  \"confia\": \"conf\",\n  \"confiabilidade\": \"confiabil\",\n  \"confiada\": \"confi\",\n  \"confiança\": \"confianc\",\n  \"confiante\": \"confiant\",\n  \"confiantes\": \"confiant\",\n  \"confiar\": \"confi\",\n  \"confiava\": \"confi\",\n  \"confiáveis\": \"confi\",\n  \"confiável\": \"confiável\",\n  \"confidenciais\": \"confidenc\",\n  \"confidencial\": \"confidencial\",\n  \"confidenciam\": \"confidenc\",\n  \"configura\": \"configur\",\n  \"configuração\": \"configur\",\n  \"confinado\": \"confin\",\n  \"confinados\": \"confin\",\n  \"confinamento\": \"confin\",\n  \"confins\": \"confins\",\n  \"confio\": \"confi\",\n  \"confiou\": \"confi\",\n  \"confirma\": \"confirm\",\n  \"confirmação\": \"confirm\",\n  \"confirmada\": \"confirm\",\n  \"confirmadas\": \"confirm\",\n  \"confirmado\": \"confirm\",\n  \"confirmados\": \"confirm\",\n  \"confirmam\": \"confirm\",\n  \"confirmando\": \"confirm\",\n  \"confirmar\": \"confirm\",\n  \"confirmasse\": \"confirm\",\n  \"confirme\": \"confirm\",\n  \"confirmou\": \"confirm\",\n  \"confiscadas\": \"confisc\",\n  \"confiscado\": \"confisc\",\n  \"confiscar\": \"confisc\",\n  \"confiscaram\": \"confisc\",\n  \"confissão\": \"confissã\",\n  \"confissões\": \"confissõ\",\n  \"conflitantes\": \"conflit\",\n  \"conflito\": \"conflit\",\n  \"conflitos\": \"conflit\",\n  \"conflituosas\": \"conflitu\",\n  \"confluíram\": \"confluír\",\n  \"conforma\": \"conform\",\n  \"conformacional\": \"conformacional\",\n  \"conformando\": \"conform\",\n  \"conformar\": \"conform\",\n  \"conforme\": \"conform\",\n  \"conformei\": \"conform\",\n  \"conformou\": \"conform\",\n  \"confortá\": \"confort\",\n  \"confortáveis\": \"confort\",\n  \"confortável\": \"confort\",\n  \"confortavelmente\": \"confort\",\n  \"conforto\": \"confort\",\n  \"confraternizar\": \"confraterniz\",\n  \"confronta\": \"confront\",\n  \"confrontada\": \"confront\",\n  \"confrontado\": \"confront\",\n  \"confrontar\": \"confront\",\n  \"confronto\": \"confront\",\n  \"confrontos\": \"confront\",\n  \"confunde\": \"confund\",\n  \"confundem\": \"confund\",\n  \"confundida\": \"confund\",\n  \"confundidas\": \"confund\",\n  \"confundido\": \"confund\",\n  \"confundindo\": \"confund\",\n  \"confundiu\": \"confund\",\n  \"confusa\": \"confus\",\n  \"confusão\": \"confusã\",\n  \"confuso\": \"confus\",\n  \"confusões\": \"confusõ\",\n  \"confusos\": \"confus\",\n  \"congela\": \"congel\",\n  \"congeladas\": \"congel\",\n  \"congelado\": \"congel\",\n  \"congelados\": \"congel\",\n  \"congelamento\": \"congel\",\n  \"congelando\": \"congel\",\n  \"congelar\": \"congel\",\n  \"congestiona\": \"congestion\",\n  \"congestionada\": \"congestion\",\n  \"congestionam\": \"congestion\",\n  \"congestionamento\": \"congestion\",\n  \"congestionamentos\": \"congestion\",\n  \"conglomerado\": \"conglomer\",\n  \"congonhas\": \"congonh\",\n  \"congratulo\": \"congratul\",\n  \"congrega\": \"congreg\",\n  \"congregação\": \"congreg\",\n  \"congregacional\": \"congregacional\",\n  \"congregações\": \"congreg\",\n  \"congregava\": \"congreg\",\n  \"congressistas\": \"congress\",\n  \"congresso\": \"congress\",\n  \"congressos\": \"congress\",\n  \"conhaque\": \"conhaqu\",\n  \"conheça\": \"conhec\",\n  \"conheçam\": \"conhec\",\n  \"conhece\": \"conhec\",\n  \"conhecê\": \"conhec\",\n  \"conhecedor\": \"conhecedor\",\n  \"conhecem\": \"conhec\",\n  \"conhecemos\": \"conhec\",\n  \"conhecendo\": \"conhec\",\n  \"conhecer\": \"conhec\",\n  \"conhecera\": \"conhec\",\n  \"conheceram\": \"conhec\",\n  \"conhecerem\": \"conhec\",\n  \"conhecesse\": \"conhec\",\n  \"conheceu\": \"conhec\",\n  \"conheci\": \"conhec\",\n  \"conhecia\": \"conhec\",\n  \"conheciam\": \"conhec\",\n  \"conhecida\": \"conhec\",\n  \"conhecidas\": \"conhec\",\n  \"conhecido\": \"conhec\",\n  \"conhecidos\": \"conhec\",\n  \"conhecimento\": \"conhec\",\n  \"conhecimentos\": \"conhec\",\n  \"conheço\": \"conhec\",\n  \"conivência\": \"conivent\",\n  \"conivente\": \"conivent\",\n  \"conjectura\": \"conjectur\",\n  \"conjugais\": \"conjug\",\n  \"conjugal\": \"conjugal\",\n  \"cônjuge\": \"cônjug\",\n  \"cônjuges\": \"cônjug\",\n  \"conjunção\": \"conjunçã\",\n  \"conjunta\": \"conjunt\",\n  \"conjuntas\": \"conjunt\",\n  \"conjunto\": \"conjunt\",\n  \"conjuntos\": \"conjunt\",\n  \"conjuntura\": \"conjuntur\",\n  \"conluio\": \"conlui\",\n  \"connery\": \"connery\",\n  \"conosco\": \"conosc\",\n  \"conquista\": \"conquist\",\n  \"conquistá\": \"conquist\",\n  \"conquistada\": \"conquist\",\n  \"conquistado\": \"conquist\",\n  \"conquistador\": \"conquist\",\n  \"conquistados\": \"conquist\",\n  \"conquistam\": \"conquist\",\n  \"conquistando\": \"conquist\",\n  \"conquistar\": \"conquist\",\n  \"conquistaram\": \"conquist\",\n  \"conquistas\": \"conquist\",\n  \"conquistei\": \"conquist\",\n  \"conquistou\": \"conquist\",\n  \"conrado\": \"conr\",\n  \"consagração\": \"consagr\",\n  \"consagrada\": \"consagr\",\n  \"consagradas\": \"consagr\",\n  \"consagrado\": \"consagr\",\n  \"consagrados\": \"consagr\",\n  \"consagrar\": \"consagr\",\n  \"consagrou\": \"consagr\",\n  \"consciência\": \"consciênc\",\n  \"consciente\": \"conscient\",\n  \"conscientemente\": \"conscient\",\n  \"conscientes\": \"conscient\",\n  \"conscientização\": \"conscientiz\",\n  \"conscientizar\": \"conscientiz\",\n  \"consecutivo\": \"consecut\",\n  \"consecutivos\": \"consecut\",\n  \"consegue\": \"conseg\",\n  \"conseguem\": \"consegu\",\n  \"consegui\": \"consegu\",\n  \"conseguia\": \"consegu\",\n  \"conseguiam\": \"consegu\",\n  \"conseguida\": \"consegu\",\n  \"conseguido\": \"consegu\",\n  \"conseguimos\": \"consegu\",\n  \"conseguindo\": \"consegu\",\n  \"conseguir\": \"consegu\",\n  \"conseguira\": \"consegu\",\n  \"conseguirá\": \"consegu\",\n  \"conseguiram\": \"consegu\",\n  \"conseguirão\": \"consegu\",\n  \"conseguirei\": \"consegu\",\n  \"conseguirem\": \"consegu\",\n  \"conseguiria\": \"consegu\",\n  \"conseguiriam\": \"consegu\",\n  \"conseguisse\": \"consegu\",\n  \"conseguissem\": \"consegu\",\n  \"conseguiu\": \"consegu\",\n  \"conselheiro\": \"conselheir\",\n  \"conselheiros\": \"conselheir\",\n  \"conselho\": \"conselh\",\n  \"conselhos\": \"conselh\",\n  \"consenso\": \"consens\",\n  \"consensual\": \"consensual\",\n  \"consente\": \"consent\",\n  \"consequência\": \"consequent\",\n  \"conseqüência\": \"conseqüent\",\n  \"consequências\": \"consequent\",\n  \"conseqüências\": \"conseqüent\",\n  \"consequente\": \"consequent\",\n  \"conseqüente\": \"conseqüent\",\n  \"conseqüentemente\": \"conseqüent\",\n  \"conserta\": \"consert\",\n  \"consertá\": \"consert\",\n  \"consertando\": \"consert\",\n  \"consertar\": \"consert\",\n  \"consertos\": \"consert\",\n  \"consertou\": \"consert\",\n  \"conserva\": \"conserv\",\n  \"conservação\": \"conserv\",\n  \"conservada\": \"conserv\",\n  \"conservado\": \"conserv\",\n  \"conservador\": \"conserv\",\n  \"conservadora\": \"conserv\",\n  \"conservadoras\": \"conserv\",\n  \"conservadores\": \"conserv\",\n  \"conservadorismo\": \"conservador\",\n  \"conservados\": \"conserv\",\n  \"conservam\": \"conserv\",\n  \"conservantes\": \"conserv\",\n  \"conservar\": \"conserv\",\n  \"conservation\": \"conservation\",\n  \"conservatório\": \"conservatóri\",\n  \"considera\": \"consid\",\n  \"considerá\": \"consid\",\n  \"consideração\": \"consider\",\n  \"considerações\": \"consider\",\n  \"considerada\": \"consider\",\n  \"consideradas\": \"consider\",\n  \"considerado\": \"consider\",\n  \"considerados\": \"consider\",\n  \"consideram\": \"consid\",\n  \"consideramos\": \"consider\",\n  \"considerando\": \"consider\",\n  \"considerar\": \"consider\",\n  \"considerava\": \"consider\",\n  \"consideravam\": \"consider\",\n  \"considerável\": \"consider\",\n  \"consideravelmente\": \"consider\",\n  \"considere\": \"consider\",\n  \"considerei\": \"consid\",\n  \"considero\": \"consider\",\n  \"considerou\": \"consider\",\n  \"consiga\": \"consig\",\n  \"consigam\": \"consig\",\n  \"consigo\": \"consig\",\n  \"consiste\": \"cons\",\n  \"consistem\": \"consist\",\n  \"consistência\": \"consistent\",\n  \"consistente\": \"consistent\",\n  \"consistentes\": \"consistent\",\n  \"consistia\": \"consist\",\n  \"consolando\": \"consol\",\n  \"consolar\": \"consol\",\n  \"consoles\": \"consol\",\n  \"consolida\": \"consol\",\n  \"consolidação\": \"consolid\",\n  \"consolidada\": \"consolid\",\n  \"consolidadas\": \"consolid\",\n  \"consolidar\": \"consolid\",\n  \"consolidasse\": \"consolid\",\n  \"consolo\": \"consol\",\n  \"consome\": \"consom\",\n  \"consomem\": \"consom\",\n  \"consórcio\": \"consórci\",\n  \"consórcios\": \"consórci\",\n  \"consortium\": \"consortium\",\n  \"conspiração\": \"conspir\",\n  \"conspurcando\": \"conspurc\",\n  \"consta\": \"const\",\n  \"constam\": \"const\",\n  \"constança\": \"constanc\",\n  \"constância\": \"constânc\",\n  \"constante\": \"constant\",\n  \"constantemente\": \"constant\",\n  \"constantes\": \"constant\",\n  \"constantinopla\": \"constantinopl\",\n  \"constata\": \"constat\",\n  \"constatação\": \"constat\",\n  \"constatada\": \"constat\",\n  \"constatadas\": \"constat\",\n  \"constatado\": \"constat\",\n  \"constatamos\": \"constat\",\n  \"constatando\": \"constat\",\n  \"constatar\": \"constat\",\n  \"constataram\": \"constat\",\n  \"constatarmos\": \"constat\",\n  \"constatou\": \"constat\",\n  \"constava\": \"const\",\n  \"constelação\": \"constel\",\n  \"constestador\": \"constest\",\n  \"constitucionais\": \"constitucion\",\n  \"constitucional\": \"constitucional\",\n  \"constitucionalmente\": \"constitucional\",\n  \"constitui\": \"constitu\",\n  \"constituição\": \"constituiçã\",\n  \"constituída\": \"constituíd\",\n  \"constituído\": \"constituíd\",\n  \"constituinte\": \"constituint\",\n  \"constituintes\": \"constituint\",\n  \"constrange\": \"constrang\",\n  \"constrangedor\": \"constrangedor\",\n  \"constrangedora\": \"constrangedor\",\n  \"constrangedoras\": \"constrangedor\",\n  \"constrangido\": \"constrang\",\n  \"constrangidos\": \"constrang\",\n  \"constrangimento\": \"constrang\",\n  \"constrangimentos\": \"constrang\",\n  \"constroem\": \"constro\",\n  \"constrói\": \"constró\",\n  \"construa\": \"constru\",\n  \"construção\": \"construçã\",\n  \"construcionismo\": \"construcion\",\n  \"construções\": \"construçõ\",\n  \"construí\": \"constru\",\n  \"construída\": \"construíd\",\n  \"construídas\": \"construíd\",\n  \"construído\": \"construíd\",\n  \"construídos\": \"construíd\",\n  \"construímos\": \"construím\",\n  \"construindo\": \"constru\",\n  \"construir\": \"constru\",\n  \"construirá\": \"constru\",\n  \"construíram\": \"construír\",\n  \"construiu\": \"constru\",\n  \"construtiva\": \"construt\",\n  \"construtor\": \"construtor\",\n  \"construtora\": \"construtor\",\n  \"construtoras\": \"construtor\",\n  \"consuelo\": \"consuel\",\n  \"cônsul\": \"cônsul\",\n  \"consulado\": \"consul\",\n  \"consulados\": \"consul\",\n  \"consulta\": \"consult\",\n  \"consultá\": \"consult\",\n  \"consultadas\": \"consult\",\n  \"consultado\": \"consult\",\n  \"consultados\": \"consult\",\n  \"consultam\": \"consult\",\n  \"consultar\": \"consult\",\n  \"consultaram\": \"consult\",\n  \"consultarem\": \"consult\",\n  \"consultas\": \"consult\",\n  \"consultava\": \"consult\",\n  \"consulting\": \"consulting\",\n  \"consultivo\": \"consult\",\n  \"consulto\": \"consult\",\n  \"consultor\": \"consultor\",\n  \"consultora\": \"consultor\",\n  \"consultores\": \"consultor\",\n  \"consultoria\": \"consultor\",\n  \"consultorias\": \"consultor\",\n  \"consultório\": \"consultóri\",\n  \"consultórios\": \"consultóri\",\n  \"consultou\": \"consult\",\n  \"consumação\": \"consum\",\n  \"consumando\": \"consum\",\n  \"consumar\": \"consum\",\n  \"consumida\": \"consum\",\n  \"consumidas\": \"consum\",\n  \"consumido\": \"consum\",\n  \"consumidor\": \"consumidor\",\n  \"consumidores\": \"consumidor\",\n  \"consumidos\": \"consum\",\n  \"consumindo\": \"consum\",\n  \"consumir\": \"consum\",\n  \"consumiram\": \"consum\",\n  \"consumismo\": \"consum\",\n  \"consumista\": \"consum\",\n  \"consumistas\": \"consum\",\n  \"consumiu\": \"consum\",\n  \"consumo\": \"consum\",\n  \"conta\": \"cont\",\n  \"contá\": \"cont\",\n  \"contábeis\": \"contáb\",\n  \"contábil\": \"contábil\",\n  \"contabilidade\": \"contabil\",\n  \"contabiliza\": \"contabiliz\",\n  \"contabilizada\": \"contabiliz\",\n  \"contabilizado\": \"contabiliz\",\n  \"contabilizados\": \"contabiliz\",\n  \"contabilizar\": \"contabiliz\",\n  \"contabilizaram\": \"contabiliz\",\n  \"contabilizou\": \"contabiliz\",\n  \"contact\": \"contact\",\n  \"contada\": \"cont\",\n  \"contadas\": \"cont\",\n  \"contado\": \"cont\",\n  \"contador\": \"contador\",\n  \"contadora\": \"contador\",\n  \"contadores\": \"contador\",\n  \"contados\": \"cont\",\n  \"contagem\": \"contag\",\n  \"contagiante\": \"contagi\",\n  \"contágio\": \"contági\",\n  \"contam\": \"cont\",\n  \"contamina\": \"contamin\",\n  \"contaminação\": \"contamin\",\n  \"contaminada\": \"contamin\",\n  \"contaminado\": \"contamin\",\n  \"contaminados\": \"contamin\",\n  \"contaminam\": \"contamin\",\n  \"contaminou\": \"contamin\",\n  \"contamos\": \"cont\",\n  \"contando\": \"cont\",\n  \"contar\": \"cont\",\n  \"contara\": \"cont\",\n  \"contará\": \"cont\",\n  \"contaram\": \"cont\",\n  \"contardo\": \"contard\",\n  \"contas\": \"cont\",\n  \"contasse\": \"cont\",\n  \"contataram\": \"contat\",\n  \"contato\": \"contat\",\n  \"contatos\": \"contat\",\n  \"contatou\": \"contat\",\n  \"contava\": \"cont\",\n  \"contavam\": \"cont\",\n  \"conte\": \"cont\",\n  \"contê\": \"cont\",\n  \"contei\": \"cont\",\n  \"contêineres\": \"contêin\",\n  \"contem\": \"cont\",\n  \"contém\": \"contém\",\n  \"contêm\": \"contêm\",\n  \"contempla\": \"contempl\",\n  \"contemplada\": \"contempl\",\n  \"contemplados\": \"contempl\",\n  \"contemplando\": \"contempl\",\n  \"contemporânea\": \"contemporân\",\n  \"contemporâneo\": \"contemporân\",\n  \"contemporâneos\": \"contemporân\",\n  \"contenção\": \"contençã\",\n  \"contendo\": \"cont\",\n  \"contentar\": \"content\",\n  \"contente\": \"content\",\n  \"contentes\": \"content\",\n  \"conter\": \"cont\",\n  \"conterrâneas\": \"conterrân\",\n  \"conterrâneo\": \"conterrân\",\n  \"conterrâneos\": \"conterrân\",\n  \"contesta\": \"contest\",\n  \"contestada\": \"contest\",\n  \"contestado\": \"contest\",\n  \"contestadora\": \"contest\",\n  \"contestamos\": \"contest\",\n  \"contestando\": \"contest\",\n  \"contestar\": \"contest\",\n  \"contestou\": \"contest\",\n  \"conteúdo\": \"conteúd\",\n  \"conteúdos\": \"conteúd\",\n  \"conteve\": \"contev\",\n  \"contexto\": \"context\",\n  \"conti\": \"cont\",\n  \"contida\": \"cont\",\n  \"contidas\": \"cont\",\n  \"contido\": \"cont\",\n  \"contigente\": \"contigent\",\n  \"contigo\": \"contig\",\n  \"contíguos\": \"contígu\",\n  \"continências\": \"continent\",\n  \"continental\": \"continental\",\n  \"continente\": \"continent\",\n  \"continentes\": \"continent\",\n  \"contingências\": \"contingent\",\n  \"contingente\": \"contingent\",\n  \"continha\": \"continh\",\n  \"continua\": \"continu\",\n  \"contínua\": \"contínu\",\n  \"continuação\": \"continu\",\n  \"continuações\": \"continu\",\n  \"continuada\": \"continu\",\n  \"continuado\": \"continu\",\n  \"continuam\": \"continu\",\n  \"continuando\": \"continu\",\n  \"continuar\": \"continu\",\n  \"continuará\": \"continu\",\n  \"continuaram\": \"continu\",\n  \"continuarão\": \"continu\",\n  \"continuarei\": \"continu\",\n  \"continuaria\": \"continu\",\n  \"continuarmos\": \"continu\",\n  \"continuasse\": \"continu\",\n  \"continuava\": \"continu\",\n  \"continuavam\": \"continu\",\n  \"continue\": \"continu\",\n  \"continuidade\": \"continu\",\n  \"continuo\": \"continu\",\n  \"contínuo\": \"contínu\",\n  \"contínuos\": \"contínu\",\n  \"continuou\": \"continu\",\n  \"contive\": \"contiv\",\n  \"conto\": \"cont\",\n  \"contornado\": \"contorn\",\n  \"contornar\": \"contorn\",\n  \"contornara\": \"contorn\",\n  \"contorno\": \"contorn\",\n  \"contornos\": \"contorn\",\n  \"contos\": \"cont\",\n  \"contou\": \"cont\",\n  \"contra\": \"contr\",\n  \"contrabalança\": \"contrabalanc\",\n  \"contrabalançar\": \"contrabalanc\",\n  \"contrabalançarem\": \"contrabalanc\",\n  \"contrabandeadas\": \"contraband\",\n  \"contrabandeou\": \"contraband\",\n  \"contrabando\": \"contrab\",\n  \"contracapa\": \"contracap\",\n  \"contracena\": \"contracen\",\n  \"contraceptivos\": \"contracept\",\n  \"contradição\": \"contradiçã\",\n  \"contradições\": \"contradiçõ\",\n  \"contraditória\": \"contraditór\",\n  \"contraditórias\": \"contraditór\",\n  \"contraditório\": \"contraditóri\",\n  \"contragosto\": \"contragost\",\n  \"contraídas\": \"contraíd\",\n  \"contraindo\": \"contra\",\n  \"contrair\": \"contra\",\n  \"contraíram\": \"contraír\",\n  \"contramão\": \"contramã\",\n  \"contramaré\": \"contramar\",\n  \"contrapartida\": \"contrapart\",\n  \"contrapeso\": \"contrapes\",\n  \"contraponha\": \"contraponh\",\n  \"contrapor\": \"contrapor\",\n  \"contraposições\": \"contraposiçõ\",\n  \"contrapropôs\": \"contrapropôs\",\n  \"contraria\": \"contr\",\n  \"contrária\": \"contrár\",\n  \"contrariado\": \"contrari\",\n  \"contrariados\": \"contrari\",\n  \"contrariamente\": \"contrari\",\n  \"contrariando\": \"contrari\",\n  \"contrariar\": \"contrari\",\n  \"contrárias\": \"contrár\",\n  \"contrariedades\": \"contrariedad\",\n  \"contrário\": \"contrári\",\n  \"contrários\": \"contrári\",\n  \"contras\": \"contr\",\n  \"contrasenso\": \"contrasens\",\n  \"contrasta\": \"contrast\",\n  \"contrastantes\": \"contrast\",\n  \"contrastava\": \"contrast\",\n  \"contraste\": \"contr\",\n  \"contrastes\": \"contr\",\n  \"contrata\": \"contrat\",\n  \"contratação\": \"contrat\",\n  \"contratações\": \"contrat\",\n  \"contratada\": \"contrat\",\n  \"contratadas\": \"contrat\",\n  \"contratado\": \"contrat\",\n  \"contratador\": \"contrat\",\n  \"contratados\": \"contrat\",\n  \"contratam\": \"contrat\",\n  \"contratando\": \"contrat\",\n  \"contratar\": \"contrat\",\n  \"contrataram\": \"contrat\",\n  \"contrataria\": \"contrat\",\n  \"contratei\": \"contrat\",\n  \"contratempo\": \"contratemp\",\n  \"contratempos\": \"contratemp\",\n  \"contrato\": \"contrat\",\n  \"contratos\": \"contrat\",\n  \"contratou\": \"contrat\",\n  \"contravenção\": \"contravençã\",\n  \"contraventor\": \"contraventor\",\n  \"contraventores\": \"contraventor\",\n  \"contreiras\": \"contreir\",\n  \"contribui\": \"contribu\",\n  \"contribuição\": \"contribuiçã\",\n  \"contribuições\": \"contribuiçõ\",\n  \"contribuído\": \"contribuíd\",\n  \"contribuinte\": \"contribuint\",\n  \"contribuintes\": \"contribuint\",\n  \"contribuir\": \"contribu\",\n  \"contribuíram\": \"contribuír\",\n  \"contribuiu\": \"contribu\",\n  \"controla\": \"control\",\n  \"controlada\": \"control\",\n  \"controladas\": \"control\",\n  \"controlado\": \"control\",\n  \"controlador\": \"control\",\n  \"controladora\": \"control\",\n  \"controladores\": \"control\",\n  \"controlados\": \"control\",\n  \"controlam\": \"control\",\n  \"controlando\": \"control\",\n  \"controlar\": \"control\",\n  \"controlavam\": \"control\",\n  \"controle\": \"control\",\n  \"controles\": \"control\",\n  \"controlo\": \"control\",\n  \"controlou\": \"control\",\n  \"controversa\": \"controvers\",\n  \"controvérsia\": \"controvérs\",\n  \"controvérsias\": \"controvérs\",\n  \"controverso\": \"controvers\",\n  \"controvertida\": \"controvert\",\n  \"contudo\": \"contud\",\n  \"contundente\": \"contundent\",\n  \"contundentes\": \"contundent\",\n  \"conturbada\": \"conturb\",\n  \"conturbado\": \"conturb\",\n  \"contusão\": \"contusã\",\n  \"convalescendo\": \"convalesc\",\n  \"convém\": \"convém\",\n  \"convenção\": \"convençã\",\n  \"convence\": \"convenc\",\n  \"convencê\": \"convenc\",\n  \"convencer\": \"convenc\",\n  \"convenceram\": \"convenc\",\n  \"convenceu\": \"convenc\",\n  \"convencia\": \"convenc\",\n  \"convencido\": \"convenc\",\n  \"convencidos\": \"convenc\",\n  \"convencionais\": \"convencion\",\n  \"convencional\": \"convencional\",\n  \"convencionou\": \"convencion\",\n  \"convenções\": \"convençõ\",\n  \"conveniência\": \"convenient\",\n  \"conveniente\": \"convenient\",\n  \"convenientes\": \"convenient\",\n  \"convênio\": \"convêni\",\n  \"convênios\": \"convêni\",\n  \"convento\": \"convent\",\n  \"conventos\": \"convent\",\n  \"convergências\": \"convergent\",\n  \"conversa\": \"convers\",\n  \"conversado\": \"convers\",\n  \"conversam\": \"convers\",\n  \"conversamos\": \"convers\",\n  \"conversando\": \"convers\",\n  \"conversão\": \"conversã\",\n  \"conversar\": \"convers\",\n  \"conversarmos\": \"convers\",\n  \"conversas\": \"convers\",\n  \"conversava\": \"convers\",\n  \"conversavam\": \"convers\",\n  \"conversei\": \"convers\",\n  \"conversinhas\": \"conversinh\",\n  \"conversíveis\": \"conversív\",\n  \"conversível\": \"convers\",\n  \"converso\": \"convers\",\n  \"conversões\": \"conversõ\",\n  \"conversora\": \"conversor\",\n  \"conversou\": \"convers\",\n  \"convertê\": \"convert\",\n  \"converter\": \"convert\",\n  \"converteram\": \"convert\",\n  \"converteu\": \"convert\",\n  \"convertida\": \"convert\",\n  \"convertidas\": \"convert\",\n  \"convertido\": \"convert\",\n  \"convertidos\": \"convert\",\n  \"convés\": \"convés\",\n  \"convicção\": \"convicçã\",\n  \"convicções\": \"convicçõ\",\n  \"convicência\": \"convicent\",\n  \"convicta\": \"convict\",\n  \"convicto\": \"convict\",\n  \"convida\": \"conv\",\n  \"convidá\": \"convid\",\n  \"convidada\": \"convid\",\n  \"convidadas\": \"convid\",\n  \"convidado\": \"convid\",\n  \"convidados\": \"convid\",\n  \"convidando\": \"convid\",\n  \"convidar\": \"convid\",\n  \"convidaram\": \"convid\",\n  \"convidaria\": \"convid\",\n  \"convidativa\": \"convid\",\n  \"convidativo\": \"convid\",\n  \"convidei\": \"convid\",\n  \"convidou\": \"convid\",\n  \"convincente\": \"convincent\",\n  \"convincentes\": \"convincent\",\n  \"convite\": \"convit\",\n  \"convites\": \"convit\",\n  \"convive\": \"conviv\",\n  \"convivem\": \"conviv\",\n  \"convivemos\": \"conviv\",\n  \"convivência\": \"convivent\",\n  \"convivências\": \"convivent\",\n  \"convivendo\": \"conviv\",\n  \"conviver\": \"conviv\",\n  \"conviverá\": \"conviv\",\n  \"conviveu\": \"conviv\",\n  \"conviviam\": \"conviv\",\n  \"convívio\": \"convívi\",\n  \"convivo\": \"conviv\",\n  \"convoca\": \"convoc\",\n  \"convocação\": \"convoc\",\n  \"convocada\": \"convoc\",\n  \"convocadas\": \"convoc\",\n  \"convocado\": \"convoc\",\n  \"convocados\": \"convoc\",\n  \"convocam\": \"convoc\",\n  \"convocando\": \"convoc\",\n  \"convocar\": \"convoc\",\n  \"convocara\": \"convoc\",\n  \"convocaram\": \"convoc\",\n  \"convocava\": \"convoc\",\n  \"convocou\": \"convoc\",\n  \"cony\": \"cony\",\n  \"cool\": \"cool\",\n  \"cooper\": \"coop\",\n  \"cooperação\": \"cooper\",\n  \"cooperada\": \"cooper\",\n  \"cooperado\": \"cooper\",\n  \"cooperados\": \"cooper\",\n  \"cooperativa\": \"cooper\",\n  \"cooperativas\": \"cooper\",\n  \"coordena\": \"coorden\",\n  \"coordenação\": \"coorden\",\n  \"coordenada\": \"coorden\",\n  \"coordenado\": \"coorden\",\n  \"coordenador\": \"coorden\",\n  \"coordenadora\": \"coorden\",\n  \"coordenadores\": \"coorden\",\n  \"coordenamos\": \"coorden\",\n  \"coordenar\": \"coorden\",\n  \"coordenava\": \"coorden\",\n  \"coordeno\": \"coorden\",\n  \"coordenou\": \"coorden\",\n  \"copa\": \"cop\",\n  \"copacabana\": \"copacaban\",\n  \"copas\": \"cop\",\n  \"copia\": \"cop\",\n  \"cópia\": \"cóp\",\n  \"copiá\": \"copi\",\n  \"copiada\": \"copi\",\n  \"copiado\": \"copi\",\n  \"copiam\": \"cop\",\n  \"copiando\": \"copi\",\n  \"copiar\": \"copi\",\n  \"cópias\": \"cóp\",\n  \"copiem\": \"copi\",\n  \"copioso\": \"copios\",\n  \"copiou\": \"copi\",\n  \"copo\": \"cop\",\n  \"copos\": \"cop\",\n  \"copperfield\": \"copperfield\",\n  \"cópula\": \"cópul\",\n  \"copulando\": \"copul\",\n  \"copular\": \"copul\",\n  \"copyright\": \"copyright\",\n  \"coqueiro\": \"coqueir\",\n  \"coqueiros\": \"coqueir\",\n  \"coqueluche\": \"coqueluch\",\n  \"coquetéis\": \"coquet\",\n  \"coquetel\": \"coquetel\",\n  \"cor\": \"cor\",\n  \"coração\": \"coraçã\",\n  \"corações\": \"coraçõ\",\n  \"coragem\": \"corag\",\n  \"corais\": \"cor\",\n  \"corajosa\": \"coraj\",\n  \"corajosamente\": \"coraj\",\n  \"corajosas\": \"coraj\",\n  \"corajoso\": \"coraj\",\n  \"corajosos\": \"coraj\",\n  \"coral\": \"coral\",\n  \"corcovado\": \"corcov\",\n  \"corda\": \"cord\",\n  \"cordão\": \"cordã\",\n  \"cordas\": \"cord\",\n  \"cordata\": \"cordat\",\n  \"cordato\": \"cordat\",\n  \"cordeiro\": \"cordeir\",\n  \"cordial\": \"cordial\",\n  \"cordilheira\": \"cordilheir\",\n  \"cordilheiras\": \"cordilheir\",\n  \"córdoba\": \"córdob\",\n  \"coreano\": \"corean\",\n  \"coreanos\": \"corean\",\n  \"coréia\": \"cor\",\n  \"corel\": \"corel\",\n  \"coreografia\": \"coreograf\",\n  \"coreografias\": \"coreograf\",\n  \"coreógrafos\": \"coreógraf\",\n  \"cores\": \"cor\",\n  \"corey\": \"corey\",\n  \"corgan\": \"corgan\",\n  \"corine\": \"corin\",\n  \"corinthiana\": \"corinthian\",\n  \"corinthians\": \"corinthians\",\n  \"corisco\": \"corisc\",\n  \"corn\": \"corn\",\n  \"cornell\": \"cornell\",\n  \"corner\": \"corn\",\n  \"cornhill\": \"cornhill\",\n  \"coro\": \"cor\",\n  \"coroa\": \"coro\",\n  \"coroada\": \"coro\",\n  \"coroado\": \"coro\",\n  \"coroamento\": \"coroament\",\n  \"coroar\": \"coro\",\n  \"coroas\": \"coro\",\n  \"corolário\": \"corolári\",\n  \"coronária\": \"coronár\",\n  \"coronel\": \"coronel\",\n  \"coros\": \"cor\",\n  \"corpinho\": \"corpinh\",\n  \"corpo\": \"corp\",\n  \"corporação\": \"corpor\",\n  \"corporações\": \"corpor\",\n  \"corporal\": \"corporal\",\n  \"corporation\": \"corporation\",\n  \"corporativa\": \"corpor\",\n  \"corporativismo\": \"corporativ\",\n  \"corporativo\": \"corpor\",\n  \"corporativos\": \"corpor\",\n  \"corpórea\": \"corpór\",\n  \"corpos\": \"corp\",\n  \"corps\": \"corps\",\n  \"corpus\": \"corpus\",\n  \"corradini\": \"corradin\",\n  \"corre\": \"corr\",\n  \"correa\": \"corr\",\n  \"corrêa\": \"corr\",\n  \"correção\": \"correçã\",\n  \"correções\": \"correçõ\",\n  \"corredor\": \"corredor\",\n  \"corredores\": \"corredor\",\n  \"corregedor\": \"corregedor\",\n  \"corregedoria\": \"corregedor\",\n  \"correia\": \"corr\",\n  \"correição\": \"correiçã\",\n  \"correições\": \"correiçõ\",\n  \"correio\": \"correi\",\n  \"correios\": \"correi\",\n  \"correlatos\": \"correlat\",\n  \"correligionários\": \"correligionári\",\n  \"correm\": \"corr\",\n  \"correndo\": \"corr\",\n  \"corrente\": \"corrent\",\n  \"correntes\": \"corrent\",\n  \"correnteza\": \"corrent\",\n  \"correntistas\": \"corrent\",\n  \"correr\": \"corr\",\n  \"correram\": \"corr\",\n  \"correria\": \"corr\",\n  \"correriam\": \"corr\",\n  \"corresponde\": \"correspond\",\n  \"correspondem\": \"correspond\",\n  \"correspondência\": \"correspondent\",\n  \"correspondências\": \"correspondent\",\n  \"correspondente\": \"correspondent\",\n  \"corresponder\": \"correspond\",\n  \"correspondida\": \"correspond\",\n  \"correspondido\": \"correspond\",\n  \"correta\": \"corret\",\n  \"corretamente\": \"corret\",\n  \"corretas\": \"corret\",\n  \"corretivo\": \"corret\",\n  \"correto\": \"corret\",\n  \"corretor\": \"corretor\",\n  \"corretora\": \"corretor\",\n  \"corretoras\": \"corretor\",\n  \"corretores\": \"corretor\",\n  \"corretos\": \"corret\",\n  \"correu\": \"corr\",\n  \"corri\": \"corr\",\n  \"corria\": \"corr\",\n  \"corriam\": \"corr\",\n  \"corrida\": \"corr\",\n  \"corridas\": \"corr\",\n  \"corrido\": \"corr\",\n  \"corrigi\": \"corrig\",\n  \"corrigido\": \"corrig\",\n  \"corrigidos\": \"corrig\",\n  \"corrigir\": \"corrig\",\n  \"corrigirmos\": \"corrig\",\n  \"corrimentos\": \"corriment\",\n  \"corriqueira\": \"corriqueir\",\n  \"corriqueiras\": \"corriqueir\",\n  \"corriqueiros\": \"corriqueir\",\n  \"corriveau\": \"corriveau\",\n  \"corroborada\": \"corrobor\",\n  \"corroem\": \"corro\",\n  \"corroída\": \"corroíd\",\n  \"corrompendo\": \"corromp\",\n  \"corrupção\": \"corrupçã\",\n  \"corrupto\": \"corrupt\",\n  \"corruptos\": \"corrupt\",\n  \"corta\": \"cort\",\n  \"cortada\": \"cort\",\n  \"cortadas\": \"cort\",\n  \"cortado\": \"cort\",\n  \"cortador\": \"cortador\",\n  \"cortados\": \"cort\",\n  \"cortam\": \"cort\",\n  \"cortamos\": \"cort\",\n  \"cortando\": \"cort\",\n  \"cortante\": \"cortant\",\n  \"cortar\": \"cort\",\n  \"cortaram\": \"cort\",\n  \"cortava\": \"cort\",\n  \"corte\": \"cort\",\n  \"cortei\": \"cort\",\n  \"cortejada\": \"cortej\",\n  \"cortejo\": \"cortej\",\n  \"cortes\": \"cort\",\n  \"côrtes\": \"côrt\",\n  \"cortês\": \"cortês\",\n  \"cortesãos\": \"cortesã\",\n  \"cortesia\": \"cortes\",\n  \"cortiços\": \"cortic\",\n  \"cortinas\": \"cortin\",\n  \"cortisona\": \"cortison\",\n  \"cortou\": \"cort\",\n  \"coruja\": \"coruj\",\n  \"cos\": \"cos\",\n  \"cosette\": \"cosett\",\n  \"cosidera\": \"cosid\",\n  \"cosmética\": \"cosmét\",\n  \"cosmético\": \"cosmét\",\n  \"cosméticos\": \"cosmét\",\n  \"cósmica\": \"cósmic\",\n  \"cósmico\": \"cósmic\",\n  \"cosmo\": \"cosm\",\n  \"cosmódromo\": \"cosmódrom\",\n  \"cosmologia\": \"cosmolog\",\n  \"cosmológica\": \"cosmológ\",\n  \"cosmologista\": \"cosmolog\",\n  \"cosmopolitan\": \"cosmopolitan\",\n  \"cosmopolitismo\": \"cosmopolit\",\n  \"cosmos\": \"cosm\",\n  \"cossacos\": \"cossac\",\n  \"costa\": \"cost\",\n  \"costanza\": \"costanz\",\n  \"costas\": \"cost\",\n  \"costeiras\": \"costeir\",\n  \"costeiros\": \"costeir\",\n  \"costela\": \"costel\",\n  \"costelas\": \"costel\",\n  \"costeletas\": \"costelet\",\n  \"costello\": \"costell\",\n  \"costi\": \"cost\",\n  \"costuma\": \"costum\",\n  \"costumam\": \"costum\",\n  \"costumava\": \"costum\",\n  \"costumavam\": \"costum\",\n  \"costume\": \"costum\",\n  \"costumes\": \"costum\",\n  \"costumo\": \"costum\",\n  \"costura\": \"costur\",\n  \"costurada\": \"costur\",\n  \"costurado\": \"costur\",\n  \"costurar\": \"costur\",\n  \"costuras\": \"costur\",\n  \"costureira\": \"costureir\",\n  \"costureiras\": \"costureir\",\n  \"costureiros\": \"costureir\",\n  \"costuro\": \"costur\",\n  \"costurou\": \"costur\",\n  \"cota\": \"cot\",\n  \"cotação\": \"cotaçã\",\n  \"cotações\": \"cotaçõ\",\n  \"cotado\": \"cot\",\n  \"cotados\": \"cot\",\n  \"cotas\": \"cot\",\n  \"côte\": \"côt\",\n  \"cotecchino\": \"cotecchin\",\n  \"cotejadas\": \"cotej\",\n  \"cotidiana\": \"cotidian\",\n  \"cotidianas\": \"cotidian\",\n  \"cotidiano\": \"cotidian\",\n  \"cotovelo\": \"cotovel\",\n  \"coube\": \"coub\",\n  \"coubesse\": \"coub\",\n  \"couraça\": \"courac\",\n  \"couro\": \"cour\",\n  \"cours\": \"cours\",\n  \"courtney\": \"courtney\",\n  \"cousteau\": \"cousteau\",\n  \"couto\": \"cout\",\n  \"couturié\": \"couturi\",\n  \"covarde\": \"covard\",\n  \"covardemente\": \"covard\",\n  \"covas\": \"cov\",\n  \"coveiro\": \"coveir\",\n  \"covello\": \"covell\",\n  \"covers\": \"covers\",\n  \"covo\": \"cov\",\n  \"coxa\": \"cox\",\n  \"coxas\": \"cox\",\n  \"cozidas\": \"coz\",\n  \"cozido\": \"coz\",\n  \"cozimento\": \"coziment\",\n  \"cozinha\": \"cozinh\",\n  \"cozinhando\": \"cozinh\",\n  \"cozinhar\": \"cozinh\",\n  \"cozinhe\": \"cozinh\",\n  \"cozinheira\": \"cozinheir\",\n  \"cozinheiras\": \"cozinheir\",\n  \"cozinheiro\": \"cozinheir\",\n  \"cozinheiros\": \"cozinheir\",\n  \"cpi\": \"cpi\",\n  \"cpis\": \"cpis\",\n  \"cpmf\": \"cpmf\",\n  \"cptzão\": \"cptzã\",\n  \"cpu\": \"cpu\",\n  \"cr\": \"cr\",\n  \"cracão\": \"cracã\",\n  \"crack\": \"crack\",\n  \"craft\": \"craft\",\n  \"craig\": \"craig\",\n  \"craniano\": \"cranian\",\n  \"crânio\": \"crâni\",\n  \"crânios\": \"crâni\",\n  \"craque\": \"craqu\",\n  \"craques\": \"craqu\",\n  \"cratera\": \"crat\",\n  \"crateras\": \"crat\",\n  \"cravá\": \"crav\",\n  \"cravados\": \"crav\",\n  \"cravarmos\": \"crav\",\n  \"craveiro\": \"craveir\",\n  \"cravo\": \"crav\",\n  \"cravou\": \"crav\",\n  \"crawford\": \"crawford\",\n  \"creche\": \"crech\",\n  \"creches\": \"crech\",\n  \"credencia\": \"credenc\",\n  \"credenciado\": \"credenc\",\n  \"credenciados\": \"credenc\",\n  \"credenciais\": \"credenc\",\n  \"credenciamento\": \"credenc\",\n  \"crediário\": \"crediári\",\n  \"credibilidade\": \"credibil\",\n  \"credicard\": \"credicard\",\n  \"credita\": \"credit\",\n  \"creditar\": \"credit\",\n  \"crédito\": \"crédit\",\n  \"créditos\": \"crédit\",\n  \"creditou\": \"credit\",\n  \"credor\": \"credor\",\n  \"credores\": \"credor\",\n  \"crêem\": \"crê\",\n  \"crefisul\": \"crefisul\",\n  \"creio\": \"crei\",\n  \"cremação\": \"cremaçã\",\n  \"cremado\": \"crem\",\n  \"cremar\": \"crem\",\n  \"cremasco\": \"cremasc\",\n  \"crematório\": \"crematóri\",\n  \"creme\": \"crem\",\n  \"cremes\": \"crem\",\n  \"cremesp\": \"cremesp\",\n  \"cremilda\": \"cremild\",\n  \"cremosos\": \"cremos\",\n  \"crença\": \"crenc\",\n  \"crenças\": \"crenc\",\n  \"crente\": \"crent\",\n  \"crentes\": \"crent\",\n  \"crepe\": \"crep\",\n  \"crer\": \"crer\",\n  \"cresça\": \"cresc\",\n  \"cresçam\": \"cresc\",\n  \"cresce\": \"cresc\",\n  \"crescem\": \"cresc\",\n  \"crescendo\": \"cresc\",\n  \"crescente\": \"crescent\",\n  \"crescentes\": \"crescent\",\n  \"crescer\": \"cresc\",\n  \"cresceram\": \"cresc\",\n  \"cresceu\": \"cresc\",\n  \"cresciam\": \"cresc\",\n  \"crescidinha\": \"crescidinh\",\n  \"crescido\": \"cresc\",\n  \"crescidos\": \"cresc\",\n  \"crescimento\": \"cresciment\",\n  \"crespos\": \"cresp\",\n  \"cria\": \"cri\",\n  \"criá\": \"cri\",\n  \"criação\": \"criaçã\",\n  \"criacionista\": \"criacion\",\n  \"criações\": \"criaçõ\",\n  \"criada\": \"cri\",\n  \"criadas\": \"cri\",\n  \"criado\": \"cri\",\n  \"criador\": \"criador\",\n  \"criadores\": \"criador\",\n  \"criados\": \"cri\",\n  \"criadouros\": \"criadour\",\n  \"criam\": \"cri\",\n  \"criança\": \"crianc\",\n  \"criançada\": \"crianc\",\n  \"crianças\": \"crianc\",\n  \"criancinha\": \"criancinh\",\n  \"criancinhas\": \"criancinh\",\n  \"criando\": \"cri\",\n  \"criar\": \"cri\",\n  \"criará\": \"cri\",\n  \"criaram\": \"cri\",\n  \"criariam\": \"cri\",\n  \"criasse\": \"cri\",\n  \"criativas\": \"criativ\",\n  \"criatividade\": \"criativ\",\n  \"criativo\": \"criativ\",\n  \"criativos\": \"criativ\",\n  \"criatura\": \"criatur\",\n  \"criaturas\": \"criatur\",\n  \"criavam\": \"cri\",\n  \"crichton\": \"crichton\",\n  \"crick\": \"crick\",\n  \"crie\": \"cri\",\n  \"criem\": \"cri\",\n  \"crigor\": \"crigor\",\n  \"crime\": \"crim\",\n  \"crimes\": \"crim\",\n  \"criminais\": \"crimin\",\n  \"criminal\": \"criminal\",\n  \"criminalidade\": \"criminal\",\n  \"criminalista\": \"criminal\",\n  \"criminalistas\": \"criminal\",\n  \"criminalística\": \"criminalíst\",\n  \"criminosas\": \"crimin\",\n  \"criminoso\": \"crimin\",\n  \"criminosos\": \"crimin\",\n  \"crio\": \"cri\",\n  \"crioterapia\": \"crioterap\",\n  \"criou\": \"cri\",\n  \"criptográfica\": \"criptográf\",\n  \"cris\": \"cris\",\n  \"crise\": \"cris\",\n  \"crises\": \"cris\",\n  \"crisma\": \"crism\",\n  \"crispim\": \"crispim\",\n  \"cristã\": \"cristã\",\n  \"cristais\": \"crist\",\n  \"cristal\": \"cristal\",\n  \"cristalinas\": \"cristalin\",\n  \"cristalizar\": \"cristaliz\",\n  \"cristão\": \"cristã\",\n  \"cristãos\": \"cristã\",\n  \"cristian\": \"cristian\",\n  \"cristiana\": \"cristian\",\n  \"cristianismo\": \"cristian\",\n  \"cristiano\": \"cristian\",\n  \"cristina\": \"cristin\",\n  \"cristo\": \"crist\",\n  \"cristobal\": \"cristobal\",\n  \"cristóvão\": \"cristóvã\",\n  \"critério\": \"critéri\",\n  \"critérios\": \"critéri\",\n  \"criteriosa\": \"criteri\",\n  \"criteriosos\": \"criteri\",\n  \"critica\": \"critic\",\n  \"crítica\": \"crític\",\n  \"criticá\": \"critic\",\n  \"criticado\": \"critic\",\n  \"criticam\": \"critic\",\n  \"criticando\": \"critic\",\n  \"criticar\": \"critic\",\n  \"críticas\": \"crític\",\n  \"criticava\": \"critic\",\n  \"crítico\": \"crític\",\n  \"críticos\": \"crític\",\n  \"criticou\": \"critic\",\n  \"crivada\": \"criv\",\n  \"crivo\": \"criv\",\n  \"crixás\": \"crixás\",\n  \"crj\": \"crj\",\n  \"crochê\": \"croch\",\n  \"crocodile\": \"crocodil\",\n  \"croissant\": \"croissant\",\n  \"cromo\": \"crom\",\n  \"cromossomo\": \"cromossom\",\n  \"cromossomos\": \"cromossom\",\n  \"cromwell\": \"cromwell\",\n  \"crônica\": \"crônic\",\n  \"crônicas\": \"crônic\",\n  \"crônico\": \"crônic\",\n  \"cronista\": \"cronist\",\n  \"cronograma\": \"cronogram\",\n  \"cronologia\": \"cronolog\",\n  \"cronológica\": \"cronológ\",\n  \"crooner\": \"croon\",\n  \"croqui\": \"croqu\",\n  \"croquis\": \"croqu\",\n  \"crosby\": \"crosby\",\n  \"cru\": \"cru\",\n  \"cruciais\": \"cruc\",\n  \"crucial\": \"crucial\",\n  \"crucificado\": \"crucific\",\n  \"crucificar\": \"crucific\",\n  \"crucifixo\": \"crucifix\",\n  \"crúcis\": \"crúc\",\n  \"cruéis\": \"cru\",\n  \"cruel\": \"cruel\",\n  \"crueldade\": \"crueldad\",\n  \"cruenta\": \"cruent\",\n  \"crusp\": \"crusp\",\n  \"crustáceos\": \"crustác\",\n  \"cruz\": \"cruz\",\n  \"cruza\": \"cruz\",\n  \"cruzada\": \"cruz\",\n  \"cruzadas\": \"cruz\",\n  \"cruzado\": \"cruz\",\n  \"cruzados\": \"cruz\",\n  \"cruzam\": \"cruz\",\n  \"cruzamento\": \"cruzament\",\n  \"cruzamentos\": \"cruzament\",\n  \"cruzar\": \"cruz\",\n  \"cruzavam\": \"cruz\",\n  \"cruze\": \"cruz\",\n  \"cruzeiro\": \"cruzeir\",\n  \"cruzem\": \"cruz\",\n  \"cruzes\": \"cruz\",\n  \"cruzi\": \"cruz\",\n  \"csn\": \"csn\",\n  \"cst\": \"cst\",\n  \"ct\": \"ct\",\n  \"cuba\": \"cub\",\n  \"cubana\": \"cuban\",\n  \"cubano\": \"cuban\",\n  \"cubanos\": \"cuban\",\n  \"cubas\": \"cub\",\n  \"cubatão\": \"cubatã\",\n  \"cúbico\": \"cúbic\",\n  \"cúbicos\": \"cúbic\",\n  \"cubzac\": \"cubzac\",\n  \"cuca\": \"cuc\",\n  \"cucarachas\": \"cucarach\",\n  \"cucco\": \"cucc\",\n  \"cuchê\": \"cuch\",\n  \"cueca\": \"cuec\",\n  \"cuecas\": \"cuec\",\n  \"cuiabá\": \"cuiab\",\n  \"cuida\": \"cuid\",\n  \"cuidadas\": \"cuid\",\n  \"cuidado\": \"cuid\",\n  \"cuidados\": \"cuid\",\n  \"cuidadosa\": \"cuidad\",\n  \"cuidadosamente\": \"cuidad\",\n  \"cuidadoso\": \"cuidad\",\n  \"cuidadosos\": \"cuidad\",\n  \"cuidam\": \"cuid\",\n  \"cuidando\": \"cuid\",\n  \"cuidar\": \"cuid\",\n  \"cuidarem\": \"cuid\",\n  \"cuidava\": \"cuid\",\n  \"cuidavam\": \"cuid\",\n  \"cuidei\": \"cuid\",\n  \"cuidem\": \"cuid\",\n  \"cuido\": \"cuid\",\n  \"cuidou\": \"cuid\",\n  \"cuisine\": \"cuisin\",\n  \"cuíto\": \"cuít\",\n  \"cuja\": \"cuj\",\n  \"cujas\": \"cuj\",\n  \"cujo\": \"cuj\",\n  \"cujos\": \"cuj\",\n  \"culatra\": \"culatr\",\n  \"culinária\": \"culinár\",\n  \"culinárias\": \"culinár\",\n  \"culminação\": \"culmin\",\n  \"culminante\": \"culmin\",\n  \"culminar\": \"culmin\",\n  \"culminou\": \"culmin\",\n  \"culote\": \"culot\",\n  \"culpa\": \"culp\",\n  \"culpado\": \"culp\",\n  \"culpados\": \"culp\",\n  \"culpar\": \"culp\",\n  \"culpava\": \"culp\",\n  \"culpo\": \"culp\",\n  \"culpou\": \"culp\",\n  \"cult\": \"cult\",\n  \"cultiva\": \"cultiv\",\n  \"cultivada\": \"cultiv\",\n  \"cultivados\": \"cultiv\",\n  \"cultivar\": \"cultiv\",\n  \"culto\": \"cult\",\n  \"cultores\": \"cultor\",\n  \"cultos\": \"cult\",\n  \"cultua\": \"cultu\",\n  \"cultuada\": \"cultu\",\n  \"cultuados\": \"cultu\",\n  \"cultuar\": \"cultu\",\n  \"cultura\": \"cultur\",\n  \"culturais\": \"cultur\",\n  \"cultural\": \"cultural\",\n  \"culturalmente\": \"cultural\",\n  \"culturas\": \"cultur\",\n  \"cumbica\": \"cumbic\",\n  \"cume\": \"cum\",\n  \"cúmplice\": \"cúmplic\",\n  \"cumplicidade\": \"cumplic\",\n  \"cumpra\": \"cumpr\",\n  \"cumprá\": \"cumpr\",\n  \"cumpre\": \"cumpr\",\n  \"cumprem\": \"cumpr\",\n  \"cumpri\": \"cumpr\",\n  \"cumprí\": \"cumpr\",\n  \"cumpria\": \"cumpr\",\n  \"cumprida\": \"cumpr\",\n  \"cumpridas\": \"cumpr\",\n  \"cumprido\": \"cumpr\",\n  \"cumprimentar\": \"cumpriment\",\n  \"cumprimento\": \"cumpriment\",\n  \"cumprimentos\": \"cumpriment\",\n  \"cumprindo\": \"cumpr\",\n  \"cumprir\": \"cumpr\",\n  \"cumprirem\": \"cumpr\",\n  \"cumprirmos\": \"cumpr\",\n  \"cumpriu\": \"cumpr\",\n  \"cumpulsório\": \"cumpulsóri\",\n  \"cumulativo\": \"cumul\",\n  \"cunha\": \"cunh\",\n  \"cunhada\": \"cunh\",\n  \"cunhado\": \"cunh\",\n  \"cunhos\": \"cunh\",\n  \"cunhou\": \"cunh\",\n  \"cupim\": \"cupim\",\n  \"cúpula\": \"cúpul\",\n  \"cura\": \"cur\",\n  \"curá\": \"cur\",\n  \"curada\": \"cur\",\n  \"curadas\": \"cur\",\n  \"curado\": \"cur\",\n  \"curador\": \"curador\",\n  \"curadora\": \"curador\",\n  \"curam\": \"cur\",\n  \"curandeirismo\": \"curandeir\",\n  \"curandeiro\": \"curandeir\",\n  \"curandeiros\": \"curandeir\",\n  \"curar\": \"cur\",\n  \"curas\": \"cur\",\n  \"curável\": \"curável\",\n  \"curei\": \"cur\",\n  \"curió\": \"curi\",\n  \"curiosa\": \"curios\",\n  \"curiosamente\": \"curios\",\n  \"curiosas\": \"curios\",\n  \"curiosidade\": \"curios\",\n  \"curiosidades\": \"curios\",\n  \"curioso\": \"curios\",\n  \"curiosos\": \"curios\",\n  \"curitiba\": \"curitib\",\n  \"curou\": \"cur\",\n  \"curral\": \"curral\",\n  \"curricular\": \"curricul\",\n  \"currículo\": \"currícul\",\n  \"currículos\": \"currícul\",\n  \"cursa\": \"curs\",\n  \"cursam\": \"curs\",\n  \"cursando\": \"curs\",\n  \"cursar\": \"curs\",\n  \"cursava\": \"curs\",\n  \"cursinho\": \"cursinh\",\n  \"curso\": \"curs\",\n  \"cursos\": \"curs\",\n  \"cursou\": \"curs\",\n  \"curta\": \"curt\",\n  \"curtas\": \"curt\",\n  \"curtem\": \"curt\",\n  \"curtindo\": \"curt\",\n  \"curtir\": \"curt\",\n  \"curtirem\": \"curt\",\n  \"curto\": \"curt\",\n  \"curtos\": \"curt\",\n  \"curva\": \"curv\",\n  \"curvado\": \"curv\",\n  \"curvar\": \"curv\",\n  \"curvas\": \"curv\",\n  \"curvou\": \"curv\",\n  \"cury\": \"cury\",\n  \"cuschnir\": \"cuschn\",\n  \"cushman\": \"cushman\",\n  \"cuspidas\": \"cusp\",\n  \"custa\": \"cust\",\n  \"custado\": \"cust\",\n  \"custam\": \"cust\",\n  \"custar\": \"cust\",\n  \"custará\": \"cust\",\n  \"custas\": \"cust\",\n  \"custava\": \"cust\",\n  \"custavam\": \"cust\",\n  \"custe\": \"cust\",\n  \"custeadas\": \"cust\",\n  \"custeado\": \"cust\",\n  \"custear\": \"cust\",\n  \"custei\": \"cust\",\n  \"custeia\": \"cust\",\n  \"custeio\": \"custei\",\n  \"custeou\": \"cust\",\n  \"custo\": \"cust\",\n  \"custódia\": \"custód\",\n  \"custódio\": \"custódi\",\n  \"custos\": \"cust\",\n  \"custou\": \"cust\",\n  \"cutícula\": \"cutícul\",\n  \"cutucando\": \"cutuc\",\n  \"cybex\": \"cybex\",\n  \"cynthia\": \"cynthi\",\n  \"cyntia\": \"cynti\",\n  \"cypel\": \"cypel\",\n  \"cyro\": \"cyro\",\n  \"cyrus\": \"cyrus\",\n  \"cz\": \"cz\",\n  \"d\": \"d\",\n  \"da\": \"da\",\n  \"dá\": \"dá\",\n  \"dabdab\": \"dabdab\",\n  \"dac\": \"dac\",\n  \"dachas\": \"dach\",\n  \"dacta\": \"dact\",\n  \"dada\": \"dad\",\n  \"dadá\": \"dad\",\n  \"dadas\": \"dad\",\n  \"dadi\": \"dad\",\n  \"dado\": \"dad\",\n  \"dados\": \"dad\",\n  \"dagueneide\": \"dagueneid\",\n  \"daí\": \"daí\",\n  \"daily\": \"daily\",\n  \"daisy\": \"daisy\",\n  \"dal\": \"dal\",\n  \"dalai\": \"dala\",\n  \"dali\": \"dal\",\n  \"dalí\": \"dal\",\n  \"dallari\": \"dallar\",\n  \"dallas\": \"dall\",\n  \"dalmo\": \"dalm\",\n  \"dalton\": \"dalton\",\n  \"dalva\": \"dalv\",\n  \"dama\": \"dam\",\n  \"damasco\": \"damasc\",\n  \"damiana\": \"damian\",\n  \"damião\": \"damiã\",\n  \"daminhas\": \"daminh\",\n  \"damos\": \"dam\",\n  \"danado\": \"dan\",\n  \"dança\": \"danc\",\n  \"dançam\": \"danc\",\n  \"dançando\": \"danc\",\n  \"dançante\": \"dançant\",\n  \"dançar\": \"danc\",\n  \"dançaram\": \"danc\",\n  \"dançarina\": \"dançarin\",\n  \"dançarinas\": \"dançarin\",\n  \"dançarinos\": \"dançarin\",\n  \"danças\": \"danc\",\n  \"dançava\": \"danc\",\n  \"dançavam\": \"danc\",\n  \"dance\": \"danc\",\n  \"danceteria\": \"dancet\",\n  \"danço\": \"danc\",\n  \"dançou\": \"danc\",\n  \"dando\": \"dand\",\n  \"dani\": \"dan\",\n  \"daniel\": \"daniel\",\n  \"daniela\": \"daniel\",\n  \"daniella\": \"daniell\",\n  \"danielle\": \"daniell\",\n  \"danifica\": \"danif\",\n  \"danificado\": \"danific\",\n  \"danificava\": \"danific\",\n  \"danilo\": \"danil\",\n  \"dano\": \"dan\",\n  \"danone\": \"danon\",\n  \"danos\": \"dan\",\n  \"danosos\": \"danos\",\n  \"danou\": \"dan\",\n  \"danse\": \"dans\",\n  \"dantas\": \"dant\",\n  \"dante\": \"dant\",\n  \"dantescas\": \"dantesc\",\n  \"danton\": \"danton\",\n  \"dão\": \"dã\",\n  \"dapartamento\": \"dapart\",\n  \"daphne\": \"daphn\",\n  \"daquela\": \"daquel\",\n  \"daquelas\": \"daquel\",\n  \"daquele\": \"daquel\",\n  \"daqueles\": \"daquel\",\n  \"daqui\": \"daqu\",\n  \"daquilo\": \"daquil\",\n  \"dar\": \"dar\",\n  \"dará\": \"dar\",\n  \"darão\": \"darã\",\n  \"darci\": \"darc\",\n  \"darcio\": \"darci\",\n  \"dárcio\": \"dárci\",\n  \"darcy\": \"darcy\",\n  \"dardanelos\": \"dardanel\",\n  \"darem\": \"dar\",\n  \"daria\": \"dar\",\n  \"dariel\": \"dariel\",\n  \"dark\": \"dark\",\n  \"darlene\": \"darlen\",\n  \"darmos\": \"darm\",\n  \"darwin\": \"darwin\",\n  \"darwiniana\": \"darwinian\",\n  \"darwinista\": \"darwin\",\n  \"das\": \"das\",\n  \"daslu\": \"daslu\",\n  \"dastem\": \"dast\",\n  \"data\": \"dat\",\n  \"datado\": \"dat\",\n  \"datafolha\": \"datafolh\",\n  \"dataprev\": \"dataprev\",\n  \"datas\": \"dat\",\n  \"datasus\": \"datasus\",\n  \"date\": \"dat\",\n  \"datelli\": \"datell\",\n  \"datilografado\": \"datilograf\",\n  \"datilografar\": \"datilograf\",\n  \"datilógrafas\": \"datilógraf\",\n  \"datilografei\": \"datilograf\",\n  \"datilografia\": \"datilograf\",\n  \"datilógrafo\": \"datilógraf\",\n  \"datou\": \"dat\",\n  \"dava\": \"dav\",\n  \"davam\": \"dav\",\n  \"dave\": \"dav\",\n  \"davi\": \"dav\",\n  \"david\": \"david\",\n  \"davide\": \"david\",\n  \"dávila\": \"dávil\",\n  \"davis\": \"dav\",\n  \"dawkins\": \"dawkins\",\n  \"day\": \"day\",\n  \"dbm\": \"dbm\",\n  \"dc\": \"dc\",\n  \"dce\": \"dce\",\n  \"dd\": \"dd\",\n  \"ddd\": \"ddd\",\n  \"de\": \"de\",\n  \"dê\": \"dê\",\n  \"deaconess\": \"deaconess\",\n  \"dean\": \"dean\",\n  \"debaixo\": \"debaix\",\n  \"debandou\": \"deband\",\n  \"debate\": \"debat\",\n  \"debatem\": \"debat\",\n  \"debater\": \"debat\",\n  \"debates\": \"debat\",\n  \"debateu\": \"debat\",\n  \"debatido\": \"debat\",\n  \"debelado\": \"debel\",\n  \"debêntures\": \"debêntur\",\n  \"débil\": \"débil\",\n  \"debilitada\": \"debilit\",\n  \"debilitado\": \"debilit\",\n  \"debilóide\": \"debilóid\",\n  \"debitadas\": \"debit\",\n  \"debitado\": \"debit\",\n  \"débito\": \"débit\",\n  \"débitos\": \"débit\",\n  \"debocha\": \"deboch\",\n  \"debochados\": \"deboch\",\n  \"deboche\": \"deboch\",\n  \"débora\": \"débor\",\n  \"deborah\": \"deborah\",\n  \"debray\": \"debray\",\n  \"debruçada\": \"debruc\",\n  \"debruçou\": \"debruc\",\n  \"début\": \"début\",\n  \"debutante\": \"debut\",\n  \"dec\": \"dec\",\n  \"década\": \"déc\",\n  \"décadas\": \"déc\",\n  \"decadência\": \"decadent\",\n  \"decadente\": \"decadent\",\n  \"decadentes\": \"decadent\",\n  \"decaída\": \"decaíd\",\n  \"decaiu\": \"deca\",\n  \"decência\": \"decênc\",\n  \"decente\": \"decent\",\n  \"decentemente\": \"decent\",\n  \"decepações\": \"decep\",\n  \"decepadas\": \"decep\",\n  \"decepção\": \"decepçã\",\n  \"decepcionadas\": \"decepcion\",\n  \"decepcionado\": \"decepcion\",\n  \"decepcionam\": \"decepcion\",\n  \"decepcionante\": \"decepcion\",\n  \"decepções\": \"decepçõ\",\n  \"decerto\": \"decert\",\n  \"decibéis\": \"decib\",\n  \"decide\": \"decid\",\n  \"decidem\": \"decid\",\n  \"decidi\": \"decid\",\n  \"decidiam\": \"decid\",\n  \"decidida\": \"decid\",\n  \"decididamente\": \"decidid\",\n  \"decidido\": \"decid\",\n  \"decidimos\": \"decid\",\n  \"decidir\": \"decid\",\n  \"decidirá\": \"decid\",\n  \"decidiram\": \"decid\",\n  \"decidirem\": \"decid\",\n  \"decidiu\": \"decid\",\n  \"decido\": \"dec\",\n  \"decifrada\": \"decifr\",\n  \"decifrados\": \"decifr\",\n  \"decifrar\": \"decifr\",\n  \"decifraremos\": \"decifr\",\n  \"decifrou\": \"decifr\",\n  \"decilitro\": \"decilitr\",\n  \"décima\": \"décim\",\n  \"decimal\": \"decimal\",\n  \"décimo\": \"décim\",\n  \"décimos\": \"déc\",\n  \"décio\": \"déci\",\n  \"decisão\": \"decisã\",\n  \"decisiva\": \"decis\",\n  \"decisivamente\": \"decis\",\n  \"decisivas\": \"decis\",\n  \"decisivo\": \"decis\",\n  \"decisivos\": \"decis\",\n  \"decisões\": \"decisõ\",\n  \"declara\": \"decl\",\n  \"declaração\": \"declar\",\n  \"declarações\": \"declar\",\n  \"declarada\": \"declar\",\n  \"declarado\": \"declar\",\n  \"declaram\": \"decl\",\n  \"declarar\": \"declar\",\n  \"declararam\": \"declar\",\n  \"declarasse\": \"declar\",\n  \"declarava\": \"declar\",\n  \"declarou\": \"declar\",\n  \"declinar\": \"declin\",\n  \"declínio\": \"declíni\",\n  \"decola\": \"decol\",\n  \"decolagem\": \"decolag\",\n  \"decolagens\": \"decolagens\",\n  \"decolando\": \"decol\",\n  \"decolar\": \"decol\",\n  \"decolara\": \"decol\",\n  \"decolaram\": \"decol\",\n  \"decolou\": \"decol\",\n  \"decora\": \"decor\",\n  \"decoração\": \"decor\",\n  \"decorada\": \"decor\",\n  \"decorado\": \"decor\",\n  \"decorador\": \"decor\",\n  \"decoradora\": \"decor\",\n  \"decoradoras\": \"decor\",\n  \"decoradores\": \"decor\",\n  \"decorar\": \"decor\",\n  \"decorativo\": \"decor\",\n  \"decorou\": \"decor\",\n  \"decorre\": \"decorr\",\n  \"decorrência\": \"decorrent\",\n  \"decorrentes\": \"decorrent\",\n  \"decorrer\": \"decorr\",\n  \"decorreu\": \"decorr\",\n  \"decorridos\": \"decorr\",\n  \"decotada\": \"decot\",\n  \"decreta\": \"decret\",\n  \"decretação\": \"decret\",\n  \"decretada\": \"decret\",\n  \"decretar\": \"decret\",\n  \"decretaram\": \"decret\",\n  \"decreto\": \"decret\",\n  \"decretou\": \"decret\",\n  \"decuplicar\": \"decuplic\",\n  \"dedica\": \"dedic\",\n  \"dedicação\": \"dedic\",\n  \"dedicada\": \"dedic\",\n  \"dedicadas\": \"dedic\",\n  \"dedicado\": \"dedic\",\n  \"dedicados\": \"dedic\",\n  \"dedicam\": \"dedic\",\n  \"dedicando\": \"dedic\",\n  \"dedicar\": \"dedic\",\n  \"dedicaram\": \"dedic\",\n  \"dedico\": \"dedic\",\n  \"dedicou\": \"dedic\",\n  \"dedinho\": \"dedinh\",\n  \"dediquei\": \"dediqu\",\n  \"dedo\": \"ded\",\n  \"dedos\": \"ded\",\n  \"deduraram\": \"dedur\",\n  \"deduz\": \"deduz\",\n  \"deduzir\": \"deduz\",\n  \"dêem\": \"dêem\",\n  \"deep\": \"deep\",\n  \"defamation\": \"defamation\",\n  \"defasagem\": \"defasag\",\n  \"defecar\": \"defec\",\n  \"defeito\": \"defeit\",\n  \"defeitos\": \"defeit\",\n  \"defeituosas\": \"defeitu\",\n  \"defeituoso\": \"defeitu\",\n  \"defeituosos\": \"defeitu\",\n  \"defenda\": \"defend\",\n  \"defende\": \"defend\",\n  \"defendê\": \"defend\",\n  \"defendem\": \"defend\",\n  \"defendendo\": \"defend\",\n  \"defender\": \"defend\",\n  \"defenderá\": \"defend\",\n  \"defenderte\": \"defendert\",\n  \"defendesse\": \"defend\",\n  \"defendeu\": \"defend\",\n  \"defendi\": \"defend\",\n  \"defendida\": \"defend\",\n  \"defendo\": \"def\",\n  \"defensiva\": \"defens\",\n  \"defensor\": \"defensor\",\n  \"defensora\": \"defensor\",\n  \"defensores\": \"defensor\",\n  \"deferência\": \"deferent\",\n  \"defesa\": \"defes\",\n  \"defesas\": \"defes\",\n  \"deff\": \"deff\",\n  \"deficiência\": \"deficient\",\n  \"deficiências\": \"deficient\",\n  \"deficiente\": \"deficient\",\n  \"deficientes\": \"deficient\",\n  \"déficit\": \"déficit\",\n  \"déficits\": \"déficits\",\n  \"define\": \"defin\",\n  \"definem\": \"defin\",\n  \"definham\": \"definh\",\n  \"definição\": \"definiçã\",\n  \"definida\": \"defin\",\n  \"definidas\": \"defin\",\n  \"definido\": \"defin\",\n  \"definidos\": \"defin\",\n  \"definindo\": \"defin\",\n  \"definir\": \"defin\",\n  \"definiram\": \"defin\",\n  \"definirmos\": \"defin\",\n  \"definitiva\": \"definit\",\n  \"definitivamente\": \"definit\",\n  \"definitivo\": \"definit\",\n  \"definitivos\": \"definit\",\n  \"definiu\": \"defin\",\n  \"deflagrada\": \"deflagr\",\n  \"deflagrador\": \"deflagr\",\n  \"deflagradores\": \"deflagr\",\n  \"deformados\": \"deform\",\n  \"deformar\": \"deform\",\n  \"defronta\": \"defront\",\n  \"defunta\": \"defunt\",\n  \"defuntos\": \"defunt\",\n  \"degase\": \"degas\",\n  \"degenera\": \"degen\",\n  \"degeneris\": \"degener\",\n  \"degolados\": \"degol\",\n  \"degradadas\": \"degrad\",\n  \"degradando\": \"degrad\",\n  \"degradar\": \"degrad\",\n  \"degradaram\": \"degrad\",\n  \"degradeè\": \"degradeè\",\n  \"degrau\": \"degrau\",\n  \"degraus\": \"degraus\",\n  \"degredado\": \"degred\",\n  \"degredados\": \"degred\",\n  \"degustação\": \"degust\",\n  \"degustador\": \"degust\",\n  \"degustam\": \"degust\",\n  \"degustar\": \"degust\",\n  \"deheinzelin\": \"deheinzelin\",\n  \"dei\": \"dei\",\n  \"deitada\": \"deit\",\n  \"deitar\": \"deit\",\n  \"deixa\": \"deix\",\n  \"deixá\": \"deix\",\n  \"deixada\": \"deix\",\n  \"deixadas\": \"deix\",\n  \"deixado\": \"deix\",\n  \"deixam\": \"deix\",\n  \"deixamos\": \"deix\",\n  \"deixando\": \"deix\",\n  \"deixar\": \"deix\",\n  \"deixara\": \"deix\",\n  \"deixará\": \"deix\",\n  \"deixaram\": \"deix\",\n  \"deixarão\": \"deix\",\n  \"deixarem\": \"deix\",\n  \"deixaria\": \"deix\",\n  \"deixariam\": \"deix\",\n  \"deixasse\": \"deix\",\n  \"deixava\": \"deix\",\n  \"deixavam\": \"deix\",\n  \"deixe\": \"deix\",\n  \"deixei\": \"deix\",\n  \"deixem\": \"deix\",\n  \"deixo\": \"deix\",\n  \"deixou\": \"deix\",\n  \"dejanir\": \"dejan\",\n  \"dejenane\": \"dejenan\",\n  \"dejetos\": \"dejet\",\n  \"del\": \"del\",\n  \"dela\": \"del\",\n  \"delano\": \"delan\",\n  \"delas\": \"del\",\n  \"delata\": \"delat\",\n  \"delatando\": \"delat\",\n  \"dele\": \"del\",\n  \"delega\": \"deleg\",\n  \"delegação\": \"deleg\",\n  \"delegacia\": \"delegac\",\n  \"delegada\": \"deleg\",\n  \"delegado\": \"deleg\",\n  \"delegados\": \"deleg\",\n  \"delegar\": \"deleg\",\n  \"deleitando\": \"deleit\",\n  \"deleites\": \"deleit\",\n  \"deles\": \"del\",\n  \"deletar\": \"delet\",\n  \"delfim\": \"delfim\",\n  \"delgar\": \"delg\",\n  \"déli\": \"dél\",\n  \"deliberadamente\": \"deliber\",\n  \"delicada\": \"delic\",\n  \"delicado\": \"delic\",\n  \"delicados\": \"delic\",\n  \"delicatessen\": \"delicatessen\",\n  \"delícia\": \"delíc\",\n  \"deliciar\": \"delic\",\n  \"deliciosa\": \"delic\",\n  \"deliciosamente\": \"delic\",\n  \"deliciosas\": \"delic\",\n  \"delicioso\": \"delic\",\n  \"delineada\": \"delin\",\n  \"delinear\": \"delin\",\n  \"delinquência\": \"delinquent\",\n  \"delinquente\": \"delinquent\",\n  \"delinquentes\": \"delinquent\",\n  \"délio\": \"déli\",\n  \"deliram\": \"del\",\n  \"delirante\": \"delir\",\n  \"delirantes\": \"delir\",\n  \"delirava\": \"delir\",\n  \"delírio\": \"delíri\",\n  \"delito\": \"delit\",\n  \"delitos\": \"delit\",\n  \"della\": \"dell\",\n  \"delmar\": \"delm\",\n  \"delors\": \"delors\",\n  \"delta\": \"delt\",\n  \"deltacid\": \"deltacid\",\n  \"dema\": \"dem\",\n  \"demagógico\": \"demagóg\",\n  \"demagogo\": \"demagog\",\n  \"demais\": \"dem\",\n  \"demanda\": \"demand\",\n  \"demandar\": \"demand\",\n  \"demandas\": \"demand\",\n  \"demarcações\": \"demarc\",\n  \"demarcado\": \"demarc\",\n  \"demarcou\": \"demarc\",\n  \"demasia\": \"demas\",\n  \"demasiado\": \"demasi\",\n  \"demétrio\": \"demétri\",\n  \"demi\": \"dem\",\n  \"demissão\": \"demissã\",\n  \"demissionários\": \"demissionári\",\n  \"demissões\": \"demissõ\",\n  \"demitem\": \"demit\",\n  \"demitiam\": \"demit\",\n  \"demitida\": \"demit\",\n  \"demitido\": \"demit\",\n  \"demitir\": \"demit\",\n  \"demitiram\": \"demit\",\n  \"demitiu\": \"demit\",\n  \"democracia\": \"democrac\",\n  \"democracias\": \"democrac\",\n  \"democrata\": \"democrat\",\n  \"democrática\": \"democrát\",\n  \"democraticamente\": \"democrat\",\n  \"democrático\": \"democrát\",\n  \"democráticos\": \"democrát\",\n  \"democratismo\": \"democrat\",\n  \"democratização\": \"democratiz\",\n  \"démodé\": \"démod\",\n  \"demografia\": \"demograf\",\n  \"demográfica\": \"demográf\",\n  \"demográficos\": \"demográf\",\n  \"demógrafos\": \"demógraf\",\n  \"demolida\": \"demol\",\n  \"demoliu\": \"demol\",\n  \"demoníaco\": \"demoníac\",\n  \"demônio\": \"demôni\",\n  \"demônios\": \"demôni\",\n  \"demonstra\": \"demonstr\",\n  \"demonstração\": \"demonstr\",\n  \"demonstrado\": \"demonstr\",\n  \"demonstram\": \"demonstr\",\n  \"demonstrando\": \"demonstr\",\n  \"demonstrar\": \"demonstr\",\n  \"demonstraram\": \"demonstr\",\n  \"demonstrava\": \"demonstr\",\n  \"demonstrou\": \"demonstr\",\n  \"demora\": \"demor\",\n  \"demorada\": \"demor\",\n  \"demoradamente\": \"demor\",\n  \"demorado\": \"demor\",\n  \"demorados\": \"demor\",\n  \"demoram\": \"demor\",\n  \"demorando\": \"demor\",\n  \"demorar\": \"demor\",\n  \"demoravam\": \"demor\",\n  \"demore\": \"demor\",\n  \"demorei\": \"demor\",\n  \"demoro\": \"demor\",\n  \"demorou\": \"demor\",\n  \"demos\": \"dem\",\n  \"demoura\": \"demour\",\n  \"demovem\": \"demov\",\n  \"dendê\": \"dend\",\n  \"denegridor\": \"denegridor\",\n  \"deneuve\": \"deneuv\",\n  \"deng\": \"deng\",\n  \"dengo\": \"deng\",\n  \"dengosa\": \"dengos\",\n  \"dengoso\": \"dengos\",\n  \"dengue\": \"deng\",\n  \"denílson\": \"denílson\",\n  \"denise\": \"denis\",\n  \"dennis\": \"denn\",\n  \"denominação\": \"denomin\",\n  \"denominações\": \"denomin\",\n  \"denominado\": \"denomin\",\n  \"denominador\": \"denomin\",\n  \"denominados\": \"denomin\",\n  \"denominando\": \"denomin\",\n  \"densa\": \"dens\",\n  \"densidade\": \"densidad\",\n  \"densitometria\": \"densitometr\",\n  \"densitômetro\": \"densitômetr\",\n  \"denso\": \"dens\",\n  \"dentária\": \"dentár\",\n  \"dente\": \"dent\",\n  \"dentes\": \"dent\",\n  \"dentista\": \"dentist\",\n  \"dentistas\": \"dentist\",\n  \"dentre\": \"dentr\",\n  \"dentro\": \"dentr\",\n  \"denuncia\": \"denunc\",\n  \"denúncia\": \"denúnc\",\n  \"denunciadas\": \"denunc\",\n  \"denunciado\": \"denunc\",\n  \"denunciando\": \"denunc\",\n  \"denunciar\": \"denunc\",\n  \"denúncias\": \"denúnc\",\n  \"denunciavam\": \"denunc\",\n  \"denuncie\": \"denunc\",\n  \"denunciou\": \"denunc\",\n  \"denuncismo\": \"denunc\",\n  \"denver\": \"denv\",\n  \"deodoro\": \"deodor\",\n  \"deon\": \"deon\",\n  \"deops\": \"deops\",\n  \"depara\": \"dep\",\n  \"deparamos\": \"depar\",\n  \"deparar\": \"depar\",\n  \"deparou\": \"depar\",\n  \"departamentalização\": \"departamentaliz\",\n  \"departamento\": \"depart\",\n  \"departamentos\": \"depart\",\n  \"dependa\": \"depend\",\n  \"depende\": \"depend\",\n  \"dependem\": \"depend\",\n  \"dependemos\": \"depend\",\n  \"dependência\": \"dependent\",\n  \"dependências\": \"dependent\",\n  \"dependendo\": \"depend\",\n  \"dependente\": \"dependent\",\n  \"dependentes\": \"dependent\",\n  \"depender\": \"depend\",\n  \"dependerá\": \"depend\",\n  \"dependerão\": \"depend\",\n  \"dependeria\": \"depend\",\n  \"dependeu\": \"depend\",\n  \"dependi\": \"depend\",\n  \"dependia\": \"depend\",\n  \"dependuram\": \"dependur\",\n  \"dependurar\": \"dependur\",\n  \"depila\": \"depil\",\n  \"depiladas\": \"depil\",\n  \"depoente\": \"depoent\",\n  \"depoentes\": \"depoent\",\n  \"depoimento\": \"depoiment\",\n  \"depoimentos\": \"depoiment\",\n  \"depois\": \"depo\",\n  \"depor\": \"depor\",\n  \"deportação\": \"deport\",\n  \"deportado\": \"deport\",\n  \"deportaram\": \"deport\",\n  \"deposição\": \"deposiçã\",\n  \"deposita\": \"deposit\",\n  \"depositadas\": \"deposit\",\n  \"depositado\": \"deposit\",\n  \"depositados\": \"deposit\",\n  \"depositar\": \"deposit\",\n  \"deposito\": \"deposit\",\n  \"depósito\": \"depósit\",\n  \"depósitos\": \"depósit\",\n  \"deprê\": \"depr\",\n  \"depreciação\": \"deprec\",\n  \"depressa\": \"depress\",\n  \"depressão\": \"depressã\",\n  \"depressiva\": \"depress\",\n  \"depressivo\": \"depress\",\n  \"depressivos\": \"depress\",\n  \"depressões\": \"depressõ\",\n  \"deprimida\": \"deprim\",\n  \"deprimidas\": \"deprim\",\n  \"depuração\": \"depur\",\n  \"depurar\": \"depur\",\n  \"depuseram\": \"depus\",\n  \"deputada\": \"deput\",\n  \"deputado\": \"deput\",\n  \"deputados\": \"deput\",\n  \"der\": \"der\",\n  \"dera\": \"der\",\n  \"deram\": \"der\",\n  \"derci\": \"derc\",\n  \"derivada\": \"deriv\",\n  \"derivado\": \"deriv\",\n  \"derivados\": \"deriv\",\n  \"dermatológicos\": \"dermatológ\",\n  \"dermatologista\": \"dermatolog\",\n  \"dermatologistas\": \"dermatolog\",\n  \"derradeira\": \"derradeir\",\n  \"derradeiras\": \"derradeir\",\n  \"derradeiros\": \"derradeir\",\n  \"derrama\": \"derram\",\n  \"derramam\": \"derram\",\n  \"derramamento\": \"derram\",\n  \"derrame\": \"derram\",\n  \"derrames\": \"derram\",\n  \"derramou\": \"derram\",\n  \"derrapou\": \"derrap\",\n  \"derretida\": \"derret\",\n  \"derrocada\": \"derroc\",\n  \"derrota\": \"derrot\",\n  \"derrotá\": \"derrot\",\n  \"derrotada\": \"derrot\",\n  \"derrotado\": \"derrot\",\n  \"derrotados\": \"derrot\",\n  \"derrotas\": \"derrot\",\n  \"derrotista\": \"derrot\",\n  \"derrotou\": \"derrot\",\n  \"derruba\": \"derrub\",\n  \"derrubá\": \"derrub\",\n  \"derrubados\": \"derrub\",\n  \"derrubam\": \"derrub\",\n  \"derrubando\": \"derrub\",\n  \"derrubar\": \"derrub\",\n  \"derrubaram\": \"derrub\",\n  \"derrubou\": \"derrub\",\n  \"dertouzos\": \"dertouz\",\n  \"des\": \"des\",\n  \"desaba\": \"desab\",\n  \"desabado\": \"desab\",\n  \"desabafa\": \"desabaf\",\n  \"desabafo\": \"desabaf\",\n  \"desabafou\": \"desabaf\",\n  \"desabamento\": \"desab\",\n  \"desabaram\": \"desab\",\n  \"desabastecimento\": \"desabastec\",\n  \"desabou\": \"desab\",\n  \"desabrido\": \"desabr\",\n  \"desaconselha\": \"desaconselh\",\n  \"desaconselhado\": \"desaconselh\",\n  \"desaconselhável\": \"desaconselh\",\n  \"desacordado\": \"desacord\",\n  \"desacredito\": \"desacredit\",\n  \"desafeto\": \"desafet\",\n  \"desafetos\": \"desafet\",\n  \"desafia\": \"desaf\",\n  \"desafiadoras\": \"desafi\",\n  \"desafiam\": \"desaf\",\n  \"desafiando\": \"desafi\",\n  \"desafiar\": \"desafi\",\n  \"desafina\": \"desafin\",\n  \"desafinado\": \"desafin\",\n  \"desafio\": \"desafi\",\n  \"desafios\": \"desafi\",\n  \"desaforo\": \"desafor\",\n  \"deságio\": \"desági\",\n  \"desagrada\": \"desagr\",\n  \"desagradará\": \"desagrad\",\n  \"desagradáveis\": \"desagrad\",\n  \"desagradável\": \"desagrad\",\n  \"desagravo\": \"desagrav\",\n  \"deságuam\": \"deságu\",\n  \"desaguar\": \"desagu\",\n  \"desajeitado\": \"desajeit\",\n  \"desajustada\": \"desajust\",\n  \"desalentador\": \"desalent\",\n  \"desalinhados\": \"desalinh\",\n  \"desalinho\": \"desalinh\",\n  \"desamparadas\": \"desampar\",\n  \"desamparo\": \"desampar\",\n  \"desandou\": \"desand\",\n  \"desanimado\": \"desanim\",\n  \"desanimar\": \"desanim\",\n  \"desânimos\": \"desân\",\n  \"desanimou\": \"desanim\",\n  \"desapareça\": \"desaparec\",\n  \"desaparece\": \"desaparec\",\n  \"desaparecem\": \"desaparec\",\n  \"desaparecendo\": \"desaparec\",\n  \"desaparecer\": \"desaparec\",\n  \"desapareceu\": \"desaparec\",\n  \"desaparecido\": \"desaparec\",\n  \"desapontada\": \"desapont\",\n  \"desapontados\": \"desapont\",\n  \"desapontamento\": \"desapont\",\n  \"desaprovar\": \"desaprov\",\n  \"desarmá\": \"desarm\",\n  \"desarmada\": \"desarm\",\n  \"desarmado\": \"desarm\",\n  \"desarranjos\": \"desarranj\",\n  \"desarrumação\": \"desarrum\",\n  \"desarrumados\": \"desarrum\",\n  \"desarticula\": \"desarticul\",\n  \"desarticulação\": \"desarticul\",\n  \"desassombrada\": \"desassombr\",\n  \"desastrado\": \"desastr\",\n  \"desastrados\": \"desastr\",\n  \"desastre\": \"desastr\",\n  \"desastres\": \"desastr\",\n  \"desastrosas\": \"desastr\",\n  \"desastroso\": \"desastr\",\n  \"desatá\": \"desat\",\n  \"desatar\": \"desat\",\n  \"desativada\": \"desativ\",\n  \"desativado\": \"desativ\",\n  \"desativados\": \"desativ\",\n  \"desatracar\": \"desatrac\",\n  \"desatualizada\": \"desatualiz\",\n  \"desavenças\": \"desavenc\",\n  \"desavisado\": \"desavis\",\n  \"desavisados\": \"desavis\",\n  \"desbancar\": \"desbanc\",\n  \"desbancou\": \"desbanc\",\n  \"desbaratar\": \"desbarat\",\n  \"desbloquear\": \"desbloqu\",\n  \"desbravadora\": \"desbrav\",\n  \"desbravamento\": \"desbrav\",\n  \"desbravando\": \"desbrav\",\n  \"desbunde\": \"desbund\",\n  \"descalça\": \"descalc\",\n  \"descalcificação\": \"descalcific\",\n  \"descalço\": \"descalc\",\n  \"descalços\": \"descalc\",\n  \"descalvado\": \"descalv\",\n  \"descampado\": \"descamp\",\n  \"descansa\": \"descans\",\n  \"descansada\": \"descans\",\n  \"descansam\": \"descans\",\n  \"descansar\": \"descans\",\n  \"descanso\": \"descans\",\n  \"descansou\": \"descans\",\n  \"descaracterizaria\": \"descaracteriz\",\n  \"descarga\": \"descarg\",\n  \"descargas\": \"descarg\",\n  \"descarrega\": \"descarreg\",\n  \"descarregamento\": \"descarreg\",\n  \"descarregar\": \"descarreg\",\n  \"descartada\": \"descart\",\n  \"descartam\": \"descart\",\n  \"descartar\": \"descart\",\n  \"descartou\": \"descart\",\n  \"descasa\": \"descas\",\n  \"descasado\": \"descas\",\n  \"descasando\": \"descas\",\n  \"descascá\": \"descasc\",\n  \"descascado\": \"descasc\",\n  \"descascar\": \"descasc\",\n  \"descaso\": \"descas\",\n  \"descasque\": \"descasqu\",\n  \"descem\": \"desc\",\n  \"descendente\": \"descendent\",\n  \"descendentes\": \"descendent\",\n  \"descendo\": \"desc\",\n  \"descentraliza\": \"descentraliz\",\n  \"descentralização\": \"descentraliz\",\n  \"descentralizada\": \"descentraliz\",\n  \"descentralizado\": \"descentraliz\",\n  \"descer\": \"desc\",\n  \"desceram\": \"desc\",\n  \"descertificação\": \"descertific\",\n  \"descertificaram\": \"descertific\",\n  \"descesse\": \"desc\",\n  \"desceu\": \"desc\",\n  \"descida\": \"desc\",\n  \"desclassificado\": \"desclassific\",\n  \"desclassificam\": \"desclassific\",\n  \"desço\": \"desc\",\n  \"descoberta\": \"descobert\",\n  \"descobertas\": \"descobert\",\n  \"descoberto\": \"descobert\",\n  \"descobertos\": \"descobert\",\n  \"descobre\": \"descobr\",\n  \"descobrem\": \"descobr\",\n  \"descobri\": \"descobr\",\n  \"descobria\": \"descobr\",\n  \"descobridor\": \"descobridor\",\n  \"descobrimento\": \"descobr\",\n  \"descobrimentos\": \"descobr\",\n  \"descobrimos\": \"descobr\",\n  \"descobrindo\": \"descobr\",\n  \"descobrir\": \"descobr\",\n  \"descobriram\": \"descobr\",\n  \"descobrirem\": \"descobr\",\n  \"descobrirmos\": \"descobr\",\n  \"descobrisse\": \"descobr\",\n  \"descobrissem\": \"descobr\",\n  \"descobriu\": \"descobr\",\n  \"descompasso\": \"descompass\",\n  \"descomprometidas\": \"descompromet\",\n  \"descomprometidos\": \"descompromet\",\n  \"descompromissada\": \"descompromiss\",\n  \"descompromisso\": \"descompromiss\",\n  \"desconcentrar\": \"desconcentr\",\n  \"desconfia\": \"desconf\",\n  \"desconfiada\": \"desconfi\",\n  \"desconfiado\": \"desconfi\",\n  \"desconfiados\": \"desconfi\",\n  \"desconfiam\": \"desconf\",\n  \"desconfiança\": \"desconfianc\",\n  \"desconfianças\": \"desconfianc\",\n  \"desconfiar\": \"desconfi\",\n  \"desconfie\": \"desconfi\",\n  \"desconfiei\": \"desconfi\",\n  \"desconfiou\": \"desconfi\",\n  \"desconfortáveis\": \"desconfort\",\n  \"desconfortável\": \"desconfort\",\n  \"desconforto\": \"desconfort\",\n  \"descongestionante\": \"descongestion\",\n  \"desconhecia\": \"desconhec\",\n  \"desconheciam\": \"desconhec\",\n  \"desconhecida\": \"desconhec\",\n  \"desconhecidas\": \"desconhec\",\n  \"desconhecido\": \"desconhec\",\n  \"desconhecidos\": \"desconhec\",\n  \"desconhecimento\": \"desconhec\",\n  \"desconsidera\": \"desconsid\",\n  \"descontando\": \"descont\",\n  \"descontar\": \"descont\",\n  \"desconte\": \"descont\",\n  \"descontentamento\": \"descontent\",\n  \"descontente\": \"descontent\",\n  \"descontentes\": \"descontent\",\n  \"descontos\": \"descont\",\n  \"descontração\": \"descontr\",\n  \"descontraída\": \"descontraíd\",\n  \"descontraído\": \"descontraíd\",\n  \"descontraídos\": \"descontraíd\",\n  \"descontrolada\": \"descontrol\",\n  \"descontroladas\": \"descontrol\",\n  \"descontrolado\": \"descontrol\",\n  \"descontrole\": \"descontrol\",\n  \"desconversa\": \"desconvers\",\n  \"desconversar\": \"desconvers\",\n  \"desconversava\": \"desconvers\",\n  \"descrédito\": \"descrédit\",\n  \"descrença\": \"descrenc\",\n  \"descrente\": \"descrent\",\n  \"descreve\": \"descrev\",\n  \"descrevem\": \"descrev\",\n  \"descrever\": \"descrev\",\n  \"descrevera\": \"descrev\",\n  \"descreveu\": \"descrev\",\n  \"descrição\": \"descriçã\",\n  \"descrições\": \"descriçõ\",\n  \"descrita\": \"descrit\",\n  \"descritas\": \"descrit\",\n  \"descritivo\": \"descrit\",\n  \"descrito\": \"descrit\",\n  \"descubra\": \"descubr\",\n  \"descubram\": \"descubr\",\n  \"descubrir\": \"descubr\",\n  \"descubro\": \"descubr\",\n  \"descuido\": \"descu\",\n  \"descuidos\": \"descu\",\n  \"desculpa\": \"desculp\",\n  \"desculpada\": \"desculp\",\n  \"desculpas\": \"desculp\",\n  \"desculpava\": \"desculp\",\n  \"descumprido\": \"descumpr\",\n  \"descumprimento\": \"descumpr\",\n  \"descumprirem\": \"descumpr\",\n  \"descumpriu\": \"descumpr\",\n  \"desde\": \"desd\",\n  \"desditoso\": \"desdit\",\n  \"deseja\": \"desej\",\n  \"desejada\": \"desej\",\n  \"desejadas\": \"desej\",\n  \"desejado\": \"desej\",\n  \"desejam\": \"desej\",\n  \"desejando\": \"desej\",\n  \"desejar\": \"desej\",\n  \"desejarem\": \"desej\",\n  \"desejaria\": \"desej\",\n  \"desejava\": \"desej\",\n  \"desejável\": \"desej\",\n  \"desejo\": \"desej\",\n  \"desejos\": \"desej\",\n  \"desembarca\": \"desembarc\",\n  \"desembarcam\": \"desembarc\",\n  \"desembarcamos\": \"desembarc\",\n  \"desembarcar\": \"desembarc\",\n  \"desembarcará\": \"desembarc\",\n  \"desembarcaram\": \"desembarc\",\n  \"desembarcava\": \"desembarc\",\n  \"desembarcou\": \"desembarc\",\n  \"desembargador\": \"desembarg\",\n  \"desembargadores\": \"desembarg\",\n  \"desembarque\": \"desembarqu\",\n  \"desembocar\": \"desemboc\",\n  \"desembolsa\": \"desembols\",\n  \"desembolsando\": \"desembols\",\n  \"desembolsar\": \"desembols\",\n  \"desembolsaram\": \"desembols\",\n  \"desembolso\": \"desembols\",\n  \"desembolsou\": \"desembols\",\n  \"desempatou\": \"desempat\",\n  \"desempenha\": \"desempenh\",\n  \"desempenhando\": \"desempenh\",\n  \"desempenhar\": \"desempenh\",\n  \"desempenhavam\": \"desempenh\",\n  \"desempenho\": \"desempenh\",\n  \"desempenhou\": \"desempenh\",\n  \"desempregada\": \"desempreg\",\n  \"desempregadas\": \"desempreg\",\n  \"desempregado\": \"desempreg\",\n  \"desempregados\": \"desempreg\",\n  \"desemprego\": \"desempreg\",\n  \"desencadeado\": \"desencad\",\n  \"desencadear\": \"desencad\",\n  \"desencadearam\": \"desencad\",\n  \"desencadeia\": \"desencad\",\n  \"desencadeou\": \"desencad\",\n  \"desencanada\": \"desencan\",\n  \"desencanto\": \"desencant\",\n  \"desenfreada\": \"desenfr\",\n  \"desenfreado\": \"desenfr\",\n  \"desenganado\": \"desengan\",\n  \"desenganados\": \"desengan\",\n  \"desengavetou\": \"desengavet\",\n  \"desengonçado\": \"desengonc\",\n  \"desenhá\": \"desenh\",\n  \"desenhada\": \"desenh\",\n  \"desenhadas\": \"desenh\",\n  \"desenhado\": \"desenh\",\n  \"desenhar\": \"desenh\",\n  \"desenharam\": \"desenh\",\n  \"desenhava\": \"desenh\",\n  \"desenhista\": \"desenh\",\n  \"desenhistas\": \"desenh\",\n  \"desenho\": \"desenh\",\n  \"desenhos\": \"desenh\",\n  \"desenhou\": \"desenh\",\n  \"desenrola\": \"desenrol\",\n  \"desenrolada\": \"desenrol\",\n  \"desenrolar\": \"desenrol\",\n  \"desensibilizar\": \"desensibiliz\",\n  \"desentende\": \"desentend\",\n  \"desentender\": \"desentend\",\n  \"desentendimento\": \"desentend\",\n  \"desenterrarem\": \"desenterr\",\n  \"desentupido\": \"desentup\",\n  \"desentupir\": \"desentup\",\n  \"desenvoltura\": \"desenvoltur\",\n  \"desenvolva\": \"desenvolv\",\n  \"desenvolve\": \"desenvolv\",\n  \"desenvolvem\": \"desenvolv\",\n  \"desenvolvendo\": \"desenvolv\",\n  \"desenvolver\": \"desenvolv\",\n  \"desenvolveram\": \"desenvolv\",\n  \"desenvolveu\": \"desenvolv\",\n  \"desenvolvida\": \"desenvolv\",\n  \"desenvolvidas\": \"desenvolv\",\n  \"desenvolvido\": \"desenvolv\",\n  \"desenvolvidos\": \"desenvolv\",\n  \"desenvolvimentista\": \"desenvolviment\",\n  \"desenvolvimento\": \"desenvolv\",\n  \"desequilibra\": \"desequilibr\",\n  \"desequilibrado\": \"desequilibr\",\n  \"desequilibrados\": \"desequilibr\",\n  \"desequilíbrio\": \"desequilíbri\",\n  \"deserdavam\": \"deserd\",\n  \"deserta\": \"desert\",\n  \"deserto\": \"desert\",\n  \"desertores\": \"desertor\",\n  \"desesperada\": \"desesper\",\n  \"desesperadamente\": \"desesper\",\n  \"desesperado\": \"desesper\",\n  \"desesperadora\": \"desesper\",\n  \"desesperados\": \"desesper\",\n  \"desesperam\": \"desesp\",\n  \"desesperançados\": \"desesperanc\",\n  \"desesperando\": \"desesper\",\n  \"desesperar\": \"desesper\",\n  \"desesperem\": \"desesp\",\n  \"desespero\": \"desesper\",\n  \"desestatização\": \"desestatiz\",\n  \"desestimula\": \"desestimul\",\n  \"desestimulam\": \"desestimul\",\n  \"desestímulo\": \"desestímul\",\n  \"desestimulou\": \"desestimul\",\n  \"desfalcavam\": \"desfalc\",\n  \"desfalque\": \"desfalqu\",\n  \"desfavorável\": \"desfavor\",\n  \"desfaz\": \"desfaz\",\n  \"desfazem\": \"desfaz\",\n  \"desfazendo\": \"desfaz\",\n  \"desfazer\": \"desfaz\",\n  \"desfaziam\": \"desfaz\",\n  \"desfechada\": \"desfech\",\n  \"desfecho\": \"desfech\",\n  \"desfeita\": \"desfeit\",\n  \"desfeito\": \"desfeit\",\n  \"desferido\": \"desfer\",\n  \"desferir\": \"desfer\",\n  \"desferiu\": \"desfer\",\n  \"desfez\": \"desfez\",\n  \"desfiguração\": \"desfigur\",\n  \"desfila\": \"desfil\",\n  \"desfiladeiros\": \"desfiladeir\",\n  \"desfilando\": \"desfil\",\n  \"desfilar\": \"desfil\",\n  \"desfilaram\": \"desfil\",\n  \"desfilava\": \"desfil\",\n  \"desfile\": \"desfil\",\n  \"desfiles\": \"desfil\",\n  \"desfilou\": \"desfil\",\n  \"desfiou\": \"desfi\",\n  \"desfocadas\": \"desfoc\",\n  \"desfralda\": \"desfrald\",\n  \"desfraldada\": \"desfrald\",\n  \"desfraldadas\": \"desfrald\",\n  \"desfrutam\": \"desfrut\",\n  \"desfrutar\": \"desfrut\",\n  \"desgasta\": \"desgast\",\n  \"desgastadas\": \"desgast\",\n  \"desgastando\": \"desgast\",\n  \"desgastante\": \"desgast\",\n  \"desgastar\": \"desgast\",\n  \"desgaste\": \"desg\",\n  \"desgovernado\": \"desgovern\",\n  \"desgraça\": \"desgrac\",\n  \"desgraças\": \"desgrac\",\n  \"desgruda\": \"desgrud\",\n  \"desi\": \"des\",\n  \"desideologização\": \"desideologiz\",\n  \"desidério\": \"desidéri\",\n  \"desidratação\": \"desidrat\",\n  \"desidrogenase\": \"desidrogenas\",\n  \"design\": \"design\",\n  \"designa\": \"design\",\n  \"designação\": \"design\",\n  \"designada\": \"design\",\n  \"designado\": \"design\",\n  \"designados\": \"design\",\n  \"designar\": \"design\",\n  \"designava\": \"design\",\n  \"designer\": \"design\",\n  \"designers\": \"designers\",\n  \"designs\": \"designs\",\n  \"desigual\": \"desigual\",\n  \"desigualdade\": \"desigualdad\",\n  \"desigualdades\": \"desigualdad\",\n  \"desilusão\": \"desilusã\",\n  \"desilusões\": \"desilusõ\",\n  \"desimpedida\": \"desimped\",\n  \"desimportante\": \"desimport\",\n  \"desincompatibilização\": \"desincompatibiliz\",\n  \"desincompatibilizar\": \"desincompatibiliz\",\n  \"desinformação\": \"desinform\",\n  \"desinformadas\": \"desinform\",\n  \"desinibida\": \"desinib\",\n  \"desinteligência\": \"desinteligent\",\n  \"desinteressada\": \"desinteress\",\n  \"desinteressado\": \"desinteress\",\n  \"desinteressam\": \"desinteress\",\n  \"desintoxicação\": \"desintoxic\",\n  \"desiste\": \"des\",\n  \"desistência\": \"desistent\",\n  \"desisti\": \"desist\",\n  \"desistiam\": \"desist\",\n  \"desistindo\": \"desist\",\n  \"desistir\": \"desist\",\n  \"desistiram\": \"desist\",\n  \"desistiria\": \"desist\",\n  \"desistisse\": \"desist\",\n  \"desistiu\": \"desist\",\n  \"desisto\": \"desist\",\n  \"deslanchar\": \"deslanch\",\n  \"desleal\": \"desleal\",\n  \"desleixado\": \"desleix\",\n  \"desligado\": \"deslig\",\n  \"desligados\": \"deslig\",\n  \"desligamento\": \"deslig\",\n  \"desligar\": \"deslig\",\n  \"desligará\": \"deslig\",\n  \"desligaram\": \"deslig\",\n  \"desligaria\": \"deslig\",\n  \"desligassem\": \"deslig\",\n  \"desligo\": \"deslig\",\n  \"desligou\": \"deslig\",\n  \"desliguei\": \"desligu\",\n  \"deslise\": \"deslis\",\n  \"deslizando\": \"desliz\",\n  \"deslizar\": \"desliz\",\n  \"deslize\": \"desliz\",\n  \"deslizes\": \"desliz\",\n  \"desloca\": \"desloc\",\n  \"deslocada\": \"desloc\",\n  \"deslocados\": \"desloc\",\n  \"deslocamento\": \"desloc\",\n  \"deslocar\": \"desloc\",\n  \"deslocava\": \"desloc\",\n  \"deslocou\": \"desloc\",\n  \"deslumbrada\": \"deslumbr\",\n  \"deslumbrado\": \"deslumbr\",\n  \"deslumbrados\": \"deslumbr\",\n  \"deslumbrante\": \"deslumbr\",\n  \"deslumbrar\": \"deslumbr\",\n  \"desmaiar\": \"desmai\",\n  \"desmaiava\": \"desmai\",\n  \"desmaiavam\": \"desmai\",\n  \"desmaios\": \"desmai\",\n  \"desmaiou\": \"desmai\",\n  \"desmanchar\": \"desmanch\",\n  \"desmanche\": \"desmanch\",\n  \"desmantelamento\": \"desmantel\",\n  \"desmantelar\": \"desmantel\",\n  \"desmar\": \"desm\",\n  \"desmascaramento\": \"desmascar\",\n  \"desmascarar\": \"desmascar\",\n  \"desmata\": \"desmat\",\n  \"desmatadas\": \"desmat\",\n  \"desmatamento\": \"desmat\",\n  \"desmatamentos\": \"desmat\",\n  \"desmatando\": \"desmat\",\n  \"desmedidas\": \"desmed\",\n  \"desmembram\": \"desmembr\",\n  \"desmente\": \"desment\",\n  \"desmentindo\": \"desment\",\n  \"desmentir\": \"desment\",\n  \"desmerece\": \"desmerec\",\n  \"desmesuradamente\": \"desmesur\",\n  \"desmilitarizada\": \"desmilitariz\",\n  \"desmistificação\": \"desmistific\",\n  \"desmistificar\": \"desmistific\",\n  \"desmitificação\": \"desmitific\",\n  \"desmontando\": \"desmont\",\n  \"desmontar\": \"desmont\",\n  \"desmontaram\": \"desmont\",\n  \"desmoralização\": \"desmoraliz\",\n  \"desmoronou\": \"desmoron\",\n  \"desmunhecar\": \"desmunhec\",\n  \"desnatado\": \"desnat\",\n  \"desnecessária\": \"desnecessár\",\n  \"desnecessárias\": \"desnecessár\",\n  \"desnecessário\": \"desnecessári\",\n  \"desnecessários\": \"desnecessári\",\n  \"desnorteamento\": \"desnort\",\n  \"desnuclearizada\": \"desnucleariz\",\n  \"desnutrição\": \"desnutriçã\",\n  \"desobedeceu\": \"desobedec\",\n  \"desobediências\": \"desobedient\",\n  \"desobediente\": \"desobedient\",\n  \"desobese\": \"desobes\",\n  \"desocupadas\": \"desocup\",\n  \"desodorados\": \"desodor\",\n  \"desodorante\": \"desodor\",\n  \"desodorantes\": \"desodor\",\n  \"desolado\": \"desol\",\n  \"desonesta\": \"desonest\",\n  \"desonestidade\": \"desonest\",\n  \"desonesto\": \"desonest\",\n  \"desonrosa\": \"desonr\",\n  \"desordem\": \"desord\",\n  \"desordenadas\": \"desorden\",\n  \"desordenado\": \"desorden\",\n  \"desorganizadas\": \"desorganiz\",\n  \"desorientação\": \"desorient\",\n  \"desorientada\": \"desorient\",\n  \"desorientado\": \"desorient\",\n  \"desorientados\": \"desorient\",\n  \"desorientou\": \"desorient\",\n  \"desoxirribonucléico\": \"desoxirribonucl\",\n  \"despacha\": \"despach\",\n  \"despachá\": \"despach\",\n  \"despachada\": \"despach\",\n  \"despachado\": \"despach\",\n  \"despachados\": \"despach\",\n  \"despachar\": \"despach\",\n  \"despachara\": \"despach\",\n  \"despachava\": \"despach\",\n  \"despachei\": \"despach\",\n  \"despacho\": \"despach\",\n  \"despachos\": \"despach\",\n  \"despachou\": \"despach\",\n  \"despe\": \"desp\",\n  \"despedaçada\": \"despedac\",\n  \"despedaçando\": \"despedac\",\n  \"despedida\": \"desped\",\n  \"despedidas\": \"desped\",\n  \"despedido\": \"desped\",\n  \"despedir\": \"desped\",\n  \"despediu\": \"desped\",\n  \"despeito\": \"despeit\",\n  \"despeja\": \"despej\",\n  \"despejados\": \"despej\",\n  \"despejando\": \"despej\",\n  \"despejar\": \"despej\",\n  \"despejo\": \"despej\",\n  \"despejou\": \"despej\",\n  \"despencando\": \"despenc\",\n  \"despencaram\": \"despenc\",\n  \"despencou\": \"despenc\",\n  \"despender\": \"despend\",\n  \"despensas\": \"despens\",\n  \"despercebida\": \"desperceb\",\n  \"despercebidas\": \"desperceb\",\n  \"despercebido\": \"desperceb\",\n  \"despercebidos\": \"desperceb\",\n  \"desperdiça\": \"desperdic\",\n  \"desperdiçando\": \"desperdic\",\n  \"desperdiçar\": \"desperdic\",\n  \"desperdício\": \"desperdíci\",\n  \"desperdiçou\": \"desperdic\",\n  \"desperta\": \"despert\",\n  \"despertado\": \"despert\",\n  \"despertando\": \"despert\",\n  \"despertar\": \"despert\",\n  \"despertaram\": \"despert\",\n  \"desperte\": \"despert\",\n  \"desperto\": \"despert\",\n  \"despertou\": \"despert\",\n  \"despesa\": \"despes\",\n  \"despesas\": \"despes\",\n  \"despindo\": \"desp\",\n  \"despistar\": \"despist\",\n  \"desplugados\": \"desplug\",\n  \"despojar\": \"despoj\",\n  \"despolitizada\": \"despolitiz\",\n  \"desponta\": \"despont\",\n  \"despontar\": \"despont\",\n  \"despontaram\": \"despont\",\n  \"despontava\": \"despont\",\n  \"despontou\": \"despont\",\n  \"desportos\": \"desport\",\n  \"déspotas\": \"déspot\",\n  \"desprendem\": \"desprend\",\n  \"despreparada\": \"desprepar\",\n  \"despreparado\": \"desprepar\",\n  \"despreparados\": \"desprepar\",\n  \"despressurização\": \"despressuriz\",\n  \"desprestigiado\": \"desprestigi\",\n  \"despretensiosamente\": \"despretensi\",\n  \"despretensioso\": \"despretensi\",\n  \"desprevenidos\": \"despreven\",\n  \"desprezar\": \"desprez\",\n  \"desprezível\": \"desprez\",\n  \"desprezo\": \"desprez\",\n  \"desprezou\": \"desprez\",\n  \"desproporcionais\": \"desproporcion\",\n  \"despropositada\": \"desproposit\",\n  \"desprotegida\": \"desproteg\",\n  \"desprotegidas\": \"desproteg\",\n  \"desprovido\": \"desprov\",\n  \"despudor\": \"despudor\",\n  \"desqualificada\": \"desqualific\",\n  \"desqualificado\": \"desqualific\",\n  \"desquitada\": \"desquit\",\n  \"desquitado\": \"desquit\",\n  \"desregulamentação\": \"desregulament\",\n  \"desrespeita\": \"desrespeit\",\n  \"desrespeitassem\": \"desrespeit\",\n  \"desrespeito\": \"desrespeit\",\n  \"dessa\": \"dess\",\n  \"dessas\": \"dess\",\n  \"desse\": \"dess\",\n  \"dessem\": \"dess\",\n  \"desserve\": \"desserv\",\n  \"desses\": \"dess\",\n  \"desta\": \"dest\",\n  \"destaca\": \"destac\",\n  \"destacada\": \"destac\",\n  \"destacado\": \"destac\",\n  \"destacam\": \"destac\",\n  \"destacando\": \"destac\",\n  \"destacar\": \"destac\",\n  \"destacaram\": \"destac\",\n  \"destacassem\": \"destac\",\n  \"destacava\": \"destac\",\n  \"destacavam\": \"destac\",\n  \"destacável\": \"destac\",\n  \"destacou\": \"destac\",\n  \"destaque\": \"destaqu\",\n  \"destaques\": \"destaqu\",\n  \"destas\": \"dest\",\n  \"deste\": \"dest\",\n  \"destelhar\": \"destelh\",\n  \"destemida\": \"destem\",\n  \"destemido\": \"destem\",\n  \"destes\": \"dest\",\n  \"destilar\": \"destil\",\n  \"destilarias\": \"destil\",\n  \"destina\": \"destin\",\n  \"destinada\": \"destin\",\n  \"destinadas\": \"destin\",\n  \"destinado\": \"destin\",\n  \"destinados\": \"destin\",\n  \"destinam\": \"destin\",\n  \"destinamos\": \"destin\",\n  \"destinará\": \"destin\",\n  \"destinava\": \"destin\",\n  \"destino\": \"destin\",\n  \"destinos\": \"destin\",\n  \"destinou\": \"destin\",\n  \"destituição\": \"destituiçã\",\n  \"destoa\": \"desto\",\n  \"destoam\": \"desto\",\n  \"destrambelhados\": \"destrambelh\",\n  \"destrincha\": \"destrinch\",\n  \"destroçados\": \"destroc\",\n  \"destroços\": \"destroc\",\n  \"destroçou\": \"destroc\",\n  \"destrói\": \"destró\",\n  \"destronou\": \"destron\",\n  \"destruí\": \"destru\",\n  \"destruição\": \"destruiçã\",\n  \"destruída\": \"destruíd\",\n  \"destruídas\": \"destruíd\",\n  \"destruído\": \"destruíd\",\n  \"destruidor\": \"destruidor\",\n  \"destruídos\": \"destruíd\",\n  \"destruímos\": \"destruím\",\n  \"destruindo\": \"destru\",\n  \"destruir\": \"destru\",\n  \"destruirá\": \"destru\",\n  \"destruísse\": \"destruíss\",\n  \"destruiu\": \"destru\",\n  \"destrutiva\": \"destrut\",\n  \"destrutivos\": \"destrut\",\n  \"desumano\": \"desuman\",\n  \"desuso\": \"desus\",\n  \"desvaloriza\": \"desvaloriz\",\n  \"desvalorização\": \"desvaloriz\",\n  \"desvalorizados\": \"desvaloriz\",\n  \"desvantagem\": \"desvantag\",\n  \"desvantagens\": \"desvantagens\",\n  \"desvantajosas\": \"desvantaj\",\n  \"desvarios\": \"desvari\",\n  \"desvencilhar\": \"desvencilh\",\n  \"desvenda\": \"desvend\",\n  \"desvendados\": \"desvend\",\n  \"desvendamos\": \"desvend\",\n  \"desvendar\": \"desvend\",\n  \"desviada\": \"desvi\",\n  \"desviados\": \"desvi\",\n  \"desviar\": \"desvi\",\n  \"desviei\": \"desvi\",\n  \"desviem\": \"desvi\",\n  \"desvinculados\": \"desvincul\",\n  \"desvio\": \"desvi\",\n  \"desvios\": \"desvi\",\n  \"desviou\": \"desvi\",\n  \"desvirtuar\": \"desvirtu\",\n  \"details\": \"details\",\n  \"detalha\": \"detalh\",\n  \"detalhada\": \"detalh\",\n  \"detalhadas\": \"detalh\",\n  \"detalhadíssima\": \"detalhadíssim\",\n  \"detalhar\": \"detalh\",\n  \"detalharmos\": \"detalh\",\n  \"detalhe\": \"detalh\",\n  \"detalhes\": \"detalh\",\n  \"detalhista\": \"detalh\",\n  \"detalhistas\": \"detalh\",\n  \"detecção\": \"detecçã\",\n  \"detecta\": \"detect\",\n  \"detectada\": \"detect\",\n  \"detectadas\": \"detect\",\n  \"detectado\": \"detect\",\n  \"detectados\": \"detect\",\n  \"detectam\": \"detect\",\n  \"detectar\": \"detect\",\n  \"detectaram\": \"detect\",\n  \"detectaria\": \"detect\",\n  \"detectável\": \"detect\",\n  \"detector\": \"detector\",\n  \"detectores\": \"detector\",\n  \"detectou\": \"detect\",\n  \"detém\": \"detém\",\n  \"detenção\": \"detençã\",\n  \"detenha\": \"detenh\",\n  \"detentas\": \"detent\",\n  \"detentor\": \"detentor\",\n  \"detentora\": \"detentor\",\n  \"deter\": \"det\",\n  \"deteriora\": \"deterior\",\n  \"deterioração\": \"deterior\",\n  \"determina\": \"determin\",\n  \"determinação\": \"determin\",\n  \"determinações\": \"determin\",\n  \"determinada\": \"determin\",\n  \"determinadas\": \"determin\",\n  \"determinado\": \"determin\",\n  \"determinados\": \"determin\",\n  \"determinam\": \"determin\",\n  \"determinando\": \"determin\",\n  \"determinante\": \"determin\",\n  \"determinantes\": \"determin\",\n  \"determinar\": \"determin\",\n  \"determinara\": \"determin\",\n  \"determinasse\": \"determin\",\n  \"determinava\": \"determin\",\n  \"determinou\": \"determin\",\n  \"detesta\": \"detest\",\n  \"detestam\": \"detest\",\n  \"detestem\": \"detest\",\n  \"detesto\": \"detest\",\n  \"detetive\": \"detetiv\",\n  \"detetives\": \"detetiv\",\n  \"detida\": \"det\",\n  \"detido\": \"det\",\n  \"detinha\": \"detinh\",\n  \"detinham\": \"detinh\",\n  \"detona\": \"deton\",\n  \"detonação\": \"deton\",\n  \"detonada\": \"deton\",\n  \"detonadas\": \"deton\",\n  \"detonadores\": \"deton\",\n  \"detonam\": \"deton\",\n  \"detonar\": \"deton\",\n  \"detour\": \"detour\",\n  \"detran\": \"detran\",\n  \"detrans\": \"detrans\",\n  \"detratores\": \"detrator\",\n  \"detrimento\": \"detriment\",\n  \"detroit\": \"detroit\",\n  \"deturpação\": \"deturp\",\n  \"deturpadas\": \"deturp\",\n  \"deu\": \"deu\",\n  \"deus\": \"deus\",\n  \"deusa\": \"deus\",\n  \"deuses\": \"deus\",\n  \"deva\": \"dev\",\n  \"devagar\": \"devag\",\n  \"devagarinho\": \"devagarinh\",\n  \"devassa\": \"devass\",\n  \"devassada\": \"devass\",\n  \"devastação\": \"devast\",\n  \"devastado\": \"devast\",\n  \"devastador\": \"devast\",\n  \"devastadora\": \"devast\",\n  \"devastadores\": \"devast\",\n  \"devastam\": \"devast\",\n  \"devastando\": \"devast\",\n  \"devaste\": \"dev\",\n  \"devastou\": \"devast\",\n  \"deve\": \"dev\",\n  \"devedor\": \"devedor\",\n  \"devem\": \"dev\",\n  \"devemos\": \"dev\",\n  \"devendo\": \"dev\",\n  \"dever\": \"dev\",\n  \"deverá\": \"dev\",\n  \"deverão\": \"dev\",\n  \"deveres\": \"dev\",\n  \"deveria\": \"dev\",\n  \"deveriam\": \"dev\",\n  \"deveríamos\": \"dev\",\n  \"devesse\": \"dev\",\n  \"devêssemos\": \"dev\",\n  \"devia\": \"dev\",\n  \"deviam\": \"dev\",\n  \"devida\": \"dev\",\n  \"devidamente\": \"devid\",\n  \"devido\": \"dev\",\n  \"devidos\": \"dev\",\n  \"devo\": \"dev\",\n  \"devoção\": \"devoçã\",\n  \"devolução\": \"devoluçã\",\n  \"devoluta\": \"devolut\",\n  \"devolve\": \"devolv\",\n  \"devolvem\": \"devolv\",\n  \"devolvendo\": \"devolv\",\n  \"devolver\": \"devolv\",\n  \"devolveram\": \"devolv\",\n  \"devolveu\": \"devolv\",\n  \"devolvido\": \"devolv\",\n  \"devolvidos\": \"devolv\",\n  \"devora\": \"devor\",\n  \"devorado\": \"devor\",\n  \"devoravam\": \"devor\",\n  \"devore\": \"devor\",\n  \"dévoré\": \"dévor\",\n  \"devotados\": \"devot\",\n  \"devotos\": \"devot\",\n  \"dewulf\": \"dewulf\",\n  \"dexfenfluramina\": \"dexfenfluramin\",\n  \"dez\": \"dez\",\n  \"dezembro\": \"dezembr\",\n  \"dezena\": \"dezen\",\n  \"dezenas\": \"dezen\",\n  \"dezenove\": \"dezenov\",\n  \"dezesseis\": \"dezess\",\n  \"dezessete\": \"dezesset\",\n  \"dezoito\": \"dezoit\",\n  \"df\": \"df\",\n  \"di\": \"di\",\n  \"dia\": \"dia\",\n  \"diabetes\": \"diabet\",\n  \"diabética\": \"diabét\",\n  \"diabético\": \"diabét\",\n  \"diablo\": \"diabl\",\n  \"diabo\": \"diab\",\n  \"diabólica\": \"diaból\",\n  \"diabólico\": \"diaból\",\n  \"diabos\": \"diab\",\n  \"diácono\": \"diácon\",\n  \"diagnosis\": \"diagnos\",\n  \"diagnostica\": \"diagnost\",\n  \"diagnosticá\": \"diagnostic\",\n  \"diagnosticado\": \"diagnostic\",\n  \"diagnosticam\": \"diagnostic\",\n  \"diagnosticando\": \"diagnostic\",\n  \"diagnosticar\": \"diagnostic\",\n  \"diagnóstico\": \"diagnóst\",\n  \"diagnósticos\": \"diagnóst\",\n  \"diagnosticou\": \"diagnostic\",\n  \"diagonal\": \"diagonal\",\n  \"diagramação\": \"diagram\",\n  \"diagramadora\": \"diagram\",\n  \"dialdata\": \"dialdat\",\n  \"dialética\": \"dialét\",\n  \"dialetos\": \"dialet\",\n  \"dialoga\": \"dialog\",\n  \"diálogo\": \"diálog\",\n  \"diálogos\": \"diálog\",\n  \"diamante\": \"diamant\",\n  \"diâmetro\": \"diâmetr\",\n  \"diana\": \"dian\",\n  \"diante\": \"diant\",\n  \"dianteira\": \"dianteir\",\n  \"diária\": \"diár\",\n  \"diariamente\": \"diari\",\n  \"diárias\": \"diár\",\n  \"diário\": \"diári\",\n  \"diários\": \"diári\",\n  \"diarista\": \"diarist\",\n  \"diarréia\": \"diarr\",\n  \"diarréias\": \"diarr\",\n  \"dias\": \"dias\",\n  \"diasa\": \"dias\",\n  \"diaz\": \"diaz\",\n  \"dica\": \"dic\",\n  \"dicaprio\": \"dicapri\",\n  \"dicas\": \"dic\",\n  \"dicção\": \"dicçã\",\n  \"didática\": \"didát\",\n  \"didáticas\": \"didát\",\n  \"didático\": \"didát\",\n  \"didáticos\": \"didát\",\n  \"didi\": \"did\",\n  \"dieckman\": \"dieckman\",\n  \"dieese\": \"diees\",\n  \"diego\": \"dieg\",\n  \"diegues\": \"diegu\",\n  \"diempax\": \"diempax\",\n  \"diesel\": \"diesel\",\n  \"diet\": \"diet\",\n  \"dieta\": \"diet\",\n  \"dietas\": \"diet\",\n  \"dietilpropiona\": \"dietilpropion\",\n  \"difamação\": \"difam\",\n  \"difere\": \"difer\",\n  \"diferem\": \"dif\",\n  \"diferença\": \"diferenc\",\n  \"diferenças\": \"diferenc\",\n  \"diferencia\": \"diferenc\",\n  \"diferenciação\": \"diferenc\",\n  \"diferenciada\": \"diferenc\",\n  \"diferenciadas\": \"diferenc\",\n  \"diferenciado\": \"diferenc\",\n  \"diferenciais\": \"diferenc\",\n  \"diferencial\": \"diferencial\",\n  \"diferenciam\": \"diferenc\",\n  \"diferenciar\": \"diferenc\",\n  \"diferente\": \"diferent\",\n  \"diferentemente\": \"diferent\",\n  \"diferentes\": \"diferent\",\n  \"difíceis\": \"difíc\",\n  \"difícieis\": \"difíc\",\n  \"difícil\": \"difícil\",\n  \"dificílimas\": \"dificílim\",\n  \"dificílimo\": \"dificílim\",\n  \"dificilmente\": \"dificil\",\n  \"dificulade\": \"dificulad\",\n  \"dificuldade\": \"dificuldad\",\n  \"dificuldades\": \"dificuldad\",\n  \"dificulta\": \"dificult\",\n  \"dificultam\": \"dificult\",\n  \"dificultar\": \"dificult\",\n  \"dificultará\": \"dificult\",\n  \"dificultava\": \"dificult\",\n  \"difunde\": \"difund\",\n  \"difundem\": \"difund\",\n  \"difundida\": \"difund\",\n  \"difundido\": \"difund\",\n  \"difusão\": \"difusã\",\n  \"diga\": \"dig\",\n  \"digamos\": \"dig\",\n  \"digerida\": \"diger\",\n  \"digerindo\": \"diger\",\n  \"digestão\": \"digestã\",\n  \"digestivo\": \"digest\",\n  \"digimarc\": \"digimarc\",\n  \"digitais\": \"digit\",\n  \"digital\": \"digital\",\n  \"digitalizada\": \"digitaliz\",\n  \"digitalizar\": \"digitaliz\",\n  \"digite\": \"digit\",\n  \"dígitos\": \"dígit\",\n  \"digna\": \"dign\",\n  \"dignamente\": \"dign\",\n  \"dignas\": \"dign\",\n  \"dignidade\": \"dignidad\",\n  \"digno\": \"dign\",\n  \"dignos\": \"dign\",\n  \"digo\": \"dig\",\n  \"diguem\": \"digu\",\n  \"dilacerado\": \"dilacer\",\n  \"dilatador\": \"dilat\",\n  \"dilatadores\": \"dilat\",\n  \"dilatar\": \"dilat\",\n  \"dilbert\": \"dilbert\",\n  \"dilema\": \"dilem\",\n  \"diligentemente\": \"diligent\",\n  \"dillon\": \"dillon\",\n  \"dilly\": \"dilly\",\n  \"dilton\": \"dilton\",\n  \"diluídas\": \"diluíd\",\n  \"diluir\": \"dilu\",\n  \"dilza\": \"dilz\",\n  \"dimensão\": \"dimensã\",\n  \"dimensionar\": \"dimension\",\n  \"dimensões\": \"dimensõ\",\n  \"dimenstein\": \"dimenstein\",\n  \"dimes\": \"dim\",\n  \"diminuem\": \"diminu\",\n  \"diminui\": \"diminu\",\n  \"diminuição\": \"diminuiçã\",\n  \"diminuído\": \"diminuíd\",\n  \"diminuindo\": \"diminu\",\n  \"diminuir\": \"diminu\",\n  \"diminuíram\": \"diminuír\",\n  \"diminuísse\": \"diminuíss\",\n  \"diminuiu\": \"diminu\",\n  \"dinamarquês\": \"dinamarquês\",\n  \"dinamarquesa\": \"dinamarques\",\n  \"dinâmica\": \"dinâm\",\n  \"dinâmicas\": \"dinâm\",\n  \"dinâmico\": \"dinâm\",\n  \"dinamismo\": \"dinam\",\n  \"dínamo\": \"dínam\",\n  \"dinastia\": \"dinast\",\n  \"dinda\": \"dind\",\n  \"dinheirama\": \"dinheiram\",\n  \"dinheirão\": \"dinh\",\n  \"dinheirinho\": \"dinheirinh\",\n  \"dinheiro\": \"dinheir\",\n  \"diniz\": \"diniz\",\n  \"dino\": \"din\",\n  \"dinorah\": \"dinorah\",\n  \"dinos\": \"din\",\n  \"dinossauro\": \"dinossaur\",\n  \"dinossauros\": \"dinossaur\",\n  \"diocese\": \"dioces\",\n  \"dioceses\": \"dioces\",\n  \"diogo\": \"diog\",\n  \"dionisíacas\": \"dionisíac\",\n  \"dionísio\": \"dionísi\",\n  \"dionysius\": \"dionysius\",\n  \"dior\": \"dior\",\n  \"dios\": \"dios\",\n  \"diploma\": \"diplom\",\n  \"diplomacia\": \"diplomac\",\n  \"diplomas\": \"diplom\",\n  \"diplomata\": \"diplomat\",\n  \"diplomatas\": \"diplomat\",\n  \"diplomática\": \"diplomát\",\n  \"diplomáticas\": \"diplomát\",\n  \"dirá\": \"dir\",\n  \"dirão\": \"dirã\",\n  \"dirceu\": \"dirc\",\n  \"direção\": \"direçã\",\n  \"direciona\": \"direcion\",\n  \"direcionado\": \"direcion\",\n  \"direcional\": \"direcional\",\n  \"direciono\": \"direcion\",\n  \"direções\": \"direçõ\",\n  \"direita\": \"direit\",\n  \"direitinho\": \"direitinh\",\n  \"direitista\": \"direit\",\n  \"direito\": \"direit\",\n  \"direitos\": \"direit\",\n  \"direta\": \"diret\",\n  \"diretamente\": \"diret\",\n  \"diretas\": \"diret\",\n  \"direto\": \"diret\",\n  \"diretor\": \"diretor\",\n  \"diretora\": \"diretor\",\n  \"diretoras\": \"diretor\",\n  \"diretores\": \"diretor\",\n  \"diretoria\": \"diretor\",\n  \"diretorias\": \"diretor\",\n  \"diretórios\": \"diretóri\",\n  \"diretos\": \"diret\",\n  \"diretrizes\": \"diretriz\",\n  \"diria\": \"dir\",\n  \"dirige\": \"dirig\",\n  \"dirigem\": \"dirig\",\n  \"dirigente\": \"dirigent\",\n  \"dirigentes\": \"dirigent\",\n  \"dirigi\": \"dirig\",\n  \"dirigia\": \"dirig\",\n  \"dirigiam\": \"dirig\",\n  \"dirigida\": \"dirig\",\n  \"dirigidas\": \"dirig\",\n  \"dirigido\": \"dirig\",\n  \"dirigidos\": \"dirig\",\n  \"dirigindo\": \"dirig\",\n  \"dirigir\": \"dirig\",\n  \"dirigiu\": \"dirig\",\n  \"dirijam\": \"dirij\",\n  \"dirijo\": \"dirij\",\n  \"dirimir\": \"dirim\",\n  \"dirty\": \"dirty\",\n  \"discagem\": \"discag\",\n  \"discar\": \"disc\",\n  \"discernimento\": \"discern\",\n  \"disciplina\": \"disciplin\",\n  \"disciplinada\": \"disciplin\",\n  \"disciplinado\": \"disciplin\",\n  \"disciplinador\": \"disciplin\",\n  \"disciplinar\": \"disciplin\",\n  \"disciplinou\": \"disciplin\",\n  \"discípulo\": \"discípul\",\n  \"discípulos\": \"discípul\",\n  \"disco\": \"disc\",\n  \"discografia\": \"discograf\",\n  \"discordam\": \"discord\",\n  \"discordâncias\": \"discordânc\",\n  \"discordar\": \"discord\",\n  \"discórdia\": \"discórd\",\n  \"discordo\": \"discord\",\n  \"discos\": \"disc\",\n  \"discoteca\": \"discotec\",\n  \"discotecas\": \"discotec\",\n  \"discovery\": \"discovery\",\n  \"discrepância\": \"discrep\",\n  \"discreta\": \"discret\",\n  \"discretamente\": \"discret\",\n  \"discretas\": \"discret\",\n  \"discreto\": \"discret\",\n  \"discretos\": \"discret\",\n  \"discrição\": \"discriçã\",\n  \"discrimina\": \"discrimin\",\n  \"discriminação\": \"discrimin\",\n  \"discriminações\": \"discrimin\",\n  \"discriminada\": \"discrimin\",\n  \"discriminam\": \"discrimin\",\n  \"discriminar\": \"discrimin\",\n  \"discrografia\": \"discrograf\",\n  \"discursão\": \"discursã\",\n  \"discursar\": \"discurs\",\n  \"discurso\": \"discurs\",\n  \"discursos\": \"discurs\",\n  \"discussão\": \"discussã\",\n  \"discussões\": \"discussõ\",\n  \"discuta\": \"discut\",\n  \"discute\": \"discut\",\n  \"discutem\": \"discut\",\n  \"discuti\": \"discut\",\n  \"discutida\": \"discut\",\n  \"discutido\": \"discut\",\n  \"discutimos\": \"discut\",\n  \"discutindo\": \"discut\",\n  \"discutir\": \"discut\",\n  \"discutiram\": \"discut\",\n  \"discutirmos\": \"discut\",\n  \"discutiu\": \"discut\",\n  \"discutível\": \"discut\",\n  \"discuto\": \"discut\",\n  \"disfarça\": \"disfarc\",\n  \"disfarçada\": \"disfarc\",\n  \"disfarçado\": \"disfarc\",\n  \"disfarçados\": \"disfarc\",\n  \"disfarçam\": \"disfarc\",\n  \"disfarçando\": \"disfarc\",\n  \"disfarçar\": \"disfarc\",\n  \"disfarce\": \"disfarc\",\n  \"disfarces\": \"disfarc\",\n  \"disfarçou\": \"disfarc\",\n  \"disfunções\": \"disfunçõ\",\n  \"disktem\": \"diskt\",\n  \"disney\": \"disney\",\n  \"disneylândia\": \"disneylând\",\n  \"disneyworld\": \"disneyworld\",\n  \"dispara\": \"disp\",\n  \"disparada\": \"dispar\",\n  \"disparado\": \"dispar\",\n  \"disparados\": \"dispar\",\n  \"disparam\": \"disp\",\n  \"disparando\": \"dispar\",\n  \"dispararam\": \"dispar\",\n  \"disparava\": \"dispar\",\n  \"díspares\": \"dísp\",\n  \"disparidade\": \"dispar\",\n  \"disparidades\": \"dispar\",\n  \"disparo\": \"dispar\",\n  \"disparos\": \"dispar\",\n  \"disparou\": \"dispar\",\n  \"dispendioso\": \"dispendi\",\n  \"dispensa\": \"dispens\",\n  \"dispensada\": \"dispens\",\n  \"dispensado\": \"dispens\",\n  \"dispensados\": \"dispens\",\n  \"dispensam\": \"dispens\",\n  \"dispensar\": \"dispens\",\n  \"dispensaram\": \"dispens\",\n  \"dispensáveis\": \"dispens\",\n  \"dispensável\": \"dispens\",\n  \"dispenso\": \"dispens\",\n  \"dispensou\": \"dispens\",\n  \"displicentemente\": \"displicent\",\n  \"dispõe\": \"dispõ\",\n  \"dispõem\": \"dispõ\",\n  \"dispomos\": \"dispom\",\n  \"dispondo\": \"dispond\",\n  \"disponibilidade\": \"disponibil\",\n  \"disponibilizado\": \"disponibiliz\",\n  \"disponíveis\": \"disponív\",\n  \"disponível\": \"dispon\",\n  \"dispor\": \"dispor\",\n  \"dispôs\": \"dispôs\",\n  \"disposição\": \"disposiçã\",\n  \"dispositivos\": \"disposit\",\n  \"disposta\": \"dispost\",\n  \"dispostas\": \"dispost\",\n  \"disposto\": \"dispost\",\n  \"dispostos\": \"dispost\",\n  \"dispunha\": \"dispunh\",\n  \"dispunham\": \"dispunh\",\n  \"dispuseram\": \"dispus\",\n  \"disputa\": \"disput\",\n  \"disputada\": \"disput\",\n  \"disputado\": \"disput\",\n  \"disputados\": \"disput\",\n  \"disputam\": \"disput\",\n  \"disputar\": \"disput\",\n  \"disputará\": \"disput\",\n  \"disputaram\": \"disput\",\n  \"disputas\": \"disput\",\n  \"disputou\": \"disput\",\n  \"disquete\": \"disquet\",\n  \"disse\": \"diss\",\n  \"dissecação\": \"dissec\",\n  \"dissecando\": \"dissec\",\n  \"dissecar\": \"dissec\",\n  \"disseminado\": \"dissemin\",\n  \"disseminados\": \"dissemin\",\n  \"disser\": \"diss\",\n  \"dissera\": \"diss\",\n  \"disseram\": \"diss\",\n  \"disserem\": \"diss\",\n  \"dissesse\": \"diss\",\n  \"dissidência\": \"dissident\",\n  \"dissidências\": \"dissident\",\n  \"dissidentes\": \"dissident\",\n  \"dissimulou\": \"dissimul\",\n  \"disso\": \"diss\",\n  \"dissociada\": \"dissoc\",\n  \"dissolver\": \"dissolv\",\n  \"dissolveu\": \"dissolv\",\n  \"dissonância\": \"disson\",\n  \"dissuadido\": \"dissuad\",\n  \"distância\": \"distânc\",\n  \"distanciado\": \"distanc\",\n  \"distanciamento\": \"distanc\",\n  \"distâncias\": \"distânc\",\n  \"distante\": \"distant\",\n  \"distantes\": \"distant\",\n  \"distensão\": \"distensã\",\n  \"distinção\": \"distinçã\",\n  \"distinguido\": \"distingu\",\n  \"distinguir\": \"distingu\",\n  \"distingüir\": \"distingü\",\n  \"distintamente\": \"distint\",\n  \"distintas\": \"distint\",\n  \"distintos\": \"distint\",\n  \"disto\": \"dist\",\n  \"distorção\": \"distorçã\",\n  \"distorce\": \"distorc\",\n  \"distorcem\": \"distorc\",\n  \"distorcendo\": \"distorc\",\n  \"distorcida\": \"distorc\",\n  \"distorcidas\": \"distorc\",\n  \"distorcido\": \"distorc\",\n  \"distorções\": \"distorçõ\",\n  \"distração\": \"distraçã\",\n  \"distribuem\": \"distribu\",\n  \"distribui\": \"distribu\",\n  \"distribuía\": \"distribuí\",\n  \"distribuíam\": \"distribuí\",\n  \"distribuição\": \"distribuiçã\",\n  \"distribuída\": \"distribuíd\",\n  \"distribuídas\": \"distribuíd\",\n  \"distribuidora\": \"distribuidor\",\n  \"distribuidoras\": \"distribuidor\",\n  \"distribuídos\": \"distribuíd\",\n  \"distribuindo\": \"distribu\",\n  \"distribuir\": \"distribu\",\n  \"distribuiu\": \"distribu\",\n  \"distrito\": \"distrit\",\n  \"distúrbios\": \"distúrbi\",\n  \"dita\": \"dit\",\n  \"ditada\": \"dit\",\n  \"ditado\": \"dit\",\n  \"ditador\": \"ditador\",\n  \"ditadores\": \"ditador\",\n  \"ditadura\": \"ditadur\",\n  \"ditaduras\": \"ditadur\",\n  \"ditas\": \"dit\",\n  \"ditatorial\": \"ditatorial\",\n  \"ditatorialmente\": \"ditatorial\",\n  \"ditava\": \"dit\",\n  \"dito\": \"dit\",\n  \"diuturna\": \"diuturn\",\n  \"diva\": \"div\",\n  \"divã\": \"divã\",\n  \"divagando\": \"divag\",\n  \"divaldo\": \"divald\",\n  \"divas\": \"div\",\n  \"diverge\": \"diverg\",\n  \"divergem\": \"diverg\",\n  \"divergências\": \"divergent\",\n  \"diversa\": \"divers\",\n  \"diversão\": \"diversã\",\n  \"diversas\": \"divers\",\n  \"diversidade\": \"divers\",\n  \"diversificação\": \"diversific\",\n  \"diversificada\": \"diversific\",\n  \"diversificado\": \"diversific\",\n  \"diversificando\": \"diversific\",\n  \"diversificar\": \"diversific\",\n  \"diversificou\": \"diversific\",\n  \"diversifiquem\": \"diversifiqu\",\n  \"diversionista\": \"diversion\",\n  \"diversões\": \"diversõ\",\n  \"diversos\": \"divers\",\n  \"diverte\": \"divert\",\n  \"divertem\": \"divert\",\n  \"divertia\": \"divert\",\n  \"divertida\": \"divert\",\n  \"divertidas\": \"divert\",\n  \"divertidíssima\": \"divertidíssim\",\n  \"divertido\": \"divert\",\n  \"divertidos\": \"divert\",\n  \"divertimento\": \"divert\",\n  \"divertindo\": \"divert\",\n  \"divertir\": \"divert\",\n  \"dívida\": \"dív\",\n  \"dívidas\": \"dív\",\n  \"divide\": \"divid\",\n  \"dividem\": \"divid\",\n  \"dividendos\": \"dividend\",\n  \"dividi\": \"divid\",\n  \"dividia\": \"divid\",\n  \"dividida\": \"divid\",\n  \"divididas\": \"divid\",\n  \"dividido\": \"divid\",\n  \"divididos\": \"divid\",\n  \"dividimos\": \"divid\",\n  \"dividindo\": \"divid\",\n  \"dividir\": \"divid\",\n  \"dividiram\": \"divid\",\n  \"divido\": \"div\",\n  \"divina\": \"divin\",\n  \"divindade\": \"divindad\",\n  \"diving\": \"diving\",\n  \"divino\": \"divin\",\n  \"divinolândia\": \"divinolând\",\n  \"divirjo\": \"divirj\",\n  \"divisa\": \"divis\",\n  \"divisão\": \"divisã\",\n  \"divisas\": \"divis\",\n  \"divisões\": \"divisõ\",\n  \"divisor\": \"divisor\",\n  \"divorciada\": \"divorc\",\n  \"divorciado\": \"divorc\",\n  \"divorciando\": \"divorc\",\n  \"divorciaram\": \"divorc\",\n  \"divórcio\": \"divórci\",\n  \"divórcios\": \"divórci\",\n  \"divorciou\": \"divorc\",\n  \"divulga\": \"divulg\",\n  \"divulgação\": \"divulg\",\n  \"divulgada\": \"divulg\",\n  \"divulgadas\": \"divulg\",\n  \"divulgado\": \"divulg\",\n  \"divulgador\": \"divulg\",\n  \"divulgadores\": \"divulg\",\n  \"divulgados\": \"divulg\",\n  \"divulgam\": \"divulg\",\n  \"divulgar\": \"divulg\",\n  \"divulgaram\": \"divulg\",\n  \"divulgarem\": \"divulg\",\n  \"divulgou\": \"divulg\",\n  \"diz\": \"diz\",\n  \"dizem\": \"diz\",\n  \"dizendo\": \"diz\",\n  \"dizer\": \"diz\",\n  \"dizerem\": \"diz\",\n  \"dizia\": \"diz\",\n  \"diziam\": \"diz\",\n  \"dizimadas\": \"dizim\",\n  \"dizimado\": \"dizim\",\n  \"dizimaram\": \"dizim\",\n  \"dízimo\": \"dízim\",\n  \"dizzy\": \"dizzy\",\n  \"dj\": \"dj\",\n  \"djair\": \"dja\",\n  \"djanira\": \"djan\",\n  \"djavan\": \"djavan\",\n  \"dkw\": \"dkw\",\n  \"dl\": \"dl\",\n  \"dm\": \"dm\",\n  \"dna\": \"dna\",\n  \"do\": \"do\",\n  \"dó\": \"dó\",\n  \"doa\": \"doa\",\n  \"doação\": \"doaçã\",\n  \"doações\": \"doaçõ\",\n  \"doada\": \"doad\",\n  \"doado\": \"doad\",\n  \"doador\": \"doador\",\n  \"doadores\": \"doador\",\n  \"doados\": \"doad\",\n  \"doam\": \"doam\",\n  \"doando\": \"doand\",\n  \"doar\": \"doar\",\n  \"doaram\": \"doar\",\n  \"dobra\": \"dobr\",\n  \"dobradas\": \"dobr\",\n  \"dobradiças\": \"dobradic\",\n  \"dobram\": \"dobr\",\n  \"dobrar\": \"dobr\",\n  \"dobrará\": \"dobr\",\n  \"dobraram\": \"dobr\",\n  \"dobre\": \"dobr\",\n  \"dobro\": \"dobr\",\n  \"dobrou\": \"dobr\",\n  \"doca\": \"doc\",\n  \"doce\": \"doc\",\n  \"dóceis\": \"dóc\",\n  \"docente\": \"docent\",\n  \"doces\": \"doc\",\n  \"documenta\": \"document\",\n  \"documentação\": \"document\",\n  \"documentada\": \"document\",\n  \"documentário\": \"documentári\",\n  \"documentários\": \"documentári\",\n  \"documento\": \"document\",\n  \"documentos\": \"document\",\n  \"doçura\": \"doçur\",\n  \"doe\": \"doe\",\n  \"doença\": \"doenc\",\n  \"doenças\": \"doenc\",\n  \"doente\": \"doent\",\n  \"doentes\": \"doent\",\n  \"doentia\": \"doent\",\n  \"doentio\": \"doenti\",\n  \"doer\": \"doer\",\n  \"dogmas\": \"dogm\",\n  \"doi\": \"doi\",\n  \"dói\": \"dói\",\n  \"doía\": \"doí\",\n  \"doida\": \"doid\",\n  \"doido\": \"doid\",\n  \"dois\": \"dois\",\n  \"dólar\": \"dól\",\n  \"dólares\": \"dól\",\n  \"dolce\": \"dolc\",\n  \"doleiros\": \"doleir\",\n  \"dolly\": \"dolly\",\n  \"dolores\": \"dolor\",\n  \"dolorida\": \"dolor\",\n  \"dolorido\": \"dolor\",\n  \"dolorosa\": \"dolor\",\n  \"dolorosas\": \"dolor\",\n  \"doloroso\": \"dolor\",\n  \"dom\": \"dom\",\n  \"domada\": \"dom\",\n  \"domaine\": \"domain\",\n  \"domenecci\": \"domenecc\",\n  \"doméstica\": \"domést\",\n  \"domésticas\": \"domést\",\n  \"doméstico\": \"domést\",\n  \"domésticos\": \"domést\",\n  \"domicí\": \"domic\",\n  \"domiciliar\": \"domicili\",\n  \"domicílio\": \"domicíli\",\n  \"domícilios\": \"domícili\",\n  \"domicílios\": \"domicíli\",\n  \"domina\": \"domin\",\n  \"dominada\": \"domin\",\n  \"dominadas\": \"domin\",\n  \"dominado\": \"domin\",\n  \"dominadores\": \"domin\",\n  \"dominam\": \"domin\",\n  \"dominando\": \"domin\",\n  \"dominante\": \"domin\",\n  \"dominar\": \"domin\",\n  \"dominaram\": \"domin\",\n  \"dominarem\": \"domin\",\n  \"dominavam\": \"domin\",\n  \"domine\": \"domin\",\n  \"domingão\": \"domingã\",\n  \"domingo\": \"doming\",\n  \"domingos\": \"doming\",\n  \"domingues\": \"domingu\",\n  \"dominguinhos\": \"dominguinh\",\n  \"domini\": \"domin\",\n  \"dominicais\": \"dominic\",\n  \"dominical\": \"dominical\",\n  \"dominicana\": \"dominican\",\n  \"domínio\": \"domíni\",\n  \"domínios\": \"domíni\",\n  \"domus\": \"domus\",\n  \"dona\": \"don\",\n  \"donald\": \"donald\",\n  \"donas\": \"don\",\n  \"dondoca\": \"dondoc\",\n  \"donnely\": \"donnely\",\n  \"dono\": \"don\",\n  \"donos\": \"don\",\n  \"dons\": \"dons\",\n  \"donzela\": \"donzel\",\n  \"doo\": \"doo\",\n  \"doou\": \"doou\",\n  \"dopá\": \"dop\",\n  \"dopamina\": \"dopamin\",\n  \"dops\": \"dops\",\n  \"dor\": \"dor\",\n  \"dora\": \"dor\",\n  \"dórea\": \"dór\",\n  \"dores\": \"dor\",\n  \"doreste\": \"dor\",\n  \"dorfman\": \"dorfman\",\n  \"dorival\": \"dorival\",\n  \"dorme\": \"dorm\",\n  \"dormem\": \"dorm\",\n  \"dormia\": \"dorm\",\n  \"dormiam\": \"dorm\",\n  \"dormido\": \"dorm\",\n  \"dormidos\": \"dorm\",\n  \"dormimos\": \"dorm\",\n  \"dormindo\": \"dorm\",\n  \"dormir\": \"dorm\",\n  \"dormiram\": \"dorm\",\n  \"dormirem\": \"dorm\",\n  \"dormitório\": \"dormitóri\",\n  \"dormitórios\": \"dormitóri\",\n  \"dormiu\": \"dorm\",\n  \"dorrit\": \"dorrit\",\n  \"dorsal\": \"dorsal\",\n  \"dorso\": \"dors\",\n  \"dos\": \"dos\",\n  \"dosada\": \"dos\",\n  \"dosagem\": \"dosag\",\n  \"dosar\": \"dos\",\n  \"dose\": \"dos\",\n  \"dosedel\": \"dosedel\",\n  \"doses\": \"dos\",\n  \"dossiê\": \"dossi\",\n  \"dotação\": \"dotaçã\",\n  \"dotes\": \"dot\",\n  \"dou\": \"dou\",\n  \"douglas\": \"dougl\",\n  \"dourada\": \"dour\",\n  \"douradas\": \"dour\",\n  \"dourado\": \"dour\",\n  \"dourados\": \"dour\",\n  \"douram\": \"dour\",\n  \"dourar\": \"dour\",\n  \"doutor\": \"doutor\",\n  \"doutora\": \"doutor\",\n  \"doutorado\": \"doutor\",\n  \"doutores\": \"doutor\",\n  \"doutrina\": \"doutrin\",\n  \"down\": \"down\",\n  \"downhill\": \"downhill\",\n  \"downsizing\": \"downsizing\",\n  \"downtown\": \"downtown\",\n  \"doxorubicina\": \"doxorubicin\",\n  \"doze\": \"doz\",\n  \"dpca\": \"dpca\",\n  \"dpz\": \"dpz\",\n  \"dr\": \"dr\",\n  \"dra\": \"dra\",\n  \"dracena\": \"dracen\",\n  \"drag\": \"drag\",\n  \"drama\": \"dram\",\n  \"dramas\": \"dram\",\n  \"dramática\": \"dramát\",\n  \"dramaticamente\": \"dramat\",\n  \"dramáticas\": \"dramát\",\n  \"dramaticidade\": \"dramat\",\n  \"dramático\": \"dramát\",\n  \"dramáticos\": \"dramát\",\n  \"dramaturga\": \"dramaturg\",\n  \"dramaturgia\": \"dramaturg\",\n  \"dramatúrgica\": \"dramatúrg\",\n  \"dramaturgo\": \"dramaturg\",\n  \"drástica\": \"drástic\",\n  \"drasticamente\": \"drastic\",\n  \"drásticas\": \"drástic\",\n  \"drásticos\": \"drástic\",\n  \"drblava\": \"drblav\",\n  \"drc\": \"drc\",\n  \"drenado\": \"dren\",\n  \"drenagem\": \"drenag\",\n  \"drenou\": \"dren\",\n  \"dressing\": \"dressing\",\n  \"dreyfuss\": \"dreyfuss\",\n  \"driblando\": \"dribl\",\n  \"driblar\": \"dribl\",\n  \"drinque\": \"drinqu\",\n  \"drinques\": \"drinqu\",\n  \"droga\": \"drog\",\n  \"drogado\": \"drog\",\n  \"drogados\": \"drog\",\n  \"drogando\": \"drog\",\n  \"drogar\": \"drog\",\n  \"drogaria\": \"drog\",\n  \"drogarias\": \"drog\",\n  \"drogas\": \"drog\",\n  \"dronbusch\": \"dronbusch\",\n  \"drosnin\": \"drosnin\",\n  \"drug\": \"drug\",\n  \"drugstores\": \"drugstor\",\n  \"drummond\": \"drummond\",\n  \"ds\": \"ds\",\n  \"du\": \"du\",\n  \"dualib\": \"dualib\",\n  \"dualid\": \"dualid\",\n  \"dualidade\": \"dualidad\",\n  \"duarte\": \"duart\",\n  \"duas\": \"duas\",\n  \"dúbia\": \"dúb\",\n  \"dúbias\": \"dúb\",\n  \"dublê\": \"dubl\",\n  \"dublin\": \"dublin\",\n  \"duby\": \"duby\",\n  \"ducado\": \"duc\",\n  \"duchemin\": \"duchemin\",\n  \"ducruet\": \"ducruet\",\n  \"duda\": \"dud\",\n  \"dudu\": \"dudu\",\n  \"duek\": \"duek\",\n  \"dukta\": \"dukt\",\n  \"dulce\": \"dulc\",\n  \"dumont\": \"dumont\",\n  \"dumping\": \"dumping\",\n  \"dundee\": \"dunde\",\n  \"dupla\": \"dupl\",\n  \"duplas\": \"dupl\",\n  \"duplicando\": \"duplic\",\n  \"duplicar\": \"duplic\",\n  \"duplicidade\": \"duplic\",\n  \"duplo\": \"dupl\",\n  \"duplos\": \"dupl\",\n  \"dupré\": \"dupr\",\n  \"duque\": \"duqu\",\n  \"dura\": \"dur\",\n  \"durabilidade\": \"durabil\",\n  \"duração\": \"duraçã\",\n  \"durado\": \"dur\",\n  \"duram\": \"dur\",\n  \"duramente\": \"dur\",\n  \"duran\": \"duran\",\n  \"durante\": \"durant\",\n  \"durantes\": \"durant\",\n  \"durão\": \"durã\",\n  \"durar\": \"dur\",\n  \"duraria\": \"dur\",\n  \"duras\": \"dur\",\n  \"durava\": \"dur\",\n  \"duravam\": \"dur\",\n  \"dure\": \"dur\",\n  \"durinho\": \"durinh\",\n  \"duríssima\": \"duríssim\",\n  \"durma\": \"durm\",\n  \"duro\": \"dur\",\n  \"durou\": \"dur\",\n  \"durval\": \"durval\",\n  \"dusek\": \"dusek\",\n  \"dustin\": \"dustin\",\n  \"duti\": \"dut\",\n  \"dutos\": \"dut\",\n  \"dutra\": \"dutr\",\n  \"duvernoy\": \"duvernoy\",\n  \"duvida\": \"duv\",\n  \"dúvida\": \"dúv\",\n  \"dúvidas\": \"dúv\",\n  \"duvide\": \"duvid\",\n  \"duvidem\": \"duvid\",\n  \"duvido\": \"duv\",\n  \"duvidosa\": \"duvid\",\n  \"duvidoso\": \"duvid\",\n  \"duvidosos\": \"duvid\",\n  \"duvidou\": \"duvid\",\n  \"duzentas\": \"duzent\",\n  \"dúzia\": \"dúz\",\n  \"dúzias\": \"dúz\",\n  \"dwight\": \"dwight\",\n  \"dyat\": \"dyat\",\n  \"e\": \"e\",\n  \"é\": \"é\",\n  \"ê\": \"ê\",\n  \"eagle\": \"eagl\",\n  \"east\": \"east\",\n  \"eboli\": \"ebol\",\n  \"éboli\": \"ébol\",\n  \"ebulição\": \"ebuliçã\",\n  \"eça\": \"eça\",\n  \"eclesiástico\": \"eclesiást\",\n  \"eclético\": \"eclét\",\n  \"ecletismo\": \"eclet\",\n  \"eclosão\": \"eclosã\",\n  \"eclusa\": \"eclus\",\n  \"eco\": \"eco\",\n  \"ecolista\": \"ecol\",\n  \"ecologia\": \"ecolog\",\n  \"ecológica\": \"ecológ\",\n  \"ecologicamente\": \"ecolog\",\n  \"ecológicas\": \"ecológ\",\n  \"ecológico\": \"ecológ\",\n  \"ecológicos\": \"ecológ\",\n  \"ecologista\": \"ecolog\",\n  \"ecologistas\": \"ecolog\",\n  \"economia\": \"econom\",\n  \"economias\": \"econom\",\n  \"economic\": \"economic\",\n  \"econômica\": \"econôm\",\n  \"econômicas\": \"econôm\",\n  \"econômico\": \"econôm\",\n  \"econômicos\": \"econôm\",\n  \"economista\": \"econom\",\n  \"economistas\": \"econom\",\n  \"economiza\": \"economiz\",\n  \"economizam\": \"economiz\",\n  \"economizando\": \"economiz\",\n  \"economizar\": \"economiz\",\n  \"economizo\": \"economiz\",\n  \"ecoou\": \"eco\",\n  \"ecos\": \"ecos\",\n  \"ecoturismo\": \"ecotur\",\n  \"ecoxiitas\": \"ecoxiit\",\n  \"ecstasy\": \"ecstasy\",\n  \"ecumênicos\": \"ecumên\",\n  \"edaival\": \"edaival\",\n  \"éden\": \"éden\",\n  \"eder\": \"eder\",\n  \"éder\": \"éder\",\n  \"edevaldo\": \"edevald\",\n  \"edgar\": \"edgar\",\n  \"edição\": \"ediçã\",\n  \"edições\": \"ediçõ\",\n  \"edificações\": \"edific\",\n  \"edifício\": \"edifíci\",\n  \"edifícios\": \"edifíci\",\n  \"edileusa\": \"edileus\",\n  \"edinir\": \"edin\",\n  \"edir\": \"edir\",\n  \"edison\": \"edison\",\n  \"edita\": \"edit\",\n  \"editada\": \"edit\",\n  \"editado\": \"edit\",\n  \"editados\": \"edit\",\n  \"editais\": \"edit\",\n  \"edital\": \"edital\",\n  \"editar\": \"edit\",\n  \"editava\": \"edit\",\n  \"edite\": \"edit\",\n  \"edith\": \"edith\",\n  \"editor\": \"editor\",\n  \"editora\": \"editor\",\n  \"editoras\": \"editor\",\n  \"editores\": \"editor\",\n  \"editoria\": \"editor\",\n  \"editoriais\": \"editori\",\n  \"editorial\": \"editorial\",\n  \"editorias\": \"editor\",\n  \"edivaldo\": \"edivald\",\n  \"edlich\": \"edlich\",\n  \"edlinger\": \"edling\",\n  \"edmar\": \"edmar\",\n  \"edmilson\": \"edmilson\",\n  \"edmund\": \"edmund\",\n  \"edmundo\": \"edmund\",\n  \"ednilton\": \"ednilton\",\n  \"edson\": \"edson\",\n  \"edu\": \"edu\",\n  \"eduarda\": \"eduard\",\n  \"eduardo\": \"eduard\",\n  \"eduardos\": \"eduard\",\n  \"educá\": \"educ\",\n  \"educação\": \"educ\",\n  \"educacionais\": \"educacion\",\n  \"educacional\": \"educacional\",\n  \"educada\": \"educ\",\n  \"educadamente\": \"educ\",\n  \"educado\": \"educ\",\n  \"educador\": \"educ\",\n  \"educadora\": \"educ\",\n  \"educadores\": \"educ\",\n  \"educar\": \"educ\",\n  \"educativa\": \"educ\",\n  \"educativo\": \"educ\",\n  \"educativos\": \"educ\",\n  \"edusp\": \"edusp\",\n  \"edvar\": \"edvar\",\n  \"edward\": \"edward\",\n  \"efe\": \"efe\",\n  \"efeito\": \"efeit\",\n  \"efeitos\": \"efeit\",\n  \"efêmera\": \"efêm\",\n  \"efervescência\": \"efervescent\",\n  \"efervescendo\": \"efervesc\",\n  \"éfesos\": \"éfes\",\n  \"efetiva\": \"efet\",\n  \"efetivamente\": \"efet\",\n  \"efetivo\": \"efet\",\n  \"efetivos\": \"efet\",\n  \"efetuadas\": \"efetu\",\n  \"eficácia\": \"eficác\",\n  \"eficaz\": \"eficaz\",\n  \"eficazes\": \"eficaz\",\n  \"eficiência\": \"eficient\",\n  \"eficiente\": \"eficient\",\n  \"eficientemente\": \"eficient\",\n  \"eficientes\": \"eficient\",\n  \"egberto\": \"egbert\",\n  \"egeu\": \"egeu\",\n  \"eggon\": \"eggon\",\n  \"egito\": \"egit\",\n  \"ego\": \"ego\",\n  \"egoísmo\": \"egoísm\",\n  \"egoísta\": \"egoíst\",\n  \"egoístas\": \"egoíst\",\n  \"egon\": \"egon\",\n  \"egos\": \"egos\",\n  \"egressos\": \"egress\",\n  \"eiffel\": \"eiffel\",\n  \"eigg\": \"eigg\",\n  \"eike\": \"eik\",\n  \"einstein\": \"einstein\",\n  \"eis\": \"eis\",\n  \"eisenhower\": \"eisenhow\",\n  \"eit\": \"eit\",\n  \"eixo\": \"eix\",\n  \"eixos\": \"eix\",\n  \"ejaculação\": \"ejacul\",\n  \"ejetada\": \"ejet\",\n  \"ejetado\": \"ejet\",\n  \"el\": \"el\",\n  \"ela\": \"ela\",\n  \"elabora\": \"elabor\",\n  \"elaboração\": \"elabor\",\n  \"elaboradas\": \"elabor\",\n  \"elaborado\": \"elabor\",\n  \"elaborados\": \"elabor\",\n  \"elaborar\": \"elabor\",\n  \"elaboraram\": \"elabor\",\n  \"elaboravam\": \"elabor\",\n  \"elaboro\": \"elabor\",\n  \"elaborou\": \"elabor\",\n  \"elache\": \"elach\",\n  \"elaine\": \"elain\",\n  \"elas\": \"elas\",\n  \"elásticas\": \"elást\",\n  \"elástico\": \"elást\",\n  \"elastina\": \"elastin\",\n  \"elastoderme\": \"elastoderm\",\n  \"elba\": \"elba\",\n  \"elbrick\": \"elbrick\",\n  \"elbrus\": \"elbrus\",\n  \"elda\": \"elda\",\n  \"eldorado\": \"eldor\",\n  \"ele\": \"ele\",\n  \"electric\": \"electric\",\n  \"electronics\": \"electronics\",\n  \"elefante\": \"elef\",\n  \"elefantes\": \"elef\",\n  \"elegância\": \"eleg\",\n  \"elegante\": \"eleg\",\n  \"elegantes\": \"eleg\",\n  \"elegantíssimo\": \"elegantíssim\",\n  \"elege\": \"eleg\",\n  \"elegendo\": \"eleg\",\n  \"eleger\": \"eleg\",\n  \"elegeram\": \"eleg\",\n  \"elegerem\": \"eleg\",\n  \"elegessem\": \"eleg\",\n  \"elegeu\": \"eleg\",\n  \"eleição\": \"eleiçã\",\n  \"eleições\": \"eleiçõ\",\n  \"eleita\": \"eleit\",\n  \"eleito\": \"eleit\",\n  \"eleitor\": \"eleitor\",\n  \"eleitorado\": \"eleitor\",\n  \"eleitorais\": \"eleitor\",\n  \"eleitoral\": \"eleitoral\",\n  \"eleitores\": \"eleitor\",\n  \"eleitos\": \"eleit\",\n  \"elek\": \"elek\",\n  \"elementais\": \"element\",\n  \"elemento\": \"element\",\n  \"elementos\": \"element\",\n  \"elena\": \"elen\",\n  \"elenco\": \"elenc\",\n  \"elenilda\": \"elenild\",\n  \"eleonor\": \"eleonor\",\n  \"eleotório\": \"eleotóri\",\n  \"elephante\": \"eleph\",\n  \"eles\": \"eles\",\n  \"elétrica\": \"elétr\",\n  \"elétricas\": \"elétr\",\n  \"eletricidade\": \"eletr\",\n  \"eletricista\": \"eletric\",\n  \"eletricistas\": \"eletric\",\n  \"elétrico\": \"elétr\",\n  \"elétricos\": \"elétr\",\n  \"eletrizante\": \"eletriz\",\n  \"eletro\": \"eletr\",\n  \"eletrobrás\": \"eletrobrás\",\n  \"eletrodomésticos\": \"eletrodomést\",\n  \"eletrodos\": \"eletrod\",\n  \"eletrolipo\": \"eletrolip\",\n  \"eletromagnética\": \"eletromagnét\",\n  \"eletromagnéticas\": \"eletromagnét\",\n  \"eletromecânicos\": \"eletromecân\",\n  \"elétron\": \"elétron\",\n  \"eletrônica\": \"eletrôn\",\n  \"eletronicamente\": \"eletron\",\n  \"eletrônicas\": \"eletrôn\",\n  \"eletrônico\": \"eletrôn\",\n  \"eletrônicos\": \"eletrôn\",\n  \"eletropaulo\": \"eletropaul\",\n  \"eletrosul\": \"eletrosul\",\n  \"elevação\": \"elev\",\n  \"elevadas\": \"elev\",\n  \"elevado\": \"elev\",\n  \"elevador\": \"elev\",\n  \"elevados\": \"elev\",\n  \"elevar\": \"elev\",\n  \"elevaram\": \"elev\",\n  \"elgarten\": \"elgarten\",\n  \"eli\": \"eli\",\n  \"eliachar\": \"eliach\",\n  \"eliade\": \"eliad\",\n  \"eliakim\": \"eliakim\",\n  \"eliana\": \"elian\",\n  \"eliane\": \"elian\",\n  \"elias\": \"eli\",\n  \"eliel\": \"eliel\",\n  \"elimina\": \"elimin\",\n  \"eliminação\": \"elimin\",\n  \"eliminada\": \"elimin\",\n  \"eliminado\": \"elimin\",\n  \"eliminados\": \"elimin\",\n  \"eliminando\": \"elimin\",\n  \"eliminar\": \"elimin\",\n  \"eliminaria\": \"elimin\",\n  \"eliminatória\": \"eliminatór\",\n  \"eliminatórias\": \"eliminatór\",\n  \"eliminou\": \"elimin\",\n  \"élio\": \"éli\",\n  \"elioneide\": \"elioneid\",\n  \"eliot\": \"eliot\",\n  \"elisa\": \"elis\",\n  \"elisabeth\": \"elisabeth\",\n  \"elisaldo\": \"elisald\",\n  \"elíseos\": \"elís\",\n  \"eliseu\": \"elis\",\n  \"elite\": \"elit\",\n  \"elites\": \"elit\",\n  \"elitista\": \"elit\",\n  \"elixir\": \"elix\",\n  \"elizabetano\": \"elizabetan\",\n  \"elizabete\": \"elizabet\",\n  \"elizabeth\": \"elizabeth\",\n  \"elizeth\": \"elizeth\",\n  \"ella\": \"ella\",\n  \"elle\": \"elle\",\n  \"ellen\": \"ellen\",\n  \"eller\": \"eller\",\n  \"ellis\": \"ellis\",\n  \"ellius\": \"ellius\",\n  \"ellus\": \"ellus\",\n  \"elo\": \"elo\",\n  \"elogia\": \"elog\",\n  \"elogiada\": \"elogi\",\n  \"elogiado\": \"elogi\",\n  \"elogiam\": \"elog\",\n  \"elogiar\": \"elogi\",\n  \"elogiaram\": \"elogi\",\n  \"elogiava\": \"elogi\",\n  \"elógica\": \"elóg\",\n  \"elogie\": \"elogi\",\n  \"elogio\": \"elogi\",\n  \"elogios\": \"elogi\",\n  \"elogiou\": \"elogi\",\n  \"eloneide\": \"eloneid\",\n  \"eloquência\": \"eloquent\",\n  \"elpídio\": \"elpídi\",\n  \"elucidar\": \"elucid\",\n  \"elucubrações\": \"elucubr\",\n  \"elvis\": \"elvis\",\n  \"ely\": \"ely\",\n  \"elza\": \"elza\",\n  \"em\": \"em\",\n  \"emagracer\": \"emagrac\",\n  \"emagreça\": \"emagrec\",\n  \"emagreçam\": \"emagrec\",\n  \"emagrece\": \"emagrec\",\n  \"emagrecer\": \"emagrec\",\n  \"emagreceu\": \"emagrec\",\n  \"emagreci\": \"emagrec\",\n  \"emagrecia\": \"emagrec\",\n  \"emagreciam\": \"emagrec\",\n  \"emagrecimento\": \"emagrec\",\n  \"emagreço\": \"emagrec\",\n  \"email\": \"email\",\n  \"emana\": \"eman\",\n  \"emanam\": \"eman\",\n  \"emancipador\": \"emancip\",\n  \"emanoel\": \"emanoel\",\n  \"emaranhado\": \"emaranh\",\n  \"emaús\": \"emaús\",\n  \"emb\": \"emb\",\n  \"embaixada\": \"embaix\",\n  \"embaixadas\": \"embaix\",\n  \"embaixador\": \"embaix\",\n  \"embaixo\": \"embaix\",\n  \"embalados\": \"embal\",\n  \"embalagem\": \"embalag\",\n  \"embalagens\": \"embalagens\",\n  \"embalam\": \"embal\",\n  \"embalava\": \"embal\",\n  \"embalo\": \"embal\",\n  \"embalou\": \"embal\",\n  \"embaraça\": \"embarac\",\n  \"embaraços\": \"embarac\",\n  \"embaraçosos\": \"embarac\",\n  \"embaralhando\": \"embaralh\",\n  \"embarca\": \"embarc\",\n  \"embarcações\": \"embarc\",\n  \"embarcado\": \"embarc\",\n  \"embarcados\": \"embarc\",\n  \"embarcam\": \"embarc\",\n  \"embarcamos\": \"embarc\",\n  \"embarcar\": \"embarc\",\n  \"embarcaram\": \"embarc\",\n  \"embarcaria\": \"embarc\",\n  \"embarcou\": \"embarc\",\n  \"embargada\": \"embarg\",\n  \"embargadas\": \"embarg\",\n  \"embargando\": \"embarg\",\n  \"embargar\": \"embarg\",\n  \"embargo\": \"embarg\",\n  \"embargou\": \"embarg\",\n  \"embarque\": \"embarqu\",\n  \"embarques\": \"embarqu\",\n  \"embasar\": \"embas\",\n  \"embasou\": \"embas\",\n  \"embate\": \"embat\",\n  \"embates\": \"embat\",\n  \"embebedassem\": \"embebed\",\n  \"embebido\": \"embeb\",\n  \"embelezamento\": \"embelez\",\n  \"embelezar\": \"embelez\",\n  \"embicando\": \"embic\",\n  \"emblema\": \"emblem\",\n  \"emblemática\": \"emblemát\",\n  \"emblemáticas\": \"emblemát\",\n  \"emblemático\": \"emblemát\",\n  \"emboca\": \"emboc\",\n  \"embolado\": \"embol\",\n  \"embolia\": \"embol\",\n  \"embolsa\": \"embols\",\n  \"embolsam\": \"embols\",\n  \"embolsar\": \"embols\",\n  \"embolsarem\": \"embols\",\n  \"embolsou\": \"embols\",\n  \"embora\": \"embor\",\n  \"emboscada\": \"embosc\",\n  \"embraer\": \"embra\",\n  \"embrapa\": \"embrap\",\n  \"embratel\": \"embratel\",\n  \"embrater\": \"embrat\",\n  \"embratur\": \"embratur\",\n  \"embreagem\": \"embreag\",\n  \"embrenhou\": \"embrenh\",\n  \"embriaga\": \"embriag\",\n  \"embriagado\": \"embriag\",\n  \"embriagar\": \"embriag\",\n  \"embriague\": \"embriag\",\n  \"embriaguez\": \"embriaguez\",\n  \"embrião\": \"embriã\",\n  \"embriologia\": \"embriolog\",\n  \"embrionária\": \"embrionár\",\n  \"embrionárias\": \"embrionár\",\n  \"embrionário\": \"embrionári\",\n  \"embrulhada\": \"embrulh\",\n  \"embrutecidos\": \"embrutec\",\n  \"emburaca\": \"emburac\",\n  \"emburacado\": \"emburac\",\n  \"embuste\": \"embust\",\n  \"embutido\": \"embut\",\n  \"embutidos\": \"embut\",\n  \"embutir\": \"embut\",\n  \"emenda\": \"emend\",\n  \"emendo\": \"emend\",\n  \"emendou\": \"emend\",\n  \"emergência\": \"emergent\",\n  \"emergente\": \"emergent\",\n  \"emergentes\": \"emergent\",\n  \"emergindo\": \"emerg\",\n  \"emergiu\": \"emerg\",\n  \"emérito\": \"emérit\",\n  \"emerson\": \"emerson\",\n  \"émerson\": \"émerson\",\n  \"emfa\": \"emfa\",\n  \"emi\": \"emi\",\n  \"emidio\": \"emidi\",\n  \"emídio\": \"emídi\",\n  \"emigração\": \"emigr\",\n  \"emigrados\": \"emigr\",\n  \"emigrantes\": \"emigr\",\n  \"emílio\": \"emíli\",\n  \"eminentemente\": \"eminent\",\n  \"emirados\": \"emir\",\n  \"emissão\": \"emissã\",\n  \"emissária\": \"emissár\",\n  \"emissários\": \"emissári\",\n  \"emissões\": \"emissõ\",\n  \"emissora\": \"emissor\",\n  \"emissoras\": \"emissor\",\n  \"emissores\": \"emissor\",\n  \"emitam\": \"emit\",\n  \"emite\": \"emit\",\n  \"emitia\": \"emit\",\n  \"emitidas\": \"emit\",\n  \"emitido\": \"emit\",\n  \"emitidos\": \"emit\",\n  \"emitir\": \"emit\",\n  \"emitissem\": \"emit\",\n  \"emitiu\": \"emit\",\n  \"emma\": \"emma\",\n  \"emmanuel\": \"emmanuel\",\n  \"emmanuelle\": \"emmanuell\",\n  \"emoção\": \"emoçã\",\n  \"emociona\": \"emocion\",\n  \"emocionada\": \"emocion\",\n  \"emocionado\": \"emocion\",\n  \"emocionais\": \"emocion\",\n  \"emocional\": \"emocional\",\n  \"emocionalmente\": \"emocional\",\n  \"emocionante\": \"emocion\",\n  \"emocionou\": \"emocion\",\n  \"emoções\": \"emoçõ\",\n  \"emotivamente\": \"emot\",\n  \"emparelhou\": \"emparelh\",\n  \"empatada\": \"empat\",\n  \"empatado\": \"empat\",\n  \"empatados\": \"empat\",\n  \"empatam\": \"empat\",\n  \"empatar\": \"empat\",\n  \"empatia\": \"empat\",\n  \"empatou\": \"empat\",\n  \"empedernido\": \"empedern\",\n  \"empenha\": \"empenh\",\n  \"empenhado\": \"empenh\",\n  \"empenhados\": \"empenh\",\n  \"empenhando\": \"empenh\",\n  \"empenhar\": \"empenh\",\n  \"empenho\": \"empenh\",\n  \"emperrado\": \"emperr\",\n  \"emperram\": \"emperr\",\n  \"empertigado\": \"empertig\",\n  \"empetecando\": \"empetec\",\n  \"empilhada\": \"empilh\",\n  \"empilhadeira\": \"empilhadeir\",\n  \"empilhar\": \"empilh\",\n  \"empiricamente\": \"empir\",\n  \"empírico\": \"empír\",\n  \"emplacam\": \"emplac\",\n  \"emplacou\": \"emplac\",\n  \"emplaque\": \"emplaqu\",\n  \"empoado\": \"empo\",\n  \"empobrece\": \"empobrec\",\n  \"empoeiradas\": \"empoeir\",\n  \"empoeirado\": \"empoeir\",\n  \"empoeirados\": \"empoeir\",\n  \"empolga\": \"empolg\",\n  \"empolgação\": \"empolg\",\n  \"empolgados\": \"empolg\",\n  \"empolgam\": \"empolg\",\n  \"empolgante\": \"empolg\",\n  \"empolgantes\": \"empolg\",\n  \"empolgou\": \"empolg\",\n  \"emporio\": \"empori\",\n  \"empório\": \"empóri\",\n  \"empossado\": \"emposs\",\n  \"empreendedor\": \"empreendedor\",\n  \"empreendedores\": \"empreendedor\",\n  \"empreendendo\": \"empreend\",\n  \"empreender\": \"empreend\",\n  \"empreendeu\": \"empreend\",\n  \"empreendimento\": \"empreend\",\n  \"empreendimentos\": \"empreend\",\n  \"emprega\": \"empreg\",\n  \"empregabilidade\": \"empreg\",\n  \"empregada\": \"empreg\",\n  \"empregadas\": \"empreg\",\n  \"empregado\": \"empreg\",\n  \"empregador\": \"empreg\",\n  \"empregadores\": \"empreg\",\n  \"empregados\": \"empreg\",\n  \"empregam\": \"empreg\",\n  \"empregar\": \"empreg\",\n  \"empregatício\": \"empregatíci\",\n  \"empregava\": \"empreg\",\n  \"emprego\": \"empreg\",\n  \"empregos\": \"empreg\",\n  \"empregou\": \"empreg\",\n  \"empreitada\": \"empreit\",\n  \"empreitadas\": \"empreit\",\n  \"empreiteira\": \"empreiteir\",\n  \"empreiteiras\": \"empreiteir\",\n  \"empresa\": \"empres\",\n  \"empresária\": \"empresár\",\n  \"empresariado\": \"empresari\",\n  \"empresariais\": \"empresari\",\n  \"empresarial\": \"empresarial\",\n  \"empresárias\": \"empresár\",\n  \"empresário\": \"empresári\",\n  \"empresários\": \"empresári\",\n  \"empresas\": \"empres\",\n  \"empresta\": \"emprest\",\n  \"emprestada\": \"emprest\",\n  \"emprestado\": \"emprest\",\n  \"emprestados\": \"emprest\",\n  \"emprestar\": \"emprest\",\n  \"empréstimo\": \"empréstim\",\n  \"empréstimos\": \"emprést\",\n  \"emprestou\": \"emprest\",\n  \"empulhação\": \"empulh\",\n  \"empunha\": \"empunh\",\n  \"empunhar\": \"empunh\",\n  \"empunhou\": \"empunh\",\n  \"empurra\": \"empurr\",\n  \"empurrá\": \"empurr\",\n  \"empurrada\": \"empurr\",\n  \"empurradas\": \"empurr\",\n  \"empurrado\": \"empurr\",\n  \"empurradores\": \"empurr\",\n  \"empurrados\": \"empurr\",\n  \"empurrando\": \"empurr\",\n  \"empurrão\": \"empurrã\",\n  \"empurrãozinho\": \"empurrãozinh\",\n  \"empurrar\": \"empurr\",\n  \"empurraram\": \"empurr\",\n  \"empurroterapia\": \"empurroterap\",\n  \"empurrou\": \"empurr\",\n  \"empuxo\": \"empux\",\n  \"emulavam\": \"emul\",\n  \"emulsões\": \"emulsõ\",\n  \"en\": \"en\",\n  \"enaltecem\": \"enaltec\",\n  \"enamorado\": \"enamor\",\n  \"encabeçado\": \"encabec\",\n  \"encabeçam\": \"encabec\",\n  \"encabeçassem\": \"encabec\",\n  \"encabeçou\": \"encabec\",\n  \"encabulado\": \"encabul\",\n  \"encaixa\": \"encaix\",\n  \"encaixadas\": \"encaix\",\n  \"encaixam\": \"encaix\",\n  \"encaixar\": \"encaix\",\n  \"encaixaria\": \"encaix\",\n  \"encaixava\": \"encaix\",\n  \"encaixe\": \"encaix\",\n  \"encaixem\": \"encaix\",\n  \"encaixotador\": \"encaixot\",\n  \"encalhadas\": \"encalh\",\n  \"encaminha\": \"encaminh\",\n  \"encaminhadas\": \"encaminh\",\n  \"encaminhado\": \"encaminh\",\n  \"encaminhados\": \"encaminh\",\n  \"encaminhamento\": \"encaminh\",\n  \"encaminhamos\": \"encaminh\",\n  \"encaminhar\": \"encaminh\",\n  \"encaminharam\": \"encaminh\",\n  \"encaminhasse\": \"encaminh\",\n  \"encaminhou\": \"encaminh\",\n  \"encampada\": \"encamp\",\n  \"encanada\": \"encan\",\n  \"encanar\": \"encan\",\n  \"encanta\": \"encant\",\n  \"encantada\": \"encant\",\n  \"encantadas\": \"encant\",\n  \"encantado\": \"encant\",\n  \"encantadora\": \"encant\",\n  \"encantados\": \"encant\",\n  \"encante\": \"encant\",\n  \"encantei\": \"encant\",\n  \"encanto\": \"encant\",\n  \"encantou\": \"encant\",\n  \"encapo\": \"encap\",\n  \"encara\": \"encar\",\n  \"encará\": \"encar\",\n  \"encarada\": \"encar\",\n  \"encaradas\": \"encar\",\n  \"encarado\": \"encar\",\n  \"encarados\": \"encar\",\n  \"encaram\": \"encar\",\n  \"encarando\": \"encar\",\n  \"encarapitadas\": \"encarapit\",\n  \"encarapitados\": \"encarapit\",\n  \"encarar\": \"encar\",\n  \"encarariam\": \"encar\",\n  \"encarceradores\": \"encarcer\",\n  \"encarcerados\": \"encarcer\",\n  \"encarceramento\": \"encarcer\",\n  \"encarcerar\": \"encarcer\",\n  \"encarcerou\": \"encarcer\",\n  \"encarece\": \"encarec\",\n  \"encareceu\": \"encarec\",\n  \"encarem\": \"encar\",\n  \"encaremos\": \"encar\",\n  \"encargos\": \"encarg\",\n  \"encarnado\": \"encarn\",\n  \"encarnar\": \"encarn\",\n  \"encarnava\": \"encarn\",\n  \"encarnou\": \"encarn\",\n  \"encaro\": \"encar\",\n  \"encarou\": \"encar\",\n  \"encarrega\": \"encarreg\",\n  \"encarregada\": \"encarreg\",\n  \"encarregadas\": \"encarreg\",\n  \"encarregado\": \"encarreg\",\n  \"encarregados\": \"encarreg\",\n  \"encarregam\": \"encarreg\",\n  \"encarregou\": \"encarreg\",\n  \"encarta\": \"encart\",\n  \"encastelados\": \"encastel\",\n  \"encefálico\": \"encefál\",\n  \"encenação\": \"encen\",\n  \"encenado\": \"encen\",\n  \"encerra\": \"encerr\",\n  \"encerrada\": \"encerr\",\n  \"encerradas\": \"encerr\",\n  \"encerrado\": \"encerr\",\n  \"encerramento\": \"encerr\",\n  \"encerrando\": \"encerr\",\n  \"encerrar\": \"encerr\",\n  \"encerrará\": \"encerr\",\n  \"encerraram\": \"encerr\",\n  \"encerro\": \"encerr\",\n  \"encerrou\": \"encerr\",\n  \"encharcado\": \"encharc\",\n  \"enchem\": \"enchem\",\n  \"enchendo\": \"enchend\",\n  \"enchente\": \"enchent\",\n  \"enchentes\": \"enchent\",\n  \"encher\": \"encher\",\n  \"encheu\": \"encheu\",\n  \"enchi\": \"enchi\",\n  \"enchia\": \"enchi\",\n  \"enchimento\": \"enchiment\",\n  \"enciclopédia\": \"enciclopéd\",\n  \"enciclopédias\": \"enciclopéd\",\n  \"enciclopédica\": \"enciclopéd\",\n  \"enciclopéias\": \"enciclop\",\n  \"enclausura\": \"enclausur\",\n  \"enclausurada\": \"enclausur\",\n  \"enclave\": \"enclav\",\n  \"encobertas\": \"encobert\",\n  \"encobre\": \"encobr\",\n  \"encobrir\": \"encobr\",\n  \"encobriram\": \"encobr\",\n  \"encol\": \"encol\",\n  \"encolhem\": \"encolh\",\n  \"encolhesse\": \"encolh\",\n  \"encolhida\": \"encolh\",\n  \"encomenda\": \"encomend\",\n  \"encomendada\": \"encomend\",\n  \"encomendadas\": \"encomend\",\n  \"encomendado\": \"encomend\",\n  \"encomendar\": \"encomend\",\n  \"encomendas\": \"encomend\",\n  \"encomendei\": \"encomend\",\n  \"encomendou\": \"encomend\",\n  \"encontra\": \"encontr\",\n  \"encontrá\": \"encontr\",\n  \"encontrada\": \"encontr\",\n  \"encontradas\": \"encontr\",\n  \"encontrado\": \"encontr\",\n  \"encontrados\": \"encontr\",\n  \"encontram\": \"encontr\",\n  \"encontramos\": \"encontr\",\n  \"encontrando\": \"encontr\",\n  \"encontrar\": \"encontr\",\n  \"encontrará\": \"encontr\",\n  \"encontraram\": \"encontr\",\n  \"encontrarem\": \"encontr\",\n  \"encontrasse\": \"encontr\",\n  \"encontrava\": \"encontr\",\n  \"encontre\": \"encontr\",\n  \"encontrei\": \"encontr\",\n  \"encontro\": \"encontr\",\n  \"encontros\": \"encontr\",\n  \"encontrou\": \"encontr\",\n  \"encorajadas\": \"encoraj\",\n  \"encorajaram\": \"encoraj\",\n  \"encorpado\": \"encorp\",\n  \"encorpados\": \"encorp\",\n  \"encostado\": \"encost\",\n  \"encostados\": \"encost\",\n  \"encostar\": \"encost\",\n  \"encosto\": \"encost\",\n  \"encravada\": \"encrav\",\n  \"encravadas\": \"encrav\",\n  \"encravado\": \"encrav\",\n  \"encravados\": \"encrav\",\n  \"encrenca\": \"encrenc\",\n  \"encrencas\": \"encrenc\",\n  \"encrespados\": \"encresp\",\n  \"encruzilhadas\": \"encruzilh\",\n  \"encurralada\": \"encurral\",\n  \"encurralado\": \"encurral\",\n  \"encurtamento\": \"encurt\",\n  \"encurtar\": \"encurt\",\n  \"encurtou\": \"encurt\",\n  \"end\": \"end\",\n  \"endêmica\": \"endêm\",\n  \"ender\": \"ender\",\n  \"endereçada\": \"enderec\",\n  \"endereço\": \"enderec\",\n  \"endereços\": \"enderec\",\n  \"endinheirado\": \"endinheir\",\n  \"endinheirados\": \"endinheir\",\n  \"endividada\": \"endivid\",\n  \"endividadas\": \"endivid\",\n  \"endividamento\": \"endivid\",\n  \"endividando\": \"endivid\",\n  \"endocrinologia\": \"endocrinolog\",\n  \"endocrinologista\": \"endocrinolog\",\n  \"endocrinologistas\": \"endocrinolog\",\n  \"endométrio\": \"endométri\",\n  \"endometriose\": \"endometrios\",\n  \"endorfina\": \"endorfin\",\n  \"endoscopia\": \"endoscop\",\n  \"endossa\": \"endoss\",\n  \"endossado\": \"endoss\",\n  \"endress\": \"endress\",\n  \"eneide\": \"eneid\",\n  \"energética\": \"energét\",\n  \"energéticas\": \"energét\",\n  \"energético\": \"energét\",\n  \"energia\": \"energ\",\n  \"energias\": \"energ\",\n  \"enérgicas\": \"enérg\",\n  \"energiza\": \"energiz\",\n  \"energização\": \"energiz\",\n  \"energizações\": \"energiz\",\n  \"energizado\": \"energiz\",\n  \"eneu\": \"eneu\",\n  \"enfadonho\": \"enfadonh\",\n  \"enfant\": \"enfant\",\n  \"enfarta\": \"enfart\",\n  \"enfartado\": \"enfart\",\n  \"ênfase\": \"ênfas\",\n  \"enfático\": \"enfát\",\n  \"enfatiza\": \"enfatiz\",\n  \"enfatizados\": \"enfatiz\",\n  \"enfatizar\": \"enfatiz\",\n  \"enfatizo\": \"enfatiz\",\n  \"enfatizou\": \"enfatiz\",\n  \"enfeita\": \"enfeit\",\n  \"enfeitada\": \"enfeit\",\n  \"enfeitar\": \"enfeit\",\n  \"enfeite\": \"enfeit\",\n  \"enfeites\": \"enfeit\",\n  \"enfeitiçado\": \"enfeitic\",\n  \"enfermas\": \"enferm\",\n  \"enfermeira\": \"enfermeir\",\n  \"enfermeiras\": \"enfermeir\",\n  \"enfermeiros\": \"enfermeir\",\n  \"enfermidade\": \"enferm\",\n  \"enfermidades\": \"enferm\",\n  \"enferrujadas\": \"enferruj\",\n  \"enfia\": \"enfi\",\n  \"enfiam\": \"enfi\",\n  \"enfiar\": \"enfi\",\n  \"enfileirá\": \"enfil\",\n  \"enfileirados\": \"enfileir\",\n  \"enfim\": \"enfim\",\n  \"enfiou\": \"enfi\",\n  \"enfisema\": \"enfisem\",\n  \"enfocando\": \"enfoc\",\n  \"enfocou\": \"enfoc\",\n  \"enfoque\": \"enfoqu\",\n  \"enforcado\": \"enforc\",\n  \"enforcou\": \"enforc\",\n  \"enfraquecem\": \"enfraquec\",\n  \"enfraquecendo\": \"enfraquec\",\n  \"enfraquecimento\": \"enfraquec\",\n  \"enfrenta\": \"enfrent\",\n  \"enfrentada\": \"enfrent\",\n  \"enfrentado\": \"enfrent\",\n  \"enfrentam\": \"enfrent\",\n  \"enfrentamos\": \"enfrent\",\n  \"enfrentando\": \"enfrent\",\n  \"enfrentar\": \"enfrent\",\n  \"enfrentará\": \"enfrent\",\n  \"enfrentaram\": \"enfrent\",\n  \"enfrentarmos\": \"enfrent\",\n  \"enfrentava\": \"enfrent\",\n  \"enfrente\": \"enfrent\",\n  \"enfrentei\": \"enfrent\",\n  \"enfrento\": \"enfrent\",\n  \"enfrentou\": \"enfrent\",\n  \"enfurecer\": \"enfurec\",\n  \"engabelar\": \"engabel\",\n  \"engajadas\": \"engaj\",\n  \"engajado\": \"engaj\",\n  \"engajados\": \"engaj\",\n  \"engajamento\": \"engaj\",\n  \"engajamentos\": \"engaj\",\n  \"engajou\": \"engaj\",\n  \"engalfinham\": \"engalfinh\",\n  \"engalfinhar\": \"engalfinh\",\n  \"engana\": \"engan\",\n  \"enganação\": \"engan\",\n  \"enganada\": \"engan\",\n  \"enganados\": \"engan\",\n  \"engano\": \"engan\",\n  \"enganosa\": \"engan\",\n  \"enganou\": \"engan\",\n  \"engarrafa\": \"engarraf\",\n  \"engarrafadas\": \"engarraf\",\n  \"engarrafado\": \"engarraf\",\n  \"engarrafados\": \"engarraf\",\n  \"engarrafamento\": \"engarraf\",\n  \"engarrafamentos\": \"engarraf\",\n  \"engasga\": \"engasg\",\n  \"engatado\": \"engat\",\n  \"engatinhando\": \"engatinh\",\n  \"engatinhava\": \"engatinh\",\n  \"engendrar\": \"engendr\",\n  \"engenharia\": \"engenh\",\n  \"engenheira\": \"engenheir\",\n  \"engenheiro\": \"engenheir\",\n  \"engenheiros\": \"engenheir\",\n  \"engenho\": \"engenh\",\n  \"engenhocas\": \"engenhoc\",\n  \"engenhosidade\": \"engenhos\",\n  \"engenhoso\": \"engenh\",\n  \"england\": \"england\",\n  \"engloba\": \"englob\",\n  \"englobam\": \"englob\",\n  \"englobará\": \"englob\",\n  \"engolido\": \"engol\",\n  \"engolidos\": \"engol\",\n  \"engolir\": \"engol\",\n  \"engoliram\": \"engol\",\n  \"engoliu\": \"engol\",\n  \"engomadinho\": \"engomadinh\",\n  \"engorda\": \"engord\",\n  \"engordado\": \"engord\",\n  \"engordam\": \"engord\",\n  \"engordando\": \"engord\",\n  \"engordar\": \"engord\",\n  \"engordarem\": \"engord\",\n  \"engordava\": \"engord\",\n  \"engordavam\": \"engord\",\n  \"engordei\": \"engord\",\n  \"engordo\": \"engord\",\n  \"engordou\": \"engord\",\n  \"engraçada\": \"engrac\",\n  \"engraçadas\": \"engrac\",\n  \"engraçadíssima\": \"engraçadíssim\",\n  \"engraçadíssimo\": \"engraçadíssim\",\n  \"engraçado\": \"engrac\",\n  \"engrandecer\": \"engrandec\",\n  \"engrandecido\": \"engrandec\",\n  \"engravatados\": \"engravat\",\n  \"engravidar\": \"engravid\",\n  \"engravidaram\": \"engravid\",\n  \"engravidei\": \"engravid\",\n  \"engravidou\": \"engravid\",\n  \"engraxate\": \"engraxat\",\n  \"engrenagem\": \"engrenag\",\n  \"engrenagens\": \"engrenagens\",\n  \"engrenar\": \"engren\",\n  \"engrossa\": \"engross\",\n  \"enguiçado\": \"enguic\",\n  \"engulo\": \"engul\",\n  \"enigma\": \"enigm\",\n  \"enigmas\": \"enigm\",\n  \"enigmático\": \"enigmát\",\n  \"enjoada\": \"enjo\",\n  \"enjôo\": \"enjô\",\n  \"enlace\": \"enlac\",\n  \"enlouquece\": \"enlouquec\",\n  \"enlouquecer\": \"enlouquec\",\n  \"enlouqueceram\": \"enlouquec\",\n  \"enlouqueceu\": \"enlouquec\",\n  \"enlouqueciam\": \"enlouquec\",\n  \"enlouquecido\": \"enlouquec\",\n  \"enobrece\": \"enobrec\",\n  \"enola\": \"enol\",\n  \"enólogo\": \"enólog\",\n  \"enorme\": \"enorm\",\n  \"enormemente\": \"enorm\",\n  \"enormes\": \"enorm\",\n  \"enough\": \"enough\",\n  \"enquadra\": \"enquadr\",\n  \"enquadradas\": \"enquadr\",\n  \"enquadrar\": \"enquadr\",\n  \"enquadrou\": \"enquadr\",\n  \"enquanto\": \"enquant\",\n  \"enquete\": \"enquet\",\n  \"enraivecessem\": \"enraivec\",\n  \"enrascada\": \"enrasc\",\n  \"enredo\": \"enred\",\n  \"enredos\": \"enred\",\n  \"enriquece\": \"enriquec\",\n  \"enriquecer\": \"enriquec\",\n  \"enriqueceram\": \"enriquec\",\n  \"enriqueceu\": \"enriquec\",\n  \"enriquecido\": \"enriquec\",\n  \"enrolada\": \"enrol\",\n  \"enrolado\": \"enrol\",\n  \"enrolar\": \"enrol\",\n  \"enrolaram\": \"enrol\",\n  \"enroscado\": \"enrosc\",\n  \"enroscando\": \"enrosc\",\n  \"enrustido\": \"enrust\",\n  \"enrustidos\": \"enrust\",\n  \"ensaiar\": \"ensai\",\n  \"ensaiaram\": \"ensai\",\n  \"ensaiava\": \"ensai\",\n  \"ensaio\": \"ensai\",\n  \"ensaios\": \"ensai\",\n  \"ensaiou\": \"ensai\",\n  \"ensaísmo\": \"ensaísm\",\n  \"ensaísta\": \"ensaíst\",\n  \"ensaístas\": \"ensaíst\",\n  \"ensangüentado\": \"ensangüent\",\n  \"ensina\": \"ensin\",\n  \"ensiná\": \"ensin\",\n  \"ensinam\": \"ensin\",\n  \"ensinamentos\": \"ensin\",\n  \"ensinamos\": \"ensin\",\n  \"ensinando\": \"ensin\",\n  \"ensinar\": \"ensin\",\n  \"ensinavam\": \"ensin\",\n  \"ensino\": \"ensin\",\n  \"ensinou\": \"ensin\",\n  \"ensolarado\": \"ensolar\",\n  \"ensurdecedor\": \"ensurdecedor\",\n  \"ensurdecedora\": \"ensurdecedor\",\n  \"entalar\": \"ental\",\n  \"entanto\": \"entant\",\n  \"então\": \"entã\",\n  \"entardecer\": \"entardec\",\n  \"ente\": \"ente\",\n  \"entediante\": \"entedi\",\n  \"entenda\": \"entend\",\n  \"entende\": \"entend\",\n  \"entendê\": \"entend\",\n  \"entendedor\": \"entendedor\",\n  \"entendem\": \"entend\",\n  \"entendemos\": \"entend\",\n  \"entendendo\": \"entend\",\n  \"entender\": \"entend\",\n  \"entenderam\": \"entend\",\n  \"entenderão\": \"entend\",\n  \"entenderem\": \"entend\",\n  \"entenderia\": \"entend\",\n  \"entenderiam\": \"entend\",\n  \"entendesse\": \"entend\",\n  \"entendeu\": \"entend\",\n  \"entendi\": \"entend\",\n  \"entendia\": \"entend\",\n  \"entendiadas\": \"entendi\",\n  \"entendíamos\": \"entend\",\n  \"entendida\": \"entend\",\n  \"entendido\": \"entend\",\n  \"entendidos\": \"entend\",\n  \"entendimento\": \"entend\",\n  \"entendo\": \"entend\",\n  \"enterprise\": \"enterpris\",\n  \"enterrado\": \"enterr\",\n  \"enterrados\": \"enterr\",\n  \"enterrar\": \"enterr\",\n  \"enterraria\": \"enterr\",\n  \"enterro\": \"enterr\",\n  \"enterros\": \"enterr\",\n  \"entidade\": \"entidad\",\n  \"entidades\": \"entidad\",\n  \"entoa\": \"ento\",\n  \"entoado\": \"ento\",\n  \"entoam\": \"ento\",\n  \"entoando\": \"ento\",\n  \"entoar\": \"ento\",\n  \"entonação\": \"enton\",\n  \"entope\": \"entop\",\n  \"entopem\": \"entop\",\n  \"entorno\": \"entorn\",\n  \"entorpecente\": \"entorpecent\",\n  \"entorpecentes\": \"entorpecent\",\n  \"entorpecido\": \"entorpec\",\n  \"entortado\": \"entort\",\n  \"entortava\": \"entort\",\n  \"entra\": \"entra\",\n  \"entrada\": \"entrad\",\n  \"entrado\": \"entrad\",\n  \"entram\": \"entram\",\n  \"entramos\": \"entram\",\n  \"entrando\": \"entrand\",\n  \"entranhas\": \"entranh\",\n  \"entrar\": \"entrar\",\n  \"entrará\": \"entrar\",\n  \"entraram\": \"entrar\",\n  \"entraremos\": \"entrar\",\n  \"entraria\": \"entrar\",\n  \"entrariam\": \"entrar\",\n  \"entrarmos\": \"entrarm\",\n  \"entrassem\": \"entrass\",\n  \"entrava\": \"entrav\",\n  \"entravam\": \"entrav\",\n  \"entraves\": \"entrav\",\n  \"entre\": \"entre\",\n  \"entrecortado\": \"entrecort\",\n  \"entrega\": \"entreg\",\n  \"entregá\": \"entreg\",\n  \"entregado\": \"entreg\",\n  \"entregador\": \"entreg\",\n  \"entregadores\": \"entreg\",\n  \"entregam\": \"entreg\",\n  \"entregando\": \"entreg\",\n  \"entregar\": \"entreg\",\n  \"entregaram\": \"entreg\",\n  \"entregas\": \"entreg\",\n  \"entregasse\": \"entreg\",\n  \"entregou\": \"entreg\",\n  \"entregue\": \"entreg\",\n  \"entreguei\": \"entregu\",\n  \"entregues\": \"entregu\",\n  \"entrei\": \"entre\",\n  \"entrem\": \"entrem\",\n  \"entrepostos\": \"entrepost\",\n  \"entretanto\": \"entretant\",\n  \"entretenimento\": \"entreten\",\n  \"entrevista\": \"entrev\",\n  \"entrevistá\": \"entrevist\",\n  \"entrevistadas\": \"entrevist\",\n  \"entrevistado\": \"entrevist\",\n  \"entrevistador\": \"entrevist\",\n  \"entrevistados\": \"entrevist\",\n  \"entrevistar\": \"entrevist\",\n  \"entrevistas\": \"entrev\",\n  \"entrevistou\": \"entrevist\",\n  \"entrincheirados\": \"entrincheir\",\n  \"entristece\": \"entristec\",\n  \"entristeceu\": \"entristec\",\n  \"entro\": \"entro\",\n  \"entroncamentos\": \"entronc\",\n  \"entrosou\": \"entros\",\n  \"entrou\": \"entrou\",\n  \"entulhados\": \"entulh\",\n  \"entulhos\": \"entulh\",\n  \"entupi\": \"entup\",\n  \"entupida\": \"entup\",\n  \"entupido\": \"entup\",\n  \"entupimento\": \"entup\",\n  \"entupindo\": \"entup\",\n  \"entupir\": \"entup\",\n  \"entupiram\": \"entup\",\n  \"entusiasma\": \"entusiasm\",\n  \"entusiasmada\": \"entusiasm\",\n  \"entusiasmado\": \"entusiasm\",\n  \"entusiasmo\": \"entusiasm\",\n  \"entusiasmou\": \"entusiasm\",\n  \"entusiasta\": \"entusiast\",\n  \"enumera\": \"enum\",\n  \"enunciando\": \"enunc\",\n  \"envelheçam\": \"envelhec\",\n  \"envelhece\": \"envelhec\",\n  \"envelhecem\": \"envelhec\",\n  \"envelhecer\": \"envelhec\",\n  \"envelheceram\": \"envelhec\",\n  \"envelhecida\": \"envelhec\",\n  \"envelhecidos\": \"envelhec\",\n  \"envelhecimento\": \"envelhec\",\n  \"envelheço\": \"envelhec\",\n  \"envelope\": \"envelop\",\n  \"envenenaram\": \"envenen\",\n  \"envenenou\": \"envenen\",\n  \"envergonhado\": \"envergonh\",\n  \"envergonham\": \"envergonh\",\n  \"envergonhem\": \"envergonh\",\n  \"envia\": \"envi\",\n  \"enviada\": \"envi\",\n  \"enviado\": \"envi\",\n  \"enviando\": \"envi\",\n  \"enviar\": \"envi\",\n  \"envidraçada\": \"envidrac\",\n  \"enviei\": \"envi\",\n  \"enviesados\": \"envies\",\n  \"envio\": \"envi\",\n  \"enviou\": \"envi\",\n  \"envira\": \"envir\",\n  \"envoltos\": \"envolt\",\n  \"envolve\": \"envolv\",\n  \"envolvem\": \"envolv\",\n  \"envolvendo\": \"envolv\",\n  \"envolver\": \"envolv\",\n  \"envolveram\": \"envolv\",\n  \"envolveu\": \"envolv\",\n  \"envolvia\": \"envolv\",\n  \"envolviam\": \"envolv\",\n  \"envolvida\": \"envolv\",\n  \"envolvidas\": \"envolv\",\n  \"envolvido\": \"envolv\",\n  \"envolvidos\": \"envolv\",\n  \"envolvimento\": \"envolv\",\n  \"enxada\": \"enxad\",\n  \"enxaqueca\": \"enxaquec\",\n  \"enxerga\": \"enxerg\",\n  \"enxergam\": \"enxerg\",\n  \"enxergando\": \"enxerg\",\n  \"enxergar\": \"enxerg\",\n  \"enxergarem\": \"enxerg\",\n  \"enxerto\": \"enxert\",\n  \"enxugamento\": \"enxug\",\n  \"enxugamos\": \"enxug\",\n  \"enxugasse\": \"enxug\",\n  \"enxurrada\": \"enxurr\",\n  \"enxuta\": \"enxut\",\n  \"enxutas\": \"enxut\",\n  \"eny\": \"eny\",\n  \"enya\": \"enya\",\n  \"enzima\": \"enzim\",\n  \"epcot\": \"epcot\",\n  \"epega\": \"epeg\",\n  \"epelman\": \"epelman\",\n  \"ephigênia\": \"ephigên\",\n  \"epi\": \"epi\",\n  \"epicentro\": \"epicentr\",\n  \"épicos\": \"épic\",\n  \"epidemia\": \"epidem\",\n  \"epifania\": \"epifan\",\n  \"episódio\": \"episódi\",\n  \"episódios\": \"episódi\",\n  \"epiteliais\": \"epiteli\",\n  \"epíteto\": \"epítet\",\n  \"epoca\": \"epoc\",\n  \"época\": \"époc\",\n  \"épocas\": \"époc\",\n  \"epopéia\": \"epop\",\n  \"epopéias\": \"epop\",\n  \"equação\": \"equaçã\",\n  \"equador\": \"equador\",\n  \"equalizador\": \"equaliz\",\n  \"equatorial\": \"equatorial\",\n  \"equilibra\": \"equilibr\",\n  \"equilibrá\": \"equilibr\",\n  \"equilibrada\": \"equilibr\",\n  \"equilibradas\": \"equilibr\",\n  \"equilibrados\": \"equilibr\",\n  \"equilibrar\": \"equilibr\",\n  \"equilíbrio\": \"equilíbri\",\n  \"equimoses\": \"equimos\",\n  \"equinócio\": \"equinóci\",\n  \"equinócios\": \"equinóci\",\n  \"equipadas\": \"equip\",\n  \"equipado\": \"equip\",\n  \"equipados\": \"equip\",\n  \"equipamento\": \"equip\",\n  \"equipamentos\": \"equip\",\n  \"equipe\": \"equip\",\n  \"equipes\": \"equip\",\n  \"equipou\": \"equip\",\n  \"eqüitativa\": \"eqüit\",\n  \"equity\": \"equity\",\n  \"equivale\": \"equival\",\n  \"equivalência\": \"equivalent\",\n  \"equivalente\": \"equivalent\",\n  \"equivalentes\": \"equivalent\",\n  \"equivaler\": \"equival\",\n  \"equivaleria\": \"equival\",\n  \"equivalia\": \"equival\",\n  \"equivocada\": \"equivoc\",\n  \"equivocadas\": \"equivoc\",\n  \"equivocados\": \"equivoc\",\n  \"equívoco\": \"equívoc\",\n  \"equívocos\": \"equívoc\",\n  \"era\": \"era\",\n  \"eram\": \"eram\",\n  \"éramos\": \"éram\",\n  \"erário\": \"erári\",\n  \"eras\": \"eras\",\n  \"ereção\": \"ereçã\",\n  \"eremita\": \"eremit\",\n  \"ergométrica\": \"ergométr\",\n  \"erguê\": \"ergu\",\n  \"erguendo\": \"ergu\",\n  \"erguer\": \"ergu\",\n  \"ergueram\": \"ergu\",\n  \"ergueu\": \"ergu\",\n  \"erguida\": \"ergu\",\n  \"erguido\": \"ergu\",\n  \"eric\": \"eric\",\n  \"erica\": \"eric\",\n  \"erich\": \"erich\",\n  \"eris\": \"eris\",\n  \"erisvalda\": \"erisvald\",\n  \"erkki\": \"erkki\",\n  \"ermelino\": \"ermelin\",\n  \"ermírio\": \"ermíri\",\n  \"ermo\": \"ermo\",\n  \"ermos\": \"ermos\",\n  \"ernesto\": \"ernest\",\n  \"eron\": \"eron\",\n  \"eronivaldo\": \"eronivald\",\n  \"eros\": \"eros\",\n  \"erosão\": \"erosã\",\n  \"erótica\": \"erót\",\n  \"eróticas\": \"erót\",\n  \"erótico\": \"erót\",\n  \"eróticos\": \"erót\",\n  \"erotildes\": \"erotild\",\n  \"erotismo\": \"erot\",\n  \"erotização\": \"erotiz\",\n  \"erotizada\": \"erotiz\",\n  \"erra\": \"erra\",\n  \"errada\": \"errad\",\n  \"erradas\": \"errad\",\n  \"erradicação\": \"erradic\",\n  \"erradicar\": \"erradic\",\n  \"errado\": \"errad\",\n  \"errados\": \"errad\",\n  \"erramos\": \"erram\",\n  \"errante\": \"errant\",\n  \"errar\": \"errar\",\n  \"erraram\": \"errar\",\n  \"errei\": \"erre\",\n  \"errinho\": \"errinh\",\n  \"erro\": \"erro\",\n  \"erroneamente\": \"erron\",\n  \"erros\": \"erros\",\n  \"errou\": \"errou\",\n  \"eruditas\": \"erudit\",\n  \"erudito\": \"erudit\",\n  \"erundina\": \"erundin\",\n  \"erupções\": \"erupçõ\",\n  \"erva\": \"erva\",\n  \"ervas\": \"ervas\",\n  \"ervilha\": \"ervilh\",\n  \"es\": \"es\",\n  \"esa\": \"esa\",\n  \"esaú\": \"esaú\",\n  \"esbaforido\": \"esbafor\",\n  \"esbanja\": \"esbanj\",\n  \"esbarra\": \"esbarr\",\n  \"esbarram\": \"esbarr\",\n  \"esbarrando\": \"esbarr\",\n  \"esbarrou\": \"esbarr\",\n  \"esbelta\": \"esbelt\",\n  \"esbeltos\": \"esbelt\",\n  \"esboça\": \"esboc\",\n  \"esboçada\": \"esboc\",\n  \"esboçava\": \"esboc\",\n  \"esboço\": \"esboc\",\n  \"esboços\": \"esboc\",\n  \"esboçou\": \"esboc\",\n  \"esborrachou\": \"esborrach\",\n  \"esbugalhados\": \"esbugalh\",\n  \"escabroso\": \"escabr\",\n  \"escadarias\": \"escad\",\n  \"escadas\": \"escad\",\n  \"escafandro\": \"escafandr\",\n  \"escafedeu\": \"escafed\",\n  \"escala\": \"escal\",\n  \"escalá\": \"escal\",\n  \"escalada\": \"escal\",\n  \"escaladas\": \"escal\",\n  \"escalado\": \"escal\",\n  \"escalador\": \"escal\",\n  \"escalam\": \"escal\",\n  \"escalante\": \"escal\",\n  \"escalão\": \"escalã\",\n  \"escalar\": \"escal\",\n  \"escalas\": \"escal\",\n  \"escalava\": \"escal\",\n  \"escaldante\": \"escald\",\n  \"escalou\": \"escal\",\n  \"escancara\": \"escanc\",\n  \"escancarada\": \"escancar\",\n  \"escancaradas\": \"escancar\",\n  \"escancarou\": \"escancar\",\n  \"escandalizando\": \"escandaliz\",\n  \"escandalizou\": \"escandaliz\",\n  \"escândalo\": \"escândal\",\n  \"escândalos\": \"escândal\",\n  \"escandalosamente\": \"escandal\",\n  \"escandinávia\": \"escandináv\",\n  \"escanteio\": \"escantei\",\n  \"escapa\": \"escap\",\n  \"escapadas\": \"escap\",\n  \"escapado\": \"escap\",\n  \"escapam\": \"escap\",\n  \"escapar\": \"escap\",\n  \"escapariam\": \"escap\",\n  \"escapavam\": \"escap\",\n  \"escape\": \"escap\",\n  \"escapou\": \"escap\",\n  \"escapular\": \"escapul\",\n  \"escaramuças\": \"escaramuc\",\n  \"escarpas\": \"escarp\",\n  \"escassa\": \"escass\",\n  \"escassez\": \"escassez\",\n  \"escasso\": \"escass\",\n  \"escassos\": \"escass\",\n  \"escatológica\": \"escatológ\",\n  \"escavações\": \"escav\",\n  \"escavadas\": \"escav\",\n  \"escavadeira\": \"escavadeir\",\n  \"esclareça\": \"esclarec\",\n  \"esclarece\": \"esclarec\",\n  \"esclarecedor\": \"esclarecedor\",\n  \"esclarecedora\": \"esclarecedor\",\n  \"esclarecem\": \"esclarec\",\n  \"esclarecer\": \"esclarec\",\n  \"esclareceu\": \"esclarec\",\n  \"esclarecida\": \"esclarec\",\n  \"esclarecido\": \"esclarec\",\n  \"esclarecidos\": \"esclarec\",\n  \"esclarecimento\": \"esclarec\",\n  \"esclerosadas\": \"escleros\",\n  \"esclerose\": \"escleros\",\n  \"escoados\": \"esco\",\n  \"escoamento\": \"escoament\",\n  \"escoar\": \"esco\",\n  \"escobar\": \"escob\",\n  \"escocês\": \"escocês\",\n  \"escócia\": \"escóc\",\n  \"escola\": \"escol\",\n  \"escoladas\": \"escol\",\n  \"escolar\": \"escol\",\n  \"escolares\": \"escol\",\n  \"escolaridade\": \"escolar\",\n  \"escolas\": \"escol\",\n  \"escolástica\": \"escolást\",\n  \"escolha\": \"escolh\",\n  \"escolhas\": \"escolh\",\n  \"escolhe\": \"escolh\",\n  \"escolhê\": \"escolh\",\n  \"escolhem\": \"escolh\",\n  \"escolhendo\": \"escolh\",\n  \"escolher\": \"escolh\",\n  \"escolherem\": \"escolh\",\n  \"escolheria\": \"escolh\",\n  \"escolheriam\": \"escolh\",\n  \"escolheu\": \"escolh\",\n  \"escolhi\": \"escolh\",\n  \"escolhida\": \"escolh\",\n  \"escolhidas\": \"escolh\",\n  \"escolhido\": \"escolh\",\n  \"escolhidos\": \"escolh\",\n  \"escolho\": \"escolh\",\n  \"escolinha\": \"escolinh\",\n  \"escoliose\": \"escolios\",\n  \"escolta\": \"escolt\",\n  \"escoltada\": \"escolt\",\n  \"esconde\": \"escond\",\n  \"escondem\": \"escond\",\n  \"escondemos\": \"escond\",\n  \"escondendo\": \"escond\",\n  \"esconder\": \"escond\",\n  \"escondera\": \"escond\",\n  \"escondeu\": \"escond\",\n  \"escondia\": \"escond\",\n  \"escondiam\": \"escond\",\n  \"escondida\": \"escond\",\n  \"escondidas\": \"escond\",\n  \"escondido\": \"escond\",\n  \"escondidos\": \"escond\",\n  \"escondo\": \"escond\",\n  \"escorar\": \"escor\",\n  \"escorbuto\": \"escorbut\",\n  \"escoriações\": \"escori\",\n  \"escorpião\": \"escorpiã\",\n  \"escort\": \"escort\",\n  \"escóssia\": \"escóss\",\n  \"escova\": \"escov\",\n  \"escovar\": \"escov\",\n  \"escovas\": \"escov\",\n  \"escrachada\": \"escrach\",\n  \"escrava\": \"escrav\",\n  \"escravatura\": \"escravatur\",\n  \"escravidão\": \"escravidã\",\n  \"escravo\": \"escrav\",\n  \"escravos\": \"escrav\",\n  \"escreve\": \"escrev\",\n  \"escrevem\": \"escrev\",\n  \"escrevendo\": \"escrev\",\n  \"escreventes\": \"escrevent\",\n  \"escrever\": \"escrev\",\n  \"escreveram\": \"escrev\",\n  \"escreveria\": \"escrev\",\n  \"escrevesse\": \"escrev\",\n  \"escreveu\": \"escrev\",\n  \"escrevi\": \"escrev\",\n  \"escrevia\": \"escrev\",\n  \"escreviam\": \"escrev\",\n  \"escrevo\": \"escrev\",\n  \"escrita\": \"escrit\",\n  \"escritas\": \"escrit\",\n  \"escrito\": \"escrit\",\n  \"escritor\": \"escritor\",\n  \"escritora\": \"escritor\",\n  \"escritores\": \"escritor\",\n  \"escritório\": \"escritóri\",\n  \"escritórios\": \"escritóri\",\n  \"escritos\": \"escrit\",\n  \"escritura\": \"escritur\",\n  \"escriturário\": \"escriturári\",\n  \"escrituras\": \"escritur\",\n  \"escrivão\": \"escrivã\",\n  \"escrúpulo\": \"escrúpul\",\n  \"escrúpulos\": \"escrúpul\",\n  \"escrutínio\": \"escrutíni\",\n  \"escudado\": \"escud\",\n  \"escudeira\": \"escudeir\",\n  \"escudeiro\": \"escudeir\",\n  \"escudo\": \"escud\",\n  \"esculacho\": \"esculach\",\n  \"esculhambar\": \"esculhamb\",\n  \"escultor\": \"escultor\",\n  \"escultura\": \"escultur\",\n  \"esculturas\": \"escultur\",\n  \"escura\": \"escur\",\n  \"escuras\": \"escur\",\n  \"escurecendo\": \"escurec\",\n  \"escuridão\": \"escuridã\",\n  \"escuro\": \"escur\",\n  \"escuros\": \"escur\",\n  \"escuta\": \"escut\",\n  \"escutam\": \"escut\",\n  \"escutando\": \"escut\",\n  \"escutar\": \"escut\",\n  \"escutava\": \"escut\",\n  \"esdras\": \"esdras\",\n  \"esdrúxula\": \"esdrúxul\",\n  \"esdrúxulas\": \"esdrúxul\",\n  \"esfaqueada\": \"esfaqu\",\n  \"esfarrapada\": \"esfarrap\",\n  \"esfarrapados\": \"esfarrap\",\n  \"esfera\": \"esfer\",\n  \"esferas\": \"esfer\",\n  \"esférico\": \"esfér\",\n  \"esfolar\": \"esfol\",\n  \"esfolem\": \"esfol\",\n  \"esfoliantes\": \"esfoli\",\n  \"esforçado\": \"esforc\",\n  \"esforçam\": \"esforc\",\n  \"esforçar\": \"esforc\",\n  \"esforçava\": \"esforc\",\n  \"esforce\": \"esforc\",\n  \"esforço\": \"esforc\",\n  \"esforços\": \"esforc\",\n  \"esforçou\": \"esforc\",\n  \"esfriando\": \"esfri\",\n  \"esgarçada\": \"esgarc\",\n  \"esgazeado\": \"esgaz\",\n  \"esgotá\": \"esgot\",\n  \"esgotada\": \"esgot\",\n  \"esgotadas\": \"esgot\",\n  \"esgotado\": \"esgot\",\n  \"esgotam\": \"esgot\",\n  \"esgotamento\": \"esgot\",\n  \"esgotarem\": \"esgot\",\n  \"esgotem\": \"esgot\",\n  \"esgoto\": \"esgot\",\n  \"esgotou\": \"esgot\",\n  \"esgrime\": \"esgrim\",\n  \"esgueirando\": \"esgueir\",\n  \"esmaecer\": \"esmaec\",\n  \"esmaga\": \"esmag\",\n  \"esmagada\": \"esmag\",\n  \"esmagadora\": \"esmag\",\n  \"esmagamento\": \"esmag\",\n  \"esmalte\": \"esmalt\",\n  \"esmaltes\": \"esmalt\",\n  \"esmerado\": \"esmer\",\n  \"esmerilhada\": \"esmerilh\",\n  \"esmero\": \"esmer\",\n  \"esmigalhados\": \"esmigalh\",\n  \"esmola\": \"esmol\",\n  \"esmolas\": \"esmol\",\n  \"esmorece\": \"esmorec\",\n  \"esnobe\": \"esnob\",\n  \"esnobes\": \"esnob\",\n  \"esôfago\": \"esôfag\",\n  \"esotéricas\": \"esotér\",\n  \"espaciais\": \"espac\",\n  \"espacial\": \"espacial\",\n  \"espaço\": \"espac\",\n  \"espaços\": \"espac\",\n  \"espaçosa\": \"espac\",\n  \"espaçoso\": \"espac\",\n  \"espadim\": \"espadim\",\n  \"espaldar\": \"espald\",\n  \"espalha\": \"espalh\",\n  \"espalhada\": \"espalh\",\n  \"espalhadas\": \"espalh\",\n  \"espalhado\": \"espalh\",\n  \"espalhados\": \"espalh\",\n  \"espalhafatosa\": \"espalhafat\",\n  \"espalhafatosas\": \"espalhafat\",\n  \"espalham\": \"espalh\",\n  \"espalhando\": \"espalh\",\n  \"espalhar\": \"espalh\",\n  \"espalhou\": \"espalh\",\n  \"espanca\": \"espanc\",\n  \"espancá\": \"espanc\",\n  \"espancada\": \"espanc\",\n  \"espancado\": \"espanc\",\n  \"espanha\": \"espanh\",\n  \"espanhas\": \"espanh\",\n  \"espanhóis\": \"espanhó\",\n  \"espanhol\": \"espanhol\",\n  \"espanhola\": \"espanhol\",\n  \"espanta\": \"espant\",\n  \"espantada\": \"espant\",\n  \"espantadas\": \"espant\",\n  \"espantado\": \"espant\",\n  \"espantam\": \"espant\",\n  \"espanto\": \"espant\",\n  \"espantosa\": \"espant\",\n  \"espantoso\": \"espant\",\n  \"espantosos\": \"espant\",\n  \"espantou\": \"espant\",\n  \"esparsas\": \"espars\",\n  \"esparsos\": \"espars\",\n  \"espartana\": \"espartan\",\n  \"espartanas\": \"espartan\",\n  \"espasmos\": \"espasm\",\n  \"espatifaram\": \"espatif\",\n  \"espatifou\": \"espatif\",\n  \"espátulas\": \"espátul\",\n  \"especiais\": \"espec\",\n  \"especial\": \"especial\",\n  \"especialidade\": \"especial\",\n  \"especialista\": \"especial\",\n  \"especialistas\": \"especial\",\n  \"especialização\": \"especializ\",\n  \"especializações\": \"especializ\",\n  \"especializada\": \"especializ\",\n  \"especializadas\": \"especializ\",\n  \"especializado\": \"especializ\",\n  \"especializados\": \"especializ\",\n  \"especializando\": \"especializ\",\n  \"especializou\": \"especializ\",\n  \"especialmente\": \"especial\",\n  \"especiarias\": \"espec\",\n  \"espécie\": \"espéc\",\n  \"espécies\": \"espéc\",\n  \"específica\": \"específ\",\n  \"especificações\": \"especific\",\n  \"especificada\": \"especific\",\n  \"especificamente\": \"especif\",\n  \"especificar\": \"especific\",\n  \"específicas\": \"específ\",\n  \"específico\": \"específ\",\n  \"específicos\": \"específ\",\n  \"espécime\": \"espécim\",\n  \"espécimes\": \"espécim\",\n  \"espectador\": \"espect\",\n  \"espectadora\": \"espect\",\n  \"espectadores\": \"espect\",\n  \"espectro\": \"espectr\",\n  \"especula\": \"especul\",\n  \"especulação\": \"especul\",\n  \"especulações\": \"especul\",\n  \"especuladores\": \"especul\",\n  \"especulando\": \"especul\",\n  \"especular\": \"especul\",\n  \"especulativa\": \"especul\",\n  \"espelha\": \"espelh\",\n  \"espelhar\": \"espelh\",\n  \"espelho\": \"espelh\",\n  \"espelhos\": \"espelh\",\n  \"espera\": \"esper\",\n  \"esperada\": \"esper\",\n  \"esperadas\": \"esper\",\n  \"esperado\": \"esper\",\n  \"esperados\": \"esper\",\n  \"esperam\": \"esper\",\n  \"esperamos\": \"esper\",\n  \"esperança\": \"esperanc\",\n  \"esperanças\": \"esperanc\",\n  \"esperançosa\": \"esperanc\",\n  \"esperando\": \"esper\",\n  \"esperar\": \"esper\",\n  \"esperas\": \"esper\",\n  \"esperava\": \"esper\",\n  \"esperavam\": \"esper\",\n  \"esperávamos\": \"esper\",\n  \"espere\": \"esper\",\n  \"esperidião\": \"esperidiã\",\n  \"esperma\": \"esperm\",\n  \"espermatozóides\": \"espermatozóid\",\n  \"espermograma\": \"espermogram\",\n  \"espermogramas\": \"espermogram\",\n  \"espermópolis\": \"espermópol\",\n  \"espero\": \"esper\",\n  \"esperou\": \"esper\",\n  \"esperta\": \"espert\",\n  \"espertalhões\": \"espertalhõ\",\n  \"espertamente\": \"espert\",\n  \"esperteza\": \"espert\",\n  \"esperto\": \"espert\",\n  \"espertos\": \"espert\",\n  \"espessa\": \"espess\",\n  \"espeta\": \"espet\",\n  \"espetacular\": \"espetacul\",\n  \"espetaculares\": \"espetacul\",\n  \"espetacularmente\": \"espetacular\",\n  \"espetáculo\": \"espetácul\",\n  \"espetáculos\": \"espetácul\",\n  \"espetado\": \"espet\",\n  \"espiã\": \"espiã\",\n  \"espiando\": \"espi\",\n  \"espião\": \"espiã\",\n  \"espiar\": \"espi\",\n  \"espinha\": \"espinh\",\n  \"espinhas\": \"espinh\",\n  \"espinhentos\": \"espinhent\",\n  \"espinhosa\": \"espinh\",\n  \"espinhosas\": \"espinh\",\n  \"espiões\": \"espiõ\",\n  \"espionagem\": \"espionag\",\n  \"espionar\": \"espion\",\n  \"espiral\": \"espiral\",\n  \"espíritas\": \"espírit\",\n  \"espírito\": \"espírit\",\n  \"espíritos\": \"espírit\",\n  \"espirituais\": \"espiritu\",\n  \"espiritual\": \"espiritual\",\n  \"espiritualmente\": \"espiritual\",\n  \"espirro\": \"espirr\",\n  \"esplanada\": \"esplan\",\n  \"esplêndida\": \"esplênd\",\n  \"esplêndido\": \"esplênd\",\n  \"esplendor\": \"esplendor\",\n  \"espn\": \"espn\",\n  \"espocaram\": \"espoc\",\n  \"espoliação\": \"espoli\",\n  \"espólio\": \"espóli\",\n  \"espontânea\": \"espontân\",\n  \"espontaneamente\": \"espontan\",\n  \"espontaneidade\": \"espontan\",\n  \"espontâneo\": \"espontân\",\n  \"esporte\": \"esport\",\n  \"esportes\": \"esport\",\n  \"esportista\": \"esport\",\n  \"esportistas\": \"esport\",\n  \"esportiva\": \"esport\",\n  \"esportivas\": \"esport\",\n  \"esportivo\": \"esport\",\n  \"esportivos\": \"esport\",\n  \"esposa\": \"espos\",\n  \"esposas\": \"espos\",\n  \"esposo\": \"espos\",\n  \"espreguiçando\": \"espreguic\",\n  \"espreita\": \"espreit\",\n  \"espreme\": \"esprem\",\n  \"espremer\": \"esprem\",\n  \"espremeram\": \"esprem\",\n  \"espremida\": \"esprem\",\n  \"espremido\": \"esprem\",\n  \"espresso\": \"espress\",\n  \"espuma\": \"espum\",\n  \"espumante\": \"espum\",\n  \"esq\": \"esq\",\n  \"esquadra\": \"esquadr\",\n  \"esquadrias\": \"esquadr\",\n  \"esquadrilha\": \"esquadrilh\",\n  \"esquadrinhar\": \"esquadrinh\",\n  \"esquálidas\": \"esquál\",\n  \"esqueça\": \"esquec\",\n  \"esquece\": \"esquec\",\n  \"esquecê\": \"esquec\",\n  \"esquecem\": \"esquec\",\n  \"esquecemos\": \"esquec\",\n  \"esquecendo\": \"esquec\",\n  \"esquecer\": \"esquec\",\n  \"esqueceram\": \"esquec\",\n  \"esqueceria\": \"esquec\",\n  \"esquecermos\": \"esquec\",\n  \"esquecesse\": \"esquec\",\n  \"esqueceu\": \"esquec\",\n  \"esqueci\": \"esquec\",\n  \"esquecia\": \"esquec\",\n  \"esqueciam\": \"esquec\",\n  \"esquecida\": \"esquec\",\n  \"esquecidas\": \"esquec\",\n  \"esquecido\": \"esquec\",\n  \"esquecidos\": \"esquec\",\n  \"esqueda\": \"esqued\",\n  \"esquedo\": \"esqued\",\n  \"esqueleto\": \"esquelet\",\n  \"esqueletos\": \"esquelet\",\n  \"esquema\": \"esquem\",\n  \"esquemas\": \"esquem\",\n  \"esquenta\": \"esquent\",\n  \"esquentam\": \"esquent\",\n  \"esquentar\": \"esquent\",\n  \"esquentei\": \"esquent\",\n  \"esquentou\": \"esquent\",\n  \"esquerda\": \"esquerd\",\n  \"esquerdista\": \"esquerd\",\n  \"esquerdistas\": \"esquerd\",\n  \"esquerdo\": \"esquerd\",\n  \"esquetes\": \"esquet\",\n  \"esqui\": \"esqu\",\n  \"esquiador\": \"esquiador\",\n  \"esquiadores\": \"esquiador\",\n  \"esquiar\": \"esqui\",\n  \"esquina\": \"esquin\",\n  \"esquinas\": \"esquin\",\n  \"esquire\": \"esquir\",\n  \"esquisitas\": \"esquisit\",\n  \"esquisitices\": \"esquisitic\",\n  \"esquisito\": \"esquisit\",\n  \"esquisitos\": \"esquisit\",\n  \"esquistossomose\": \"esquistossomos\",\n  \"esquiva\": \"esquiv\",\n  \"esquivar\": \"esquiv\",\n  \"esquivou\": \"esquiv\",\n  \"esquizofrenia\": \"esquizofren\",\n  \"esquizofrênico\": \"esquizofrên\",\n  \"essa\": \"essa\",\n  \"essas\": \"essas\",\n  \"esse\": \"esse\",\n  \"essência\": \"essênc\",\n  \"essenciais\": \"essenc\",\n  \"essencial\": \"essencial\",\n  \"essências\": \"essênc\",\n  \"esses\": \"esses\",\n  \"esso\": \"esso\",\n  \"esta\": \"esta\",\n  \"está\": \"está\",\n  \"estabelece\": \"estabelec\",\n  \"estabelecem\": \"estabelec\",\n  \"estabelecer\": \"estabelec\",\n  \"estabeleceram\": \"estabelec\",\n  \"estabeleceu\": \"estabelec\",\n  \"estabelecia\": \"estabelec\",\n  \"estabelecida\": \"estabelec\",\n  \"estabelecidas\": \"estabelec\",\n  \"estabelecido\": \"estabelec\",\n  \"estabelecidos\": \"estabelec\",\n  \"estabelecimento\": \"estabelec\",\n  \"estabelecimentos\": \"estabelec\",\n  \"estabilidade\": \"estabil\",\n  \"estabiliza\": \"estabiliz\",\n  \"estabilização\": \"estabiliz\",\n  \"estabilizada\": \"estabiliz\",\n  \"estabilizadas\": \"estabiliz\",\n  \"estabilizado\": \"estabiliz\",\n  \"estabilizar\": \"estabiliz\",\n  \"estabilizou\": \"estabiliz\",\n  \"establishment\": \"establishment\",\n  \"estaca\": \"estac\",\n  \"estação\": \"estaçã\",\n  \"estacas\": \"estac\",\n  \"estaciona\": \"estacion\",\n  \"estacioná\": \"estacion\",\n  \"estacionado\": \"estacion\",\n  \"estacionamento\": \"estacion\",\n  \"estacionamentos\": \"estacion\",\n  \"estacionando\": \"estacion\",\n  \"estacionar\": \"estacion\",\n  \"estacionou\": \"estacion\",\n  \"estações\": \"estaçõ\",\n  \"estada\": \"estad\",\n  \"estádio\": \"estádi\",\n  \"estádios\": \"estádi\",\n  \"estadistas\": \"estad\",\n  \"estado\": \"estad\",\n  \"estados\": \"estad\",\n  \"estaduais\": \"estadu\",\n  \"estadual\": \"estadual\",\n  \"estafa\": \"estaf\",\n  \"estafante\": \"estaf\",\n  \"estágio\": \"estági\",\n  \"estágios\": \"estági\",\n  \"estagnação\": \"estagn\",\n  \"estagnada\": \"estagn\",\n  \"estagnadas\": \"estagn\",\n  \"estagnado\": \"estagn\",\n  \"estala\": \"estal\",\n  \"estalado\": \"estal\",\n  \"estalinho\": \"estalinh\",\n  \"estamos\": \"estam\",\n  \"estampada\": \"estamp\",\n  \"estampado\": \"estamp\",\n  \"estampados\": \"estamp\",\n  \"estampam\": \"estamp\",\n  \"estampas\": \"estamp\",\n  \"estampava\": \"estamp\",\n  \"estancamento\": \"estanc\",\n  \"estande\": \"estand\",\n  \"estandes\": \"estand\",\n  \"estando\": \"estand\",\n  \"estante\": \"estant\",\n  \"estão\": \"estã\",\n  \"estar\": \"estar\",\n  \"estará\": \"estar\",\n  \"estarão\": \"estarã\",\n  \"estardalhaço\": \"estardalhac\",\n  \"estarei\": \"estar\",\n  \"estarem\": \"estar\",\n  \"estaremos\": \"estar\",\n  \"estaria\": \"estar\",\n  \"estariam\": \"estar\",\n  \"estaríamos\": \"estar\",\n  \"estarrecedor\": \"estarrecedor\",\n  \"estarrecido\": \"estarrec\",\n  \"estas\": \"estas\",\n  \"estatais\": \"estat\",\n  \"estatal\": \"estatal\",\n  \"estatelar\": \"estatel\",\n  \"estatelou\": \"estatel\",\n  \"estática\": \"estát\",\n  \"estatismo\": \"estat\",\n  \"estatística\": \"estatíst\",\n  \"estatísticas\": \"estatíst\",\n  \"estatístico\": \"estatíst\",\n  \"estatísticos\": \"estatíst\",\n  \"estátua\": \"estátu\",\n  \"estatura\": \"estatur\",\n  \"estatuto\": \"estatut\",\n  \"estava\": \"estav\",\n  \"estavam\": \"estav\",\n  \"estávamos\": \"estáv\",\n  \"estáveis\": \"estáv\",\n  \"estável\": \"estável\",\n  \"este\": \"este\",\n  \"estée\": \"esté\",\n  \"estefani\": \"estefan\",\n  \"esteira\": \"esteir\",\n  \"esteiras\": \"esteir\",\n  \"esteja\": \"estej\",\n  \"estejam\": \"estej\",\n  \"estela\": \"estel\",\n  \"estelares\": \"estel\",\n  \"estelionatários\": \"estelionatári\",\n  \"estelionato\": \"estelionat\",\n  \"estende\": \"estend\",\n  \"estendem\": \"estend\",\n  \"estendendo\": \"estend\",\n  \"estender\": \"estend\",\n  \"estenderá\": \"estend\",\n  \"estenderam\": \"estend\",\n  \"estendia\": \"estend\",\n  \"estendida\": \"estend\",\n  \"estendido\": \"estend\",\n  \"estênio\": \"estêni\",\n  \"estepe\": \"estep\",\n  \"estepes\": \"estep\",\n  \"ester\": \"ester\",\n  \"estéreis\": \"estér\",\n  \"estereofonizou\": \"estereofoniz\",\n  \"estereotipada\": \"estereotip\",\n  \"estereótipo\": \"estereótip\",\n  \"estereótipos\": \"estereótip\",\n  \"estéril\": \"estéril\",\n  \"esterilidade\": \"esteril\",\n  \"esterilizar\": \"esteriliz\",\n  \"esterlina\": \"esterlin\",\n  \"esteróide\": \"esteróid\",\n  \"esterzinha\": \"esterzinh\",\n  \"estes\": \"estes\",\n  \"estética\": \"estét\",\n  \"esteticamente\": \"estet\",\n  \"estético\": \"estét\",\n  \"estéticos\": \"estét\",\n  \"estevam\": \"estev\",\n  \"estevão\": \"estevã\",\n  \"esteve\": \"estev\",\n  \"esteves\": \"estev\",\n  \"estevez\": \"estevez\",\n  \"esther\": \"esther\",\n  \"estherzinha\": \"estherzinh\",\n  \"esticada\": \"estic\",\n  \"esticadas\": \"estic\",\n  \"esticar\": \"estic\",\n  \"estico\": \"estic\",\n  \"estigma\": \"estigm\",\n  \"estigmatizada\": \"estigmatiz\",\n  \"estilhaços\": \"estilhac\",\n  \"estilingue\": \"estiling\",\n  \"estilista\": \"estil\",\n  \"estilistas\": \"estil\",\n  \"estilo\": \"estil\",\n  \"estilos\": \"estil\",\n  \"estima\": \"estim\",\n  \"estimação\": \"estim\",\n  \"estimada\": \"estim\",\n  \"estimado\": \"estim\",\n  \"estimados\": \"estim\",\n  \"estimam\": \"estim\",\n  \"estimara\": \"estim\",\n  \"estimativa\": \"estim\",\n  \"estimativas\": \"estim\",\n  \"estimavam\": \"estim\",\n  \"estimula\": \"estimul\",\n  \"estimulá\": \"estimul\",\n  \"estimulação\": \"estimul\",\n  \"estimulada\": \"estimul\",\n  \"estimuladas\": \"estimul\",\n  \"estimulado\": \"estimul\",\n  \"estimulador\": \"estimul\",\n  \"estimulados\": \"estimul\",\n  \"estimulam\": \"estimul\",\n  \"estimulando\": \"estimul\",\n  \"estimular\": \"estimul\",\n  \"estimule\": \"estimul\",\n  \"estímulo\": \"estímul\",\n  \"estímulos\": \"estímul\",\n  \"estimulou\": \"estimul\",\n  \"estipula\": \"estipul\",\n  \"estipulada\": \"estipul\",\n  \"estipulado\": \"estipul\",\n  \"estipular\": \"estipul\",\n  \"estiramento\": \"estir\",\n  \"estirpe\": \"estirp\",\n  \"estivador\": \"estiv\",\n  \"estivas\": \"estiv\",\n  \"estive\": \"estiv\",\n  \"estivemos\": \"estiv\",\n  \"estiver\": \"estiv\",\n  \"estiveram\": \"estiv\",\n  \"estiverem\": \"estiv\",\n  \"estivermos\": \"estiv\",\n  \"estivesse\": \"estiv\",\n  \"estivessem\": \"estiv\",\n  \"estivéssemos\": \"estivéss\",\n  \"estocadas\": \"estoc\",\n  \"estocados\": \"estoc\",\n  \"estocagem\": \"estocag\",\n  \"estojo\": \"estoj\",\n  \"estomacal\": \"estomacal\",\n  \"estômago\": \"estômag\",\n  \"estonteante\": \"estont\",\n  \"estonteantes\": \"estont\",\n  \"estopim\": \"estopim\",\n  \"estoque\": \"estoqu\",\n  \"estoques\": \"estoqu\",\n  \"estórias\": \"estór\",\n  \"estorvo\": \"estorv\",\n  \"estou\": \"estou\",\n  \"estoura\": \"estour\",\n  \"estourado\": \"estour\",\n  \"estourar\": \"estour\",\n  \"estouro\": \"estour\",\n  \"estourou\": \"estour\",\n  \"estoy\": \"estoy\",\n  \"estrabismo\": \"estrab\",\n  \"estrada\": \"estrad\",\n  \"estradas\": \"estrad\",\n  \"estradinha\": \"estradinh\",\n  \"estrados\": \"estrad\",\n  \"estraga\": \"estrag\",\n  \"estragados\": \"estrag\",\n  \"estragam\": \"estrag\",\n  \"estragar\": \"estrag\",\n  \"estrago\": \"estrag\",\n  \"estragos\": \"estrag\",\n  \"estrangeira\": \"estrangeir\",\n  \"estrangeiras\": \"estrangeir\",\n  \"estrangeiro\": \"estrangeir\",\n  \"estrangeiros\": \"estrangeir\",\n  \"estrangulado\": \"estrangul\",\n  \"estrangularam\": \"estrangul\",\n  \"estranha\": \"estranh\",\n  \"estranham\": \"estranh\",\n  \"estranhamento\": \"estranh\",\n  \"estranhar\": \"estranh\",\n  \"estranhas\": \"estranh\",\n  \"estranheza\": \"estranh\",\n  \"estranho\": \"estranh\",\n  \"estranhos\": \"estranh\",\n  \"estranhou\": \"estranh\",\n  \"estratagemas\": \"estratagem\",\n  \"estratégia\": \"estratég\",\n  \"estratégias\": \"estratég\",\n  \"estratégica\": \"estratég\",\n  \"estrategicamente\": \"estrateg\",\n  \"estratégicas\": \"estratég\",\n  \"estratégicos\": \"estratég\",\n  \"estreante\": \"estreant\",\n  \"estrear\": \"estre\",\n  \"estréia\": \"estré\",\n  \"estréiam\": \"estré\",\n  \"estreita\": \"estreit\",\n  \"estreitamente\": \"estreit\",\n  \"estreitando\": \"estreit\",\n  \"estreitar\": \"estreit\",\n  \"estreitas\": \"estreit\",\n  \"estreito\": \"estreit\",\n  \"estreitos\": \"estreit\",\n  \"estrela\": \"estrel\",\n  \"estrelado\": \"estrel\",\n  \"estrelados\": \"estrel\",\n  \"estrelar\": \"estrel\",\n  \"estrelas\": \"estrel\",\n  \"estrelato\": \"estrelat\",\n  \"estrelismos\": \"estrel\",\n  \"estremeciam\": \"estremec\",\n  \"estreou\": \"estre\",\n  \"estrepem\": \"estrep\",\n  \"estressa\": \"estress\",\n  \"estressada\": \"estress\",\n  \"estressadas\": \"estress\",\n  \"estressado\": \"estress\",\n  \"estressante\": \"estress\",\n  \"estressantes\": \"estress\",\n  \"estresse\": \"estress\",\n  \"estria\": \"estri\",\n  \"estrias\": \"estri\",\n  \"estridentes\": \"estrident\",\n  \"estripulias\": \"estripul\",\n  \"estritamente\": \"estrit\",\n  \"estrito\": \"estrit\",\n  \"estrofe\": \"estrof\",\n  \"estrofes\": \"estrof\",\n  \"estrógeno\": \"estrógen\",\n  \"estrondo\": \"estrond\",\n  \"estrondoso\": \"estrond\",\n  \"estrutura\": \"estrutur\",\n  \"estruturadas\": \"estrutur\",\n  \"estruturadora\": \"estrutur\",\n  \"estruturadores\": \"estrutur\",\n  \"estruturais\": \"estrutur\",\n  \"estrutural\": \"estrutural\",\n  \"estruturando\": \"estrutur\",\n  \"estruturas\": \"estrutur\",\n  \"estuda\": \"estud\",\n  \"estudada\": \"estud\",\n  \"estudadas\": \"estud\",\n  \"estudado\": \"estud\",\n  \"estudam\": \"estud\",\n  \"estudando\": \"estud\",\n  \"estudante\": \"estud\",\n  \"estudantes\": \"estud\",\n  \"estudantis\": \"estudant\",\n  \"estudar\": \"estud\",\n  \"estudaram\": \"estud\",\n  \"estudava\": \"estud\",\n  \"estúdio\": \"estúdi\",\n  \"estúdios\": \"estúdi\",\n  \"estudioso\": \"estudi\",\n  \"estudiosos\": \"estudi\",\n  \"estudo\": \"estud\",\n  \"estudos\": \"estud\",\n  \"estudou\": \"estud\",\n  \"estufa\": \"estuf\",\n  \"estupenda\": \"estupend\",\n  \"estúpidas\": \"estúp\",\n  \"estupidez\": \"estupidez\",\n  \"estuprada\": \"estupr\",\n  \"estupravam\": \"estupr\",\n  \"estupro\": \"estupr\",\n  \"esturricada\": \"esturric\",\n  \"estvez\": \"estvez\",\n  \"esvair\": \"esva\",\n  \"esvazia\": \"esvaz\",\n  \"esvaziado\": \"esvazi\",\n  \"esvaziamos\": \"esvazi\",\n  \"esvaziar\": \"esvazi\",\n  \"esvaziaram\": \"esvazi\",\n  \"esvaziou\": \"esvazi\",\n  \"esverdeada\": \"esverd\",\n  \"esverdeado\": \"esverd\",\n  \"esverdeados\": \"esverd\",\n  \"et\": \"et\",\n  \"etanol\": \"etanol\",\n  \"etapa\": \"etap\",\n  \"etapas\": \"etap\",\n  \"etária\": \"etár\",\n  \"etc\": \"etc\",\n  \"etelma\": \"etelm\",\n  \"éter\": \"éter\",\n  \"eterna\": \"etern\",\n  \"eternamente\": \"etern\",\n  \"eternidade\": \"etern\",\n  \"eternit\": \"eternit\",\n  \"eternizam\": \"eterniz\",\n  \"eterno\": \"etern\",\n  \"etezinhos\": \"etezinh\",\n  \"ética\": \"étic\",\n  \"éticas\": \"étic\",\n  \"ético\": \"étic\",\n  \"éticos\": \"étic\",\n  \"etiqueta\": \"etiquet\",\n  \"etiquetas\": \"etiquet\",\n  \"etnia\": \"etni\",\n  \"etnias\": \"etni\",\n  \"étnica\": \"étnic\",\n  \"étnicas\": \"étnic\",\n  \"étnico\": \"étnic\",\n  \"étnicos\": \"étnic\",\n  \"etno\": \"etno\",\n  \"ets\": \"ets\",\n  \"eu\": \"eu\",\n  \"eua\": \"eua\",\n  \"euclides\": \"euclid\",\n  \"eudes\": \"eud\",\n  \"eufemismos\": \"eufem\",\n  \"euforia\": \"eufor\",\n  \"eufóricas\": \"eufór\",\n  \"eufórico\": \"eufór\",\n  \"eugênia\": \"eugên\",\n  \"eugenio\": \"eugeni\",\n  \"eugênio\": \"eugêni\",\n  \"eumano\": \"euman\",\n  \"eunice\": \"eunic\",\n  \"eureka\": \"eurek\",\n  \"eurico\": \"euric\",\n  \"eurídice\": \"eurídic\",\n  \"eurípedes\": \"euríped\",\n  \"euro\": \"eur\",\n  \"eurocentrismo\": \"eurocentr\",\n  \"eurocéticos\": \"eurocét\",\n  \"europa\": \"europ\",\n  \"européia\": \"europ\",\n  \"européias\": \"europ\",\n  \"europeu\": \"europ\",\n  \"europeus\": \"europeus\",\n  \"eusébio\": \"eusébi\",\n  \"eustáquio\": \"eustáqui\",\n  \"eva\": \"eva\",\n  \"evacuada\": \"evacu\",\n  \"evander\": \"evand\",\n  \"evandro\": \"evandr\",\n  \"evangelho\": \"evangelh\",\n  \"evangélica\": \"evangél\",\n  \"evangélicas\": \"evangél\",\n  \"evangélico\": \"evangél\",\n  \"evangélicos\": \"evangél\",\n  \"evangelista\": \"evangel\",\n  \"evangelização\": \"evangeliz\",\n  \"evans\": \"evans\",\n  \"evelin\": \"evelin\",\n  \"evenks\": \"evenks\",\n  \"evento\": \"event\",\n  \"eventos\": \"event\",\n  \"eventuais\": \"eventu\",\n  \"eventual\": \"eventual\",\n  \"eventualmente\": \"eventual\",\n  \"everest\": \"everest\",\n  \"evidência\": \"evident\",\n  \"evidenciada\": \"evidenc\",\n  \"evidenciam\": \"evidenc\",\n  \"evidências\": \"evident\",\n  \"evidente\": \"evident\",\n  \"evidentemente\": \"evident\",\n  \"evidentes\": \"evident\",\n  \"evita\": \"evit\",\n  \"evitá\": \"evit\",\n  \"evitado\": \"evit\",\n  \"evitam\": \"evit\",\n  \"evitando\": \"evit\",\n  \"evitar\": \"evit\",\n  \"evitará\": \"evit\",\n  \"evitaria\": \"evit\",\n  \"evitariam\": \"evit\",\n  \"evitava\": \"evit\",\n  \"evitavam\": \"evit\",\n  \"evite\": \"evit\",\n  \"evitou\": \"evit\",\n  \"evocam\": \"evoc\",\n  \"evocando\": \"evoc\",\n  \"evocar\": \"evoc\",\n  \"evocativa\": \"evoc\",\n  \"evolução\": \"evoluçã\",\n  \"evoluem\": \"evolu\",\n  \"evolui\": \"evolu\",\n  \"evoluir\": \"evolu\",\n  \"evoluirá\": \"evolu\",\n  \"evoluíram\": \"evoluír\",\n  \"evoluísse\": \"evoluíss\",\n  \"evoluiu\": \"evolu\",\n  \"evolutiva\": \"evolut\",\n  \"ex\": \"ex\",\n  \"exacerbada\": \"exacerb\",\n  \"exacerbadas\": \"exacerb\",\n  \"exacerbar\": \"exacerb\",\n  \"exagera\": \"exag\",\n  \"exagerada\": \"exager\",\n  \"exageradamente\": \"exager\",\n  \"exageradas\": \"exager\",\n  \"exagerado\": \"exager\",\n  \"exagerados\": \"exager\",\n  \"exageram\": \"exag\",\n  \"exagerando\": \"exager\",\n  \"exagerar\": \"exager\",\n  \"exagero\": \"exager\",\n  \"exageros\": \"exager\",\n  \"exala\": \"exal\",\n  \"exalando\": \"exal\",\n  \"exalta\": \"exalt\",\n  \"exaltação\": \"exalt\",\n  \"exaltações\": \"exalt\",\n  \"exaltar\": \"exalt\",\n  \"exame\": \"exam\",\n  \"exames\": \"exam\",\n  \"examina\": \"examin\",\n  \"examinada\": \"examin\",\n  \"examinadas\": \"examin\",\n  \"examinado\": \"examin\",\n  \"examinador\": \"examin\",\n  \"examinadora\": \"examin\",\n  \"examinados\": \"examin\",\n  \"examinam\": \"examin\",\n  \"examinar\": \"examin\",\n  \"examinaram\": \"examin\",\n  \"examinassem\": \"examin\",\n  \"examinei\": \"examin\",\n  \"examinou\": \"examin\",\n  \"exata\": \"exat\",\n  \"exatamente\": \"exat\",\n  \"exatas\": \"exat\",\n  \"exato\": \"exat\",\n  \"exatos\": \"exat\",\n  \"exaurido\": \"exaur\",\n  \"exaustão\": \"exaustã\",\n  \"exaustiva\": \"exaust\",\n  \"exaustivamente\": \"exaust\",\n  \"exaustivo\": \"exaust\",\n  \"exaustivos\": \"exaust\",\n  \"exausto\": \"exaust\",\n  \"exaustos\": \"exaust\",\n  \"exceção\": \"exceçã\",\n  \"exceções\": \"exceçõ\",\n  \"excedente\": \"excedent\",\n  \"excedentes\": \"excedent\",\n  \"excel\": \"excel\",\n  \"excelência\": \"excelent\",\n  \"excelente\": \"excelent\",\n  \"excelentes\": \"excelent\",\n  \"excentricidade\": \"excentr\",\n  \"excepcionais\": \"excepcion\",\n  \"excepcional\": \"excepcional\",\n  \"excepcionalmente\": \"excepcional\",\n  \"excessiva\": \"excess\",\n  \"excessivamente\": \"excess\",\n  \"excessivas\": \"excess\",\n  \"excessivo\": \"excess\",\n  \"excessivos\": \"excess\",\n  \"excesso\": \"excess\",\n  \"excessos\": \"excess\",\n  \"exceto\": \"excet\",\n  \"exchange\": \"exchang\",\n  \"excita\": \"excit\",\n  \"excitação\": \"excit\",\n  \"excitada\": \"excit\",\n  \"excitado\": \"excit\",\n  \"excitante\": \"excit\",\n  \"exclamação\": \"exclam\",\n  \"exclamou\": \"exclam\",\n  \"excludente\": \"excludent\",\n  \"exclui\": \"exclu\",\n  \"excluído\": \"excluíd\",\n  \"excluídos\": \"excluíd\",\n  \"excluindo\": \"exclu\",\n  \"exclusão\": \"exclusã\",\n  \"exclusiva\": \"exclus\",\n  \"exclusivamente\": \"exclus\",\n  \"exclusivas\": \"exclus\",\n  \"exclusividade\": \"exclus\",\n  \"exclusivo\": \"exclus\",\n  \"exclusivos\": \"exclus\",\n  \"exclusões\": \"exclusõ\",\n  \"excrementos\": \"excrement\",\n  \"excrescência\": \"excrescent\",\n  \"excursão\": \"excursã\",\n  \"excursões\": \"excursõ\",\n  \"execução\": \"execuçã\",\n  \"execuções\": \"execuçõ\",\n  \"executa\": \"execut\",\n  \"executada\": \"execut\",\n  \"executado\": \"execut\",\n  \"executar\": \"execut\",\n  \"executarão\": \"execut\",\n  \"executavam\": \"execut\",\n  \"executável\": \"execut\",\n  \"executiva\": \"execut\",\n  \"executivas\": \"execut\",\n  \"executivo\": \"execut\",\n  \"executivos\": \"execut\",\n  \"executo\": \"execut\",\n  \"executou\": \"execut\",\n  \"exemplar\": \"exempl\",\n  \"exemplares\": \"exempl\",\n  \"exemplificando\": \"exemplific\",\n  \"exemplo\": \"exempl\",\n  \"exemplos\": \"exempl\",\n  \"exerce\": \"exerc\",\n  \"exercem\": \"exerc\",\n  \"exercendo\": \"exerc\",\n  \"exercer\": \"exerc\",\n  \"exerceu\": \"exerc\",\n  \"exerciam\": \"exerc\",\n  \"exercício\": \"exercíci\",\n  \"exercícios\": \"exercíci\",\n  \"exercida\": \"exerc\",\n  \"exercidas\": \"exerc\",\n  \"exercido\": \"exerc\",\n  \"exercita\": \"exercit\",\n  \"exercitada\": \"exercit\",\n  \"exercitam\": \"exercit\",\n  \"exercitando\": \"exercit\",\n  \"exercitar\": \"exercit\",\n  \"exército\": \"exércit\",\n  \"exércitos\": \"exércit\",\n  \"exerço\": \"exerc\",\n  \"exibe\": \"exib\",\n  \"exibem\": \"exib\",\n  \"exibia\": \"exib\",\n  \"exibiam\": \"exib\",\n  \"exibição\": \"exibiçã\",\n  \"exibicionismo\": \"exibicion\",\n  \"exibicionista\": \"exibicion\",\n  \"exibições\": \"exibiçõ\",\n  \"exibida\": \"exib\",\n  \"exibidas\": \"exib\",\n  \"exibido\": \"exib\",\n  \"exibidos\": \"exib\",\n  \"exibindo\": \"exib\",\n  \"exibir\": \"exib\",\n  \"exibirá\": \"exib\",\n  \"exibiu\": \"exib\",\n  \"exige\": \"exig\",\n  \"exigem\": \"exig\",\n  \"exigência\": \"exigent\",\n  \"exigências\": \"exigent\",\n  \"exigente\": \"exigent\",\n  \"exigentes\": \"exigent\",\n  \"exigia\": \"exig\",\n  \"exigiam\": \"exig\",\n  \"exigida\": \"exig\",\n  \"exigido\": \"exig\",\n  \"exigidos\": \"exig\",\n  \"exigindo\": \"exig\",\n  \"exigir\": \"exig\",\n  \"exigirá\": \"exig\",\n  \"exigiram\": \"exig\",\n  \"exigiria\": \"exig\",\n  \"exigisse\": \"exig\",\n  \"exigiu\": \"exig\",\n  \"exígua\": \"exígu\",\n  \"exiguus\": \"exiguus\",\n  \"exijam\": \"exij\",\n  \"exijo\": \"exij\",\n  \"exilado\": \"exil\",\n  \"exilados\": \"exil\",\n  \"exilei\": \"exil\",\n  \"exílio\": \"exíli\",\n  \"exilou\": \"exil\",\n  \"eximbank\": \"eximbank\",\n  \"eximindo\": \"exim\",\n  \"exímio\": \"exími\",\n  \"exista\": \"exist\",\n  \"existam\": \"exist\",\n  \"existe\": \"exist\",\n  \"existem\": \"exist\",\n  \"existência\": \"existent\",\n  \"existenciais\": \"existenc\",\n  \"existencial\": \"existencial\",\n  \"existencialista\": \"existencial\",\n  \"existente\": \"existent\",\n  \"existentes\": \"existent\",\n  \"existia\": \"exist\",\n  \"existiam\": \"exist\",\n  \"existindo\": \"exist\",\n  \"existir\": \"exist\",\n  \"existiram\": \"exist\",\n  \"existirão\": \"exist\",\n  \"existiria\": \"exist\",\n  \"existiriam\": \"exist\",\n  \"existisse\": \"exist\",\n  \"existissem\": \"exist\",\n  \"existiu\": \"exist\",\n  \"êxito\": \"êxit\",\n  \"êxitos\": \"êxit\",\n  \"êxodo\": \"êxod\",\n  \"exorbitantes\": \"exorbit\",\n  \"exorcismo\": \"exorc\",\n  \"exorcizada\": \"exorciz\",\n  \"exortando\": \"exort\",\n  \"exótica\": \"exót\",\n  \"exóticas\": \"exót\",\n  \"exótico\": \"exót\",\n  \"exóticos\": \"exót\",\n  \"expand\": \"expand\",\n  \"expande\": \"expand\",\n  \"expandindo\": \"expand\",\n  \"expandir\": \"expand\",\n  \"expandiu\": \"expand\",\n  \"expansão\": \"expansã\",\n  \"expansionista\": \"expansion\",\n  \"expansões\": \"expansõ\",\n  \"expectante\": \"expect\",\n  \"expectativa\": \"expect\",\n  \"expectativas\": \"expect\",\n  \"expedição\": \"expediçã\",\n  \"expedições\": \"expediçõ\",\n  \"expedida\": \"exped\",\n  \"expedido\": \"exped\",\n  \"expedidos\": \"exped\",\n  \"expediente\": \"expedient\",\n  \"expediu\": \"exped\",\n  \"expelida\": \"expel\",\n  \"expelido\": \"expel\",\n  \"expelir\": \"expel\",\n  \"experiência\": \"experient\",\n  \"experiências\": \"experient\",\n  \"experiente\": \"experient\",\n  \"experientes\": \"experient\",\n  \"experimenta\": \"experiment\",\n  \"experimentação\": \"experiment\",\n  \"experimentadas\": \"experiment\",\n  \"experimentado\": \"experiment\",\n  \"experimentados\": \"experiment\",\n  \"experimentais\": \"experiment\",\n  \"experimental\": \"experimental\",\n  \"experimentam\": \"experiment\",\n  \"experimentando\": \"experiment\",\n  \"experimentar\": \"experiment\",\n  \"experimentaram\": \"experiment\",\n  \"experimentava\": \"experiment\",\n  \"experimente\": \"experi\",\n  \"experimentei\": \"experiment\",\n  \"experimento\": \"exper\",\n  \"experimentos\": \"exper\",\n  \"experimentou\": \"experiment\",\n  \"experts\": \"experts\",\n  \"expiração\": \"expir\",\n  \"expiratória\": \"expiratór\",\n  \"explica\": \"explic\",\n  \"explicação\": \"explic\",\n  \"explicações\": \"explic\",\n  \"explicada\": \"explic\",\n  \"explicado\": \"explic\",\n  \"explicados\": \"explic\",\n  \"explicam\": \"explic\",\n  \"explicando\": \"explic\",\n  \"explicar\": \"explic\",\n  \"explicativo\": \"explic\",\n  \"explicava\": \"explic\",\n  \"explícita\": \"explícit\",\n  \"explicitar\": \"explicit\",\n  \"explícito\": \"explícit\",\n  \"explico\": \"explic\",\n  \"explicou\": \"explic\",\n  \"explique\": \"expliqu\",\n  \"explode\": \"explod\",\n  \"explodem\": \"explod\",\n  \"explodi\": \"explod\",\n  \"explodido\": \"explod\",\n  \"explodir\": \"explod\",\n  \"explodira\": \"explod\",\n  \"explodiram\": \"explod\",\n  \"explodiu\": \"explod\",\n  \"explora\": \"explor\",\n  \"exploração\": \"explor\",\n  \"explorado\": \"explor\",\n  \"explorador\": \"explor\",\n  \"exploradora\": \"explor\",\n  \"exploradores\": \"explor\",\n  \"exploram\": \"explor\",\n  \"explorando\": \"explor\",\n  \"explorar\": \"explor\",\n  \"explorariam\": \"explor\",\n  \"explorer\": \"explor\",\n  \"explosão\": \"explosã\",\n  \"explosiva\": \"explos\",\n  \"explosivas\": \"explos\",\n  \"explosivo\": \"explos\",\n  \"explosivos\": \"explos\",\n  \"explosões\": \"explosõ\",\n  \"expõe\": \"expõ\",\n  \"expoente\": \"expoent\",\n  \"expondo\": \"expond\",\n  \"exponha\": \"exponh\",\n  \"expor\": \"expor\",\n  \"exporia\": \"expor\",\n  \"exporta\": \"export\",\n  \"exportação\": \"export\",\n  \"exportações\": \"export\",\n  \"exportada\": \"export\",\n  \"exportado\": \"export\",\n  \"exportador\": \"export\",\n  \"exportadora\": \"export\",\n  \"exportadores\": \"export\",\n  \"exportados\": \"export\",\n  \"exportam\": \"export\",\n  \"exportar\": \"export\",\n  \"exportou\": \"export\",\n  \"expôs\": \"expôs\",\n  \"exposição\": \"exposiçã\",\n  \"exposições\": \"exposiçõ\",\n  \"expositores\": \"expositor\",\n  \"exposto\": \"expost\",\n  \"expostos\": \"expost\",\n  \"express\": \"express\",\n  \"expressa\": \"express\",\n  \"expressam\": \"express\",\n  \"expressamente\": \"express\",\n  \"expressando\": \"express\",\n  \"expressão\": \"expressã\",\n  \"expressar\": \"express\",\n  \"expressas\": \"express\",\n  \"expressionistas\": \"expression\",\n  \"expressiva\": \"express\",\n  \"expressivíssima\": \"expressivíssim\",\n  \"expressivo\": \"express\",\n  \"expressões\": \"expressõ\",\n  \"expressos\": \"express\",\n  \"exprima\": \"exprim\",\n  \"exprimir\": \"exprim\",\n  \"expulsá\": \"expuls\",\n  \"expulsando\": \"expuls\",\n  \"expulsar\": \"expuls\",\n  \"expulsasse\": \"expuls\",\n  \"expulsavam\": \"expuls\",\n  \"expulso\": \"expuls\",\n  \"expulsos\": \"expuls\",\n  \"expurgada\": \"expurg\",\n  \"expus\": \"expus\",\n  \"extensa\": \"extens\",\n  \"extensão\": \"extensã\",\n  \"extensas\": \"extens\",\n  \"extenso\": \"extens\",\n  \"extensos\": \"extens\",\n  \"extenuantes\": \"extenu\",\n  \"exterior\": \"exterior\",\n  \"exteriores\": \"exterior\",\n  \"exterminador\": \"extermin\",\n  \"extermínio\": \"extermíni\",\n  \"externa\": \"extern\",\n  \"externas\": \"extern\",\n  \"externo\": \"extern\",\n  \"externos\": \"extern\",\n  \"extinção\": \"extinçã\",\n  \"extinta\": \"extint\",\n  \"extinto\": \"extint\",\n  \"extintor\": \"extintor\",\n  \"extirpado\": \"extirp\",\n  \"extirpar\": \"extirp\",\n  \"extirpei\": \"extirp\",\n  \"extorquidas\": \"extorqu\",\n  \"extorsão\": \"extorsã\",\n  \"extra\": \"extra\",\n  \"extração\": \"extraçã\",\n  \"extrações\": \"extraçõ\",\n  \"extraconjugais\": \"extraconjug\",\n  \"extradição\": \"extradiçã\",\n  \"extraem\": \"extra\",\n  \"extrai\": \"extra\",\n  \"extraiam\": \"extra\",\n  \"extraída\": \"extraíd\",\n  \"extraídas\": \"extraíd\",\n  \"extraído\": \"extraíd\",\n  \"extrair\": \"extra\",\n  \"extraiu\": \"extra\",\n  \"extraordinária\": \"extraordinár\",\n  \"extraordinariamente\": \"extraordinari\",\n  \"extraordinário\": \"extraordinári\",\n  \"extraordinários\": \"extraordinári\",\n  \"extrapola\": \"extrapol\",\n  \"extras\": \"extras\",\n  \"extraterrestes\": \"extraterr\",\n  \"extraterrestre\": \"extraterrestr\",\n  \"extraterrestres\": \"extraterrestr\",\n  \"extrato\": \"extrat\",\n  \"extratoras\": \"extrator\",\n  \"extratos\": \"extrat\",\n  \"extratrabalho\": \"extratrabalh\",\n  \"extravagância\": \"extravag\",\n  \"extravagante\": \"extravag\",\n  \"extravagantes\": \"extravag\",\n  \"extravasamento\": \"extravas\",\n  \"extrema\": \"extrem\",\n  \"extremado\": \"extrem\",\n  \"extremamente\": \"extrem\",\n  \"extremidade\": \"extrem\",\n  \"extremidades\": \"extrem\",\n  \"extremo\": \"extrem\",\n  \"extremos\": \"extrem\",\n  \"extrovertida\": \"extrovert\",\n  \"extrovertidas\": \"extrovert\",\n  \"exu\": \"exu\",\n  \"exuberância\": \"exuber\",\n  \"exuberantes\": \"exuber\",\n  \"exulta\": \"exult\",\n  \"exultei\": \"exult\",\n  \"exultou\": \"exult\",\n  \"exumação\": \"exum\",\n  \"exxon\": \"exxon\",\n  \"eye\": \"eye\",\n  \"eymar\": \"eymar\",\n  \"ezequiel\": \"ezequiel\",\n  \"f\": \"f\",\n  \"fã\": \"fã\",\n  \"faa\": \"faa\",\n  \"faap\": \"faap\",\n  \"fab\": \"fab\",\n  \"fabergé\": \"faberg\",\n  \"fabiana\": \"fabian\",\n  \"fábio\": \"fábi\",\n  \"fabri\": \"fabr\",\n  \"fabrica\": \"fabric\",\n  \"fábrica\": \"fábric\",\n  \"fabricação\": \"fabric\",\n  \"fabricada\": \"fabric\",\n  \"fabricadas\": \"fabric\",\n  \"fabricado\": \"fabric\",\n  \"fabricados\": \"fabric\",\n  \"fabricam\": \"fabric\",\n  \"fabricando\": \"fabric\",\n  \"fabricante\": \"fabric\",\n  \"fabricantes\": \"fabric\",\n  \"fabricar\": \"fabric\",\n  \"fábricas\": \"fábric\",\n  \"fabricasse\": \"fabric\",\n  \"fabricavam\": \"fabric\",\n  \"fabrício\": \"fabríci\",\n  \"fabricou\": \"fabric\",\n  \"fabriquetas\": \"fabriquet\",\n  \"fabrizia\": \"fabriz\",\n  \"fábula\": \"fábul\",\n  \"fabuloso\": \"fabul\",\n  \"fabulosos\": \"fabul\",\n  \"faca\": \"fac\",\n  \"faça\": \"fac\",\n  \"facadas\": \"fac\",\n  \"façam\": \"fac\",\n  \"façanha\": \"façanh\",\n  \"facção\": \"facçã\",\n  \"facções\": \"facçõ\",\n  \"face\": \"fac\",\n  \"fáceis\": \"fác\",\n  \"faces\": \"fac\",\n  \"facet\": \"facet\",\n  \"faceta\": \"facet\",\n  \"fachada\": \"fach\",\n  \"facho\": \"fach\",\n  \"facial\": \"facial\",\n  \"fácil\": \"fácil\",\n  \"facilidade\": \"facil\",\n  \"facilidades\": \"facil\",\n  \"facilita\": \"facilit\",\n  \"facilitado\": \"facilit\",\n  \"facilitando\": \"facilit\",\n  \"facilitar\": \"facilit\",\n  \"facilitaria\": \"facilit\",\n  \"facilito\": \"facilit\",\n  \"facilmente\": \"facil\",\n  \"faço\": \"fac\",\n  \"factóides\": \"factóid\",\n  \"factory\": \"factory\",\n  \"faculdade\": \"faculdad\",\n  \"faculdades\": \"faculdad\",\n  \"fadado\": \"fad\",\n  \"fadados\": \"fad\",\n  \"fadas\": \"fad\",\n  \"fadiga\": \"fadig\",\n  \"fadlo\": \"fadl\",\n  \"fagolipo\": \"fagolip\",\n  \"fagundes\": \"fagund\",\n  \"faildes\": \"faild\",\n  \"faire\": \"fair\",\n  \"fairlane\": \"fairlan\",\n  \"faiscantes\": \"faiscant\",\n  \"faisões\": \"faisõ\",\n  \"faith\": \"faith\",\n  \"faixa\": \"faix\",\n  \"faixas\": \"faix\",\n  \"fajuto\": \"fajut\",\n  \"fala\": \"fal\",\n  \"falada\": \"fal\",\n  \"faladas\": \"fal\",\n  \"falado\": \"fal\",\n  \"falam\": \"fal\",\n  \"falamos\": \"fal\",\n  \"falando\": \"fal\",\n  \"falante\": \"falant\",\n  \"falantes\": \"falant\",\n  \"falar\": \"fal\",\n  \"falaram\": \"fal\",\n  \"falaremos\": \"fal\",\n  \"falaria\": \"fal\",\n  \"falas\": \"fal\",\n  \"falatório\": \"falatóri\",\n  \"falava\": \"fal\",\n  \"falavam\": \"fal\",\n  \"falcão\": \"falcã\",\n  \"falcatrua\": \"falcatru\",\n  \"falcatruas\": \"falcatru\",\n  \"falco\": \"falc\",\n  \"fale\": \"fal\",\n  \"falecer\": \"falec\",\n  \"falecida\": \"falec\",\n  \"falecido\": \"falec\",\n  \"falecimento\": \"falec\",\n  \"falei\": \"fal\",\n  \"falem\": \"fal\",\n  \"falência\": \"falênc\",\n  \"falha\": \"falh\",\n  \"falhas\": \"falh\",\n  \"falhou\": \"falh\",\n  \"falida\": \"fal\",\n  \"falidas\": \"fal\",\n  \"falido\": \"fal\",\n  \"falidos\": \"fal\",\n  \"falimentar\": \"faliment\",\n  \"faliram\": \"fal\",\n  \"faliu\": \"fal\",\n  \"falo\": \"fal\",\n  \"falou\": \"fal\",\n  \"falsa\": \"fals\",\n  \"falsários\": \"falsári\",\n  \"falsas\": \"fals\",\n  \"falseando\": \"fals\",\n  \"falsidade\": \"falsidad\",\n  \"falsificação\": \"falsific\",\n  \"falsificações\": \"falsific\",\n  \"falsificadas\": \"falsific\",\n  \"falsificado\": \"falsific\",\n  \"falsificar\": \"falsific\",\n  \"falsificaram\": \"falsific\",\n  \"falso\": \"fals\",\n  \"falsos\": \"fals\",\n  \"falta\": \"falt\",\n  \"faltado\": \"falt\",\n  \"faltam\": \"falt\",\n  \"faltando\": \"falt\",\n  \"faltar\": \"falt\",\n  \"faltará\": \"falt\",\n  \"faltariam\": \"falt\",\n  \"faltas\": \"falt\",\n  \"faltava\": \"falt\",\n  \"faltavam\": \"falt\",\n  \"faltei\": \"falt\",\n  \"faltou\": \"falt\",\n  \"fama\": \"fam\",\n  \"fambrini\": \"fambrin\",\n  \"fame\": \"fam\",\n  \"famí\": \"fam\",\n  \"famigerada\": \"famiger\",\n  \"família\": \"famíl\",\n  \"familiar\": \"famili\",\n  \"familiares\": \"famili\",\n  \"familiarizando\": \"familiariz\",\n  \"famílias\": \"famíl\",\n  \"family\": \"family\",\n  \"faminto\": \"famint\",\n  \"famintos\": \"famint\",\n  \"famosa\": \"famos\",\n  \"famosas\": \"famos\",\n  \"famoso\": \"famos\",\n  \"famosos\": \"famos\",\n  \"fan\": \"fan\",\n  \"fanática\": \"fanát\",\n  \"fanático\": \"fanát\",\n  \"fanáticos\": \"fanát\",\n  \"fanatismo\": \"fanat\",\n  \"fanhosa\": \"fanhos\",\n  \"fanini\": \"fanin\",\n  \"fantasia\": \"fantas\",\n  \"fantasiado\": \"fantasi\",\n  \"fantasias\": \"fantas\",\n  \"fantasio\": \"fantasi\",\n  \"fantasiosa\": \"fantasi\",\n  \"fantasioso\": \"fantasi\",\n  \"fantasma\": \"fantasm\",\n  \"fantasmas\": \"fantasm\",\n  \"fantástica\": \"fantást\",\n  \"fantásticas\": \"fantást\",\n  \"fantástico\": \"fantást\",\n  \"fantásticos\": \"fantást\",\n  \"fapesp\": \"fapesp\",\n  \"fará\": \"far\",\n  \"farah\": \"farah\",\n  \"farão\": \"farã\",\n  \"farda\": \"fard\",\n  \"fardado\": \"fard\",\n  \"fardas\": \"fard\",\n  \"fardo\": \"fard\",\n  \"farei\": \"far\",\n  \"fareja\": \"farej\",\n  \"faremos\": \"far\",\n  \"fares\": \"far\",\n  \"faria\": \"far\",\n  \"fariam\": \"far\",\n  \"faríamos\": \"far\",\n  \"farias\": \"far\",\n  \"faringe\": \"faring\",\n  \"farinha\": \"farinh\",\n  \"farkas\": \"fark\",\n  \"farmacêutica\": \"farmacêut\",\n  \"farmacêuticas\": \"farmacêut\",\n  \"farmacêutico\": \"farmacêut\",\n  \"farmacêuticos\": \"farmacêut\",\n  \"farmácia\": \"farmác\",\n  \"farmácias\": \"farmác\",\n  \"farmacologista\": \"farmacolog\",\n  \"farmacologistas\": \"farmacolog\",\n  \"farmaton\": \"farmaton\",\n  \"faro\": \"far\",\n  \"faroeste\": \"faro\",\n  \"faroestes\": \"faro\",\n  \"farofa\": \"farof\",\n  \"faróis\": \"faró\",\n  \"farol\": \"farol\",\n  \"farra\": \"farr\",\n  \"farrah\": \"farrah\",\n  \"farrakhan\": \"farrakhan\",\n  \"farras\": \"farr\",\n  \"farsa\": \"fars\",\n  \"farta\": \"fart\",\n  \"fartando\": \"fart\",\n  \"fartas\": \"fart\",\n  \"farto\": \"fart\",\n  \"fartos\": \"fart\",\n  \"fãs\": \"fãs\",\n  \"fasano\": \"fasan\",\n  \"fascículos\": \"fascícul\",\n  \"fascina\": \"fascin\",\n  \"fascinação\": \"fascin\",\n  \"fascinado\": \"fascin\",\n  \"fascinam\": \"fascin\",\n  \"fascinante\": \"fascin\",\n  \"fascinava\": \"fascin\",\n  \"fascínio\": \"fascíni\",\n  \"fascinou\": \"fascin\",\n  \"fase\": \"fas\",\n  \"fases\": \"fas\",\n  \"fashion\": \"fashion\",\n  \"fast\": \"fast\",\n  \"fat\": \"fat\",\n  \"fatais\": \"fat\",\n  \"fatal\": \"fatal\",\n  \"fatalidade\": \"fatal\",\n  \"fatalidades\": \"fatal\",\n  \"fatia\": \"fat\",\n  \"fatiadas\": \"fati\",\n  \"fatias\": \"fat\",\n  \"fatídico\": \"fatíd\",\n  \"fátima\": \"fátim\",\n  \"fato\": \"fat\",\n  \"fator\": \"fator\",\n  \"fatores\": \"fator\",\n  \"fatos\": \"fat\",\n  \"fatura\": \"fatur\",\n  \"faturado\": \"fatur\",\n  \"faturados\": \"fatur\",\n  \"faturam\": \"fatur\",\n  \"faturamento\": \"fatur\",\n  \"faturando\": \"fatur\",\n  \"faturar\": \"fatur\",\n  \"faturaram\": \"fatur\",\n  \"faturariam\": \"fatur\",\n  \"faturava\": \"fatur\",\n  \"faturou\": \"fatur\",\n  \"fauna\": \"faun\",\n  \"faustini\": \"faustin\",\n  \"faustino\": \"faustin\",\n  \"fausto\": \"faust\",\n  \"fava\": \"fav\",\n  \"favas\": \"fav\",\n  \"favela\": \"favel\",\n  \"favelado\": \"favel\",\n  \"favelas\": \"favel\",\n  \"fávero\": \"fáver\",\n  \"favor\": \"favor\",\n  \"favoráveis\": \"favor\",\n  \"favorável\": \"favor\",\n  \"favoravelmente\": \"favor\",\n  \"favorece\": \"favorec\",\n  \"favorecem\": \"favorec\",\n  \"favorecendo\": \"favorec\",\n  \"favorecer\": \"favorec\",\n  \"favorecida\": \"favorec\",\n  \"favorecidas\": \"favorec\",\n  \"favorecimento\": \"favorec\",\n  \"favores\": \"favor\",\n  \"favorito\": \"favorit\",\n  \"fawcett\": \"fawcett\",\n  \"fax\": \"fax\",\n  \"faxineira\": \"faxineir\",\n  \"faxineiro\": \"faxineir\",\n  \"faxineiros\": \"faxineir\",\n  \"faz\": \"faz\",\n  \"fazê\": \"faz\",\n  \"fazem\": \"faz\",\n  \"fazemos\": \"faz\",\n  \"fazenda\": \"fazend\",\n  \"fazendas\": \"fazend\",\n  \"fazendeiro\": \"fazendeir\",\n  \"fazendeiros\": \"fazendeir\",\n  \"fazendo\": \"faz\",\n  \"fazendola\": \"fazendol\",\n  \"fazer\": \"faz\",\n  \"fazermos\": \"faz\",\n  \"fazia\": \"faz\",\n  \"faziam\": \"faz\",\n  \"fazíamos\": \"faz\",\n  \"fbi\": \"fbi\",\n  \"fda\": \"fda\",\n  \"fé\": \"fé\",\n  \"fearnside\": \"fearnsid\",\n  \"febem\": \"feb\",\n  \"febre\": \"febr\",\n  \"fecha\": \"fech\",\n  \"fechá\": \"fech\",\n  \"fechada\": \"fech\",\n  \"fechadas\": \"fech\",\n  \"fechado\": \"fech\",\n  \"fechados\": \"fech\",\n  \"fechadura\": \"fechadur\",\n  \"fecham\": \"fech\",\n  \"fechamento\": \"fechament\",\n  \"fechando\": \"fech\",\n  \"fechar\": \"fech\",\n  \"fechara\": \"fech\",\n  \"fecharam\": \"fech\",\n  \"fechassem\": \"fech\",\n  \"fechava\": \"fech\",\n  \"feche\": \"fech\",\n  \"fechou\": \"fech\",\n  \"fecundada\": \"fecund\",\n  \"fecundas\": \"fecund\",\n  \"federação\": \"feder\",\n  \"federações\": \"feder\",\n  \"federais\": \"feder\",\n  \"federal\": \"federal\",\n  \"federativo\": \"feder\",\n  \"federico\": \"feder\",\n  \"fedido\": \"fed\",\n  \"feedback\": \"feedback\",\n  \"feia\": \"fei\",\n  \"feição\": \"feiçã\",\n  \"feições\": \"feiçõ\",\n  \"feijão\": \"feijã\",\n  \"feijó\": \"feij\",\n  \"feijoada\": \"feijo\",\n  \"feio\": \"fei\",\n  \"feios\": \"fei\",\n  \"feira\": \"feir\",\n  \"feirante\": \"feirant\",\n  \"feiras\": \"feir\",\n  \"feita\": \"feit\",\n  \"feitas\": \"feit\",\n  \"feitiçaria\": \"feitic\",\n  \"feitiço\": \"feitic\",\n  \"feitiços\": \"feitic\",\n  \"feitler\": \"feitl\",\n  \"feito\": \"feit\",\n  \"feitores\": \"feitor\",\n  \"feitorias\": \"feitor\",\n  \"feitos\": \"feit\",\n  \"feitosa\": \"feitos\",\n  \"feiúra\": \"feiúr\",\n  \"feix\": \"feix\",\n  \"feixe\": \"feix\",\n  \"feldmann\": \"feldmann\",\n  \"felicidade\": \"felic\",\n  \"felicíssimos\": \"felicíss\",\n  \"felino\": \"felin\",\n  \"felinos\": \"felin\",\n  \"felinto\": \"felint\",\n  \"felipe\": \"felip\",\n  \"félix\": \"félix\",\n  \"feliz\": \"feliz\",\n  \"felizardos\": \"felizard\",\n  \"felizes\": \"feliz\",\n  \"felizmente\": \"feliz\",\n  \"fellini\": \"fellin\",\n  \"fêmea\": \"fêm\",\n  \"fêmeas\": \"fêm\",\n  \"feminilidade\": \"feminil\",\n  \"feminina\": \"feminin\",\n  \"femininas\": \"feminin\",\n  \"feminino\": \"feminin\",\n  \"femininos\": \"feminin\",\n  \"feminismo\": \"femin\",\n  \"feminista\": \"femin\",\n  \"feministas\": \"femin\",\n  \"femme\": \"femm\",\n  \"fêmur\": \"fêmur\",\n  \"fêmures\": \"fêmur\",\n  \"fendas\": \"fend\",\n  \"fenecem\": \"fenec\",\n  \"fenecessem\": \"fenec\",\n  \"fenerich\": \"fenerich\",\n  \"fenomenais\": \"fenomen\",\n  \"fenomenal\": \"fenomenal\",\n  \"fenômeno\": \"fenômen\",\n  \"fenômenos\": \"fenômen\",\n  \"fenproporex\": \"fenproporex\",\n  \"fera\": \"fer\",\n  \"feras\": \"fer\",\n  \"ferdinando\": \"ferdin\",\n  \"fere\": \"fer\",\n  \"ferguson\": \"ferguson\",\n  \"feriado\": \"feri\",\n  \"feriados\": \"feri\",\n  \"férias\": \"fér\",\n  \"ferida\": \"fer\",\n  \"feridas\": \"fer\",\n  \"ferido\": \"fer\",\n  \"feridos\": \"fer\",\n  \"ferimento\": \"feriment\",\n  \"ferimentos\": \"feriment\",\n  \"ferir\": \"fer\",\n  \"feriu\": \"fer\",\n  \"fermentação\": \"ferment\",\n  \"fermentando\": \"ferment\",\n  \"fernanda\": \"fernand\",\n  \"fernandes\": \"fernand\",\n  \"fernandez\": \"fernandez\",\n  \"fernando\": \"fern\",\n  \"ferocidade\": \"feroc\",\n  \"feroz\": \"feroz\",\n  \"ferragano\": \"ferragan\",\n  \"ferramenta\": \"ferrament\",\n  \"ferramentaria\": \"ferrament\",\n  \"ferramentas\": \"ferrament\",\n  \"ferrari\": \"ferrar\",\n  \"ferraz\": \"ferraz\",\n  \"férreas\": \"férr\",\n  \"ferreira\": \"ferreir\",\n  \"ferrenhos\": \"ferrenh\",\n  \"ferro\": \"ferr\",\n  \"ferrovia\": \"ferrov\",\n  \"ferroviária\": \"ferroviár\",\n  \"ferroviárias\": \"ferroviár\",\n  \"ferroviário\": \"ferroviári\",\n  \"ferrovias\": \"ferrov\",\n  \"ferry\": \"ferry\",\n  \"fértil\": \"fértil\",\n  \"fertilidade\": \"fertil\",\n  \"fervente\": \"fervent\",\n  \"ferver\": \"ferv\",\n  \"fervilhante\": \"fervilh\",\n  \"fervilhantes\": \"fervilh\",\n  \"fervilhavam\": \"fervilh\",\n  \"fervor\": \"fervor\",\n  \"fervoroso\": \"fervor\",\n  \"fervorosos\": \"fervor\",\n  \"fes\": \"fes\",\n  \"festa\": \"fest\",\n  \"festança\": \"festanc\",\n  \"festas\": \"fest\",\n  \"festeja\": \"festej\",\n  \"festejada\": \"festej\",\n  \"festejam\": \"festej\",\n  \"festejar\": \"festej\",\n  \"festejaram\": \"festej\",\n  \"festejava\": \"festej\",\n  \"festejos\": \"festej\",\n  \"festinha\": \"festinh\",\n  \"festinhas\": \"festinh\",\n  \"festiva\": \"festiv\",\n  \"festivais\": \"festiv\",\n  \"festival\": \"festival\",\n  \"fethyie\": \"fethyi\",\n  \"fetiche\": \"fetich\",\n  \"fétido\": \"fét\",\n  \"feto\": \"fet\",\n  \"fevereiro\": \"fevereir\",\n  \"fez\": \"fez\",\n  \"fezes\": \"fez\",\n  \"fezinha\": \"fezinh\",\n  \"fgts\": \"fgts\",\n  \"fgv\": \"fgv\",\n  \"fhc\": \"fhc\",\n  \"fiada\": \"fiad\",\n  \"fiador\": \"fiador\",\n  \"fiança\": \"fianc\",\n  \"fiapo\": \"fiap\",\n  \"fiat\": \"fiat\",\n  \"fiats\": \"fiats\",\n  \"fibe\": \"fib\",\n  \"fibra\": \"fibr\",\n  \"fibras\": \"fibr\",\n  \"fibrasil\": \"fibrasil\",\n  \"fibrinogênio\": \"fibrinogêni\",\n  \"fibroblastos\": \"fibroblast\",\n  \"fibromas\": \"fibrom\",\n  \"fibrose\": \"fibros\",\n  \"fica\": \"fic\",\n  \"ficado\": \"fic\",\n  \"ficam\": \"fic\",\n  \"ficamos\": \"fic\",\n  \"ficando\": \"fic\",\n  \"ficar\": \"fic\",\n  \"ficara\": \"fic\",\n  \"ficará\": \"fic\",\n  \"ficaram\": \"fic\",\n  \"ficarão\": \"fic\",\n  \"ficarem\": \"fic\",\n  \"ficaria\": \"fic\",\n  \"ficariam\": \"fic\",\n  \"ficarmos\": \"fic\",\n  \"ficasse\": \"fic\",\n  \"ficassem\": \"fic\",\n  \"ficássemos\": \"fic\",\n  \"ficava\": \"fic\",\n  \"ficavam\": \"fic\",\n  \"ficção\": \"ficçã\",\n  \"ficcional\": \"ficcional\",\n  \"ficha\": \"fich\",\n  \"fichário\": \"fichári\",\n  \"fichas\": \"fich\",\n  \"fichtner\": \"fichtn\",\n  \"fico\": \"fic\",\n  \"ficou\": \"fic\",\n  \"fictícia\": \"fictíc\",\n  \"fictícias\": \"fictíc\",\n  \"fictício\": \"fictíci\",\n  \"fictícios\": \"fictíci\",\n  \"fidalgo\": \"fidalg\",\n  \"fidalgos\": \"fidalg\",\n  \"fidalguia\": \"fidalgu\",\n  \"fidel\": \"fidel\",\n  \"fidelidade\": \"fidel\",\n  \"fiéis\": \"fié\",\n  \"fiel\": \"fiel\",\n  \"fiesp\": \"fiesp\",\n  \"fiesta\": \"fiest\",\n  \"fígado\": \"fíg\",\n  \"figaro\": \"figar\",\n  \"figueira\": \"figueir\",\n  \"figueiredo\": \"figueired\",\n  \"figura\": \"figur\",\n  \"figuração\": \"figur\",\n  \"figuradamente\": \"figur\",\n  \"figuram\": \"figur\",\n  \"figurantes\": \"figur\",\n  \"figurão\": \"figurã\",\n  \"figurar\": \"figur\",\n  \"figuraria\": \"figur\",\n  \"figuras\": \"figur\",\n  \"figurinhas\": \"figurinh\",\n  \"figurinista\": \"figurin\",\n  \"figurino\": \"figurin\",\n  \"figurinos\": \"figurin\",\n  \"figurões\": \"figurõ\",\n  \"fiji\": \"fij\",\n  \"fila\": \"fil\",\n  \"filadélfia\": \"filadélf\",\n  \"filantrópica\": \"filantróp\",\n  \"filantrópicos\": \"filantróp\",\n  \"filão\": \"filã\",\n  \"filarmônicas\": \"filarmôn\",\n  \"filas\": \"fil\",\n  \"filé\": \"fil\",\n  \"fileira\": \"fileir\",\n  \"fileiras\": \"fileir\",\n  \"filezão\": \"filezã\",\n  \"filha\": \"filh\",\n  \"filhas\": \"filh\",\n  \"filhinho\": \"filhinh\",\n  \"filho\": \"filh\",\n  \"filhos\": \"filh\",\n  \"filhote\": \"filhot\",\n  \"filhotes\": \"filhot\",\n  \"filiação\": \"filiaçã\",\n  \"filiado\": \"fili\",\n  \"filiados\": \"fili\",\n  \"filiais\": \"fili\",\n  \"filial\": \"filial\",\n  \"filinto\": \"filint\",\n  \"filiou\": \"fili\",\n  \"filip\": \"filip\",\n  \"filipe\": \"filip\",\n  \"filipeck\": \"filipeck\",\n  \"filipinas\": \"filipin\",\n  \"filippo\": \"filipp\",\n  \"filisofia\": \"filisof\",\n  \"film\": \"film\",\n  \"filmada\": \"film\",\n  \"filmados\": \"film\",\n  \"filmagem\": \"filmag\",\n  \"filmagens\": \"filmagens\",\n  \"filmar\": \"film\",\n  \"filme\": \"film\",\n  \"filmes\": \"film\",\n  \"filmou\": \"film\",\n  \"filomena\": \"filomen\",\n  \"filós\": \"filós\",\n  \"filosofa\": \"filosof\",\n  \"filósofa\": \"filósof\",\n  \"filosofia\": \"filosof\",\n  \"filosóficas\": \"filosóf\",\n  \"filósofo\": \"filósof\",\n  \"filósofos\": \"filósof\",\n  \"filtra\": \"filtr\",\n  \"filtragem\": \"filtrag\",\n  \"filtrar\": \"filtr\",\n  \"filtro\": \"filtr\",\n  \"fim\": \"fim\",\n  \"fimose\": \"fimos\",\n  \"fin\": \"fin\",\n  \"fina\": \"fin\",\n  \"finais\": \"fin\",\n  \"final\": \"final\",\n  \"finalidade\": \"final\",\n  \"finalidades\": \"final\",\n  \"finalistas\": \"final\",\n  \"finalização\": \"finaliz\",\n  \"finalizado\": \"finaliz\",\n  \"finalizando\": \"finaliz\",\n  \"finalizar\": \"finaliz\",\n  \"finalmente\": \"final\",\n  \"finança\": \"financ\",\n  \"finanças\": \"financ\",\n  \"financeira\": \"financeir\",\n  \"financeiramente\": \"financeir\",\n  \"financeiras\": \"financeir\",\n  \"financeiro\": \"financeir\",\n  \"financeiros\": \"financeir\",\n  \"financia\": \"financ\",\n  \"financiadas\": \"financ\",\n  \"financiado\": \"financ\",\n  \"financiador\": \"financ\",\n  \"financiadoras\": \"financ\",\n  \"financiados\": \"financ\",\n  \"financiam\": \"financ\",\n  \"financiamento\": \"financ\",\n  \"financiamentos\": \"financ\",\n  \"financiando\": \"financ\",\n  \"financiar\": \"financ\",\n  \"financiava\": \"financ\",\n  \"financiei\": \"financ\",\n  \"financiou\": \"financ\",\n  \"finas\": \"fin\",\n  \"finasterida\": \"finaster\",\n  \"fincada\": \"finc\",\n  \"fincar\": \"finc\",\n  \"fincato\": \"fincat\",\n  \"fincou\": \"finc\",\n  \"finep\": \"finep\",\n  \"finge\": \"fing\",\n  \"fingi\": \"fing\",\n  \"fingia\": \"fing\",\n  \"fingindo\": \"fing\",\n  \"fingir\": \"fing\",\n  \"fininho\": \"fininh\",\n  \"finíssimo\": \"finíssim\",\n  \"fino\": \"fin\",\n  \"finos\": \"fin\",\n  \"fins\": \"fins\",\n  \"fio\": \"fio\",\n  \"fiona\": \"fion\",\n  \"fiorentini\": \"fiorentin\",\n  \"fios\": \"fios\",\n  \"fique\": \"fiqu\",\n  \"fiquei\": \"fiqu\",\n  \"fiquem\": \"fiqu\",\n  \"firma\": \"firm\",\n  \"firmada\": \"firm\",\n  \"firmado\": \"firm\",\n  \"firmados\": \"firm\",\n  \"firmam\": \"firm\",\n  \"firmamento\": \"firmament\",\n  \"firmará\": \"firm\",\n  \"firmaram\": \"firm\",\n  \"firmas\": \"firm\",\n  \"firmavam\": \"firm\",\n  \"firme\": \"firm\",\n  \"firmem\": \"firm\",\n  \"firmemente\": \"firmement\",\n  \"firmes\": \"firm\",\n  \"firmeza\": \"firmez\",\n  \"firmou\": \"firm\",\n  \"fiscais\": \"fisc\",\n  \"fiscal\": \"fiscal\",\n  \"fiscaliza\": \"fiscaliz\",\n  \"fiscalização\": \"fiscaliz\",\n  \"fiscalizações\": \"fiscaliz\",\n  \"fiscalizado\": \"fiscaliz\",\n  \"fiscalizadora\": \"fiscaliz\",\n  \"fiscalizar\": \"fiscaliz\",\n  \"fiscalizavam\": \"fiscaliz\",\n  \"fiscalizou\": \"fiscaliz\",\n  \"fischer\": \"fisch\",\n  \"fisco\": \"fisc\",\n  \"fisgado\": \"fisg\",\n  \"fisgando\": \"fisg\",\n  \"fisgar\": \"fisg\",\n  \"fisher\": \"fish\",\n  \"física\": \"físic\",\n  \"fisicamente\": \"fisic\",\n  \"físicas\": \"físic\",\n  \"físico\": \"físic\",\n  \"físicos\": \"físic\",\n  \"fisiculturista\": \"fisicultur\",\n  \"fisiologia\": \"fisiolog\",\n  \"fisiologismo\": \"fisiolog\",\n  \"fisiologista\": \"fisiolog\",\n  \"fisionomia\": \"fisionom\",\n  \"fisioterapeuta\": \"fisioterapeut\",\n  \"fisioterapia\": \"fisioterap\",\n  \"fissura\": \"fissur\",\n  \"fissurado\": \"fissur\",\n  \"fit\": \"fit\",\n  \"fita\": \"fit\",\n  \"fitas\": \"fit\",\n  \"fitinhas\": \"fitinh\",\n  \"fitness\": \"fitness\",\n  \"fitoterapia\": \"fitoterap\",\n  \"fitoterápico\": \"fitoteráp\",\n  \"fittipaldi\": \"fittipald\",\n  \"fitzgerald\": \"fitzgerald\",\n  \"fivela\": \"fivel\",\n  \"fixa\": \"fix\",\n  \"fixação\": \"fixaçã\",\n  \"fixada\": \"fix\",\n  \"fixado\": \"fix\",\n  \"fixador\": \"fixador\",\n  \"fixam\": \"fix\",\n  \"fixar\": \"fix\",\n  \"fixas\": \"fix\",\n  \"fixe\": \"fix\",\n  \"fixo\": \"fix\",\n  \"fixos\": \"fix\",\n  \"fixou\": \"fix\",\n  \"fiz\": \"fiz\",\n  \"fizemos\": \"fiz\",\n  \"fizer\": \"fiz\",\n  \"fizeram\": \"fiz\",\n  \"fizermos\": \"fiz\",\n  \"fizesse\": \"fiz\",\n  \"fizessem\": \"fiz\",\n  \"fizéssemos\": \"fizéss\",\n  \"flacidez\": \"flacidez\",\n  \"flácido\": \"flác\",\n  \"flag\": \"flag\",\n  \"flagra\": \"flagr\",\n  \"flagrado\": \"flagr\",\n  \"flagrante\": \"flagrant\",\n  \"flagrantemente\": \"flagrant\",\n  \"flagrantes\": \"flagrant\",\n  \"flagrar\": \"flagr\",\n  \"flagrava\": \"flagr\",\n  \"flagre\": \"flagr\",\n  \"flagrou\": \"flagr\",\n  \"flamenca\": \"flamenc\",\n  \"flamengo\": \"flameng\",\n  \"flandres\": \"flandr\",\n  \"flanelinha\": \"flanelinh\",\n  \"flash\": \"flash\",\n  \"flashes\": \"flash\",\n  \"flats\": \"flats\",\n  \"flauta\": \"flaut\",\n  \"flávai\": \"fláva\",\n  \"flávia\": \"fláv\",\n  \"flavio\": \"flavi\",\n  \"flávio\": \"flávi\",\n  \"flecha\": \"flech\",\n  \"flertar\": \"flert\",\n  \"flerte\": \"flert\",\n  \"fleugma\": \"fleugm\",\n  \"fleuma\": \"fleum\",\n  \"fleury\": \"fleury\",\n  \"flexibilidade\": \"flexibil\",\n  \"flexibilização\": \"flexibiliz\",\n  \"flexibilizada\": \"flexibiliz\",\n  \"flexibilizamos\": \"flexibiliz\",\n  \"flexibilizar\": \"flexibiliz\",\n  \"flexionando\": \"flexion\",\n  \"flexíveis\": \"flexív\",\n  \"flexível\": \"flexível\",\n  \"flexões\": \"flexõ\",\n  \"flinn\": \"flinn\",\n  \"fliperama\": \"fliperam\",\n  \"flipperama\": \"flipperam\",\n  \"flor\": \"flor\",\n  \"floreados\": \"flor\",\n  \"florença\": \"florenc\",\n  \"florência\": \"florênc\",\n  \"florêncio\": \"florênci\",\n  \"florent\": \"florent\",\n  \"flores\": \"flor\",\n  \"floresas\": \"flores\",\n  \"florescem\": \"floresc\",\n  \"florescer\": \"floresc\",\n  \"florescido\": \"floresc\",\n  \"florescimento\": \"floresc\",\n  \"floresta\": \"florest\",\n  \"florestal\": \"florestal\",\n  \"florestas\": \"florest\",\n  \"florestta\": \"florestt\",\n  \"floriano\": \"florian\",\n  \"florianópolis\": \"florianópol\",\n  \"florida\": \"flor\",\n  \"flórida\": \"flór\",\n  \"floridi\": \"florid\",\n  \"florisbela\": \"florisbel\",\n  \"florisval\": \"florisval\",\n  \"flow\": \"flow\",\n  \"flower\": \"flow\",\n  \"flui\": \"flu\",\n  \"fluidos\": \"flu\",\n  \"fluir\": \"flu\",\n  \"fluminense\": \"fluminens\",\n  \"fluoretos\": \"fluoret\",\n  \"fluoxetina\": \"fluoxetin\",\n  \"fluril\": \"fluril\",\n  \"flutuações\": \"flutuaçõ\",\n  \"flutuando\": \"flutu\",\n  \"flutuante\": \"flutuant\",\n  \"flutuantes\": \"flutuant\",\n  \"flutuasse\": \"flutu\",\n  \"fluvial\": \"fluvial\",\n  \"fluxo\": \"flux\",\n  \"fm\": \"fm\",\n  \"fmi\": \"fmi\",\n  \"fms\": \"fms\",\n  \"fmu\": \"fmu\",\n  \"foale\": \"foal\",\n  \"foca\": \"foc\",\n  \"foça\": \"foc\",\n  \"focados\": \"foc\",\n  \"foco\": \"foc\",\n  \"focos\": \"foc\",\n  \"fodor\": \"fodor\",\n  \"fofinhos\": \"fofinh\",\n  \"fofoca\": \"fofoc\",\n  \"fofocar\": \"fofoc\",\n  \"fofocas\": \"fofoc\",\n  \"fogaça\": \"fogac\",\n  \"fogão\": \"fogã\",\n  \"foge\": \"fog\",\n  \"fogem\": \"fog\",\n  \"fogleman\": \"fogleman\",\n  \"fogo\": \"fog\",\n  \"fogos\": \"fog\",\n  \"fogosas\": \"fogos\",\n  \"fogueira\": \"fogueir\",\n  \"foguete\": \"foguet\",\n  \"foguetes\": \"foguet\",\n  \"foguetório\": \"foguetóri\",\n  \"foi\": \"foi\",\n  \"foice\": \"foic\",\n  \"fok\": \"fok\",\n  \"fokker\": \"fokk\",\n  \"folclore\": \"folclor\",\n  \"folclórica\": \"folclór\",\n  \"folclórico\": \"folclór\",\n  \"fôlego\": \"fôleg\",\n  \"folga\": \"folg\",\n  \"folgada\": \"folg\",\n  \"folgadas\": \"folg\",\n  \"folgar\": \"folg\",\n  \"folha\": \"folh\",\n  \"folhas\": \"folh\",\n  \"folhearam\": \"folh\",\n  \"folheiam\": \"folh\",\n  \"folhetim\": \"folhetim\",\n  \"folheto\": \"folhet\",\n  \"folhetos\": \"folhet\",\n  \"folião\": \"foliã\",\n  \"folio\": \"foli\",\n  \"fome\": \"fom\",\n  \"fomos\": \"fom\",\n  \"fonaudiologia\": \"fonaudiolog\",\n  \"fonda\": \"fond\",\n  \"fone\": \"fon\",\n  \"fonemas\": \"fonem\",\n  \"fones\": \"fon\",\n  \"fonética\": \"fonét\",\n  \"fonoaudióloga\": \"fonoaudiólog\",\n  \"fonoaudiologia\": \"fonoaudiolog\",\n  \"fonográfico\": \"fonográf\",\n  \"fonógrafo\": \"fonógraf\",\n  \"fonseca\": \"fonsec\",\n  \"fontana\": \"fontan\",\n  \"fonte\": \"font\",\n  \"fontecindam\": \"fontecind\",\n  \"fontenelle\": \"fontenell\",\n  \"fontes\": \"font\",\n  \"fontoura\": \"fontour\",\n  \"food\": \"food\",\n  \"foods\": \"foods\",\n  \"football\": \"football\",\n  \"for\": \"for\",\n  \"fora\": \"for\",\n  \"foragida\": \"forag\",\n  \"foragido\": \"forag\",\n  \"foram\": \"for\",\n  \"forbes\": \"forb\",\n  \"forca\": \"forc\",\n  \"força\": \"forc\",\n  \"forçada\": \"forc\",\n  \"forçadas\": \"forc\",\n  \"forçado\": \"forc\",\n  \"forçados\": \"forc\",\n  \"forçando\": \"forc\",\n  \"forçar\": \"forc\",\n  \"forçaram\": \"forc\",\n  \"forças\": \"forc\",\n  \"force\": \"forc\",\n  \"forcei\": \"forc\",\n  \"forçosamente\": \"forços\",\n  \"ford\": \"ford\",\n  \"forem\": \"for\",\n  \"forense\": \"forens\",\n  \"forest\": \"forest\",\n  \"forja\": \"forj\",\n  \"forjada\": \"forj\",\n  \"forjadas\": \"forj\",\n  \"forjado\": \"forj\",\n  \"forjados\": \"forj\",\n  \"forjam\": \"forj\",\n  \"forjar\": \"forj\",\n  \"forma\": \"form\",\n  \"formação\": \"formaçã\",\n  \"formações\": \"formaçõ\",\n  \"formada\": \"form\",\n  \"formadas\": \"form\",\n  \"formado\": \"form\",\n  \"formador\": \"formador\",\n  \"formadores\": \"formador\",\n  \"formados\": \"form\",\n  \"formais\": \"form\",\n  \"formal\": \"formal\",\n  \"formalidade\": \"formal\",\n  \"formalmente\": \"formal\",\n  \"formam\": \"form\",\n  \"formamos\": \"form\",\n  \"formando\": \"form\",\n  \"formar\": \"form\",\n  \"formas\": \"form\",\n  \"formatação\": \"format\",\n  \"formato\": \"format\",\n  \"formatos\": \"format\",\n  \"formatura\": \"formatur\",\n  \"formava\": \"form\",\n  \"forme\": \"form\",\n  \"fórmica\": \"fórmic\",\n  \"formidáveis\": \"formid\",\n  \"formidável\": \"formid\",\n  \"formiga\": \"formig\",\n  \"formigas\": \"formig\",\n  \"formigoni\": \"formigon\",\n  \"formol\": \"formol\",\n  \"formos\": \"form\",\n  \"formosa\": \"formos\",\n  \"formou\": \"form\",\n  \"fórmula\": \"fórmul\",\n  \"formulação\": \"formul\",\n  \"formulações\": \"formul\",\n  \"formulada\": \"formul\",\n  \"formuladas\": \"formul\",\n  \"formulados\": \"formul\",\n  \"formular\": \"formul\",\n  \"formulários\": \"formulári\",\n  \"fórmulas\": \"fórmul\",\n  \"formule\": \"formul\",\n  \"fornada\": \"forn\",\n  \"forncedores\": \"forncedor\",\n  \"fornece\": \"fornec\",\n  \"fornecedor\": \"fornecedor\",\n  \"fornecedora\": \"fornecedor\",\n  \"fornecedoras\": \"fornecedor\",\n  \"fornecedores\": \"fornecedor\",\n  \"fornecem\": \"fornec\",\n  \"fornecendo\": \"fornec\",\n  \"fornecer\": \"fornec\",\n  \"forneceu\": \"fornec\",\n  \"forneciam\": \"fornec\",\n  \"fornecidos\": \"fornec\",\n  \"fornecimento\": \"fornec\",\n  \"fornicando\": \"fornic\",\n  \"forno\": \"forn\",\n  \"foro\": \"for\",\n  \"forração\": \"forraçã\",\n  \"forrar\": \"forr\",\n  \"forrest\": \"forrest\",\n  \"forro\": \"forr\",\n  \"forró\": \"forr\",\n  \"forrós\": \"forrós\",\n  \"fort\": \"fort\",\n  \"fortalece\": \"fortalec\",\n  \"fortalecem\": \"fortalec\",\n  \"fortalecer\": \"fortalec\",\n  \"fortaleceria\": \"fortalec\",\n  \"fortaleceu\": \"fortalec\",\n  \"fortalecido\": \"fortalec\",\n  \"fortalecimento\": \"fortalec\",\n  \"fortaleza\": \"fortal\",\n  \"forte\": \"fort\",\n  \"fortemente\": \"fortement\",\n  \"fortes\": \"fort\",\n  \"fortuita\": \"fortuit\",\n  \"fortuito\": \"fortuit\",\n  \"fortuna\": \"fortun\",\n  \"fortunas\": \"fortun\",\n  \"fortunato\": \"fortunat\",\n  \"fortune\": \"fortun\",\n  \"forum\": \"forum\",\n  \"fórum\": \"fórum\",\n  \"fósforos\": \"fósfor\",\n  \"fossa\": \"foss\",\n  \"fosse\": \"foss\",\n  \"fósseis\": \"fóss\",\n  \"fossem\": \"foss\",\n  \"fóssil\": \"fóssil\",\n  \"foster\": \"fost\",\n  \"foto\": \"fot\",\n  \"fotógrafa\": \"fotógraf\",\n  \"fotografá\": \"fotograf\",\n  \"fotografada\": \"fotograf\",\n  \"fotografadas\": \"fotograf\",\n  \"fotografados\": \"fotograf\",\n  \"fotografar\": \"fotograf\",\n  \"fotografia\": \"fotograf\",\n  \"fotografias\": \"fotograf\",\n  \"fotográfica\": \"fotográf\",\n  \"fotográficas\": \"fotográf\",\n  \"fotográfico\": \"fotográf\",\n  \"fotográficos\": \"fotográf\",\n  \"fotógrafo\": \"fotógraf\",\n  \"fotógrafos\": \"fotógraf\",\n  \"fotogramas\": \"fotogram\",\n  \"fotolitos\": \"fotolit\",\n  \"fotonovelas\": \"fotonovel\",\n  \"fotos\": \"fot\",\n  \"fotossensível\": \"fotossens\",\n  \"foundation\": \"foundation\",\n  \"four\": \"four\",\n  \"foxmeyer\": \"foxmey\",\n  \"foz\": \"foz\",\n  \"fr\": \"fr\",\n  \"fracarolli\": \"fracaroll\",\n  \"fracas\": \"frac\",\n  \"fracassado\": \"fracass\",\n  \"fracassados\": \"fracass\",\n  \"fracassasse\": \"fracass\",\n  \"fracasso\": \"fracass\",\n  \"fracassos\": \"fracass\",\n  \"fracassou\": \"fracass\",\n  \"fraco\": \"frac\",\n  \"fracos\": \"frac\",\n  \"frade\": \"frad\",\n  \"frades\": \"frad\",\n  \"fraga\": \"frag\",\n  \"fragata\": \"fragat\",\n  \"frágeis\": \"frág\",\n  \"frágil\": \"frágil\",\n  \"fragilidade\": \"fragil\",\n  \"fragmentos\": \"fragment\",\n  \"fragrância\": \"fragrânc\",\n  \"fraige\": \"fraig\",\n  \"fraldário\": \"fraldári\",\n  \"fraldas\": \"frald\",\n  \"franca\": \"franc\",\n  \"frança\": \"franc\",\n  \"francal\": \"francal\",\n  \"francamente\": \"franc\",\n  \"franças\": \"franc\",\n  \"france\": \"franc\",\n  \"francês\": \"francês\",\n  \"francesa\": \"frances\",\n  \"francesas\": \"frances\",\n  \"francesco\": \"francesc\",\n  \"franceses\": \"frances\",\n  \"francesinha\": \"francesinh\",\n  \"francial\": \"francial\",\n  \"francine\": \"francin\",\n  \"francis\": \"franc\",\n  \"francisca\": \"francisc\",\n  \"franciscano\": \"franciscan\",\n  \"francisco\": \"francisc\",\n  \"franco\": \"franc\",\n  \"françois\": \"franço\",\n  \"françoise\": \"françois\",\n  \"francos\": \"franc\",\n  \"frangalhos\": \"frangalh\",\n  \"frango\": \"frang\",\n  \"franguinho\": \"franguinh\",\n  \"franja\": \"franj\",\n  \"frank\": \"frank\",\n  \"frankfurt\": \"frankfurt\",\n  \"franklin\": \"franklin\",\n  \"franqueadas\": \"franqu\",\n  \"franquedas\": \"franqued\",\n  \"franqui\": \"franqu\",\n  \"franquia\": \"franqu\",\n  \"franquias\": \"franqu\",\n  \"franz\": \"franz\",\n  \"franzina\": \"franzin\",\n  \"fraquejar\": \"fraquej\",\n  \"fraqueza\": \"fraquez\",\n  \"fraquezas\": \"fraquez\",\n  \"frascino\": \"frascin\",\n  \"frasco\": \"frasc\",\n  \"frase\": \"fras\",\n  \"frases\": \"fras\",\n  \"fraterna\": \"fratern\",\n  \"fraternal\": \"fraternal\",\n  \"fraternidade\": \"fratern\",\n  \"fratura\": \"fratur\",\n  \"fraturadas\": \"fratur\",\n  \"fraturas\": \"fratur\",\n  \"fraudadas\": \"fraud\",\n  \"fraudado\": \"fraud\",\n  \"fraudadores\": \"fraudador\",\n  \"fraudar\": \"fraud\",\n  \"fraude\": \"fraud\",\n  \"fraudes\": \"fraud\",\n  \"fraudou\": \"fraud\",\n  \"fraudulenta\": \"fraudulent\",\n  \"fraudulentos\": \"fraudulent\",\n  \"freak\": \"freak\",\n  \"frear\": \"fre\",\n  \"frechette\": \"frechett\",\n  \"frederic\": \"frederic\",\n  \"frederico\": \"freder\",\n  \"fredy\": \"fredy\",\n  \"free\": \"fre\",\n  \"freedom\": \"freedom\",\n  \"freguês\": \"freguês\",\n  \"freguesas\": \"fregues\",\n  \"fregueses\": \"fregues\",\n  \"freguesia\": \"fregues\",\n  \"frei\": \"fre\",\n  \"freio\": \"frei\",\n  \"freios\": \"frei\",\n  \"freiras\": \"freir\",\n  \"freire\": \"freir\",\n  \"freirinha\": \"freirinh\",\n  \"freitas\": \"freit\",\n  \"frejat\": \"frejat\",\n  \"frenesi\": \"frenes\",\n  \"freneticamente\": \"frenet\",\n  \"frenéticas\": \"frenét\",\n  \"frenético\": \"frenét\",\n  \"frente\": \"frent\",\n  \"frentes\": \"frent\",\n  \"frequência\": \"frequênc\",\n  \"freqüência\": \"freqüênc\",\n  \"frequenta\": \"frequent\",\n  \"freqüenta\": \"freqüent\",\n  \"frequentada\": \"frequent\",\n  \"frequentado\": \"frequent\",\n  \"frequentador\": \"frequent\",\n  \"freqüentador\": \"freqüent\",\n  \"frequentadora\": \"frequent\",\n  \"frequentadores\": \"frequent\",\n  \"freqüentadores\": \"freqüent\",\n  \"frequentados\": \"frequent\",\n  \"freqüentados\": \"freqüent\",\n  \"frequentam\": \"frequent\",\n  \"freqüentam\": \"freqüent\",\n  \"frequentando\": \"frequent\",\n  \"freqüentando\": \"freqüent\",\n  \"frequentar\": \"frequent\",\n  \"freqüentar\": \"freqüent\",\n  \"frequentaram\": \"frequent\",\n  \"frequentasse\": \"frequent\",\n  \"frequentava\": \"frequent\",\n  \"freqüentava\": \"freqüent\",\n  \"freqüentávamos\": \"freqüent\",\n  \"frequente\": \"frequent\",\n  \"freqüente\": \"freqüent\",\n  \"freqüentei\": \"freqüent\",\n  \"frequentemente\": \"frequent\",\n  \"freqüentemente\": \"freqüent\",\n  \"frequentes\": \"frequent\",\n  \"freqüentes\": \"freqüent\",\n  \"frequento\": \"frequent\",\n  \"freqüento\": \"freqüent\",\n  \"frequentou\": \"frequent\",\n  \"freqüentou\": \"freqüent\",\n  \"fresca\": \"fresc\",\n  \"fresco\": \"fresc\",\n  \"frescos\": \"fresc\",\n  \"frescuras\": \"frescur\",\n  \"fresta\": \"frest\",\n  \"frestas\": \"frest\",\n  \"fretada\": \"fret\",\n  \"fretado\": \"fret\",\n  \"fretamentos\": \"fretament\",\n  \"frete\": \"fret\",\n  \"freud\": \"freud\",\n  \"freudiana\": \"freudian\",\n  \"freudiano\": \"freudian\",\n  \"frevo\": \"frev\",\n  \"freyre\": \"freyr\",\n  \"fria\": \"fri\",\n  \"frias\": \"fri\",\n  \"friburgo\": \"friburg\",\n  \"fricção\": \"fricçã\",\n  \"fridlin\": \"fridlin\",\n  \"friedlander\": \"friedland\",\n  \"friedman\": \"friedman\",\n  \"frigideira\": \"frigideir\",\n  \"frígios\": \"frígi\",\n  \"frigir\": \"frig\",\n  \"frigobar\": \"frigob\",\n  \"frio\": \"fri\",\n  \"frios\": \"fri\",\n  \"frisa\": \"fris\",\n  \"frisar\": \"fris\",\n  \"frisson\": \"frisson\",\n  \"frita\": \"frit\",\n  \"fritar\": \"frit\",\n  \"fritas\": \"frit\",\n  \"fritz\": \"fritz\",\n  \"frívolo\": \"frívol\",\n  \"frommer\": \"fromm\",\n  \"frondoso\": \"frondos\",\n  \"front\": \"front\",\n  \"frontalmente\": \"frontal\",\n  \"fronteira\": \"fronteir\",\n  \"fronteiras\": \"fronteir\",\n  \"fronteires\": \"front\",\n  \"fronteiriço\": \"fronteiric\",\n  \"fronteiriços\": \"fronteiric\",\n  \"frontières\": \"frontièr\",\n  \"frossard\": \"frossard\",\n  \"frota\": \"frot\",\n  \"frugal\": \"frugal\",\n  \"fruição\": \"fruiçã\",\n  \"frustação\": \"frustaçã\",\n  \"frustração\": \"frustraçã\",\n  \"frustrações\": \"frustraçõ\",\n  \"frustradas\": \"frustr\",\n  \"frustrado\": \"frustr\",\n  \"frustrante\": \"frustrant\",\n  \"frustrar\": \"frustr\",\n  \"fruta\": \"frut\",\n  \"frutado\": \"frut\",\n  \"frutas\": \"frut\",\n  \"fruticultura\": \"fruticultur\",\n  \"fruto\": \"frut\",\n  \"frutos\": \"frut\",\n  \"fry\": \"fry\",\n  \"fsf\": \"fsf\",\n  \"ftc\": \"ftc\",\n  \"fu\": \"fu\",\n  \"fuçar\": \"fuc\",\n  \"fuga\": \"fug\",\n  \"fugas\": \"fug\",\n  \"fugaz\": \"fugaz\",\n  \"fugi\": \"fug\",\n  \"fugia\": \"fug\",\n  \"fugiam\": \"fug\",\n  \"fugido\": \"fug\",\n  \"fugidos\": \"fug\",\n  \"fugimos\": \"fug\",\n  \"fugir\": \"fug\",\n  \"fugisse\": \"fug\",\n  \"fugiu\": \"fug\",\n  \"fui\": \"fui\",\n  \"fuja\": \"fuj\",\n  \"fujimori\": \"fujimor\",\n  \"fujita\": \"fujit\",\n  \"fulano\": \"fulan\",\n  \"fulgurante\": \"fulgur\",\n  \"fuligem\": \"fulig\",\n  \"fulmina\": \"fulmin\",\n  \"fulminado\": \"fulmin\",\n  \"fulton\": \"fulton\",\n  \"fuma\": \"fum\",\n  \"fumaça\": \"fumac\",\n  \"fumacê\": \"fumac\",\n  \"fumacinha\": \"fumacinh\",\n  \"fumado\": \"fum\",\n  \"fumam\": \"fum\",\n  \"fumando\": \"fum\",\n  \"fumante\": \"fumant\",\n  \"fumantes\": \"fumant\",\n  \"fumar\": \"fum\",\n  \"fumassem\": \"fum\",\n  \"fumava\": \"fum\",\n  \"fumei\": \"fum\",\n  \"fumo\": \"fum\",\n  \"fumou\": \"fum\",\n  \"funai\": \"funa\",\n  \"funarte\": \"funart\",\n  \"função\": \"funçã\",\n  \"funcef\": \"funcef\",\n  \"funcesp\": \"funcesp\",\n  \"funciona\": \"funcion\",\n  \"funcionado\": \"funcion\",\n  \"funcional\": \"funcional\",\n  \"funcionalismo\": \"funcional\",\n  \"funcionam\": \"funcion\",\n  \"funcionamento\": \"funcion\",\n  \"funcionando\": \"funcion\",\n  \"funcionar\": \"funcion\",\n  \"funcionará\": \"funcion\",\n  \"funcionarem\": \"funcion\",\n  \"funcionaria\": \"funcion\",\n  \"funcionária\": \"funcionár\",\n  \"funcionárias\": \"funcionár\",\n  \"funcionário\": \"funcionári\",\n  \"funcionários\": \"funcionári\",\n  \"funcionava\": \"funcion\",\n  \"funcionavam\": \"funcion\",\n  \"funcionem\": \"funcion\",\n  \"funcionou\": \"funcion\",\n  \"funções\": \"funçõ\",\n  \"fund\": \"fund\",\n  \"funda\": \"fund\",\n  \"fundação\": \"fundaçã\",\n  \"fundações\": \"fundaçõ\",\n  \"fundada\": \"fund\",\n  \"fundadas\": \"fund\",\n  \"fundado\": \"fund\",\n  \"fundador\": \"fundador\",\n  \"fundadora\": \"fundador\",\n  \"fundadoras\": \"fundador\",\n  \"fundadores\": \"fundador\",\n  \"fundamentada\": \"fundament\",\n  \"fundamentais\": \"fundament\",\n  \"fundamental\": \"fundamental\",\n  \"fundamentalistas\": \"fundamental\",\n  \"fundamentalmente\": \"fundamental\",\n  \"fundamento\": \"fundament\",\n  \"fundamentos\": \"fundament\",\n  \"fundar\": \"fund\",\n  \"funde\": \"fund\",\n  \"fundi\": \"fund\",\n  \"fundir\": \"fund\",\n  \"fundiram\": \"fund\",\n  \"fundo\": \"fund\",\n  \"fundos\": \"fund\",\n  \"fundou\": \"fund\",\n  \"funeral\": \"funeral\",\n  \"funerária\": \"funerár\",\n  \"funerário\": \"funerári\",\n  \"funil\": \"funil\",\n  \"funk\": \"funk\",\n  \"funkeira\": \"funkeir\",\n  \"funkeiro\": \"funkeir\",\n  \"funkeiros\": \"funkeir\",\n  \"funks\": \"funks\",\n  \"fura\": \"fur\",\n  \"furacão\": \"furacã\",\n  \"furada\": \"fur\",\n  \"furadas\": \"fur\",\n  \"furado\": \"fur\",\n  \"furar\": \"fur\",\n  \"fúria\": \"fúr\",\n  \"furiosa\": \"furios\",\n  \"furioso\": \"furios\",\n  \"furiosos\": \"furios\",\n  \"furlanetto\": \"furlanett\",\n  \"furnas\": \"furn\",\n  \"furo\": \"fur\",\n  \"furor\": \"furor\",\n  \"furta\": \"furt\",\n  \"furtado\": \"furt\",\n  \"furtar\": \"furt\",\n  \"furto\": \"furt\",\n  \"fusão\": \"fusã\",\n  \"fusca\": \"fusc\",\n  \"fuseau\": \"fuseau\",\n  \"fuseaus\": \"fuseaus\",\n  \"fuselagem\": \"fuselag\",\n  \"fusões\": \"fusõ\",\n  \"futebol\": \"futebol\",\n  \"fútil\": \"fútil\",\n  \"futura\": \"futur\",\n  \"futuramente\": \"futur\",\n  \"futuras\": \"futur\",\n  \"futurística\": \"futuríst\",\n  \"futuro\": \"futur\",\n  \"futurologia\": \"futurolog\",\n  \"futuros\": \"futur\",\n  \"fuvest\": \"fuvest\",\n  \"fuzil\": \"fuzil\",\n  \"fuzilamento\": \"fuzil\",\n  \"fuzileiros\": \"fuzileir\",\n  \"fuzis\": \"fuz\",\n  \"fv\": \"fv\",\n  \"g\": \"g\",\n  \"gabanna\": \"gabann\",\n  \"gabaritado\": \"gabarit\",\n  \"gabaritados\": \"gabarit\",\n  \"gabaritos\": \"gabarit\",\n  \"gabeira\": \"gabeir\",\n  \"gabinete\": \"gabinet\",\n  \"gabriel\": \"gabriel\",\n  \"gabriela\": \"gabriel\",\n  \"gabrielle\": \"gabriell\",\n  \"gado\": \"gad\",\n  \"gaguinho\": \"gaguinh\",\n  \"gaiger\": \"gaig\",\n  \"gaio\": \"gai\",\n  \"gaiola\": \"gaiol\",\n  \"gaita\": \"gait\",\n  \"gal\": \"gal\",\n  \"galã\": \"galã\",\n  \"galáctico\": \"galáct\",\n  \"galamba\": \"galamb\",\n  \"galanin\": \"galanin\",\n  \"galanteio\": \"galantei\",\n  \"galãs\": \"galãs\",\n  \"galdino\": \"galdin\",\n  \"galembeck\": \"galembeck\",\n  \"galera\": \"gal\",\n  \"galeras\": \"gal\",\n  \"galeria\": \"gal\",\n  \"galerias\": \"gal\",\n  \"galgando\": \"galg\",\n  \"galho\": \"galh\",\n  \"galhos\": \"galh\",\n  \"galilei\": \"galil\",\n  \"galileu\": \"galil\",\n  \"galinha\": \"galinh\",\n  \"galinhas\": \"galinh\",\n  \"galisteu\": \"galist\",\n  \"gall\": \"gall\",\n  \"galliano\": \"gallian\",\n  \"gallup\": \"gallup\",\n  \"galo\": \"gal\",\n  \"galopante\": \"galop\",\n  \"galope\": \"galop\",\n  \"galos\": \"gal\",\n  \"galpão\": \"galpã\",\n  \"galpões\": \"galpõ\",\n  \"galtier\": \"galti\",\n  \"galtieri\": \"galtier\",\n  \"galuppo\": \"galupp\",\n  \"galvão\": \"galvã\",\n  \"galvez\": \"galvez\",\n  \"gam\": \"gam\",\n  \"gama\": \"gam\",\n  \"gamão\": \"gamã\",\n  \"gambá\": \"gamb\",\n  \"gambino\": \"gambin\",\n  \"game\": \"gam\",\n  \"games\": \"gam\",\n  \"gana\": \"gan\",\n  \"ganância\": \"ganânc\",\n  \"gananciosos\": \"gananc\",\n  \"gancho\": \"ganch\",\n  \"gandra\": \"gandr\",\n  \"gangorra\": \"gangorr\",\n  \"gângsteres\": \"gângst\",\n  \"gangue\": \"gang\",\n  \"gangues\": \"gangu\",\n  \"ganha\": \"ganh\",\n  \"ganhado\": \"ganh\",\n  \"ganhador\": \"ganhador\",\n  \"ganham\": \"ganh\",\n  \"ganhamos\": \"ganh\",\n  \"ganhando\": \"ganh\",\n  \"ganhar\": \"ganh\",\n  \"ganharam\": \"ganh\",\n  \"ganharão\": \"ganh\",\n  \"ganharem\": \"ganh\",\n  \"ganharia\": \"ganh\",\n  \"ganhariam\": \"ganh\",\n  \"ganhas\": \"ganh\",\n  \"ganhassem\": \"ganh\",\n  \"ganhava\": \"ganh\",\n  \"ganhavam\": \"ganh\",\n  \"ganhe\": \"ganh\",\n  \"ganhei\": \"ganh\",\n  \"ganhem\": \"ganh\",\n  \"ganho\": \"ganh\",\n  \"ganhos\": \"ganh\",\n  \"ganhou\": \"ganh\",\n  \"ganon\": \"ganon\",\n  \"gantois\": \"ganto\",\n  \"garagem\": \"garag\",\n  \"garagens\": \"garagens\",\n  \"garambone\": \"garambon\",\n  \"garanhão\": \"garanhã\",\n  \"garanta\": \"garant\",\n  \"garantam\": \"garant\",\n  \"garante\": \"garant\",\n  \"garantem\": \"garant\",\n  \"garantia\": \"garant\",\n  \"garantias\": \"garant\",\n  \"garantida\": \"garant\",\n  \"garantidas\": \"garant\",\n  \"garantido\": \"garant\",\n  \"garantidos\": \"garant\",\n  \"garantindo\": \"garant\",\n  \"garantir\": \"garant\",\n  \"garantiria\": \"garant\",\n  \"garantiriam\": \"garant\",\n  \"garantiu\": \"garant\",\n  \"garanto\": \"garant\",\n  \"garbo\": \"garb\",\n  \"garbosos\": \"garbos\",\n  \"garça\": \"garc\",\n  \"garças\": \"garc\",\n  \"garcia\": \"garc\",\n  \"garcía\": \"garcí\",\n  \"garçom\": \"garçom\",\n  \"garçons\": \"garçons\",\n  \"gardenal\": \"gardenal\",\n  \"gardenberg\": \"gardenberg\",\n  \"gardner\": \"gardn\",\n  \"gargalhada\": \"gargalh\",\n  \"gargalhadas\": \"gargalh\",\n  \"garganta\": \"gargant\",\n  \"garibada\": \"garib\",\n  \"garibaldi\": \"garibald\",\n  \"garimpados\": \"garimp\",\n  \"garimpando\": \"garimp\",\n  \"garimpavam\": \"garimp\",\n  \"garimpeiros\": \"garimpeir\",\n  \"garimpo\": \"garimp\",\n  \"garimpos\": \"garimp\",\n  \"garmatter\": \"garmatt\",\n  \"garoa\": \"garo\",\n  \"garota\": \"garot\",\n  \"garotada\": \"garot\",\n  \"garotas\": \"garot\",\n  \"garotinha\": \"garotinh\",\n  \"garotinho\": \"garotinh\",\n  \"garotinhos\": \"garotinh\",\n  \"garoto\": \"garot\",\n  \"garotões\": \"garotõ\",\n  \"garotos\": \"garot\",\n  \"garrafa\": \"garraf\",\n  \"garrafada\": \"garraf\",\n  \"garrafas\": \"garraf\",\n  \"garrafinha\": \"garrafinh\",\n  \"garrafinhas\": \"garrafinh\",\n  \"garranchos\": \"garranch\",\n  \"garras\": \"garr\",\n  \"garrincha\": \"garrinch\",\n  \"garros\": \"garr\",\n  \"garry\": \"garry\",\n  \"gartner\": \"gartn\",\n  \"garton\": \"garton\",\n  \"gary\": \"gary\",\n  \"gás\": \"gás\",\n  \"gases\": \"gas\",\n  \"gasolina\": \"gasolin\",\n  \"gasparetto\": \"gasparett\",\n  \"gaspari\": \"gaspar\",\n  \"gasta\": \"gast\",\n  \"gastadora\": \"gastador\",\n  \"gastadores\": \"gastador\",\n  \"gastam\": \"gast\",\n  \"gastando\": \"gast\",\n  \"gastão\": \"gastã\",\n  \"gastar\": \"gast\",\n  \"gastará\": \"gast\",\n  \"gastarem\": \"gast\",\n  \"gastaria\": \"gast\",\n  \"gastas\": \"gast\",\n  \"gastava\": \"gast\",\n  \"gastávamos\": \"gast\",\n  \"gaste\": \"gast\",\n  \"gasto\": \"gast\",\n  \"gastos\": \"gast\",\n  \"gastou\": \"gast\",\n  \"gástrico\": \"gástric\",\n  \"gastrite\": \"gastrit\",\n  \"gastrointestinais\": \"gastrointestin\",\n  \"gastrointestinal\": \"gastrointestinal\",\n  \"gastronomia\": \"gastronom\",\n  \"gastronômica\": \"gastronôm\",\n  \"gastronômicas\": \"gastronôm\",\n  \"gastronômico\": \"gastronôm\",\n  \"gate\": \"gat\",\n  \"gates\": \"gat\",\n  \"gatilho\": \"gatilh\",\n  \"gato\": \"gat\",\n  \"gatos\": \"gat\",\n  \"gatunagem\": \"gatunag\",\n  \"gaúcha\": \"gaúch\",\n  \"gaucher\": \"gauch\",\n  \"gaúcho\": \"gaúch\",\n  \"gauderer\": \"gauder\",\n  \"gaulle\": \"gaull\",\n  \"gaullista\": \"gaullist\",\n  \"gaultier\": \"gaulti\",\n  \"gávea\": \"gáv\",\n  \"gaveta\": \"gavet\",\n  \"gavetas\": \"gavet\",\n  \"gavio\": \"gavi\",\n  \"gaviões\": \"gaviõ\",\n  \"gay\": \"gay\",\n  \"gays\": \"gays\",\n  \"gaza\": \"gaz\",\n  \"gazeta\": \"gazet\",\n  \"gazolla\": \"gazoll\",\n  \"gb\": \"gb\",\n  \"ge\": \"ge\",\n  \"geada\": \"gead\",\n  \"geadas\": \"gead\",\n  \"gehorke\": \"gehork\",\n  \"géis\": \"géis\",\n  \"geisel\": \"geisel\",\n  \"gel\": \"gel\",\n  \"gelada\": \"gel\",\n  \"geladas\": \"gel\",\n  \"geladeira\": \"geladeir\",\n  \"geladeiras\": \"geladeir\",\n  \"gelado\": \"gel\",\n  \"gelatinosa\": \"gelatin\",\n  \"geléia\": \"gel\",\n  \"geller\": \"gell\",\n  \"gelo\": \"gel\",\n  \"gelol\": \"gelol\",\n  \"gêmea\": \"gêm\",\n  \"gêmeas\": \"gêm\",\n  \"gêmeos\": \"gêm\",\n  \"gemidos\": \"gem\",\n  \"gen\": \"gen\",\n  \"gencor\": \"gencor\",\n  \"gene\": \"gen\",\n  \"genealogia\": \"genealog\",\n  \"genebra\": \"genebr\",\n  \"generais\": \"gener\",\n  \"general\": \"general\",\n  \"generalização\": \"generaliz\",\n  \"generalizada\": \"generaliz\",\n  \"generalizado\": \"generaliz\",\n  \"generalizados\": \"generaliz\",\n  \"generis\": \"gener\",\n  \"gênero\": \"gêner\",\n  \"gêneros\": \"gêner\",\n  \"generosa\": \"gener\",\n  \"generosamente\": \"gener\",\n  \"generosidade\": \"generos\",\n  \"generoso\": \"gener\",\n  \"generosos\": \"gener\",\n  \"genes\": \"gen\",\n  \"genesis\": \"genes\",\n  \"gênesis\": \"gênes\",\n  \"genetic\": \"genetic\",\n  \"genética\": \"genét\",\n  \"geneticamente\": \"genet\",\n  \"genéticas\": \"genét\",\n  \"geneticista\": \"genetic\",\n  \"genético\": \"genét\",\n  \"genéticos\": \"genét\",\n  \"gengibre\": \"gengibr\",\n  \"geni\": \"gen\",\n  \"geniais\": \"geni\",\n  \"genial\": \"genial\",\n  \"genialidade\": \"genial\",\n  \"gênica\": \"gênic\",\n  \"geniculado\": \"genicul\",\n  \"genículos\": \"genícul\",\n  \"genildo\": \"genild\",\n  \"gênio\": \"gêni\",\n  \"gênios\": \"gêni\",\n  \"genitais\": \"genit\",\n  \"genital\": \"genital\",\n  \"genitália\": \"genitál\",\n  \"genival\": \"genival\",\n  \"genivaldo\": \"genivald\",\n  \"genocídio\": \"genocídi\",\n  \"genoma\": \"genom\",\n  \"genomas\": \"genom\",\n  \"genomic\": \"genomic\",\n  \"genovês\": \"genovês\",\n  \"genovese\": \"genoves\",\n  \"genoveses\": \"genoves\",\n  \"genro\": \"genr\",\n  \"gente\": \"gent\",\n  \"gentil\": \"gentil\",\n  \"gentileza\": \"gentil\",\n  \"gentilmente\": \"gentil\",\n  \"genuína\": \"genuín\",\n  \"genuinamente\": \"genuin\",\n  \"genuíno\": \"genuín\",\n  \"genuínos\": \"genuín\",\n  \"genus\": \"genus\",\n  \"geny\": \"geny\",\n  \"geofísico\": \"geofís\",\n  \"geografia\": \"geograf\",\n  \"geográfica\": \"geográf\",\n  \"geograficamente\": \"geograf\",\n  \"geográficas\": \"geográf\",\n  \"geográficos\": \"geográf\",\n  \"geologia\": \"geolog\",\n  \"geológicas\": \"geológ\",\n  \"geométricos\": \"geométr\",\n  \"geopolítico\": \"geopolít\",\n  \"george\": \"georg\",\n  \"georges\": \"georg\",\n  \"georgetown\": \"georgetown\",\n  \"georgette\": \"georgett\",\n  \"geórgia\": \"geórg\",\n  \"gera\": \"ger\",\n  \"geração\": \"geraçã\",\n  \"gerações\": \"geraçõ\",\n  \"gerada\": \"ger\",\n  \"geradas\": \"ger\",\n  \"gerado\": \"ger\",\n  \"gerador\": \"gerador\",\n  \"geradora\": \"gerador\",\n  \"geradoras\": \"gerador\",\n  \"gerados\": \"ger\",\n  \"gerais\": \"ger\",\n  \"geral\": \"geral\",\n  \"gerald\": \"gerald\",\n  \"geraldo\": \"gerald\",\n  \"geralmente\": \"geral\",\n  \"geram\": \"ger\",\n  \"gerando\": \"ger\",\n  \"gerar\": \"ger\",\n  \"geraram\": \"ger\",\n  \"gerardus\": \"gerardus\",\n  \"geraria\": \"ger\",\n  \"gerdau\": \"gerdau\",\n  \"gere\": \"ger\",\n  \"gerencia\": \"gerenc\",\n  \"gerência\": \"gerênc\",\n  \"gerenciado\": \"gerenc\",\n  \"gerencial\": \"gerencial\",\n  \"gerenciam\": \"gerenc\",\n  \"gerenciamento\": \"gerenc\",\n  \"gerenciar\": \"gerenc\",\n  \"gerente\": \"gerent\",\n  \"gerentes\": \"gerent\",\n  \"gergelim\": \"gergelim\",\n  \"geriavit\": \"geriavit\",\n  \"geringonça\": \"geringonc\",\n  \"gerir\": \"ger\",\n  \"germano\": \"german\",\n  \"gero\": \"ger\",\n  \"gerou\": \"ger\",\n  \"gerson\": \"gerson\",\n  \"gérson\": \"gérson\",\n  \"gerusa\": \"gerus\",\n  \"gesner\": \"gesn\",\n  \"gesso\": \"gess\",\n  \"gestante\": \"gestant\",\n  \"gestantes\": \"gestant\",\n  \"gestão\": \"gestã\",\n  \"gesticula\": \"gesticul\",\n  \"gesticulava\": \"gesticul\",\n  \"gesto\": \"gest\",\n  \"gestor\": \"gestor\",\n  \"gestores\": \"gestor\",\n  \"gestos\": \"gest\",\n  \"getúlio\": \"getúli\",\n  \"gft\": \"gft\",\n  \"gg\": \"gg\",\n  \"gher\": \"gher\",\n  \"ghia\": \"ghi\",\n  \"gholmia\": \"gholm\",\n  \"ghorayeb\": \"ghorayeb\",\n  \"ghost\": \"ghost\",\n  \"giacomo\": \"giacom\",\n  \"gianetti\": \"gianett\",\n  \"gianfrancesco\": \"gianfrancesc\",\n  \"giangrande\": \"giangrand\",\n  \"gianinni\": \"gianinn\",\n  \"gianne\": \"giann\",\n  \"gianni\": \"giann\",\n  \"giannini\": \"giannin\",\n  \"giardini\": \"giardin\",\n  \"gif\": \"gif\",\n  \"gigabytes\": \"gigabyt\",\n  \"gigante\": \"gigant\",\n  \"gigantes\": \"gigant\",\n  \"gigantesca\": \"gigantesc\",\n  \"gigantescas\": \"gigantesc\",\n  \"gigantesco\": \"gigantesc\",\n  \"gigolozinho\": \"gigolozinh\",\n  \"gil\": \"gil\",\n  \"gilbert\": \"gilbert\",\n  \"gilberto\": \"gilbert\",\n  \"gillespie\": \"gillespi\",\n  \"gilmar\": \"gilm\",\n  \"gilney\": \"gilney\",\n  \"gilson\": \"gilson\",\n  \"gim\": \"gim\",\n  \"gimenes\": \"gimen\",\n  \"ginásio\": \"ginási\",\n  \"ginasta\": \"ginast\",\n  \"ginástica\": \"ginást\",\n  \"ginecologia\": \"ginecolog\",\n  \"ginecológica\": \"ginecológ\",\n  \"ginecologista\": \"ginecolog\",\n  \"ginga\": \"ging\",\n  \"ginola\": \"ginol\",\n  \"giorgio\": \"giorgi\",\n  \"giovane\": \"giovan\",\n  \"giovanna\": \"giovann\",\n  \"giovanni\": \"giovann\",\n  \"gira\": \"gir\",\n  \"girafinhas\": \"girafinh\",\n  \"giraldez\": \"giraldez\",\n  \"girar\": \"gir\",\n  \"giratório\": \"giratóri\",\n  \"girava\": \"gir\",\n  \"giro\": \"gir\",\n  \"girsz\": \"girsz\",\n  \"gisela\": \"gisel\",\n  \"giselda\": \"giseld\",\n  \"gisele\": \"gisel\",\n  \"giuletta\": \"giulett\",\n  \"giulia\": \"giul\",\n  \"giuliani\": \"giulian\",\n  \"giuseppe\": \"giusepp\",\n  \"giz\": \"giz\",\n  \"glamour\": \"glamour\",\n  \"glamourizar\": \"glamouriz\",\n  \"glândulas\": \"glândul\",\n  \"glasgow\": \"glasgow\",\n  \"glat\": \"glat\",\n  \"glauco\": \"glauc\",\n  \"gleason\": \"gleason\",\n  \"glenda\": \"glend\",\n  \"glenn\": \"glenn\",\n  \"glepf\": \"glepf\",\n  \"glicólico\": \"glicól\",\n  \"glicoproteínas\": \"glicoproteín\",\n  \"glicose\": \"glicos\",\n  \"glina\": \"glin\",\n  \"glinardello\": \"glinardell\",\n  \"globais\": \"glob\",\n  \"global\": \"global\",\n  \"globalização\": \"globaliz\",\n  \"globalizada\": \"globaliz\",\n  \"globalizado\": \"globaliz\",\n  \"globalizaram\": \"globaliz\",\n  \"globalmente\": \"global\",\n  \"globe\": \"glob\",\n  \"globeleza\": \"globel\",\n  \"globo\": \"glob\",\n  \"globonews\": \"globonews\",\n  \"glóbulos\": \"glóbul\",\n  \"glombek\": \"glombek\",\n  \"gloria\": \"glor\",\n  \"glória\": \"glór\",\n  \"glórias\": \"glór\",\n  \"glorificação\": \"glorific\",\n  \"glorificam\": \"glorific\",\n  \"gloriosa\": \"glorios\",\n  \"glossário\": \"glossári\",\n  \"gls\": \"gls\",\n  \"gluck\": \"gluck\",\n  \"glutamato\": \"glutamat\",\n  \"glúteos\": \"glút\",\n  \"gm\": \"gm\",\n  \"gnatalli\": \"gnatall\",\n  \"go\": \"go\",\n  \"goa\": \"goa\",\n  \"gobbi\": \"gobb\",\n  \"god\": \"god\",\n  \"godói\": \"godó\",\n  \"godoy\": \"godoy\",\n  \"godzilla\": \"godzill\",\n  \"goering\": \"goering\",\n  \"góes\": \"góes\",\n  \"goi\": \"goi\",\n  \"goiabada\": \"goiab\",\n  \"goiânia\": \"goiân\",\n  \"goiano\": \"goian\",\n  \"goiás\": \"goiás\",\n  \"going\": \"going\",\n  \"gol\": \"gol\",\n  \"golbery\": \"golbery\",\n  \"goldberg\": \"goldberg\",\n  \"goldblatt\": \"goldblatt\",\n  \"goldblum\": \"goldblum\",\n  \"golden\": \"golden\",\n  \"goldin\": \"goldin\",\n  \"goldoni\": \"goldon\",\n  \"gole\": \"gol\",\n  \"goleada\": \"gol\",\n  \"goleiro\": \"goleir\",\n  \"goles\": \"gol\",\n  \"golfe\": \"golf\",\n  \"golfinhos\": \"golfinh\",\n  \"golfo\": \"golf\",\n  \"gollop\": \"gollop\",\n  \"golpe\": \"golp\",\n  \"golpes\": \"golp\",\n  \"golpista\": \"golpist\",\n  \"golpistas\": \"golpist\",\n  \"gols\": \"gols\",\n  \"golubic\": \"golubic\",\n  \"gomes\": \"gom\",\n  \"gompas\": \"gomp\",\n  \"gonçalo\": \"gonçal\",\n  \"gonçalves\": \"gonçalv\",\n  \"gonodal\": \"gonodal\",\n  \"gonzaga\": \"gonzag\",\n  \"gonzales\": \"gonzal\",\n  \"gonzalez\": \"gonzalez\",\n  \"gonzalo\": \"gonzal\",\n  \"gorda\": \"gord\",\n  \"gordas\": \"gord\",\n  \"gordinha\": \"gordinh\",\n  \"gordinhas\": \"gordinh\",\n  \"gordinho\": \"gordinh\",\n  \"gordinhos\": \"gordinh\",\n  \"gordo\": \"gord\",\n  \"gordos\": \"gord\",\n  \"gorduchos\": \"gorduch\",\n  \"gordura\": \"gordur\",\n  \"gordurão\": \"gordurã\",\n  \"gorduras\": \"gordur\",\n  \"gordurinha\": \"gordurinh\",\n  \"gordurosas\": \"gordur\",\n  \"gordurosos\": \"gordur\",\n  \"gorgulho\": \"gorgulh\",\n  \"gorila\": \"goril\",\n  \"goró\": \"gor\",\n  \"gospel\": \"gospel\",\n  \"gosta\": \"gost\",\n  \"gostado\": \"gost\",\n  \"gostam\": \"gost\",\n  \"gostamos\": \"gost\",\n  \"gostando\": \"gost\",\n  \"gostar\": \"gost\",\n  \"gostaram\": \"gost\",\n  \"gostaria\": \"gost\",\n  \"gostariam\": \"gost\",\n  \"gostasse\": \"gost\",\n  \"gostassem\": \"gost\",\n  \"gostava\": \"gost\",\n  \"gostavam\": \"gost\",\n  \"gostávamos\": \"gost\",\n  \"gostei\": \"gost\",\n  \"gostem\": \"gost\",\n  \"gostinho\": \"gostinh\",\n  \"gosto\": \"gost\",\n  \"gostos\": \"gost\",\n  \"gostosa\": \"gostos\",\n  \"gostosamente\": \"gostos\",\n  \"gostoso\": \"gostos\",\n  \"gostou\": \"gost\",\n  \"gota\": \"got\",\n  \"gotas\": \"got\",\n  \"gotinha\": \"gotinh\",\n  \"gotinhas\": \"gotinh\",\n  \"gott\": \"gott\",\n  \"gotti\": \"gott\",\n  \"goulart\": \"goulart\",\n  \"gourmet\": \"gourmet\",\n  \"gouvea\": \"gouv\",\n  \"gouvêa\": \"gouv\",\n  \"gov\": \"gov\",\n  \"governa\": \"govern\",\n  \"governada\": \"govern\",\n  \"governado\": \"govern\",\n  \"governador\": \"govern\",\n  \"governadores\": \"govern\",\n  \"governados\": \"govern\",\n  \"governamentais\": \"governament\",\n  \"governamental\": \"governamental\",\n  \"governantes\": \"govern\",\n  \"governar\": \"govern\",\n  \"governaram\": \"govern\",\n  \"governista\": \"govern\",\n  \"governo\": \"govern\",\n  \"governos\": \"govern\",\n  \"governou\": \"govern\",\n  \"goza\": \"goz\",\n  \"gozador\": \"gozador\",\n  \"gozando\": \"goz\",\n  \"gozar\": \"goz\",\n  \"gozava\": \"goz\",\n  \"gozo\": \"goz\",\n  \"gozou\": \"goz\",\n  \"gps\": \"gps\",\n  \"grã\": \"grã\",\n  \"graça\": \"grac\",\n  \"graças\": \"grac\",\n  \"grace\": \"grac\",\n  \"graciliano\": \"gracilian\",\n  \"gracinha\": \"gracinh\",\n  \"gracioso\": \"gracios\",\n  \"gradativa\": \"gradat\",\n  \"gradativamente\": \"gradat\",\n  \"grades\": \"grad\",\n  \"graduação\": \"graduaçã\",\n  \"graduada\": \"gradu\",\n  \"graduado\": \"gradu\",\n  \"graduais\": \"gradu\",\n  \"gradual\": \"gradual\",\n  \"gradualmente\": \"gradual\",\n  \"graduando\": \"gradu\",\n  \"graf\": \"graf\",\n  \"grafar\": \"graf\",\n  \"grafias\": \"graf\",\n  \"gráfica\": \"gráfic\",\n  \"gráficas\": \"gráfic\",\n  \"gráfico\": \"gráfic\",\n  \"gráficos\": \"gráfic\",\n  \"grafista\": \"grafist\",\n  \"grafite\": \"grafit\",\n  \"grafites\": \"grafit\",\n  \"grafotécnico\": \"grafotécn\",\n  \"grahan\": \"grahan\",\n  \"gralha\": \"gralh\",\n  \"grama\": \"gram\",\n  \"gramado\": \"gram\",\n  \"gramados\": \"gram\",\n  \"gramas\": \"gram\",\n  \"grammont\": \"grammont\",\n  \"grampeadas\": \"gramp\",\n  \"grampeados\": \"gramp\",\n  \"grampeei\": \"gramp\",\n  \"grampo\": \"gramp\",\n  \"grampos\": \"gramp\",\n  \"grana\": \"gran\",\n  \"granada\": \"gran\",\n  \"granadas\": \"gran\",\n  \"granatieri\": \"granatier\",\n  \"grand\": \"grand\",\n  \"grande\": \"grand\",\n  \"grandemente\": \"grandement\",\n  \"grandes\": \"grand\",\n  \"grandeza\": \"grandez\",\n  \"grandiosa\": \"grandios\",\n  \"grando\": \"grand\",\n  \"grandões\": \"grandõ\",\n  \"graneleiro\": \"graneleir\",\n  \"granítica\": \"granít\",\n  \"granito\": \"granit\",\n  \"granizo\": \"graniz\",\n  \"granja\": \"granj\",\n  \"grant\": \"grant\",\n  \"grão\": \"grã\",\n  \"grãos\": \"grã\",\n  \"grape\": \"grap\",\n  \"grata\": \"grat\",\n  \"gratidão\": \"gratidã\",\n  \"gratificado\": \"gratific\",\n  \"gratificante\": \"gratific\",\n  \"grátis\": \"grát\",\n  \"grato\": \"grat\",\n  \"gratuita\": \"gratuit\",\n  \"gratuitamente\": \"gratuit\",\n  \"gratuitas\": \"gratuit\",\n  \"gratuito\": \"gratuit\",\n  \"gratuitos\": \"gratuit\",\n  \"grau\": \"grau\",\n  \"graus\": \"graus\",\n  \"grava\": \"grav\",\n  \"gravação\": \"gravaçã\",\n  \"gravações\": \"gravaçõ\",\n  \"gravada\": \"grav\",\n  \"gravadas\": \"grav\",\n  \"gravado\": \"grav\",\n  \"gravador\": \"gravador\",\n  \"gravadora\": \"gravador\",\n  \"gravadoras\": \"gravador\",\n  \"gravadores\": \"gravador\",\n  \"gravados\": \"grav\",\n  \"gravando\": \"grav\",\n  \"gravar\": \"grav\",\n  \"gravaram\": \"grav\",\n  \"gravata\": \"gravat\",\n  \"gravatas\": \"gravat\",\n  \"gravava\": \"grav\",\n  \"grave\": \"grav\",\n  \"gravemente\": \"gravement\",\n  \"graves\": \"grav\",\n  \"gravetos\": \"gravet\",\n  \"grávida\": \"gráv\",\n  \"gravidade\": \"gravidad\",\n  \"grávidas\": \"gráv\",\n  \"gravidez\": \"gravidez\",\n  \"gravitam\": \"gravit\",\n  \"gravitando\": \"gravit\",\n  \"gravou\": \"grav\",\n  \"gravuras\": \"gravur\",\n  \"graziano\": \"grazian\",\n  \"grease\": \"greas\",\n  \"grecco\": \"grecc\",\n  \"green\": \"green\",\n  \"greenpeace\": \"greenpeac\",\n  \"greenville\": \"greenvill\",\n  \"greenwich\": \"greenwich\",\n  \"grega\": \"greg\",\n  \"grego\": \"greg\",\n  \"gregoriano\": \"gregorian\",\n  \"gregório\": \"gregóri\",\n  \"gregos\": \"greg\",\n  \"grelhadas\": \"grelh\",\n  \"grelhado\": \"grelh\",\n  \"grelhados\": \"grelh\",\n  \"grelhar\": \"grelh\",\n  \"grêmio\": \"grêmi\",\n  \"grendene\": \"grenden\",\n  \"greta\": \"gret\",\n  \"gretchen\": \"gretchen\",\n  \"greve\": \"grev\",\n  \"greves\": \"grev\",\n  \"grid\": \"grid\",\n  \"grife\": \"grif\",\n  \"grifes\": \"grif\",\n  \"griffe\": \"griff\",\n  \"griffes\": \"griff\",\n  \"grilo\": \"gril\",\n  \"grinalda\": \"grinald\",\n  \"grinbaum\": \"grinbaum\",\n  \"gripado\": \"grip\",\n  \"gripe\": \"grip\",\n  \"grisalho\": \"grisalh\",\n  \"grisi\": \"gris\",\n  \"grisolia\": \"grisol\",\n  \"grita\": \"grit\",\n  \"gritam\": \"grit\",\n  \"gritando\": \"grit\",\n  \"gritante\": \"gritant\",\n  \"gritantes\": \"gritant\",\n  \"gritar\": \"grit\",\n  \"gritaria\": \"grit\",\n  \"gritava\": \"grit\",\n  \"gritavam\": \"grit\",\n  \"grito\": \"grit\",\n  \"gritos\": \"grit\",\n  \"gritou\": \"grit\",\n  \"gros\": \"gros\",\n  \"grossa\": \"gross\",\n  \"grossas\": \"gross\",\n  \"grosseiros\": \"grosseir\",\n  \"grossense\": \"grossens\",\n  \"grosseria\": \"gross\",\n  \"grosso\": \"gross\",\n  \"grossos\": \"gross\",\n  \"grotesca\": \"grotesc\",\n  \"grotescos\": \"grotesc\",\n  \"groto\": \"grot\",\n  \"grotões\": \"grotõ\",\n  \"group\": \"group\",\n  \"grove\": \"grov\",\n  \"grozes\": \"groz\",\n  \"grudado\": \"grud\",\n  \"grudados\": \"grud\",\n  \"grudam\": \"grud\",\n  \"grunge\": \"grung\",\n  \"grupinho\": \"grupinh\",\n  \"grupo\": \"grup\",\n  \"grupos\": \"grup\",\n  \"gruta\": \"grut\",\n  \"guadalupe\": \"guadalup\",\n  \"guagliardi\": \"guagliard\",\n  \"guanabara\": \"guanab\",\n  \"guanabaras\": \"guanab\",\n  \"guanaes\": \"guana\",\n  \"guantchaco\": \"guantchac\",\n  \"guanxi\": \"guanx\",\n  \"guaraciaba\": \"guaraciab\",\n  \"guaraná\": \"guaran\",\n  \"guaranis\": \"guaran\",\n  \"guarapiranga\": \"guarapirang\",\n  \"guararema\": \"guararem\",\n  \"guarda\": \"guard\",\n  \"guardá\": \"guard\",\n  \"guardada\": \"guard\",\n  \"guardadas\": \"guard\",\n  \"guardados\": \"guard\",\n  \"guardam\": \"guard\",\n  \"guardanapo\": \"guardanap\",\n  \"guardar\": \"guard\",\n  \"guardaram\": \"guard\",\n  \"guardas\": \"guard\",\n  \"guarde\": \"guard\",\n  \"guardei\": \"guard\",\n  \"guardo\": \"guard\",\n  \"guardou\": \"guard\",\n  \"guarita\": \"guarit\",\n  \"guarnição\": \"guarniçã\",\n  \"guarnieri\": \"guarnier\",\n  \"guarujá\": \"guaruj\",\n  \"guarulhos\": \"guarulh\",\n  \"guaxuma\": \"guaxum\",\n  \"gucci\": \"gucc\",\n  \"guccione\": \"guccion\",\n  \"guedes\": \"gued\",\n  \"gueller\": \"guell\",\n  \"guerra\": \"guerr\",\n  \"guerras\": \"guerr\",\n  \"guerreira\": \"guerreir\",\n  \"guerreiro\": \"guerreir\",\n  \"guerreiros\": \"guerreir\",\n  \"guerrilha\": \"guerrilh\",\n  \"guerrilhas\": \"guerrilh\",\n  \"guerrilheira\": \"guerrilheir\",\n  \"guerrilheiro\": \"guerrilheir\",\n  \"guerrilheiros\": \"guerrilheir\",\n  \"guess\": \"guess\",\n  \"gueto\": \"guet\",\n  \"guetos\": \"guet\",\n  \"guevara\": \"guev\",\n  \"guevarista\": \"guevar\",\n  \"guevaristas\": \"guevar\",\n  \"guga\": \"gug\",\n  \"gugu\": \"gugu\",\n  \"guia\": \"gui\",\n  \"guiá\": \"gui\",\n  \"guiado\": \"gui\",\n  \"guiana\": \"guian\",\n  \"guiar\": \"gui\",\n  \"guias\": \"gui\",\n  \"guichê\": \"guich\",\n  \"guide\": \"guid\",\n  \"guido\": \"guid\",\n  \"guignard\": \"guignard\",\n  \"guilherme\": \"guilherm\",\n  \"guilhon\": \"guilhon\",\n  \"guillaume\": \"guillaum\",\n  \"guillermo\": \"guillerm\",\n  \"guimarães\": \"guimarã\",\n  \"guimil\": \"guimil\",\n  \"guinada\": \"guin\",\n  \"guincha\": \"guinch\",\n  \"guinchados\": \"guinch\",\n  \"guindastes\": \"guind\",\n  \"guiné\": \"guin\",\n  \"guinness\": \"guinness\",\n  \"guitarra\": \"guitarr\",\n  \"guitarrista\": \"guitarr\",\n  \"gul\": \"gul\",\n  \"gula\": \"gul\",\n  \"gulfstream\": \"gulfstr\",\n  \"gullit\": \"gullit\",\n  \"gullo\": \"gull\",\n  \"gullova\": \"gullov\",\n  \"gulosa\": \"gulos\",\n  \"guloseimas\": \"guloseim\",\n  \"gulosos\": \"gulos\",\n  \"gumes\": \"gum\",\n  \"gump\": \"gump\",\n  \"günter\": \"günter\",\n  \"gur\": \"gur\",\n  \"gurovitz\": \"gurovitz\",\n  \"guru\": \"guru\",\n  \"gurus\": \"gurus\",\n  \"gusmão\": \"gusmã\",\n  \"gustativa\": \"gustat\",\n  \"gustavo\": \"gustav\",\n  \"guth\": \"guth\",\n  \"gutierrez\": \"gutierrez\",\n  \"guto\": \"gut\",\n  \"guzik\": \"guzik\",\n  \"guzzo\": \"guzz\",\n  \"gv\": \"gv\",\n  \"gyaoppi\": \"gyaopp\",\n  \"gyaoppis\": \"gyaopp\",\n  \"h\": \"h\",\n  \"há\": \"há\",\n  \"haar\": \"haar\",\n  \"habano\": \"haban\",\n  \"habeas\": \"hab\",\n  \"habeyche\": \"habeych\",\n  \"habilidade\": \"habil\",\n  \"habilidades\": \"habil\",\n  \"habilidosos\": \"habilid\",\n  \"habilitação\": \"habilit\",\n  \"habilitaram\": \"habilit\",\n  \"habitação\": \"habit\",\n  \"habitacionais\": \"habitacion\",\n  \"habitada\": \"habit\",\n  \"habitadas\": \"habit\",\n  \"habitado\": \"habit\",\n  \"habitam\": \"habit\",\n  \"habitante\": \"habit\",\n  \"habitantes\": \"habit\",\n  \"habitat\": \"habitat\",\n  \"hábitat\": \"hábitat\",\n  \"hábito\": \"hábit\",\n  \"hábitos\": \"hábit\",\n  \"habituado\": \"habitu\",\n  \"habituados\": \"habitu\",\n  \"habituais\": \"habitu\",\n  \"habitual\": \"habitual\",\n  \"habitualmente\": \"habitual\",\n  \"habituando\": \"habitu\",\n  \"habituou\": \"habitu\",\n  \"haddad\": \"haddad\",\n  \"hage\": \"hag\",\n  \"hagia\": \"hag\",\n  \"haja\": \"haj\",\n  \"hajj\": \"hajj\",\n  \"hall\": \"hall\",\n  \"halley\": \"halley\",\n  \"halpern\": \"halpern\",\n  \"hamburger\": \"hamburg\",\n  \"hamburgo\": \"hamburg\",\n  \"hamer\": \"ham\",\n  \"hamilton\": \"hamilton\",\n  \"hamlet\": \"hamlet\",\n  \"hammond\": \"hammond\",\n  \"hamuman\": \"hamuman\",\n  \"hangar\": \"hang\",\n  \"hangares\": \"hang\",\n  \"hanks\": \"hanks\",\n  \"hans\": \"hans\",\n  \"hão\": \"hã\",\n  \"happy\": \"happy\",\n  \"hara\": \"har\",\n  \"harare\": \"harar\",\n  \"harazim\": \"harazim\",\n  \"harbor\": \"harbor\",\n  \"harding\": \"harding\",\n  \"hardware\": \"hardwar\",\n  \"harém\": \"harém\",\n  \"harley\": \"harley\",\n  \"harmonia\": \"harmon\",\n  \"harold\": \"harold\",\n  \"haroldo\": \"harold\",\n  \"harpa\": \"harp\",\n  \"harper\": \"harp\",\n  \"harrad\": \"harrad\",\n  \"harrison\": \"harrison\",\n  \"harry\": \"harry\",\n  \"hart\": \"hart\",\n  \"hartmann\": \"hartmann\",\n  \"harvard\": \"harvard\",\n  \"haryella\": \"haryell\",\n  \"hasta\": \"hast\",\n  \"haste\": \"hast\",\n  \"hatanaka\": \"hatanak\",\n  \"haten\": \"haten\",\n  \"hathaway\": \"hathaway\",\n  \"haupt\": \"haupt\",\n  \"haut\": \"haut\",\n  \"havaí\": \"hava\",\n  \"havana\": \"havan\",\n  \"havanas\": \"havan\",\n  \"havendo\": \"hav\",\n  \"haver\": \"hav\",\n  \"haverá\": \"hav\",\n  \"haveria\": \"hav\",\n  \"havia\": \"hav\",\n  \"haviam\": \"hav\",\n  \"havíamos\": \"hav\",\n  \"havido\": \"hav\",\n  \"haxixe\": \"haxix\",\n  \"hay\": \"hay\",\n  \"haydée\": \"haydé\",\n  \"hazen\": \"hazen\",\n  \"hbp\": \"hbp\",\n  \"hdl\": \"hdl\",\n  \"hea\": \"hea\",\n  \"headhunter\": \"headhunt\",\n  \"headhunting\": \"headhunting\",\n  \"heavy\": \"heavy\",\n  \"hebe\": \"heb\",\n  \"hebraica\": \"hebraic\",\n  \"hebraico\": \"hebraic\",\n  \"hebraicos\": \"hebraic\",\n  \"hebron\": \"hebron\",\n  \"hecatombe\": \"hecatomb\",\n  \"hectare\": \"hectar\",\n  \"hectares\": \"hect\",\n  \"hector\": \"hector\",\n  \"hedgus\": \"hedgus\",\n  \"hediondo\": \"hediond\",\n  \"hedonismo\": \"hedon\",\n  \"hedonista\": \"hedon\",\n  \"hegemonia\": \"hegemon\",\n  \"hegou\": \"heg\",\n  \"hein\": \"hein\",\n  \"heinrich\": \"heinrich\",\n  \"heitor\": \"heitor\",\n  \"helde\": \"held\",\n  \"helen\": \"helen\",\n  \"helena\": \"helen\",\n  \"hélène\": \"hélèn\",\n  \"helênica\": \"helên\",\n  \"helicóptero\": \"helicópter\",\n  \"helicópteros\": \"helicópter\",\n  \"helio\": \"heli\",\n  \"hélio\": \"héli\",\n  \"heliodora\": \"heliodor\",\n  \"heliópolis\": \"heliópol\",\n  \"helmut\": \"helmut\",\n  \"heloisa\": \"helois\",\n  \"help\": \"help\",\n  \"helvécio\": \"helvéci\",\n  \"hemingway\": \"hemingway\",\n  \"hemisfério\": \"hemisféri\",\n  \"hemocromatose\": \"hemocromatos\",\n  \"hemofilia\": \"hemofil\",\n  \"hemorragia\": \"hemorrag\",\n  \"hemorragias\": \"hemorrag\",\n  \"henderson\": \"henderson\",\n  \"hendricks\": \"hendricks\",\n  \"hendrix\": \"hendrix\",\n  \"henfil\": \"henfil\",\n  \"henrique\": \"henriqu\",\n  \"henriques\": \"henriqu\",\n  \"henry\": \"henry\",\n  \"hepática\": \"hepát\",\n  \"hepáticas\": \"hepát\",\n  \"hepatite\": \"hepatit\",\n  \"hepburn\": \"hepburn\",\n  \"hera\": \"her\",\n  \"herança\": \"heranc\",\n  \"heranças\": \"heranc\",\n  \"herbarium\": \"herbarium\",\n  \"herbert\": \"herbert\",\n  \"herchcovich\": \"herchcovich\",\n  \"herchcovitch\": \"herchcovitch\",\n  \"herculano\": \"herculan\",\n  \"hércules\": \"hércul\",\n  \"herdadas\": \"herd\",\n  \"herdar\": \"herd\",\n  \"herdeira\": \"herdeir\",\n  \"herdeiras\": \"herdeir\",\n  \"herdeiro\": \"herdeir\",\n  \"herdeiros\": \"herdeir\",\n  \"herdou\": \"herd\",\n  \"hereditária\": \"hereditár\",\n  \"hereditariamente\": \"hereditari\",\n  \"hereditárias\": \"hereditár\",\n  \"hereditário\": \"hereditári\",\n  \"hereditários\": \"hereditári\",\n  \"hereges\": \"hereg\",\n  \"heresia\": \"heres\",\n  \"hermann\": \"hermann\",\n  \"hermeticamente\": \"hermet\",\n  \"hermitage\": \"hermitag\",\n  \"hermon\": \"hermon\",\n  \"hernandes\": \"hernand\",\n  \"hérnia\": \"hérn\",\n  \"herodes\": \"herod\",\n  \"herói\": \"heró\",\n  \"heróicas\": \"heróic\",\n  \"heróicos\": \"heróic\",\n  \"heroína\": \"heroín\",\n  \"heróis\": \"heró\",\n  \"heron\": \"heron\",\n  \"herrmann\": \"herrmann\",\n  \"herton\": \"herton\",\n  \"herzog\": \"herzog\",\n  \"hesita\": \"hesit\",\n  \"hesitação\": \"hesit\",\n  \"hesitam\": \"hesit\",\n  \"hesitou\": \"hesit\",\n  \"heslander\": \"hesland\",\n  \"hespanha\": \"hespanh\",\n  \"heston\": \"heston\",\n  \"hetero\": \"heter\",\n  \"heterodoxos\": \"heterodox\",\n  \"heterossexuais\": \"heterossexu\",\n  \"heterossexual\": \"heterossexual\",\n  \"hewlett\": \"hewlett\",\n  \"heymann\": \"heymann\",\n  \"hidrante\": \"hidrant\",\n  \"hidrata\": \"hidrat\",\n  \"hidratação\": \"hidrat\",\n  \"hidratam\": \"hidrat\",\n  \"hidratante\": \"hidrat\",\n  \"hidratantes\": \"hidrat\",\n  \"hidráulica\": \"hidrául\",\n  \"hidráulico\": \"hidrául\",\n  \"hidrelétrica\": \"hidrelétr\",\n  \"hidroavião\": \"hidroaviã\",\n  \"hidrogênio\": \"hidrogêni\",\n  \"hidroginástica\": \"hidroginást\",\n  \"hidroterapia\": \"hidroterap\",\n  \"hidrovia\": \"hidrov\",\n  \"hierarquia\": \"hierarqu\",\n  \"hierarquias\": \"hierarqu\",\n  \"hieróglifos\": \"hieróglif\",\n  \"high\": \"high\",\n  \"higiene\": \"higien\",\n  \"higienicamente\": \"higien\",\n  \"higienópolis\": \"higienópol\",\n  \"higuera\": \"higu\",\n  \"hijo\": \"hij\",\n  \"hilariante\": \"hilari\",\n  \"hilários\": \"hilári\",\n  \"hilda\": \"hild\",\n  \"hildete\": \"hildet\",\n  \"hilleshein\": \"hilleshein\",\n  \"hills\": \"hills\",\n  \"hilton\": \"hilton\",\n  \"hilux\": \"hilux\",\n  \"himachal\": \"himachal\",\n  \"himalaia\": \"himala\",\n  \"hinduístas\": \"hinduíst\",\n  \"hino\": \"hin\",\n  \"hióide\": \"hióid\",\n  \"hipericão\": \"hipericã\",\n  \"hipericina\": \"hipericin\",\n  \"hipérico\": \"hipér\",\n  \"hiperinflação\": \"hiperinfl\",\n  \"hiperinsulinemia\": \"hiperinsulinem\",\n  \"hiperpigmentação\": \"hiperpigment\",\n  \"hiperplasia\": \"hiperplas\",\n  \"hipertensão\": \"hipertensã\",\n  \"hipertrofiado\": \"hipertrofi\",\n  \"hipertrofina\": \"hipertrofin\",\n  \"hípica\": \"hípic\",\n  \"hípico\": \"hípic\",\n  \"hipnotiza\": \"hipnotiz\",\n  \"hipnotizador\": \"hipnotiz\",\n  \"hipnotizar\": \"hipnotiz\",\n  \"hipocampo\": \"hipocamp\",\n  \"hipocrisia\": \"hipocris\",\n  \"hipofagin\": \"hipofagin\",\n  \"hipoglós\": \"hipoglós\",\n  \"hipopótamos\": \"hipopót\",\n  \"hipotálamo\": \"hipotálam\",\n  \"hipótese\": \"hipótes\",\n  \"hipóteses\": \"hipótes\",\n  \"hipoteticamente\": \"hipotet\",\n  \"hippie\": \"hippi\",\n  \"hiroshima\": \"hiroshim\",\n  \"hispânicos\": \"hispân\",\n  \"histerectomia\": \"histerectom\",\n  \"histerectomias\": \"histerectom\",\n  \"histeria\": \"hist\",\n  \"histérica\": \"histér\",\n  \"histérico\": \"histér\",\n  \"histéricos\": \"histér\",\n  \"histerismo\": \"hister\",\n  \"histopatológico\": \"histopatológ\",\n  \"história\": \"histór\",\n  \"historiador\": \"histori\",\n  \"historiadora\": \"histori\",\n  \"historiadores\": \"histori\",\n  \"histórias\": \"histór\",\n  \"histórica\": \"histór\",\n  \"historicamente\": \"histor\",\n  \"históricas\": \"histór\",\n  \"histórico\": \"histór\",\n  \"históricos\": \"histór\",\n  \"hit\": \"hit\",\n  \"hititas\": \"hitit\",\n  \"hitler\": \"hitl\",\n  \"hits\": \"hits\",\n  \"hiv\": \"hiv\",\n  \"hlx\": \"hlx\",\n  \"hoare\": \"hoar\",\n  \"hobbies\": \"hobbi\",\n  \"hobby\": \"hobby\",\n  \"hobsbawn\": \"hobsbawn\",\n  \"hochgraf\": \"hochgraf\",\n  \"hochschild\": \"hochschild\",\n  \"hoffa\": \"hoff\",\n  \"hoffman\": \"hoffman\",\n  \"hohendorff\": \"hohendorff\",\n  \"hoje\": \"hoj\",\n  \"holanda\": \"holand\",\n  \"holandês\": \"holandês\",\n  \"holandesa\": \"holandes\",\n  \"holandeses\": \"holandes\",\n  \"holding\": \"holding\",\n  \"holerite\": \"holerit\",\n  \"holerites\": \"holerit\",\n  \"holística\": \"holíst\",\n  \"hollanda\": \"holland\",\n  \"hollywood\": \"hollywood\",\n  \"hollywoodiano\": \"hollywoodian\",\n  \"hollywoodianos\": \"hollywoodian\",\n  \"holofotes\": \"holofot\",\n  \"holtz\": \"holtz\",\n  \"holyfield\": \"holyfield\",\n  \"home\": \"hom\",\n  \"homem\": \"hom\",\n  \"homems\": \"homems\",\n  \"homenageá\": \"homenag\",\n  \"homenageado\": \"homenag\",\n  \"homenagear\": \"homenag\",\n  \"homenageia\": \"homenag\",\n  \"homenagem\": \"homenag\",\n  \"homenagens\": \"homenagens\",\n  \"homens\": \"homens\",\n  \"homeopata\": \"homeopat\",\n  \"homeopatas\": \"homeopat\",\n  \"homeopatia\": \"homeopat\",\n  \"homeopatias\": \"homeopat\",\n  \"homeopáticas\": \"homeopát\",\n  \"homeopático\": \"homeopát\",\n  \"homeopáticos\": \"homeopát\",\n  \"homéricos\": \"homér\",\n  \"homero\": \"homer\",\n  \"homicídio\": \"homicídi\",\n  \"homicídios\": \"homicídi\",\n  \"homoerotismo\": \"homoerot\",\n  \"homogênea\": \"homogên\",\n  \"homologação\": \"homolog\",\n  \"homologações\": \"homolog\",\n  \"homologado\": \"homolog\",\n  \"homologar\": \"homolog\",\n  \"homologaram\": \"homolog\",\n  \"homologou\": \"homolog\",\n  \"homologuei\": \"homologu\",\n  \"homônima\": \"homônim\",\n  \"homossexuais\": \"homossexu\",\n  \"homossexual\": \"homossexual\",\n  \"homossexualidade\": \"homossexual\",\n  \"homossexualismo\": \"homossexual\",\n  \"honda\": \"hond\",\n  \"honesta\": \"honest\",\n  \"honestamente\": \"honest\",\n  \"honestidade\": \"honest\",\n  \"honesto\": \"honest\",\n  \"hong\": \"hong\",\n  \"honolulu\": \"honolulu\",\n  \"honorários\": \"honorári\",\n  \"honorato\": \"honorat\",\n  \"honorilton\": \"honorilton\",\n  \"honra\": \"honr\",\n  \"honram\": \"honr\",\n  \"honrando\": \"honr\",\n  \"honrar\": \"honr\",\n  \"honraria\": \"honr\",\n  \"honrosa\": \"honros\",\n  \"honroso\": \"honros\",\n  \"honrosos\": \"honros\",\n  \"honrou\": \"honr\",\n  \"hood\": \"hood\",\n  \"hooki\": \"hook\",\n  \"hooligans\": \"hooligans\",\n  \"hopkins\": \"hopkins\",\n  \"hora\": \"hor\",\n  \"horária\": \"horár\",\n  \"horário\": \"horári\",\n  \"horários\": \"horári\",\n  \"horas\": \"hor\",\n  \"hordas\": \"hord\",\n  \"horgan\": \"horgan\",\n  \"horizontal\": \"horizontal\",\n  \"horizonte\": \"horizont\",\n  \"horizontes\": \"horizont\",\n  \"hormonais\": \"hormon\",\n  \"hormonal\": \"hormonal\",\n  \"hormônio\": \"hormôni\",\n  \"hormônios\": \"hormôni\",\n  \"hormonioterapia\": \"hormonioterap\",\n  \"horner\": \"horn\",\n  \"horripilante\": \"horripil\",\n  \"horríveis\": \"horrív\",\n  \"horrível\": \"horrível\",\n  \"horror\": \"horror\",\n  \"horrores\": \"horror\",\n  \"horrorosa\": \"horror\",\n  \"horroroso\": \"horror\",\n  \"horst\": \"horst\",\n  \"horta\": \"hort\",\n  \"hospeda\": \"hosped\",\n  \"hospedagem\": \"hospedag\",\n  \"hospedar\": \"hosped\",\n  \"hospedava\": \"hosped\",\n  \"hóspedes\": \"hósped\",\n  \"hospedou\": \"hosped\",\n  \"hospício\": \"hospíci\",\n  \"hospitais\": \"hospit\",\n  \"hospital\": \"hospital\",\n  \"hospitalar\": \"hospital\",\n  \"hospitalares\": \"hospital\",\n  \"hospitaleiro\": \"hospitaleir\",\n  \"hospitalidade\": \"hospital\",\n  \"hostes\": \"host\",\n  \"hostil\": \"hostil\",\n  \"hostilidade\": \"hostil\",\n  \"hostilidades\": \"hostil\",\n  \"hotéis\": \"hot\",\n  \"hotel\": \"hotel\",\n  \"hotelaria\": \"hotel\",\n  \"hoteleira\": \"hoteleir\",\n  \"hoteleiro\": \"hoteleir\",\n  \"hour\": \"hour\",\n  \"house\": \"hous\",\n  \"houston\": \"houston\",\n  \"houve\": \"houv\",\n  \"houver\": \"houv\",\n  \"houvesse\": \"houv\",\n  \"how\": \"how\",\n  \"howard\": \"howard\",\n  \"hoy\": \"hoy\",\n  \"hpb\": \"hpb\",\n  \"hpp\": \"hpp\",\n  \"hsbc\": \"hsbc\",\n  \"htm\": \"htm\",\n  \"html\": \"html\",\n  \"http\": \"http\",\n  \"huambo\": \"huamb\",\n  \"huapi\": \"huap\",\n  \"hub\": \"hub\",\n  \"hubert\": \"hubert\",\n  \"hucitec\": \"hucitec\",\n  \"hudson\": \"hudson\",\n  \"hue\": \"hue\",\n  \"hugel\": \"hugel\",\n  \"hugh\": \"hugh\",\n  \"hughes\": \"hugh\",\n  \"hugo\": \"hug\",\n  \"huis\": \"huis\",\n  \"human\": \"human\",\n  \"humana\": \"human\",\n  \"humanas\": \"human\",\n  \"humanidade\": \"human\",\n  \"humanista\": \"human\",\n  \"humanística\": \"humaníst\",\n  \"humanitários\": \"humanitári\",\n  \"humano\": \"human\",\n  \"humanos\": \"human\",\n  \"humberto\": \"humbert\",\n  \"humildade\": \"humildad\",\n  \"humilde\": \"humild\",\n  \"humildemente\": \"humild\",\n  \"humildes\": \"humild\",\n  \"humilhação\": \"humilh\",\n  \"humilhado\": \"humilh\",\n  \"humilhante\": \"humilh\",\n  \"humm\": \"humm\",\n  \"hummm\": \"hummm\",\n  \"humor\": \"humor\",\n  \"humorada\": \"humor\",\n  \"humoradíssima\": \"humoradíssim\",\n  \"humorado\": \"humor\",\n  \"humorados\": \"humor\",\n  \"humorismo\": \"humor\",\n  \"humorista\": \"humor\",\n  \"humoristas\": \"humor\",\n  \"hun\": \"hun\",\n  \"húngaro\": \"húngar\",\n  \"huno\": \"hun\",\n  \"huntington\": \"huntington\",\n  \"hunts\": \"hunts\",\n  \"hurd\": \"hurd\",\n  \"hurley\": \"hurley\",\n  \"hurried\": \"hurried\",\n  \"hussein\": \"hussein\",\n  \"huster\": \"hust\",\n  \"hut\": \"hut\",\n  \"hutton\": \"hutton\",\n  \"hwa\": \"hwa\",\n  \"hyde\": \"hyde\",\n  \"hypericum\": \"hypericum\",\n  \"hystera\": \"hyster\",\n  \"i\": \"i\",\n  \"ia\": \"ia\",\n  \"iacocca\": \"iacocc\",\n  \"iacomini\": \"iacomin\",\n  \"iain\": \"iain\",\n  \"ialorixá\": \"ialorix\",\n  \"iam\": \"iam\",\n  \"íamos\": \"íam\",\n  \"ian\": \"ian\",\n  \"ianques\": \"ianqu\",\n  \"iansã\": \"iansã\",\n  \"iaque\": \"iaqu\",\n  \"iara\": \"iar\",\n  \"iate\": \"iat\",\n  \"ibama\": \"ibam\",\n  \"ibase\": \"ibas\",\n  \"ibep\": \"ibep\",\n  \"iberê\": \"iber\",\n  \"ibge\": \"ibge\",\n  \"ibirapuera\": \"ibirapu\",\n  \"ibiúna\": \"ibiún\",\n  \"ibiza\": \"ibiz\",\n  \"iblon\": \"iblon\",\n  \"ibm\": \"ibm\",\n  \"ibope\": \"ibop\",\n  \"ibrahim\": \"ibrahim\",\n  \"ica\": \"ica\",\n  \"içando\": \"içand\",\n  \"icaraí\": \"icara\",\n  \"ícaro\": \"ícar\",\n  \"iceberg\": \"iceberg\",\n  \"icms\": \"icms\",\n  \"ícone\": \"ícon\",\n  \"ícones\": \"ícon\",\n  \"iconoclasta\": \"iconoclast\",\n  \"ics\": \"ics\",\n  \"ida\": \"ida\",\n  \"idade\": \"idad\",\n  \"idades\": \"idad\",\n  \"idas\": \"idas\",\n  \"ideais\": \"ide\",\n  \"ideal\": \"ideal\",\n  \"idealistas\": \"ideal\",\n  \"idealização\": \"idealiz\",\n  \"idealizado\": \"idealiz\",\n  \"idealizador\": \"idealiz\",\n  \"idealizadores\": \"idealiz\",\n  \"idealizados\": \"idealiz\",\n  \"idealizou\": \"idealiz\",\n  \"idéia\": \"idé\",\n  \"idéias\": \"idé\",\n  \"idelcio\": \"idelci\",\n  \"ideli\": \"idel\",\n  \"idem\": \"idem\",\n  \"idêntica\": \"idênt\",\n  \"idênticas\": \"idênt\",\n  \"idêntico\": \"idênt\",\n  \"idênticos\": \"idênt\",\n  \"identidade\": \"ident\",\n  \"identidades\": \"ident\",\n  \"identifica\": \"identif\",\n  \"identificá\": \"identific\",\n  \"identificação\": \"identific\",\n  \"identificada\": \"identific\",\n  \"identificadas\": \"identific\",\n  \"identificado\": \"identific\",\n  \"identificados\": \"identific\",\n  \"identificam\": \"identific\",\n  \"identificando\": \"identific\",\n  \"identificar\": \"identific\",\n  \"identificaram\": \"identific\",\n  \"identificasse\": \"identific\",\n  \"identificassem\": \"identific\",\n  \"identificou\": \"identific\",\n  \"identifique\": \"identifiqu\",\n  \"identifiquei\": \"identifiqu\",\n  \"ideologia\": \"ideolog\",\n  \"ideologias\": \"ideolog\",\n  \"ideológica\": \"ideológ\",\n  \"ideologicamente\": \"ideolog\",\n  \"ideológicas\": \"ideológ\",\n  \"ideológico\": \"ideológ\",\n  \"ideológicos\": \"ideológ\",\n  \"idesp\": \"idesp\",\n  \"idh\": \"idh\",\n  \"idioma\": \"idiom\",\n  \"idiomas\": \"idiom\",\n  \"idiota\": \"idiot\",\n  \"idiotice\": \"idiotic\",\n  \"ido\": \"ido\",\n  \"idolatrados\": \"idolatr\",\n  \"idolatria\": \"idolatr\",\n  \"ídolo\": \"ídol\",\n  \"ídolos\": \"ídol\",\n  \"idôneo\": \"idôn\",\n  \"idoso\": \"idos\",\n  \"idosos\": \"idos\",\n  \"iemanjá\": \"iemanj\",\n  \"iêmen\": \"iêmen\",\n  \"ifá\": \"ifá\",\n  \"igarapé\": \"igarap\",\n  \"ignacio\": \"ignaci\",\n  \"ignácio\": \"ignáci\",\n  \"ignorada\": \"ignor\",\n  \"ignoradas\": \"ignor\",\n  \"ignorado\": \"ignor\",\n  \"ignorados\": \"ignor\",\n  \"ignoram\": \"ignor\",\n  \"ignorância\": \"ignor\",\n  \"ignorando\": \"ignor\",\n  \"ignorante\": \"ignor\",\n  \"ignorar\": \"ignor\",\n  \"igor\": \"igor\",\n  \"igreja\": \"igrej\",\n  \"igrejas\": \"igrej\",\n  \"iguaçu\": \"iguaçu\",\n  \"iguais\": \"igu\",\n  \"igual\": \"igual\",\n  \"igualitarismo\": \"igualitar\",\n  \"igualmente\": \"igual\",\n  \"iguaria\": \"igu\",\n  \"iguatemi\": \"iguatem\",\n  \"ih\": \"ih\",\n  \"ii\": \"ii\",\n  \"iii\": \"iii\",\n  \"ike\": \"ike\",\n  \"il\": \"il\",\n  \"ilações\": \"ilaçõ\",\n  \"ilari\": \"ilar\",\n  \"ilariê\": \"ilari\",\n  \"ildeo\": \"ilde\",\n  \"ile\": \"ile\",\n  \"ilê\": \"ilê\",\n  \"ilegais\": \"ileg\",\n  \"ilegal\": \"ilegal\",\n  \"ilegalidade\": \"ilegal\",\n  \"ilegalidades\": \"ilegal\",\n  \"ilegalmente\": \"ilegal\",\n  \"ilesa\": \"iles\",\n  \"ileso\": \"iles\",\n  \"ilesos\": \"iles\",\n  \"iletrada\": \"iletr\",\n  \"iletrados\": \"iletr\",\n  \"ilha\": \"ilha\",\n  \"ilhas\": \"ilhas\",\n  \"ilhéus\": \"ilhéus\",\n  \"ilhota\": \"ilhot\",\n  \"ilícita\": \"ilícit\",\n  \"ilícitas\": \"ilícit\",\n  \"ilimitados\": \"ilimit\",\n  \"illimani\": \"illiman\",\n  \"illyccaffé\": \"illyccaff\",\n  \"ilm\": \"ilm\",\n  \"ilma\": \"ilma\",\n  \"ilson\": \"ilson\",\n  \"iludem\": \"ilud\",\n  \"ilumina\": \"ilumin\",\n  \"iluminação\": \"ilumin\",\n  \"iluminada\": \"ilumin\",\n  \"iluminadas\": \"ilumin\",\n  \"iluminado\": \"ilumin\",\n  \"iluminador\": \"ilumin\",\n  \"iluminando\": \"ilumin\",\n  \"iluminar\": \"ilumin\",\n  \"iluminaram\": \"ilumin\",\n  \"ilusão\": \"ilusã\",\n  \"ilusionista\": \"ilusion\",\n  \"ilusões\": \"ilusõ\",\n  \"ilustra\": \"ilustr\",\n  \"ilustrá\": \"ilustr\",\n  \"ilustração\": \"ilustr\",\n  \"ilustrações\": \"ilustr\",\n  \"ilustrada\": \"ilustr\",\n  \"ilustrava\": \"ilustr\",\n  \"ilustre\": \"ilustr\",\n  \"ilustres\": \"ilustr\",\n  \"ilustrou\": \"ilustr\",\n  \"imaculados\": \"imacul\",\n  \"imaflora\": \"imaflor\",\n  \"image\": \"imag\",\n  \"imagem\": \"imag\",\n  \"imagens\": \"imagens\",\n  \"imagina\": \"imagin\",\n  \"imaginação\": \"imagin\",\n  \"imaginadas\": \"imagin\",\n  \"imaginam\": \"imagin\",\n  \"imaginando\": \"imagin\",\n  \"imaginar\": \"imagin\",\n  \"imaginaram\": \"imagin\",\n  \"imaginária\": \"imaginár\",\n  \"imaginariam\": \"imagin\",\n  \"imaginário\": \"imaginári\",\n  \"imaginava\": \"imagin\",\n  \"imaginavam\": \"imagin\",\n  \"imagine\": \"imagin\",\n  \"imaginei\": \"imagin\",\n  \"imagino\": \"imagin\",\n  \"imaginou\": \"imagin\",\n  \"ímãs\": \"ímãs\",\n  \"imateriais\": \"imateri\",\n  \"imatura\": \"imatur\",\n  \"imaturo\": \"imatur\",\n  \"imbatível\": \"imbat\",\n  \"imbecil\": \"imbecil\",\n  \"imbróglio\": \"imbrógli\",\n  \"imbróglios\": \"imbrógli\",\n  \"imbuído\": \"imbuíd\",\n  \"imc\": \"imc\",\n  \"imediações\": \"imedi\",\n  \"imediata\": \"imediat\",\n  \"imediatamente\": \"imediat\",\n  \"imediatas\": \"imediat\",\n  \"imediato\": \"imediat\",\n  \"imemoriais\": \"imemori\",\n  \"imensa\": \"imens\",\n  \"imensamente\": \"imens\",\n  \"imensas\": \"imens\",\n  \"imensidão\": \"imensidã\",\n  \"imenso\": \"imens\",\n  \"imensos\": \"imens\",\n  \"imensurável\": \"imensur\",\n  \"imersa\": \"imers\",\n  \"imersão\": \"imersã\",\n  \"imerso\": \"imers\",\n  \"imigração\": \"imigr\",\n  \"imigrante\": \"imigr\",\n  \"imigrantes\": \"imigr\",\n  \"iminente\": \"iminent\",\n  \"imirim\": \"imirim\",\n  \"imita\": \"imit\",\n  \"imitação\": \"imit\",\n  \"imitações\": \"imit\",\n  \"imitado\": \"imit\",\n  \"imitadora\": \"imit\",\n  \"imitadores\": \"imit\",\n  \"imitam\": \"imit\",\n  \"imitando\": \"imit\",\n  \"imitar\": \"imit\",\n  \"imitava\": \"imit\",\n  \"imitável\": \"imit\",\n  \"iml\": \"iml\",\n  \"imobiliária\": \"imobiliár\",\n  \"imobiliárias\": \"imobiliár\",\n  \"imobiliário\": \"imobiliári\",\n  \"imortal\": \"imortal\",\n  \"imortalidade\": \"imortal\",\n  \"imóveis\": \"imóv\",\n  \"imóvel\": \"imóvel\",\n  \"impaciência\": \"impacient\",\n  \"impacientes\": \"impacient\",\n  \"impacta\": \"impact\",\n  \"impactante\": \"impact\",\n  \"impacto\": \"impact\",\n  \"impactos\": \"impact\",\n  \"impagável\": \"impag\",\n  \"imparcialidade\": \"imparcial\",\n  \"impasse\": \"impass\",\n  \"impassível\": \"impass\",\n  \"impeachment\": \"impeachment\",\n  \"impeçam\": \"impec\",\n  \"impecáveis\": \"impec\",\n  \"impecável\": \"impec\",\n  \"impecavelmente\": \"impec\",\n  \"impedância\": \"imped\",\n  \"impede\": \"imped\",\n  \"impedem\": \"imped\",\n  \"impedia\": \"imped\",\n  \"impediam\": \"imped\",\n  \"impedido\": \"imped\",\n  \"impedidos\": \"imped\",\n  \"impedimento\": \"imped\",\n  \"impedindo\": \"imped\",\n  \"impedir\": \"imped\",\n  \"impediram\": \"imped\",\n  \"impedirmos\": \"imped\",\n  \"impedisse\": \"imped\",\n  \"impediu\": \"imped\",\n  \"impelidas\": \"impel\",\n  \"impensados\": \"impens\",\n  \"impensável\": \"impens\",\n  \"impera\": \"imper\",\n  \"imperador\": \"imper\",\n  \"imperam\": \"imper\",\n  \"imperativo\": \"imper\",\n  \"imperativos\": \"imper\",\n  \"imperatriz\": \"imperatriz\",\n  \"imperceptíveis\": \"imperceptív\",\n  \"imperdoável\": \"imperdo\",\n  \"imperfeição\": \"imperfeiçã\",\n  \"imperfeições\": \"imperfeiçõ\",\n  \"imperial\": \"imperial\",\n  \"imperialista\": \"imperial\",\n  \"império\": \"impéri\",\n  \"impérios\": \"impéri\",\n  \"impermeáveis\": \"imperm\",\n  \"imperou\": \"imper\",\n  \"impessoais\": \"impesso\",\n  \"ímpeto\": \"ímpet\",\n  \"ímpetos\": \"ímpet\",\n  \"impetrada\": \"impetr\",\n  \"impiedosa\": \"impied\",\n  \"impingir\": \"imping\",\n  \"implacáveis\": \"implac\",\n  \"implacável\": \"implac\",\n  \"implacavelmente\": \"implac\",\n  \"implantá\": \"implant\",\n  \"implantação\": \"implant\",\n  \"implantada\": \"implant\",\n  \"implantadas\": \"implant\",\n  \"implantado\": \"implant\",\n  \"implantados\": \"implant\",\n  \"implantar\": \"implant\",\n  \"implantaram\": \"implant\",\n  \"implantes\": \"implant\",\n  \"implantou\": \"implant\",\n  \"implementem\": \"implement\",\n  \"implica\": \"implic\",\n  \"implicações\": \"implic\",\n  \"implicam\": \"implic\",\n  \"implicará\": \"implic\",\n  \"implicaria\": \"implic\",\n  \"implícita\": \"implícit\",\n  \"implícito\": \"implícit\",\n  \"implicou\": \"implic\",\n  \"implique\": \"impliqu\",\n  \"implodiria\": \"implod\",\n  \"implodiu\": \"implod\",\n  \"implorando\": \"implor\",\n  \"implorou\": \"implor\",\n  \"impõe\": \"impõ\",\n  \"impondo\": \"impond\",\n  \"imponência\": \"imponent\",\n  \"imponente\": \"imponent\",\n  \"imponha\": \"imponh\",\n  \"impopulares\": \"impopul\",\n  \"impopularidade\": \"impopular\",\n  \"impor\": \"impor\",\n  \"importa\": \"import\",\n  \"importá\": \"import\",\n  \"importação\": \"import\",\n  \"importações\": \"import\",\n  \"importada\": \"import\",\n  \"importadas\": \"import\",\n  \"importado\": \"import\",\n  \"importador\": \"import\",\n  \"importadora\": \"import\",\n  \"importadoras\": \"import\",\n  \"importadores\": \"import\",\n  \"importados\": \"import\",\n  \"importam\": \"import\",\n  \"importância\": \"import\",\n  \"importando\": \"import\",\n  \"importante\": \"import\",\n  \"importantes\": \"import\",\n  \"importantíssimo\": \"importantíssim\",\n  \"importar\": \"import\",\n  \"importaram\": \"import\",\n  \"importassem\": \"import\",\n  \"importo\": \"import\",\n  \"importou\": \"import\",\n  \"impôs\": \"impôs\",\n  \"imposição\": \"imposiçã\",\n  \"imposições\": \"imposiçõ\",\n  \"impossibilidade\": \"impossibil\",\n  \"impossibilitado\": \"impossibilit\",\n  \"impossibilitados\": \"impossibilit\",\n  \"impossíveis\": \"impossív\",\n  \"impossível\": \"imposs\",\n  \"imposta\": \"impost\",\n  \"impostas\": \"impost\",\n  \"imposto\": \"impost\",\n  \"impostos\": \"impost\",\n  \"impotência\": \"impotent\",\n  \"impotente\": \"impotent\",\n  \"impotentes\": \"impotent\",\n  \"impregnado\": \"impregn\",\n  \"imprensa\": \"imprens\",\n  \"imprensanet\": \"imprensanet\",\n  \"imprescindível\": \"imprescind\",\n  \"impressa\": \"impress\",\n  \"impressão\": \"impressã\",\n  \"impressiona\": \"impression\",\n  \"impressioná\": \"impression\",\n  \"impressionadíssimo\": \"impressionadíssim\",\n  \"impressionados\": \"impression\",\n  \"impressionante\": \"impression\",\n  \"impressionantes\": \"impression\",\n  \"impressionar\": \"impression\",\n  \"impressionistas\": \"impression\",\n  \"impressionou\": \"impression\",\n  \"impressões\": \"impressõ\",\n  \"impressos\": \"impress\",\n  \"imprevidência\": \"imprevident\",\n  \"imprevisível\": \"imprevis\",\n  \"imprevistos\": \"imprevist\",\n  \"imprime\": \"imprim\",\n  \"imprimiam\": \"imprim\",\n  \"imprimindo\": \"imprim\",\n  \"imprimir\": \"imprim\",\n  \"imprimiu\": \"imprim\",\n  \"improcedente\": \"improcedent\",\n  \"improdutivo\": \"improdut\",\n  \"impropérios\": \"impropéri\",\n  \"impropriedades\": \"impropriedad\",\n  \"impróprio\": \"imprópri\",\n  \"improváveis\": \"improv\",\n  \"improvável\": \"improv\",\n  \"improviso\": \"improvis\",\n  \"imprudência\": \"imprudent\",\n  \"impulsionada\": \"impulsion\",\n  \"impulsionado\": \"impulsion\",\n  \"impulsionam\": \"impulsion\",\n  \"impulsiva\": \"impuls\",\n  \"impulsivamente\": \"impuls\",\n  \"impulso\": \"impuls\",\n  \"impulsos\": \"impuls\",\n  \"impune\": \"impun\",\n  \"impunidade\": \"impun\",\n  \"impurezas\": \"impur\",\n  \"impusesse\": \"impus\",\n  \"imputada\": \"imput\",\n  \"imsdd\": \"imsdd\",\n  \"imundos\": \"imund\",\n  \"imune\": \"imun\",\n  \"imunologia\": \"imunolog\",\n  \"imunológicas\": \"imunológ\",\n  \"in\": \"in\",\n  \"inabaláveis\": \"inabal\",\n  \"inabalável\": \"inabal\",\n  \"inabilidade\": \"inabil\",\n  \"inacabado\": \"inacab\",\n  \"inacabados\": \"inacab\",\n  \"inaceitável\": \"inaceit\",\n  \"inácio\": \"ináci\",\n  \"inacreditáveis\": \"inacredit\",\n  \"inacreditável\": \"inacredit\",\n  \"inadequação\": \"inadequ\",\n  \"inadequada\": \"inadequ\",\n  \"inadequado\": \"inadequ\",\n  \"inadiável\": \"inadi\",\n  \"inadimplência\": \"inadimplent\",\n  \"inadmissível\": \"inadmiss\",\n  \"inalados\": \"inal\",\n  \"inalcançáveis\": \"inalcanc\",\n  \"inalcançável\": \"inalcanc\",\n  \"inamistosos\": \"inamist\",\n  \"inamovíveis\": \"inamovív\",\n  \"inamps\": \"inamps\",\n  \"inativação\": \"inativ\",\n  \"inaudíveis\": \"inaudív\",\n  \"inauguração\": \"inaugur\",\n  \"inaugurada\": \"inaugur\",\n  \"inaugurado\": \"inaugur\",\n  \"inauguram\": \"inaugur\",\n  \"inauguranda\": \"inaugurand\",\n  \"inaugurar\": \"inaugur\",\n  \"inaugurou\": \"inaugur\",\n  \"inc\": \"inc\",\n  \"inca\": \"inca\",\n  \"incansável\": \"incans\",\n  \"incapacidade\": \"incapac\",\n  \"incapacitados\": \"incapacit\",\n  \"incapacitar\": \"incapacit\",\n  \"incapaz\": \"incapaz\",\n  \"incapazes\": \"incapaz\",\n  \"incendiada\": \"incendi\",\n  \"incendiados\": \"incendi\",\n  \"incendiário\": \"incendiári\",\n  \"incendiavam\": \"incendi\",\n  \"incêndio\": \"incêndi\",\n  \"incêndios\": \"incêndi\",\n  \"incendiou\": \"incendi\",\n  \"incensada\": \"incens\",\n  \"incenso\": \"incens\",\n  \"incentiva\": \"incent\",\n  \"incentivá\": \"incentiv\",\n  \"incentivado\": \"incentiv\",\n  \"incentivadora\": \"incentiv\",\n  \"incentivam\": \"incentiv\",\n  \"incentivamos\": \"incentiv\",\n  \"incentivando\": \"incentiv\",\n  \"incentivar\": \"incentiv\",\n  \"incentivem\": \"incentiv\",\n  \"incentivo\": \"incent\",\n  \"incentivos\": \"incent\",\n  \"incentivou\": \"incentiv\",\n  \"incerteza\": \"incert\",\n  \"incertezas\": \"incert\",\n  \"incerto\": \"incert\",\n  \"incessantes\": \"incess\",\n  \"incesto\": \"incest\",\n  \"incestuosos\": \"incestu\",\n  \"inchaço\": \"inchac\",\n  \"inchaços\": \"inchac\",\n  \"inchadade\": \"inchadad\",\n  \"inchado\": \"inchad\",\n  \"inchados\": \"inchad\",\n  \"inchou\": \"inchou\",\n  \"incide\": \"incid\",\n  \"incidência\": \"incident\",\n  \"incidente\": \"incident\",\n  \"incidentes\": \"incident\",\n  \"incipiente\": \"incipient\",\n  \"incipientes\": \"incipient\",\n  \"incisivo\": \"incis\",\n  \"incisões\": \"incisõ\",\n  \"inclemente\": \"inclement\",\n  \"inclinação\": \"inclin\",\n  \"inclinada\": \"inclin\",\n  \"inclinados\": \"inclin\",\n  \"inclinam\": \"inclin\",\n  \"inclinar\": \"inclin\",\n  \"inclinou\": \"inclin\",\n  \"inclua\": \"inclu\",\n  \"incluam\": \"inclu\",\n  \"incluem\": \"inclu\",\n  \"inclui\": \"inclu\",\n  \"incluí\": \"inclu\",\n  \"incluía\": \"incluí\",\n  \"incluída\": \"incluíd\",\n  \"incluídas\": \"incluíd\",\n  \"incluído\": \"incluíd\",\n  \"incluídos\": \"incluíd\",\n  \"incluindo\": \"inclu\",\n  \"incluir\": \"inclu\",\n  \"incluíram\": \"incluír\",\n  \"incluirmos\": \"inclu\",\n  \"incluiu\": \"inclu\",\n  \"inclusão\": \"inclusã\",\n  \"inclusive\": \"inclusiv\",\n  \"incluso\": \"inclus\",\n  \"incógnita\": \"incógnit\",\n  \"incógnito\": \"incógnit\",\n  \"incolor\": \"incolor\",\n  \"incomoda\": \"incomod\",\n  \"incômoda\": \"incômod\",\n  \"incomodados\": \"incomod\",\n  \"incomodam\": \"incomod\",\n  \"incomodar\": \"incomod\",\n  \"incomodaram\": \"incomod\",\n  \"incomodarem\": \"incomod\",\n  \"incomodasse\": \"incomod\",\n  \"incomodo\": \"incomod\",\n  \"incômodo\": \"incômod\",\n  \"incomodou\": \"incomod\",\n  \"incomparavelmente\": \"incompar\",\n  \"incompatíveis\": \"incompatív\",\n  \"incompatível\": \"incompat\",\n  \"incompetência\": \"incompetent\",\n  \"incompetente\": \"incompetent\",\n  \"incompetentes\": \"incompetent\",\n  \"incompleta\": \"incomplet\",\n  \"incompreendida\": \"incompreend\",\n  \"incompreensão\": \"incompreensã\",\n  \"incomum\": \"incomum\",\n  \"incomunicabilidade\": \"incomunic\",\n  \"incomunicável\": \"incomunic\",\n  \"incomuns\": \"incomuns\",\n  \"inconclusa\": \"inconclus\",\n  \"inconclusivas\": \"inconclus\",\n  \"incondicionalmente\": \"incondicional\",\n  \"inconformada\": \"inconform\",\n  \"inconformado\": \"inconform\",\n  \"inconformados\": \"inconform\",\n  \"incongruente\": \"incongruent\",\n  \"inconsciência\": \"inconscient\",\n  \"inconsciente\": \"inconscient\",\n  \"inconscientemente\": \"inconscient\",\n  \"inconsequência\": \"inconsequent\",\n  \"inconstitucional\": \"inconstitucional\",\n  \"incontáveis\": \"incont\",\n  \"incontestáveis\": \"incontest\",\n  \"incontida\": \"incont\",\n  \"incontinência\": \"incontinent\",\n  \"incontroláveis\": \"incontrol\",\n  \"incontrolável\": \"incontrol\",\n  \"incontroversas\": \"incontrovers\",\n  \"inconvenientes\": \"inconvenient\",\n  \"incor\": \"incor\",\n  \"incorpora\": \"incorpor\",\n  \"incorporá\": \"incorpor\",\n  \"incorporação\": \"incorpor\",\n  \"incorporada\": \"incorpor\",\n  \"incorporado\": \"incorpor\",\n  \"incorporadores\": \"incorpor\",\n  \"incorporados\": \"incorpor\",\n  \"incorporam\": \"incorpor\",\n  \"incorporando\": \"incorpor\",\n  \"incorporar\": \"incorpor\",\n  \"incorporaram\": \"incorpor\",\n  \"incorporo\": \"incorpor\",\n  \"incorporou\": \"incorpor\",\n  \"incorreta\": \"incorret\",\n  \"incorreto\": \"incorret\",\n  \"incra\": \"incra\",\n  \"incredulidade\": \"incredul\",\n  \"incrédulo\": \"incrédul\",\n  \"incrementados\": \"increment\",\n  \"incrementar\": \"increment\",\n  \"incrementaram\": \"increment\",\n  \"incriminadora\": \"incrimin\",\n  \"incríveis\": \"incrív\",\n  \"incrível\": \"incrível\",\n  \"incrivelmente\": \"incrivel\",\n  \"incrustado\": \"incrust\",\n  \"incubação\": \"incub\",\n  \"incumbência\": \"incumbent\",\n  \"incumbido\": \"incumb\",\n  \"incuráveis\": \"incur\",\n  \"incurável\": \"incur\",\n  \"incúria\": \"incúr\",\n  \"incursão\": \"incursã\",\n  \"incursões\": \"incursõ\",\n  \"indaga\": \"indag\",\n  \"indagação\": \"indag\",\n  \"indagações\": \"indag\",\n  \"indagaria\": \"indag\",\n  \"indagava\": \"indag\",\n  \"indarte\": \"indart\",\n  \"indecentes\": \"indecent\",\n  \"indecifrável\": \"indecifr\",\n  \"indeciso\": \"indecis\",\n  \"indecisos\": \"indecis\",\n  \"indefectível\": \"indefect\",\n  \"indefensável\": \"indefens\",\n  \"indefinições\": \"indefiniçõ\",\n  \"indefinido\": \"indefin\",\n  \"indenização\": \"indeniz\",\n  \"indenizações\": \"indeniz\",\n  \"indenizadas\": \"indeniz\",\n  \"indenizado\": \"indeniz\",\n  \"indenizaram\": \"indeniz\",\n  \"independence\": \"independenc\",\n  \"independência\": \"independent\",\n  \"independendo\": \"independ\",\n  \"independent\": \"independent\",\n  \"independente\": \"independent\",\n  \"independentemente\": \"independent\",\n  \"independentes\": \"independent\",\n  \"indescritível\": \"indescrit\",\n  \"indesejável\": \"indesej\",\n  \"indeterminado\": \"indetermin\",\n  \"indevidamente\": \"indevid\",\n  \"indevido\": \"indev\",\n  \"index\": \"index\",\n  \"índia\": \"índi\",\n  \"indiana\": \"indian\",\n  \"indianápolis\": \"indianápol\",\n  \"indianas\": \"indian\",\n  \"indiano\": \"indian\",\n  \"indianos\": \"indian\",\n  \"índias\": \"índi\",\n  \"indica\": \"indic\",\n  \"indicação\": \"indic\",\n  \"indicações\": \"indic\",\n  \"indicada\": \"indic\",\n  \"indicadas\": \"indic\",\n  \"indicado\": \"indic\",\n  \"indicador\": \"indic\",\n  \"indicadores\": \"indic\",\n  \"indicados\": \"indic\",\n  \"indicam\": \"indic\",\n  \"indicando\": \"indic\",\n  \"indicar\": \"indic\",\n  \"indicaria\": \"indic\",\n  \"indicativo\": \"indic\",\n  \"indicator\": \"indicator\",\n  \"indicava\": \"indic\",\n  \"indicavam\": \"indic\",\n  \"índice\": \"índic\",\n  \"índices\": \"índic\",\n  \"indício\": \"indíci\",\n  \"indícios\": \"indíci\",\n  \"indiciou\": \"indic\",\n  \"indico\": \"indic\",\n  \"índico\": \"índic\",\n  \"indicou\": \"indic\",\n  \"indiferença\": \"indiferenc\",\n  \"indiferente\": \"indiferent\",\n  \"indiferentes\": \"indiferent\",\n  \"indígena\": \"indígen\",\n  \"indígenas\": \"indígen\",\n  \"indigência\": \"indigent\",\n  \"indigestão\": \"indigestã\",\n  \"indignação\": \"indign\",\n  \"indignada\": \"indign\",\n  \"indignado\": \"indign\",\n  \"indignou\": \"indign\",\n  \"indigo\": \"indig\",\n  \"índio\": \"índi\",\n  \"índios\": \"índi\",\n  \"indireta\": \"indiret\",\n  \"indiretamente\": \"indiret\",\n  \"indiretas\": \"indiret\",\n  \"indiretos\": \"indiret\",\n  \"indisciplina\": \"indisciplin\",\n  \"indiscreta\": \"indiscret\",\n  \"indiscretas\": \"indiscret\",\n  \"indiscriminada\": \"indiscrimin\",\n  \"indiscriminadamente\": \"indiscrimin\",\n  \"indiscutível\": \"indiscut\",\n  \"indispensáveis\": \"indispens\",\n  \"indispensável\": \"indispens\",\n  \"indissolúvel\": \"indissolúvel\",\n  \"individuais\": \"individu\",\n  \"individual\": \"individual\",\n  \"individualidade\": \"individual\",\n  \"individualismo\": \"individual\",\n  \"individualista\": \"individual\",\n  \"individualistas\": \"individual\",\n  \"individualiza\": \"individualiz\",\n  \"individualizado\": \"individualiz\",\n  \"individualmente\": \"individual\",\n  \"indíviduo\": \"indívidu\",\n  \"indivíduo\": \"indivídu\",\n  \"indivíduos\": \"indivídu\",\n  \"indizíveis\": \"indizív\",\n  \"indo\": \"indo\",\n  \"índole\": \"índol\",\n  \"indomada\": \"indom\",\n  \"indomável\": \"indom\",\n  \"indonésia\": \"indonés\",\n  \"indulgências\": \"indulgent\",\n  \"indumentária\": \"indumentár\",\n  \"indústria\": \"indústr\",\n  \"industriais\": \"industri\",\n  \"industrial\": \"industrial\",\n  \"industrialização\": \"industrializ\",\n  \"industrializadas\": \"industrializ\",\n  \"industrializado\": \"industrializ\",\n  \"industrializados\": \"industrializ\",\n  \"indústrias\": \"indústr\",\n  \"indusval\": \"indusval\",\n  \"induz\": \"induz\",\n  \"induzem\": \"induz\",\n  \"induzida\": \"induz\",\n  \"induzido\": \"induz\",\n  \"induzir\": \"induz\",\n  \"induzo\": \"induz\",\n  \"indy\": \"indy\",\n  \"inédita\": \"inédit\",\n  \"ineditismo\": \"inedit\",\n  \"inédito\": \"inédit\",\n  \"inéditos\": \"inédit\",\n  \"ineficaz\": \"ineficaz\",\n  \"ineficiência\": \"ineficient\",\n  \"ineficiências\": \"ineficient\",\n  \"ineficientes\": \"ineficient\",\n  \"inegáveis\": \"ineg\",\n  \"inegável\": \"ineg\",\n  \"inei\": \"ine\",\n  \"inelutável\": \"inelut\",\n  \"inépcia\": \"inépc\",\n  \"inequívoca\": \"inequívoc\",\n  \"inerte\": \"inert\",\n  \"inès\": \"inès\",\n  \"inês\": \"inês\",\n  \"inescrupuloso\": \"inescrupul\",\n  \"inesperada\": \"inesper\",\n  \"inesperadamente\": \"inesper\",\n  \"inesperadas\": \"inesper\",\n  \"inesperado\": \"inesper\",\n  \"inestimável\": \"inestim\",\n  \"inevitável\": \"inevit\",\n  \"inevitavelmente\": \"inevit\",\n  \"inexato\": \"inexat\",\n  \"inexistente\": \"inexistent\",\n  \"inexistentes\": \"inexistent\",\n  \"inexorável\": \"inexor\",\n  \"inexperiente\": \"inexperient\",\n  \"inexperientes\": \"inexperient\",\n  \"inexplicáveis\": \"inexplic\",\n  \"inexplicável\": \"inexplic\",\n  \"inexpressiva\": \"inexpress\",\n  \"inf\": \"inf\",\n  \"infame\": \"infam\",\n  \"infância\": \"infânc\",\n  \"infantaria\": \"infant\",\n  \"infantil\": \"infantil\",\n  \"infantilizado\": \"infantiliz\",\n  \"infantilizados\": \"infantiliz\",\n  \"infantis\": \"infant\",\n  \"infanto\": \"infant\",\n  \"infarta\": \"infart\",\n  \"infarto\": \"infart\",\n  \"infartos\": \"infart\",\n  \"infecção\": \"infecçã\",\n  \"infecções\": \"infecçõ\",\n  \"infectadas\": \"infect\",\n  \"infectado\": \"infect\",\n  \"infectados\": \"infect\",\n  \"infectologista\": \"infectolog\",\n  \"infelicidade\": \"infel\",\n  \"infeliz\": \"infeliz\",\n  \"infelizes\": \"infeliz\",\n  \"infelizmente\": \"infeliz\",\n  \"inferior\": \"inferior\",\n  \"inferiores\": \"inferior\",\n  \"inferioridade\": \"inferior\",\n  \"inferir\": \"infer\",\n  \"infernal\": \"infernal\",\n  \"inferninhos\": \"inferninh\",\n  \"inferno\": \"infern\",\n  \"infestada\": \"infest\",\n  \"infestam\": \"infest\",\n  \"infidelidade\": \"infidel\",\n  \"infiéis\": \"infi\",\n  \"infiel\": \"infiel\",\n  \"infiltra\": \"infiltr\",\n  \"infiltrações\": \"infiltr\",\n  \"infiltrando\": \"infiltr\",\n  \"infiltrar\": \"infiltr\",\n  \"infiltrou\": \"infiltr\",\n  \"ínfimo\": \"ínfim\",\n  \"ínfimos\": \"ínfim\",\n  \"infindável\": \"infind\",\n  \"infinidade\": \"infin\",\n  \"infinita\": \"infinit\",\n  \"infinitamente\": \"infinit\",\n  \"infinitas\": \"infinit\",\n  \"inflação\": \"inflaçã\",\n  \"inflacionou\": \"inflacion\",\n  \"infladas\": \"inflad\",\n  \"inflamação\": \"inflam\",\n  \"inflamada\": \"inflam\",\n  \"inflamado\": \"inflam\",\n  \"inflamados\": \"inflam\",\n  \"inflamar\": \"inflam\",\n  \"inflamatória\": \"inflamatór\",\n  \"inflamáveis\": \"inflam\",\n  \"inflamável\": \"inflam\",\n  \"inflexível\": \"inflex\",\n  \"influencia\": \"influenc\",\n  \"influência\": \"influênc\",\n  \"influenciada\": \"influenc\",\n  \"influenciado\": \"influenc\",\n  \"influenciados\": \"influenc\",\n  \"influenciam\": \"influenc\",\n  \"influenciando\": \"influenc\",\n  \"influenciar\": \"influenc\",\n  \"influências\": \"influênc\",\n  \"influenciável\": \"influenc\",\n  \"influenciem\": \"influenc\",\n  \"influencio\": \"influenci\",\n  \"influenciou\": \"influenc\",\n  \"influente\": \"influent\",\n  \"influentes\": \"influent\",\n  \"influi\": \"influ\",\n  \"influindo\": \"influ\",\n  \"influir\": \"influ\",\n  \"infográfico\": \"infográf\",\n  \"infolab\": \"infolab\",\n  \"informa\": \"inform\",\n  \"informaç\": \"informac\",\n  \"informação\": \"inform\",\n  \"informações\": \"inform\",\n  \"informada\": \"inform\",\n  \"informadas\": \"inform\",\n  \"informadíssimos\": \"informadíss\",\n  \"informado\": \"inform\",\n  \"informados\": \"inform\",\n  \"informal\": \"informal\",\n  \"informalmente\": \"informal\",\n  \"informam\": \"inform\",\n  \"informando\": \"inform\",\n  \"informantes\": \"inform\",\n  \"informar\": \"inform\",\n  \"informaram\": \"inform\",\n  \"informática\": \"informát\",\n  \"information\": \"information\",\n  \"informativo\": \"inform\",\n  \"informativos\": \"inform\",\n  \"informatização\": \"informatiz\",\n  \"informatizada\": \"informatiz\",\n  \"informatizado\": \"informatiz\",\n  \"informatizou\": \"informatiz\",\n  \"informava\": \"inform\",\n  \"informe\": \"inform\",\n  \"informes\": \"inform\",\n  \"informestado\": \"informest\",\n  \"informou\": \"inform\",\n  \"infortunadamente\": \"infortun\",\n  \"infoway\": \"infoway\",\n  \"infra\": \"infra\",\n  \"infração\": \"infraçã\",\n  \"infrações\": \"infraçõ\",\n  \"infratores\": \"infrator\",\n  \"infrutíferas\": \"infrutíf\",\n  \"infundada\": \"infund\",\n  \"infundadas\": \"infund\",\n  \"ing\": \"ing\",\n  \"ingen\": \"ingen\",\n  \"ingênua\": \"ingênu\",\n  \"ingenuidade\": \"ingenu\",\n  \"ingênuo\": \"ingênu\",\n  \"ingeri\": \"inger\",\n  \"ingerida\": \"inger\",\n  \"ingerido\": \"inger\",\n  \"ingeridos\": \"inger\",\n  \"ingerindo\": \"inger\",\n  \"ingerir\": \"inger\",\n  \"ingestão\": \"ingestã\",\n  \"inglaterra\": \"inglaterr\",\n  \"inglês\": \"inglês\",\n  \"inglesa\": \"ingles\",\n  \"ingleses\": \"ingles\",\n  \"inglesi\": \"ingles\",\n  \"ingovernáveis\": \"ingovern\",\n  \"ingra\": \"ingra\",\n  \"ingrediente\": \"ingredient\",\n  \"ingredientes\": \"ingredient\",\n  \"íngreme\": \"íngrem\",\n  \"íngremes\": \"íngrem\",\n  \"ingressado\": \"ingress\",\n  \"ingressam\": \"ingress\",\n  \"ingressar\": \"ingress\",\n  \"ingresso\": \"ingress\",\n  \"ingressos\": \"ingress\",\n  \"ingrid\": \"ingrid\",\n  \"inibe\": \"inib\",\n  \"inibem\": \"inib\",\n  \"inibex\": \"inibex\",\n  \"inibidor\": \"inibidor\",\n  \"inibidores\": \"inibidor\",\n  \"inibidos\": \"inib\",\n  \"inibindo\": \"inib\",\n  \"inibir\": \"inib\",\n  \"inicia\": \"inic\",\n  \"iniciação\": \"inic\",\n  \"iniciada\": \"inic\",\n  \"iniciadas\": \"inic\",\n  \"iniciado\": \"inic\",\n  \"iniciados\": \"inic\",\n  \"iniciais\": \"inic\",\n  \"inicial\": \"inicial\",\n  \"inicialmente\": \"inicial\",\n  \"iniciam\": \"inic\",\n  \"iniciamos\": \"inic\",\n  \"iniciando\": \"inic\",\n  \"iniciante\": \"inic\",\n  \"iniciantes\": \"inic\",\n  \"iniciar\": \"inic\",\n  \"iniciaram\": \"inic\",\n  \"iniciático\": \"iniciát\",\n  \"iniciativa\": \"inic\",\n  \"iniciava\": \"inic\",\n  \"inicidente\": \"inicident\",\n  \"início\": \"iníci\",\n  \"iniciou\": \"inic\",\n  \"inigualável\": \"inigual\",\n  \"inimaginável\": \"inimagin\",\n  \"inimiga\": \"inimig\",\n  \"inimigo\": \"inimig\",\n  \"inimigos\": \"inimig\",\n  \"inimizade\": \"inimizad\",\n  \"ininteligíveis\": \"ininteligív\",\n  \"ininterrupta\": \"ininterrupt\",\n  \"ininterruptamente\": \"ininterrupt\",\n  \"ininterruptas\": \"ininterrupt\",\n  \"ininterruptos\": \"ininterrupt\",\n  \"injeção\": \"injeçã\",\n  \"injeções\": \"injeçõ\",\n  \"injetada\": \"injet\",\n  \"injetado\": \"injet\",\n  \"injetados\": \"injet\",\n  \"injetar\": \"injet\",\n  \"injetável\": \"injet\",\n  \"injustamente\": \"injust\",\n  \"injustiça\": \"injustic\",\n  \"injustiçadas\": \"injustic\",\n  \"injustiçado\": \"injustic\",\n  \"injusto\": \"injust\",\n  \"inocência\": \"inocent\",\n  \"inocêncio\": \"inocênci\",\n  \"inocente\": \"inocent\",\n  \"inocentes\": \"inocent\",\n  \"inócua\": \"inócu\",\n  \"inócuas\": \"inócu\",\n  \"inocular\": \"inocul\",\n  \"inócuo\": \"inócu\",\n  \"inócuos\": \"inócu\",\n  \"inoportuno\": \"inoportun\",\n  \"inoportunos\": \"inoportun\",\n  \"inóspitas\": \"inóspit\",\n  \"inóspitos\": \"inóspit\",\n  \"inovação\": \"inov\",\n  \"inovações\": \"inov\",\n  \"inovador\": \"inov\",\n  \"inovadora\": \"inov\",\n  \"inovando\": \"inov\",\n  \"inovar\": \"inov\",\n  \"inquérito\": \"inquérit\",\n  \"inquéritos\": \"inquérit\",\n  \"inquestionável\": \"inquestion\",\n  \"inquieta\": \"inquiet\",\n  \"inquietação\": \"inquiet\",\n  \"inquietações\": \"inquiet\",\n  \"inquietante\": \"inquiet\",\n  \"inquieto\": \"inquiet\",\n  \"inquietos\": \"inquiet\",\n  \"inquisição\": \"inquisiçã\",\n  \"insaciável\": \"insac\",\n  \"insana\": \"insan\",\n  \"insanidade\": \"insan\",\n  \"insatisfação\": \"insatisf\",\n  \"insatisfatória\": \"insatisfatór\",\n  \"insatisfatórias\": \"insatisfatór\",\n  \"insatisfazer\": \"insatisfaz\",\n  \"insatisfeito\": \"insatisfeit\",\n  \"insconstitucional\": \"insconstitucional\",\n  \"inscrevem\": \"inscrev\",\n  \"inscrever\": \"inscrev\",\n  \"inscrição\": \"inscriçã\",\n  \"inscrições\": \"inscriçõ\",\n  \"inscritos\": \"inscrit\",\n  \"insegura\": \"insegur\",\n  \"insegurança\": \"inseguranc\",\n  \"inseguro\": \"insegur\",\n  \"insensatez\": \"insensatez\",\n  \"insensíveis\": \"insensív\",\n  \"inseparável\": \"insepar\",\n  \"inserção\": \"inserçã\",\n  \"insere\": \"inser\",\n  \"inseri\": \"inser\",\n  \"inserido\": \"inser\",\n  \"insignificância\": \"insignific\",\n  \"insignificante\": \"insignific\",\n  \"insignificantes\": \"insignific\",\n  \"insinua\": \"insinu\",\n  \"insinuações\": \"insinu\",\n  \"insinuando\": \"insinu\",\n  \"insinuar\": \"insinu\",\n  \"insinuara\": \"insinu\",\n  \"insista\": \"insist\",\n  \"insiste\": \"insist\",\n  \"insistem\": \"insist\",\n  \"insistência\": \"insistent\",\n  \"insistia\": \"insist\",\n  \"insistido\": \"insist\",\n  \"insistir\": \"insist\",\n  \"insistiu\": \"insist\",\n  \"insólito\": \"insólit\",\n  \"insolúvel\": \"insolúvel\",\n  \"insolvência\": \"insolvent\",\n  \"insondável\": \"insond\",\n  \"insones\": \"inson\",\n  \"insônia\": \"insôn\",\n  \"insossa\": \"insoss\",\n  \"inspeção\": \"inspeçã\",\n  \"inspecionadas\": \"inspecion\",\n  \"inspecionam\": \"inspecion\",\n  \"inspecionar\": \"inspecion\",\n  \"inspetor\": \"inspetor\",\n  \"inspira\": \"inspir\",\n  \"inspiração\": \"inspir\",\n  \"inspirada\": \"inspir\",\n  \"inspiradas\": \"inspir\",\n  \"inspirado\": \"inspir\",\n  \"inspirador\": \"inspir\",\n  \"inspirados\": \"inspir\",\n  \"inspiram\": \"inspir\",\n  \"inspirar\": \"inspir\",\n  \"inspiraram\": \"inspir\",\n  \"inspiratória\": \"inspiratór\",\n  \"inspirava\": \"inspir\",\n  \"inspiravam\": \"inspir\",\n  \"inspirou\": \"inspir\",\n  \"inss\": \"inss\",\n  \"instala\": \"instal\",\n  \"instalação\": \"instal\",\n  \"instalações\": \"instal\",\n  \"instalada\": \"instal\",\n  \"instaladas\": \"instal\",\n  \"instalado\": \"instal\",\n  \"instalados\": \"instal\",\n  \"instalam\": \"instal\",\n  \"instalando\": \"instal\",\n  \"instalar\": \"instal\",\n  \"instalará\": \"instal\",\n  \"instalaram\": \"instal\",\n  \"instalarem\": \"instal\",\n  \"instalem\": \"instal\",\n  \"instalou\": \"instal\",\n  \"instância\": \"instânc\",\n  \"instâncias\": \"instânc\",\n  \"instantânea\": \"instantân\",\n  \"instantâneo\": \"instantân\",\n  \"instante\": \"instant\",\n  \"instantes\": \"instant\",\n  \"instaurado\": \"instaur\",\n  \"instáveis\": \"instáv\",\n  \"instável\": \"instável\",\n  \"instigante\": \"instig\",\n  \"instintiva\": \"instint\",\n  \"instinto\": \"instint\",\n  \"institucionalizar\": \"institucionaliz\",\n  \"instituição\": \"instituiçã\",\n  \"instituições\": \"instituiçõ\",\n  \"instituída\": \"instituíd\",\n  \"instituído\": \"instituíd\",\n  \"instituir\": \"institu\",\n  \"instituiu\": \"institu\",\n  \"institute\": \"institut\",\n  \"institution\": \"institution\",\n  \"institutional\": \"institutional\",\n  \"instituto\": \"institut\",\n  \"institutos\": \"institut\",\n  \"instrução\": \"instruçã\",\n  \"instruções\": \"instruçõ\",\n  \"instruídos\": \"instruíd\",\n  \"instrumentais\": \"instrument\",\n  \"instrumental\": \"instrumental\",\n  \"instrumentalizadas\": \"instrumentaliz\",\n  \"instrumentista\": \"instrument\",\n  \"instrumento\": \"instrument\",\n  \"instrumentos\": \"instrument\",\n  \"instrutivas\": \"instrut\",\n  \"instrutor\": \"instrutor\",\n  \"instrutores\": \"instrutor\",\n  \"insubstituível\": \"insubstitu\",\n  \"insucesso\": \"insucess\",\n  \"insuficiência\": \"insuficient\",\n  \"insuficiente\": \"insuficient\",\n  \"insuficientes\": \"insuficient\",\n  \"insulina\": \"insulin\",\n  \"insultando\": \"insult\",\n  \"insuperáveis\": \"insuper\",\n  \"insuperável\": \"insuper\",\n  \"insuportável\": \"insuport\",\n  \"insurgiram\": \"insurg\",\n  \"insurreição\": \"insurreiçã\",\n  \"insustentável\": \"insustent\",\n  \"intacta\": \"intact\",\n  \"intacto\": \"intact\",\n  \"intangível\": \"intang\",\n  \"intatas\": \"intat\",\n  \"inte\": \"inte\",\n  \"integra\": \"integr\",\n  \"íntegra\": \"íntegr\",\n  \"integrá\": \"integr\",\n  \"integração\": \"integr\",\n  \"integrada\": \"integr\",\n  \"integrado\": \"integr\",\n  \"integradora\": \"integr\",\n  \"integrados\": \"integr\",\n  \"integrais\": \"integr\",\n  \"integral\": \"integral\",\n  \"integralmente\": \"integral\",\n  \"integram\": \"integr\",\n  \"integrante\": \"integr\",\n  \"integrantes\": \"integr\",\n  \"integrar\": \"integr\",\n  \"íntegras\": \"íntegr\",\n  \"integrated\": \"integrated\",\n  \"integrava\": \"integr\",\n  \"integre\": \"integr\",\n  \"integridade\": \"integr\",\n  \"integrou\": \"integr\",\n  \"inteira\": \"inteir\",\n  \"inteiramente\": \"inteir\",\n  \"inteiras\": \"inteir\",\n  \"inteirinho\": \"inteirinh\",\n  \"inteiro\": \"inteir\",\n  \"inteirou\": \"inteir\",\n  \"intel\": \"intel\",\n  \"intelectuais\": \"intelectu\",\n  \"intelectual\": \"intelectual\",\n  \"intelifgência\": \"intelifgent\",\n  \"inteligence\": \"inteligenc\",\n  \"inteligência\": \"inteligent\",\n  \"inteligente\": \"inteligent\",\n  \"inteligentes\": \"inteligent\",\n  \"inteligentíssimo\": \"inteligentíssim\",\n  \"intempéries\": \"intempéri\",\n  \"intempestiva\": \"intempest\",\n  \"intenção\": \"intençã\",\n  \"intencional\": \"intencional\",\n  \"intenções\": \"intençõ\",\n  \"intensa\": \"intens\",\n  \"intensamente\": \"intens\",\n  \"intensas\": \"intens\",\n  \"intensidade\": \"intens\",\n  \"intensidades\": \"intens\",\n  \"intensificando\": \"intensific\",\n  \"intensificar\": \"intensific\",\n  \"intensiva\": \"intens\",\n  \"intensivo\": \"intens\",\n  \"intenso\": \"intens\",\n  \"inter\": \"inter\",\n  \"interação\": \"inter\",\n  \"interações\": \"inter\",\n  \"interagem\": \"interag\",\n  \"interativa\": \"inter\",\n  \"interativas\": \"inter\",\n  \"interatividade\": \"interat\",\n  \"intercâmbio\": \"intercâmbi\",\n  \"interceda\": \"interced\",\n  \"intercomunicação\": \"intercomunic\",\n  \"intercontinental\": \"intercontinental\",\n  \"interdependência\": \"interdependent\",\n  \"interdesign\": \"interdesign\",\n  \"interdição\": \"interdiçã\",\n  \"interditada\": \"interdit\",\n  \"interessa\": \"interess\",\n  \"interessada\": \"interess\",\n  \"interessadas\": \"interess\",\n  \"interessado\": \"interess\",\n  \"interessados\": \"interess\",\n  \"interessam\": \"interess\",\n  \"interessante\": \"interess\",\n  \"interessantes\": \"interess\",\n  \"interessar\": \"interess\",\n  \"interessasse\": \"interess\",\n  \"interessava\": \"interess\",\n  \"interesse\": \"inter\",\n  \"interessei\": \"interess\",\n  \"interesses\": \"inter\",\n  \"interessou\": \"interess\",\n  \"interface\": \"interfac\",\n  \"interfere\": \"interfer\",\n  \"interferência\": \"interferent\",\n  \"interferências\": \"interferent\",\n  \"interferido\": \"interfer\",\n  \"interferir\": \"interfer\",\n  \"interinamente\": \"interin\",\n  \"interior\": \"interior\",\n  \"interioranas\": \"interioran\",\n  \"interiorano\": \"interioran\",\n  \"interiores\": \"interior\",\n  \"interiorizada\": \"interioriz\",\n  \"interlagos\": \"interlag\",\n  \"interliga\": \"interlig\",\n  \"interligadas\": \"interlig\",\n  \"interligados\": \"interlig\",\n  \"interlocutor\": \"interlocutor\",\n  \"interlocutores\": \"interlocutor\",\n  \"intermediação\": \"intermedi\",\n  \"intermediada\": \"intermedi\",\n  \"intermediária\": \"intermediár\",\n  \"intermediário\": \"intermediári\",\n  \"intermediários\": \"intermediári\",\n  \"intermédio\": \"intermédi\",\n  \"intermináveis\": \"intermin\",\n  \"interminável\": \"intermin\",\n  \"interministerial\": \"interministerial\",\n  \"intermitente\": \"intermitent\",\n  \"interna\": \"intern\",\n  \"interná\": \"intern\",\n  \"internação\": \"intern\",\n  \"internacionais\": \"internacion\",\n  \"internacional\": \"internacional\",\n  \"internacionalizada\": \"internacionaliz\",\n  \"internacionalmente\": \"internacional\",\n  \"internações\": \"intern\",\n  \"internada\": \"intern\",\n  \"internado\": \"intern\",\n  \"internar\": \"intern\",\n  \"internas\": \"intern\",\n  \"international\": \"international\",\n  \"internato\": \"internat\",\n  \"internauta\": \"internaut\",\n  \"internautas\": \"internaut\",\n  \"internet\": \"internet\",\n  \"interno\": \"intern\",\n  \"internos\": \"intern\",\n  \"interoperability\": \"interoperability\",\n  \"interpelação\": \"interpel\",\n  \"interpol\": \"interpol\",\n  \"interpreta\": \"interpret\",\n  \"interpretação\": \"interpret\",\n  \"interpretações\": \"interpret\",\n  \"interpretada\": \"interpret\",\n  \"interpretadas\": \"interpret\",\n  \"interpretado\": \"interpret\",\n  \"interpretados\": \"interpret\",\n  \"interpretam\": \"interpret\",\n  \"interpretando\": \"interpret\",\n  \"interpretar\": \"interpret\",\n  \"interpretava\": \"interpret\",\n  \"interpretavam\": \"interpret\",\n  \"intérprete\": \"intérpret\",\n  \"intérpretes\": \"intérpret\",\n  \"interpretou\": \"interpret\",\n  \"interregno\": \"interregn\",\n  \"interrogação\": \"interrog\",\n  \"interrogações\": \"interrog\",\n  \"interrogadores\": \"interrog\",\n  \"interrogam\": \"interrog\",\n  \"interrogando\": \"interrog\",\n  \"interrogatório\": \"interrogatóri\",\n  \"interrogatórios\": \"interrogatóri\",\n  \"interrogava\": \"interrog\",\n  \"interrogou\": \"interrog\",\n  \"interrompendo\": \"interromp\",\n  \"interromper\": \"interromp\",\n  \"interrompida\": \"interromp\",\n  \"interrompido\": \"interromp\",\n  \"interrupção\": \"interrupçã\",\n  \"intersindical\": \"intersindical\",\n  \"intertribais\": \"intertrib\",\n  \"intervalo\": \"interval\",\n  \"intervalos\": \"interval\",\n  \"intervém\": \"intervém\",\n  \"intervenção\": \"intervençã\",\n  \"intervencionista\": \"intervencion\",\n  \"intervencionistas\": \"intervencion\",\n  \"intervenções\": \"intervençõ\",\n  \"intervir\": \"interv\",\n  \"intestinal\": \"intestinal\",\n  \"intestino\": \"intestin\",\n  \"íntima\": \"íntim\",\n  \"intimado\": \"intim\",\n  \"íntimas\": \"íntim\",\n  \"intimida\": \"intim\",\n  \"intimidade\": \"intim\",\n  \"intimidades\": \"intim\",\n  \"íntimo\": \"íntim\",\n  \"íntimos\": \"íntim\",\n  \"intitulada\": \"intitul\",\n  \"intitulado\": \"intitul\",\n  \"intitular\": \"intitul\",\n  \"intocada\": \"intoc\",\n  \"intocados\": \"intoc\",\n  \"intocável\": \"intoc\",\n  \"intolerância\": \"intoler\",\n  \"intolerantes\": \"intoler\",\n  \"intolerável\": \"intoler\",\n  \"intoxicação\": \"intoxic\",\n  \"intoxicações\": \"intoxic\",\n  \"intracranianos\": \"intracranian\",\n  \"intransponíveis\": \"intransponív\",\n  \"intransponível\": \"intranspon\",\n  \"intratáveis\": \"intrat\",\n  \"intriga\": \"intrig\",\n  \"intrigante\": \"intrig\",\n  \"intrigas\": \"intrig\",\n  \"introdução\": \"introduçã\",\n  \"introduz\": \"introduz\",\n  \"introduzida\": \"introduz\",\n  \"introduzido\": \"introduz\",\n  \"introduzindo\": \"introduz\",\n  \"introduzir\": \"introduz\",\n  \"intrometendo\": \"intromet\",\n  \"intrometeram\": \"intromet\",\n  \"intrometida\": \"intromet\",\n  \"introspectivo\": \"introspect\",\n  \"intrusos\": \"intrus\",\n  \"intui\": \"intu\",\n  \"intuição\": \"intuiçã\",\n  \"intuitivo\": \"intuit\",\n  \"inturia\": \"intur\",\n  \"inúmeras\": \"inúm\",\n  \"inúmeros\": \"inúmer\",\n  \"inundaram\": \"inund\",\n  \"inusitada\": \"inusit\",\n  \"inusitadas\": \"inusit\",\n  \"inusitado\": \"inusit\",\n  \"inúteis\": \"inút\",\n  \"inútil\": \"inútil\",\n  \"inutiliza\": \"inutiliz\",\n  \"inutilmente\": \"inutil\",\n  \"invade\": \"invad\",\n  \"invadi\": \"invad\",\n  \"invadida\": \"invad\",\n  \"invadido\": \"invad\",\n  \"invadindo\": \"invad\",\n  \"invadir\": \"invad\",\n  \"invadiram\": \"invad\",\n  \"invadiria\": \"invad\",\n  \"invadiu\": \"invad\",\n  \"invalidez\": \"invalidez\",\n  \"invariavelmente\": \"invari\",\n  \"invasão\": \"invasã\",\n  \"invasivo\": \"invas\",\n  \"invasores\": \"invasor\",\n  \"inveja\": \"invej\",\n  \"invejável\": \"invej\",\n  \"invejo\": \"invej\",\n  \"invenção\": \"invençã\",\n  \"invencibilidade\": \"invencibil\",\n  \"inventada\": \"invent\",\n  \"inventado\": \"invent\",\n  \"inventando\": \"invent\",\n  \"inventar\": \"invent\",\n  \"inventaram\": \"invent\",\n  \"inventário\": \"inventári\",\n  \"inventava\": \"invent\",\n  \"invente\": \"invent\",\n  \"inventor\": \"inventor\",\n  \"inventores\": \"inventor\",\n  \"inventou\": \"invent\",\n  \"inverno\": \"invern\",\n  \"invernos\": \"invern\",\n  \"inversa\": \"invers\",\n  \"inversamente\": \"invers\",\n  \"inversão\": \"inversã\",\n  \"inverso\": \"invers\",\n  \"inverte\": \"invert\",\n  \"invertessem\": \"invert\",\n  \"inverteu\": \"invert\",\n  \"investe\": \"invest\",\n  \"investem\": \"invest\",\n  \"investiam\": \"invest\",\n  \"investida\": \"invest\",\n  \"investidas\": \"invest\",\n  \"investido\": \"invest\",\n  \"investidor\": \"investidor\",\n  \"investidores\": \"investidor\",\n  \"investidos\": \"invest\",\n  \"investiga\": \"investig\",\n  \"investigação\": \"investig\",\n  \"investigações\": \"investig\",\n  \"investigada\": \"investig\",\n  \"investigadas\": \"investig\",\n  \"investigado\": \"investig\",\n  \"investigador\": \"investig\",\n  \"investigadora\": \"investig\",\n  \"investigadores\": \"investig\",\n  \"investigados\": \"investig\",\n  \"investigam\": \"investig\",\n  \"investigando\": \"investig\",\n  \"investigar\": \"investig\",\n  \"investigativa\": \"investig\",\n  \"investigativo\": \"investig\",\n  \"investigou\": \"investig\",\n  \"investigue\": \"investig\",\n  \"investimento\": \"invest\",\n  \"investimentos\": \"invest\",\n  \"investimos\": \"invest\",\n  \"investindo\": \"invest\",\n  \"investir\": \"invest\",\n  \"investirá\": \"invest\",\n  \"investisse\": \"invest\",\n  \"investiu\": \"invest\",\n  \"investment\": \"investment\",\n  \"inveterado\": \"inveter\",\n  \"inveterados\": \"inveter\",\n  \"inviabilizados\": \"inviabiliz\",\n  \"inviabilizam\": \"inviabiliz\",\n  \"inviável\": \"inviável\",\n  \"invicto\": \"invict\",\n  \"invisíveis\": \"invisív\",\n  \"invisível\": \"invis\",\n  \"invista\": \"invist\",\n  \"invistam\": \"invist\",\n  \"invocação\": \"invoc\",\n  \"invólucro\": \"invólucr\",\n  \"invólucros\": \"invólucr\",\n  \"involuntariamente\": \"involuntari\",\n  \"iô\": \"iô\",\n  \"iode\": \"iod\",\n  \"iódice\": \"iódic\",\n  \"iof\": \"iof\",\n  \"ioga\": \"iog\",\n  \"iogurte\": \"iogurt\",\n  \"ioiô\": \"ioiô\",\n  \"ion\": \"ion\",\n  \"ione\": \"ion\",\n  \"iorquina\": \"iorquin\",\n  \"iorquino\": \"iorquin\",\n  \"ioruba\": \"iorub\",\n  \"iôs\": \"iôs\",\n  \"ip\": \"ip\",\n  \"ipanema\": \"ipanem\",\n  \"ipanemense\": \"ipanemens\",\n  \"ipea\": \"ipe\",\n  \"iph\": \"iph\",\n  \"iphigenie\": \"iphigeni\",\n  \"ipiranga\": \"ipirang\",\n  \"ipojuca\": \"ipojuc\",\n  \"ipva\": \"ipva\",\n  \"ir\": \"ir\",\n  \"ira\": \"ira\",\n  \"irá\": \"irá\",\n  \"irã\": \"irã\",\n  \"iracy\": \"iracy\",\n  \"iranaia\": \"irana\",\n  \"irany\": \"irany\",\n  \"irão\": \"irã\",\n  \"iraquiano\": \"iraquian\",\n  \"irem\": \"irem\",\n  \"irene\": \"iren\",\n  \"iria\": \"iri\",\n  \"iriam\": \"iri\",\n  \"iríamos\": \"irí\",\n  \"irídio\": \"irídi\",\n  \"irineu\": \"irin\",\n  \"iriri\": \"irir\",\n  \"iris\": \"iris\",\n  \"íris\": \"íris\",\n  \"irlanda\": \"irland\",\n  \"irlandês\": \"irlandês\",\n  \"irma\": \"irma\",\n  \"irmã\": \"irmã\",\n  \"irmão\": \"irmã\",\n  \"irmãos\": \"irmã\",\n  \"irmãs\": \"irmãs\",\n  \"ironia\": \"iron\",\n  \"ironias\": \"iron\",\n  \"irônica\": \"irôn\",\n  \"ironicamente\": \"iron\",\n  \"irônico\": \"irôn\",\n  \"ironiza\": \"ironiz\",\n  \"ironizou\": \"ironiz\",\n  \"irradiando\": \"irradi\",\n  \"irradiar\": \"irradi\",\n  \"irreais\": \"irre\",\n  \"irreconhecível\": \"irreconhec\",\n  \"irredutíveis\": \"irredutív\",\n  \"irrefutáveis\": \"irrefut\",\n  \"irregular\": \"irregul\",\n  \"irregulares\": \"irregul\",\n  \"irregularidade\": \"irregular\",\n  \"irregularidades\": \"irregular\",\n  \"irregularmente\": \"irregular\",\n  \"irrelevante\": \"irrelev\",\n  \"irrelevantes\": \"irrelev\",\n  \"irreligioso\": \"irreligi\",\n  \"irreparável\": \"irrepar\",\n  \"irrepreensível\": \"irrepreens\",\n  \"irrequieto\": \"irrequiet\",\n  \"irresistíveis\": \"irresistív\",\n  \"irresistível\": \"irresist\",\n  \"irresponsáveis\": \"irrespons\",\n  \"irresponsável\": \"irrespons\",\n  \"irreverência\": \"irreverent\",\n  \"irreverente\": \"irreverent\",\n  \"irreverentes\": \"irreverent\",\n  \"irreversível\": \"irrevers\",\n  \"irrigação\": \"irrig\",\n  \"irrigada\": \"irrig\",\n  \"irrisória\": \"irrisór\",\n  \"irrisório\": \"irrisóri\",\n  \"irrita\": \"irrit\",\n  \"irritabilidade\": \"irrit\",\n  \"irritação\": \"irrit\",\n  \"irritada\": \"irrit\",\n  \"irritadiças\": \"irritadic\",\n  \"irritado\": \"irrit\",\n  \"irritam\": \"irrit\",\n  \"irritando\": \"irrit\",\n  \"irritante\": \"irrit\",\n  \"irritava\": \"irrit\",\n  \"irrito\": \"irrit\",\n  \"irritou\": \"irrit\",\n  \"irrompeu\": \"irromp\",\n  \"irving\": \"irving\",\n  \"is\": \"is\",\n  \"isa\": \"isa\",\n  \"isabel\": \"isabel\",\n  \"isabela\": \"isabel\",\n  \"isabella\": \"isabell\",\n  \"isabelle\": \"isabell\",\n  \"isaías\": \"isaí\",\n  \"isaura\": \"isaur\",\n  \"isca\": \"isca\",\n  \"ischo\": \"ischo\",\n  \"isdn\": \"isdn\",\n  \"isenção\": \"isençã\",\n  \"isenta\": \"isent\",\n  \"ísis\": \"ísis\",\n  \"islâmica\": \"islâm\",\n  \"islamismo\": \"islam\",\n  \"ismael\": \"ismael\",\n  \"iso\": \"iso\",\n  \"isola\": \"isol\",\n  \"isolada\": \"isol\",\n  \"isoladamente\": \"isol\",\n  \"isoladas\": \"isol\",\n  \"isolado\": \"isol\",\n  \"isolados\": \"isol\",\n  \"isolamento\": \"isol\",\n  \"isolando\": \"isol\",\n  \"isolar\": \"isol\",\n  \"isolda\": \"isold\",\n  \"isomeride\": \"isomerid\",\n  \"israel\": \"israel\",\n  \"israelense\": \"israelens\",\n  \"israelenses\": \"israelens\",\n  \"israelita\": \"israelit\",\n  \"isso\": \"isso\",\n  \"istambul\": \"istambul\",\n  \"isto\": \"isto\",\n  \"istoe\": \"isto\",\n  \"istoé\": \"isto\",\n  \"istván\": \"istván\",\n  \"it\": \"it\",\n  \"itabira\": \"itab\",\n  \"itacarambi\": \"itacaramb\",\n  \"itacoatiara\": \"itacoati\",\n  \"itaim\": \"itaim\",\n  \"itaipu\": \"itaipu\",\n  \"itália\": \"itál\",\n  \"italiana\": \"italian\",\n  \"italianas\": \"italian\",\n  \"italiano\": \"italian\",\n  \"italianos\": \"italian\",\n  \"ítalo\": \"ítal\",\n  \"itamar\": \"itam\",\n  \"itamaraty\": \"itamaraty\",\n  \"itanhaém\": \"itanhaém\",\n  \"itapemirim\": \"itapemirim\",\n  \"itapetininga\": \"itapetining\",\n  \"itapipoca\": \"itapipoc\",\n  \"itapoan\": \"itapoan\",\n  \"itaporã\": \"itaporã\",\n  \"itatiba\": \"itatib\",\n  \"itaú\": \"itaú\",\n  \"itautec\": \"itautec\",\n  \"item\": \"item\",\n  \"itens\": \"itens\",\n  \"ítens\": \"ítens\",\n  \"itinerantes\": \"itiner\",\n  \"itr\": \"itr\",\n  \"itu\": \"itu\",\n  \"iva\": \"iva\",\n  \"ivan\": \"ivan\",\n  \"ivani\": \"ivan\",\n  \"ivanilda\": \"ivanild\",\n  \"ivens\": \"ivens\",\n  \"iversen\": \"iversen\",\n  \"ivo\": \"ivo\",\n  \"ivone\": \"ivon\",\n  \"ivonete\": \"ivonet\",\n  \"ivy\": \"ivy\",\n  \"ix\": \"ix\",\n  \"iya\": \"iya\",\n  \"izabel\": \"izabel\",\n  \"izabela\": \"izabel\",\n  \"izalco\": \"izalc\",\n  \"izolete\": \"izolet\",\n  \"j\": \"j\",\n  \"já\": \"já\",\n  \"jabaquara\": \"jabaqu\",\n  \"jabás\": \"jabás\",\n  \"jabor\": \"jabor\",\n  \"jaboulet\": \"jaboulet\",\n  \"jabuticabal\": \"jabuticabal\",\n  \"jabuticabeira\": \"jabuticabeir\",\n  \"jaçanã\": \"jaçanã\",\n  \"jacaré\": \"jacar\",\n  \"jacareí\": \"jacar\",\n  \"jacarepaguá\": \"jacarepagu\",\n  \"jacira\": \"jac\",\n  \"jack\": \"jack\",\n  \"jackie\": \"jacki\",\n  \"jacks\": \"jacks\",\n  \"jackson\": \"jackson\",\n  \"jacksonville\": \"jacksonvill\",\n  \"jacó\": \"jac\",\n  \"jacob\": \"jacob\",\n  \"jacobinos\": \"jacobin\",\n  \"jacqueline\": \"jacquelin\",\n  \"jacques\": \"jacqu\",\n  \"jáder\": \"jád\",\n  \"jaffa\": \"jaff\",\n  \"jagger\": \"jagg\",\n  \"jaguar\": \"jagu\",\n  \"jaguaribe\": \"jaguarib\",\n  \"jaguariúna\": \"jaguariún\",\n  \"jaguatirica\": \"jaguatir\",\n  \"jagunço\": \"jagunc\",\n  \"jah\": \"jah\",\n  \"jaicós\": \"jaicós\",\n  \"jaime\": \"jaim\",\n  \"jair\": \"jair\",\n  \"jairo\": \"jair\",\n  \"jakku\": \"jakku\",\n  \"jamaica\": \"jamaic\",\n  \"jamais\": \"jam\",\n  \"jambu\": \"jambu\",\n  \"jamelão\": \"jamelã\",\n  \"james\": \"jam\",\n  \"janailma\": \"janailm\",\n  \"jancsó\": \"jancs\",\n  \"jandira\": \"jand\",\n  \"jane\": \"jan\",\n  \"janeiro\": \"janeir\",\n  \"janela\": \"janel\",\n  \"janelas\": \"janel\",\n  \"jangadeiros\": \"jangadeir\",\n  \"jânia\": \"jân\",\n  \"janice\": \"janic\",\n  \"janine\": \"janin\",\n  \"jânio\": \"jâni\",\n  \"jansen\": \"jansen\",\n  \"jantamos\": \"jant\",\n  \"jantar\": \"jant\",\n  \"jantares\": \"jant\",\n  \"jantava\": \"jant\",\n  \"januária\": \"január\",\n  \"japão\": \"japã\",\n  \"japonês\": \"japonês\",\n  \"japonesa\": \"japones\",\n  \"japonesas\": \"japones\",\n  \"japoneses\": \"japones\",\n  \"jaqueira\": \"jaqueir\",\n  \"jaqueline\": \"jaquelin\",\n  \"jaqueta\": \"jaquet\",\n  \"jaquetas\": \"jaquet\",\n  \"jaraguá\": \"jaragu\",\n  \"jaraguari\": \"jaraguar\",\n  \"jararaca\": \"jararac\",\n  \"jararacas\": \"jararac\",\n  \"jarbas\": \"jarb\",\n  \"jardim\": \"jardim\",\n  \"jardineiros\": \"jardineir\",\n  \"jardins\": \"jardins\",\n  \"jares\": \"jar\",\n  \"jargão\": \"jargã\",\n  \"jarras\": \"jarr\",\n  \"jasim\": \"jasim\",\n  \"jatene\": \"jaten\",\n  \"játinha\": \"játinh\",\n  \"jatinho\": \"jatinh\",\n  \"jatinhos\": \"jatinh\",\n  \"jato\": \"jat\",\n  \"jatos\": \"jat\",\n  \"java\": \"jav\",\n  \"javier\": \"javi\",\n  \"jayme\": \"jaym\",\n  \"jazadji\": \"jazadj\",\n  \"jazem\": \"jaz\",\n  \"jazidas\": \"jaz\",\n  \"jazigo\": \"jazig\",\n  \"jazz\": \"jazz\",\n  \"jazzmania\": \"jazzman\",\n  \"jb\": \"jb\",\n  \"jean\": \"jean\",\n  \"jeanne\": \"jeann\",\n  \"jeans\": \"jeans\",\n  \"jecimar\": \"jecim\",\n  \"jeep\": \"jeep\",\n  \"jeff\": \"jeff\",\n  \"jefferson\": \"jefferson\",\n  \"jeffrey\": \"jeffrey\",\n  \"jegue\": \"jeg\",\n  \"jeitão\": \"jeitã\",\n  \"jeitinho\": \"jeitinh\",\n  \"jeito\": \"jeit\",\n  \"jenailto\": \"jenailt\",\n  \"jenipapo\": \"jenipap\",\n  \"jenkins\": \"jenkins\",\n  \"jennings\": \"jennings\",\n  \"jepson\": \"jepson\",\n  \"jequitimar\": \"jequitim\",\n  \"jequitinhonha\": \"jequitinhonh\",\n  \"jereissati\": \"jereissat\",\n  \"jeremy\": \"jeremy\",\n  \"jericó\": \"jeric\",\n  \"jersey\": \"jersey\",\n  \"jerusalém\": \"jerusalém\",\n  \"jesse\": \"jess\",\n  \"jesuíta\": \"jesuít\",\n  \"jesuítica\": \"jesuít\",\n  \"jesus\": \"jesus\",\n  \"jet\": \"jet\",\n  \"jheremias\": \"jherem\",\n  \"jiló\": \"jil\",\n  \"jim\": \"jim\",\n  \"jimenez\": \"jimenez\",\n  \"jimi\": \"jim\",\n  \"jimmy\": \"jimmy\",\n  \"jingles\": \"jingl\",\n  \"jipe\": \"jip\",\n  \"jipes\": \"jip\",\n  \"jk\": \"jk\",\n  \"jô\": \"jô\",\n  \"joalherias\": \"joalh\",\n  \"joana\": \"joan\",\n  \"joanna\": \"joann\",\n  \"joão\": \"joã\",\n  \"joaquim\": \"joaquim\",\n  \"joaquina\": \"joaquin\",\n  \"jobim\": \"jobim\",\n  \"jochen\": \"jochen\",\n  \"jodaciel\": \"jodaciel\",\n  \"jodie\": \"jodi\",\n  \"joe\": \"joe\",\n  \"joel\": \"joel\",\n  \"joelho\": \"joelh\",\n  \"joelhos\": \"joelh\",\n  \"jofre\": \"jofr\",\n  \"joga\": \"jog\",\n  \"jogada\": \"jog\",\n  \"jogadas\": \"jog\",\n  \"jogadinhas\": \"jogadinh\",\n  \"jogado\": \"jog\",\n  \"jogador\": \"jogador\",\n  \"jogadora\": \"jogador\",\n  \"jogadoras\": \"jogador\",\n  \"jogadores\": \"jogador\",\n  \"jogados\": \"jog\",\n  \"jogam\": \"jog\",\n  \"jogando\": \"jog\",\n  \"jogar\": \"jog\",\n  \"jogaram\": \"jog\",\n  \"jogaria\": \"jog\",\n  \"jogatina\": \"jogatin\",\n  \"jogava\": \"jog\",\n  \"jogo\": \"jog\",\n  \"jogos\": \"jog\",\n  \"jogou\": \"jog\",\n  \"joguei\": \"jogu\",\n  \"joguem\": \"jogu\",\n  \"johannes\": \"johann\",\n  \"john\": \"john\",\n  \"johnnie\": \"johnni\",\n  \"johnny\": \"johnny\",\n  \"johns\": \"johns\",\n  \"johnson\": \"johnson\",\n  \"johnstone\": \"johnston\",\n  \"jóia\": \"jói\",\n  \"jóias\": \"jói\",\n  \"joint\": \"joint\",\n  \"joinville\": \"joinvill\",\n  \"jonas\": \"jon\",\n  \"jonathan\": \"jonathan\",\n  \"jônathas\": \"jônath\",\n  \"jones\": \"jon\",\n  \"jong\": \"jong\",\n  \"jongo\": \"jong\",\n  \"joni\": \"jon\",\n  \"jônica\": \"jônic\",\n  \"jopi\": \"jop\",\n  \"jor\": \"jor\",\n  \"jordan\": \"jordan\",\n  \"jordanianos\": \"jordanian\",\n  \"jordão\": \"jordã\",\n  \"jorge\": \"jorg\",\n  \"jorgina\": \"jorgin\",\n  \"jornada\": \"jorn\",\n  \"jornadas\": \"jorn\",\n  \"jornais\": \"jorn\",\n  \"jornal\": \"jornal\",\n  \"jornaleiro\": \"jornaleir\",\n  \"jornalismo\": \"jornal\",\n  \"jornalista\": \"jornal\",\n  \"jornalistas\": \"jornal\",\n  \"jornalística\": \"jornalíst\",\n  \"jornalzinho\": \"jornalzinh\",\n  \"josaphat\": \"josaphat\",\n  \"josé\": \"jos\",\n  \"josefa\": \"josef\",\n  \"josefina\": \"josefin\",\n  \"joseph\": \"joseph\",\n  \"joshua\": \"joshu\",\n  \"jospin\": \"jospin\",\n  \"josué\": \"josu\",\n  \"jouglas\": \"jougl\",\n  \"journal\": \"journal\",\n  \"jova\": \"jov\",\n  \"jovelina\": \"jovelin\",\n  \"jovem\": \"jov\",\n  \"jovens\": \"jovens\",\n  \"jovenzinhas\": \"jovenzinh\",\n  \"jovial\": \"jovial\",\n  \"jovino\": \"jovin\",\n  \"joy\": \"joy\",\n  \"joyce\": \"joyc\",\n  \"jpx\": \"jpx\",\n  \"jr\": \"jr\",\n  \"juan\": \"juan\",\n  \"juarez\": \"juarez\",\n  \"juazeiro\": \"juazeir\",\n  \"jubarte\": \"jubart\",\n  \"juberli\": \"juberl\",\n  \"júbilo\": \"júbil\",\n  \"juca\": \"juc\",\n  \"jucélia\": \"jucél\",\n  \"judaica\": \"judaic\",\n  \"judaicas\": \"judaic\",\n  \"judaismo\": \"judaism\",\n  \"judaísmo\": \"judaísm\",\n  \"judéia\": \"jud\",\n  \"judeu\": \"jud\",\n  \"judeus\": \"judeus\",\n  \"judia\": \"jud\",\n  \"judias\": \"jud\",\n  \"judiciais\": \"judic\",\n  \"judicial\": \"judicial\",\n  \"judiciário\": \"judiciári\",\n  \"judith\": \"judith\",\n  \"jugo\": \"jug\",\n  \"jugular\": \"jugul\",\n  \"juilliard\": \"juilliard\",\n  \"juiz\": \"juiz\",\n  \"juíza\": \"juíz\",\n  \"juízes\": \"juíz\",\n  \"juízo\": \"juíz\",\n  \"julga\": \"julg\",\n  \"julgá\": \"julg\",\n  \"julgada\": \"julg\",\n  \"julgado\": \"julg\",\n  \"julgados\": \"julg\",\n  \"julgam\": \"julg\",\n  \"julgamento\": \"julgament\",\n  \"julgamentos\": \"julgament\",\n  \"julgando\": \"julg\",\n  \"julgar\": \"julg\",\n  \"julgaria\": \"julg\",\n  \"julgava\": \"julg\",\n  \"julgavam\": \"julg\",\n  \"julgo\": \"julg\",\n  \"julgou\": \"julg\",\n  \"julguei\": \"julgu\",\n  \"julho\": \"julh\",\n  \"julia\": \"jul\",\n  \"júlia\": \"júl\",\n  \"juliana\": \"julian\",\n  \"julianne\": \"juliann\",\n  \"juliano\": \"julian\",\n  \"julião\": \"juliã\",\n  \"julienne\": \"julienn\",\n  \"julieta\": \"juliet\",\n  \"julietas\": \"juliet\",\n  \"juliette\": \"juliett\",\n  \"julio\": \"juli\",\n  \"júlio\": \"júli\",\n  \"julita\": \"julit\",\n  \"jum\": \"jum\",\n  \"jumbo\": \"jumb\",\n  \"jumentos\": \"jument\",\n  \"jun\": \"jun\",\n  \"jundiaí\": \"jundia\",\n  \"jung\": \"jung\",\n  \"jungmann\": \"jungmann\",\n  \"junguiana\": \"junguian\",\n  \"junguianos\": \"junguian\",\n  \"junho\": \"junh\",\n  \"juninas\": \"junin\",\n  \"juninho\": \"juninh\",\n  \"junior\": \"junior\",\n  \"júnior\": \"júnior\",\n  \"junk\": \"junk\",\n  \"junkie\": \"junki\",\n  \"junot\": \"junot\",\n  \"junqueira\": \"junqueir\",\n  \"junta\": \"junt\",\n  \"juntado\": \"junt\",\n  \"juntam\": \"junt\",\n  \"juntamente\": \"junt\",\n  \"juntamos\": \"junt\",\n  \"juntando\": \"junt\",\n  \"juntar\": \"junt\",\n  \"juntaram\": \"junt\",\n  \"juntariam\": \"junt\",\n  \"juntas\": \"junt\",\n  \"junte\": \"junt\",\n  \"juntei\": \"junt\",\n  \"junto\": \"junt\",\n  \"juntos\": \"junt\",\n  \"juntou\": \"junt\",\n  \"júpiter\": \"júpit\",\n  \"juppé\": \"jupp\",\n  \"jura\": \"jur\",\n  \"juracy\": \"juracy\",\n  \"jurada\": \"jur\",\n  \"jurado\": \"jur\",\n  \"jurados\": \"jur\",\n  \"juramento\": \"jurament\",\n  \"jurassic\": \"jurassic\",\n  \"jurava\": \"jur\",\n  \"júri\": \"júr\",\n  \"jurídica\": \"juríd\",\n  \"juridicamente\": \"jurid\",\n  \"jurídicas\": \"juríd\",\n  \"jurídico\": \"juríd\",\n  \"jurídicos\": \"juríd\",\n  \"júris\": \"júr\",\n  \"jurisprudência\": \"jurisprudent\",\n  \"jurista\": \"jurist\",\n  \"juristas\": \"jurist\",\n  \"juro\": \"jur\",\n  \"juros\": \"jur\",\n  \"jurou\": \"jur\",\n  \"juruci\": \"juruc\",\n  \"jus\": \"jus\",\n  \"juscilene\": \"juscilen\",\n  \"jussara\": \"juss\",\n  \"just\": \"just\",\n  \"justa\": \"just\",\n  \"justamente\": \"just\",\n  \"justas\": \"just\",\n  \"justiça\": \"justic\",\n  \"justifica\": \"justif\",\n  \"justificada\": \"justific\",\n  \"justificado\": \"justific\",\n  \"justificados\": \"justific\",\n  \"justificam\": \"justific\",\n  \"justificar\": \"justific\",\n  \"justificaria\": \"justific\",\n  \"justificativa\": \"justific\",\n  \"justificativas\": \"justific\",\n  \"justificáveis\": \"justific\",\n  \"justificou\": \"justific\",\n  \"justina\": \"justin\",\n  \"justinha\": \"justinh\",\n  \"justino\": \"justin\",\n  \"justo\": \"just\",\n  \"justus\": \"justus\",\n  \"juvenil\": \"juvenil\",\n  \"juvenis\": \"juven\",\n  \"juventude\": \"juventud\",\n  \"k\": \"k\",\n  \"kabala\": \"kabal\",\n  \"kadett\": \"kadett\",\n  \"kafelnikov\": \"kafelnikov\",\n  \"kafka\": \"kafk\",\n  \"kafkiana\": \"kafkian\",\n  \"kai\": \"kai\",\n  \"kalachackra\": \"kalachackr\",\n  \"kalil\": \"kalil\",\n  \"kalilo\": \"kalil\",\n  \"kalina\": \"kalin\",\n  \"kalume\": \"kalum\",\n  \"kandir\": \"kand\",\n  \"karam\": \"kar\",\n  \"karan\": \"karan\",\n  \"karen\": \"karen\",\n  \"karina\": \"karin\",\n  \"karinas\": \"karin\",\n  \"karl\": \"karl\",\n  \"karla\": \"karl\",\n  \"karmali\": \"karmal\",\n  \"karman\": \"karman\",\n  \"karnak\": \"karnak\",\n  \"karni\": \"karn\",\n  \"karolinska\": \"karolinsk\",\n  \"kart\": \"kart\",\n  \"kasparov\": \"kasparov\",\n  \"katia\": \"kat\",\n  \"kátia\": \"kát\",\n  \"katiana\": \"katian\",\n  \"kauai\": \"kaua\",\n  \"kay\": \"kay\",\n  \"kbytes\": \"kbytes\",\n  \"kelly\": \"kelly\",\n  \"kelvin\": \"kelvin\",\n  \"kemal\": \"kemal\",\n  \"kennedy\": \"kennedy\",\n  \"kenoma\": \"kenom\",\n  \"kent\": \"kent\",\n  \"kenzo\": \"kenz\",\n  \"kepler\": \"kepl\",\n  \"kerly\": \"kerly\",\n  \"ketchup\": \"ketchup\",\n  \"kettering\": \"kettering\",\n  \"kfouri\": \"kfour\",\n  \"kg\": \"kg\",\n  \"khamis\": \"kham\",\n  \"khmer\": \"khmer\",\n  \"khrunichev\": \"khrunichev\",\n  \"kiberon\": \"kiberon\",\n  \"kid\": \"kid\",\n  \"kids\": \"kids\",\n  \"kieffer\": \"kieff\",\n  \"kihara\": \"kih\",\n  \"kilimanjaro\": \"kilimanjar\",\n  \"kim\": \"kim\",\n  \"kingdom\": \"kingdom\",\n  \"kingsman\": \"kingsman\",\n  \"kinjô\": \"kinjô\",\n  \"kinnaur\": \"kinnaur\",\n  \"kinski\": \"kinsk\",\n  \"kipling\": \"kipling\",\n  \"kiss\": \"kiss\",\n  \"kisser\": \"kiss\",\n  \"kissinger\": \"kissing\",\n  \"kissner\": \"kissn\",\n  \"kits\": \"kits\",\n  \"kívia\": \"kív\",\n  \"klaus\": \"klaus\",\n  \"kléber\": \"kléb\",\n  \"klein\": \"klein\",\n  \"kleinübing\": \"kleinübing\",\n  \"klintowitz\": \"klintowitz\",\n  \"klm\": \"klm\",\n  \"km\": \"km\",\n  \"knol\": \"knol\",\n  \"knoll\": \"knoll\",\n  \"know\": \"know\",\n  \"knox\": \"knox\",\n  \"koch\": \"koch\",\n  \"kohl\": \"kohl\",\n  \"kohoutek\": \"kohoutek\",\n  \"kombi\": \"komb\",\n  \"kong\": \"kong\",\n  \"korda\": \"kord\",\n  \"korn\": \"korn\",\n  \"kosmos\": \"kosm\",\n  \"kowloon\": \"kowloon\",\n  \"kozo\": \"koz\",\n  \"krafer\": \"kraf\",\n  \"kraft\": \"kraft\",\n  \"kramer\": \"kram\",\n  \"krause\": \"kraus\",\n  \"krichanã\": \"krichanã\",\n  \"kruchev\": \"kruchev\",\n  \"kruse\": \"krus\",\n  \"krymchantowski\": \"krymchantowsk\",\n  \"ksyvickis\": \"ksyvick\",\n  \"kts\": \"kts\",\n  \"kuala\": \"kual\",\n  \"kubitscheck\": \"kubitscheck\",\n  \"kuerten\": \"kuerten\",\n  \"kuljis\": \"kulj\",\n  \"kullu\": \"kullu\",\n  \"kung\": \"kung\",\n  \"kupfer\": \"kupf\",\n  \"kür\": \"kür\",\n  \"kurosawa\": \"kurosaw\",\n  \"kurt\": \"kurt\",\n  \"kuryakanys\": \"kuryakanys\",\n  \"kuster\": \"kust\",\n  \"l\": \"l\",\n  \"la\": \"la\",\n  \"lá\": \"lá\",\n  \"lã\": \"lã\",\n  \"label\": \"label\",\n  \"lábia\": \"láb\",\n  \"labial\": \"labial\",\n  \"lábios\": \"lábi\",\n  \"labirintite\": \"labirintit\",\n  \"labirinto\": \"labirint\",\n  \"lable\": \"labl\",\n  \"laboratoriais\": \"laboratori\",\n  \"laboratório\": \"laboratóri\",\n  \"laboratórios\": \"laboratóri\",\n  \"laboratory\": \"laboratory\",\n  \"labore\": \"labor\",\n  \"lacerda\": \"lacerd\",\n  \"lacônico\": \"lacôn\",\n  \"laços\": \"lac\",\n  \"lacração\": \"lacraçã\",\n  \"lacrado\": \"lacr\",\n  \"lacrimais\": \"lacrim\",\n  \"lacrimal\": \"lacrimal\",\n  \"lacroix\": \"lacroix\",\n  \"lacta\": \"lact\",\n  \"lacuna\": \"lacun\",\n  \"lacunas\": \"lacun\",\n  \"ladainha\": \"ladainh\",\n  \"ladak\": \"ladak\",\n  \"ladakh\": \"ladakh\",\n  \"ladário\": \"ladári\",\n  \"ladeada\": \"lad\",\n  \"ladeado\": \"lad\",\n  \"ladeira\": \"ladeir\",\n  \"lado\": \"lad\",\n  \"lados\": \"lad\",\n  \"ladrão\": \"ladrã\",\n  \"ladrões\": \"ladrõ\",\n  \"lady\": \"lady\",\n  \"laender\": \"laend\",\n  \"lafayette\": \"lafayett\",\n  \"lafemina\": \"lafemin\",\n  \"lafon\": \"lafon\",\n  \"lagartixa\": \"lagartix\",\n  \"lagarto\": \"lagart\",\n  \"lagartos\": \"lagart\",\n  \"lago\": \"lag\",\n  \"lagoa\": \"lago\",\n  \"lagoas\": \"lago\",\n  \"lagos\": \"lag\",\n  \"lágrimas\": \"lágrim\",\n  \"lahaul\": \"lahaul\",\n  \"laia\": \"lai\",\n  \"lair\": \"lair\",\n  \"laissez\": \"laissez\",\n  \"lake\": \"lak\",\n  \"lama\": \"lam\",\n  \"lamaísmo\": \"lamaísm\",\n  \"lamarca\": \"lamarc\",\n  \"lambaeróbica\": \"lambaerób\",\n  \"lambendo\": \"lamb\",\n  \"lamber\": \"lamb\",\n  \"lamborghini\": \"lamborghin\",\n  \"lambuzadas\": \"lambuz\",\n  \"lameira\": \"lameir\",\n  \"lamenta\": \"lament\",\n  \"lamentações\": \"lament\",\n  \"lamentam\": \"lament\",\n  \"lamentava\": \"lament\",\n  \"lamentável\": \"lament\",\n  \"lamento\": \"lament\",\n  \"lamentou\": \"lament\",\n  \"lâmina\": \"lâmin\",\n  \"laminados\": \"lamin\",\n  \"lamm\": \"lamm\",\n  \"lâmpada\": \"lâmp\",\n  \"lâmpadas\": \"lâmp\",\n  \"lampião\": \"lampiã\",\n  \"lampiões\": \"lampiõ\",\n  \"lampreia\": \"lampr\",\n  \"lampréia\": \"lampr\",\n  \"lamu\": \"lamu\",\n  \"lamúria\": \"lamúr\",\n  \"lamurioso\": \"lamuri\",\n  \"lan\": \"lan\",\n  \"lança\": \"lanc\",\n  \"lançá\": \"lanc\",\n  \"lançada\": \"lanc\",\n  \"lançadas\": \"lanc\",\n  \"lançado\": \"lanc\",\n  \"lançados\": \"lanc\",\n  \"lançam\": \"lanc\",\n  \"lançamento\": \"lançament\",\n  \"lançamentos\": \"lançament\",\n  \"lançando\": \"lanc\",\n  \"lançar\": \"lanc\",\n  \"lançará\": \"lanc\",\n  \"lançaram\": \"lanc\",\n  \"lancashire\": \"lancashir\",\n  \"lançava\": \"lanc\",\n  \"lançavam\": \"lanc\",\n  \"lance\": \"lanc\",\n  \"lancelotti\": \"lancelott\",\n  \"lances\": \"lanc\",\n  \"lancha\": \"lanch\",\n  \"lanchar\": \"lanch\",\n  \"lanchas\": \"lanch\",\n  \"lanche\": \"lanch\",\n  \"lanches\": \"lanch\",\n  \"lanchonete\": \"lanchonet\",\n  \"lanchonetes\": \"lanchonet\",\n  \"lancôme\": \"lancôm\",\n  \"lançou\": \"lanc\",\n  \"land\": \"land\",\n  \"landim\": \"landim\",\n  \"lane\": \"lan\",\n  \"lanterna\": \"lantern\",\n  \"lantier\": \"lanti\",\n  \"lapa\": \"lap\",\n  \"lapidar\": \"lapid\",\n  \"lapidaram\": \"lapid\",\n  \"lapierre\": \"lapierr\",\n  \"lápis\": \"láp\",\n  \"laptop\": \"laptop\",\n  \"laqueadura\": \"laqueadur\",\n  \"lar\": \"lar\",\n  \"lara\": \"lar\",\n  \"laranja\": \"laranj\",\n  \"laranjas\": \"laranj\",\n  \"laranjeira\": \"laranjeir\",\n  \"laranjeiras\": \"laranjeir\",\n  \"lares\": \"lar\",\n  \"larga\": \"larg\",\n  \"largada\": \"larg\",\n  \"largadas\": \"larg\",\n  \"largamente\": \"larg\",\n  \"largamos\": \"larg\",\n  \"largar\": \"larg\",\n  \"largaria\": \"larg\",\n  \"largas\": \"larg\",\n  \"largava\": \"larg\",\n  \"largo\": \"larg\",\n  \"largou\": \"larg\",\n  \"larguei\": \"largu\",\n  \"largura\": \"largur\",\n  \"lari\": \"lar\",\n  \"larissa\": \"lariss\",\n  \"larry\": \"larry\",\n  \"larsson\": \"larsson\",\n  \"las\": \"las\",\n  \"lascado\": \"lasc\",\n  \"laser\": \"las\",\n  \"lastro\": \"lastr\",\n  \"laszlo\": \"laszl\",\n  \"lata\": \"lat\",\n  \"lataria\": \"lat\",\n  \"latas\": \"lat\",\n  \"lateral\": \"lateral\",\n  \"látex\": \"látex\",\n  \"laticínio\": \"laticíni\",\n  \"laticínios\": \"laticíni\",\n  \"latifúndio\": \"latifúndi\",\n  \"latim\": \"latim\",\n  \"latina\": \"latin\",\n  \"latinas\": \"latin\",\n  \"latino\": \"latin\",\n  \"latinos\": \"latin\",\n  \"latitude\": \"latitud\",\n  \"latorraca\": \"latorrac\",\n  \"latrocínio\": \"latrocíni\",\n  \"lattari\": \"lattar\",\n  \"lauda\": \"laud\",\n  \"laudas\": \"laud\",\n  \"lauder\": \"laud\",\n  \"lauderdale\": \"lauderdal\",\n  \"laudo\": \"laud\",\n  \"laudos\": \"laud\",\n  \"laura\": \"laur\",\n  \"lauren\": \"lauren\",\n  \"laurence\": \"laurenc\",\n  \"lauro\": \"laur\",\n  \"lava\": \"lav\",\n  \"lavabo\": \"lavab\",\n  \"lavada\": \"lav\",\n  \"lavadeira\": \"lavadeir\",\n  \"lavado\": \"lav\",\n  \"lavadora\": \"lavador\",\n  \"lavagem\": \"lavag\",\n  \"lavagnoli\": \"lavagnol\",\n  \"lavam\": \"lav\",\n  \"lavanda\": \"lavand\",\n  \"lavanderia\": \"lavand\",\n  \"lavando\": \"lav\",\n  \"lavar\": \"lav\",\n  \"lavariam\": \"lav\",\n  \"lavigne\": \"lavign\",\n  \"lavínia\": \"lavín\",\n  \"lavo\": \"lav\",\n  \"lavou\": \"lav\",\n  \"lavoura\": \"lavour\",\n  \"lavouras\": \"lavour\",\n  \"lavra\": \"lavr\",\n  \"lavrada\": \"lavr\",\n  \"lavradora\": \"lavrador\",\n  \"lavrar\": \"lavr\",\n  \"lavrenti\": \"lavrent\",\n  \"lawrence\": \"lawrenc\",\n  \"layers\": \"layers\",\n  \"lázaro\": \"lázar\",\n  \"lazer\": \"laz\",\n  \"lazutkin\": \"lazutkin\",\n  \"le\": \"le\",\n  \"lê\": \"lê\",\n  \"lea\": \"lea\",\n  \"leah\": \"leah\",\n  \"leahy\": \"leahy\",\n  \"leais\": \"lea\",\n  \"leal\": \"leal\",\n  \"lealdade\": \"lealdad\",\n  \"leandra\": \"leandr\",\n  \"leandro\": \"leandr\",\n  \"leão\": \"leã\",\n  \"learning\": \"learning\",\n  \"leasing\": \"leasing\",\n  \"leciona\": \"lecion\",\n  \"lecionou\": \"lecion\",\n  \"leco\": \"lec\",\n  \"lecran\": \"lecran\",\n  \"leda\": \"led\",\n  \"lee\": \"lee\",\n  \"lêem\": \"lêem\",\n  \"legado\": \"leg\",\n  \"legais\": \"leg\",\n  \"legal\": \"legal\",\n  \"legalidade\": \"legal\",\n  \"legalizam\": \"legaliz\",\n  \"legalizar\": \"legaliz\",\n  \"legalmente\": \"legal\",\n  \"legará\": \"leg\",\n  \"legenda\": \"legend\",\n  \"legendário\": \"legendári\",\n  \"legião\": \"legiã\",\n  \"legiões\": \"legiõ\",\n  \"legislação\": \"legisl\",\n  \"legisladores\": \"legisl\",\n  \"legislando\": \"legisl\",\n  \"legislar\": \"legisl\",\n  \"legislativa\": \"legisl\",\n  \"legislativas\": \"legisl\",\n  \"legislativo\": \"legisl\",\n  \"legista\": \"legist\",\n  \"legistas\": \"legist\",\n  \"legítima\": \"legítim\",\n  \"legitimação\": \"legitim\",\n  \"legitimados\": \"legitim\",\n  \"legitimam\": \"legitim\",\n  \"legitimar\": \"legitim\",\n  \"legitimidade\": \"legitim\",\n  \"legítimo\": \"legítim\",\n  \"legítimos\": \"legít\",\n  \"legumes\": \"legum\",\n  \"lei\": \"lei\",\n  \"leia\": \"lei\",\n  \"leide\": \"leid\",\n  \"leidivânia\": \"leidivân\",\n  \"leiga\": \"leig\",\n  \"leigh\": \"leigh\",\n  \"leigo\": \"leig\",\n  \"leigos\": \"leig\",\n  \"leila\": \"leil\",\n  \"leilão\": \"leilã\",\n  \"leiloá\": \"leilo\",\n  \"leiloado\": \"leilo\",\n  \"leiloados\": \"leilo\",\n  \"leiloeiro\": \"leiloeir\",\n  \"leio\": \"lei\",\n  \"leis\": \"leis\",\n  \"leitão\": \"leitã\",\n  \"leite\": \"leit\",\n  \"leiteiro\": \"leiteir\",\n  \"leito\": \"leit\",\n  \"leitor\": \"leitor\",\n  \"leitores\": \"leitor\",\n  \"leitos\": \"leit\",\n  \"leitura\": \"leitur\",\n  \"leituras\": \"leitur\",\n  \"lélio\": \"léli\",\n  \"lellis\": \"lell\",\n  \"lema\": \"lem\",\n  \"lemann\": \"lemann\",\n  \"lembra\": \"lembr\",\n  \"lembrada\": \"lembr\",\n  \"lembradas\": \"lembr\",\n  \"lembrados\": \"lembr\",\n  \"lembram\": \"lembr\",\n  \"lembrança\": \"lembranc\",\n  \"lembranças\": \"lembranc\",\n  \"lembrando\": \"lembr\",\n  \"lembrar\": \"lembr\",\n  \"lembrava\": \"lembr\",\n  \"lembravam\": \"lembr\",\n  \"lembre\": \"lembr\",\n  \"lembremos\": \"lembr\",\n  \"lembrete\": \"lembret\",\n  \"lembro\": \"lembr\",\n  \"lembrou\": \"lembr\",\n  \"leme\": \"lem\",\n  \"lemgruber\": \"lemgrub\",\n  \"lemir\": \"lem\",\n  \"lemos\": \"lem\",\n  \"leñas\": \"leñ\",\n  \"lenço\": \"lenc\",\n  \"lençóis\": \"lençó\",\n  \"lenços\": \"lenc\",\n  \"lenda\": \"lend\",\n  \"lendária\": \"lendár\",\n  \"lendário\": \"lendári\",\n  \"lendas\": \"lend\",\n  \"lendl\": \"lendl\",\n  \"lendo\": \"lend\",\n  \"lenha\": \"lenh\",\n  \"leniente\": \"lenient\",\n  \"lenientes\": \"lenient\",\n  \"lenin\": \"lenin\",\n  \"lênin\": \"lênin\",\n  \"lenita\": \"lenit\",\n  \"lennon\": \"lennon\",\n  \"lens\": \"lens\",\n  \"lenta\": \"lent\",\n  \"lentamente\": \"lent\",\n  \"lentas\": \"lent\",\n  \"lente\": \"lent\",\n  \"lentes\": \"lent\",\n  \"lentidão\": \"lentidã\",\n  \"lentidões\": \"lentidõ\",\n  \"lentilha\": \"lentilh\",\n  \"lentilhas\": \"lentilh\",\n  \"lento\": \"lent\",\n  \"lentos\": \"lent\",\n  \"léo\": \"léo\",\n  \"leões\": \"leõ\",\n  \"leon\": \"leon\",\n  \"leonardo\": \"leonard\",\n  \"leonel\": \"leonel\",\n  \"leonor\": \"leonor\",\n  \"leopoldina\": \"leopoldin\",\n  \"leopoldo\": \"leopold\",\n  \"leopolldo\": \"leopolld\",\n  \"leporaci\": \"leporac\",\n  \"leptin\": \"leptin\",\n  \"leque\": \"lequ\",\n  \"ler\": \"ler\",\n  \"leram\": \"ler\",\n  \"lerner\": \"lern\",\n  \"les\": \"les\",\n  \"lesado\": \"les\",\n  \"lesados\": \"les\",\n  \"lesão\": \"lesã\",\n  \"lesar\": \"les\",\n  \"lesaram\": \"les\",\n  \"lesbian\": \"lesbian\",\n  \"lésbica\": \"lésbic\",\n  \"lésbicas\": \"lésbic\",\n  \"lesivo\": \"lesiv\",\n  \"leslie\": \"lesli\",\n  \"lesões\": \"lesõ\",\n  \"lesou\": \"les\",\n  \"lessa\": \"less\",\n  \"lesse\": \"less\",\n  \"leste\": \"lest\",\n  \"letais\": \"let\",\n  \"letal\": \"letal\",\n  \"letivo\": \"letiv\",\n  \"letra\": \"letr\",\n  \"letrado\": \"letr\",\n  \"letrados\": \"letr\",\n  \"letras\": \"letr\",\n  \"lettieri\": \"lettier\",\n  \"leu\": \"leu\",\n  \"leucemia\": \"leucem\",\n  \"leuiwyato\": \"leuiwyat\",\n  \"leuzzi\": \"leuzz\",\n  \"leva\": \"lev\",\n  \"levá\": \"lev\",\n  \"levada\": \"lev\",\n  \"levadas\": \"lev\",\n  \"levado\": \"lev\",\n  \"levados\": \"lev\",\n  \"levam\": \"lev\",\n  \"levamos\": \"lev\",\n  \"levando\": \"lev\",\n  \"levanta\": \"levant\",\n  \"levantada\": \"levant\",\n  \"levantadas\": \"levant\",\n  \"levantado\": \"levant\",\n  \"levantador\": \"levant\",\n  \"levantados\": \"levant\",\n  \"levantam\": \"levant\",\n  \"levantamento\": \"levant\",\n  \"levantamentos\": \"levant\",\n  \"levantamos\": \"levant\",\n  \"levantando\": \"levant\",\n  \"levantar\": \"levant\",\n  \"levantará\": \"levant\",\n  \"levantaram\": \"levant\",\n  \"levantaremos\": \"levant\",\n  \"levantava\": \"levant\",\n  \"levantavam\": \"levant\",\n  \"levante\": \"levant\",\n  \"levantei\": \"levant\",\n  \"levantou\": \"levant\",\n  \"levar\": \"lev\",\n  \"levará\": \"lev\",\n  \"levaram\": \"lev\",\n  \"levarão\": \"lev\",\n  \"levaria\": \"lev\",\n  \"levas\": \"lev\",\n  \"levava\": \"lev\",\n  \"levavam\": \"lev\",\n  \"leve\": \"lev\",\n  \"leveger\": \"leveg\",\n  \"levei\": \"lev\",\n  \"level\": \"level\",\n  \"levem\": \"lev\",\n  \"levemente\": \"levement\",\n  \"lever\": \"lev\",\n  \"leves\": \"lev\",\n  \"leveza\": \"levez\",\n  \"levi\": \"lev\",\n  \"levin\": \"levin\",\n  \"levitação\": \"levit\",\n  \"levitsky\": \"levitsky\",\n  \"levo\": \"lev\",\n  \"levou\": \"lev\",\n  \"levy\": \"levy\",\n  \"lewgoy\": \"lewgoy\",\n  \"lewis\": \"lew\",\n  \"lexotan\": \"lexotan\",\n  \"lexus\": \"lexus\",\n  \"lftms\": \"lftms\",\n  \"lhe\": \"lhe\",\n  \"lhes\": \"lhes\",\n  \"lhores\": \"lhor\",\n  \"li\": \"li\",\n  \"lia\": \"lia\",\n  \"liana\": \"lian\",\n  \"liane\": \"lian\",\n  \"lias\": \"lias\",\n  \"libanês\": \"libanês\",\n  \"libanesa\": \"libanes\",\n  \"libaneses\": \"libanes\",\n  \"libânio\": \"libâni\",\n  \"líbano\": \"líban\",\n  \"libé\": \"lib\",\n  \"libera\": \"lib\",\n  \"liberá\": \"lib\",\n  \"liberação\": \"liber\",\n  \"liberada\": \"liber\",\n  \"liberadas\": \"liber\",\n  \"liberado\": \"liber\",\n  \"liberados\": \"liber\",\n  \"liberais\": \"liber\",\n  \"liberal\": \"liberal\",\n  \"liberalidade\": \"liberal\",\n  \"liberalismo\": \"liberal\",\n  \"liberalização\": \"liberaliz\",\n  \"liberalizar\": \"liberaliz\",\n  \"liberalizem\": \"liberaliz\",\n  \"liberam\": \"lib\",\n  \"liberar\": \"liber\",\n  \"liberaria\": \"liber\",\n  \"liberasse\": \"liber\",\n  \"liberation\": \"liberation\",\n  \"liberato\": \"liberat\",\n  \"liberava\": \"liber\",\n  \"liberdade\": \"liberdad\",\n  \"liberdades\": \"liberdad\",\n  \"liberou\": \"liber\",\n  \"libertação\": \"libert\",\n  \"libertado\": \"libert\",\n  \"libertador\": \"libert\",\n  \"libertadora\": \"libert\",\n  \"libertados\": \"libert\",\n  \"libertar\": \"libert\",\n  \"libertário\": \"libertári\",\n  \"libertários\": \"libertári\",\n  \"libertos\": \"libert\",\n  \"libido\": \"lib\",\n  \"libra\": \"libr\",\n  \"libretto\": \"librett\",\n  \"lição\": \"liçã\",\n  \"licença\": \"licenc\",\n  \"licenças\": \"licenc\",\n  \"licenciado\": \"licenc\",\n  \"licenciamento\": \"licenc\",\n  \"licenciamentos\": \"licenc\",\n  \"licenciar\": \"licenc\",\n  \"liceu\": \"lic\",\n  \"licitação\": \"licit\",\n  \"licitações\": \"licit\",\n  \"lições\": \"liçõ\",\n  \"licores\": \"licor\",\n  \"lida\": \"lid\",\n  \"lidador\": \"lidador\",\n  \"lidam\": \"lid\",\n  \"lidar\": \"lid\",\n  \"lidarem\": \"lid\",\n  \"líder\": \"líd\",\n  \"lidera\": \"lid\",\n  \"liderado\": \"lider\",\n  \"liderados\": \"lider\",\n  \"lideram\": \"lid\",\n  \"liderança\": \"lideranc\",\n  \"lideranças\": \"lideranc\",\n  \"liderando\": \"lider\",\n  \"lidere\": \"lider\",\n  \"líderes\": \"líd\",\n  \"lidero\": \"lider\",\n  \"liderou\": \"lider\",\n  \"lídia\": \"líd\",\n  \"lido\": \"lid\",\n  \"life\": \"lif\",\n  \"liga\": \"lig\",\n  \"ligação\": \"ligaçã\",\n  \"ligações\": \"ligaçõ\",\n  \"ligada\": \"lig\",\n  \"ligadas\": \"lig\",\n  \"ligado\": \"lig\",\n  \"ligados\": \"lig\",\n  \"ligam\": \"lig\",\n  \"ligamos\": \"lig\",\n  \"ligando\": \"lig\",\n  \"ligar\": \"lig\",\n  \"ligará\": \"lig\",\n  \"ligaram\": \"lig\",\n  \"ligas\": \"lig\",\n  \"ligeira\": \"ligeir\",\n  \"ligeiramente\": \"ligeir\",\n  \"ligeiro\": \"ligeir\",\n  \"light\": \"light\",\n  \"ligia\": \"lig\",\n  \"ligo\": \"lig\",\n  \"ligou\": \"lig\",\n  \"ligue\": \"lig\",\n  \"liguei\": \"ligu\",\n  \"lília\": \"líl\",\n  \"lilian\": \"lilian\",\n  \"liliane\": \"lilian\",\n  \"lilith\": \"lilith\",\n  \"lilly\": \"lilly\",\n  \"lima\": \"lim\",\n  \"limão\": \"limã\",\n  \"limeira\": \"limeir\",\n  \"liminar\": \"limin\",\n  \"liminares\": \"limin\",\n  \"limita\": \"limit\",\n  \"limitação\": \"limit\",\n  \"limitações\": \"limit\",\n  \"limitada\": \"limit\",\n  \"limitado\": \"limit\",\n  \"limitam\": \"limit\",\n  \"limitar\": \"limit\",\n  \"limitaram\": \"limit\",\n  \"limitava\": \"limit\",\n  \"limitavam\": \"limit\",\n  \"limite\": \"limit\",\n  \"limited\": \"limited\",\n  \"limites\": \"limit\",\n  \"limito\": \"limit\",\n  \"limitou\": \"limit\",\n  \"limítrofe\": \"limítrof\",\n  \"limousine\": \"limousin\",\n  \"limousines\": \"limousin\",\n  \"limpa\": \"limp\",\n  \"limpar\": \"limp\",\n  \"limpei\": \"limp\",\n  \"limpeza\": \"limpez\",\n  \"límpidas\": \"límp\",\n  \"limpinhos\": \"limpinh\",\n  \"limpo\": \"limp\",\n  \"limpos\": \"limp\",\n  \"limusine\": \"limusin\",\n  \"limusines\": \"limusin\",\n  \"lin\": \"lin\",\n  \"linamara\": \"linam\",\n  \"lincon\": \"lincon\",\n  \"linda\": \"lind\",\n  \"lindas\": \"lind\",\n  \"lindeln\": \"lindeln\",\n  \"lindíssimo\": \"lindíssim\",\n  \"lindo\": \"lind\",\n  \"lindomar\": \"lindom\",\n  \"line\": \"lin\",\n  \"linear\": \"lin\",\n  \"lineu\": \"lin\",\n  \"linfática\": \"linfát\",\n  \"lingerie\": \"lingeri\",\n  \"lingeries\": \"lingeri\",\n  \"língua\": \"língu\",\n  \"linguagem\": \"linguag\",\n  \"linguajar\": \"linguaj\",\n  \"línguas\": \"língu\",\n  \"linguiça\": \"linguic\",\n  \"lingüiça\": \"lingüic\",\n  \"lingüística\": \"lingüíst\",\n  \"linha\": \"linh\",\n  \"linhagem\": \"linhag\",\n  \"linhares\": \"linh\",\n  \"linhas\": \"linh\",\n  \"linho\": \"linh\",\n  \"links\": \"links\",\n  \"lino\": \"lin\",\n  \"lins\": \"lins\",\n  \"lintas\": \"lint\",\n  \"liofiliação\": \"liofili\",\n  \"lionel\": \"lionel\",\n  \"lios\": \"lios\",\n  \"lipase\": \"lipas\",\n  \"lipoaspiração\": \"lipoaspir\",\n  \"lipotrópico\": \"lipotróp\",\n  \"lipp\": \"lipp\",\n  \"líquida\": \"líqu\",\n  \"liquidação\": \"liquid\",\n  \"liquidado\": \"liquid\",\n  \"liquidaram\": \"liquid\",\n  \"liquide\": \"liquid\",\n  \"liquidificador\": \"liquidific\",\n  \"líquido\": \"líqu\",\n  \"líquidos\": \"líqu\",\n  \"lírico\": \"líric\",\n  \"líricos\": \"líric\",\n  \"lirismo\": \"lirism\",\n  \"lisa\": \"lis\",\n  \"lisboa\": \"lisbo\",\n  \"lisérgica\": \"lisérg\",\n  \"lisi\": \"lis\",\n  \"lisonjeado\": \"lisonj\",\n  \"lispector\": \"lispector\",\n  \"lista\": \"list\",\n  \"listadas\": \"list\",\n  \"listados\": \"list\",\n  \"listas\": \"list\",\n  \"listou\": \"list\",\n  \"literal\": \"literal\",\n  \"literalmente\": \"literal\",\n  \"literária\": \"literár\",\n  \"literárias\": \"literár\",\n  \"literário\": \"literári\",\n  \"literatura\": \"literatur\",\n  \"litígios\": \"litígi\",\n  \"litoral\": \"litoral\",\n  \"litorânea\": \"litorân\",\n  \"litro\": \"litr\",\n  \"litros\": \"litr\",\n  \"little\": \"littl\",\n  \"litto\": \"litt\",\n  \"liturgia\": \"liturg\",\n  \"litúrgico\": \"litúrg\",\n  \"live\": \"liv\",\n  \"liverpool\": \"liverpool\",\n  \"lívia\": \"lív\",\n  \"livores\": \"livor\",\n  \"livra\": \"livr\",\n  \"livrá\": \"livr\",\n  \"livram\": \"livr\",\n  \"livrando\": \"livr\",\n  \"livrar\": \"livr\",\n  \"livrara\": \"livr\",\n  \"livraram\": \"livr\",\n  \"livraria\": \"livr\",\n  \"livrarias\": \"livr\",\n  \"livre\": \"livr\",\n  \"livremente\": \"livrement\",\n  \"livres\": \"livr\",\n  \"livreto\": \"livret\",\n  \"livrinho\": \"livrinh\",\n  \"livro\": \"livr\",\n  \"livros\": \"livr\",\n  \"livrou\": \"livr\",\n  \"lixa\": \"lix\",\n  \"lixá\": \"lix\",\n  \"lixados\": \"lix\",\n  \"lixando\": \"lix\",\n  \"lixão\": \"lixã\",\n  \"lixo\": \"lix\",\n  \"liz\": \"liz\",\n  \"lizia\": \"liz\",\n  \"llao\": \"lla\",\n  \"lloyds\": \"lloyds\",\n  \"lo\": \"lo\",\n  \"ló\": \"ló\",\n  \"lobato\": \"lobat\",\n  \"lobbies\": \"lobbi\",\n  \"lobby\": \"lobby\",\n  \"lobo\": \"lob\",\n  \"lôbo\": \"lôb\",\n  \"locação\": \"locaçã\",\n  \"locações\": \"locaçõ\",\n  \"locadora\": \"locador\",\n  \"locais\": \"loc\",\n  \"local\": \"local\",\n  \"localidade\": \"local\",\n  \"localização\": \"localiz\",\n  \"localizada\": \"localiz\",\n  \"localizadas\": \"localiz\",\n  \"localizado\": \"localiz\",\n  \"localizados\": \"localiz\",\n  \"localizar\": \"localiz\",\n  \"localizaram\": \"localiz\",\n  \"localizava\": \"localiz\",\n  \"localizou\": \"localiz\",\n  \"localmente\": \"local\",\n  \"loção\": \"loçã\",\n  \"locaset\": \"locaset\",\n  \"locatários\": \"locatári\",\n  \"lockheed\": \"lockheed\",\n  \"lockwood\": \"lockwood\",\n  \"locomoção\": \"locomoçã\",\n  \"locomotiva\": \"locomot\",\n  \"locomotor\": \"locomotor\",\n  \"locomove\": \"locomov\",\n  \"locomovem\": \"locomov\",\n  \"locomover\": \"locomov\",\n  \"locução\": \"locuçã\",\n  \"locuções\": \"locuçõ\",\n  \"locutor\": \"locutor\",\n  \"locutora\": \"locutor\",\n  \"locutores\": \"locutor\",\n  \"lodo\": \"lod\",\n  \"loffel\": \"loffel\",\n  \"loft\": \"loft\",\n  \"lógica\": \"lógic\",\n  \"lógicas\": \"lógic\",\n  \"lógico\": \"lógic\",\n  \"logística\": \"logíst\",\n  \"logo\": \"log\",\n  \"logotipo\": \"logotip\",\n  \"logotipos\": \"logotip\",\n  \"logus\": \"logus\",\n  \"loira\": \"loir\",\n  \"loiraça\": \"loirac\",\n  \"loiras\": \"loir\",\n  \"loirinha\": \"loirinh\",\n  \"loiro\": \"loir\",\n  \"loiros\": \"loir\",\n  \"loja\": \"loj\",\n  \"lojas\": \"loj\",\n  \"lojista\": \"lojist\",\n  \"lojistas\": \"lojist\",\n  \"lombadas\": \"lomb\",\n  \"lombardi\": \"lombard\",\n  \"lombardimmm\": \"lombardimmm\",\n  \"lombo\": \"lomb\",\n  \"lombrigas\": \"lombrig\",\n  \"lona\": \"lon\",\n  \"londres\": \"londr\",\n  \"londrina\": \"londrin\",\n  \"londrinos\": \"londrin\",\n  \"longa\": \"long\",\n  \"longamente\": \"long\",\n  \"longas\": \"long\",\n  \"longe\": \"long\",\n  \"longelinealidade\": \"longelineal\",\n  \"longevidade\": \"longev\",\n  \"longhouser\": \"longhous\",\n  \"longilíneo\": \"longilín\",\n  \"longínquo\": \"longínqu\",\n  \"longitude\": \"longitud\",\n  \"longo\": \"long\",\n  \"longobardi\": \"longobard\",\n  \"longos\": \"long\",\n  \"longuíssimo\": \"longuíssim\",\n  \"look\": \"look\",\n  \"lopes\": \"lop\",\n  \"lopez\": \"lopez\",\n  \"lorde\": \"lord\",\n  \"lordes\": \"lord\",\n  \"loredo\": \"lored\",\n  \"lorem\": \"lor\",\n  \"loren\": \"loren\",\n  \"lorscheider\": \"lorscheid\",\n  \"los\": \"los\",\n  \"losson\": \"losson\",\n  \"lost\": \"lost\",\n  \"lot\": \"lot\",\n  \"lota\": \"lot\",\n  \"lotação\": \"lotaçã\",\n  \"lotada\": \"lot\",\n  \"lotado\": \"lot\",\n  \"lotados\": \"lot\",\n  \"lotam\": \"lot\",\n  \"lotar\": \"lot\",\n  \"lotaram\": \"lot\",\n  \"lote\": \"lot\",\n  \"loteamento\": \"loteament\",\n  \"loteiam\": \"lot\",\n  \"loteria\": \"lot\",\n  \"loterias\": \"lot\",\n  \"loterj\": \"loterj\",\n  \"lotes\": \"lot\",\n  \"lotus\": \"lotus\",\n  \"louca\": \"louc\",\n  \"louça\": \"louc\",\n  \"loucamente\": \"louc\",\n  \"loucas\": \"louc\",\n  \"louças\": \"louc\",\n  \"louco\": \"louc\",\n  \"loucos\": \"louc\",\n  \"loucura\": \"loucur\",\n  \"loucuras\": \"loucur\",\n  \"louis\": \"lou\",\n  \"louise\": \"louis\",\n  \"loura\": \"lour\",\n  \"lourdes\": \"lourd\",\n  \"loureiro\": \"loureir\",\n  \"lourenção\": \"lourençã\",\n  \"lourenço\": \"lourenc\",\n  \"lourival\": \"lourival\",\n  \"louro\": \"lour\",\n  \"louros\": \"lour\",\n  \"louva\": \"louv\",\n  \"louvain\": \"louvain\",\n  \"louvavam\": \"louv\",\n  \"louvet\": \"louvet\",\n  \"louvre\": \"louvr\",\n  \"louzada\": \"louz\",\n  \"louzado\": \"louz\",\n  \"love\": \"lov\",\n  \"low\": \"low\",\n  \"loyola\": \"loyol\",\n  \"lozada\": \"loz\",\n  \"lozinsky\": \"lozinsky\",\n  \"lp\": \"lp\",\n  \"lps\": \"lps\",\n  \"ltda\": \"ltda\",\n  \"lu\": \"lu\",\n  \"lua\": \"lua\",\n  \"luanda\": \"luand\",\n  \"luc\": \"luc\",\n  \"luca\": \"luc\",\n  \"lucania\": \"lucan\",\n  \"lucas\": \"luc\",\n  \"lucchese\": \"lucches\",\n  \"lucena\": \"lucen\",\n  \"luci\": \"luc\",\n  \"lucia\": \"luc\",\n  \"lúcia\": \"lúc\",\n  \"luciana\": \"lucian\",\n  \"luciano\": \"lucian\",\n  \"luciara\": \"luc\",\n  \"lucidez\": \"lucidez\",\n  \"lucidio\": \"lucidi\",\n  \"lúcidos\": \"lúc\",\n  \"luciene\": \"lucien\",\n  \"lucila\": \"lucil\",\n  \"lucimara\": \"lucim\",\n  \"lucinha\": \"lucinh\",\n  \"lúcio\": \"lúci\",\n  \"lucky\": \"lucky\",\n  \"lucrando\": \"lucr\",\n  \"lucrar\": \"lucr\",\n  \"lucraria\": \"lucr\",\n  \"lucrativas\": \"lucrat\",\n  \"lucrativo\": \"lucrat\",\n  \"lucrativos\": \"lucrat\",\n  \"lucro\": \"lucr\",\n  \"lucros\": \"lucr\",\n  \"lucrou\": \"lucr\",\n  \"luders\": \"luders\",\n  \"lúdico\": \"lúdic\",\n  \"luditas\": \"ludit\",\n  \"ludlow\": \"ludlow\",\n  \"lufthansa\": \"lufthans\",\n  \"lugar\": \"lug\",\n  \"lugarejos\": \"lugarej\",\n  \"lugares\": \"lug\",\n  \"lúgubre\": \"lúgubr\",\n  \"luigi\": \"luig\",\n  \"luis\": \"luis\",\n  \"luís\": \"luís\",\n  \"luiz\": \"luiz\",\n  \"luiza\": \"luiz\",\n  \"lukaisus\": \"lukaisus\",\n  \"lula\": \"lul\",\n  \"lulu\": \"lulu\",\n  \"luma\": \"lum\",\n  \"luminárias\": \"luminár\",\n  \"luminosa\": \"lumin\",\n  \"luminoso\": \"lumin\",\n  \"luminosos\": \"lumin\",\n  \"lumpur\": \"lumpur\",\n  \"lupa\": \"lup\",\n  \"lupicínio\": \"lupicíni\",\n  \"lurdemir\": \"lurdem\",\n  \"lurdes\": \"lurd\",\n  \"lurex\": \"lurex\",\n  \"lusa\": \"lus\",\n  \"lusíadas\": \"lusí\",\n  \"lusitana\": \"lusitan\",\n  \"lusitanas\": \"lusitan\",\n  \"lusitanos\": \"lusitan\",\n  \"lustre\": \"lustr\",\n  \"lustro\": \"lustr\",\n  \"luta\": \"lut\",\n  \"lutado\": \"lut\",\n  \"lutador\": \"lutador\",\n  \"lutam\": \"lut\",\n  \"lutando\": \"lut\",\n  \"lutar\": \"lut\",\n  \"lutará\": \"lut\",\n  \"lutas\": \"lut\",\n  \"lutava\": \"lut\",\n  \"lutavam\": \"lut\",\n  \"luterana\": \"luteran\",\n  \"lutero\": \"luter\",\n  \"luto\": \"lut\",\n  \"lutou\": \"lut\",\n  \"luva\": \"luv\",\n  \"luvas\": \"luv\",\n  \"luvisaro\": \"luvisar\",\n  \"lux\": \"lux\",\n  \"luxemburgo\": \"luxemburg\",\n  \"luxo\": \"lux\",\n  \"luxuosa\": \"luxuos\",\n  \"luxuosas\": \"luxuos\",\n  \"luxuoso\": \"luxuos\",\n  \"luxuosos\": \"luxuos\",\n  \"luxuriantes\": \"luxuri\",\n  \"luycx\": \"luycx\",\n  \"luz\": \"luz\",\n  \"luzes\": \"luz\",\n  \"luzia\": \"luz\",\n  \"lynch\": \"lynch\",\n  \"lyne\": \"lyne\",\n  \"lynx\": \"lynx\",\n  \"lyon\": \"lyon\",\n  \"m\": \"m\",\n  \"ma\": \"ma\",\n  \"má\": \"má\",\n  \"maastricht\": \"maastricht\",\n  \"maçã\": \"maçã\",\n  \"macaca\": \"macac\",\n  \"macacão\": \"macacã\",\n  \"macacas\": \"macac\",\n  \"macaco\": \"macac\",\n  \"macacos\": \"macac\",\n  \"macalé\": \"macal\",\n  \"macambúzio\": \"macambúzi\",\n  \"maçante\": \"maçant\",\n  \"maçarico\": \"maçar\",\n  \"macarrão\": \"macarrã\",\n  \"macarronada\": \"macarron\",\n  \"macarthismo\": \"macarth\",\n  \"maçãs\": \"maçãs\",\n  \"macaulay\": \"macaulay\",\n  \"macbeth\": \"macbeth\",\n  \"macbrazel\": \"macbrazel\",\n  \"macdowell\": \"macdowell\",\n  \"macedo\": \"maced\",\n  \"maceió\": \"macei\",\n  \"machadiana\": \"machadian\",\n  \"machadinho\": \"machadinh\",\n  \"machado\": \"mach\",\n  \"machados\": \"mach\",\n  \"machão\": \"machã\",\n  \"machismo\": \"machism\",\n  \"machista\": \"machist\",\n  \"machistas\": \"machist\",\n  \"macho\": \"mach\",\n  \"machos\": \"mach\",\n  \"machucado\": \"machuc\",\n  \"machucou\": \"machuc\",\n  \"macia\": \"mac\",\n  \"maciça\": \"macic\",\n  \"maciças\": \"macic\",\n  \"maciel\": \"maciel\",\n  \"maciez\": \"maciez\",\n  \"macio\": \"maci\",\n  \"mackenzie\": \"mackenzi\",\n  \"maclaine\": \"maclain\",\n  \"maço\": \"mac\",\n  \"maconha\": \"maconh\",\n  \"maconheiro\": \"maconheir\",\n  \"macromedia\": \"macromed\",\n  \"macromoléculas\": \"macromolécul\",\n  \"macs\": \"macs\",\n  \"mácula\": \"mácul\",\n  \"macular\": \"macul\",\n  \"macumba\": \"macumb\",\n  \"macunaíma\": \"macunaím\",\n  \"mad\": \"mad\",\n  \"mada\": \"mad\",\n  \"madalena\": \"madalen\",\n  \"made\": \"mad\",\n  \"madeira\": \"madeir\",\n  \"madeirame\": \"madeiram\",\n  \"madeiras\": \"madeir\",\n  \"madeireira\": \"madeireir\",\n  \"madeireiras\": \"madeireir\",\n  \"madeireiro\": \"madeireir\",\n  \"madeireiros\": \"madeireir\",\n  \"madi\": \"mad\",\n  \"madonna\": \"madonn\",\n  \"madre\": \"madr\",\n  \"madri\": \"madr\",\n  \"madrinha\": \"madrinh\",\n  \"madruga\": \"madrug\",\n  \"madrugada\": \"madrug\",\n  \"madrugadas\": \"madrug\",\n  \"madura\": \"madur\",\n  \"maduras\": \"madur\",\n  \"madureira\": \"madureir\",\n  \"madureza\": \"madur\",\n  \"maduro\": \"madur\",\n  \"maduros\": \"madur\",\n  \"mady\": \"mady\",\n  \"mãe\": \"mã\",\n  \"mães\": \"mã\",\n  \"maestra\": \"maestr\",\n  \"maestro\": \"maestr\",\n  \"maestros\": \"maestr\",\n  \"mãezinha\": \"mãezinh\",\n  \"mafalda\": \"mafald\",\n  \"máfia\": \"máf\",\n  \"mafiosa\": \"mafios\",\n  \"mafiosas\": \"mafios\",\n  \"mafiosos\": \"mafios\",\n  \"maga\": \"mag\",\n  \"magaldi\": \"magald\",\n  \"magalhães\": \"magalhã\",\n  \"magazine\": \"magazin\",\n  \"magazines\": \"magazin\",\n  \"magela\": \"magel\",\n  \"magella\": \"magell\",\n  \"magérrimas\": \"magérrim\",\n  \"maggi\": \"magg\",\n  \"magia\": \"mag\",\n  \"magic\": \"magic\",\n  \"mágica\": \"mágic\",\n  \"mágicas\": \"mágic\",\n  \"mágico\": \"mágic\",\n  \"mágicos\": \"mágic\",\n  \"magistério\": \"magistéri\",\n  \"magistrado\": \"magistr\",\n  \"magistrados\": \"magistr\",\n  \"magistratura\": \"magistratur\",\n  \"magna\": \"magn\",\n  \"magnas\": \"magn\",\n  \"magnata\": \"magnat\",\n  \"magnatas\": \"magnat\",\n  \"magnésio\": \"magnési\",\n  \"magnética\": \"magnét\",\n  \"magnético\": \"magnét\",\n  \"magnetismo\": \"magnet\",\n  \"magnetoterapia\": \"magnetoterap\",\n  \"magnífica\": \"magníf\",\n  \"magnífico\": \"magníf\",\n  \"magnitude\": \"magnitud\",\n  \"magno\": \"magn\",\n  \"magnoli\": \"magnol\",\n  \"magnus\": \"magnus\",\n  \"mago\": \"mag\",\n  \"magoa\": \"mago\",\n  \"mágoa\": \"mágo\",\n  \"magoá\": \"mago\",\n  \"mágoas\": \"mágo\",\n  \"magos\": \"mag\",\n  \"magra\": \"magr\",\n  \"magras\": \"magr\",\n  \"magrela\": \"magrel\",\n  \"magrelas\": \"magrel\",\n  \"magreza\": \"magrez\",\n  \"magri\": \"magr\",\n  \"magrid\": \"magrid\",\n  \"magrinha\": \"magrinh\",\n  \"magrinhas\": \"magrinh\",\n  \"magrinho\": \"magrinh\",\n  \"magro\": \"magr\",\n  \"magros\": \"magr\",\n  \"maguila\": \"maguil\",\n  \"mahal\": \"mahal\",\n  \"maher\": \"mah\",\n  \"mahfuz\": \"mahfuz\",\n  \"maia\": \"mai\",\n  \"mail\": \"mail\",\n  \"mailing\": \"mailing\",\n  \"main\": \"main\",\n  \"mainardi\": \"mainard\",\n  \"mainframe\": \"mainfram\",\n  \"mainframes\": \"mainfram\",\n  \"maio\": \"mai\",\n  \"maiô\": \"maiô\",\n  \"maior\": \"maior\",\n  \"maiores\": \"maior\",\n  \"maioria\": \"maior\",\n  \"maiorias\": \"maior\",\n  \"maioridade\": \"maioridad\",\n  \"maíra\": \"maír\",\n  \"mais\": \"mais\",\n  \"maison\": \"maison\",\n  \"maj\": \"maj\",\n  \"majestade\": \"majestad\",\n  \"majestosa\": \"majest\",\n  \"majoli\": \"majol\",\n  \"major\": \"major\",\n  \"majoritariamente\": \"majoritari\",\n  \"majoritário\": \"majoritári\",\n  \"majuro\": \"majur\",\n  \"makron\": \"makron\",\n  \"mal\": \"mal\",\n  \"mala\": \"mal\",\n  \"malabar\": \"malab\",\n  \"malabarismo\": \"malabar\",\n  \"malabarismos\": \"malabar\",\n  \"malaia\": \"mala\",\n  \"malaias\": \"mala\",\n  \"malaios\": \"malai\",\n  \"malan\": \"malan\",\n  \"malandragem\": \"malandrag\",\n  \"malandras\": \"malandr\",\n  \"malária\": \"malár\",\n  \"malas\": \"mal\",\n  \"malásia\": \"malás\",\n  \"malcasadas\": \"malcas\",\n  \"malcolm\": \"malcolm\",\n  \"malcom\": \"malcom\",\n  \"malconduzida\": \"malconduz\",\n  \"malconservados\": \"malconserv\",\n  \"malcriação\": \"malcriaçã\",\n  \"malcriados\": \"malcri\",\n  \"malcuidadas\": \"malcuid\",\n  \"maldade\": \"maldad\",\n  \"maldaner\": \"maldan\",\n  \"maldita\": \"maldit\",\n  \"malditas\": \"maldit\",\n  \"maldosa\": \"maldos\",\n  \"maldosos\": \"maldos\",\n  \"malefícios\": \"malefíci\",\n  \"maléfico\": \"maléf\",\n  \"malemo\": \"malem\",\n  \"males\": \"mal\",\n  \"maleta\": \"malet\",\n  \"malfalado\": \"malfal\",\n  \"malfeito\": \"malfeit\",\n  \"malfeitora\": \"malfeitor\",\n  \"malfeitores\": \"malfeitor\",\n  \"malgrado\": \"malgr\",\n  \"malha\": \"malh\",\n  \"malhação\": \"malhaçã\",\n  \"malhada\": \"malh\",\n  \"malhando\": \"malh\",\n  \"malhar\": \"malh\",\n  \"malhava\": \"malh\",\n  \"malheiros\": \"malheir\",\n  \"malícia\": \"malíc\",\n  \"malicioso\": \"malic\",\n  \"maligna\": \"malign\",\n  \"maligno\": \"malign\",\n  \"malik\": \"malik\",\n  \"malkovich\": \"malkovich\",\n  \"mall\": \"mall\",\n  \"malle\": \"mall\",\n  \"mallmann\": \"mallmann\",\n  \"maloney\": \"maloney\",\n  \"malpassado\": \"malpass\",\n  \"malresolvida\": \"malresolv\",\n  \"malsucedido\": \"malsuced\",\n  \"malta\": \"malt\",\n  \"maltrapilhos\": \"maltrapilh\",\n  \"maltratadas\": \"maltrat\",\n  \"maltratado\": \"maltrat\",\n  \"malu\": \"malu\",\n  \"maluca\": \"maluc\",\n  \"malucas\": \"maluc\",\n  \"maluco\": \"maluc\",\n  \"malucos\": \"maluc\",\n  \"maluf\": \"maluf\",\n  \"maluquice\": \"maluquic\",\n  \"maluquinho\": \"maluquinh\",\n  \"malvada\": \"malv\",\n  \"malvinas\": \"malvin\",\n  \"malzoni\": \"malzon\",\n  \"mama\": \"mam\",\n  \"mamãe\": \"mamã\",\n  \"mamão\": \"mamã\",\n  \"mamar\": \"mam\",\n  \"mamária\": \"mamár\",\n  \"mambembe\": \"mambemb\",\n  \"mambembes\": \"mambemb\",\n  \"mamelucas\": \"mameluc\",\n  \"mamelucos\": \"mameluc\",\n  \"mammas\": \"mamm\",\n  \"mamografia\": \"mamograf\",\n  \"mamografias\": \"mamograf\",\n  \"mamonas\": \"mamon\",\n  \"mamou\": \"mam\",\n  \"man\": \"man\",\n  \"manager\": \"manag\",\n  \"manally\": \"manally\",\n  \"manancial\": \"manancial\",\n  \"manaus\": \"manaus\",\n  \"mancha\": \"manch\",\n  \"manchada\": \"manch\",\n  \"manchar\": \"manch\",\n  \"manchas\": \"manch\",\n  \"manchava\": \"manch\",\n  \"manchester\": \"manchest\",\n  \"manchete\": \"manchet\",\n  \"manchetes\": \"manchet\",\n  \"manchetou\": \"manchet\",\n  \"mancini\": \"mancin\",\n  \"manda\": \"mand\",\n  \"mandá\": \"mand\",\n  \"mandacaru\": \"mandacaru\",\n  \"mandada\": \"mand\",\n  \"mandado\": \"mand\",\n  \"mandados\": \"mand\",\n  \"mandam\": \"mand\",\n  \"mandamentos\": \"mandament\",\n  \"mandamos\": \"mand\",\n  \"mandante\": \"mandant\",\n  \"mandar\": \"mand\",\n  \"mandaram\": \"mand\",\n  \"mandarim\": \"mandarim\",\n  \"mandarino\": \"mandarin\",\n  \"mandatários\": \"mandatári\",\n  \"mandato\": \"mandat\",\n  \"mandava\": \"mand\",\n  \"mandavam\": \"mand\",\n  \"mandei\": \"mand\",\n  \"mandela\": \"mandel\",\n  \"mandem\": \"mand\",\n  \"mandioca\": \"mandioc\",\n  \"mando\": \"mand\",\n  \"mandou\": \"mand\",\n  \"mané\": \"man\",\n  \"maneira\": \"maneir\",\n  \"maneiras\": \"maneir\",\n  \"maneiristas\": \"maneir\",\n  \"maneiro\": \"maneir\",\n  \"manejadas\": \"manej\",\n  \"manejo\": \"manej\",\n  \"manequim\": \"manequim\",\n  \"manequinho\": \"manequinh\",\n  \"manete\": \"manet\",\n  \"manetes\": \"manet\",\n  \"manfredo\": \"manfred\",\n  \"manganês\": \"manganês\",\n  \"mangas\": \"mang\",\n  \"mangueira\": \"mangueir\",\n  \"manhã\": \"manhã\",\n  \"manhãs\": \"manhãs\",\n  \"manhattan\": \"manhattan\",\n  \"mania\": \"man\",\n  \"manias\": \"man\",\n  \"manicômio\": \"manicômi\",\n  \"manicure\": \"manicur\",\n  \"manifesta\": \"manifest\",\n  \"manifestá\": \"manifest\",\n  \"manifestação\": \"manifest\",\n  \"manifestações\": \"manifest\",\n  \"manifestadas\": \"manifest\",\n  \"manifestam\": \"manifest\",\n  \"manifestando\": \"manifest\",\n  \"manifestantes\": \"manifest\",\n  \"manifestar\": \"manifest\",\n  \"manifestaram\": \"manifest\",\n  \"manifestavam\": \"manifest\",\n  \"manifesto\": \"manifest\",\n  \"manifestos\": \"manifest\",\n  \"manifestou\": \"manifest\",\n  \"manipulação\": \"manipul\",\n  \"manipulações\": \"manipul\",\n  \"manipulado\": \"manipul\",\n  \"manipulados\": \"manipul\",\n  \"manipulam\": \"manipul\",\n  \"manipular\": \"manipul\",\n  \"manipulava\": \"manipul\",\n  \"maniqueísta\": \"maniqueíst\",\n  \"manjados\": \"manj\",\n  \"manjedoura\": \"manjedour\",\n  \"manobra\": \"manobr\",\n  \"manobras\": \"manobr\",\n  \"manoel\": \"manoel\",\n  \"mansa\": \"mans\",\n  \"mansão\": \"mansã\",\n  \"manso\": \"mans\",\n  \"mansoni\": \"manson\",\n  \"mansur\": \"mansur\",\n  \"manta\": \"mant\",\n  \"mantê\": \"mant\",\n  \"manteiga\": \"manteig\",\n  \"mantém\": \"mantém\",\n  \"mantêm\": \"mantêm\",\n  \"mantemos\": \"mant\",\n  \"mantendo\": \"mant\",\n  \"mantenham\": \"mantenh\",\n  \"manter\": \"mant\",\n  \"manterá\": \"mant\",\n  \"manteve\": \"mantev\",\n  \"mantida\": \"mant\",\n  \"mantidas\": \"mant\",\n  \"mantido\": \"mant\",\n  \"mantidos\": \"mant\",\n  \"mantimento\": \"mantiment\",\n  \"mantimentos\": \"mantiment\",\n  \"mantinha\": \"mantinh\",\n  \"mantivemos\": \"mantiv\",\n  \"mantiver\": \"mantiv\",\n  \"mantiveram\": \"mantiv\",\n  \"mantiverem\": \"mantiv\",\n  \"mantivesse\": \"mantiv\",\n  \"manto\": \"mant\",\n  \"mantos\": \"mant\",\n  \"mantovani\": \"mantovan\",\n  \"mantras\": \"mantr\",\n  \"manuais\": \"manu\",\n  \"manual\": \"manual\",\n  \"manualmente\": \"manual\",\n  \"manuel\": \"manuel\",\n  \"manufaturados\": \"manufatur\",\n  \"manutenção\": \"manutençã\",\n  \"manzano\": \"manzan\",\n  \"mao\": \"mao\",\n  \"mão\": \"mã\",\n  \"maomé\": \"maom\",\n  \"mãos\": \"mã\",\n  \"mãozinha\": \"mãozinh\",\n  \"mapa\": \"map\",\n  \"mapas\": \"map\",\n  \"mapeadas\": \"map\",\n  \"mapeado\": \"map\",\n  \"mapeamento\": \"mapeament\",\n  \"mapear\": \"map\",\n  \"mappin\": \"mappin\",\n  \"maquiadas\": \"maqui\",\n  \"maquiador\": \"maquiador\",\n  \"maquiagem\": \"maquiag\",\n  \"maquiagens\": \"maquiagens\",\n  \"maquiavel\": \"maquiavel\",\n  \"maquiavelismo\": \"maquiavel\",\n  \"maquilado\": \"maquil\",\n  \"maquiladora\": \"maquil\",\n  \"maquilagem\": \"maquilag\",\n  \"maquilagens\": \"maquilagens\",\n  \"máquina\": \"máquin\",\n  \"maquinário\": \"maquinári\",\n  \"máquinas\": \"máquin\",\n  \"maquiou\": \"maqui\",\n  \"mar\": \"mar\",\n  \"mara\": \"mar\",\n  \"maracanã\": \"maracanã\",\n  \"maracanãs\": \"maracanãs\",\n  \"maracanãzinho\": \"maracanãzinh\",\n  \"maracutaia\": \"maracuta\",\n  \"maracutaias\": \"maracuta\",\n  \"marais\": \"mar\",\n  \"marajá\": \"maraj\",\n  \"marakanond\": \"marakanond\",\n  \"maranhão\": \"maranhã\",\n  \"maranhense\": \"maranhens\",\n  \"maranhenses\": \"maranhens\",\n  \"maratona\": \"maraton\",\n  \"maravilha\": \"maravilh\",\n  \"maravilhada\": \"maravilh\",\n  \"maravilhas\": \"maravilh\",\n  \"maravilhosa\": \"maravilh\",\n  \"maravilhosas\": \"maravilh\",\n  \"maravilhoso\": \"maravilh\",\n  \"maravilhosos\": \"maravilh\",\n  \"marca\": \"marc\",\n  \"marcá\": \"marc\",\n  \"marcação\": \"marcaçã\",\n  \"marcada\": \"marc\",\n  \"marcadamente\": \"marcad\",\n  \"marcadas\": \"marc\",\n  \"marcado\": \"marc\",\n  \"marcadores\": \"marcador\",\n  \"marcados\": \"marc\",\n  \"marcante\": \"marcant\",\n  \"marcantes\": \"marcant\",\n  \"marcantônio\": \"marcantôni\",\n  \"marcar\": \"marc\",\n  \"marcaram\": \"marc\",\n  \"marcas\": \"marc\",\n  \"marcava\": \"marc\",\n  \"marcel\": \"marcel\",\n  \"marcela\": \"marcel\",\n  \"marcelino\": \"marcelin\",\n  \"marcello\": \"marcell\",\n  \"marcelo\": \"marcel\",\n  \"marcenaria\": \"marcen\",\n  \"marceneiro\": \"marceneir\",\n  \"marceneiros\": \"marceneir\",\n  \"march\": \"march\",\n  \"marcha\": \"march\",\n  \"marchand\": \"marchand\",\n  \"marchar\": \"march\",\n  \"marchas\": \"march\",\n  \"marchou\": \"march\",\n  \"marcia\": \"marc\",\n  \"márcia\": \"márc\",\n  \"marciana\": \"marcian\",\n  \"marcílio\": \"marcíli\",\n  \"marcinho\": \"marcinh\",\n  \"marcio\": \"marci\",\n  \"márcio\": \"márci\",\n  \"marco\": \"marc\",\n  \"março\": \"marc\",\n  \"marcolino\": \"marcolin\",\n  \"marcos\": \"marc\",\n  \"marcou\": \"marc\",\n  \"maré\": \"mar\",\n  \"marechal\": \"marechal\",\n  \"mares\": \"mar\",\n  \"maresias\": \"mares\",\n  \"marfim\": \"marfim\",\n  \"margaret\": \"margaret\",\n  \"margarete\": \"margaret\",\n  \"margem\": \"marg\",\n  \"margens\": \"margens\",\n  \"marginais\": \"margin\",\n  \"marginal\": \"marginal\",\n  \"marginalizado\": \"marginaliz\",\n  \"marginalizados\": \"marginaliz\",\n  \"mari\": \"mar\",\n  \"maria\": \"mar\",\n  \"mariana\": \"marian\",\n  \"mariane\": \"marian\",\n  \"mariano\": \"marian\",\n  \"marias\": \"mar\",\n  \"marido\": \"mar\",\n  \"maridos\": \"mar\",\n  \"marie\": \"mari\",\n  \"mariel\": \"mariel\",\n  \"marieta\": \"mariet\",\n  \"marighella\": \"marighell\",\n  \"marijuana\": \"marijuan\",\n  \"marilda\": \"marild\",\n  \"marilena\": \"marilen\",\n  \"marília\": \"maríl\",\n  \"marilyn\": \"marilyn\",\n  \"marilza\": \"marilz\",\n  \"marimbondos\": \"marimbond\",\n  \"marina\": \"marin\",\n  \"marinha\": \"marinh\",\n  \"marinheiro\": \"marinheir\",\n  \"marinheiros\": \"marinheir\",\n  \"marinho\": \"marinh\",\n  \"marinhos\": \"marinh\",\n  \"marini\": \"marin\",\n  \"marins\": \"marins\",\n  \"mario\": \"mari\",\n  \"mário\": \"mári\",\n  \"marion\": \"marion\",\n  \"marisa\": \"maris\",\n  \"marisol\": \"marisol\",\n  \"marista\": \"marist\",\n  \"marítima\": \"marítim\",\n  \"marítimas\": \"marítim\",\n  \"marítimo\": \"marítim\",\n  \"mariz\": \"mariz\",\n  \"marjorie\": \"marjori\",\n  \"mark\": \"mark\",\n  \"marketeira\": \"marketeir\",\n  \"marketing\": \"marketing\",\n  \"marks\": \"marks\",\n  \"markus\": \"markus\",\n  \"marlboro\": \"marlbor\",\n  \"marlene\": \"marlen\",\n  \"marli\": \"marl\",\n  \"marlon\": \"marlon\",\n  \"marluce\": \"marluc\",\n  \"marmita\": \"marmit\",\n  \"marmo\": \"marm\",\n  \"mármore\": \"mármor\",\n  \"marola\": \"marol\",\n  \"marote\": \"marot\",\n  \"marquei\": \"marqu\",\n  \"marques\": \"marqu\",\n  \"marquês\": \"marquês\",\n  \"marqueteiro\": \"marqueteir\",\n  \"márquez\": \"márquez\",\n  \"marquise\": \"marquis\",\n  \"marretas\": \"marret\",\n  \"marreteiros\": \"marreteir\",\n  \"marrey\": \"marrey\",\n  \"marrocos\": \"marroc\",\n  \"marrom\": \"marrom\",\n  \"marselha\": \"marselh\",\n  \"marshall\": \"marshall\",\n  \"marta\": \"mart\",\n  \"marte\": \"mart\",\n  \"martelo\": \"martel\",\n  \"martelos\": \"martel\",\n  \"martelou\": \"martel\",\n  \"martha\": \"marth\",\n  \"martí\": \"mart\",\n  \"martin\": \"martin\",\n  \"martina\": \"martin\",\n  \"martines\": \"martin\",\n  \"martinez\": \"martinez\",\n  \"martinho\": \"martinh\",\n  \"martini\": \"martin\",\n  \"martinn\": \"martinn\",\n  \"martino\": \"martin\",\n  \"martins\": \"martins\",\n  \"mártir\": \"márt\",\n  \"mártires\": \"márt\",\n  \"martírio\": \"martíri\",\n  \"martuza\": \"martuz\",\n  \"marujos\": \"maruj\",\n  \"marx\": \"marx\",\n  \"marxista\": \"marxist\",\n  \"mary\": \"mary\",\n  \"maryland\": \"maryland\",\n  \"marzo\": \"marz\",\n  \"mas\": \"mas\",\n  \"más\": \"más\",\n  \"masagão\": \"masagã\",\n  \"masano\": \"masan\",\n  \"mascar\": \"masc\",\n  \"máscara\": \"másc\",\n  \"mascarando\": \"mascar\",\n  \"máscaras\": \"másc\",\n  \"mascarenhas\": \"mascarenh\",\n  \"masculina\": \"masculin\",\n  \"masculinas\": \"masculin\",\n  \"masculinidade\": \"masculin\",\n  \"masculinizado\": \"masculiniz\",\n  \"masculino\": \"masculin\",\n  \"masculinos\": \"masculin\",\n  \"másculo\": \"máscul\",\n  \"maseratti\": \"maseratt\",\n  \"masina\": \"masin\",\n  \"masmorra\": \"masmorr\",\n  \"mason\": \"mason\",\n  \"masoquista\": \"masoqu\",\n  \"masp\": \"masp\",\n  \"mass\": \"mass\",\n  \"massa\": \"mass\",\n  \"massachusetts\": \"massachusetts\",\n  \"massacre\": \"massacr\",\n  \"massacres\": \"massacr\",\n  \"massageado\": \"massag\",\n  \"massagem\": \"massag\",\n  \"massagens\": \"massagens\",\n  \"massagista\": \"massag\",\n  \"massaini\": \"massain\",\n  \"massanori\": \"massanor\",\n  \"massaranduba\": \"massarandub\",\n  \"massas\": \"mass\",\n  \"massey\": \"massey\",\n  \"massificação\": \"massific\",\n  \"massini\": \"massin\",\n  \"massivo\": \"massiv\",\n  \"masson\": \"masson\",\n  \"master\": \"mast\",\n  \"masterclass\": \"masterclass\",\n  \"mastiga\": \"mastig\",\n  \"mastologia\": \"mastolog\",\n  \"mata\": \"mat\",\n  \"matá\": \"mat\",\n  \"matado\": \"mat\",\n  \"matagal\": \"matagal\",\n  \"matam\": \"mat\",\n  \"matamoros\": \"matamor\",\n  \"matança\": \"matanc\",\n  \"matando\": \"mat\",\n  \"matandos\": \"matand\",\n  \"matar\": \"mat\",\n  \"mataram\": \"mat\",\n  \"matarazzo\": \"matarazz\",\n  \"matarem\": \"mat\",\n  \"mataríamos\": \"mat\",\n  \"matas\": \"mat\",\n  \"matasse\": \"mat\",\n  \"matava\": \"mat\",\n  \"matavam\": \"mat\",\n  \"matemática\": \"matemát\",\n  \"matemático\": \"matemát\",\n  \"matemáticos\": \"matemát\",\n  \"mateo\": \"mat\",\n  \"mater\": \"mat\",\n  \"máter\": \"mát\",\n  \"matéria\": \"matér\",\n  \"materiais\": \"materi\",\n  \"material\": \"material\",\n  \"materialista\": \"material\",\n  \"materialização\": \"materializ\",\n  \"materializar\": \"materializ\",\n  \"materializou\": \"materializ\",\n  \"materialmente\": \"material\",\n  \"matérias\": \"matér\",\n  \"materna\": \"matern\",\n  \"maternal\": \"maternal\",\n  \"maternidade\": \"matern\",\n  \"materno\": \"matern\",\n  \"mateus\": \"mateus\",\n  \"matheus\": \"matheus\",\n  \"matinê\": \"matin\",\n  \"matinês\": \"matinês\",\n  \"matizes\": \"matiz\",\n  \"mato\": \"mat\",\n  \"matos\": \"mat\",\n  \"matoso\": \"matos\",\n  \"matou\": \"mat\",\n  \"matriarca\": \"matriarc\",\n  \"matrícula\": \"matrícul\",\n  \"matriculada\": \"matricul\",\n  \"matriculados\": \"matricul\",\n  \"matriculando\": \"matricul\",\n  \"matricularam\": \"matricul\",\n  \"matrimônio\": \"matrimôni\",\n  \"matrimônios\": \"matrimôni\",\n  \"matrix\": \"matrix\",\n  \"matriz\": \"matriz\",\n  \"matrizes\": \"matriz\",\n  \"mattar\": \"matt\",\n  \"matte\": \"matt\",\n  \"matteo\": \"matt\",\n  \"matthew\": \"matthew\",\n  \"matthews\": \"matthews\",\n  \"mattoli\": \"mattol\",\n  \"mattos\": \"matt\",\n  \"maturidade\": \"matur\",\n  \"matusalém\": \"matusalém\",\n  \"matutar\": \"matut\",\n  \"matutino\": \"matutin\",\n  \"matuto\": \"matut\",\n  \"mau\": \"mau\",\n  \"mauá\": \"mau\",\n  \"maudsley\": \"maudsley\",\n  \"mauri\": \"maur\",\n  \"mauricinhos\": \"mauricinh\",\n  \"maurício\": \"mauríci\",\n  \"maurizio\": \"maurizi\",\n  \"mauro\": \"maur\",\n  \"maus\": \"maus\",\n  \"mausoléu\": \"mausoléu\",\n  \"mautner\": \"mautn\",\n  \"max\": \"max\",\n  \"maxilar\": \"maxil\",\n  \"maxima\": \"maxim\",\n  \"máxima\": \"máxim\",\n  \"máximo\": \"máxim\",\n  \"maxixe\": \"maxix\",\n  \"mayer\": \"may\",\n  \"mayo\": \"may\",\n  \"mayrink\": \"mayrink\",\n  \"mazda\": \"mazd\",\n  \"mazelas\": \"mazel\",\n  \"mazindol\": \"mazindol\",\n  \"mazzola\": \"mazzol\",\n  \"mb\": \"mb\",\n  \"mbr\": \"mbr\",\n  \"mc\": \"mc\",\n  \"mcdean\": \"mcdean\",\n  \"mcdonald\": \"mcdonald\",\n  \"mcdonnell\": \"mcdonnell\",\n  \"mcenroe\": \"mcenro\",\n  \"mcgill\": \"mcgill\",\n  \"mckinley\": \"mckinley\",\n  \"mcleodusa\": \"mcleodus\",\n  \"mcmorrow\": \"mcmorrow\",\n  \"mct\": \"mct\",\n  \"md\": \"md\",\n  \"mdb\": \"mdb\",\n  \"me\": \"me\",\n  \"mea\": \"mea\",\n  \"meada\": \"mead\",\n  \"meados\": \"mead\",\n  \"meb\": \"meb\",\n  \"mec\": \"mec\",\n  \"meca\": \"mec\",\n  \"mecânica\": \"mecân\",\n  \"mecânicas\": \"mecân\",\n  \"mecanicista\": \"mecanic\",\n  \"mecânico\": \"mecân\",\n  \"mecânicos\": \"mecân\",\n  \"mecanismo\": \"mecan\",\n  \"mecanismos\": \"mecan\",\n  \"mecanizada\": \"mecaniz\",\n  \"mecanizadas\": \"mecaniz\",\n  \"mecanizado\": \"mecaniz\",\n  \"mecanizar\": \"mecaniz\",\n  \"mecas\": \"mec\",\n  \"mechas\": \"mech\",\n  \"med\": \"med\",\n  \"medalhão\": \"medalhã\",\n  \"medalhões\": \"medalhõ\",\n  \"mede\": \"med\",\n  \"medéia\": \"med\",\n  \"medeiros\": \"medeir\",\n  \"medellín\": \"medellín\",\n  \"medem\": \"med\",\n  \"média\": \"méd\",\n  \"mediação\": \"mediaçã\",\n  \"mediados\": \"medi\",\n  \"mediam\": \"med\",\n  \"mediante\": \"mediant\",\n  \"médias\": \"méd\",\n  \"médica\": \"médic\",\n  \"medicação\": \"medic\",\n  \"medicada\": \"medic\",\n  \"medicados\": \"medic\",\n  \"medicamento\": \"medic\",\n  \"medicamentos\": \"medic\",\n  \"medicamentosa\": \"medicament\",\n  \"medição\": \"mediçã\",\n  \"medicar\": \"medic\",\n  \"médicas\": \"médic\",\n  \"médici\": \"médic\",\n  \"medicina\": \"medicin\",\n  \"medicinal\": \"medicinal\",\n  \"medicinas\": \"medicin\",\n  \"médico\": \"médic\",\n  \"médicos\": \"médic\",\n  \"medida\": \"med\",\n  \"medidas\": \"med\",\n  \"medido\": \"med\",\n  \"medidor\": \"medidor\",\n  \"medidores\": \"medidor\",\n  \"medievais\": \"mediev\",\n  \"medieval\": \"medieval\",\n  \"medievo\": \"mediev\",\n  \"medimos\": \"med\",\n  \"medina\": \"medin\",\n  \"médio\": \"médi\",\n  \"medíocre\": \"medíocr\",\n  \"medíocres\": \"medíocr\",\n  \"médios\": \"médi\",\n  \"medir\": \"med\",\n  \"meditar\": \"medit\",\n  \"mediterrânea\": \"mediterrân\",\n  \"mediterrâneo\": \"mediterrân\",\n  \"mediu\": \"med\",\n  \"médium\": \"médium\",\n  \"médiuns\": \"médiuns\",\n  \"medo\": \"med\",\n  \"medonho\": \"medonh\",\n  \"medos\": \"med\",\n  \"medrosa\": \"medros\",\n  \"medula\": \"medul\",\n  \"medulares\": \"medul\",\n  \"mega\": \"meg\",\n  \"megaagência\": \"megaagent\",\n  \"megabytes\": \"megabyt\",\n  \"megadramáticos\": \"megadramát\",\n  \"megaempresa\": \"megaempres\",\n  \"megaestrelas\": \"megaestrel\",\n  \"megaevento\": \"megaevent\",\n  \"megalaboratório\": \"megalaboratóri\",\n  \"megale\": \"megal\",\n  \"megalômanos\": \"megalôman\",\n  \"megamilionária\": \"megamilionár\",\n  \"megassucesso\": \"megassucess\",\n  \"megastars\": \"megastars\",\n  \"megastores\": \"megastor\",\n  \"megatendências\": \"megatendent\",\n  \"megatons\": \"megatons\",\n  \"megawatts\": \"megawatts\",\n  \"megera\": \"meg\",\n  \"megestat\": \"megestat\",\n  \"mehana\": \"mehan\",\n  \"meia\": \"mei\",\n  \"meias\": \"mei\",\n  \"méier\": \"méi\",\n  \"meiga\": \"meig\",\n  \"meigo\": \"meig\",\n  \"meio\": \"mei\",\n  \"meios\": \"mei\",\n  \"meira\": \"meir\",\n  \"meireles\": \"meirel\",\n  \"mel\": \"mel\",\n  \"meladas\": \"mel\",\n  \"melancólico\": \"melancól\",\n  \"melão\": \"melã\",\n  \"melaré\": \"melar\",\n  \"melbourne\": \"melbourn\",\n  \"melhor\": \"melhor\",\n  \"melhora\": \"melhor\",\n  \"melhoradinha\": \"melhoradinh\",\n  \"melhorado\": \"melhor\",\n  \"melhoram\": \"melhor\",\n  \"melhoramentos\": \"melhor\",\n  \"melhorando\": \"melhor\",\n  \"melhorar\": \"melhor\",\n  \"melhoraram\": \"melhor\",\n  \"melhoras\": \"melhor\",\n  \"melhore\": \"melhor\",\n  \"melhores\": \"melhor\",\n  \"melhoria\": \"melhor\",\n  \"melhorias\": \"melhor\",\n  \"melhoro\": \"melhor\",\n  \"melhorou\": \"melhor\",\n  \"meliá\": \"meli\",\n  \"melina\": \"melin\",\n  \"melinde\": \"melind\",\n  \"melindres\": \"melindr\",\n  \"melinger\": \"meling\",\n  \"melissa\": \"meliss\",\n  \"mellinger\": \"melling\",\n  \"mello\": \"mell\",\n  \"melo\": \"mel\",\n  \"melodia\": \"melod\",\n  \"melodias\": \"melod\",\n  \"melódica\": \"melód\",\n  \"melodrama\": \"melodram\",\n  \"melodramático\": \"melodramát\",\n  \"melômano\": \"melôman\",\n  \"melômanos\": \"melôman\",\n  \"melos\": \"mel\",\n  \"melosa\": \"melos\",\n  \"melvin\": \"melvin\",\n  \"melvyn\": \"melvyn\",\n  \"member\": \"memb\",\n  \"membro\": \"membr\",\n  \"membros\": \"membr\",\n  \"memê\": \"mem\",\n  \"memo\": \"mem\",\n  \"memorável\": \"memor\",\n  \"memória\": \"memór\",\n  \"memorial\": \"memorial\",\n  \"memórias\": \"memór\",\n  \"memorizam\": \"memoriz\",\n  \"men\": \"men\",\n  \"menção\": \"mençã\",\n  \"mencionado\": \"mencion\",\n  \"mencionar\": \"mencion\",\n  \"mencionei\": \"mencion\",\n  \"mencionou\": \"mencion\",\n  \"menconi\": \"mencon\",\n  \"mendel\": \"mendel\",\n  \"mendes\": \"mend\",\n  \"mendicância\": \"mendic\",\n  \"mendigo\": \"mendig\",\n  \"mendigos\": \"mendig\",\n  \"mendonça\": \"mendonc\",\n  \"meneghine\": \"meneghin\",\n  \"menezes\": \"menez\",\n  \"menina\": \"menin\",\n  \"meninas\": \"menin\",\n  \"meninice\": \"meninic\",\n  \"menininha\": \"menininh\",\n  \"menininhas\": \"menininh\",\n  \"menino\": \"menin\",\n  \"meninos\": \"menin\",\n  \"menisco\": \"menisc\",\n  \"menopausa\": \"menopaus\",\n  \"menor\": \"menor\",\n  \"menores\": \"menor\",\n  \"menos\": \"men\",\n  \"mensageiro\": \"mensageir\",\n  \"mensageiros\": \"mensageir\",\n  \"mensagem\": \"mensag\",\n  \"mensagens\": \"mensagens\",\n  \"mensais\": \"mens\",\n  \"mensal\": \"mensal\",\n  \"mensalidade\": \"mensal\",\n  \"mensalidades\": \"mensal\",\n  \"mensalmente\": \"mensal\",\n  \"menstrua\": \"menstru\",\n  \"menstruação\": \"menstruaçã\",\n  \"menstruações\": \"menstruaçõ\",\n  \"menstruada\": \"menstru\",\n  \"menstrual\": \"menstrual\",\n  \"menstruam\": \"menstru\",\n  \"menstruaram\": \"menstru\",\n  \"mensurar\": \"mensur\",\n  \"menta\": \"ment\",\n  \"mentais\": \"ment\",\n  \"mental\": \"mental\",\n  \"mentalidade\": \"mental\",\n  \"mentalização\": \"mentaliz\",\n  \"mentalmente\": \"mental\",\n  \"mente\": \"ment\",\n  \"mentem\": \"ment\",\n  \"mentindo\": \"ment\",\n  \"mentir\": \"ment\",\n  \"mentira\": \"ment\",\n  \"mentiram\": \"ment\",\n  \"mentiras\": \"ment\",\n  \"mentirem\": \"ment\",\n  \"mentiria\": \"ment\",\n  \"mentirinha\": \"mentirinh\",\n  \"mentiroso\": \"mentir\",\n  \"mentirosos\": \"mentir\",\n  \"mentiu\": \"ment\",\n  \"mentor\": \"mentor\",\n  \"menu\": \"menu\",\n  \"menus\": \"menus\",\n  \"mera\": \"mer\",\n  \"meramente\": \"mer\",\n  \"mercadante\": \"mercad\",\n  \"mercado\": \"merc\",\n  \"mercadológico\": \"mercadológ\",\n  \"mercadores\": \"mercador\",\n  \"mercadoria\": \"mercador\",\n  \"mercadorias\": \"mercador\",\n  \"mercados\": \"merc\",\n  \"mercancini\": \"mercancin\",\n  \"mercantil\": \"mercantil\",\n  \"mercator\": \"mercator\",\n  \"mercedão\": \"mercedã\",\n  \"mercedes\": \"merced\",\n  \"mercenária\": \"mercenár\",\n  \"mercenário\": \"mercenári\",\n  \"mercenários\": \"mercenári\",\n  \"mércio\": \"mérci\",\n  \"merck\": \"merck\",\n  \"mercosul\": \"mercosul\",\n  \"mercury\": \"mercury\",\n  \"merece\": \"merec\",\n  \"merecedor\": \"merecedor\",\n  \"merecem\": \"merec\",\n  \"merecendo\": \"merec\",\n  \"merecer\": \"merec\",\n  \"mereceram\": \"merec\",\n  \"mereceu\": \"merec\",\n  \"merecia\": \"merec\",\n  \"merecido\": \"merec\",\n  \"merecimento\": \"merec\",\n  \"mereço\": \"merec\",\n  \"merege\": \"mereg\",\n  \"merenda\": \"merend\",\n  \"merengue\": \"mereng\",\n  \"mergulha\": \"mergulh\",\n  \"mergulhada\": \"mergulh\",\n  \"mergulhado\": \"mergulh\",\n  \"mergulhador\": \"mergulh\",\n  \"mergulhadores\": \"mergulh\",\n  \"mergulham\": \"mergulh\",\n  \"mergulhando\": \"mergulh\",\n  \"mergulhar\": \"mergulh\",\n  \"mergulharam\": \"mergulh\",\n  \"mergulho\": \"mergulh\",\n  \"mergulhos\": \"mergulh\",\n  \"mergulhou\": \"mergulh\",\n  \"meridien\": \"meridien\",\n  \"meriti\": \"merit\",\n  \"meritíssimo\": \"meritíssim\",\n  \"mérito\": \"mérit\",\n  \"meritocracia\": \"meritocrac\",\n  \"merlin\": \"merlin\",\n  \"merlot\": \"merlot\",\n  \"mero\": \"mer\",\n  \"meros\": \"mer\",\n  \"merrill\": \"merrill\",\n  \"mês\": \"mês\",\n  \"mesa\": \"mes\",\n  \"mesada\": \"mes\",\n  \"mesadas\": \"mes\",\n  \"mesalinho\": \"mesalinh\",\n  \"mesas\": \"mes\",\n  \"mesbla\": \"mesbl\",\n  \"mescal\": \"mescal\",\n  \"mescla\": \"mescl\",\n  \"mesclada\": \"mescl\",\n  \"mesclado\": \"mescl\",\n  \"meses\": \"mes\",\n  \"mesinha\": \"mesinh\",\n  \"mesma\": \"mesm\",\n  \"mesmas\": \"mesm\",\n  \"mesmice\": \"mesmic\",\n  \"mesmo\": \"mesm\",\n  \"mesmos\": \"mesm\",\n  \"mesquita\": \"mesquit\",\n  \"mesquitas\": \"mesquit\",\n  \"messiânico\": \"messiân\",\n  \"messianismo\": \"messian\",\n  \"messias\": \"mess\",\n  \"mestiço\": \"mestic\",\n  \"mestiços\": \"mestic\",\n  \"mestrado\": \"mestr\",\n  \"mestre\": \"mestr\",\n  \"mestres\": \"mestr\",\n  \"meta\": \"met\",\n  \"metabólicas\": \"metaból\",\n  \"metabolizar\": \"metaboliz\",\n  \"metabologia\": \"metabolog\",\n  \"metade\": \"metad\",\n  \"metáfora\": \"metáfor\",\n  \"metaforicamente\": \"metafor\",\n  \"metais\": \"met\",\n  \"metal\": \"metal\",\n  \"metálico\": \"metál\",\n  \"metalizou\": \"metaliz\",\n  \"metalurgia\": \"metalurg\",\n  \"metalúrgica\": \"metalúrg\",\n  \"metamorfose\": \"metamorfos\",\n  \"metas\": \"met\",\n  \"metástases\": \"metástas\",\n  \"metemos\": \"met\",\n  \"meteórica\": \"meteór\",\n  \"meteorologia\": \"meteorolog\",\n  \"meteorológica\": \"meteorológ\",\n  \"meteorológicas\": \"meteorológ\",\n  \"meter\": \"met\",\n  \"meteram\": \"met\",\n  \"meteu\": \"met\",\n  \"metia\": \"met\",\n  \"metiam\": \"met\",\n  \"meticulosamente\": \"meticul\",\n  \"meticuloso\": \"meticul\",\n  \"metida\": \"met\",\n  \"metido\": \"met\",\n  \"metidos\": \"met\",\n  \"métier\": \"méti\",\n  \"metódico\": \"metód\",\n  \"metodista\": \"metod\",\n  \"método\": \"métod\",\n  \"metodologia\": \"metodolog\",\n  \"metodologias\": \"metodolog\",\n  \"métodos\": \"métod\",\n  \"metotrexate\": \"metotrexat\",\n  \"metragem\": \"metrag\",\n  \"metralhado\": \"metralh\",\n  \"metralhadora\": \"metralh\",\n  \"metralhadoras\": \"metralh\",\n  \"métrico\": \"métric\",\n  \"metro\": \"metr\",\n  \"metrô\": \"metrô\",\n  \"metrópole\": \"metrópol\",\n  \"metrópoles\": \"metrópol\",\n  \"metrópolis\": \"metrópol\",\n  \"metropolitan\": \"metropolitan\",\n  \"metropolitana\": \"metropolitan\",\n  \"metropolitanas\": \"metropolitan\",\n  \"metros\": \"metr\",\n  \"meu\": \"meu\",\n  \"meus\": \"meus\",\n  \"mexe\": \"mex\",\n  \"mexem\": \"mex\",\n  \"mexer\": \"mex\",\n  \"mexeria\": \"mex\",\n  \"mexericando\": \"mexeric\",\n  \"mexeu\": \"mex\",\n  \"mexi\": \"mex\",\n  \"mexia\": \"mex\",\n  \"mexicana\": \"mexican\",\n  \"mexicanas\": \"mexican\",\n  \"mexicano\": \"mexican\",\n  \"mexicanos\": \"mexican\",\n  \"méxico\": \"méxic\",\n  \"mexirica\": \"mexir\",\n  \"meyer\": \"mey\",\n  \"mezarobba\": \"mezarobb\",\n  \"mezinhas\": \"mezinh\",\n  \"mezzo\": \"mezz\",\n  \"mg\": \"mg\",\n  \"mgm\": \"mgm\",\n  \"mhz\": \"mhz\",\n  \"mí\": \"mí\",\n  \"miami\": \"miam\",\n  \"miar\": \"miar\",\n  \"micados\": \"mic\",\n  \"miçangas\": \"miçang\",\n  \"micaram\": \"mic\",\n  \"michael\": \"michael\",\n  \"michaelicheh\": \"michaelicheh\",\n  \"michalski\": \"michalsk\",\n  \"michel\": \"michel\",\n  \"michelotti\": \"michelott\",\n  \"michigan\": \"michigan\",\n  \"mick\": \"mick\",\n  \"mickey\": \"mickey\",\n  \"mico\": \"mic\",\n  \"micoses\": \"micos\",\n  \"micreiro\": \"micreir\",\n  \"micro\": \"micr\",\n  \"micróbios\": \"micróbi\",\n  \"microcomputador\": \"microcomput\",\n  \"microempresário\": \"microempresári\",\n  \"microfilme\": \"microfilm\",\n  \"microfilmou\": \"microfilm\",\n  \"microfone\": \"microfon\",\n  \"microondas\": \"microond\",\n  \"microônibus\": \"microônibus\",\n  \"micros\": \"micr\",\n  \"microscópica\": \"microscóp\",\n  \"microscopicamente\": \"microscop\",\n  \"microscópico\": \"microscóp\",\n  \"microscópio\": \"microscópi\",\n  \"microsoft\": \"microsoft\",\n  \"microsubmarino\": \"microsubmarin\",\n  \"microvlar\": \"microvl\",\n  \"midas\": \"mid\",\n  \"middle\": \"middl\",\n  \"middlesbrough\": \"middlesbrough\",\n  \"midem\": \"mid\",\n  \"mídia\": \"míd\",\n  \"mídias\": \"míd\",\n  \"mielke\": \"mielk\",\n  \"mignon\": \"mignon\",\n  \"migrações\": \"migraçõ\",\n  \"migrantes\": \"migrant\",\n  \"migrar\": \"migr\",\n  \"migraram\": \"migr\",\n  \"migratório\": \"migratóri\",\n  \"migrou\": \"migr\",\n  \"miguel\": \"miguel\",\n  \"mike\": \"mik\",\n  \"mil\": \"mil\",\n  \"milagre\": \"milagr\",\n  \"milagreiro\": \"milagreir\",\n  \"milagres\": \"milagr\",\n  \"milagrosa\": \"milagr\",\n  \"milagrosas\": \"milagr\",\n  \"milagroso\": \"milagr\",\n  \"milão\": \"milã\",\n  \"milena\": \"milen\",\n  \"milenar\": \"milen\",\n  \"milenares\": \"milen\",\n  \"milene\": \"milen\",\n  \"milênio\": \"milêni\",\n  \"milênios\": \"milêni\",\n  \"milésimo\": \"milésim\",\n  \"milésimos\": \"milés\",\n  \"milfede\": \"milfed\",\n  \"milhão\": \"milhã\",\n  \"milharal\": \"milharal\",\n  \"milhares\": \"milh\",\n  \"milho\": \"milh\",\n  \"milhões\": \"milhõ\",\n  \"milícias\": \"milíc\",\n  \"miligrama\": \"miligram\",\n  \"miligramas\": \"miligram\",\n  \"milimétricas\": \"milimétr\",\n  \"milímetro\": \"milímetr\",\n  \"milímetros\": \"milímetr\",\n  \"milionária\": \"milionár\",\n  \"milionárias\": \"milionár\",\n  \"milionário\": \"milionári\",\n  \"milionários\": \"milionári\",\n  \"militância\": \"milit\",\n  \"militante\": \"milit\",\n  \"militantes\": \"milit\",\n  \"militão\": \"militã\",\n  \"militar\": \"milit\",\n  \"militaram\": \"milit\",\n  \"militares\": \"milit\",\n  \"militello\": \"militell\",\n  \"militou\": \"milit\",\n  \"milken\": \"milken\",\n  \"milla\": \"mill\",\n  \"miller\": \"mill\",\n  \"millet\": \"millet\",\n  \"millôr\": \"millôr\",\n  \"milton\": \"milton\",\n  \"mim\": \"mim\",\n  \"mimada\": \"mim\",\n  \"mimeografado\": \"mimeograf\",\n  \"mimeógrafo\": \"mimeógraf\",\n  \"mimética\": \"mimét\",\n  \"mimetizadas\": \"mimetiz\",\n  \"mímica\": \"mímic\",\n  \"mimos\": \"mim\",\n  \"min\": \"min\",\n  \"mina\": \"min\",\n  \"minado\": \"min\",\n  \"minaram\": \"min\",\n  \"minarelli\": \"minarell\",\n  \"minaretes\": \"minaret\",\n  \"minas\": \"min\",\n  \"mindlin\": \"mindlin\",\n  \"mineira\": \"mineir\",\n  \"mineirão\": \"min\",\n  \"mineirinho\": \"mineirinh\",\n  \"mineiro\": \"mineir\",\n  \"mineiros\": \"mineir\",\n  \"mineração\": \"miner\",\n  \"mineradora\": \"miner\",\n  \"minerais\": \"miner\",\n  \"mineral\": \"mineral\",\n  \"minério\": \"minéri\",\n  \"minérios\": \"minéri\",\n  \"mingaus\": \"mingaus\",\n  \"minguado\": \"mingu\",\n  \"minguados\": \"mingu\",\n  \"minha\": \"minh\",\n  \"minhas\": \"minh\",\n  \"miniaturas\": \"miniatur\",\n  \"miniaturização\": \"miniaturiz\",\n  \"miniblusa\": \"miniblus\",\n  \"minicenso\": \"minicens\",\n  \"minicratera\": \"minicrat\",\n  \"minifãs\": \"minifãs\",\n  \"mínima\": \"mínim\",\n  \"minimalista\": \"minimal\",\n  \"minimamente\": \"minim\",\n  \"mínimas\": \"mínim\",\n  \"minimizam\": \"minimiz\",\n  \"minimizar\": \"minimiz\",\n  \"mínimo\": \"mínim\",\n  \"mínimos\": \"mín\",\n  \"minimulher\": \"minimulh\",\n  \"minissaia\": \"minissa\",\n  \"minissérie\": \"minisséri\",\n  \"minisséries\": \"minisséri\",\n  \"ministerial\": \"ministerial\",\n  \"ministério\": \"ministéri\",\n  \"ministérios\": \"ministéri\",\n  \"ministras\": \"ministr\",\n  \"ministro\": \"ministr\",\n  \"ministros\": \"ministr\",\n  \"minnesotta\": \"minnesott\",\n  \"mino\": \"min\",\n  \"minoria\": \"minor\",\n  \"minorias\": \"minor\",\n  \"minoritária\": \"minoritár\",\n  \"minoritário\": \"minoritári\",\n  \"minta\": \"mint\",\n  \"minúcias\": \"minúc\",\n  \"minuciosa\": \"minuc\",\n  \"minuciosas\": \"minuc\",\n  \"minucioso\": \"minuc\",\n  \"minúscula\": \"minúscul\",\n  \"minúsculo\": \"minúscul\",\n  \"minúsculos\": \"minúscul\",\n  \"minuta\": \"minut\",\n  \"minuto\": \"minut\",\n  \"minutos\": \"minut\",\n  \"miocárdio\": \"miocárdi\",\n  \"miolo\": \"miol\",\n  \"mioma\": \"miom\",\n  \"miomas\": \"miom\",\n  \"miomatoso\": \"miomat\",\n  \"míopes\": \"míop\",\n  \"miopia\": \"miop\",\n  \"miou\": \"miou\",\n  \"mir\": \"mir\",\n  \"mira\": \"mir\",\n  \"mirabolantes\": \"mirabol\",\n  \"miraculosa\": \"miracul\",\n  \"mirage\": \"mirag\",\n  \"miragem\": \"mirag\",\n  \"miramax\": \"miramax\",\n  \"miranda\": \"mirand\",\n  \"mirani\": \"miran\",\n  \"mirante\": \"mirant\",\n  \"mircea\": \"mirc\",\n  \"miriam\": \"mir\",\n  \"míriam\": \"mír\",\n  \"mirian\": \"mirian\",\n  \"mírian\": \"mírian\",\n  \"mirim\": \"mirim\",\n  \"miro\": \"mir\",\n  \"miron\": \"miron\",\n  \"mirrado\": \"mirr\",\n  \"miscelânea\": \"miscelân\",\n  \"miscigenação\": \"miscigen\",\n  \"miseráveis\": \"miser\",\n  \"miserável\": \"miser\",\n  \"miseravelmente\": \"miser\",\n  \"miséria\": \"misér\",\n  \"misericórdia\": \"misericórd\",\n  \"míseros\": \"míser\",\n  \"miss\": \"miss\",\n  \"missa\": \"miss\",\n  \"missão\": \"missã\",\n  \"missas\": \"miss\",\n  \"missérie\": \"misséri\",\n  \"misses\": \"miss\",\n  \"missionária\": \"missionár\",\n  \"missionárias\": \"missionár\",\n  \"missionário\": \"missionári\",\n  \"missionários\": \"missionári\",\n  \"mississippi\": \"mississipp\",\n  \"missões\": \"missõ\",\n  \"mista\": \"mist\",\n  \"mistério\": \"mistéri\",\n  \"mistérios\": \"mistéri\",\n  \"misteriosa\": \"misteri\",\n  \"misteriosas\": \"misteri\",\n  \"misterioso\": \"misteri\",\n  \"mística\": \"místic\",\n  \"místico\": \"místic\",\n  \"mistificando\": \"mistific\",\n  \"misto\": \"mist\",\n  \"mistura\": \"mistur\",\n  \"misturada\": \"mistur\",\n  \"misturadas\": \"mistur\",\n  \"misturado\": \"mistur\",\n  \"misturados\": \"mistur\",\n  \"misturam\": \"mistur\",\n  \"misturando\": \"mistur\",\n  \"misturar\": \"mistur\",\n  \"misturas\": \"mistur\",\n  \"misturava\": \"mistur\",\n  \"mit\": \"mit\",\n  \"mítico\": \"mític\",\n  \"mito\": \"mit\",\n  \"mitologia\": \"mitolog\",\n  \"mitológico\": \"mitológ\",\n  \"mitos\": \"mit\",\n  \"mitsubishi\": \"mitsubish\",\n  \"mitsui\": \"mitsu\",\n  \"mitsuo\": \"mitsu\",\n  \"mitterrand\": \"mitterrand\",\n  \"miúda\": \"miúd\",\n  \"miudeza\": \"miudez\",\n  \"miudezas\": \"miudez\",\n  \"miúdos\": \"miúd\",\n  \"mix\": \"mix\",\n  \"mixado\": \"mix\",\n  \"ml\": \"ml\",\n  \"mmx\": \"mmx\",\n  \"moacir\": \"moac\",\n  \"moagem\": \"moag\",\n  \"moares\": \"moar\",\n  \"mobiliária\": \"mobiliár\",\n  \"mobiliário\": \"mobiliári\",\n  \"mobilidade\": \"mobil\",\n  \"mobilização\": \"mobiliz\",\n  \"mobilizar\": \"mobiliz\",\n  \"mobilizou\": \"mobiliz\",\n  \"mobral\": \"mobral\",\n  \"moça\": \"moc\",\n  \"moçambique\": \"moçambiqu\",\n  \"moças\": \"moc\",\n  \"mocassim\": \"mocassim\",\n  \"mochila\": \"mochil\",\n  \"mochileiros\": \"mochileir\",\n  \"mocidade\": \"mocidad\",\n  \"mocinhas\": \"mocinh\",\n  \"moço\": \"moc\",\n  \"moços\": \"moc\",\n  \"mocotó\": \"mocot\",\n  \"mod\": \"mod\",\n  \"moda\": \"mod\",\n  \"modalidade\": \"modal\",\n  \"modalidades\": \"modal\",\n  \"model\": \"model\",\n  \"modelagem\": \"modelag\",\n  \"modelar\": \"model\",\n  \"modeling\": \"modeling\",\n  \"modelista\": \"model\",\n  \"modelistas\": \"model\",\n  \"modelo\": \"model\",\n  \"modelos\": \"model\",\n  \"models\": \"models\",\n  \"modem\": \"mod\",\n  \"modems\": \"modems\",\n  \"moderação\": \"moder\",\n  \"moderadamente\": \"moder\",\n  \"moderadas\": \"moder\",\n  \"moderado\": \"moder\",\n  \"moderador\": \"moder\",\n  \"moderadores\": \"moder\",\n  \"moderados\": \"moder\",\n  \"moderar\": \"moder\",\n  \"moderassem\": \"moder\",\n  \"moderini\": \"moderin\",\n  \"moderna\": \"modern\",\n  \"modernas\": \"modern\",\n  \"modernidade\": \"modern\",\n  \"modernização\": \"moderniz\",\n  \"modernizar\": \"moderniz\",\n  \"modernizaram\": \"moderniz\",\n  \"moderno\": \"modern\",\n  \"modernos\": \"modern\",\n  \"modernoso\": \"modern\",\n  \"modesta\": \"modest\",\n  \"modestamente\": \"modest\",\n  \"modestas\": \"modest\",\n  \"modestia\": \"modest\",\n  \"modéstia\": \"modést\",\n  \"modesto\": \"modest\",\n  \"modestos\": \"modest\",\n  \"modificação\": \"modific\",\n  \"modificações\": \"modific\",\n  \"modificada\": \"modific\",\n  \"modificado\": \"modific\",\n  \"modificados\": \"modific\",\n  \"modificando\": \"modific\",\n  \"modificar\": \"modific\",\n  \"modificaram\": \"modific\",\n  \"modificaria\": \"modific\",\n  \"modificou\": \"modific\",\n  \"modinhas\": \"modinh\",\n  \"modismo\": \"modism\",\n  \"modismos\": \"modism\",\n  \"modo\": \"mod\",\n  \"modos\": \"mod\",\n  \"módulo\": \"módul\",\n  \"módulos\": \"módul\",\n  \"modus\": \"modus\",\n  \"moeda\": \"moed\",\n  \"moedas\": \"moed\",\n  \"moema\": \"moem\",\n  \"moet\": \"moet\",\n  \"mogi\": \"mog\",\n  \"mogno\": \"mogn\",\n  \"mogul\": \"mogul\",\n  \"moi\": \"moi\",\n  \"moinho\": \"moinh\",\n  \"moisés\": \"moisés\",\n  \"mojave\": \"mojav\",\n  \"mola\": \"mol\",\n  \"molas\": \"mol\",\n  \"molda\": \"mold\",\n  \"moldado\": \"mold\",\n  \"moldar\": \"mold\",\n  \"molde\": \"mold\",\n  \"moldes\": \"mold\",\n  \"moldou\": \"mold\",\n  \"moldura\": \"moldur\",\n  \"mole\": \"mol\",\n  \"molecada\": \"molec\",\n  \"molecagem\": \"molecag\",\n  \"molecagens\": \"molecagens\",\n  \"molécula\": \"molécul\",\n  \"molecular\": \"molecul\",\n  \"moleculares\": \"molecul\",\n  \"moléculas\": \"molécul\",\n  \"molejo\": \"molej\",\n  \"moleque\": \"molequ\",\n  \"moleques\": \"molequ\",\n  \"molestado\": \"molest\",\n  \"moléstia\": \"molést\",\n  \"moleza\": \"molez\",\n  \"molhada\": \"molh\",\n  \"molhava\": \"molh\",\n  \"molho\": \"molh\",\n  \"molhos\": \"molh\",\n  \"molière\": \"molièr\",\n  \"molina\": \"molin\",\n  \"moluscos\": \"molusc\",\n  \"momentânea\": \"momentân\",\n  \"momentaneamente\": \"momentan\",\n  \"momentâneas\": \"momentân\",\n  \"momentâneos\": \"momentân\",\n  \"momento\": \"moment\",\n  \"momentos\": \"moment\",\n  \"momentoso\": \"moment\",\n  \"mônaco\": \"mônac\",\n  \"monarca\": \"monarc\",\n  \"monarquia\": \"monarqu\",\n  \"monárquica\": \"monárqu\",\n  \"monarquista\": \"monarqu\",\n  \"monastério\": \"monastéri\",\n  \"monazítica\": \"monazít\",\n  \"monday\": \"monday\",\n  \"monde\": \"mond\",\n  \"monetária\": \"monetár\",\n  \"money\": \"money\",\n  \"monge\": \"mong\",\n  \"monges\": \"mong\",\n  \"mongóis\": \"mongó\",\n  \"mongol\": \"mongol\",\n  \"mongólia\": \"mongól\",\n  \"monica\": \"monic\",\n  \"mônica\": \"mônic\",\n  \"monique\": \"moniqu\",\n  \"monitoração\": \"monitor\",\n  \"monitorados\": \"monitor\",\n  \"monitoramento\": \"monitor\",\n  \"monitorar\": \"monitor\",\n  \"monitores\": \"monitor\",\n  \"moniz\": \"moniz\",\n  \"mono\": \"mon\",\n  \"monogâmica\": \"monogâm\",\n  \"monogâmico\": \"monogâm\",\n  \"monogâmicos\": \"monogâm\",\n  \"monopólio\": \"monopóli\",\n  \"monopólios\": \"monopóli\",\n  \"monossódico\": \"monossód\",\n  \"monoteístas\": \"monoteíst\",\n  \"monotemática\": \"monotemát\",\n  \"monotemático\": \"monotemát\",\n  \"monótona\": \"monóton\",\n  \"monótono\": \"monóton\",\n  \"monroe\": \"monro\",\n  \"monsenhor\": \"monsenhor\",\n  \"monserrat\": \"monserrat\",\n  \"monstrengos\": \"monstreng\",\n  \"monstro\": \"monstr\",\n  \"mont\": \"mont\",\n  \"monta\": \"mont\",\n  \"montada\": \"mont\",\n  \"montadas\": \"mont\",\n  \"montado\": \"mont\",\n  \"montadora\": \"montador\",\n  \"montadoras\": \"montador\",\n  \"montados\": \"mont\",\n  \"montagem\": \"montag\",\n  \"montagens\": \"montagens\",\n  \"montam\": \"mont\",\n  \"montamos\": \"mont\",\n  \"montana\": \"montan\",\n  \"montanarini\": \"montanarin\",\n  \"montanaro\": \"montanar\",\n  \"montando\": \"mont\",\n  \"montanha\": \"montanh\",\n  \"montanhas\": \"montanh\",\n  \"montanheses\": \"montanhes\",\n  \"montanhismo\": \"montanh\",\n  \"montanhista\": \"montanh\",\n  \"montanhosa\": \"montanh\",\n  \"montanhoso\": \"montanh\",\n  \"montante\": \"montant\",\n  \"montão\": \"montã\",\n  \"montar\": \"mont\",\n  \"montaram\": \"mont\",\n  \"montaria\": \"mont\",\n  \"montava\": \"mont\",\n  \"monte\": \"mont\",\n  \"montei\": \"mont\",\n  \"monteiro\": \"monteir\",\n  \"monteleone\": \"monteleon\",\n  \"montellizado\": \"montelliz\",\n  \"montello\": \"montell\",\n  \"montenegro\": \"montenegr\",\n  \"montes\": \"mont\",\n  \"montoro\": \"montor\",\n  \"montou\": \"mont\",\n  \"montreal\": \"montreal\",\n  \"monumentais\": \"monument\",\n  \"monumental\": \"monumental\",\n  \"monumento\": \"monument\",\n  \"monumentos\": \"monument\",\n  \"monza\": \"monz\",\n  \"moon\": \"moon\",\n  \"moore\": \"moor\",\n  \"mor\": \"mor\",\n  \"mora\": \"mor\",\n  \"moradia\": \"morad\",\n  \"morado\": \"mor\",\n  \"morador\": \"morador\",\n  \"moradora\": \"morador\",\n  \"moradoras\": \"morador\",\n  \"moradores\": \"morador\",\n  \"moraes\": \"mora\",\n  \"morais\": \"mor\",\n  \"moral\": \"moral\",\n  \"moralidades\": \"moral\",\n  \"moralismo\": \"moral\",\n  \"moralista\": \"moral\",\n  \"moralistas\": \"moral\",\n  \"moram\": \"mor\",\n  \"moramos\": \"mor\",\n  \"morando\": \"mor\",\n  \"morar\": \"mor\",\n  \"morarmos\": \"mor\",\n  \"morato\": \"morat\",\n  \"moratória\": \"moratór\",\n  \"morava\": \"mor\",\n  \"moravam\": \"mor\",\n  \"morávamos\": \"mor\",\n  \"mordida\": \"mord\",\n  \"mordomias\": \"mordom\",\n  \"moreau\": \"moreau\",\n  \"morei\": \"mor\",\n  \"moreira\": \"moreir\",\n  \"morena\": \"moren\",\n  \"morenas\": \"moren\",\n  \"morengueira\": \"morengueir\",\n  \"moreno\": \"moren\",\n  \"moretto\": \"morett\",\n  \"morfeu\": \"morf\",\n  \"morfologia\": \"morfolog\",\n  \"morfológicas\": \"morfológ\",\n  \"morgan\": \"morgan\",\n  \"moribunda\": \"moribund\",\n  \"moribundo\": \"moribund\",\n  \"moritz\": \"moritz\",\n  \"moro\": \"mor\",\n  \"morou\": \"mor\",\n  \"morre\": \"morr\",\n  \"morrem\": \"morr\",\n  \"morrendo\": \"morr\",\n  \"morrer\": \"morr\",\n  \"morreram\": \"morr\",\n  \"morrerão\": \"morr\",\n  \"morreria\": \"morr\",\n  \"morreriam\": \"morr\",\n  \"morresse\": \"morr\",\n  \"morreu\": \"morr\",\n  \"morri\": \"morr\",\n  \"morria\": \"morr\",\n  \"morriam\": \"morr\",\n  \"morrido\": \"morr\",\n  \"morro\": \"morr\",\n  \"morros\": \"morr\",\n  \"morrotes\": \"morrot\",\n  \"morta\": \"mort\",\n  \"mortágua\": \"mortágu\",\n  \"mortais\": \"mort\",\n  \"mortal\": \"mortal\",\n  \"mortalidade\": \"mortal\",\n  \"mortalmente\": \"mortal\",\n  \"mortas\": \"mort\",\n  \"morte\": \"mort\",\n  \"morteiros\": \"morteir\",\n  \"mortes\": \"mort\",\n  \"morto\": \"mort\",\n  \"morton\": \"morton\",\n  \"mortos\": \"mort\",\n  \"morumbi\": \"morumb\",\n  \"morumbifashion\": \"morumbifashion\",\n  \"mosaico\": \"mosaic\",\n  \"moscas\": \"mosc\",\n  \"moscatti\": \"moscatt\",\n  \"moscou\": \"mosc\",\n  \"moskos\": \"mosk\",\n  \"mosmorama\": \"mosmoram\",\n  \"mosquito\": \"mosquit\",\n  \"mosquitos\": \"mosquit\",\n  \"mossoró\": \"mossor\",\n  \"mostarda\": \"mostard\",\n  \"mosteiro\": \"mosteir\",\n  \"mosteiros\": \"mosteir\",\n  \"mostra\": \"mostr\",\n  \"mostrá\": \"mostr\",\n  \"mostrado\": \"mostr\",\n  \"mostradores\": \"mostrador\",\n  \"mostram\": \"mostr\",\n  \"mostramos\": \"mostr\",\n  \"mostrando\": \"mostr\",\n  \"mostrar\": \"mostr\",\n  \"mostrara\": \"mostr\",\n  \"mostrará\": \"mostr\",\n  \"mostraram\": \"mostr\",\n  \"mostras\": \"mostr\",\n  \"mostrasse\": \"mostr\",\n  \"mostrava\": \"mostr\",\n  \"mostravam\": \"mostr\",\n  \"mostre\": \"mostr\",\n  \"mostrei\": \"mostr\",\n  \"mostrem\": \"mostr\",\n  \"mostro\": \"mostr\",\n  \"mostrou\": \"mostr\",\n  \"mota\": \"mot\",\n  \"motel\": \"motel\",\n  \"motins\": \"motins\",\n  \"motivação\": \"motiv\",\n  \"motivada\": \"motiv\",\n  \"motivadas\": \"motiv\",\n  \"motivado\": \"motiv\",\n  \"motivaram\": \"motiv\",\n  \"motivo\": \"motiv\",\n  \"motivos\": \"motiv\",\n  \"moto\": \"mot\",\n  \"motocicleta\": \"motociclet\",\n  \"motocross\": \"motocross\",\n  \"motor\": \"motor\",\n  \"motora\": \"motor\",\n  \"motores\": \"motor\",\n  \"motorista\": \"motor\",\n  \"motoristas\": \"motor\",\n  \"motorizados\": \"motoriz\",\n  \"motorola\": \"motorol\",\n  \"motors\": \"motors\",\n  \"motos\": \"mot\",\n  \"mott\": \"mott\",\n  \"motta\": \"mott\",\n  \"moubarak\": \"moubarak\",\n  \"moulage\": \"moulag\",\n  \"moura\": \"mour\",\n  \"mourad\": \"mourad\",\n  \"mourão\": \"mourã\",\n  \"moureau\": \"moureau\",\n  \"mouse\": \"mous\",\n  \"moussawer\": \"moussaw\",\n  \"mousson\": \"mousson\",\n  \"móveis\": \"móv\",\n  \"móvel\": \"móvel\",\n  \"movem\": \"mov\",\n  \"movement\": \"movement\",\n  \"movendo\": \"mov\",\n  \"mover\": \"mov\",\n  \"moveram\": \"mov\",\n  \"moveu\": \"mov\",\n  \"movida\": \"mov\",\n  \"movido\": \"mov\",\n  \"movidos\": \"mov\",\n  \"movimenta\": \"moviment\",\n  \"movimentação\": \"moviment\",\n  \"movimentada\": \"moviment\",\n  \"movimentadas\": \"moviment\",\n  \"movimentados\": \"moviment\",\n  \"movimentam\": \"moviment\",\n  \"movimentar\": \"moviment\",\n  \"movimentava\": \"moviment\",\n  \"movimento\": \"moviment\",\n  \"movimentos\": \"moviment\",\n  \"movimentou\": \"moviment\",\n  \"mozart\": \"mozart\",\n  \"mozine\": \"mozin\",\n  \"mpb\": \"mpb\",\n  \"mpla\": \"mpla\",\n  \"mpm\": \"mpm\",\n  \"mr\": \"mr\",\n  \"mrk\": \"mrk\",\n  \"ms\": \"ms\",\n  \"mst\": \"mst\",\n  \"mt\": \"mt\",\n  \"mtv\": \"mtv\",\n  \"múcio\": \"múci\",\n  \"mucosa\": \"mucos\",\n  \"muçulmana\": \"muçulman\",\n  \"muçulmano\": \"muçulman\",\n  \"muçulmanos\": \"muçulman\",\n  \"muda\": \"mud\",\n  \"mudá\": \"mud\",\n  \"mudada\": \"mud\",\n  \"mudadas\": \"mud\",\n  \"mudado\": \"mud\",\n  \"mudamos\": \"mud\",\n  \"mudança\": \"mudanc\",\n  \"mudanças\": \"mudanc\",\n  \"mudando\": \"mud\",\n  \"mudar\": \"mud\",\n  \"mudara\": \"mud\",\n  \"mudará\": \"mud\",\n  \"mudaram\": \"mud\",\n  \"mudaria\": \"mud\",\n  \"mude\": \"mud\",\n  \"mudei\": \"mud\",\n  \"mudez\": \"mudez\",\n  \"mudo\": \"mud\",\n  \"mudos\": \"mud\",\n  \"mudou\": \"mud\",\n  \"muggiati\": \"muggiat\",\n  \"muita\": \"muit\",\n  \"muitas\": \"muit\",\n  \"muito\": \"muit\",\n  \"muitos\": \"muit\",\n  \"mujalli\": \"mujall\",\n  \"mula\": \"mul\",\n  \"mulas\": \"mul\",\n  \"mulata\": \"mulat\",\n  \"mulatas\": \"mulat\",\n  \"mulatice\": \"mulatic\",\n  \"mulatinho\": \"mulatinh\",\n  \"mulato\": \"mulat\",\n  \"mulatos\": \"mulat\",\n  \"mulatti\": \"mulatt\",\n  \"muletas\": \"mulet\",\n  \"mulher\": \"mulh\",\n  \"mulherada\": \"mulher\",\n  \"mulherão\": \"mulh\",\n  \"mulherengo\": \"mulhereng\",\n  \"mulheres\": \"mulh\",\n  \"muller\": \"mull\",\n  \"müller\": \"müller\",\n  \"multa\": \"mult\",\n  \"multá\": \"mult\",\n  \"multados\": \"mult\",\n  \"multam\": \"mult\",\n  \"multar\": \"mult\",\n  \"multas\": \"mult\",\n  \"multicolorida\": \"multicolor\",\n  \"multidão\": \"multidã\",\n  \"multidisciplinar\": \"multidisciplin\",\n  \"multidões\": \"multidõ\",\n  \"multimídia\": \"multimíd\",\n  \"multimilionário\": \"multimilionári\",\n  \"multinacionais\": \"multinacion\",\n  \"multinacional\": \"multinacional\",\n  \"múltipla\": \"múltipl\",\n  \"múltiplas\": \"múltipl\",\n  \"multiplica\": \"multipl\",\n  \"multiplicação\": \"multiplic\",\n  \"multiplicado\": \"multiplic\",\n  \"multiplicam\": \"multiplic\",\n  \"multiplicar\": \"multiplic\",\n  \"multiplicaram\": \"multiplic\",\n  \"multiplicou\": \"multiplic\",\n  \"múltiplo\": \"múltipl\",\n  \"mundana\": \"mundan\",\n  \"múndi\": \"múnd\",\n  \"mundiais\": \"mundi\",\n  \"mundial\": \"mundial\",\n  \"mundialmente\": \"mundial\",\n  \"mundista\": \"mundist\",\n  \"mundo\": \"mund\",\n  \"mundos\": \"mund\",\n  \"munhoz\": \"munhoz\",\n  \"munição\": \"muniçã\",\n  \"municiemos\": \"munic\",\n  \"municipais\": \"municip\",\n  \"municipal\": \"municipal\",\n  \"municipalização\": \"municipaliz\",\n  \"município\": \"municípi\",\n  \"municípios\": \"municípi\",\n  \"munidas\": \"mun\",\n  \"munique\": \"muniqu\",\n  \"muniz\": \"muniz\",\n  \"munno\": \"munn\",\n  \"murad\": \"murad\",\n  \"muralha\": \"muralh\",\n  \"muralhas\": \"muralh\",\n  \"murcha\": \"murch\",\n  \"murcho\": \"murch\",\n  \"murilo\": \"muril\",\n  \"muro\": \"mur\",\n  \"murro\": \"murr\",\n  \"mururoa\": \"mururo\",\n  \"musa\": \"mus\",\n  \"musas\": \"mus\",\n  \"musculação\": \"muscul\",\n  \"muscular\": \"muscul\",\n  \"musculares\": \"muscul\",\n  \"musculatura\": \"musculatur\",\n  \"músculo\": \"múscul\",\n  \"músculos\": \"múscul\",\n  \"musculoso\": \"muscul\",\n  \"musculosos\": \"muscul\",\n  \"musée\": \"musé\",\n  \"museu\": \"mus\",\n  \"museum\": \"museum\",\n  \"museus\": \"museus\",\n  \"musgo\": \"musg\",\n  \"music\": \"music\",\n  \"música\": \"músic\",\n  \"musicais\": \"music\",\n  \"musical\": \"musical\",\n  \"músicas\": \"músic\",\n  \"músico\": \"músic\",\n  \"músicos\": \"músic\",\n  \"musotto\": \"musott\",\n  \"musseline\": \"musselin\",\n  \"must\": \"must\",\n  \"mustafa\": \"mustaf\",\n  \"muster\": \"must\",\n  \"mutação\": \"mutaçã\",\n  \"mutações\": \"mutaçõ\",\n  \"mutado\": \"mut\",\n  \"mutante\": \"mutant\",\n  \"mutilados\": \"mutil\",\n  \"mutretas\": \"mutret\",\n  \"mutuamente\": \"mutu\",\n  \"mutuários\": \"mutuári\",\n  \"mútuo\": \"mútu\",\n  \"muy\": \"muy\",\n  \"muylaert\": \"muylaert\",\n  \"muyupampa\": \"muyupamp\",\n  \"mx\": \"mx\",\n  \"my\": \"my\",\n  \"mylles\": \"mylles\",\n  \"mystéres\": \"mystér\",\n  \"n\": \"n\",\n  \"na\": \"na\",\n  \"nababesco\": \"nababesc\",\n  \"nabil\": \"nabil\",\n  \"nabo\": \"nab\",\n  \"nabor\": \"nabor\",\n  \"nabos\": \"nab\",\n  \"nabuco\": \"nabuc\",\n  \"nação\": \"naçã\",\n  \"nachtergaele\": \"nachtergael\",\n  \"nacionais\": \"nacion\",\n  \"nacional\": \"nacional\",\n  \"nacionalidade\": \"nacional\",\n  \"nacionalismo\": \"nacional\",\n  \"nacionalista\": \"nacional\",\n  \"nacionalistas\": \"nacional\",\n  \"nacionalmente\": \"nacional\",\n  \"nações\": \"naçõ\",\n  \"nada\": \"nad\",\n  \"nadando\": \"nad\",\n  \"nadar\": \"nad\",\n  \"nádegas\": \"nádeg\",\n  \"nadja\": \"nadj\",\n  \"nador\": \"nador\",\n  \"nadotti\": \"nadott\",\n  \"nadou\": \"nad\",\n  \"nafta\": \"naft\",\n  \"nagasaki\": \"nagasak\",\n  \"nagato\": \"nagat\",\n  \"nagesh\": \"nagesh\",\n  \"nagô\": \"nagô\",\n  \"nahuel\": \"nahuel\",\n  \"nahum\": \"nahum\",\n  \"naief\": \"naief\",\n  \"náilon\": \"náilon\",\n  \"naipe\": \"naip\",\n  \"naira\": \"nair\",\n  \"nairo\": \"nair\",\n  \"nakao\": \"naka\",\n  \"nalbert\": \"nalbert\",\n  \"nalina\": \"nalin\",\n  \"namora\": \"namor\",\n  \"namorá\": \"namor\",\n  \"namorada\": \"namor\",\n  \"namoradas\": \"namor\",\n  \"namoradinhos\": \"namoradinh\",\n  \"namorado\": \"namor\",\n  \"namorador\": \"namor\",\n  \"namorados\": \"namor\",\n  \"namoramos\": \"namor\",\n  \"namorando\": \"namor\",\n  \"namorar\": \"namor\",\n  \"namoraram\": \"namor\",\n  \"namorava\": \"namor\",\n  \"namoravam\": \"namor\",\n  \"namorei\": \"namor\",\n  \"namoro\": \"namor\",\n  \"namoros\": \"namor\",\n  \"namorou\": \"namor\",\n  \"nan\": \"nan\",\n  \"nana\": \"nan\",\n  \"nãnã\": \"nãnã\",\n  \"nancy\": \"nancy\",\n  \"nanda\": \"nand\",\n  \"nanini\": \"nanin\",\n  \"nanquim\": \"nanquim\",\n  \"nanterre\": \"nanterr\",\n  \"não\": \"nã\",\n  \"naomi\": \"naom\",\n  \"nãos\": \"nã\",\n  \"napoleão\": \"napoleã\",\n  \"napoleônicas\": \"napoleôn\",\n  \"naquela\": \"naquel\",\n  \"naquelas\": \"naquel\",\n  \"naquele\": \"naquel\",\n  \"naqueles\": \"naquel\",\n  \"naquilo\": \"naquil\",\n  \"narcisismo\": \"narcis\",\n  \"narcisista\": \"narcis\",\n  \"narciso\": \"narcis\",\n  \"narcos\": \"narc\",\n  \"narcóticos\": \"narcót\",\n  \"narcotraficantes\": \"narcotrafic\",\n  \"narcotráfico\": \"narcotráf\",\n  \"nardeli\": \"nardel\",\n  \"narguilés\": \"narguilés\",\n  \"narigudo\": \"narigud\",\n  \"nariz\": \"nariz\",\n  \"narra\": \"narr\",\n  \"narrador\": \"narrador\",\n  \"narradores\": \"narrador\",\n  \"narrativa\": \"narrat\",\n  \"narvaes\": \"narva\",\n  \"nas\": \"nas\",\n  \"nasa\": \"nas\",\n  \"nasais\": \"nas\",\n  \"nasal\": \"nasal\",\n  \"nasce\": \"nasc\",\n  \"nascem\": \"nasc\",\n  \"nascer\": \"nasc\",\n  \"nascera\": \"nasc\",\n  \"nasceram\": \"nasc\",\n  \"nasceu\": \"nasc\",\n  \"nasci\": \"nasc\",\n  \"nascia\": \"nasc\",\n  \"nascida\": \"nasc\",\n  \"nascidas\": \"nasc\",\n  \"nascido\": \"nasc\",\n  \"nascidos\": \"nasc\",\n  \"nascimento\": \"nasciment\",\n  \"nasr\": \"nasr\",\n  \"nasser\": \"nass\",\n  \"nastassia\": \"nastass\",\n  \"nata\": \"nat\",\n  \"natação\": \"nataçã\",\n  \"natal\": \"natal\",\n  \"natália\": \"natál\",\n  \"natalina\": \"natalin\",\n  \"natalino\": \"natalin\",\n  \"natanson\": \"natanson\",\n  \"natário\": \"natári\",\n  \"natasha\": \"natash\",\n  \"nation\": \"nation\",\n  \"national\": \"national\",\n  \"nations\": \"nations\",\n  \"nativa\": \"nativ\",\n  \"nativas\": \"nativ\",\n  \"nativo\": \"nativ\",\n  \"nativos\": \"nativ\",\n  \"nato\": \"nat\",\n  \"natura\": \"natur\",\n  \"naturais\": \"natur\",\n  \"natural\": \"natural\",\n  \"naturalidade\": \"natural\",\n  \"naturalismo\": \"natural\",\n  \"naturalista\": \"natural\",\n  \"naturalistas\": \"natural\",\n  \"naturalmente\": \"natural\",\n  \"nature\": \"natur\",\n  \"natureza\": \"natur\",\n  \"naturezas\": \"natur\",\n  \"nau\": \"nau\",\n  \"naufrágio\": \"naufrági\",\n  \"naufrágios\": \"naufrági\",\n  \"naufragou\": \"naufrag\",\n  \"naus\": \"naus\",\n  \"náuseas\": \"náus\",\n  \"náutica\": \"náutic\",\n  \"náutico\": \"náutic\",\n  \"náuticos\": \"náutic\",\n  \"navais\": \"nav\",\n  \"naval\": \"naval\",\n  \"navalha\": \"navalh\",\n  \"nave\": \"nav\",\n  \"navega\": \"naveg\",\n  \"navegação\": \"naveg\",\n  \"navegações\": \"naveg\",\n  \"navegador\": \"naveg\",\n  \"navegadores\": \"naveg\",\n  \"navegando\": \"naveg\",\n  \"navegante\": \"naveg\",\n  \"navegantes\": \"naveg\",\n  \"navegar\": \"naveg\",\n  \"navegáveis\": \"naveg\",\n  \"naves\": \"nav\",\n  \"navigation\": \"navigation\",\n  \"navigator\": \"navigator\",\n  \"navio\": \"navi\",\n  \"navios\": \"navi\",\n  \"navratilova\": \"navratilov\",\n  \"nazar\": \"naz\",\n  \"nazaré\": \"nazar\",\n  \"nazareno\": \"nazaren\",\n  \"nazareth\": \"nazareth\",\n  \"nazismo\": \"nazism\",\n  \"nazista\": \"nazist\",\n  \"nba\": \"nba\",\n  \"ncia\": \"nci\",\n  \"né\": \"né\",\n  \"neal\": \"neal\",\n  \"neblina\": \"neblin\",\n  \"nebulizador\": \"nebuliz\",\n  \"nebulosa\": \"nebul\",\n  \"nebuloso\": \"nebul\",\n  \"necessaire\": \"necessair\",\n  \"necessária\": \"necessár\",\n  \"necessariamente\": \"necessari\",\n  \"necessáriamente\": \"necessári\",\n  \"necessárias\": \"necessár\",\n  \"necessário\": \"necessári\",\n  \"necessários\": \"necessári\",\n  \"necessidade\": \"necess\",\n  \"necessidades\": \"necess\",\n  \"necessita\": \"necessit\",\n  \"necessitadas\": \"necessit\",\n  \"necessitam\": \"necessit\",\n  \"necessitamos\": \"necessit\",\n  \"necessitar\": \"necessit\",\n  \"necessitará\": \"necessit\",\n  \"necessitavam\": \"necessit\",\n  \"necrófilos\": \"necrófil\",\n  \"necropsia\": \"necrops\",\n  \"necrose\": \"necros\",\n  \"nector\": \"nector\",\n  \"nefasta\": \"nefast\",\n  \"nefasto\": \"nefast\",\n  \"nefrologia\": \"nefrolog\",\n  \"nefrologista\": \"nefrolog\",\n  \"nega\": \"neg\",\n  \"negação\": \"negaçã\",\n  \"negada\": \"neg\",\n  \"negado\": \"neg\",\n  \"negados\": \"neg\",\n  \"negam\": \"neg\",\n  \"negar\": \"neg\",\n  \"negasse\": \"neg\",\n  \"negativa\": \"negat\",\n  \"negativas\": \"negat\",\n  \"negativismo\": \"negativ\",\n  \"negativo\": \"negat\",\n  \"negativos\": \"negat\",\n  \"negava\": \"neg\",\n  \"negligência\": \"negligent\",\n  \"negligências\": \"negligent\",\n  \"nego\": \"neg\",\n  \"negó\": \"neg\",\n  \"negocia\": \"negoc\",\n  \"negociá\": \"negoci\",\n  \"negociação\": \"negoc\",\n  \"negociações\": \"negoc\",\n  \"negociada\": \"negoc\",\n  \"negociadas\": \"negoc\",\n  \"negociado\": \"negoc\",\n  \"negociados\": \"negoc\",\n  \"negociam\": \"negoc\",\n  \"negociamos\": \"negoc\",\n  \"negociando\": \"negoc\",\n  \"negociantes\": \"negoc\",\n  \"negociar\": \"negoc\",\n  \"negociatas\": \"negociat\",\n  \"negociava\": \"negoc\",\n  \"negócio\": \"negóci\",\n  \"negócios\": \"negóci\",\n  \"negociou\": \"negoc\",\n  \"negona\": \"negon\",\n  \"negou\": \"neg\",\n  \"negra\": \"negr\",\n  \"negrão\": \"negrã\",\n  \"negras\": \"negr\",\n  \"negrinhos\": \"negrinh\",\n  \"negrini\": \"negrin\",\n  \"negritude\": \"negritud\",\n  \"negro\": \"negr\",\n  \"negrona\": \"negron\",\n  \"negros\": \"negr\",\n  \"negue\": \"neg\",\n  \"neguei\": \"negu\",\n  \"neguem\": \"negu\",\n  \"neide\": \"neid\",\n  \"neidinha\": \"neidinh\",\n  \"neiva\": \"neiv\",\n  \"nela\": \"nel\",\n  \"nelas\": \"nel\",\n  \"nele\": \"nel\",\n  \"neles\": \"nel\",\n  \"nelio\": \"neli\",\n  \"nelson\": \"nelson\",\n  \"nélson\": \"nélson\",\n  \"nem\": \"nem\",\n  \"nenê\": \"nen\",\n  \"nenhum\": \"nenhum\",\n  \"nenhuma\": \"nenhum\",\n  \"neo\": \"neo\",\n  \"neoclássicos\": \"neocláss\",\n  \"neoliberal\": \"neoliberal\",\n  \"neoludita\": \"neoludit\",\n  \"neonatologista\": \"neonatolog\",\n  \"neopentecostais\": \"neopentecost\",\n  \"neosaldina\": \"neosaldin\",\n  \"nepad\": \"nepad\",\n  \"nepal\": \"nepal\",\n  \"nepomuceno\": \"nepomucen\",\n  \"nervo\": \"nerv\",\n  \"nervos\": \"nerv\",\n  \"nervosa\": \"nervos\",\n  \"nervosas\": \"nervos\",\n  \"nervosismo\": \"nervos\",\n  \"nervoso\": \"nervos\",\n  \"nervosos\": \"nervos\",\n  \"nessa\": \"ness\",\n  \"nessas\": \"ness\",\n  \"nesse\": \"ness\",\n  \"nesses\": \"ness\",\n  \"nesta\": \"nest\",\n  \"nestas\": \"nest\",\n  \"neste\": \"nest\",\n  \"nestes\": \"nest\",\n  \"nestlé\": \"nestl\",\n  \"nestlehner\": \"nestlehn\",\n  \"nestor\": \"nestor\",\n  \"neszlinger\": \"neszling\",\n  \"net\": \"net\",\n  \"neta\": \"net\",\n  \"netas\": \"net\",\n  \"netfones\": \"netfon\",\n  \"netinho\": \"netinh\",\n  \"netmeeting\": \"netmeeting\",\n  \"neto\": \"net\",\n  \"netos\": \"net\",\n  \"netscape\": \"netscap\",\n  \"netspeak\": \"netspeak\",\n  \"netto\": \"nett\",\n  \"network\": \"network\",\n  \"netz\": \"netz\",\n  \"neuber\": \"neub\",\n  \"neurocientista\": \"neurocient\",\n  \"neurocirurgia\": \"neurocirurg\",\n  \"neurocirurgião\": \"neurocirurgiã\",\n  \"neurocirurgiões\": \"neurocirurgiõ\",\n  \"neurofisiologistas\": \"neurofisiolog\",\n  \"neurologia\": \"neurolog\",\n  \"neurológicos\": \"neurológ\",\n  \"neurologista\": \"neurolog\",\n  \"neurologistas\": \"neurolog\",\n  \"neuromotor\": \"neuromotor\",\n  \"neuronal\": \"neuronal\",\n  \"neurônios\": \"neurôni\",\n  \"neuropediatra\": \"neuropediatr\",\n  \"neuropeptidey\": \"neuropeptidey\",\n  \"neuropsicologia\": \"neuropsicolog\",\n  \"neurose\": \"neuros\",\n  \"neuroses\": \"neuros\",\n  \"neurotransmissor\": \"neurotransmissor\",\n  \"neurotransmissores\": \"neurotransmissor\",\n  \"neusa\": \"neus\",\n  \"neutra\": \"neutr\",\n  \"neutrino\": \"neutrin\",\n  \"neutro\": \"neutr\",\n  \"neuza\": \"neuz\",\n  \"nevada\": \"nev\",\n  \"nevado\": \"nev\",\n  \"neve\": \"nev\",\n  \"neves\": \"nev\",\n  \"neville\": \"nevill\",\n  \"névoa\": \"névo\",\n  \"nevrálgico\": \"nevrálg\",\n  \"new\": \"new\",\n  \"newark\": \"newark\",\n  \"newcastle\": \"newcastl\",\n  \"newsweek\": \"newsweek\",\n  \"newton\": \"newton\",\n  \"ney\": \"ney\",\n  \"ng\": \"ng\",\n  \"nhenhenhém\": \"nhenhenhém\",\n  \"nicarágua\": \"nicarágu\",\n  \"nice\": \"nic\",\n  \"nicioli\": \"niciol\",\n  \"nickname\": \"nicknam\",\n  \"nicolau\": \"nicolau\",\n  \"nicotina\": \"nicotin\",\n  \"nielsen\": \"nielsen\",\n  \"niemeyer\": \"niemey\",\n  \"nifutimox\": \"nifutimox\",\n  \"nigel\": \"nigel\",\n  \"niger\": \"nig\",\n  \"nigéria\": \"nigér\",\n  \"nigeriano\": \"nigerian\",\n  \"night\": \"night\",\n  \"niguém\": \"niguém\",\n  \"nih\": \"nih\",\n  \"nihil\": \"nihil\",\n  \"nike\": \"nik\",\n  \"nikita\": \"nikit\",\n  \"nilópolis\": \"nilópol\",\n  \"nilson\": \"nilson\",\n  \"nilta\": \"nilt\",\n  \"nilton\": \"nilton\",\n  \"nilvo\": \"nilv\",\n  \"nina\": \"nin\",\n  \"ninfetas\": \"ninfet\",\n  \"ninfomania\": \"ninfoman\",\n  \"ninguém\": \"ninguém\",\n  \"ninharia\": \"ninh\",\n  \"ninho\": \"ninh\",\n  \"nino\": \"nin\",\n  \"nio\": \"nio\",\n  \"nipônica\": \"nipôn\",\n  \"níqueis\": \"níqu\",\n  \"níquel\": \"níquel\",\n  \"niquini\": \"niquin\",\n  \"nirvana\": \"nirvan\",\n  \"nisei\": \"nis\",\n  \"nissan\": \"nissan\",\n  \"nisso\": \"niss\",\n  \"niterói\": \"niteró\",\n  \"nítida\": \"nít\",\n  \"nítidas\": \"nít\",\n  \"nítido\": \"nít\",\n  \"nitrito\": \"nitrit\",\n  \"nitritos\": \"nitrit\",\n  \"nitrocelulose\": \"nitrocelulos\",\n  \"nitrogênio\": \"nitrogêni\",\n  \"nitroglicerina\": \"nitroglicerin\",\n  \"nitropenta\": \"nitropent\",\n  \"nivaldo\": \"nivald\",\n  \"níveis\": \"nív\",\n  \"nível\": \"nível\",\n  \"nivela\": \"nivel\",\n  \"nivelados\": \"nivel\",\n  \"nixon\": \"nixon\",\n  \"nizan\": \"nizan\",\n  \"nlm\": \"nlm\",\n  \"no\": \"no\",\n  \"nó\": \"nó\",\n  \"nobel\": \"nobel\",\n  \"noble\": \"nobl\",\n  \"nobre\": \"nobr\",\n  \"nóbrega\": \"nóbreg\",\n  \"nobres\": \"nobr\",\n  \"nobreza\": \"nobrez\",\n  \"noção\": \"noçã\",\n  \"nocaute\": \"nocaut\",\n  \"nocauteado\": \"nocaut\",\n  \"nocauteou\": \"nocaut\",\n  \"nociva\": \"nociv\",\n  \"nocivas\": \"nociv\",\n  \"noções\": \"noçõ\",\n  \"nódulo\": \"nódul\",\n  \"nódulos\": \"nódul\",\n  \"noel\": \"noel\",\n  \"noemia\": \"noem\",\n  \"noêmia\": \"noêm\",\n  \"nogueira\": \"nogueir\",\n  \"noir\": \"noir\",\n  \"noitadas\": \"noit\",\n  \"noite\": \"noit\",\n  \"noites\": \"noit\",\n  \"noiva\": \"noiv\",\n  \"noivado\": \"noiv\",\n  \"noivas\": \"noiv\",\n  \"noivo\": \"noiv\",\n  \"nojo\": \"noj\",\n  \"nolli\": \"noll\",\n  \"nom\": \"nom\",\n  \"nômade\": \"nômad\",\n  \"nome\": \"nom\",\n  \"nomeação\": \"nomeaçã\",\n  \"nomeações\": \"nomeaçõ\",\n  \"nomeado\": \"nom\",\n  \"nomeados\": \"nom\",\n  \"nomear\": \"nom\",\n  \"nomeasse\": \"nom\",\n  \"nomeou\": \"nom\",\n  \"nomes\": \"nom\",\n  \"nominais\": \"nomin\",\n  \"nominal\": \"nominal\",\n  \"nominalmente\": \"nominal\",\n  \"nonsense\": \"nonsens\",\n  \"nora\": \"nor\",\n  \"noradrenalina\": \"noradrenalin\",\n  \"noras\": \"nor\",\n  \"norberto\": \"norbert\",\n  \"nordeste\": \"nord\",\n  \"nordestina\": \"nordestin\",\n  \"nordestinas\": \"nordestin\",\n  \"nordestino\": \"nordestin\",\n  \"nordestinos\": \"nordestin\",\n  \"norma\": \"norm\",\n  \"normais\": \"norm\",\n  \"normal\": \"normal\",\n  \"normalidade\": \"normal\",\n  \"normalíssima\": \"normalíssim\",\n  \"normalmente\": \"normal\",\n  \"norman\": \"norman\",\n  \"normas\": \"norm\",\n  \"normatiza\": \"normatiz\",\n  \"norodom\": \"norodom\",\n  \"noroeste\": \"noro\",\n  \"noronha\": \"noronh\",\n  \"norte\": \"nort\",\n  \"northwestern\": \"northwestern\",\n  \"noruega\": \"norueg\",\n  \"nos\": \"nos\",\n  \"nós\": \"nós\",\n  \"nossa\": \"noss\",\n  \"nossas\": \"noss\",\n  \"nosso\": \"noss\",\n  \"nossos\": \"noss\",\n  \"nostalgia\": \"nostalg\",\n  \"nostálgico\": \"nostálg\",\n  \"nostradamus\": \"nostradamus\",\n  \"nota\": \"not\",\n  \"notabilizou\": \"notabiliz\",\n  \"notada\": \"not\",\n  \"notados\": \"not\",\n  \"notamos\": \"not\",\n  \"notar\": \"not\",\n  \"notaram\": \"not\",\n  \"notarão\": \"not\",\n  \"notarem\": \"not\",\n  \"notarial\": \"notarial\",\n  \"notas\": \"not\",\n  \"notáveis\": \"not\",\n  \"notável\": \"notável\",\n  \"note\": \"not\",\n  \"notebook\": \"notebook\",\n  \"notei\": \"not\",\n  \"notícia\": \"notíc\",\n  \"noticiada\": \"notic\",\n  \"noticiar\": \"notic\",\n  \"noticiário\": \"noticiári\",\n  \"notícias\": \"notíc\",\n  \"notificados\": \"notific\",\n  \"notoriedade\": \"notoriedad\",\n  \"notório\": \"notóri\",\n  \"notou\": \"not\",\n  \"nottingham\": \"nottingh\",\n  \"noturna\": \"noturn\",\n  \"noturnas\": \"noturn\",\n  \"noturno\": \"noturn\",\n  \"noturnos\": \"noturn\",\n  \"noutra\": \"noutr\",\n  \"noutro\": \"noutr\",\n  \"nouveau\": \"nouveau\",\n  \"nova\": \"nov\",\n  \"novaes\": \"nova\",\n  \"novais\": \"nov\",\n  \"noval\": \"noval\",\n  \"novalgina\": \"novalgin\",\n  \"novalogic\": \"novalogic\",\n  \"novamente\": \"nov\",\n  \"novas\": \"nov\",\n  \"novatas\": \"novat\",\n  \"novato\": \"novat\",\n  \"novatos\": \"novat\",\n  \"novcar\": \"novc\",\n  \"nove\": \"nov\",\n  \"novel\": \"novel\",\n  \"novela\": \"novel\",\n  \"novelas\": \"novel\",\n  \"novelinha\": \"novelinh\",\n  \"novély\": \"novély\",\n  \"novembro\": \"novembr\",\n  \"novenas\": \"noven\",\n  \"noventa\": \"novent\",\n  \"novidade\": \"novidad\",\n  \"novidadeiros\": \"novidadeir\",\n  \"novidades\": \"novidad\",\n  \"novinha\": \"novinh\",\n  \"novinho\": \"novinh\",\n  \"novo\": \"nov\",\n  \"novos\": \"nov\",\n  \"noz\": \"noz\",\n  \"nozawa\": \"nozaw\",\n  \"nra\": \"nra\",\n  \"ntt\": \"ntt\",\n  \"nu\": \"nu\",\n  \"nua\": \"nua\",\n  \"núbia\": \"núb\",\n  \"nublado\": \"nubl\",\n  \"nuclear\": \"nucl\",\n  \"nucleares\": \"nucl\",\n  \"núcleo\": \"núcl\",\n  \"núcleos\": \"núcl\",\n  \"nudez\": \"nudez\",\n  \"nuestro\": \"nuestr\",\n  \"nulidade\": \"nulidad\",\n  \"nulidades\": \"nulidad\",\n  \"nulo\": \"nul\",\n  \"nulos\": \"nul\",\n  \"num\": \"num\",\n  \"numa\": \"num\",\n  \"number\": \"numb\",\n  \"numeradas\": \"numer\",\n  \"numerais\": \"numer\",\n  \"numerário\": \"numerári\",\n  \"numérica\": \"numér\",\n  \"numericamente\": \"numer\",\n  \"número\": \"númer\",\n  \"numeróloga\": \"numerólog\",\n  \"números\": \"númer\",\n  \"numerosa\": \"numer\",\n  \"numerosas\": \"numer\",\n  \"numerosos\": \"numer\",\n  \"nunca\": \"nunc\",\n  \"nunes\": \"nun\",\n  \"nuo\": \"nuo\",\n  \"nurse\": \"nurs\",\n  \"nutecnet\": \"nutecnet\",\n  \"nutre\": \"nutr\",\n  \"nutrem\": \"nutr\",\n  \"nutrição\": \"nutriçã\",\n  \"nutricionista\": \"nutricion\",\n  \"nutrientes\": \"nutrient\",\n  \"nutrindo\": \"nutr\",\n  \"nutrir\": \"nutr\",\n  \"nutritivas\": \"nutrit\",\n  \"nuvem\": \"nuv\",\n  \"nuvens\": \"nuvens\",\n  \"ny\": \"ny\",\n  \"o\": \"o\",\n  \"ó\": \"ó\",\n  \"oab\": \"oab\",\n  \"oásis\": \"oás\",\n  \"obá\": \"obá\",\n  \"obaluaê\": \"obalua\",\n  \"obcecado\": \"obcec\",\n  \"obcecados\": \"obcec\",\n  \"obedece\": \"obedec\",\n  \"obedecem\": \"obedec\",\n  \"obedecendo\": \"obedec\",\n  \"obedecer\": \"obedec\",\n  \"obedeceram\": \"obedec\",\n  \"obedeciam\": \"obedec\",\n  \"obedecidos\": \"obedec\",\n  \"obesa\": \"obes\",\n  \"obesas\": \"obes\",\n  \"obesidade\": \"obes\",\n  \"obeso\": \"obes\",\n  \"obesos\": \"obes\",\n  \"objeção\": \"objeçã\",\n  \"objetar\": \"objet\",\n  \"objetiva\": \"objet\",\n  \"objetivas\": \"objet\",\n  \"objetivo\": \"objet\",\n  \"objetivos\": \"objet\",\n  \"objeto\": \"objet\",\n  \"objetos\": \"objet\",\n  \"oblíquos\": \"oblíqu\",\n  \"óbolo\": \"óbol\",\n  \"obra\": \"obra\",\n  \"obras\": \"obras\",\n  \"obriga\": \"obrig\",\n  \"obrigação\": \"obrig\",\n  \"obrigações\": \"obrig\",\n  \"obrigada\": \"obrig\",\n  \"obrigadas\": \"obrig\",\n  \"obrigado\": \"obrig\",\n  \"obrigados\": \"obrig\",\n  \"obrigam\": \"obrig\",\n  \"obrigando\": \"obrig\",\n  \"obrigar\": \"obrig\",\n  \"obrigaram\": \"obrig\",\n  \"obrigatória\": \"obrigatór\",\n  \"obrigatoriamente\": \"obrigatori\",\n  \"obrigatório\": \"obrigatóri\",\n  \"obrigatórios\": \"obrigatóri\",\n  \"obrigava\": \"obrig\",\n  \"obrigo\": \"obrig\",\n  \"obrigou\": \"obrig\",\n  \"obscurecem\": \"obscurec\",\n  \"obscuro\": \"obscur\",\n  \"observa\": \"observ\",\n  \"observação\": \"observ\",\n  \"observações\": \"observ\",\n  \"observado\": \"observ\",\n  \"observam\": \"observ\",\n  \"observando\": \"observ\",\n  \"observar\": \"observ\",\n  \"observaríamos\": \"observ\",\n  \"observatório\": \"observatóri\",\n  \"observavam\": \"observ\",\n  \"observável\": \"observ\",\n  \"observe\": \"observ\",\n  \"observer\": \"observ\",\n  \"observo\": \"observ\",\n  \"observou\": \"observ\",\n  \"obsessão\": \"obsessã\",\n  \"obsessiva\": \"obsess\",\n  \"obsessivamente\": \"obsess\",\n  \"obsessivo\": \"obsess\",\n  \"obsessões\": \"obsessõ\",\n  \"obsolesc\": \"obsolesc\",\n  \"obsolescência\": \"obsolescent\",\n  \"obsoleto\": \"obsolet\",\n  \"obstáculo\": \"obstácul\",\n  \"obstáculos\": \"obstácul\",\n  \"obstat\": \"obstat\",\n  \"obstetra\": \"obstetr\",\n  \"obstetrícia\": \"obstetríc\",\n  \"obstinada\": \"obstin\",\n  \"obstinado\": \"obstin\",\n  \"obstinados\": \"obstin\",\n  \"obstrui\": \"obstru\",\n  \"obstruída\": \"obstruíd\",\n  \"obstruindo\": \"obstru\",\n  \"obtê\": \"obtê\",\n  \"obtém\": \"obtém\",\n  \"obtêm\": \"obtêm\",\n  \"obtenção\": \"obtençã\",\n  \"obtenha\": \"obtenh\",\n  \"obter\": \"obter\",\n  \"obteve\": \"obtev\",\n  \"obtida\": \"obtid\",\n  \"obtidas\": \"obtid\",\n  \"obtido\": \"obtid\",\n  \"obtidos\": \"obtid\",\n  \"obtive\": \"obtiv\",\n  \"obtiveram\": \"obtiv\",\n  \"óbvia\": \"óbvi\",\n  \"obviamente\": \"obvi\",\n  \"óbvias\": \"óbvi\",\n  \"óbvio\": \"óbvi\",\n  \"óbvios\": \"óbvi\",\n  \"oc\": \"oc\",\n  \"oca\": \"oca\",\n  \"ocas\": \"ocas\",\n  \"ocasião\": \"ocasiã\",\n  \"ocasiões\": \"ocasiõ\",\n  \"ocasional\": \"ocasional\",\n  \"ocasionalmente\": \"ocasional\",\n  \"occipitais\": \"occipit\",\n  \"occipital\": \"occipital\",\n  \"oceania\": \"ocean\",\n  \"oceano\": \"ocean\",\n  \"oceanografia\": \"oceanograf\",\n  \"oceanos\": \"ocean\",\n  \"ocidentais\": \"ocident\",\n  \"ocidental\": \"ocidental\",\n  \"ocidentalizado\": \"ocidentaliz\",\n  \"ocidentalizados\": \"ocidentaliz\",\n  \"ocidente\": \"ocident\",\n  \"ocimar\": \"ocim\",\n  \"ociosas\": \"ocios\",\n  \"ocioso\": \"ocios\",\n  \"ociosos\": \"ocios\",\n  \"oco\": \"oco\",\n  \"ocorra\": \"ocorr\",\n  \"ocorre\": \"ocorr\",\n  \"ocorrem\": \"ocorr\",\n  \"ocorrência\": \"ocorrent\",\n  \"ocorrências\": \"ocorrent\",\n  \"ocorrendo\": \"ocorr\",\n  \"ocorrer\": \"ocorr\",\n  \"ocorrerá\": \"ocorr\",\n  \"ocorreram\": \"ocorr\",\n  \"ocorrerão\": \"ocorr\",\n  \"ocorreria\": \"ocorr\",\n  \"ocorreriam\": \"ocorr\",\n  \"ocorreu\": \"ocorr\",\n  \"ocorria\": \"ocorr\",\n  \"ocorriam\": \"ocorr\",\n  \"ocorrida\": \"ocorr\",\n  \"ocorridas\": \"ocorr\",\n  \"ocorrido\": \"ocorr\",\n  \"ocorridos\": \"ocorr\",\n  \"ocos\": \"ocos\",\n  \"octacílio\": \"octacíli\",\n  \"octavio\": \"octavi\",\n  \"octávio\": \"octávi\",\n  \"octubre\": \"octubr\",\n  \"ocular\": \"ocul\",\n  \"óculos\": \"ócul\",\n  \"oculta\": \"ocult\",\n  \"ocupa\": \"ocup\",\n  \"ocupá\": \"ocup\",\n  \"ocupação\": \"ocup\",\n  \"ocupacional\": \"ocupacional\",\n  \"ocupações\": \"ocup\",\n  \"ocupada\": \"ocup\",\n  \"ocupadas\": \"ocup\",\n  \"ocupado\": \"ocup\",\n  \"ocupados\": \"ocup\",\n  \"ocupam\": \"ocup\",\n  \"ocupando\": \"ocup\",\n  \"ocupante\": \"ocup\",\n  \"ocupantes\": \"ocup\",\n  \"ocupar\": \"ocup\",\n  \"ocupava\": \"ocup\",\n  \"ocupavam\": \"ocup\",\n  \"ocupou\": \"ocup\",\n  \"odacir\": \"odac\",\n  \"odair\": \"oda\",\n  \"odalisca\": \"odalisc\",\n  \"odaliscas\": \"odalisc\",\n  \"ode\": \"ode\",\n  \"odebrecht\": \"odebrecht\",\n  \"odeia\": \"ode\",\n  \"odeiam\": \"ode\",\n  \"odeio\": \"odei\",\n  \"odeon\": \"odeon\",\n  \"odete\": \"odet\",\n  \"odiá\": \"odi\",\n  \"odilon\": \"odilon\",\n  \"ódio\": \"ódi\",\n  \"ódios\": \"ódi\",\n  \"odisséia\": \"odiss\",\n  \"odontológica\": \"odontológ\",\n  \"odontológicos\": \"odontológ\",\n  \"odor\": \"odor\",\n  \"odyr\": \"odyr\",\n  \"oeste\": \"oest\",\n  \"of\": \"of\",\n  \"ofendida\": \"ofend\",\n  \"ofendido\": \"ofend\",\n  \"ofensa\": \"ofens\",\n  \"ofensas\": \"ofens\",\n  \"ofensiva\": \"ofens\",\n  \"ofensivas\": \"ofens\",\n  \"ofensivo\": \"ofens\",\n  \"ofereça\": \"oferec\",\n  \"oferece\": \"oferec\",\n  \"oferecem\": \"oferec\",\n  \"oferecemos\": \"oferec\",\n  \"oferecendo\": \"oferec\",\n  \"oferecer\": \"oferec\",\n  \"ofereceram\": \"oferec\",\n  \"ofereceu\": \"oferec\",\n  \"oferecia\": \"oferec\",\n  \"oferecida\": \"oferec\",\n  \"oferecido\": \"oferec\",\n  \"oferecidos\": \"oferec\",\n  \"oferecimento\": \"oferec\",\n  \"oferenda\": \"oferend\",\n  \"oferendas\": \"oferend\",\n  \"oferta\": \"ofert\",\n  \"ofertante\": \"ofert\",\n  \"ofertar\": \"ofert\",\n  \"ofertas\": \"ofert\",\n  \"off\": \"off\",\n  \"office\": \"offic\",\n  \"officer\": \"offic\",\n  \"offs\": \"offs\",\n  \"oficiais\": \"ofic\",\n  \"oficial\": \"oficial\",\n  \"oficialmente\": \"oficial\",\n  \"oficina\": \"oficin\",\n  \"oficinas\": \"oficin\",\n  \"ofício\": \"ofíci\",\n  \"oftalmológicos\": \"oftalmológ\",\n  \"ofusca\": \"ofusc\",\n  \"ofuscou\": \"ofusc\",\n  \"ogum\": \"ogum\",\n  \"ogun\": \"ogun\",\n  \"oh\": \"oh\",\n  \"ohana\": \"ohan\",\n  \"oi\": \"oi\",\n  \"oiac\": \"oiac\",\n  \"oiapoque\": \"oiapoqu\",\n  \"oic\": \"oic\",\n  \"oinegue\": \"oineg\",\n  \"oit\": \"oit\",\n  \"oitava\": \"oit\",\n  \"oitavo\": \"oitav\",\n  \"oitenta\": \"oitent\",\n  \"oito\": \"oit\",\n  \"ok\": \"ok\",\n  \"okamoto\": \"okamot\",\n  \"okky\": \"okky\",\n  \"oklon\": \"oklon\",\n  \"olacyr\": \"olacyr\",\n  \"olávio\": \"olávi\",\n  \"olavo\": \"olav\",\n  \"olbers\": \"olbers\",\n  \"old\": \"old\",\n  \"olé\": \"olé\",\n  \"olê\": \"olê\",\n  \"óleo\": \"óle\",\n  \"óleos\": \"óle\",\n  \"oleosas\": \"oleos\",\n  \"olga\": \"olga\",\n  \"olha\": \"olha\",\n  \"olhá\": \"olhá\",\n  \"olhada\": \"olhad\",\n  \"olhadinha\": \"olhadinh\",\n  \"olhado\": \"olhad\",\n  \"olham\": \"olham\",\n  \"olhando\": \"olhand\",\n  \"olhar\": \"olhar\",\n  \"olharam\": \"olhar\",\n  \"olhares\": \"olhar\",\n  \"olhasse\": \"olhass\",\n  \"olhava\": \"olhav\",\n  \"olhe\": \"olhe\",\n  \"olheiras\": \"olheir\",\n  \"olhem\": \"olhem\",\n  \"olho\": \"olho\",\n  \"olhos\": \"olhos\",\n  \"olhou\": \"olhou\",\n  \"oligarquias\": \"oligarqu\",\n  \"olimpíada\": \"olimpí\",\n  \"olimpíadas\": \"olimpí\",\n  \"olímpico\": \"olímp\",\n  \"olinda\": \"olind\",\n  \"oliva\": \"oliv\",\n  \"oliveira\": \"oliveir\",\n  \"oliveiras\": \"oliveir\",\n  \"oliver\": \"oliv\",\n  \"olivetto\": \"olivett\",\n  \"olivia\": \"oliv\",\n  \"olívia\": \"olív\",\n  \"olney\": \"olney\",\n  \"olodum\": \"olodum\",\n  \"olooogunede\": \"oloooguned\",\n  \"oluô\": \"oluô\",\n  \"omar\": \"omar\",\n  \"ombro\": \"ombro\",\n  \"ombros\": \"ombros\",\n  \"omega\": \"omeg\",\n  \"omissão\": \"omissã\",\n  \"omissos\": \"omiss\",\n  \"omite\": \"omit\",\n  \"omitido\": \"omit\",\n  \"omolu\": \"omolu\",\n  \"omoplatas\": \"omoplat\",\n  \"oms\": \"oms\",\n  \"on\": \"on\",\n  \"onaga\": \"onag\",\n  \"onanistas\": \"onan\",\n  \"onassis\": \"onass\",\n  \"onça\": \"onça\",\n  \"oncolink\": \"oncolink\",\n  \"oncologista\": \"oncolog\",\n  \"oncologistas\": \"oncolog\",\n  \"onda\": \"onda\",\n  \"ondas\": \"ondas\",\n  \"onde\": \"onde\",\n  \"ondetti\": \"ondett\",\n  \"ondina\": \"ondin\",\n  \"ondulações\": \"ondul\",\n  \"ondulado\": \"ondul\",\n  \"one\": \"one\",\n  \"onézimo\": \"onézim\",\n  \"ong\": \"ong\",\n  \"ongs\": \"ongs\",\n  \"ônibus\": \"ônibus\",\n  \"onipotência\": \"onipotent\",\n  \"onipresença\": \"onipresenc\",\n  \"onipresente\": \"onipresent\",\n  \"online\": \"onlin\",\n  \"ono\": \"ono\",\n  \"onofre\": \"onofr\",\n  \"ontem\": \"ontem\",\n  \"onu\": \"onu\",\n  \"ônus\": \"ônus\",\n  \"onze\": \"onze\",\n  \"ôôiii\": \"ôôiii\",\n  \"opala\": \"opal\",\n  \"opç\": \"opc\",\n  \"opção\": \"opçã\",\n  \"opcionais\": \"opcion\",\n  \"opções\": \"opçõ\",\n  \"opera\": \"oper\",\n  \"ópera\": \"óper\",\n  \"operá\": \"oper\",\n  \"operação\": \"oper\",\n  \"operacionais\": \"operacion\",\n  \"operacional\": \"operacional\",\n  \"operações\": \"oper\",\n  \"operada\": \"oper\",\n  \"operado\": \"oper\",\n  \"operador\": \"oper\",\n  \"operadores\": \"oper\",\n  \"operados\": \"oper\",\n  \"operam\": \"oper\",\n  \"operamos\": \"oper\",\n  \"operandi\": \"operand\",\n  \"operando\": \"oper\",\n  \"operar\": \"oper\",\n  \"operaram\": \"oper\",\n  \"operarem\": \"oper\",\n  \"operária\": \"operár\",\n  \"operário\": \"operári\",\n  \"operários\": \"operári\",\n  \"óperas\": \"óper\",\n  \"operatórias\": \"operatór\",\n  \"operatório\": \"operatóri\",\n  \"operava\": \"oper\",\n  \"operosa\": \"oper\",\n  \"opina\": \"opin\",\n  \"opinar\": \"opin\",\n  \"opinião\": \"opiniã\",\n  \"opiniões\": \"opiniõ\",\n  \"ópio\": \"ópi\",\n  \"opô\": \"opô\",\n  \"opõe\": \"opõ\",\n  \"opõem\": \"opõ\",\n  \"oponente\": \"oponent\",\n  \"opor\": \"opor\",\n  \"oportunidade\": \"oportun\",\n  \"oportunidades\": \"oportun\",\n  \"oportunismo\": \"oportun\",\n  \"oportunistas\": \"oportun\",\n  \"oportuno\": \"oportun\",\n  \"oposição\": \"oposiçã\",\n  \"oposicionistas\": \"oposicion\",\n  \"oposições\": \"oposiçõ\",\n  \"opositores\": \"opositor\",\n  \"oposta\": \"opost\",\n  \"opostas\": \"opost\",\n  \"oposto\": \"opost\",\n  \"opostos\": \"opost\",\n  \"opportunity\": \"opportunity\",\n  \"opressão\": \"opressã\",\n  \"opressora\": \"opressor\",\n  \"oprime\": \"oprim\",\n  \"oprimidos\": \"oprim\",\n  \"ops\": \"ops\",\n  \"opta\": \"opta\",\n  \"optalidon\": \"optalidon\",\n  \"optamos\": \"optam\",\n  \"optar\": \"optar\",\n  \"optaram\": \"optar\",\n  \"optarem\": \"optar\",\n  \"optariam\": \"optar\",\n  \"optasse\": \"optass\",\n  \"optei\": \"opte\",\n  \"optou\": \"optou\",\n  \"ora\": \"ora\",\n  \"oração\": \"oraçã\",\n  \"orações\": \"oraçõ\",\n  \"oráculo\": \"orácul\",\n  \"oráculos\": \"orácul\",\n  \"oral\": \"oral\",\n  \"orange\": \"orang\",\n  \"oratórios\": \"oratóri\",\n  \"órbita\": \"órbit\",\n  \"orbital\": \"orbital\",\n  \"orca\": \"orca\",\n  \"orçados\": \"orçad\",\n  \"orçamentária\": \"orçamentár\",\n  \"orçamento\": \"orçament\",\n  \"orçamentos\": \"orçament\",\n  \"ordeiro\": \"ordeir\",\n  \"ordem\": \"ordem\",\n  \"ordena\": \"orden\",\n  \"ordená\": \"orden\",\n  \"ordenado\": \"orden\",\n  \"ordenando\": \"orden\",\n  \"ordenar\": \"orden\",\n  \"ordenaram\": \"orden\",\n  \"ordenhar\": \"ordenh\",\n  \"ordenou\": \"orden\",\n  \"ordens\": \"ordens\",\n  \"ordinárias\": \"ordinár\",\n  \"oréal\": \"oréal\",\n  \"orelha\": \"orelh\",\n  \"orestes\": \"orest\",\n  \"orfanato\": \"orfanat\",\n  \"órfão\": \"órfã\",\n  \"órfãos\": \"órfã\",\n  \"org\": \"org\",\n  \"orgânica\": \"orgân\",\n  \"orgânicas\": \"orgân\",\n  \"orgânico\": \"orgân\",\n  \"organismo\": \"organ\",\n  \"organismos\": \"organ\",\n  \"organiza\": \"organiz\",\n  \"organização\": \"organiz\",\n  \"organizações\": \"organiz\",\n  \"organizada\": \"organiz\",\n  \"organizadas\": \"organiz\",\n  \"organizado\": \"organiz\",\n  \"organizadores\": \"organiz\",\n  \"organizados\": \"organiz\",\n  \"organizam\": \"organiz\",\n  \"organizando\": \"organiz\",\n  \"organizar\": \"organiz\",\n  \"organizará\": \"organiz\",\n  \"organizaram\": \"organiz\",\n  \"organizava\": \"organiz\",\n  \"organizavam\": \"organiz\",\n  \"organizou\": \"organiz\",\n  \"organograma\": \"organogram\",\n  \"órgão\": \"órgã\",\n  \"órgãos\": \"órgã\",\n  \"orgasmo\": \"orgasm\",\n  \"orgias\": \"orgi\",\n  \"orgulha\": \"orgulh\",\n  \"orgulham\": \"orgulh\",\n  \"orgulhar\": \"orgulh\",\n  \"orgulharem\": \"orgulh\",\n  \"orgulho\": \"orgulh\",\n  \"orgulhos\": \"orgulh\",\n  \"orgulhosa\": \"orgulh\",\n  \"orgulhoso\": \"orgulh\",\n  \"orgulhosos\": \"orgulh\",\n  \"orient\": \"orient\",\n  \"orienta\": \"orient\",\n  \"orientação\": \"orient\",\n  \"orientações\": \"orient\",\n  \"orientada\": \"orient\",\n  \"orientadas\": \"orient\",\n  \"orientadora\": \"orient\",\n  \"orientadores\": \"orient\",\n  \"orientados\": \"orient\",\n  \"orientais\": \"orient\",\n  \"oriental\": \"oriental\",\n  \"orientam\": \"orient\",\n  \"orientamos\": \"orient\",\n  \"orientar\": \"orient\",\n  \"oriente\": \"orient\",\n  \"orientou\": \"orient\",\n  \"origem\": \"orig\",\n  \"origens\": \"origens\",\n  \"origin\": \"origin\",\n  \"originada\": \"origin\",\n  \"originais\": \"origin\",\n  \"original\": \"original\",\n  \"originalidade\": \"original\",\n  \"originalmente\": \"original\",\n  \"originaram\": \"origin\",\n  \"originárias\": \"originár\",\n  \"originário\": \"originári\",\n  \"originários\": \"originári\",\n  \"originou\": \"origin\",\n  \"oriunda\": \"oriund\",\n  \"orixá\": \"orix\",\n  \"orixalá\": \"orixal\",\n  \"orixás\": \"orixás\",\n  \"orla\": \"orla\",\n  \"orlando\": \"orland\",\n  \"orlistat\": \"orlistat\",\n  \"orly\": \"orly\",\n  \"ornamentadas\": \"ornament\",\n  \"ornelas\": \"ornel\",\n  \"orobó\": \"orob\",\n  \"orozco\": \"orozc\",\n  \"orquestra\": \"orquestr\",\n  \"orquestrada\": \"orquestr\",\n  \"orquestradores\": \"orquestr\",\n  \"orquestras\": \"orquestr\",\n  \"orquestrava\": \"orquestr\",\n  \"orson\": \"orson\",\n  \"ortec\": \"ortec\",\n  \"orth\": \"orth\",\n  \"orto\": \"orto\",\n  \"ortodoxa\": \"ortodox\",\n  \"ortodoxas\": \"ortodox\",\n  \"ortodoxo\": \"ortodox\",\n  \"ortodoxos\": \"ortodox\",\n  \"ortomolecular\": \"ortomolecul\",\n  \"ortopédicas\": \"ortopéd\",\n  \"ortopédicos\": \"ortopéd\",\n  \"ortopedista\": \"ortoped\",\n  \"ortopedistas\": \"ortoped\",\n  \"ortostática\": \"ortostát\",\n  \"orunmila\": \"orunmil\",\n  \"orwell\": \"orwell\",\n  \"orwelliano\": \"orwellian\",\n  \"os\": \"os\",\n  \"osaka\": \"osak\",\n  \"osborn\": \"osborn\",\n  \"oscar\": \"oscar\",\n  \"oscarito\": \"oscarit\",\n  \"oscila\": \"oscil\",\n  \"oscilação\": \"oscil\",\n  \"oscilam\": \"oscil\",\n  \"oscilava\": \"oscil\",\n  \"oscilavam\": \"oscil\",\n  \"osinaca\": \"osinac\",\n  \"osmar\": \"osmar\",\n  \"osonho\": \"osonh\",\n  \"ossada\": \"ossad\",\n  \"óssea\": \"ósse\",\n  \"ósseas\": \"ósse\",\n  \"ósseo\": \"ósse\",\n  \"ossificação\": \"ossific\",\n  \"osso\": \"osso\",\n  \"ossos\": \"ossos\",\n  \"ostensiva\": \"ostens\",\n  \"ostensivas\": \"ostens\",\n  \"ostenta\": \"ostent\",\n  \"ostentação\": \"ostent\",\n  \"ostentam\": \"ostent\",\n  \"ostentar\": \"ostent\",\n  \"ostentatória\": \"ostentatór\",\n  \"osteoporose\": \"osteoporos\",\n  \"osteossarcoma\": \"osteossarcom\",\n  \"ostracismo\": \"ostrac\",\n  \"ostras\": \"ostras\",\n  \"osvaldo\": \"osvald\",\n  \"oswald\": \"oswald\",\n  \"oswaldo\": \"oswald\",\n  \"otan\": \"otan\",\n  \"otávio\": \"otávi\",\n  \"otelo\": \"otel\",\n  \"othon\": \"othon\",\n  \"ótica\": \"ótic\",\n  \"óticos\": \"ótic\",\n  \"ótima\": \"ótim\",\n  \"ótimas\": \"ótim\",\n  \"otimismo\": \"otim\",\n  \"otimista\": \"otim\",\n  \"otimizar\": \"otimiz\",\n  \"ótimo\": \"ótim\",\n  \"ótimos\": \"ótim\",\n  \"otomana\": \"otoman\",\n  \"otomano\": \"otoman\",\n  \"otomanos\": \"otoman\",\n  \"otonni\": \"otonn\",\n  \"ottoni\": \"otton\",\n  \"ou\": \"ou\",\n  \"ouço\": \"ouc\",\n  \"ourivesaria\": \"ourives\",\n  \"ouro\": \"our\",\n  \"ousa\": \"ous\",\n  \"ousada\": \"ous\",\n  \"ousadia\": \"ousad\",\n  \"ousado\": \"ous\",\n  \"ousados\": \"ous\",\n  \"ousar\": \"ous\",\n  \"ouso\": \"ous\",\n  \"outdoors\": \"outdoors\",\n  \"outing\": \"outing\",\n  \"outono\": \"outon\",\n  \"outra\": \"outr\",\n  \"outras\": \"outr\",\n  \"outro\": \"outr\",\n  \"outrora\": \"outror\",\n  \"outros\": \"outr\",\n  \"outsuka\": \"outsuk\",\n  \"outubro\": \"outubr\",\n  \"ouve\": \"ouv\",\n  \"ouvem\": \"ouv\",\n  \"ouvi\": \"ouv\",\n  \"ouvia\": \"ouv\",\n  \"ouvida\": \"ouv\",\n  \"ouvidas\": \"ouv\",\n  \"ouvido\": \"ouv\",\n  \"ouvidor\": \"ouvidor\",\n  \"ouvidos\": \"ouv\",\n  \"ouvimos\": \"ouv\",\n  \"ouvindo\": \"ouv\",\n  \"ouvinte\": \"ouvint\",\n  \"ouvintes\": \"ouvint\",\n  \"ouvir\": \"ouv\",\n  \"ouvirá\": \"ouv\",\n  \"ouviram\": \"ouv\",\n  \"ouvirem\": \"ouv\",\n  \"ouviu\": \"ouv\",\n  \"ovacionar\": \"ovacion\",\n  \"ovário\": \"ovári\",\n  \"ovários\": \"ovári\",\n  \"ovelha\": \"ovelh\",\n  \"ovelhas\": \"ovelh\",\n  \"over\": \"over\",\n  \"overbooking\": \"overbooking\",\n  \"overdose\": \"overdos\",\n  \"overdrive\": \"overdriv\",\n  \"overseas\": \"overs\",\n  \"oviedo\": \"ovied\",\n  \"ovni\": \"ovni\",\n  \"ovnis\": \"ovnis\",\n  \"ovo\": \"ovo\",\n  \"ovos\": \"ovos\",\n  \"oxalá\": \"oxal\",\n  \"oxford\": \"oxford\",\n  \"oxigenados\": \"oxigen\",\n  \"oxigênio\": \"oxigêni\",\n  \"oxóssi\": \"oxóss\",\n  \"oxum\": \"oxum\",\n  \"oxun\": \"oxun\",\n  \"oxxyon\": \"oxxyon\",\n  \"ozires\": \"ozir\",\n  \"ozônio\": \"ozôni\",\n  \"ozorio\": \"ozori\",\n  \"ozório\": \"ozóri\",\n  \"p\": \"p\",\n  \"pa\": \"pa\",\n  \"pá\": \"pá\",\n  \"pablo\": \"pabl\",\n  \"pacaccini\": \"pacaccin\",\n  \"pacaembu\": \"pacaembu\",\n  \"pacata\": \"pacat\",\n  \"pacessetter\": \"pacessett\",\n  \"pacheco\": \"pachec\",\n  \"pachorra\": \"pachorr\",\n  \"paci\": \"pac\",\n  \"paciência\": \"paciênc\",\n  \"paciente\": \"pacient\",\n  \"pacientemente\": \"pacient\",\n  \"pacientes\": \"pacient\",\n  \"pacífica\": \"pacíf\",\n  \"pacífico\": \"pacíf\",\n  \"pacifismo\": \"pacif\",\n  \"pacifista\": \"pacif\",\n  \"packard\": \"packard\",\n  \"pacotaço\": \"pacotac\",\n  \"pacote\": \"pacot\",\n  \"pacotes\": \"pacot\",\n  \"pacotinho\": \"pacotinh\",\n  \"pacto\": \"pact\",\n  \"pactual\": \"pactual\",\n  \"padaria\": \"pad\",\n  \"padece\": \"padec\",\n  \"padilha\": \"padilh\",\n  \"padilla\": \"padill\",\n  \"padim\": \"padim\",\n  \"padrão\": \"padrã\",\n  \"padrasto\": \"padrast\",\n  \"padre\": \"padr\",\n  \"padres\": \"padr\",\n  \"padrinho\": \"padrinh\",\n  \"padrinhos\": \"padrinh\",\n  \"padroeira\": \"padroeir\",\n  \"padroeiro\": \"padroeir\",\n  \"padrões\": \"padrõ\",\n  \"padronagens\": \"padronagens\",\n  \"padronização\": \"padroniz\",\n  \"padronizadas\": \"padroniz\",\n  \"padronizador\": \"padroniz\",\n  \"padronizados\": \"padroniz\",\n  \"pádua\": \"pádu\",\n  \"paes\": \"paes\",\n  \"paetês\": \"paetês\",\n  \"paf\": \"paf\",\n  \"paffenberger\": \"paffenberg\",\n  \"pág\": \"pág\",\n  \"paga\": \"pag\",\n  \"pagá\": \"pag\",\n  \"pagam\": \"pag\",\n  \"pagamento\": \"pagament\",\n  \"pagamentos\": \"pagament\",\n  \"pagamos\": \"pag\",\n  \"pagando\": \"pag\",\n  \"pagar\": \"pag\",\n  \"pagará\": \"pag\",\n  \"pagaram\": \"pag\",\n  \"pagariam\": \"pag\",\n  \"pagas\": \"pag\",\n  \"pagasse\": \"pag\",\n  \"pagava\": \"pag\",\n  \"page\": \"pag\",\n  \"pager\": \"pag\",\n  \"pagers\": \"pagers\",\n  \"página\": \"págin\",\n  \"páginas\": \"págin\",\n  \"pago\": \"pag\",\n  \"pagode\": \"pagod\",\n  \"pagodeira\": \"pagodeir\",\n  \"pagodes\": \"pagod\",\n  \"pagos\": \"pag\",\n  \"pagou\": \"pag\",\n  \"págs\": \"págs\",\n  \"pagu\": \"pagu\",\n  \"pague\": \"pag\",\n  \"paguei\": \"pagu\",\n  \"paguem\": \"pagu\",\n  \"pagura\": \"pagur\",\n  \"pahlevi\": \"pahlev\",\n  \"pai\": \"pai\",\n  \"painéis\": \"pain\",\n  \"painel\": \"painel\",\n  \"pains\": \"pains\",\n  \"paint\": \"paint\",\n  \"pairam\": \"pair\",\n  \"pairava\": \"pair\",\n  \"pais\": \"pais\",\n  \"país\": \"país\",\n  \"paisagem\": \"paisag\",\n  \"paisagens\": \"paisagens\",\n  \"paisana\": \"paisan\",\n  \"países\": \"país\",\n  \"paiva\": \"paiv\",\n  \"paix\": \"paix\",\n  \"paixão\": \"paixã\",\n  \"paixões\": \"paixõ\",\n  \"paixonites\": \"paixonit\",\n  \"pajé\": \"paj\",\n  \"pajelança\": \"pajelanc\",\n  \"pajero\": \"pajer\",\n  \"pajés\": \"pajés\",\n  \"palace\": \"palac\",\n  \"palacete\": \"palacet\",\n  \"palacetes\": \"palacet\",\n  \"palácio\": \"paláci\",\n  \"palácios\": \"paláci\",\n  \"paladar\": \"palad\",\n  \"paladares\": \"palad\",\n  \"palanque\": \"palanqu\",\n  \"palanques\": \"palanqu\",\n  \"palavra\": \"palavr\",\n  \"palavras\": \"palavr\",\n  \"palavrões\": \"palavrõ\",\n  \"palavrório\": \"palavróri\",\n  \"palco\": \"palc\",\n  \"palcos\": \"palc\",\n  \"paleontóloga\": \"paleontólog\",\n  \"paleontólogo\": \"paleontólog\",\n  \"palestina\": \"palestin\",\n  \"palestinos\": \"palestin\",\n  \"palestra\": \"palestr\",\n  \"palestrando\": \"palestr\",\n  \"palestras\": \"palestr\",\n  \"paletó\": \"palet\",\n  \"palha\": \"palh\",\n  \"palhares\": \"palh\",\n  \"palhinha\": \"palhinh\",\n  \"paliativo\": \"paliat\",\n  \"pálida\": \"pál\",\n  \"pálido\": \"pál\",\n  \"palio\": \"pali\",\n  \"palma\": \"palm\",\n  \"palmada\": \"palm\",\n  \"palmares\": \"palm\",\n  \"palmeiras\": \"palmeir\",\n  \"palmo\": \"palm\",\n  \"palpável\": \"palpável\",\n  \"pálpebra\": \"pálpebr\",\n  \"pálpebras\": \"pálpebr\",\n  \"palpitações\": \"palpit\",\n  \"palpitar\": \"palpit\",\n  \"palpite\": \"palpit\",\n  \"palpites\": \"palpit\",\n  \"pam\": \"pam\",\n  \"pamela\": \"pamel\",\n  \"pamplona\": \"pamplon\",\n  \"pampulha\": \"pampulh\",\n  \"pan\": \"pan\",\n  \"panacéia\": \"panac\",\n  \"panache\": \"panach\",\n  \"panamá\": \"panam\",\n  \"panatela\": \"panatel\",\n  \"pancadaria\": \"pancad\",\n  \"pancadas\": \"panc\",\n  \"pancas\": \"panc\",\n  \"pâncreas\": \"pâncr\",\n  \"pancreatite\": \"pancreatit\",\n  \"pandeiro\": \"pandeir\",\n  \"pandolpho\": \"pandolph\",\n  \"pane\": \"pan\",\n  \"panegíricos\": \"panegír\",\n  \"panela\": \"panel\",\n  \"panelaço\": \"panelac\",\n  \"panes\": \"pan\",\n  \"panfletário\": \"panfletári\",\n  \"panfletos\": \"panflet\",\n  \"pânico\": \"pânic\",\n  \"pano\": \"pan\",\n  \"panorama\": \"panoram\",\n  \"panorâmico\": \"panorâm\",\n  \"panos\": \"pan\",\n  \"pantanal\": \"pantanal\",\n  \"pântanos\": \"pântan\",\n  \"panteão\": \"panteã\",\n  \"pantera\": \"pant\",\n  \"pantheon\": \"pantheon\",\n  \"pão\": \"pã\",\n  \"paolo\": \"paol\",\n  \"papa\": \"pap\",\n  \"papá\": \"pap\",\n  \"papagaios\": \"papagai\",\n  \"papai\": \"papa\",\n  \"papais\": \"pap\",\n  \"papanicolau\": \"papanicolau\",\n  \"paparazzi\": \"paparazz\",\n  \"paparicada\": \"paparic\",\n  \"papas\": \"pap\",\n  \"papéis\": \"pap\",\n  \"papel\": \"papel\",\n  \"papelada\": \"papel\",\n  \"papelão\": \"papelã\",\n  \"papelaria\": \"papel\",\n  \"papelotes\": \"papelot\",\n  \"papo\": \"pap\",\n  \"pappas\": \"papp\",\n  \"papuda\": \"papud\",\n  \"paquera\": \"paqu\",\n  \"paquerar\": \"paquer\",\n  \"paqueras\": \"paqu\",\n  \"paquerava\": \"paquer\",\n  \"paquistão\": \"paquistã\",\n  \"paquito\": \"paquit\",\n  \"par\": \"par\",\n  \"para\": \"par\",\n  \"pára\": \"pár\",\n  \"pará\": \"par\",\n  \"parabenizou\": \"parabeniz\",\n  \"parabéns\": \"parabéns\",\n  \"parábolas\": \"parábol\",\n  \"parabolazinha\": \"parabolazinh\",\n  \"paracatu\": \"paracatu\",\n  \"parada\": \"par\",\n  \"paradas\": \"par\",\n  \"paradeiro\": \"paradeir\",\n  \"paradidáticos\": \"paradidát\",\n  \"paradigma\": \"paradigm\",\n  \"paradisíacas\": \"paradisíac\",\n  \"paradisíaco\": \"paradisíac\",\n  \"parado\": \"par\",\n  \"parados\": \"par\",\n  \"paradoxal\": \"paradoxal\",\n  \"paradoxalmente\": \"paradoxal\",\n  \"paradoxo\": \"paradox\",\n  \"parafernália\": \"parafernál\",\n  \"parafuso\": \"parafus\",\n  \"parafusos\": \"parafus\",\n  \"paragominas\": \"paragomin\",\n  \"parágrafo\": \"parágraf\",\n  \"parágrafos\": \"parágraf\",\n  \"paraguai\": \"paragua\",\n  \"paraguaia\": \"paragua\",\n  \"paraguaio\": \"paraguai\",\n  \"paraíba\": \"paraíb\",\n  \"paraibana\": \"paraiban\",\n  \"paraibano\": \"paraiban\",\n  \"paraíso\": \"paraís\",\n  \"paralela\": \"paralel\",\n  \"paralelamente\": \"paralel\",\n  \"paralelas\": \"paralel\",\n  \"paralelo\": \"paralel\",\n  \"paralisa\": \"paralis\",\n  \"paralisação\": \"paralis\",\n  \"paralisadas\": \"paralis\",\n  \"paralisado\": \"paralis\",\n  \"paralisia\": \"paralis\",\n  \"paralisou\": \"paralis\",\n  \"paralítico\": \"paralít\",\n  \"param\": \"par\",\n  \"paramaribo\": \"paramarib\",\n  \"parâmetro\": \"parâmetr\",\n  \"parâmetros\": \"parâmetr\",\n  \"paraná\": \"paran\",\n  \"paranaense\": \"paranaens\",\n  \"paranaenses\": \"paranaens\",\n  \"paranaguá\": \"paranagu\",\n  \"paranaíba\": \"paranaíb\",\n  \"paranapanema\": \"paranapanem\",\n  \"parando\": \"par\",\n  \"paranóia\": \"paranó\",\n  \"paranóico\": \"paranó\",\n  \"paranormais\": \"paranorm\",\n  \"paranormal\": \"paranormal\",\n  \"paranormalidade\": \"paranormal\",\n  \"parapeito\": \"parapeit\",\n  \"paraplégico\": \"paraplég\",\n  \"parar\": \"par\",\n  \"pararam\": \"par\",\n  \"parasita\": \"parasit\",\n  \"parasitárias\": \"parasitár\",\n  \"parasitologia\": \"parasitolog\",\n  \"parasse\": \"par\",\n  \"parati\": \"parat\",\n  \"parava\": \"par\",\n  \"paravam\": \"par\",\n  \"parávamos\": \"par\",\n  \"paravertebral\": \"paravertebral\",\n  \"parceira\": \"parceir\",\n  \"parceiras\": \"parceir\",\n  \"parceiro\": \"parceir\",\n  \"parceiros\": \"parceir\",\n  \"parcela\": \"parcel\",\n  \"parcelado\": \"parcel\",\n  \"parcelados\": \"parcel\",\n  \"parcelamento\": \"parcel\",\n  \"parcelas\": \"parcel\",\n  \"parcelava\": \"parcel\",\n  \"parceria\": \"parc\",\n  \"parcerias\": \"parc\",\n  \"parcial\": \"parcial\",\n  \"parcialmente\": \"parcial\",\n  \"parcimônia\": \"parcimôn\",\n  \"parda\": \"pard\",\n  \"pare\": \"par\",\n  \"pareça\": \"parec\",\n  \"parece\": \"parec\",\n  \"parecem\": \"parec\",\n  \"parecendo\": \"parec\",\n  \"parecer\": \"parec\",\n  \"pareceres\": \"parec\",\n  \"pareceu\": \"parec\",\n  \"parecia\": \"parec\",\n  \"pareciam\": \"parec\",\n  \"parecida\": \"parec\",\n  \"parecidas\": \"parec\",\n  \"parecido\": \"parec\",\n  \"parecidos\": \"parec\",\n  \"parecis\": \"parec\",\n  \"pareço\": \"parec\",\n  \"paredão\": \"paredã\",\n  \"parede\": \"pared\",\n  \"paredes\": \"pared\",\n  \"paredões\": \"paredõ\",\n  \"parei\": \"par\",\n  \"parelelo\": \"parelel\",\n  \"parelheiros\": \"parelheir\",\n  \"parem\": \"par\",\n  \"parent\": \"parent\",\n  \"parente\": \"parent\",\n  \"parentes\": \"parent\",\n  \"parentesco\": \"parentesc\",\n  \"páreo\": \"pár\",\n  \"pares\": \"par\",\n  \"pari\": \"par\",\n  \"párias\": \"pár\",\n  \"paris\": \"par\",\n  \"parisien\": \"parisien\",\n  \"parisiense\": \"parisiens\",\n  \"park\": \"park\",\n  \"parker\": \"park\",\n  \"parking\": \"parking\",\n  \"parlamentar\": \"parlament\",\n  \"parlamentares\": \"parlament\",\n  \"parlamentarismo\": \"parlamentar\",\n  \"parlamento\": \"parlament\",\n  \"parmalat\": \"parmalat\",\n  \"parnaíba\": \"parnaíb\",\n  \"paro\": \"par\",\n  \"pároco\": \"pároc\",\n  \"parodiando\": \"parodi\",\n  \"paróquia\": \"paróqu\",\n  \"parou\": \"par\",\n  \"parque\": \"parqu\",\n  \"parques\": \"parqu\",\n  \"parr\": \"parr\",\n  \"parra\": \"parr\",\n  \"parreira\": \"parreir\",\n  \"parreiras\": \"parreir\",\n  \"parry\": \"parry\",\n  \"parta\": \"part\",\n  \"partagas\": \"partag\",\n  \"parte\": \"part\",\n  \"parteira\": \"parteir\",\n  \"partem\": \"part\",\n  \"partes\": \"part\",\n  \"partia\": \"part\",\n  \"participa\": \"particip\",\n  \"participação\": \"particip\",\n  \"participações\": \"particip\",\n  \"participado\": \"particip\",\n  \"participam\": \"particip\",\n  \"participando\": \"particip\",\n  \"participante\": \"particip\",\n  \"participantes\": \"particip\",\n  \"participar\": \"particip\",\n  \"participaram\": \"particip\",\n  \"participarem\": \"particip\",\n  \"participativo\": \"particip\",\n  \"participava\": \"particip\",\n  \"participei\": \"particip\",\n  \"participo\": \"particip\",\n  \"participou\": \"particip\",\n  \"partícula\": \"partícul\",\n  \"particular\": \"particul\",\n  \"particulares\": \"particul\",\n  \"particularíssimos\": \"particularíss\",\n  \"particularmente\": \"particular\",\n  \"partículas\": \"partícul\",\n  \"partida\": \"part\",\n  \"partidão\": \"partidã\",\n  \"partidária\": \"partidár\",\n  \"partidárias\": \"partidár\",\n  \"partidário\": \"partidári\",\n  \"partidários\": \"partidári\",\n  \"partidas\": \"part\",\n  \"partido\": \"part\",\n  \"partidos\": \"part\",\n  \"partilha\": \"partilh\",\n  \"partilhar\": \"partilh\",\n  \"partilharam\": \"partilh\",\n  \"partindo\": \"part\",\n  \"partir\": \"part\",\n  \"partiram\": \"part\",\n  \"partitura\": \"partitur\",\n  \"partituras\": \"partitur\",\n  \"partiu\": \"part\",\n  \"parto\": \"part\",\n  \"partos\": \"part\",\n  \"pás\": \"pás\",\n  \"páscoa\": \"pásco\",\n  \"pascolato\": \"pascolat\",\n  \"pasini\": \"pasin\",\n  \"pasme\": \"pasm\",\n  \"pasolini\": \"pasolin\",\n  \"pasquim\": \"pasquim\",\n  \"passa\": \"pass\",\n  \"passá\": \"pass\",\n  \"passada\": \"pass\",\n  \"passadas\": \"pass\",\n  \"passadinha\": \"passadinh\",\n  \"passado\": \"pass\",\n  \"passados\": \"pass\",\n  \"passageira\": \"passageir\",\n  \"passageiro\": \"passageir\",\n  \"passageiros\": \"passageir\",\n  \"passagem\": \"passag\",\n  \"passagens\": \"passagens\",\n  \"passam\": \"pass\",\n  \"passamos\": \"pass\",\n  \"passando\": \"pass\",\n  \"passaporte\": \"passaport\",\n  \"passaportecarimbado\": \"passaportecarimb\",\n  \"passaportes\": \"passaport\",\n  \"passar\": \"pass\",\n  \"passara\": \"pass\",\n  \"passará\": \"pass\",\n  \"passaram\": \"pass\",\n  \"passarela\": \"passarel\",\n  \"passarelas\": \"passarel\",\n  \"passarem\": \"pass\",\n  \"passaria\": \"pass\",\n  \"passariam\": \"pass\",\n  \"passaríamos\": \"pass\",\n  \"passarinho\": \"passarinh\",\n  \"passarinhos\": \"passarinh\",\n  \"pássaros\": \"pássar\",\n  \"passasse\": \"pass\",\n  \"passassem\": \"pass\",\n  \"passat\": \"passat\",\n  \"passatempo\": \"passatemp\",\n  \"passava\": \"pass\",\n  \"passavam\": \"pass\",\n  \"passe\": \"pass\",\n  \"passeando\": \"pass\",\n  \"passear\": \"pass\",\n  \"passeata\": \"passeat\",\n  \"passeatas\": \"passeat\",\n  \"passeava\": \"pass\",\n  \"passeavam\": \"pass\",\n  \"passei\": \"pass\",\n  \"passeia\": \"pass\",\n  \"passeie\": \"passei\",\n  \"passeio\": \"passei\",\n  \"passeios\": \"passei\",\n  \"passem\": \"pass\",\n  \"passeou\": \"pass\",\n  \"passes\": \"pass\",\n  \"passinhos\": \"passinh\",\n  \"passional\": \"passional\",\n  \"passiva\": \"passiv\",\n  \"passivas\": \"passiv\",\n  \"passível\": \"passível\",\n  \"passivo\": \"passiv\",\n  \"passo\": \"pass\",\n  \"passos\": \"pass\",\n  \"passou\": \"pass\",\n  \"pasta\": \"past\",\n  \"pastas\": \"past\",\n  \"pastel\": \"pastel\",\n  \"pastelão\": \"pastelã\",\n  \"pasteurização\": \"pasteuriz\",\n  \"pasteurizado\": \"pasteuriz\",\n  \"pastilha\": \"pastilh\",\n  \"pasto\": \"past\",\n  \"pastor\": \"pastor\",\n  \"pastora\": \"pastor\",\n  \"pastoral\": \"pastoral\",\n  \"pastore\": \"pastor\",\n  \"pastores\": \"pastor\",\n  \"pastorzão\": \"pastorzã\",\n  \"pastos\": \"past\",\n  \"pastroes\": \"pastro\",\n  \"pat\": \"pat\",\n  \"pata\": \"pat\",\n  \"patachou\": \"patach\",\n  \"patagônia\": \"patagôn\",\n  \"patamar\": \"patam\",\n  \"patamares\": \"patam\",\n  \"patas\": \"pat\",\n  \"pataxó\": \"patax\",\n  \"pataxós\": \"pataxós\",\n  \"patches\": \"patch\",\n  \"patente\": \"patent\",\n  \"patenteação\": \"patent\",\n  \"patentemente\": \"patent\",\n  \"patentes\": \"patent\",\n  \"paternalista\": \"paternal\",\n  \"paternidade\": \"patern\",\n  \"paternidades\": \"patern\",\n  \"paterno\": \"patern\",\n  \"paternost\": \"paternost\",\n  \"patética\": \"patét\",\n  \"pathfinder\": \"pathfind\",\n  \"patias\": \"pat\",\n  \"patinadores\": \"patin\",\n  \"pátio\": \"páti\",\n  \"pato\": \"pat\",\n  \"patológico\": \"patológ\",\n  \"patologistas\": \"patolog\",\n  \"patotinha\": \"patotinh\",\n  \"patrão\": \"patrã\",\n  \"pátria\": \"pátr\",\n  \"patriarca\": \"patriarc\",\n  \"patriarcal\": \"patriarcal\",\n  \"patricia\": \"patric\",\n  \"patrícia\": \"patríc\",\n  \"patricinhas\": \"patricinh\",\n  \"patrick\": \"patrick\",\n  \"patrimonial\": \"patrimonial\",\n  \"patrimônio\": \"patrimôni\",\n  \"patrizia\": \"patriz\",\n  \"patroa\": \"patro\",\n  \"patrocinada\": \"patrocin\",\n  \"patrocinadas\": \"patrocin\",\n  \"patrocinado\": \"patrocin\",\n  \"patrocinador\": \"patrocin\",\n  \"patrocinadora\": \"patrocin\",\n  \"patrocinados\": \"patrocin\",\n  \"patrocinando\": \"patrocin\",\n  \"patrocínio\": \"patrocíni\",\n  \"patrões\": \"patrõ\",\n  \"patrol\": \"patrol\",\n  \"patronais\": \"patron\",\n  \"patronato\": \"patronat\",\n  \"patrulhada\": \"patrulh\",\n  \"patrulhamento\": \"patrulh\",\n  \"patrulhas\": \"patrulh\",\n  \"patten\": \"patten\",\n  \"patuás\": \"patuás\",\n  \"patury\": \"patury\",\n  \"pau\": \"pau\",\n  \"pauini\": \"pauin\",\n  \"paul\": \"paul\",\n  \"paula\": \"paul\",\n  \"pauladas\": \"paul\",\n  \"paulatinamente\": \"paulatin\",\n  \"pauleira\": \"pauleir\",\n  \"pauli\": \"paul\",\n  \"paulina\": \"paulin\",\n  \"paulino\": \"paulin\",\n  \"paulista\": \"paulist\",\n  \"paulistana\": \"paulistan\",\n  \"paulistanas\": \"paulistan\",\n  \"paulistano\": \"paulistan\",\n  \"paulistanos\": \"paulistan\",\n  \"paulistas\": \"paulist\",\n  \"paulo\": \"paul\",\n  \"paupérrimas\": \"paupérrim\",\n  \"paus\": \"paus\",\n  \"pausa\": \"paus\",\n  \"pausada\": \"paus\",\n  \"pauta\": \"paut\",\n  \"pavão\": \"pavã\",\n  \"pavãozinho\": \"pavãozinh\",\n  \"pavarotti\": \"pavarott\",\n  \"pavilhão\": \"pavilhã\",\n  \"pavimentando\": \"paviment\",\n  \"pavimentar\": \"paviment\",\n  \"pavor\": \"pavor\",\n  \"pavuna\": \"pavun\",\n  \"payot\": \"payot\",\n  \"paz\": \"paz\",\n  \"pazes\": \"paz\",\n  \"pb\": \"pb\",\n  \"pc\": \"pc\",\n  \"pcb\": \"pcb\",\n  \"pcf\": \"pcf\",\n  \"pcr\": \"pcr\",\n  \"pcs\": \"pcs\",\n  \"pddi\": \"pddi\",\n  \"pdt\": \"pdt\",\n  \"pdv\": \"pdv\",\n  \"pe\": \"pe\",\n  \"pé\": \"pé\",\n  \"pearl\": \"pearl\",\n  \"peça\": \"pec\",\n  \"pecadilhos\": \"pecadilh\",\n  \"pecado\": \"pec\",\n  \"pecados\": \"pec\",\n  \"peças\": \"pec\",\n  \"pech\": \"pech\",\n  \"pecha\": \"pech\",\n  \"pechincha\": \"pechinch\",\n  \"pechman\": \"pechman\",\n  \"peço\": \"pec\",\n  \"peçonhentas\": \"peçonhent\",\n  \"peçonhentos\": \"peçonhent\",\n  \"peculiar\": \"peculi\",\n  \"peculiares\": \"peculi\",\n  \"peculiaridade\": \"peculiar\",\n  \"peculiaridades\": \"peculiar\",\n  \"pedaço\": \"pedac\",\n  \"pedaços\": \"pedac\",\n  \"pedágio\": \"pedági\",\n  \"pedágios\": \"pedági\",\n  \"pedagoga\": \"pedagog\",\n  \"pedagogas\": \"pedagog\",\n  \"pedagogia\": \"pedagog\",\n  \"pedagógica\": \"pedagóg\",\n  \"pedagógicas\": \"pedagóg\",\n  \"pedagógico\": \"pedagóg\",\n  \"pedagógicos\": \"pedagóg\",\n  \"pedagogo\": \"pedagog\",\n  \"pedagogos\": \"pedagog\",\n  \"pedal\": \"pedal\",\n  \"pedala\": \"pedal\",\n  \"pedalada\": \"pedal\",\n  \"pedalar\": \"pedal\",\n  \"pedalinhos\": \"pedalinh\",\n  \"pedalou\": \"pedal\",\n  \"pede\": \"ped\",\n  \"pedem\": \"ped\",\n  \"pederneiras\": \"pederneir\",\n  \"pedestal\": \"pedestal\",\n  \"pedestres\": \"pedestr\",\n  \"pedetistas\": \"pedet\",\n  \"pedi\": \"ped\",\n  \"pedia\": \"ped\",\n  \"pediam\": \"ped\",\n  \"pediatra\": \"pediatr\",\n  \"pediátrico\": \"pediátr\",\n  \"pedida\": \"ped\",\n  \"pedidas\": \"ped\",\n  \"pedido\": \"ped\",\n  \"pedidos\": \"ped\",\n  \"pedindo\": \"ped\",\n  \"pedir\": \"ped\",\n  \"pediram\": \"ped\",\n  \"pedirão\": \"ped\",\n  \"pedirei\": \"ped\",\n  \"pedirem\": \"ped\",\n  \"pediria\": \"ped\",\n  \"pediu\": \"ped\",\n  \"pedra\": \"pedr\",\n  \"pedradas\": \"pedr\",\n  \"pedras\": \"pedr\",\n  \"pedreira\": \"pedreir\",\n  \"pedreiras\": \"pedreir\",\n  \"pedreiro\": \"pedreir\",\n  \"pedreiros\": \"pedreir\",\n  \"pedro\": \"pedr\",\n  \"pedrosa\": \"pedros\",\n  \"pedroso\": \"pedros\",\n  \"peeling\": \"peeling\",\n  \"peemedebista\": \"peemedeb\",\n  \"peemedebistas\": \"peemedeb\",\n  \"pefelândia\": \"pefelând\",\n  \"pefelê\": \"pefel\",\n  \"pefelista\": \"pefel\",\n  \"pefelistas\": \"pefel\",\n  \"pega\": \"peg\",\n  \"pegá\": \"peg\",\n  \"pegação\": \"pegaçã\",\n  \"pegadas\": \"peg\",\n  \"pegajoso\": \"pegaj\",\n  \"pegam\": \"peg\",\n  \"pegamos\": \"peg\",\n  \"pegando\": \"peg\",\n  \"pegar\": \"peg\",\n  \"pegaram\": \"peg\",\n  \"pegaria\": \"peg\",\n  \"pegasse\": \"peg\",\n  \"pegassem\": \"peg\",\n  \"pegava\": \"peg\",\n  \"pego\": \"peg\",\n  \"pegou\": \"peg\",\n  \"pegue\": \"peg\",\n  \"peguei\": \"pegu\",\n  \"peias\": \"pei\",\n  \"peitinho\": \"peitinh\",\n  \"peito\": \"peit\",\n  \"peitoral\": \"peitoral\",\n  \"peitos\": \"peit\",\n  \"peixão\": \"peixã\",\n  \"peixe\": \"peix\",\n  \"peixes\": \"peix\",\n  \"peixoto\": \"peixot\",\n  \"pejorativa\": \"pejor\",\n  \"pejorativamente\": \"pejor\",\n  \"pejorativo\": \"pejor\",\n  \"pela\": \"pel\",\n  \"pelada\": \"pel\",\n  \"peladas\": \"pel\",\n  \"peladões\": \"peladõ\",\n  \"pelados\": \"pel\",\n  \"pelas\": \"pel\",\n  \"pele\": \"pel\",\n  \"pelé\": \"pel\",\n  \"pelegrini\": \"pelegrin\",\n  \"peleja\": \"pelej\",\n  \"peles\": \"pel\",\n  \"pelo\": \"pel\",\n  \"pelô\": \"pelô\",\n  \"pelos\": \"pel\",\n  \"pêlos\": \"pêl\",\n  \"pelota\": \"pelot\",\n  \"pelotão\": \"pelotã\",\n  \"pelúcio\": \"pelúci\",\n  \"peluda\": \"pelud\",\n  \"peludo\": \"pelud\",\n  \"peluso\": \"pelus\",\n  \"pélvicas\": \"pélvic\",\n  \"pélvis\": \"pélv\",\n  \"pena\": \"pen\",\n  \"peña\": \"peñ\",\n  \"penada\": \"pen\",\n  \"penal\": \"penal\",\n  \"penalizado\": \"penaliz\",\n  \"penas\": \"pen\",\n  \"penavam\": \"pen\",\n  \"penca\": \"penc\",\n  \"pendendo\": \"pend\",\n  \"pendenga\": \"pendeng\",\n  \"pendentes\": \"pendent\",\n  \"pender\": \"pend\",\n  \"pêndulo\": \"pêndul\",\n  \"pendurada\": \"pendur\",\n  \"penduradas\": \"pendur\",\n  \"pendurado\": \"pendur\",\n  \"penduricalhos\": \"penduricalh\",\n  \"peneira\": \"peneir\",\n  \"penetra\": \"penetr\",\n  \"penetrar\": \"penetr\",\n  \"penetraram\": \"penetr\",\n  \"penha\": \"penh\",\n  \"penhasco\": \"penhasc\",\n  \"penhascos\": \"penhasc\",\n  \"penhora\": \"penhor\",\n  \"península\": \"penínsul\",\n  \"peninsulares\": \"peninsul\",\n  \"pênis\": \"pên\",\n  \"penitenciária\": \"penitenciár\",\n  \"penitenciárias\": \"penitenciár\",\n  \"penitenciário\": \"penitenciári\",\n  \"penou\": \"pen\",\n  \"penrose\": \"penros\",\n  \"pensa\": \"pens\",\n  \"pensadas\": \"pens\",\n  \"pensado\": \"pens\",\n  \"pensador\": \"pensador\",\n  \"pensadores\": \"pensador\",\n  \"pensam\": \"pens\",\n  \"pensamento\": \"pensament\",\n  \"pensamentos\": \"pensament\",\n  \"pensamos\": \"pens\",\n  \"pensando\": \"pens\",\n  \"pensão\": \"pensã\",\n  \"pensar\": \"pens\",\n  \"pensara\": \"pens\",\n  \"pensaram\": \"pens\",\n  \"pensarmos\": \"pens\",\n  \"pensas\": \"pens\",\n  \"pensasse\": \"pens\",\n  \"pensava\": \"pens\",\n  \"pensavam\": \"pens\",\n  \"pense\": \"pens\",\n  \"pensei\": \"pens\",\n  \"pensem\": \"pens\",\n  \"pensilvânia\": \"pensilvân\",\n  \"penso\": \"pens\",\n  \"pensões\": \"pensõ\",\n  \"pensou\": \"pens\",\n  \"penta\": \"pent\",\n  \"pentágono\": \"pentágon\",\n  \"pente\": \"pent\",\n  \"penteado\": \"pent\",\n  \"pentecostais\": \"pentecost\",\n  \"pentecostal\": \"pentecostal\",\n  \"pentecoste\": \"pentecost\",\n  \"penthouse\": \"penthous\",\n  \"pentium\": \"pentium\",\n  \"penúltima\": \"penúltim\",\n  \"penúria\": \"penúr\",\n  \"pepe\": \"pep\",\n  \"pepebista\": \"pepeb\",\n  \"pepino\": \"pepin\",\n  \"pepito\": \"pepit\",\n  \"pepsi\": \"peps\",\n  \"pepsico\": \"pepsic\",\n  \"pequena\": \"pequen\",\n  \"pequenas\": \"pequen\",\n  \"pequenininha\": \"pequenininh\",\n  \"pequenininho\": \"pequenininh\",\n  \"pequeninos\": \"pequenin\",\n  \"pequeno\": \"pequen\",\n  \"pequenos\": \"pequen\",\n  \"pequim\": \"pequim\",\n  \"per\": \"per\",\n  \"pêra\": \"pêr\",\n  \"peracchi\": \"peracch\",\n  \"peraí\": \"pera\",\n  \"peraltas\": \"peralt\",\n  \"peralteia\": \"peralt\",\n  \"peraltice\": \"peraltic\",\n  \"perambulando\": \"perambul\",\n  \"perante\": \"perant\",\n  \"perca\": \"perc\",\n  \"percam\": \"perc\",\n  \"perceba\": \"perceb\",\n  \"percebe\": \"perceb\",\n  \"percebem\": \"perceb\",\n  \"percebemos\": \"perceb\",\n  \"percebendo\": \"perceb\",\n  \"perceber\": \"perceb\",\n  \"percebera\": \"perceb\",\n  \"perceberá\": \"perceb\",\n  \"perceberam\": \"perceb\",\n  \"perceberem\": \"perceb\",\n  \"percebesse\": \"perceb\",\n  \"percebeu\": \"perceb\",\n  \"percebi\": \"perceb\",\n  \"percebia\": \"perceb\",\n  \"percebido\": \"perceb\",\n  \"percebo\": \"perceb\",\n  \"percentuais\": \"percentu\",\n  \"percentual\": \"percentual\",\n  \"percepção\": \"percepçã\",\n  \"perco\": \"perc\",\n  \"percorre\": \"percorr\",\n  \"percorrem\": \"percorr\",\n  \"percorrendo\": \"percorr\",\n  \"percorrer\": \"percorr\",\n  \"percorrerá\": \"percorr\",\n  \"percorreu\": \"percorr\",\n  \"percorria\": \"percorr\",\n  \"percorrida\": \"percorr\",\n  \"percurso\": \"percurs\",\n  \"percussão\": \"percussã\",\n  \"percussionista\": \"percussion\",\n  \"perda\": \"perd\",\n  \"perdão\": \"perdã\",\n  \"perdas\": \"perd\",\n  \"perde\": \"perd\",\n  \"perdedor\": \"perdedor\",\n  \"perdem\": \"perd\",\n  \"perdemos\": \"perd\",\n  \"perdendo\": \"perd\",\n  \"perder\": \"perd\",\n  \"perdera\": \"perd\",\n  \"perderá\": \"perd\",\n  \"perderam\": \"perd\",\n  \"perderia\": \"perd\",\n  \"perdermos\": \"perd\",\n  \"perdesse\": \"perd\",\n  \"perdeu\": \"perd\",\n  \"perdi\": \"perd\",\n  \"perdia\": \"perd\",\n  \"perdida\": \"perd\",\n  \"perdidas\": \"perd\",\n  \"perdido\": \"perd\",\n  \"perdidos\": \"perd\",\n  \"perdigão\": \"perdigã\",\n  \"perdizes\": \"perdiz\",\n  \"perdoá\": \"perdo\",\n  \"perdoar\": \"perdo\",\n  \"perdoaria\": \"perdo\",\n  \"perdoava\": \"perdo\",\n  \"perdoei\": \"perdo\",\n  \"perdoem\": \"perdo\",\n  \"perdoou\": \"perdo\",\n  \"perdulários\": \"perdulári\",\n  \"perdura\": \"perdur\",\n  \"perdure\": \"perdur\",\n  \"perecíveis\": \"perecív\",\n  \"peregrinação\": \"peregrin\",\n  \"peregrinações\": \"peregrin\",\n  \"peregrinam\": \"peregrin\",\n  \"peregrinos\": \"peregrin\",\n  \"pereio\": \"perei\",\n  \"pereira\": \"pereir\",\n  \"pereiras\": \"pereir\",\n  \"peremptoriamente\": \"peremptori\",\n  \"peres\": \"per\",\n  \"pereyra\": \"pereyr\",\n  \"perez\": \"perez\",\n  \"perfeccionista\": \"perfeccion\",\n  \"perfeição\": \"perfeiçã\",\n  \"perfeições\": \"perfeiçõ\",\n  \"perfeita\": \"perfeit\",\n  \"perfeitamente\": \"perfeit\",\n  \"perfeito\": \"perfeit\",\n  \"perfeitos\": \"perfeit\",\n  \"perfil\": \"perfil\",\n  \"perforatum\": \"perforatum\",\n  \"performance\": \"performanc\",\n  \"performances\": \"performanc\",\n  \"performer\": \"perform\",\n  \"perfumado\": \"perfum\",\n  \"perfumaria\": \"perfum\",\n  \"perfume\": \"perfum\",\n  \"perfumes\": \"perfum\",\n  \"perfuradora\": \"perfur\",\n  \"perfurou\": \"perfur\",\n  \"pergunta\": \"pergunt\",\n  \"perguntado\": \"pergunt\",\n  \"perguntam\": \"pergunt\",\n  \"perguntando\": \"pergunt\",\n  \"perguntar\": \"pergunt\",\n  \"perguntaram\": \"pergunt\",\n  \"perguntarem\": \"pergunt\",\n  \"perguntaria\": \"pergunt\",\n  \"perguntas\": \"pergunt\",\n  \"perguntasse\": \"pergunt\",\n  \"perguntava\": \"pergunt\",\n  \"pergunte\": \"pergunt\",\n  \"perguntei\": \"pergunt\",\n  \"pergunto\": \"pergunt\",\n  \"perguntou\": \"pergunt\",\n  \"péri\": \"pér\",\n  \"periandro\": \"periandr\",\n  \"perícia\": \"períc\",\n  \"periciais\": \"peric\",\n  \"perícias\": \"períc\",\n  \"periciou\": \"peric\",\n  \"perico\": \"peric\",\n  \"periculosidade\": \"periculos\",\n  \"periferia\": \"perif\",\n  \"periférica\": \"perifér\",\n  \"perigo\": \"perig\",\n  \"perigos\": \"perig\",\n  \"perigosa\": \"perig\",\n  \"perigosamente\": \"perig\",\n  \"perigosas\": \"perig\",\n  \"perigosíssima\": \"perigosíssim\",\n  \"perigoso\": \"perig\",\n  \"perigosos\": \"perig\",\n  \"perímetro\": \"perímetr\",\n  \"perinatal\": \"perinatal\",\n  \"periodicamente\": \"period\",\n  \"período\": \"períod\",\n  \"períodos\": \"períod\",\n  \"peripécias\": \"peripéc\",\n  \"périplo\": \"péripl\",\n  \"periquita\": \"periquit\",\n  \"perispírito\": \"perispírit\",\n  \"perissé\": \"periss\",\n  \"perito\": \"perit\",\n  \"peritos\": \"perit\",\n  \"perkons\": \"perkons\",\n  \"perla\": \"perl\",\n  \"perles\": \"perl\",\n  \"permaneça\": \"permanec\",\n  \"permaneçam\": \"permanec\",\n  \"permanece\": \"permanec\",\n  \"permanecem\": \"permanec\",\n  \"permanecendo\": \"permanec\",\n  \"permanecer\": \"permanec\",\n  \"permanecerá\": \"permanec\",\n  \"permaneceram\": \"permanec\",\n  \"permanecerão\": \"permanec\",\n  \"permanecessem\": \"permanec\",\n  \"permaneceu\": \"permanec\",\n  \"permanecia\": \"permanec\",\n  \"permanecido\": \"permanec\",\n  \"permanência\": \"permanent\",\n  \"permanente\": \"permanent\",\n  \"permanentemente\": \"permanent\",\n  \"permanentes\": \"permanent\",\n  \"permeada\": \"perm\",\n  \"permeável\": \"permeável\",\n  \"permissão\": \"permissã\",\n  \"permissiva\": \"permiss\",\n  \"permissividade\": \"permiss\",\n  \"permite\": \"permit\",\n  \"permitem\": \"permit\",\n  \"permitia\": \"permit\",\n  \"permitida\": \"permit\",\n  \"permitido\": \"permit\",\n  \"permitidos\": \"permit\",\n  \"permitimos\": \"permit\",\n  \"permitindo\": \"permit\",\n  \"permitir\": \"permit\",\n  \"permitirá\": \"permit\",\n  \"permitiram\": \"permit\",\n  \"permitiria\": \"permit\",\n  \"permitissem\": \"permit\",\n  \"permitiu\": \"permit\",\n  \"permito\": \"permit\",\n  \"perna\": \"pern\",\n  \"pernambucana\": \"pernambucan\",\n  \"pernambucano\": \"pernambucan\",\n  \"pernambucanos\": \"pernambucan\",\n  \"pernambuco\": \"pernambuc\",\n  \"pernas\": \"pern\",\n  \"pernoitara\": \"pernoit\",\n  \"pernoite\": \"pernoit\",\n  \"pernudo\": \"pernud\",\n  \"pêro\": \"pêr\",\n  \"pérola\": \"pérol\",\n  \"pérolas\": \"pérol\",\n  \"perônio\": \"perôni\",\n  \"perpetua\": \"perpetu\",\n  \"perpétua\": \"perpétu\",\n  \"perpetuam\": \"perpetu\",\n  \"perpetuamente\": \"perpetu\",\n  \"perpetuando\": \"perpetu\",\n  \"perpetuar\": \"perpetu\",\n  \"perpetuasse\": \"perpetu\",\n  \"perpétuo\": \"perpétu\",\n  \"perpetuou\": \"perpetu\",\n  \"perplexa\": \"perplex\",\n  \"perplexidade\": \"perplex\",\n  \"perplexo\": \"perplex\",\n  \"perplexos\": \"perplex\",\n  \"perrier\": \"perri\",\n  \"perrin\": \"perrin\",\n  \"perry\": \"perry\",\n  \"perseguem\": \"persegu\",\n  \"persegui\": \"persegu\",\n  \"perseguia\": \"persegu\",\n  \"perseguição\": \"perseguiçã\",\n  \"perseguições\": \"perseguiçõ\",\n  \"perseguida\": \"persegu\",\n  \"perseguido\": \"persegu\",\n  \"perseguidor\": \"perseguidor\",\n  \"perseguidos\": \"persegu\",\n  \"perseguir\": \"persegu\",\n  \"perseguiu\": \"persegu\",\n  \"perseverante\": \"persever\",\n  \"pérsio\": \"pérsi\",\n  \"persiste\": \"pers\",\n  \"persistem\": \"persist\",\n  \"persistência\": \"persistent\",\n  \"persistente\": \"persistent\",\n  \"persistentes\": \"persistent\",\n  \"persistiu\": \"persist\",\n  \"persona\": \"person\",\n  \"personagem\": \"personag\",\n  \"personagens\": \"personagens\",\n  \"personal\": \"personal\",\n  \"personalidade\": \"personal\",\n  \"personalidades\": \"personal\",\n  \"personalizada\": \"personaliz\",\n  \"personalizado\": \"personaliz\",\n  \"personalizar\": \"personaliz\",\n  \"personificação\": \"personific\",\n  \"personificada\": \"personific\",\n  \"perspectiva\": \"perspect\",\n  \"perspectivas\": \"perspect\",\n  \"perspicazes\": \"perspicaz\",\n  \"persuasão\": \"persuasã\",\n  \"pertence\": \"pertenc\",\n  \"pertencem\": \"pertenc\",\n  \"pertencemos\": \"pertenc\",\n  \"pertencente\": \"pertencent\",\n  \"pertencentes\": \"pertencent\",\n  \"pertencer\": \"pertenc\",\n  \"pertencera\": \"pertenc\",\n  \"pertenceria\": \"pertenc\",\n  \"pertences\": \"pertenc\",\n  \"pertenceu\": \"pertenc\",\n  \"pertenci\": \"pertenc\",\n  \"pertencia\": \"pertenc\",\n  \"pertinência\": \"pertinent\",\n  \"pertinente\": \"pertinent\",\n  \"pertinho\": \"pertinh\",\n  \"perto\": \"pert\",\n  \"perturba\": \"perturb\",\n  \"perturbação\": \"perturb\",\n  \"perturbações\": \"perturb\",\n  \"perturbadora\": \"perturb\",\n  \"perturbando\": \"perturb\",\n  \"perturbar\": \"perturb\",\n  \"perturbavam\": \"perturb\",\n  \"peru\": \"peru\",\n  \"perua\": \"peru\",\n  \"peruana\": \"peruan\",\n  \"peruano\": \"peruan\",\n  \"peruanos\": \"peruan\",\n  \"peruca\": \"peruc\",\n  \"perucas\": \"peruc\",\n  \"perversa\": \"pervers\",\n  \"perverte\": \"pervert\",\n  \"pés\": \"pés\",\n  \"pesa\": \"pes\",\n  \"pesada\": \"pes\",\n  \"pesadamente\": \"pesad\",\n  \"pesadas\": \"pes\",\n  \"pesadelo\": \"pesadel\",\n  \"pesadelos\": \"pesadel\",\n  \"pesadíssima\": \"pesadíssim\",\n  \"pesadíssimas\": \"pesadíssim\",\n  \"pesado\": \"pes\",\n  \"pesados\": \"pes\",\n  \"pesam\": \"pes\",\n  \"pêsames\": \"pêsam\",\n  \"pesamos\": \"pes\",\n  \"pesando\": \"pes\",\n  \"pesar\": \"pes\",\n  \"pesava\": \"pes\",\n  \"pesca\": \"pesc\",\n  \"pescado\": \"pesc\",\n  \"pescador\": \"pescador\",\n  \"pescadores\": \"pescador\",\n  \"pescando\": \"pesc\",\n  \"pescoço\": \"pescoc\",\n  \"peso\": \"pes\",\n  \"pesos\": \"pes\",\n  \"pesou\": \"pes\",\n  \"pespectiva\": \"pespect\",\n  \"pesquisa\": \"pesquis\",\n  \"pesquisadas\": \"pesquis\",\n  \"pesquisado\": \"pesquis\",\n  \"pesquisador\": \"pesquis\",\n  \"pesquisadora\": \"pesquis\",\n  \"pesquisadores\": \"pesquis\",\n  \"pesquisados\": \"pesquis\",\n  \"pesquisam\": \"pesquis\",\n  \"pesquisar\": \"pesquis\",\n  \"pesquisas\": \"pesquis\",\n  \"pesquisou\": \"pesquis\",\n  \"pessanha\": \"pessanh\",\n  \"pêssego\": \"pêsseg\",\n  \"pessi\": \"pess\",\n  \"péssima\": \"péssim\",\n  \"pessimismo\": \"pessim\",\n  \"pessimista\": \"pessim\",\n  \"pessimistas\": \"pessim\",\n  \"péssimo\": \"péssim\",\n  \"pessoa\": \"pesso\",\n  \"pessoais\": \"pesso\",\n  \"pessoal\": \"pessoal\",\n  \"pessoalmente\": \"pessoal\",\n  \"pessoas\": \"pesso\",\n  \"peste\": \"pest\",\n  \"pestes\": \"pest\",\n  \"pet\": \"pet\",\n  \"petardo\": \"petard\",\n  \"pete\": \"pet\",\n  \"peter\": \"pet\",\n  \"peters\": \"peters\",\n  \"petição\": \"petiçã\",\n  \"petista\": \"petist\",\n  \"petistas\": \"petist\",\n  \"petit\": \"petit\",\n  \"petrobras\": \"petrobr\",\n  \"petrobrás\": \"petrobrás\",\n  \"petroleiros\": \"petroleir\",\n  \"petróleo\": \"petról\",\n  \"petrolina\": \"petrolin\",\n  \"petroni\": \"petron\",\n  \"petrônio\": \"petrôni\",\n  \"petrópolis\": \"petrópol\",\n  \"petros\": \"petr\",\n  \"peugeot\": \"peugeot\",\n  \"pezinho\": \"pezinh\",\n  \"pf\": \"pf\",\n  \"pfl\": \"pfl\",\n  \"pgo\": \"pgo\",\n  \"ph\": \"ph\",\n  \"phanos\": \"phan\",\n  \"philip\": \"philip\",\n  \"philippe\": \"philipp\",\n  \"philippoussis\": \"philippouss\",\n  \"phone\": \"phon\",\n  \"photo\": \"phot\",\n  \"photoshop\": \"photoshop\",\n  \"physique\": \"physiqu\",\n  \"physus\": \"physus\",\n  \"phytoervas\": \"phytoerv\",\n  \"pia\": \"pia\",\n  \"piacentini\": \"piacentin\",\n  \"piada\": \"piad\",\n  \"piadas\": \"piad\",\n  \"piadinhas\": \"piadinh\",\n  \"piagetiano\": \"piagetian\",\n  \"piamente\": \"piament\",\n  \"piano\": \"pian\",\n  \"piao\": \"pia\",\n  \"piauí\": \"piau\",\n  \"piazza\": \"piazz\",\n  \"pib\": \"pib\",\n  \"pic\": \"pic\",\n  \"picada\": \"pic\",\n  \"picadinha\": \"picadinh\",\n  \"picadinho\": \"picadinh\",\n  \"picado\": \"pic\",\n  \"picados\": \"pic\",\n  \"picanha\": \"picanh\",\n  \"picantes\": \"picant\",\n  \"picão\": \"picã\",\n  \"picardia\": \"picard\",\n  \"picareta\": \"picaret\",\n  \"picaretas\": \"picaret\",\n  \"pichações\": \"pichaçõ\",\n  \"pichador\": \"pichador\",\n  \"pick\": \"pick\",\n  \"pico\": \"pic\",\n  \"picolés\": \"picolés\",\n  \"picos\": \"pic\",\n  \"picotada\": \"picot\",\n  \"picotando\": \"picot\",\n  \"picote\": \"picot\",\n  \"picuinha\": \"picuinh\",\n  \"pie\": \"pie\",\n  \"piedade\": \"piedad\",\n  \"pieguice\": \"pieguic\",\n  \"pier\": \"pier\",\n  \"pierre\": \"pierr\",\n  \"pierro\": \"pierr\",\n  \"pietralata\": \"pietralat\",\n  \"pif\": \"pif\",\n  \"pifado\": \"pif\",\n  \"pífio\": \"pífi\",\n  \"pigarro\": \"pigarr\",\n  \"pigmentos\": \"pigment\",\n  \"pijama\": \"pijam\",\n  \"pike\": \"pik\",\n  \"pilares\": \"pil\",\n  \"pilatos\": \"pilat\",\n  \"pilha\": \"pilh\",\n  \"pilhando\": \"pilh\",\n  \"pilhas\": \"pilh\",\n  \"pillar\": \"pill\",\n  \"pilota\": \"pilot\",\n  \"pilotando\": \"pilot\",\n  \"pilotar\": \"pilot\",\n  \"pilotava\": \"pilot\",\n  \"piloto\": \"pilot\",\n  \"pilotos\": \"pilot\",\n  \"pilotou\": \"pilot\",\n  \"pílula\": \"pílul\",\n  \"pílulas\": \"pílul\",\n  \"pimenta\": \"piment\",\n  \"pimentaa\": \"pimenta\",\n  \"pimentel\": \"pimentel\",\n  \"pimpolhos\": \"pimpolh\",\n  \"pinça\": \"pinc\",\n  \"píncaros\": \"píncar\",\n  \"pinças\": \"pinc\",\n  \"pincéis\": \"pinc\",\n  \"ping\": \"ping\",\n  \"pinga\": \"ping\",\n  \"pingado\": \"ping\",\n  \"pingo\": \"ping\",\n  \"pingüins\": \"pingüins\",\n  \"pinhais\": \"pinh\",\n  \"pinheiro\": \"pinheir\",\n  \"pinheiros\": \"pinheir\",\n  \"pinot\": \"pinot\",\n  \"pinotti\": \"pinott\",\n  \"pinta\": \"pint\",\n  \"pintá\": \"pint\",\n  \"pintar\": \"pint\",\n  \"pinter\": \"pint\",\n  \"pinto\": \"pint\",\n  \"pintor\": \"pintor\",\n  \"pintora\": \"pintor\",\n  \"pintores\": \"pintor\",\n  \"pintou\": \"pint\",\n  \"pintura\": \"pintur\",\n  \"pinturas\": \"pintur\",\n  \"pio\": \"pio\",\n  \"piolho\": \"piolh\",\n  \"piolhos\": \"piolh\",\n  \"pioneiras\": \"pioneir\",\n  \"pioneiro\": \"pioneir\",\n  \"pioneiros\": \"pioneir\",\n  \"pior\": \"pior\",\n  \"piorando\": \"pior\",\n  \"piorar\": \"pior\",\n  \"pioraram\": \"pior\",\n  \"piores\": \"pior\",\n  \"piorou\": \"pior\",\n  \"pipa\": \"pip\",\n  \"pipas\": \"pip\",\n  \"pipes\": \"pip\",\n  \"pipoca\": \"pipoc\",\n  \"pipocando\": \"pipoc\",\n  \"pipocar\": \"pipoc\",\n  \"pique\": \"piqu\",\n  \"piquenique\": \"piqueniqu\",\n  \"piração\": \"piraçã\",\n  \"piracema\": \"piracem\",\n  \"piraí\": \"pira\",\n  \"pirajussara\": \"pirajuss\",\n  \"pirâmide\": \"pirâmid\",\n  \"piranha\": \"piranh\",\n  \"pirapora\": \"pirapor\",\n  \"pirata\": \"pirat\",\n  \"pirataria\": \"pirat\",\n  \"piratas\": \"pirat\",\n  \"pires\": \"pir\",\n  \"pirralhos\": \"pirralh\",\n  \"piruetas\": \"piruet\",\n  \"pis\": \"pis\",\n  \"pisados\": \"pis\",\n  \"pisando\": \"pis\",\n  \"pisar\": \"pis\",\n  \"pisarão\": \"pis\",\n  \"piscar\": \"pisc\",\n  \"piscaram\": \"pisc\",\n  \"piscina\": \"piscin\",\n  \"piscinas\": \"piscin\",\n  \"piso\": \"pis\",\n  \"pisos\": \"pis\",\n  \"pisoteado\": \"pisot\",\n  \"pisoteiem\": \"pisotei\",\n  \"pista\": \"pist\",\n  \"pistas\": \"pist\",\n  \"pistola\": \"pistol\",\n  \"pistolas\": \"pistol\",\n  \"pistolinha\": \"pistolinh\",\n  \"pistolões\": \"pistolõ\",\n  \"pistols\": \"pistols\",\n  \"pitada\": \"pit\",\n  \"pitanguy\": \"pitanguy\",\n  \"pitoresca\": \"pitoresc\",\n  \"pitoresco\": \"pitoresc\",\n  \"pitorescos\": \"pitoresc\",\n  \"pitta\": \"pitt\",\n  \"pittman\": \"pittman\",\n  \"pittomba\": \"pittomb\",\n  \"piva\": \"piv\",\n  \"pivô\": \"pivô\",\n  \"pixinguinha\": \"pixinguinh\",\n  \"pizza\": \"pizz\",\n  \"pizzarela\": \"pizzarel\",\n  \"pizzaria\": \"pizz\",\n  \"pizzarias\": \"pizz\",\n  \"pizzas\": \"pizz\",\n  \"placa\": \"plac\",\n  \"placas\": \"plac\",\n  \"place\": \"plac\",\n  \"placebo\": \"placeb\",\n  \"plácida\": \"plác\",\n  \"plagas\": \"plag\",\n  \"planafloro\": \"planaflor\",\n  \"planalto\": \"planalt\",\n  \"planeja\": \"planej\",\n  \"planejada\": \"planej\",\n  \"planejadas\": \"planej\",\n  \"planejado\": \"planej\",\n  \"planejam\": \"planej\",\n  \"planejamento\": \"planej\",\n  \"planejando\": \"planej\",\n  \"planejar\": \"planej\",\n  \"planejava\": \"planej\",\n  \"planejo\": \"planej\",\n  \"planejou\": \"planej\",\n  \"planet\": \"planet\",\n  \"planeta\": \"planet\",\n  \"planetária\": \"planetár\",\n  \"planetário\": \"planetári\",\n  \"planetas\": \"planet\",\n  \"planilha\": \"planilh\",\n  \"plano\": \"plan\",\n  \"planos\": \"plan\",\n  \"planta\": \"plant\",\n  \"plantação\": \"plantaçã\",\n  \"plantações\": \"plantaçõ\",\n  \"plantada\": \"plant\",\n  \"plantado\": \"plant\",\n  \"plantadora\": \"plantador\",\n  \"plantam\": \"plant\",\n  \"plantando\": \"plant\",\n  \"plantão\": \"plantã\",\n  \"plantar\": \"plant\",\n  \"plantas\": \"plant\",\n  \"plantava\": \"plant\",\n  \"plantel\": \"plantel\",\n  \"plantificado\": \"plantific\",\n  \"plantio\": \"planti\",\n  \"plantou\": \"plant\",\n  \"planura\": \"planur\",\n  \"plaquetas\": \"plaquet\",\n  \"plástica\": \"plástic\",\n  \"plasticamente\": \"plastic\",\n  \"plásticas\": \"plástic\",\n  \"plasticidade\": \"plastic\",\n  \"plástico\": \"plástic\",\n  \"plásticos\": \"plástic\",\n  \"plastificada\": \"plastific\",\n  \"plataforma\": \"plataform\",\n  \"platéia\": \"plat\",\n  \"platéias\": \"plat\",\n  \"platina\": \"platin\",\n  \"platinada\": \"platin\",\n  \"plausível\": \"plausível\",\n  \"playboy\": \"playboy\",\n  \"playground\": \"playground\",\n  \"playmobil\": \"playmobil\",\n  \"plaza\": \"plaz\",\n  \"plebéia\": \"pleb\",\n  \"plebiscito\": \"plebiscit\",\n  \"pleiteante\": \"pleiteant\",\n  \"pleitear\": \"pleit\",\n  \"pleiteavam\": \"pleit\",\n  \"pleiteiam\": \"pleit\",\n  \"pleito\": \"pleit\",\n  \"plena\": \"plen\",\n  \"plenamente\": \"plen\",\n  \"plenário\": \"plenári\",\n  \"pleno\": \"plen\",\n  \"plenos\": \"plen\",\n  \"plínio\": \"plíni\",\n  \"pliométrica\": \"pliométr\",\n  \"plissada\": \"pliss\",\n  \"plissado\": \"pliss\",\n  \"plugadas\": \"plug\",\n  \"plugados\": \"plug\",\n  \"plugaram\": \"plug\",\n  \"plumas\": \"plum\",\n  \"plural\": \"plural\",\n  \"pluriétnico\": \"pluriétn\",\n  \"plus\": \"plus\",\n  \"plush\": \"plush\",\n  \"pm\": \"pm\",\n  \"pmdb\": \"pmdb\",\n  \"pms\": \"pms\",\n  \"pneu\": \"pneu\",\n  \"pneumologista\": \"pneumolog\",\n  \"pneumonia\": \"pneumon\",\n  \"pneus\": \"pneus\",\n  \"pneuzinhos\": \"pneuzinh\",\n  \"pó\": \"pó\",\n  \"pô\": \"pô\",\n  \"pobre\": \"pobr\",\n  \"pobres\": \"pobr\",\n  \"pobreza\": \"pobrez\",\n  \"poção\": \"poçã\",\n  \"pochê\": \"poch\",\n  \"poço\": \"poc\",\n  \"poções\": \"poçõ\",\n  \"poconé\": \"pocon\",\n  \"pode\": \"pod\",\n  \"pôde\": \"pôd\",\n  \"podem\": \"pod\",\n  \"podemos\": \"pod\",\n  \"podendo\": \"pod\",\n  \"poder\": \"pod\",\n  \"poderá\": \"pod\",\n  \"poderão\": \"pod\",\n  \"poderemos\": \"pod\",\n  \"poderes\": \"pod\",\n  \"poderia\": \"pod\",\n  \"poderiam\": \"pod\",\n  \"poderíamos\": \"pod\",\n  \"poderio\": \"poderi\",\n  \"podermos\": \"pod\",\n  \"poderosa\": \"poder\",\n  \"poderosas\": \"poder\",\n  \"poderoso\": \"poder\",\n  \"poderosos\": \"poder\",\n  \"podia\": \"pod\",\n  \"podiam\": \"pod\",\n  \"podíamos\": \"pod\",\n  \"podido\": \"pod\",\n  \"pódio\": \"pódi\",\n  \"podres\": \"podr\",\n  \"poe\": \"poe\",\n  \"põe\": \"põ\",\n  \"poeira\": \"poeir\",\n  \"poeirentas\": \"poeirent\",\n  \"põem\": \"põ\",\n  \"poema\": \"poem\",\n  \"poemas\": \"poem\",\n  \"poème\": \"poèm\",\n  \"poerenta\": \"poerent\",\n  \"poesia\": \"poes\",\n  \"poesias\": \"poes\",\n  \"poeta\": \"poet\",\n  \"poético\": \"poétic\",\n  \"poída\": \"poíd\",\n  \"point\": \"point\",\n  \"points\": \"points\",\n  \"pois\": \"pois\",\n  \"pojuca\": \"pojuc\",\n  \"pol\": \"pol\",\n  \"polar\": \"pol\",\n  \"polarização\": \"polariz\",\n  \"polarizada\": \"polariz\",\n  \"polegar\": \"poleg\",\n  \"polêmica\": \"polêm\",\n  \"polêmicas\": \"polêm\",\n  \"polêmico\": \"polêm\",\n  \"polêmicos\": \"polêm\",\n  \"polemista\": \"polem\",\n  \"polemizar\": \"polemiz\",\n  \"policarpo\": \"policarp\",\n  \"polichinelo\": \"polichinel\",\n  \"policia\": \"polic\",\n  \"polícia\": \"políc\",\n  \"policiais\": \"polic\",\n  \"policial\": \"policial\",\n  \"policiamento\": \"polic\",\n  \"polícias\": \"políc\",\n  \"policístico\": \"policíst\",\n  \"polida\": \"pol\",\n  \"poligâmica\": \"poligâm\",\n  \"poligâmicos\": \"poligâm\",\n  \"polígono\": \"polígon\",\n  \"poliomielite\": \"poliomielit\",\n  \"politécnica\": \"politécn\",\n  \"política\": \"polít\",\n  \"politicamente\": \"polit\",\n  \"políticas\": \"polít\",\n  \"político\": \"polít\",\n  \"políticos\": \"polít\",\n  \"politiqueiro\": \"politiqueir\",\n  \"politizada\": \"politiz\",\n  \"politizado\": \"politiz\",\n  \"politraumatismo\": \"politraumat\",\n  \"polo\": \"pol\",\n  \"pólo\": \"pól\",\n  \"polônio\": \"polôni\",\n  \"pólos\": \"pól\",\n  \"polpuda\": \"polpud\",\n  \"poltrona\": \"poltron\",\n  \"poltronas\": \"poltron\",\n  \"poluição\": \"poluiçã\",\n  \"poluídas\": \"poluíd\",\n  \"poluir\": \"polu\",\n  \"pólvora\": \"pólvor\",\n  \"polygram\": \"polygr\",\n  \"pomada\": \"pom\",\n  \"pombinhos\": \"pombinh\",\n  \"pomo\": \"pom\",\n  \"pompa\": \"pomp\",\n  \"pompéia\": \"pomp\",\n  \"pompeu\": \"pomp\",\n  \"pomposo\": \"pompos\",\n  \"pomposos\": \"pompos\",\n  \"poncho\": \"ponch\",\n  \"pondera\": \"pond\",\n  \"ponderação\": \"ponder\",\n  \"ponderado\": \"ponder\",\n  \"ponderou\": \"ponder\",\n  \"pondo\": \"pond\",\n  \"ponha\": \"ponh\",\n  \"ponham\": \"ponh\",\n  \"ponta\": \"pont\",\n  \"pontal\": \"pontal\",\n  \"pontapés\": \"pontapés\",\n  \"pontas\": \"pont\",\n  \"ponte\": \"pont\",\n  \"pontes\": \"pont\",\n  \"pontificava\": \"pontific\",\n  \"pontifícia\": \"pontifíc\",\n  \"pontilhado\": \"pontilh\",\n  \"pontinha\": \"pontinh\",\n  \"ponto\": \"pont\",\n  \"pontos\": \"pont\",\n  \"pontua\": \"pontu\",\n  \"pontuada\": \"pontu\",\n  \"pontuado\": \"pontu\",\n  \"pontuais\": \"pontu\",\n  \"pontual\": \"pontual\",\n  \"pontualmente\": \"pontual\",\n  \"pontuar\": \"pontu\",\n  \"ponzio\": \"ponzi\",\n  \"poodle\": \"poodl\",\n  \"pop\": \"pop\",\n  \"popa\": \"pop\",\n  \"popovic\": \"popovic\",\n  \"poppovic\": \"poppovic\",\n  \"população\": \"popul\",\n  \"populacional\": \"populacional\",\n  \"populações\": \"popul\",\n  \"popular\": \"popul\",\n  \"populares\": \"popul\",\n  \"popularidade\": \"popular\",\n  \"popularíssimo\": \"popularíssim\",\n  \"popularizá\": \"populariz\",\n  \"popularização\": \"populariz\",\n  \"popularizar\": \"populariz\",\n  \"popularizou\": \"populariz\",\n  \"popularmente\": \"popular\",\n  \"populi\": \"popul\",\n  \"populista\": \"popul\",\n  \"populosa\": \"popul\",\n  \"populoso\": \"popul\",\n  \"pôquer\": \"pôqu\",\n  \"por\": \"por\",\n  \"pôr\": \"pôr\",\n  \"porão\": \"porã\",\n  \"porção\": \"porçã\",\n  \"porcaria\": \"porc\",\n  \"porcas\": \"porc\",\n  \"porcentagem\": \"porcentag\",\n  \"porcentual\": \"porcentual\",\n  \"porco\": \"porc\",\n  \"porções\": \"porçõ\",\n  \"porcos\": \"porc\",\n  \"porém\": \"porém\",\n  \"pormenores\": \"pormenor\",\n  \"pornô\": \"pornô\",\n  \"pornografia\": \"pornograf\",\n  \"pornográficas\": \"pornográf\",\n  \"poro\": \"por\",\n  \"poró\": \"por\",\n  \"porões\": \"porõ\",\n  \"poros\": \"por\",\n  \"porosos\": \"poros\",\n  \"porque\": \"porqu\",\n  \"porquê\": \"porqu\",\n  \"porquês\": \"porquês\",\n  \"porquinho\": \"porquinh\",\n  \"porrada\": \"porr\",\n  \"porre\": \"porr\",\n  \"porsche\": \"porsch\",\n  \"porta\": \"port\",\n  \"portador\": \"portador\",\n  \"portadoras\": \"portador\",\n  \"portadores\": \"portador\",\n  \"portanto\": \"portant\",\n  \"portão\": \"portã\",\n  \"portaria\": \"port\",\n  \"portas\": \"port\",\n  \"portáteis\": \"portát\",\n  \"portátil\": \"portátil\",\n  \"porte\": \"port\",\n  \"porteira\": \"porteir\",\n  \"porteiras\": \"porteir\",\n  \"porteiro\": \"porteir\",\n  \"porteiros\": \"porteir\",\n  \"portela\": \"portel\",\n  \"portella\": \"portell\",\n  \"portento\": \"portent\",\n  \"portentosa\": \"portent\",\n  \"portentosas\": \"portent\",\n  \"porter\": \"port\",\n  \"portes\": \"port\",\n  \"portinari\": \"portinar\",\n  \"porto\": \"port\",\n  \"portobrás\": \"portobrás\",\n  \"portões\": \"portõ\",\n  \"portos\": \"port\",\n  \"portuárias\": \"portuár\",\n  \"portuários\": \"portuári\",\n  \"portugal\": \"portugal\",\n  \"português\": \"português\",\n  \"portuguesa\": \"portugues\",\n  \"portuguesas\": \"portugues\",\n  \"portugueses\": \"portugues\",\n  \"pós\": \"pós\",\n  \"pôs\": \"pôs\",\n  \"posar\": \"pos\",\n  \"posava\": \"pos\",\n  \"pose\": \"pos\",\n  \"poses\": \"pos\",\n  \"posição\": \"posiçã\",\n  \"posicionados\": \"posicion\",\n  \"posicionamentos\": \"posicion\",\n  \"posicionar\": \"posicion\",\n  \"posições\": \"posiçõ\",\n  \"positiva\": \"posit\",\n  \"positivamente\": \"posit\",\n  \"positivas\": \"posit\",\n  \"positivo\": \"posit\",\n  \"positivos\": \"posit\",\n  \"possa\": \"poss\",\n  \"possam\": \"poss\",\n  \"possamos\": \"poss\",\n  \"possante\": \"possant\",\n  \"posse\": \"poss\",\n  \"posses\": \"poss\",\n  \"possessão\": \"possessã\",\n  \"possessiva\": \"possess\",\n  \"possessivo\": \"possess\",\n  \"possesso\": \"possess\",\n  \"possi\": \"poss\",\n  \"possibilidade\": \"possibil\",\n  \"possibilidades\": \"possibil\",\n  \"possibilita\": \"possibilit\",\n  \"possibilitando\": \"possibilit\",\n  \"possíveis\": \"possív\",\n  \"possível\": \"possível\",\n  \"possivelmente\": \"possivel\",\n  \"possívelmente\": \"possível\",\n  \"posso\": \"poss\",\n  \"possuem\": \"possu\",\n  \"possui\": \"possu\",\n  \"possuía\": \"possuí\",\n  \"possuíam\": \"possuí\",\n  \"possuir\": \"possu\",\n  \"posta\": \"post\",\n  \"postado\": \"post\",\n  \"postais\": \"post\",\n  \"postal\": \"postal\",\n  \"poste\": \"post\",\n  \"pôster\": \"pôst\",\n  \"pôsteres\": \"pôst\",\n  \"postergar\": \"posterg\",\n  \"posterior\": \"posterior\",\n  \"posteriores\": \"posterior\",\n  \"posteriormente\": \"posterior\",\n  \"postes\": \"post\",\n  \"posto\": \"post\",\n  \"postos\": \"post\",\n  \"postulador\": \"postul\",\n  \"postulante\": \"postul\",\n  \"postumamente\": \"postum\",\n  \"póstumas\": \"póstum\",\n  \"postura\": \"postur\",\n  \"posturas\": \"postur\",\n  \"pot\": \"pot\",\n  \"potável\": \"potável\",\n  \"pote\": \"pot\",\n  \"potência\": \"potênc\",\n  \"potenciais\": \"potenc\",\n  \"potencial\": \"potencial\",\n  \"potencialmente\": \"potencial\",\n  \"potências\": \"potênc\",\n  \"potente\": \"potent\",\n  \"potentes\": \"potent\",\n  \"potinhos\": \"potinh\",\n  \"pouca\": \"pouc\",\n  \"poucas\": \"pouc\",\n  \"pouco\": \"pouc\",\n  \"poucos\": \"pouc\",\n  \"poupa\": \"poup\",\n  \"poupado\": \"poup\",\n  \"poupador\": \"poupador\",\n  \"poupadores\": \"poupador\",\n  \"poupam\": \"poup\",\n  \"poupança\": \"poupanc\",\n  \"poupando\": \"poup\",\n  \"poupar\": \"poup\",\n  \"pouparam\": \"poup\",\n  \"poupou\": \"poup\",\n  \"pouquinho\": \"pouquinh\",\n  \"pouquíssima\": \"pouquíssim\",\n  \"pouquíssimo\": \"pouquíssim\",\n  \"pouquíssimos\": \"pouquíss\",\n  \"pousa\": \"pous\",\n  \"pousada\": \"pous\",\n  \"pousam\": \"pous\",\n  \"pousamos\": \"pous\",\n  \"pousando\": \"pous\",\n  \"pousar\": \"pous\",\n  \"pouso\": \"pous\",\n  \"pousou\": \"pous\",\n  \"povão\": \"povã\",\n  \"povo\": \"pov\",\n  \"povoa\": \"povo\",\n  \"povoada\": \"povo\",\n  \"povoado\": \"povo\",\n  \"povoados\": \"povo\",\n  \"povoam\": \"povo\",\n  \"povoar\": \"povo\",\n  \"povos\": \"pov\",\n  \"powel\": \"powel\",\n  \"powell\": \"powell\",\n  \"power\": \"pow\",\n  \"pp\": \"pp\",\n  \"ppb\": \"ppb\",\n  \"ppp\": \"ppp\",\n  \"pr\": \"pr\",\n  \"pra\": \"pra\",\n  \"prá\": \"prá\",\n  \"praça\": \"prac\",\n  \"prada\": \"prad\",\n  \"pradesh\": \"pradesh\",\n  \"prado\": \"prad\",\n  \"prados\": \"prad\",\n  \"praga\": \"prag\",\n  \"pragmática\": \"pragmát\",\n  \"pragmáticas\": \"pragmát\",\n  \"pragmático\": \"pragmát\",\n  \"pragmáticos\": \"pragmát\",\n  \"pragmatismo\": \"pragmat\",\n  \"praia\": \"pra\",\n  \"praianinha\": \"praianinh\",\n  \"praias\": \"pra\",\n  \"prancheta\": \"pranchet\",\n  \"pranchetas\": \"pranchet\",\n  \"prandi\": \"prand\",\n  \"prantos\": \"prant\",\n  \"prata\": \"prat\",\n  \"prateleira\": \"prateleir\",\n  \"prateleiras\": \"prateleir\",\n  \"prates\": \"prat\",\n  \"pratica\": \"pratic\",\n  \"prática\": \"prátic\",\n  \"praticada\": \"pratic\",\n  \"praticadas\": \"pratic\",\n  \"praticado\": \"pratic\",\n  \"praticados\": \"pratic\",\n  \"praticam\": \"pratic\",\n  \"praticamente\": \"pratic\",\n  \"praticando\": \"pratic\",\n  \"praticante\": \"pratic\",\n  \"praticantes\": \"pratic\",\n  \"praticar\": \"pratic\",\n  \"praticaram\": \"pratic\",\n  \"práticas\": \"prátic\",\n  \"praticidade\": \"pratic\",\n  \"prático\": \"prátic\",\n  \"práticos\": \"prátic\",\n  \"praticou\": \"pratic\",\n  \"prato\": \"prat\",\n  \"pratos\": \"prat\",\n  \"praxe\": \"prax\",\n  \"prazeirosa\": \"prazeir\",\n  \"prazer\": \"praz\",\n  \"prazeres\": \"praz\",\n  \"prazerosa\": \"prazer\",\n  \"prazerosas\": \"prazer\",\n  \"prazeroso\": \"prazer\",\n  \"prazo\": \"praz\",\n  \"prazos\": \"praz\",\n  \"pré\": \"pré\",\n  \"precária\": \"precár\",\n  \"precariamente\": \"precari\",\n  \"precárias\": \"precár\",\n  \"precário\": \"precári\",\n  \"precários\": \"precári\",\n  \"precatório\": \"precatóri\",\n  \"precatórios\": \"precatóri\",\n  \"precaução\": \"precauçã\",\n  \"prece\": \"prec\",\n  \"precede\": \"preced\",\n  \"precedem\": \"preced\",\n  \"precedente\": \"precedent\",\n  \"precedentes\": \"precedent\",\n  \"precedeu\": \"preced\",\n  \"precedida\": \"preced\",\n  \"precedidos\": \"preced\",\n  \"preceitos\": \"preceit\",\n  \"preces\": \"prec\",\n  \"preciosa\": \"precios\",\n  \"preciosas\": \"precios\",\n  \"preciosidade\": \"precios\",\n  \"preciosidades\": \"precios\",\n  \"precioso\": \"precios\",\n  \"preciosos\": \"precios\",\n  \"precious\": \"precious\",\n  \"precipícios\": \"precipíci\",\n  \"precipitado\": \"precipit\",\n  \"precisa\": \"precis\",\n  \"precisado\": \"precis\",\n  \"precisam\": \"precis\",\n  \"precisamente\": \"precis\",\n  \"precisamos\": \"precis\",\n  \"precisando\": \"precis\",\n  \"precisão\": \"precisã\",\n  \"precisar\": \"precis\",\n  \"precisará\": \"precis\",\n  \"precisaria\": \"precis\",\n  \"precisariam\": \"precis\",\n  \"precisaríamos\": \"precis\",\n  \"precisas\": \"precis\",\n  \"precisasse\": \"precis\",\n  \"precisava\": \"precis\",\n  \"precisavam\": \"precis\",\n  \"precisávamos\": \"precis\",\n  \"precise\": \"precis\",\n  \"precisei\": \"precis\",\n  \"precisem\": \"precis\",\n  \"preciso\": \"precis\",\n  \"precisos\": \"precis\",\n  \"precisou\": \"precis\",\n  \"preço\": \"prec\",\n  \"precoce\": \"precoc\",\n  \"precocemente\": \"precoc\",\n  \"precoces\": \"precoc\",\n  \"precocidade\": \"precoc\",\n  \"preconcebida\": \"preconceb\",\n  \"preconceito\": \"preconceit\",\n  \"preconceitos\": \"preconceit\",\n  \"preconceituosa\": \"preconceitu\",\n  \"preconceituosos\": \"preconceitu\",\n  \"precondição\": \"precondiçã\",\n  \"preços\": \"prec\",\n  \"precursor\": \"precursor\",\n  \"precursora\": \"precursor\",\n  \"precursores\": \"precursor\",\n  \"predatória\": \"predatór\",\n  \"predatórias\": \"predatór\",\n  \"predatório\": \"predatóri\",\n  \"predestinado\": \"predestin\",\n  \"predileção\": \"predileçã\",\n  \"predileta\": \"predilet\",\n  \"prediletas\": \"predilet\",\n  \"predileto\": \"predilet\",\n  \"prediletos\": \"predilet\",\n  \"prédio\": \"prédi\",\n  \"prédios\": \"prédi\",\n  \"predispõe\": \"predispõ\",\n  \"predisposição\": \"predisposiçã\",\n  \"predomina\": \"predomin\",\n  \"predominam\": \"predomin\",\n  \"predominância\": \"predomin\",\n  \"predominante\": \"predomin\",\n  \"predominantemente\": \"predomin\",\n  \"predominou\": \"predomin\",\n  \"preenchem\": \"preench\",\n  \"preenchendo\": \"preench\",\n  \"preencher\": \"preench\",\n  \"preencherá\": \"preench\",\n  \"preencheriam\": \"preench\",\n  \"preencheu\": \"preench\",\n  \"preenchia\": \"preench\",\n  \"preenchida\": \"preench\",\n  \"preenchido\": \"preench\",\n  \"preenchimento\": \"preenchiment\",\n  \"prefaciasse\": \"prefac\",\n  \"prefácio\": \"prefáci\",\n  \"prefeita\": \"prefeit\",\n  \"prefeito\": \"prefeit\",\n  \"prefeitos\": \"prefeit\",\n  \"prefeitura\": \"prefeitur\",\n  \"prefeituras\": \"prefeitur\",\n  \"prefere\": \"prefer\",\n  \"preferem\": \"pref\",\n  \"preferência\": \"preferent\",\n  \"preferencialmente\": \"preferencial\",\n  \"preferências\": \"preferent\",\n  \"preferi\": \"prefer\",\n  \"preferia\": \"pref\",\n  \"preferiam\": \"pref\",\n  \"preferíamos\": \"pref\",\n  \"preferida\": \"prefer\",\n  \"preferido\": \"prefer\",\n  \"preferidos\": \"prefer\",\n  \"preferindo\": \"prefer\",\n  \"preferino\": \"preferin\",\n  \"preferiram\": \"prefer\",\n  \"preferiria\": \"prefer\",\n  \"preferiu\": \"prefer\",\n  \"preferível\": \"prefer\",\n  \"prefira\": \"pref\",\n  \"prefiro\": \"prefir\",\n  \"prefixo\": \"prefix\",\n  \"prega\": \"preg\",\n  \"pregação\": \"pregaçã\",\n  \"pregador\": \"pregador\",\n  \"pregam\": \"preg\",\n  \"pregão\": \"pregã\",\n  \"pregar\": \"preg\",\n  \"pregava\": \"preg\",\n  \"preguiça\": \"preguic\",\n  \"preguiçosa\": \"preguic\",\n  \"preguiçosas\": \"preguic\",\n  \"preguiçoso\": \"preguic\",\n  \"preguiçosos\": \"preguic\",\n  \"preju\": \"preju\",\n  \"prejudica\": \"prejud\",\n  \"prejudicada\": \"prejudic\",\n  \"prejudicados\": \"prejudic\",\n  \"prejudicando\": \"prejudic\",\n  \"prejudicar\": \"prejudic\",\n  \"prejudicava\": \"prejudic\",\n  \"prejudicial\": \"prejudicial\",\n  \"prejudicou\": \"prejudic\",\n  \"prejudique\": \"prejudiqu\",\n  \"prejudiquem\": \"prejudiqu\",\n  \"prejuízo\": \"prejuíz\",\n  \"prejuízos\": \"prejuíz\",\n  \"preliminar\": \"prelimin\",\n  \"preliminares\": \"prelimin\",\n  \"prematura\": \"prematur\",\n  \"prematuras\": \"prematur\",\n  \"prematuridade\": \"prematur\",\n  \"premia\": \"prem\",\n  \"premiá\": \"premi\",\n  \"premiação\": \"premiaçã\",\n  \"premiada\": \"premi\",\n  \"premiadas\": \"premi\",\n  \"premiadíssimo\": \"premiadíssim\",\n  \"premiado\": \"premi\",\n  \"premiados\": \"premi\",\n  \"premiar\": \"premi\",\n  \"premiava\": \"premi\",\n  \"premiem\": \"premi\",\n  \"prêmio\": \"prêmi\",\n  \"prêmios\": \"prêmi\",\n  \"premonição\": \"premoniçã\",\n  \"premonitório\": \"premonitóri\",\n  \"premonitórios\": \"premonitóri\",\n  \"prenda\": \"prend\",\n  \"prende\": \"prend\",\n  \"prendem\": \"prend\",\n  \"prendendo\": \"prend\",\n  \"prender\": \"prend\",\n  \"prenderam\": \"prend\",\n  \"prendeu\": \"prend\",\n  \"prendido\": \"prend\",\n  \"prenomes\": \"prenom\",\n  \"prensa\": \"prens\",\n  \"prensada\": \"prens\",\n  \"prenúncio\": \"prenúnci\",\n  \"prenúncios\": \"prenúnci\",\n  \"preocupa\": \"preocup\",\n  \"preocupação\": \"preocup\",\n  \"preocupações\": \"preocup\",\n  \"preocupada\": \"preocup\",\n  \"preocupadas\": \"preocup\",\n  \"preocupado\": \"preocup\",\n  \"preocupados\": \"preocup\",\n  \"preocupam\": \"preocup\",\n  \"preocupante\": \"preocup\",\n  \"preocupar\": \"preocup\",\n  \"preocuparam\": \"preocup\",\n  \"preocupasse\": \"preocup\",\n  \"preocupava\": \"preocup\",\n  \"preocupe\": \"preocup\",\n  \"preocupei\": \"preocup\",\n  \"preocupo\": \"preocup\",\n  \"preocupou\": \"preocup\",\n  \"prepara\": \"prep\",\n  \"preparação\": \"prepar\",\n  \"preparada\": \"prepar\",\n  \"preparado\": \"prepar\",\n  \"preparador\": \"prepar\",\n  \"preparadora\": \"prepar\",\n  \"preparados\": \"prepar\",\n  \"preparam\": \"prep\",\n  \"preparando\": \"prepar\",\n  \"preparar\": \"prepar\",\n  \"prepararam\": \"prepar\",\n  \"preparativos\": \"prepar\",\n  \"preparava\": \"prepar\",\n  \"prepare\": \"prepar\",\n  \"preparei\": \"prep\",\n  \"preparem\": \"prep\",\n  \"preparo\": \"prepar\",\n  \"preparos\": \"prepar\",\n  \"preparou\": \"prepar\",\n  \"preponderante\": \"preponder\",\n  \"prepotente\": \"prepotent\",\n  \"presa\": \"pres\",\n  \"presas\": \"pres\",\n  \"presbiteriana\": \"presbiterian\",\n  \"prescindir\": \"prescind\",\n  \"prescrevem\": \"prescrev\",\n  \"prescrever\": \"prescrev\",\n  \"prescreveu\": \"prescrev\",\n  \"prescrição\": \"prescriçã\",\n  \"prescrições\": \"prescriçõ\",\n  \"prescrita\": \"prescrit\",\n  \"prescritas\": \"prescrit\",\n  \"prescritos\": \"prescrit\",\n  \"presença\": \"presenc\",\n  \"presenciar\": \"presenc\",\n  \"presenciou\": \"presenc\",\n  \"presente\": \"present\",\n  \"presentear\": \"present\",\n  \"presentes\": \"present\",\n  \"presépio\": \"presépi\",\n  \"preserva\": \"preserv\",\n  \"preservação\": \"preserv\",\n  \"preservada\": \"preserv\",\n  \"preservado\": \"preserv\",\n  \"preservados\": \"preserv\",\n  \"preservam\": \"preserv\",\n  \"preservar\": \"preserv\",\n  \"preservativo\": \"preserv\",\n  \"preservativos\": \"preserv\",\n  \"preservem\": \"preserv\",\n  \"preservou\": \"preserv\",\n  \"preside\": \"presid\",\n  \"presidência\": \"president\",\n  \"presidenciais\": \"presidenc\",\n  \"presidencial\": \"presidencial\",\n  \"presidencialismo\": \"presidencial\",\n  \"presidencialista\": \"presidencial\",\n  \"presidenta\": \"president\",\n  \"presidente\": \"president\",\n  \"presidentes\": \"president\",\n  \"presidiários\": \"presidiári\",\n  \"presidida\": \"presid\",\n  \"presidido\": \"presid\",\n  \"presídio\": \"presídi\",\n  \"presídios\": \"presídi\",\n  \"presidir\": \"presid\",\n  \"presidiu\": \"presid\",\n  \"presley\": \"presley\",\n  \"preso\": \"pres\",\n  \"presos\": \"pres\",\n  \"press\": \"press\",\n  \"pressa\": \"press\",\n  \"pressagiar\": \"pressagi\",\n  \"pressão\": \"pressã\",\n  \"pressas\": \"press\",\n  \"presse\": \"press\",\n  \"pressentido\": \"pressent\",\n  \"pressioná\": \"pression\",\n  \"pressionado\": \"pression\",\n  \"pressionados\": \"pression\",\n  \"pressionam\": \"pression\",\n  \"pressionar\": \"pression\",\n  \"pressionasse\": \"pression\",\n  \"pressionou\": \"pression\",\n  \"pressões\": \"pressõ\",\n  \"pressupõe\": \"pressupõ\",\n  \"pressuposto\": \"pressupost\",\n  \"presta\": \"prest\",\n  \"prestação\": \"prestaçã\",\n  \"prestações\": \"prestaçõ\",\n  \"prestador\": \"prestador\",\n  \"prestados\": \"prest\",\n  \"prestam\": \"prest\",\n  \"prestando\": \"prest\",\n  \"prestar\": \"prest\",\n  \"prestaram\": \"prest\",\n  \"prestava\": \"prest\",\n  \"preste\": \"prest\",\n  \"prestes\": \"prest\",\n  \"prestigiado\": \"prestigi\",\n  \"prestigiados\": \"prestigi\",\n  \"prestígio\": \"prestígi\",\n  \"prestigiosa\": \"prestigi\",\n  \"prestigioso\": \"prestigi\",\n  \"presto\": \"prest\",\n  \"prestou\": \"prest\",\n  \"presumir\": \"presum\",\n  \"presunto\": \"presunt\",\n  \"presuntos\": \"presunt\",\n  \"prét\": \"prét\",\n  \"prêt\": \"prêt\",\n  \"preta\": \"pret\",\n  \"pretende\": \"pretend\",\n  \"pretendem\": \"pretend\",\n  \"pretendemos\": \"pretend\",\n  \"pretendente\": \"pretendent\",\n  \"pretendentes\": \"pretendent\",\n  \"pretendia\": \"pretend\",\n  \"pretendiam\": \"pretend\",\n  \"pretendo\": \"pret\",\n  \"pretensioso\": \"pretensi\",\n  \"pretenso\": \"pretens\",\n  \"preteridos\": \"preter\",\n  \"pretexto\": \"pretext\",\n  \"pretextos\": \"pretext\",\n  \"preto\": \"pret\",\n  \"pretos\": \"pret\",\n  \"prevalece\": \"prevalec\",\n  \"prevalecer\": \"prevalec\",\n  \"prevaleceu\": \"prevalec\",\n  \"prevê\": \"prev\",\n  \"prevêem\": \"prev\",\n  \"prevêm\": \"prevêm\",\n  \"prevenção\": \"prevençã\",\n  \"prevendo\": \"prev\",\n  \"prevenida\": \"preven\",\n  \"prevenir\": \"preven\",\n  \"preveniu\": \"preven\",\n  \"preventiva\": \"prevent\",\n  \"preventivamente\": \"prevent\",\n  \"preventivas\": \"prevent\",\n  \"preventivo\": \"prevent\",\n  \"preventivos\": \"prevent\",\n  \"prever\": \"prev\",\n  \"previ\": \"prev\",\n  \"previa\": \"prev\",\n  \"prévia\": \"prév\",\n  \"previdência\": \"prevident\",\n  \"previdenciária\": \"previdenciár\",\n  \"previdenciário\": \"previdenciári\",\n  \"prévio\": \"prévi\",\n  \"previram\": \"prev\",\n  \"previsão\": \"previsã\",\n  \"previsível\": \"previs\",\n  \"previsões\": \"previsõ\",\n  \"prevista\": \"previst\",\n  \"previstas\": \"previst\",\n  \"previsto\": \"previst\",\n  \"previstos\": \"previst\",\n  \"previu\": \"prev\",\n  \"preza\": \"prez\",\n  \"preze\": \"prez\",\n  \"prezo\": \"prez\",\n  \"price\": \"pric\",\n  \"pride\": \"prid\",\n  \"prima\": \"prim\",\n  \"primária\": \"primár\",\n  \"primárias\": \"primár\",\n  \"primário\": \"primári\",\n  \"primas\": \"prim\",\n  \"primavera\": \"primav\",\n  \"primazia\": \"primaz\",\n  \"primeira\": \"primeir\",\n  \"primeiras\": \"primeir\",\n  \"primeiro\": \"primeir\",\n  \"primeiros\": \"primeir\",\n  \"primitiva\": \"primit\",\n  \"primo\": \"prim\",\n  \"primogênita\": \"primogênit\",\n  \"primor\": \"primor\",\n  \"primordiais\": \"primordi\",\n  \"primordial\": \"primordial\",\n  \"primórdios\": \"primórdi\",\n  \"primos\": \"prim\",\n  \"prince\": \"princ\",\n  \"princesa\": \"princes\",\n  \"principais\": \"princip\",\n  \"principal\": \"principal\",\n  \"principalmente\": \"principal\",\n  \"príncipe\": \"príncip\",\n  \"princípio\": \"princípi\",\n  \"princípios\": \"princípi\",\n  \"priore\": \"prior\",\n  \"prioridade\": \"prioridad\",\n  \"prioridades\": \"prioridad\",\n  \"prioritariamente\": \"prioritari\",\n  \"prioritárias\": \"prioritár\",\n  \"prioritário\": \"prioritári\",\n  \"prioritários\": \"prioritári\",\n  \"priorizá\": \"prioriz\",\n  \"priorizar\": \"prioriz\",\n  \"prisão\": \"prisã\",\n  \"priscila\": \"priscil\",\n  \"priscilla\": \"priscill\",\n  \"prisco\": \"prisc\",\n  \"prisioneira\": \"prisioneir\",\n  \"prisioneiro\": \"prisioneir\",\n  \"prisioneiros\": \"prisioneir\",\n  \"prisma\": \"prism\",\n  \"prisões\": \"prisõ\",\n  \"privacidade\": \"privac\",\n  \"privada\": \"priv\",\n  \"privadas\": \"priv\",\n  \"privado\": \"priv\",\n  \"privados\": \"priv\",\n  \"privam\": \"priv\",\n  \"private\": \"privat\",\n  \"privativo\": \"privat\",\n  \"privativos\": \"privat\",\n  \"privatiza\": \"privatiz\",\n  \"privatização\": \"privatiz\",\n  \"privatizações\": \"privatiz\",\n  \"privatizada\": \"privatiz\",\n  \"privatizado\": \"privatiz\",\n  \"privatizando\": \"privatiz\",\n  \"privatizar\": \"privatiz\",\n  \"privé\": \"priv\",\n  \"privilegia\": \"privileg\",\n  \"privilegiada\": \"privilegi\",\n  \"privilegiadas\": \"privilegi\",\n  \"privilegiado\": \"privilegi\",\n  \"privilegiados\": \"privilegi\",\n  \"privilegiando\": \"privilegi\",\n  \"privilégio\": \"privilégi\",\n  \"prize\": \"priz\",\n  \"prn\": \"prn\",\n  \"pro\": \"pro\",\n  \"pró\": \"pró\",\n  \"proálcool\": \"proálcool\",\n  \"proar\": \"pro\",\n  \"probabilidade\": \"probabil\",\n  \"probabilidades\": \"probabil\",\n  \"problema\": \"problem\",\n  \"problemas\": \"problem\",\n  \"problemática\": \"problemát\",\n  \"problemáticas\": \"problemát\",\n  \"problemático\": \"problemát\",\n  \"problemáticos\": \"problemát\",\n  \"probleminha\": \"probleminh\",\n  \"procedência\": \"procedent\",\n  \"procedente\": \"procedent\",\n  \"procedentes\": \"procedent\",\n  \"procedesse\": \"proced\",\n  \"procedimento\": \"proced\",\n  \"procedimentos\": \"proced\",\n  \"processada\": \"process\",\n  \"processado\": \"process\",\n  \"processador\": \"process\",\n  \"processadores\": \"process\",\n  \"processados\": \"process\",\n  \"processamento\": \"process\",\n  \"processando\": \"process\",\n  \"processar\": \"process\",\n  \"processo\": \"process\",\n  \"processos\": \"process\",\n  \"processou\": \"process\",\n  \"prociamidas\": \"prociam\",\n  \"procissão\": \"procissã\",\n  \"proclama\": \"proclam\",\n  \"proclamação\": \"proclam\",\n  \"proclamada\": \"proclam\",\n  \"proclamam\": \"proclam\",\n  \"proclamou\": \"proclam\",\n  \"procon\": \"procon\",\n  \"procópio\": \"procópi\",\n  \"procriação\": \"procriaçã\",\n  \"procriar\": \"procri\",\n  \"procupá\": \"procup\",\n  \"procura\": \"procur\",\n  \"procuração\": \"procur\",\n  \"procurações\": \"procur\",\n  \"procurada\": \"procur\",\n  \"procuradas\": \"procur\",\n  \"procurado\": \"procur\",\n  \"procurador\": \"procur\",\n  \"procuradores\": \"procur\",\n  \"procuradoria\": \"procurador\",\n  \"procurados\": \"procur\",\n  \"procuram\": \"procur\",\n  \"procuramos\": \"procur\",\n  \"procurando\": \"procur\",\n  \"procurar\": \"procur\",\n  \"procuraram\": \"procur\",\n  \"procurasse\": \"procur\",\n  \"procurassem\": \"procur\",\n  \"procurava\": \"procur\",\n  \"procurávamos\": \"procur\",\n  \"procure\": \"procur\",\n  \"procurei\": \"procur\",\n  \"procurem\": \"procur\",\n  \"procuremos\": \"procur\",\n  \"procuro\": \"procur\",\n  \"procurou\": \"procur\",\n  \"prodi\": \"prod\",\n  \"pródigas\": \"pródig\",\n  \"prodígio\": \"prodígi\",\n  \"prodigiosa\": \"prodigi\",\n  \"pródigo\": \"pródig\",\n  \"produação\": \"produaçã\",\n  \"produban\": \"produban\",\n  \"produção\": \"produçã\",\n  \"produções\": \"produçõ\",\n  \"produtiva\": \"produt\",\n  \"produtivas\": \"produt\",\n  \"produtividade\": \"produt\",\n  \"produtivo\": \"produt\",\n  \"produtivos\": \"produt\",\n  \"produto\": \"produt\",\n  \"produtor\": \"produtor\",\n  \"produtora\": \"produtor\",\n  \"produtores\": \"produtor\",\n  \"produtos\": \"produt\",\n  \"produz\": \"produz\",\n  \"produzem\": \"produz\",\n  \"produzia\": \"produz\",\n  \"produzida\": \"produz\",\n  \"produzidas\": \"produz\",\n  \"produzido\": \"produz\",\n  \"produzidos\": \"produz\",\n  \"produzindo\": \"produz\",\n  \"produzir\": \"produz\",\n  \"produzirá\": \"produz\",\n  \"produziram\": \"produz\",\n  \"produziremos\": \"produz\",\n  \"produziu\": \"produz\",\n  \"produzo\": \"produz\",\n  \"proeminente\": \"proeminent\",\n  \"proer\": \"pro\",\n  \"proex\": \"proex\",\n  \"proeza\": \"proez\",\n  \"proezas\": \"proez\",\n  \"profanação\": \"profan\",\n  \"profecia\": \"profec\",\n  \"profecias\": \"profec\",\n  \"proferir\": \"profer\",\n  \"professa\": \"profess\",\n  \"professado\": \"profess\",\n  \"professor\": \"professor\",\n  \"professora\": \"professor\",\n  \"professoras\": \"professor\",\n  \"professores\": \"professor\",\n  \"profeta\": \"profet\",\n  \"profetas\": \"profet\",\n  \"profética\": \"profét\",\n  \"profile\": \"profil\",\n  \"profissão\": \"profissã\",\n  \"profissionais\": \"profission\",\n  \"profissional\": \"profissional\",\n  \"profissionalismo\": \"profissional\",\n  \"profissionalíssima\": \"profissionalíssim\",\n  \"profissionalização\": \"profissionaliz\",\n  \"profissionalizante\": \"profissionaliz\",\n  \"profissionalizantes\": \"profissionaliz\",\n  \"profissionalmente\": \"profissional\",\n  \"profissões\": \"profissõ\",\n  \"profunda\": \"profund\",\n  \"profundamente\": \"profund\",\n  \"profundas\": \"profund\",\n  \"profundidade\": \"profund\",\n  \"profundidades\": \"profund\",\n  \"profundo\": \"profund\",\n  \"profundos\": \"profund\",\n  \"profusão\": \"profusã\",\n  \"prognósticos\": \"prognóst\",\n  \"programa\": \"program\",\n  \"programação\": \"program\",\n  \"programações\": \"program\",\n  \"programada\": \"program\",\n  \"programado\": \"program\",\n  \"programados\": \"program\",\n  \"programar\": \"program\",\n  \"programas\": \"program\",\n  \"programática\": \"programát\",\n  \"progredia\": \"progred\",\n  \"progredido\": \"progred\",\n  \"progredindo\": \"progred\",\n  \"progredir\": \"progred\",\n  \"progressão\": \"progressã\",\n  \"progresso\": \"progress\",\n  \"progressos\": \"progress\",\n  \"progride\": \"progrid\",\n  \"proíba\": \"proíb\",\n  \"proíbe\": \"proíb\",\n  \"proibia\": \"proib\",\n  \"proibição\": \"proibiçã\",\n  \"proibida\": \"proib\",\n  \"proibidas\": \"proib\",\n  \"proibido\": \"proib\",\n  \"proibidos\": \"proib\",\n  \"proibir\": \"proib\",\n  \"proibisse\": \"proib\",\n  \"proibiu\": \"proib\",\n  \"proíbo\": \"proíb\",\n  \"projeção\": \"projeçã\",\n  \"projeções\": \"projeçõ\",\n  \"projeta\": \"projet\",\n  \"projetado\": \"projet\",\n  \"projetados\": \"projet\",\n  \"projetamos\": \"projet\",\n  \"projetando\": \"projet\",\n  \"projetar\": \"projet\",\n  \"projéteis\": \"projét\",\n  \"projétil\": \"projétil\",\n  \"projetista\": \"projet\",\n  \"projeto\": \"projet\",\n  \"projetor\": \"projetor\",\n  \"projetores\": \"projetor\",\n  \"projetos\": \"projet\",\n  \"projetou\": \"projet\",\n  \"prol\": \"prol\",\n  \"prole\": \"prol\",\n  \"proletariado\": \"proletari\",\n  \"proletário\": \"proletári\",\n  \"prolifera\": \"prolif\",\n  \"proliferação\": \"prolifer\",\n  \"proliferaram\": \"prolifer\",\n  \"prólogo\": \"prólog\",\n  \"prolonga\": \"prolong\",\n  \"prolongá\": \"prolong\",\n  \"prolongado\": \"prolong\",\n  \"prolongados\": \"prolong\",\n  \"prolongar\": \"prolong\",\n  \"prolongou\": \"prolong\",\n  \"promessa\": \"promess\",\n  \"promessas\": \"promess\",\n  \"promete\": \"promet\",\n  \"prometem\": \"promet\",\n  \"prometemos\": \"promet\",\n  \"prometendo\": \"promet\",\n  \"prometeram\": \"promet\",\n  \"prometeu\": \"promet\",\n  \"prometi\": \"promet\",\n  \"prometia\": \"promet\",\n  \"prometida\": \"promet\",\n  \"prometido\": \"promet\",\n  \"promiscuidade\": \"promiscu\",\n  \"promíscuo\": \"promíscu\",\n  \"promissor\": \"promissor\",\n  \"promissora\": \"promissor\",\n  \"promissores\": \"promissor\",\n  \"promissória\": \"promissór\",\n  \"promissórias\": \"promissór\",\n  \"promoção\": \"promoçã\",\n  \"promocionais\": \"promocion\",\n  \"promoções\": \"promoçõ\",\n  \"promoter\": \"promot\",\n  \"promotor\": \"promotor\",\n  \"promotora\": \"promotor\",\n  \"promotores\": \"promotor\",\n  \"promotoria\": \"promotor\",\n  \"promove\": \"promov\",\n  \"promovem\": \"promov\",\n  \"promovendo\": \"promov\",\n  \"promover\": \"promov\",\n  \"promoveram\": \"promov\",\n  \"promoveu\": \"promov\",\n  \"promovida\": \"promov\",\n  \"promovido\": \"promov\",\n  \"promovidos\": \"promov\",\n  \"promulgação\": \"promulg\",\n  \"promulgada\": \"promulg\",\n  \"pronta\": \"pront\",\n  \"prontamente\": \"pront\",\n  \"prontas\": \"pront\",\n  \"prontidão\": \"prontidã\",\n  \"pronto\": \"pront\",\n  \"prontos\": \"pront\",\n  \"pronuncia\": \"pronunc\",\n  \"pronúncia\": \"pronúnc\",\n  \"pronunciada\": \"pronunc\",\n  \"pronunciadas\": \"pronunc\",\n  \"pronunciado\": \"pronunc\",\n  \"pronunciamento\": \"pronunc\",\n  \"pronunciamentos\": \"pronunc\",\n  \"pronunciando\": \"pronunc\",\n  \"pronunciar\": \"pronunc\",\n  \"propagam\": \"propag\",\n  \"propaganda\": \"propagand\",\n  \"propagandas\": \"propagand\",\n  \"propagandeado\": \"propagand\",\n  \"propagandeados\": \"propagand\",\n  \"propagandear\": \"propagand\",\n  \"propagandeou\": \"propagand\",\n  \"propagandista\": \"propagand\",\n  \"propagandistas\": \"propagand\",\n  \"propagando\": \"propag\",\n  \"propalada\": \"propal\",\n  \"propato\": \"propat\",\n  \"propensão\": \"propensã\",\n  \"propensas\": \"propens\",\n  \"propensos\": \"propens\",\n  \"propicia\": \"propic\",\n  \"propiciam\": \"propic\",\n  \"propiciará\": \"propic\",\n  \"propício\": \"propíci\",\n  \"propina\": \"propin\",\n  \"propõe\": \"propõ\",\n  \"propõem\": \"propõ\",\n  \"proponho\": \"proponh\",\n  \"propor\": \"propor\",\n  \"proporção\": \"proporçã\",\n  \"proporciona\": \"proporcion\",\n  \"proporcionado\": \"proporcion\",\n  \"proporcionados\": \"proporcion\",\n  \"proporcionais\": \"proporcion\",\n  \"proporcional\": \"proporcional\",\n  \"proporcionando\": \"proporcion\",\n  \"proporcionar\": \"proporcion\",\n  \"proporcionaram\": \"proporcion\",\n  \"proporcionaria\": \"proporcion\",\n  \"proporcionou\": \"proporcion\",\n  \"proporções\": \"proporçõ\",\n  \"propôs\": \"propôs\",\n  \"proposição\": \"proposiçã\",\n  \"propositada\": \"proposit\",\n  \"proposital\": \"proposital\",\n  \"propositalmente\": \"proposital\",\n  \"propósito\": \"propósit\",\n  \"proposta\": \"propost\",\n  \"propostas\": \"propost\",\n  \"proposto\": \"propost\",\n  \"própria\": \"própr\",\n  \"propriamente\": \"propri\",\n  \"próprias\": \"própr\",\n  \"propriedade\": \"propriedad\",\n  \"propriedades\": \"propriedad\",\n  \"proprietária\": \"proprietár\",\n  \"proprietário\": \"proprietári\",\n  \"proprietários\": \"proprietári\",\n  \"próprio\": \"própri\",\n  \"próprios\": \"própri\",\n  \"propulsão\": \"propulsã\",\n  \"propulsora\": \"propulsor\",\n  \"propunha\": \"propunh\",\n  \"propus\": \"propus\",\n  \"propusera\": \"propus\",\n  \"prorroga\": \"prorrog\",\n  \"pros\": \"pros\",\n  \"prós\": \"prós\",\n  \"prosa\": \"pros\",\n  \"prosaica\": \"prosaic\",\n  \"prosaico\": \"prosaic\",\n  \"prosdócimo\": \"prosdócim\",\n  \"prospecção\": \"prospecçã\",\n  \"prospera\": \"prosp\",\n  \"prosperar\": \"prosper\",\n  \"prosperava\": \"prosper\",\n  \"prosperidade\": \"prosper\",\n  \"próspero\": \"prósper\",\n  \"prósperos\": \"prósper\",\n  \"prossegue\": \"prosseg\",\n  \"prosseguimento\": \"prossegu\",\n  \"prosseguir\": \"prossegu\",\n  \"prostaciclina\": \"prostaciclin\",\n  \"próstata\": \"próstat\",\n  \"próstatas\": \"próstat\",\n  \"prostate\": \"prostat\",\n  \"prostatectomia\": \"prostatectom\",\n  \"prostíbulo\": \"prostíbul\",\n  \"prostíbulos\": \"prostíbul\",\n  \"prostituição\": \"prostituiçã\",\n  \"prostituir\": \"prostitu\",\n  \"prostituta\": \"prostitut\",\n  \"prostitutas\": \"prostitut\",\n  \"prostrar\": \"prostr\",\n  \"protagonista\": \"protagon\",\n  \"protagonistas\": \"protagon\",\n  \"protagoniza\": \"protagoniz\",\n  \"protagonizada\": \"protagoniz\",\n  \"protagonizado\": \"protagoniz\",\n  \"protagonizando\": \"protagoniz\",\n  \"protagonizaram\": \"protagoniz\",\n  \"protagonizou\": \"protagoniz\",\n  \"proteção\": \"proteçã\",\n  \"protecionismo\": \"protecion\",\n  \"protecionistas\": \"protecion\",\n  \"proteções\": \"proteçõ\",\n  \"protege\": \"proteg\",\n  \"protegê\": \"proteg\",\n  \"protegem\": \"proteg\",\n  \"proteger\": \"proteg\",\n  \"protegia\": \"proteg\",\n  \"protegido\": \"proteg\",\n  \"protegidos\": \"proteg\",\n  \"proteína\": \"proteín\",\n  \"proteínas\": \"proteín\",\n  \"protelação\": \"protel\",\n  \"prótese\": \"prótes\",\n  \"próteses\": \"prótes\",\n  \"protesta\": \"protest\",\n  \"protestante\": \"protest\",\n  \"protestantes\": \"protest\",\n  \"protestantismo\": \"protestant\",\n  \"protestar\": \"protest\",\n  \"protesto\": \"protest\",\n  \"protestos\": \"protest\",\n  \"protestou\": \"protest\",\n  \"protético\": \"protét\",\n  \"protetor\": \"protetor\",\n  \"protetores\": \"protetor\",\n  \"protocol\": \"protocol\",\n  \"protocolar\": \"protocol\",\n  \"protocolo\": \"protocol\",\n  \"proton\": \"proton\",\n  \"protótipo\": \"protótip\",\n  \"protuberâncias\": \"protuberânc\",\n  \"proust\": \"proust\",\n  \"prova\": \"prov\",\n  \"provação\": \"provaçã\",\n  \"provada\": \"prov\",\n  \"provado\": \"prov\",\n  \"provam\": \"prov\",\n  \"provar\": \"prov\",\n  \"provaram\": \"prov\",\n  \"provas\": \"prov\",\n  \"prováveis\": \"prov\",\n  \"provável\": \"provável\",\n  \"provavelmente\": \"provavel\",\n  \"provedor\": \"provedor\",\n  \"provedora\": \"provedor\",\n  \"provedores\": \"provedor\",\n  \"proveito\": \"proveit\",\n  \"proveniente\": \"provenient\",\n  \"provenientes\": \"provenient\",\n  \"prover\": \"prov\",\n  \"proveta\": \"provet\",\n  \"providência\": \"provident\",\n  \"providenciada\": \"providenc\",\n  \"providenciam\": \"providenc\",\n  \"providenciar\": \"providenc\",\n  \"providenciaram\": \"providenc\",\n  \"providências\": \"provident\",\n  \"providenciou\": \"providenc\",\n  \"província\": \"provínc\",\n  \"províncias\": \"provínc\",\n  \"provisões\": \"provisõ\",\n  \"provisória\": \"provisór\",\n  \"provisoriamente\": \"provisori\",\n  \"provisórias\": \"provisór\",\n  \"provisório\": \"provisóri\",\n  \"provisórios\": \"provisóri\",\n  \"provoca\": \"provoc\",\n  \"provocação\": \"provoc\",\n  \"provocada\": \"provoc\",\n  \"provocadas\": \"provoc\",\n  \"provocado\": \"provoc\",\n  \"provocador\": \"provoc\",\n  \"provocados\": \"provoc\",\n  \"provocam\": \"provoc\",\n  \"provocando\": \"provoc\",\n  \"provocar\": \"provoc\",\n  \"provocara\": \"provoc\",\n  \"provocaram\": \"provoc\",\n  \"provocaria\": \"provoc\",\n  \"provocariam\": \"provoc\",\n  \"provocasse\": \"provoc\",\n  \"provocativa\": \"provoc\",\n  \"provocativas\": \"provoc\",\n  \"provocou\": \"provoc\",\n  \"provoque\": \"provoqu\",\n  \"provou\": \"prov\",\n  \"próxima\": \"próxim\",\n  \"próximas\": \"próxim\",\n  \"proximidade\": \"proxim\",\n  \"proximidades\": \"proxim\",\n  \"próximo\": \"próxim\",\n  \"próximos\": \"próx\",\n  \"prozac\": \"prozac\",\n  \"prudência\": \"prudênc\",\n  \"prudente\": \"prudent\",\n  \"prumo\": \"prum\",\n  \"ps\": \"ps\",\n  \"psa\": \"psa\",\n  \"psb\": \"psb\",\n  \"psdb\": \"psdb\",\n  \"pseudo\": \"pseud\",\n  \"psi\": \"psi\",\n  \"psicanálise\": \"psicanális\",\n  \"psicanalista\": \"psicanal\",\n  \"psicanalistas\": \"psicanal\",\n  \"psicobiologia\": \"psicobiolog\",\n  \"psicobiólogo\": \"psicobiólog\",\n  \"psicofarmacologia\": \"psicofarmacolog\",\n  \"psicóloga\": \"psicólog\",\n  \"psicologia\": \"psicolog\",\n  \"psicológica\": \"psicológ\",\n  \"psicologicamente\": \"psicolog\",\n  \"psicológicas\": \"psicológ\",\n  \"psicológico\": \"psicológ\",\n  \"psicólogicos\": \"psicólog\",\n  \"psicológicos\": \"psicológ\",\n  \"psicólogo\": \"psicólog\",\n  \"psicólogos\": \"psicólog\",\n  \"psicopedagoga\": \"psicopedagog\",\n  \"psicoses\": \"psicos\",\n  \"psicossocial\": \"psicossocial\",\n  \"psicoterapeuta\": \"psicoterapeut\",\n  \"psicotrópicas\": \"psicotróp\",\n  \"psicotrópico\": \"psicotróp\",\n  \"psicotrópicos\": \"psicotróp\",\n  \"psique\": \"psiqu\",\n  \"psiquiatra\": \"psiquiatr\",\n  \"psiquiatras\": \"psiquiatr\",\n  \"psiquiatria\": \"psiquiatr\",\n  \"psiquiátricas\": \"psiquiátr\",\n  \"psiquiátrico\": \"psiquiátr\",\n  \"psiquicamente\": \"psiquic\",\n  \"psíquicas\": \"psíquic\",\n  \"psquiatra\": \"psquiatr\",\n  \"pt\": \"pt\",\n  \"ptb\": \"ptb\",\n  \"publica\": \"public\",\n  \"pública\": \"públic\",\n  \"publicação\": \"public\",\n  \"publicações\": \"public\",\n  \"publicada\": \"public\",\n  \"publicadas\": \"public\",\n  \"publicado\": \"public\",\n  \"publicados\": \"public\",\n  \"publicamente\": \"public\",\n  \"publicar\": \"public\",\n  \"publicaram\": \"public\",\n  \"públicas\": \"públic\",\n  \"publicava\": \"public\",\n  \"publicavam\": \"public\",\n  \"publicidade\": \"public\",\n  \"publicis\": \"public\",\n  \"publicitária\": \"publicitár\",\n  \"publicitárias\": \"publicitár\",\n  \"publicitário\": \"publicitári\",\n  \"publicitários\": \"publicitári\",\n  \"publico\": \"public\",\n  \"público\": \"públic\",\n  \"públicos\": \"públic\",\n  \"publicou\": \"public\",\n  \"publisher\": \"publish\",\n  \"pubs\": \"pubs\",\n  \"puc\": \"puc\",\n  \"pucará\": \"puc\",\n  \"puccini\": \"puccin\",\n  \"pude\": \"pud\",\n  \"puder\": \"pud\",\n  \"pudera\": \"pud\",\n  \"puderam\": \"pud\",\n  \"puderem\": \"pud\",\n  \"pudesse\": \"pud\",\n  \"pudessem\": \"pud\",\n  \"pueri\": \"puer\",\n  \"pufe\": \"puf\",\n  \"pula\": \"pul\",\n  \"pulam\": \"pul\",\n  \"pulando\": \"pul\",\n  \"pular\": \"pul\",\n  \"pulassem\": \"pul\",\n  \"pulava\": \"pul\",\n  \"pulavam\": \"pul\",\n  \"pule\": \"pul\",\n  \"puleiro\": \"puleir\",\n  \"pulmão\": \"pulmã\",\n  \"pulmões\": \"pulmõ\",\n  \"pulmonar\": \"pulmon\",\n  \"pulmonária\": \"pulmonár\",\n  \"pulo\": \"pul\",\n  \"pulou\": \"pul\",\n  \"pulquéria\": \"pulquér\",\n  \"pulsação\": \"pulsaçã\",\n  \"pulseira\": \"pulseir\",\n  \"pulso\": \"puls\",\n  \"pulsos\": \"puls\",\n  \"pululam\": \"pulul\",\n  \"pulverizadas\": \"pulveriz\",\n  \"pulverizado\": \"pulveriz\",\n  \"pulverizados\": \"pulveriz\",\n  \"pulverizou\": \"pulveriz\",\n  \"pumpkins\": \"pumpkins\",\n  \"puna\": \"pun\",\n  \"pune\": \"pun\",\n  \"punha\": \"punh\",\n  \"punhado\": \"punh\",\n  \"punhal\": \"punhal\",\n  \"punho\": \"punh\",\n  \"puni\": \"pun\",\n  \"punição\": \"puniçã\",\n  \"punições\": \"puniçõ\",\n  \"punida\": \"pun\",\n  \"punido\": \"pun\",\n  \"punidos\": \"pun\",\n  \"punindo\": \"pun\",\n  \"punir\": \"pun\",\n  \"punks\": \"punks\",\n  \"pura\": \"pur\",\n  \"puramente\": \"pur\",\n  \"pureza\": \"purez\",\n  \"purgativa\": \"purgat\",\n  \"purismo\": \"purism\",\n  \"puritanismo\": \"puritan\",\n  \"puritano\": \"puritan\",\n  \"puritanos\": \"puritan\",\n  \"puro\": \"pur\",\n  \"puros\": \"pur\",\n  \"purple\": \"purpl\",\n  \"puseram\": \"pus\",\n  \"pustiglione\": \"pustiglion\",\n  \"puta\": \"put\",\n  \"puxa\": \"pux\",\n  \"puxada\": \"pux\",\n  \"puxados\": \"pux\",\n  \"puxam\": \"pux\",\n  \"puxando\": \"pux\",\n  \"puxão\": \"puxã\",\n  \"puxar\": \"pux\",\n  \"puxaram\": \"pux\",\n  \"puxou\": \"pux\",\n  \"puzzi\": \"puzz\",\n  \"pv\": \"pv\",\n  \"q\": \"q\",\n  \"quadra\": \"quadr\",\n  \"quadrado\": \"quadr\",\n  \"quadrados\": \"quadr\",\n  \"quadras\": \"quadr\",\n  \"quadril\": \"quadril\",\n  \"quadrilha\": \"quadrilh\",\n  \"quadrilhas\": \"quadrilh\",\n  \"quadrinho\": \"quadrinh\",\n  \"quadrinhos\": \"quadrinh\",\n  \"quadris\": \"quadr\",\n  \"quadro\": \"quadr\",\n  \"quadros\": \"quadr\",\n  \"quais\": \"qua\",\n  \"quaisquer\": \"quaisqu\",\n  \"qual\": \"qual\",\n  \"qualidade\": \"qualidad\",\n  \"qualidades\": \"qualidad\",\n  \"qualificação\": \"qualific\",\n  \"qualificações\": \"qualific\",\n  \"qualificada\": \"qualific\",\n  \"qualificadas\": \"qualific\",\n  \"qualificado\": \"qualific\",\n  \"qualificar\": \"qualific\",\n  \"qualificaram\": \"qualific\",\n  \"qualificativo\": \"qualific\",\n  \"qualificou\": \"qualific\",\n  \"qualitativas\": \"qualit\",\n  \"qualitativo\": \"qualit\",\n  \"quality\": \"quality\",\n  \"qualquer\": \"qualqu\",\n  \"quando\": \"quand\",\n  \"quantas\": \"quant\",\n  \"quantia\": \"quant\",\n  \"quântica\": \"quântic\",\n  \"quantidade\": \"quantidad\",\n  \"quantidades\": \"quantidad\",\n  \"quantificada\": \"quantific\",\n  \"quantificar\": \"quantific\",\n  \"quantitativas\": \"quantit\",\n  \"quanto\": \"quant\",\n  \"quantos\": \"quant\",\n  \"quantum\": \"quantum\",\n  \"quão\": \"quã\",\n  \"quarenta\": \"quarent\",\n  \"quaresma\": \"quaresm\",\n  \"quarta\": \"quart\",\n  \"quartas\": \"quart\",\n  \"quarteirão\": \"quart\",\n  \"quartéis\": \"quart\",\n  \"quartel\": \"quartel\",\n  \"quarteto\": \"quartet\",\n  \"quartinho\": \"quartinh\",\n  \"quarto\": \"quart\",\n  \"quartos\": \"quart\",\n  \"quase\": \"quas\",\n  \"quatro\": \"quatr\",\n  \"quatrocentões\": \"quatrocentõ\",\n  \"qubilah\": \"qubilah\",\n  \"que\": \"que\",\n  \"quê\": \"quê\",\n  \"quebra\": \"quebr\",\n  \"quebrada\": \"quebr\",\n  \"quebradas\": \"quebr\",\n  \"quebradeira\": \"quebradeir\",\n  \"quebrado\": \"quebr\",\n  \"quebrados\": \"quebr\",\n  \"quebramos\": \"quebr\",\n  \"quebrando\": \"quebr\",\n  \"quebrângulo\": \"quebrângul\",\n  \"quebrante\": \"quebrant\",\n  \"quebrar\": \"quebr\",\n  \"quebraram\": \"quebr\",\n  \"quebrarem\": \"quebr\",\n  \"quebras\": \"quebr\",\n  \"quebrassem\": \"quebr\",\n  \"quebrava\": \"quebr\",\n  \"quebrei\": \"quebr\",\n  \"quebrem\": \"quebr\",\n  \"quebrou\": \"quebr\",\n  \"queda\": \"qued\",\n  \"quedas\": \"qued\",\n  \"quedistas\": \"quedist\",\n  \"quêêê\": \"quêê\",\n  \"queen\": \"queen\",\n  \"queens\": \"queens\",\n  \"queijo\": \"queij\",\n  \"queima\": \"queim\",\n  \"queimá\": \"queim\",\n  \"queimada\": \"queim\",\n  \"queimado\": \"queim\",\n  \"queimados\": \"queim\",\n  \"queimaduras\": \"queimadur\",\n  \"queimam\": \"queim\",\n  \"queimando\": \"queim\",\n  \"queimar\": \"queim\",\n  \"queimava\": \"queim\",\n  \"queimou\": \"queim\",\n  \"queira\": \"queir\",\n  \"queiram\": \"que\",\n  \"queiroga\": \"queirog\",\n  \"queirós\": \"queirós\",\n  \"queiroz\": \"queiroz\",\n  \"queixa\": \"queix\",\n  \"queixado\": \"queix\",\n  \"queixam\": \"queix\",\n  \"queixando\": \"queix\",\n  \"queixar\": \"queix\",\n  \"queixas\": \"queix\",\n  \"queixavam\": \"queix\",\n  \"queixo\": \"queix\",\n  \"queixou\": \"queix\",\n  \"queixumes\": \"queixum\",\n  \"quela\": \"quel\",\n  \"quelóides\": \"quelóid\",\n  \"quem\": \"quem\",\n  \"quênia\": \"quên\",\n  \"quente\": \"quent\",\n  \"quentes\": \"quent\",\n  \"quer\": \"quer\",\n  \"quércia\": \"quérc\",\n  \"querela\": \"querel\",\n  \"querem\": \"quer\",\n  \"queremos\": \"quer\",\n  \"querendo\": \"quer\",\n  \"querer\": \"quer\",\n  \"queria\": \"quer\",\n  \"queriam\": \"quer\",\n  \"queríamos\": \"quer\",\n  \"querida\": \"quer\",\n  \"queridinho\": \"queridinh\",\n  \"querido\": \"quer\",\n  \"querino\": \"querin\",\n  \"quero\": \"quer\",\n  \"querosene\": \"querosen\",\n  \"quesito\": \"quesit\",\n  \"quesitos\": \"quesit\",\n  \"quest\": \"quest\",\n  \"questão\": \"questã\",\n  \"questiona\": \"question\",\n  \"questionada\": \"question\",\n  \"questionado\": \"question\",\n  \"questionam\": \"question\",\n  \"questionamentos\": \"question\",\n  \"questionar\": \"question\",\n  \"questiono\": \"question\",\n  \"questionou\": \"question\",\n  \"questões\": \"questõ\",\n  \"quiabo\": \"quiab\",\n  \"quicaram\": \"quic\",\n  \"quickly\": \"quickly\",\n  \"quieto\": \"quiet\",\n  \"quietos\": \"quiet\",\n  \"quilate\": \"quilat\",\n  \"quilates\": \"quilat\",\n  \"quilinhos\": \"quilinh\",\n  \"quilo\": \"quil\",\n  \"quilombo\": \"quilomb\",\n  \"quilométricas\": \"quilométr\",\n  \"quilométricos\": \"quilométr\",\n  \"quilômetro\": \"quilômetr\",\n  \"quilômetros\": \"quilômetr\",\n  \"quilos\": \"quil\",\n  \"química\": \"químic\",\n  \"químicas\": \"químic\",\n  \"químico\": \"químic\",\n  \"químicos\": \"químic\",\n  \"quimioterapia\": \"quimioterap\",\n  \"quimioterápicos\": \"quimioteráp\",\n  \"quimono\": \"quimon\",\n  \"quincas\": \"quinc\",\n  \"quinhão\": \"quinhã\",\n  \"quinhentos\": \"quinhent\",\n  \"quinn\": \"quinn\",\n  \"quino\": \"quin\",\n  \"quinta\": \"quint\",\n  \"quintal\": \"quintal\",\n  \"quintana\": \"quintan\",\n  \"quintanilha\": \"quintanilh\",\n  \"quintão\": \"quintã\",\n  \"quintessência\": \"quintessent\",\n  \"quintino\": \"quintin\",\n  \"quinto\": \"quint\",\n  \"quintos\": \"quint\",\n  \"quintuplicou\": \"quintuplic\",\n  \"quinze\": \"quinz\",\n  \"quinzena\": \"quinzen\",\n  \"quiosque\": \"quiosqu\",\n  \"quis\": \"quis\",\n  \"quisemos\": \"quis\",\n  \"quiser\": \"quis\",\n  \"quiseram\": \"quis\",\n  \"quiserem\": \"quis\",\n  \"quisesse\": \"quis\",\n  \"quisessem\": \"quis\",\n  \"quitação\": \"quitaçã\",\n  \"quitado\": \"quit\",\n  \"quitar\": \"quit\",\n  \"quitinete\": \"quitinet\",\n  \"quixotesco\": \"quixotesc\",\n  \"quo\": \"quo\",\n  \"quórum\": \"quórum\",\n  \"quotidianamente\": \"quotidian\",\n  \"r\": \"r\",\n  \"ra\": \"ra\",\n  \"rá\": \"rá\",\n  \"raaf\": \"raaf\",\n  \"rabelo\": \"rabel\",\n  \"rabin\": \"rabin\",\n  \"rabino\": \"rabin\",\n  \"rabinovich\": \"rabinovich\",\n  \"rabinovici\": \"rabinovic\",\n  \"rabo\": \"rab\",\n  \"rabugento\": \"rabugent\",\n  \"raça\": \"rac\",\n  \"ração\": \"raçã\",\n  \"raças\": \"rac\",\n  \"racha\": \"rach\",\n  \"rachados\": \"rach\",\n  \"rachadura\": \"rachadur\",\n  \"rachas\": \"rach\",\n  \"rachel\": \"rachel\",\n  \"raciais\": \"rac\",\n  \"racial\": \"racial\",\n  \"raciocício\": \"raciocíci\",\n  \"raciocina\": \"raciocin\",\n  \"raciocínio\": \"raciocíni\",\n  \"racionadas\": \"racion\",\n  \"racionais\": \"racion\",\n  \"racional\": \"racional\",\n  \"racionalidade\": \"racional\",\n  \"racionalismo\": \"racional\",\n  \"racismo\": \"racism\",\n  \"racistas\": \"racist\",\n  \"radamés\": \"radamés\",\n  \"radar\": \"rad\",\n  \"radares\": \"rad\",\n  \"radiação\": \"radiaçã\",\n  \"radicado\": \"radic\",\n  \"radicados\": \"radic\",\n  \"radicais\": \"radic\",\n  \"radical\": \"radical\",\n  \"radicalismo\": \"radical\",\n  \"radicalizou\": \"radicaliz\",\n  \"radicalmente\": \"radical\",\n  \"rádio\": \"rádi\",\n  \"radioativa\": \"radioat\",\n  \"radioativas\": \"radioat\",\n  \"radioatividade\": \"radioat\",\n  \"radiografia\": \"radiograf\",\n  \"radiografou\": \"radiograf\",\n  \"radiologia\": \"radiolog\",\n  \"radiologista\": \"radiolog\",\n  \"rádios\": \"rádi\",\n  \"radiosa\": \"radios\",\n  \"radiotécnica\": \"radiotécn\",\n  \"radioterapeutas\": \"radioterapeut\",\n  \"radioterapia\": \"radioterap\",\n  \"radunz\": \"radunz\",\n  \"rafael\": \"rafael\",\n  \"rafaela\": \"rafael\",\n  \"raga\": \"rag\",\n  \"ragas\": \"rag\",\n  \"ragsdale\": \"ragsdal\",\n  \"rahim\": \"rahim\",\n  \"raia\": \"rai\",\n  \"raimar\": \"raim\",\n  \"raimundo\": \"raimund\",\n  \"rain\": \"rain\",\n  \"rainer\": \"rain\",\n  \"rainha\": \"rainh\",\n  \"raio\": \"rai\",\n  \"raios\": \"rai\",\n  \"raiva\": \"raiv\",\n  \"raivoso\": \"raivos\",\n  \"raiz\": \"raiz\",\n  \"raízes\": \"raíz\",\n  \"rajada\": \"raj\",\n  \"rajadas\": \"raj\",\n  \"rala\": \"ral\",\n  \"ralo\": \"ral\",\n  \"ralos\": \"ral\",\n  \"ralph\": \"ralph\",\n  \"ralston\": \"ralston\",\n  \"ram\": \"ram\",\n  \"ramais\": \"ram\",\n  \"ramalhete\": \"ramalhet\",\n  \"ramalho\": \"ramalh\",\n  \"ramallah\": \"ramallah\",\n  \"rambo\": \"ramb\",\n  \"ramey\": \"ramey\",\n  \"ramirez\": \"ramirez\",\n  \"ramírez\": \"ramírez\",\n  \"ramiro\": \"ramir\",\n  \"ramo\": \"ram\",\n  \"ramon\": \"ramon\",\n  \"ramos\": \"ram\",\n  \"rampa\": \"ramp\",\n  \"ranariddh\": \"ranariddh\",\n  \"rancho\": \"ranch\",\n  \"ranço\": \"ranc\",\n  \"rancor\": \"rancor\",\n  \"rançosa\": \"ranços\",\n  \"rand\": \"rand\",\n  \"random\": \"random\",\n  \"randy\": \"randy\",\n  \"ranelagh\": \"ranelagh\",\n  \"rangel\": \"rangel\",\n  \"ranger\": \"rang\",\n  \"rangers\": \"rangers\",\n  \"rangido\": \"rang\",\n  \"ranheta\": \"ranhet\",\n  \"ranieri\": \"ranier\",\n  \"ranking\": \"ranking\",\n  \"rap\": \"rap\",\n  \"rapado\": \"rap\",\n  \"rapadura\": \"rapadur\",\n  \"rapaz\": \"rapaz\",\n  \"rapazes\": \"rapaz\",\n  \"rapaziada\": \"rapazi\",\n  \"raphael\": \"raphael\",\n  \"rapid\": \"rapid\",\n  \"rápida\": \"ráp\",\n  \"rapidamente\": \"rapid\",\n  \"rápidas\": \"ráp\",\n  \"rapidez\": \"rapidez\",\n  \"rápido\": \"ráp\",\n  \"rápidos\": \"ráp\",\n  \"rapinado\": \"rapin\",\n  \"raposo\": \"rapos\",\n  \"rapper\": \"rapp\",\n  \"rappers\": \"rappers\",\n  \"raquel\": \"raquel\",\n  \"raquetada\": \"raquet\",\n  \"raquetadas\": \"raquet\",\n  \"raquete\": \"raquet\",\n  \"raquetes\": \"raquet\",\n  \"raquíticas\": \"raquít\",\n  \"rara\": \"rar\",\n  \"raramente\": \"rar\",\n  \"raras\": \"rar\",\n  \"rarefeitas\": \"rarefeit\",\n  \"rarefeito\": \"rarefeit\",\n  \"raridade\": \"raridad\",\n  \"raridades\": \"raridad\",\n  \"raríssima\": \"raríssim\",\n  \"raríssimas\": \"raríssim\",\n  \"raríssimo\": \"raríssim\",\n  \"raríssimos\": \"raríss\",\n  \"rarities\": \"rariti\",\n  \"raro\": \"rar\",\n  \"raros\": \"rar\",\n  \"rasas\": \"ras\",\n  \"rasgado\": \"rasg\",\n  \"rasgar\": \"rasg\",\n  \"rasgaram\": \"rasg\",\n  \"rasgo\": \"rasg\",\n  \"rasi\": \"ras\",\n  \"rasos\": \"ras\",\n  \"raspadinha\": \"raspadinh\",\n  \"raspadinhas\": \"raspadinh\",\n  \"raspados\": \"rasp\",\n  \"rastafári\": \"rastafár\",\n  \"rastejando\": \"rastej\",\n  \"rastejantes\": \"rastej\",\n  \"rastreadas\": \"rastr\",\n  \"rastreamento\": \"rastreament\",\n  \"rastreando\": \"rastr\",\n  \"rastro\": \"rastr\",\n  \"ratas\": \"rat\",\n  \"ratear\": \"rat\",\n  \"ratificada\": \"ratific\",\n  \"ratificado\": \"ratific\",\n  \"ratificar\": \"ratific\",\n  \"ratificassem\": \"ratific\",\n  \"ratinho\": \"ratinh\",\n  \"ratinhos\": \"ratinh\",\n  \"rato\": \"rat\",\n  \"ratoeira\": \"ratoeir\",\n  \"ratón\": \"ratón\",\n  \"ratos\": \"rat\",\n  \"ratton\": \"ratton\",\n  \"rauch\": \"rauch\",\n  \"raul\": \"raul\",\n  \"raupp\": \"raupp\",\n  \"raw\": \"raw\",\n  \"raymond\": \"raymond\",\n  \"rayovac\": \"rayovac\",\n  \"razão\": \"razã\",\n  \"razoáveis\": \"razo\",\n  \"razoável\": \"razoável\",\n  \"razoavelmente\": \"razoavel\",\n  \"razões\": \"razõ\",\n  \"rbs\": \"rbs\",\n  \"rda\": \"rda\",\n  \"rdx\": \"rdx\",\n  \"re\": \"re\",\n  \"ré\": \"ré\",\n  \"reabastecer\": \"reabastec\",\n  \"reabastecimento\": \"reabastec\",\n  \"reaberto\": \"reabert\",\n  \"reabilita\": \"reabilit\",\n  \"reabilitação\": \"reabilit\",\n  \"reabilitado\": \"reabilit\",\n  \"reabilitar\": \"reabilit\",\n  \"reabrem\": \"reabr\",\n  \"reabriram\": \"reabr\",\n  \"reabsorção\": \"reabsorçã\",\n  \"reação\": \"reaçã\",\n  \"reacionária\": \"reacionár\",\n  \"reações\": \"reaçõ\",\n  \"readaptou\": \"readapt\",\n  \"ready\": \"ready\",\n  \"reafirma\": \"reafirm\",\n  \"reafirmada\": \"reafirm\",\n  \"reafirmam\": \"reafirm\",\n  \"reafirmar\": \"reafirm\",\n  \"reagan\": \"reagan\",\n  \"reage\": \"reag\",\n  \"reagem\": \"reag\",\n  \"reagi\": \"reag\",\n  \"reagindo\": \"reag\",\n  \"reagir\": \"reag\",\n  \"reagiram\": \"reag\",\n  \"reagiriam\": \"reag\",\n  \"reagissem\": \"reag\",\n  \"reagiu\": \"reag\",\n  \"reais\": \"rea\",\n  \"reajo\": \"reaj\",\n  \"reajuste\": \"reajust\",\n  \"real\": \"real\",\n  \"realça\": \"realc\",\n  \"realejos\": \"realej\",\n  \"reali\": \"real\",\n  \"realidade\": \"realidad\",\n  \"realidades\": \"realidad\",\n  \"realismo\": \"realism\",\n  \"realista\": \"realist\",\n  \"realistas\": \"realist\",\n  \"realisticamente\": \"realist\",\n  \"realiza\": \"realiz\",\n  \"realizá\": \"realiz\",\n  \"realização\": \"realiz\",\n  \"realizações\": \"realiz\",\n  \"realizada\": \"realiz\",\n  \"realizadas\": \"realiz\",\n  \"realizado\": \"realiz\",\n  \"realizados\": \"realiz\",\n  \"realizam\": \"realiz\",\n  \"realizando\": \"realiz\",\n  \"realizar\": \"realiz\",\n  \"realizaram\": \"realiz\",\n  \"realizou\": \"realiz\",\n  \"realmente\": \"realment\",\n  \"reanimar\": \"reanim\",\n  \"reaparecido\": \"reaparec\",\n  \"reaprender\": \"reaprend\",\n  \"reaprendeu\": \"reaprend\",\n  \"reaproximação\": \"reaproxim\",\n  \"reard\": \"reard\",\n  \"rearranjos\": \"rearranj\",\n  \"reativação\": \"reativ\",\n  \"reativar\": \"reativ\",\n  \"reavaliação\": \"reavali\",\n  \"reavaliada\": \"reavali\",\n  \"reaver\": \"reav\",\n  \"rebaixado\": \"rebaix\",\n  \"rebaixamento\": \"rebaix\",\n  \"rebaixando\": \"rebaix\",\n  \"rebanho\": \"rebanh\",\n  \"rebanhos\": \"rebanh\",\n  \"rebate\": \"rebat\",\n  \"rebater\": \"rebat\",\n  \"rebateu\": \"rebat\",\n  \"rebatida\": \"rebat\",\n  \"rebatidas\": \"rebat\",\n  \"rebel\": \"rebel\",\n  \"rebelar\": \"rebel\",\n  \"rebelde\": \"rebeld\",\n  \"rebeldes\": \"rebeld\",\n  \"rebeldia\": \"rebeld\",\n  \"rebelião\": \"rebeliã\",\n  \"rebeliões\": \"rebeliõ\",\n  \"rebelou\": \"rebel\",\n  \"rebentos\": \"rebent\",\n  \"rebites\": \"rebit\",\n  \"rebolado\": \"rebol\",\n  \"rebolando\": \"rebol\",\n  \"reboque\": \"reboqu\",\n  \"rebote\": \"rebot\",\n  \"rebouças\": \"rebouc\",\n  \"rebouçast\": \"rebouçast\",\n  \"rebuliço\": \"rebulic\",\n  \"recado\": \"rec\",\n  \"recaem\": \"reca\",\n  \"recai\": \"reca\",\n  \"recaída\": \"recaíd\",\n  \"recanto\": \"recant\",\n  \"recapitalização\": \"recapitaliz\",\n  \"recarrego\": \"recarreg\",\n  \"recatado\": \"recat\",\n  \"recebam\": \"receb\",\n  \"recebe\": \"receb\",\n  \"recebem\": \"receb\",\n  \"recebendo\": \"receb\",\n  \"receber\": \"receb\",\n  \"receberá\": \"receb\",\n  \"receberam\": \"receb\",\n  \"receberia\": \"receb\",\n  \"recebesse\": \"receb\",\n  \"recebeu\": \"receb\",\n  \"recebi\": \"receb\",\n  \"recebia\": \"receb\",\n  \"recebiam\": \"receb\",\n  \"recebíamos\": \"receb\",\n  \"recebida\": \"receb\",\n  \"recebidas\": \"receb\",\n  \"recebido\": \"receb\",\n  \"recebidos\": \"receb\",\n  \"recebimento\": \"receb\",\n  \"recebimentos\": \"receb\",\n  \"recebíveis\": \"recebív\",\n  \"recebo\": \"receb\",\n  \"receia\": \"rec\",\n  \"receio\": \"recei\",\n  \"receita\": \"receit\",\n  \"receitada\": \"receit\",\n  \"receitadas\": \"receit\",\n  \"receitado\": \"receit\",\n  \"receitados\": \"receit\",\n  \"receitam\": \"receit\",\n  \"receitar\": \"receit\",\n  \"receitaram\": \"receit\",\n  \"receitas\": \"receit\",\n  \"receitasse\": \"receit\",\n  \"receito\": \"receit\",\n  \"receitou\": \"receit\",\n  \"receituário\": \"receituári\",\n  \"recém\": \"recém\",\n  \"recena\": \"recen\",\n  \"recente\": \"recent\",\n  \"recentemente\": \"recent\",\n  \"recentes\": \"recent\",\n  \"recentíssimos\": \"recentíss\",\n  \"recentraliza\": \"recentraliz\",\n  \"receosa\": \"receos\",\n  \"recepção\": \"recepçã\",\n  \"recepcionados\": \"recepcion\",\n  \"recepcionista\": \"recepcion\",\n  \"receptáculos\": \"receptácul\",\n  \"receptivas\": \"recept\",\n  \"receptivo\": \"recept\",\n  \"receptivos\": \"recept\",\n  \"receptor\": \"receptor\",\n  \"receptora\": \"receptor\",\n  \"recessão\": \"recessã\",\n  \"recessivos\": \"recess\",\n  \"rechaçada\": \"rechac\",\n  \"rechaçado\": \"rechac\",\n  \"rechaçados\": \"rechac\",\n  \"rechacei\": \"rechac\",\n  \"recheada\": \"rech\",\n  \"recheadas\": \"rech\",\n  \"recheado\": \"rech\",\n  \"recheados\": \"rech\",\n  \"rechear\": \"rech\",\n  \"recheia\": \"rech\",\n  \"recheiam\": \"rech\",\n  \"recheio\": \"rechei\",\n  \"recheou\": \"rech\",\n  \"reciclada\": \"recicl\",\n  \"reciclagem\": \"reciclag\",\n  \"reciclar\": \"recicl\",\n  \"recife\": \"recif\",\n  \"recinto\": \"recint\",\n  \"recipientes\": \"recipient\",\n  \"recíproco\": \"recíproc\",\n  \"recitação\": \"recit\",\n  \"recitais\": \"recit\",\n  \"recitam\": \"recit\",\n  \"reclama\": \"reclam\",\n  \"reclamação\": \"reclam\",\n  \"reclamações\": \"reclam\",\n  \"reclamado\": \"reclam\",\n  \"reclamam\": \"reclam\",\n  \"reclamando\": \"reclam\",\n  \"reclamar\": \"reclam\",\n  \"reclamaram\": \"reclam\",\n  \"reclamava\": \"reclam\",\n  \"reclamou\": \"reclam\",\n  \"reclusão\": \"reclusã\",\n  \"recoleta\": \"recolet\",\n  \"recolhendo\": \"recolh\",\n  \"recolher\": \"recolh\",\n  \"recolheram\": \"recolh\",\n  \"recolheu\": \"recolh\",\n  \"recolhidas\": \"recolh\",\n  \"recolhido\": \"recolh\",\n  \"recolhidos\": \"recolh\",\n  \"recolhimento\": \"recolh\",\n  \"recolocá\": \"recoloc\",\n  \"recolocação\": \"recoloc\",\n  \"recolocar\": \"recoloc\",\n  \"recombinação\": \"recombin\",\n  \"recomeçar\": \"recomec\",\n  \"recomenda\": \"recomend\",\n  \"recomendação\": \"recomend\",\n  \"recomendações\": \"recomend\",\n  \"recomendada\": \"recomend\",\n  \"recomendadas\": \"recomend\",\n  \"recomendado\": \"recomend\",\n  \"recomendados\": \"recomend\",\n  \"recomendam\": \"recomend\",\n  \"recomendar\": \"recomend\",\n  \"recomendava\": \"recomend\",\n  \"recomendável\": \"recomend\",\n  \"recomendo\": \"recom\",\n  \"recomendou\": \"recomend\",\n  \"recompensa\": \"recompens\",\n  \"recompensado\": \"recompens\",\n  \"recompensadoras\": \"recompens\",\n  \"recompensas\": \"recompens\",\n  \"recompor\": \"recompor\",\n  \"recomposição\": \"recomposiçã\",\n  \"recomprar\": \"recompr\",\n  \"recomprou\": \"recompr\",\n  \"reconciliação\": \"reconcili\",\n  \"reconfirmar\": \"reconfirm\",\n  \"reconfortante\": \"reconfort\",\n  \"reconheça\": \"reconhec\",\n  \"reconhece\": \"reconhec\",\n  \"reconhecê\": \"reconhec\",\n  \"reconhecem\": \"reconhec\",\n  \"reconhecer\": \"reconhec\",\n  \"reconheceram\": \"reconhec\",\n  \"reconhecessem\": \"reconhec\",\n  \"reconheceu\": \"reconhec\",\n  \"reconhecida\": \"reconhec\",\n  \"reconhecidas\": \"reconhec\",\n  \"reconhecido\": \"reconhec\",\n  \"reconhecidos\": \"reconhec\",\n  \"reconhecimento\": \"reconhec\",\n  \"reconheço\": \"reconhec\",\n  \"reconquista\": \"reconqu\",\n  \"reconstituição\": \"reconstituiçã\",\n  \"reconstroem\": \"reconstro\",\n  \"reconstrução\": \"reconstruçã\",\n  \"reconstruir\": \"reconstru\",\n  \"recontratar\": \"recontrat\",\n  \"reconversão\": \"reconversã\",\n  \"reconvidar\": \"reconvid\",\n  \"record\": \"record\",\n  \"recorda\": \"record\",\n  \"recordações\": \"record\",\n  \"recorde\": \"record\",\n  \"recordes\": \"record\",\n  \"recordista\": \"record\",\n  \"records\": \"records\",\n  \"recorre\": \"recorr\",\n  \"recorrem\": \"recorr\",\n  \"recorrendo\": \"recorr\",\n  \"recorrente\": \"recorrent\",\n  \"recorrentes\": \"recorrent\",\n  \"recorrer\": \"recorr\",\n  \"recorrerá\": \"recorr\",\n  \"recorreu\": \"recorr\",\n  \"recorrido\": \"recorr\",\n  \"recorte\": \"recort\",\n  \"recortes\": \"recort\",\n  \"recostado\": \"recost\",\n  \"recostar\": \"recost\",\n  \"recou\": \"rec\",\n  \"recreação\": \"recreaçã\",\n  \"recreativo\": \"recreat\",\n  \"recriar\": \"recri\",\n  \"recrimina\": \"recrimin\",\n  \"recriminaria\": \"recrimin\",\n  \"recruta\": \"recrut\",\n  \"recrutados\": \"recrut\",\n  \"recrutamento\": \"recrut\",\n  \"recrutando\": \"recrut\",\n  \"recrutou\": \"recrut\",\n  \"recua\": \"recu\",\n  \"recuar\": \"recu\",\n  \"recuo\": \"recu\",\n  \"recuou\": \"recu\",\n  \"recupera\": \"recup\",\n  \"recuperá\": \"recup\",\n  \"recuperação\": \"recuper\",\n  \"recuperada\": \"recuper\",\n  \"recuperado\": \"recuper\",\n  \"recuperam\": \"recup\",\n  \"recuperando\": \"recuper\",\n  \"recuperar\": \"recuper\",\n  \"recuperaram\": \"recuper\",\n  \"recuperei\": \"recup\",\n  \"recuperou\": \"recuper\",\n  \"recurso\": \"recurs\",\n  \"recursos\": \"recurs\",\n  \"recusa\": \"recus\",\n  \"recusá\": \"recus\",\n  \"recusada\": \"recus\",\n  \"recusado\": \"recus\",\n  \"recusam\": \"recus\",\n  \"recusamos\": \"recus\",\n  \"recusar\": \"recus\",\n  \"recusaria\": \"recus\",\n  \"recusas\": \"recus\",\n  \"recusava\": \"recus\",\n  \"recusem\": \"recus\",\n  \"recusou\": \"recus\",\n  \"red\": \"red\",\n  \"redação\": \"redaçã\",\n  \"redator\": \"redator\",\n  \"rede\": \"red\",\n  \"redefinir\": \"redefin\",\n  \"redemocratização\": \"redemocratiz\",\n  \"redemoinho\": \"redemoinh\",\n  \"redenção\": \"redençã\",\n  \"redentor\": \"redentor\",\n  \"redentora\": \"redentor\",\n  \"redentoras\": \"redentor\",\n  \"redes\": \"red\",\n  \"redescobre\": \"redescobr\",\n  \"redescobrindo\": \"redescobr\",\n  \"redescobriu\": \"redescobr\",\n  \"redesenhando\": \"redesenh\",\n  \"redigia\": \"redig\",\n  \"redigido\": \"redig\",\n  \"redigindo\": \"redig\",\n  \"redigir\": \"redig\",\n  \"redimensionando\": \"redimension\",\n  \"redobra\": \"redobr\",\n  \"redonda\": \"redond\",\n  \"redondo\": \"redond\",\n  \"redor\": \"redor\",\n  \"redoxon\": \"redoxon\",\n  \"redução\": \"reduçã\",\n  \"reduções\": \"reduçõ\",\n  \"reductil\": \"reductil\",\n  \"redundância\": \"redund\",\n  \"redundou\": \"redund\",\n  \"reduto\": \"redut\",\n  \"redutor\": \"redutor\",\n  \"redux\": \"redux\",\n  \"reduz\": \"reduz\",\n  \"reduza\": \"reduz\",\n  \"reduzam\": \"reduz\",\n  \"reduzem\": \"reduz\",\n  \"reduzi\": \"reduz\",\n  \"reduzia\": \"reduz\",\n  \"reduzida\": \"reduz\",\n  \"reduzidas\": \"reduz\",\n  \"reduzido\": \"reduz\",\n  \"reduzidos\": \"reduz\",\n  \"reduzindo\": \"reduz\",\n  \"reduzir\": \"reduz\",\n  \"reduziram\": \"reduz\",\n  \"reduzirem\": \"reduz\",\n  \"reduziu\": \"reduz\",\n  \"reedita\": \"reedit\",\n  \"reeditado\": \"reedit\",\n  \"reeduca\": \"reeduc\",\n  \"reeducação\": \"reeduc\",\n  \"reelaborar\": \"reelabor\",\n  \"reeleição\": \"reeleiçã\",\n  \"reeleito\": \"reeleit\",\n  \"reeleitorais\": \"reeleitor\",\n  \"reeleitoral\": \"reeleitoral\",\n  \"reencarnação\": \"reencarn\",\n  \"reencarnada\": \"reencarn\",\n  \"reencarnar\": \"reencarn\",\n  \"reencontrar\": \"reencontr\",\n  \"reencontro\": \"reencontr\",\n  \"reengenharia\": \"reengenh\",\n  \"reequilibrando\": \"reequilibr\",\n  \"reequilibrar\": \"reequilibr\",\n  \"reerguê\": \"reerg\",\n  \"reerguer\": \"reergu\",\n  \"reerguida\": \"reergu\",\n  \"reerguido\": \"reergu\",\n  \"reestruturação\": \"reestrutur\",\n  \"reestruturações\": \"reestrutur\",\n  \"reestruturando\": \"reestrutur\",\n  \"reeve\": \"reev\",\n  \"reexportações\": \"reexport\",\n  \"reexportar\": \"reexport\",\n  \"refaço\": \"refac\",\n  \"refaz\": \"refaz\",\n  \"refazê\": \"refaz\",\n  \"refazer\": \"refaz\",\n  \"refazerem\": \"refaz\",\n  \"refeição\": \"refeiçã\",\n  \"refeições\": \"refeiçõ\",\n  \"refeitas\": \"refeit\",\n  \"refeitórios\": \"refeitóri\",\n  \"refém\": \"refém\",\n  \"reféns\": \"reféns\",\n  \"refere\": \"refer\",\n  \"referem\": \"ref\",\n  \"referência\": \"referent\",\n  \"referências\": \"referent\",\n  \"referendo\": \"refer\",\n  \"referente\": \"referent\",\n  \"referentes\": \"referent\",\n  \"referia\": \"ref\",\n  \"referiam\": \"ref\",\n  \"referido\": \"refer\",\n  \"referindo\": \"refer\",\n  \"referiu\": \"refer\",\n  \"refestela\": \"refestel\",\n  \"refez\": \"refez\",\n  \"refilmagem\": \"refilmag\",\n  \"refinadas\": \"refin\",\n  \"refinado\": \"refin\",\n  \"refinados\": \"refin\",\n  \"refinanciamento\": \"refinanc\",\n  \"refino\": \"refin\",\n  \"reflete\": \"reflet\",\n  \"refletem\": \"reflet\",\n  \"refletida\": \"reflet\",\n  \"refletindo\": \"reflet\",\n  \"refletir\": \"reflet\",\n  \"refletiu\": \"reflet\",\n  \"refletor\": \"refletor\",\n  \"reflexão\": \"reflexã\",\n  \"reflexo\": \"reflex\",\n  \"reflexões\": \"reflexõ\",\n  \"reflexos\": \"reflex\",\n  \"reflita\": \"reflit\",\n  \"refogar\": \"refog\",\n  \"reforça\": \"reforc\",\n  \"reforçam\": \"reforc\",\n  \"reforçando\": \"reforc\",\n  \"reforçar\": \"reforc\",\n  \"reforço\": \"reforc\",\n  \"reforçou\": \"reforc\",\n  \"reforma\": \"reform\",\n  \"reformado\": \"reform\",\n  \"reformar\": \"reform\",\n  \"reformaram\": \"reform\",\n  \"reformas\": \"reform\",\n  \"reformista\": \"reform\",\n  \"reformou\": \"reform\",\n  \"reformulando\": \"reformul\",\n  \"reformular\": \"reformul\",\n  \"refrão\": \"refrã\",\n  \"refrãos\": \"refrã\",\n  \"refrãozinho\": \"refrãozinh\",\n  \"refratárias\": \"refratár\",\n  \"refrear\": \"refr\",\n  \"refrega\": \"refreg\",\n  \"refrescada\": \"refresc\",\n  \"refresco\": \"refresc\",\n  \"refrigeração\": \"refriger\",\n  \"refrigerante\": \"refriger\",\n  \"refrigerantes\": \"refriger\",\n  \"refugiam\": \"refug\",\n  \"refugiavam\": \"refugi\",\n  \"refúgio\": \"refúgi\",\n  \"refúgios\": \"refúgi\",\n  \"refugiou\": \"refugi\",\n  \"refutam\": \"refut\",\n  \"refutar\": \"refut\",\n  \"refutaram\": \"refut\",\n  \"regada\": \"reg\",\n  \"rege\": \"reg\",\n  \"regência\": \"regênc\",\n  \"regeneração\": \"regener\",\n  \"regenerado\": \"regener\",\n  \"regenerar\": \"regener\",\n  \"regenerem\": \"regen\",\n  \"regentes\": \"regent\",\n  \"reggae\": \"regga\",\n  \"régia\": \"rég\",\n  \"região\": \"regiã\",\n  \"regiãono\": \"regiãon\",\n  \"regida\": \"reg\",\n  \"regime\": \"regim\",\n  \"regimento\": \"regiment\",\n  \"regimes\": \"regim\",\n  \"regina\": \"regin\",\n  \"reginaldo\": \"reginald\",\n  \"régine\": \"régin\",\n  \"regiões\": \"regiõ\",\n  \"regionais\": \"region\",\n  \"regional\": \"regional\",\n  \"regionalismos\": \"regional\",\n  \"régis\": \"rég\",\n  \"registra\": \"registr\",\n  \"registrá\": \"registr\",\n  \"registrada\": \"registr\",\n  \"registradas\": \"registr\",\n  \"registrado\": \"registr\",\n  \"registradora\": \"registr\",\n  \"registradoras\": \"registr\",\n  \"registrados\": \"registr\",\n  \"registral\": \"registral\",\n  \"registram\": \"registr\",\n  \"registrando\": \"registr\",\n  \"registrar\": \"registr\",\n  \"registraram\": \"registr\",\n  \"registrasse\": \"registr\",\n  \"registre\": \"registr\",\n  \"registrei\": \"registr\",\n  \"registrem\": \"registr\",\n  \"registro\": \"registr\",\n  \"registros\": \"registr\",\n  \"registrou\": \"registr\",\n  \"regra\": \"regr\",\n  \"regrada\": \"regr\",\n  \"regrado\": \"regr\",\n  \"regras\": \"regr\",\n  \"regravação\": \"regrav\",\n  \"regravações\": \"regrav\",\n  \"regressiva\": \"regress\",\n  \"régua\": \"régu\",\n  \"regula\": \"regul\",\n  \"regulador\": \"regul\",\n  \"regulados\": \"regul\",\n  \"regulamentação\": \"regulament\",\n  \"regulamentada\": \"regulament\",\n  \"regulamentado\": \"regulament\",\n  \"regulamentando\": \"regulament\",\n  \"regulamentar\": \"regulament\",\n  \"regulamento\": \"regul\",\n  \"regulamentos\": \"regul\",\n  \"regular\": \"regul\",\n  \"regulares\": \"regul\",\n  \"regularmente\": \"regular\",\n  \"regulavam\": \"regul\",\n  \"rei\": \"rei\",\n  \"reimão\": \"reimã\",\n  \"reina\": \"rein\",\n  \"reinach\": \"reinach\",\n  \"reinado\": \"rein\",\n  \"reinaldo\": \"reinald\",\n  \"reinam\": \"rein\",\n  \"reinante\": \"reinant\",\n  \"reinaram\": \"rein\",\n  \"reinauguração\": \"reinaugur\",\n  \"reinava\": \"rein\",\n  \"reincidência\": \"reincident\",\n  \"reincidências\": \"reincident\",\n  \"reincidir\": \"reincid\",\n  \"reinhold\": \"reinhold\",\n  \"reino\": \"rein\",\n  \"reinou\": \"rein\",\n  \"reintegração\": \"reintegr\",\n  \"reintegrados\": \"reintegr\",\n  \"reinventado\": \"reinvent\",\n  \"reinvestido\": \"reinvest\",\n  \"reinvestimento\": \"reinvest\",\n  \"reinvestimentos\": \"reinvest\",\n  \"reinvindicando\": \"reinvindic\",\n  \"reis\": \"reis\",\n  \"reitor\": \"reitor\",\n  \"reitoria\": \"reitor\",\n  \"reivindica\": \"reivind\",\n  \"reivindicação\": \"reivindic\",\n  \"reivindicações\": \"reivindic\",\n  \"reivindicada\": \"reivindic\",\n  \"reivindicam\": \"reivindic\",\n  \"reivindicamos\": \"reivindic\",\n  \"rejeição\": \"rejeiçã\",\n  \"rejeita\": \"rejeit\",\n  \"rejeitar\": \"rejeit\",\n  \"rejeitou\": \"rejeit\",\n  \"rejuvenescida\": \"rejuvenesc\",\n  \"relação\": \"relaçã\",\n  \"relacinados\": \"relacin\",\n  \"relaciona\": \"relacion\",\n  \"relacionada\": \"relacion\",\n  \"relacionadas\": \"relacion\",\n  \"relacionado\": \"relacion\",\n  \"relacionados\": \"relacion\",\n  \"relacionam\": \"relacion\",\n  \"relacionamento\": \"relacion\",\n  \"relacionamentos\": \"relacion\",\n  \"relacionando\": \"relacion\",\n  \"relacionar\": \"relacion\",\n  \"relacionei\": \"relacion\",\n  \"relacionou\": \"relacion\",\n  \"relações\": \"relaçõ\",\n  \"relâmpago\": \"relâmpag\",\n  \"relampeado\": \"relamp\",\n  \"relançado\": \"relanc\",\n  \"relançamento\": \"relanc\",\n  \"relançando\": \"relanc\",\n  \"relancei\": \"relanc\",\n  \"relapso\": \"relaps\",\n  \"relata\": \"relat\",\n  \"relatado\": \"relat\",\n  \"relatados\": \"relat\",\n  \"relatando\": \"relat\",\n  \"relatar\": \"relat\",\n  \"relataram\": \"relat\",\n  \"relativa\": \"relat\",\n  \"relativamente\": \"relat\",\n  \"relativas\": \"relat\",\n  \"relatividade\": \"relat\",\n  \"relativo\": \"relat\",\n  \"relativos\": \"relat\",\n  \"relato\": \"relat\",\n  \"relator\": \"relator\",\n  \"relatores\": \"relator\",\n  \"relatorias\": \"relator\",\n  \"relatório\": \"relatóri\",\n  \"relatórios\": \"relatóri\",\n  \"relatos\": \"relat\",\n  \"relatou\": \"relat\",\n  \"relax\": \"relax\",\n  \"relaxa\": \"relax\",\n  \"relaxado\": \"relax\",\n  \"relaxados\": \"relax\",\n  \"relaxamento\": \"relax\",\n  \"relaxante\": \"relax\",\n  \"relaxar\": \"relax\",\n  \"relaxou\": \"relax\",\n  \"relé\": \"rel\",\n  \"release\": \"releas\",\n  \"relegado\": \"releg\",\n  \"releitura\": \"releitur\",\n  \"relembra\": \"relembr\",\n  \"reler\": \"rel\",\n  \"relevância\": \"relev\",\n  \"relevante\": \"relev\",\n  \"relevantes\": \"relev\",\n  \"relevo\": \"relev\",\n  \"religi\": \"relig\",\n  \"religião\": \"religiã\",\n  \"religiões\": \"religiõ\",\n  \"religiosa\": \"religi\",\n  \"religiosamente\": \"religi\",\n  \"religiosas\": \"religi\",\n  \"religiosidade\": \"religios\",\n  \"religioso\": \"religi\",\n  \"religiosos\": \"religi\",\n  \"relíquia\": \"relíqu\",\n  \"relíquias\": \"relíqu\",\n  \"relocalização\": \"relocaliz\",\n  \"relógio\": \"relógi\",\n  \"relógios\": \"relógi\",\n  \"relutância\": \"relut\",\n  \"reluzente\": \"reluzent\",\n  \"rem\": \"rem\",\n  \"remando\": \"rem\",\n  \"remanejamentos\": \"remanej\",\n  \"remanejou\": \"remanej\",\n  \"remanescente\": \"remanescent\",\n  \"remasterizada\": \"remasteriz\",\n  \"rembrant\": \"rembrant\",\n  \"remédio\": \"remédi\",\n  \"remédios\": \"remédi\",\n  \"remessa\": \"remess\",\n  \"remessas\": \"remess\",\n  \"remi\": \"rem\",\n  \"reminiscências\": \"reminiscent\",\n  \"remoção\": \"remoçã\",\n  \"remodelar\": \"remodel\",\n  \"remondini\": \"remondin\",\n  \"remonta\": \"remont\",\n  \"remontam\": \"remont\",\n  \"remontar\": \"remont\",\n  \"remontaram\": \"remont\",\n  \"remota\": \"remot\",\n  \"remotas\": \"remot\",\n  \"remotíssima\": \"remotíssim\",\n  \"remoto\": \"remot\",\n  \"remotos\": \"remot\",\n  \"remove\": \"remov\",\n  \"removeu\": \"remov\",\n  \"remuneração\": \"remuner\",\n  \"remunerada\": \"remuner\",\n  \"remunerados\": \"remuner\",\n  \"renais\": \"ren\",\n  \"renaissance\": \"renaissanc\",\n  \"renal\": \"renal\",\n  \"renan\": \"renan\",\n  \"renasce\": \"renasc\",\n  \"renascença\": \"renascenc\",\n  \"renascer\": \"renasc\",\n  \"renascidos\": \"renasc\",\n  \"renascimento\": \"renasc\",\n  \"renata\": \"renat\",\n  \"renato\": \"renat\",\n  \"renault\": \"renault\",\n  \"renda\": \"rend\",\n  \"rendá\": \"rend\",\n  \"rendadas\": \"rend\",\n  \"rende\": \"rend\",\n  \"rendeira\": \"rendeir\",\n  \"rendem\": \"rend\",\n  \"render\": \"rend\",\n  \"renderam\": \"rend\",\n  \"rendeu\": \"rend\",\n  \"rendia\": \"rend\",\n  \"rendição\": \"rendiçã\",\n  \"rendido\": \"rend\",\n  \"rendimento\": \"rendiment\",\n  \"rendimentos\": \"rendiment\",\n  \"renê\": \"ren\",\n  \"renée\": \"rené\",\n  \"renegociação\": \"renegoc\",\n  \"renegociações\": \"renegoc\",\n  \"renegociada\": \"renegoc\",\n  \"renegociando\": \"renegoc\",\n  \"renegociaram\": \"renegoc\",\n  \"renew\": \"renew\",\n  \"renina\": \"renin\",\n  \"renitente\": \"renitent\",\n  \"renner\": \"renn\",\n  \"renoir\": \"reno\",\n  \"renomadas\": \"renom\",\n  \"renomado\": \"renom\",\n  \"renomados\": \"renom\",\n  \"renome\": \"renom\",\n  \"renova\": \"renov\",\n  \"renovação\": \"renov\",\n  \"renovadas\": \"renov\",\n  \"renovado\": \"renov\",\n  \"renovador\": \"renov\",\n  \"renovados\": \"renov\",\n  \"renovam\": \"renov\",\n  \"renovando\": \"renov\",\n  \"renovar\": \"renov\",\n  \"renovaram\": \"renov\",\n  \"renováveis\": \"renov\",\n  \"renovou\": \"renov\",\n  \"rentabilidade\": \"rentabil\",\n  \"rental\": \"rental\",\n  \"rentáveis\": \"rent\",\n  \"rentável\": \"rentável\",\n  \"rentinho\": \"rentinh\",\n  \"renúncia\": \"renúnc\",\n  \"renunciamos\": \"renunc\",\n  \"renunciar\": \"renunc\",\n  \"renunciarem\": \"renunc\",\n  \"reordenar\": \"reorden\",\n  \"reorganização\": \"reorganiz\",\n  \"reorganizado\": \"reorganiz\",\n  \"reorganizar\": \"reorganiz\",\n  \"repara\": \"rep\",\n  \"reparação\": \"repar\",\n  \"reparam\": \"rep\",\n  \"reparar\": \"repar\",\n  \"reparo\": \"repar\",\n  \"repartição\": \"repartiçã\",\n  \"repartições\": \"repartiçõ\",\n  \"repassa\": \"repass\",\n  \"repassá\": \"repass\",\n  \"repassam\": \"repass\",\n  \"repassar\": \"repass\",\n  \"repasse\": \"rep\",\n  \"repassou\": \"repass\",\n  \"repensar\": \"repens\",\n  \"repensou\": \"repens\",\n  \"repente\": \"repent\",\n  \"repentina\": \"repentin\",\n  \"repentino\": \"repentin\",\n  \"repercussão\": \"repercussã\",\n  \"repertório\": \"repertóri\",\n  \"repertórios\": \"repertóri\",\n  \"repete\": \"repet\",\n  \"repetem\": \"repet\",\n  \"repetência\": \"repetent\",\n  \"repetente\": \"repetent\",\n  \"repetentes\": \"repetent\",\n  \"repeti\": \"repet\",\n  \"repetida\": \"repet\",\n  \"repetidas\": \"repet\",\n  \"repetido\": \"repet\",\n  \"repetidoras\": \"repetidor\",\n  \"repetindo\": \"repet\",\n  \"repetir\": \"repet\",\n  \"repetitivas\": \"repetit\",\n  \"repetitivo\": \"repetit\",\n  \"repetiu\": \"repet\",\n  \"repitam\": \"repit\",\n  \"replantar\": \"replant\",\n  \"repleta\": \"replet\",\n  \"repletas\": \"replet\",\n  \"repleto\": \"replet\",\n  \"repletos\": \"replet\",\n  \"réplica\": \"réplic\",\n  \"replicar\": \"replic\",\n  \"réplicas\": \"réplic\",\n  \"repolho\": \"repolh\",\n  \"repolhos\": \"repolh\",\n  \"repor\": \"repor\",\n  \"reportagem\": \"reportag\",\n  \"reportagens\": \"reportagens\",\n  \"repórter\": \"repórt\",\n  \"repórteres\": \"repórt\",\n  \"reporters\": \"reporters\",\n  \"reposição\": \"reposiçã\",\n  \"reposto\": \"repost\",\n  \"repouso\": \"repous\",\n  \"repreende\": \"repreend\",\n  \"repreendendo\": \"repreend\",\n  \"repreendeu\": \"repreend\",\n  \"repreendida\": \"repreend\",\n  \"represa\": \"repres\",\n  \"represado\": \"repres\",\n  \"represálias\": \"represál\",\n  \"represamento\": \"repres\",\n  \"representa\": \"represent\",\n  \"representação\": \"represent\",\n  \"representações\": \"represent\",\n  \"representada\": \"represent\",\n  \"representado\": \"represent\",\n  \"representados\": \"represent\",\n  \"representam\": \"represent\",\n  \"representando\": \"represent\",\n  \"representante\": \"represent\",\n  \"representantes\": \"represent\",\n  \"representar\": \"represent\",\n  \"representaram\": \"represent\",\n  \"representativa\": \"represent\",\n  \"representativas\": \"represent\",\n  \"representava\": \"represent\",\n  \"representavam\": \"represent\",\n  \"represento\": \"represent\",\n  \"representou\": \"represent\",\n  \"repressão\": \"repressã\",\n  \"repressor\": \"repressor\",\n  \"repressores\": \"repressor\",\n  \"reprima\": \"reprim\",\n  \"reprimem\": \"reprim\",\n  \"reprimir\": \"reprim\",\n  \"reprisados\": \"repris\",\n  \"reprodução\": \"reproduçã\",\n  \"reprodutor\": \"reprodutor\",\n  \"reprodutora\": \"reprodutor\",\n  \"reproduz\": \"reproduz\",\n  \"reproduzem\": \"reproduz\",\n  \"reproduzida\": \"reproduz\",\n  \"reproduzido\": \"reproduz\",\n  \"reproduzindo\": \"reproduz\",\n  \"reproduzir\": \"reproduz\",\n  \"reproduziram\": \"reproduz\",\n  \"reproduziu\": \"reproduz\",\n  \"reprovação\": \"reprov\",\n  \"reprovada\": \"reprov\",\n  \"reprovados\": \"reprov\",\n  \"reprovável\": \"reprov\",\n  \"reprovou\": \"reprov\",\n  \"répteis\": \"répt\",\n  \"república\": \"repúbl\",\n  \"republicana\": \"republican\",\n  \"republicano\": \"republican\",\n  \"republicanos\": \"republican\",\n  \"repúblicas\": \"repúbl\",\n  \"republiqueta\": \"republiquet\",\n  \"repudiado\": \"repudi\",\n  \"repudiando\": \"repudi\",\n  \"repúdio\": \"repúdi\",\n  \"repudiou\": \"repudi\",\n  \"repugnância\": \"repugn\",\n  \"repugnante\": \"repugn\",\n  \"repulsa\": \"repuls\",\n  \"reputação\": \"reput\",\n  \"reputadas\": \"reput\",\n  \"reputado\": \"reput\",\n  \"requebram\": \"requebr\",\n  \"requebrar\": \"requebr\",\n  \"requer\": \"requ\",\n  \"requerimento\": \"requer\",\n  \"requião\": \"requiã\",\n  \"requinte\": \"requint\",\n  \"requintes\": \"requint\",\n  \"requisitadas\": \"requisit\",\n  \"requisitado\": \"requisit\",\n  \"requisitados\": \"requisit\",\n  \"requisito\": \"requisit\",\n  \"requisitos\": \"requisit\",\n  \"requisitou\": \"requisit\",\n  \"rerngchai\": \"rerngcha\",\n  \"rescaldo\": \"rescald\",\n  \"rescisória\": \"rescisór\",\n  \"research\": \"research\",\n  \"resende\": \"resend\",\n  \"reserva\": \"reserv\",\n  \"reservada\": \"reserv\",\n  \"reservado\": \"reserv\",\n  \"reservados\": \"reserv\",\n  \"reservas\": \"reserv\",\n  \"reservatórios\": \"reservatóri\",\n  \"reservou\": \"reserv\",\n  \"resfriado\": \"resfri\",\n  \"resfriados\": \"resfri\",\n  \"resgaste\": \"resg\",\n  \"resgata\": \"resgat\",\n  \"resgatá\": \"resgat\",\n  \"resgatar\": \"resgat\",\n  \"resgate\": \"resgat\",\n  \"resgatou\": \"resgat\",\n  \"reside\": \"resid\",\n  \"residem\": \"resid\",\n  \"residência\": \"resident\",\n  \"residenciais\": \"residenc\",\n  \"residencial\": \"residencial\",\n  \"residências\": \"resident\",\n  \"residente\": \"resident\",\n  \"residentes\": \"resident\",\n  \"residia\": \"resid\",\n  \"residindo\": \"resid\",\n  \"residir\": \"resid\",\n  \"residiu\": \"resid\",\n  \"residuográfico\": \"residuográf\",\n  \"resíduos\": \"resídu\",\n  \"resigna\": \"resign\",\n  \"resistam\": \"resist\",\n  \"resiste\": \"res\",\n  \"resistem\": \"resist\",\n  \"resistência\": \"resistent\",\n  \"resistências\": \"resistent\",\n  \"resisti\": \"resist\",\n  \"resistindo\": \"resist\",\n  \"resistir\": \"resist\",\n  \"resistiram\": \"resist\",\n  \"resistiu\": \"resist\",\n  \"resisto\": \"resist\",\n  \"resmaterização\": \"resmateriz\",\n  \"resmaterizada\": \"resmateriz\",\n  \"resmaterizadas\": \"resmateriz\",\n  \"resmungava\": \"resmung\",\n  \"resmungou\": \"resmung\",\n  \"resolução\": \"resoluçã\",\n  \"resolve\": \"resolv\",\n  \"resolvem\": \"resolv\",\n  \"resolvemos\": \"resolv\",\n  \"resolvendo\": \"resolv\",\n  \"resolver\": \"resolv\",\n  \"resolvera\": \"resolv\",\n  \"resolveram\": \"resolv\",\n  \"resolveria\": \"resolv\",\n  \"resolvesse\": \"resolv\",\n  \"resolveu\": \"resolv\",\n  \"resolvi\": \"resolv\",\n  \"resolviam\": \"resolv\",\n  \"resolvida\": \"resolv\",\n  \"resolvido\": \"resolv\",\n  \"resolvidos\": \"resolv\",\n  \"resolvo\": \"resolv\",\n  \"resort\": \"resort\",\n  \"resources\": \"resourc\",\n  \"respalda\": \"respald\",\n  \"respaldada\": \"respald\",\n  \"respaldo\": \"respald\",\n  \"respectivamente\": \"respect\",\n  \"respectivas\": \"respect\",\n  \"respeita\": \"respeit\",\n  \"respeitá\": \"respeit\",\n  \"respeitabilidade\": \"respeit\",\n  \"respeitada\": \"respeit\",\n  \"respeitadas\": \"respeit\",\n  \"respeitadíssimo\": \"respeitadíssim\",\n  \"respeitado\": \"respeit\",\n  \"respeitados\": \"respeit\",\n  \"respeitam\": \"respeit\",\n  \"respeitamos\": \"respeit\",\n  \"respeitando\": \"respeit\",\n  \"respeitar\": \"respeit\",\n  \"respeitaram\": \"respeit\",\n  \"respeitarem\": \"respeit\",\n  \"respeitáveis\": \"respeit\",\n  \"respeitável\": \"respeit\",\n  \"respeito\": \"respeit\",\n  \"respeitosa\": \"respeit\",\n  \"respeitoso\": \"respeit\",\n  \"respira\": \"resp\",\n  \"respiração\": \"respir\",\n  \"respiram\": \"resp\",\n  \"respirando\": \"respir\",\n  \"respirar\": \"respir\",\n  \"respiratória\": \"respiratór\",\n  \"respiratórios\": \"respiratóri\",\n  \"respirava\": \"respir\",\n  \"respirou\": \"respir\",\n  \"responda\": \"respond\",\n  \"responde\": \"respond\",\n  \"respondem\": \"respond\",\n  \"respondemos\": \"respond\",\n  \"respondendo\": \"respond\",\n  \"responder\": \"respond\",\n  \"responderam\": \"respond\",\n  \"respondeu\": \"respond\",\n  \"respondi\": \"respond\",\n  \"respondia\": \"respond\",\n  \"respondida\": \"respond\",\n  \"respondo\": \"respond\",\n  \"responsabilidade\": \"respons\",\n  \"responsabilidades\": \"respons\",\n  \"responsabiliza\": \"responsabiliz\",\n  \"responsabilizá\": \"responsabiliz\",\n  \"responsabilizada\": \"responsabiliz\",\n  \"responsáveis\": \"respons\",\n  \"responsável\": \"respons\",\n  \"resposta\": \"respost\",\n  \"respostas\": \"respost\",\n  \"resquícios\": \"resquíci\",\n  \"ressaca\": \"ressac\",\n  \"ressalta\": \"ressalt\",\n  \"ressaltadas\": \"ressalt\",\n  \"ressaltados\": \"ressalt\",\n  \"ressaltam\": \"ressalt\",\n  \"ressaltar\": \"ressalt\",\n  \"ressaltou\": \"ressalt\",\n  \"ressalva\": \"ressalv\",\n  \"ressalvando\": \"ressalv\",\n  \"ressalvas\": \"ressalv\",\n  \"ressarcimento\": \"ressarc\",\n  \"ressecadas\": \"ressec\",\n  \"ressecado\": \"ressec\",\n  \"ressecamento\": \"ressec\",\n  \"ressente\": \"ressent\",\n  \"ressentem\": \"ressent\",\n  \"ressentimento\": \"ressent\",\n  \"ressentimentos\": \"ressent\",\n  \"ressonância\": \"resson\",\n  \"ressonaria\": \"resson\",\n  \"ressou\": \"ress\",\n  \"ressu\": \"ressu\",\n  \"ressurge\": \"ressurg\",\n  \"ressurgem\": \"ressurg\",\n  \"ressurgimento\": \"ressurg\",\n  \"ressurgiram\": \"ressurg\",\n  \"ressurreição\": \"ressurreiçã\",\n  \"ressuscita\": \"ressuscit\",\n  \"ressuscitar\": \"ressuscit\",\n  \"ressuscitaram\": \"ressuscit\",\n  \"resta\": \"rest\",\n  \"restam\": \"rest\",\n  \"restante\": \"restant\",\n  \"restantes\": \"restant\",\n  \"restará\": \"rest\",\n  \"restaram\": \"rest\",\n  \"restaria\": \"rest\",\n  \"restasse\": \"rest\",\n  \"restauração\": \"restaur\",\n  \"restaurant\": \"restaurant\",\n  \"restaurante\": \"restaur\",\n  \"restaurantes\": \"restaur\",\n  \"restaurar\": \"restaur\",\n  \"restaurateurs\": \"restaurateurs\",\n  \"restava\": \"rest\",\n  \"restavam\": \"rest\",\n  \"restituição\": \"restituiçã\",\n  \"resto\": \"rest\",\n  \"restos\": \"rest\",\n  \"restou\": \"rest\",\n  \"restrição\": \"restriçã\",\n  \"restrições\": \"restriçõ\",\n  \"restringe\": \"restring\",\n  \"restringir\": \"restring\",\n  \"restrita\": \"restrit\",\n  \"restrito\": \"restrit\",\n  \"resulta\": \"result\",\n  \"resultado\": \"result\",\n  \"resultados\": \"result\",\n  \"resultam\": \"result\",\n  \"resultante\": \"result\",\n  \"resultantes\": \"result\",\n  \"resultar\": \"result\",\n  \"resultaram\": \"result\",\n  \"resultarem\": \"result\",\n  \"resultaria\": \"result\",\n  \"resultava\": \"result\",\n  \"resultou\": \"result\",\n  \"resume\": \"resum\",\n  \"resumem\": \"resum\",\n  \"resumida\": \"resum\",\n  \"resumido\": \"resum\",\n  \"resumindo\": \"resum\",\n  \"resumiu\": \"resum\",\n  \"resumo\": \"resum\",\n  \"resvalam\": \"resval\",\n  \"reta\": \"ret\",\n  \"retal\": \"retal\",\n  \"retalhado\": \"retalh\",\n  \"retaliação\": \"retali\",\n  \"retaliações\": \"retali\",\n  \"retangular\": \"retangul\",\n  \"retardam\": \"retard\",\n  \"retardar\": \"retard\",\n  \"retas\": \"ret\",\n  \"retê\": \"ret\",\n  \"retém\": \"retém\",\n  \"retenção\": \"retençã\",\n  \"reter\": \"ret\",\n  \"reteve\": \"retev\",\n  \"reticente\": \"reticent\",\n  \"reticentes\": \"reticent\",\n  \"retida\": \"ret\",\n  \"retido\": \"ret\",\n  \"retina\": \"retin\",\n  \"retira\": \"ret\",\n  \"retirada\": \"retir\",\n  \"retiradas\": \"retir\",\n  \"retirado\": \"retir\",\n  \"retirados\": \"retir\",\n  \"retiram\": \"ret\",\n  \"retirando\": \"retir\",\n  \"retirar\": \"retir\",\n  \"retiraram\": \"retir\",\n  \"retirasse\": \"retir\",\n  \"retirassem\": \"retir\",\n  \"retiro\": \"retir\",\n  \"retirou\": \"retir\",\n  \"reto\": \"ret\",\n  \"retocando\": \"retoc\",\n  \"retocar\": \"retoc\",\n  \"retoma\": \"retom\",\n  \"retomada\": \"retom\",\n  \"retomando\": \"retom\",\n  \"retomar\": \"retom\",\n  \"retomei\": \"retom\",\n  \"retomou\": \"retom\",\n  \"retorcidas\": \"retorc\",\n  \"retorcidos\": \"retorc\",\n  \"retórica\": \"retór\",\n  \"retorna\": \"retorn\",\n  \"retornam\": \"retorn\",\n  \"retornamos\": \"retorn\",\n  \"retornando\": \"retorn\",\n  \"retornar\": \"retorn\",\n  \"retorno\": \"retorn\",\n  \"retornos\": \"retorn\",\n  \"retornou\": \"retorn\",\n  \"retrabalhar\": \"retrabalh\",\n  \"retrair\": \"retra\",\n  \"retranca\": \"retranc\",\n  \"retrancas\": \"retranc\",\n  \"retransmissoras\": \"retransmissor\",\n  \"retransmitia\": \"retransmit\",\n  \"retrasada\": \"retras\",\n  \"retrasado\": \"retras\",\n  \"retrata\": \"retrat\",\n  \"retratado\": \"retrat\",\n  \"retratam\": \"retrat\",\n  \"retratar\": \"retrat\",\n  \"retráteis\": \"retrát\",\n  \"retrato\": \"retrat\",\n  \"retratos\": \"retrat\",\n  \"retribui\": \"retribu\",\n  \"retroativo\": \"retroat\",\n  \"retrocesso\": \"retrocess\",\n  \"retrospectiva\": \"retrospect\",\n  \"retrospecto\": \"retrospect\",\n  \"retruca\": \"retruc\",\n  \"retrucou\": \"retruc\",\n  \"retumbante\": \"retumb\",\n  \"réu\": \"réu\",\n  \"reumática\": \"reumát\",\n  \"reumatismo\": \"reumat\",\n  \"reúne\": \"reún\",\n  \"reúnem\": \"reún\",\n  \"reuni\": \"reun\",\n  \"reunia\": \"reun\",\n  \"reunião\": \"reuniã\",\n  \"reunida\": \"reun\",\n  \"reunidas\": \"reun\",\n  \"reunido\": \"reun\",\n  \"reunidos\": \"reun\",\n  \"reunificação\": \"reunific\",\n  \"reunimos\": \"reun\",\n  \"reuniões\": \"reuniõ\",\n  \"reunir\": \"reun\",\n  \"reuniram\": \"reun\",\n  \"reuniu\": \"reun\",\n  \"reúno\": \"reún\",\n  \"réus\": \"réus\",\n  \"revalorização\": \"revaloriz\",\n  \"revanche\": \"revanch\",\n  \"reveillon\": \"reveillon\",\n  \"réveillon\": \"réveillon\",\n  \"revela\": \"revel\",\n  \"revelação\": \"revel\",\n  \"revelações\": \"revel\",\n  \"reveladas\": \"revel\",\n  \"revelado\": \"revel\",\n  \"reveladora\": \"revel\",\n  \"reveladores\": \"revel\",\n  \"revelam\": \"revel\",\n  \"revelando\": \"revel\",\n  \"revelar\": \"revel\",\n  \"revelaram\": \"revel\",\n  \"revelasse\": \"revel\",\n  \"revelava\": \"revel\",\n  \"revelou\": \"revel\",\n  \"revenda\": \"revend\",\n  \"revende\": \"revend\",\n  \"revendê\": \"revend\",\n  \"revendedoras\": \"revendedor\",\n  \"revendem\": \"revend\",\n  \"revender\": \"revend\",\n  \"revendo\": \"rev\",\n  \"rever\": \"rev\",\n  \"reverberada\": \"reverber\",\n  \"reverência\": \"reverent\",\n  \"reverenciado\": \"reverenc\",\n  \"reverenciam\": \"reverenc\",\n  \"reverenciar\": \"reverenc\",\n  \"reverendo\": \"rever\",\n  \"reverente\": \"reverent\",\n  \"reversão\": \"reversã\",\n  \"reversor\": \"reversor\",\n  \"revertam\": \"revert\",\n  \"reverter\": \"revert\",\n  \"reverteria\": \"revert\",\n  \"revertério\": \"revertéri\",\n  \"reverteu\": \"revert\",\n  \"revertida\": \"revert\",\n  \"revesti\": \"revest\",\n  \"revestimentos\": \"revest\",\n  \"revezar\": \"revez\",\n  \"revezava\": \"revez\",\n  \"revezou\": \"revez\",\n  \"revidar\": \"revid\",\n  \"revidavam\": \"revid\",\n  \"revidou\": \"revid\",\n  \"revigoradas\": \"revigor\",\n  \"revigorado\": \"revigor\",\n  \"revirando\": \"revir\",\n  \"revirassem\": \"revir\",\n  \"reviravolta\": \"reviravolt\",\n  \"revisa\": \"revis\",\n  \"revisadas\": \"revis\",\n  \"revisão\": \"revisã\",\n  \"revista\": \"revist\",\n  \"revistas\": \"revist\",\n  \"revistinhas\": \"revistinh\",\n  \"revisto\": \"revist\",\n  \"revitalizar\": \"revitaliz\",\n  \"revitalizaram\": \"revitaliz\",\n  \"reviu\": \"rev\",\n  \"revival\": \"revival\",\n  \"revive\": \"reviv\",\n  \"revivendo\": \"reviv\",\n  \"reviver\": \"reviv\",\n  \"revlon\": \"revlon\",\n  \"revogada\": \"revog\",\n  \"revolta\": \"revolt\",\n  \"revoltadas\": \"revolt\",\n  \"revoltado\": \"revolt\",\n  \"revoltados\": \"revolt\",\n  \"revoltaram\": \"revolt\",\n  \"revoltas\": \"revolt\",\n  \"revolução\": \"revoluçã\",\n  \"revolucionado\": \"revolucion\",\n  \"revolucionar\": \"revolucion\",\n  \"revolucionária\": \"revolucionár\",\n  \"revolucionárias\": \"revolucionár\",\n  \"revolucionário\": \"revolucionári\",\n  \"revolucionou\": \"revolucion\",\n  \"revoluções\": \"revoluçõ\",\n  \"revólver\": \"revólv\",\n  \"revot\": \"revot\",\n  \"revson\": \"revson\",\n  \"rex\": \"rex\",\n  \"reza\": \"rez\",\n  \"rezar\": \"rez\",\n  \"rezas\": \"rez\",\n  \"rezende\": \"rezend\",\n  \"rezo\": \"rez\",\n  \"rezou\": \"rez\",\n  \"rg\": \"rg\",\n  \"rgs\": \"rgs\",\n  \"rh\": \"rh\",\n  \"rhodia\": \"rhod\",\n  \"rhône\": \"rhôn\",\n  \"ri\": \"ri\",\n  \"riachuelo\": \"riachuel\",\n  \"riam\": \"riam\",\n  \"ribamar\": \"ribam\",\n  \"ribanceiras\": \"ribanceir\",\n  \"ribeirão\": \"rib\",\n  \"ribeiras\": \"ribeir\",\n  \"ribeirinhas\": \"ribeirinh\",\n  \"ribeiro\": \"ribeir\",\n  \"rica\": \"ric\",\n  \"ricaços\": \"ricac\",\n  \"ricardo\": \"ricard\",\n  \"ricas\": \"ric\",\n  \"richard\": \"richard\",\n  \"richieri\": \"richier\",\n  \"rick\": \"rick\",\n  \"rico\": \"ric\",\n  \"ricos\": \"ric\",\n  \"ricota\": \"ricot\",\n  \"ríctus\": \"ríctus\",\n  \"ricupero\": \"ricuper\",\n  \"riddle\": \"riddl\",\n  \"rider\": \"rid\",\n  \"ridícula\": \"ridícul\",\n  \"ridicularizando\": \"ridiculariz\",\n  \"ridículas\": \"ridícul\",\n  \"ridículo\": \"ridícul\",\n  \"ridículos\": \"ridícul\",\n  \"rifkin\": \"rifkin\",\n  \"rifle\": \"rifl\",\n  \"rifles\": \"rifl\",\n  \"rígida\": \"ríg\",\n  \"rigidez\": \"rigidez\",\n  \"rígido\": \"ríg\",\n  \"rígidos\": \"ríg\",\n  \"rigor\": \"rigor\",\n  \"rigorosa\": \"rigor\",\n  \"rigorosamente\": \"rigor\",\n  \"rigorosas\": \"rigor\",\n  \"rigorosíssima\": \"rigorosíssim\",\n  \"rigoroso\": \"rigor\",\n  \"rigorosos\": \"rigor\",\n  \"rija\": \"rij\",\n  \"rim\": \"rim\",\n  \"rima\": \"rim\",\n  \"rímel\": \"rímel\",\n  \"rimini\": \"rimin\",\n  \"rincão\": \"rincã\",\n  \"rindo\": \"rind\",\n  \"rindt\": \"rindt\",\n  \"ringo\": \"ring\",\n  \"ringue\": \"ring\",\n  \"ringues\": \"ringu\",\n  \"rins\": \"rins\",\n  \"rinse\": \"rins\",\n  \"rio\": \"rio\",\n  \"riocentro\": \"riocentr\",\n  \"rioja\": \"rioj\",\n  \"rios\": \"rios\",\n  \"riquenha\": \"riquenh\",\n  \"riqueza\": \"riquez\",\n  \"riquezas\": \"riquez\",\n  \"riquinho\": \"riquinh\",\n  \"riquíssimo\": \"riquíssim\",\n  \"rir\": \"rir\",\n  \"risadas\": \"ris\",\n  \"risca\": \"risc\",\n  \"risco\": \"risc\",\n  \"riscos\": \"risc\",\n  \"riscou\": \"risc\",\n  \"rising\": \"rising\",\n  \"risível\": \"risível\",\n  \"riso\": \"ris\",\n  \"risos\": \"ris\",\n  \"ríspida\": \"rísp\",\n  \"rispidamente\": \"rispid\",\n  \"ríspido\": \"rísp\",\n  \"ríspidos\": \"rísp\",\n  \"rita\": \"rit\",\n  \"ritchie\": \"ritchi\",\n  \"ritmado\": \"ritm\",\n  \"rítmica\": \"rítmic\",\n  \"rítmicas\": \"rítmic\",\n  \"ritmistas\": \"ritmist\",\n  \"ritmo\": \"ritm\",\n  \"ritmos\": \"ritm\",\n  \"rito\": \"rit\",\n  \"ritos\": \"rit\",\n  \"rituais\": \"ritu\",\n  \"ritual\": \"ritual\",\n  \"riu\": \"riu\",\n  \"rivais\": \"riv\",\n  \"rival\": \"rival\",\n  \"rivalidade\": \"rival\",\n  \"rivalidades\": \"rival\",\n  \"rivalizam\": \"rivaliz\",\n  \"rivelino\": \"rivelin\",\n  \"rivero\": \"river\",\n  \"riviera\": \"rivi\",\n  \"rivotril\": \"rivotril\",\n  \"rj\": \"rj\",\n  \"rm\": \"rm\",\n  \"rmão\": \"rmã\",\n  \"rn\": \"rn\",\n  \"ro\": \"ro\",\n  \"rô\": \"rô\",\n  \"road\": \"road\",\n  \"robb\": \"robb\",\n  \"robe\": \"rob\",\n  \"robert\": \"robert\",\n  \"roberta\": \"robert\",\n  \"roberti\": \"robert\",\n  \"roberto\": \"robert\",\n  \"roberts\": \"roberts\",\n  \"robespierre\": \"robespierr\",\n  \"robin\": \"robin\",\n  \"robles\": \"robl\",\n  \"robô\": \"robô\",\n  \"robortella\": \"robortell\",\n  \"robru\": \"robru\",\n  \"robson\": \"robson\",\n  \"robusta\": \"robust\",\n  \"roça\": \"roc\",\n  \"roçado\": \"roc\",\n  \"roceiro\": \"roceir\",\n  \"rocha\": \"roch\",\n  \"rochas\": \"roch\",\n  \"rochedo\": \"roched\",\n  \"rochelle\": \"rochell\",\n  \"rochester\": \"rochest\",\n  \"rochosa\": \"rochos\",\n  \"rochosos\": \"rochos\",\n  \"rocinha\": \"rocinh\",\n  \"rock\": \"rock\",\n  \"rockefeller\": \"rockefell\",\n  \"rockfeller\": \"rockfell\",\n  \"rockies\": \"rocki\",\n  \"rococó\": \"rococ\",\n  \"rod\": \"rod\",\n  \"roda\": \"rod\",\n  \"rodada\": \"rod\",\n  \"rodadas\": \"rod\",\n  \"rodado\": \"rod\",\n  \"rodam\": \"rod\",\n  \"rodando\": \"rod\",\n  \"rodar\": \"rod\",\n  \"rodas\": \"rod\",\n  \"rodavam\": \"rod\",\n  \"rodeada\": \"rod\",\n  \"rodeados\": \"rod\",\n  \"rodeia\": \"rod\",\n  \"rodeiam\": \"rod\",\n  \"rodeios\": \"rodei\",\n  \"rodinha\": \"rodinh\",\n  \"rodinhas\": \"rodinh\",\n  \"rodízio\": \"rodízi\",\n  \"rodo\": \"rod\",\n  \"rodolfo\": \"rodolf\",\n  \"rodonave\": \"rodonav\",\n  \"rodopiando\": \"rodopi\",\n  \"rodovia\": \"rodov\",\n  \"rodoviária\": \"rodoviár\",\n  \"rodoviário\": \"rodoviári\",\n  \"rodoviários\": \"rodoviári\",\n  \"rodovias\": \"rodov\",\n  \"rodrigo\": \"rodrig\",\n  \"rodrigues\": \"rodrigu\",\n  \"rodriguez\": \"rodriguez\",\n  \"rodríguez\": \"rodríguez\",\n  \"roer\": \"roer\",\n  \"rogelio\": \"rogeli\",\n  \"roger\": \"rog\",\n  \"rogéria\": \"rogér\",\n  \"rogerio\": \"rogeri\",\n  \"rogério\": \"rogéri\",\n  \"roitman\": \"roitman\",\n  \"rol\": \"rol\",\n  \"rola\": \"rol\",\n  \"rolagem\": \"rolag\",\n  \"rolagens\": \"rolagens\",\n  \"rolam\": \"rol\",\n  \"roland\": \"roland\",\n  \"rolando\": \"rol\",\n  \"rolar\": \"rol\",\n  \"rolaram\": \"rol\",\n  \"rôle\": \"rôl\",\n  \"rolê\": \"rol\",\n  \"rolês\": \"rolês\",\n  \"roleta\": \"rolet\",\n  \"roletas\": \"rolet\",\n  \"rolex\": \"rolex\",\n  \"rolhas\": \"rolh\",\n  \"rolim\": \"rolim\",\n  \"roll\": \"roll\",\n  \"rolling\": \"rolling\",\n  \"rollins\": \"rollins\",\n  \"rolls\": \"rolls\",\n  \"rolo\": \"rol\",\n  \"rolou\": \"rol\",\n  \"rom\": \"rom\",\n  \"roma\": \"rom\",\n  \"romana\": \"roman\",\n  \"romance\": \"romanc\",\n  \"romances\": \"romanc\",\n  \"romano\": \"roman\",\n  \"romanos\": \"roman\",\n  \"romântica\": \"românt\",\n  \"românticas\": \"românt\",\n  \"romantico\": \"romant\",\n  \"romântico\": \"românt\",\n  \"românticos\": \"românt\",\n  \"romantismo\": \"romant\",\n  \"romão\": \"romã\",\n  \"romaria\": \"rom\",\n  \"romarias\": \"rom\",\n  \"romário\": \"romári\",\n  \"rombo\": \"romb\",\n  \"romeiro\": \"romeir\",\n  \"romeiros\": \"romeir\",\n  \"romero\": \"romer\",\n  \"romeu\": \"rom\",\n  \"romeus\": \"romeus\",\n  \"rommel\": \"rommel\",\n  \"rompendo\": \"romp\",\n  \"romper\": \"romp\",\n  \"romperem\": \"romp\",\n  \"rompeu\": \"romp\",\n  \"rompida\": \"romp\",\n  \"rompidos\": \"romp\",\n  \"rompimento\": \"rompiment\",\n  \"roms\": \"roms\",\n  \"rômulo\": \"rômul\",\n  \"romy\": \"romy\",\n  \"ronald\": \"ronald\",\n  \"ronaldinho\": \"ronaldinh\",\n  \"ronaldo\": \"ronald\",\n  \"ronca\": \"ronc\",\n  \"roncam\": \"ronc\",\n  \"roncati\": \"roncat\",\n  \"roncatti\": \"roncatt\",\n  \"ronda\": \"rond\",\n  \"rondam\": \"rond\",\n  \"rondar\": \"rond\",\n  \"rondon\": \"rondon\",\n  \"rondônia\": \"rondôn\",\n  \"rondoniense\": \"rondoniens\",\n  \"roni\": \"ron\",\n  \"roniel\": \"roniel\",\n  \"roniquito\": \"roniquit\",\n  \"ronivon\": \"ronivon\",\n  \"ronnie\": \"ronni\",\n  \"room\": \"room\",\n  \"roosevelt\": \"roosevelt\",\n  \"roque\": \"roqu\",\n  \"roqueira\": \"roqueir\",\n  \"roqueiro\": \"roqueir\",\n  \"roqueiros\": \"roqueir\",\n  \"roraima\": \"roraim\",\n  \"rosa\": \"ros\",\n  \"rosada\": \"ros\",\n  \"rosado\": \"ros\",\n  \"rosales\": \"rosal\",\n  \"rosalina\": \"rosalin\",\n  \"rosalinda\": \"rosalind\",\n  \"rosana\": \"rosan\",\n  \"rosane\": \"rosan\",\n  \"rosângela\": \"rosângel\",\n  \"rosário\": \"rosári\",\n  \"rosas\": \"ros\",\n  \"roscoe\": \"rosco\",\n  \"rose\": \"ros\",\n  \"rósea\": \"rós\",\n  \"roseana\": \"rosean\",\n  \"rosely\": \"rosely\",\n  \"rosemberg\": \"rosemberg\",\n  \"rosenberg\": \"rosenberg\",\n  \"rosenblatt\": \"rosenblatt\",\n  \"rosenfeld\": \"rosenfeld\",\n  \"rosielma\": \"rosielm\",\n  \"rossellini\": \"rossellin\",\n  \"rossi\": \"ross\",\n  \"rossini\": \"rossin\",\n  \"rosto\": \"rost\",\n  \"rostos\": \"rost\",\n  \"roswell\": \"roswell\",\n  \"rota\": \"rot\",\n  \"rotação\": \"rotaçã\",\n  \"rotas\": \"rot\",\n  \"roteirista\": \"roteir\",\n  \"roteiristas\": \"roteir\",\n  \"roteiro\": \"roteir\",\n  \"roteiros\": \"roteir\",\n  \"roterdã\": \"roterdã\",\n  \"rotina\": \"rotin\",\n  \"rotinas\": \"rotin\",\n  \"rotineira\": \"rotineir\",\n  \"rotineiramente\": \"rotineir\",\n  \"rotineiro\": \"rotineir\",\n  \"rotineiros\": \"rotineir\",\n  \"rotulada\": \"rotul\",\n  \"rotulando\": \"rotul\",\n  \"rótulo\": \"rótul\",\n  \"rótulos\": \"rótul\",\n  \"roubada\": \"roub\",\n  \"roubado\": \"roub\",\n  \"roubados\": \"roub\",\n  \"roubalheira\": \"roubalheir\",\n  \"roubam\": \"roub\",\n  \"roubar\": \"roub\",\n  \"roubara\": \"roub\",\n  \"roubo\": \"roub\",\n  \"roubos\": \"roub\",\n  \"roubou\": \"roub\",\n  \"rounds\": \"rounds\",\n  \"roupa\": \"roup\",\n  \"roupagens\": \"roupagens\",\n  \"roupas\": \"roup\",\n  \"roxo\": \"rox\",\n  \"royal\": \"royal\",\n  \"royce\": \"royc\",\n  \"roza\": \"roz\",\n  \"rozas\": \"roz\",\n  \"rozi\": \"roz\",\n  \"rpm\": \"rpm\",\n  \"rs\": \"rs\",\n  \"rsf\": \"rsf\",\n  \"rsfcens\": \"rsfcens\",\n  \"rtca\": \"rtca\",\n  \"rtes\": \"rtes\",\n  \"rua\": \"rua\",\n  \"ruas\": \"ruas\",\n  \"rubem\": \"rub\",\n  \"ruben\": \"ruben\",\n  \"rubens\": \"rubens\",\n  \"rubinstein\": \"rubinstein\",\n  \"rubio\": \"rubi\",\n  \"ruço\": \"ruc\",\n  \"rude\": \"rud\",\n  \"rudolf\": \"rudolf\",\n  \"rudolph\": \"rudolph\",\n  \"rudyard\": \"rudyard\",\n  \"rue\": \"rue\",\n  \"ruelas\": \"ruel\",\n  \"ruga\": \"rug\",\n  \"rugas\": \"rug\",\n  \"rúgbi\": \"rúgb\",\n  \"rugido\": \"rug\",\n  \"rugir\": \"rug\",\n  \"rui\": \"rui\",\n  \"ruído\": \"ruíd\",\n  \"ruídos\": \"ruíd\",\n  \"ruidosas\": \"ruidos\",\n  \"ruim\": \"ruim\",\n  \"ruína\": \"ruín\",\n  \"ruínas\": \"ruín\",\n  \"ruins\": \"ruins\",\n  \"ruir\": \"ruir\",\n  \"ruiu\": \"ruiu\",\n  \"ruivo\": \"ruiv\",\n  \"ruiz\": \"ruiz\",\n  \"rullian\": \"rullian\",\n  \"rumar\": \"rum\",\n  \"rumaram\": \"rum\",\n  \"rumo\": \"rum\",\n  \"rumor\": \"rumor\",\n  \"rumoroso\": \"rumor\",\n  \"rumorosos\": \"rumor\",\n  \"runner\": \"runn\",\n  \"rupp\": \"rupp\",\n  \"ruptura\": \"ruptur\",\n  \"rupturas\": \"ruptur\",\n  \"rurais\": \"rur\",\n  \"rural\": \"rural\",\n  \"rusgas\": \"rusg\",\n  \"rushdie\": \"rushdi\",\n  \"russa\": \"russ\",\n  \"russas\": \"russ\",\n  \"russel\": \"russel\",\n  \"rússia\": \"rúss\",\n  \"russificação\": \"russific\",\n  \"russo\": \"russ\",\n  \"russos\": \"russ\",\n  \"rústico\": \"rústic\",\n  \"ruta\": \"rut\",\n  \"ruth\": \"ruth\",\n  \"ruy\": \"ruy\",\n  \"ryder\": \"ryder\",\n  \"s\": \"s\",\n  \"sá\": \"sá\",\n  \"saad\": \"saad\",\n  \"sábado\": \"sáb\",\n  \"sábados\": \"sáb\",\n  \"sabata\": \"sabat\",\n  \"sábato\": \"sábat\",\n  \"sabe\": \"sab\",\n  \"sabedoria\": \"sabedor\",\n  \"sabem\": \"sab\",\n  \"sabemos\": \"sab\",\n  \"sabendo\": \"sab\",\n  \"saber\": \"sab\",\n  \"saberá\": \"sab\",\n  \"saberem\": \"sab\",\n  \"saberia\": \"sab\",\n  \"saberiam\": \"sab\",\n  \"sabermos\": \"sab\",\n  \"sabesp\": \"sabesp\",\n  \"sabia\": \"sab\",\n  \"sábia\": \"sáb\",\n  \"sabiam\": \"sab\",\n  \"sabiamente\": \"sabi\",\n  \"sabíamos\": \"sab\",\n  \"sabidamente\": \"sabid\",\n  \"sabido\": \"sab\",\n  \"sabino\": \"sabin\",\n  \"sábio\": \"sábi\",\n  \"sábios\": \"sábi\",\n  \"sabonete\": \"sabonet\",\n  \"sabor\": \"sabor\",\n  \"saborear\": \"sabor\",\n  \"saboreiam\": \"sabor\",\n  \"sabores\": \"sabor\",\n  \"saborosa\": \"sabor\",\n  \"saborosas\": \"sabor\",\n  \"saboroso\": \"sabor\",\n  \"saborosos\": \"sabor\",\n  \"sabrit\": \"sabrit\",\n  \"saca\": \"sac\",\n  \"sacada\": \"sac\",\n  \"sacados\": \"sac\",\n  \"sacanear\": \"sacan\",\n  \"sacas\": \"sac\",\n  \"sacerdócio\": \"sacerdóci\",\n  \"sacerdortisa\": \"sacerdortis\",\n  \"sacerdotal\": \"sacerdotal\",\n  \"sacerdote\": \"sacerdot\",\n  \"sacerdotes\": \"sacerdot\",\n  \"sacerdotisa\": \"sacerdotis\",\n  \"sachê\": \"sach\",\n  \"saciarem\": \"sac\",\n  \"saciedade\": \"saciedad\",\n  \"saco\": \"sac\",\n  \"sacode\": \"sacod\",\n  \"sacolas\": \"sacol\",\n  \"sacoleiras\": \"sacoleir\",\n  \"sacoleja\": \"sacolej\",\n  \"sacolejar\": \"sacolej\",\n  \"sacolejou\": \"sacolej\",\n  \"sacolinhas\": \"sacolinh\",\n  \"sacou\": \"sac\",\n  \"sacramento\": \"sacrament\",\n  \"sacrificado\": \"sacrific\",\n  \"sacrificar\": \"sacrific\",\n  \"sacrifício\": \"sacrifíci\",\n  \"sacrifícios\": \"sacrifíci\",\n  \"sacudir\": \"sacud\",\n  \"sacudiu\": \"sacud\",\n  \"saddam\": \"sadd\",\n  \"sade\": \"sad\",\n  \"sadia\": \"sad\",\n  \"sadias\": \"sad\",\n  \"sádico\": \"sádic\",\n  \"sadomasoquistas\": \"sadomasoqu\",\n  \"sae\": \"sae\",\n  \"saem\": \"saem\",\n  \"safadinha\": \"safadinh\",\n  \"safado\": \"saf\",\n  \"safar\": \"saf\",\n  \"safáris\": \"safár\",\n  \"safena\": \"safen\",\n  \"safer\": \"saf\",\n  \"safir\": \"saf\",\n  \"safra\": \"safr\",\n  \"saga\": \"sag\",\n  \"sagan\": \"sagan\",\n  \"sagra\": \"sagr\",\n  \"sagração\": \"sagraçã\",\n  \"sagrada\": \"sagr\",\n  \"sagradas\": \"sagr\",\n  \"sagrado\": \"sagr\",\n  \"sagrados\": \"sagr\",\n  \"sagres\": \"sagr\",\n  \"sagrou\": \"sagr\",\n  \"saguão\": \"saguã\",\n  \"sahione\": \"sahion\",\n  \"sai\": \"sai\",\n  \"saí\": \"saí\",\n  \"saia\": \"sai\",\n  \"saía\": \"saí\",\n  \"saiam\": \"sai\",\n  \"saíam\": \"saí\",\n  \"saíamos\": \"saí\",\n  \"saias\": \"sai\",\n  \"saiba\": \"saib\",\n  \"saibam\": \"saib\",\n  \"saibro\": \"saibr\",\n  \"said\": \"said\",\n  \"saída\": \"saíd\",\n  \"saídas\": \"saíd\",\n  \"saído\": \"saíd\",\n  \"saídos\": \"saíd\",\n  \"saigne\": \"saign\",\n  \"saímos\": \"saím\",\n  \"saindo\": \"saind\",\n  \"saint\": \"saint\",\n  \"sainte\": \"saint\",\n  \"saio\": \"sai\",\n  \"saiote\": \"saiot\",\n  \"sair\": \"sair\",\n  \"sairá\": \"sair\",\n  \"saíram\": \"saír\",\n  \"sairão\": \"sairã\",\n  \"sairia\": \"sair\",\n  \"sairiam\": \"sair\",\n  \"sais\": \"sais\",\n  \"saísse\": \"saíss\",\n  \"saíssem\": \"saíss\",\n  \"saiu\": \"saiu\",\n  \"sajot\": \"sajot\",\n  \"sal\": \"sal\",\n  \"sala\": \"sal\",\n  \"salada\": \"sal\",\n  \"salamaleques\": \"salamalequ\",\n  \"salames\": \"salam\",\n  \"salão\": \"salã\",\n  \"salariais\": \"salari\",\n  \"salarial\": \"salarial\",\n  \"salário\": \"salári\",\n  \"salários\": \"salári\",\n  \"salas\": \"sal\",\n  \"salazar\": \"salaz\",\n  \"saldados\": \"sald\",\n  \"saldanha\": \"saldanh\",\n  \"saldar\": \"sald\",\n  \"saldo\": \"sald\",\n  \"saldos\": \"sald\",\n  \"salem\": \"sal\",\n  \"sales\": \"sal\",\n  \"salesiana\": \"salesian\",\n  \"salgada\": \"salg\",\n  \"salgadinhos\": \"salgadinh\",\n  \"salgado\": \"salg\",\n  \"salgados\": \"salg\",\n  \"salgueiro\": \"salgueir\",\n  \"saliência\": \"saliênc\",\n  \"saliências\": \"saliênc\",\n  \"salienta\": \"salient\",\n  \"salientando\": \"salient\",\n  \"salientar\": \"salient\",\n  \"saliente\": \"salient\",\n  \"salinha\": \"salinh\",\n  \"saliva\": \"saliv\",\n  \"sallai\": \"salla\",\n  \"salles\": \"sall\",\n  \"salman\": \"salman\",\n  \"salmão\": \"salmã\",\n  \"salmões\": \"salmõ\",\n  \"salobo\": \"salob\",\n  \"salões\": \"salõ\",\n  \"salomão\": \"salomã\",\n  \"salpicado\": \"salpic\",\n  \"salsa\": \"sals\",\n  \"salsaretti\": \"salsarett\",\n  \"salta\": \"salt\",\n  \"saltam\": \"salt\",\n  \"saltando\": \"salt\",\n  \"saltarem\": \"salt\",\n  \"saltava\": \"salt\",\n  \"salte\": \"salt\",\n  \"salteador\": \"salteador\",\n  \"saltei\": \"salt\",\n  \"saltinho\": \"saltinh\",\n  \"saltitantes\": \"saltit\",\n  \"salto\": \"salt\",\n  \"saltou\": \"salt\",\n  \"salva\": \"salv\",\n  \"salvá\": \"salv\",\n  \"salvação\": \"salvaçã\",\n  \"salvado\": \"salv\",\n  \"salvador\": \"salvador\",\n  \"salvadora\": \"salvador\",\n  \"salvajoli\": \"salvajol\",\n  \"salvamento\": \"salvament\",\n  \"salvando\": \"salv\",\n  \"salvar\": \"salv\",\n  \"salvaria\": \"salv\",\n  \"salvatore\": \"salvator\",\n  \"salvatti\": \"salvatt\",\n  \"salvo\": \"salv\",\n  \"salvos\": \"salv\",\n  \"salvou\": \"salv\",\n  \"sam\": \"sam\",\n  \"samaipata\": \"samaipat\",\n  \"samantha\": \"samanth\",\n  \"samaritano\": \"samaritan\",\n  \"samba\": \"samb\",\n  \"sambando\": \"samb\",\n  \"sambas\": \"samb\",\n  \"sambista\": \"sambist\",\n  \"sambísticas\": \"sambíst\",\n  \"sambódromo\": \"sambódrom\",\n  \"sami\": \"sam\",\n  \"sampaio\": \"sampai\",\n  \"samper\": \"samp\",\n  \"sampras\": \"sampr\",\n  \"samuel\": \"samuel\",\n  \"san\": \"san\",\n  \"sanatório\": \"sanatóri\",\n  \"sanches\": \"sanch\",\n  \"sanchez\": \"sanchez\",\n  \"sanções\": \"sançõ\",\n  \"sandália\": \"sandál\",\n  \"sandálias\": \"sandál\",\n  \"sandalo\": \"sandal\",\n  \"sandra\": \"sandr\",\n  \"sandro\": \"sandr\",\n  \"sanduíche\": \"sanduích\",\n  \"sanduíches\": \"sanduích\",\n  \"sandy\": \"sandy\",\n  \"saneada\": \"san\",\n  \"saneado\": \"san\",\n  \"saneamento\": \"saneament\",\n  \"sanear\": \"san\",\n  \"sanfoneiro\": \"sanfoneir\",\n  \"sanfoneiros\": \"sanfoneir\",\n  \"sangradas\": \"sangr\",\n  \"sangramentos\": \"sangrament\",\n  \"sangrando\": \"sangr\",\n  \"sangrar\": \"sangr\",\n  \"sangrenta\": \"sangrent\",\n  \"sangrento\": \"sangrent\",\n  \"sangria\": \"sangr\",\n  \"sangue\": \"sang\",\n  \"sangues\": \"sangu\",\n  \"sanguinários\": \"sanguinári\",\n  \"sanguínea\": \"sanguín\",\n  \"sangüínea\": \"sangüín\",\n  \"sanguíneos\": \"sanguín\",\n  \"sanguinetti\": \"sanguinett\",\n  \"sanguinolentos\": \"sanguinolent\",\n  \"sanidade\": \"sanidad\",\n  \"sanitária\": \"sanitár\",\n  \"sanitárias\": \"sanitár\",\n  \"sanitário\": \"sanitári\",\n  \"sanjay\": \"sanjay\",\n  \"sans\": \"sans\",\n  \"sant\": \"sant\",\n  \"santa\": \"sant\",\n  \"santaconstancia\": \"santaconstanc\",\n  \"santana\": \"santan\",\n  \"santas\": \"sant\",\n  \"santeiro\": \"santeir\",\n  \"santiago\": \"santiag\",\n  \"santidade\": \"santidad\",\n  \"santificação\": \"santific\",\n  \"santilli\": \"santill\",\n  \"santíssima\": \"santíssim\",\n  \"santista\": \"santist\",\n  \"santo\": \"sant\",\n  \"santos\": \"sant\",\n  \"santuário\": \"santuári\",\n  \"santuários\": \"santuári\",\n  \"são\": \"sã\",\n  \"sap\": \"sap\",\n  \"sapaim\": \"sapaim\",\n  \"sapalo\": \"sapal\",\n  \"sapatão\": \"sapatã\",\n  \"sapateiro\": \"sapateir\",\n  \"sapatilha\": \"sapatilh\",\n  \"sapato\": \"sapat\",\n  \"sapatos\": \"sapat\",\n  \"sapê\": \"sap\",\n  \"sapês\": \"sapês\",\n  \"sapezal\": \"sapezal\",\n  \"sapo\": \"sap\",\n  \"sapucaí\": \"sapuca\",\n  \"saque\": \"saqu\",\n  \"saqueando\": \"saqu\",\n  \"saquear\": \"saqu\",\n  \"saqueou\": \"saqu\",\n  \"saques\": \"saqu\",\n  \"saquinho\": \"saquinh\",\n  \"saquinhos\": \"saquinh\",\n  \"sara\": \"sar\",\n  \"sarah\": \"sarah\",\n  \"saraiva\": \"saraiv\",\n  \"saramago\": \"saramag\",\n  \"sarandah\": \"sarandah\",\n  \"sarará\": \"sar\",\n  \"saratoga\": \"saratog\",\n  \"saraus\": \"saraus\",\n  \"sarcófagos\": \"sarcófag\",\n  \"sardenberg\": \"sardenberg\",\n  \"sardenta\": \"sardent\",\n  \"sargento\": \"sargent\",\n  \"sargentos\": \"sargent\",\n  \"sarmento\": \"sarment\",\n  \"sarna\": \"sarn\",\n  \"sarney\": \"sarney\",\n  \"sarro\": \"sarr\",\n  \"sarti\": \"sart\",\n  \"sartorelli\": \"sartorell\",\n  \"sartori\": \"sartor\",\n  \"sartre\": \"sartr\",\n  \"sassaricando\": \"sassaric\",\n  \"sastre\": \"sastr\",\n  \"satélite\": \"satélit\",\n  \"satélites\": \"satélit\",\n  \"sátira\": \"sát\",\n  \"sátiras\": \"sát\",\n  \"satisfaça\": \"satisfac\",\n  \"satisfação\": \"satisf\",\n  \"satisfações\": \"satisf\",\n  \"satisfatoriamente\": \"satisfatori\",\n  \"satisfatórias\": \"satisfatór\",\n  \"satisfatório\": \"satisfatóri\",\n  \"satisfaz\": \"satisfaz\",\n  \"satisfazê\": \"satisfaz\",\n  \"satisfazer\": \"satisfaz\",\n  \"satisfeita\": \"satisfeit\",\n  \"satisfeitíssimo\": \"satisfeitíssim\",\n  \"satisfeito\": \"satisfeit\",\n  \"satisfeitos\": \"satisfeit\",\n  \"saturadas\": \"satur\",\n  \"saturado\": \"satur\",\n  \"saturno\": \"saturn\",\n  \"saúda\": \"saúd\",\n  \"saudações\": \"saudaçõ\",\n  \"saudada\": \"saud\",\n  \"saudade\": \"saudad\",\n  \"saudades\": \"saudad\",\n  \"saudado\": \"saud\",\n  \"saudáveis\": \"saud\",\n  \"saudável\": \"saudável\",\n  \"saúde\": \"saúd\",\n  \"saudosos\": \"saudos\",\n  \"saul\": \"saul\",\n  \"saulo\": \"saul\",\n  \"sauna\": \"saun\",\n  \"saunas\": \"saun\",\n  \"sauvignon\": \"sauvignon\",\n  \"savana\": \"savan\",\n  \"save\": \"sav\",\n  \"savimbi\": \"savimb\",\n  \"saviolli\": \"savioll\",\n  \"saxão\": \"saxã\",\n  \"sayão\": \"sayã\",\n  \"sbh\": \"sbh\",\n  \"sbpc\": \"sbpc\",\n  \"sbt\": \"sbt\",\n  \"sc\": \"sc\",\n  \"scala\": \"scal\",\n  \"scan\": \"scan\",\n  \"scandal\": \"scandal\",\n  \"scania\": \"scan\",\n  \"scapin\": \"scapin\",\n  \"scarel\": \"scarel\",\n  \"scaringella\": \"scaringell\",\n  \"scarlett\": \"scarlett\",\n  \"schain\": \"schain\",\n  \"schalch\": \"schalch\",\n  \"schank\": \"schank\",\n  \"scheinkman\": \"scheinkman\",\n  \"scheper\": \"schep\",\n  \"schiff\": \"schiff\",\n  \"schiffer\": \"schiff\",\n  \"schindler\": \"schindl\",\n  \"schistossoma\": \"schistossom\",\n  \"schl\": \"schl\",\n  \"schmidt\": \"schmidt\",\n  \"schneider\": \"schneid\",\n  \"school\": \"school\",\n  \"schubert\": \"schubert\",\n  \"schultz\": \"schultz\",\n  \"schütt\": \"schütt\",\n  \"schwanke\": \"schwank\",\n  \"schwarcz\": \"schwarcz\",\n  \"schwartz\": \"schwartz\",\n  \"schwarzenegger\": \"schwarzenegg\",\n  \"schwarzkopf\": \"schwarzkopf\",\n  \"science\": \"scienc\",\n  \"sciences\": \"scienc\",\n  \"scientist\": \"scientist\",\n  \"scipione\": \"scipion\",\n  \"scliar\": \"scli\",\n  \"scotland\": \"scotland\",\n  \"scott\": \"scott\",\n  \"scouts\": \"scouts\",\n  \"scuba\": \"scub\",\n  \"se\": \"se\",\n  \"sé\": \"sé\",\n  \"sea\": \"sea\",\n  \"seabra\": \"seabr\",\n  \"seade\": \"sead\",\n  \"sean\": \"sean\",\n  \"search\": \"search\",\n  \"sears\": \"sears\",\n  \"seattle\": \"seattl\",\n  \"sebastianista\": \"sebastian\",\n  \"sebastião\": \"sebastiã\",\n  \"seca\": \"sec\",\n  \"secadores\": \"secador\",\n  \"seção\": \"seçã\",\n  \"secar\": \"sec\",\n  \"secaram\": \"sec\",\n  \"secção\": \"secçã\",\n  \"sechon\": \"sechon\",\n  \"seco\": \"sec\",\n  \"seções\": \"seçõ\",\n  \"secou\": \"sec\",\n  \"secovi\": \"secov\",\n  \"secreção\": \"secreçã\",\n  \"secreta\": \"secret\",\n  \"secretamente\": \"secret\",\n  \"secretaria\": \"secret\",\n  \"secretária\": \"secretár\",\n  \"secretariado\": \"secretari\",\n  \"secretarias\": \"secret\",\n  \"secretárias\": \"secretár\",\n  \"secretário\": \"secretári\",\n  \"secretários\": \"secretári\",\n  \"secretas\": \"secret\",\n  \"secreto\": \"secret\",\n  \"secretos\": \"secret\",\n  \"secular\": \"secul\",\n  \"seculares\": \"secul\",\n  \"século\": \"sécul\",\n  \"séculos\": \"sécul\",\n  \"secundária\": \"secundár\",\n  \"secundárias\": \"secundár\",\n  \"secundário\": \"secundári\",\n  \"secundários\": \"secundári\",\n  \"secura\": \"secur\",\n  \"seda\": \"sed\",\n  \"sedada\": \"sed\",\n  \"sede\": \"sed\",\n  \"sedentária\": \"sedentár\",\n  \"sedentárias\": \"sedentár\",\n  \"sedentário\": \"sedentári\",\n  \"sedentarismo\": \"sedentar\",\n  \"sediada\": \"sedi\",\n  \"sediado\": \"sedi\",\n  \"sediar\": \"sedi\",\n  \"sedimentadas\": \"sediment\",\n  \"sedimentava\": \"sediment\",\n  \"sedução\": \"seduçã\",\n  \"sedutor\": \"sedutor\",\n  \"sedutora\": \"sedutor\",\n  \"seduz\": \"seduz\",\n  \"seduzida\": \"seduz\",\n  \"seduzindo\": \"seduz\",\n  \"seduzir\": \"seduz\",\n  \"seduziram\": \"seduz\",\n  \"seduziu\": \"seduz\",\n  \"segall\": \"segall\",\n  \"segmentadas\": \"segment\",\n  \"segmentado\": \"segment\",\n  \"segmento\": \"segment\",\n  \"segmentos\": \"segment\",\n  \"segredo\": \"segred\",\n  \"segredos\": \"segred\",\n  \"segregação\": \"segreg\",\n  \"segue\": \"seg\",\n  \"seguem\": \"segu\",\n  \"segui\": \"segu\",\n  \"seguia\": \"segu\",\n  \"seguiam\": \"segu\",\n  \"seguida\": \"segu\",\n  \"seguidas\": \"segu\",\n  \"seguido\": \"segu\",\n  \"seguidor\": \"seguidor\",\n  \"seguidora\": \"seguidor\",\n  \"seguidores\": \"seguidor\",\n  \"seguidos\": \"segu\",\n  \"seguindo\": \"segu\",\n  \"seguinte\": \"seguint\",\n  \"seguintes\": \"seguint\",\n  \"seguir\": \"segu\",\n  \"seguiram\": \"segu\",\n  \"seguirem\": \"segu\",\n  \"seguiria\": \"segu\",\n  \"seguiu\": \"segu\",\n  \"segunda\": \"segund\",\n  \"segundas\": \"segund\",\n  \"segundo\": \"segund\",\n  \"segundos\": \"segund\",\n  \"segura\": \"segur\",\n  \"seguradora\": \"segur\",\n  \"seguradoras\": \"segur\",\n  \"segurados\": \"segur\",\n  \"seguram\": \"segur\",\n  \"seguramente\": \"segur\",\n  \"segurança\": \"seguranc\",\n  \"seguranças\": \"seguranc\",\n  \"segurando\": \"segur\",\n  \"segurar\": \"segur\",\n  \"seguras\": \"segur\",\n  \"segurasse\": \"segur\",\n  \"segurava\": \"segur\",\n  \"segure\": \"segur\",\n  \"seguridade\": \"segur\",\n  \"seguro\": \"segur\",\n  \"seguros\": \"segur\",\n  \"segurou\": \"segur\",\n  \"sei\": \"sei\",\n  \"seio\": \"sei\",\n  \"seios\": \"sei\",\n  \"seis\": \"seis\",\n  \"seiscentos\": \"seiscent\",\n  \"seita\": \"seit\",\n  \"seitas\": \"seit\",\n  \"seja\": \"sej\",\n  \"sejam\": \"sej\",\n  \"sejamos\": \"sej\",\n  \"selam\": \"sel\",\n  \"selar\": \"sel\",\n  \"selaram\": \"sel\",\n  \"seleção\": \"seleçã\",\n  \"seleciona\": \"selecion\",\n  \"selecionada\": \"selecion\",\n  \"selecionadas\": \"selecion\",\n  \"selecionado\": \"selecion\",\n  \"selecionados\": \"selecion\",\n  \"selecionam\": \"selecion\",\n  \"selecionamos\": \"selecion\",\n  \"selecionar\": \"selecion\",\n  \"selecionaram\": \"selecion\",\n  \"selecionava\": \"selecion\",\n  \"selecionou\": \"selecion\",\n  \"seleções\": \"seleçõ\",\n  \"selenium\": \"selenium\",\n  \"seleta\": \"selet\",\n  \"seletiva\": \"selet\",\n  \"seletivamente\": \"selet\",\n  \"seletivo\": \"selet\",\n  \"seleto\": \"selet\",\n  \"self\": \"self\",\n  \"selim\": \"selim\",\n  \"selinho\": \"selinh\",\n  \"sella\": \"sell\",\n  \"selleck\": \"selleck\",\n  \"seller\": \"sell\",\n  \"sellers\": \"sellers\",\n  \"selma\": \"selm\",\n  \"selmy\": \"selmy\",\n  \"selo\": \"sel\",\n  \"selton\": \"selton\",\n  \"seltzer\": \"seltz\",\n  \"selva\": \"selv\",\n  \"selvagem\": \"selvag\",\n  \"selvagens\": \"selvagens\",\n  \"selvageria\": \"selvag\",\n  \"selvas\": \"selv\",\n  \"selye\": \"sely\",\n  \"sem\": \"sem\",\n  \"semana\": \"seman\",\n  \"semanais\": \"seman\",\n  \"semanal\": \"semanal\",\n  \"semanalmente\": \"semanal\",\n  \"semanário\": \"semanári\",\n  \"semanas\": \"seman\",\n  \"semeadeira\": \"semeadeir\",\n  \"semeia\": \"sem\",\n  \"semeiskys\": \"semeiskys\",\n  \"semelhança\": \"semelhanc\",\n  \"semelhanças\": \"semelhanc\",\n  \"semelhante\": \"semelh\",\n  \"semelhantes\": \"semelh\",\n  \"sêmen\": \"sêmen\",\n  \"semente\": \"sement\",\n  \"sementes\": \"sement\",\n  \"semeou\": \"sem\",\n  \"semestral\": \"semestral\",\n  \"semestre\": \"semestr\",\n  \"semi\": \"sem\",\n  \"semicírculo\": \"semicírcul\",\n  \"semiclandestinidade\": \"semiclandestin\",\n  \"semifinais\": \"semifin\",\n  \"semifinal\": \"semifinal\",\n  \"semifinalista\": \"semifinal\",\n  \"semilírico\": \"semilír\",\n  \"seminais\": \"semin\",\n  \"seminário\": \"seminári\",\n  \"seminarista\": \"seminar\",\n  \"seminaristas\": \"seminar\",\n  \"seminuas\": \"seminu\",\n  \"semitranse\": \"semitrans\",\n  \"sempre\": \"sempr\",\n  \"sen\": \"sen\",\n  \"sena\": \"sen\",\n  \"senado\": \"sen\",\n  \"senador\": \"senador\",\n  \"senadora\": \"senador\",\n  \"senadores\": \"senador\",\n  \"senai\": \"sena\",\n  \"senão\": \"senã\",\n  \"senas\": \"sen\",\n  \"senderistas\": \"sender\",\n  \"sendero\": \"sender\",\n  \"sendo\": \"send\",\n  \"senegal\": \"senegal\",\n  \"senha\": \"senh\",\n  \"senhas\": \"senh\",\n  \"senhor\": \"senhor\",\n  \"senhora\": \"senhor\",\n  \"senhoras\": \"senhor\",\n  \"senhores\": \"senhor\",\n  \"senhorial\": \"senhorial\",\n  \"sênior\": \"sênior\",\n  \"senioridade\": \"senior\",\n  \"senise\": \"senis\",\n  \"senna\": \"senn\",\n  \"señor\": \"señor\",\n  \"sensação\": \"sensaçã\",\n  \"sensacionais\": \"sensacion\",\n  \"sensacional\": \"sensacional\",\n  \"sensacionalismo\": \"sensacional\",\n  \"sensacionalista\": \"sensacional\",\n  \"sensações\": \"sensaçõ\",\n  \"sensatas\": \"sensat\",\n  \"sensato\": \"sensat\",\n  \"sensibilidade\": \"sensibil\",\n  \"sensibiliza\": \"sensibiliz\",\n  \"sensibilizam\": \"sensibiliz\",\n  \"sensibilizar\": \"sensibiliz\",\n  \"sensibilizaram\": \"sensibiliz\",\n  \"sensibilizarmos\": \"sensibiliz\",\n  \"sensíveis\": \"sensív\",\n  \"sensível\": \"sensível\",\n  \"sensivelmente\": \"sensivel\",\n  \"senso\": \"sens\",\n  \"sensor\": \"sensor\",\n  \"sensores\": \"sensor\",\n  \"sensuais\": \"sensu\",\n  \"sensual\": \"sensual\",\n  \"sensualidade\": \"sensual\",\n  \"sensualíssima\": \"sensualíssim\",\n  \"sentada\": \"sent\",\n  \"sentadas\": \"sent\",\n  \"sentado\": \"sent\",\n  \"sentados\": \"sent\",\n  \"sentam\": \"sent\",\n  \"sentar\": \"sent\",\n  \"sentaram\": \"sent\",\n  \"sentarem\": \"sent\",\n  \"sentava\": \"sent\",\n  \"sente\": \"sent\",\n  \"sentei\": \"sent\",\n  \"sentem\": \"sent\",\n  \"sentença\": \"sentenc\",\n  \"sentenças\": \"sentenc\",\n  \"sentencia\": \"sentenc\",\n  \"senti\": \"sent\",\n  \"sentia\": \"sent\",\n  \"sentiam\": \"sent\",\n  \"sentida\": \"sent\",\n  \"sentido\": \"sent\",\n  \"sentidos\": \"sent\",\n  \"sentimental\": \"sentimental\",\n  \"sentimento\": \"sentiment\",\n  \"sentimentos\": \"sentiment\",\n  \"sentindo\": \"sent\",\n  \"sentir\": \"sent\",\n  \"sentiram\": \"sent\",\n  \"sentirem\": \"sent\",\n  \"sentiria\": \"sent\",\n  \"sentisse\": \"sent\",\n  \"sentiu\": \"sent\",\n  \"sento\": \"sent\",\n  \"sentou\": \"sent\",\n  \"senzala\": \"senzal\",\n  \"separa\": \"sep\",\n  \"separá\": \"sep\",\n  \"separação\": \"separ\",\n  \"separações\": \"separ\",\n  \"separada\": \"separ\",\n  \"separadamente\": \"separ\",\n  \"separadas\": \"separ\",\n  \"separado\": \"separ\",\n  \"separados\": \"separ\",\n  \"separamos\": \"separ\",\n  \"separando\": \"separ\",\n  \"separar\": \"separ\",\n  \"separaram\": \"separ\",\n  \"separei\": \"sep\",\n  \"separo\": \"separ\",\n  \"separou\": \"separ\",\n  \"sepetiba\": \"sepetib\",\n  \"septecemia\": \"septecem\",\n  \"sepulcro\": \"sepulcr\",\n  \"sepultada\": \"sepult\",\n  \"sepultado\": \"sepult\",\n  \"sepultamento\": \"sepult\",\n  \"sepultou\": \"sepult\",\n  \"sepulveda\": \"sepulved\",\n  \"sepúlveda\": \"sepúlved\",\n  \"seqüela\": \"seqüel\",\n  \"sequelas\": \"sequel\",\n  \"seqüelas\": \"seqüel\",\n  \"sequência\": \"sequênc\",\n  \"seqüência\": \"seqüênc\",\n  \"sequenciar\": \"sequenc\",\n  \"sequências\": \"sequênc\",\n  \"sequer\": \"sequ\",\n  \"sequestrada\": \"sequestr\",\n  \"sequestrado\": \"sequestr\",\n  \"sequestrados\": \"sequestr\",\n  \"seqüestrando\": \"seqüestr\",\n  \"seqüestravam\": \"seqüestr\",\n  \"sequestro\": \"sequestr\",\n  \"seqüestro\": \"seqüestr\",\n  \"seqüestrou\": \"seqüestr\",\n  \"sequóias\": \"sequó\",\n  \"ser\": \"ser\",\n  \"será\": \"ser\",\n  \"serafin\": \"serafin\",\n  \"serão\": \"serã\",\n  \"sercretário\": \"sercretári\",\n  \"serei\": \"ser\",\n  \"serem\": \"ser\",\n  \"seremos\": \"ser\",\n  \"serenidade\": \"seren\",\n  \"sereno\": \"seren\",\n  \"serenos\": \"seren\",\n  \"seres\": \"ser\",\n  \"sergi\": \"serg\",\n  \"sergio\": \"sergi\",\n  \"sérgio\": \"sérgi\",\n  \"sergipana\": \"sergipan\",\n  \"sergipano\": \"sergipan\",\n  \"sergipe\": \"sergip\",\n  \"seria\": \"ser\",\n  \"séria\": \"sér\",\n  \"seriado\": \"seri\",\n  \"seriam\": \"ser\",\n  \"seriamente\": \"seri\",\n  \"sérias\": \"sér\",\n  \"série\": \"séri\",\n  \"seriedade\": \"seriedad\",\n  \"séries\": \"séri\",\n  \"seriíssima\": \"seriíssim\",\n  \"seringa\": \"sering\",\n  \"seringal\": \"seringal\",\n  \"sério\": \"séri\",\n  \"sérios\": \"séri\",\n  \"sermos\": \"serm\",\n  \"serotonina\": \"serotonin\",\n  \"serpente\": \"serpent\",\n  \"serpentes\": \"serpent\",\n  \"serra\": \"serr\",\n  \"serrado\": \"serr\",\n  \"serralheiro\": \"serralheir\",\n  \"serran\": \"serran\",\n  \"serrano\": \"serran\",\n  \"serrar\": \"serr\",\n  \"serraria\": \"serr\",\n  \"serrarias\": \"serr\",\n  \"sertaneja\": \"sertanej\",\n  \"sertanejo\": \"sertanej\",\n  \"sertanejos\": \"sertanej\",\n  \"sertão\": \"sertã\",\n  \"serve\": \"serv\",\n  \"servel\": \"servel\",\n  \"servem\": \"serv\",\n  \"servente\": \"servent\",\n  \"serventia\": \"servent\",\n  \"servi\": \"serv\",\n  \"servia\": \"serv\",\n  \"serviam\": \"serv\",\n  \"service\": \"servic\",\n  \"services\": \"servic\",\n  \"serviço\": \"servic\",\n  \"serviços\": \"servic\",\n  \"servida\": \"serv\",\n  \"servidas\": \"serv\",\n  \"servido\": \"serv\",\n  \"servidor\": \"servidor\",\n  \"servidores\": \"servidor\",\n  \"servidos\": \"serv\",\n  \"servindo\": \"serv\",\n  \"servir\": \"serv\",\n  \"servirá\": \"serv\",\n  \"serviram\": \"serv\",\n  \"servirem\": \"serv\",\n  \"serviu\": \"serv\",\n  \"sesi\": \"ses\",\n  \"sessa\": \"sess\",\n  \"sessão\": \"sessã\",\n  \"sessenta\": \"sessent\",\n  \"sesso\": \"sess\",\n  \"sessões\": \"sessõ\",\n  \"set\": \"set\",\n  \"sete\": \"set\",\n  \"setembro\": \"setembr\",\n  \"setenta\": \"setent\",\n  \"sétima\": \"sétim\",\n  \"sétimo\": \"sétim\",\n  \"setor\": \"setor\",\n  \"setores\": \"setor\",\n  \"setorialmente\": \"setorial\",\n  \"setorizada\": \"setoriz\",\n  \"sets\": \"sets\",\n  \"setti\": \"sett\",\n  \"seu\": \"seu\",\n  \"seus\": \"seus\",\n  \"sevcenko\": \"sevcenk\",\n  \"severa\": \"sev\",\n  \"severas\": \"sev\",\n  \"severidade\": \"sever\",\n  \"severina\": \"severin\",\n  \"severino\": \"severin\",\n  \"severo\": \"sever\",\n  \"sex\": \"sex\",\n  \"sexo\": \"sex\",\n  \"sexos\": \"sex\",\n  \"sexta\": \"sext\",\n  \"sextas\": \"sext\",\n  \"sexto\": \"sext\",\n  \"sexuais\": \"sexu\",\n  \"sexual\": \"sexual\",\n  \"sexualidade\": \"sexual\",\n  \"sexualmente\": \"sexual\",\n  \"sexy\": \"sexy\",\n  \"sfh\": \"sfh\",\n  \"shabazz\": \"shabazz\",\n  \"shabbaz\": \"shabbaz\",\n  \"shakespeare\": \"shakespear\",\n  \"shakira\": \"shak\",\n  \"shalikashvili\": \"shalikashvil\",\n  \"shalom\": \"shalom\",\n  \"sharon\": \"sharon\",\n  \"shattered\": \"shattered\",\n  \"shearer\": \"shear\",\n  \"sheik\": \"sheik\",\n  \"sheila\": \"sheil\",\n  \"sheldon\": \"sheldon\",\n  \"shell\": \"shell\",\n  \"shepard\": \"shepard\",\n  \"shikasho\": \"shikash\",\n  \"shimosaka\": \"shimosak\",\n  \"shirer\": \"shir\",\n  \"shirley\": \"shirley\",\n  \"shopping\": \"shopping\",\n  \"shoppings\": \"shoppings\",\n  \"short\": \"short\",\n  \"shortinhos\": \"shortinh\",\n  \"shorts\": \"shorts\",\n  \"show\": \"show\",\n  \"shows\": \"shows\",\n  \"si\": \"si\",\n  \"siamês\": \"siamês\",\n  \"siamesa\": \"siames\",\n  \"sião\": \"siã\",\n  \"sibéria\": \"sibér\",\n  \"siberianas\": \"siberian\",\n  \"sibutramina\": \"sibutramin\",\n  \"siciliani\": \"sicilian\",\n  \"sicrano\": \"sicran\",\n  \"sidaui\": \"sidau\",\n  \"side\": \"sid\",\n  \"sideral\": \"sideral\",\n  \"siderúrgica\": \"siderúrg\",\n  \"siderúrgicas\": \"siderúrg\",\n  \"sidnei\": \"sidn\",\n  \"sidney\": \"sidney\",\n  \"sido\": \"sid\",\n  \"sidrolândia\": \"sidrolând\",\n  \"siècle\": \"siècl\",\n  \"siegfried\": \"siegfried\",\n  \"sielma\": \"sielm\",\n  \"siena\": \"sien\",\n  \"sierra\": \"sierr\",\n  \"sífilis\": \"sífil\",\n  \"sig\": \"sig\",\n  \"siga\": \"sig\",\n  \"sigilo\": \"sigil\",\n  \"sigiloso\": \"sigil\",\n  \"sigilosos\": \"sigil\",\n  \"sigla\": \"sigl\",\n  \"sigmund\": \"sigmund\",\n  \"signatários\": \"signatári\",\n  \"signer\": \"sign\",\n  \"signes\": \"sign\",\n  \"significa\": \"signif\",\n  \"significado\": \"signific\",\n  \"significam\": \"signific\",\n  \"significante\": \"signific\",\n  \"significar\": \"signific\",\n  \"significarão\": \"signific\",\n  \"significaria\": \"signific\",\n  \"significasse\": \"signific\",\n  \"significativa\": \"signific\",\n  \"significativas\": \"signific\",\n  \"significativo\": \"signific\",\n  \"significativos\": \"signific\",\n  \"significava\": \"signific\",\n  \"significavam\": \"signific\",\n  \"significou\": \"signific\",\n  \"signifique\": \"signifiqu\",\n  \"signo\": \"sign\",\n  \"sigo\": \"sig\",\n  \"sigourney\": \"sigourney\",\n  \"sigulem\": \"sigul\",\n  \"sihanouk\": \"sihanouk\",\n  \"sikorsky\": \"sikorsky\",\n  \"silenciadas\": \"silenc\",\n  \"silenciar\": \"silenc\",\n  \"silenciarem\": \"silenc\",\n  \"silêncio\": \"silênci\",\n  \"silenciosa\": \"silenc\",\n  \"silenciosamente\": \"silenc\",\n  \"silencioso\": \"silenc\",\n  \"silhueta\": \"silhuet\",\n  \"silicone\": \"silicon\",\n  \"sillés\": \"sillés\",\n  \"silva\": \"silv\",\n  \"silvana\": \"silvan\",\n  \"silvania\": \"silvan\",\n  \"silvas\": \"silv\",\n  \"silveira\": \"silveir\",\n  \"silvério\": \"silvéri\",\n  \"silvestre\": \"silvestr\",\n  \"silvestres\": \"silvestr\",\n  \"silvia\": \"silv\",\n  \"sílvia\": \"sílv\",\n  \"silvino\": \"silvin\",\n  \"silvio\": \"silvi\",\n  \"sílvio\": \"sílvi\",\n  \"silviôô\": \"silviôô\",\n  \"sim\": \"sim\",\n  \"simancol\": \"simancol\",\n  \"simas\": \"sim\",\n  \"simbiótica\": \"simbiót\",\n  \"simbólica\": \"simból\",\n  \"simbólico\": \"simból\",\n  \"simbolismo\": \"simbol\",\n  \"simbolismos\": \"simbol\",\n  \"simboliza\": \"simboliz\",\n  \"símbolo\": \"símbol\",\n  \"símbolos\": \"símbol\",\n  \"simca\": \"simc\",\n  \"similar\": \"simil\",\n  \"similares\": \"simil\",\n  \"simla\": \"siml\",\n  \"simon\": \"simon\",\n  \"simón\": \"simón\",\n  \"simone\": \"simon\",\n  \"simonetti\": \"simonett\",\n  \"simonsen\": \"simonsen\",\n  \"simpatia\": \"simpat\",\n  \"simpatias\": \"simpat\",\n  \"simpática\": \"simpát\",\n  \"simpático\": \"simpát\",\n  \"simpatizante\": \"simpatiz\",\n  \"simpatizantes\": \"simpatiz\",\n  \"simpatizar\": \"simpatiz\",\n  \"simples\": \"simpl\",\n  \"simplesmente\": \"simples\",\n  \"simplicidade\": \"simplic\",\n  \"simplificação\": \"simplific\",\n  \"simplificações\": \"simplific\",\n  \"simplificador\": \"simplific\",\n  \"simplificados\": \"simplific\",\n  \"simplificam\": \"simplific\",\n  \"simplificou\": \"simplific\",\n  \"simplória\": \"simplór\",\n  \"simpósio\": \"simpósi\",\n  \"simpson\": \"simpson\",\n  \"simulação\": \"simul\",\n  \"simulações\": \"simul\",\n  \"simuladas\": \"simul\",\n  \"simulado\": \"simul\",\n  \"simulador\": \"simul\",\n  \"simuladores\": \"simul\",\n  \"simulando\": \"simul\",\n  \"simular\": \"simul\",\n  \"simulation\": \"simulation\",\n  \"simulou\": \"simul\",\n  \"simultânea\": \"simultân\",\n  \"simultaneamente\": \"simultan\",\n  \"simultâneas\": \"simultân\",\n  \"simultâneos\": \"simultân\",\n  \"sinagoga\": \"sinagog\",\n  \"sinagogas\": \"sinagog\",\n  \"sinais\": \"sin\",\n  \"sinal\": \"sinal\",\n  \"sinaliza\": \"sinaliz\",\n  \"sinalização\": \"sinaliz\",\n  \"sinalizador\": \"sinaliz\",\n  \"sinalizar\": \"sinaliz\",\n  \"sinalizaram\": \"sinaliz\",\n  \"sinalizava\": \"sinaliz\",\n  \"sinatra\": \"sinatr\",\n  \"sincera\": \"sinc\",\n  \"sinceramente\": \"sincer\",\n  \"sinceridade\": \"sincer\",\n  \"sincero\": \"sincer\",\n  \"sincopadas\": \"sincop\",\n  \"síncope\": \"síncop\",\n  \"sincretismo\": \"sincret\",\n  \"sincronizadas\": \"sincroniz\",\n  \"síndica\": \"síndic\",\n  \"sindical\": \"sindical\",\n  \"sindicalista\": \"sindical\",\n  \"sindicalistas\": \"sindical\",\n  \"sindicância\": \"sindic\",\n  \"sindicato\": \"sindicat\",\n  \"sindicatos\": \"sindicat\",\n  \"síndrome\": \"síndrom\",\n  \"síndromes\": \"síndrom\",\n  \"sinduscon\": \"sinduscon\",\n  \"sinergia\": \"sinerg\",\n  \"sines\": \"sin\",\n  \"sinfônica\": \"sinfôn\",\n  \"singela\": \"singel\",\n  \"singelas\": \"singel\",\n  \"singelo\": \"singel\",\n  \"singrando\": \"singr\",\n  \"singular\": \"singul\",\n  \"singulares\": \"singul\",\n  \"sinhá\": \"sinh\",\n  \"sinistra\": \"sinistr\",\n  \"sinistras\": \"sinistr\",\n  \"sinistro\": \"sinistr\",\n  \"sinistros\": \"sinistr\",\n  \"sinônimo\": \"sinônim\",\n  \"sinos\": \"sin\",\n  \"sinta\": \"sint\",\n  \"sintam\": \"sint\",\n  \"síntese\": \"síntes\",\n  \"sintética\": \"sintét\",\n  \"sintéticos\": \"sintét\",\n  \"sintetiza\": \"sintetiz\",\n  \"sintetizados\": \"sintetiz\",\n  \"sinto\": \"sint\",\n  \"sintofarma\": \"sintofarm\",\n  \"sintoma\": \"sintom\",\n  \"sintomas\": \"sintom\",\n  \"sintonia\": \"sinton\",\n  \"sintonizado\": \"sintoniz\",\n  \"sinval\": \"sinval\",\n  \"sion\": \"sion\",\n  \"siqueira\": \"siqueir\",\n  \"sir\": \"sir\",\n  \"sirene\": \"siren\",\n  \"sirenes\": \"siren\",\n  \"síria\": \"sír\",\n  \"sírio\": \"síri\",\n  \"sirotsky\": \"sirotsky\",\n  \"sirva\": \"sirv\",\n  \"sirvam\": \"sirv\",\n  \"sirvo\": \"sirv\",\n  \"sisal\": \"sisal\",\n  \"sisleide\": \"sisleid\",\n  \"sissi\": \"siss\",\n  \"sistel\": \"sistel\",\n  \"sistema\": \"sistem\",\n  \"sistemas\": \"sistem\",\n  \"sistemática\": \"sistemát\",\n  \"sistematicamente\": \"sistemat\",\n  \"sistemático\": \"sistemát\",\n  \"sisudamente\": \"sisud\",\n  \"sisudo\": \"sisud\",\n  \"sisudos\": \"sisud\",\n  \"site\": \"sit\",\n  \"sites\": \"sit\",\n  \"sítio\": \"síti\",\n  \"sítios\": \"síti\",\n  \"situa\": \"situ\",\n  \"situação\": \"situaçã\",\n  \"situações\": \"situaçõ\",\n  \"situada\": \"situ\",\n  \"situado\": \"situ\",\n  \"situados\": \"situ\",\n  \"situam\": \"situ\",\n  \"situar\": \"situ\",\n  \"situavam\": \"situ\",\n  \"sivam\": \"siv\",\n  \"six\": \"six\",\n  \"sizer\": \"siz\",\n  \"skank\": \"skank\",\n  \"skate\": \"skat\",\n  \"skatista\": \"skatist\",\n  \"skatistas\": \"skatist\",\n  \"ski\": \"ski\",\n  \"sky\": \"sky\",\n  \"slam\": \"slam\",\n  \"slava\": \"slav\",\n  \"sleeping\": \"sleeping\",\n  \"sloan\": \"sloan\",\n  \"slogan\": \"slogan\",\n  \"sm\": \"sm\",\n  \"smartwood\": \"smartwood\",\n  \"smashing\": \"smashing\",\n  \"smedt\": \"smedt\",\n  \"smeraldi\": \"smerald\",\n  \"smirnoff\": \"smirnoff\",\n  \"smith\": \"smith\",\n  \"smoke\": \"smok\",\n  \"smoking\": \"smoking\",\n  \"snea\": \"sne\",\n  \"sni\": \"sni\",\n  \"só\": \"só\",\n  \"soa\": \"soa\",\n  \"soam\": \"soam\",\n  \"soar\": \"soar\",\n  \"soares\": \"soar\",\n  \"soáres\": \"soár\",\n  \"soárez\": \"soárez\",\n  \"soava\": \"soav\",\n  \"soavam\": \"soav\",\n  \"sob\": \"sob\",\n  \"sobe\": \"sob\",\n  \"sobem\": \"sob\",\n  \"soberania\": \"soberan\",\n  \"soberano\": \"soberan\",\n  \"soberba\": \"soberb\",\n  \"soberbo\": \"soberb\",\n  \"soboreava\": \"sobor\",\n  \"sobra\": \"sobr\",\n  \"sobrado\": \"sobr\",\n  \"sobram\": \"sobr\",\n  \"sobrancelhas\": \"sobrancelh\",\n  \"sobrando\": \"sobr\",\n  \"sobrar\": \"sobr\",\n  \"sobraram\": \"sobr\",\n  \"sobras\": \"sobr\",\n  \"sobre\": \"sobr\",\n  \"sobreaviso\": \"sobreavis\",\n  \"sobrecarga\": \"sobrecarg\",\n  \"sobrecarrega\": \"sobrecarreg\",\n  \"sobrecarregada\": \"sobrecarreg\",\n  \"sobremesa\": \"sobremes\",\n  \"sobrenatural\": \"sobrenatural\",\n  \"sobrenome\": \"sobrenom\",\n  \"sobrenomes\": \"sobrenom\",\n  \"sobrepõem\": \"sobrepõ\",\n  \"sobrepor\": \"sobrepor\",\n  \"sobrepuja\": \"sobrepuj\",\n  \"sobressai\": \"sobressa\",\n  \"sobressaiu\": \"sobressa\",\n  \"sobressalto\": \"sobressalt\",\n  \"sobressaltos\": \"sobressalt\",\n  \"sobretudo\": \"sobretud\",\n  \"sobrevalorização\": \"sobrevaloriz\",\n  \"sobrevém\": \"sobrevém\",\n  \"sobrevida\": \"sobrev\",\n  \"sobrevive\": \"sobreviv\",\n  \"sobrevivem\": \"sobreviv\",\n  \"sobrevivência\": \"sobrevivent\",\n  \"sobrevivendo\": \"sobreviv\",\n  \"sobrevivente\": \"sobrevivent\",\n  \"sobreviventes\": \"sobrevivent\",\n  \"sobreviver\": \"sobreviv\",\n  \"sobreviveram\": \"sobreviv\",\n  \"sobreviverão\": \"sobreviv\",\n  \"sobrevivessem\": \"sobreviv\",\n  \"sobreviveu\": \"sobreviv\",\n  \"sobrevivi\": \"sobreviv\",\n  \"sobrevivido\": \"sobreviv\",\n  \"sobrevoado\": \"sobrevo\",\n  \"sobrevoando\": \"sobrevo\",\n  \"sobrevoava\": \"sobrevo\",\n  \"sobrevoe\": \"sobrevo\",\n  \"sóbrias\": \"sóbr\",\n  \"sobrinha\": \"sobrinh\",\n  \"sobrinhas\": \"sobrinh\",\n  \"sobrinho\": \"sobrinh\",\n  \"sobrinhos\": \"sobrinh\",\n  \"sóbrios\": \"sóbri\",\n  \"sobrou\": \"sobr\",\n  \"soccer\": \"socc\",\n  \"sochaczewski\": \"sochaczewsk\",\n  \"sócia\": \"sóc\",\n  \"sociais\": \"soc\",\n  \"social\": \"social\",\n  \"socialismo\": \"social\",\n  \"socialista\": \"social\",\n  \"socialistas\": \"social\",\n  \"socialite\": \"socialit\",\n  \"socialites\": \"socialit\",\n  \"socializantes\": \"socializ\",\n  \"socialmente\": \"social\",\n  \"sócias\": \"sóc\",\n  \"sociável\": \"sociável\",\n  \"sociedade\": \"sociedad\",\n  \"sociedades\": \"sociedad\",\n  \"society\": \"society\",\n  \"sócio\": \"sóci\",\n  \"socióloga\": \"sociólog\",\n  \"sociologava\": \"sociolog\",\n  \"sociologia\": \"sociolog\",\n  \"sociológico\": \"sociológ\",\n  \"sociólogo\": \"sociólog\",\n  \"sociólogos\": \"sociólog\",\n  \"sócios\": \"sóci\",\n  \"socorrer\": \"socorr\",\n  \"socorrerá\": \"socorr\",\n  \"socorreu\": \"socorr\",\n  \"socorro\": \"socorr\",\n  \"socos\": \"soc\",\n  \"sócrates\": \"sócrat\",\n  \"sódio\": \"sódi\",\n  \"sodré\": \"sodr\",\n  \"soe\": \"soe\",\n  \"soeltl\": \"soeltl\",\n  \"soeur\": \"soeur\",\n  \"sofá\": \"sof\",\n  \"sofás\": \"sofás\",\n  \"sofazão\": \"sofazã\",\n  \"sofia\": \"sof\",\n  \"sofisticação\": \"sofistic\",\n  \"sofisticada\": \"sofistic\",\n  \"sofisticadas\": \"sofistic\",\n  \"sofisticado\": \"sofistic\",\n  \"sofisticados\": \"sofistic\",\n  \"sofisticar\": \"sofistic\",\n  \"sofra\": \"sofr\",\n  \"sofre\": \"sofr\",\n  \"sofrem\": \"sofr\",\n  \"sofrendo\": \"sofr\",\n  \"sofrer\": \"sofr\",\n  \"sofrera\": \"sofr\",\n  \"sofrerá\": \"sofr\",\n  \"sofreram\": \"sofr\",\n  \"sofrerão\": \"sofr\",\n  \"sofreria\": \"sofr\",\n  \"sofreu\": \"sofr\",\n  \"sofri\": \"sofr\",\n  \"sofria\": \"sofr\",\n  \"sofrida\": \"sofr\",\n  \"sofridas\": \"sofr\",\n  \"sofrido\": \"sofr\",\n  \"sofrimento\": \"sofriment\",\n  \"sofrimentos\": \"sofriment\",\n  \"sofro\": \"sofr\",\n  \"software\": \"softwar\",\n  \"softwares\": \"softw\",\n  \"sogro\": \"sogr\",\n  \"soja\": \"soj\",\n  \"sol\": \"sol\",\n  \"sola\": \"sol\",\n  \"solados\": \"sol\",\n  \"solange\": \"solang\",\n  \"solano\": \"solan\",\n  \"solar\": \"sol\",\n  \"solarização\": \"solariz\",\n  \"soldadesca\": \"soldadesc\",\n  \"soldado\": \"sold\",\n  \"soldador\": \"soldador\",\n  \"soldados\": \"sold\",\n  \"soldar\": \"sold\",\n  \"soledade\": \"soledad\",\n  \"soleira\": \"soleir\",\n  \"solenidade\": \"solen\",\n  \"soletto\": \"solett\",\n  \"solicita\": \"solicit\",\n  \"solicitação\": \"solicit\",\n  \"solicitado\": \"solicit\",\n  \"solicitando\": \"solicit\",\n  \"solicitava\": \"solicit\",\n  \"solicite\": \"solicit\",\n  \"solicitei\": \"solicit\",\n  \"solicitou\": \"solicit\",\n  \"sólida\": \"sól\",\n  \"solidamente\": \"solid\",\n  \"solidão\": \"solidã\",\n  \"solidária\": \"solidár\",\n  \"solidariedade\": \"solidariedad\",\n  \"sólidas\": \"sól\",\n  \"solidez\": \"solidez\",\n  \"sólido\": \"sól\",\n  \"sólidos\": \"sól\",\n  \"solitária\": \"solitár\",\n  \"solitárias\": \"solitár\",\n  \"solitário\": \"solitári\",\n  \"solitários\": \"solitári\",\n  \"solo\": \"sol\",\n  \"solow\": \"solow\",\n  \"solstícios\": \"solstíci\",\n  \"solta\": \"solt\",\n  \"soltam\": \"solt\",\n  \"soltar\": \"solt\",\n  \"soltava\": \"solt\",\n  \"solteira\": \"solteir\",\n  \"solteiríssima\": \"solteiríssim\",\n  \"solteiro\": \"solteir\",\n  \"soltl\": \"soltl\",\n  \"solto\": \"solt\",\n  \"soltos\": \"solt\",\n  \"soltou\": \"solt\",\n  \"solução\": \"soluçã\",\n  \"solucionar\": \"solucion\",\n  \"soluções\": \"soluçõ\",\n  \"solventes\": \"solvent\",\n  \"som\": \"som\",\n  \"soma\": \"som\",\n  \"somadas\": \"som\",\n  \"somado\": \"som\",\n  \"somados\": \"som\",\n  \"somam\": \"som\",\n  \"somando\": \"som\",\n  \"somar\": \"som\",\n  \"somariam\": \"som\",\n  \"somarmos\": \"som\",\n  \"somavam\": \"som\",\n  \"sombra\": \"sombr\",\n  \"sombras\": \"sombr\",\n  \"sombrias\": \"sombr\",\n  \"some\": \"som\",\n  \"somente\": \"soment\",\n  \"sommelier\": \"sommeli\",\n  \"sommeliers\": \"sommeliers\",\n  \"somos\": \"som\",\n  \"somou\": \"som\",\n  \"son\": \"son\",\n  \"sonda\": \"sond\",\n  \"sondas\": \"sond\",\n  \"sonegação\": \"soneg\",\n  \"sonegada\": \"soneg\",\n  \"sonegadas\": \"soneg\",\n  \"songbooks\": \"songbooks\",\n  \"sonha\": \"sonh\",\n  \"sonhada\": \"sonh\",\n  \"sonham\": \"sonh\",\n  \"sonhando\": \"sonh\",\n  \"sonhar\": \"sonh\",\n  \"sonhava\": \"sonh\",\n  \"sonho\": \"sonh\",\n  \"sonhos\": \"sonh\",\n  \"sonhou\": \"sonh\",\n  \"sonia\": \"son\",\n  \"sônia\": \"sôn\",\n  \"sono\": \"son\",\n  \"sonolência\": \"sonolent\",\n  \"sonora\": \"sonor\",\n  \"sonoridades\": \"sonor\",\n  \"sonoro\": \"sonor\",\n  \"sonoros\": \"sonor\",\n  \"sonoterapia\": \"sonoterap\",\n  \"sons\": \"sons\",\n  \"soou\": \"soou\",\n  \"sopa\": \"sop\",\n  \"sopão\": \"sopã\",\n  \"sophia\": \"soph\",\n  \"soprano\": \"sopran\",\n  \"sopranos\": \"sopran\",\n  \"sopro\": \"sopr\",\n  \"soraya\": \"soray\",\n  \"sorbonne\": \"sorbonn\",\n  \"soriano\": \"sorian\",\n  \"sorima\": \"sorim\",\n  \"sorine\": \"sorin\",\n  \"soro\": \"sor\",\n  \"sorocaba\": \"sorocab\",\n  \"soropositivas\": \"soroposit\",\n  \"soropositivo\": \"soroposit\",\n  \"soropositivos\": \"soroposit\",\n  \"sorrah\": \"sorrah\",\n  \"sorrateiramente\": \"sorrateir\",\n  \"sorrenti\": \"sorrent\",\n  \"sorri\": \"sorr\",\n  \"sorria\": \"sorr\",\n  \"sorridente\": \"sorrident\",\n  \"sorridentes\": \"sorrident\",\n  \"sorrindo\": \"sorr\",\n  \"sorriso\": \"sorris\",\n  \"sorrisos\": \"sorris\",\n  \"sorte\": \"sort\",\n  \"sorteado\": \"sort\",\n  \"sorteando\": \"sort\",\n  \"sorteia\": \"sort\",\n  \"sorteio\": \"sortei\",\n  \"sorteios\": \"sortei\",\n  \"sorvete\": \"sorvet\",\n  \"sorveteria\": \"sorvet\",\n  \"sos\": \"sos\",\n  \"sós\": \"sós\",\n  \"sossegadamente\": \"sosseg\",\n  \"sossegadas\": \"sosseg\",\n  \"sossegado\": \"sosseg\",\n  \"sossego\": \"sosseg\",\n  \"sotaque\": \"sotaqu\",\n  \"soterrado\": \"soterr\",\n  \"soto\": \"sot\",\n  \"sotto\": \"sott\",\n  \"sou\": \"sou\",\n  \"soube\": \"soub\",\n  \"souber\": \"soub\",\n  \"souberam\": \"soub\",\n  \"souberem\": \"soub\",\n  \"soubesse\": \"soub\",\n  \"soul\": \"soul\",\n  \"sound\": \"sound\",\n  \"sourcing\": \"sourcing\",\n  \"sousa\": \"sous\",\n  \"south\": \"south\",\n  \"souto\": \"sout\",\n  \"souvenirs\": \"souvenirs\",\n  \"souza\": \"souz\",\n  \"soviética\": \"soviét\",\n  \"soviéticas\": \"soviét\",\n  \"soviético\": \"soviét\",\n  \"soviéticos\": \"soviét\",\n  \"soyuz\": \"soyuz\",\n  \"sozinha\": \"sozinh\",\n  \"sozinhas\": \"sozinh\",\n  \"sozinho\": \"sozinh\",\n  \"sozinhos\": \"sozinh\",\n  \"sp\": \"sp\",\n  \"spa\": \"spa\",\n  \"spandau\": \"spandau\",\n  \"spanish\": \"spanish\",\n  \"specialty\": \"specialty\",\n  \"specific\": \"specific\",\n  \"spectr\": \"spectr\",\n  \"spielberg\": \"spielberg\",\n  \"spinosa\": \"spinos\",\n  \"spinto\": \"spint\",\n  \"spiritual\": \"spiritual\",\n  \"spiti\": \"spit\",\n  \"spitzer\": \"spitz\",\n  \"sport\": \"sport\",\n  \"sportszone\": \"sportszon\",\n  \"spray\": \"spray\",\n  \"squandered\": \"squandered\",\n  \"squibb\": \"squibb\",\n  \"sr\": \"sr\",\n  \"sra\": \"sra\",\n  \"srougi\": \"sroug\",\n  \"sroulevitch\": \"sroulevitch\",\n  \"sser\": \"sser\",\n  \"staff\": \"staff\",\n  \"stalin\": \"stalin\",\n  \"stalinista\": \"stalin\",\n  \"stalking\": \"stalking\",\n  \"stamey\": \"stamey\",\n  \"standish\": \"standish\",\n  \"stanford\": \"stanford\",\n  \"stanislaw\": \"stanislaw\",\n  \"stanley\": \"stanley\",\n  \"stanovnik\": \"stanovnik\",\n  \"stanton\": \"stanton\",\n  \"star\": \"star\",\n  \"starling\": \"starling\",\n  \"stasi\": \"stas\",\n  \"state\": \"stat\",\n  \"status\": \"status\",\n  \"steam\": \"ste\",\n  \"stefano\": \"stefan\",\n  \"steffi\": \"steff\",\n  \"stein\": \"stein\",\n  \"steinbruch\": \"steinbruch\",\n  \"steiner\": \"stein\",\n  \"stella\": \"stell\",\n  \"stephanes\": \"stephan\",\n  \"stephanie\": \"stephani\",\n  \"stephen\": \"stephen\",\n  \"sterne\": \"stern\",\n  \"steven\": \"steven\",\n  \"stevie\": \"stevi\",\n  \"stewart\": \"stewart\",\n  \"stf\": \"stf\",\n  \"stich\": \"stich\",\n  \"sto\": \"sto\",\n  \"stoliar\": \"stoli\",\n  \"stone\": \"ston\",\n  \"stones\": \"ston\",\n  \"stonewall\": \"stonewall\",\n  \"storehouse\": \"storehous\",\n  \"strassmann\": \"strassmann\",\n  \"strategy\": \"strategy\",\n  \"street\": \"street\",\n  \"stress\": \"stress\",\n  \"strip\": \"strip\",\n  \"striptease\": \"stripteas\",\n  \"stripteaser\": \"stripteas\",\n  \"struckert\": \"struckert\",\n  \"stuart\": \"stuart\",\n  \"stuckert\": \"stuckert\",\n  \"studio\": \"studi\",\n  \"studios\": \"studi\",\n  \"stupas\": \"stup\",\n  \"sua\": \"sua\",\n  \"suadas\": \"suad\",\n  \"suar\": \"suar\",\n  \"suas\": \"suas\",\n  \"suassuna\": \"suassun\",\n  \"suavam\": \"suav\",\n  \"suave\": \"suav\",\n  \"suaves\": \"suav\",\n  \"suavizou\": \"suaviz\",\n  \"sub\": \"sub\",\n  \"subatômica\": \"subatôm\",\n  \"subdesenvolvimento\": \"subdesenvolv\",\n  \"subempregadas\": \"subempreg\",\n  \"subestima\": \"subestim\",\n  \"subestimado\": \"subestim\",\n  \"subgerente\": \"subgerent\",\n  \"subgrupos\": \"subgrup\",\n  \"subi\": \"sub\",\n  \"subia\": \"sub\",\n  \"subiam\": \"sub\",\n  \"subida\": \"sub\",\n  \"subidas\": \"sub\",\n  \"subindo\": \"sub\",\n  \"subir\": \"sub\",\n  \"subiram\": \"sub\",\n  \"subiria\": \"sub\",\n  \"subisse\": \"sub\",\n  \"súbita\": \"súbit\",\n  \"subitamente\": \"subit\",\n  \"súbitas\": \"súbit\",\n  \"súbito\": \"súbit\",\n  \"subiu\": \"sub\",\n  \"subjetiva\": \"subjet\",\n  \"subjetivo\": \"subjet\",\n  \"subjugou\": \"subjug\",\n  \"submarino\": \"submarin\",\n  \"submarinos\": \"submarin\",\n  \"submergente\": \"submergent\",\n  \"submersa\": \"submers\",\n  \"submete\": \"submet\",\n  \"submetê\": \"submet\",\n  \"submetem\": \"submet\",\n  \"submeter\": \"submet\",\n  \"submeteria\": \"submet\",\n  \"submetida\": \"submet\",\n  \"submetidas\": \"submet\",\n  \"submetido\": \"submet\",\n  \"submetidos\": \"submet\",\n  \"submisso\": \"submiss\",\n  \"submundo\": \"submund\",\n  \"subnutrido\": \"subnutr\",\n  \"subordinação\": \"subordin\",\n  \"subordinadas\": \"subordin\",\n  \"subordinado\": \"subordin\",\n  \"subordinados\": \"subordin\",\n  \"subornado\": \"suborn\",\n  \"subornando\": \"suborn\",\n  \"subornavam\": \"suborn\",\n  \"suborno\": \"suborn\",\n  \"subprocurador\": \"subprocur\",\n  \"subprodutos\": \"subprodut\",\n  \"subrahmanyan\": \"subrahmanyan\",\n  \"subsidia\": \"subsid\",\n  \"subsidiado\": \"subsidi\",\n  \"subsidiados\": \"subsidi\",\n  \"subsidiária\": \"subsidiár\",\n  \"subsídios\": \"subsídi\",\n  \"subsistem\": \"subsist\",\n  \"subsistência\": \"subsistent\",\n  \"subsolos\": \"subsol\",\n  \"substância\": \"substânc\",\n  \"substancial\": \"substancial\",\n  \"substancialmente\": \"substancial\",\n  \"substâncias\": \"substânc\",\n  \"substantivos\": \"substant\",\n  \"substituem\": \"substitu\",\n  \"substitui\": \"substitu\",\n  \"substituí\": \"substitu\",\n  \"substituição\": \"substituiçã\",\n  \"substituída\": \"substituíd\",\n  \"substituídas\": \"substituíd\",\n  \"substituído\": \"substituíd\",\n  \"substituídos\": \"substituíd\",\n  \"substituindo\": \"substitu\",\n  \"substituir\": \"substitu\",\n  \"substituíram\": \"substituír\",\n  \"substituiu\": \"substitu\",\n  \"substituta\": \"substitut\",\n  \"substitutivo\": \"substitut\",\n  \"substituto\": \"substitut\",\n  \"substitutos\": \"substitut\",\n  \"subterfúgios\": \"subterfúgi\",\n  \"subterrânea\": \"subterrân\",\n  \"subterrâneas\": \"subterrân\",\n  \"subtrai\": \"subtra\",\n  \"subunidades\": \"subun\",\n  \"suburbana\": \"suburban\",\n  \"suburbano\": \"suburban\",\n  \"subúrbio\": \"subúrbi\",\n  \"subvencionado\": \"subvencion\",\n  \"subvenções\": \"subvençõ\",\n  \"subversão\": \"subversã\",\n  \"subversivas\": \"subvers\",\n  \"subversivo\": \"subvers\",\n  \"subvertendo\": \"subvert\",\n  \"sucata\": \"sucat\",\n  \"sucatas\": \"sucat\",\n  \"sucateados\": \"sucat\",\n  \"sucateia\": \"sucat\",\n  \"sucede\": \"suced\",\n  \"sucedê\": \"suced\",\n  \"sucedem\": \"suced\",\n  \"suceder\": \"suced\",\n  \"sucederam\": \"suced\",\n  \"sucedeu\": \"suced\",\n  \"sucedida\": \"suced\",\n  \"sucedidas\": \"suced\",\n  \"sucedido\": \"suced\",\n  \"sucedidos\": \"suced\",\n  \"sucessão\": \"sucessã\",\n  \"sucessivas\": \"sucess\",\n  \"sucessivos\": \"sucess\",\n  \"sucesso\": \"sucess\",\n  \"sucessor\": \"sucessor\",\n  \"sucessora\": \"sucessor\",\n  \"sucessores\": \"sucessor\",\n  \"sucessória\": \"sucessór\",\n  \"sucessórios\": \"sucessóri\",\n  \"sucessos\": \"sucess\",\n  \"suco\": \"suc\",\n  \"sucos\": \"suc\",\n  \"suculento\": \"suculent\",\n  \"sucumbe\": \"sucumb\",\n  \"sucumbiu\": \"sucumb\",\n  \"sucursais\": \"sucurs\",\n  \"sudam\": \"sud\",\n  \"sudameris\": \"sudamer\",\n  \"sudão\": \"sudã\",\n  \"sudeste\": \"sud\",\n  \"súditos\": \"súdit\",\n  \"sudoeste\": \"sudo\",\n  \"sueca\": \"suec\",\n  \"suécia\": \"suéc\",\n  \"sueco\": \"suec\",\n  \"suecos\": \"suec\",\n  \"sued\": \"sued\",\n  \"suelen\": \"suelen\",\n  \"sueli\": \"suel\",\n  \"suely\": \"suely\",\n  \"suficiente\": \"suficient\",\n  \"suficientemente\": \"suficient\",\n  \"suficientes\": \"suficient\",\n  \"sufixos\": \"sufix\",\n  \"sufocante\": \"sufoc\",\n  \"sufocar\": \"sufoc\",\n  \"sufoco\": \"sufoc\",\n  \"suframa\": \"sufram\",\n  \"sugadas\": \"sug\",\n  \"sugadoras\": \"sugador\",\n  \"sugar\": \"sug\",\n  \"sugere\": \"suger\",\n  \"sugerem\": \"sug\",\n  \"sugeri\": \"suger\",\n  \"sugerido\": \"suger\",\n  \"sugerindo\": \"suger\",\n  \"sugerir\": \"suger\",\n  \"sugeriram\": \"suger\",\n  \"sugeriu\": \"suger\",\n  \"sugestão\": \"sugestã\",\n  \"sugestivas\": \"sugest\",\n  \"sugestivo\": \"sugest\",\n  \"sugestões\": \"sugestõ\",\n  \"suggs\": \"suggs\",\n  \"sugiro\": \"sugir\",\n  \"sui\": \"sui\",\n  \"suíça\": \"suíc\",\n  \"suicida\": \"suic\",\n  \"suicidado\": \"suicid\",\n  \"suicidar\": \"suicid\",\n  \"suicidaria\": \"suicid\",\n  \"suicidei\": \"suicid\",\n  \"suicídio\": \"suicídi\",\n  \"suicídios\": \"suicídi\",\n  \"suicidou\": \"suicid\",\n  \"suíço\": \"suíc\",\n  \"suingue\": \"suing\",\n  \"suíte\": \"suít\",\n  \"suítes\": \"suít\",\n  \"suja\": \"suj\",\n  \"sujas\": \"suj\",\n  \"sujeira\": \"sujeir\",\n  \"sujeiras\": \"sujeir\",\n  \"sujeita\": \"sujeit\",\n  \"sujeitas\": \"sujeit\",\n  \"sujeito\": \"sujeit\",\n  \"sujeitos\": \"sujeit\",\n  \"sujo\": \"suj\",\n  \"sujou\": \"suj\",\n  \"sul\": \"sul\",\n  \"sulcado\": \"sulc\",\n  \"suleiman\": \"suleiman\",\n  \"sulêra\": \"sulêr\",\n  \"sulistas\": \"sulist\",\n  \"sultão\": \"sultã\",\n  \"sultões\": \"sultõ\",\n  \"suma\": \"sum\",\n  \"sumárias\": \"sumár\",\n  \"sumiço\": \"sumic\",\n  \"sumiços\": \"sumic\",\n  \"sumidade\": \"sumidad\",\n  \"sumido\": \"sum\",\n  \"sumindo\": \"sum\",\n  \"sumir\": \"sum\",\n  \"sumira\": \"sum\",\n  \"sumiram\": \"sum\",\n  \"sumiu\": \"sum\",\n  \"summersby\": \"summersby\",\n  \"sun\": \"sun\",\n  \"sundae\": \"sunda\",\n  \"sunday\": \"sunday\",\n  \"sunga\": \"sung\",\n  \"suntuoso\": \"suntuos\",\n  \"suntuosos\": \"suntuos\",\n  \"suor\": \"suor\",\n  \"super\": \"sup\",\n  \"supera\": \"sup\",\n  \"superada\": \"super\",\n  \"superado\": \"super\",\n  \"superalimentação\": \"superaliment\",\n  \"superam\": \"sup\",\n  \"superando\": \"super\",\n  \"superar\": \"super\",\n  \"superaram\": \"super\",\n  \"superavitários\": \"superavitári\",\n  \"superbuble\": \"superbubl\",\n  \"supercerto\": \"supercert\",\n  \"superchateado\": \"superchat\",\n  \"superchique\": \"superchiqu\",\n  \"supercílio\": \"supercíli\",\n  \"supercola\": \"supercol\",\n  \"supercomputadores\": \"supercomput\",\n  \"supere\": \"super\",\n  \"superespecialização\": \"superespecializ\",\n  \"superespião\": \"superespiã\",\n  \"superesquema\": \"superesquem\",\n  \"superestimar\": \"superestim\",\n  \"superestimular\": \"superestimul\",\n  \"superestímulos\": \"superestímul\",\n  \"superexposição\": \"superexposiçã\",\n  \"superfaturamento\": \"superfatur\",\n  \"superfaturar\": \"superfatur\",\n  \"superfeliz\": \"superfeliz\",\n  \"superficiais\": \"superfic\",\n  \"superficial\": \"superficial\",\n  \"superfície\": \"superfíc\",\n  \"supérfluo\": \"supérflu\",\n  \"superintendência\": \"superintendent\",\n  \"superintendências\": \"superintendent\",\n  \"superintendente\": \"superintendent\",\n  \"superinteressante\": \"superinteress\",\n  \"superior\": \"superior\",\n  \"superiores\": \"superior\",\n  \"superioridade\": \"superior\",\n  \"superjogo\": \"superjog\",\n  \"superlaminada\": \"superlamin\",\n  \"superloja\": \"superloj\",\n  \"superlotação\": \"superlot\",\n  \"superlotada\": \"superlot\",\n  \"superman\": \"superman\",\n  \"supermercado\": \"supermerc\",\n  \"supermercados\": \"supermerc\",\n  \"supernormal\": \"supernormal\",\n  \"superou\": \"super\",\n  \"superpopulação\": \"superpopul\",\n  \"superpopulosa\": \"superpopul\",\n  \"superpotências\": \"superpotent\",\n  \"supersônicos\": \"supersôn\",\n  \"superstição\": \"superstiçã\",\n  \"supersticioso\": \"superstic\",\n  \"superternos\": \"supertern\",\n  \"supervisão\": \"supervisã\",\n  \"supervisionados\": \"supervision\",\n  \"supervisor\": \"supervisor\",\n  \"suplemento\": \"suplement\",\n  \"supletivo\": \"suplet\",\n  \"suplício\": \"suplíci\",\n  \"suplicy\": \"suplicy\",\n  \"supõe\": \"supõ\",\n  \"supõem\": \"supõ\",\n  \"supor\": \"supor\",\n  \"suporta\": \"suport\",\n  \"suportam\": \"suport\",\n  \"suportar\": \"suport\",\n  \"suporte\": \"suport\",\n  \"suportou\": \"suport\",\n  \"suposição\": \"suposiçã\",\n  \"suposta\": \"supost\",\n  \"supostamente\": \"supost\",\n  \"supostas\": \"supost\",\n  \"suposto\": \"supost\",\n  \"supostos\": \"supost\",\n  \"supra\": \"supr\",\n  \"suprema\": \"suprem\",\n  \"supremacia\": \"supremac\",\n  \"supremo\": \"suprem\",\n  \"supressão\": \"supressã\",\n  \"suprida\": \"supr\",\n  \"supridores\": \"supridor\",\n  \"suprimento\": \"supriment\",\n  \"suprimentos\": \"supriment\",\n  \"suprimir\": \"suprim\",\n  \"suprir\": \"supr\",\n  \"supusesse\": \"supus\",\n  \"surda\": \"surd\",\n  \"surdo\": \"surd\",\n  \"surdos\": \"surd\",\n  \"surf\": \"surf\",\n  \"surfam\": \"surf\",\n  \"surfar\": \"surf\",\n  \"surfe\": \"surf\",\n  \"surfista\": \"surfist\",\n  \"surfistas\": \"surfist\",\n  \"surge\": \"surg\",\n  \"surgem\": \"surg\",\n  \"surgia\": \"surg\",\n  \"surgiam\": \"surg\",\n  \"surgido\": \"surg\",\n  \"surgimento\": \"surgiment\",\n  \"surgindo\": \"surg\",\n  \"surgir\": \"surg\",\n  \"surgirá\": \"surg\",\n  \"surgiram\": \"surg\",\n  \"surgirão\": \"surg\",\n  \"surgisse\": \"surg\",\n  \"surgiu\": \"surg\",\n  \"suriname\": \"surinam\",\n  \"surja\": \"surj\",\n  \"surjam\": \"surj\",\n  \"surpreende\": \"surpreend\",\n  \"surpreendem\": \"surpreend\",\n  \"surpreendendo\": \"surpreend\",\n  \"surpreendente\": \"surpreendent\",\n  \"surpreendentemente\": \"surpreendent\",\n  \"surpreendentes\": \"surpreendent\",\n  \"surpreender\": \"surpreend\",\n  \"surpreendeu\": \"surpreend\",\n  \"surpreendida\": \"surpreend\",\n  \"surpreendidas\": \"surpreend\",\n  \"surpreendido\": \"surpreend\",\n  \"surpresa\": \"surpres\",\n  \"surpresas\": \"surpres\",\n  \"surpreso\": \"surpres\",\n  \"surpresos\": \"surpres\",\n  \"surra\": \"surr\",\n  \"surradas\": \"surr\",\n  \"surreal\": \"surreal\",\n  \"surrealismo\": \"surreal\",\n  \"surrealista\": \"surreal\",\n  \"surrealistas\": \"surreal\",\n  \"surrupiando\": \"surrupi\",\n  \"sursis\": \"surs\",\n  \"surtem\": \"surt\",\n  \"surtiam\": \"surt\",\n  \"surtir\": \"surt\",\n  \"surtiram\": \"surt\",\n  \"surtiu\": \"surt\",\n  \"surto\": \"surt\",\n  \"suruagy\": \"suruagy\",\n  \"suruba\": \"surub\",\n  \"survival\": \"survival\",\n  \"surviving\": \"surviving\",\n  \"sus\": \"sus\",\n  \"susanna\": \"susann\",\n  \"susanne\": \"susann\",\n  \"susbstituindo\": \"susbstitu\",\n  \"suscetibilidades\": \"suscetibil\",\n  \"suscetíveis\": \"suscetív\",\n  \"suscetível\": \"suscet\",\n  \"suscitam\": \"suscit\",\n  \"suscitar\": \"suscit\",\n  \"suscitaram\": \"suscit\",\n  \"suspeição\": \"suspeiçã\",\n  \"suspeita\": \"suspeit\",\n  \"suspeitam\": \"suspeit\",\n  \"suspeitaram\": \"suspeit\",\n  \"suspeitas\": \"suspeit\",\n  \"suspeitasse\": \"suspeit\",\n  \"suspeitava\": \"suspeit\",\n  \"suspeitíssimas\": \"suspeitíssim\",\n  \"suspeito\": \"suspeit\",\n  \"suspeitos\": \"suspeit\",\n  \"suspeitou\": \"suspeit\",\n  \"suspende\": \"suspend\",\n  \"suspendendo\": \"suspend\",\n  \"suspender\": \"suspend\",\n  \"suspenderiam\": \"suspend\",\n  \"suspendeu\": \"suspend\",\n  \"suspensa\": \"suspens\",\n  \"suspensão\": \"suspensã\",\n  \"suspense\": \"suspens\",\n  \"suspenso\": \"suspens\",\n  \"suspensos\": \"suspens\",\n  \"suspira\": \"susp\",\n  \"suspiravam\": \"suspir\",\n  \"susskind\": \"susskind\",\n  \"sustenta\": \"sustent\",\n  \"sustentação\": \"sustent\",\n  \"sustentada\": \"sustent\",\n  \"sustentado\": \"sustent\",\n  \"sustentados\": \"sustent\",\n  \"sustentam\": \"sustent\",\n  \"sustentar\": \"sustent\",\n  \"sustentasse\": \"sustent\",\n  \"sustentava\": \"sustent\",\n  \"sustentavam\": \"sustent\",\n  \"sustentáveis\": \"sustent\",\n  \"sustento\": \"sustent\",\n  \"sustentou\": \"sustent\",\n  \"susto\": \"sust\",\n  \"sustos\": \"sust\",\n  \"sutiã\": \"sutiã\",\n  \"sutiãs\": \"sutiãs\",\n  \"sutil\": \"sutil\",\n  \"sutilezas\": \"sutil\",\n  \"sutilmente\": \"sutil\",\n  \"sutis\": \"sut\",\n  \"suvenires\": \"suven\",\n  \"suzana\": \"suzan\",\n  \"suzanna\": \"suzann\",\n  \"suzano\": \"suzan\",\n  \"suzerley\": \"suzerley\",\n  \"suzuki\": \"suzuk\",\n  \"suzy\": \"suzy\",\n  \"sw\": \"sw\",\n  \"swissair\": \"swissa\",\n  \"swissbank\": \"swissbank\",\n  \"sydney\": \"sydney\",\n  \"sylviane\": \"sylvian\",\n  \"synval\": \"synval\",\n  \"system\": \"system\",\n  \"szabó\": \"szab\",\n  \"szpilman\": \"szpilman\",\n  \"szwarc\": \"szwarc\",\n  \"t\": \"t\",\n  \"tá\": \"tá\",\n  \"tabacaria\": \"tabac\",\n  \"tabaco\": \"tabac\",\n  \"tabela\": \"tabel\",\n  \"tabelas\": \"tabel\",\n  \"tabeliã\": \"tabeliã\",\n  \"tabeliães\": \"tabeliã\",\n  \"tabelião\": \"tabeliã\",\n  \"tabelinha\": \"tabelinh\",\n  \"tabelionato\": \"tabelionat\",\n  \"tablado\": \"tabl\",\n  \"tablados\": \"tabl\",\n  \"tablóide\": \"tablóid\",\n  \"tabo\": \"tab\",\n  \"tabu\": \"tabu\",\n  \"tábuas\": \"tábu\",\n  \"tabulações\": \"tabul\",\n  \"tabuleiro\": \"tabuleir\",\n  \"tabus\": \"tabus\",\n  \"tabwin\": \"tabwin\",\n  \"taça\": \"tac\",\n  \"tacada\": \"tac\",\n  \"taças\": \"tac\",\n  \"tachados\": \"tach\",\n  \"taco\": \"tac\",\n  \"tadeu\": \"tad\",\n  \"taft\": \"taft\",\n  \"tag\": \"tag\",\n  \"tagarela\": \"tagarel\",\n  \"tageszeitung\": \"tageszeitung\",\n  \"tagliaferro\": \"tagliaferr\",\n  \"tahoe\": \"taho\",\n  \"taí\": \"taí\",\n  \"taiga\": \"taig\",\n  \"tailandês\": \"tailandês\",\n  \"tailandesa\": \"tailandes\",\n  \"tailandesas\": \"tailandes\",\n  \"tailandeses\": \"tailandes\",\n  \"tailândia\": \"tailând\",\n  \"taille\": \"taill\",\n  \"tailleur\": \"tailleur\",\n  \"taiogan\": \"taiogan\",\n  \"taipa\": \"taip\",\n  \"tais\": \"tais\",\n  \"taís\": \"taís\",\n  \"taiti\": \"tait\",\n  \"taiwan\": \"taiwan\",\n  \"taj\": \"taj\",\n  \"takanori\": \"takanor\",\n  \"takarazuka\": \"takarazuk\",\n  \"tal\": \"tal\",\n  \"talão\": \"talã\",\n  \"talavera\": \"talav\",\n  \"talent\": \"talent\",\n  \"talento\": \"talent\",\n  \"talentos\": \"talent\",\n  \"talentosa\": \"talent\",\n  \"talhada\": \"talh\",\n  \"talheres\": \"talh\",\n  \"talismã\": \"talismã\",\n  \"talk\": \"talk\",\n  \"talquinho\": \"talquinh\",\n  \"talvez\": \"talvez\",\n  \"tam\": \"tam\",\n  \"tamanha\": \"tamanh\",\n  \"tamanho\": \"tamanh\",\n  \"tamanhos\": \"tamanh\",\n  \"tamar\": \"tam\",\n  \"tamara\": \"tam\",\n  \"tambaqui\": \"tambaqu\",\n  \"também\": \"também\",\n  \"tambolato\": \"tambolat\",\n  \"tambor\": \"tambor\",\n  \"tambores\": \"tambor\",\n  \"tamburello\": \"tamburell\",\n  \"tambus\": \"tambus\",\n  \"tâmisa\": \"tâmis\",\n  \"tampa\": \"tamp\",\n  \"tampão\": \"tampã\",\n  \"tampouco\": \"tampouc\",\n  \"tanaka\": \"tanak\",\n  \"tancinha\": \"tancinh\",\n  \"tancredo\": \"tancred\",\n  \"tande\": \"tand\",\n  \"tanghe\": \"tangh\",\n  \"tangível\": \"tangível\",\n  \"tango\": \"tang\",\n  \"tania\": \"tan\",\n  \"tânia\": \"tân\",\n  \"tanis\": \"tan\",\n  \"tanner\": \"tann\",\n  \"tanque\": \"tanqu\",\n  \"tanques\": \"tanqu\",\n  \"tanta\": \"tant\",\n  \"tantas\": \"tant\",\n  \"tanto\": \"tant\",\n  \"tantos\": \"tant\",\n  \"tão\": \"tã\",\n  \"tapa\": \"tap\",\n  \"tapados\": \"tap\",\n  \"tapar\": \"tap\",\n  \"tapas\": \"tap\",\n  \"tapera\": \"tap\",\n  \"taperilla\": \"taperill\",\n  \"taperoá\": \"tapero\",\n  \"tapete\": \"tapet\",\n  \"tapetes\": \"tapet\",\n  \"tapumes\": \"tapum\",\n  \"taquicardia\": \"taquicard\",\n  \"taquipsiquismo\": \"taquipsiqu\",\n  \"taras\": \"tar\",\n  \"tarauacá\": \"tarauac\",\n  \"tarcisinho\": \"tarcisinh\",\n  \"tarcísio\": \"tarcísi\",\n  \"tarda\": \"tard\",\n  \"tarde\": \"tard\",\n  \"tardelli\": \"tardell\",\n  \"tardes\": \"tard\",\n  \"tardia\": \"tard\",\n  \"tardiamente\": \"tardi\",\n  \"tardinha\": \"tardinh\",\n  \"tardou\": \"tard\",\n  \"tarefa\": \"taref\",\n  \"tarefas\": \"taref\",\n  \"tarifa\": \"tarif\",\n  \"tarifária\": \"tarifár\",\n  \"tarifas\": \"tarif\",\n  \"tarimbados\": \"tarimb\",\n  \"tarja\": \"tarj\",\n  \"tarjas\": \"tarj\",\n  \"tarsila\": \"tarsil\",\n  \"tarso\": \"tars\",\n  \"tartari\": \"tartar\",\n  \"tartaruga\": \"tartarug\",\n  \"tartarugas\": \"tartarug\",\n  \"task\": \"task\",\n  \"tasso\": \"tass\",\n  \"tatiana\": \"tatian\",\n  \"tática\": \"tátic\",\n  \"táticas\": \"tátic\",\n  \"tato\": \"tat\",\n  \"tatu\": \"tatu\",\n  \"tatuapé\": \"tatuap\",\n  \"tauride\": \"taurid\",\n  \"taurus\": \"taurus\",\n  \"tavares\": \"tav\",\n  \"távola\": \"távol\",\n  \"taxa\": \"tax\",\n  \"taxas\": \"tax\",\n  \"taxativa\": \"taxat\",\n  \"táxi\": \"táx\",\n  \"taxista\": \"taxist\",\n  \"taxistas\": \"taxist\",\n  \"taylor\": \"taylor\",\n  \"tce\": \"tce\",\n  \"tchan\": \"tchan\",\n  \"tchau\": \"tchau\",\n  \"tchun\": \"tchun\",\n  \"tchururuchu\": \"tchururuchu\",\n  \"tdc\": \"tdc\",\n  \"te\": \"te\",\n  \"tê\": \"tê\",\n  \"tea\": \"tea\",\n  \"team\": \"team\",\n  \"teares\": \"tear\",\n  \"tease\": \"teas\",\n  \"teatrais\": \"teatr\",\n  \"teatral\": \"teatral\",\n  \"teatro\": \"teatr\",\n  \"teatrólogo\": \"teatrólog\",\n  \"teatros\": \"teatr\",\n  \"tecelagem\": \"tecelag\",\n  \"tecendo\": \"tec\",\n  \"tech\": \"tech\",\n  \"techno\": \"techn\",\n  \"technology\": \"technology\",\n  \"tecido\": \"tec\",\n  \"tecidos\": \"tec\",\n  \"técio\": \"téci\",\n  \"tecla\": \"tecl\",\n  \"teclado\": \"tecl\",\n  \"técnica\": \"técnic\",\n  \"tecnicamente\": \"tecnic\",\n  \"técnicas\": \"técnic\",\n  \"técnico\": \"técnic\",\n  \"técnicos\": \"técnic\",\n  \"tecnocratas\": \"tecnocrat\",\n  \"tecnologia\": \"tecnolog\",\n  \"tecnologias\": \"tecnolog\",\n  \"tecnológica\": \"tecnológ\",\n  \"tecnologicamente\": \"tecnolog\",\n  \"tecnológicas\": \"tecnológ\",\n  \"tecnológico\": \"tecnológ\",\n  \"tecnológicos\": \"tecnológ\",\n  \"ted\": \"ted\",\n  \"tédio\": \"tédi\",\n  \"tediosa\": \"tedios\",\n  \"teemsters\": \"teemsters\",\n  \"teen\": \"teen\",\n  \"teens\": \"teens\",\n  \"tefé\": \"tef\",\n  \"teimando\": \"teim\",\n  \"teimar\": \"teim\",\n  \"teimoso\": \"teimos\",\n  \"teipe\": \"teip\",\n  \"teixeira\": \"teixeir\",\n  \"tejo\": \"tej\",\n  \"tel\": \"tel\",\n  \"tela\": \"tel\",\n  \"telão\": \"telã\",\n  \"telas\": \"tel\",\n  \"telbrás\": \"telbrás\",\n  \"telebrás\": \"telebrás\",\n  \"teleceará\": \"telec\",\n  \"télécom\": \"télécom\",\n  \"telecomunicação\": \"telecomunic\",\n  \"telecomunicações\": \"telecomunic\",\n  \"teleconferência\": \"teleconferent\",\n  \"telecurso\": \"telecurs\",\n  \"teledramaturgia\": \"teledramaturg\",\n  \"telefe\": \"telef\",\n  \"teleférico\": \"telefér\",\n  \"telefonado\": \"telefon\",\n  \"telefonando\": \"telefon\",\n  \"telefonar\": \"telefon\",\n  \"telefonaram\": \"telefon\",\n  \"telefone\": \"telefon\",\n  \"telefonei\": \"telefon\",\n  \"telefonema\": \"telefonem\",\n  \"telefonemas\": \"telefonem\",\n  \"telefones\": \"telefon\",\n  \"telefonia\": \"telefon\",\n  \"telefônica\": \"telefôn\",\n  \"telefônicas\": \"telefôn\",\n  \"telefônico\": \"telefôn\",\n  \"telefônicos\": \"telefôn\",\n  \"telefono\": \"telefon\",\n  \"telefonou\": \"telefon\",\n  \"telegráfico\": \"telegráf\",\n  \"telégrafo\": \"telégraf\",\n  \"telegramas\": \"telegram\",\n  \"telegraph\": \"telegraph\",\n  \"telejornais\": \"telejorn\",\n  \"telejornal\": \"telejornal\",\n  \"telemarketing\": \"telemarketing\",\n  \"telemig\": \"telemig\",\n  \"telenovela\": \"telenovel\",\n  \"telepar\": \"telep\",\n  \"telepata\": \"telepat\",\n  \"telepatia\": \"telepat\",\n  \"telephony\": \"telephony\",\n  \"telerj\": \"telerj\",\n  \"telesc\": \"telesc\",\n  \"telescópios\": \"telescópi\",\n  \"telesp\": \"telesp\",\n  \"telespectadores\": \"telespect\",\n  \"televisa\": \"televis\",\n  \"televisão\": \"televisã\",\n  \"televisiva\": \"televis\",\n  \"televisivo\": \"televis\",\n  \"televisões\": \"televisõ\",\n  \"televisores\": \"televisor\",\n  \"telex\": \"telex\",\n  \"telhado\": \"telh\",\n  \"telhas\": \"telh\",\n  \"telinha\": \"telinh\",\n  \"telma\": \"telm\",\n  \"telmo\": \"telm\",\n  \"telões\": \"telõ\",\n  \"telpe\": \"telp\",\n  \"tels\": \"tels\",\n  \"tem\": \"tem\",\n  \"têm\": \"têm\",\n  \"tema\": \"tem\",\n  \"temas\": \"tem\",\n  \"tematicamente\": \"temat\",\n  \"temáticas\": \"temát\",\n  \"temático\": \"temát\",\n  \"teme\": \"tem\",\n  \"temem\": \"tem\",\n  \"temendo\": \"tem\",\n  \"temer\": \"tem\",\n  \"temeram\": \"tem\",\n  \"temerosa\": \"temer\",\n  \"temeu\": \"tem\",\n  \"temia\": \"tem\",\n  \"temiam\": \"tem\",\n  \"temida\": \"tem\",\n  \"temidas\": \"tem\",\n  \"temido\": \"tem\",\n  \"temidos\": \"tem\",\n  \"temor\": \"temor\",\n  \"temores\": \"temor\",\n  \"temos\": \"tem\",\n  \"têmpera\": \"têmp\",\n  \"temperada\": \"temper\",\n  \"temperado\": \"temper\",\n  \"temperamentais\": \"temperament\",\n  \"temperamental\": \"temperamental\",\n  \"temperamento\": \"temper\",\n  \"temperamentos\": \"temper\",\n  \"temperança\": \"temperanc\",\n  \"temperatura\": \"temperatur\",\n  \"temperaturas\": \"temperatur\",\n  \"tempero\": \"temper\",\n  \"temperos\": \"temper\",\n  \"tempestade\": \"tempestad\",\n  \"tempestades\": \"tempestad\",\n  \"tempestuosas\": \"tempestu\",\n  \"tempinho\": \"tempinh\",\n  \"templo\": \"templ\",\n  \"templos\": \"templ\",\n  \"tempo\": \"temp\",\n  \"temporada\": \"tempor\",\n  \"temporadas\": \"tempor\",\n  \"temporal\": \"temporal\",\n  \"temporário\": \"temporári\",\n  \"têmporas\": \"têmpor\",\n  \"tempos\": \"temp\",\n  \"tempra\": \"tempr\",\n  \"tenacidade\": \"tenac\",\n  \"tenda\": \"tend\",\n  \"tendam\": \"tend\",\n  \"tendão\": \"tendã\",\n  \"tende\": \"tend\",\n  \"tendem\": \"tend\",\n  \"tendência\": \"tendênc\",\n  \"tendências\": \"tendênc\",\n  \"tendenciosa\": \"tendenc\",\n  \"tendendo\": \"tend\",\n  \"tenderia\": \"tend\",\n  \"tendo\": \"tend\",\n  \"tenebroso\": \"tenebr\",\n  \"tenente\": \"tenent\",\n  \"tenentezinha\": \"tenentezinh\",\n  \"tenha\": \"tenh\",\n  \"tenham\": \"tenh\",\n  \"tenhamos\": \"tenh\",\n  \"tenho\": \"tenh\",\n  \"tênis\": \"tên\",\n  \"tenista\": \"tenist\",\n  \"tenistas\": \"tenist\",\n  \"tennessee\": \"tennesse\",\n  \"tenor\": \"tenor\",\n  \"tenório\": \"tenóri\",\n  \"tenros\": \"tenr\",\n  \"tensa\": \"tens\",\n  \"tensão\": \"tensã\",\n  \"tensas\": \"tens\",\n  \"tenso\": \"tens\",\n  \"tensões\": \"tensõ\",\n  \"tensos\": \"tens\",\n  \"tenta\": \"tent\",\n  \"tentação\": \"tentaçã\",\n  \"tentações\": \"tentaçõ\",\n  \"tentáculos\": \"tentácul\",\n  \"tentado\": \"tent\",\n  \"tentados\": \"tent\",\n  \"tentam\": \"tent\",\n  \"tentamos\": \"tent\",\n  \"tentando\": \"tent\",\n  \"tentar\": \"tent\",\n  \"tentará\": \"tent\",\n  \"tentaram\": \"tent\",\n  \"tentaria\": \"tent\",\n  \"tentativa\": \"tentat\",\n  \"tentativas\": \"tentat\",\n  \"tentava\": \"tent\",\n  \"tentavam\": \"tent\",\n  \"tente\": \"tent\",\n  \"tentei\": \"tent\",\n  \"tentem\": \"tent\",\n  \"tento\": \"tent\",\n  \"tentou\": \"tent\",\n  \"tênues\": \"tênu\",\n  \"teobaldo\": \"teobald\",\n  \"teodoro\": \"teodor\",\n  \"teófilo\": \"teófil\",\n  \"teologia\": \"teolog\",\n  \"teológica\": \"teológ\",\n  \"teólogos\": \"teólog\",\n  \"teor\": \"teor\",\n  \"teoria\": \"teor\",\n  \"teorias\": \"teor\",\n  \"teoricamente\": \"teoric\",\n  \"teórico\": \"teóric\",\n  \"teóricos\": \"teóric\",\n  \"teoriza\": \"teoriz\",\n  \"tequila\": \"tequil\",\n  \"ter\": \"ter\",\n  \"terá\": \"ter\",\n  \"terão\": \"terã\",\n  \"terapeuta\": \"terapeut\",\n  \"terapeutas\": \"terapeut\",\n  \"terapêutica\": \"terapêut\",\n  \"terapêuticas\": \"terapêut\",\n  \"terapêutico\": \"terapêut\",\n  \"terapêuticos\": \"terapêut\",\n  \"terapia\": \"terap\",\n  \"terapias\": \"terap\",\n  \"terça\": \"terc\",\n  \"terças\": \"terc\",\n  \"terceira\": \"terceir\",\n  \"terceirizados\": \"terceiriz\",\n  \"terceiro\": \"terceir\",\n  \"terceiros\": \"terceir\",\n  \"terço\": \"terc\",\n  \"terços\": \"terc\",\n  \"terei\": \"ter\",\n  \"terem\": \"ter\",\n  \"teremos\": \"ter\",\n  \"tererê\": \"terer\",\n  \"teresa\": \"teres\",\n  \"teresinha\": \"teresinh\",\n  \"tereso\": \"teres\",\n  \"teresópolis\": \"teresópol\",\n  \"tereza\": \"terez\",\n  \"teria\": \"ter\",\n  \"teriam\": \"ter\",\n  \"teríamos\": \"ter\",\n  \"termais\": \"term\",\n  \"térmica\": \"térmic\",\n  \"termina\": \"termin\",\n  \"terminação\": \"termin\",\n  \"terminações\": \"termin\",\n  \"terminada\": \"termin\",\n  \"terminado\": \"termin\",\n  \"terminal\": \"terminal\",\n  \"terminam\": \"termin\",\n  \"terminamos\": \"termin\",\n  \"terminando\": \"termin\",\n  \"terminar\": \"termin\",\n  \"terminará\": \"termin\",\n  \"terminaram\": \"termin\",\n  \"terminaria\": \"termin\",\n  \"terminava\": \"termin\",\n  \"terminavam\": \"termin\",\n  \"termine\": \"termin\",\n  \"término\": \"términ\",\n  \"terminou\": \"termin\",\n  \"termo\": \"term\",\n  \"termômetro\": \"termômetr\",\n  \"termos\": \"term\",\n  \"terno\": \"tern\",\n  \"ternos\": \"tern\",\n  \"terra\": \"terr\",\n  \"terras\": \"terr\",\n  \"terrasul\": \"terrasul\",\n  \"terre\": \"terr\",\n  \"térrea\": \"térr\",\n  \"terreiro\": \"terreir\",\n  \"terreiros\": \"terreir\",\n  \"terremoto\": \"terremot\",\n  \"terremotos\": \"terremot\",\n  \"terrence\": \"terrenc\",\n  \"terreno\": \"terren\",\n  \"terrenos\": \"terren\",\n  \"térreo\": \"térr\",\n  \"terrestre\": \"terrestr\",\n  \"terrestres\": \"terrestr\",\n  \"terrible\": \"terribl\",\n  \"terrinha\": \"terrinh\",\n  \"territoriais\": \"territori\",\n  \"territorial\": \"territorial\",\n  \"território\": \"territóri\",\n  \"territórios\": \"territóri\",\n  \"terríveis\": \"terrív\",\n  \"terrível\": \"terrível\",\n  \"terror\": \"terror\",\n  \"terrorismo\": \"terror\",\n  \"terrorista\": \"terror\",\n  \"terroristas\": \"terror\",\n  \"tesão\": \"tesã\",\n  \"tese\": \"tes\",\n  \"teses\": \"tes\",\n  \"teske\": \"tesk\",\n  \"tesoura\": \"tesour\",\n  \"tesouradas\": \"tesour\",\n  \"tesouraria\": \"tesour\",\n  \"tesoureiro\": \"tesoureir\",\n  \"tesouro\": \"tesour\",\n  \"tesouros\": \"tesour\",\n  \"tessituras\": \"tessitur\",\n  \"testa\": \"test\",\n  \"testada\": \"test\",\n  \"testadas\": \"test\",\n  \"testado\": \"test\",\n  \"testados\": \"test\",\n  \"testam\": \"test\",\n  \"testamento\": \"testament\",\n  \"testando\": \"test\",\n  \"testar\": \"test\",\n  \"testaram\": \"test\",\n  \"testarossa\": \"testaross\",\n  \"teste\": \"test\",\n  \"testei\": \"test\",\n  \"testemunha\": \"testemunh\",\n  \"testemunhada\": \"testemunh\",\n  \"testemunhado\": \"testemunh\",\n  \"testemunham\": \"testemunh\",\n  \"testemunhar\": \"testemunh\",\n  \"testemunhas\": \"testemunh\",\n  \"testemunho\": \"testemunh\",\n  \"testemunhos\": \"testemunh\",\n  \"testes\": \"test\",\n  \"testículos\": \"testícul\",\n  \"testosterona\": \"testosteron\",\n  \"testou\": \"test\",\n  \"teto\": \"tet\",\n  \"tetraplégica\": \"tetraplég\",\n  \"tetraplégico\": \"tetraplég\",\n  \"tetraplégicos\": \"tetraplég\",\n  \"tétrico\": \"tétric\",\n  \"teu\": \"teu\",\n  \"teve\": \"tev\",\n  \"tevê\": \"tev\",\n  \"tevês\": \"tevês\",\n  \"texas\": \"tex\",\n  \"têxteis\": \"têxt\",\n  \"têxtil\": \"têxtil\",\n  \"texto\": \"text\",\n  \"textos\": \"text\",\n  \"textualmente\": \"textual\",\n  \"textura\": \"textur\",\n  \"tgerstedt\": \"tgerstedt\",\n  \"thaís\": \"thaís\",\n  \"thales\": \"thal\",\n  \"thalita\": \"thalit\",\n  \"thamires\": \"tham\",\n  \"thatcher\": \"thatch\",\n  \"the\": \"the\",\n  \"theatre\": \"theatr\",\n  \"theatro\": \"theatr\",\n  \"thelma\": \"thelm\",\n  \"them\": \"them\",\n  \"there\": \"ther\",\n  \"thereza\": \"therez\",\n  \"thiago\": \"thiag\",\n  \"thomas\": \"thom\",\n  \"thomaz\": \"thomaz\",\n  \"thomazini\": \"thomazin\",\n  \"thomé\": \"thom\",\n  \"thomson\": \"thomson\",\n  \"thury\": \"thury\",\n  \"tia\": \"tia\",\n  \"tiago\": \"tiag\",\n  \"tião\": \"tiã\",\n  \"tias\": \"tias\",\n  \"tibetanas\": \"tibetan\",\n  \"tibetano\": \"tibetan\",\n  \"tibetanos\": \"tibetan\",\n  \"tibete\": \"tibet\",\n  \"tíbia\": \"tíb\",\n  \"tico\": \"tic\",\n  \"tida\": \"tid\",\n  \"tidas\": \"tid\",\n  \"tido\": \"tid\",\n  \"tidos\": \"tid\",\n  \"tie\": \"tie\",\n  \"tigre\": \"tigr\",\n  \"tigres\": \"tigr\",\n  \"tijolinhos\": \"tijolinh\",\n  \"tijolo\": \"tijol\",\n  \"tijolos\": \"tijol\",\n  \"tijuca\": \"tijuc\",\n  \"tijuco\": \"tijuc\",\n  \"tilápias\": \"tiláp\",\n  \"tilintam\": \"tilint\",\n  \"tilintar\": \"tilint\",\n  \"tim\": \"tim\",\n  \"timbre\": \"timbr\",\n  \"timbuctu\": \"timbuctu\",\n  \"time\": \"tim\",\n  \"timerman\": \"timerman\",\n  \"times\": \"tim\",\n  \"tímida\": \"tím\",\n  \"timidez\": \"timidez\",\n  \"tímido\": \"tím\",\n  \"tímidos\": \"tím\",\n  \"timoneiro\": \"timoneir\",\n  \"timothy\": \"timothy\",\n  \"ting\": \"ting\",\n  \"tinha\": \"tinh\",\n  \"tinham\": \"tinh\",\n  \"tínhamos\": \"tính\",\n  \"tinja\": \"tinj\",\n  \"tino\": \"tin\",\n  \"tinta\": \"tint\",\n  \"tintas\": \"tint\",\n  \"tinto\": \"tint\",\n  \"tintos\": \"tint\",\n  \"tintura\": \"tintur\",\n  \"tinturaria\": \"tintur\",\n  \"tinturas\": \"tintur\",\n  \"tio\": \"tio\",\n  \"tios\": \"tios\",\n  \"típica\": \"típic\",\n  \"tipicamente\": \"tipic\",\n  \"típicas\": \"típic\",\n  \"típico\": \"típic\",\n  \"típicos\": \"típic\",\n  \"tipo\": \"tip\",\n  \"tipos\": \"tip\",\n  \"tiques\": \"tiqu\",\n  \"tira\": \"tir\",\n  \"tirá\": \"tir\",\n  \"tiracolo\": \"tiracol\",\n  \"tirada\": \"tir\",\n  \"tiradas\": \"tir\",\n  \"tiradentes\": \"tiradent\",\n  \"tirado\": \"tir\",\n  \"tirados\": \"tir\",\n  \"tiragem\": \"tirag\",\n  \"tiragens\": \"tiragens\",\n  \"tiram\": \"tir\",\n  \"tiramos\": \"tir\",\n  \"tirando\": \"tir\",\n  \"tirânicas\": \"tirân\",\n  \"tiranossauro\": \"tiranossaur\",\n  \"tirar\": \"tir\",\n  \"tiraram\": \"tir\",\n  \"tiraria\": \"tir\",\n  \"tirariam\": \"tir\",\n  \"tirasse\": \"tir\",\n  \"tirava\": \"tir\",\n  \"tire\": \"tir\",\n  \"tirei\": \"tir\",\n  \"tirinhas\": \"tirinh\",\n  \"tirinhos\": \"tirinh\",\n  \"tiro\": \"tir\",\n  \"tirombaço\": \"tirombac\",\n  \"tiros\": \"tir\",\n  \"tiroteio\": \"tirotei\",\n  \"tirou\": \"tir\",\n  \"tito\": \"tit\",\n  \"titubear\": \"titub\",\n  \"titular\": \"titul\",\n  \"titulares\": \"titul\",\n  \"título\": \"títul\",\n  \"títulos\": \"títul\",\n  \"tive\": \"tiv\",\n  \"tivemos\": \"tiv\",\n  \"tiver\": \"tiv\",\n  \"tivera\": \"tiv\",\n  \"tiveram\": \"tiv\",\n  \"tiverem\": \"tiv\",\n  \"tivermos\": \"tiv\",\n  \"tivesse\": \"tiv\",\n  \"tivessem\": \"tiv\",\n  \"tivéssemos\": \"tivéss\",\n  \"tj\": \"tj\",\n  \"tjurs\": \"tjurs\",\n  \"tnt\": \"tnt\",\n  \"to\": \"to\",\n  \"tô\": \"tô\",\n  \"toa\": \"toa\",\n  \"toalha\": \"toalh\",\n  \"toalhas\": \"toalh\",\n  \"tobago\": \"tobag\",\n  \"toca\": \"toc\",\n  \"tocá\": \"toc\",\n  \"tocadas\": \"toc\",\n  \"tocado\": \"toc\",\n  \"tocados\": \"toc\",\n  \"tocaia\": \"toca\",\n  \"tocamos\": \"toc\",\n  \"tocando\": \"toc\",\n  \"tocantins\": \"tocantins\",\n  \"tocar\": \"toc\",\n  \"tocaria\": \"toc\",\n  \"tocasse\": \"toc\",\n  \"tocava\": \"toc\",\n  \"tocavam\": \"toc\",\n  \"tocou\": \"toc\",\n  \"toda\": \"tod\",\n  \"todas\": \"tod\",\n  \"todavia\": \"todav\",\n  \"today\": \"today\",\n  \"todo\": \"tod\",\n  \"todos\": \"tod\",\n  \"tofranil\": \"tofranil\",\n  \"toga\": \"tog\",\n  \"tognini\": \"tognin\",\n  \"togo\": \"tog\",\n  \"tóim\": \"tóim\",\n  \"tokyo\": \"toky\",\n  \"tolamente\": \"tol\",\n  \"toledo\": \"toled\",\n  \"tolera\": \"tol\",\n  \"tolerada\": \"toler\",\n  \"tolerância\": \"toler\",\n  \"tolerante\": \"toler\",\n  \"tolerar\": \"toler\",\n  \"toleráveis\": \"toler\",\n  \"tolice\": \"tolic\",\n  \"tolices\": \"tolic\",\n  \"tolo\": \"tol\",\n  \"tolos\": \"tol\",\n  \"tolstói\": \"tolstó\",\n  \"tom\": \"tom\",\n  \"toma\": \"tom\",\n  \"tomá\": \"tom\",\n  \"tomada\": \"tom\",\n  \"tomadas\": \"tom\",\n  \"tomado\": \"tom\",\n  \"tomador\": \"tomador\",\n  \"tomados\": \"tom\",\n  \"tomam\": \"tom\",\n  \"tomamos\": \"tom\",\n  \"tomando\": \"tom\",\n  \"tomar\": \"tom\",\n  \"tomara\": \"tom\",\n  \"tomaram\": \"tom\",\n  \"tomarão\": \"tom\",\n  \"tomaria\": \"tom\",\n  \"tomás\": \"tomás\",\n  \"tomaselli\": \"tomasell\",\n  \"tomasko\": \"tomask\",\n  \"tomaskos\": \"tomask\",\n  \"tomasse\": \"tom\",\n  \"tomate\": \"tomat\",\n  \"tomates\": \"tomat\",\n  \"tomava\": \"tom\",\n  \"tomavam\": \"tom\",\n  \"tomaz\": \"tomaz\",\n  \"tombadas\": \"tomb\",\n  \"tombado\": \"tomb\",\n  \"tombados\": \"tomb\",\n  \"tombamento\": \"tombament\",\n  \"tombaram\": \"tomb\",\n  \"tombarão\": \"tomb\",\n  \"tombo\": \"tomb\",\n  \"tombolato\": \"tombolat\",\n  \"tombou\": \"tomb\",\n  \"tome\": \"tom\",\n  \"tomé\": \"tom\",\n  \"tomei\": \"tom\",\n  \"tomilho\": \"tomilh\",\n  \"tommy\": \"tommy\",\n  \"tomo\": \"tom\",\n  \"tomografia\": \"tomograf\",\n  \"tomografias\": \"tomograf\",\n  \"tomográficas\": \"tomográf\",\n  \"tomou\": \"tom\",\n  \"tona\": \"ton\",\n  \"tonalidade\": \"tonal\",\n  \"tonéis\": \"ton\",\n  \"tonelada\": \"tonel\",\n  \"toneladas\": \"tonel\",\n  \"tonho\": \"tonh\",\n  \"tônia\": \"tôn\",\n  \"tônica\": \"tônic\",\n  \"toninho\": \"toninh\",\n  \"tonitruar\": \"tonitru\",\n  \"tons\": \"tons\",\n  \"tonteiras\": \"tonteir\",\n  \"tonto\": \"tont\",\n  \"tony\": \"tony\",\n  \"top\": \"top\",\n  \"topa\": \"top\",\n  \"topar\": \"top\",\n  \"toparam\": \"top\",\n  \"topava\": \"top\",\n  \"topázio\": \"topázi\",\n  \"topbooks\": \"topbooks\",\n  \"tope\": \"top\",\n  \"topei\": \"top\",\n  \"topete\": \"topet\",\n  \"topetuda\": \"topetud\",\n  \"tópicas\": \"tópic\",\n  \"tópico\": \"tópic\",\n  \"tópicos\": \"tópic\",\n  \"topo\": \"top\",\n  \"topou\": \"top\",\n  \"tops\": \"tops\",\n  \"toque\": \"toqu\",\n  \"toques\": \"toqu\",\n  \"tóquio\": \"tóqui\",\n  \"torá\": \"tor\",\n  \"toras\": \"tor\",\n  \"tórax\": \"tórax\",\n  \"torçam\": \"torc\",\n  \"torção\": \"torçã\",\n  \"torce\": \"torc\",\n  \"torcedor\": \"torcedor\",\n  \"torcedora\": \"torcedor\",\n  \"torcedores\": \"torcedor\",\n  \"torcem\": \"torc\",\n  \"torcer\": \"torc\",\n  \"torcida\": \"torc\",\n  \"torcidas\": \"torc\",\n  \"tormento\": \"torment\",\n  \"torna\": \"torn\",\n  \"torná\": \"torn\",\n  \"tornado\": \"torn\",\n  \"tornam\": \"torn\",\n  \"tornando\": \"torn\",\n  \"tornar\": \"torn\",\n  \"tornara\": \"torn\",\n  \"tornará\": \"torn\",\n  \"tornaram\": \"torn\",\n  \"tornarem\": \"torn\",\n  \"tornaria\": \"torn\",\n  \"tornasse\": \"torn\",\n  \"tornava\": \"torn\",\n  \"torne\": \"torn\",\n  \"torneado\": \"torn\",\n  \"tornear\": \"torn\",\n  \"tornei\": \"torn\",\n  \"torneio\": \"tornei\",\n  \"torneios\": \"tornei\",\n  \"torneira\": \"torneir\",\n  \"torneirinhas\": \"torneirinh\",\n  \"tornem\": \"torn\",\n  \"torno\": \"torn\",\n  \"tornou\": \"torn\",\n  \"tornozelo\": \"tornozel\",\n  \"torpedear\": \"torped\",\n  \"torpes\": \"torp\",\n  \"torra\": \"torr\",\n  \"torrados\": \"torr\",\n  \"torram\": \"torr\",\n  \"torrar\": \"torr\",\n  \"torrava\": \"torr\",\n  \"torre\": \"torr\",\n  \"torrefação\": \"torref\",\n  \"torrenciais\": \"torrenc\",\n  \"torres\": \"torr\",\n  \"tórrido\": \"tórr\",\n  \"torso\": \"tors\",\n  \"torta\": \"tort\",\n  \"torto\": \"tort\",\n  \"tortos\": \"tort\",\n  \"tortura\": \"tortur\",\n  \"torturador\": \"tortur\",\n  \"torturadores\": \"tortur\",\n  \"torturados\": \"tortur\",\n  \"torturar\": \"tortur\",\n  \"torturavam\": \"tortur\",\n  \"torturou\": \"tortur\",\n  \"tos\": \"tos\",\n  \"tosca\": \"tosc\",\n  \"toscana\": \"toscan\",\n  \"toscano\": \"toscan\",\n  \"toscas\": \"tosc\",\n  \"toscos\": \"tosc\",\n  \"toshiba\": \"toshib\",\n  \"tosse\": \"toss\",\n  \"tossindo\": \"toss\",\n  \"tostão\": \"tostã\",\n  \"totais\": \"tot\",\n  \"total\": \"total\",\n  \"totalitária\": \"totalitár\",\n  \"totalizando\": \"totaliz\",\n  \"totalmente\": \"total\",\n  \"totem\": \"tot\",\n  \"tottenham\": \"tottenh\",\n  \"touca\": \"touc\",\n  \"tour\": \"tour\",\n  \"tours\": \"tours\",\n  \"tourtois\": \"tourto\",\n  \"toviassú\": \"toviassú\",\n  \"towers\": \"towers\",\n  \"towner\": \"town\",\n  \"tóxicas\": \"tóxic\",\n  \"toxicidade\": \"toxic\",\n  \"toxicologia\": \"toxicolog\",\n  \"toxicologista\": \"toxicolog\",\n  \"tóxicos\": \"tóxic\",\n  \"toyota\": \"toyot\",\n  \"toys\": \"toys\",\n  \"trabaiá\": \"trabai\",\n  \"trabalha\": \"trabalh\",\n  \"trabalhadas\": \"trabalh\",\n  \"trabalhado\": \"trabalh\",\n  \"trabalhador\": \"trabalh\",\n  \"trabalhadora\": \"trabalh\",\n  \"trabalhadores\": \"trabalh\",\n  \"trabalhados\": \"trabalh\",\n  \"trabalham\": \"trabalh\",\n  \"trabalhamos\": \"trabalh\",\n  \"trabalhando\": \"trabalh\",\n  \"trabalhão\": \"trabalhã\",\n  \"trabalhar\": \"trabalh\",\n  \"trabalhara\": \"trabalh\",\n  \"trabalharam\": \"trabalh\",\n  \"trabalharem\": \"trabalh\",\n  \"trabalhassem\": \"trabalh\",\n  \"trabalhava\": \"trabalh\",\n  \"trabalhavam\": \"trabalh\",\n  \"trabalhe\": \"trabalh\",\n  \"trabalhei\": \"trabalh\",\n  \"trabalhem\": \"trabalh\",\n  \"trabalhista\": \"trabalh\",\n  \"trabalhistas\": \"trabalh\",\n  \"trabalho\": \"trabalh\",\n  \"trabalhos\": \"trabalh\",\n  \"trabalhou\": \"trabalh\",\n  \"traça\": \"trac\",\n  \"traçada\": \"trac\",\n  \"traçando\": \"trac\",\n  \"tração\": \"traçã\",\n  \"traçar\": \"trac\",\n  \"track\": \"track\",\n  \"traço\": \"trac\",\n  \"traços\": \"trac\",\n  \"traçou\": \"trac\",\n  \"trade\": \"trad\",\n  \"tradição\": \"tradiçã\",\n  \"tradicionais\": \"tradicion\",\n  \"tradicional\": \"tradicional\",\n  \"tradicionalmente\": \"tradicional\",\n  \"tradicionalmentese\": \"tradicionalmentes\",\n  \"tradições\": \"tradiçõ\",\n  \"tradist\": \"tradist\",\n  \"tradução\": \"traduçã\",\n  \"traduções\": \"traduçõ\",\n  \"tradutor\": \"tradutor\",\n  \"tradutora\": \"tradutor\",\n  \"traduz\": \"traduz\",\n  \"traduzem\": \"traduz\",\n  \"traduzidas\": \"traduz\",\n  \"traduzido\": \"traduz\",\n  \"traduzidos\": \"traduz\",\n  \"traduzindo\": \"traduz\",\n  \"traduzir\": \"traduz\",\n  \"traduziu\": \"traduz\",\n  \"traem\": \"tra\",\n  \"trafega\": \"trafeg\",\n  \"trafegam\": \"trafeg\",\n  \"trafegar\": \"trafeg\",\n  \"trafegava\": \"trafeg\",\n  \"tráfego\": \"tráfeg\",\n  \"traficante\": \"trafic\",\n  \"traficantes\": \"trafic\",\n  \"tráfico\": \"tráfic\",\n  \"trafiquei\": \"trafiqu\",\n  \"traga\": \"trag\",\n  \"tragadas\": \"trag\",\n  \"tragado\": \"trag\",\n  \"tragados\": \"trag\",\n  \"tragam\": \"trag\",\n  \"tragar\": \"trag\",\n  \"tragédia\": \"tragéd\",\n  \"tragédias\": \"tragéd\",\n  \"trágica\": \"trágic\",\n  \"tragicamente\": \"tragic\",\n  \"tragicidade\": \"tragic\",\n  \"trágico\": \"trágic\",\n  \"tragicômica\": \"tragicôm\",\n  \"trai\": \"tra\",\n  \"traí\": \"tra\",\n  \"traia\": \"tra\",\n  \"traía\": \"traí\",\n  \"traiam\": \"tra\",\n  \"traição\": \"traiçã\",\n  \"traído\": \"traíd\",\n  \"traidor\": \"traidor\",\n  \"train\": \"train\",\n  \"traindo\": \"tra\",\n  \"trainer\": \"train\",\n  \"trainner\": \"trainn\",\n  \"trair\": \"tra\",\n  \"traíra\": \"traír\",\n  \"traíram\": \"traír\",\n  \"trajada\": \"traj\",\n  \"trajado\": \"traj\",\n  \"trajando\": \"traj\",\n  \"traje\": \"traj\",\n  \"trajes\": \"traj\",\n  \"trajeto\": \"trajet\",\n  \"trajetória\": \"trajetór\",\n  \"trama\": \"tram\",\n  \"tramar\": \"tram\",\n  \"tramita\": \"tramit\",\n  \"tramitação\": \"tramit\",\n  \"tramitavam\": \"tramit\",\n  \"trâmite\": \"trâmit\",\n  \"tramitou\": \"tramit\",\n  \"tramóia\": \"tramó\",\n  \"tramou\": \"tram\",\n  \"trampolim\": \"trampolim\",\n  \"tranca\": \"tranc\",\n  \"trancada\": \"tranc\",\n  \"trancado\": \"tranc\",\n  \"trançado\": \"tranc\",\n  \"trancados\": \"tranc\",\n  \"trancafiados\": \"trancafi\",\n  \"trancar\": \"tranc\",\n  \"trancas\": \"tranc\",\n  \"trancinhas\": \"trancinh\",\n  \"tranco\": \"tranc\",\n  \"trancos\": \"tranc\",\n  \"trancou\": \"tranc\",\n  \"tranquila\": \"tranquil\",\n  \"tranqüila\": \"tranqüil\",\n  \"tranquilamente\": \"tranquil\",\n  \"tranqüilamente\": \"tranqüil\",\n  \"tranquilas\": \"tranquil\",\n  \"tranquilidade\": \"tranquil\",\n  \"tranqüilidade\": \"tranqüil\",\n  \"tranqüilizador\": \"tranqüiliz\",\n  \"tranquilizante\": \"tranquiliz\",\n  \"tranqüilizante\": \"tranqüiliz\",\n  \"tranquilizantes\": \"tranquiliz\",\n  \"tranquilizar\": \"tranquiliz\",\n  \"tranquilizaram\": \"tranquiliz\",\n  \"tranquilo\": \"tranquil\",\n  \"tranqüilo\": \"tranqüil\",\n  \"tranquilos\": \"tranquil\",\n  \"transa\": \"trans\",\n  \"transação\": \"transaçã\",\n  \"transações\": \"transaçõ\",\n  \"transado\": \"trans\",\n  \"transam\": \"trans\",\n  \"transamazônica\": \"transamazôn\",\n  \"transamos\": \"trans\",\n  \"transando\": \"trans\",\n  \"transar\": \"trans\",\n  \"transas\": \"trans\",\n  \"transasse\": \"trans\",\n  \"transatlântico\": \"transatlânt\",\n  \"transava\": \"trans\",\n  \"transavam\": \"trans\",\n  \"transborda\": \"transbord\",\n  \"transbordasse\": \"transbord\",\n  \"transbordou\": \"transbord\",\n  \"transbrasil\": \"transbrasil\",\n  \"transcorreram\": \"transcorr\",\n  \"transcreve\": \"transcrev\",\n  \"transe\": \"trans\",\n  \"transei\": \"trans\",\n  \"transeunte\": \"transeunt\",\n  \"transexual\": \"transexual\",\n  \"transexualismo\": \"transexual\",\n  \"transfere\": \"transfer\",\n  \"transferem\": \"transf\",\n  \"transferência\": \"transferent\",\n  \"transferida\": \"transfer\",\n  \"transferidas\": \"transfer\",\n  \"transferido\": \"transfer\",\n  \"transferidos\": \"transfer\",\n  \"transferindo\": \"transfer\",\n  \"transferir\": \"transfer\",\n  \"transferissem\": \"transfer\",\n  \"transferiu\": \"transfer\",\n  \"transforma\": \"transform\",\n  \"transformá\": \"transform\",\n  \"transformação\": \"transform\",\n  \"transformações\": \"transform\",\n  \"transformada\": \"transform\",\n  \"transformado\": \"transform\",\n  \"transformador\": \"transform\",\n  \"transformadora\": \"transform\",\n  \"transformados\": \"transform\",\n  \"transformam\": \"transform\",\n  \"transformando\": \"transform\",\n  \"transformar\": \"transform\",\n  \"transformaram\": \"transform\",\n  \"transformaria\": \"transform\",\n  \"transformasse\": \"transform\",\n  \"transformavam\": \"transform\",\n  \"transforme\": \"transform\",\n  \"transformou\": \"transform\",\n  \"transfusão\": \"transfusã\",\n  \"transgredir\": \"transgred\",\n  \"transgressão\": \"transgressã\",\n  \"transgressores\": \"transgressor\",\n  \"transgride\": \"transgrid\",\n  \"transição\": \"transiçã\",\n  \"transições\": \"transiçõ\",\n  \"transita\": \"transit\",\n  \"trânsito\": \"trânsit\",\n  \"transitória\": \"transitór\",\n  \"translados\": \"transl\",\n  \"translúcido\": \"translúc\",\n  \"transmissão\": \"transmissã\",\n  \"transmissíveis\": \"transmissív\",\n  \"transmissível\": \"transmiss\",\n  \"transmissões\": \"transmissõ\",\n  \"transmissores\": \"transmissor\",\n  \"transmite\": \"transmit\",\n  \"transmitida\": \"transmit\",\n  \"transmitidas\": \"transmit\",\n  \"transmitido\": \"transmit\",\n  \"transmitidos\": \"transmit\",\n  \"transmitir\": \"transmit\",\n  \"transmitirão\": \"transmit\",\n  \"transmutação\": \"transmut\",\n  \"transmutar\": \"transmut\",\n  \"transnacionais\": \"transnacion\",\n  \"transnacional\": \"transnacional\",\n  \"transnordestina\": \"transnordestin\",\n  \"transo\": \"trans\",\n  \"transou\": \"trans\",\n  \"transparece\": \"transparec\",\n  \"transparência\": \"transparent\",\n  \"transparente\": \"transparent\",\n  \"transparentes\": \"transparent\",\n  \"transpiração\": \"transpir\",\n  \"transpondo\": \"transpond\",\n  \"transporta\": \"transport\",\n  \"transportada\": \"transport\",\n  \"transportadora\": \"transport\",\n  \"transportadores\": \"transport\",\n  \"transportam\": \"transport\",\n  \"transportando\": \"transport\",\n  \"transportar\": \"transport\",\n  \"transportaram\": \"transport\",\n  \"transporte\": \"transport\",\n  \"transportes\": \"transport\",\n  \"transposta\": \"transpost\",\n  \"transtornado\": \"transtorn\",\n  \"transtorno\": \"transtorn\",\n  \"transtornos\": \"transtorn\",\n  \"trapalhada\": \"trapalh\",\n  \"trapalhadas\": \"trapalh\",\n  \"trapézio\": \"trapézi\",\n  \"traquejo\": \"traquej\",\n  \"traquinagem\": \"traquinag\",\n  \"trará\": \"trar\",\n  \"traria\": \"trar\",\n  \"trariam\": \"trar\",\n  \"trás\": \"trás\",\n  \"traseira\": \"traseir\",\n  \"traseiro\": \"traseir\",\n  \"traseiros\": \"traseir\",\n  \"traslado\": \"trasl\",\n  \"trata\": \"trat\",\n  \"tratá\": \"trat\",\n  \"tratada\": \"trat\",\n  \"tratadas\": \"trat\",\n  \"tratado\": \"trat\",\n  \"tratadores\": \"tratador\",\n  \"tratados\": \"trat\",\n  \"tratam\": \"trat\",\n  \"tratamento\": \"tratament\",\n  \"tratamentos\": \"tratament\",\n  \"tratamos\": \"trat\",\n  \"tratando\": \"trat\",\n  \"tratar\": \"trat\",\n  \"trataram\": \"trat\",\n  \"tratarmos\": \"trat\",\n  \"tratasse\": \"trat\",\n  \"tratava\": \"trat\",\n  \"tratavam\": \"trat\",\n  \"trate\": \"trat\",\n  \"tratei\": \"trat\",\n  \"tratem\": \"trat\",\n  \"trato\": \"trat\",\n  \"trator\": \"trator\",\n  \"tratores\": \"trator\",\n  \"tratou\": \"trat\",\n  \"trauma\": \"traum\",\n  \"traumann\": \"traumann\",\n  \"traumas\": \"traum\",\n  \"traumática\": \"traumát\",\n  \"traumático\": \"traumát\",\n  \"traumatismo\": \"traumat\",\n  \"traumatizado\": \"traumatiz\",\n  \"traumatizantes\": \"traumatiz\",\n  \"traumatizou\": \"traumatiz\",\n  \"trava\": \"trav\",\n  \"travada\": \"trav\",\n  \"travadas\": \"trav\",\n  \"travado\": \"trav\",\n  \"travam\": \"trav\",\n  \"travar\": \"trav\",\n  \"travas\": \"trav\",\n  \"trave\": \"trav\",\n  \"travei\": \"trav\",\n  \"travel\": \"travel\",\n  \"travessura\": \"travessur\",\n  \"travesti\": \"travest\",\n  \"travestis\": \"travest\",\n  \"travolta\": \"travolt\",\n  \"travou\": \"trav\",\n  \"traz\": \"traz\",\n  \"trazê\": \"traz\",\n  \"trazem\": \"traz\",\n  \"trazendo\": \"traz\",\n  \"trazer\": \"traz\",\n  \"trazia\": \"traz\",\n  \"traziam\": \"traz\",\n  \"trazida\": \"traz\",\n  \"trazidas\": \"traz\",\n  \"trazido\": \"traz\",\n  \"trazidos\": \"traz\",\n  \"tre\": \"tre\",\n  \"treatment\": \"treatment\",\n  \"trecho\": \"trech\",\n  \"trechos\": \"trech\",\n  \"trefil\": \"trefil\",\n  \"treina\": \"trein\",\n  \"treinada\": \"trein\",\n  \"treinadas\": \"trein\",\n  \"treinado\": \"trein\",\n  \"treinador\": \"treinador\",\n  \"treinadora\": \"treinador\",\n  \"treinadores\": \"treinador\",\n  \"treinados\": \"trein\",\n  \"treinamento\": \"treinament\",\n  \"treinamentos\": \"treinament\",\n  \"treinando\": \"trein\",\n  \"treinar\": \"trein\",\n  \"treinava\": \"trein\",\n  \"treino\": \"trein\",\n  \"treinos\": \"trein\",\n  \"trejeitos\": \"trejeit\",\n  \"trem\": \"trem\",\n  \"tremedeira\": \"tremedeir\",\n  \"tremeliques\": \"tremeliqu\",\n  \"tremem\": \"trem\",\n  \"tremenda\": \"tremend\",\n  \"tremendo\": \"trem\",\n  \"tremendos\": \"tremend\",\n  \"tremer\": \"trem\",\n  \"tremia\": \"trem\",\n  \"tremiam\": \"trem\",\n  \"tremor\": \"tremor\",\n  \"tremores\": \"tremor\",\n  \"tremularam\": \"tremul\",\n  \"trench\": \"trench\",\n  \"trends\": \"trends\",\n  \"trens\": \"trens\",\n  \"trepidante\": \"trepid\",\n  \"tréplica\": \"tréplic\",\n  \"três\": \"três\",\n  \"trésor\": \"trésor\",\n  \"trevisan\": \"trevisan\",\n  \"trez\": \"trez\",\n  \"treze\": \"trez\",\n  \"tri\": \"tri\",\n  \"triagem\": \"triag\",\n  \"triângulo\": \"triângul\",\n  \"triathlon\": \"triathlon\",\n  \"tribal\": \"tribal\",\n  \"tribo\": \"trib\",\n  \"tribos\": \"trib\",\n  \"tribuna\": \"tribun\",\n  \"tribunais\": \"tribun\",\n  \"tribunal\": \"tribunal\",\n  \"tributação\": \"tribut\",\n  \"tricampeã\": \"tricampeã\",\n  \"tridimensional\": \"tridimensional\",\n  \"triênios\": \"triêni\",\n  \"trigêmeos\": \"trigêm\",\n  \"trigo\": \"trig\",\n  \"trilha\": \"trilh\",\n  \"trilhá\": \"trilh\",\n  \"trilhado\": \"trilh\",\n  \"trilhados\": \"trilh\",\n  \"trilhando\": \"trilh\",\n  \"trilhão\": \"trilhã\",\n  \"trilhões\": \"trilhõ\",\n  \"trilionésimo\": \"trilionésim\",\n  \"trilogia\": \"trilog\",\n  \"trimestre\": \"trimestr\",\n  \"trinados\": \"trin\",\n  \"trincheiras\": \"trincheir\",\n  \"trindade\": \"trindad\",\n  \"trinidad\": \"trinidad\",\n  \"trinta\": \"trint\",\n  \"trio\": \"tri\",\n  \"tripanosoma\": \"tripanosom\",\n  \"tripla\": \"tripl\",\n  \"triplicados\": \"triplic\",\n  \"triplicar\": \"triplic\",\n  \"triplicou\": \"triplic\",\n  \"triplos\": \"tripl\",\n  \"tripoli\": \"tripol\",\n  \"tripudiam\": \"tripud\",\n  \"tripulação\": \"tripul\",\n  \"tripulações\": \"tripul\",\n  \"tripulada\": \"tripul\",\n  \"tripulante\": \"tripul\",\n  \"tripulantes\": \"tripul\",\n  \"tristão\": \"tristã\",\n  \"triste\": \"trist\",\n  \"tristemente\": \"tristement\",\n  \"tristes\": \"trist\",\n  \"tristeza\": \"tristez\",\n  \"tristezas\": \"tristez\",\n  \"tristíssimas\": \"tristíssim\",\n  \"triunfado\": \"triunf\",\n  \"triunfalismo\": \"triunfal\",\n  \"triunfante\": \"triunfant\",\n  \"triunfar\": \"triunf\",\n  \"triunfo\": \"triunf\",\n  \"triunfos\": \"triunf\",\n  \"troca\": \"troc\",\n  \"trocada\": \"troc\",\n  \"trocadas\": \"troc\",\n  \"trocado\": \"troc\",\n  \"trocados\": \"troc\",\n  \"trocam\": \"troc\",\n  \"trocamos\": \"troc\",\n  \"trocando\": \"troc\",\n  \"trocar\": \"troc\",\n  \"trocaram\": \"troc\",\n  \"trocaria\": \"troc\",\n  \"trocas\": \"troc\",\n  \"trocasse\": \"troc\",\n  \"trocava\": \"troc\",\n  \"trocavam\": \"troc\",\n  \"trocentos\": \"trocent\",\n  \"troco\": \"troc\",\n  \"troço\": \"troc\",\n  \"trocou\": \"troc\",\n  \"troféu\": \"troféu\",\n  \"troféus\": \"troféus\",\n  \"tróia\": \"tró\",\n  \"tróica\": \"tróic\",\n  \"trombada\": \"tromb\",\n  \"trombadinhas\": \"trombadinh\",\n  \"trombados\": \"tromb\",\n  \"trombeta\": \"trombet\",\n  \"trombeteia\": \"trombet\",\n  \"trombeteou\": \"trombet\",\n  \"trombina\": \"trombin\",\n  \"trombose\": \"trombos\",\n  \"trombou\": \"tromb\",\n  \"trompas\": \"tromp\",\n  \"trompetista\": \"trompet\",\n  \"troncos\": \"tronc\",\n  \"trono\": \"tron\",\n  \"tropa\": \"trop\",\n  \"tropas\": \"trop\",\n  \"tropeços\": \"tropec\",\n  \"tropeçou\": \"tropec\",\n  \"tropicais\": \"tropic\",\n  \"tropical\": \"tropical\",\n  \"tropicalismo\": \"tropical\",\n  \"tropicar\": \"tropic\",\n  \"trópicos\": \"trópic\",\n  \"troque\": \"troqu\",\n  \"troquei\": \"troqu\",\n  \"trotskistas\": \"trotskist\",\n  \"trouxe\": \"troux\",\n  \"trouxera\": \"troux\",\n  \"trouxeram\": \"troux\",\n  \"trouxesse\": \"troux\",\n  \"trovão\": \"trovã\",\n  \"truculenta\": \"truculent\",\n  \"truculento\": \"truculent\",\n  \"truculentos\": \"truculent\",\n  \"truncamentos\": \"truncament\",\n  \"trunfo\": \"trunf\",\n  \"trunfos\": \"trunf\",\n  \"trupe\": \"trup\",\n  \"truque\": \"truqu\",\n  \"truques\": \"truqu\",\n  \"trutas\": \"trut\",\n  \"try\": \"try\",\n  \"tsé\": \"tsé\",\n  \"tserete\": \"tseret\",\n  \"tsibliiev\": \"tsibliiev\",\n  \"tst\": \"tst\",\n  \"tu\": \"tu\",\n  \"tua\": \"tua\",\n  \"tuba\": \"tub\",\n  \"tubarão\": \"tub\",\n  \"tubarões\": \"tubarõ\",\n  \"tuberculose\": \"tuberculos\",\n  \"tubo\": \"tub\",\n  \"tubos\": \"tub\",\n  \"tuca\": \"tuc\",\n  \"tucana\": \"tucan\",\n  \"tucanato\": \"tucanat\",\n  \"tucano\": \"tucan\",\n  \"tucanos\": \"tucan\",\n  \"tucows\": \"tucows\",\n  \"tudo\": \"tud\",\n  \"tufi\": \"tuf\",\n  \"túlio\": \"túli\",\n  \"tulli\": \"tull\",\n  \"tullio\": \"tulli\",\n  \"tuma\": \"tum\",\n  \"tumavam\": \"tum\",\n  \"tumba\": \"tumb\",\n  \"tumor\": \"tumor\",\n  \"tumores\": \"tumor\",\n  \"túmulo\": \"túmul\",\n  \"tumultuada\": \"tumultu\",\n  \"tumultuado\": \"tumultu\",\n  \"tumultuar\": \"tumultu\",\n  \"túneis\": \"tún\",\n  \"túnel\": \"túnel\",\n  \"tung\": \"tung\",\n  \"tunga\": \"tung\",\n  \"tungando\": \"tung\",\n  \"tunisianos\": \"tunisian\",\n  \"tupi\": \"tup\",\n  \"tupinambá\": \"tupinamb\",\n  \"tupiniquim\": \"tupiniquim\",\n  \"tupiniquins\": \"tupiniquins\",\n  \"turandot\": \"turandot\",\n  \"turano\": \"turan\",\n  \"turbantes\": \"turbant\",\n  \"turbilhão\": \"turbilhã\",\n  \"turbina\": \"turbin\",\n  \"turbinar\": \"turbin\",\n  \"turboélice\": \"turboélic\",\n  \"turboélices\": \"turboélic\",\n  \"turbulência\": \"turbulent\",\n  \"turbulências\": \"turbulent\",\n  \"turbulento\": \"turbulent\",\n  \"turca\": \"turc\",\n  \"turco\": \"turc\",\n  \"turcos\": \"turc\",\n  \"turfe\": \"turf\",\n  \"turibio\": \"turibi\",\n  \"turismo\": \"turism\",\n  \"turista\": \"turist\",\n  \"turistas\": \"turist\",\n  \"turística\": \"turíst\",\n  \"turísticas\": \"turíst\",\n  \"turístico\": \"turíst\",\n  \"turísticos\": \"turíst\",\n  \"turma\": \"turm\",\n  \"turmas\": \"turm\",\n  \"turminha\": \"turminh\",\n  \"turnê\": \"turn\",\n  \"turner\": \"turn\",\n  \"turno\": \"turn\",\n  \"turnos\": \"turn\",\n  \"turquesa\": \"turques\",\n  \"turquia\": \"turqu\",\n  \"turvo\": \"turv\",\n  \"tutela\": \"tutel\",\n  \"tutti\": \"tutt\",\n  \"tv\": \"tv\",\n  \"tva\": \"tva\",\n  \"twa\": \"twa\",\n  \"tyron\": \"tyron\",\n  \"tyson\": \"tyson\",\n  \"u\": \"u\",\n  \"uau\": \"uau\",\n  \"ub\": \"ub\",\n  \"ubaldo\": \"ubald\",\n  \"uberaba\": \"uberab\",\n  \"uberlândia\": \"uberlând\",\n  \"ubirajara\": \"ubiraj\",\n  \"uchoa\": \"ucho\",\n  \"ucla\": \"ucla\",\n  \"ud\": \"ud\",\n  \"ude\": \"ude\",\n  \"ué\": \"ué\",\n  \"uerj\": \"uerj\",\n  \"ufmg\": \"ufmg\",\n  \"ufo\": \"ufo\",\n  \"ufologia\": \"ufolog\",\n  \"ufológica\": \"ufológ\",\n  \"ufológico\": \"ufológ\",\n  \"ufólogo\": \"ufólog\",\n  \"ufólogos\": \"ufólog\",\n  \"ufos\": \"ufos\",\n  \"ufpe\": \"ufpe\",\n  \"ufrj\": \"ufrj\",\n  \"uh\": \"uh\",\n  \"uhf\": \"uhf\",\n  \"uísque\": \"uísqu\",\n  \"uisquinho\": \"uisquinh\",\n  \"uivar\": \"uiv\",\n  \"uivo\": \"uiv\",\n  \"ulan\": \"ulan\",\n  \"úlcera\": \"úlcer\",\n  \"úlceras\": \"úlcer\",\n  \"ulisses\": \"uliss\",\n  \"ulrich\": \"ulrich\",\n  \"ultima\": \"ultim\",\n  \"última\": \"últim\",\n  \"ultimamente\": \"ultim\",\n  \"últimas\": \"últim\",\n  \"último\": \"últim\",\n  \"últimos\": \"últim\",\n  \"ultra\": \"ultra\",\n  \"ultradiet\": \"ultradiet\",\n  \"ultraje\": \"ultraj\",\n  \"ultralar\": \"ultral\",\n  \"ultramodernos\": \"ultramodern\",\n  \"ultrapassa\": \"ultrapass\",\n  \"ultrapassadíssima\": \"ultrapassadíssim\",\n  \"ultrapassado\": \"ultrapass\",\n  \"ultrapassagem\": \"ultrapassag\",\n  \"ultrapassar\": \"ultrapass\",\n  \"ultrapassara\": \"ultrapass\",\n  \"ultrapassará\": \"ultrapass\",\n  \"ultrapassaram\": \"ultrapass\",\n  \"ultrapassava\": \"ultrapass\",\n  \"ultrapassavam\": \"ultrapass\",\n  \"ultrapassou\": \"ultrapass\",\n  \"ultratradicionalista\": \"ultratradicional\",\n  \"ulysses\": \"ulysses\",\n  \"um\": \"um\",\n  \"uma\": \"uma\",\n  \"umas\": \"umas\",\n  \"umbanda\": \"umband\",\n  \"umbandista\": \"umband\",\n  \"umbundo\": \"umbund\",\n  \"úmero\": \"úmer\",\n  \"umidade\": \"umidad\",\n  \"úmidas\": \"úmid\",\n  \"umidificada\": \"umidific\",\n  \"unaí\": \"una\",\n  \"unânime\": \"unânim\",\n  \"unânimes\": \"unânim\",\n  \"unanimidade\": \"unanim\",\n  \"une\": \"une\",\n  \"unem\": \"unem\",\n  \"unesco\": \"unesc\",\n  \"unesp\": \"unesp\",\n  \"unfucked\": \"unfucked\",\n  \"ungido\": \"ungid\",\n  \"ungidos\": \"ungid\",\n  \"unha\": \"unha\",\n  \"unhas\": \"unhas\",\n  \"unhazinha\": \"unhazinh\",\n  \"uni\": \"uni\",\n  \"uniações\": \"uniaçõ\",\n  \"uniad\": \"uniad\",\n  \"união\": \"uniã\",\n  \"unibanco\": \"unibanc\",\n  \"única\": \"únic\",\n  \"unicamp\": \"unicamp\",\n  \"únicas\": \"únic\",\n  \"unicef\": \"unicef\",\n  \"único\": \"únic\",\n  \"únicos\": \"únic\",\n  \"unida\": \"unid\",\n  \"unidade\": \"unidad\",\n  \"unidades\": \"unidad\",\n  \"unidas\": \"unid\",\n  \"unido\": \"unid\",\n  \"unidos\": \"unid\",\n  \"unificação\": \"unific\",\n  \"unificada\": \"unific\",\n  \"unificar\": \"unific\",\n  \"unificou\": \"unific\",\n  \"uniforme\": \"uniform\",\n  \"uniformemente\": \"uniform\",\n  \"unilaterais\": \"unilater\",\n  \"unilateral\": \"unilateral\",\n  \"unimes\": \"unim\",\n  \"unindo\": \"unind\",\n  \"union\": \"union\",\n  \"unir\": \"unir\",\n  \"uniram\": \"unir\",\n  \"unisc\": \"unisc\",\n  \"unita\": \"unit\",\n  \"united\": \"united\",\n  \"universal\": \"universal\",\n  \"universidade\": \"univers\",\n  \"universidades\": \"univers\",\n  \"universitária\": \"universitár\",\n  \"universitárias\": \"universitár\",\n  \"universitário\": \"universitári\",\n  \"universitários\": \"universitári\",\n  \"université\": \"universit\",\n  \"university\": \"university\",\n  \"universo\": \"univers\",\n  \"unix\": \"unix\",\n  \"uno\": \"uno\",\n  \"uns\": \"uns\",\n  \"unwerth\": \"unwerth\",\n  \"uol\": \"uol\",\n  \"up\": \"up\",\n  \"upenn\": \"upenn\",\n  \"upgrade\": \"upgrad\",\n  \"upper\": \"upper\",\n  \"ups\": \"ups\",\n  \"urandir\": \"urand\",\n  \"urânio\": \"urâni\",\n  \"urbana\": \"urban\",\n  \"urbanas\": \"urban\",\n  \"urbanismo\": \"urban\",\n  \"urbanisno\": \"urbanisn\",\n  \"urbanista\": \"urban\",\n  \"urbanização\": \"urbaniz\",\n  \"urbanizados\": \"urbaniz\",\n  \"urbanos\": \"urban\",\n  \"uretra\": \"uretr\",\n  \"urgência\": \"urgênc\",\n  \"urgente\": \"urgent\",\n  \"urgentemente\": \"urgent\",\n  \"urgentes\": \"urgent\",\n  \"uri\": \"uri\",\n  \"úrico\": \"úric\",\n  \"urina\": \"urin\",\n  \"urinar\": \"urin\",\n  \"urinária\": \"urinár\",\n  \"urinário\": \"urinári\",\n  \"urinoterapia\": \"urinoterap\",\n  \"urna\": \"urna\",\n  \"urnas\": \"urnas\",\n  \"urologia\": \"urolog\",\n  \"urológica\": \"urológ\",\n  \"urologista\": \"urolog\",\n  \"urologistas\": \"urolog\",\n  \"urrava\": \"urrav\",\n  \"ursinho\": \"ursinh\",\n  \"urso\": \"urso\",\n  \"urss\": \"urss\",\n  \"urubus\": \"urubus\",\n  \"urubuzada\": \"urubuz\",\n  \"urucânia\": \"urucân\",\n  \"uruguai\": \"urugua\",\n  \"uruguaiana\": \"uruguaian\",\n  \"urutus\": \"urutus\",\n  \"us\": \"us\",\n  \"usa\": \"usa\",\n  \"usá\": \"usá\",\n  \"usada\": \"usad\",\n  \"usadas\": \"usad\",\n  \"usado\": \"usad\",\n  \"usados\": \"usad\",\n  \"usam\": \"usam\",\n  \"usamos\": \"usam\",\n  \"usando\": \"usand\",\n  \"usar\": \"usar\",\n  \"usaram\": \"usar\",\n  \"usarei\": \"usar\",\n  \"usarem\": \"usar\",\n  \"usarmos\": \"usarm\",\n  \"usava\": \"usav\",\n  \"usavam\": \"usav\",\n  \"usávamos\": \"usáv\",\n  \"usável\": \"usável\",\n  \"use\": \"use\",\n  \"usei\": \"use\",\n  \"usiminas\": \"usimin\",\n  \"usina\": \"usin\",\n  \"usinas\": \"usin\",\n  \"usineiros\": \"usineir\",\n  \"uso\": \"uso\",\n  \"usos\": \"usos\",\n  \"usou\": \"usou\",\n  \"usp\": \"usp\",\n  \"usual\": \"usual\",\n  \"usuário\": \"usuári\",\n  \"usuários\": \"usuári\",\n  \"usufrui\": \"usufru\",\n  \"usufruir\": \"usufru\",\n  \"úteis\": \"úte\",\n  \"utensílios\": \"utensíli\",\n  \"uterino\": \"uterin\",\n  \"uterinos\": \"uterin\",\n  \"útero\": \"úter\",\n  \"uti\": \"uti\",\n  \"util\": \"util\",\n  \"útil\": \"útil\",\n  \"utilidade\": \"util\",\n  \"utilidades\": \"util\",\n  \"utilíssimos\": \"utilíss\",\n  \"utilitário\": \"utilitári\",\n  \"utilitários\": \"utilitári\",\n  \"utiliza\": \"utiliz\",\n  \"utilizá\": \"utiliz\",\n  \"utilização\": \"utiliz\",\n  \"utilizada\": \"utiliz\",\n  \"utilizadas\": \"utiliz\",\n  \"utilizado\": \"utiliz\",\n  \"utilizados\": \"utiliz\",\n  \"utilizam\": \"utiliz\",\n  \"utilizando\": \"utiliz\",\n  \"utilizar\": \"utiliz\",\n  \"utilizaram\": \"utiliz\",\n  \"utilizarão\": \"utiliz\",\n  \"utilize\": \"utiliz\",\n  \"utilizem\": \"utiliz\",\n  \"utilizou\": \"utiliz\",\n  \"utinati\": \"utinat\",\n  \"utópicas\": \"utóp\",\n  \"utópico\": \"utóp\",\n  \"utopistas\": \"utop\",\n  \"uvas\": \"uvas\",\n  \"uvibra\": \"uvibr\",\n  \"uzi\": \"uzi\",\n  \"v\": \"v\",\n  \"vá\": \"vá\",\n  \"vaca\": \"vac\",\n  \"vacas\": \"vac\",\n  \"vacilou\": \"vacil\",\n  \"vacina\": \"vacin\",\n  \"vacinação\": \"vacin\",\n  \"vacinada\": \"vacin\",\n  \"vacinas\": \"vacin\",\n  \"vácuo\": \"vácu\",\n  \"vadia\": \"vad\",\n  \"vaga\": \"vag\",\n  \"vagabal\": \"vagabal\",\n  \"vagabundo\": \"vagabund\",\n  \"vagam\": \"vag\",\n  \"vagamente\": \"vag\",\n  \"vagão\": \"vagã\",\n  \"vagar\": \"vag\",\n  \"vagarosa\": \"vagar\",\n  \"vagas\": \"vag\",\n  \"vagina\": \"vagin\",\n  \"vaginais\": \"vagin\",\n  \"vaginal\": \"vaginal\",\n  \"vagner\": \"vagn\",\n  \"vago\": \"vag\",\n  \"vagões\": \"vagõ\",\n  \"vagos\": \"vag\",\n  \"vai\": \"vai\",\n  \"vaidade\": \"vaidad\",\n  \"vaidosa\": \"vaidos\",\n  \"vaidosas\": \"vaidos\",\n  \"vaidoso\": \"vaidos\",\n  \"vaidosos\": \"vaidos\",\n  \"vainfas\": \"vainf\",\n  \"vaitsman\": \"vaitsman\",\n  \"vaivém\": \"vaivém\",\n  \"vala\": \"val\",\n  \"valadares\": \"valad\",\n  \"valas\": \"val\",\n  \"valcilene\": \"valcilen\",\n  \"valdeci\": \"valdec\",\n  \"valdemar\": \"valdem\",\n  \"valdenir\": \"valden\",\n  \"valderez\": \"valderez\",\n  \"valdir\": \"vald\",\n  \"vale\": \"val\",\n  \"valecom\": \"valecom\",\n  \"valecon\": \"valecon\",\n  \"valeika\": \"valeik\",\n  \"valem\": \"val\",\n  \"valença\": \"valenc\",\n  \"valendo\": \"val\",\n  \"valenssa\": \"valenss\",\n  \"valente\": \"valent\",\n  \"valentia\": \"valent\",\n  \"valentim\": \"valentim\",\n  \"valentino\": \"valentin\",\n  \"valenty\": \"valenty\",\n  \"valer\": \"val\",\n  \"valera\": \"val\",\n  \"valeram\": \"val\",\n  \"valeria\": \"val\",\n  \"valéria\": \"valér\",\n  \"valeriam\": \"val\",\n  \"valery\": \"valery\",\n  \"vales\": \"val\",\n  \"valessem\": \"val\",\n  \"valeu\": \"val\",\n  \"valgone\": \"valgon\",\n  \"valha\": \"valh\",\n  \"valho\": \"valh\",\n  \"valia\": \"val\",\n  \"valiam\": \"val\",\n  \"válida\": \"vál\",\n  \"validade\": \"validad\",\n  \"validados\": \"valid\",\n  \"válidas\": \"vál\",\n  \"valido\": \"val\",\n  \"válido\": \"vál\",\n  \"válidos\": \"vál\",\n  \"valinhos\": \"valinh\",\n  \"valiosa\": \"valios\",\n  \"valiosas\": \"valios\",\n  \"valiosíssimas\": \"valiosíssim\",\n  \"valise\": \"valis\",\n  \"valium\": \"valium\",\n  \"valladares\": \"vallad\",\n  \"valle\": \"vall\",\n  \"vallegrande\": \"vallegrand\",\n  \"vallegrandinos\": \"vallegrandin\",\n  \"valor\": \"valor\",\n  \"valores\": \"valor\",\n  \"valoriza\": \"valoriz\",\n  \"valorização\": \"valoriz\",\n  \"valorizada\": \"valoriz\",\n  \"valorizadas\": \"valoriz\",\n  \"valorizado\": \"valoriz\",\n  \"valorizados\": \"valoriz\",\n  \"valorizam\": \"valoriz\",\n  \"valorizando\": \"valoriz\",\n  \"valorizar\": \"valoriz\",\n  \"valorize\": \"valoriz\",\n  \"valorizou\": \"valoriz\",\n  \"valquíria\": \"valquír\",\n  \"valsa\": \"vals\",\n  \"valter\": \"valt\",\n  \"valujet\": \"valujet\",\n  \"válvula\": \"válvul\",\n  \"válvulas\": \"válvul\",\n  \"vamos\": \"vam\",\n  \"vancouver\": \"vancouv\",\n  \"vandalismo\": \"vandal\",\n  \"vanderbild\": \"vanderbild\",\n  \"vanderbilt\": \"vanderbilt\",\n  \"vandergleison\": \"vandergleison\",\n  \"vanessa\": \"vaness\",\n  \"vange\": \"vang\",\n  \"vangloriar\": \"vanglori\",\n  \"vanguarda\": \"vanguard\",\n  \"vanguardas\": \"vanguard\",\n  \"vânia\": \"vân\",\n  \"vanilda\": \"vanild\",\n  \"vanin\": \"vanin\",\n  \"vantagem\": \"vantag\",\n  \"vantagens\": \"vantagens\",\n  \"vantajosa\": \"vantaj\",\n  \"vantajosamente\": \"vantaj\",\n  \"vantajoso\": \"vantaj\",\n  \"vão\": \"vã\",\n  \"vapor\": \"vapor\",\n  \"vaqueiro\": \"vaqueir\",\n  \"vara\": \"var\",\n  \"varanda\": \"varand\",\n  \"varas\": \"var\",\n  \"varavam\": \"var\",\n  \"varejo\": \"varej\",\n  \"varela\": \"varel\",\n  \"varella\": \"varell\",\n  \"varetas\": \"varet\",\n  \"vargas\": \"varg\",\n  \"varginha\": \"varginh\",\n  \"varia\": \"var\",\n  \"variação\": \"variaçã\",\n  \"variações\": \"variaçõ\",\n  \"variada\": \"vari\",\n  \"variadas\": \"vari\",\n  \"variadíssimos\": \"variadíss\",\n  \"variado\": \"vari\",\n  \"variados\": \"vari\",\n  \"variam\": \"var\",\n  \"variando\": \"vari\",\n  \"variant\": \"variant\",\n  \"variantes\": \"variant\",\n  \"variar\": \"vari\",\n  \"várias\": \"vár\",\n  \"variavam\": \"vari\",\n  \"variáveis\": \"vari\",\n  \"variável\": \"variável\",\n  \"variedade\": \"variedad\",\n  \"variedades\": \"variedad\",\n  \"varig\": \"varig\",\n  \"varíola\": \"varíol\",\n  \"vários\": \"vári\",\n  \"varre\": \"varr\",\n  \"varredura\": \"varredur\",\n  \"varreduras\": \"varredur\",\n  \"varrer\": \"varr\",\n  \"varreu\": \"varr\",\n  \"varrida\": \"varr\",\n  \"varrido\": \"varr\",\n  \"várzea\": \"várz\",\n  \"vascaína\": \"vascaín\",\n  \"vasco\": \"vasc\",\n  \"vasconcellos\": \"vasconcell\",\n  \"vasconcelos\": \"vasconcel\",\n  \"vascular\": \"vascul\",\n  \"vasculares\": \"vascul\",\n  \"vasculha\": \"vasculh\",\n  \"vasculham\": \"vasculh\",\n  \"vasculhando\": \"vasculh\",\n  \"vasculhar\": \"vasculh\",\n  \"vasculharam\": \"vasculh\",\n  \"vasculhava\": \"vasculh\",\n  \"vasculhavam\": \"vasculh\",\n  \"vasculhou\": \"vasculh\",\n  \"vasectomia\": \"vasectom\",\n  \"vaso\": \"vas\",\n  \"vasodilatadores\": \"vasodilat\",\n  \"vasoflor\": \"vasoflor\",\n  \"vasos\": \"vas\",\n  \"vasp\": \"vasp\",\n  \"vasquez\": \"vasquez\",\n  \"vassalo\": \"vassal\",\n  \"vassili\": \"vassil\",\n  \"vassoura\": \"vassour\",\n  \"vassouras\": \"vassour\",\n  \"vassoureiro\": \"vassoureir\",\n  \"vasta\": \"vast\",\n  \"vasto\": \"vast\",\n  \"vaticano\": \"vatican\",\n  \"vavá\": \"vav\",\n  \"vaz\": \"vaz\",\n  \"vazamento\": \"vazament\",\n  \"vazão\": \"vazã\",\n  \"vazar\": \"vaz\",\n  \"vazava\": \"vaz\",\n  \"vazem\": \"vaz\",\n  \"vazia\": \"vaz\",\n  \"vazias\": \"vaz\",\n  \"vazio\": \"vazi\",\n  \"vazios\": \"vazi\",\n  \"vazou\": \"vaz\",\n  \"vê\": \"vê\",\n  \"veados\": \"vead\",\n  \"vectra\": \"vectr\",\n  \"vedação\": \"vedaçã\",\n  \"vedete\": \"vedet\",\n  \"vedetes\": \"vedet\",\n  \"vêem\": \"vêem\",\n  \"veementemente\": \"veement\",\n  \"vegas\": \"veg\",\n  \"vegeta\": \"veget\",\n  \"vegetação\": \"veget\",\n  \"vegetais\": \"veget\",\n  \"vegetal\": \"vegetal\",\n  \"vegetariana\": \"vegetarian\",\n  \"vegetativa\": \"veget\",\n  \"veia\": \"vei\",\n  \"veias\": \"vei\",\n  \"veiculação\": \"veicul\",\n  \"veiculado\": \"veicul\",\n  \"veículo\": \"veícul\",\n  \"veículos\": \"veícul\",\n  \"veiga\": \"veig\",\n  \"veio\": \"vei\",\n  \"veja\": \"vej\",\n  \"vejam\": \"vej\",\n  \"vejamos\": \"vej\",\n  \"vejo\": \"vej\",\n  \"vela\": \"vel\",\n  \"velada\": \"vel\",\n  \"velado\": \"vel\",\n  \"velados\": \"vel\",\n  \"velas\": \"vel\",\n  \"velasco\": \"velasc\",\n  \"velejando\": \"velej\",\n  \"velha\": \"velh\",\n  \"velhas\": \"velh\",\n  \"velhice\": \"velhic\",\n  \"velhinha\": \"velhinh\",\n  \"velhinhas\": \"velhinh\",\n  \"velhinho\": \"velhinh\",\n  \"velhíssimo\": \"velhíssim\",\n  \"velho\": \"velh\",\n  \"velhos\": \"velh\",\n  \"velinhas\": \"velinh\",\n  \"velocidade\": \"veloc\",\n  \"velocidades\": \"veloc\",\n  \"velório\": \"velóri\",\n  \"veloso\": \"velos\",\n  \"veloz\": \"veloz\",\n  \"velozes\": \"veloz\",\n  \"velozmente\": \"veloz\",\n  \"veludo\": \"velud\",\n  \"vem\": \"vem\",\n  \"vêm\": \"vêm\",\n  \"vemos\": \"vem\",\n  \"venais\": \"ven\",\n  \"venâncio\": \"venânci\",\n  \"vença\": \"venc\",\n  \"vence\": \"venc\",\n  \"vencedor\": \"vencedor\",\n  \"vencedora\": \"vencedor\",\n  \"vencendo\": \"venc\",\n  \"vencer\": \"venc\",\n  \"vencera\": \"venc\",\n  \"venceram\": \"venc\",\n  \"vencerem\": \"venc\",\n  \"venceslau\": \"venceslau\",\n  \"venceu\": \"venc\",\n  \"venci\": \"venc\",\n  \"vencida\": \"venc\",\n  \"vencido\": \"venc\",\n  \"vencidos\": \"venc\",\n  \"vencimento\": \"venciment\",\n  \"venda\": \"vend\",\n  \"vendagem\": \"vendag\",\n  \"vendam\": \"vend\",\n  \"vendas\": \"vend\",\n  \"vendaval\": \"vendaval\",\n  \"vende\": \"vend\",\n  \"vendê\": \"vend\",\n  \"vendedor\": \"vendedor\",\n  \"vendedora\": \"vendedor\",\n  \"vendedoras\": \"vendedor\",\n  \"vendedores\": \"vendedor\",\n  \"vendem\": \"vend\",\n  \"vendendo\": \"vend\",\n  \"vender\": \"vend\",\n  \"venderam\": \"vend\",\n  \"venderem\": \"vend\",\n  \"venderia\": \"vend\",\n  \"vendesse\": \"vend\",\n  \"vendeu\": \"vend\",\n  \"vendi\": \"vend\",\n  \"vendia\": \"vend\",\n  \"vendiam\": \"vend\",\n  \"vendida\": \"vend\",\n  \"vendidas\": \"vend\",\n  \"vendido\": \"vend\",\n  \"vendidos\": \"vend\",\n  \"vendilhões\": \"vendilhõ\",\n  \"vendo\": \"vend\",\n  \"veneno\": \"venen\",\n  \"venenos\": \"venen\",\n  \"venenoso\": \"venen\",\n  \"venenosos\": \"venen\",\n  \"veneração\": \"vener\",\n  \"venerada\": \"vener\",\n  \"venerado\": \"vener\",\n  \"venerados\": \"vener\",\n  \"veneram\": \"ven\",\n  \"venerar\": \"vener\",\n  \"venerável\": \"vener\",\n  \"veneto\": \"venet\",\n  \"veneza\": \"venez\",\n  \"venezuela\": \"venezuel\",\n  \"veng\": \"veng\",\n  \"venha\": \"venh\",\n  \"venham\": \"venh\",\n  \"venho\": \"venh\",\n  \"venice\": \"venic\",\n  \"ventania\": \"ventan\",\n  \"vento\": \"vent\",\n  \"ventos\": \"vent\",\n  \"ventre\": \"ventr\",\n  \"venture\": \"ventur\",\n  \"ventures\": \"ventur\",\n  \"venturini\": \"venturin\",\n  \"ver\": \"ver\",\n  \"vera\": \"ver\",\n  \"verá\": \"ver\",\n  \"verão\": \"verã\",\n  \"verba\": \"verb\",\n  \"verbais\": \"verb\",\n  \"verbal\": \"verbal\",\n  \"verbalizou\": \"verbaliz\",\n  \"verbalmente\": \"verbal\",\n  \"verbas\": \"verb\",\n  \"verciana\": \"vercian\",\n  \"verdade\": \"verdad\",\n  \"verdadeira\": \"verdadeir\",\n  \"verdadeiramente\": \"verdadeir\",\n  \"verdadeiras\": \"verdadeir\",\n  \"verdadeiro\": \"verdadeir\",\n  \"verdadeiros\": \"verdadeir\",\n  \"verdades\": \"verdad\",\n  \"verde\": \"verd\",\n  \"verdes\": \"verd\",\n  \"verdi\": \"verd\",\n  \"verduras\": \"verdur\",\n  \"vereador\": \"vereador\",\n  \"vereadores\": \"vereador\",\n  \"veredicto\": \"veredict\",\n  \"verem\": \"ver\",\n  \"veremos\": \"ver\",\n  \"vergílio\": \"vergíli\",\n  \"vergonha\": \"vergonh\",\n  \"vergonhosa\": \"vergonh\",\n  \"vergonhoso\": \"vergonh\",\n  \"veridiana\": \"veridian\",\n  \"verifica\": \"verif\",\n  \"verificação\": \"verific\",\n  \"verificamos\": \"verific\",\n  \"verificando\": \"verific\",\n  \"verificar\": \"verific\",\n  \"verificasse\": \"verific\",\n  \"verificou\": \"verific\",\n  \"veríssimo\": \"veríssim\",\n  \"vermelha\": \"vermelh\",\n  \"vermelhas\": \"vermelh\",\n  \"vermelho\": \"vermelh\",\n  \"vermelhos\": \"vermelh\",\n  \"verminose\": \"verminos\",\n  \"verões\": \"verõ\",\n  \"verona\": \"veron\",\n  \"veronica\": \"veron\",\n  \"verônica\": \"verôn\",\n  \"veronika\": \"veronik\",\n  \"verrugas\": \"verrug\",\n  \"versa\": \"vers\",\n  \"versace\": \"versac\",\n  \"versão\": \"versã\",\n  \"versáteis\": \"versát\",\n  \"versátil\": \"versátil\",\n  \"versatilidade\": \"versatil\",\n  \"verso\": \"vers\",\n  \"versões\": \"versõ\",\n  \"versolato\": \"versolat\",\n  \"versos\": \"vers\",\n  \"vertebral\": \"vertebral\",\n  \"vertente\": \"vertent\",\n  \"vertentes\": \"vertent\",\n  \"vertical\": \"vertical\",\n  \"vértices\": \"vértic\",\n  \"vertiginosos\": \"vertigin\",\n  \"verve\": \"verv\",\n  \"vesícula\": \"vesícul\",\n  \"vesículas\": \"vesícul\",\n  \"véspera\": \"vésp\",\n  \"vésperas\": \"vésp\",\n  \"vespri\": \"vespr\",\n  \"veste\": \"vest\",\n  \"vestem\": \"vest\",\n  \"vestes\": \"vest\",\n  \"vesti\": \"vest\",\n  \"vestia\": \"vest\",\n  \"vestiam\": \"vest\",\n  \"vestiários\": \"vestiári\",\n  \"vestibulandos\": \"vestibuland\",\n  \"vestibular\": \"vestibul\",\n  \"vestida\": \"vest\",\n  \"vestidas\": \"vest\",\n  \"vestido\": \"vest\",\n  \"vestidos\": \"vest\",\n  \"vestígios\": \"vestígi\",\n  \"vestimenta\": \"vestiment\",\n  \"vestindo\": \"vest\",\n  \"vestir\": \"vest\",\n  \"vestiram\": \"vest\",\n  \"vestiu\": \"vest\",\n  \"vestuário\": \"vestuári\",\n  \"veta\": \"vet\",\n  \"vetado\": \"vet\",\n  \"vetar\": \"vet\",\n  \"veteranas\": \"veteran\",\n  \"veterano\": \"veteran\",\n  \"veteranos\": \"veteran\",\n  \"veterinária\": \"veterinár\",\n  \"veto\": \"vet\",\n  \"vetor\": \"vetor\",\n  \"vetos\": \"vet\",\n  \"vetou\": \"vet\",\n  \"vettorazzo\": \"vettorazz\",\n  \"véu\": \"véu\",\n  \"véus\": \"véus\",\n  \"vexame\": \"vexam\",\n  \"vexames\": \"vexam\",\n  \"vexatório\": \"vexatóri\",\n  \"vez\": \"vez\",\n  \"vezes\": \"vez\",\n  \"vf\": \"vf\",\n  \"vhd\": \"vhd\",\n  \"vi\": \"vi\",\n  \"via\": \"via\",\n  \"viabilidade\": \"viabil\",\n  \"viabilizar\": \"viabiliz\",\n  \"viabilizou\": \"viabiliz\",\n  \"viado\": \"viad\",\n  \"viados\": \"viad\",\n  \"viaduto\": \"viadut\",\n  \"viadutos\": \"viadut\",\n  \"viáfora\": \"viáfor\",\n  \"viagem\": \"viag\",\n  \"viagens\": \"viagens\",\n  \"viaja\": \"viaj\",\n  \"viajado\": \"viaj\",\n  \"viajam\": \"viaj\",\n  \"viajando\": \"viaj\",\n  \"viajante\": \"viajant\",\n  \"viajantes\": \"viajant\",\n  \"viajar\": \"viaj\",\n  \"viajaram\": \"viaj\",\n  \"viajaria\": \"viaj\",\n  \"viajava\": \"viaj\",\n  \"viajavam\": \"viaj\",\n  \"viajei\": \"viaj\",\n  \"viajou\": \"viaj\",\n  \"vialli\": \"viall\",\n  \"viam\": \"viam\",\n  \"víamos\": \"víam\",\n  \"viana\": \"vian\",\n  \"vianna\": \"viann\",\n  \"viária\": \"viár\",\n  \"vias\": \"vias\",\n  \"viáveis\": \"viáv\",\n  \"viável\": \"viável\",\n  \"víbora\": \"víbor\",\n  \"vibração\": \"vibraçã\",\n  \"vibracional\": \"vibracional\",\n  \"vibrações\": \"vibraçõ\",\n  \"vibram\": \"vibr\",\n  \"vibrando\": \"vibr\",\n  \"vibrante\": \"vibrant\",\n  \"vibraram\": \"vibr\",\n  \"vibrava\": \"vibr\",\n  \"vibrou\": \"vibr\",\n  \"vic\": \"vic\",\n  \"vice\": \"vic\",\n  \"vicente\": \"vicent\",\n  \"vicia\": \"vic\",\n  \"viciada\": \"vic\",\n  \"viciadas\": \"vic\",\n  \"viciado\": \"vic\",\n  \"viciados\": \"vic\",\n  \"viciantes\": \"viciant\",\n  \"vicinal\": \"vicinal\",\n  \"vício\": \"víci\",\n  \"vícios\": \"víci\",\n  \"vicissitudes\": \"vicissitud\",\n  \"vicky\": \"vicky\",\n  \"viçosa\": \"viços\",\n  \"victor\": \"victor\",\n  \"victoria\": \"victor\",\n  \"victória\": \"victór\",\n  \"vicunha\": \"vicunh\",\n  \"vida\": \"vid\",\n  \"vidas\": \"vid\",\n  \"vide\": \"vid\",\n  \"vidente\": \"vident\",\n  \"vídeo\": \"víd\",\n  \"videobrasil\": \"videobrasil\",\n  \"videocassete\": \"videocasset\",\n  \"videodiscos\": \"videodisc\",\n  \"videogame\": \"videogam\",\n  \"videomaker\": \"videomak\",\n  \"vídeos\": \"víd\",\n  \"vidinha\": \"vidinh\",\n  \"vidraça\": \"vidrac\",\n  \"vidraças\": \"vidrac\",\n  \"vidraceiro\": \"vidraceir\",\n  \"vidrado\": \"vidr\",\n  \"vidrados\": \"vidr\",\n  \"vidro\": \"vidr\",\n  \"vidros\": \"vidr\",\n  \"vieira\": \"vieir\",\n  \"viela\": \"viel\",\n  \"vielas\": \"viel\",\n  \"vielmond\": \"vielmond\",\n  \"viena\": \"vien\",\n  \"vier\": \"vier\",\n  \"vieram\": \"vier\",\n  \"viesse\": \"viess\",\n  \"viessem\": \"viess\",\n  \"vietcongues\": \"vietcongu\",\n  \"vietnã\": \"vietnã\",\n  \"vietnamitas\": \"vietnamit\",\n  \"vigarice\": \"vigaric\",\n  \"vigário\": \"vigári\",\n  \"vigários\": \"vigári\",\n  \"vigente\": \"vigent\",\n  \"vigiado\": \"vigi\",\n  \"vigiando\": \"vigi\",\n  \"vigiar\": \"vigi\",\n  \"vigiava\": \"vigi\",\n  \"vigiavam\": \"vigi\",\n  \"vigilância\": \"vigil\",\n  \"vigilantes\": \"vigil\",\n  \"vigília\": \"vigíl\",\n  \"vigor\": \"vigor\",\n  \"vigore\": \"vigor\",\n  \"vil\": \"vil\",\n  \"vila\": \"vil\",\n  \"vilã\": \"vilã\",\n  \"vilaboim\": \"vilaboim\",\n  \"vilanices\": \"vilanic\",\n  \"vilanova\": \"vilanov\",\n  \"vilão\": \"vilã\",\n  \"vilarejo\": \"vilarej\",\n  \"vilarejos\": \"vilarej\",\n  \"vilas\": \"vil\",\n  \"vilãs\": \"vilãs\",\n  \"villa\": \"vill\",\n  \"villaça\": \"villac\",\n  \"village\": \"villag\",\n  \"villaméa\": \"villam\",\n  \"villanova\": \"villanov\",\n  \"villas\": \"vill\",\n  \"villaventura\": \"villaventur\",\n  \"villela\": \"villel\",\n  \"vilmacy\": \"vilmacy\",\n  \"vilões\": \"vilõ\",\n  \"vilson\": \"vilson\",\n  \"vim\": \"vim\",\n  \"vime\": \"vim\",\n  \"vinagre\": \"vinagr\",\n  \"vincadas\": \"vinc\",\n  \"vincenzo\": \"vincenz\",\n  \"vincos\": \"vinc\",\n  \"vinculá\": \"vincul\",\n  \"vinculada\": \"vincul\",\n  \"vinculado\": \"vincul\",\n  \"vinculados\": \"vincul\",\n  \"vinculando\": \"vincul\",\n  \"vínculo\": \"víncul\",\n  \"vínculos\": \"víncul\",\n  \"vinculou\": \"vincul\",\n  \"vinda\": \"vind\",\n  \"vindas\": \"vind\",\n  \"vinde\": \"vind\",\n  \"vindo\": \"vind\",\n  \"vindos\": \"vind\",\n  \"ving\": \"ving\",\n  \"vingado\": \"ving\",\n  \"vingança\": \"vinganc\",\n  \"vingando\": \"ving\",\n  \"vingar\": \"ving\",\n  \"vingativo\": \"vingat\",\n  \"vingou\": \"ving\",\n  \"vinha\": \"vinh\",\n  \"vinham\": \"vinh\",\n  \"vinhedo\": \"vinhed\",\n  \"vinheta\": \"vinhet\",\n  \"vinhetas\": \"vinhet\",\n  \"vinho\": \"vinh\",\n  \"vinhos\": \"vinh\",\n  \"vinicius\": \"vinicius\",\n  \"vinícius\": \"vinícius\",\n  \"vinícola\": \"vinícol\",\n  \"vinícolas\": \"vinícol\",\n  \"vinil\": \"vinil\",\n  \"vinson\": \"vinson\",\n  \"vinte\": \"vint\",\n  \"vinténs\": \"vinténs\",\n  \"viola\": \"viol\",\n  \"violação\": \"violaçã\",\n  \"violações\": \"violaçõ\",\n  \"violão\": \"violã\",\n  \"violaram\": \"viol\",\n  \"violência\": \"violênc\",\n  \"violências\": \"violênc\",\n  \"violenta\": \"violent\",\n  \"violentamente\": \"violent\",\n  \"violentas\": \"violent\",\n  \"violentíssimas\": \"violentíssim\",\n  \"violento\": \"violent\",\n  \"violentos\": \"violent\",\n  \"violinistas\": \"violin\",\n  \"violões\": \"violõ\",\n  \"vip\": \"vip\",\n  \"vips\": \"vips\",\n  \"vir\": \"vir\",\n  \"vira\": \"vir\",\n  \"virá\": \"vir\",\n  \"viracopos\": \"viracop\",\n  \"virada\": \"vir\",\n  \"viradas\": \"vir\",\n  \"virado\": \"vir\",\n  \"viram\": \"vir\",\n  \"virando\": \"vir\",\n  \"virão\": \"virã\",\n  \"virar\": \"vir\",\n  \"viraram\": \"vir\",\n  \"virava\": \"vir\",\n  \"vire\": \"vir\",\n  \"virei\": \"vir\",\n  \"virem\": \"vir\",\n  \"virgem\": \"virg\",\n  \"virgens\": \"virgens\",\n  \"virgília\": \"virgíl\",\n  \"virgílio\": \"virgíli\",\n  \"virgindade\": \"virgindad\",\n  \"virgínia\": \"virgín\",\n  \"virginie\": \"virgini\",\n  \"vírgula\": \"vírgul\",\n  \"viria\": \"vir\",\n  \"viriam\": \"vir\",\n  \"virilidade\": \"viril\",\n  \"virmondes\": \"virmond\",\n  \"virna\": \"virn\",\n  \"viro\": \"vir\",\n  \"viroses\": \"viros\",\n  \"virou\": \"vir\",\n  \"virtuais\": \"virtu\",\n  \"virtual\": \"virtual\",\n  \"virtualmente\": \"virtual\",\n  \"virtude\": \"virtud\",\n  \"virtudes\": \"virtud\",\n  \"vírus\": \"vírus\",\n  \"virusterapia\": \"virusterap\",\n  \"visa\": \"vis\",\n  \"visada\": \"vis\",\n  \"visado\": \"vis\",\n  \"visados\": \"vis\",\n  \"visando\": \"vis\",\n  \"visão\": \"visã\",\n  \"vísceras\": \"vísc\",\n  \"viscomi\": \"viscom\",\n  \"visconde\": \"viscond\",\n  \"viscosa\": \"viscos\",\n  \"visible\": \"visibl\",\n  \"vision\": \"vision\",\n  \"visita\": \"visit\",\n  \"visitá\": \"visit\",\n  \"visitada\": \"visit\",\n  \"visitadas\": \"visit\",\n  \"visitado\": \"visit\",\n  \"visitados\": \"visit\",\n  \"visitam\": \"visit\",\n  \"visitamos\": \"visit\",\n  \"visitante\": \"visit\",\n  \"visitantes\": \"visit\",\n  \"visitar\": \"visit\",\n  \"visitaram\": \"visit\",\n  \"visitas\": \"visit\",\n  \"visitasse\": \"visit\",\n  \"visitavam\": \"visit\",\n  \"visitou\": \"visit\",\n  \"visíveis\": \"visív\",\n  \"visível\": \"visível\",\n  \"visivelmente\": \"visivel\",\n  \"vislumbra\": \"vislumbr\",\n  \"vislumbrar\": \"vislumbr\",\n  \"vislumbrou\": \"vislumbr\",\n  \"visões\": \"visõ\",\n  \"visor\": \"visor\",\n  \"visse\": \"viss\",\n  \"vista\": \"vist\",\n  \"vistas\": \"vist\",\n  \"visto\": \"vist\",\n  \"vistoria\": \"vistor\",\n  \"vistos\": \"vist\",\n  \"visuais\": \"visu\",\n  \"visual\": \"visual\",\n  \"visualmente\": \"visual\",\n  \"vita\": \"vit\",\n  \"vitais\": \"vit\",\n  \"vital\": \"vital\",\n  \"vitalícios\": \"vitalíci\",\n  \"vitalidade\": \"vital\",\n  \"vitamina\": \"vitamin\",\n  \"vitaminada\": \"vitamin\",\n  \"vitaminas\": \"vitamin\",\n  \"vitara\": \"vit\",\n  \"vítima\": \"vítim\",\n  \"vitimam\": \"vitim\",\n  \"vítimas\": \"vítim\",\n  \"vitimou\": \"vitim\",\n  \"vitivinicultura\": \"vitivinicultur\",\n  \"vitor\": \"vitor\",\n  \"vítor\": \"vítor\",\n  \"vitória\": \"vitór\",\n  \"vitórias\": \"vitór\",\n  \"vitório\": \"vitóri\",\n  \"vitoriosa\": \"vitori\",\n  \"vitoriosas\": \"vitori\",\n  \"vitorioso\": \"vitori\",\n  \"vitoriosos\": \"vitori\",\n  \"vitrinas\": \"vitrin\",\n  \"vitrine\": \"vitrin\",\n  \"vitrines\": \"vitrin\",\n  \"vitrola\": \"vitrol\",\n  \"viu\": \"viu\",\n  \"viúva\": \"viúv\",\n  \"viúvas\": \"viúv\",\n  \"viva\": \"viv\",\n  \"vivacidade\": \"vivac\",\n  \"vivamente\": \"viv\",\n  \"vivas\": \"viv\",\n  \"vive\": \"viv\",\n  \"vivem\": \"viv\",\n  \"vivemos\": \"viv\",\n  \"vivencia\": \"vivenc\",\n  \"vivenciadas\": \"vivenc\",\n  \"vivenciaram\": \"vivenc\",\n  \"vivências\": \"vivênc\",\n  \"vivendo\": \"viv\",\n  \"viver\": \"viv\",\n  \"vivera\": \"viv\",\n  \"viveram\": \"viv\",\n  \"viveria\": \"viv\",\n  \"vivesse\": \"viv\",\n  \"viveu\": \"viv\",\n  \"vivi\": \"viv\",\n  \"vivia\": \"viv\",\n  \"viviam\": \"viv\",\n  \"viviane\": \"vivian\",\n  \"vivida\": \"viv\",\n  \"vividas\": \"viv\",\n  \"vivido\": \"viv\",\n  \"vividos\": \"viv\",\n  \"vivien\": \"vivien\",\n  \"vivinha\": \"vivinh\",\n  \"vivíssimas\": \"vivíssim\",\n  \"vivíssimos\": \"vivíss\",\n  \"vivo\": \"viv\",\n  \"vivos\": \"viv\",\n  \"vizinha\": \"vizinh\",\n  \"vizinhança\": \"vizinhanc\",\n  \"vizinhas\": \"vizinh\",\n  \"vizinho\": \"vizinh\",\n  \"vizinhos\": \"vizinh\",\n  \"vladimir\": \"vladim\",\n  \"vle\": \"vle\",\n  \"vô\": \"vô\",\n  \"voa\": \"voa\",\n  \"voador\": \"voador\",\n  \"voadores\": \"voador\",\n  \"voam\": \"voam\",\n  \"voando\": \"voand\",\n  \"voar\": \"voar\",\n  \"voara\": \"voar\",\n  \"voava\": \"voav\",\n  \"voavam\": \"voav\",\n  \"voávamos\": \"voáv\",\n  \"vocabulário\": \"vocabulári\",\n  \"vocábulos\": \"vocábul\",\n  \"vocação\": \"vocaçã\",\n  \"vocais\": \"voc\",\n  \"vocalista\": \"vocal\",\n  \"vocalizado\": \"vocaliz\",\n  \"vocaltec\": \"vocaltec\",\n  \"você\": \"voc\",\n  \"vocês\": \"vocês\",\n  \"vodca\": \"vodc\",\n  \"voei\": \"voe\",\n  \"vogal\": \"vogal\",\n  \"vogue\": \"vog\",\n  \"voice\": \"voic\",\n  \"volante\": \"volant\",\n  \"volátil\": \"volátil\",\n  \"volatilidade\": \"volatil\",\n  \"vôlei\": \"vôl\",\n  \"volkow\": \"volkow\",\n  \"volks\": \"volks\",\n  \"volkswagen\": \"volkswagen\",\n  \"volpe\": \"volp\",\n  \"volta\": \"volt\",\n  \"voltada\": \"volt\",\n  \"voltadas\": \"volt\",\n  \"voltado\": \"volt\",\n  \"voltados\": \"volt\",\n  \"voltaire\": \"voltair\",\n  \"voltam\": \"volt\",\n  \"voltamos\": \"volt\",\n  \"voltando\": \"volt\",\n  \"voltar\": \"volt\",\n  \"voltaram\": \"volt\",\n  \"voltarem\": \"volt\",\n  \"voltaren\": \"voltaren\",\n  \"voltaria\": \"volt\",\n  \"voltarmos\": \"volt\",\n  \"voltas\": \"volt\",\n  \"voltassem\": \"volt\",\n  \"voltava\": \"volt\",\n  \"volte\": \"volt\",\n  \"voltei\": \"volt\",\n  \"voltem\": \"volt\",\n  \"volto\": \"volt\",\n  \"voltou\": \"volt\",\n  \"volume\": \"volum\",\n  \"volumes\": \"volum\",\n  \"volumoso\": \"volum\",\n  \"voluntárias\": \"voluntár\",\n  \"voluntário\": \"voluntári\",\n  \"voluntários\": \"voluntári\",\n  \"voluntarismo\": \"voluntar\",\n  \"volúpia\": \"volúp\",\n  \"vomitar\": \"vomit\",\n  \"vomitava\": \"vomit\",\n  \"vômitos\": \"vômit\",\n  \"von\": \"von\",\n  \"vontade\": \"vontad\",\n  \"vontades\": \"vontad\",\n  \"vôo\": \"vôo\",\n  \"vôos\": \"vôos\",\n  \"voou\": \"voou\",\n  \"voracidade\": \"vorac\",\n  \"voraz\": \"voraz\",\n  \"vorazes\": \"voraz\",\n  \"vosges\": \"vosg\",\n  \"votação\": \"votaçã\",\n  \"votações\": \"votaçõ\",\n  \"votado\": \"vot\",\n  \"votados\": \"vot\",\n  \"votar\": \"vot\",\n  \"votarão\": \"vot\",\n  \"votaria\": \"vot\",\n  \"votasse\": \"vot\",\n  \"votava\": \"vot\",\n  \"votei\": \"vot\",\n  \"voto\": \"vot\",\n  \"votorantim\": \"votorantim\",\n  \"votos\": \"vot\",\n  \"votou\": \"vot\",\n  \"vou\": \"vou\",\n  \"vouiton\": \"vouiton\",\n  \"vovó\": \"vov\",\n  \"vox\": \"vox\",\n  \"voxel\": \"voxel\",\n  \"voyage\": \"voyag\",\n  \"voyeurista\": \"voyeur\",\n  \"voz\": \"voz\",\n  \"vozeirão\": \"voz\",\n  \"vozes\": \"voz\",\n  \"vulcânica\": \"vulcân\",\n  \"vulcânicos\": \"vulcân\",\n  \"vulcão\": \"vulcã\",\n  \"vulcões\": \"vulcõ\",\n  \"vulgar\": \"vulg\",\n  \"vulgares\": \"vulg\",\n  \"vulgaridade\": \"vulgar\",\n  \"vulgarizaram\": \"vulgariz\",\n  \"vulgarmente\": \"vulgar\",\n  \"vulnerabilidade\": \"vulner\",\n  \"vulnerabilidades\": \"vulner\",\n  \"vulneráveis\": \"vulner\",\n  \"vulnerável\": \"vulner\",\n  \"vulto\": \"vult\",\n  \"vultosa\": \"vultos\",\n  \"vultosos\": \"vultos\",\n  \"w\": \"w\",\n  \"wade\": \"wad\",\n  \"wagner\": \"wagn\",\n  \"wagnerianos\": \"wagnerian\",\n  \"wainer\": \"wain\",\n  \"wald\": \"wald\",\n  \"waldemar\": \"waldem\",\n  \"waldhoff\": \"waldhoff\",\n  \"waldir\": \"wald\",\n  \"waldyr\": \"waldyr\",\n  \"walker\": \"walk\",\n  \"walkiria\": \"walk\",\n  \"walkman\": \"walkman\",\n  \"wall\": \"wall\",\n  \"wallace\": \"wallac\",\n  \"walsh\": \"walsh\",\n  \"walt\": \"walt\",\n  \"walter\": \"walt\",\n  \"walther\": \"walth\",\n  \"wanamaker\": \"wanamak\",\n  \"wanda\": \"wand\",\n  \"wanderlei\": \"wanderl\",\n  \"wanderley\": \"wanderley\",\n  \"wando\": \"wand\",\n  \"wanira\": \"wan\",\n  \"wanna\": \"wann\",\n  \"want\": \"want\",\n  \"warner\": \"warn\",\n  \"washington\": \"washington\",\n  \"watch\": \"watch\",\n  \"water\": \"wat\",\n  \"watergate\": \"watergat\",\n  \"waterhouse\": \"waterhous\",\n  \"watts\": \"watts\",\n  \"wayne\": \"wayn\",\n  \"wear\": \"wear\",\n  \"weaver\": \"weav\",\n  \"web\": \"web\",\n  \"weber\": \"web\",\n  \"webphone\": \"webphon\",\n  \"website\": \"websit\",\n  \"wedge\": \"wedg\",\n  \"week\": \"week\",\n  \"weeks\": \"weeks\",\n  \"weg\": \"weg\",\n  \"weizmann\": \"weizmann\",\n  \"welles\": \"well\",\n  \"wellington\": \"wellington\",\n  \"werneck\": \"werneck\",\n  \"werner\": \"wern\",\n  \"werthein\": \"werthein\",\n  \"wesley\": \"wesley\",\n  \"wessel\": \"wessel\",\n  \"west\": \"west\",\n  \"wet\": \"wet\",\n  \"wexler\": \"wexl\",\n  \"what\": \"what\",\n  \"wheelock\": \"wheelock\",\n  \"when\": \"when\",\n  \"white\": \"whit\",\n  \"whiteboard\": \"whiteboard\",\n  \"who\": \"who\",\n  \"whoop\": \"whoop\",\n  \"whoopy\": \"whoopy\",\n  \"wilckens\": \"wilckens\",\n  \"wild\": \"wild\",\n  \"wildlife\": \"wildlif\",\n  \"wilhelm\": \"wilhelm\",\n  \"wilker\": \"wilk\",\n  \"will\": \"will\",\n  \"willadino\": \"willadin\",\n  \"william\": \"will\",\n  \"willis\": \"will\",\n  \"willy\": \"willy\",\n  \"wilma\": \"wilm\",\n  \"wilson\": \"wilson\",\n  \"wimbledon\": \"wimbledon\",\n  \"windows\": \"windows\",\n  \"wine\": \"win\",\n  \"winits\": \"winits\",\n  \"winona\": \"winon\",\n  \"winston\": \"winston\",\n  \"without\": \"without\",\n  \"witt\": \"witt\",\n  \"witte\": \"witt\",\n  \"wittemberg\": \"wittemberg\",\n  \"wladimir\": \"wladim\",\n  \"wolf\": \"wolf\",\n  \"wolfenson\": \"wolfenson\",\n  \"woman\": \"woman\",\n  \"women\": \"women\",\n  \"wonder\": \"wond\",\n  \"wonderful\": \"wonderful\",\n  \"woods\": \"woods\",\n  \"woodstock\": \"woodstock\",\n  \"woody\": \"woody\",\n  \"work\": \"work\",\n  \"workaholic\": \"workaholic\",\n  \"workaholics\": \"workaholics\",\n  \"workshop\": \"workshop\",\n  \"world\": \"world\",\n  \"worth\": \"worth\",\n  \"wri\": \"wri\",\n  \"wright\": \"wright\",\n  \"writer\": \"writ\",\n  \"wtk\": \"wtk\",\n  \"wwf\": \"wwf\",\n  \"www\": \"www\",\n  \"x\": \"x\",\n  \"xá\": \"xá\",\n  \"xadrez\": \"xadrez\",\n  \"xamã\": \"xamã\",\n  \"xamanismo\": \"xaman\",\n  \"xamanísticas\": \"xamaníst\",\n  \"xampu\": \"xampu\",\n  \"xampus\": \"xampus\",\n  \"xando\": \"xand\",\n  \"xangô\": \"xangô\",\n  \"xará\": \"xar\",\n  \"xarope\": \"xarop\",\n  \"xaropes\": \"xarop\",\n  \"xavante\": \"xavant\",\n  \"xavantinho\": \"xavantinh\",\n  \"xaveco\": \"xavec\",\n  \"xavier\": \"xavi\",\n  \"xenakis\": \"xenak\",\n  \"xenical\": \"xenical\",\n  \"xeque\": \"xequ\",\n  \"xeretada\": \"xeret\",\n  \"xerifes\": \"xerif\",\n  \"xerox\": \"xerox\",\n  \"xiao\": \"xia\",\n  \"xica\": \"xic\",\n  \"xícara\": \"xíc\",\n  \"xícaras\": \"xíc\",\n  \"xiii\": \"xii\",\n  \"xiita\": \"xiit\",\n  \"ximenes\": \"ximen\",\n  \"xingada\": \"xing\",\n  \"xingado\": \"xing\",\n  \"xingam\": \"xing\",\n  \"xingar\": \"xing\",\n  \"xingu\": \"xingu\",\n  \"xiv\": \"xiv\",\n  \"xix\": \"xix\",\n  \"xodó\": \"xod\",\n  \"xororó\": \"xoror\",\n  \"xou\": \"xou\",\n  \"xres\": \"xres\",\n  \"xuxa\": \"xux\",\n  \"xvi\": \"xvi\",\n  \"xvii\": \"xvi\",\n  \"xviii\": \"xvii\",\n  \"xx\": \"xx\",\n  \"xxi\": \"xxi\",\n  \"y\": \"y\",\n  \"yahoo\": \"yaho\",\n  \"yakult\": \"yakult\",\n  \"yale\": \"yal\",\n  \"yamaha\": \"yamah\",\n  \"yan\": \"yan\",\n  \"yara\": \"yar\",\n  \"yard\": \"yard\",\n  \"yassuda\": \"yassud\",\n  \"yat\": \"yat\",\n  \"yes\": \"yes\",\n  \"yevgeni\": \"yevgen\",\n  \"yitzhak\": \"yitzhak\",\n  \"yoko\": \"yok\",\n  \"york\": \"york\",\n  \"yun\": \"yun\",\n  \"yuri\": \"yur\",\n  \"yves\": \"yves\",\n  \"z\": \"z\",\n  \"zacharias\": \"zach\",\n  \"zaf\": \"zaf\",\n  \"zagallo\": \"zagall\",\n  \"zagalo\": \"zagal\",\n  \"zagon\": \"zagon\",\n  \"zagury\": \"zagury\",\n  \"zaida\": \"zaid\",\n  \"zaire\": \"zair\",\n  \"zakabi\": \"zakab\",\n  \"zamora\": \"zamor\",\n  \"zancaner\": \"zancan\",\n  \"zander\": \"zand\",\n  \"zangado\": \"zang\",\n  \"zanini\": \"zanin\",\n  \"zanivan\": \"zanivan\",\n  \"zanzibar\": \"zanzib\",\n  \"zapping\": \"zapping\",\n  \"zara\": \"zar\",\n  \"zaragoza\": \"zaragoz\",\n  \"zarin\": \"zarin\",\n  \"zaz\": \"zaz\",\n  \"zé\": \"zé\",\n  \"zebra\": \"zebr\",\n  \"zebras\": \"zebr\",\n  \"zebu\": \"zebu\",\n  \"zeca\": \"zec\",\n  \"zedias\": \"zed\",\n  \"zeferina\": \"zeferin\",\n  \"zehnder\": \"zehnd\",\n  \"zelador\": \"zelador\",\n  \"zelândia\": \"zelând\",\n  \"zelar\": \"zel\",\n  \"zen\": \"zen\",\n  \"zenilda\": \"zenild\",\n  \"zenildo\": \"zenild\",\n  \"zentel\": \"zentel\",\n  \"zepellin\": \"zepellin\",\n  \"zequinha\": \"zequinh\",\n  \"zerados\": \"zer\",\n  \"zerinho\": \"zerinh\",\n  \"zero\": \"zer\",\n  \"zerou\": \"zer\",\n  \"zezé\": \"zez\",\n  \"zhiling\": \"zhiling\",\n  \"zico\": \"zic\",\n  \"zilberman\": \"zilberman\",\n  \"zimbábue\": \"zimbábu\",\n  \"zinco\": \"zinc\",\n  \"zinhos\": \"zinh\",\n  \"zíper\": \"zíp\",\n  \"ziraldo\": \"zirald\",\n  \"zita\": \"zit\",\n  \"zoar\": \"zoar\",\n  \"zodíaco\": \"zodíac\",\n  \"zola\": \"zol\",\n  \"zolio\": \"zoli\",\n  \"zona\": \"zon\",\n  \"zonas\": \"zon\",\n  \"zoneamento\": \"zoneament\",\n  \"zonzo\": \"zonz\",\n  \"zooboros\": \"zoobor\",\n  \"zoológico\": \"zoológ\",\n  \"zoomp\": \"zoomp\",\n  \"zul\": \"zul\",\n  \"zumbi\": \"zumb\",\n  \"zumbido\": \"zumb\"\n}"
  },
  {
    "path": "spec/test_data/sv_stemmer_sample.js",
    "content": "'use strict'\n\nconst words = [\n  'ade',\n  'björks',\n  'jakt',\n  'jaktbössa',\n  'jakten',\n  'jakthund',\n  'jaktkarl',\n  'jaktkarlar',\n  'jaktkarlarne',\n  'jaktkarlens',\n  'jaktlöjtnant',\n  'jaktlöjtnanten',\n  'jaktlöjtnantens',\n  'jalusi',\n  'jalusien',\n  'jalusier',\n  'jalusierna',\n  'jamaika',\n  'jamat',\n  'jamrande',\n  'jamt',\n  'jande',\n  'januari',\n  'japanska',\n  'jaquette',\n  'jaquettekappa',\n  'jargong',\n  'jasmin',\n  'jasminen',\n  'jasminer',\n  'jasminhäck',\n  'jaspis',\n  'jaså',\n  'javäl',\n  'jazzvindens',\n  'jcrn',\n  'jcsus',\n  'je',\n  'jemföra',\n  'jemföras',\n  'jemförelse',\n  'jemförelser']\n\nconst stemmedWords = [\n  'ade',\n  'björk',\n  'jakt',\n  'jaktböss',\n  'jakt',\n  'jakthund',\n  'jaktkarl',\n  'jaktkarl',\n  'jaktkarl',\n  'jaktkarl',\n  'jaktlöjtnant',\n  'jaktlöjtnant',\n  'jaktlöjtnant',\n  'jalusi',\n  'jalusi',\n  'jalusi',\n  'jalusi',\n  'jamaik',\n  'jam',\n  'jamr',\n  'jamt',\n  'jand',\n  'januari',\n  'japansk',\n  'jaquet',\n  'jaquettekapp',\n  'jargong',\n  'jasmin',\n  'jasmin',\n  'jasmin',\n  'jasminhäck',\n  'jaspis',\n  'jaså',\n  'javäl',\n  'jazzvind',\n  'jcrn',\n  'jcsus',\n  'je',\n  'jemför',\n  'jemför',\n  'jemför',\n  'jemför']\n\nmodule.exports = {\n  words,\n  stemmedWords\n}\n"
  },
  {
    "path": "spec/test_data/tfdif_testcorpus.txt",
    "content": "50\nthe:23\na:17\ngirl:1\nmoon:1\nsaid:5\nphone:2"
  },
  {
    "path": "spec/test_data/tfidf_teststopwords.txt",
    "content": "moon"
  },
  {
    "path": "spec/test_data/wordnet_mini.sql",
    "content": "PRAGMA foreign_keys=OFF;\nBEGIN TRANSACTION;\nCREATE TABLE adjpositions (synsetid integer not null, wordid integer not null, position varchar(2) not null, primary key (synsetid, wordid));\nCREATE TABLE adjpositiontypes (position varchar(2) not null, positionname varchar(24) not null, primary key (position));\nCREATE TABLE casedwords (casedwordid integer not null, wordid integer not null, cased varchar(80) not null unique, primary key (casedwordid));\nCREATE TABLE lexdomains (lexdomainid smallint not null, lexdomainname varchar(32), pos char, primary key (lexdomainid));\nCREATE 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));\nCREATE TABLE linktypes (linkid smallint not null, link varchar(50), recurses integer not null, primary key (linkid));\nCREATE TABLE morphmaps (morphid integer not null, pos char not null, wordid integer not null, primary key (morphid, pos, wordid));\nCREATE TABLE morphs (morphid integer not null, morph varchar(70) not null unique, primary key (morphid));\nCREATE TABLE postypes (pos char not null, posname varchar(20) not null, primary key (pos));\nCREATE TABLE samples (synsetid integer not null, sampleid smallint not null, sample longvarchar not null, primary key (synsetid, sampleid));\nCREATE TABLE semlinks (synset1id integer not null, synset2id integer not null, linkid smallint not null, primary key (synset1id, synset2id, linkid));\nCREATE 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));\nINSERT INTO \"senses\" VALUES(138336,300491511,NULL,194444,4,0,0,'unique%5:00:00:unusual:00');\nINSERT INTO \"senses\" VALUES(138336,300505853,NULL,194441,1,0,10,'unique%5:00:00:incomparable:00');\nINSERT INTO \"senses\" VALUES(138336,301105042,NULL,194443,2,0,2,'unique%5:00:00:specific:00');\nINSERT INTO \"senses\" VALUES(138336,302215087,NULL,194442,3,0,0,'unique%5:00:00:single:05');\nINSERT INTO \"senses\" VALUES(138337,400175490,NULL,194445,1,0,4,'uniquely%4:02:00::');\nINSERT INTO \"senses\" VALUES(138338,104763650,NULL,194446,1,0,3,'uniqueness%1:07:00::');\nINSERT INTO \"senses\" VALUES(58843,103076708,NULL,81518,4,0,0,'good%1:06:00::');\nINSERT INTO \"senses\" VALUES(58843,104849241,NULL,81520,2,1,9,'good%1:07:01::');\nINSERT INTO \"senses\" VALUES(58843,105142180,NULL,81521,3,2,6,'good%1:07:02::');\nINSERT INTO \"senses\" VALUES(58843,105159725,NULL,81519,1,0,11,'good%1:07:00::');\nINSERT INTO \"senses\" VALUES(58843,300064787,NULL,81526,5,0,5,'good%5:00:00:advantageous:00');\nINSERT INTO \"senses\" VALUES(58843,300106020,NULL,81527,2,0,22,'good%5:00:00:ample:00');\nINSERT INTO \"senses\" VALUES(58843,300452883,NULL,81528,10,0,2,'good%5:00:00:close:02');\nINSERT INTO \"senses\" VALUES(58843,300523364,NULL,81529,9,0,2,'good%5:00:00:complete:00');\nINSERT INTO \"senses\" VALUES(58843,300775611,NULL,81530,21,0,0,'good%5:00:00:discriminating:00');\nINSERT INTO \"senses\" VALUES(58843,300832784,NULL,81538,14,0,1,'good%5:00:00:operative:00');\nINSERT INTO \"senses\" VALUES(58843,301048762,NULL,81531,13,0,1,'good%5:00:00:fortunate:00');\nINSERT INTO \"senses\" VALUES(58843,301068306,NULL,81532,20,0,0,'good%5:00:00:fresh:01');\nINSERT INTO \"senses\" VALUES(58843,301116026,NULL,81533,19,0,0,'good%5:00:00:genuine:00');\nINSERT INTO \"senses\" VALUES(58843,301123148,NULL,81522,1,1,190,'good%3:00:01::');\nINSERT INTO \"senses\" VALUES(58843,301129977,NULL,81523,3,2,12,'good%3:00:02::');\nINSERT INTO \"senses\" VALUES(58843,301166413,NULL,81534,18,0,0,'good%5:00:00:healthful:00');\nINSERT INTO \"senses\" VALUES(58843,301171213,NULL,81535,17,0,0,'good%5:00:00:healthy:00');\nINSERT INTO \"senses\" VALUES(58843,301333477,NULL,81536,16,0,0,'good%5:00:00:intellectual:00');\nINSERT INTO \"senses\" VALUES(58843,301586752,NULL,81537,6,0,4,'good%5:00:00:nice:00');\nINSERT INTO \"senses\" VALUES(58843,301661289,NULL,81539,12,0,1,'good%5:00:00:opportune:00');\nINSERT INTO \"senses\" VALUES(58843,301808329,NULL,81540,15,0,0,'good%5:00:00:pleasing:00');\nINSERT INTO \"senses\" VALUES(58843,301983162,NULL,81541,4,0,10,'good%5:00:00:reputable:00');\nINSERT INTO \"senses\" VALUES(58843,302036934,NULL,81542,7,0,3,'good%5:00:00:righteous:00');\nINSERT INTO \"senses\" VALUES(58843,302226162,NULL,81543,8,0,2,'good%5:00:00:skilled:00');\nINSERT INTO \"senses\" VALUES(58843,302273643,NULL,81544,11,1,1,'good%5:00:01:sound:00');\nINSERT INTO \"senses\" VALUES(58843,400011093,NULL,81524,1,0,9,'good%4:02:00::');\nINSERT INTO \"senses\" VALUES(58843,400057388,NULL,81525,2,1,4,'good%4:02:01::');\nINSERT INTO \"senses\" VALUES(27771,103076708,NULL,38135,1,0,4,'commodity%1:06:00::');\nINSERT INTO \"senses\" VALUES(134408,103076708,NULL,188782,1,0,0,'trade_good%1:06:00::');\nCREATE TABLE synsets (synsetid integer not null, pos char, lexdomainid smallint not null, definition longvarchar, primary key (synsetid));\nINSERT INTO \"synsets\" VALUES(103076708,'n',6,'articles of commerce');\nINSERT INTO \"synsets\" VALUES(104763650,'n',7,'the quality of being one of a kind');\nINSERT INTO \"synsets\" VALUES(104849241,'n',7,'moral excellence or admirableness');\nINSERT INTO \"synsets\" VALUES(105142180,'n',7,'that which is pleasing or valuable or useful');\nINSERT INTO \"synsets\" VALUES(105159725,'n',7,'benefit');\nINSERT INTO \"synsets\" VALUES(300064787,'s',0,'promoting or enhancing well-being');\nINSERT INTO \"synsets\" VALUES(300106020,'s',0,'having the normally expected amount');\nINSERT INTO \"synsets\" VALUES(300452883,'s',0,'with or in a close or intimate relationship');\nINSERT INTO \"synsets\" VALUES(300491511,'s',0,'highly unusual or rare but not the single instance');\nINSERT INTO \"synsets\" VALUES(300505853,'s',0,'radically distinctive and without equal');\nINSERT INTO \"synsets\" VALUES(300523364,'s',0,'thorough');\nINSERT INTO \"synsets\" VALUES(300775611,'s',0,'generally admired');\nINSERT INTO \"synsets\" VALUES(300832784,'s',0,'exerting force or influence');\nINSERT INTO \"synsets\" VALUES(301048762,'s',0,'resulting favorably');\nINSERT INTO \"synsets\" VALUES(301068306,'s',0,'not left to spoil');\nINSERT INTO \"synsets\" VALUES(301105042,'s',0,'(followed by `to'') applying exclusively to a given category or condition or locality');\nINSERT INTO \"synsets\" VALUES(301116026,'s',0,'not forged');\nINSERT INTO \"synsets\" VALUES(301123148,'a',0,'having desirable or positive qualities especially those suitable for a thing specified');\nINSERT INTO \"synsets\" VALUES(301129977,'a',0,'morally admirable');\nINSERT INTO \"synsets\" VALUES(301166413,'s',0,'tending to promote physical well-being; beneficial to health');\nINSERT INTO \"synsets\" VALUES(301171213,'s',0,'in excellent physical condition');\nINSERT INTO \"synsets\" VALUES(301333477,'s',0,'appealing to the mind');\nINSERT INTO \"synsets\" VALUES(301586752,'s',0,'agreeable or pleasing');\nINSERT INTO \"synsets\" VALUES(301661289,'s',0,'most suitable or right for a particular purpose');\nINSERT INTO \"synsets\" VALUES(301808329,'s',0,'capable of pleasing');\nINSERT INTO \"synsets\" VALUES(301983162,'s',0,'deserving of esteem and respect');\nINSERT INTO \"synsets\" VALUES(302036934,'s',0,'of moral excellence');\nINSERT INTO \"synsets\" VALUES(302215087,'s',0,'the single one of its kind');\nINSERT INTO \"synsets\" VALUES(302226162,'s',0,'having or showing knowledge and skill and aptitude');\nINSERT INTO \"synsets\" VALUES(302273643,'s',0,'financially sound');\nINSERT 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'')');\nINSERT INTO \"synsets\" VALUES(400057388,'r',2,'completely and absolutely (`good'' is sometimes used informally for `thoroughly'')');\nINSERT INTO \"synsets\" VALUES(400175490,'r',2,'so as to be unique');\nCREATE TABLE vframemaps (synsetid integer not null, wordid integer not null, frameid smallint not null, primary key (synsetid, wordid, frameid));\nCREATE TABLE vframes (frameid smallint not null, frame varchar(50), primary key (frameid));\nCREATE TABLE vframesentencemaps (synsetid integer not null, wordid integer not null, sentenceid smallint not null, primary key (synsetid, wordid, sentenceid));\nCREATE TABLE vframesentences (sentenceid smallint not null, sentence longvarchar, primary key (sentenceid));\nCREATE TABLE words (wordid integer not null, lemma varchar(80) not null unique, primary key (wordid));\nINSERT INTO \"words\" VALUES(27771,'commodity');\nINSERT INTO \"words\" VALUES(58843,'good');\nINSERT INTO \"words\" VALUES(134408,'trade good');\nINSERT INTO \"words\" VALUES(138336,'unique');\nINSERT INTO \"words\" VALUES(138337,'uniquely');\nINSERT INTO \"words\" VALUES(138338,'uniqueness');\nCOMMIT;\n"
  },
  {
    "path": "spec/tfidf_spec.ts",
    "content": "/*\nCopyright (c) 2011, Rob Ellis, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { TfIdf, TreebankWordTokenizer, stopwords } from 'lib/natural'\nimport type { TfIdfTerm } from 'lib/natural'\n\nlet tfidf: TfIdf\n\ndescribe('tfidf', function () {\n  describe('stateless operations', function () {\n    it('should tf', function () {\n      expect(TfIdf.tf('document', { document: 2, one: 1 })).toBe(2)\n      expect(TfIdf.tf('document', { greetings: 1, program: 1 })).toBe(0)\n      expect(TfIdf.tf('program', { greetings: 1, program: 1 })).toBe(1)\n    })\n  })\n\n  describe('keys', function () {\n    it('should store and recall keys', function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('document one', 'un')\n      tfidf.addDocument('document Two', 'deux')\n\n      tfidf.tfidfs('two', function (i, tfidf, key) {\n        if (i === 0) { expect(key).toBe('un') } else { expect(key).toBe('deux') }\n      })\n    })\n\n    it('should handle a deserialized object passed to the constructor', function () {\n      tfidf = new TfIdf({\n        documents: [\n          { __key: 'un', document: 1, one: 1 },\n          { __key: 'deux', document: 1, two: 1 }\n        ]\n      })\n      tfidf.tfidfs('two', function (i, tfidf, key) {\n        if (i === 1) { expect(key).toBe('deux') } else { expect(key).toBe('un') }\n      })\n    })\n\n    it('should work when called without a callback', function () {\n      tfidf = new TfIdf({\n        documents: [\n          { __key: 'un', document: 1, one: 1 },\n          { __key: 'deux', document: 1, two: 1 }\n        ]\n      })\n      const tfidfs = tfidf.tfidfs('two')\n      expect(tfidfs[1]).toBe(1 + Math.log(2.0 / 2.0))\n    })\n\n    it('should work with the restoreCache flag set to true', function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('document one', 'un')\n      expect(tfidf.idf('one')).toBe(1 + Math.log(1.0 / 2.0))\n      tfidf.addDocument('document Two', 'deux', true)\n\n      tfidf.tfidfs('two', function (i, tfidf, key) {\n        if (i === 0) { expect(key).toBe('un') } else { expect(key).toBe('deux') }\n      })\n    })\n  })\n\n  describe('stateful operations', function () {\n    beforeEach(function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('document one')\n      tfidf.addDocument('document Two')\n    })\n\n    it('should list important terms', function () {\n      const terms: TfIdfTerm[] = tfidf.listTerms(0)\n      expect(terms[0].tfidf).toBeGreaterThan(terms[1].tfidf)\n    })\n  })\n\n  // Issue #634 - prevent tfidf to apply a tokenizer to terms that are already tokenized\n  describe('tfidf with tokenized terms', function () {\n    tfidf = new TfIdf()\n    tfidf.addDocument(['domain', 'google.com'])\n    const terms: TfIdfTerm[] = tfidf.listTerms(0)\n    it('should list important terms correctly without tokenizing again', function () {\n      expect(terms[0].tfidf).toBeGreaterThan(0)\n      expect(terms[1].tfidf).toBeGreaterThan(0)\n    })\n  })\n\n  describe('special cases', function () {\n    // In response to\n    it('should handle reserved function names correctly in documents', function () {\n      const reservedWords = [\n        'toString',\n        'toLocaleString',\n        'valueOf',\n        'hasOwnProperty',\n        'isPrototypeOf',\n        'propertyIsEnumerable',\n        'constructor'\n      ]\n      tfidf = new TfIdf()\n      tfidf.addDocument(reservedWords.join(' '))\n\n      reservedWords.forEach((word: string) => {\n        expect(tfidf.tfidf(word, 0)).toBe(1 * (1 + Math.log(1 / 2)))\n      })\n    })\n\n    it('should handle an array passed to tfidf()', function () {\n      tfidf = new TfIdf()\n      const terms = ['this', 'document', 'is', 'about', 'poetry']\n      tfidf.addDocument(terms.join(' '))\n      expect(tfidf.tfidf(terms, 0)).toBe(2 * (1 + Math.log(1.0 / 2.0)))\n    })\n  })\n\n  describe('correct calculations', function () {\n    it('should compute idf correctly', function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('this document is about node.')\n      tfidf.addDocument('this document is about ruby.')\n      tfidf.addDocument('this document is about ruby and node.')\n      tfidf.addDocument('this document is about node. it has node examples')\n\n      expect(tfidf.idf('node')).toBe(1 + Math.log(4.0 / 4.0))\n    })\n\n    it('should compute idf correctly with non-string documents', function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('this document is about node.')\n      tfidf.addDocument('this document is about ruby.')\n      tfidf.addDocument('this document is about ruby and node.')\n      tfidf.addDocument('this document is about node. it has node examples')\n      tfidf.addDocument({ text: 'this document is about python' })\n      tfidf.addDocument(['this', 'document', 'is', 'about', 'node', 'and', 'JavaScript'])\n\n      expect(tfidf.idf('node')).toBe(1 + Math.log(6.0 / 5.0))\n    })\n\n    it('should compute tf correctly', function () {\n      expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, node: 1 })).toBe(1)\n      expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, ruby: 1 })).toBe(0)\n      expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, ruby: 1, and: 1, node: 1 })).toBe(1)\n      expect(TfIdf.tf('node', { this: 1, document: 1, is: 1, about: 1, node: 2, it: 1, has: 1, examples: 1 })).toBe(2)\n    })\n\n    // This is a test of the use case outlined in the readme.\n    it('should compute tf-idf correctly', function () {\n      const correctCalculations: number[] = [\n        1 * (1 + Math.log(4.0 / 4.0)),\n        0,\n        2 * (1 + Math.log(4.0 / 4.0)),\n        1 * (1 + Math.log(4.0 / 3.0))\n      ]\n\n      tfidf = new TfIdf()\n      tfidf.addDocument('this document is about node.', { node: 0, ruby: 1 })\n      tfidf.addDocument('this document is about ruby.', { node: 1, ruby: 3 })\n      tfidf.addDocument('this document is about ruby and node.', { node: 0, ruby: 3 })\n      tfidf.addDocument('this document is about node. it has node examples', { node: 2, ruby: 1 })\n\n      tfidf.tfidfs('node', (i: number, measure: number, k: string | Record<string, any> | undefined): void => {\n        if (typeof k === 'object') {\n          expect(measure).toBe(correctCalculations[k.node])\n        } else {\n          console.log('Key was undefined')\n        }\n      })\n\n      tfidf.tfidfs('ruby', (i: number, measure: number, k: string | Record<string, any> | undefined): void => {\n        if (typeof k === 'object') {\n          expect(measure).toBe(correctCalculations[k.ruby])\n        } else {\n          console.log('Key was undefined')\n        }\n      })\n    })\n\n    it('should not return NaN if a term is not present in any documents', function () {\n      tfidf = new TfIdf()\n      tfidf.addDocument('this document is about node.')\n\n      expect(tfidf.tfidf('ruby', 0)).toBe(0)\n    })\n\n    // This test assures that tf-idf is computed correctly before and after a document is added\n    // Computes and tests a few tf-idfs, then adds a document and ensures that those terms tf-idf value\n    // is updated accordingly.\n    it('should update a terms tf-idf score after adding documents', function () {\n      tfidf = new TfIdf()\n\n      // Add 2 documents\n      tfidf.addDocument('this document is about node.', 0)\n      tfidf.addDocument('this document is about ruby.', 1)\n\n      // check the tf-idf for 'node'\n      expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(2.0 / 2.0)))\n\n      // Add 2 more documents\n      tfidf.addDocument('this document is about ruby and node.')\n      tfidf.addDocument('this document is about node. it has node examples')\n\n      // Ensure that the tf-idf in the same document has changed to reflect the new idf.\n      expect(tfidf.tfidf('node', 0)).toBe(1 * (1 + Math.log(4.0 / 4.0)))\n    })\n\n    // Test idf.setTokenizer\n    it('should allow for specific types of Tokenizers', function () {\n      tfidf = new TfIdf()\n\n      tfidf.addDocument('this document isn\\'t about node.', 0)\n      tfidf.addDocument('that doc is about node.', 1)\n      expect(tfidf.tfidf('n\\'t', 0)).toBe(0)\n      expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 2)))\n\n      tfidf = new TfIdf()\n\n      tfidf.addDocument('this document isn\\'t about node.', 0)\n      tfidf.addDocument('this document isn\\'t about node.', 1)\n\n      expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 3)))\n\n      tfidf = new TfIdf()\n      const tokenizer = new TreebankWordTokenizer()\n\n      tfidf.addDocument('this document isn\\'t about node.', 0)\n      tfidf.setTokenizer(tokenizer)\n      tfidf.addDocument('this doc isn\\'t about node.', 1)\n\n      expect(tfidf.tfidf('isn', 0)).toBe(1 * (1 + Math.log(2 / 2)))\n      expect(tfidf.tfidf('n\\'t', 1)).toBe(1 * (1 + Math.log(2 / 2)))\n      expect(tfidf.tfidf('isn', 1)).toBe(0)\n    })\n\n    it('should require a valid tokenizer when using setTokenizer', function () {\n      tfidf = new TfIdf()\n\n      // @ts-expect-error Behaviour with wrong parameters is tested\n      expect(function () { tfidf.setTokenizer(1) }).toThrow(new Error('Expected a valid Tokenizer'))\n      // @ts-expect-error Behaviour with wrong parameters is tested\n      expect(function () { tfidf.setTokenizer({}) }).toThrow(new Error('Expected a valid Tokenizer'))\n    })\n  })\n\n  describe('Stopwords', function () {\n    it('should load a custom set of stopwords', function () {\n      tfidf = new TfIdf()\n      expect(tfidf.setStopwords(stopwords)).toEqual(true)\n      tfidf.addDocument('this document is about node.', 0)\n      const terms = tfidf.listTerms(0)\n      const tokens = terms.map(t => t.term)\n      expect(tokens.indexOf('about')).toEqual(-1)\n      expect(tokens.indexOf('this')).toEqual(-1)\n    })\n    it('should detect an incorrect stopwords list (not an array)', function () {\n      const stopwords = {}\n      // @ts-expect-error Test for behaviour with wrong parameters\n      expect(tfidf.setStopwords(stopwords)).toEqual(false)\n    })\n    it('should detect an incorrect stopwords list (one of the elements is not a string)', function () {\n      const stopwords = [function f () {}]\n      // @ts-expect-error Test for behaviour with wrong parameters\n      expect(tfidf.setStopwords(stopwords)).toEqual(false)\n    })\n  })\n\n  describe('Remove documents', function () {\n    it('should remove a document', function () {\n      tfidf = new TfIdf()\n\n      tfidf.addDocument('this document is about node.', 0)\n      tfidf.addDocument('this document isn\\'t about node.', 1)\n\n      const result1 = tfidf.removeDocument(0)\n      expect(result1).toEqual(true)\n      const result2 = tfidf.removeDocument(0)\n      expect(result2).toEqual(false)\n    })\n  })\n})\n"
  },
  {
    "path": "spec/tokenizer_case_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel, Alex Langberg, Martijn de Boer\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { CaseTokenizer } from 'lib/natural'\nconst tokenizer = new CaseTokenizer()\n\ndescribe('case_tokenizer_numbers', function () {\n  it('should tokenize numbers', function () {\n    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'])\n  })\n})\n\ndescribe('case_tokenizer_es', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('hola yo me llamo eduardo y esudié ingeniería')).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería'])\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('hola yo me llamo eduardo y esudié ingeniería'.tokenize()).toEqual(['hola', 'yo', 'me', 'llamo', 'eduardo', 'y', 'esudié', 'ingeniería']);\n  });\n  */\n})\n\ndescribe('case_tokenizer_fr', function () {\n  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.\"\n\n  const tokenized = ['Affectueusement',\n    'surnommé',\n    'Gabo',\n    'dans',\n    'toute',\n    'l',\n    'Amérique',\n    'latine',\n    'le',\n    'Colombien',\n    'Gabriel',\n    'Garcia',\n    'Marquez',\n    'prix',\n    'Nobel',\n    'de',\n    'littérature',\n    '1982',\n    'l',\n    'un',\n    'des',\n    'plus',\n    'grands',\n    'écrivains',\n    'du',\n    'XXe',\n    'siècle',\n    'est',\n    'mort',\n    'À',\n    'son',\n    'domicile',\n    'de',\n    'Mexico',\n    'jeudi',\n    '17',\n    'avril',\n    'Il',\n    'était',\n    'âgé',\n    'de',\n    '87',\n    'ans',\n    'Son',\n    'Œuvre',\n    'a',\n    'été',\n    'traduite',\n    'dans',\n    'toutes',\n    'les',\n    'langues',\n    'ou',\n    'presque',\n    'et',\n    'vendue',\n    'à',\n    'quelque',\n    '50',\n    'millions',\n    'd',\n    'exemplaires']\n\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize(text)).toEqual(tokenized)\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect(text.tokenize()).toEqual(tokenized);\n  });\n  */\n})\n\ndescribe('case_tokenizer_nl', function () {\n  it('should tokenize strings', function () {\n    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'])\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    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']);\n  });\n  */\n})\n\ndescribe('case_tokenizer_pt', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('isso é coração')).toEqual(['isso', 'é', 'coração'])\n    expect(tokenizer.tokenize('Siga em frente, depois vire à esquerda/direita!')).toEqual(['Siga', 'em', 'frente', 'depois', 'vire', 'à', 'esquerda', 'direita'])\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('isso é coração'.tokenize()).toEqual(['isso', 'é', 'coração']);\n  });\n\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('isso é coração'.tokenize()).toEqual(['isso', 'é', 'coração']);\n  });\n  */\n\n  it('should swallow punctuation', function () {\n    expect(tokenizer.tokenize('isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('isso é coração, no?')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.isso é coração, no')).toEqual(['isso', 'é', 'coração', 'no'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('eu vou... pause')).toEqual(['eu', 'vou', 'pause'])\n  })\n})\n\ndescribe('case_tokenizer_aggressive_tokenizer', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('these are things')).toEqual(['these', 'are', 'things'])\n  })\n\n  /*\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('these are things'.tokenize()).toEqual(['these', 'are', 'things']);\n  });\n\n  it('should tokenize strings via attached string method', function() {\n    tokenizer.attach();\n    expect('these are things'.tokenize()).toEqual(['these', 'are', 'things']);\n  });\n  */\n\n  it('should swallow punctuation', function () {\n    expect(tokenizer.tokenize('these are things, no')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow final punctuation', function () {\n    expect(tokenizer.tokenize('these are things, no?')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow initial punctuation', function () {\n    expect(tokenizer.tokenize('.these are things, no')).toEqual(['these', 'are', 'things', 'no'])\n  })\n\n  it('should swallow duplicate punctuation', function () {\n    expect(tokenizer.tokenize('i shal... pause')).toEqual(['i', 'shal', 'pause'])\n  })\n})\n\ndescribe('case_tokenizer_it', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Mi piacerebbe visitare l\\'Italia un giorno di questi!')).toEqual(['Mi', 'piacerebbe', 'visitare', 'l', 'Italia', 'un', 'giorno', 'di', 'questi'])\n  })\n})\n\ndescribe('case_tokenizer_no', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Gå rett fram. Så tek du til venstre/høgre.')).toEqual(['Gå', 'rett', 'fram', 'Så', 'tek', 'du', 'til', 'venstre', 'høgre'])\n  })\n})\n\n// Made up tests from here. No idea but seem to work.\n\ndescribe('case_tokenizer_pl', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Bardzo za tobą tęskniłem/tęskniłam!')).toEqual(['Bardzo', 'za', 'tobą', 'tęskniłem', 'tęskniłam'])\n  })\n})\n\ndescribe('case_tokenizer_ru', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Vy mOzhite mne pamOch? Вы можете мне помочь?')).toEqual(['Vy', 'mOzhite', 'mne', 'pamOch', 'Вы', 'можете', 'мне', 'помочь'])\n  })\n})\n\ndescribe('case_tokenizer_fi', function () {\n  it('should tokenize strings', function () {\n    expect(tokenizer.tokenize('Mene suoraan käänny sitten vasempaan/oikeaan!')).toEqual(['Mene', 'suoraan', 'käänny', 'sitten', 'vasempaan', 'oikeaan'])\n  })\n})\n"
  },
  {
    "path": "spec/tokenizer_ja_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport {\n  Converters,\n  TokenizerJa\n} from 'lib/natural'\nconst tokenizer = new TokenizerJa()\nconst converters = new Converters()\n\nconst text = '計算機科学における字句解析 (じくかいせき、英: Lexical Analysis) とは、ソースコードを構成する文字の並びを、トークン (token) の並びに変換することをいう。\\n' +\n    'ここでいう「トークン」とは、意味を持つコードの最小単位のこと。字句解析を行うプログラムは、字句解析器 (lexical analyzer, 略称：lexer) と呼ばれる。\\n' +\n    '字句解析器はスキャナ (scanner) とトークナイザ (tokenizer) から構成される。\\n'\nconst result = ['計算', '機科', '学', 'に', 'おける', '字句', '解析',\n  'じくかい', 'せき', '英', 'Lexical', 'Analysis', 'と', 'は', 'ソースコード',\n  'を', '構成', 'する', '文字', 'の', '並び', 'を', 'トークン', 'token', 'の',\n  '並び', 'に', '変換', 'する', 'こと', 'を', 'いう', 'ここ', 'でいう', 'トークン',\n  'と', 'は', '意味', 'を', '持つ', 'コード', 'の', '最小', '単位', 'の', 'こと',\n  '字句', '解析', 'を', '行う', 'プログラム', 'は', '字句', '解析', '器', 'lexical',\n  'analyzer', '略称', 'lexer', 'と', '呼ば', 'れる', '字句', '解析', '器', 'は',\n  'スキャナ', 'scanner', 'と', 'トークナイザ', 'tokenizer', 'から', '構成', 'さ',\n  'れる']\n\ndescribe('TokenizerJa', function () {\n  it('should tokenize', function () {\n    const tokens = tokenizer.tokenize(text)\n    expect(tokens).toEqual(result)\n\n    // This test is very hard to pass through, so we comment for now.\n    // tokens = tokenizer.tokenize('すもももももももものうち。');\n    // expect(tokens).toEqual(['すもも', 'も', 'もも', 'も', 'もも', 'の', 'うち', '。']);\n  })\n\n  it('should normalize input', function () {\n    const tokens = tokenizer.tokenize(\n      converters.alphabetHF(\n        converters.numbersHF(\n          converters.punctuationFH(\n            converters.katakanaFH(text)))))\n    expect(tokens).toEqual(result)\n  })\n})\n"
  },
  {
    "path": "spec/transliterator_ja_spec.ts",
    "content": "/*\nCopyright (c) 2012, Guillaume Marty\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { TransliterateJa as transliterateJa } from 'lib/natural'\n\ndescribe('transliterateJa', function () {\n  it('should transliterate hiragana', function () {\n    expect(transliterateJa('あいうえお かきくけこ')).toEqual('aiueo kakikukeko')\n    expect(transliterateJa('さしすせそ たちつてと')).toEqual('sashisuseso tachitsuteto')\n  })\n\n  it('should transliterate katakana', function () {\n    expect(transliterateJa('アイウエオ カキクケコ')).toEqual('aiueo kakikukeko')\n    expect(transliterateJa('サシスセソ タチツテト')).toEqual('sashisuseso tachitsuteto')\n  })\n\n  it('should transliterate small tsu differently depending on context', function () {\n    expect(transliterateJa('まっか ざっし たった はっぱ')).toEqual('makka zasshi tatta happa')\n    expect(transliterateJa('マッカ ザッシ タッタ ハッパ')).toEqual('makka zasshi tatta happa')\n  })\n\n  it('should transliterate final small tsu', function () {\n    expect(transliterateJa('ああっ')).toEqual('aat')\n    expect(transliterateJa('アアッ')).toEqual('aat')\n  })\n\n  it('should transliterate n differently depending on context', function () {\n    expect(transliterateJa('まんと ばんび ほんや')).toEqual(\"manto bambi hon'ya\")\n    expect(transliterateJa('マント バンビ ホンヤ')).toEqual(\"manto bambi hon'ya\")\n  })\n\n  it('should transliterate long vowels', function () {\n    expect(transliterateJa('ああ　いい　うう　ええ　おお　おう')).toEqual('aa　ii　ū　ee　oo　ō')\n    expect(transliterateJa('あー　いー　うー　えー　おー')).toEqual('ā　ī　ū　ē　ō')\n    expect(transliterateJa('アア　イイ　ウウ　エエ　オオ　オウ')).toEqual('aa　ii　ū　ee　oo　ō')\n    expect(transliterateJa('アー　イー　ウー　エー　オー')).toEqual('ā　ī　ū　ē　ō')\n  })\n\n  it('should leave non fullwidth kana unchanged', function () {\n    expect(transliterateJa('abc ABC 漢字 (.)')).toEqual('abc ABC 漢字 (.)')\n    expect(transliterateJa('ｱｲｳｴｵ ｶｷｸｹｺ')).toEqual('ｱｲｳｴｵ ｶｷｸｹｺ')\n  })\n\n  it('should transliterate misc. words correctly', function () {\n    expect(transliterateJa('アヴァンギャルド')).toEqual('avangyarudo') // Avant-garde\n    expect(transliterateJa('アクサン・スィルコンフレックス')).toEqual('akusan sirukonfurekkusu') // Accent circonflexe\n    expect(transliterateJa('アドレシッング')).toEqual('adoreshinngu') // Addressing\n    expect(transliterateJa('イェス')).toEqual('yesu') // Yes\n    expect(transliterateJa('インテリジェンス')).toEqual('interijensu') // Intelligence\n    expect(transliterateJa('インテルメッツォ')).toEqual('interumettso') // Intermezzo\n    expect(transliterateJa('グァテマラ')).toEqual('gwatemara') // Guatemala\n    expect(transliterateJa('クァルテット')).toEqual('kwarutetto') // Quartet\n    expect(transliterateJa('クィンテット')).toEqual('kwintetto') // Quintet\n    expect(transliterateJa('クォーター')).toEqual('kwōtā') // Quarter\n    expect(transliterateJa('サブウーファー')).toEqual('sabuūfā') // Sub woofer\n    expect(transliterateJa('ソフトウェア')).toEqual('sofutowea') // Software\n    expect(transliterateJa('ツィーター')).toEqual('tsītā') // Tweeter\n    expect(transliterateJa('デューティー')).toEqual('dyūtī') // Duty\n    expect(transliterateJa('ドキュメントィンドウ')).toEqual('dokyumentwindō') // Document window\n    expect(transliterateJa('ヌーヴェルヴァーグ')).toEqual('nūveruvāgu') // Nouvelle vague\n    expect(transliterateJa('ハイジャッンプ')).toEqual('haijanmpu') // High jump\n    expect(transliterateJa('バッファ')).toEqual('baffa') // Buffer\n    expect(transliterateJa('フーホェア')).toEqual('fūhwea') // WhoWhere?\n    expect(transliterateJa('フェイズィング')).toEqual('feizingu') // Phasing\n    expect(transliterateJa('フッロピー')).toEqual('furropī') // Floppy (alternative transcription)\n    expect(transliterateJa('ブュー')).toEqual('byū') // View\n    expect(transliterateJa('フューチャー')).toEqual('fyūchā') // Future\n    expect(transliterateJa('フロッピィ')).toEqual('furoppī') // Floppy\n    expect(transliterateJa('ボージョレー・ヌーヴォー')).toEqual('bōjorē nūvō') // Beaujolais nouveau\n    expect(transliterateJa('ボスニア・ヘルツェゴビナ')).toEqual('bosunia herutsegobina') // Bosnia and Herzegovina\n    expect(transliterateJa('マッハ')).toEqual('mahha') // Mach\n    expect(transliterateJa('レヴュー')).toEqual('revyū') // Review\n    expect(transliterateJa('レクリェーション')).toEqual('rekuryēshon') // Recreation\n  })\n\n  it('should use fallback for small vowels on special case', function () {\n    // These words use rare combination of small vowels.\n    expect(transliterateJa('アゲィンスト')).toEqual('ageinsuto') // Against (alternative transcription)\n    expect(transliterateJa('エッセィ')).toEqual('essei') // Essay (alternative transcription)\n    expect(transliterateJa('ゾゥアラジィ')).toEqual('zouarajī') // Zoology (alternative transcription)\n    expect(transliterateJa('ゾゥァラジカル')).toEqual('zouarajikaru') // Zoological (alternative transcription)\n    expect(transliterateJa('ボランテァ')).toEqual('borantea') // Volunteer (alternative transcription)\n  })\n})\n"
  },
  {
    "path": "spec/treebank_word_tokenizer_spec.ts",
    "content": "/*\nCopyright (c) 2011, Chris Umbel\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { TreebankWordTokenizer as Tokenizer } from 'lib/natural'\nconst tokenizer = new Tokenizer()\n\ndescribe('treebank', function () {\n  it('should tokenize', function () {\n    let tokens = tokenizer.tokenize(\"If we 'all' can't go. I'll stay home.\")\n    expect(tokens).toEqual(['If', 'we', \"'all\", \"'\", 'ca', \"n't\", 'go.',\n      'I', \"'ll\", 'stay', 'home', '.'])\n\n    tokens = tokenizer.tokenize(\"If we 'all' can't go. I'll stay home. If we 'all' can't go. I'll stay home.\")\n    expect(tokens).toEqual(['If', 'we', \"'all\", \"'\", 'ca', \"n't\", 'go.',\n      'I', \"'ll\", 'stay', 'home.', 'If', 'we', \"'all\", \"'\", 'ca', \"n't\", 'go.', 'I', \"'ll\", 'stay', 'home', '.'])\n  })\n})\n"
  },
  {
    "path": "spec/trie_spec.ts",
    "content": "/*\nCopyright (c) 2014 Ken Koch\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n*/\n\n'use strict'\n\nimport { Trie } from 'lib/natural'\n\ndescribe('trie', function () {\n  describe('adding strings', function () {\n    it('should add words one at a time', function () {\n      const trie = new Trie()\n      trie.addString('test')\n      expect(trie.contains('test')).toBe(true)\n\n      trie.addString('abcd')\n      expect(trie.contains('abcd')).toBe(true)\n    })\n\n    it('should return true if a string is added that already existed', function () {\n      const trie = new Trie()\n      expect(trie.addString('test')).toBe(false)\n      expect(trie.addString('test')).toBe(true)\n    })\n\n    it('Should add an array of strings', function () {\n      const trie = new Trie()\n      const testWords = ['test', 'abcd', 'ffff']\n      trie.addStrings(testWords)\n\n      for (let i = testWords.length - 1; i >= 0; i--) {\n        expect(trie.contains(testWords[i])).toBe(true)\n      };\n    })\n  })\n\n  describe('getSize', function () {\n    it('should return 1 for an empty trie', function () {\n      const trie = new Trie()\n      expect(trie.getSize()).toBe(1)\n    })\n\n    it('should return the correct size', function () {\n      const trie = new Trie()\n      trie.addString('a')\n      expect(trie.getSize()).toBe(2)\n\n      trie.addString('ab')\n      expect(trie.getSize()).toBe(3)\n    })\n\n    it('should count all branches', function () {\n      const trie = new Trie()\n      trie.addString('a')\n      expect(trie.getSize()).toBe(2)\n\n      trie.addString('ba')\n      expect(trie.getSize()).toBe(4)\n    })\n  })\n\n  describe('searching', function () {\n    it(\"should not find words that haven't been added\", function () {\n      const trie = new Trie()\n      expect(trie.contains('aaaaa')).toBe(false)\n    })\n\n    it('should not return prefixes of words that have been added as words', function () {\n      const trie = new Trie()\n      trie.addString('test')\n      expect(trie.contains('test')).toBe(true)\n      expect(trie.contains('tes')).toBe(false)\n    })\n\n    it('should not return suffixes of words that have been added as words', function () {\n      const trie = new Trie()\n      trie.addString('test')\n      expect(trie.contains('test')).toBe(true)\n      expect(trie.contains('est')).toBe(false)\n    })\n\n    it('should not find a word that falls in between two other words but has not been added', function () {\n      const trie = new Trie()\n      trie.addString('test')\n      trie.addString('tested')\n      expect(trie.contains('test')).toBe(true)\n      expect(trie.contains('tested')).toBe(true)\n      expect(trie.contains('teste')).toBe(false)\n    })\n  })\n\n  function expectResults (results: string[]): void {\n    expect(results).toContain('a')\n    expect(results).toContain('ab')\n    expect(results).toContain('abc')\n    expect(results).not.toContain('bc')\n    expect(results).not.toContain('cd')\n  }\n\n  describe('prefix searching', function () {\n    it('should be able to find all full prefix matched words along a path.', function () {\n      const trie = new Trie()\n      trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc'])\n      const results = trie.findMatchesOnPath('abcd')\n      expectResults(results)\n    })\n\n    it('should be able to guess all full prefix matched words.', function () {\n      const trie = new Trie()\n      trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc'])\n      let results = trie.keysWithPrefix('a')\n      expectResults(results)\n      results = trie.keysWithPrefix('ab')\n      expect(results).toContain('ab')\n      expect(results).toContain('abc')\n      expect(results).not.toContain('a')\n      expect(results).not.toContain('bc')\n      expect(results).not.toContain('cd')\n    })\n\n    it('should be able to execute the find_prefix search with a match', function () {\n      const trie = new Trie()\n      trie.addStrings(['their', 'and', 'they'])\n      const results = trie.findPrefix('theyre')\n      expect(results[0]).toBe('they')\n      expect(results[1]).toBe('re')\n    })\n\n    it('should return empty array if no full prefix matches found.', function () {\n      const trie = new Trie()\n      trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc'])\n      const results = trie.keysWithPrefix('not-found')\n      expect(results.length).toEqual(0)\n    })\n\n    it('should be able to execute the find_prefix search without a match', function () {\n      const trie = new Trie()\n      trie.addStrings(['their', 'and'])\n      const results = trie.findPrefix('theyre')\n      expect(results[0]).toBe(null)\n      expect(results[1]).toBe('yre')\n    })\n  })\n\n  describe('case sensitivity', function () {\n    it('should be case sensitive by default', function () {\n      const trie = new Trie()\n      trie.addString('test')\n      expect(trie.contains('TEST')).toBe(false)\n    })\n\n    it('should have contains in case-insensitive mode', function () {\n      const trie = new Trie(false)\n      trie.addString('test')\n      expect(trie.contains('TEST')).toBe(true)\n    })\n\n    it('should have case-insensitive contains when the strings are added with case', function () {\n      const trie = new Trie(false)\n      trie.addString('teSt')\n      expect(trie.contains('test')).toBe(true)\n    })\n\n    it('should have findMatchesOnPath in case-insensitive mode', function () {\n      const trie = new Trie(false)\n      trie.addStrings(['a', 'ab', 'bc', 'cd', 'abc'])\n      const results = trie.findMatchesOnPath('ABcD')\n      expectResults(results)\n    })\n\n    it('should have findPrefix in case-insensitive mode', function () {\n      const trie = new Trie(false)\n      trie.addStrings(['thEIr', 'And', 'theY'])\n      const results = trie.findPrefix('ThEyRe')\n      expect(results[0]).toBe('they')\n      expect(results[1]).toBe('re')\n    })\n  })\n})\n"
  },
  {
    "path": "tsconfig.json",
    "content": "{\n  \"compilerOptions\": {\n    \"target\": \"es6\",\n    \"resolveJsonModule\": true,\n    \"lib\": [\n      \"es6\"\n    ],\n    \"module\": \"commonjs\",\n    \"rootDir\": \"./\",\n    \"baseUrl\": \"./\",\n    \"moduleResolution\": \"node\",\n    \"allowJs\": true,\n    \"outDir\": \"./dist/cjs\",\n    \"esModuleInterop\": true,\n    \"forceConsistentCasingInFileNames\": true,\n    \"strict\": true\n  },\n  \"include\": [\n    \"lib/natural/**/*.ts\",\n    \"spec/*.ts\",\n    \"io_spec/*.ts\",\n    \"lib/natural/analyzers/SenType.ts\"\n  ],\n  \"exclude\": [\n    \"./node_modules\"\n  ]\n}\n"
  }
]